CREATE TABLE role ( roleid bigint NOT NULL, name varchar(255) DEFAULT '' NOT NULL, type integer DEFAULT '0' NOT NULL, readonly integer DEFAULT '0' NOT NULL, PRIMARY KEY (roleid) ); CREATE UNIQUE INDEX role_1 ON role (name); CREATE TABLE ugset ( ugsetid bigint NOT NULL, hash varchar(64) DEFAULT '' NOT NULL, PRIMARY KEY (ugsetid) ); CREATE INDEX ugset_1 ON ugset (hash); CREATE TABLE users ( userid bigint NOT NULL, username varchar(100) DEFAULT '' NOT NULL, name varchar(100) DEFAULT '' NOT NULL, surname varchar(100) DEFAULT '' NOT NULL, passwd varchar(60) DEFAULT '' NOT NULL, url varchar(2048) DEFAULT '' NOT NULL, autologin integer DEFAULT '0' NOT NULL, autologout varchar(32) DEFAULT '15m' NOT NULL, lang varchar(7) DEFAULT 'default' NOT NULL, refresh varchar(32) DEFAULT '30s' NOT NULL, theme varchar(128) DEFAULT 'default' NOT NULL, attempt_failed integer DEFAULT 0 NOT NULL, attempt_ip varchar(39) DEFAULT '' NOT NULL, attempt_clock integer DEFAULT 0 NOT NULL, rows_per_page integer DEFAULT 50 NOT NULL, timezone varchar(50) DEFAULT 'default' NOT NULL, roleid bigint DEFAULT NULL NULL, userdirectoryid bigint DEFAULT NULL NULL, ts_provisioned integer DEFAULT '0' NOT NULL, PRIMARY KEY (userid) ); CREATE UNIQUE INDEX users_1 ON users (username); CREATE INDEX users_2 ON users (userdirectoryid); CREATE INDEX users_3 ON users (roleid); CREATE TABLE maintenances ( maintenanceid bigint NOT NULL, name varchar(128) DEFAULT '' NOT NULL, maintenance_type integer DEFAULT '0' NOT NULL, description text DEFAULT '' NOT NULL, active_since integer DEFAULT '0' NOT NULL, active_till integer DEFAULT '0' NOT NULL, tags_evaltype integer DEFAULT '0' NOT NULL, PRIMARY KEY (maintenanceid) ); CREATE INDEX maintenances_1 ON maintenances (active_since,active_till); CREATE UNIQUE INDEX maintenances_2 ON maintenances (name); CREATE TABLE hgset ( hgsetid bigint NOT NULL, hash varchar(64) DEFAULT '' NOT NULL, PRIMARY KEY (hgsetid) ); CREATE INDEX hgset_1 ON hgset (hash); CREATE TABLE hosts ( hostid bigint NOT NULL, proxyid bigint NULL, host varchar(128) DEFAULT '' NOT NULL, status integer DEFAULT '0' NOT NULL, ipmi_authtype integer DEFAULT '-1' NOT NULL, ipmi_privilege integer DEFAULT '2' NOT NULL, ipmi_username varchar(16) DEFAULT '' NOT NULL, ipmi_password varchar(20) DEFAULT '' NOT NULL, maintenanceid bigint NULL, maintenance_status integer DEFAULT '0' NOT NULL, maintenance_type integer DEFAULT '0' NOT NULL, maintenance_from integer DEFAULT '0' NOT NULL, name varchar(128) DEFAULT '' NOT NULL, flags integer DEFAULT '0' NOT NULL, templateid bigint NULL, description text DEFAULT '' NOT NULL, tls_connect integer DEFAULT '1' NOT NULL, tls_accept integer DEFAULT '1' NOT NULL, tls_issuer varchar(1024) DEFAULT '' NOT NULL, tls_subject varchar(1024) DEFAULT '' NOT NULL, tls_psk_identity varchar(128) DEFAULT '' NOT NULL, tls_psk varchar(512) DEFAULT '' NOT NULL, discover integer DEFAULT '0' NOT NULL, custom_interfaces integer DEFAULT '0' NOT NULL, uuid varchar(32) DEFAULT '' NOT NULL, name_upper varchar(128) DEFAULT '' NOT NULL, vendor_name varchar(64) DEFAULT '' NOT NULL, vendor_version varchar(32) DEFAULT '' NOT NULL, proxy_groupid bigint NULL, monitored_by integer DEFAULT '0' NOT NULL, PRIMARY KEY (hostid) ); CREATE INDEX hosts_1 ON hosts (host); CREATE INDEX hosts_2 ON hosts (status); CREATE INDEX hosts_3 ON hosts (proxyid); CREATE INDEX hosts_4 ON hosts (name); CREATE INDEX hosts_5 ON hosts (maintenanceid); CREATE INDEX hosts_6 ON hosts (name_upper); CREATE INDEX hosts_7 ON hosts (templateid); CREATE INDEX hosts_8 ON hosts (proxy_groupid); CREATE INDEX hosts_9 ON hosts (uuid); CREATE TABLE hstgrp ( groupid bigint NOT NULL, name varchar(255) DEFAULT '' NOT NULL, flags integer DEFAULT '0' NOT NULL, uuid varchar(32) DEFAULT '' NOT NULL, type integer DEFAULT '0' NOT NULL, PRIMARY KEY (groupid) ); CREATE UNIQUE INDEX hstgrp_1 ON hstgrp (type,name); CREATE INDEX hstgrp_2 ON hstgrp (uuid); CREATE TABLE hgset_group ( hgsetid bigint NOT NULL, groupid bigint NOT NULL, PRIMARY KEY (hgsetid,groupid) ); CREATE INDEX hgset_group_1 ON hgset_group (groupid); CREATE TABLE host_hgset ( hostid bigint NOT NULL, hgsetid bigint NOT NULL, PRIMARY KEY (hostid) ); CREATE INDEX host_hgset_1 ON host_hgset (hgsetid); CREATE TABLE group_prototype ( group_prototypeid bigint NOT NULL, hostid bigint NOT NULL, name varchar(255) DEFAULT '' NOT NULL, groupid bigint NULL, templateid bigint NULL, PRIMARY KEY (group_prototypeid) ); CREATE INDEX group_prototype_1 ON group_prototype (hostid); CREATE INDEX group_prototype_2 ON group_prototype (groupid); CREATE INDEX group_prototype_3 ON group_prototype (templateid); CREATE TABLE group_discovery ( groupdiscoveryid bigint NOT NULL, groupid bigint NOT NULL, parent_group_prototypeid bigint NOT NULL, name varchar(255) DEFAULT '' NOT NULL, lastcheck integer DEFAULT '0' NOT NULL, ts_delete integer DEFAULT '0' NOT NULL, status integer DEFAULT '0' NOT NULL, PRIMARY KEY (groupdiscoveryid) ); CREATE UNIQUE INDEX group_discovery_1 ON group_discovery (groupid,parent_group_prototypeid); CREATE INDEX group_discovery_2 ON group_discovery (parent_group_prototypeid); CREATE TABLE drules ( druleid bigint NOT NULL, proxyid bigint NULL, name varchar(255) DEFAULT '' NOT NULL, iprange varchar(2048) DEFAULT '' NOT NULL, delay varchar(255) DEFAULT '1h' NOT NULL, status integer DEFAULT '0' NOT NULL, concurrency_max integer DEFAULT '0' NOT NULL, error varchar(2048) DEFAULT '' NOT NULL, PRIMARY KEY (druleid) ); CREATE INDEX drules_1 ON drules (proxyid); CREATE UNIQUE INDEX drules_2 ON drules (name); CREATE TABLE dchecks ( dcheckid bigint NOT NULL, druleid bigint NOT NULL, type integer DEFAULT '0' NOT NULL, key_ varchar(2048) DEFAULT '' NOT NULL, snmp_community varchar(255) DEFAULT '' NOT NULL, ports varchar(255) DEFAULT '0' NOT NULL, snmpv3_securityname varchar(64) DEFAULT '' NOT NULL, snmpv3_securitylevel integer DEFAULT '0' NOT NULL, snmpv3_authpassphrase varchar(64) DEFAULT '' NOT NULL, snmpv3_privpassphrase varchar(64) DEFAULT '' NOT NULL, uniq integer DEFAULT '0' NOT NULL, snmpv3_authprotocol integer DEFAULT '0' NOT NULL, snmpv3_privprotocol integer DEFAULT '0' NOT NULL, snmpv3_contextname varchar(255) DEFAULT '' NOT NULL, host_source integer DEFAULT '1' NOT NULL, name_source integer DEFAULT '0' NOT NULL, allow_redirect integer DEFAULT '0' NOT NULL, PRIMARY KEY (dcheckid) ); CREATE INDEX dchecks_1 ON dchecks (druleid,host_source,name_source); CREATE TABLE httptest ( httptestid bigint NOT NULL, name varchar(64) DEFAULT '' NOT NULL, delay varchar(255) DEFAULT '1m' NOT NULL, status integer DEFAULT '0' NOT NULL, agent varchar(255) DEFAULT 'Zabbix' NOT NULL, authentication integer DEFAULT '0' NOT NULL, http_user varchar(255) DEFAULT '' NOT NULL, http_password varchar(255) DEFAULT '' NOT NULL, hostid bigint NOT NULL, templateid bigint NULL, http_proxy varchar(255) DEFAULT '' NOT NULL, retries integer DEFAULT '1' NOT NULL, ssl_cert_file varchar(255) DEFAULT '' NOT NULL, ssl_key_file varchar(255) DEFAULT '' NOT NULL, ssl_key_password varchar(64) DEFAULT '' NOT NULL, verify_peer integer DEFAULT '0' NOT NULL, verify_host integer DEFAULT '0' NOT NULL, uuid varchar(32) DEFAULT '' NOT NULL, PRIMARY KEY (httptestid) ); CREATE UNIQUE INDEX httptest_2 ON httptest (hostid,name); CREATE INDEX httptest_3 ON httptest (status); CREATE INDEX httptest_4 ON httptest (templateid); CREATE INDEX httptest_5 ON httptest (uuid); CREATE TABLE httpstep ( httpstepid bigint NOT NULL, httptestid bigint NOT NULL, name varchar(64) DEFAULT '' NOT NULL, no integer DEFAULT '0' NOT NULL, url varchar(2048) DEFAULT '' NOT NULL, timeout varchar(255) DEFAULT '15s' NOT NULL, posts text DEFAULT '' NOT NULL, required varchar(255) DEFAULT '' NOT NULL, status_codes varchar(255) DEFAULT '' NOT NULL, follow_redirects integer DEFAULT '1' NOT NULL, retrieve_mode integer DEFAULT '0' NOT NULL, post_type integer DEFAULT '0' NOT NULL, PRIMARY KEY (httpstepid) ); CREATE INDEX httpstep_1 ON httpstep (httptestid); CREATE TABLE interface ( interfaceid bigint NOT NULL, hostid bigint NOT NULL, main integer DEFAULT '0' NOT NULL, type integer DEFAULT '1' NOT NULL, useip integer DEFAULT '1' NOT NULL, ip varchar(64) DEFAULT '127.0.0.1' NOT NULL, dns varchar(255) DEFAULT '' NOT NULL, port varchar(64) DEFAULT '10050' NOT NULL, available integer DEFAULT '0' NOT NULL, error varchar(2048) DEFAULT '' NOT NULL, errors_from integer DEFAULT '0' NOT NULL, disable_until integer DEFAULT '0' NOT NULL, PRIMARY KEY (interfaceid) ); CREATE INDEX interface_1 ON interface (hostid,type); CREATE INDEX interface_2 ON interface (ip,dns); CREATE INDEX interface_3 ON interface (available); CREATE TABLE valuemap ( valuemapid bigint NOT NULL, hostid bigint NOT NULL, name varchar(64) DEFAULT '' NOT NULL, uuid varchar(32) DEFAULT '' NOT NULL, PRIMARY KEY (valuemapid) ); CREATE UNIQUE INDEX valuemap_1 ON valuemap (hostid,name); CREATE INDEX valuemap_2 ON valuemap (uuid); CREATE TABLE items ( itemid bigint NOT NULL, type integer DEFAULT '0' NOT NULL, snmp_oid varchar(512) DEFAULT '' NOT NULL, hostid bigint NOT NULL, name varchar(255) DEFAULT '' NOT NULL, key_ varchar(2048) DEFAULT '' NOT NULL, delay varchar(1024) DEFAULT '0' NOT NULL, history varchar(255) DEFAULT '31d' NOT NULL, trends varchar(255) DEFAULT '365d' NOT NULL, status integer DEFAULT '0' NOT NULL, value_type integer DEFAULT '0' NOT NULL, trapper_hosts varchar(255) DEFAULT '' NOT NULL, units varchar(255) DEFAULT '' NOT NULL, formula varchar(255) DEFAULT '' NOT NULL, logtimefmt varchar(64) DEFAULT '' NOT NULL, templateid bigint NULL, valuemapid bigint NULL, params text DEFAULT '' NOT NULL, ipmi_sensor varchar(128) DEFAULT '' NOT NULL, authtype integer DEFAULT '0' NOT NULL, username varchar(255) DEFAULT '' NOT NULL, password varchar(255) DEFAULT '' NOT NULL, publickey varchar(64) DEFAULT '' NOT NULL, privatekey varchar(64) DEFAULT '' NOT NULL, flags integer DEFAULT '0' NOT NULL, interfaceid bigint NULL, description text DEFAULT '' NOT NULL, inventory_link integer DEFAULT '0' NOT NULL, lifetime varchar(255) DEFAULT '7d' NOT NULL, evaltype integer DEFAULT '0' NOT NULL, jmx_endpoint varchar(255) DEFAULT '' NOT NULL, master_itemid bigint NULL, timeout varchar(255) DEFAULT '' NOT NULL, url varchar(2048) DEFAULT '' NOT NULL, query_fields text DEFAULT '' NOT NULL, posts text DEFAULT '' NOT NULL, status_codes varchar(255) DEFAULT '200' NOT NULL, follow_redirects integer DEFAULT '1' NOT NULL, post_type integer DEFAULT '0' NOT NULL, http_proxy varchar(255) DEFAULT '' NOT NULL, headers text DEFAULT '' NOT NULL, retrieve_mode integer DEFAULT '0' NOT NULL, request_method integer DEFAULT '0' NOT NULL, output_format integer DEFAULT '0' NOT NULL, ssl_cert_file varchar(255) DEFAULT '' NOT NULL, ssl_key_file varchar(255) DEFAULT '' NOT NULL, ssl_key_password varchar(64) DEFAULT '' NOT NULL, verify_peer integer DEFAULT '0' NOT NULL, verify_host integer DEFAULT '0' NOT NULL, allow_traps integer DEFAULT '0' NOT NULL, discover integer DEFAULT '0' NOT NULL, uuid varchar(32) DEFAULT '' NOT NULL, lifetime_type integer DEFAULT '0' NOT NULL, enabled_lifetime_type integer DEFAULT '2' NOT NULL, enabled_lifetime varchar(255) DEFAULT '0' NOT NULL, PRIMARY KEY (itemid) ); CREATE INDEX items_1 ON items (hostid,key_); CREATE INDEX items_3 ON items (status); CREATE INDEX items_4 ON items (templateid); CREATE INDEX items_5 ON items (valuemapid); CREATE INDEX items_6 ON items (interfaceid); CREATE INDEX items_7 ON items (master_itemid); CREATE INDEX items_8 ON items (key_); CREATE INDEX items_10 ON items (uuid); CREATE TABLE httpstepitem ( httpstepitemid bigint NOT NULL, httpstepid bigint NOT NULL, itemid bigint NOT NULL, type integer DEFAULT '0' NOT NULL, PRIMARY KEY (httpstepitemid) ); CREATE UNIQUE INDEX httpstepitem_1 ON httpstepitem (httpstepid,itemid); CREATE INDEX httpstepitem_2 ON httpstepitem (itemid); CREATE TABLE httptestitem ( httptestitemid bigint NOT NULL, httptestid bigint NOT NULL, itemid bigint NOT NULL, type integer DEFAULT '0' NOT NULL, PRIMARY KEY (httptestitemid) ); CREATE UNIQUE INDEX httptestitem_1 ON httptestitem (httptestid,itemid); CREATE INDEX httptestitem_2 ON httptestitem (itemid); CREATE TABLE media_type ( mediatypeid bigint NOT NULL, type integer DEFAULT '0' NOT NULL, name varchar(100) DEFAULT '' NOT NULL, smtp_server varchar(255) DEFAULT '' NOT NULL, smtp_helo varchar(255) DEFAULT '' NOT NULL, smtp_email varchar(255) DEFAULT '' NOT NULL, exec_path varchar(255) DEFAULT '' NOT NULL, gsm_modem varchar(255) DEFAULT '' NOT NULL, username varchar(255) DEFAULT '' NOT NULL, passwd varchar(255) DEFAULT '' NOT NULL, status integer DEFAULT '1' NOT NULL, smtp_port integer DEFAULT '25' NOT NULL, smtp_security integer DEFAULT '0' NOT NULL, smtp_verify_peer integer DEFAULT '0' NOT NULL, smtp_verify_host integer DEFAULT '0' NOT NULL, smtp_authentication integer DEFAULT '0' NOT NULL, maxsessions integer DEFAULT '1' NOT NULL, maxattempts integer DEFAULT '3' NOT NULL, attempt_interval varchar(32) DEFAULT '10s' NOT NULL, message_format integer DEFAULT '1' NOT NULL, script text DEFAULT '' NOT NULL, timeout varchar(32) DEFAULT '30s' NOT NULL, process_tags integer DEFAULT '0' NOT NULL, show_event_menu integer DEFAULT '0' NOT NULL, event_menu_url varchar(2048) DEFAULT '' NOT NULL, event_menu_name varchar(255) DEFAULT '' NOT NULL, description text DEFAULT '' NOT NULL, provider integer DEFAULT '0' NOT NULL, PRIMARY KEY (mediatypeid) ); CREATE UNIQUE INDEX media_type_1 ON media_type (name); CREATE TABLE media_type_param ( mediatype_paramid bigint NOT NULL, mediatypeid bigint NOT NULL, name varchar(255) DEFAULT '' NOT NULL, value varchar(2048) DEFAULT '' NOT NULL, sortorder integer DEFAULT '0' NOT NULL, PRIMARY KEY (mediatype_paramid) ); CREATE INDEX media_type_param_1 ON media_type_param (mediatypeid); CREATE TABLE media_type_message ( mediatype_messageid bigint NOT NULL, mediatypeid bigint NOT NULL, eventsource integer NOT NULL, recovery integer NOT NULL, subject varchar(255) DEFAULT '' NOT NULL, message text DEFAULT '' NOT NULL, PRIMARY KEY (mediatype_messageid) ); CREATE UNIQUE INDEX media_type_message_1 ON media_type_message (mediatypeid,eventsource,recovery); CREATE TABLE usrgrp ( usrgrpid bigint NOT NULL, name varchar(64) DEFAULT '' NOT NULL, gui_access integer DEFAULT '0' NOT NULL, users_status integer DEFAULT '0' NOT NULL, debug_mode integer DEFAULT '0' NOT NULL, userdirectoryid bigint DEFAULT NULL NULL, mfa_status integer DEFAULT '0' NOT NULL, mfaid bigint NULL, PRIMARY KEY (usrgrpid) ); CREATE UNIQUE INDEX usrgrp_1 ON usrgrp (name); CREATE INDEX usrgrp_2 ON usrgrp (userdirectoryid); CREATE INDEX usrgrp_3 ON usrgrp (mfaid); CREATE TABLE users_groups ( id bigint NOT NULL, usrgrpid bigint NOT NULL, userid bigint NOT NULL, PRIMARY KEY (id) ); CREATE UNIQUE INDEX users_groups_1 ON users_groups (usrgrpid,userid); CREATE INDEX users_groups_2 ON users_groups (userid); CREATE TABLE ugset_group ( ugsetid bigint NOT NULL, usrgrpid bigint NOT NULL, PRIMARY KEY (ugsetid,usrgrpid) ); CREATE INDEX ugset_group_1 ON ugset_group (usrgrpid); CREATE TABLE user_ugset ( userid bigint NOT NULL, ugsetid bigint NOT NULL, PRIMARY KEY (userid) ); CREATE INDEX user_ugset_1 ON user_ugset (ugsetid); CREATE TABLE scripts ( scriptid bigint NOT NULL, name varchar(255) DEFAULT '' NOT NULL, command text DEFAULT '' NOT NULL, host_access integer DEFAULT '2' NOT NULL, usrgrpid bigint NULL, groupid bigint NULL, description text DEFAULT '' NOT NULL, confirmation varchar(255) DEFAULT '' NOT NULL, type integer DEFAULT '5' NOT NULL, execute_on integer DEFAULT '2' NOT NULL, timeout varchar(32) DEFAULT '30s' NOT NULL, scope integer DEFAULT '1' NOT NULL, port varchar(64) DEFAULT '' NOT NULL, authtype integer DEFAULT '0' NOT NULL, username varchar(64) DEFAULT '' NOT NULL, password varchar(64) DEFAULT '' NOT NULL, publickey varchar(64) DEFAULT '' NOT NULL, privatekey varchar(64) DEFAULT '' NOT NULL, menu_path varchar(255) DEFAULT '' NOT NULL, url varchar(2048) DEFAULT '' NOT NULL, new_window integer DEFAULT '1' NOT NULL, manualinput integer DEFAULT '0' NOT NULL, manualinput_prompt varchar(255) DEFAULT '' NOT NULL, manualinput_validator varchar(2048) DEFAULT '' NOT NULL, manualinput_validator_type integer DEFAULT '0' NOT NULL, manualinput_default_value varchar(255) DEFAULT '' NOT NULL, PRIMARY KEY (scriptid) ); CREATE INDEX scripts_1 ON scripts (usrgrpid); CREATE INDEX scripts_2 ON scripts (groupid); CREATE UNIQUE INDEX scripts_3 ON scripts (name,menu_path); CREATE TABLE script_param ( script_paramid bigint NOT NULL, scriptid bigint NOT NULL, name varchar(255) DEFAULT '' NOT NULL, value varchar(2048) DEFAULT '' NOT NULL, PRIMARY KEY (script_paramid) ); CREATE UNIQUE INDEX script_param_1 ON script_param (scriptid,name); CREATE TABLE actions ( actionid bigint NOT NULL, name varchar(255) DEFAULT '' NOT NULL, eventsource integer DEFAULT '0' NOT NULL, evaltype integer DEFAULT '0' NOT NULL, status integer DEFAULT '0' NOT NULL, esc_period varchar(255) DEFAULT '1h' NOT NULL, formula varchar(1024) DEFAULT '' NOT NULL, pause_suppressed integer DEFAULT '1' NOT NULL, notify_if_canceled integer DEFAULT '1' NOT NULL, pause_symptoms integer DEFAULT '1' NOT NULL, PRIMARY KEY (actionid) ); CREATE INDEX actions_1 ON actions (eventsource,status); CREATE UNIQUE INDEX actions_2 ON actions (name); CREATE TABLE operations ( operationid bigint NOT NULL, actionid bigint NOT NULL, operationtype integer DEFAULT '0' NOT NULL, esc_period varchar(255) DEFAULT '0' NOT NULL, esc_step_from integer DEFAULT '1' NOT NULL, esc_step_to integer DEFAULT '1' NOT NULL, evaltype integer DEFAULT '0' NOT NULL, recovery integer DEFAULT '0' NOT NULL, PRIMARY KEY (operationid) ); CREATE INDEX operations_1 ON operations (actionid); CREATE TABLE optag ( optagid bigint NOT NULL, operationid bigint NOT NULL, tag varchar(255) DEFAULT '' NOT NULL, value varchar(255) DEFAULT '' NOT NULL, PRIMARY KEY (optagid) ); CREATE INDEX optag_1 ON optag (operationid); CREATE TABLE opmessage ( operationid bigint NOT NULL, default_msg integer DEFAULT '1' NOT NULL, subject varchar(255) DEFAULT '' NOT NULL, message text DEFAULT '' NOT NULL, mediatypeid bigint NULL, PRIMARY KEY (operationid) ); CREATE INDEX opmessage_1 ON opmessage (mediatypeid); CREATE TABLE opmessage_grp ( opmessage_grpid bigint NOT NULL, operationid bigint NOT NULL, usrgrpid bigint NOT NULL, PRIMARY KEY (opmessage_grpid) ); CREATE UNIQUE INDEX opmessage_grp_1 ON opmessage_grp (operationid,usrgrpid); CREATE INDEX opmessage_grp_2 ON opmessage_grp (usrgrpid); CREATE TABLE opmessage_usr ( opmessage_usrid bigint NOT NULL, operationid bigint NOT NULL, userid bigint NOT NULL, PRIMARY KEY (opmessage_usrid) ); CREATE UNIQUE INDEX opmessage_usr_1 ON opmessage_usr (operationid,userid); CREATE INDEX opmessage_usr_2 ON opmessage_usr (userid); CREATE TABLE opcommand ( operationid bigint NOT NULL, scriptid bigint NOT NULL, PRIMARY KEY (operationid) ); CREATE INDEX opcommand_1 ON opcommand (scriptid); CREATE TABLE opcommand_hst ( opcommand_hstid bigint NOT NULL, operationid bigint NOT NULL, hostid bigint NULL, PRIMARY KEY (opcommand_hstid) ); CREATE INDEX opcommand_hst_1 ON opcommand_hst (operationid); CREATE INDEX opcommand_hst_2 ON opcommand_hst (hostid); CREATE TABLE opcommand_grp ( opcommand_grpid bigint NOT NULL, operationid bigint NOT NULL, groupid bigint NOT NULL, PRIMARY KEY (opcommand_grpid) ); CREATE INDEX opcommand_grp_1 ON opcommand_grp (operationid); CREATE INDEX opcommand_grp_2 ON opcommand_grp (groupid); CREATE TABLE opgroup ( opgroupid bigint NOT NULL, operationid bigint NOT NULL, groupid bigint NOT NULL, PRIMARY KEY (opgroupid) ); CREATE UNIQUE INDEX opgroup_1 ON opgroup (operationid,groupid); CREATE INDEX opgroup_2 ON opgroup (groupid); CREATE TABLE optemplate ( optemplateid bigint NOT NULL, operationid bigint NOT NULL, templateid bigint NOT NULL, PRIMARY KEY (optemplateid) ); CREATE UNIQUE INDEX optemplate_1 ON optemplate (operationid,templateid); CREATE INDEX optemplate_2 ON optemplate (templateid); CREATE TABLE opconditions ( opconditionid bigint NOT NULL, operationid bigint NOT NULL, conditiontype integer DEFAULT '0' NOT NULL, operator integer DEFAULT '0' NOT NULL, value varchar(255) DEFAULT '' NOT NULL, PRIMARY KEY (opconditionid) ); CREATE INDEX opconditions_1 ON opconditions (operationid); CREATE TABLE conditions ( conditionid bigint NOT NULL, actionid bigint NOT NULL, conditiontype integer DEFAULT '0' NOT NULL, operator integer DEFAULT '0' NOT NULL, value varchar(255) DEFAULT '' NOT NULL, value2 varchar(255) DEFAULT '' NOT NULL, PRIMARY KEY (conditionid) ); CREATE INDEX conditions_1 ON conditions (actionid); CREATE TABLE config ( configid bigint NOT NULL, work_period varchar(255) DEFAULT '1-5,09:00-18:00' NOT NULL, alert_usrgrpid bigint NULL, default_theme varchar(128) DEFAULT 'blue-theme' NOT NULL, authentication_type integer DEFAULT '0' NOT NULL, discovery_groupid bigint NULL, max_in_table integer DEFAULT '50' NOT NULL, search_limit integer DEFAULT '1000' NOT NULL, severity_color_0 varchar(6) DEFAULT '97AAB3' NOT NULL, severity_color_1 varchar(6) DEFAULT '7499FF' NOT NULL, severity_color_2 varchar(6) DEFAULT 'FFC859' NOT NULL, severity_color_3 varchar(6) DEFAULT 'FFA059' NOT NULL, severity_color_4 varchar(6) DEFAULT 'E97659' NOT NULL, severity_color_5 varchar(6) DEFAULT 'E45959' NOT NULL, severity_name_0 varchar(32) DEFAULT 'Not classified' NOT NULL, severity_name_1 varchar(32) DEFAULT 'Information' NOT NULL, severity_name_2 varchar(32) DEFAULT 'Warning' NOT NULL, severity_name_3 varchar(32) DEFAULT 'Average' NOT NULL, severity_name_4 varchar(32) DEFAULT 'High' NOT NULL, severity_name_5 varchar(32) DEFAULT 'Disaster' NOT NULL, ok_period varchar(32) DEFAULT '5m' NOT NULL, blink_period varchar(32) DEFAULT '2m' NOT NULL, problem_unack_color varchar(6) DEFAULT 'CC0000' NOT NULL, problem_ack_color varchar(6) DEFAULT 'CC0000' NOT NULL, ok_unack_color varchar(6) DEFAULT '009900' NOT NULL, ok_ack_color varchar(6) DEFAULT '009900' NOT NULL, problem_unack_style integer DEFAULT '1' NOT NULL, problem_ack_style integer DEFAULT '1' NOT NULL, ok_unack_style integer DEFAULT '1' NOT NULL, ok_ack_style integer DEFAULT '1' NOT NULL, snmptrap_logging integer DEFAULT '1' NOT NULL, server_check_interval integer DEFAULT '10' NOT NULL, hk_events_mode integer DEFAULT '1' NOT NULL, hk_events_trigger varchar(32) DEFAULT '365d' NOT NULL, hk_events_internal varchar(32) DEFAULT '1d' NOT NULL, hk_events_discovery varchar(32) DEFAULT '1d' NOT NULL, hk_events_autoreg varchar(32) DEFAULT '1d' NOT NULL, hk_services_mode integer DEFAULT '1' NOT NULL, hk_services varchar(32) DEFAULT '365d' NOT NULL, hk_audit_mode integer DEFAULT '1' NOT NULL, hk_audit varchar(32) DEFAULT '31d' NOT NULL, hk_sessions_mode integer DEFAULT '1' NOT NULL, hk_sessions varchar(32) DEFAULT '365d' NOT NULL, hk_history_mode integer DEFAULT '1' NOT NULL, hk_history_global integer DEFAULT '0' NOT NULL, hk_history varchar(32) DEFAULT '31d' NOT NULL, hk_trends_mode integer DEFAULT '1' NOT NULL, hk_trends_global integer DEFAULT '0' NOT NULL, hk_trends varchar(32) DEFAULT '365d' NOT NULL, default_inventory_mode integer DEFAULT '-1' NOT NULL, custom_color integer DEFAULT '0' NOT NULL, http_auth_enabled integer DEFAULT '0' NOT NULL, http_login_form integer DEFAULT '0' NOT NULL, http_strip_domains varchar(2048) DEFAULT '' NOT NULL, http_case_sensitive integer DEFAULT '1' NOT NULL, ldap_auth_enabled integer DEFAULT '0' NOT NULL, ldap_case_sensitive integer DEFAULT '1' NOT NULL, db_extension varchar(32) DEFAULT '' NOT NULL, autoreg_tls_accept integer DEFAULT '1' NOT NULL, compression_status integer DEFAULT '0' NOT NULL, compress_older varchar(32) DEFAULT '7d' NOT NULL, instanceid varchar(32) DEFAULT '' NOT NULL, saml_auth_enabled integer DEFAULT '0' NOT NULL, saml_case_sensitive integer DEFAULT '0' NOT NULL, default_lang varchar(5) DEFAULT 'en_US' NOT NULL, default_timezone varchar(50) DEFAULT 'system' NOT NULL, login_attempts integer DEFAULT '5' NOT NULL, login_block varchar(32) DEFAULT '30s' NOT NULL, show_technical_errors integer DEFAULT '0' NOT NULL, validate_uri_schemes integer DEFAULT '1' NOT NULL, uri_valid_schemes varchar(255) DEFAULT 'http,https,ftp,file,mailto,tel,ssh' NOT NULL, x_frame_options varchar(255) DEFAULT 'SAMEORIGIN' NOT NULL, iframe_sandboxing_enabled integer DEFAULT '1' NOT NULL, iframe_sandboxing_exceptions varchar(255) DEFAULT '' NOT NULL, max_overview_table_size integer DEFAULT '50' NOT NULL, history_period varchar(32) DEFAULT '24h' NOT NULL, period_default varchar(32) DEFAULT '1h' NOT NULL, max_period varchar(32) DEFAULT '2y' NOT NULL, socket_timeout varchar(32) DEFAULT '3s' NOT NULL, connect_timeout varchar(32) DEFAULT '3s' NOT NULL, media_type_test_timeout varchar(32) DEFAULT '65s' NOT NULL, script_timeout varchar(32) DEFAULT '60s' NOT NULL, item_test_timeout varchar(32) DEFAULT '60s' NOT NULL, session_key varchar(32) DEFAULT '' NOT NULL, url varchar(2048) DEFAULT '' NOT NULL, report_test_timeout varchar(32) DEFAULT '60s' NOT NULL, dbversion_status text DEFAULT '' NOT NULL, hk_events_service varchar(32) DEFAULT '1d' NOT NULL, passwd_min_length integer DEFAULT '8' NOT NULL, passwd_check_rules integer DEFAULT '8' NOT NULL, auditlog_enabled integer DEFAULT '1' NOT NULL, ha_failover_delay varchar(32) DEFAULT '1m' NOT NULL, geomaps_tile_provider varchar(255) DEFAULT '' NOT NULL, geomaps_tile_url varchar(2048) DEFAULT '' NOT NULL, geomaps_max_zoom integer DEFAULT '0' NOT NULL, geomaps_attribution varchar(1024) DEFAULT '' NOT NULL, vault_provider integer DEFAULT '0' NOT NULL, ldap_userdirectoryid bigint DEFAULT NULL NULL, server_status text DEFAULT '' NOT NULL, jit_provision_interval varchar(32) DEFAULT '1h' NOT NULL, saml_jit_status integer DEFAULT '0' NOT NULL, ldap_jit_status integer DEFAULT '0' NOT NULL, disabled_usrgrpid bigint DEFAULT NULL NULL, timeout_zabbix_agent varchar(255) DEFAULT '3s' NOT NULL, timeout_simple_check varchar(255) DEFAULT '3s' NOT NULL, timeout_snmp_agent varchar(255) DEFAULT '3s' NOT NULL, timeout_external_check varchar(255) DEFAULT '3s' NOT NULL, timeout_db_monitor varchar(255) DEFAULT '3s' NOT NULL, timeout_http_agent varchar(255) DEFAULT '3s' NOT NULL, timeout_ssh_agent varchar(255) DEFAULT '3s' NOT NULL, timeout_telnet_agent varchar(255) DEFAULT '3s' NOT NULL, timeout_script varchar(255) DEFAULT '3s' NOT NULL, auditlog_mode integer DEFAULT '1' NOT NULL, mfa_status integer DEFAULT '0' NOT NULL, mfaid bigint NULL, software_update_checkid varchar(32) DEFAULT '' NOT NULL, software_update_check_data text DEFAULT '' NOT NULL, timeout_browser varchar(255) DEFAULT '60s' NOT NULL, PRIMARY KEY (configid) ); CREATE INDEX config_1 ON config (alert_usrgrpid); CREATE INDEX config_2 ON config (discovery_groupid); CREATE INDEX config_3 ON config (ldap_userdirectoryid); CREATE INDEX config_4 ON config (disabled_usrgrpid); CREATE INDEX config_5 ON config (mfaid); CREATE TABLE triggers ( triggerid bigint NOT NULL, expression varchar(2048) DEFAULT '' NOT NULL, description varchar(255) DEFAULT '' NOT NULL, url varchar(2048) DEFAULT '' NOT NULL, status integer DEFAULT '0' NOT NULL, value integer DEFAULT '0' NOT NULL, priority integer DEFAULT '0' NOT NULL, lastchange integer DEFAULT '0' NOT NULL, comments text DEFAULT '' NOT NULL, error varchar(2048) DEFAULT '' NOT NULL, templateid bigint NULL, type integer DEFAULT '0' NOT NULL, state integer DEFAULT '0' NOT NULL, flags integer DEFAULT '0' NOT NULL, recovery_mode integer DEFAULT '0' NOT NULL, recovery_expression varchar(2048) DEFAULT '' NOT NULL, correlation_mode integer DEFAULT '0' NOT NULL, correlation_tag varchar(255) DEFAULT '' NOT NULL, manual_close integer DEFAULT '0' NOT NULL, opdata varchar(255) DEFAULT '' NOT NULL, discover integer DEFAULT '0' NOT NULL, event_name varchar(2048) DEFAULT '' NOT NULL, uuid varchar(32) DEFAULT '' NOT NULL, url_name varchar(64) DEFAULT '' NOT NULL, PRIMARY KEY (triggerid) ); CREATE INDEX triggers_1 ON triggers (status); CREATE INDEX triggers_2 ON triggers (value,lastchange); CREATE INDEX triggers_3 ON triggers (templateid); CREATE INDEX triggers_4 ON triggers (uuid); CREATE TABLE trigger_depends ( triggerdepid bigint NOT NULL, triggerid_down bigint NOT NULL, triggerid_up bigint NOT NULL, PRIMARY KEY (triggerdepid) ); CREATE UNIQUE INDEX trigger_depends_1 ON trigger_depends (triggerid_down,triggerid_up); CREATE INDEX trigger_depends_2 ON trigger_depends (triggerid_up); CREATE TABLE functions ( functionid bigint NOT NULL, itemid bigint NOT NULL, triggerid bigint NOT NULL, name varchar(12) DEFAULT '' NOT NULL, parameter varchar(255) DEFAULT '0' NOT NULL, PRIMARY KEY (functionid) ); CREATE INDEX functions_1 ON functions (triggerid); CREATE INDEX functions_2 ON functions (itemid,name,parameter); CREATE TABLE graphs ( graphid bigint NOT NULL, name varchar(128) DEFAULT '' NOT NULL, width integer DEFAULT '900' NOT NULL, height integer DEFAULT '200' NOT NULL, yaxismin DOUBLE PRECISION DEFAULT '0' NOT NULL, yaxismax DOUBLE PRECISION DEFAULT '100' NOT NULL, templateid bigint NULL, show_work_period integer DEFAULT '1' NOT NULL, show_triggers integer DEFAULT '1' NOT NULL, graphtype integer DEFAULT '0' NOT NULL, show_legend integer DEFAULT '1' NOT NULL, show_3d integer DEFAULT '0' NOT NULL, percent_left DOUBLE PRECISION DEFAULT '0' NOT NULL, percent_right DOUBLE PRECISION DEFAULT '0' NOT NULL, ymin_type integer DEFAULT '0' NOT NULL, ymax_type integer DEFAULT '0' NOT NULL, ymin_itemid bigint NULL, ymax_itemid bigint NULL, flags integer DEFAULT '0' NOT NULL, discover integer DEFAULT '0' NOT NULL, uuid varchar(32) DEFAULT '' NOT NULL, PRIMARY KEY (graphid) ); CREATE INDEX graphs_1 ON graphs (name); CREATE INDEX graphs_2 ON graphs (templateid); CREATE INDEX graphs_3 ON graphs (ymin_itemid); CREATE INDEX graphs_4 ON graphs (ymax_itemid); CREATE INDEX graphs_5 ON graphs (uuid); CREATE TABLE graphs_items ( gitemid bigint NOT NULL, graphid bigint NOT NULL, itemid bigint NOT NULL, drawtype integer DEFAULT '0' NOT NULL, sortorder integer DEFAULT '0' NOT NULL, color varchar(6) DEFAULT '009600' NOT NULL, yaxisside integer DEFAULT '0' NOT NULL, calc_fnc integer DEFAULT '2' NOT NULL, type integer DEFAULT '0' NOT NULL, PRIMARY KEY (gitemid) ); CREATE INDEX graphs_items_1 ON graphs_items (itemid); CREATE INDEX graphs_items_2 ON graphs_items (graphid); CREATE TABLE graph_theme ( graphthemeid bigint NOT NULL, theme varchar(64) DEFAULT '' NOT NULL, backgroundcolor varchar(6) DEFAULT '' NOT NULL, graphcolor varchar(6) DEFAULT '' NOT NULL, gridcolor varchar(6) DEFAULT '' NOT NULL, maingridcolor varchar(6) DEFAULT '' NOT NULL, gridbordercolor varchar(6) DEFAULT '' NOT NULL, textcolor varchar(6) DEFAULT '' NOT NULL, highlightcolor varchar(6) DEFAULT '' NOT NULL, leftpercentilecolor varchar(6) DEFAULT '' NOT NULL, rightpercentilecolor varchar(6) DEFAULT '' NOT NULL, nonworktimecolor varchar(6) DEFAULT '' NOT NULL, colorpalette varchar(255) DEFAULT '' NOT NULL, PRIMARY KEY (graphthemeid) ); CREATE UNIQUE INDEX graph_theme_1 ON graph_theme (theme); CREATE TABLE globalmacro ( globalmacroid bigint NOT NULL, macro varchar(255) DEFAULT '' NOT NULL, value varchar(2048) DEFAULT '' NOT NULL, description text DEFAULT '' NOT NULL, type integer DEFAULT '0' NOT NULL, PRIMARY KEY (globalmacroid) ); CREATE UNIQUE INDEX globalmacro_1 ON globalmacro (macro); CREATE TABLE hostmacro ( hostmacroid bigint NOT NULL, hostid bigint NOT NULL, macro varchar(255) DEFAULT '' NOT NULL, value varchar(2048) DEFAULT '' NOT NULL, description text DEFAULT '' NOT NULL, type integer DEFAULT '0' NOT NULL, automatic integer DEFAULT '0' NOT NULL, PRIMARY KEY (hostmacroid) ); CREATE UNIQUE INDEX hostmacro_1 ON hostmacro (hostid,macro); CREATE TABLE hosts_groups ( hostgroupid bigint NOT NULL, hostid bigint NOT NULL, groupid bigint NOT NULL, PRIMARY KEY (hostgroupid) ); CREATE UNIQUE INDEX hosts_groups_1 ON hosts_groups (hostid,groupid); CREATE INDEX hosts_groups_2 ON hosts_groups (groupid); CREATE TABLE hosts_templates ( hosttemplateid bigint NOT NULL, hostid bigint NOT NULL, templateid bigint NOT NULL, link_type integer DEFAULT '0' NOT NULL, PRIMARY KEY (hosttemplateid) ); CREATE UNIQUE INDEX hosts_templates_1 ON hosts_templates (hostid,templateid); CREATE INDEX hosts_templates_2 ON hosts_templates (templateid); CREATE TABLE valuemap_mapping ( valuemap_mappingid bigint NOT NULL, valuemapid bigint NOT NULL, value varchar(64) DEFAULT '' NOT NULL, newvalue varchar(64) DEFAULT '' NOT NULL, type integer DEFAULT '0' NOT NULL, sortorder integer DEFAULT '0' NOT NULL, PRIMARY KEY (valuemap_mappingid) ); CREATE UNIQUE INDEX valuemap_mapping_1 ON valuemap_mapping (valuemapid,value,type); CREATE TABLE media ( mediaid bigint NOT NULL, userid bigint NOT NULL, mediatypeid bigint NOT NULL, sendto varchar(1024) DEFAULT '' NOT NULL, active integer DEFAULT '0' NOT NULL, severity integer DEFAULT '63' NOT NULL, period varchar(1024) DEFAULT '1-7,00:00-24:00' NOT NULL, userdirectory_mediaid bigint DEFAULT NULL NULL, PRIMARY KEY (mediaid) ); CREATE INDEX media_1 ON media (userid); CREATE INDEX media_2 ON media (mediatypeid); CREATE INDEX media_3 ON media (userdirectory_mediaid); CREATE TABLE rights ( rightid bigint NOT NULL, groupid bigint NOT NULL, permission integer DEFAULT '0' NOT NULL, id bigint NOT NULL, PRIMARY KEY (rightid) ); CREATE INDEX rights_1 ON rights (groupid); CREATE INDEX rights_2 ON rights (id); CREATE TABLE permission ( ugsetid bigint NOT NULL, hgsetid bigint NOT NULL, permission integer DEFAULT '2' NOT NULL, PRIMARY KEY (ugsetid,hgsetid) ); CREATE INDEX permission_1 ON permission (hgsetid); CREATE TABLE services ( serviceid bigint NOT NULL, name varchar(128) DEFAULT '' NOT NULL, status integer DEFAULT '-1' NOT NULL, algorithm integer DEFAULT '0' NOT NULL, sortorder integer DEFAULT '0' NOT NULL, weight integer DEFAULT '0' NOT NULL, propagation_rule integer DEFAULT '0' NOT NULL, propagation_value integer DEFAULT '0' NOT NULL, description text DEFAULT '' NOT NULL, uuid varchar(32) DEFAULT '' NOT NULL, created_at integer DEFAULT '0' NOT NULL, PRIMARY KEY (serviceid) ); CREATE INDEX services_1 ON services (uuid); CREATE TABLE services_links ( linkid bigint NOT NULL, serviceupid bigint NOT NULL, servicedownid bigint NOT NULL, PRIMARY KEY (linkid) ); CREATE INDEX services_links_1 ON services_links (servicedownid); CREATE UNIQUE INDEX services_links_2 ON services_links (serviceupid,servicedownid); CREATE TABLE icon_map ( iconmapid bigint NOT NULL, name varchar(64) DEFAULT '' NOT NULL, default_iconid bigint NOT NULL, PRIMARY KEY (iconmapid) ); CREATE UNIQUE INDEX icon_map_1 ON icon_map (name); CREATE INDEX icon_map_2 ON icon_map (default_iconid); CREATE TABLE icon_mapping ( iconmappingid bigint NOT NULL, iconmapid bigint NOT NULL, iconid bigint NOT NULL, inventory_link integer DEFAULT '0' NOT NULL, expression varchar(64) DEFAULT '' NOT NULL, sortorder integer DEFAULT '0' NOT NULL, PRIMARY KEY (iconmappingid) ); CREATE INDEX icon_mapping_1 ON icon_mapping (iconmapid); CREATE INDEX icon_mapping_2 ON icon_mapping (iconid); CREATE TABLE sysmaps ( sysmapid bigint NOT NULL, name varchar(128) DEFAULT '' NOT NULL, width integer DEFAULT '600' NOT NULL, height integer DEFAULT '400' NOT NULL, backgroundid bigint NULL, label_type integer DEFAULT '2' NOT NULL, label_location integer DEFAULT '0' NOT NULL, highlight integer DEFAULT '1' NOT NULL, expandproblem integer DEFAULT '1' NOT NULL, markelements integer DEFAULT '0' NOT NULL, show_unack integer DEFAULT '0' NOT NULL, grid_size integer DEFAULT '50' NOT NULL, grid_show integer DEFAULT '1' NOT NULL, grid_align integer DEFAULT '1' NOT NULL, label_format integer DEFAULT '0' NOT NULL, label_type_host integer DEFAULT '2' NOT NULL, label_type_hostgroup integer DEFAULT '2' NOT NULL, label_type_trigger integer DEFAULT '2' NOT NULL, label_type_map integer DEFAULT '2' NOT NULL, label_type_image integer DEFAULT '2' NOT NULL, label_string_host varchar(255) DEFAULT '' NOT NULL, label_string_hostgroup varchar(255) DEFAULT '' NOT NULL, label_string_trigger varchar(255) DEFAULT '' NOT NULL, label_string_map varchar(255) DEFAULT '' NOT NULL, label_string_image varchar(255) DEFAULT '' NOT NULL, iconmapid bigint NULL, expand_macros integer DEFAULT '0' NOT NULL, severity_min integer DEFAULT '0' NOT NULL, userid bigint NOT NULL, private integer DEFAULT '1' NOT NULL, show_suppressed integer DEFAULT '0' NOT NULL, PRIMARY KEY (sysmapid) ); CREATE UNIQUE INDEX sysmaps_1 ON sysmaps (name); CREATE INDEX sysmaps_2 ON sysmaps (backgroundid); CREATE INDEX sysmaps_3 ON sysmaps (iconmapid); CREATE INDEX sysmaps_4 ON sysmaps (userid); CREATE TABLE sysmaps_elements ( selementid bigint NOT NULL, sysmapid bigint NOT NULL, elementid bigint DEFAULT '0' NOT NULL, elementtype integer DEFAULT '0' NOT NULL, iconid_off bigint NULL, iconid_on bigint NULL, label varchar(2048) DEFAULT '' NOT NULL, label_location integer DEFAULT '-1' NOT NULL, x integer DEFAULT '0' NOT NULL, y integer DEFAULT '0' NOT NULL, iconid_disabled bigint NULL, iconid_maintenance bigint NULL, elementsubtype integer DEFAULT '0' NOT NULL, areatype integer DEFAULT '0' NOT NULL, width integer DEFAULT '200' NOT NULL, height integer DEFAULT '200' NOT NULL, viewtype integer DEFAULT '0' NOT NULL, use_iconmap integer DEFAULT '1' NOT NULL, evaltype integer DEFAULT '0' NOT NULL, PRIMARY KEY (selementid) ); CREATE INDEX sysmaps_elements_1 ON sysmaps_elements (sysmapid); CREATE INDEX sysmaps_elements_2 ON sysmaps_elements (iconid_off); CREATE INDEX sysmaps_elements_3 ON sysmaps_elements (iconid_on); CREATE INDEX sysmaps_elements_4 ON sysmaps_elements (iconid_disabled); CREATE INDEX sysmaps_elements_5 ON sysmaps_elements (iconid_maintenance); CREATE TABLE sysmaps_links ( linkid bigint NOT NULL, sysmapid bigint NOT NULL, selementid1 bigint NOT NULL, selementid2 bigint NOT NULL, drawtype integer DEFAULT '0' NOT NULL, color varchar(6) DEFAULT '000000' NOT NULL, label varchar(2048) DEFAULT '' NOT NULL, PRIMARY KEY (linkid) ); CREATE INDEX sysmaps_links_1 ON sysmaps_links (sysmapid); CREATE INDEX sysmaps_links_2 ON sysmaps_links (selementid1); CREATE INDEX sysmaps_links_3 ON sysmaps_links (selementid2); CREATE TABLE sysmaps_link_triggers ( linktriggerid bigint NOT NULL, linkid bigint NOT NULL, triggerid bigint NOT NULL, drawtype integer DEFAULT '0' NOT NULL, color varchar(6) DEFAULT '000000' NOT NULL, PRIMARY KEY (linktriggerid) ); CREATE UNIQUE INDEX sysmaps_link_triggers_1 ON sysmaps_link_triggers (linkid,triggerid); CREATE INDEX sysmaps_link_triggers_2 ON sysmaps_link_triggers (triggerid); CREATE TABLE sysmap_element_url ( sysmapelementurlid bigint NOT NULL, selementid bigint NOT NULL, name varchar(255) NOT NULL, url varchar(2048) DEFAULT '' NOT NULL, PRIMARY KEY (sysmapelementurlid) ); CREATE UNIQUE INDEX sysmap_element_url_1 ON sysmap_element_url (selementid,name); CREATE TABLE sysmap_url ( sysmapurlid bigint NOT NULL, sysmapid bigint NOT NULL, name varchar(255) NOT NULL, url varchar(2048) DEFAULT '' NOT NULL, elementtype integer DEFAULT '0' NOT NULL, PRIMARY KEY (sysmapurlid) ); CREATE UNIQUE INDEX sysmap_url_1 ON sysmap_url (sysmapid,name); CREATE TABLE sysmap_user ( sysmapuserid bigint NOT NULL, sysmapid bigint NOT NULL, userid bigint NOT NULL, permission integer DEFAULT '2' NOT NULL, PRIMARY KEY (sysmapuserid) ); CREATE UNIQUE INDEX sysmap_user_1 ON sysmap_user (sysmapid,userid); CREATE INDEX sysmap_user_2 ON sysmap_user (userid); CREATE TABLE sysmap_usrgrp ( sysmapusrgrpid bigint NOT NULL, sysmapid bigint NOT NULL, usrgrpid bigint NOT NULL, permission integer DEFAULT '2' NOT NULL, PRIMARY KEY (sysmapusrgrpid) ); CREATE UNIQUE INDEX sysmap_usrgrp_1 ON sysmap_usrgrp (sysmapid,usrgrpid); CREATE INDEX sysmap_usrgrp_2 ON sysmap_usrgrp (usrgrpid); CREATE TABLE maintenances_hosts ( maintenance_hostid bigint NOT NULL, maintenanceid bigint NOT NULL, hostid bigint NOT NULL, PRIMARY KEY (maintenance_hostid) ); CREATE UNIQUE INDEX maintenances_hosts_1 ON maintenances_hosts (maintenanceid,hostid); CREATE INDEX maintenances_hosts_2 ON maintenances_hosts (hostid); CREATE TABLE maintenances_groups ( maintenance_groupid bigint NOT NULL, maintenanceid bigint NOT NULL, groupid bigint NOT NULL, PRIMARY KEY (maintenance_groupid) ); CREATE UNIQUE INDEX maintenances_groups_1 ON maintenances_groups (maintenanceid,groupid); CREATE INDEX maintenances_groups_2 ON maintenances_groups (groupid); CREATE TABLE timeperiods ( timeperiodid bigint NOT NULL, timeperiod_type integer DEFAULT '0' NOT NULL, every integer DEFAULT '1' NOT NULL, month integer DEFAULT '0' NOT NULL, dayofweek integer DEFAULT '0' NOT NULL, day integer DEFAULT '0' NOT NULL, start_time integer DEFAULT '0' NOT NULL, period integer DEFAULT '0' NOT NULL, start_date integer DEFAULT '0' NOT NULL, PRIMARY KEY (timeperiodid) ); CREATE TABLE maintenances_windows ( maintenance_timeperiodid bigint NOT NULL, maintenanceid bigint NOT NULL, timeperiodid bigint NOT NULL, PRIMARY KEY (maintenance_timeperiodid) ); CREATE UNIQUE INDEX maintenances_windows_1 ON maintenances_windows (maintenanceid,timeperiodid); CREATE INDEX maintenances_windows_2 ON maintenances_windows (timeperiodid); CREATE TABLE regexps ( regexpid bigint NOT NULL, name varchar(128) DEFAULT '' NOT NULL, test_string text DEFAULT '' NOT NULL, PRIMARY KEY (regexpid) ); CREATE UNIQUE INDEX regexps_1 ON regexps (name); CREATE TABLE expressions ( expressionid bigint NOT NULL, regexpid bigint NOT NULL, expression varchar(255) DEFAULT '' NOT NULL, expression_type integer DEFAULT '0' NOT NULL, exp_delimiter varchar(1) DEFAULT '' NOT NULL, case_sensitive integer DEFAULT '0' NOT NULL, PRIMARY KEY (expressionid) ); CREATE INDEX expressions_1 ON expressions (regexpid); CREATE TABLE ids ( table_name varchar(64) DEFAULT '' NOT NULL, field_name varchar(64) DEFAULT '' NOT NULL, nextid bigint NOT NULL, PRIMARY KEY (table_name,field_name) ); CREATE TABLE alerts ( alertid bigint NOT NULL, actionid bigint NOT NULL, eventid bigint NOT NULL, userid bigint NULL, clock integer DEFAULT '0' NOT NULL, mediatypeid bigint NULL, sendto varchar(1024) DEFAULT '' NOT NULL, subject varchar(255) DEFAULT '' NOT NULL, message text DEFAULT '' NOT NULL, status integer DEFAULT '0' NOT NULL, retries integer DEFAULT '0' NOT NULL, error varchar(2048) DEFAULT '' NOT NULL, esc_step integer DEFAULT '0' NOT NULL, alerttype integer DEFAULT '0' NOT NULL, p_eventid bigint NULL, acknowledgeid bigint NULL, parameters text DEFAULT '{}' NOT NULL, PRIMARY KEY (alertid) ); CREATE INDEX alerts_1 ON alerts (actionid); CREATE INDEX alerts_2 ON alerts (clock); CREATE INDEX alerts_3 ON alerts (eventid); CREATE INDEX alerts_4 ON alerts (status); CREATE INDEX alerts_5 ON alerts (mediatypeid); CREATE INDEX alerts_6 ON alerts (userid); CREATE INDEX alerts_7 ON alerts (p_eventid); CREATE INDEX alerts_8 ON alerts (acknowledgeid); CREATE TABLE history ( itemid bigint NOT NULL, clock integer DEFAULT '0' NOT NULL, value DOUBLE PRECISION DEFAULT '0.0000' NOT NULL, ns integer DEFAULT '0' NOT NULL, PRIMARY KEY (itemid,clock,ns) ); CREATE TABLE history_uint ( itemid bigint NOT NULL, clock integer DEFAULT '0' NOT NULL, value numeric(20) DEFAULT '0' NOT NULL, ns integer DEFAULT '0' NOT NULL, PRIMARY KEY (itemid,clock,ns) ); CREATE TABLE history_str ( itemid bigint NOT NULL, clock integer DEFAULT '0' NOT NULL, value varchar(255) DEFAULT '' NOT NULL, ns integer DEFAULT '0' NOT NULL, PRIMARY KEY (itemid,clock,ns) ); CREATE TABLE history_log ( itemid bigint NOT NULL, clock integer DEFAULT '0' NOT NULL, timestamp integer DEFAULT '0' NOT NULL, source varchar(64) DEFAULT '' NOT NULL, severity integer DEFAULT '0' NOT NULL, value text DEFAULT '' NOT NULL, logeventid integer DEFAULT '0' NOT NULL, ns integer DEFAULT '0' NOT NULL, PRIMARY KEY (itemid,clock,ns) ); CREATE TABLE history_text ( itemid bigint NOT NULL, clock integer DEFAULT '0' NOT NULL, value text DEFAULT '' NOT NULL, ns integer DEFAULT '0' NOT NULL, PRIMARY KEY (itemid,clock,ns) ); CREATE TABLE history_bin ( itemid bigint NOT NULL, clock integer DEFAULT '0' NOT NULL, ns integer DEFAULT '0' NOT NULL, value bytea DEFAULT '' NOT NULL, PRIMARY KEY (itemid,clock,ns) ); CREATE TABLE proxy_history ( id bigint NOT NULL, itemid bigint NOT NULL, clock integer DEFAULT '0' NOT NULL, timestamp integer DEFAULT '0' NOT NULL, source varchar(64) DEFAULT '' NOT NULL, severity integer DEFAULT '0' NOT NULL, value text DEFAULT '' NOT NULL, logeventid integer DEFAULT '0' NOT NULL, ns integer DEFAULT '0' NOT NULL, state integer DEFAULT '0' NOT NULL, lastlogsize numeric(20) DEFAULT '0' NOT NULL, mtime integer DEFAULT '0' NOT NULL, flags integer DEFAULT '0' NOT NULL, write_clock integer DEFAULT '0' NOT NULL, PRIMARY KEY (id) ); CREATE INDEX proxy_history_1 ON proxy_history (clock); CREATE INDEX proxy_history_2 ON proxy_history (write_clock); CREATE TABLE proxy_dhistory ( id bigint NOT NULL, clock integer DEFAULT '0' NOT NULL, druleid bigint NOT NULL, ip varchar(39) DEFAULT '' NOT NULL, port integer DEFAULT '0' NOT NULL, value varchar(255) DEFAULT '' NOT NULL, status integer DEFAULT '0' NOT NULL, dcheckid bigint NULL, dns varchar(255) DEFAULT '' NOT NULL, error varchar(2048) DEFAULT '' NOT NULL, PRIMARY KEY (id) ); CREATE INDEX proxy_dhistory_1 ON proxy_dhistory (clock); CREATE INDEX proxy_dhistory_2 ON proxy_dhistory (druleid); CREATE TABLE events ( eventid bigint NOT NULL, source integer DEFAULT '0' NOT NULL, object integer DEFAULT '0' NOT NULL, objectid bigint DEFAULT '0' NOT NULL, clock integer DEFAULT '0' NOT NULL, value integer DEFAULT '0' NOT NULL, acknowledged integer DEFAULT '0' NOT NULL, ns integer DEFAULT '0' NOT NULL, name varchar(2048) DEFAULT '' NOT NULL, severity integer DEFAULT '0' NOT NULL, PRIMARY KEY (eventid) ); CREATE INDEX events_1 ON events (source,object,objectid,clock); CREATE INDEX events_2 ON events (source,object,clock); CREATE TABLE event_symptom ( eventid bigint NOT NULL, cause_eventid bigint NOT NULL, PRIMARY KEY (eventid) ); CREATE INDEX event_symptom_1 ON event_symptom (cause_eventid); CREATE TABLE trends ( itemid bigint NOT NULL, clock integer DEFAULT '0' NOT NULL, num integer DEFAULT '0' NOT NULL, value_min DOUBLE PRECISION DEFAULT '0.0000' NOT NULL, value_avg DOUBLE PRECISION DEFAULT '0.0000' NOT NULL, value_max DOUBLE PRECISION DEFAULT '0.0000' NOT NULL, PRIMARY KEY (itemid,clock) ); CREATE TABLE trends_uint ( itemid bigint NOT NULL, clock integer DEFAULT '0' NOT NULL, num integer DEFAULT '0' NOT NULL, value_min numeric(20) DEFAULT '0' NOT NULL, value_avg numeric(20) DEFAULT '0' NOT NULL, value_max numeric(20) DEFAULT '0' NOT NULL, PRIMARY KEY (itemid,clock) ); CREATE TABLE acknowledges ( acknowledgeid bigint NOT NULL, userid bigint NOT NULL, eventid bigint NOT NULL, clock integer DEFAULT '0' NOT NULL, message varchar(2048) DEFAULT '' NOT NULL, action integer DEFAULT '0' NOT NULL, old_severity integer DEFAULT '0' NOT NULL, new_severity integer DEFAULT '0' NOT NULL, suppress_until integer DEFAULT '0' NOT NULL, taskid bigint NULL, PRIMARY KEY (acknowledgeid) ); CREATE INDEX acknowledges_1 ON acknowledges (userid); CREATE INDEX acknowledges_2 ON acknowledges (eventid); CREATE INDEX acknowledges_3 ON acknowledges (clock); CREATE TABLE auditlog ( auditid varchar(25) NOT NULL, userid bigint NULL, username varchar(100) DEFAULT '' NOT NULL, clock integer DEFAULT '0' NOT NULL, ip varchar(39) DEFAULT '' NOT NULL, action integer DEFAULT '0' NOT NULL, resourcetype integer DEFAULT '0' NOT NULL, resourceid bigint NULL, resource_cuid varchar(25) NULL, resourcename varchar(255) DEFAULT '' NOT NULL, recordsetid varchar(25) NOT NULL, details text DEFAULT '' NOT NULL, PRIMARY KEY (auditid) ); CREATE INDEX auditlog_1 ON auditlog (userid,clock); CREATE INDEX auditlog_2 ON auditlog (clock); CREATE INDEX auditlog_3 ON auditlog (resourcetype,resourceid); CREATE INDEX auditlog_4 ON auditlog (recordsetid); CREATE INDEX auditlog_5 ON auditlog (ip); CREATE TABLE service_alarms ( servicealarmid bigint NOT NULL, serviceid bigint NOT NULL, clock integer DEFAULT '0' NOT NULL, value integer DEFAULT '-1' NOT NULL, PRIMARY KEY (servicealarmid) ); CREATE INDEX service_alarms_1 ON service_alarms (serviceid,clock); CREATE INDEX service_alarms_2 ON service_alarms (clock); CREATE TABLE autoreg_host ( autoreg_hostid bigint NOT NULL, proxyid bigint NULL, host varchar(128) DEFAULT '' NOT NULL, listen_ip varchar(39) DEFAULT '' NOT NULL, listen_port integer DEFAULT '0' NOT NULL, listen_dns varchar(255) DEFAULT '' NOT NULL, host_metadata text DEFAULT '' NOT NULL, flags integer DEFAULT '0' NOT NULL, tls_accepted integer DEFAULT '1' NOT NULL, PRIMARY KEY (autoreg_hostid) ); CREATE INDEX autoreg_host_1 ON autoreg_host (host); CREATE INDEX autoreg_host_2 ON autoreg_host (proxyid); CREATE TABLE proxy_autoreg_host ( id bigint NOT NULL, clock integer DEFAULT '0' NOT NULL, host varchar(128) DEFAULT '' NOT NULL, listen_ip varchar(39) DEFAULT '' NOT NULL, listen_port integer DEFAULT '0' NOT NULL, listen_dns varchar(255) DEFAULT '' NOT NULL, host_metadata text DEFAULT '' NOT NULL, flags integer DEFAULT '0' NOT NULL, tls_accepted integer DEFAULT '1' NOT NULL, PRIMARY KEY (id) ); CREATE INDEX proxy_autoreg_host_1 ON proxy_autoreg_host (clock); CREATE TABLE dhosts ( dhostid bigint NOT NULL, druleid bigint NOT NULL, status integer DEFAULT '0' NOT NULL, lastup integer DEFAULT '0' NOT NULL, lastdown integer DEFAULT '0' NOT NULL, PRIMARY KEY (dhostid) ); CREATE INDEX dhosts_1 ON dhosts (druleid); CREATE TABLE dservices ( dserviceid bigint NOT NULL, dhostid bigint NOT NULL, value varchar(255) DEFAULT '' NOT NULL, port integer DEFAULT '0' NOT NULL, status integer DEFAULT '0' NOT NULL, lastup integer DEFAULT '0' NOT NULL, lastdown integer DEFAULT '0' NOT NULL, dcheckid bigint NOT NULL, ip varchar(39) DEFAULT '' NOT NULL, dns varchar(255) DEFAULT '' NOT NULL, PRIMARY KEY (dserviceid) ); CREATE UNIQUE INDEX dservices_1 ON dservices (dcheckid,ip,port); CREATE INDEX dservices_2 ON dservices (dhostid); CREATE TABLE escalations ( escalationid bigint NOT NULL, actionid bigint NOT NULL, triggerid bigint NULL, eventid bigint NULL, r_eventid bigint NULL, nextcheck integer DEFAULT '0' NOT NULL, esc_step integer DEFAULT '0' NOT NULL, status integer DEFAULT '0' NOT NULL, itemid bigint NULL, acknowledgeid bigint NULL, servicealarmid bigint NULL, serviceid bigint NULL, PRIMARY KEY (escalationid) ); CREATE UNIQUE INDEX escalations_1 ON escalations (triggerid,itemid,serviceid,escalationid); CREATE INDEX escalations_2 ON escalations (eventid); CREATE INDEX escalations_3 ON escalations (nextcheck); CREATE TABLE globalvars ( name varchar(64) DEFAULT '' NOT NULL, value varchar(2048) DEFAULT '' NOT NULL, PRIMARY KEY (name) ); CREATE TABLE graph_discovery ( graphid bigint NOT NULL, parent_graphid bigint NOT NULL, lastcheck integer DEFAULT '0' NOT NULL, ts_delete integer DEFAULT '0' NOT NULL, status integer DEFAULT '0' NOT NULL, PRIMARY KEY (graphid) ); CREATE INDEX graph_discovery_1 ON graph_discovery (parent_graphid); CREATE TABLE host_inventory ( hostid bigint NOT NULL, inventory_mode integer DEFAULT '0' NOT NULL, type varchar(64) DEFAULT '' NOT NULL, type_full varchar(64) DEFAULT '' NOT NULL, name varchar(128) DEFAULT '' NOT NULL, alias varchar(128) DEFAULT '' NOT NULL, os varchar(128) DEFAULT '' NOT NULL, os_full varchar(255) DEFAULT '' NOT NULL, os_short varchar(128) DEFAULT '' NOT NULL, serialno_a varchar(64) DEFAULT '' NOT NULL, serialno_b varchar(64) DEFAULT '' NOT NULL, tag varchar(64) DEFAULT '' NOT NULL, asset_tag varchar(64) DEFAULT '' NOT NULL, macaddress_a varchar(64) DEFAULT '' NOT NULL, macaddress_b varchar(64) DEFAULT '' NOT NULL, hardware varchar(255) DEFAULT '' NOT NULL, hardware_full text DEFAULT '' NOT NULL, software varchar(255) DEFAULT '' NOT NULL, software_full text DEFAULT '' NOT NULL, software_app_a varchar(64) DEFAULT '' NOT NULL, software_app_b varchar(64) DEFAULT '' NOT NULL, software_app_c varchar(64) DEFAULT '' NOT NULL, software_app_d varchar(64) DEFAULT '' NOT NULL, software_app_e varchar(64) DEFAULT '' NOT NULL, contact text DEFAULT '' NOT NULL, location text DEFAULT '' NOT NULL, location_lat varchar(16) DEFAULT '' NOT NULL, location_lon varchar(16) DEFAULT '' NOT NULL, notes text DEFAULT '' NOT NULL, chassis varchar(64) DEFAULT '' NOT NULL, model varchar(64) DEFAULT '' NOT NULL, hw_arch varchar(32) DEFAULT '' NOT NULL, vendor varchar(64) DEFAULT '' NOT NULL, contract_number varchar(64) DEFAULT '' NOT NULL, installer_name varchar(64) DEFAULT '' NOT NULL, deployment_status varchar(64) DEFAULT '' NOT NULL, url_a varchar(2048) DEFAULT '' NOT NULL, url_b varchar(2048) DEFAULT '' NOT NULL, url_c varchar(2048) DEFAULT '' NOT NULL, host_networks text DEFAULT '' NOT NULL, host_netmask varchar(39) DEFAULT '' NOT NULL, host_router varchar(39) DEFAULT '' NOT NULL, oob_ip varchar(39) DEFAULT '' NOT NULL, oob_netmask varchar(39) DEFAULT '' NOT NULL, oob_router varchar(39) DEFAULT '' NOT NULL, date_hw_purchase varchar(64) DEFAULT '' NOT NULL, date_hw_install varchar(64) DEFAULT '' NOT NULL, date_hw_expiry varchar(64) DEFAULT '' NOT NULL, date_hw_decomm varchar(64) DEFAULT '' NOT NULL, site_address_a varchar(128) DEFAULT '' NOT NULL, site_address_b varchar(128) DEFAULT '' NOT NULL, site_address_c varchar(128) DEFAULT '' NOT NULL, site_city varchar(128) DEFAULT '' NOT NULL, site_state varchar(64) DEFAULT '' NOT NULL, site_country varchar(64) DEFAULT '' NOT NULL, site_zip varchar(64) DEFAULT '' NOT NULL, site_rack varchar(128) DEFAULT '' NOT NULL, site_notes text DEFAULT '' NOT NULL, poc_1_name varchar(128) DEFAULT '' NOT NULL, poc_1_email varchar(128) DEFAULT '' NOT NULL, poc_1_phone_a varchar(64) DEFAULT '' NOT NULL, poc_1_phone_b varchar(64) DEFAULT '' NOT NULL, poc_1_cell varchar(64) DEFAULT '' NOT NULL, poc_1_screen varchar(64) DEFAULT '' NOT NULL, poc_1_notes text DEFAULT '' NOT NULL, poc_2_name varchar(128) DEFAULT '' NOT NULL, poc_2_email varchar(128) DEFAULT '' NOT NULL, poc_2_phone_a varchar(64) DEFAULT '' NOT NULL, poc_2_phone_b varchar(64) DEFAULT '' NOT NULL, poc_2_cell varchar(64) DEFAULT '' NOT NULL, poc_2_screen varchar(64) DEFAULT '' NOT NULL, poc_2_notes text DEFAULT '' NOT NULL, PRIMARY KEY (hostid) ); CREATE TABLE housekeeper ( housekeeperid bigint NOT NULL, tablename varchar(64) DEFAULT '' NOT NULL, field varchar(64) DEFAULT '' NOT NULL, value bigint NOT NULL, PRIMARY KEY (housekeeperid) ); CREATE TABLE images ( imageid bigint NOT NULL, imagetype integer DEFAULT '0' NOT NULL, name varchar(64) DEFAULT '0' NOT NULL, image bytea DEFAULT '' NOT NULL, PRIMARY KEY (imageid) ); CREATE UNIQUE INDEX images_1 ON images (name); CREATE TABLE item_discovery ( itemdiscoveryid bigint NOT NULL, itemid bigint NOT NULL, parent_itemid bigint NOT NULL, key_ varchar(2048) DEFAULT '' NOT NULL, lastcheck integer DEFAULT '0' NOT NULL, ts_delete integer DEFAULT '0' NOT NULL, status integer DEFAULT '0' NOT NULL, disable_source integer DEFAULT '0' NOT NULL, ts_disable integer DEFAULT '0' NOT NULL, PRIMARY KEY (itemdiscoveryid) ); CREATE UNIQUE INDEX item_discovery_1 ON item_discovery (itemid,parent_itemid); CREATE INDEX item_discovery_2 ON item_discovery (parent_itemid); CREATE TABLE host_discovery ( hostid bigint NOT NULL, parent_hostid bigint NULL, parent_itemid bigint NULL, host varchar(128) DEFAULT '' NOT NULL, lastcheck integer DEFAULT '0' NOT NULL, ts_delete integer DEFAULT '0' NOT NULL, status integer DEFAULT '0' NOT NULL, disable_source integer DEFAULT '0' NOT NULL, ts_disable integer DEFAULT '0' NOT NULL, PRIMARY KEY (hostid) ); CREATE INDEX host_discovery_1 ON host_discovery (parent_hostid); CREATE INDEX host_discovery_2 ON host_discovery (parent_itemid); CREATE TABLE interface_discovery ( interfaceid bigint NOT NULL, parent_interfaceid bigint NOT NULL, PRIMARY KEY (interfaceid) ); CREATE INDEX interface_discovery_1 ON interface_discovery (parent_interfaceid); CREATE TABLE profiles ( profileid bigint NOT NULL, userid bigint NOT NULL, idx varchar(96) DEFAULT '' NOT NULL, idx2 bigint DEFAULT '0' NOT NULL, value_id bigint DEFAULT '0' NOT NULL, value_int integer DEFAULT '0' NOT NULL, value_str text DEFAULT '' NOT NULL, source varchar(96) DEFAULT '' NOT NULL, type integer DEFAULT '0' NOT NULL, PRIMARY KEY (profileid) ); CREATE INDEX profiles_1 ON profiles (userid,idx,idx2); CREATE INDEX profiles_2 ON profiles (userid,profileid); CREATE TABLE sessions ( sessionid varchar(32) DEFAULT '' NOT NULL, userid bigint NOT NULL, lastaccess integer DEFAULT '0' NOT NULL, status integer DEFAULT '0' NOT NULL, secret varchar(32) DEFAULT '' NOT NULL, PRIMARY KEY (sessionid) ); CREATE INDEX sessions_1 ON sessions (userid,status,lastaccess); CREATE TABLE trigger_discovery ( triggerid bigint NOT NULL, parent_triggerid bigint NOT NULL, lastcheck integer DEFAULT '0' NOT NULL, ts_delete integer DEFAULT '0' NOT NULL, status integer DEFAULT '0' NOT NULL, disable_source integer DEFAULT '0' NOT NULL, ts_disable integer DEFAULT '0' NOT NULL, PRIMARY KEY (triggerid) ); CREATE INDEX trigger_discovery_1 ON trigger_discovery (parent_triggerid); CREATE TABLE item_condition ( item_conditionid bigint NOT NULL, itemid bigint NOT NULL, operator integer DEFAULT '8' NOT NULL, macro varchar(64) DEFAULT '' NOT NULL, value varchar(255) DEFAULT '' NOT NULL, PRIMARY KEY (item_conditionid) ); CREATE INDEX item_condition_1 ON item_condition (itemid); CREATE TABLE item_rtdata ( itemid bigint NOT NULL, lastlogsize numeric(20) DEFAULT '0' NOT NULL, state integer DEFAULT '0' NOT NULL, mtime integer DEFAULT '0' NOT NULL, error varchar(2048) DEFAULT '' NOT NULL, PRIMARY KEY (itemid) ); CREATE TABLE item_rtname ( itemid bigint NOT NULL, name_resolved varchar(2048) DEFAULT '' NOT NULL, name_resolved_upper varchar(2048) DEFAULT '' NOT NULL, PRIMARY KEY (itemid) ); CREATE TABLE opinventory ( operationid bigint NOT NULL, inventory_mode integer DEFAULT '0' NOT NULL, PRIMARY KEY (operationid) ); CREATE TABLE trigger_tag ( triggertagid bigint NOT NULL, triggerid bigint NOT NULL, tag varchar(255) DEFAULT '' NOT NULL, value varchar(255) DEFAULT '' NOT NULL, PRIMARY KEY (triggertagid) ); CREATE INDEX trigger_tag_1 ON trigger_tag (triggerid); CREATE TABLE event_tag ( eventtagid bigint NOT NULL, eventid bigint NOT NULL, tag varchar(255) DEFAULT '' NOT NULL, value varchar(255) DEFAULT '' NOT NULL, PRIMARY KEY (eventtagid) ); CREATE INDEX event_tag_1 ON event_tag (eventid); CREATE TABLE problem ( eventid bigint NOT NULL, source integer DEFAULT '0' NOT NULL, object integer DEFAULT '0' NOT NULL, objectid bigint DEFAULT '0' NOT NULL, clock integer DEFAULT '0' NOT NULL, ns integer DEFAULT '0' NOT NULL, r_eventid bigint NULL, r_clock integer DEFAULT '0' NOT NULL, r_ns integer DEFAULT '0' NOT NULL, correlationid bigint NULL, userid bigint NULL, name varchar(2048) DEFAULT '' NOT NULL, acknowledged integer DEFAULT '0' NOT NULL, severity integer DEFAULT '0' NOT NULL, cause_eventid bigint NULL, PRIMARY KEY (eventid) ); CREATE INDEX problem_1 ON problem (source,object,objectid); CREATE INDEX problem_2 ON problem (r_clock); CREATE INDEX problem_3 ON problem (r_eventid); CREATE INDEX problem_4 ON problem (cause_eventid); CREATE TABLE problem_tag ( problemtagid bigint NOT NULL, eventid bigint NOT NULL, tag varchar(255) DEFAULT '' NOT NULL, value varchar(255) DEFAULT '' NOT NULL, PRIMARY KEY (problemtagid) ); CREATE INDEX problem_tag_1 ON problem_tag (eventid,tag,value); CREATE TABLE tag_filter ( tag_filterid bigint NOT NULL, usrgrpid bigint NOT NULL, groupid bigint NOT NULL, tag varchar(255) DEFAULT '' NOT NULL, value varchar(255) DEFAULT '' NOT NULL, PRIMARY KEY (tag_filterid) ); CREATE INDEX tag_filter_1 ON tag_filter (usrgrpid); CREATE INDEX tag_filter_2 ON tag_filter (groupid); CREATE TABLE event_recovery ( eventid bigint NOT NULL, r_eventid bigint NOT NULL, c_eventid bigint NULL, correlationid bigint NULL, userid bigint NULL, PRIMARY KEY (eventid) ); CREATE INDEX event_recovery_1 ON event_recovery (r_eventid); CREATE INDEX event_recovery_2 ON event_recovery (c_eventid); CREATE TABLE correlation ( correlationid bigint NOT NULL, name varchar(255) DEFAULT '' NOT NULL, description text DEFAULT '' NOT NULL, evaltype integer DEFAULT '0' NOT NULL, status integer DEFAULT '0' NOT NULL, formula varchar(255) DEFAULT '' NOT NULL, PRIMARY KEY (correlationid) ); CREATE INDEX correlation_1 ON correlation (status); CREATE UNIQUE INDEX correlation_2 ON correlation (name); CREATE TABLE corr_condition ( corr_conditionid bigint NOT NULL, correlationid bigint NOT NULL, type integer DEFAULT '0' NOT NULL, PRIMARY KEY (corr_conditionid) ); CREATE INDEX corr_condition_1 ON corr_condition (correlationid); CREATE TABLE corr_condition_tag ( corr_conditionid bigint NOT NULL, tag varchar(255) DEFAULT '' NOT NULL, PRIMARY KEY (corr_conditionid) ); CREATE TABLE corr_condition_group ( corr_conditionid bigint NOT NULL, operator integer DEFAULT '0' NOT NULL, groupid bigint NOT NULL, PRIMARY KEY (corr_conditionid) ); CREATE INDEX corr_condition_group_1 ON corr_condition_group (groupid); CREATE TABLE corr_condition_tagpair ( corr_conditionid bigint NOT NULL, oldtag varchar(255) DEFAULT '' NOT NULL, newtag varchar(255) DEFAULT '' NOT NULL, PRIMARY KEY (corr_conditionid) ); CREATE TABLE corr_condition_tagvalue ( corr_conditionid bigint NOT NULL, tag varchar(255) DEFAULT '' NOT NULL, operator integer DEFAULT '0' NOT NULL, value varchar(255) DEFAULT '' NOT NULL, PRIMARY KEY (corr_conditionid) ); CREATE TABLE corr_operation ( corr_operationid bigint NOT NULL, correlationid bigint NOT NULL, type integer DEFAULT '0' NOT NULL, PRIMARY KEY (corr_operationid) ); CREATE INDEX corr_operation_1 ON corr_operation (correlationid); CREATE TABLE task ( taskid bigint NOT NULL, type integer NOT NULL, status integer DEFAULT '0' NOT NULL, clock integer DEFAULT '0' NOT NULL, ttl integer DEFAULT '0' NOT NULL, proxyid bigint NULL, PRIMARY KEY (taskid) ); CREATE INDEX task_1 ON task (status,proxyid); CREATE INDEX task_2 ON task (proxyid); CREATE TABLE task_close_problem ( taskid bigint NOT NULL, acknowledgeid bigint NOT NULL, PRIMARY KEY (taskid) ); CREATE TABLE item_preproc ( item_preprocid bigint NOT NULL, itemid bigint NOT NULL, step integer DEFAULT '0' NOT NULL, type integer DEFAULT '0' NOT NULL, params text DEFAULT '' NOT NULL, error_handler integer DEFAULT '0' NOT NULL, error_handler_params varchar(255) DEFAULT '' NOT NULL, PRIMARY KEY (item_preprocid) ); CREATE INDEX item_preproc_1 ON item_preproc (itemid,step); CREATE TABLE task_remote_command ( taskid bigint NOT NULL, command_type integer DEFAULT '0' NOT NULL, execute_on integer DEFAULT '0' NOT NULL, port integer DEFAULT '0' NOT NULL, authtype integer DEFAULT '0' NOT NULL, username varchar(64) DEFAULT '' NOT NULL, password varchar(64) DEFAULT '' NOT NULL, publickey varchar(64) DEFAULT '' NOT NULL, privatekey varchar(64) DEFAULT '' NOT NULL, command text DEFAULT '' NOT NULL, alertid bigint NULL, parent_taskid bigint NOT NULL, hostid bigint NOT NULL, PRIMARY KEY (taskid) ); CREATE TABLE task_remote_command_result ( taskid bigint NOT NULL, status integer DEFAULT '0' NOT NULL, parent_taskid bigint NOT NULL, info text DEFAULT '' NOT NULL, PRIMARY KEY (taskid) ); CREATE TABLE task_data ( taskid bigint NOT NULL, type integer DEFAULT '0' NOT NULL, data text DEFAULT '' NOT NULL, parent_taskid bigint NULL, PRIMARY KEY (taskid) ); CREATE TABLE task_result ( taskid bigint NOT NULL, status integer DEFAULT '0' NOT NULL, parent_taskid bigint NOT NULL, info text DEFAULT '' NOT NULL, PRIMARY KEY (taskid) ); CREATE INDEX task_result_1 ON task_result (parent_taskid); CREATE TABLE task_acknowledge ( taskid bigint NOT NULL, acknowledgeid bigint NOT NULL, PRIMARY KEY (taskid) ); CREATE TABLE sysmap_shape ( sysmap_shapeid bigint NOT NULL, sysmapid bigint NOT NULL, type integer DEFAULT '0' NOT NULL, x integer DEFAULT '0' NOT NULL, y integer DEFAULT '0' NOT NULL, width integer DEFAULT '200' NOT NULL, height integer DEFAULT '200' NOT NULL, text text DEFAULT '' NOT NULL, font integer DEFAULT '9' NOT NULL, font_size integer DEFAULT '11' NOT NULL, font_color varchar(6) DEFAULT '000000' NOT NULL, text_halign integer DEFAULT '0' NOT NULL, text_valign integer DEFAULT '0' NOT NULL, border_type integer DEFAULT '0' NOT NULL, border_width integer DEFAULT '1' NOT NULL, border_color varchar(6) DEFAULT '000000' NOT NULL, background_color varchar(6) DEFAULT '' NOT NULL, zindex integer DEFAULT '0' NOT NULL, PRIMARY KEY (sysmap_shapeid) ); CREATE INDEX sysmap_shape_1 ON sysmap_shape (sysmapid); CREATE TABLE sysmap_element_trigger ( selement_triggerid bigint NOT NULL, selementid bigint NOT NULL, triggerid bigint NOT NULL, PRIMARY KEY (selement_triggerid) ); CREATE UNIQUE INDEX sysmap_element_trigger_1 ON sysmap_element_trigger (selementid,triggerid); CREATE INDEX sysmap_element_trigger_2 ON sysmap_element_trigger (triggerid); CREATE TABLE httptest_field ( httptest_fieldid bigint NOT NULL, httptestid bigint NOT NULL, type integer DEFAULT '0' NOT NULL, name varchar(255) DEFAULT '' NOT NULL, value text DEFAULT '' NOT NULL, PRIMARY KEY (httptest_fieldid) ); CREATE INDEX httptest_field_1 ON httptest_field (httptestid); CREATE TABLE httpstep_field ( httpstep_fieldid bigint NOT NULL, httpstepid bigint NOT NULL, type integer DEFAULT '0' NOT NULL, name varchar(255) DEFAULT '' NOT NULL, value text DEFAULT '' NOT NULL, PRIMARY KEY (httpstep_fieldid) ); CREATE INDEX httpstep_field_1 ON httpstep_field (httpstepid); CREATE TABLE dashboard ( dashboardid bigint NOT NULL, name varchar(255) NOT NULL, userid bigint NULL, private integer DEFAULT '1' NOT NULL, templateid bigint NULL, display_period integer DEFAULT '30' NOT NULL, auto_start integer DEFAULT '1' NOT NULL, uuid varchar(32) DEFAULT '' NOT NULL, PRIMARY KEY (dashboardid) ); CREATE INDEX dashboard_1 ON dashboard (userid); CREATE INDEX dashboard_2 ON dashboard (templateid); CREATE INDEX dashboard_3 ON dashboard (uuid); CREATE TABLE dashboard_user ( dashboard_userid bigint NOT NULL, dashboardid bigint NOT NULL, userid bigint NOT NULL, permission integer DEFAULT '2' NOT NULL, PRIMARY KEY (dashboard_userid) ); CREATE UNIQUE INDEX dashboard_user_1 ON dashboard_user (dashboardid,userid); CREATE INDEX dashboard_user_2 ON dashboard_user (userid); CREATE TABLE dashboard_usrgrp ( dashboard_usrgrpid bigint NOT NULL, dashboardid bigint NOT NULL, usrgrpid bigint NOT NULL, permission integer DEFAULT '2' NOT NULL, PRIMARY KEY (dashboard_usrgrpid) ); CREATE UNIQUE INDEX dashboard_usrgrp_1 ON dashboard_usrgrp (dashboardid,usrgrpid); CREATE INDEX dashboard_usrgrp_2 ON dashboard_usrgrp (usrgrpid); CREATE TABLE dashboard_page ( dashboard_pageid bigint NOT NULL, dashboardid bigint NOT NULL, name varchar(255) DEFAULT '' NOT NULL, display_period integer DEFAULT '0' NOT NULL, sortorder integer DEFAULT '0' NOT NULL, PRIMARY KEY (dashboard_pageid) ); CREATE INDEX dashboard_page_1 ON dashboard_page (dashboardid); CREATE TABLE widget ( widgetid bigint NOT NULL, type varchar(255) DEFAULT '' NOT NULL, name varchar(255) DEFAULT '' NOT NULL, x integer DEFAULT '0' NOT NULL, y integer DEFAULT '0' NOT NULL, width integer DEFAULT '1' NOT NULL, height integer DEFAULT '2' NOT NULL, view_mode integer DEFAULT '0' NOT NULL, dashboard_pageid bigint NOT NULL, PRIMARY KEY (widgetid) ); CREATE INDEX widget_1 ON widget (dashboard_pageid); CREATE TABLE widget_field ( widget_fieldid bigint NOT NULL, widgetid bigint NOT NULL, type integer DEFAULT '0' NOT NULL, name varchar(255) DEFAULT '' NOT NULL, value_int integer DEFAULT '0' NOT NULL, value_str varchar(2048) DEFAULT '' NOT NULL, value_groupid bigint NULL, value_hostid bigint NULL, value_itemid bigint NULL, value_graphid bigint NULL, value_sysmapid bigint NULL, value_serviceid bigint NULL, value_slaid bigint NULL, value_userid bigint NULL, value_actionid bigint NULL, value_mediatypeid bigint NULL, PRIMARY KEY (widget_fieldid) ); CREATE INDEX widget_field_1 ON widget_field (widgetid); CREATE INDEX widget_field_2 ON widget_field (value_groupid); CREATE INDEX widget_field_3 ON widget_field (value_hostid); CREATE INDEX widget_field_4 ON widget_field (value_itemid); CREATE INDEX widget_field_5 ON widget_field (value_graphid); CREATE INDEX widget_field_6 ON widget_field (value_sysmapid); CREATE INDEX widget_field_7 ON widget_field (value_serviceid); CREATE INDEX widget_field_8 ON widget_field (value_slaid); CREATE INDEX widget_field_9 ON widget_field (value_userid); CREATE INDEX widget_field_10 ON widget_field (value_actionid); CREATE INDEX widget_field_11 ON widget_field (value_mediatypeid); CREATE TABLE task_check_now ( taskid bigint NOT NULL, itemid bigint NOT NULL, PRIMARY KEY (taskid) ); CREATE TABLE event_suppress ( event_suppressid bigint NOT NULL, eventid bigint NOT NULL, maintenanceid bigint NULL, suppress_until integer DEFAULT '0' NOT NULL, userid bigint NULL, PRIMARY KEY (event_suppressid) ); CREATE UNIQUE INDEX event_suppress_1 ON event_suppress (eventid,maintenanceid); CREATE INDEX event_suppress_2 ON event_suppress (suppress_until); CREATE INDEX event_suppress_3 ON event_suppress (maintenanceid); CREATE INDEX event_suppress_4 ON event_suppress (userid); CREATE TABLE maintenance_tag ( maintenancetagid bigint NOT NULL, maintenanceid bigint NOT NULL, tag varchar(255) DEFAULT '' NOT NULL, operator integer DEFAULT '2' NOT NULL, value varchar(255) DEFAULT '' NOT NULL, PRIMARY KEY (maintenancetagid) ); CREATE INDEX maintenance_tag_1 ON maintenance_tag (maintenanceid); CREATE TABLE lld_macro_path ( lld_macro_pathid bigint NOT NULL, itemid bigint NOT NULL, lld_macro varchar(255) DEFAULT '' NOT NULL, path varchar(255) DEFAULT '' NOT NULL, PRIMARY KEY (lld_macro_pathid) ); CREATE UNIQUE INDEX lld_macro_path_1 ON lld_macro_path (itemid,lld_macro); CREATE TABLE host_tag ( hosttagid bigint NOT NULL, hostid bigint NOT NULL, tag varchar(255) DEFAULT '' NOT NULL, value varchar(255) DEFAULT '' NOT NULL, automatic integer DEFAULT '0' NOT NULL, PRIMARY KEY (hosttagid) ); CREATE INDEX host_tag_1 ON host_tag (hostid); CREATE TABLE config_autoreg_tls ( autoreg_tlsid bigint NOT NULL, tls_psk_identity varchar(128) DEFAULT '' NOT NULL, tls_psk varchar(512) DEFAULT '' NOT NULL, PRIMARY KEY (autoreg_tlsid) ); CREATE UNIQUE INDEX config_autoreg_tls_1 ON config_autoreg_tls (tls_psk_identity); CREATE TABLE module ( moduleid bigint NOT NULL, id varchar(255) DEFAULT '' NOT NULL, relative_path varchar(255) DEFAULT '' NOT NULL, status integer DEFAULT '0' NOT NULL, config text DEFAULT '' NOT NULL, PRIMARY KEY (moduleid) ); CREATE TABLE interface_snmp ( interfaceid bigint NOT NULL, version integer DEFAULT '2' NOT NULL, bulk integer DEFAULT '1' NOT NULL, community varchar(64) DEFAULT '' NOT NULL, securityname varchar(64) DEFAULT '' NOT NULL, securitylevel integer DEFAULT '0' NOT NULL, authpassphrase varchar(64) DEFAULT '' NOT NULL, privpassphrase varchar(64) DEFAULT '' NOT NULL, authprotocol integer DEFAULT '0' NOT NULL, privprotocol integer DEFAULT '0' NOT NULL, contextname varchar(255) DEFAULT '' NOT NULL, max_repetitions integer DEFAULT '10' NOT NULL, PRIMARY KEY (interfaceid) ); CREATE TABLE lld_override ( lld_overrideid bigint NOT NULL, itemid bigint NOT NULL, name varchar(255) DEFAULT '' NOT NULL, step integer DEFAULT '0' NOT NULL, evaltype integer DEFAULT '0' NOT NULL, formula varchar(255) DEFAULT '' NOT NULL, stop integer DEFAULT '0' NOT NULL, PRIMARY KEY (lld_overrideid) ); CREATE UNIQUE INDEX lld_override_1 ON lld_override (itemid,name); CREATE TABLE lld_override_condition ( lld_override_conditionid bigint NOT NULL, lld_overrideid bigint NOT NULL, operator integer DEFAULT '8' NOT NULL, macro varchar(64) DEFAULT '' NOT NULL, value varchar(255) DEFAULT '' NOT NULL, PRIMARY KEY (lld_override_conditionid) ); CREATE INDEX lld_override_condition_1 ON lld_override_condition (lld_overrideid); CREATE TABLE lld_override_operation ( lld_override_operationid bigint NOT NULL, lld_overrideid bigint NOT NULL, operationobject integer DEFAULT '0' NOT NULL, operator integer DEFAULT '0' NOT NULL, value varchar(255) DEFAULT '' NOT NULL, PRIMARY KEY (lld_override_operationid) ); CREATE INDEX lld_override_operation_1 ON lld_override_operation (lld_overrideid); CREATE TABLE lld_override_opstatus ( lld_override_operationid bigint NOT NULL, status integer DEFAULT '0' NOT NULL, PRIMARY KEY (lld_override_operationid) ); CREATE TABLE lld_override_opdiscover ( lld_override_operationid bigint NOT NULL, discover integer DEFAULT '0' NOT NULL, PRIMARY KEY (lld_override_operationid) ); CREATE TABLE lld_override_opperiod ( lld_override_operationid bigint NOT NULL, delay varchar(1024) DEFAULT '0' NOT NULL, PRIMARY KEY (lld_override_operationid) ); CREATE TABLE lld_override_ophistory ( lld_override_operationid bigint NOT NULL, history varchar(255) DEFAULT '31d' NOT NULL, PRIMARY KEY (lld_override_operationid) ); CREATE TABLE lld_override_optrends ( lld_override_operationid bigint NOT NULL, trends varchar(255) DEFAULT '365d' NOT NULL, PRIMARY KEY (lld_override_operationid) ); CREATE TABLE lld_override_opseverity ( lld_override_operationid bigint NOT NULL, severity integer DEFAULT '0' NOT NULL, PRIMARY KEY (lld_override_operationid) ); CREATE TABLE lld_override_optag ( lld_override_optagid bigint NOT NULL, lld_override_operationid bigint NOT NULL, tag varchar(255) DEFAULT '' NOT NULL, value varchar(255) DEFAULT '' NOT NULL, PRIMARY KEY (lld_override_optagid) ); CREATE INDEX lld_override_optag_1 ON lld_override_optag (lld_override_operationid); CREATE TABLE lld_override_optemplate ( lld_override_optemplateid bigint NOT NULL, lld_override_operationid bigint NOT NULL, templateid bigint NOT NULL, PRIMARY KEY (lld_override_optemplateid) ); CREATE UNIQUE INDEX lld_override_optemplate_1 ON lld_override_optemplate (lld_override_operationid,templateid); CREATE INDEX lld_override_optemplate_2 ON lld_override_optemplate (templateid); CREATE TABLE lld_override_opinventory ( lld_override_operationid bigint NOT NULL, inventory_mode integer DEFAULT '0' NOT NULL, PRIMARY KEY (lld_override_operationid) ); CREATE TABLE trigger_queue ( trigger_queueid bigint NOT NULL, objectid bigint NOT NULL, type integer DEFAULT '0' NOT NULL, clock integer DEFAULT '0' NOT NULL, ns integer DEFAULT '0' NOT NULL, PRIMARY KEY (trigger_queueid) ); CREATE TABLE item_parameter ( item_parameterid bigint NOT NULL, itemid bigint NOT NULL, name varchar(255) DEFAULT '' NOT NULL, value varchar(2048) DEFAULT '' NOT NULL, PRIMARY KEY (item_parameterid) ); CREATE INDEX item_parameter_1 ON item_parameter (itemid); CREATE TABLE role_rule ( role_ruleid bigint NOT NULL, roleid bigint NOT NULL, type integer DEFAULT '0' NOT NULL, name varchar(255) DEFAULT '' NOT NULL, value_int integer DEFAULT '0' NOT NULL, value_str varchar(255) DEFAULT '' NOT NULL, value_moduleid bigint NULL, value_serviceid bigint NULL, PRIMARY KEY (role_ruleid) ); CREATE INDEX role_rule_1 ON role_rule (roleid); CREATE INDEX role_rule_2 ON role_rule (value_moduleid); CREATE INDEX role_rule_3 ON role_rule (value_serviceid); CREATE TABLE token ( tokenid bigint NOT NULL, name varchar(64) DEFAULT '' NOT NULL, description text DEFAULT '' NOT NULL, userid bigint NOT NULL, token varchar(128) NULL, lastaccess integer DEFAULT '0' NOT NULL, status integer DEFAULT '0' NOT NULL, expires_at integer DEFAULT '0' NOT NULL, created_at integer DEFAULT '0' NOT NULL, creator_userid bigint NULL, PRIMARY KEY (tokenid) ); CREATE INDEX token_1 ON token (name); CREATE UNIQUE INDEX token_2 ON token (userid,name); CREATE UNIQUE INDEX token_3 ON token (token); CREATE INDEX token_4 ON token (creator_userid); CREATE TABLE item_tag ( itemtagid bigint NOT NULL, itemid bigint NOT NULL, tag varchar(255) DEFAULT '' NOT NULL, value varchar(255) DEFAULT '' NOT NULL, PRIMARY KEY (itemtagid) ); CREATE INDEX item_tag_1 ON item_tag (itemid); CREATE TABLE httptest_tag ( httptesttagid bigint NOT NULL, httptestid bigint NOT NULL, tag varchar(255) DEFAULT '' NOT NULL, value varchar(255) DEFAULT '' NOT NULL, PRIMARY KEY (httptesttagid) ); CREATE INDEX httptest_tag_1 ON httptest_tag (httptestid); CREATE TABLE sysmaps_element_tag ( selementtagid bigint NOT NULL, selementid bigint NOT NULL, tag varchar(255) DEFAULT '' NOT NULL, value varchar(255) DEFAULT '' NOT NULL, operator integer DEFAULT '0' NOT NULL, PRIMARY KEY (selementtagid) ); CREATE INDEX sysmaps_element_tag_1 ON sysmaps_element_tag (selementid); CREATE TABLE report ( reportid bigint NOT NULL, userid bigint NOT NULL, name varchar(255) DEFAULT '' NOT NULL, description varchar(2048) DEFAULT '' NOT NULL, status integer DEFAULT '0' NOT NULL, dashboardid bigint NOT NULL, period integer DEFAULT '0' NOT NULL, cycle integer DEFAULT '0' NOT NULL, weekdays integer DEFAULT '0' NOT NULL, start_time integer DEFAULT '0' NOT NULL, active_since integer DEFAULT '0' NOT NULL, active_till integer DEFAULT '0' NOT NULL, state integer DEFAULT '0' NOT NULL, lastsent integer DEFAULT '0' NOT NULL, info varchar(2048) DEFAULT '' NOT NULL, PRIMARY KEY (reportid) ); CREATE UNIQUE INDEX report_1 ON report (name); CREATE INDEX report_2 ON report (userid); CREATE INDEX report_3 ON report (dashboardid); CREATE TABLE report_param ( reportparamid bigint NOT NULL, reportid bigint NOT NULL, name varchar(255) DEFAULT '' NOT NULL, value text DEFAULT '' NOT NULL, PRIMARY KEY (reportparamid) ); CREATE INDEX report_param_1 ON report_param (reportid); CREATE TABLE report_user ( reportuserid bigint NOT NULL, reportid bigint NOT NULL, userid bigint NOT NULL, exclude integer DEFAULT '0' NOT NULL, access_userid bigint NULL, PRIMARY KEY (reportuserid) ); CREATE INDEX report_user_1 ON report_user (reportid); CREATE INDEX report_user_2 ON report_user (userid); CREATE INDEX report_user_3 ON report_user (access_userid); CREATE TABLE report_usrgrp ( reportusrgrpid bigint NOT NULL, reportid bigint NOT NULL, usrgrpid bigint NOT NULL, access_userid bigint NULL, PRIMARY KEY (reportusrgrpid) ); CREATE INDEX report_usrgrp_1 ON report_usrgrp (reportid); CREATE INDEX report_usrgrp_2 ON report_usrgrp (usrgrpid); CREATE INDEX report_usrgrp_3 ON report_usrgrp (access_userid); CREATE TABLE service_problem_tag ( service_problem_tagid bigint NOT NULL, serviceid bigint NOT NULL, tag varchar(255) DEFAULT '' NOT NULL, operator integer DEFAULT '0' NOT NULL, value varchar(255) DEFAULT '' NOT NULL, PRIMARY KEY (service_problem_tagid) ); CREATE INDEX service_problem_tag_1 ON service_problem_tag (serviceid); CREATE TABLE service_problem ( service_problemid bigint NOT NULL, eventid bigint NOT NULL, serviceid bigint NOT NULL, severity integer DEFAULT '0' NOT NULL, PRIMARY KEY (service_problemid) ); CREATE INDEX service_problem_1 ON service_problem (eventid); CREATE INDEX service_problem_2 ON service_problem (serviceid); CREATE TABLE service_tag ( servicetagid bigint NOT NULL, serviceid bigint NOT NULL, tag varchar(255) DEFAULT '' NOT NULL, value varchar(255) DEFAULT '' NOT NULL, PRIMARY KEY (servicetagid) ); CREATE INDEX service_tag_1 ON service_tag (serviceid); CREATE TABLE service_status_rule ( service_status_ruleid bigint NOT NULL, serviceid bigint NOT NULL, type integer DEFAULT '0' NOT NULL, limit_value integer DEFAULT '0' NOT NULL, limit_status integer DEFAULT '0' NOT NULL, new_status integer DEFAULT '0' NOT NULL, PRIMARY KEY (service_status_ruleid) ); CREATE INDEX service_status_rule_1 ON service_status_rule (serviceid); CREATE TABLE ha_node ( ha_nodeid varchar(25) NOT NULL, name varchar(255) DEFAULT '' NOT NULL, address varchar(255) DEFAULT '' NOT NULL, port integer DEFAULT '10051' NOT NULL, lastaccess integer DEFAULT '0' NOT NULL, status integer DEFAULT '0' NOT NULL, ha_sessionid varchar(25) DEFAULT '' NOT NULL, PRIMARY KEY (ha_nodeid) ); CREATE UNIQUE INDEX ha_node_1 ON ha_node (name); CREATE INDEX ha_node_2 ON ha_node (status,lastaccess); CREATE TABLE sla ( slaid bigint NOT NULL, name varchar(255) DEFAULT '' NOT NULL, period integer DEFAULT '0' NOT NULL, slo DOUBLE PRECISION DEFAULT '99.9' NOT NULL, effective_date integer DEFAULT '0' NOT NULL, timezone varchar(50) DEFAULT 'UTC' NOT NULL, status integer DEFAULT '1' NOT NULL, description text DEFAULT '' NOT NULL, PRIMARY KEY (slaid) ); CREATE UNIQUE INDEX sla_1 ON sla (name); CREATE TABLE sla_schedule ( sla_scheduleid bigint NOT NULL, slaid bigint NOT NULL, period_from integer DEFAULT '0' NOT NULL, period_to integer DEFAULT '0' NOT NULL, PRIMARY KEY (sla_scheduleid) ); CREATE INDEX sla_schedule_1 ON sla_schedule (slaid); CREATE TABLE sla_excluded_downtime ( sla_excluded_downtimeid bigint NOT NULL, slaid bigint NOT NULL, name varchar(255) DEFAULT '' NOT NULL, period_from integer DEFAULT '0' NOT NULL, period_to integer DEFAULT '0' NOT NULL, PRIMARY KEY (sla_excluded_downtimeid) ); CREATE INDEX sla_excluded_downtime_1 ON sla_excluded_downtime (slaid); CREATE TABLE sla_service_tag ( sla_service_tagid bigint NOT NULL, slaid bigint NOT NULL, tag varchar(255) DEFAULT '' NOT NULL, operator integer DEFAULT '0' NOT NULL, value varchar(255) DEFAULT '' NOT NULL, PRIMARY KEY (sla_service_tagid) ); CREATE INDEX sla_service_tag_1 ON sla_service_tag (slaid); CREATE TABLE host_rtdata ( hostid bigint NOT NULL, active_available integer DEFAULT '0' NOT NULL, PRIMARY KEY (hostid) ); CREATE TABLE userdirectory ( userdirectoryid bigint NOT NULL, name varchar(128) DEFAULT '' NOT NULL, description text DEFAULT '' NOT NULL, idp_type integer DEFAULT '1' NOT NULL, provision_status integer DEFAULT '0' NOT NULL, PRIMARY KEY (userdirectoryid) ); CREATE INDEX userdirectory_1 ON userdirectory (idp_type); CREATE TABLE userdirectory_ldap ( userdirectoryid bigint NOT NULL, host varchar(255) DEFAULT '' NOT NULL, port integer DEFAULT '389' NOT NULL, base_dn varchar(255) DEFAULT '' NOT NULL, search_attribute varchar(128) DEFAULT '' NOT NULL, bind_dn varchar(255) DEFAULT '' NOT NULL, bind_password varchar(128) DEFAULT '' NOT NULL, start_tls integer DEFAULT '0' NOT NULL, search_filter varchar(255) DEFAULT '' NOT NULL, group_basedn varchar(255) DEFAULT '' NOT NULL, group_name varchar(255) DEFAULT '' NOT NULL, group_member varchar(255) DEFAULT '' NOT NULL, user_ref_attr varchar(255) DEFAULT '' NOT NULL, group_filter varchar(255) DEFAULT '' NOT NULL, group_membership varchar(255) DEFAULT '' NOT NULL, user_username varchar(255) DEFAULT '' NOT NULL, user_lastname varchar(255) DEFAULT '' NOT NULL, PRIMARY KEY (userdirectoryid) ); CREATE TABLE userdirectory_saml ( userdirectoryid bigint NOT NULL, idp_entityid varchar(1024) DEFAULT '' NOT NULL, sso_url varchar(2048) DEFAULT '' NOT NULL, slo_url varchar(2048) DEFAULT '' NOT NULL, username_attribute varchar(128) DEFAULT '' NOT NULL, sp_entityid varchar(1024) DEFAULT '' NOT NULL, nameid_format varchar(2048) DEFAULT '' NOT NULL, sign_messages integer DEFAULT '0' NOT NULL, sign_assertions integer DEFAULT '0' NOT NULL, sign_authn_requests integer DEFAULT '0' NOT NULL, sign_logout_requests integer DEFAULT '0' NOT NULL, sign_logout_responses integer DEFAULT '0' NOT NULL, encrypt_nameid integer DEFAULT '0' NOT NULL, encrypt_assertions integer DEFAULT '0' NOT NULL, group_name varchar(255) DEFAULT '' NOT NULL, user_username varchar(255) DEFAULT '' NOT NULL, user_lastname varchar(255) DEFAULT '' NOT NULL, scim_status integer DEFAULT '0' NOT NULL, PRIMARY KEY (userdirectoryid) ); CREATE TABLE userdirectory_media ( userdirectory_mediaid bigint NOT NULL, userdirectoryid bigint NOT NULL, mediatypeid bigint NOT NULL, name varchar(64) DEFAULT '' NOT NULL, attribute varchar(255) DEFAULT '' NOT NULL, active integer DEFAULT '0' NOT NULL, severity integer DEFAULT '63' NOT NULL, period varchar(1024) DEFAULT '1-7,00:00-24:00' NOT NULL, PRIMARY KEY (userdirectory_mediaid) ); CREATE INDEX userdirectory_media_1 ON userdirectory_media (userdirectoryid); CREATE INDEX userdirectory_media_2 ON userdirectory_media (mediatypeid); CREATE TABLE userdirectory_usrgrp ( userdirectory_usrgrpid bigint NOT NULL, userdirectory_idpgroupid bigint NOT NULL, usrgrpid bigint NOT NULL, PRIMARY KEY (userdirectory_usrgrpid) ); CREATE UNIQUE INDEX userdirectory_usrgrp_1 ON userdirectory_usrgrp (userdirectory_idpgroupid,usrgrpid); CREATE INDEX userdirectory_usrgrp_2 ON userdirectory_usrgrp (usrgrpid); CREATE TABLE userdirectory_idpgroup ( userdirectory_idpgroupid bigint NOT NULL, userdirectoryid bigint NOT NULL, roleid bigint NOT NULL, name varchar(255) DEFAULT '' NOT NULL, PRIMARY KEY (userdirectory_idpgroupid) ); CREATE INDEX userdirectory_idpgroup_1 ON userdirectory_idpgroup (userdirectoryid); CREATE INDEX userdirectory_idpgroup_2 ON userdirectory_idpgroup (roleid); CREATE TABLE changelog ( changelogid bigserial NOT NULL, object integer DEFAULT '0' NOT NULL, objectid bigint NOT NULL, operation integer DEFAULT '0' NOT NULL, clock integer DEFAULT '0' NOT NULL, PRIMARY KEY (changelogid) ); CREATE INDEX changelog_1 ON changelog (clock); CREATE TABLE scim_group ( scim_groupid bigint NOT NULL, name varchar(64) DEFAULT '' NOT NULL, PRIMARY KEY (scim_groupid) ); CREATE UNIQUE INDEX scim_group_1 ON scim_group (name); CREATE TABLE user_scim_group ( user_scim_groupid bigint NOT NULL, userid bigint NOT NULL, scim_groupid bigint NOT NULL, PRIMARY KEY (user_scim_groupid) ); CREATE INDEX user_scim_group_1 ON user_scim_group (userid); CREATE INDEX user_scim_group_2 ON user_scim_group (scim_groupid); CREATE TABLE connector ( connectorid bigint NOT NULL, name varchar(255) DEFAULT '' NOT NULL, protocol integer DEFAULT '0' NOT NULL, data_type integer DEFAULT '0' NOT NULL, url varchar(2048) DEFAULT '' NOT NULL, max_records integer DEFAULT '0' NOT NULL, max_senders integer DEFAULT '1' NOT NULL, max_attempts integer DEFAULT '1' NOT NULL, timeout varchar(255) DEFAULT '5s' NOT NULL, http_proxy varchar(255) DEFAULT '' NOT NULL, authtype integer DEFAULT '0' NOT NULL, username varchar(255) DEFAULT '' NOT NULL, password varchar(255) DEFAULT '' NOT NULL, token varchar(128) DEFAULT '' NOT NULL, verify_peer integer DEFAULT '1' NOT NULL, verify_host integer DEFAULT '1' NOT NULL, ssl_cert_file varchar(255) DEFAULT '' NOT NULL, ssl_key_file varchar(255) DEFAULT '' NOT NULL, ssl_key_password varchar(64) DEFAULT '' NOT NULL, description text DEFAULT '' NOT NULL, status integer DEFAULT '1' NOT NULL, tags_evaltype integer DEFAULT '0' NOT NULL, item_value_type integer DEFAULT '31' NOT NULL, attempt_interval varchar(32) DEFAULT '5s' NOT NULL, PRIMARY KEY (connectorid) ); CREATE UNIQUE INDEX connector_1 ON connector (name); CREATE TABLE connector_tag ( connector_tagid bigint NOT NULL, connectorid bigint NOT NULL, tag varchar(255) DEFAULT '' NOT NULL, operator integer DEFAULT '0' NOT NULL, value varchar(255) DEFAULT '' NOT NULL, PRIMARY KEY (connector_tagid) ); CREATE INDEX connector_tag_1 ON connector_tag (connectorid); CREATE TABLE proxy ( proxyid bigint NOT NULL, name varchar(128) DEFAULT '' NOT NULL, operating_mode integer DEFAULT '0' NOT NULL, description text DEFAULT '' NOT NULL, tls_connect integer DEFAULT '1' NOT NULL, tls_accept integer DEFAULT '1' NOT NULL, tls_issuer varchar(1024) DEFAULT '' NOT NULL, tls_subject varchar(1024) DEFAULT '' NOT NULL, tls_psk_identity varchar(128) DEFAULT '' NOT NULL, tls_psk varchar(512) DEFAULT '' NOT NULL, allowed_addresses varchar(255) DEFAULT '' NOT NULL, address varchar(255) DEFAULT '127.0.0.1' NOT NULL, port varchar(64) DEFAULT '10051' NOT NULL, custom_timeouts integer DEFAULT '0' NOT NULL, timeout_zabbix_agent varchar(255) DEFAULT '' NOT NULL, timeout_simple_check varchar(255) DEFAULT '' NOT NULL, timeout_snmp_agent varchar(255) DEFAULT '' NOT NULL, timeout_external_check varchar(255) DEFAULT '' NOT NULL, timeout_db_monitor varchar(255) DEFAULT '' NOT NULL, timeout_http_agent varchar(255) DEFAULT '' NOT NULL, timeout_ssh_agent varchar(255) DEFAULT '' NOT NULL, timeout_telnet_agent varchar(255) DEFAULT '' NOT NULL, timeout_script varchar(255) DEFAULT '' NOT NULL, local_address varchar(255) DEFAULT '' NOT NULL, local_port varchar(64) DEFAULT '10051' NOT NULL, proxy_groupid bigint NULL, timeout_browser varchar(255) DEFAULT '' NOT NULL, PRIMARY KEY (proxyid) ); CREATE UNIQUE INDEX proxy_1 ON proxy (name); CREATE INDEX proxy_2 ON proxy (proxy_groupid); CREATE TABLE proxy_rtdata ( proxyid bigint NOT NULL, lastaccess integer DEFAULT '0' NOT NULL, version integer DEFAULT '0' NOT NULL, compatibility integer DEFAULT '0' NOT NULL, state integer DEFAULT '0' NOT NULL, PRIMARY KEY (proxyid) ); CREATE TABLE proxy_group ( proxy_groupid bigint NOT NULL, name varchar(255) DEFAULT '' NOT NULL, description text DEFAULT '' NOT NULL, failover_delay varchar(255) DEFAULT '1m' NOT NULL, min_online varchar(255) DEFAULT '1' NOT NULL, PRIMARY KEY (proxy_groupid) ); CREATE TABLE proxy_group_rtdata ( proxy_groupid bigint NOT NULL, state integer DEFAULT '0' NOT NULL, PRIMARY KEY (proxy_groupid) ); CREATE TABLE host_proxy ( hostproxyid bigint NOT NULL, hostid bigint NULL, host varchar(128) DEFAULT '' NOT NULL, proxyid bigint NULL, revision numeric(20) DEFAULT '0' NOT NULL, tls_accept integer DEFAULT '1' NOT NULL, tls_issuer varchar(1024) DEFAULT '' NOT NULL, tls_subject varchar(1024) DEFAULT '' NOT NULL, tls_psk_identity varchar(128) DEFAULT '' NOT NULL, tls_psk varchar(512) DEFAULT '' NOT NULL, PRIMARY KEY (hostproxyid) ); CREATE UNIQUE INDEX host_proxy_1 ON host_proxy (hostid); CREATE INDEX host_proxy_2 ON host_proxy (proxyid); CREATE INDEX host_proxy_3 ON host_proxy (revision); CREATE TABLE mfa ( mfaid bigint NOT NULL, type integer DEFAULT '0' NOT NULL, name varchar(128) DEFAULT '' NOT NULL, hash_function integer DEFAULT '1' NULL, code_length integer DEFAULT '6' NULL, api_hostname varchar(1024) DEFAULT '' NULL, clientid varchar(32) DEFAULT '' NULL, client_secret varchar(64) DEFAULT '' NULL, PRIMARY KEY (mfaid) ); CREATE UNIQUE INDEX mfa_1 ON mfa (name); CREATE TABLE mfa_totp_secret ( mfa_totp_secretid bigint NOT NULL, mfaid bigint NOT NULL, userid bigint NOT NULL, totp_secret varchar(32) DEFAULT '' NULL, status integer DEFAULT '0' NOT NULL, used_codes varchar(32) DEFAULT '' NOT NULL, PRIMARY KEY (mfa_totp_secretid) ); CREATE INDEX mfa_totp_secret_1 ON mfa_totp_secret (mfaid); CREATE INDEX mfa_totp_secret_2 ON mfa_totp_secret (userid); CREATE TABLE dbversion ( dbversionid bigint NOT NULL, mandatory integer DEFAULT '0' NOT NULL, optional integer DEFAULT '0' NOT NULL, PRIMARY KEY (dbversionid) ); INSERT INTO dbversion VALUES ('1','7000000','7000020'); create or replace function changelog_hosts_insert() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (1,new.hostid,1,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger hosts_insert after insert on hosts for each row execute procedure changelog_hosts_insert(); create or replace function changelog_hosts_update() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (1,old.hostid,2,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger hosts_update after update on hosts for each row execute procedure changelog_hosts_update(); create or replace function changelog_hosts_delete() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (1,old.hostid,3,cast(extract(epoch from now()) as int)); return old; end; $$ language plpgsql; create trigger hosts_delete before delete on hosts for each row execute procedure changelog_hosts_delete(); create or replace function hosts_name_upper_upper() returns trigger language plpgsql as $func$ begin update hosts set name_upper=upper(name) where hostid=new.hostid; return null; end $func$; create trigger hosts_name_upper_insert after insert on hosts for each row execute function hosts_name_upper_upper(); create trigger hosts_name_upper_update after update of name on hosts for each row execute function hosts_name_upper_upper(); create or replace function changelog_drules_insert() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (9,new.druleid,1,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger drules_insert after insert on drules for each row execute procedure changelog_drules_insert(); create or replace function changelog_drules_update() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (9,old.druleid,2,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger drules_update after update on drules for each row execute procedure changelog_drules_update(); create or replace function changelog_drules_delete() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (9,old.druleid,3,cast(extract(epoch from now()) as int)); return old; end; $$ language plpgsql; create trigger drules_delete before delete on drules for each row execute procedure changelog_drules_delete(); create or replace function changelog_dchecks_insert() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (10,new.dcheckid,1,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger dchecks_insert after insert on dchecks for each row execute procedure changelog_dchecks_insert(); create or replace function changelog_dchecks_update() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (10,old.dcheckid,2,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger dchecks_update after update on dchecks for each row execute procedure changelog_dchecks_update(); create or replace function changelog_dchecks_delete() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (10,old.dcheckid,3,cast(extract(epoch from now()) as int)); return old; end; $$ language plpgsql; create trigger dchecks_delete before delete on dchecks for each row execute procedure changelog_dchecks_delete(); create or replace function changelog_httptest_insert() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (11,new.httptestid,1,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger httptest_insert after insert on httptest for each row execute procedure changelog_httptest_insert(); create or replace function changelog_httptest_update() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (11,old.httptestid,2,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger httptest_update after update on httptest for each row execute procedure changelog_httptest_update(); create or replace function changelog_httptest_delete() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (11,old.httptestid,3,cast(extract(epoch from now()) as int)); return old; end; $$ language plpgsql; create trigger httptest_delete before delete on httptest for each row execute procedure changelog_httptest_delete(); create or replace function changelog_httpstep_insert() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (14,new.httpstepid,1,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger httpstep_insert after insert on httpstep for each row execute procedure changelog_httpstep_insert(); create or replace function changelog_httpstep_update() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (14,old.httpstepid,2,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger httpstep_update after update on httpstep for each row execute procedure changelog_httpstep_update(); create or replace function changelog_httpstep_delete() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (14,old.httpstepid,3,cast(extract(epoch from now()) as int)); return old; end; $$ language plpgsql; create trigger httpstep_delete before delete on httpstep for each row execute procedure changelog_httpstep_delete(); create or replace function changelog_items_insert() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (3,new.itemid,1,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger items_insert after insert on items for each row execute procedure changelog_items_insert(); create or replace function changelog_items_update() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (3,old.itemid,2,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger items_update after update on items for each row execute procedure changelog_items_update(); create or replace function changelog_items_delete() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (3,old.itemid,3,cast(extract(epoch from now()) as int)); return old; end; $$ language plpgsql; create trigger items_delete before delete on items for each row execute procedure changelog_items_delete(); create or replace function changelog_httpstepitem_insert() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (16,new.httpstepitemid,1,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger httpstepitem_insert after insert on httpstepitem for each row execute procedure changelog_httpstepitem_insert(); create or replace function changelog_httpstepitem_update() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (16,old.httpstepitemid,2,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger httpstepitem_update after update on httpstepitem for each row execute procedure changelog_httpstepitem_update(); create or replace function changelog_httpstepitem_delete() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (16,old.httpstepitemid,3,cast(extract(epoch from now()) as int)); return old; end; $$ language plpgsql; create trigger httpstepitem_delete before delete on httpstepitem for each row execute procedure changelog_httpstepitem_delete(); create or replace function changelog_httptestitem_insert() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (13,new.httptestitemid,1,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger httptestitem_insert after insert on httptestitem for each row execute procedure changelog_httptestitem_insert(); create or replace function changelog_httptestitem_update() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (13,old.httptestitemid,2,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger httptestitem_update after update on httptestitem for each row execute procedure changelog_httptestitem_update(); create or replace function changelog_httptestitem_delete() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (13,old.httptestitemid,3,cast(extract(epoch from now()) as int)); return old; end; $$ language plpgsql; create trigger httptestitem_delete before delete on httptestitem for each row execute procedure changelog_httptestitem_delete(); create or replace function changelog_triggers_insert() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (5,new.triggerid,1,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger triggers_insert after insert on triggers for each row execute procedure changelog_triggers_insert(); create or replace function changelog_triggers_update() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (5,old.triggerid,2,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger triggers_update after update on triggers for each row execute procedure changelog_triggers_update(); create or replace function changelog_triggers_delete() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (5,old.triggerid,3,cast(extract(epoch from now()) as int)); return old; end; $$ language plpgsql; create trigger triggers_delete before delete on triggers for each row execute procedure changelog_triggers_delete(); create or replace function changelog_functions_insert() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (7,new.functionid,1,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger functions_insert after insert on functions for each row execute procedure changelog_functions_insert(); create or replace function changelog_functions_update() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (7,old.functionid,2,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger functions_update after update on functions for each row execute procedure changelog_functions_update(); create or replace function changelog_functions_delete() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (7,old.functionid,3,cast(extract(epoch from now()) as int)); return old; end; $$ language plpgsql; create trigger functions_delete before delete on functions for each row execute procedure changelog_functions_delete(); create or replace function changelog_trigger_tag_insert() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (6,new.triggertagid,1,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger trigger_tag_insert after insert on trigger_tag for each row execute procedure changelog_trigger_tag_insert(); create or replace function changelog_trigger_tag_update() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (6,old.triggertagid,2,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger trigger_tag_update after update on trigger_tag for each row execute procedure changelog_trigger_tag_update(); create or replace function changelog_trigger_tag_delete() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (6,old.triggertagid,3,cast(extract(epoch from now()) as int)); return old; end; $$ language plpgsql; create trigger trigger_tag_delete before delete on trigger_tag for each row execute procedure changelog_trigger_tag_delete(); create or replace function changelog_item_preproc_insert() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (8,new.item_preprocid,1,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger item_preproc_insert after insert on item_preproc for each row execute procedure changelog_item_preproc_insert(); create or replace function changelog_item_preproc_update() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (8,old.item_preprocid,2,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger item_preproc_update after update on item_preproc for each row execute procedure changelog_item_preproc_update(); create or replace function changelog_item_preproc_delete() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (8,old.item_preprocid,3,cast(extract(epoch from now()) as int)); return old; end; $$ language plpgsql; create trigger item_preproc_delete before delete on item_preproc for each row execute procedure changelog_item_preproc_delete(); create or replace function changelog_httptest_field_insert() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (12,new.httptest_fieldid,1,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger httptest_field_insert after insert on httptest_field for each row execute procedure changelog_httptest_field_insert(); create or replace function changelog_httptest_field_update() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (12,old.httptest_fieldid,2,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger httptest_field_update after update on httptest_field for each row execute procedure changelog_httptest_field_update(); create or replace function changelog_httptest_field_delete() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (12,old.httptest_fieldid,3,cast(extract(epoch from now()) as int)); return old; end; $$ language plpgsql; create trigger httptest_field_delete before delete on httptest_field for each row execute procedure changelog_httptest_field_delete(); create or replace function changelog_httpstep_field_insert() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (15,new.httpstep_fieldid,1,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger httpstep_field_insert after insert on httpstep_field for each row execute procedure changelog_httpstep_field_insert(); create or replace function changelog_httpstep_field_update() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (15,old.httpstep_fieldid,2,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger httpstep_field_update after update on httpstep_field for each row execute procedure changelog_httpstep_field_update(); create or replace function changelog_httpstep_field_delete() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (15,old.httpstep_fieldid,3,cast(extract(epoch from now()) as int)); return old; end; $$ language plpgsql; create trigger httpstep_field_delete before delete on httpstep_field for each row execute procedure changelog_httpstep_field_delete(); create or replace function changelog_host_tag_insert() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (2,new.hosttagid,1,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger host_tag_insert after insert on host_tag for each row execute procedure changelog_host_tag_insert(); create or replace function changelog_host_tag_update() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (2,old.hosttagid,2,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger host_tag_update after update on host_tag for each row execute procedure changelog_host_tag_update(); create or replace function changelog_host_tag_delete() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (2,old.hosttagid,3,cast(extract(epoch from now()) as int)); return old; end; $$ language plpgsql; create trigger host_tag_delete before delete on host_tag for each row execute procedure changelog_host_tag_delete(); create or replace function changelog_item_tag_insert() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (4,new.itemtagid,1,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger item_tag_insert after insert on item_tag for each row execute procedure changelog_item_tag_insert(); create or replace function changelog_item_tag_update() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (4,old.itemtagid,2,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger item_tag_update after update on item_tag for each row execute procedure changelog_item_tag_update(); create or replace function changelog_item_tag_delete() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (4,old.itemtagid,3,cast(extract(epoch from now()) as int)); return old; end; $$ language plpgsql; create trigger item_tag_delete before delete on item_tag for each row execute procedure changelog_item_tag_delete(); create or replace function changelog_connector_insert() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (17,new.connectorid,1,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger connector_insert after insert on connector for each row execute procedure changelog_connector_insert(); create or replace function changelog_connector_update() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (17,old.connectorid,2,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger connector_update after update on connector for each row execute procedure changelog_connector_update(); create or replace function changelog_connector_delete() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (17,old.connectorid,3,cast(extract(epoch from now()) as int)); return old; end; $$ language plpgsql; create trigger connector_delete before delete on connector for each row execute procedure changelog_connector_delete(); create or replace function changelog_connector_tag_insert() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (18,new.connector_tagid,1,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger connector_tag_insert after insert on connector_tag for each row execute procedure changelog_connector_tag_insert(); create or replace function changelog_connector_tag_update() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (18,old.connector_tagid,2,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger connector_tag_update after update on connector_tag for each row execute procedure changelog_connector_tag_update(); create or replace function changelog_connector_tag_delete() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (18,old.connector_tagid,3,cast(extract(epoch from now()) as int)); return old; end; $$ language plpgsql; create trigger connector_tag_delete before delete on connector_tag for each row execute procedure changelog_connector_tag_delete(); create or replace function changelog_proxy_insert() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (19,new.proxyid,1,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger proxy_insert after insert on proxy for each row execute procedure changelog_proxy_insert(); create or replace function changelog_proxy_update() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (19,old.proxyid,2,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger proxy_update after update on proxy for each row execute procedure changelog_proxy_update(); create or replace function changelog_proxy_delete() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (19,old.proxyid,3,cast(extract(epoch from now()) as int)); return old; end; $$ language plpgsql; create trigger proxy_delete before delete on proxy for each row execute procedure changelog_proxy_delete(); create or replace function changelog_proxy_group_insert() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (20,new.proxy_groupid,1,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger proxy_group_insert after insert on proxy_group for each row execute procedure changelog_proxy_group_insert(); create or replace function changelog_proxy_group_update() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (20,old.proxy_groupid,2,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger proxy_group_update after update on proxy_group for each row execute procedure changelog_proxy_group_update(); create or replace function changelog_proxy_group_delete() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (20,old.proxy_groupid,3,cast(extract(epoch from now()) as int)); return old; end; $$ language plpgsql; create trigger proxy_group_delete before delete on proxy_group for each row execute procedure changelog_proxy_group_delete(); create or replace function changelog_host_proxy_insert() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (21,new.hostproxyid,1,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger host_proxy_insert after insert on host_proxy for each row execute procedure changelog_host_proxy_insert(); create or replace function changelog_host_proxy_update() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (21,old.hostproxyid,2,cast(extract(epoch from now()) as int)); return new; end; $$ language plpgsql; create trigger host_proxy_update after update on host_proxy for each row execute procedure changelog_host_proxy_update(); create or replace function changelog_host_proxy_delete() returns trigger as $$ begin insert into changelog (object,objectid,operation,clock) values (21,old.hostproxyid,3,cast(extract(epoch from now()) as int)); return old; end; $$ language plpgsql; create trigger host_proxy_delete before delete on host_proxy for each row execute procedure changelog_host_proxy_delete(); ALTER TABLE ONLY users ADD CONSTRAINT c_users_1 FOREIGN KEY (roleid) REFERENCES role (roleid) ON DELETE CASCADE; ALTER TABLE ONLY users ADD CONSTRAINT c_users_2 FOREIGN KEY (userdirectoryid) REFERENCES userdirectory (userdirectoryid); ALTER TABLE ONLY hosts ADD CONSTRAINT c_hosts_1 FOREIGN KEY (proxyid) REFERENCES proxy (proxyid); ALTER TABLE ONLY hosts ADD CONSTRAINT c_hosts_2 FOREIGN KEY (maintenanceid) REFERENCES maintenances (maintenanceid); ALTER TABLE ONLY hosts ADD CONSTRAINT c_hosts_3 FOREIGN KEY (templateid) REFERENCES hosts (hostid); ALTER TABLE ONLY hosts ADD CONSTRAINT c_hosts_4 FOREIGN KEY (proxy_groupid) REFERENCES proxy_group (proxy_groupid); ALTER TABLE ONLY hgset_group ADD CONSTRAINT c_hgset_group_1 FOREIGN KEY (hgsetid) REFERENCES hgset (hgsetid) ON DELETE CASCADE; ALTER TABLE ONLY hgset_group ADD CONSTRAINT c_hgset_group_2 FOREIGN KEY (groupid) REFERENCES hstgrp (groupid); ALTER TABLE ONLY host_hgset ADD CONSTRAINT c_host_hgset_1 FOREIGN KEY (hostid) REFERENCES hosts (hostid) ON DELETE CASCADE; ALTER TABLE ONLY host_hgset ADD CONSTRAINT c_host_hgset_2 FOREIGN KEY (hgsetid) REFERENCES hgset (hgsetid); ALTER TABLE ONLY group_prototype ADD CONSTRAINT c_group_prototype_1 FOREIGN KEY (hostid) REFERENCES hosts (hostid) ON DELETE CASCADE; ALTER TABLE ONLY group_prototype ADD CONSTRAINT c_group_prototype_2 FOREIGN KEY (groupid) REFERENCES hstgrp (groupid); ALTER TABLE ONLY group_prototype ADD CONSTRAINT c_group_prototype_3 FOREIGN KEY (templateid) REFERENCES group_prototype (group_prototypeid) ON DELETE CASCADE; ALTER TABLE ONLY group_discovery ADD CONSTRAINT c_group_discovery_1 FOREIGN KEY (groupid) REFERENCES hstgrp (groupid) ON DELETE CASCADE; ALTER TABLE ONLY group_discovery ADD CONSTRAINT c_group_discovery_2 FOREIGN KEY (parent_group_prototypeid) REFERENCES group_prototype (group_prototypeid); ALTER TABLE ONLY drules ADD CONSTRAINT c_drules_1 FOREIGN KEY (proxyid) REFERENCES proxy (proxyid); ALTER TABLE ONLY dchecks ADD CONSTRAINT c_dchecks_1 FOREIGN KEY (druleid) REFERENCES drules (druleid); ALTER TABLE ONLY httptest ADD CONSTRAINT c_httptest_2 FOREIGN KEY (hostid) REFERENCES hosts (hostid); ALTER TABLE ONLY httptest ADD CONSTRAINT c_httptest_3 FOREIGN KEY (templateid) REFERENCES httptest (httptestid); ALTER TABLE ONLY httpstep ADD CONSTRAINT c_httpstep_1 FOREIGN KEY (httptestid) REFERENCES httptest (httptestid); ALTER TABLE ONLY interface ADD CONSTRAINT c_interface_1 FOREIGN KEY (hostid) REFERENCES hosts (hostid) ON DELETE CASCADE; ALTER TABLE ONLY valuemap ADD CONSTRAINT c_valuemap_1 FOREIGN KEY (hostid) REFERENCES hosts (hostid) ON DELETE CASCADE; ALTER TABLE ONLY items ADD CONSTRAINT c_items_1 FOREIGN KEY (hostid) REFERENCES hosts (hostid); ALTER TABLE ONLY items ADD CONSTRAINT c_items_2 FOREIGN KEY (templateid) REFERENCES items (itemid); ALTER TABLE ONLY items ADD CONSTRAINT c_items_3 FOREIGN KEY (valuemapid) REFERENCES valuemap (valuemapid); ALTER TABLE ONLY items ADD CONSTRAINT c_items_4 FOREIGN KEY (interfaceid) REFERENCES interface (interfaceid); ALTER TABLE ONLY items ADD CONSTRAINT c_items_5 FOREIGN KEY (master_itemid) REFERENCES items (itemid); ALTER TABLE ONLY httpstepitem ADD CONSTRAINT c_httpstepitem_1 FOREIGN KEY (httpstepid) REFERENCES httpstep (httpstepid); ALTER TABLE ONLY httpstepitem ADD CONSTRAINT c_httpstepitem_2 FOREIGN KEY (itemid) REFERENCES items (itemid); ALTER TABLE ONLY httptestitem ADD CONSTRAINT c_httptestitem_1 FOREIGN KEY (httptestid) REFERENCES httptest (httptestid); ALTER TABLE ONLY httptestitem ADD CONSTRAINT c_httptestitem_2 FOREIGN KEY (itemid) REFERENCES items (itemid); ALTER TABLE ONLY media_type_param ADD CONSTRAINT c_media_type_param_1 FOREIGN KEY (mediatypeid) REFERENCES media_type (mediatypeid) ON DELETE CASCADE; ALTER TABLE ONLY media_type_message ADD CONSTRAINT c_media_type_message_1 FOREIGN KEY (mediatypeid) REFERENCES media_type (mediatypeid) ON DELETE CASCADE; ALTER TABLE ONLY usrgrp ADD CONSTRAINT c_usrgrp_2 FOREIGN KEY (userdirectoryid) REFERENCES userdirectory (userdirectoryid); ALTER TABLE ONLY usrgrp ADD CONSTRAINT c_usrgrp_3 FOREIGN KEY (mfaid) REFERENCES mfa (mfaid); ALTER TABLE ONLY users_groups ADD CONSTRAINT c_users_groups_1 FOREIGN KEY (usrgrpid) REFERENCES usrgrp (usrgrpid) ON DELETE CASCADE; ALTER TABLE ONLY users_groups ADD CONSTRAINT c_users_groups_2 FOREIGN KEY (userid) REFERENCES users (userid) ON DELETE CASCADE; ALTER TABLE ONLY ugset_group ADD CONSTRAINT c_ugset_group_1 FOREIGN KEY (ugsetid) REFERENCES ugset (ugsetid) ON DELETE CASCADE; ALTER TABLE ONLY ugset_group ADD CONSTRAINT c_ugset_group_2 FOREIGN KEY (usrgrpid) REFERENCES usrgrp (usrgrpid); ALTER TABLE ONLY user_ugset ADD CONSTRAINT c_user_ugset_1 FOREIGN KEY (userid) REFERENCES users (userid) ON DELETE CASCADE; ALTER TABLE ONLY user_ugset ADD CONSTRAINT c_user_ugset_2 FOREIGN KEY (ugsetid) REFERENCES ugset (ugsetid); ALTER TABLE ONLY scripts ADD CONSTRAINT c_scripts_1 FOREIGN KEY (usrgrpid) REFERENCES usrgrp (usrgrpid); ALTER TABLE ONLY scripts ADD CONSTRAINT c_scripts_2 FOREIGN KEY (groupid) REFERENCES hstgrp (groupid); ALTER TABLE ONLY script_param ADD CONSTRAINT c_script_param_1 FOREIGN KEY (scriptid) REFERENCES scripts (scriptid) ON DELETE CASCADE; ALTER TABLE ONLY operations ADD CONSTRAINT c_operations_1 FOREIGN KEY (actionid) REFERENCES actions (actionid) ON DELETE CASCADE; ALTER TABLE ONLY optag ADD CONSTRAINT c_optag_1 FOREIGN KEY (operationid) REFERENCES operations (operationid) ON DELETE CASCADE; ALTER TABLE ONLY opmessage ADD CONSTRAINT c_opmessage_1 FOREIGN KEY (operationid) REFERENCES operations (operationid) ON DELETE CASCADE; ALTER TABLE ONLY opmessage ADD CONSTRAINT c_opmessage_2 FOREIGN KEY (mediatypeid) REFERENCES media_type (mediatypeid); ALTER TABLE ONLY opmessage_grp ADD CONSTRAINT c_opmessage_grp_1 FOREIGN KEY (operationid) REFERENCES operations (operationid) ON DELETE CASCADE; ALTER TABLE ONLY opmessage_grp ADD CONSTRAINT c_opmessage_grp_2 FOREIGN KEY (usrgrpid) REFERENCES usrgrp (usrgrpid); ALTER TABLE ONLY opmessage_usr ADD CONSTRAINT c_opmessage_usr_1 FOREIGN KEY (operationid) REFERENCES operations (operationid) ON DELETE CASCADE; ALTER TABLE ONLY opmessage_usr ADD CONSTRAINT c_opmessage_usr_2 FOREIGN KEY (userid) REFERENCES users (userid); ALTER TABLE ONLY opcommand ADD CONSTRAINT c_opcommand_1 FOREIGN KEY (operationid) REFERENCES operations (operationid) ON DELETE CASCADE; ALTER TABLE ONLY opcommand ADD CONSTRAINT c_opcommand_2 FOREIGN KEY (scriptid) REFERENCES scripts (scriptid); ALTER TABLE ONLY opcommand_hst ADD CONSTRAINT c_opcommand_hst_1 FOREIGN KEY (operationid) REFERENCES operations (operationid) ON DELETE CASCADE; ALTER TABLE ONLY opcommand_hst ADD CONSTRAINT c_opcommand_hst_2 FOREIGN KEY (hostid) REFERENCES hosts (hostid); ALTER TABLE ONLY opcommand_grp ADD CONSTRAINT c_opcommand_grp_1 FOREIGN KEY (operationid) REFERENCES operations (operationid) ON DELETE CASCADE; ALTER TABLE ONLY opcommand_grp ADD CONSTRAINT c_opcommand_grp_2 FOREIGN KEY (groupid) REFERENCES hstgrp (groupid); ALTER TABLE ONLY opgroup ADD CONSTRAINT c_opgroup_1 FOREIGN KEY (operationid) REFERENCES operations (operationid) ON DELETE CASCADE; ALTER TABLE ONLY opgroup ADD CONSTRAINT c_opgroup_2 FOREIGN KEY (groupid) REFERENCES hstgrp (groupid); ALTER TABLE ONLY optemplate ADD CONSTRAINT c_optemplate_1 FOREIGN KEY (operationid) REFERENCES operations (operationid) ON DELETE CASCADE; ALTER TABLE ONLY optemplate ADD CONSTRAINT c_optemplate_2 FOREIGN KEY (templateid) REFERENCES hosts (hostid); ALTER TABLE ONLY opconditions ADD CONSTRAINT c_opconditions_1 FOREIGN KEY (operationid) REFERENCES operations (operationid) ON DELETE CASCADE; ALTER TABLE ONLY conditions ADD CONSTRAINT c_conditions_1 FOREIGN KEY (actionid) REFERENCES actions (actionid) ON DELETE CASCADE; ALTER TABLE ONLY config ADD CONSTRAINT c_config_1 FOREIGN KEY (alert_usrgrpid) REFERENCES usrgrp (usrgrpid); ALTER TABLE ONLY config ADD CONSTRAINT c_config_2 FOREIGN KEY (discovery_groupid) REFERENCES hstgrp (groupid); ALTER TABLE ONLY config ADD CONSTRAINT c_config_3 FOREIGN KEY (ldap_userdirectoryid) REFERENCES userdirectory (userdirectoryid); ALTER TABLE ONLY config ADD CONSTRAINT c_config_4 FOREIGN KEY (disabled_usrgrpid) REFERENCES usrgrp (usrgrpid); ALTER TABLE ONLY config ADD CONSTRAINT c_config_5 FOREIGN KEY (mfaid) REFERENCES mfa (mfaid); ALTER TABLE ONLY triggers ADD CONSTRAINT c_triggers_1 FOREIGN KEY (templateid) REFERENCES triggers (triggerid); ALTER TABLE ONLY trigger_depends ADD CONSTRAINT c_trigger_depends_1 FOREIGN KEY (triggerid_down) REFERENCES triggers (triggerid) ON DELETE CASCADE; ALTER TABLE ONLY trigger_depends ADD CONSTRAINT c_trigger_depends_2 FOREIGN KEY (triggerid_up) REFERENCES triggers (triggerid) ON DELETE CASCADE; ALTER TABLE ONLY functions ADD CONSTRAINT c_functions_1 FOREIGN KEY (itemid) REFERENCES items (itemid); ALTER TABLE ONLY functions ADD CONSTRAINT c_functions_2 FOREIGN KEY (triggerid) REFERENCES triggers (triggerid); ALTER TABLE ONLY graphs ADD CONSTRAINT c_graphs_1 FOREIGN KEY (templateid) REFERENCES graphs (graphid) ON DELETE CASCADE; ALTER TABLE ONLY graphs ADD CONSTRAINT c_graphs_2 FOREIGN KEY (ymin_itemid) REFERENCES items (itemid); ALTER TABLE ONLY graphs ADD CONSTRAINT c_graphs_3 FOREIGN KEY (ymax_itemid) REFERENCES items (itemid); ALTER TABLE ONLY graphs_items ADD CONSTRAINT c_graphs_items_1 FOREIGN KEY (graphid) REFERENCES graphs (graphid) ON DELETE CASCADE; ALTER TABLE ONLY graphs_items ADD CONSTRAINT c_graphs_items_2 FOREIGN KEY (itemid) REFERENCES items (itemid) ON DELETE CASCADE; ALTER TABLE ONLY hostmacro ADD CONSTRAINT c_hostmacro_1 FOREIGN KEY (hostid) REFERENCES hosts (hostid) ON DELETE CASCADE; ALTER TABLE ONLY hosts_groups ADD CONSTRAINT c_hosts_groups_1 FOREIGN KEY (hostid) REFERENCES hosts (hostid) ON DELETE CASCADE; ALTER TABLE ONLY hosts_groups ADD CONSTRAINT c_hosts_groups_2 FOREIGN KEY (groupid) REFERENCES hstgrp (groupid) ON DELETE CASCADE; ALTER TABLE ONLY hosts_templates ADD CONSTRAINT c_hosts_templates_1 FOREIGN KEY (hostid) REFERENCES hosts (hostid) ON DELETE CASCADE; ALTER TABLE ONLY hosts_templates ADD CONSTRAINT c_hosts_templates_2 FOREIGN KEY (templateid) REFERENCES hosts (hostid) ON DELETE CASCADE; ALTER TABLE ONLY valuemap_mapping ADD CONSTRAINT c_valuemap_mapping_1 FOREIGN KEY (valuemapid) REFERENCES valuemap (valuemapid) ON DELETE CASCADE; ALTER TABLE ONLY media ADD CONSTRAINT c_media_1 FOREIGN KEY (userid) REFERENCES users (userid) ON DELETE CASCADE; ALTER TABLE ONLY media ADD CONSTRAINT c_media_2 FOREIGN KEY (mediatypeid) REFERENCES media_type (mediatypeid) ON DELETE CASCADE; ALTER TABLE ONLY media ADD CONSTRAINT c_media_3 FOREIGN KEY (userdirectory_mediaid) REFERENCES userdirectory_media (userdirectory_mediaid) ON DELETE CASCADE; ALTER TABLE ONLY rights ADD CONSTRAINT c_rights_1 FOREIGN KEY (groupid) REFERENCES usrgrp (usrgrpid) ON DELETE CASCADE; ALTER TABLE ONLY rights ADD CONSTRAINT c_rights_2 FOREIGN KEY (id) REFERENCES hstgrp (groupid) ON DELETE CASCADE; ALTER TABLE ONLY permission ADD CONSTRAINT c_permission_1 FOREIGN KEY (ugsetid) REFERENCES ugset (ugsetid) ON DELETE CASCADE; ALTER TABLE ONLY permission ADD CONSTRAINT c_permission_2 FOREIGN KEY (hgsetid) REFERENCES hgset (hgsetid) ON DELETE CASCADE; ALTER TABLE ONLY services_links ADD CONSTRAINT c_services_links_1 FOREIGN KEY (serviceupid) REFERENCES services (serviceid) ON DELETE CASCADE; ALTER TABLE ONLY services_links ADD CONSTRAINT c_services_links_2 FOREIGN KEY (servicedownid) REFERENCES services (serviceid) ON DELETE CASCADE; ALTER TABLE ONLY icon_map ADD CONSTRAINT c_icon_map_1 FOREIGN KEY (default_iconid) REFERENCES images (imageid); ALTER TABLE ONLY icon_mapping ADD CONSTRAINT c_icon_mapping_1 FOREIGN KEY (iconmapid) REFERENCES icon_map (iconmapid) ON DELETE CASCADE; ALTER TABLE ONLY icon_mapping ADD CONSTRAINT c_icon_mapping_2 FOREIGN KEY (iconid) REFERENCES images (imageid); ALTER TABLE ONLY sysmaps ADD CONSTRAINT c_sysmaps_1 FOREIGN KEY (backgroundid) REFERENCES images (imageid); ALTER TABLE ONLY sysmaps ADD CONSTRAINT c_sysmaps_2 FOREIGN KEY (iconmapid) REFERENCES icon_map (iconmapid); ALTER TABLE ONLY sysmaps ADD CONSTRAINT c_sysmaps_3 FOREIGN KEY (userid) REFERENCES users (userid); ALTER TABLE ONLY sysmaps_elements ADD CONSTRAINT c_sysmaps_elements_1 FOREIGN KEY (sysmapid) REFERENCES sysmaps (sysmapid) ON DELETE CASCADE; ALTER TABLE ONLY sysmaps_elements ADD CONSTRAINT c_sysmaps_elements_2 FOREIGN KEY (iconid_off) REFERENCES images (imageid); ALTER TABLE ONLY sysmaps_elements ADD CONSTRAINT c_sysmaps_elements_3 FOREIGN KEY (iconid_on) REFERENCES images (imageid); ALTER TABLE ONLY sysmaps_elements ADD CONSTRAINT c_sysmaps_elements_4 FOREIGN KEY (iconid_disabled) REFERENCES images (imageid); ALTER TABLE ONLY sysmaps_elements ADD CONSTRAINT c_sysmaps_elements_5 FOREIGN KEY (iconid_maintenance) REFERENCES images (imageid); ALTER TABLE ONLY sysmaps_links ADD CONSTRAINT c_sysmaps_links_1 FOREIGN KEY (sysmapid) REFERENCES sysmaps (sysmapid) ON DELETE CASCADE; ALTER TABLE ONLY sysmaps_links ADD CONSTRAINT c_sysmaps_links_2 FOREIGN KEY (selementid1) REFERENCES sysmaps_elements (selementid) ON DELETE CASCADE; ALTER TABLE ONLY sysmaps_links ADD CONSTRAINT c_sysmaps_links_3 FOREIGN KEY (selementid2) REFERENCES sysmaps_elements (selementid) ON DELETE CASCADE; ALTER TABLE ONLY sysmaps_link_triggers ADD CONSTRAINT c_sysmaps_link_triggers_1 FOREIGN KEY (linkid) REFERENCES sysmaps_links (linkid) ON DELETE CASCADE; ALTER TABLE ONLY sysmaps_link_triggers ADD CONSTRAINT c_sysmaps_link_triggers_2 FOREIGN KEY (triggerid) REFERENCES triggers (triggerid) ON DELETE CASCADE; ALTER TABLE ONLY sysmap_element_url ADD CONSTRAINT c_sysmap_element_url_1 FOREIGN KEY (selementid) REFERENCES sysmaps_elements (selementid) ON DELETE CASCADE; ALTER TABLE ONLY sysmap_url ADD CONSTRAINT c_sysmap_url_1 FOREIGN KEY (sysmapid) REFERENCES sysmaps (sysmapid) ON DELETE CASCADE; ALTER TABLE ONLY sysmap_user ADD CONSTRAINT c_sysmap_user_1 FOREIGN KEY (sysmapid) REFERENCES sysmaps (sysmapid) ON DELETE CASCADE; ALTER TABLE ONLY sysmap_user ADD CONSTRAINT c_sysmap_user_2 FOREIGN KEY (userid) REFERENCES users (userid) ON DELETE CASCADE; ALTER TABLE ONLY sysmap_usrgrp ADD CONSTRAINT c_sysmap_usrgrp_1 FOREIGN KEY (sysmapid) REFERENCES sysmaps (sysmapid) ON DELETE CASCADE; ALTER TABLE ONLY sysmap_usrgrp ADD CONSTRAINT c_sysmap_usrgrp_2 FOREIGN KEY (usrgrpid) REFERENCES usrgrp (usrgrpid) ON DELETE CASCADE; ALTER TABLE ONLY maintenances_hosts ADD CONSTRAINT c_maintenances_hosts_1 FOREIGN KEY (maintenanceid) REFERENCES maintenances (maintenanceid) ON DELETE CASCADE; ALTER TABLE ONLY maintenances_hosts ADD CONSTRAINT c_maintenances_hosts_2 FOREIGN KEY (hostid) REFERENCES hosts (hostid) ON DELETE CASCADE; ALTER TABLE ONLY maintenances_groups ADD CONSTRAINT c_maintenances_groups_1 FOREIGN KEY (maintenanceid) REFERENCES maintenances (maintenanceid) ON DELETE CASCADE; ALTER TABLE ONLY maintenances_groups ADD CONSTRAINT c_maintenances_groups_2 FOREIGN KEY (groupid) REFERENCES hstgrp (groupid) ON DELETE CASCADE; ALTER TABLE ONLY maintenances_windows ADD CONSTRAINT c_maintenances_windows_1 FOREIGN KEY (maintenanceid) REFERENCES maintenances (maintenanceid) ON DELETE CASCADE; ALTER TABLE ONLY maintenances_windows ADD CONSTRAINT c_maintenances_windows_2 FOREIGN KEY (timeperiodid) REFERENCES timeperiods (timeperiodid) ON DELETE CASCADE; ALTER TABLE ONLY expressions ADD CONSTRAINT c_expressions_1 FOREIGN KEY (regexpid) REFERENCES regexps (regexpid) ON DELETE CASCADE; ALTER TABLE ONLY alerts ADD CONSTRAINT c_alerts_1 FOREIGN KEY (actionid) REFERENCES actions (actionid) ON DELETE CASCADE; ALTER TABLE ONLY alerts ADD CONSTRAINT c_alerts_2 FOREIGN KEY (eventid) REFERENCES events (eventid) ON DELETE CASCADE; ALTER TABLE ONLY alerts ADD CONSTRAINT c_alerts_3 FOREIGN KEY (userid) REFERENCES users (userid) ON DELETE CASCADE; ALTER TABLE ONLY alerts ADD CONSTRAINT c_alerts_4 FOREIGN KEY (mediatypeid) REFERENCES media_type (mediatypeid) ON DELETE CASCADE; ALTER TABLE ONLY alerts ADD CONSTRAINT c_alerts_5 FOREIGN KEY (p_eventid) REFERENCES events (eventid) ON DELETE CASCADE; ALTER TABLE ONLY alerts ADD CONSTRAINT c_alerts_6 FOREIGN KEY (acknowledgeid) REFERENCES acknowledges (acknowledgeid) ON DELETE CASCADE; ALTER TABLE ONLY event_symptom ADD CONSTRAINT c_event_symptom_1 FOREIGN KEY (eventid) REFERENCES events (eventid) ON DELETE CASCADE; ALTER TABLE ONLY event_symptom ADD CONSTRAINT c_event_symptom_2 FOREIGN KEY (cause_eventid) REFERENCES events (eventid); ALTER TABLE ONLY acknowledges ADD CONSTRAINT c_acknowledges_1 FOREIGN KEY (userid) REFERENCES users (userid) ON DELETE CASCADE; ALTER TABLE ONLY acknowledges ADD CONSTRAINT c_acknowledges_2 FOREIGN KEY (eventid) REFERENCES events (eventid) ON DELETE CASCADE; ALTER TABLE ONLY service_alarms ADD CONSTRAINT c_service_alarms_1 FOREIGN KEY (serviceid) REFERENCES services (serviceid) ON DELETE CASCADE; ALTER TABLE ONLY autoreg_host ADD CONSTRAINT c_autoreg_host_1 FOREIGN KEY (proxyid) REFERENCES proxy (proxyid) ON DELETE CASCADE; ALTER TABLE ONLY dhosts ADD CONSTRAINT c_dhosts_1 FOREIGN KEY (druleid) REFERENCES drules (druleid) ON DELETE CASCADE; ALTER TABLE ONLY dservices ADD CONSTRAINT c_dservices_1 FOREIGN KEY (dhostid) REFERENCES dhosts (dhostid) ON DELETE CASCADE; ALTER TABLE ONLY dservices ADD CONSTRAINT c_dservices_2 FOREIGN KEY (dcheckid) REFERENCES dchecks (dcheckid) ON DELETE CASCADE; ALTER TABLE ONLY graph_discovery ADD CONSTRAINT c_graph_discovery_1 FOREIGN KEY (graphid) REFERENCES graphs (graphid) ON DELETE CASCADE; ALTER TABLE ONLY graph_discovery ADD CONSTRAINT c_graph_discovery_2 FOREIGN KEY (parent_graphid) REFERENCES graphs (graphid); ALTER TABLE ONLY host_inventory ADD CONSTRAINT c_host_inventory_1 FOREIGN KEY (hostid) REFERENCES hosts (hostid) ON DELETE CASCADE; ALTER TABLE ONLY item_discovery ADD CONSTRAINT c_item_discovery_1 FOREIGN KEY (itemid) REFERENCES items (itemid) ON DELETE CASCADE; ALTER TABLE ONLY item_discovery ADD CONSTRAINT c_item_discovery_2 FOREIGN KEY (parent_itemid) REFERENCES items (itemid) ON DELETE CASCADE; ALTER TABLE ONLY host_discovery ADD CONSTRAINT c_host_discovery_1 FOREIGN KEY (hostid) REFERENCES hosts (hostid) ON DELETE CASCADE; ALTER TABLE ONLY host_discovery ADD CONSTRAINT c_host_discovery_2 FOREIGN KEY (parent_hostid) REFERENCES hosts (hostid); ALTER TABLE ONLY host_discovery ADD CONSTRAINT c_host_discovery_3 FOREIGN KEY (parent_itemid) REFERENCES items (itemid); ALTER TABLE ONLY interface_discovery ADD CONSTRAINT c_interface_discovery_1 FOREIGN KEY (interfaceid) REFERENCES interface (interfaceid) ON DELETE CASCADE; ALTER TABLE ONLY interface_discovery ADD CONSTRAINT c_interface_discovery_2 FOREIGN KEY (parent_interfaceid) REFERENCES interface (interfaceid) ON DELETE CASCADE; ALTER TABLE ONLY profiles ADD CONSTRAINT c_profiles_1 FOREIGN KEY (userid) REFERENCES users (userid) ON DELETE CASCADE; ALTER TABLE ONLY sessions ADD CONSTRAINT c_sessions_1 FOREIGN KEY (userid) REFERENCES users (userid) ON DELETE CASCADE; ALTER TABLE ONLY trigger_discovery ADD CONSTRAINT c_trigger_discovery_1 FOREIGN KEY (triggerid) REFERENCES triggers (triggerid) ON DELETE CASCADE; ALTER TABLE ONLY trigger_discovery ADD CONSTRAINT c_trigger_discovery_2 FOREIGN KEY (parent_triggerid) REFERENCES triggers (triggerid); ALTER TABLE ONLY item_condition ADD CONSTRAINT c_item_condition_1 FOREIGN KEY (itemid) REFERENCES items (itemid) ON DELETE CASCADE; ALTER TABLE ONLY item_rtdata ADD CONSTRAINT c_item_rtdata_1 FOREIGN KEY (itemid) REFERENCES items (itemid) ON DELETE CASCADE; ALTER TABLE ONLY item_rtname ADD CONSTRAINT c_item_rtname_1 FOREIGN KEY (itemid) REFERENCES items (itemid) ON DELETE CASCADE; ALTER TABLE ONLY opinventory ADD CONSTRAINT c_opinventory_1 FOREIGN KEY (operationid) REFERENCES operations (operationid) ON DELETE CASCADE; ALTER TABLE ONLY trigger_tag ADD CONSTRAINT c_trigger_tag_1 FOREIGN KEY (triggerid) REFERENCES triggers (triggerid); ALTER TABLE ONLY event_tag ADD CONSTRAINT c_event_tag_1 FOREIGN KEY (eventid) REFERENCES events (eventid) ON DELETE CASCADE; ALTER TABLE ONLY problem ADD CONSTRAINT c_problem_1 FOREIGN KEY (eventid) REFERENCES events (eventid) ON DELETE CASCADE; ALTER TABLE ONLY problem ADD CONSTRAINT c_problem_2 FOREIGN KEY (r_eventid) REFERENCES events (eventid) ON DELETE CASCADE; ALTER TABLE ONLY problem ADD CONSTRAINT c_problem_3 FOREIGN KEY (cause_eventid) REFERENCES events (eventid); ALTER TABLE ONLY problem_tag ADD CONSTRAINT c_problem_tag_1 FOREIGN KEY (eventid) REFERENCES problem (eventid) ON DELETE CASCADE; ALTER TABLE ONLY tag_filter ADD CONSTRAINT c_tag_filter_1 FOREIGN KEY (usrgrpid) REFERENCES usrgrp (usrgrpid) ON DELETE CASCADE; ALTER TABLE ONLY tag_filter ADD CONSTRAINT c_tag_filter_2 FOREIGN KEY (groupid) REFERENCES hstgrp (groupid) ON DELETE CASCADE; ALTER TABLE ONLY event_recovery ADD CONSTRAINT c_event_recovery_1 FOREIGN KEY (eventid) REFERENCES events (eventid) ON DELETE CASCADE; ALTER TABLE ONLY event_recovery ADD CONSTRAINT c_event_recovery_2 FOREIGN KEY (r_eventid) REFERENCES events (eventid) ON DELETE CASCADE; ALTER TABLE ONLY event_recovery ADD CONSTRAINT c_event_recovery_3 FOREIGN KEY (c_eventid) REFERENCES events (eventid) ON DELETE CASCADE; ALTER TABLE ONLY corr_condition ADD CONSTRAINT c_corr_condition_1 FOREIGN KEY (correlationid) REFERENCES correlation (correlationid) ON DELETE CASCADE; ALTER TABLE ONLY corr_condition_tag ADD CONSTRAINT c_corr_condition_tag_1 FOREIGN KEY (corr_conditionid) REFERENCES corr_condition (corr_conditionid) ON DELETE CASCADE; ALTER TABLE ONLY corr_condition_group ADD CONSTRAINT c_corr_condition_group_1 FOREIGN KEY (corr_conditionid) REFERENCES corr_condition (corr_conditionid) ON DELETE CASCADE; ALTER TABLE ONLY corr_condition_group ADD CONSTRAINT c_corr_condition_group_2 FOREIGN KEY (groupid) REFERENCES hstgrp (groupid); ALTER TABLE ONLY corr_condition_tagpair ADD CONSTRAINT c_corr_condition_tagpair_1 FOREIGN KEY (corr_conditionid) REFERENCES corr_condition (corr_conditionid) ON DELETE CASCADE; ALTER TABLE ONLY corr_condition_tagvalue ADD CONSTRAINT c_corr_condition_tagvalue_1 FOREIGN KEY (corr_conditionid) REFERENCES corr_condition (corr_conditionid) ON DELETE CASCADE; ALTER TABLE ONLY corr_operation ADD CONSTRAINT c_corr_operation_1 FOREIGN KEY (correlationid) REFERENCES correlation (correlationid) ON DELETE CASCADE; ALTER TABLE ONLY task ADD CONSTRAINT c_task_1 FOREIGN KEY (proxyid) REFERENCES proxy (proxyid) ON DELETE CASCADE; ALTER TABLE ONLY task_close_problem ADD CONSTRAINT c_task_close_problem_1 FOREIGN KEY (taskid) REFERENCES task (taskid) ON DELETE CASCADE; ALTER TABLE ONLY item_preproc ADD CONSTRAINT c_item_preproc_1 FOREIGN KEY (itemid) REFERENCES items (itemid); ALTER TABLE ONLY task_remote_command ADD CONSTRAINT c_task_remote_command_1 FOREIGN KEY (taskid) REFERENCES task (taskid) ON DELETE CASCADE; ALTER TABLE ONLY task_remote_command_result ADD CONSTRAINT c_task_remote_command_result_1 FOREIGN KEY (taskid) REFERENCES task (taskid) ON DELETE CASCADE; ALTER TABLE ONLY task_data ADD CONSTRAINT c_task_data_1 FOREIGN KEY (taskid) REFERENCES task (taskid) ON DELETE CASCADE; ALTER TABLE ONLY task_result ADD CONSTRAINT c_task_result_1 FOREIGN KEY (taskid) REFERENCES task (taskid) ON DELETE CASCADE; ALTER TABLE ONLY task_acknowledge ADD CONSTRAINT c_task_acknowledge_1 FOREIGN KEY (taskid) REFERENCES task (taskid) ON DELETE CASCADE; ALTER TABLE ONLY sysmap_shape ADD CONSTRAINT c_sysmap_shape_1 FOREIGN KEY (sysmapid) REFERENCES sysmaps (sysmapid) ON DELETE CASCADE; ALTER TABLE ONLY sysmap_element_trigger ADD CONSTRAINT c_sysmap_element_trigger_1 FOREIGN KEY (selementid) REFERENCES sysmaps_elements (selementid) ON DELETE CASCADE; ALTER TABLE ONLY sysmap_element_trigger ADD CONSTRAINT c_sysmap_element_trigger_2 FOREIGN KEY (triggerid) REFERENCES triggers (triggerid) ON DELETE CASCADE; ALTER TABLE ONLY httptest_field ADD CONSTRAINT c_httptest_field_1 FOREIGN KEY (httptestid) REFERENCES httptest (httptestid); ALTER TABLE ONLY httpstep_field ADD CONSTRAINT c_httpstep_field_1 FOREIGN KEY (httpstepid) REFERENCES httpstep (httpstepid); ALTER TABLE ONLY dashboard ADD CONSTRAINT c_dashboard_1 FOREIGN KEY (userid) REFERENCES users (userid); ALTER TABLE ONLY dashboard ADD CONSTRAINT c_dashboard_2 FOREIGN KEY (templateid) REFERENCES hosts (hostid) ON DELETE CASCADE; ALTER TABLE ONLY dashboard_user ADD CONSTRAINT c_dashboard_user_1 FOREIGN KEY (dashboardid) REFERENCES dashboard (dashboardid) ON DELETE CASCADE; ALTER TABLE ONLY dashboard_user ADD CONSTRAINT c_dashboard_user_2 FOREIGN KEY (userid) REFERENCES users (userid) ON DELETE CASCADE; ALTER TABLE ONLY dashboard_usrgrp ADD CONSTRAINT c_dashboard_usrgrp_1 FOREIGN KEY (dashboardid) REFERENCES dashboard (dashboardid) ON DELETE CASCADE; ALTER TABLE ONLY dashboard_usrgrp ADD CONSTRAINT c_dashboard_usrgrp_2 FOREIGN KEY (usrgrpid) REFERENCES usrgrp (usrgrpid) ON DELETE CASCADE; ALTER TABLE ONLY dashboard_page ADD CONSTRAINT c_dashboard_page_1 FOREIGN KEY (dashboardid) REFERENCES dashboard (dashboardid) ON DELETE CASCADE; ALTER TABLE ONLY widget ADD CONSTRAINT c_widget_1 FOREIGN KEY (dashboard_pageid) REFERENCES dashboard_page (dashboard_pageid) ON DELETE CASCADE; ALTER TABLE ONLY widget_field ADD CONSTRAINT c_widget_field_1 FOREIGN KEY (widgetid) REFERENCES widget (widgetid) ON DELETE CASCADE; ALTER TABLE ONLY widget_field ADD CONSTRAINT c_widget_field_2 FOREIGN KEY (value_groupid) REFERENCES hstgrp (groupid) ON DELETE CASCADE; ALTER TABLE ONLY widget_field ADD CONSTRAINT c_widget_field_3 FOREIGN KEY (value_hostid) REFERENCES hosts (hostid) ON DELETE CASCADE; ALTER TABLE ONLY widget_field ADD CONSTRAINT c_widget_field_4 FOREIGN KEY (value_itemid) REFERENCES items (itemid) ON DELETE CASCADE; ALTER TABLE ONLY widget_field ADD CONSTRAINT c_widget_field_5 FOREIGN KEY (value_graphid) REFERENCES graphs (graphid) ON DELETE CASCADE; ALTER TABLE ONLY widget_field ADD CONSTRAINT c_widget_field_6 FOREIGN KEY (value_sysmapid) REFERENCES sysmaps (sysmapid) ON DELETE CASCADE; ALTER TABLE ONLY widget_field ADD CONSTRAINT c_widget_field_7 FOREIGN KEY (value_serviceid) REFERENCES services (serviceid) ON DELETE CASCADE; ALTER TABLE ONLY widget_field ADD CONSTRAINT c_widget_field_8 FOREIGN KEY (value_slaid) REFERENCES sla (slaid) ON DELETE CASCADE; ALTER TABLE ONLY widget_field ADD CONSTRAINT c_widget_field_9 FOREIGN KEY (value_userid) REFERENCES users (userid) ON DELETE CASCADE; ALTER TABLE ONLY widget_field ADD CONSTRAINT c_widget_field_10 FOREIGN KEY (value_actionid) REFERENCES actions (actionid) ON DELETE CASCADE; ALTER TABLE ONLY widget_field ADD CONSTRAINT c_widget_field_11 FOREIGN KEY (value_mediatypeid) REFERENCES media_type (mediatypeid) ON DELETE CASCADE; ALTER TABLE ONLY task_check_now ADD CONSTRAINT c_task_check_now_1 FOREIGN KEY (taskid) REFERENCES task (taskid) ON DELETE CASCADE; ALTER TABLE ONLY event_suppress ADD CONSTRAINT c_event_suppress_1 FOREIGN KEY (eventid) REFERENCES events (eventid) ON DELETE CASCADE; ALTER TABLE ONLY event_suppress ADD CONSTRAINT c_event_suppress_2 FOREIGN KEY (maintenanceid) REFERENCES maintenances (maintenanceid) ON DELETE CASCADE; ALTER TABLE ONLY event_suppress ADD CONSTRAINT c_event_suppress_3 FOREIGN KEY (userid) REFERENCES users (userid) ON DELETE CASCADE; ALTER TABLE ONLY maintenance_tag ADD CONSTRAINT c_maintenance_tag_1 FOREIGN KEY (maintenanceid) REFERENCES maintenances (maintenanceid) ON DELETE CASCADE; ALTER TABLE ONLY lld_macro_path ADD CONSTRAINT c_lld_macro_path_1 FOREIGN KEY (itemid) REFERENCES items (itemid) ON DELETE CASCADE; ALTER TABLE ONLY host_tag ADD CONSTRAINT c_host_tag_1 FOREIGN KEY (hostid) REFERENCES hosts (hostid); ALTER TABLE ONLY interface_snmp ADD CONSTRAINT c_interface_snmp_1 FOREIGN KEY (interfaceid) REFERENCES interface (interfaceid) ON DELETE CASCADE; ALTER TABLE ONLY lld_override ADD CONSTRAINT c_lld_override_1 FOREIGN KEY (itemid) REFERENCES items (itemid) ON DELETE CASCADE; ALTER TABLE ONLY lld_override_condition ADD CONSTRAINT c_lld_override_condition_1 FOREIGN KEY (lld_overrideid) REFERENCES lld_override (lld_overrideid) ON DELETE CASCADE; ALTER TABLE ONLY lld_override_operation ADD CONSTRAINT c_lld_override_operation_1 FOREIGN KEY (lld_overrideid) REFERENCES lld_override (lld_overrideid) ON DELETE CASCADE; ALTER TABLE ONLY lld_override_opstatus ADD CONSTRAINT c_lld_override_opstatus_1 FOREIGN KEY (lld_override_operationid) REFERENCES lld_override_operation (lld_override_operationid) ON DELETE CASCADE; ALTER TABLE ONLY lld_override_opdiscover ADD CONSTRAINT c_lld_override_opdiscover_1 FOREIGN KEY (lld_override_operationid) REFERENCES lld_override_operation (lld_override_operationid) ON DELETE CASCADE; ALTER TABLE ONLY lld_override_opperiod ADD CONSTRAINT c_lld_override_opperiod_1 FOREIGN KEY (lld_override_operationid) REFERENCES lld_override_operation (lld_override_operationid) ON DELETE CASCADE; ALTER TABLE ONLY lld_override_ophistory ADD CONSTRAINT c_lld_override_ophistory_1 FOREIGN KEY (lld_override_operationid) REFERENCES lld_override_operation (lld_override_operationid) ON DELETE CASCADE; ALTER TABLE ONLY lld_override_optrends ADD CONSTRAINT c_lld_override_optrends_1 FOREIGN KEY (lld_override_operationid) REFERENCES lld_override_operation (lld_override_operationid) ON DELETE CASCADE; ALTER TABLE ONLY lld_override_opseverity ADD CONSTRAINT c_lld_override_opseverity_1 FOREIGN KEY (lld_override_operationid) REFERENCES lld_override_operation (lld_override_operationid) ON DELETE CASCADE; ALTER TABLE ONLY lld_override_optag ADD CONSTRAINT c_lld_override_optag_1 FOREIGN KEY (lld_override_operationid) REFERENCES lld_override_operation (lld_override_operationid) ON DELETE CASCADE; ALTER TABLE ONLY lld_override_optemplate ADD CONSTRAINT c_lld_override_optemplate_1 FOREIGN KEY (lld_override_operationid) REFERENCES lld_override_operation (lld_override_operationid) ON DELETE CASCADE; ALTER TABLE ONLY lld_override_optemplate ADD CONSTRAINT c_lld_override_optemplate_2 FOREIGN KEY (templateid) REFERENCES hosts (hostid); ALTER TABLE ONLY lld_override_opinventory ADD CONSTRAINT c_lld_override_opinventory_1 FOREIGN KEY (lld_override_operationid) REFERENCES lld_override_operation (lld_override_operationid) ON DELETE CASCADE; ALTER TABLE ONLY item_parameter ADD CONSTRAINT c_item_parameter_1 FOREIGN KEY (itemid) REFERENCES items (itemid) ON DELETE CASCADE; ALTER TABLE ONLY role_rule ADD CONSTRAINT c_role_rule_1 FOREIGN KEY (roleid) REFERENCES role (roleid) ON DELETE CASCADE; ALTER TABLE ONLY role_rule ADD CONSTRAINT c_role_rule_2 FOREIGN KEY (value_moduleid) REFERENCES module (moduleid) ON DELETE CASCADE; ALTER TABLE ONLY role_rule ADD CONSTRAINT c_role_rule_3 FOREIGN KEY (value_serviceid) REFERENCES services (serviceid) ON DELETE CASCADE; ALTER TABLE ONLY token ADD CONSTRAINT c_token_1 FOREIGN KEY (userid) REFERENCES users (userid) ON DELETE CASCADE; ALTER TABLE ONLY token ADD CONSTRAINT c_token_2 FOREIGN KEY (creator_userid) REFERENCES users (userid); ALTER TABLE ONLY item_tag ADD CONSTRAINT c_item_tag_1 FOREIGN KEY (itemid) REFERENCES items (itemid); ALTER TABLE ONLY httptest_tag ADD CONSTRAINT c_httptest_tag_1 FOREIGN KEY (httptestid) REFERENCES httptest (httptestid) ON DELETE CASCADE; ALTER TABLE ONLY sysmaps_element_tag ADD CONSTRAINT c_sysmaps_element_tag_1 FOREIGN KEY (selementid) REFERENCES sysmaps_elements (selementid) ON DELETE CASCADE; ALTER TABLE ONLY report ADD CONSTRAINT c_report_1 FOREIGN KEY (userid) REFERENCES users (userid) ON DELETE CASCADE; ALTER TABLE ONLY report ADD CONSTRAINT c_report_2 FOREIGN KEY (dashboardid) REFERENCES dashboard (dashboardid) ON DELETE CASCADE; ALTER TABLE ONLY report_param ADD CONSTRAINT c_report_param_1 FOREIGN KEY (reportid) REFERENCES report (reportid) ON DELETE CASCADE; ALTER TABLE ONLY report_user ADD CONSTRAINT c_report_user_1 FOREIGN KEY (reportid) REFERENCES report (reportid) ON DELETE CASCADE; ALTER TABLE ONLY report_user ADD CONSTRAINT c_report_user_2 FOREIGN KEY (userid) REFERENCES users (userid) ON DELETE CASCADE; ALTER TABLE ONLY report_user ADD CONSTRAINT c_report_user_3 FOREIGN KEY (access_userid) REFERENCES users (userid); ALTER TABLE ONLY report_usrgrp ADD CONSTRAINT c_report_usrgrp_1 FOREIGN KEY (reportid) REFERENCES report (reportid) ON DELETE CASCADE; ALTER TABLE ONLY report_usrgrp ADD CONSTRAINT c_report_usrgrp_2 FOREIGN KEY (usrgrpid) REFERENCES usrgrp (usrgrpid) ON DELETE CASCADE; ALTER TABLE ONLY report_usrgrp ADD CONSTRAINT c_report_usrgrp_3 FOREIGN KEY (access_userid) REFERENCES users (userid); ALTER TABLE ONLY service_problem_tag ADD CONSTRAINT c_service_problem_tag_1 FOREIGN KEY (serviceid) REFERENCES services (serviceid) ON DELETE CASCADE; ALTER TABLE ONLY service_problem ADD CONSTRAINT c_service_problem_1 FOREIGN KEY (eventid) REFERENCES problem (eventid) ON DELETE CASCADE; ALTER TABLE ONLY service_problem ADD CONSTRAINT c_service_problem_2 FOREIGN KEY (serviceid) REFERENCES services (serviceid) ON DELETE CASCADE; ALTER TABLE ONLY service_tag ADD CONSTRAINT c_service_tag_1 FOREIGN KEY (serviceid) REFERENCES services (serviceid) ON DELETE CASCADE; ALTER TABLE ONLY service_status_rule ADD CONSTRAINT c_service_status_rule_1 FOREIGN KEY (serviceid) REFERENCES services (serviceid) ON DELETE CASCADE; ALTER TABLE ONLY sla_schedule ADD CONSTRAINT c_sla_schedule_1 FOREIGN KEY (slaid) REFERENCES sla (slaid) ON DELETE CASCADE; ALTER TABLE ONLY sla_excluded_downtime ADD CONSTRAINT c_sla_excluded_downtime_1 FOREIGN KEY (slaid) REFERENCES sla (slaid) ON DELETE CASCADE; ALTER TABLE ONLY sla_service_tag ADD CONSTRAINT c_sla_service_tag_1 FOREIGN KEY (slaid) REFERENCES sla (slaid) ON DELETE CASCADE; ALTER TABLE ONLY host_rtdata ADD CONSTRAINT c_host_rtdata_1 FOREIGN KEY (hostid) REFERENCES hosts (hostid) ON DELETE CASCADE; ALTER TABLE ONLY userdirectory_ldap ADD CONSTRAINT c_userdirectory_ldap_1 FOREIGN KEY (userdirectoryid) REFERENCES userdirectory (userdirectoryid) ON DELETE CASCADE; ALTER TABLE ONLY userdirectory_saml ADD CONSTRAINT c_userdirectory_saml_1 FOREIGN KEY (userdirectoryid) REFERENCES userdirectory (userdirectoryid) ON DELETE CASCADE; ALTER TABLE ONLY userdirectory_media ADD CONSTRAINT c_userdirectory_media_1 FOREIGN KEY (userdirectoryid) REFERENCES userdirectory (userdirectoryid) ON DELETE CASCADE; ALTER TABLE ONLY userdirectory_media ADD CONSTRAINT c_userdirectory_media_2 FOREIGN KEY (mediatypeid) REFERENCES media_type (mediatypeid) ON DELETE CASCADE; ALTER TABLE ONLY userdirectory_usrgrp ADD CONSTRAINT c_userdirectory_usrgrp_1 FOREIGN KEY (userdirectory_idpgroupid) REFERENCES userdirectory_idpgroup (userdirectory_idpgroupid) ON DELETE CASCADE; ALTER TABLE ONLY userdirectory_usrgrp ADD CONSTRAINT c_userdirectory_usrgrp_2 FOREIGN KEY (usrgrpid) REFERENCES usrgrp (usrgrpid) ON DELETE CASCADE; ALTER TABLE ONLY userdirectory_idpgroup ADD CONSTRAINT c_userdirectory_idpgroup_1 FOREIGN KEY (userdirectoryid) REFERENCES userdirectory (userdirectoryid) ON DELETE CASCADE; ALTER TABLE ONLY userdirectory_idpgroup ADD CONSTRAINT c_userdirectory_idpgroup_2 FOREIGN KEY (roleid) REFERENCES role (roleid) ON DELETE CASCADE; ALTER TABLE ONLY user_scim_group ADD CONSTRAINT c_user_scim_group_1 FOREIGN KEY (userid) REFERENCES users (userid) ON DELETE CASCADE; ALTER TABLE ONLY user_scim_group ADD CONSTRAINT c_user_scim_group_2 FOREIGN KEY (scim_groupid) REFERENCES scim_group (scim_groupid) ON DELETE CASCADE; ALTER TABLE ONLY connector_tag ADD CONSTRAINT c_connector_tag_1 FOREIGN KEY (connectorid) REFERENCES connector (connectorid); ALTER TABLE ONLY proxy ADD CONSTRAINT c_proxy_1 FOREIGN KEY (proxy_groupid) REFERENCES proxy_group (proxy_groupid); ALTER TABLE ONLY proxy_rtdata ADD CONSTRAINT c_proxy_rtdata_1 FOREIGN KEY (proxyid) REFERENCES proxy (proxyid) ON DELETE CASCADE; ALTER TABLE ONLY proxy_group_rtdata ADD CONSTRAINT c_proxy_group_rtdata_1 FOREIGN KEY (proxy_groupid) REFERENCES proxy_group (proxy_groupid) ON DELETE CASCADE; ALTER TABLE ONLY host_proxy ADD CONSTRAINT c_host_proxy_1 FOREIGN KEY (hostid) REFERENCES hosts (hostid); ALTER TABLE ONLY host_proxy ADD CONSTRAINT c_host_proxy_2 FOREIGN KEY (proxyid) REFERENCES proxy (proxyid); ALTER TABLE ONLY mfa_totp_secret ADD CONSTRAINT c_mfa_totp_secret_1 FOREIGN KEY (mfaid) REFERENCES mfa (mfaid) ON DELETE CASCADE; ALTER TABLE ONLY mfa_totp_secret ADD CONSTRAINT c_mfa_totp_secret_2 FOREIGN KEY (userid) REFERENCES users (userid) ON DELETE CASCADE; INSERT INTO images (imageid,imagetype,name,image) VALUES (1,1,'Cloud_(128)',decode('89504E470D0A1A0A0000000D494844520000008000000044080600000049473D690000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000130B4944415478DAED9D095C9357B6C0BFD6E7585FFB7C9DE9D8BE71AC4F2B90208EB6DAE9E8D4D73AAF4A36709916B58B1DEDB46EAD9DF6F5D7AAD5B6501F8E2BB8B405C55D2B5664114101954DF645F61D091076C2BEAF77EE395F022124102109A0DFFDFDAEC48404B8E77FCF39F79C73EF650821CC58E8B43DA6D21F67185B2DBDCFF7611F2B7FE3888CEBD8103A08D6661CB378F1BF31F3E78F672C6C7EC598882630D3173FC14CB599881D1EC373F0DAFC0DE3F17BA1C3FB54C0E0843E0600E89DE55478207010EC7CEB7FA75F27317F90FC9A31B3FE2D337BD9738CB9E0778C99D5EF19DEB229F8189E83D72C04BF615E58F29FF4F9FF50BC6F027E0E07C3E806A047F03654503093A750E181204D4493999996CF33330526CC2C8105334BF412632AFE13C313BDCA9849FE073B5FF2670AC32BF81A5FFC070A029F3EFF027DEF54FADE6799E92B9E66E6583E8930A066E040183500F4AA7A85E04150308B6176F3C5668C89601EC317BD4E856EC5988956D3E7D63D39EFCD8FADB7DA1FFCCEE9EAB583176F06EE7272F3DCF8FF275DD66C3B7CC0E68B43767F59FFEDA7E3CC25627C1F5F321F8198B9FC79D410A049C064F4688547178451227C3A1B411860CB51C553C19B4ACC7156F351E8EF0B377C47E51C99169490D3189626ED0A4DCD27C1C9527227F13EB995904BFCE2B3896F6C16B91E9D49BC22D3897B781AF92534A5E3B45F74E9B72E5EBE6BB61FFDE6D905EF09E867CF45CD00E602B4CBD485135535020780D185AF98F560AF412830E3F9560B199E78F9A497DFFA78CF698F80B094BCC6F8DC62129B5D44A232652432A3107B443AFD9A098F652482FE3F2CBD8020182952729B82E11B9345AE52102E0527910B8189E4947F6CEB76270FEF397FFDBF77E8E7BF8C2665C61BCFE1CF06D3A0D0061C00C6123ECC3C50C5D3E8ACB7B09E4685F012158C90E149FEEE78D12738495ADA99925F4612F34A49C2FD129290574212EFB38FEFE5961080222E87ED00470CEDD15932124D2151820260DC4D9592807BB9E46A582A391D104F5C6EC6757F7FEE46F4920DDF6FA666E545FCD9A0794003A136601E196D30B2C28701E7AF7C066722A87B9E78D527F6C7CFA4E497B665165592F4C20A929A5F4E520BCA494A3EF432922C2D23491408806228300427E7118FF05472C22F8EFCE41B4DB63B7B063CB3E0ED37585F833A9BE07FA06FF06898849113FE145C9E4D46E78C27FA5F2AFCF55EC1B16979A5D524A7A48A6451003265952443C682003DAD407F3084A51510B7BBA9E487EB5164FF95900AC1E63D9F30E692D9B89C04930066E9118060046CBE42F8B0343311CDA25EBAE5E4056B3E8DCBCA971754D4120020970200106417CB2908F2416100105461481808862C168628050C601A9C7CA3BB1D3DC3BBB61EFEC575FCEC652FE3D211560A08817673A029EA38D6A290C677F840ED2B854FEDBDE587BB76E79654B616C9EB487E790D9196D590BCB26A72BF147A955160006D004EA2836738D971C23B64BC85F51F11020C24F59A83FEA168701A15114A4DBD37F0346A630EC6153E387CB00E37B3E4337C6B4BC107DFED2EAEAAEB2CAD6A20B2CA5A524835006801008185A1BA07865C250C1484FE302840E80343994E30C466F7C2E0169682107CE5E4758B31B79EC7F0964E612C163F85A165F55034C611A82683D7D955C4245C56B281AB49F81CF813F07DF0FDA334F8642C001EC7417871C5D3E8F0519BFFFBD7FEF699ACB2A6ADA2B69194543790E2AA7A025A40565937A2305C096521F8ECD8554FC64C30177D02102806A76C9EC28822869BC5FF85D149BE703A7D7D263A913C218F851B1DCA99B8BA80F7F3DF780681500B3E3D120020F1F047A363450784277A759CB9D50719D25279557D3329AF692465350DA4944250525D4F4A2808230DC3E590648460CBC19FCF60E088673D0385CDB39C814EAB055D3AF2850B19BED562F061A8F32881B805632AF9EBC4D96FDAFC6AF6F215F47D62746ECD450BD8D0B44AF069FABA27464BF0C938AA1F55259D31E682798C99704D6074725A4D630BA9AA6B2695754D04B44039744D30C8B5C3205587A1A43F0C99DA60505D49F481818240FBF93B09DD0E1E619D7F5AFBF53F189EE42F7446BFCE988B97D2DF7FE5132F2E5F27DA68B7FB8B03E72EEE3D7BCDFFB84750EC25FFA8EC6B61C9A5FE3119353E91A972F79084E28B01D139872F07DCF9D0EEF8BE05EF7DF96E4FF069CECA677B571A23AB0D0C0C00251C53B482DFB0A15DB1D5E1F35E1EF5CDADA4960250DDD04C400B4097531046130CB13945E4E8B5C86EDBF3FE258F9B2FFB7CC2DC159FAFFAE280B393DBADD8E07BD9B589F7CB1096B89C12F421942B8B88F402EA54C232339F84A648315CED1393D97A3928A1F2F0D5C0709B6D0EFF60834F4BA6A14904B360337210187EBD0F76D35CFCDFB4BF46BDEBCDB50DCD1D0DCD6DA4AE8942D0D48220D4A8C020AF6FD20043432F0C55C683C19F2E11C1141CBA7CBB2C3829BB2109A292D45C284D05085E7D69C986A6D9A05338C25080308450107C63B23ACF06C4CAEDCFDDB8B1E8FD9D2B59DF81FA07908F18214D60D8D9CF16694C66EDA878D5B5C098D8E6D676D2D8D2461AA05310401B0C07866235180AB5C150DA0B43CE60301454A0BF00305CB893488E5C8B2431D44954371308825AC049230CE9BD3004A7E4915F42929A7FF00E2B5CBDE3C856C6DCCA14A3A1305623008161673F2E87A8036526593279C1DBDB9A5ADBBA9ADBDA49735B0701109AC6000C206047AF08CC2E0EE4333C280C1EE1A9AD3F7A47547F607FDA16210033890929E33A86864BEF02D16CC0070A34DE8948C8C86AEFE824ADB4B7C1D7F60ED20220E800038050D330300C004259B53A0C751A60A8E91370CA530B38F5C250893040C009B289103256E625D47D86445518D03CE806C3F5A88C8E63DE110D1BF79EDF83130556081616187D1CE300D0D90F5E2EAC91CD846F3CFFFADFBE6E696DEBE8EAEA269D5D5DA4A3B38BB4D3DE36466000D50DBE00A499330AFB9B89E1C0E01591D6E2E819DE24DA7AE01DAC838078039B917C6CAC02C0067DC0AEC1FA97DAFE83A7DDFD88A2757713D245FF194B306417571127DF18723128B18F66D0170CA7FDA2EBFE7939B068AAE5FA5730C884FE80EDE3631400EAC840B2078B35B1666F4B96B4A8826868DD00423780A00186F68161A85785A151330C953AC050A40603F80B05E5FD61806A23F00552F22B502BF49809993A0C1A329652CD194B250C008183C7DDDAED2ED7BDD11480EF841143C36B01C3397F33979930A60289F0C35D47890E6DB4C39040850666001C38F524953E60084EBEDF79C823AC7DE1DA9D42B68895D5028686C030EA1F133E74E9479D3F77FFB038F2804D230C3D264215061684BE30B492FAA6BE300008C38501840D00F8DFCBD1EA330C1786A31E772BBE74F2BA8A5A007C28C6F0BE80FEAB7AE72BD43F96694BB6149656D6906134A3C2A0127DD404C331EF48E21E91A6D14C684A5F67EB90BE562D6C094EC9EB3CE87EB7C56CF9C78B14D5CB130CBD22D0DFAE1DB059A0B6A0B60ED6B56622D19445EFDA758304F5D4461A865301F1E4ECED7B83FA0CC381C1D13DB472E3FE0B7BB11E017C293AB6A30A800177ED40D40F967EB360D386E4BD75DB1DAE100335551800049D6150F1170683014050850152C5A005FA642CE5DA3296432B6C710D4EACDF71D2270827118CA981978443133CD879A8EC51EEDA015A71D60BE632A6E2D760E947EDFF8EA317BCEF11233463C17083AE04C00F8099CF6A867ABDC300758BFBDD426A581F8A2EA5156569230A409FFA7D98EDA0E6A15A86A5F425143A6CE0A04EDF0CC1C69D82CDBBCF7DB6FF6C4C607C6613FC71B03E868100C18C6518C2D2F31100107E7F33A11F180004FA33DA177D606B83C52430D154762FE9BBEE50B7598F25DC0B2762FA123662425104143A9809C5A0EA459BED8FFCE01E9CEDEC13D50603A4AD1FA5EA136AF3210002836750107480A1450D86C696816100411DA17F837AFABA425BFA7A88852D4E3E918DAB76FEB4AB273CACDCDCAADAB5EC7E7E5020068FE9C3AC87BA37589BC28C874D997C2BEBDFBDBE76EBFE4BFEC9CEBED1ED8E5EE1E4E7A024DCA205CB1AF8C3D9A40F3BA8E084C10002E1212952E21A928C193617BF38B47D06D70A7A84E1ECED84DE245543B3416038773BBE6DD5CE1F1D189E700E4E384819C3E61928475376B66AF929D4C8C3A83B1C5CE5C30FC2A81EFD65A0FC89275EFF9DB37BE0F19BB15DC7BCA34860521E0EC8833618708887D3CF417860E08CE22F2861500B38B5AB86A2078001006643D17DCD843E61002DF9CE37CE17218B8A5554B3AC2D181381A28B66298A6BCCB0CC0C4AD5A0DA0AB289103B0093A12C62D50104ED331FD40E66A7ACA75155FF4728855AF1C93F0F5F0A8C6F74BA1183B16C18ACE1369891A0053C23D3D10932661B0A0C25F2867E9AA11F0CC3AC72BA169549B6EC3B1F4E27DB262AE8B7D1A9860E3BA3F1B1E82DAC41A44B6DAC4B04AD0C9B5A0008800134042C2175D8E1A4D9E6C3CC07E163250FD87AC99A6D475C6F9EA0B31552A3B54398F1BA34185008F38E441BAE66D0270C3ED199C4F6A477E17B5F395CDF7BD233F897808854BFC8E4FC5BD1A98577E2D28B82E2338A3C83E2329CDD0242761DBBE4BAFC63FBEFD96DF342019E9100DA4159CD3C48C999F60ADED954B5A0BD17BFBDEFECF5D093FE71C42F3E0707E4616FDA3296EA3018AAB0C53534191DE507296C894ECFAF7176BB1528D96CB78B9A08096A6D7022C17F58D8B3E9F531AD00F409E5023D607BA8BAB175BE7AEB1C757C40E5EB2FA6C7C130100CA069C1611E6A95D3E580C858BE78D326340F78300675E041AE1A20E85FC10BC4282A783FB273BEF43355F9700803D78C0343694D3D39EC1581DA6038256FA9D2D2E66F7F703D858EBB05751C2160A71253E803404F150F2C2BC0E93315BFF682E586AFDC4253BAC123059BC735DD60186E610B04845C6EC6E9ADB0658F8BFB4576F526E4A9D61DAA03C0CE7EC84061158FC4E6AC6F84F4CADD54FC50AE190F86D89C625C11E9ABCA896A84EEDDC7DD4E43593E3AF5E0DFA998825EDBFF9CE593B8A6A4B3FFCF6B77D87B4566D0757A11275D7D642C752C6C01184253A5981AD667C91B85A073F1BAED9FE086149562935E0030950B615EAA26E8FAD2F54E5C091CB604BF28D78C0B03049A40F0FAAE72BA161C170905BA98AD552936E955FFE02450CFDF6A8BBDEDCDB86CAC58E59AF161C8A23E80214ADEA836E8126DB0DD8A0123F005D82CE363ACF70FDE212679848B76FDE8E60E317D884A71CD883028FC05082E19AAB0E594E79DAB18DBC168A1B2E610A244508B8E513FC9928BFE51E9B07DA9ED1108F88C7618F45DE5E41791188B3B9DC1D79BCF561BB100B0275CCC84F46E405C566D8AB48C93CC43084372AEAC983D86CF7A0666783144AC2CE336B7329DBE74DD6AD8B664E85C3DD71E0C067D15B694D734B463E10E9ED2A25C0EAA0060B565F72608F9C20771EDE183A1545ED7DC1F001513F0ECC2D52BE2738A3B4165706D1482304C18F28ACA2B31858C69631B850950730283EE65C92080C0B5B10F837AFA3A3557761F6301206B90399B26565906F244AFBA78DCF6CB2E96777343FCF0C1703D28C68F3D9277E914363184C5222A81A059A29736D9FD640F09097D54FB706D0461D090B1FC70D7919D180EC663EE7A02418A50305400F1C566E32C24CB127264551038E0DAC3034345756D155671BFD077C3496F32883DBC792A4403DFDF76681F64939AB95CC043D35CAEF89DA1F25D80A65E65CB59DF5DBD982F16584001686452762EC494BBBA397760ACB782E2F2C2711656D698EC834D3D2ABB8DFA9683B1972A4D0547C1D4F2A34F4BABEA3BAAE992B09B8360CCB6CECEAECE8FBE39B6136B04A1D46F8A3204ACA80720EA7BFBA72976F79A882CAD36DBED91D7357541108143604C0690BA0F9C7277C68BB37A4E1ED930BE5F4918D1749C3BA40DF962ABBF7FED78ACAEB1A51B82099C39185BEDA49BFFCFD4EB5F8AAA1F6A3D351C43A7F9842F0C0CE1A58C73293DD6EBB71F71AC6D686E6F6C6D33CA064FAE0DAFB5B4B6B5399CF53C81671B4381AF968250A26567107B851B648BF0A8733CE94BF8DCA277B7664A8B65AD7465C041307A5B5199BC64F966BB2FB1241C663E081FEDFE20FB0288A67BFC4013CC8493ADE907C1167033D1EAAF1DCEB994C96B6AB8A11E5DADB2BAAEDAC9F5C685A75E5CF526167D40BC1FCE1798AA7D5308197873A8725B38FD00581E42FC18A3489225B05B68CDE77BF7DD0C8D8B949555CAB9E11F99D6D6DED19E929D9F79F482F799897397AF42670F3692C2665EBC9760F093C8753B18029C07C81882738867FF52DF00CA8CA97FC0F044EFCE5BB9F5AB7D27DCCE5FF209F2F70D89890C8B4F4F49CE92DECFCA2B2ACCCC93D15E24E3FA50BBAC304B5A5498965B9017959499E277373EFCCA8D509FED87CE383EFDCAAAB5B80D0CCE63C45A3FEB6938EBD9DB4D74BA8B40F7B37F95973C0208104BC6EB52608B32C000B762286ECF60AF7A5D01B767B0BB5825365C1F4EB77A8B8EE99B38A6780A8B5040FB62F61C26E11CAA9D4DD853D9A8970F7E5BCFE5D8BA5D7EF9E08740B30524139032CC1FC039362AF7E7E025900086251F3D50D60B9DC5F52176183FBC5B1176F62C33C16B6B946702B04BBB49EC8D2C7D0F8820863825ACDFD170EC8510DA6FD0523DD182EB43EFCADBC8F09A99C51A4E0541553FA45345F5704EE00077E8A99F6BC3F5A175D531B5518CF330CE0552EDFF02DCA524A9371DC0180000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (2,1,'Cloud_(24)',decode('89504E470D0A1A0A0000000D49484452000000180000000D0806000000B36CAED00000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000021C4944415438CBAD92DB4B14511CC74F2A2122450F3D083D2CF8DE63F4120C11FE0783F8D67B10F66445D06C2F6D5941598A6B4B86CC2E66256E8CAD542666175BD3DA09476D6FCDDE9CBDCFEECEACB397F975CEC452C9AA90FB851F7338FCE6FBF95D0E0200B45320C4345114D37AE1D6E34EB3F9451BBE68DA2DBFAE477D6374E0CA3DC789A7B36EE91D1FD03FACFE04F6F5A2D2EF98E1FB869CC7F70D181873767FF3862B412903DE680A845002F8A0042BBE18D8B8F73233E83A8910DD7CB1FF51877970A27DB7CEEA544F1FFC22F80BD9421192B202B1741E4209190218F6C380C5C131BBA44DCE2F2B9FD64478B3B2AEDF665D8B16EBC4E13D016434D71ED82FE13354AA552896CA902F6A90C1B0C45F30414C827B238CBF71F0043661D91785EB63D31CF97F470059A8C974B675DCB520E83AFCA37205C3340C53FFC0564509C3B2E0DF4CC3462409339F85D2F901F6505D00459F6B7F3835C70BC15855CA168CD110D37AAAC1327915D238E2383F9ACA01D9977964AAB7ABA7AF0351544BAD1B632CA3DC025FDD5EF61E22D9250C53B512E4D42D88604838993360EB784F77598E25DEC872DF75D4E30D95611FD27171A42B75EB372C853B8BA464B00C3B8F21FBF4C7337241854689C0B47205140CB33A5E9D3696FBD6FD5D8406CB27C65486996B31963C34CE757D5DF3CB8D3096F38AFE727EC973C736796ADB33A59B7BAFDA4C96E127F4CD91673DFF15D6E7DD976FD88F90A9D47C7F0129D2E0172D250F240000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (3,1,'Cloud_(48)',decode('89504E470D0A1A0A0000000D49484452000000300000001A0806000000F135DFD70000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000005794944415458C3D5980B4C935714C7AFA82C6CF335E6962C4E32401E4137591337F6C874A81B4F751B922D19C4647318936599899A4D863093395FC8700EE7467460419D30C74307CA43606AA55A942ACFB640A12D2DB4E551DAD2F6ECDCEFFB982D0222C3514F72494AF27DDFF99D73CFFF9C7B090090892EB46984EC74210151AE8417F138F10E798C90A8E9ECFFC9B4FFF2EE71FB30A187A2D049DFC859E8F002E215B6782E2F6A45CC8E435F7EB8FDE0A6159FC48712FFF045C427E26906EC21833C78C4791B67928088851BBE4AD9F267A548562CAC3754D4CA6C976A65507A530A85D7EA6D274A84863DFC6241F067BBDE2301EF3C4581A71C80717E41949BABDF9A25B9A5D7046299CA266EE9845A990A6E4A95206A56C0F5A60EB8D6D00E57EBE550764B0A5965A2C184F4FC32E21FEA4178BC99530B80CEBB2F8B7E45209628A42A2D4814DDD0D4D1050DED1AA86B53C3EDD64EB885303508730361844DED08238773C206D87BB2443AFBD5F7BD2904571F2E4CADD02DB67CF90CF6F7C4B6DA38A38F1FF17DD7B75C78BB49A9ED858EAE1E906BF4D0DAA9031907D38830F5720DDC41189A19164681301D508ED9D89D75A18178626DE0F6C3FAF1F5581EF35A5C525ADCEA8D8991AE2FAFF367B61AC24C3A0013312CC8ED07D2F76BF47DB6EE5E0368F4FDD0A9EB0365370BD386302D084333D37C0F8C0A6194701E6B233E2DE76AF289C2BFB38B058AB29AE6C12B775AE1925866FBBDEC86FEC0C9E2D297C2BF08A44A36B900F8C259BC0FDEE850770F184C66E81B30418FC108BABE01188251218C0261DA298C9A8351DAC3A811A6134E55D4323035123633C246769B5DA96B83AADBAD7024AFAA6D43E2D1F50F522FF78FFEE2C867F7FD9A9B69B3D9C062B58279D00246F320188C1C4CBF11B408D3D56300F598305D58D812A814CBE00ED6CB50664408731D61AA11468030074F97D67BACFCE8055A179301E082DBC7EFAF4A6113D8D9108C09610610A61F617A11463F1C46EB0843EBA54050CFC03462F1D3CCD0E2AF6DE1940C61AAC42DD66D69B9C768639C30C0BF1D165F32C33F729546AB37C328664598410B0763BA3F4C89A8196174D0823052252A998253323B9823F955F279BCF50BC7A34CF73A4EA5CD6BF53334F26FC6C4C7261DCDA990E0877A0D26B89F8D08637084B9823D424595AC9B533235A764CABBB25C545D670CFE74D7AA21791D0BC4CE798CB8EFEBB3C8A2D0A5DFFF56589C5D22D495DF9458695A69BA69B19D1736321F1B8F8D0643A3AEED1D004D0FA764F6B2CCC150F5DABC376337CAED73CCC23AC4C03EC9C8F93098BB91F75C396749C4A6B567CA840A1AA9D18CAA0F75E641CC6AE560CC16E659BA7A1046D7CF29D90830A9A72F36271CCE3A9D9C995FB4FF78DE1F1BBE49DD3A67590C6FF868C2FE098A72F3098D0BB980730D55998769168431238C11610C9899BE01B3A32C230C6D9054768737CC5A6987697B72C67EE2B5E6F9A1A6C72A0DCE2A99458256BA57FF2FB339C0A02CDBF5185A0B5D083252C3A42029FC023EF6A7F96C7D0404B8867FFE5D34CE2E569822C37271E831DDE8FC580DB351AE36CD0F8A0E64CF1E581C2959E732A84A38838DB76126FE94FD357388224BD7CECD29ADAEA40F3A9B8DD53033F2CA8FE3369A4DC88BAB9FD891CA4FA0E9726673906584D995766A2B5910E4C68ECADE21819276B57313D899C168B2BCF5F1B620747E3ADB03B0A2F905E567A9123C0A967EA6E817DA0FEEF6017A52C243C6C5CB35429379D0E6CCCE5FBC2CBA447CC23CE9CE711C25E8958857A4F79EF433FBEA24729595B64F2732B952A34D3CC4DFC99CAF715E1B7998A3D7250BC3E6D1E3A3C7DBB12B36271DDEF243C6D99F7FE4E7674EC54ACB2E3CF6EDE1ACA4E0D86DE1D4273AEE0CBFE1186594C6EE4CB7151DA0FC82DD99AE3715CB6F9D3B73FFC4DC2FED1CF1E0FF0FBF0B1FE0DCB2A0670000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (4,1,'Cloud_(64)',decode('89504E470D0A1A0A0000000D4948445200000040000000220806000000EF55DF8F0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000079B4944415468DEDD9A095053471CC6575BADDADA6AADF72D348906A9F5AC578BAD821082755AB463D5F198D17A745A75EA4C47456CB5965A19CF7A753C40E9082A15B1155144E5964308844302E4E20A8124842360B2DDFFBE2406884080AAF09F5932191EC9DBDF7EFBEDB7FB401863D4918D543784BCBB2327A7D7D194753D10D7B3277D85F7C8F335F2FBEE704D477F6F9BEFB7433B3E654A0FE4E8FC26B2731E8458BC71C8DE858BD80B1DE92BD7C51EB1DC87A389BCFE6884676F06C8CB07D1311FE24946D6DEF56DD2EC10C7F593355EC7F79DB9FEE0515044922C243A5D13783F4579212C417AF4CABDF8953B8FED422CFE34348E3F0AB13DFA22F47241B47FD441E28E64C4D9AEB30FFADDB81E9729AE4DCA95E34739729C902DA32D364B86A385121C919A87C905D82F3C49E713703BC96DD3FEB5442D23D18899BD61DA742A00749EC38D8F751BFDD9EA1FD73CCA2A5009250A9C2129C5E9E2122C2828C6A97945F8B1A80827E716E2C427004586E3B3A53836538AC39273F1853BC9F5DEE76FC6F59CF885235510F1884E01808EFC307E1F32BFD97BFEB87C245B5652272A2AC7B9854A9C232FC3D93205CE942AB0D008232D9F8191620546708CD07020F05ED1D0B9AB3E46939CFA9994C09829182618A7A975BC81B65DF664BEFB9EBF7E4EA650E9A50A359694AA70414905CE2F2EC74D61949A95610DC6ADA41C7C38384AF3C197DB9CD1B8F9EF90CF7E839A2918A683C760F27E04622F18468CF45D0A1ECCB683A64C1B00909118EB31D8F3DB5F36152AD5F5252A2D2EAEA8C485E51A2C2FD3E0E660643503E3BE201F1F088C2C1BECB4E25334DE653262F3E64D5EB275EDEA5DC77C769F080AF0B9107A75FDDE533FCFF4FC6171CF498B2650381444FB1461FBE883737378B324C54AB54A5B83CB2BABB152538D15EA2ADC6618050C8C5B893906EFB3A1F907FD4313C21284EA641131D21CE2195912DAA232C4F8DF47D93A3FB2A27CE7EBBF971AE818A75EED8160DBC5207DAE87FDF9E0F06BDA1A1D865659ADC3EAAA5A6C8251A6A96A0843F97C184F1AC31097E28B11A9382653625446A1799A24980C948088212B4A7094A07AFFC5B0FB0EEE9B1DDB03C196D1EF8E267DDEAFCFA4C56E8A0A754DDD533DD6D53FC535BA7A5C5D5BD70046853518E52618EA0630F2280CA5190674FE6A7406856152C663238CA44630220522C36F7FDD4DEFF7D15763204FFCBF0020B971168ED9E87DFC303696DE60C04FF57A4C61D43584A169050C991186B8118C73E1C95415541992D2666184C408AAB71C093A4DCDB30D2A68FD8520330E6FCAE57F1E24622BD59130202C41272D95912535C1808CD110C6E16BF7653357EC9E85B8DC9E1D0E80598FC9E8C312C47173CF9316A9710B658641A648AD1146951946AD7518155A5C648471375544E7B9D8DA349131308416301273E406AFB3376F3061CA361534BFA3A3A6E7F916599686928DCCF4E94BB6FC8A6D2C8051FFB4F5304A892A2046DF4911592843651546B6058CDF2F47A4D1AC60639AB4DE790822F6AE03911DCFA1FFF465BC4D3E17CEFB064688FDC213757FC766D211CA2537019D6A6D196C80212A56D27D03C0B054467330CEDC8C2D462C670EBD777372F46E313936CDF75C2732E2EEEF73176D5E7D32245A7EF5A1A00EE61B74186E4255C58C1644D9A087E9D4880C06DB54D11A1869647E030C2528435DD5228CE0E8F4DAE1F356B9D3D408DB6E78B55B3C884E0BF0AFE76CBF1B761E9C9418DDB64301D782A3D27570232D152C7D7033065B2958C2D05BC2A8A730400D26182AA33220703D0F06E483A5DB7C03F81BF77AADDF73D277C7E14B7FAED971F4A77E5397F2116BE13434DE6D341DDC4653E499EC217BDBBB4C3E16189E109D2136B4B543ED29F8CAC630AA8DCAA834C3A8B102A3124709C5540D00436254463E5146B654A1BF1D2790EF3D7DC58F820033777A96198C00D6F580357EABEF45FF8854D18BEF790B3074CDC1A86460C46749290C489FA00CB95119963002C3625306CD5AB90071160F302981497844FA43E62CE785C409EBE08B5EB56A0D0C81B8D80CC3A40C6B30A253730A07CE583E87990E748927E6306EFEA813C1910F60A3F2AA9781668CA6308A4867CDCAD03E5386C20A8CE3976F055093A42B05ACF5135CB837E3322AC07C3A53598751F74C19169B344B18F11922291ACF73A07D877573C08CA5331EA489B4B81357B3301AED5865A5AA5AC4769BCA6406F283E5F2CD9C7861BE1A77916A09469E5CA1A6872E1480710AC4A4E596E02E588D61D41018318FB332108BCF614E94C0041D9C47863E4C89EE6C1ED036187A7CED4E6C9069DFC02C83242E3AF237F0F30A153506DCB5AB42ADD53AAFF17247ECD97DE93248C3003CBB235171DFA9C0634A4D95FE65A4C01751244B18761EF2DF83D81EC34C274816CFF5F87D606938EA1FE24F1C13AEED529D27D15A1F101A7911367A8CF9311BA386677E908E8839CCFD7AFBFAEC8242B9A18B4821FD498168D9569F0DC8C1D58E3E57B0D815363DF8043A63DC86C03AB962FBC1EF8F5F0A0D0889888B4D118AC4458A724DA952A57DD55B81ACA42C2A2943107023F2BAD7117F2F34C1F5437ABE41834FC32DF1734E83883BC2236C16FF3DD824913F9E40830387370BB178735FE9C6769D0DA75734E9B19DC7D23E405F18C7EFD6EA33C126FFE84095E1D4AB5334B857186D7A08D2FCA9D07F630D43FEBD29775D0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (5,1,'Cloud_(96)',decode('89504E470D0A1A0A0000000D494844520000006000000033080600000068820D610000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000D154944415478DAED9C0B5893E51EC0DFB0CBE9649E3A9DEAC4C9F2026C13B39432BB295D74B00147EBAC4CAD9E3AE9C93AA5873C7AB253E9732C2D05D3524951434BB110949BA2221707C81D06088C316EE33E068CEB06DB7BDEFFFB8DB1B18DEB80D0BDCFF3BA293E1FFBFEBFF77FFF7F431863345E9BAC9B98BDC50E21C124BA05BA4DFF0EFF8EEC7AFEDF787ED65193C1F8099D08D8C5E51634CDF57768CE923B9083FB14346DE95DE811FEDDE831F23AE3A53F2067D7C9E841C1EDE467B7219735B71840B9C906607882B743AEAE3753A183C0672EB90F71780F23961B0B39793C8A58BCC79123EF49F27E3EF9F95CE4C07546CE5E0EC8D9F32134DBEB7EF41081E3E2F97BE42CB8958131F1418C9DF0C1AC80E0E194CF5C3215B1798F20B69B2B62F35F9EB3EC23EFF7B71F3AECF3F3B99863E7920A8E4626157E1F7439757B4078D4A6EF4EFDB4D4FB9B4FEE7659CE434E6E4F5020D3090C96D79D54332638883138F5C464C089654EFC547AB2397CFEDC651F6CFAE97C626E625EA9FA6A413916E695E1B8DC521C9753826344527C315382CFA717E18894427C3A210F07C689B4FEE792E59FFB9F097579EDDF02728DD904823DBD2ED58889699A4659F8BA53EFE4F927E4C8E79013CF5DF8D6A75F5C4ACBAF1595D4E04C69154E9754E20C09BC32EFD38A2A71AA5886530A6538B9B0025F2DA8C049F9E514CCF9B4227C8A80381C95AEFDFAE4251177ED576BE975E1FAE02B26A0368CAEF0C15EB316DB836DBF95E3B532342E235F2C93E36BE57538AFB40EE796D5E29CD21A0C30B2A5D5388BECCCE22A1D10CB3062B34BF0AFC21C7C202259FBD991882B5317BDB588F88DBF50A70D3E660241183DE13391CD83C46E3F3BFF55EF4D79A5D5EDD26A051657CA7121815020ABC7F915F50C8CB20160149987114BB4E270549A6657507C93D7FADDFF442CCFE9D4240D12C26F01D4280020C2B727271FECBD236FE1DA2D07F696D6367697D53561698D0217130892AA065C44B61E4685218CDAA1C120FE2348780DFB862468DED976D4870098491DB40E82C1B6D3E71BF033C33D8EE1AD95854F6E026C3E87FB009CFCB55BF77F57A368D5CAE44A5C5EDF84010281814BC8EE1F46DD9061441187BD3B2441BB72CBC16D5413C01C419E010206270D3EC2593099C92FB87F44EC65F7D00DEF416B7AC25B9A04A23183615DD3C3443BF742B8F8C4ABEB37D634B674D734B6E22A8512573628B14CDE8C2BEA9B8D61D4580F46544611F60D4EE85EBE79DF26E2F0A751E74C37F10FA019B33C9D11C7731EE2B82F80034237BC77E43D86381E8E34AA8230190ED118F912EB091F3E309CAE595CE729F35E79B3BC46D12657B6E1FAE6365CDBD48A090C5CAD6819268C7A5318A5E66140A4E473FA8ACA89FFE17246D0FCE720ECB57F6EE5DBAF6FF2D9B9D1F7F8895D011197FC43E3B24E5C482E3A1A2E14ED0BBE2C24F9863FF7FD6DEFDE326FA90B9A41123FAA294C783B010010D3F3D453B7D353C7E1F2D37225C5CD6D1DB8B1A5032B5ADA7183B29D82A82320C602C6B1E84CCDE643A192FB9F5DF5C546DF63677E894E91A614947765145531BE43CC445309D7CA68FE114FF28F1851090EBE22521E894894ACF9DFE12DB7CE218922683368C328FA07EB9C7EA8D380AA9313B7EC832FBF6EED50E396F64EAC24BBB9AD1337B5F6C2E8D10A13180DD6830121ECDEB349F862BA582B32E33352C41049C998B09638F1440318B139521C1893D9FCEDE9D8AC85EF7CE6859C797F460F92C3354A9A609DD30F21276731B1A1BC574B2A6B1BDA3ABB707BA71AB791DDDAA122305458D9D60B836A85B5601010E66044A58BB15F648AB1992A3686912AB60C2332A540BD374458E1B1EEEB9514824E137E530098D34F220D505596FB33EBB61FF257757563B5BA0BC36B2779ED505986D16835180D263020B7D81B7A155FC92B35315359063020034F338251A187712153A2F936F84A9DDB873B0454C3A94FB0AE291A29003B1ABE39F16720969B202123AF58ABD5628D468BBB351ADCD5ADC16A02A23F18542B0C6128AD072338F11A942E18CD2837F519D90630328C60C8F43022530B543B4EC5C81EE6AE9E4BC3558175CB1D234FBAA076CFE6BB3871DFDDAC06891B2CB330D4E66128470AA3CE14069CF03D671389E06B8DCD94018C1C02839A281D8C4C3D8CDE1C23E0425AD32787C22369384B4D11B21B7700FAB81F922E369FBBFF447834EE675982D14160B4EB6050E76D04A363C4300E4424936CB9C2AC993284913B008C9DBFC6D6BAAEDEEA815C48786AC5A2DFC89C2F2D39783920366F85A4BC4A8E07B9CCC1E83480D16604A37360188D9661909014C7644B759AA1C0508F328221EB8541B5C2028C10614ECB7F0E8545E84AE0B78D0B00A3FE2D7C089AD2F35DEE7B7AC50622502D1EC63284A12630545686119C9087C3920B0C34A3714018F96660644B6B8816C4C9A92F8032074293C60C80BEC20926074E3D6489D02274F26423B6BBE7AA8DBB8E632BAC1E18542BAC04031A3B2763458C66C87B34A369401826155BB20F4624D52FFFAFDF4788FDE23D90F98F3A00BDE0E1B443040042A73515F7B988C57F9E245EAF11009B7D8E04678102F4F1C1235A70BDEE0161A88C61B49AC2809032203ACBD44CF585516B1E8661F9FC52A6A4EBE37DA77FD1D596AC6286FAB7F110E34369179A2AB405C87F7E12FBAFAFAFDF1510E8179A50B93F2C49FD7DD855ED1E9275FA8624E0DD6712F0CF31D934F6869B02B33262AD18210C48D802E372B0BCB91F9F31000C4935937DE792686A476074312DDC19565B611B8FD20C7A8CC6B29D87700BCAB530B1C0727F81CD7B6FFDBE90B81212556842487C0D31327C48B8797537135AC27BB82188A7C3530AF1C173A95485ADB5FA850191944A6D1606F4968D3463983000A64F505C3D9DDA0067DC53CE069304E3343D656DD00E7D9FA17F18E64F3EAD9D93F49BC39D07E585ED3F86251C8E4AD740B31C4ED6601708048A5ED159C534CCB4E6B20CA3CB040698128B66AA2F0C85218C6613187B42842DC889985E47DE42C4F15C408290A7A10A8066D1719A474944E8C4740249E63C88C90DF30D1510BE23EF4907B7D5EB8E5D4A6B0D12E6D19B198973851BB3A68F182E0C5A0A19120CA51E4605D97EE149EA05CB371C59B1D1C7FFE35D3F9ED8713838C2EFD78B718782A363D7EDF03FE8E0BE662D31D55E68162D83CFD6F98B29964ADBE6AB9A24B47CFC6FFFF23E199BAD8E1595D0C864A22C0886AD0FA385C280E42E305EC46885BCD96C974F52A5C0C2ECA28663E1F1C9DEDF1CDD4382942504C02C2A5733053DE3C1295019125ADE355FF0C6C998CC36E8B94EE46502A36F5D6A8830AE919CE05C9A98C2E8B79761D0728D4ACE95F2566FF1A69D38980464A227BB3E0074A6076C1787B7D8EFACB03422B570429DFC5185A1EB65F48CC5F468C6601B4B05E5B5AAB7377FBB950EA551C7EDACAFAAEAA21EE2B11F73BD0B7AA3AB3ED9FB3D4CA2C12FBD5E572F0CCD906040E31FC2D2BE9A31982E1F81D0B97CC3CE0DC4CA90A8F2993B0D2224F207A80589F56F9EB3D4ED6C525E3BD4D26F9445B3EF41C2803924739A31D896AB305B5C8AD81EAE34C8D1F516989A3E94174872B17EE771BFC854B1D543C6EB050664C70399A9812AB69B7C7FDC4E1339C81798F1175A6A9802E6E760687C1AD4BF6DCB3C0C803050976FA0966B8430F32A4499B49E46B3673AB844AB9A4F9F4BC95780BAD8D6207A19C36CB9661494C86812076129CD96E10F07F77B1F705DC54DBC56A6818BDB96F560F4EDF2553734AB9013FF251A921A0278E1EF9F0B520B2B6CD21F290C5DCBB5DD42CBB55AD1DC4101C0432650CCA300D82FDE73F36CAF67D2C4151D7001DBB21E8CBE2D5769655D3DC98E17D1491266FCB1D70987276489AEE7F87FBC601896CF53728A44F4512B186660262C7AC3509F80307F69955C6D13E1E8C080BAD4DEE361FB69271186D998305437DDC0F2B2BF7BFE4A5E91ACAE0348D996F557534B6B8BC34BEF7AD25E424F22867BE67B60DCC2C9E3D14FF71CDB57256F1E668BDDB6FAD104EDA7BE01DB69895A9F03E801E09B68310EC8B0DC5F8849CDCB8190C9B6ACB7422F279FA7CD9BE9B4AFAEEF27F7D6A50574EA61321DB275725F9A5B545E09E1934D1146BE246555D23BE62E73A30FA5D31284403FD2623A680BBD4DA22693E7BEFCBAB8BCBA1AE2D8EBA92C3DD62BAFA82CFFF93736AF4033B90E86CFAE61F32D499D438626336DA7B92FFD2532FE0289613536A730B4D5D0A4547EF5C3A9FD60D2E9280FD87D9A7819F786CD4F3C0304F85E06A0C6E12D6471D7FC23EC7272BCA2A9A5C526DAFE57A74AAD3A7F25FDD2D4456FBE861CB8F398E79705169F5FEE7FEE1F665F7A26E0E0592B36FFE5573EDCF6B97F50D499CB57B3D35373C48505D20A5959555DFD8DB6CB99D7DAB41C717ED079E1C52F0F04FEE0F1DE56EF491C2F3E4DB4584BA653734EFBC0839C8AC096C6110104A4CEE04466719DE95C0CA4D31CDE6262A6DC119BE701238A37D4E6F0F93015AE9B105C80586E73E81789C08907C14372CB9CFA7E47D9073F90DBF3DD3EA04EF00BA09C0ADA01E3E9347C251B7EF98DB0E9FD2EB6A79D2D3898200F70B0F6BA678DA9E007F760DFF0BEDD4AA07BDA1CA0C0280BD5921B701B8E26A2DE07BC873233FA7F8086396385BFB0100000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (6,1,'Crypto-router_(128)',decode('89504E470D0A1A0A0000000D4948445200000080000000790806000000F1A3291A0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000033BA4944415478DAED5D07785BE5D53E92BC77BCF78EE378C4711CC7994D08653440080402348C42F9A18C104849986D082DA510282D7FA1A52DF42F7B43C3DE09213B8EED78EF29EF255BD61EFF7B3E4B89AC58B69CD834A1BE7EEE73A5AB3BE4EFBCDF7BDE73BEF35D49CC66334D2FFFBD8B641A00D300986E0507CB85175E38C36432796BB55AB34422D17CF9E5973DD300F8812F6BD7AE8DF3F2F272494F4F5FE6EFEFBF08ED130C1068F47ABD1A20A8FBE69B6F76F4F7F72B76EDDAD53C0D801FD072F3CD37FB8787875F1A1919796B7272724A7474B49FB7B737B9BABA120040434343A4542AA9B1B1512197CBAB7B7B7BBF3C7AF4E8EFDF7CF34DC53400CEF065F3E6CDF31213139F49484898879EEFE6E9E94952A994782B93C988DB080C2040A0D1680410CACACACCCDCDCD258383839BB66EDDFAE53400CED0E5AEBBEE9A171111F1FE82050B6266CE9C49A07DB15FA7D31D3B8641C080B06DABF6F676DAB76F1F7577770FAAD5EAEB1F7CF0C177A60170862D1B366C880F0B0BDBB574E9D2D894941472737323854241A0771A181820F87CB18F57E802F2F1F1115B2B1818041F7EF82103A41F20380B4C50380D80336459B76E9D4F666666FE92254B5266CD9A250C0AFF4EE5E5E5D4D2D2422E2E2E820DAC3AC0C3C383FCFCFC081A416CF9735E0A0A0A04130407071F361A8D2BEEBEFBEEA169009C010B28FBBED8D8D8DF2D5FBE5C1817FE9C3EF9E413EAECEC64C3EB61F42AF8FB43E8DD2A30800C7A60665C5CDCB28080005788450A0C0C14AE81F5C08E1D3B982D8C58CFBAEFBEFB764F03E0F4F7FB0130E077A0FE74EED14CF79F7DF619151515115C421F18E0AED2D2D28F010025C060D46AB512B805F76BAEB9E6A7F1F1F11B2116531904BEBEBE2242D8BD7B37F5F4F4B0ABF8064C70F10D37DC30380D80D378D9B87163D6ECD9B3F7E5E6E67A32951F397244F872F4723D8CBD116EE0F9929212DD098D2591C8CE3AEBACA4356BD67C9C8425343454B8828A8A0AE13EF05A8935EBCE3BEFAC9B06C069BA6CDBB6CD05D4FD97ECECEC1B43424248A552D17BEFBD277C7F5454D451B8817320EE3A1D36984422BDEDB6DB6E59B870E1FF227A90300BB0186C686810E21061E156B88187A701709A2EF7DF7F7F1084DD073939398B66CC98217CFF4B2FBD2480801EFD02DCC02DA3F57EDB0534EFBB65CB9683C9C9C9A9414141840880AAABABC96030B04BF80CBA600D2202CD34004E4FFF1F0F21F7C5A2458B9239BC2B2C2CA477DE7947A87D2CB77EFAE9A77F19B7D12412B77BEFBDF7D9B4B4B49F3300B8E73300E03E0891403544E532B8998EC9FEEE5B9FFE7B545B5B5BEED0802E4C6FD2B79256BDFFCD179EEE9A06C00416D0733CC2B83D080123B9C7EEDAB54B8838D0BFA6A6A66639C4DF412700C06EE081ACACAC8719000C24B95CCEF4CF19C35E4410F3110ED64FF677FFF08B9DFFA7D51BAEAB6968A646793BB5B6773DF6FEF37FB8771A001358EEB9E79E6450F811D0B72F87701CFA81F209EABE373F3F7F090C59E1CC75AEBCF2CA2BC022AF3300983DBABBBB45480816D0C20DE4C2D5144F0500CC24B9AEA1A58D2A6A1B48DED6390D80892E37DE78632EA87B0F7ABC2B67FD3EFAE82342CF2788FA0E44033F420858E5CC751042A69C7BEEB9472004BD3931C4A124A78FC100E6D6D6D6CB1F7FFCF177A60A008D02008DD4D2D6310D80892ED75F7FFD7218FB1B44001236DAE79F7F2E42383082BCB8B8780544618D33D7898989095CBF7E7D4974747404670C5908724E80DD0AAEF7CBEDDBB7FF61CA0000FA670668699D06C084976BAFBDF692F0F0F077D9687D7D7DB477EF5E82B062003443C82D473857EF2C00E006F2B18DE768C2D2FB454A198CF29B279F7CF2D7530580260B009AA70130F1E5B2CB2E7B06E1DEAD3CA8C300E05C3E67F1121313FB61C4E7DCDDDD7BA0EA8D6817130EE7F4AE09AFC57BEB7E7E0F637BA5A7A73F04571286A882D5BFE8FDBC4047FCE9A9A79EBA73CA00D0DA2E5C40B3BC7D1A00CE2E2B57AE3C0F06FC2D42B4F99CBC6100B06AAFADAD15E3FC30A430A0759067BC85E91EF44FD694309FCB2CC00347D000656092BF023CD5616161075E79E595BEC904007ABE6080A6690038B77099178CB30B4653E1FF55C25832182A06060A82EF9672EFE5A15F5E38A6771600EC46D8F81C05F0F99C07600030B340605621D41C848BF8CBC68D1B9F9F5400B40100358D0040DB34009C5956AD5A150D231D86C1C2D8C04CEB00419F46A3515992377C9891B74CF158F4FC06AF5D79C5F15C146A6D28B3052CBCE5C5CC6DC823866017F1062E460DC3A7598EBB75F3E6CD7F994C00B4B4750A064034300D0067960B2EB820DCD3D3F3087C7504276DE0E7C56A2DF6B07DCF2EC0DA266C40DECFBDDAFEF8D1CEE5F5E8D1A374E8D02115CEF5E2EB60BDF3C1071FFCD33400FEB30C10020014D902C07EEBC8A8636D47DBC7238BEFBFFFFE0098C6CF02A2CD5BB76E7D623201206FEF1422B0A1B9751A00CE2C5CDF0F0395C005449E8A719D39A7B8B8985E7BEDB55E183ED072FB077E87657201D02518601A00CE33801F18A00C822DEA648DED2C10B836E085175EE8020384586EBF6DFBF6ED0F4D26005A3B860150DF340D00A796D5AB577BC1B7570200D193D5EB1D7D56575747CF3CF34C1B1820C2A2017EF7F4D34F3F30F900680400E4D300709201601FF79AF1003019CCC0F5054F3CF1841CB78DB2DCFE89679F7D76F3E402A09B2AC10075D300706E59B76E9D4CAFD737F8F8F8449FAA8F1FEF184E2B3FF2C823CD68D7180B033CFDFCF3CF6F9C4C00B475760B06A86B6C990680B3CB9A356B9A008098C9E8ED639DC3C3C208FB9A4C2653ACE5D67FF9D7BFFE75EBE402A047688069004C60B9F8E28B1B0180D8A9A07FDBF79C05DCB2654B83D1688C17D922B3F9794405374E2600DABB860150DB300D80893040032281B8A9A47F5E797C61E3C68D0D7039F1965BBFF4F6DB6F5F3BF9006804009AA701300106A80700E22733E61FED334E2DDF72CB2DF51A8D2681EF0B57F0FA071F7C70D56402A0A3BB972A6A1AA8661A001302409D878747C2642781ECF7F1A8E04D37DD54AF56AB132C99C07777ECD8B176D201001750533F0D808900A006464A9A2AFAB76E79B9F1C61B1B542A95D5057C0806B8683201D02900D048D5F54DD300984032A81A064A9E8AE48FED96E70BFEFCE73F6F181A1AB202E03300E0FC4905404F9F6080EABA69004C04005530D2CCA9A47FEBF6861B6E68542A95711617F00D5CC0CAC904409700402355D5354E03600200A87075759D3515B46F7F0EBB004403D63070CF871F7EB8745201D0DB2F44E0340026068072D073EA54D2BF757BF3CD37D72B148A04CBAD0FC205E44D2600BA1900700195B5D300707AB9E8A28BCA0080D9531D06F21661605D7F7F7FA2E5D6850040F6A402A0AF5F948455D6364C03C0A97F120B0050824DDA54D33F6F376CD850D7D3D393687101651F7DF4518679121ADA0A809E3E8560800A66807F3C390D00EB525D5B1761329BCF339BCCDFA6A624D749AC959E443200A010DBF4C9AAFC196BBB71E3C67A00C0EA026AA0016633166C56B280C37CF2006864104C03A0BEB1C907FFC3A52693F96AB3D9B4125B99C96CE2C6DD6B329A5EAEAEA97AE7969B6E1ACACDCD3D84C3674F552998ED76D3A64D8D5D5D5D7196AFD87CE0C0813408509397979711C7984B4B4B4DB6807016085600F4F60F03A0B2A6E1B177FF1B01D02C6F75412F3F0F8686D1CDAB61742F9EC781AD28E8140030F196DF9B746AB5E6EB1DFF7E6F4E697171A4B5D073AAE89FB777DF7D77736767678CE5EB76161616CED36371717131AA542A038E31787A7A1ABDBDBD4D0083D1020293F30018181681FF6D00686D6BCF8351D9E857984CA610616C6174D3F12D1BDD640181DDE73C7FAFACB4842ACACAA8B3B383A62A2D7CCF3DF7B4B6B7B7475A68BEBFA8A8E847F8BE3A0080CBCD751E1E1E3A060483C1C7C747DFD0D0C0538A8CE3318115007D8A0121022B6AEA7FF800E8ECEA4E16463799D6639B3C6CD491C63D1108C300B0DF67FB9A6706D754575163433D69008CC90C07EFBDF75ED8BF3DDC0200554141C1B98840740C020B1078AB0518B43A9D4E1B1818A8ADA9A9611098C602C171000C5A442000F0B71F20007AFBFAD1BB4D570CFB7573DE084A37597AF9284070E0028EEF3F76BC656BB91EFCB5A9B1BE4ED2D1D12E7191C9C44C9F5301C2030F3CD0DEDADA2A00807BB58001AEC5FDF452A9940DAF67E3431368F1313F805ACD0FA36E6969D14D1400558802DEFEDBF61F0600060695ECC72F86B1D6E33BB17F773946E5CE18DF96FAC732BEED75ECCE359A8CE656B95C51515EA6AAAFAD6183B8A1B7BAB161613009A85B0A034B790B4127037DCBF8C9E2008C8C41C3F30D79FBDC73CF75CAE5F240B89C7740EF2FA2970FB1E1C1027ACBAC231DAEA961E30F0C0CA882828234136180FE81C16322F08C06804AAD96A1E1570EFB75132B799F137AF028867364FCF18060DD371620ACDAC160306AFA7A7BBE2D292EFEE6DDB7DF2CC53E7718901F2B27B658DDD0A3DD61447780C30306F50130BCF8354F2B6B6A6AFA02A1601DEE63C0717ACBD6808F0CEC02703D0DAFCC02C9C9C9FA9D3B773AAD01FA0794C744E0190900AD56370F46B91A8D7E251A3DC256B04DC448270840675DC088EB8D715DCB7E8341DFD3D7DBF7715151C1C7AFBDFC5239B79BC5BFF356C253C72CAF39E96436180C267E7228B6469E520EB018C002266CC57B16805A340218440BEAD73B23006D01A018540EE701AAEBCF1C00188DA63834EA7A4BBC3E7B5CCA1E8DFA9D7501A3E98271C064FF5D8EBF1EF9FD0C7A43F5A072F09DA28223EFBEF9DAAB722B10AC00E0054666639BE002C49641C15BD0BD993F03608CBEBEBE06D0BED159E38F0A0088C0B7FF7A7A036006D675687CF6EB4B4DDC5026278C358EDFB79E6B6B7CE5909AF8C109C9F1D1C4F378C76201675DC638403483CEF76A349AD7F30F1D7CF7B5975F54E0DA120B00D8E06C6C33E85EACBCDF9204B226804C134902D9026040392446033915FCD65F1F3BED00C065311762BD1AEB2A1652A631E8F6547A2D1F276FEBA06F0F1551615915E90D46CA4A4DA64BCE5F4E2E52A9D342F0F8F54E52589ACC5A93C9F8B1DE607825FFE0C18FFFF487EDB60F9A34DB6D4F2A0D7C02009801A0014E170030F297635D8FF532AC0136FFE8388D3A7116E079FC85E535B4FBC011AA6B6E23571719CD4D4BA145D919141E1A48358D2DB4FF482994BB8C1664A5516468B0839EECF8FEA3B2C628C61F05387D38F64D5CFB655C7BCF7557AD9BB41E6605C0A052254460F96900800C4B4FFF29D698D10E98508F1ACDEFDA189F7DDFDEFCA3B4FBD0515220140AF4F7A545F33261E4D924438FCF2FADA47DF925D4DEDD2BEE1D13194A7900405A721C69B47A727375199B059C7501A3E51446D722F5D8FF0AF6BF7CC3D557554E1A00862C00A8FECF0080E7BC5D65317CD67807DB3792A39E3F160B34C8DB69E7BEC374F86805218EA29484185A963B976627C7535FBF82BE3B5C4C078BCA48ADD5122772325213C106E9141E1C442DED1DB4BFA09C4AABEB29342880D69EF723F2F5F1764AFD9F7C0E6254301DC6FE97B0FFF59BAFBFA6F35400A014001816816F3CFBFD00801F76B0D662F415AC739CBDC1C4FCEA71E3EB8D063A72B492BEDA7788EA1AE5E4EEE6460BE6A6C3F07360C8195455D74CBB0F165249759D38DECFC78BF2F079EE9CD9E4E1E146251575B4AFA0849ADB3A2928C08FE6CF49A5AC59892405402A6A9BA8BEB915CC9040916181637E3F7B1670944D1C2F22B1B99E01E77E812D5C84F9FDDBFFE77AD58401A0521F13816F3CFBE8D40100B1EA8550AED7E0E56AAC1E13BDF8311F3901BA1D1818A29D07F2D1E3F389131E6CECE50BE7092A67A571A8A89CBE3D50486D5DDDE21E71D1E1B424279332521249ADD6D20130C1FE825262A194141B0950A45122B61A8D8E0A4AABE85071A5F88C470567C645D1B20573C8DFDB1BCC621052C63C6117E0FC60D428D75362FBAE452F7C75D7AD37999C01C01003000C505ED7F0D81B7F9E4200DCF5C0D6AA9F5D7985322B33EDA44A9A9CE921D686A96B6AA12F761FA48385659C92A5CC5949B462510EA526C6121740EC3A5020FCBF4A334CF373D367D2D2F973292A2C8878BAF477F8ACB0B44A18312B2D9916810D8266F85337CE65401CADA8219DDE409E1EEE94353B99B25393C014EE5451D748F925D5C4B4BA72D13C4A880E9B0417E04482CAE67A96D76DF8EC551CF3F2DD1B6E293C2D00B061CB0366A9444AC14181FB6FF9F9B551C14141311306C0188D658041F61796C2F007789A13797B7AD0D2DC2CF4F81C18CF4F0C797EB3F73015C1787C0D7F5F6F5A323F4BA87D366449551D046121D5C245F8FBF908A3E764A69287BB2B2201B91084D58808F8DCB0E019343F7316744302E9B43A3A82B0B1A0B40680D2D0CCF828441133291C1A41DEDE4D550D728A8F09A3A890A063C6740484F15C86338351A3B04629CE7B09DB57EFDBB4A1D91E002AB5C6321AD8F4D86B7F7E64EA0070C73D0F0A0048A412C2569B91366BDFFACB2FCD757373F39E90FFB7FB47FB0606E82BF4F62FF71C221ED8888908A3B397E6521E841B7FBE37BF58185EDE31FC28FC0450F8F2BC6C11E36B757A847825307C11F54000C64745D092DC4CF8F37832184C5400C3EEC3E73C7D8A693E35290EBA6016C5848752476F1F5C4805950238AC05E64013CC055B787B7850757D0BE5E3DC8EEE3E01C4CC94044A9F1927EEC761A6F8A9B8890AC1934872D91D8F434DBB865D84F9ED79D9D97F3A0E8046A101A614001BEFFD950D0024D84AC9452AEB38EFC767D52C5FBA68B1C4921377D6FFD7D437D1C73BF7C280C5A2117220D8CE81E16726C451674F2F7DBDE730845D010DE11F649AE7CFCF82FF8F8E80F1BA7A69E7FE23C2C71BE1AFB311F72F051B44C20528E0D3B9B7F3674C8F5E30604E460ACDCF48251F6F4FAA6E68A103702DF52D6D1400A6C8C9980503033046131557D60134D5D0052A0A0E0CA0B9B313291980EBEB1FA482F25AAA696A85C0F4A4F396E488EB9E54C2689CF0D63EC3690F04CBF5345E5EDEED6161E1F16EEE1E5409D7555E33C500B8F3BE5FDB32007A8144F42AF1B3AA1E1EA5EBD75D2A498C8F4B1B0B003A9D013DBA903EFA7A2F68BE89FC40E3672FCEA5B316CFA71988E34BABEAE98B6FF78B9ECB0DC10662D1C7FEDDDBD39DCAA076BF41085856DD403E5E9EB438670E62FF0CF19A9F98C94C50545ECD630D14111A440BC1222C08F95A85A0F8FD45A54243704E6001DC4312841F8BC0C310836C7CD605F151E1307C324587075313AEC9AEA109D103BB9C39B31284986C6AEDA4A338DEC3DD9DB20192007C367A786BE732266130CAFEDA12898C4CB0435B77FFCB7FDFBEED9AA91381F76F355B7BBE3D002C5B736848D0C1AB2F5F9B1410E01F3CA2A8A37F803E456FFFFCDB7DC4050CC9F1B174DEF285B4706E8608F1F61C2EA2CF76EDE767DE8BE33987BF72492ECD43CFD6198CE8D14761F87CE2B9F0319161C20564A7CD227E606771452D446121D535CB0533A581AE170314B191E1A4181C1459C0C3259582BE3909C411046B80D6CE6E3041397A4F135C8094D292E271CD6461CC2AB880C310913CEB868FCD8291E3E09AAAC01E45B85F3FA293200036038088C0E7E5082539D3188FEFE622939EE460D42414B798CDB5B80EBB8857B63FFCABEA4905C0A6071EB201C008C35BC0700C14EAA4F8D8BA75975C3C0BF1B5CB075FEE1606E6731643D49DFFA3859418174D9DF0AF9FEDDA2BFC3BD3BCAB8B0B62FB34B8813C8A8D0AA3AE9E7EE106BE3D5CC843C642ADAFC89B8773A34488B7B7A09876231AE801B8D84F739A97D9C0D7C78B1F9D4EBB0F1FA552F4527737572106E763F5F1F280719B11099489DECDE76543F065CD4E12DFBD180C7404510067D7E260CCECB424E10A588016C2050CC2A584C3E0CC04C1017E5452C3EABB994C601C7615B313A349A95693275709B9B94CEAC8A6A388698C34F4011CFF32279B9E7A745BF72903E0970F6E333BE8F9230060751383831A75A752EB865365E7AF58443F5EBA003ED88BFED9FA0F7A43F532B9BC97409EB5A182FACF466F5F01B5CF9F57D4B21B3828DC8087BB9BF0EDCB1192CDF0F5A14E08B79DFB8E0861A7D5E9282A3C8496E1F339B367E2BE0403D6D277078F52636BBB08FB3803C88A5EB880B21A1165301B85CC08A0DC2C8E02E248A3D60F4701F0FDEC025261440E2B7D3D3CE9280462110CCFE1660CEE95857031C017FB2B1B60F8266190997191608F38E80D1515617F3B80CDE058383785DC5D5C471A6B42F50D273D18657FBC01DB4F0518CCA61D7FDEFE3BF58401C0932A0000D34400C07F872B9B283B33DDB4707E92E1CBC01D6EEF05FE1F29838F8331B7FB2C7AC8FD098A312408B5FF39FC3FFF004244683040311F3E3C433CAFB7122AF76B3005C7EFCC249930C4B205D988D3C3057BEC2F2801CB148B2882133D9C0C9A191F237A320BBE43472B488D102F313A422483E2711E33C781A2721105F034EE4C6885B91626E0DECE54CF6E23292602204A222F4407456094B29A26D1C0B312A2291D86E7EB1654D4214AE9A1197EDE9481688159A2AB7700806C20230C330BA1655890DF382CE04CB430B112B751C03480F3DEB130C3CEE7FEF8B8694C005867D35C7EF9E5D2B8D44CC309D46F75093686B78D146ADB15949834935A02AAE98B8417CCDAD96D12BDF748004ACD320ADF9B45A1EFC2E747CC0153E40D8771E88DACE4BFDC7350503A0BBD25F3E788D5CF076CD0D323B2800761444E16658105964114868506527B678F48061D8521D11422919497359B4240E79C0E661750D5D02C94FC3C440873617CAD5E2FB4028B4116913CC6C09AC00DBEBDB00C8647ACCDCDC30C9181A841641371FDA6B62EF24374C1FBA2213CFB0695B846234459AFC841A442CFC446603F744377DF0034853F79BAB9394A008D5BDCE2B8C4CD717DE368C7FBF9F9F43EBEED57410E016031BE2427274786ADEBD917AC1972A6E7DB02A05F65A4196191D4E6DD404F856DA61F697E4233124CA6FC942FA5268971F83E0619A5372EA60D6E5B68B1CF5234601FEDDA5B84302F1F226E48E405380BC8E19A0C028B439E6FE006CAAAEBD12BDD85DF5F949D2942BCCAFA46313A585D3F6CDC5CF87D1E0FF0F47043F8D74C7BF22DE30133FC6801F6CF460FE6288041548AC882FFE3B499F1C26DC8C0609C0B28859FE7C10E3E760E3ED3E8D965D488A167D614AC07E210552887347019F50210AEF89E29095194848842A5D5E21A4DACD2C9CD45064609873B09E2D06862256E2759E86A7F3C97AC05F8FB89F194FB36DD211915006C7CEEF50505052EFEFEFE1EB8B8F7B9ABD7CA9D0580D54D706A40E6174A5D1EEDF4FBF0DBE9EC81B574A1E21A7A2EF67E92450F9917E9CF926C0AB997225D236877F777F4B4EE31AA88DF4FA13BB36855DDB5746ECE6221FAF8F777D848D68450587020FD68C15C010AB6DA11F4DC6F0F16204AE8A560F8FEC57001D9108DCC6F85F0EDFB1009F02C5A4E00E565A7C10891A0E83EDA0726A8802FE7E40EFB774E04B1A03B84EB95094048281D46CF8491F560A40218BEBA412E0698E620DA488E0D27B5560FC337504D63AB689394B808AC9122AFC002B15EDE4932B4476274182540DCF2EB16B88BEAC6769A11E04DB3E323C72F8639F56CA2B0898FB7B748790BFBC14EF7FF721400588DDFD5D5E58AD5CBD7D7D74FABD5069F77F1658746A3FE130160058965BF9B27F5FBE8695BC48D74DEC01574BEE22A7A34E2360AD7C7D2F5ED779A0CB35AE9CDB0BF4BE5896523524921A670BAB9EB5E72F92A5AE4FEB9F02135310E6C308F6625C68A240FFBFDEFF28BC467893151B42C17BE1FD4CDF4CCEE635F41A9386E56422C44591A446330F1D3B5F74044727A984526D37C36DC8756AFA58347AB442E82BF3F1B9D470C79C8F94869B5107DEEE83DBC7F16689D078C4AAA1005806DD86524432BCC4E8A054B11584A4E550004FBFFF8C81008C508AE29878855E07839E90D06C1049141FEE394B83936BEA3C8C13EFBC87DDA039190275C28DB4FD84532DC411FB87BE3A80090A6A7A7BB802ABC70E119106161D817030678D359EAB7D709433EEEF440CC75B44AB19ECE19B85C0020521F4FD7756FA6E7437F4BA6D001B33AB359A2753951A0FA57C4D24F77DF47E7E42CA2F09020E28722EDDC5F20C6FCD938C2F7E7CE11953E9C56FE0E2E80451F37CA1CB0C06244021C69F090EF1E08CDFA9676F285BB60F79009033345733EA0042E854BC73825CC61219F9F5F5A25E89B0B4CB8C7A725C508562B835BE05ECF868C8B0811A0F00298AA9BE438BE5988471E984A8350F4F274A77EE802DEDF3700A04687085048860BFF471AD3A90490932E80C32FCBDC47FEFE120B2BDB02E0C1CD779E08007E966E4B4B8BDBE0E0A09F9B9B5B1814729CD1684C3A7FCDE54F394BFDF6003002819B127F461729AEA3950397080044EB92E89A9E4DF45CC836EA97F5D006C543F475CEDF4CE50907A45C32E73AE4450B1B7E427778DD4DB1EE71D4D1FD097DB5A70DD142AFE8B91C212C9D9F290A3AF889D9CC1245A06837DC2B17826F6156BA68FCAAFA26DA8DD0B005C704F80F0F12A52727204218120C5102AA77E13232B800761B2C1A3917C08A5F943941DCCDC1CA9142657D8B283F1B526B293A2C186E2381FC7DBC107676E1F87AE2B1F910B8A0CC94580AC0F71A5469201E9BA8B5AB8F62008899B11142544E410268C4F5D891BBCA5C44826BD80EC3F692580C3FCCE012FAD5E6BB4607405D5D1D1773FA638DC00989D89F0C003CEA90FA2D37B1A57E7B77F152C4BF28D2904CCB072F120088D5CEA4F5BD770A000CC8FA6873FB1F6997EF077430F4135A6158697A78E6C35237B33BB575FE938203FF81F0AE0171BA2B95555E0E51772F50ED2B8CCB19424EEEF8F9FAD052F8FE9CCC59428471AA960B4439E1C475048BE7A50B21D737C0A56425C33D1E869F87989F5D002F9C7B60BAE7866531980D267003EDB3E03B545C25046328228979E9C930B41FB541731C29ABA55EC5A0C82066A6C421DC0B102EA81C60A96BE910C7A525458B54F6C90C2BDB8D018C9B00E2CE63ED80B69DD1DEF8FCFAD75B369D08806DDBB64977EEDCE9A650287CD915E3C058ACF159F3F3AE8A8C8E5D2C834F7096FA25365B83544FB53EAD94A89D2B0010AF4DA5AB7A3708000C49076953C7130200EF073C4F5B5B9FA758972EE3F2BC676549714DA3CC220AA5D7FEBD92767C1121DC020B421671463440414905ED82E139E1339C289A23F2F79C82FEEEF051F8ED7A72E5EC607A8A303E6B55CEF71F2EA902C0F422A99393315344184DED9DC23D70F83603EC9183E880C708F83D4702AD0837D9B03C981417110A97A0A7CA865630855CEC4F4F8EA5E000DF711340630E0039A5FE4D62F453141B5B8DEC0400B6DEF3CBD14520423F17A552E981C50F5A20949900378A9A11183C3B63EEBCD541A1A149CE50BFE484AD8CB4326F7A24E2764AD2A4D3BABE5B0500D45215DDD9F1D831003C2CFF3F4AF429A694A83F93CC6D91393B732F2EAB1B01829A86646A6CFA3545452C12BFD1B7BFB04C0C060D20746495BF14BA203E3A42A87DD6059CE66511973B2715864F013D4A84CBE0641067FAB8D864013EF3F5F64034810801D79377740BBDC06061D13630A4160C510B46E014737A729C1078DCEEBCAF047A418237AC1562A10D4EA6B47DA20920CE97B01661512119617C9B91DB118038EE0E1EBAD70100F8350B411F1F1F0F34AE0F9776A3E387400BB0208C884B4CCA4BCBCCFE8997B777C071EA1F1F00BCDF2491D1D688CD94ACCDA0CBFA7E2100A093686843E7A3C700F05BF94B14EF534829914F5261C393E84D5ACA4DFF2B147E1355D5659052B91186391B62AB13FEF829344C31BDF0C612C4F719B41C6CC02381FCFCBC9D070A450128C7BC7959A9C772099C20DA638910B8146C2142C300B8107EDAC6DE8272507EAB2832C94184302B3166B868A4A24ED40F7243A7611F0F2CF1C00FC7FDAC1754D0059CF14B4608C8A19E5363FF1398DD641F1DB0D1D56A8DB8C671816735F8F8C6E775DB7D773BCE0358934088C1E1065D3DB1FA180C86193886DD028BC3A8CCEC9CF31267A62C7105A78E67785B80947B94539147295DD07FAD0080017FB775FDE618001E6D7995627CF305000AEAFF2846FDE6C6DF450D9DB798BDDDD71962A3DC5CD5BAC7283DE533083DAD65BA9927FCFDED545675217DBDAF08E15C8318AE5D3877B628026585CFB9FDE194B152B8058E108203FDC11A2AF4F8D2E1513DE80216831950FD1C437172A7B0A29627888ABC3FBB1A0EAB785C221F0CD2DD3B00651F4E19A07B6605DB5EEBC8F8E3A56DC7CAE6717E6148C53F4DAF1F41E7D6D85E62B36F3C57B0EDFECD927133812B56AC90222A90858585B901005E5AADD60F6C3003170C052384FB050424E7E42D5A1D1E11359B95F27800B0BA0BADC4403A830F3D0B00B0F2FE45D743C700F058CBEB14E57B4800E048DDFFE21C83004085FC1EEA195C4479B31F3467A4D6497C7D4E2CA26D6C09A6E75EB9882282CF1686E7EF540630EC3A542874417C54984827470407D290460DD7512E1881FFDB392988043292212287AB850F96548A9ECDC3BC2CFCB8DA98C1935F564DCD6DDD622898EB017CBDBD4EA6087442C79B10F20EAA866848A9B2DAE7585B3A03806336B101C0C30F6C918C3B18640B0418DF55AD56F334682FACFEFC73ABCC06F83C3C2E313167EEFCBC0BFDFDFC439C01007F591EC27BCCEFF7E21FBDA9FBD7C700B0BDE52D8AF0DD6F01C0B338476B01C07D00401EE5A5FC9406D40B283AC2C79496F2096E319C56560E795271F91AF4E20DB887371D6DACA4BDDF55103F4F979340CB73B34445116B8643472BA1EC2B44CF663A676DC0C2ADB6A90D6C502E06967850874BC84211DA2941B72213D8D82A42BCECB444F1F914957F8D385EA556516F9F4280E0B841EDFCBD9DC073460BFCE6817B244E8F065A07851022726ADCD5CDCD4DE8039CC353BF82615CD60791F37217FE38353D6385BBBBBBC7A8DAC00600FCBAC7A58FBE70F99A56F6AF3B0680279BDFA530BF3D0200F9B5CFA117AB0400CA5A1EA43EE57C0180EE81A554DB7E2BCD4D7C9822237A60B03C7295DE856BFAD27BAAB7E98DD8BF92DA6B80323FBC90AEF2B886126322C47CC10288B87D8525A446A8C6FE9FC3433FCE257476D19EFC5211DAF12CA3055C3B08B0F0B07311FC7F6975A328FAC84E4DA404884B567E8E14BAA36711381A0072A4FE355A2D75F7F40A5F3FC2A8521B5F3F8ABA77D61D3CF2AB7BA5B67313C79D186265030041C2E304303203811F94E00B77C0B37FF9F7F1C27DFCFC12962C5B71715C42E21CDC4C72A2E16D1214169650E925B4C3EDDF00C00BF487E6F728C46FB700C0E1DABF436C298701D0FC6BEA1B9A2700D0A55841751D37D1DC843B49AB0FA2FAB65F997A432AE9B5D467A4BD312343C79CFE65B4FC9BF554B4AB450C30C5C10D70781802FFCF2562DFE5978858DFDBCB13864FA194B868115296D6D40330B522E3C845A119600A16919395B071647C16789DDD3DA4802825FB106E84514F0D007BBFFECC1521BFC9FA5432A7A786D9BA056C5DE01678D62FBB053FE884406603E116E2E3B3F2962CBF38283838D2BEE71F4B18D9B8895A491D3DE5F938DDD3F6E763003854F34F507ABF004069F343D43F345700A0B3FF6CAAEFFCB90080461726DCC38B21DB491FDA631ECA6C94C0598DF8CE3235228197AFA64B822E11C51D9CD4D98B48804701DD5D5D4468C8A961169C3CE0333C694425CAC4391AE0ECE354CC03B0BF1EF7F8F6CE4ED0BD7914756F35A8D4CEBF8FA4FC138132BA3BF87CC73BDEBEBEBE3AEB1349263C37D0365A001388DC010CE985D7EC1682F0CF31102272172E5A393767FE8F3D3DBDBCC702005FCE283522EC929144F63525473C41076B5E2437971E018092A6DF9042952900D0D1771E35745D670140841088CF073F4A1DAECDB469E051FA26FB6FA692F8BD527E40805777105D5279235DECB296B41A9DA80C6221C72A9FF3FE39E9B3448A96433A4E0F77F52A282A2C58E40502FDBD273CE43A660590830A60AE5F6C6E918B0213DB6CEA893D7C6CE38FCE06A36B810FDE7A3508BA6EA8A6A646CF2C7052B3836DF54159193F8359E6CA19241894DD82D007CC06FC234DCBCF3EF7A29929B3E6BBB8C8648E42446B2849D201F8DC7F524DDBD5304EBB004071D32334A04A170068EB5B454D5D570B00A8B43154D5FA4B01801E9736DAD2FE341DF4FE9A7645BC4D4BF44B4C77786E929A0D1231EB87C33DAE3164E1C723845C17C8C59F3C42C8D5BEECFFF3E6A652745888B353C04F69AC9EFD7C7D63B3F885B111461C1500D25119E164F4805EAFFB62EFD79F5F83F61ED8B76F1F3FA7C8784AD3C3EDF501878DB89E2710E68B9B0472FE80D9203A3A367DC539E75C121E11193F1600AC5946F6812A5D334506DE0617F0000DAA5305005A7B575373F795C300D0C45155DB5D02000A59376DEA785200E0B5C0A7E9BEB66728541D642C29AF94C2D0128EFF7910890DCD7A602F0CCF833C9EA0788E04B8E287CC74B253C09D4E00B1206D92CBA945DE2A8E939EA4F14FD002E38486069DAE55DEDCF46C536DE547B0473BF49B625200E0481F0C0E0EBA734109FF843A878D781DCAD9C405798B96E52D59BA8AEB0D464F22D9EB053DE9208EBA078992C22E2379EF45D4D2B34E0040A94902536C1000189229E88E8EDF1F03C0D6B67F90A9534AC5A5A5F0F3A9A6A57353253AA351C2A9632EF8E4FBF03C8079F0F32CF026710AB8C304505B5B3BD5D43540BCEA4E30E08921DB487730112D60CB0626A349D3D5D6F2456D65D9BBF81E0DD06A72B0724F5757D7A9B980B180601B36E266EE60031F34A6700BAC0FB02FEABC5517AC4ECB98B39835C4D800B0293895286948DD474A5D08057A3F8886F4870BB899FE11F43BD24887E8B6CEDF1E03C06FE52F92B6DB4045478B697ECE3C51365E565262EEE855486627C6D2C2ECD9623A98C3F97CF6B57A4E4E011FCD05F4291454565145FD8A013BA33A0F8089EA01F446537F6F77615D45C9FB68FF5A7434395C7327BC740FDE2B4F49044E541FF03382386CE4B432878DEC163862088F8C9CFD930B2EBA342E2E3E45324A8DC189238F2305247B0A324BE93BCD1E6AD77551AE66391551017DE0F61ADD67789406FB87E8C8D1725AB9348F3C5CDD10DA95535C58903EC0D7DDECE5E5E37652099B0964F3781E43596525445EAB1D4D4B1D50FAE4B803CD90B2B9A9AEFADF7D3D5D47D1426DF81F3AD0F63DD80EF0A02A567D7E7EBE71C261E0A9B885868606A10FF09EF5811F4463A035AD9C9B97B768C5D9E7AC9E11302368ECAA237B0038668B13A20E9BCFB97B949795A90D64767391B9C94E750AB8FD1800978D55D5D45145750D190D46C7C677920D8E33E0D8EEC0A0D70D74C89B3E6F6F69DA8DF7AD6C78B47737BE93026D3D845ECF032806CE01D83E9D6CCA9F13681F36725A19F7647D20D2CA0C041E64BA60F5C517E4CC5FC0D944B7318D792C9218DDC0E301C0DAC000A2A9A4B4542B7375F7308B7638F529E0CD1077478A8A49A552D919543ACA08DDE4B802DC5CDFDBD5BEBFA5BEE6537C2F9E4ADE8EE3BAE0EFFBD0F395E8646A4BAF378DF628DAEFE541918EC2467C396F4B0DA2D007A1E1E133D75CB2766D4A4A4A86542A938CDEF3270E00FB19CEB6514777778FBEA2B2CAE8E6EEE171524210FB38677F28BF80DA3A3B471990190B005207E19D53EEC0AC54F457B637D67DA8D5AAAB2D74DF89EFD383A61DE0E97A1D1D1DBAECEC6CC35B6FBD6572F468BAEFF551B1F661637474B4AB42A1F0E4688181006084601B9E337FFEFC5517AEBE343824247CB2A87F24004E74313555D5DA96F676E0CED5D55917A0D16AE8F091A382EE398E3C91A6A50EC6E79D48E08C617C9D56DDD9D9D2F889A2B7879F24D28A766B478FEFC67756E0B8A1808000CD68747FDA3C2B78B4B0115B9156062B88B432D688D56B2E397FC9D265E7787979794E16F54BA50EB405B6FC3886FCFC239ABE41A53BDE4B1D8DDC71E9774979397A7D9118657494811B8F0D26A20586BF9F51D5D7D1F66D77BB7C17F7785EF1FF745AE95E83055B5D6262A2897BBD330FA3FC8F3E2DDC7E26121A93879DBD39ADCCFA80AB9182838313AEB86AFDDA8C39737264525E2687FAC73A4739A4341E387058A731183CED59A0A9594EBBF6EC15B43FBA4F771E00CEEA017462A352A128EC696DFC1C6DD268A57BAC3DD04C0370A12A1BBA9FD0EF10FDC77F2F60347D605B8D644D2BCFC9CA9A7BE9DACB2F8F8A8E8A1937529800F58F758E5C2ED71D2E386A369AC9BD4FD14F5FEDDC6DAE6F6C963832E031553EAA6A77D21DD885861A95AAA1AFBDE553B54AC90F9A6C63BA4747E1D9B6FD4CF79E9E9E5A8040EF0CDD9F960018AF1A49AFD78BB4B2259B187EF19A4B7F7CF639E7AEF2F3F3F19D2CEA1FAFE2F9C93FFEAFEA95777778F207D2B114FB18C63F7178766C2D6032E8FB155DED5F29157DF9ECE76127A1EEC100BD60C841A67BBCD6A7A5A5199DA5FBD31A00CE5623E1FB86FAFBFBC75EF7B3EBD7E6CCCF5DE4E2EA221BB7E74F1000F615CF8F3CF684FACD0F3EF51C378133C6889CB37A000A53AB54F41E1CECEEDC85FF95E7668A648EC5F003F84EAA9E9E1E2D04B4F1647BFD690D80F1AA912C935782990D80FE8CF5D75CBB2E2121317932A9DF7EB0EA37BFDFAE7E73C7279E6319DFE1A08CB35A404266CD90B262B0BBE34B8341578F7BB3C86BE7640E68BF9F53B84CF768030367F24ED5F0A735004603826D3592451F045A26B1845D74D1EAE5ABD7AC5913103063C664523F6F796100BCF1EF8F3DA50ED2AF137507F65AC0A8D7B60DF5757DAD550DF10F5CB7A2B7B7617F27DC1FABFB416CD5B674EF28A6FFC10160ACB4B25D355228C0117DF3CDB75CB278E992E5EE6E6EAE9341FDD65F9E7DF8D1C74F00807D15CEC9E801B3C9A8540FF6EFD10EF6F3AF9AB65A445E077A7BCF54D0FD190B80F1D2CA3C89058DC569E5B0993367CEFA9FFFB9E9CAD4B4B4F453A57EEB2200F0FE479E12A9738339E38586123319F4EAC122F560DF2EC498C2CF5B451ED3BD4AA51AF2F1F1D14C36DD9FF100182BAD0C9A1C319B69D5AA0B175FF9D32B2F0F0D090D9950A46043FDB600789D01E060BEDD58B1FD0836E0805EAFADD72BFBBE31E874F54CF76C788EE9F1BD7BF1BDA794EE7F100018AB1A69707090F5C1B16A24B044E42F7EF18BD52BCF39E75C2F0F4FF78952BF2D005E7BEF43CFD13378CEB902321A7AF4438A6F4D7A6D198FD6B19F67BAE7DC3DDEF3889D48E6C4C7C71BA68AEE7F50007026AD6CCD2626262626DF76FB862BB3B3E766F32093B3D46F0B8057DFFDC073B411B9714343B35963D20D1D32A89507ADE95BCBDA8DFBF543BB28D55C3C6019A7FFBE0CFF8301801D10A4D007526B5A199E8127B1F85BAB91CE3DFFFC0537FCECFA2BA2A2A3A29CA17E7B008C9C9E359EF1C9447A6D8549ADFC8EC8C4E9431679ED5C99C3740FF13A88EFC843B5BAEF8BEE7FD00070548DC4FA0054EBCB6569EC16F03AE2B6DB6EBB00A1E32A1F1F6FEFB1A8DF1100C6D30252B3414EBAA13D6434F230612B8B3C363ED33D56CEDD0FFD27E8FE070F004769E5A0A02077DB6A241E760E0D0D4DD8B265CB950BB1F0F32F1C19DF1E00F620180100330DCA8C9A0312A3AEC4326023B7D23DEED9C78647AFD7FCA7E8FEBF060063858DF6935C972F5F9E7DFBEDB7FF14BD31C1D1753811F4CA3B3B3CEDAE6D6B7CBD8B51572A35E80E4B246656F672CB383D9765F59C2E74FF5F0780D1DC023C828BFD24574E2BDF72CB2DE7E2984BFCB09CC00000C0AB7600E045FC32A8D9D8E866D241E0995AB04BCE15B830B8E8F53C6237563DDE69D13E3F7400380A1BADD548D649AE3CC804571173FFFDF75FB16CD9B2E52EFC34A9630CF084F29577FEED637B3D19997ADC497F4446E65A9CCBA95BD1EBF1DA3A703368538F673CDD0CFF5F07004761A3ED2457BD5E1F04DA0ECDCBCBCBB8E38E3BAE4E494949E5731E79FCC9FE97DE7A3F40F47A32AB5D495FEC6A3656E09C0E363CCE6FB50DEDAC29DCF1EAF1A601701AE9039EE4CAD54888CBAD6163E875D75D77D6FAF5EBD73DF7CF170D2FBEFE76A00B99CADDCDBA5256F3303267F0388DDB6A2DCB827B19C4B9EAEF23853B0D80294C2BDB4E72C5DBC839D93967EFDBB3A7432A31F37C3A56F11CCEF11C3B1EAEED51A9540A7F7F7F953355B8D3003803C246DB49AE00C50CAE58C6E75CB9EC02706870783F5EF732DD6B341A250FDC9C4A59D634004E537DC0696518D99327BAE223DEF27E9E54C953AC54F6A19DF90C6CCC6900380082B51A89F5010CEF0A20B8C0E0524F4F4F6357579701ECA03F1D3279D300F81EF4010C2EC1CA358A1250BD392424C474A61B7E1A001304021DFF6503F39922F09C59FE1FFCA75EC13BC1567C0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (7,1,'Crypto-router_(24)',decode('89504E470D0A1A0A0000000D494844520000001800000017080600000011218F2D0000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000047A4944415448C79D555D4C1C55143E77FE76F67F4110851A15D66D29155B6C09028235D1041FFCA1151AA535A68D3F2F3ED0DA072A2249638CE1AD10131F488DD4DAF6A5BE6852B14DA891861A3492942A942DCB82DDCE02BBB0ECFCCF78EE024D2196526E7232BB33F77CDF39E73BE75E62DB36AC77353434B0C5C5C54F949696BE9C48246E0E0E0E5EEEEAEA4AADE5C3AD17BCBDBD9D292A2A7AB2A6A6E6179EE7ED6030986759D6C7F8A9732D3F06D6BFB88282828FFAFBFBA71B1B1B770D0C0C9C22841C5EBDE9F31327376F88606A6ACA8EC7E38F4D4C4CCCB85C2E6D7878F8723299CC5ABD2F37DBF7CD8608A2D168706C6C2CA4AA6A7E7D7DFD8F82207C886489969696A32B005966631A20A0C3EBF56E451D805A616121E0FF74474747F0EE7DEC2A82756780DD666A9A06D4308BCC13173F393929AC00241B24307051E065F025020E5FB32B32601E9000C5AD1AB911EE6A3E72F47DA7D379079C9A699A045BD58DDDE5C28E228B1AB0F7D700A37C0AAD4951B526C3B20BE930E6E4E6C0C1F73EB06F4BD2C878387CFDB72B57629BF2F3DDB22CF7B32C1B40379D1AC7927B123C84B60FAD09F12A2C1C70C334E0FA8D71884971C8F27921E0F3108FC7132A0A85428AACA8A985859F5E797D8F74FEECCFF3D851060521AB342034BA93A7CF34BFBDB7FE539C503FA60CB3C93918BA3602A39128D0786CB04051B0E6F8CDE771811FCDB4CC8C1E0A3545956445FB5E53D2DF86B63E7DA2BEEEC58A1504CDC7DACFBB9DCEF28AF29D092147289E8848A81E0BA24380B4AC403AAD824D4C30751B6B8F80587F0EDB9112091C8B04CA3211761BC889E4DC71FC7DAAB3E3F87886E0C8279F5DF07ABC2F71820857B7FC6AF1052A04610B13FABB9C760F8D0234C30419C9545DC7773AD0125ABA0604BBC6E712C1324D24513224948C412F1CBAFD4C6565A5331E9BF2733C072E9187CDC9528609E731D3D235ABA2AC13A34C010A8D911B40CF5D8EE3709858602C1C029E8780D795C98696D6C67D0612D159109D2241411C2C15E78DD75EED7E34EF9119BF3F50F5B87B9383631C1020D3448D611E453FD8C3A24A40C9C1B2F1A063061428DBEF869C806F71467403A396419A9E415D6856149B50FDCE90E5FB80F6716D6DAD7B57C5735F3FB3A3EC4D973FCD19E6048A29C169F7BF7668B2C47A78BE80F5B9DD909BE5BB2330D5287C3302B762B78156C1210819437C4557B572B2FAC2A144070E1CDAF66C79D977DBB7EFD8268A0CCCF229F06A59908C4B326AC063C9385AEBB1F108FCF9D710E8A893B004CCF3AC959A9DBD284D45DEEAEBEB93C8BD6E34E4618EB5B6BE5B5555DD81875B40144570A2318458BD972EAADD3DE7B8545AE605C722B0039F862247E5F99943977A7B2FD84BC0DC1A879B8524DD7575753D7BF6367C555B5BB3DFEFF37248C46467E7B0B7E2713E530AACB76D1AE9D44CAC2B168DB48E8E8E6AF65D5173F73941E94615890EB6B5B57DF1C2EEDDA79FAFAE2EA3DF741416B331414FF7CF2567DF191A1A0ADBFF538E75DD074B8EFF20D1CE9E9E9E7D16902F594B67C842FAF0D53F7E3F4BB35DCBF9818CCA434FE5929212CFF249B096FD07E7378AC36FF5B9D50000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (8,1,'Crypto-router_(48)',decode('89504E470D0A1A0A0000000D49484452000000300000002D0806000000E84AE8C20000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000C394944415468DECD59797014551AFFFA9A23C964323399841C431297641192800445401158964B1441C505FE40CBB5BC58DD558152AB40D42D4B74AB74B5D46555C492E5AA756545290F40969543399248C81072907BAECC7D4F1FFBBD9E193239882C90945DF5AA7B7A665EFF7EEFFB7DD76B902409867BE041BDF0C20B345E53D77A6E2AF180613B1E7EF8E1B4091326DC555A5A3A9FA2A86C87C371C1E974EEDF8BC7975F7E19B9DAF98795C0AA55AB0C4B972EFDB8A2A26221C330C0711C90737B7B7BA8A6A6E6DDFAFAFA575E7FFD75C7D53C831D2EF0EBD6ADD3CC9D3BF7D9ECECEC857BF6ECE16D365B43565656D3B871E3261A0C06935EAF7F223737F704FE74FBD53C871E2E02D1689441C9DC515B5B0B6D6D6D5FECD8B1E33748EACE03070ECCB6DBED6E9EE7598D46F3C05B6FBD55F88B24200802E7F1784C168B0570F5BF6F6969B190FBDBB76FEFEEECECFC421445F29B12249A3BD43C1FEDDAF3E0FD4FAD7F7244096CDEBC990B87C3A66030A846F084802BF57BB4407728142256D2E047F55073E975BA7B150CF7C088FA4020106011E06D66B399382CB8DDEE5FCF9933E73E0C1862595919DBD1D1918F3E00B1582CE3B22664A89175E243870ECDC788739FD7EBADA7695A8D60E7E2ED25281B151E62777737178944BC4AA592C6A8F4EAA64D9BEE5FBB76EDF94BCA841A6102083A53A7D34DC10164A5073B938116EAD9B76FDF34B4D690321A02FFF01010E207FCDC5028140C3A3AA065B82109D0F4C81240AD5F920086CF8BD728219900FE9EFB997C3BB20430FEF343014FB1008B7E22E1EFB9A17D78E42D104A021E0C787210E0E8CC11FC3D3BF482D0239EC8A297E303E8EC047818CFDC953A313D4C16189240D22A541C59E4E79C98A687D9071A1B9D9934EBBD1B857F371F13CEDC3C6D5AC38FC78F0F00DC5F4EA43A45120226348DC964526382E3713A5EEA572253C394071458222C8CF1E24A4EC92F426C2A49C4D507E9F64577DC0993AA2647EBEBEAC066B5282E65094200B1D2587294E07C0578B8B04EF2E2756CB808D07EBF7F06AEF44A9E17EE1125C89220D91D414AA7046034E62874B760B9C0F392DD66ED6C696AB160654AB22F939696C665666672E9E9E94A24D284055F35CE9D86BE101C3F7E3C354854BB6A0213B1F05A2108E272C45678112C409FF64E4413F4219278BE4E6F28D4646615C6F8F2483010FCC6D2DDFDE9D62DDBBE6D6D354759961510B888F5938084A2757575FCB5CAC4C53856E058894E368E2493DED5EE1D440A35F58D70E65C33E4E5E8E5BAA5B4C4040A8EED6391041DA542A95C945F58B8E899E79E76F2317E7784173F696BA83B823DB384ADA63478A4B9FC309A8DE3311CDFE368C6F1671CE3E2ABD9572ADE4000BE3A741476EEFD163C5E3FB02C0D1DDD362424C27F8E57CBD716BB132451EA4BA4F75A4F5A6606A4C3A631654D7FFBF0E397DEDEFCD1D8C14B89CB90D04B7F7963C15DF3E7BF54317E6CD5C0B0D8FBE0A6D60EF8EF896A60B1B7D56AD221148E80C7E707A33E0BAC0E27CA48029552013FD4D6439ED100E72F74C0D85F9980410BCA52480698544B8A5231DE7D9EA2A4E7DF7CEFFD5318AD3E1143E2F6356B1EB35C76356AB7DA73B76CDB51956BCC3EF6FB552B0A0C7ABD2911D321CAC7E0F00FA7A1BEA10546E51840939E066D9D56C8CC4883DC6C0304B139512995F23C36A71B8C3A2D64C5E28184C03DF5D339FC4F3A960E2CE418B280C5154D95563F594E224360C5D75E7EED8DFDA3F2F2F3863040EFAEC49F9E5D7F3F3AD4161C2807365A5A525C337BD68CCAC33F542BBDBE008C2EC8C3D56CC5582EC075A60268EDB2800A0165666440E3857630646981636870FBFDA0CDD480C3E1224B87A267C11F08811243A6DBEBC3CF24748A509C9F0B1CCB002FF0F29C2447C843485E0B29DF0922CFC7768ABCB82D43217DB561C3067E0081A79EDBF000A7507CC8C9041842029CFEA8408D0FC281595B19432C0796363D02B1730A74D66C0806C360E97142515E2EB85142515C712D5AA4A3DB0E1A3C938787C35150A915D0D3E385F43415048221B40207E1501438050D91280F05461DCA919643442FF8FE04523FF3768117768A0AEEFD775F79B106E54551E5E5E58A48389CC560DDCD30B4BC7743468E2E8369613B9931A76F93222E51B2E95BE1D88D7BE07CB4017B550D64A81054282CAFAEDF1F941D58AD5692D88FD6E02082A424A1370C129844371C47CB0BA046324DED1670B83C60757A0644AD3ED24A7C46B846AD3673B53E3DFD35794E0C5F14AEB6D1E77155C8C0E9DEA1442B280506D2BD3994C93C95FADAF98D5433E6207C7ECB3B10605A202D8D07B7C7276B5BA144C0D1982C91502802344325B6152560D0A222AEAE5AA5003F0227FE22E077247211C22266F0EC2CCDA009319504518646A3C16728C8BCD13E61D4E5B05F8845C25E9A495A213E267B27825688F7DE6A672EA53F38199EF971BAB8E4962761C59227A120DF8CA615211DADE10B04658990CF64DB44810F24A488B47C443E189DE26044C84857617010A0243F074619B5C9227020F8F8F64BBC2FC045953F13C6429C00F3DD77DF11569821FD0D1DAD2DDFABD5EA5C9DCE301A9B0D9A410BA8191564502A883012F430769028116E55F82873CB74686DBB5E2819DD4A4F2CDF86408BE042A71232D46A5942D14814F45A2DD8511A99E96A945A141B130A571F7D00BF2BC937823E3343262362AE20842F0E297EC6EC4F763864DFA0E4AE8C92F5484A0B24513367E6ADFF6413955F046F76555656BA6A4F9D6868BBD03CFB861BA7FC717451F15862912C4A0B55A20E82BC0F9AB806140525EBDD15CA6554EE80A4C960814A73508D93CD409DBD11461B4DD0D8D6091A04A1428B78D132066D06B8300A5D67CA033592483A67AAD6E3C91A9D39C683A3A707424880A5E33E295082EC4B9440818817483ADA270F903D1BB2A5B36CD9B266B3D9ECB0592CC7AE1F57BEBC6ACACD0F626196CD62EF318F9901C7259493549D88F11438DC39943F50097F55FF2475DF749A3A3BE608ACFA663D5A42054E8F170CFA4CE8B438609441072585A392912491D012A0E37A9117A5DB6A831EA753EEC248B24417EC5D75F94C2A594002BC4802D0A0BBD3E47E555515FA36ABC7EFCBA6CF98F9C4841B262D42A9A94898A5682F4AB00E7C610A9B0D1746211BBCCD0740640458D0BE58087A22CC688CF34D1D5D50906B80E2BC9C81311ECF31242324AEBB2C5668696D97F54E9C351909D9E439E51E46CC26A7D5F290B5ABEDF090DBEB84C8CC9933951E8F27D760304C9E336FC1BAF1E51555C43FE2090FB517F3A11EDB605FB403FCA20F4A5B276144D18AD6EE4E6172E5588EE85B069BD2D4A4C678BBA307EACC66F0622EE905CCF6019D24819D8FCFDAD9B6ABA3B5F93DAD566B46FF0D5CD6FB818D1B37D2BB77EF4E43072F282FAFBC63D69C394F1415179BE249AF77707DAE19E8ECEE8A7475592886E514FD93940F33F6C9EA5A68EFEC22BDF1A08093D7A8D498BBC77ED8DAD6F2263AF76997CB656B6C6C8C4AC9573E977BA07F3067CF9ED5AA54AAE2790B163C74EBCC592B8D866C0D9BC8DEDC206408883367CE84AC3D4E620D368211E8444D0DD4D4D6C9F21F003895044D4B41BFF79CBDA3FD9D4824F82D46A48EE5CB9707B09410AFF80D0D9115764D1C9230A04F8C5F76DFEFD64C993A753676592C77096B105002CF8B7FDFB235B4F3B3BD2A5415C324A422036507AE3A1F0DDB7D3DB66D986077A185CEE3B3DC2819A17FBFCC5EC18E0399208A3CAC53A74E757FBCF5A3C6E3C78EDEB6F49E7BD79597575C1F0741F71B0CC9BE34D64274381A93C153C98892088D4222D288021FF4FADCFB431EE707E833D5A8752B028F48975869FA2AB64EC423478E84E6CF9FDF867AFC74E386F5776FD9F2C1CB769BCD4132269D529210C044E75222548A423C9B261397200AC44218BD9CA79C5D17D684BDAE67F13F07172F5EDC7EF0E0C1B034844CAED94BBE59B366B1C160508BF35DF7F8E37F78EAB7F3E62EC9D2662A935222ABFBE22B9B423B3EFB42DD4FF71225C4DA85906707D6CC7B519AE730CA390793CBB0BFA54CFA0702C82E2B2BAB7AE4D1479F9F3E6DDA4D1CC7C9F52821F08F4F3F575FD43A25B9693EFC1512D88D163A85F72C478F1E0D4BFF07A86BBA379AE21F1604B47FED9A35750B172E5CB472E5CAA74B4B4B4793BC29FF4EE0238C18394109D1ED78E330326F2D2A2AF2EFDAB54BF845BD272661B7B9B93903C914AE5EBDFA91C6D6F6DBFFB5676F5021F1FF4697F81A0999D1077A4E9E3CC94B570864D8DFD427B239790FA04329E5E3F3B2F0763BFA4537CA2592A8C17E996FEA07ABAF309E3346A33176257219ECF81F3D0880D812A4D7290000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (9,1,'Crypto-router_(64)',decode('89504E470D0A1A0A0000000D49484452000000400000003C0806000000D689BC640000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000132D4944415468DEDD5B09701367967EADD67DF81096EFDBC6C6273E201C018F434E8E21243B2159488A1C9B996442364C48323BC9EC26EC4CCDD4D6EE4C656633BB6CB2D949A5865C540E42428024600E87C336D8C6B7655BB625CBB26CC9D66D49DDBDEF6F49B66C8C6320800BC18FBA5BAD56BFEFFFDEF7BED7DD501CC7C17C796DDEBC99369BCD225CF41F3D7AD47F3D7E93BAD10050F87AE081074452A954949393532C168BB36B6A6A6A07F12597CBBD870E1D72DED400ECD8B1236EE9D2A53B351A4DE5A2458B1663D0E2A1A1214F5F5F9F115F874F9E3CF9AFDDDDDD43D78A11C21B19FCF6EDDBD32A2A2ADE2D2A2AAA904824E076BB617C7C1C944AA5343F3F3F233A3AFA672CCB16C6C6C63E89BBB7DE540C78FEF9E7D5656565AF9794943CD2D5D505F5F5F50C9E8B363232D294989898B170E1C214CC0EE8E8E880D1D1D1F79292929EDCB06183EB873E0FC18D9A7D81401085AFB524C023478E80C160787BF7EEDDE59F7FFEF9EDEFBCF3CEAA868686432E970B643219D97D6D737373D64D9302BB76ED92C7C7C7DF25140A631A1B1BC16EB7EB51EC7E8BBA1712BCBE9D3B77BE8200ADC27D14C88C68DC762F8E0B370B03A448EF24A43674767602CEB405D5DF1EBE0302D2AED7EB6B8826041993F5E69B6FCAE772F04FF61F2AFDE3FFBCFBF1E6A75F7A6D5E028081B3F8A624000C0C0C10E1B37BF115BECFF0F030879F8F12614421244383FB29E6727CB1449296181F7BBF4040DF332F5300679BB15AAD31168B05C8C0D91D45207CE1FBD034CDD96CB631C200866100D360018221BA0C8301E4CFBC04E0C2850BF7A9D5EAF564D9E974824AA55AB966CD9AD377DC71078B8132B8994553C4A130666049E401F0F97C29582D56A340EE7BF4D1473D73889F1FF30E8075EBD645605024370D18D8009A1F52875D7EBF9FC62C208227437D2029C222037CADADAD1674893459CFCBCBFBDDC8C8881697EBBE1700FC23A0E6210350D5FD389468723270E661B6111111C1BF9352F8D65B6FF5A32E14A2608AE768B1E76719C4D9F4A3A03141619B7510EA9341824186B0C417E076D19C011008E6A50690E0B95070E1633630303538A21718D81C01989B065CF732F8D1471F11CBCBCC36E3A1E56900500400344D734E018A9AA755800DBC66A57E3820C13278990C98C7659068C0E5D09F0CF40AE0F1F0D56FCE0C105082F99702E435530A4C07633A285839A86060736300CCAD0ADC28002E3B05D03D86D8239EB3080AE6290057980254B02912FD9022785D0068EFEDCD68EBECDEA0D3E948174873010ACC9A02D3874824E2F50AFD003986809A437437B40A188DC698719FEF2196E1FE5EC0B22B198E05A7C73776B6AEEE8BF7FFB627C260D07FAF010A0704679EA73EAEAB939393A3B049F26280A4836482FDC38DBF208241CB0522D126C6CF6C6558EE2E9C0321071CC97908BC43A4582CDDFAF0B647017D3ED3DADAC2EAFB7A45DF9702C132280902A0C1C6280901716467673BB0323810080F37C3B5BD60D65C73008418CC9D3E96DD2A124B36E1092A48A430713A5C60F06FC1657C29140ABAB4B48C2E2E5E4CAE0F58BBB4DA419DAE875CFD10C9E5723284D80388703F21197ABD9EC3C04F9B4CA6A32888524C053F06EF9DBD125C432B8C27B31CCF612BC3B00F62481A0AFF61B9D06C034CCC3C3F82EB105C9EB21D40A9524517162F8ECE2B282466E79C5EDFFFC9BE8FF77E8B9DE05858134521EDC7699AF623C85ED404AFDBEDB66383E4E32E7165F75AB4C3B948C9ADF87B5BD0CE674D060A933487A901FAFC0CB4747643527C2CC8A592C9CFA68034F17D4A229594A76764966FFFC50BBF1CF77ABFB6DB6C1F7EF2E1FE8367CF7EEB09A60087C1B3128984E9EFEFF7CF96FF821F0880041C0FE1D88AA39C2F6313391D38F910CDC3677774CC0E276AEBA1B55307F90B33F95CEEE937C292E24510A1904370E7A9A911CA90C041C5429A5E8F2DF1FA471E7F686CCBB6CD1FFB7DBEF7BEDCF771D5DEBD7BD9A09FE0BED70C5C21001138EE0F06BDE6A272C9859DEC44E081EDDA9E7E3872AA16DC9E71585A9C07910A057C77BE09A2544A589CBF9007C46AB343E5B252DC9DBD38352E6251403CF1DFC7714A1FBF67E3FD863BD76F7CDFC7F9F7E06EF557EB06A7005055555D525979EBCBB8F863D2BA5FC2C54DCB690EBC5E1F54D73540756D0324C569E0D6F262A47D0F1C3C761A0A7232615DE50A686CEF82FAE64E285E9409524C85BFED3B0CEA4815AC282B04BFCF0F4A85F4921AC185B103B727E1DB0B142B78E12F6FFDB5193DF51EFCFA7B3B9F79A2F74A00987267E8D9175F792D2252B5F1A9C71E51A624252D9C297826AC4E9BCC16F8FAC419E8ECE9456AE74354840A4ED69C07EB9803562E290289580275175A402997F38177F51AA0B1AD1BB2521320353116DA902DDE711FE46424C3C8980D92340B203A22700D9099E20782CBECB4F5C9FDC8F58593AC9FD9E3A1FC7BCB0B4A2B388AFAF4F0F1D367FEF337BF5C3E6727483A2E97CB5DFAE7DD6F67FEE57FDF39EE74BA2C3350009ADAB4F0FADBEFC3FBFB0E426E660ADC525208C7CF9C87330D4D5081D45EBA380FCE37B583C53A0AAB9696829FF1C381A3A7402E9322F5178305F5A1BB7F1072D353D1E38BA0BE550B328904FA0686E0445D13385C1E9E55D304725236264474822D3891B01A856137CD50C60BCD4DBFB25A2C44020497C5805FFCEAD5D7685AF02A961AE08790B62D595CDCB2E19E3B97A09A0B8F7E57C3D33C3B3D859FD153E79AA0014FFE96927CC8CF4A83D3F52D306C198565B88E0E904F0BA9440C6585B9601E1985B62E1DCE7E1244462AA1A1458BBF21809CF464E8C7C0C7EC4E484B8E455659611497D393E2C0EE74436E46224FE47016B0C1657FC82992F519D8E16749D7E97FD7C7327B2204DCD1575F7D959D15809DAFEC9A028030F8EE6759DBA8CB2FFFF13D95C2C6D89350653A0619DFAD84B54B5683582482E367CF83026777596921CEAC01EA1ADB90D629909B958AB3DB89C15B61F1A28530EE1DE7014B40AAA7246850277AF9EA909E1C8FDF1BC0CF7D909A1007FD8326BE97D7A823A1CF38043969893C580AA918F7E7A65AE54BA6CAB4ED2C3380EFEFFBFCFE3DFFFD87DF9FBF0800D2603CFFF26BBBB0E7F87578F0A161F5D170AEE800A75F7E86B2459B41EE5341D981FB60BDEF2718683A9CAA6D04FDA01941C80795520EA7EA2E008D295582CAAF331841AB33407E761A286532A8C71422A530393E065AB43AFC6D01A4E28C77A34620EB2021269A4F11A207D1910A68EFD68352298305B8EE1EF7A256445FAE464C6C2780CB6452FD7FFCE65F52263480049F9B9BABF079C723890E9013174C1B1A951CBC0C50B77DF373883D5BC43DD8F81CB72AEF16D85DFACFF027DBBF4149490E2C2F2F809A8656BE14AE2C2F22EE0D4ED65E80B81835942210EDDD7D60C61429CCCDE44B61B77E1016A20E102A13F03271A649EE5B5123F2903D169B0DFA4D23B84F22389C1E18B28C21703268E936F03A112A135C982F996EB9B930BF4126551D1D05D15191C99366095FE5E5E552A55299EE7639D3A7044E07DE092042F0828811838893C298D54F197BBCD47B9EB7397D66131CFBD11E7859F133F0FABD7C7D379A47A0A6B1154A0B7220332501CE9C6BE66787ACEB0606C180B42ECECD06A7CB0DFD4613069BC65703D390058A72D2F9E03A757AC84D4B066CACA077C00C7999492014D06018B242166A0549878912195E26277C4458F0A82252DC5FA554F02010164CF1015EAF57820D468CCF372EA7C383A7A60291E7CC011176A5B8067E8A8134ED4A8A3529611957CE6C8D15D3A9CB9FC41E211E34312FC389B32E387AAA0ECA8B1641715E36D435B7434652022CC5F573CD1DB89F1FD3238B2F8BBD864128C9CB84E6AE3EF40B3D287CC918F41096493D2CCA4802130A6857BF09B252E24086558399EC10BFA7D708044AD24A80E011074B916DECA43F20B79CA8FCFC7C8EDC84340D99FA44025A16A956A78945C489A216082775208E8D85282E1ACE2AAB21C59B85CE9D855EA116D68E5508348A2FB8B4640715A3EE447A77E10CDD032A05875AD08DFE40090B5114491518F7FB70F63371E6CD6019B563E0D958166DA0ED1DE02B0209AEAB6F10838D07894484FA3184E66A0182178BE722E08398DA2EE33A7194E4D2393BF919366BE04590F96BC354C012052E9004962B57AFDCC50340907AECB1C7186C2E5C2A85C23C3C646A1CE8D335CB95AAF86875541C4D0BA9F0AA2016902F49812587C1BF46512F2C1B2F01A9404FE9FA13A1B67133239748A9F2C5BFA58AF20FE0C967C2B1D31436457E28CBCF813E8309063045CAB1343A30052E74F44036E63E52105ABA7A21158531265A051D2888C429E6A3CF902210BC6DC6000381069783B31C083C10BCD7E7059BC3C1034005CF910AF9426AB245B86DF5ADBB26449034153A9D6EBCA6A6C68CE9D06CB7DBBF3875FCC80BC7BF3DFC7BAB65443F298C144FA50ADF0A88A3A24018BC4B859FE22CD0401A33873781F6F9CE52066329B9F487BAD00BA57747835ED58D46A9051D630EC42F88C67EE11CA891197918607DD01394176483B6CF88C08CC36AB4C8297131171BA04B74920460339A1FF3B0057C5EEF0420E12C095F9FD107042B025559594923080A9CF538ECF9738ACBCA1F2C295D72AF2A2242454E34C4063F86FEEF8ADFC1CF6D8F407CD4215CF3C280751364C5BF01C3B6D5782C29F781B20F6A2B3EE32FE12D6B590FEA8FCAA0387D213FE34417521362213176019C47109472191464A7F2604F96B4D9EB3B1FB87998779DFCED40727E023A20DEBC76D181C9A383934807D64F1D3D2C228FDE0967F0FB04113F9EB0BDA0A0C0AD5028461AEA6AFBB56DAD8756AEAE7C625141C12A343F42F203323CD83F312F0125B5E3C9C9F1C710794E88C70830C3E717510DDE1658FFDD76EE44F65E4AEA50C2AAB222A8A9ED8418343995B794C0B9960E5E0B962DCE4581134F08DCF48E73F2E2D26459B358ADA01F30920BA5C18069D2AB23D9D900F5598A5F6683CB2C859F110600AF8EE4E2AA5338DBB57B52207027EB8A152B5C6EB77BE89B4307B44D4D0DAB6E5B73C73FA4A567E4921F550A94408B228112FC147FE01B648602CF4D183C5F21EA851054860C4A335A0EA9ADB7B22D7E3D55B9BC846A42B5AF462BBD14B5408DD63834BB53949D9B49D939B0399DD0D9D50D0EB4CCA1990DE438AF4C930113A50A6E0881E272D8DB070CFA5DC8707AC614B8C4E565F238ABA0BDBD5D8A416B7035ABB4BCFCDED5956BB66862340BC21D23490D2FD38BB96F058F4F087F848FA0C2762F9C971D87CCB3B7607B9CCD757676B045B9E974727CEC0CB49EB0AE17D1DFE5F6406B7B070C1807A7519B0ED27D2ACDC3D3C1EFF78E990C7D7BFBBBBB3EC092DF3E323262D66AB5DECB7A5032689A84E4C227061B8F23F7EE75EB1F5FBA74D9DD728542229C6CA2826008603A38A16593C9E4350C1839A94C2E096F6C480AB0D380184745EFE8D0426BA79657FCC9FC0E0618CAEF702082C12365BCD661D3B1FEEECEBF62AC17B0DC1B1000475D5D1DB99CC65DD193A2C43A6767678B542A5504DADD24B55ABD64E37DF73F5550585C261262D914064E44480B215C34E969836C6B6D6BF38C5847D1E4098533895E8FAE0F6AEA1BC0E5744DCE6CB8C085013185050201E7B48D35197B7BFECFE3719EC6DFD3A19E8D56555579B9904382AB7C54960081FA20F1783CD108447A7149C95DEBD66F782225352D3910F0ECC18796C9031338231E9BD32D61584E4002370F0FC3F1EA336034992E9EE9694A3F55F591EEE39E8161A3FE03876DF4101EBFD3E9749A9B9B9BDD81CB995303BEEA678543FA60369B652E974B83C7CBDAB071E3D6DB6EBFE327D15151CA9900B8D4BADD6E63BE395AE5FDF0B32F85FD06A368469ACFC2028E611C76EBF0C151F3E05E5C6F994EF76B7263247860869414D48771A4AE75DFA79F1A8E57551DD8F2F0C34F2F5BB6BC422012D182193ACCE99DA75ABD80D6C4C6D23DBDFD221230FFAC5850DD0322CECB7BC0D905959EFF80637D0E87EDACCD3CB407995F8F60F610BAD7D6D64EA1FB35BD351604C28740D8501FDCB83AFC5F6FBCD175E2D8B1D50F6DD9F2745E5E7EEEA55AEDC941F1F1F0DD1A1516F04540841E8464399FDBA1755A863FC046AE3A4077D710F6366E72E99C9B03BDAFC9E3F2C13BB702648404B5418D4625FDDE4D9BFE6ED3A6FB1E898F8F5F30732A0440F8FA489577C7CBAF892F95DFA174C0BA661E778C7EC978DD87318626A4BA016DBC7D36BA5FB7BBC36169E1465B3D888DC9D8BECF3E331EFCEAABC34F3FF3CC4F6F5F73FB5A95522999CE80B0E7078286860A73754116E09CFB5CCE938CDBF939FE4C3DEEDB1D19196999AEEE371480196CB503D9E041F765F9F3EBAFF7EDDFB7EFD3EDDB9FFDC7254B969491071FA6DFC5255F236D2FB061F9CE01C379DDCD3EB77D1F6EA9C1C0DB30CF074522911B8367B82BA4F27579482A4C1FC69011EEB6B636F38E1DCF356FD8B061EDB66DDB9ECACCCC4C9AE12992100B3881CFAB07BFE720769BD5780CF27F06FA9055B6EAEA6A1F7795397C5D9F122314C500C82DF0116484E3ABAFBE1ADABF7FFFF19D3B776E43301E442A2B900D1301512C332AE63C27F1BD0ABF7B1EBF4B9E131E269EE14AE87EDD4470AE4249DA6E6CB2E4389BB1090909852FBEF8E2B35E962B7BEEA55F8B45E06F1071FE2ADCED1C96D6163CCF81A8A828C7D5D07D5E01100E04B6DDA47F56CA64B2C4B4B4B4E53A9D4E899B47F0DC3A50237A67B2B0370D00E1B61A19211E1B1B53A1B0299115C4548D3536367A66B2B0371D0061FE81A48640A3D17073353357F3FA7F49685BF974DCCEF90000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (10,1,'Crypto-router_(96)',decode('89504E470D0A1A0A0000000D49484452000000600000005B08060000008C2580560000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000225E4944415478DAED5D07785465BAFEA6A74C7AEFBD878434123AA22E8A050B20AB28EAEA457DD4A58A8AC8E2AA5C5DBDEAA2AE5E752DA082C86557D0BB0A5C4A80908490C6A4F75E276D32BDDCF73F249884992484E86A6478FEE764CECC9C39E77BBFEF7DDFEF3FE70C3C93C944571FFFBE076F2A02C0E3F1040B162CE06118B76EDD6ABC0AC0CFF0B8E69A6B84C1C1C1D6BEBEBE7E8E8E8EB7E874BA20A3D1A8C2DFA5858585BBDE7DF75D258ED57815809FE071FBEDB73B2E5CB8F0497B7BFBFBFDF1001002765C7ABD9E3A3A3A282727A7B7BBBBBBD2CECEEE493C4E5E0560121F1B366C080C0F0FDF9F9A9A3ADDCFCF8FD8F188C5E2412A225401190C0692CBE574E0C0018D9595D5078F3CF2C81357019884C7EAD5AB1D6263638FCD9F3F7FBAA7A7278176B88C6741974824846093542A258140C0BDBFB3B39376EDDA65F2F1F179099FDD7215802B786CDBB68DEFE6E67670E6CC99376249D5D5D5949E9E4E3D3D3D646B6B6B605580E00BC2C2C228343494038455C289132718481AA552E9B779F3E6F6AB004CCCE5F010BCB4A8A8A8A36969691296D91F7CF001CB7425787E1F02BCA3B5B5B52D2828C81BC1DFE2EAEAFABBE8E8680134829A9B9BE9D0A143E4EEEEBEEF89279E587A1580093C962F5F2E484949D9336FDEBC3B91ED8C56A8B4B4D4E0E1E1B1EEE4C993EF9D3F7F5E3BF8DEE4E464D16DB7DDF60C84791B40E034E2E0C183646363A3CCCCCCB4FFEAABAF0C57019800FD383838D4C2E7FBC2DDD0962D5B08D95EBE73E7CE4873561305237CFDF5D7F35131D1CECECE949D9D4D5AAD9651D2031B376EFCE42A00974F41FCBFFCE52FDDB366CDB2CBCDCDE5E8273131F15F1F7FFCF1629385037AF6D9671F831EBC834AE0F4A2BDBD9DF87CFED7EBD7AF5F761580CB7C3CF4D043EEF1F1F17531313192DDBB7753464606A39A9D9F7CF2C92A4B00DC71C71D2EB0AA2D090909C2AEAE2EAAADAD65AB0B366DDA34DD740541D8FBEDA1075ADAE44F9555D708EA1BDBFEF18F8F5E7F6ACA03F0F8E38F2F9C3E7DFA112F2F2F7AF3CD37A9B1B191929292FE022D78DA52B7CBAA0654D5814A71620D1AAB0250506B484888CFB265CB26AC03070F1FC377F2B69F2D28A6DCE2D23DDF7CF8C68ADF02006B20C26F300106B7734D565C5CDC9AAFBFFEFAAF96B2993927F07D0D80F3170A85545353C3744005101CB76EDDAABD5200720A4BE85C51C96F0200DE638F3DF65A4040C03AD6607DF4D147A456AB69DAB469377DF3CD37DF8DA61BEBD6ADCB43E3368DF508CC8EE2733A80E8B076ED5AD5950270EE7C09E5C87E0300C0823AA0C33D82E62B894D35ECD9B387EB78BDBDBD3F426677E12D06AC37322A1A5C6218D8710606063E0CDDF063EF67228CCED9E0E8E8E8F4D4534FF55D3900A500A0786A03B078F1E23BC1DF1BE0E1A72388560C80B2B232B2B6B6269148C45C8DC5CFB2E36416D4DFDF9FF5001C6DB175D0820A74C9C7E7CE9DFBC6860D1B6413052057564A67CF4F71006EBFFDF6DDE86697817ABA91BD6A70B84EA150B0891E761006A3D16802A79BB014E1B8C400C8846118789D558209C1960030E025E2A9F0F0F5F56D069D25639B4B4051DF4C14803C5919659F2F9AF200EC4416AF6414C2B27E700C3E67DC3E783C6C1D1B6C0E68E4FB06C7175F7CD1060CDC0736BF74F3E6CDFB260C401100289CE200DC76DB6D9F3A3939DD672EA0964019EDBD7FFFFBDF5BEAEAEA3C590C30EE7EF1C517BF9C2800F945E59455289BF2007C0CD1BC7FBC811F0B14F40D2D3299CC7360F3AB5E7DF5D5CF260C40310028904D790AFAC8CECEEEC18966FCC8E77BF7EE6DCDCCCCF418D8FCC36FBDF5D6871305A0A0A482B2F38BF6FCE3C3D7A72E004B962CF91022FC87C9AA00F40D6D870F1F761F70498FBDFFFEFB7F9B2800850020EB3700C07F4BA5D287AF24F043FF3E72E44827BA6797010D58F3E9A79FBE3561004A2BB90AD8FFC16B5317805B6FBDF53D74AEAB279AF123DF7BEAD4A92E08B1238B03C6C62FBFFCF2B58902701E0064FD060078074DD463935501595959BD3B76EC9060D31276926DDFBE7D2F4F1400595915654284F7BF3FB501780B017CF24A033FF83C3F3F5FF9CA2BAFB046CD0E63DB810307FE7425006403807D531C80D7D058AD9F8C1E808DA2A222ED4B2FBDD48B4DBBA2025E86286F9E280045E5D59C067CFDFEAB5317805B6EB9653BBADDA727AB02CACBCB0D2FBCF0421B36ED8538BC76F0E0C18D570440010078EFD5295D012F0885C22D93D103B0C14ECA6CDDBAB50E9BF6C7780B14B466A2001457D47022FCF57BAF4C5D006EBEF9E62D00E085C9E801D8F38686067642BF1231080105FD0D14F4D8440128A9AC81080380775F99D214F40C9FCF7F79B22A809D9479EEB9E74A8D466304E2F02128E8E1890350CB89F05753050008A458241245878585E5B346959D52BCE9A69B3660F1EA644DC6B10BBA9E7EFAE96200108538ECFCF6DB6F1F1898BA368DF744FD2000A555B574365FB667F7AF1C005E655DDD2CD21BEF455096194D26672CEBF47AE3E75D9DADBBB76FDF7E0328E895A153CC5722C4EC9AA24D9B3695180C86487CCFBEECECECFBB16D83838383412693B193FBC6B1C01804A0ACAA8E7341BBDFDDFEEB03A0A9A929C26032AD34188CF7188D26765D3F194D46EE22DB0BC3C42DBBBAE44DA7D2D3BD4B4A8AC968305C7133A6502868E3C68DE500204CAFD77F8FBE603500D0E8F0D068345ABC4F0F9DD061170D9640B80840F50000EFFC4A00686D6D7527E2AFD01B0D2BB10F293F067B44E0CD00C12EB2ADAEAAA28AF2326A6D69E64E474EA402542A15AD5FBFBE0ADB0B46CC4F151414FC11FBA2469569D8920DBCA6C2BE6A2C8130084079753D07C097EFBCFCCB0500A26723B2B25A82EF5C6934187F87600A2F09F825D97F61BD89051E835DF66318F25CA7D5182B2B2A5455959586FE7E8595B39393D8C9C9695C7AC0AE0F5ABB766D3596416AB5FA7F403B6F0A0402167C167015F4A61F0F4557579712CFF5A3015051534F5979BF4C00F8388885C8A49508DC9D08A87458704D26F3996F0188D12A44AD52F75456565417CBCEABE59D1D46045388EA604380AC16A28913B0C19E632964AF83F75BDADADAFE899EE0281C960EDBD1B10A600060099652F4B7B7B7ABC7AA808A9A063A0B17F4F98E5F080028E97864D6BD08FAEF7150DEC303FA63202F6636D6FD98E117D60F7DDFF0D74C968119F80EB54653D1DCD8F8DD911F0EFD70FA747A87995D64CE0A52623020F0D855BD0180E8F1375BA5635AD0D7D7A70C080850E7E4E4E8C7D280CADA0650D0BF1F005F1C0884D4B8124189B514F47165FF957C76B86E18351A75865C2EFFFABB7FEEFF2E373797BB06885D3181801B519D2604DD3470058509596FECEDED353201F6F2F2D28D16FC6100D435721AF0F95F5FFCD901B0C758CAF1BAC9B40099CB3358C86C73C1BC98D14382C6042DBFA49262C38228D0D7737420CC077D045817D7A9902007B46ACD17278F1F3974F2E4493D026D4290B903494A4A223B3B3BD3B163C788865CCA329E3EA06A00805D3F1300228C1B3056B2291A0C2BD3B08C348DCEDFA64B8304CA008796507A561E75F5F651F2B4484A4D88A1DEBE7E6AEBECA298B04002695F6EF68FE6ACDAC13FBB41443B57AEB8F3EC306EBA8CA00C02505DDFC489F0AEBFFEF92705200DE35E8CE56C0A77C44E9BCFEC3182D221EFA113D9B9743AA790ECA436343B318EE2A242E97C59159D3E5B404D6D1DA8022F9A9B124F5E6ECEA4D5E9C9C64A3C91ECB79810A8CE52838976190C9ACF1FBAF7DEEA894C453000CE0280CF7E0200420732FD9E81BFCD3EC6ED5E065E2BA9ACA3A3A7CF52616905B23B98E624C7939BB3239D3A9B4F67F264846E88A6478551EAF468E2E15F465E211596545168802F5D3F2799BB0555C0E70D007FE9F75EA4BE8164189AFD3FD2E3704BCB2E23C5FB4EE12D3B0D6AFEDE471FBDBB6BBC00D434347322FCD99B930300CBEEBB06029F369E0D8D2DA446D268749471AE908E9CCAE6686656D2342EF05DBDBD74FC4C2EE5175790839D2DCD4C88A5A4D808AA6B6EA15339E7A9B1B58392A2C3404B11A4C236B2F28B5021D5E4898AB8F5DA592416092796FDA3540E3CA7D664301EC4FA5D5D2E76DF6E5DB64C3B1A00B500206BB20078FEE55777DD75DB92D898E888F8F16CC452160EAEEB9077D3E15359743C33979C1DECE89A9989C8EE08CA2B2EA56319E7A8AEA99542027C680E6826D4DF9BCE169622F0855CE6A72544535C6408DED302F08A88B90D2F77174A8A09237F6F0F9295D5D0F9F26A4A898BC467BD860BFFC45C93B9F775E1F35F194CC69D1B1F7FE49459001A5B3811FEF48D6D570EC0134F6D3E066B36DFC3CD3D63F5032B035C9C9DBCC706E0D20328AEA8A67F1DCF2076E16A426C38029F4CAE4E0E74ECCC394E6C5510DEE4B828F07B1C8985223A8175D905C5E4E7E541B39362C90F016697FC659C9351674F0F458504520AAA804DC69D2D2CE6AA20D0C79312A243492814D0395939F52B5534373996ACAD2493E19A2EFDACC1586D301976F148BFEB9975EBCA0601A803006701C0C79301C0939BB61C1300003E38962FE0ABE2636232EFBA7349AA4828B4B6483F0320A8355A3A95954BFF8BC077F7F4D1829949DCE89077D1A1F42C62779238486D696E6A02CD4A8CA5C696363A9A914B65D5B59488E03211168B4574E6DC794E0BF8E07AE6881262C3480EC1CEC82BA286E6369A1611CC6944574F2F65A362EAB19D30E8435C4410F52AFAA9A8A29642504D81DEEE93E59A2E9D93321AB35C5C9C5ABCBC7D6F6D6E9343848B01C0D62B0760ED33CF1FE3F1008080CF5D73CF0682DF74E3750B6B67A526CF3407407BA79CFE752C0341CE240F3717BA7E6E2AC7E32CE0DF9FC8A4AABA060A0FF24715245114FCFDD98222043E87FA556A646C1CCD981E4B9D5D7044594C0BCAE1785C39FA890C0E4030ABB92A60C29C8C4A8AC6E72BB8CEB3840B36A3A8E8D00068462BE5CA2AB87D8A03408E7636945F5A45D61231C00AE128ED8A5D9399CFB2180AC562D8E5DE0C919BEDB5FF751977DC9807E0D9AD1C05B1C00BF83F82C086B5B555F15D772CB10E0EF00FE44E9C94578107D311E8622E888BE6A791B3A33D1D41B61F86D8F6AB549CA82E9C9D4236D6D6087A36A567E6919BAB132D484DA45804AA0854722CF31C55D73723B3436866620CB938D85326C4361319CFB6970637E4EBE946B9A0A46C80CA7A82A498700AF1F326596535E5155590BD548A40079308AFE516575253BB9C22827C28D8CF8B2A6B9BA8073D45EAB470125D14ED49EBB687BEA7D76030EDC372A7BDD8747CACDF2B320BC0FACDDB00006FFED0C00F0342C037898482A68E3EBD57674F2F7FD1BC99742D027C5479988A8E3753417A3DDC8C945B376F4602B5B4777295910B2D88879B59882A700700CCFBB3C06BD45A647B2C37546A15A567E7739D7014B23F155520417665828EF2107C0F7C8E09AE9BB3039D2B2CA30264B80F8049840EB00A398B751DDDBD14838A08823E94A0AB2EAF6D247F4F5754933F35B4B5C35575522280922221C60384B979AA41FB6AAE7286CC6535180DA6CFF53CD3CEB7FFF305D9B801D8F01C001008CC5400EF2218A0283A5FD30A1B394DD335AB42FCA5F43D9EDCB381047A112D6EB99B9EB1DD46C5F90D1CFDB477C83920E6A725924EAFE7FCFF49F87D37672768413CC7E5E535F5740295C1F83D05C2CCFC7F37ACEA4980548A9E2102C14B8D8FE2BEFB4C5E3195D5D481D27C11F830EA44C0B30B4AA9AF5FC96943A08F079C510D74A59E02F03703A3A9AD930AE198980B8B0DF5E7EE942FAA6AC0732985C13D8D6C24275737B8F7E4311765326ABE7CFF8D379ACD02C0CEBB2E5BB68CEF1F117B14253E973F827E46D251738F86028343E8F58027C82540646A0FA8E25D9CAB505A53E2FEA5749FCBFD08662CD53436D30FA8820264713C023E2F753A32D79DF3F427D003B0AC990337341D995C5EDD40E900A805414B8A8D042011D4D5A7A00CF404F54D6DA8A2508ED3D9DF59D00196F90931A1E487EDE597545029021BE4EB49B1E181DC36F24BABC9CED61ABA10C835700578DE0E410F053505F97A505D4B07F4A7972202BD38BD9854D734E4B3ECBB1DECED0D2F6D795A780900EC36CE989818A1542AB59A7BFDE2EF8542619A19EAB9B0E45D58EAF922B27174A76DDE7FA0453D2B48EFD063CA9B7E90E7DAEB4BAB748FD26D6EB7D38ED6B7E85C4321397F3B8DE625247181678F6308FAA99C02F286A79F37633A37E9C6E8E364761EE9B1B3331362B8CAA8AA6FE47A02C6DF297043B1E89A4BE198CE0038B61F4C947DB08D1C886F49551D9C8F17070E7325E720E656A0AFE991C164035B9A5F520DB7D40E6A72A7F0401F6A87E8CB2AEAB963890CF426177B5BAA696EC76744B0CB7613CB7E3395C3426C05EB6C8F26532010D2B3EB9FE40D0380053F343454E4E0E06087E76E0B6EB879B7959575DC05CA115CA41E7355C097BAD276EF35745DDF1DDCF4E119E90FB4A6E9797D41C221C1FF05EFE569EC1403F3D441F440ED06927F27E15C4E7C542828290181B1E1827E1A1DB20B7A8439E88EC34137AC77E09A31EC6A5A02D6414C59A7CC44D9DACA8AA323771727CA829B2AA9ACA750043411816FEBEC864897E14079DC7327500EAB800A88B02F7480D14F1F7A8582D21A52838622F1395F0F6700D34915F5ADE4E9E240019E2EDCF78E6F5271F4EC67F732DB585B9190BB8B93C725CDE60D7F1C0E00FBC1BBEEEE6E2902EA851136E7DA456FD84AED82CD077D0428220928E8455AD0772BE9797ACAB23D428FB46FA517021EA2248F2863797816DF4417AA4CA8B2A215A736D27D7EF772F6F1FF4EE710BBBD93F13BAB027727473A0DB1CD406530E7331B60F8329A427396955FCCF1775A7C34393BDBA14F28A2E2CA0B3A900C37C4B239B3A0843B5FCCBA644F8835D30159792D79B838521CE88865675E4915C9D19FB00A08863E302A2AAAAA8783B2811678C26E0B26E51C058B2B735B62049EC7E35F0C3E0F31DBB271CD8F00B001EA817313388A44A2207C306EEE75376CB5B777F0E18FA41FDE104086F4089F7BEDA2484D3269F91ACAB1394E0F776CA68DBECB696BD34794E976C0D41092470BD437F21E73584B2AF9F7646BF337AAACB3A6AAEA0729257E36B6C5E37480053A18B67236B4C0C9DE8E9B376281F7F170E3ACA9BDAD0D9DCE3D0FEB5B4B9121FE5C57CC1AB1D3B945A45269383A0A04A7B3D7F3E0A2ECD1F025A00AD8EC692E025F0F816714C5B2BE4FA9A642BC8F05202AD8178E4832EE066C2C20D8462F24AD80E3FDC1C41D04E2F9A7D60DAF00F6A34662B1D84EAD56FB0188E8889869BF0F0C0D5F0440C416A967C87A8D50432D36FDD420AAA33CEB93F460E7D31C002F347D4C87EDFF870CA4A7553D8B0D735377082243CB2E8ABE5E6F4F87D317D3277B7DD10F847353CE2C034F64E553CEF9520A4627CB28492211C13515A221ABA1E89000F41B51D4D3DBCFD15637962CF011086229C49BE908DB06B3A5CCAAE623F065358DE4E705FA090B4085185119B5D01425B6E5476E835C3F8E69EBB1B2DF0087C7513AA79317026F0E80AD9BD60F0780FD00D2810307ACB021473C67991F24B5778C8B4F485AEAEEE51DC1786C24F58C0484C717D271FB3354689349AB3A367000FCB9E9333A64BF97FBA2FB35A914E9FB1659D9CC31C6C77C8B8F6849A99290AC6C111AA78DB0852AB8A41ACEEB47870572DD31FBAE1359055C271C83EE370D816756F324DC505B4717373BCA4ED4D436B45246BE8C743AD04F6C1805797B5021C02A80E8BA39D973226C6525A2F36575D4D0DA4191D0137F00326C12714C31B50C04FBB140E6C478605ADE00D57001B700C49F9EDE70890873F6B3A1A1418C2A605AE0820DFB20F0013EFE81B363E3136EB57770741D493DC3AB8347B512F87EBBEF69B9FC510E80971A77D1F70E7B886FE2D37DDA140AF77E83B22B3EA294B075A4D647187DDC5FE4F7ABCB492C7E9D62C2CF524D43347576BE408A7E6F3A8E064D060E67BE9E75D24A8D9AD201461DAC6732BA59E6745ADABBD0CC9DE72C6A22783F32D80FFD44239D83805BC14EB21EC1155A520477C47A02464F11013EDC3E8FCF460E5C1263327FFE805DD6C226FFF47ADD00BF0F04993718FC1F7BA78B0060B9EDD98D3C733674500F848E8E8E128542610F5A726340E0A5A0B8C4E45BC2A3A2E74B245692D128A95FA0268DC18636F82CA7ED0D5FD0FF3A7E4922A398EED12550A8D75B9453F901CD08BB9F4A1BD7918DB8C33477C6173C6F8F8E21B424A22FFF398BEA1AEEE64498CDFF1FCFCAA54A74B32CA06CF6B4A75741E910EA46F87736131A0F9098BDCC845E308A4944150478B9711D30135D0FE70B222C81BD9CD8F4C3704D60DFD1D7D747FD2A25E87E38BD8C04C21C0DFD79F3533C8B9DF060356467678BECECECACD9CFB9A0C43CB0DA4F2AB58F9E3173D652DF80C05854076F58150CE9110CD8FC5AD747E899E677E85BC7CFC9CA684D2B747114EAF936E554BDC70150D2B891ECAD4BC8DEA6886C6CE38D49D3F6F0454235E517CD43496FA00A632F9D2C3B4B9DE97CCEB2B2B92036D39A7EB680D83538B1E1C11CF7772110A77364D00205D7C445C1153130B20BCBB98027C6849023FCB7855391979C3FB8E4929861D96F2405DC5B5777CF85C66A28DD580060280D0D82F1E2739B78639E9264402C58B04000A4D9CFD0DAA0DC9C5111ECB6FE8080C0E0B4A4B4B43B5C5CDC3C87F608438742A020835A4ABBED3E261B839496EB6328C4F35D3A57F52E074071C3D3E4602323A9551955B7FD819243D75249CD76BD343840F8B6E4552A8D3A4D482EBAA67909DD55F528E5645611BB193A1C34331360E8747AF409326E06343E32849B8696C31165A23356AAB59C15F571779EB44B5DD81C554B5B3B69900423036B09084B3AF0F2F3CF08062FFA1DF59CF0202D25252509A00D121B1B1B29DEEF8AE18D11989236FBA6B8E909D75BDBD8585B9A374A179CA2064307DDAC0F0400EF0180B739008AEA3793A36D0100A80200AB2839E43FE874E97EFACCE715D2863699E47E7517B344DC2DA5EB773E4E37862C40972AE14E531657D6C08A067055A0D5EA38FA61F33D4C1B98C71FB8F777C499B1E14098BFC86B78F66B21AECD2DAD5CD673011C0CFED06CE7F12F713AC35F1B0E44C6D11FAC8F1D3BA6E57ED3683C57450C00C1BA6521BA652B6CC41E0D8F3B96BE365269E4BC05D72E0B0D0B4F100A85FC41911E0A066B2BD57A197939EFA0DCEA37390064F55BC9C9F61CD9486AA9B67D2500584DA74AF6D3DBEE9B29A5FF1A92B86B4DE9B1BB79D67D8E745FED1F29C534939B9E66A72B03E07266A12F608D0E3B27500C918D41871B0FB7231008C631893676F6B386AE1519DFD4DCC2BD365444870360BE124603E0DB7DBB9D5D5C5CFA8E1E3DAABFACCB5206F5A1BDBD5D848182B071C46A464BFE7EFE8129F3175EB7CCD3CBD3CFD2249E91DA48DEEF844AB81B006C23676936598B1BA9AE630525063F4619A55F7300CC522C221BA394F6BB7C40DBDBFFA6EF53F409D0F9F258773C27791AB93A482947568E5146013E9E340376D47648236518E844270404D6C9BBBBA8B2BA96D46ACDF0AC1EE166CC57C2106046BC863EA151DED1F272E1B9B37BB18D6E76D5DD842ECC6273478C9620CE4C1F6CD1B039335A62B615227DC38CD4998BA5767652B31379DC68A73EF4003CDE3700A786EA3B965162D0139451B68703606EDFCD243149E89F4E1FD3A6E61D94917986E2C342F4B393638485A555E87C65DC69CDD9A802768E792C1B39DE8BC4FAD16394555452875C7E9156CCF2FB082046D301B61E34A7E96C6DFAA15426FBD468D41523564D709A8ACBAE0073FA30685B954A25BBD9D90D20F848ACADC36E587CD3F298D869A968A605969AB70B7EBC8FD41054B1E01D6A903F492F5B6FA439BDB79000BD037350EB5B5EA7E3C7D369466A0AC93BDA4D3D5D7253725C043FD8D7EBF26DA485D94C1D34A4ACAA9A6AEBEAF03A8D4921A3399D1140987AE41D05356525BB954AC57984AC16DFD7021AEFBB2C0D180F2DE5E6E6B2A96C6B3C750008EC2760FCFC0202126FBCF1A6157EB04D969AB791B3ADD877D283AC7A750A6AE7B55294249A9AD0BD7201C7BEB206ABACAC5405132816084582CBBB6674E415D706AAAD6FA4A2E252D268B5E310D14B2BC112006A557F53634DD5BEEECEF60C1678C4A30546A64BA552292B2A2A7483BF6F3A6957470FDA568D4623D26AB5B6103127ACF2C2F09F3377EEF5F3175EBBC4C1C1C9C15C373DDA6CABC0D2FC93466394C98A347C91D88A7DFDE55E6DDDD121A79CFC7CEAECEA1E75DEE6127E37AB033FFE6DD4E9156D2D0D3FB4D4D7FC0BEB6BF07D0DB0F09DA06905FA2A2D327FD87D06937A79BA39DB0A305CF0E5DE1821B7DDB17479524ACA5CEEE6080B9DF458137F17336F00C48E8E0E5D6969994120B6B21A0FDD309ECFC9CBA7AA9A5ACE9D5D4A1D9681184D07D80D1CA09BAC96BAAAFD087839E25A8F636EC5FA5E8542A196C9647A7337FCFD2437680CB5ADB05BECD748ECB153EE58EDEBE7E7177FFB9D4BEF0E0D8B881C76A267E41C13EF4290C70B1468495DDFD82AE009F82273D9AF37E829BFB088720B0A49AF378C8BC32DB999914028157D15ED8D35FB950A45FE00DD3423C9BA241289D2CDCD4DB777EF5E8B97B9FFA4B72899B3AD00C203FD82FFAC3973AEB971F1CD4B5D5D5D5D2E877A4603831D64D6D96C75578F42823AE70F4E1FB06C4F3F7D869B431A6BBAE0D2205B06C0A0D3C8E56D4DDFF575C94FE2ABD9BD668D5656561DE07905B25F0B9B6918EB7F6EFA596ED263B615FAC067D31AC8465B88F4A06D0D5AF1FBBB97CE9A33F75A6B6B6BF1E550CF68A028FAFA0CA732CE68ABEA1A25DF1F39666AEBE8145CFEBC8D251D60401B358AAE8E93F2D626C6F35538BE3A1C4F2BFEEE198D6EFEAD77499AB3AD58E58A9DF6F1F2F1895DB9F2BE7B626263E2047CC4EA32A86768E58CFCCCACEB166B551A9DD8B2971FFF0C26B724BE51ADEC91F5B4351F4453C56EF0AE41FC18DDC8D97F9FE2EBEBAB1D8D6E7E11F7090FB5AD6C5A839D040225B11FCEF39B356BD6DC3B97DDB5C2CBCBD3F3F28479E4B810BC99D7DEA055AA470060CE4E8E0300834EDDD4DBDEFA9D56AD3C87F5D5D8EF462CDB91480AD08E663C74F38BBA517BA86D4526B1D956665B3D3102EFBB6FD51DD75E7FFD0D525BA9F5B0D956C1E8811F36FFC46E6CB86691B61F15309688F2863458239B2E93D1A050F5C88FAB153D27B0C9AA8166AA15FBCCDC8D2A2121417FB959FF8BF9A982A1B6954D6BB07B88215E2EAC9B7677778F5CFDC8232B1312935250213C4BB3AD664F8F5EB0853463C122AD52A3158F3D6F634607783CBD56D59BABEEE93A846057B0ACC768C2DF72504E3F1C8E6EA4A7FFD501604E1FD88561CCB6E240D9D938DF3973E6CCBC6FD5AA95FEFE017EE3A59EC147CA82DF818234E28B6E661CF336EC3D469DA65AD3DB75D868D0C9900C95E8651AB08B6DA0CC5E18098E6E2EE717557E35BF9632D4B6767676C2185973B6152FF93FF8D0434B6EBEE5965B1DEDEDA56351CF4500E65FAFED576BC596663047026032EAE50665DF718356758ED10DEB64F1D966D8CA6E08AC12C9714574F38B076034DB8AD55E68EAC2D7AC5973EF4CA835A88A6F897A8602D0A7548BCD77B53F56028F67529346794EAF529CC27AF60B5A4C641B50851D96A610A6340023F5010190000C36DBCAD9D6B4B4B419AB573FB22A2C2C2CD81CF58C04C0F2992C9E916FD0969BD4CA1300A17C20EB6B27EAE9A71400966C2B56B1D956775093DF1F1E7EF8A6BB962D5B8ACA7030F7D9410006B6338C868426438BC0A03E6D32E88B10834A4637AC93BD124F3F2501B0645BD9FF7EC46C2B4009D9B469D3BD786D01FB65144B00B0070340482685D0A4CBE11B75792CE371FC6CD4E3EF76886DEFA0A7FF29B3FE57098025DB8A8C65D31A3EA9A9A9094F3EF9E483515151914300500300AB818B6075129EBE5460D0666133D51895C8F85A7CFE2715D9290580A5698DC18BC85015BEAB56AD5A74CF3DF7DC0D5A724E99FFBBFE3EA5CA4644867A31E9B3C968605453F5738AEC940460AC8BC890C941A0A57B5EDBF19E7F577B4BB1808C4D38CE4616788C3A34763F9BC84E69002C5D44C66C2BEB1F1064D643D86028D9F4013B1FFB738BEC6F02007367E35005B600815D48C640D1816AFAD8CF8FFDDC22FB9B0160E4D938E88300C116020C3E96462CF5A01B1678A3E91774D0530E809115316495C9F40B3CD8FF077745D6E4B1A518C80000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (11,1,'Crypto-router_symbol_(128)',decode('89504E470D0A1A0A0000000D49484452000000800000007F080600000027FACA070000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000261D4944415478DAED7D09781BD775EE9901402C240812043791D462AD14B539B663D9969DC64B9AC475DA24551AB769BEB85F9CB64E9E9B67FB392FCD4B6C377DCF4DDCE43DB74993C64E6CA771B3D5511CC7892D458BB558BB288B5A4891E2227127C19D048865E69D339801EE5C5C8020C54D2DE6D3D59D19020360FEFFFE67B9676624555561A196A79E7A4A7EF2C927D5871F7ED8575A5AFAE16834BA6C7272725C96E56EFC73EB515CFC7E7FE8E4C993117521BFE87FE2455A88F3FAC0030F3856AE5CF9B0C7E3F990C562A9743A9DBE8282825CB7DB0D914804FAFAFA606C6C0C46474787900CE791186F9C3A75EA7BBDBDBDFEBD7BF746B2B05DC304F8EA57BFFA3904FCE1E5CB975F77CB2DB7584A4A4A40511440A0419224ED35C63691E1C2850BB06BD72E181F1F1FCBC9C97979C78E1DFFEDC48913E12C74D718013EFBD9CF96AE5AB56AC7D2A54B6FAAA9A9B1565555018EFEA4D789BE4F381C86BABA3A387EFCB88AA468989898F8F457BEF2954359F8AE11023CFEF8E35B7D3EDF4F366EDCB86CC3860D8072AF8D76FA6C9477ADD1BAA102AC1AB0DFEFCC9933B07BF76E4025180A8542F7A1FF70300BE12227003A78D7555454ECC3515F45E0A3DDD7A43D180C92AC6BB69ED649F66D361BB85C2EC8CDCD053413DA3611C12003820EE817029A00407FA1677878F8F6A79F7EBA310BE32225C0238F3CE2C5D1FE7A7575F5D64D9B36416161A106624F4F0F343434405B5B1BA09C6B403B1C0E1AD91AF0797979808A01E41FD07B68BF4182FEFE7ED8B973278C8C8C10518EE3F16FFBCC673E93F50966B858E7F2E068E33F8300DE44F69E3CFC40200057AE5C81C3870FC3A54B973479A7FD086E0801ED42A02524841D55C18166C183231CCACACA342210418804A4106BD7AE8563C78E91A978576767E7C7F0A35ECE42B9C808F0E8A38F5621589F282F2FB778BD5EC0F81E308CD3E49B1C3A0213F7FBD1C13B846AF0DDB7DF7EFB2812204AEFC5FDF977DD75D72308FE87F175CBC864949696C69580D481CC04AE5BB0FFDB175F7CF1954F7DEA53C12C9C8B880068D757151515AD40FBAF3975434343505F5F0FB5B5B59AEC23317A11F84FA1677F10657D82A23F23D983C08E20511EBFFFFEFB5FDABC79F30BF8FE2D14311091ACD6D857B6DBED94272013B1A6A9A9E97ADC75380BE72221C0534F3DE542DBFC97EBD7AF77916493938752ADC936D9FFCACACA0934018F628CBFB7AFAF2F28080589086124C21904F99328FFAFE37A1581AF8F7CCD749003893E83157D8607B30498D922CFC541FD7EBF1781B985462C81454091C377F9F2654D0DD0E33FDBD8D8F8666B6BEB64BAE3200F945FFFFAD7F5F8DA7FC66328A42244263A26398A742C722AD134DC86A4CBC9C2B9480880C015622B21D926800838029F3C77F2F871FB0D94EDA10CF3FB91FDFBF73FDFD1D1D14461231180F2064400DDD450585989247067E15C24044050D6A38DB613504400F2E6DBDBDB35B0707718D56027019B219954741A270606060E1BB903722889486412F40492134DC9C62C9C8B800028C556B4D937E5E7E74BE4BD53E837383808DDDDDD5A0208E57B18B7DBA779D8303A8A7BC8E9230210A9885C141A528F7E8184EB7767E15C1C0A6045395E46CE1A8143809103482AA02773FA4924A639BDABE2318E22010244282200650E8900D4EB2AB04E32B245D96541098058C8A564FF69C4130128FE27D06841520C846976679A4B7373731712C04F21241D8B8E6D4C26E9B38715DBB76F97B3902E3001D05BA75158A0E936E24CF69A4840EB345211AC8091F0998653A9A28228E803F4D1F10C025014601000077F694D4D4D560116831388E038087072DA0830C373D7C19A44074E99EE31E93D78AC7EE3988602E8A42202E4EFDBB72F8BE842278230D45371643A28E4A3914F2120D97F024C6F93E8D14F7B060A5543C1F7068CE9636A06017412E43CF4D043D9B2B1852600CAB382A3D146C0934F469E3B3552046A086268260A80219F4ABE83110150336A07743361411F204B808526007AEB9B7C3E5F0129008143E093E7AE834FC06D5AB366CDD7EEBCF3CE100248F97F220C1122CA6EF37D6565A58CFEC52ACA2AD2B1890806C128278066C18A21283CF1C413595417820077DF7DF77AECFE0E01FB08DA6989649F24DA700009245DB2AB11B86A2362632337233214F54426B2FD7AB1A84600DA479F4321277EA6ADB6B6F6BF23B1EA512D2EE267B6640B48E78900F7DD77DFEFE349FFB2EEE85DC011BFE2CA952B4E8AD3093C9A13A032309ACE9D69010ABD8F1484C027C0693690C84361A1AE3454DCF28FB84F753A9DC76EBDF5D6167CDBFD5988E7810078D24BDC6EF7CDE4A8210986A9E1081C217B8F6D9852B6E8A4E52140767CB9933CF6E9462006D8A40034EAA9728880A7631329481D5C2ED7892D5BB6F83C1ECFCDF859D9FA8079340111042382A03850EA8B69A433925F45CA8004C02E1AD049D1AF878756DDA1233B102F4F639D3B7D5D95620B6DAB7AC68F7AFA0C891C4404DF5D5D5D7DA31E866A916316DEF9234054CFD700DB0844220235248505FB3C831CFABEA4F599FC9D88F0D8638F0D23F01EC6C46409308F26802EDD527802889A91BB9FCD6638926C8619F765EB03E6D3041804301CB6546DAABFCFE43D3AE0942882AC022CB009988B119E0941C84FE0E698B20A305F0440272E82C0A75480B95005FEFDE470926399558005F201C83B9FED519DE9DF35B4D119A4109159B204984F13A0C696590378BA0D1540D5C33FE3F85913309F0A10B300736FEB53FD8D1480F301B20A309F51009F0798ED113E55A3CBCAB82820AB000B9D089A0D6730D3F7D8ED7629AB000B9B0852E762D4671A56A2092005A0EF61FC26AB6478A6D965EE093053F0674B15AC56AB1CC205BF4BFC376DDFBE9D54209485797EA28079B3F72255400590A3D12881ED32488261619600532CB352148AB63792CA0798ADC4101FF70B14C082C408B3E44052641DC1F920C0744DC04CD2C553BD871400B8CBCD3032C83A82F34100AA05982F6F3FD53E520012234E99B204980F022000D1AB8D00AE56157402443865CA9A80B926801E6A45AF760467AA0AA9DE8304A0AF62BAE2089DC2AC02CC3501C8F3A372AF9928C06CFA02341BA89797671560BE15006D2D9D78693E337FA2E9605C4C04C07D5905980F1F80AA3D1108693EBCFD54EF111100F76709300F0490DADBDB156364CEA65D9F8E2A10018C4AE2AC09982702E8E5D992BE2ECFE7A817F900C493AC02CC130174F0E9ACE7343636DA100479AE62FC4CDE235200C84E094FB9586708BCAC377ABF0B623784905281361FAAA047017C822AAB00B3490092791D689BDE9CD80AB195D2E5D9C62DE067CBAECF80001217A26609305B0460463E9D54873EF23DD84AB055910960093017E5E1E94891350173AF0086CDA70B3CDD3AF85E6CE57A93E77BD4F397A1F13E0DAB005BB6DD695555C5A52A6AAEA2AA2E6D9D7A6D5B5B77E27A08D727703DD694D8BA626CAB6AB0A3E1ACFA5F8E008CB4CA3A0148FAF37412D095BEB9E3E3E37E97CBE5A30B3D71F49339B01A57EFCEA52A501D60FFC020345D6A86D160D81B0C2B1051E849240A4C46A3FFEF5D77DCFD2D04D2852FB625BD1F5F87800BD615BA7375F23ABEA874E5BA00AEFB71FD32F6D4DAF45E6B782EDA86DA5B47AE150264FCC008DDFEDB75C0BDBAEDD7EC3FB6327D3D372F2FAFB0A8A8A8C4E7F39517141494DAED7617E5E9911C16FC1BDD4452BBB4DBB8C67FAA0B3F8D9EC8E41F1C868EEE6E68EFEC86BE8101F023F04343231055A21A80084A0C2C2180CAD480A7204182B8B84FFF9CD87E765D616F58358CED327EE73AEC4FE0A93B21CB52ADBFEDD2D8B54E801CDDF6BBF56690C1ABAB815327894D3717A43056B7DB9D8FA428C5BED0E3F17891041E043F8F52B5440E5C57911C329244C67519FF2E836C91039361189B08C0E0C8180C0E0D43587BB6500A205902B0A019C0C4DF97211984E4892B81F9582613669C2F883FEE466F0A9EC27A592304365923C6E9CE8BE702D70A01241D50C309644D01B55C7DBF4D278A852181B12D33BD66AF9100560FB1C2575C525C5EB1DA955FB0CC96632FC193E35004009AC14C00986AF4C75ECF8D5EF6380253C01229F93822DF45D5815739A7496381800CB2B14EB7C4DF8FA4785592E5575BCFD65E5EEC049018608D519EA3373B3BEA3902B0DB71021495947957AFDF786BA1B7F836BBD3B1014FB08507337EE25311211D801C013219C54202F0801BEBFA90D7D7803D95898054075DDF29A56FB5B224BF8AFDAB176B8F9E5E5404E04860349923852C68867268AFABDE747DE9F2D5EBDEEF74E57E004DC08D382A2D71FB9A0180199120C9794B72E638C005441082AE8D75F34DAC0C2224620F2327160F9D8079F2598C0C3155B0586D20D1F313A2110119E43654861DB8FE2F678F1E685C14044811194882065C2FFFC1F64FAC757B3C8FE30FDB4E5142ECE401141478A1B4A4184268EFFD83E8D80DF64344BBADEC54244821E753C8786A2967C1077D1B7479374820204022E68C1341E26480FE773A73F177964179F912F0798BA0D857047DFE61D8BDEF0D08EBB7BCA3D7CB92C42B8582FB5EC3FE9BB507F7EC5F3404988210F1A1F0E77FF9375B90E57F8B1B1F4110A458F58E1DBC8585B07279156C5CBF06B7656D544411A4C64B6D70115B5FBF1FFAFDBD18CE8593CC003FF2C5044800AB4C27D914977701E8F175C6DEEBFB8CC58261AFC75D08959555505C4440FBA0A4D807EBD7AE829A75AB713DF6149571746EFFFA912FC1C953C792FD04486922C881FC06B6FF38BAE78DC8A22200BF3CF8F92F6EC593FFBFF0F8F792474E0E980B4701B1FFFACDD5505652A4FF28E07E746C9BE2F8F30D973432F4F4F521217A201A090B46B1C2012E2044A6A0EBA33821ED3AD8BCBD5763A3DB6177E088AE80125FB136A209ECA59515B06563352CAD5A02F63445C9CF7EF72578E1472F69A48E8F78DD449814C0301B9AE308467F19FBAF1EDAF9DAF38B8E007FFDD8970B1194E7F0B81F65E3647211BC28F7D72DAFC091B0124F9E5DD38A38F032FF83132D1C8942DDB98BD0D0D4023D3DBDD0DBDF8D04897080A7B7E162C0811BEDC9CE9D4180828222A027A095E0A8F615D1432D7DB0B17A0DAC59B5020A3CD37B5A4D67572F3CFCF857A0B9ADC9EC1C9AD6138321C97904FD7C81B41BB71FDCF7FA2F5A1605013EF78527B72108FF4EB7865314B36D35B6490D725D799A0958B37239AC5BBD1CA8A0572479B2605F281C815367CE43C3C566E8EAE94132F4306488D9EDA2421F783C05D0D4DCA07D1EA85C8A19D2387786A49B8800E0C92F40B0D762BB0EDE77E7ED50BDE6BA199FA7A7BEF6CFF09B375FD78584013E3622E220430AB300E6B0721CDB17B17D6BD78E9FAA0B4280CF7FE9EFA916E04BD89E40102C2CE0FCA834A78325C877E7A359F0C2C69A35B06A4555FCC1D18639908D98594E26C6E464088E9EAC83FA46244377B7E67EAC5AB11C3E70CF1D50545400FFF4DD7F43E5389DF84C1664860C90960090907D8829C1EA55EBE0B39FFE3324F0B2699FAB93B5E7E0C9A79F01FF507F0264BE1790210978CE4FC0FF0E62FFC06F7FFEA3A67925C0634FFC43199EE01FE3717E8FF7A8152595979D3C2F20491628C4515B565A0C376EA981CA8AF2B804B24A602648821013C190F6191E775E7CFF64280CDFFCF60B70F6C2199303191FD91C01803109091F2FB6EEF5FAD074D5C0873E7817BCFB5D337B3E151DFB0B4F7E1D8E1C3F6C063D6EFB7932E86600A40CFD04A91BDBB65FFDF8C54BF342802FFCDD3339F8FE03E884BD3BD9DB663CF6344430D970DD67B05A7270041741657919DC72D3E6B8E79C641E900C2633214B09C5D0C882244062FCE3B77F8024A813938021030BB8D1FB7CA528F76BE08F3FF401A8A95E9531D05D3DFDB0A4ACD8B4FF57BFDD0BDFF9FE0F20140A1A0902A34B069E053AE57A729611B75AF03C6CFBC50F9FEB9C73027CF1EFBFF11D7CFF5F659645E31520D56B20A12074E3871C0794A277BD62D952B8EDE6EBD1B6BB937D030378D9500B9921494C099E79F639A8ABAFA307D49AE37B9E08B19302BEE2320DF83FF9C8BD70DDB2CA8C81DFB3FF08BCB1E700B4B6B640C5920A58B17C29DC75C72DB072C552F8C213FF000D8DF5A6916F801A5781A43E06320B38EF2842B259388BDD7B7EFA83EF0CCC1901BEFCF4B39FC4F7BE94DEFBD6433460A75FA739E5ABBFD7E5C8431254C1C7FEE8FDE8443A93154136E7DA65960CB81E42127CFDD9EF41DDF93A860066FB4E3E49697129AC5BBB06EEFFE8BD38824B3207FEC011D8B9E720462A1763239C498A381DB9505A5A066D575A92F2C5F15491C4640D993E250998B019B8305ADF3E42E6E0E5EFFD5374D609F0E433DFDE84EF3B82003B85A029D38FC58D491552066374929FE02D2C42676B05BC77DBBB213FDF9D36429053388B86A9980C85E06BCF3E8FE6E02C7E0493E9C3D355E22B810DD5EBE0E338E28BBC051903BFEFE0317813816F6A6E84707892CF059A36A524E053806F02998B10985EE253CC9C99C0F6D197FEE59BBF98B59AC078B6CB223FA155D0E0886193308A1E5629526CF44BAA94795C0E46658FD1DBA020DF035B36AC03373A761D9DBD3030348AA389EA0372C061A7BA012BE4E4D8D14C58E93B31A0CB8C69489C24CA3DFCCFBF7910BEFEADEFC3F90BE74C8EDFC4440023891ED8F1FA2EB8FB3DB7C2F2A51553007F1C76ED3B08CDADCD108EC4EE4161B5D978CC852C481AF5714790DD2F023C31F24DA09BD64D7EC1E770C72F6655019E7EF6391FBEA753A1722B351349575280AEDB7A601232E92A849584876EC1114D2957ADA75A4089B665741EAD5A0512EDA3DC824D7B8D45DB47DB5A8F7F2365AA7DE73C0C8F0DC625396E0AE88E63762754942F41DB5F05EFBD7D2B9A9E8A38F0070E9F44E00F414B5B0B4422193CFED034FA25300F7C894DA527ED17FB04900474FA75A9E65FBFF9BFCFCF9A02C816CB36AAB5938CF06DCAD12DC79521391123A75002C8607F14475E04426176C246B49ED8C74EE0683795D0CAD512797DE36F8A1281CB1D97E1727B1B1C3A760C9620199662584A2AD47AB915A24A443BC954A9A4A6C73DD5BC89C00F30EF4F10426C164CBE417A02FC15AE3C3C6B04C0D1B57CBA397699CBBE09D50032D8C79000D8BC3DBB1FCCE01B402FABAA82E19151E8E9EB650087A4620EBEB083DEDFD1D9AE35ED545B2454119BD9999B7AA64C6812CC45EC9CDD17EE4BD7A75CDF34AB3E407373D31DAB56AD49025AE17A55083AA49C75330398E2BA418E14A22AE438A0E887E458ECB07AD50AF8FDF76ED36C3A9992BAF317E1786D1D34B75D81C1A1C1F8C4250F7C34AA421946042E97039D3B549B68589BA0A2B4733442935B518844E9398851CD144463B5807AE246658D7D922EB00027178F24FB04E67DA9B745BEC1F0E0C0DA5925405757976DEDDA6A731E1D6DAAAC03986AB48B4901422200BF3DD59C3C93BEA5AB549D760754AF5E09EF43E0298914375FE8336C46A7921A55139F387D0EDE395B8FF6BC1D4627464C36D96A8D45319FFEF3ED50EC4B1C834844F31174534A0A2D437A1F0C4E6A8EE4D8441026020108E076507FC22911C620D0C4F804B45EE982C97000954432178F70C0B20525661F201970B6D804A4C4BEE1A101FBAC12A0A3E34A3F395B6680E534A08BE49D051D84763E793A563C279FB0DB0AE4B9F2B439F77B7EEF1670E7E5A6AF8747B3B0F5C6CD5A23F05EFAE9AFE0424323460E4A5CDDC70363F0DC0F7F068F3CF400381CF638891CF61CAD4D6721A2BCFEE65B50DBD98DE8844DEF37016F025C448884B248A2F090731407FDFDC15925C0B9F3677BFCFE7E282E2E4969D745F65B28E18C1D4F0D7A42DA690419E7C42000ED2BF47860D3FAB570C7AD374E1B1832096FBD7D1C1DBE4EB0E518956D894920FFF0203CFFA357E0A1BFF8B8E8CAA38C9653EF5C80575EDB0981C9092D4165DCBD4EE2CC84C9096481E6404E992D0476EE20F61BEA4E1D1B9CF53CC0E1A387E0C37FB45D5C50C1839834FD2A98834F220167CFE93FFC417FFC07776AE5E1E72F3643674F2F9478BD5AF1054DCEC4EE1195F972BEA109F6634877B9A38BF40363F818F8A2B0B8BDA3137EBAE30DB8FFA31F9C1101B66C5C0B76BB0D8E9DAA83CEAE1E181A1DD5AAA04460B3F303291D426EFEC00C7C2293D8547F0E0607FCE15927C0A1430760FDBA1A58BF7E8358CA33250264B64E8F96BB71530DCA7B6C3266DBD61BA0DF3F08DE42CFB447657D630B1C3A7A0AAE74766944B311F0AAC5880120B953B5B374AEE122C6FF859A799976E88CDF91BE3B3572162F3434C38977CEA13FD58BBEC7984E5E33F0AC7368023A891C821EFF1F1D1D815DBFF9E594DF6D460420705EFEF10FE1B147BF084545BED42555A239780129F869589E00E5C53EB8F3F69B4DDFC1575438ADEF7CA9E5321C3C568BA3B91B5449CFDA992A7A5526B2534D45BEC6D6E113A7A1B4B80836D5AC99F1041A25AF3654AFD21A119BC870EACC05E8EEED83B1401043568BC90F30397D02FF40347F4024DBF9DA2B109898981302689F450F847EE1C5E7E191CF3F8EB6D336456D1D089D3F91CDE7C960C11372EF3D7768A9DE992C2D973BE0C88977E08A017C0E07BCA8AC5B85E4048FCE0ECAFB7B0BF3A1724959FC4F0383C3701AA3891B36D780273F6F3A3915D8B07EB5D6880C540379FA6C03F4F4F5C30446107622A9281AE0E60F7827F1EDDDBF85DEEEAED9AD07D02F0D0357C992A751D21E275993650BDC70C34DF0C94F3C107B4A2870F576023B9FAEEE4EE59338C8E4DB6FDE021BAB574F1B788A0AF6EC3F06A7CFD5836CB52457F072D5BC49DB712150794DD0E6141EF8F81F6ABF79CF81A3D070A90DC291B076F24B7C85B072D952B861CB7A6DD672260BE516CED537C1D90B4DD0D3EF87108692C65D6F85E0334EE2F9B3A761DFCED7615C7BC8F608F6A3EF60C8BAE5AA0860804FAB3A01FE874100EA972E5D067FF1C083182F9708490049EB7C554E7271062594565496C13DEFD93A63B9A5CFECECEE8177CE35425B07C5DE21C06F6D22417C1E80035D4D22827971615848F9000287BB318976B1AA55B22019BCB0E6BAE5683256A3139833433244E0D8C9B3B0F7E071C8F3E4C62AA2809B37C07F5124CD892307E07CDD6918D3809F05027057026957FAB88ACBFF8F6CB13CC212801A5DF1FBF18FFD29DC74D3D62429E77D0048458C380100721D39F087EF7F0FCCF47ECFC1C9100C60C4D0D3EB87A191314DA63BBA7B3593629C409537F20049E4E012C3D3FE1E040CE51CCA7C45B076F572A85EBD22E3888542DC03474EA16968A6E2486D5ADBE404EAEB63232370F4D05B28FB9D3036363A2D02583319F590B81F9055259759B0D033FB7EF4F24B70B1F122FCC9C7EE47C63B920B2FD3128099919354D876F3F519814F77AA1F1D1B87DEFE41181C198511047B68740C1DA02004C361CDE9328628913431C879585501E82A5C05F6DA62B3C67E43FFF0307461D879F8E4198D0C356BAFD366195345311730D43D72B20E82A130D81C39C94EA0BEDED57E19CE9FA925A0D30EE4544F4EB16600BE718127FD123B9E88B45A76E2C451686D6B817B3F781FDC78C3BB35E7842580287FCF1360DDCA2A282F2D4A1A0D816010FAFC4338A24791DD13303C3A0EA3E3014DDAB5DBC431F22DE1B6C36231397062E0B9BF73AFB94AFC4D9EB341863E54A39DE89F506D431946151BD7AD8425E525DAB9EA1F1882BD078EC300FE46BA3782C369155E6A16084C403B9EE7AE8E2BB1D2F7A9CDB89004D634E0CB60BEBCDBA13555B54FF56194297C19D5E0CD377F03EF7BDF0734B340B2A70AAEB0E1C951989F8B76B30AC322BF06F0F0C8388CE0081FC7111D0886B4220F76FE5EC2E8C0213B12E2ADF232AE32BE1C7F152F1B0D4C21F6575B3ECF390A36BD78A4C73F0CED7B8F82CB6987FC3C1774F70D400E3A99AEDC5C61D5501815C1EFEF037F5F8F26F719724FCB0B8A486015D87C1E7CE33E00D4DCAAAA3832FDCD03037EF8D9CF7F0CBB76BD0977DD750FDCB2F5B6D81CBAA81A575FA7F2EE37DF3A192BD432A907B2101D2953C9365FCC91E17A32F03C51521A0298521AA4A96A43A4A4D7C64C9D04A38110E4BAF3CCAF65AA868218D78F0E0FC26470DAF7949021761BDD291540E264DF009F665662378652D569C736C3C343F0CB575F813D7B77C1B65BEF802D5B6E8092D2D2B80F9038F9B1DE962327EDE78B39D8A454E6C04352AA571504FDE27070161613F6C97583FC3E99CC18AA0149FCC4F818E837659FC9A7CAC6AFD0EFE4A6261180937E037C870E3EDDFEA580149AEEAC35D3DF4FCFF6DDB9EB0DF8DD9E9D505E560E9B37BF0B366EDC0C65A5E5602ED386A4C28E94644861E3D534B65F480C412A3879B067E81426612BA5799DF9AFE41492ED27279AEEA144612079F557493B03E7284F02AB40FA8DBB79E430239FC0D7EF05A43A676330F4F4F6C0EF76EF4455F89D5632BD0989B0710392A1AC2C05F069F625D9789533EBAA500152D9FFA91CC2ABF503A4A4DDB1509A8A5C296434C2EB59D41D2B6302A22213C0C6FA164EFA3D0C018AF0100E98E5A5AFAF17F6EEDB0D6FEDDF0B5EAF17962D5D0E5555CBA0B2B252538744ED9E481978E78EB7E582D725A39F76FF4CFC41494A9FA052F519CEF8154E7A9B83C5204054FF51D4144305ACDC0B8D7BFFE440E20650742730E396700599440157B30C0D0D612C7F86EA0E627268CDD154A1B272292CA9A880254B2AA10849A20A0036DB7795034A15029C0CA63A05D0EA34CE7B2C25AD55054523B1EA66ED2A0449B3EF3293A398C345D2F18CEA2A608A19AD9CFCF30A6010C0686E759E6FBF4A69D5AEEE2ECD64D49E3E19ABC87138A0B0D00B059E42F014148027DF03F9D8DCF9F9DA35040EBB33A5D3974C8CA9F6A72705814AE561541718033AAAB5D84D3194B85D8F37FDFA85795C8CDBFB525D40840D0B0D13C0CB3FAB002EDD0C30B78253ADB0C04B2814D2CC86DFEF379F5CBD9113E5761319DCDA5D3C6CB89DA3DD803247FB1B4D05DBACFA3504DAB502B15ED54123D229D1D8BA92E23E44D14844CB42D23E8BE03BB069F2055E8C9B7BB337F152443E0070593F23F9E3D29B534F042DF82FCA640285424FCA851B40C4AE1C8AF53C40A95BEAD758F4BF49F2A23F1D5130DFC54D62D33E322715EC73000C12B0CDA62AD13064976B69E9E346BFA914594E9338B0089A55894483D9737AED2C68AE3A78D079072195D7A38A5CDE682838A2AA4A247B6AAF1902EC4917BEC81CE80AD3A2BAD718318510AA1A8D06837DD9537B4D80DF828EEC1926099434A865C1A88FEA214348EF27F516D25B647274A855894627B3A778512FE1C9C9E03382416C22812C18F91106F809AE6944C070291818ECAFD7AE09CB2E8B72090426BE37190C9E3106AD8000940854790530D84240D39CE338367AC8C1A8DE8FEB44084643938381E181E6ECA95E7C4B687272AFBFBF8F6E0C11D4B1349240C9994062819E0D3494C090FF091D74A79E0FC8D143C37838313936D26E7338DD8EBCFCD2EC695F343990D6F62B6DFF57C72FC098EF2898E7034C89209573FC26F5BF8D31C01BB38446A8A8B169ACBFE73CB985B985454B21FD7D11B2CBDCCBFEE18BF5E7BE110E87FDBA5A07040A1097FF380152A84010CC0F7A309208ACB3A8B5F1C1FE8BE16060A0B06CC97A59CEB167A198776F3FD4DDD9F1C2A9134776E88376CC30D59C0F90140558056160844B08494CB4C0021F6698150E05C6C37D979B47BCE5953568127C5958E667999C9CEC3879ECF0D72F35355C60FCB454A35F6147BF89008C0A182490F50318B2AE708EA21116D26BB489220A0DFBDBDB8EBB8B8A9717F84A57CA28075988E66CD4477ABABB7EF7FA2F7FFEFCD8D8E800073C6BFB4DE0F3C7B1720755F4D230C30C0097405098911FD49BF181133A119CA3FEBEFAB1417F2B926085A7B864856CB367CDC22C2D511C6457DA5AF6FCF6D73BFEA3B5B9A99D89CC58E027199C4CE0A7AD0A66009720513AA470B90263F40719E0E94BB8F59EA68F9DAAA238077BBBC687FABA9B0A4ACA96794BCB57E5D81DCE2C8433F6EE030D17CEEEFCC9BF7DFF976DADCD3D1CE8012EE40B73765F11812F24806E0A802181CA10810D132719128CE904C8639A564F8087730CF6748D0EF576371696962F2F2A295FE9C8CDF56421CDD8B31F3C75FCC8AE7FFDD6375EC3F0CECF803DC18C7676D44745B23FAD2B83F417AB8C398870A16298518109C6F3348A4772F566D41238880803DD9DC3D8EA9DB979858525654B3D45C515AEDCBC822CCCE665627CCCDFDC74F1D881B7761FFED9BFBF78167D2B7E9407190F3FCCB4A820E39712FC9404E07C0289C91EB191824104366B68148EE431E01BFB8C849223303E361C6869EAEC6C69B211197CE515CB0A7D2595B9EE7CEF7F55D0C746477A11F41307F6EE3AFCEA2B3FA967C036CE6F88013DC43878A972FDAA9AC1A5DF5396773126C1901459E00F18AC1CD7411E3546BE88004CB3231986AE3435B4632332E4172FA95C965F50589297EFF1395DB9EEFFAC80078381117F7F5F7337FEF2C387DE3AB5F337AF363100B31370931CE8610EF42827F7538EFA6911208549104D1987F4E30518B360874481A99D23819D6B362483FF72637DBB7E1C1BFA8CAEA292B2B2425F71A9A7C05BE2F614F8642AEABBC61694F0C8E040FF95DE9EEEE6D6E6C6A61347DFAEAF3B7DB29703975F0F7380B3C0B3E73F69864F9DC60DA06774BB78E62A2200733531FBA8581B9346361E2D6BF40E6EDB58CFE152CF36E678F4487A4B61517191AFB4BC2C2F3FBF0005C28D2A918F2DCFE972E6592CF4C47A715DDF5CD6045A628FB151C3A1D0283A6D0368C307C64647FB870607FA2E35D6B71C3EB0F712EE673DF410D38704FB238291CE3B76D1AB01FEAA08300511D8BA429E103C2978D07398D719DB56EE587C999AF679F8552C9E42AFBBC05B54807DBE3BDFE3C9CD737BEC7687DD6AB3D95038AC162BF536DAC4FF72B41EF7D82CC80A03580212CF6418CF4B5851559AFAD6D6B10F294A149B128A4622C189F1F1A191E14154F1DEBEEE8EF6BEE6A686FE00DD9420E11B453875644165B7D9D7B25E7C941BE50A978FB92AE06785000C11D89A335940082BD3F3CDC61184DF3640B731C761C990EA79C56C0A1BC03C5125312750B55A6DB2D3E5B28642A1F06430C0264F800340E1EC6E14922BA7A20230C30C31A22946765800385FC9336D1B3F2F0498421552A9035F786A15F436665D86144F2107F3649505A67E9E719299E6A21C85CB7DA80260221C09D2B588601F1B5E47B9CFE6CBB794D918EDF3428014AA20220370E0A52248263D3BF2F9092C99035F12643E8193571048AE22500255306AD979F728F7DAA8E0782A47C039077D5E08304D424802F02401B0EC8817BD9E3F8E88009022FDCDAB81A84FA5104A1A6055C1A85638E2C15CC8FBA222C0146400CE5E8BC8C1DB7511F0C0810F199800358D490001584A0AB30102B0457F1729CFBC82BEE00498062940E0C84969A45D12387D52060A2022829AA2871492AD0AF609415717CB495F4C0498013144A04F05B43C4DF0610A7548F77A555DEC27F75A20C05512642E976B02E0A996FF0FB34D1EEB0232D91C0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (12,1,'Crypto-router_symbol_(24)',decode('89504E470D0A1A0A0000000D4948445200000018000000180806000000E0773DF80000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000047F4944415448C7AD556D685B55187E6F723FD27C775993B426B529A5741397ADB5B128EBA0E80FD14145E9FC338B5445A6A05044D03F326C0545860CBF50A65018B6F8B16E9DD4E8D6B1424D8A0C2DDA8E655BD2765D933669BED39B9B9B7B7DCF6D5AD2D221B6BEE1C939F7DC93F739E7793F42C9B20C6546F5F4F4E8BBBBBBDF37994CEDA22846A7A7A7BFBE70E1C2E0D0D090003B3055F943575717D3D1D1F1763C1E7FDEEFF7DF5A5C5C6C42A2CFDC6E771BECD03611D8ED760A4F7D7C0CADBFBFFF84CFE77B359BCD6A0C06C3F1FF85201C0EAB229188399148843D1ECF525F5FDFF0D2D252A25028D8774A4095C7A0B3B3F33D8AA25E94242949D3749C65D98C4EA76BD0EBF569A7D379ACB7B777FABF12D0E50F1A8DA6D1E572D91C0E870D1DC23A868787FD8140C0895BA6772551110DE580ADC86432443E6ED731B817812008722C1663774D90CFE7A96D9C03C683BCDEF90DA835D32081712B01A6ED3A01BBE32C22DE71EEC400BF69B1585AAD562B5D5757271B2A2DA682285B42F3B36268EECEFC6A3E8F17120C02CF27711ECBF37C8C5251B3986D57CC34F83011F2F74C53E4A8C0614FFBE34FB6B47ADA4E565559F6DF0ECE31C1B910A023942AAFC8251404E5662CCB41DDFDB5D0585F0F5AAD0EBE1B3EB7CA30B49763B97727C7BC7F6C5B076FBCD3F78920F0AF3034A372D53AA0A9B101F43A2D0467E720164FC0C8E8A82259B5D5062FBFD00DED8F7A60391A832FCE0CC0E5F17150ABD5282723B334FDF9C8D0C0894D04274F7D7AB49017CF17CA4EA9D36AE1D083FBC16C3400A7E1E0F2D50958595981AEA78F2AEF47BC976061310CB22C01851F955AB546A2A671A49F3B73FA83C10D82975E7FEB4AD3BE078E8824B8784A328A45118A38B755ED85473CCDC0B12C9C1FFD15388E83B6870E2A92A5D239F8EDF76BC0A38C2AD51A01198381EB57BF3FFBCD918D4AFEF9979FE2CDCDAD401B194506E278AFC50C4F3D76589129347F17C6C6FDA0A25910448948019566133CDCE2403237CC048210B81582643A43EA0906C6BCD18D5681016674B61AFAD4C71FC2B3CF1C83E6432D204932B8F7D54368210C89441A62892448941AEC363B905BFF1D98550E36F9E775A8B15AA0C66E855496071922E0BD780EB2E994A810A073520B2E59145DA954120607CF82CF3701EE030721B61205A7A31668860196D34175B5162422294211B6348AF8158E65C06ABB0F6ECCCC28598787E0886F72031DC22D1545FDBA5CD1E832F8FC1330F5D714603705A3C1082693198C462318F418704EA3C44153A1016D854ED9B3AEFDBA2101A90996AC14119942267D9BAC6F578D45A948DA08E47239C86433C0E7792501B6FCDD963B273DED4BF25342C023A68A62E187447861BC20F059D885A5D3C985E0CD1BAF61A24C12F568649350AB083E7C9BCF66AECD07660EF3B69A272C365B03C3B255A8E0BFF6A05C2E9BBD33179A892E472E9DFEA8FFAB542A75971C1C7DCB9B2A9964130E2684015189A8B53B6A0F98CC7BEC06A3A9126130198DAC4AAD4EA11051A9282DA2F39BDE911F7DB817D760B5E458DCB6556C6A526BD9A52975517509AA529C48DCC4120A044489EDFCFC03B71E6B6242A160270000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (13,1,'Crypto-router_symbol_(48)',decode('89504E470D0A1A0A0000000D49484452000000300000002F0806000000A58249C90000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000B174944415468DED55A697013F7157FBBBA25CB97245B9223DBD80E60D3842BE14A4873113E0065723913326DA7F996F443DBA15F683B65683A30D366DA0E90494A67C8B4E9346498D264202199128E002D606C63B0C1E05360F9D061D9D62DAD76FBDEEABFB26C6CEC3009B86B3FBFBDB4FBFBBD7B57E6244982D92C9B376F366FD8B0E185F2F2F2F52A95CAE9F57A3DA150A8EBE2C58BFB5D2ED7CDEDDBB78B701F166E26021C2E3B76EC58BB66CD9ABF2C5CB870BEC96402FA0CCFF3E0F7FBE1F2E5CB6DCDCDCD3F55ABD5C7EF0709F54C276CDDBAB562EDDAB5EF151616CE3F7DFA34DCBA752B61369B23B5B5B505687915CAA27038BCBFADADED793CBDF15E13E0EF7470DBB66D457575753F426BD71E3F7E1C1A1B1B5BCE9D3BB7F48D37DEB09C3973A61E41F7462211D068342EBBDDFEC383070F6AE714814422C1A1B51FEFE9E981AEAE2EA1A9A9E9AD43870E5DA363070E1C38D2D9D9F9273C87C20C0C06C3B31E8FE781394540AFD77368619BDBED064CD8686F6F6FA772ACB5B535B96FDFBEFD98CCC3A228423299B4626E14CF2902084844E04594AC482486BBE2B9C703810011F3098200284614C39C4A620AA1EEEEEEA2FEFE7E181B1B4BA147F4EBD6AD2B88C56222C6BDE4743A0DB83F68341A6587A1278C73A68C6EDAB469652A95FA4D7E7EFE13C1605087E0380A152A9FCA42DB65656550525222328F9C4452BFDDB56BD789FBEE01ACEB4F3B1C8EE73039D3D8BC0298A8A3E9743A8CA492485AA5D56A39F402A096743A1D8FC7B4586A97E0FA46FCF8FD27808005B230765D1556222B7A82040A0A0A80F4E4752AA77BF7EE8D63D869E6440E207801AD2A8709E999D69127604323EFCC0D0254811490A4675AA7DC402F242994FE2F3DA010C0F5B9E1012507EE043ED70398F4108D4689F43D25C0CFE481E9004F26A49046D1CE090208247527C093D7691EC2304ADFEB249E96008E05E26CC387343544E681FB4B80CB2C3A4C48FD9DC04F458E79E0BE57211D8ACBE7F35551A39A29F62755A2347E36EB81FAFA7A5573E760B1944E73AE62EDF0891327846F7D1642EB17A0AAC51162557575F5F7707E2BC14E6BC631416FB55AF534C0E188A1292A2A02BDC108DEC03078FDC3104BC4E1ABD36742B1783281A3F5080660B120A48BD282C00969795A85B4901E451DC0ED405AD6A900AF520DF29CFA9CC1A03A35D0D1E1FB2608500858511C2845CC23B44F633617E6D52C5AB4AAC8625BA2D5E9ABB0F658101410C0348DD4E48D095A069DD18AA748338F02DD9BA37BF2721FC16EDE86728AE75527794E77AAB3E5ACF7AEA6518EAE08A062C26D7C79CB43F905965D368BE5C979952E7E7434049DF894E61F0E20A8DB41D2B6BC5F242D32D02CD9093CDE93EE4BBDA3D2550155F32A615E65059E2BC1071F7E08747715AF92500E6878D5AF2E9CFE77F75DBD9578139F898538B7239D4EBD69B7D9552B962F863247095A8A2796D0D5ED86EB1D5D70F5FA0DF007FC9944C699281E8F2168310B5A110E2458B17C05AC7C6429549697C3FC9A79E0B09728A30BFC78EB2FE07CE345D91B8A208914C7F3FB745AE9AD639F7C32346B023FFBF5CED74541F81D82B208C2B8656D360BCCAB70C1A20535E0B497CA64A807B45EEB001C45A1C255067BFEFC3EF40FF68F5B9C955993C9084F3DF104FCE09517A1B4C43AE17E878F7E09BFDFBD47BE16EB29E8098584ACC3185A3F39F2D15FF7CF48E0973BFF588F803FCA8644B6D28CAFD3C75C4E276C58FF345AB30CD468792243613130E483B777BF079E81013C4F94C7EEA71E7F0C36AE7F260B3C1C8DC191A3C7E04253337AA21A1A9A2E21E9810C78464226C0F1B91E9130BA5FFB68FF3B1F4E4B60C78E835A2ECFE74390F999A413592CE726601A346A2DD4CEAF019BB508B4F860A3D36941A7D58241AFC7751D8C8C8CC181431FC370701456AF5C0EAB1E5906CB1EAE83683C0E47BF3801C7BE3A8BC70220677126EF282AE5D0A41F9EE7E4E456BC217B84B679D540A5D558BE7DFB7661CA3E90D2F43F99AF33E74F4C4091593FA39598BE76A303DAAE2B312EB150C1C74CF48C0E49A530E48C26035CBAD206972EB7C90F3E94DC63A130453DE4E59965021C97AD1E32788E55A60CF89C90CA78C3D1E71B7B06CFFE624A02274F7DF950FDCBAF66008BE284B227834F8F27A5288DAF4B48A00A7363D5A34BE1E1BAF9F24D07BD3E387BBE09CE9C6BC0474F1DBCF6D2664C5A1B442351882593904CA620859A72A7A1A915BA6FF63242138567E1A4103976F89F95D376E2A69646CFB3CF3C07768773DCDAB9A07380D385D7AE5A06410C97BA05D55812CBB2D789608C5F6EEB80F6CE5E30184DB2C53FFBF224BCBEE525A8282F9B704F9F3F08A3636190785A1F661EC82531EE8D21CC93F6AB5786A6CD01A3BDEC5567A9F31F3FDFBA0DF47ADD94C0C9DA94138F3DBA18962FAE9BF0F9582C01172E5D81962BED1045CBCAD7A7BA9FA99560B514C1F75FDA04EEBE01D99A0F5695CBE094A5AF7F08DA3B7AA0DBDD07C323237259568890B7FEB66F3712687D1EAFFBF16D04A881E94B1C5B741AED07369B0D5E78FE1558BA645916BC942522C103A55658F7DD9513275824E50F04A1F9CA75E8B9E9C9342C822EFF8E6B03267C349E90C3C564D063E8954175A50B3DE8CC5E2B1E4FC2A7C74EC3A03F40290D7EDF009C3AF6395C6BBD0C03FD7D5902EA1CF0D4750D3878E5D3383682EC3FF8FBFBD0D0700E5E7CB11E9C8E32D99A4440AB51C1776A6BA017AD383A1681514C4A0A81D170345BF38D7979132CAF6865316B7499FBA2B83D5E70F7FBC0A46FC5D26C972B597B971B92A914E4E1BC75D3DD03ED6D2D983B912CDC0939C0C053A0964A42CA853CB237EAEEE982DD7BFE00AB573F068B172F436B55815AA386C6D66EB9E2486C2C9030804DC6CC7707F28F74BBE5332D77BA99404E5FF07883726899F30BE4DD9E5B6E884523B74DD1142DF4E241CDE61E1AD62C280BD103D5B7BDA140AB36349C874B979A418F35BEAABA06E63FB800AAAA6AC081C94EC93C4E4462866624D89890C52E4D66C1B15D622651556AEC271AD068B4100E87A67DEF4C731A9E2FA9993BC8E476940508D671A7E98F42C4EDEEC538EC87FFFCF7AC6C75BBDD9179C165CE07FA0687AA8EC968C086669009A34933E334F600AA686410F2889CBC541EC9A4085C8B8D50A59AD5146D64CF1D698580968DCE259220A8BECE3C9E4A2561104BDBF0B05FB61A81C8E88C15D9EBC79C63B84DFBB58AD6CA1ABED65D21C026E5EC232579517EB5904EC6C724312DC01C5D301C83A8DA9438E41970AA692328D4208663C1E0B5390A5E8C44C33BA94F52D5A65D6AC684BEB8184069A76A948A47C4907F482CB4D917CA33C01C58B089F97DDEC17742A3A39FE2E618114042929AFE60322571871F852C9F226F24C2A1803712EE2A2C752E292EB157CEF46DCEB7B5E0A369A2BBABE35F870F1FDA9F8844DC3479A044E950B60F906B90047D853448D3003BE926EEAF0E0E7AFA22C1E18AD28A79CB0B2D56AC541AF5BD009E4C2462DD9DD72FBCBBE7ED775B5B9AAE526833CBC715EB4FE8C48C449CC5568479E4164A59321173DCBA71F5A287E72DF9C5D6AA625B6965B1D5E62CB0D88ABF29CFE0A89E1E1CE8EFE9F7DCBCD2DAD27CFEF0A1030DF1789C3050D2869861099B28E5CC3F53BD95E0586955B386411D9ADA6221D305ACE41662592C76B82A6B9090DD603098B0FEE36F9E1EC5909767426DD6E37E0D954FECB249ACFD311CCFA32861511442424A08E1636A7068B0EFFAF1CF3F3BEFF50EF818D80893282B30A9C9C0677C26CE21C233325A263A462A8F899E351575CE9B0C35134EAFD7D3B680D68C3020C9493ACE804618D824B3B4C02AE494C067F556620A329043489D039A67C7B9492494F0127224CD2A5FAE56C02AFB246996FF85C2CDF6BF55EE40287742E472D6737343CA6D9630C55847397837B9F33FD0996C4041A692E80000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (14,1,'Crypto-router_symbol_(64)',decode('89504E470D0A1A0A0000000D49484452000000400000003F0806000000501DCECA0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000FF34944415468DEDD5B796C1CD779FF66662FEE2ECF2597F729528765C9B268C9AAE3D4B22C25A8EAD4285A3B409BF60F418652D428E0B6A85114B5A43A810BA468D20641A0C0418AA27013CB8728F992654BB225459464EBA068923A68EEF25A1ECB63C9E59E73F4FBDEBE19CEAE96144529A8D6237C7C73EFFC7EEFF71DEFCD48D0340D96B3ECDAB5AB6CF3E6CDDF292F2F6F1545B129994C2A82208CF7F5F59D3D7AF4E887C78E1DEB871C58843B2560CF9E3DD6356BD6FCD1EAD5ABFFB1B9B9B9B5A8A80854556546F71A1919819E9E9E2F2F5FBEFCD2F4F4F447070E1C48DECF0448FBF6EDBBA30B3A3B3B9F59B76EDDCF57AC58D1128FC7617C7C1CA2D128C8B20C369B0DEC763BB85C2E2F1EFB96C3E198ECEAEAEA686D6D55EF57022C4B3D71FFFEFD22F6E803DBB76FFFCF9A9A1AAFCFE783EEEE6E50144546A0E308DADAD0D0508A0B14171783D7EB2D45B778756060E033BCBC27E709884422AEA6A6A617D0E76B464747E1E38F3F06ECE54B7EBFFF071D1D1D9FA3FF6BBB77EFFE6B748D3D8D8D8D4544427F7F7F092EFF70F0E0C1EF3FFBECB3899C26007BDA8E60B691DCCF9C390348C2747B7BFB6EF4F78BFA39087CDFF3CF3F0F6EB7FB25ABD50A641817BE3D34345485877DF72301E21D28205F92A4BAE1E161B87EFD3AF97C5F381CF69BCFC10C106B6B6BFB11BA472F1E630420715EB49AFBD5059644004A5842308D168BC51E080458E04B24123368F1CC7391A0C8C4C4443B1206783E20691624634D4E1370FEFC7907125047698EFC3F168B0106B8290C74B7F83582D610FC249DC37E40643FB132A70920FFC7A68CC093511C409BC094989500ECF109520092C4EA0324A112B38823678320A639010B9C4DB44E850E4A9F3240F9B66DDBFE12C1A9A80CAA02A9556B6B6B85B1B1B13A5407AB09A85640024B9D4EA7152F8FE55C25F8DC73CF95616FFF127B7603163AE5580B5851DE02499BCB3B6DA1FB2161803501E4E7E73302F0FC28127768E3C68D3F7DF9E597CFE69402B0B72B0A0A0A9E4630D8C94208D7C7B1472308348A99404680024ADDCE09D1C8F03C088542AC764015A8485C78CB962DDFC5FD27F096B9450081A4068159B1DA2BE40628692A790DCBDCD6F791BDF2CA2B3790281109B0E55C0C20FF26C36066D5073DFAC067B16DF37E1A2952DCC0756BCE1180BD267312B2025CCCF46B50442A650E5C724F01287D1941288B01BC9D0A50011A118064E6A6027402EE42052A2720F7144075909A5AEE48F619C614909331006B798A01EA1D024E338AA5540FDC8F04DCB614C602282D062CC70D904495BB932DE708C0F4450FAFDE2968B3D1F88013907B0A181C1CC4C24FD19693FE4C04B07BE17AEE2900C7F634C8D19693FE3209C83905E0034B3E9F8F86C2C2728B20329A19E24B6EA4411AF5F063F968F5E802D6E516416605E092336950422B406B40DB80967737A5301220E80A2072D73DFE789198803245534A939A5AA6CA9A0BF3CC94AA262764419990C296099FEF72485BEE6BABBB9D0FC06724D97BD15AD01EF47ABD8F783C9E661C0A7B7074E774BBDD765C779496963ACACBCBAD788C6682D908302F2F0F66E72230303C0253A11998C3F5EEEBD7E6A6A6A65DC9A41C9555C5AA28AA4555149A28C12A2BD52201C63ADBC613D02665599940122730084D8892388429F594458213637D7D23BF4B0274F997A095F3D6494AA00922EECBF6C2C2C2E2FAFAFA5A6F6555B3DDE9F68064299635A15891158B0E6E1EA8CA81EAA04925E9E0557E9ECA8F6BB4AEA59434FF6CA9891851947A24094E4A92F584D5A29DBC79E5CAD8BD2440E001D2CADDC16A325B717171FEC62D4FEC70B8F3BFE174BB1E43C015493969805539D814A8F99ED5F73317318155950CF7D1E65D28F57CFA330AF46CCC28AE545554C3E8584A0882247D49CAD044CBAFBACE7E76F19E4D89994811BFF7BDBF710B6EF1FBF8402F3AF3DC158DF5B5B0764D0BF69406377A7DD0D7EF87FE810136196A06AF0364EB0C3C079E019AEEA3B70C3C075E5850040DF57550575B03F535B5D856C3CAA62638DD7E017EF2F39F8188AA10445D1922A9E4535192FEFDF327B6BCABEDDDABDE1302FEEAEFFE798FACCA3FC487F738F35CB0FEC1D5F0C0CA26B0D9AC20997E7C6C7C12BAAE5D87EB37FBC0D7DF8F64C4E78322023348D07B99AD6B693DDEBCA2051E6D7D18EA6A1030825EBBBA19E38B33ED7946C782B0EB85176164748429422465E8CFC1DC44A0F576FCB3EBD377DFEE5E36017FBB7F7F8992105E5364F58F5593EFD203DBED0EA8ABAE8446EC9D07563583153588CC1B840C0E8FC2D5AE6E54C510AC6A6906F2AB37DADA20118FCFF73A81663D3E4F80DD6687279F7812FEFE85DD1854B3CFA6FFDB4F7F01EF1C39CC5D424CB5049AA94130A942A0B9B87D1FBCF9FABFDE31012FEEFF499105E2E7B1D75BE6C1CF13304F8606F998059A908855CD4DACC7240B11418488062118C1E1E8F153F0FAC137D96CB1AA71E05CF2349BBC65D326D8B9E32978787DFACBA4E0C41474DFE885C7363D0C3D37BE8297F6BE02D1580C285A994910798C60E08D164D12FEE5EDFF7E6DEF9209A0FBFED3AB3F3E8CE09E36FCD4085C664BF765ABC50A1BD7AF8367766E078BD592065EE2647CF8C929F89F37DE047AB34624B89C4E947C2BFCC18EADB0724563DA738C0527A1EDFD8FE0E4A933100A4D83B7AC1CF29C79E0C77843E8D93F83844C350846D660FB24E9F9D70FFCC76B4B22E0873F3EF01D59510E2F04349BB95D6E588BAE505C5C083624C266B380953E9A40A35841400BDC2E26EB9367CEC1C143EF3277686C68804D0FAF87CDAD0F414D5505FBFD91B10938F2E12770F6FC7998999DC9E81A960F8C96252D1309A299084198274010FDF5A5AEA6BDA6C0B8E0848864B36E1715294B4F6BC6B61EB5F5731218F0BEE8E864B256B95FAB66FFA62088AD45A20792C066B73155043090B57D1080231F7D028D75B5E0C5C2EA72E79730179963CF9297E7CCCC48FA0A8B2BA9ED4C2598DC4234B6EB835175079E7CF4B6044C4F4EEE2C2BF3A697B6A6E8CD8019DBF3EB462ACB88EC44427959196CC69E5EF7C02A0C8ED7A0B3E706F4F6F9405664764E617E013460D44F601A7DE8C1B52C9D527D9148CA2027536D924CC1F54492A947E0E0B21390E11668D7BB3BBFB924027A7B6FDAABAB6B3340AB69BDAEA7B05B5A8380D4B9759515B069E37A687D68ADF13AADDC5B0ADBB77E03AEDDF4C11B87DE83C9E969882713E02929863FFCD6D6455ED4AAF0C9A976F8EDB92F607A269402A6AB21733DC328185E3A776676497382573BAF4C3DB96D472DF9D3A23D6D809EEFF10757B5305F1F0B0661C3BA3518D81A6EB9FFE474080B998B28F56E88C5136C0C41D79EB970094A3D251814D7677DAE7822010E749DDA9A4AD0063454839CD6FBF3D5E2AD6A080C0DC2F0607F6849040C0E0E44DF7FAF0DFEF44FBECB7376664FEB249853990A9EE222D8B9FD9B58AA4A59EF4B03A4B3172EA3FC7B51D2099626093C95BB7A3C3E7EBA1D4A8A0AA16545BDFE7A9E65115A9C18407FFFF71E61361B9E83ABDDE446FD3018184D4DC00A26028C00294012DDE5D8BBEF2C793E407495570BA7CF7C06959555B075EB5359647EEB3AA5B89D4F3DBE20F8C9A91006BA4F2138359D4A91749E06A9929781D78CAAFFE8C9DF42184792D77AFB6002AFA3D8D0D25807CD4D752CA8D1928F2A7B6CD30666E17004BAAEF762393E0CC3A3E369994146A28F1F3F0A33984617258080A7F20C0D7A34E6ACEF1C7A0BFC7E3FFCD99FFF05381DCE546437556F66F93FBA610DFA70D12D3F42120F4E4EC1D4F40C34D455B36BA2B144EA970CEC29E80605D89CBE7005F47159DFC030B3D3A89EFADA4A5881E390066CF5C5ED76E2FE2A18088CB3EF129862F0DA99D0149C3E7E0CE53F60CAA35908E0E0453ED475E30318B3371D572FC3F08F06E1E99DCFC0239B37830D6F6E0C58B4542CA8F67A580F052743109A0D63800AC3CC0CB5B3108EC40C9074BE2059C1E9B4CCEF9B7F139BB69EF5652D82F20D8E826F6004F2717C50535906B555E5ACE7FB0602EC38CD4B50878C0606A1EBEA158846E76E19EDEA932D968CE1AF9DCF0495E303A415E15485FDE6E0EBF0F1898F60C753DF864D9B1FC560E4307A3F1A97E1834F2FA4C6F1DAFC684E0391E5716374A78131BE37B60D199834B050852EE85D28604D01E00F04C13714A452171CF83BD4F3C9780C8630E04D06C7179AED12F45FB0986461E593203401D2840F9997EDEA10A6AB436D6FC1FB1F1E81A6C615B072E51A68695E0994326D360707A399F2BF96D6FBFA5724696D1A01FAAA961D7D8686F5B901FA4CD761CFC32C118391E1A10515C4314B5C049A854B5FE2B33D34F343A1B719EF605F6C9448BDEEF3F7C12032FDD9A913589F3B3140B54073730B96B68DE0F194B148AC193DAE47F92C6D1ADEDBC0C78BB0444FB9123E3A05522B124024504659C262E39DADD2774D16132B4440295A355AAD39062C6549627EBE79F33AF87C5FB18729C0AACE534A738505E8936E1C27D01880BE1AC963C3684A7D34ECB551C0421049ACECA8F2A30F5214CCEDFABC0165173D361060024E32A72C62919635C96CE704D057EC060122278042B8879470B713B291680412810492116484A4CC6AACB35EB3A6EF4B5F4F6D5B33B64D53ECCB5D129C0051076E362B9FF4B42BC9F80C7C3D972BA630C2FC5FE52EA7725910434925160D2E128B7372C1BAE52615B926CC9A1E351434FA8887EAE4496A9564622C3E1BEAFFFA80D7A2E1D9997D1C6752EF5C9D00991FA05E1FE22C8DC766A6BB1391F0E8D7A0E7E393C1E0ABB158AC0337C37A0064D19F5EFCF2098608BD0C46F3F348C982FBECF84842492456167B2B5A78BACCA925168DFABA3AAFFC607878F0225777442780D501A6E44B2AA0B1F230DF478AA01A3214094DCE26E391404979F5DAFCA2126F2E004FCAC9B0FFABDE2387DFFEF57FC5E371C2348546813DAE83372A41DA401528FC6088CB438F09E416E3C9586C64D4DFEB9F1E1FA92CABAA5D5BE829ADCE1C58DC0F4B341A99BEF4F9B9C3BFFAE5CFDE9C0A060334B9C58147383EFAE6F1D639414E82AA33C4B3C12C676E98BF2C2D8B47E6FC83377BBA027E6B495149691D12515B58EC29B7E417E4FF7F00566439393E1AE81DF0F7755CFAE2DCF94307FFB7038B29BDB7C31C788C2B5C597438CCE381C0C1CB9C8C391E1B02BC50222B5492C98289D140271A0177399CAE526F5575A3A7ACA2A6A4B4ACC262713B7F47D15C0D8E8F0F8C0606BABAAE5EBDF4FE7B6F5D0A87D8405F073BC72DA6A7740E5CCBF6BA7DE1F702FAFC522A5358780DEDE01523998B5B7E464BC01D9E52AFB7A0C4E3C973BADC4E97CB892342679ED34D6FD79D4896C3459B2EA7C391E7A2FF8D228822FB2033AAC84A4455E4B9643211961372389188CFC463B1995834321509CF4E5CBCD0DE3334D41F3401D67B58076C06BD20F025BF1ACB204227C3FCC6D8C1B386FEFADC69AAB7F573B319BB2F4D923A9DF962381CD2A3B3CC5B1D44C2B42FCE6353DC94CF93A6EBF4824EBD1DF03B7E396A9A34317F5F249A00594CA4584CFB7402CDE0C58C71B9CAC1CA265F554CFBCD269BC851CD551D18934B4B07252C77D06352869910C1542B88E69ADBA422B39AF4E36A16031328D55496DF15E07B46C00284C022A95158A0850CB0E913035982E0BD0CAAFF07B7BC38A039A5AA7C0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (15,1,'Crypto-router_symbol_(96)',decode('89504E470D0A1A0A0000000D49484452000000600000005F080600000017B4C2400000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00001AA74944415478DAED5D09901BE5957EDDBA463392E63E3D33F6D873F836600C3826608249C8C6040824D9DA65D95C9BCDA6B6B65249209B6C6D88A9DDAD902CCB1536F16643415CB049A08209C159C0388180EFDB339ECB735F9A4323CDA1914652ABF7BD5FDDD2DFADD68C663C361BAC1F7EF7A16E8DF47DEF7DEFBDBFFF6E09B22CC3A568F7DF7F7F8ED96CCE5EB972E51687C3717B2412A9C4BFE5C77DE3F8F2A9975F7EF93DABD53AB97FFFFE61B8829BB0D40408D81E78E081FA9292921F21F05B56AF5E9DBB66CD1AC8C9C98168340A3E9F0FBABABAA0B9B9D9333333D3363535F5E4F7BEF7BD5FCA97CA12AE240276EDDA6546E0BF6B3299BEB663C70E27AEB3FD168B05D4BF4324F8FD7E080402D0DBDB0BADADAD818989897DB8FEA5C71F7FDC77A511605EAA37FACC673E63DAB469D38F2449FAE2BDF7DE6BCECACA82D9D959D6097C740CD6911CB0D96C8C94868606703A9DF6D75F7FFD9ECACACA65F8365BAF34024CE8FE4BF2468383835F2F2E2EFEE65D77DD65A16D8FC703EDEDED70F2E449E8EBEB83E1E161B68FAC9F081145919D8732C5B6F1D8CA0B172E946DDEBCF9B58C042DB03DF2C82357BB5CAE8377DC7147166D0F0D0DC16F7EF31BA6F704305ABC172D3E60B7DB2DB9B9B9F9797979E6E5CB9743616121F308FA0C7BF6ECA16367F09C1A348A918C042DA0A1EC3C8EC1360B331D989C9C84975E7A09BABBBBA1ACACAC7B7A7AFAD903070EEC46EB9E4192C4BBEFBEFB13CB962DFB161EBB818E2F282860D244847476766623418FE2F6FD574A50BE680250FBAD5BB66CB9AAA2A20230AB01041B1A1B1B01411E44D03FBE6FDFBE76C452E24E79BEAEAEEED5FBEEBBEF1994A17B2816504C282D2D250228487FF24A4A88C48B7D830D1B363C585B5BEB0A0683E0F57AE1CD37DF248FA0FE1882DFA6039F35D4FBC9D3A74F7F03A56AC4ED76039D4B52459E80CD8592765F8680F4727E1101DE41E0515A49164C246066338505D6CFF0B568AA73F7EEDDDB3B3636F6120566F21C4A4FC91394B4F5D32FBEF8A22943C03C6DFBF6ED62381CAE26E0C88A9B9A9A00B701ABDD51AC72A5B9CE258D6F696979786464C4437183CE5333225C5F8D9E61CE10304FABAFAF17106C1BE5FA945E6251C5E4073DA33B3B3B5B9AEF7CB4F2713C6F00AB6146209EC36408DFA318B3234B8680791A5ABE8840658742212641580B00653608E0D0F8F878349DF740E087315362E723996A5A9A83D5B13D43C03C0DB59ACE671E4000928E9384200101AC84D321208AFA3F44DEA356CC4400BEAF05E3436D260D9DA76185EB40AC4C94C9908C908E534730039882A6E50178BC8FE487BC88E447AD92D19396650898A7915420F0261A66A0EC87AC582121442FA7294141029F485083B9326E5498198A98A3EDD8B1E3C3A8D94F60017535A69D8C8063C78EB120BC62C50AB2FE0815C924335C8F6F23C0124A5614CF75AE5AB5CA555454049839B14A9AA40C25E889E3C78F3F803D9C2140D776EEDCF9EF68EDB7E0B979983A56A30C992906504E4F952D0553A5A84A2790B32A9808A0F35439C2F41430908F63A6F5FB9A9A9ACF3FF8E083531909521A5AEA2D08D835A8D56124C18B8091B5CB8585858C50B4604AF32364E1E811F4371CD8ED069E2021E0D19E9E1E029C86B04D44209E336BB7DB7B6EBDF5D67AFC5BF7E0715FC59E2180D3FEB032AE6FC15E4C56AC76BA0E4052428D52528C07B88804705F08C115946EA163B00B780E6D8BB44EAF516A8B013C676060201FFF8E99BC01971FD89A60B104C8A4D36ADAC977DAA74A8BCBE5A2A519BB532587278B274DB7CFD4D9D939A37E3EF4086B8600ED185094075C4FC45CE4E8F719EDA758803126C2C5918C07E80BA874C09D8B9CB9482302507AC22A01B83F43809104A503F8422C5FDD47F10563477C2CE9833C2EB4680216036CBAE4281224A91E80CB4C0C58480CB858728800CC9C246E2A4BC603741E105D88DE2FC41B780952332A243C43403A316029E4471D8C4302641AD6C864417348D0A5901F75481AC18F5211A6109E890173A5A14B9D111101349CA17AC0075982C4454A5074A1BABE905A80085067CE7DD083F062AF88494B213FA9F62BE9677C9816C9C810A0F380C8A5921F5582780FA001D80C0189004CE6195ECAA06B1403E84F7184673C80E74095A0858EF1A41B1B14D99139D233041849D0A5AA05681F822E673C20597EE878533476C96BC9826E8A5A40CEC4004EF7B199948A341BF37351B1CC251B0F328803190FE0822E814F375FB8B0976385EAE009586CCE3F1709BC045DE931808EA10BEAF9D869B2547D3018CC550AA48BB2FCB9C85132A12B7B389AB37E22A080AC1F7B55201010C2E1F00C8DD1D09494A5AE05E8627E48922CE1A88CE9960C81B074F3D537DDF6981C95EC72349A1D95952E45ED5149CE9663DB109524FA4C01EA98A605705F4096A23318B068DEA41BF7F50851A93762117ABC9D9D0346F72E5CEE36E7BC2085009B62FD65D82B8800F2049BCD5656545454515C5C5C9D9F9F4F3323B2EC76BBD5E9749A1D0E8785A69AD3842D9AF19CEA62BCC96C8671EF040CB887C13D320A1E9F0F3C9E7118C31E8948311265CE4B548FD1EC9335DB09E2D5752257624B597B1CA5D203A228F4626ED12A8AA61366513C9E6F13CFB6B7B7CFFE7F2280F4D7893D0F3B494F31F64265DDAE6428740C4D51A17BBC0A5D2E575E61616131925088E0DBAD562BBD6612CCE82DB2608DC860094951CB6C2862A201371E5459052D25F0F21C64D0B66CB82D2BE7D252F534EE7BC63BCD7512C0D48839C00951301D8F88E637DC2D67BADE1702940FA7663F36A56763CFE1C08F13A0489ABAA4F34C35750D2B9655AFDAE2CCCFDF82165F96006E1E203912640E7CFDF1BC07C4A54CD9A71210035C051E14F0654D6D192380BEAFC893115B0AE2595CDD8B5EB2B7FDF4B1539795002EFF57E3814901D8CC6D8BDCBA69EBCD1FD9545056F10974888FE2495551FAD2D1484212640E78054C59B16C234FE04993354BCEAAE3C72A4B15787A1D12B18618487C63393EE221C4BEA8C61BB2B2B263F245379D8802234714841E5CDF6B3299779F3BF476F36521C0800C3E8312D4FED9CF7FE57693C5FA2DFC925B09305422A82C2F876515A5D0373004EEE161181E76431883AC21B03C19B24E420C09E0C1E7AC3CAA000EDA40AF141549D3B645CCB84A8B4AA1BAAA1A3F2B7DDE3258869FBBB3BB1F9E7BFE3976BCA812932042C67F5E378BC263C7DF7EEB8DCB4680BEEDDAB54BEC1BF3DF835FFDDB08D4D5F809A1B8B008965756C0C675F56CB26ECCB5057274E8EE1D80D60B5DD08F840C0D0F41440AC7AD39C98AF552C24B8A465E62DB9ACC2A0EBE0A7A6C98DB6E77C0F2AA4A282F2D878A7202BA0C6A5654E3675D0D79B9CEF8F7F2FA26E1CBFFF020B4B63733CF10635F822382932A416CC2CDFF3874E3F5CFCA0F3D14BD6C047CF59BDFDD2C45A59FA3E5AD252B952419F273F3A1BEAE06D637AC02ABCDA27C40214957A9B577F640736B27F4F6F7C3A07B10A448380E349F9A463596CD93A00DAA09F0633A6FB55861C3BAF5505E5686BD9481BD616D035457966BEA0CA3F6E8D3CFC0F3BF7C21663C90F8FC1A12285E88DC771384F7A282F8853FBEF6EBB64B4A00FDBDBFFFC787BF264BD2F7111CABAAEDF1340FDF331BF5B3B4B8186A9657C2BAD5ABE253D613812DE6CE22291A7EAFF32D17A0097B776F2F0C0C221998A297969422910D70BEB51D49EAD6CA4B12E83A9DA705FE575A5C0E6B5637C087AEBB16EEFCB35BD3FA7E6D1DDDF08D7F7A084647471901F1D800DA18A1E962DC1B02B8F8E76D57AD7DECA134BC61C1047C73D7A3455238F82C82FD89784A286B09881762CA32D7990B1568810DB52B614D7D0DB33E8123401413DE41E79E6D6AC578E1811DDBB78223271BB5B80F763FF702F4F5F5CC093E28190EF301391664EB6AEBE1C35B6F807B3E793B381D39E9C9EAF79F80FD6F1F608003E701C049694A2214793209C201BB1CDCF9AB5FFD2AB06404A0DE67FBC17E1841DD10D5CB441211B261EE5D985F0495CBCA60E3DAD550BBB29A81CF7B05ADC7B74531FE7A47571FFCE4993D18CCFB92C08F03AF6ABD2C40437D036CBB7E0BDC7DC747214BB901DCA8B5A3B5171516407E9E8B6DBF7BE838FCDB634FC26C30A0583E1810A17A04E8C017F51EB1AF24DB74D7EEDDBBC34B42C077FEE5D1FFC1A3FFDC1874E38247BBCE174102661EC5B0BCBA0A767E6C3BD8AC9604F8AA67702490555156F2F44F9F83FEC17E0EFC84EE1324AB15E077DE7E0B58CCA9475A1A9BDBE1957D6FC2C933A759AC68A8AB83B5F57570ECF4193877BE31919672CB38F820C4130B8D3C899C772462C32FD65697FE652A394A9B80EF3EF2E4D7F15B3E6A987B6BC04D1032171939D90E6858B5126EDEB605B5BE88D7D004E82A014282842E94A3A7FEEB5918181A88EBBC09F7D7A3D4DCB4F53AD871CB36B63D17F0AFFEEF5B70FADC399809F84173ED936DA001A8F5810006440889B8A091225D1D01899415E5E88BCFFDF8B167164D003D8A4C709478113C8716FC6422B48590960C352DCCC34C696D432DEABB1DAD8F9E9662856CBB1DBB0D7B364A861533282BF30A5A37E3316AE641ADABA71F7EF4D39F63E61423C182165CB37C39D4D6AC801BB75E0B2B31F0EB5B53F305F8ED1B07D0BA9B20180CCC71B515626072B2C3EF8BC702AE7A8639628292359DFCD9933FD8BC6802FEF5A9FFBE4188CA8752163FBA4228BDB17FFD3109C2B0E40733066A9309ADC764468BC66D8B192CB8CF6C8EF560300C3DFD3D10BF2EA114594446754525ACACA9866D376C66B7CDEE7BF36D683CDF0CB3A160BA591E47869048FDB86D813388C47A429AF45D164D37ECFEE1C34716341C1DBF1E68326F97C5548550B2BC247B8211F8609CC37301952AE630D606EA7E474E0E9324DFC404CB70E83E3359C976E24BFCB777B08FF5770E1D45F204088563839BEABD6BF3CD39E06FF0E441E65FE701D78E25F164F099117C12772E8E80BEFEBE9D2B96AFD0498DAE12D578828195F3C303D1E461027D07AE92CD75BAE0EA8D6BE1B69BB7218816387CFC0C34616DD0D1DDC31E75C313408D32AD8AF2120887C23112D9CDE3B8C4AA3B1296D83E498AB0216F22188B49456A54108DC8E0C1E6E428EE016000BC9A4109D0D3D571CD822FC8A8ADB5A559AC5D559BA21235B2F4A831E8290A270DF04A60A5F7C8CFCB87CD1BD7C1CD1FBA0EB2B212D64B819BFAB43F00078F9E82B60B9DD0D5DB876086181124355BB75C05D7E0B9296675A0572029A1085B0683B3189003F87E33E85D53F087F78EC2D8F838D0708F568E5213A15907AE66507A575B4B74D104B434378DDC79E7A7E2566E0C3A0F72744EEBE6C197680A8A9C0086C82D292A846B37AD83EBAFDDC46241AA46417C755D0D66446E162328EB50E3C12BFBF643517E015457951B0D286280B7B2CE93F2FA81F7E0E8A9B330393D89898145334AAAC01B0756B30DDA220D7452C49E0AD97CCEBD68023C9EB1E0201640D5D52BB4E3EBD1B96484D7794EEFF98BF978FE47AEBF8691D082566C315B18F09BD637CC7BA7FDC0E0301C78F7301B362009A1EA9A82B53AD6194299F9E5DE7DF0E5CF7D1625CC91CE282F6C5AD780DE13C22CAB0F86C7C634201B011E972C0D31C931A2A7F3024AA53FBCE82CC851B2EC1745A5259F7DE01BDF4629B0278F3CA6DB75B2B3B2AA123EB5F3D6F85352D279BCC1E0D008BC73F838B475F5E2E790E292A52441DC387F6C4143205FF88B4F6176B4B099F803EE112CD2CEB3D15B26475420265C62EE78C05D5B08F8FDF0EC4F9E8081FE9EDD92247D65511E406F37EEF1C0F32FEC81BFFD9BBFA3DB16932FAACB5C559AC6784D8E3D0B3EBEE346832CC3B8B947C6E05DD4FB0E2CC4C8006255AE2901BAB2A2B9D882FF8F8E7BE1E5D7F6C3A7EFFC58FC6F0CE17BE5B99C60CF4A3D44B1ACAC84756AFDE86D679A5AA1B77F10C67D93209A44C34A1974A92979F8FEDFBD02FEE9A945CF8A6025654E7105DB6E6E6E84DFFEF615B8EBAE7BC0685E506AE041430E2173EB4DD763D1959516FBE7DB3A61FF1F0E434496D8F585F84515CEFA35EB712662DB5D7D83F0D63B47E0AAF5ABE1ED83C7A003258624ABB2A20C6A5754C386B5B5AC204CD52A2B4A596719E1A01B8BB90B8C940904D68C758AB6628E6D10F8870FFE1EDC28DD8B1A8CE32E438AD9C5E52F98CCE67B99CE626F6858039FFBEB2F81CBE94C99C3270F0FC7E0A17A617DFD72B861F3C60549C2D4F40C4B3F5B3A7A94A028A74180BA1ADBA01A429DFCCB075F8A3D5598B6D6D65461505FC90AC0F9DAB8D707BF7EED00F803B3AC30042E130A0666E0D03B6F41475B2BF8BC1E98F0F9C0E71B4F4F8204357A24AE015B94656204B1BD0D7EF0837F85FBFFEA0BB076EDBA39E48623451938CB47D7BFEEEAF529BF181144B9FDF098177C93533031398DCB69CC4CFC109C9D65D359648DE4C87AD98F93A3E301523F434A8081110FF4BB47E1D0C946A842E9A95D59C58634F4D248F5C4BB4730F5EDEC6359973DDBAE9121CFE8301C3F72103C63A30B9F98C581AF5E64B7B2D90F067333A7FDD3B0FBA74FC3B6AD37C26DB7DD0E4545C5C9E3F23AEDA7AAF4C6EB37C5C7FD43582879BC130C68DFA41F26A7FC0CE840301477EB38D8E89059367B02725EF3F5FA6FE0D5F29CB5AFB6F50F8F41CF109271A2112ACB8AA1AEA61A0BBB62686CE9C058D0861956146C2C7E2406ECE8216183BD3DD0DD75018BBD70CA29B6FA47329B0D3E8BA858BD559982423A93325A1D46B68F9D38069B375F0B1FDD713B94975768D2CD84FC44A1382F17F57888C9C9D4D40C735F992E88A9F2C1FE47A0F1CBF1430BA0795DD668BCACD37B39096D79010408493BFB873DD033308AB1C7041189D25D0BD8CC89B494D2EBC9491F8C0C0D826F7C1CE6F9338292F1C94904289ACF83EF50265F15E0F1733E42923EC4A95327E0ECD9D3B061C35570D34DDBA16E551D678C31127CD301F0628F0551815991FA59F80135999710EEF538E43218CA8FFEF5C5FB00684642191A420C2C25CC82C56A63536D7C5E2F8482690DF2A9AA22F1249839E9014EF3739499703403AE148FCE4E375836359D8396962670B972611392B171E3555053B34AB9E74BD61092349026CB5AD2787931901C7E7F92AD5FCC640F215E7669E0B39AA97A8E4DABA4F9AB1313DE854E8436299F4CD27B80C04DB8CA52AC9F26E352225C8E50642DF43BF831461C397A08E5E928381D4E58BF6E03AC5EB30EAAB0F872E4B892C9E065C560841374E468E54647C2C53E7D5D09A8EA7C20BAC063620F9535B30C4910177563916ADC9486C9CACDEEB2999B6865E2743F376EFD44820CB68BF93E3398969D38791C4E9F39C58A9882FC423609AA0A7B454525FDCE00FB72098BD6790257E1EAAB5DD9908085C84FE208894649D924B098818A420CEC18E0025C6453A76D46141298F29875EE6151E67CBA9419D105312296F651011318B4CE374F416B5B0B9B954679383D35312FBF805D2DCBCBCD658F3B2319733AE91738ECF1E10A8DDAA7003A9503D0B07424121B9AA6E168894D3B4C4C7164964EB7C82AF5CEC5639EE401846348218139995997FD5815021C0A09B9CACCE84BFA28792A8E3C9E31F0FABCF14135B5E8A3D841D52F4D71B7586CEC32250540ABC58C0590955D1FA0D7453610A7A29F20470D6F9428B0E922CA7BAB20F3A05FCA86C62372F36945558AF404A82C652952443D2B2A452EDB7CF95404C59ECA1BC1250137C3B458E4882260C5F8654C7E5B5D17E1FDFC41022460502140A367A2410DC0CF7E663D1A0A4D40A65D6C3BC98D30A83DE91E313502AA0F58658E1C0905A7E00AFDA5BB256A34FFA585C3379E69F004A84FB40D2B81625659D255F1D9C86C603883E3E25A2422BDAAE029F186CD13A0824FD139A83036AD74BAEA3D1BF08DB747C3A1E90C9C0B06FFDCE4A4F7C70A01618E80240F90948308F049EC3EEC5E6539895E30EDF78C3661400C67604DAF614DE1191B753F0CB1E75E07B81434CA7B00AFF9218E00BA283AA2740FA5EF52243C3E3DE23EF77E67457F1A961F1E18ECEBF94E2010E8559424A87880A47A00AB84E91F652C487DE63F313501899BED3432159E0D84C7077AA6F24A2AD666BB728B33501B149A3EEF5B278E1C7C6A6666C6AD60E9E708D0C4003397FDA804849413F4F2A406E602599266BD437DD3E1E04C4D7E4979C3BCB79B5C212D2A49FEB6E6A6FF7CEF8FBF7F43017E52919F1905BF7810D68C862A5EA05AB95EE355690A2A6FE457862972A7BD9E40606A7220AFA4BCCE55585465BA428940B999E9EA68FBDDBE577FFDE2E8F0F0A002BA0A7C4031DC881E7CDE03781224CE4564CE2BD4EC684A619791807161D233D8EBF18D0C9E2F2C5F569F5754B61CABD12BE237C042B3B353674F1FDFB7E7D9DD7BC7868747146CFC4A9FE1321FF5E75CE439AF88E93C21A4AB0D54022615022843CA53C68C5C52249233D2D733EA191A385358B6AC2EAFB0B832C7E9CC87A51ED27A9F1B3D31D23D38D072E6E4D1834F3FF5C3D7C74747BD5CBAAE6A3D9FF14846966F48800109116E1951185549F0AAE02B0376AC2311D923FD3DC3D8B3AC367B6E5179454D41716995C39557F4A74A063D57C23D34D8D2DC78E6C84BBFD8F35E7BEB79B702F80C27332AE821CEEAA37CC663F4DEE6142CB3933822A206B1604A21C1A1F41CDD7A766836601FECEEE8C56EB366D95DA515952B9C79F925D88B1CC8082CC1AFB95EA2601AF1793DFD282B1D3D3D9D6DAFED7DE9687767FB18F7DD839CA5CFEAA426A21FCA99EBB791CDF3B91B97A286B96A39A4FC71D51B68F49486B1B395650EB7CE7A2818B0F575B67740EC7913568CD7598565E56505452565F9E8224E576E41564E8EE372FF5640241C0A4E4F05C7BDDEF17EF7407F47CBF9C6D677FFF85647D0EFE7819ED5813DCB59BA8A8BC4E7F873593DDFD2BE474C375F48E06A04F54A8FFAE00E9B4288BEDBB8AE1E67D18FBC2207D9798545F9AEBCFC3C576E5E6E8EC395EB70BA9CB6ACAC2C8BC56AB1DAAC16B3C56AB6D1938A2C36FAC7CC2E178AB16B07B200614166E357E1A82C87408E86F03B86C291907F066BF9E9C9C9719F776C6464D83DD2D1DEEA1E710F4E7229765807F02C272B3CE011CE18554B973801497BE07231CF8A10382D17B9CE3FC84325C4CC01CD3F59C5A63B867FC28AFE2120F1197AEA4780C45336E87E26C8B1DBF11C31EA0FF843ECE91ADA9FCA8A70D6C9CB4458076848B72FCC1DA7079C9798B4A466C9084841849E0C91F30E154C8B8E20B3C17EFE8A9109129305F40408BA21743000862782EF111DA011DD6B3C59FCFB447543C9515DCC5C1C8E4B31CC9F820C3D29820E5C51B7AEDF27E8CE1574E00B0604400A0B4DFA29451D41B26E9FACB36EBE2E922F16F42527C0800C484188A0B3665E5E0483F5B9804FCA197444188138D7B6FE5CCD52BE4417A4844B7DA12B05217A624007702AC05359BF11197A50C1C89253BCCF2503FCB213B04862C000F4F98E9517B8FFB2029DAAFD1FDEE710B125BBBB070000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (16,1,'Disk_array_2D_(128)',decode('89504E470D0A1A0A0000000D4948445200000080000000180806000000320BF5E50000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000010F74944415468DEB55A696C14E7197E6777767DE35D9FE0038CB9C261623087482348802828213FA234AA447E04A45655A4AAAA447EF657941F8D1A892A51A3A64242423489841285464D40A8342424DC4702C6107C801D03BEED5DAFBD8777A7EFF3CE7CEBD9F1ECDA28C948B3F3CD3733DFF3BDC7F75EDF6AC160B0351E8FFB0CC3D0C83AE605CB8A02C1F2F2A58D0D5E8FE6A1E1915103FDB15829E5E58D512A95D43C1EAF413FE331119D3092E49D5AB8A0CA4FA4D1C8A3626A3906D7DC6E359A989834C8EB4BD65697FB30F0E8E8988187014F8C465379944A32A6D7C4D47202B8E3692E13989C9C34743DCFA8AA0C7A53A914854261C3E74951BE3645E1949F928CE9F5DAE9CC81ACE59AC2F4C3FE817E0A87C2A9D0E870B7DFEF677EE6C9C9324FE8B1582CC00A50E3F17848D334C2A452060D2EA8AEF42FACABA5C6C6465AB060016DDBB68DDE7EFB380D0D9D26BC1B8D4669C99225D29E9A9A9213DFAA361392D1C6A9EBBA9C914884128984BC8F76717131E9BE0A9EE8806FF1A285B478F162AAADADA5279E7882DE78E3180BEA2CE5E7E753381CA665CB960951764C8CA530B2618E8F8FCB3DDE652108667930C0F813BE8685F5545D5D4DC78E1DA34B972ED1FEE7D7D1CD5440BEC35153533303D38E61A71757F09199CBF39E4863329F85E99555D5F2FDB2258D545A5A4A478F1EA5CEF63BB4777B13757B82C24F3CAFABAB9BC14F279E1B26E8C495652AFDAC4C543B7F3E75C4E2068FB71434819745454518FF9E5E50504085858532000E619AD797A14D3D3D3DF4E38F3FD2E9D3DFF3046FD28B2FBE48C3C3C3A2048A216A32AA6D3FC180EA870FA98E0966F5A7918101FA9E3187C7C604FBB1C71EA387FCDC7E74747488829D3A759519D5462FBFFC32F5F7F70B5315D18A416E9860402DBFBFC0C21CE6F1BF2B29A1310B130CEEEDED258B6C518886860611CAD858273D8C106DD9B245F040A77DEC6CB8E85BC2E3D7048382D9373A4A67ADC50241AC5EBD9AC642E1F4DA2CE1F92C5AB48896D454B095EDA1BE298D366CD820988A4E2786F31E74AE64A157050282D9CBF8171813FD10727D7D3D452626C9EBF18A42CF9B378FB66EDD4A57AF5E95F17530036641AD7E741ABA778649B975EB160B32C95A4CB242410C040B2075B5B7ED5768E5325E017F7CF659B6AF013A70F02075F1E426F93908C5E166DBDBDADA449B71AC58B142CED9B0D433588B35CCA0DF3FF30CB154E9AFEFBD471D2C64AC4460625CD3B64F9B4A589DCACA4A4A5CEF94FB850B170A6F9C18D9DAB0664D3E1FFDE1F9E785CE370F1C203F0B1ECFC05737D30DA5F34C8ED2405B8FDCC3E2421673C1C315BCDDC074EDDBB54BE8FCF35B6FC99C1526E8C478EC3F69EFDEBDA21458F450BCCB972FE7E9E88012A8D58F41A389D40C6198E0A60208F35C4E11A4EDEA7C6667B661BD0393A79E3BBD1DE6924AB98FEB86E1360F3B1E143C1333130F8C135AAD7BAC986C18594FD068A7D339273C9A0EB7C8C70AE3999AB6B8C05482733B150D19F46A9974D86937DB26CDCACACBCA671CDC8B0B80D953AB1F2B24118E640C8877366FDECC93BD26F77D7D7DF29ED3D73BFDBFF2CD308177D934FDE3CB2FC96082FBD9078FF3CA50BE58B4D4B134A0981B376EE4D619B987B9C6AA768B31EC7D0A136377B09B5298C3D60AC5BC95C23B57E3DDBB77A9ABAB8B9AF3CDFBA1A121F9C62DA671A31763B7339DEF9C3841062BD320DFC798F1CA178B301C8AD9DEDE4E6303F7A9D663DEC3152AF39F0B57B5C1DB56E6CB3BC78F0B26E88C5B8B1942578797DB1F7DF491B81DF0BCD8B486317101F00B6AF5E3A35064326392555555545151C141D962F6C3BD74EDDA351106FA4094DD37D9AF767FD5CE7EB19BC7CA67468C7350E5E7C957F28431CEE0E020391519E6B8ACAC8C311BF99D4109CEE0BF61A29DE367BBDE62CC2E1ED4CF3445D8E7175A4121CC2630359BFCC148C439172E5CA0965D2D549657262E08C2007FEC74E6A2F53BE6E7F74C936436ACC43ECBF443391E3C7840C52C00058AB1D177E3FA0DFACDD6260A721078FDFA75190782B28F9D0BF3122FD02B56F037CE82F55B4A06790E70BC5532AF54780BD9AA130A29AE61E7CE9DBD1CE5D760E580099854F7FDFEC1C292E28ABAEA4A669817E91105CB384245EAC42B6B6222C2D6C06F9918F3C73272E6D598799DBE18E92B19D3DF4C2250D2F3687E65990829CC049532E3D979D1A404458CE9CF33C7D4EC631A19634E5F35D779D94D649485E22FC8A772048ADC373830C4CCD1282FBF803CF0C35309F2B3F5488F61C7C8A011CECB9D76A74B4AB04214E6175230584A71E6F9085B2908238F237360C65868CA15D9BF150423831A57B7EB9C27043F3595A2B170D8181DECD7A058CA0AB09534B300DC405BA011623ABC9A042F95E565FCF23C2A0B0425FD0A87033C58179BCA2EAAA8AC2243524643AE8631DD4ED97C955CDDFA32AEBCBAD8DCE2A864AB525C2293E36093577F28C066BD83BABBBB19B342DE356CDF092EAE645E536A2EF66786FBB341C6F4B0A2549495CB7D7F5FBFF8E7354183067C95629D2AABAAA6E9B38F99CAA437A39F663E577C981A9F824E5339F31656618873F43C2D49CB4B0B68D45F6E625654DAF83513D75078D9F8EDE88FC723A25C9A759AE198D9D691134201B0FAF13226051351C42B03796B5D5D2D07B401DABE7D3BBDF4D2DFF8D93792B67570EE0A3F6DE4146C2AA38DF15454ADFA46395542BAE7F355D320AF8602C65DC8A94B90CD376A0F3B76BCC9ED6B9275B4DFC9C4B40744B361822E15E8C2950013EE243A19154CDC23B63973E60CADF696D3ED89219ACFF9F3BDAECEF48A748E9DEDAA022EC553E5AB514F0906D8DAB0204B98E72B998F3DACD8B76EDEA0F9C900752487C5ED753126E69D8B9FCE7E58111C8859D056D8E023167184E9743BC402C024C0F7AC59B34606F048243BFD12FC2598A30EE4910051819E4A392058679F2ABC94B7B6D286EA6A0E02F2A99573D04BDCEEE771215010FD90579F3D0B806F1C16F36806323B76EC9831AEFD547DEA0A3A16B00F6FB630AF5FBE4C1739F618191991201098F719C34E2778B169D3263226DB8579CDCDCD2248157839719C6DD0B992F9B48E5339A44BD7396E39C958E8875240A1E0DAECA098CBA6E635940A750B664B4B8B0875363C75C5D86BFBFBA9891518745E39778E4EF198AA0E80382D1A8BA75D883343D0A1DDB00228F6A8CA9EE650001C5F7FFD356B55821040C36260E273CDC90154C30CFFF5962D92ABF670E4ABCC90D262B7E3D4A9534C64325D34C1FBB361A936567A3DAF7085D979F3E6AC98B06C78FEE07FE6FC10FC211E996B4E0E813430E62BBC40A40EC098AEB4D978BB6EDD3AD22686E9CED96EB987B5556977AEFA83D7AA2FE05CC18AFD0A5B4BD0D9C68BCB2D05D534CAB0228A07A200CAC429BFA0B9E4E4CB972FE7DFAEAC39FEACF9B1D3F43063818B95AA821727260442D4969EDB9CB1B2D41F907383710AD3997AAAB4CFAF52272B757B245C471D4045DB10949906662AC0FDFBF7C9131DCB785F5500E7520370AB03A879AB7A0269D38A0F05DBB3678F588723478E7874552B5FB56A959840017128407979B9F8605D3F29F72823825900724B8D9CF798483814A23F7DFA2979B017C05A1CB2D216A57C4AC8EA406DDE5400F338C7A60D6E682E982A478E7040758B31BDC82AF819D23F60A4A36CA1721A1339F8C58B1769578359986965B7851845D5E7DD30ED6D607EC3BEF706E7DB924E733B6EED27A48B4F0ECB0A05E8FCA18DD6579BEF5D665705254CEFCBE4E0ABDA07F92FC737E73FFC50AA7D43700FB6804F65106405F8C8F290DE4201D89A18BAAA0841C0A8B5E32573C51AE9AA11560E80F6EC59CF42F0896F8679443DDDBE49E2DC18716E64A8EA0202B21AAB68836005CA644BA4A41F4110AE7BF76EE418A448E6064C9430B31562DC0A25939652C5D9FFDA3111D7C872D44C4CD0849C1926D65FD3442BF5A044E4C0441DC4BE0164C756025105A838F7F55B2B33CE4C9E6FDB0CC2F84556E14BC55650B0582249F3EA9B68853F204A8AC00DBE3B5B11C8BE4984730282B5825485093C15F0025305C06AE3482998B67FFFFEDE8686861A30182B0C675777EF6049B0AC2219352B82497E314373D356479B752736FB2665E68706E746451CAD46C743E67DCAF8495BBEEEDBA80E53C9CA5F5C1AA0F0C8503ACACF2C1FDBDD5296D1B49C5398F104F51360868607A779EB403557ECCC11B5B910EFF252212BC5E0E090D1D5FE8386FD8D7DFBF6490C77E8D0A11EDD5EB65581549273CC025DA315EB9AA52287A0EFF1C71FA72FBEE861C1B74A5916AB1F51AD5DB39C5B956E7DD9B652C7C72312216FDAD022E322E86B6A6AA2CF3EBBCBE6B355560BDC02B6669DA6DE8997ABDFFE2C140A53622A4E1BD6AF1386A00A08DA5ED9584BF7F2168B55C06E1A5CE06C984E1ADDB66DD3663C3E499B376D14B770FEFC790A0FF7D373CD8BA82FBF5E30C15B60CE15CF8DAF19DBE3C964DA52C30A1D3E7C585C00BB8394AE4AC030193855FEE8D5BD691F0D7381099D38F1B1D40190AADCE19CBCB3B3D335F776469AB2C5CC7EAD005127EAD37C1D62131FB57603319E2A43ABDC5D8A421C517FF2C9610E5CAECA5E043051AB77C3C88689AABF17E68AFB8758C8A00FA9D3FAF5EBA512988CC6E41B28972ABF76DFEDA22B91117137B76FDFCE0806DD30ED6D1FD383522CB2F224D3D46FD520C0FC952B575AB1801950A22E005A43FC5D47473B754C0D4B1F3055CCE0469BB3EDB7309130C7515CE2318109F78E05E3D37D6218D42287CB051F240B5079BAFD3492A90C038AA0042B039528C80F051A2B8898532A08BFD6D8D141BF7BEA294955FE79E4087D83ED606B924AE0F66036C441236A01AA6FE7CE9D33B64973A582F87ED5BD7BF42AD223F6E37F3F7488BEB514208DC982F0D8301121C3D251DF15B987D2A958245BEA67EF83326F635EFD165BD08C79E0FDF7E933C60226E60E2B13894CA4E30E15605715FB29F9F096DC3FF9E493A27073DD82469CB29B1577CF8E1D82F99777DFA51396C2621CA4F862012CDEE17EF7EEDDBC984F98FB02D01408589D2022954ACEF0A0888E5107C8960ECDB6158CDDA86266004E44ABA87943D9907998EFCDF45D67CF9EE5159972DDEA9C4B4AA633038A51EAB6FEF0A22C1C98309D9F4FD389FF398802B8A481B952317B9FC415A093155C15919C3B73F603FF7158BEB431233D7ED42D681F302D3A5510EDDCF6C65CE0FF116022DB81B233EFBD3A18625700499574BF33B5A4A79F7E9A3EF8E05F8F9C87AB13E6B607D54456B0040B9FD16582AA50E416F4A0FA77F060C78CC2C66C79BFBA42C114668A05A1A2DF744EAE6542626B1696A32A8702E4C2143A1526F332899D40AB449B2E3E6999FF7EB971E3069BE1487A1AEA2F76B9F0EC0A87639CE9539812C85A825741ADEC04F2CF0B2FBC203C01CF91627306E21705801981E0714209F24BF40C7B8C4008FE50D74D2D3E79F2A4A42F6050B6FAB4D377DDE6F3F4B7DF521E2A6B9C56C6785520B8449A028138C58FAAA4FA2F1E0EFC5F0F65DC5C984E1F7987DB2781893496573D56225C17842C984666F10934C134BEBAD94C6FBFFAEA2BB1884E7F9C0BF3DF2CBCFF1C3F8EC8D85434FE16AB5AB9272726E8BF70EE2C3DD76406D4C08702D86B0FB3D17994B13EFEFC738973E248ED5876F85EB90B5825254F7B808A673A34029D500275169594A62347300BEF201F7EEDB516CEC72BE91EFBD6B56BD7A60B47F608D9B96F3D5B1F821E6084C3E3F833AA100641403131FEEBAFFF8A31EB65AF1E98F0A3D9C6CAF5DF00671B98E3D83861E500C3B0DB880580E0D0BF7C396DF2150A2FF097AD7C4B79B2FDD7C1D9CE361FF9B30D333E2FCF744108A2A1146BD9ED04562CA5167FA1283902522766B6FF22CC85E6582C2E16003C045FD5C618B2008D997A89B5C500F1CA129404CB26CA6A16FB13B189E29FF2576FCF9C1278EB5D5D9FD2743D968C468BE81738DC7274C64C68BA2FFE4B61BACE8331BD5E3D31158B16CEC2B49FEDD0BDFEF8485FCFFC91C18184BDEACA8B29FE7F92CDED5AF8A47A870000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (17,1,'Disk_array_2D_(24)',decode('89504E470D0A1A0A0000000D49484452000000180000000408060000009463FF180000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000011849444154189505C14B4FDB401480D1EFCE339080ECAAF481229058B1E137645F7E7DBAAD5A09894A6451CB5128D89E3B733947B6DBEDE9C7E3E3A6D54F5C7D110ECFCF7C3B9DF81513B7370F6C36CA300CAC9F9EF803749F7B40501CF3E1C0F93411EEEF79FDFB9B8BEB3B8661E0EBCB0B3F4550D529EC76BBACADE17DA556C187C8FB6A8534509D29C51011EA7A8D2F05039A092146F4EC0CF51E514562469C23E58C5E5E12A699E3F1E85DD775D00C284CD34C356354C5309C87FF6F6F2CA5F0AF56CC794AA9346BD4AA1484D7DA00A8E6D0A2B4D6185B238440DFF7E2F6FBFD29AFB245BF62B33EC75B631B02294652CCF45D474E99EFCD9052C8399153C439472C0B7DABA4942C8891520433AE9685B2CC8CE3583F0013BA8E908485C7E60000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (18,1,'Disk_array_2D_(48)',decode('89504E470D0A1A0A0000000D49484452000000300000000908060000007477AFE20000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000004AC49444154384F4554DB6E1357145DE7CCC51ECF8CAF1927B11D038E13C425F4A14A0952C8A51212156F7DE4B552FB1D3CF01FFD15FA042FA8524B0554248D703071EC90D8F175C6335DE7D0C258A3339E59FBB6F6DA5BA4D3E93600EFFEDEBEBBBFB72B5AEF0730641FA66561369D613A9D603A1E438EC618C473483B853841B2BBB32D9E3F7F8D60C184340CCC660A3BC56C34829C4C711ECE202D1BC55209DDD6014C378F62A188F97C8E19BF4D89894643885988B32844DA7192E66A531CBC7A09BF5C43369BC53C9A633AA34FFA9D0F4788A3087DDEB3689EFCFDE6F5A85C0E86F2EAD5AB6EBD5EF77CCF132926DD7AFF11FBFBFBB8B3B181B5B5265656561098267EFDE121526767104890B24D61F1DD71AB8B9D9D1D6CDCBE8DE6EA2A6AD52A9AB68D27DF6D2226369D4AC17733B8DEB8829889AFAFAFA1525966210564320E361D07BF30C669A703DBB245D6F7505F0AB4DD6AA381A5A54514F27990643CC8FA78BC52C3E969076E2623F6F676DDADAD2D5F3C7AF4A83F994C7CC7F592DDFBDBE2F0B08B38561D30BFB2CA0E64423245D624034BC3C4F7FB7B78F6EC25164A364B82C6AA8E85C43AC49EB273969341295840FBE8002937AB598DC8E0F43F6C3219C3E4F3096F3F97C31A4978F3C7EF282C56E0B0B8907E14764AAC18B3B324A1CBFF76DAC1D1E101AAD5EAC0ACD56AA2DFEF633C0D6190D53831353B524A2049F41DB3881C1DF6E9D06097D43B2904933190225BFAE2BB44E199B8EFA4B52C0CD3804D9F699EAA488BB68276B1F2C96404637864B743BF266568126B89B90EABB0EA8AE358630D7E4F117F46020C436A3F2A4749A054EC59962912823F1C7FC4F6F6366EDDBA8566B3A9AAC4029D3DD9DC84797E4E5D46BA034ACB9D931EEEDDBB879B376F6295EC552B153458D0CFEBEB087BBDCF49D1B651AF68BCC22C2F2F6B596432197C43EC8FB4E9112B85D4645417039E36AE5DBB46092D214FACEAC67DD7C5C320C019A5A9FC2A5905416088A74F9FF6DFBE7DEB77CF2F928D1B3744A7D3E790F56153CBAADD21872C224349AC062A84244B2AA98D8DDBF8EBD53B262235131A4BDC9CB7626CC2AE49D342B15840A77D8C94E3E9A06C95C6451CD088C3ACB1FCEF643C2C96031C1FBD839F2F2145ACFAA6B021B173621579E13CD6F13B271F71F7EEDD89541A570CB869475CB9526790A26652B1E4B16A9743684B811B9E87541273809CCF434686A230C32DB4801CB5ADB00E83DA4C719DCF2675E0D1B6902F209B52F23090CB6575118A1C499F0E136C3099313797654ACE53913142FD9D83AA3BA264A5164796D8153E8FB8B9D40269B55A78F1E245284F4E4ED06EB7A947E8816DB53E684934B805F40662DB8A0CF298ED372E2E34238C8DE170886EB7F705ABA4562E97B1C2E00F78CE3E7DFA3C13C4D62A4BDAAE42621658B0EFFB5A16D789DDE2F305FD0AFE54B28B41499F0A5B2C16BF60EF10FB2D89B9BCBCD43E554C622C831AFB89129A546AF574A15414B66924FF1C1D627039C439875B253AA1447E3BFB8428E3EAC14B848C4BDCEF713C4B7ABD0E2E06035CF407B8E4AEBE64F0973C25B131D4A09949EBB80D2F974F144153258930A26D822E89F993B2743D1FA66D27A661A1DDE9C2F1FEDF56941A25A316C007CEDD1BDA7AC47208E3EE6987AEC2C9BF78BC39D24D63522D0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (19,1,'Disk_array_2D_(64)',decode('89504E470D0A1A0A0000000D49484452000000400000000C0806000000D2F3BBC90000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000007504944415448895D564B6C1BD7153DC37943724851143592F5A1E4C88E637D6CB96EE5204BC3710BD8591428BAE82248760D90753701BACABA5DB45D6613A4408174EF14698BB6A88BDA559554AD23D3526D49D4CF11298922298ADFF9F4DC478E237788C7F799FB7BF7DD73DE28DBB6D73B9D4E3A91EC2BDF7AF3D6C5D9E959A4D313F8EFD37F6160208D442201BED7ADDD6EBF3C66737D1FC7952AAECF5F312EBD7A29B8FFB7C748A53A181B1D85EB795ACE75455EF4BAFACD6653CF3DCF47DC8E231E8BA1B4FB0CF1C13138CE10629C6B1F6CAE34D7EDCE5B2D7438F6683730CC606EE6B5C8D2E26270617410BE3D8073E7CEF13DFDB4BB318ADF4EC7D56BE2B31B7707B9C7B9A3A8651AFDFDFD3595C964D2A6693A1DCF3B4DF7A70DC7C9E0F0B081C07731911D478B4E1B0D70EEC135008FC6DEA856104422F86DB188E1E16124B989FE548AC9B28D95AFD6F1DE7B77B543695484EFB95A3F43F9EF5DB880DF3D7982C56A15737373F099C0C9C94918C7DB689926EDF4699FE2A7D3EADA6830803BF4D70A027CBC95C7C8C808127D29633093C1D4F909E330FF040BB7BF857ABD0E5F92D56E691DB1933D39C1DD9919FCFAE1437CC5B5D9D9598C67B3D6F56B57D3E57259A9F1F171300128F314E589D011FDC0300C249349DD075C9026C1CA894629E3F7D6CF3E9665E95EF4C48E3CA19E9C9AE29A4D198373E385BEA1C772B2A2138FC7F5BAC8BBBD3579AF7DF6E29077B2268FD896271A8D6AF9504F29A5633529273E23BD58453F168D1A520DE24B8DB254250152CA7566E8E0E88819CEA2500890CBE560D17058F69E6497ED2F5494521A1C74F4BCC57195996E349AB8FEED57F08FC57FF25DA65BBA0C4297B2EBA1924EE3A3FD021A03037068A3745C260412D8C8E7516A1AE867F0CF9F3FD7C1777ABE24419615C5671A4E84D6D83898060D9FC3C343E477F6707E6C0AABAB6B4813B21EFD48D94BB24C65619B95F98BF5753459A923D4AFD51B28140B5EBBD520D4D3AE927292E7A8548645C74962DE34D994A9D74DC97CC464F3C0BCBF386DD38C40598A29E558B9B0B9A1583C469C2A24EC36224644373929B1C173D1B2F2A74C0597BEA23C19A55815C4BC850EA1E27D534EDC40D75BA05B1048D54037598A702027482558017986EF65CDED5549E007DA86AE40B12515C79F19315EC425D5A51CC7C1D6D616B3AC741909216D6C7CAD9517161634AE4E4F4F35A6645CABD5F046A1008F063E26A62581A227E5DFA44C2EB78E0F3E785BE34FE4C32636129B9BF821F1F89B2FBEC003CE673896CACC66B3F08A9B68D0CE057284C887FE640362EB478CAB4E1FBFDCDED63E2DCB445F5F1FE66667B0B7BA8C5B3F7853FBF846D760F37089F3775F7F1D3FFBFC732C934FA6E9F32C34558A25221090D44A7665EC384994CBAE4E8C380F5B484845C118E5248B52E6660F8F4288F248194B20221FEA494FA2C53392DF690FBB41976C34BCCA4CAC1577B0BFBFAFB17BD6A7B41DC1774FC7D395D2E598020F23ECC5E7FFC75BA6ED15DAAC5347F385AE081F57AE5C1108C4949C9C10E1F6EE1E8ECB153C26EED36907CD561B1B3C31C1A3EB0A89750390327D10513A881431DDA25C87763799AC269D5EBB368A7F3F7AC4D349D1A1A73129B2A25B27BC3E2D14E1F1E49C988DFDE2016CAE952BAB68987DB089DD1263D09091600D81591409FA7B20B750E0223B799EE5CD78B88967EB1B38A5FFC1B157B1B5BDA32BC2D757A4E85988B33F8AC6F0E9C101BCF12C26780D0B07484C21612AC97658E21992D35566C6B6B338A99634C68CDE09753ABDDE2723B79BB0186485998F276C8DBB577895DDB871036BAB7FE07DDC210FC4BB777144EE700A324B1E7D2584DCA8DBE6353B3C34A40315DED95AD9E5C60710ED718F4F920B7402BBDF0111C667D1CFA904CD4351E4A0F3931378BA9A839D8CC08D0D13DBD0890978586E8FB85D564194FA4DEAD67840C3FA5BC1C5E2E222F809D0562764EF52A9A4B12D952CCEBEFC724597DACD9B377572CE36917F8BB22D6EE2E76B6B18E22648299A50B689CFA74FD7F1CE3B3F469858B11BEAF6B1A27E72FB363EBC770F7FAD54203750089D66268D3A713E3F3FFF423EE40EF1F93E658FB9F90FC91F222F5522DCB3F09DEB78B6FC1077BFFBFD97E20C752FD2FE4FEFDCC1FB9F7C8225CEA5DAC91FC6D4D494BE45D401CB43F053AD54F495234667672F3209EB3A4BB291B085D8FA235B8A272749D2A7A3A27A23D3D3D3FCFF0CCBCBCBDA79F8C5283AD2C789FF8F9696348784DF16C2DC12EC5EF11089D17E7DF5865F9CA19EF4F7A81BED71C7D9EF80FF3C5A4192BDE875BF30DB2FB50ED77E75FF3E8A1C77757DCC5F9D577DC9842432AAF2F9FCFEEEEE6E9510A8546AA7632BB9356368E89CA1EC44705CAD692782474F48C724DBC723D88CC635BE078747B4D17AABE5ED7DBDAF7EFFA73FE3D6EDB9606FBFA81329EF7CB9CC9820C5ABB44D3CFF5DEE686718E399411C954F8238AFCE93FCB6111BB948DB36F1AB60C548B02A46351BB6DFE58F1DE919FC6BA97ECE3D345DDFCBEFECAA54C681337439A8910BE2E495087D58B60F9BBCE5F77496D8C72E5DC665DAE9101EF9CDCD13729A47C2AFFF0F76E33820C635A0230000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (20,1,'Disk_array_2D_(96)',decode('89504E470D0A1A0A0000000D4948445200000060000000120806000000A472DBF20000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000C154944415458C38D585B6C5CC519FECFD9B317DBEBF52DF63AB11DDB499CD88404A5710837D10AC8431E2B21A40AA90F4595DA271EFACE4BA5BE2221E853A9A2A2482D1214418B2008D4125292364E1C4262C7F74B6CAFC9FA6EEFDADEDD73FA7DB3677667379B84638D667C76CE37FFFCD76FC6AAADAD1DCA6432D52262B1C5DBBBF69C7CE2F1707D438344A351CF71E2924ADF95D5D515A98A548BEBB9E2BAAE78AE97EFBD7CCFF7FA5D61ECF7B95C4E92CB2BB9C78EF43898EEB577B44B2A55254B4B236259B6D801BBF2B79CECBAFE7BCF58333F677D6B4B828EE37576B4DBD333D35EAD979240431BD6CB4A4D348A39929F2F6E7E5C26A318329AFBDA486FBB2D8D758168B456A6A6A6BC8EBA90E4A22D92256E4DB5819197C97BC0DE5D2DBFE72999EECECD7B7333D3AB559148AABABA5A1CC7493B507A4330188C5B96A51465071DB7A1BECE7AACAF578E1E3D6A7DFCF1F73236322C4D4D4DB293DE926C369B5FC86FFCA6D0EFEC480DFADA5048D6D1A76C5BAAAAAAA4A9A15ED6D7D7ED46F49D9D9DD60B2FBC202FBFFC7BE9EF0FCAEEEE2E0529C12A1F7BE9B4D441BE30E625F17E1332B4B6B64A385C0FA5E4A4AB73BF844341EBBB8B9F497A392D5D5D5DB2B1BA5A2267255C677B5B62903107BC05FC9F4AA564EFDEBD52150CDAD19A1A79E2F831191EBA6DB9D6AA4C245665FFFEFDB2BEB2F24039D51858D5998C5443DE0DEC6D050A86834B474787C0D905D66AAAABAB6B8AC562FC66D1A9AFAF570AA0B771223D523F23232392482CABF1ABAFBE2A3B5030DB3604AFD4EFDCBE2D6FBEF8A2C89E3DF2FA5B6FC9403028584C685CCBCA6352D01B376EA831BDE095575EA98C658CDB2626E475E07E3E3C2CE70707650572D2B02918463F0D88D853BDDDF2F5445E516CE53866DB42F4FC028EF23270FFF8E187F2A74442C95603C5A7773305DCBEBE3E694E4DC9F8745A9E7FFE79E58095F0F43A5B0B0BF2E73367A4B1BB5B7EF7CE3BF20564A46E239188589B29397DFAB4C20C87C38CAEA043057133B45E1A9377A5F8E4ADEAAAB14A075E69DAD1EFCCA61FCFFF5E7F2B5611976B15E655C0782026C7E63BF4960F1C0804E04879E7A1C14DAF37B14ADE1B7B35D7B20C5943309295CABFB0112D0FC5F34C44A500B557CB07B4D1534E463DB1D81C86024383DECF4858DADA297CDFDFDF2FA3A397E5CE1D91F7DF7F5F09430F20A8D9B838DFDB00FED5A79F4A0C069DC5DC1016E3EF9EA1282EFADC73CF61F44FE5851F7CF08112CAC4317BBE1F87630C7DF28942B8E72B9BF2E671F3CF0A52C3375787C48EC5657E7E5EA6A7A7D5EFE5729AFFBF078C7FBCF79EA4917AF81B15A5B28057B4C0CD9B37A5D5DEC0A8462E5DBA54D87FB98C057C7CFF9B2FBE901A44FF3CC67A6F3ABB30FA67666654C4421719EBECD9B309A4A138BD7F6D6D4DE692ABEE13BD3D762D0CD3DA1A97801396C5C4BCFA2DCAC2A60C8BC572AE2A3039169B9C9F035D3F1FEADF0AC52D271B5B6939D4DDA91486DA22AB6B9B10641205D89148288CB9F979F7E56C03936B7939B75030D3E96D0947AAA46D6F5C26A7A6C4C2DCC6E6B82A78D570024BE0B15294EFBEDAA270BCE23AFE3CCF0A487DAC4639E638D25F635D4CA2B17A287157AA9036450562F15BAD8F9CC675F3BFE58CFD70E33B999C4C8EDE51CAF70DB0A82280758096621EB3ED0016A9923D4D8D2A8FCECFB9120927258BEA4F833898C7C297CBE6142B507D212AB218DFDF2358651306E08698FBBA0F1C907FFF6B1C35A006511790784B5C095B8269F6B9E21A85B5E87DE88360500D903F09E7C825A7A19966711065CCE5AC3125D19A3523B718C959F33DE4A0A228675363A34CC000B1EC9A64DD1818176A1AF405D2528295CD95660557BDCB15E4542917D1B5B39BF2EB61B139F46A16085A6973731306B048ED241E8FC3084DF2DD8D2914E3DBD2D3D323CB4B4B85D03353911E7B1B1BD2896FE97D638B8B328BB9C4A1E21D282A04C13BDADB55BB70E16F284811A5A44462E13E2CB38F20FADA312F83FF47D6D76509EF0E1D3AA470290FEB587B5B9B4C2E8CCAC4F8B8F4F6F6CA06E6B195E3EAC694D00A87DB0743AD61DE00D2101DF0009C231474940EDA8079E5CA15097BBB32323EA68AE7CAF2724107E5A958E90599E43075009D4E4207637EBE272E9DBBBCAE290330BD2CA07A53190183054D4E4ECAD8D8821A23553D92AD6CDFBA256FBEF4528105CD225AB8B859D8B8F8F5EBD7D5985EF6205CB36F871C64419F0D0DC91272E80A14C0881583AD3437374BFD912EF9EC56425A5A5A54F43E94ADA0FEFC1CEB6B16741DEF281B71B36E5141274F9E9448E2A6C8F296AA892CA095F00AEC0A7AFCC34F7F9A67416FBF2D237847DC7CD12D2533CA00F47EF25FFD5881A20118C62D2D75F0D007B3159315F19985D521A5AA15DAD26611E6C3A830D9C7A398550678B3106219DC5E8CB53C83C770F3EB1B9B3F9AADB06D41718B886AE22B197D2F31A9F822F6D3E1B915595B2596C5760F726692C992FD6B7C46CAC18307E5F8F1E3323E3E1E74C86C703852DE4FE6601B8B3FFDF4D3924C0EA0D8D5C9B973E7145D355940F9418CCAF9EDC08054C3B3D661BC3A60B3B8D3D37508D0C39E7CF24984E45750DA9A9C3F7F5EB1AF92035D19F6F758F31BA402A6B075608681450FB6A0681A967318C117FF7B5BF61DE8552C039B2BC1A984FB2E70CF7DF49164613CCA4525E1C028D1DA98929569EA36CE364B6114F5685CBEFCF2CB82124DBCF2357E7DF9B204BEFD5652302CF74E1DD0C92D2B5098A7199AF5C61B6F24E0E9710ACD94F3C37ADA6D8C56D9E4D401DB1107F9906197D9CD532ACFA23595AE7DB69FE7E36A6889CF10B47F1A1E0065D1302C5091AA6A650F2514FF50774ABEF1A4886BF978FE6B4F9F32E881601EE14858C995A24158D4602017453180825951462D95578CA0F23583C80A1EE47490B353DB29D48390220B2CD6EC4B62CF333ACF2BCAE8157FE05BA51A30BE2BDF7C2DA74E9D524C1007B1658716A38299C7D84064657FFB411526274E9C906BD79288826B8A677723AFD1A28C027EA3A3819EA20BB30EC92D5F21C4649D9984817B0EF6A92B045E45BCFBEED712689950DFB2A0168A189A89A7FFD79E475C7D90CBF9B4B1AFAF17B56A4CEEDEBA2AED47FBD5FAA479BC3E29C7D363DD732E65D4275C321C0B35A0A9B14165860B172E48570D0CDA7A44CD5557157E2620069BA903FD3FE792D4D0B952A9B4D2416A7B57FD3E3A3A2ACB28E6D853D6D18AE4C6D82410561F333531ACEFDE5D020BFA4EA5237AEC06984EA58DB0B77FF8417E8662E8C183BE854286A1340AAC0E697E0AE20619E65F7D751998D5B26FDF3E65DC4A78BA6F01EE31186E01DF0D22BFCEE1DD91234754683394282B8BB0DD522FC323232ABF5209CCDFE5C6D498DCF74F78CD817A34837917B077D691C3870F03339FB3C9AE5823F7C67272094A7BEAA9A79452495A2A61AA31F47316543500855F9B9B93FFF92C8858B67F8054853EFF8DE750A95C8C8A658B36440A358006181C9C159E3D18360F6540ECA1A0D74E9F562CE8261891EB332075CA348AF0D5AB570BC6E0DDC8A370DBB189D79E7D56B1A091C1C1E2B584C1AE1859F1ED76191E9851E71A5E7E3D94AD40E1FD8810CD826CFF5E295F2C8B7590F73F3B772EB2CC2B2A6EB2A08A774CC0F92574A55810CE109ECF82F24CC8529140676114C190B6438BD21AB42A0D50DBD85C589C29E7F87107E13D2AB3B3B36A01ED3DAA2E1863368F477B1CDD3D586CC75092BE9FD1CF33CF3C831474551986B5A71CB37C9D1064FC048A1FA54797F168FD2C81CDCC8E4CAB42C46FEFDDBB57229BC6D36983D173077BFE3B8A7B02BD4E1B4A5186AC9751507BC2DB6ACCB4C1EFCA653465DDC1F87314EE309C770B637DC5A15910D32F2382A4077DC4613A20D82A429BA9A0ADDB295C98D100C9640E130FCBC58B1755BA204879F815F23F4E8E7F651EC5B7AB98DB86852814AD6E5EC6D15BCF9C3906C1EFAA68E0FF3A84CD5AA0FF9F04EE2C366EC3B3B7B17E1330A90886348B1DE725405387E696E5D0E32794F2A92CA60F13C7ECB98F4BA867FF999F976DCC6B0013A33312371A0BABDF1925346CB0C6C6B9A253DD0B919A5381E5873A3DB67038FC0B746AC19937316E413A220EF560811868DDEA546421050C62D15012BC15425B878F9D0CC6A2557B2801267A05675054DEBADFF5FCC77ED00F9A1905822910AB1A5E92E8BB91D249953F7DD8C3AB18271CCE850212CA64726E21303C17D2DBDE8F43A930C50E64B0D560D00958607FE675AC81FB08292B28646B2B951DBA3110C0FE33FE757CEAFFC2F8362A4F39594A0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (21,1,'Disk_array_3D_(128)',decode('89504E470D0A1A0A0000000D4948445200000080000000200806000000DA2270250000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000012124944415478DAED5B696C1C659A7EABFAB0BB7DDF89ED90C389E31C0E21178782920021419646485C5AA4956656CCB9935FFCD81F2B062131B33B1A21E6CFEC6A58105A4644C88878A2109189476449E22C0B28C48921977360E772FB6A5F7DB8AF7D9FB7EA6B5797ABDB6D8E4D18ADA54F5DD5FDD5F77CEF7D7C652D954AD1EDFEDBBD7BF7727CF0D8C563078F22A779F9ECF5EBD0F36DAD3BC79CB0A66947F9F3307F76F2DF19BA03FEB4DBA100BB76ED2AF2F97C0F5984DEF45D0AF90E559C9BFCDB5FA110BAAEFFF5E0C183B7FEA615E0D9679F5D97482494C0B7F2F0DE4E01DEAE35B3CD63AF709ABFEF8442783C9E63EDEDEDE1EFB5023CF7DC7395B1586C2713B69B3120F4857702A3BF274A11E1711C0AC1E3F0BBEFBEDB9DFA8E04F5AD29C0D34F3FED2A2B2BDBCCEE6CB7E9DA37F3D0BF0FD67707E40773CD0FF09070E176BB3BDF78E38D1B778402ECD9B3A79E05BECB14F8233C2A6F7722F65DAD798779932F9048C23B442291A36FBDF5D6D4FF8902BCF4D24B5E06DC9A4C269595B7FE0D64E7DFBB6AC3367F9A47175F76BA5CAEC39595959FBFF8E28BC97929006B937BC992256EEB0FEC6A52172F5E8CBEF0C20B4D70EB3C6F77AE12ED4E11DEFF2B050DA3BA808760433DFCCA2BAFF4E754808A8A8ABD6CD50FF04305FC90E0159794BA2BAAAA5D0B16D6FB5C2EDD977D63791098E7AE59E1C85B5848A18949FAE6AB6AB60C3BF309F5ABCBED21AFAF90C29393E975B52C6BE4654D79DCB83D5EF2141450786AE26B2058D74B39A3DB164D2593A1EBFDFDF1E0E8682A1A090D7BBD5EADA0A040E34A23CA3F77B9A3D1E8B670385C6F9622A26D65553593353535C5ADAB9A69E1C2855454544477DF7D377576DE205D3F4BB76EDDA2050B16505D5D9D80707947F1789C58E3E413F7D691ED3BEBFC60708C868702B4E99EF5B23630D7AD5B47870F5F17CC818101F91E037BCCB6EE7C308747462934364AEB5BD70ADEA79F7E4A376FDEA4BF5B5F43570A9B687C7C5CE8AFAAAA92E7B261E5331476743A4AB17894EE59BB4694FE934F3EA1A9B1617A746D230D143464607E533CF3DA5FBF7001C513C954383459C661825801845EDE4F899B3582F02506188B4DBA74176BAA715FC856893910F6A1437F666174D1C68D1BE9FCF9F3D4DBDB9B7E460DA77B6C449F9AA202BEF6A03460451BE14D4463310A8542B461C306C689905BD7D398ACA122ECFDFBDBC9EFFF54E69C3B778E382CC91C2B4E2ECC42581DDF0373D4EF27567662A5A7D6D656C189F33CCC0716573174F5EA55BAD17F953E9F1CA765CB96098D972F5F4E6364C355989E48840AF81EE54F827102CC3BE04120AB56ADA202BE8F27136238F5F5F5228C71E6C395CBBD74213A488D8D8D8279E9D225474CEB7D1A93795800BEF23DB084B7D1A860DC75D75D223F0EE3A270A0190A063EE059B79F9902E12BEBC7465D9E8C7480262626E8DAB56B0CCA8C64CAB66DDB261A343D3D4D5CEBCBA7F5DAFE39C92EB69919FBA3071F242A2DA5D7DE7E9BBA8A8B69606444B0B129BB438325DCB871231D6676EEDC294A910DC3BE0F3CBF9231FF61FB76C1FCF73FFD898E9B0AA0ACC0F098333EB394E7C1EBD0D049B9DFB46993CCB36238E1AA6B28F3C3AC003F7CE821C17CF58F7FA403CC74250CF07A7232336187A5D795B052DC3C27F75BB76E95FD65C3B05F43368F312FFFFEE187893598FEE50F7FA0C3A6312BDE862351B96E6969113C28625F5F1F3CB9EE86203149B9722C9AD45CB3A20EDC63241223C64A5BA075589315A7DF74DE40B18FD309C6D3588BA24C00E71E5452523293E4689901ECE38F3FE63D251D1322A73DD831DD0A93190F0F00416014830887580D8B971E6DA7A100CA2B5A87B2BC6CDFB9AC7432260C0A03D6A7B217ABD2AD5CB992F4D0089D351500F39C30720D3C53CC34824EFC4186F85E373D2AD88ABD6CD9B24568C77C784081F3F166A1F9CAFAC1A050343E4B0176ECD8417BF7BE3D6F41A831C9EEB8872D128C89B2E08971B129B559A73F58FD9B6FFEC7BC70AC73C7D9F3F45CB96260B2C269A6E041A7313795A100086B23EC9596A824D14101E6C21C633ACF9898A08D4CC12BA102CFAAE667CE9C21776C2ADD3183D0D4FEB20DAB82E06F94BDDD190E53C04CF0B3C054F394D661DD93274F8AC141E618434343710901887DCAFA4174349E9989238E70999836D083070F8A8B854B4E9831D4C93AAC31EB1C8FA3DDDD1203638C19E5E7A078A3A3A3E209343309B55A23E221572172DFD1D121EECE6E214ED70AF722AF77ECF4692AE47D4699607C070BC03ACA2D6BB650F7C1071FD0CF1F5C2CF7478E1C11B76ECD8FE6A2F57DBEFEE0C409D2F83A62B1501522247FB7D039363646FFDD759C7E704FA3DC1F3A7448E62AEBB5C77C27CC037C7DF0F871D4F43872946731204F843C8D733A5DD7E80A2B261400037C60BE27C503E00B08128290F81B8A88BB4FF0E2C36C1103810067AE09FAC94FD751205045FDFD7D1C47560B619288A413940425B1312885F95DC292BC648C8431B7BABA9AC6589960793133831D1A1EA6C0E0A058ED2F7FB981F16BE95A7F3F352E5A244A97562C333357C950321B160F7F62E6BAB6B64E62F1E86810662ECF22F182301083E3CB96D226AF8FEF83AC848B984E97F1AC499B7DED84DA4B3235B32FEB1ECDEB185B672814266F8197851C638F73413EB7DC7B1F152F5DCC9885341A0C4A9C86D2E5A2271B3FD3FBB35C4FB027D44CA5809169A692C8755B5BDBF58686867A681DB405095BFFCD814997B7B078515D0DD7CA2E1A1C1A125B8944CA395F08CAC2BADB3547C5AC39DF69CE3391A8E8BA9B16D45573BCD645F1E45484317DBE200B899353977BEE0A5CA33C2B79A6271AE19ADC4F556525622160BE24667A9886933E510C274C4DCBB31BA0CDFE25129D661EFAA9BCB4D80819F0A45A827C14A771CEE513967C212BB3F2E1B9E5124A160C0653C1E1410D96AFBC00CBFB861B59AEE90E644350048D055051E4A7C68685E28A51362007F8ED6FDFA7C1C1FF92A49117A4A6A6A6B4F5E5D30B80F58238B842898F66B68F10545B5D4501B6FCC6FA85B474E9522991506DBCFCF27EC63A26D9382CD40933572DAC30A1D8AA96073E68AE2C2F138B5CD4582F78FBF6ED9364F79FDA5A693251428525C5C20F3690748E94ABAFA086CA09C2A1703AB422E4C0DBD6D7374819B8F8AE46AAA8A8A0F6F676EABD78817EF4D03A8A929F3CBE42590F984E6B67A317D68CF9539C8328392AFA6BEB1650D0D45ACDA6BDE910800688AA0F35236D4C4FEA67F7FBD5575FD1D1A33D6C29E7E9C9279F1461D8DD6EB61A190C681818A0C54C70928531C8E5DD2916C0302B11F017B16BBFC5BF5BB7867A1CC23E72A49B93DBF3F4D4534F89D239613AC57F60D633CE120E3149664280AF3F673A917340F810B878361314B910F0A08C1313BD14980C483880612841DB856E6D0EA9EF56B04237309D29A6F316F3F4387F620DB8F4E5CB97D3142B85A2137C476EB5A2B19682637D1488A6E8FEFBEF4F633A09DADE9082A05B5816F54C678A8DA48F31FFC72C2351FF237F9304D892A8662800AC19C4F7F4F4506565A5111B746D969BFBE28B2F588BE348DE65513C93AD06B77F4A1F8009FA47D4AAE5E5F4EAEBAF939F179A604B54798793534386AC360C4F64ED03CCD50B4042D7C29FBF78F451A98F5F79ED355136580894DCC95542116B6A6A28D1DD2BF7B0423031DF9A1C6BB7B2107EBE7BB760BEFCFBDF9387F9A9AC71066F06144AA18747E9E6993EB937926D2DEFDE0378BB9EE9FAF1638F096FFFF977BF230F2B1D7E9F49D067BABC7683D1412086792864587F32354B1E6A4EAE926CAE5E8055AB5422A23669F4E1B55998F17832A3F4742ABDB20EA728C9B8694CDB0465E1D6F389B96A72FBEFD91205EBEFDA2CCC4406E67C7A004669A9CDC2B37A48A3C432BE43DF67D7AE5DF4281B061B94E686556140DB6121E94D5A1684AB42574CD73F967B9413B0B03C7BD1A2A9298EEFFFFA97BF1083D1205BFD84E9A6B0A119C66476E580497454EED1025661279F388C98AB5B314D6BC13C78AF999A5CCF0875F0843B6A8C7B743F91A3585DBCFDDAEE8E7BD8BBFCFAFDF705F33ADF47CDD8AC4A49946AD632106DE6C0B5ABB4DC3C63CD87B776CC6EF63CBF3E70403007785FD366FD0F4CC557CD540A780684413C27AD60550E3CF0C0035CE205D2D6A1848187CAD9B5206EB6B5ADA18181292999C0E0C58B17A76B4EE53DD25EC46C6A284B1F65F73AC1DA2D09193A57BC9142163E8432C8259FD533A6CCF210CAF1F8E3ADBCAFA83469B069841F3BA64A8232CA1B9C37F0FEC6190B8C98E451660A1F49E08859652851601FD7AF5F17DA1E5EB1991ACBABA55D0A4CE4460A43792D5C635D30D44A672F7BAD5E08190D350E03453C179E0CA10EADEDAAAA6A1CD1A513601CACF55EE9A375DB3650A35E2EB916E8AFADAD152553B45A8795CFB8BFC082076682950F98C57C0D3CEC13BCADA8A81467A71254847AF001B2D59E7FFEF9EB9C75D743F83871C3B8DC776DB2B4A2B2D80BB7CCF9C0D45428235EA6B8A6D65C7A8ED248732C5172554F49668ACF5F4A2E2E893033140EDB7E4FC821557EE7B15A5E47B6700245A5E5948A478599611BA65106BA66EF7C4E5A7355831A1B5329AF1D157C94A2D639090E072EB7DB71212D0B8E3647F9A933DF46464753572F5DD4E0E99F78E20931AE8E8E8E9B6EE546AD09149A171E2D452DCD2B24290273D6AC59439F7D864EDC25A9189045AB33049599E6FA9CEB37D4FD11B69A96D5ABA41102CD5EBD7A359765E382094B01A60A53F3C174DA03C6D0D030737C9A56AE582E567AEAD429F1048F3597D2B582C5E28A61FD7258656936655B2F1F9AD1EF482539736F6E9635BBBBBBD95B4CD1BD2BEA68C853275E41D1992FDE5CD79362C046198BF53FFAE823510056F8945BC511755022AE831FF47A3DE9F88FC9383CF8CD6FFE4D8E83716276FAF4E974C292AB244B0B8BD7855EBBD01A45FC67A6AAD32CAC5DCA38B158301DFFD5FB00BFFAD5AB721CBC76EDDA34A6537BD411932DDA033769C104ADC8D6A15CA5A525148A18D68F7086F88B10305818A0CF2747A42A387BF66CBA2D9BADFD9C818D362E62307E47E7CF0C13C04599595464B85EAC8970F6E5975F726818A67E3D4817A2C67B16B9301D3F2D9871540866C8C1EF5060BFCF4F63CCE7B8742243526283BF9274E24BB83EEB482612192E04C99771346B246B8F3CF2C8ACE3E05C2521AC6A2933F6A98D1BA151F4CEFEFD7482CBA5000B029687FC021BB3BA2E242AB07A9558B7B5B5CD2AC9E63A0E5EC689E3D3F7DE2B987B3B3AE838C7C72913537201A655B760621F721C3CDE23F7A8C9731D07DBB141C356C67D7CF366C17CBBBD9D0EB002401810287229E3DC630614DF55F957120D19A5E7F6EDDB338E83739580AAC4DECE983FB8EF3EC17CFD9D77A8D3F4CA301618705C7216A31C45FC0746575797283EDE0812A660F36A4892630B24274E9C60E5308E83E77B1A883F307211DE206282DD663DAF8E66672A8FCCD875ECD8B18CE3E0F99CCCE1CFC7162F982C78B7591B8309608A53C06C66B76C1C07F7E4751AE85422A2BFD1D4D82874EA8CA9DC3114C0E9353A7836390E3EDE3BAF1348EB1EC0C326F656A0D37A9AA86A7F957FA9C41A4A688635DD8D1B280034490DFE7A9602A02BB6776FFBBC05A106183FC0564D381F47E6CC1B7199D63153B36762A215FCE69BFF9915732E45444E81974EC86C8A000F0C8297733A82C65B38F03C0D398E83E7EA0BE0C06784DD2D99E59F660A3EDD7BB02939DE72724FCF9CBEAACA225F3CA3D73F4D23EC05141F74B3FC5359BFB401D8D53DF3CC33423BE6E3153FA6D5230A80388CA114A0C05F92D10740E6884E9CFAAAB3B35318A5E271B6F8648D9197797471F2E1C571337B8029160EDCB0AAEDEDE25747D0EA381847D06805DB8F66B36162CDAB7C7D82310BD08E35190BCD87C20BA66925EA0FEB83B61F6EAA4D7B3DF0459DCCE57A1D4C5D7730C6C17DFB24EF905A9B695547B3469329F3854E94A3273FFB8476B654CBFD871F7E987E6B291B6FEDD7EFF1DA07DE7BCF380E86F2984AA7FA15BAA59251CFA45F5481CB9723438B121414A9B8A109B3D01041B2F2B39F6DE0BAB25AEA65C44AB8527BB69DAD676D1D7EFEADD4BC46C60BC603276936A0B00760A2FDBC67CF160A04EA2407B16266C3C8865B88F70F2CBF815660EA1E4F46D307D50E3535D3268FD1A3C01B3B709BF9E0D97FC77D99E55A0E6AD0E1F4185D55D4FC0883CD2B5BA86CE50ADAE4350C02CAAF30E78B5BCCD795B679D3AC14F000C8A9A05CAAFDCEFB4969EBD7AF3FC54CD740BC624A717945A4BA7159493216F57FA37F3B9AC7DBD59AE64A686EF73463FAE6F5FAF5D77C855B9ED25D71CDE58E2562617FFEABE9DF881FC0E4DC209698B6D0A97D3BF464EDC030DEF08D6B65A34303D36479F3883D70EC7F0108698FD5A38C52720000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (22,1,'Disk_array_3D_(24)',decode('89504E470D0A1A0A0000000D4948445200000018000000060806000000D9AB5E130000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000018E49444154289185904F8A135118C47FDFFBD7AF9BF993C45132C8B81AD45518F00CA22E0457D979214FE201240B5D78830105575E4026A3E2A4EDA4DFEBEFB50B276EAD4D4155511425E338B2C772B99C596B9F02CF4B29CF44E474EFFF87BF96523E88C8FBDD6EF771B55ADDEC3B25C6F8E6C5CB57AFEB78745C551253CE92FA1D590BD3A313C42A43CEF4BB1D2967BC01EB1CC607D2AD56D70DDAB7D48753F2308C7DB7DDB65D7BF3E5F3A7B7F6E2E2E2DDE3470F8F839BFA935994EEE777CE53CFA6AA38BB7FCE6C12299A395D5FD109CC4E2654DEFF9D77BDE66EEA397C7046D95C7330B943D76EE46C7DE5AF8483F97CFEC42C160B5155C01242205615C55A4A51721EF0DE1342C055150561181401BCF7D81028C6A0AA08E3BFAC840A80B66D314DD38CC330607DE277D7313ACF3711C4188C516E362D2965D6CE63EA48DF6772B9FDBF69F8E51C591595C0A08A738E1F7524C40820E6F2F2B2F52130AA10BCA7E4CC3D6B1104303475C458C3B42863DF136385B3165585ED960320788FB302E3484A89E394D03CA0A5E81FC739C561226564990000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (23,1,'Disk_array_3D_(48)',decode('89504E470D0A1A0A0000000D49484452000000300000000C080600000024BA3E510000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000053E494441544889AD554B6F135714FEE6E199B13DB6E347E247E224240DE1212A955208AFB41554455D7483CAB28BAECA4FA01B547E032BFE45B7A08A765321A42054A9905425C1896DECE03876E2C41E8F67A6DFBD0EA88B2051B5231DCDBD77CE39F79CEF7CE78C120401DEE7B97EFD7ADE75DD2FB9BC46F982927AF3ED9F3E0EF3F73EDF29CF154579C0F77DC7717E7DF8F061E77DE252DE95C08D1B378C582C76914EAF514704FDE16101FC1FC11FB27679EF6FDC3FE0FAFEDCDCDCD2EDDBB7FD4313A06807890C6EDDBA35E3FBFE351134CF3EE799FDAECBFEEDFE3F26D7A4FC2C12627CF7EFDEBD5B7A9B80699AAB83C12073FED265FBB3C545A5B1E54055F6605926FA4E1F4EBF8F3E85F4916B3A80E70738F7C9193C7BBE81E4888E9011A2AE43BDA18ED4EDF5A8E723164FA0555F8761A7904AA524620EF55CA947FFB4133650554C158BA8BC58463495A36E52DEE5B8435D1183B843F86EEDEEFA7F2D3FEF66B3D9BA5A2C1633535353B15432A9244712A8961BB87CE922E68F1EC5D4D42472D93124BC017E9C3F8A50ED15745541D8322074374A0D2C9C3B8BB9D9594CF2F2B1D10C8A0317DFE7B270AA15D8913032C9044ECC4EC3E7F911FA4B33303B6241D7147CD0DDC7B7DC57CB1BB042218CA653288E266184344C8C17E41D11D3808A00E719C3D77614D54A19A94442BD72E54AF4C2850B797D6666466617305BCBB2303D9DC3A3478F64F9243A0259CABDE565F4A35184348DC804B06D1BC5621A4F9E3C19227EA0EB537EAA54A08F8C8095854B79F9B20C239AC0DADADA5B3D217BB47B5DABC18EC5E8D39367E5D74D247351944A25B9EFB192E2FD9862753AF25E6FE061696909131313039DE8636F6F0FEDCE1E3A7CF75D1FA6A950CC0392B1E80CB8D5EB42B7C2A400F7818F9D9D5D0C3C452663327145E8515C02D1E1651AED05837DCF87467A884727CA2AD72A4150F81614D9F73C4423119AAAF4E741A30F917888BAE24CEAAB1A443BF458C5307541FBE13985816A024193A5D2F9A152AEE3D3C5459C387E1CA23A857C1E498672EFEA55E8CD2D782CA52E1D2878556DE012E976FCD831566E1AF95C0ED3FCF6C3E9D3E86F6E42D77526676276322FAB344B7F6363A4643C0E8B099EA0EECDF979D4580591A448A4400A093B01EC2829C94908833D76351EC337A4E966BD0E43577966F0FBA8A6DCB97367777575D56E34B771F6CCC728AD37885517268D860DECA2CF32EA7D071D22A412194D0B6161E12C1E3FFE03A9A42993719C61A30DA8AB12A936AB106265D2990C6AA5355228CE868E497407EEE0806E3D285C3769176752939345ACAE3C4322934584C988E615FA4237A0DF80D469D3778454DE20C5161616BA3ACB186C6F6FB364869C12B55A9FC6862CAFA485F8C9F41514C9BD173B3BA49125A9C1A6273D4C7232CAAA78073F231FAA03E478C13E2F8F84C344358AA8A5C3D75489BA4BA445BF69DC1BF49F61A337D8CC21A26ED3CE543C39A90C41A183512AA812A66E982CD966D282017556E2E9D3A79E2ACA57AD56258A02C1F5F50A4E9D3A85594E1636892C799206DF712A294C5450417052A0B2B9B98593274F4AAABDD11DE7C55F65B3E8351A1200E1B758C849BBF1F171A4D369490B31308EF0FBE704ADD56AB12714C9FBFC685A52A850284840A3222926FE11C1389748A0DD6ECBFB678674D4B4442271736565C51DCB4F589CAB30CC10A7C60BECB2E3B7E95834769783EC97661303A2291A352036598ED781EF62AB51439B0DDDDA69A3B3BF8F1D36DE126D14EA7A444F6330D55A1D513B8E9EE3CAB9DE276D02367F9355FF9DD41053480B9912F5579C4291585CEA88FF85686CF19419F49FDCDB764C542468345EF70878F76F6265D90C03A2C2520000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (24,1,'Disk_array_3D_(64)',decode('89504E470D0A1A0A0000000D4948445200000040000000100806000000A6E779290000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000007D54944415458C3CD564B6F14D9193D555DD5EF6E77BBFD1AF7D8A63D1690F070060424AC4013C646C922DB2C461A468A50B28C94ACD820651B947FC0229A153B56D10488128949C691F10C5826360663FC6CDB6DBB1FEE47757555CE77ABDBD8D89308924869E9EA5655DFEF7DBEF35DCD755DBCCBEFE6CD9BFAD8D8D8393E8EEABA3E4A3DE7F9ACBFA9EFDBF41FF6FD2DCEAEF3DB3DEE5F341A8D3FDEBF7F7F09EFF8D3DE2601D7AE5DEBA9D7EB239AA68D3A8E73859F52FFCEF9C3FEFB4F82FF967353920C59B55AEDCF77EFDE2DFF571270FDFA75D3E7F35D9480A5D25CC387C9FC8FAAFCAE49B1B81E4A32F8FD8BDBB76F4FB8FF22484D607BF6EC59DFF8F87883E79C1B376E0CB0BAA31234DF3FE2FFB1FF9740DF02117BBF6F48BBB04D15426EDDBAB5AF5DB45028F40D619D0945A2F9EFFFE0623A93C968C9441AD9EC730483619522F6D9FE657BBBDDB0D55E28953194E9477B2A85EC4A159AAF08EADD77BE75D669B4641BA8556B080403F0691AEAE52D18E124E26D7165D36938076D3ACE6B7DAE83BEDE5ECCBD788EDE8E245C7F18E148F80D5F1DEAB1D5EEBDDB28EEEC384FBEFE2617F01B7A3C1E7FA947A3D1742A958A5158EFEDE9D68E7E90413C9A8255ADA03D11433C12423860C2EFD3C8700DB8B685E3E522CEB936F29B1BCC4E1D91901F94C5B9331FE2ABBFCDE0485F1A895804D15000014387A1BBD01C1BD1C23646F83D95DFC2DACA123AE978B22D8663478760D64A70A92B60F8A04BA0560D56A58C4AA988C2D626BE532EE17B5615AFE69EA3B09D43C83430403B215347EED5347D8DD306135CB7945CB95840717B1366761557180316E631F77C16C9784C4F2493C1D3A74FA77A7A7A068D743A0DF6394AE58A8204E18FA5A52CFC7E3FCE9C39839D9D1D944A25B5CB2A168B38BBB5853AABD6C8666118061C564451F3FABADA4F9C3801CBB20EC8C66C1B3F1A1AC2F4CB970AA2BAA6A9F3814000897814E5601043FCBF755E56B95C5636CF87C3280A82E89FF88BA6EC602683D9AF570F9593BD9F323FA13F5F4E4D7936751D7D7DEFEB03030320F27DDAE8E8E8068348AD66D7978F1D3BDA7BFAD44974750DE0E1C37BCA314DE059AFC3A6F3B2CBA21732EF50A572515AB56C7C387C0A172E5CC0E79FFF01B19885301DF66464594A4EE0AF13DF36DF776A3544A2510403419E0DE1C5D463B4F7F62B9BA2B365AB4E1DA24793E0F95EE6B304118EB6E1D489E37870FF1E067B3BE106E36CD9E0AEAFB2A4080E77F1B7C6E70A57B2BD1D534FFF51884723F164329933BABBBB95C202B32CC25BF93C7C4601422141F671381486A594D69542CBF20CD4AA55F8F8CDEBCD3AAA0C68796505A619222A1C65C873E24D5926A2AA81A9A5BD06CF3650AE54E12794A55743B4179040E4FCAEDDBA4AA2EC11DB4B8CA6B92A2883ADE0E7B20D136C652553B7F6CA4912EBD0C9373E9E176E94A24ACC6A75757581B3938EFB55D5DA1309ACAE6CC3E2B781FE7E44A311262108935017C80AA95C647F5D62BF6DACAD916EE934892C1A89D01113E3E333181E1E463C16A35C0801BFE9419D963B3673F8ACA3033D9B9B585D5D4182FD1FA4EC91817EA422A67037128936A6C6558455270F94A5ED0A797CCC647E4435AFE6E751AD54943F6DF138C93783ECC21C863E18548109CA2459D20225F247E7C63A7E2171900B16171798E0E0EE949065C4E8A8F4556B284A56020173970FF62E1190DD6E3EB7DE75E949FE84F95B72ADFFF63D4BBBD8CD69D0FCAE359DA9B15A5A503B28D3647E9B01DB7B7C697140A5E271578BF9F7CAB56CDACDE9A346A3F8CDEFC2199C027EDFC8C8C8AFC901E185570B45C30CC41C5634160B22975B433E5F203C2B282A22232313F602AF7932F52C0311D4384442DD1662D23D72722B585A9E5746A5ADA4820271816B9E7213D4B5E93354EF576A964AC02611B15528C30C86141AA5AD04CAB23BF45912FC8C0FB384B2204DA7BCB489D89E7B398FF6EEF790DBCEAB73D23AC21B6EB3A24572CA57D45F525C1351455E5D5BABF5A5D3A49B80A54B8F085CCA341CE51C7D9FB3B523D5A7C8C8343DD8ABDB922A9554C681C5207C342241CBB4F013E61DECBFCC9123AC4858415FF3AE8CCDAC534E12451B0E6D99AA78AEB21762D029F245C0AD79320A114EF3BE40B430685BF860876392C5107F4597F823720EC772C8A934DBB3B17BD7B0853FD80A55CA596C050811B3A50C264F744C4C4C607272B26EC888910A94B84B40D2474F9ECC2A45972F5F3E740CFE90E72DB6CAEF5EBC50C46330F3527D1983D3D32FF1C9279F1E3A06E3ECDF9F9D3F8FDF3E7880BF140AE8ECEC54728A8796A32811E69CCF074699D8FC7932890293F91B3ADECEC07DAA55039C3EC31C837FC5D59FFEF8809CAC01FAF1CBAB57F1AB3B77F077BE73F6F35EA26BBD2CB4C46D88D359CEF302D95F6A6D92C88E1FEFC6D8D8341E3D7AA402A912FAB20B3CE5F94B1A08F35C6B44FA838637930707D5FEF8F1E35D3991693D0719C89DA74FB1D1E40087B06641541FAFAC6F22D81DC7B367CF7665F6CAFE89B246F3FA2AC5D19A1C30C9F92EB4363333B3EB9F37713CF90675FF9E71E4640C37B9E5E4C993BE18C99D13D0AF5DBA746972696929BCBE91DBB97CE5E3EF767574B2223D58595E909E52765A5749A779BD6C28E75F5F3949606EBAF73D8D15758B45B653B9C0B60868CEBE73ADE7D7575C8E4957A6804A64ADC2AB6C4C5A4A934650671CCFA64784CE9E6F245ED370BA521DFAE2E2A2DBD5D90EB956F98908EF0A2DE4D778C3E786B22FDD383333BDE6D8F510B9AFF44F6BD5282037CD73570000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (25,1,'Disk_array_3D_(96)',decode('89504E470D0A1A0A0000000D494844520000006000000018080600000005E9F8940000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000D224944415468DEE559596C5CD519FEEF329BB7786CC7B1E32CB6639B903DA10941590802140414A4AA2A45A4CF3CA03E21DE7800893E50F5A51201A52A9578404195401555687042C8AE40C0C106123B5E623BDEE338DEED19CFCCEDF79D3BE7FADA9D4953200A52AF747CCEDC7BCE77FEFDFFCFB1E1388EDCCDE7A9A79EDA883DF6A33D819F7BD0828BE7DC090DB79BF313AFFF16ADDE308C63535353A7CF9F3F3F7337E563FCD40A78E18517A2F178FCB1B4C029F88A9F9170FF57EC18E69C417F2C954AD57FF2C9278DCE4F2CB01FAD80D75F7FDDECE8E8F8455AE06C3BD0AC7B2DDCBBA49C2178C6717CAB374DF3D8E1C387FBEE89025E7AE9A53286956432F904087A1CAF8AEF85706F37EFC7AEBF43ECEFE91D5448381C3E75E8D0A1E9BBA280175F7C31505050B00B6EA8AC1C6B3671EDCF5138F7707D1CED1C95C1FCF1CE3BEF34DC49B8520AA8ADAD0D2512094FA09D9D9DB1575F7DB592C20618E3F8A318E7FD1F0BF787AC1F4E87AB63B66DD7BFF9E69B3D1915909797578FA4B90D931DB665CB2BC25555D539A170D88AC5E3924C06C5B2E2004D8961983F28CEA5528E244054416E4412734981B215AE69C65C3732163A9366CDFFDAC8E0708964422C3B2039E190C46231094842E28E254E0AB45A664627BDED9BF430991209D8A6040301851B3292C8C6486BE0C3308DF989467654BEF2BF9DC3D375AD23317C636832271249442211090402976C086313045F8C0641A5C40C469C3595AB8CF5EBD7CBB66DDBE4C2851E696B3B2928C9A4A4A444388F02748598FC8F31BF43E3323939A97A2857AD6BEBE894FB6B36C8EAD5AB65FFFEFDF2C61B7F97DCDC5E999999916834AAF6D618FE1E74AB9E58487C0A97DFC8808B3F275BB66C96D6D65669BE7846CA6A374A4E4E3E99936030981153D3CC3D496F5C195A52C6C7C7A5B0B05082915C292F2992B56BD7CA071F7C20B54B44CCC2D50A1306EBC9806B32E16B5C2D03E2969595054A97950586870623C4C9CDCD259E6973434EA2DB9059D334D2D66748737333847F8B21490E1C3820B3B3B38A585A057B7FE3BB19CCFFD5CA950274F9B4AB4BBE04211515152E413E6BA0B01A1A2ECB430FE5CABE7DFBB2E2E93E1FB87BABABA57568481A6EDD9216D049E14C4D4F2B37B12C8B0C4A4EDD4A69E81F909D3B77CAD2A54B3D2CF2B518978A7F68624236D4D448C377DFC93FC01BDFAD5AB54A627309858BC42A2BC14F65785C4E770FC833CF3CA3849C894EDD6640E3EF4A4B25525C2C9F7EF1859CC2DE94654E4E8E8C4DCEC8F2E5CB65DDBA75EA775F5F9FAB006E44CD112CE9131535D7DEDE0F06455929BFB35111FE9E8D424841914F6EDE2C307939DED0E0C549D5FBA2D7B56BD7B05F4A5974515151465C5A097BE216E7E7CB93F0C6935877E9DCB9794CB634B9A42F7F691114D027A1504850342CC0E55E862FA651903550DA2F1F7C50AEF7F68AD3D7A7BEBB34CFCFA3B0A4F3A21A53561A8F464BDA88ABB19511E3DDE31B36485155959CA20CE2718F5E1AF78E1D3BA4B2B25279279410B4972C59A2DC8A56C23033369BF036DFB46993747599D2D272594E9C38213A4CE9B0E0EF55F841FBE3D9B312407818F20BDF17C389F1C8238FC8C183671533C425233A2CF8439AC61F035D7F3A754A26C0F82DECBF10D77D6EDCB8214DDFB440D1F9720B5E323C3CEC097A71E86123F649BC6B39724406305F870EE2FA158593B05485585DDAF21D3C85C2E7BC4CF4AA3170FF7CE182049B9AE47A3CEEE1E9FEF8F1E3CA58D8C0F7AC4D4BA16609CC091373E32A699289919111B82463ED7A15CFE88E14D66266BC06B76B4D1363AC5923D55A398A3947114E410D0C0CC8B3CF6E8487F5AA776565E55893505E9148509949B7D7FB00B78563B86D3EBC214CD7479B46C8B0918469383DB06223372AB52BAB5528205F342C85319750F82E9D496F7C136D88DFB17FA50A2D3197B7A42BE081C14131C1EF54B858EA9697C934425E141E4BEBF504AF7957FBB8345F617E21EFAB2B654D2A09D9BAB87CB4C768AF511E400590090ACB1A9F96098C7BFBFAD14F6352898A89D333B372BDA70F85404A098D3DAB0D0AD6EDE7DF6B61BB1685E48AB50EDC6F746C4CC6C627E43C2C24910CC8F46C5C6C2B21D73ABBD4BCC5EB35BEB7A77E97FE1D430246B923C3376FCA18B00B429612400C7CD8D8730A0A5A88E55A78CA4F2FE9272F100E2B2A621BA62DB3F0CEA1C1213717988E328E18046B817E85E1685CC7E333E5A38DB8AA8C43E5184295C6F934160ADDAF04E5015402E3269540E75B929F271BD6AF93FBEEBB4F8E1CB9226D575B54528BCD4E7B995F572DFE710A4417605C000B198510C6B029ADB0385AA8ACA7086EC7F8C7C4FBDC737F4095852A6636E9E60F8D91A1175A1EE684D086208431609797974B183473CE6A244E968CDF9FFB54264763528D843D367A6B81B0336187406F2130E9313DF8CD24CC2419CEC9937C14129B366D94CB9771D83562D23E38AE681F1F1BF52A283F9E270FD056803E07C21D05DE0DD0C0F98C1E991E9BE510ADA7BBBB5B09CB32E7B3E5D5AB5791A9DD58FAFCF3CF674DC2BA9F44DC7B0B252693F0CB6FBFCD8B13E5AEFE984AA15CBA7449456F56024F3FFD74D6C4AEC74B41C72BC065127E0F317904CCB20C9D8195EB87C97CFBFDD5F279EB88AC58B1C2AD6616E1F81B0DE2B750DAAF1F7D54DEFEE823F92BC22285489A1C5FC9B6810975BC5DDA100D76EFDEAD8499094FEF33D5DF2F7F7BF86195845F3E78508E4109E499854E2C31B5C0289402B8212D804252CDA7007FE5C0857AB1BF5FDCFC87297F1564FA94C00A22E54BA6999A1F3FFB29D4597040F31273BA5848F9C28E1FD77BBF08737E7DE613AFC6CD8AB798569FA0FDEBE9A19B512DB6B5B5056C5A286B75F63D3D3D0B04F5204AB4D6D673489622EFBFFFBE9AC33C91CDA51D7CFBCDC71F231687E406AC2B9C766F8637F15541B424D3FCA74AEC3CE850D1D9C20F7B13D6D5082B0D006F10B8BC6AA5C539BE328845C3E98B9725182D975E24E48E8E0E4F40FE50E9FFFD17D076F8DD77158D9A3686A108A2827E9AE0D5E5F61446F972E6CC19AF0ACC1A32E121078E1E951C600D0397C6A6BD83C6A22B307D7E305E7BEDB50178C1328620D6E74363934E59D1122314712B8EFCBC5C3037A6625F80824C272DDA8FA313B01A8B3716C5B83B4F74C2825F17151628D7585EB15C795A2F146EB0963614AC8BE7A42D4CEFA37EBBD85EF24B9F01D4893827570A40633F4288655B122D8CA21A89C358C2D84A2759C75BEF62A4E6F1453C3EF477F219005608063788444C39E4E6E6493C362BC1B02B03C5739AAE793C97363F1FA93426EDC4312DF9F2FC5975C3C0121FF2BE69EB939D8E6B042C45C2E595010F21CDCD384E9B4D120EDA2A093196E9BA5FF7996A62C6587545188F2BCFE9EEED93952B2A54FDBB67CF1EF9F0C3AF6559694C591D5D5297B67ECCC5E70DBE9B51954DCA3B381A60AAAA72350A841919EDBA2C36728185FD4A4A8AD45E7EAC6CB5BBFFB4AC0200EFAD900F994BBA71A22FB726C5C8AB41DE09CBB265CB549EC886EBA797B44ADA5B6D1E2CE3EE1E5DC04CEF99B43920431418438261B9FF31A4D6A994C1C111B972A549B66EDD2A3751EE653D03B032C0E1673BAF36A0A46FE1515740880E6F56FA8A83551743CE679F5D94EDDB43EA9E88A12F1B265B01CE0E6B316F12F434E16CD28B77BC8AD0A5208D82FB98C31DAA7060E26445477E162B500B897CAF85602A606CFD38059F82B02830567E8665AB8B47D2C610120D3B72B1B5551E78E001191D1D5587BC4C774BAA61CFDD505E0861ECDBEBD7A5291DDEEAEAEA249E743C453364F2BADA9E4967695E3B4C4C4C486E618917FF2898C6C61E085094D5DEAE02623F896AEA15CCD355D07C2E4A2D48965F7DF595AAABA998BD7BF766AC7CFC7D29FA97717A6615D4892AA8D77F1591C62D2D2D95929A55D2F14D8FAA8858F665AB547415F430F6D755D0E9D9595FC1309F4777EDDA25C9F60B184DA988A0EF7FB255585368BFDFB9D3AD82DE7A4B1A7D27615E45301FB2D4A517C1A04D5BDF2EB214A512F2A2F30AE0C4BA3A473A3B9BD509D67F41A6DDD6FF2E06411FC571DD8105C47CD95F2738FD6CD9B2057F2F7827E3FF7619674358471B1BA50D9637B7A8D2D0A8B4CC81EE7EF73A1956C9DFDADA32E1B3B563CEBFBEFE5A86D1FBAB32C307DC887D6B02AE15D3406F7721A96482BD4F36374B047CCDA4AF223C5CC88037C18C0054446D6D6DC42628BD802E41A22BAA2CAF7AA09B8F8E5A1208D44A7D7DBDBA71F4DFAF2CBE864D22FCBC078506B1F1282CB20C1B91286ADB7F1DCA5CF2D8631B21A0EB72FAF46975C8CB7667C3368258DE0D3A2DE04CC0BBA2BC8680524C860A71AF0DFA517F5F6AEF979A0D5B65686808A173503199E9CA588F4F20BC7C0EAF8A238415A018A08018BAA2E1882A1638664595CAB3900F2AA5A1A1419D3F386F01DFFE31B00E214C1A90E704C2501164401C756119087A06A2E930506A7E838F41123D323262D4AEDF9A1F2DCC2B3271C49F4B261CCF70D5CD63A67FC818D9FE25E17D56B7842989E74582A15432E9F0AE65E10223E3FAECFFF334D2A12DE99881603268990130E3A43C6B4B1938503A77F02F988C1F50F8266DC1013D601989B984E3FBC712700D673180713B30DFC78989C9C4D5EF9B60DB29E55238044FFF1B7E86C6BFCEEE897A0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (26,1,'Firewall_(128)',decode('89504E470D0A1A0A0000000D4948445200000080000000600806000000D57A7A490000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000351D4944415478DAED7D09945C6779E5F7B65ABBBAABBBD5AB56CB9225599BE50563E34DD8181B830D780984254372806C0472CE4C801CE624B3713287335B92C984330B64920C13E684B01A07B398252CB665E345963759B2B574ABD5EABDAADEFECFBD7FBDD77A5D5DDD1660036EA9CE79A7AA6B79EFD5FFDDEFDEFB7DFFFFAA0DA594BCD26F47EF5A5B5CF3D9230D3977FB896FE62BFE1B18863158ABFDC1B9509EA500886EEF79AD19C66F21105E0E709D03C02F79F61B73D12754B7BC20AD5A8697DCF714D7C95BBAAB3FCDAE4FDED5DF11DC51FDE0C43B7B3BCF01E097F4F6FFEE14D33868EC9258EE5EF4E21F8B611BCEAD51A0F6C99D3D5DCBEEE82EC38A6EEDB941DE6F38E9531D5154B526E4435DE3EABFC8DEF30AE700B0C4C0B9BFD3BDE1D9376CCEFF224EFE4D4EC7E5C6B858D653CED717BDF8472AB6A3CECF185346391E8D0FCA72E75818E81537FECF33939D95F4A9A2A566E3BC9C528FC5BF16EE9CB8FA1C00DADCE6C2C15EC78B3F3E506874FC224EDE99B1FE98BC3FB7DA9D96BD869D3E3FFBF6CE55FAC1FF3E3611AF31DFA59E94DEA076F269D9BBD76EB71F2F42C21F918D8E3845F95786E9BDBFBA57E656B9618FFA5E5413233A62FC7782FD1C001664FFDA62A150FFA8CC19FD954A1BF384D7F9E0A715F713EF32CA2FC63EF10BC69581AD94D559BEDE3FD5FB5ED98C2C078DE7A7ACFB74C0E00BECFE9EEF845B8CC3D18FD5BA46F1D1DF59B49F4B8C921AF5FE201855452FCAD97270A0184FA80FF97D231F887BECBF09602D821FA97575D57B897EFF877BBABCF7756EC902EEAC04801B45FDC651F3EDB16F8C89E9D416BCF8CF36E48378E6F7BC1BBBDE25B7AE2EBDA8D34EB754DBEF12B36BBAEBEBEEAF57AE5CCA897BC5CE8F8547E372682B31EDF87D613DFEF5C6E6998B8F4EAEB1837DF18572FEC02A1DA48989BCD5977F7780BD44C7A27F2B6F30E6A5600A067136DF79C87B207A7F18814BC2D8142732E3205EED3D6FBCC73961441A0073CA084782AF4EBF637D772D083FE03D25DF70FB06D69ED500884D35101D54FDB1A8C7E55387DC052FE2EFB054BC4F1D519FF407E73E2677EDC82DB9A33BB73B8DF774FE8DDCB966DE68DDF95915C50142B1CFFABABC69B8D8EE63E1F3F2AB7EA024546258865C1B06F10EA3D75FE71402330C94E189BF2BB8BD6BA7BF39FEDC9C788F8545A5FCC371C7DC40D76FA6FBA8C22548B7AAE920632B345C25E5AA1F174C333828DBD490FA4A8433E76BFE41D56D45C160F88C7151E361B53AB4BC7F715603C0CC35DE1ED41478D6F9A776AF178B271E5217185FF5BE241F758B473EB0A48616C69D70BFDCC28FE8BF6FE8EAD500ABC4F7FB87E2E25C79EEC34D5658F8F9605AD63230D6065B2CCF3083D9A810C6B9C7AD20EA0A44493C17AC0F5E908BD40BF6F58557A9BF502543053102FD94FA439C4B13905F38396B56CC3F527030B9AB2C55182CD465F4D950C572D09D8A0DE7B835E86C713400BCD9D808DDDAAF4493AA83FB99FB7EF83EFFF6EE8BCE4A00903AA313EA96B0AC549433F3F21B1D03344FF2FED5A5DAAF547F77F22E945D9F5441D12AFC66DC236EE36BF28986EAB97411F5C394CD3E571FF69E539D12B9793E3755521F9A7B5307C8DBF896CEBC47E4C382FDDD54EAFC8DB9770FF6E33D263FEC1F898B2101306849FD6428D655C6C18EBF3DB1BFA8826B3533F8E6A0FB58F43EEF7824C6FEFCDBAD7ECBD4993EAD2AD23D3CAFDF66607D4BFA0DB7F006316A97292D37CE85C6FE0847F1676329AC01C0AA66130423F1DB55D9F479DCC6786C4DCF849F7DA5F7097E2A00947B8CADFE61B521720C9AF0DBA78F597F553BDFD9E94E4603FE33F1BF29C7CE7AFDC6CF8D8E1917CA9FF873B1E1CF84FF4703E3749D6ECD74EFFB5FEE887A2C7063A39637E3E48CF60433D6C76CBFBA2FC4D9358E44F9292FFA1FC158FC7B8D03F527A6DE5CF9F4CC7BCBEFF5C0D6D26D8A5930245E1FCDE42E377F7B9F188E5F8B7F358FAC8D8CB8379C515B032BA81B977813850D8E181D86402A6C69443AD0D18C7DB359B08A7E4DE5651334E7AD635D52C61B2B32600E19AA3E15E9012A9DEF0883EE8EC41B9C55864530F0EFA9FBE3CD56AFFF91B30B00EF310AB517C2FFE08EC64E585726C6E1ADC171B93CB8B7F00E335615F770DCE557BDDD47EF5C5BAC7FB47A49AE647D2ACA29A93D146F448C37CEEFE7B818FE49F5BAC6689C8F4C08B95934E9DA91A165F7487C95EC9EBE3E886321DDBACFC6B72ACBB0E79E887A677EA0DEE93D677E1035BA74ECC88B896F903FDFFC54FD7BF167767CB2F269ECEFB2E25A4BCA5B6DCF9F9052E8AAD81B8F9F100848D7F69C043E1EC1E8F993C68ED897B5B235FCDDCA4539838D4455B236D7AE197D0DF67985B5511AAE0766C1FE0B83B694D6430A3CC9395563739C6B7A86C08F65E2DEF88353B777AF3F7B00303DD0E99F48F4B7C7948265ACF246A32E99369F57B6E3860858ACE26D7D7BE6DE6655E47B56DEBE5EBA8DD0ABC7529B88FF5CDE3DD82CEF201120E3FB221B05C02A538CED339A968DAA1AAF9F8C73B9E7739F34BB2D3DD07387A3DCF40FA30B7416CE44C6E40FC30BF9D8E934712C1115A9D787C78D1EF570FE8EC61119E093F18471993FABEC70DA28CC7D43AEC4D1A4D86F8BB3DA14F72353EF8D63F3C3B3BFDF316EBC60FD7667C59678DC92B8A13EE51E92FFA626CDDD854EA718F94673FF3428FD96F88D587253F6E6EAD682A4C671E6B9A814CE583B562E00B456F777A49D34D796B25F5703211EE7872D0644A2825279DFFA82590D8A1867236AC870FDB1E886E001ABA08AF19F9A6553D3A67B34A6699AAFEFFB22F541A32AAAFBAD39296E6A6800945E653C1544B1B8C763A3EBC2BC84187E9F2C00190941DC0C3C59813A0FB3A637E7706E6B2F82A2468D5C7D3A922030253A625CE7CEC666A164DBEE9832A3064EAC4349E7AFA3CCEB5277041FEAFACB93F7F97F577F26B65580AF79D416D530FBD46AB559956229C28454D7404A107D13C7CD038C2E323E443D595D9F13A76ACD83C0B3C36D2B1600F5B7AD1A1A351B9F9E0A4E5ECEBFAD1ED509ADCF29F8E88E01476A41A04A97DAFFB178F7A9A3B3338DBB022396D893EEDAE1F892FA6C882A4D8A5D1B730655D79D89F38D5A804F264D94E1DA8CD12D9EB1DD176FADD22EDFEA3662A7DF94B9E958F25DA694D737F59703CDC7A9FE7A412CF5F130690A20537137F6B4AB5F5374FBC70C9380A9E01C1BB3308200927B6543CC6DD1847CBCE38F8E7EDFBD7B762CB28F1E688867011C27A140086EEE9A50E2F303318A4A3A7A2C1D7C5A43AB00962A99E2BB4DAB32B80B2C807D72CB79C6FE150B00C38ACDD08F37BA5DD147B8F0C2DB58BB2E88443A37414F4B9194B69BDF3456A16CFF4F5DEFA81F93B70CDC5084663A737E5DFABD28AE85DDE1FDF94143BA60A4BC3928792E67BB9332ACD96463E5528878C1C080876BBDF2E1BDE715A23963B3B3D9A8C760013AB5551716C4860B67603BD739F359C7BF278EF8CD9E00291F813979D817063D5F010320752BC30E0268480DF2135CE74A749927C6D78AD5B107C32F4AA7EAACECB1A0FB4AA26BEB120D83C90857FC1D4AD44C7BF6A7F87A1FFE86EE970008BFDE0440A5C796C12D38B71EC3ABACCA3FB97201D088E1A365953F1DAF5F83BF6B078D3D160A9F3E04460A1830C374A71F501F0C4FD89FA81F8B2FA06282F8F3DE4C548E63E54C3D1C6E155764008305D650622B1802394F503EC5AEF53F07B616253E052D0FCD7F9E3BEFE4BBCC51EBCAFC80E9C43A679179F0085DEB723AE8F90E533A864F8360FC28028EC007D0E691E7413BE7E524CFACB598B2900600C1F594F4DE82BF6F6D88755F410A4FE54DF72430FAAF41E7384A61270074B127E1F5759C1F80045251FDE42D3019FE6E5CE849B439D078E8E873C4AD477A5C6C8063ED650519BE26FFED42251A5F990040353E3612FED9A9FDE1DA629F798FC851DF1F559B2467B03D26D1A4855ACEB8B9BB2F9F778E58433323A165B918F939F3FAC0336CDB304BB52755B73B8181C591065FEB78E187273E3EF3A4EC7F61DAFD5AF0B87181C5283F076484C63BCD4B823F53AEB1AE1AE71CC339DD01E6C0073C594461CD4E00C64ABA736089438FD4E5890766A5EF1D001ECEABA3AFA92E761E06B56489714128DD7F8C4F3F8732F080A3E99C8197F5C8783047F7C69C367A6107FE660309F1A507088742F172780E0008CF03D0FA43298089BC469C5823D120EBBCCC28C9ACA1561E00DE6F38CF97CA5F1E79C87B93D969F895B0FCE74FC876CB9B8CFB017FE1F20B038365CD9966A5C79199D150EB728C11F68E19D599F1D02CE6E0112661E83068E16A0CE00760971AEA2F82FF5AFECBE7BFE65F7EFC71BF69B10F838A5D439C3D2809378592376DE9196E4ECD33F30AC87C0B55221D8583FBA16DC579163871D493EA6B703E5B02A96EB4A59A7CAE500600FA50F75F57D7C7305FB0C57B434DDCAD08A8CE74437A2EB7A463322FF6FDF0B7633887195333400454461D7173746A9093E1405CC8847A8D2F3E98219D9D3002FA03B563D6760A2B0B0028D59E1F29DF7BE41BFEEB617CA5A3D7B9DB302367A3756A380CA56C174F676748278E013EFAACA70362A2A657B4CEC8C64AB7ADF5D75F158AFF963904DA3E5EFB78F1432FDCEBDF5E1AB264ECB827DEA5AED0DEC7184CB30F004280947D3AA1EC4233DB4ADD0080DFCCBEE14D0529D2854B9309729B0086F5306F1F9D91DCA591F60EEC0F189B70ECB5014DA918B330717543DCABEB283B59AAC2545E0760AE0B24581B4AEEEB65B17F58D020E0F789CAD80F829FDB87E7F0D980FBB9B121ABFE15C07031CC26939ECE36926A70E5D4792B0700EF5F5D7AFA85D9CF1EBAC7BB3640208DA2110E6D2D7E5119D6D5A652BBFD50151C64571A22CAEDC1C7EB28CB62612F2707DA0504A473C0D699C7D2CB79374C0006BF706F79DD91FBFDB7F6BFD61267BD21A58D860400807F15B2CB6AEA6F3D8A4F4F38A1D89CBBBCAE9B31F94E18304FCDD3EFF62B2A52C5313AFB1DB1FAF15E666D0EE7506B82132422C126AF194C6C018C5CCC78758652BC22D6E71FE239EF8A864415047B0615C0A379312791F1082EFD00BF5B61DC16EBF1BC28F604708CB0074C4716E98BF43E74536873F0AA15038099496FC7D107FD9B597B33BBBAB758CF3A8E7A4EC5F10E84689D729453E8349B59C6E03F5B93F266433A8740DB434DFACD152DE91DCC89872CDAF8EFE0A4BB63C9DD5316C70740AA86ACFADD481A53B1545019441564E92E4F0F3AF5D75E1D890F8DA656D76FAE4B6CC7DA9977556D89FC6665A0291E40DB7355975C7C55A7E4D78B068FF5644EACE38E0608670CC2C148EF93E10ECEC731BAA0E9D871D72DB166007A017F20A0E7177F4320DE269F3D0D301880C273C0D7315D53F2CFE2C188DDDC178E1302448D759EF8004ED88DAD1ABD6201B060510367DC2EA9153F00CD9E7735F935EA3ED3347BE1E9F704AB839A1D494701FCCA013EF25C436651340DDE6A8BF36518AE89269E8AA0FF68C092F8120FBA1E897920A7CB2DCF8CA5B8C1D041370AB6ACE92C8A3F1249B03AC97A4697D9DA1B89330B5DC7C1BC9D011B345284E33AF4435F032B3D37BEDDA1592C37C143BDE68B0E10A008A8B81930CD26749B9D1A0DCD5B24F3FB1104BB715143D8AC880BB17E2DEC8277E985341C4365E1DA521F870CF4260745D6133031A4CAC7B9C24F6C59110C702786776244DD90D6D95C3A31D8552A45DDD127A2B5C12EFF0AF7ADEE0CC4A06AE8AC1A39EE4B791B060B83517C5D2CE50B4DADBDDC9C35C8BA6DC83AF83CF39425DE6657EA7B6B62F688A6D34DBF658ACD8564A39614A1BFE631473F1F31C30603DD80CC7FABAC1DBA7B6943FCDB1AD27707CEAB375AF005349527F2D1D8EC49ED9A9A84306A6414D23ABD055FD3D99B0022FD9B99AE92C7347E212424CDF200554163675D5CDC070045882DFB791F52D0E0F72B1300AABA2218A0165BBDE38783FE205961BD7377453A3CE7DD1E32B18E2FAB9CB87B6E0481BDC91775C4168540E70693120AAFE7A19FD69C2D01DCBABF26D003C78CE3640FF53700C59A074C0D1EFF3C04790A2670B32FCE3F56A4F2F705997CC79428D06A80C1B579668772E21EB6F57B0546D2D86BA0DA9895EAE79AE31DA35C73E113E2BCD28164D6D7763590A9C8DCA7F312D9CDE735CC5526E353E4B4FCBDE0299C77BD0A3400042659A91ACDB349F3FD78D24A3E1489BD2200706AC63B7F7632D2AC30BC362FEBD737DB9DDE065F0204D49CB664EE380234D8A4E54D17E1F53E4FD7CF5603266FCCC660812A7370FD784FA407C8C0E3502C6637FE2EED8DF5FB49A3F16EB769FE14FB04CD8D010B281174F10842F18725E8F48C365B1C709FF5F93A5F0A2FE4A48E8CAFEF70A1EB4DDA4EE3E2E2D87E57A4EB742D0DF1C2B82DA0C039949FC7C146D8F4FD3180988F470CF97D6B5666EB75F06245CAD5BC74ADAA638392602B775952E9859F198A5072CA032B0200B32A788D9E90295BB2E3F52598401A9C58EABB5C1D3C65C532781B6A6B0C6E0E03D7D963CBDC5A98219AB7310C5CA3A928640666A51E7C1AB0BE50025D2E62F4BB9A59A3A997060F8F6BAFAEEB9E42643503A95083BB786C21759D1370F9D8C2415F52073877595D3F5FDB8672AC92E87A4B6075B327C964C3B7B00FB8FCE390A6E3A840469A010FEC4D38A79274ECDFAF91A132BBE1A7E32258609A66D7920900E2C999D3072977960052968C53473FF27FE58F5FF90040F9873A7B0F1FAEDD9993E055AEC4D36CB999DA40696D04E5F6BF078334866C07D5B34E225F68678CAC6DC06455E6600669E1517BABA03991D2ECC4C8E240250CEA7786A7475DF77F6399DD83CCFB5159376C144AC83823FD5E77281337CE8029A226C527FBB24E562437DAD00176928CE6E3DAD0455238392EF9E3C7E70F4F30061B19E42603A98C32A8842ABCBA42F865D98B4A6AD3726ACB4DEAA9573C00E626E37250970D2CA17A6E30C45DED4B9E3361363416D994EA9FEEFEA124323D436B3CB39841F0ABA14C5F5193E8E118D999944C41B35DBA887A5BB255B5D1E3DA26578AD071D333E1C6837900B0CEB7477BC4393A23A56FE67580730C34CCE4E8EBDF24435FFAD2A2C328F8142D332D59AED24C4F0011E5F3F01F3D60BDAA04DDDD52397020B48AAED88E83E3477A0B791F86B2526EF300E8B042A7518F3A872FCE897171A09B2774D7AC73B5964789EF9905314F9B3233E489BBDE93002E5825C1F12BA14C5E3527966BE8CC57D1C2E0B60BF48287EA748BD53E61CA6C5FA7149E3F29BD9F4E028DCD427978E2866BA5FFEB5F6FFB85544B166783EC97E02710DC10C16580FD55AB74C9525FB7AE795C0FDFA7BF5F3A7EF843294016C64746E662CBEAB5E048B9398582F4F6F68A5BAB8993CBE98E54B152E95F1100A8D3D4F7C5DED03B51B2C1D5DB08B484895687D92022931C98B1AAAF1D389DB78459F3CC8E9C3A1D8D68894063B3279A413527D74AF1D0887EEC8C621B6FD6F3A3375D213DF7DCB3EC17C86674844C9D5BB346073760A03B3B75ED172170F50D1BC49E9A126B721226729D54BFFD6DA9CCCECE5F53AA92EF3679DB6D927BEEB9E6A98721921DFE05C0486F458068FCD8B1EC298CAD080094368D9F187E8739CE691B9DEDA46F3877DECFEB2F351B7230B7C5D533727AF0C225323A796C81B275F622B0F6A92E31667BA4E389E3928369349AD3F972F2BA9D52BDEFD48BCC4B43723A3A507FF788D7D72763D75D2751B1088982DC58602504C9705D9DE1F6C4841410C489ABAF96DEBBEF5EC40CEEEAD52233336039B508442966CF96DB3C009E78B5549D50B6A7A3A09B1EB1CC374616E55DA69366002839BAEC13D67CB0A53180FB588AC7A64E9BB7BE2E690CF54BFEE8E8E24C061533637D527342D1A4E6D19B6FD6AF07E5B2D8C8DE228C5CEF7DF7E94CB61A0DFD1EBEBFF39147E6B3381BD4B88D24A8767E00008B708C18E7D1D8B2452280ADF7D9672B7E10E845257A5FD07F1BD4DF05E9D0C7E17EE2B8634500C071ED8B69E9D2BF0398BBA817149F74C7748BF514E879AC136EBAAE83AC3768756DF545527DE4D1053B76870BD0F2E0748091A90CAA3B38289318440F5AAABB3DA4680CF6891B6F14677A5A423C2E1D3C2895C71F9755DFF8861E680EFEF4EEDD923F791286EFF84275E1EB34704B6473886344958A065788FB185B00063905AA57900C857331E6E650B92831A0EDD691231223E0D6C888CC4E4C347C48404757973E4603AF53FFB5F6E33C4DFA87B9B968450020E6FA0852F6ACA183CAE05AB343523A844187C3D6948D784EEDDA21D54717069B0BBCE224C069F67A3053CC2A13200830E83904D781E61631B085D15148434D6C0C7C09039E0DD8E4C5176B0A17CF93A88D5BD7999B642BC1A2190001D5C7C6312903E98DC09ABCE1064E186883977BFA699486C725FFE083F386CF3FFF7C29FEE0078B59820A58AF6BBF1FE23B2800D56F9CFE19220BB2C33E406376B6B1220070DEBF2CC6D6B4A9A0D9F393FD53BBD649E5D12685C7CCDA816E69403F39F801B382038B216ABE06CA072D53A7AB8F3D26DDFBF6E9D7783B81200CB4B8760F018B53BD4DDD3AF61762DF756AF4F0B0046009966634710C660D8160E042043C7FE89058001065C101882C802684E6777DED6BF02DC10263C72073DF367C81B49186A5D8E3ACF200E66C351774558CDA86EE66A984ACF559F220180C0A83EB60AB3CFBACA6621B266A7AC7623698DAB54B72A74E2D306F044A030009011AB201F59C52A03309D44ED6E0BE4D02063A6B005074EC1EB476D597BFACD960014B00509D94879680696D4F65A11D7B64DE47CF110058218CA4810A2186BBE7A6E803F03C5963F08107AA940093D9CE5219E3C27210D581EE0D2452D0B72200E00E0F5738180C7C170C15E93AB5F20C6A6BA0A9E964025230D920C2E005D0590F2EBDBE7EBD280C1A079912C0C735BC8F4EDD4550BBBFFF7DA9227BB5CBC46D1C01EDB9F7DE455938073316B304CBD0B26AA92EB9EF18E7CD8A8000ABF13308A0C2DF31CE4F9F075884E7E28109349BE17D2618C300A51BF89E04B851AF8B01E086D75C23F9CF7D0EE56F28A3F5FA1420D99DFDDE036BD7CA09304EE676726534829E7A6A42071B1ACC019CA3AE32B0D4597C690655F7D8E9C6A1DFCC568B6557D250E97CE2099DB566A2935EC22285175E386DC81824661CD8236EA1DD8880622001A4F4DE074B4C2320FC3B6610B94C1BC7E57E276FB9A5F9796627B2D17AFE79710E1C681AB9B1311DD006805562305B7A060D7C3687F250B5E92528DF9728635ECF1A0998DEBE7D557DE3C6666943BD44907C00A0E7A187A417199BEA79960DD2819BDDBE5D6CC88260E0D88C09012017F2A18D191D386995C10798A8EBAC00681AC9222640448D3F856059085A8CF718308CB963C7A4822051E799A93E1884E7957FF2C905016357CFDFBA55F2F7DFBFB00BC87B304C96F6972A0F977A6DE99684A10DA0DE8C57F62F85CC9F7CD7FEFDE35DFB4F5FE0A25D3D190081A317D0148FAD013668C0A0E9060CB292A68C81993BEFBC669623D805386D13C134918DCC4477F366E98609D4EC10864D874D9387E01551EE2DC84EF80A13E0B391D10B66E6922D6A71EB519B86632A0D3C47F6F56924850C026F413988C16EDEAB5FADF55E3F9FF401F467F15DFD37BE513F1EDCB74F7B00EABD915403161EF7AF5993CC04C2607A5EE78A00009C77791AF44F7AB5A18BACE149F3757C59D27C11545E3C7C58CAA07A2B09246BF30AFC42D684CDE2B98EA429933E6F6EDAA4B5363BEB960D2A01C44A821B03269401068A5240B385E783A1211D400F2CA503576BFE2A0D9F8B93C99B18659D39D6ECCC52C375E9B66D9B4408B8097D37F81AC06582590C50BD2290B17FF3E187E78DA39101E388EB4E0158DD347FDC570D9F3D3D1DDCA94130373535B1325AC1C78ED5B0C92428BE2BA5F8645068C6F20000E99AC10A18982458353A686A34CD1882E6C3ED73468D8FE324AB98ED1337DFDC0C16071CC1E3C0F3331E1825828760C61B49CF9DC1A3417411BCD237BF891DF8E2408A78AF5025346EBC510A2CF75AA8DB7BF39BC541D5909DF2D594BE674F33F8F87EF300A4D47537FD5DB4C474F059E501509695262FBA48D33E295EEB2B506E01F50C5C0D0E9A59C0E738AFCE0C3251BA51BF5DB04409F26127CD165DAB23A87C8F956624BB8BC84482A1F8E31F2FD0EADA6B5F2B856F7F7BD1A20CE3820B444E9C98678C6CC097ECE3B7793ECE4C502C2A1D5BCAC8D6E7E7CB64C84901CCC45630CB424E0A990071A15C5E1965A03D32525F3532B260406648F199606936C073E52CC5736105EBF6A347170E7AD22B3732831EB74CB6CC9771D8A2844584DACDE740AF2CE382D5AB9B7A9E9495DA7B70CE004CC5BF0D9AC9E4B598C673EF5EFDB7DE0FEB794A01DE1FD3E0A60C836309658CAD68F629D6677EDF81AC006093BB061F7AA84ADDE77761EDCF39810A5E1FC7383520697C2E8EE395510636AAD57CEDC20B7533846E5E374A90C52EB49706302DEF1828376108F601D8D225ADFBE973F01026A75939B8FAAA8C4877EE2C560949A0F85E06913D026AB2EEB35F7EB97E6F441D1F1F6FF6E7210B94074A428C2AC06060C028E6030FE8C01A5C9C81529112643DF69898D8386143F9D01E00B263B091D4621CE54D6F12F5A52FB56500FBF6DB25F8E217F5DFA3BEAF3D4076C0C8026EADB6F22400659F5F8223AF8376CBAC061213C5F28F595F0213B4D2630D925184815AE0E2F15C214BF118D41A34BB08CDCEBE2F40E9C62CB4602C174CD75E769998070F8A3131D15CCC9BD23200C5E0AB642E7EFEFD64004E284D4C2CA6F564D6AFF57923CB424B740DCFBA5670A352C9916E59F24942897AA60CB449632708984A7A04D4F6B4067701184DC1346EA44A64B6BB71E382ACD3B53ACA44C9042344A60B4D65329B373F810303A9D825E45C7FE6796DD8F48F3FC40B276D78BE38A6C239EAE793D7F95993FB20836402CDCF5BEC14D2D96701969E0767082919BCE6D0751DEABD0343CB5290134079EC7310E363D9CDA10B3CEF15BD22C84807606AFDFA1BFD9E9E7F4CEB61668187F22D8F6C9CCF1EBCC632CCE1A44A3247AE176A60406CB64793D62EDD3FA5C2C0401B5353F3FD02D6E01180603DF594AEBBF93E7A8468E74E4DDFCD966447B3FD4B7ADFBE5D8CB437C17A9DFB27D000BAF899679A1709F279968A040DCE571D3AD404015F831C29B6B4595AD23F504278DE0406C0C7F32378E2C4A8EAFDB17D5CAFEBEFF6D74F3C71B25EAFF771295808D0CFE2F32AF98E9932F091CF2A75D12B9E01A0C581995026F5DEA6762318365CFD02EAC6E0392DDDB80899C1A06AEF40C74CF3C752907E003A6EA6F44A50905592DE8195EE17D96B646463DE38C22B18FBF62DD66A667DA6F337DF6F00ABC4F00731CBC5963E0441121D38B0803D0C1CD7DEBC59BCEF7D6F51E9A8E728C29093FD7D691F200DFECA2C033B3A721E4C205BAE0E4A2FDDAA655D8F20449C3C6186D117B00F90183E4EAAB06D4B374D16D0034B13C90C6256D28D23BBB594B0F667F6B10D9C4A060D1B0D1EE83DC4B1F9B71E689A438209D94813A88FCB2D793F33356E316F6913274A6604DB957971CBA452BA52FD27990EE622104A021784E8FB577819382F016395CA75B8FB164D5C9E862FBB3002FACF468D2495C0FC3CFB9E3DE2B08B9619B400CFD999CE9AD6C9D7BF5E2CAE07484B36DEC36FB06C13488C064A3237A09091F4068AA68EBA4F30D10052CBA9BB00A202F024599943CDD6B40DA9315811B06F90F8002391007D4FF0A59D3C1E874002B59B9CAB6083887F138CC93DFFFECCF3CF8F23E2ABD8FE95C423E401F09953A7C4E7441898061EE0D1CFC6F1EE573C0304FDFD85C6155734339CD3B97A0DB8D5D4620C1441C00CA496EB8E1DE700A89FD0694EF35253D9A9237384D4653C36924030CB8C348B53B0208374BD9E5CAC316FF868D0C02A2A990B9877EE6C44B17B98D0F87C86426A2CB047F0DDEF2ECAE0024ABA4652D2659B3CC5DB6E93FA17BED07C9EBD840494044619A563FD9BDFD47FD7A6A7DD3A409FA57E4E074F8E2D5808AC568404C889136EF1F39F5F78654C92E1F3148AC1D2860DA51B8D9D994CAE043086066A773DEFCE16F075D76933A78D18414167FFE637CFF70148EF3AD094060CA83E26FB010092C9852200806E2327C0A2A6D38DAB369341F40BF41C510BEDA70CD4AECDBBE079CA0EB7A4B2E1638F3D0BFEAE611C072BBD1C9C0740383C5CF2508333386CC29062230683548C2CA00788711FD1B9836EB3D057A0510340313259265CD6C58C4F5AB93A202CD5F8FC430F9D061AA7842111E1E38F8B41F0805EF55233BA6CFA073081C5D93C1E83CFA30230E82338B9C3E311883069793CA73F4FF920E8706F0E0D8973C925BAAAE0B91360BAC24867056916B365608B57583050F84C0EA0E57D3F40CB9290121406C1CA6805CBB16375CEC107175FAC339C668ED41E4187A3DDBBF59CBC6EA1726D3E25829FA13626664D711128F49AC0D1F71C64028999CDCF6666DAE2ACE3261B3030005A6BA6E6B8E0F33BDF59F47C1E34ED7EF5AB8B7AF7E53BEE9039503E8F4D30782815F91EEE871E22C6B95849E08B7BF78A4913CB3674A6B36703A49D642B7C6EE8D147BB7961086B7EB684EBF013E3902C1FE75BE2BA856619B8325AC17E77779ED9C906891ED4D15131324B9FCC166327E92C1B2582AE9C3535EB6B78026DD49821C840D6E65CE0C936AEAE0C98B104108D1D3D02EB740602C023786206839F076816ACE36B99CC69EBDC2905D46BB200375628BCF1BC706C6FFFFE05EFCFC3701A007A7D896B0A8E2B3589BD55DB4D07FFCCEEFB0CFE9BCECFE3BFBA9E6600CF8BA8C37A1A97DD3D04850B2734DDE371B8664DF3A4A895CC56068EB53EB59E994EB7CECC67F0D23E41F2054C646C888CCD0EAEB56D9BA665BA7606814E9E9B4D238A7D73E28555408ED9C80123CB906D38C308BA2FDC78A3064B764B7D459CEA793A1D9C4C4CB5FA8438533A9E6919D8124596828EF1D2FE8349F58BF10061186B4A67278D416739840C9796324F71D28612C1EBEE9811975E0A6B3CA07D826EE00010028DE462120692B44BA06889C8C8413A3D1BA5C0A1894CAA8310D41DB548420E5A1E819582A347939F706D82C6616712E00C01A410E75D7ADDEB74B3899F71009490134B3C277C2607368A083AFA1BAE6B24DBD14412E00451763979B6F667A30BE04AEBFFF9AA8093478E5396B1B1760030CE30D06A89CFA9565CBD1C8C6067766EE82B65AEBE5A5368DA1357CC7CB65199D93484BC1E80E6892D6252380770D72E5D9E65075030F8268011736610EF35B92297460DACC2FD308074DCE6451735D7EEC179F3BD26EB7D945911E99BEE3C93C50BAE23A0D760D673F510CEA7BE6FDFA2E055C11E13FFF00FA79FE72A65BCBF7AC30DD21819118BC7C7DF2580CBC2BD5E5CCA657089740C3FF2480F3D00375E14E2615C3817702259E89AEC775AE62F825F36F0AD046364EE9703C2CBCA0AA7AF0C8204C8134F344B39AEBEC99E31E85A3813472DE599B147CF660C8D10331F996420134DF6FDA9F5649024BB430E1636BD1F0C720EACE2665BAF94E85B6F15FFD967F53E293936C0E2ECD82136BC4298CCFEF118640F07E711224011D824A40C91F693CE60AB4F98BF4E203D16670D09483CAE27731CADB781BBEE92B1CF7D4E3F3E2E420FD0D59286ED32DD398380CB8B047D2905522FA71F98074094CB5906CA31065590F53ABB49D70C009820622790349DB994CBE41A428225B95C8BA55AEE55AFD227CB4C67402DB083EED4316349A5D817571C47000A299B32416DF7592E62739F7E7A7EFF95DB6E93E9CF7F7E41065B3846E5A69B74D998E324144A5576F31C3E26E5B38C24A091AD7CAD04860971BC00A0092841C93CC1190EA7B194F6B3242C701D82E3F4E0BCED25685D2D43F98BAE5D5DEE1C2007EAE59082850C90ED9A912EAFBA4A2FB0E0AC9979FDF5CDDF7FA3F632986CB1122CA0525DBBB369C38106BD072D4BBE0A6F7883D4B910939771031874E5361823475F80CF59085407E85A7F06741B0118216582FF9192149FCCCEE90B497901298E5D03005A53A6FB965B64E22B5F69029053B85C74021096C1601DEC5A52F7F1BC837360A693F2F95E1E8B2021B31060FC5CC80529C2AF5ED08B40729CC8E245A3C9AA60DD3D0598A64E9D9AC9CC6B2DC702714B2FAA75D981D186195A25A3B58268CB0E7AC653A9458F9707C09A3565135AC839F418944D77CEBE78C88CE4F46DF23E0B591F20EB191C06D340E998BFE61A9D71FA80F83C67E568BE22E8BACEC8F4726C1A430046334EB2A6D0650996292F8BD8BFA66AF6D9F1D9123C09CF895D47760709983CB2BDFC9AD748C86B1109386C7172F958EAE8F5C5A5ECE861D3EBF711B8DAFE85FFD7A1846AC7023B3520070C3AF5DFC3F9755D79A506C2C0830F76B2F4E3E7EBB89F4BCBCACC74307F444216FFE2EA724B0FD3609B67600ADB01A1756D4BDB9232FB5CF258B503C269093872A4864DCCDDBB2506ED73AA549765A061065B9B393A7A368312AAD54D1E0C9E0396F033D3B6640C3A6E93E0C03D33BCF496B7347BEEEC9E652FF1E6C965BB709C86C640BBA8466A99A9E8023B80691079E10A4A446E456477CF79E749C06B17F177FF5BDFDAFC3E90AF004CC26AC2A6B1CBFCCA47ABA6EBECE7774385910509A0CADF05AB32D84BD5F290811C2A206B093D574B64F572D566BB60C799FE99D18639E40C24A82D1BCC03C0D8B2A56AB231C21F6A40F6C6CCFA84666D663DAFF625A52298ACE15962F16FEDDC79E50FB316D91322E338F85C58A9F03840E9969A3302C161778F9771016064902E00CC82F3D780624501596116869C6DE379A49545321BA79984976F81A13C6C3E8E416699FCCE77167C31966D036F7FBB4CDF7FBFD83090056CA5E4DA4066BD2E03F11EF60C48F75A0638091545ED359F920216A21CA4D3C271532A0B6D00F06201592E80AD414F19462DB3EFF8C582FFE2B3814F3E39A5E0C449DFCC5C076E5D9771D462CA022999AD62B657290B9C1A8564B8040606D2C27B2D5073055E41B756D9BFE79534C8AA80810210CC24C319382F0106B72A4CDDE43DF76876A03E135C3964752F74DA4BD6F2939229333C170294818F96599C19F19233BCCE8C6EA5FE3EB0D149948764901C671301883CBF334092E33591C9FAC2A11FFFB82B4AAF6402A85D781102205B0662E467E5CCFEFBDA999479EA0CB658DA5CF0DCC64CB6630AD5CA02A73B818383450BE68632E03FF040B3878E007B0C30A56078587270F4346F31DD3B9B21AC9BF13800A507AC120E1F5E509373A2C7C68076C204FA780F834873E6F06210300733DD4B96934749B7CE05381AC904920D309E4CEAF834730990EEBD7B254039A86B772E49E7CA25FE3045020C6E613261B5DC8D1E82DB5265602201CB9681AA39B02FD5BF96FF49023EDFA7928517342DB59FB615C4E9B980C949CFE6A2C7EBAE13877DF4A4DBA6D70720B80DB08320F3F3D0CA06034C478C4CB591399DA0F13859144A0AD73FC986E072A3DE17703F91FDB1267CB6F3F2CBF5C40B3776E47A6FBF7DBED54C50B82C3F5BCC4D9474F00204781C6E7F413A010843EF7CA77EBDF3D24B35ED53FB1950ED2B90D504469098C29FF5C632908B439C5CAE5B4647AD9728F822CB5FA36A2C039074B67C595648CBC9140876E2108D7B6DDB67F633C86E62E858F691DA8B085681AB68D839A321E20211320582C4B9736A619D4D24F6E099E1434392DFB2452AD75EAB6BFC1C40D275E38DE222B09402BA7B9FF30E78DC60EB3973EBE65A029C5319A6CF46C6F725C0600948405112A44D00B52F8096CF26CBD7B3B70A00A117AC601FA5AD5BF5C524FD4919C86F9F650E1AD50503669A9AF6752948738BEF37001FA32F8881B13C3536369D29038D970800B24420E3CC7D24B2E85774548BBC186D8C67D6102A3BA590D785E18FFEBD690EEF54EACD08E37A7CA3CBAC38BE243A7EBC8B1D42063B663B98990F6ACE412EBA11600E3A9B3B5C04EA410298BD0DDCFBA078EBB9E7B49BD71A8E8C2C423EFAEEB843D3AE45A640D0F2901666BBC795419CC7E78F4880710892A9EF7D6FFE843B5FFD6ADD1ACE015C167C400A0C068C0EDE8537614097A47B56160B7FD8E1741988F3A4B41458DF032404876E05A30CE4B22F0E96070F90D5FEB40C84F95567E8018C3635FD72C6D16CC9F0EC85D0514BB6A732649E819758F0BA9D6940181F8EE32979E081BF4E766615C0101F328C0B76C5F18D96529BF1E65D761C6F89407934713CFADC830F362B0538F93CB4BDF7AAAB340D9392756F00D9E661E0A9C9B5279FD47A9D3A76062F87CAA007EC4050F033FC9B81A84372082666A74A7A0834930CE20C9C7D7A2BC2D917366CD0D243094ACB40BD7F1C7B0E950C8F198C8D2D5D06B2B9848D3237FD831F9C5E22010F40ECA5D3C1CB04F6A5F600B284B337329A6F2D5101B42B47B320CAAE99D51E206E59AB11250731113EF34F947A4C9E7AEA8914141703FCB719C69E01914B06EBF5EB7CA536E2857E4A814B394056CC02147AE73066058062F56FFD960E1C03CE8AA1CCF7229B081452BAD6F4E4122E6DF640B779808099A803877DD29DF3BD7C8D52325F01F08255046FEE9147F4B6C0D0BDED6D3A706CF2B0B9436F90EA9F0B96E2E29028993A3ED35630CBBF025883A0E0CFC5E6CBE51E3976CC5CA2D7FFB37800F345F43E5E8641D2F785C916B7F9FC3C00DA698F91D9CCCC663D24E23EA4D4B7F0F83BB27FFF9F721FBF22B27A3700D123B2A71045D762476BF8FF9698D573D80AD0CC34C00C461E7F33EBF99881640956DEB1433C808274CED66F1D5EA4BC7DFBE92A80B5385906EF5DFDDEF7EA0A420784252A9886FD065D5A667EC899725207EB70CBDEFAEFBC533392057016B1BF221844923634CD6283FE86656B181AD47ED23D570531E8F400D390A709B0113D008E36F11232C09900A35D9D9F3581612691C3CC16B534949A0048DCA0CA988356041B4B0022D51CEBEF440E623B8CC79F97871FB6C00E79A8E8760CEB1ED4501755C3F06A492EB2D45D37D0327BFAACF769DAA8C30409753ECF1F82A06B478098F564115DAA71197A62D4C80E29A0C82805F888C2FAF53AB05EB22C3CFDBC036F92D6F5F3238A40D37CB61A504AC6D0BBDE2521F4BE0380EC7FFCF1325BC11334AE09537055F0CCC2FD192F33005EAC5C8C5BBC41906C7E9BE0ABD696B0BDC432A4330584D906103642E0FE9908857A9F7EFE9E7BAC2B447AE0EFF70C0110A82376E70D836BE9CB6979573B70406F15CEDE011C74FC64854EFE702440A01779A0A2A04E9B49374E9F28B29F264E1B3998D3530006BB872C012933AC0008181A394E2173D6910D1F760AA3CC8F4AA6C0E0B9CCA20A62776754843AD3B55C29582A164B3239699E81015467B850E427F108AD01F733810F64D1AFE32D3317F022EBD2960244B40C3BCC03828F61ADDC1F347F599BBF1869F79D3A95BB6D72723358627B2FCC252CDCAEBCC8E6D4C93238338997481D3BE99E0D24561EFDAC02927904ED01D26B0B33AE9F5B0D154C299D4700C0F25CE98C4CEFB9E926DD9822107CF80C1A4EAF4DEF21BD712108B5BF04396019C88B45F56CE0C444FC123280B14CAB37ABE969C0B3F7410BCDAB33594B60FCAC73CB691FA1E50B984B3084950022DDACEC3DC0507ADFB66D7B3BC7C737154E9EDC843CDF8117FB5200B49BD1E394320D1ECBC6F2CE9DDA5032937597110C405F50E26F14B5FB2CC0C07EC3348056E0C415BD087C077D00C7E5EFEFBF7F360EC30A9784F14A20CE06B225CCD7D232706A6AEA19B8945F7B89A93DABE1ADD9ED67821D65CAC325B3FCCC1685FEB467BC9021D2756CEA450061B503044C44E30F0F1CF87C1618D78B0CBD0A9271A1655D5DF4FD0BB0E3B5BC2678FEF849976FEABBDFD55B5A5ED24B745F7FBD5E03C01E845EC089FB0640C1B67476D227A6E97CE619BD4DDE77DFBCE984CD9CC317ACA4B3811ED72E2E8E98F1227D00E30C74BC55BFBD36010F33C18EE5A789F6CB0180E5009159C5A25EC43F982D8C6027CBACEC6F881CC276440E1CE0B2620B829C7FA3C8055B4476821A76F49A26BDC4E082734070592A72ED40DAD72730758F01F4BDEA8D6FD4FD05CE0632BB3528D8E8CAFE4064E682D3EC8DA51FA5A0CCF51090925CB95C451968BD04D9EDB56878AB797B4902FEB203A00D18DA01C258C63F64C16065C0A001310D2FF1B722BC5E8D3F656617A7A6EC3D0F3FDC7B89C8D6B5F0132845B7C3596EC3073B5ACF45CB02B61CAA065D5E26B38F4580A2C28B5F78410900C1DE0341511C1D75F2EC5B90EEF15E5D06F2472DB18F310206400B162F0A6D2DCFB2DA9D0D76BA2DA5DF2F57CC7F7E00384340B433947E6BA99901859305452308ECEF0741E3FBDAB40B3540FF44D4EB45D6BFE5D8B19B41DA1508C0B682C846A395AAD9CF47B075B329319C9C3C9A7DE411CD14A55ACDE14AA0996455535A06F20AA1255CFE52D9ED6632BC5DC07F2EC1FE8503E0A7A830C236EDCF56B9705A361B1F74EE1679FAEE7FFAA78329930CC347BE0E2C71BEC885E520782D2250C59B7BDA9D170D25B753F024C6326520223785C8B2FD585B22BB97D4EF5F54C07FA900F01300221DB47089EA22CB0E6DB7E308C45F21CF85F2F1E52F7F869FBD5CA41FDB85908E6D40C25648C72616074BC51B917C6ED6F727C0175FC1F6D001916792ECF633741EB62BC7D42FE90F4FFE52FFD0F18B00A25D8561B561875CCB7D2A21F68F448E63E3EA936F731F300DF6C74E9CB87E0EEF190220F81B2648EDC333000DA864DFB8C8242FA36F63D67EEEDAFD52DD0CF50AFE49D4363D08A3050CAD5585D302063BC32459D969A5F3A04D76BFE282BDE200B00C186409EF90650853162EA78A5A2650B2341EAF8460AF6800B401C352EC90FD7BA935742B32D8670D009601446BD9D6AE443DAB6EC6D9FAC5CFDD4E3BE873B7730038773B078073B7730038773BFB6EFF1F6F7C8B1BF3E2652E0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (27,1,'Firewall_(24)',decode('89504E470D0A1A0A0000000D494844520000001800000012080600000041EC1E9E0000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000369494441543811B5C1CDAB94551CC0F1EFEF3CE7799999FBDA1DC597C29B24227951304245A556AE24E88D68E92AE81F701141DBA27D6DAA55B86FD5227011AEB216891712830A3135EFCBCC9D79E679CEF99D5F230A4584D3A6CF47CC8C59E2C5E5335ED28D2B3F0F066BFB57BA2B85EDE7B307EBFC0762663C14DF5D7A495BFBAD5CCC4A3EDE5C1FBFD9DF6B8BED913CC8D15873DE89DC4BBD7845DAECB4DDB65738942E753F197ECE0C626620E286AF2E7C23257792973E6A1FC5717A3FFE2EC7D3D88ADE9A1FC7A195D9B3E927396823FD3A3F35BC15AC3A2E67775D1E5CE5093C1F88BBFD5AF7C3AAC7411BBA17A3262FBBB4DB3D2DABEDE56C6E63AB25DE4E45679F30F1FA7CB53BFAF284A7EB0B993C3DF6CCE07FBD5E9DDABA69EFEC3969B43BA95B1D4EEC347A3A7BCEA477CE93AF97C4730D320FB23BF8A602DBD7A22722CEA5C80C7EABE5AD5DAF4B4F1723F94222F4C09749C624ACDF924E3AD8C8E1C7A2E9DEC927BA3D977DBABD31F865A3F5078ED4E1D2059EC8CF5D4877C358C8EEBBE06EECDE29EE556DB659783FCABA6EA7E9C4B939DAB224AA96613229AD69B87FD76E8D5B3BF6FDB75233835FF9626D15E960DEE72EA5658D11CD329A22213D4F52256D6E1245B0188955852B0AE7CD70297966F029EB252D0AD40C0B8164468A110512606549AC2A34256C32416344550921904288CCE02731EA1496129A122642604A048D11055208688C685DA3CEA1AAE6BDC7A79431836FDA36A973281052C29C23C588360D3A1E93BA5DD47B529EA3DE837364A391A4D18818823283AFF33C8F55858D4644E74866A808A92C094C753A2810DB963818A0AAB4759DCC8CE07D2E221E3020316553FC8D1F8D462D53D13934040C083162DE13016B5B625D23DEC3FC3C4E843CA5AE1F8D7850D70BC0121081044411098002F6901F7A7F356D6F1F7355B566228B1148790EAAA82AA24A363F0F22C4CD4D4C957A674723D03AB7082CF3880101A8811A684424FA97AF5DFB52442E03C57B2B2BC7F6989D595A5E3EDB71EE68D63407AA7EDF5B96A1DBDB4855E1AB8AA269F2D0348C542B601130C000052AC001AD992531331E9229FE92019DC3B072BE28CE3C531427F7F6FB2F74B2EC501EE3535F0D06B72631AE7E371EBFBDAE7A03D80686400D04334B3C2666C6BF91291E112007BAC0C21B4B4BAB716BAB7B137EB80E7F00CA6336C53F8899F17FFA13E957F4FFE373D1E20000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (28,1,'Firewall_(48)',decode('89504E470D0A1A0A0000000D4948445200000030000000240806000000CF45B90A0000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000B404944415458C3D5586BA86565197EBE75D97BAF7DF63EF773E6CC9CB99D9933A37373346DC6746A94D082404D12956A42050BC27E4844F547240821210A2A42FA11989009D19F402235210B31F152E3389E716E9E339773DBF7BD2EDFFABE9E77CD3A769C4693DC102D58ECB5D75ADFB79EE77D9FF779BFB560AD454FF63B2B975D3886BAD4F57FDC8142CF9EB56A77F07EDB8DCA83520A1F66E37D69D77D383B7E08011EA81E78F7DA03D531996B7A4DF5D3FAEEA1EBD1E3CDB91418DC3732195DDDF7A98CE22DAA7CA9814B5F1AE95F398EEF1EB81F464DE32B233B1057037DC4F9A9BE6B641F1E564E54F71EC5E503555B57D7E853F6B7F896AAF6924096EEF76C5FBDC68F9AC71E771DFD232FDEF4921E38798FBDCEBCE4DFDB795908B56F1E3DD83718BC18AAFA13E1847BCFE08F6BF5D6F5FDEF28E58EA909FD2813EB332E9F32F3585B558D2DB573FD1DFF06BDCF9EF6FF10BE908E966EC2E3C638693F3E731F9E7C32ED7D06FACE79D1DBE666DDF5AE6DF79FBA4DCF7B4F777EE53E81FBE1855F1F9C8ADAC92F9A85E543711D3B31933ED7B8B3FA58B868C7B10E693AA636C6A173BB1A70AFEC2ED9093C82B2DA6F8FAB2F247EDCC690BBD547F7BCF3D9A5E7F4A1F6E4EF77F52203DEC5271AA71B41FBB4193413F89AA9DBE3C5EBCD75D1EFD486C57AF5877649FF466B35693D6C4D5B6ABAF1F7C4B1A9DADBB7D143A01C273A6EEEA4026DFB4DE395AF7575FD6FA5EFF881BF3545FC4B6F58B9E5510FCBA7ED68C8B0D54ED8472A4A7DCEFE9B043E4206E6EFAD3E1816CCADEE940B1BA86E12A9AB1B7F34B7051BDD6277D1DC58BEC3AF073701C53D6EC4A18E3BE6C10C028B6762784A394B87B597D4E0EBB2556A6F6ACE3C866FB6BA898B49BDC35FEF2059AF293007EBF6179114CC4CEF32C0623B7BACFFD6F6E9F41B8561F7AF63933EACC215AD7311528521A58D53B9D52E9E7D3CFED3C45D6E4957E26F97C72B700B0EACE3E3C80B4DCCCCB4307E55097D8E077D7B07F6F562B1705D8CC2EE1449DD811A354837C4B035174152C2D8FEC251FBEBAEED0981E6E191E9B79F6D3EB566B3FF8A1E492FF74B0A0B8C6A6A148A03AE93EE48D07CDA3FD034A11AA620AC6BBDC22860D71A846F39D8B2AF82644F88D2740AE7550FE1F6182A3008AA29D20ECBFAA40B3D9E30C52EF0E510E1730EC2D1F8AABE5E65E0C452FBBBCB75ED5CB1B752581AE9AC6FCE6A4457441839D507356510EFD788C7AC5A5BA0B4962DE2CD114A059EBFB14B32458CCD97D0DC1BA13B9CC0B61512636027627A1CD0ED6390C394D922A1851262C58C7CB205EB29AF27123A718F2A35CE160E6EBAA604BD3BDE9D3453A88D06EEC7F9D06718E1C91861C5C01CD462BA30733E74A8A0794E3714E25BDAE83CAFD0DA146580A39D1C7FBC007F8EE3CF95E19EF1503815E1159BE0A9B9C4064FD96E50F1EBBB0F248737DCD0030241BAC6754A4BE5D143168D0D21BC0241FED9425302AD9D219201834431A2C905B926438C7208B4271338B30A85A30524F3050C3F1AF0E438CA47976C38B64E790B0B08272690160A88E318F56EE36863A9BEBDB650283BAE5B3EFA7234FBF9EFF780C09AADE7BACDFD5E2D1AD2E3DA0A5060797707A92689B104FE591FC5C32EDC8501944E7704645A797389E0B6B84EA7034380495F1F4C42629CB03E35AA54BB8D68781868B5E0CECF239A9C847EE75CAD1586082A1534EB754956AB372EF49035CECFFD31E7480995B309BC858A094E44A1C1A4E7B554212D97A1D23403AA64A596246E73DB06F8EFBC03677919E1A64D701617D12548776909A943672A16A9FB1076600066688875D1861D1B0B2ACD66968D01920BA3A8D2331B9DF8D9CE2ADCBCA6B476D220287BDD2E92FE002E81C4555E8EC452150CC159463EA63C5C01DA6864D7FDD75E43B8650B1C46371E1D85E238C3E90CC7D820804E12C7B0B87D062235A6B78B39EBF926F57D18463821188974C8E8599288791E1239024928130241C2281B21C8B19DF17168DEDFBAEC32983367107B5CC4BEFA2AECEC2C3425644E9D827669A35164848027C79A0D2D4D4DEF1A9965E7646A33F08C745C2A41D56A8825C24CBFEEEF87226091115964320181C8E23F2518CDFB0DC7D9F5EB33D2E99E3D5C2BD4B2FBAD04E0C409E86E379255438DC55DA22C9330ECF48C4097293604E1106C2A11A42CE4E10E6520359081E23D582121BF04661951295E23BA97E395170DCE637299C879CBFA30CBCB25C51AA9B226248B7EA954EE9984E4619611930664442E04C494236206B4D4005D2615DD93A4E66FC48CC4049988E4E41CEF49E82E722D21D184634536096517334309C98AEE55966CBE45394E6F6B80E0ACE8381519F1C1228B849910203123AEA5509989342F584D19E8C14124721F752F36AADF7C33031D1F3E8C84AE15CECC20A2746292EBBCF20A3A73731D0954C4ECB99CDBC9DA5E8F241433A599550A19C982E85B5C44342C5ECF885B5AA51D19813D7F1E86BF86805988506BD7421F3B066CDC084DCF77A6A761E84429FF2B923524AD76ED82B7B858B6B4DD2233D4A09488BEDDB30C48B463662016024C6F5698E216E234927E3E50D39512463591CE4AC029759DF09CB893D9B62DCB86A5B58A5389198843C9AE29C3CCB55C57797C8E6441EAA040ABEE59060844413240FD670529A0A42EF202C6D818F4E9D3507419C34C2846396134C5E3418086F503014709A624E088FC4828EB059C2724E166BBDD01EB0479A167CEF7AF8F062BBFEF595E7F98979D8C8016D710E07C80A4DCCAB1EC0424EE649801776A0A31E583356B60E9EF102B2458E42EA4A40E48CAA1DC9ACC94614020054E39056C70857A3D08593B8C3C42799E9B75CE20072DBBB9E83763F89F485C201086D670622B5ECE87A66293B9D71BD68043CDB709CA6526A49005AC910296D0491D884C48D29175CE1B6F2020D994241D922C70CC8527796E999293261670FCB95A4D809572C059F9AD3A5E01CD242BF34199B950C4A25F89AA00931BA4DD0B1949B71092E2A4BE4301459052BCA9EC6289241ECFCDC1E5F90E1DA8BC7D7BD6D4407538222F91A0F404DE2B72120BD51CCB65481551545A251DBB0AA8CD09E9FC375D4D5094B742222B62765225F61933DA9A0F48281D9D17A1F8BDE5E2ABCBFAB02CCE9880B4783A49CA6C31970C1ECF5B4AA9B273A7ACA5A03857266F1EA7329EF7B7E6E6E22E03E0E5D738961D11C57C2FE5729297B472BE07AB76B9872D1D6E8EF9DDFAE1BBB8727FB076EDF4C0F9F3D70E0E0DDD608F1EDDD5BF6DDBC748B102E9B61261EAD827894CE3D2B1F3DE205DB8C09AD02457E002CEB06865936C44E25CBC5FE425D61CAC5B57EE6380EA3481F2059772736097EA07AB3310E5E7DC55E7574C2E51F9042A6726BB5F25EB43C0CECB06070F166BB51DC39393FBBC30DC5CDCB081698AB3884AD43B6C541E65E773412752C9166BD47D67E6C2078792BC07C83B018370A4D138F67ABBBD55AC342491539DCE83CF03CFE0831B9ABD0834F598BD47C83A8A0B016BBC5C4B36D7964C9634D9C67E02BCC005D98B9054CFCE06DB80E1BB943AD0BFB0B063FDD4D427EC912353A58181351EDF07B2C226308FD1EED2328BCC4AF682C3A985A014B3AC68A576C41C0ACC62D1987E36CBD2C55F0A5739D16AD0ED1C74B802FC921FB6565577BAF2CD56642E13BCC517B5EF2D2C9CCCD27EFCB868B47263BDBEF9E0CCCCFE815A6DFBBA4D9BAEB6274F6EAE6CDD5A12A0B24B21CB84DDE3C7D15A5C8CA50FC842CE917A33C6CB25B45A2E2B116EE7C7517EDEBC5F5FF8C02F03ABB2939122A1248F029384856781D9676BB597850C4E9EACB2DA2A5FACD5F6AE5D5C9C9EF0FD3D238383BBD5FCFC046D55059E574AD8F05C66A0D56C36887056BE11E773AD44385EB1D10FFBC54E7D942F7BB9E4566AC7CB9D42B233C05DBE5E07D3C0E01DE3E35736CE9FEF7B0398EF7ADE8B7FD1FAD53CC27A2540FFED2746F5113F4D5E4C06ABACCE5DF5E952AFF2716B7BF5D05E12F85F6D0EFECFB77F027609EFBFCBE612740000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (29,1,'Firewall_(64)',decode('89504E470D0A1A0A0000000D4948445200000040000000300806000000A14B7C1F0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000124F4944415468DEE55A598C1CD775BDAFD65EA7BB67E5709D2187EB9014499112174596252BB2A5D8826458486225B11DC4B2B22080F31120F14FA28FC4800103897F12C14A820846100341E2C4366C481F06035974249291448ACB90438A339C7DA6D95BADEFBD9C5B5343B528468BE32605A481625775BF7EF5EEB9E79C7B5F0D85D69A3AF90A1E280FBB2F56C7E923FA323A7D03CBA667AE5F3C214CFA33F1EE7BF2E7FC7ABA7B3D3D25EC8F16005F15591242FC5CB3FF7AB9227C3A929CF31C9BFA7BE558D77337821075571EA7A7F6DBB219FFAE9C2F7F9B07DF7E0078C15F29EF55BAF4DBAF7E992CFE68E28975D9F79AACFA58A5FC8EC07CFD752984133ED8BBCDFBFDF2A728333B175F1523D1B1D24BC90000E13DDCF3683C4DBF16CC9DFF98ACD05BE171F5797AA4B28EBE985F7D7B01F8D488132DE9BF0CAFD1D49D7F4BF1ABC850BFAA7D337EBAFBD075CAE2E57FB63CB4C2904CA4FFFDBB6DDF45E7C493716CF445F3F11FA931F90CB9545403F2EF9BAFE8BBFD2FE377C746ECE84AFC9D385043B22CF7C557CCAFB516955177E4F3B519F385E8A99E03B70F804A980BC7C5215DCD4C301F76C4E3FDBE41FFE21D8D7F488D427732067A8DA6F4F3741F99DEAF761D0A96D48E878CE2376ABF57DAC4146ACEA9AC2E083BDE21D74692D6D72F14FE50949C6F45AE267F49FDC5ABB3632AAEE829F7617959F55863FE380D9A231605137AAF7745AFABBE1E7E9F1EED2BDE16001ACED223ADB754216E455F8F7EA36B9F6CCA6F76F514DF0C24896A6C7C8B3E2EAC9A57FC42ED9C3A32961D315B13FA6FA4238CE64BFA0FFC97E4C9F95F2E1C97108CD12B227BAD31A11D910DE78CCF075EDC74B63814C77ACDEEE7EC9DD666416A8F247B8BDE1E6595CEACB7A9B5A8F354349C859371DF5CC1FFF35B0B00D379FF7EDB5FA0CFC98C1652C8C3767F66C25F50FB5BF9C68FCDED42D6CFCBC769DD80EB9FD5A7A85FD0C89F8E3941A4D75B05B35C9B97E6D2795D983F1AEF11DD2619425834697EC9BFAAF3D13C6D6CBEA1BB8BAB0CB21F506B6A7FE7FE89ADED8D3AD09F8EEAF26B56C512960B35658428AE769D10626A4EABCFD0133B9D5B02C0D8C39BDDA9CFE5BFBA347AEEC1B0A6B73BC336896EE3E2E282F74555D4C58597E2D5993556C10FB4457B1BF9FE4F5AA7EDBB74D4C851C61A12BE250D72D759640D18D4427F716D3E22110AD118D3461CA227A86A4B697CB7DB239A32CDA91FC48F2FCE0542696DEA0371A65031297634654A26D9684F7AEF70486608123C256F0900DDDDE4864BFA7782A65A1B45D45318B4497A34E48D1BCFE42B762E6851AE7E4E5B9523B6F4EE5287AB35F5C3AED5B61D5DB5FE29DB6D5778957D5B5C32F206655699343B13D2D58B3E7979496E8F49F93E8B0A8705891E4DCD97C586AE87C870F6680AFB24298CD15945E17D2DB28790794FD2E00E97FA0F9AFF46FFAC3B0FC0CC43ABF24B93577F34FFBA1CEEB1F2C7FC50E7D8CE4B8EED2E9C0F4D396BE6281256753A14B9239AAE7E83FEF8CD7FF00F2A5EDAB0BADFECD74EA617D446F002E95BB71BC30D8C9BF2A9F4A598F2FD16E5D65AA47FB349200AC5C392B29F0030C39A8C3336854A931A50248B92E4675B148F46C4AC51BDFAC0CFDD877C6000508FEBBAF6ECF8D1E0A03B689C505ADC6F66C95242D3D4BC4F214639D0666E954DF9FB88745D9841AC0F66B60AF21EAB136310F6C7686824C59B233232829CAC41A3F774D1DA071D0AB744649998A42429B4700CC4643E1A901A54E4AF8E89A6014C2028CE49728EE6281E0023EE0FC85F1351D81B6DA10EF6EB498343B37DB9D98BD73EE36B45FDBBEC53E176EF118B8435331F92B73EA0A101D8B9145440E6E34331C5AF9B5438A8A932E990B88C4C6D84D67B11C80538F88116194B26E9454DE55E8BBCED11B52468BE15E9441CB18F407B239C8305404E976292DB907DDC5B0C0754B8E090AA1A1477E1F3FD604225CE75B455E77F2627E3CAF4E5283FB23547C592FD85C6BE9AE1BD6952A96052F6971499F598C47FD9140F8514642419DB021201167C47407AD222F3B44D11B2969F4526EBA0D56300EEBF6188A75DF286438A034DF53B9BE88C107CA409C4A295941A7578C2A42077D2A6B1254517E21A75BD4C54461F982F2B2AE7C542C701A8CDC5070D9CADFBB449CD919611808AF97BB088E32655FB31004B4082282A488A4C85AC2932701D4299E1885C0E0651C5DDA0F625979A830D8A7778E4238B7E19EC68A21C620E6B12523ADA47CE4448F6958874AB17A5C1267B763699637C6DABF1833151C06414051115CA5D5428557FFC57973A0900F4EF679D2343D0AA8F8CB28E15D86CF5A1CD5D0D7AC3C86AA31E8500C5CFE2BB652627BA5F8E5C27D77C5EDBA0C89D86E17D0FD2A80F526E6C9E7AA7306FF7362A9E3D478A5BE7C16E128D0629CBC2FCAB49DA3619E532F49FA3606AEA623637B79BA7CBE6F364604C6DB118749601A7483807752DBF0FD9F55087E1C63A58CE686D9B4F116B934D6EC3F23ACC0541F6B44B168CCB9D8096FDB5943F334DCEB4418D8D5BA978EE1C692CBCBA6713C9560F4A9C43515717C55BB650542A81F2D0088293C522655F7B8D9C304C8089B76EA5E6F878B586FACBAF3C7E535B5CE47B5FEB2C00A8B1F6F7CC6EA6B321518658A3D0AA093D3B571565177B2873A545CE140604FD2A3BB168846818FC810112128E5EA9801D156A8D72DF6B502D0D343B3646E6B56BE46DD8408537DE48C8122148E7E2458A0B050A3047637898341840085AE2B3CCD050B90B41AF34A4E5FE7E0A3DAFD2710F287DDF2DD87308BAD9AF72E797244CC06A0E6F8463C5A4B259325A2D04E99270A5D1BA7B33B9D06C667A9A1888CAB1634970B5EDDBC9C4E225B21B9BF092356BD04576530C30BCBBEE4265582285CFEBDBB691C07CCE2BAF90C4B5C4186362226159230CAB9EB15C99A3001501D2F0EAF5A58E03903BB1B55F658AA40DC3A86F1A31320830F7D65B1483A626CE23BC736082E9A954A2DFC6BA7549796E1E3C48F6DC5C42EDA0A787B2A74E9175FE3C799B36917DE142A2638F83AE56D1ED81FA004463BE104C213048394E220905CABB9393657761D9F40B18A770AF6CB1D8790698BEF455564002924C04C9B46C6CDE4C0E321A819AD94B97C8999CA426E8EC0298080B0E5DF840AD968C856792422625B227474692AC53B34911E688FAFAC81C1F8757C04F009075FC78C298107230CF9C4932CFD732F580461C5FF78016CC12DFD73A0E80402A0D98119B175BBA82FE848732060A1A58447DED5A8A11B403DA7B082883859BC8B28F2CBB3897002340966D802391D118DA150040631EBE56F88D06900AC0447BF690669021ADE88E3B9231847BF175161E500253F8A5908C1200F35BAD7CC70180168D1088B33699920640900C062818A13C31181A0B6AC2F8F8715D04BD73F912D0A977F83099972F134106DEFAF5649D3E8D0A017FD8B831C9B0F9E69B14011C03EF9C6D056FD0CC1C1CCC1A66909E9949E4548FE36A0BD726BC811361612DA661581D07001990C6FC3C859C71802011AC444638330C886056F0018A276D390E0D703416AA780CC6B2BEF97B09B628649B52D757D0BB60200102617ECD20E39DD80B608CCC008D4A42BDBD941F1F2F3B5887840C9C4C86AE0154DC67B1E300C4888A356D40E76C52261661C08C245861229B6C460A0B64B70EE10316A89E30071937B8EE7366F1B9E073066708FB59F806FF4EA3D429780003A811948674B8EE0BF843F2397B00BE1300BA3E35D58838F3CC023090AB401445E58E3F118AE35809767B644E206066408080154C304076226489CFB9F663E34011020910BC9A9AA200A6C7E0490016B2E9711964F384CB73158941756E72D81863643C46F5500028E2AA3038488A4D13F78A30CEE9EDCD58083C86472C613D0CA05FAF573BCE80C8B2CC100B13685C42642C3125DC9C1D5DB05E61464C6BD67C84C5EB6BCBCD99C66F1239205309AD99CE600D1B5AA26D3E0738C412615920CB9ACB1ED77FCC4F0856C06324DF837B0E00CFBAE723C3DE83F932C562B9F312E03B717690590681835758B8466DE78A903444A911AE5CB39635BB3B589000866C2B18A002480476C8575F4DA4216098715AFA8C1D3B283A71223937711E9E3CB9EC0100C2C1387F6626A871AB9C96C12680C1DD6E01035005241067534B4C0E41247AE520F139A11472D6399B1A6ECE8647F85CE19C407596078F2504C18ECE9916F7DE4B8ACF31CE3C7488241B1E823276ED5AFEC30FFBCBCE9DC9FD140015003357ADE68BD6B22F1B584BF7AA5514349BDD9D0760656387C019086E5AB8AC25343E7B761918985C1224CA9EE260E0F802A54E72F691714A29CED5437010F83EE20A01433551197C068ECD0EA58F302F67DF84B45806017C47833DB0FBAAEF38EF6885FD66B3D6F6C03A793406D074FBF9FF1980A4C481DE498639D3C838C1FC78F1021993CC04068375C9257245BF00260658CC00CE98FFB39F2519B5E11D3EA8CEDA7741F5008019BC11424623DEEC60ED59001AB35C00940350B80A7455ABE50CC6F2F7DC0AC768CEEC6CB620F8D1FA0D4FEE577286734D6F3F5FF9D0802C33404A4D1C3C6796B7A74C79CE169A16D6743223B3002028D6282F000084D8D018C86E04804CE8D506ED63766FC8C7397080628C4D2404D018282E392D5491182067005203FB8695577E749496C6C7530758F6006601EEC994C8A441B61FEA26D7094B3E0C08CB0C304D2179EFCD8D0D16AAD1CAB24693CD0A7FCFAD310385ADAC01660490057FEF40C38A37482867DCE4B09663060EEF26AE03F40B0DFCC601484DF408025B641772C97125018B8AFBF793E0E6096D334A2095366E2C175306700C59C86A7669C9C3AD9D1B02E5E731A20D8495929E8CB99115EFC58EEB1E20785383850850537199E3BD013732A066885657A26E5BE8FDD9B14DF4F04929E35E9FE5C393F006EAE597934C67618CD5175F2403342E622BCCBD400E19B6009E66DA73806C7CBC4F007B3C00D3041B107ACD07136D6ECA000CCB2A97CD56B0B1B26FC280F62057CE657AA89B7D0F60D48D402C03E07911973203755D3203B8B63328FCD88AB30D4A5B0884172BB83AF066060BF4018C85F2D780C125C1626B1CC03CB9B617EFBE3B9140628CDC5FE0737E3553DA33E55B6FBC41167EE7E2BE19B0A472F972790E0C60EADBF81D37434DA27ACA807724F326D7ED00DCECA09435FADD0CA8567D7BF7EE44CB89D639430830006D6DEEDCB829C2A2183E0BB4F4B0C9F1E1DC051824673CC3D9E53E3F0536425768711D47807C14F7EE25138C32D8E8184800C8F32465134C88004E086017E0011EEEEF0240DE0B704BAC3DAF3B65C0FBBD549B3C568E382538B5C9E6FADF599809162ECC3B89BEF2F4F9F3CFB9B3B3FB8ABDBDF7A2191A3584D894DDB54BB0E32B2C9E3734ECEA8B3FFD29991C086A7BCCE6C70F4B609A26165C47C3C32E5F0498DC38E5E111363B3C7B0B82668FE0121BB011B269A20C1ADC7CE17B5E52F7F0706909520B3166093D0497C15AB3D96081B517819B04DFEE0F715BA68D34C9E60DFE71FD10E960233DCCF4703E41D4F72B0303F73A3333DBD1F6ECEBEAEFDF8B1EBF5402CDD9C579E1BC5D665DD7500D38A012EB1DB437796BCD2BC1B983206BC78E25D22AC03B243E33907D9B4D9319C726080099354717168E2FE6F3FB4CFBED78E73DEFAFFFB5D97CF6039AFA8D46A9DAA4C14CE027BB7EFA0EFBD2CA4A0D41A606B1825EF002E4FAC2CCCC951441976667DD2789468E4C4E3E20C6C7370194DD952D5BB6D74E9C305D5481E29D77262594E905DA266592E9EF83CE4CFB10CC30D36D72628200AF06C630880C02035BCA640A5368AD2300CC65D0E3A74A96256F60C0BBFEA0FFBF00B1120F071BA6817BE9B95C3142EB2625422F57BE442851CA0CFEA1F13CD1D2F3E3E3271340608DA3939395FB95DAB96E7272EF867CFE1E79EEDC064CB82A8FA6874B1B4BC0418B9B4C85E9D9ED793FC11587106801DFB3841246F1F3070C74D1666770F076987D60717151A70088F7C9BC6AD33C07DB6ACBF64AD0EA5DE87DD09E41BCFD175AA3EDB056C0488FECC788567F72EDDA7BB2131343E824760DECDC390A26389CF52E660900E08CF3919C83018DD75E4BDE5F223A39EBBA7BD2845017E43559AF3FFB1FADD63FDEC4F0DA69DD4A93E4A5D7D10AFDDFAF29FAC08F9BDA2692A96444DB021AA977D83F219AFDC9C4C4197ED8CC80749F39937B8068D30EAD778FD4EB87E9ECD935A869EB0BA3A3824B229B649E9F27C22B7AAE5CE9AAD5965B7F7E2CC665B0AE7523CD7EDC166CAB2DC361BBDE3F6C2B2C7E517F794E01116D666AA5D4CDA460F0C34DFE6F76F646A2D2934343F738972EADEE43312C126D2B8D8E76FDE8D4A9D7B1B9DE85485A9952E9F2FCB56BFF7995E8BBAF139D6E0B384E03D6FA17B078D1A93FBDA780B44BC54A1B9A6C0A463E05272951BF353838144F4D75813A63385E4303D46CCBAED41D5AA8E8F4FF15BE093BDACBADD12EABB643EB5BB1B05B05C07B99AABE5D0BB8DD007C545E06FD3F7FFD0FB25CDE52518571F30000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (30,1,'Firewall_(96)',decode('89504E470D0A1A0A0000000D49484452000000600000004808060000000967F0630000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000023314944415478DAED7D69905CE775DDFDDED6FB74CF8AC10C00622156120B0112E0022E224532A4683A914D2425878C1CD9DAAC248EAA9254F4C38E92AAD8B17F38A9248E9DAA5454962A8EE5B8CA4E282B52289122B45012201220C5153B06C00C304BCFF474BFFDBD9CF375BF4663082E62A86828A9AB9EA697B79E73EFB9E7DEF740A9344D6559BD1EDC989B9D9DCD0D3C33B3203F032F63B99D50A8A63F35D0944DF233F25A76041875F978C3094F5DF1E5BF508E3C3C5E7CC38D9452D9DBC337DE68C78F0EDE230FAADC4F27019F5546EF05BFABAFF729CB98556B2A8717A67BC18D262A7BE2FEC5FF347760A0FABA6D0E2833FE95BE0FCA81EB1D7EDCB3E5644135E3DF8AD3EA7F918F29FBA78B8003CA0967CB1F940FAFFDB14457BCAAFA3189C4948FDD6877C94691B2CCC62199347655C2E41979585D9909DE582E9D30FE61F8F2C456FD399D9538AF5E4E9E970F85516DEB4F0F019F55966F953F642C9A1F90D835AFC888C7464B6F3B2B10B1F2ABEBF25725E08CFACD309F46F1E4B97BBCDB86F78727CB8F069F2EDF2B7F9C8666A978207E466DF6C2DA7FBDA26644C1D6F052BA2B48D566EED7F5FABE6038D693412355E179F9FC616481FBA9E2B83EEE7B9980C6914AD59C35FF59DC3426E4EC94DFFDE1D8C8DA78DAFB8F8B8F8C0E5D75C30F5786E591D5858CA070B8FC0BC1C2DCFF78DD7A1F2F8F84CF27D7C6696A0449F899B8993C12BA3214BD60FD917CF6B386EF4451BC299D885E4E7E497E71B8A2B7F9BB837DDE99E049FF6CD2970EC7D5C579B72F7859EE09E324E7C3DDF9DF8D776CF32BBBA305E33F378BE53F38B60CEBC2DB26C0CE952AD18974431ACB37E5C934EAD1E8A9204D779861EBEBF22BB5FEA5DBB981DCE68ED6FFD5E18F8AA5F7238B07DD6FA61F083E32B0AD376B9A0D75208852890A862DB3E9FE643C1C8D03A318B5D2FE70F5EFED946B836FC625B9E44D2766C3F6FFB07DF6769C0CC985A44F4938966870A330B5E319E37369BF123F48245854FF38386DAC6D7E3DFD8DB181C1EDEF59020CE5EF0EEAA96D5A76431737143DEF43E5BBE4F3532DABBFF058F003D9D6ACA7FFED0AB782F7495EEE0C5F540FEDC1C7C5BF5DFEB85C7AA41E9969EA9E8EFF22F86879B33C565BAF0BAD6B3CCAA8CD8D591224519ADF61FC6E62AA5D912F4EF3FF989F885E55A3E6A8B9C39754C28B6ABFFC3924E54F269BE9A0FAA7D64D86943E9A4CA579339131F1C2B958FA76E684EB7AC7937BD244ECD64C6A3427FCBF9CCEB2E73D45C047862BADB3D1EF85469AC6897A78E144F94F5CF3C20AEFA4F1C7EE238363A7EB95D7D476F55CF37072FF7C351ACD52A36E2EFCFEE257E41F4156B4E6FBE78D4FCF4D7CF9E6B8ACE2C543F116CF559FBCF0EDE495FA072B9FF34F25DBD29A12555262EE95FF9EAE8D37265EB2D35A6DAA703EBD33280493A6A14C67AD25519496E50F4505736A87312437CBCA44D4CAA85689DCD0DEA45CBF118B89FDD82B4D695D480654D57090A5523F1C8F1BE3C16FBDE708705B4ECD7D2D5D1721521395FC7DFF92DC1FF946A17526BDC648ACDCEABF79F18FCCF1F4A0D7485438ED7EAE5D64D33452B2C69BC7167995C89C246194E6A4687E2532C4F4C354169E497EBD753EB2EA07E3479B27E272657B4E122315F744B23B3965FD07EC7F4DAE64E5C29974205C5096773191DAD69C448E98AD3FB5EE4D5ECBEFC8F5991F71064C898BF107E71FF2FE8DBD5AF5795E22712232B0232FBE9F1A85217B2CB6900D90B8D927E24F2E3E363AB2FC09806BC88A56B418AE06B88633664A70291A4E47E598B34225BE9F388699D482A78DC79C11F3911017D97A2DD9D7980F4BDC2E99317ED35E6FA6F97B9353F2C534B6D7AB69F77C5A2AAF73940F5D689C8DF30164A205E25C3F15280F0EA6A43298DB629EB48717CF27B68A94E9CDAA01A3610F354FC64AD512A97E38AE249EDC78E99F98BF13BD680C1BD326D835FE461A261F35CEDAF9DA5A473860B16C25694E89E51B766D4B1ED296486B3A2A58A15F5CF6042CC8AA6A312AFF991C583DE039EEBD5A9F5722FDCBF142A96CFD7A63D63B201551738BC12DF32F4769D232864BEB1D41C4E3B223538EA9DCC8FA8173464DC5F65DE105EE337F637AAAB51049BECF90C26A5B280BD95F2E0B53A110B97C64C9C5977D00960A7892C6C5D028E54C71C358C2FDAEA8A1F4A599DF701E997E2E5A3579C2135545C423A3CCDDC8B6959114062D31613A5333150BC78A5A890CAE73C4AA1AC814099396152C7B022006C3ADF3C9DD0BB63FE8B972F3C00D8E38C34AF223C6135E2D79DC9B4C3F32744B3EC125EFF7E324F61A516B78B32301645C5989D128CADAD6E6994F95D7D856DC976C68DCD53764C6E64A1954A9C0FB8C5C9F9718ED5671D492043D2C09BE741AF900029ACD48E6A723C9D5DAA7E7F49BA8ACB138FB1349AAB1188F17B7378EA7DBABF7E360DB62F16E76250173890317950769C8C4605520C813A90CA1A8BB8998D8D586BB4A525A6F1E2D56CDF9654D40FD6FF5D726CFCEFFFB188AEF844614D4934DD05A49812E107F205FB7572D9E49D68BA78C2490FD922A67F6505C45E195913BEC30F9CCDCAF05FFB634EE7ECFF81D27843ED7D5BEE057FD43F2927373B16A2B824C79280C5BC2F668C575059D018B00FEF4D1A64C05AED49019C511ED5CA5B6CA166B4F227D9F4486BC0A79993624B70B6E08F5A2B2C39064750802D0C8611FE9482C6909F673BF27C9B5A138E386B49001261C6F7148C9F843E621F1A6BCE54B00BADAB9F9F04BE70F07F73A65EB8B79DBAB43FF070D53891103B4A65DC81986CC4D45F86CC8FCA96455BE604B7D22946004E9FF6B41143E6B3D73EA8BD1574F1DF4ACB880C804606A7B724DBCDD5723AB50413BEEBFB4C2A6A391A1358EE4FA0D9D05678F7952FD5424A5F7A5521DB5992CD27F8D2DE103AE443E022087066B3414358A827C0B4075913E2741D419AB9D052B42C403EA0F5AC5D6ADAEA4EF4776AC877491F510E26827B74A69ADBD3C09789FCABF7ABCF117670EFAB7421692A1D1DCE3419C1F0F90FD5691DA926AF04EFCD0153F8692E03262E8F42022D5C50546377B623CE798A7FEB57CB9749D329BB022E13E80C0CB45548603912844AD59C076F85CAB997429FAD01B6F2C8BCAC382960C49D744123FE88A3D8C63E00CA30DF8DC8FDE2F06B0E5441F478D21AAF745126D02D27553ECA70B922E1A1216910BC8D4FC77F019E716EDF525FF7702093720405AD43375AD2C466AB91060F57E3851297FF2F45FBBF7F37D65DC3A95CB1B0E8AE0BD096CA39347AA0383D3A75C295F634A61D6100B6CF40D238AE179D67DC29218452FFF62CEB10643C9DF8E28BE00F9D9EE4B042D16A8870CC512238B9A370040446BDE87A59C8C759417CBA6ECBBAF5FBC18608790681C4B354C31A0E7E1BA401F3BC9613F43F87D14FB5E8755F05B7CBD2FEA9C253980CF6090048162A762CF5B621DCD897BA32BF1100E7E9D8B75F2E28D86C5E6A727B68C893CBBBC0880779FBF18FD3D6A31637260ADF54C5C4EEF4AC68352B1258EE0A2CE9D8633418A8FECCEC9989BD7856D68CC9178A72FD6ED81A8C3058910A9A51B52BDE735EBF392D4E15A52463CB47930D23E3F2E201BB6F85A32DCD700AAD106CE415D305170EBC0CB70213795589245584CAC1287A40912331C71408A422B3A2374D526297D5897074210B89B782E38BF095BD2ADE8871DD404AE739B27218A781A9B5B64D91130EFF6CD9C8E365287875638327A4DEEAE68653812DCE82D86DF17F16A915C9A0D6400DAECDD8422691444BD02A0E0A85BBB3C89119DA999C8E2FD4D31BE0309B805B6D5851B0198F9FF5D96E61D8B200719508B250770FCAD9EB8D86E648B21EEB79131C7A0E528C811004EB04D00C2EABFB420A5678AA25A20236C0786F6A949FB4FF6E22FB193EAAC119C436BB327D69425DE582051DCFE3EB641FA50409F003321B5652741A72F7AE3F5A9A8C0F73BF69471C66ACCDF00ED2CC4B5C62414E4FE50566D73241CF12029908DA69218D7138EC6B07EB087289021A23FAC46702CA644061AAD7D2D5100A688222CF300B18C6DFA13291CB3C5395490E62D4DF85D6A7A5372276061C742BD4D1CB76145772BF5BB1ABA39EB8EFFD2CB7FF99699629D37C4C6629D33F4FBBF429776AA5197D24B15E93FEA4A7508923A884028D932B42A42A619AF2D3B02E616A25DCCE66BD0319A9B63F16BD05EB89A08000D1E303500D5B223F3A3BE06DE9C698FD7E322D609DB4D4FCAE80578E940DC06AC106B941AFB172540F4338ABDD1404A271D29BE9097C53D4DED58E2722CEE164F5A1B034DA0AE171D75D153253825026B4C0D497EA28EF728BAE74166BC0AE9674BE1CC194D46B64CAE1139FA7C2AFD237999BB78F9DE7EFF484D0CFBE2D7FEC11F244F2F2B02FEFC803237558A0F9896923500DB5F0590A1F9B06CC2BA56DA9D8AF1248A2C8B1E523C826637F6B4A4F29D92B6762C90294063116EEBF29507698D7510C57AAD4D9E145ECBB52D61D8F16158BFBE17D2356F8873C4D4D19C34374AE59553625F40545F848DC57E67F6ED94DA77BFDBAE01247F0C24586DE5493B8C25962573E7F32F18A677FDD52E78FA9C4C6C7B240D961501F73803A5E37173C3EADB6D8977A0A9013831EC5CCCA206904CC80D6580E005F9B6A369ADF5C5851FB7EA964469DA83C295D17B856C309AA1E70B632622B925B53FCB8943802F39E297B748F5C84BDDF566F78D4BE107137AD3A4033897D0346167079051FDE8074635E0ADB131BD4D303C8CFD5D10E7F871A3A21661610D44FD88E40A05F15D579C7C5EFA0607572CA769A8266020309393DB92E9DA43289A68749C0534356CA0A20C484807B2A285F65E839181CDC2361C7490C9A29092819F10B58C5E6712D1ECAE93CA4B67C5C67B0B513EBB6F8F0C2092BBFC58A678DBEC36D8B91CE4AF26EE8A1592ECDD0BD76448542C8AD9426D0090F59D3BC5080249F17DE5E04161C1D0E4E0BCE2DB6F97C2F7BE27F3CDE6DC3CAD53577A46204517B358985A7604C875975AD5BD0ABD148A9D67681DA73C249D0A9158901D447CD2C988EEC6B30418D6F1520D11DDD460ABE600481A90F2F153DDF5E6F68C49E1950BED9A01104300BC70DD751295CBA831395161885EA224E1CD37EBE82EFEF087527BEA29B11616D04C25328FEF2BCF3C73390B10FD8CF6388A7A6B727B1C4155731CCB8CDA7655479052B25C5F6D887F1B97F93FCD3BB34812C80CE32AEDF8717BB20070430DB033095F9E5E237D47261089ED0B6BAE5F2DA51327DAF70EC62B12AC5A21F3C58AC4958A069072310310FDC141299C3D2B85E3C725373525C54643EAFBF649B5075C7ECE9D3CA9DF6789465023484F0CC2C2BE3E98831189B02F1F7F53489082BC488780456C5F3E71A2AF54AF4BB15A1517C7E035310BF2C8A466A331BAFC08E09B3346EA4CB525432D8E4AE9F8B4385326A2109DEBFAF56D8011498CD4F91DD74863EB908E604A0065C3A51EE3029D4B9734B8B9E96959C476D5A347BB113AB77BB7548E1CE982AD81B56D69219A096C02C2BC55AB24015911B2C4989F6F175664CDC20D3748B872A5140E1F16E7E597C569362506C021A48A9FD39E3A5177DDD905106F829CF9E9E92BA4687E6666725912B0EE5F968B0A8596402C5CB70D8D504B5ADB4B701F689E00BA87936704E651E44AA7E04EE6E6C4032059E4535A5AAB574BE5D5572561A1C4BA3EE4A4BE658B961512E503AC188007F86CCFCC68B018BD2181E7B6DFFA96E47EF003FD7DF3965BA478E810B230EC829BE03B6362A2DB87459D02ADA7A0CC109C438A2028BA6EA5849A61398E94ABD5AE04E5F05BA9561B589604CCEDBA29A136172111C5D3A77504BBE3E35D80F95ADCBC59ECD9598940923734240148F1A9C5C800039A1B02000F9F23009A07498563C7C444140720B0EFFBDF977216F988F02264477AA2968537F17DED6A12B81592D2BAE61A4900220380775862120812040598EB88E769E0591374A0E077F3C517256D34A21085BACEE8C731AA902B6682075240D8E2B224A0383111371021941582E8420AF8DEEF006A414B592C1580F67041D5E79F1703F2C2E86C8098D22BAFB4A31224B8909EDC6BAFE9F7218B2BD66F5C7FBDDE0F0109601B29339A0C7C6760DF94AF06A507D9619D3B2726EA44BAB82806A426DAB1439C6F7E53ECACD802FC1899653FFBEC150D5872C71D62E2B84DCF73831E1FCC624D423A52182C4B0298A6D46B1B60B4D6ACE9463E2390003B88A0182005B8F800693D0750F89BC28551A319C15AB7E15C5813B81E33AA0040F2D06D0352136CDD2A25D8C47CA7D813A216223AF79DEF5C061136D3029982F5BBDF41CFE39E6C4971AECC146622CF21E592E33DBC610976ED92EAD4D4904FF2901D093283C597FACFBE200AC3E5598411F506B5D9EAF86D6601DD0B0BAA42AAB35806B8E00234BE8034A7A6B710E979109501B378E38D5282D4649F9B00C33C7346131201241670175ACFCF29F6A7895ABB163D9ED2000A2428465DD1C0625D35DFBE7318E3BCE2DB6ED312A3262785B7D4126C136FDFAECF43CE9F07932D514F3C2129F631DF68CCCE215B7BFDBFBEB3866B5AB645B876E448B8B871A338B818164A46568428A33C6842202301961011AA359F60F17BCA09EF80D3CB0328FFEEBB45B0ADDE0E5910DD74934400C286A428D40F3A9F80128546CCC43E8A943180E9A32FA0A4581DF2825B6F15F3DBDFD69962649980EF0C7EC7846546A04631130435ABDB0F909C284AE43DF2EA1230B3678F4DCDF6A8D9908E3C8A710E17A6250640E65F7A49F2D451E8696BD326C953263AC0781B36B0FDD7171F216B480401EF4A0832C37AE185EE670170295C54D73A9270463A330164B2CB4D6C5B678CFECC85C5999F33C2F91D8E45F9916C3D6616F6393039391422006CFCC62CE0082240165BD8E7B21C45E812303F9FEAD4D69DAF251E4024F08C7416CF103A4AC9509DC80F3ABFD346D2FA05E80318F142922857B4ADAC096888582362446F8C0C32504B52DA5A68BF2607DB515608A88F262A01C006239A520879622397206314BC7E0257C573E3F152DA4B92CC510465880B8A78FC8D6FC88CEBCECC45D17B6814C15BA57041316C5F1E1795E71C856E0717EEF444728048B70142EF67ABF33BC948B0BD0DA0BAA301D400ABC7A9C490238335224D2FAF0362544756F4D8005A9FF4D411FD35C04E507BBA45987D058305F5A9773D13E4C7081010F2BA7FF8662228980128C4D565494063D3264B4F1971B1993564A46736D4A45504C82CCE49661D5944115D8CF0940332CE76D01F304285BF2303747384A22A28A849677AA93F73CE43F038740309DC56E05CA8EB29481046392CA87EA13027FC0EFBA23B12661E171C8B99A33ACD9AE0B389F58626264662EC3F931E838FA4E09C8B38C6ECC58BCBD3863AAFBC12D9B8085E8CCF4846A46751AA18E9BD910F0F6EB1FDEF442D3FDB9DCF5A6EAEBD56F7082A8BFCBD7BC584FD3432FB4930D1F5A63D43B414D9215827FB4E3113F03921B19DEFCCFDFB25443F90155B41C028901AB1F9CAB2830F78C5F1C5B934DDB8D40559201F84B8CBD386AE5A65D2121A702A2C8A9C364658CC4B9774D1D3832F44B440D35910992DCC04C54807E82CBC3AB211B5FA2F9634EB569935002F650443DB531C8796538F924908DF333B207929B51BDF1BD877C263707BCE9B1018068A73DCD343181D3774458FD0FBCC0DD6E7F881F7034C5C431EB5A73638B872591210E5F34A5F180160EA0314855A60C0E7B3F06A8F8EEE989D66F74291190A9991453AE7F70A51ABB2D9CD0D3788EAED5611E529F51D8D97508A281F28C609E73F1C1B70B289662DA615666146D1E6D8C15CB74EE4C2056D8DADDB6F6FAF07826390CFF7F648FB6167C571060264E4CC9991149217732087633890CA69F60AEDF3B8B03CA7A1CF3D17F2F13D467F48D7810BA1C3E1382201D0D45EDD1BD0BD641A4E3BC8CCE8447AC26E93910ED034918C6AEC4FBB1492CA4C80CB49B92F164B2C26877133335D5931396A3E795212664A873887C3BACE0D1C4D3CA2DA06511E87753D915F440FB2F8E4933299245A82B26B63062CFB3EC0BBE1063BA1B5E3400CC58CD1A40B1E2505002A80A2080A7F87E62BF405DD4C80E6A7AC1174267428948EAC66B099036931DC120B332DAAB16387A873E774C346593211D50A9E3E06110A516F82740B7291740AB581EED9C988EDC896013279C32626F12493528563B197E0BFB871B06F16611BD1CFBF0328F67CEF359BCB53828C679F0D53467E26299CB76CDB26829A90F0EE12A2994D9026854D11359F91CF3E8063045C200190AC71A204913C90A6BB64D6162E00CFC67E82E79EBB4C204831B76F97E0F0E1EE777900EE1E3C78658483A8268AB774663F0E88A114716461216858B08B207BE8FCF9216615357F06D293D95E16E5FACCCCF294207FD72E5BFB6B4A0AC7BF940C64816E78185D2CBE58E4F9E7DBD1D689FC6EA4239215DC53CCA9286D28160B35209D98D0D348DA43C5E68CAEA46317B56EB3D8E258CC000BEBF17D4C3B4A3745A2B3DB8ECC2E76DAD0757D7C2C2CF4B4AE5EE70E5A56802FA5E9A545914DEC84AFF86F6120A82CA4061284F52E55EFE01F9CA7EFF27F5CA34B00278E2C5CC24E15A02BCE683AE92ED75FAF47C3BC41CEF78C76BA21FA71BE5776E761636E4799600F41C2B0AFF08517BAFA6EA3D3F5F958494F5433D25B8C74648D01D20AF81C81C40811ECECD9A3F76D23FB020EE178BF984598B58AC5993D06CF8F0519E71773748D05DDBB9507790E7ED7D20322388E26DE70451574EBC612ECD5559EE1485FFF4CC78F731C8D229CA2B0B14072B6C2F90DA3923AAC2D65B5DD4026B850465D0C8292CEFD5683CE855E9CAE06516E41BA14A7A800C066E4B3F8C2CE1A9CCB0060EE9F7A9F80704A083346838763711CEEF674DFDC7FE58E3B64FEE9A72FF703A81336806DFDF0875A0E0DEC8F4B1F08F39171FDF57AD5C5F12EF1EE1982A8B71F40CF51EF5CF752D0D325EF55CFDF2E111971EF562674098877EEB475C7C901178B1A8AA4762B3D5A6D427262D841C13A02FDB5D6ACE9126452BE380CA3E3E18D1D64807633202B87C8777B6EBC338A5D4819C18F5E7D556C14F532EA0FA3DC04B0FC9D7D006D266741FCCE8615E53E431CAF6B73B57F8E3491ECB463044203E77B89B785978E22101CEC094018D89873DE02FCEC1E7F7A95DF3B6AD696B1778D80F0F9E7C3147E5CEF1C059172A3DB7D3A14B812CA8ACE026605A3F7CC19ED40C29EBEC0A1C4C0E71BAC1DD826876D992526B6C9533AB03F926A036C1FFB88E6E6C43F7B565B4EDAD546CF8D990A8AE93C6744941A8E424056EDBEFBC4C3712DD61BAC9F1F1FD77294749E8A28202878D3A76F66A68F0F4E72F6C3FAC31B33659C13A5E8E2C58B75B9F2B1FC74C9927496A519203DDF49DBA728B554A27E54522E9FC8962D96C188A627E7E324B848363531D2D880066740D381D89027CA08239FFAAC239F9E1E80988C52687F046069295B1D67A3EDFBCD37CB22EF0563314010B3A60AA003C8830972CB20C9C47E233EC586FDE679FF192485FCCB7BCB703424257BE5E98220412E328DAF79D4178B599524511DDB5451ECEB90A2DE1B32497B5067BE09F8460FD0E61BD484AB6DD7CD8CA575FBCDC8B95C84D109B3B962D1D4DA8EFDD8D05401298C7A8B5D290764EC0538847BF9E5B68E639FCEC68DE2812076AD0EA4C2D9B9536C640733A7C8FBB47C9607FBB620251C3593A0B0634B2DC8DE5C47DFF9AA80DC26EFB8C1BA32736C2CFD77DD2501A4CF0680FDD81FA3DEA0F5E58D7A481C6B07E589FD4000C051A5BCB4338A28E2D82CC644954F4954793F6066C67A83A27BB5F74BC1CC9EFF4A7A817FBBD2F5C636F4D0A190C5D280CE3B005D37459C50E2AF7FEA9444883E0BE00600DA40B41A00B3C0BB5D884CBA973CC701D0FF905A8CAC717B1AB532A27C0151CF88B7200583BFFCCBE2621D7D0238661500F33E8287636860791520204166845872381649EAF62C7CBC0485BE05A22CEC93D952421DC9B1BF40F11F39776ED8A151E093127C900004CC4EB56F0304C21271E5BF0C7A9B6E6769C4F7CA55464ABC44A67A1D567AB5BA71B91143113690B21CE32688361FD24110A8DBF9BD7BC558B54A14E4218788A5F32030212E6AB12331BCC8DCE6CD5DF928C2EDB03962B4337B6CF4083ED6F7F1D90150F55E40A1D5151C835E9F36B60FEF6D009B8D28B87E71D3261DDD8CF4AE71E04D1B2C7E87CCFE7BEED144C1EFCC200BD6759FF8A854327940CF671740F6D2FF748D7A1BE0CB12E0E39E1AA17AA42BB90A416F9E0164E66B96E5D9D75E5BF44F9C1013205BBB77EBB94C0C995088380FDE3CA0AD43A4E6107D212501A45062083E673F5A6A8E1C9185679F9508C09421278D4387B44E3B88E2E1871E121FDB316A6BD07B3DBA40A41240CA870779E2A2C1C47E339248900D32B98DEE2F203DEC016A77DFAD1D118909B190BC0E5ACAE84C3F730C209C7F368A98ADD74980F50E0C4B3680CD8035AF0274D459A443502FC19D0183BAA2605BF8823B35FF328A36DD11C7EF5751B4D53E7366AF79F6ECEEFCA64D2B3CDE89C285594C735C30359740B34788A8B7DFFB9EE4204DCD8E27CF23D2FB3FF0015D582D489579E79DFAE93676AB1E80EE2DA23C99C1071ED056D3C6BA04D8EE644D0EE4923482CB4C24714580DF2B45BA08734088EF591F68816B38DEE8B97343D3F82E9B82F68E221A0B0B8D3790A0B74B42BA240B7A97AC26184BA42859225DDDF759EA648BD93939FDF79F8F8C6C1CBB787167C53076E7D3744F75D3A6EDAD575FB5F5136D008F52C1468712432B497DA7AD341075F3743BD93D5968BC0F208A94281663DE2983BB0900741E40CF7CF5AB97D745E413644A90C3811B96C2DAB5E2C37EE6F1B789E2CF7EC1C7C2DAD0EB82B2D797447ED012D9DDDB8091EC611C6BBED178FA0BF5FA27DE02E8377232E9550A71BCA416A45721AC373BA26C1B0446A27A0EA696E8594648468A0DF5CF3D2AB203EE9BFF8A6CF7E0860D7B83E3C7BB0F3AD152B68E1D933C8AB8C959109B29640CA373F6892774C1EECACBC1833ADA0B28FA8CE21C328CA016914D734F3DA50B72DA799A2D234537549414D483227A0976CFFA3145CE85208124D44703F978AB75242E1677D286F21F66E8510424CEC77AF566F34B7F15C79FF97FCC8037EA21963AA5A85DF7BB4BD8932D5A82D4526BDAE3639792D19B219A10FEBD5B64182DD66E78A01BC676ECB8C33F7A742D562C67969235C0622306B928C2AE52AB0B008F1D2B9B2ADAD18CBC7934626CFEF220A37AEBAD9A10CA4A0EFD051D0FC125C876C7F968D9CB4E169930F4F0C3BA863C353777EAFCD4D45A9F96B9F3687A960968D9FED7E322BFFD363320FD110A746FA4871DC0F99F44F097809FF63A21EB4DA67DD9EC2379034274767C5D64110B6DC897E5E8D1DF8789B40F886CDC0642D6B55AEFC3D9AC46EB7FEDE2DC9CC1268B20339AD930E59029830F3E281E64CB01487D208CEF5D80C82CE2BADA89F144512306EEBD57D7044A9CC139131F14E343B7585FCF9290610DB8B20BE8C9BC9E3AC3E2CB268C7D40C375918EB3EFA406A837C8862CA233D0FD0EF059D4479934BD6923F636C6AF57236469769838BAFD796830DE3F2F2FBEF8A7CC94F548865F8074ED76DDFB70962B8A22DBD1F40D4668FA1C3EC29EC90B081A78FFFB359894AD3EDE844114BB2085BA4FEBDB6B5FB94E71EB56F48745BD2D4964115E3931313007E9E32822828CB5F0BE0972F894F4DCAC4E39F34704BCB7982E9516AF07F87069417EABD1C48F1C09BD84B0AFE8B15B460F2957D48E13228D7F27322DCF3D773093AEFB44C6D167EFDCBEB070376FC98394CD00DEF12033EC8459D433CDAFA188C77CFA0EF698055D5B56382A8E3F38B6EE9522BE2EB48771AB19F5BDA3884E36F03FA365BD85EC484F745F4D52FC2580778BEF3B9F05BD938A74E5C1E24EFDC8D2F1CD6A8703DFD3C4720AA4FC35BF47AB94FB45912DFB215B2A8E579644B63A2049DF7204192CDADDC9262DEB6DB7E9C11EA5886E89376E5823D853D0F6B227E0ADC81AC7E39DA15CA71173AE42C09B4949AF8E47BD6EE75D9D86BE1BAFAB10B254AED4D2EC20195C60CE735F10F9FE175E7CF1486685AF1719B853E4FA9B1A8DBB80CA302AFB166C5822C0EC3358E07B8BF0E0FDF74B1E5DF3CAC9C9815948CE227A01CA4F3F08CA8A303AE456E73CA21E29E905DBBB8A9CBCA3E8FEFF4EC05BD48FA49321D1558A796F76E43AA4E45E8069C172519E7D96E16F5A6DE95ABB47A99D1B5DF726B03B5AC067C5FFDC07229CD952FFD6B7E43C2408088E2F09F126907E01C6F56BF838D901DAEDFC0D97C8C98F05ECAB169A9FD4FF7FC09BD8DDD765079BDE1E62EC1EC2CC1522C5FB513F50E8B7ECBAF3CEDB9BDFF8C6D057E0CA10E955007E14E17E58F5F5BDF6B5850592D8EAB184D18F3BBA9735016F93904CAEEC1E42723D8BDDE368920EB0DE1AFCCF1991B9AB78F0E42709F6B226E02D0859DA99674BEF04F275ADFEBB55287F2609780B425E777B70B945F64F1D013FAD2FE3E710FC9C809F13F0F3D74FEEF57F01BD129E0E0720CA810000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (31,1,'House_(128)',decode('89504E470D0A1A0A0000000D4948445200000075000000800806000000355B26160000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000202B4944415478DAED9D075C13E71BC7D9A3ADB6AE0AA22C4185305440EB42C4ADB8C1554414B50E0415151544D1CAA80A560554B4AD9BBD05441C2088227B6FA50E6A6DFF6DDD03F2FCDFF7C8E125E432206040FBF9FC4C808CEB7DF3FC9E716FEE24004042DC14A120A912212F59102E2779205C5652431CB7519C25761B14F9856417A4FC0845494070215C5EB201C18D0997959818262321D99EDB929898A81C1B1B3B3A2E2E6E29D20674DFF033542115D5455226EA2BC9CB915F4A02020B912CB0286A315C40704BC36425EC11DC2EA278BF909010E99898188DE8E8E88908D86A046E3FBA8D442A080B0B7B75FAF4690808088083070FC291234720383818D0DF1E220522CD41CFEBF2192A1F4577953C15DD4512105888C260597023A870E59064259F21B88711DC01AD79BFADCB2D7E39E6EB9E121511761F4182C8C848F0F1F1017B7B7B58B56A15576DDCB8113C3C3CE0E4C993F8F1EFD0F3AEA20F831392CE67A81C8AF946CA35E66B4988C6EA8AA052E19251FBC19259702598086C6298B4C4F45029092961DF73CD5C93188779C6B07EAE31ECB45F5070EED713A9B13131CF305C7F7F7F70717181D5AB5783A3A3236CDFBE1DF6EEDD4B442D8E5E1CC5289A212E36E6F9A5D8A8F284A8903BD7C302A3B22EBA4DFF0C1529B687D492D8EE5210DB4D0A105C8861816D8ADAAF3E442D174B0614B580E056874A4B6C4270BF11F47D37599A246F9D6F049BAD8C61CD1C1342F656235FF96C5B9E131E12948DA2B001473002F7F4524C78E9B5988BF9D7224EDE490F399C9719E4712FFFBCEBEBD2B0BD5078CEB94905E79CB77DF2502FF5921A17D753EA6D5C0F049504CB821BCD0997B72563B0582F10DC6308AE1EBFF75E3D67581406B96EAE09382F3002272B23588F2217DFE2DFFFB876C6CD82F3DB9B8071022C3CBF0DCA23BDA034740F9485FD48A83474F7BE4F1A6A7C6F29DD4BDF4AFD830471BD907A2251E152A396CE9215D82D9915B5802C1910D86BA1921273432425A4B946AA95F1B54D968D514A82744450B7A0E8C5BF77B51D978EE11507ED24C095477A12B78DF7BDA0246437145DD801E463B03EE9484D5096528E5796AA8D579202041730D84B54B02CB831C25AB21C3BDCD046B8B508EEB61009899E9C91BA0141744610B72D180A38BF9236BC16C97BEDE4FC925077288BF0608F502E518B01E3C79586EDF1FC24A126F695FE3251453A3BA18F1420B8C00696132E356ABF91E46EC95FB05B7238A7254B37C17D8DA2F617047728DE8E8D96C6C9182A09D39165BD38C762A82852D3A8008B2E6C47F0DC899FCBA3BCD96E4B82771176FC4946EA655569E9CBFDA42F21B080C042021637B8BD3E5872AC682D1950D402029BBECF40356BCB3C0471BE31914BC928DD6C85F3AB31FCB46E6A010656866D17038CF66EB25BBA88FD24A126A9491FBBAC260D082E20B8D004B78FF407B07496DC9D8F25F32BA4D82D99807B4E4116BC7554C065A6010112456F537E2523950E6071902B8AD49F1A0BA5F01F097D7285D2154D69E72B1AD290A48E4405CB0697BB25C789CC9239A216095932044949C2917E3D60BB990E2A941AC1BAD99A65E0C8C4799500877326592821DBC5503F00FE040BA5642DE985C9FDA599082C1060B9C1A5462D9D25F7E463C95D3E58B200BD2DA725133AD5ED4B7037D200EF5593F38A83DD9AB7329C518B72696938B2E908CF4FA750BA3A4066CC556D9937082C10EA8FC0927049B05CE17280EDCDA3906AA925CBB05B720805EE45399977D7668D80FC804D8DD178D19580C99E671BEDB7E8A2CBA79353AFEBC80CBC3648E6EF6B036500C10504971D2C275C2AD8965AB2F0E346AE964CC20D959682C4EF74216BAF1D11959F74A1748321F3ED755D991A041610586802CB0DAE20968CC12AF328A47859B2F0BD2D9B25938A56ED0537574C81C2D3DBD85A9AB2F07D9DBF4F4DD197F9E2869ECC1D0416B0105C680697044B67C9AA8D4A6C95254BB674DCC8D59249857FA50857A70F871CDFD54DD68C7BD5FCB35BB74B48484872AAC3434D3594954A3590894A319001041710DCE660B9C115C49205EC6DE3DAA2B7E5023744521212866A41E64E1B22528B83777B2088D21449B1D46E70DBE4456F0E913D9C3A5816520D115416585AB86C964C13B5EA748594E0962C48211529606FDB0C2C4B51BDBBBD4B18C5B8B8A34B971EEAEAEA0A5A5A5AF20C06430EC19461016E17B0227FC13423D94D3787CA02020B3731580EB86C607959727F1E96DCEEBD6DB37123F7A8450A9694FC678BB6F69DD95A5AFDBB75EBF675AF5EBDBEEADBB7AF220B2E19B9921D066ABA89EC3CA48634635940708184DB0816895FD4F2B1E416F7B6BD04EF6DA35AD8DB92DAD3B7EF63073D3DB067304AC76B68E87FFBEDB7BD555555BBF5EEDDFBCBF6022BB217BAF59DEC885BC3655FA70F9305041648B0694339E17244AD1EEF428AD692D5F858326BDC78A99DC68D18A85FD7AE751828A9750C46F92835B5E17DFAF4E987D413472DB6E4B6B66291BC48C64839AD8C11B24F115840600971C265B364431E96ACC3DB92C5B5B73D2727F3DF465D5DA042C55ACB60549AA8AB8F5152525227C15222B64DC0B6FA056E8F96EB797B945CE5ED917290315216105C20E19260D38D9BC315A690A2852BE0B831BE8DC78DA13212F52E5AFD999C402960AB8CD4D4C6926039AC58BCA0669ACA29DC31954BBF33460E105C4070115839026CC677CDE1B259F2101E962C82DEB6B5E346617ADB834ADFFE63AFA7F714011408AC8A8A4A8FB604DBE227DE1D2727996926179A39560E1058C060EF8C6E0EB7C99287D15B726A3B5872424B2DB92B6F4B3ED355F10905DC9FBCC0AE41568CC09AA268554515717774FB85919191ACA80BA7964335973B88C0C25D3339C8C4A2C06D16B574966CD4724BE6396E5417CDB891DF529AF02FA55E6C1934900DDC2A5DDDA7745049B0C3D4D547E3E289048B808A146C8B9E943D41DE3E6B821C648D4750CD91C67D009B694A0FF7160F4BBE290A4BEEDF8A71630B96D2EC53EFF7821BB8E53A3A7FF1033B5C436314B2E1BEB8DDC17DAC28C10AFD849CC9F233B327C937644F9407126C967973B89C60692DD9848F251BD05B727B8C1BE90AA9C0DEECED0B55EBF5F4EA4FB9B8BCE50576AD9E5E85B1AAEA080454455D5DFD1B518215EAC1B953E54D72A6C8BF44602167923C60B054B82458812C995F21D5524B16416FCB6F294D7877D9BF37327469819DF3F67EF5E79F7FC2B97DFBDEF1033B14F5B1FDFAF5EBA3A9A9F9350BAC4C6BC10AFCC0BCE9F21A79D3E49FE44E93070417105CC070B349B813E41BA3763C7DD4D25AB220BDADF88C1BEB5DB53569A3D065C68CE71828A933EEEE6FF958719991BABA49CF9E3D95F15811CF8C5B0B56A007E5CF94EF963F43BE34CF421E105C20C1E6B2C052E10A65C92DEA6D0518378AA0B7A55B4A7344ADD7135ADB1D3CF84D6D5515930A15EB173737BE608D35348C7BF5EAA5D4BD7BF7AEACA9538BC1F27D40C16C05F982590A290533E50181857C0C96032E19B5BC2CB9A9906A034B6E9B7163F3DE365859E1B1233D1CE6F58888B79C4049056EDBF686A7153318A5269A9AC678568CA2B64B6BC6893CFF58345741B2708EC2C5C2D90A80C02221A82CB824D83C326A5B6AC962DCDB52E1C62949BF74D619D84007E5D0BA752FE880920AD8BC992F582355D521BD7BF7FE16836DE9389137544B05CFA2790A503817690E1209776673B8825872532125724B16416FCBC792BDB5FBFE8F0EC6A6D1A35FFE515707FCA062F96DD8F09A0FD8621335B5C14A4A4ABD5A3A27A6FD43F17C851F8AAD14A0D8520130D822122C52010B6E3ED592A7F3B1E4093C2CF963F6B6028C1BCFA877ADA5CDA3FAFAF54577EFD60B0294D4CFF6F6AF04006BD8D23931D75F962E549856B240A1BE643E828A85E01671C2E511B5BC2CB9A990E267C9A35A61C922EC6DE3D464FFDAC4A37D09F6F57D250C50523E3FFCC00F6C9191A6A65E4BE6C4CD7E51B6587168E962C5E7A58B14A06421D2022416D8A6A8A558720115EE0C3E963C898725B770DC9826B27123D7A86DD8ADA3F99C6EC7BBCD99F3BC254049EDB7B37BC90FAC71FFFE0C61E7C46C3F942F51542DB3567C5CF6BD2220B880C1962EFC00B798132E356A85B064410AA94C31E86D8F0FE8F93BED4E1F3AF44D6D4D0DB4062A96B7AD2D4FB0EBF4F40A4DFAF7D7C5E34441E7C44D772A962A7E5D61A35884C042B93582FA7DA34AA970A9514BB1E442612C790A0F4B1678DC48534889D09263B4151E38EA3168DB97D4D8D877AD058AF5E4C913D8676DFD820FD882615A5A3A82CE89897F2A9729CA56DA2A5E456001ABDC06890A77F107B83CA396CE925BD8DBDEFD48BD6DF2009997DB190368477C47376E7C210AA054B07B172E7CCE67A4983F525D7DA0205327E29F2A3BC53395CB1501C1050497005B4182452AA3C2A546ED023E85D46CF6DE369F1AB51F6BDC68C8DF927D74551ED3ED5C2753D3177FFCF10788122A0116BDE62E4B4BBE6087ABA86853A64E5C0B2789EA955FECA95EF10520B050458245AAE084CB236AD90A29212C59E071E3B8B61937722BA44275BB54D1B62F0606EF4B73731B440D940A76E7ECD93CC1AE63307247F5EBA7897B583A1B96F8EF7E61DA43EF89D5082E54AD5064874B82A5B3E445C25B72BE30963CA18DC68D34BD6DB29EEC53273D1DDA950B11FEFEAFDB0A2829EC023B66CC78C6076CCE780D0D55960D378B5689BABABA7FFFFEFB6FF8AFB638F7A1A7D9EF4D518B446BC9D61F2C996B21C5AFB715CF7163C35E7D0DDA83DBEE5656CFDB1A2815ACF3D4A9FFF1017B77AA9A9A1219AD6C50CBCBCBFFBD77EF1E3C7AF4089E3E7D0AFFABCACD7BF0E3E83A915A32AFDE7666DBF4B6B7855C4AF39B418F0ADA9D6864F4FAE1FDFBD05E5009B07575B065D2249E60ED198C3B8B070CE8D90C6A6666E681FCFCFC37A5A5A5505D5D0D0F1F3EC42FCAFCABEC4E41ADFBF0BF692DD9E68325732DA4F8F5B6735AD1DB8A78DC983444F1FE069AF6653D6A5F321213DFB5275052758F1F8393B9F9BFBCC0A2EDCB58A6AEFE4DB3EA372525A51F827B3C3737F77D494909545555C1EFBFFF8E6D8059977FA3F4DE4EA3E70259B258F7B6DC97D2A499C8BE72D1D3A6ED138F393BBFF818409BC02207DD6466F60F2FB048B7B60E1CD885EB44E9E6CD9B9A191919A77372721A8A8A8AA0A2A202EE23DB41D6DC509371E97EB5CBE037CDA2D656F0DEB6B5E3C61C518D1B29517B74701FDA6A77CBB8712F9EB441FBD202B0CC4DA6A63C17B339EAE9A5AD6530BEE23AFBC595545C5C1C03010ECFCACA6216141400CABB80F32EB26666C9D5903FABB6E9BFA7B56491F4B60AEDD2DBC60DFBAA9447FBF2AEA2A0A0E1630325F5E8C183860D63C6D40902962B545C26E371949F9F9F695252D2D5BB77EF02CABB40E6DDDADA5A6641C2D97FAAB6EAD6136097F329A44468C9B922B2E4F491F24F37EBEBD04E8D620203DF880B50520F6A6BEBB79A993DE10576DBD8B1E53CA1E2E3792A2A2A031C1D1D575FBF7EFDE99D3B7700E55D282E2E86CACA4A1CBDCC82B85FFEABDE32A8A12D7BDB36584AC3F41AA2F1806EC7EC5BBCF8B9B8012575EBE6CD87BB67CDA2851AE0E2027CA1220D4460C7C5C7C727959595C1EDDBB79928EF427676369079B7A6A69A591073E2BF9A2D039882F4B6425BB2887BDBE0EFBA17D05A98B1F1AB47A8481457A828B01E444544C0AE19339A6DFBDEF9F3F1E9E005866A7EE9D2A5245C1163611BBE75EB16130950DE059C7731705435371444FA3DABD9A42576E346126CDA58C57BA87DA19B1A35642627BF1757A058687FDF8B8C8C7C16151E0E6E16161F8ABA912321A2F11CFF2D834A0ADB302AA898696969805A22C8CBCB03DC12555654341486FFFCBC66A3266D6FDBCC92DBA0B7E51C37DE1D2FF77AE7606DDA2AF2A4ABEB0B71068A8502A8DCD8D878CEA953A7FC2243439FEF9C360D1CF4F5E1F4A14304D056432555585808A8D765A6A6A6627B6ECABB6565A50D8521075F546F50178B7163E070E5423AA0CE13263CC787C03A02546565E5C94A4A4A0C1B1B9B4141A74FFB1D73737B4B021519542C54111315F2B56BD7980830907917032F292E6A28BCE8F9B2CA4195ADB7AD6887DE96B4E46BE65FD1025D6F68F8AEB2A88829EE4039A1E235C278FD128ADABE08E611A4B722854A858B6D38393999892A66484F4F07B2252A2E2C6828BAF0E3EBAAF57D45376E1460294DF61485BFB618E8D04E8DE2CF9C11BBF64518A8F88039668718A921A8A7440E950A17476A626222F3EAD5AB40CDBB4505F9F5456777BFAE5AD7A73D7A5BE6C161EAE57440BD6D6DC5B67D11162AED6A4251412585C78C186642420213452F907937272707F273B3EB8B4FBBBEA95AABDCBA71238FDE36767CB74C3AA01B860F7FF5B8F100C667A82D111E336298E8759849494970E3C60DDC1611D19C977DB7BEE817E777956B7A8B74DC983543B166A33EE33DCD22EC86EC9494FA8E0454ECA092AAA9A921F26C4C4C0C13593350F36EEEDD3BF5C5A736BFAF58FDAD287ADB37EE43B56897789EDEB3E76547032AB65049E11932EA71213A3A9A89AC1970DEC53FE35164D6EDF4FA92131BDE57ACEAD5E271E33933A5DB7440774C99D221DA970E0795149E21632BC6D75743EF0157AE5CC13D2F61D577336ED6171FB3AFAF58D953A8DE3663F657B9B4436F43C3B73565651DA27DE9B05049E119328ED6F0F070888B8B036ADECD4C4B795FECBFBAA1624577BE965C345FE1EF6D8307D14E8D922E5E7CDB51817638A8D4B932068AAF7888F22E6E89F0408368893252AEBE2F3EB29259BEBC1B4D6FAB088747ABE6D1013DB87265876A5F3A0D545278868CDBA0909010888A8A82F8F8783CD020F26E464AF2FBE2C3CB991576DDD8A2F6D28C6E39B4DF211D31E245476B5F3A1D5452F8F01EAE948382829AE5DDF4AB89EF8B7C6D50E47E0377177EF964A30183FB37B5F5F5EBF3D2D3C5661543A7815A7BFF7EABE0E2C37B286299172F5E24F22E9E715EBE7CB9B1254A8E7F7FDAC3B5EAA09DDD4B8F79F360E78409E0646CDC04F582B77787B75DB184EA65650537108CD6462E3E02141A1ACA3C7FFE3CBEC52D115BDEA51E022C2B2E06F73973FEE92C40C50EEA9661C388A839F0FDF79085AADAD6C2C5932864C9CCB367CF0267DEA51E02AC2A2D15EB83DE1D1EEA96553F82A3F10870343080131B374209DAE9AD858B23F3DCB973CC3367CE60C810111141B44464DE7DFCF8B1D88C021FD6D6743EA8EE2773C0C53F0B362CD9060E0683C1C9C808823C3CA01AF5A8ADCAD7B5B5C4B21A14A96F0303039FE4E7E7BF406DD14BD416BD7BF4E8D147835AF7E801E4DC888198801DE0EF680EE13F6FEC7C503D4FE7C1DEB365E07AAA049C3C2F838379E3AAB8EDA6A61077E244AB8B292C1499F0FAF56BA2B0C205557B43AD2AC9851B61FE707EAF0D04AE3182E04D2690E8360662778CE89C507D2E1480775005EC395346442CB17A6F7B10388C9FDDB81ACEC20252516EEC4850EB1E3F84DCD458883BEE0AA7378F878B1B8C21DE7514A47B99C36DEFF14D8A731909113F6FEA7C50FD428BE1E7F02A02AC7B60360172B35F2E381E2D00C70DC7C1618419F1BB402727B1865A5D9A072911C720CCE37BB8B0E93B02589A073B444E755AA88191A51010738F00EBF95B6EE31193E379B0F9585123D89F11E84956E0696929B65013029C2066FB48B8B9CF8C2744AE500F3B753EA8A7E3CAE197845A02ACCFF9FCC62FF39ECA0717946349B00EB3578A35D4789F6590EE692EB462B77752A8BEAEBE7036A18A00EB17524440F53A53D0986359605B0B157F79BA2DA15EF2590E297BCD8456A4F308883CD209A16E9F3015368F3285437B4FC0898846A8BE170A3F144F08EC8639ABC41CAA1D5CDD6D2AB4C2B70CEF9C5063AE95C3E19D0761A39109388F9B4C40F50B298643ACE20983DD34EF07B1861AE7BB022EEF1C2DB4429C8621A89B3B1FD4E4DBB59094F527842514C1BE65EB1B7BD4E99670F0C8A526B05BAC568B35D4589F55A8E81925B42E6E34E99C5053B31E404AFE5F04D8C86B558DD52F824ADCCE5F013F1DBF01CE0BC41F6AD4B61142EB9CA371E7847AA7E011DC2EF91F01F6526A0D013328A10C8EEC3F0F9BC79883A3BE016C9DB148ACA1C6F8FC0061283F0AABD3F6461075744BE7839A5B5A07B955FF12609333EE379E70EA4A3984A53C42557135783879C3368B05E20DD577355CDC344C68FDB27648E7845A52F9044A6A9F116053B37E27A0C65DAF84D88C3A02ECF9E407B0CB7A9D58438DF65D0BE71C8C8456E01A4388F2DBDAF9A0C69E3C0B950F9F1160EFE43F6C5CDD97564DE45812ACBB8D78438D42507F5B3754681D5F65D0F9A0E283E318E21E8B9970252201F24A1E133FDFB85DDD543C61B07B6DEDC51BEA217B085C3D5868F9AFD087683F67F1808A4FE4419EF3A1B587C52E9F39032EE3C6354E92162C06970993E156564D53F19494F5043C96AF176BA891BEEB2160A581D03ABC5C4F3CA0E293F263A8E8BE19827A5924DFA5A9AA82202FAFA685618756AE831BA9854D60BDECC41CEA2107388200092BDFA50C64BF1F192A3EED283E213F92167A913189898909225DD79B9B0BC71C1C501BA30F8E8686E0E7E40AD76F55C1FE950E620D35C2D7017C10204175CC1E415DC5808336BA1F1DAA143EF3333E673B7A92068AD6EF9292922EB5C5BADECCE46462A521B1E0DAC8189C4DCDC41A6AF82147F8C97A90C0CA0C37842B81FAE8BE0E44FB6FFBB850F17550F069BDF1855B516E1D72EDDAB5A8B65CB49D74F62CB89A9B1370C51BEA06F0FE7E90C0BA136108C9270D88FB1F1D2ABE060A3EA5377E22823AE882BB7B5A4966669BAEC6C7F936D8DB9BA8943B0B547F7B1DF879E5A08F0B9533AFB2AE87A2EA37776EE9CE7EFD2074EB56A82E2D6D53B8D595959D062A55E20095B060FC24DCDAF8CF9B57BCA3776FC0DA33681024FAFAC2FD7BF7DAFDBB351D196A4CC0769140453C26090D951AADB860C236EC6D6B3BFEC8F4E90F48B058FB478C80B4A0A0CF50DB1FEA440455175F92B32550F1E5316448B0B8C5396A67E78C60BEA2C20D98350BF2AE5FFF0CB51DA016161696A1E2753CAE73F0E53859970A130C2A0758696CC5F805F005D151AE553A666B1BBC5747A78104EBDAA70F9C5DBD1ACAF3F23E43A585BAA3D5EF5F5454548272AA290A326D9C165997099316EAF2D5E4C558F11371458C8B27326AD7CD9E3DD8DFD232CF5545A5296A776B6A4294BB3BDC639D87FF3354D142CD484CAC40963B1CCF0F70114B5E9B46E80BCD53C036452DFE84E03E167F5A3C972E5DF8F3A4494FA996EC69680857F157296A6B3F4325A11E7369D17B96A6A743A48B0B780D19023E66662FD0BE37E8D1A3870AE5F260524243A5814BE45A9CA8D1A7E51B5C891D5DBEDCDBCBC8E82D15EE217373C88C8DFD0C5548A895393910B76F1F1C183912A8FBD3D7CCEC39DAD7FD5947D0BEE07AB12161A072CBB59C963CC1C44433C0DA3AD1BD7F7F2675634E2E5A044519199F34D4D8E3AE3C5FFB5E490924A156F1F0C4896C2039A03E43FB5A89D745FC5A04955BD4522D1957651BE6CD33F59B33A70217504DC514CABDC14E4E50555CFC192A4B0F50ED71FDF871A283A0EE2B4EB9A9A981DFCC990F02D7ACD9C1EF729B2D86CACF927112C79FA8FD4B97AEF6193BF63FEA06EE193000E20F1C80FB35359F18D49DC46B3C7EF000D2CE9E8553C8BD76F6ED4B0BD24559190E8D1FFFEF713BBBA0B5B36619E043A13D7BF6EC22D0F55345216E968C37006F088A60153F5BDBC07D0606F5D48DFE69D830B879FEFCA70175F14038B3D916CED8D9C12E0D0D5A9058DE26266F4F2C5992B27BE9520B5CABE0B486F7257642D605E765F85EE958C460D92C1927736C1778FA31DBD454CF7FD1A2F45DC84AA8FF1347A74F879C2B573A1D542F240F0B6DF01A6B08BB347983DC3B68504380955589EFF2E50E08601F5C08E19900AB56A1C29416F89AE46D00578AB5016C968C3658798BA5E58CC316160F5D9494D8ACE6CC8A15509A9DDDE1A17ACCD4869F260C853D03B5798274535585A316168F0356AEF41DCA6068E20F3E6B1F75C1C180F71B763D4A644A9181C373FFB705546EBD2DDE38FC89232D191FA7F5B1B575D93F7224DBC87197BA3A44B8BA424D0BCF03F1B1A07ACE190007A618C38FFA3A3C41E20FB2EFB871CF8E2F5F1EB66ADAB4E1B8EEC0FB83E566B83D54E0169582C06C73A8FC2C195B0BFE64AAA9A9691CB5B109A58E1CB1F6E9EBC3958000A18717ED09D5D372201CB418065EC6863C411279D2C8E8DD716BEB34376BEBB9B8C6C01D02EEEF497B65B527B2149052C2806C57A83496CCD6DB624B5E3271E2707F2BAB7CCE6AD0C7D4146E47468A0DD4506F7BF09D3B12F68F322152062F907B060E64FA5B5A961D5AB16233FA20F7238B1ED624EE0B5E51D9AA7DDD5E50051937624B765DB870C9A1C9939F72EEA013F3E743C1CD9B1F05EA23E416A9BFFE0A815656B09332E7E626BC9000157E757E767647BF633006F0287A645B6AAF620595576FCBFAE412E346644DEA3E36360770694FDD61787871C1C1012A8B8ADA1C2ABE186D4670309CB6B5251A7F7E7912F5E2CF8F2D5D1A6D3B69D268FCE1E453F4882C2AC506AA20E3C67EFDFAF519C260E81EB5B6BEBC5B4B8B6DE4E8AEA505715E5E5C8717AD818A2F809B1D1B0B17D6AE853DDADA7CF3A49791D1FB638B17DF76FBFEFB45CACACA6A6D51F47438A8828C1B712E5A397DFAC4A3B36757728ED1BC8D8DE1C66FBFB51A6AC1D5AB10BA7933ECC3DF93E50312C166FACF9B577970D932177CF8ABAD8B9E0E0955D023407807BA2F5EECE0336EDC7F9C3BFAC8E4C9907DF9B250504B333220DACD8DF860F003898BB7C3D3A6FD7974D9B213A3060FD6A32B7ADACB5E3B0C547E964C8E1B91B40FD9D8FCE2616858CF99D77E5BB60C2AF2F268A156E7E7433CB26D5F5451F3034954DE63C7BE08B0B189B7B3B030C7791E57E9ED5DF4740AA8025AB2EA18636393230B1766B8A9ABB381F8C9C8880D6A555151FD95C387E1E89429409D60D1E6C92143DE072C5A94E5B270A12D3E6EF9B18B9E4E0395DB521A6E4780D07DCDF5B3665951478E9EFAFA6C50777140E726F7C63C597DC0D6D61D7F214C9C8A9E4E075590712369C91ED6D6BBF68F1AF58A132ADDA12DDC1E1D9E3AF5E9115BDB5FC7A01715D7A2A753421574DC88A30B41D03BB1664DF413D4EAD0413D3866CC4BBF254B2E2F9B3A752AFE469FB8173D9D1A2ADDB891B4640C055B262E68562F5A342EFEC4893FC2828309A89E8307E33C99EDBA70E10AFCCD783E458FD8DB6BA7834A67C938BA7AF4E8810F2477C7EB9211B0BE87B66E5D7764E5CA9D6A6A6AEA089E2A5E8147DA6B6B0F6F7D86DA4E96ACABAB4B54C938F23038D697A6BB77EDDAB5FB37E83F0CB2A3153D9F1C543AB84818182E701430402C6D6D6D792E203B7C54765AA874B64C0128DDD941765AA83405956467B25641F47FBF6882BE724DFB2D0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (32,1,'House_(24)',decode('89504E470D0A1A0A0000000D4948445200000016000000180806000000FEBE0D4B0000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000004834944415448C78DD56D4C5B551807F0E7DE964BDFA1043A0A8CB1C286C8E8C88848CA4450D064EA3682236101B78E38464C8C6612753A58B2AC44E6074D140C3234594A34E21CB82540CD8A803A0B38C78BC828E56514182B2DA5ED2D7DBBD7DB52B0400B7BBEDC9373727EE79C7F4EEE414892047FF53317799E70215F391CE435D2098D274852FF56E101CEC18C82776D41E12FB359AC870902ECEBACD74AEEF89B8FF8836F4721498813FDCDE5043EE120817080D5E524E586285EB346B2AF2D3949FC777A4A620AA0846EFFF10F239F08EE3C8044BA70DA1F141AE772A34E0037EE7280A76DE0B12128FDA98967A5F97B113A6D61FFF1F777ED08771C44D80C92FE2B05A4FD8F026C58C0FB45992C5B4856EAD4B56953867C60C01010FEA110A1C568B116D241BEE2C19C9E0828D0BB5B2FEEF2F6B9C766195CD540CC6EEE3C82E4B40C0E3EF20BF7BFC4A8239DE4B9D5C99BD00D71AC8E595DE8587774E21E92C3C16D66F3A3C99595AC76B57A61033CF83AEB03D24E54AFA3DE087C8FEEBB20D567E9E4C6DB7992C3C4A9AAAAB0AB4545CB2B4B4BDA7FF4FAECAEB9B9C71EF8C1296611B513393519D931026FFB3E44DC1FE7EF89FDF8E64D3E8AA260C371A286C21D46E3CC98D198FDCBCCCC22B2D823572C359DCF702E1B395B51DF3856C7F4F6A0FE0E52945CDAD080468B44D8DAD171B399F8F4E449A3CB649AD459AD39487373F3BE1801FF2232A5CAE3777F16465896B10D11F89CC2E940669B4D22BEB8F8B4FD88541AB2F926E02693ABF6CC193D4ADD4A4FC6252525C28A8A8AE9E9F1513CCC30B4127EB7368C309BE9DE3CD72220DA74516AA33039EC7C6363380428A542D1BE3C3111B70ECB64B259F7C0FCFCBCF3A1E681456018B4EEEA6D88705A2C3477AEE34BAC1EC5626C4AC58D1B5C2687830682BBBABABEADAEAE3EBB055E2BAD566B9F1C1DB2C62C0F59987F36E1D70704BB8F5EBEE24A914858B04D058471A311EEFCD80EB9854780C1E1C0E4E4A46D74640467A1A825EFD8B198CD9069611A8239A180B178DBC31683015A3AD4B030330FE5E75E8060361BDC57AAB7B7D79C9999C95903C71475806BBA804D2781975D0182F8B49DE1CE5BBFC3A2950E0527D281CDE77BE0BEBE3EB344225987FFBAFE1E3816D59EF6DEA39740204ADD1EB6E338A85A3B00894D85D4A49080F05DF945783CA6F2B4334E5F858838F156585A581879A1B2728E11B27A351D361BDCBB751B52F27281C9E3F985BB9B64A0EE6D836026027965B510B127792B9C9393432F4E48500813130F3F9D9F4FA76118F8D676B0BB5E7DA76E1DEE562ABF91D5D494ADFFDD1004416BCBCB9FC3ACD6C6F8AC2C517C6EEE13C32FBE2103DDA006A6552A1B121A5AF3667D7DD59617845A805E5F56F636CD6EAF4C29280889148BFDC23DF24F60E1DE08D8750E82C6E44EB122855F5C696FFF52AD56DB2993F4FBE65138929696C63C2B1637328383F39F292DC546B55A73FAA1439C71A512C63A3A488BD1A86745477F37303777F9F3D6561DE5B83618815EE9B5782E15178BA231EC27278625D8351A8221142A29E542537FFFBFC3C3C30E3200B02DEC1BCF4752A9F0FBEEEE05EAA86E8CD869CE7F4552180558747E940000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (33,1,'House_(48)',decode('89504E470D0A1A0A0000000D494844520000002C0000003008060000006A9098E10000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000ACC4944415468DEC599775C53E71AC7334820C55107A2202E2206C35270946A411C2DE0069CA888E38AA3CE8B560554B84ED40A5AD072FD2848951050212053020A82B202C680A0809F6A9D54114145F2DCF73DE4E0099B88B77F3CE4437272CE37BFF37D9E379F373400A075B6049AB4FE911C7A7E048B715CA04EE3B6777C6C6CAC964824B2140A85AB6262627E4A4949D150E5BAB83AFD86786D9A66540F7AF6956E74B8FC0D1D2235E872219B1E1BCEA4D9A2D3D1A9C76E983FD6D477F79A8C3F422F141D3C7810366FDE0CDEDEDE101C1CFC262E4A109C2E38EEF8558105341A53A4451745F76640D4B70CB8DA830E57341138870E11EA7410326925E10CDA26745C4F0278B6C5D8CD8E16B00595A7EBB4B23B82C30F0B85FBDF49C33CE19E600FC8847BF2BF2AF0355D66606C7F06C4F46380A82F03A27B21F09E08BA3B82D624D28608360257A3550B19B4DF0E1BEACCDFE6680E9B1C2C60DB3C8B6A59843790B0B8A4E15E795F0D3871186347FC2026C40D64C2351D06C46A23702D04DE0741F752A44D6A82D366D100690267B47A80B72517B63999574B2F61D8BD702FCC0B3D7AA184F74ABE0A70328FB93089CB94270E6342C2102610E0BA087C0082D656A44D684287ABDD1B3489E434A60D481308E6B0EB5317DA4061903B018BC1A502CFDC2E074E3356B312F3D53E5CE7A941B2811A2070481C8AC00723703D9C36131A35E9D3A0C9D59E94B4494D50DA023A8267A94182B529E41C5A0DC591FBA534D4A8B426CDAA32F0ADD16CC31BA35895A9266A2036528394916A707D04021F8EC0F529690F6C489BD424BA0FA529BB353465A326286DD4944445F4ED215BCEE3590E193244034133BE08F8F6185AFF8C71ACF2740B16DC18CD82343316A41A23703E0237A4A44D6AA2D7A049EC004A53F66E68CAAB645336D1E460BF7EC51BF8FC37B30D0C66F7EDDBB77B47A05B7C52328DA69935919D9D69C9868CF12C481FCB829B187C1402375523C089B4494DF43F6BD2D894ED6872AE3BA764BD91D1AB9F8D8C003D56DB73B94E5A5A5ADDDA836E3E6B9D68CCECC96CD19D496CC8FA810D9913D870EB3B16A0B4217D0C023757A44D6A62F85913A5A6A46822D2229BB24193C86E8C975B78BC4FEBF8FC6A373EBF86849E397CF85C6D6D6DCDB6A09B3D916BA71E98FBA33AE44C51873B366CB86D8DC02722F0EF15E064DA5813D33634194CD1A4BF9226F2BDFA839F1290C6C675F1172FD6AE37357D4F42633D747474BE69AD1195FE2998C5D92199A10EF976EA90FB13829EA60E286DC069DFB642E0386DAA26E69F35696C4ADEE7A6C49AC437D1E477BD9EF7301CAEB33E3E6F9E3F7F0E79E9E99FA8D0B3B8DC198A46A4B70A2C75E22CBAEBA0212F9CAD019299087ABA3AE4D922709CF6D4067022ED963419DD9A264C254DA206B2CB3719F109D8EDB6B6951896ACECB4B4BAF526261F14D06F1D0C0CEC5A8226FEC8166A58A1FA706F9E06481D35A070AE0614CC42E0386D7B05384E7B0ABB41132B8A26D4A66CA289D2EC1EC6ACDD6938FC35065A6766F6AEBCB4B49E0A8CEB8E58FC910AED686060CBE572D5A9D0B4FB2BD986F79771FE2E76E640D1220EDC5B80A011384A1B0AE760707590E0B4494DA62A6B9249D5640C451313654DFC78038A142AD4270985354D61C9CA4C4AFA80DCFE0CCDE54E43C0AC46E0BFFCE62495AEE040890B07EE2F45D0085CB61081CF47E04E081CA5DDAA2636144DBE57D6E40645932B7C4D29E9ED91B56B2B5B83252B3D21E13D098DE67495338F674D4E0E5A6969E9D31765D2BC3F8FD89696B822E8651C285E82C01763700DC09ADC6D4913B2295BD0843ABB5347B15E6CE3F38886DA6869F9FAD9B367D01E30AEB4D8D8DA466823A3D76BF9FC310470626262CFCCCCCCBD3299EC4D59416651F13E9B1725CB15E0544D9C289ACC6C43931F9434911F301D52A61861EF0BB3B3EB3A024B96382AEA1D7A5F2D71778C8DFFDE646232BAC10B24B58F8F8FAE4020089548F2EB6E2747BF927A4C7C8B35295E4A499BA24901A9893D4513EAEC46E061637AE5902A5CF2F3ABEA0C2C59F1E1E12FB7585810E7D8696353D5088C87B59D9DDDD4070F1E407272726D7676767D665C64A574F777EF94345940D1644EEB9AA45B6B94A211568F2FE4E1E0F04A15585C0F1F3EAC0EF2F52DD93A6E1C8406044033E0478F1E012EE436C4C5C5D5225DE4E9A28B95B29D636B7053624D64AD6892AFD024E747F55A0FB3E1C46AB661F4E8AA3F2B2AE4AA0297979757EBEAEA9A05FBFB2F8A8E8ECE691598ACFBF7EF033AB0E6E6CD9BF21B57822B8BB65BBC6FA689A3B22667270C2054D8606CFCE926FAD0AAC25281F97C3EBB71E1680B982CD494F2C8C8C81AB1582C4F0D0FAA94B98FFA4068B2A84113A94293B4E9DD72496F4FB9BBB73BC2BE1A305977EFDE95878585D5242525C9C597022A8BB69A7E2435299CC779E16EC2ABC2B05B274D7AF9A5B05D024C964422A90F0D0DAD419ECBAF5FF0AB946D36AA3B6239A49418612626EF4AA4D24E8DB02E052EC8CA02D1E9D350515EDEECB59C9C9CFA73E7CED520CFE5D76262AA9245A2AA9890902F56E18B80B3C562D8BEE904782C580962A1B0C5C4B3B2B23E9D3F7FBE322A2AEA555959D9878E023DB897076961C7202F2DAA6B817D4FA7C18E7F07C0C6B5C7E1D0F235505450D0ECB8274F9E40017A1ECDCE8FAD01FEF5E431E4260B20E1A41BC4784D06B1B715641E428F978E762DF0E9A044F0D97D063C02B361E3D6B3909590A012706EC205B8B97F52B3125F3AD6B5C0273D8F81D7A2D5E01B9401BFEC0A6E11F8F1E3C7ED0327FE01F19E139B9538EC78D7022726E743E0FE40D8BFC1133C56FEA23A70721844BA8F6F562961BF762D7086381B2E0684C2D594523871384465E0BCEB4208F9D9BC59A508FC3A0F6C6F6F3FA525E00768790EF6F48480CDDB419C5102E702235507165F86C0D526CD2A45E0DF39E08103077266CC9861D5D662917BE306F8AF7103DF95EB540746E3CB77A9A1529D75E7434AF8A98E032BA059CB67CD1A971612D2EE2A972210404166A68AC0D17068314FA94EAC32540998E13C71E2805FA74E7D79D2CE0E8D9F8476C1BB0A18576BC01515156F11B0693360121ABB1CB862C5C14316161FCFB9BA822C27E71F052ECACF7F8B9846989B9BB35ADCAAC23EE317174E9EAC1DE8EC1CEF3372A43C62D72E78585CFC7F03AE40D74AF2F78753B6B680AE5FAFADADDD0F7131DBDC6EC569E34D8C7D4B968C3B397B76E97F8C8D21019DA4A52F405D019C18721C528382E08C8303ECD6D1817D0606F20047C7A280356BD6533753DADE8B6DD81D67E21DC5A3CB97FFEBA895D5DBA3132640462B5F803A0DBC70049C5830018E4FFB013CF4F488F2B7B77F7A66D52A3F271B1B5DC556155369E7A743BBDE0A4DD009BE3DE5E2F2DFFD26269F02E7CE05496A6AE757BA9428F077B602FF1953C06BE850D8D9BF3F1CB3B6AE3EEDE272798B83C328C5CE250BDFE13637033B08CEC09FDAD9DA9A7B72C182AC3DC38641E8BA75502C91B40DFCEC19E4C7C541D8C68DE0CDE3C14E6D6D38686E5E17B078F1AD03AEAE737AF7EEDD034F81A6697ED1CF5E4D35C1BBE5BB172F9E7EC2CEEEC91E7D7DB8EAED0D8FCACA0860F2FBF05D74072276EC800366660424F6F2948343C989152BDCD1A8EA83172B742EB58EFEBEA11230356D9CCAA041837A1D7571F1386C6959EB377932017CD9CBABCE77FC7802127BE96767F7FC94AB6BC0B4B16387E20F8AF56AED967F35606ADA58133D3D3D9DDFDDDCA26FA354F7EAEBCBB197BF2D5B265A87564FEC7E4B0DA4D235BFE4CD4DC0D5707A3E6E6EE3BD5D5CE6A2E6E9DB5E03FD63C04D1327BDEC2A486AFD0FCBC58EA110BF6B7E0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (34,1,'House_(64)',decode('89504E470D0A1A0A0000000D494844520000003B000000400806000000A4C00FB10000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000EE8494441546881D5DA075493571B07F0104280EAE76028DBD93292220A4AA10AAEA2965A1504418A1450BF5641501495218238505B4645A155111702828C02828CB287833D05515A51B115B5AD15519EEFDE246F7889490009D8EF1C9E030792F0FEF2FCEF784F2E050028A2A8CB92940FE3A5C4EAE2E8D40309148AEA3BBE8E587272B232AA5931313174515D1B51227991D4D114F984D162CD57468941BC342A49B1D77134B1F8781A65A1B0E7392F9B2E197A648F27C2C5474444B404040474FBF8F880979717040505BD8C8C8CCC467FFB26252565D2BF029BAC44F92079BC7849D2583148FC8F1820345CF90081A5C4204E520C2E4B506A63A9944D3114CA68DEE76EB560C8B8ADD685EDEB4CEE8707EDCB3D772EF27E6060201C0B09791E71EAC7BB97CF9DBC959B70BAB82836B8A43CCAD7E7BD62F75228D4D40962893FCB512159860A49E3A89088D009188DBA7C459A83A623348DF20CA183115A9D8C7536D383ADABD9B5C55C0F0A4FBADDAFBDE40D75B1BE5017ED0375317BD93F47799D79AFD834256A68AA02155226A092A7C2CFB2083D1EA35197C770BADC1B6D889360A17B62C528E9D114CAF26D5FA8CB6DB5D003570E74F3AAD970FDCCEE8EEAF3BBA0E6A20709EC03E80D88786FD80C35AA7BBAAA385C55168734452A10685697113A09A3F9459BCE8A36C48AA3A252EE1D66AAC08E2F75C015619DCD6643F1A91D0F6AA3BC58C8EAF33BA11E816BA3F7BCBFCE664E13B7BA3645BC2763B238A4AB21B00A022B71D013395D26477B8CC06863305CA2512164B21C782ED282D2889D8F708C31B03ED60FAA2FEC6277F6A2E7E911C7666BD08CB33EA275654E17876B53514D11878C4908AD4AA0495D1614ED0FD8D18E23A2CDEE32A0F10C099315BA0A9D56201C01F64591DE8DBB1C36A2D83C065D2B478BD699A349836C751A647D4803D465169AE8729F684F24455B8627DAA304445B8C8D8E1F3B0A72CCE64265D836D6D845D13E43A150C4700D3B364F97A298A72D712FF7631AFCC2A4014203EA32A02E23B4381B3DA5174D443BB59F685F21A22DD937DA311C74AC3815AECED17C55E0BC2A9EC160D011560215F55DD0037A500E8332BA404FE256FE2C09C8D391805C6D1AB0D00C8426BA8CD07CA3AD2C24DA6305459BD227DAB822E8F4AA6F198C70656565591515156984151F2CB87FE87C0AAD489F7EB5688E0414CE9680025D09C89F89D033D868A2CBC2A27DB59F6827F613ED68AAD813370D8DAE2D4C26ACD7D28A525252529D3871E2280C1629B6D4887EAAE4533A141B4840D127088CD0A8CB80BBCC4693BA2C28DA9378A2AD408AB62C4FB447BF15ED9EBD93541B3194287B4DCD3804561B2C58E81FAFCFA7FB9419D30181A1642E021BA242E0227D52970718ED8C7EA29D2C20DAA1F2E39B31708396D6AF64B08396563C8AB40A27D2D421616F2E91B2BFB1980ED717A25A4007167A1E42E32E1BF676F99DA3AD2224DA9C6D67CC3889361706830B74323078C20B4658E58182F9FEB26299A449F932C9EE5B4B24E1E667927063111B5D369FDDE5D2B91CB401A7CBE468EB088E36EE32FF6873BA4C8A76920CF59F5DEA1FFECD85CE9CF9775B6B6B8FFFDAB57F91C18E082C2B2BAB3479F264A9FEC06FFDA276E5289DCAE592CF2B4C25A1FC7349B8B514814D502DE6A0892E8B22DA9379A24DDA761E9DA27897003933996FF25353BB3A3A3AE0D1A347E06B65D507BC1E8D6179797985E9D3A74B0A03F7855A48AB559949DDAF5A2905555F4A0242030BBD0CA197B0D1DC68CF17126D3D9E68F3ACCDC2A29D86D0512AD20D64CC3177F767184A140B6C69F9272F184D5813386B31DF2589FB43F9D7E3C6D55948D5D4AE96821A7329A85E85C02BA4A012A12BBE6077B97C29073D8CD14E5593E8D8C6D07C4D20B62D58F00CE3C85816F8E143F031337B4E066F6030E2D12C2D2708CCE92885DE60239D536F2D05756BA4A0D6128131DA0CA171975790BA2C2CDAF37AA35DC41BED99BDD1C65DEE13ED0FB9D17EE3A739E501779C6A6BBF6CAAA979CD0B2583BD56ADE205C7E18D87AEAEAE042F9882BEC49AECA42F36DA4A43C357A8D64A43BD15076D41EAF24A76972BBFE089F66742A2CDB336F7469BC637DAA7D5656AC8179E7CE6CC0B415032D8E3CB2F9F919FB7514B2B8EA1A222C30BA6B4384A1F6A769086DB5F4B0342030B6D83C0085D87D1A8CB838AF682DE6897F0467B766FB47197F34813589AA6648B0BB37799D96F67F7B43F2819BCCBD4F42919FC0D024F1D3F7E2C79D341E96C6B286D0F5CDED0EC88C0F6088CD1EB10FA2B0EDA9AD46584AE26A2CD3B810D21DABF68D3FEDACD54EFEDCE9C397F3EB87F7F40503278E7B2659D64F0B74C668C2A8522CDC5D6D6D6B6DEBB770F1EB7D656FC76646933174D747988D12EEB2FDAA8CBC1DACADCD9D789C9ECBE5950F06A3050A21E22F07613933E1B8FCD4CE685BD9CE58892939323555454E45A5959F9F0CE9D3BD0567BBDA1C97FD123BED1B66647BB9688B61929DACB79A26D2224DA86BDD14ED41D5D49BEB833070F3E7F1728510F1E3C801D26261DE4D744750E83B933D5F1E3C747A7A7A77BDFB871E36953531354E45F7D54EB63FCFCAD68AF1D7CB47197F945BBC050B27D3B53B38BB8A8DDA6A69D438192C03DBB962D6B278377191B67F54ECB482E232333C6D0D0706E7676767B717171777D7D3D5CCF4C7A52E733EF2FDE68D713D1B61412EDCF79A24D5A9BCB8CE8AFFD674E6DE3C65747E7EFBBCDCD3DA2C0E24249FD63BFB53517FBFDE6CDF01656515151B7B4B4F4766B6B2B20F0EB82828237D5D5D550921EF7A4DEFBD3BF6F135D1E64B46FF144FBE2277237C9DBC19CC4C47F4405C5D5D0D0F0F86C6464C67E2BAB1EEFA54B2131214130B6ADAD0D70E1719C9F9FDF9D9B9BFBA6A2A2028A53633AEB3C0D5EE06837BE4BB451970B164BD791979960171791C4975C682876A0CDC527DF1F3EFC697444C4CFC9C9C93DFD62896A696901349975A388BF41E31A0A932F3C69F098F392776DE61BED3E6BB3D4730F1DF53FB8DB4123A3A778D9182E2CBA1B1A877D083B63C058A29A9B9B212323E3D5B56BD77AD0E3A020F1EC93FA9DBA5D7DA3DDBBEDE48D76A8810A77F6C5DBC186CA4A81DB415162FBDC080C144B149EB153D16D575A5A5A4F616121E4C59DEE6CD8A9FB4A60B45197B33E1F574A9E21AF8487FF391C509163896A6C6C84A4A4A4AE9494941E34AE2137E6C7CEFA1D33BB79A35D6521DDE6A6ADF58280FA595BFF315CD061C3128597A9F8F8F82E0487ACAC2CC8893ADED9B07DC6EB46F632D5ED3F7BDA1D6E57F5F49EDDFFF5D761830E3B96A8BABA3AB874E9D24B04C7631BB2CF8774C66E5EDAB87BDE3C70D5D6C6CB4CF78D5F7E79399C50916283D7AF87ECE868A1E89A9A1AB870E1C2CBD8D85840E31A2F5F505E5EDE13171EDE31DC5091627DD76F87AD6BDD20C0CA1ACA323385A2ABAAAAE0ECD9B32F10FC399ED010FAF7A1205A1B6B203FF114DCBD5D3B32D8832E7BC1FF7C23B83907818BA92D9C7072821AB4F60A7BCEE3C78F7BD0160E3233339F0C06F7F0413B54165C85F4B01D70C5DB04D2BC3E859F3D0CA1A1A26864B047DDFC2024BE053CDD4260C7C17470F18E0357A325D08C666641CFF9FDF7DFF17E15D08CFD6C20C89AC2144809B084546F232838B0104A0216712B1581470CFBFD164F884869867DBB43616F5026B8FF58035B566E80DB6846161536E7D44EC8DF3F9F6F257918406345F1084D504EEEE06BBD1E7CED5DE1E8892C56A4B79A6D142D36C203AEF918F1AD3877FD91C39EDC7310AEDD7808FB1DB68087E96A3878281ADC2DBF112D36720F24ED36E45B51AE7AD058593232D848BF4350D6F0044E1E390567CE66C101173F705F6E25526C76A42FC4B8CDE15B914EB3460E7B7A9717D4DD7D06174222203EA104E2F3DBC1C776B368B1E7F6C359E7597CEBA76F74A0A9AA7464B0574242E080B9059CF4F287F4ABD721F36607F87FED245AEC850008FFEF0CBE15EAF8F1D0B1727272FF410FD0292B2B6B1286C5D580360B27B76F07FFD56B2029361302D66F112936F3E25108B267BC55C18E0C08B463206CD9D0B0F8936C2525258D9B376FD6F587250AED73E1A88D0D6C9D354BB4D8A84008B0D178AB2E1F6242F046CD2163C5F0477EAAAAAA4AE75D5DDBABF2F20684252A272606EEA01BFBE1C61E59C7FE3E242C072C2E2F2F3F3AD4DCBCC64B5919CE6FDA044DE80207831E6E2C5103C1AAA8A8E80BC3E24355341CE7E31B36781FD6D77FB977EA5448F4F38356215D1B48A1BDB168B1D5C2B1B76FDF7E84275B94D631023F79E780A938D2F37575E5C2ECEC2EFB6968BC3980EE4533C3C2007F54F26FC7D6E4E642E2BE7D4FF1FC831B2710CBDB657C3863CBAA55CCE3161615DE2A2A10686C0C250909FF02ECF53E8F6F2C2B83245F5F38A2AF0F1E1327C2A159B35E4D98306122FE60BA5F2CB9CBF8081D5E960EAC5B671EBC74E923FC623F5A5A4215BA217F9FD816F47AA90101AC06E06BC2E5F7D1473D27CCCD1BC3376D72E23D452314CB8316C7D1C603FE98A3A31F1ECF7812BBE8EC8C268BAA11C31EB2D08020F3B910B27811782A28B080DEAAAA70CCD4F441F8C68DC12B8D8C58A7DF38470DFA1C2619109637DA682C7CA0ABA1A17862DDBA2B7EEAEA3D7BA74D83447F7F686D691916EC212B0D08B69807DF191B809792120BE8A9A808810B163C0F777088755DB95207EFFE38C78368820E720E0ACB2FDAEB972CD10B5DBDBA1A77F9C08C1990FDD34F7C27B1C16233228F40889531042E9A07F8B589981E9E33A72BCCD6366F9FBDBDA99A9ADA78D61BCF3E4E20DEDF11DD4163F9451BFFD37D3636D6414B963CC61714B470219425250D1A8B3F6D2F8E8A82085B5BD8A3A6C605EE6730DE84AD5953F39D83C36605050579BC17E09C7912D8459162F9451B9F430AB4B70FC0EF3EBEC893D6D6505D582814FBB0BD1DCAE2E3E1FC860D80870301F49932058EAD58F15BA8A3E361E6B469AA53A74E1DCB997086F7BCF120A24DC7D19EA9A939E9988D4D0A1ECF3882512E2ED08EA28DB17979794FF1B9A6F2B4348842931B7A0C17881F1BF4D9679D610E0E17D72E5E3C03E16448934DBF311D112C6FB4F14481A36DBB70A1C10FE6E6751811FDEDB72C6CE4B66D2FF0068500E23A6268F8CF095BDB4C774B4B139C0EFC86BD4B4C47142B28DADE6BD6D825787A3EC3D843FAFADD1888C0AF8F5B5955ECB7B3DB806F3EF09236D498BE172C6FB4656565C7E093A3970E1FBE78DCC6A6FA0747475F849B8C4FA2F1C4745890C38EE58DB69696161DC37044F1F7FED6C4FF4B2C9F4E53898966A49044FD0F55A3E6737511C09E0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (35,1,'House_(96)',decode('89504E470D0A1A0A0000000D494844520000005800000060080600000099BCB5F40000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000174E4944415478DAED9D07581467D786573AE633B144A508A2A0940524014505451463B017442C2016940404141114455014D46814691A5B8C82D2A409A84855E9257410B12218F325C69298007BFEF71D7660D99D05161676C9F77B5DCF05E8CEECCCCD33CF39E7C519680040EB4F454989F844490E4A8D90A0AD08A3D144FBFBFDFB5BFDFA66318369B637060F82286924A941102931E859A4186D0F023DB237FBF5F4F414898E8E56888F8F378E8B8BDB1C1B1BEB8B1471EDDAB532F4F52DF4F74E313131AAFF6AC0319FD216C40C19D41CFD9F4170E313A4C1AD90919B31E88F11E2B44B487ABCECD3D9FAABB93F9C3C148920BE464021383818DCDDDDC1C9C909B66EDD0A5BB66C816DDBB6C181030720282808C2C3C39F22D801E8B50BD13683FF3580E33FA3E9C60E15791FF3D92088F9741060C8D14CC8374837B7828608315A56B8286D2D72B54457FB755AA667B763A51ED8AF9CFEE1B887D3BDC8B06B056161612D274F9E24407B7979C1B163C7202020002E9C3FDF14161AF2FC766C4471F28D9F3233C203D30A423CB60E78C0893234A5F811220D71C345207618D2D056C8C8CDD0C1CDD26D6E8648711A848BD11A910E84D26872DCF6FDEDD2C9D64E667A4068851E7CB36C32B859CD7EF5839FEFDD94A88B05F7C2FD4BF2238E3F2BBAE6F567E91557C0AA08F384D2AB6E507EDD03CAAF79F80D68C0F18AB46137478A542041FCE72210370289808C44BA9915B47487D8001419D8D14DE122B4EBC8D186540E766482DDC1048D1DBD6DC5E4971866F9B57D50197E102AC3BC888F15D7F713801158A808F782B29F76F90E58C0092A34C92459D1F4041911B8391A69542BE4780C79783B68223686748C8D28D6D8102762032244691026422B46A0372149930EDECE04EB8CA362F96402F67673FD06EC500CB68373D1C7B25077E2F3AAC84308B887FFC0044CA30D4A1A231A92242F0A89722290208BC4844CBA99044DC4C667DD8B0D0C1AE5332047FF17413EEA61A8EAB1CB5CB70DAC0372B30BFA7AC72AFDC68AB0FD50157598702A5665F88156B011DE6DD007AC836F2B89F9DE5214855B0AA2804023C84818B24C3BE87832368673890D6E4550BCD5CD0832840FA23102658782C78C89E0B2B235877154D899E9BFC0394BC444E85E4204D0903D08BA0F01BA32E2E0C074F0EDF122B677C689C26D25A4B108B2622B64D2CD24687EC506061D368806178748C1E1496361D7D22FC0C562CA2F0444EC5AA683B19B7126B346C6807370CA04D105C92AA2CDC9CAA270673C023CAE1D32E9E6B6D890E18C8D3832368676121B9C45B035361064141B1022260AA7C68D7C5F70CCA62D7709A018348A0DC2B903D1C1296AE2BA29AA62EFEF4E1483BB13C400812620B3BBB91F6283008D5D7D536B1CE4B8AE41203DDB628215FA807170AA9A9452AA865863AABA18A4A821A9B64326DD4C82BE3596D3CD6DB1C1AD08B2F5CE1CB121D11E1BE12CB1418046BA31F233485B6D0CA5175DDB1C3C60BA884C2DDAB0742DB18A344D3148A38B01020D04680C7922276841C406A9700931B83D6B12E41DDE80007BA3966D9F1F8D461361D120A1028C7BDD0C1DF1F48C496290AE8DA485206BB240566305CDE9E6B622A84042E6121B5445B0EB91BB431164058D153741FEEFE425D342B6CAC90D56515191D4D5D515478045F90DBAE71BA383C8FC523C140932BF1007041A08D04CC81DDCDCDFB141DD3B73400E1115AD73A0D36F4D515292193E7CF8A763C68C914670C5F909B9C71BDE9F22E17B7FB238DCD343D24590316802B278073793A03BBA992D36A88AA03CA79B7B3972772882D769B48F6E2A2A6F1D3435E15B4DCD747579F9097272729F8F1E3DFA137E42EED1465953C56D1F4C158707FAE2707F0A12099ADDCDFD1D1B3CF4CEBE3232AF315C52B6747A96EA98315AA3468D1A3D72E4C8FFF00B32CF1BE4184A2ECC369068CE9A2E0159D310641234BB9B49D0DADC6383CACD6DB1415504F934725F18225DCF0A97D4563A3D47454E4E0743667572BF01CE3616D7CD9929F13E678604641B221920C8D3C5218BCACD7D111B7CE89DC3A444DE38ABA9C13774FA534AC81A1A3913E5E52721C0A39890C57AE3E26EBFB0689694529EB17863EE2C09C8359200041A08D00464363793A0D9DDCC1A1B74EAD8A072331F476E86E7F8B17F90306D34341AB840CEC6712123233312E5F2E0DE40EED68B4A16D08615984856E6CF9180BCD948C6083209BA839BFB2636F8D53B078D1EF68C1DE6664DCD5FB941565750A0E3C2C7EC2E7A04B9CB173C34A54916CE934C2FF84A120AE64A42BE8904B481667733099ACACD24682E459000AD4E1D1BFC18B92386893738D1E91C204FD8D9BD0DDAB9F32F2E90B3E88A8AEA08F0702664515E2177D9EB169B4A8516994A42E1D748F310641234829CCFEEE6BE880D3EF4CEB1C345FEDEA3AAF2911DA09381C1FBC68606F8E5975FE0B4A32337C80F26CACAAA61C84A4A4A52BC42EEF41F8B1749F9FEBC50128A174842D17C241234959B49D0333B898D295C62834B11E4D7C8FDBDD2688EAEC15E4BABA92C3FBF19C325E5676FFF2717C8F7D5E4E42622C043F1D4C70B64AEFF50BA4CD2B6648914942C96849F1721C8ACA0D9DDDC9BD8E8E3DE39544EFA0915B4EBA74E7D60854BEA84AD2D37C8F7F030327EFCF8CF10DC6E43A6866B26B9B07CB95473E9320478291202FD33091A412E66753309DA4412288B20066DD8496CE871890D3E8CDCF1F2A2BFBB68A8B5B0C3F258BEFC2D155C52DFD9D87CE006993E668CF2B061C3306489EE0C221C7F51653158AF7CA5D4FB723329285B2105A5CB9148D04CC8BD8F8DFEE99DBD272ABE6687B4EDCB2FFF7AFEF831740618EBC8860DEFA920A3892F63E2A851E3F0DA45772077F8A2D2424A09A9B162951454984B01020D65246804B994DDCD2468D34E6283AA0862D0D3FB36362E290FADE580ABA9C9C88C8FFFA72BB8A40E5B59BDA384ACA191A12E2333F6F3CF3F1FD2D548DDDEEBAEF96C58D55AE9CAAA35D250B95A0A1068C0A0CB49D0087219AB9B7B131B7DDC3BDF1C2F51BF9DAEC101C6DFD9F96D77E162BD7AF50A0EAE5E4D09F91B0D8D740459B1AB758BD65E771B4DB2C64A3ABDDA521AAAD74903020D954CD01516ED6EE6880D6E45D0B41532D7D8A02A82FC8B8DBFF7D12770407136327AF7AAB1B1DB7059217BAE5AF59612329D9E4E979555E86CDD82E8756B364A873EB496869AF548560832025DC50A9AE9E66EC706959BFBA9770E5097A9E368C9B4B5FFA92E2969E1152E2BE4FD2B56BCE592C9A9DAF2F2F2DC466ADA231B69DFDA4DD250BB511A1E6E406282AEB66A777315AB9BC9D830A38A0DC956D05445705E2BE4BE8C8D58F5C1B58E14106E9C39F3674FE1B64146EE775FBAF40F2E4E4E99ACA424C3EC913BB898F6E66979E60BDF39958F360F0656D035D6ED6EEE2C36CA5863636927B1C1CFDE9962E44ED5147FB34B53ED1FF693F7B2B0E02977BB82BC67D1A2375490BFA5D393F5E5E547B0BB98F6F4E9D377F812F8ED4959EEF3C346B5B59BA509D0AC6EEE101B046469CE2268D6EE6641C4C6512D85171C27AEA7F7A1FEF973BEC06585EC6A6A4A09D94E53F3D61255D521AC2EA6151414DCAAA8A880C7A8376C686860FCFAB030FF99F78C673CC7065511E46BEFCC7DE4BEAE33B482A2256BC94D4EEE764BC68B1A11649779F37EA7828CDEF7A6B5929254872EE2DEBD7B73F3F3F3B3CBCACAA0B6B616EAEBEB19F525F74A1E794C7D4DB8998C8DF59DC4C62AC1C446EA64C9173B343518EC277AD6DDFD5D5FC02585CC08CE2626FFA5828C14E749A74B700C1AE9E9E98B7272728A4A4A4AA0A6A6069E3D7BC6A8BA97F0B4DA5DF73DA59B2D3BBAB94F7B678A91FBFE54F17FF64F52E158CF753131798B63AF2F0113905FBE6438CF99D3C805722C86DCB16743E16C6A6A2A191E1E6E959191F1B0B8B818AAAAAA707C300A6F85BDAE76D3F9D8A108AEEFE8E6FE8E8DF37AA339A3415BFBEFDA8A8A1EB764BCAAFEC50B86DB575FBDA482BCDBD8B88003301D51C76B9F8A8A8AF4A0A0A08BF7EFDF6F2A2C2C049CD38F1E3D62E4275CFD6FF52ECDBF89D8E067EFCCE3C89D3C7D7035554B76F3F2E55EB764BCAAA8B0F0D54173738E63F1DBB103B802969191D1D8BC79B31DEA32A0B4B4143233339BF3F2F288CF517C30F2E37FFCEDE14E7A93206223C748F28D9BB61AC78A97AFB5F51FFD0D17EBE79F7F7E151B1D0D07CCCCDA8EC573C912888B8DED1CF0A64D9BEC500EE32C060C1AED08D2D2D25A504E139F57565632F263CEFDFE70A77A332FBD736F47EEEF75153816721CF5F5DF37D4D7F73B5C2C14A32F76EFDEBD27322CACE2C08A15E03C650A445CBD0A717171DD074CEAC99327505454042929292D595959C4E715E5E58CBCA8E0DF1F3AABB6F4756CC4CF1C5A4CD11A351766643409022E09184DCBB3C78E1D3BEEF2F9F31B2EFBF93DC6707B049815346AED1877EEDC6941390DA89F86B2D252465EB8FF9B873B2630FA62E4CE9927F57C879646133BE04BDEDE7DDA9275173062A68457D7CCCDCD25626363ADE3E3E31FF71830293CA0A0C860DCBA75AB05751E909B9B8BE3A325EFFAC93F1E6E57E6676CFC73405799E3676BBB4D4D0592BB9D01A631EFC10E0B0B93E8356052757575802283919898C840390DD9D9D9505850D09217F2DDDB5AC7F1BD1EB9438C46157244838ECE5F8F51C11556C01C83466F009342AD1CA0C99071F3E64D06CA6978F0E001E4E7E5B5E45FF17D57EBA0D4A3913B6BE127158E5A9C2D597278F84741C3ED77C0A4F0C88D0B210A7A46727232868EA224BB25EFB2F7FB1A3BC56E8FDC08F29BDD3A6A1C73FF715B5B814783400193C223372E84D1D1D138A701E77476D68396824B5E1F6AEC14BAEC9D03672896B2C3DD317DFA3B34A60A1CAC500026555D5D0D4949492D376EDC0094D3909A9A0AF733339AF32FECFBB3FA1B79CA913B79F1D0028EDCD5D26A2AC9CE6E163454A1034C0A0D2780DA97E6C8C84840390D77EFDE858CF4B4E6FC1F76FF556D2BD756048B577FD2B8434B9DE3BF3B851E3F2ED0964CE801932A2F2F07E4E666D4CA100D398A11484F4D69CE0F76F958652BDB72505F996301C563C992DF040D53A0800BD2D3A1024D76BC6C83D736C2C3C39BAF5DBB0628A701E774CADDE4A6E8B0B057D1172FBE893879B225C4DB1B5C8D8C3E3C451D8AA0610A14705C703038EBEA42E8A143508B3297976DF1DA466868685348480844454541424202EE42801CC7D3E3E284A66B10286017EB3DE0347705B8191A42FCD9B3C448CDCB3EF01AF4952B579A9020222202E735E0360F39BDCF0137BCAC87F2DC54E106ECB9F722785CAC841D3BCF81C3B4D9E0357F3EA4A182D6938105B9F76D6363634B4C4CCC5F7979797CFBE930ABEAAA4A2033FA0708F7B1862BDBA742B0BD8170033EECF523F886D410909D165882A3B51738E8EAC3776BD7423E6ACD78D91FFEE1E2EBD7AF895C2E2828E00BE086972FA038F3262404BB41D89EB970C3752AA41D3082EC2373085D7034146EC0C70EFF04A7221F11909D17AE859D27EE81E3F107E0B8C6051C27E94032CAD89E002E2C2C7CDF53A88FABCB203DEC14C4F8AC821B6E0690E2D50E945D420FD8EFE815381BFF8480ECB2781DEC3BFD005C82CBC0D1BF041C96D810AFE96FC0B7FCEDE081EF6CC8F29DD3A52E380939E0136E47E172E22302B2EB927570E84C36111718B2C352C100BE8D006778CFEA96CE0BBB838FD838C1AE5973E1A4CF25D8B3742D9CB894D79EC9CBB608C8C1DB20D97366B774CE61867003BE121C066151D9B0DFCC12B67FA907470F5E6ACF64B3AD82011CE008897B0DBAA5738E33851B70D8F908482B7E0D09398DB07BDE2270313281DD4BD6C051BF247035B71508E0A480ED10E336AD5BFA41D81D1CFD6314E454FE4640F65A690957A30AE03BF753B07DF254705D682110C009813B207CE7946EE9ACB0034E0C898692BA3F08C807CD2D212AB1142233EAE1D28D52705FB94140809DE1AA935EB774C641C82322E4D051A879FE96807CC8C20A12EE96117181217B59D9090670900B5CB2FFA25B0ADA26C40ECEB97307DC8D8DE1C0C2C5702732117C565B424A46455B267B5BDB0B04F0CD6057386B3BA95B0AB4EF07C08A8A8AC3646565D56D6C6CBEE5750DA1AEB616AE1F3902CE7A7AE0B568092444DE69CB649F8DDB0402383E7837046CD6EA9602EDFB3822F0D397F03DB9727272AA5BD11F5E0193AA2C2E86B34E4EE0A8A505276CECE07672311CB571100CE033EE70723DBD539DDED4FA31A03F00ABA8A87C3A6AD428657B7B7BEB9E02268517788E5A5880A3B636B84C331008E0B833FBE0C83AF54E9510A80597F7D2C1DFAE8F01CF9A354B0CDFF7853618E3EAE0B0F6495D5DAF0093C28B3CFB4C4C040778AD5AA7BAB49B0E7E5BD4FB163013B2087E2E02DA6084D7DAB55B7C757521EDD225BE40C6DFACB2FC7CA1044CCABF2F23827431BE1509BBD877FDFAA57BE5E460CFE8D1E0376F1EE42725F105F4BF14B0312F80F17DB712F8C5A7366FB63E616CFC0643769791818BEBD743796EEEFF0366517575F573D4DA1AA1CE6B2CF3B65AEE805921E382876F11C57D71F0C68DA70FEBE83461D0FB1414207CD72E785459F9AF031C606FC4F3FE6B6A6A9E214ED371DD62DE52DB396036278BE15B44F1ADFB0B0D0D9582D7AD4BDD3F6E1C03833EA0A60649DF7F0F4F1E3FFE9F055CFFE409A45DBEDC88C07E89AE7819E6C39344BA044C015A1C6F8C7B64770B8BD9FE8B17D7B9CBCA12F97C6CEA54C80C0DFD9F018C6F55C842E77BD1D2123C1415F1F9FF8DD84CC0031A1ED47802CC02194B14EF80D9C68DF87ED3A66DC767CC78872163052C5A044577EF0E68C0FE5C00E3A753E54547C3952D5BC04B4505C873661AEC23762FD59302BB05982A36702BA7AAAA3A043FE73170C3860B8734359B8942885C7DD9C606AA0A0B073C607C3363317AEFEB8E8E70505DBD03542C4F151546D0F2E58FCED8DA6E67760F1DDCCB33607637E3228863035F1A165F7DA511686191E531762CF1E6FB9594206ADF3EA86BBD637440012ECFC880283737F0D5D1E180BA6FCC18DCB2BE3EB379F3D9454646CACC6585C1DC9E7AC233600A378BE222882F0FFC18C2BDAB562D3CB560C10BDCD2E1033AA4A505770203E1298FFFC3A7BF01FB2C9F08DF994E86C393E81C50B18E1B1A7E386B6D7D73A7B9B9213E4FF281CECCCCE5FAE4EC1E03E6161BCC758CD1DF6FD8B0E7D8F4E97F92077862E64CC88E8A122AC03E2B55E1C4E2A9E0ABA74309F5F0A449CDC1AB57E71FB5B65E879FC68ADD8A8DC47CF046B71E49DE6BC054B1812F191C1BCACACA0A01969661DE1A1A2DE4419F31338392CC4C8101F65DA50627971BC05183C9405E65AC42058C118872D57FD32694766365F10C805B5416B78A91507BFC603A7EC5060E7E7C39AD9A33473760E5CA223CA0E093D82B2F0F21F6F6505352D22F8063FC77C329F31970C2D800DC99A33FABF0F1F87DFDF56B344C9DFFDAC0401D3FD6163FE14F8EF9007D2654515EC0F609606EB1810F16B731A87FB638F5F5D7AFDAAAB0B232C4787BC3E3478FF80EB8E1C50B7870F52A5C58B70EC86F2C47AECE98F1E1CCFAF589DB962D9B858F0F5F75D814F898D97F2B419F3E3FB8B7B1812F2D72E4C6E3E4F1F5EB7D8EE8EB7F244FD40755EB9473E77A0DB8F1E54BC84539FF136A13F1378F0A2A7A2F2257BDADACACD0F1C853142C9E22406080B98DDCD821F812541F3F7E82BFA565FC0155550679F2A74C4C202F3E9E27C0B8572D4A4A826B0E0E70108DEE545071AE062C5F5E870AAF2702AAD855C1128EDFA3D173D044EF8C6303150FD975262646A757ACA8C039480239B7660D946565B103EE70F34B597A3A44BABA82CFA4499450895C3535FD35000D4126D3A669F2A360093560AAD8C00EC2278D5CA5E06161617372EEDCDF580125FBF9B5012E2A2A7A5B9D9B0BB1F817A1EAEB5342257335D0CA2AC96EE9D239388EBA2A587D7ECEFD09985B6C6057E1CB161599F1C7ADAC4EFBEAEAFE836105CD9FDF06D86FFEFC266E507DBEF8A22970F5EA028FD5ABAD998BDE7D52B0060C606EB18173514141416EB28686F6E9356BEE9E3333639080BDB5B55BA872F5B8B5F541B4AD0A2E587801AA2F0BD68003CC2D36302859595945F72D5B96E6C5C6BE494A4C8443DADACDCC5C7D7DDADAFAE26C7DFD2FFABB600D48C0DC6263C488114310E4CF11C431673C3CBC82366E8CFA66D93263FC6319E6C2F670320284C5AD420D98CDCD04687CA96388B848E14C1D8AFEE0BCC6058B056ABF15AC010F982A36981025981217B608189080B94487080B78A186CAAAFF03B287F0DCCFCD12530000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (36,1,'Hub_(128)',decode('89504E470D0A1A0A0000000D4948445200000080000000500806000000D1007DE40000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000296B4944415478DAED7D09785BE599F5AB7D9725D996F77D8BB778CBEAAC40580209490861874217A6A5B47428B4D39676E83CA50BC3B4408769673ACF749E29745AE84F29744A292D242121AB93D889F7DD9665CBB6646BDFA5FF7CD74B6479939D00094479F448BEBABABAF7BEE73DE7BCEFF7DD1B5E381CA62B8F4FEE8377B9038087C7D47B1C4BB8ADA32B231C0ED98A0AF2AD57C2FB3106C064E079FBF6EDE33DFEB5AF6B355AEDAD3894BB00838DA150D88BE37A23140EBD180E85DF2C2B59E1BF12EA8F0900A602FFBB575F95979494EE14894477F1F9FCEB107431329FF0CA9880107C42F0F11AB660F9CB58FE626579E9E12B21BF4C01C002FFD5C71E133CF4D017AFE20B04F7F079BC3D08AE8A0B3617F4100BF664D0431C08A6DF4F0081ADD38D755FC2672FAEAAAA68BD12FECB00002CF086016325B2FC6E04F14EEC6FEA44D027821C1DFC5940381FFCF3EC30F1DD9358FE523814FADFF56B5699AE00E0127B982D635908D4DDD83FF62C9908EAEC2C9F06C03C2C30F3F399A0B07BFD64B07AC3765FD0A210F17F93AF117F7D73ED3AE715007C440FABCDAE43B0F62158F7E075035E79D1419B06C1022C305FF0D9FB603044C30E1FF55ADD6476FA4924204A538A294525266138ECECB5F9CEF9C2A1D753F89E6776DCB8DD7705001FF0C3E9724911B49D212ED343DB27CCDCE2418F2DCBCF6FC31F0850EFB89BBACD2E72FA02A49208292B4E4AC94A11B90341EA1FF7D080DD4741ACAF5788285325344B04F4D2803DF8D7FB775EF5C615005CC487D7E7E3233057214077E3752F02A49E8FA6C353591E9304CCD67DBBC74F9D2376EAB6B826828B4CCFD5CA482B1391D9E1A5AE313718C14B42018F3254124A578B884F3C3239BDD463F593C317249D44E028D40A9F13F2C2FF75D375DBBAAE0060998F402050C5341DC182990BA52E29980B51FF1C1260B2B9A9D564A50150BD109563B64E41B9F17212F379640013B49B1D64F304480926C8D1482815C10F80097AAC1EEAB3FAC883F73AA900A010E3954F6358B7CFE6274F306C5709797FC853F3BFB2FBA61BCC5700B0F8231BBF71D7A4A12B09C5EAD4630C7EE47B7F20048AB75193719C2C2E2FA911DC42BD9AB2107C1F02DA316CA30E04DE87F5F408789E4E4E897211D9BC01EA343B21035EC216393064C7894826E4D1A0DD4F3D362FD6099194CFA734159F52647C0A84C3811E5BA013FBF967B13FF4DDAF3EB067EC0A00CE3F7478DE86E7DD78C2CC8578B1D0787456C7AAFF2EAF0F411FA3A6A131F240DF53E3E4549CACA16468FC88DD4D2D4356EA8504B00E5276BC820AC0042CF3876C1E6A1B75802DBC2446B0B3210D396A092010A66E78829E310FB9611A353003592A11E9E542B261FBBD90864157901442A20C059F12A5641BF384F78F7842EF695CA6671F7EE8F3814F2200A478DE3C19F4ED788AD8C2F054F0E609FE8548C008E8BDBE7F84DA4CE32400B51720DB8B53B5A4120BA96BD4468D60020600A948482BF42ACA4B54918005D7E2A416938DC6DD7E8A938125E295941E27212798A06DD489007B38BF900283C8E48101600815433700617607285E26A06C9590B4123E0DBB00087B80C6C010F1621ECC237F58C60BBFD4E70A1E7CE2817DAF7DDC01C0C7F3EAC9A0DF82A73A7A856900CC4BFD4B0B7E3018A4CEE1713ADD334286313BA965622A4F8BA7A2E4380A60BDA6010B023FC60553A7945019966723C01E7F909AC104AD9001C612691A19150210490A31681E2C31ECA041308290CF98404A795AE617C2D40326E8B078C885EF3340E469C42483611C4029D9CD4CA23F44C9723084924FC003F53B82D4670F5210A7354F45FD4992F00B661FBDFAD5FB6F6FFF3801A00ACF7BF0BC03CFD485565C38F873077D86D64F028005ADBE6F844E750F92D5EDA3349D92AA3213115C158D3A5C74BA6F94DA06C771E2C3948980AF4CD3518A5A8ACFBC7416A0E818B1410278949FA8A462B0814C24805F704236AC6401132891E545900726033ED07E3BA4A1D3ECE63C418E167E0172C24621BAC0025D635E0A6079965248D9A81AD8FE77C138F623F07C80264321A074198FEC00472F0031EA234A9352578E3CF48380DFFFFFBEF0D9FBC72E4700644F663A7B16C7FAA5508C65DC7C2C60819B3FD63548677B4D1C2D17A7C753755622E914526A1F1AA7533DC3D46FB19348C0A712D07F45BA8E945231F54202CEF49BA97FCC414AB1884A53345494A4E618A409F4DF0CB03891D5C900493140910EEDB7B8FCD434CC4A463700C28734C8010809F910C816B30B12E026111822572345E0855CFFA0CDE223038CA2147E2017604891B38A012C650D9085C982148CA2E0911080E9728469D40B80C8422733A4E1A7702EFEF4C5CFDEEFBB9401101F61E66AD9FA4BFD8105BB750BB040A7698C8EB4F6531B8C9D5222A29ADC24AACCD2835288CEF40E535D8F89AC4E0FA920018C09CA90F12C439B8C16806284AB02925572AAC8D0A2FC53D118FE3E6330C32FD8D82628374141A5C96AD2022C8671279D1BB271E5618242442560880C643CDB46D3B0936B20B1C6D10A9D9432D4623203282D00C900CA420D78BF402BA62418C421C842FBB89FC611F81498C35CA5803BA60E5B8086DC61CE23E428C39C0FE9721099BD14CE9207FF922A0E7E0FE7E1F057BEF0B9F0250580677EFAB3773FFFE9FB562A150ADD7236BEB8FECF0CBE2F18A0339D4374A8A58F86AC0E50B99AD616A451718A8ECC0E371D6D1FE04C9F8FE9B156496B72F5C86A1D39BC5E006218C018E1B2B230298EAA321290DD32EA0113D4411EFA50FE4941FBA5A91A2AC5E722E83803433D8CE2B8CB47E9A0FE720042AF148335DC1C208C762FD7292C4954E0558C807B0008179960085945B0225E420930917DA8225A20F40E7F0026103E01EC10808CB4020C46540B7A09A4472D203E8F8121880A224CC00CE529899482100DB9880C1EF24AF9E1238532DFC38F7DE90B8D970400BEF4F8B7C23C01CFBAB976DD995B76DCB881CFE70B970A8019DDBC3980C096D990C9EFB5F4D2D13603A7F565A0F80D85E908B28ADA0CA374B8DD401D43163632482B5275B42E2F95D2B40A3282DE8F761A39E327100890ED3AAA011B30D7DF6434D3C9EE111A7178281E66B01AD2C124C0E3F753BD618C1A1078D61B2844B657401E94623EA7FB67B07C0CCE3E5B0740E0330D1C7F174AC8B3430EAE6A60D54269A28CD458BF13E6B0193EC1E30F53AE5644057162CE2C36030C43D846920C32122782B10C7360304002E021A94045DCEB1080D06E0FA3D4244A9186284B16E4CE53A74B308253733841E47FF4E9C71FEAFEC800F0E5AF3D11E641F3F83C3E89C5A2AEDBF7EEB254AF2C5FB524002C2201233627FDECADE3E446E06B11F47578323D3FDE3140875BFA51C6B9B880AECA49A6750529A06231B50C02146D46EA81B1D32924B4262789CA91F1ACDF7F02F45FD76D2217B6979BA8A69AEC78CAD42869D4EEA1137DC3D43468858EF3692598A03C4D4302ECCF592C3B33304E5E00A208D95E9E124732219FF30A2CF04E9F9FF2E1074AF1995CC4A3E61117C704011C43118052A89390D513A073236EAE5C4C818C14EB44F89D30C0E0A75E48851A52B1224E400928964DCE103583096C3E949A308BF90A260B21EA74A28A70F34881EFE5CA02A4158682262FEFCCA89F5717E60BFFE9C56F3D38F0A102E091AF7F7B1A007CBCF270E2B46AF5894FDF776742B25E9F73B1F49F513A7BEF0495FFADBE9B8E751800083FCA38196D5C918120263338D189CE413A049630A36CCB498CA3F50044A15E43C33617BDDF61A4863E33E703CA91EDAB73F4A4938B51325AE93898A06BD48A6C96504D563CB45F83A0FA200D16540863DCB13116284B5171FBD160B472A0805FA4157A2500A10050881A86EC9C27C0EAF00972041E5506FC40C390930B7CBA4A4CA59005563E3642E03BC77D600A1E1583EF993934B903D4044098994740E08B200BA07DEA40F5D085E08B2111F98A102589C384A282DA9C3C1A0BF028451CA46C89DF8D7AE335ECDF8B38677FF9EE371E0F7CE000F8CA3F7C671600F838C390027F5E76D691BBF6DD52299349D50BEAFF121A40AC957BA2D340F530786B40F325E909340EED3F082660FAEF4586576525D106F882248D9C5A61F80EB50DA01A18E3FA016B60146B201F42EC6703A4E308FCC430AA8874C8C5DAEC44AE1164B2A2AA805F6886C633635793A5A332BD9A1C608CBA7E0062D086CC25AA48555359B20AFB14A6536007561D48C00A15C94A045ECEF983D3837664B38FB2504194EB6508268F1AC00CAD281355D848598298D2E0152CDE20D58F78C8043F90241750491C9FD460924E7B00EB865814A850C5A30C79183E224C2DB63021F3492F0E51BE3C4832FE2CCF3482F3F61B24D88B4F7DFB1F8E7F6000F8FB6FFC63980BFC6C00707ACC17F0C6D75655756EBFEE9A2A3E5BB844FD5FAC01F4C7BA367ABBA18BA428E36A0BD3B8C04B84023A89B2F0002A0493D5451930831B0A535105C483F6FD74B4630865E3108CA11FE65143EB010AD61A66E30087F1598FD94E493087EB0008A6FFC33076470188560498B5876BD2994954911D947E0280681A7670630AD5692ACA47E0FB51119C1CB0718E3F4F2BA5CA6405496128CF80059A47DD2417F2A83249065088B801A433260FF5D97D94082F511E2FA67818C26E5405E7503EFA83083C642157C5E7FC48D37898FA5C21829DA015CC2708438BCD6A62CF76BCE7A6B9FDE8BB4F745E54003CFACD27C391813F0F800850B057C8DA75576F0EAD5BB33AE5421A40D1DD3FD6D96B1F345356421CB910D083CD7D74A875421ECAC00E9B8BD2512920AB2101EF81254E2090AC4EAD41B9B8213F995452119D4105C002CFD6C98327A8CD4BA42C80A67BD44E87BB87A90B3E221126716D5602E85E0DD3886AA367949A018844E62F323494AB535027AA88E3FDE3647278B9B18455600889803816386B824F41E0AB00867CB83B365E706AD0495D9000AD54409589124A5508E1057C7466C40BB609518146004F20E41A4DCD9600B5C313A080A012358F92A414FBB99BD96739CA494428FCDB1F7FFFC9D10B02009B8B070084E6CCFC080030799892091E05C76FBF658F2C2F374772A10DA0E836707DAF89DE6AE886F6AB695361066915626A1D1CA3FD4D7DD4681C45F68A11F4145A87C0B342FF28FCC2E1F6418E09CAD375B4312F99121068D6003AD83E4403A8FD33210DB5399086042532DB49873A87A91395006B13AF83346481395A0190233D161A7179A908EBAD499F30887503308E461B89F1BE26554585F15280344875830E6A35B3BE019FAA93E4DC2092D1E1A793A8F546E101F25015AC4C9010F49C9A2C7E6A1EF371256929982053C96399B3DCE047AE1FC0F23FE3FD8B78FFFA4F9F7ECA1D3300A62EB4D8B76F1F3FB3B02CB024003077847D50CAC4EEFBEEBA43AA542AF93347F72E7C0088ADD73D3C46BF7EBF990C16D0B9464157AD48E7B2DEE6F1D2FE6603823FC49946660437C228CA211BA7C0040750399851721625C5D126008205BA13013ED06E823438C01090130022552DA54600E570B799CC087C31BCC37A008265F949F8813A839510335A053094EB15DC38C30900E22CF45F0E40AC8669CC873C8CB87C74CCE82483CD4BD92811ABE113502000205EAA1FF5726DEB721D2B1F8508C4C252391F10A2833F0770ECF8FB552C7F11EBBFF3F39FFC28342F00A6E6DCD7D4D408C462B170C3B6EDAE05A97F0E004C1946BFDF17CCC948F7DDB26BA78CFDC252C6FE17668E294660741FA6E2D47800C1466F9FEBE5DAC20A8988B6C02FACCB4FE298E070BB91DE43E099C9ABCC88A7CD608804050BB085F6B70D8209DC54920C56C9D773945F8FAAE03D3001EB0296A15AD890AD23B95840C77B2D74BCCFC25519ABE013AA52D4D0F0109D348CD329A39D80315A0D59603D0256121E31D8B871831425CC698A9C12E001DA2C1EAA1B72930B7A5FA285718C673D02BA18339C179F3135B1DC989696FCFD6F3FF6F72FCC02000B3ECBFAA6A6268146A391D8ED76D9F5BBF79962CD7C7E14307893DFF3BA5DBEF56B56D3EA55D5E2A50E00C53203781846F017FB1BB806D235A519B43A5BCFD1FEBB4D063A84CA818DCAADCFD5D3E68254780221C7047F6B1EA0518787AA200D9B0B92290E5EE174BF99F68309C6DD3E54001A484602B25540477BCD74044C809FA4B5991A5A9516C7B5928FF78FC1248E73E76E559A1AFAAFE49A40EFF759A969C481808B687DBA8A9B62D68DAAE0E8809D2CEE20D73DACD64B0978588221BEB0E0B3F752A9B47F5575A55121954A6EBEF1FAAA190098CC7C7E7E7EBE302E2E4E2A140A557EBF5FB76DE72DF5730160C884F2CA344241FC689C5A45C5C52B48C017CC09802906F179DC9E1D375C274C4D4D112EC508C63A033888483B3C1E7AF564275705880502DA5294429BC106ACAC3BD265A2BF0114368F8FD6E626D296FC54B08580EB11BC0B86B079FC1C20B6803914C8F863587E104CE0C76FACC9D47112C006744E20E30F0110CCA0AE4AD3709E20100AD25104FE143C810ADF5D9FA1A6029D8C8CA830DEEBB3C103F8285723A175A90A8A833758CEDCC6E999CDB19E93C9EF0AF83C474971D1497D7CFC7A04458278D4030095D100E033DA47E065D8685C3018D4B361DE6B6FDEFBFA5CD46F341AE9C0C143D3D2A1D1C4D1DA356B2833236D56E0235FD9C59B0886E7E69D3B8043312F56DD5FCA896A44FD3F0443B72E2F05EB04697FCB0032DEC075F936C10F305048B03F87E013DE6931726CB12A3381AE2E4AE632FE082A83FDEDC3E446363323B809609140FB59D3E8DDCE11AEC3C802BF21474BACFE3986E547200F42019F3680215682094650291CE819E324808D326EC85051B25C38EBF8A6DE2F06EEE5B000FB34232DF5704E664621CEBF9EC565D2DED5EFBEE986D900D8BA75ABD86AB5AA00023D9665E29973DDCD7B5F988BFA0DC6013A70E0D02C47F99907EE237C7F5E004C3189CFE70DA42426F8AFDABA4576316700479E145657FFE24023B541EBAF2E49A72D90003618B3BF7590FEDADC8F4006B9E6D035C5A9A8F3057418D9FEB7E641B2A3C45C979D405B210D6C7CE074BF85FED23644E32E3FD723D89C1BCF01E578DF181DE81AE586A86B9934A4ABC9EE01E0BA2D131280806FC6723697E08338BED9DB39BF3DB55A75B6B8301FA110164F5D3C3D05003C6703E0B6DB6E1374757549F0771CBBF40A81CAC16BFEF5BB6EFDC19C001818A0FD07DE9B0EBC582A23B91AC6A88C4F3919D79054265910001C40B02D87DDEEAB282BA5E21545E265517F0C278FC9542018A4B7CEF5D3DB4DFD9C57589F9744D70314ACF173A4D3446F36421AA0FD6B50015CB72285D4F00A0D70FB6F42324C760F55A468695B51126965423A6D18A3B75B4D6447C9B72E53CB994436C7E05D80819586ACBBB8355B43257A2573BE4B376B31067FAE7323128B8C4579793D72B9AC96B955EE1FEF7CF0278040F57B76DC381B000683410CE3A786FB4F4280D8E48FDCEB77EDFDC95CAE9F01E0E07B8749AA8C23455C1C55945A48A9403D2B0CD2E848021517EE9837F09100E04DEEA4D361736FDE502BD6C5C70B629D01BCD42C691D1AA30618BD2D8508300CDAE1F621FABF863E1A7379685556226D2F4FA37800974D2CFD63433FF58EB9A834398E6E284EE166169D353240186918E6B13A5D4BD716E809CA400711F843900036516473B69656C313F0B84658ECA5ED02AE3D264F84D3E882FC1ED769B56B713E6591419FCD0073008049406969A9502412C9B1612D029482F7E99BB7DDF043B9529513EDFA6D0E071D3B7D9656579B60023DD0BF30F9FC02F278043087095451360100F66BC14080C41209CC087F46E0A3AB874000641AF47BB76EDE248519E12D47FF63CDB6FF3DD60E3630504D5602ED5C9949492A29B599ACF487FA5E6A1FB651A13E8E760010591A39B58DD8E8F5B306EA313BB951C2EDC5C9A441D5F01E02FF6EC78449DC98A5A54D393A184F5ECC7D8D184AB6988E2F51A77D3F39392907E7316532C03477F64FFF5D7FCBCED900E04A40C602A0333996C5E14712B138A9A4A27A57464ECE3E8948A28A2CFBD8BF81C1A3949EDE028A1591C32926B747486EA79ACA4B6EE600C0F4F1BFFFE75754909F474EA78BAEDEBA99B45ACD3400E6EA2BB85DAE409C4A11A8AEAE96862F82419AAFA676C0F573F30247ADF4FBD33DDCA8209B3CBA7B650637A1A4D7ECA0D7C004CD8363949FA8A29BCBD228552D4359384A6FC12BB0BEC26A30C13630810A1E62597A3DEF452E8B075F2C117564A6A6F9C1D8C5D3418F0AFC3C3250BFF7E69B2AE7EC03C0080ABC5EAFC8ED764BF0500602012D3E4A502814992B57ADB9579F92B655C81708223337141AA3B32D75949F3B48FD462D4A2B1E15E6DFCA0180EDF4F32FFC6CDA2B20B369EDEA6ADAB07E3D49C10A0B0D348D8F59BC79B9B9BCCC8C74F107D920E931DBE8EDC6016E2E61259EEC8AA2574F77D3C93E33A56914B467653A15E9D5DCACA237B0DEB0DD0B4F10473795A6C0E889973CC0158BBF59E8F8F0872D5E176F04DD177141E3D1649023B27F6120CC0D80E86610F37678C8584F00ACC08090989C9ABE7265F5EA07B43AED8AE87A7F78B48BBCBEA3D4DA9E43375EBB651A00CFFDEBBFCDAA16AEBE6A336D040866788B593E6162A72DE65177C5CA9562954A29085DECEE58C455C3EC3D9B44FADC3BE7285E21A55D1519B43A4347E786AC00442FF58D39B969E4BBCAD3294B2B5BDE0CE70BD1FF6030849A7E343D3D5D2B100A44E783CC218022FF9E0E7C54F6B3671800D8371F0022DBC1600336BC2B843164D5811C8BD578C663C7F5651555DB0A5694DC2193CBE323EB7EF66B23660BA526E9B91F6307F4EC4FA7BB8E241489B96A212F374CD9E9C55459B66141004CC94DC0E70FB99C0E6F656585144CC18B2598CB75DE6CFE401C4C62EFA89D5E3ED5C35D4B901E27A7BD95E95492AC59108017038C7301CAEF75BB929392850AA5523C95F11411E88580102D0338A900C08ECA9846035977B0A6A6860141E4F178A472B95C8103D230590039A4ADA9ADBD3D2B3BE73A8148249ECBF5B39DFFC9F3FF4A52B90281D752618197D2926D933B469495FA0069E212669788DCB6661B459BCDEE170B05C1FC827C69F8E2F6C8676D67D0EAE2CAC3827815CAC384C951BA25CE6D58AAFE476DCFE7F6F8144A7938212141723EA367067E3610A265601610EAF7EDDE5919D37C80C83B719D3E7D5A08FA1159ADD66959C077F5C9A9A945ABD76DB82F519F54057B302398ECF9CAEB7FA6F48C512AC831C314B26E206A1697981BADCB4EFB34E9B409F366FE7CE30C2693C99BA2D7F3E31313453175C5A24623E70BFEB26F4671C1035C33C7387C7E5F10CEDA979A9E2E8B2AE16851202CEA07A8FEF63DBBD855DAE1982F0C594C160086A492B295B59535ABEE56AAD429D1F57E6BC719B8D6FD1C43884541320CAA499FE0A434FD83CB0200FB1B272F3C3468F464E7E44A645209FF8206976265938B7085D342C10F058361489D479F9C241173A41A41EDC49B0708D1B41FBD7ED4BA440DB7EFDD5D353167271C5ED2A5618BC982402048A9DDB475775171C90EB1442C8B348AECE0EBEAFF4489FA36B23B2538603E15E7DD4B5A4DD2A2D43FFF1034CA468F37386E19F501085C0324F401057F39B7A459CAFD0DECB6718F5AAD1628952AD1B4738F0AFC9C4058A21FC00F9E7DE607DFABA9ABAB0B2C19008BC902CA461D4090A8D56A73375EB5EDEE8CCCCC75023EAAC688EC1E1D1D27E3C88BD46D50D1351BF651824E1795F9338130370066B7992D16B31F8F504A4AAA64D189A8F364ED74C7F122DC8F28D6061032DE8FE5C1F8F804E9F9922DAA93376F462F0684D97E00FBD8F81F2F3CBF6AFFFEFD3EFC6E68D95707CF270B6C3C0101D73159285CB1A2BA76C3967B7409F1D9D1F5FE99738D545C50484AA57C41EAB7D96DE4F705482215539C4ACDFADD0BB699FBFBFB3D4AB95CA850AB85E18B7C338A453D43A4D75844FF7D3E4FC86EB37913F44952EC3B8F1715F8A50321363F10F4070EFCDBF33FDE8EC4F5BDF2CA2BA10BBE3FC05CB2808772726029110797B461F3D61B2AAAAA77432ED4730E0C2D40FD7DFDFDF4CC732F507666268169E8B65B77D3EAEAAA05C71998967677777B987B4685C28F9E5114BE80797717CA026C7BA3C326B75AA3154B2412C154E02922D053819F4B06E6E8EDC7E407F0FB4E8B65F4676FBFF97FCF9ACD66CBF5D75FEF7DF2C927C317E50611F3C90282A166630B4C16542A55E6D5D7DD707B6161D166815028986DFAE6A6FE7E433FFDE09F9F9DF17B2B8A0AE981FBEEA2D4E4E405079A5C2E67D0D06FF021CB648BF60C96C402CB0BBE6574C4CB1708F94A15749E22747A56D0170742AC7E805D9F333A3AF2EEE1FDFB7FDCD7D7DD0299B4E0E96A6C6C0C5C9004C42A0B38810A0684A926526E7E7ED9D5DBAEBB3B2535AD2816D76F300CD0534FFFCBACDFDABB6B07EDD9B5730E269939E0C4958D4326DFD8B895D49A38F1C59480581B4076AB2DE070D8021A1DBB583C3AF0D15A1D2503B396C5EE07EC366B7BDDF1633F6F3C5B7F14923C8CCFC7C562B1738AFE97650263040145CA027E54EAF3F994F82D0DCC62024E4ED2BADA8D5B6A376EBC55A556C72FE4FAFB0700801F3E73FE3E34934DA58A723B29A47974DBEECFA0B4942E0880A9EDB5B7B77B0261124A2512E162C15CAEFE4706DFE3F386868C835E8D5637A9F3340F8DC7008425F8019FD763696E3AF7EB43FBDF7D037F8F20F816C8B21D2BB0411E3F0C6070497D808B210B4949496CBE814C2412A92665418F9D4ABBFEA69DBB2B2A2AB789B8C2773600D8DC83A77EF46392ABE210F838AA2A379326CEC35D4EC566F814E57C918A8B2A660E354F8121BA7AC072D05FB8B9B9D92392C8A4001DEF83680085822130579F5B2492892552A6F30B19B668202CDF0F8443415F4F4FCF9BFBDF79FB259FDB3D8065A3D8271B8EDB05DDF756555505A632FF43BB4D5C2CB290919151B87DE7CD77E6E4E4550804FC19F5BECBE3A69FFEE2575458D04BC97A3BD73F605D44BB434222518856E43F4CA5852B17CCFCB9C61B6C566BA0B5B52D205528A51733F8A6C121AFDBEDE129542AF1C263F3170F086C06E0A869F8E4FB07F7FFD26834B4B2AC47828DC1903BC0BE5E7CD58FBA3F38D5FCF9D06F1439972C600765A026C5942CE07D724DCDEAB5D76EDFBE0F35714A74C3E7E8C943E4F6FE867C0111C9A47EEAEED3525A8A8D56E47E090C50397336F202818FAE3C50367AFB0D033C308278590DA04920D86CE301A37130A08ED34A6319949933F0CBF0030E9BBDFF54DDB1FF693977EE288E6B18FBC91A22769D4EE732180CFEA9AC9FBC5C2FFC91DE2974215900007400022B1B5376DCBCEBC6B5B51BB6CBA552D944753001847038487FF8D32F49A1384D769704B5B49036ACFA3400501D11D889201FAFABA3B2E212EAEEE9A1CA8A72EE0612B327AB4E828CF547CF9E735B6D0E310F2B2EA501E4F1FA429D1D1D5E199804ECC59B3FB093C18DCEFE65FA01BFCF676F6B697EEDC8A1037FC42E0FE1D84691F156ACE394C964DE49AD0FCD95F51F1900E692053601050651CC64018BB926123389894949397B6FDDB7AFA4B46C35AB1923B3D7641AA163A77F445DFD12BAE9EACF517969D1ACCC7FFA27CFD3E9FA06EE64262626D017FFEE3354B9B23CAAD49C79BD830FA6EDE4C9535E4F20C8EE79C80B2D7267938E8E0E4F30141289593D4FBC99141D1DC8981A388BCB00F62760E8EB39F0DEC1FD2F7B9CCE3E2C1F66748F04B223F3DD78F597949404A3B5FE920240B42C949696E2180422D6418A9685B2B295957BF6DE725B6A5A7A56348D1F3D5E4779B9D9949A92340B003FFAF17374F0D0FB337E73CBA60DF4B5AF3C4C2AB56AC6BA635E0B25C813A77DC7A879345077AA3E10E2F1A47335808C03033ED38899E44A8578FE5EFC3CDDB80BF003E691E1C6E3470EFDC63438D888F36562748FCFADCCE421EBD9DDC602B164FD250180B9D8009A25889405C606AC9B88CF93B7DFB4F39A6BB66DDBA1C623BAE11349FDD300F897E7E8C0A199FF451052951EFCCCA7E88EBDBB6600E05387EF227D7C02FD53E10F4923D54C33447B47BBB7B1A58D5106372DCD6A1D0FB4B777F8518A72D2742183324BF1034EA7C374F64CDDEF3A5B5B8F0602814166F2266B7A07D8D3B390C9BBE401B0145950AAD59977DF73EF9ED5AB56D50A4562E142A6EF07CF3C4B07DE9B0080582627659C96CA4A3C9410EF247E584B8F3EF4CBE9EFDC5F77071DDFF42665F514D323B26FD1CD09B790903FE119D8E93976FCB8FB8D3FBF1D0610D88C65FE6C3D5F40E397E80722D7671DBBCED696B74F9D38FA268EDF88FD31E195D5F4367CEE36994CBEC54CDE650380586481B59419100A0A0A8AEFBCE7DEDBF2F3F30BE703C0F7FFF9593A7EAA9E141A1DE56479A8A47098BC308DECDA05D3B092BEFBF557CE33C0C9DBE9C4D56F4EEC83974F37BAF6D10BCA5FCD909BC79E78322812890573F6E229B2854B74A17E808D0E1AFB7A4FD61D3FF29AC3E1E866260F2B8D4216C7DD6EF7924CDE650580586581F50ED894F56BAEB976C3EE3D7B76E9E2E3E3A301F0D63B07E98DB77F4F576DEC86B91370135146CC7292C902D4DE9940CF7FFF57D300B88F01E0AA3F9D970AAF843A048E19339BBEFAAD7F9C06C0BC8332CBF203338160318F74359C3AF1DA88C9740EB119C2B10E23F096B94CDE72B3FE9207C07CB2C0A6AB63119B8914C79A4808901E2727EDBE4FDDBF63F3962D5B9119E248A3E80FF8E9C5977F08D7DE80D2D147BD062DC56B9D30790A7AEA9BBF9B367D771DB9954E5EFD67E209CE03A053E89AF618ECC100206400882ED96649C1F2FC80DBE5B0349F6B78B3ABBDEDE814DD33938735AC3846E7724DDE650D80C56481B594A7AA858C8C8CFCCF7CF6B3B794AFAC281770972E9CAFF7FB06DAE967FFF5EF949FD74E9D3D3ACACEB0D0230FFE651A003DF61E7ABAE77B7434E72FE448327300E812B928F2BE578F7E9331804830776F3E763F100D04983A6F4F67EBA1C6FA337FC5F118F0A5212C1BC16F8F5D0C9377D9036031590000D408B8765216926B6B37D6DC73DFBD7BD2525393A3670DBDBDFF6F74ECD4BFD399C6647AFD573F9F0680CF662599564767ADF5F40BEF73F48EF60D6A538C53C47F4B0C007C674E0658AE1F6057780C1A0DE71A4E9D7CD3ED74B2BB810E22165CD60368761C97EB6298BC8F0D0096220B784DBDE79E7BAFDDBEE3A66D6AA54A1ED9F061E5DC7FFFFA65FABBFBEF992EF75ED9B299F2366DA2AA279E20B15A4D4DDE065A29AF9A79C7B46F7C7B02007375EE960804EB9865E0DCE9BAB7CCA3C3E7A6E89E993C00791CC7E460260F991FF8A0B2FEB20640F48DACD8554C53B20093A444F668704C9C2C242424643FF4D0C3BBD6D7AEAB110A45FCF96E71F3BB9A6ADAD6D242FDAB5651FA77BE43C9DBB773AC31F39E890080502C9879B9D5D2FC80C7EDB675B4341EE8EE683F8ECF8D2CEB234D9E070F2CF35D4C93F7B104C042B280E391E13CCE9085CACACAF2CF7FE10B7B503666CE058057AAABE89EA6266E9B56918842F7DD47DAFFFCCF9900F887278282A92A60D675770BC902582718F0F77577D6359FAD3F80FD3320D8835359CF7E124F974AA5F27E1026EF630D80586581958CAC9B78DB6DB76DB9E38EBBAED7C56BD591238D2F579D07007BB8C462927BBD337EE32B5F7F0212106102170D3C3765216C320D7634D59F7AC7ED72754F66FD109B9D83D771364923C2E4B1C087C21F72403E1600588A2C20D332BEF4E52FDF74EDB66BD749A412D6D6A3DFAE5943D73434504A28B42000040C00D1BDFC798060B78D8FB4369E3D601E363164B1F6AD91993C363B472291D8A24C5EF8C3CCFA8F25001692059455720021726C21A5088F471F7D7457454565816BD844679F7E9AE46FBD4525F002C13900F0C8D718030805735D6E1599FD3EAFD7D5D5D672A2BFA7F3241619A7B27ECAE4B95C2EA752A9F47C5826EF130780856401C7AA4010D8DDCD1358B5C080B063C7CEB59FFBDC676F4C4D4DD5D906066814DAAF7DE925D2B6B5CDD8DE97BFF6AD0909A0B9AFBB0B8543C181DE9EE6AED6A623C8F201FC169B92659C9CA461010819DDBB3F6C93F78905C062B2000AE66E7EC164011291F6C8238F5CBB7BF7EE4DAC9BE8B55848A29BF9BFE47CF9F16F41028482B9A6689987870C1D4D8D475D2E472F960D4C397C6C9BDDD69D0DD73A3F2A93F7890640ACB230552D646464E43DF6D8633B6A6B6B4B79915D2062FF7DCE3751068A04912D5C0784BEABA5F1F4B8C5DC36D9C8E1823F39566FC1321B2BED0030DF4765F2AE00600E204CDD0B794A160082A92612572D6CDEBCB9F2E1871FBE2927272779EABB0F3FF68D002440C83611F0F9BCBD5DEDCD83FDBD6CC08695738CEA0722C7EA59FF9E99BCECECEC4B2EEB3FB100588A2C307FF0E0830F6EBDF3CE3BB7AAD56A3918C08FD2513068ECEBEEEB683B8B754C91590F1631B1864E54D6072FD5C07F6201B0982CC030AA1910A66441ABD5663EFEF8E3DB7FFBFB3FA8DA9BCE35B99C4E0B96B351BA2116F8E8AC67F3EFD3D3D3839772D65F01C0D264413F593AB2BF8578EF61033693B373862FC7ACBF028025C802B1FFBA4728D480F299616426D08BAC67CE9EFDFFBFD6CB45EBAF006099B2C0869C116C39402145C6F391E501ACE66233713FE8B1FA2B00B8046401F5BB004C20B2D96C42A552C98344000721BFCBE50A7CD46DDC2B00F81064E1C9279FE481DAF9232323DCF83094210C50842F47BABF02800B00C2D49FC4FD4F441F7D0BF7623DFE3F3221A5A39C45D8950000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (37,1,'Hub_(24)',decode('89504E470D0A1A0A0000000D49484452000000180000000F0806000000FEA40FDB0000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000003864944415438CB95946D6C144518C79FBD7DE9DED1DEF56C1B11DA0AE5D0943642635FA84AD52812BE8049B589A117E35B9068359870490946F18B5A494C13133524980A6851230DE103DF88244DFAC1C60FDA0891EBD583EB95EBD56EEFF676677666777DA60583B1503BC9ECECCC6E7EFFE7FFCC3C23F9BE0F776B5353535B99EBEF230E313821A75B5A5AFE845534693901DBB66B1963FB6CC7E9A58436134AC128DA902B947CD326573877BFA7BCF0F92B7BF766572310C6DE8DBD17814F10420314C1D766E7213B5F049350A09401E50C98C3C07339F7B9F733E16C3854CC7ED1D7D747EF287072F887B75E78EED9A38AA2548AB94D085CCDE4E08FE93C30CE81310E94B14501DFC377B1E638B8E6828BDF5CE658DCE51701F8898183AF9FC590FD7F09BC73F8FD9135A150DB63DB5BC9D34F3EDE80D183619620393307E91B7F41099D3828C011C8712408E5E8C4432147882F39827260A0B8244D08F9C672D8A9CF3EFA606251E060FF9151CEBD4782C120544522B4EBD10E29168B6922F70514BA3A3D07C9DC3C1074E0BA4B601BA1028C7B05510D2022BB20FE17C189B12A1A1DABBFBF7650EAECEC0C363ED472B6AC62CD33A5D26F5243FD5310AD8C80AECA767B5BAB160C8564DC68B0B05FBE3E0BA9BC010B257BD151B5AEC2FA7219E86D606C931BEA6A0BBAAE6F5355F9C0A203499202AFEEDFBFE7BEF51B8E2F9846B565FF0ABB77BE018A2C7BB659A40D9B63BACB5D69E93459909A35102E838B6922948008A0681671CA9CBABA7A5D535509F713344D39F0CF294211098740E2F09181B5EB6ADEDC1CDBA2E5F379285916343EF8002F18060F57467501BC15AD18F148FB99CC35525D5553866E0302ACAA0A38949ABEE7EFFA4F1D08A1783C7EEFB6875B87A3F7D4748DFDF295F45AFC138C4603B3B0406766F392E74B1A45A1C964926011CA15E1B0AA2832E00309BE97CD64CEA78DB9F8C9C1C18274A74A16693B74A87F67F3D6A6136D6DEDEBFA8FBE0B3BB63743F9F361D878B9D1BA70E1A74045A452175011B52CCB90CF65276F5C4FF70E0D0D8DF937C1D2DDAE8A5B691B3876ECBD864DB589E95CAA6CED16171A37ED714F7D794E566EC2AD62C14CA7921F9FF9F6F487C87357BC2A9613EAE9E9A9EEEEEEFEBAEBD2A55DDE4B2F7B9F8E9C97B19879269DBA98BCF2FB8BE3E3E333FE32B0FF25707BDA1289C48EF68E8EE3DFFD385296999A7C7B7474F41C32BC555D762BB911696B6A6A0A4E4C4C94FC15007F03CC7928673F920FB10000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (38,1,'Hub_(48)',decode('89504E470D0A1A0A0000000D49484452000000300000001E08060000006AA49DC10000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000009A34944415458C3CD58096C14D719FE67E7D80BEF7AD736BE387C61F00136E62A0E041BC78823265C7609A41052084DACA60529540AA547AAAAADDA544A294A88D2D048546D699300A58423C440A0226003C607870D3EF0B55E7B4FEFEEDCD37FC618D6612949A090919EE67AF3E6FBFEFFFBFEF766084551E0616C046E576FDC98C6CB72776E7AFA4D78441BF1A0049A9B9BB340A75B030AAC9415254514254592A413A224ED9605EE9F53A64CF17EE3080483C1C45028F4AC2088AB25592E40B0208A2236DC4BB7F678EEF08584FE10DF68659437BC42F487DF993729F038095858965D86E05623C8B9B8D769A06F831F04CE0A02B4F4F9C11BE4C040E920C809A02314EC270741923F2375B073DD33A57B713CE5511060B0CDC73ECF21C0320468088F7038014F8085AB3D2E104419F424A11130AA0478017809AFE900BCAC00069DA2F67147D1BABFF787D80F7FB466F9D1874D80C0360BDB6A6CE5D8ECB22C4794880ABEDDE981A61E37D0085040A0019607AB81867E244462E4D5380710B8892180132400752C59C164488066011DC82D2141FE3409C46D2FBEF85CF7D72670EAD4F9C459B30A5EC1C355D8C6847792B4280F811781C3A85E6AEB812E971FCC0C052E040B388E9921C1E90F42145E0B601FF5191332F323010609067809485083A19290F11919B383449090825142995DB550C20EA7C7F48F375F7BB6F72B11A8DCB2F5F9585B74E5F7D6ADB12726C4A785770A8F7E7D9B03AEF7F463444968EFF382D5C8E02028199605AB9E813E7F000C34093A1C3780FA67504E7E8E47E9A09CD01F6A46D47164CC960A5C25A2A8D950349F6872C39BBC1EE4134149D9373723F6EDF2F272E9BE045ED9F293E7699ADC45D1A4302E35F5F355E5CBF24C266394367058F4D56395405BAF1B5C03E84B49013D4D409F370876B30141739A0F1037F8433C44E949F0E21EF96A1252810B9A7C1450A5A932C2E823390928CC4E48F51031781E4F8BA05744072F8A7FC3F7EFFECD4FB756DF93C00F5FDBB68EA198F7288A02B59104111A97363654BE6C890D7B10B7B31066DC81100BC7EA5AC1829AEF720F00061E24EC13E445CC0C85D96091000503282102E5C2E2330AEE097930DA1492F4E03D233EE7E74430530AF83809120C58F248491B6BF07DB7DF7D15F7BB31687FD9FEDB5FB4DC2650515141C6A78C7B6984D9BC5D05AFDAD8A8D76B44444110BE3575B23C63FA347DB889A53059DD70B8C1E109401B4A4AD57CFF400862CC0CEE59AD22F95951D3BB5A1D38949109993AB18F05D3D21FE4C18625CA151420DEA843F0C4B06C0FAF7A83E79839764266E6F6CAF56BB7A86312D3A74FB74F9838F9E7A353522A55D01F1F3A0A469311E6979680D168D4880838099414CFA6921213A92F666268E0D65E0FF4A1AC9ABADDE811343782C44C62A5513453DB301B9D9E20C49868E8C57BD106B5007010632021DDCAA01C2355BAE104E2E362CE64A4A7259324E95AB2687E3E51545444F97CBE94AC89F9BF4CCB9C504123D883878FC29854012C6633E4E52CD608D0348513120A4114D8E2394FEA1986D1DD6B06F60559A8BADC013246DD8B0013AC7AB8D13B00F1517AE841AF586EF9C28CD9CA8B37691E183ECEDD63EA19FDD58CF45496A1A93C1D16046CB5CBCA16E66B19C8C9C9318FB0D932F3F3A66C4D1E3DA68C133CB4D373161F24607276397CF0D17EC8CDC986E9530B90080D82C0494686E60B0A0A8C5A890D271296196F2004D5ADBDC0A2279CE807239A5DF5875AA1668EB16176E488CF85471FC7F7C7C7C536454747E7EB0637206F1158BE7851BEE601752589246883C110139F943473627EC1B684C4E47CB7D703F1B123E18F6FBF03A3461B904406CC9CFA340C197DC0E7E363EC36BC378A89343B0F45B1CDE9031712A8EB7241D1B838342B1141DFC39F1324511143A160F298317A4C3715061C1BA111285F52963F6C26461E3A5C3D1AF05AD2C4BCC9153979F93FB0D96C23AB6B8F81DD7E1D7A9DD1B0B064E32D0224D0B788F4F674B34949C994C96CA68640A8154408D3B0748F08DF1D7D94A0C7CDDAEC7632CA62A1EF80BED3D46B68ADBA95CB97E6455C0BA955E9CA952B16BD5E9F32676EE9E6AC9C9C152CCF195ADA6B61F68C058304D013C140104C68F2284B943A1129DD9D1D6C42F228039E101AE8FF11E148D1F77ABD024E6A726C6C9C5E1701787816505AE7DEDBB9A3F09E8BB97059C5C52514149794FC3823337306CD30C450E477BEBB0B5A5ADBE1FB2FAF87DCEC6C2D2381C080D8D3E3106DF61843E408DF1DFD402828F5F7F6F1B1717146AC2EA0238749651870C42B39BABBF75EA8AFDDB4E7FDF73BEEBB9CFE82ACCAE614176D1A356AF46895C05B48408256484C2460E592D7C166B5DF9657575717E772BB09466F6422D5724DE73CA7B4B6B5B166F3082C327ADDBDA23DD4FA9C8EFA0B35E75EEF686B3B8155D0555555257EE9EF812159E140298B9E5EFC52E1ECD9AB481ACC9F1C7F0757962E7866C1CFB0462780CBED01034E82F123E380C268363436867C8101465174E43063B7B671218ED321783A2268F2CEB581015FDFB586861D8DF59776F33CDF555353C32AEA94FE55BFC8866485EC63D1DC9396ADA8D83275DAB4279B9AAF9159E3B3202A2A0ADEDCB1134E9C3A0D951BD7C38AA5655017BC08130CD9F2C59A4B9C3FC8191C0E87D8D67E531A61B118EE802622EA5D1005AEB5E9DAFE9AB3677E8F389BC68E1DEBD9B3678FF4C09F94E1B2CACDCD2D5DBA6CC5E6ACECEC0C553A6FFCE12DE8EEBB00E9E902CC9DB5193E1F7F0A4E5A0FC16EE3BFE1DAE9EBDCE1AACF1892A288BBAA8B1A7162F0182727B9F366EB85DA9A73BFF3783C67700EE8397EFC38A744FA7879908FFAF06AB560E1C2B565658BD746DBACD17FFDE0D7E0F2DD80A2C297219817805FC5BE0ABBE8BD10FC0FF0073FA96222571842934F7F9FB3F372DDC5779D0EC75E5CF3B4A4A5A50D7C31EA0FF5AF44B8AC4C2653F60B2F7C777349E9534FF5F4F6D15123CC40FC6B3F18F252C15E3A176A4F35F2078E7CCA44D27C2814F0375D6E3878B3B5E5CFA8F33AF48BB3A1A14150EE03907888FF853459617D4E1E3F7EFC9CF5EB376C2A2C2CCCEEDCF22AA4EEDC09D4F9F370D2EBE3F71F3EC684CB07FB0BED2DD7CF375FAEFF13823E8DE0DB117870C8A4FFF7FF429164D5D8D868C5F92365DEBC7915DF7EE2890DA30E1CB0C76CDC0827FD017EDFA1A35A067026551C5D9DADCD571BF7081CF7315EBB82045CD5D5D5C223FDB1753F59E16956256ECB972F5F70A9BE013E3A78C4E0F7B85D37AE5D3EE675BBF6E1E2F02C02EF0C2F8D8F9D40B8AC264D9A64C4E8E267446261E9FCF91B8E1C3DC63BBB3B0FE37B4FE0A4D784BEF1AA13D263FBB5F865B6E2E262CAE9745A106C229E5AD5885BAD56C7BD4AE3378EC090ACF0E389ECE8E8209B9B9B85AF239748DB7F0178B0CFEEA76491710000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (39,1,'Hub_(64)',decode('89504E470D0A1A0A0000000D49484452000000400000002808060000004ECEFCE90000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000F274944415468DEDD590B7454F599FFEE9DC7BDF3CECC643249264FF262080430521AC000D51A8A085A4B10105ACFEE1675A554B4AEF882D2A3ADBB9EDD233D5DED39B6A7ADA0AB6CD7EDC36AF5AC07CEAA298108E44120EFD72493C924F37EDDE77EF7262193210F68517487F33F7772F9DF99FFEFF7FDBEDFF7FDFF4388A2089FC7ABB1B15157515111812FD88BF8AC0820F075F6ECA52CAD9EDC4610E40E41106FE239FEA420724713B1D86F2B2B2B03FF2F09686B6B33D0B4EE6EFCE45D8228AE170441C1F302F03C0FBCC08F5F79218EE30F1CCF1F5511C2BB4806FB652740E9F3056FE704761702DE8CE0B4E34065B049E027DEE388B13CF4F922E08FB16CA149F59627CCBFBFFB8EEAD7F0B3C42F0D01B158ECABBC28EE44696F43803661022097045E10A613E18BC6A17D2404B1040F59063544590E46A20CA4D30A20003C6331B6C9A117F7DD5353D3F24525A094E3B89D18E99D08AA2845DA9723CC0B53EF39BCDF3F16844BEE00504A1281533018884184E1201BDF279084814002CC1A123424018361160C2AE8D328C56381187BECD19D77B5DC6802EC38EEC5711FCEBF792E6927034F302C5C708D4197370059460DE82925B40F0741A500C84BD3823B18036F38010E23051CC7C340280E669CA35311E00E33A0C6793A0508DE18D797AB219FF30563FFFDE877B77B3F2F02F438EEC6B113C76D3814D24D4106285C19F524227CE12834740D832F1283051946943B8BC091049306D27534B47BFCA80A11F2CDB44CC070380E39A804692983C13858340A50603EB8430C98D40490680BDE180F66959888B062939E108E149A95AF6FDDBA95BFDE042871D44C80DE82439BFA80146121D9E09288E81EF6C1994E179028E3A28C34E81909806B2C04CE2C332811510BAAC144AB90081A3A3D2188731C2CB068D11718F060C4738C6A34470E861178A64E090954C5688C834C4C8D107A468415204D0D301AE741478AA1282F9CD62BD8177EF88F7FFFFE7521E0D91FBFF85875D5CABB6E5DBB669554C7677A804F01CFB02C7CDA35048D3D6EC8B6E8215DAF81B3DD6E6071F115F936180BC5A0DDED8782743DA6800A9A07C6404729A0D0AA85EE913044121C145834083A0EC1188BA941C118121244900EBD123C115626C24291E08E72A055E07A4501C6E2026451228C312290A2E0D52884B74209F18D9F3DB1E7A3BF9A80BDFFF4CC2125491ED4E9B4CDDFD9B18D285E50509E3C599A9B1AF5B6C111F0062398EF1CFCA5AD1FEC261D2CCE498756D728788251A8C8B12048165A0646A1C0669053A0C9E50525AAA4C0AC870E54092F88B2127AB12C329C00B9260AFA7D311010A855A3940D120B062E16CB0492E0D012E067501108DE4E8B30181540896B33A90470C7C4A14235FBCFBC187DEDF9030746AF8980470E1C3C84F23DA850600E920A31D36EABDFBD7D6B91392D2D7D8A8029F052B993CA9C746DEDF700AD54C2074D9D2069A722C7065D98EB7DA341589A9B2E3F7BB66F042B80066C88A6D9E593159167D6C045AC0E122179981A6DDE30A8F003AC5A25748F46C18CE59144E4AE200385461504904CC90FF2F50AB95A48E44924F48505344C1172690E8D4A5E1F8BE5F93D4EE08F6A80FDFDC18307E3F312B0FFC94387140A729C001C4A1C044932B959B6D11DB5B5768A5293F3558020D6F953ED2EE8708FC18AC24C70F9427061D00B0B33CDA04290E75109F9661D58751434A2279835E809061A9A877C60C00A60C1BF2FA13FD8F56A040E3209C5161AA2711606D0278A4C6AB942487E50A027A03BC82161229418D0A545E1CA358DAF2B88E3B7C8C8D1745A7902C910AE2000539EDCFFE4B387954AD55393E0652294B21A80E75876F1C2526EE3861ACD5C1560F27E34918037EB5AD10C4DE08F2490845158E2B0C8913EDF3F4E8259AB8673FD5EB0E9298CB40ACE0FF9651528484012C2509A8EB1C394E840124ACC14F89184618C7A9985825E4C0B16BF67B15989BD8338DE7C25AD434829C9496B7561257BC361C978E9A9A7F60FC804D4D6D62ABABABAF4ABD6DFF6BC4E6F7C48022E7D80CFE7034BBA158C7AC338214806138F25D6A1472E723AD5F33540E31E318A2E1F057F9485464C81250E33D67712CEF478A0C08AC6A856C2A748C802AB0E9B24021A07FC5066D3CBB23F3F14042792106304E8F245A1DCA6914BA30FCD72998D962BC27C2539B55AD134D5B37C698547ABA57EB965C3869F4B4E4FE036558BA08B2BBFBAFAB98C2CC71D12D84824027F78E75D50625EAFABBE058A8B168CAB415606097C221EABB9FDEB6AF407C595C0AF5C8C0BBD208A15E3770D5D50EE184F87D3DD1E28B39BB0F151407DEF0838ED06D0E2F79DEAF362F47572E3D134148045197A082618E8F3C7A132530F59D81DCD44F65C0141A0C1B2D2A2B3963473154992D863910F6EDE54F38A4CC0B265CB4C086CF9D29B571E72E4E6574B20C348C09FDE7D1FECD95AC8CF07C8C95C0DF68C3C19FC648A88A82595824CDCBA7E2D4D900A62A6C508294448E5F1BFCEB4439A468DE55009FFDBEE868576239A9E1A4EB60FCB4A30A3F3D7F58C8213814BDD513392B0DC61C434A06156B267F93E7C2F64DA333E7664663A0905994EA2C1220192513F78F7A68DE304545555D18944C2915358B4D9E95CFC039DD19029A5467B571D46DE05A108B6AA89255052B41C2EB57780DD960E8EEC6C98344BDCDFB336AB995F5AB1949E8AC2DC5171FBC3700E53C26ED0C20717FAC181AD711E96C2136D6E2C897AF40424A1D70B4B5015CBB24D48F63828819F27EA49F2D7D054735E4E8E1A555C2A356768E8304900FE3D4E80045432C075EBD6A903818045A552152DADFCCA9EBC8205DFA4685A130C0FC2C8683D50AA72246009FCF467AF48F36175D54AF8DAFAB553668923E01B8B1717172932ED99AAF9F609938BEE1AF1CB7B83B7CEF44006560649011FA2124AF0BAA6D0826D30C0D5784D32F11CCB45D22D695E8BC59A4F207092C0884F5C6522E42B3C78CFE64DAF245701024950E01657CBB26C86D56A5DB67C45D52359393955C82021883C2E540D4790002B9A54D92211ACA63258B1ACE63201D24086C5B1D19178B9D34951B4869C2482E3E78E5E1C374E27DB86C0839D63CDC24CA0B075BE6A839BB8CF62C9105926E6C8CDD5A854D8D225014F2540A120A613907494459697972B753A9D0189C8295DB8E8F6A595373F6CB15AF31448DBC94F3E80C28276ECFC54100ED9E16BB7EC86E4BE61D2245986E183C120535656A2C1605DB56C679A2324CD993C6B1092E6E1F61CC2C1602CC39EA1D668B58AE9919EBA4E1121DF7BA8F6EE3B5F9E7537281181DE40E15B0B125150B5A6FADBCEC54BB62331FA31DF20B475BE07F18415EEACD999420039ED6FBFDF8FBEC70A5999D9D46CB215E692F63CE70DC1809F5153D847A499D5E3E67639C7A71320DF9FBA876DCDBE5DDB6B7F3AE779406A5A982C96C56BD7DDBAB7A4B4742D7A85228CDB5E8B256D1AF8D30D67211E4FC0AAAAAF409AD178990C976B204EAB29A556AF575EABB467021E8E84B95824C2D96C19F4A4B9259B1C31ED3A3D0D3020FD635ECF8EFDDFFBDEC757752072455A389D6BABABD73D9C9D935B922AFD636F1E878F3F39055AAD160E3EF938E4E6382E93802547ECECEC88EB0D460ACB2639056AEE149856469984383434144783A3952A157139E23312305DFEBCC02506FAFADF3CF93FEFBF8041EDAEABAB8B5FD391586A5AACA95EB76DE5AAD5BBB0194A9B94FEEBFF711C4E9F6B86923225D8D279D87ED7613099D2A6558B582CCA777674323A9351239D04258317E6686EFAFBFB62A83C15ADD12953A32A5F2F1391F27F04881EF7505DFD271FFD8BCBE56A4053F722F8046217AEF94C30392DA4A3328AA29C776CDEB267E9B29BBE8E6DA6AAF562075CEAFE15184D71F00768D874DBD3906DCF9E562924B224428687DD4C6FDFA0A8A2D4D4ECB92F8007E7F9034130184DEA2BCB598AB9A5A820180CF4369F6B3872A9B5F53DEC7506F1FB230D0D0D9C3801FCAF3E159E4C0B9AA68D1835475151C9AA4D9BEF7CA8A4B46CB104F2CF1FBE0143DEF350BBF919C8B465CAC0DFFCCFB741C47FDBEEB90B8C06C365425A5B5BE3C3DE5125AE7E9A3F040341BEBBA79BD11B4C1ACC9859EA390133A501820DB65D6C7DFDD3FABAD7707DDD0683C177E2C409468AFA753B169F3835222A2B2B69B55A6D6618A6704D75F5960DDFB8E3DB76BBDD160C8720CD60C40D082D03DDB3F71118700D624A98E0E5975E84FCDC1C38E33F0526AD099C9A72B1FEF499B83F14A6130C034D2D17E2B833A550F12441CE10F1D41C9F8838B6E75C7F4FF787F5751FBD8C2A6DC6E73D1A8D268AE0797106B0D7E58791D4B4C0C5946EDD76EFDF55DF52BD51A7D7539391FE8787BF0F71360ACE720128B5083F7AE2381C75FD128E141C8207F8C7609FF6498C7A807BFEC597444AA351A546754ADE33D678717878E8425343C3CF3D9EA18F31EAFD1890404B4B0B971AF5CFECA731292D8A8B8B551861032E3EC79E9575F37DBB763F5879D34DCBA56EF277EFBC03839ED77157494034A6841F3EFE36FCBAFF17F0C2A2FDA0E228E85444416AB61E3FF82351819BABF9CAD9E4351C0A785A9B1A8F7577B6FF11F17462FA781B1B1BA51320419C07E075FF6D70222D484C0B0A415BB04B2B58B566CD866DB5F7DE5F585890CDB07178F537FF06C3A36DF0AF878FCB8AF875F45578CBF40BA83774CA9FF183670E8BA81862B67236099C6112B1AEB64B1F5C683A770CE7B7C4E3F1414CC570B2C9DDD05F8793D3028928BDEFBEDD3B37DDB9698BC56AD10E0EB9A1302F0F2E1E79090C5D5D90FEDCD360C9C8979F7DECE94348809220529A9AC934900EFD067A7BCFB7369E3D8666578F72EF429FF14D96B62FC4CFE3B3A585B4C9DAF3C003DF5D5BBD76252E9ABCF0931F43E5E1C3102A28004377B7FCCCA34F1D14492420B5AB93A07BBD9EFE8B8DE7DF0E047C27F07E2BAA6C702E93BBE104CC9416D84415AE58B1623D12717FBAC753C01D3800592D2D40C7E31387B312010A22D9F8A2E170B0B3EDC2876ED7C09F71CDE730F23D9148C4DFD3D3C35C6BD43F7702664B0B24A26CC78E1DF76CFFD6B7BEA93D79D298B67BB73CEFFB079E9D304169D3C231FD3D1DE77BBB3BFF24705C03CAFD223EEFAEA8A8881E3F7E5C10FF46009F2B01A96981CD8911CD2B47AFD72FD9BB77EFFD1B376E5C8369A1DCF7C43322C61EDBD781DE1E343996654EE1334DE8233DA15028D8D1D1C1FE2D51BFE104CC96164EA773F5BE7DFBEEFFF7577FA5ED6EBB7806CB5B3DE6FE599C7A09E53E82353D7635A5ED4B41406A5A606475A8063B4ABC086F67E308E07F75E0E847F02104CF8A9FC1626F3801A96961B3D974D8C1E931F20C9211C49A2E9536FE33FBDE2F0A01C97B0B5404894488D7C3E4E67BFD1FBE7BEA5343C65B240000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (40,1,'Hub_(96)',decode('89504E470D0A1A0A0000000D49484452000000600000003C080600000099D4BFB40000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00001B454944415478DAED5C09745BE599BDDA9FF6C5BBAC788D1DC776623B4EBC64230B24049AA440422949688796E5F494D2D2164A3B14DA59CE749939A70B4343D7694B4F5BDA613A94522890400849C86A27766CC7966D59B665CBB265EDEB7BF3BD17CB516C794B3225A528E73FD27B7E7AD2FBEEF7DD7BBFFF7F8A88E3387CF078EF1EA2EB0900113DF8E7679F7D56BA7ED3A64DF4E576C6E238C1C8C4BF2F2A2A1AFF0080FFC7C0EFDEBD5BFCD4534FAD9232CC1E3144BBE96B65B12C0B96A3C1B22196E55E8CC7D9E7E412BC5C5E5E1EF900806B14F8AEAEAE62A954BE97037737ED29990878D2E02EBD16FEC68DD2F36FB928FBCB952BABDFA1D3701F00B0C047E7D0508686137D8482BE873EBDE1F280A70C3AA61DC3F1FBE2DDFDDEF0E15030FEEB3DB7AC7BE9030066790C0E0EAA18B57A271B8FEFE1586E6B9C65A5DC4430E935383EC8DCFC8088C559D8C703B0B98388C438E4EAE4C8D648CED8DD91132296FBEE3DDB379EFD00808B0F89DFEFBF9182B68732F6360AA0667A16CF15F44BFB029118BA47BCE8190B402D9762915E0183420ADB7810764F042AA90816AD94A5E7437DE391664621FB977FB875C3D0DF1D00D16874658C65F75286DF45C113C494E312999E8A5266C97EDA3FE20BA163689CB23E08B35689229352F89BD515C0A02F8C2C8D0CF93A05E2746CEF58080E7F0CE94A092C1A492814E70E8E06A26F8B75A26F7F66DBB6F0FB19806221D32F8ED2E9419D12746E062026FEC683D5E3F4A075D00D5F2882A20C2D0A0D2A380361740E7B311E8EA1C8A844BE810105189DA37E78823158888E16E9647087E2E87587E189C491A392C0AC96B89CC1F8B1502CFE9B2FEED9F1F3F70B0019343E42630F9DA781A7148E4D91E9B30131858A829128CE0F8CE2DCC018141231CAB3F5C8D629D14960B40D79201303A504460E65BC6D34888E118F60838A081C335582CD138495AA002C90A797214B2545BF37823E6F146A9EA2D462AA14AECFE18BB76A25DC538F7CECF6A37F6B00A868ECA4B197C6161A527E273719C43982CEA506C2E50DE28C6D18ED8363C8356A506936422115A3D9EEA28CF710080C9666EBA057C8D1EA184707016250CA509AAE814E2EC605971F5D44497A464A6030C2BE4E02C84EC1CF524B50A095C21B66D14D5A41CD1DF234621016E8F5C5066512F6A56C15FBF8FD1FFDE8C8F50A8084C68D1341FF300DCDD403388E9BB798B249EEC73A3C8613DD43708CF9519E6BC2321A4E6F480063909C4E69A60E15B42F1A8DE36CFF287A467DC837AAB0344B87683C8E16AA8AFEB1202C7A0625692A90F6A0DDE987D31F458181A723051CDE30BA888E481650485521A69AE97247E189B2C85389619401B6409C0DC5387B898AFD8A5FCABEF0857DFBFCD70300AB787AA171178DACD90E5C48F68729984D3D0EBCDB3920D0C7CA822C1467E9D1DAEFC2A99E210A2C8BE58BD251916DA0E0FA71BA6F04A3FE10D191016554050E02A679C00D77308A25196A94A4AB314CA0B50E7911245B5A96AE420ED15127554417D1112FC8A5460502F4B91DA32184E31C8A4827E81058C7237085582C229DD0C938F47A5984E26CBC4C17FFDD7040F45A578EEAA7BFDDBD3BFE5705E0C8B113F734D6AFFC0ABD2C9DEF89E693FD63BE208E74F4E144D700724D5AD4179BA165E478D73A8026CA78938AC1CAC24C14A66B718EC038D9ED84442242B5250DF92635DA1C6E9CB18F920E885199A3A74A60D041827CCEE1859AC4A13C8BA72329CE5155F03D42BE4189128382843B82F323014844222C31C941EC84B6D13009791CC5444D6A99089D040469398AB422FE62D0E9E32015712856C7877D11BC4612F23FDFFDC2279EFFAB00F0E92F7EF940469A49F9E0BD1FCFC9CA4CCF9BEB2417E967E6ECEF1E1AC55BAD3DE8181C45557E161A4BCC70F90278A7BD9FBAE23194661B098C6CE87830BA0671AAD70933D1CCCABC4C1854329CE87112FDB84807D4A8B118A057CAD1D4E712E887A79E6524D43CF5340F8C63982CEBD20C0D0AC9AAF68C06D0E2F4C1209760693A4F4F4459C301A14A78201802A2958020EA41A95E4AC188A36D9C8598025FA21182834E2F0772B52854C5C180EDEA0B8BDB9462F689EF3FFAC0E9FF37001E7AF4898312B1E806B1581C295FBAE4C8BE3BEFA85528E49AD901489DFD3DC4F12F1C6D45655E166A0AB2D1DC3B88436D7D70FBC3585178110C7F308CB73BEC820057E6A6A3AE380B01B29E473A1DD47879509E63444D9E89BA5E16EF760FD33E1F96E6E8B0DCACC7B0278453541521A2976ADACE25CEE7A9881FB95A0615996A12DF289A867CF47D808A7486048DC3B99110BD874539012111B138E78A0A6E6CA95E4215C2A17D3C86D13087C574D506292754842B2C420101912E8973D690C84697F76A99CCF3D897BEF4A5B16B0AC0C38F3F71502C12F300801F528974F8C60D6B3A36AD5FB75A24128953D2CF1C221C0885F183574F62CC1FC4DA258BB0AA28872AC28537CFF76194AAA18180A8A18CB70EBB098C7E8C0723A8233AAAB198D0E3F2E1A87548D081DABC34D206A34047276C4EA8A813AEA5638C5415A7C931750CFBB098346159B64610DF53F671C14D2DCF520BDFE58CC3471AC361592623504CD3500811DA5F494068E5206022700458AA0831B219112E1010F600874235070BC3C146D2DC1310215B1E471E1385846323D464BE14E3D85F8E6B942F7DF7A187C2570DC0E71EFFEA410AFC240089A150282EDCB1E316AEA26C49E99CFC9FC2F9C4851147ABDD89DF1C69255F2EC3BAA51694641971DC3A88B7DBEDD0100DAD29C9C6E24C0309F230DEE97240463AD050948902A31627889E4E52E01791EFAF2BC8101CCDB19E11C11D2D371B5099A5A50ED98F137D63824D5D61D6526F11C789FE71FA6C0E2BB2D5908A45383948821DE55045409814629C7506A9878891669065D54829F01174D1763ED9D5628D08763F8B0EA2A73405D1939A855C94CAD971EE381B7B9E8D8B9FFBD63F3DFE16DF165D11008F7CF96B04806802001109A144784E00A154C86D77EFBA3DCD62C9550BF49394FD5CD2E45A7C620A2215108E510F947219FE74A68B787F00A54433EB4B73A127213E44401C232D305390D795E492504B71E8C2203567A324BE063450658C136D1DEE1C12DC4F5D7E3A96666A7056A88A31E410F5ACCA330834778CB645F4AFD6A28582AEE128558497C47745363925B58C2A20800EB2B1257A39CAA80AACEE085A5C61EA9CC5A830483144D5706E2C020D3571E57AF2DF126E5E169BB66D718EFD15351DBFFC8F7FFB7ACBBC01E0E7E81FF9CA93048064BD644A055C1AFC2581356AD5FE7D7B3EAA56294996E66D43938020BB79CE3E8C2CAD1A3EA2A8D75B7AC80D3951451674FD120B02E108DE68EB876D641CF545D9A82F4C47B7D38BB73A064938E3584355514C8DD809DB0855868B5E93B3CA3362884039DC3D02D23134D036431574B87794282C8A5504043F6FC453D139A2AB42724955992AF47988AE06FDC8A0CEB93A430E0F356D278743D46572586E92529588E611F48B549C6236E00CCBC59F8328FEABEF7DE31B03290198580E1455545448B7EEDCF5BA542A5D3B35F0A9008945A3B192A2FCD887B7DFCA5C36B53CD714C414CD384B81EF22C15E4DDAD0E574E3B5161B7C04C00D5415D579E9E47A9C38787E000CD9CC0DA5D930EB9554010E9C2237C457457D7E1A594F3FDEBAE084826CE5DA823430C4FD87AC238216D42FD2A3941AB526A29EE344470514F8BA1C2D86FC24F6760FF50462ACCA510953DDEF0E92532251AFC950C0425DF442BBFA5912919ED8037916F33F7FF991870F4E02905812B4DBEDF24824A2BE61CBF6976472695D32F5C462317A9680611429C108878291F58DF5A8AA5A2E5FD0C24AD297E5840938375E6EEA41757E064A4807DEB9D08F036D76E4EAD5D8B83457E075BE2ACEDAC7504B416FA4AA681F1AC7C10E07543209369664414974718080E823401AF379D1267A228B7AB8770C66AD026BF2F482337ABBC70DBEC35A4D55C1D0751EE9F750071D436DB6128B0D32707368DB65993EDBE4E2C4DFD52A95B576F9F251A59239B9FD962D0F2603206E6C6C545090F5B49DB3EEC69B7FC1285515C9013E74E830FC013F1472391A1AEA909E96369D9AA888629150F0D69B6F966566A64BE733F936D305062331FCF04033E452096E2AB780B75E7F6EE94387630C6B176793286708BDC0EBE707A92F9062D3921CA8C9EFBFD63608EB88176B0A3388F7F5383B388E373B9D30AAE5D850601234E980D5455D740CEBF30DC8A00C3F6CF3C04A1D722DE94265062308FB7CA6C967BCBE29EFA3D88C572E2D3B633218568BC42219857BFFCE0400FCD8B06183241C0EEB28FB7369BB6CCDA62DDFD4687505C9D4F3C6C1B7F855AD045DE1C33B3E84ACCCCC494D98044122064B69A19049C2B7DCBC959149A5A2D9B23F799DE032FA4ACAAAD75B6D78F55C1F362F356315391FBE31FB336D6768186C2D370B8B337F6EB59335F5602D01B3BA300DE71DE378B5FD62556C2EC9103AE5D785AA08625D8151585378872AA299B4A09A2A64658E1A845FCAEF993014892ABDCC64CC52DD9467F145B9E6C3342A29F0263E6E02D38B44FB6FBBF5E64B0010EFCB886E0C3299AC9082B87CF5C69B9ED4EA74B9C9D9FDC6813731303008994201834987E2220E4579AB613464A7D008914057A1503066CECA88AD6E68601692FDA92E2636B13EF0345545B656855B962D12A6315E6EEE4553FF28D62FCEC20D645F2F0C8FE3E516BBB054BFA52C8B8E55E22FED834263B626DF48CD9A16477BDD34C650464DDA3AAA027E2A622E8D62E73BBD3EF13EBD4E7B7A7141814622959424023F39C420006EB9BC025C2E97562E975BE880256B376FFD37AD4E5F9CEC7ADE7AFB08A25C0C55CBDD483304E1F12910F2E7A074F18D98C92D25F6FB3CE3E1CA8A72516161819C9B710D989B97CBE0ADA58C38FED7C72E0895B0AE24079BCB7260A73EE07F9A6CE49C62B8B93C0725191ABC461570B4C745026D1444F954BF1B6F101DF18B383716A7C1447A3297464DB7D3B37F57322F7D8B0B0B06A867AA9F167861080CB2FFF6EDB75CAE010482DCEFF71B685FB65AA7ABACACAA7D303D2373355586880F227FDC98FB75E88CC324C85244A212B8468A505DB15EF8DB6BAF1F80DEA043C5D23264F2D424BA4449FC33FFE13E8F3BD8505727D76AB592F9AF92A5CEC66EAA06BEFB1DF206F0DFA7BAE1F004F0A14A0BAA2D461C6C1FC26B6455AB730DB869493651D338FE445A61A4806FA3AA58A463E6B4920BCD7E2AB8803933F38C41AFAF25BA5188C4D3832FBEF47A1A007C25F020C80281809AB480E72B73FEE2D2354BCB2BEFD3EAF505896C0E059D181879073A6D08E3EE7C2C2BDF2464C9779F7E46D007FE436A6AAA70D3E64D9053A335B53A48E8D9682414262018FE73AF46DCF86DAB739C8647E811F8C6ECC5E63E724F5A02231703EE00FE40DBFC637B8599284733E3F2E8659C3E9FB5EAC4FBC8B6CA64126BAED99C2695C9F4B304FDD23E310FC0AD0FA6EC036A6B6B25A15048C1308C96B6D32968B9CB56D4EE2A2A597227A360B4894076F576201A96A2AAB24CF852DFF9FE7F4E3617320583EDDB36607965CD65029D0C86CFE78DAA95CA785959193317A75EDED8A406CB4196F395D67E6ACED2E1271AFADDE91E8C0522D84140ACCA375D2EEE0BACB69992231A090732D2D258BDC1A0991E74203505F143BC7FD7CE29004CBD4DF0F4E9D3528D46A3A44D3DD15016A3562F6E685C73AF7951C106A9848825D9F5F0007CEF3FA1D4E860C96350581084411784885D4F94D43883465C04C6E574862C66B32423335336FBDAF1FC2CA12718C12F481FF8F5831B8A33853580E4F74D752FD31CCD2CD596784D8E3146F6389A63362B67CBF49906F1C4FE3B6F9B01802420784A127BBD5EBEB15293433246A3D19CBC82A2952BEA1A3E999E915196082C7FD2175F791DA5A556A41903084524F07894908B6BB0B266C39CDD343FA13D3CE4082D2E5EACA0D2135F7E1B0B3747F6B357E8601698FD7CC6C7635C2410089973731929398119038F84DB990104E0D93B6FDBF1C09C4B92C9D31306834141FAA0A55D022D55D5AEBA655955F5DD6AB5C69408EC90B30D3D036F0B20787D0C14D22AD4ADD894BA0226C459224AEAA623E1B87BD415295E5CA29CB6C6CC710BB78413599C4C61F1890E76615AC3C2E31E0F9AD24C32955A2D154F7735F31A89F7D1B5FDE8A3BB6E7B809ED9792DCA2768E9F8F1E332028201BF46219566926D2D58B7F1C67D254B4AB7CAA4725922A8C74FBF0999FC14D8D86AACA9BF2125F5CC665DC7C646A3B14894CD369B15F311E2AB989B9933FB7D1E4F4442CD9CC968928B164033B3E90119919FFEF8074FDF7FF0E0C1F8826E4B49454BFCD445667676D5FA8D9BEF35E75AAAA4C2FC9118C1700481801F3959592903DED36B834AC520128EA26471514A30EC7DB6904AA592AAB53AE9822C6122E3AFA86A2E82110C06E2019F37929E91A54CD0EC42337D8611F379BD8FED7FFA3BDF3B79F2646CC1F705A5A225FE062D12EADC65D5D51B1BD7ACDB6B3018B35366B9E4D2EBC3878FE237BF7F01F1781CF5752BF1915DB7233DCD3401D625E7C4CF1F765BBB4346539A823E437CCDB37FCAFB283B39E7B0236434A42B6454D4B3D28C781E81C7A5E3A89A4EB536373F79FAF489C3C420DE0557C04CB4448D95928223B8251A799BB76CBBB3AABAFA5646A954CE443D8708805FFDE6D24D0639D959F8D6BF7E7DC66E3AE0F7C57B6DB688C994AE8C73DCB47999A9F71B5D49F60F391C210ABA54A5D648AF2CDB5303150A0687DB5ACEFEE8CD036FBC40D7D24FD4ED3E72E44878DE1AB0105A22004C7C3C4D26D3D26D1FDAF1B1C525A5ABF8CC9DAA033C00CFFDFAB79048A550690DA8AA8A412157E0EEDB1E8546639C5123861C4391E191114EA3D52AAE55F6F39AE3F3FAC8CF1B15D7806226075577A8DBDAF5BF87DEF8CB4F89297AA9BA5C6AB5DA6BB15822CF3FFF3C311DC75D939B7353D112E943065D5C6E45C5B2C6CD5BB7DE93959D9D97EC7ADE3D710AFFFDF26B58B5D28B0C53801C10AF1D1C562D7F1CF97985986B31A8BDA33D14088549FA15D22BBDE53D1808C4FBFBFB233A837182E771D5419FF8991B37343878F4E8DB07F70F0C0CB4D0B9878972DC3E9F2FD4D2D212BB7823C9C5C05FD3DBD367A225FA53DED66DB76E6F5CBDE6368D56A34904F16CEB4174D95E46669A1FA36EA530BFB469F5A30440C19499D5D4605086714DCD4D215624E59D99683ED9CFD3562C1AE5ACDDD6909C512A6432B9786141C7AC5AE071BBBB4FBE7BEC275D17DADFA6EF3840DF719428C7AF5028A23CE77353027ECD7F1F90A886A9B4449F63A6CEBA64D7EEBBEE5E56B57C2D5588D04DF3370EBCF8CA2FE92D2711E724D8D8F01816592EB9A2FEC141381C43F00502D8B46E1D2866D380F1783CB1E6E673319154C6CC95FD365B6FD81F0C89552AB56CA6064A2C5EB8DD0C8742EEF6F3E77E77FCC83B7FA0EBB513DD0C9383F386E8416E279E9CF57F955FC84CA5252A3F1D65413A6584A5A4A4A4F6C3BB76EF2D28282C49B89E31771F7EF8F3DFE3DEBD1F83C59C3319DCD6D6363CF6C4D784736693507FEABE7BB17EEDEA141A21426FAF2DDC7EA1932228954F6DA446465CD13EBB3DAED1EA9899A8467C053E9FCE1DEDEBB61E387AF8ADE7229148277D4D0751B03B23232340239AE0FAF7EC3762095A723A9D3297CBC5CF9DF04D5C163D2FDA7CD34D5BB6DCBCED0E6A728CA91775C46821001EFDC7A726CF279648F1CD7F7A120D75B593C1BFF7DD7DF866CDBF23576D118272FACC99A07D704846C92FA560B0ADE7CF87158C92114B24A2ABA29AA4E3F9C7B0C371F6D4BB477FE1740E35F1EE86C6483018F4517547F8ACE75DCE75F123BDA9B4148D4635C48B7C1367E657E1F6ECBDE7238DAB1B37308C523E95EFCFB59EC7A35F791252B91C1ABD092B6A82D06BC328CADF815D3B3E2100B6C6B60C928C383E2DFA12F619EEA37D12442311F627FFF55CB0B77F8091C9E592ABCDF8E463BDDE71C7B933A77EDBDDD5F9166DDBA80AF8DFA18DD323D4D9D9C98BECAC59FF9EFD4C35152D1110825BB258F296EDFBF83D7BCACB2B2AF9BB311295D0D9D58327BFF51D2CAFF46391D94D6E895FC502E4D2F5F8CCFD8F0995B2A6B712A395366119F289F0B7719FECB3C27B9F79F6C741DBE09032C57CFCDC419F68A092034F14E3EF6C6B79B5E9D4C91769BB87C600C5CF359BC85E97BF139E4A4BF4309068096EE9861B36ACBB63F7EE3B73727232135560ED69C5AB07BE0D9DCE8D711F43819040AF69C0C30F3C2E00D5D0558EB12ADBC5BBFAC24FE173B22784F73DBDFF479300CC9CED98B332C839C5EDB69EE34D278FFF3E1C0EB7D3C7F4118D3AE933C8F4B8C353ADE5DFC42FE5931780F8351C9E96888E84268EFE54B8F79E8FEDDCBA65CB4DD47029139AF0C7575E465BE7CF41C90635538F87EE7F5208F49F1C7FC42F44CFE044DE417C21FE353C22FFAAF0194FEFFF61D03630BD0216623B478687ADCDA78FBF303AE23C4DDBBDFC4F9EC9D88CCD5764AF5B0052D112D954862E8EBF392083774B99D9D965F7DFF7C05DF5F5752B28E34413DE1FDF7EFA19E875267CF6C17B11F57AD0F3873F60C9BEBD7825F412246A6087E2CE8B00FCE087C1DE0187F24A02EFF7FBC6CE9F6D7AA5AFC7CAFB792B9FF5B47F842AC09B10D92BCDFAEB0A8054B44443452DBB3E414BAB56D5D77FE213F7DE59545C6C99EA96824E278ED4D5C152538D826F7C0386AAAAC973F200F4F4270000E6A305D4A485AD17DA8F75B6B5BE4ADAD445A38786834EC777B2C19A9A9AD8D566FD7509C0545A224A92D36B7ECA5B68E24898F3EFBAEBAE6DBB76EFDE66341A27BB691E80CEC646D4F5F7C3A7D542F1B39F4176FBEDC2F9BEFF83679300983DE3F925B801BBADBDFD5CD32B54856DF499DD14783B55DC087D073AB536722522FB3705C07C6889DC53C9A71F7A68D7A64D9BEA19854212181E465B43031A072EDE741CFDFAD7217BE2894900BAED8373AEDB8EB99C8EF696E603EED1D126FE3F70E1B93E612DE9B3835723B27F9300CC444BF410DC12EDCEABACACAC79F8E1CFEEAE2C2F2F3AF3B5A7A07DF14594B6B4804D02E07BCFEC0FF62401306D9A38E0F775B69F3F3668B71DA7C379BAE9E61B2A7A76310CE3BB526BF9BE0160265A22414E4BD0D2CE9D3B377EF2939FFC905E2E37B87FF213A4A5A743FEF18F4F02D0DD371D803811BDBDC77ADEDAD97E982CA695CED54587DB886AF8ACF7A49AB5FCBB0560265AA2D73AA224BE89B350B6163DFCF0C33BB76FDFBE96684926128B130004AC7D03AAE46962E7E0405F577BCB9170287481AEDD4A19CF673DCF5F2E0234903C577FBDFE5705D70D2D9125541125196857165D475E7E7E7EE5E73FFFF93BEAEBEBCBF8E308005F97AD5FB869CAEB768F59DB5B4E7AC6DDE7699BB795567E1A81BA5B2701EA996BD6F2030066A1250AA09AE237494B24D0AB3FF5A94FEDF8E39FFF22397BBE9DB17575B40C0FF6B74C345282B5E4A711AE6543F57705C07C688974A260D9F2EAFAE6A6D363B4EDA543FBE95A7B68F00D959382EF25EA0ABF1759FFBE0160365A2220F8B9A44CFA137F93579040E097058782C1A09B783E4080C5DEABAC7FDF01908A96888A54E46AF85FF7CB20FC275E511F811230994C61B296EC7CE6EA3F00E02A6949A7D3493C1E8F84A88625CA89FDB5ACE5DF3500538148DA755D053EF1F83F3F4AC8DF08E055B60000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (41,1,'IP_PBX_(128)',decode('89504E470D0A1A0A0000000D4948445200000080000000770806000000CBA9486A0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000469A4944415478DAEDBD09741CE775267A6BE9BDB1EF3B081204778AA424521B45C9912C99A216CB9215CB637B3C9ED87EF39289CF7B939997F71C5B19FBD867DE49CE8B675EF2C63E4926893D5AADCDB22D89B24459124549DC4970074010FB0E347AEFAEAA77BFBFAA1AD58D060190A028D92A9E6255575717AAEADEFBDDF5BFBF6A1806E52E122FCE8FD64A79B6577B3172F60DE77123DFC37DB2642DEA02892F5D84113EEC972CE5127A8E7BF884F88B65008BF83671656B5FCED9B7B7570B09F2115F77ACF667831F47FF040916C8000EE23B89AE58ABEAD83ABFA7AB840486630591356B4D3BF635FB5C3CDA274C701106C8437CD55A5DD6EA71ECDB4C215F259BC0C891FAB4B5A6784D58DBA4754F36238009A44F98E0E22AC066005BD241742FAF3EC76A3382EA60820F93016C023A896F133ECE6BCC5A15EB73EE6F7E6796FFF1F40B2FBDF6DBF73B7FFA5FBFFF274BC1004EE2DB12EFE73568AD05D6D66F7DE77620C1876910DAD7D72C82DAC48FF21AE135CC6B28473D19BF8BAAA0ACB878A7AC2A472E1B011C567FAEF407EA56ACBAAFA8ACEAFF54155552555972A9AAA4280AEF2BC4C74855B12AC4C7F833AFAACBFC2C56955CB222CE51C4F9B2B96F1FE3DF2B2ED9FC9D754CB6AEA3F0B9380F5B1CB3F7C567C9BC9624F3BE2CBE3764593214591C334686065FFDD2A35FF8768E7DA05F258FE50ABB43970FBC4E04901D0800B80FF21F2872B9D480496CC522B8B52A4A8601CCCFCE7394ECCF8A4D74E76745308193814C46318F9B0437BF9B610045105DB1892F56BE4B49861D43962953682156DAB205520E26F8DD5A9640F1E653016E4BF707182F7D8A452C152F9B5F70C60294B01AA63B60606BEEB3A565AEFCBE259D09A3F37BE7DF1A62CB3F3298163A43B1C6ABA4898F06A0195FA567C4167F49DC141F9014BE96A1886BB1A8F3751432F85A06AE0BE6900D52DC2EC128BAA6B92D7565DB030987C1FA3B8502B2242F0903487910C06DA18017F04C7A8AFC5E3F1504032C854C1A866101CDAAC48C6142372451B52514E7C892208CAC307198D0E6C5F9B30646D1585AF9BA695E0D30071F914DC2524A12D7D3F9B306A99700F326E467F6C1888221717C468395545533CFEAAAC356B10D56392790F5BB01004B8800B96A40A0001F7043CA37B4B5D1E6EBAEB7882B5B30AC0862CC6C2D6816902DCF7C97F7378EF3ACEFB3CF551CBF993977F67733D7EBB9D04DA7CF9D234D170CE0B59E41CD0964FD6E6900495A72159015FCE1F7EA0203AC685DB9F4CA67116CBE90BFD6D4BC8C4E9F3ACD68A5AB795C55E9432248DEBF73A53C8FA53402295F14909F87D15C12C6D7C743240C5632B026F212FF8AA8801C2F4A2C0F3DF490D87FFAE9A70DC7394B9EA092E5A54580DC2DA32C38E063427CF386C54DD3DC49ACA526BC64137C6464449A9E9E96E2F1B874E2C40971CEDAB56BC9EBF51A050505464545850186B0F9652918612955403E0703CF2843BF2E89B5F121B835B2627A2A57324CED94F81D3B76C820FAA143876426B09C4AA5C4DF2D2E2E16E74C4E4E0AA7269148187C8EBE65CB161DCCC0BFD397021596DA08CC5505E21EE53910E0B78786E9ED43838CBAECB4B195CF4E99E9FAF1676CD9B46762C0C7338FC3B993CDB0BCF82C1BE631E7EF29F37BFB7A9A807571AE7D9C3FAF5FB7867EF0831FE4D589922C5D11C8CF47785BCD54555529A15048F5F97C8209D2E9B41C8BC50CB7DB6D3082EABCAFF1391AA38388473012E86082CB45852BC50099056E17A26EF95EE36428499DBDD34C1FCD74E0412CDE373F9BC766F6CD9C8C241CFDD9E799DF698EEFD239BFB3CEB37EE775BBE67821F215B1F66CB807D4777676CABDBDBD72515191C28465CF577131C155BFDFEF6249C767A5B2B2D25B5B5BEBDBBF7FFF443299D43C1E0F9F924EF15769669C34B67830561597C508708DAF280388C08FAAB26BA5CDFAEECE1B6AE8F6EB6B8421225BFE3A7C7F49046624711C6E9A9471DF48C40F24C53CCF0CEB9A913CE1DAC9F6BEE470F52447D44FCAB87F5E8F27EFFDBA114E965C578CF0807A10BEACAC8C3D245965A2BA755D776B9AE661E9F7FEC9B7BEB575ED9AB53B0B0B0BFF40370C2FAB80BD9D9D5D2FFDCF7FF9A7D7060606C27CB924FF2EE972B952CC08A9CB6704E9CA32005B8086CBE3A59EAE2E5AB37E63D6775EF7A5C50132FB4A8EDF9FF94D8EAF9F132FB0BFCB5DBABB3AC9EDF593ACCAC652121EC61D134866A22A0CE32A13DC859525DBC3F7E6FDF297BFBC6EDBB61BEF2DAB28BB5B51D44A66064AA711E1D4A8A0A070FBBA75EBB67FE77BDF0F8F8D8CFCE6CCC9D32F3EF5D4E37B1939E2600666842418014CC0E80146D016C308B2245D690450080C303C3E41636FEE219FD7C344322381080F9BC4C84EDE8838BE6C2207228272E65C392BAE2F1845440C554BD255716D441625B155C456C9208A22A27E76F44FB2E203260C4AC4224865E555245FE8BE6C1D9F4B7868C37038EC62030E70EF79E081071AEFFACC671EA828AFB8D7EDF1B482E85A3A4D69DE8256997F86B9323A064BCBCAEFBB6E5BF17DEB376D1C1C1D1DFDE5F1E3C79E7DEDE5974F30E1936C2BA49829C008E9C5308274C5114084779920FC8ED3C924F14BE087212B5963256E209D76424796731239B220AC99F091330CA3AA363A209C2C5BD73199248DAC215F43939D9140730B62E35DD80F6E58FFB9FD3E2A707BE852DCE2F9086FE979F7CE9D3B4B1F7DF4D17B2BABAB1FF079BDD733D16548BA9621BAB077C53E5984270713D8E7B0C9505D5E5EF96F6EB965C7BFD972EDF527C646475FF860FFFBCFEE7BEBAD016684A493116CCFA1A5A545CFC7089274A56D00C4DDF9B6BD2CCD2BDADA2850583803C702FAA58C0A7042BC88D9AB26C1715CCDE87B4B5D58E7AB82A836A3D8E95DF33CD53A47FC2E2B142C67FD3DECA79329A10222D1082DC690CEB5EC59CF4B2CE5B0E34078575B5B9BEF7BDFFBDE1D7575750FF9FCFE3B0CDDF00888D7D23392EE24307B2AC74F77D2F1339D74C7CDD7F333488261673185F53B97CBBDA6A2B26ACD9D77DEFD6737DFBCFD9DF1B1F167DFD8FDF24BDDDDDD2130023C075637E97C8CF0E2AB7BAEBC1720DE8F9EA6E52B57514979C5D5C905CC6103645DAF40A692D212FAE0FD0F48D774E95288CF96BD625BF63FFBD9CFB63534343CC2CC701FFF9D529C2408CF6EAA496853DA21D22026AB747AEB832374A6EB02AD68AAA3AA8A52FAE9F32FD38AE67A6AAAADA282A09F7C6E778651C8629E19A620C5EDF16E6766D8FED9CF3FFAFD4834FCF2D8F0C8D32F3CFBF49BEC3A269811D2B98C00665B0227601E06300C14D291D7EBBB7AB980052E503DE974921920BD280D6013FFE73FFF79EBB265CBBE1808041E66A22FCB89E56713CE92E0BEC1117A7DEF0714610658DDD24415CC84474F9DA30DAB56D0356B565047773FB95D2A8D4D4E89736FDAB44EA8D51995E06082CCB529E0F1F81EACAAAD7BF0AB5FFF77439158F4B9A1FE81275E7EE9F9A36004C4129811B44775C17D225877390125753E3F53963E3E49341DF5020BA8FB705AF9D0F790FC7F7AEAB9EFDE75FB8EC63B6EBF7559FE848EB9EAFCE20F1E3F45EFEC3F4AA54585D4D25847078E9DA2C327CF32D15BC9C5AAEF42FF10AD5EDE44F5351574AAA39B5AEA6BA8ACA48876EFDD4F2B9B1B840AA9A928CDD831B6ED60E43018DF6895C7E3FD465D63E337BEF4B56F9E8846234FF7F4743D79F2C8915EB8E638871141417471CF9E3D97145D9CC70B302198E48F4728589F81D4052DF0ED61ECB14BE74A2493A52FFFE68DEBDEDCBBEFEC171F7ED0BD6AE58A2627024463317AEDADF7E954E7795ABD6219B53637D27B878E09625E7FCD1AD6FD1DD471A18F56B534F2B9093A7CE22C9FD744CD4CFCE1F149A10A0A0B02D47EEE3CD55797D3FB474F53735D2523848B7C1ED78C4A713082D3BE60E458E3F1FABEB3ACA5EDDBB5F5CBDE624F02D15191F93C7FFE3C5483663382334F301F23CCEB05C84A7E45D3D13B4DE7FBC30221109E95EC0A21848F61A95BFB3022ED7482BD669D87EFB195C9FA6C571B59D7C03D1039FE06515D6D35DDB36B571E31D5495B60E19725FD48DE280CFB2A33BB0CFB82757DEB4F9FFEB951565C7CE64B7FF8505D2C910EFC7ACF3B42CFAF6768AF282DA6770F1C1544DF7EFD263A72EA2CF9BDE3B48699E260FB696A3FDBC5CC514F67BB744682612672154D86A6052AD45555503812A3C9E908AB55371D3AD141D5E5259448A5D876A8316BA0B2EC0BCAA808877B89FCCCADACB628E03256DDF699FBFE29118D3D7E70DF6F77F3B124338264198BE2D7F395C3ABF365D76068E55BDA3BA6E8C537BBAF4A2878DBD6EBF23280CE0C60E8C682E01FEE1E12386CF4C908EC28CC010EE3520A47A22BFFDB8FFF213911A3C4EA478A5CCFB87E2CBFDBDB465F6DF95FC8E7F3D2C973DDB4911962F58A663AC2F08F77BCBE6DB940825ED6F70DB51574E26C37F50D8D523D13BEA3A79F42E1081506FC343032CECC504EC1808FA2F138AB0D95F61F3BCB285141F14492AACB8AB35CC719A698653B2061FB3997D7F3B92D37DF36924CA69F4E26E33F7D6FCFEE03CCE09ACD0497E50598AEE06C6C5EBBBC8802BE964B460045325D24D9B46418018C4521407E0D228B08DC42162473D8EF96D8DF96F9452A482367791DFCDC6EB7CB5DEAF7D1DFF6FF1D15AC4DE86F6F7F424E1C99A6AF36FC31C55365A6C1B77A394B7FB3D0F5705D9BEB6AE864C77901ED4DF5D5D475A19F827C8D9282A050058DB595E4F7791809A2CC0C3E1A1A9B6406090A43B277708CCA8B8374E814A34863B5B06910049B51070E7B214745F052C17FFF2BA595551BD893F84FCF3EF9B30F6C26B85839FCC593418A62B07B42D35393C47E70D677CBEB0BA8B5A9E823130A0E87A7F921515CBAF05030EB7E89215FF2FBFD9259FB301367B0EFA3C0C34C956462EEBD496E4B7F5A1F6E6D97BEB9E56EA97EED32DAF1F617E9E80983D6B5B508783FDBDDCBC65F3313B98AFA87466879632D151715084468666600024C86C254565C48BD03C35454584905CC04BD8C12B51565D4C3E745D87EA86204E8EA1B66242822BFB00F66E207E46404B2914132545939142C2A6A5055E5E67878DA0BDB866D1C8399C08E1DE45505F326833CBE00F2DA9448C4C8E3F664C2B2F9093913189232F5FB765047CA848925597614905AC120C98A284A8EEB8B7D3963D0981B1339CC523113327496FA31BEC782A2924595FC225DCB4C80BF6148D20C233A99506195539EAA10D775C901B97F2842AD876E34289092AEA9F15343D92B74E8D81636ECB6512C9EA04E1882EC014C31B13B7B06A8A5A14648FBD8C414553391BB581514050354C144EEEE1B12866094A57F7432245440EFD0182386975635D78AD0B286BC42AE97E0701DD35AAA87DF6B9A69B319C7801A89B4A686422185D14D675567D045AAA1E775035D0C652ED54FB1705820011482205E66108792A786DFB94A399FCD97AC661D9B091367982963C59ABA5D63EB4ED7CD448BA69B9FCD30AC4E40A9D28A4A5254B73867210B2C665C9E1940C73A36D2FF57B5F54D45B2DBB56E26386522DABDE3BBE883C2A3CC0CCCC09A4A8901B7F48789DB69EDDA7FA475EB4FD2B51B7E454FBEF8676CC8EDA0A3A73B454008D27F82ED84E1B1096A62229FEAE811D25E5F5D21186379630D45FC26EC37B15AB830C0D21F6543734583E3D98C2CF8A78CE41B944A26A3E17064D8170834417D81F0F6D888783CE6F27ABD0AA380C6AA4EBF0C37D0649D742A4D2E85DD9502B799DE95959910708611A40CF133D2E31CD193F59D94511136438858BF62218055FA2D598C8B2770E933C112BC10CDE40C1301783B1D0A91EC7623127851C20306716D245A0E1D3A64D4D7D76B535353E983FBF61D3AE43EF8C5EDB7DEF648754DFD37F9A516D9B908B7E4A355A9669A964C3B43A84739C52EDD4D343C52CC84BB47DFB4EE45B9B9E1475455F147F4D26F9AD9F81B133EFFB1331DECE679585DD6B30BD94DCB1AAAA992A11D4CD0DA542BCE1B1E9FA2752B1AC98E38DAAE67BE9C027FAF0FF4F78FBBDCDE2297DBDD0C8697A44C058F899669941C286A24124943C5C1E3B1EB1317C500B8AC9E4E919BA1B9AE65C5552B0B9F652FE4B9DE407F1F1D397A3CF302E75B601C21AC8AA40BBF58E4E613463A1D79EB37BB9F292B2B7B77DBF6DBBE5E59557D97700EF9FA8D5A03E9EC109DD4AA685C1E633460DBC0502899228A6BA7E589C97AA3AEFA1CF3C7492ABEA598CE1DEE27D7541BAD6B6D1141A2C69A4A110BE8E81EA0B6967AC1B43D2CF5AB781FD1C24C1AD961FD3BA11F4CD0DFDF178BC612B2DBEB2947E92B905068414B58D00E01FB69BE31542681F8FC7CD2252300AEA6692996969AAB170A5E6024B2AEBE810E1E3C40FCE00BBD3951ACC9BEB38E8A1D9FCF978846A332EFCB6363637DBF7CEE99BF6A5BBD76F77537DEF88DE2A29236E11530233EAA3D424FC94F9B1E0786BA60C412635447DF3A69622A453F617BE2C8ED7F21C9D7C9D4BFFB5EBAB96B27DB048D74FC0C5BF64D7502EE3B2F0CB0E7D0C8B680DF546956726976F6D014DAB1D131ADBBA747F7787D62A4165C5D1DC4262B2D9ED9379921954A8B77C0284788175CA60A309624EFFC612C292B273F2FE52D3580A8D98E1D3B321C6D490C5EA2C1B68F76EAC4F183A74FB6FFEFB77DEAD377ADDDB8FE51F60A8B61D07E59FA0219BE618AA63CFC768E5BD7545822151A4C8F49F7FCFA3FD0E9F2BDC6DDC907A45343FD542F55D01A360C4F77F5D0CA65F5B4FDBAF542E2859E27A77B478E3437A28F51E3C8E1A3BAC170A9AA2EC5D6F336E6CF30808502BA60A151360E8661D8B20148CCD0971909B443741F8305F1F1851A81362FC0166077096154629D496C3809C3905FA8A8DDE3979E7CF38DDD2F1C38F8FEBB3B77DDFF8565CB967D5A868255EA29E06DE217BE8C55E409B68302BCCF46A2E1223DEAA2FADE6BA523877B69DDF246E3DC853E09C6DF9D376DB10C582D8FA467E979DA7FE0A03E3E15925C2EC61DC9B4EE4DAAEBA60724605FCF3000F83F1A093F79E6E8B1BF89C54283A845644350B4CA59BB76AD61058516890064EADA0F0FEE2F3317A0E1452D2C1B68A1008C239D8D24E40508E5DBCC0442FA9175836A505535C92F3F119A98883FF12FFFE36F57AD59F3FAA7EFDAF9D5CAEAAA35A26E416D22BFAF852A4B518F78237D33799E5C457ED26536CE142F824052799157F7F9037256669172A27B16239C3A7D5A6F3F755A525D6EF019CD58F77AC60596244745146F93C9D8FB03DDE77F3432D87F823F4F31CD527EBF5F63B52618E0BBDFFDEEA5DA007353E5F50F8678EDB3CABBCDD1D799926E91C94A9B9F0DBB998766ED6B26E75AA5E322EC2B4ABF35F139533E6E978D5BD79330DA1BE7F38BD8B4713DFDCD8F7E941701347DE191002713E023AB03C0A611080474480F72F02C494002362D52A8E14B9C387E3C71B2BDFDDB77EFDC75EBCD37DFF2A8DB1D2C53ECF881E2A74DDE0DD6F0783E56630F9557646628E3C891A386EAF1CAD9091F13F38786868D377EFB9691D20C8BF08643B767CC7C0B00CC637A3ADD3F3C3AF8F7833DDD6FA6D3E929BEBF08337182D12C190A85B47038ACAF59B3C6B85838F8E22A0083B495FC0C108EA66870347655720195E5657322403ABDB8360033E555A64DC0680026D0611C161515891B60E2A7E129A451704084CADEF82BBFFEE52B6FBDFDDB035FF8C2171FDAB871E3A7F9982BABB2C9E1ADC0E361D522DD76DBAD527FFF80D17EF214A3838AF82CC56251FAE5AF5FD187C62664050D3850FB28E98E7E07FA8CCEB75D63438B85C6C79E1BE83EF71CDFD718AF2126FE347F1F65D48A336AA5D8A04DB38BABDBEEDF2585824529B7EA62C19BAD5777DE52473BB7379891C14C59B8E5CBE77503A56C97D12E139B150A96E609059B41A4B972F626722C7EB15E90E1A815806D80913C88A669FC77D3FC92D38002D805FC9213E1A9A9F88FFFEEFFFD07D6B17B1EFEC32F7CA9A9A97943D6F3E5E416F05CCD4D4DD28AE5EC1A1E39AAFFF3E34F19FB0E1E4685B94844A1FF819403F394F1EFC5564F4423EF8C0FF6FC34198FF782F07C2F203C243F06E2A3D218A11B665E51547A79C9205931BC5E3F4D4F8C93D717C8B2074CC24B1F895C006877F8D0414AA661045E5E0308DB43B02447A80588A1DBEDD6F91E34188618E4C1865A924F4D227E70F2E4C9F8637FF1ED1FDCB36BD7365EFFB0B8B8B43213C370D4503A19E1FAEBAE95FFEC3BFF39CD2A4B22D2F3BA7336F44B3A2B422D752E323EF2CF91A98976FEBB53FC77A799F861267A94EF25CE7C9960FB25C544C7E013CDAE1F9CAF26409DCF0470F9BC0209C68706C4B85B3523A1769857B50A47244770C72CF336A3866495749B2821C93694C962049F94F94BB6259C5D3265C0B01331505D44F934C3CEFBEB42E4B14DA6CC8088D75FC0DF5F7E27987C6A0189151855500F6004B611601F64D00044F8C58B2FEE796DF7EEA3DFF8E637EFBDE1C69BEE66A671CB39C5AC3613081D6E18BAAEEBB3DC39B3458AE9EEE9863E118F4E3E1D9D1C7D838F4EF1F7D37C7BD3CC8480FB18743E069BA0B47C6A6A4AA82C26BE6133F065158488C02760DAED315D97744A9485CB8E913F666790DC12EE995E3E92DDC787EC7E3EB63E9BC95118566ACB4E6680E43082D0560604D6C5563319C0FA0C7FDFFE0C0673FB03223CACA597AE15D0C5D0002F1A8C0038C0200F1B0D58F7C6FEFAAFFEEA7FAE78E9A5BD7FF2EFFED74756AD59BD292BC9640989B8BE6668C2D873B873F6A0633E96D212F1D7E2D363CFF2CB1F05F121F5FCE7D00D4DE87AFE5BF0503252BF69D3265BEA175C1636AF0D6068690A87264452C8EDF559FA5EB2DAC298102DB27B429FCF0CF392C4A0103533744C308C2467868E4916F3CC0C0F339B3D896B90F91DE20F88B349765B185110A058F50556B650B841493A7ABC9D42D1303381464BB95C0C0DC6C7C7856DC00820BC05A0019F0A894C749E3D1BFFD33FFDF7FFCFAE5DF76DFED297FED5E7ABAAABAAED77E3902F20884FB260DE5603FCCE0F27A3A1278C34FB9426E1432C8061483D6F63401C18A3CC8828128515AD1F3870C0E075D1AD71E74100D4DC27C8E3F6516169D9473A17B0B26D15FDED4F7E42A964FA8A44ADF2A10112337019B1D806A2153710B103780B2FBEF8FC3BAFBCF2EB13DFFAD6B7EEFACCCE9D77BB5CAAD7C10129D3CFB77D2EA38F9289A7E474E29004B8976561E4F11AE13F1F6382C7715DFC1D364E91E9D3D8CDD3170AF78B660074DB48A792E40B147EE473015E9F4FC4EA1752166E8F09B0DFD7638F3D36E7B9DFF9CE7768F6889C6C34404EC142038CF113DE02332DD4428209C6421A8FFDF0873F7C8609B5F7CFFFFCCF3FB761C386EB2553DC93962A08CB46E2176A2AF91B48BC6DDDF3F530A034CAFB31C420C05C401CF8F896D40BC9BF9C6613F31A811FA79E6A696BD4CEC51E89892D2132C69223F66B6A6AB2387A6C6C4C2A2B2B138FCDDF195FFFFAD709E7B7B7B71B601430842D1FF9D0004C6005905288C859F6011821C6CC12FEDAD7BEF637F7DF7FFFAA3FFAA33FFA57C29332F457BD94784ED6688C1922CCD78980F0CC4042EA59D8E330F29889527C5FE9E1E161DD92FA25E9843EAF116856DD7C3C720190FE397201526969A9D4D6D60682CB309C311E00C70706064419221B55080583F8228182A4D0C4C484B17CF97223168BE9ECEBEBFC5B01B7CC10B9E15563EBD6AD7A7777B7E80AC2922A6C04261ED353D889227804286786F03DFBECB313CF3FFFFC81F2F2AA123F2546C124400A308925EDC2B5038AB0B781EF84D4E33E9642EA17C10073D37E783C4EA353095121641A7C64167ACAE6BEE9254876B32161B8C9966F2B7A4EC852A68054B6F6ED63665998798E621785CAE6319C5B5A52429B376FCE130A4689549617200A3FD1DEB6AEAE4E6E686800C1512AA532911526948282500CF404F1711E32824C3074F630104AE57334E406100DE4DFA6D9D7D69811B4A79E7ACA6026321819D00748E2F3C064C47F032802DC4F332210BB66B00FEC50729CFF0EFA1A8BAEEBA3A34383E820C2F78048239824C1F79B60F44858529F66D522823A97ABEB2F9901E6FA53FB8E8D5ED5B2F0677EFE4C1E04C8CE06A22D2DBF74947F2B4C34374BB7C4845098F8E821E86642BB9821053130C40AC487C10997175137101EC401F1E0E2415231566F707010C916DCB871CB2DB748172E5C40FC5E418B1830426565A51849CD08A217161662A4AFCE8C83E2932433058236E83380224DC96E2103294770C98A2DA450CE858414C2B9B03720F54B01F98B6680B95A9135D70668C7B53566BD004AB6C5000F735F16235974B3CDAB886E5925DEB9E79231F37B69665F26DD0A7F671FB77FB7BC65597E15E08803A04E0E711836D0D4EAEA6A3718805F3ED3D4E56642A2C419AB97CFF3D53534AE9715B5C83074D1F516C6AF9D9FD7D2A989D0D4E4A158243CC8EF5EE866263EFCF0A4455839180C8AB91478ABA24B18E8047BA0BCBC5C67461085A708202121C4BEBB86FBE22D882F2241252525B80E10030CA7B12AD1F85ADA9592FA851B81FCD65168994CC48495ED5C36B496D035ABCA2ED90D5CEAB27096220A85A3C2B207F199D0324BA4C2C4F7B044AA2C512A1FF3F377E08292FAC6A66D8545C537BA3DDE4DFCF3801960D2ACE2532BF86415A2060A8B5017D9178E84BBA291D07F4D84C3EF01CAA11ED01F88CCCEA4FE548A8AE0AAF1DFC818838811F0318DB73A131DA8026283114440895504D2CF69561F3AF43C7EF7F0C30F6BAFBDF69A601E3616E9C73FFE315DA9092FE645008F3F40A189119A1C1BC67876335023CD047BEC3E40AA15D09132A5DEE6796690479ED9DA811FC9EAF861957DCB8EEE1FB215E4219BA9CC5620A64D619F239B0356F0BB443C417BDFDB4710FE34C300338DCC7A5965C9F232FCC3B0C3679FCFEF2FD9BCE5BAAF0682059F6229F7CE1079FEE8212BE6BA503852C7DAE2667741E9512D1AFD0ADB69E3E811C4F75F1025EFAE94A27E5742B763C318935DDE0E89B4FD6E35B547D2927DB00358C291514CF3BD688C0E80FA74717131880E3480FB28D08291826EB8E106090802E9677B83606F383C58FAD08C404865C01FA471668044346286716DA34D323B76D8BD19659A495BCE8E171834531041992A1811F2C531D4B9593900110E36CC70B09046EB58DE55334439B8BFB098548F1F9E00A01F2366DD2C55015E7DBCEF69686C6A5DBFF19A3F555557831D5A5EE81263828C4D4C38EB0E36A841FFD3E9C9D883FCAC5E5D525792E2FD73C5CC5FB87853CD585E6D18F24D4949FDF7FC1D7AA38F93A47591A21F74798C37BC52AA03553CB02D18BDD2701959ADA42CE3117647DA2EA4406A9A0D4BB8A4BAE57DE87061ED18C5158B0398410A9D92A80C767BC9C3ABD0CD769CDF2AE19E61063BDEEFCC6649568DBF230F6090990832A41C57C3C8C41EA45906A83113934045B8E35CB6CBE86CE7790C92106D09D1B28D2D673F135F815EBEE1A69B6F6F6A5EF6289FEBD1B5C5E50A302874646C7C76CC21AD2DE7E7A9E277EFD63C45DF51D058DBCE69640DE5129FE06D5418B25AC1DBEB9386F18D04DF8AA16B9346523F2FC9C1836EC5784349D309A8101883F002F8FAF023D3A3A3A36946318D66E63D10C8C04C80913F99F8C4A530C3BC0C801141A94492CA6BEA3F92A160C96A25D7D3D3433FFCEB1F413AD1E6C5CBF05FC04C1078E0C1CF7DBEB2AAFA56DD4A2C2D8AF82CF9436218F65CEF5429337CC1CFB13FB95C71105C332CE6CC6A1F438EBA3FF19DCCBAAA94F7793536A70CE36B2986412D2D8FEB5AEAB822192F16ABEA6E559513AC32E081A4AC55A003D408A3850E2FC14204C426163D33CAC543C1862E25F825F8831FCD50B018374F66FA985F0415057D343E4A68F5E2E7557DF0A1876FABA9ADBD55D3169F21C430AF81A1E139FB0D30AAE9BAC7B3C1E50DDCEF546BD87F3615A10B7A8A9A24959A64951AD9DE29B3D3DC598C4139E3FDE016AA6506796EE5CFB74EF28DA76389417645DEF3B9E889228F72D44A022511580010B18D934201281B8C69780E768DE342D1609E5C00896AA08F7A20D06937F03B87FE2FB8EFFECFAE6D5DD9F6078BAC1216CB2843FEE8F8F845CF61F409C9C1D2AF43EF3907709C6335D4AE2745F0EAA491A6D39426F68829C02FB1816FAE8199A18E142A37E41994C8650AAB1642656873BB5CB5FCF901FEFCC0482A954C2562E78D74E2F5E280E7F1804BEEB7CAD4124C7CD81249361653CC04DA927408B173F41F650E302C23915F84DD934FB97BE7CEF5D76FDBF60797621B85D9D01D1C1916ADEA2E1A1D73B90BD92B929DE3F7D27CF897F18999192AC4F077730809F2B79DCC105DBCCAC26F94A88E99A196D5185A43545853E464F723CA660C663A371B8A2B797F25BB10DF188AC5C2C944BCDDD0D32FD4177B9F62B777925503BDF5D65BF01AD2AC12A4CB2C08D1E9439D654D5A9CD4E39FF0DF354DD404E0586BEB8AE0CE7B767DCA9CBA6871F71E4F24E8FCF99E0CF1F1FBA191112A2B2D154D1C2CB528BC0E9FBF40CEED01F8763444239A393D8E087393D9FF80464748631B456E594E4A4989380E5CEA3134EA13D5D44972F3C3573333881508C1ABE2A81C9E610C5BD56016B682A03F10DCCA9FB64EA5D3DF8F4622439191D1FFBCB1B9F1EF11A0A2054C9475510680CD04AB39DF6B7CE5DD7E7A656F9FD9D11B215AB2C3B696910A4EB74BBDAD8EE0B291B63E6B5607712BCCEBF89D9409055B65E3524E9858D2E9DACD9BE8C73FF9B15925C4E7B0121481A0F2B272DA79CF3D15F0AB17ABF7E349F624CE75655AE2F4F50FD2FE4387692A344D0F3D70AF6000104065E21795556659FBD89F6404DA1D9F16155392E5122B96C723575691363E49FAB973246FDA44A963C7C8BF798B78669B5160CD0CF1E711F41AA494204C3933432513BA92B765E8DA9A354C3CDBC8445713B60DAAA3D3E37732F1FF092FF562E301168800C69CE6648AF12E96485F2417A0E5C9056899F3E4AC5C803E7F2E80CCF3145EA3D1A81503D045FA37CEC40703ECDCB91363FE257D91D63ED0E31C131F08C4D615BDBFFF10759EEFCE5233780F1EAF874A4A2ACD59D07260FAA5D028A50CAB438AE140000C693F7C885C75F5E46A5B49F1BD7BCD8018334CE8572F91E2F551D1F65B499F9820B5AACAF4862CF531C1CC30C5CF7B8E9F5FE16B16B39B5D0166E033CAC99CC1CDD9582A1A0E017184938DECE7F83C76CCFC0C2049066E365F91C53DB7D4D1BD3B1A3ED45070A66C4C96CCD1B4A934255872113993307CDDA72EDAD54BA69274BAA343A0C9F474987A7AFBC9EFF3515BEB72668C94B8762A9DA2EA6005050B8A4976B92D776EE6C59F8947E9402C2CB47886F8821198284F3D49BEEBB7919B891BDDBD1B79677EEB0AC50F1E20576191288DD3C7C62879E10285F7BD4BD5F7DE4FF1BE5E72171692ABA4CCCC969AA3E0699AFF6E8405E2020BC81DAA8F5C42C1180E0698C2BB41F65206F1DBDBDBE77509E7350215978726C74699FB7D2C5D9E0F53CDCFB9D8032B91B38FC6A262C652848A176BF1B34D4DA7CF7560342D8598F8181B585D55415E9674AFC78BBA00739F579FCF4FAADB47B92E9FD9C24DA69B9839CE3223401528B6F4F3B6E80B8F923E3040A993272978E38DA4060B28FAFE3EC00E15DF7C0B450EECA758FB715299E97CB5B5143B7B863CE5E5143D7D8AA4FA0692748382CDCD963169AA9432564741973B4B05E8A25F828630BA66CD5C22A347D065750963902515C5A0BE000DF4749B15B8E6AC1C44343342D549599146238932839B8D193FD72C61D1456307DDA1C3EC70AF617662147A1D826C3643C4796657105BEA24C30E534BF4E0671FA43686D6C5EA7C48F589B367998992A2072098A1B0A040CC45603200B65EB1F5F8D025DD2370D9C8A387D71514D23A262CBE1B4925E80C33E5396686CE788C22FC0CAEFA7A52580588D1D67C526005AB823367287AE82079D93E483303176DD840D3478F526A68884AD7ADA7F13D7BA8B0A1910A5A965936056526E66C60A1C4E01867C4311A0D0BD4846CA8C840A5D3A2E885ED008D2EB5450C089581544898664EE1225DA41DAF41B9E150C3B4E710F7B7DBB819E6BEF9D96C74603862FE2241638F0310DF69A45B8C607AA566F4EFF6DB6FA7D5AB57D162753EAE79E2F45911424E2493E2EF1415156411DDC908490B6D80342E972ADE456EDB369B31AA151F55315ADE6C949A5E045F1F8CD0158F5077324E097E10A8834075B51922671513E135CA08E163C997CACA68FC9DB7C9CFE7143636996A90AC6E6B96B835303AA924650592A6C647CDF884B837C3CD760D862508A223388489AC6014E6A2813A5F3108E031169AA282A222BE41BF5595E318D625295686D03963889529B4B28192330B28CFCC1292192F60959A67C61020DBA890F51B79268FC00C9082E1C72F951D626A686A5E34F1B19C619D1F8DC604A3E16F14B1BE9D91FA6CE977B95D74DDA68DC21E4042686C6C9CC627A784BD1065F4408614AA11E7390339B69D50C70F52CBD7BA894AC4BD0EB2CDD2CD0C7181B77D8938A519FABDEC19C816910D6634D7AAD51439DF05BF945C8C4AA2BE42323D8B227E6F452E570E0312251871C050A313533B8E9F3EF7C7A5A5C1E7B6AE5B7B26140A25101CEAEFEF1745AC7651ABCD08F3AA80241B3745EC079794965F955C805D46668E02322511567B5151F12515AC5EE8EDA3B1F109714DB876B68E37A5DE9BC508B8A7B5ABDBA8201814BF2D2B2D215ADE9255848A6B8D8C8E8A84D1E46488A69831705F814050A8CFACE81E3F4F03FFCD7AB6276EB4F4F680C5083D89180DB107A2FB14E13E96A0258F65009ABD121DD22FE21433F09FE0DFDB4DB518D16A2643D3FF9199F43FF6F58D451EBC4BF43E8ED7D6D6A6D6AD5B875031DCC34CDBB88B3380664878D95ECF87DF2D3CA33EC0AD56EA37C92F0B0C00E28339166BF18FB30477F7F68A412E18CD842EE868E0E4C923FD2827ABADAEA2D292E2396224EC9E7576091B62E3BA3559DF4D304274755FA09EBE7E668C09815A858505EC5D046675FE6A6041A8E7FBB89E1102CF33C4CF38C0EF7C80D5C5582A9979DB7644B1D1EB2717F4BFC30619E81BC92036D0C9FECDB6ADD706CEF40C3ED65A5FFD433811EC3E27AC390D5187A8CF8F00A25B459AAEC622395E341800B90FB864056C70B94437B0C559FC30F4A0F75DACC7FD3EAF68F72A0C3C5E7D5E87C5CF5B37C339D0A0AEA67ACEEB411D2070545B5335EB3B20C69A552B69F3C6F5E27328344DE7BACE53D7F90B22BB8841AC258CAA85FC2CCE6171604A1B21446899BF18668607538CE2F9F9992BF81E737306E313A6FE1FE66B87C311B15FC71E85C7ADD27832FDCDF6AE9E6F32AA461841F73145BFBDAABE76FFC30F3F2CBA86CC1F0AD6AF4E2EC0B00230D813FE3EC31C241695B68B957C40F5B1F653A22153794990826CB1CFD6F9A60A60C389A5768C962F6B9EF37A0383438C247D74C76DDBC5EF9CCBF90B3D74F0C83166301FDDFD07B78963907E3083CD10D34CA413A74ED3B1936758674FB06A29A7F2F232DB0A9889FDC3E2679550EFF359FD12F3E40860A8B34783C218A837480E0CD56DD76DA29EFE41D1A0428CA54CA7036CF37CAAB8A8601323413DEA10E7550186D30BC859FA86A3D43F1AB34AB966FAFBDA9FED322FB32CDC0A8EC894E9F76BEB35D9EE129EB98E94E9202E14A0E51A565694D1ADB76EBFA4DC443BBF6C247960ECA1EEDF49F05C46006C03DACF9CED60555328D4405D6D0D55575688A0148CE2D3E73A69626A4A1887B94B3D9F0B15535355393BD11489505FFF00353736D2D66B378B1591C7E3274ED1C1A3C768606884554E29D5E01A56E879766F6072740C657533312E0CD9EEBE5E766D4D54DCBA65B3886B08A35C358363A04761810FE89752A4B4CAF640FAB1C71ED3D5B984CFA2BF59B295E7A40327C7AF485938720AB25811779718C6647EF9E5F4F84FFFDEB65E1745FC8EF3DD343C324AA8046FACAF65B8F7CD967E4BEF8F8D8F8BF3676C86491A65343874F4B8B039AA99A80D75B5B461EDEA59B6017207C7E0CAF1756EBDE986D97107669CF70F1CA6FE8141561B356456A693682A0D4373E3FAB5E2F34956531F1C38449D3D3DCCB025A2025AB599811C96BFE5025EE8E9A64824CAF03F2610A4B2A25C08CBD8F8A460220D55D90810C11B619536159A928381A0DCD5D525F5F6F64AEAC510982158D80AF914406B43017DE6E606B3D45BB6CBB9ADAEDE6496830BCB557294804B33DF2B8EF33225E0B2993D33DBD36999E38F3C74BF80C8C5067B609D9FEB3C2FF65B9A9AA8985DD9B9A41F2FF1C8F193F9CD5BD17C33CD2FBB571877884206037E66A87A6A6AACA7E68606265601336A25B5CE51B21E63D76FEBB59B28E068BA0D4242F281361BD8905CBBAA8DD6AD36577C77FCE429DAFDC65B8C36215ABD6A15DADB66A9639C33C95EC879403F89E6DE74E3B6EB29321D3189AF5B4D273449DC1F5443783AF26C79C0835952C000B36C002367E55F2B140E4DCDEA16BEBAA588D6B6962C592E40CEB4A637DF388CCF241B40D0A5B50C898BF5F7619D1F3EDE2E5E528D05E359011E87EB07E2BE77E060F6DF90E6F678206980D8A3ED27043AE06F54313AB43435B0158ECEEABEACA9768E9D3849070F1FA395ADCBE986EBB638CBEE69556B2B5596970B64C929C9A7F56B56534B73938841BCF2FA1EDAF7DE3EAAAF6FA0FABABA0C03401545A371F1F91A4611B4CB37CBE6156BC8B9265006EA6C626222D45051F45FD8A036508EEEF40266139E44330E4D62ABB9B7AF4F3433C2D800D951B62D65023BB2357C4BCECC3364077924E7D87FC91C2266168A2AA6C4CBE6F8437C6758CDB044353033008CBE3BEEBCF3928C48BC74C02EACFD6BD6AE61E3D16F59FADE0C1378D8E003F1DF79EF03F69F5397E5B242B7F7B044BDF1DB774450A8A5A99156301AB42E6F11845CD5BA42D8063345A56966A0930251EEB9EB8EBC5E0BEEABFB422F7DF1F30FD2239FBD8F3EFFC0BDF4DEFE83F4C6DBEFF2BB52184D7C6CB30C0850282D2EA22646A2543221548628CA45A08BDF2FBC12335914F98BC2D202A173972D5B66300ACC3202ED9E6F58F14652A2EA4E51A9B7BF9F34F64D7523339749A6D05127232B2D69867ACDE209BBDBB7A1CFCCAD2742BE9A63DFB2F6C531A132C4640DF45F7EF043F1308B4DF2F4B19E1D1C1E16FBD75E738D184B684BBDC742019B701F1C3CCCD23C7D49910D9129CDD3960E21E6E3274FB34A39219E0D05252B57B450DB8AE5CC10CB84A72159ADF091750423E62EB8C74DEBD7D14DD75F97B95FFC661B2308D6B31D5DF4B53FFEDF843A02A26EE3F3C00898B19544199F29FDA85F00E30D0C0D9DA92C0EBCCEC751648A1E883A2A899D08A05B5B9BF8A212553430E08B048ACA1CB5FD342B25EACC4A1916C167EAF92D6267DABDE48EBEB1C60158C527B019BEF8F987A875C58A4B48EFA684F4638105DFDAD29CA5F3B3BD833334343C326F902B5FABDC4D1BD6512DC3FEC9D3A769747C8A064746E7BC27F8E760C837DEDA2BD07159738380FEB5AB56329CD7CE0E559FEB10310B7812F014F22D4F3DF762666CC3AA95AD6216924C03494BF783315C1E17D4A1EE53E53FE353232839472F219142E773D55CD8B72A2F50C2169514399E194061E4247BF254A5987EA99E35C043C0B961257BAC811E330CA0CD248274D3A78591B876CD2A7AF0FE5D97D49CE0284B1DF4BFAD13ED38BF9413CB80CFEC2CFA58548093CF1B1B1FA37DEFEEA3C2E2120A85C3E2A755EC2A6ED9B8818DBAB3D43B382CBC88DCCB222671FAAC49E0675E7849C435D6B4B5B2E1B78AD6AF5D253292355555E2BD2C6FCE1F8B787BDFFBF4EA1B6F0AC62C2808B2A02C6364F392D93ADE34FA64967EDD4A238D8E8EBC5259E8EF822D8A318D18BD1C0C06B3E2008643FA933603280AC6A95BC060386BF1B21311B3096F6446F6648DF0C987008E6C9F64253DBEFCE82326BC2ED2EA47252FFC78117CE11709DDABE4E92938CE96337CEFB9CACEF336C7CE3904DD1B8A4629C16A0B317F7C0DC8BED0DD4DEDC78F5379F58C6403829BD805839D80D9439C0BD4CFDEF7F7D35BEFBE27DE1D8C41DC37C2CBF906E6A244EDAFFFDB7FB7549044D76DBE866D81804016CD32FAB09FD6C4542A140A8562D5C5C1EF230C811E044C7C0C3211238CF2A980B405FF302BC3B2AAC6CCFEFB46F63466F9243F0FF16DDDAF6772FC0E06D01C0C60CC483FE613BEC0440CF18B5AC330E9F12EBC08E558FBC92C88CE477C185707D8F55A483C215F0014888278C2D0D028AB2FC36A506D3ECF2BBF79838606FAC5EC258816C223629F9BFEED571EA5C3478E90918A53BFF020A6F3F217040891C48EAE6E7AF617BF126E1B42CA602C4411E1C9FCCDDFFD8426A7CC78FF32F610CAD8BE41EC410C69B7023E68258FD15C78C2E8F4F48FFC4501B49D01E7253176C0592CAADAFD721D4C603380F4DE9ED75E381E287A875DB202FE034126AC8F4FF760DE633E5DB16B1474F37AD21CD1E4993C7CCE01610819928C56E85EBFCF5D10F4078BD09F35A53D7CEAF459FF91A3EDB49C75F8268672EF3C8C00E91AB32057E8FF3C717C58DE078E1C15DB4B5960906EBF712B1D387890CE9E3945C5651582A1B080081114A656550BBB06526FF6304CD2134F3E4DC78E1FA3652BDA281C8D2EAA4A79FFA1236CF91F124C56C296FEB0656B209FB16AE5722A455654B2665ED34DE98F24CD51D2232323BD6585FEE731ACDDA2691A43CE1F7EF8E159E960A70AC8103312898CF38A27F4592B8641BBACDF658A542ED57D42F52EBF54A0BDDBAD06FC15E5E5555FF9B75FDF35393DEDD7AC526FBC8077D91DDAB07E8DD0AF41D699F9C6061C35B35C99A5A2AC7496AB06B72B66F9CC97B280715E637FFCDD77F70A624EB12423E0F2D95D9F61D83F467855C313532CA1A1CC4B840FDF3F324685E555AC8BC72E32CC6CFE05A9675B70D0301BDE85DBE3162824026FAC02927A4A14B9A4D22943D1D3FF972CBBD1702A8641233E9F4FC328636751889A1304B2C533E9F89CB45502229722C260AE4EE25F1213A02B873592D75B5C5C5CF8A57FFDD53B8A8BCB5A4A8A0A6822141206130CAC383FD09EB7DEA55FBDFA1B114943046E595383F0B18B8B0AA9837DE9692B0B664A876F16A39C3DD79931CA2EAD5ED1FC36C6045D7FCDE64C9E046AEBD0C14374E4E85131C39A614DB409C6B869DB752298D5C9F7D7D9DDC3DF49667465BEBF295DCC16914496B2A2AC5CC0BF09FDA6D1A7B1DE1F8F98CFC8D2FF4E45D077C2A25B1C7D0C31450EA4DFD1E8CA6400BB075E0E683B5542D221F54A26457D790502125BA418C9EBC658BE929212C5EBF36A631363343834486E975BC4DC910646260FC59B80D6C1A11161BDFFEAD598805FE8E4FB767E3A735140F143F7EF9A1517C07AA94B390A624A8A583FF78AD62F2227611526E29ECEF70F92AFA084EF3549B6D501DD3DC8F6404747279555568AE8DC45A39917C9B83ABF42CC60357B0D0D6C87D8011F19B614A03F1A16D21F8E4492255EF75F22F18826D268208DDE46A8089AAF24CC703081CD00B2651CDA129FBB5ED282C91A21FD2CF9EECACA4AC4A653AA8C962969610C41F261196BA9345DBBE51ADA71CB8DB46FFF417A9B8F4DF377A22C9C5758FD46C6402BA0473E7BBF59B9632D309890DD5B80619FF7206209EB99119F7BEE7951D8E1F1CE84C411D089C763E6C00CD1CDD46DA102D189536758DD844D14EBEECDEFD14A8B864C5AB7B64DE41C0A8201F10E4CEBDF34BA2726CD7100A189897F2CF6BBC7F96B58FEF0E8D2E878962F99A63A7464A65ECCC10C56C37AD2E780FBCB620074EA424B73560129E827D12FC276112DAF21CDFAEDB77BDF1355BB2B19F21FFB3FFE03A25A6C71EFA1DD7B7E4B306E019508AA7CFA53B765A2666602262EB26B0B50457352077AF7F95FBC444986EE7822452E8F46417EF93BEFB89D0EB27D82D87F1FFBFCB975B298BF4856DDA4C87671AB96F5C2F2CFC374F1635515E5BC565053439D302504F185DFAFD1C0C490E89036363E3E52E8551F47A349BC026612510F88AE66F92A83D53C71EDCC8992E4E8DCB0903B5CC4C2EE081800192E31AC19BD735E7DE5D72FDFB47D47414945D96D8383C3C509DDD925441711BE03AC6BDDAA4BA45CBFF2858785A4353735B2EFBC6A96C176F2D4D9B9A7915BE05DC38A87D4CB4A8A7C6C57A012C9C3EAE985175FA243870F5343530B91359C0C29621867D3E1693A74A49D7DF6D06555433917B884AB56AE10E164B7353FA2EDF7636C04EC1B315E221AFD9EEE96316D4C042D6BD1CD8C577DAE54FA3C55C1995FE432C4652F77DE79A784797ACACBCB710FA20D1B3876DF3B6FA15DEA51B609EA56ADDDB0633A1A6B1E181E519DA8301D89D0B32FFD9A9E7CEE45E11EDEC5920F1709C691FDA06758F762BCDF828DAB798E89F671960E4739D8E8C808155754893C88CBAA4FBCFEDA4DD471F61CFBFC87A9A2A67E492BA4DA98F88810227328205FD232E5F9DDBDFD96E1377AD8E7920EC2ED630680EE87FD2662FEBC5ECAC4917332C4922CE87983F668E88F834005263CB2DC4D997596F6EEDB6FFE1CAEE78A956DEB3CC1F2CD3D7D8325985E3D933BC0D83996B27F79EA19FA879F3E2E2CFFFB76DE459BAF59CFD677F292010AC406C2E04577759FA78ECEEE59C36C4BCBCA1C1DC54C94D9BBEF03EAEA38C70C1A254DF18A1A3F5A00E4CF678B00592AD9EA47B818255EB6D1876C5F171BC4313136329E76E989BFE49B0FA1A53C7A1BF25643D4EF6285342A5DA5053705AB14B5693054C0B50C611396B1693344216F03674F9F7A1FA8E0F5FB8B562C5B7ED3F854B8E5426F9F2BAB59143F20F4F5FFF78FFF4C9FBFFF5EAAAAAAA04AD697019F6FD1F78694F1D98E0E7AF9955768D9F2564168BC78C0AFD783F4F800F50F0DCFFA1D6A048ACB2BA9B0D49C1A2E63F52FD06ACA87AF60C6D6D615B46E4D1B0502BE8C3D81F73731394ABDECDD988521633F75933184B6F27CFF70FB52E8309A6F30C84782017053686ED4DEDE8EC689500170E445BB34F4C487FF8AA951785B0093016B8CE1E24CFBB15FF0716F734D5DABE4F65D7BAEABBBCC46055B45E0252321741ED53B88A0B1AB585E5E2A6A15164289483422BC87EABA0651C983702E3C0C620FE5E4C90EEABE70815DBBAA0CC1107740E46FD4D14C6AC1DA729ED396373752154BFFCAE5CBCDE49928F1C2ECA0713A7EF28C55BA36D1EB32528FEBE6E451114C2481F67374B9FD01AEF402EEC4FCF6A5A5A568A78A19300C87F4C38A0DF036C844050314609FBFC3EA1F1AE8434CF554B15B0DB6AC6DDB36303ABEE25CE7798F2D7533E9668D864646D9521F1286545D4D0D13D437AFF421955A525C9C691E895AFF8EAE0E9A189FA4404161265175EDA68DD4505743EFECDD4BB53595EC960E2EDAD59CEBCBC2C2A02885BB61EB1647899726B27D308831329A055DD3A2A1BF900C639255E9344B7E1C6DE76EBCF1C6AC90EF479201EC001446B1DA7187C2C242F43F4AB0FEC2CC18982CC18FD6AE203C18811F120C60A3829FCF8D0CF576BFCAB2FDE6356D2DCD4952AE75B9DC95F97A0AA2AFC0C93367484B6B22D75E59592E2A95164AB0E2A252F65A8A852760A7B121F5BF796D37192862F1F917657348F3149BAC686916DE4DA5B037B4CCAC229DE7BB44032B11E7181B7D921FAE9BEF2764E6BA6229D84FB921DF8F24033899C01AC56A8C8D8D69838383E89A898ED92E7EF02812507C4EC86206C4780B2C2408A24B27B6608648681221EBEEE282C083B144B252CB493F3BD3D0A8EB478816D5B928A5425E7DE1649A3986EC5DB0B88CE289B8E929684B336711D2C240A06DA220C42EF4D04580ECF0B16326F12727FB8D64F4097E479356C83781269368526DA77B3FF20CE060028C55036C61AE5BFDBDF7DED31A1A1AF030E8992F5C44F4DBE73564D906A0580068809599050623FAD915ECFEF54B8FD7D5D5D5B7AE5E77239BC2D50C9352A638C58AE1DB0C811CC2E163ED42C28A8B0BA8B1B69E0241FFA20D5AE19BEBFA9C528D733EB5FD162A08FA442592ADBFF33118FBED545E564A9FBAF516F260C22ECBE8C3A45D6FBFFBBE882E62FAC2C8E4D85F329C4D604E21BC1F4C1B87FEC573057D3EB20CE07431315CC99A94016DD2E58A8A0A942FA5311D2A381C63DF59CF611A95B0E53206A016F87311BFA462BE4C31A2C23D3D3DC9DEDEDE41268C6FDDC64DD7F9038195E393939E395BCEF23A3C324E0383C3620411EAEB9BEAEB44C5CE522C88DE1DDCBF8F9E79FA19FA4FDFFE8E885F6084723EE84709FBEA95ADB46259B34014BBC40B95CB6356DB9789F1B16798F85DFCCC93FC3ED0C15C483FA3A7B198F1131F1906C813921661686BBA163171039A2BA3FB05225C984A8591018C803A37CCAD03AF010811618980DA280232B071E93FF8C17B6FF2FEBEA69696A6F2AABA6B2743D3A54832E5670433F288FA82EE9E5E61ECD5D65553737DBDC8C12F228793B540E5D45655D1CDB77D8A3E387058246DF25D0465654146A03B6FBBD54AF698BABFAFBF47201596E9E9D040727AF2097EA649CC21C8CF2BA4FFCC9933101A6309670DBBFA8C60C3273E433DA0EF3EA66371AA07CB6D84E720B656F50B18A2C87223A12AFCE73B3AE2DD9D9D5D3E9F3FD8DCDAB62DA9E94DE31393EAC55001F0DBD57541349102F48240CD8DF554182C20459D27D093338803892B973760CE6B94E774E4312AD85D45E20B65EC8240CC0409468A975FDF630E184DA7F5D0E8F0F7791F319329FE3E8A994630BDED8E1D3BC0008B7ACF1F5906984B3D90391D7A967AB052D6E8B69DC45C3B60000496201D96912856CB9BF04722E1F88923075F4542AFBEB965955A105C373A3659A4EBA92C14C8B7F6F6F69BF105AB54AE910D488C072C62D7509AA33C66212001266F6095033775F386F559DFBDF2FA1B9951BF93E363CFB1A3D7C5520FE917757EC8F5DB68B9E4CDA23F0EEA01FB56F3644CCE809EFCF006F0C6420E4FA1C01954B23C0A5F4F57C761FE7C42C53CF095355B929AD1343A0E5BE1222DEA1DB3979E3E738EDA4F9E160C01431065E835D5D5A270C59E0574214B79A93976E1EE3B6ECF3A8EB105A7F86F600987C3835323834F32F127F8EFC12B8AF273A76A6B6B752BD6BFB4F3067E4C180188A041F73537378BD93CD918C2546D0209602C324CDA8C10743202C2CC967AF0A51289F860CF790C9C70F9BDFED24045D9A6702C5E37323AE69ACB4E70AE2273C87A1D163E565BAAC10888E5A34A1961699470E516AB62E816023E5BB76CA2CAF2B2CCF189C949DAFDC69B621FD3D24D0CF7A3D1C3383338E61016D93E86FE746565A57E2903673FB60C30172220B7505D5DAD031231DB5671717192A50653B8000DC28E3882CD08014B35081B0188C0E77863D1703C1E8BA0FA52AD292EAA52BC818DE3A1E9EAE1915145CBC30473BD781CC79070ACF91634BA40887987359AF857BB5F1759CCEB375F234AC35FF8D52B62A08B19F019FB453C1281D53F6147FC3097E0A542FFEF0403E46104049430955B861158DA30BA49CCEE8D383910017104CC1DC4FB3633046D44B0ED04D86408404D4F4DC4A5D0643FCBACDA5A575517376835DB0B95C363E36EFD22FD1316B2A0C52D0A453128166313CF32F131B0E5674F3D2B3C8EED166344A391E1D1819E27F8DEC601FD30FC50E685221A867FC3F2FBE9F796012EC60896D720E6E8999E9E4E5A53B062223FA8061FC3A998410C2860E51D0296AAB06716C3EA41EBB5E9A9F14EFEEE4291CB9083950C2FA4AE8E2612B59353E160341E932FE7DE31540B452CF63A323A618DC3D4F5E1BE0BFFB76DF5236906AB1F851EF0F931A1D442227EBF170C908F11F2790D988D132F1173FAF27E9899414C1FC7D225A41FE8603181B011C004B0136C54007ACB12C5BD941AF5F914B5CC5724A7A9A45297D515D178B27A626A3AC8B0BFA84284742A110E0602DE4834A6A29C0C891E14A02663B15F45A7A73B6112C0AB61433386546F4747C7A27DFEDF1B06B898D78097068F01337825128994553429BC063ECD2D2681B212501632088FC1CA4C62608C0FE758F90920831827A190965034ADBFC8454A7145814C352515D1A4D11889C72B63F164301E4FBA99A84A5E55904A6B83E73B7F415A3A595DE8F5A68B0B6F18199FAC1B1E1A09C5278705F4A35806412E24CA3043C8A5F8FCBF770C308FFB28F5F5F5E9A848665580D9BB14967C154125188DBC0581BD203A98C162029FA51A7C3622582B5001E7BBC010187329A552719F447D3E9F2A1356E625C3905C494D2BD449AE481B465952D30BD84C09F4F59C3F994EA726851BA7A5438A967EAAA6D033191D1F44CA0F469FF0F9F9FAB0633031F565197EBF770C305774D1A91E6C54884422628E5F865FA41DDC9817D092769BD85E8BF8BE9C7D9F652BE05C0CA0C1B03B4C4D2BE627C616CDD73DAA8C3A877E0953AB126B0E9F9A8C4F4DC09AB70B38B0454413441F65E2C3ED0B21BC8D0ADF8181812581FEDF4B0658082AD84623FA2D63381526A0043230F4BA603C82B820321FF33041BC963AF0F167AF850C5EDB68247318DD0C2A481256CC3422329F988BD8523F5831DD3CCAE3309124BC16F8FAA3FC19C61FCABC924343434B06FDBFF70C301F2A80194A4A4AA49E9E1E94A8C180C47CBF2A54057F467008FB2ECB28F4D82AC3B60D2CB5E0B266167559CC0054C02A63726ACC180E2FCF927884B1050AF0F19495DC42954FC84EF6A07C7EA9A0FF1306584084D1A92290164670098359D166054CC116B9906AABCF0208ECB6A4DDC58483FA0003B82C467159E7BA2C14C082C921A31602601FD28FBF9B468C1F8C81D437133E59505070D93EFF270C7069A820540460D74686CECE4EC9361E09D316B0FDC82EA5C2B6038C48317816C466220AC312EFD966141C2391F637090D66C28A29E3EDFEBDF87B289567DD0FA947C0278D78FF42AB7C3E61802BCB0C86534DB0CD206182EAE9E969CC580A74909911C4E0598FC7235B0C01E58E55188418168F1032660A071380D870ED58CF635671C3EFF78BFA48B44AC00CE336F1AFCAECE19F2C0B620671CCC910EC4548555555343636060F4362699620F6600EECE37CB8735830B53C0670B091872173E26FB0FD616040677373B371A588FF09032C11335C8C21E05E82291821A8A5A5453086F3770D0D0DFA9933673018C5D8BA756BE69AF6355003615CC1C91B3F61802BCF10646F77EDDA95F7B788E7E7127BA975FD5CCBFF0F7AA46003BDDAB0A30000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (42,1,'IP_PBX_(24)',decode('89504E470D0A1A0A0000000D4948445200000018000000160806000000DA7D5C880000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000005AE4944415448899D95794CD36718C7D10D9C9B66997FCCBF66CC2E991ACD260A0C127153608988504B951B2688DC3D38CAD196ABB450AEB2022D052C57A1E52A1410142B97A82071611E88782128BA2563C6C40DE877EF8F8811C236B25FF2CD2FBFE47D7F9FE7FBBCCFF3BC262626266B8936127D41B473056D23FA98C81480C97F893C6B967D9B7CB875DBCE5C0B2BDB7BFBBF3F38E9E4EC3279C2C37B3220286892C5624DF279BC8722B1B89FACDBBC1A80AEC3707C39E033C7C347C6CAAA6A50A7D3A3F342370606AFE1C6ED514C3C9EC4EF337FA0B7DB3047D6ED5A1EA99D9DDDBB7BF6EC317D3BEA95005F1DB277BC1F2F10C12F2C05C1EC34B0B86988E30B919C928E1A7535EAD415F364DDDEC54DD44FD56AB545FFC080ECBCC1D05054547C8CC03650E95E11E04A67DC2F5496A152AD814EDF860BDD3D18BC368CD1D1514C4D4DA1C7D04539D84B455AAD69709C999919FE65F4AE51DBD2818AFA16D4B7B4A1A246FB549C9B2F2B2AADE452A025003A83F12035331FA7A324602564232E390729A25C6466E5A1A5B919BAFA5ACA8105959288A8B80AB654F022A28D3557DDA041C1991A88652548CB2D42F64F7208445946661C5F4BAD5D04987B7AFBDCCD931540595A068DB60E6DEDEDE8EDEDC1D0D0206EDFBA85165D23E5C08272E0EEEEFEA92055DC2E69CA34AACFFACD25948B202BA9824255050E9737EB7D2AE40501CCD8D8D86C7CE3C0CFCFEF5176E11930F9058817CA912A2946567E090AE5A5E8E9E985BEA961C1C1EB0D6B77ECD8B1299CC939AED3EBEF8D8C8DCE6BEB1A670F3AD1661D69EE46678657BF9393EB374B1CF80704DCC9CAC9854C26834AA58256AB21A9D1A1A3BD0DDD06038AE585738B00A23502818082985959596D552814E28B3DBDD3BBADED262C6D0F045A5A5A6EA6D3E9EFBC7D06DB8382831FE5C92BC04E922351A48430A714B90565902B55E8BF3480367DF3BCA9A9E93E8D46B3A152ADF6529695D3A552E9BAF0F0F0750E0E0E9BACADADCD6D6D6DB790F7FA951ACDDCCBC76B2C36261A71D11CA42625422C4C4176463AF2242214C9A488E1B0E73224928C4EC3C55FF567CF4171A61219B9B2DF1232652F7D85D9734C816832949BDC18C08E7621D19B510E57EDA0AFFF125A5BF5C6A1E1EBF3DDFD03C894168093988CBCE272D065C5783F29199B1378B04C15832EC947B030C718C84E1CA752F9E69019C74F8C725891E04486239E38E1C77391CC4B442A9F87A202196EDEBA8DE19F475053DF84F46C293A0C3DE8EAB90445A31E61A5E57048CFC4AEA85858A40A112E2FC3291677D6FA80E37E2A5D0B0EFCFC4FAEE840595681B1BBE3181BBF87BECB57515DD788EB2337708DC02626A7303B3F8F274FA73172E326CE765D8482345D85AE1D6E7E81F00F651A3D4F856451802D2EAEC7AE44443211191901369B034E5414A288FAFAFAF074FA19EE10482D89FED5AB57683DD7056579350A4A542824D157691B317075104FA69F2FC06A1A9AE11B4C32919C0EEF003635A14DD65BEFFFCE659F8D5DFE6E0BEB92ED5F5B947CBE7D7709C3CBB7A3A1B9159D24B2B6CEF318BFFF0057868651DBD8BC00C82B2C8654AE84205D8293616C780686223C2601FE214CC889F3600E574D9D83C9EB3CBD4739A12A8A92999999794A9A5044AAE54F39A998BE81AB0B696A3F77011A0250A96B490A8B17460333361141AC18780484E088BB2F54D51AA465E5BD0C0C0C5CB83FFE71AE53E5E6E1E16113C58D2B0D61C73C53914158D7D442003AF2730584644E49A48588E6A5E03401500EE25344D0779C473833E687C57EF8D7CB83AA676A3433188C2F23222233D332B21E46727973115C1E35D4C027D513CD4F815F70047E0C65E1E1C4634427265D5ED2C9ABB9A5A85C52206767E74F68349A67C0E9904E9AA7FFF36F0F1DFE6BBB951DAC0F1E46AC20CD982496CC9261F8D1924E5E25E0CD2D4645676F6FFF0101ED3A7AF4288D28F6088DDEE2EAE696EBE6E3E3BCD860FF0BB0DC1505A3A6665858D83ACAE1DB2362517F034B66C609ECE617C80000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (43,1,'IP_PBX_(48)',decode('89504E470D0A1A0A0000000D49484452000000300000002C080600000023163B670000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000010CD4944415468DEBD597B705CE5753FF7BDEF5DED6A57AB9564C9B265640B0B18C731B101DBA549A96B120782834361E29A4E9CD04CC80C0492D000D3061A98E91F506813320D0CA450D3695AEC0C01031636D81023DB922D4BB6852D59EFDD9576B5EFBD7B1FFD7D572B4B9665F328E1CE9CF9EE63F7BBE7F13BE7FCBEEF72A669123B388EE3310890E9F1931CC62CD1CDE9493F878363EF82F24C611BC4057196CFF98FF3FFB2D21A240F4943729012E6353E2B25EFBDF779E7E38FDF9E9DEF9958F6BCCD5951D1180CD76F1378AA9004C12ECB92202B3229B2C4C9A24C922C912CCB1091D8B588519224531224D366934B2E973B036BBA7EFE0F0FBF84F9129857FDAC22F1C57555BFC5B0695E03CA9E760A82BC3C5815FA81034A3B1D36B229367260B4DBED645714B2D915B2DB706E63CF601844C67D59826122465CE70A85E398ABAD1C0D1615FDB33080E72E8EE86903EC22E9952D8B1A68CD756B2DE5149929A958A32CCB33F7D8F59CE74C54B548BB76EDF2622E3F64A80CAF8B630FC7ECEB4B454B10F84B1AC026C24F0487CFEB218EFB78C09F7BB8DC6E12384EC1A972A9FC292BCEB5B4B4881E8F475055950B8542FAFAF5EBF5B6B636A36CCB79C6081F1181729C60823875B9EF708C8E9D8AE2A1064D209C86B2A443549CEBD63D810937F5EC178FFC9C16D42FB0A254B68FBB94E23E9F4F29140AAE9B6EBA6969636353D30B2F3CB7671CC78A152BF26EB75BC54FE735E49206F03CAF0D8D8C9256CC93471468FD650C3A0CE353F846C29222B17B12CE314A56129388DF9EE8EAA0DE13C749D3CCC2C5148772029456B66FDFBE70D5AA55DFF2FA2A3649B2DC9CCF17E8BE9F3C901B1D1D69EBEF1F78E93F9E7FF6F5D6D6D60CE66686B01C325F79EDED8F3680E339AEC2EBA5FAC54BA0DC34C6CB98670A2B5219EF30603A07CA06B1E725AD44870F75087395BFE5965BF82D5BB60456AE5CB9D9EBF5DE2A8AD2970AC5223F3C1AA59E9E5ECA17550AF9BD0E5F857F8362736CB8E7FE9F8E8F4F4CBC323C38F45B18FCBECD662B1A86CEA6E2E68BC83903449E177D1E3779BCBEA9A4FD8449CCEEB51FFC409E1B009B37B8C410E467AA23912FC147FC3128DDDB3740C9549A345D275DD768241A87334472B14AA74801A7D3B5B5A67EC1D6BFF9EEF74FA753A91DA9C9A41BD093608336175A33101278931784FF570E1874BE83186C8C52D1FFC1E18E355DDDDDB1C492A4C7191194E5EA6A282C91815EA74DA944A94C96E2E3098604B2B35E23092C828D92A2DC7FB2F714FDC5576F7E67ED576E7CF6F8E1F77EC5A0356D843893E9BC9ECFE56874B09F1607446AA9F6A17995EBBC5C16E483A248D63DA92C228C4EC4C62836364CB96CBE38DBFB800007C858D1B3D9EC412AE4A92B76C2483674717F357E359719A9470474320C83583F95914F79B544495525970DCD12B58C3D8318BA69289541FFCF2626269E2BF719CB809972C793A9381CF00AFEC4B1A79CE50D4160224051D14A58A630AB56EC1ECB4EDDD0817F0D9ED4A864E8B3E983190C068DEEA3877AC68687BE07000F35AB0D545768E26B07FCB87CCF58DAB4930A4AC62A087895F56EAFDB410BC295E4049C98F26323A399783C9E1104B155D3F40AE4846DDDBA75FC3C10E2443651A4AEFE53E7404FCF49DB6C08B1BA8E9765DBDF7BF7771D1FBCDF7EFD0D1BBE77F5D2E5DF34F8882D573CCABF5DC8507FB8CD5CF5E15738874D217F95DF7204AB4CC3C323E6C953A73487CBEDB2E13D2A228368755DBC8CB236543EEF3C95A03303297437C312918D28CD126F4EDDE34CDC434EF06C34E9AEEF7E87AA23D554D44A73BBABC138D1E2C58B138886FAFAEF773E72ACF3C8CE8D1B6FFCE1C2E6BF5EFD35BB8E8CC2CCB26E44A363A09402178BC668F75B7BF4926E0A70B6C414370D339988477F79BAE7D8AF8B38366CD860CC1301A0C1D02C4CD687ED541DB097891BC3BA082FF32401467239C124519CEA0900AA0DDE8B45C7289DCA96E67A68DA88DADA5A1DF82D0EF4F5A5FFF55F9E3C73CD75D75DBFE9EB37DDD5505F5BEF88D8F91557B5D28BFFF95FDA732FBE2C28369BC0E6E44A6AA990CDBC9A880D3D65944ABDC8B938BA77E1A1871E321F7CF0C1B911100DAF2F48C978D45290855406335018F384E2122FC1E325E2759E4A682FAA6E52DAD4510A0DEAEBEBA54251A39C5A2CCDD76C58C52837A53CCA61098AE4DFD9BB77F2DD7DFB0E6EDBB6EDB68D37DE786B85CFEB1225B1A86A9A932FB1F7940E6527D24F9572B90FF0FB31E443BAA1A1A1F8F2CB2F1BF3965193D3C57C364D55B50B3E1599C3CBE9178F3FAECC479B1E7EF8E1E926C40CD1901799743A0D1AA4A69F79E6992777EEDCB9FBBEFBEEBB13956899A616C775ADF09B82A1EE061A06F1EE4426932974757569EDEDED17D08B994E6C0A3C6B2A2C11A21305CAE6B2800E6F414442F591D9392A0FBBC7CA9D88FB2C523268E0CA955F20AFE22543D3AC46E27038B88D1B374A8F3DF6981D4AD8E041FED1471F3540575484DFA2DA50A808C5F47C3EAF2693C9C9BBEFBEFB744D4D4DB58B53C781F971E8398ECE9D41EE94E67A7D5E03E01A9D79911D89944A237118C093558BAD64856AD0D74A5A5160C9CB59F7D8F51557B45AB993CDE47444856F6A6A723736367A03A1D02A97C77B3DAAAB472B6946A190EF8E8E445FD1B47C372375681A1582A6A9289345E4C740341A1D04C64B28D105703B15554CFB2842C795E96F4DF3B2CB6FDEB6EDCEC7D2897196D01624041EF5195E0705200E9E9E691A26B105A389DECB6AB7C994CF15A8776078707FDB9B3FBAE38E3BE46BD6ADBF5F14A4E6624925157CA788E694484ED2782281559CF0EB54263F5A3085BFC74C2AAC1F3574BD0308785D32736DE02323800E8B94CA96AC485806BD79D70CB30C587ACB6DDFBAFD9FC2E8039F2607F2851CFDE481876236497C61CBEDB77F0749E7B0142F1B303E91A0D1588C29C19AE1F122C94D054397F66B45AA856BC27088006FA01492AE95727A493D89A8BEE612B917EDA23180C8E40F1C38A0EED8B1E3BC559E508691A73250D9DAD272F9F5DE8A0A464DA76CC3682D99AD912B2F76B899454FF984955411D2D171D8FCC6E6CD5FC0B953B7889A6E75EAD37DFD144F24D0A4746B1E9BD3138053C437B53CBD5BCAD30934B44E70AD5160B4C0F20BF5D9A3D8C376C57E8DC1CBDB3325FAFEC8447A93A8D8CD2307DF3B8422304F153239639ACCBD7F344EDDBDF129E266B51AAD4CEC58F39A2672BA45E44434B59F3DF06352EC36DA78E3571D5843F3ACF94C1FA0C6148DC7A9F3580F5587ABE8CAD656926C767EA858A0F7D43C29C8253E9D2173629CC6C0AD26143B9D04ADB7811507B0C8AA02941BED5E072270E5F040DF3D98F2DFE184D20564CEE44C4D5535FAB0FB28F9E1A5B5CD2C07C07B041979A060C133C57D4039304E458465012A0BFD7ED72B584BAF239FD7CB33AC4F1FC9548ACEF40F80D398B4FEBAD5140E0589971D16C709A03ADC46D57406D03B0D0E5844DFE141B1CDC94920BF482518AD2E6EA231F8F44A9B9D24F41D4357398F272C40F7D2051100DDE3585206AA2256E7B53AB03CC53C0581B151618A81A2A909D64E8460113AF044C2EA8AB020015F99513E9BCD51FFC0203941101B16D4512858494B973459C42F3E9E246F22499598C7E4FCC44516D01822D20F19860CA099B2B582D366A32ABC3B8039C6913FC542A1FEA55DAFBF964AA536B0FD2724B731630069AC6292CF1FF858648E19C6A280D2486EB7E73CE59992A7FBFBC98F7C0A550628080904FC545713B19E7BB1706A6E5A481EB79B8647C6682299A0607C9CAAB01E305C2E12E1C409ACF04631B713F987164D2740D9510484EA70F8DA33631309ADA4EF4583FCF28C01067FAE467D9C058D0432B7A0A692EEBDE7877389031D3DDE4DD5A12A8A44C2140A0468143C69EF3BFBA9D3E7A3EAAA1021516859F312DC8F51B82A4891EA2AEA3B3B407F76ED1A9A048CFE78E80815A2196A451E70802883DC646A12954EA5E5CB16101AA0E875BB57320489E5850153BF9000FE6C836769111634CD619F05A5A9758068F505365AD0413EA07ED3D557AF26467567E3FED4E93EF243D1D6CB975A9E1F8392A7B18464FD62742C6AC18A45EBB53D6D54571DA186FA3A0AF8FD042E64FD5F45D9FDF2BA6BF17B93BA7B4ED2C90FCFA08225E90CE658BD6AA5C599ED98371A8DFDD2EFF0D1B401454E10933A12763096B4967ACC6A560659E9631C5D05C10239B4943540397EB0FD4E60DF773EEEB1A21B1A1EA16F6FF9267900932860D171ECF8057B4991709846C6C6686874848E76F7205FB2AC0050D3A285D48C3C7103466C9E96A59759F2E3877E6E45290443D9FB6313E3F14535C17F3E72E4882ED2D4E66C8E13A82F1E8B756A5AC9017C49E88AFCB411258DD5F412B12AA51B1AE7B43BC46030146693CD56AC13D059B27891A57C064AB51FE9BCA0F533E526C663804381352C4AA5D3D4725913A27496DEDAFB2EBDFAC61ECB790B1199E5CB965ACE6BEF38469B36DE80EE6F90AAA966319FBBCB5E1548328E74CE80DE9E9E4EC8CDE5AD4107CDBFC5CE5556563A9E78EAE97F449286DF68DB4B3E4421025CBBDD2E2B21D7AE596D45EB70E751CB789AB3D505E24671F486DAEAB0F5FBAA6010D188523A9B3BF753A6F4B1EE1374A8E3A805A9B5D7AC012CBD9404C4CF9E1DD85F13F0B6A11215592FE0CB0D81ED0DA42083906EC81148FB5C013B6C07093BA9D81CFE7E245D2818A03064370C397EE2247DE36B1BA9BEB6062FEF4175522FD88A645B973A946B69BE8C26D359E291532934B1D168FC82AD3CAE6C756D2442575DD1427634CAB383C3259FC7711788DE245BD49C5BD49B5307637E05481A929C4FD851575737B9FBD55D0FB81DCA814C3A9BDFDDB6CFAA1C0EBC80ED5CF7F6F511EE5F807B563AD38015565BD4036319FC4228AD603F9672F36D484A289F5FDFF897E443998E239F4647869ED072B981279E78E2DCD6FDC7F988317BA78D71FD4924DDFB07F6ED7DECC8C1FD3FB5F3FA6F1AEB2283BBDF7ADBB875EB763AF0C74394621D75CE7F47464741B7B3A8385EE488978228AFE3A82E6CEB9C3BFF25651E0636B0E68B48EC46CAA0381CEAE81CF0D9E57FC3BBD3D35B2A53EB984FFE0D82DBBA75AB0263DCF86F0009570BAC2FC4FDBA4038F2E7CBAFB8F2EAC9C914C776166CAC93862A2D4F328FB38A552882262047D2E5BACEF817BB5F2C0BE351EC9A25FBFD77FF9D950F2FFDEE7FF4E1FED39B249EDFFBE4934FA667D36A9E3EF9613EFBECB3C5FAFAFA7174E80FB1A23A080376C3A03FC447867EB577F7EB8FE8C5FC41C0221B43D8DF3F7888DE787B1FF57E789A8AA0D58C3BB143661F4B1CF699EA6457ACFE62F11BF49A6FDFB69942307EFFC10F686870E8795484C3A3A3A3D9B96B02EE33F80AC4AD5FBF5EC0D2CF066E540943EA119546161130C8C6506DFD75A974AE6E381A1573B93C388E66F5818A0A1FB960007B7B8191B97284D878E5F265E8337F4B070EB6D37FFFEFAE915C227A031C759239EE4F61C0B99DE8152B5688CDCDCD7628E283112178BB01F33760ACF287AA5B414A569C1D1AF6C7E2135C2E9F9F8200B0EE72BAC09B6090CB4155A016575CDE02235AE80F6FB61903BD3D5BB082DBFDF4D34F276763FF333760F69C9B376F6638918BC5A20784308077D4E27A21C608ECAC20D9715551D317E50AAA1F154C614D6F5A8FEBD75E630E0E8D587A35D454BF9C9E18FB514343C32098A736EFCBFE549F74594450ABB9AEAE2E40270756EDF02157AA108D08C66A3CAEC4BB3DB876283657555ED7EA6050C8E37426782DBF87B73BAB39B5F0783A9DEEDEB97367FE628B7BEE73FA266DE509925E413374005EAC82F9604410C660FDC4796188BBBC8B3786F32CC628AA584F63636382F1FE8B4EFC397E54A7F257166210733A9D12FAA20DC969C7B98C47320CE3C0785917646D5C8DC562D93D7BF668979CF3F334603E63D8AE1D6066F53228CCA19A993B76EC98F6F8472AF77F85959895F5D1768B0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (44,1,'IP_PBX_(64)',decode('89504E470D0A1A0A0000000D49484452000000400000003B0806000000CB8C8CDC0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00001A014944415468DECD5B09705DE5753E7779FB223DAD4FB264D996BCEF98CD2C610D365B9B1070429B342421D0A18466867426A49DB2CC3493A614C23443636842D23681E0C685409612C6369B6D8C171959F2266BB3F4B43C2D4F6F7F77ED77FEF79E2C6BC386927267FEB9CBBBBAF73FDF39E73BCB7FA5DAB64DC54D9224997718C5BD441F6DB30BC3E23D368B3E619B5A10BC28AC03C359D83B3E021093053730341E780D1F5BF664D43F0900140465817D18A518C1C2F16410CE1780A2F0698C718C58E1388761FE31847BF89FB7DEF9E883F73E3F270005B35758E0D2CA9A9565E19AAF2B921C5455C5ED50150736C9A1623854C23139D5FC5EE5BD5315E7AAEA24957F5765521555FC86730BF7191E97271B08FA13CDCD875EF8E98F7FBC9781C13BFF2856E0F7BB9FC4EEF90FB280A2E90754A76379A8ACF28B4E08E2723AC8ED7491CBE5243786D385633E773AC9E5764C1C3BF19B8B81C1B1000883C15255064901280E2A2D2FA7C181FE76BCA30D238BA1FF31405065E59C5C402AEC7DB665967921DCC56B57013D1FB49BD7ACD0B6436815D720A09A17902D808F1D798D0B61D5E2398457B0E7870F8FC528994EB36B0530C60A6EF5B113A22CCBE70C0043E5C4EDDEC6F975B464F94AA14D4741A8A2F917CF8B5A9EF99EB3AFF1BD475A0E93A91B1EBCC35578D739714A819CC5E11D77DC218EB76DDB562458FA200B3A1F000408F80355913EAC55CE2E93A96BF8D55627BDAFF807F65C824368B9A3A3430E04020AEFF9DAD5575F6D25120973D1A245CC257601077B6600A47302A03819599214994DBBB83DF5FC513AD5350C63D549B273183A8E796F906469E21A5906EC197B1BE7E2BEFC7E5E4D05EDD8F1BA788EC3E12429AF8D3943EA64C1DBDADA94E3C78F3B7C3E9F6B7C7CDC5D5F5FEF2D292971E07A0C7C93C36FB9952B57EA2B56AC306703423A470B98085DB22ADBA9AC465A2E274CF9AFEF5C7E6E2EC0FB19EE13DA370CD27483D1A5D9343E497879C3860DAC7547301874E352E01BDFFCE6358D8D8D9F0DF883D7EA86AE0E0E0EBDD97EF2E44BDB7EF9FC6B00661C80649B9A9AF4BABA3A06C29A0C84721E1650604D5930D38EDFFD06A42615C88FC90EAC5F1050E510A8F07566784400579EF8F2A4A788DF14B02F9C89E4428AB1F6A24B3FC8CF2508AE40B36A3299747FEF7BDFBB70C992255FF00782B7C25E2A73398D721A2CCB9028140ADDB066EDBA1B9A162F8E4547867F77BABBEBC5177EFEF377745D6720B4C9403CFB8BEDE707009386D7EDA68D37DD4C30BD59357B3E24A840BE23870FCF2A3C9BFBA14387D4A79E7AAA0942FF39CCFC76A4268B59604DCBD1582C4ECD6D276870780C737253B83C443E8F0BE6AD94969684EEF42CF3DDF9E0B7FFB627161B7BA9ABABE7176FED78ED287882334F432ABC632EB23C1B0089243F1EEE74BAE8A39701F98D43A11356624D9F83780134AE3EF60FFFF8D4A51B37DE0D1616815B83F0DD7DFD74B2A3872243C3005321B693783C49C9780A7E645369D04FA5010F599645B2A2CCF7FB830F2C5EB2E481DA79F30E2793F1177B3B4EFF12724B004399EA1AB302904F0ACF84E7639D314A654C5214891CF8495144A880994BC2BFA060ECF3D7F81E15D754BE07C741BF97366FDE2C9EA343209EE8D48DCD7E6868C8FD5E73F32D6DC74FF4DFBCE97A53757B1BFA0686686C3C4136FEA6ACC44FB17802CF55584194CE64059F44A2C3D4DDABC3629D140A0658BA22186B5D6EDFDAFAA6458F0D444E9B6B2EBAECAECAC6C6EDD153A7E200C29C0AC2341770383D13E73D03698A8EA6F0420BC11B0F97ADC2B18D3D80E173CA5F9341C48A943F57F05B7959C904004EB895694E03400287718873C25D1080D59A1D6FBD43472BDBF5CEEBDF506F3F7D9F141AA8A10C48D9EFF5523C91242E269DE0A3642A4DBA6E88872433391A198F0B2594C245446CC57D966D29B9ACA6385CAE67ABCBC2DF5D346FC1A3F869EB5410CE0640516CC3D0A9A7FD38B93D1E5A1106D1D5B9407CB2203F07B4C084E774E4D35CAE01980CF32498CF0015D61454C5D6DC72683FF1ABC66209003073FD03E293E126769E439CE4737A1C4D7B36D34BF5BFB02F6CACA31BC7964AED5D2B04D9B2F6B3D95CDEE2709EE58805EB628BE0615AB6508465E5075E6D1BBAD656120C8431A74FE572B99F8073ECC969F874120C0411EAB362C22C0C3F865D0305D2A4A8E02C64794EA111A700C30100E10F3626020D988645866D928EE7B8FD7EA40BD300B05D2E978D77EA3DA7DAEF6E5ABAF4B180CF77E1BAF42AEAF20FA076A8932E5443E4AE78DBBE7443B374E4D82594CD35C0E45D02084DD305D05CA704BC2ED42D0E112934440C960DA418075886CFEF5FC9B25826A900CB198D46F5395D0033A7054D4BE68CEFE79B0AEF7B770FE9F6740BE02406313F7BACF570F389A32D5FBFF8B22B3EB762D5EA7B575163A58984CBD053D43F1C96949883FE30EF5D5BAF3B2C5D7068539E8700BADFEB86FFFB8415E48A828FC7AC8E531D9A073194E76218851CC4B615DC27238B94662741B02643F541A9EDF9A6C23C61B3E0B3932D80F37A102142B81E676BD8FDE6AEE7DF7FBFF9EDCD9B6EBA7BE38A0D7FE2F19253378F906626498BBAA5EAA13ADB842505FC5EA9B1B2063CA00BC1D9DC33D92CBDFBEEBBA66658B2D3E576EB109C530CB612D3D09B63D1E856B89B05CE999B04A54972BCB627F29148F03BDF79483CC782099AD6740B603FE42E1142950DFFB4E0625A2E95CABCF4AB17BFDF7068D16F6FB9E54FEF6B6CBCEA423748F42198BAB25495507ADBAD2D47E051A62C7C1DEEB667EF1EBBB3A7CF46C9AE308FC8AC75088EEA76646468E0D9BECE932FE03D030040ABACAC9C1D00F8BCED70B927CEE787BD545EE2FAD061B0B8E998A8AECF4C8205104C2627A4B566696929A2A696E9387932F9C3A79EE8BCEEBA4F5FB3E9E69BEE0EF8C3B5B012F8BC4BBAF2CA2BA5542A696F7FF915EB85EDBF96987CE06A80D2107C05D1B54C22F66AB4AFF739D3D4BAA1D868369B4D969595E9B03A6BD628C09BC7EDA5536DEFE71B1C90B892094EA4BF855457E608200BC213292F5B0D04C6159AA85E11F132897142C24E6CB209CD9A350A4C0241242B5CED613330E11CE6907AFDF5D7E26FBCB173FF57BFFAB5CF5F7BFD759F551D3E2F734B7575B504F337D259CDC5442C046757D312FB6389D16732C9E411CC6D08CF1CC7F3D2105EDBB56BD707E7010AC82B180AE501500B4D0E47BEB353CCF58BE12E3F64F1776C723C0159CABB9154D8733448F7F4CE09401104DE152A3B0BDCC020E878471623F9A31FFDEBD6DFFEF6373BBFF1C0035FB96CE3651B3107445A250B927349FC6EDB3E6DA6C67F6AE6526FE1EFFB3146E152C9919191DCFAF5EB8DA99A9FD50232A90455D6D4FF9F36449C6FBF452F4D2741A990A74F054258D28103070CB88585B06580B973786EBABBBB3BFE37DFFA56DFB5D75E7BD1FDF7DFFF6558A6DB340DC9A119DB0D3DF36B28A28FCD1D8F89E339198FC7A3B5B7B75B18B3F60CCE02C0966CB891F621B3FED9A38005DFC444276E5CBC78B1B46EDD3A251C0EAB4F3EF9A41C8FC7C51FA304B6A135EB9E7BEEB16A6B6BCD471E79C406083A88CB42CA6C721F20856DE7CE9D633B76ECD877D1251B2FF05AFA3110EF10FC6714C08D01A8542C16CB71889D4DEBB3BB004967B591FEEDA593D47D7A8CF32992B9D121612F9A1EF956BF4C86687EC8DC28215D9CCBA25162504DB89CB66D7B310F2C9E6B00000827A1DA53962E5DEA5DB870A1CB8B0DC590079356E02252269331E1AF39089F40359A00101A8E25DCE3A8A9A9917B7A7A7490640C1820EA65870FEEDFD7E972A9563A9DCB40F81448922D456F6D6DB530EC7369BA4E298624DB8190532C5CBEB069217CBA71A2C9E928647C22F3635EE0FE8052DCAB136931EF5D0EE78449F746FA452D8070A6AE5AB52AB06CD9B2F2F90B17AE0E876B363B5D9E8D5053197C59E6D86D68DA783C993C958A277FB660C1825711115CEE60E852179EB3C2EF3F063EC88D8D8DE9A823B200C2C4330D284DEBEDEDE510A7AF5CB9D206D9D9E7DA719EC6013EAF9F4EB61E422CA77C5E2F31E323EC494A9EE531A4A2C5E31D79EAB2C9E4A4D9E4B86C8AC444A4C3087D1A921509CFC42DCAFCF9F383307FEF159FBAEACBA1B28ACFC12A142E6A587051C9C1FA0CD32A892752F32DB2AF71F982FFA499F1DDBAE2FB2500546D8F07558E957055F87A2ACA6A9AC386F1BACF69EFE710876767D845D8346139E6A38F3E6A3EFCF0C34CAA74CEFD00D67B3693A1F98B9691D7E7C9174082CC944234289060B10DEEC8FFA62AF956793E75560BADF4FC6F5C03FCF867FFCE16E282E61BEEFCE25FDC07CB5FA64F274591D20E46A322B9C9739274A5E40D7DDE65939AC2B5A465CA65B65402B05603E4D596C3FE52DC346DD3E14E82BBBA286DBD167099FFD1D0D03004E5A5C12FDAD6AD5B8D2D5BB6582FBEF8A208B3735B003497CDA4A9A4AC222FFC478C0279B75169F5F265B47BCFDEC0BDF7FDD5378225C1C5C60CC28F8EC56870688826A7A296A4D6B8DCCEF9ACC097B3E3D462E7A80416D98067D6C322E7593285C821D9961DB06D8F0045B3CC0723A94C5CD7922D92696EAFF0A6B6C12DC66111695884391504754A0892503E4E9C47A219141329684F2E94BF92586D51C51258E11A67895C268B73597002DFE70197AC5DBB06B97A8E3200F52B77DDB5A1BA3A5CAD1BFA34E161C28227389748A5D3140C04A07D54A6DE60035C814E6A193A626A1055122ED53E3A403DE11AB1C0E0852FCEC33CC238ABC628B31D9C2D06612597835B2ECF68FAE3C3C9F8402A97D9021076B35BCCE102C8E31D67DAE2EF1C1EA4C8401CAF40DE8F2131EB63705D20AE498573F8BD2463D867EEABAA08D1E38F7F9F7210AEBAA6962A59F81934CF001D6F3FC5551CBDB3F700352D6AA0B5AB565045756D217A58F4726C5008CFEB4C72224E32AE99070F92A3761EAFB151B796A3E1F90BE828F717705E092EA982421A25272FF149AA43AEC9F68CAE01C3EDA5292B5253AA41589329D150E43479BC3EBA768D9BD4F5FE82F6D5423A5C58FA129ACE67836A213354278E65418EBC22A4221AD4CEABA79934CF95DCD113ED343A1A23176A90CFDCBC893C1E3755876BB93B8362C6A6613D47CB31176736436308A57622492ACA44A9B48468384A6636472AB256DB3940D99161722F594609581FF88356F3753C6374A89F798B0597A73649A75980C3EBA52CF2789D5773A47C7E2F15989FF54E85BF35395472EBA9C0F8CCE216A200F7F10C5317B7D5D5CDA3DB6FBB4D6871EAC6A56CEBF113944E67A8A2BC8C4A4B8218255456564A999C4E590CD5A5522DF2FCAF01007EFE189B3FCAE06E2D4B3D20EBD1BED3A206E1EA4F0250AACF4F3EBF5FB8C642878B3C18DC8CCDC105C1D34E64862E90A159B082E91D219629938C53FD828513ABBDE74382C5D618CC8852C914ACC89B7FCB14005801474FB68B46457555059514846710D6AC5C8E7ADF2FEAFB91D1318A440669786C8CC6A1F900F0DF585E4197DA242245ACB69E7A705F0480F4E7B294839539785D82018095B8312F5E98619E6A39DAF1D4FEE6A30FDF72D5A54BDF7AEBAD447979B90E3EB0D4B33C00D998656874E64B99F3DB5830EEC07024E19E2283C1317EEA76B2A3538057120C4C689E896F5E4D58089FAF4ADDC4D1A2B1B1812E0EAD2B448A3184C9611A188C8A156707F8636D304817C821A1E918875158C228F6F5BE8030FFCE482F883543090078C1FA35659D036343B8777824327A0F1EF9F2594B633033DB3893B3D3DE962890CFE59322D92AD4FE08CA12578E76FE9C1B217C4DCE5FE386C8C517ADA70B376C10663E758BF40F523295A47A105851EB81809FDA8EB723EDEEA57055A50082398575508ECA94B721E407D01A95E17C695313AC6354FC6D734B2BB47B9CC6E329AAC1DF559684847588A628F6D1E81075A21AADACA8202F949249672487AC56DA12DD845AE11575525CCC7FC4242974FE5B3E23E43FAFABABA14B2EB958F401A66EE3F1389D38758AD6AD5841951034AFFD20B51D3B09ED8E0A8D0F0C0ED17B079B8505D684AB841BF0C49B162D148D17DEC662317045489C7BBD1EFAE21DB78968B27BDF7E6A693B4E6E70C17CF00F73D7C8C82842A746576CBC8485271B9655162AA5FEC8E9FF696B6B93D44949A0813FD0E209C4DC43FBC5D71F7EA838E091C58B24910ECBC23D44DB5B2AD6FF92D0145FE7D6D5ADB7DC74A63132C53D0EB7B6D192A6466A6A5A3461FA478F9FA49EBEBEE924097F3ED5D945C71025F8D8073E59D8309F1A172EA0DA70B5981303CACF109D698C0BD6AEA6654B9A0447BDB3F73D3A05CDF7F4F6D1BAD5AB44F66ABB5DE4F379614DC3CD4DF5F3DE6C6A6AB28B16C0769F452E9E9421389F7007CB36D8944CC1C0DCD3E382861B1BECE70634AC17CA5C5D43BE0F50BEFBF70F4123DE19435E47578FF0C92B601D2C3CE7FD91FE0184C193678AE929B82D86B0FD43511A1A1E1121731F2C63F7BBEF8979D4D654C3151A69F9D2252222F19CFA613D4CA2BCDD7AD30D74F7FD0F5249202840E3DFB9838584C80CB99D7F393A3A9AE67E4311009E7102B17898FBEDB630695B4C382F7C3ECC19DCDC84E0CC13FC404E6C0C01824937DF701D2D5EB4684607E14CEF18045DBF66B5303FDE62E3713A04FF9DAD93C056D4DCD22652631FCCDCC865C4422B629920CF535DDD74A2BD83B6BFFA3B91972C85E639E5AEAA28A77075153DFBD3FF447619A14DD75F2B5C889594A11C0D7577FD6C41B8BC3B1219E6CFF668B20524BB7ABBDFD52DEBCBB96C86CB539F6D5A4EC478251F222D2AEEF950EC396F9065052416A828BBFDB6E7B7BF5C33BFAE165A58212655DC5ADA8E0A6B59DCB8B000488E0EBCDF3265BDF06C184241BF28CC38A1A942A86C87B0CCF40A46774F4F9EB80A7F92C67DFB0E1CA2DD307BB63E264E4EADD93AC2D5952214B292FA2291D1C679558FA3944E70918431E102CC589991FEFE3E8C9848B1F3DFF3A84434EB67160865722814F27CEE4B5FBA0693ACD1601DAD60E4577EFF072A0D961083510F32EA02BBF3A4EAE7D50A2B3A0CCDF3826961F97ABAF6E11ED19131B1BC2623BC1C3C70900225A5E2EFA11C1A4F2609F17A1274D259F00DC06DD8D7375EB401BCE4A22CDE350E77D332898794F2E0B0DFEFCF15CA64520B1D59A2331F35724D1D2F083E674280CC4A417D5F5A5555AD777423DEA6D2E44119FDD95B6E14E6F9AB5FBF4A575C7629AD84266EBDF10621EC31647F49143CD22C8FADAAACA0DEDE5E9172D72274B11997575609CD76F79C16DA9695B9231513F335575E269EC5C5531491A0B3AB7B7F5D796867341A4D3EF1C41366B128528BF1AF00825518269DC327B2DCDEAAA9A971B7B5B5B45E7EE5557B5D2EE7FAEEEED3AE8E8E2E31D15B6FFC3458BF896EB8E62A417A5DDDA745D93BD7C661D0B4F3EB0E879A0F91D3EDA51078A3AC24400CB269DB67E5173391E7C2050DB46ED52A41CC9C51B677741A254EC74348CC46B87334B924562785297BD20FE7F40DDF962D5B14B84012FED5B7E3F5D77E884B0BEA172C58DD30AFF6535DBD7DE13777EF937EFFFA2EFA97AD3FA1BBFE6C0B983B9C37D71960E57586C6BA06242DA705E9F2E73A55E11A41B41998FDC1AE2E51A09D21499AD18A3C6E0F6DBEFE1A915E33F99EECECA4A18181E76ACA02A74646465285C6C8EC2DB1F3D9B8EBFAC8238F64BABBBB7B812E78CE88F67476F6621C8045552D5BD878D56822B912C98977C79B6F8B28C07E5D8952995779CECC5F1284C851417CA18ABAA2BFBF9FDC10980B254E7272288E58F3A6359B6EF245DB65975C44CB972C16D1E908F8E8547B475F38E47F16E763030303C69C0D910F91FB8B107AEFBDF7C600400696308C49F4E05A258EC3A73BDB7B2058E58A86DAC6450DF59B3089F29C96A6E111C475D4F025C8E3D94FB980112E857A807D3D07AD33E971E4181E1EA6E1D111E417FEB3486FA62D8CCC71F3A7AF46D873533B2CE6E8F11396994D7C5B2929E90F0402E91FFCE007D3D0FB4800147178E699670C588219894472D05C1C6E1165B70018E500209C4C8CF737EFDBD3B572F5BA8DA1CACAF5394D2B65D3EE0333772241E2BC82A3452572FDB36C3C1F1260CEA5C2158A65795539EA03DBA49EC8D0841571E6FA999B36511DDC666C7C9CF6ED6FA6E8E0E036AFCBD59C4C266348D08C735A19FA089660177A0DDC84CC85C3E1244C6E0421672093C9F05255B4B5A57918BFEFF5F87C558B162FDDE8727A1B07D219571659DE91B663E20307B7D34D30170A0603B3E608A3B1718C31F1854A31695AB37A255D7DE5E5A25FB1F3EDDD003732A898D9A76DC539C8DF123EFDF4D336989F3E1600A60041DC74E0C54EA49A064010293622C628AC21825BC2A944227CE4D081D3384608AD595455567EF1486CBC2A954ECB23A9518AEC19107ECF0FABABAD4185584501DF99D5666EB07850EFE75B6CFCED6009DD76CB66917CED79EF0075747659F1D1A1BFC30DBD784E62E7CE9DD39AA11F0B003380310184D3E9CC689A365600A18C499279627030324083115EF008D655CFBB206B98CBBBFB22012631B68896D6A322712A468A1097D0A525488F7D28805461314B173789AA9043E81BEFECA1E1A1A15724C338805C62841751688E2F543F3600A602C1A115AEA1C31FD3C81D4600463F8464C2AC0028D5CC15837DDD43EC2255016F45556970DDE0E858C35074C49BD3AC7C9202CD7379CCA3B85D7CE17A7A1F35C37FFDF72BD48454BBA2AC74343132F843585D3FAF0D70A49A6B7E1F3B0093B128BA060853076166F95B5F70C4102CA117829763C2550C443A91A8C0DCBB4A54DB1F0C87BCF0E385A8E51A93E94C452C1EF7663239D92E28D5E6E54F53EF0BFAFDD5D1E11115ACFF18CC9EA3CFF873CF3D27F2FD4F0A00B312262F863261E27A04D74B713D045038249461842453EB43CE7EA8CC2DBBCBDC25CC7C2EDDA6724B522A92F198AE59DA7EAF2C672DC3EAC925B58300320A00B462BEFF89026036C22C5845BAABAB2B06C2EC07005EDC12802041987308F7F0925810D7BC3876AB92E4B02D5D570C2B6658561AD772B82F827B7AF1B7A973591AFF7F05E003AC225B5151910081B1553853A914EA2E8F1782B9A15D370475F331B7F030C6F99B00F08901D3E725F238409D93F83E7100CC66151CF16019B95DBB76A5F09302BE10FFE1869458E57F67E37B79451884AAA7D369FE88C2DABF7FBF71AEC27FE20098090C3EE42F450A9144F8F4A38F3E2AB5B6B68AC88072DC2E2E8317EF3F9FF7FC2F9799D8BFFECAFB820000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (45,1,'IP_PBX_(96)',decode('89504E470D0A1A0A0000000D4948445200000060000000590806000000C1ED215D0000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00002E684944415478DAED7D77781CE779E73B657B436F0440825D043B298A14498992A5D0B22C4BB629C58E4FD1D9899DF81ED9891D3BE7387E2C3977973B3BF9E3EEC993BBC48ECF56747191EC9314D996AC4A35B3486207488000088020D11765FBEE94FBBDDFCC2C76D10816C98A9E5B3E1F676776303BF3D6DF5BBE6F25D33469FA4BC28B37CEEE1CDB6BFD3267D99AE66C37F83E7A4985CF5740781E72C1283CFE4E30C12C20BC610FDED7DFEF8C100C9885F00A868AE1B2B7CA1C8CB89692EF105D9B36747B18EF4726A885CCB009CD447763F830BCF670DBE73A1A712DB460BAC971089DC5C860A4ECC1FB396606E4E43DCB845BBEF52DD5DD19F7FCFA9FFF2671590C28907ED92632133E8011C688600431FCD39870ADCC502113349BD8698C38C604C62446ACF0DCF72A13FE64DBAE6F3E977BF31378BBF24A34C0917E0F13BFBA7EE9CE92AA9A2FA98AE2515459551555555DAAEC5224ECB8485154C9ED52B155C8857D97AA90E2C25671B632E12FECA110FE9E146C5DF656C5E7B82429B2C2FBA62ACB7C2D13C70C7C8FE67179722E972BD7D971F6E7DFF8FAD77E52E00F8CF7AA299115C55065C5B812135428FD6C6E42B24B5DE20BF8B7BA999818CEB6F8BD5A749CF7C55655EDF398F8F671FB98C31466186F9981CE5661A6802132B6B284214B3430D87FD2D6C4AC3DF4025FF11E64824457CB008F3039A611646915928A4F400B52EC214B264E360B3CB2014FCEC3B4B71886814B804E62E864EA380B173160ED4C8929680A4A624F50D3FA1B5C55D649D1659258BB540F69B91C9BC3906D92920540E0BD8968E8CA18506882D8CEFB410ABF0A12EDD9B19D1A1A9708B321A455997D6B9915FB7DC15055E7BD5AF0B99C3F2E8EC985E759C7A2D1513A76F204699AEEB5FD51A1FFB9A60C601F78AD7C8A740577A64EC3FC161364F296448254BF788920DE74624F27F4F463EABC0C508A19A0CC64406DDD223ADBDE469964DC6B6BA56B1A0CBE2A824F437ECEB13C13AE9421B22C5F1318AA4A4C52457967D454BAACF39C1844B95AE217105EBAF7DE7BA5E1E16129168BE5AF170A85CCCACA4AF3F1C71F379D532F971192245D1503F291AF224B922AFD76CDAD84EF97A4BC765E71005848F83D7BF6C820BC1820BE9C4EA70B455644E0CDCDCD061861ECDFBFDF703463A18C90AF920145372DABC5EA343699A56F3F72120E530715E042B19519BAF3BE1856E03AF5B946B2699DC7FBD6E7FC5ECB9FCF5BB23FFBCEB7FF2BDD72EBAD450F230921B832E2CF46F84C26A3949494A8A3A3A31CFFB8FC7EBFAC691AA0B56A60ABE3B886CF359CA781113A3382B582DD8463A2E66386749526A8C8964D37411EB74C37ACAD1488889110DF93EC0C413043980DE7187F2EEC46C179E298D8B2581BE25AE2986C526D6DED8C8729B807F35A103E97CBB921F51E2F5E8140C0FFF9071FBCB9A1BE614F7FFFC091C77FFAE367BBBABAC693C964069039130C0673D012ADAFAF4FC775F48598275B60AE09034C2DA7537C72824A4ACBC431BF57A57DB73515219EB950909A0FB8A69D378BC32D3CE6BCD2A914E980B01EBF5FBB521B0F620A5001C2BB1CC2E3B97C7FFA677FB663ED9AB5F7E0F86D269911483E85C2E17D5FF9DA5F7C736478747F5767FB538F3EF2C8FE4422110723D2914884199163466CD9B2C558BA74A9311723E42B4441331F0680DF1B8CD0F1132DE4F35AF1000755AA1D54A90A07588A08B2C4713E867D378E2BAA7D0EEF73D4CC8CE0F364652A3A760230D9223C07306C72F851C471FC5D5DC362928E9DB81CE2E7090FA957407015C30D61F77CE10B5F5873FDF5D7EF2B2DABF83060707D0E44D7721AF1D6C0978A842449DED2D2920FAEDFB8F983FF69D59AD191D1D15FB59D69F9F92F9E7AEA0898C48C1039A9A3478FCECA88A77EFDF2B5F301EC80992801102E1C0E0A93C14457A7497B910608624AD84A969902313918E320CC947432142B8C1554B603359DA35E8D833D49981CBE7D5DD74805612005976D6E401C05765D1D1F1F777DE94B5FAABFFDF6DBF781701F77B9DD6B59D273203A6F99E04CF889589CA2E313545D512A8E3903CF545E565676FFD66DDBEF6F5EBBA1331A8D3E71FA64CBE32FBEF86C37AE97814669F82EAD9011D70205153B133D47EB6FD8466E977B4E7333B709BABA3880B76FBCFE2A08965D8851954108B6F3EA830F3E18DEB76FDF4741BCFB20F937B10902B184A41712B8ABF7029D6AEB14DF934CA7E96CF779AAAFA9A48A9248D17942235DAE65A565655FD9B673C7979B376F383C3E3AFEB32387DF78A2B5B5358A6BE7A06DAC113ACEB7D4D0E6C24291933A474E43F2B85C5714585CAB176B859ED3E44B991D26FE3DF7DDB7F48B7FFCC7DF0496BF1B8703CE39EC47980C3C58FA0F1C3949FD83C3E4F57828994A0B13E8F5B8280B069DBF3844274E77D2AA650D2269E8C3F1626698B24B756D2F292BDD7ED36D1FFCCF9B6FBCE9F9F8C4F84F5E7CF697CFC3D4A5B2D9ACC2760C6650BE9C5862760D20CB2CBC1371C042B594EF9BCDD17CC467B3C392DFDBD3BFF5AFBEF3DF777FFC23779CDBB1EDFAB585D7181D9BA0570F1FA14C362B046A1C66A71C921F0A06B8C443BA69503299C6BE8FFC3E0FF5F40D503293A5AAD230909F8B4A428122463020C3D6EB76B9EE0A9794DE75E7C77E77349D4E3E313A32E232749D033C176B44A18F988F0973A0204564240B5F99AC4E47DB4648962D8CCE5B919CE37D308BDF4BE298649F4376224F12CC949DCF67F97B3EB66BD72E6A6C6C2C6000D17CC2F3F0C30F131E90713CBC36B9202B0DFFFACCF30D2FBEF246E727F7DD5392D5CDF2A3A7DA44E63501694F249254555E4A6591B070F4E96C8618E9F94074BFCF0BB764501A84175959DCDF70744268860F4C08057C1401831CDF51CC10F05375FDE1C0603F199A9EDBB8FDA66F4C8C8DFDE8B5179FE964F86A07747332419D4B4A65B5D809C6931A7DFFC9762BA0B28764E6ACADC1FBF6FBFCE739FBB873ACF873C9C8155DE79FBEF78FD31800273D8FF2B6B4B448C0E632075538D1A5DABE04845CF6A39F3D698C9AE9F4997DCF7872DEB474CFD9CF5264A84A68001355823478DC6E7C4996137E423B3C2ECB4FE16648D30D91A9650D61A6300387A3E314F47B85C9522D824E31C13673001640AEEA5F46CA4ABFBEF7EE7B0F6AB9DCF70061FFCF5D77DDA5CFC58439E380E91EBDACC443FFF88D9D050E57B6918F938C93A739523B9D5D1407C853893BB9E03A3806A759F47D9AC6819A346781837339303F92CFE7C3EDCA4A61321044904361C9EB3A5D4FE98A3EA3A3FCB8DCBDA89D3EDCF300B9639064363D862E88EF76BBC43D88929CAEE3BE64616644240E46B1066512295270DED0E80460B95B149CC201EF741F911F1002035A2585ABABFEF284DBFD93A79F7E5AB8A4D99830070324F205C2D47BAE03EAE91337332F0A2A4240724106559E9939B589CED228D9E9067E6691F611E6CA92521920405216586192677E4F5857299829236940954F053BCDF4920169A4FC0DDA1930A8E3DC6E32658FEDE2D8D718C45539A68D535461C6A43219A119160C97854F08FA3D14F0B867202B6700B975783D5EBFC7E3D90E3E0CC339BB39D107E79C87AB97660088E2F3F9459A40677B8D0792B8A2E5B62B5E5CE9724F55C1DCA2E2E59E591573DB553111C429E2B890305B855902735A4E6C3930CA023266B239E12CDCBEA020CC5C2F4E0D400B4C607EBDEDC4A917823B027F5F565EF60720BE579823B8851DF12DB43FFC3AF9E31592FB5409DD50DE66AE5B7B4672B9E3341A5D4D67BB1A48725B68C7417C7C8FA699122650B624833C7625B0AEB2D4BADF5C01F1C9F20BA9547232194FC67DC1C0727E3E5D17518F0426B81147683045F9169B05C501B96C5AD8BB903F9C8F58F9C13849C7EF85C4EA9C4234280B3B6E18A60872B2995C01DE77CA8C53E648961D73250B66C8B62972FB205D818038164F24A8A7B76F5E06B03471E6922D472A351E7BE5F95FFD5D6363D38B1BB65EFF67BEF2F29D7C4D9FACD29ECC2EDAEF799D0C58B3B158B5F4F2812A209B2173EF9E9F4995E5B7D3E1F67D8222ACD94C387E06BE677E1E2EAB7278B8BCB15610D4927A9A323518F01FFAF99EDE98D7E70F4340C306EE5947E0699B7090525639E9074191662B00CD15070083A7A9BAA9C9CAEBFC1602B1BEBEF3944925943920AAF0519CADECEEEED6E03FD290B4587777E7999E9EAEAF6DB9FE869BD76DDCF479AFD7B3A8428ED03DC69DF4B2F22AFE6E4448EC58AC42FAE50BF7D023DEACF9F6BE3F94761DFE386D3DF94161EF99E91E085E0E9AC88467AA710C614C0BD01835B5B79DCD66B49CE2F1784B38E690748BF01297609909C297698CD4E604DFB3063A92012324BD33B58085C701064BDCBC6733C45BB26489E676BBB3204C12630204187EFBCD432FFCF89F7FF0471D67DB1FC5B154D0E5A18F793E445EF566487719AE0D0D373C949A7449EB5FBC9B9A5B77190C49D9C667B16DACADA2E6E58B853018B3D8F9EEEE73C6818387F46426E366030DFC2F823E669E1870F0D0182D118FFF5F4E75635C6E1CE0A4567F7B051961D22C3B4AF369013301810FE7F1CD542A652412091D2A9FC5FBF4B34F3FF5BF8F1C3AF0D29D1FF9E8679A962EDDA5BA564A41B5993463188E7E90D6660728A52322CE8581BA0D93B1FEAA25F5524EE48D7245769EB723C323E6C137DF32897B75144B5B249674DDCA03E942FA75CA66336F0F5F38FFDFFA7ABA8EB202215216B585D922E3397C803423B33799C8D10FFEF5B4C8E34B76FBA62C0A2C867DCC7A2F8664EDCBA6F5BEF86FECCF9C73EDFD2F7FF94F69DBB66D530CC0C3999A7EA9685930E1EDB7DFE69CBD8998C004FA3060C2F8A173B0BF99A1A1A1E4F7BFFBBFFE7ADBF6ED5B6EDF7BC71F54555635F9BCF500094DF4800D165CAB05B090345D334F1C3F6148AA4B7622691EA9648A9E7FF125633C969015972AA9EC016D625B484E129D207A2633383832F4BDFE9ECE5FE3EF46713C09E9CFE2BE38323667AB6BA8735926768E34AD600C783D551F949C5A61E13FC32ACC08A2CA79224F1D73DE2BA2154596A698323DEF648840CC5C80A99AD204403DB3B5B555347181B07A8EB379B29CE671E8C081E4E183075BEFFBC4EF7D1851F7BDF00FA1E2F845462C12906EBE79B7141D8D9A478E1D17D1C0FE575E355ACE9C9514974B667F28394E5697040D2403FFE5CC746C22FAE450EFB99F02760EE17A51DCD624FC440AE631575F5FAFCF0641E7334126384D3A20976A174A4201177DE1136BDE95820C4BDDF8440C8FAFE80BCC1B0926D80F69421B0C405403A64843A0A6411BB220461AC4483DFED31FFFF4A5179E7BE3337FF8D9DFDBB061C31E45F41F147776D42DAA93162F6EA4CF3DF8A7DAD1D6369553179477B096B96154A50314E5D2A9DF4C8CF43F02953B07BB3F06664F60701F13131FFCC86A070E1C30E6AA2DCF1907945556531A7030191BB7A5DFEE60730A2A85D16DE17B688E245B9D6DB264075B42F72411E64F85EE858ECD10CE4E981D9C97CA66C950DC6481BE0527EFF23979471BBABABA848A81101A0801D3AE65709F299884E4DF7EE7DB7F77FDF5D7BFF4A97FF7C0034D4B97AC74D05EE18049823F3554416C6176F4BCE93175AD2B161B7B24159B380A8247717C1C23664B7D9A5B2B1904CD47FC794C9095905301C7B8EECEAA26A0646135AB508A597A38B2B589CE4C102D0D7642D52A695B5D700E84E374803033BAC500C6D94EF633AB8121B88EA15F7E2BE82CDA60F6F5F5B13670CE5E03B1B2F8AE0CB6A9B7DE7A2BF1E69B6F767DEA539FBAE5A31FFBD8BDE565E5A58E7059690329030E781C73A3F3D6D4C67389D8CFF5D4E47360E828AE3386E799C4F9095C37059A6481F9B5356BD63866C7BC826CA8449363231408472810299F41EC773A0ED060FABEFF831F004D64AF08864DD306DDD1865028C47E814D524E2478B359364BC9471F7DF4E9279F7CF2ADAF7EF5AB1FBF152F10D565FF7DA600E9E4243DFB62269BFC3938D1CF761EA7B0B911528F58848BF95C3FD6417C4E3B18575C0F80444A5A2E4B1EAFAFB885EC5D7A21B0A1F2D232D23229E5122D85F4AD6F7D6BD6CF1F7AE8A1428D301C6D80741A2096CE389D6DB4A30D205CF2E1871FFEA7279E78E2E5AF7CE52B9F5CBD7AF506495652C2446AB9A3722EF963E86E17E8300A783C8EEBC56009126068BA50EAC17013A8CCBCAA8AD81458FAED15640C43A3EC4C13243536364A20BA0462C9BC2D2B2B93CE9D3B273534344C41E6C949F38B5FFC227DEE739F33EEBBEF3EB30029096D3873E60C85C3611310D50806839CA5E40921699C963876ECD8E4FDF7DFDFF1C0030F6CF279D4AD1E23FB038F629E00292641D2491BDDC4D9A123E6C8E025500E886EB4B4B4980B91FA4B9BA0590264BE6432ADC1DC98A4CA0671A2520148C937DC2A4E878393A6B69B7065273B2A4FCB90CA536969C05B98872224C48158611C800796A0E240278BF9E6DC08B414201C251A8DAAE5E5E572329994AD34B626EC6E4D4D0DDB7B6DC58A151A18C584E7AE373A74E89009E9362A2A2AA8A3A383E1AFC1D2CB7011C4E4C9213CC3C5FFC31FFE70109F3DE702C0D734838F73A49D842FE12E6D76E6A25D7ED3A64D0BB2F597A701B3BCA21319FADADFBDFD8E16643E74E79DF9EF134ED9B49C321E96892F373535A9CB972F17FD3E207E7EFA14CE7571CD56B25E3C83864D4C16B69ECD43925109882F0876C30D3748907C5720109057AD5A25AA9B2323233A8E39F30F38AD11E74A1B2B0EA711B8F8CE3D426072361E8F67B1D558EA21F15724F59766803233100B220EF8A37DABADF262BED4689723ED12A4559A94A6CA947629D2D9E6CF9D769C057FC3C68D45DFC7CE2FA78B34B104022A8B162D72439AA54824E202D178CA5408E6A3A6A6AE7E177C55B36E182EC3D0659807E6007C983606813E1A8B4DBC9198983843D6542726A4525B5BCB4EC08DA899136526CC918EEBEB70CAE6C0C080067AEB5CECB1B5C960330373C34467AD62476E3CF7DC73065D83D99B736980E90BF869727498422565C0E4163AD9BC32C26990390A318531813AF3983C95A2968B2A628AB826EF271177F0FED0E0007574F702D62A3A131F26C60D02852B2B2B15486E685573F38722E192BDAACB7D1D08AEB0B66802C64E0D4E81237ABD2B99C999BE52F7392D97FA935C3C7E94B54593A48AB412FC07496580A91F03E55FF078E82CAE9D8566E538780293397660FFA08F8D8D01187808668DDADBDB45F56EC78E1DD2DEBD7B4DA747E0DA6A002E150C95028767C510D35A4CCE91CBA41B808976354BB6F32085BEBA285F0EBC2F86CE5BDDCA12629FCB8D9C41E4DC3BD75F75CD6A98D20CEE58B35A495835F8EF20E5AEAAAAAA10A4D65F575757B963D7EE2FF8FC816D16A1E78F1346A2514AA5D37C774B65C5F3A4ECC9EDA65C8E3435F81080DE162BD3296D3315E573A478393819278FAF57761B4755597BD1AF538B24E5D27633169BA62C408098BFB66CD932D159FCDDEF7ED778ECB1C74C46638CBC2E971992CD049E81C273B1AA3096DCF63B77DC7DE7873FFC99646252B4095A5D0C72513951145A64BBA8621F7386E87493E47C7026B1F44B76F79B5D7674127E923D1F4CB26BB00AF68747A3F4F21B87E85C57E7CB1DA74F3D06D393D8BBF78E159BB76DFB0FF8DBF2296937F2123F5D03FA078728914C16830B43FB7A5A33BC86EAFFA6512428B3D776212C40E4DA0424A1D734F4636E457A3AA41ADC2FC94E39CB4C81D6088DB1DBDB9DAA97B15066CC61820C8A4D8C51455DFDBB5E90516C269EEBEEA6CECE7637CC4FC9F61B6F5CB563D7AECFE3593CBA7EE9F4D0E0F0C80CE25BEA2995ABFEC8E71D2DD5307E9D4B5215BEBF11C8AFD494EC4A97F539BC30620D5709DE978015EB317E3F0AE78218A9978CEC6B7E97FAA82B9B3D47D6BC661E399827917E86666880CAC6A5A640CDCA0003FAB990077DA7E200FE6E6E1B71CBAA67CB962DCBF67EF043BF07A62C88F8ED1D9DB3F6B2CB926C4A3EFF9D6E45F53B4596DF6493F4A699257C22C040184C6884B636904275785F8EED0CCD80449A1EEF525C83C7032399542A9BCDB4939E7BB6CAAFFC08DA1005724AF5F7F7A711A364C1046D3E26CCE903CC7739FECDABBD6D42B8F85D595911F8FD073EFDBB70C4FE8510BFE5749B3063CEF50ADA03E1C254C9EBF3AF76BE675CD7E8955CCA4273A6D54C9C964CEA00F43D479A88847C78FE45B24AB56044AD60882C9C5C21435C6AD0E7F7073680191B12BAFE1F4712C9F15C2679844CFD5FA2D189C7CACA8415D22F2F15C1FF8CE2BF49A434FAE5EB3D53933344B6DC28785F306983739A5C882998C031B56F4FDA206B9F1BA07882C6273FF9094280249C33609FF0319FFEF4A797FA03018FB600E27775F708E26B20EC850BFDD479AE876EBD7997D5E3836B45CACAA788071BF3CBC4983041AA24E5A7E11A1D5DA40F0D926BEB5692E1ACF54090FA40BB7E51B33045FB5DB5A450354C6495A452B92989E9B953DAA1B2E6B2C9BA150CB9F5626FD7BA322AFB1A07824E6A64813E409A31253D07E472B2239A9F8264CD0FB6A61D59539134FBB89E9F7AE44C5192856F2A98BEC49F19CEF4246BDAD26DB77D8010645116C447B043376CBF914A4A4B1764767A2F5C14367F3216A3370E1C164E5CE4F04134B7EAA6D2CA2AD1EEEE10FF743A4927B3A929E2F313C7E23C3384BC9B3753F6E44982F3A14C4B8BC8EE06D6AF174C94004547F1DC63A6416D785EAE8C95E3F30A8C1A7CCE3EC4B08BF6C9448C645DD4B465EEE2BBACCE380E2519B13084243B3D501272D35F3FB875E14E5855175490B1D095D514C5929F02213510A9BCA2821642FCBE8BFD340AB8191D1BA71818D70C2DD2C1D41C8049D01FA4521052525C537D9DB8F6D3C35181CAC4F44B466B389E3D7A945C8B16510EC497D219924259AB210DBE28D3DA4AC6E4048556AE266E42F7D7D793CCED2BB8FF98C85D18E487A9AA92A73AAA476213884344414946142E5D56454C4C490A96D0E8C0C5BC4390ED228B28B6D890917B6624CBA658C7C8AE01F027F96EB769693D3EC19CE65E6CE230C3D7AFDF408B97342D88F817FAFB69606808921F1797ABA9AAA280DF87E1273F06202249D000472A1D0DF846C3323A9749515B32419DD086F3D934796EB945F80166863E3A42FA204C51382C9ED14CA5C8C4F58C71302E18A6C9B7DEA292952BC9555222FE864D6C83DB436E49CE339A103F01D1718E4981439619112DDC07300EC3C55C5E1FA451170515A9A0ADCBB097CE70AA59CE977281C5EABB74822F1BA7E31A22F0D2ED00AC08B75B7FC37CD9B665132D5BB69C1662F319E7B3F4A75269D1B51688842DA28BE1132D95395C3B93CB92EAF28868DBB4F13EE0255DE75269356C3CEF67717FDDE93475A692D40DC60C725B644DADD0922C98AC43C358A39919FAC438052ACA2900EFEA4C5E0EC1BC5578BCF9169654D28AE8C942935EC431B96834CAC19ACE5DDD85A668D6406CD7CD1FB87BF7CDBB3EC319CA8ACA9A6B5E9071D213AC35CC24C038989F2CA2EF9060DCF4A06AFAFE48748C4EB69E1601145F5710DC21BCBDADA9AAA4E6EB560B068D08133546E3937198A984980FC0A90A4E89CCD6729EC677F4C21FF464D27401DA118543161ACED3A7F0776938EA605575DE8CAD7079A9D9EBCFFFFDB98E76B893047574F7A48787A3ADAA2CBFF2A13DDBBF3931319145542D161C711831BB0F900D29872F2F59DCF48E1564EC4893AB5EC459E050A46441DF91869F38D3DE21DA0679FA5431E1ADF7DCD7CAC4E717274D1B16D589C16DE89CF2E0F362305B0343C3D40F1336323A46C9748EBC38974D2C3BF0EB60FB579B614BA21959E17B2F403B06708D586D9DB584189B5EC872A33F40882FF20C48B006E061C0682FBE73735975D5E6E1B1C9A72A4B234E149D0303F4B97D80665C513D7681A49FC2FB2006A246487E90AC4627FD12451A20B1D36784C9F1E76DBD6FCAEC60CB91F49AD5AB6665F8A9D63382117C7E08DFC9A36151AD48AE71235677EF79EA397F0191F4A8D09448492979BC1EA1C9AB60E3570643E23A49DCE700846608E66D027F570B73E7405C36D90C59A3639334311913CD0C1BD63553FFC0E0FEC914B0A4697440A3BF71EB0D9B9EE4479A2B12B689215D73A97708C9034124F984C4FA2E9958E3D7E9F6B394014261671B0C068A08CF5B4EC98C4F4CD0C58101AAA9AE120F2F203488F4EA8183B475E3068A84C3F9EB9D077CE5F8E1A61BB78B06AD15CB968AE10848CB99366A3D739606016B4B4BCBA8241211E62A0C8684DC2E5A5ED82B6ABF1FEC1BB0DA17CFF709EA6DDBBA498004BE17105EC573AF0E05035F8763FE057C42760E276C55A48A0A329359FA2FDF3F51B0C480967F9F2FC208EC6F2D5F203E37B4A9B8C0CCE53BE9B855D2EB92E9B65B77D337BEFEE70B72BA3D904E76BC0D75B5545559516476580B18671F3FF596B0F967BBBAC4FD57C259D6D7D6507D7D1DEDDEBE5DF4FC3BAFCE73DD82A037EFDC51F43D1D5DDD70EE1769CFAE1B69C3DA6631D854B68219474FB488497E6508EA6A6AAA67F51FFDFD1781CE86844FE3FB8CC0AFB136713BBFA4C954561AA14422C56D94CA962D5B24755A25D8B4C300D398163378DD0ADDB2B5A660A902B2971D30F3C7E482F7D6B20434F33CD98A2A79DED5673E73FF8234879DEE998E4E2A2F2DA5258D8D33CC0FFB83577F7348CC2F28345717FB07E87CDF05D20F1E160460F3B3A4A181962C6E10B0BAACB464DAAC1C9D6A6BAA68F9D225F963275A5A61263302A1AD5B739D20F24998B2D7F07D091C5F0ED4C6F3229C547C3C364983F02D0C4CB65FBF99E289A43099B29816E5C17796D2F8D8F8E392D727B5B6B6CE608061A34C44F406C501B94A3884E7B8C0ABD0DD7B165F71679C6C4FC466F306EEE341AB0554BC94DDE7CF4F8208FC10EBD7AEA19270B888013CE5F4B50387C49C8222B430CD7AB2669C6E3B0B3FD026AE590E18B97449232D6B5A4C8BC1144666A7E05F2ACA4AC5B59DD7D2258BC5BC85826E0CC120D62E1FFCC30BFB5FA35367CF530382330F40C1F9BE7EC1A48DEBD6088AF27D6B9295B2E77B07732E365695FE087EC7E47E51B590F0763E3B07C09555E1D9BBA0F672DF79581723FF408E1D2FB4E76296885ED0E1266C3CABA76EC703A628C858785FA23B6EBF8D56DDF7F105055B6D9D5D5C54A16D9B36516D75956DF72DE2F3EBE8F193343C323A77B5638E0383C3C3C257BCF2C601211C8B1BEB69C5D226F11DD3937B6B56152F84188546BA3D6E61C2F6DDFD61418B378F1CA37F7AF427C2F1962040634DE584A29BEC2056F1D85D75B92F13B9B25C870600C9C350675542D6E134BE34AD33B1105E0BE2DA13D784B321C38E282D69366C7FE1045D46BE4F5E77FAE405132C629B42EAEEDDF7D105999E18A49A9D64457919A4FFBA227B2FEC38EC353BBB85BC2AA0C9DBB66CA0336DEDD4DED553C47C76D20C6D99E07C3C0C74B472C5725AB372055D875108220EBF7D0C840F513DCC59A15630743DD3DE2E34E9C66D5B0472E2E39AAC91AC29E4F2A874A1EFE2C1DAD2E051EE53E576184ED0A905B65FB78B0A09044EDC15509C2AA6A94CA231BDE4C844B7A35F2BEA752629388CB0D68670BB14FAEA9F3C2810C742A4FFC4A95671EDCDEBD70B261476500F0D8F502B88395FA9AFB000C179A21F3CF22805012DF99A6B11272C6D6CA0370E1EA20B70AC85AFB1F1091C3F4CAF423BF8DCC5302F0C6DD7375F479B37ACCBDB7CE7954CA6E8DBFFE3EF054D56AF5A41914838EF5344950F7E2F1E4FE4CA03EEAF72FF28505FB6A9A949CC1F56F325306BE1540E122615B77B92D3BA4E5DC0B4E7FB1B6621138C295363D77A674ABFF5DED4AD952643909C51A82F3BA24244326B92ADBF9F864646849FD8B4BEB988F84C4C363D7409F23BAB1832CE0F427B5235752210E37BEAE9394F870E1E245544B00655C1A6DF7AD32E3AD5D242C75B58135279E163C4D4D6D1453F7BEA17E481E9698649626CBF71FD5A1171FFCFEFFF50385E8E2BD85C71F0A783F8B2BD145D1674191B1BFB615D596800DF9D840FCC71839813093B1AA0D91A103B75E2C88B43172FDC93CD64783D9D60CEC8F97912324CBA6A55E81DAE19F9A5540DE77FE79061D8F3CD141928C51D8E448266BABAAAADA3F377DF3E7E829A602337E221F88166C48120D08996D3E2FD22C0CEC2862D8E9C8F1C3B29187E49932F3A6C64DA04E77DE0D041384DBF605E241C120CF506C3F97887AFF7D453FF4AF1548632F92512A419653C96F6836F1DA1370EBD29EE9319C73929BEDE0D5B375219EC3F0B273B5EEECF49A653343A1A8D56857DFF887BE776C60CF78E3AFD87B3F980D4D8D0D000062F1BEC276B29630F4D2DA0B7E04524B8A7C7E3F1A8BEB2B2C0AE9D376EBCF3231FFDEC249C14C3BAC36F1F150E70E5F2A570580D70820DD6EC750EB8605A92764DB7B2BCAC085A1E8359E26506E892C6C7DA326119A232242D05F2E1006DCD8A65F49B8307058A6198C82691353C8E404EA7E9EB7F4AF396523936E157D392066AACAB17ED2BDCE5CD0C494E24C504BF5C26FEB0A9F8C7407C7E288DA53F9F0D75FA261DE12B6006778AF11FB8686AE542F91202379D0172381CF65454549420E888404DBDA525119894B508FBFB04EC7BEDC061FAD5732F513C9910D06EEDEAD5F92B334E5FDFBC267F3D7694B158AC5838E7F97E8E1B2621F12CE5F50DF562CB26F0A9679E8526E5002F4382F8B7DFB4930EBD7918CCA9A40B1707E67CBCB998C0669203B672405891E9D524CA61CB2BB20C0D0F9F2CF1F95E83A38FC1F4647B7A7A8A56FE550B7BEA696A5960A3C024152E5D7F39793909C4976B6B6B7D1830F91E230D69BC0049ECEAEE15F8FDA377DD41837080FB5FFF0DC2FE7620940E01F1766EDF2620E147EED89B37513D403BEC13E6F0B4336E6D15A49C531DBDBDDDA47A7CC2143183D956872325762E4A1708E857CFBF00014889495452910FB9B4A231DDD8173435348AC9E81CEDB2F473AD02C65EF74BFA5F1886340E3F94BA78F1A236BD30A34E9FD8300D15CDB662E18219003CAC5457572B6084363E31D65F5DD790EB4FA65CECA0A3E3E3F4D42F9E1548E1037B76D3FD9FD84787DE3A4AC74FB5D0EE1D3788918F8447A3D48B88F6D22D4E533777B6F31CF583085C750EC3806EDBBC911B73C5326A69FB9C50284093B10465755E33C2234083A66B0BF99AFC6B515D0DAD5EB95C3860617A60FB0711C0A66066A323234F843D4A2F231F4E45D7D5D5CD58F95D9AE7274C88AEEE1733A44D9B3629CB962D0B80FB3570A4CB716CF9BA0D1B6F099755EC84AA97B279E03224E74D3855CCC868EFAD7B8406D42152E6DBE0656638F79FB3D1CBCCFA802198385FFD80F713F1188D83E96E9F5F68DFA6F5EBC80B89EDE83A47E7CEF7E7D1D1F4BF9FAF36C1587FCFCE9D882F360A84C8D74827D374B4E5141CEF585CCAC4EF80DDEF71BBDD51487F9ABBE816344DB5E0A42B6E3C6526DE7DF7DDE6E0E060865720C42ECF28193875E2F87E6C8FFBFDC18A65ABAEDB1D4B259777F75EE00E67102845FFFC93C7E97B8FFC0BA0A3873E76D79DB476CDAA79D60D9AE920D9F44442613A7BAEABC09E038A82F09542CA2D22B2FFE9E2C089D7030A975C517FD36A04691BD6ADB11DAF053B5B7ADA84E34DC4C6FE26E052A3600ACF259855FAE7D4806BF5BAEFBEFBE4D2D25217181084B32B038AA906232AF09DE5B09325D80F633F5853B768853718D9DED1DD5B01272909AD8046F043FEC1FD9F12814F6565B9C8B5E4A55ED766B6266ABAC0E0C78E1D251F1C6C2920E1F6AD9BA8BDFD2C45276222B22E966443980DAB3F756152EFECB3C3FDC0CD3721485C2BEE85B5B083E385B31D34343474CAA5673E87E7EC0D85422C78DCA0652CB82BE25ABDD8E17067586F6F6FD26EF5CED8CB098C605BCACD16BCEDBFD0378ED0EBB44755C3EB572FDF313436B9AAADFDAC57B68B34CC108E4E59C5AB2B2B0461E75A2A1E112735352DCB136DFF6BAFB339201782311F0647C00C6D5BC1947308C61604A7A6BD1839AD5EB19CB66E5A6FF7C84A14872F39DBD945C9442A4BE9F85F1A8A320AB39B282B2BD3A2D1E89CBFFA21BD0BBF06C2538A64D840955BC3813ABCF84E5E6529088246C00CD6FF12DEE238EF87B10D044391464F30B273CD9AEBAA9C950F9DA527F97DC0E78603AC1758BEA8C8AFE9F9C5986693E232C0E0236FBF45C148A99803A74FFFDB4BF9015C7BF9B2A5F4910FDE2E8249CD1690675E7899C6272769F042DFDFCA7AF6A7207E1F1835B175EBD68C334D6AF6D948EF42D721AB1F42F11CCFD185438EF10C43DCF40088DD8BFBEAC4E0A44E3B4CD259BCEFE262556C72BC253A74E17145A25E3C8861E8C51D16D1F1181D397152C411DD3DBD96C99A3D782D7A71D3565DC312F20782B3A259966E0700CCF6E238A619B69F530ECEAF871C4770C84D61D1D1D116339B7A8613A610B084DFEFCFA71CAE7A8AD2559622F31017CCE0004FEBEEEEE6F66E5E4680E7D74EDA4E3AC49DC81865EC2B0C38B0979E7BE627EC27D6AC5BBF35102E6DCE64730127CB2AA4131AD189B8820B369CF0E3DC3E9B2955ACFFB39064451170A08D6B56D26BAFBD4A2BD6AC833DEF2C2696AA8AFAC0EF7C608F203C434E2E6B9E81DD4FA5D3D9EC64F4615E250BE7811FB12C4CEF257F6EE55D61C03464257E0989B58267B4F35202C16030C3613A18C2886102A78E715292138378CFF370CB4F1D3FF62AF6DF8C9496D52C6A6CBA01C7EA321943D60D3D9F8165D3D4DA765654B15805962D5D4CD51515A240244D43D4D21C35EBB33D88375C5E6A873D9FEE1EB880BF7BC776AAC235D91C4EC2F4EC7FFD0D91A61F1F19FC7BEE15C37D8D01F3A778191DC0CE4BDAF7778D01B331C3EE16E3650574EEAB8799CA42B2786E6E8227CAB14F65A7CDCC00D3CA583BC6A3A3718C8BD01C7F655DC37AAFC7DB8C38C2AFE7EB1116BA61661C3FD16A2F3B43545F574B353555140E06E75DE57C1C4194CBE3CDDB7D87FAE150889A20FD3BAEDF92D786E75EDA2FD20D6363D1D6746CF2D78AE578E3761A67413FB725BD177E92CB09FCB85909CE5AFCA01054D8CD8B0FE2236196B02DC57E296FD969DB8D6401B188AAD7571D2AABBC3E9ECAD42493492557B04EB4B3F68FF39E4D166729972D5E0C275E9D2F37CE073FB948BB148EF70144EB0D7621E6ADA3C7E9B9975FE120323BD07DF6DFE3DECE605C84204D0C0F0F671F7BECB105F5F5A8F41E784D374FD008CECAF24C452D1008A4418438AFC9C044B77D846084CD9850369D8A8D5C60DB411E7F30B2CC152A59171D9F28E7998EC5553AAB50A4C161B7B6B58921BE130C61CDE0E45F085B5ECC95171AB4FA5B89AAAAAB80F79BF3C41F1E1DA597006FC53C83E1FE7FC0775CC07B5EB02301E26B7335E2BE673560368D606D808F90795D505E0DD5C30BB921A065AD809A87B08DD89AC04C88D81AE1FCEA1F435D37B4626D4637575D1C180E4FC4262567C9FACB79660EB8EEDC7B1BB5777489947563C3225A0494348AB8647C7CAC75A4AFE7CF211C5DD0B2C1542A156F6E6ECE3DF4D043FFB619309D11DC5FCF9019EAADC4E3719EDFEB867433239C9F5C149A81AD8823ECFD00DEE77F85C9747997A7B2DA8AF1C95859747CD2BDD0E77618C0B560869A1CE8EDDEB18D936FD99EB6339F85A29E8630F4410BC62F5CB890656071D54B15BC575E85AB9EB049E2E5062A2B2BB5FEFEFE2C88CF2B25728E899DB48FA12A88108634B2364438A8B3612D33C247D9541C0EA5D517F6AAB561BFDF54DC2B53BAD130198B9722CA76CD5661CB57E1600A23413F2F0C118EE6C624C01CCA2427BEA7EBD93E7C9F8878B9CC78B9C47FCF3360B6E4A0AD152C691AA05E16617E1A7E829B082679E124263859BFBE17B6734DCC84A0EDB0FD82196478243D3DE633CD2381B047AD0A54BA3226D56B065569BA5192D5B410E20D6F3A93514D7CE5C0C5BE83998991B6B0626AE125F54D99442290C9269EC7B5863026F93767E80A7F6E57FAB7FA13BDD3CD93B52C84A2BA7816752EE701F139DDE1E79487AD05CC187E1FB4DF8B722B4F7DE55F54B285917F5DC96E7C165A97E31931B2B5CC8153A4E2A0917B61BA780B1F350E4148CF956C7B5F68C042CC13B77BB35670CB07023BB1EA094C860B8CF080311ECE3FD96B4CF8712C08C6046C98EBD4BC7930F475E398F30B8319FC9730ADD2AC587D851788C576001A37ECF7FBE3A150284B57F163D3D2FBE947AA9D78827FCCA7B4B4546A6F6F97797D098E0D402CD60C972DF1CE4A2BE247AB799F8F3313F05E386D6E28B0032A0E06D9D7E478DD08B2D6151AC7E7E3887813FC2B4B0BC5FCEF2B0D58A0AFE0E564F44422C18B686711BD0A24C5E60A5B87214C6C17AF9E622F55C6088935872FA1F17237BC161CF679BE973043782F1678E2250A2E07F3BFEF19301F33C89E16C4B105B442E2008FA36E105886C952703AFFE00FFF74B5C22BB0F0E250B6DDCFE1331EFCB30026CC9AC939FEEEEE6EE34A50CFFBDA045D6EDA835FECC4BBBABAA4A54B978A1FF8844D97B9B9165A22C1C4985C4A840689A5F2F97C5E361FC196397DB2DDFF67C05532C47915202BF172883D57EAE46A5FFF0FFE9FEAE508C4E5AB0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (46,1,'IP_PBX_symbol_(128)',decode('89504E470D0A1A0A0000000D4948445200000080000000770806000000CBA9486A0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000042924944415478DAED7D07941CD775E5ABD0B97BBA2767CC600683418E0401E624D2924052A468525AC96BCB3E92B5DE635BDEF591B5ABB54451B62CDB3AF65AB22DDBD27A751C762991546010259212098A240890C879069373EA303D9DBBAB6ADFFBF5ABBABAA7270224C0150AF8A762D754D57BFFBEF8DF97354D83E245C0C5BACB1B94585FE9452BDAD6ACC7B5522F776D2958E465125F588411DEED8F2C14137A8167B846FC95320027BE415C916F8B45DBC6FA4A214129E2AB9666EC6BF83AEA352458260358886F25BAC49B6C595BCFC3154202CDD288C80A6F39CBB6625C4BAF768D0916618012C49779B3F1E6B06C1B4C215E219D402BEAF539DEB2D8D27C9DE1CF6430023181708D091617010603183D9D88EEC4E6B2348311640B135C0906B012DF207C0A5B923789EF5B45857A8DDC0B334029E2BBB17979F3F1B59B9FB35B90E0DDD60334DEAB550BF113D8E2D862D8A245E249BB260A1661008BD66F308001F99EC6751B3EE4AFACFD1FB2240BB22C0A3659162449C26D09F018C8323509F018EE63936DFA3E6B32D844895D23B1EB457DDB3886BF976CA2FE3B7E4CE4F791F05ABA8ED674CCD866FB827E2F41C46D919DD74451D024911DD3A627275EFCF58F7FEC0B45FA817A852C96F7140288160620B8F70A20F86D36D9A3135BE204E74D924C06D0F7ADD74885FB924174EBBEC498C0CA403AA3E8C77582EBE7F20C2031A24B06F159C3A71444D26380AB32651CB1725C17C85A98E0DAB20C1160E7B2DF8378E99238B164FAD8F8814D0D50A0A6E9E680466B7D1B352DBDE1F71654248C8ADF1D7FABB135FE48435AA808C50A364161BB1A41339DCAE5BB2DFD25F650784090F05E9AC4EE855D1DEF238186F7D2E8BEC41CA20692DDC6184555143B1757863E90B628ACD750A00403082510C0CE51C049F00C6A16DC4E37F8BC1EEC85481A846106CDB2808CA14337F544D9E8A1748D2830C28812120709ADDF1CF7156214057B2BDE37874D23E6C023A24E58C80AEC7E2AEE2BD4EB0582791DF2CD6D6244C690743C2FC1CA6BEB906755D9A2AB180AAB58E4C8BAB62C6005885614C00376EAE5DB3A3B61D79EEB3971450EC31223467ECDA19941B6983F57F23796EBF8F9C26B25CB6FF2D7CE3F97BFDFF0D02074F5F480A2320670F277908B1C59D79625444081F307BFAB8D18605DC7FA12DED877CBF12B2CEBAFB5B4AE85AE0B5D8856AA5CC254BD46FC15F8014C2F20422DA2B9C094AFF7C482CCAA316DA224F1AF89802510A0788D284B1C20BD675E865B06A502585705E11F79E4317BDA37532565846A546B3DAAA286D05099D9DDD9107AF4D147D52B8D00C5184F2E0291E42B08EFD2F7BBC43F234ABAA50257C04DFDC9FFFA5885A60A77684AAE1D8D956A5555AA544DC5B556A5AAB456AB54B75A266551C1D55494540A365A0BF0E6E951F59E0F7F2A82FB33C81433787E4653B5193C3B838AEFA8A609AFDDB9B7EDE43BC124F242C4E70CC014B052CB2F8E4FC1EBC7271075F19950CB47A34C37FD709FD6A8DA2331C8C6D38F937127EA6E79B62F6AFA31EBEFC1FCBD713F85C13ABBD6388EFB5BB76C82AF7EF5AB251E5C20ABE05D81FCDFFFFDBF75689EF84D4A4E7D1F1AA77723EBED428289ACB308AAEE93D004FE5EA52089FFD3FD17F4D415B8AE1025613D99CF1A59505ADEBFF1FAF1A1F0DD0F7DF255648803686FBDF2D3EFFFC3E9CBE1D594173B49661779DD4A7DC64834037D2373481F4537E08958B8ADEFEBC7F2DB7A4C466086FEFCEBF4738AE55CAEE877FC3AFE3BA7DDB680BE28BEA3DDFDB38F7D7D9BAA68F7A86AEE6ED107B728AAE8228004F27130C2236B93A92A90AB4365A631B12D1E615D40CC632B089C49046412125D881464C2824E52CD5C335661B716CAB13D80D73E408C73FFC77E37F8E0C73F734090C45740C87EF707FFF277C1CBCE00CCF123CB685A29F3CEDD73433DDC797D3D7B4991DBEB64FB0BCC3123B0E364A609A6F906CC7F2048FA75BA5B57F7E431D34E34B6058BA92758BC7E8269FE391D8E92CF6B2777B260BBEC84FFFC57FFFE839AA2FD317E8F1B6A6BCAA1754D0383F191F129181D9B86743A5DA08882C0F941357AB8CABEA54AEF86BD5BC5DE4D8E315523421736A2BCD1AD9D4E07D4D554417D6D3534D455B3F5D0C8183CFFD26BF45D2BF1DE0FE17D1F1224F96B1FFBED3FFA5710E4BFF9BFFFF467172E1B03A006A8D91C4E18EEEF874D5BB7179C73DA57E70730B7A522BBDFFC4D91AD5FE42F30CE152F83FD7D6077BA4194C5CBE6E97BECAFBE7533F2FED7917177E5B42C6CDFDC015B36AE63C424C6DEBAB183C9F10B17079030E3303C3A01C9744627367352A99CE0D8B3559DC02AEBE59AB9CF1AFE0B94F918916BAAAB90E895D0D850039B3ADBC1E37699CF9348A6E0F93F790DEC76BB291A58130517AE3F8D1DEAB77FF377BFF82F6093FECB77FEE7A391CB80001210034C85C2107CF500B8902345EE0924F7B04E8CC2E00DF3E38B3A7290475034AF150BFCFA8C5198C750E63D5D66F726CFA2C0D6125B4B26A248CCEB6778FF04EE1F10445DDF73B85C5059550BE2D0E0A513FEB1C74439B0E6F3A2207F499034C9F8D0672EF4C3C0D018F6C42AE85CD78AC4AA60EFB57BFB46D8B3733364B359387DFE22F40F8EC1F8E40CB4B73631F43C71A69B135C3589AEB2DE0E260364730AF87C5EF88DFF703FFBCEA596A77F7200829159930140D0513ACF0C22FDFF046EDFF39F3FFB67BFFDCDAF7DFEC7978600CCBD8B04C16F9CCB6420168B81E117300338D43B8D808E281605724446583DE0239A0C23CB063A903B59E4F7D19924475143BC87225A3D81FA9A88ADBFB72EE90D3169C75EE2B33B40BC0C0AC0934F3E29B9AADA7E841DFB5E92DC4428E303D3F3A43239E81D1C878BFD2350E1F74173632D6CDBD401814019381C36B8E9FA9D70CBBEDDEC7A7A4F5D64BD08474E9E9F0FF59A2EEBEBEBAAF077DBE1AE5BF7B16F652C842EE1D92854960760723A0887DE3E95EFFDBA96CE1921CF049C211AB03DF3077FFCB58FFDCD9F7EF67BAB4700F2BBE31776626F5ED7D9099EB2B23C1C33E8174C11608578E6B3977582D371D994F75C5CF0EB65465483518CF0AE7E9DCCAF61BF2B70058B057F8FB673992C1301F1441C2E55311E8D685F9124DBBDA248269A1ECCD29534BDF7E6D72244E349388DA870EA5C0FB434D5C183F7DE05368E76BA2EA33FE7AF3DB21F6C361BBC7DFC2C675C5D04342092ECBD6E2BDC71F31E769D95F03F7FF5301C7CFB24CC8422D0D2DCC0089B53147018BD7F1E034081586058200AFFF6B92F7F3DF4175FFCCC4BAB4300BAAB9A83F6F51BA0BCAAFACAC40216D0010AEEE713A1BCA21CDE7EEB6D403B7AD538F0F7DFF9FE5EBCE7E758E20897DD44684D33D685CA1B110AFB0012A899C9EB7078165C2E2742B81DD1C0C1908C89417CD6FFC89840422638CF885511F0C1FBEFBA09766CE934894FF77BF9176FC1E16367602A18E6286283D1F1695DC92D203E377C2DC4CFEF9BCD868CF8177862950CA069944887DAA8EBCAC50296B990E8C9E532C800B9D5DBC4B2FC2BD8314BF4762EBF558D13DF7A5C83C1D16918189962D72B8ACA7C15845C4CC7B1884B423597DB494C0A73F1343CF1F4CFE0A73F3F086B5B1AA11CC5C9A9F33D30139C65C4733A9CC52191BCB74398BFB6E44314A3C1CE3FF9AB6FEFF9C21F7EEAED55E800A667ED3DB130825D42DE472C16BFB7CCEF9FD7CB4DD9AD5AB4788B265FCA9CCB6BF802AC45B3714D532D2A90E3104BA4209DC9EAA240D39F36188EC2C45488398E02655EA61092A730A7E89911A22858086C41E7A275F1B6D190E1EEC6C32B67009D8B25B82CDAD5BBE00A3608B1DA656060A066F7EEDDF95EAE1611B79801166CC014C00DED6B60CF8E8D50591160F7BF7EE716C820F18F9FBE0007DF3A0D49C6081A5300776EED349F83EE91CDE6D8B564FAC59349B8D83784BFEB864C56318373F39140C82BC9427E3F1A9DB3AFDA0A104BD8DCB4F48ECCC1C0588C6B9D1AFB432C43882920C0615077851AE104A3155C47E7692D02DF37B28DF83DE819002C7F03D046AE837BEFBB6FFE432171944BF096F7F5F745F6EDDBD7526CAB17F670B5D086D774A5AE32E04505CDC67AF37A24FCAE2D1DE0F1B80B1F0F2FEEEA1D84F33D43CC294E329D7EFDEA9BC7A1A2BC0C15C97AB307DBF15ED4BC5E372AB74978EBE859A65750828DF11DE7890110B8134A30B74924C593A989D559015CD12AB59CED9D85675E1DBC22AEE07D7BF7946400951367B54BD785AEC8F1E3C7E0BA3D7BE63B6BB4F9CC60987236ECEDEFBFF306F0FB3C6C5F282136BB7A06E1F8998B301D9A65C47118DE4CCE402FBDFA36FCEABD7740C0EF9BF75B72067DE4C17B50C751E0CCF95ED43926600415430D4A8801238782C5223418991A4311905DA51F4010B82938FF8536B7FBC1E36A5B3502481C9E289750F766692B4280D21204EFA628AB933EB8B46FBD199E7DF639A8ABAB83B56BD72E2EDB2D0870E3AE8D8CF85662184B38128597DF3806A1488CBD3CB9B1F9C8D582E44405775E387018F6DF75039C40B3328448B2A6B1163676B422B3D8B9922AC18EADEB59CBE57270AE7B0086C7A6606C2AC8E220854820C0D8D818CCCDC574A7D3AA824192A4D9511B9D9B8DA0F65A0867ED4D3EE868F15F35AEE0586C0EBF292597AEDC15CC53E3C9432F2AC840DFFEF6FF82FDFB3F08B7DE7AAB09DD0590CFBD77B45E535F09EBD63696BC2F4309BC756B531D245343480881FD8EFF07CB86EEEA4D2BF0E48F7FA1CB43520E67FB9119FAA1BEBA1C95C81A58DFD66CCA7FCAAEDEB6691D6CD9D08666E359142BC36866DA39EC2BD0D73B804C14D69F7511457EC96090C3E581482402E97412659CC374CB962664DE312498F9FB86534730DDC482285A1248B93348E01E45C1727FEE7D9B6FFB7298E3724EC5170EE233FAFCE52B4EF915F4AE43CD8E5F4BA2FBD2077CE69967A1A7A7171E7AE8C350555555B2F77B5C76B86EFB06769F543A83BD7D0E66E7E2301B4B60CF4BE0760232D8534999B6D91DA6E7D2ECFB46E4AF806BE62BC6C1681C66CE92C3A98FC509D63456436B733DF40F8DC1A90BFD90CA28A86F78D9B5A150182E5EEC81542A6D515E17F68D2C69069207CB26BB21198B31242081C088670EE2904AE4F05B9B50B4AFF768B9E058DE4D6C3213273A752292EDA4CC30D308E5A0C2ED6D22142965845215D53520C97676CD0A896F24C17AF163D9AC9DE5DCB97370E1C20520CBE0831F7C3FD4D4D4163080CFE78663677A201A4B42329DD6459001EDB896F0DBB964398F0626CDB5425A6BA5285FC244C2FF33B3C80C284E4E2033289ADEE11C7609A6A66750891D84B968544F34B13C278A0B91DE55D334758508A0CBE41C9A2436095FC667D7C3BBA29477019B8C2098C417C5E2009195C0FAB5A2795E32C587207104E0A9DF024FE3A7A7B6A946A8547F2945E70C1D01704D2F2EA256AD2ED30C30609F139F34AF2AEC290E28527AE9631E397204BABABA60F3E64DB071E346A61F545557A14D9FE55680C81C3786450025D6665F2FB15D08005A4182CB42BCA060479845D40B06433039390DF1789C6718A979065079A0299396754067E363B5653300FD253597053B427363DBBA2B96163E4F5F2871BFF1B1513879EA0C43856512DF481E25E5A6025B1D76107B696B481745C3C3234C1C9E3E7D062A2B2BA0B5B5151A1A1A5044543293CE54EE0A923A16DF5E2E001021E7E6E620148CC0F44C10C228DF4911D4BD8F3A2A9228D41940332D22A277269934B2A4D5E2F191F2525F4A4113A2BABAFECAB98297E9896C6C6A8663C78E524876B90F67F47E0F67805AFC2E0B30805410DC2106A48F3E39390989441C262626A0A2A29CE90A2E978BFBEC4533E803DCD2B1C27FE1264735456144252710859633D450B78846E7602618844C26A35FC308AE70D19827BEBE2E4401FA238954D2182761D44F588908D040788F645367F1E3E5966F061203D83802F8B1059819B180392C08D6F18862C1BECE102A324382318BE1E051155D67C9293906D906B1C86145C4C96515247486B986B3485C4658CE040AFFAD82BFCDF1DFB29EADEA0129E695347A3BA140311368AA19ABC8A653C6BB8A2B62002301E35D73055FE2C27AC5F29440EB18086334B4239349CED81CAEB5A51C625604D0730384798C904F5D93780C216FEA194E2495F7604664CE1C744C33CC4D959B9A8617B2609D27AC15EA8D1E6F105F51F3A2807E33393E721116181FB93802805810A7BEEA63010A7D98654503B5A2C6460FA7E2B3431E5FC59E920E31512C480CC933825870CCD8D7C56CDE6F0016E78FA6E51544D3AF50702CAFECCE6BD6D432556F56E52FCF047C3F978B9D3F79F0FC4286A6BC34414A53E5E5B727B18DF2F46E7DF4B599D2CD1C20397D5F338A79287C5BD1D3C779EA3873FBB2D46F85ED9BE9E346DA38BF9F40E28BAE1754D8B97D2B7CFD1BDF288900CAF25DC11A97895449841598884C8F9EF6056A76DB9D9ED6620428116B2F393CDDDA61348BCD6F350F0BAC030B53184487528EA7851841D52CE220CF040A5708C786FBBE89FA4492BFEBCACC4092FD64B2950C9DA209343193BC22B1801AD4BA1742805C6ED9D120A3C2085516097353D0313E78EE89A6F61D9F96649BBFD8123074814246C88B04E3585EC9CEC37F0102584CC402BF8025B8944F0BB72202948C4B981A7F11234442D32F1C79FD274FF277CCAC9801582AB76CC31BCF97ABFB6F6984FDB736EB9E41332D9CDBF225CD40A1D06434D2C4E6B98285255CC1BA13A9B4EB1538722CD1F535CA74A1FC6D9301425C17107299B43AD67FEA1F6A9B373E6277BADB0CE21767DFCC8FCD17C6EC0B98C06ADF6B5A911F402BB20E0ACDC802E629100D5084149C2118F115756A6CE8F123AF3FFF8FFCDD62FC5D57E607104449733ADD30170E81D3E52980379DF0C255110BA0773A71FC18645822C5B2BDC186EC27111031A408B67426954C0E5F3CF6F7354DEBEFF606AAEE2413CAA07731E1F34C918FC9CF37F38ADCFEDA7C0760B12F402BDA2E5028C1A25F1421033EFB78D799237FD57DEEE86B78D10C7FB7147F376D852200BB85CBC990203439CEC6DDCA660F35DCBCB299FE9477EEE869DEBAD710784AB78E128268842D45A6970AE65F325E4A28C897D748B1636FCD951BCD88FBABECABD03A9355D92D9C6E1F9E5F9E08E028608881844524A4788F999D1AE97E323435F48BA6B64D777B3C9E1B2898572AE267BE85509ACB4AEE17107E3E2A944291F9CC94BF3E954E0C0FF5763D71F2AD577E8C1646908BB539FE3E593D5F465B1903B0002BC1B4DDA1FBDD73599604295A46FEE895418A53B8F3B57C04435102D19493C043BD06E1354B8EBC91D665D8BBA6364BA68D45BB2553CAD867B6B7DBC3DCC3CAF27580622630CACEA5390350CFF1E732A9E9810BC706C707BB7FD8B979FB4D0D8DAD9B5C6ED73AD02BA814E4EABDD34B31F552E9E44424183C393ED27FF0E89B3F7F959816F42A6931CED41943435F681CE1923A8086766A2C1A664121BBD3C5E5BDC0CBC2E810CDA27B4C9EE78779096C50886C0E1D630C2388E6D031C1F0AE09F9216182710FD0CF91FF812A0509465918961020F1FC021E2DC4461EB25367CE423411432658593E808509340B13A42C4C409E42773A191B3B75E48D5E6C5437C9BD71EBEE0D1BB76EDFD6D6DEB9D1ED26AB41939663D916F38BB0025358C966E742C1E93393E3C3C72F9C3B7E78A8B77B88EB3009CB3AC5096F68FDDA628348E5A59C65A81481C3EE82B28ACAAB3A16B0BE73037CF3DBDF866C26B7E2AEC83F90A1181A4C90E11F34CADDA846E14C27A2A1F3CC89B786B1BD4EFB8140A5FF7D1FB87FCBCEDDD76F696C6EAEF5FB033ED966C366F7E1B3B996040823DC4D7E5784BD4C261B4BA712D1443231974E262333C1E98BBD17CEBC75E4CDD7CFE1A319444E41BE4066C642F465117E590C40A904B96C065C9EB2AB3E16E0241F3C79E09691166ED44634BECF638F3DC6D65FFAD297D8E103070EA8535353D944229173BBDD9973E7CE1965738C225A360B53D82391A0E3A9C7BF7301DBD396EB58F3F97C8EF68E0D81BAC635E55595D5E565814099DB5B5626C9B2233E37178DCE86239150383C333D191E1DEA0B8E8E0E4573E426CCD73E36889BE6CD287D9785C2FAC8068A692B1936BEA412F85EAAA9C65CAC8B338080C41688D09B366D62DBF5F5F5051C1D0C0685DB6FBF9DBD3645DFBABABAD4F6F676EDECD9B3B9643209A80C8A3D3D3DD662DA465D656B0D65738DF7104F1C7B5B046A85852B8AAB9C5B8B5A5AD756225B89AD167933575505754925D0C82F7B2F2CD4FB1788050815151542676727115C4CA7D322F66A468CF1F1711613A0244D3C2E54565652C2A64643BEABABABB59A9A1A0D09AFAE59B3064D6227EA9F6AEE85175EA06411B3D6434B4B8B180E87053C478D122F04BC9682EF42241259AC5A4971D5F385F6D512EE6B582DD157C0000BD37E2A948299D934CB10D2153ED0133D457D5BB71204A3D81053DC8C91ACACE684289809A422DF368EE96961FA359291142AEAC7E8DA8AF272D8B56B570957B0C60753E41FDF6EB7B3F2B68D8D8D62737333115C42E2CA4864446159C2EF27A14C27A660D7E1B68008AC513E642C1653F11A051560059981C9D7B2B232E5339FF98C525E5EAE7EF39BDF644C838CA5C6E371E69CC0DFB02F862284EE81FAB1A8F5F6F6B287C17B188C03455EB952F6DEBC63EF449DE3251960A13F79E8F4CC154D0B7FEAFB4F954080C26820254E22F104FCF012F67C3BF66E219BCD4A0E3DCDD68E84B6D1F839D02BA25142282B8A45262F59064478FCE639FC4D068FA7F15826954AA5272626B2A81BE4485410B20C0D0D89B5B5B5740FC1EFF7B382112E974B45E2ABBC3CAE160A8558CF45D1A33DF9E493B079F366F6651F7DF451ABF7F05D97B84B3280B84028B8B5C103B75F57AFE70B50CA361BE0A16F53E9582A8EC08A65502914E029DEC5D78296FFBD90DFA661D982918B60396EFCAEBD6D6D691160F10350B530ECFD222A61725D5D9D9D1800E537D2D466C70FEEE679004EBCCED5D8BC66AB28C97ED4C059D55B527E0DEF9B92CB86A3B391E3C9786C02E9134382C691F80964A20C129AF57CAFD7CB14433C27F36A21243614420FCAA9E166A68A4AA58A08A022F155D43560CB962D2A29A04F3CF18486C735D249DE6D86586A5C8046899699749269D9D6655B4739ECD850B96A33F072A7859382168D2598664FC447428BD80B2524BE03E5B88CD08D9699CD8DE7880BCA9BD6B4EC2BF3076EB43B9C3BC9D6D71D4C0A4F3E55CD819E74CC53E6A7BCC8D1583CD69F8847FF361D8B1D46422788C0882246655277360B7E44FD14F57C44911CDE23ABEAF169D6083508558829108D541447CC3D4BC437E4FCA73FFD69EDDD64882511C0E1F640343C0D91E014CB3B1779D50FC3D963D40192B943473053BDF5EBF28914427EBC3F3F278842618285209A49282C2BD8602ABD1488AE5318D788FA8015FA5D3A958683870F0175FE1CC200328D884A988C72DA89F04F8A1DEDBB5C6E77F9AEDD7B7ECBE3F5DD85BDDC9927F2D2DEC37426D3188DC51B515ADC6CF7559C5212894F284A2A84BF2544F125C0795F5692BF2450B5634D0B92E817403D6283EC2B36411941DA31F38DC40931033E634E375C14EB14376471309430180299C064088B057BD99861691180C4F4B8BD1042064827E2BA1BD750DA04BD6287112D132D63D3E62BBDF3439E2C6D4AB50EBCB48EC8B564BE688561CE82A6682C1DDC5D1600D9E1264B80A09FEC6F3BCA670F3617D9E2CD6B5A3AB66EDFF107B26C6B365CCBCB5D92A91404C3616BDEC136D9EB7E3217493E84EFEA5405793D48CECF4B7AFCC286AB3A541EEA344DBC2923489FC197A1DAE8214155FA502E1EB30BF0B253CDF610432023134AB035A203999A0C25B29418C84DC19191111219840E2AF755A85674B81466585A09C41E92A1CC60BB131CD8986C36FCFC3C853BCF0C86BFBFB07A856809973206D1748B58D084225343337D0FC23C05542B08A4A8966B6910C4C5BE01EC4E2C4D5B40A8B5A132E646E24B289FE51B6EBAF9CE96D6B51FC76B1DEA0A478F269329980E86E6FB1C724A3BBE0F4B24551CFE47252AAC5D9CD5931F4544D646B526CAD5B8DE9BD2B4DF496A365553950872F10092F0985D82579C39E51C55A14150C8204364F0FE591225333333394431A5D80740E8F0F0C30FD31A56CB0C4B32008D08CAA6335055DF7455BA82055E4A6E787818FEFCAFBF41BD53C01EEF44F8F72113781E7CE8573F52535B779B9129B322E263CF9F9C9959D81402A95273797F15EDC976C9427045E3CC5994D903858C21A2ACAAC06D6CDAAE8CA67D328358A7E4C490AA64CF4882F64C40965F9265318DE28B2C902C6F6495E4F098821689DAD4D4A47244D0101D563C33CAE2AE604D15D2F811DCDEABD315CC46E2821E3EC60F017EAF0B42332051EFC7263FF4F02377D43734DCA6AC62CC781251657C726AC17A03886AAAEA706CB3393D0F1466F268F0836C1C86D42CB40832B48832AC417DA7D208731730861102369902CD50B95203C76DB87F5B041F3C974C4FA02972D86583EFFA1DD2297205A388CB90324140843A4E3693C928B1582C8768A7A089A9222A2C1B0DE425332755E5AA77045AF506FCE624FF7D1F7AE0C39B3BD677BE6F2543C58C6506217F26145AF41A449FA8E8ADF834B0215779A2F6A0183AAB6698F3EABC96832E3400D022060F7EC4667CB86664864690A04A13F32851CC143C17424668B3DB6C0DB8FF20EE3F388D0A64369D1CD072E997031EC7E31E9B3896A3BA3808D448FC34EA0F14B7C8221328CB1505F25201686384EB554B7CAE2452FC849E551244E903FBF76FBD7EDFBEF7AD46378AD1408FE92956E06951EF98CD5E865691684DD3CAE1E11FA7C2F9192AD8F0773662904571FA9021FAB189CC6E14A01199A101C5583D3244359F22A7B862A8953190E9EC0E87633D6EAF47CDF13F4D2693B14C3A755653734F37059C4FA0D91B41D100AFBDF61A791C732812969C2B71091D408577D53925ACACD7D33F634004E504D0B18E8E75DEFDF7DE77973E75D1CA9E3D954EC3C0C0B0497CFAFDE4F43454565480CD1CE4A932ABC3E5F68985B580005E4F44615AD1A7C7616E6ED0EB1FC0CC3428A8A3886DED2095979BA3338635054659367506ECF8F275C80CAC114260934A2483E6954C9A85CDE7757BBC7B716FEF6C2EF795443C3E199F9EF993EDAD6BFE99BBA6D54B4200D299486B2EF5195F78730C5E3838AA57F426172D186E5BAEA412A71BA9DEBC22B8A8E5F8BEC22B887337AFE57782E90AE669E342919B5850E1BA5D3BE15BDFFE96393C8A46D59023A8AAB20AF6DF7B6F353982562AF75319B4247AFACD9238A3631370E4F809988DCEC1C30FDECF1880082023F1FD953505DA3E6D4710815E4ACDB18C29819BC412B778C49A5A5042A8F0F7F480B87327644F9F06F7AEDDEC9D0D46216D6612F7A7B19D812C234C1532430D12BA06D79554B5D59A155CA464223A90F95B97980BDD83C4FF17FAA8DC64BC142B405B509DCC22DE25D3B94562014A895880625E2716C402D4A563013CCF41027D0896CA074050F83785C42706D8BF7F3F0DCB12D4156AFB841E3D487C42201A8FF7D691E3D03730582066E83B389C0E282FAFD167412B82E9E7A23390D5788514CD820034A4FDC471B0353681AD733DA40E1ED41D62C830D1E79F03C9E902FFADB7811A0E835C5BAB5B435C7C84911966F17D7BF0FD25BC6700CDEC6A6206BCA20AF419DCC0C2148958940D50A73F4B318AD0127ACCD20C20081AAB925922C67EEF2D8D70FFEDCDEFAA2BD84C1B13F5220E346C3D8D3D17CD211068F8BA4B5EB1A997C966A0ABB797A1099553191E1903B7CB059D1DEDAC4A17DD3B9BCB429DB71ABCBE0088363B40112C77A7127034196352DC243E630424CA13DF03D7F5FBC08EC44DBCF412C59DF1AB4B903A76146C657E961AA7D2C0CFA121881D7A13EAEE7F0052A323602F2B035B79A51E2DD547C1C31CFEDD38768821EC2077CB2EB08158308228119BA56F43D14B91887FF6ECD9254DC2259540C9E680487006B99F46BD3ADE4D31BF706E1C1F444981974432C1AA6992AB78A51A3FEAD4D0D5D3CB46E34691F834C6BEAEB69A9569A7F1FE9423C0B6B1B95C6E90ED2E2836F998298ACC791332C7456404120592D1FB71EDFFD8C7411D1F87ECF9F3E0BDF14690BD3E48BC758860070237DF02F1A3472079F60CC8C874AE8606485EEC0647551524BA2E80D0D40C82AA81B7B5952B93BA48A94471E4B5D9E78D09C09E4A6E74F222B23F8FE6A0B2D4A4D98BEB00F84FA664509707C68707F50C5C7D560E302A560845D98D2C8C0642E1A817FED1541D4F596107D522C3AC152D40350640EA43BDF49FEBA35E8D5E2768869B5A80873EFC107422B4AE54E653AF3E77F1223251069928C998A1CCE763459C7406A0B593AD1D2EAA1BE160B8AC9590C35B7C65B005094BE7A6B369E846A6EC4166E84B25218EEF606B6A020945001B6D4DA565D6A128E8EE86C4F163E044FD20870CECDFB60DE64E9D82ECE424546CD90AA10307A0AC790DF8DAD6729D02CC89399B6D0E3638C6EA714C24627C9432501452A6AA2094F4827A80B2987368710450B53CA4520F53F4295C8445CAF1160C7B32C7B1E9FB6619373E9C49DF079DB8169FBF620C6FE669DF1A53F67446D0AD52DDFB77E79D77C2C68D1B60A5329FEE79AEEB227321A73319F677FC7E5F01D1AD8C90E168434863B3C9EC5B148CCCB188843AC905B58896376B15BA1581F72746E84FC56130938234BE0889034F5D9DEE22471113C79640847061CF172A2B21F4C6EBE0C66BCAD6B4E8621078B535DEDD9A119D64100A1C49B3A119DD3FC19E4DB3A35E83EA909D119D9C4354EE8694C2158D0CA24B091E93D159F0F9FDF8806E9E956319D625483C42689D3184470A793450B04601C5FC2C21E678019E6A6E8E21A068A304FC37F98199A4146649F1C38F8A063134B7B4AE98F8B474A3CC4F24928CD1E86FF851DEE67B7D61EFB7D96DB067E776A60F5040884AB28422B34C5F48207A50849444235D6775E4187A4223BE4803DEEB262867CF3A813ACB2032C410AE47D329C821F43BD132103991356434DB868D101FE827BB146C884A22AF3D48D7F8F1BBF96DB62206044823E21043CD84676F3FD3D5F37B1515DE1FEEDDB2B93B1A8DA6C939343636461E428D87F94D465852046450B9F1A31D5C5E5175456201A2A5E8218904EA89A4B5FBFD815525AC0E8D8C4230A457E226D3CE90F17AAF771630023DD3E68D9DE0F37AD96F2B2BCA01DADB0A9250E95ED333332C60148944611619839E8BAA76C9B642A6A0B98E9BF16F36A13E712397DBE39C1186D34998440B447549CC7C2CA7923C5C01D46B255A7A3FF353E4E13F8DBF378A6A21A2D547A2739F4326FDDCE86830FED0FB6FA3EC995443434376CB962DE42A26F350337483C51940D104FAD84EC7BB5F2DDC141FAC74BB1EFACDE0C7220620E21373AC54E3A7BA798323236C900B8D66A22AE82E92F1257A3FA59335D4D542457960011F099A677DFD4C87D8BE6553C1B9302244FFE0100C8F8E216384196A9595F9D0BAF0CC1BE0D98C1DA1099FE37A44087A9F497CC771FCE6E3282E822C75C0A864A17B14D738DD947A54A0838C8F4E9B884DE864FC66DFDEEB3CDDC3138F7534D5FD391911683E131AF0E4297D0CDDE20CC0EAD6E4E04A2C82E543130350EC834C321F2A5C36560D6C651A3F297A24F76D28C7DD54D3DFC5153C6C2EA745E3C735D5E8253468ACAF5BF07E240EC871D4505F3BEF1C21C6A60DEB61D7F6AD6C9F6AFCF4F40F40FFC0108B2ED220D67244D5327C17EBB038624A0321986B194F4C21C31353CCD0FBE33B57E33316C70C42615DFE4FE1BD63B138DB6E448BC261972194C9FDCED9FEE1DF41548D23821E428A7E614353C391471E7984E5262EED0A56AF4C2C40E30E18DA62F63EC21CF5588FC7B3E29E4F507DFAEC05566BA7AADC0B5ED4D8E7CB7C5D04507D9F69B4CBDBD7B62E78BFF18949449251B8FB8E5BD9EFACCBC0D0301C3B799A158BFAC0FBEE60C7A8F71333180C3187443A77A10B4E9FEF46991D46D152C52A8D0986F564F8FE49E34791D0E472F17A89256204A4A8A34543893124DEA8E790A2BA6FCF4E181E9B60E565D958CA5CCE833ACF5D01BF6F2722411365352F290234AB1550B48C4E25606C26C953B9F2F57D8D7DB368028099126ED40C36AF039EEA6D661941BEBE302FDE0ADC34ACA9AE84DB6EBB7555B189B3F8B129C843CA1EE5FD5B095ECC0804DB04EDDD177B51D4943131D0D8500F7535D5CC29454A71574F1F846767997258BC34E1B52462EA6B6BE6079AE271181D1B87D6356B60EF75BB5823CFE3997317E0D8A9D3303E398D22A702EAE91EDCF55C5C9AD6BA4FFFC3E1105364074747D83C03B4ECDDBD8BF93598522EEBCE31A24799CF45E89795849C8CFA40EEB1C71E53E5853A1FA7BF9EB255E2A2A3E743EF485A38C51444D6C8EF2E208C896CEEBCC7FFFD9F8BAA6F2C6FE91D1864553429137C4D5303C2BD6B7EEFE7723F180AB1EBF33A438495673B7EEA0CD339EA90A8CD8D0DB06DF3C679BA01C50E4E932987F7B9EDA61BE6FB1D9071DE3A7A02C6C627506CD49B05A0EDC82CA4686EDFBA99ED9F4731F5F6D1E3D0373C8C0C5BCE32A0658319000A269BA22343C383108F2710FE830C4168DA39EA2CC1508431914259D9E420226B0445DA6C7456F47ABC627F7FBF30323222C88B21304230D3154A09808E661F7CF0E6663DD55B34D2B979556FD0D3C199E62A5852C085FC79C9729D99022EEAD133BD3C9D621EFFE8C30F30885CA9B387B4F39EBE01B6DDD6D20201346517EAFDF4114F9E395F5ABD1580859B8786479872475E48AFC78D0CD5042D6B9AA0B5B91989E54346AD818E0552D69368FAEDBD6E27782C45B78990D4F3096DB6A122B97943276CD9A8373A77E6FC0578E995D7D8CC611B376C40FDC757208EE99A085A210304FDC08A7BC38DFBAE87F85C5C27BECA67285504F67C241A6273F11F54791CA2DFEF270698A703140F3FC25F4B108BCECEAB16BEB1CD0F9B3BCA2F5B2C40344BD3EB5F9C94CF8C3EC0021A1012576AEF93767EE2CC59F691EA398C1738782CA61F11F7F0D163857F639171FFD4D308624F9D3DC7D081FE462DA2435B4B336AE15459DD5530D5CEE973E7E1D889D3B0BEA31D6ED8B3DB9A760F1B3A3AA0A6AA8A214B514A3E6CDDB411DA5A5B980FE285970FC0A1C387A0A9A9199A1A1B4D0620519448A4D8FE0E44112A97AFA7CD4B7CE65285A10C89B370381C6DAEF6FF252AD4DAECEC6C811F603EE1F512F68A805AF3C8E828249309363640B4A46D0B96DA79FAF02DD19C67C870F208D6B1FF823E444C4F1495F41E2FEAE30FE99CC66B13B36C60640052FAEEBEE79E552991F4D1097649DBDFB179139BBDC361F5F42103D0146C44FC370EBF6DCEE3B35A939564FB30F6A8577EF106730AB5B5AC817588061DED6D8C901B3AD631DD209F549A43063ACF10E5DEF7DF5DD26AA1E71A1C1A815FFBC843F0D10F7F083EF2E0FD70F8C83178E5F537F15B496C2289E1D1713E0B999FCD5E96CDA499C86049B98A3E7F3159257AB028FEC5B20A1F93B96BD7AED51005E62981D611A96C0832CBBA936418191B03056D5363C64B6B3123D5520DCB0893EAAE5BD5ACF69D9F7D83BB7C15CB36D7F6D9313EE31699627FF9D53F672FB3D220CF28CAD989A929B67DDD8E1D6C2CA1D1EB1D1C050CC2BD7DEC04F6E6B95579368C499FE7E516A4D208DF5D2852CEB177A38492F5EBDAA0735D3B32C45A73FA37FA3D451D1DF6F9156AE919776EDD02375DBFC77C5EFACD3E44106A177BFBE193BFF7874C1C11A2EEC3EB881168C65660697C7AEFA7FC0562BCF1C9C9EE9A80E7653C4E49A60A7E07953289AD08608C403588CF3251E90504BC89C75F69C9ED877921D1C2D265F90997AC152B0B8A19168CBEE1E30078F209E90CBFF69187A163DDBA558477B3ACF7D3421A7C475B6B81CC2FB40EBA61726A7A492757A952B93BB76D810684FDF35D5D30139A8589E999059F89EC7362C8575E3BC8D0716D6B3383FECD1BD6239C37CC7755F7F4329F0559126429945A9EF8E133E6D8860DEB3B50BB77E48B5671D94F8C6173D8481CAA2E59FC23BC344E29E708FF0A0BA1D3BC84C5B00FF93A3909411253E6008AA232E7A5B2524A4DAC98AF5C5D54D7D6188AA5E6CF11D39092B879D30678E881FB56559CE014F63A92FF864C34FCFCC5859DC866B6267DACC8C1499338848270E8CD4350162887682CC67E5A8BA6E2EEEDDB50A9BB08231353CC8A28BE2DF924BA2EEA047EEAE9E7985F6353274D4ABD01B66EDEC02292F5B5B5ECBBB4B796F645BC7EE82D78F195571963D27CC31DEBD622B239D9F734943E117BBFCAC3483333D32FD494B9FB4917A5318DC16050F57ABD057E006BC954A31A4542926C095DF3B6D4B92F36478C630584D7CC913D05237C4A218025DA27F0A0C76F7CFCA33ABCAE50EBA74C5EB2E399F3053F24C95EA9444D419A55836CEF85D2CE4B16C72E3A44B2379A48401AC516F9FCE93441F6D0E0209C3D7306AAEAF23D9B20B8054D30D21362F144C17D48FC1C7CEB08BCF6E661F6ED4819A4E726F772A981B994A2F6D77FF74F5C0409B067D70ED4053C0C5914AEF4E9D3CCB2A954201A8D26EB02DEAF901B02BF770A894F834CD808A352222007965269A22C27F5A16B96796E16EAF925886FC87ED58CF117D6B3351940CBF77E9A4F78088918C50FB50961D2E15C7E12CAE9B3E70B20BA14F149B93A8AA6D772FC09A51CA08428E44F989C9C41F1A5E50B33E3FBBCF0F35760727C8CCD5E42DE42B288D0E6864F7DE2E370E2E449D0B229186316C45C49FEA20E449EC4DEFE41F8C1B3CF33B38D5CCAC458E445244BE6EBFFF06D88CCEAFEFEB5682154A27E43BE0736A49D3B7C54411FCD456F98989BFB86DBEF99C5F76555C368EC80355954E655B2040B13180C201C3EF0B3A7CF78FC6FA049E6C33FE045C2BAF07207CD94C6AB62319D5ED5EF272CE04DCEC7E18B0E3045481390CF6C92D3EDB2FBBC6E2F6AA67E25AB3C72A1EBA2FBE4A9B3D08E327C2742B9730946A0DE15E490CBE47F093F3E69DE474F9E02BD04CFCA1752486FBD712F1C3D760C2E765F8040653563285A880834C163556D1DD36BA8D7EB350C33F0DDEF3D09A7CF9C86B5EB3A219648AC284BF9C8F193A8F91F674C568E9AFE14D735289EB1617D3B54505454E033AFA97AEF8F67F451D2D3D3D3239565EE1FD1B0764ED3DCA64D9BD4471E79645E38D82A024C62C6E3F110367A43176F340CDA987DA2B8E6CD6AB468013F2AA1BDDD2E7BDCD55555B59FF8D4A7EF8BCCCDB9159EEA4D1FE04D3487B66DDDC4E4ABD7E3293936E0941EE53297EACA8A79A61A995D496E33AF6621C6F919DAE36FBE79901173167B32395C3E7CDF0711F64F037DAAA9F02CF6D0A8F911C9861F9B0E4259552DCAE2E022C3CC965E28F46C741C2A984DD685DD616728C41C6F2802326A9625B96473594D52737F2C8AF628324F92068DB85C2E8546192F34638866E99E19CB7E06F275F3EC50580C49B894F83055E5E023799D8140A0ECD77FF3B7EE0E042ADB6822E57034CA142652B052F842075E7B139E7FF1E7CC93461EB8B52DCDCCC60EF8CBA0176DE9391E05D37B876B1EA35CECE93395B2D5E52BEA6769BAD7AD3B76997112125BC78F1D8793A74EB119D6343EE71031C64DFBF63067561F3E5FDFE0309E1374EFCA527F53584C17115894B2BAB28AC1BF0EFDBAD2A7A0DC0FC5F577C4DEFF46B5D7758ED30D3F6126B77BF76ED6FB49F61730001703C5A06D1509194BAF97203FD9C2A5240808A891D2485E3B8DE52B2F2F979C2EA7120C0761627202EC363BF3B9531898227994BC49D03A3139CDB4F7E75F4C32F82599FCA1FDBF62DE94A0F8E107EE9BE717A0B6DAA58A1262CAFD289F47A806901E93E08989F44C036313E0F295B3D93F0CAD8364F704EA03BDBD7D505953C3BC738B7A331789B85A4F91CF60235A0DCDA887180E1F91742982FE448CF5FE583C9E2977DABF4C81C7743A9D447194412457282368A99430CDC2040603885C39B4CE38616DAB5A90F06C1C3FF67C7B4D4D0DF9A6B3B228695450839421EAF9A4192BD91C5CB77B07DC7ECB8D70E8C831781D8FCDE13963EE1CD2FA355341F3C1473FFC809EB9C317529828BAB70CC5BEE441F2256C4546FCE10F7FC4123B1CCEBC4B9C1C3AA954521F98C1AA99DA392A009CBBD08DE226A6A3D8E048698B56583164C296CD9D2CE6E0F37AD837D0B57F5DE90E47F47100D170F83B01B73D84A749F3278B2E170E87B552C134D92223CD7C310B3308901F8F5E0AEE2F8901A85217956243119025F9C4EA4598131EF19AC028DF7E71F030CBDA5D8F90FFD87FFF2C79B550E33E002F1DF80590724B50494E955FB9EB0ED36BA60760522CBAB60C51B4207548EEFEE8D9E720A35041E62CD81C0A78F1E3EFBFFB4E3886FA09F9FE47D1E62FCE93A5F98B44D90E92989FC6050A3EA2B04C8EC81FABADAEC2560D2DCD8D4C9560C46776BF02E3E14956212D180A4D9739E5C7F1DB91A941561CCB07A42A23B09C6AE146D954FE61842264102E031FB305CD1162008A70B161CD0853EA8B2FFCE4A737DD7ABBAFBCBAF28E8989A9405AB55609519987EF28CA5ABB6C6321D74F7CEC11D6D35A5BD6A0EDBC619EC276FEC2C585A7915BE65393164FBD5E94B2E042BD8232911C289E9E7EE639387EE20434B7B401F0E164142226E56C2E3607C74F9E459B3D7A49D950D6854CC20DEBD73177B29DCF8F68D8FD343682F41B365E2291F853D52ECEA2661DC7EF96A1BA44D8D48542E94B640517D62B1784CB971A74CF3DF7087D7D7D34D51A3D032BC3461C7BE88DD77E4E0E3DD4091A376CDE76FB5C22D93A3E352D5B51612E1E871F3CF713F8DE0F9F61E6E1FBB1E7938944CA91F1A2DD287B69BCDFB295AB258EB1F2715C86533AD8CCF43404AA6B591CC4C6F313AFBF6E27F45EEC419BFF0454D7375DD60CA94E243E79082972C8205F50CCF4FCC19131AEF8CD9C70D9846364F6210390EC6755D049E9C3B68A71010B33C46559A8E60D2A2739AA8F438E0A24DE2C3737A9F2A6F2E6EBAF7E9F4CCF75EB3BB738BC55BB864727CA698E5E33764063E7B097FDDB134FC1FFFEF7C799E6FFA1FDEF875D3BB6B2F9F6560B50446C4218FAD0FD8303D0DB37386F986D4565A5A5A2988E32070FBD0DFDBD3DC8A009502427CBF1836540FE52BA08214B0D6AFDE42EA6142F43E9A3685F3F2AC44936363295B3A9E92FE3C353ADE13815A3C235AB46B658228D0C5768A18722AD9472D3485121AE45080B7365D36088325C7B2E765D788B50C1E976FBD7AD6DBF29341B6B1B1A19B5154F954AF2FA1FBFF3AFF09107EE87DADA6AA84179E971B956FC6C1432BED8DB0B3F7DE10558DBDEC1084D1F9EE0D7E9A0F0F8388C4D4ECDFB1DE50804AA6AA0AC223F69D34AB4A652F84ACCD8D1B10EB66CEA048FC765EA13F4FDC291191841EB464F0C09FEBB1DB449FCBB317C7E32FBB2A858ABA506835C150C400F45C58DCE9E3DAB50C9132AC048DF80CAA7E14B90F32986971022D0644E9498EF4D225C749F3DFD2C1E77B6D637760876D7753DFD8395062A1822823E32058406287B873C68682A565555B05C85E550229E8833EBA1AEB19965F2903B972C0C400BE5FCF95E181C1A42D3AED62418F91DC8F337632926B56C69B9C465EDAD6BA0167BFFFAF6763D78C652BC0434395370E67C374F5D0B8FD8B4ECE3D809A2F81CF144229141EB4A814BAD0FF04E2FC49D88026A4545450EEDD5143EB866E9FDA4C57A70ED45A21203F8681BCF51734F8E8F924FF542C02E7BDB3677EE1B9F09ADEBE91B7018BD2E1F6E5660727A0635F549A64835D6D723415D4BF63E0AA596070266F148CAF5EFEDEF857028021E5F9919A8BA6EE776686EAC87370E1E8486FA1A344B27566C6A2E74B2ACCCCB52E16ED8BBDB92E2A5B0681F29C434321A3BBAA224A25F14342D82A2740E7B7E8A4ACDDD78E38D052EDFAB92010C07148D6235FC0E65656554FF288DF22B29CBF21C12D14DA55D89F0C408F892C400062AB8F1DAF8E4C8E08BD8B75FDDD1D9D69A01E93A9BCD5E53AAA620D51538DFDDCD66ECA4587B4D4D15E833C82F8F60017F055A2D01738A56724153AFFFF9CF5E028D92585CEE15E91CC212C926EBDA5A997553C3F40D85C7F905E81BE86705AC989F2338F33D7CB9417C9EA81EEB4A66497F2A76F95E950C6065023E8A550B0683CAC4C404154B4CE347B0E18B27280085D7443933908FD7C791C04B553A694DCC108F46C8653D18F0791E4AA633354A51F8D91A86A6BC7E72D152762EA552515C7DF964CA1FA3E89D375009A9744AB714565191ACD442616142A07D2C21C448F4509983ECC4E9D33AF12391312D93F82E7EA30877F9A63D1E0F397DCC70EF55CF001626A0B16A045B1A15533E7CF8B0D2DCDC4C2F93A13A79642222E1C8B68D72DD8028E62134A086CC420A23D5B3F3BDF493E71E6F6C6C6CEAD8B8E5465485EB102685FC44CB5A0143500CE1C4E9B3AC8705023E58D3D0041EAF7BC50A2DB3CD5575C15E4DD7DC75EB2DE0F3BA58269221BF4B3118DAED5055590177DD760B3868C22EAEF4D1A45DAFBFF916F32E22F2A9F148F0CB086761643CEAFDA42265A97EF1424E9FAB9601AC26260D57C2C68A1E1E387040ACAEAEA6F4A59CCFE763892A34F61DE55C023F768C9B8C1E120BB8EFC78F14C0DB04C82B3C3C3C9C1919199940C2B8B66CDFB9C7EDF1AC0F45228E054BCE629B9A0EC1F8C4141B4144F9F52D4D8D2C63E7722CE4BD3B76E4103CF5E453F0DFBEF028F35FD008E552D04F29EC1BD777C0BAB5AD0C518C142FCA5C0EF2B22FE150F029247E3FBE7304BF07553067BD1FD1535BC9F889AB86014AB8A4991B9AA00C2D0536710355DEA6EA17E4E1C2750A91811881F2DC627839590D841071EC112436FC840CA85CBA8FBD7DF855DC3ED4D2D6D65255DB785D243A574141A6D28CA07B1E29BF60707884297B0D8D75D0DAD4C462F02B88E1142C24721A6A6BE1E63BEE82B78F9E60419B5237A1B4322F22D03D77DCC6833DBAEC1F1D1B664845CBDC5C743C3317F92EBE5304DB1CBE2FEBFDDDDDDDD4692EDF9C4157032318F049FB241EA6A7A7559A8CC12A1EB8D94896035BF3EC1762083F37234954B8077A7B53837D7DFD2E97DBDBDAD1B92FA3A82DA170445E0C15087EFBFB87581129825E2250EB9A2628F3FA40929770F4140DE2A0C095CDE9D1E7352A7139C531AAD15CA5C017A5B133022113A411297EFAF2017DC0682EA74667A6BE82DBE43399C5F309448D347E17E5F6DB6F270658D177BE6A196021F140BBC5E28187ACB394F088CC90220620C712F50EAE24B2C6AD09773C1E4B9D3B79EC450AE835B5B66D907DDE2D33C1885F55B3052850AA8D8C8CE9FE059E2AB70615481A0FE847D35058203D663920414CDE8C2287CCD45DDBB6169C7BE1E557CC51BF9150F08768E8F563AFA7DECFF2FC28D66FA0E5652F16FD5E100FB4CD8B27E750E667B1979035405F2C6AB1147C56A712B7285CC3FDBD2770FF9C6CB77B2B6BEA776714AD652644BAC22225EA2DB3977675F7C0D9F35D8C214811A434F4FABA3A96B8624C2ABD9CA5AA421FBBF081BBEF2C384E630B2E74F7B0ED582C36313B3DF13D247E18FF1E5945097CEF6C434383CA7DFD977BD6B0F7042310222824FB5A5B5BD55028A4A03294C14B181290B28830693082D7CA08E466E6E2C1954DA75313C3033470C2E676BA2B3CD5953B63C954E3F44CD0B6909E606D2C7288729D347C6A46AF2646205F3E6529935B9A52B88A935569E816397CF6EEDE09355595E6F17024022FBDF22ADB4682ABE1A9312AF41042069FC57BB3681F427FAEA6A6465DCDC0D9F72C032C8408145BA8ABAB53091291117281402083BD86A67021348859FC08062378B868603A0221025EE34C2662A954324ED997727DC05F2B393DDB43D1B9BAA9E9194929C1040B7D783A4E43C2A9955AA8D005B9986FE7A3899F7FE96516C5BC7ED70E961AFEF4F32FB0812EBAC327F86C2A1E27AD3F6C78FC70C9AE16FAFFBF6080128C400E259AE4D16404EC6D34BA8914C514F9C90911C88F407307E1B6C10C5E03110C3D8174327240CDCD8653423432867D56EE68AC6D4C69B011F5859AA960C8AE2E523F61390B95B8A544511A144B63132F22F16960CBFF79E207CCE2B895334622119F9A191FFE2E3E5B88A09F143F4AF3A2241A847F8DDBFDF04BCB008B3102B71A94AAAAAAECDCDC5C863C8CF8016D6806926870219CB219C4080578DCC1C3458531B3183507955E9B9B0DF5E1B921BF4D13BD35082F206F4CA4D30D91D99837914A8A97F2EC34548B92588C363D13E6E33055756A74E86B86D64F4133D2FA29D1836CFE6F7DEB5BCBF2F8FD5230402946286535A0E24453B2A4713B89DB316406367D1CF62ED6FB091D3813301D819880F404031508BD4501524EC8CEB85C925CE9F28B3928AF5145795D2295A90BCFCE7911F657948890CBA6635E8FC7194F24654A27A3400F25A06692C9E71373737DA4129055838A669242BDBDBDBD2BB6F97F69186031AB813E1A590CA828A2DE97CEF2A4496635E065763609140F4071646016038F4CD2C018175DC3E313840C6C9C84044A5A529431BF0DA440B54F84FAF2EA44465B134FA56A92A98C3795CAD891A825A798CF6673CAC440DFB3A0E43275654E672E5076C37428D23835391D4D45A618F453B20C39B92850463384ACC6E6FFA5638025CC4761747454A58C6414055989E69A1345999C4AA434E29A08EC24A2133370267071D1E0321081374205BADE460C41632E856C36E51260D4E59245A086BCA469822DA328652A88D5394DABCC28AA0FD514CFE8F0C0F95C2E1B61669C928B4A4AEE89FA324724119AA0901F297DCCE6C7FB931E934306B824C5EF978E0116F22E5AC583810AF1789CF48414C22F851DEC342F20EFED06B19D9CF8AEA26D17D715E85A1A4043C3EE686A5A363F31ADA9F8BA431629CF614CA0A9550125874BCEA466C3C654F0C6086DF26812D16790F864F645C9BD4D19BEE3E3E39705FA7F29196039A860288D546F998653D10494840C08BD36521E89B844643CE6408238B93870E1BE932383D3501A411F4697470541A0C66617A7C827CD45CCC50F359A3B90D2E314D24FF0DE64EBCFE03E297F94E695999C9CBC6CD0FF4BCF004BA10231437979B9303C3C4C296AA4408A894442265181FBE41CA26D1B570A1D86C83074032E166C7C66511B670642056A22CD27CC67134DF01E9FE1B388D2F12C0F6E51964FD408F650FAFCE582FE6B0CB00C0FA355445058989C4B349895CAAC1053A046CE7A35AFB34004B6F3DE6E43C291F82006B07146B1F16B6D1C0568A1C921131C01689B7A3FFD5D9A77988E91C69F40C2677C3EDF25DBFCD7186075A8C04404C1AE810C7D7D7D82A13C024D5B80FA239A9412EA0EA444B2C1B3446C2422532CE93B1B8C42C78085FD7542133351A3E9638DFABDF4F728551E653FF57A72F8E4C8DFBFDC2C9F6B0CF0CE3283661513A833083441F5DCDC1CCD584AE8202223B0C1B30E8743E40C41C29D1A530869583CB99071CD4AF210B1C9B44339AF5162ACDBED66F991542A01514635887F45660FBFB62C8B19D8312B43A01521D4D6D6423018240B43C0DE2C50B727E6A06DBA9ECC395A1049541AC0814A1E0D99637F03F50F8D0674B6B6B66AEF14F1AF31C0656286C51882CC4B620A4408686B6B638C61FD5D7373B3DADDDD4D8351B4BD7BF79AF734EE413910DA3B3879E3350678E719028CF57DF7DD57F2B7E4CF2F26F6E596F50B2DFF0F44B91E614568C69C0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (47,1,'IP_PBX_symbol_(24)',decode('89504E470D0A1A0A0000000D4948445200000018000000160806000000DA7D5C880000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000005B449444154484B95947950D46518C7D102B3ACE88FB27FD266B244C6C1692092B4014B896654405A500E399215976BD993E55896639705966B71818585750159586E5840906B39952BCA1011F106AF6A3AC61953E0DBFB6384A152A9DFCCF7BFF77D3ECFF7799FDFD7C8C8C8682DD1EB441F126D7F86B612BD43640CC0E8FF8AFADE7C7FEBF60CAB9DBBAFDA7EB977E680A3F3CC118FA333FE0101332C166B264628BC214D4AEA23E736AE56EC79800F1CF61F9C529F2E43659D1EAD1D060C0C8D60FCD2246EDD9EC1AFBFFD8E1E43E71C3967F1AC02BEC182B7697EECDD078E049959D2E9FF72497DDBF6D93B5C8B1449E11B1C0F065B0C96408C881809E2E21351A62D45A5B6789E9CFB64E952B434DB53A6289A4CCF2EFE83199184C3C77808E289714A5B3B1FC817DFF6A0F3D37D9822D365C0219ADBB51C951A255A1DEAF44DE8307463686414939393989D9D457767FBDC1220427CD235235F0769563172D415A869EA40729606E5352D902BB5E0C7C91121564094ACAC5F06D0DCDCAE27A464E104570656541A22E2D2112FCD404A6A261AEAEB5157554E39B0A22E58EF710C4BCBD5A2B4B613DFFD781963E353D05434A3AAD1809E7363E8EA1F4541A91EC224E50F4B0033CFA3DE573215D95015AAA1ABA8445373337A7ABA313C3C844B131368A8AB995B02BCBBD93C6B8BC5E7642409D0E90DE81A9C404BCF186A5AFA5150D64C9C1581C14D848B77E8C8B2035F5FDF9B6939A71016938D48891209B27CA4661520475988EEEE1EE86BAB971DACDFF0C6E1CDDBAC7FF16184A3A4BA0D6DFD1750566FC049753562652A0487536FC27D6CB9DB217CD9819FBFFFE5D4F40C28140A68341A5454E8C868EAD0D2DC04436727F29539CB0E88D6989A9A6EDA696B1FC212C4AA32728B0DA9B9C55704B1E9833E019CD30E4E1E024B1B7BB3955B641EC060DCCC5416831DAB44B45405497A2132B2D550AA34E8EB1F4093BE7EDED8D8D85AA7D36D28D16ABD54EA229A5C2E5FA7542A8DE964356934DA4B14F879FF819997B7D754389F87081E0709B1D14892C4232D3911993229721572F039ECB964992CB9B5B3EB27FD99B3C83B5582E40CC5CF51298A873E92B4B930917426481057E3CFE63913988948245AFB9F1DF4F6F5A3B151BF303C3A366FE81B408A3C1B9CE83864E61781A6C8C7ABB171D81825C4A70949A0C9B2C090A42FD0D9D1D34B8E161FD9EDF091490E8B090E330491C4494CA40071C26824C408919BADC0C5894B18FD9E3C66552D12D3E468E9EC467B773FF26AF4082E2CC2578929B0E086C32A418210A51AC7598227367B1C6C49ED358B0E7CFD8E3DD3814A5D8CA92BD3989ABE8ADE738328ADACC1D885718C10D8AD99593C999FC79DBBF77061FC22CEB47721AFAA01C575CD70F5A5C32F286CC1F378602A05D8E47CE89BF3A1CC303099A160B339E070B9E012F5F6F6E2EEBDFBB84C20E5A4FB478F1EA1F16C3B5445A5C82ED02087747FBAA206038343B873EFC122ACACBA1E3E0C3289B8441CF56753096DB4DEC6F60B67EB5D76593BAC6C0ACC3FB62AD862BEA3C0CDCBA7A5BABE11ADA4B3A6D6364C5FBB8EF3C3A32412EA17019939F9241A541025CA702C980D4F7A1042F851F00B0C8392386770045AEA1D8C9ECEE915CA09B551944C4C4CCCE2C51229D9963F9564637A070617C7D47CB6033A02D068CBC908F391765289B0F06804B0F8F0F00FC441771F684A7510A7663EA43F4DD6E7E638B56E1E1E1EBBB88288C24036FFBE860461656D0301D491E27990909C92C973C013C6E30401500E22E3A5D0B7B421248CFF35D5F80B0194A87DB6B4B434767373FB28349499224E4EBDC11408E742054288A4A98821DBC38B89872F2314DF06B170E3D66DF0A263CF3DFDF18C5605ACD01A0AE4E8E8F89E8B8B8BA7FF89C056174FBF079FEDDBFFD87CA71D6CF6EE47B848BC109B247BE2EEEEFED6CABBAB15FE9B28DB5477F6F6F6AF1190859393930B51F841175AC32157D70C576F6F47FC2332562DFA022DC2ECECEC5E0E0E0E5E47395C19114BFA0B7650F272BBA723970000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (48,1,'IP_PBX_symbol_(48)',decode('89504E470D0A1A0A0000000D49484452000000300000002C080600000023163B670000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000010684944415468DEC5590B7094D7753EFF735FD2EE4AAB5DAD160909014620102298C405DB404DA64E87627742D43A8C3DF1389D90BA6DDA4EE271625AC3C4F6D4782693C1539AF4154FDB090C9E34894DEA87EC20E300018C400224210492D06BB50FED4ABBDAE7FFE877EFAE40484A82DD84FECCE1FE7BFFD5FDCFB9E73BE77CE7AE609A26B14B100411830499193FCE65CC12DD9C59F42E5C027B1794670A5B21251047F15EBC93BF2F2AAD41D290042405C9635DE3AE185054D4E6282BABF7FA6B9F92442A5324C9A6AA8AA45A54B2A88AA0CA2A29AA42AAAA4264629F658C8AA2988AA49856AB9A2F29294D62B1CB2F7E7BDF61AC1783E4EE8627E4A2010E4952D7782B7D5FB3436987DD4A568B95EC186D361BD92C16B2DA2C64B3E2DECA9EC130888A795581618A851B97CA64BAB0565BD11BCC2BFADD32C026935ED1B8B48E363DB8992B67519992163EAAAA7A6B8E7D9EF39C492E97A5A3478FBAB0563964A4E85DBA1B06B017013992DDED72221EEE0C7773AF92D2529204C1825BCB9DC44FCBBE7DAA334ACD592D1BD0F2BA2F97CFFBB45CCE99D3F213F9BC16363523249A7A5FEBD1FFE8FE4D06142E1126C8858F1F9E0FD3A5AB213CD4A00944D0909674480EF73A9F93980885672FBFF4222DAE5DCCBD54B46FC16DD8B7EFBBEE9C243F63B55AB679A7D5C69C98B74BC81F8660600745322589649654F0CF944DF25694D3DF7EEBE5C9EB0343AD9245FD71539DEBF0F3CF3F6F2C6880288ADAC85890B46C9A9CB2445B5730E8580AF886620858B2286C4EC13D46850731C9F8EE95CB1DD477A58B34CDCCFC2AA7BDF09D1FECD6ADF66F072ADC9EA575D5E47295D0E08D510A86A2149988D168304CBA8ECD01043EB7ED017AF0F73E45FECA0A7AF55F0EB922F1A99D9224ED1C8ED1B35FFDC60B7FF54FAFEC699B678080BF2C73B9A876D93D506E06E345CC33852D4A11EF306026068A06B1E7792D4FE7DB3B16AC1FDFFDB71F3D62B3DB0E2A9A42F1448A4E9FEFA252878DB66C5A4FEB9B57523EAFD34FDF6AC306E8F48547B6F135DF7CF73845A393343A1EA6B23237DB6078495A234AE24FF6BCF8BDC6179EDB3D729B01B228CA6E6729395DEE42D07ECC206673E7CE7EA42E64403A99D853EEF140418DEFB20E45D9D87AFC2CF764D3CA65B46E4D0375765FA313673AA9DCED246749097FAF6618A41B260C00B0046684E832057A0ECBFEF9ED1092445394A4FF530C18B470DA3F71E2847DD7AE2F92C694D70D3230BA9D25D4DCB89416F9BD349948527B672FD2B69DF25076E3A7D7920C5DD8A6F55CEDA7FEE1208522711E1B0662647070283B0F429220EAE9548A82C383B4CC235363951BC5AB98E7D5A2201E2C1685CF2945612F8A85C7293C3E4AA9E974761EF851E5EB576F4A1D3A748876ECD8411515153CD3DDBB661919D8DDAB0323340CFC472693E40654D81EB4FEA21DCF4C18E9A09A2A1FDDF7A9D574B1A79F0687C768E0DA20259289DC0259884C0B76006B222BB07504161724494C901D2499072C5398652B36C7528D6EE85C1136E60DDD98A33CFB4AB9A16BCEAEAE6EEAE9B9420F3FFC07D4D4D4441D579018B00E539404853CE5E53453B8CDA227D98EF70D06E9747B178D21C104C7C7112F1A6A4E46656BB34A3F0B4282CCF018585CFB8963A0A7A7D73AC701ECF332182049B2C203B1AFEF1A37786A6A8A962CA923B7BB8C1741AD181BD96C9652E9344D4FA768727212DF4B503A9DA14C068267F95C9EE2B1B050DCFCFC2D0358192ADE775E8D51FFD01402C6E022B311B95A11CDC29C60620E3121B2D1A4A7BFFA15AA0A545156CB2F94FF8D442C74A6DC5F5B2FCB2CF5CA45F8C97C63A462DCE5A0583A95A61460CC0C48E13E93C9F2CCC482BFB0F339CAA433B99E8B677EC81D757B10030546214BD4FA6D54E5B115895BE16516552445920B738AC4DDCF6B822C120A138543E394989ACECF519ED5856BB1F0D0613043873550BB0D5EB0F194C8A0086170E1D0310BE36C619E2AC0D3E07A4D27A7C6AEF776BDD4DF7BB97B8667CDF2806CB8DC5E8A47425C413B9452C10C2C8C7942714554B0E37912759190B629A79B9430B13B80FDC0401FDCAB512A97BDCD00865140758211BCC848DF95647C6C834D1577BADDA56BEAEA96D4F0F71774E7DB6916D16FDEFC0F8C50CBA52622E3DDA1E0C8FBA73FF89FEF034A41B631334CF7A601A6A0CBE9E90455562FFE44644E86975E7EE515CB02FD86D9D2D292BC866B707070E4A313AD6F434A7E565555BDE391967B7D95557EC4874710C532640D3599989A9A8CC7A3C944221C8D467A4FB6BD752A9D4E278BDECC62397D412A219892A8EB1A4F71A1890C4DA7A6011D91434441F651D93D5CCEE654968D30CF3CA582066ED8702FB92C2E32348D031AF95CD8BE7DBBB27FFF7E1B5C6F6D6E6E16D7AD5B67003A39ECE0E4B163C762030303636FFCE887E7011181492C16138BCD9139BBBB634EF875CDD12C0FC0054AE1636C2A4763111820B20A4D8560856AD09707AD2CB1E015F81CFBBC766D5311A3291D5E11972F5F5E5A5F5FEFF2F87C9F2971BA1E4276756A79CDC864D2DDA1B1D01B5BB76E651896919BDCB2AE67F037694806998941D0006163D0A33B69888422FD5DD4B06AF5E79F7AEACBFB13B1280B680E09499489556746B004ECF42D8E0CAC1AEC7F0419C32F533E95A1BEA1D1E1936DEF3FF3C4134FA8F76FD9FAAC2C290DD97C8E72D91C65914162F1498AC662E8E2A47F9D4AA6831953FA3BAC9483F541C3D02F9886F18E4AE9636EBB3D78A706CD3260E517767DF1F17FF0D7D47EA218486752F4AD3D7BC35645FEAFC71E7FFC2B80859D2B5E34200AC6190C8779764131ECCA92BA3C63E8CA492D4BD5D81A3F3644C26EF08CA3E5537A3ED70BAFBE53220B876CB231E4743AD3A74E9DCA1D3972E4B618908A307256782A9A1A1B573FE42A2B63D4B4601B467E58C147A1D8EC08B79A9EE20D4BA92CC777749C3777B6B4DC8B7B07276D4C50A1AF0F0C522416E3399DAD6375383DD814F97D2D4D27F269BA92495227E01E0446332CBE909F9D169BDF66B1DD6F88EAEE649EFE726C22F1A86CB19917CEFEB27DCB962DE6FC1830056386CC9DBE18A1EEBE4881B84118692B103B56BC66889CCE899C8CA2F6F77BBE49169B95B6FFD10E3B7A689115A5992B3A31012216A1CE4B3D54E5AFA466D008C56A1347B219FA652E4D16C4920832674E44691C056EC262A35ED07A2B58B107F5A21250AEB7B9ECF040F3E8D0C0D7B1E4BF6313F20BA451131D9D46D7BA2F52397669F30AB9586C54C4810534A0C07D403930163CC2A28015A59F1D7D03BDF41672BB5C22C3FACC15075DE81F1CE27C67EB831BC9EFF392A8DA7971F2203BECA22AEA07F4AE830366517744D00613F40198A33C8CCE2D5B4EE3D8D366AB8D14D41D43CF094EA75F82EEF9791E30749880A0F454060A659E5560B5C03C2589B151A9400150D424C650E5422545F0910B7CC65D56CE4BFDCCC5B8CCE0D030394010EB16D790CF5B412BEF598EC647A348344EAE589C2AB08E29949310584CE3F0C8206414328462CAB891C36AA54ABCDB8335A2889F6C26537BF8E8BBEF20B8FF10AF48B1F6F29601A4B18C49EE72CF1D91396618F302522395963A6F539E29797D7090CA114FBE0A0F7A5B0F793CE554B328C09FBBD038352C5F42CED2521A1D1BA789788CBC912855466364A09191B18913E8F08258DB81F82BC1665E0165471290AAFCFE07FAC727625A5E3FBE6FDFBECFDE32C0106FE6A83B69681490B9C58B2AE81B5FFF9B3989CDA48BA0CE55BE4A0A04FCE4432716044F3AFE8B93D4E9765355A58F1028B4AAE11ECC87D1F77A29505549033786E8F71FD8449380D199F60B940925A90971800ACD21373935894C97A335AB16533299945DA5A51B1882E499CA07F53331E0CF3A7C8396A2A169F0BB39940A7D80CCEB021B3974C40209BBEFBE8D64859766E3FEEAF501B4846E6A5ABD92EFFC3894BC3E30C4EB45703CC461C5BCF5CEB136342B01AAABADE1BD4099DB5560A548BB9FDDF200EFBCBA7B7AA9F75A3F32589CFAB1C6C6CF6CE09CD9867543A1F0F7CBED6E9A31202B48725C47C00E87E3F8E3220BD4F59B743697CF732ECE9405BFA7AFEDFE32B0EFBE1DF7A0C223A363F4A5C7FE849C804908B0E8B8D435EF2C29E0F7D3189A9391E0185DECEE41BC4CB30440CB972EA106C4492960C4D6695CB982CB37F7BEC8BDE483A1ECFDE1896864E922EF772E5CB8A0CB45CE9112241A8884C39D9A96B7035F0A941450540466449E37E17962594A3734C161B3CB5EAFCFCF169BAD5827A073CFB2A55CF924943A77A1735EE967CA4D44C3804386152C9A4A24A871C57278E906FDFCF8097AEBBD637CF396C0336B56ADE49B77AEE3123DBAFD61547F83725ACECCA6534FDB2A3DF1D75F7FDDB869405F4F4F27E4F3C5A3415BB1C8CD6D5004F4B4F603FF78F00504A9FFBDB6E3E8A8DC1400AE4B4B4B78406EDEB4917BEB7CE745EE419A73D4158FC72982DA505DE5E7DFAFF47AE18D1025A65337BFCA94BED47D85DA3B2E72486DBE7F1360E9A238207EE3C6D0C9451E571B321163A6A6582C08EC20760A320C6144AB03D20E39375B5C2ED7B9C6C6C65E8BD55E3E88A0F3793DE487B4C290AE2BBDB4F391ED545BBD082FEF4176CACD3B8A6447973A946B6C5841938969121153532862C15064FE4E15ADAE0E0468DDDA46B2A150DE181ECDBB9DF6A7A3D1E8E4DEBD7B4D9A39C3340B17A3ADAC514840E20B09BB6A6A6A265BDF3ABAA7D46E39954C4CA75BDB3EE499C38E17B093EBBE8101C2FC3CDCB3D49900AC2CF84E0F8C65F0F321B582FD70E5163A9054903EFF78FBE7C88D341D413C05C7460E68A9D4D08103076E1EDDDFC98F18B34F1918D79F44D09D3EF5E1F1FD17CE9E7CCE26EA3FA8AF090CB7FEFC03E34F9FDC4DA7CEB4F3467C2E6D1C0B0641B7A791715C88111779915EA3C82EA220DDAEB750B484B1814D9F4660D75312C9A1BDA373C86D53BF87772766FAE1998EE9E39E680B4F3EF9A405C694E26F3D08B86A607D09E66B3CFEC0B6356B9BEF9B9C9C12D849829555525F05DF49B6E3BC2967270B88914431AF33FEC5E6B345613C8A7D66C1FEEC5FFF058F87C33FFE893E3A78FD5145148FBFFAEAAB89D9B45AA48F7F99AFBDF65AB6B6B6368A0A7D0DEDDE5918D00A83DE8E8C8DFCF3F1D6775FD2B3E9B380C574186E3F7DB69DDEFBE043EABB769DB2A0D58C3BB14B653F96D86DB7B293CDC2EB0BE737A8355FDAD5423E187FF2EC4734323CF29FC808E783C1E0F4DC9E40F82DFC0A24A0C392BC5EAF15DCA80286D4C22BF5CC236090F5BEEADA07A712A99AD150486647251A6A08AB03ECC0B60406B0B76718992B7A888DCD6B56A1CEFC199D3A7B8EFEFBA747C752B1D0C3D8A85EB671BF0B036E9EC2AD5FBF5E6E6868B04111378CF061B7EBB07E1DC6CA725F551348C9FA1B23A3E5E1C884C0CE7E380480F512470978130C2AB15325A8C5DAD58D30A291DE7EBFCD18EAEB790C1D5CEBC18307E3B3B1FF5B3760F69A2D2D2D0C276A369B7582107AF08E6A7C5E8231003BCB48B5AFCB6AFAD25426578E0C6661456F468F8736DF6F0E8F8C71BDEA1655BD9E98187FA6AEAE6E18CC535BF065BFAB1F12994790AB85CB972F033A29B06ABB1BB152096F043056E17105DEEDC467BBC55A5299D6B51A18E4733A1C31514B1F136D8E2A21977925914874BFF9E69BE95FD5E00B77E937691E27087A0B8AA11DF06219CC0D23BC3006FD93E082216CCEC0FD38EEA7318690C57AEAEBEB63737F56FAFF30E0A657D8FB18C41C0E8782BA684570DA70CF4E9B55763E04C6CBAA202BE3B970383C7DECD831EDD7AE79370D58C81834250C66BC96416101D9CC3C72E4C8CC8EFF46E5FE1782657CFAC9003A450000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (49,1,'IP_PBX_symbol_(64)',decode('89504E470D0A1A0A0000000D49484452000000400000003B0806000000CB8C8CDC0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000019464944415468DECD5B097024E5757EDDD3734A33A39146A391B492562BED7DC272AD01E3050C9823366BB38E53603B95041C274EAAEC4AC510279838762584025CB888B1E3007612DBAC83C1E0D806BC2CD7B2F78156D2DEBA6774CD68EEB38F7CEFEF1EAD562BED017665BBF6AF3EA6D5FDBFEFBDF7BDE3EF550CC3A0CA264992CC3B8CCA5EA20FB619D6D0798F4DA78B6C532CC12BC2DA311CD6DEFE01809829B88A51E281D7F0B16ECC44FD6200C0129405AEC2A8C1F059C73341B850002AC2E730921809EBB888A15D340058666F63816BEA1B57D6861BFFCC26C93E45B1B9EC8ACD8E4DB22B187685704C0EC5DC2BBC7728E25C511CA4F0EF8A4C8A4D11BFE15CC77DAADBE92E787DD5E90307F6FFE4991FFC60070383775E3456A0CC307DAFE2B02F0FD4D6DFED80204E879D5C0E27399D0E7261389C38E67387839C2EFBF4B103BF3919181C0B8030182C4561906C00C54E35757534361A3D8E77F4601430CA170B081500785F65E85AAD07C25DB1761555575741BBA66685B6ED42ABB80601155340B6003EB69B1A17C22A9573086FC39E1F3E3995A04C2EC7AEE5C598B2DC4ABF982C805DC08159793A5A17D092E52B8536ED965015F3AF9C57B43CF73DA75FE37B0F751D24ADACBAF10EA7F52EE96222C10ACBDB6459566CD2FBB5CAF965D2CA25FC6A2833DE57F983F37AD97D5FFEC6EAB25A5AAA968CA0AA95EB34550D9631545573A8652D5636CA311D7B4DD362924DEAAB77E5773DF7DC73A50B890222F64B924D66D3AE6CDFFE712F9DE89F84B19649328A18651CF35E25492F896BA4ABB067EC0D9C8BFBCC7D736390B66E7D4D3CC76E779024CB74BE21F56F1EFA6E88D4CC6D4555BF4155CB378029C2C26B647EAFC4715B3C4F927592158914CD46BA5D82CB99C695D45DF93BEFF9AB5D9AAEBF02927EF967CF3EFEDEB90010A14B5664235B2851A95814A6FCD79F597E7E2EC0FB39EE13DA57552A95554697CEA5F1279E78C2399653BE521770FFFD65EB2E7529361B0D0C45E864FF308D4EC4F00C993459231BAE2BBA469A66275DD729545F4BED2D4DD4140E51536388C20D41F7F77FF8B3EB862363D7D964DB3FDDF3E70F6C511CB6AF3DFDED6F1C3B1B00A4005566A6ADBFFA25484DB2C88FC90EAC6F09A87008B4F17566784400A7497C26E9D9C46F782934633313084C7ACD65579DD3141FFEB7FFBA4AD57D3F72DAB5CE7CA14CBBF777534B53032DE968A59B365E45A3E3314A245214C3F8ED1B3B21BC8E8C4A276F9587AEB9721D7DE2F61B48C7B56C2E4FEFEC3A4053893488BC9A4193649BBC19EEBDE94B5FFD972F3FF1CF7FFBC4BC00E026F2B85CB4E1D6DBA8AAAA6A5ECD5E0809DAA0F943070F9E55F8C79F79A1C66977BCA848B690AA690093B5ABD1C9C1284546272054915A9A1B28581BA0F5BE6AAAF2B8E9D56D3BA9BDB591EEB9EB76CCD54D6FBCB397DEDEB98F12C9AC90C3EBF572860B379184E530BF613CF277DFFAEEEBDF7CE00B87E60600F757BB9D88E9CEDF1951732874C04AF4B384FC743CB629848D85662D6ABA09009B376B7AF7C1C3B4737F8F380F067C140CD6507D304013F1143DF3D397C8E3765132951116E9F7C9A46AA2F43001C06040ACBD0316F9187EFCE89C009849E1A9F07CB82F41D93CFB9C4476FC04D7E350013307E1002D28187BF31ADFA3E01AF3101FFBAA3D74CB2DB788E7944B2531F9F9B69D3B77D67F7AF36621B809802EEEE763DED705BCE21D6B57760A97602BD973A007A6DE452EB79B3E7DE74DE4F756999C83BFF9C56FDEA4E37DC310489E0182B9CF65F30BCFEA0276877BFA7C703407946152928EE00DC665D615C706F60086CFC9BC26237CDA24F3DC86DFEA6AFDD30038E0569A363F00BDBDBDE36FBDF516DD78E30DC252F40A0018F5013C67E3E564D66B44432363F436044F65F354051F478D49AFBEB19B2E5BB78C72B982708B3B6FFD08C5A69274A26F84FA86A39448E50480F9429EC627637DF30360B319083B3478FC884076451844B7C009E29305F9D9997D1533B961D2E31A80C9D024413303648666B4651061D7FE3D3C3F41486CD273660F30BB852B3638B66EDD4A7D7D2769D3A64DD4DCDC2C84B7C1BC365CB60299649252A92C25D359210C1896BC10DEE0A0827FC5B24E6FEFEE16CF7BAFB78F42709105E120B52D08533A5F4414D2697068842223115275DD383B097A7D08F505316116C610BE0413C73815151C5696875AC0C105924DA4C632FB8321910676D6549D5443A3329EE3C26475559B4B780EDCD5A54236ECAEF201807E7AF4D1C7E8FAEB37D2FAF5EBA91559E9CE8327B89170DAF07A4F092FA499C52F99820AF78D523A93A1C9C9189DEC1BA07C3E2F6482826D0C7AA53771060098392DEC5C72D6F87EA1A9F0AE9DEF52D9D0E64A1DB9F7D05C2EE6DB18005316830E1DEAA6783C4E4D4D4DB464C91200D122589D1562BA062BC5945BD7592833D728816B8A8502848ED3E8D8385C2287EB657010062C5B83128AC542A5DF513C93040DA84FD7CE99DA5E682ACCFE875A60AE9F7832C17229679B6115D32EC502E7F33998BF19D3191C16B25084A048D68A85A2D8178AE6BE58B96E1D3359AA782F0BCF20305099749A7B122EBCA7C4D5E8191620CD90E39577231F88041F78E07EF11C1D13D1F43939802F165253633D35C105499B62F7B3D0ECFBCC21E6B19564B13B56DC0056C08313215D9C1BC22A6692A71945389CAA42F0320F904164E8E40B331B32A70180971876A76BFABC35ECA13ABFF37D87C1CA56C6E4CA656DAEAE11F7068675553D383E7CF4C9BAC645773B1CFE1649242E66FC36C3974864208826CCDEB0DCDE1CC6196326189AC825342AE473C9C1BE234F1CDCB5F517FCDE4A2F42993D2BB7CB43277ADE331B1C90B89E094EA4BF56AA2B73049005E1899497AD0602E3CA74A8E254229F4ED20B5B7E2AFC2E5DD2E78B027C11D516EDCFA5A762B9F4DEF742CD1DB786EA837F00A1FD660C3F0586D961B324AFB41D5968EB781A04EB98AD03E1579D880EFD72EF3BAF3D96484C1EB6FA11DABC51006648BE40C00440B19A1C76B3B353C9F52BE1EE94B95A9AE2BD64BA9164ED391AE40687E70480B50021CB1608198CE8F8C889A3B1D1FE9F2C5EBEF6F2E5ABD65DEEB0DB56841B1ADAAC26CA796D857C766C6C34F25E746468FB9183BB7F3B3111EDB3042FCC6ECA9E6101F96C9AEA1B5B7EA70D11C7DB6FD10B67922037A3256B2EFAD7BFFEF5FCB66DDB8A478F1E8D47A3D181C387F61DC4F8EF9FFF84BC4D2D2DC16BAEBEA1ADA6B6AECE53551D70B89D0187DDE58776E54C369D48261353E9643A9E4CC426A391487F6FD7EE01AB019BB784E6DE8036570BEE34000CC99054B5F43EB3FEF9A3007C5C9051E5C6C58B174BEBD6ADB385C361E5B1C71E9353A994E8CC7FFCE31F3770AC777777A72726269200446A6C6CB4E73319E5D7FFFBFC6EF8B42D93C9C833ACA1D27DD62DB3D62C3F2957D6222A96763EFD00F662CBD7CCEDDF5F38867A1C9663A09EE7468784BD687A98AD7ED092687EC8DC28C13BF95C168D12951AC375B465CB73D62C25842495439BE4F7FB6D4B972EF5B4B7B73B3DD820901B5663838B48485634B85571E5CA956954A369E40025E4022AEE9110D381A35A74B95C1A2CC400407A7D7DBDB162C50AE3A1871EA2F311F69C00B045DA91B7570A973FBCB91D3EDD31DDE4B45B199FC8FC9817B83F60ABEC95E9B498F7286FA7139BE14854D40298BCB26AD52AEFB265CBEA5ADBDB5787C38DB7389CEE0D70CA5A082773A8524B2514769913D954E6D9850B17BE8CB8EF74F90257B9FCB586A2957AF1FC3C728202402A0218EE2E6B4F3DF594F6DA6BAFE9CF3DF79C5E59E7395F20CEE0802A4F351DEBDE8F584E665ECF2CCC610F59AB2459EDA8E98E9E611132D896995763E6D5441812E930421F676292879318B2B5B6B6FA60FE9E6B3E7CDDE702B5C14FC22A6CE5B219A3197411EA34DD9F4A675B11E9373AAB7CFF5AD252DBCBB6AA9F0240C5B03939AEA5A081A182AEEF579CFE5731C5DDB0882C00293CFCF0C3455851F9DE7BEFD56015DA830F3E689C0B8CD300D00583E6A975D132F254B9CD02489099CD8A06160956DAE076F337C566B6CACDD459B15AE9E66F5C03FCE0D91FB28538A1F9B6CFDCFDD92FC2F29795E7C80C39CB1B9B9810098EC949D2B59227F069A7414A16D732BA26D71A520DC0C2305683D53E3BA56906F82503EEEAA75CFE15AF53FB515B5BDB38949703BF94601DEAE6CD9B2BD6717612C49B3961207F6DD014FE034601D36D145ABD7C196D7F7787F7BE2FFEC5977C7EDF62750EE1E353091A1B1FA799A9A82E298D4E97A39515F86221495D4691FCB0C8363CB30516D9ACCB1420BB844CD06B18EED50C4A49D7BE12C9E653E552A64BD2B4E7839EEC165847121691834568B3415066C565492D9F8A0291893CB2AF2CB4275BE52F677B3691084D5FE32C91CB64712E0B4EE0FBDCE092B56BD788BC9CF3F93FFEFCE7D73734841B382F3F236EA380619EE05C228B02C687C2C780A01E8FAF0DAE40C74A793AA49520AA245CEA787C9406C38D6281C1035F6CC63CC2386BC0A835ECE4723A7DB092ABC12D57E74BE5472633A9D16C31BF19206C67B7388B0B208FB79F6A8BBF73708C22A329BC02793F86C4AC8FC17581B82659E7F07B49C6304EDD170A06E891471E16D559436313D5B3F073689E013A72FC042592097A67C75EEA5CD4466B57ADA0604393153D747A31312684E77526399D2299BB46FBF691BDA999D7D868A054A4C9D685D4CBD515CEEBC1252128A44372F0129FA4D8E5C6C2607C0D186EC7EC15A959D520AC4993683C32446E4F155DBFC645CA25D596F6152B1DB696BE84A6CD6CB052B929D3C7B220475E1152100D9A9A5B682ECD73C5D67BF4384ADF043951837CE2B69BC9ED765143B889BB33A2C8992C176939E6E228E4690AA1D44867487143EF357EE48F13A4A1225490B51A8E512AC426C9B56419A5617DE00F5ACDD7F18CF87894794B37D73E44F265CC6B01768F870AC8E3CBBC9A33A3A72689DFA5E9E603171964E8D38C6F565F66A5A66A6571DB8205CDF4A94D9BAC26E5E95B19A6DC7DE4286AF63C05EB6AA9C6EFC3F0536D6D0DE58B6594B865529C0A3539ECF42700809F3FC5E65FDF088D176810641D1F191235888C28220128A5AA5AB4C9D835DAED4E7263703D50840B82A71D6EB7DB0932D4662649A703C0454C26452D0BDBA7577B2F84042B753CCC88B2992CACC863BE651600AC80DE63C7C562494328487E4B780661CDCAE5A2DD9587EBC4E25314898CD1E4D41425A1792FF0DF5017A4ABB81102D0134D2D3488FB2200245A2C50115666E77509060056E2C2BC78618679AAABF7E4B7F71CE87DF0F6EBAE5AFAD65B6FA5EBEAEACAE0035D39CD03908DE96A894E7D2973815F454030AEBD3992704F91C1E0183F7B3B76B24F80E7F779A735CFC4D7DC1816C29B55A94B34333A3ADAE88AC03A2B524C214C4ED2E8D8845871B6833FD6FA7C74A91C109A4E70188525C4B16FA9F20AF3EF8B0C8BC5923400BCF49235B57DA353E3B877321689DF8B47BE78DAD218CCCC504FE5ECB4A36B02C817CDA448D6ADDA1F4159E2CAD130CFB911C2D764F31A3744AEB8FC12BA6CFD7A61E6B3B748748C32D90CB580C02A5AE71E5FCF91E348BB87291CAA174030A7B00EEA5099F2368EFC005AA35A9C2FEDEC8475C4C5DF1EE8EA86768F503295A546FC5DBD3F60364A744ED2749A9818A73E54A3F5C12079A0947C2E2FD965A5DE90E8D62D5BB6BCA4CC888BE6474C92ED7D7D0B65362774F87D235D79E515A20F307B4BA65274F4C4095AB76205D5435053FB3EEA397C0CDA8D0B8D732F6FF7BE03C2021BC321E1063CF1CE45EDA2F1C2DB542201AE0888738FC74D77DFB5494493EDBBF65057CF1172810B5AC13FCC5DB1581CA1B344D76CB89285270396551BA8A16864E8373D3D3D9232230954B94F964A23E6EEDF23BEFEA8868ABD6E59BC4812E9B07CAA412155EA7F49688AAF23D7A73B6EBFF5546364967B1CECEEA1259D1DD4D9B968DAF47B8F1CA3C19191334912FE7CA2AF9F0E234AF07115F8A4BDAD953ADA175253B841CC8901E56788CE34C6A56B57D3B2259D82A3DED9B19B4E40F383C323B46EF52A91BD1A2E27555579604D93073A5B9ADFECECEC342A16C0765F402E9E9121B8A827352E0275D175355B4B9A2868CCD6B22ADA5365ABCCE58623AFC17DEB1FEE87463C7386BC93FD83C227AF8175B0F09CF747A2A30883C74E15D3B3705B0C61A3E313BC982142E62E58C6F69DBBC53C9A1A1BE00A1DB47CE9121191784E51580F93286F77DC7A13FDE95F7E85FC5E9F008D7FE70E1612222DE0727C211E8FE7EEBAEB2EBD0200CF388D583C59823095969261F5D62A4B55DC6565D3562B8DC6B2B967506EBBE9065ABC68D1DC1D1A30F561087AC99AD5C2FC784B2453B4BFAB7BDE4E025BD181AE1E911AF362A85ACC8B8556C432419E27FA07E8E8F193F4FCCBBF1279C952689E53EE50B08EC20D21FAFE33FF89EC324237DF78BD702156529E8A343ED0FFECC270DD40243259121DE8191690E91F1ED859D6F5CF150B792E4FAB0C4D7720C6DBCC10A95365CF8762CF79832CDB4062DE60EDA736FDF8F9171B5B1734410B2BC4A42A5B574FAFB096C51DED162045DAFB5ED7ACF5C2D36108F8AA4561C6094D08A1F2388465A697310606074DE2B2FE2487FB76EDDD4FDB61F66C7D4C9C9C5AB375841BEA452864258D4422F18EE6D023C96432CD4512C6B40B3063E563D1E8084642A4D8E6F73CCAD97A710865722010707FF29E7B3662928D2558473718F9A55FBF4A353E3F31182D20A37EB03B4FAAA5B94958D141689E174C254BD367681FEE31119B12AD7119E165DFDE7DE4F5D788BF87722895C910E2F50CE8A4D3E01B85DBB0AF6FB87C3D78C94905BC2B09772BE5D3F7DBEA7C93D5D5D545AB4C26C56A4CD28C8F1A79C52465097ED6840099950DF57D4D28D4503E3980789BCD911B65F49DB77F4C98E7FFFCE265BAE64357D14A68E28E8FDD24843D8CEC2F8382479AE7B1A1FA200D0F0F8B94BB09A18BCDB8AE3E24343B303824B42DDBCE1EA99898375EFB21F12C2E9E261009FAFA07F62CA80BBC3E31319179F4D147B54A51A4CCE8CED2ACFEDA39BFE7E1F6566363A3ABA7A7ABFBEA6BAFDBE1743A2E191818729E3CD92F267AC7C73E0AD6EFA49B365E2748AF7F604894BD67DB380C6A86B9EEB0FFC07E72B83C14006FD4FABDC4206B86715A7E311779B62F6CA375AB560962E68CF2F8C93ED5EFB0DF8FC42C06704B334B6265668B7AC60FE7F50DDFE6CD9B6D70810CFC6B64EB6BAF7C079716B62C5CB8BAADB9E9C3FDC323E137B7EF927EFDDA367AE2A9FFA0CFFFD1663077D834D73960E575868E056D485A8604E9F2E73A2194BC4CB4BCACBDAFBF5F1468A74892E6B422B7CB4DB7DCB851A4D74CBEC7FAFA687C74F4E9C65AEF89582C96B51A23F3B7C42E64432625DAD9030303C340173CA74E0CF6F50D63EC85458596B5775C174F67562239F16C7DF36D1105D8AFF9EB0EA7D33943739220448E0AE20B55D415D168945C10980B2573ADAF2C34AFCDFBA18559B47DE8CACB69F992C5223A1D021F9D387E72241CA8FE3ECEA7464747D5B33644DE47EE2F42E87DF7DD97E066252C61129318C4B57A1C8787FA8E0F42B0FA156D4D1D8BDA5A6EC624EA8AA51C4DC610D751C3FB91C7B39F7201235C0AF500FB7A115A67D2E3C83139394993F118F28BEAD3486FAE2D8CCCF1968F7E447C32731C16D37BE4A8AE15D25FB5F9FD51AFD79B7BFCF1C7F5733645DF0F0EDFFBDEF75458821689448AD05C0A6E31C16E0130EA004038934E460FEC7AB77FE5EA751B02F5F597144BA51A36ED1130731F1224CE2B385AD423D73FCDC6CD900073AE11AE5029CB4375A80F0C8D0623E3D356C499EB276EBD9916C06DA69249DAB5E7004D8C8D6DF1389D0732994C02099A7ACE85910F680986D56BE02664311C0E67607231849CD17C3E1FC5EF13DD5D0726F1FB0E77555568D1E2A51B9C0E4FC7682EEFE4E5EE433D8761152572395C0473219FCF3B6F8E104F2431A6C4172A95A469CDEA95F4916BAF16FD8AD7DFDE0E70236336ADF0A461738C21E72F3CF9E49306989F7E2F00CC0282B8E9C05F8323D554018248B11131E2B086086E0967D3E9F0A1FD7B87708C10DAB828545B77452C910C65733939968D53E4DD51E1F7FCB0054D8DA81043E27BC0CAC60D1637EA7DB3C526214AF869D3EDB788E4EBDDDD7BE9645FBF9E8A8F7F0D370CE339E9D75F7F5D9BEF23CDDF29007380310D84C3E1C8974AA5290B845A2649E689B1B1C8288D450EA3FCF52D6868BEB4A06ACB0746225E2631B688AEEE5E9138552245804BE81A3FD2E32A14408AB098A58B3B4555C821F48D77DEA5C9F1F1972455DD8B5C22363535553EDB17AABF37006603C1A115AE51863FE6903BC400461442326106014A0373C5D8C8C038BB48C8EB09866A7CEBC6E2536DE313314FB1A49B490A34CFE5318FCA76C56597D07BA8197EF6F397A813A976B0B6269E8E8D7D075617E5B5018E5417B432F4FBC4A2E21A20CC3208B3809C3C098E1887250C43F03A4C38C440E4D2E920E6DEEF578C6A5F38E0811FB7A396EBC8E4F2C1442AE5C9E78BB26129D5E0C56EAD3CE2ABAE6E98988C2960FD7F84D973F4493EFDF4D322DFBF58009897309B9A9AD24C98DC30C2F51A5C0F00140E09B55C17495A690439FBFE5A97ECAA75F999F99C6583EA74C916CCA412E5925EDAE391E582AEEA83C54C691F809C0000A54ABE7F5101301F615A5691EBEFEF4F8030A300C0835BBC10C407730EE01E3F1FE39A07C72E4592EC865E2EDB543DA1EA7A0ED78AB82F827B86F1B75936FDF35920FD7F03E01C56510806836910185B85239BCDA2EE727B20980BDA754150171F730B0F2389AA34ABF2DA79B19845869902A8E5F3FDCF18170500F35905473C584671DBB66D59FC64035F88FFE1869458E1FFCE26BEB37338102C4A65FE7E607C7C5CDFB3678F7ABEC25F7400CC05061F02844A24113EFDD0430F49DDDDDD2232A01C372ACBE033BE1A39EFEDFF002B9CCFBC01A03F340000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (50,1,'IP_PBX_symbol_(96)',decode('89504E470D0A1A0A0000000D4948445200000060000000590806000000C1ED215D0000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00002C514944415478DAED7D09905D6775E6B9CBDBB77EBD77AB776DAD6EED12B264495E458C31D8310187CC0C2140C114542826AE09613C1E84A6B214496A3209C34C30788050A13CF60CC1408C318C2D5B966DC9B2F66EF5A6DED4FBF2BAFBEDCB5DE69CFFFEF7BEFB5E77AB9F6CD910D55CD5AFFFDEFBDEBBCB39FF39E73BCBFFB7A0EB3A146F026ED49987ABF4377BD357E8757DA507BC8536C1FE7E36C253136DCD7EFEDD60826E23BCC61B1DABB73A2318035620BC844DC6E6E0BDB40A236EE6C83789AE14359537ED5664826C6706273411DD89CD83CDCD9B937FD794889B2105C52AC72474165B065B8A373ACE1133709CDC724C906DA35FE44426C2FBB10579A37D6F11136E961AB23341E1C44E638B635BC216C516B37FF75663825C34FA5DD87CD50D6D07C3D5B57F244B925392455996645976C8A24312F0C00192240B4E878CBD040E3C76C812480EEC25B317017FC19B04F87B90B077F05EC6CFF1922089121DEBB228D2B5743CA7E17D1497C39573381CB9AB03FDFFE7F1C7BEF294CD1E68B7A20AB28F7E523701C921377B7CDE3D4E222636B32FDC970BCED331EB65997F8F88CFCFF37326538861D41303CD5E22A6204344EC45019B28C0D4F4E4252E8559DE549BADB82519E0622A47D7FC345AD948C54F901620F1260A3A7E59B759640D2D39359DF7D8340D2F8174624D055DC56FE14534D476BA4014D41925F18851D3F80D5E55544152451048BA641728B91CA9C3005749491B10805B5505919EF72229BC3292E8AE03FBA1B1A985A90D365AA5957B43ADF07D5B9365735FB67D2E5AE7D939D1FE3DE35C24320FE72F5D04455149227D45F6E79662805884F90D2688E02E0BF9A1A1B9C5D0D58C8046CF8ED768F2759BA3B03996B7BAFA75E073B920938CBBB9543A8A60F02DC58062182A0B34A625E9DD713C841BFA9EE98348B722F18BFD00CBF395444190855FAFB40B787F6482F06E38808F1C3BE62C9B170FE440D9A42B4AA5AAE995AAAA552A9A5A05D8AB9A5AA9A86A85A668695557E635559F57356D5E55D4790D9479558579B487A34ED9F9F20BCF3E3971B3185010921065B1E0DC42340B5FFFFE2534982A52014D28F62241773A66CD705CF39F2B20EAC6F7E8D8F89CF615EBFBD403FFEC2FBFFE1770F73DF7E44703519F0D829B43FC47BFFAF5CE6C4678BFAEABEF2F57A53B5551F309880074BA87A0B2ABD3DD54C1A20108A2104470502D881ABE0B7E80341134070326CC31C1FEBE8F7CB64794A417F1EB2FB93DF24B3FFAFE7F9B7FC70C100D5C5E70CEE514E1B6AD550C11111212080D998D114C636AC33C479F33BD61FB1E3BC77A7A598D5D8B9D1375A8ABAB2B1C0485CFF0B660E7578EFD5D932E088F239A7BB8B16E5DE5EC5C04A2F1247B3F7D85CBD27309AA81D608C969487809D1197A7E88EA740A4881CE7F43CF565B5509EBEAABDB53E94C7B4FFFD017045DD03FF6078FBE85C0E24F9FFA9F7FF5EC3B6180AEE454884797A02C5CCECE79DD327CF4486B01E2590D05C996C355F43D6939E2B19F33B7742A859A400397D7ABBC1DC21F3BF63DB7EACEFC7BF41C1FABA9087B0E1FD8CDFC1222FCF0B50918C1363C3A09D1581C44BC8F4A239C084D449734466CB64F0447884C7E4C6BD33AA8AFAD86BADA2AA8ABA984B6D646A82C2F8374260B8FFDE9DF810B4183C85487B8177D981F7FF20BFFE9A420097FF2BD6FFCE79337AE8250C1B9FD21B870B10B3C6EC31F9065272214EE54990E95C36896834568C951F8B9857E386364D38396C8E932CE8B92C0449E5E9C3966888EEA1B9B41387FF18689FF177FFBFD07E5A0FE378226B711C167234BF08B175F8786FA2A686B69802D9BDA606BFB0676BFFEA151181C1A039FCF03A8DFE1D5536791F13AF3610CE21B8DB4521D12FF339FF8087B27FBF6DC2F5F41D8BC8474721B6ACB505DE44C1E4446BCFAF92FFFF94F5C0EF8DC7FFDB3C7A64B66001960228A0F6F160CFA9968CA92C318B1ABF904A432E8C646889539613A5A2B72B4543C14343AC75F0E75A9C6BC5E348382C47E470F4D0FAFAA0AC88A42A3E08689FFD7DF7AEA33C8E0EFD0E815558D49113121935390D8E3D07BF51A549405A0A9B10EF6EEEC849D9D9B61CFF62D86178EEFE0F1B8E0E5D7DE3298A0EBCC0E6DDDB21EEE3EF43ED8BCA1C508D9E2358F9F3C03139333D0B8AE0E4E9EBE086E0F129FFE09603181EECBFB07B16F7DF4D8DFDCF55F8EFE51A43409C01F839A83EDB7ED43D175AEAA6E565741D773C4A442476C15B574F2D5572097CB8AA512FF7F7CF7476D4E59FEA626E65589443D6B5CA560CB64734CF52F456378FD1CF87D5E54AF2EB4710EF8C8878F60EF84975F7F8B31E5F06DBBE103F7DECE9E877E7BE2F5B3F0EAE9F3303BB7C8EE79E6420F23B239FAC1CE00531A8CB0CA363C710C7FF2C5D26C8024082E7488888BBFAE8DA442CD29253F80EC747C4050359745705DB3886E3240D78DFDDEC16B706560949D53514A8950743F620209AF1B094ADF3BF9E62538DFD5076DCD0D308E237E7E6189DDCBE3711704848D78B281992D3554D49096FFE6D8B1635F3A7AF4A8B6B60480A14EDE0D3FA054478C5400A9A352B72B577A1FDABAB5D3329E26F1758B19BAC500EA75F61D43D590046CEF580FFB7675204A4A4057CF20F4A1BA9A995F002F127B3DDA8EE6865A0A8D404EC94116018A826A3287FDE8181AF344CA466C8382CB9900412D5B1D22445F020A925844D2BE65B22A9CEB9D035134303AF52C3847C7C82CDA17D839817F077820CF185DA2F9F90ABFA773870E1D82A6A6261B030C2694BAF5F6F4CCEDDEB36B39D14D836A33AC12DEB4B62A0C4B88823A36B6C0CEAD1B99F1A7CD8DCC98289B636AD5EBF58082E375612906F7DDBD7FD93DCF5FEE83A9D90878D0C8311B66E8A0BC2DB031229D4E8BD3998C5EA2238684910B8D603CA9C0933FEE331C2ADE043D67F41A1DF37DEBF31C3F6F9E2BFC5CD07205D7F9CEB7BF55C4008D19EF9219D0DB3B7BFAD4693878E8A0416C3EBA89110643F8C8C7FD7D3B3723126A5B2671DDBDC370AEAB1FE16982A17D8FDBC3707FFFF004545FEA855DDB36433C91647683B69D5B37B13634320E83086B47C7A72199CEB20106B6D14F83626C7CE2C6FC00A148579497B9E05B8F1FB4195C84A662DE089B48226F487938BBC00F102D14C5A2A0B6E828E95DFBA628E4A8095A696A4D10D66F3D243CFFFCF3ECF88E3B0E3320A19B6AC7849478BCAEA67C19F1692375338884CCA29A717B3C86089AAE1AEE9FEBBA0AB3F34B303635073E544BCD0DD5D0DA580F35D5E5D0DABC8E35DA46C7A6D0765C868CA2320948A5D230323A0A49F46D1C9974A90C40CBEE0BC2E8D000EA400FE3E87551500102128DA8A9B52FADD0440BA61928012CF125F59045FD2A22081024492B81F82C9781847650FAE1B9E79E8337DF3C0D0F3FFC11E8E8D8C2A5C050416E04E4FB776F61486871298E2A28C9747E14FB251CF5E9ACC2DE57E794D78DFF2C677C6E31CE060A49E6E0B5196CB310F47BA0A1AE125A1A6AF0BA0A74F78FA04EC5C187EF3332720D2626263900405596490BA53100DFC9E3F1B230814AFA1A892650A8D8C9335E94E972E6B3604EE674399767C59C3C2BC6C2CE123B2F316A0B8C30A651A35E41AC9E4558C86022DEDFE9F1A311D64A213E85AA039AAAF824D1C9CECFCECEC1134F3C013B77EE84877EFB21A8AEAA62F773E3F3BCFA560FAA898C0130F47C78819C3F2F12CE1CF1F6D15F1C0FB1533187DC181A9F83A1B159233D8512373F1F818181ABCC4BD678728A06416C312291B4DA73DAABFA01B96C9A8D98803768E46EF988A7201DEDB311AB52764B832CEA71D2B9840CB2999C0DEF9B69C6BC3A1245535D898C192257454E8F0375AB8F9D8B271228B663D765002F269078D1409DAAE4C292C359F09D9E9E1E98FED634B32D5BB6B4437373135457571BA3DC32F2A6C70B7CDF24B65E142AD20B0E390065BF8DA1319F8F44606E761EE6E6E77150290CDE52D354CDB043F8BDC8DC94934777D5B5FC00C4E069A8696DE58998F7DE111B1BBB069954E27AEEB0C0336565D81A510282CB7C097EAD643209838383B0B0B000E170190BFC5557D780DFEF4329757215611058B0A1309303F4798E49690EA127496A16075A06161697606E6E9EE9791A7C6663C4377B1B1C8E8C8D52764FB25776AC2C011A2A21E1DDC90594EE07D04B2BC21AC924074FDA57A2CF20AD14D5359BDD0691079C4C26C0E572B2201A492F9D23754804264233B5A8904ACC5AE7720CFBF3EFF07DEA4D9F43D55426B54478854B405E0A746D6666C64C2EE556CA88D91E1C782CFED79790612A4D554BC9E8B12C5E2A199D5839AC2E5A467FA5A6DBEC00D74BDC49336249E6E70521695D5FE6F0B14684D64CC26B2CC067305281542231383F3F912D26EA2A36C08865D8B7682207DFFDC91516C71778F9A6C8122C1A3F67ECB32618C7A26EEC17FE867F667E971F3FFAE8BF837DFBF6E519802FA02BEA5A455D8A59C8158B4C769555D64FCB0E578D9D0106CA2A445DF673D6A5F4BCF397EF8BF78B9ACDBF58C6109B04501BBF76F51F6CA535D767000D2C328EC50AD78146D5CA0F0A66AED0FE4F3312338CA8A245E4FC39735F62A528A290674A71DC49638E98BE1603B2DCB59FC097F64D8DF4FCA0AEA5E3D38868CA5789C730886D3246E0684CE790D34CB7587BBAE5925BB0B4900976274FB71CC0BC4A62EA489B9E1CF9E1B9D77FF9235E5EA3AE89824832258494882C9851A42DE073C0173FDEF19E2464E8F916D1FD1705495D8301A44BA97C718C854B52B1E468EF9B9395EB367C2018AEBE1309ECB4D71DE725C0F07504A15002F204CFE31EEB34E8795EE8B67D4B7A964B463CB6D4D37FF9CC3706FB2E9E205F0F8C5A57B5243FA0BCAA06D2080793B1453EFA79059B955CB111519698AF20891C5AF2EA3633C66F41360B5ED875693E64C0D40E798F68F834C989FA657511A05124189E32BDD41C9786251C79F333D7FAA6A3F313275CEDBB7E271C0EEFE091817CDA5110D6000436861480CFE2FD22E27346657399C8505FD793674EBEF04F9CF024A5091A30C575ADF2AAD68DF039FA01A465E941199434896F9513E6194084E7992086FDCDA0147370CD8784BC01330366AA6A88B2A12B8DE867564166E075B4351C31CE04953321C75F9282F533E9647CB2EBEC892B91D9B1F6D68D5BF6006CE80895855A3972BAE95B26939A9E9F9BB9343B3D7EEAE2D993BF8A2F2E4EF06749F0C1A1AC5454BC6A2822BA3007BE60087CA18A65C47EB7FD00827F4F7EF7BB90CD6685B5E12A7B29954B037190DCDC18970AFFE4B5A1ABD88EBF86FB1E8F277CE08E233B76EDB96DFB96CEAD1D5EAFB7CA4B21CF65704FB075C2B2F3386072E80744E7E766FBA62747CFF4769D7FADEFCAC5214EEC38EF53FC5954B8CE041379150C2E28E86CB8DC9EE2477A4F3697CB0D15E172503229E97A9E30BDD3B163C7D8F1D7BEF63566BB8F1F3F9E1D1E1E56504A530303034BFC1DC96173A75229CF8BBFF86917B61FF1730E97CBE7DCBC794B797D6353B8A2B23AEC0F05CABC1E7FC885FFA553D94C22BEB4105D585C5C589C5F98999C884C8C8DCCCDCC4CC638FA4A7342A739B1B35038A964CD993DF2AAE6ED5D227BA98E98A6A1C7B95C05094D4D4D02125D40828BD49797970B43434342636323FBC2830F3E08D16854EFEFEFD7DBDBDB33DDDDDDD9B2B2B2E4D9B367259BDF60CDFCC96412D2C58B67046CA69364778034C85764AB454DB1F5E6E779CB516232435E0584AE201500C9B482EA460799EA6528E78A20C52AB8E52A44B4C2D4BC085734A3A362518454CC87A511DE0602810224C48CB3CD0F703A9D82C3E1109A9B9BE9E19C389A255429522412912B2A2AC46432291A616C8511A1A3A34341B8A9DC79E79D0A3243438F37874D476F54A8AFAF17914962269311C89B9D9A9A12C859F2F97CC2E4E4A439F2B4426B5B3879B0F8FCDB9D342297FAC5C85206BEF28DB7DED584CC071F78C0BA1F33CABA62C67488F8626B6BABBC61C306368A3D4662964D9FC2EF3AF0FD59590E8FB3E029359BC60D7F9B6C69694923D14D27484066C9A8FBCD51A621E1B58989099D98874CD18E1C39A2A3E430821E3D7AD4F417DE953909F22A19F1658E981FFD807FFBD17623BD68A51A793A92A7208DD4A4904F53F254A4D95BDF2D3A4F037FC7CE9D05F723579E42BD388A051CFDD2BA75EB9C1B376E1442A19003094229A980DFEFAFADAD6F3884B6AA139D1E87A6A922222CE200DA30652193499F8BC5964E2696967AB861A69937124A9B1B19E434477A229150508A72785D05254245E2ABF1785CC3EB6BA8E6745477FA238F3CA2777676EA379B21AB4980EEF179213A3F0B81B272C4E4063AD9BD29842A485C251163CF8AC9CBCF89F910B558901193D835E938897E071DCF4C4FC1C0F028C25A4925E223719CC8806055559584A335B0B9B3F383A160D97DB2C3B905092E1507BFA851085C72383E9CCCE4744FD839A4E4525FCAC5E3E7485A1441A84C4BFEBF27082B807A5E54945F8292ED436633438ACF9045463386901A4334A622F1D56030480CD16E26435635C2FE40187178963536AD45A7DA1811DD6B848966D11177F1EDB6DA1E3B5916A4D28CF02CA51B2956C2C2B72C68C543B91A451D8DEC118906FD0E47A1A3BABA3A505757E745355275E0D0E12F7ABCBE7D66C0EB7ADB5C2402A934CB42B58992EBC7A22B7718288229FB8F22D0DB638410847DBA207D2E0D4E0AE62C82AE8E0859ED9C2CA9BF7269705914B326C2C9A1DDC8213372F84E0A318404F589279ED09E7EFA699DD0D8DB618660836914D6ADC6D672E4B7EE7FE8810F7DE8D3C94494658A441E47B1A71359A2C5EEF9DA43BFDCCD379D3381463F2BD913790D8E6805FC78E19255D227E1F1EC7C045E3A790A8606AFBE3470E5F2D3A87A12F7DD77FFC6DDFBF67D017F5B911FED9A35E28B2560727A0612C96421B8D094C7D28AE6D664EF57B58281B272B00D070B2272650947C2A8AEA9E79D92F0D380AC5DE4B0338BEA2A8B12494C2946425AA9CC58450569105B5A80CAFA86F73C212371260E0D0FC3D5AB7D4E543F65FB6FBF7DF38143873E8FEFE252D70E51C3F4ECDC32E21BE22954C8DED0E74D2945D7147E914B4235DEBF09915F58177858C4F85C46F1D0754719EE97212BB663FBFD081A17F4914641CB9EF03AE41F38B2D9212E214C4ADC6E770E6D3F498682AA4A2B4E4196C4000DE5B394177DB7FC00BA3795083A45D9B567CF9EF5F77DE083FF0A995212F1FB06AEAE58CB2E0AA22E78BC0F3825D96B462F5FCB26E14D3DCB6AFF090C0491094D28AD8DE80ED4E37E05F6CB240347A4EE72B7E135A87D722E934A65B3993E5073CF577BA51FA23444C80944389B461F258B4C50AEC704F97AB1A8F7D2FFB5C49EAB10CA4E555555FA7EFF939FFA5D34C4DE5288DF75A597A931F37A66D08D5D5B9205B7C7DB6EDE675155E0E55CCA4073F8B222B6B4A0C30042DF21F4AD08A37AF0FDD78932D42123EA1843C47C229F3787ECF778BDBE1DC88C1D0955FD93B944723197499E455BF28F91C8D2D3E5E54C0BA93724012C68A615FE269152E09F5F1DC94FCEA0A9AA6C5286B96F9BB441314D4AC4D82670E48FF9A40D308E29464A13347EEFF73E0EE8B932E38C589CD9984F7DEA536D5E9FCF5542660C06874718F11524ECF8F8245C1D1A817BEE3CC4DE862075A8BC224F3CD431FF9C58602A4816046B1AAE363008EACC3438F6EE05118DB5EAF3C318D26E92E52C90D8F8B435820435A822AB05192A50728402E99049724965DD830CB9676274705B39947F050DB44A36E1066C80B06C4A7A0E91CBA581883505C9981F6C78E3C65424859F57ADA947E61425917BECD6F425FA4C33A72719D3968E1CB917D0C962C96EC4E070DBFEDBA12C1C2E49ED8C8E4F309D1F8DC5E0E4EBA79911374A0D7570CA4E085755B3727793F857D249B8944DE5894F6F1C8BD3CC1070EFDE0DD94B97008D0F64BABA5874D7B77D3B63A2E072C13CBEF782AE412FBE2FD5FE54E0E795D86AF173B2211ACF15241331105596D316BBBABA84D50CF22A3600AD0F2FF3061E1E280B38E1CFFF706FE94658964B4AC898795B7A361AF92924A48244AAA8AC8452883F3631C94A42220B8B1043C675A214A9C8D41C0213BFD70F6124A420390AF2BA3F9D8D3054C6823F84D6F07CF6DC3970AC5B073924BE90CE8010304A0C65B44599EE6ED0A24B10D8D48E765C006F4303A0EFC0DE21C6429F1A785155558B0E4B1AE6624BE887B0849288905578E69967F41B71C4C0EB2F83F9A909CB2098E93C628C68CE0201A307D32700B33A586485B846B55B51588FBEA01799174E1C62F8F6ED3BA0B9A5B524E28F4F4EC2D4CC0C9B6A4497ABADAE069FD783CD0B5E6C0811414009D0ECB95D64C0E38DEB61289382DE6402AEA2345C43A8EFBAFB6E66078819EAFC1CA8D3A88A8241F68E7A2A053A5E4F5B44C6F983103D7306CA366D02475919FB0DA9D846A70B9C8268311AD07F4244A79023890659244454BA0D201C861773B8A93A58650915C11679D2F8D219565ED42420CF91AA96F3C571BAA61A8E97CA1DB002DC6EFC86F8B26FCF2E58BF7E4329D5100CE7D3E8A79A1C5AB3C2170A1A4467CDC38AAF7278ED4C2E0BB2C3C5BC6DB3AA01E1256C71C8D08E3A9E8EB3F87CC3E9345C4D25611819334D6591B5754C4AB2C86415258C249A98A12E2D82AFB2027C685DCDC9CB01546F952EB7951B4E250D8F1E0C34E9463F26178944C85953296C6E57452B3A6287EEBCF7A1C3771EFA3445282BAB6A6F7A42C60C4F88BC7218611CAA9F2C7ADF01C6B862A7AAF8782EB20097BAAF30078AAECB086E129EF7B5D555D0B9A59D31688EA9A805588CC6514D2520994CB3500585442CD5646B69BCC728DA83914C1AC6513A2268909984D3F429FC5D1A0DB5BFBAC652631B1D6EE8747BADDF0F0DF4A13949C0C0F0487A7636D22D8BE2CB1FBC6BFF5797969628C4C1C2DB262356B601A226E4F0E665CDADEF5A42867B9A94F542E2A721102A2BE91E69B4133D7D036CD6234D9F2A24BCB14F75AD447C73364BE3BA7AD6A8C88A859DF17B544E3835330B93A8C2E6E6172099CE1973BD4463A99D2DA8FBDBF5A031A20959E17DC7513AA6F01AB1BA7A237140AA17C77293D7074EAA2BE50C489004E0CB20A3DD78CFDDE535D5BB6717A2CF568543A6179D4306A8ABDB00455B331FFB0E489FC7FB480CF41A71E4FBD9485E4BEF93B45CBAD2C3548ED7D2F59EBCDAC19E3CE98EF6CD2B32FC72770F63047D3F80F7A44613EDA8E299F202C3A3D760E4DA387AD2F34C5242656170B95D4C9237A38EDFE40FB0EB24F139A770D0CCA07A5BC2DFD5F17276E65D6B2A83AC9185289B8746C50C3BB675C2E4D4F4F1680AB1A4AE0DA0443F7ECF6DBB7E4CAFB49A27CC8921DCF4516F12924D9843E3E66123D6B366608D4D43EAEB870C221432B654D7E92B523B1492595C5A8289A929A8ADA9662FCF203412E995D7DF80BD3B774028982F21BD86F095FC873B6EDFCFAAB937AE6F63CD1C205D3DBDD0DDD30FD3086BC3E172280B8598BA0A2243024E076CB0156F996A6C7A6C8AF5C3D7C618F5F6EDDDC540023D0B125EC6F76E0FF87D8FA161FE19DA84EC2A46D8C848152464A259F8B3272FDA961850AC7D2B09C3B0BFB17C01FB5C53F27E819EB32AE9645907B7438423F71C86C71FFB7249467704472719DEC6FA3AA8AEAA2C503B240584B32F5C3EC3747EFFE0207BFE2A34960D75B5D0D0500F87F7EF07A7335F107175689811F4CE83070AEE3330388CC67D02EE3A743BECD8DAC91AA9CA6E64C6B98B5DF80CB3508E4E5D6D6DCD8AF6637272824DE8239B46CF1942BB46D244E5FC82224279380489444AA78CDE9E3D7B047979A18BB13AA156E433B89D12DCBDB7D6B65401F0650774EB9C68DB37962580E5DF130DAF32E0F3C0A73FFD899224878C6ECFC055A80887A1A5A96999FA217BF0CA6BA7D8FC02BBBA9A989C826B63E3A0BE719A1180D44F4B6323B4343732585D1E2E2B9A95A3B209D91BDA5AAC7317BBBA514D661842DBC6277C5C42557602EF97C0F31B10B59993B78964F15814A6D1B61030D9FFBEDD6C4A9393CD38A559982EBC67181617169F11DC1EA1BBBB7B1903348E32D1A3D7208E90AB8C5C78F20BDC123C7457F3DBAE8C63E5805CBD21F7F1456B18545C4BEFD3E7979008F412DBB77640593058C000377AA7275E3FC5E61414A08522ED499271A5B71FED402FBB6605C2C8B6962658DFDA0CCDC814426697D1BE549687D9B5CDADADA599CD5BB055633006917479D03EFCEAF809B8DC7F0D1AD139732128B83636C998B4735B07A3283DB72218217B7A7664CE445375F8876877F4B6B6365DB6139EC7B37308B8B2325AF641147B71EC1A6A17CD7A21538FDBF539C58E34353F1F2B3F57979766B37A4995E37D01EE7FFF11D8FCC8EF94E46CF55E1DA4A40AECDBB50BEA6AAAB9DE37884FDBB90B9760766E7EF56CC72A27A6676799AD78F9E4EB6C70343735C0C6B656768FE2E05EC7E64D85EA1825D2E9723215F6D1873EC468F1E6D9F3F09D1F3CC50C6F193A6824A91450749A65F292CBC879A8B947011CD9B9B9391501880543CD55094986D378D3344DD71744D9202E2B9CE5C60678C9B6067C2A285805A9AC169EF57907CCAC8F3788ADB351F7B18F3E5C92EA89E1A826235959518EA37F4B81BE677A1CF53519BB52B64A94E47D7B76404F6F1FF40D8E14309F8C34415B22389D0F223ADAB47103746CDA085BB0D941C4E9B7CE23E103D080EACC2E15045D7BFAFA9824DDBE6F0F434E745E11151015091C2E19C6C726DEA80BFBCF218DD27EBF9F05E8649BEE57795221818E539CF07241A8188A4BB20B6BE34DEFD7F07A0B272BA87C9E94D321C11F7FE90F19E22865F45FBCDCCDAEBD7BFB76C6047B05F5CCEC1C742331AF97EAB32720284EF4DDEFFF00FC082DE99A5BD14F686B6A84936F9C82F1E9D982DFD2CC979368375E41E9A0EF36A37A2168BBBD730BECDEB16DD9821DC9640ABEFEB7DF643469DFBC1142A1A0655358960FED5E3C9EC855F89C7F8C4C8921EACBB6B6B66A8C71B60224B3D63E2A399D510AEBE62BB4752B5E9367827D1980FC549CC2D16FECEBAAB1D2640047CE3C8A2F19223B225931C8363909337373CC4EECDADE59407C2226A91E5883FC665930E17C3F4A4FAAB6DE9A424433184FBDF106C8CC83D5A01A75FA3D771C82CB5D5D70A18B2421650D3E424CBD0383F0BF9FFD199B55D3892A89B0FDCEED5B99C7FDDF9FFC1E33BCE45790BA22E78F266718732C28D4A1D1F4A8EFD59707A6F0DE49B481B98F7DEC63BAE909EBB6C90EACAEF2F2C5B3FF776662FCB7B3994C081FD89FD3725E1CC10E54E9B291A137B9A659E54B9AF9BF794AD3F87C33494494E20C86427E3D5D53DD3B70F577DFBA70115A5147EEC497A0175AE60722812E765D61FBEB1076DA0BB6C8733E7BFE1263F89A2A9F55D888B00B8DF7EBA7DE40A3E965CC0B05038CA16E7FD0F277E87ACF3EFB1388A73290B196481096A5F168B4BF71E62C9C3CF5267B4E621CC5A4E87AB7EDDD09E5A8FF697092E1A5FA9C643A45B32623D541CFB7F0D963A8AA321D1D1DD6DAA72BD980D4C2CCCC1436AABBF782B194B10BF20BE895BC8804D5F4B85C2ED9535EEE3B74F0F69D0F3CF8F067A368A408D69D7EEB1C33809B36B4A1C16A4423D8C8D290CCE142D592E439DDAA8AF20268791ED5523A9B5973F49B3D1196202A41D230221F72D03A36AE87D7DE7883A1188289A41249C2E3E8C8A936C929902661F5A0206DAD2D8DD054DFC0E69C5195373124B99464F3C97299F8D774C9BB80C4A7975268F45BD1505EE26D0D3E1B33A8922CC9EB28ED7593258787F021C46030E8AAACAC2C43A7238462EA0E978550A56C45B77F8CC1BE13AF9F86E75E7811E2C90483765BDBDBAD2B134EDFDED9615D8F0C652C165B5EC0BCCA467E4314473C8DF286C606D6930A7CF6E7CFA324D152350146FCF7DF71104EBD791A995305E31353ABBEDE6A4C2035490E5B05425816E95504C8619F44E83B333B7BA9CCE33981863E86AA273B323252B0F2AF6CABB33735896EB30999150A564B8D4F08487CB1AEAECE830D55BE4B4BE3681CC79138383CCAF0FBC31FBE1FA6D1001E7FF53574FBFB10A10C30887770FF3E06091FBCFF3E4B458D20DA219BB08AA55DF6689B719453A863747418649787A9226230E9EA60A88CC7A25486809EFBE5AF7000A4D8242AA1C086AC2D684437B205AD8D4D6C323A79BB34FA295781CA5EF50AEA7FD0346111ED506A626242294ECCC845931DA00815ADB46261C90C403C2CD5D4D448C80865716961B2A6BE3137994C39C840471617E1D99F3DCF90C2BD771D864F7CFCA370EACC39B870B90B0E1FB88D35CB139E8FC0287AB46B9738E51FAEFFEA1050A12D659D83A840F7EDDE09A74E9D02A7EC0073C58640C0C716E6C822339C4E17030DCA5A4BE414BDFDBAFA5A68DFB4811960A67A50F74FA3039B42351B999BFBA7A04B1A25E443A1E8FAFAFA652BBF0BD7F9132600EFEC2F6608BB76ED92D6AF5FEF43EED7A221DD80E7366CDBB1F3EE6079E54114F530A9074A4352DC8442C5848CEEBBE72E2601F5E829D36324504753ECDF3EFBBC303FA031265E2F7F40C789780C1691E94E8F9749DFAEEDDBC08D237660700886AE4DE6275817FDFE7AB909C2FA771D3C88FEC54E8610E91AE9641ACE755D46C3BB101732F1FB51EF8F389DCE088EFE3455D1953445C9F6A5B75D804A4C7CE8A187F4E9E9E94C229188E321AD973675F9E285E3D85FF07AFD95EB376F391C4B25370C8F8E538533122805FFF0D433F0EDEFFF235BB7E7231F7E00B6766CBECEBA41CB0D24A99E502008FD4383367D8E5014095FC546B94144B23F83E43821D303C1B2B755DFD48E4EDA8E6D1DDCF01AB0B36BA49719DE446CE1AF7C0E39824C892303561CFDAB4AC0CDDA1E79E411311C0E3B90017E3476E588626A90119578CF0AD49365781CC4637F6DFDBA8D6E7F68FFC0F068251A498149054A04BDE4673EF1AF99E3535555C1622DD6A85795E5A589280984C1CF9F3F071E34B0618484FBF7EE82BEBE7E882CC598675D389235A636143EA9BA94516F1E93C1BDF7CE3BD049DCCA9E85A47080FC85FE01989999B9EC50339FC3F71C0D040234F0A8404B2BB92AE2666D6470A8326C747434C9274E64F0199690E873D887A9D882FAC9F1B14574BDAEB86439B8BD7DC3819985E8E6DEBE7EB7C8933419BE2E0389784D552523ACB08A56448F135A5BD75B443B7EE2555207E040678C16D7230F98A06D373265089DB192E054D146C8A97DE306D8BB6B3BAF9115208EB6A4FFEA202413A92CA4E3FF5193A47954BB89F2F272251289ACFA573F84F7E0AF81D094221175A04CA5E1883ADC784F0F4A801F091A426690FC97518FE7E93888BDCF1F0835B9FCA1831D1D5BAA737C9D06637D0685EDFB3C4E34800D0CCB1724F915C30B5FCD2E94230C3EFBD619F087C26C0E9C5AFCDBB5EC005E7BC3FA3678F003EF67CEA4C207C8CF7FF5122C46A3303D3EF6D7A29AFD5F48FC3164D4D2DEBD7B3354CABE1A03DE8B6511490A3474C573F8502934C831EC23F8D05348EC517CAEABD828A8D3872AA91FF7072959158B2E764566C69FA145B2F145344D2DACB0882CC6E0ECC54BCC8F181E193554D6CACE6BC146455BF58D2DE0F5F95744B334BA4D00B0D2467E4C27EA7E0A39987F3DE4023A87541416999FEFD2B3A99F53C0140758C2EBF55A2187773C45E91DA6222D888BCC603309878787A9BC3B4D0F8A848D72231DA04A646CB4D440A58606ECC5177EFE14D9898E6DDBF7FA82E1CE4C36E75335DBE84489B88A7E05256C28E047B17D52538450AE178E5E0538C0CE8E4D70E2C42BB0B1631BEAF3AB85C49265961FF8AD7BEF628427C84969CD1ED4FBA9743A9B8D46BE86836816BF87FC886551F5AEF9E756DE130614212BF69790482A8E1F3FAE793C1EC5EFF767C84D4786106258C2AFD2CC726A51DC8FE14B555CBE70FE153C7E33142EAF5DD7D47A1B9EABCF643451D5542B024BAAA9BBB79F65B14804D6B735434D65254B100945885A582567DD3F82FE86C30D7DA8CF8BCD0325F00F1FD80FD5784D528751543DC75F3DC9C2F48B73D3DFA45A317CAE05C4FCA99696160561E79AFAFD3D63C04ACCE0D5621A8AA94A75F5A8A6B238B252F871021B4D788E93D1266620D3CA493A1623F3716C132839DEAAFAC6ED6E97BB13FD08AF6AE5230C7443CCB870B19B79BA74B786FA3AA8ADAD86A0DF6F5B2362F9B6884E94C3E5B6F4BE49FD602000AD38FA0FBC6F8F250D2FBC789C851B161622DDE958F417926178E33C8C53D29FDB127E13FE2497E9F851B1121A6BB6081F8AB0134793173F626A09FB301E87A90763952C0ABAFBF033B7D3EDA9099457BD2F9ECAD426934929C78D3533DAB685959821C7F314A55CDFDC8C46BCC64A375E0F7E5292B60D0DEF27D15B6FE4899833E72EC00B2FBD4C4E64766AB8FF0FF0D97AB04DE0405A9A9D9DCD3EFDF4D325D5F5C8F01BB015AB2794088ACAAA68A8159FCF974622C471C4934A0A721BC118C11913C8A653B1B971D21DE0F2FA43EB1D81B26D91C5A50A9A075C98A53312450A1AECEEDE5ED6D83D9121241914FC0B604F8B78D34283467D2B40754D35E2FD4E8BF8B3F3F3F022C25B36CF6076F2EFF11EE3B81FC1674920F195D50A717F63256025892069401B21A28D10512DC9E86D5254D64D5281621EC03EC42581981082C2BFFA4750D78952B135A3EA9B27A666834BB1284D5D65527023EF4C0ED703F71D81BE814116B26E6A5C07EB1025CDA35FB2B8B8D03D3736F2651C1C832865D3A9542ADED9D9993B7AF4E8BF6C06143382EAEB0932A3784BF178DC89CC70E2E82646F838E1996460CFFC087EECC37DEBAF30E90EF7865456D9B8188D954716A3CE52DFDB6400E582096A92A377F8C03E0ABE65477A7B3E8B827A0507C3184AC1E2F8F8789680C58DCC9294E13778335F849B08155593565555A54C4E4ED25CDE34BE38C598C8487B08AA221182381A491A42E4D471584B8CF04036154783D2ED09BAE5BAA0D7AB4BCE4D29556B8CC6E261F4B21D2B65D8AC2C1CAAC290DF9B40A60723B90501610E64924BDF56D5EC18DE8F79BC9466BC51E2FFC63360A5E020970A1A690A42BD2CBAF969B41354441045624488E060FCF5BD208F351113FCDC607B19334073096A7AC1A3EB677D41975CEDAB726474685034A85654AD2CAB2801F437DCE94C46D6F1965313636F6496E67A8392AE045B1A5A3389842F934DFC12AF35832D8A2A32036FF3CFED0AFF52FF3069B17A329685906407FD15D05C8EFE8E00853BBC14F2E052408CA17D3FDF67E9569AFA8AC7E6EA29F4D76579E13393BA1CCD88118D650ECC2415398D540B33483DDAA8455A8B62B560DB2D2101A5A8272AF726A9A0920F74EC28E7422AC3818C7021635C147FE26B4C78F19C1F19E3E330D7CC795323E84BEBCC997F633383FF25742335CB962DC0CF63D84FA1C4CD7ABDDE782010C8C23BF863D3C2ADF4F7914D7F026D85100E8785BEBE3E91D69720DF00894592E1E023DE5C6985FDD16A3AA6F3C404DC67469B0A0AB84345CE20D99A1C5F1E2D8DC78BF8F9227ABC095A53A254CC7F4B494089B6424315A526120901476E16BD5786A4485D616F328488EDA0D553A82729A073B4EA0A2DD641CBDDE067295A1FC2E974323584FBA4F3D3B444C18D60FE5B9E01D76306F06941E45BA05408E4E091D78D0416516549F8750919427FBA5AA21558687128AEF769A5436A785AA3F584748AF10F0F0F6B6F07F5DCD22AE846C31EB491111F1C1C14DADADA04F46205D4E92215D7A29408A862744A25A204E9F8192314328F2D53533CD9EEFF33E01D32C4DC6CC88A6D26B1570B9DBCD3EDFF019AD0BC84D284ECCD0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (51,1,'Modem_(128)',decode('89504E470D0A1A0A0000000D49484452000000800000004D08060000006E486CA10000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000028C74944415478DAED7D07785BD799E58F428200C106B0F7DE295222454AA20AD5DDBB23C7762663C79ED8291E6726DED89B38EBCCEEACB3F9BE4D76767637D96F67B313C7768AD793EC38892DC92A56A50A8B48B18955EC1D2441108520B0E7BF202410044050C52D44F20C02EFE1E1E1FEE79EFF9CFFDEFB24B1DBEDF4597E7476F744DAECF603769BFD09BBDD168DBFDFC2DF6FE6E766B7D3DA63C587E4B30880AB7DFD2A5CF77D369BFD49047D3F9EE57826049F107C3CDBF8F93C5EBF89F77F5D5C5830B616EACF380006868665B8D6DD369B0D3DDDFE109ED57CED083E2D0BBEEBFB36BB15AF0FE17880C1FEFFCAD617CFAD85FD330480E191D15204173DDDFE1882186BF71EE86BEFB9B08003188BFBB16F16E7F817C10C36FB91CDE5A5B635007C0A01303E31998EEB7A1C417C1281CA71F46E9FBDDCF1DA35E8CEE35DF7DB163FE7D83F84E75FE1F9CDAD9B2BEAD600F0093FA6A667B4B8960308E21308E216CFC17409E292E0FB018EA5C1773FBE19C7B15E786BE7B6CADE35007C4C0F83614E89002C8A39FB7EFC1D60F71130F7E07B6301F7F73C02C173CAE0FF9FC47FDFC4FE77F6EDDA31B506805BFC309BCD3234F22EB66D68F487F01CB294AA57A2746F2CE02DEFFBC902CBF58219EFFF912D25DEFFE3DDFB765BD60070138F79AB75031AFD4934E66368D4382F8DEE39E8BE82EF3B885E82EE23657806870EAFDF596486530FDC7D877D0D00FE3DD21080C7858AB7D972DD1BDD3D00EEC1F7D65BDD83EF1908CB41E53DB5F84819CB99E42ACEF1169EDF7CF8BEBB5BD600B0FCA1C5F6056CECD7B76093F8EC5DFEAA790FC78F8E8C524B4B13998C26CACEC9A5B88478DF2CE05B08DE400AB2D5321070FCAF1E7BF8FEE13F670028B1DD8BED496C77600BE037FDA76AFF1BDD6AB552477B3B35355DA689F1710A0C0CA4D4B474CACACEA6D0B030018A90D0100A0808BC8914B00AFDE1D8BF80E7230EBD60FBDD970E3C32FBE7000029B65DDCD3B13D8C2DC4FD00F7DEE7ADD19717749637BAC160A0C64B9744E04D2613821C4A79F9F99495954DFC0B3A3BDAA9BDAD8D666767492E97D3FAD2324A4C4A5A7E3E0F81F6167C77407A63123740CCE1EFDF2FEA85C34F3FF998F5F30680F58B3DFD316CF1BE0E5C59B0AD4CBD8303FD5473B186DADBAF904422A1E4E4142A282AA22404777A6A5A00A203FB161616D0EB03041B646465512800323C3C4C4303031419154DD131318BF9FD96A6005AA11C3DCA63115C6378F6CB4F5CF82C032015DBE38B81CFF3E703D71A7BD56ADD46D6F979BA7CB9892E5E382F8218A45452614121AD2B2E46CF0FA3AB3DDDD4D0D04003FD7D021461A0FE9CDC3C4ACFCCC46B29757775800DAE800DF4A4D16829353D8362E3A10F0012B8113044807710DE500AF00BD46DD8FF168F567EED2B5FEEFA2C0040E31473D82AF9D8D59CD82B45FAB07E33333374EE5C357AFC4541F9D1D1D154B67123E5E6E58BE31A1B1AE9527D1D8E9B26A9544A898949820D121213C5F1CD6083AE8E0EA11392C014AC0BC223343467345277673BF55EBD4A3680203E2191B2001829C0B284E25D83E8729DEE405875CA58EE6ECE38C6236CBF7DE1B967263E750078F5EF5E2FDDBEADF2C77B776EDF7EA3275E8D67EFEAEAA6D3A74F51D3E5CBA247E7E6E55179790525A7A4D0F8D8185DB87041ECB35AE749A10812B9BF685D117A7E040D0E0ED0E5C606EAEDED2505046156760E65C111289541108913D47EA58DFAFB1CD5DD60B59A5252D2281EE9035F4EFDFDBD422C4646C7E07BC903F5DFF672F43C8E7F1FC7F348E57B7FFB8DE74C9F0A007CF3A557AA48223DA656A91A9FF9CB27E519A92979AB3DF14A5537B3C542B53517E9C489130844BF1075151515087C39A9D52174E5CA15AAAE3E0B3AEF12A0D068B5B47EC306CACF2F24994C4AAD2DAD4803F5C209444646527E6111A5A7A71347927B7A4B7393D8C74C118500676466091D306B98A59ECE2E688B3E9C47460949C9140F2691C9E464B198490E1DE157AABA095DE3457F4CE3F8771D6312F6E32F7FEB1BF64F1000AF5649A4F6634C9112A9C49E94107FFA99BF783C3B3424247A55F9DFC38FD5E97474ECE8313A75EAA4A0ED94D454DAB66D1B9594940014F374E1FC39AA3E7B561CC701CAC8C81469200DC19D9D35507D5D0DD2403D9794293D2303BAA08462E3E2C80C67D0DAD28234D044737306210859136466660B708D8C0C53074035363A42EA9010211663E312D0F00BD407F618004B30C324A7A6511C00E12BF81E5D8DA794E13A4CED81497C14B8FAF1DEDBCC0CDFFBF68B8D9F0800A432720240E44A894C325BB17E7DCD83F7DEB91981095C9500C4F31550F1A14387A8B6B656F4CA8D08EAF61D55A0E4641A1A1AA693273EA28BC8FDF310804A88BE52D8B88D60040D72783F9CC0F973E7A8ADB54504B6685D311503302121A100CAA4D005576001D909B0FACFCD2F408F770842168C575A5B697A7A0A0C104B9970085AB802A3614E884576197CADDAC828C1062C321924E3D8C2212023F13E4F1AF858CBD14BCFDB20520400F1DA2BDF1EF85800F0AD575EADB293640900A478662A8682EE7DE09EFD436525C515BEF3BF5D50EAC953A7E8E0071FD055D03253F5CE9D3BD1E3B7932A3818A2EE121D3B765C80831FB1B1B1B4A5722B6D00D54BD1FB9B1A1BE92CD2C000520407A2AC7C231516AEC335C8A81B81AD056098EEF9BA929293A9B0681D0461121921FA5A9102AEB4B50A41989A964699D006A108EEC4C40498A08D86870645BD80839E04AD1110A8A0217C4F7FEF5580D04211DA488A8B4F10EF4F8C8F51685838052A14BEF3FE4D14B8FC18D8E2B1CAE38B29E2DDBF7FF5E599DB0A00D6009E00C0BD97FF0E51AB6B9F7CEC91D0F89898CC65133A907BFFF4A73FD1E1C38749AFD7236885B46FDF7E2A595F22A8FBA38F3EA2A3478E886030CD1742C96F072832A1DAE79016CE9C3943E71078FE6C167A6CF9A64D2215CCCF5B05682E5EBC4093F82C57010B706E6684B0F070F4DC31B1BFABB30362514139700FEC043888FDA0F92B6090C9C90952A9822905A060BA5F58B0D2D5EE6EA4803ED1D03171F14213F06F65304C8C8DA20DA482216213920438E45C65B47919C3F03106E12DF83EC7445CC728AE7FD688CFBEB7E8243EF8D1DFBD3A7F8B01F003570D000038032F5D048144D02B9E17929312CE1C78F0FE4295521971194AFDBDF7DE1301E400545555D19D77DE296C1AE7D9834801A74E9E1434AF8622AFDCBA9576ECD8415AF4B60150F171B0416D6D8D004559D946DABC658BD83705FAE614505B5343269311EFB1202C85F02BA40078FA4E58BCFADA3AA49241713C33417A66067AFF8270016D2DCD426F446834C22570AF37E867A9BDBD8D06FBFB445A61DB9880CD62B6206D748914C0C23026368EA2E3E3C9045619C6351A66F5140AB02524A71137DDED1B91F46E4BDDCE3B8ED7BFE5CAE37FFEFBD7CEDE32003835807BCF9748963EF331D5A74E9865E84B269349C515BABBEFBE9B76EDDA2DACD87958B8F7C1068DA0733E07EFDFB3670F825B29A8BCAEAE4EB0417B7BBB48115BC1049BD0E3996E99DE592CB205E407E7EF8D1B2B2008D3848B688018ACABAB25FDCC8C109325EB37088FCFCC71194CC02980754102DECB81758C861B181D1D154C30323C24B4465A461625227DE8F533D4DDD121E89E01C12C101BCFF585591A0013E867A691B6D46088042122192033D33A8021025A216A9533916E746EC38A035B9DF89C9816FF5F7FF41FDA6F18002FBDFA832A8BD97C4C11A4F20A00273BCC4199FFFA8D9F8B5E9D9691697CFDF51FF6AD2BCACF3E74F020FDE10F7F100DCE3D9AEDDDBEFD77C0C6E509357F02A2EFC8871F8A34900D9ADEB57B37E8BC48FC987A04F6C447C785B7E72A20B3413904610404A14E3721D8A0E1D22571AD79107C2560038D2602411D112E81078B38BF67E7E6E1FB0A281801EBED81356C6A142980CF93959B8B1C9F2802DE71A55558C6A0A020A48674B880649A86B8EC051330B838E0FC5E4828D2CCC8208D0E0D392A6510931A16890B369A9A1C278552854DE935EF2F49053EC4A4D782994717E29549CE2F8E54FEFAA73FFEE1D8AA00F0E277BEBB6FA4AFE720E7CE28203E0839D38DFAAF01E0D4B123545F7341882DDE58696BB59A797570704038A872DFBE7D08FC7E8A42430D0C0E800DDE17C167BFBE79F366DA83C073AFE5419C93274FC00D9CA0A9A9298A81676736282D2D15DEBCABAB8BCE9E3E4D6DE8D51C90B2B272047E3D29708D1D1DED5403A6E1A210EF2B0490B82EC0A065E7D00C06E1B2309783F3F20A280AE71EEC1F406A68C277E928183D3B0DAE2101397E62629CBA3AAE88C0B323484A49A530006674789006A113B8E123A3A3293A365EA480F1D161D221F8FC220442312232DA1100AE9BDAC9CF9948B7A11C7D1D4056B0E9BBA505252FFDC5930FF5F9048084A38CC7B7BFF7EFAB24643B3AA31BA7E989310A09D750642C2BE28025006041F4BBDFBC4DD36844270078E307D4B8FDCEBBEF997AE9DB7F13021B26676D7009BD56833CCC80D8010B1812A246EE1F84583C04D1572D3ECBA26EC7F61D94959323E8BB0EB6F1148031845E1787006ED9B295F20B0A8467BF547F892E5C3887EF770086470033B3B285FB608668BEDC88BF2DA25E900FF7100EBAEEE9EE12EF7339390C01E3AA613C348AA813C04A32D5F3B032A7062E23B35B602658809E88864B6121C8C01AC3F16300050783D380262A064095930E4C323335297493263A8EE44865FECC6DF05985BCC1B90D809F353B33FD4C4A72F23A92DA1F7CE08E3B8E7B058033F88F3EFAA83439AB68A73C407A98DFE2DAB96E6C0854AF272D7E10FF50A94C2A0070B5BB934E1C39746D9CDE7DE39E9B92926A5707AB24F9C8C1F7DC732FA8BC5C80A8B1A1813EF8E07DA10D542A156DDDBA8D764034B20E98410E6726388DFC3F3737470505854230B2729F999E1660A9811370067763F92688B824F4449DA82E72159083C4F50016849C4678A8B8A9F19210831A6DA41090B150FC83B07E6DADCDE2BC5C6DCCC8CA11167068A08FBA3B3B210A4D087C1C98204DA87FEEF1AC09188021004A4C5C120522754C4D8ED10440C181090E09A5706D144991862C261319D17681480FB2C5390ADE26B9DED4CC66B7CF4545696B0AF272C2E552598620233BED7CE09E1500C0C18F8888908644C6EE02FD7FE0AAFACD50C113C87F36D8A6E8F824A05E43B517AAA9B3AD45F4544F00706E6CD14ACBCA6D5FF9CA5350DF7AE99FDE7F9F86060741B909B41729620B04215BBA5E50EC51E802B679AC1B2A2006B76EDD0E0BA605BD0F0A50345CAA17F9BDB8B844D8431EED6307C1A0E06161065331C420079EAF9DE9BFB1A15ED40698410A8B4AA0EC63A0F47BA8199A8003CF168F2D23533BDBC176FC26AE2C72E0D3D233446EE7E2502FD8C30C17A246805913F0F31434C5C8503FCD038C2A7508CE114B018A20BC36930EEC6936CE011061A4C266772D2879B17EAB72151E8E570605F51415E68F2A158AF2C5B88A8D7C018083FFDA6BAF498E1F3F2E8D8A8A0A48CCC8DE1DA40C7ECF93EA37C0928D03080A85927AA0D2F9477A0ABA2750708F63B156BE7123DDFFC00322572FD81684853B74E820B5B6B60A8BB773E72EDA5C5929AC645353139D387E5CE479AEF26DDABC053DBE8214410AA8F936AAAE3E232C265BBCF28A4D62A088EB0575B0938D971C2563E1102014B5E8956C192F233DB0EA67BD920776E1F90203E8F1ADF82EB6796CFD32B273859E6091D805BB380B5662AD90989A86EFD28AB433D0DB43C6390329A191A2A195586CB2189E004BCCA29DD4D01021115AB49BECD6A700B7F34964127D4E46466D4478F866C43BD01978B13942ED1B00DCFBF15A860653A4E5E4EF016AFFC593E8E3677C254DA361AA4F9F103DD55BC03D6DFC6081B667CF5E4A494E144E606464843221C2F6EEDB2F067CF838EED1C78E1E11FBD8C6EDA8DA4145E8F5DC8DEAA0F4B99EC0CA9D67FD6CDA5C290A3E0608C9F3E7CF0996E0D4C5F304B95EC0BE9DC701EA010A0E3C57F88A8A8BC52820F7784E0DCC040C086602CEE9D3C8E36D2D2D00F83802ACA2D4F44C8AC47E30183441275C824EA496386882304DA428288D2305E8C647056344C620FF0706DE8269ED2BE67D5B7C5CCCE9C4B8F85C8426EA5A8F278918E1BC0E023F00303636C6CA3D28353B6F1F00F01B6F00703E7FF4E10764432EE48099F13F9BC926C492B7E0BB82842D17079645DF534F3D2500300DE57DE4C3C3A252C81541CEFD3B77ED12FEDF002DC02EC0A90B38B85BB76DA3A4A464317074F6CC696A80F7E79FCE76B26C63B918FE653DC0256376015C902AD95046514CF5C8FD0DF575348900F3686101528686F50780D0DA749946114CAE45B018E49A00A7049E53C0E28FD35542528A00046B2DEEF1237020AC7962002E6570C8B2805DAFFAF966013FD6375EB380A1C1EA86B4D49440B95C9A2B71449B246E8177A601C4CB3700AAAAAA64A9A9A9728040199390921B9B98F44BB91C02C20700AA4F1DA705E4BAB1D051EA7CA481A4A14481834A8A7C37890206157E310207A3BC62336CA2F69A78634DB06BCF1EA1EC272626E9E8910FA9FAEC19F1E34BCBCA68DBB61DA48D8A449046842EE0F9005CBCE1DECE81E79EC925611E596456E014B001B6910B418383FD02101CE0C8A8285A57520ACA8F15051F7607BD3DDD8E9144B88994B40C00DA2A02CF6561BEB684E4545149E4F2F0C4E82818A4470424263E51884B9B4FEB776BD6370604C8075393927B83948A4D926B41BF1E784F40B0496C3B1FB9E71EFF1800EF85E0ADA8F4BCC2674242C3FF5226932A978F0B48A9E6DC69B2C10AF6465EA5AB2FD7903479C171D6513945FD4326051FD7F80CBE2B23F0600E3B856F7CF39B8219B80A78F0E007C8E575600B8570015B610F4320B47AFB7AE9A36347C5D02F8BBE8DC8FD3C81440671C82383E7CE9E1501E52164012E008945E78573D5781E10815A5F5A2A02C953CA3905744240F2230381CF04BB70DEE67A00570739004CF5A919996202C9946E927A000A13041E079EF33FB7C9CD4D28593905005BC698A8A84B11116125B09941CE20D3759A5F4AFB1C787CB6BBB3833272B35706805303E05985A08401F15A589DECD4CC9CBF0A56876E71DA3F27002ED55E20FBBC5904B2B6A29AF45FEE25498463C5B5743C80329EDA44B669F2290C5D37BEE00D651B2934442D067BD896718590BDBF421148EDED1DF421C4224F10E5798095B08EDCE3B9378A790448036CF3580F6CAADC4AD1B0AC232343223DF442F5B36328C5F15CED9B47EA6A6A70D40AB891D241F57948473CE3A807F6960521D713582FB020540607D32C5254E79556D8CD09316894086BC88058DD2214CF03409E672A5FFF9C4A15D4121B1D1D2D97C9B5D7E8DD196CF2DCFB79CE642DDA85531318F0C16F7EEDABBFF7CB0540C92A109060EC0B85C8D3E0392A262EA13C313DE34BCA2055A233258841135820CE891CC0ABB15D34B8BB9D2CD9B324232965BE5241342925A3D44812A3C4A73E700509F76A9EE8F1C4935F1295C04650FC21B001CF0EE23A41D5CEDDF841A5A204CBB386CE2CEA029E3B58095DE0ACF99F3EF91175A2077361871D42764E9E106BCD48357562EE8105E9218DD6C136B2E2E711C3C64B7542F1736ACA2B5C2786818DE8E9ED7028C3481FEC00D2B37260F9D437B31AD9EF6165899D26E1E9E78355C131E442F3AEB44F6EAFB98A598FCEA943FA2C2A592F86C271CE5D071EBEFFB8DDADF4BBA40EC02078EFBDF764F1F1F101F8010A049F177C84E06F66030DB628B0C15D710989F701F92AEE4535674F12ACC792209A17CC2238B6791B5D2EAC27FD5DC3249D939162504551EF26936C24C02F56E0B1FD440837A65AAE19EC6197806099D1334FC305704999C5198BBEED555514053B370E77C2B6914BC03C61A462D366D1B3B97178C6D0856A477A60F7B061638560051E45ACAFB928042157FF0AD6150B2BC816B2A3AD857A003C3558291300D268A36E6CEC7F95134A6CB6F9F960459041131915EEACC7383AFD622FF70004B6A06DCD9771BD9D225D1500C00110B27C0C5CD1EED6CBF5C71163BB2B089695829DC520286B39B640F446D6042AECE2851FE1F85B13A45225E5E6AFFB82363A7ACB85D327A55A4DB8D740D6155C20FD77BA48B2388748D21F40513FCB24F5475ABF442237167BFB3BEFBE87B682D6B9F4FBD1B1632238C54077155C02F7780EDEB1A34785F8E3C9269B71ECFAF5A542B774B6B7C33D9C00754F8AE963E59BB688A2104F1ABD78BE5A502533C0BA920D821178EA380F10B503446C73B3F30A281E7A8193B0B719C0DEA67FDDD0FA46ABC5121D1B07AD27975CA37637A1E70A047EF423C55D696DA23058D882629E2D15B6440F58CCE67DFFF4B3FF7E0C62DFE60A82658341AEE940A954CA8C462340A4088432562218C1A0FB1004261C8769A363E38B70D1CF87A9555A46A9A7001AED463A7DD787647F544712D9E2774CC929F399CD44E352BF0A48BC71201808B4E804F6EEBF033D3E0A81679770588C19B0B5E4C00B4188BCC7799FC5E2F0F0909827C0FB788D00D7FBCF4310726D80052607DE314D5C225618B136E0F490851E9F01FAE4DF76BBD637BA9ED76234DAD1F918C08EF8924B316749E0AFFFCD95C8B696CBA2DD72F28B047379D20373B386BB7FFBAB5F1E413C17105B9B63E296DDEE7134D00982A6A62689930D66676779BD9F422E972B1110359E61FA2802EF67C4C6C6BE0E0BA9F6164C83CD40CDC57534F1500FD9E32D020829FF09283D16EDB740746E5CF1BB0B6CC0D5C4E6966628FB7342836C8120E400F3D470A6F4A31F1E169A814724B76CDB2EF481118A9F7B3C5708C54C24F494A27525621087F37FEDC50B34333D250461FEBA754210DE8EF58DEEC79BCD73A48098E45147895BE0BD0181DD4B777BAB18DEE622158F55F06C694F8E80FF98D4E91EF8FD6FDEFE10E279BEA0A0C0EA6401AF0B439C83432EE2506A3299E43C2194F581332D207061106025F0DE4F676767AF532995526FC1D34BF4341B324D0B81F3A4EE88A0D1B011EADADE42725C78E08C8234C7E3286048E1172B700148ABD588B2F0FE3BEF82F70FA2F1B1713A72F8905820C253CBB74010729AE086E7E1620E3EE7492EFA949597A3F7AB442DE1FCB93334323424344749E9463176E13EF6EE6DBA96AF428DAF19C0FC1E8F1FB0D3E052B4D4B574BB2CF0D7D3009F67B0BF576C9191D1949299254AE62B09C3D1F19147FEF59D773E04939BD46AB5F59D77DEB1F904803B1016EB0412675A080E0E0E6091C869818180F344CCCCCCDC013678146C90E22925B807B23EAD8674DFBB4252E5E297411F68DE48A1888371649D5F9915B8A1B76DDF41959595A264CCF57F6E0C66838ACD9B49062F5F5FE7184EE6CA220F316FA9DC2602CC2387D5674F0BC1A485B328ABD84C71B0761FC70D29F818B69461A07BE4D6EB74BD58B7F70684C9F1511AB8DA232A9429E8F5EAD0D0657AC01B108606FA1F3B72E8FD4393939326B4D13C3AF5825F00F096162C168B0C270BC0E71508B60002DB46F4B06804EE8B49494977C14D84FB0AA27101FAE0BE43647B44E7B2A28428F6F57C0A3B12E3570189376E901C0497E709DC7BDFFD6003959815CC6565AE277025707BD52E911FD9019C3D7D8A5AC01200B1083CCF0958F5CA9F15D6377A4B01AC3F02031414AC0EBE1E7497C0938BDA77EE33C1E272C59187A6E39352490BEDB32CF0EE69C30508B8C6C9AECE2B0F579F3A75C9603018F155D65503C0575A80F80A4020445A0000D460064E0BA9C8CD5FC9C8CCAC0C0D0909F416CC41D500B56CAA23D38323D79820704045B9CF6CF75B203A372EE9DE73CF7D622D004FF0E09540BB76EF150B444C2633F4C259A482F3A2514A913A8A21FE580B78BCAB88AF25E07ECC00769FFE3507E0B1736195EE39E84B7B3FBF2706988606C4849BC8A8188A044331AB791686EE4010A6C53A3333F56E6DF5C59F8C8D0DF621367CDF02F3AA52803F40E0B480E0C8915F38D09003E88244C22D0020A5608C2F232D1462BFC453102D560BB5A736D374CE182D68CCA41A0CA58477B3C92031D058D40829478329C010407693DD2F56C8445EE4B4B06BCF5E3122C7B57FB6815C33E011C54D5B2A892FF1162D01F799022CD01C53702AA11161A2BCBC44C57B093C3B9D19DD04E9C6C7440592A7E505062A96E9015F0EC130ABAF6DBEDCF08F3D9D9D0D389829560F001A2726262CF7DE7BEFC28A22701540E0DA81A4ABAB4B1A1212220B0D0D656D1088C02B11709116581F4037DC919C9272201E89D6DB0C22F7601EAB3A48922F4E11192524EB5552D4BB2914762E6A4945D11B2BF063FF1D778ADE333D3D2DA68AEDD8B55BCC37B88D4BC0AF1772705D3C89848786D9A52C0BBC7B1D7F110826A38174622D8204541F0B00A8571486AEAF2D66CB70577BDBCF1B2FD51D431C26D03ED3F8FE593C1BC10016D7DE7F4B6E11E3CA06AC0F783C8137B68DF8D220B68DB810BEAF6F281A36067AE1405A5ADABDB023C11C3C5FB47E7CC361B2BE30746D61BA7D1EB4F2C7584AFC1FF9B460F1BFACFCB5AF7F9D52D33284685A713DDFAA96807B0EBE0EBAC3326F21A54ABDB487BAFB781720F0F5CE4E4DD03CD24408D2843A2CC2637EF70604DB826D6E7070E077F517AAFF2FCE35C681475BF3EAA139EC3773F0DD6B00B7F42651DED202021000C11884DDC236E2A2581FA46BB4DAA75253522AA14865DE02382A1FA1B30F1F26F92EE3F5BB13E072137F5C44E187E2FC9E89F48D6FBE405F38708006FA07681CC1E15E793B9680F3D0334F73E73981BE7AA92B1098EE4D06BDD882009860049E97C5AD240C1DAD2DFE639BD24D9EA8AFBDF00BFDD4D4555CD334F6CFA0E31940F9260E3C7B7F1CB700FF6FF7590ABE85405892162016E5B088D7AA890C046CE10046597272F25331313139FC314F41641034ACBF40FA070648BA38D218DCA8A1DCEF56FA2D10D919FCF58B2F3A5636E1F3CDAD2D6434CD934C2EBB254BC02D16AB9852C6EB28642278E46572C6522058CD4632CFCDE23A0228481D2A269DBAEB015FB6D03867686B6DBAFCF3DE9EAE4B78ADE3C0E3371A70FD46EEF568F379BD5EBF909E9E6E63DA5F5CB769BFEDF709744F0B9EAA890C046603048E8737F76665653D01FD10C98DEF1E401E74EA0BBF4AFA281D59C34CA4698925556F2835A537D054DE28059A141430A1A098D38924D12FAF3F9494ACA7FFF8C31F3A16B770434A45AEA486C646B24B64628ADB8D2E01EFEBBB0AF09163D0C5E748DDF540F2AD6AAC66833847A02A18810FF2A807BC01C13A6F9DE8EDED7CABA5A181676EEB98EED1B966F1F71CDA165AD7340F676675EDF59E827FDB6F14E9CB36829EC4201382C225E47050558C46A3790C6EE16EA485207FA8FDD0CEF748FEF4F4B5D420695452CC1B991452A311A391CEE3B8D0F34FFFFBE72E00902EAE7794D0F8F80418A19524B2805509411E6E9EE4798162D1CCF55EB93CBF5FA76BF16435090048A1EA6508BC3FC2D009025C87797C74F40F97EB2EFE16ED388A604FB1BA476EE7C00BBA07035939D73B077DBC05FE63BD55ACA76AA2D336BA5613B1852160E9098989CFC4444797639FD497C8BB98708E46BED544D2F0EBBF818562FC4F0A28E270DC9281A45FFDFA372E339A962D72A58EF64EEAEEED0310643E83CF8B4ABBAF3A96ACF1F9AE077EB90F772DC7CAEC5692D8AC6497CA2191031D9FF52A0C97D607F8A19F9EAE6EBE5CFF8B199DAE13D736C5748F801BD0998C684B8B1BDDDB5D85DEA7E25EC1ABA926B23EC073594E4ECEB3B02DA99E6C23338269C144C78A0ED2DC2383248DBEFE6F3FC8461454F8F59D649B757C8ED711FCF32FDE5836A5CD7DD22B07B8A6A68EC67453D7E6F03B81C069886F5BC323590C28F2E0C13D01412EB5538084938C84166090EC5EF480372080CFBB7B3ADBFF4F7F6F4F0D7EB3C8F3789EC5EF32E23AB8AE2F049E3F74FF8903C0575AE0F10508C625D544FC482D74C1BECCCCCC2FF1E8A327DBC881698D6CA2CEAA463297E9443551322FA592BFD94B0143418E52317CF84F7FF63F9750BF27003801C2B79839537D9E668D26117C5E9738ADD78BFB0C2C29BE90C42B10643209A9E48EEF332DD869C1BE7C80C663D017DF5B58989F1E1EE8FF4D6B53E3FB786F129D631A6DA3C73687DF6382939A5F2DDD7F2A00B09A6A2218826D6338DF3C046EE1F1E8E8983BB953791B57304867C9A046A0E6024831AE5A9202FEEAAB5FA5BCBC7C316760A5E9EE623FC032383040FFF0D3FF2556FAB8DB2F6F4090E1B3C10A7C7F808C4CF36029EBC262FEF754C0F1600B89E675E36387AF3437FE0A411E62BAE7C0B3BA47C730A243589046AD3742F79F2A00AC641B796CC1B59AB89816D2F3F3F39F0B0E0E2E468F90F83B8F00E7A4471E7D94C620DCF8D6B2199919E2E60F524F817702635127BCF4EA0F844D73B763EE81C74748AD545008363382AE375A84765822EC3CD0BE2B100CB3FABAAED6967F9E9C1C6FC7F74FE2DA85AD63BA5FACE1CF23755AE1A86C3742F79F4A00AC544D64DBC845240602CF3D406F8E50A954650C04EC8BF30500E7BEEC9C1C7AE69967C58DA25A5A5AC4383C8F1CF23C435F0070AC947E4DDC59D47DA1852B1054B08011A12AE144A60CF0F616AB5FC2F05AF9D6621918E8E97EA3B7A7B39A038F6D1A0017B60E8EC8E4B475E8F9B69BA1FB4F2D006EA49AC8FA0096F1AEA4E4E427ACF3F34A5F96B1AA6A27EDD9BBF75A80F93E026DB07EBC72685DD13A0A8F085F42FD52976033003C31003F1481011415114A4A3C4FCE186886475A3D0A43CFF501FB826D766C74F8779DAD4DFF8A77F88EA1C2D671F9D659BB77E679B0A2DD5B31E77303007FAB89BC6EC19916B0C51417173F8DB4B013C1F6681B0F1C3820EE25ECDAC3D9D67576760881C7338F79191ADFD2C649FDCEC7DF7EF7DF5D630067EF974353446BC24913A6269DDE40E3BA1907DDAF200CE97AFE5F9899D21DEFBCD2FCB6796EAEDF69EB5CAB781A8D66BEB1B151E4794F25DCCF3500FCA92642090739E726F268231A2F7D4B65E50B60831CD7E0F332AFE79E7F5ECCEFF324FECC2633D242B39851949B9B2B6E57E3A47F270064B2806BC1D44684517C94864C660B0D8E4D8A9B5B7A0CBCBB2D5C0482C938D7DCD7DDFE8BC9F1F166F72A1E849D19ACE77715EF730D80D5561379ED0203016EA1222727E7790045C3A980EF32CA379D5A49F5EBA6A6C4CDA878D206DFD68EF58100C0BFFD3E49C100A1EA604A8D8F11E0181819A729FDAC473DE06D7A1680393A3CD4FFF6487FEF095CEB24079ED53DFEBEE12ADE9F0500FCA9262E968E83C9F18F5684A351B51B376E7C303232F2A1071F7A3888A9DD13003CA9FEBEBE3E211479BA1803E1873FF947CA4849A488B0501A1C19A3C1D1095A5C4DE553183AADA21D943E3D35FE87EEB6D6DFE3F528D33D023D0310CF71158F6BF7B7D2D67D6E01E0A99AC8FAA0A8A8E85A35116008E22292531FE070ED7DF7DDBF7DFF1DFB1F0D0B0BD7AE0400E78399A3A3C3A10F7816F1D8E41475F70D8AD93DDE47EADCEA0308A2413F73BAAFA7E32DB3D1D8CB553C047E9ACBB75CCC71DABA9BA9E2FD5902C09B6DF4564DE4B480868E79EAA9A71F2A2FDFB827305011E85EF07155FDAE0FBEADCC8FFECB7F23BD61CEEB0A5C4FBDDF6232758C0CF4FD72727C540CD3B2BAE7F2ADB38AC7B57B30D6C2C74DF79F1B00F85B4D44AF16B69181C06B1B333232329F7EFAE927B2B2B28ADDA9DFDBE35BAF7CDF3141C3C7044EE7E71716AC93BAF1D1DF22CF1FE53CEFAAEE7972C6ADAEE2FDD903C09F6A22982068B18824D202CF3FB8EBAEBB2A1E7EF8912F46466A635DA9DF23005EFEBE5D2A13B96279EF77DE7FC76EB7E867A60F0E74B7BF8BF61CE15ECF553CE477FED7CA8DF8DB723BAA786B00B8C16A225E47E0EFC8E79E7BEEDE1D3B76F0FC03A5B7F3BEF8F2AB362923C0E3DD3788E7EC5F1CEABBFA96D1A0EFE4C07F9C55BC3500F89916D013653C53D9594DE449AAE458E91C91949494F2FCF3CF7F11BDB242E22117FCF577BE67450A90BB4FD8B0CE5B7A278787DF9A9A1CADE1D13A6715CF752EDEEDAEE2AD01E006AB896C1B5DE71EB03E0013943CFEF8E34FC4C6C6A62C01C0BF79D50202087456F1ECB6859919DDE4EFC606FB0E72F9D699E7B99883A09BDCE7E2DDCE2ADE1A006EA29A889E1AC893505CAB897CEF83679F7D76DFEEDDBB1F54A954A18B0C60845350925D62351A668E8C0EF6BE63B35A8799EE798C9E6D1D58E613A9E2AD01E0165613A10D0410B8A21883C70B2FBCF085C2C2C2BD7001468BD9DCAA1B1D7AD3A09FEE5ACCF1D36CEB705A8373CEFD2751C55B03C02DAE26228042282ECE51548209D25ADB3B43FB7ABA1A116056F306B67438C51C2FB3FEA4AB786B00B845D544D7256DD815C8D6919FD13672677110A0B0706FE7CD69EB3EE92ADE1A006E836DE46D6E6E2E003D9DDD83140C2101206005A556A6793085C8F19F565BB706809BD407D9D9D992BEBE3E297A38EB04B10F5AC18E80DBA11D6C9F97C0AF01600546608DE0BA9FBDFC6799EAD700B04A20787BD83F670DF6FF01137CBAEC0E9053820000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (52,1,'Modem_(24)',decode('89504E470D0A1A0A0000000D49484452000000180000000E080600000035F8DC7E0000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000036D4944415438CB8D545D6C5365187ECE4FCFE9FAB7365B4117420C9BE0EAA8CAE06209CAA6F166C9C2606162BC592421811BAECC8C3F373823241AAEF47E5BB417889A45B36886E90523862C80A6800E28821B5BBBB6A76B4F7BCE777E7D4F6189982DEC4D9EF39DBFEF79BEF77B9FF7E35CD7C50621E4F3F9377466BEADE97ABFCED82C635ACA368C1F7B7A7A346C32B8FF097084FD9AA61DD599718448E3748F5ABD0ECBB241CFD075BDCA18FB4133F46F6281C04C6F6FAFB519815708EF10DEB26D679BCE74944A0AB2F7B2C8E7F2E0780EE14833784100CF8B6B42D0185B21B1F3ACAEA54E1E7F7796E6BBEB0A7C70FAB3CB470F0F4AC9AECEEEF9DBB7B1B8B0801C117B7FCB7E198661C1340D9038449F4890093E126124A23746C203CD60A9BAC652673E1EFDFD098153A31F1662D168CBA5F4C562EFABFBFDED1D1D419EE721F0020CCB248147E49EA06DDBB04CAB71EF9324B81C4FDFCDC759B1B5F16628E0FFEAF447EF7FC9F7F5F589E1501875B58A92996B999898088E8F8FA3582C81190C4C633089C0344988265B34DA8E43353151AFD51AEF1CC72538705C071CC7953B773DBFF2F24BC9D1865346464650508AD72391E6D7CADB72CDBE6704945801577E9983A294D1D6D6F6A8F474F1566FD2EA1DC786BF298840380CAF84A6657959B82287E5E7B66F6FB24C6367B55271F675EF39DBD8A2E1E1614155D56062F7EE71D3D20F3EE0B3DCBD67E721A442904419DD7BF762477B47A386815008B1580B913E7615A190CF231409A349F653B60CB458083E71F1A7EFBFDDF1844DBDED4A2412EDADF12DDF956A2B893F225761E76CD4660DBCD0D98943878FC01F0C361CE4112F2D2D41230B7B0E73292B59962149B25B564AD355A5706C6C6C6C995BAFD1FAFBFBE5AEAEAED75BE3F189FB0FFF6EFD6DCFAF7831BD0F5F9C3D876CF62E32B7FEC2FC9DBB944D18B2E72A41042F8AA8A9951B4AAE70FCDAB52B57D3E934236E97DBA893A958DCC0C040D381037D27C86B9FFA44513E383888602080D4F90B502A2A6D9F088BE633A6E7CBC5E27BAB85DC85C9C9498D389D351E7EA30EF4D4A7A6A6EAAA5A39777166664B7CEBD64FA8046A341A855F925CC60C28ABABDAF2E23F672ECDFCBC2BB770FF6B7260EDBFE4EB1D151B86579F6432191B1A1AFAFC7AE6E69B376EFD799955CBA732994C7E6E6ECEDCEC59F4D420C749743CC8D417C6F4F4B4E13E85E05FB8DA080B38BFAAE40000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (53,1,'Modem_(48)',decode('89504E470D0A1A0A0000000D49484452000000300000001D0806000000EC30EF6F0000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000009CA4944415458C3CD580B705467153EFBBCBB9BEC2B9BC76E5E64F32890101A5E050A550A532AE561AD0D56C930C51922A0D60E6A61C01119EC74A4D5B1753A5A1C4785D82AD8A10333425B71686D3BA0502B69424C489ADD24E4B1D96437D9F77DF9FD7F489A84F028944E6FE6CEDDFCF7DEBDDF77CEF79D73EE6A5455A5DBD9DADBDB1DAA565F2D49628D244985A224BF222795BA3973CA1BE933D834B74840E80B0657CB92542389F243922C09004F9224133FCAECB3F4BE2CC975098DFACAB2050B7A3E0F04348944E20B4951AC01F04701D63102F60AE85102F23822236BB2284B7F5744A94E95534757AE5C19FDAC095402C8065956BE8163C15500AF10884663A4D3EB684226C6088DAD45F13D47534AEA901A8F9FAAAEAE96EF14817CEC5FC75E837DF6B5A29B1245BA78B191BA2F5F26BBDD41A224526E5E3E994CE6A93332E17EB907C7971555ACDBF8D863FFF93408D8B13F8A7D03F62F62D7B245767E3298C1C1413A77EE1CC56251CAC870516F6F0FA2AF27A7D349E150985C99592423338E8C8C2BF74F4960FCFF0DB228D62929F54FDBB66DEAB82502CFFCE257AF6EDAF0B5B9EE9CECA2F117288A32F6B09696163A7FFE3C9904814C160BF97D3ECAC97193C160A070384C4E000E85429488C701DE49F1589C32B3725818C8807B2679635276F85185BFDE4225AB5313FABFEED8511BBE69024FEEFC71935EAF2F2E9F51F6DE86EAAFCE1504A395AD2712497AE79D7F72F01E4F2E0D0D0D515FA08FCACAEEE2A0D9C35D2E1775767692D168A4F4F4747E8D252D9DE2F118A112915130E2495ABE661C2532D11B53158304D68E8BA2782890E53CF9526DAD785D023FD8BDB709269C0E1224180C81B2E222BF2A25E746A2514D5E5E1E353737935EA7236F490975767402681A0982893A3AFC949D9D438AAA40527178C14EC160908CC88A46ABA56422C141C762317E3D0398EE70904EABC33D34B5B426AFC9725012C5BFC073875EF8D94FCF4C4960DBF7B677A559EDB96648C300126FFCED1824108B2F98378F16DFBBD86CB3DAC8EFF7537E7E3E0D4786697060900AA74DA3FE603FD7B915E77B7ABAC96EB3533295E21E60C023C343949666E57E11606E11E70CC8540A478B258D5819D26875D72FC513B3732933C3F1DCDE5D4FBD344660FDFAF53AEFCCBB2FA6E29132A657A72B8B5E3BFC3205FB47C0798B4BE4C7373DAE8945A35A6C2051C03A30405B89D167D7B9E185E06090F47A03F7C410E4654336D8914927C13361245194E02B99743A03B2138397D241568247CC37949646A31DA89839BDC169B7BB1E5EF3A50A4E80EDA8C7A6928AAA06C168F4EA745AF2B75DA2A6867A9EF66834CA8F26B399962C594AE5E533A9B0A09057A218CC9A0B7975767490CD66053095868787B999FB0301B2432AEC7EA351005115E64E9005D21B82D16D7627F78811B2325E5576276602D994F2DC9E7773DCD9557A9DD68E20FEEF2B6B56CD1825A05DB76E5D5A6979E50E7CE97618D11C47BA4FF5BC469D1B1B29E7E76524362B9C04DB19E0AAAA2ABA7FF9726A6B6DE5751F99A128EE712173DD97BB28333313461E06706403E007070690D511520E6706CF062BBB767C4663BB56D3E3FF9B4CA6FA823C8FD5A03714B1ECB37D70A0BFBDF69B9BBC631958B56A15CA046539333317794BEEDA91919935EFC2B9331A5F693349FA24458309D2F875243769784493C924CD98594E4B97DCCBE5919D93431FB5B571726144977DADCD61E70D8E9D0BF4F651BACD76A5248BE4F6A04F6A35D7D0F9E8311577DA1D6187C3E11E05CEFCD4D7DB4D9EDCFCF6CD9B361643DE2AF780061B6464C08DAC74E67BF20AD6EAF5BADD8A249A58D49BCBEAC9BFB19EA6ED9C43628B3A262B9D4E4FB32A2B69F98A153CAA2910CB853F5A5B9AC903322CE2CC0F26B3055E0851A1B71895C83C45E5F998402A25922C26951CB7470B0C00AEE31EE9EDEE226BBA95B2DD1E16F8D683BF3B5071E2C489D4845162EFDEBDDA86860601117682D3D282C2C267044128668D29A0EDA5C450922ED4BC4B19A73DA47F336D4C564E48E1FE15CBD1E04C8407C307431C485656167575755271491924E4BA6E9541BD8737062131271F4558C481814203FDACAE70E0ACC4B3758554DF91BA3F561E3B762C72D52CC4B2B16CD9329DCD6633237A5966B3B9C6939BFB7D45966D0C6C4B6E23B5AFADA7E2A7E752383E444AEF4846E2205959399B97D92A94DED64B97A800669F565C7C039D6334190872905654AD51B92461F0548275741737BA169263EB28C3BEDEBEEEDD67DE7EFBE8F1E3C7E3D79C46476585AE9A8E8FF9A5A5A5BB51161F4136F40C70A7E0A7FFFEF01FE47ABD80EC0773C764C5EAFF030F3E480FAC5C4582D9748DF161E47304FD8495602B06419D4EC701C228008EA607D931E98D12420063BDBDDD87CE9F79EF45F4101F3A7EF4F0E1C3F20DC769262BD47C635F5F9F03299C357BF6DDFB5555A902588DCFDA4ABE451729F3D522EA29F393E52D07257B457A68F51ADA5C5B4B8D8D0D941415745C750278E6958FD0478CF003F3080709B928528A8FE446D3C7C0113C2534103CD554FFC1FE4824D200A2A18A8A8AE49E3D7B949B7EA1B9920D369D9A51E733DD6EF7CA92D2D27DD148249B49A75F0ED0BF6BDE24395DA4A21FCDA1C5B396D2779E78021D5DC7FBC20717EA29298DC8A8B5B58DE298AF0493C00DAA8334F45A56B7F0C735CED646C0E3FB9B3ADA2FEDEFF0F94EA39C06B0254E9F3E2DABE3407FA2574A4664DEBC79FA828282347CF44C9F3E7D0BDE03BE150E878460AA9FDA663452C6BF3C54682FA22D5BB7C1C499989FF4A437E8C987C9F5C0EF0F716930700CA48075A3016384CAC6F6118DB3462A89A960A0BBE7D7CD4D1FFE19A5F73266B1C881030724750AB0B7F44ECC6475F6EC5903A2624754BD4BEFBBEF69687F79687050C37CB068D162BA67E13DD07884BC455E3EA1B292F8D49E7D9C9001C0ED691612E197A4287383324260910C0DF61F6D6EF8F005006F83FFC22828A951B97C9A2FF563B242FD17103917A6D0F90B172D7A0EB5BFB87AFD7A62132C8B684F77372F875EAF9776FE641F65A39CB22D3C1C1DAF733516193ED3E16B7D36140CBE8FA0F4E3FB12478E1C51D41B00D4DCEECF2AA3B2C2DB98056348CEFCF9F31F5EBB6E5DCDCC19332B997458EDC64B0AC6EE0E3A7EF20D0A0C8479471E052FA692BE404FE72F03DDDD2761D01E5C17C54B93A4DE24B0DB26308E881623092671BD1540F257AF5EFDC89A356BB6C0F059A3D76CDFB567AC5C2AB2323414EA3FD8D5DEF6078BC5E287DC86162E5C285E4F2E7794C0A46A654475CA40172FD9BA75EBB7972C59F265F8457872D71E0572572097D7FBBBFCCFE3D917D18107702E793372B9E304A6EAE68876764949C9DCCD9B377FF7F9DFFCD610ECED7931361C3E0BEFF4B19F592697C5CF0581C9DD1C95290DCFB121D2AC630F83580411673A576EFB197792C0F8B28B48F39F699019E593EAFC7ADBFF017777D42D7614FC5B0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (54,1,'Modem_(64)',decode('89504E470D0A1A0A0000000D4948445200000040000000270806000000BF984E3C0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000F754944415468DEDD5979701BF7757EB801022071F102C09B94784A3C44893AABCACE5492E3588925D1B54B27E9B4CED46EA66D9AB6761CD952279D8CE2493C492793C91F49D3727CB4D24C93388DEBD6634BD64DF1924452140FF03E00900048020440EC2EFAFD9600095094C3D892E3149AD5028BDDE5EFFBDEF7BEF7DE42128D46E901BD24C3C3C37FC009D424F0FC239CC09F1304BE79C6E97C67FFFEFD1C7D4A5E92FB4DC0F4F474B920449B389E7F8AE3851C5EE0090410CF0BC4897BDEC545F937A382D0BCBDA6A6F5FF0501814020331C0E3F09C07F0280B53C032A08C42F0316C12F1F4B78BF7CFC36CFF1CD61E25E7B78F7EED1DF37025200FC08803601C8670048B60EC004E06BBF4B22298AEFCE0B1CD7CC4742670F1D3A34FF692540CA71DC015C03D0FC1710715D1CA01003C7258047CE277D66FBE563AB44AC5CB74A521029F3CB88106D3669550FDC2F364AC0166C4DD89EC422AD1F2EEBE5C8864221BAD3DB4B93931354B7AD9EE47239FE9A34F93C769DC07F58AAB878817B83E7A8F9C96347DA3E6902AC0C700C382380D8B91F2A6B00F7CCCE5247473BB95D6E2A2E29017005F5DDE90576096DDBBE83B808472AB57A831E9144D26D644A734408BFF64C53D3E883224087ED0B31D00798E413BF64E7726B161797F940FF005D6F6921A9544A15159534333B43DDDD5D949999498545C520C445B320C79E93430AA592224B4B6449CF5C264258930E09840A2B9F57488AE2BCF3489966615171F6AB5F7D6AFEBE10F0DCDF9DCC3AB0B7BEF9F39F3DF48700215BEF6461256ACBFB60282882EEE8E8A49CDC1C2A02D09E9E6E1A7238A8BCA282B2AD56EAEFEB47D4235404352C2C2C80A83E32180CF8CE4E1ECF2C194D26D2A7A6DDA5A40D1A691074FC828B449B17BDD3FFF3F2CB2F731F9980BF78E1857C65543EA451ABFB9A1A8F2D56946DAA5E7B727C01EE1937BDFBEEBB343C3444F5DBB79336454B57AE5EA1C54080B6EF6810F3BDABEB16A50258C9A64D343C3C249E9B9F5F80A8A7D3E8C808095181AC363BF9BC3E9AF379A910E7A124421DAA8D8117EE4A1597C0FC22C2379F78FE6FDB7E6B02FE06049044392493C9488E2D23DD72E5CB4F35E6190D066B5CFE5DDDDDF4DF6FBF4D128984F6ECD94B2EB79B2E7C701E32CF02F01DE4743A45E363D1CECACAA29B9D9DE4F17AA8A2B28A94907D3FA29FAA4FA52C9B8DC641C2E2E2A24842084AF27A3C50839996901AA950884AAD49AE28312212D321A9C14A4EA3DB115EF837A9947BED5B2FBE38B641024EE543F8430CBC2CB6E17D302FC7D691614CDD76E9D22565717131D5D76FA76BD7AE516BEB7531FA9500C74CCF05F0DBE0F604B3BB76F52AA9556ADA5A5D433E447760A09F7273F344B93382984FE4E6E593DBEDA285F979CACCB6D2BCCF07420264C9C8203F5245269353AAD18873E5CBE6FB1B55B08E5AE0175C64B90557F0A1B3A74F9F5EB827015F7BE1546128B830986634251240E7DE7D879C539391C6C6469784C836ED9CA683070F92D96CA6F7DF7F9F1490FBAE3D7B687C6C9CAE5F6FA1C2C242447C0BF5DEEE415B3C052FA88462A4D48D9430994D64B7E7C223066929B244B69C5C9A71BA44E059569B980A3CC791C9928E6A32430A859252F47A0A06FCA4379812400A1B2BA7C9E706D17FFC428872CD3FFEDE2B6F4763C0571570EA54A1E00F0E06FD0B6430A7931652E5615E675EFF572CCC879C8D229F372FFD7163238D8E8E280B0B8BA8AE7E1B5DBFD64277EEDCA11D0D3BC80A1057AF5C11655CBBAD8E6666664522D8B9968C7490D005C214945B904FA343C3E279F6BC3C72433D68B0281B4A70B99C22F969260BB9A727C5F7BA5403CD7967C535C9946A968FC90D566CDE486AB084BB1B33B55A3DBAADBA6A5AAF561C3F7CF8F0C80A01A74E9D927AFCFE12ADDED4CBE4199807602E8228F174F5E239B1A9896F9A94146674427151A19445EBC0430F8BA5F0C207172071A39806DDF00A9044D5D5B52457CAE9467B07A26F86ECF3E8764F8F48787E51118D8F8E027884F2608E531393A231327F98C67B763C3D339BBC305C76DC88A0F817E6456029BA541CA37BA4C5DDBD041B573617175DB758CC3BA512898AE4928223070F0E8B04B00DEDA6ACB4AAB6D29C91D111973F6B007A6EB6D3C4D8E80A780C3C2BEFB350E2F6EDDD2BDEA0B26A0B6D2E2DA5CB972E62917EDAB96B37CDCDF9A8A3BD9DF2911236806A6F6B138DB064F3661AECEF17235E8CF7E323A3B86F08E715911329C3AECBC92D10D3C1EF873FA05C066196216C69304929BC61E36552A04C8BE5923DC75A2C934A33597099814B15D264028E1D3BA6D0683479F6A2D2FF54AA54157123743BA7E886E32A39FEB493D4033AD2BD9141A185F00A1911A448E596AD540849DBED76DA034258DDBF75EB26A25F43668B0529719974C8E3B2F20A3105584F505659496300CE4096C22366514D2627C6A9007D443018241788B0C334C5CE120A30593248A3D3890E9FD8880931F9AFAD0CECB34AA5EACBCFCD59522AE49512009732E0D2E5BE4E1E95171C39B24601B82055A6D1E416176DFA4A7A66D6D388560A9376DB950BD475FC2ACD3F3E4E969F1652EACFAC4929C136B942417575DBC88414780829A152ABE8C2F90F28035D6039C0B6B7B6822CF8425DBDD8134C4F4DD1D69A1A9A4705E8877F141597105BA463B09F6C3049AD4E0F650C91C1682613AAC2723EDF73924C52415488FA2D26E3709A21AD5C8A9BB2161CFF01BC4454D8E8F0306DADAA2B6E6A3A36B8E20190851424288D46632AA29A9D92A2AF2C2E2F7BCE6CC968E8E96C930898465CC6499278643450DD43BC3D48A9FF9E4DE4902511C1FA81924D25545B5B475BB66E15532282DE9FA5C4F090030007A9B6BE5E8C5C67471B721F84A6A54119372923234BAC048E813E444F0DA32CC4EA241B6980E22A884A04613E3B3B2B05F387421A03CE08082D069176BD506406E5151450302C147FF189230E560956AA00334298971C04A4E0C6461CB259EDF6FD0AB9F279B94CA28D83BC5D7683C69FBD499288948A9E6EA0A5592EC923D8565A564E3939763A7ABC51ECFA6EDDBC8189703B524147972F5EA44C34497900D8D9D60A53D5D0A6D20A2CB04F54C9A6B20A421A263540DC1A734B9A0F703CB41888A6A5A545F5FA5429032E89455C80538E0D3B4499E743654A945576DCE39D29738E8DF5A175169286212881F9014B14250069B1B7E0FBCFA05BFB465AAA3E8B952D06745A37415EBB8B342D06723CDC4DEAB114D2BE63A650709508663665E5E5B47BF75EA441059D7BEF3DD2C30BB66CADA1F6F6560AE3BC5A3455AC124C4F4D52152A86018DCF46CD4D040EBF88E2B309ED753CC725B1BD67C645F3A2A1E6538A56479204450C0F0FD69E7DFDF5AEB6B6366EDD7198A5445D5D9D0C0B56A5E2851CCCD26A75CF665BB39F42E3A38E83F4713EBAF297BF26BEC64F69FF65A5F4EF1427550AB621AD6833DCFEF38F1FA5BEBE3ED1EC768294F9B939B13962269A8B3278EFC6E66EF9B34992F52646B3057D858C124D2E145C84A93A51922D6460554354C4AA0F401593DD9DAD0706070787CE9C3913B9E7F300A68693274F4A585AE0A306A96184024A6C76FB37016A0F6428650067246E1AD87993A20A81D2DF282067FE38A9EE688977094964B066A861E72EDA0432AE5CBE448568ABABB6568B3EBC56D27187E7D6D476769E1B8D925A9D422A8D7A25A2A2BB831C9FC74D32345A668CD9EC58A20F509422B3B3AEB31D2DD75EF1FBFD433E9FCF7FEEDC39FE373E118AA78556AB55609E67CF0B2CB8F96E007A51A55216B052B8E20FD65B347CB285A4334AB2BE5A46CA8BFA24353030FBF6EFA7C38F7C561C7C7E9BBEDE8BA12A805E0079BE92E30C1C4BF0F0A25FEC5AF5B827EB34139D9F9DBB30E76DEFEDEA7E756262B415417441D47E449F037661C3CF041911AC5CA23CAA743A5D2A00A1C7B03C61B5D99EC51AF42CDAC17090DAB75CA6C9CFF592DAA5A592171A28C00788F3AF1A654D4D2D7DFBF4694C86FDB41058446323FB9007A9024007C42E91CD04324C6B4926876E3182264A8D715CA152AFFA408C80F052687AC4E1F851FFEDEE5F2350D358B7CFE1708459EEDF350B6C9484785A78BD5E0DC830E0702EA6C4AF83D547D0DDC918C8402840612E4C7D193D34F21C9A28879E327F5A44D23B4ACACFCFA757BEFB3DB1D162E5B5F3C64D2C94235E9CF8568988703C0DA16C4A005AAE54C622BE0C5E2241E9C6B52CF7E52ACDF2F1980FB03D8C31E8724E9DE9B87EED5F808F3D3EF3C2C71677ECD811C1FAA3D104D01FE9B1783C2DDC6EB7027EC0AA8519F7D952595575124BA8585A5ACE7D0FE7A1CBC7DFA6E03E4C76D31A2AFBF37D64D019E9D5EFFF8096BB4DA94804C8A40E10B1C42D1330363A461E989C4A931273F5B8A489142CC2486841AA48CA7131F2C874749717FB7B7A7E303FEFED81DCDD88BA1FEB8CB07C8FAE03F663FD3092981672B95C8F2DC364321D8422FE0129616269110807A82FBF8B22EA3065BC9F2B5EF7CD132F613EB0268DDD6CCFD2E267AFBD490AF52AF0B8DC35E8361572292DF1518A8A7F3BD9E4C2C1A063C431F0C3F1D1E1F3B8761AADFD1C93FBA38F3ECAAF8DFA7D23606D5AC05DD520C1807BDAA086AF18D2D29EC43145E220C59E077EF14B5FA2D99919B4C0C562994C7C08F3F72FFDA3F830245ED3554A05A56935629A843040AD443C4600CFF1F3AEE9C9E6C13B3D6F623913B887177F2BB89EDC1F0801EBA5457A7A3AFBD5C882C514EFDDB7EF250C40DBF159C20868D8B913F3C243E235A3688298E44B511A113111F0D74F9C022172F1418BC598CA467F9A5B0850748D22F08FF37967FF77A4BFF74718A0FA71BB19CCFB01EC97E0F0427483C0EEFB8FA36BD342A150A4A35A34D4D4D49CF4783CD6C6279E101F95C723CEA6434855EC120BD0A73302B22C66D2A14576CEFAC45E60ADC9A1F5ED9A1C76FCB3D73B7B1D7FD289416E3EE6EE2CCF85FBF5C3C87D4B0B90918632646D686878FC738F3DF668616161E9DAFC6746C814D1D2D64E6ECF1CCDF90377B5B75C64C93DEB9AFAC9F4F8D8AFF07902E47AF1E782151515DC46E4FE8911B05E5A204A29D84C907CCED1A3471F3B74F8F0D366CCCF0C3C03187F7DED1B2F8BBD413CC71970AC31BCE0F3FC726C74E827D14864E4A3CAFD1327606D5A40E64ABCD58384744C6FC5CF3CF3CC9FEDDAB5EB8F104979FCDCBF7EFEA5A80CE3672CFAD1C5C0428B6B72EC87FEB9B95B00ED84A2E6D1912E2536331F6B6D9F04018969F1D65B6FC96C369B1A1F0D6CC8AAAEAEAE6F6A6A7AB6A4A4A4829DF757CF9FE0A00A3917098FF9669C3FF6BADDEFE1BC49D4741F2AC6C792FBEF9480B5698148CA11E11480654D94EDF8F1E38750B3BF7CE29FBE43019FE7E7AEA9F1FF8032D88F1AB3F087002A4BE4E3CAFD5341C07A69816AC1862C034AA10966C9FA0637BEF662EF47E4C3F7EAE27EAF09589B1656AB55817AAE60C7A10C0E33C3128EF1F753EE9F3A021289603B80153FC7F60F1478FCF57F0F62DF64389EEFB80000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (55,1,'Modem_(96)',decode('89504E470D0A1A0A0000000D49484452000000600000003A08060000004F8D5CA90000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00001B124944415478DAED5C697414E7957DBD77ABB54B2DA9B5A1152124815824B1098401636CB31807BC81633BE78C2771166C666213C7269E9C3327F327F333936DE28C719CD88E1D2F079B5D60641601424212DAD1BE2FADB5257577D5DCF769714BEA6E89C5F15AE714A5AEAAAEAAEFBEF7EEBBEF7DD5286459A62FCB525B5BABB7CBF2363CD31EC9212F9724C7BB24395E4B4E4E3E4F5FD345F1253080B2AEA92947B64B7B24597E5092245FAC24C958792BC9E490A42AD9E1785DB22B0F2D5DBAB0EA5B03DC81A5BDBD7DB1DD2E3D2691FC28808E1803DB799569BA21780B639CC7CED764C7E8DF323333BBBE35C04D2CDDDDDD510E5900BE0780A67A067CDAFE89559EFC6CC3B91FCB0EF935FBC8D007393939C3DF1AC0C5D2D3D3E3A754ABBF23391874691D56850B306FDE1053CFEBC5F66D875D3EB43167CD69DC56FEA61B403B3434B44522423295EE9765490FEA205950883CBE959CB6F2D8569EB95F9AF85B9E76AEE4E2B32CB60D88B2D71536F9D0E6CDEB4BBE490650D8EDF6550E87BC47961DBBE1DD81EE69C495474FDB277BF27E57D1E3EA1ED255C941AFD955D21B3B376F6EF9BA1A6001B1A74B12737BAC672A990AD2A4973B9D83E44C7ABD01ABDE8531E64259AECE81A895E5137687E310D986DFDDB56BD7C057DD0061581F66E0B12E9327BD519E43129DB9CF66B351654525955D2FA1BEBE3E4A484CA4B4C5E9343838445E5E5E73F07E57D1E3D210BC7F08EBBBA0AB433AB21F83311C5F150318B13E300EFA46ACAA8903B2273AF0E0997D7DFD54585840A525A5F0781DA5A4A6D1BC98586A68A8A78AB232EAEDB5507C42022D4A5FEA0ECC5BA4ABC9F3DAF0DD3748B61FFAEEA38F5EFE321A8041DE340EFA8E7123CC586ECEFB25AAABABA3CBF997A8BABA8A620078DAA2C51410104025C5D7A8ACECBA3827362E9E12E72741CEC85455510109DB05432C213FFF805B3784C7F31CD7F1F7219B43F9FA33DF7BB4EE8B3640C638E84C3321B35D642EDE3F3A3A4A57AF5EA50B17CE535F6F2FA5A7A7D3E2254B6960A09F0AAE5CA11B353564341A69614A2A28683E7574B483924AC9D2D34371F109148B7564781846AB241BAE159F9044466F6FCFA0DF5AB28790923E618A720C2ADFDAB7EF09CB3FD500FFFD9BDFFD6AEFEE071F0B0E0A8A9CCB05C6E8C7BDF7A3F8A2BCBCB374F1E245F2F7F3A3CCAC1594BC7021959797210AF245D28D8C8C8277A75364541495959682928A49A552D3029C173D2F86DA5A5B9123CAA9134631858480A6E2C817D76AA8AF23AD564761E11173F3FE3946A8D3FE11ECFB5042F21EE80A3E7CF0E0AED1CFDD003FFEF717FFA1542A372F4E4B39FFD8EE0733B45A8D717603CC1C503900CB3D758A4AC0EFA9A929B46AF51A0A0A0AA20BE7CFD3A54BF9222252525369D9F20CD2A8D574E5CA652A07EF8799C329352D4D005D595E2EA2C06AB58ADC109F9028EE575559411DED6D148A73A3A2E791C361A7AECE4E0A0C36914EA7BF05EF7793B0A78CCDD18D7BBFE990E9D0817D3FCCFBFC0CF0D39FFF43A9526E871148AD56B5DEBB6963F5BA352B572970AE3B034C14425650C4A7797974E2C409A166B2D7AE05F0ABC962B1D099D3A7E95AD135F2F5F545146451FA9225D4DED646172F5CA0C6C6064A4E49012D2D21BE6F5161A1005EA7D35152F2428A4322EE40A454226AFAFBFB457E60E07B2DBD547BA35AD0981951C006617A532A55C815FEE2B93C79BF3C6B913775FFC435648754038A7A5D76D0A183079EABB8A306F8C90B2F230214DB55004239BE7A190CC58F3FB24B15131D95EC8AFFDB00E4C71F1FA1DCDC53141616461B376DA2C58B1753E1D5423A75EA24D5D7D7535C5C1CADC9CEA6F9490BE86A410122E19C8882E51919B40892B3A3A383AE5C1A4BCCE6F0B12888888CA60A80CEC6508392E62F5820F6D5D7DDA0EAAA4A61FC98D838328586514B531335373590C160A0B08848788B82861139FE814118A5E2E6BC5F96E7ACBA609C8BD81E72A8A4BFFEE781031DB76D80670F1C640ADA8E2810E08F1942C15E259BC3423FDDB37B67A28FB7B748CC454545F4FEFBEF434A16D28A952BE99ECD9B291034731211909B9B2BA823233393D6AD5B8704EB4D9F9C392D7241486828AD5EB506C9355EA81E4ECC9D3000E786C5909C3A48D222246C069FCF4D5E984AFE5049E530447555157923F9C62351070404524D4D1535238202007404A2828DDA545F2BB661E60832FAF8502F12B91FCE556B342E0D319BF7CFB1B6B1637B0454F59ABDDFE7FD5FFFFA59EB2D19E0B9175F991101132BEFC3F9032DF5355D92DD160D8015F7DE7B2F6DDA74B748A61F7D7498CE9D3B477E4890776DD840D9D96BC5FE93278E537171B1A09D35D8E70F7AE05CC02B13DB72E481C5A09F9E9E6EBA8C28A8ABBD41894949429EF2008B61E8DA1B35140ECF664A52236754945F175E1F81041E8DFCD00B9A633AE2F14446C790C1CB88E30D3408CA32212A7DFD02A80752D6E8ED43DAC92AFBF6BCDF43B2EF47EDFD773B395E0BD6AB730F1E3C28CDD9003FDCFFFC71288B0D5AF0AF33F0E26F44457969091DF9F07D24C59891170EBCD010141090F0C1071FC093CB68213C78CB962DA09F74BA74F9121D3D7A94BABBBA2827673DAD5EB3868686864462E6841B0ECE5EB97A15258192380A381730A72F5DB68CD2D216511B92ECD5822BD4DAD242490B92110529A88C07A8F8DA35EAEAEAA4F8F8448A898F13C7AB9194D92831C80D0683911A40517D7DBDA0B248F20F0AA6F69626C8D96E44A78902F0998FB1671B7D7D88873FF79AE196A46E13F2C55F1C92FCDA6F7FFDAB6B1E0DA0C0F2FD7DFBCFF67575ACF2F1F3A7C090302107C72868CC081FBEF316D5C11BB97DA007DF868787DB376ED828EDD9F39896E9E7E8912374ECD831E1E577DFBD19149401C9594EC78F1F8794AC100073144C28A2F3C80506BD415018737CD9F5EB7429FF220D23A1B321598A363536213117084A6343B0C7D7D654A3402BC7337889824D87676143F4A17A8E420404434535373682DADA28D814822808A781FE3E6A6B6EE47152A029149160A0011883AFA1C438E7D6E2B835A9ABD36A5BD35292FFF0D49E875F726900067FD7AE5DCA98E4B47795A4D8DA6FE9A2010C2628345C243206BF1B9E77F81F6F0BF0996379CB6BA8D94C89898936D9E1D02C5DBA94B68096E26263E993B367E918A260707090D6AFBF4B28224E8CB9A77301723EBC38815667AFA1909050F139FFE205F0BB0F2D87D1E2E0CDD7610C8E02954A05632C01DD44D275D4094C3F5C11B37198D7393730CFC7222A58093535D489BC108CEB4644CD43E40D52635DAD90ABA6503379FBFA5177673BF5E13BDE50653EFE41E298C36E279546EB06CC596B0697E7B21658909878DE6C0ECD00C4C777DCBB79C70C0330F8BFF8C52F14252525EAD8E445EF60C0F731E0B802F574B402E4510A85FA68A8ADA5C2CB1727819F58D9187CB338E8F4FBEEDF26850407283911B322BAFB9E7B888D5285E4791C91C151C08999252AC90AFAE493330264501AAD58B58A4CF0CC2BA8130A4053018181A8133229C86442522E40915622EA841450142FC54585C2E3E311019151AC8E6A4574B2C7C7C4A1721E19A13A24E9213840584484F0FA6E14739DEDAD2247F06705C669E9EA201BCEF5F147A2D6E96FAD6E70113D612121E713E26322554A5524471DD6F776DC77CF4C03BCF2CA2B4AF0B8CAC7C747B762DD86B7546AF53DACA527A8C7363A425DADCDA2F2644E77067EBA31F87BB1909C4F3EF9A4BC6DDB360527E523473EA6FEBE7EBAEBAEBBE0F1D9D4DCDC44A74E9EA40A1883B5FFEA35D95C73888AF91A14154B4BAE98BD8C46CA87426219CAFBD2972CA511DCB31006EBB5F42002988EE226E9880D95889CC2415D5D51262236028631C379F8EF664486061ECE3295E9A70B7966A0CF82083791C1DBE7B3A252BE9D024E866CD7572E489A3FA8D568D2C780170CC358BA37C0850B173438C12B75F9CA37351ACDC629C9777CCDCF3B038FEB7109FEF4CF4C119191111403CFDEB67DBB888202E87F8E822E1871EDDA75B472158A345CEF341233530B2B218E02C921A1A03B2BDA0F9C809765648A02EC72FE05A17652911BE213E6439256D0F592620A04452E4849258D564B1530564B53A3003E3A361EDFEBA3BAEA4A619470ECF3859777B6B58282DAF07700F9A37A669E7005E6F4026C36EF572815DD09B131C590E9AB01B84A803EE6F9632B0CF0802B03ECDEBD5B3530300021A1F6494A4DFFB197D1FB05A54AA599A805948AB16D69518108D792D50534BCDC42867A2305FC2592A46ED9AD31B891C6451903C1932C2C5999822A91304F2031372151AE58B90A8A6835F5A28AFD04F981B53E1B230351C01177FEDCA7A229B774F97261106E451482927C7C7C45438FA565190C710391608E08A784F9C982362BCA4AC90AE5153D0FC55A9899BAC0FB1C057C7E68781421D26F6EAEC18D2180A13DD4147CDE640A4A5328947E5340775AF1CF7B0F6EBDD7750430FF43261A71C1C0D0A8A88C8888E8E7F55EC674E728282F2DA6014B37152DBF44BDFBAB858657D7EB29F2E925245964B791C1F7E02EE7438F3C42815057478F1EA101484A4ECC2BE1F10D0D0DA0A413A0B87ACA02E8192B56425E36D359E40796A6CBB3B22835354D14665C2D73B5BB04B503F78BB885CDD238089E9C92B6186A46259E93BBA9DCB48B8262E23C518368D1A83514897D06A81E698EED87A9F3D453E7B3F91A069DAE2C3CDC6CC0B5E74D508DAB95151AC4C0D5FF38F8F212974938272747A54501C051808FC148C4663CEC7DE688A8BD5A9D3E900DD0587F83BADB5AC8AEB053D9D2ABD4BEB39AA4F0518AF9E512D29FF177999C9D3FB36C654ADABA751BDDBF75AB5039C7901FB858CB062531FDD422D19F3E755200CF51C16D8AAACA4A3AF7E959A1F5B356AC02BD4451290ABBA2AB57C8C797A360995033A530463D9270D4BC1824E605A27D5D05C5C4DB180804567377AA00037096A0C0008BAFAF6F8C3BD079E5DC5300E112841A2475D1E2C37B1FD97DBFECA4FD67A82028071D566F0CD61FA087601B95989CFA6888D9BC1137D71481870D06BD00D4EAB092553748CA4E355D4F2FA2C1EC0ED274E829E8ED4852D66BDC1AC40C25C3AA47A3510B4AE21AA0BCAC1C947494FAC0F56C8C65A09B0AD40F6740494CE02B56AD11DDD072146DF917CFE3BB1A911BB8DDC06A881512F7901642218106204D4B44FB9A5B1670A2CFDAE673E9827AA01C07129446A5EC0B0D0DF585932A27C12667AE5708A397145D15635E0407E1E6208EBC5F5A78F901602D4F18614A1D30610470B146A7D319B0DB8729093732F9FB07A5242E5CF8445D4D75AAD1A09B01EAD5B47CB2FCB49208EA55615151F84BA9A42DF076AB967865EFCECACAA446E401968A776DD82480AFAAAAA493C80FC323C3949DBD0EA0A621842B4149A7C90EAD9E91B902C02622019740115D167303E9CB3244345C4714B0149D8704CCB2581458B325D23978BFC3E120FBE8B0DD640A51EAF47AA55B9EC7B55895B110989FBC507469278E01EB0F4F1E39BC13C5AB63C208332A6136426E6E2E602435B8568B5D5EF8DB17D11084BF43A134F625C4C7AFE307720673C83E44451917A967572DC9263BF99E09A5C85FA6CD4A4B4C6D9C701F79F431D2E9B4F4F14787C1D97DB46EFD7A5AB27419358EE707EEE3AC806A4A05CFD754572131E741A5A9901F5688417204941617C1DB23452ED0E9F5B7D3CB99B28FAB72484BF243FEF244375D88B81BC8355C0C725B840BC8B1634A21452587E3E357FFF0DBEF00831160EC9861800923F096ABE2808000654B4B8B060F8180D019414DFE00DE8CEF3C0D0AD9121810E0351DD42E4307F505F5905713BCBF47A2F27BAE920A0FE05D10485E577CDD1AC317D529E787EC756B69C3466EEEB5D1896347515CD509E0976766510BEA8733B9A7444F29336B2525242589F9E22BF917C7A36039F90704DEB15ECE288A33C93E2A267AD851DC013F6C1D125297ABF2B88424617C57E7D96DB6E37F3DF4EA6E5C7F282B2BCBC64D3AB793F2CE86E0C97948488DC56231C0AADEB8400064EB4218E899E8E8E84C246F952B501BFCEAA8EC6779A4343B886C0AF27D3B9C42FE27DE631D91B4600125803A9A11C25990A75CA4F1E4CEA913C74501C7051A4BCFA6C6063A979727DA0799388FBBA277AA97C33437D8D72B9236277E77C0C3A3A9953BAE03FD140D8FF781134DE603E5CCF36DA3A327DE7EE3D0C3A869064C2693EDCD37DF74CCFA5A8A2B5A420234F06BE4304620BC3127CC6CFE9770B3398EAF359D722E2DCEA3CE3D5544810EF1C6E6BC979792E1537F8FB4C40030F039EB73842A62C5B32C230392351B859B853EC93D499D9D9D9409B9CAEDE9B142EA263B996E12716F77373CD840062FAFC90A5631C5FBC7F659A06EB8ADC1FDA620AC9EA889D791E191FCBADAAA972EE4E5E5239A06678D007786E096455C5C9C1A40E900941146F0032D85E03ABBE6CD9BF7A83F1606D019D87AFF5A6ACDA8219BFF30CD7B3B85A4160535473790BED98BB41D48E8A3AE8DC113EEFCF6C4F6071E10D4928B5CC0051CCF23B30252AB35B3A89AB937D0B85064CAF19985E74740375DED2DA297141C6A16DD624FE73B6CB68E86BA1BBFC9BF70EE1D00DF012AEFABA9A919D9BA75ABE3A60CE08A96582D198D463DCB567C0E00F051C0FFE9A8A8A8BB71238D3B2FBF907E9606F7D5913C42643C1642E63F2790DCA170A994F87B2C2FC359BAC6C6D0FABB3691D1C7DB75453A39C7EBE105DE698618B15AC5FC0203EF89E7996EFA7B3A851AE2363D3B87BB739542F148236D2D2DEF155CBAF02A927813C6D28DB51FEC31ECEDED6D7FEBADB7249749F866A281690994A4C245B58804031E8E7FDD120843A4454444FE2824246411B73CA7835AE55B41E53FCD230AB18BEB69AA8C94F8A395641FB67B6CF47D7CF498A02495666CF0B7F3DE2803D9DCD4249A725C8FB8F5623CDFF060BFF07C6FBF00D2C3F3679CA3FC0C785EFA2C96F3D78A0A7EDBD1DA5A0E6CBA70AF5EEC1EC218469DC1BFED97735DD11206E7851BFAB16CC5B537C4C7C73FEDE3E363E6013B835A6E2AA51B5B8A6838A30703204A7E219B74C53E1E13F4EFFEF0474A4C48A001146BE51595A275ECFC5A8C6BEF9FD64290C75E22181E1E111331EE3C788C3E4668D43A481A94447AA3F7B45C30960F940AA5B31AAAABAE2AFF7D7579791E9EA3132C60013B0C7A79790D8376EC4C3BCE45D81D793B7A3A2D21DCD4504C7A6CBD71C81FC085422D3D02B5F410BCC1CB19D421C71075F8B5925D3D4A7E55C154195E46CD1BAB486BD392F795200A3C1536253F1CF8D98B621E61FC2501A1846A1B1A49A5D6CEA99AEDB3F4524B5B2B7979FB4CF3F271E09513C514CE1FB1025D2569F446D15FF26428C961EF6F6A6C7CA3F8EAE57781673BD8A01B0E37C03000137E99CBC15E3FFE1A8FFCB9FC3E60DC103CABA6E0CE2AD3124043C9A8F461B504C0636263637F101C1CBC0EF754BAF2F0FCA44FA9737F19295478508826E399608AFEAF34B25BC78ABE3D7B1FA79D3B774E6991F36DAF41257575F5908CCFAE0C318CE4CA6F4F68B47ACF60F200243B4091488173154A95479E6760517C1D2B2B2EFC13C65C8F7175E199FAF0AC562C0CBC3D2727479AEEF59FEB2F64A6CB562C3A18C00BE1E88B434C4BE90B9293F7E975BA4406C8996EB89ACE5DF711591F6C218566EC7A11BF5F48817F8F12C7773FF430EDD8B1E3B397059CDAE5A3B651BA78E912F50D58C727DAA1E72507D55455D330BECB1331AEC11CA3118D92DF4486C1607D69925694E4DCE1746E3F40FB5FABAEB8FEFBF6D6D6427CEE649EC75807E17823EEE8E69FF6132577D5341ED01B099AF343889F9FDFDDF109094F03AD49D9CAEBF0E830954617527B661DD94C4334EFBD14F2BD6412C7EED9B28576ED7E88544E2F094C7F6D86EB838B972E534D7D2335B7B4B9AD4A27C0D4C0885E5A158C4534E290DD9E37916C514CB535D6DD78B5B6BAF2049E9B5FC4EA81730D0C0E0E0E634C364F74F34FFF91DEF4FCC0BF1D436ED073938F652BB735121313BF8BAA700700D6CC90A0F06AE71CC08D3A9EDC494949152F67CD9CB51BCB0DBC7DFEE55F8A09177760F214A8AF974E3CE7E0880DB982DC033F262BAD9DEDEDEF559414BD816769C5FDBA11D97D188395D50D28C7311BDD7C613F53F5D4E4E3FC80C1C4A72F59F2AC5AA55A0AAF52B892A0BCEFA9EF7D8F4243C3C45465B0C944C90B92455B7A72E66EDC200CD8BFFDFC17A406ED28A755B07CDCCFDB48069D867A07AD3462B3BB057DDC7FE4FEDEDEBCCAF292FF1DEAEFAF442477E1997B71AFA19BA59B2FFC77C2D365EBD0D0901E0332829AFC7038187235031EFE1CA49B797A35CDEB0B070E10CE11C07097947FE8C1BFA0E157609CA98817610054CACE6032F0817EDED40FE07B0786C43BA39EC01F1EB65637D5D6FCB1B5B9F12257B1C0CA026533800274E456E8E64BF14B7957D534CF3D4C34F9B0862425256D8B88887812CAC2F059B7D4979EFED7EF4FF174AE2D2A100D3C979CC6AFB4232AC62F4FFB5F3C3869006E25478404D108E8ACBDBB57D4039EE8C66177583ADB5ADEB85155F621EED58EFB7015CBB2D2EA544CC9E3B8DF16805FD87F55E0AA9AC66EA6259E120D420498D7AE5DFB0300B001FCAAE4F74C17A7A78F291FC567AF4AF29627734A4B4B45E732353555FCB06FFFCF5E1609382A2C84E76DA9B1AD8386507C4D017D5AC71248D8FA2D3D476A2BCA0FD96C238D2C2B1181BD30FE504747C7C85C64E557C600B335F9B89AD66AB54146A331313B3BFBDFB66EDF1EE36D341A5C299F89BFB9C2E57754434343E9F0D113141E6AA286D676EAB2F48A8EE9D47C30B5C3691D1C2C68AAABFE23F8BE946525BE60816018C4330C9BCD665B4F4F8F74BB74F3A534C06C4D3E00EB8F6734454545253CF1C4938F2F4C49598164AD98AE7A26A887C7C3FDA2C3478F537D739B9823507AE856DA6DA3CD1DCDCD7FEE686B3A03A377B0BA81030C8066ACA040DB44EFE64E03FFA532C06C4D3E3CA30FC009C4E190D5AB57673EF4F0C34FC02BA39D55CFF4E5B9032FBBAD7A05DD48D2A0A5BBF3DDE6BA9A7790775A59DD701F0DF71A9A6B15FBB533802B43C4C4C4A851E4F09B1A463CEB44351DF6D4534F6DDBB871E34E6F2E085C2CCFBEF0B2AC142F2DCCA87CA5C181BE332DB535FF077EAFC1A99DF0789695A26986C2D1EE3C69FE55FABF223EF76A1A80E9C1C94C4B7EF058881E53EC33CF3CB3373D3D7D8D92B9C869D9F7FC4B0E44806A4A153B622DEF6A6DF9536F4F5701F631DDF470D30CC6B5DE2959F9B53180BB261F1C5EC3F2949B7C5C4D735B232B2B6BC9E38F3FFE24E789C9DFBA3DFFD22822403BDEADECB27476BCD1D9DA740C4AA98D65E5CD36CDBEB106F0D4E4433418B88803A0416C88BD7BF76EDEB265CB433052C04F9EFFB995A5CE507FEFE1CEE686BF619CCD882051C5DE4AD3EC1B6F004F4D3EA76A3AC0DFDF3F74FFFEFD0FFFE9D05FBD5AEAEBFE66B50ED4E16B3DCCF3B7D334FBD6001E642B8A242D0C2266E3301E2EE6F86F1EDB28AB1A5E792EF6769A66DF1A600EB235383858DDDFDFAF0125A9F938FF3F4150363618C8FE45F2FCD7D600AE0C317FFE7C45434383E8C82117C8005F9A00FE8BA69BAFAD01A653131B637C3B3938F94B3AD0FF074DA05F0457DF4F530000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (56,1,'Network_(128)',decode('89504E470D0A1A0A0000000D4948445200000080000000660806000000032399540000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000041224944415478DAEDBD099C1CD5752F7C6AE97DEF9EEE9E7D46B36943FB8690B0C40E5230600CCEB3FD191B2F9838B1835F5E127F7102BCD879C97B2F7E368E4D3E2F1F24C1B1836C6CF6C58A598C9040484212A36D24CDBEF6F4F4BED5FACEB955D5D312C286188186A87E53BFAEA9AEAEEEBA67FB9F73CF3D87D3751DE6DAB672DDE6C4C9137D75E7E26FBBF0A28B7FF1D4233FB961AE8CA5087374DBFAA77F0F69DD0B9CC003CF0BC00B1C703C1EE3FF1CFE2FE0FFBC2000BE0922CF8120F260A3633C2FE0AB4DE4F0BCF11E8FAFEC7A1E40E078F65A915590540D64590149C25715FFC7738AA280ACD0797A1FFFC7F75455C1F31A08877F098E52C6813F2F6AFE4C15F714EEFA79067887B732EF81B144054411896D1341B409788C0F6443629AAF22E0396406154FD8F13A5EA4F7E87A63B7D18EE7E81E36813ECFB36BCA92027A5905195FCB02EEBCC2CE9535DC91D865DDD819932083C812C718A3DB1300BE9243F601670DD173B8CBE719E01DDEEC28C14E87C88827220308ECD5383698C13A675D23801D8FEDC818C40C7646FC590660C447D12F21A14B28D5254585324AF5ECAE4305354245D5D92EE1FF32FEAF68B8A31995351D748DB3E8AE9FCB52FF3E6100019C76EE54829B4415ECB38C611017DFB31BEF11E1EDA7115E1404663A88F816B1CB48643AAED0FFAA497C05D82B330D784ED16807467C553369AE57897F9E01CEEA0F47C2B99CBC29E92613D80C7360AB6A05E3FD2A9398EF9D427C7CE5380ECAA8CE4BB2CA885F22A2CB4470620424B862487ED9D400924A128F4C60121F0F510B402DCDCF33C059D700A8CA9DF659B54F4CC0086B7FA3EA9F3511E6AB6031008244D4DA25C9243E4236227CB9AAEAE9158C63640249D34DC92782734CF56BB8D32B5E8A14E72CAA9F6780B3BD9124BB9CE22C08ACD10255FB4FBBC91036BC86272088EA5EA825BE6CDA7A53E513F199EA47705751666D7E4533249F115F33D4BFCA8E8131015900AE4AFB5318403FCF0067617308A401C4AAA45B9E80CDC4021626E0791D785040400AB1F7F0333C7A05483728CA4A0DF151F59B925F2E5520509884E18A885E800B251F55BD0AB3C4278947B2AA26E155D4068CFA06063C8F01DE951F8EC47509B62AB1AB1E80E9E6F1E4FB23E12BA924040B53D01470C191723D845ADAF12CC724BF6212BE6CDA7AB2F9153401C55402FEA0538072A50C8F1F1B8257A40828362FFB1CD97AC5243E630230094FC18359AACF09E99FD30C40011B874364522D9A7E3D3102058418E1D329F06646616D431082F17AC8E40BA04925A0C82753E70CEC11F16196F8A6AA67411F14FB582800B75E1884AB1333F0F0917ED8510A812ABA51EA7926F51AEE3A0248FC5224B56AD980F30CF06E6C14B02113603355BF40114093F0EEEC18ACAA0F42B8BE955D2BCB3254240938DE8BEA1C89AB700CD91BE85E634C50D1A0C6C7D7D8F5A55209DC6E373446C3703BEE1F9C4AC2B6D787E185821F39D08304C7EFC45DE7543CE46A7FDE790638DB1B0D38A97CF20448114BE969F0E5C661554308C28D6DD5EB88F8E572191405AF115410515009CC49CC8D33096EBDAA0623C8483649323E47C121A7D3C9EED5148BC01F5F1A811B27A7E1DF0E8CC2AF733E906D1E64009E31834172FD7400781E049E2D06004D81526A1A02C5295889121F696E3FE51A0ACF121169979011144E37E2F82A30778EED9AA1F60DF50FA68F4F580019A0C2B11801ED0E87A37ADF96781DFCC9157570D344027EB27F0C7E9DF5826AF79DC700EFDE86B63B330321751896350521DAD6FE862B3494708BF8A4CA89C08A0866140F8D8549687A55981600C3CF67000F980928739A01EE3943BDD732016D6DF551F833DC6F1E4FC0FFB7670A744D9D7326809F7392CF7102AA5961B94F85CB97CC8368387446E213D12D0628572A4CA2158ADD9B84A7481E233EBD9AEE9D445A03494E0C50AE48A7DE0377322767DAE2213FACAE772003503448AB7503CF6B80775CF6755D5DB56EB376B828C0CCB14158D0108680CF57FBFE29446344440690791B73DDC887B78238AA399143717C55AF0DEC180C60C7639E9B35039626B0D96CEC75746A1A9E3C3C09BF9C7142410CC00ABBDDF409CF9B80B36C004077D535821C0CC0DE4C02C4DE3ED8B8A8CB88E9D710DE92E012EEAA1D4C02EBCC85534C6620A125E2EB26E948895390883446093104980933DC698C40E0F0BE570660373481EAF5E1659C3917F40613704E33010F7374A3B0AE9DD039DADDD6B0FF14E25748E5A30DA7D7D9FF6543D299CAC757E406430BCC924C67E15CC3B72F9B9F254D50C6CF96C824D46816D234FFF58A25D00D33C0A98A659FE034F57F1E039C352CA0AB904F8C416329016D0DF12AB119E24797EF2422F43C65F020A128698362FB1A186A5E538D289E950EA7835EA51F1DEB08334A784151D161BCACC393132A7CEB501E2673A44D66BFC781A6E02F3ED00A4DD2388B41983608CE63807761CBA792D00259983FAF057DF659C046D23D8084E2976D842CFAE6C5A11308EF4751658BA00B36A6DE5583CC60919FB3C2B960DA7C4F000E569A20AB0930E96A0035E0060D19E8BEE1E370DBBC0A6314CB14047D5EF8CBF571F8F3972619F15542A073641E604E32C0CD37DF2CA0921682B97158B1744135D06348BE02239902A84D3D108C4419A0131D6E28B7F430FF3F24DA41514AC0A364DBF07F179BE133A7796947F69090768A5B84A2D8C5C0409C9C0E0EE9299269688447074EC24D5D7C1510D26B53340C7FB9B2023F7A24C7C2C8B815CDB1E5CF0782DE5917905FB56A556CD9F2D5AE8D17F4B0408F05F64AA532EC3F70007E78DF03CC569FAD64E73E047FC5954BE153B77CDC9C033298A1A7A501AE5ED50DBF786CC073C9259708CF3EFBAC3C17C6949F43C4E7D6AE5D1BBAF4D24B3FFDB9CF7CD259EBEB93FD3F71F224FCD3BFFC9831C2D9CC742710B967DF01F8D9430F3346ABFD0DEB2F5C07375E77F5D26432D9CAE21573024BCD9175015BB66CF1B7B7B7FFFE473FFAD16F3B1C0E7BB15834227C38F0B97C411F1CCF704EB71FCA782E97CBB2BD58C8A39690596AB72C4B4C6328B2CCCC069DB78E2DDF5EA45DB4D51CD36493DD9C70B283C7E3059FCF0F5E74FBC802B844195A9BE2803F075C2E17DB295AB863C78EC77EF8C31FDE7EE0C081718A5B9C3701BFE3B67AF56AF7A2458B2EBFF1C61BBF41C4AF89D069789C7CEAC927FEDCEB8D3F76E5076F7421F08FA1568EA1D98E216B87D0723B34E01C3C074EF4021C08DD1CE54AF916A922B965CBCFE7CCB5024874A7D3D12F08E25308112BA8DC699AA0CCE3B1C603AA1698412B34A969DC54299F9EF9D10FEFF16FDD7AE53FB6B6B6AE4689B79139A0FDA28B2EFA3D64D009D4525FC5F353FA392C65E7BC06C0C17485C3E10D5FF8C2177E128D462335011E0DA53FBB7DFBF6AFA1C4DDD7DBDB9B3AD340B7B4B4B82AE0D8C483D80302D76E176DCD1FFBC4A7AF9255CD3F399980E4CC0C9BED8B45EB201E8F4162727CE8A16D3FDE8EB71AD454ED84522ABD9E4A8DEC7F13C6B4F9FDFEA537DD74D33FD5D7D7CF47E614490BD01432125E7FF8E187BFF6E8A38FFE9F83070FA6CF552638A735407777B72312892CFBD4A73EF5C3582C16A9917C1DD57961E7CE9DFFB86FDFBE1F9D89F85D4B367E249F99FE1BA902F334ADC4B9DD1EF0FB021089D441B8AE0E128969961BE8B0DB8D4412537A9190AD7E9FE7D66C260DB25406404B5E57DF5E16EDAE17454FD3EF8F1CDE9EB4BEE3D5575F95D134BDFEE4934F7EE1FAEBAFBF3F140AB590ED2750888CC0E17B5FC9E7F393C824FF8CE7F2E722139CB31AE0820B2EB0A3442DB8E38E3B1E58B870E192F22CE022E21771F07F42D2BF6CD9B2D1C6C6C653ECEC2F9E3B704972E4E42F73E944354BC3E3F542281486483802ADF33A2180C78409545567F69C328BC8639B9E9E82C1FE13904EA5209D4E314C616DD1C6CE43CBE7C7972E5EBCF8944143C4EFC6DF70E535D75CF31D9FCF17438DC25B9A0019A0FCC0030FDCB27FFFFEC7F03717CF33C05B43FC2212B6E3F6DB6FBF17D5ECA504F42CE24B925441897FE9A5575FFDDFA1787C5810C537802CB9AC3A8747D37F9FCF2437950A19BE58C8315B4FA9E35E640402732E971B1CA8FAC9EE53568FA6D352B00AF3224A08300B08209178880D0470A3E6707B82654F20F4B5B6B6C043A77F9FA6AA5CA55472FBECF6AB2FBFE492FF8684F72203F016309C9999C9DC7FFFFD37663299179F78E289CA7906F8CDC41756AC58D18C68FF6FD09FFEA815E523D44FC783A3A39091142D180E83C0167F72E8CB1ABE38E58850A208119462FA2CAAC7739C11B9E3E97F7A93BDC752F978EBD8FC0CDD43303F679CD7D93546D44F67DF2470E6BD8CD8B1F1BD86372DA1961A1EECE7421E0F47DE00610B8B09464646C6EFBDF7DE6BD1453C40A6E33C03BC49A067CD9A35B1AD5BB7FE29DACF3F5651B26A409F9E4CA5B8483406B1860618471BDEDED4C8DCB8A9541A9A11C0D1044E01AF8D864290C9E5D81A80204A7C3A9B033BBA6A1E24C84C3A8D847181C74DC719E6B6F95055D3F594DF1F0906986330914C4263D458E43B399D84FA688431C544721AEA1143D0F12402C838322231411ADD4E27DEAB821AA4F7F583E0C57B22B6D0090B584C70ECD8B1A3F7DC73CF0DC8187D683694F381A0D3B68D1B3706366DDA74CB95575EF94574A138CBEEA3E4AB44380ED5754F57272848E880C7CD7605B5820BFD743F0EB88094139118A87F8D382C12D2E574808E3E3FCD1ABA9009E87A3A76E2BD54CA13C09DD60AEAAA826ABFC05613DB9171F2C834742F5A3E9E4ECFA0036168982C325BA958626B80745982C4F434332F4ED106535309F0793CB060C102189B9C24E6C4AFA8E856A8BAA7A767FEA73FFDE91FA0496839570245FC39447C1F82BD1BAEBDF6DABB51B50B96E413F1D176E6871349EE9A2BAE80582C0E53332958B6681104020126FDD671329B85A58B164210A5385328C2A29E6E884622A021F1BAE6CD833AF40058966F7D3D3B0E47081486F138024D0D8DE825F8A03E1E67BBD3E5448FC038F6FBFCEC3A3A6E46ADE3F379D9717767275EE7C2E318B4B7B5828BEEDDD8000B7A7A6011FE266402091940A99DA646F376D1ADB7DEFAF78871EA49E39D7703CD40CFBC79F32EBDF9E69BBF89AAD251135ED5D0F6670E0F0C96BAE62F08A490D8B4E5F23994BC043B4EA36640894221D400ED2BA2F8244B0923043F3935C5A67C93C919764CAA9A2496805F1EEF41E71C0ECA29D058583781D70D8F8C18F7452F60786494CD19922770E8E831082363D1BCD0F1FE01A8940D2C378E92EE46CD4266238DBFE3D091A3C8305E08F803106B6C740EF6F71F6E6F6BEBA160A369E660C3860D37A0B61947B7F32EFC7FFABD740FDF7306A0404F30185C77CB2DB77C1F5F7D35215E0D5568F6F917773CD0B6F8823FD8B07A25B4A0ED1F42A22CBB6031B4363733C4DED6DA8252D9C4A6738726A79884D23682C7AD2DCD0CA08DA26A6E6F6D657EFE04628745F37B18802C22D14913C45013A43219A8A82A74B41B29E5A3F879926AB2F5B2A28217CD4D137E7F19094FD7CD33AF4BA1EDA7EFA7580281BE0A9A85F69616365154A848FCA1DEDEFD535353B6582CD681DF2F5A9347975D76D9E773B9DC04BAA2FF80FFBF6781A2F7140452A0A7AEAE6EF997BFFCE51FA30698570BF890F8F99776EEBC0FFD2FBE795EE71FAE5ED0833EBB0A270606A109D5ACD36E871994520D07341A081A0C303101ADA8DE691B1C1F87798D8D0CA90FE3710B9EA7813F393C0CF39040341730818C81DFCFB00181C974B10C61AFDB60A0F149686EA86784647906F84AD882FE9F46AD434093B4433A9DC59FE866C9211447A01A036EBB8DCD011353F1A23072DF0F7EF01768BEFE3A1C0E3721E814C80C112844E2CB3FF9C94FFEF0F5D75FFFD7E79E7BAEF05E30C17BA60128D08376BBE7F39FFFFC773B3A3AE6D5A87D227E71FFFEFD0FBD7EF8F0B62B6EF8D0BFAE5EBC102E5EBB867D2E532CC0D5975EC28E1F7AE229F8F096ABD9F1EE7DAFC1559B3641AC2EC2D47214113C6100DA9EDBB90B2E5E7F213BA63C3FEB78EF81832C04DC8C924D66E3573B5E824D1B36B0F75EDEBB0F5A90D1082F50C068F7FE83B07ED50AF6DECE57F7C062D4228419F2081C8F9D3C092B972C31A283AFED870ED41C61641062D85D7BF73539FCAEB1EDFFBEFD2B5BB76CFD06D2386AD97E6402DB0D37DCF0CD6C369B58BF7EFD53F4F3FE5368000AF42C5FBE7CDE673FFBD97F58B76EDD95B5513E047D6574977EF58BC71FFFCA8265CB824B56AE79BE2D16E508A9CB920C9952B12AF123486892787A8671B4E70D08CC4842892882CDCE249134402A978710DA657A6F0AB54603328786C449209824C048F581E8BD5C4502BFD3C8FD4F23A0A4E8211596A27B1450F5FBD175D4341D8AF85B09FC096652484521A9B7A31BA9B19431B7C70B4079821CB05CC4443A79FF433FFDD7BF8E7823575D7ED9E55F47C207D15C709626989E9E4E7DFFFBDFBF01CDC8CE071F7C507A5F6B00727FD0D76FF8D0873EF4976BD7AEBDB236970F8FE59191917D0F3DF4D0579B9B7BA6E72F5CF8674DB11877D5E68B59F065D79EBDB006A590217B55837F7F69275C7AB121B1CFA2F45EB872250EA8F38DDF893B45FDE895249D024A6FBC8234C54E58B56C197850A593F4EE39D80B6B972F65EFED7FBD17714713848241662E0EF71D671E076D478F9F600031566754AEDB7FE8302C59B8800594B2C87C078F1DDDEA0B35FC6DEFBE7D0F79DC9E087A3C7F86E3E0E1CCB422D456A18F7FFCE30F7CFBDBDFBE160171EFBB192812DF65E2F3A8FAEBAEBAEAAA3FBAF4D24B3F6EA57399EE9E9C48248EFDFCE73FFF93482472D2DD146AB33BDD5B441CA243478FB2CF1F39719CE5E04D4C4CE2C0E650DA4A70B0F79061B347C7E0782804D51CBFD388DBD5318F610062809388E24FBDC8F887BC89D78F1C61B69EB6E999241C3A7C84D9FA14DA7D92FC006A050612C7C6699E88451E691DE131F42012D3C63C113E07ECA3F804652DE3AD1559AE0B45A33174730777EDDAF5038FC7135DB56AD567F0F7B8386383D6D6D6E6CF7CE6330FDC73CF3D1FBAE4924B4EBE5B81A277D5045C7CF1C5217CF05BD1DDFB5B42C416E8235F39954A0D6DDBB6ED0F1010BDF0E1CB2F77A43D8E351DDD8BEFC6B189210104BE1AD385D950AE95A74FC81AAA4BB8D875D5FF69968F7105721FCFEB56E817B8D9255F82112BAE7E861DD16A635DA70FE9D5EFB1B8C544F2664D08AEBA5E00CCFB52DD418E958B61670551504F0C0CFCE1AE5FFEF2197C4615C7A0E9DA6BAFFDBBC58B175F8FA0D041E6C08A16EEDDBBF7F9EF7EF7BB9F7CEDB5D786DF8D6492774D0320577B11F57F1041CFD7D005136B933AD0274E3CFDF4D35F191B1B7B717864B8FCE5D0CD483267DFD1A387BF8C03E922C2A99CAA0B206A68BB75228A8AC6581474B40448545ED5455DC4B7545D2582E12B7D86BE5711045AEBCBFEE81CCFFE370AF7F1941D4AE7CD73F4BE84277855A84A8550BD8FAA5BF760D7B2CF544050049D220282790FE4E6EAB1CC5ECBC029A2A47BBD6924BE8244D55000461F7DF4D1AF2206A843E7E70378A9DD62A2952B576EFAC4273EF177787C07EE1374FD9CD700E4EB3735355D86A0EF47E8EBFBADC91D33A327B57DFBF6BFD8B76FDFBFE19EB67ED76DDFBB4D94C625A1D05BE05065B21FE9F3F974340F7A2FFDD3DB0BA150889D6F6C6CD49F235BDADB5B7D98D3A76CDFCBEDAEBBEED24F77F1502044347B0B3EF2918FDC8FBF7F296A019BA505EC76BBFEC4134FDCF3C8238F7C6DCF9E3DC9B3E91E9E7506C007752227AFBBE38E3BFEADBEBE3E3E9BC55B62811EF47FFFF7CE9D3BBF87C49FD6E762E1E2DF61434D60CFE7F32BAFBBEEBAFB11087622E145CB33C031D37EF18B5FFC056AC67F447390395B63735663D114E84149BFE0F6DB6FFF7E434343BCD6DD43755D40B47BFF8E1D3BEE47E227FFB3119F3672F9703C5E7BF2C927BF94C964C669DEC3F28888365BB76EFDEF1B366CF8D095575EE9B63C8639C300942F87DCDC8DC4FF4E474747770DE0A38C9ED28103071EC107FF764F4FCF59B773E7F28668BFDCDFDFFFE233CF3CF3DF100BCD9059B498003502058AEE89C7E397AE5FBFDE3967188056EFE04B2BDAFCBF5DB264C9DA1A3F9FA27C9513274EBCF0D8638F7D1DEDF9104A810AFFC9371486625F5FDF532FBCF0C2DD94E84A1AD21218C43D1EC409F7A1F95C4526E31DC70077FD8FFFD3B1EBA517AE433C7D4C97CB079013477F1789A440CFBA75EB1AAEBFFEFA3B2FBFFCF2CF58E95CA6F44BA3A3A3FB1E78E081DBF1FF5E74F92438BF59E3C6A17B4841A23F42D0FC65947E4F6D32C9D0D0D0E0B7BEF5AD0FA28771E83F1A23204F78CB962D4D8AC62DB5395CDD6B2EDCF008F7B15B3E5B191D1BB75BCB6978745F795E50398193F103153C5F4007258FBE78063DAF193444D32AA8137A451D2BC8A5814C62E23524EC38AAB1323DC48A152BEAAEBEFAEA3F46D5F5E728ED7C0DF1E5E9E9E9BE9FFEF4A7B70D0C0CEC468EAF9C27FB1B09844C10479BFF97388E9F442670D6868C0F1F3EBCFF9BDFFCE6873B3B3BFB77EFDE6D1345B1311C6F58E6727ADA45416C14443E0E3A17D53908A16A0FE2B157E77437E5ABE89A66D3344DD074DD0A82D0A49AC4FDFEC73F234F279362B0A913382AA7AA916F5B81422605D94C8E45CE282C4A3B5B59A32AA02A8AB9A2D6C892A1D4274ACE14054189C722FA97FEE80B2E9A1EAD41FC3A123FB7ED67BFD8964A269FCDE733BDC81083C8D5E9FF8CE0EF74C96F6D6DA5B9813654F7DD76978F88D9BD76CD8AABD6AC5ED56C65185BFB638F3FA13DFDCC739AA2CA02A5CC69A6AEA668252B982950495C91CD6FF0E64E092DBE401014D10EAAE8005D92213D7A12EAEA220AF7D15B3E5F9C494EBB84E5574121348F2D83B2DB6CE07772E0A532ABBC0A025A04419381A7C0945C018DF2E5D5324B89D22B65908A392867D3A016D2F0A9FF7213CBBCB5884FFE3E2564FCF8DF7E0AB9428945EFCC95383A328C863F50E205AE82CC5F12383E8F17A4915BD3B96C66D72BBB5EFCABF70391D75E78F15F0702C1B51A6861944A3FF2BC179FD18DD2E85014D9AE6A2AAFA97AD52567AF38E6976CDA88607A6595F8A40928E7E0E78F3F0DA3B90A380375203AD165B4A302A7C0341258707941E56DA8C66DA020C443EA415EE5205BA63A0912C8B206DE997E50F73F0991685D49E4794EA1B62B3AAD97236EC29D5335C8290248363B3890831CAC1E1F31064ABC5C827A29C962E08AAF0E02E130E3B6E9934760A54F67E952B353BB12ABC57BA420C08A8F7F91155E50A512A8C8345AB9C849859C808CE32A67665CD9A9B1E0F8D0009B3C3159FA8A7863CBD1C9B1E11FCD65E2D737B57E4CB4B9BE3A3E696430793D1E686C6D8750BC091C28950E3FEEB4D6D0E101D1E5461A3AC0863BAD4D94B22998C826A10925BAB646D175D75C01CF1F1F0368EC62092AB6E961E80A3A205F51E0652504E0F443595259510CE355AE2986A581AE568023ED00822C22212B785B1F2545D2051C2B95A62313E82CAB92C70F70E60E0A0F4A6A06D68725E868A4DCBC04F41D3D01431207ABEA1C10418EAC2675548CCC99DE8C0ACE9E55F8806E56952B5F56205F92F1B5027200CD4A5461451CF14D6843EE1329F54253C136F53A3CF7CFDFAE9BEBD22FCB4ADD86DFBF15E4F8421C5C1164944899E32127520D0254D976A3758DC7E500AFD3062E2A7F6B36BEF0449B60726A101CF951A8F39E5AA3E8A2F618EC3DB21756B43743704133FBAE93A31350C923AEB659750F349015BD5ADD9C8659436DA09B269CE7411251F596D9FA485562F57288F09C607C8063DD31A8091332022B85AB31FB6F01C65838C476CD3444B54BA5E9F347531570B42E02CE1D804C45851CDA1EAAD14B9D55ECB41C8B4DC400CBBE9539AACE496559506DE1350D5EA4BDCEFBE7BCFEC767107D6198AC10A17956D276B68F8155E05A64194454BB58C681F6E335540D9D1821D4320FC68755B097A6C09CD30273E919AC5FBAE894AFD24CE105AB08A662FC4FC52F6959BB8AF4A342391CD2D0343715AA7B51D150E2045566D5B2386B278253497DFC204F4CA0194513A9A692761A6EA31F54ADC84553BBC86AC7A61013342F04D11F82026565733AC317740FAAD8C9338F832C17125F438EC4CF202460B368E882A004384903F9E63C03E033909D7682D5C3809E5B651DCBAA9D4BECFC6CC5737CD5F0F90B483C8ED7C081D70A681A4626F3D025CCCE7A5ABB55B28E31806EF431D2CD32B8D6AEEB66830BB3E43D683263088EE7CBF873B812A960C6009A592A4BD3599D7D46745419126F68069A4CA50881A69DCA00A7976523F51F40624E8EF641B62203E78F82607300421443EAD94EE6853A711400F269F0A905F0D86D30CEF940A5D62EBC939665CD79138004AD13ED4EB0017526A32966191AB92C4CE770CCD16B73B8EC26E1CD8E263643F2A90C6E6E7C088AE3C721022570E1FB54EF40539D55A1B3765114AB0C4004260D4A758F657DB62A1A15C964E5F088760AD21A698E1E618944B24809924E4532350033C18824D94C1112C9A8ABCBE14D79D10089B5F4AF2DCA585BA34FC6570F820F473E097927BA20AD4B10F420237046A16615DFD7320970E71270598B1F96752F808964067EB0771A444F14DD19076A043132D71940E084880D19DBA91BBD0C75F48AAE58148480DB010FEDED87A2A315917C18EC0EABD905CF5ADAC8E934D8865E07BE9082220A8BE6B0836626AAD40242CB1C509633D30066E93B4523D7DD287B4B0CC034373103991174F589E61CA71545A4475142B40E160390ED37894F9FE2CCCAA7BC7973DDACB0C90C484D94EF4C8CC0D027AA72C58F6E8CD7C30640C56BD57402C49909D888C071F9EAC5AC3883019824A61AD920A0BF8A2A2A34E72D00C7856C0ED47E9AC0BA93497919318F06419F073EB161213CFD5A1FBA74E8C33B1BD0CB729A26410067AC014AFC5AA89C38003C0A1135A9E42A953714ABB4D2CC89090CF3CC310690C9B49AA57029D6AE56CD0032038E33D11CDF2A8A78AE408404A5C23ECC6E007A55FA0DCFC0701F6871249D67953425E98C842F9975FA547C1829D808B68E25100884D0CDC46F4B4F819A1885656E0D96AFED34FAF6D4821854530E52870E1BD8F04B59346BCE63402E28A27FEED04583D1E9F94C86A7E7DFBA7A01EC3EDA0FBD09D4C28E7670B883466F231402575B27A8F58D909F1C87DCF103C8001974C3E5EAA2D45A2D4059482A33A92A5BF24EC7CCDC6B9CD9DD4433AC3B5DAF50E1CC0A2D8E2D8822CFE52B150AEA941912559991E79829B0DAE0A82613189A00D842894A4DC144A6054C89A79ABCD3AE00F0F31641B8B189955095B269288CF443A74D86658B1A19183CD34659B5ACA52B6BEF4AC858F753E2442E97634F4A0921673ADEB3670FAC5AB5CA32499CD3E9D4AD637AA5FF4F3F4FC71D1D1DDCA14387D8FBB1588C1F1A1AD24DCD46AB7B4F396E6D6DE5E87DBA16BF5B482412DA99AEA5D7E6E6666E646444A7F3E462B37E860A111C9F88873730FE9AF9F3203A3E09BB46FAC0D1DE03F660882D65A7289E68B7836A47E90EC5607C6408ECC387A1097184701A2350D26C19FD7EC5AC8068B97E32990F3205AA511F917C3F0DE95D417A51D10AC427AE54B95C4205506037A4944AD6084933D885D34C5360320411940518AAA5542BAC3E5F199F6C4873432ED609DE8616B0A14DCB65B2A027C7A059CDC3E59DF5E0B0DB7EA3B450A8592B65817ABF4AE431F3BC7F66666601225DF45C142D9BCD52F50D36D878CC065E55557EE5CA95CC4EE1B140D934B4A16A14F073BA85928D3A006C63E7D01E8AFDFDFD2A43DD9A264C4E4EEA5639787AC573780B5EC3FB512E21BDAFD03199F542A1A0D1440DDD8B5EF1EB102F233C733A293C2BE4F379C5EFF7F3EC1E82142C4E8D82C2A30DA7E0596E1A9FEB8DD0A6BD210E216F1E9E1FEC45977811D8A28897507350632B89B4B2CD037C630764BD51989A1C81F80C0A14AD8E679D508C7EC924802A553B37719A0AD6ABE17A9B320CBA5464CBDD1C0E674AF4783C49721B2AF99C61A3890138B6E29E690493FECC14D05A795223A46618F1F1CB8BA8DA8F643518F5B781BDA50D5C1E17101F668706A04B9B81552D71703BDF9A29AF0BF8E0C25811310072276A83B6DB3F1B6868A8FF27607996464F16A26D4D6E045FA306AD9C09D353E2C0E003DE0AAFD231F10677DAB560FE537B0CE6E7ABF7A2FB989F3DE5BE35DF557B1D6F322A97CF170214E9337249C98B72810FF1D099B680CF0BD7F438E1C513BD88FBE7831089438573B25E0615C260D4ABC8EE0135DE09273C75D03F3D02DDA93158586743B321B33677A4F235B39329F3FD9929E0D80EAC31366AEF6286ADA5F478BC49D1EDF12589837233D3E0C4672A6AC680B24E98664CC0AA7549E89DC237D466AD28AB7060AA0807853840630B38DD3E105D0EF41E7828A593F0B1263BF89CAD6FCB5E46C221B657B7455D34CA2BCF9A7D7E9BF350FF91EB63B1339CD78C9EC3679C1CC2FDE2AE66D83FD807C7332894B116904597D9E60669A01B09ADAAC30B854827EC2BC7E12832C1E25C0E35870D50A5994D2D39A6AD35B3CB996EF2B81B853C37936459D55E9F2F297A7D8114D99B4C360B314E8602F97A46210D1310B2FAD9ACAC3A2DB4545D3ED88B4CB0634683196F13387D4170386DA0A0DAA6562C3C4D4BD8DCF0E2F0285CD21A4675C7BDE9C0BD1B04988BDF4B9A647E3C02EE9904EC389202BDB9071487C7E85FC89880639D4D28AC5CE1DC20473A60875462913F1251CDEA7FC099B26BE9379EDA9A2B30858C45F51051F85388B7841CA15242EE3CA205BD9A77CF9BC08CF000674405E93E76374CF05ED414C0225B14D7266F81823AD49C919A30A31D80935A3BCC1C3E8C3E7E10DC769169935366BBCE13FD375E4F4C10418D7A092FC3AF4EEC8752D302509D3E64028E45FB58A0871882A776B73A780417D20E553E4A2143FC60D00D6A4A10309BA41B53FA360496A26043DA0B5C5160B168D2130A65831865D3B9D90F6B5694090CE628C89AB9188363A1465ED3AB4CC05EF17E0E7F18CA8E65F0D4D83158EB2DB287A109A7DF3620964DD74D86B140DFE98364DADD779D906FE77BCDEB66F339D9C0EA67FCFC19EF49A15ED4AC9735BAE1D99961180F778344134AC404ACBB99C6884C2A3E8D1CE161180ECC8AE8C6B4BBD1D79011D490604D66DF65F6582C8A88F20BE496B0EF470271A2F9434DB5A1930AE7C034058811A8DF9E6E944EE1CDC821FD183A261791B56825E0415398DE00D8E65D00BB2706A0233101ED412F72A8C46CE01B1E9801288131D66C5C80BE5597054178D3B57214DD222631015BF5B8F6FED6399399ACE6206F46E0DA6B7F1343E83566FB4CC7944483AE074F613A83B135639E5F79B331385D1048BBDA09CCF1E0141C28F928BD68A22573D2873A9FA866932B5937A6F145F37FF6A0BC11B8AB9A00BA270B011B15D318ED151E0AACDA168B1228A6E473D5CE19D602280B4CE4694E4030E204BCE91AF21613A8B442068C664C02FE40F225101CBA5BBB613CE583DC781F74FBD1AF956424AE728A49A07EBEA96209722A0E96DDC1A688CBD3E33035707C773C16EDA53C79AA1B6452A74A24CD988A24D4CD4AF5D3797C9EEA3158DECFA9A3ADD57EDE1451CDBC86B78ECD6B348BC90C7ED378EB9EE677586E27A3B9E501505EE5E8D8F885ED4B565FE36E6835C2BC04B29393B0A03E0C72A5FCA60C402E1D4FFD876C229C4C96E038EF805230028AE840D5CFCDF63C226C463B813DFCBF80E7BD348D60493E7100124757B9AA8BCF69463A2195BF23DA8B82CE1705C134018A6474C3648981B30106DD28B786AADFF027D97C81A5152C4620E9D78D30312DE2524D57847EACDDE102677D0B681E0FF49EEC85769BC0A69FA92E9F35B54C018F32821AB1A58B2547D08446A52CC3F6EDDFDB190EF9FF818881FE3B119628C2A14FAE2A8AC2469DDC3B3A672DDB32276134EB7D499234CAAD43FF9DDD836207B4DA88B2956A3F4F1937742D7D8E2D233BC37D6BCF59C7E654388B0958D752C1A95426EFE8BAF4BA6BDC5DCBC0ED10C18E03C4F51F45B096354ADAD77A02A6061488F0820D264A00231A02BF580770AE207EB18D690216D235FB9390BA5798DB6E2C892501CDA18626A46F6871DD7C35CC00136AC53201F85D487B11354A81CD47331562AC69D74DA937B48051638FDC8A0A9B42148CF7CCB071D5533063D0AC21939580A05B4C002CCDCC198A8273D12A181A3802917205EC782FA95464AA9EF29D79BB173C757520788250AA207F671A41E17875DFBE7DA3247037DD7413B76DDB36B6D4AAB7B797A3E55F78CCE179B6148CCED1FB356A9E11C3FC1C3B479FC59D0D397DCE3A6F5D4BEF99EF5BC7D6E7AC63AB09C4299FB37049EDB58DED9D822712035F30044E8700762448D9ED81CAF4342B46C93EC3E2F9480C87033827026C858324170025D600B6501DA8821319864CB76EE467EAAAD9B57C36E0C39881245D313C04076F786C50F50274B3A9156F68791256963B481A40D60B640FD8595D368183D90CDBB4FF7483920266C4C930750C18D66003C2003A6704210CB504A63B6269051E34B40F4E7F08C2F3974261F42494C74EA264A0A46733A02243E8761F734F28046AB3E183E06039445B1007EA4DD3A0EFBCF3CEB7EDFFFFB6CFD4BE6F1EEB35C7B5EB18F433E088EAB59DF32F08B8F019585B7B4AFCE08D69765613812676282700B5A3CDE3832CFAF0454F3DE8A118787C619078279450236A8AC6C68FD91FB3CD8D06467C5F634EB7CEECBC4EC4150C1C40BD8E3C4452CE98D8332C215ECB2B40CB5F2D1048B417A73D5AC132019C241B7682DD9837B37E792314C9CD02138D33AE514D5CA1990C61C58C54CD6AAF6EDA2B1DAA9A4043F5E4F0FA21D4391FA44000727DAF838BAE95F1BB092C51C60C0E164D678A4E2715750CCFD5892097D319B1B99C08B878C604340FCF51BC44633E34D8BD3EA8A05B5DAE6B065B84CAD1454012EDE8DFDB90F028E94CEA0D815234438A89D02CB7873368C2C69DB304D5105A1A6B028A3603CE18EF332C80FF4B8A652281682FDEF9C94F96AFDAF6B0A1C134A91A30003372C4DAA86A86AAE22C7B627EA1316F60107F561756734A8C1FCF7AF3999AC10C50D03987C30DEEC65696419CEAEB057B2907029A082ADBC6D194287297C86AF9DAE72C038836475870BA8C546D626CB4E32E2A3B138DB3C08E1A8E830FC7400CD48166771A5A96ECBC62867051B40D69374797FC7B0B83E98664AB8CB8162E15583735A206B5CA1545D3F6EB06006474532B861720083AD19E4DCBA1DF4EEBD66D1AE58AB13ABB7C15385043659DE3AAE9DCEC86FC2CAAD466CB26984C308BECADF431CD9C8F56F55960C8269B101778D14652BD9D622A091EBF1FD5A11734E4528DD627A0BB2488C29C9D1216052128C815748B6977006983487B272491C96308F6046F10CD9E13F02919F1354E35E3F79A21E9C400FA6C4CC108E4E8666EA06E4ABE4564D2DAAAE1C1F1065DCAA88A9D3C57F5EC18985765CB0D64AAC060004E40D1D76DBC52A9FA8BBA39AB44C89213CC6042B588326FF8EB3C57253C57E3BF8AC8855E44F92E64282772103A7E78CE28D72AA396D1F1BD12791C5219B45201CAF93C14B35950CA7928A432307872D0E8F6899F477765CE2686E218F91FB8EB2BCCE77621C1DBBB3AC0130AB05C7EB797D2C13D0878BD28084ED06CB468C34EA156962FE024588CE32C502611C5F89154158E37894F63CFECACE1A5B171571970331129A383A2F10C88F3359A9B574C0CC01BB115D1E454D9C08065F6A53ACBD4D5F14754208484E325847AB43044A5EA19085EC896E1B59C8430452E025F2E0087BB5ECC829ACBC0F8D438EC1D1961B573D05D633BA54551FF1DCA77673E31ED68F3C91FB5B25AD6AE5B0B5E548F89C919689BD705D1589C3040D35C6580ADD7DDDC44B3A689A909DC2721168DB1B512BB9F7DC1D0904CDA8D5557C4EC72B5A791C42AA251312BDA1D7611E2CDCDE08F37B1CA651E570001066A4A34A39ADD83BB0B34D1818CE4408C85F841B0A359B0B3E452D43DE849D959D635C36B72D9706705419AD5000257A11F34D3BB139AD293289905C82626601289582AFD6EA5EB4A25A361934DA6E64B92D1848965C0DAC0819210AEAF83FA7823C41B1A2016C7BDBE0156ACD908E9541A92D309A9F7E0EEEFCC5506387EBCF73B172C59F5A5CEEE1E7B105D4109CD41627212EC4E0F4C4E8CC1C4C438BE4E4085F23188F08A3156543C4B968C2657B415710CFBFB8E03D0FE36370F9AD778731344A30DC039BC30337CC2703F05BE627888F8CF87FFCB2D032FFEFAD76D60BA740A72E49BB54A7FCB08D8ED66008FD6A5F911ED070241088642100C86D92BA589F98341A3AE6F2AA56733A972219F1FCF66D2FB8686FA7E363678F267EF97D5C35414B3B9B5F3C6A6B6AE0FE3582CF778FD0D7E7FC0190A87297004D9741A32991956F738939A8114EE994C86925ED85EC8E5A0884CF2BBF4C3233794BC3D13A0C1C60F6C1CFCE98FFFB95D3462D69AE2F1D719E081A510ABE0138D050B36D6464D641935C66E67AF94DD6323F5EE2015EF00A7C350F5944D433B5D43C11FCA3EA50444E46C55522459AA944A23C3D9CC40FF89A94236BBEFE440DFFD7B5FDEF1F2FB7991A8C9C83F36F76A16C98A8B2E5AD7D1D6FD499F2FB002C73A866316400671D545EB70C8ED8248E388E32F99EDED287E20D18AAB8A0C65A9C2CC0395BBA7F729C74F962C0DA2B0B2F812332BB2D11A07771670A2CC64D63C5B9F05815DDD3D7F35303476AF2429ACEE16ADD810454145FBAC515CDD38E65591E768DD8E6ACC67A8B28ADF285778C9110AB7A28FE9C8654A4242AA88085DC5502422767474F20B175FF0FF7F78EBA64FC3F9ED4C9349BBCCFD8CDBB6C79EFDE189E3C76F1D1A1ED6D3333314A5531C2E876A27AF4D952AF96C6A18C965D3741571B766E3690A4EA4CC7B5E14789B202A82A0A8A2A0690AAFC8AAA0315CCA09769BA074762DB8B36A02DE36BAE5384AB4A3150A14C1B53FF8D8F37B50BD34F41E3A02B453AF9DC58B16C0A2450B912B8BC7FEDF3FFD93FB119E4EE99A36A1A895D17462F4384B3AD2F5F26FF91EEE0C133973C70B788BBF1F2FA3B11403D1C62E4170362191EA11B9C7BEFE777FFF292AE470E8D06136AE6452695C69575565FCE6DFDB4499B092B997F16BDEB6DD16DFC6C350C66438146DBE31DAD8F9317CA216D41621F4209C99749A27C42E0882696B04D3776513753DF5F50D7F93CFA6D19E6598FA09C7DA34BBC335D2D2B5EAB6AE16FFF66834AA27162FE636E3D56363635C2A95A2D270FCE73EF7393EE5F1E8B7DD769B429DC1EEBCF3CE39514BE8EEBBEFE6F139849BEEB8430C150ADC17BFF84575626242A7B276B525ED0E1D3A24E424E1B278EB827BE572B10589CA73BC023E4F00BCFEA0E191E99A15B8A98E2DEDC964A221DEDC31A2285A195DC1145E3C1C89B7FC78666AE441BC3DB5D17B4B0538DE9206A0BAB6D1A6EEAFA3CAFF0355956D06A8B021980BB32EDDABD66C40A0B308A610E18E4F4C41A158040FB5701105E843E45A44CF82800D357120BB457E292D928CB57417962C9BB77AE1C28521A7D3D368B30BF58260AB471731EEF3B85B5D4E57633235539C4E24FFEE78FFF167EDC562E17BDFFB9E72AE6A04F2B43E77DB6D226A406FCF9A0B37C7E3B13FAB0B053DA57279345F280CC9AA36A12BEA84249727CBA5D2E8CB3B77168706522F4D8CF479C8F2D26311AE228F2114AA034F3086E6B90B31990CC54209BC6E0FD4D7C7208EFBC1838760CF2B3B203D9340103D5305ED82689305D1FE9DC468DF57F17E85DF9901A8E68F37D2B429DED0FE4C726240B0A62E7D84F011C9078201686DEF4117D4694C23EB6622075E63478E95E53C6BC04800D1E7F7427D432334A35BE2703AF448304873F102B940B46A867C620F3E24810C022D1E97130AA53204FC3E383638B4E7D0A1A37F3C7EECD0FE93ADADA5E7EEBA4B3D57188154FD4D0F3EC8DB1F7ED8D3BA74E9D2250B167DB3BBBD6D1535ABF2B91C902F971902A785B07974AB29D043F90E22EB2BA0ABC9549A4AE97063A3E330313E0639FC9C2CAB144A66F99574ADCED2ED04C39727A08E8234D47F043269F4163229C8A1A7606D91FA76757CF4F8F5C5D4E4E3BFD5FC9CE97D4B85A1B40A6A5D9D70ECD557433389D2FFF206C2973B9DF688DB257281800F39955CBB20C4E371A88B46201231327AFDC81CD4402195C9B2762A34F345851150ADC354621AEA2261861388B054F1A25028C202E474AAB5DFD4500F7DFD03501F8DC2C8F838ABD74FAD5C16E2FB13D3D3FA2BAF1DD836D4D77F772E393680A6A2B26DDB36ED3DEBB64184BFE926DED9D6E6F4DAED6D0B7BE6DFB966E9D29BEAA375DCE1A3C7218ACF39323901AD8D0D30399580AE79EDACC8F4EA15CBE1086A46967F80639346D3E8F578591B5BAA389E4326C9A316A5C65684F683FE002B3B9F2B1658C83F914CE1B549981A9F8099548669D66C268FAEA2A2178BE56431977AC6E128FCD58A4BAE9E08562A0A755F793313FA0606B8E4EEBBC55B972EDD108F446EC6779AD1ED6B713A1CF5289D7E9117DC9C919801A3489C90DFCFD416856DA97902F9F4056AC3827EBE1BA5776C720AD6AD5CC1DCC9E777EC8425085EA8AE7F1AB9D6ED72B14CE408B56BC187686F6D81040EC0FCCE4E664246C7C68C3AFD85024B3372A2B4144B156843ED319E9856F6BCFEFAB77AF7EDF9961E8B25DA1104BDDBF8804AE179162FB671D96C74F1C2C55F5ABDF8822FC563117108A598989E1669D08C9E975517D759530AB7DB05C74E9C84BA701806868650CD07617A7A0682013F6ABA228403416888C7E0C0E123B0E9A2F5CC7DDBB5771F34E2390AC84DCFA49856240CC0840BC790CC29F53668C4FB9319D01849D522C70B5924FC8424C9C308254626C7A7B67DEB7FFE8F1DA797A217ACE4076B7BE291471C3645F9F3EECEEECF85FDFE05B148B8011D0A1F8F687F7C6C942342B3180012753E4A655747073E408075DA9CDFDDCDA60706F1E168068CFC56E26A6A9D42EA9D3A6F91A5242EA77E3C13C80CA4FA69BA33890F473DFF281A460C4083D4D6D28C0C839283D70E8D8E417D2C465A80FAFCF1CB172DBA28525FFF19B950CA0E8C0C9FF8F7279F545F79E5157DF3E6CDFAD90678CF3FFFBC2DA528C1056D1D9FDA7CD1453FDDB07AD566155DADE9540AEA502B4E3346EE60BD08A9A700C5EB51CD3386A7F7A8D43DC54A58457134772B972E637D0E687E857A0F6690B8193403C3F8CCACCD1D0AD9040A13B5BAE9686F67F75980634D2DF4A8240F8D33C561C86C4E4D4E7075E188DDEB76FBC28140030ADF7C55E756EF3DB04FF3391C4F5F7BEDB5BF99017EFDF8E3425E513A7881FF40A554B6AD4509A6C51A7154C9D3A88A49B24965937F333038C4BA70F59DEC67DD3A48D2A966FE456BD7B2BE3E88D9D0F6DB186796CA12ABBF4F44A76D060784EAE92FC101229B46AD5EA248F4A1E111D6A0696C32612458E02035E2BD998648265983A74C2E6F1451F4781C17CCEFBEDAE9F37DA4A4EB837DC3C363CF3CF288FAC10F7E503FFDB9DE09754F9D4E8E4D4EFAC30DCDD7AC59B3E6679BD6AEF988DD6673508712625CEA4452AA9461C5920B580027878C4C6BF04650ED1381A770ACC8941173BB9D2E46C41C3E4B02411CBD52C7B2340A0B4DE05087141A6B6A7A4D4DB2E6B5B521438C328D428B4A0EF41E623D930687469099EC2C20E4A46E27BC08AB962F8508455BD1C4EE7AE555181A1BAE0C0E0E3E580A875FBE7EF366E5379A00526DDE96964697607FE243D75D7B410209D68DB68B961F0750E5A32BC306BFEFF87158B5620553537BD076B3757DC8CD14152C9A3582BA905BC3A8E6A83913D9C3180ED0F1FE7EC6E1D4B59B9A2F5103065297F12875EFAA83C37D7DB06CF122A635C84E1276A0E4105A904A9D3CE91E03C3C3B0B0A79B0D1631054D28BDB86F3FE473B9E7A646263E75A277EFF03B5D8114B186F0EB63C75ADA1B1AEF0BF8029BD7E32013D825C6A5713984BF751E6AAC49C43864E6280A4AAB81893988E8A4255F43A2D131FD66C20444B84C368F2633C82279D4FB90FA1B12A310EE211C9444221F1F1802975D448640CCA0482C07937228572D5BCA846ECFBE7DD0DDD5C56844E1641A17EAA8D6D77F12A2D1383CF4D8A3AF57F2F2D613BD7BC64E2F32F9060660C0E68E3B9C5E495A78FD75D76D4FCFA4435B2EBF94A9A4C9A949C8E58D45A4C6624B23B3845AB8512B95BDFB0FA0F4AF314AC620E73FF7EB17D97B295459749DDFEB616DDBD6220822C2F61E3D860F59C78020B58309E2405A39F4F1589471F141B487C4803480D4318CD41D790987FB4E80A42A50AC486CA045563E454F8D8F8DDD7CE0A5975E78A77BEF6CD9B2C5B17ECB968B1BA3B10775E042248594EB40408DEA1D2DEAEA60BF835AD374A2B4121108CC2E59301F924894A984D1CF9066F533991C5CB87A051312120E6A40458CF20A0A523D32148D316914C25843A815366FDCC83408D1EAA55776C34A247C0A7114BD47615FB61A5892598E00016DA3D9A50F9EDCFE2B088443A99F3DF2F0952EA9EED0F7BE7757E974C07C462F80B440A4AD2DD2D8DCF847976EDCFCD5519438526B61340574E3DAEDF91D3BA013259DD03D252F54A4326B9A48B6EEC2552B1971C72726512B14A113B99BA4FF859DBB5092232CD04192422AB11E095E5BEFC6CCAB87B189097879FF41568A2E8D9E03CB5A660D3D385D51E46CB9583C922FE4F62412C917D01C1D108AC571048EB9775A03B0FAC7A190D7CE714D68EE9684A3751FF0797DAB9C2EE70251B4F98D5A1ACC478320323A69AC75A8251AEB8D0059ED462691084FAA9F0847D9C1D49F78D3FA754C0B9C40934AADE8C8AC9220BD8CC2416394416FC16137B0431405E7C4E02082C58B4EB937E10BC253AF1D38084DADADF0EC8E67BF7EE2E8897F28241289338DC9191980B4C027EFBACB0153530BD09E3E2357A4E87A24260571483D915F4AE8D38E80851882DC3A52E9AFEE7B0D365CB88EDD830A48EC7CE51594DC207369E85B488B2C59389FA9366B2976ED46523084768EB40499803CAA31D1D434049764499ACEE773BD857C61F7D8F8F88E4C3E3F8CA7B3227E942F970BE80B57162F5EAC9C2D8F8000602F2A3D5FB1E8D0F2798FE070783549F23BFDFE96A6786CA3CFE75BEDF67816DBEDCE3AB66482D55250C08BB61901357BEE16F46248FB9DBE913620B3401E00790594F9E3432648A5B3B01EB52A990BDA5E7AF965B4F1CBD9F81226CBE6B22CC780059190D1A85D1EC55C76EED903A2C39EF8F9A38F5E1DB5DB0F7FE31BDF28BDAD40103DEC6032898AA0EDB3976DDAFC7554ADB079C3454C159F699B46BB761239726626CD9029CD125211C3954B97B0A8203006C8C2B1E327600D024BFA5E0284A3E8CB92B6C8E48B2CC994C29D848C3555D1CA95F27821973F90CB67770F0F0EBF54D2CA1308B67382AEE7CB3C5F84584C4AA0CC6DC6FD4C5D39CEA6FF4FE9E8CF21E48AE2EECCE74975796CAA8A084DF1A167538FD27751C0E75DE3F17A963A1DEE064E1058A37BC24A541D8DB00FB9CB14F720EF864C1FF53EEC41EF8130056DE40DED414976399C4CF8A8652E61B02E94EC48DD99CB27D134F2B3BF7E091A9A1B61FBF3BFFAEAC9E327BF5F4E26936FA6117F6324F08B5FFCA223A7EB3DD76ED9F2944DB4372E415BD5883F7862721291ED18B343C46D647742C81874ACA25D26C44A1BA9394A64249B44B69BA47B606494A9295A5348E641672B8F290356960BC5C270219F7F2D9BC9BE3C383CFCB2A4EB33E892E62A9A9647C343AB38E4542AA599EB01F4732912480C41EB12C8B342228928056EA9CA10106E6A6A5DE7F7FBD7A196588EEABD4514EC364E30D65752CB79AA8AE2F3F9611E12AEB5A989694872FD8831080FD1D68F02462BA82859249D49336F8C34018D3D69963832D2389ACC03478E51F2C9F8438F3FBE4576388E3EF826D2FF5B1980B4C0D1B1B17067D7BCFFE78ACD977F83B257C8CFA5668B51F4E5A9D41835605EB16CE9ECDC3781B68E79863A47625373475283940E4D04275F95A440924BE55CAE7012A57B5F7626BD737472729F54A9A4ED8290E32B9542D6EF2F850A05E55C24F8DB610864069AD01251A65D1AC72138907D1AC8A1A6C6B6E5C1A07F3DE288E53EAFBFD36677386D669A1C99035AA749D5429B50780848939091BB4DFD08AD6DDFFEFD2C0A4BB11432CD043CA7D1BD8ED7D7C353DB7FF95F27FAFAFEE5BE7C7E46FF0D78E8B7CE056C412D50C7C9DDBF77C5D6C783FE406B1B6A800E0473D6F6EA6BAFB1C00EE102D20C14F7CE174BEC0753EC9A12428CFE80A51CAAA76308D8F62653333B2626A70FF37A254B2A9D773A0BE8BF94DBDBDB151C347DAE11FC3FC2101E5D771043F0C4108AE28FD5D72F884622177BFDFE1568027A9C4E978F40B16833023C887B101338C1E37499311781C560080F58DB4974B107D0A4667399A1279E7AFAF7A0AEAEEFBE3BEF2CFF6E9341A8053E9148849A9A9A6EBEEAD2CBBFDB77F4086CB9E20A16CA9C4C2480A7444F54FD24DDA4CA5922A32CE9F9423E954E670E2120DF3339997831954DF6EB2A9FD36439A73B1C8530E2C48391884AD3A2DB1E7C50D34F5B65F37EDE3863F52879163C323B37303020CA3E9FDD23081E49D3BCA22CFB3DE1C03C94E48D7EAF7F953F185CE4757B42769B9DD644B2CC1E32A9548B51532416A4A3EEE84FFC723B74CF5F004F3DFBF41706FB871FFC31AA4FFDB778436F693AF8E6BBEFB63BD3539D576FBEF291B696D62E9AADA2EC5452E565AA3855296BE8A22490E207F3C5C2EED189B197CAA5C288AE0A391BCFE7B55CAE986B6DADBC17806DAE690902964B92492A3665936C368F8C0CA12343A0A7D1D8D250BF0171C21A34C14B02BE401471024F0B69C8742076A2922F3032327CFCA95F3E733D57289CB8EFBEFBCAEF4C3E006A818F4E4E065A9BEAAF5CBBF6C27FA1A9C94C3A3B96CEA40EE017BF3C323ABAAB542A2574B4DF22C7E51587A3581E1C64A56CDE6FEAFCBD6008CBD3102B15B7A2EB5E4E557D76B73BDADCD070A1DFEF5B872070A93F106C24D77CD7EEDD9FC88E8E3E7DEFBDF766DF4AE7D1B79C1246B384AD894440E0F93872A51325BB8CE8BC403E784A964B0DE728427FBF318485231063894949723B45916909A2898E34096ADA245E9379AB7D85DE564E20790594E345695B94DAF47E046C73912108475834C1B7B4B71308FBBFB5F4142699E3861A0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (57,1,'Network_(24)',decode('89504E470D0A1A0A0000000D49484452000000180000001308060000008AB0CD3B0000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000045649444154388DA5946D4C5B6514C71B5F37C518E3A21F467C19488C88400824487438FDE00783C9483F383256322D4244601B93C150E85A406C6F7BDBD2F6B6E596D2D77B7B694168A59442A1851270CBDC5C94900988890BBACC2C8EF7F6F83C4D34338BE0B60F27F7DCE7FECFEF9F9CE79CCB0300DE4E514ED86FF03B4740609D86DA814B706E6C0EAAFB2F42B13E04C56D4C1C691EDFA97E47388ED35DDE3F2B9C33201ABE0CD22BD7A13A7A0D8ED0417849168637446E2481A4FB32F84CEF5E35DA18189F98801343DFC1BBBE65B0312EB0B06EE0B7D9B0C1DEFB3238A575AEFA030190EB0C50865A94DFBF04C7C52AE03C7DC09732D8E0917B36282C2C4CB53B9C7FB4B4CB6ED513D47203695AA923E81B3532E352B58858615DAE98442279F59E0C323333F79BCDE60B5285E277A5C170A1B3BB674E6D34AD694D964D9DA9E717D6EB9D5151D44FBDBDBDB790C9B37765909393B34FABD50E2955AA6B0EB707060323E01B198540681C462393303639059333B3303533032A8D66956198DF9A9B9B1FFB5F060505054F1004411B8DC61FBF54A9E71C7DFD9B1EAF6FCB170C6E872293DB8381E0963718DCF287C6B702E3E3DBE8FCA6482472592C96ABC8E4811D0D5253531F158BC512ABD5BA505454F4DA6E03707B747474440D0643F40E83E24F5B6225623A5E4598622724C4B6D5EE8C97D436DD2C3D255A3C7CE4E8F1DDC05873F464CBA2E0ACF4BA4CA18AB72B75B11AA93EC1C46CDE3BB53238A40A02D1ED8421BF1F1A493D94E97D50D9E98163675A97D124ED4177F2707E7EFE5E9427E136E03C3D3D3D09BD3F74ACBE75B98CF48090998546EB00701C0766A617DED64F0366F30E56B6C5B3BF1A86063D03279534B45ADD30120CC2D7833E90C854EB0A858296C96476F4342B954AB35C2EB7932469416145EFD636B97ADDC17980F5F44373E03C7CACE3A0A9D30CD9CA29C06CDE9B15E2D8CB641432E84B50E8B90A75CE6160D1E4D8EC0EA0E8EE985EAF5FC4178EFA3B8F266B09E597298AC2F93CCA2F921A5D8CEE3603EBE240DE6D8783EC0F0916666236EFADCA73DBA9EA5948367C0F59EE0510847F05917F1648C6030D5AEB06DE87BCBCBCA77373730F6464643C959D9DFD7C5656D60BB86DE8FCC546CAB681B5E2FE312819BC0259AEF9040B33319B577858B0F67AF91770A8E22CBC57590F1F549D8E95D7D66FD4D435AD947EF809BDDB25977E54D55553F7F94A79ED990D5C8B1998859998CD4B4B4BDB979292F24CCA2B39649344B1299669D6DAE5EAB0C3DD17B1B83DDFF6B0EC73FF05A76DB603965ECFACA3AF2FD22A25A7C58466B549426E2296323939793F6627841EDF37EBA31361180D47602C12496CEB28DAD650741AFC13E13865B3386E07F3F9FC07299BCD81BF610DD626361CD7220666B9BDBE8D7F16AD87E36C135351884C2371640A86C642F181E191B52EA7E3BC94A2846834EFF8630A04823D520D25C41AACC535B8163330CBC4BAD87F6DB299E57EA6596688D0A9DFBF9B0DFE3BF07E90A8B68B75FAAD1CB720140A9FC4E77F0196FCBFB5EA865F170000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (58,1,'Network_(48)',decode('89504E470D0A1A0A0000000D4948445200000030000000260806000000828D18010000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000C984944415458C3C598795453671AC6D376BA9DB63375AAD6D6A5A756A1AD5BADA3756B4BD16AA95AB72AD45DABE086208A232E6C0164470861094BC8C212484242488004020924AC0A58B756C7F5885BA76AAD755A499EF9DE5B759CD39EB63362FDE33DDFC7CDBDEFFB7BEEFDB6071E00DEFDC49C15FECF7BF1C5989FA8C70241153CD3ABB138A70E9F4BEAB1BEC0868092466C53B760ABB2116BA5562CCD3061FEDE72CC88526181EFEE6B2CC75FEEA73EAF27042C1154624A4C153E115AE02569C52AF541F8198F23D87E16B19D9711D97E099BCCA7E0A93A8C29B96D782BD18AC1A195F00A12DC6439FAB378F4A10AD8906BC6A2AC06AC2EDC874DE58711547712E16D17107FF82AA20E5EC1A68673F02A3F8EA9F907303AAD094363EAF0D26E031606A57CCF72F463F1C8431510A46880BFAA1D3B8D5F22B8B213E9FA3AC4371D43D4D1EBF06BB98445A63308CF5160B1500397E446F48FAA45EF9D0678EE149080BE0F5D4088A61991C683482ED4A2CA684443830DA1063B02DBAF6091E502A6EB4E42902B435B5B1B0A541A7C1CAD40EF501313904A025E78A802667DE6DD3B4A5C0CA3A99A03B4DBEDD0E87408D4DAB0B6E9326699BAF08EFA04F82919A8AAAAE2EEA148932AE0199C7683E5E8F5D0BF005F530F6949299A9A9AA0D168902391C25769C1D2FA0B986A388B91CA93088888874C2683C96442A5D184D7A24DF0FA49C09F1FBA8088021D2C562B34DA3204B337CDCF2D80B7A6050B6BBB3801A354273135428CC9095A6C4F12A1A6A606B13905F00A492701CF3CD465D47BDDBA394636EE75E5E5D8B8230CAB77C563E5AE582C0A8A81E7DFA3F1E9D628CCDD1289599B2331C33F029FF885212E2919B5B5B5888E4BBC79BFF5EFEB612F2FAFBF9597975FAFA8A87084F323B5C25C956791AE7E992047B99D1F9FADDA1D957673EBEEB81F229372BE0E8FCB4C16C9747E25E5362F49A1CE335324BA66655F4D2010E43E1401D3A74F1FA252A92EB289E9080F0FD78C1933A6375D7F6DC4C4945E7D073A3F98361B7EDB23B17CED36F8068661B0EB48F41BE8FADD9031EE6FD37D0101012E797979374844424242C81F2AE0DD77DF7D492E971FABAEAE76EE15081CE932F9AD82526DB742577EAB586FB8A5D41B1C4A7D854353657496D7989D65C66A87AEBAC66130D77657D659BA8D566B77ADCDDEADD29577171616392D168B33262666F91F2260C48811BDB2B2B21ACD66B3332535F56A99C1000603A3A51EC63A2B4C160BCC0D0DA86BB0A3892D972DEDEDA865FB82B99E5DB3D9D0D8D282F60307D0BC6F3F6C2DAD2850143B954AA5834D6C476464E494072A60E4C891CF242727ABE98D6564649CDF9B21BA516DB1A289C1D85BDB50676F64F036066A8785F56DCDCDD8C760099CAE591B9BD0D6DE81D6FDEDB033781B13D3B2AF1DFCE8E8FAB2B232271B8E3F868686BEF94004B031FEF89E3D7B84F5F5F50E8944F2CF35EBD7FB69ABD8EAC3426FAA413D83A3375DDFCCA0F677E0ABE327D0C844B53071D5D60626CCCEFD4D41F7DAD87D2484A2CC68BA121C1CBC57AFD743A7D37DC744F4ED7101BB76ED0A6213AEBBA8A8E8FA92E5CBE76FDF13B331312BEB4C8248D49524129D4BCECAEE12E68ACF09C579E7B30B0ACE1795965E12C9E55D59F9F95DB9854567D8B5B379858A2E4971F119B9527546AE529DCD57ABBB14DAB2D332A5B2956A444444A82B2B2B515C5C7C998978AAC704040606AE60EBF62D36566FFAF8F8ACBCDFB5FBD7223A3ABA89F615A9547AAC4704AC5DBB763A4BF88356ABBDE5EFEF1FE4E6E6F6A7072980BDF92792929268858348246AF84D01F3172EB9B278CDC6EFE7792DBBFCD1CC79FFF8F0A3D9FBA7CD9C5BF3D18CF98A5973E62BD898FC816D560E3F3FBF62171797FE3C1EEF9107054FB9070D1AD4CBDDDD7D9A40907A8D76EBB0B0882F898598888D18899598899DB7D467B3C32DC90CCF1C1B36289AB1A5C88AA4D21A84C8742829D5C05051819DB1C9F0499461558C184B4305CE45DBA21D33177B7FD553E0948B72526EAAB1314D892D994A64E58A51575787446909E224250896E8384662256662E72D5BE37B6B7CAC091FA4D9304FB61F4B332BEE1E8B6942256449B04DB71FDEBA23F84CBE0FB3922B312DAE0A8B22B2BB7B4A00E59A166FE272530DAA156C3D8D28B519252525CC5F34704C61B94A8E91588999D8799F7A2EFBD784984A4C48AEC7D49C36CC49D57337DF9E48884FDA8B00A10CBEAA16ACCBD420BD50834061115625E43B7B4AC0E749854ECF940A641528B146548E6DB5A7B0A3AA133B824321140AC18E2CDC0BDD91A5E418899598899DE73E6DE67793A274189D60C5A4CC164C4DD4C15C5B87FCFC7CF013F62250AC4444753B448A52343636FEF42684126CCA5039C78E1DDB6FF4E8D17D6EC7CBC3860D7B62D4A851FDE93A8D67B6770CA2BEABABEB73AC1D48E725BA8FAE4D9830E169B631BE3A6EDCB817FCB3B4CE9509F95CEE0A668C76E49522E1E835441DB804FF54099253859CCFD89C51CC3172AC8C99D879EFB97B7C3339528B37E2AC1893D68CC9890608650A2C4B94620933E84965E6BBE077A28239AB127529D46AF55596F89BD2D2526AAFB0A0F62A9BF8DFB0F65BB6BB5E63FD2B6C05BBCEFAF4F7B7B451B1E05A3AC9526875E5D057FEC7ADD9D8AE1D57A2C796E62EACB49CC7ECD2C3D8B0370F8B53351C23B11233B1F33E983AE3C2E408155E8F6FC0B0D4668CCDEDC0DBD243785F7D1CF34CE7B0566947BE520D135BD66858DD1B6411594B4780BB41F38605B50E76CC060B271DB76FB74E83C1703768E765E1A0B69C82798A3BA1AFA8045FACC0DC8A531C0B31111B31122B31133B1B42B34E4F0E2F866B921D6F0A5BE19AD90E57F1418C511CC714E6A696375C84AFB6117BA545C82F2C043B4620313D0B91A92204050599F97C7E318B220AB6862BC2C2C20A582B0F09092964C70329EBE7DD6E73D9B51CD6CF6621623B7BF6EEDDBBD3D9F2ACE60B73109D294676760ED84191D67FA4E6E4C157AC85BBE618C7424CC4C6313256622676DE94E99F7C3529341F2EC94D704DDF87FEE91D78557C18C38A8E6372D96978D69EC7E6B6AF11D6C48C798E1C69D9B98891AB9064EEC01057D7D934EE274D9AF41C1DF418E4A334DEA94F1B1EFBED591AEBACFF14059DA7E8377A86CD11EEF757060F9E2168388264BD0531F109881108B12D438A0DA62358507982632016622236622456622676DE548FB99D934364189ADA824169FB3120F30006E51D858BE204266A4F634E7517D6375F06FFD055649CB88A148319B27D47216EFD12C3478D5D72BF2B10E5C86D398AC28327112D2F81F0C84584755CE26A526D62201662E2D81823B11233B1F3A6CD98D7347D7B0A26EE51613CBF0813C3E5981C26867B48263EDE25C0FCEDB1F86C5B04966DD98535FEDBB17A632076F3E3B1614B30E67AAE08B85F01948372514ECA4D35A816D5A4DAC4402CC4446C1C2363256662E77DE831AF6EE09091183078385E7B630CDE7C6B22DE7EC70DE3DF9BEE7CFFC3594E8FD95E8E854B57DF58E9E37F719D7F50A7F7866D854B96ADF5A1E5AFA7F601CA45392937D558E5E37F816A526D622016621AC6D88891588999D879343627B8B9BD3ED6CDAD1F1B937FEDD567E0BB7D070C9105EC8CBEE4BB3D063BA3D23069CAEC0B2F0E7439D4B7BFCB325ADFEF8D9E38FFDC138FF5E93F74C58B035DBFA09A549B180276ECB9C498A4C4C6CE63BD89959889FDBF12F5193078E8A0A1A3BE1F3E660256ACDF8A207E1262D96A132748438658EA2C546B7E28ABAABA595E5D734B575DCD3CAFE9C7BC12F5D6FF57486E49C92EE69B7FA45C949372530DAA1527C8607533194322C7424C8CEDC6F37D5E1E7D6FBDBBF02ABDFE82BDB5D5419ED654670159452BB38516B6A9907FBD630BCD2CC83AD6B2A8612ECBD2D88CD22AE3F5F48262F7DF0B2E90CB3DE8197A9672502ECE8E526E2E6C5C4DAA4D0CC4424CC4468CC4FA3301E979790D46731D67F9EA983524CB67B1B1C42CC82ADA5A5B39834E3E9625416B47271AC90BB7ED87D9DE047595C919979919F16BE01E1E1E4FC60AD3E3E95E7A869EA51C948B72721E996AB07E2DE7AD1B39066221266223C614B1B8ED6786862C9CDA6070D07F0C280E1E3EC28CB91D0DCC98B7767470A6FDE49933387EF2142BDC463E161295FAFB54A9B42336232D2C342666C0EFFD023BE3235E89CB4C0F4995483AF394AA9B948B72526EAA41B5A826D5260662B9C3A5D61B1C9F6FDA34FC171D998C9D5DAB6A6A39A3DDFEC517D8D779009D870EC1C83E1FFBE44E894AF56DBA4C6E8D4D4F5DC7043F7BBF13F9CEB3A1A1FECFC7A50B7D2837D5A05A54936A1303B11013B1894B8A350B362F78FA1705787B7B3FCEC6974363A8808A2995976A2E66CAE5DA188160CE82050B1EEBA995E7B70479F8FA3E19979C3C3B5326D71203B1704C0643F7D2F5EBDFF8554F1C9190309EE241C3FE2F82D8CB7B624F7CFCD88894C471D4BFF79E7F037BFF6CE432A5649F0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (59,1,'Network_(64)',decode('89504E470D0A1A0A0000000D494844520000004000000033080600000027DF0EB10000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000015154944415468DED59A0754D457F6C74936C93FFFEC66B3299A58A2C46E6CB1478D0AD1286A445151C4500C58500151208A06E920481518CA00432F03436706180686A177502CD8359A62E226465D6380EFDEFB5BC87177DDB39E246423E7DCF37EF32BEF7E3FF7BDF77BF7F71E5A00B406C256ADFB486CE41E03C3A3E930F493C23040864D4139303A9E8B8F42F3601E5600CBC802584517624F4C11AC638BB02BAA109661B9300992C1E85806D6792643DF351E2BADBD616269B39BEA7DE1D7D6A935900158E3578879AEF9D03D5A8215216A18886B6194DC828F659DB05174E1A0FA32DCEB6FC0AFED2B78367F81FDEA2BF838FF2CD6A5B56389B81EB3022B31C1A3044BDC32B1DBCEC981EA1D4EF6872726005BC24AB132408975A24A6C96D4636B461BACF24FC34E7911876AAEC1A3F94BF877DE8257FBD7B0AFBE8E8F1517B03EB3134BE35B313BBC166FFB9543DB55011D5729F6EC3B644FF50E257BFA890980559C1A5BC455B0486AC02E5907F6C9CFC2497D09AE0D3708FA1B049CBD0DAF937F857DFD97B02CBB82F5B95D589A720273A29B3029B81AA3BCCB31D4598145AE19D865EBB49FEA7DE3890A8063461DF6A437637FFE091C5276C14D730947D5A7E05FDE8EE3E7EFC0EBF46D38347F0DCBCAEBD8507811EEB119F8204A83C9A2468C09A8C2304F15061D9663110D811D369FECA37A073F510170CD6FC6A7F24EB8979F87AFB21DD16999A8ADAD4568462EFCBBBEC381F6BF625BCD57D8587A0DCB72CEA154A914AE7B46A760CAD162BCEEA1C26B474AB0D84386EDD607F752BDAF3D5101F054B4C34FD184E814A900D6D4D484F28A0A1C4BCE84CB895BB06EF8069B2ABE805ED155CC9776214B2643555595705F4D4D0D5C4449184B2F511DAF1C6CDBE5604BF5BEF2C40460E55AE3B8E309E9020803B1A9D56A64E7E4C043920E87A6AF6041ADAF5F7A030BF2AE627A7A17622512E4E7E7FFD3331A4D15D67B27C372B7BD0DD5FB17B2A79E8C1E60B025E658BE06B1E999024865652572083E4E128F435149B069F8121F5552EB2B3EC39C9C2B783BF51C02838291989888C2C242D4D5D5214D968B695EF978DF370F1FEFD86F4DF5FEF9C909000D81909A339048FFD1ADF3A8654551D10419847DC763B1A3FA060CCB6FE003F935CCC9BE8CF1A9E771C4C515CEBE41F03C1E058542210C1B8363E914807C986EB7DD43F5FEE98909000F81081AFBDC9DB94503E2921079E233B86696C051A6C6DE8A8BB0283D8F4D0567B15A761A3AE99DD08928C3DC8436CC8BAEC3B1F068149794A0BABA1A9601893032B3DA4EF53EFF440460D2A449CF39BBB877700B161515C1C1E113FCE5B5A178E9D5C7B76123C7222C2C1CA5A5A550A954B0D9E7E435105A7FF50A0D0D0DFFE0EDEDEDC0F0DC8D4343C3BE8E4B2E70132717060447A5257807C5E6BB7887571D760FBEB6FFD0D1FB360EEE0FEC0FFBDE77720BBA74C43B4CE31D1C971718992EA1FBFDC3E3D2431313937E2C2B2BE3BA1EB8BBBB8FFF5D0780FE9E727575DD4463BEB7B8B818515151372D2D2D87F75FD71E376FC250ED296523C64CB960B663FF9D6D766E785FDF1C7687FDB1C670EBB7AF8F98D035F4AD2919DADAEFFCA5FF197B7BFB35696969DDE5E5E5C8CDCDBD7DF0E0C1577FB701707171994FADF523775B894472C7D2CA6AA68E8BCB338219EEFAD3B8690B4F0E1E3E1AC3B4C763F1F23530DBB90FDB6C0E62EB2E07E8EA1960E498491832723CC64F5F2CED7F6EE6F6EDCF12F4DEACACAC5E9E4629189F5B5B5BFFDFEF2E007676766368BCDFE3EE9A929ADA2B8A9320213B0709B21C64141421BDB00869F90590159720AFB40CD925A5C82F53A1A8BC02F94A154AABAA51ACD6A084E67D755D3DCAAA6B515E5B87EAA666A8EB1B20494CECE56994A7D3B8B8B84EEE6DBF9B009898980C96C964B7B89B4AA5D2EEB068314A08AC96C4172ACB504E70F52DAD28AEA8849A939CB67694126C3581F13D25D4B2AD274E404DD09535B5683F711295940734D37D0DF45C151D779CECC4F1F0F0EEBCBC3C615A15894425BF46107E31FCD2A54B5F4A4E4EBEC4DD935AA8FB88A757A78A80F34B9404DD22C01553305ADA3BA0ACAC4219896FE93881323AAEA296AE6F6EA160A8D14601A820F8DAC6460A509B10888ECE4E5451903808FC7C25BD587D7D7D3B0A0A0A841C21383838F29706E117C14F9D3AF58F62B1B85EA3D1F00BAA87DE01928894B47B8DADAD28A0A150ACAA105A5E5E564E2DDD24B4AA92BA786B4787500A70746F59A586604FA182E6FC766AE9EA06EE192DE838750A5574DC79E68CF0FCC953A79155985F46E017797AE51C810272E09704E167C36B6B6B3F1F1A1A9AC922287FEFF5F2F252BAF8F8BC9755A480825ABCBCBA06B9F212D43436516FA084865AB6968E6BA8BCFAD975B451EBD63434A2B1A50D4AEA01FFE8091A34B6B6A1827A10B7BAA6B65E18264D74AEAABE9E02473D4753F5C072CF9EB76808DCE4699682DFEBE3E363F49B0660E6CC99CF1EA33F86A72CAF372020A07DC182052F1E0908488F4D4BEF16C527F4246566F5885352BBB98CA5692C254BD6932ACBEE4DCBCEE9AD6968EA9597A97A3372F37A32F3F2F97C4F6641614F1AFDCE2E2CEAC92C2CECCE95CB7B72E4722A153D798A123A56F414962AC94ABB3DFCFDDFB4B5B51D1F1B1B7B87A75B7AF774BBB9B92DF84D02D097E8EC21F85EEE86D40BAEAE5AB5EA65BE666161F18AA1B5F5A0CDFBF7BF666C65F5B2E1279FBCA4EFE8F8A289BDFD1FCD5D5C9E37747179EEA769F1714C474730F6F9B03D34F32CA68FA7073CEDCAE5F21F68088E19D000F4253A6BE885D7C3DD8F129D5BC6C6C6A306EA7BE271CCD1D1710BE5063D9C2ED34BF8BB03070EBC3C6001A008CF522A950F4A684C53A27377D7AE5DB3FF97F0FD8D42899213274A3C0D53303EDB4EC9D3633FBFDEC8AC4A7FBD7187FE3A63B5BEC1A6AC956B3686E97DB8F6F0323D7DB379BABA8B478C182144942A1D412FBBBB1400D0B4F780B2B1D5FF6BF88783E0ECEC1C959D9D2D2CBAD0BBA18DCFB1766660166662366614588999D9B50C0C3FEA31FA341CEB8F88B1D9350AA6AEE1D8EA1C84AD4E3E30DDE78C2DBBF6C1C8745B0F7D94085F65E9E9E9303631FF66D9CA351DCB571954AEF870834C6F9541C4F2556B9C67CC7877E240C3B20FF6C53ED9376B602D4BF5D65CB67770FC81B3459E963DBC8FF6B276666016666236666456666676EE013FAE74CF806EB01AABC575304E6DC5CE9C93704E5742942A43A0AA0DF11959C25A9E8C227C24321987729B609352050B71314C43B2B1C53705466E62E8199A5E1EE800B00FF6C53ED9376B602D87729BE15EDC8E63E151E8CF16C3D272C06B12E9948E5BE5760A6CCCC8ACCCCCEC5A869BCDFFF6817322E6FBABB0445483B509CD30496F859B44262C6535D2BCDD97E5C12B3A094734976023EF8279E609182536614DB81A7AC74AA0EB55844DFBDDEF0C7400D887AEB71C7A7EC5826FD6C05A58936BF55504D65F4544740CFAB3456650D03BCB34B34360634666656666D732D868F2FDFB4E3198E9A7C27BA1D55816D3807549CD381C9BD5B728296479FC01024FBF00D847A6C1A1FC22AC8BCE625B462BB60724E2585C0656FB15C0E470C083810E00FB5813AC84B5281B76A24C6C8DD7085A1C2A2EC331A31C87DD3C384546525292B018C36B8B458A62AC4B6D13D89891599999D9B53E5C6B744BC75E84A93E65981DACC1A2A806E8499AE028CE425F96C76F7C040606E2A0AB070E2417E27079171CE3F36968640B3D444969AF71A41ADBBD23BB073A00EC837DF19239FBF69764606F662DDC1ABF8077FB5738149F8D4FDD3D393F414A4A8AB028934F5FA27A092D021B33322B3333BBD6B295EB3E5F641782099E4A4C0BA8C45C513D74629B601B9929ACE5252426C23B20087BC5521CA9B900AF927AC4A567A18172F4FEA5EBE252254C83B2B0C327A297BE0F8653A6F8D2ECD9B34791BDC129F3B469D3C64D9C3871C8BC79F35EA16BA3C986908DA0F3C3E6CC99F3EA3BEFBC3376FAF4E983E6CE9DFB673A3F819FA37A06CF9831630CDF4BC76FD1F5A193274F7EDDD23DA477BBA412DE51C93FF94FC9298053563982BA6EC3E7CC6D38D47D8EDDE1290808398ED4B43424A549B138AE5960634666656666D7D25BB5FEF2226B3F8CF756E16D7F0D6684D561417423B68549111123816548328C8B2F6147C5154467E6A2FE21F07EE3B1964DDFFAD9B9793CF6BE25FB8E8D02C8C7DF53799BBA23FFBE4BE5F794B57D4FE55D6A1D3EE6F22EA5B477A8FC1B957729CFB847E57DCAF0EED1319FFB81A65F3EFEA184825D4A3D8ED7051ED620A7F39EC5F538D0F839AC6ABFC466E535ACCE3E05ABA078F884C76081B85960634666656666D75AA1BFFEEC422B4F8C3B5A8E09747172681D6645B54047D28C77133AA093750EFA8AABD8A2BA06B7D4029A0DD4C24BF15156413345BF7152C2F6F0311B4FA58F325E48799471DED16F9CF2B23D7CCCC689195B218D751EA29BE99DC09A7564E73127E914DE4B3C8959D1AD021B33322B3333BBD6CA3586ED8BB61FC1585F35260456E36DBA695A5433A6C4B4634A4227E6649CC3D2822B58AFFA5C58C63E905E224C2B9C74F49B4C26430EB57E2E4D3FF4BB9B668C1FA87CC0C6C7745D3847769F32B61E2EFB8EBBE99EFB74FD873EBB9F9999D97FEEBE542AEDA1F26F741F9FFF914B69561632B364C8C8C8E0ACEF274B4D4D154AD6662AADC792FC4B8276666016666236666456666676ADD5069B6A17593861AC1F4526A80613C31A3121A219DA116D9820398577D2CE617ECE157C587A035BABBEC2BEFACFF1A9A211A2A454C4C4C4402C162334320A1E2979708E4AC1860D1BBD284BDC4C99A3257DAC6CDCB3678F31A5CCA6746E039D33DBB973A7D18E1D3B36585A5A9AD2357D36FA8832A272C5B66DDB0CD8ACACAC56989B9B1BD2793DFABDC2CCCC6CFDEEDDBB17E92E5DE6E01C978500452DBC82C310417EC3C3C3211245202A4E0237EAEA26A22C412B6B66EDCC20B01013B33123B33233B36B515AA85A64B61F63FCAB312E842214DE8437C35B303CB21DA325A73129F51C66655FC632F96730AEFC02368D37E17AE2AF7057B5E2684C02FC6976F0090C4644E30504577662F8C871069486FEE151E9EA43F6F4C3E7FF5B9ADB7FFCA6F6B8B5EC23A2E9027C2263E0E3EB0B4F2F2FB88545C331AB0256AAF3D85C715DD0CA9A593B33300B33311B33322B3333BBD65AC38FF216195B6374600DC61D6FC0A8F0660C13B56178F4098C949CC1D8D40B9829BB842545D784AD2CAB3A9A6ADA6F2180DEB8218DE71198950FFFB824C4765C81A8E102264F9FB373A0A640AE9B7D484EDD80AF2419DED17170932AE0D97059D0C4DA58236B65CDAC9D19988599988D19999599995D6BDD2693D4C59BB66174501DC686356158683345AC036FC69CC2C8842E8C49BD889914CDE58597605A7C1E7B555D70D674C1AFE62C22EACF2052DD08716513C24A6BE09D9A87B90B759D072A005C37FB10A9EA212AAD427455ABA081B5B026D6C61A592B6B66EDCCC02CCCC46CCCC8ACCCCCEC5A1B369945CFD6F9100B9DA231CF2104EFDAFA61DE1E77CCDF7608F3CDF662E1460B2C58B51ED366CDC7E0A1233168E85BD01E3B195366BE87A5AB36C0D87C37EC0F79C1F56818DCFC227B2DF6381C1DA80070DDEC837DB14FF6CD1A580B6B626DAC91B5B26641BBA98DC0C24C021B31322B336F30328FD2DA6462796CF8A84918AA3D1143464EC4883153317AE20C4C98FA2EA6CE5A8859F39760BEEE0AE82E5F8BB59BCC616AB1A7D76AEF81077B3F71FDD6C6DEB96B979D5381E5CE7D87F4F5F5C7FF569FBFEC8B7DB26FD6C05A58136B638DAC9535B376666016666236666456666676ADBD4E4E43E62D5E9E3F6BC10779F316AE902ED4FD30497799BE5877B97ED4FB2BD68518995915D97EE2FAFDCAF5E60F5C7C23B0CBDEF9D337464C7A5B6BD0A03FD10BEAD9FFF53A00D933ACE58D116F4FDAEDE0729835B256D6CCDA9941576F4D0433311B330AACC4CCEC8FAAF4E957078F30193C6CECCDD7DED0EE5E6960029F90781859EC87C3916358BD71ABD0DD5E1BA2DD3B72FC8C324747C717031213C78427A62E4CCACDDD16121FBFD4C5C5E5995FFD1B60FBF66743259225EC233C366131FB5C6660309835B096B7C64D81FE467341236B3D7A3C012BD799801988E5AB57078D307B5483FD5334D9C9F805FA2F8E9E34AF71FCD4D9BD0B74F5B075A72D3CFCC3102A8E8738390DB1A9E990E617F4E61597F61629553D4A7525782384D7F6559A6A945059A054DDF41689A63FBC80F9735B9882F9B44B48F8BBF9CAB2AF4BFA7C08BEC827FB660DA4A58735C59136D6184AD3B3FBB1305858EDC3FCF7F5C02CCC3472E4C421CCF8F0D4FA93337F72420E6E35B4B6FDA8D454F754D6D609BB37F5CDCDC21695B2A25258A3E71D1A754DADB0EEAFA67BD454F28E4E5D4B8BB0CDA5AAAA42197D42ABAA6B212D949FE6256C86F819ABB54FB904068E9216C9CF705D429D5437FB605FEC53DDA741D042BF591B6B64ADAC99B53303B33013B311E3372E7E7EEFFF5B00F61E38A01D9D9872BF863E76EA1A9B04AB6D6884861EE68D090D7D5757D53508DB59BC6951462DC11537B5B70B5B5DBC01C2F7F006480D89AC6D6E416B67276F6EF606C749522323231FFB7DC14BE8C112493A3FCB75705D5C27D7CD3ED817FB64DF424369AAFBF610EB058D1A2A05CD748D19FA79988D19B7DBDACEFDB70070770D95C41E96524E5F2BECD8B40A9B94BC63C3C75C213BE39D9BCEB367A1E9DBA9E1ADAD662ACF5DBC84EF6EDF462539D7502B64D387892453D62B4A4AFE363836B6C2452C7EE57103B0CFC3E3CD90B8D8327E96EBE0BAB84EAE9B7DB0AFE63EDFAC81B5B0A6C63E8DAC9535B37666E0636662B6E362B1D7C3ABC6FFFAA279214BAEB8A3A231C63BB8A7BBBA70F39B6F84EEC4BF79EF8EBB19FFBE7AFD3AEEDEBB87B3E72F08C2B28B8B119F95DD13959A7A3324264EEE11106046DF02AF504EFFFCBF8EBBC719FBFC0CFF1F00D920CFA020D360AA333225F56BF6C1BED827FB660DAC8535B136D6C85AF9376B6706FECD4CD972C56D632BAB51FF715F80C7EAF1B838DB6CB95C184BBC1BCB51BCF1C5973873EE9CE088235C5CAE8654AE40726E5E776C7AFAF5E09818A9BBBFBF3E89FD733FF0CF19F7FF31205417FFA3C40A0A88F181032FBB0705E987C4C666C466645C670DAC8535B136D6C85A59336B67066661A64051E4A17F7D313F6ABA7941A6507CDB44DDEB1475ABC25225E4AA72E4169722A348FE202E33F342488C38CA2D2060216F79712BFDDAC08FD1439ED671D1798603F2314DC3F452D309114745C549A51759236B65CDAC9D1998255BA1B865BC7BF7C8FFBA33C42041D1D1160A75656F4E69E93D8954DA19141DE9EBE4E737753505879DF6CDF34FFD8E36469EEEDB437CCEC4C4E48F9F7ABB4D0F8C8A3CCADA69B8DC6716DFB0303BBAFBA9C7DA1AE320704F30B4B3FBFF7F6C68EA3CF36BFD4BCA6F9521F66DA43E67C70C643AFF2139FB3B95A8F1E9CBC720C20000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (60,1,'Network_(96)',decode('89504E470D0A1A0A0000000D49484452000000600000004C080600000092F6B2750000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000029AD4944415478DAED7C09B85C5595EE3A63D5A9E9D670C7BA63726FE604121242184212E6061A4124088E403F501FEAB37DEAFBDACF07D86DBFFE7CDDAD82BE4F6C5AEC16D0061504154184080801131230818490DC9BDC79ACBA359FF9FD6B5755B84170448862E5DB39E7D43975EE396BF8D7BFF6DE6B4BBEEFD39BFDB9E88A8FC57FB1E5C799C5AB56E3889F47AAB5EA87F77C49FC8FFDEAF772FD84F8A6FA0E12369ED8F3ABDFE03F7EBFFA3B8A6D6DFFD0C04BB474E1B22F7FFF3BDFF868ED8FBE298250E928F9ACFEABB7D37EE358D274154DAB6E03D86ABCD5C5B18E7D23A052505728887362CBD76AB2B84ED7142ADB0E15CB36154A36152B68A62D8E4B150BCDA672D9A20ABEEB5B3142D1916722F8D3ED35E18FA2B96F5905A8B0E6B0A11FA900DE42D0FAE17D9502D80F42D841B1AF08A5E8AA22AE295A10BEE951C1F2A8687373A9846D09DB32B61534D3F5C946F3AA9EE1CFB17EE92DED01B22C41012C6C8D54343DF00A45CCD906F5AA02EA56CFDB125BBA5515FACBC2F7ABC2777C348FAC9AF06DCFAFE215D5F0EA4D829FA34A018A2C5324A4BF42D8733D4115CA1190C40A1282AF5A7E81A186856EB9420925B4AAD0D9F27DAAB0F021746EB6CFAD1A0AFC6AA8F0DE54CF3F6A3C40925E01412F0BBFEA15AA10B60A4852A00455558502F235E1976AB0C3DB12E200430F2BA152B378ABB675D05CCFAF86E92321E82DEE018A4481390AD0EB4A105004812B32E96493A4E9A406759280FB858A538319E03E7B0060289A3D4861DBA6E7FD14F09EAA96EFB2E089A00FB1F504DCCB75AEE4CD81A237DEF08E1E0F401086602346004DA770889B4606339CD20C25FB9FA293FC317287F621E8CA02DB05ECB855CB678C2F5B16A54A13F4811529BAB661987A8B03645B262CDFAB0ADFAF0A5FE23F26682DFDC5030E474249A610041E10945321958504C12732076979572B0516F4803E9A242B55E157EC6A60151EE0561BE3BDC9DF95CBB4B0BB9D3ED94DB4676088FE6B7F99B63B4D401C89834D3567F0A47A4AF01705088140360C3B6CF17E7186E2B383B4BC274DC1C66E71BE52A940B015B29C20F910B2E9F8A209CB175B3428C1E43CA05812206318062DEEE9A0EB7AAA8AB8636F81B63929F22445B89CFF9718F00A2554B2D4303D4C2B58F0ADF30E7F6FC2F28BC522954D8B4C5F23DFAE2BC015F85E06D673430A20026D01D772762C41ABC16050DC8315F1595644FF20FDE70B05F239401C1903DE1CE83D1A04EF9985404C93E8CC469F8E5F340F1C3F70F89C055C67E1170A0564B215725CA6932CF83AAFF74433996242EC15E101C5C38D9537F7B3785E27BD67698C345CED794778C05BB72B420E44CC9CE5D31393156AB5C7686157BBA09936D84C5D90A55209AC06420F3BE409E14B357AE9D5A8A52438BE83E352A928380E7B808CFC829BA669F4F40B07E88E43442F79493A5609FE25081FA10470FB48EF32CA64C668747288DA9A1A8FB0646EA0F864053CF29C1AAD04BB719956FAD5EE37074A6025D5638004C1B312B84522114A450D1AC1F53E944BAE7C5464C2470D0DE5AE18339FA196CC216A6F691616CF6C66746A9A4633B3801FC4011C7312E51EB6FA5A2F684D7E90B708C4F9B2497B662AF4CD0187760F4F8998C00AEC696BA6BFEBB348772AAC9D7A2FA9F7170FC0C7AE94293EBA977A411F19EF5960D3B93C9517AD212DD94A9981FD640E1F204AB49003BB11C2F7B92BDA13144A9600395A8006DB57D1B063514E8B0BCEDF9F9BA40F8E0F506FCD138EE9EDA48F56FAE927072C72F079B313B1A342015387F6362D6A5F03F6D32184CF6D263B4BCF4D9529E01C22B97F886C301E5B8E100DF69374E80019F0020DA20BF91EC5198EB887B3E61555931E249FBB1C20E347670A1451ABF18095B061F97C2A8D3F4A4F5A26BF7FA986046F4D05AC5AB52A7ED9E5977FFAB44D9B0E63FDEC6C8EFEED966FD081FE4354866778EEEFDF4DCF020F80558D7475D207AF7E7F3536E0BB73CFD80026E49E78ECB1C7869F7DF6D9E25B1282F8E52FBEF8E2FFB171C386F79681EF82EB972BF6A1D1A927AEBEF653FB8241230471C54CCB8C978A8504AE69A898A5A855B122E57249A9403915FC8E19135F6A84C37E40D7CB8140B060048D5C281CCE0443E1AC22CBB38E6D1586FA5FE8308CC226284061259C7EDAC6630061FF7BDEBC79D7F5F7F757DE520AC04B07DFF9CE77BEE78C33CEF80CE8A6C4C247B66B6EDFBEED2BDFFBDEF7AEDFB3674FFE95BF89C5DA1B03F168CFBCF97D6BFFFA82B77F65B658A122E86B58D5281C8B537666EADBB7FFC7ADFFCFB7CA07A6A6062710649DB9BFEFEC7C8F71F9E5977FF2F8E38FFF3414A00938DAB0E113C81586962F5F7EF3AE5DBBACB78402D802AFBDF6DA73F0B991F197311FC2B72180EFFEE0073FF887B9C25FB8FACC2585E991DBCC4A698566285A221AA6CE742BF01EC91712B3D9D959012B1C4F5DC7BACC30D4CB6691E5269A3ABC96AE45070C23F1D181BD5B7FC4F71A1C1C2C43D0FF02484AAF5CB9F24AC40415F454DAB871E317A084F1356BD6DCBD6DDB36FB0D95C51B3D280FE14B575F7DF5C9809E07A2D168289F07D329971D08FDF11FFEF087FF6DC992259373AFFFC5AEA13BC787F69F655965719C4C355263AA89D21D1D946A6C46D0ADC607DBB6686C64982627C6696A720A34B6408AA252AAB57BE094D50B56CEBD27E0260ACBFFB7A54B979E190E8715CE11F00C26FEFE995FF8C2179E804CDC3F4B05B0F02FBAE8A263AEBCF2CA871B1B1B9335BAE90F0C0EDA05CF9F0C47A3AE3C2779E20E3AFE1FBC3F040B0F83D5A8541DBB9125D1AD5C3BA0EA6FA8DACBECC3B03D45915D5DD74B7A402B2206B8E27AFCA0FE9B4AB9224F0D0F35B5B7B5055801DC666666F2DFFAD6B7D6DD7EFBED7B2017EFCF0E824E39E59405975D76D97D4D4D4D42F848B6FCB1890969D1E2257AAE62B677B7A7690289572A9910CCA76259148F46693293A15658FED8D424B53635896B5A1A535440B2C65D0CA1601009DB14B53737D1F8D48CD4DAD4A8942B15C5715D3D1609C799D2A6E271CAE4739488C6C4B3F06FFBC08C763EF30C2BCF67E348A5525178E6C378B6E319B1FEAC32E1152B5674027ABED3DDDDDD59A39BFEF8E4A4AD1A610A85407680E99669521982F1012BB3D92CE98A22FA75E0A6C48CC705CEF3D6B24CD149C731803BDBC088C8C6313329DEB2727DDCAF50288AFB89FBE277DC6F3193CD887B70962DCB0AB57776D1E4D494CBC6C0CF954EA75B2EB9E49287376DDAD4F867A380B56BD7B622E8DEBA78F1E21575E1673299D9E1CCAC7CC686F5D4CD789E88D3A2BE5E028DA485F3E609CB5EB270012CBE19D6DE487DF37A704EA3BE9E1ED2413BE7C17AE3B11825D0E675758BA4ABBBA313C7510A1906F5747620B572A90BF70EE05E7C2DDFC3B61DEA48A745675D127FF3B895C752389E90A1841C2B81BB40162E5CD8F7EE77BFFBDE75EBD6C5FEE41500D69104F5FBE7D5AB579F5E4FB410788B3B77EFBE7BC9E2252A0F9AEC79693F2D85B04BA53225013F2EAC9701987B3D874647A9BDAD55DC2B1C0A0B905720D0DA9022F87F504C69090603A4A88AE8FF67E529F01E55AD6E63103EE048E40BAAA68AE00CECA742B12492B4EECE4E1950782F1855918D839F1139CA8950C2AD78FEC81F533ECAF5D75FFF47BB392C3E0AE17F1AEEFC01860786066C4B5BB76EFDFB96BE056F9BDFD19ECA82464E656600290EBDD87F8022E130CD00F30BB89E7FC3F8EF38368D8C8D93E5B854C43D72F9828015C6760BE772B91CCD026E6C7CC7D092634503BA72C52AFCD880AEE94C96032F277A385712BF9B2DE44522C74A321A62F1C77EF6B3CF35373571A2A672509F3F7FFE92868686F0E6CD9B1FFDF8C73F6EFF4979C049279D645C7AE9A57F8344EBE33C9C58E3FA956DDBB77FF1C0F8F80F2391685F73324961788006CB44B014FDFF0DD81A3C2E0CA144A10C61F94143309700AC37048BF71023D873AA3348255C1F14F180AD997FC38A0B683A10C816F94210F7E367D0E119E150104A42F0861794E17162D40CE70D3DD03955C83CFACC33CF7C0E3064D7C7204E3DF5D48F20765DBB60C182C09F0C0B4242A3E1C1DF06E17F1EF451245A0896D673CF3DF7ADA7B66EBDF1F477BCFD7FF676B4CB9DEDEDF4ECF32FD0F1AB5682C91834082B6F073E4F4DCF900CA574821571E34F07AE6598E1D1B2857D7DC2D2EBE7F893811734A692E27C061EC2F74900E3C7911330E6972B26D85552DC8321AF3DDD268E27A6A7C5B512F8EFD9E7FCF515DFFEF77FFF07D0D7D6E38E3BEE9A9A2748A79F7EFAFF81710CE3BDEE7CBD13B5D73D0FC0F3CAD75C73CD2630891F008F8335BA69EFDDBBF7C1AF7FFDEB57AC3EFB6CEDB8152B1E8C85C24B145C5DB24C1FFB125BAA059C0E42F0263C81B15D125308A9DADD8C9D5834420D0D3128D3124AE273B2547564C77504FEFBB80773CABA6BABF004D7A97A4200E79949C98A22420807EE203CC92C57C454454955F77DE79E7B4E7CE28107ECF7BEF7BDDF58B66CD90560680A124636201B59FAB948D4B6BCB28BE3A8F100B616087ED505175CF05D40445DF82E32CF1D77DE79E7D548FF670CCF4BEFDEB9F353B8385EFB9987DCCBF37CC9F7207199C5227A94151CC8F88ABFC33112236469BECC03B9D857141C7BB22F691AF234CB57F83B5FF170331F419C6FE2A968306C1FD60DB93BD08DEBAB9AE621481F4EB23C5DF7A23A4FF9223911F473F39B9A66FF63DF3E67FDFAF55741A1F7F5F6F69EC8FA44A2A69D75D659F7E09D4EC1F173AF57A2A6BE9EC23FEFBCF316BFF39DEFFC4132996CE02E0608DF1B1919D9F7D0430F5DBE63C78E513442D01FC577D3E5584CA2F171C6F2235C30130E1F3E0E3734F8343020F66185D5EF61BDFC194BA55EFEDDEEDD809B843F778203F8BC38BF05AD69F7EEC3D7726F1B2CFBF0F175D75DE74B2FBF447DAA0A3DF6D8639973CE39E712C0D1435D5D5D8B59096053E173CF3DF7A1E9E9E9D5383EE4BF0EF0F1BA2960D5AA555D603CF7B4B7B7B7D6853F3E3E3EFCE0830F5E7EFFFDF71F98F3B04EADBD219FEB7E8B6B5E9E277DA43C1F78E0813158FE8588650FB5B6B676C29B246C53EF78C73BB6CCCCCC70B63C75542800012BFDA10F7DE88EBEBEBE8535E1FB78C0992D5BB6BCF7DE7BEF7DD63F1ACA707E8F0F3F372CFD00E2C0C52015F7736F057B3AE869CFFBDEF7BE1F23289F8EA03CFBA6D2D0458B1635E2616E42E272529DBA8197E7E1C21F1C1B1B7BFC8DEAD4FA232AC11D1C1CDCB97DFBF67767B3D9423D515BBA74E9EAABAEBAEA36CE75FE20E8BEFCFD57DF5D2A14974BB2320B049C41FC9A42C41BF741BB2CDB3AE498953D6363837B5E6DB002DC388687F81C68DAB5F5C95368C5C71F7FFC1370DFAFEFDBB7CFA43F930F32621DEF79E909279C7033E29151EF4185A1DD7CC71D77FC2D3CA134F77A90117DA2682D0AC9EA125D53BB24454D2B8ADC0A28E03EA624C25543281ADAA55A15F30257526523D1442A1217A79CA7CCCC0C55CC0A39B683064A184ED089276F7265557391CE9BAAA294C0F34A9B4E3B33B871E3C636B6FA6A3743C97E64CBA30FFCE2E9ED7B90F884E1ADD69F2AFCCC25171D1D1D896473DBC29DBBF6C8C57265CB19A76D3AAB3EAC79F2C9275FB367EF4B9B4F3BEB3CDB737D036C2B80CC5D75C1D9980CDBAA46AA8A4C1B794E2C9922351C014DD6A9949DA04AA9325FBAF45D57996EB4599FEC3D9DF4A04A91A046F100B243C54780F048937D52407B657069D9B34982922AC55972B39374F1A675B55EC78248EF1F78E027B4F397CF53B5EF1D8445D53D4D955D054A43002B2B925274C99B181F1ABA66D7AE1D3B8F26412F5BB672656B67E7CDAA243723D30E83B11AAE6BEBB6EBA88EEDCA753B0A23D35EBA6C116D38E524D16DC239027765DCFBE4B324C75B89F400815293E6BB540E3690EDC9621A4DD995285BF145358F653AD47CE0A7A4E4C72D5552145721571432F80E9211DB27983A8590AA1B419D42019594C2149DD9EC50FFB44976F702F2CB395A15EC16AC410CA423CDDF3B59A4E6F3AFA6732F42DA2FA61472BF4B49469223DBE592E6544A11DF2C375161AA67DFDE7DD7E05D3E78342920572E5FB360E1F16BA58626927483946088F4902106FB39290CF316F2E08E4017EFB76F603B2D9615D195C14A387BF552DA365DA1B055A4C56D492A942A747F3944B61CA462C512D59B268CD71613883D61DCB20C446198907CC7E07996B2572DE391A008C5C5B1838B148F74D3A4B6C6A4689685E4CA3329004D8BE144A4F8FDD379B2E6AD222D18A36CC9A2595B221306634B0AD99A01E54690E8E09FE25032DE49AAFCEDC6A30D6A14596D94BB8EA3694B41F6AC891A8580A2930951953C8D0A0E90C157298EEF0C2843597A12F5EF798CE649745809A7CF6BE2AC43DCAF58E2A9F41E9972B542A7DEEC9A8C65C7E2EC1B1EE0E36F38151E0F111720F3145D005CCE2914A1FA2265AF7F909888297D35BA49D33928A47D2929B106CA553C788F8C6B14381DB08F58A98E487F24B7448A1E265D93C89310848E36AC274A7075665052C433CA768102A1040582D5B22935009CC0B982CF90ECE27A971CD510833EA2E0A936945A9F0ECFE9BCC553E67DBF561AEB8989C4BCF5B838C4B5B883D154C1784C2B97235D72713104871F49B07AF600094D81125CE7E5316AAB36E254673D4EB948DAF38F53361827A9FB180A20602B9246161ED28715389943B4362E51634B987E78100F2B4781A3A1A34E01A150B05196187615D22A193A7F7E901E1D1C232FD046C168B256B30638963C9ADDF1330A6706296A04A8287A65FD39E3D8D58960AC800A8C999B103E0C9CE79739F85E87F2CAB92CFEA661028ADCCA34588F86505184AB2962D671D55D8815C01AABC9BF3E5DFC65D6535582592A935F040B4BA629184B5009DFB993C3B45029D2BAB5EDA2AB796C7286741C4B9A4A2DCD2DCD479B025ADAD2CD92A610682305F1BECBBB9AA93B55A21FEE1EA25250A660A41524852B34A1A0BE65547E7686E4525EC4C1B9C2AF4F89171E00E3B5E4AAF01DA44336F962367740B22993CDC25B8C8A0A7829F3746E83FBCE15836C9F2108C10517CA3528F2B8CA10EA9B2B74B10FC11778AA78CF326A58BC5ACCCF2C8E0E515B698256F735523CDA7AF805B9B7D208684201B196D628F7ADD49334A67AB5ACF3F0B69E89CE3D3F971ACEC9548FD87F25ED7DC579B9B67BC4B5BC7FE1E55745785C4294C3D63A9CA3E1105DB2663E3DBAE7208DCE7814ED9C07284220EEEEA364CF7C9AD9FF224DBFF014C9A2764D390C433C2DDEB25D3155DE21861F7EFFEAFC55317715B2A8407EAEEF94A5CD97BFFFC95DBB76AF4B5EFC099A541255BCD3ABCB03E8A2101A5A9F1DA1FFB5027807A862EC67C1CF14CB3466345378C5097039F8CFC420C5F393B4A23142C9865F1D4A3D383246F7EE2F9364C428B7F51EFBA5677E3EDF0318C25D916AD84A2C1693CBE5B2CD93A5344D93A160073987C2BD9942818E835DD9C26F74961FE8A0E5BAAE5E13AE83DF6AA083DCD32903267DC3306C6C83B8C6E56B9197187C1E7F8B7B4855DEC72999B7F85BEEE235A7BE145E7BBEC683365A7E98AEDAB0E288E7DF7D70845E0A3453ACA39B02D1185520512E93CD178006FD7B2935BA9B7A1A0C865791A04D154CBAA3D80E0FD0413BC132811E8EE588DCAAD1CED2CCDD9F07F55DBA55C5B39478048901CA5725461D92FD6A4133BFBACC050D683C7ECA9E325D28D3F366804A7D275224DE406E3E4BE9E1415A9BD0A9A937FD9A2E1E0D05E9D8680696E290BD72A976CE49ABEE9863A475836421D70D5696AABD9352DD8A49D45CC8A26F9FADB9762DCD7104794E17029FF76BD7F3BDEAEB411CDEE7DFF179DE164D4B538C92C85F0278AF5FC913BAD3949ACED0CEC117C9ED5A48A61AA232131708D84C2FA47D607707475EA2C55387A817F4B404AECFCB2254CB633D21578727D3F31F00311143A1B252421E201744CDBE6789A2059E53CF3F92045FADF610EAC0C5D16C86764C5A34D004BAD991A408AC9E4B4597985374DAFCDF0CE9C9789C4E5D591F0258C02FBDFEB7E887A1DFF59AFA711DCDEAFBBFE9BEDE9CEFA41AD9F895778886691D68F7132FEDA26CA28BEC505C1484547C408E14A06CB28FC6ED4EDA9D3D4409AF440ED0C316153C92983AEF897E571EF1B0C533C88A56E472DC827820F600994411B3274816090F607AEA36B4D037FD349960EF066868C8235114C735BBBBD566F2F7ECA1755D4DD5757DE6BCC86B09E7F516FA6B7C27FDAE237FBFCD7DD9D3D646257A7A7837ED8B7493136DAE566C7ACC22252804596FA49386B87C4A304847F4BD333D17B5546039122828DF5791E43CF03690E703A9E601F5C64C57AAAD7AC486C4CB01F04219660D964483C6B44882F6AB8B69F6E07EC0101802D7DF7ADE6F14E85C0BADC7C857E9A63F1C2BEB71730EE4F81C43E6DEEB95963EF7EFBF468C9EFBC7A4390FF3EB0D01572E8F21512B0DD39352904C3D8A9850E5FC2C6C2E183720700459C8D117B21477976B65518020A100050AC07739B166826BBF6C37B5E6F26F3C5C60B377284221EC15961830ACB6009465207D2F2101792A334C0B2AE3149649CC6E9B0307821970353C13119ED5E03B760901D09A0B191C14B115C007E1F2D0975B8F0DD8BA2CC47A5D17B67CDE9B132F045966A5F0FE1CDC17F7C23ECB86C79E19F71D3E4F62212E989E6585242D90921495473EC5A42D5D918F30A4BA6244E11FAE73F11E998A4A4E58134629A8A6E0FA72B5FF87C7A8F90504ACF862ADAFC34EE9543D40D6D45935108C4E5721C8A96AA8E601125793E3512A1E631C8119716C90448066C1333DD599668972514053244E722844FDD92825879FA738E4E158D5DE68A6681904A5996092145C971FEEA77B6EFAC7CF26E30D3F85000C0883A7A36BC8B2556634F8C03064FEB1C6FB60363CE8118282141C17A0B8204FBEE2715E5C8743A5C2F7E163BE178E232E8F145B5609D785715C579E24BA5E702DBEB7B91E014C2B3C399DD9B8F9939FFDBCD1D42E16812A1DD845DD51B09772F908C1CB9A2EAAEC47601BFD5A9C2A0DADC886836038D5257038C9125C9F2B36DD9A1D2B92A865F365B9CA6658216ED5038C6030A3C61B2213C20245DF8424D6661333066AB38D79310C485058BE2B342A893F26D7561EA9D6E656536D1F1960A0B9830AA0B095432F50CC43266C56AA9A0F8429BD6819F97A58CCCD711C257BC10517ECB8EEBAEBBC57F07FB966D97593A9EFFB35FCA82D2127D5CFFBD75F7FBDC413CC38AF98CBF5E75C7BF8BBCD9B372B77DD759757CF0BF8379DDD8B56A5C0F1A3E96ED2E028B9C224E541ABB9709085A1F1BC24087FDA43436E6327D2A41A09E2B9112E0B9FBB25840224AA765254636801FF4555A966D4FECB24CD75448F712C9118531BE2C929EE4E156E21CDC12A89036D4D218C67D549E0E28FF0BD74912873C9289A5ACDF0C45260604791D64E0251A722289B34F81279F0045F0F89E5C5A0767282210A868D040B7F6EC255DBBAAF1CAA7DB5FD39EB3C8843DCAB6EADDEAB5C7BF8BB3BEFBCD39D0329E27BC3082434402827619A00031BC2AF883E3019A4A31C88919DEE232FDE82C78F0AB4F6B8D7D87785D5737075A49769A6580E87CB6081A6150846AFC91F4028869D25A7BAE84834DC30AD061084559E27832FFD5A2AED577B370E339DBA6788C08CADCA7F40042AAAF25BB1109227AAD545FD2E29144E36533412263391A4E29E674943F2A2C3927C5EF12A18E084A5E5A8E9078A465BF44050F4802A781F239E20676A94BC708CA48E5E3212AD148C355209EF5741528537159EEFFAD58ECA7AB5B1B0FC3ADC54A917A01AF212D39B6A390BCF3F82AC79E69F1108E65528AAC8B3D0A0F22A0392ABADE2D5D6D511C7F5205AD530C7B6FA32927EDD13E628C2E120C418178E521C697B24D5480ACC460B28E0D74876CC22B03678D47449EB81404AB68AA49A6564F52A35F72DA060531B3413262996144BE21461E22E8F107A556FF7EBAB6E493537ABC1B6C7B2F26B4BE1F03E2BCDABB222F125A30A64CDAB7EB1EC5547F18BDC07528720B6700EAA8201D5163662E10720F4A8542124F8682E05CA0E057C9B02482A788B241F7064236654A8CCC1B752240F186A166629CB530DD93D79B6F3E0A078F0B6F68ECEA34501E9D6CEAEDBFEFE33E2193BBA3AC55A451CE7E2A9040562713138230542E4E94172159E711D109D768AA45350D1294C604208CE256043C553298FE38AA09C1C8449C0B4C58330A27C07F2B46D31439B658FFFBD224FDB2E4F0C517AF8299C34C92E15C0ABCA24C12AA8C482CC5361629486C646C8345F7D6A24C79100DC380078D1F580183760A6128946A9A5B58DBABBE75153532B6D3CE35C71FE99ED4F658E160574F5F666DEB6F97231933A3B3341531393D47FB09F5ED8F11CE50B79D10BCC9931178698C8844D100BF7356A9779D4ACB1B98D922D6D241911928211F2D080BBA419D56D69EA90983ACFB297FEF9E69B1BEFF8FA6D93C343C387FBFB3DCF7BB5C44970F8FAEA231C1B14B0237047311A146B68A0385A2295A2643245F1448A1209D1EDEFE77239B3522E8D954BC59D13E3C3DF7D71F78EFF7AA3AB117FD38727142F5C76DCA54D2DE98B43A1F0CAA0116A8D4663017EED4C6686B29969315961667A8A66B3B3349B9BA5423E0F0A6A09CFE66241DE72FEE3BD4622278BC12AD17F481D1D1D74D995EF6A5275D3CC4B72D08BA5DA645EEA250221EB60323CBD5B17EB770644650A0B9AA14A3FBC62A1EAF35614C9C99C247925686E1A1C783C3B3D7D707C6CF885D9C999FB7FFCE3BB9FFE5398FD503388DB6AEDF067E399179CD0D6DE728EA66A4B3445ED6E696D6D694BA753C0E5100FF821E393B844D6761C208B2BBC85EB11B854CAB4EC6A399559F520138D933B5160A2E89E903D6BEA5DEFBA62C1E8C4C45284972297ED0614351F0C8673B87799CBD9EEBBEF3E4E8A787EBCF6AEBFF9F0926B3E70ED934F6E7D9AB63EB58D12F1065AB76E2D5995D2D7FEEE637FFB7FDD805928CA729EC6C7AD5AC6EAD29FF047AA67A4E9B416B6ED986A05C29FFB977FFDA46E84AEDE0A1964E00DEB4E5843274206377FF5CB27DE7ECB4D2FF0D8155AE5FCF3CF0FFA7E24140C2A463E5F8E916A476D1E20F7BD707BDBBCE7BFF9CDAFEC1353136FBFFDD67DD8EC7B953F1E4522B9B0A97DC1A780246BE157A99DCF3C1311A53E8A2A309E3D8DB5FDE29E3D57A7BBDBAE6617D570ACA5FB0A9A6E7CF9861B6EF834BFC0C0C0805A0C85D4B05E521529212BC5222BA6F4B5AF7DCD7933E70E5D73CD351AB032E45A16A7CB5EC8B29C5273B3D30384C6B3E9EDF3977FC6322BFFDD36CB515D8F50B2B591F6EEDD438B972D17EFCE326059B04C766E7FE6F1A6746F0164661AF4E5E9071F7CE47396551CC1EBBD66C5A5F46B3ACBE4E6AEA59FB12BF9EB3CD715FDE6CD2DADD4D292A6968E6A111DCF0532ADAABBB97691662646289B9DA1703442A95413B575CF2B9D75D6861B930DD165F0A64E5D57D3A54211F01A324A9655C9E772FFFAF4B6876EDCBF637FEE91471E71DE48C16FBAE106B569703076D669A77F34146BF85848D782A552B91C8D46CA15D31C9514797070706860EB933BAE1C19EC0FCF2030178A05E80A310E4156512362E08A8B0A4346003270686AF4108D8E0ED2C4F89888A3B2A200A6835F9A187EF163BFB50238556F6D6D550F168BFA2F9FFCE52720AD4F5815080D71A1A9A5899A5B5BA8AF6F2135007AE2F19818EFE54557B9D488EB7A6391A8084CD17044ACE10398140F98CDE54559112F519CC33EB325A6B9B3C5527EC72F9FFBD0F32FBE78EF8254AA50CF8EFF589FCD9BEF52F4D6C7C20B17F45E78FC31ABBEDC100E47B99798CB58E34816399872395303880557E1D4A6AC830D15441CCCE70B6201719E76C2B900D7A165B3399A999A16147B787898C6C7C68561EA8170A594CFDC72D6BB2EFA54607ADA1D5BBFDEB96BF366EF88E1D5B90A6077FCABB7BFE333C0F54D08B69DB22427F2F95C080159C9174B1207632E012A8386251BE2A2E6B6A5B189F2F084EECE0E9A989C12FDDF3C6C198E4444311DC78832E89D8154DFC06FC72627AB952C3EAFEF69F2CC0051E3B5B7FFC0C0AE3DFBAE9CDABFF7A9743A5D79BD1521DD7083FC9EFDFB8DAEE5C7AE5BBA68C12D4BE6CFEFE1F7602F366A3568FC9C5C086E227072411FCF6EC8CE6691D14711098B1483517125660BAEE91F1CC27188C6A7A6208B06CACCE644F913FF8E872BA386E19B8EEDC6229192E7F919DB7506B3339947EEBEF3DBFF78EBADB7565E7576B405FE357068E04AAB523925140874878D60CC773DB56FFE3CE9A4B56B907848A09A31C1F9B9BB95B9AC6957A3BB8D88CFE3A95C66CA85D7CC93D945792C9495C28AAE17D1B175956141F158547804CF9D3C66F1A29EB3379EF2D393CE3AFBA765595E76C5155704E70C45FE214154E67B7D5292969F71E1453F3D73C3FA9FAC5CB2B8476106071A1D8F35084BE76789C268D8C0D8B21D5E1213EFC493B45CBC6B18EFC4EFA6E39DAB7981293C9EF19F272C08D9C462829E9FBC66352DE89D278192AA2C432040B759B64EE91F1ABC12C289CF7DBE23EA03A2AE5BEEEFEFBFA7ADB9F5433E70BF01378CC38227A0656E6B8E5D29A8E9C8E81805E10145517A5A14383801CBE6F2D0154B96D0A8374EF3BBBB45311C9F6397E6C19C6160E3A2F9BD343832821891142BE18A7A24BC40235E0E2F23CDEFEC5AD7108DEDDCDF9AFEC687A3D18F4180F93F24487FEA9FFE29DA986CFA425F77D7FBD6AC58CE83FD1485B0D913C54250B8755363A398E1D7D3D12E9E990D84BB57C2015D78434F5737ED1F3828E682F2360642C3349DEFC59D6C3C4B901799EAEEEA4256DD4ADB76EEA0E65423259045F3350CB953F9BCBFFF40FFBDBAE3E45E3306B0C55D79EDB56DA79F71C6FDBE651FB364E142516FEB894E39A5BA18062E9FD7DD4563084A0B7BE7031B8BF4FCDEBD026AD89D93F104A0294B6B561E4BC3C0425E16A008B764C8D1785D1F58521384CF2EBC08BF1F1D9FA0E94C8626A76728C7F38DA02C45E6711377746C68E87C2A959EFB7DE1E8AEBBEE5276F5F71F9BEEECF8BE2CA9692E3783450A413643E1A94482DA5A9A69EFFEFD34AFB35314FE31D470353D930E2E89E5B8956E69A16DCF3E4B4978CBCCEC2CDEC110F37A962D5E2CEEF5E2FE03D48AFB0C1C3C589B45288958C2F7E0F77DE145104C4D796ECBC30F9F77CB4D378DCCED9DFD95207CEE473E125898489C7AE1B9E73DA0F9BEB416EEC4D78C4F4C88079C15C1342816BBE0E50258A81CC07AA0FD5FECDCC9E39CA2EF88939304E0AA1978C99E541FD81887E246E009933359B1C086984F2391639AE5F152A9F40BC49C47860E0D6D81754E8541E76EBAE9A63F688A3BC34F2522274391786367AA6D2388C3A6A0113E3EA0075B20059547E7DAC0D81A93716A07C1607CAF23DF6C2E27E25A0642E71E637E0CAEE2E7B2DAFE43874469ADEDD83480E0CB9377B9089CA18CBDBBA5B959DCE7E96DDBC89664FFFBF7FEE0DC9D23835B1E9983FFAFAA00F682F77CE0034D679E79E67DE180B1B633DD060146C583894535AAC37EF4CBE75F1033E4B8F49FABDAD3BCA643739398BEC2F8CF41991F68905901049D81E28A5014632F946396CBC5C1522EFFC44C3EFFF081C1C1A734CDC96B6494E19F651A1AB2EA8326AF1FFBD9AC20FDD7717FA3E23821CD3723DDE99E1322C9E4699148E4242318EA945525E003FB99D1F1DCA6A6C61475A5D3C20B0EC26339F64560FDBC5ACB083C97BD890D8D3D62F9D2A5549F26C34830897766583A34328AF72E3DFDE0E38F5F78DB17BF38F62B13C75EED1DF1B07AEBE2C527C00BB698F9BCDC377FBE88011CAC983E368015F0E4231634C311BB234311AF7CCEF16104F86AC18D1947996A02474BA562E1A55C6EF6D199CCEC43E38383CF3B86515059D8D96CA5A7A7C7BAFEFAEBFD372A21AB95D3CA05D0ED0494115414C3B3ED70537BFB32C0E3E9D158C3A9E170B84F0B04429CC7339DE6053FD2B0EA34BCC4322D114738E8F60376583185DA120A1CD778B19066C495970E1C203D12F6BE77DF7D67F4170A4FFCE8C61BCDDF2A11E307BCE2C31F6E5C7FCAFABB3AD2E90D3D6D6DD4058BE6FE8CED809993D7AD134CE0E91D3BC5007BA158AE4E38E2411BCFE1154766F3B9FC0BD97C76CBE4F8E44313D3D303BA24956C45295963639565CB96397F6CBEFFFBB0A5EB2FB9441D49240C4B550D39E08712B1E69E542A7546AC21B61181798961841B90F1F24B8AB1CE7018790D88E4DAD5AB4462FAF8935B69CDAA95A2C3EDD0D0100D8C8CD1F0C8F0CF7EFEC4CF2FBDE54B5F9A7835037BCD4C9873022D153BEEA2F32EFA79666A4A5977FC1A4214A73C2FA00D7AC643759C7E9B56C543863895CD6476224979786C72E491FC746E0286539AB5AC72ABAA56DEECEE86DFD74B56DF7CB37AECFEFD413B97334041428148A4A5BDAD6D533C11DF148F275622D96C84B065EE05E509084C59A3C8717AE7F5D0D66DDB29D1D8E47EFFFB776D181B18FAC59D77DE69FD4E5D11FC79DFB5D7A64E5D7FF27FF676F79EEB89C17787AB5E9C5C2E37329D99797A7636F3C8C8F0D863B6696681AB65B50CD4C7E7F5C6EFA345211B376E543AD7AC0918BE6FD87ED9B02998E84DA74F41E0DD9448A5D6823EA7434648D5797A0B7CE4C0C1FD3FFAD9CF1EBDE29B5FFDEAE46BC9E3D7D6091F6A6A9A7D76FB8E8F40A6053418F9ECA307C70E6D934DBFA019360266ACBCACA1C17C23F1FBCDFAD4DEAF5E645EACC5911129167B71D7F0F0B76D2A1BB2ED453BD23D6BE2A9F87A23108AEFDAB1E333CF7B5EE6D7C9E6374ED9BBE1861BD4919191300F5FB506021560A2FD5610F8EFCBB40AEBD7AB915DBB82091C6FDFBEBD84F66BE1F7FF038B84A8764D512D380000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (61,1,'Network_adapter_(128)',decode('89504E470D0A1A0A0000000D49484452000000710000008008060000003CB0866C0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00002E2A4944415478DAED7D09901CE775DEEB63EE6367EFC5620102C44512104110342829162959174BB4A8D31669279293942B152B4E4A652B4795CB7139716C9712A75C4AC5A25C8EE492CB2E53A22E8AD64191020F48E22188007110C0E2DC037BCCCE7DF4F499F7FEFEFF9E9EDE99DDC1EE425CCBD34057F7F4F674F7FCDFFFDEFBDEFBDFFF5A721C07BA5D245CBA39CFB9918BF696752FEA1AC093F8DA163F7E7E0FD4CD02A20F3C019C74F8F06149D334A9D168B4201589449C6834EAFCE4273F11600AE01C3FA83D40377E91DAB5693BF0F6EFDF2F57AB5559D7755A954C2623D9B6CDCE9365D929140A0496130A856CFA8C80DA04ECE9D3A71D1FA81EB83D306F2288410051F2E4A5A52505015453A9948212A81A86A122400A7E97BE4F5F711445B151422DDAAAAA6AE16A974A253B1C0E5BB8DA8944C246406D3F983D206F028801006592BE7C3EAFD6EBF5502C160B21406104304C5BCBB254943A5980689AA6851248209A780EDBA2C49A042882686227301148737070D042956BF780BCB920320077EFDEAD94CB6592B83082184150A20852144F89E2DFA3A84A435BB66C498D8C8CA44F9D3A3587A0DAF83713CF31F16F069E6FE0315A75045B4790F5783CAEA3B41AFDFDFD264AA585D7B17BAA750341F40148F64FC966B321029040C3868FE1F1388291C0F3E377DD75D79E23478E7C00017C07821643A02AB55AED32827E1155EFF9CB972F9F7BEDB5D7AE20701A9EDFC0B54E2B825B4769D4F078637A7ADAC46B5A3D69BC39202A1313132AAAC030AAC0081E8EE3B1041295D4030F3CF04BBB76EDFA28DAC6BB56F3191130C45EBB8CD7388FE09E9E9F9F7FF599679EF9091EAB2288F5818181C6E4E4A490C61E901B08A2EC9742FC5B6CCF9E3D63F7DD77DF234343438FA0246EBDD11BA094D6D1364EA17A8D7CFBDBDFFE373FFDE94F5F47E9AD9064A23A36D03EF6A4F166F9891FFBD8C76EDDBA75EB6FA304FE0A97C61B5A90C5967053BCE5965BD2B8EE45750BE7CE9D7BEB8913272E23A8A462F562B1E849620F8A0D0611A5C679E28927AEBCE73DEFF94BF4075F4466BA1FB5EBEDB8EEC6752BAAC312AAC5793C2F8D7F1BF77F1749502E9D4E9B870E1D1AE8EBEB4BA324923402DA42181D1D3D8C1DE22B780D62B60A5E67A5E84F6F592388CC39DFB163878D2A55FFCA57BE720E55DF156CF8EFA1DB40EC34828D1FC5C6275B499F930F3DF4D083B7DD76DB8710D0DACE9D3B637BF7EE1D20CD2CC0F32F684BC788D5E2AAE239B21F40E6A7F454EA9A16B91D2721C79C9C7494361DDB554380AA085809B7455485793C278FC7F30866FEF1C71FFF0602FFF9F7BFFFFD63070E1CE8C3733ADE2C994C8E2824E68E232390B4B2305E4F1A3708442E050E97469B7C39548B3AD92F04B08E6B15F7CBE8BC1751C20AB445108A284095975E7AE902AA51D377AD6537A263488EFA51522748951280789D1E7837491209010A915957AE5CB1D017D4B1C11BE432E05A4377A1867FAFA27AADE296F6EBA87A97705D5CED6628DD1174F893225CD76BFE9B60131D1E43035F7C13C1943883A42080448C9282DB28453285E0F038456334047176DBB66D5B56F11D6D3CD716009234D288480F860D66A7825C04C0640DCD01259629A33A3511481666C3AF58E8CC5F5FED66089A6371B6D393C49F819FE8678A81E08CCD879B48A2BC40368298EB064492C41E91F91981D8413AD94794426F5C903C03DA47D2297501A200BEB7DC646273238B07A612F02DDA315402D10A3A8FBDE50D07D1C30CA553E9421281C61D7BCDBE3941846E4024554A03C6D08B956E4E1069947FB57350933A1CC4DEB2194154568AB7F924B1A74E370988C44E29A38D3353E1867403222337BD66DF6492285C8C763631C850290F47D7F59E246E5675DA8D24D2D268347A92B889D9E9AAD7E27E620FC4CD0A22DAC855A33FBD31DF9F0349EC85DC36BF242A5D485A4F14371B888299D2B6933AF5034BF1EF5E936F6E75DA95B31F3C46D3E17A306C1E17A39B6BF500DBCC20761976EB81B89940A4B09B1F9F2EC36E3D76BA192551C44F8524AE246C3D49DCFC3651E9C2C97778829424D2167BD96E6F2088B95C0EFCA318E427AEF61D1A4F240029FB9B00A494455EC04176FBC1F2A50751179EC106129B6E2236E44F2A24B5E457925B52ABD5141F6B75820CB65B1CFF29AB6A75830094BA61A7DCE1A784639AF31F364D339C4C26EDD1D15129168B51B106A74D299576AE89D3469DFF93057B4D2052430741EC469DD27830CDA6A229E3B8D5E9106592D3FC7EDC375145DB547D8398EFF8F8B823583081CBD324BD7B8B204100EC95F67F6EC1DE284994BB01510EA94935144A217206D95352AB3415808A3350A58D442261A18D148954B608EB51B88E86B108D0F9F9792FDFB51DD8EC477189F64785D600B6D44D70623380BD261083D5A488A4F8C36E9D66452532A9B1DFFFFCFFFCECD4C52BCF1CFBF6334F9E3D7EF22AFE89665CE9B4521215954CA1522AD88694056073B06C5E9DC3A16977B4455B4A9DC0E63EAA07368149DBEBD7AF7B29242B811D94EE7F8C60AF591207060680BB0752B7EA947E6A381AC9ECDABFEFC3BBEED8F7A17C76E9D5D75F3DF59D27BFF4E563A66136687E07CDB9A1B91D5C126D0E94B792A4123054EC88C0E5603340E933DD85B608362B9044600B80E973106CAA84E5071BED339B292D8219ABA8F2950076D602F65A00DF3075DA15B1692DF327F50F0F1E7ACBBBEF3F74E41DFFACDAA8379674BD91D7353DDFA8D773F56A2D5FAB54974AF9622E7B7D7E69F6EAF4D2CCA5AB45028F0023C96C07B6D8A254B31958FC7C06321DE3E73A624B924D80D5EBF516A9A66B7020DB824D3F81A4BB4BB03784A4750277CD208ABA6E5C457565133B75B0645C49A493F1846E24B6AF9495EAD894B6AA178D8651D01B8D7C436B10E0F97AA596AB96CB4B85A5422E3B37BF74EDFCA56C6E214B6ADAE260DB7EB071B5C4BE00960010C7489251E21D21E97EB0B9647BF69A16BF840BB083767B9D608B213FA91D98EB92443E9D516208762589ED7B58320A50D600E2F89B54B5B3D271C009196678A86184877433B9E2ADA8568EDED00B0DBD5168D4B5BCC65692F06AAE522CE70AD95C363B33B73475FE724EABD56922AD25C0E624CA0FBA50E56C46985F9AC96ED3223EC7E3714F8D8B63026CFAEC276968B76125BB2D085AB0C82161E9077243D429DEB44B9BE87432954073AA54FE34944AA59B12E8E87898768B0686109E130939908CD9EC731B1DC16EA39B10AB47C2B19011DA124B25DC9C575CE91FDBF295CE360DA38280E7097426E10838AE4BF50A015E5A2A2DE697B2D373D9F94B53059EC1EED96841C2FCAB005BD8E74E242D954A79242DC8C8695FB85C082ED550B07D75F1C00FE4BA41E4315039183B6DCB5057B84E2C02902DB9A010A0E11095B15A493225EF9A0818028EA09B0E580EFB71A0A2F60AE135FA930EEF3C049EA8D309DEBE6E81546BA8A99A2AA5D468787B0C124190BD0E40D28A20164DDD28182EE868C31B39B2E15AB9B6542B96974AD97C3677EDFA526E7ABE4CE005557980A40955EE27696C9F16E17251CDBC52A964901BB67FFF7E9357ABB405906B0251D49F11B3C34912974D6DD31BD845425DC1480D2473553B9CB6974F41C5CF94FCEF020560F8EA35D0D7C2686242AA0DF1A88B8C2B5F4D20B8F162583650CC35DD819A4133B4F0BE08762C2CC16052C667F09DCB358700116933543449A9369C014D9507D45818225CB23D29F7836E590DC3308B28E57902DC6C1839025CAFD5738D4A7DA95EAC646BD9C252FECAF56CAD506E70156BF96C367518132550273F1A9B97D87B239BCDD2B47B43A858026043D4693A9D0EFB1995FD0F8FC3993FFF13D8FAC56F40A27FA0E95F5635B8FED269B7A1E947DB6E635FC2BF1D7EE7ED148DC33F49902D2E5793E4851258C9189E611B1046C177420A361E070C5C901C0202C58CA4B2866069B835AD26A0AAE2A03A96A03F2EA1C44BAE7A751FA809B80FB82A01DEB0B0E358105565946C0542B2CAD532B7D4BEFB9BF83C153CBF548308F6BB9150481E5110703A271E906CF13DCBB4AAE8621550C2F3885C8E0047E0B366BDB188FBF38D62E5EACCB3275F23C062B198532C165BEAC66E048812B22BB505C4A3DF85F3B91C68278FC39DF7BFCB3B8EC402CE9F3CD396426FD91E87D8C49E65C7B5A512E8150DEAA532D44A1528E58AB07DDB3678F8E187C1B02D383A791C0133D08E62C334708B2BEA24D88BE7C45306D48D0A93F2A684491E48B44A4C1DDB80D406EA0D5C719FF2B95CED80F617A5341595B00385B8491740B892CA3A0D016153A7B1F07E16AA741B327115C6FA428290B91DCC073675BE72C384625D8792632764494DA82165AB021108E10911DE39E95E966E5C9DFAC1AB1F207FD81D0CB22C9446EB8E3BEE90BEFCE52FAF1B44A99D241A03C37009FBCAFECC402B20750D161616DABA1ED3578660DBE0045E2CDAEC0C8609D78EBF0E954A05A8361CBB86A6C1DBEFBF9F7C53B60EEA613875F21C94F345169BC51F0A478E1C81BBF7DECDAEFBCDD32FA01AAC2D53777EA243F693A43315936190CFD013E780D40A00815547B0AA9A0955943852CFA204500425351E91211956017BB57B2F57BFB37B09F54C0774CB041AF7194C8660241581785886B3D78B50C16B2F9354E441B89FC0363648A5E2A25329EFC5C5457BADC446F2FB8964179106B7183FF9D77F137647D3B0F3CE43CBD829357C3B498C67FAA08252660F87BCC75ABC761D88861380040E81843F00F00734C735E716E1CAE425EF18CD261F1E1EF69CE689BE113853BF0C34A3CE421D379A1AC0863750CD1AA03B24A93A546C93195726551263DB148662FB7E364B5B7A74B2A151047B3CA682A27289F4C89C50CF781D5C3594ECB266408940C7ADC5AF1346F69688A848DE1446E22A28953B8793F0FA5C1134B4D77E105D0F468A51E935AAF89C4C2665CE4BD8CFDC109B4820FA81896CDB011FF8EDDF650DEA9FC9164F24E0F637ED67DD8092E324D257B812B0E9FE34FE10044AF46CFC5F2995209FCF031A7822530C4892C4EF7CE73BF0E637BF19094A035E78E105989F9F67F7A273086434FA80EA86DDB3AAD799EA9A7CE904FCF1A77E0F32990C68780E9DA7690DB65F4735BF84EA3F972F40B1886BA10CF972012AA848E474AC85AD92AA2CD51D28D47C8D1C906CBF248554042BACC000AAD7AD992853D1B65F3AC1ED18D7F255EC6031D8379682533379B49376D325C236A4A13BE230BCB0211B442F97CBD28639FB54E0B62BB0F12187F76E877653148BA82D15B555DE07C6474041212FA33A8D25623030360C7D83FD3032B105BE7EECFB90CF2EC1E5CB973D004982B043B1C8C79D77DE09B1910C4C1516A041602D16A1BFBF9F9D8744C2954C5E44901A2B1E4F808C0F904AA66068C805F7E4E957A114D2E02DB7BD0CD34B5B6034338F6E5006F2F501B8E79697E0DBA7DECDA4752510C946D690522F94ED4E7E2A122509F66FED838B8B6518EF8BC1FEF10C9C98CA21B1F24064C9D93CCB5EDA90B01B893235986FA8476D5591244D15F2FE5ABF87DE7BAD5C62AC54781BCCECE05777DF31025174161D9250D7FF81445F1AEE7DF01D502D965D12426A0EED4E241187F04002CDA70C5BF7EE6464268220D31A45C73E3D32003FCE5DC49E21713B66F36AE3E4AA2070B60B9E6909206D0F50D36E821B0945A151AFC2973F1FC17B177045A934AB90DC958657FE2A06E30F192047958E7E6537924AE793CABDBA5441C61CC64E5783AD08E481890C1CBFBAC4B488ED26098A526A2CAD85F679986E7DB153715114F11662639AFF1526279F839D3BBFD74A6C2A35983A3D09BE6AC72E38B88DA07DB8F32DBB215F459B29BB7F0B45C29042C9431103AD5A734B5BF17239040C81B6EF6D87A1389FC5E7B118C8C41674B4790ADA3C99E20F928F9458EDC0B39BC74C77F5FE6EBBD223AB2A3144501321B0909C017F061BEF018E2C6640C3C307BF0A7FF7E203B067F42AF4850AF0A3F95F80470E7E131E7BE97E6884920110ED16D0E74B7548A38DA5D8C07C196D37AA710275A1525F75FAC386D8442A42DBFA169AE791904C23C1B80A89C476DF38A4CE6C1C1FE1F7C064405E08C39E7BF6415FC2419B23F19E6A337BA8A03F188987583446418751417029B58ABA50241985A49D816AA1C2CE97149256B72308B26133BB23FBC013009A2DC7FC52E8DA73B7D165BCBF59D3B0B722D9A1A84348E19AC504351EE6F700F8F33F40B7E640018E4F26A071A50EA9076CF8DC1F6D07755705427BE3AB4A2AB1D37D6369269513193772C457BBCDC8D19A63A76D23D828898CD8085B572E8F41363B836A76B82535A35AAD3010FD6139B11DDBB51D1617F0E1B7A6508DE1B90D0719601E8E7EFD09B47D16DCF7813DA0A66FE7748C98A4C4293B7622944872CC2D6C54925402D9619DC4E614DF66AE825FE24C04B0450A03AB897FB3714B4FB7E39E04DCBBF7021C3D3D01EF7AF8247CFDE401F877BF3F03DF3875273484445147C4CE6353488940B65C29069AF16736D9A664A10DAC5B10AA59300627D8B14A3809672FA4C040DB7D7431C79E6F52B261FB4ED44EBB90816717C66AE3DAE8DC5C7CDE3F14B6A1A31888618B24C662BF07070F9E4570132DD58715240E44FFC5B9B4652BAAC1ED7B6E4567BE0CD9541CB60CC9E88BD10926A007E0465A220AE4AF3D0FC78FE6E04DF72661E8D65DF0DCE36750D34AF0C17F7F088E7EF71C540A26BCE9FEAD60A2245F3C5D81E12DE8FBDD7617A3F5BA6E0680B29701B70C5052A7B8169571385F30E0F06DE7E19BAFBF1F3E71DF57E00B2F7C901973BF3D0CC75141D8E846E0EF8C8675F637352AA1ABA1BBEA13EF39FE7ADDEBD49A8A92AC5A104F9540BB80BF157F2CF9C6266E4D5387BEED2A346690D8CD1563998C3E82206EAC3AF5B324EC192D7E622C760076EDBA7D59F9E80C128E83A36F71A3456ECCD5753764D7AEB0864595369B03D83A08681F4D74035CE956D12F730CB7032A248996C6EC94125518D8F57C19EA450B54055D1154ADD98BF3D09F0CB3D01849485D36E187C78EC1C14387DA4AA067137D00D7EA3532C20C8C579F97E0F9330023BF6CC29FFECE56481E5A84E88E61D404360F06D8F00B0F47F0E11AF0D3ABE3F02F7EF515F8EB1FD970E747558884EBF0D215C7B39D622B4276E1B802F1FBB682B65080A5A75FE5E7A069080FAF36867063A318FE445EEE7C021FE42417A3AB0161C6446560B6865A971A8B879AB1C78619F3A413E8C86CCE81F181348CEEBE9549ABA18EE2F9B3EEB3C81402733B483842D79640E7F51C94103092E3AA5DD96576F8A87BDE76081E7DFC6F00BEF4FF20AC8671551170B125A75D659A820523B053915B32EF94A02F3CC1AE411D8124C9E19A8C6CA3CDD53581FC6B87BE057FFFE27D904AE9F0E103CFC0177FF84EF8F5BBBF075F3B7E04C6320578F7CE97E1BB9387BD8E4D40298A052CA3043BA53C1C05D043F83B6ABEA8C972EB45A1371A67F48F126D48D82D38C1F445FB55786DE135F8F8E0C75A40ACA2137DEDD2E5B6C354B71EDE077BF60D43282A7146491D270CEFFAF05B6036EF36989C1C81B17D699052193010C4787F1AD9AB82143D44A974108A21D810475B56E060CB9EBA23BBB9FBFEBB513D8B8002D93C02C062FE588380771CD75E1A0D90871404649C45DED935F86C76EA78449E48EDF9FDBEBFF8C30908EDAE402519812F3D360CE1771AF0579FD90ED2780DF24A14CE5C4C01BCD36E91C4701819B564FB094C9BD417C71B67F567DC6F283B25B5AA282D6E3A7CC67A14CE3CF723F8F003EF835838EE3B17ED4BB1D802AC90E8D9CBB330B2EF56A4B0762B83F3EDF7EF3908877F518192E636C4965B6FF702CAEFFBE4B8C7F606C776C2C4418B911CD6E0226EE9A03421C8FE007833301E1CB672D0416F405933DDC8CB701A7EE7BF5F812FBC7237BCEB372CA8A2949ECA8E7A207ACC55E52E108D1D23F024BD80F69C85E66C975C793E25B7B9326D25B76305B525954937CD96A40867436D2245475CB5D00A62AE9203E952036D5ADE03911E9A0014EC340862667C1006E226AAC3101F69E083B76CEB128899BC090DDD81A5B2E532CF8EE3797CD097A93BCB07A2EF7CE81C10A7607405C19BE88FB05106A63910882FBCF211F6F797B2772FEB640C44028EFB908ED954C136762499016BB4A8532235B49ABEFB2FCB78F049A24903A04D1EB2AEF40C29406E5A6C223DCC7B2B6F851F360AB06D68BBD7F368ABA2BDA1D86570E49F801CDDB91D2E5E2D4112ED20C8F2326778B4CF3D66D8126886B5620424088AF03919B860AF1A51D99289A3F3ADA1A710855B0663BEB8A9507B6E07B17DD7D9FDAF3210891A70FC5A063EF85003BE752A0EE36F4AC3505F197E383904FFFC13E7E1B34F875AD4A9B7DF499DB6263DFA4BB0391BAA4EF9455B88CD7FDAF61FA0F69F7F7319B1A1E8CB6D9983AE6E90DD20B8FBA23F0968A45C6FE8CCDF93FDF1480E8A0818B700D0E23CDB1D41B9D1B098B8978E36F35AAEDA1C3B142145109FDD510FA67A2B23EE60B764C1175F3CCC1058AC22C59E1F64E31A8FBEF066D8351283696BDE93440F48DACA6DD4298D84C80EF8FCFAB67671DD7E2267A8CBAE1309455A5C0CD7D70B811C8DF9EC0F1FAB638D21B1C80C7000838D4C12E4B241C99382B5C62AFD929A8EC9B073380EA5BAE13D4B5973FD3AEA50BACF515FE97ACBEF6F2F3B7FCF50B245123D8914DFB79D8E8228C6B5DBC1B02610E9A5243C555138FC6AD78A589678969A2F024E36056D493811F55225828D826D8CEE806BEB260654CFCED1583725A035B0B11B68321AA6C5B676D7EA5386AB4B3536921043AB908854F14808768F243C8DD01E447B15F5BD1CE4172E5C87411FB1310C8E8B50CDABE715DFBCD86937E54FC8EEC5D329903331F76145EC546A4AA24C44C0C70EFD8D52AC5928351236B8DED28832AA1A1A21271008E4041210B2BD1248CB1AD9937A5F434791C44C2DD5219D0CC3B9B9321C88FF18669786201BD9C1CE73A37B360CCC18F08B078E80862E4A436F604731403770DF32597A0805DD75DB642923061E2317281FD1A1A8369F5772EC166223A4D1E123152BC5B95926084F67E45310D60EE2E1C387617A7ADA2F5B1DE726D26C621A951F1919610F9B8E2461283386042002D1481842E110A8219581C7868788823B96375C445B133FE72A45B8B63407B70C4558B2940706A7B00DB45D86E94A23A54E30A9B4289BCD6E2329765B491948845843BEF0DD3EA484E883DEEB9EFF4BB78FC054AE06DA74010607871038044B3758609EB6F499EDB3CFBA6F1F55476E11F2C3F63297427CD634873D63C46E76AA15C68D8282B3B1C9C37E17E3A9A79E82A79F7E1ACE9E3D0BD96C161E79E411F8F8C73FEEFA5AE8A7F5A90994A824A4532948A7DD6D145D959596333397E04AF63A6EEB6DD51745EF284F46C51DB2CEA416491A559E72E16FA0767E21B3E18AEBC690583B66D34E118067AF1760B4AEB34C009D836470009BFBFAB2E3A661B6A872913E229E9F4ABF325783464CD466F4CABF18868282207B19201B4A6C04A9E13651F18378ECD8317F76B8A73ED63CB74B024F7D0E26E721112D40C388A0D39F844C7C09E68BC38C81536A62B11E654356E463774774EC964E914042D917AE42D6F1AB3A874579EA8D860792C125AF55125B259456DB47C21CDB0EB818867B7DAE1ADBCD72A0691E7E76BAE136D1C74E15FF905320C57F9963BFA64168DE1069750EC613D7507AEB7071FE5678E8F037E1B9D7DF0683E92CEC1D9B84EF9F7D3BBC77FFF7E1E2E24E98CE8DC13BEF780E1E7BE541B863CB0558280D40AE9686172F1DE029890EF44555484654E6E093B0E4FBC6616BE6222C5C729399689484CEA5118D8627897A1B490C4AA5C986BB6C9F6B044E6BC406DD7720C15AA9A2B670F689438A574CFA1C7D67A3D4A9C74EE7E6E6E0C2850B4155EB8128AF1944C99394333F1E81130B512FAFE6C77FFF21376FC64AE1761BFE5A0B9E0EDF8F861A1B11BFF97CFF11C8974A70868208129210BB0095E4120CDF320C776C4DA19AAEC26259435B2BA39447201D1D42691E80DBC688119BF0FA5CC14B91A0BC9B16E96B914AB1AF7BFB486FF07B6A331A132036BAEEFA8621610B9D769E801B765B89B2AE09443E8A21F9FD44CA27FDE4273FC9EC60BBB976EB9928CB5E1BC7D592971F639A2D5B6F453B53AB348F2D5CA586A8C194EFFC91B795C1DA3E8864A9CAD20F1391182C551AC84E0B2C2AD3D60F44E24499762D6A73159B68C824897213C4803AA5E7A1510C21892BCD5EF199F49BE262B0D7BA3FF1C413303333D38EF4B426E3AE439DF2492DCB81EB006A27A0C9FD20264CCFA3C80A9C9E2DAE12D1713B902B891D6C621BA934C30462C817175DAE4E9927BBCE17146C143B55FCD96F9D6C62A773BA50D84D495C05B8E0DF82C728BB92C27D6EF407BC01DDD562AF64133D761A20349EF4055C0E907C4101E20481488DE304406C133B153691116D9F9FB8AE0078A08C97C4552625B5AE0A6277D5343BA9531E84E66AE846A59156029081288337B26E0702D9ED40741BDD6AB1897EF05A196993F4A88ADCEADEF8888D7B7F97D8ACA4A182B1D39B369E48F5BF2931772510DD0C3758973AF5DB921B95460AEF0A1065CA7C739AE911761BF5B91C44A7C526FAC1333878415B198D84DABD1BC4DB8A6A2FA12ED4A924DD049BE8CFB121497CF0C107E1C48913F0B5AF7DADBD4D84B54B2240D34F5C8B1A250069ECD393447A85BC6D7BD3DA82A0B58BE82C8DCA50AA5CF55C051A85B1C3540EC41DBC64017EFCA7D80A441D3778511E50789685E3C55CFC111BF7F95670319CB6AEC0C6B05331B9548C278AA9DE9FFEF4A7E1E4C99370F1E2C5F6EA74ED3E4C539DB6CB505B014CBF04D24A6052C71244C371BA1BBA32FB43A065D4AE4749FCCBFD1353E8DD38F083AB132D138AE819C9DE356D22AC949ED1CE4F5C9F2426120936294548A2202E74BC9D8BC1D4C83AF4A90822075D8C95546B1040B1123F351D87FB9FD05E7DAE3AC8DC99CD0697579F1F82480149CC1D2C4717F8E80FD05C51C22F1DF0235AC36E32046A3FB19834D511DAE81C1BC517986DAB4EED75446C5AFC44CBEECA8DA0FBFAA5CF0FA28E84C360EA940F57AD004A47A2234272D03EB5A2C50ED2F09BE566BD0B75DE92D940F9C60BE88E941C88C4922C699956EA0F3E67DFFFFADF96FA7AEBB289C22EFA2B677CF6B39F650CAE542AB19C9A542AE5D9C4BAAE41B15204DD6E40DDD0A05C2F43AE5C801002EF0887D7372153FCD0A546D9231FBBEF0FC3C7DFFA321C3B7700A26A036E199E81174EDF0607775C822B7303309BCDC03B0E9E83678EEF81BE440346FB7370E2FC76B873F714BC36B90386FAB2F0E3D9012F966BB7952CFB86079957A68F1264523A50553A92C4606796EB36845FAF80D330219D1905BDA1A1F469E0E8A879A212035200D8EE5EEB96C476C5F9D87CC3749AA956C12649F55E39770E644562C69CFD104914667135ADC3E7D00B3A66E1556B7D0A6871C90371AE3A087F79ECA3D0301550B00B4F166E81453D0DF5990C0B7A17C371385B4026991EC55FA7413C1C027D28054A3FDAC1510562831AD472A8FA3D9BD8F413EFDE7E0D5E46BB25001D4E9561A91A039ACF7923EA33B854C623F0F6FB66E1DC0F86A13A1201CD74E7460E1FDCCBFE3ED3C84005EF65291460AF8213C3C64828702E07B0674887F02D7DD72EFD40BB40C2C1D5F1BA6CE2B2BA1628D65237056B09E7F1B76E013B24C1A545AD6DFA026D6954E2E4DF9E67DFB9F3A17E5878AE08D5820D3BDF9681FA6C01E6269110DE1B87E2C06E76FE5CA9CF05B798F6AE3795CF78D7FBE9F436B69D5C1862C74ECD8E791D42729A3381A9B3A5179740C90F82DE1761DFB92775195E5E1A8759C5BDDEE19119D89A2CC25727F7BADF4756FADF1E38067FF0ADB78215769BA03FA2C1BF3CF21AFCD9B3F778C9BF5471E72F9EBB0B7B3732D6BDAE05A45E9F8309AF7DC404CF58809C524B188BA5B3857CB1447E651040D6B66BA6FC7CBA376E956EAA49D981A426BF8A6AC9F6720CB034770D5110BBA6838DFBC4D2684BC515C0B19AA3E1BEB579CC5975B56C1FEDE7DF79F11F06402AE9DEF59EFBFA08942E49DEE7B3AFF4C18FFE76D8B37F3439E6D13FDC0FD1623342ADCD29F0D8677683BA916F18C4A6325DC3D8367F435E0F8082C80875BA62257EAE783A8127C0F587EC4361242C3ADF57512D8B3F29525740F9AFDB1E6CBB55230406846DCAFAB69AD732E9575ABEA034CF0A977C6F13B4797796ADEEE2C413FD65B877E775B6FFEEDBAF423AEAFEE08F1C3A1F1CD6776E4AC48666B4F1E27CEA4AAE8137A2ED01D99938D48C1028A9287BE4BA85CA057F94A2A28D934360C85190930EE872A409528088AC94FDB6ECEF5EA2B17B6CFB5D352823E9BBE0B865C4124326441326E41C5E650A3B4F326100D58572F8FCC850144989D404D1E19645EE5210F52909F4497C884180EC4B61883674A825155838868C9AF277522AF846F43766643F58B0B6DBAAC3B68890F80A0EEC19F34DBCB485B4C661EC13135EC31EF9B566CD98E12D4D50C60369F8D466B1900CAF5C5BF246283AFB75764BB2AEF01317B7F4BB89C179F7EFFABE308C0DD6C1BEE89E571B0AC3FB3E3605E79E19F17ED7CE5FA941AE6E416EDACD7437E20A7CF0772FC3DF1DBF03B4DAEACD5BABA8B078053B2BBA7DD72F25C04862F3A624B87C320DCA5E6F9CD1EB12542564439287FD056B837EE24AEAD4F69C76076EDB9280D7AF9759350AA24B32CF7C9324CE07587EB1C346D6E9DB34A02CF1CFF41B583932F685A6C4E56B261C9CE88797AF2C76E5BC8B6C3BF1B7A95CAA4552670A09982EF8E692E0B9FFFB99C32DBFEB990BDB5A7F279EF37F5EB8BB7B73272497D4366512584D952C79D96F8E2785EDDC0C75BD36B15B4914F92A74FB215411D70B75D8B7250E352400A6C3E7CEDBEE280545534CF699EAB8D96CD692C55201DD73280B8E9C7536A2E153C54389082B9670F7F641D00C93D7796BDA62F0CDD50006BA067DB1B04F52BB73DE3772D1E3323CF4AF2FC3E74E1E82E1031A6C1F2FC377666F85C3EF5F849325192E37186FF5575FDCD800385FE4E0849AB6510B8A4270890C618F2BD7A92A930DE7660AE5D2F5C59F38549D5F42F7163172887EDA0EBA9336AB2E4C8507589150B638B61BD140000D53B64C53B10D33641B56F8EEF7A61EAA9AFB54C907942BFDF6B2BC5396AF130D33C96E67537F568B9150E11B337B99145E0CF5A3AB9464483D57DD0E9AAD8AC6B6FD111B962FEB7B65E14638FB8CDC74359404CD6A4A24599480AB55AA333FFCDC573F879728238DAE51354104DC6CD3F3BC6A1D7C103A84E75395A524229BC6F3FBDEF51BBB3EF4AD99109C2EA49A0173D608C1510AC903D6AD23E356E320126805BC6167C58EBC96CE2F1C6E5E630EB7B38524F31B754361AB8CCF51A845DC84797606F84B5BAF3F00EE2F9349DB582C16F2CF22EE54895FCC3960CA4D7233C069C20AAAD12A01887F2F2020553C5743D66B8A22AF6D427DA2CA71183771AA41CADFDD18A6A3BF7AEBE596C615710851EE84FA1B4DE2A2D4FF90AA30151D8BB8B3954E9D99823DBBB7B47CCF304CCEC4D5B69FC5CBCAFDF769F799EE4BFB745C519935878211B67EEBB72E7CE98FFFD7818FECEAAFA504C92293A1F0E9F074BFABD5F43DFFF6AB5EB5E38DB189BEE88D944824C2DD04B6C5D81D4BF6A5A2128AC4EC16625045C9AB202015C3302AE17058C3AD210AB00741A497A150692C64C911165BA662AB9214C6BFC5B8F96B791C31EBC33D26F932C75D1222B27259DD00BB39D0D29C2D22054255AD9FFDE7AFF69967EA36B31C6C4A12D76A06AA0547E25574C533B9A2C24AA791CEF0D527671A4A14225A73D8CD5F9C2F1E8F87BBB4A1EEB4EB905B679432552B1ACB2F2913D306720B2DAB8E0FAAE1D6E09578DB82C8CB6359FC7908402A49413598514CE5161DE80AA92B81D82F9AC363923BB187B15C56C58333626E19C4F71445F27D769379FD9F852159ED336513A8B6E3C1CB6C317B0C494783E4B0729EEE708DCBC0F93F22E7EEA086C54A48337E200CFE7AD4A96F3614D53A0D7527892E9027A64A6CBB6D200A0D83CDE22D1308F8701A5E8B9581ECEBEB33272727DB4529241EAF2549A420BB8A42ABE1FD09FC1AABF4AEAA2D2A9DD4176A6077B28AC381C01E24B3A974EEFC48AACC418D8C9601441EB4F89EC2BD76851F9779D4487C16230C4DF5D9F9334D3DE73509DD67D099545551DA6C9A76C03A3AE5E550E173EA74345D9D812D99D8E6067FF98B1DAC30B5661743D8C4643219EE16C48A6EC09E9184AB52F12B949C8BFB05BC1695806CA01D3432990C01288AA507B905BB27824CB92CD89F4C9D6C28FE40FA7E98F84A38A480BF849DCCC7EE1C1FABA04E48BD9D0023154A937A14FC1C45B61A8EA8ADDF53E5960C052199DE67F177DE062B7D569137DB6CAC536653F9B83014512A2C7A16367F1F9FC3E41A82D94E99892BBDF445A797BFF8405C93244AC1B1445E88A82B10D1F6D997AF178B0EABB5C422D8D4DF90A45A57F1A1EAA9548A401412E849A1DF8A8BFB5021F31D3B76905EA51FD720564BF341A8685428AC8482895AC1F40752B934A193351063CB0ADB8FA1CF18E625BFBCEFF9BEC37E87202A4A33012C9810D6E9336B7B8AFB4A8E5B7645614465114135D53081C8553B57A704B66AB1CF06B633692953D3346B6464C46E42D16521F70E356C245EC326D4295EDA728DBA397FF48FFEFA3FD2080C315162A444666AB55A1DC9113E9B66F4F7F75BD3D3D36D010C6AE62B57AE58E3E3E3448064EEAB3AD30BD2E7A64B521F36169A1F47C67E26B32C3B9907FADDD9AD2462542D47C2F6215BA410AFA036B7CC7462EA9CA4F1BB9018882092E4824E294FB2FB994DC526A3EDBEBF13DC1A3D789C74A0C3ADAC24A88D6BFDDC4E830CC5ED3FA58A9DC5A3F32F1E2F3F36BB35F4269BA12789EEEA9084CA6AC8999D6B7C97340E9A1183D8B8EF3D19EB4B94E2953318885DA953D7612502432E0563A3A406518A3452A30820BD2AC05A0940476468F1F74620A9B2CAE5B24ECF423DF4539FBAF067A856A9D49C424364FEEC83761AC55FA63578DE4ADFEBF0F76ECE69FBF7CFFFC9C92FF9B3D944457EFC0D0699197CCE0681481D1DA5B0A5A36F48CAA2A8EBD64594836E4CBD9C98649D93110DA550C787B2666767AD26FFE97C310E24DB27DBB97BF76E9AC84AE36D1612231AC7A1D7F9C99C394B1D1A7B59F87035803A5D6735A0D6704DEFE526D8B604A449EF97ACD7EB06113EFE4E8C968EBEEE917D51617135101D377046EF4DA4F7F210213168E5E07944A69B3796F980B41148F683114C0B7B2AD36DF48A09961651A948DDC68057EBAC9D92A357BAC66AD7EFF47791A65F2A95D81B6AA8830E0D0D59E2A52641D67EA3202E1B590E56585C0944C9A5CA1452A397761029E948626E0048C6E43921620685A6A4AFE5ADE1C161B61B1D0C6803C64A51AF1587ED08C4818101EF5D513E15BAACADD6A44E45F887AE458588BA697B1EC8A67723128016F5B2D1D151BB1B15DA25909E27ED8F66DCA066B959CB5AEEE3B451B16D3BFA0D8328C23EFC9D46961BDB76A00B864A2A82D429A3C9A42678247E5D4306ED5C907568964DBD74EAE8F20DFE6056A6116D0D039054E3638F3DF63CDAB5852EBE4FAFB6130E2B51481B7D4367A37FE4CFF3D251B06EB407F0F7FA11082C8A303F3F5F78F6D967BFB5D24449CAD442576016A54FC77D83D4295DE7E8D1A36B56A5BD656D92C8F0240241AA90A207447D2962F2E8A38F3E71E1C2856B9DBE8436EA124AECFF20D0290088805AE8ACDBBDE6FF1983E88877E8B88C9422EA268D369074A19F567EEAA9A79EA4B979C105C12AA1C4FDDF8585058AD4344882F90B22ED7F6C36E9E74512199E48486CB48BA4520DEEF3351E7FFCF167A7A6A6B24135FACA2BAF3C8F20BE4C00A20A35F0BB26455AD6C34A7BCB3AD9A950A9E81ED05B3689A490F8D14B1AF560DA00CD1DC866B31728E5023FB237712233B51717179D9E14BE4120FA63975C255A7C00974560A4361C9FC6092952432B1122C797F4D393C2375012854AA5883A49178DEBD150892206DB7CBE221FEF63FE21C5027DB6B007E01B6813D942E12062993C1F46E7ABD4C6E1AF92DD24B06940935707EC01B809402449642A95FB8B345CA251265AB0DA30E5D008564AA0F7F5F5F558E91BAD4E855DA4F7BDD3C841A1502049D490AD2E3DF9E493FF05C1DD826A7510418B534E68A954BA8C524BAA9688CD8647697A8B9B3F7AE35F92C46835281313132AFA893422154530C3681FC3B8CF249C480F014892480950434343061FF8B57BA4E68D25367E8243AE8649AF8345D781D42B0D3351AE0C0391D828B98B08A08112D832A0D95BDE60490C4823CB3647D52AA3447AA3EA740E85E7C86EA21D6C19D0EC49E12601D1072408200F1F3E2C0507637DD2E7F4FCC34D08621B20FDDB16BFD24F8C7ACDBEC9406C03664756DB6BEE9BB3FC7FDA8DE87B9701D93C0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (62,1,'Network_adapter_(24)',decode('89504E470D0A1A0A0000000D49484452000000150000001808060000001589B6480000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000003E94944415438CBAD944D685C5514C7FFE7DEF7DE4C3A9949DF74A6934CD298DAAAA5A895A86870D1550971212E8442A1455CC44DD1853B5DB8D49DB871AD3B2952908ABAB02841A148E807384D6D12F23D9D2699CFF7FDDE7DF7B8686B9BD685A4FD6F2E5C2EBF7BFEE71CFE06338388E4C8C888A5B526DBB655AD564B9899B14B194424A6A7A79FAF542A9F5896B55F2975657474F45300BD5D4301703E9F0FB7B6B62E4C4C4C7C343E3EFE8110628688BE6766BD2B28333311CD974AA5FAD4D4D4BB866108D33407F01832008099F5F0F0704A440C004AA9F4B1A1F724A534981949923C51A80400ADB57EE2D0288AE4D8D89845440A80BED3A1FFBF623BA042080900232F3CFBF199D1F78EB45BFECD5EBBBDBABEB0B0542C16BB524A4D446C9AA6164270369BD5994C866BB59A06C0003433F3233D8DC31005BB70F4C88BE5A3CC006B0DC609442A515D27F08330709324EE3A5EB0EDF8C1A61744F5438D37E663DF5B755ACD39225AF8179AA62909C0085C07F3576AD06A186B2B6D50ACB1B6B48C63C75F3306FB7205AFE515DAE45773650B725F0E03AC70E0B90A944EF0EB9F372F97CBE5E33B2A85605366236CACAEA174B084FE721E8EE3A2FAF23358585DC1DBA7DEC7DF0B8BB87AE15B58A31622222449083BEB616D29C1587EB37AEDE19EB214B21300A6618204A3FAD45E346E69A469824CFF00BEFAF96B701C62DFB14144690C3372A084403EACA3D38E7120D7CE3D3228934C6959165E3A3E81FE8A8D9835F60EF6C38F1348A580BC819CC8E0563384DDDE8B9643D8C838E88B6344A902985908717F505A6B9A999919D8D8D8C0A9D367F0FAABAF6079BB8E6FCE7F89A0B70D278C9019AC222E15E0B53C5464194DB78B68B30B27D7834AADFF5EA966B369121148883B1F3163E57A0F9B0BB7D16C3631FE4E05DBC247C771D059BE8C56A783DE10C3F703686D80E8CE2EEF804E4E4E46AEEBE2FAAD392C5D5C437DAB016B8430542DA04A36CCB289C4F7E09A213A0763246C42A48CAEB31F9A251A9E76A594F7ED3333158B452A168BDCE85CA2BAD34014B9B0AB152456159B8E07C31008C308611482B4860186675AD818781A765F80956EA10EDCDE59291149A514672DD02F3F5C7A2B88A215AFD932CE9E2E9F3B71A4FF90E6147EA5079206384D414280B58B762455BFA969AB4DC5CFBF7BC0BED69A841086D65ACF5E5D3AD798FBEBB71BBFDF700198E2CC9B17950A24B3A6AC340409C9CC244810484A5209771922DB67E86B43434389F1701868ADF54F5F9CFF707171D1BD1BE0C9F4C91FCF1E3E7C5828A5E8E1F70FDE552A15353B3B7B1FBA67CF9E647979F98F344D4B4110B8F752E9EE99EC2AFAD6D7D795E338977CDFCFDBB6AD9E489E327342449FDD73F538D07F00057E13BF79D7B3C90000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (63,1,'Network_adapter_(48)',decode('89504E470D0A1A0A0000000D494844520000002A000000300806000000678EE8A60000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000B8C4944415458C3CD59EB8B5CF5197ECF75AEBB337BC98EBBD99B9AA44A62BC8434511052A52136D45602A5D882D00FA508F6435BFBAD1FFC0B841268FBA1885F425B8494122B2DC5D605C536AED6DD1AB3C9C6ECFD32B3BB337366CEFDF2EBF39E995927C96CF2417133F0E35CE6CC9CE7F7BECFFBBCCFEF1C490841AD8F840F6F9A833FA23948B45FB80B1FA9757F60940F1E3CA8AEAEAE26354D4BF2B94422E1BBAEEBADAFAFFB380C706DB4AB4019E4F0F0704251943CF60B274F9EFC662693E9595858989E9C9CFCD4F3BC2D8CF2C6C68685EBC35D01CAE3C489134A3A9D2E1C3D7AF4277D7D7D2F209223AD0B7CDFAF856178F1FCF9F32FCFCDCD5DC2707783066A6B676464248DA82D148BC5BF388E93191C1C3C91CBE594C3870FF767B3D9A79697979F5A5A5A9AC5A55E8BB75F29508E0ED21D01C4028EFF58A954DE4444F7BCF4D24B5BA0C0CFC051027002F0716CD5B642FBEA23CA4502B01C292E1A17E997A6A6A62E3DFFFCF3ED8AC0939276AB98B653DFE41D4737445105A87E834FB5E8184591D84DA07287730C56747575A90D596D7C5050E16EEAA8BCD317C96452B9E95474570245A5ABEDC708E8DD079453AFEBFA0D40C1D1BB33A2A9544A692BB4BB33A2FC414495F606B49B7D7E47A0B22C0B44F486D40741C0D9977655F03B7E81CF4D403570375D2814AC43870EC9500501C322DADA69FBFE976E0BD5DBC893D67E3C70DFF0371E7DF2D8BF3F9C78FF13B8281B4DC11F1B1B0BD05643D8C2C0B2AC005BDE8FF0DB68FFFEFD6C13C59735A18E4039C548FF0D3ADA3F3CF8E8F75FFCD11FBEFDC3E7AED60D6BCD75DC0DD7764B76DD2C1946B5686C196B0B57AFAD5DFB64A682C20BB8BBD56AB5780BC313C2F0F04402703F344D93F723244D6042E2A609B54F46B426D21128B74AFCA1D6AAF8C62F05B3531A1CCC1F90877207B6970038ED83BA2C5E7CA51F046CB66BB6631BE5AA55B24C67D3B6ED0DCBB24BB6512F1A466DBD522CAD2DFD6F66DDAC98362815601261B95CE60905AD097186BABBBB3DD08DFD47B463EA118918A879FD2AA943A3E41A16B9659FB43E9DD4EE6C0C30826249A1408A25705AC212204221469AA4C8BD9296EACDE692E311859804E42D0A29C4F7B68FE1F9383E459EEF59AEE7D6B6CAD686693B9B98E1A66B3B1B9EE3147DD75B2E5D597EB760DBD7B0C2B0D51D5CBF845969140634353D458F01E8E4C47B74F5F215DA3B5EA0675E384375C3A7C937DF211716F0E7BFFC05FDF9AD0B64D74C3AF9AD53F441E90A299E033001B9F80FB63232282F64A4448A88D90FECA46B6A3A9592D3F9EE64C1839588B07880B6D0F58D3A39BE4F0145AF143FBAF21B187BB76344E1F6799DA791A2D2E3CF9E21F6A40F3C7698F67EED5ED2610122DF21C7F569D32853EF403FFDFDBD7768E26F6F53229DA043C71EA3D5CB73F4CA8B2F53C5A8D17AB148F3F38BF4DEC7FF21ED5E1F5970E1BC936449991814479AF545474504D84F6A3215723AC03A649B761A3C4E80EBD2EDE44913A2468B8BE76960E03BB438F3192DCECD537E4F9EC60EDE0B500A3D7CE21869991411C613DF7B06491634EF6E9257B7294084D8707B48B3A6EB94102A2D7EB24E018ED5EE346983A04B6D15C496C954D2544EA662A002DE673097A48C2E7337A496B5DCB198584725A98B7A7A8E379A80A650EF3D7B289DEFA29AE1902C99B8F1C738AF53B62F476A0A4C41BA8CE555F224411B1B9B64C7AB03976C8733E0D2E0C124457644752D4D354BF0BA16B07C24CEA1EE794163F90F68AED245FFFAED069D7E56253D3B736A5D4A9DBDAD3CA198D408E4DFC0F13DA89C442A898A4674405D2D21938A9B8D1FFB3A95AFCD2112E01E7758CCDDF54DEADA7F1FBDF2FB57294064458082936412799D92C534493570AF3722DD5A4113615EB26CD429AC0B52FA5C92F70E50DDDA242559205589A3797B79628ED68549FF9DBE48A71E3D4D9FCD5CA5D5A515CA0FF4D281271EC0EA54A2C25037F5150EA292C3986B58F8532F6F31B247F7E1B8715E5764E2EAAFD92ED150863C28859E8072A0D0F85ACC843617DC1838D4AA814D3444949D1CF49576AC7A4E7D9794A5EF3E7E26E6DA8328927D8F3FCCD1A672DD2701394A6A021488C0475477C0D213A05A1B376F0CF02DAF912A0754B6025AAF39F1F910E7832881A16E17901ED6C9F502F2B530963ED17C4073C716CAA987F8D2F4F4342FA569647884FAC0D16C361347CA07B8954A914C6FABA19F4A4458BC500E45164488208AC46F02BEFEF1654A8C8FD2505DA223A347A95AA952B566905143B19A259ADB038E5A283C17934CFA8D2ED2B62CE2ED2D408F1C394258D8C51C7DE38D37E8ECD9B3F4FAEBAF534ECBD24343FB687478EFF6B5EF5C9EA48F6627290975105200EEDA64793A722223BA1A6D59039450654AF727289950A856355158282E489BEDF864DA1E79559B7C7016C21F171C07E07394DB40778CA8847E9C62A04DC78F14DFEAEE42CC7CF15395EAB3D03C1B202D2BDEF288D21A3DF4833DF89D203FB387564A06E5214D25A841A56A50D5E051A3BA6D029C06ADF6C04F37EE762D94B8416C396F9B7A887C726D6DADE54F3B9A5016178E440B1C73B9B59FCD3574B162FB54AC59F1BE1B78542C6D36411A680806F90245147511D3CCC5D85EF160828AF2F98252DEA9EAE13B83A79F7E7A1B287588A8401FE43F6F816B81851BA2EEAE6E448A391AC4E9E4FD523EA2CBCE3C2D2A252A6711C902917D7F8AFA550BE20E7EFA5E5C680DDF04A313C60FF0C41D05FFF4E9D3B17B025F630DAD5B752A1B55E25509F3DD463FCF174C4AA3298688966D8628883465D0A94422452E40F28D1B8031B4886A7B249C93E38AC73F37D667D73DCA66B2B13CA9E510EBB51CA40BFA2B0B013A75068A8848CDB6A51E3F7E9C1E79E411AA56AB74DD98A58B1397625EFA668D1CA34216F665EED5F71F42D45DFC994F128045D8B75C99ED156EE853D62B636201ADA1BFF7845572B8D8421505EA5231CA9038A0503D9F27337892BC4025ED8843FFDC8273593B704192963B577DF3016E5CF5ED2E5CE9D1249B9A91012F03E150046D0C51C181AF203A301AD80671F4D45843F369741ED83A943305689D7E378097C06BD8A7848AEFCA6054AFA0AA9D20EA8224467D748F64918095F43199C5E5CCD61D7514BC545BA619822EE07BA4424E05BB611672050A470762E2735ABD7804D48FB96DD69C466A312905F472D110567574213D8CAFAF0E261135854219BFEDC2047DA98DF3D023B351482A26C2757F478E32D06D19623B1672130C69E2AD8BBFB62BD63429C209BC20F27D5F78B6934E0967ECC73F7DF057453DC3AA127B4B065681FC8CA5799A72BC80951AEB8078C20D8801B51AFA7A55727243B29A4D92CA0D232CCB89BAA2441D81429698A3323F666C332928BF306E71D595D2DBD7DF9D7A1F3DD96E3EFAE1F57F6FD81D1D3EDA9B4101C810771572D368950AFABC0B7AA4527A0CC843C1704527700D6B265FC3899361AA674A09AF3F1B6A3DBA0FDFABD2792B3132FB572DDC91A30026DFCCD152CDF2ED20F461ACE661ACAB737373BC96115B5B5BF2E8E8288A305AD0137056B083FC3448511B4055552185C1A3014800A80228370F15D771C483A0E1BA54393EE76BBA126532B2C2DFEB89B0C60BC11D817244DBA31DFA81F7A7977FF71CA238833FDFE0B724AD970ECD4794261667F317FE619DA95822C10989A448D1E05C22852528542309CE4996B85149A102A8A0170806B114BC2B299A2C15978C0D451129BD5BCF2809CD5D58B0DF4610DC52A97463EAD9DBEDDBB7AFD30388102037C1C72DACE99DF637234D2BC6D1ADBCF65ACF0544E0962682DF4A2D9FDBF674F09673ED0F8A79593D3838E8C3E2F16BA3CE11E5B5385A9ADDB65CE647E726F8E80368D4210322AE8ACF5FAA7DD13735F1DFAEACAC6C3FA0906FBEE1ECEC2C4B8239313171BE254FE8F95350811A7819DEE9C986F8E29FA83944FBBD3AF5FA08CB0D13F6EE4D148A011508CF9D3BF72A5251E78CDD55CFF0C11B7EE9554114592783E5E5E5398FEDCD2EBC5FDAB133358B23807BDABA74E9D239ECF772A52F2D2D05BBF9E256EA746F2E88F1F1F104AA35DD5CE85900EAEEFA4BDB1D9EE34B6DD48876FB35F8FF014D1ED598C339C5660000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (64,1,'Network_adapter_(64)',decode('89504E470D0A1A0A0000000D49484452000000380000004008060000004FF7B4B20000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000011534944415468DEDD5B5B6C1B577AFEE74A52244552B22C47F24576E4C44EDD24B69B5DEF8373018274BBD92D8AB68F4190BC7481BC1479ED5BDEDA027DE84B11044551B4301A6483A65864936C36DD6493C57637B16CA7B11DDB921C39962C5122C5FBDCCF4CBFFF0C87A664D9528A14B53CC280C399C333E7FB2FDFFFFFE71C295114D1FA43C1C11FEB6ECB86D1463FB88B0FA57FBC09B0E3C78F6BE57259F77D5FE5FB866184E9743A9C9999115DA0E17601DB03D805A78D8D8D99B8CCE0FE80AAAA297E2684F04DD3F48220F05CD7F58AC5A207B00103BDDB414A8009B8919191F4C0C040DE719C6100DDFDF4D34FFF4926932954ABD52BD7AE5D3B7FE6CC9959806E026843D7F5F6FCFCBC87DF8BED00509D9C9C34DAEDF6E0134F3C71ECC891237F313C3CFC479AA665FA1B0358BBD3E94C552A95D74F9D3AF51368B275E1C205FF6ED6A29E5C406BEA8B2FBE78627474F465F8DC61060D402D682ADF7DBE020D07274E9C383935355503A6771A8D86C5B81302BAAB01160A05F1EAABAF7E9CCD66CF846198E713E0869F7BEEB9179F7DF6D9EFEFDEBD7B04A4439EE7513E9F3F0001A4E18FDA066C7B571D6A1202606A01FCCE06B09A6DDB8B60CDEBF0B7AF3FF9E493FFD8BB776FAEFF47F0D35198AF01A1A8773B8BEA09DD33CFB03F754DCE03B9F0B5313B3B5B86CF5587868646FA050341F0A9DCED007B1A886E1E1CE304B424E08B018007209FC69A881FB7B9EBC1AD01B8FE48A5529165594C1E117C51ED02EB0748DB1A6037F8B3E9322A6D030D46DB1E60728050D6038CEE090D2678C0A66B00825CB6BF89224C24E6C9A6BA9189D23D6BA24935712F99687F38B93734887C53B22894A76E4032F78E0619E43D49327DFEB79106F9E06A43EDD6CACAB605882C46610DF6873E562030A580DB449561703366DABE53ED3B7BC7FF6BB974070D2A00B956831499F81882062D541E3AAA10D734CDA0D96C861006FB6D88934D3BE2B91C4EFB90C82761275A3F91B5FEFADB4C24360588A45B6AA4FF9D03C5C13D7FF50F7FFDEAB52BB33FFBF94F7EFAF6D2B5850A6A459F9373000B004CF0276E09D48C0C5C400802F743082B4C04C1807942EBFF5210CAEDA60D8F1F3FAECFCFCF972627278F9D3A75EA5D36CBA4E0BDF4D58C6F173423B6F148E07ED3B6DD9AE77835CF75575DDB5E753B76A5D5EA54DA8DE64A6571A9FCF59599E5A5F9A50EC040F181582F08BE46DF0104D013049FF57AFDB682E8825D0F7ECDF4E6A61A2C954AE62DEEA3DC2C9506D2B0E2AC5E524B7AC90B72B74DC143BCAFE3FA4EBBEDD66DC7AD398EBD6A5BF6AA67DBD58E6555AC667BA5BE5A5FA92EAE9417BEB8B202B0BE102200B09E3058328EE3085840D06F110C9CAD026E22CB3C9EF1C398E58CDF6D01A223D6AE0269DD0478B35CEA635454C7BE42ECA5A61EDF0F8482732D38B680819492CE65CC5D22327679FE0079222411E259244820B4723B81769627A246DB69C21AEA9EEBADBAAE03EB70ABAEED545C290C6BB9536D2CD7AF9597EBF34B75B60AE60008C46DC16C4647473BE572D9C5B885BE89FF29F97C3EC500C3B3BFA3A9B96BF4FBCF3C4B9EE3A8673F9992DA5281EC3B3FFA1E418C546B29E4D4DBA4041E655042EE3B30418BED559E57A5D013A4664C6A39018084A4A91184C26C1C91E5C3FC8350DEE7732045CAE040BA1045A90200EFF3011ADA5F230CBEB63C9FEA96EB410875DFF56B41E0571AF3CBFF72E9F50F7F3A313121E6E6E6C23B02640D42321C024819DA4139DB95F73B6D8B4EFFF6D338CE00D8C4A3FB696CFF1835CBABF4F907BF2114CAF4D4534FD103DF3B44EFBCF1F7D4AA37E9C9279FA4C71EFC037AEB8B5F51B3B24A46A491253C0AA280B2199D105CC8C8A5A5163D2F941A0F2590903851346121214ECBC3F380EF0B1A30551AC9E7CCC5A6BD73B9493BC1DF0FAA86FE05ACEEC36C36DBE6A997DB0204FB29DDAAC2946EB7EF7E7AE0BE3D9268F285417AE64F7F0874008E93071461208EEBD0E2D2A294F0E5B9194AFFFA43FAEFB39FB3B9532693A183470E4353829E9A384A478F1DA346A349ABF53A2D2E9669A9BC44E72E4DD3AE076DBC0C9A8586971BC312A0E802E5CF94AEC015142980961B928DF10CA6212C4FA3D50E48D0F5D9E252085F72C6EF8E1AE4492598A91E27D8F300A2C1A40609B447B57225E61B4DC5C01F2637D0687064884EFEF90FC8755CCA0D17694573E8D0771F251D32CAEF1AA6F7674F93EBB9B473E74EC9C6302E02A192619A34582892392DE8CCDB8B52705A364DE97183B46286865337A436ED20456DD7A0BA6DF600F3D88673060D650DEAA0EF280C38A4A95B8A836CA23C3D1883FD886EDC18A0F1F13FA476B3A59C3FF3795259D0FD472769F8BE2CE8D4A685E939DA7FEC0045F02D2D9DA29143FBC8B16D8A521A05302BCFF7A4F4191C8852024D4ED7F568E2300F1C16C4FE9875C80A5374E53F1BCC60A496300EC52565BC40AA2DE8406A86E69B055A9823B21B2DF8BC4925FA7AD7FC56023D1859E9FA601CEFD43FA3BD7B23DC0F494F9974E4B1A3D2FF34BCB86DF954E401F96DBA76FE320DEFF0A851B7A8B658A7838F8DD3A58F17E9C0F131B25A0EE5260FD317E72FD0774F9C9020DD041C4EC777C9197C10BE3E43666051551B833004ED7D38221F256803A96F36DDA156354D850597D45C9986E16A977EEB516BB1428FEF2D92A1CD1EFB8272D19633192619FEB4159266D24B625545C6D4D00749E453D25C0AA5221DFBC149F2AD0ACC5225556B426B2AD81283EFD8844086DC4FA5B73FFF98FEFD973F83AB71A7E853C496603C3042697CFFEA5C207D3A7B4250C659A6AA374883CA2AE502F8678410E4E525170402FD0DA5C81F74C89EA9E17D2558B7925440D13732D137C53B347826A2A71FF93E3996AD9CFFEC5CAFDD9E47F64B566B23EA8C1F1C23DBDB4985AC027F7918038DE83B130F4970F1E262440F815D939020BA6CC9A983ED055469BBB4FF893C1A0A5AB004552B1A09C7A3FA3238031D441983CCA22701C29E1082208CAEE0A3F82F628BE8743A5BD22027DA12E033D149D21EEADE84F6F61F3AC89222D5D0A86579189DE8B15D2E438877826A1DFF1616147DF41F7F8F7F3794D53911A021E41E221A93CF87D8D20E96A8986921A734E21022545AB90A93FDBACD84D2EDAF7F1137AE61373351857D902F902AC936A3DA08F9D998143404ECD10727D840E3D2498F09E42600029D13076CC4AC881CF8AD87601F8471FB7EC0E325447535940463434E8B0D6BCD736E7F6D155A84390B0EF20CDC150435C904E21680EBF2D34D4D14B6ACF7C546D9692E97A7DCAE1D6480FE351D1227113324CCA5E35890A0430D689435C5124D1B885DF0BD40A662AA1440085FE293339446AD4E416511EC3841050CF8F1E1631270BB63C1CC3B845C952CDBA26B5A9D2AF990EA2D8B0664E22FA41FDEE486A87F16626B3E98B0E84B2FBD44172F5EA4D75E7B8D0C84CFFB87F7D1EEF131BA6F74E79ADF5C5898A5373EFD05B28C1AF92C759854285FA34AFB91190AC51A8ABA0268D9B8AE4370BB11DC6B1645C368AB22E6F28977F1AC6584CC476D8258B2F80D6227FBA065711C0D7AFA8A641EBCC57A90837CA2414EBDA6A7A7A5F63834447798B5676B61A99AE5AF286B76304E2F362D3C30530EB4A8C864FCECF2C3348678C666BB6F4F81C2DD21356D92B966A3D944D8F04114D06027D6205F3B912B5919A848971A746316BE699E3D0D26C3D94A456FBCF2CA2B32DDEA7EA73B95990C3E4095303365C0CC3232FB61D38E4F3673475EEF3851A6E248964A033A5D412289680321B4E5801B08DA0E061F03B4BA003BE49AD0580883820059831C3B0D06B87640D20713905B61517D6161A11F306D56483333DECC4EDC5B4E3653AE4258B3D50EDA06A2C7A60ACE46B341B6EBDDA24151887D581171FF0AB932114874C798742D8AB6C2A26C8EEC7FD2448F1E3D2A4D34A91EA24D169698701230FDA998D7653E946052506118E7929281BBACA96811CD5FBF0E8DFA712A07A01EB4255082799974EC3E22F6417074DC0769FFBB39996EA0D75F7EF9657AEBADB764A79B693019F0461A949508C0F1A933FB4631D12400657C34159A3B186B0A85313E218828D50B05BF2756E8B26A729543D5AA474511F656F7226892BBDC328B263EC85A7BE18517687575951746A5162CF852B3DDC2775312439278B7AD0E8844D0A193488A43900A246F5921D56A06E506D2A4AB69108F468B0C301472E00C30DC202188E3A058632F2BD7D364623CA87260BA48EF1A11656D6416D92245412443D096E3A04C5ABA73A2CF3FFFBCD4086BA161D7E8D71717C83A17075936127B75194938D3BC4FD9119D16D53D648C6420538FD306E498782718D50778450DA85DC5E0BA5314E3EA127D150CD39EF40ACD764AB4375FA5D95A8146B22D6A3B26524083F6171AF455A340DA232A79E534ADE05DBA789C664596FC718F7484AB5F2EA1746D1DFCB9A294A32D870936D1F5CF32C534B5E0C736E250420EF6D525CA96907F7ED9A6013547BE62501B5215A1D14DCDB85D66AD8670CF8789554F438B4704AD7C06FF3D2468F91C62DFA84FCD1583E7FD887660DCBF83191EE24C278BCC812BF11C09354B4369171544288974A53D404E3D5C74DDAFD905A26F9CC9243EC603E4D43965706DAACA8C24F3C03E593EEF39093FCD6AD22DBC0C13898A802F9044FBBD54AB3F1765F31C7A54D0AA17D28E231EAD203BC9ED434047074C38850C4C3C3069E7619B2A516EEDB4BC0D2B5842CCC56F7CBCCB181084CA33DC128BF6F9E02D6DE03132D7E42CC4F6E30147289578C0EA401CD47BCBF84A488378B9A9A79193065D01B1CFC5A6CD00A7BD92F4B58BA224FB9FA7C1F84510602B90FB01E9623472AB9521E6E7F31EA928B704B29DB41E503352C22DF9206B8F4BFFA49A581BE742008789DA017D3935FDA6556F9D8F54C51681EF0B8C98D32721A031D74FF91DBBF8DC73A33FBEE01D1CE6845B9A67771A91C3CD4ADBEA91CD373D84A1D2F54CA13B26358EF7BC814755C3CD58544940AEDF61912CBEF0B41D4BBF3AB7F0E1F5DF9CFF88F7B5F1D47DE2BF202313DA2FA28FBD8FBC9CFECB3FDE7946CEBF70D7AC454D43CAE60BE2658F5ABD83043E4D5CB8C82400E518CF1CF0A79C938DBA73B14A3227AB10EF6CF9AF69A5B27F2C353892B64CB6080D09FD07BB8DA37FF391F24F5D1F8C362319352978FB631F836BB99EAC0ED06A116DAA88736D5077904C77E09A772FF2F72CEAC740C360430C802BEE50847230DCA5868132481DA183EFC91A9381B01B6B6A2FF98A949B1CC01EA6C509878FE61824FF2EEE9334C5C378C4A624532C1615840565FD0604392FEABA4147F87EC7F159E0375AAD9655A954DC72B99CE4F2BCB6C10B2F1AFAA8425B5E2A6D90CE5A01109100E45A1268F2288132E994BC66DF6521B01063105D574EB076031DC766DD14B66E1A61261DD78D2C24DD50DAB8760B8542B8A5389868B0FFA89FB9FEAF6FBEF1C63FA2A31B00513B70E0800380FDBB7FE5DEB7898909CED02B9F9D767E7CF64B651C6CA0A300D654E9DF5C12458C805711B548F1A5ED292197BFBC03095DA842E1C7303F39D5C2FC18B2C2E40E25A15CFDB231F3693E9D1FDC69EC30542534D28A3D7BA5F33E2F614C4D4DDD796DA2AF5CD236587DE27DA2AB4897EA4B4B4B363A131BACDB47737373FEE4E464EBEFFEF6D22FB2D9ACCE7DDE6E035FD7DF7B9FC918D6DFEB6F873E7BBFE76D67C89D7915CF3D7CF8305BD39D3598ACDF6D64A278E6E005B6C7A90DB12BDEBA29A1BB839137B2731B7F6565455957B66DBAB4D7FF0526DF5B14DAA83183ED2EA9850C6EB3E533B91E67DBB68F0E6B1B2C6B3BC8495D5ECBBBD39EB57E93DD12A23B2C73F3AE8FAD1CEB17456FBB468F02933563BFFEFAEBFFE6F1E44797C160926548EA57ECC8FC6F06DFE67273F42D1C5BDD8410CDCFCF239E87F6BBEFBEFBF9F9F3E74F77E93FFCE0830FFE19DFA771ED6E871D4FEA1DD41C2296F122629BA9BEAB55F7BDF7DE7B1F0E6DDFB871E3AEDE8CBE955C54FA20E382BF795D5663ADB6C09E1E6D837F0AD90C6084CA3B40106F57ABD573972F5F2E22333181A9C6FFFDB25D36E429B7534297D1D4B1B1B1142AF81C027E8A9358C49AF6D5AB57AD6E7888B6A50FF6FB217CCD85261B00C72B9EABA55289C189EDB2EB57D96C9C7DB149E967F3EDB219EF7F001FB18C82A58423490000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (65,1,'Network_adapter_(96)',decode('89504E470D0A1A0A0000000D49484452000000540000006008060000008380557A0000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00001F754944415478DAED7D598C1DE795DEA9FDEEBD2FECE626922645911263D13635E3F1468F12616CC09981B3F8C1405E922002F260C44F49300F1A60E6213230C8C30C3C40222441C6831960A031AC51EC2C1622C9B62C531E5324C5A529B2C9DEEFD277AFBD6ABEF357D5EDEAE6ED66DF963118A3BB1A85AAAEFA6FDD5BDF7F96EF9CFFFC55521886B4D32261D9E97CF8B80BECB345DA0E8F149052B25EBC78511CBB72E54AF2A1305E93FD7D0FF02380A68094793D75EA94DCED7615D77565B495E236A12CCBA1A669412693098686868218E4DEBA5F81DD04680CA61403A9B45A2DD5300CDDB66D8D97200894B85DA0AAAA8FE39EAEEBBCFA68EB67B359FFFEFDFB3E9AF8FB15D41EA069308F1F3FAE369B4D1DA0652189591CCB619BC1AA721B1F0BF63D6C1CB47100B40350790B8C6D677C7CDCBD7EFD3A831AEC3750B702AA30988D46C328954A39CFF38A00A904E12CBDF0C20B5F387DFAF4571445C9421AEFA2CDDCE2E2E2ADF7DF7FFF26F61BF878D7719C0EAED1C167BA9393930E40F5F69BA40A4013E93C77EE9CBAB6B6A643FA720CE22C96CB972FFFF3999999DF81044E6EE3E5592C174DD3BC5DAFD7DF79FDF5D7FFB45C2EAFE21A9D85850597D57F3F01AAA6C10530121C8CFCFCF3CF9F3E79F2E4BF29140ABF0DACB38FA155ECAC0C7CEED89933673E055097BE8B058ECC012BF0E0ACA41413D857808AE5D8B163D9A3478F3E03903A9665BD0749FD18ECE418D4B9CAED21A9A38970422ACB13131374E9D2A571B49B84892048F37390CE1FE472B90E2C013385803560BF48691AD090E9CFB56BD7DAB76EDDFA33DCFF77D91961CD02D03CC0CA82228D7EE52B5FF92A18C073300F23007E12F69218485E79C13566B1AFB33D4687C8FBCDCBCB29321E423D03F6D0589827B5014C1DC7AB90C455ECAF61BBFC9DEF7CE7CFCE9E3DDB814928F60BA28AC5E20C1C970AF015802DED4B40D352CA74677575D5C1BE0560DA00B10970EB90D275A8327BF3161CD7C27617046F2DA17F4410005A9550B17DB3A8E9983C963821AD20E8410C8607BBE8F139AC06030DBAF430F5B97EE1BDCCD2B9EF25348C9718D4208E78BCA5A5250F5EDBE305A0FA376FDE7CC0B6733B1A15D3B17D07665F2FBF35C1114B6D00F5676FCD521C743A1D6B3BA70DA0F7757264502F1CC67652D921AB171C003AE00240D5ED008D55FE00D0C7C6A850F70433CE3CA5014DABFF81CAEF61019ECAE3CCC201A003AAFCB668462A2F40E524F401A08F517B0E31E1F1E5C7007A20A183787A5DD7B795D0031BBA17F2AAAA4A1FC93CA04D1FC129C9DB11FB0395DF9B84EEE4940E547E50C7D44FE50F00FD25DBD094533A50F941A325D026651BE93CB0A17BFA902C3F2E523A48DF0DE8E5D5AD317C9A87329871C65E8E3B2DD812FB87FB5E42536124E74477744A3CA68445CBE572EAE1C387B9AD127F971C590E498ED71D977D23A13B39A5781C290B5C7358ED66B329F1C01FD73F61E59AA8D0300CD139D7AF5F0FB72454D2921BA640DD51A2FF3E49FC9E00DDCE2989739A5A80DA0F6175D9E167B35983EB9F78289519001799398EC3D42B181D1D15557C49351F2E2BB60CFAAF2AF07B01546295DEEEE4F0F4F893BFFB272FFFE1BD5B73AFFFE0CFBFFBD76B0BCB55E068713199E7793EF645755EA7D3090098CF432A00510CAF589625F67941DBE05711F85D039A1EC14C679BB67E378813E54BC5A3E73FF9F17F7DF6D90BFF626D71F1EDCAE2DA8D76AB5DAE57AA95B5C5A5F2FD0FEE565882F9B200868BF918586112F8FF18F820013E3E1E24E0A78187E087003EF8BB067E3BD00792D0840AE1876A3B0870CA34C8C6ECF123974F9C3A7CD9F624EA517EA0EEB96ECB759CBA63DBEB8EE5AC9BA655B3CD6EADDB6E575BD566A5B256A92CDD9BAFCCDFF9906B01FC0478FC864DC0C7B1445FE07960D134CD4DC033C0003ED80DF0994C868B3FFA019F80FE48D5F6C02A1F0DDFEFE0E5F19776CF393D241F40E6F01B65291523905282EFE2F56872D0833FB35D89BC5468E0F99EEBD84EDD16ABB96E75AD9A659A35B363D63A8D56A5516F54AB4B6BE507376F95DBF5B61503CDDC4D981776866CBEF9781015B0FADB018FCF31B84102FCF2F23257D23C023C576D33E890F420A18409A8BF742FDF6FC96921B9106E691B0DF2614D1C51492A91810EC8CB615418108AAD16E4D5090AD58920CC10FF6CC7F7A96B8764B92105FC8783BC02FA8E637975C7B1D6D109EB0E4BBD6555BB6DB36A3621F7D57AB9BAB05C5EBEBB501355C3B1C433F05CA0CD121FFF2FCC4D3FE0616E7C5E6BB59A074AE84E4D4D7185A168C3A00EACF20053DAD4115C24B6036514E9668866B325D16891252E7D3D800353007C485343D2D5A8C6828F07621B81C59D1FFDCFD21E49BC01A39335A26BF077B0350A48CBE396F24168CC72573810F5B6E591E904E4871BC0033196DAA6C7A03BEEBA0BB383B58A0EA83800DF6A772ACD955AB9F160B5D22AAFB7D3C0E307B2ED77C05EB836C15C5858B0F8FFD80CEC5E4253A1A4D4A34DB645E5DFF92CD92FFF579A38F6843864D6DBB478FD16894E8E4DCBB94F7F0C06694400D1EC4A9BACAD12D824B936150B43142200B31C4B988DE4E6A3FC402040B3BD102621E0C056809F6EC38053983A863F0D7D3F565005980EBE3CBA167740A084A48E40E247F818F81C354C875A001FA86D5C139FF3FDC086E4AF7B8E57F71CB7EABA4E2570BCB5CE7AF36777FEE2FFFF00921D42520300CB37EB0FAAF2C92C100168B8BA4CBF582B53E9C33B3D409B8D06DDF8C5FB0933105B3DEFD1F14F3DD773583E7EFCF2D5396A54D709B68B2BF6E81BDFF806756C935EFBF10F29705C723A26EB363DFF852FD2A2B54EB7CB0F890D8D0EF3A148610FF408CC20060AFF07E23F0160C7C67EE091A1CA02DC0D490F62A98E4053A041878733C4DCC574614EF0FDBE9007712DA3696AD3E596392D6534526076F87B609B4E425B7FCC120B13E026C5C5EA204026921A4F5E20E9C8710ABFFC4FE8F4C54BBD86B66513A2A374868A3A6D8BE04068A4581237B134374F776FDEA676BBCD911517F9C60E2C43F7DE799F1AE8143E7EFEFC793A34394DA3DE18DD5C9DA766DB2473A10A5075EA7A3624D6251BEC4BE88E2C930C44D49C41D9E122AC4C48195DA65C46894D8FE8821844DA3027F873611A6A6D5780A92912E50D59D8FB4038D89086722A1CA5466B2D4B7480B0D79EA3E25A05D8DD76A150E05A5869CF4EA9E7E501D6F3FFF1F745B12D03C0CBE8C4385DFADCA7A31B14C58C320D4FE6C86CF17C8692902013A6626D6D8D60C7085E97EAF53A5DBB768D6AAD06CDCDCD89E3F0B462FDFAD7BF0EE7630BB5AD7C304FFFE93FFC1E3EE350C7EC52B76BA2533A54AD55A952AD52ADB64ECB6B2BD4CC382467086A1C0A35767C0688B74A0F90206553D9FA6674858A5974882C09B0E379410058A6BA69D3705E874DF6A8D2B12353E0050AEED9E04411EE5FE672FA3DF1505E76F2F26A46A7C2F42805911844B86B1A4D4C64E27F259A3A364B874E1DE5AC1515868738BAA26BED055ABA3B4FAD768B0A30012353E334313B4DAFBDFD7FC92A28D18D5BBEB84937AE98E695CD8A6E6468787884744878696898DEBEFD339A9C59A0462B4B5399BBF4C07B86C6A4395AD43F29C008B700CAFB76D7A7F54E90B2CBD13E3BC927A74BB4062D1B2F1A6443706A1D0B26C113BE04DF2FA713397B8A94E2EC119675A8E78B64187FC4493D71A40529997BFFC6A608EACC27CE50E6C4B470483254AA303A44CF7CF612356B750188A429F0FE3E4D1C3F4CBFFED517707316045B222D97A125AF498AA945CE22557EEEB9D1360D6EF2BF0B89BA792D4B0128C5F55B2A4DFC7A48F7DF9769EA1F0502BC9CD2A0C9EC2275FD1CB9F0CF19C3A66A2B4F559896472538A0FBB5160D677572F11B87B21A55607AB61B2EDF13B1E7585EF4727095EEDDFB091D3A749B8686CE89F3DD6E97565656D21D41DECF894E5C380DB50AC11F71CC6F5375A54C1028CAE48BA4183AA9E041907F1A3A344EAD6A8339258EE3188015942776701B00FA1BFBEEE6FFD92E2A3A4207B2A83482FFD0FDF9ACD3A34E95059FE66FC05ECE28E4B74C4EF0E21336A967831E90614A82D7F1A3D97CB16373F03D7C1DFF97157AC64B3C45F1296AB59EA233674EF6E2FA0E6C1ADBC0B8E2591C2F8E0CD15AA543B3B379704270D1EE325D79FD4DFAC4174F90D9CC52AB1ED2C96727E9FE074D1A3F9A27CF827D6CB934756A82D6572B941FD529D0F290527F93246E95CC0D3310D2C8D9497A6AB682EF1BA7A6D5A2CC8551BABE148305BB180298100005704432A42FB01CD16999A647D9BA4BD323B7A8BE60923EA6D05B6F6468B1D586ED36716F36BDF0C204DDBFF7C1730F48DC63982AA4DB1DA0A00490C47B8FA4EF2469823EF399BFDA340B64E2D0145DFACDCF08672473B762D5A1BADD26A4B298831D0AE961396A2BC30B371FCCD3CABC49474E0674FBAD9B54FAAD33D4BCF78056176C9A3E7286AEBFF6013DFDC563A41D3947ABF51AAD95CB3031994D52EAFA5BA416F767BA2AFDFC6D83CC304F796785EAC553240F47F6532AE8F4F97FDAA1771F1EA74F3DBB40D7964B7462A2427F539922B5E992D600772F7AE0C600309B27E3C951AAFF640554AEC3B693347904DAC6A3116AF89125140E494EC7F2E1967092298C0430051F0C22BAC22AAD80C3B1AAACB5429A9C9EA6339F7E968CB1310A3F5C82EAC307C7637B9C760199A65C1E34D489AF0D76C7DF33F3C933F4EF5EFAF7A485F0C638C61E5891C10D65DE2AC2EE762D8B8C8B87C577555755D8678FD6CB3A654E5AA40E19E2F75C1C79977EBCF42C5D9AB8427FB376864E16EE53B53D44B3D2436AF8A3116BC18FD734B00D74BA767A989C1F7541095B717E41262E8E4F062ED3457103474A31A802D095B04C5FBBFFAFE8CFC7BE4D592D27DA75EA4D9ABB716BD3678F9C7B82CE5C3882102BB2498A92A7272E9E81648534F5F15FA3239A4C3EA4EAF465D0AAE230158E1994016F71951C4D3C751CD2322C38A13194A7A7BEFC1B7DA94FE2BD8BA963C387642A153AE48CFAE4142C6A8625611BFFDF9F82AB5EF6E887FF3343EAA590AEDC80313F0C2756EFC217048202B2FACB32CC02CC4C72ED64C92350413B1C507A07930CD5AE011D1919A10E445E8E1601E8EDF01E2DBE7797E62FDCA727679FEAD9D0D5D555B18F7651B8875EFE079F7F46543DF10D59D896B2510C1E84A374744C06670C687C62580031395112B49ACF4F4E4F6E0A2737C2D1AD514F2038A401677467B58D68076727A7C8D4A0B605CE60C15E3A91D3E19088B580C315C13741ECD971719AAB6787D1AE5683D4E711FB53B0292DD96CEA54A908B6146ECD990E1C7A727224B1A1CFD093F40FDDDFA053874E6F8A8C4647473706F7D0F4D08963B4B00CC750CC6F92AAB122A4103756EF86B4D6F41EA12B69E9DBEC791F3DC7DBD9910C95AB0E4D41B5D91B87219C4D988B3B6203F873DF18A31BAB453AF7CD117A6F718C3EFED926FD7C61929E79C1A7FFF5977E4F4267663AB44485A81352125A2C39343E1EF4C01C54E5A524AC4AB2F589840E4945FAC37FF69F37392526E94F1F9BDCC818C556963DBFB69554B3D4300509A45436E851DAB2938ACF8EE851DC8DBF0CEEA6039EBBB8DEA58EE36DDB09736BCC373BF4C1CA38B62DBAB38640246C93E94F4378577B91DF871F66483B1108094DAB7C2B96D074F1C7C0C3C84CEC755D179469A7413A0E39994F26E9B688AF0664E4B362EBA756CEF2B0E2E60D89268A324D14641AC9C99487DAAA0AFFDE8DB68158C3781BA4AE158A644618C281F8265884B6A99DDF678DC0DD587D4EE9617BAFD2122C2191D013275AB1E9D95C0C93CBB10D0D43CEEA393DCFB947620F2C77CCD817860A30B8919A71AC2F245412C9C29E142652D3EC72424482C4D83D0992998C40830C70C49CA1881EF745A744B2EEC7200835C6310BAAADA3EDE2C2328D79F37433771EF659A3C3850CE5EF4B74FAF859B24C130185499663C7AB4336020707AB0DCA7577A4DD4B54DBB64B7AECE5EFDE35483E1E0A87996633AE2B91656DAE59E0E112360103D326A1EFB1842E2C2CD0D5AB574562E34B5FFA124FEDA621B548A7264E21B6468C3E5C424F96E2A4AE1F4B48B4757C97FEFBDBAFD17846862D95D106E0071BCE2701DD8F259D7AC6231A6211F53E9C2982BE67750501864C6BBF5028F70590734D82B4B5E9AC050E0AFEC583B4AAA6936E3B00DF466701540B2BA2232D4067062D015A647E122FEFC31798540B8A1448C126D7C35A1E9BCDBD3BA5249667094D6CE88B2FBE084F5813E73FF7B9CF459E3D8E90543431541DEA9CA57E4520891AAFD43DD8C10FA96515008E8255C62A090762BABA50E9ED1C119B04F6ECB57628A29ED1098B9FCF1103130ABBDD41286C0148CE6A5958932D031AED3BE4E501A01C7FCEF3631EEA53B38DFD2C475421ED34B2BCBEBE2E58D09EBC7CA150D01380D25FC235B8E2FF5D56D070B324469F926E515ECA920B7D577597B21993A646CB20FB88A4CC3C5900D60B351A2D366828DFA2FFF2D66F930E1B3B5A3092671A51213B44A5536308330D91C098C7B55D84959DAEB9016202A800D3E91D135A134BA8071320B38462F5EC20A257EAD6EA18107B57EA39A481434FCEF5B184B2CAE7F37991567AE5955744CFA4E9D260F50152CF29BCF1EA09214D2226C7D675B3D82F6D3966611F12EC428D4F5EA54FFCE34FD27CB523A8124BBB0A63DBB64ED06AD3A4FBD5769C047645B26603CC08444E82A701160E4C8EA53F952F182ED954ED33652007625F1A0E93E1E48FE69400A87EF3E64DFAF6B7BFBDD55945A9B85D4BA8D4B35769E07AC98E3EC77AA4DBF77BF68EF919039BA652894970DDA0BFCA5B69F587CA7B2A71641E7582CFCF5112DB3BF7400D9F01F537365B4AA64DD5CA6682148FDF0F1ECB23C4D2FA1529735494A8F26EC7543686137606307D4E9453AADA06EDA1B06F0E5300EA059B543E0170C37E466BE0E785530C628A17A5007D7AFA698BE6FB149794866C9A9C640CE4C19223E94C7412CBB38472A6BD1FA011D0BBAF420C62FEB71380E97D96BE6C362BEC75F2D9F4766B30E06E527927653F37ABBC17C016C78427609BC9120AFBFBD39F86347ED17FA4282722F6127D24629F60CC93BE4E9F3E4D972F5F7E04D06498761040392BB593CA272B5F1B5C4FACAA302F9B497E1093FC3481AF19363DA83CA495C632D5BA6BD4B2EB6423220A409B948C4F59D0B5FC08C054E5DE13137DDF8F73AA3ECDCEBA8F907A5EB2598F8AC547C1DCB5CAF3831C92AA647E161EDBCB975E7A897EF4A31FA1C7AD9E0D4D68D35E2474275045E21740B274F2CA1A92A651FE36F17EFDB011EF2B5BC2DA34F58A96678756A9DCCCD00A8F9CEABA289C585E06706341CFE6278B69AAE0BD3D2DDE5BFA2E458FB48426A5BF24915049DE3DA0216DD8D0ED406589611013E9E45551A3E28528DF940E231F9754D90C6A7A99BB3E0467C4C51188940C43F882F1F1901CF9D12A43C3F0117EF6AFCE5377E93FD24EA9F7F081975F7E590C01F338FCD0D090B04736C068996D48AC24220CC7B3A3103495768B3A40126ACB91D0575F5CA3C5F290A8EAD1141FA163578476E55A06E02A22A00B0295464B6DB29D80E6AA63003A5D9A13F495BEEDB252FD636AA28CE489EA15EE34FECDB8352AE61189FDAC4A6385C364AB5D48678793CBC4FE71CBF3BD06CB8726915222A1BC5CB870619324B1FA2FADDCA3A5B5FBE2C67BC1626CA07C806B992E19232A423A80CA794ADBA7B7EF3E43A1E8729FE4C0A3ACDB45A808873421C731BC287223AFD0A01051545B6226E3C759A0009DE0D053334BF4EEFD5901DA538796E9EA6294473D3ABA8E30B424809C28B6A9DECD90ED45A988E95287569AF9C8AC1D536966BA41377E3E429D9C49E5F009CA1D9BA0B25D2073065AB36A915F02EE08AD3F0CE1A8A6A6DE23AAD147CE876EF7F08124AB54383D442EA473BDE13C62D3C27B73347FA54AE77F6B9C56FEBA42C77F6D88DA771B141890D68B1F4F4952BE2F0D0A57277AFB23B95842713F56D5A3B99F82D75E000FB63CEABC0D2A742C6A37BCD02429C8529091A958C17107925FC87379147DAC51A5953027C6BD3A8E4AEF3D98221AC3CD8CF183D18628A97FE1FFF4F353BD7B5DE4EAB087EB7700E8239192BC5BA7242E0C638D55EB57B91C3919FE0BB7499F8522C516FD8068AB1868874B2BAAF4688AADCF9A3EEF05BE48A688840AEEC7ED4443D63C65A2FE50EBB57F702347921BA97965394B4E4DEEE9E7BD9F1649F1B7BFEF8CE6D199A91A15330E9D186FF4B6D14D845CFEB877DA9478F99DA725F6DC443C769D9630D023AD4899A3E3D446EF1B47C6A8AB95C81F1EA6606494387F255276BA021BAA88C2ADE41A7EEA1ABD1C666C0A044B30647AEE4B15D1CE83C33DF7F9462F9A9A3865C12646A869C3014DCF767B9E81CFEDC8F31A3877157754017BB9EEF7B6D1C7C370AF4E89FA158A6D57BD1C0D371015A062395D8624C5B69455B6749226CF70439886DF8C8E8DCE8462C493ABE53CAC9C8EE3CF1C19CFD19D95E6B60EC68BABEC84DA03C4EF559E8C23A7807E22CD0A49E56575BA48AEAD88AACEC65886E42C4EC494A77D36436159DAB6929E47129A4B1AB927646AADAAE41E8BB634259288C1D631F93D8D7A6AFDC2A40DD3104B5308F55004403251AF74308CC774C22DC318622494879F1512A585CC1B3310D1B300A369BBE2869392C5C48B17331A087B3B92E06033456A981B3FB1DCCEF5F61D38A3D5D6C6FF77D6467676C48642E73F5DA31FD68AF4F473557AA3764C6C57BBA2E82DD8EB98D2D629353BD6D7535CAFC9F5F2FCFFB51B0FAF74D75BB7D01D26DF136E1CE62F04EB818CF9504C9F2BA9B16B7BB2E7DAAAE7F8998CEC8F3CFFE5E9AF59CA89F87ABD42D91E355A376D7A62BC4077CBCD4D3CF497B9F89A44EFD20C79D0B69FA5B691CA47D2B927094D5277715DD3F612EA47548601609EE9201EAEDE5F7CF3C677DF7A0DBDC84ED3E43AF6F48F88EDB20A64F951C545F6B1B95C38FBFCBF34BF76C78AEC5DC8A1277F2D4BB4E750A867D135262144A1E726342E798D067A597B158364B411244FD64802550B99E971AA368CAF038726B1C27174C7D5622C235CE4C25199A683E03B029ABFFC49F8E1B333D2D4F1D34E5E28B98FB05581D9084CBA3B4287FFC7F744EDFDDE543E97CB49ECEDD33674ABA78F9C52E46DD9730B2E1A8435B45B0788757CB61B3F907013A0E0AF8C2927C95C9E2AEA385241C64D7F627C5D48B9D975A854CC8901B44ED7A6B19102359A5D5131922F64A959EF88DA4D9ED33B3C94EB9DCB66756AB64CFC7643006A5A0E62F00CF8B227689391D5A8D5B6446D28F7069F2F15B3D4C6311DD1D81B35E7EEB393F9C9F3B3E23E702D8B4686F320F70EE5C2DC746A32433808B117CF0165D39948D34E2ACF0EA66020D6755CB27C1E4A08ABF8D216A2A8363F3D9CA7B9247382124A86EBF3D8B4CB85ABFCA877C7099A1CC28ADA288A6AA458FA1824B1CFA5372A0FE045C72515C77D499400711573728EF7E5DE754884C55252734551218622C5C7E2A11BDE17653DFC594572C42C1099EB0BE2CFF3F554418EC4DC299E8E93DCCB5E22A51DBD3C4BA6C69973DB131E7ED9E6949B5FE62A47C4E7D6D8D898333737E7F7A11BCAF8F8388F06F02CAD363AAE2903147E9A11DFA4E76B889C140194E1F988B7E1B40C55D85503CEC940E749C2612A62ED9DC3563734711D461EB69B749E992EA236FC5600A3731B9C67705918F8BC9F45C40614354DEEC88AE2E9B829EE386ECBDF2D988C248BE7F7B3B51A18D0940D957702143E26B8B5DCE84475C69C980B03D0A0657EC63DC04AC00CFAF1B742A1C0126A73CD3ADAAF47AFC65024BE31CFF0C9D0A3312BCEAEEB5051DFD78413D27183D98C262499EBE319102020CE19D81A862B40E6EBF8BA2FF6D9E24027C43E5F974D054BA1E1ABE218E746590B8CACBAAEEA8AA7F14409362186263A49D85B856C9EC38AC53B74E85030702C9F38A59D9E7B17DA5EEB8DDFFF6FFF162ABC085078D26C1DDB0E3E67F1435D1330B7CE93649BCAAFBC989A9AB2B93D77E0F53BFE4BDDBBAE0A530A03E5AB6160C78FDC0F35493279AA9C2A0AFDC8E267E972C52C185734F309F2A345C3CD201524E9F036BEC495BBF8F9A1021B1388714C889DC741961A467714CAA1AC047C4C10B850BA75B5FCC36C9E563F98C97E0C47D056E37E76345D771717CCFFCD4E3693C978F18CBA70A0895FC9A42F2EB1DF1AC3A7F69907D501087BF4063FC3997B113DE802D09DDE0F22C684795E7DA552E9A2D3FC6F7EF3D61F27EF1F4957FE6DFDA06118D236F3A9FAB597066D77F34AE56AD2E9EC84704FE2951D2C246CC6262727F909C07BCF87EE1829851CCA879C71EE0208B687F6EAEAEAE3C04C9EFF1CA0A7B9B837AC56AB3C6B4D761C478E1FB3210AD01EF74CE77EE7B73B96CEE5A686C5A53E15DB8F743C1C91CF92C9606E7DE7C9AE014D48EC63E679720F72EFB9102E7E8A83074003DAC5FB401250E3D708A507A7F83D4E8FFD7DE982B6C70D890F9210DA925C17F7F0C4134F88DF094109F694BE4BA642F32CDFC73D99317E92838B1EF4F9450334C0CB5592076A6F158B6488763749F0BFC3A5EF0BB976936D12D39A795A34B62E9CC7073BBC258C2747D86C67F8FD4AA997560D3AD364D025F8A86BAA4EE9B16BFC99BE82B22B40799A3354D8639BF8AD6F7DEB7BF3F3F30FFA39A672B9BCC8337421C90EFB13FA157ADAED20BDB7A336EF4205895F1200156655B6E1285ADFFFFEF75FDD5AEC70FBF6EDE5575F7DF50F00BEC56D171616F6E55BBFE45DDA0A7E76BD078A62B3FD7FE59557FE0FA474796358D50CDE7CF3CDBF00A8F719746EBB1D813F00340695DF37C78F0A625AC4313973B15E2545AB65BFFBEEBB6FF1393E9EE76912FBF49D74EA6E6C0B7B7880C412E7411A1D381D339D168D09BDC9CF67E277D5C56DF7E5632F772DA15CF2DC6EB7F9D91C1C1E76D380F2A323002A3F4AC2E16731C5E5D17400E80E0B3FA884A303B69100B4DD6C365B08135B8D46C3E1E728413AF9FD4B0ED3A562B118EE570995766BE6F8E17F6C22106F1BFC12C0E1E1E19142A130542A95F2333333FA3BEFBC73BD56AB35C7C6C6ACB9B93997F6FB7B3D770168F20255B55EAFEB5C34060AA5C549138FDFE789C8C806C56287E41FBC79760050CF9D3BA740D5C5EB7D45761891542E97F3D3F9CE0340070335BDA6F9EABE7E2FF29E004D81BA6D64B59F97BF05CB08F82E5A1304D50000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (66,1,'Notebook_(128)',decode('89504E470D0A1A0A0000000D49484452000000800000007508060000008661E9610000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00002D244944415478DAED7D098C25C779DEDFEF9E77CFBC39F722B9BC564B522B5214098781144BB148D986AD58909C204182200972208865048265C489A5C45010045060C7B08DC876C0F8889CC48865098E1C03146D4BB2A88006143A14459A22B9E4DE3B336FDE7D7557FEBF8EEEAAEAEA77CCEE1B7265CDEEC3EB57DD7574FDFFFFFD47FDD5ED31C660DEBF3FFDC6FFED037805F18B81AAAAB7E13A66E2C75CC72CAA2CCB645FE1B1FCC5C2D2C4E36828CC71AC5FE36E3FE9D8EC6B8E7B98723C6BEE8C79748CDB3E46FAECFFE88FFCD0DABC34CDC0027F41C0F2A3D1105E7EF925A8D5EBB0B37D6CC9849F9FD8119D66135B678E85891D962F97F0F3105B1DEFEFED41B7DB866DA4473A97AB2C42D305192080A7BEF407F0BFFFE08B706CFB38FCF88F7F2C1A786C4274C95A8CD8F3113E89D849849F4D6CB3DFA323F661094F5FFEC487DFF8CD5F8572A90CEF79F7F7C1EDA74FC35219E07BDFF33E387EFC046C6D6EF3412F4C6C9D986F5562DF00E197496C701C7B290F3EF2A37F1B3AED161C3F798A507A890C80A349A53370E6DEB3BC7FD1193B24B1F5895E94D8960D722B105B6FFF90C44E528DF5FA2AD46BABBCAF8005CB63008608C03C8F8FF4A92F7D053A9DAE3691863298A3B159575AADB278B961FBCC519ED48E399639AE37CACDF349E553EBC49A77CC284BAE57AD55E06D67EFE6C78B917F7123108D4CD179B3D9827BEE390D35EC3C92206368C6ECC625DBB415F452BA863E01F391E918EF373A0E38971333063E0B8FFD80EA05420A8851F1985F2BCBC3E3B0BEBACE3C1F30F10DF25BB5C5C7A3D795FD86FD69654138061075AD73E1B76CD7F8CDAF8DAE01ED5CA0DDA3BAAE52A9C1DBEE3B17A2B1C7BCE5AA004F83EC46630DD6D75713A1D580EB245873C03527021A3734893E1DFB82407E8065BE8FDFF4DBE7E5FCD897D7FAA29C26475DE3FB8AB87ED80E2FE7DF20EB92F744134705C4E4A25D864C072173B83EA2DFB05D6DACEA4304E36DE9F57C79AD7E9D7E9E99D7848C1FD86DE37DE2F869E28240C87ECA0B96C9008164004932293537426CFB58DCACCF6F2C24309F68A6113ECE044C27B63CCFA533BC36106D06D135D164B28898EADAD8357162F93623B808EC0721EA24F515125F49BEFD3118C10F91493181A20DCDA3E779CB55019E06D14430D57112E11731D004744E50FA83B894AB63C63469F64DC26AD7FAFAC46B84F46D424934600EC926B52208E89BF5922437C61026B195BA0866B5E5620466F7A5AEF1A51A61BCFDA53280D2598A726A108721B6AD3218530414126E1333D0A478AA646B13EEFB09C4502AC392667BD27DC9684C631CFBD880FD29C7CC375140D4F5433B661E26306C9520B241940AA0236F996EA04E6CC510FC66E622B6EE42994C202053487F04E311014262C4881D97E618E1557DE6D0C39AF4FBDAB58C994CC089270DD148E5B8743DE3689128E11602987A3F8277965087B1380270C997311A2E945E6AB92A806926BFB2761721B66D249A926D4AB44E6C75CC12245B27A009E352FA2C1837F4B8AF082824D2D4D981A577FD29BA9CC58C3836831158A2AE8F5FCF98D5170B42151C48BDECA59669046AC416C46361C7B3086FB87FCA704920B241405F23964E48DF847B66780C964D2021D80F2257521C9BF0AF540E4326E06D69D7070BD800B6A48692CDE640839069E2926FB89CEA5A4D05702F200896EB069AC40E64C7B3896D1FBBA53C0821548753DF926066314128E5CCB4E299AE4A34222B379105F3D802BE110F308DCB20A6BFFDC08C0FC419C6D2F989BADEC1005AEC228C4348B51CAA80546AF90800A1EBA119810B84466D3D6D103E46EC2091F08126CDBA5E8FA45C6FC38F4FB22FA5D3E1BF27EB70531DC41082457DDAC476E97DE630F8981584B283583AE308006032A01521C1728D40DD67971DCFB3E821021781A6EB1D8477C0B80AA6D806986F076234A9D583412A52181DEBC4888C3BF3589378164179485487F41B069A331269790F9A356F4BB6CD003A33E94CC364EC5F451E17A4FFA22A00C20E23BF3D986BB52B7010C0B0C69925D931C3CDD4DFB67BE60AC82886D3998039D0454813B99B7162C5022F86AE9E6DF4457A5B0B11BB5C3D3B546C4B7C603247384E16D96342C8966E04328DC03A0324AF7031A647C8148C27C0AF6FC3755CCAB97433DF72FFE2563A633282A8057358CC7A8F7EBBF4B6322E231BC374D76C7D6D33811DFF9FC6443AE1151A4C23BE5203BA11B85C06E02E07335482E2BC2426E037EF20BCEE9EF1897111DED7265C0B141956B2AD3274824A48F775D7CE77C5DB7D53E2FC6466088238F49BD7BA209F85167B1203B85446B4E89320F9A15706E13270B0DC405004314C11D78A0EEA6BDA4C412E33096FBB7026519564478457C121C355B35CACB88F1E98923DC5620F9C61578D309AF4334B25D8AB8371E3CD5E2164A6CEB70C3F66B569D4B1BE63B481651B814C9378197F0E8CE8A0B60660F9C2BE15BF3708EF33CD555392ED27125E197491DE654EBDCD82C8F7E7DF8CC5092FC3CA4E89B70D3543D7B3B82BC7125C3DA7BE675397AE23A68AD02389F8A0A9E280B1E5DA002216207F4360650569CBB986FFCD346207A1FEE6019798F1E65BEBFC0EC9F6FD7072A20822733380158767FABABFCB708BE97B0723D8019B90A00ED877187CD1DA3EB37E07CEDC02D3EA6753D433005B2E0348C8D76027EC385C226631BF5C4C6A145D13F01EB7DA85CBA507762CE8F6FD702214E1FDC094AC407333A7AEBBC7023091D168C60A024D02592C30E4D2DB2E48D763FC2EC2C7247E01E21BE979C1928D40B5F810ADDDEB6E616059ECCAE562E17ABD0AA6846BF86AC995E9EE1D3342B581A643155CEB913C97DE7546E094C1A9C3B28B491225DE91F5E330FCE23ADB36F6E2BA3E66F0CD497C3B46132CD70D9446A034034805840C61186BBEC3D717D01FADAC69411EDF541531374CB3B623C233B79FAE196B2A4DCC1DB491710939F13EF32DBDEE0AD4987EBA0EF14E7F7F1E468845F698561EA580CD4A9F0CC2B4B5252F07078C69C11D08AD74C64CC32C72F34CC2C7247B4A968CD34A4FCA9A49CC037410DEF6D50DA964B1689D2B049BB4B8C362FA7E1E5D6FDA113A13CCA3D385F5CFCC70FDB25480CE617493139EBBA741318B96548D45182B4D2AD0B275ECE5517F9AFFED6B4112CD88F36DC90E587C793546F864372CE9D895083A4DF7C7205E259926105F97FEB933ACF595DAE51A819AB509429AFDC984737C943861E9548BD811FC4BF7CCC1043114B08CB199849F12420D2CA87745E39C04760464A2312B432E9E716C5BFD49869F6D442EF4A7858297EB068646A0CCE143424CAC6CDB100994B1C63D0093F0E6B132C67C9EEFC72CC23B17631CEBE6E6B55AD086B13844C75C34795FF6220D3325DF6DED27196F6EA9662C39B07328E2DB6EE0F2034181B201B9D4930A60D22FE746973C8EDC30661886462C5E115E4E8CCAF73388E94BB5E274F758DCF50B9283327628767624CE8AF7BB8C3E3BCF3F26FD49EA408DFFC689CF806979014B8E03E83901DC7A4715E08719377AF68D06DDC65ABA65F42544E27483CC953AC5662CBBC6974FAD85166770C6E587C7E3EF26E4EB0C902CFD31B8D7087F23C4B7D3F596BE354C6505F14E4905C4D2B8584C7FFB52DF33A6790192F089BE78C2EA99DBA8630E23CE659DBB25D415D29DA69F5D8B3B86C433369D092CA95FD4704B7203812DDB0B08022D2F50A475F97E6A661C3ED4F7464E9B9FB870E2DBA9528C4DCD9B635A7E5C3CA6EE32F41CC659C2C24EDC804B807F0713C4B77C2D81F8861BC860D1E616CE090C8DC0D006F0E27176630DC0B2D635FD1D37DCA225DC64974C23A0964E1DD7F51A4C4F0DC2CCCB00B6BE77BB74B1EB0D23310EFF37EB2FCAD5583602A8E0845AC34F4D0CABD954037E14AB772EBED81B33AD689CBE31D2B757D484959FE8AA4D594B8F056D12FCF2985BA874B5C3784B74F134265816F14D15C08E4E05885D3B307B1935B651328ACBC7207A8AFE8F2C73DF195173FAEBC012C3B549C69B4BF7DBCC054E3D3F1D31D832882F697144F9004C8B5031340003BE5DDCCEA563C64E1913BAC375795FDFAD635BF3A67D1033FA9CE1589765AEB67A3367C83766F91B56BFBDDDDCA1EF8D3A71048824DE540937FF4FCF0738222350C08D3202FD78E244E22E187710C645789309CCBACE289CCB659B06D55676AD4DAC443FDF70E12C8488C1FDB2896F0782961C0A0E1F6AA0529121DAA51A58926D66E2306333648CA086BE5793E986785DEA8125A0438CF00E98B63759588B30361398EE9DC9502C543771465836F143DD7F887E320B028DB148418619688B1C4ECBDC09DD6ED8379E8EE15A4675847F67BB648AD8BA51961C98B10334CE889DC6044E83EF28891FDA00E60EA1A57A013201804BB72755413C0863AEC5BBB635B977C1C4213BE6FEB129113B9B0182084D42C94D4CC470C33FB376DE305B1D2448FC51105FB701D8B27302C30C20A502C887078DA87E7C3D3D3179C2159A0D92A36B494914B637605BFD717FDDA1B75D844F24F06CE23B1337970C01A167B2FC4860E40570FD0EBA5BC6DC615B437FB358E64EC098E9D75BF17AB0176A5C8467A6CA5061D118B1020784CF88E0E976030073067ADE34E2DBF900CBDE1D6C3C1184591B2BA6866399635F9BCB2F8F74B66A3F665527ACAE25866413DD335B6F9B718138ECBB08FFE6135FD7FD8B2A9C43A585AB2784FAF6E60B2D32C7021BE6DD8994AE4C1A434FDBD9B331972B705AE646C42EC12F4F6282F8824EFCF16C4CEE920A09FF26113F5C0D60D103378E260E10FED6B27D753B80262894FC08EA59901480B16302C991B93009D2E1BA19C61B3037FC3B2CFDC032DC9843EA9DD00F6F36F1415377CB4E0A65663E40B4F923391FCECCA40DE6600287AE76E87E96147A75A0453C6AE75613519B2EC227EBFDA3B1F467A98023080507563E801FA6746B811E434FDB51B660461A95236CEB20BCEDD6C5023496653FD5E0B37DFD298CF05624BE1D0A66EC08F3013802F80EC9D7DC3ADD1A8FE5CB057AC42F49B2A767DF44EB13F6F553F4B813FAE725FC5B8DF8DA6AE0D2E3004C7F549C72FF7C737F5C109890EEB0A65D3179F7B26A1231130CB8847A497179B7BE4F420E786B121FACAD61FE11EC0B502921E4054CB474AF242460D6E2492C34EB588C09B467E0B04497CF45D0B8DF3F4B7F27133EE9BAB70EF1F5743D26D5F2D18482D51AB46F1B68B6E4EBBA5CDB15AB1327167889E7DDE93989332DF82984B763F6E074F9CCBAF01627BE124E1A9AEF2F3529D4DC0CCA3786E85140E6F6EF23D7CED2E7CE0596B8BF6D4B6CE072D36270ADA3845BFFBB24DB752DBCC5890F2CDA1A269E1EBE240650C40E830F0133167B18E8891AB6CE9E6298B9883DC57D4B34E262F03D2FE183309072CB11DF8A04924DB64415C0CC7C00A63D965D93F69011F4094F78E2852EB56E14B0966695BE9B01F78A09D59EF979243D16DC61875B637FB354C011E504EAF90051F8D76DA5CF5865B3D7DD8125AEC7DB1B28E68DCF27111E9CEE9DF6815B87F80A8DD9D1A8002D12187B2842C24A5B6292855B1500242FCCD87A7E26D1F5BA1027384C41855BE52FCACE129ED9728D40ED91302C30F7E839E13DD0E09DCDA1DFB5C7D0B81666405F7CB1166440837F988A00DF39C48FD602E452F532BD8070F32668A1602DE72F69D1244884F4A46BA64178E086EC297A1D120C3E606F5606CFF26C007FA946A0F68CA014CDAB6F46F2DC1B222C29663095095C126D246418E7674BB953E72722C0AD497C3D13C8F397FCCEA0E8E9942928952A90C964C395C2D8E4AA90B1A583F5C7994513CF4CC90C8D30701FCB97E4A97717008B1E57A7B707461D300C3BFBFCADF8575F6D181B4316FD5B5805288EF3F01F756EBC3FC0D24BCE332CE1158D8E972A324779E24DB229679DEF330448BA98CDB866AE176532FD6B0EC24C7979E5ACA1F78783105D177D75E4A11F171FB089F59A764DAAB4FC0193EEEED7C8E9EFFF5DEC35EED1CCCDF37A1A98F3D8E86B9157C23A8EE77EC9F4DC6F484F7E133ACFD35CA60AF0B528E074C23B88ED20FCDC6F19D3FBFA2EB16342139BF3E5D9003E7F2FDD7704B16710FEA6115B6F7FEA4BB3E72176125AEACF685E2A03D08B0967BFDDFA50C49E83F0DF25F66C35B9D4BD81AFBD7EE145ECE35EB7911637DA98F58A70665A4687F86D5A4BCC3A79B8DF36A3B97E43DCD85DF4B7E3E91D8BBB9D2CB9441E20407F71690CD0EFF57F17FBF9D85FAC49BFA5FE86787B1F5D1E030C069FC319FCD87727FD2DFBF7EF5F79EE999797C6001F78FF7B5FBA78E94A9FB16045D795C990CC1C30C562B0655BB4DAA54EBF5C7F7BA97D7D2202B1B89FCF58DC696756BC823999DAD6DBB6203884406FDCB683A6AB3AD33252B12EB36386C679B750C8FFEEA21CE32D229D3FF9C94FFD1A5EFDB7F4A85ADC13701983F13266BB8F2CEEDF3336C5DD89C50458A2016A8ECBF166538711178D2BF99CCB0DB6C71CF78812E6C2753FAEBEA6CC0F7EF7F0E0EFFEDE7FFFF5FF76D319E0A77EE6DF6DE1D725ECC8632C61420CA67058D2CC65CD2633879B612CA6704D888B0113194697F6690CE32E8B334C32F19219799AF024307932538CF0BBF1F9CFFE97CE4D5501994CFAF14EB7EF8D4643235E1FC6E7C9FDF040CBFD13BFA387177A722BB91C6810C5E00319D7A7870DD0F9149AB2EBEB8DE98193F9276486442E1745683E2E5CBAC09FA3E4B9A4DF7323A9C7E7D053CE5DA2C745475A13502E1573F57AED7BF1F0F3379501D2E9F407FEF8AB5F838356EB48AC9947DEF90ED8DEDC7248C7F4D8C374145940B5C450E1704CF1FAE58B70E5EAF523B30269BDA6D1587BFCA632C0BFFDF47F4C8D46E3C715F149420BD91CA24286900132D90C3108F47A7DBE5EA07ED379FA3D9E4CA0DDE9410ECB33B29C3E5ECA836BBB7B90CB64453BF4498BBAFFEFF917E0856FBE18B693CD88EFEEA00FC3FE1052A91496C97EB05D5A1E6EB73A7CE2B39914A4651FF4D9DF6F625F291C374732AC83EDE1A7D3EB85B905E9748A8F2D8DE787F4FCE3F124DC0C92CDA6F93942AAE1700C2ADA8ED3108EAFDB1FF07951DCA4C6D71F0EF95CE91E118D61C27CF002336ECF25D913E8E8799E5187E68A9034E5E17DE031DDC3C49FC8D5598F970DC723F2D468D1E607B0F09FDE3406C0C979174EE26A2E9F83D16804C55C1EF29902F4BB1D68F5DAD0EF7590F81D78E0C187A0B9D7813612957E5379BFDB863BCFBC0DEAD54D18F4FBD06D1DC8736DD8DED9864A690DE1CE837EA70D07B2CE70D883B79D7B188231F0DFEDDE3ED669F3FEEE3A7B1FAC5636C4EF36F6DB156D1D3F7502D66A1B3041C2D1EF0EF643D7D7D76A50C3F27C76458C13C7D3EE35F9F1E93367A158A889F1E0B5BD8EB8970D1CD7DAFA6DD8D628BC8F6EBB0DA54A09B6D78E41BE5084E1A0179E0336C131ADE23DAE7362A9B10E7A5D585DAB43BDB2C9E771321E8B7358278F4CBFB1713272E0657BA3499F8FB7902F86C4A7FBE9F55BC8E82B50AF35C23A9DCE1E647345C8E70AFCF7E5EBE7E1A08363ED0D6EFF1B7FEF9FDCF95F7FE51766BA84A979E1BFD96AE3641524B621B7912422A186C33E3FF6272398A034D18DF073FCD383019ECFE70B9C71A86C20CBE998541C3D2E5EB4D50FDBAA552B14740ADB19A836F1BC871260F421C7401B2288F8BC4FED9CEF8F2198F8E178543FD4A698F87EAC7F7A023AAD7B4465A2BFF178C8DF9344DFFA3D8E50EA5442C6501BEB60D0E56D89307A10CD177E469341B891733C1E85ED4D709EE8B7CE18BCEFE1087C36D6C2F2014789D1A81F96E5B279FE7D80CC9A49A79EB8695EC0CFFEE267BEF6875F7DE6D12BD7AEC2EEEE3E1411C272086BB97C16E13107855C16F22B7978E38D4B789C871CFEE6E7F03A224CABDD851E4E522E4BE539E4FE0CFF1E21C1AE5DDDC5EBF1B7AC97CF67A0B0B2027FFEEDF31C42F3740E6F8CCAA9AFDD26492FB645E764FF796C8BE07077B7C96134C3CBB02D6C8FDA7AE3C22501BD08D7BC0FDE571A5AA896C6A331D79BBCAF7C1EDB236845A9EB1351275C4564F3A23D6AB7D56C736375828425F8A73E8A78EFCD568FC3332D93FB93A83DFE3475F9728DA8BD2C571BE3B11F2EB2A9F68A851CAA93311F87C8AE8ADA6369847A4873759649D19CA5B0DF0E3F4765748F4D44315231EF7CC7B9CF3FF98B3FFB4337CC003FFF99FFDC180D4757BFF2CCFF495DBA7C059A074DD844A8EBF72308A4CFCEB11DC8162AD06B77B4F236C27E171E7EEC7DA8535958A6CEDF71D7DDB052A8E3EF6ED80E41E436B6B5525CE53A382A17DFF73FF808CE584A533178AEDF8153A74F43A5BC69B443DF9B9B1BB0822A23EDA563E7EEBEFF1CE4D345E33EE878EBF83634D64E7194E86BE7CAB512AA817528AD548C3A2394E8F59D6350AB6C186A43D429A34773CA80792ACF20F14AE506948A9508E6B17C3246E62E95509D6D49B5310AC7450A7B6BE394810E9DC10134EA3BFCF768D483572EBECA8FCF3D70B65F2E96EABFF2F39F1EDD900A40AE7C7FAFDF4B954A4594D811E7BCE150874001831E493BEA380171BD10EED022E5868980B29E518F0CB5C17010ABC3131B2613AB8F3E22011A68E8860EF47209DB5427EA23EA879061E28FC3F6071A0CD3134C06430DFEE53554673C8ADFE318C74A46973DAE2EDA15942165A80DF9194F861CEAEDF6A8AD893F0A09A9EEA983F00D2CDAE5C355896C6B826A96E698AB0DD91E19ABA1347B844839AE1A5AADCE0AD2EEB11B360211369F18224C968A2B28697D0220D4452328D58AB0BA51E5163C417B0F0732E80E60FBF816C2D7490EDD742364ADBE76E10A87CAB5F53A1A2D1B1CB6B308677BA81AC6C8F1C5321A378D0A4219C233B645CF1EBB72E53A6FA3586AA0BAD8E230574623ECA5575E872CF2ED4A310FD5D5B2501FDC3B1842FB609F5BF1D5B50A34361BBCCF2CC2F0C58B97858EC46BD7B1BD6C7E07FBC940B38B44458F829867A54CED95B86A234B7C77FF9284E514D4B09FC6D62ACE41112E5DC53E3CE16E911A29A211BB8DE31BA05D706DF70D4990A8BD14DED3B5EB6F709DADDAA371D37C5E6FB690885DF9DE059F433AB517A0F57B7D8F620713A33D9AB7EBFB17D1E24F7322A7B9D79282EBBB1784A7802A288DAA40D806233A4F76C0970ECD00BFFAEB9FF5B091C7C56B5D4550A35A2CE104A07B83D6E65E6F3784BA336F3F87EED9089ABB1A9C2234DF76C71D5043882203ADD58CCAC7A301DC7BFF43904222F551051CECED87F078FB9D77219C3644F97E2B84C0CDED0D64960664A87FFCDD6AEE86E7EEB90FBD83FA263FEEB6A89DEB42351D3F06D56A8372D879BF4DD91E19ADB7DF73162A85350EBFFD3E8D41B4B773F2046C344E4815D0460F006D186CAFB65A8172710D89570DEFF1605F40F7B1DB4EC1FAC671547958A72FCFEDEDE1BD57A1826A238F567D382FA8269B7B4D58DF3E8EF7B9CE8D3EBDBD12A98DC60E27A8AE862018613B15EE09104DA86CECA37B9D2F43B158E648438C4B88CB1902E0FB918C3F71681580D2FF20927D8B60A52FAD66144F1302119AF8FB7E7D6658D30309CD6992688273AB7C7595DCAF5E649D6B6D920F3DE46A43D511B0CD5F48155AF4FDC8ABA073811783662AE706164A83EA577D46DC73F043B533D0C6409E0349A6F21A54FF64ED937AD055CD407ED33D8E4603D19E767E8C563AE5EA8BB6A24F178D350A7FF2310CCC3A1384776A6BC4613E2AEF1C1CF0FD985C6DC8F954FD2A8F4605A148BD8E2693FB7FECE3FF72E7D0084010427A9FF47FBB2342CB43F453098E57D1BFDE4098CD6609B64AF0FAA52B50A9976075BD86F02EA0892612E985FE2A1A36F934377AD2E92DEE1D1410C2CF5FB80CB974162AC8F1ABA41E78B02785708E1281F09C2F22ECA3C199CE6C713593C5CFC54BD778A0A78C2AA8BE5EE5019D0C62726730E6129E45585E2DD66123BD2E023868F15F454F83BC83C24A16AAB54D6CEF18FAD919D86F915E1F236C7A38061C7BA3C6DBF35055ECEF5DE7AFB9A136561BD8DEE63A4A5E05C77C1506A90E0FF6E48B591CDF067A073B3C204BD247904DED91C158C7F6CAE5125C45CFC9A34D34482C6AAF8EEDAD637BC1640C57513DF8F8ADB79747CF65AF794D30C878CC619DDAA380D70451E0CAB5D7396353608B826B835117AE5E13CC4E01A170DD82827268C3E1AF270FCD00A467CA486072B172784CD04CDCD8ED2ACEECC289532779E0628865ADFE01970AB2FEE973E6DC430899357E6DFBA0134ADAD6B16DA86079C091A30BADFDA8DE5D67EE474B3BCF7FB7505294941D43682E976BDCA512755A420AB1CEDD67CF41B6B2C2CB7B6D259D5DD8397102AAE53A9F1C82675229743D3DDEE6D8E97BA094CF0809A7F6FAA2BDED13C761B546D03C16967B5B1A9008B9456CAB88903BA4FB93E31B62BB5B278EC1FADA717EACB717601B2BF912571BD42F6FAF23C6B7B1B309DB9B27B947A5B7574311A6F9A471F7641D75BF8DED4D54455BDC08ECCB735964D8B5D51D1E9FE041A6DC88475FB98D20EC8027175601FFE3735FA8A13FF93DDC67463F78771F8D1F343E8668BD721710DDAF4EBB052D84A511FAB3011A8ABD6E17A5BD0DEDF6015AA14D3C6EA11ECB7082D360BB619D7D1E152384A049E16DE1B56D1925A417480E62759AE8018C78BD01EFBFCB6194FAA2BABE2FBC867E4F8CAD8D65ADD601F75CC895A22824D914A24E8B8F8FAB2684683586AE1CC3907B268370DCE43676B09F2B972EF1F0EF48AA0CDE9EEC6B84D70FFA6DD95E34BE0BAF9F471F1DF879826C7DEE06FDA1742307E27E657B972F5DE494218F47B41BB54784270F82CE295A903741F73F1A0EF927831D5220AD8848E2A5BC277EF2939F4A2D1C07F89F5FF85F1F223EA0F8F66B6FBC01BFF0CB4F421E1920ED797C558BC7C1F183E804D995120FCE00C5B789AB1086180EA8582EC27E67C4B791A5405C4B49A5740DF9BAED832E874B5546F58AC5027A0743AC2356CFA82CC5BFA99F22AF934AA78D3110EC0F26E89D8C261C16A93DD197070584E0D67E57AE614463E0708A3ECD080D575187CE8B7AC56A951B6362419385F5C88267D90222DD805BE6748EC64FF54AF51AD6E9F0C097DE1E568154A184E831E4A8A38FBB5CABF260943F09E4669BE87E0BE50A127D889EC3586B0F50FAEB70D0EA8AA7B3C9F6486590814E86365F1B40B5DC4741F9E0F73FC1034458EDD19FF9A99FF8FA422A0075C707D23C729643FDB2CBCB4AE801501CC047A89948C922376E7B15F5D988A26362C0A381305E0A08E385FC0A8E272342C56311E6240FA050AE42B5B22ACA27A23DAA5746A6A16822E9625FF5416DA26435B0FF3A5AF474FD98D71973F7AB545C8511DA1AC4707C5C746E24BE5790016AD80FC5027C5FB647E7D0A02B35B660255312F7E30FF9D8680CA54A954336B1FA84CEC9F10D7A2368ECAC42215DE4657CECD816A14C8579611DBBBD35ECBF80760E49AFAFDAC3BA748F2B850A4756EA27BA5FB4BBF0DC6ABDC211C00FEF778404F3D0135841DD5F08DB5B29E4D1E043BBA398E36A80793E778BE9ADAED5EA0A964D687570310620F78F8C3FF2002E5E167E748AA538C4122C2AD784B8BCBABE8DB0DA0EDD9FBE8CECE5560A48807559C73C57DFD8E106585F8B02D235C4AEF915D47D03BD8EA8576DAC13C818D753798086518EFAE130AFCE8976F345F2ED2BDA98C5376363B87B75438CA16F8E2143A1EC429D13975FAF8DA3B6B12D17A97ADA1870DC69945A7411297C6BDF53B9DEE048C1D590D616C5497268B006A96CAC3D422E8A8310D4EBD1C803747D374EDCC1A55DB53718A4218F0295C27F54E6A54420A98B6AE3C4F16D448C0EB983FF666E15F0FB4F3D7D3F22CB73DB5B9BDC25FBE8C7FF155CB97C0955409EAF7C89D7BB89B7856F6DADC32EC2320B63DDE4A6087DB471EC04FAD003B94B58D6A1FA685D5750FA065D8AC6F964EB86E71BEB0D68B6066269543E8790FA247BA18E93DF6F0FC5BB8598843BEC73ADB10AFBED110F52D118789B4CBCA1B44A9148945CF144B3897833097E089A73A5356480A1D60FC1EA043D927568B5C518F83DF167204CB89F5D45A62175C7E4B562A7F304C7BD0E4DAA13BEFB286AAF86E77A9D313F0EE4CBB4A9CEDA5A1D5ABD094FA611ED4573B4B6B9091D9C07F15ADD80DF2F04A2BD6A639BEB78F19E669FDF6F796D0D061DBA1E151B8AF51851F7EC997BE17DEF790CF6F70F82C168D8F817FFFCC79A732100C13F2D56542B2839689C5CBA720556B279B4DA2BF28DDF63F98D6E4DBE806EA2D82A2E5E113BE66A80A2992974F1CA95827C7BB8AC8303ACAF56E0A0EFA36B754C062C3C315932A1627D9DF13791C807D1804C91E1DF85B5A23C1118091A8DFA8A5A260B1F56CD1F5F83FAB5400B2944149E9F402FB9A20863018865CAA5AA7CD8E5448E71C217A68AE88292F6A409F7E91CA910BC2FB2B8D3E99AB8275A69E4E726A8EA0A901D045C7D857324CFD15C96CB79F1300DD51E9EEFB4BB50A1DDBD7E4A9B23D95E2607C36C005984755EA6B5974603428C7BC2999ADA2357B1847603F3858065D2015CDFDBE56A1BE9921AEF4FFE2AD974733100B90EB55A8DD28BE0A597BFCDA34EA4A746C391059728F9A9BB709A72689C1D8490AC60EC5DEB5B681B0411ECC9F3C710962A8DE3E81317C2278E532087D9EF1F0C5F30ADAEB15F53AF5D1368D7B069D788DF8542018EDF713767705D65D0E7B6D3A7218F2A601CC26F744FF73DF44E60E38C5907CF1D1CAC41195D31924CBBBDD3F7DC83705E0D2D7D1DEA1F78F8514073219A3B796EA7BF83B0BE0693DE24A686EE42C9CE66AB22EA28CF6D1EDB41FBAC10AA85EA6A0D2E5FBEC643CEB4B278D06A3F3E17037CF94F9E292303FCE5F5B555EEFFBFF2DA6B42CAC81083315AA301373AF2F9141A18456E81769B3D1EC449178BD8611E25A5C20D2E22C6088D12B2BAC33A9522ACA22EA78DA6640C8A18B648C9A2B689BB5384CF3C1F2E6DECFB174810C4B26CC5002582F07DF2F19758020B8C57DCD2A42849A5E04C3A5544B709A50DD1A986D679A737E42843CBC0644354CA68748DAB7C557180862FCA03ACE0F585420D6A7E89AF3B104A7154B4DAABA03EEFB4FBB2BD4CD4DEA4CA73FFC800242F83B797A70496121A74E86DE0F83C3FE0C136DE1E47830A5F93A00C2B0ACBE60BB44C5E8132DA5BCD832E9F0F1AF30ABAEECDDE015F86DF44B57AE9F2D51F98CB084CA733EFC52944FBADC0D7B23BC8D1F79F3D63A52E99A94C6C07C2081493CFAAD1539AA2D52A2FBEE7DFB38D1247BEBFDD168B8A98D6766C038117DF47A5C6AE32F8CC7A2CEC6F2B364ECF48EAF720BEF75FA83273F780AAB6A57E8307B14D085E7CC317B36ED0B3F6216CDAF5F0DCFA31D59F108ECDE3C7A14B696FD0804AA5BCF373BFF4CB67FFD93FFAFBCFCF60009149F2E7AFBCCA7B7CECD177C1638F3C7C84E9DC3796B9BB77FD3ADE74372149D3B5F123F9B906F666905A7D15A5B078637B2112368D3A72FCE31B44A7EDB84E4862A5C4966FBEF0A2A06D2643B49DC5003C7498D0B82B3BD775CEC514F1146FF7A6871BDB60F1C5DFFB02BA4AFBB147D0B87ECF5BA67EDF7DEF19F8C11FFE6B47B32964D174F7694C113107D9019F4E64806FFCD9F3F76632E93B92367EB8D3A61DCC70449B426C29217D3F409D9792E951B68BEB7279E77BC894F87478AE5D7ACA4EA1241489A3DC9B8422EFFECC93BFB1F20FFECEDFEC3B1940483F9B83E36630C591EE148A6E7E6F779F5BC58B1075DE0F198FB4B6900E1960BEAD656EA67033C03414393C5318ED16F0FB3D78F045270350F6CF8D6CB0703EA8210E4353206A966A71ED148ACA5EF9F6B779BA9A7A8AC96109ADBFF144FF1C349BDCBEA856AAEECD2133B6962D7FBFE15C5BCB9E7032C04B2FBFB28206E05F99DB0073318536116F068ABC7EFEB5E861967312DBF59673FBA3CE1173BD71FE3C3CF0F673B375B7EB29278E5D448CC11C4C715351E471A70D80BAFF3D58A130DF7EBA04E698014D4B650AFCBE7EFD1A2792CB888BBD9AD67A3AE93C6594D3F7E20BDF84773CF8D0D1EE379CB6197571A638F3D9DFFE9DDBFEFA873EF89AC100A4FF6F7887EBA21332278A24BB44A66AF9E08F7C8847E26210EA7A76400C322DD5A2AE560F6094D7ACADAD713B006630F9DC423363D7F292540BA1C07F3218E0F79FFAA3EDB4E7FD3153C1110A59C8A082471BD36470270C4878FC0F3CD5A847EBD81E8FE3C8CBE99CC73C554A411EAAC21F34CBABAB1DC49EE84B3E7E4AFC52D7C9DDAFF23FE3DD89F6E560F8791162F23239AF54C9A9608E68834551244FC561C45283B84F6130E861293118118AE43B743D31704F4CB007CD66D3D3422E20321AE4B48989F6C250989C2226D328A23810F3C43DF38950774E7310B62D13123C7EDF81783C179F05508410930A81B84A8E4F5C2F532FA8ED405CEEB1B077EF7D3106F8ADDFFEDCF7E0D7A9303AB6A4BF65B51D6FF6E6F5E3CDEEEC16693BECE2DE0FFFF00F9A36C0A5CB5752F34CDD436F3F038DB55578E995F3F0EAF90BBC6CA351C7F2B3D0EB8FE06BCF7E83121078F9F6E63A9CBEED385CDF3B80175F7E753659BC43DDD6E224F7DE8CB6932F74550932015C7D026D9A633EACFD490D2ACF95F8850F3E7015DEFBEECB70F9CA0AFCD6EFDC89768920DB439DAB70FFA0092F14EAF0F5F2D6DCC30919A0D7EB79B3871CC0737FF675B8F3F63BA056AAF1C450BE25A9BF0BE9A005274E9CE2A04D8908F4B77FBD0DCD0AC0EDC74FC1F3DF7A090DB4117CF76FCE7DFE993EB4BFF22D08CE66602FB709414BEC301E0F2EC2EE955DA8D0C2D064150E0E725C555CBDF4025C6323782077199E5ACF833F2792840921773CF0E845FCDA996F78413C9FD4538FBB30E3E7298F56E152371592FF22FD319C3F8FA52C2DA19E1E6210123294F296CEE9664FD2DF375E79EE9977180870EAD4B17F7CDB89137FA95EAB3E9CCD644E99ADA7A60399177FC4DF42BA6A9147DCA63C3B94CB6E44EB7B72FDF150C49196DCE189BB78DFDE94B8B6E74DDBE7C3FCC170F4AD56B3FDA7AF5E78E3AB5353C23EFAF14F9E6281FF7E14F2F76345CA2459BDA906DB61D1600920F2561ACBACF14CDBC9EDA5EC7A1EE5A43D8BDF7F886CF6F4380F5FFEB99FFEE9D65C3981FADF473EF291747DE7E42338B0C711F8BF0F47F1087E32371DEA6E68BEBD9BD853BC495BCAAD5404FD5B252130ABC3D8B59E199E3042167A6882AE1B8D065E40CF8147472F972F04A9543A00ED7C04C0DE79A4E81F4190FA527BD2FDF23D5B5B079FF8C427189B42E41803783208F0E10F7F58A6E440AED3E9ACE4F3F9125E5B49A5B2DB5E367D8252E239FECAB8BBC773F43C361C0EAA572F5FFA9484A4CB274EDDF6AFA5674C4101A66C08A68EC3404210EA358F7277E4790D25198BCA28E98756FD3CF5D03AEEF4ABB799F063995AE289A7270BD73860D1F900C27AC22D67625C344C2F7C15A73A2F9FC83117F730C66672A40826CD57E7EAD5ABFF7032999CA3E36AB5FA1FCAE5F24B7A1D392E1F7FF7F198A4BC8DE3ED8CC7E37E2E971BECECEC8CF7F7F783FBEEBB8FD90C113200111E894E4A243D1C0EE9592345DFF74B38D01A36B686A71BF8A9637919EBE42C2BD0504D588F3FAB0409C4F0335C2E68DE22C69C45609B9966318D889B255F83E7033C3F467AF570FE69E7E93E96ED23ED9A58DEC6F26EBD5EEF3FFFFCF3A3679F7D76A29820A3113F8B5CB25228142827B0861CD740E2D113896AF89B884E08404F23CA78532C1F3A45EBF1619C4AD4393426CF2B75F2193DECB0ED780B1864C18CD773BADA7294B145EBE8D31E5808268F5358BE82DF69FC1490116A488B0E1E1FE0F7FE6030D83B79F264EBF4E9D33D2C1B1313700620C93F3838C8168B4522721D894F15572467F6F133C24F332513FF38F0CF79430EF533F3C6AD0966F34CB2482E352683CD43605A3D94D295742D4B8A66BAFA50AB918B8CC16628D7DCD9755D0C4088ABCA0271017D4D32990CD1CFC76312DE1C32C20855C1446A66162200EAFA42369B5DC10A59BC08053F4D1C35159A54A753741D5BB43E65F5DCACB666D5A5DD44F3B43DCFBDE2BC259E57C1B179EE655A3BF38C15E78FE96DD1A7D7EB31B41F7C14F4C9EEEE6EA8060C1B00B9C27BFAE9A7397EB7DBEDA5E8EC4AA5F21DF7ECF88D8D8D5BE29EC808A46FDD10FCFF013D9216EC86CAAB0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (67,1,'Notebook_(24)',decode('89504E470D0A1A0A0000000D4948445200000018000000160806000000DA7D5C880000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000041449444154488975544B8FDC4410AEB6DBAF190F330A210A6483088F031220AE48C0250838844B243844E202FC037EC1DEF3173845E2C68548110214E58684142910A415E288C2E3B09BD919DBED76BBDD7CD5B6871976F06E4FF5C3FEBEAAAFAA4B38E7889FEFEEDEB393C934E8B0EEBA6E6B0C6BD7AF1DD6D6DB61ED76CFF14F5AABF6938F6F448C2B697856AB42AC8A0A1FF4204CA4EB9A6AA5A82C4B529857554535AC62ABFB3385A1B5F6FBBAD6188AAEBEF77E38E26E084CDBD26C960FDE388095D4349A4AD84A9554AC0BD88A8AA20041E949ABB2F27B3506CF9527E4754D67086A7811CAD04B520D0045B1C61C110074DC63908A2DA2E82352BDC5BE1F58378DD947D0501004BD671EACD880B357BCCF000CC66B55F5606A00E53396B48512C6EC21D090833FDCF5B418EC1E4F871CF83CD57D1E2CC0BDDCFB08147463C07F3D2D37A01A675EDB21E97D527B700DA286C1ADDD803603D17F08142D97CB8DB628B54186DA27B1AF92DA47CA964147702E8CEDC7ECCB0147C004A39EBD87DB9EEA1D50AE30D33467C0C78ADC93E49A56EB95978341466D7BD01E8CF7D98EE0E3253D43B03707A5A262B5F660DECB2D298C693696815B00FC1F383F8C71960080519252104614C5892F379B5B5486F1F30E49E444F25C00DBC38364C7E29779F53E8996ABA20EE22C13B2A3006F498B1B4D63CF71BD75431FDA6A27DB3D8BFF78FE785D9CEE101C1E1E06172F9CFF0D2FCD6D67BD17D61A4A93D4B04FD8C7C0BE75D43A5E8CC0D619D386AA6922308396A37402F2FDB5436082E4AD070F7E7AEDCAB30794A529803A7F834FB4F1B948A7138A42E9E5AA2ADC09E428839C420684F64B1A3951A8B8288A484A49C6B6CF7D70E3D3376E7FF9C50F0113E4F3273E4B7148EC21F40BD00BA759465916130942521B8AA4C03AA5499A500260F637065814C78834A63896C88DA3289014E21BD1B59F6F2258E4F9BB095EE44BB442834B626EE502D5C0FD49A2820C15429144AFAAE07D18711170C291ABD091100211C6D4898E04D0A58BE9E0994B573DC1F7F7EFCF93483E95E713CA2145B7EA289FCDD036349D3B97C3434909A20B211194A793E36396DB93A78868369950E5CBD950CD7242E216525E38BF98DFBC796B2A1E1E1D5DEF6CF71527CDDABE22EC581996E7967E79F833DDB9FDB5BFA17C895AD3D2F50F3FA2E75F7CC997EE584976F38D2F0076E49ABCF3EDDD976B65EEC93090EC214B834A68396C2E78AEEFE274993E7DF9CA944F6D6BFDC78FFE3E2ED675AB21BB602904E459474A3E19B4C29D844E4FB21690AF8AD7DF7CE7EDCB970EAE2DE6B3579099088D2AC8B249CDD0F8869C10C39575C37DEAAFB0F046F04D415D0AE2E26CDA4646C20AD706FA71511FFDF1E8CF6FE442B63F52755C9CAA9317106680212B291B06E9F8F678EF003110B1655986F5CEDED83E50AA1685F8FBC585FCF51FBE850151224F49460000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (68,1,'Notebook_(48)',decode('89504E470D0A1A0A0000000D49484452000000300000002C080600000023163B670000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000B1D4944415468DEC559CBAB5D67155FDF7E9EE7BD37B9A979598AA58814DF087954AC03A926A21050D041111C547120084E3ACA5470200ECDD09150C89F50A3246D4144A4A8A54A620A499AE69A7BCE3DEFFD3DB66BADEFB1F73EF7DC9C633BF05C367B7FEB7BECDF5AEBB7D6B7F67745599650FFFDF1D65BE3E974D2DDDDDD05EAAB2EB0772897E42BC63C719C1D03AE6D6ACF84E4A8B587837D68B77BC397BFFF9D9D3ADE04967E511CA5228A60BE289E0074BD4284A601AED1B7022C2CAFDDEC3720A08C45B68CF79002DA1878F7DD3BB0BDD5778B42F542F02B1338034A69D04A81327849055A6B944930BAC4BBE267AD0D5E34C6D8B134476B9619AD5C3FCED376BEC1B6A9B5358DC7773DF7DC27E1DCC5F3B056018940B22C85331F3FB5E4E6CA22B4F062B100591450E0B5281650C411CE25AF210853F0A5B58442E28563691C2959E0189EC777091295A4B694EE4E4A4A3B8FD6A339D477F6ECD36C90F51E7056A089ABA8A10D812F78F16261C15B4524832C8A1A58A72081550CD48E098011AC7DB66DF29A74C0692C61F17DE409F2DE7A0F283711EFCB81492FF00002385280C0A232852A1CF80A68212B650238B6AA6F4B1EBFAC8076CFEC01A2A5B1D45BAB80929AE3402E79C082B78B579696CEF50B2773206A962720812EEC095D79C029A3950CCAB0B5D9F2D27A8DADAFD8F3A4CC7A0594720BA8901D183C719EB949D491C1D20C3E80A940781AADB2B4A58FAC59D9C582A38AF7867263E8D99051F5260A68AB2D2D48812BD9F20B509EE3B2E26CE0BEB77421036DF4129F95B3AA0D4CDB5635C594034AA03D6DB433A64F241BC5000DE220760002A71D90A29E316A160D63A40AAE6F72BB0AD460799771BC320CDE29E22DEF7FA529D9B81B5368369B39DECA90FA0260B2B2E37AE0B8942E73A8269F9768A20358E5F8EE2C2FFDBEA18302F59FDF77365280AEE974165EEA83D7E7679F65FC8B97D3A0A5816B3B4A583EEB400D25AB6C6737417524F8E001B98902BCA882F97CEE324E33C87C36B1608AC396AE830BFCAE2C2B6B96D635DEFBF6AA54693D506EB69115D22E3A9B995A0036B96E39AE02C73D6D2A4E7B4A5496B7FCD69C32BD3296AE6A2D78EB01D388892315A0ED5F5116620FD468510B48EF91CAD2AAA28D03E3C79A005686F862D03E3DBA7E4A934FFA1957C26C100376C3507211F27500BF1C8035609EC7553AACDA0DB00E3C1769C62ABB0E3C7B0015909B78C05B69EE36AE3AD0658E372C4BCF35EAD0D6BF0C3E04A9AEDA9B80670F108536F180A703A5D13A005553C297CD3A585A37BCD0B4B4E2D2447BBED33E63FE37F0DE031BC500D3045F42556600BF9439A4B2F54BE0748D327E13F4F421901EB8EFA7FBF297E05A0FE03EB01985A4A5825C142E8F5BB09C49743DAB54015881D5559FF11F2E9EE7FA4383670FE03E4065FC5A056883E20F16AA7F54F5A5550FC82AED2947151DC0DB71DA01AE7D7D19FBA5F561C05B0F948C6DAD028BC26E5285F34000AE9B99C37BA40ED27E0C5596B63CD71F19BCF580E1CD75BD02987D28E8C8033618752D1875C30396DFF56F5C1D64C6C94AD7FEA83FF20065C68D1488E318CE9C7D269C2E344E073098888FE04ADCFA1189FFE8AFC69B705C02CEF8DE0B762C349E7DCFAAE7384919DB060A20CF8480284DC2B1880725F031AA018C6AC721F571EECCA471358F50569CFFC0D1472AFCA79435DC3A05EEDE7BF07751969FF71880ACE88F578C5DCC78EB186F51E70D6F31BE4C657163411BDF0910C01837BFF246607DB85532F187B50A3C75FCF85FA3487C82DE6C0DE1ED85F62FEDEBA8494FC2F6970001631944C6D9DD4FA01E1144252B6850204A671FD7E55F4A4D613B4A4F85585C5BC62BEA99E147D7AEA5D93FEF0EF003A5E3DDB8CC73DFDEEAF7214D925A6CD4385F1B47963E24AB5F18E407A33107A8A71069CF638DF324CF058ACDD18B5FFAF4CED5AB57CD4A0F3C7D30FDF2EF6EBED9E9B75A1047D8898143A53405755128D8DEEAC2603886043BE338E5C5F356866587846E3B87F16486F32248D294B358DEC2FBDCA0A2E421C1992B41A595466346985621E66C4531A71161449C8C62DC7B0A5C23C38C865E1606DF873814664635E9BFFDEF7BE710EA9B1E73545760329BFDA095C5B82C400781E55902ED2C830C01A508AC93E79088185A282F31A546961D7C4498E33CFA7E88059D626A10D89F21184D60886B3846A0C27124AC0CFB80B0A38CD6C75C8BA0F1DD6504598277118140598AE073C490C402B124301B4F7F58C7DC50204FD2974A7695807EB7CBE796090227CB4528A3D21A8DC532B20E8129B5BDA7E82D819C1571C47B81408091D510E582D88A32CC6E4944C7B490A1C2B4C9918CBC4DB2143D4D4793E4710C189E4BEF3568FD04E79177F193F69B2B15F8ED6BAF9DCDF3FC34EDB0A4BD7216C3E95C4EC4F8449F97112EDA428A91F962723DBE103130580290B88826ABB31294926D9EE2F1E44152A88D6B185E83E60A966569E2D20552334BAD0C07283E2504DEE1E3383AF593575F3D76488176DABA4CBB2EBD607FFF313CDE1FC0DEA33DB87BE736F373EFD123984D1730194F60341C0055C20F1E3C008DB1313E18C3DEDE2330B2B4321C7F707000D3C918ADA7E1FEFD7BA87E0C2394292C5548B6FFF831EE2311CA46E8E99265B3D914AD1CB38C9C665C4943734B493B3D50E210FDB4F7ED430A6CF5FADF9BCDE64423D43E873C6F43869C7FE6D96771B108033247F72790201FF3769BBDD46AB7D8F4295A2E4D737E6EB73A4C170A64CA5211F2B985E3C99329CEA56C1C71F6229A952CA33E92B5F099689AA6943C0A3B374FF81922633D857FDB3BBD971B59E8C68D1BC9C79E3A71F1FEFDFB40FFDC4871521C277CCC8E020ED40C5D9EA22CDD3A0ED21087018E1DDB0152BA838A50205242691FEBC1683C46598EE050E9A9B4CA73764A28C930E5C84B31A527CA3CC2CA68AD946243A74415A61F15973417E90DD3598195C21C4E9F3C79BEA140DAD9BAB0B3B3D53A75F224CCD0EDAD3C63E05AEF32DFFB0888AC132539C783405E129F39287171CBE198EF14843EFF531876FB435C2F45CAA19DB1AF9553BA9DB28CCFA93815A30CA949323242C9E35A309A4CC2384A103BA86BAFD7A104D3FDD5B56B9FF9D92BAFBCCD0A60CABCB43F18C277AF7C6BA970AB6F46E6C8CDC8B8316FBD710BFEF2E73FD9F2D9D8CD88EE435762D3D817BEF2227CEE0B5F5C39BF5904DAAFB043EFC271FBC303E8669D6F2074AF40EB925905DC2D4477638E005E53F23F18C883C12094D8BEB4AECEFD253CC4206F5F681D6D0C7318F4113B3B29F04BF1B73B774E25DABC43291707095B81D8B4571A4EC6546E90CCF695B6FCF0322C05ECBD34E2D6CD9B30DCDF771635FC5DC1DF05B5F689DD1370E1E20B4BE0CD61659E5082386316F34E765C9CFBEAA5F3651485ADB9DFEB726AA2CA31C1BC3E99CC51D681C783030E362EA09AE514AC6892E6AEB8F397B38BB02518A91C71E9236C9D6EED465986EBF4C54E217447C39971A4B7B7E6E2C17B7DF3F46C18DFEE1E971C1038A3DD4ABE96BC7FB03F3C7D6CF78D5EBFDBA605B496895D94BE8F3198B2D44CA7E36CABD79D3B80E5066A845FA31AAE8F17ABE54E61C88B24D60B19E938D3A311EEF3EDB67CDF143966BC39293B180EA71FEC3D1A876AF4C73FFDF9F3268ABE9E08F112BAFC0C97B3488FF1F8A0D5DFDE99FAAF03FB725F263B8B05A0411A9EABFE2559B5802BB821D4A291B0AC9C8E471DFC2C15FDAD9D7189324CADF770C8EB5A8BDFFFE6D7BF780F1CBFE1F2E5CB39A6CB4F61B07D1665CF535CDB45CBB8288A3EE6E001FC1F7EF47EB69710FE40888E25FE85D73B58D5FEE3FAF5EB1F24D47BE5CA956DCC107BD8F13A5D98DBD912740A40CF9AF67AA0F23A096EC73EB448DC908F46A3F072EAF372BA0F8743A8B7E98E3B6EE3CED4C9F3128DC96DCC687CF76D4CFFE5C3870FCB5EAF57DEBE7DBB24ECFF05DB589B61037CD4180000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (69,1,'Notebook_(64)',decode('89504E470D0A1A0A0000000D49484452000000400000003B0806000000CB8C8CDC0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000011654944415468DECD5B7B881DD779FF66EECCDCD7EEDDBBABD74AB22D591BD98A2D45D8726A9716424A1289BAD01412421312F2809842FB4749FE0821500CA5505228D4C550681BD3FCD3520A2E694A4B6DD21857D84965C54AA4C8B6B4D99776572BAD76F7BEE771CEE4FBCE393373E67177EF75ECD2912E73E6CC77CE9CEFFB7EDFE33CD608C310B2D7C51FBFF18F06679FB16C1B0CC300A289E8A272281FE2B2782F9EF1068ABEB0AC68557D440FAABE88BEF03BDA5852E392034BFA0E39044100E572F5854F7FF2E92F6579B5A0E0C206CDCB977F040FDC7F0C0ECF1ED198D519D207347CF092B984F12CB3E9B6E3315BCCB8DE7708AB6BB7A0DBEDC0A90F9E6916F15A2800CE187CF8DC5370737E01AEBF7553D5EACC251F8B98553509434399E54A308A59FAC715939C274C0D4558385C21FA58B8ECDB46141F3F3627781A59000C7B0A5800B76EADC3A38F3E540C2D35888871AA6701C1CD176D033F10D0A332C38F8B67AAA7F701435AAA97343E3D131DD1631F8CC93E98CF54FB40B42126C47390DC659D6C4F772EFAC21F0FC478CE3EFE6B7068F62094780863218021539655825AAD3692BD1263BE110018917D73E0A101262A95E3C70D13EB1957EF70A03C8899E3B1C07C29B4F8A73D2B814642D37F42C04124C08446084229C1E1E32080E0828CD1C0A9BC97BD92E47DCFC341A210E201CBB2EFFB09233E69DB8F99F5D5A0E51D9FFD2C631A92020D3D1183513D8B10C4D20208985004DD9932AF910420E0CC6463925ECC6C81A3928C7931B392E1B41062867DC968A0988E68220D927058642A7E5ABBB13905416C42C9B382BF32151D01A44429203E0E0288984B049014F5F0A539259DD9B81C09410D4E6895EA844D6B08114C44CF7E6CEFB1F68B20CED2752CD27E90F809A6A381CC8B4B04F0701C0190A756D00F221348851D5050F6632DB358AB91A675F8B3944D4BA846F5FE707BD6A09ED4B358B84C738A4CD3BE14028B191782606338C19071051F2E3AD59D20173695D8B3AFB497D6BA5FE0C8F6603628D2AE0679DDFB6799CD685E1742A4443E9E13948C4B5F1024F19673CD7E75C635ADA718925A2621F128140AC61254140981156835ADDD48185250C45C221C96304F8E8F820FB50DD97826C094FD042222802A4BED92A3F22326E2F0A5435A693003FF34B3AC3864A5EC3A613AA649BDCB403ECBBCCA5184198FE30443955CF0304CEC2890DA968E8B49FB2721F84A43E259D56B4C04436D39EFB1F5F0A53396D57E9CFC28E8F39420B8885E5A4893EFC270CC4C50C5D03896335FC24C695F786DCDA675ED096DC7E50266B38CC719234FC33F622EFBACD3325D080CB293BB502469638741163BC1813B508CFBCA0464E6E6FB69CD067A28D2ED99B31CE4130F9E81BAE6CCA2B436096579A80BA6F970E6A5098012DCD82620A5ECB99EA6E5248E8B4164851067632C1FB3335E3CEFB915B319CDCA2C2EAA67855A27018543201E4666CCC79C0CC9461C5CCF958C8AC167E2B866E7A94424C8DAB51EB2D2F13B6222CAE48A1C1AD7CB3C5FB7EBA526766321808551FAC8C01B7871D84A2727699B4EC767960965413CE820E7C52386823D99660ACA3AECF7BAC2C8A4C772825116A51010DBAE9697B3CCB434A56DCDF6F54425501E3C1DC278AE2E7EE62C867EA2F94400A35CA172E86C1C13887D000AC0C3890E0B58719292D126BDE7713DCBC56A1D01C2B1E90CF3B420B8A6FD94D615DD38979E178C6502D4C873339A150C2AAFCC932968948DA534AD249F4A6062F816309C6152178044001FEACC7645007B1708883518FA99D95690C4E1A2EC8CA773F304CE2ABB64FA3D6FDFE259094087BD10C4102DEEE5052432C7F1013C9A406022E4BB5A36C652713CFF2B0863997095D7384F79F68886EEBAF6DF1DF33211928A1C270CF264C09EE7A76D39483B3096736C459E3BE92F9DBC24CC650522EFBF1AF37118A4AC968DB526C8955D9313C499DC1078A7B51A79F4200DE742E635ADC770E76987C7A500C25F85793D0C8EE304E522825A0F200470B52ACB8BE3B4F4B259046418CE6A387EAF0B407F9799D4BC6B00842A7719733D20CA03FCC04B79F38471A5ED4CAC8E53569ED874CCA85E97D5BC629A84FF5E31AF87C181DB1F5D009EEB6A4ED0CFD87ADA69C58C6AD0D51D9ACE645EDBB23ECCD8FBB0BCFE5D23001538E8BBA30BA0EFBAF1828898FD65B41F331E33BBBB4D739E61BA480891CDBF87CCC7D361FC5EBF3F06020694FF076A49999C208F4C408FCF19EDB2226687084038B7B4A37B3F988F5684C88449A9A30B00A5255784E48248A4F13003EFC4CEC3BC7DF3BCAD872901A87228CBEF07F3FA6CB03F8E09B883815817B46D078E3F781240DB18496D5B67373FA34D4CED9EDDB4046D733345AF6336F5ACEB3283ED1C5D86062FC334A1D7DA01771C27D843B8944C43F66BA81D216D1062D086B6736BECB1451E9F07C897F73A7730CE1984EC06AE5EA64DD7D105D0EFB51DCB2A1E706E6BBA60DBAC88590853DA1FEDC005A4CF06EC71F822DEB582CC76B91040D01E59008B0B2B7F8FB74FA5CE01EC79CFC37FD4FBFFC1D53543F6AD910570FAF489375A3BAE8BC94839660E7449D3D8433A3E13868A0B55A1DE84C939072A1A618C52D1D8503DA82E8D10D21BEF4AA6A2B7F8348211F230E540C2E8B31118B48189021D093024ED2BAFBDFCFDA5910530776CEE8FB07139397E928168181A6A9446627F61E1719930733C2647A79D26093375D9E33145FD696312D148FF8E0CADA283CFFFCE673E7FF5DFFEE9BB7F3E920056D6D63FFBF68DF902A84782C821425C8F7DE83454CA65F9F1226679916078CC080FF342C86EC92F2EAFC0F64E6B6C133A74E0C057F196138091EDE4DBCF3F3FFBCA2BAFAD2D2EAEC044B98269AA0F139355E8763D8CE7AE280F0626E6031ECCCC4CC1BDED0E1828E992890C986541CFF15DB5DE104BEA9CFB50AB4F8AE48A730F6AB5090C49985BE01CA3522361D948D703A76C41A954837EAF03E57289CEA7882CD4B2489326BEB390AE0F56D901BB54167425A7048E45E3E923EA39B6AB8B0C76E0F5A15E9D04B364804F93B9904167D00DCFCE3D3AF39DEFFCE5B6CEAF998384619D773D4F986DA904303959A7608A03B4617AA60925AB2C98AAD62A603BB64862CAF8EED0EC213940BB0453CD29B1214AC76226EA55B5AE1F40A55A1186ED7A03CC314AE2084EBFDF11266BD918AF7B6D4441008E63A1900648D717E198DA4B3A79C426A243AF80CC77051D9DC5A1BBA0C3B17B580EB19DE7F769890BE9060673828F67F9CD0920F0D9A74C64D8B66CD8DADC869F5D7913B5DF8795C52578FD7F2EC2D6D636668A1EDC7CFB1D58595E424D86B084EFE66FBE0356C9868DB5DBF0D6B5AB38A736A1B5D5866B3FBB8A032AA1707C5878E726301F132CD386F5B575E8767A683213D0DA6EC1F6E6164C4C34C147BABB1B1B50AF3590CE81D59555146223A62B9916D24D235D20CE204D4F1F4244381060BB99E95941E7A3F01A8DFD601A657CAEC354E3200ADB824EB7FFB95D4DE0D9679F356BD3075B2FFDF70FEB2D64DE2A99E8453942750206BDAE9068B98A6584B689F5B57A1D3A9DBE2837671A289C2ED233D8BF7F06D6D637B17D0951C0056A088A26C1B45A450D7AA23C315183767B80A3E03089E56E8F90E2E3E0B1BEE389B5496A6FA3297A035F20C0761C84397E257085D900948509D9B681B4653193751C1368FA5F2E57C14504D856053ABD16DC77FFD19D7FF9EEDF368722E0E4238F3C514591757B3D013582E9FE7D286D842CC1BC365115766922642B55FC98E70A01952BB65A29F28559942C53C0B66419A8C90AB6F104CC2B958A985B1024CBB60514A6E81D099ADAB9839EA0A3EFD2377126028E6D895365B43659429B3631B525D80BB3B1A8DCC17E7C1C5F19CB3D44B02B1CAB89A6D345A64DE463D097F4784D7DFD9BCF9E1A2A0094D48509D26AAB835005585A5882C5C545340117AE5FBB0E3FBA7811990C61F3EE3DF8E94F7E82361740ABD515EFEEDEDD44060298BF71136EA079102CD76EADC115A40328C1F6BD6DB8FAD337C5D93D9A9BDFBC7103DA98A39B680E44B7B6B28C4CD4906E07AE5FBD8642AD81DB97FD19D83EA223DF4030DFDEDA81AD7BF7A086CE8EE86E2D2F4315CB06D291D958388F714A55310D6E4CCE888D56EC088558FADDA126F0BDFFF8AF376E6FDC79ECF9BFF93BA8237CC8B357EB6584B98B5A02684CD4E1CE56076DD3440F8BDED940EDA046511160DAA841B443725A13F50AECB406386874A2889AAD9D9ED05E89B2066C436829617B07B546E640DF99999E828D3BDB82CEC60E3D26F327744788245BF806EAAF8A91A3D37645B9D99C84BB9B3B0241F46C62A410A6866320A7DDEFF9883ABC0FA443DE3F7B101E3B73FAD29F7CE36B4FE410F0FD575F9D6E4E35CE8A188B9E9D60EE6098F17D860109E14B50C47F6628435EB54C83EAA3F47B08B5369A8327CA9DD6367EB08FCF03E8775B88248A280C5CF4216D7C47B02527D5EDB4C45A031A3DD6E18011F674789204E890447920DA552CF243A1A203A8A0A9909F20928A63891D6B934C8A2A68190DE970A8D89FA433C47238B6C57E292C379B53679F7BEEB9722E11AA027CECD0C103E6DAEDDB5076AA08B116DCDB5C87E37327D12BDF817B776FC37D0FDC87B6DA808DF555849B05070E9F007BAAAACEFE6168C430471BA9DD0E6DA6D004C480955B77D4969AA4B9B3B1191FA9997B58C2FCD6CA3A6C35EF4265621FAC22CCB7366FC3A9338FE3F73745F9D8891368360CE96E63289E44A73C03ABAB6BC2A41E3E4D7477F187741F3889FDF948B70233FB9A684653B0BCBC0AB3478FC20E9A4C091177E4F0ACF58BC5C5DF44965F4E09A0623B170EECDB27163C6A75071A5387E0FE078F52A68ECEAF06274FCD21C41C0C255D98397012A15D8736FA06D340E9A2D7AD9955B228841A3A2AB435C3300514B180D0378453E52A5D95A921174EB0D36EE300F763828442DF6943737A0E35FD9038555B43F33B7EE27E61023D74CC4457AF9149B5A1D19C83871F79080241771885741FB673A05BEBC121A2C3FC630BC37063FA042AB42C4C6272AA219031D568FC5E2480D8075CBAFCE60A0EF06894F373FD74766ACE9DA4B7310D6472F4ECBA00DEFFFD7BFF2A92A350E5EB515BB922A4BE0932776F341AF091DFFA58E67C72C15C20F36D28A8CBA6D56ADC57FEE0CB5F381B23E0CACF7F7EDA719CA3431BE62743BB0A263BF1E9F707B0F08B79B1C29C5D1B4CAD13AA09CCF4CC0C7CE2C26FA7D606C221DF8670F749577A8D22AEFBD00B2FFCF3EC17BFF8E9752180AA53B9100D20ABB9DD241AC11A86082C9AD1BDF3F65B98F0B487329E3D38B9B3B38390EFC2D454B358C343668FF93FA228168CE8C70E3F81A4FF200460D9F60548FD19CB08D3581802C98225AF5AB5061F7EF22979642D1234578BA9D1B4552C90CAC398627B1ED152C6ACEFBD9856170906ADEE3C0940F880DFFFCA1FBE8EB6585387FDC98925C9814AA10C55872E2EF52C63A9A411B4862052EF0CFAA7DE490334C148F72B8AAA5D283E2E461705E8B8EFE85BA69199031BB27D3C5C6D0D959203EACC48E77C3476EC77FBAFBFFDA79F140278F0CC931DACAFEBDD9E39751C96563731096AC3938F9F86D72F5F1309C7534F9C851F5EBC04FF1F2F77BA03EE39068D97A6E0A3BF710B36361B70F5FA247CB4B5040BF503B060D574F2DBF3575E9B150278FC23E75F78E0C89163968D71A4E8D211110AB5868553C948BBF90DDAE1CBF606FDDF73923AF43276EDBFF8D5C0757B4BCB6BD72FBFFA9F7F1C87C1679E79C6B627A77F1D73C0F36824E7D1161FA3606E18E3E8C018ED8D3174B491E968E56411CA805858A15205A4E8840B917FB7643B654E7FF207725DB01F1AC66BC8EA0F30E97CF9AFFEE2CFAE466B9996B409C33C77EE1CA6BECE8F0F1F3E3C8F9EF8257CFF9061597583CB0F743AAD53AEE71D99DEB7EF6559975F67E7C5CB4C9A7D4A5B55071EC2DDC4611889E8D5E2AB318A6C0783C17E9C003DDC6C36FF17273EAEDA1DF67016B98CF7F95AADB68CBC5AD86710756A3CFDF4D34D24F800CD88717007F1A58DBF52118E348713AF0867EB2326B3751A337ABD91E9AB4860B93ABAEBCE2F6A4775DA891269AAA6490BCA5419E0BB1ED22CA270E65F7CF1C51D432D6F13024A939393F433DF4F4755A954DED7CD807ABD5ED8FFC2C2829CF354ABE1C6C606BF74E99240C02F011020422FD5D773700000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (70,1,'Notebook_(96)',decode('89504E470D0A1A0A0000000D49484452000000600000005808060000000AB1F2F80000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00001F924944415478DADD5D698C1CC7757EDD73CFECECECBDDCA5484A3CC44B0749D99605079102251215DB70FC830E8200F963C07F0223700003091C245110C53F12C08612C4B0013B896DC889895C4E62C431104970E40396E54B914DD922295A2477C93DE73EBAABF25E7557755575CFB1DC916464A4614FBFAEEAAE7EE7F75E55F73A9C7318F4F9D60BDF7B31934A9D94EDD436D8515B79CCA407FF70B9D5FAEB6D78F04FF2569D9EC7B73B390FB7C69C702C3E366BCCFAFDC7B6F131BAAEFBDDF7BDF7DD6706F1370D433EBEC7662F5FBA083FB9F06378F0971E865C363B32B381EF90496360B63136ADFFA8CC1ECCE43E63D4FA775A6DF8FEF79E87C3878FC2DCE29ED961FC1D2A00CE7D58989F878DCD75C8A4D3C0181BC2E4214C1AA235D179876BF460660F1ADB28CCBE35454867333051998442690279C561D702A093E4F305B8EBE43D506F3493B546676EA246C3D01B81214C96BDFAB98F24A6C3A81A0DC3980CD698062BC2A183C7C0719177A8BCBB16808F1AEF38002F5F78057E7CE1A7502C16B521CB3B4CB41DE81F5E826362D07AFCD0F721FC6D1C37FB3806F3A2E31173B9A1D1515FCD5AB473074C8F98AB9F4FBF8669193CE201FE4E673270FCE471989B9F06E68FC50218B0709047EF3C04878FDCB123F7A1981DEEFBCCC7B8E28BF37ABE87830CB748A32D1DF3B00DF33C217CE6139D814FC77CEA1B6EC37E9CB1601F2D353A167DC5F899EC1F6D99D68673161E937DCC73D0BD8BF6E1B582DFBE18BBDE9FFA1D3C7C1C8E9D382AF65329066388015C5C584A3F1E03FA33DB761F92D97EC86C4E4C0B99EA899B954CF6C53EA31BC36342585E242C9DB98130FD18E3D5716DABE8FA6F1E31556F2798CB4201EAC7C27D298040C0511FE081DB16EDF99862003878C280B3A6000630DBF6D18126471A2CF699AFE862EB49C648A607CCF5422110B3230B0A3552B39424E6EB0C17B4B03F6D95F5F82CD27CED5CBA65282118C7B96631812048A0A21FB64B33361E174402E06144A70B2533B93FFA50CC0FB59F06E979A14BF03CC3F43D4F679E17D35C72475C693C33DA2469BCD456BB8DB23EA60B2964226DB979AE98D67316FCD6DD11F3559C61E135C6E08202536261F01216300AD40B2D44F9ED505B03E64B8DF7228D54FE3AB4082B16046DBCD0BC23ABB1DD8ED44A93F9A6164782D204C9A2F3A958A56BB72E00D27216F97D5D705C9C9FABEB8C070509A9B270602CC6641DF1E8282462BE1C243369D2D7FB516065CC37826514344357A369A42D84C81FEBE78918C924D324330DD7C5549B801E0945B72CFB1AB2AD725FA4AC8CABB1EEDE02E8E4C05552C1849999CCB65376E51B259342EDF7342DC30C1B07E919DAAF335D324BBA98C40069309FC6E8594C6706F3653F758E30084BF7C399765E2508CD6D299F9F200416F417EE87878AC2C7610122D20681450880069A90CCE8BF83A0A9F97311F4BC80E98AA1813F579AADE0286E991731C18B904A0CC9D8DA278F333DF0720DAA6A8CD7ACD21610D3D08ED27A1E5DCB4448C16F9068917115BC39E7E381A12CBC11E992FA65958186449A4CC1D2D37CBCFA860261BA5BD2BF1AD2513EDBF34DED0DB55D61F03EE8874966E8DAAD319A18160BB83A93C36B30666ABF2E781EC6A50021EAFBE31080342F3D08272461127A2998296FD89309970637FD00027A469033DD470413590CE79B09501FF4A3B9101983B86129CC48A0CCE06C69BFE672243FA405E8CC97BC914198F331C15016467662B6118465CA2E828E6F2015050F433712F87FCF400C9EAEA956F00D9230531B937DB7E92EE2C1D2D466D94FA229DD9DF8A162E83E3FE6AAFCC81D71CE0C21496FC03853EE710C3180A94C18C26CD6A89784D2F6A4E6F3C8E72B7FEE85D6A160A41705614DFB6D4D36349F2CC2674670EC979946EE26BE65CC57AE32EECF7D839986CBB1E20D709EC87CC1A35040E3C984FD48DA51262C518F8ECF99D2769FB158129588D1FD289B4D84909ACF964CD61196AFF7513E9FC7DC53DC9FB30437150A8771C382A2FED1BEE9F3792CD8722603F2186B41B21411447CD0343D32732ABF46F092094DF73C1677235676A960A4517349607EE8EA6CDF6EFB6B037A6A0C968C8BFCBFA9F9C1BD9A351E66FB786B3F396E72CD6D8FA11614986D6401868FD76EC2EB53201326A9E0653CC5D7B1B8EE2A924A0736FEF6ED60A969735F46EA6E47B91066B58F12B2C8E70F67BE8C01C139C7301FC03833A4E979BE59D2651A2CF49891C20BDFAF054BBDA42B19C7F502574CEB5932D3ACC06BF8EB0401446E67147FAE07DD2866C8F2C3282586683C63B1005F251574E15EAF179492FD90B986CFD7E1A4272CC6F3A36AA55D53977183C75C52E48F7D3BEB4C4A920658808D544CD869FB7C16F3FFDC0EB623F87516F6F1C722003980F04648007642A24A087A3C607178A8434285546CD7A2FC378FE0A9828C5A7EE1C7B353853E0CE6FA894232999B2CCC5B61BE84EEE30BC23E53018C18450288EAE45AC6AB9515B88A1166414BFAF5E0B855ECB2EAF006F23084C614DAD1335266B90DA5387E32830D7FEEB3583C082A00266DD44FA03C81428C2908330D4246FEDF937E5E04572EB6064CF4B50AA42A1D240453DFCC2C7D8BB1064E57A93E338B6631A412CF70A5006D0C1FEBCFB95156DE09F3253C67CC194F2D8869B5A0C005792AE8EAB356411D9D6BAE881999AFAFFBE3C4A2971F415EDDC76B4537154C998E8ACC2C555523FB6ABE8E68E26D22E6DB09D6E81F15BBFCB1E4015126EC87D383B1890AADE86517AA740C6FF87066264A894C331228AE15BFCC5A8E8C27BADB3082AF9F1C50ED76F238DF05F3A5D23AE17DECBE1461CD22510CB0AB868C25A7FCBE91FA9B6E245E9F4940317D921FDD9DF058C01C1C50791FA4332EE647D3B810CE228EC105E930D4F37A461D9EA9ECD2ACD12BCD058BD946661AA12B53680930D076374968C54F602E0BE62FF47D5B383226706D7BCB9FB04A00FED8041099AA2FE671B9A179F182976F20156ED55192EB2E7AB0B698DF0FEF1BFE9C0D6863FBF464E68F3A873B6A0C600E1F170C957940E05F7B4E3FA462FA7F96E036CC926E34531509D8CA3E13981F4732BECAD4230D0F67C2C0EC2767C722A5E22367B73B31812873F6C703437D2D2B052F9E9DDAC52DCE58729D26B40055F46266FD4555117972E264CC38712B78135D5BB160045CAB8CA096418E9DF9DA1C0AF7C79309FB9219E1CA889E8574F4F2420C65F87DEAECC66C97E976A2B9553DC86ACB41380CCC72215C4263F87ABB8EA3CAEAE3677EAC82BCFB29492D080BBFEE27CC8DDAC134B95A29E756A3A9C1FE75173E08C9E85ADFC7DFC7CEC5759FCF5F37E6EBC9EBD88A71CA47AB592D93B93298EA9A2DB63C5E91B4D37EC3E7C7343F2158723BDBD54A078C25045C8DD96F00F3F529C9B1CC09736D4E58C2508391464DA50F06173E3BB95EC36579224CB012514C2286672663FB0A80A965EE6F04F365F22AE73DC69407F85A1EE0C718A827564A8395CFE646F265FAFC689E997196E07EA2D9B74497C378382F2DFBEB2E28F2F772AD8E8C0DAFF747AF9F8DAD1817CD7A792173B9050DCD4C971E2A50258898F6EBF120199FCB35A85C83AC7D7D7EB895E7D4DD12D7B47E5709D64E8A7112A6F3713DA0C1223741D38D863FE7FAAC96D4DA2424632EE75050D2C2F8B2DA192F0D44AE3062AE157079B4324D325F87A56FD4472A67CFF3C69309FB56D08BD5DF35F7A2B42D29982660749E8872AC8449D36AE5B62C81D9B0F2CD62BEE219AD7BEA8E410062825D253A5C5443A32AA46F15C424460FA62BB9952801E35AD0B6991C31CF868EDC4EA0B8EDBAB8E1F375C6BFD1CCD7810BB9EB5D0BC00BD7E7476B3F3D2D2EF499E448627EC24226D33A8245C01133E37EDF168EF2F14C5EE3CD67BE1E377BDDDEEE05D093B0937363A9C8A0829639E5173136A6D9961FD719CFF50C3C21C335DC15378FBF99CC071E65C2C4BB310820985009508D5C8C2503A98EE18704539E5018E37D345B0FB606D434D18EDC3AF073C27CBD824C88B1370E174413303E3D25E3A815CD5CC04A8D3189CC676AD5B4422FDA6439B78B621A32E236DA498093CAED00C4E2C39BFD9145C5B1A020E9824800FAF2C108A327CF3AD98B990C58A9325313921A0208DB989ACF63CCD751D5CFC72772C7A4BC63B080C0E5A4B80B53D33330512EC79E121FF69E85A4F744C45E2960BF7945FFAD3FAD2E9E8F8F3F9B1CA541B7E8B777957A459F72B902D5564B788DEE38624017FD98E3A049E17F6ECA81949B01836F6031DB60669F87B855CD0462CC1CF47A196EF48B0B20FE0E086E3077A0C0135EE0A13F8C0ED6FDF47B01496363037A7E306D0BE388013E9ECCA1374FD0C3193CCE6CDEEF7535233FC4AD3389F77F05423F668FF2269501CCBEB5B7BD0C19A39C1B1EC79424E501A9544A5D386EFA09CC1EE5C549AF23B3CD3E03DE0DD48FD930C26B6B46B8D7B1AC0BDADCAC5E705C678FF15610085EE011E15E23048577AD3666236EBE76C67C9D8D88AA96DBD0EC5F9D3AFE8466D4277C86CDF6EBEA61F3B8FFD6274EF437A2D8B35CDC3AA92CBCC5DBAAFE3FDCB5006EDC5CFB026E1EE4C0AD1BE5BBF80DC64B9346FA6DBDFEE6E7016E0EF9B4F1FBC15D0BA0DE68FC5B269DFE040602C7D6B89DA28491BA384E8873ACDF3B04391CC62420BED326D23AD99F5FFCC1B72E0DBDDD619AF47B7FF4C47BF066FE2516D412FCBFF9B2A3245AFFD8A1BF48A9AF5F357CB7F5FEB73E2FDA1BF492A5E85A43EE27F612A9FEF7153D29C95F603DF6EEFFFAD72F5CDB9505A432E98F40D243D94A1009376307BAA1428A983A5C48A63F8E31A24FA01D26A4FEC21A5148F6D8393FC333F014FE7AE8962DE0A31FFDCBF9D7D6AFADAEADAF3B8C85812C0C945C6322D7359802A5233018301DC584373D373B0B7B16E6129833D24D0D1752A2B5587D1304B15DABC1D5ABD762EFC00B3A38D1FD9153B41343CE63019FF667A6A75869BA38FDE5CF7FBE7A4B16C0B2FE233FBAF053E7DACA8A786F5C1AE1683A9D165FB14C9DF9E237C1540C11D06CB6C4A024CD755DA8D5EBE26D8BA9B0EF1A262A9B5BEB788CCE938214D23AAD0E78986FA4B07D2A15D0EBF5A6784F51CA0DFA71BC7EBBD9168B5E451B3C1FD5A57ADD6E60A9A9F05C9D96E00F450FBABE9B7291D60D6838C654DA150A4473DB824B44C36B6C6C6D42373C17B573F17CBE56CB211ABD894F5FED4634F13E2B3C115D4B9405E5716C5BAFD5DDC5B9B98771EF9F6F490078D2776E57AB2210CE942AE0F7BAD06E3430D5AEC3D2BEBDD0AC77A153AD41BDDDC08B6DC39193F782D766D06AD790595B3037370319ECC79151ED56031AAD0D98DFB388D9621BDAED3AB66988EDDE0377E0B95D459B9E2983E714218537D76A6DA280EA5099A940B1380FAD461DAFBF2568330B0B50C84F43A3BE0DF5561519C92087D72BE62705ADD1DA866C2E05A5D22C323E030D1C6373BB0AD9520E2AE545A14044A3EBCE9667B0DD94A2797E1B0A850AE40B2545EB226D7666592DD7211A73185426E7C04561B47B4D5133CB64F2B0555B87B5CD75F418CEBB6E55004EBDDE782C97CFA26637C1EB745043DAA839A885BC2796DDF550DB7A5E971690C2C444016FA40B3EB6A3B6A4D180CAE6B5DAE2B7D76B636212D4465ACD1A747B74AE0E6A4C4F3C4B4C8C9734C64AB86D893248B787D7E87504BEA77E24004923AD6E34AAD8B726C6865783FCC4B4412366D02452BBDD0AAE8BB47436259ED869D46B8A962D150C1A1A058EBB8BB49CA2811BBC18900A038D46404BE733A29F831D1CE443A7EB090BCD92D5E27FED56F35DB71403FEEA939F79CB4F5F7DF5DBDFFDDE0F6173631326F225E4A72F06818607E95C117AED4EE883194CE00D6C553BE82E5C619244CF157238002FF094D8C671E9B58E59141CEE3B7EF8DE4906A96C41CC9F3A10D0262727D025342125CC3C58649BC7F3F7DAD802052469B93CF6EB3928AC2E6AA02FB4102F80B24A295ABE98176370DD8CA221B0C0336783B231D2682C0E32CC75221A25FF1EDE46269D5334F49A78AFE426338AC651E8996C49B820E13A5141B2999CE0D3EAFA4D589C9F87C3B7EF3FF6E9BFFEF8851D59403AE33EE6D35C00BD0B13AFDC43ADAE5537D1D56C21834A509A5A80EAFA3AD4709F68B7EDDF0793534B50DBAA8AFD5A6D130E1CBC030755867A754BB53B71EF19F4DB1EFEDE14B4149AF06D074FE0F97B82466DE617E7A1589A814E9BAEB925E87B0FEC8762611635BB1ED2B6E0D0B113180B328246FB8D7A15EE3C790ADD1957B4222A41657E2F702FA295CA45585A3E82BFAB8A36BD300F333373624C44DBC4ED9E7D07A08CE39034DEED4119EFBB8CAEAA1ED2E84180999929A1F54423214C55E6440D6D13F9B58DD740819FC586177664019FFCDBCF7DE3A51FBDFCF6AF7FFB79742B5DC867B3229866322E94CB9370F3E686F89D466D7229EABB0E54AB2DD4066C83834863F0EBF61832B14BC244AD20B34C41A3DD13256EEA97416B99AE94E1F26B2B782CA368A58922ACACAC8B9BC96452E27C1464B7AB4DD43447D118A7C0DF56340ACCB478B88BC294B489521103FF761894035A2E97C520DF16C532B29A0CBA247221BD5EF0DE0A6C26DA31E1EB1D45CBE532E8627AD836AD68F94216E314DEA3187F06950BBD829312C79ADD9650E07B4F9E78F66F3EF1F1874616C0534F3D35BDDDEEADBDF6DA35F79FFEE33FA1922BA1F9B79516EF47CD669E83AE694DECD3F7F8DDA7904925A1ED9276EC9ED3D06D796ABFD369C091E3A7049A91B4D9B969284ECC0B3423698B7BF760209DC51B6B280BD877F0765482E9D0BAB6C4750E1D3F81C2CFAA7E443F76F719F0BB4CD18AA53C5AE6226163459BAC4CC01406D36E27BAE6D4EC14CCCFDFAEAC8BBE734B7B5041F618B4A5FDB7C344714AD138C6C3126A7CA53C2D689D1E828399BD62A268636B05C8019F387AA45BC9C2E4934F3ED91949009FFFE23FBEAFDE68FCC3A5CB57E04B5FFE0A14D16F1730D8D09BD373246544002D0CAEB96C466813BDD9B0855A4D70329F434DCFE6F09B82F5AD86C807F2D8268B6D27CB2578E5CA353C5F06D1097DD3E8228AF0EACFAE21737342C388E6A25BB979635DF491D7E8A1CFADA27BCBA095485AABEB2312AB07D6857D696C75D4FE0EC261499BAA4CC295EB6BE02012CB65035A797212AEAFAC097496A376786FD97C1E36371B782F5D4523F85BAB23A0E8453404BC88F2BA060DA30A74D1B229CEE5D0223ADD604520C7D8D2C1FB470B80B999A947FEE289C7BF3A520CC8A4B367F3D91ED4107266D09514F313A871DBB05A5B115A76E2EE7B70BF092B420BB605ED2D0F3C885A8638FFE656E80B0116F61E12816F75F346A8EDB35040B8D74641ADADAD07DABEB4885A3A8788A201EB216D79DF3E281551A3F0DC6B37022BBBFDF01114D694B896A41D3E7E12A169E08F891658C06948157301EDE61A5C7FED3558DC77483CB3256993951AC68179C12441C3EB4E4D5730B6CD8B8710E99E883683D63933B32F80B9216D01C73B3BBB2CF665DF251C6F40430BC0FBC8168BC8B332BACC3568776A28F81C2A55FA3164ED6802C064E5ECC4C4046AC49648363A88935DD74746E5102BCF89B9CE144679829E857C0A96969081E8A2B8D7437FEA42656A02CD791E36B79B02319166A7D315984133AFD65A02B6E60BA875990AC693325A130633EE85B429DCE6A0D9AA615F0F998E5697C520873EBFD9AC0A5A21A4D1E280560BCFC73CE18BB3482358DC211A9D0F21345D9FD04AB7D556B4A949640EC14AF1AA61A2A15560DC6934B683E40BDD0AD18AF91C5ADD0D84A99D8086E34BA373AF55D7455E2369043F035A5D5C2B83D7A8D636108E230CA6243545895DFAD790B5BF3B5400FFFE95AFDC8B2E6389A4767DF506E4D2187C1156651842341CECC2FC2CDCDCA8212C9C400DF244B42F14F2E8FB109EA10BC8206E2686A4B27928149D3069F144DB1442BA42211D3EA69413CB5D9C34993F9E9B16FD6A34CA3F1823B897138CA65939829D44CB120DDBB92E0554A465749A836EC6A4A511A180D69772D50CBA5527E3281A9DBB86312AABB523B7D4C2DC44A7657239E8353D8396C680ED63B0963482C829E41BDE2C0AB9271668150BF93BFEE0898FEDFDD38F7CE8EA4001A4DCCCD962B120D2F31B64AE88D15BF57A18843043C4C80E2E667AEBEB2A302DEFDF0FD3D3CB8882AA8A76DBFE03C888B2705DD25C0F1C3A881A5414AE45B63B74F4186A695EEDD3F7CE9377A10C535A70DD8613F79C12F9834E3B7EEF7D98797B6A6CB4BDEBD45BD102BA26EDCCFDE22F5B485A1313B513A7DE86597D4BB559BD7A45B8AAA05D406B5431ABC62CB7D7EB2A1A59F76465C9A0CDA15216CBB318073A8236315586225A7D9BCA29590CFE98C856D0EAAAB5FAA3C8E2CF0C0CC25F7DFA6B4F2F2DCE3FF4938B97E0F71FFF339829955018699428C23534A54C2E2FEA3402D2A5C49228D43034398475A2564413F7D8D6C520D0A8639223EA3BAE684F01B98D6649C18D60A4809254436A34C31A5340A354B381D720984BFD09D25231B081C1559C5FD47D5CA0724EA7E30BE84A74BA4617F17EAF67D23A025E3211CFC4D814CD172E42D1BAC10387921624560170913452CED5B52DB12F6994385EBDBE1EDC13D2F21883B6366B01AC46C090410FF15BBF710E3DCACA973EFCC1DF7E4F5F0B78EEB9E7CA8830DE318FC1F2BFBFF675D456576487B5EAB6D29E3BEEBC132DA2A3F61B14944F9DC1768822B63714FDCE1377A155EC355EC4C41015103AA13A4AA78D088675C4FB2468BFE9B7CDB6FA8B9F7CF99E519376F42EB40A44249B9AB69F3CFD16A4F5623442291BBA559C7E5B48BB19D0EA5B70F7E9FB435A08AF8976E6ED78BF2D8BF600D29A8A46B1E9E4A9FB15AD32554225CA8B7E7EAE8BB43AC2D432C6B5D6C3E7CF9F4F9D3B77CE4F140073330FCF4C5532D35315B8F4EAABA2A4D0A0BA08B69A9C9EC413978359AA1487322650935354B359C0E3948DA2C622849CCECD08F44055C86A7D03E49C96FC6B17548E206D73495B44B1212B0E3ACA2405640735FB2B1769858BC1F4F5A2C1A3A01883100C14277230B73017BC0A3346F3025AA920F202A2054B47341A9B13013CA0E591B62868549FB2693DAF63D018D1BA513BAAA476F15CA4706E98B411BA5A989B2D5DBC72F5AD7863DF4C14006AE7596AF8CAE557E1A1773C006F3D7DCA98837512261839244F53326E1DE5A0B8ACEAFFE29C4E58CF67C6DCAF03D6DF6E512730EBFD8E232783AC455D492B2FB85A36602F6CD2A7FA83EBF0F83A2663E25F5798F000E3D63859740FDBF59A70E5D9947BB6AF00D00F9F2517D0409FBC8C5960BFB535F109908419A641D3905C5BDB3060A6E9A9CFFE1D9A7743ADB78C66ADB8F13762B8B6E2C1FEBB34CB7B6F835F7DF77B8CE9C8A4FB499ED81971F6CBBEAF84F37569A93AC2568C0B1488FF382680175F7CF1380AE0803DB7993C0D684F478E7253D6DB76870889DC46A351C758D1369F94D404107B8A32E17709410405F89D4D438E3EADDA7FAEBAEF9CF1DB3EFDE9F333EF7FFFB90D43004E367B36C386CDB10E92FCB039E34173B5F19B5AB97E15837F35B6FAB9DF6F7D5F7F86E1C6EA6A381396EA3B1D694F9B0EFAB357C326F647B0161732FC97F1C7170D0164D1FD70B6CB150EB13F2135A290625AC6E1D2C58B628A7018E3935EDEAD6F1B8D06DC5C5DC1BC647F82D68E36B1DFEF4DF1FD956EE8C4FEA38600AE5FBF5EC46CF141EE2698E22813E03B59E130C8B569B406267FD33333CAFF1B9A6E3FD8A13D43A096C2ABF60CAE5DBD0A771C3CB8A3150EB732B13FDC5A549F478D44ECA5972E3CEAA4DCCFB968ABC1BB9E04B8001EE116842A843F31DFC6CC898BA7355CFADB4A62768AFE7539AD8520630FB6411F01081C4E857B47FC25146AE00C5DE13092B50CF83385839464149060C7AC1D2F83B1D6B52608C94DC1DDEF7DE73B5F1416F0A13FFC9383C8D3F95B5938A6AF62BBC5756704FBB902FE8E44784E4453EDC267039CE02E852CC5FFF89F5025D1276825C4EC467D1D13A93A625E93F370DC6A9D89138C2100A28ED034A58792166A26E7DA98823FB4E38821B8C1C579C49BA09D1837AA2A8DB2902F9E5402B87CE98A2B71BECD592A82DD7BF2084C9426E01BCF7F5F64A0C78FDE0E7B1616E17FBEF902262A3DCCF226E0BE5327E185EFBF045BD59A26948122933BC35BC5A5BD33E5B83562DF235BA737A0799F078BE76721554DC1DBEFBB0EBFF0C0267CF6EF0FC18DB53C54BC16FC7AF567F05C7101FE373F95781E9A88532EE8E0DDF77F1085F264DFE5294EB066A7E7A7C2FDF0A10D9609F7694A02716EBA28A6F5FEBF7FBC740BBF4DC8776685ED4C143B98E5D6E0F2CF66C534A98BB954A5BE0A9DC20C3433F964D377E0372FFFE05B4F090B9828959E5B5E5EFAD8D29E85E3592AC8BF011F519C7B033EC1C3256FCCE7E8B1E12EB7D16CAE5CBBBEFAF22BD7AF3E9F580DFD9D0F7FE42E1F9C47903FBF82477E1149457B39B8B3239BDF81504665569FEB8CBA64DDD9C9409DDD085F44901FA3123CE372F6344BF9CF7EFC8927560796A31DB1060F9C73E7CE6102999E748A9587D2AEFB1022BC19074CF782996AB9BAB97E5BCA4D751796F7BD2C39C015040A17F604CBB57918586534E4E1F514CD8D7E734716611CFDF102AD0F371FA37078F41408453FD99F3932308741529E33EC28CB350E306341A8E3A4A4AFD6AE159E0BB9C67CEE5EB9F8324D33C2E2F26DCFE64BC56AF47E26CE1055AE751AED67AB1BAB57B2D96CBB56AB759F79E6193FBC751E1300DE94FBD8638F6572B95C01B17411F7A7704B4FC62CB9AE3B87DBBCAD0F9EE795DBED361DEF158BC54BA36A069ECBE9B314F275730FFDAEB99BF361A228DC752693A9BA34676B1EEF216D1BB7ABB85D417EAEE1B78609620B79DC397FFE7C8F042104F0F8E38FBBDFF9CE77F2D870161B2C61C32564FE2CEE9742C6E79C21CE546AF2B81E7F487AC06D07D7E03B741543DBCBF18C3A064AA9F0E3E1B68D3C6C212FEBC8DB353CB482167163737373FBE9A79FF6D2E4723EF0810F90BD1551A309D63491740DBF37B01349D9C10EBC8FC6F25EF43032B78FD1968ECBDF836E5AEECBB6F2755FA3F4D5DB78F466D93EC7E843E50DA22531D26EABEFDBE319655C6819F25E187DF1D3CDE7F3ADF9F9F916BA77712C4D668016E0A344AAE84E9A9D4E2766AA62E541F841F3E1BA56387D12302934DC8EA485A552C918FCE5CB97FBB62D140A236BB8DD16C7DFB7EDF4F474DFF3A28730F6CBE5F2C86340861B6D979797F9A73EF52941FB3FEFAAACAE1903B9AD0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (71,1,'PBX_(128)',decode('89504E470D0A1A0A0000000D49484452000000800000007D08060000006A326B0C0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000038034944415478DAED7D079C1C65F9FF3333DBCBEDEDF5965C72472EBD4012D2494802524404094D11959F88288A227F0B28C2CF0272A754292288201D0181F0A36890403A09E9C92597E47ABFEDBDFD9FE79DB2B37BBB97BD102021379FCF7B333BED66E6F9BEDFA7BD854B2412906DE170494827D0B6BC1B8ECF4579D1C4502F7D822D5CA66FA112B65AE0EA753A08B86359E0AADF89B4FD8485841AE8273C0032D4745E25F46CE558AEF5F20BC655BFE3AAFDCA39272208520090267C5EB5968BA0DAE654C78F15264864A9F1F1C3941316040A0032085F16B85C34AA22A401038E21364864107E4C55A2AA12CB0084130A04E900E0D2044FC2D662D1A98A360310B86314007195D0235209AB8A1A0C272408180054C2E754829505AFC762C4625015BD0A08E94CF059A982749D9E2EFC1096605A0949E58405811A00B210E55AAF97846DB6159596C5633153221137E3F926FC32780C4B4261021EEF20310107491F22B9CD898752B639917A9288E194A3B25192719BE35231A6FA8D163D098FA3751C5F2BCA737C8417F810CF0B218D46E3D7EAB47E81173C3BB66FEBC1F3FD2A2084556AE2C401409A3127A8844FB5DE8C256FD197BFB641230820083C16412CBCB89DB29F571D1FB40FD7FCD0FBF9947DF45BB52D5DC3CE91D7D23562E1C435276DE39A636B02616A8946A38E658BE69D81EFE6C5E29380104AB30B12271200D4B55FAEF9162C562CF6255FB9F2DF9AA1844C40188EF0B380410180245CB5E01580A880912E7C41163A03020A5B5EA714D407E188F3F485732FC0777362F1484008AAEC02A60A4E3400C8B59F846FA29A8F251F4BE1B215DF7C85095923B00F2A6834838497CA0443083B1B13C820501F57042FD57E2153EDE7C47D5CB2F693E06581F36C1B1420D039A170D0BD64FEDCAFE2BB0D482070AB582022AB015CE2270200D42E9F4EA27EAAFD36123E96E2332FBDEA29B1860A90673581496F9084C1B1B55833858CD44CCCC1E1471734A280D87D38F11C1214310747002060A96A392788359ADD9F4BA57E85EE79F119385EBC1ED87DE59A2E5F47368280B41FA3C3A0D76A211C0E7A4E9B37E7DBF86EBD2A10F8D258E08403806CF59B24EAA7DA5F8CA5F4ECCBAFFE2B0962F6D409505654A0FAF86A1A4E2F9C526BD5FB87BA46C87A1F2145E8477AAF436D1DD0DED50D7C02BCA7CD9F7D1DBE5B37963E2C0E490DF8D56AE0440280A0D2FF6689FEED584AB0949D7BC5350FD8F2ACB0F0E4C9390BE0980380A43EFEB36623B20EE75B32FFD41FE3BB7561E99100E0495303271C00B42A0010FD174800A838EFCA6BEF29B2E7C3EC29759F03006C400648F8972E9A7723BE5BA7048001C90EF0A9BC010240EC44018046C5006AFD4F00A83CFF5BD7FDA9D09607B3268F1B1E0084C182FBCC01B07623080800F4027E8EEFD621A9817E2CAE0C0C70C201C0203140BE0A005517FECF0F1BEC79169839E9D3074026C3EF70F71254866326006838082C993F2713007C23004865803262801557FFA83EDF6A819327D61E030048DE336700A8BC8B55EB368296E703A7CD9DFD8B2C00088E00200D00175FF3E3FA7C8B19664CC80C80FBDEFD3784A2A83679D1E523170E24F78C5C3D20978FFE95A03AAE5EF3EAF3B9B463E27E90FD7B799B39F77CF21A798DA0ABC9CF873F2D5E921100EFAEFF10743C17583867D64DF86EED2300C80100977FEFC6FA3CB309A6D58DCD0880EFFEE371F0130024A1642C4772EC08EF37A5B818D65E7A594600BCB7710B6851052C3875E608007205C015D7FDB4DE6832C28C7163320260DDC126163BE5A4DACC0B724856506A30A75205320B7069BFE5F02D9DCFEE2147F2D8F5A0DA4E867C3989EAD5F72B301AE18B35B51901B07AD366D02303CC9D3502805C0150F1CDEB7FD1104B24603A02C08C40C8499F0B998DB78F670308A9B1FFA1FE2F972A7C2A3DFD03B0FF600B98F43AFFEC93A7DD3C02801C01F03F37FCB2210109FC2200791623E8345AA5060A526D946BAB928D536A272405947E4CA01CB25CCB7916CEE5F8644D662A9D13ED83A451C749593E691B54D93FF60CA03C0FB313A4F87F2C16A3D82E94A37A884722FEE953278D002057005C7DE32D0D4A8C9D2818C12028563ECF1241244C3189A34ADC7062364FA34EF54AC734BC9096DC11941A2CF0EA4C6012588230D8D3E065B523A77E41163C249B88509E41AB05934EC7AEF3E33275D2841100E40A80EFFEECD6064E4ABC180D7AD06A344C8072B64E4CDC2405AA4EEAA40B9693337F2A778DCEE1E473D48922765C74FB048DA0D47A41FE7F9267A0AC41641CE61D480D4B1252839138D117320065347D3EDF0800860380EFFFE2B60632F2C69415A30A301FB7C9A0DE81012C0E48C462FE1953465440CE00B8EE17BF69D068051837AAFCB8CF056CD8BA83DC40FFCC19234660CE6EE07537FFB65E8BD4795255D9710F80359BB7E18B26D00D3C79C40DCC15003FF8D5EFEBA9E1C64955A5C77D32E8FD4D5B40C37181F9B34F190140AE00B8FED777D46BF0CC9ACAD2E33E19244602138105A78E84827306C00DB7FDA19E4E1A5B5172DC2783DEDBB8190454018BE6CC1E0140AE00B8F137F5F51CBA5063CA8B330AE70F6FBD01A198F4AD042961433EB920AF93891D2569A34AECA4247DD489227A40691FF3EDC95DE4F8E46F2569241D937201E3EC76F8CB1967664D06110016CF3B750400B902E067BFFB633D24E230BAB4E8B84F06AD5AB7891A8404962C983302805C0170D3ED77D5C7E231185D529811009B5B9A593B6A2501C489AD8539D60218A466DA729248A4672ECBB67C8E18D64D269192092021659B97188653E509EC26139C31BA3A2300FEBD660303C0D245F34600906B1CE05777DEDB100847A0DC6E0193C170DC26833A7B7A6177E301D06B357E6480913840AE00F8DF3F3DD0400C100A85D91572A2262516CF6A2F28A15B5A8BEA5AACAD02C72B891E516D8B615F10E4A48F58DB0549C0AC8DBFC41C644A50981704B9F78FF49B257C284DC529717FF63B41D98A04C8FD07894D22A8A2E85711DA079170D87FDABCD92300C81500BFBDFBC1064ACC88B1F538EB6821D37C6A572E311FA0913A9108EA04D1A09E3E998E0BC90E27EA7E81724E41562D526766CAEEC5E371A0D6DBB11816DA46A0C6620920C0D2EF782CCECE632FA9D5B2FB793C1EFFE2F9230C9033007E7FEFC30D9C54EB818180537A03890257F50E129282E5D3BB78B13E84A94923A563A80C80F4FD9CBA4B9894E221002412AC96539287404085044E408833E1E37EF44CA2B89DC06D0D3E9386D7B06B7D5EAFFFF445F34600902B006EBFFF9106FC1AE83EC5C1ACD78156AB513A632AAD7C06E9EE61848233E8EB238A04CA1D42E563AAE70B8482D0D2D189B5DF07C160C07FE692452300C81900F7FDA5218C4660519EE9B8CE051013BCF3FE3A648F98FF9C654B4600903300EE7DA421140E42B1CD72DC278356AE5A4DDDC303179CBD7CC40DCC350E70C7FD8FD407824128192E008EC164D02B6FAF82280260C579678D00206700FCF9D1FA50C00F459F01008E7632E8E5B7564124140A5C72FE392300C81500773EF8587DC04700301FF700F8E79BFF81482010B8ECC2F34600902B001A1E7ABCDEEFF341611623F0AD5D3B204A834DA9BC014ED5565F19B1437D8C4F3F2624C3C0BC3A1C9C0C0327FB04A41F5315BC47A9D90C5F9F34396328F88537DE813002E06B179D3F02805C01F0A787FF5EEFF579A1D06A3AEE9341CFAD7C0B427E7FE0CA8B2F1C0140AE00B8EB1102801F0ACC868C0078F483F720148F2B3559E9C72708AA3E7C9CD4034848FE96FB0ECAC7F8D4FE82F23520B3897A1BA434B3D2B348EE85C4C3689B0DFE77FE828C0078FEB5372110F007BE71C957460090AB1B78EFA34F36B81100797A2D50DBC0CF2E1974F806218392412A0010889F7FFD2D6A11E4FFE6652B46E200B902E0C1BF3FD3100C47C0EBF52A113E41D51E5F501A7470C9A48E20F70CE2929D3638B103094BF0F0C9819C38413CAEF4F651D6A9E3FD01270FFB060A3B302E90C3D472EA584A00B1B12BA59E493E147E53731BEE8B432C1AF37FEBB28B4600902B001E7EF2B9063A358A7A3E2AC5D995506F4A2F2051407C8ADF9EDA654C14BA2814B1DB96349A28C7A9C708551696D5A3B87F8249846DB3D83FDB8C8BB980445CCA072454EB98941C12F3058256033ACA536805408FC67FD5E5230C903300FEF28FE71B38491891187DF9B894A69552BD29B42CF5F2518FDF4782174401CBD4AC085D2EAAD46DB25B9798D44D300048252EAE49E82200202523C88001F2366503A53C310242906C123401FCDFBEE2921100E40C80A75E6840DA8460D08FB5484EF71E5FA1607F20085B76ED8603CDAD100E86FCD77EF3AB2300C815000F3DF97C83CFEF03BDD4C0E3B84D0621733CFAEC4B1407F0FFF0EA6FDC8C6CD08EA5074B3F9EE34286F0E974BAA0C562896089EFD9B327264FA3F0791D36362737F0C1BF3F5BEF727BC06AD01CB7C920B9B5D1DF9E7B199C2E67E0FF7DEF6A02408746A3E946C10F68B55AB75EAFF7E5E5E5058B8A8A22656565B1E9D3A7C7264D9A9478FEF9E761F2E4C9895B6EB985A990CF1318720680D3E5823CA3EEB84B0629E3164806EA5F9FFD27381DCEC0AF6FFCE12D28FC4EACF13D287887D1687461ADF7A3F083C5C5C511FC1DABAEAE8E4AD648BCBCBC3C6EB7DB13BB76ED52802031035BDF7AEBADCA47A5E38A3D738CB3474E00788018E03302C091E602C8A8948D3ED1E310078C7EE4E917C1E974061B6EBBF9370683A11B05DD878277DA6C364F7E7EBE1F851C329BCD6193C914C37D61BFDF1FC7E3D170381C457688B9DDEE38B2429C80401F10B7B977DE7987ABA8A8505C988E8E8E04FEA66309F93C35688E2550E4C6004F3C578F1FEDB80100CF0FF636A4AF0E8F3EF712B8061CC1C7FE7CD71F51D07D2854070AD88DC2F6E23A8880086109232B449121D89881F81E61145E18EF17C26DCA25C9CC00783D8FA0E0114C7C3018E4704DD3D025F0DC389E9BC07B2406060612322876EEDC992075920E8ACF0A103903C0E572A20D901900AF6FDFCAC656E55443BCA40E12C50F5D864A140D714DB6F3CB2C66B86ACA5485A2C5B68371D646F089175F03B7CB195AF9E2D38FA0C01D55636BB5367B81A03318C26807A0D0B57174716328C5386A7B0F1F09EEE4E2B101BC0F8D224A2580E008928051B01C82858DB22E10DAF113D050342874365D0DB2478CC61BC6F3E3785E1C81C3E621E8EFEF872953A6C43B3B3B21DDC69055C7A705889C00F01031C01000385692419C2A19F4DE452B9456C3B1589405B1229108BCB0F22DF0FB8311B7C7BDA7B0BCB24AA3D3DBC5E0514C0249B281A9B42F9688C50EFA03FEDD11BFEF8932B36E230AC88FEF1D410153CDD7A3D0D93C4A1C853A1173888518FEBF289D43D3D6E0BE289E1343809157114375C2C040A000D53C86E92CF16930446E00F8073280DB0516AD3623009EDEB00E2234B036373835AB6604906819D4C7B964BF3F3E3D3194960A8694DF7CDA792220E81E55160BFC70C6C96C6028127A381206FCE8D0DCDD078DAD9D6C6221B5B0530020ED8FA9F6074321D8B1773FDE270216A3716BA955FFFD2A9BB919EF2F606D37179696962D5C7AC6736EAFDFE0700C74BB5CEE3D5EAF67ADBFA767B5D7EB7493FAC012C1FB45F0F9A26A5040729EA214969001B17CF9F24176C4D10443CE8120B7D70D3A3C5B2B688EB96450726610295E89DF87025724742A5EBF1F1A3B7AC1E10B40A6DA3E08042A00044341D8BE7B2F04A8538CB4980C7AF7ACAAC285F83F35586C5FBAF8D2DF59F26CF3A8F34904FFAFBC26C00C389C21A7D3DDEDF37B1B9141D647BC8E77831E4F1FCA9E6C0A02029B9F80D40F0182C0E1F57A63A8364885C4D1188D1714143035422AE368B3434E0078F4E97F3604C2217079DC34CD98D41C3C39349B1C0E96B77975324790CF4B2675788E537E27133E208DF095BC56D956D917BCD42984937A17F1208794998DC7001067944FB53F0C215C7BE3BCD84F2083A0330240EA5F403DA13EDAB58B4511D3974ABBE586BA12FBB6454B979F5F5B37FEFB94A7480700ADC369BF69EDF67AC25EB7A72FE8F7354642A18D89B0FFDD98DBD1867294E73364731C22BB4424401000A268B4C67D3E9F32D3A9EC657C1C30E40480C79E79A92186141FF007C18B358290CD4B1D34783E19C39727654A19AA2D25C5C3A90D72D99096123EE23E25F9939E0360C9A0B8F21B581248CE0FC495759CA2B72C5F1087A2B23228AEA8CC20E86C20480280687FCBF69DC81E818C1FAEBAC8FEE0929953762F39E3AC3B7941A0995688D321148E802F146109AF4C80C8060C045934E0F3F4F97DDE1DF180EF3553D8FB1FBC650899013F77044F893240844221C60EA436D003891F3C783081FBE2B2AAF8F5AF7F3D2C10E40480BF3DFB52839862C1978A4459F72BE092FD0239A9C70E2F09580D06BA3DC7A7032199E801A91F9FF8CC321024CB5D127C42CE024AC9A0B8DC252C2E2683506C90C05A1F6725C6E8DF9C9F0FF9651549C1C6720180B89FD4C6C6ADDBC1E3F565FD70534697DFFBBDEFFCCF974C2673B5BC8F9EEBA1FF6E85979BF64395D9029546334C29B1C394F202549D20093D3320223195EAC07530108CFB7DEECE5830B44E88059EB643743701029F9131042DA81EA2B862DE066D53B00AD5445CF22612475105BCD8400F160CF8F0458E8D6410014CE079C5D5237B8A0487BE38F4797CD0ED0BA71872B9B2401855DDFA2DDBC0EDF164FD686887246EFBC1D5AB4655572F55EFEF7507E08A175F873DE014C73FC467D64705A8001354E88C506A30C1D83C334C2AB5815EC3A5083F3C0814A90009FA03E170D077808B4456E57191676C5A36DD8D0C88B04EA7C3D70F93EA88A29D1047D732A7790F734C07BFD0E0F179C1A01EF6F51800002F5AC48AB51F42E10F60ADED09886D01626A61C762870500A9B6D51B3E049FD733E4479B7DF28CF8F7AEB8845747F668F9F92BEFC3D3037BC4C12EA51ED162CF67715A55028526C64141440745BC010A753A283719615CA1194C5A2E233B8433B105B2702C12F2F2B1C84E5D22FE6AB9115ED026E26EFC2E7EFC0E21648288C40489A314087AA6DEE5F21E53C920D99020C131E1A3CEF6A0BEEE0EA60A7E68164802201245E1AFDF0414F2563E8ED4233A1E4B66854B2B46C1CDD77E1368F87CF5B2A6A903AE7FEF5DE8E783340A99F83E92D0E3FBF783AEBA1A04BD5E0282DC3602C181B7368734900F3AC817B460D76AA0DA6A00B30EB2AB0B69AD48975ABC44C33D108F7E608A476F32051D07DADADAA2B9B0400E00E02BFFFCF7A7EA5D4E17D84CFACF341994EAEE01B301A2247C72F50201E88D704AAFE0E100806AD4FBEB3742FFC000BBAFA0D142F7A17DB07BCDBBB0E02B57B05ECDB4D88ACBE0BB5FBD08265657A57C44FA1F573FF316FC37D289B55D4C99137404C9EB49F4F581EFD557217FC5C580140E82D1081AB399A6AF4B1ACDC02672060E6D1A7D90074B540B663C68C5772F336A902112A267A30200FDDF14AB0ADFDDD775E86773C794DDD3D4D4147EE8A187E287B305726280FB1E7FBADEED7243FE670080A4AF0F5272477CA538F3F5D19AC69AEF43EA27E1C7E531033202203308D0B866C2EFEEE915858902DAF0FA0B10F28B06E0FC0B2E079DC90CF6B24A58367F0E9CB770F6A08FF8C8EAEDD0B0FF434868C4DAADE145F7940D8081AE73F8A38FC032731624F0DEDE55ABC0B67001447BFBB17483BE7214984EAA15CFE5780508921BC48A10E0C018D100C50D0D78FF02FC3F463E865E473445BA7E472FC4DC033F99535BF5608828115FE7706A202700DCFBB7A7EA3D04802CCDC23FAD6490E86EF252F3AF188DF4017E127E08C1C02567AF57EBFCA100401FF0FD751BA0A3B38BD572BAF7C16D68033807C0E71A00BFCB0933BF7001D49D321B6AC78E812BCF59CAC642502FFD9E205CF5D29BB0877388359F002019A8913D7B20D13F00D6850B21E1F582F3A597405F558900380DFA5F7A118ABE703678366E045EAB1199C76402EBC449C0EBF420A07DC0492020A6530041ED1BDD3C4C3368116C5116AF90973E642D3D97B87E4655D1A3050505C1818181E8D101C063FF600C60B718330AE785CD9B2042FD025421597950A8943E0129616221C5854CDD978CEBF3AABE01721089A7E1EAF163E8B0CCAC1C0B36A339950A552C104B37FCE4FDB87E7FDD7A68696B070D7EF0CA9A71A03718524732273021CB58AC16B8E8F4795090671DF401FFFCCE47F05AEB41E8E07C90D0261BCB6AE899D1980CEFDB473A02D03D81BC3973C0F1DAAB60993C05A93E0EFEC646285AB61C3A9F7D066CA79C220E6533E080FC192743C43100BA824210B43AE00D463948C2C060F16860AA55A3A8033906D2DEB803EC26FDF72714DB9E0CE04276C073CF3D17FFF80078F449D622A8200B003EE964907AD0076AD96BC435E9C72BA7CF82196894655AB202406281F7D6AC83432D2DA0C59A5637791A18512FA7CF5C2E6FCF1A5F0BE3AB2BB37EC440380A6BF677C0C6964E68C39ADE1EF042BF10044E2F0356F404A846879A9B2170E080D8442D14467BC00005334F85FE0F5633C1070E1D62EB96A79F026BDD782844D5210B5E5E97FAF45063E1142F8158C08FACD5DFD90676A3FEBB93CAF29FD36AB5FE8E8E8E08D90143E50F7202C03D7F7DB2DE8DBAACC062CA990178552DFEB80CC04BF42EBB531A5401636D0550575A955528320B6402C0EA35EB613F0A418756F90CA4770B0D812F881359A703C064D0C18C713560B79A93DEC761166F200CEF23203E6AEF81766481AE900FBCFA28F0928D20365749B0BF4E54013174B135660BABF5258B4F8781F5EB2082DFBBE2CCB3536C0132F200ED81A95A039834F114AFA0F7E03EEAF1044566E3B5D34797FC13198E9AB785DD6E374B34650B0EE5DC33C8850F69D3258787F9B49241BC123B8E8B2154EAA082F68D9BCD733DF49209005B77EC808D1F6E013D0A7FFE8205D4A02375BC2269A20A3642197EAFCAE24216F8EA1E70821F6B2CC9C06E354171BE0D4AEC36D049FA7B2820F6B9FDF0DFBD6DB0070DBF2EBF1F06A22108194440102BC8D18498D7079EBD7BC0366932F4AE5903E58B178B2173A9293CFDD0B90438B5D090122CA2F845F3AE6DEC9CE2C2827BEA8A2DF7214B3A7D3E5F105DE4B0C56289C9AD98D243C53901E03E0440301401B7DF4B932E8A53BEF3AAA48E9413E0D27F2BE7A8F673A2FF0B29C9202990CCAB42C9F41BBF8E445F52862EC6406CC19ACF49AED9D01F3F35B3D78AFAFE8DB7DF011D0279F9D2A55050604FA1FA946DFCBF6604C9D2595307DDD7E1F142479F033AB1E05766215EFA2645B63CA82C2D04A34E37C84D5407767A9C7E587BA0039A1D1EE80B05C1990841C244EC20CA8556618F0774E82A26A4994EE4B887CDAD852905BA949C821BE9BFE3C07E764AF1A83160305BC94572C483BE3593F284AF11085C2E570C0111ABA8A84861839C0070CF5F9F68201FD44F35CFE747DF3BCC62F55C824BC228AB1492917F39FFA3247FA497927301CA6F29EEAF5C20F9BB2498390B1681D566CB39DB25B3800B8DD8175E799531C979E79C0DA5C54569424F9DCA8642CA679E3A03D2A37DF2420D4C1C4E171417152A35BDC7E186FDED9D0C1C9414CA439539AAB4188D47CB90019D4E870FB6B4F54197D70F8E30BAB57C14386342747965DD4F6E6F2001130523149984947BB4371F0427BA947441E99871A0331844A0B61E8CCCAAB0D56A341A6AC0422D9EC204020A15A37198103331B900E09127C46410A231148B003596E2A4342CA8021949207029291FD175E7C4FF9610FD5C39F3272781C4C11DE322D8E5EC9F34EE5F9C0DF51687EA7175602F291956BE9B5880D2BA2FBCFC2F1A1F102EBDF07CA82C2FCF5CEBA5B5D3E58105D32666A5770F1A7AEFBEBF16BABA7BE08A4B2F02835E9FF13C2752FADE960E38D8D90D5E7F08994703658576C6142C779105101D0888DDDD2EE80F6285A3C62CA8EF790A02383938ADCC8AEE6B3CE5FCBD3BB6B1B88519EDA2820AD12E0ABB1DA043C9D6D48E4B381DFDFD41BF67A58D8BDC0C7E5F9FC964A29C418CD4414E00F8D3C38F3784A311E0F1635A8C86E4E08D9F502858DDE49A9A7345B036792231080AFA236AF4F0C65B6F43E3FE2638EFCCE5307FF62919849FACFD0EF476686A1C5B5AA83745B02E17DA425A30A1E7A0660802EC9EC6FDD0D2DA064B172F64AA46BDF80241D8DBDA098DAD1DD033E002ABD928D9187C96F8BFB8DDE50A40539F975594094586947369ECA6ED9BD6B3384679ED04B64EA0ACFADA0EC0B2A5CB41D068944134C97E3AB87FDF966A5D641E9118AA82784E00B8F381BF36508B98A22C6EE0D10200AF0AF5CA563C35EAF0A19BE5D7188F48F89BB76E85D51FAC85DA31D5F0A36F7F8319746A00A8173752F0BF3ED804650536A8AD2C83715565505E54A0F019A9A5B51B36C15E14F21C04D2E409E353AEA790F4C6CD1FB1F317CC3D75D0B350ADA736037A0918AD3D7DB069CF0138800C4103689615E68341A74BD6EED8E113435D5D5D70A8710FD8CB2BC1922FAA23477B337BB651A3472BC2277052EFEE0D6B3F683E7574F1641067498FE5E406DE7EDF23F58140004AEDD64F0C0024748DD48E5F0E6C508286E8DB2318507DF0C3167E6B7B1BBCF4AFD7A9952EFCFE673F82E28282ACE792CE7EF5838DE0F205A43607A23A32EA756CAEA47155E55087CC400C48CF6430E8D3FE5707F4F60DC0C9D32667B41B0EB6B4C0B6EDBB18739C73E6B241C7BB91113EDCDB04BB0EB50175C52F460FC36CD4B3F87F7808FB61F7AE5DE04597B174CC49EC3E11AF0BF93F084B4F3F3D397AAA54D6A267E1760CB49E5C619F825E10B57489E60480DFDEF3503D1945E558333EC95030AFA27E8AD1537EDF838F151774C316BE1BA9FCE9175E64C6DC572FF8129C79DAFCEC8622FEBF77D67F04EDFD0EC5004D59C7932D934A0BF261FCE80A044305D4549430D052DB018A2DD03B9C7DC6D28CFF83DEA5BDB38BD91F3A9D5651197B5135F5A07BB878C15C9597E143666882F5BBF631738A5CCE44862667048CF56BDE077B5915E88C26A21896C43AEFECB3C06CB1A408BFA5B915D66F580F6683F683D9A34BBF88EEAF7FEDDAB5B901E037773D800008414551FE270280E4B4B349EAA796BCBE28BEB4CE346CE1D3F5CFBCF84FAC91FD300EA9FFA61F5C93D59AA765FD8EBDB007F57252E87297F3E4B8048380C1C61F1650559432404CA8AE44D5919F51F03B76EF81E6B60EF8D2596780A0725F3DE84EAEDBB4198C68B52F9C776AC667DBDFD605AB36EF84663438EDE84DB01C8304026AB1B47DC70E2828170D3F57672BD48DAD8619D3A72BB44F2A809AB7BDB67225E54E6253AB0A67E71BF4078705805BFFF8407D1869A5B2C87ED401C05AF648D4CFC97A32128100B5EED15B93BD7A86B1ACDBB011D66FFA9005AD7E73E38FA0ACB830EBB97B5BDA60C3EE26D5B80389C3B2403640D8D0EDA354F144040301C2846A8200F0D18E5D68301A60CAC40929FFBB0DD506A984D292E241CF450D51F734EE63DF63F62933C08BBFDFFB68176C4466204F4AAFD7C2A19656F08663CCF08BFABD10740DC0A55FF932F3B8E481B319F5AFDF008DFBF6A10D677A624A45C1CD689C3AF1B9725701B734DC5F1F41FFB4AAB86018FD02B8B4D0EED0FD0294C9A3F13E44F8CB279F02F916EBB085DFD7DF0F4F3FFF2243FF65E79F0B672D5994F5DCAE0107FC67D3F62C42CF8D05E289CCC0A00F3BBAB418268DA984496347A1BA284D463571D9B97B2F7CB8753B4CAC3B890978D0B3618DFFF0A36D5083357A62DDB894B0CA8EA616F8CFE61DB0E3403384A4369ADD07F7C105E79C056565A529865F27DEE7D595FF077AADE05E7852E562045437AA45B7C160C8C9082CC552F5AB3BEFAD27576C5469C1514F0671AAF67D72A2E7D2534E856513A70E9FFA5120CFA0DEEFEDEB8351A86BFFF7C61F64A57EB73F006FA2DE672D6B5402CD850568A0AC59136AC18CBA7C73E341E874B80E0B08322649554C193B1AA6D48C86225B767093EA22A372D2F8BA41C6A6BC3CF1E67BF0F6C6ADA22AE9EE80516525F085A58BD933CA7A9F54C5F32FBF0C03034EA829CCFBE99862DBCB28AFFE68344A8D1D22D9DC40731A002A6FFAC3DD7FA4C617D9E60CCAD437904FEFC533541F3F89FE29CE5064B2C2ACF153803B02976FD3E62DF0C1BAF56CFB5B975C088BE766D6AB546BDEDEF011F3CBE343D17A16169837691C8CCE37C22B2FBF02B51326C2962E37D048340604040579C8BD8B48D3D5C7D340256F97A2953FB5B61ACB68A632F45AD130240F63F5DAF5D4A104CE3FF70B8ACBA85EC853B8E3C997181BC4027E70F5B4C335575EC1329B6AC38F5CD23548FF16BD6EDF9C9AF24BF17FF7E0FBB8A45150A2EA40105926F404FA0C0028BFE98EBBEFF60742505D56C85EF2A8248364B0C80D3B59A207F5BEC1CAA6961BEE42C199279F798EE94CA437B8E7D65F64FC78D4646CF5D69DD0EB7067A5F5C3B1801662D0B16D13D48E1F0FFDFE30C42D76A8458A5FB168167CB0662D347774C28120EA65D64F21338BC455D959322629F8341599611A0282C2C7D92A00C5637EF1F053D0EFF2B067ED39D4085F5CBE14ED8BF1C986B0A8021C2E373CF6D43304E0F8F4CAE21576B37E076E0E188D469FBAB9981A009A340090D34C71D7B29B6EBFEBFE30D69A20EB1BA7079D86758455257A549D42A4A1DC4049F488FB404AF2F0EA41A1B8646E801A5E68F57AA8A8AD53DAE00D6759F9E6DBB0AFA9896D2F5B380FBEFE95F3330786F61E60A1D99C843D88D6B3DB0265F63CF01DDCC900A64516EBE54CA86039185B5E028BA68E87C6BD7BA069C0076DFDAE94EB332D14859C5C330AA6D554B3B53A2AF9C86BFF66C6208B2CF675B1361ADFB8744592FA25FDFFDC2BAF42D3C14314BC5B39A5A2F06634B47BB072B8A9F6EFDCB9332637189501C0A7018014949D924B04805FFCEE8F0F53528AB271149D123F8AAA674F2269A024925D7C94044F4AC78EB43C00EB6422F5E4312100169F75168B750B0832835607B9E8826E3474C8ED93979F5DFB6D9838AE76B04BD5DE05DBF737E724F44CC7A62165CF1E3F06D6ADDB009DC1387438BD29B44E239185D11AE7F526A57DE28A8533C1DD8BAEDCAA5550356E12EC760632B2C0502D7688118819AC26233CFDCEFB22938582D0D37A106EB8E62AB0DB6C8AE0A9ECDCD3082FBCFA3AD95481F9B5E55FA0915050EF3B0833722391F46CA00C00E24C93640892535B442CF0D3DF363C3E38C39748E9E2955067F9D419BE04A41A45924E553E2E35B94E88AD746A10F1B5536640903A7546C456AF667C692BBA5043B9832FBEFC2F68EBE8507EDF7BDBCD9067B5A445DA9CB06E67E3F0295FC502A74F1A0B6FBCF21268B47AC82B1B050EC1C09EED94F135AC7DE2160497D3EB4FB95E130D43A0BB0574463304751648E80C838CC4612F94793CB40F962F980BCB162D48E90341EEE3DD7F798C25AC4617586EAF29CA7F1A85DF87207017141484A89DA0BA4D002715416507C89E409EA4068A6EBCEDCEE73374EA4A4BED269299BC41FDFAD20CA1B86A9CBF181BE80FE6CD9F0F8B17CD81F6EE7E68EEEA45752382800AA90CF2A3CDA8DB2D26438A657FA8B9055E797DA5F2DB6232C3FDBFFD65AAC5EF0BC0EA6D7B5862299361962B0B500D090CF4A005C0411C6B39B5D73B6FDE0CE8D8DF089BB76C86B231B5702800CAF564F9FB8321660B2472B005725D02FD3D141F859F5FF71DA64AD586DF2BFFF716ACD9B819D954DB3AB3AAE852A47EEA41E4309BCD7E9FCFC71240EA96419C8A050495276052B9830537FCFA8E95EAAE9C49E1A70A5C6182B44E9DC9811D0733014BF7220B2C3EF34CD0A0804BF26D2CDCDAE774B32818B5F76740905ABE907A30E087A58E1976ACE56FBDF926F4F6F72B1F67F9A2F970C5855F4AB1F8DF479D4981A5E152FED0B680982BC8D3F1D0B77F1784C268C31455E09713DDBBABCE3D1D9A766C837EB4E60F2228FA7C81AC1EC17058201E0E4107FAFC377EE72AA8A91E9552FB0FB5B6C3DD8FFC8DCDA238B1ACE01B8566FD6634B8FBD0EFF7A0F0C3858585D1412D82689B63569AC2023A1508E86D6CD7FFEAF7AB53EA7F025246C84A6FCC91A2E33346D2E2293D7AA963E712D4FD824EAF18325614F0D88A621601DBD9D4027D68F52681209708B4ECDEA63CD9B9CB16C3C55F3C3BA525CEBA9DFBC0E5F50DFEF0390A7DE9295320E673435B6F1FECEBF3A00D14CF588BD50225ABBE5A1382DD3B7740E5A86AE88B69C02FE83F3E0BE079FD2D4D70EAB4C9F0F51517A4847BA981CA1F1E7804DA3AD1303419DE9B5496FF53946B17328093484372FBE2E98D43D500E0546A400D02CB95DFBBE156A44F2D161D52B606FFA9066BAD80D70A7847BA072F35E2E01272DB1FB5FE570C3EF1BFC4C5562E0454D68A5AC3F3DAF3BFFAF51A8D5EAF910110959A6EEB341AE6226971DD8446DCEEE676D6058C844F818E5604001DBBECCB5F8465AA840AFDBF6D089CCEFE0195DA191EE5DBCC465834BE1ADEFF600DF4A06FCF17954344A387E2FC3C961D6CEFE985A6CE5E66F9A70B949AAE73A10004F05D38D4FB87034D2E2C1074F641D0E3823B7EFE13661BA9833E6FBFF701BCF0FAFF51DB82F0ACAAC2F3F0E3D27803FD58FBBDF9F9F921B901483600A4AB023508642098A5B551F21674D2791AE93A4E5586E859CBD2BABC4EA713D027D5E7E5E5596C369BFD6B3FB8E1CB45E5A3C64659CE3CAE7269C4DFF49C63D0D7A60C9CD3ED43E136C3AE83AD9070F7C2772EBF04CA4B8BD32CFE6E388880C926F45C5920E2E8A7EE42108C25409F5FC82273172D38059EFCFBE30CC3A6CA5A704492AC402F1F551BBAF12CFF7B982C90409BA8ADA911BEFBB58B61AE2A744CD7F60E38E0E63BEF6241A4F23CE39FC7D82D7F439176E33776E11298376F5EF4E28B2FCED84F301D00E991411908FAB4220B5F561BF275902B00F458DB2D168B01D19987A5D06AB516171615979FB2F4CCB9F92595A322C8326A265033030D53336E5419549795A0CD90071A8D9016E377C1CE03CD833F7CFCC8DCBF788AAB9780285AF59E813EB0959443506FC19731B2767F2B16CF855D5BB74073DF00EC7345A451CD87167A3A30B22DFDAD07A0A6B2026EBCE65B838EDDF5D7BFC3961DBBC0A8D5764F2FB75D86F7E9A4E16F0D068317DDBEB0D4103473BF00F99F660081A002820C06ADAAD6A70B9F4B735F332E02CD2B8BC7697835ACFD46BBDD9E870C5088566A3182A248ABD5DA1024A6517593AA474F9A3635A1D5E753DBB9D8206690548456C3922D13C75441615E1EAA073F8BCFCBC3C60F25D06CC220EB9D125FE43AF6B9BD998141F797FB1FE0F193CA8BA15888C21B6FBC01C565E5E0CB2B83380D4675145820EC7180A3BB137EF7D31F53B3EF94636B3FFC081E7CF219E619D5DA4DD7D98DBA35F8FD7AB0D0D0B70175D0271700A47B066AE3505D7895F0D5B51F7260010E85CC0080C2672A0019C08EBF0BF1810BD05F2500581128467C2483D66030D5CD9C37D3505032D61F8EE8D420486707BD4E0BE7CC9F050E141AF519CC28F4C3B0805EA3850B179E0CABDF5B0DF6C222D8D5D90FBE1828C251E620481324993D01673F44434110CC7920202BE42AF421590055607BE31EB8F09CE570DEF2D353339F48FD37DD79376BF46233E837D5159A6EC0EBBBF03BF6472211BFD3E93C6C0F614EFD0F3380201D0C99B673117ACA82C2E6F0217914BC168B118B15E9CA468546DDC29287C54C051F896C0E0381A168547555C949936786384D712014E6D2ED04FAFDDD2F7F018AF2F398A178B0A31BBD072F0349AE2C402F516DD5C1BE3DBBD144D542D86805C1688633674F8798DB01BB1BF7413F9A45EE507848810EE5460E87059C9D2D285C03DCF693EB521A9310C3FDEEBE8761DFC143A81285E0D462F325F88D5A289988BA9F6A7FF070B57F10000E03844CC0E08E0400742ED67CAEA8A8482010A00A302028CC34E61EBEA4850A0A5F2E6629266122101020389E378C9A3A6B96905750E7F2878C51D6D3576482EF5D783614AA52ADF4419BD1522737CE170CE56C0B504D46FF441908ABC6C8C3A14387A0A7B7172C95632066B0B07327A1EA29C9B7C2DEE60E68E91D90EE238E5D9415708779065926B180173A9B0FC2CDD75D03278DAD4EF980AFBCF56FF8E71B6FB3CF5E956FF87DB15EB312BF552702C3110A85FC25252591F4A04FCE00C8020418C6F66197D1A34773485D7C55551519845A54073A540D7A2C067C11A354FBCDF87CB4B6AA80A0B00219A4D6E2F2727BCD8439DE1857E60D04F81FAC38970588322D2EAF9F05977A9D6EC61A39B7F6A1368A81000C74B682312F1FB4161BCB645273B05963CAE1A5975E0683C9044E5D3E845409A38FC302D430A6BD690F9C367B267C037D7EF5D2D4DC0ABFBDF701315EA2D76EADB5E9C9E7EF40A6EBC3CAE38946A3A14C419F6103600840C0910A5E7DDDCC9933497F111B903AA0513735C804CCF3C07FA5C79731E0F3B158046E13182CB8DF220381C0411A859801ABA9BE6CC2F499577DF5D2534C06FD907DF5882D28A6D08E359642B547EA11D03800DC40177477B483A5048D3E6B216BF5743458C0D3DD0EF148086EFFD98F59FF03251680AAE797F577410F7A1A1A9E0F8D2F305C89CF71086B3ECD7BE0A25E4034BA79A6A0CFC706C0D15E64401152C99E58BF7E3D3F6AD42866600602012D1ED6A231A3C797D24B3108930C025A53A452F59B31C305975FB17CE2A4C9E3CC468390B5D7300550A409A79C1E1F1B429642CF145CFA58ED028FD01648B747E2213FB4EC6F846BAFBC0CE6CC989E3A1AC9D3CFB381ACA8DA959BB40D857A61250ABE136B7F3F7E27DF50419F630E009980F0EEBBEFF2C5C5C5CCC0B45AAD02D29986C0806A428E47907A30E17E990DACB8CEC31A6093B6A918E62F3DE3E499A7CE995A52546856B7C593C7184CCE362646D3687FBFDBC3FAF50D201842D1E811E408542D89D25860EEE47150611260C7CE9DE014ACD03AE0CA0808BAA06DDF6E98503B066EB8FA9B29DF69C347DBE0FEC79F12935E7ACD8ED146FEE728FC0E7C1FE6F6210082B90E0E754C01201310D082E5D02EE0C2E130EFF3F904B40D28F4ACC1A2D3D3B8A9D1A8115F9C3C05AAFD94B9CCC7753EDE82D656D94EA81C3DB664D9B9E7CEAD1933B60CDD444E0ECE2843C76601C480C7CB7AFFD29A0691FAB82CB0A0B6026EFEC9F570C9E55740C26C83DEB83633F5F77681B3AF177E97D691A5DFE9845FA2CBE743EF462308A193CCDC55F88ECD28F42EACFD0E54A57EDC1E32E873CC03201D0C32107A7B7B296EC0D483C3E11050C7692415217A05C8041203502316BBC40879B89643D73A8D466B587EDEF9B3264F9D5667CBCBD32B730E2A80480581BC4DFBA9F955AFC3050EAF8F25A172670129248C2CA0456807077AD1B5D4405467000ED783AE0F8760FFEEED70C97967C3394B17A7A8ADDBEFFF0BEC693AC07E971A85BBED5A6E25EEA74610FD269389197E5D5D5DB1E1D4FE631A00B9A807040163040A1AA1201913482C406B9BCA605472186457D44D993A7AE1E9CB6795559415D248404926180A10E27ECA2C0EA0AA707903E00B8598253E6C6B3FD339F8BB75DF2E28CAB7C1AD3FBE8EB5A99497D7FFFD5F78EEB53744EAD76977966BA3CA8C6764F8793C9E406D6D6D3417B7EFB803C0E1D4030DD98E8622B30F68F85CFA466407A0C0281890271988562999655627B34C66B3E9F473CF9F356EFCF81AA3C1A84B1776523564010416A7CF8F86A4173C08087F581C9E361B0B24DB450C76157DFD3DD0D6D20CBFFCE1B5505B9D1CF78872FCB7DDFD6716CCA24C5F952E76355AB787649F9FA6BA43560C4F9E3C3936DC81A28F2B0064530F0484CECE4E0DFABD1AD4833AFC30060482113F8CDCA885D40303850C0429BE40AA03554182B142ED8449E5B3169C36BDACA2BC4C2368845886DA2F0322960D28F1188B35D0201AD48E21188E42848D6F701816888661F7F6ADB06CFEA9F0F5AF7C39990340AFE497F57743574F1FFB5DAC17EEB709B1D7C9E7C7423BDD611A41D8E71B36F51FD700480702A906B211D03610C456D682166B0C8B23E09A22884CE8925D60911ABAC8412639E5AD97935D1367CC1C3D6DF69CA945C525453CCFF16A4F615880485084320121EAEA160C60113BBC527337B1FBB7786DCBDEDD207009B8E3E737B026EDF2F2D8B32FC2BBEB36B26DB34EBBBB840BFE0A9F99F2FC44FD0EA27EACF99123A1FECF0500B2C5120808E4351023E061A61EC84E9002474A204952171629D864928140D7E03E96F59C3177C1B8F1D3664CB4D90BECD4A03DDD75CCE652660344BAF7D1DEDA0A1B366D82928A4A282BAF807C8B094EAA2A070D02E2E1279F95FB0D84CBF8E0F7B53CDF44D48FCF3680D77ABBBBBBC373E6CC891E09F57F6E00900E84152B56285E435151118FB584A28B1A122A059528CC8CAC605409DE22A9045A53A0C924BB9064604A60A0A961B49367CDA9AD9D38799CADA0B090E70521B3E0B30122694FA899A3ADA515367DB80946D78C83829252E57D3A5A0E414F471B0BB416E8120F5A1391D7C9EA27C30FAFF720B85933AF23A5FECF1D0086F21AF06351DB031EE9572BAB071428CDF66594238C723451A51A1456203B410A4FCB6D2384D1B5756563274EAEB517979619CC660BFD6775CD8EA5093B1B20DADB5A60E3A60FA16EF27430599349AC81BE1E160D34EBB57BF3C3EE5BF0B969A26B6AE3E7A059CB8EC4E73F210090CD6B90D3D8A15048D0EBF502CDE246B51B05418265092829D42C03C02C859B654630AA5A4711A3301541ED22A94D65E5D8DAD25175934ECA2F2C29D3998C783DCF1DCEA59455C0D66DDB12E525852DBABCA24A93354F4389A680CF0B4DBBB6870BE2DEEBF19F3491E1476DFC90CD3CE8F71F91CF7F42016028F7B1B5B555510F54ABA9912B02803C08F20AC85660609032904A5B484965B0B609A41EE4B8826C2F1010A4B903F9FCE2125B65EDF8EABC82A212F437AD82466BE0048D8606495303A20301D0D2B87B2F38BBD751A49AD7190D86CA9AF95A735E454FE3F6C78D51FFEBB8BF9DBA7621785D682406F0F9A3C86EF1A3317DDCE71E00E960A0F7BDF8E28B999D20079564562021A29DA0A5B434AE99772005998C19EC03A3EC41903B49EC4040204091CD200341DD80861683D96AB497951759D08E3098F2F203A1A0A669FD7BAF30E1F33C59F3D4D1DA4FB51D7F77E19A023E5DB8EDC067A26EDD47ECF39FF000381C2BA05EA59940C97B1070AD456030231041A04710E8A59A6F941252CAB654D2814085359D97EC0662079E9AD0130E296347134AE23A22ADE5092369624912743FB5EC2510D036F9FCD4CAE7E3F8FC2300C8D168349BCD1C25A0B0C6917E676A221A8D3203523608090092DBA800410689E47A6A253B41AD2264564848820E61216B9E4D1E49F30CE3FFA0B51FF73BB1D02C16FDC8486E046300592BB26AD5AA23F6F94700300C5650AB082A04068A2D50FE815A3091DD20B988643730401000A4C8A24EF21AB4AA988256A51A68A1B9858392B083D26FEACE4F032207719F87E2FCE4F2813869F551A5FE11001C01188819D07BA069E2A99D8220BB852458F22AC8904481D19AD57A620CFA2D0B9FF6031BF59E751D8FD174F478DC8FE70525DDCFD400CD168AC702782C80A00BD09470479BFA4700300C20640203ADAD562BD3EB040A14121990D4AC8D6692279521A01019486892691558E838DD3A4693494B6A808010C36B13B84EE075B4CD660B45D0450E1D3A143FDAD43F02808F1F766636435D5D1D900169B1583897CBC5A170A9912B2FF5B764E0A06D142C3308E99834654D82A693A729E6E5DA8F0062C2A0A960F138D9036C36F1254B96C48F36F58F00E01362070284C3E1E0BC5E2F47A0A046AFE851B0DF247CEA1483359BD3B0908062F9C7F17802CF67C240AF24D1D8D808C83409A27DDA97F88404350280A30C063543C8A0A06D3530E4F348E0070E1C48D4D4D4B029E133DD23F1090B6804009F1228D4421D6A5FE25316C8FF072BAFFD9FFBDCE8AB0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (72,1,'PBX_(24)',decode('89504E470D0A1A0A0000000D494844520000001800000017080600000011218F2D0000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000005144944415448C79D954B6C5C571DC67FE7BECEE35EBFE2B19B0CC4B5533B8D49E254A452B14921010591A8E21190501149BB62C3820A90408A449C0DDD2051A95408165055E295052D84A2224A4155342AADA394C68E43502C3B641C7B269E38F6CCBD3377C6F7B09834426513E7DB7C3A8BA39F8EBEF3FF7FC25A8B10C2072240010EFF2F0B34813520B5D65AEE519E10C21BDD7FE070676FEE1919B8DD5A4AC72885D20AAD244A4A94927444512D70C41F4F7EF73B3F06927B06005160F4B1634F7CF670575744640CC618426308B5210C155AB7CFAFFFFDCD3CF06BE0FA66005EE0BB9D1D4671797999A610C83044194DA00DD268A4317C656C0C2D65084836210FC00DBC8D6BA59BF42A8D361AAD14C628B4D6844AE17B3EF3F30B942B953A9B9403E0BBBEB323BF159447C383BA7449A44FAC25D54851EFE962F7AE9D6CEDCBA9CD023C80C0F5995FBA49DC4A914AD2481A3474825CAF922889152E6F965798FF4FB17E5F00CF7319E8DF42474744141A4213B63D7CDF0D9109B9512C06F70510BE2736ACE5ADABFFA6E9B904266C871B86F8A61DF489BDFB4892C4DE174042ABDE6CF1705FBE1DAE5228A5905212F83E9EE7B2B0709D4A653595523A80B8337CF706D8108EEA509299D212E9AA43600CD2186418DE71C3D3A30FD3D1D5D9FDCD93DFFFD6C91FFC687AFE7AE957473EB5BF2BAE548A3D3D3DD9A54B97ECE4E4A4FDE0940B20F785274FFCF0F183079FC271D0818F943EBEE7E3BA2EAEE30282B8D9246E65546B35A6DE7D8F48EBC5A78E7F75DBDFAECEA3D76BD5787565BAB27AFB0FF5A4F18BED41B37CEAD4A9ECEE0B5A96280A02945118A3EF866C4C3BE0F9C565B2A449AB5AE59DC2DBDC5ABDCD379E3E9E7FE1E2347F9D9B25ACA71DDBBBFBC7B774F68C6BB7F16CB2562902DB01EB026678CFD8D15CFF03BBFF79ED1A57964B5C2995985D2A71B17883526595CEAE5E84105CB838CDC8C8305F3E7298AE286228EA644FAE1F2D3C2AA512EBA2494E86D457CAE6D537CEBD77EC3307FFE501226BB65AA1923C36FC10466BB4D628A9108E43DDD7002C2F2F73FCF347495B1B54933ACA8523FB7691A429D7060728AFAD737EAE48B55A65764979833B065F7EF299EF3DEF01D946B62154E0337D6391D46D87AC8D61DF8786504210C709AD461D1948FE3235C57A9CA07D8F570A17C875468C3E9867ECA141766EEBA3303B4775A54C235EB7592B7BD603EA8EE32C4E5F5D20CB3240D028AFB16B6C2F1982B55A8DF353539C38F6390A172F63ADC5735DE2B88AB0B09C36F8C7CC153221C8E7B610AFDDE6F14776F3BBDFBFFCFC6F5E786EC90392F2E2D24FAAB756676BB5F5EE8D9675AD6D390FF4F79E40853BBDC0739EF8F421E6965668349B78AE4BE467C45980E74B16AE2F114849234D592C95F9E281FDBCF6FA1BB776F5F77C1BB0E24EA309C0BFF3AB04C0F8F87898CFE71F1BDABBFFEBB9C11D078E7E62A2FB6A7199C5F20AA5F24DE25A0D6542AA698B469A92A44DB61A8FFEAE0E7BE1ADB73FF6D24F9F7BC75A6B1D00DB566AAD8DADB5356B6DAD5028941CC7F95344FAA5775F7BE5F06F5FFAF9CFBC667DF1D1D1E1ECD1BDA30C0D3D88D492C07389D76E13D88C8947F670AE507835A914CFBF3F70E25EEAF5F4E9D3CED9B367DD81818121CFF30E7EF4E39FFCDA8787777EC4F565677323F32B6B55662F5FB66912D76B73D3BD67CE9CB95BA96213FD0D200E1D3AE4F6F5F5858D46630418F67D7F64DB8E9189D5D28DF319FCF9972FBE78EE7FF7D46601ED4B4288C9C94931333323E6E6E69C898909A7502864535353AD0F2EC1FF0249CC173F1A55B1790000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (73,1,'PBX_(48)',decode('89504E470D0A1A0A0000000D49484452000000300000002F0806000000A58249C90000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000E2F4944415468DEC55A698C1CE5997EEBEAEA73BAA7EF9EDB638F8DAF65CC189BC4C104010E3898C421B6907229D9EC2265C50FFEB0E44FC051F2075961154BAC404A565A25D92C24596D921F08A41020104C308CED39ECF18CED697BBAA77B8EBEEF3AF27C5FD54C661C93AC31335BD6ABAAAFBAA6EABD9EE77DBFEFB3609A26B143C0C14E1089AC63697CA387B9420CBCDFA0353C04660074176DC59DB638203244FC08CA33855B9006A40669DA86986B61806C7B9E29EB818421714810E2B2EFDFA8014CF932640E9286E4207588BE2606D85E661E0FEDB9EFF3FFDE1E8EDCE374AAE4545572F1B3839C4E88432555B5C6CB670713851C0A0467056745964986B0F38BFFF5D37F3AF16F3FF82DDEADC14F6B1285250354E6754912DABA1331EA88852C6514A6A06C5F3345657E8F29EB90D93D998B437690CC9E9325AE387BA65C295321BF18C57BBD901233622DA220DB40E529244BB267D72D1BC9E9526D856D65577878E53D65F9378735B69F63D72317A6A8D168F96C4C896B05E2A51C671F40E44591448B782AF50615208ACAD2C2524C6646C896014C797939326CECE0E39E809F8F995F9031B24D0E6B6E0037021608866EB1DEA9E94B349ACD9008654428C7CF48175159BAB6C74BBFC9D673DFDB7F276D723A399EE18E8F4AC51FC9005395256D3C9922AFCB4931A7973AFBFC8880054A87A458792ED920B5AF190624D9BA968081E4F929CAA85728E0F5D07A1CAB6852561C42C0E7A6A0DF0760DA806520B5D34365A065E0455AA9B2651003B0056E965230CE36B0582EAFBF01F0A0D8190E728ABC5910972BD5FF8708804797AE338502955A2D0BB88A0558790558D93DC96145497638782AC988CA9EAE4E6E40A3D924C330D6D9005932354DE755612697A38BF91C9454788E4B36582559B1EED9405EBECFB00063B64623D4EE7633065A7F03E039239D2BA2F817C8076586E25D76618277151429D1A65356B024EB1E535C1165708EF5EFF4FB67E80C888755714D5B670358250D78DDF8B8832BBE94DB7FC96F1BC40E06E2A5EA6B815692608C8432224A2C1569269D2173BD2380A6546C73B19EE7E6419C2F964833F5F535409404C1FC3841BCDE29240992A9DB61BF5910B7348DB47507B1AC18F9729D66F345F22B2EDA9DF0219F45E436F3BE0003AD6A2BA25FC25DE2D320844C6842D1063C8E39CC2BAFFE9E584B651A26E99AB6DE292492CFAD5254F5D9EDC25FAAACC3EEF5ADD65A5E4E190BC4ACBDB61909631106FCF1FDD3A4A1AFC2F382C7E311060707D9DC49F8B8E704AB0C006F8BAA6CF7F5BCCF979759E846411C0B87192BC98944C2DDDBDBEBDBB56B17EDDCB9B376ECD8B1D6534F3D65AE260FDEB99A376D007F1359EF99CA64295B2DF37C97150BB8D75E331CB048C936B0D1CED2A1CD031444EE972B258A8423F1EDB7EDFAA2BF2D5402BD56C968BEEF108C0F9E7DF6D972B3D974D4EB75D677371F7BECB1C64B2FBDA48D8D8D99CCB81B3168750A21C24DE42DA351DD34A889149021A6A893C1B0A08964081AE9C080AC314C08A40308BAAE530BD7986053BD56A32BF30B94CC2CD2271E38740460165BCD164161BA9A4AD3623E3FB721D4F6D03D9FBEEB61C9E5F9467661F162A4547C6BB654FB5FA830FEE4934FD66050FDFF6A90B0341F86EC7CF2A9EFFD20D1D3BBBDD16C008812F72ECB6726EC255C186EAD172E0B33C0026D8B7981DAC27130108C82D2CD56939F935753347661927F74F7B681FFFCE7AF7DF94BE962559AC8E46883DF4D15189E2B16F58585FC7CA1543ADDACD77F2957E75F6E954A856AB55A9F9D9DD55E7CF145839652E47A1100E8441D1F0B7A5C56C5BD5EBEAF9A85C936B81562CB3F9985059ACE55A8D1D2C8C47B74569D7589A666B3343639B54C145F78E8D011D5A14A3F7CFF1DFA4D7A8ABA652F6DF2F9A9DBE194A292126B0F860ED4EAF50305C56516293FD7946BEFF9FDF19F21F57EF5F8E38FD7571AB1CA00785274A2BFE19E6654B942A4E56B91B70C96487C6C40F95CBE40999A010541B5C08061FF3E9DCDD2F9890B944FCF50A8AB971E39FC39EA8C455D6F5EBA4AAF64A6C98528E7D39768784EA1311FE6216E0FF94C075242A23653149C0E775431A5830D320EFE29BD78EAE8D1A37B1109FDFA06AC48B3E1649292853C07EAAAC265172FC9062FF3A80B060F863B318F70626C799D793F3B9FA6F3539729D2D94D5E14B7BDB7DF4EF7DE719BF5FED939DAE06AA3B97AD1CAE4B93932B273D444EA15BD3E6A0483B4D08ECC964CDAC69C022C568A79E9B3F7DE2BAE5CDD58CD42866196319167208EFADAF8FA8FBC34D3E24CC3CEEA720D60AD848076C1EB7071E57935972CE51733791A83E7F7EDFB24B931476693A40DF1304DA7B3BC53FDD6DE5BE95B742B8DA4E769243B4FE7907E1333D360AF3C093A5AF152995C9118B97491C26E44295F4577AB2786D30B9B1F7DF4D189E79F7F9E5549F39A95375113250765F315D6575000D598A3168C433A005A012009396E58C035748D82E10845FA43AB989831CED9F131FAE2A1CF92CFE3E153D190CF4B3B36F6F0670A68F416CB559A2B94C8038FEF09B7D32763611277DC42C357B274097D58AA52A685469DE24E74BEF87CAD5A23C5EB8F15F06A6FACEF275F7FE28927FEE3996732AB0C68B51A92606A140D783EBC68D9F740B994C7478AA6E39A201AF4BB37DEA4AF1F3D4CDDF118B023D2C8D434FF2D35BF48018F9B1BBFA123464E38C9DB9D209FD7C359682A95A55EBF8B224E19B86AA7856205DFA8511386B4EA35F221A5A23E97D0DDDDFD95D1D191871189C04A03840603B143A10FE35BBE7461D3660DDC5E44AE93B47AD5E4F53FBC4D9FB8ED56EAEB48F071120CF4A7735360389D5E3E394C2E55A18D9D71EA8F4528DEEEA344CC03AA6D219A3AEDECEF21B76050A2A383CE4E25D15ECDC0A94D323589548F173D5795766E1DA42CD22D73F5CAA53E8F2AAE5A5631347D19C56F9C3F77FD7521D6F7C0AB07B70D5217D267E5319BC9501515F8FEFDFBF8385FAAD05B672778B496A4526BD0D4D50CBD373EC98D4A8483B4B5B793B6F57593BB50A48E441C9851A927E4A31D7DB7236B35FAC9CBBFE77EBA6BEFED1C3FC3C3C3465FD8FF8D3B770F6AF28A55659401435F28942916F4D38E8E6E1A88775AEB3F760A89AC1345E595D19DFA83916BD6A54D7AE3ADB7E9F0817BF8B08E0FBF717ADC5EE082F2260A229E114D811A39CCD648A1C19E049DBE92A12CA6B0BF79EB14EFC1B6F5752112BDD4D1EEA58E789CAACD029DBB3C43BDD120F574C4E9DDE133A4574AFF134A04278E1C3962C82B96C46BE0A76AB9DAA062396D2DF403AC8CE375DD16036D048AD47D0F1CA00A0395BDE0CB8EF1F313940115FEC32D9BF9B3EF8C4EF0D4B03CCF562C4D7EBDA1DD434954ECEE6088CE24D368C145F2362A54460BD300A79C3A7F910B3BE2C180E58CE2023DF8D0512A01F8EFBD77AABA23D2F6AFA954AAC27417ED0D09B619B1080EC77B5A505407654159B08C0625D83D4D632D418BBC6D3E728259827E2F2D160B343279992693297AFBE4BB74E053FB882DCDB3FC2D562ADCF3026F45AC22184764AF166AA4230D672E4FF1BCDF120B508BA527AB21C2EA25D4D9C53CA5D2293A7CDFDDE4C7375F7DFD4DF2ABD277D0E2CCBDF0C20BDA521D30ED5D94F9E177FFF87D41917EDEA8D7037A4B771AA6C93A35C1B0E8854D2F1D5BB66EDB3CBF7BF7E76B8D96C8665CFD00E41C52E09143F7D39DC8D1C9D42C3E9C5BE5794360955CA2F4F465123D6DD4ED12693A10A61018E9FCEC3C1882A5A6B11C2563A9A0E29C68F3D2EE1D5B69E4DC059ABA706162B02BFC127EA92E3577C20A91ED5D1997BD24AE5CB3AA2C4422117560606043341A1DDC72DBDEBB227D03BB2ABAE9AFD4EA7C2D74D7967E6E4C83450D69C440CA841D3D609C73A939784BE07B07020C6ACCA5A8E5F6230F64CE6CD6F3C6F2DFB4CA39FAF637BFCA375BBEFBEC092344DA418764FEE1F8F1E3CB06C8ECC2DA65E238607F59B597C4AFB7AA0C5A17B3F858F2D2C807C3C9F1337DAAC7D7D7B373E840BE6C6C3A979C510EDFB9177C8F767A7681164B258E23A6D0D8748A5C682772C9297245BB68532C48672DEAE0BF9BD760C5007DDEB767880248D91FFDFC1764D4CAFF2DB9E491E9E9ABF595ADB56C73BB695751B60DA4E3AC5D43FFFC980348B76FDF5E77B95C790CAFC090F156ADD23179F2F56118D63770FF830F54EBF5A1CE4848825019C569722643E9F91C4F8B161475257AB897DF3D3B46AE40D06628B4E068E2168A657E2D1A2239CD26DDB36F2F9D3A3342A73E383D3F10509F6138C53CC1F8AB5DCA1BDEDAC4F1F4D34F0B6002A952A9B8D0FF045081BB60D036FCDCB767FFA7EFD8BDE78EA150281C602CC6264939B40DD399799ACF1741B1ADD5E9021D8AC94912C35DBCA16C1473F4CD87AD36E43BC77F6806A9FE8F6E45FA3552388709CECD1B70AD3D6871C546A3E1F67ABD1144A2A7D56A6D808D5D6EAFAF63FF670EEEEFDBB869A3AA3A55B6D4D2040D17AB555A44D1CAA35560516255BD61A7920EFCF4063DF4C8830FD0F1E77F4CB357932F4764E35FE09C2B68E05AD7DD27FE58369C710C0D0DC9FDFDFD6E0CFD302486A8F4E2FDBDB88EF66CDCB265E853FBF70682A1285C28B2A8B4604CD336AA0A222800DCA36747A8BF7F23E60902BDFDCEC962C4A87CC6ED768F3CF7DC7395EB4D2BE58F6B79C37E39F350111129631A38EF743AAFE0F638BCD775F1FCE8C5CB17C6879971FDDB766EEEECDFB4C5D31688498AEA361827617EE143BF03F6D0E64B15A9B8B820B409AD63A847D3C05EED43E7C46BB481BE8C9393274F2A888407E915C0B7A2B8CD36D2E3B88E407CC08F5351556FB8B3B7C7178AC4E6D2A9E9426A7A5472B59565A3F18B402070F1C48913CD753760A521EC1B77DF7D3726720ED5EFF7B314F302277EDC0F23BDDAF1481BEEF960A8862A9B626D0D0CCB603C05D629FEAD251699D6F858FAF86BAFBDC676EB7544A5363A3ABA08CF2AF97CDE89F452F1888ADF30DD500C4C862A509E3DCBFFAFC5DF5B1F5AF308FCBDC81C3B764C8041CBF50675E68616B7FE0C5B7C9C936CB491530000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (74,1,'PBX_(64)',decode('89504E470D0A1A0A0000000D49484452000000400000003E08060000009B411D6F0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000015474944415468DECD5B79901C5779FFFA9AFBD89DD99DBD57ABDDD5E1952D74AC91916C4010CAC426C4AE440A014C0E123B058E09601248A54AB88A22840A24A10A889D4A91900A71D97FE0B8EC70D8F828C996ADCBAB5B5A6957D2DED7ECCEECDC337DE4F7BDEE999D3D6464235B3B5B5FBDEED76FBBDFF77BDFFDBA25CBB2A8FC93F0730EE5729743D7EB67559138B7AA2770037E52F9F90EF3CCB802529D56AE02E13705C2AC625E07190E993712080180C33C33AC813C209FD3BA1D30E4EBB4FACC78099407E51C2A9681B81120A855CCBB407EBFBFB651716B4DA6A1D74A92E9B74C0940588A2CB304C8925C81422159A18AC628558A23F38173AC488ABDEA8A64E2512597A2E45C2E57D21B0CCEF41D3932846B495061896ABC7B0038A2AD382B5EB3BEF7B687A30D8D9FC124C9A569E47669543E76F171755B75AC897355B49ACAAD6AB7205590428A02028232C832CDEC0777EDD8B54415CC1B0D40044A1166866A424172BBC1946A33A731A3CC105A55511DA615BB556DC655C1B482EB0C8662338EB18AE8939D63990C130B6D492C2331501A947554836E2400ACEF41AC507043E71ADAD8D92E1858584187394D5DA17FE19857FA6AD7CAC7BA69D0C1C3C7188030C87B1DEDCC5BFE95ADBCEC1840B7A24A5EBFCFF3F6ADEA35380B8FDB4DA669490EF35AD53C6E0800D5FE5E516455BE2A13D2F59BA3ACC8E448DEF572B36F5B05A81A048599AC62F417A74FD24F4FF461AA180AF19620C28009C7AA20A9EA18FA817379E11CD724D8066E63C120F57DE68F2AF7556C777243995F0A80BD32B26C168AC5CAF91DEB36D07BBBBA8501B3F51F96BC4AAF1547B7952576409C2B6C3334D1BADDAE0ACCD95C0E0028B41A7ECB0190A4622295A663E7073071098BA709E3A708E3A60957C6165E511CC3C6AE0DE79AAC8A9699156365DBFA43A784B8236AA041B1D6328543010A05FDD6AA0400AE4D0E0602D41009DBAE6D991750843454FBF7CA18018A5C756E7B04C5014595ED58A0A41B349748AC52099035AD26E0A570C0FFB6DCA0B6049415C7E11E631313D26A006099EF551449B6DE059B542AE9AB5402147911FBFD931374162463E564AC9C6815DBC8C92B108BB8AC2ACBFA431E0F7DB1F7D6CA7D39185A9500404FCD6A3788148D8A86C1C611F9CC42C4C2EE52AE0A23E56A126993248222384262480BA659F10222EB31699502A0A87ABA5024233E0B7BA0504071D11D6BBA9C78DE496814A512D70B43A7D85E61F118D996064E7E244E80243A72EA8C38CFE70BB45A7E2B488064444321C19C5B73D9595E75C6C7C78AD3BA382942A6E80208DCAA2EE1253813648BCF2B8D90970CA304CB6F92A1EB42F473EE02E573B9D5E9062559514BA522857D4127B191191452250EDA4D522CC38EF721C2A66E910E36254B25CB30C954755275858CD262CBEF7179177981228078E995D756A717B08410FC0625A66BF0203EAF870AA512AD4A0058F4DF8D64A8B44A0058AE024B92A1E7CE9CA6A74F9DE0EC058910121BE8B7A88B71B2039B601F3BFD9C18C1184ADA42C2544E9EEA910C1DFAD4A717DCA0B15AE300C441D5B5C95DDDEBA8B7B3F3FA2643F93C15F2AB1400972A1742E110253339D8B91C5C9C0BCC4838B6FF60EB483678052DB24A0699528974AE20C8B6DF278067D9756E8C06F138387D1371C041DDB0A30249088AB54A2540924D4CD42D6A7A6E3BAE979525898F62AFB2AC3A31819DEC708E2F7C3FC700ECFFB95FB28BA0B2BC1017CCA7D374F4F8295A528C91560500BA696AF94281423ECF3B9A0C1D3A761C2643915D0822A2D1A8DAD2D2A23EF2C8233C1F73DFBE7D8B4AE4E51DAB7762DF601900164BC03B18A7B32AE88803F2853C4522115F2C160BB7B6B6E6DADADA3480E14E2693450051387DFA7469D3A64D165AE9FEFBEF979B9B9BADBD7BF75A4F3CF1845936D6D70310C9294AFA418DA00D9F7DF08B5FDBB061E38E70C02756EB527CE6BA25435FD8B65D006000E0C77EFCB8FED2CF9FF961CFF65EBFD71FC823942E4175B2A6A19F7449E621CD3467F2F97CC98D1FFEC705B7C9CC16FD7E7F2993C9887D849E9E1EE3CC9933164B4C795BF3AD82B20C803F7BF04B5F5D7FD386DBC23E1B80FEA9493A3E362A989661D11798635DB7DD5CE51CEED01E67F7495C00718EC36E373D0C0072F91C8D4CCDD0A193E72C0BD70DC390741D8614E971099291CD66E9DCC060D1E776FDA4A73EF8486B6B4747C7A64DFF31139F9D9D4B268E65D3895FA4C6C78F636E39D8933C4B8CD7EB2DC5E37103AA649455E85A256419007FF185871FEEDED8737BA158A81835DBA0A9627383032561D0E4056327565D183B1E6B7B04DBF029222B44AC8CEC0F5925DC5F06061677166A50665CB4384FC3F3BC71FA742559DADC16DBFBE9FBEEFB7BA84A57167D654ACCA7AD99787C3E914C0EE5B2993EBD90FBA5AF987935954A650068BEA1A18125457FFEF9E74D5699370363051B60995CB32B16DD5C22460E5066942BC29C12DB4C490E594E8A6C5B2D934A707BBC05CA8FE3671AC81D74447D45185677A89624B79764305DF60C65A04A7A9EFACE9CA930CFF7BEFBA377FE61437D7D179F7FE7956364E2419D3E3F6DACA991EAEBEBC3FE60E8964CBE704BB650B80F9EC52CBA1393B96CFAB54232FB5F35F3F3876143B25FF9CA570A8F3EFA285779755A61EF711900F0F3EA7C324901C4EBAAA4DAC9D0DBD81912EE11AD059D87CED2E0F41CA50AB698CBB2B920210A40CB1B74F0D8710447F9CA3CBA3A3BADEE0D1BEFE1E367CF5EA2FF1EBB208AB41A24CD0F09EAD002D4EAF55183E606A9E4F57865AB566E52BCFE7B2125F70EA5D325BD98BBA47AB4E74E0C4FFDE0A1871E1AF8DEF7BE575C0AC23200100328BA61FC065655885B25DE47DA4BA3732921F615C6B9526CDAABCF21F1814387A9542C52626A9C224D6D140C05E9814FED9138BEC815757AF4E471A4E0609EFF373E4BA56C86AE44A234967793E645A689B5AD355D14819A06E023985C6E8FA693B41E19C7FAA2617E5E3767EE801739089530DE1C00CB94AAB585C1286215159086B457850557D1A7E25C90B1F85CE3EA11DB014C5E0753B3F3592AC8308EB2E5D80E19A26C83A1C31E202D264BD1283E7691129363D4D2B99E3EFB893D14ABAD11CFFFE1A13EBA584CF29E1DA93090E6F81869810059972F533E354F567D8C4C8090A889502610E4AABB883CBD798536413284CB4DCDF2BCDC5009E9D7DB00321789C8CF4F9DA427FA8E2EDA0DBAEAB193FCB0F8075D2EFA60630BDDB7F5BD769827498BF41EC68A5E38F00A856AA3D4B2A683B6F7F68AA2CBDA863A7ACFFACECAF33FBEBE9B9AC1F0B9B939BA984CD078A886A4629E8A434324FB03B0AF06597309925D1E4A5FE8A7C8B65E31A7904B25376C163F279F4A92C7A51AF0145CBD33AAD560793688489FAB38A623061F7BCF16BA677BAFADEBDA4294B7920D509C7D00B6EAF3E90CCD188BF73C858B344D01C68B603ED6D0409B7A7AECF710706F17EEDDD9DC40032313A268C27D8D911AFAC4968D8E8F273A353A437DE31334D0D84943F3299A991E26C50D470669D39A5BC0B4CA624C752A6FE75B54C23D73F9228582B1CFE5F11CD882837097A5AF7FFDEBE2B59C1500B07405038767923088BA53DCAC144B2A8552724062F726921E88B389D5300C7E19C4A25B77EEA44028BC2CD5E6D57FFDC8516A88C5E8FD3BDF275EAA708B1D26999AEB22B4AEADA9327E0EC6380DC33936338BE42C8BF998E4473CF13B37758A802A9DCBD3C991B53400091887A19D29E6A8844C8DAB53CD7E0F494609095B1A091992B060CD9E5436F57B52B8E16BE974E2FB7BF6ECC9633EE6721B5032B1483A35D50416121FA7E059DE06B37780EC5616FDAAD07B2EA514F522A50D40E6F6AD6824CF5FBC28ACFD9F7FEA0FC40B172EE7A58AB1E93875B63454C6E53086C16D8B45059DBF3840EBBBBA4414393C3943A33373341E9FA31ACDA2DD1D8D9483C16540FA27E769C6CC51AD57A54CDEA2D47C82427531A88A09BB1296D7ACEDFC87E47CF25B5A51FE2AA4E01F970150B00C957DA16B4577777537C8ABCB394406A24B6EEF8ACC4F4E4DD36B878ED0371EFE02D5848395FEE3FD97E8F0F9017AE1D869EA68ACA7EED6466A0807A8BBBD555CBF323C421BBABB9CAAB542662147B77434D3ED9B37522A9BA3574FF6D3F8D8146210833AA37E6A0A68226062952A606C28DA48FAFC1C6DDABA4B8C492612523A9D6EA1884F5E2E010624E02D84D3ECF244C0037796C91528AF7A56CC6B39B27CE6673FA74F7CFCEE45CC5F9998A6BE8B9785AAB1C7393F3C46672E8F08710FF9BD422536B434513D18F279DC349B48F09B5C140E85C4F8818101BA73C77B044DCD25E99593E7E8026C88980424C81308939E4DD16DB76E1545992252F1FE73678D0D75D11FAC640411B72C7E65AF6F78888E0C5F815B2B27438A7DECC4FE926AE7FC3EF4DDBD791B85D495D3FA83AF1FA6B5ED6D74C77BB755FA665369ACDE39BB98622D4497AC4E16CE79155F3F7D0163CE0B7568852ADCD4D14A3DA07A00D47F61803A3B3A2AF74B25E6E8C35B7BE89EF7EFA07300F17F9E3F40483029E6F5535B539308C2F6F7F551C8ADFCA8C6A74C23D3AC184151C2B7C934AA018800EDEEFA0691D428E544886D029FB34BE30408FFB62ED64A215F6045E6A767E274E2D419FABB871EA8F4E50B457AB9EF8C78B02C42EAC5846488A27A8A4601AE16F093178695A565706C929E3E7058D88F8D6B5AE8964C916EEE6C43C052125E2814B4A58BDF6E1B9E8A5329394B1FFAC83DA2CE393C324AE3A3A3B3EFEB6AFEF6ECEC6C8EF3846A00D83FC26C4AB9443A4BE96C9EF7BF4492D3ECF6E3FF657BCBCB826B3384B3441F8B3F7B0A8B6ABBC3C4C5B0A5156506F3E5FD07280071EE5AD35E09AE0E60E539112A335F2D05DC5713F4D3D0549E4CDC4ECDC2B02106205F2DDDD6D34D572E5DA2A174918E9D1FA4A320FEC1C0D12D9DED349B2F51574B233DFABFCFC1FF27E8CE0FECA4A0DF27EA902FC3F5B647027F838C737664644484C56A15F3DC91C13CB26C68C4E4B9F6874B253029DC9DA8ED59423FD9B5706B948AB475CB66E83852D97C5AEC18F93D5EB135C6BF73E7FB69747C9CDEBFA3D7296210267D4918AF8AC82F597D3FF290C97327488E34D3CD5D6B687A6A8A5298AA02D00FBF71820A68658FCF1EEF482BEBFFAF8E9E146427350635057DB4A5E72611533CF7F27EB8C5C2D196DA865F85C3E1F437BFF94DB3BC2F603A00F06BAB0988749A75A5C8F9395C0B53B1082AB70838980A22C32B8AFE704313D562C5DA10C565E18AFAFA07A80F2B73EEF230BDFAFAEB10CB007DE48E5D625E67AF8CD234476E0EE3D599254B410DC43D8F672B4D6B45FDE1C4C9D33470E98A18B76B5DAB088C347FB032FE6A85C45C629A3E79EFDD08A6349A85BB3CFAC61BA58D8D912F23329CDBBF7F7F2533AC96004EC5E6A626C67F5628E4E7F3854200119D17018E06F706CF20DE2BB62C470A486C89B15754FD25C3DC09DF2C3328FCC0AD08652766E78488C6A2517AE84FEFA3DA704814428626A616315C2DF6BCC7E0C9CFD35422497588EAA21E95CEE151923F24A4ED85232748F5054544B9C8662CF15A6CF5EFBA63A778362FD093CF3C4BF53EDF8F8C42E1523C9BCD95CB6A020066091328AB40F285FF7BEA97685F03B1452BBFC7A72CADDAC2FF4BC160D0DBDEDEDEF4DCE33FBEB0E5031FFE88371C6D4AA6330A8B238BDDAD1BD7D1CD6B778BB74EE3C9149D1B1ABBAAD80BC27D67C845EE9A28562D4E17468728D4BA9636C3C825C64668305A6FAB9D612E06D1B016DEBFE7681189D78776ED10E72F1F3C4CF199E9E99EFAD0BF7A3C9E04578F16155CABDE16AF7E61B29A645AFC3E61E57FEBEBEB5D1D1D1D68EABB71E37684B9751DB76CD91269EFDE9AD5AD70AE5080AAE8486315FAD8EDDB68026931AB083320182913CEEB11F810B2B6E19C4911F878004969B841BE5EC0FFA4E6E2E40700A6337EE9FF9763976C7C82BEF4279FA4D6C6461A9B9CA46FFCF3F7ADE6A0FB73B56EEDE9AEAEAEE9071E7840AFF6F36A55219125A15C8E2ED1B57D2BA0B85CAE79B471DC621000348C9C3DD53F76FECC4B2EAFAFB1B967DB07148FAF6B369575B522F6EF6A69A61482A5C1B1099A8A27841D29AFFE54228510D91471457C6880E6B2050A219BECE1307874126EB75130BBD463544B81895C60E7E64D82794EB57FF0E3C7C9AFCA2F782DE3403A5D981F1F1F379696C6A4A5FA53F5D5085DC36685B47DFB7619C82255CF7A7C3E5F50D3B4084B0256AA11B76A445B57D3B266D35F3EF8F9BB7C1E8FBC501EB74492731936213E9F16EF0C09EF52BDAA5C4D9A4154E70D8A7DC9F28AAF24059C8C95E6A6E8912F3F2842F39FFCF419DAFFDAEBA9F535EEDFCDE7F3A7F13F738F3DF698FE6B01785B5520FC905D89AF4D582DE025FCA0303C480C979AF08C3618AEE60FDE79D7ED9BB76CDD14AB8B06C4D7133C69B82B569391C9B89DF565B3228737AA98AC0685DB46A54839DDA289A25401203D3D417F7CEF5DD4B3AE9B4E9C3D4FFFF2EFFF69B5FAB5BFF6C9D6536EB77BF4BBDFFD6E7EA59AA0743D375B18086458D24B2FBD2403080D76C187C9D7829A416B180C0C8B4662B1E6DD1FFDD8CE8EB56BDB3D6EB7AA83310E8E1890340216CE0C6712F3C8E68AA2DF580240290790C4F71B8ADD8F8427E677D1FD9FDC4B29D88EBFFDF63F9166EAAFD4C9A5BFC21C2E8E8E8EA69E7CF2C915BF4891DE89AF541808BEEFDEBD7B592A5CBAAE07612BA200218670B511D798A2185673F3B6DE8D5B6FBB7D5BB42E1AE17FE597280518A012E28E38F28539A8482A93A54CA1B4181027209BBE3248FBBEF839447C7EFACEBFFD882E0E5CCA342BC5DF87D53F515757378345295DAD2C2EBD939FE99481E8EDED55A3D1A80B11181709B84A12C1254EFE190856935A55D36A76FDD66FDFDAB17EC33AB7DBE365E60408D580E0380F5032D90C656124B3853C8D8E0C537D6D2DDDB5FB76303E483F79EA596AF44AFB5C7AE109A8D230EC536EDFBE7D577D274D7A37BE532A03B17BF76E056E534D24121E18CA00BA79D519800626960A50B8BEA9A97EF38E5D5BEB1A5B5A54B7CB6B1896B40082B90890570FECA748731BB9BD3E1A387B8AD452FE48B038FF10BFE298CBE5125713FD771580ABA886F850AB5028F8A1A761AC569D03420CAAC2121202F9111D7A3B366CEA6C5EDBD5E50DD6446597E64526A0B0A164037AFCE811A42AA5212D1C69CFCCA74C79FCC21E807B1CD236B9D23EC00D05E0CD0C26479D602A88F9D4C04ED4E2984188F039AE718EEB433F7FD6C3AF9AB8C275B19A70AC293A9F989B4E8C0D5D02D319D000C6BFE1F7FBAF2042CDBC99E8DF700056928A743AAD06028132183EF407C1740846348C614C01F4B11DF182590EE272E89B435F1EE372F89F1118DBCBFDFDFDC9A3478FEAD7B4397AA30158492AF89D0006030CC1366A2EF8710F2E790184078C7A1C0090A4996CDD93C84B18001DEA94C2710AC94E89AEF11BC45505C0D524637070508EC56232A443D80E449D5A28145210E15960B8C03BC1939393168C9EF1E28B2F1AF4163EC05CB5005C2D3CAF32A2E2C76F91F02647D5F5B7C4D0FF0359B6A32F337224D20000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (75,1,'PBX_(96)',decode('89504E470D0A1A0A0000000D49484452000000600000005E0806000000DCE811E50000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000027594944415478DAE57D09905DE595DEB9DBDBB77EBD4ADDADDE24B51604684120160D088180019BC1465E0A5CB61333999AAA2476D524AE4932D8953871162795388EC7D48C3D535354308CED81B1078859248190D18A96D6DA52EFAD5E5FBF7DBD4BCEF9EF7FEFBBEFF5220984A07B2EFAB94BDFFBDEBDE7FCE79CEF3BFFF9EF130CC380B91601175A390F55AD6FE462CCB536E6BBF945B408D5CFE010FC420D3E212550D31DDBB64216AB32E439842F7221D35AE24D74ECC30D568453F0D4B4AAB5CEEF7D515A84EC103C38042DF3E6C2A6F0661D136F80351873089F04AE622B612BF275891FD716AB129C1660095FE182F760F33A9ADBA108F1062AC012BE25F85C552BF27317A512E42A9F6FF57A1FB85C21AFE48EEA8216C6E70960F3911244C340258892AD04D1764986A5C54A9DCE3A58BD5BF66CA221A0040D7EC4EEFD788B456C05511473D8328AA22452A9D44C3A9D8E3BBF9B2B61515A80C0A520F39E1E58B96EE38E96CEEE1FC9B204B22C832CF135EE2B55FBE5BF6393AC637C9B1F97A4F27992F398B52F896C2DD11AF52BB2B5082870B616681BFB8A280AAC97F79C3CF9BFFEE81B5FFFF339E281B09894203B7ABFE57EC8F50474AD1894A4B2906C61A350A5AAFD79852F97AF95EC73A47995C09A585684E8540013BEA904DACEE5737EBCCF90231EA8961B5A8C16203A2C8029C05075BFD5BBFD7E0FF67A176E937064BBB7CAA2CC8E8992B9A69E5B215CD112B2C8AEA1FFA827337D335F6D7EB98E6B01FF2708BC030B1AFB9B24317C897FD751F892790E766E8FDB03A54281E252005B86C702CB2DEA8B4D0173C5000F3EB9977ADE86EE4E686F6E62C29CD5432BF6CBEE43B2DC89E54AE63DCF72358E6B665941E5E74DC566E0ECA53E28AA252F8B55A6CB74028345B58855DB92AD0441704BD87B9BEBEBAAA8DB87A57C1FEEC2EAAB1AEB6B9955A85AC9ED10BE740390D9C7A600678AC1E601A2810889C08E285CB5703E7EDE6ED35EF4F682E4E8F98B52F84E0B98956E20B02189D28D92E9351A93088628888B5DF8B352114E65D00392EFAD5EF2A5120CCE4C30384831802113E6CB4DDFED3C467E5BB0B6D19D91CCCC73053C57B6B745B62DF2868889108F6C7EE69A682D2C0B062A7B0D47458B59F057540021161260F532914AC2F77EF30A49C18429CEF55CC7AE755D75ECC73B1F80A7D7AFAB5400294858DC825F4801A61624C120E8A8A91A42D0B222EA0341F8E6CE5DBCB74ACC1D58BD95598528D916C1303C9E2738F6ABAD867D8EE0DC97CAD6856D53632338656DF0FF0B9C312F5D05E0F311E3ED1B1D8396A67A70CB0ABA1199B98CB58DCB3834E4AC959A6C12261B528A16A3AD82A2A258DE17CCEB44C61F040E39E93CA10C3F51CCF1648A5D43486A60781479809BDC94BEA41540BDD4AD28502CA97069789CF5524946DF2D29A0309F2E9659AC5866B93696B7582F099D3161C7F90E853052279A8A95451E335833192F6B8C7E19EC9AA0DF071E979B14B4B42D80F15696F71121840FAD28120B9624244BF8560E47E40C98CE971DC449B60815590E0A54B182359D27F080CB14C4530E16F912ACFC8FC0B6812B837C3FB94452C612180CBB920B1208702311AB8570D0FFA961C2C880E1DCC53ED075435C0A0A101708C22CF4F9BC9E4F1513F6A2FF2F144AA8006D692B4064762F5D7712753D589BAAEB602C0910BAB002D0EC851B25D36B5A0C43470B581A0A9017F218E21CA988782E0B6F9C3ECDD08A2097992EE58D049EC317382C15D0822ACF29AF2D6E2058832D9279BDC0A1ABF5594FAC5E0D9B9A9A2A15A0034B512F6D14249B78BDBA87267339F8FB131FDC3026DC5D5B375B01A083B0D41580008831E142A9C430BEB5B4D444E1B9A7BE6AE676386AB118AF39842895713F433065765C8982CA08C7BCA68C809C90348098DFC9844BAA0A2A72137D918DFD7E08228608C8E386A94406B285A229248BC50A160CB598B060434ED166C0FC98CD7CE93A0BBA0AA6E204D1718D689330C19170130433FBC9B6F1BA582C0E3E444282064B9B099330DC2E17B24E0F220EC354008AC639204F4254AC9E8BA44AB1862CE5F220BB2299994EEAE1B4CD481C1FCAB486372D6113B732748DA11C225CAA866B0D7BBCAAE3B6CA94110E0698E20CD096B605D8695F3019284B1530762B70B76280999ED14DCC24EADC3F6B2C486A8299B5D40495E5560594976AB084021812C248434624430216790F37CFA7EE4FD70B2C3521A2A25CE0A67161C1CD7C4E369BC3AE6F30252D6D17844251B1177ADD12F8D1157D5A9870A15884770E1D45C52D71268CBD5C50358D65413F4D4C989839B926555597B602D0E6B9D08C4F1D13D61109E94B2419272E848244F1E3AFF4F8309FAEA1FFD7B5259E0D35B341B3C593C86661CFF9732653451463B25AD3570B529915331257C578595067A96927FBB518B258BE4E92ECCF7BAC6B25DCDAD850699C14BC756D692B80F2708230DB4012F91CFCF2D8911BC684DBC391590A20E1EB4B9F098B060DC294107F1314B496E6480DFCE8CB5F29932BE7B0A3631892315B8B60F14119C941D8243E182356211DB10A05453CDE0A265C44669E47626818FA521F113390097B20994A41AE98E55C800B9933581DB73589EA36552658CD1A94678215CC315FB3C0C814B6501E6E34871C79D12DAD45D3E22A9830B671B66D9ECBC6848746CC214A758933610ACF6E9702B5D1085A81C6829E54319E2B98BD5C10ED7C9055E1C02A21E8EF8249E498EC4028475C62BCF41F11364A2DA334D9B6A633FF6E1234CD0CB6BAC988754EBC08162BD23F02264CA223A847266F501A808E0886B9A6B210C31C283750F80683AA94B0D359200564C722252E88DD4A660F17ADF272CB02042BF763CEF2B0733FA239085FB9CD11197ECDE0E8184C4FC718495CE228488002F95AB58896209799B083B97E124CB87B6507FCECA55F912E44AE34D4A388614612DC6EB7505353237CF7BBDF159E7DF6D945315D698131611028F52B89E2F5C1F0D78109932CD9FDA0F5E99A2E2A881250E8722412919B9A9A94EEEE6E65E5CA954A341A959F7BEE39F1C5175F64CA704C42640A732E9F5E0BF81425DC49F0ACA10B643182C6040C430A0683EE4020E0450504EAEBEB7514BC545B5B5B88C5624597CBA5C5E3719A35A37EE73BDFD151112C883CF9E493C2FAF5EB6DC1BFF4D24BC6E9D3A7D9A37E1256B36010163EF4742BE1BA9F695060360CD64A256699AEC6C6C6080ABD4082C786BA08E45029797449F962B15840B794472BC9261289622E97535139060ADF9EF7ECF1788CC3870F1B3E9F8F94A7A3D5E8A82CD8BD7B379D67580AE19DE063518A352B861ACD38096323D6D3BAF3C1871F7CF8735F7CC64D1305E4B2CF9ECAA4E027FBF6DA63C22CD56CADF9582E88E5F15DE0CCB6E21883A6320BB2F8E126C494CD3AD38AEBF1BA7F7DDB5678A06D051BA22354A4222878FE17AF40CF89E3474B6AE96C73D7AAE52EF4FD78119FA887366240C1504BA78562E1A05BD04EA8AA9A408B20A59010DDF81C6E83F2E1EC645D9365594541E3479754548A96CFE7F55028A4F7F5F519854241DFB973E7C766250BA622E6A84EA78228064B0903D1B4384172AC994619C6E448C9C69CECEF82410AA1359FDB4AFB78B16042213EB620D1FB13D85A64336134ECF125D65080309348A208BDB0EEF63B37A03237112BD6184C36D7D45053F895E263D3E93C0C8F4DA4022EE5BFAE6B8AFC948F71046EDDBA6D674990BE9248CC1C4FC7E37B62A343A7519E05FC73A1485F823795CD664B185748291A0ADF9E85495682B1C54097765D9431BF053CF4FB0F3CFE852FFF61219705BFD73D270A922AC6842BD1CD2CB454856E2C54330BE9B0A14A8127020D363246C2CFE17D0C8E4FC1C589982D6853F07AD5BEC65215B178027ACEF5DA298BA6DAC84FD7D6057FD8D8B8BC6DFBAE875EC07BF2D07837D5BE2653697D2A164B2612C9A15C36FD41299B7F3B33397ECC308A59BC8F225A099B248EEE8C590ADEA38ADB5A329964EFADE8E9E9612E8BDCD7B5BA2B79A1C04755C8D4DB63E91C0B7E022FA075E2F832932DD76F3AD7209471BDD9CB7964A16D831F03939859B92781022D75374D634394A404C91F009106E805CE476898543003B3C519689EB7812D95CCC0E90BBD15F9A24CBEF8209EF7B7B7FFDEF6EFF97D5E0F213C4D9718F9F3F9BC62A3D218A989462385A2BA0115F3742EDF65C41389342EC3857CFE04A885B78C546C3F76862C2AA08031C59E1EBB75EB563593C9E8CF3CF30C7357641DA48CAB51C4BC1670FFAE871E78EA6BCFFC213D43412BB28711C472D1AC2D788B3409B391A6F5F5E654538E641803D6992BA3467EDD2CB4D2D936095BB7D61AE5FD3558D6D6052EB767CE9E5E6D093389041C39D1C3C6929D4B434D64E88FBEF4077B3A57753FCD5C29DECBCF8F9C814B3309E80A85E096655150F0B94CAB28E15A457F5462FBB44DC7B2D9BC914A25260AD9F441A95478A146281DC2F892E7D681A7949CF395591FBA9222E6B700522F3E502E936603E76C909DF35D5190EDE94856826D36A932AB27C459844D74D4FF4B9595159289F1497825F6C059188E6720AB9AC215F84C790363083D13C50ACB0AA8255219387AF2941907AA96CED6E5E9F6AE555FB6F663181F7E76F6345C5013A08C88D074D60B1D9E20347BFDD87CB0A636001E041FCC4A586A44C24EE0128262A4D1E50B3C86CA796C3C9B29A18B1ED48BF9B7036AF16F22320CE2479342F25EAFB780F0B84810F8C3A5A3F161B3F93C0AD130056625D2B800259E5093AC9A20A95C1B3427139EA584B202E8B3ADDA23662D34805F2AC244A600452B5147C2E6562470B7436ECE206BE46EE7D0F1E3CC72AA178FD70B4F7CF6B135C498AD633FDC7F147A49F83CB938231421A9C6E0546606A4B400A131059A242F34C82E882A0AB407BDE0E50A91D0DAA843BA3C5EC510E5AE82CBDB152B96FEE974A99811F4D21919B45FD6E5727F3D3D3D3D8310B708E5771C5D030A4270420550B2749D98F002B186046CF55A9507DCF15401BB12CF27B11E2EB056EDEF095165B26978EFF05114BECA2C6B72A80FEA56B4838182523C5EF8EA17774363B4C6BEDDF7FB2EC3DF8FF79B5517D4F033A54201D43367405ADE0C524303E45D1A76E7340CE377882842D765116A3405223449042DBBDE2D818F271E65B21259C780E0F21BE0DA827E68CB6543FF9E9A493FBEAD25FA2A2C307B7FC181ED1B917117793D10F9FD1222400C6E3089413F0B623998532F77146EB1D8C35B2E9B837D07DEA7417AC8A692B0F785BF84937BFF1FB2650DDCBE00DCB3FD1ED876F35AC7608E017F71F42464B0C7D38411172A4C214BCD6441C620AFF87D9079FD7590E85E0EBC07DAF0105390E10698F195A0DF958393520AF664E3B017DDE3895411FA7306E4B4CA11C4423A2920170C232B1729285FB30BD245937D965F9255EEB12C3DCD2A34D12DE089D6EB4A282F4A74C08A15B42DB24A206B5FC746AE4464835E2C9E18BAA900F4FB78C31047B793E1B745C2B67CBD897A2AAD2097C9C15BFBDF631D2514AD43A052805B773C0299440C7CD8F36FD9B2099EDC7177C5FD3F7FF034EC4F8FB282329AA543754EC6E020942E5E84E0D6AD90C1CF538241C8A33B931417D23B1D126FBF05723004DEE666FC5B08644464821B85EE52214732C27F6A5A8656B7C814CF50573C062E2436180BC48E8E0EE1DA5D906EF03473E5323413837FF7F2AFAECB90A4C00AAF64EC852204707F4B7D137C7DF31D1593F36D5F6FFB7B91C5820C06E837F7ED6701B273ED7A84923E58BD662D7F1B8BC8D60F6EBD057C6E57C5FD6F68AE877FAE6F82F3F119B8948CC3849003A9B31384E5CB418FC5A0FED147A170FE3CE45021322A021084287E3FB81029A91313A08E8F83282B105ADDCDD6062F246BF028A84CCD1CD3C0FBCBE1FD79BD6E0D2D5A4422C7127F73A121F98A49B02A2504110EEEBA69833D62650EBCCBE5D274A9AA645D1679E9BA54BE46B6C896B9A69B08E1DF6F5FB16A562140851570D493C39EFEDBB7F7B242DD8D9B6F83200ACA12BAF5EA9C9A8017427EEFAC67DAD8DAC01A2DF99206072F8DC299695446220E039E5A48892570AF5D0B91D5ABA9121892C78E8282AE494F2621D0D60EB183EF43F3A39F31B90B7BCD8B009E12C684A08CB0D51CB4CA62EF27974A6FC34278EAA21407A22115CC974F55C0D27915A0B1EA68099268E6D190DF3E5E83BDE1E9DBEFFCC84CD89C8386A6AB22DC44BF3F5DB25EFF303722B327E9E1FE9E77DF631572DBEFB91B6A22358EF715994A200BDAB26625C3F19746C6208F6B9298CFE58286DA082BEE65E84891607B772B6C8756A66482A6072E0EC385581C8650E0E3520EBCDBEE62684F2F14A1881652BBE116F315336CF2A0090E2292C2677C9A90359F49994E2410FED6C52C34853DD24B614D9BC258A03EF9E493BA03E92F600148805C8A8C37E68689449A111D9B6DD9A38B368DB5D9AD99E3E1A48B8F9AB17F44B658864837630BB93836D3428795E8426A1B1BE70FD4DC0AA8BD7FF808C46666E091871E8486FA7A2674452ABF088A96AEE64658D9DC341BD8A17F9E4AA660722609E95C1E0AA87C7A0F526334042E7485619F0BEE5BB302EE2C2E63046C3A9985C3831330924EC338E420598396D0B8CC9C9B40F74364B2A4232252D87D90F0250CC6F94CC69483C7BFA5E4F16DB99C4EFCC768406AF3FBFDD96DDBB6155111DAB3CF3ECBA0E982448C16EAB16E979B09CE64BE60A768EDF10CFBB50DE650A5753D13309FE36B7025B0D3186BA5072841141F6821E13BADE07C6F2F9CBB7001BEF8078F436BF3B2B2CBB15E79269865EF73097FE4F2189CE83903BB76FC1E34452315455E036393D0373A0E8974968D3F87033E08618B043C70CFCA652C5F440A994CE6A0676C06261179C5D52222B522B84B0AB4D47AD15B954046E117909D970A797063A07621A1C3A80C4631EF4907DB072FA7123DA562E13FAF0EF95F266B2092B6400CD0D99024459888DF73DD8A734D1F4890B304A97C113292FBAAE0EAD4F434EC7D773F3CB2E33EB865EDEA8A60ABF049E167FB8660FBC675B3AECD20C4A41EF0F0CEFB2A8ABBDE41F8DABEA21559720B742E6FB4E3DED0C4349C191886D1A93833F8C66898DD7BD4EF86AD2B6AED34C57822039388DA5C18E70C9D2A4424248449F68C358DCDECF3921363B06DEB6D44DADC750D0D9B50C13F3F76ECC85BAB43F2430B2A4037880917A02EE8BB3EECCB0C3E4CF88C6C6120CD8A9EABBA34878CFCD7AFBE0E2B10063EFEE00E98EB2D2E3D7D03F0BB531760FFA973B0BC2E0A2B5B9A6055CB32686DA865F9219AEBE05CF2F8FD77DFB175D60B492E5CBA04915018766DBD95EDCF507AE37C1F5CC45892C30E190D07EC19FE75C88E831E9929834D4C47A5A630980710122B1867548C05ED2B5A201C0E31CB22650E8F0C433C1693B37240EEEBEBD3E64F45A886C02A0F84EB309AC5FD37C13362BC457CF8942131587935D7BEFAFA6F218F4AF8674F7D614EE18F4E4EC3C1D3179992A9670F4D4C31B7F2DB4327C08D718C94B1BA7539B2620FBA153FF40F0EC1E0F0086CBFF38E599FE543B7515F576BEFC763D3B0A9AB15EEDF7C138B1BC75019C77B07208BCF10C6CE296B12AB8D62F92264C4857C0EEA5ADA5916B79849C2CD77DFC19E9B92962A0287B3A74F0392E85184CD220D8DCA0B0C09B39A9DEB32ECC67BBFC576532A6E57F5C8F996F70F1D86A19111D8FDD8C3D0E8108C5D2A89EE65CFB11E9EE636C99A0E16563018023A7171103EB8D0CF04D110094377DB72588B3D93602CCDF8A12595CEC0BEFD07E0DE7BEE04E7583D0D0845C221B61DF0624CB8652D6B97A762F0CE89B3703E76193C2E8559403E9986404D2D83DAA98911B877DBEDACB6CAECFD1A9CEAE9A1F1ECC29655CDFFC6E57219D4A9E479876089A1CE51FB9447015E9C9A3253027C0AAA54FD0A9A8A1736F1C1159A56A495901D4AD0DCB4E2AAAC278EAEE3F0B10FA0ADB5191EBEF79E597F27D37FFBC849965E10F8F802C3004679DF5CF331037C9CF199385C46DCFFD691532CA1D885017B6D5B0BACEF6881471EBCDF163EA53608EE6E58B7B64221A4345254677B1BECDE7127EE6B70E86C2F1C3AD38B1682B0351806359B41D7570F2D48EE54367A28C0C4C4245CEAEB434CEAFF9FF879391AF6A4811C793E0044285D3366671627D229F82FAFFFC3553361812BC2852DA228F0678F3C0E575B0D424197ACE61B5F7A928F90550E8DBE7BF20C9B4068F676C1EEF5659456DEEF68AA874674196746C6610A61351DA79E79666004E3C710BCF8B60161BF0FD6B6B7C04D1DADACDD77CF5DB3620481816D5BB7A0AB32491E01803B6FEA66B1E6CFFEA29FC1EACCCC247C7ED7938C9B98D65F820348E0BC8A3CBEB629FAD7E8862965ADD1289A5C853AEDD7C2EB02CA9FC664D197C9F0115ED8240AE607624F68AAA9435217B92AE15FEAEF87FE8141D8B0161F6ED96C5879F4FC25988AA76C582C18E63B8EAC5E6F54594193A243FFE9E3E0F604D8FEBAB6562466229CBC340269041B747D1CDDD07E742BEF1C3FC3ACA87D59036CE85A013777B64127720B3A368EF1A511F947056945A1FFE4E537D83A131B87FBEFBE13023E9FDDFB0F7FF001C46712B0BAB1E6DB048CC07CD92C1BAC9161F68BB2A9A9E8833412E6E85402EA2301243B8AFD36DBEEFA267B1A2A4DD813ACFA505E902BF029A966B12DB01C7D5153C113AEBB2AE153A0DEB7FF3DB6BDF3EE6DB3FEDE8B88A4FFF24459F8C0855F6505867D1CE0F0D01464B32810EC502E44289D2119DEFFDD41F0FA6A2083F7591BF633D444D6104BA5196FB984DC80DACBEF1C6239A57568151B3A57E0DF3350170EDAF7F3CABB8760707C12B4420EA2413F6CDCB0DE143E7E7122958243478E42D0EB3ADC5C133888F2CBCECCCC94C2E1B06EF0D20C67DCB55F138F27AA446CC84C4727E32C80B10259C11A6A3419AE6E0D337266C8329B2CC3690D3D12DBC587C66074DFAE47D8B90409C50510D091A3C720914882DFE745CCDF5DE902B1279D44142238C6979D3EDE690574BC03F1FDC6AE3636527601CFD60CD3F5BCFCDE71BC3F0544D53CF7B1DB6F8643EFEE8328028419CAE1F2EBADDE49AEEEF0D98BACD1B2ACB68629A3055DCF2BEF1E6642898F8FC2535F7BCA66E474776FEEDD470251D72DABF957788F095996F3287C8D7A3F5555C855AE47E3E691C7E09AA7CA6492939B4AD1E951F5B2B0CDF482B96F8DF7EA826ED27343342BD80491231203B6DFB58DDD640E59E20CF630420EE1406016AC4C26532CF0D2B29CDE17E788172964A0877A2ECC1D60E7B102092DEFAF9EFB31D42E6B05C31F855B57B543402F42EF981B861239D659289EFCECE5D7A1989C0139520F82E236CB6B387A9B6BA1404ECD5AB2B149D8B16D2B2C43F764F5FE9EB3E7E122F293C6A0FF79451046D1B233D84AE690B461E7829CC2A78C1DD5C7642449C9506A1578C502FF67E640ECD44219DFB3DE6EE547F84359550DADC834EB96B7A0FF0FC0782C0EFD6313309D48C1C8648CE59B5C189C437EC2E80178F7C0EF18D260391D64A9D642E98083A77BD918845D0400C615ADE0E2E40C04BB37424130D3D8F99969387CF000D4B474A0ABF44043380C1B3B9AA1B77F10CE4D8618A26205081C5139AD605EC85E44362CEAF010223583E33B1ADB78F5CDB7C0A3C8F1EEC6F0FF418F92A471E28E8E0E6DF7EEDDACF73B15E0FC91048AD069C5E34EA98EC16DAB27D8759A8E665B004FB099150F3A13BECE4B0AC7B0B70C8D4FB11AA39B5776402C9E849EFE219841EC4CD096F07A115BDF45D3C41FD87E17C3FE56DAE0C8D94B2C033A9FABA9B6821D9BD6C3E0A55E1848E6216B7E08FBFB855806E4B6359014CD02B0E668087EFB777F0BCD6D9D4089F16A44B5901558A51FB1B121F8975F7F1A3C18272CC6FBEA5BFB905B64A1BD36F8EFF1FA1819092A80B2A1C65CE9684B09B60226C6874FF55FECFD41A958F0A96AD1A369AA4B577517467A89CA12C8C1987EC9602352266733AD80BA8E407FC7274298E6A9AB8B74A052DAE97BE318C0281B49747ED3EA4E664DE70647E0ECC0289BFD4EC4E86B5F7802EEDAB2C9BEB15397862081D81A1670354E2BF0CA0A8CF75F8009247005C3051E445E77ADEB4254D50F9766F278CCEC34A4C813FD2300CDABA1BF04266CE6157D9682AF6405F9C434DC76D37A58D3D9C1F1BB0603C3C3B0FFD011246ECA99E521EF5E7C6ECA4F179A9A9A66FDC084F3CDB3D66FC7D0CC6CCA905112C8EF587BA0F24DE5F3CE61A5EA030C36622010F0D4E2D2D6D1D5F6C0E7763F12696A6E2B69864C290E1AD6240BA3ED65755158D15487569182E53541686B596E7F561FA29DDEE1CBA65559D655EDEA3840D00DC7367E76A1500009037E1DBABEE933C7F03B0DD0A2CB4097DDB0717507B851C8C72E0EA37273737F16FF0E831F9FE57A5464F563C3F0FD6F7F0B0183CFB6D667FFFBFF86E1D1CBFABAC6C8E7022EE984C7E399A49416BA9D590A90C91C789DBC15079C16410139CBB1AB0B66BFA97CBED4039BE685D0D48B5F9E2A1572A57DAFFCE21748BF6BDBD76DE85EB1F6E69B04D915B11E6C608C0B191F36D6D400BA249B49340CD69426367D7EB9D7B31F0998C70A5A109D10771941DFEFF278981027693CA3A18D6560450CB05480D5A018F0D28B2F42B4BD1B04976F4ED67C252B98B93C024F7DF6115BF8B4FCE6ADBD3038320A753ECFAFBD12F4B32C473A5D1C181898B33445B66A1939DAD0AB82728907E5EA37952F988BC348CF66ACA0C01171BA3204BDF0F3B3D86686CF9F991AED3D77DCE5F185566DD9B6D51DA9EB28955497C112753ABAA211743983CCEF7E69D776F69ED0241224A7500C13E0CF8A052BEAA3E02F24A90C1164BD041A7297150D51486432C87E0D503CB259E68EEDD7877B405ADE093912FE5C41BD4AC18620944BFD4830A93812B546DB55326B1D1C865FBDF606B81529DD51E3FD1F944D412BCC653219950A7A171C947728C1A8E20525A8FC6DB1ABF9453D1A0BA5CF545011395C67B191154DE077D4600BA35584CF1ED87399DC5BFD8AAE8EDACEEEDBD220D521DA11C82AC835D5222A6A6BA86301FAE2E8188C4FC7A1A81AF35A01A12A239786443209EE482D6C5CD90E99D17E181B180029D2C4100A710BC2E9D3F81DB2C767BB9CF972474E0503B7022273B1F131F8E69FFC0B475EAA087FFEFC0B6C526153C0FF1FB0134E51EF47E197962F5F3E6F6196305784AFFA1943618E7871351969A1AEAE4EECECEC94907878D012C81D05303E04B185F02B22B88E9032B085E8979AD05F079AD76DBA43F38556C79219CF37BFFC1908782AC70C8651C8FD97C7D12AB20C5DCD1B0B709F58C8C8F9D3E00A8451CB8DD05013869BEA837014895EC61B8164A9FA5A63C15860A23C0312887A76DEBE193EBB6BA77D5F3FFBF92F60CFEF0E013EE9818E90EB4FF0DA417CBE58369BCD5349FB7CF5A1F23C3978FB67021DF3A8AE7928666A6A4A686C6CA456E296902237842EC9873D847E1A2B8C374905C194208A68C56278E8F8FB04D9F6859A5ADA5C92F468F5F7B6A09B69AEAB81542ECF0649C6A6666CABA876211AF6DC8695EB6CE14D21FA7AE3622FA4B35990053F883439A4A2D75FD90A74B430BF4B864777DE5B66EE277B98F0D1DCB3AD3EF17BF86C6860463A1A8D16239188BE5071EE155FF9629417FD4334ADA7A747DBBC7973311E8FE773B95C068FC55119840A46C86DA2027AF1D879DC3E878DD614B846E2A38367FEF2C73FFAF9B9DEDED142A96454A76BBD886E288DBC7DE37AE415ED501F09B30AB7B20204877B32AB2A189289D4810F59B1E27295DF4DCDD31AF4AEEC7BF1F3D635D7D9BFDC64A73CA82A032D6A6C7810BEFAF927D84C7F963247E6FED3177EC9BEB3C1277D1F853F81BD3F81E7E7AD84DB826325376A3E1A2F4CA2F9576C2AE9CCCC8CE4F7FB155555A96EC6834A21A84B19AE1A3CAF164FA7E21D1A8109633C09ED7CF4F1AD1B6EB9A53B120EB9EDC9DCAC6AD91A8DD219099A882718E99B496618A3BE926B311CC7BB100ABFF9C25FC1AD9B6F839812464224545C9F181B6109B97FF2C5CFDBA4F4BFFDE4A770EADC0508BAE5F75BBDE29FA202FAD1DD4E21FACECE053B3F310554C517E03D43ECEFEFA7F9BE322AC18537EF41E1F879A0AEC77BA3BC6F1D9FB740CAF1AEBF7563D75DF73D70DBB2C6C61AEA769A4311B6524819180C27A6134C2154ED4003270BF9756B5BCB654C36EBF156284C2B6461627000BEFFA7DF8280CFAC937A6DEF3BF07FFFEE3754D292EDF01A4F9135178BC531EC6049849D25443E571C52943F8129A786431964A2FA9E3D7BA8865245E256C0409D474550BCA0E29A043EFC0C9E17C57D524AE8E4D123E953C78E5E08A173BDFFF73F7B4767D7AA3637CD24770E66186691525D24043548C24821A94C0EA6111D913232B902940CCD765156390D4357888C64AE202B16D030E740DF45F8CA139FB1853F347A195EFAF56BCC354515ED07F81563440DF0DEB3C96452A5E9AF57D5213F0D13C9C92AC822305E08485A68CAA94CD68087FDE8A2421C35D5A0326AC8451172E216E1C3FBF7DCBCE5F6AE8DB7DF714BB4B6BE1649B8A055B827C3B60AA7DBA2E1C319F4DFA96C9EA59AE9CD8CE66B708C72CFE756919C1C8320EAF8DB7FFC0D7B58F2D91FFC1046C6C611F52887EA84E2BFC5FBE8C7CE3381A827D3DEDEAEA2FB593C0AA856045A84585F5FCF6204E268372AC04B3015CC9F2E24E81A218B201485DB415C93DB2285B9B76CBF6FDDEA751BD6846B2211023273C58A4AB7555610BD06278BE88A4A56A86CA6505401E509A74E7C007FFCD5A760EBCDEBD97DFECD2F5F8137DE798F2A2EB2CB84FCD728C787F7388A0A484C4E4E16A9F75FED443DE1D3F82A054B11A3A3A322056B729568116E12323E28093B888225E1137C0D5B8A00F3A70DBDACEC5351BC9BEFD971535BD7AA2E5F2814626932CB12B4D98A98CB4A687DEAC409181C1D85B5B76C064D2D81A4ABF0C1D1238C89372AC27F7269B9D7F0BB06D0526388F272287CEDBACC92FC2417EB011C314243B32EC562B13CA2A52CF28824F10912380A8C881D5302B6102775410C86FE036FBEF61EB6C3788D6BCDC6DB56B676ADEA0C866B6A6597DB6DC58A6A5159C70C477582C763E67A2459410599EF2D0ABB9523AE526A3F7EF7240A3F85B22FAC5FBF5E9B2FE5B0A82C6021D744131E886163AC70E161CA2191EB210905B9153065707745164116432E8C5C9942E911B7DBEDE9BA79735743736B9B37148ECA480AD0E7730BE1A8875B40CFA913909C9E1EF6476ABCAE6024EAF1F9858B3DC7F3FEC4C437645938879F398CD6191F1919291298B8D649DBC262FA2D160BC2D20B372C2E41565C281448A86EEC895ECE2788658750904C0914CC2986A0B07C3CAD4E8D94A7E0DF907349724D53534DA47E59A33F5C1375F97C21C9E5F12353768F0C0E15878EED7F5E346BFB4B4A6D5393AE9506F444EC1F88346287981A1B1BCBBDFAEAABEA8799312F2CC61FC3717209A755E4F379F673ECA80837F64A2F17B89FE2062A8329025B80076D9F638C832982A7E725FE261B9267915EFC41C047A0D23600FA65EF6942A178BC1F7DFF18A557F07BAF0AF32F1905CC0761C92AD0F78B182B489032CD4EC135B92A0FAEBD2474FED3EC7EA712C83D913BE32ECDC595413D3E872DCD8A1404817A386586E3B84D987F0CC963A2A1A161C164DBA20CC21F92D8195C193A42577B2C0317F44A12A128A6104253D87B2D37E4E13184FD342E5A09BD45C545CC9CA7E2A9F75302314B6F55A1DC9659B0205179091B68A154F3477A59C752F93DAEF95C946519E7CF9F175B5B5BC5542A4553B76414A8CCC72B5860A6008DCA21E12BFCEF2418D21E09BF209AAF87D771CDC6CD91A31448D1D782F9FFD12860216520511290E4397F3B59C49821A1F031E6CA2478111B06667A6FAAA2A10595A8480D05AEA3F2C8E2747AA71029E3A30A7F49B8A06BC93D596E8A2B44B314B27AF56A181A1A12A3D1284C4F4F8B914884E62308D80C548E8E96A3A305012A8E7D96F56A9AEBF1D2A6256F01576B218E0C2DB314A7A01750E8475EFE3F8F6265DA278AB8F70000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (76,1,'Phone_(128)',decode('89504E470D0A1A0A0000000D49484452000000800000005D08060000006D9E6E3A0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00002C784944415478DAED7D07601CD5B5F6D95E24AD7AAFB62C4BEEC296C136D8D81863EC18637A09046C8809A4105EC2FFDECB0B3C4202A10642C983044C82438D69B1E9608A7B936D354B36B265D9EA5D5BB445BBF39F737766353B3BB3BB92DC4818B89E5DEDEC947BBE7BCE77CABDABE2380ECEF44D85DB68CFC17D1B1EF474F4ED99DA2F12A12BBD96BE973E0C27F7FA3B309CC1009011BCB881CC6B50103A27F39A0B0784709AE65F1534670C00449D2FDEAB457BB50C20C201C0C7BF56DACB3D783853C3FD2B82E28C008044F862816B447B8DE8EFEA080010044DCD2BDA7B45EFA52090D330528DA26856BEAD8038ED00E0852F27786A5ABEE944EF3532DA400A00B1F00745CD237A2D1C03128DA3960100A76046C281E35B018AD3060085512F0858C737BDA8E984CFC7168E8B5DB07061A146ADC6F72A359E4CCD4EA256D36971C7FEC4D5D71F6AF870C3FA065EF06E6C2E7EEFE641E095085FAC69A48012038B8B1218673C284E0B0024C2578B842F16BA119B41683FBDF3AEB3A7964E9B979C943CC5648E29C4FBD6F8381FF87C1C361F70D87C9CFFB5BFE16BFCDCE376F7D8ACB6CADEBEDEBD157BCB3F7EF3F557AB7920B878107092EB8BB58C2054AF8C49F145C12FB8485AE27483E194034046F8826AD7F3C236F2CD9497979F78E77FFCC7F29292092B8C26733EC78984CB041E19001CFF7AC0E984EE9E1EFA5B6D45F9DE5FBCF1CADFCA79CDC089B48E21AFB02469D955D73FA4E2BC8EAEAECE1D95BBB66FABDEBFA755C221A47CC21B0520B8331110A7140012E18BEDBC30D24DD8CCD456DD726BE9B5DFFFFEBD0683314B10E84801E0187042677737889F75D0E3FEE47FFFEBEE5B782109F760BAFD3FEFFB8329C6B2100FF64B0BF72AE0BC5E9FB7CBE3763538ACF67D9DED2DBB8ED4D7D5D594EF6C8D02103E19D3E18B0610A7020CA70C000AC2D789463D093E46A3D1C43EF5CCB3374E9B56BA9253A9B462818E0400030E07B4777581DC63DAFAFB1EFFFD6FEE7D8E0780E9EA9B6FBFB2A0A8E4574CF4EC7FCEFF3D0606FE35BFA77EC3E6F60EBA8F0F3806F6F674756CAAAFAB2EAFD8B9A5258CA608A72D22718993028853028030C217D47D0CB6D8D973CECDFDF5BDF7DE9394947C964F46A0C305809D84DFD9094ACF88DF69F9F5DD775D4CE667C6AC79C517ADB86A0D6F8A78018B042E80820743284084EFF81C1EA7EB88DD61DBD5D1DAFCE5FEDD9BF73737345845A45349632891CC93AA1D4E25005412B265E4553E093FEE3FFFFB57F32EB974C5AF755A6D7C4088A30080CDEE80B68E0E08F77CF859FFAF7FF9F38B6362E263EEF8AF7B9F339A4C8543420E16EC6840E1F57A7ADD4EE7215B7FFFD6DAAABDEF966FFDEA98C81D8D0488B0DA61B44038E9005010BE8157F9B1D47EF5EB7B2E5871D9E5BFC583B55C40E0230780D56683D6F6F0C2E737FBFFFCE2CE15B7DF7DCF1D19593997050990DF377283ECA6D33975000481BDE8783F0024C09001036D5E8FDB39E01C38D8DFD3FDF19EAF3E7FB3BEBEB64B048641053E1116102305C249058044F81A19E1C7FDF2EEFF37F7DAEBBFFF20A95E12E06801D06FB542736B5B54F7872EE2E1DD7BF6AC9D35EFC27B55AC2F04A1F9FBC4EAF3C2D3EE7E70E2DF0CF828792A2DE4E163E4E2E364E26B8D58B021E011699130A0A07BF6B89C7D03765B655747DB7B5F6C58B7DE6AB53A650011895C8E0804270D0092089F56C4B403C2FFD99D3F9F75D3CA958FA8546AA320F0D100A0ABB717DA70E447BBB5B5B77F929655304BABD55A022A3E20340ED6B9ACB0D7EB0A4A4AD063A9F1201DEEB35408066C39F868997884566A36866542FCDFF5E203391DF676BBBD6F67EBB1636F7CB67EDD564934D32B633E04ED306C109C140088489F78E4EB799B4FC2B7FCE8F63BCA56FFE8478FABD56AF39040470E80DEFE7E38DED40CC3291DE0D4866EA3D99C2437321B065DF09CA327F010745E06048E5769FC7B521BF49A1E320D8FCC41CD40C0A0A6E720085052308841A1E47978DC9E4187DDDA68B3F67F75F8C081B5BBB67CF68D289A290D6D73A71D0012E1ABC53E364FF82C2B57AD9AF6B33BEFFAA346AB890B16E8C800802A138E341E8B5AF8F41D8D460F664B3C848E7C1A521C3CD9DF01AD5E4FD0A8F7EF39FF3EA0DEE83517782D0E6D26A9D43C18B4908E7F31F1D44D891B4443329D4E87D366B5D5DAFBFB375457EE7CE940F9EE761110B8E182E06401402589F009AE5EDCD2EF2D2BFADD830F3EA7D7E9937D21021D3E00AC36071C6E6808B98F7E24827575F5503A6D12A0672162FE3E269E84947445617CEDB4C1BBB61E91E0E91B43C2E53A3B6070FB0ED0A4A682BEB818D409097E8D203D96059154EC6FF41E8F8274044406B63404472CA7923503D182829EBFB7BBB37ECD93BF9FCA83C07B5A01A0C0F885E85EDCD4A953B35EFCEBDF9E379BCDF91C1FA8190D006CE8E7D71F3EC28E13B6DEBE7ED857510D8DC78FB3F7D75C7E29180C7ADEEF4775AD5641624A06258E86023A22F5DBEFF5C1839DC761005FFB47B22AB8304150FD8383E07CEF5D30CE9801BABC02707CF801C45C7001684C66661618781828389196500D65BEF01F3302209D07432A8E170B13730450483C8FCE96E3FD6B9E7E3487CF6D7887CB054E18001418BF10E18B4B4D4B4B7EEF9F1B9E4E4C4A9CEA276DA3038003857F1085EFF57A79B5EE83037587A07C5F4550F8ECCA4B9781D96C625DABD5EAC09290045A9D416674F93B796D771BEC1CB0FB85A70AB5F9F470BEE666F0ECDF07A6F3CF07AD29061C9F7D0A9CDD0E96E597E2DE067DEBD6813629096267CE04634E2EA87CDC1087E0B501690B75C06CF84D8801FF4D4530A460F7A5E0DE22E4A314C1C0417BD311FB0B4FFF215B94DCF29E72002890BE00E347969DF0E9E75F3C989595B54010FA680040B1FDBA6FEA617070905D7400DF6FD9B10B5AD0FD933ECF65CB9640BCC50226D402A6580BE871842A75E86197131E6B3FC68F5809F3E7099F67FB3650EB0D602C2B639F39DE7F1F8CD34AC1555901F14B9682F5A30F21EEBCB928742F58B76C01735111D876EF028D390692162C047D5C5C000C62E1AB85D7DCD0357578BDB16A1D146393330303F67EE8EB6A1FF8F3538F13009CBC191816191C350064C2BC02E317DC3DCBFB1F7C78F7F8E292AB8788DBC80130E07441EDC16FC0ED71B38BF6F4F6415F5F1F20A700AD5E47691BF020305C6E37122617E4E566436E5616188D46147E2CBB4DB9B83EF5DA034D47A009CF2B8C7C410B0802F21D3E0CAE6D5B418BE733949480A7B60E34F1F1E043F7D3D3D20CC92B2E87EE77DE025D4222F89C4E48418DD0BDFE9F907EE5D5E0A8AE62F7E643CD65CECB87C19E6E889F3C25402C21C44C70EC1EA6688D904F650F3266A0B5A901BC6E37012097C6C14878C08902804A89F1AF7DE5D51BE7CC99735730731F1900DC6E1754A39A77B95CAC23BA7BFA50C803A0D7EB11003AFF1E414060607BFEBD0155BEDE64020EED2DC88C7CEA02278ED8EDD63E38E8B4C3213CA71DDF0B2A5A2D7201E93567B382AFB313D4781D434E0EFBAC0F05AD4690C5CF9E035A1CE55D6FAF83B8D2E9D0BF6B27A8351AD0C4C642FAA2C5D0FACEDB907DE555D0BAFE3DC85CBA0C3ABED808C96533C1404452103E5D8FE72B17EACC60A26B72126288FBA68683E0F3FA069EFFE363793C00DC4270E8940040C6EE8B19BFE5BEFB7E33F70737DFFC245E433B5A00B8DC1E38507B101C281CBA671AF51E8F9717B444E81230680D784B247C9090BE3024AB19C176C8E9806F069068E2350920822910F301C14CF810148E7DFBC0D76F65E78B9D30116CC813322EBF025438F2DB366C0053662618D3D22076CC5868D9B09E01237DEE3CD02138D43C2FF05FC36F0A12345A98A78F19E22822AD6577D8A0BBF5389A41AF030130460400EF70CCC08801A060F703A46FC56597153DFAE8E37FD5EAB409A1BEFBF000E0F178A0EA401DCBEED1D6D767651D2215BE0185AE63237E080C5AF4F77D1A4D54E95DB998003B0EEFAFD9E36260388CA0388A5CC1C5710130884B970590203B85CE4F3FC1918CCF8AF79F8ABCA07DE3E79077F5B5D0839CA00F4D42CEE22560CEC81822995C7029F404BD09C66BF53281220E8E1F3D0C836E279160C7734F3E56447444E40978A3CD138C16006A495107A9FEB8FCFCFC940D1F7CB8C6126719EF930DDE440F0062F935757568EBFB59AFD8AC76A61AFD421746B9BCFA273078DD836075D89138BA4083234AAFD782064D820E8F538128F61F92D8090585709C8F340482E00882A101F7C7B1798013914781DC0D698C419B0D067B7BC05A7B00E28B27800FBFC3A1294B221E101261F46B8085660BC4AA35A13101ECB7437555EC782F9A80E79E7C742225B6780078860382110140A2FA43C2BC5BB7EFF87D4E4ECE45F2421E1E008E341C8563CD2DECBA4EEC300D76885FE07E211B022A3F54FD5371E8BC39B3D81E552582A817BABA7BA0B3AB1BBA9084F5F6DBD08370811E3D043D9A0983D1005AD6E1109D86002120E307C4511C91C790FC35D3C8E478764F35AB2CA6C0BB95BCAAF7F4F783B3B505928A4B86DC42D51070E2F03E2E8C89970D11DBED5638D650EFAF6C1A1CE4B6ED2CDF35E8F56CB15BADEF1C3DB0BF02422B9F1581306C0044B2FBEFFEF39FB79695CDFCA9B290A307401B122DF2ED999FEFF5E108D64846BCB206C09101B3CF9EC100123623881E431702A2A3AB0B3A3ABB1020BD2C8AE8427E116336813926965D17A20505BE18C4E76A450E710C41D1846068438FC407C10121A9D91852FDFE63C6A3FA9F6834CB66141B1B8F80B5B79B078017B6ED2A0F84C5F15EBCB9D9E92F7EF2CE3F7E21538D14028261012092DD7FFC0F4F5C70ED75D73DC92A764709807EAB0DCA2BAB50F0C8C6356A1C99DA213BAFA3BD0804120D40429D367922C4C5C6467C269BDDCEE208A929C9417F273792924B478E3642736B3BF421B933A22711176701036A8B48397FBE64CC2F2424902DC8035A1010CDE866762238B8402249ED07854A1425C40FCFB72440A2D4FDE3F715FBF63033C0EEDF6687BD95350100C4C498A16CDA94F2FF7BE291C5A21C41C8841801042301805AA4FA03C19E9B6FBEB9F8B7BF7BE0658DA8A267A400A0CEDFB5771FF3E349D064AF8347B9E8B548ED1BF8919F9F9B132250996A202496B528E416686A696511C384788BE2F1C4458E21200EA3493A7ABC89690A03BA7D164B3C039A4AA58EA021867885075B0782A0055B1BB66E0407A886C89F09B9CAC596243F479184AA69C4EF2FDFC5CC099DBEA2A616FA119CAC0016DF2FBBF8427C6FE3EC367BB7D335F0E991DA43F7EDDAF155B38C596028881A0032FE7EC0EE4F9838316DC386F75F8E8989192776DD460A80723463DDBD7D6CB49BCD66FF680F71F3426D3E3E0EC45B62212F273BAA676A6D6F87DA83F5909E960213C617C91E4366811E3D2539290440CD089C6F8E34B0D6DED1C542CD2929A990803E3DCF3015344430403CF8CCEDA8193AA8212012F13CA5E6B8D002137CDDD5D90E87EB0FF1F7DF09F5478E06FAAE647C21141716C2D163C7C1CBF7A93F04AEC54BF8EA9C03AE07DE7975CD5BE2605154009029EED089833D1515957FC8C8CC5C28F5DD4702808387BE61234C836A3F313E114C26834C608777F744C0203BDDD3D30733CE9A1A312D4CE6E55853132380334AA7C81E4FF30828A9D4D4D2C24CC48DD75E1919506DEDB0AFB21AF6D7D4E077DC90919E0EA9A9E92800B5AC2B170DAF101F47FFEFDF5F0E0EBB8D99B97DA8FADD6E0FEB4793D104972C59048D287C97CB1DE857AF88532524585A5F78EAF102914980E100402ECE1FF7D9E79FDF515A7AD64FE48237C30540534B1BAAE503EC9A298949101F1F2733E2F521FE3F710252E71D340A751AC8484B83CC8C74C8CECC44F51C134CFA50DD6EDAB693A97202D94DD75DCDBC04B9ADE1E831686E6B83F185634334C0506D819FAFD0751859E437F238F6ECAD803DA4CDFAFAF17E32209B42C8C41F2460088A394420999BBEFE92A9FFFA8646A675585FE27F175D309F7DDED3D7E7EF53EF90E0491B585033EAB49A63CF3CFAFB1271C838220064F2FB82BF1FFBE0EF1F9A7DDB6DAB5FC45368470B805EBCF11D7BF6FA916AB1E0E84993F1ED85204F301738547F9891355FE09C43F71017178B1D9F09B9D8B2333318587C2C92D80F8909F1A102C5CF9AD0EDA4DAC292A2714142956ECD08D8FA8606763C9990695326C91E4745AA7BF655C04E7CBEE3F81DD20CB9B9B9C839E2E56B0815EA0C5D4E376CDBB609CF676721718E7FCEB163F219E96DEFE88441CA3708B2E04140DF1D3BA6003D9DEE96671E79603C0CCD8D0C0F0005978F097FFAF419191BDE7FFF4DA3D1902DEEF09100C0892A6BCBF65DB877A2CA3742617E01E07943841F14FCE1DF37B5B6C27E54BB9C683248F0FDF0EE91CFCF9AD3D352211739423EB6B4D49420F54F7DB11B47ED91A3475955F18DD75C290B92A1DA833ED85B51C5D4EC79E79CCDEE59BC51A2CA86EA9A3491A065C8B494EFAB44D76D37D47D7318F94A2E149714A30A3706DD879C7B597708496B632354D51E04BBDDC19E8B78D2F790F8F5E2B504D5EFE544B1146CC949890C6C68CE1AFFF4D843934500F0450300A9CBC72A7BAAAA6B1EC9CECE5ECA8574F8F00040EC7AFBEE72E8EEE965C228193F0E3540BC9FFD13B39765FF7EB340EA6EF3F69DEC1CE100C029DC9F416F80BCDC2CE6358CC9CB63DA826CEB31E420E9A9A9CCA552761F1DE882D918A0A41C82BAB412794043E371A61D2E5FBE949D4F8E677CB9792B7CFCF917A052EB610A8EE2D4941445AF65E3171BA109BD9646E42FAC0FF13AF3E7CE811824CAE4CE8AD53EEB5BDC6B518365A1E6A3EF6FD9B26DD587EFBCF196A8764019000AAA9FD9FD75EBD65DB1E8A2C50FF86F627400A84134D7A33DA62D033BB378DCB820C227C7FE09F58E8101F8ECCBCD2C2D1C389FA450D47F7F5CD06808777F49890930263F0FC616E4315090B990DB0ED41D44A6DD04C751B84B165DC04C8B74A3B8C1C16FEA71F425B1F3457249EB0ED5C3868F3F835AFCCEC49212281C3B36849BACDFB09E8D7E2F8294EE39373B0B49EF3404A20385ED0DB1FD6CF4A724B1FE6A6868ACF9CBD38F2F14E50C9401104EF5AF5EBD7AFCC38F3CF20FB55A133B5A00742351DAB46D07BB26D5ED9D3B6B26984D667F785726AD4B0020A190AAFBFCEBCD2C08229E011C0200E9E88FFAFEFC95BED4C1645FC78D1D039968B785814E04AF066D707C5C1C4C9E5812D27F146E467B8BDF4943B7344E51F0147F200D4160B970FE5CA649882F7CBAF16B7CBE4D9098948C5A6132F689093D9C1E78F3ADB7A0B3AB87F5B94EA745F02D8441CF206A2D4F08E32720509FC5C75B289EE27BF39597CFAFABA93AC803203C075052FDE8DFC6575557AF8D8F8F9F16A8C71F2100BC835EF872EB36B02283A66DF28412ECE802D9B4AE8167FA02EB26D0907F1E1C3A3E010090DC2B273A1F09A1108954D1B8B1E8158C014B9CBC60898C56D5A0AD46F7F19C19D361FAB429B2C75135D3D61DBBA1F6D021A6A2972D5E1472CC3EE417EB3FFA14DA51E8E4F66EDFB12BD0E773669D0D2968DB07796D2075FB48AE043ED222FB2B2ADF7EF36F2FFC923C60BE72C8ADE805C8247A04D66FD9B973D75D93264FBA2DA8934608008AF15359176D64F3172D988B2E924136AE2FDE76EFDB8FBE6E9364FE7F9400909803FACCBF180C159B0C2A002074C631BD2657733C8281380B0143A83CA6CF1A8F37B3112A671A84CD4DF9013C9F9438CA6D1B3EFE141E7AE299C07D6565A441D9F4D2C0F5421B1718445DDDDDF6271EBCFF1C94732F9F31748AE71104014012EB1747FB629E7DF6D9F356AE5CF5128E39CD6801408CF50B243FC2B5CF3F7736DAC9FC90DCBE7423C01070421780901FC19100B068C1F96041FFFDC8910670A059D95F5DCD42AD82D7104228258B4E08D7D0E02823376B4271114C447790DC4EA58DDCB443C8FE893F9009BCE6B2E561854F9EC44DB7FF8C9164BA2691BAC517CEA7E89E3F1D2C030062877AF22A88387EFEF9AF367EB8FE4DF24645EADF2B540DC901402555FD73E7CECD5CBF7EFD3B6CB106E92819260088AC6CDCB485F9E1B41183FDFE5597B3D26D41F87291399AEFB77BEF3ED1B5460700720167E228DABC793334A0DA2E2C1A0F2D6D6D2CB246DFA1FBC9410ED0D6D6C11697107F9F93D168E2EB5B62E390C815C12474EF26968C0F3217D4DFE43A1E3E7214895E019C3575725800FCCFEF1E864D5BB707FA73E68C521623A1013214E8090600A97D6A0D8DC7EAFFF2C7C72E254E2A1AFD4185A3720090D6F6598E1E3DFAC78C8C8C25B276729800388036AFFA405DE09AB3CA66C09C73CAD803298570C9DFDEBA73373F3AC38FC6E1DC9BC3D607757575503A7D26BB868E991B154C40B54EA46CC78E9D683F2B203D3B8F317F6500C87838426E035B6E76264C428E3375E204282E2A64A3379AED23740FFDAADF7F5E7211674E9F06B1E618364CA523DFCB3F337DE876BBB857FFBE76F9A1EACA03FCE81F10CF1D08C9062A8CFED8BCBCBC14EC843D4482460B0072DD3EFA6C235383CCCE204A7F7CCBCDCCFF56DAC857DEB26D2738DDAEA8D4B1E22C22B9118CC70C7A071921A56C9E20CC5965D3C1E51C40557D083A3BBB21252D9DD52608E7B2C4C632CF80EEA9EEE0372C26A0048010DB8CDC804CC5D4491361DAE449A865E4CD0545F556FDE4AEC0B9A9AF089431287CE20D72B6DFCBC8F5200B1E5556557DF0FA4B7F11889FB85AC8279B0E9630FF80CF8F2DF1EDF51FEC4097463511559A56AB19310048851F46752B6C146ABDFC92A5CAF6729082447B02E94E65FF3E8A44137F6FF4909427205BDAC01227AE90D1AC4130D41FAC852434137AA399C51AA81289BE9F181F0FB7ADBC0135C741F8F8E34F20BF600C54202FA1D4752400C8DD7352520203029902DA5B7030D07177DF733F94EFAF0C9CA374CA24E41619909C98C8024072AADF8580A4743872AC81A71E79709ECBE5A475076CD282D19082109954AF10F1A33868D2BB1B3EDCD8D9DDA3A3C3CEC21B19876E907013D10280A66C7DBCF1CBA0891B8BE6CF637658293842B6924642E4000F1712F695CB34D22822C0914FFDC1071F40426232F4E1080B64CFC4DF971BC1F89E5CB694F838A6CDB66FDF0ED3A697C191864656C310AE2F82B592BC09216FA470CC18E6DE7D4D769FFF7E52423C63FD9490222F49CEEDA32417DD13F5EE575F6EBCFFD3F5EFBDC68F7E8794F98703804694EAA5D19F70D9D557CFB9FAAAEB9EB2DAED1AAAC9F31769E86102929BC9138AC168D04705007A20E9C20DD75DB18245DEE43662FC471B8F87C4F415012056FF0A00A08C5D2A76EEDB6FAD03B5460B535178FDFDFD4CFD0B6168F29D9B9B9BA1A9B59D65F9A400A073D3448EEEEE4E484C4903FB80839CA95073140D00A230A7745FF3CF9BCD88240140CEE52362DDCBB2801C85B11B9F7BE291E53CF1B349268CF8646B0225EA5F2FE4F9D7AC7DE5FF50A32C24D2E2E285CF40808DDE93ED2CC64E2B2E1C0B79B9398CC1CB0180122B1BBFDE1C22E49FADBE056225E95A7F84AC8577F7B85102205418748FCD4D4D48F80C6CD4C6C6C4306D7676D95930362F171E7EF86128183B169253D3A1B1A985E519A2B9E6C90200791194C9A4D0348949CEEDA348227125F460B8D75F7DF9EABACA8A4AD1E877855B3F400080742E3FB1B2F8B56FACAB34E80DEA04547976BB9D9566B7A14AA68B39B191EA140041EE533ADACC31E8CF53A48C5C1C4ADDD2437EF4F9976C9146F146D9AFBBEE582DEBF7EE65B62F5C678E1C00A11CC17F5C415E0EDAFD3A707906C181CF46934849AD0AC794A28DA6BA00321F94C5A3D87D68D049C13B08BBBE8132002CA88DCACE9AC6C2D0A499A4848FF6240BAA72A6ADBAE6C067AFBEF8DC2F44A3DF295E3B40AE345C5CE92366FF4CFDFFEDB537CB6D36BB9AC28D46A309C68F1BC3FC63B279354882FAFA6D2C85EB629A41008393E5AD3DA81DF272B2E0BCD9E7A02AED0FBA289DE3AA4B2F0929DD221B46E958EA788E0BD799110020E95862CD34A1D41B089B860280E32769D271747DC197664917BCCFA58B2E80679F7906B408EAF4CC4C68EBEA6571FB130500E967742F7366CD64758A630B0A64593F7953944F20F9A029733DF9F0030B5C4E67A728E8E38A3453485AEA254CEAA4EAC8C4975E7D7DBBCDE66000F0372FEBF8D2A99358E48B225A5F6F43DBDED4CA04EF07809BD70EFED70BE79D0B696943A95052F9D75EBE02D224459B1E1C79E5E8733B1CCED0D11029C32712A87874C7C6C4C282B9B3D9ACE1ED3B76404C5C7C20A2E69351C74A02341A0CC0799C8C60B5B5B541565E3E4BCA84069DA2BDE7C8A495720E3959592CB2C8CADC6500401541BDFD7DFE54EFA64D8F7CF8DE5B6B65823E61278BCA157AC6F200485AF3F7D7B7D86C3615099EFC6502018D6C011094B2BC70DE1CB0DA0790E46D83AF366F65491A314F5872E102747592F8746F1A5CB1FC7B2119327A98CA9A03CC53905587611784140B30786415171521798A81F2F2BD48281B212E2191B97342F915550E53F55143E3313617209C0089259166A0F22A72B55481408C92FD8E9053080300AA4398513A95E512A80D4551879E990A421A8E1DE32B935A9A9E7DEC2121E2679564FCC22E182197F88915DCBF17FFFEDA5756AB4D2D8C7EB6F70E69033F2006596064F9D2C5407182FD9555F0D1675FC0A75F7ECD46DBB2C50B21252505E69C5D06E7CD3A5BB6FE8E4ABA8828465A0B289C7B165A13E063932F3B70F4BB51702A24B2445A49A5D2B9962C5AC06A02376DDACCD4BE4AAB67695E5F981802372CCE115D52490A00120711521A24A5932733D7500A1C52FD07EBEB1907A39941FF78E3D51F5495EF2917057DC4CBCC859D24AA04800402C0F5D7DF3073D192A5AB9C6ECF047433D4E2D11F00810810747314FFBEE0FC739154E5C1961D3B59E9F4D2450B59F0453627DEDCC2023272028C0E009C4C0026F8FB1E7E2109E0047F1B607AE914F8E4A38FA1AD1D557A6E1EE80CA6C0F7493B502D00B5A6E656A83FDA086E16301A29E98C16004846F37351F567B2784B5C5C9CACDB771CDDD4567E39BCBABABA4D2FFFF94F3FA788394FFC1C22E217719AB8DCDC7E410324F24048403730EEEEFFFED5D2DCBC31F33ABABA1348BD0BA33F58330C018446F1944913E1E2850B60CAC412969A946EA42186D8F48906807C5DA0F07D37F294638D478132C289C929CCCEAB78D237134760E9E489F0CE3BEF420BBAA4B9630A59F2C61B2D00A4F63FE89E650820FF9E3CA3B3A64D81ACCC74B4FDE365933D54635875E020B3FB4842DDCF3CF6D0229BD5DA1129E41B2D00F4A21070020F84783E2E40C121FDF4B2B2ACABAEB97EB957A52E467BAF0D320FFC6B8FC454D03D50A873F9928B584893F2FE34D5BBE6401D1EE70B0F00694745000099189AE8416E29D5E9D3BD844F0B879A9C29934AC089F74791BEAEEE6E28993C0DAC8170F4490000E72789543C42A37E1E7A4E548D2C75FBA83FF7A289A5790AB46DDDB2E5E9F7DF7E738DC8F63B9542BE9100208D02C6F044308E6F02000C20FAF99695AB56CF292C2999DFD2D199EA700C849A079166F00434030765A5A570F9254B983B18E29F2B64D8A201008DE285F3E7B2DC0131FFBEFE7E56BB17A2462300807A630049564F6F37C4C52730D2A8E1B583AC0B1909000A0450FCBCAC749D6AFCA64E814C46FC42593F694BAA82E66735B53EFDF0032B78D56F158DFE612D1AA9523003422E4068661E00461108F4C22CA1FCFCFCC4ABAEBF7119A7D24C6E6A6D3378A4209021913F5A75134B2C51D9756242028B72450500450FC0C7CE939C9400CF3FFF3C4C3B6B3AA8D9E20A1C8B9FD388A2E24C2A8F16CABE590227C20AA4E1630E910110CE03109E970602CD294847B27C2E1265B9440F2D81BBAFAA5A98DCC2BDF9DAEB37D5ECDFBD5F26E813F5E8970B058BE7FB0BCBB99B44AF0D10FC5B3ED21F74D22E5BBE626AF1C4298B9ADA3BB2FAAD569578F48B8170C7AD37F953B03E7F6938958067A5A7B179018A193E050F40CCCEFD53BFAC2C3C4A4397AA62E9BBB3674E875E64F9D5D535D8AA60D6B9735954330400321E403800842B2C8DC664D1B9A74C9A80AE9F89F1A540DA5DA4FA070606581D247933B4555656BDF5FA5FFFF2302FFC7E19B78F1B0900A40B3B0B403044D904203030C4272498AEB8E6FAA5A0D54F3F72F498590C02F2267E7CEB4ABCAEDFA76668471008A8A790329553D36D45B2DFD1D60552AEE2FDF5EF417C7C226A061D98D075F557D5F80140A9D8DC9C2C1C699DE8621D66262412009449ABB8EE203C00FC1355B2901B4D8689C545A1DA0DF7E44D75F0E1DECEAEEE8E271EFCCD151435E7856F8B36E813768510494A58BCF48B0E827FC6CD200186542318C440A076CEEC730B274E9BBEB4A9AD23AFB3BB9BC5157EB27A15EB00B1F085C48B1F145EC68AC925A2B2B1A801A0501646CF49AB8CB1502F85B60D46B6D40C1D573C6E2CBA855361E3C68D38BA2A21333B071C6E2F2BDCE414EA02C393D6E80040A689463F99C1E58B17F9E76DCBD8FD8A9A0381D540FEF1CA2BABAA2ACA2B65823E5E18C182D14A35817240D0C88021E4E7DD14CC030383CE68347C6FF9650BB546F3EC450BE6C770FC1A40C120F00BDFC7EFE93DF079780A1FAB0264ECC41486D23D50787AD0E980DABA8360494804534CACBF6A496EA6D1090200C7A6738F632AFF52F48E52929343DC3EF2403EFD7253207681AA7F1DAAFE2778E237ECA04F546B0489400010FCDBBD1A1151D4CA00410A00A38256D025A07978EC8FCFFE0E6D9A4A2A7C1F2FF421108835036A05EC304A8D526E9F15A544AC0B8C6E5E00A5825C9452453B4B84D14F4AA3C82A0E8B000E0120253911597F364C9A500C73679D1332F25D781FEF7FFC19E3332C66D2DDD3FEF803F75DC30BBF4FAED267384BC4865D2226CC0F39ABC39808BD040C46191311D00E33CACA326E5C79EB8A9898D8F13687432355FF620D20083F882B78FD931EA9A6CE6F2294326C239B19249D18A2F47D8A3BA422D1A4656458FA380A0090F74382A7FBBEE1EA2B456576436DD3F61D70F09BC37C29F920CDECB9A57AFFFE1A91DB27A87E0F8CF0B70222AE0FA00004950210B4325C410C00A937C180A0D3E9F43FBDF3AE05E38A4BE6D81C031616B80912BE3784284AC1421D4D19475A129616861E3100C2CC0C92FB3EE536A69414C1BEFD1530E0F2C0F1B676B63A47B8BC05F5F7B8C2023605EE928B2F8271630A42DCBEFA230D2C97226C355595FF78E5A5179E9251FDC376FB46B44C9C2AB85E5B25133F90FEE0B314084691F0CD22F73228B03477FEFC3C742397825A57607738D4D108DF273117F43C145421F268662E65F899419101A09C78A2491DB7FDF016964F78E8B127A1050170F8E8D1B05E4B628285CD3720C1537D62F09C091FFBF18BD7DE7E97257AFC05323DED8FFDF6BEEB6454BF6BA4C4EF442C1327671E5420FFCBDF626D10F86550BE09C01093458D3936D6B0FAF61F5F949E995D86FEBCD91BA5F0C55CC1CB1755E4E7E5A066C80683511F5A541209000A1A44E01C54A14BAB98ECDAB91D32730BF8BA3C65D2A9566BD83A3EE47EAEBEF906B6B854506D1FDEF7BA7F6E60B386F885A97C6FBCFCD75BAAAB2A6A25AA7F54C4EF442F152B175154C968043910982420080202B58B2E5E523C7BEEF98B07DC83594EA75315ADF0A566C4C76201D92CDC1A4BCBC7F19336869554920040296FA1048082FC3CB6F6E085F3E7C1D9A26A68E1F36DBBF604664B33D55F5DFDC62B6BFEFC27D1E8B78F24DE7FAA968B57320F1AC932F2468949304908A31C10B429292931D7FD60E592188B655A4FAF552F2588E1842FE755901741DE445A6A2A33158247113EAB38DC9941439FD16827C24AD3BA565E7F4DC82C282AED5AFBC6BA80CBD7DBD7DBF6E8FDFF7B8348F8D6D144FC4E1A0086E13D88E3085277D128E335E8253907A1A9172E5A3C71E2D4B3160EB8DD592EB7471510BE94342AB994520F035FD35C7F5A0B80E60C9A8DA6C06FF29C0800D05A033497823C8655DFBF9645FF82660AA3F7F0E2DA575941AC48F5DF8AAABF4E44FC1CA389F89D1200840182D86B1073039D42FCC0182ECC2C68159339D6B464F9A5172426A795DAD18360D3BC46207C31708411989C9C84442D9F0568C8660B6B024BA79685CF5BF83FCBC9CA80989818B65EC0C2F3CF0BE92F5A03A0928FF6D1565B53FDC6DA17FFFC9C0CF18BBAD0E3B402400108E2B4B35A32AAF53201A568802080419D989C1ABF60D1C50BCC96F8C9569B2D968A4CC5DA205AE12BF50765EC52929269AD3D888B8961BF40426B00B07C8562D4D1C716BAA4BA3E2AF15A7DD30D21CBCE5075F5BBEF7F34B4B44C5F7FCB23F7DF73332FFC13EAF39F72008401823A42CEC120136696330D522030306464E726CD397FFE057A8369425777AF79D0EB0D0D3049B8025B686A847D4142A5A558E2E362218696B8311840A3D5B09A439AF944AA7FE1BCF3E09CB2E921EB08BDB0F69580CB87AEAEEFD597D7FCF040155BCAE584FBFCA70D00C30082469289D447483CE995CC830086B185E3D34ACF9EBD90D3688A3A3A3A8D14680A218A3C793CD11B1577D20458D2061555350C10E96969F8B722B692F9FEAAEA80CBC7ABFED750F5BF20CAF4596184BF04724602200AF7315C40492E1329CD35286A056A05630BD38A264D3B8F53A98BBBFBFAE39899E0857F32FA4100004D78A1351168A4D37434175F53B9ECE245812A696B7F7FCB43BFB967152FFC3E992A1FEF8916FE6901C03080102ECC1C0E0C52F3A09302819ADE68348D9F5C3A3BD6923069C0E54E75BADCDA930580EEEE1E16D7F70BDFCDA671D3EB450BE6B19FB44300FA5EFBDB4BB71D0866FDF648133BBFD500184198395C4A5A0A0625F3A09503035D2B3E39356DECF809D3CDB17145032E4F8ADDE1D09E2800908F2F4C2177B179947E20CC423340B188DADA9AD7D6FEE5F91725ACFF84FBFC6724004618669633113A0910F44A7509725C01827F044C9D999D9D56307E5299DE641A3730E04AEAB7D9B5C3ED2B02C0F87185B0E6B9679FCE2D282C4E4ECF9ADDD3D71B47E48F00406B0C8ECDCF697EF4B7F7FD1049688F4C81A7E764A9FE331200C30C33473211FA3020D049DC506D3830D0DE60349A73C6164D30C725166975DA548E53C579063DC641AF4F1D0E00269DA6F6CF4F3FF932FF27EA6CDFDC0B975CA433C59C63425FB2A176FF1DD595950725E1DE93E2F37F6B0010A57950D20A729A41AF00025D149A4123019FB8815E6F34C725A7A4A6A4A6E59962E232B43A7D32A752591018A6C2823CCF47EFBCF180C36E7709617F7E447B78215B79A14B55BFEB64ABFE6F0500A2AC4D90F320E4C0A09301861210745198891030C0D0AF737941E6777AF836C8DB763100C4AC5FBC94DB491DFDDF2A0084D10A725C41090C5A89802301422B21A062AD20BE9E700F1C2FB84149F349C0210680D06CA24C5FC459BDFFB60018A60721E50B4A1A421B8569D0CA9C43AA1104010FF2A3D82DF6E1459F7B7861DB79C1DB45011FCFA950FDFF120088422BA8C26807B564842B690839B2A895E1085200B845021503C0C7FFCDC50B7D80078338E0E3E34E9160FE2500304C30C8B996D208A44641E85AC9715273102D00BC220DE1923BEE3B009C3A3028553CCB990D8D82972076057D2213E09131014A3CE1A4C4FAFFAD01102518943C8A70C0502BB8886257CF2B0EE38A842F1CE3131DEB3B1DC2FFB70240183044D20E7266436E0F0AAE60D0EFF64A8EE140E6E75CBF03C099A11D40E2E3870307C8C402389918801800E263813B4D82F80E00D16B0725D3213D066484CEC97C3EF4E6340AE13B000C1F1072020719332027F83342E8DF01E0E480E28C16B4D2F6FF01DFF07D7708FAA75F0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (77,1,'Phone_(24)',decode('89504E470D0A1A0A0000000D494844520000001800000012080600000041EC1E9E0000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000044049444154388D95947B4C5B6518C6910D940D5DE29C8B99897F1832CD12DDD0651AD8583082D67019C28620307005C6A402456E2D94155ABA1690B65CCAB5949694310AED56A001063ADCE2748311770105648CE90435B2251818EDE3F7D5D384454BE6499E7C2739E77B7FEFDD05808B33916703D126A2CD444F11B93AB4DEBD476C3831FC04351C1515F5764D5DA351D5D87CB954AE30F10A8B3FD9EBE3BF33312D2FDFCF2FF02506ECBE1ED099F1679A34DAA6A1E18B2B96812118CE76A3AC520571B96235A7B8742A49AA4452891CDC42E9527296E07ACC71AEFC9DE0C8DD4CB46ED4C67F0218E39BB5DA56D595D1315CB8F40D7AFB07915724015F740A5245ADADB44187E7A4A5D8745288178B443820ABC0119912A91205D20A4EADC4A7E54E86C6C4783903B8ABD59A9C1BB7266C0E804C59034E361FA232057406338A74EDD8A3ACC2F3793C6C4F39811DEC44786566E30D5939E2E52AF048642111D141FF02D0820A8542BF1FA7A6FFBA39FE032840D76E805C550F63B705D333B731393D83EF46AEC164390F4DC75988F4061CAB6D024B5A8E80EA5A889BF5E0E40AE0F36ED0DDE0E023AFDB33E2480D8BC5DA766B7C626A66F60E2860F0ABAF71BACB68077D3B328A1BE313B8373F8FD5D555DCFB751E56AB15533FCD6070F812F49D66B475F7A3CD64C1D194341C8A4E40FC8974441E658739004F5E1D19699B5FF80D1470FDE638BACCBD7643B767E7A03DDD81DA662D2AAAEB50A7D6A2A76F0057AF8D61E5E143CCCECDC166B3E1F29511B49EE942E0A128E4094B90C113AC6CDBB5CB931A77ED3499A2177EFFC3E600D0AE59BC7F1F7F2E2EC248403A02A86BD6A1A6B105B98522C8145510939AA49374942A5538633463EEE75F689741502285E48B4A04877FF43933472EEEA6EEEE31EAA1A44209736F1F34FA762C2F2F63E8C245749EEB2100031AB57A1491429657D5A2402483402441525A16629339088F658315F131794F450B7126353BEF0EB1EBC164C7C543D5D0745E5CAEB4D2F0F51D9D585A5AC2E8D8F7A033E00054D63541A16A805052867A4D2B38397C24A767FF0388632328320EE77AFA51D5A0B6EDDF1FB0D7317CF4D948E4E5E9B9253C85936E49FC2CF301977F12E6BE7EF43200BDC1681F3432D150A95B9049BE73798548CEC8461C0144104045753D0649C4B1ECE3469A9547DA9481D082D0F10F884D60ABABEAD50F0462993DD7D4E37A8D0EF29A7AF0C9D0E5174B90555084FCA2123B803885BBB40665F22572FFD9F5267903B35F5E260AF2F53D20CBC8E54F1E4BCDB08646C7DB53C2E50B91430A4D236073B8A42DD3EDAD3CF0E5303E083B9C4A57C5E32C3B076807D1413737B724566898F9FDB0C885D77CFCAD3BDFF405D53E7F163ECDE2814F22E264E78D937F9F5EEBBD53C01A902BB3A6B712EDA15111256CDDFE8278F75BBE967D07032603433E1C7D2FE4F0E82BDEDEDED4B1C75AD74E36AC3BB32DB73091D1EDE9CF9CAFAE2DECFF0638898C023D9873A3B37FFF061794DC42FE19CB1A0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (78,1,'Phone_(48)',decode('89504E470D0A1A0A0000000D4948445200000030000000230806000000D24089B20000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000BF24944415458C3B599095C14541EC75301C9238F523377CD705B77DD343769C972F33E96F2C62410144401B991E1464018981386E106412EB9454E4190302B656DBD4FCAF2CABC4DADD415F1B7FFF778B0A38E79369FCFEF23CEF1E6FFFD5FEFFFDEBC00E085A7113DBA08752319E888FDBF2B7BED69D77E223B9ED27066A021A907A92FE915D240D200527F522F9291785F571DC84EB8E705F834C61B080307934658DBDA5A28D4B16A992A26215A11932895A9345EAB7C1D468D3235A1D77B925E24F5D381EB2D9E337A1E117B52E30D85316F4AA3E5E13575F5A71B9A3EC7A6FA4654D4D4A1B4A21A05A5E548CBCA832C36FE4E88343A89DEFBC725CEDE113EE1AAEB9EC1514796AF0A2AB2B05DE6D0A7CF4006F8AA588F811A8BF5BB3D49849ED4F8FEC3870F1F5B5C56DEF055F34E6CFD623BEE07C8CC2B44548C1652751CFBB775D458B3B9418A84D600593CFCA3B5F095C6C1272216DEE131F00891FDEAEC1BF6CD5237DF923996F60E9491AF09A01E3A11FACDE83C2E005BA86FBF7EFD46D76E6ED8F9EF5D7BA00F20A7B0848C8EE7C63345C7686F86C8E34F46C6AD85243605AFC995F8872216160A2D3CE4F160507E515A48A41A0EE519A66C7394849EB176F22A99326BC1C7A2B63AEBE9A90044485F323232FA4BD5A6DAC6DDFB0E401F40665E3EC21531885469B818804C9BD616939E07756A0EFE1E130703990CDDE50AF49446A10FC19828D4F850A981A59280948908922708A838482235700B96DDB6730F685968EF1AF79EB9F9107D917894F15D457E9A545456971E387C14FA004A287522949416C1E1183F630ED61088323E05A9B92548CE2981675A160CE572BC48EACD006C6CD1D7D51D03FCFCF1AAAF1F86462B309C60C6D01A33555AD8AAE2E1A54A42B022018104E51F1D0F0B9BE551CC998F0D20F29E15D61F4B4ACB528E7E7B0CFA002A36D5716FBB4A0260EBE8061B922A2105D92595A42A641557605C42127A28947849495AE982FE1E9EE8F7C9220C7458814176CB3060CE5CBCEEE88C916BA4789B404CD51A98D19A01716988884B8724428105D64B652C951F0B40A768076A345A8FEF8E9FBCAB0F80A58E3C2E017E61521E8184B44CE41595A2B87C134AAAEB515C558FC28A3AE497D7228940BCB2F3313B652D466B13304C1D83D77D2478DDD50D6FB8B8E24D570F9858DBC094A2319ED6FC489B0C755A2E54293958E91388059F2E6111E87E7F1AFD56DEF7B1B5B39BFAEDF7C7AF1300EE07D8FAE576A8135310A5D6429B9AC10BB8B2B61ECD3B77E1E79F7FC1F193A7B073D75ED4356E45E1C66AE46FAC21A80682DACCA1924AABE0975704ABB5D99848EB9846C9F16E7824262624631A45D09D9E4FCA2E4642562196B97A61EADC85D7468F9B5C6B6666F67247ABD50B20F2BEC7902143DE3C78E4C8E1533F9C813E80E40CFA828C2C64E717F334FAFCAB1DD843AFDDBC750B1D8FD6D63B3874A485FF7DEDDA75B47CFB1D9A28EDCAAA6B915554469169872AAADC8C940DD558BDBE184EB48758502435856558575481E4754570F2F081E9A49998366F119638BA5F5C68EB903A73E6CCFE3C53F4A40E6B5983B76FDF5178F6FC79E803C82BDE409B552E369221AC0EF61E3848C61DC3D66D5FD17B4F7088BB77EF62EFFE439D30D7AEFF8C83F4F98EC79D3B7770E6EC39D4D46F4172662EB28BCA5156DB880D355B78FA31A8028A54905489598B6C3076E20C78F8876089933BAC57B850BDB9E67367EB499D7EC5C5C55E972E5F813E80AABA2DD024A7A171EB360EF3FD8953B878E9326AEA1A7934D6E6AC474A660E8A3654E04BAA13F6F9ABD7AEDD637C5B5B1B8E7D7F82FF7D8B607FBA7A15878EB62023B700D19A2414520D55D66F4579DD6770F6F6E7DE77F2F2839B6F101C3D7DE1171A09DACDC3B8BDF7A54EAFA0A0A0C9972E5FFE451FC0D7BBF74211978826E1E9CB577EE29EFC627B33F24B3622BB8001E4F3F46275A1A65C96C52650A127627D4919767CBD0B172E5DC2FE438739047B5CB878A9138C45EDBB1327B18DD64B5E978BD49C229893F7CD175A2138520EC9EA084842D6C04D1270856C7DB91340A44E7753535393B367CFB55CBB7E1DFA00D6AD2F426159057F8D19CE1EFB0F1D414979955E001689E28D15D46635581DA5444078147CC800B64FB09969CFFE03B874E54A27C0E9333F72888E872A3E99EF2B11AA38442ADBD7089529F1FE87536DC5FED4F59ED4D9B3776FD68D1B37A10FE0F31DCDBCDF330F753C4E9EFE01E534423C0C40A54D4220B5D870EAED25E5158890AB394088548E95AB02B09C8AD3DED51B6BE431D850598DA3DF1CEB04D877F030269ACF236F07419B9CCE61A43463592F73DE45B60E126DBE4B07002BDCA1959BEA8ED76CDE8213A74EDF03C0F2353E3D93B7CD8E2F60E9B3A9A1F1FF00A53A0099D9FCB9ECF585906BDA53481212CE733728428ED0C828B893610CC06EA527162F77C1223B47CC5FBC0C56CB9C796BB6A6E7667FBA04A9D42CD8741B4F0EF10B5DD3DAE79557C676785FD8CED3A767567E6174E5A6CD7753D7E5C19FBCA664795B5C862F76EC440D19CABC5F5557CF8DFFF5C60D7C4675C03A483B40B50028E90488494C25EF474249515069B408A3F087501EA75074BC03C3E0421158E12179006096A52D662EB0C2F4B98B1047CDA2885236B7B094AF3375D6FC6431E019E8D42E4F9FFEF945A5C59AA43468E88B6B1B9AF8872CED9DF0CE87D39198BE0ED59B1B785F6F6D6D45F37F76A39E66205D800201C036B4FAC626FAF2B5884D4C432CAD194113682801B054715FE5070FBF60B8F8E800AC707D00C08DDE535DD7407BCC663EA22F775F7591EC1C2E0E435D7401D8A83CD0C3DBC73D2BAFE0A2940AC697AA9D794841E167AD6DE7AEDD9D5DE220156D93CE145ADE7990D9881C02C8C8CDE79D4A4B23430A6D74C1E1525E806C5A6535C0BA88A7FFEADF04B0B05DCE373BF63D2C4DC3E5B118F9F6D8A5E244D7EDBED6DF5EC0A47748F3478F1E131811ADD81B181E7D9B85769EB53DB5B1C5485A9BC537AC871D641800FB7F0D458A751F96B32C8D580D308050A98C3C1FF42080CBBD002CEF13A8DE76EFDB8F666ABBE9B4AFD020D74CB60D13C36597FB013AA64E76BC7B8B348964415AB6C0D22AC7CD27E09CB9C562984D31E7C66464AF47398D0EF59F6D7D00806D640A1AC4D2E93DB9F985EC58C93F934A3D3D345A89C035D1ED00010F07609BD53E72D4E1966FB8F73D03426EF6EEDDFF7D7179A07F9C169B18EB442F91D8B1EEAFA40F48B348B603060DF2B5B4B1DB416971279EB7476A6974685127A452FB2C436965FB59B83D850A780458FAB108B0F707AC0EE305DC0E102100020580572700EB3C0D4DDBF0C38F6769673ECA1D603661CA6AB26188BE49F49E614EE7BAC448B4A981A2684C4933493633CCCDD5B1F189C7A838DBC2642ABE31F18E42DE64AD8F75A08CDCC2F614A281AC3D8512F9092D345AD509C0DAA9824E68AEE4ED0E004B7B675E376CE8632D3C23AF80E61EB7FDC299BD1EFB48A90362202ABEBFC83F5311113B4343438FE54E2E556B64EACBAB08C0D15382A5CE1EDC082BF222EB38B149E9FA01A841F8D0C9CD8152C781ED0302C0DD37987B9E753A36AA93736EF7EADB77A2B88E3178D8C1FE716E23BA891A61B3C79F486624739235C979988949F84ACF55BBDD2481FF65DD837591E9F32C31C17C3E267C340F36649C777018CD328A4E808E1462E00CC09EE6FDBA2D4DBCD3FD78EE3CBF1898F6F11CD9C30AF769AF550CC47507DB48DE208D214D212D2439903C264C9E9E69E7E4767A8ED592BB1F4C9FCD47E0B7C64DC208D3F15CECEFA9B33FC1BCC5F67CF35AEAECCE8B985D069CBB7001B76FDFE69BA08BB75F0BAD379A1DAAF415EEF3B89933168B0FD129F8D9ACE0492E3D7BF6F49F6A3EBB6EDA9C8517C68C9FDAD601A04F2C522C2A2C6A8B1D5D59B76A1D3C78F0BF4457347CD405D7B35CEC761305DF4BA7E0D99C329DF4096BC32457928FC988916BFF39CD7CDFF8E91F5F1DFDC1E4B6FB019CBD24E7E77CBAF4D6C48FE663BEA5759248D51E8F733BF76C17AB0F163CDB10FF401A497A8F3443EC294B484E2CCD189081B171E850933F678E321D573F6ED28C9D0606069EAC9E8C8D8D6DC486DAEF51A9F35C001E11959705CC08119909A2F81790AC0494AD0064CF4F23BD2B2E8DBB3FD7BBD1A78C4A074CC7153C9BE1878AF4F89BF0F45811AD610276808864D7DFEDF78167FC11C44834809EA209F415D7EDC6BA97B9BFEB0F1CCF0948374ACFF483C7FF000ABFFFA86CDF2EA00000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (79,1,'Phone_(64)',decode('89504E470D0A1A0A0000000D49484452000000400000002F080600000053CBCC510000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000121D4944415468DED55A097453E795BE92AC7DB12D2F32DE00638377F64030D8C42C216D26A44968364A266D0E6DCA099D493AE7F4B43393A4694F274D139292852629709A9240D906E810304BD882590DC660BCDB78DF6DEDBB34F7FE7E4F799265852DE98CCEF9CF939EDEFBDF7FBFFBDDEFDEFB4B22BFDF0F77F325C217FF36E4E8171EFD77FBC1B7BBDEBBB50ECE7071982104C0C70D2F771CF3E1DF1640770C0067388D281C521C32C19070200067B00787931B2EEEB35F00961028FFB7C19A3B0280335EC219AEC4A1C1A1CECECF4F7CEA89958B120C09B91EAF4FE2F7FB447E9F1FDC5EB763B07FA0EAEAB5AA937B77EEBC8ED7DA386379C0C402A03C02A6F84240B96B80DC360002E3159CE1B16BD6AE5DB07061E90FA363F433D068A9C7EB018FC70B5EAF178FF81E8F6EB7077AFBFAF0B3BBB9EA42E5AA4F3FDD584FA0ADF9C5ABEFCA64B22C87DD5E3DDCDF77FCC8A183877BDB9B86F13B3737BE0E94DB02E4B60010184F5E8F56A9548675EFFC714D6E5EC12AAFCF2B09181D02801B47574F0F389D2E6E1E18F8E58B3F2BFEFEAAD58F4DCCCE7B95D6E2C34147628CCFEB712050DD4EBBADDA383474A2E2ECE9B286EB957D5CF88C05CA2D8171CB0084783E263D3D7DFC860FFFBC5E1FA79F4EC606192D78EF76BBA1A3BB1BEC7647602EB148E4FC64D3C6958F3DB37A0BCE2CF3F97DE0F0FA583CF939207C1C18ECBDCF87A0785D2E97A3DB66B55474B4B57C7A78CFF6D39CA608011132242218B7048040E9C9F8689D4E97BA6DFBAE77E313E2678F78790C00D0F3AD1D9D60B5D942A71CB6BBA057A9D14C2623077C5E58EF1C821891182688A5908E8F4AF54B40E31F03101C6E97CB63B75B5ACC46E3D1BA6B959B2E959F68E6182264897F2C106E1A0081DACB71E8A452E9B85D7BF6FE2135356D11D13B1200172F57825C2E0F4E73846494DC2D57A8A5BC311BAD8350EF71123340821748E848482320692209A42018E310141D2E23102A8C197CD8F8C06AB7DAAC6673B5697060CFC5931737B5B55DEE2720F07BDF9D0220E6D45E872371D77FEF79252B6BF2631E2EBEC702A0AABA86BDF722B5EB1B9B6072660688C5629C4F02D1FA848027AB9C36D868EA6706B38162E96BA80779FA0410E1FDD2E8E8404ED52000C9E22830E09944BF08747E2EF84300F17831EC5A9AD76FDBF8DE8BA413E15870530070DE97726A9FF0D9B6BFBD3875DAB4D55E66F0D800D4363480D962859EDE7E283F7B1E4C160B3CB5E211502A14A08F37801FA7A5E7BBD073AFF5B4C23086C00800F8B8DE5E1059AD20C6B945289AB8D0917CABD7834CA30159AC1EC4740EE750A0090604240EE149C12123403846345EAFDAB175F39F565248DC16009CF154E4A870C46DDCB8F9B9F9C5C5BF4043459100686CBE017DFDFDD0DDDF07741D790E6B02C89C30010CC9C920924405BC7FD66C844F067A80581A858F13A3507A2A2B419A90086204C5373C8CAC9180442A05EF403F28F0BC2C3616A2A2A240AA5481222696CD4F00954855A04500492706F1DACEB6E61DDB367FF8030E00DF2D0110227AFA575E7B6DD9CAA77FF03EAA7114193A16004D2D3730DDF5C2D0D0308B7D8D460D5AB59A1DD52A245194749498B9D0D006BB0DEA71343A6CD08D5983BC4E8078DADA001C76347E10E468B81FBF53C4C480A5B61692E617834CA94036006811A4C5724D60CEA6FAEB601A1ADCFAD9E68F9EC3F553FAF185B2E0EB0010F3A2F7BD152B0A5FFFDD7F6D43D4637943C30170A3BD1D6EB4B683DDE160540F365E0D31313A18329AC064B2E003C42095CB98B6B2BC2F10363BCED78C40B4D8EDD0EA72C080C73D522FE379576717BEC7EB31ABC465E770DE17C164990272A58AC01C57AF5C84E181A163FB776F7BCA66B30D7399210884310110C4BD36353535F9C0C1B2AD5A9D2E57E8E95000FA0786A0EAFA7526421AB50A879A0D2D335E052929E360D284F1C0E56618426AF7F60F4037B26560C8081634284A2A0785424917040162C3F95B911DED2E27742120267C269F25C8783A16AB75A0C7D0A2FB2C2613B434D541CB0D74487B875FAD565D3A7B647F89B007A157580004C50EC57D42F999336FA68F9FB03C94EA420028C79FABB80C72A90CD4CC781C2856742400544A25644FCE0A7A8ECD6687F2F317A1B4B8889EC916DE3F30006DED9DD0D3D7CF98627338F15E3528F17E2120167C7E177ED7E3B2431F86047DF79D98B840585DBD5A0536AB1153F035AC3C9DB070FEBDFEA161631F3273AFA9BBF557656565FD7ED6A4840780AFF46277EFDEFD937945F37F152ED67900B0348373172F3123E2F4B18CEEBCF7E9BDC56C85B4D46448488867399E5E344F7D633382921978EEC0E0105CABA985E2797303E7E8BA8EAE6E964E9B31B414287A71FAB891F6320048700549E78F1FFF02BAF1BED68E2EC8CFCD06B9420E2ECC2664834AAD746F5CBF4E4D4C18058020DF47FFFBCB2FCFFFD90B2F7C8694964502E072D535A4F0202AFC44D0E93401C3E988B107E72B2AD9F594FF93121321655C12A42427B1C5C6A298D1CB6CB68013818C8FD307D642CF3B71FA2C14CD998D622A63D7D73534C1E97317A0B5BD0BE2E2E200C393014F20F080D07D070F7C8EE1588BCC51C0DCD93399E6502F4225589C5EEF7AE3D7FF410F760601204879EA9C9C9CD4B24387F660A393E11943ED0980A61BADCC6B3948EFE4244390F11E54F6E3A74E83D3E182709D2185463A1A30213D0DEF41CFA2C2638519C488D89868061CBDAE220BC8935919139931E72F5E865367CE6298B820273B1B70ADECBA1ACC0E65878F80D1648445C50BC08921C29E898300EFEDEBADFC78FDBA7994194201E0A9AFBF74E9D21B1333263DEEE5161E0E000B1639474F9C8271E8D199850541D4A7790F1D3B0956AB657485C801209C0F7DC798918122490626C4C7414353734037A8991AC0B49A94981058AF0BCFD5D4352080A970EC5439D4D6376275A987EBD76BB0F03A87734D6073B9DC2E0698582CA2B4ECDBBE63EB3DB5972E55073180F33EE524DD962D5B1E59FEF0C31FE0C2449100387BBE028610E507972E619E22C315E821BAE62452B70FF3F657F78F0640829E4D445D686DEB402F3A58D3C43F87448F163F256B12D309BA970CD069B50100AC28A2B47E125AFE75E88B13F0EB37D6419444024B4B4B38CF8F34640A0C872B55D7766EFFCBC7CFE3A546C295012054FDA79F7E7ACAFBEF6F38208912EB47161C1E804E6C6DBFC4F276EEAC192CC648E5F9D7C5CA2BCCA880B17CC8F0E0718616A038D5225D5D1E3F4B813959996CBFA0B5BD837DEF0DDCE783646447EE942CC8CFC986CC491319FBA8E09A5E981F782EB1E4B9B53F675568F1BC39108F6CA0FBC9FBA40F46A3D1F6E66F5E998A97F6F0BB514200C8FBB15F7E59BE6EEAD4C227A81C1F0B00DAD53978E418D89D767861F58F58C1C3BFEA91B63575F561E83E7A2E1BD6FA26931955590D494958DE4A44D0824A4FA94F8F7A90890CA8403089FA5E017052AC2473A66442615E2E4C2BC8030317161F6EFE04B66CDF0DE3508BE6A370D28ECBC8468C1B33150AEAF163BF2CDBB7FBCFBCF703695010FB49BBF6EEDB6832DB8AB32611FD32698E510054D7D441E5B56A16AF4F3CB23C607C4F6F1F2EB82A4283347224BC674CCD872B57AA3084AC28522ED61FF7F5F5B122C8871F0A73A740435D1DD8DC3E309ACD01368C3028184C0A2312E1CF0F1DC1E252040F2C5904B1D13AF63D79DF8C4D584B4BEB8D0D6FFFFE3E5C26ED28D9F98A90EFF10900EDFAF736AC8937185E19361A2584BA073D5D90978D2293CE50268368B2FD6547D8C4F7CC9C0E8B4B1604D2D8B98A0A86F4D829930302BBB4E1C141ECDDEDA0C5985E7C5F319C3B7B16AC4E370C1BCD688418DC4E071642469061793BEAFEA0D0F206E9CCACE9D3606A7E1E4B8B748D05D7DB3F38E4DFB9FD6FCBAB2E9E2BC7A59A38EF33F1E30160F4DFB967DFD6BEFEC19209E3D3B19C454FD736A0B76BD942E8A1692929306BC654E8C40283C4E8F1EF3DC4D49AF237E57A3B96AA814509A82F3420363A064C36A4FEB031F0BDDD6E6500CAE44A9C5703B3A715601C37436DD30DB67F184948856CA0B0796049299B83BE7760D9DC8E85D0B5EAEA2FFEFAD107CFA28DB439E240DBBD81CC27E8F612B6EDD8BDA5ABAFBFC8818AECC038A40A2A2F7B0A9CB95001BBF6FD0F6B727EFCC3558C5ECBBFBB8C091FEDD35DAEBA8A0263FE8AA26300A0D3694121933250A558325365A8902BD8BE01E94A401B2C664C5D1E6C94E410498885A10548E6FB1797B050707339BFADA313DA3BBB5C1FBCF5FB392880AD4454AAAF829A210E009270C34B2FFDDB8AC219335FECEEEB4F2495B5630D4D60181212A0B4643E8BF1685D34DCB7E05EE07F01AB6D6864E7037D81601F300800EEBD099B143A2F97C9202DD900E567CE414C5C3C50019A973305D9D5C584309C768C195AC8D66CD4ABFB172D64F3D23558F7435D63139C3953FEF6BEED5BDFA2BA8AF37ED09E000F00B5BCF138A8554B2D282898F8E4AA675778FDA2FCCEEE1E29630482412DEE242C2E1E7A6029CC985608C3D8CDD16667A4268937201ECB566A4ABA7A7B038ACEC04006D1A2B13C05BFD7058D487B3156831E8F6FF45C63304B8D55E4F2EF2C63A24CD7514852F6686D6DEB7DE7F5DF2E449BBA715842BD2FD400D6F6D25E1F3762B9BD3FF593AB9E299A3869F292D6F6CE4423C6290F061D5F5AF33C2424EA412A910AE83F7AD151B49B23F6C3E090099C9892920D06A631EDDD3DE0B03B03FB87C66113566A521449FFE8B9C66016F973C1BCD9B0E4BE92401F408D13D621FEBDFB763D7BE1D4A94368C710557D617784042C2021547386D388E68E048C26393935E1BB8F3CFA302A7561CB8D361969C44F7EF40C5B101910874D4C8C4EC74ADAD15EF332F6D0206F2B51079A5B5A40AE52B36DAD19530B99B0126547D13D148090E26A7C5A6A408C29F6DB3B3BB133BD0CB5353507FFF2D1076BB9A2C71A715354B0F515C501A1E0C0D00800D1719F550B172D9D65481BBFACB4A4D840D517D5E42462F49EBAB694A42450AA9463EF16E379D2177AA892B5A9766C50064182C248CC8818EF026069BBEDC1A58BA0B8E85E2EE559613FD602A849A6375EFBCF529CBE837E7B186B3F30684748B0EFCFEF2F467140F03F7A6A4398A179EB8FEB7FAC54EB722C569BC4CD40E0C17083CFEB0783219E1529120C8148CD1081E7F579477DEFC31238C990C076954D16731000B4EB34AD2017FEF9A9C7412A93B2739F1FFE8294DFFFF9DE3D3F2D3F79AC4C50F4786FFA8711C11F1C8440F0ACE081208DA0C69D7A6AF5EA9FBEB02873F2940508440C0F0019C5BFA74D90F1D8F252AF2FE2CA5361AD3F3A758E1CB3B3B2E0F8E10330736E115CABAD0B0280805DF9F8A3AC37A082AD02ABCA5398511AEAEB8F6CDAF0EEBF70C21754F4DCF20F2321AC1002A10B01814051E6174E4B5BF6E043CB45E2A84CACF2C4C1AC180911EAF23226A6632D31D2E7075574210010035C58CC504D20D416EAF44AE6CF83679E5CC184AFABBB17FEBA7D070C0D19CD7FF8CDCBF7E3FD6DB89E414EF8BC77FCE36898F0500804339A1B5A6EA850D8D40F3DFAFD5243724A91D96AD78632821FD4A1A5A52463F3928425B186EDF4BA3DDE88DA41A1427DFEF328C089287C747ED3A7DB304C7A61FFBEBFAF3D7DFCC8015C436F24E1BBD31F474582D090731BA71A6E0881208094933227A7CF9EB7602944C9261B4D26D957ACF08090215451CA309649D569CF4FA594334FFBD90F2ADE40ED108D55E83F611D52BAA088ADE9F0F1936C3FB2B9B9F9F8C7EFBEFDAF9CF01923FD1E78DB004400820F0D5548E6D0F29983C09A317B4E5E66767EA9D96E4F1B181C16F3C67BD85EDDD82F090211832143BB4133A61782DD66639D6A5646061C3D798A76A42D6FFDF6D507B136690957EFDF750022848654C00AB52073F060A838A064D366CD2988358C9B6B77B8528D26B3C27713EB484D1E074573EF810B972AB1793263964964FB0107F6FFFDE7A78E1EDECFE57C73B88AEF1B01200C10A1AC5072466B436B091E08024DA9D66A720BA6CF51C744E7B83C3E030222A7900807C08CC23C6B4B5B8718854F4921939531FEE49FDE79F325FCBA9DCBF9CE9BA1FE5D05204C0A15660E694878F043CD01A41482410046C964F294F11953A263E3D2650AA5412C96E851CD34D13A9DA4A3B1E6BDDAEAAB1D5AAD563277E1E2C5A78F96BD6EB55A9B38EADB6E46F8BE3100BE263C84ACE001517240A804E7E51C1052EE3E0937250905FFCF0FF2B0934B75ED1CF5BF36E77FAB00846185380C18BC782A42D820173042CA01E9E13CCC2A3B18F9FB8B89F3BCF16672FE3F0480085A211684891010DE705908133C9CF13C00341C1C28CE5BA5FE3F048008600843452CA03ECF163AE787AFFEF8E4E53EF340786FF74F93A2FF0BFF590E11CF502115090018F5E74888F00FB0FF37004400040480007C03FF19FE5F1B5B8990A25973870000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (80,1,'Phone_(96)',decode('89504E470D0A1A0A0000000D4948445200000060000000460806000000336D91130000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00001F014944415478DAED5D077C14E7957FDB8BB4EAA8179050174560C0F4EEB8C43671C1E4E272BE24CE9D2F767C8993CB5D923B27E78A8D7B6C489CB8C5D801833107C671A7888E4495909028EA655557BB5A6DBDF7BE9DD9FD767656AC3060FBEEC6BFCF33DA9D9DF2FEDFFBBFFF7BDF3783C2EBF5C257B52870917E24B35BD0057ABFCA0BBE1436B8DCF7C3199D5F2BC2189F07C0CBB5B040D0F1BF49205D3600248657726B25F7B7228CF13D921604C6081EF4B5F79ECB0280607CDEE02A6C6AC99A0782372019DC2D3417D7DCC277522F52C8780DC8ACBF16805C5200B85E2F1A9D9A069B56D2D442930220F67832B84368C3427308207825C02A251E22E73572C07C25A05C320024BD5E34BC0E9B019B5E5C2F5FB1A270CEBCF98BD3D23266ABD4AA388FC7A3F4BA3D0AB7D7ABC46B53D2DF0E87A3AF7FA0FF786F774F654DF589EDEBDE7EEB04FE764800C1CB1D5F236C2B249EE3E63C8607C4F3557BC9250140627C35677823B6E8254BAF1A7BDB8AEF2E4FCBC89CAFD7EB32DD1E0F78DC1E606B8F9BDBC6B5DBED5B6373389CD065EEF67A3CAED3B5D5353F7BFD4F6B760B4624C31B6EFCBBBB97E6E615DC3F6CB7D5F57475567CBE6DEBE71D1DCD83F89D93A32D9704107718404280B914605C740038E3AB38E34791E1B1C5FCC743BFBD66E1A2C53F572A55D1A2C12301C0E174427B6717FB5B5CFACCE69F3FF9D87FADA77314954DCEB9EEB63B3711C8EC96BC82FDBC5EBBCBE5681F1E1AAAE9EBE9AE38B867E7670D278F77C9C493F3798A34A65C14402E2A00929EAF11A8868C1F93969E9EFCF4B3CF3F989393739DD4E0E703C089C66FEDE80497CB2515399DBFFAD9034B40A3313EF06FBF5B6330464FA2FBF135F0AD21F86F60DB1E87CBE9E81CB6DBEB06FA7BF7D49E38F1E9E1BD5F34729E22074C3805F6A5BCE36203A094189F7A7DEC8DCB96953CF0D307571A8CC61C8F3BD4E0230180FC0F2D6D1DE0743965CE07C3FFFED39F2CBEEBDE7FB93327B7E09E80C105E30B86073F08526002FBE1B95C6EA7C36C1FB2D5F6F5983FDEF9B7F7DFEBECE810E9CB29A12FB93822E2E0FD4A00107ABF483BA2F1E3E62F5890F7F0A38FAFD6EBF5A93E43470E0019BDA9B90DE9C711EEB4431F6ED9F6AF4B97DDF40C9A40E53730FEB7C565C380A3806CBCA40CEC131ADC0E8010D80FBC12C044603C1E2FC6921E9BCD5AD9D9DABC7EDB86B51F731EE294F10E374F579102715100108CAFE48C4FB41357366142D64BABD7AC8E8A8A1E2B06D24801B0A3D19B9A5B9907845B9C76C719853ECAA0D5E953859B66ADCA6587771D8302172A408D1BA90844B6520559788919B8ADF31B1C4240095055C05B5C2EB7C76EB5345B2CFDBBCE36D4BDB9E7D30FAB39EF70CAE4271179C397068033BE8A0BB8B1191919696FBDF3CE8B7171F1A56EB707460380D3E982AA63C7C1A0D78F786EA55A67D3EA8D46DE7043788CA706CD60F57A7C49055E1E81809A16946CDB77B149F8FF4C0582A150412A32A7D1AB108C2E0525181831C063FC18B65A07EA07FA7AFF76ACEAD06B75470FB673390A01E1B9E40048148F4E9099B1B88CD9F8DEFB4F8F49499EE10BA49103E042DA39567D12944AA5FF3CF6213BE8F45AF085189FC05128D5608A4B0836147EB7C9DA07BBEC56346FB0C115BD7DA08A8D05854A25014341E40471B895CEC050430A6E470BE7118F0D72DE227807DD9B0DD1B00E5A2A2D7D3DBFDFF4D69F360B209CD70B2E180089F1B582CE8F55ABD5095BB66E7B242B3B7BA9DB2368F8080170A2CAA9A9AD039720350707AD70A2A616EA1A4EC38A5B968146AD6637AD4420E2925205091230469B73189EEC6D17526F85FFE2C8D8DECE4E70ECDA09FAE93340A5D1B063A85392110C218D160051D0F1F197D1D85290B2700F4846504C1E010049F006897774B49EAD7EFDF7CF5C2124899E4B02808CDCA49E6FC296F0FE96ADBF2CC82FB8D567F0C8017023ED9C44430F0D0DB19B39D57006F61FAA62BFA365C5CD37A2DAD422082A48484AC133AB420CF08CB9154E3BEC3E637A03465592675556823A0D2381C1088EA34741979D0D5EDB1078FAFA401D1B03C6FC42E6356AFC9EEE4EA42D82918E4131630C7ADD18F49244042FC69F6670B485E769395357FBFA9A1708003BC5834B0980687C83A078E2FFBA7EFD3F4F2E9F728FC76FF0C80070BADC70AABE012C562B533C0DF5E7A0C3DCC562C1B0631841B1C3354B17414AF21830C5C4815AAB0B512EFBAC1678D5DC863D5E30BA6044181800E7EE0A302E5A0C8AE161B07EF411A88C4688BE7226583EFE08A2279783C76201EF900DD451781B783D868C4C30A46770310418A0816AA2024A951A18A75407D1D1405F0F7477B69E7C63CD8B3384520901E0B9A80048148F4EE8F9717F7EEDF5DBE7CD9BF74BD1B89102E046CEAFC59EDF3F60013B1AA8DBDC0B5A9D06F43A1DA074C540ACF36F1BD1702AAD212428D27A4B9F190E0EF64327266D3EE30B3444E73B7D1A3C5D5DA04948004371090CEDD90D2A530CE8525361F8D42930E6E5C1007EA64D4884A8BCF13074A601F44963C0909A06CEEE6E88C9CDC398245094E0198BB4D1605470811B5BF3B90618B20E56BFBEE6C5590200AE8B0A00473D6A81F759A2F5ABDFFC66FEDD777FFFF77835EAD100405C5F5B5F0FBD7DFDACD430D06F019D4E2B189C0CAFF7AD0510945A033B3DEFF62009C2FD08681DF6E67AFB1034D86DD0837FFB249AC20F8C17638BB3B519DCDD3DA0C478E0EEED85A4C54BA077E70E30A4A4823E391919DC013DFBF743CADCB960484CF27980C267FC5814080B75A6A0BC81EEAFF1740D0CD9ECC75F5BFDC23C0100E7F9E240C40048785F2B2A9EEB6FB8A170D5D3CFBCA9566B12F8801A0900274FD583B9A787951B6CC8C73EE3EBFD06A75E2F6EBB31083AB069546A50A9D4A189938C84A42FFA30B0D70F59E1F4F0109C455006F19A14427C50090AC8D9D606F6A626306664C050532398C68D037B730B78910E5366CDE164ACCFAB8A347A28D4E88224EA407F2F98DB5BC06AB51D430096E065D82425735945345A00C44C97BA624C7A7A7ACA871F7DFC1ACACE629F912307E05C63339C6B6E663740C996BFD713ED70DBF4B956A3868965A560C300DD8D8075F7F4C100F2B665103B19F6462D02A7D56A19FBCB972302C074A351CFD9EDD86CD084019BF20632AA4A01FEC46DA8E91C98B272A00B69296DD66C9FF1092C211E2C309AD00BD45CC2E685FABA1AA45307F4F6F7F755551E7EBCBBABE5BDCEA6A6360E048F5CDD282200C2F07E7C45C5EEC7B2C78EFD76C0C89101D085AE7FE264AD50B5F74AA886F7001DA8D1F82505059098102F7B6D143BBA90A7BBBABAE9E611984118B4D9416F3080C110A02C08E32D66CAB8D1339A31D8B721300EAA694070C00DE4140AC6FBDF322570F525DFF18E1D39C8F6E9EEE9C57B3BC5EE55A5540E66A7272DDDBA61FD512E4B0EF286F30220C3FB94E9C6BFBB71E3DDB366CEFA45A06A191900A4ED0F1D3ECA8E8817C8B25DB1A7F32050F025DD9F969A0219E969B2D746D5D153A7CFB2DF8ECBC90AFABCB9B50DCE9C6B82B68E2EE8EF1F404050F9984CA052AB421229514ED2359AA9F28AF9443B02D289CD2DF47E0602AEC7EB8D30011BEF554318736AAB8FB173379C6D8496B67676CF932694D0F77FD9BAEEAD072D168B8D2B59F84B152302108EF79F7862E5C23BEEBAEB653C847A340050A03D507998494BEA9D46BDC1DFDB0DFA60EED76A350C88F1B963C35EDFB9A666A83C720C4A8B0BA1202F37E8BB615454981462BC50B1731320F50856734B1BF4A0A7E8F0D889498908B2364451F13466C66BEDC0D68534D98D017DB6291612D59A20004F379C821E94CD569B0DAA8ED5303B444545C1C239B3D8359215318B1F4459BD6FD032F0EBADEFAE3D28E6089100C0EBFD98152BBE5BF8D4AA556FAB351874C5801A210055C78F33AA888F8D851853B4A4E707B675A8F3BBBACD30794259D87A502306C976CC6EA7954F06E9F422F2B09ABA53503EB10C4A8B0A43E7B9E03DB7B4B6C391E32730E13BCB7821152529190D46184BF070CA0BB892C49EBDBB4806C1B1EA3AE8A79C023FBCEEAA456046AA1D763899C8F0350FC4C49AAC7F7A7E55A2E80961019014D9587939362E2EA9B2B26A6D4C4C4C6990A2890080FA3367B1079E8168BCC974A49520E34B3CA0A9A585510B1D2716B354A2A14CCC62535392598FA6C46CF7FE03ECE6972C981B74DD74A34441140BC6242586DC576B5B070C21D7E78DCBF17FD665EE86035547A0FA641D0CA1C13233D221213EC1173FC25447BD1C6DEDD8FE391307F5671AD9FD1715E441162673FDE8696403BA7FBA2EBD5E0B31D1A6FEA71FFD6DBA189C650190A9F3B0F2F2AE8A8A5F161797DC1D2229CF03404767171C42AA20CECFC7A4273ADA28289D500FA01BA11E1C94AC09256A0A7229A9C9909D9E0E59591990181F1C988F55D7405DFD699850520C05E37343EE8B0CBD6BEF7E88435017CE9D1DF41D292C23D2621F1A6DFFA1C35079EC38106DE7E68D83644CCA204CD9BAABD30C55870FC2D1132791F61CEC3EAE5A3C1FBAB1F7BB5C6EFFB51300D999E93068B50DAC7AE4A10CB16A3A12004AAEC816F3DCF3CF2FBAF3CE3BFFE8F1B0990A110360C19E58B1EF002BB4E58ECD810C74F510C5236C1387EEA8D8CB2AA221F52219291B6534405666268CCDC2969DC57A3619391F8DC65753D9FC16EA085D663466127A51E03B3278C5DE036CFDBDE53707FD660015D627DB77C1FECA2A484E4E81BCDCDC90E3EED9BB178E21B5D2B1D136E89173C08BE6732018BEEBF75D7B747414C4C7C5C2899A9A57D7BEB2FA2742AD28140089EA21EA312D58B020FBAFEBD66DD4E974A9B249D50800ECDCB30F6F6E80F556E264BD24D88A9A9F02F4275FEC64F4E23F0E7FDC11CF8B0D33FE943149A8867218BD64218D88C6A29AD2F65DBBE12C06C4E5DFB91EE38F29E89E291337614C52AB54219DD182AA4D8DCAE9645D3D7CFCF90EF4143B141717B3B2082D5BB66E65B184AE616C7636949614FAEE41E47DA198382631117AFAFA2C4F3FF25031A9E7B01E208CEB06514F5D5DDD8BA969694BC366B561003873AE118E9CA8665A7EE1AC998CCFA5E5054AA0C83B3EDFB11B357D7FF0714601805B32964CC61C9793CD5454C1F83CD93CA2B9B515A9A306621190D9574E0FF9BEEAE8713872EC04944F9A0093CA4AD8673DBD7DF0E1A75FB0209F9191059B366F661D8C54DBB7162F44B01D7ECE170120CAD5A072DAFEC5170F7CBC65D33B84AB6C0C90A81E8238E6836DDBEE983F6FFEEF462C2BC8004085B54FB6EF6459EEB4F249CC087C7941A7D5FA7975CF8143D0D6DE116A5099E34ACF4B419DCA18364CA6827E2F4C67113F8B8B8B6152B5287FBCEF5AF01A88F22857208F91535BF4BD4AA962FB4A173AFE9DFF783F9C6D6C62D73277E60C48888B138C1E08BC4A952FD739D7D874EA0FCF3D7535B19E50A67086A820A1F7FBB3DD071F7C70C27F3EF4D046A542691C2D00D47BCE34368209B9EFD6653704291E7E398A81F3F499734113B044EE1CA987D3FE54A26E696E66BDB21DE56DDFC0405800C4E3D131E88EC766672018F92C87A0F8C14B592A7310757677F7C21D2B6E81D059F400EFBEBF059E5BFD0A3B26C5B5A9E51319E5B939DEF762536BD534A1CCFBF6DA37AF3E751C8DE2EBFDE258410000AED643BD3F2A313131E9E4C993EB317B2C93374878007A301DFF1C39978E3D6BFA1570E51553657B11D58388A2A433E0460240DC87F68F8F8986CACA4AC8CB2F82DEFE3E2651E95CB1A628387CF42882D2CB7AB13C8881CEA237E8A1183DA3ACA4882928A22B02218ACADF3271A1A9A5157EF0E39F31AFA3646FC9FCB92CC87AB86B17CFA9502A30489FD8F2CEAB7F7840E8FD56BE4ACA03C06BFE9837DEF8CBAD372EBBE119E2E8D102F0E98E5DD08BBD9282D78F7FF80F4CDE4917AA82EE3F58C54AD2720088061B09005F768D9CEBF282D2377A02532794422306DB4E54250E810A4952148E1F8FD9B70E55481DF3981040B87B494D498189A545D84AA0ACB8885569793575DF2F7ECD864ADD18F8674C998C4A2C033454D676BBFDB6A25C84EE0DD5D5D0F34F3C722566E6341B6F90EFFDFE5A900CF7C7AF5CF9D44DE939E3566666A4B16C922E2212001ACE9E85835547D9C516158C879BBE7DAD2CB732698A498FD4A0E100E0411A8F329392320AF2F50D6798DE16C177A0C107908AB47A03A8144AA6D7A74D2D8792827C58B37A3514954E80E3B5A7FC5C2D3B0F953B3F4956028F145CF9C409982354C21FDF58CB7E37664C22CCC06327C4C785045EBA47CA9C776CDFF1D0479B37BC21281F9B748C800740543EA4D192EEFBC94FAE9D326DE64A2B26281448F331B1998A6A80CA04E100B0A30EFFE093CF581D8696F9B367C2EC19D382E7F2A0DCDC7BA012066D56CE6543395BB69887FB500D293B3D05F6EEDB0F3462AB3518D9F7515146966163B0C3586009524E4425345C48DEA2D2E85979205C5C89340E5152B960EE2C764E0AD47CE0A5A48E7292E696D6C6979F7EE21A124F42EF1F960E538A00F093AA62FFFCDA9B0F2B34DA3BF0800A2B1A8AA90C4494E422B9655E6E0E64A6A5B1E0C403700013162A3988CB4DD75FCB5407EFBE878E1E83DE9EBE910D300200B426773F7CB80A92925351051950D7C7C075572D81D56B5643EEF87C68EDEC669DE04202BBDCFED28C9C06DF274C288142CCEA29B9E2032FCDE0EEEEEDA14EEB5DFFCEDA9B4F1CC62085715DE8FD21F385E46637C46FFCEFADFB2C83B6C4F4B41466789A1ED8D2D6C690F581815E81D92AD567C661765B88B22E3E3E962552E2B1B568A41FDE753BC4C604921ED2CEAD42A9F6820008E2ECC0F718E940E176427B7B3B44C7C52325F9C63E8802CBD1500731D674F50DB01AD34800F803A8B49C2201201E2967FA9472265F837315377498CDC804C3505353FBE95F5E79E9C742EFB70ABDDF231D2396D67CC85A891BDEDFB2B3B5A3338171341A746269319393873129A1F22F15BA6C433606849500C1EDE5283529E2D3422582DBBE7323E369BF72686E45EF3873413D901C9412A176EC04FD8383D069EE91058C021F71BEF8F795D3A6C2BEDD1534320EC6E85816F843A469504C1B1900718ACC9C99D359B923CA18E5E77DFA8E2AA154F7420535FCECE30FCF1BB6DBDB05EEB70BDC1F322C292D3BC410FFAFDBB8F9B3B64E0400F99A5C8AADB191669E8A81E8643DA5E53BE1386A781F00437027EA658AFAC9498970F30DD7A16BC6F94FD2DDDB0B27AA6B235052F20064A0A7C5C5C6424545050CA3910D51D148035E567A207EA741109A4F24AD1BD18D99BB3A416F8CF6CF92E6AF414A3191D014516A49513EF37C0F17781D785D0DD8C1A8ECB1BB62F7531FBCB7EE8F54E5107ABF23DC1C21BEE4CC66B6614B7EE7DD8DAF622F9B40128E0C4F9EC0D60210631213E0BAAB978209B3D08F9176366DDD068BE7CD616A631E6684BC76263570E47835B8F0C2469BCCF927EBA2B13B3B3A4089E93CF572AADB1420FFEAD40AD8B2650BE41797424FBF450030D4ABA4141309ADC9D120D590A64C2E4331321903AF221078714D1E4E1E86197DDB8B4F3E4AD2CF2C70BF7DA4698A720050ED3565E1C225136E59B1E276A7D75BDCDDDDA30E7882CB0F0419A3303F0FAE5EB4107B690AA4A222E017DAE7281A9F800CBAB93065857000C80146895D7D6D0D60B20F51D1265663A2CF697C40AF5143E5E123D066EE058BC572618158020029AE195327615E500CA9C96382022F256DD534A512E5F0A6F5EBEEAA3AB8773797748D384591A7209D4041096CF230C602E16FE3BDF7DD3F3FB7A068614787398964A90800BF26D79B58560C375CF32D0C7C65AC38558D7A9B0C70BED9D0019513FC3D494B52195427A2AAA41430DFDC22178B53B44DCB8CA99361FBF61D8C8F4DF189E8BD8E8BA2847273B2A1B8B000A6A3978B5EC5067F9C6EA83A768CD1F0A953F57B5E5BFDC28F88758592C3F0F92667F14158233E4E444A88AAA0C27694101F747979F989CB6FBF6319E69DA52DED1DDA600002F1823CE3961BAF8729E51341471962A43D9CFB3E263A1A012D8103070F82466F4485D3E1078032EC21FB7070D0E402675767071890F7693FFFB923F0AA70001851544C2A2B8505736662566F0C4AE248D9D120BCD56A73BEF0D4E34B2C03FDCDD282DB8813B364BCC028CC783309EB28E133F1F152DA47BBECE65BA7E417952C6D6EEF4A1DB00C2802B1C2475173512994621A4F757A1A0BA020EACB05C203C073B642089AF50D0D983C6951FAC5B3803B7FD6743888D968A7B91BEC0EB7CF0346EAE16EF7280108EE24A4AA686C9A545871617E50B9A1BDA3938DF4917D77EDDCF9D887EF6F784B909D16B9A42BECCC38C9BC1F2DF71CAFF868A991DBE681D0C525269A6EBA75C57598B4979F6D6A36D0481081317FF695CC65999BD20DA257E8F47A484F496163A3EE111ECA0BA2184E5A9AD02B4ED7D73190A9D440C7A3BE35262981D56CDA3BBA90F66A830B70E10088300E6566A663C01F07D72E5DEC2F43D33E44399FEDA860D975535353CDEA679FBA8B463DB99243440F69F000F0AF12D0704FB4EB640011D77AA1B127DE67CC995B54503CE1EA732DEDD9532795298A0AF2FD0090217D03E66ED66328C94BC0A489CE3A320504F7583AD620E6024A545A34E8429F2F9E3F07766CFF025A5ADB20393D83C65D61B44FE5486990B669CCA204A5F7354B1631792DF23EEDB37DF71EA6F9876C76E74BCFAEBABEA7BBB3515272F09CAFF7074DCC92BC5640C979849A7BCA5DC701C1832136464F3A9DDEB8F2B9E71FD06A74C92E4127FB0160DE20AC913EA251D36765A681017BF4689590B83FCD5DA0606FC7804BCF1050016DB443A7C100785827292E2E8089E85954D3E2032F55422B8FFA2662EDDAB1E3C96DEF6F785B08BC03DCA4DC0B7B468CF3063E404BDFF3C0BF72C0284753854545C9FF74DFFDCB0D51A602EBA04D251ADC2578819B03863EA3C48AA69F90C4A3B9A0AE0BE46C794F0A6C9396D7E0F1297086AFBA7AF03A92602C2A9FDB6FBB990D278A81D78C59F8E60F3F62FBB5B4B656BFB4EA891F089ABFEF7C49D7A86647CBBC5E46EA155A895718B927E2A38466D06834FA7BEF7F60515E41C16CAB75C8E4CB1FC27B0505550ABED99959908660D080877B1400842F6FBB61EEAC2BE174DD4930777743766E3E2BABC88E27A3C1696E0F510FD593C42A27F13D8D84D120BEDD3EEC7CF985A7BF636E6F3F2709BC2E18C5F3C291CE0D9516EE9492176468391A121594490441F014CD9C79F3C75E73FD8DDFC6CE9E63B50D295C2E9FC103DE1008D82275D1B35CE3C78D85E494249661338373C6950EE2872F6FBB617CEE38D8BB6B07A46564811B8FDB3F60090195EC41FB15E6E7C28A9B9605BE73D340D34EF60021EDB37BD7AE273FD8F4EE3A817AFA23959D5F767ABA54BAF2EFFED19E47C68ACA496332C518FEFE9E7BAE4E4C4AB9A2B77F402FD2905B060017172FA80C9D9B93C36A403440E49604CD48F20B9A8D3D4C4FDD7BBDB25E958072373323157E70C7F7D8408BA87CEAEA1BE0BDAD1FB2BFDBDBDAAB5F78EAB11F09AAA74F08BCFE67012E090011D093F4953446090021B90401B7F4EA6B4B274F9B7E95D5664F45B75604807085046C3F7551EFC6ED64048266C851E18FE246A419763829AA54A9213F6F6CC840D2A0D50AAFBCB19649CF610752CFD34FDEDCD5D5D5C865BCF6D104DE8BFD9CB01408B524501B2481DA28554DF41B534C5CD4F537DDBC343A26BEDC62B51969761CEF057CC0764B6286DBE53326554DC76567B17A3D3D4DE91A518A06733F8980ECEC0CC84C4F83EFDFFEDDA082E2DB1B36B1E14FB2D5DE8ADDABB6BCB76E3D177845EA715FC80B3B2EE6AB0A40F28EA070F2D5388247D0FEEA9CDCBCD499F3162C526B0D85FD48514E7F0EE10A054500802929FE5EF09292131390AEC64094298ACDC0A3804E57EA767B4300A08123F2A83B6EBB85CDAA13977D87AAE0D3ED3BD976477B47F5F34F3E7AAF403D41C38C17D2FB2FE5EB6AA4F1412D49EA8C3259B61408F6F6ABC2D2B2EC4953A62D72799579DD3DBD1A3168F3744431439C0218C94235A258530C9862A221CA606453E5F372C7B2D91B34ADE58A2993D8885E475717BCB6769D4F01A17C7BF99995CB3B3B59C2C5979A471D782FE71BB31461E4ABB4DC21CDAC83E284D054E553A78FCF195F30CF36ECCC36F7F4EAF824EFCB2C6598ED4E993C111A9B5A313F6865136B63D023A6964FF28F82EDDB5DB16AF386751BB9C03B6ACD7FD900184135A938AF0857EA906E07D193D094C9E999A9E3F28BE7825A9367B15A639086145F16809ADA536C7635CD68A009B6932696604CC986CECEAE9AE79E7898C6773BBF8CE6BFAC0044A89AA46F51E4C1900342270182BD0A021775565E41617A66CE64855A9D63A184CFE1508C06009A805B535BE7EEE834ABC4B9A6947F94951439573FFBCCF7DADB5BCE70D463FBB2D4735901384F52A70A132BE43C432E4E68B8DF0BEFDD50A88B269617C7252496B84195611F1E8E1B7638352301909E9ADCF4C2938FADC92D2CCE2C9E587EFDC0E0609A4EAB571AD58A67376FF8EB06817A82C678BF6CEFBFEC004498D4A9B85EAE9380A19378C379C110DF56834EA2898E8B4D4C4ECDC88E8E89CBD0E87463F0D3580CDE51E9283D0FECF86465476B6B3F04DE7E35342EBF28F6CCA9935512EAB960CDFFB5016014A50EDE2B349CC1A500C881A1961412F9D7258B6FD7158DED84E0578EB984AA669F906C49CB0DEE8BF50A4BC5D7E575CA237885140C1E10AD247EE8B8BFC301213E870D82B1C537F23A21F84DBD76C1E87D9CEA19BE58D4F3B5036094604801917B1DB24612B0D512304030A6433036FF4A018FF0995548B6066194AF22FB460320034438304602443D42136948A41F11001704DE092A7E6EE78CEFBED86FCF557C535EB53F0218E100E1B99F07898F07FC8BC1F938E085D0B7B57B2E26F57CE300380F18D2201EEEDF28E01B48826ED01B4DB8ED115F37F37F1280510222F70F47C8BD225FEE1F8538EFBFD8F1FF008C0C861C2800A1FF4884ECBF2570290DFFBF1680510273D90C1D6EF91F9C9ED1534DA88CCC0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (81,1,'Printer_(128)',decode('89504E470D0A1A0A0000000D4948445200000080000000770806000000CBA9486A0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000014DE4944415478DAED5D5B8F1C45968EBC547557F5B5FAEAF6A5DDED6E431BECB13D3D03B3566364C9831619AD760701A3F90DFBB06F8B9058CC138FF3B2120FFBB2122B0DA6775720A1456064EC65D8B519F3C018ECC15C4CDB60D376DFDDD575CBCB9C9315518E8ACECCCAACCAAC4B771E2954DD5599195171BEF8CE391127A224D33449D8F2D24B2FCD9E3C79728644E259666767FFEDF5D75FFF97B0EB51EBF165262727A59999991D915ABDCB850B17EA528F1C75F5F69608001100228900104904804822004412012092080091440088240240241100228900104904804822004412012092080091440088240240245B4C94D3A74F87F6F0FFFDE31F3BE76EDEFC9D699ABF4EA5523B4DC320F1783CEA750729140AE4FEFDFB64697919FFD6179797FBF68E8E5E0CB34E29CCA45000C018BCDC60FF0F0F0E92D1D15122CB11F130E1FB7F6565C52A7717164A6F1D9F99498559BF5A57846B1AC9E572A4BDBDBDE19DDD8C827D93CBE7CB9A1C769DF50500505C369B8DCC80836432190B04F5945001A0EBFA2600E097ECEAEA6A599A0E53D2E934C9030370F5995B0B00F0E5D0C91918188886BB13006090C88AB23519204FBDDC66B7C58D620DEC1B224924DED6B6451900BE5C164C401800D80AA04200B4271225069024A9B501A081D75F8A3741F9A8A45588710DC388F8DEC64146FF488DC5882A0C9C2DC30028ABABAB1630943ADAB956600DB4FF1821259249BEDFCC2D0700F472D7D6D6484F4F4F34EC39D9D8D8B042401C1CFA566600A47FB475DDDDDDDBCAC1AB24EBEBEB16030800D87A0C80B20C7EC0CE9D3BB78D73E74590151100D8673AF39D5ADD09D4392710C31B264B4B4BA1388222589CFE97685B9CC055A96DEC7389FB4E7C1D6EA0B5FB0CDFC33500348F1A00000B7DB27CE6CC99A1175E78E16E583AAA7A31E8DD77DF45F0FC0ECADF40790CCA3E7C5E2902D075159EDCB1E9CB42E799B4F33629025E0D4149FC3526AFC4F21EDCC495D67DDCFBE2F7949CF8D5E6599E3EA7CF3703BC877DD6D3D5B5661312A6A1FC09CAFF41F98F679E79E676DD0000CA1F8197B7A0381EFB8268D6ED9EEDD219D576BC19F03DA41A7004DC3EBE0D3DE02FC5213C74915B509E0210FC25740080F2C7E0E5FFA1B81EF9B20E5EED262AADF085831E41B58CBA7A2BD9150010317524129554836BC83F0710DC0ADB07F8D74ACA67131B650068A251675B5748CA77ABCB6B3B700D855406002EB0FC33947F0C8D0160F4FF065EFECBCBB5F7161688CE00E0F30B3744C9358030B0BA1CDEEFEAEC24C343435EBA3D8BBE18B0C09DB018E09FBC5E883E80C13977412BDF37A06A0461D84A76FB2CEB3D4700336D7E0BE5F7810300467F1FBC1CF30300B3C651578FCEAD55F94183D0EE339F49224F87020090BF85E279021F977E5B69D435B4AE0A4EB0E48FA58FC3604D8219D8081A00BFF2D38A0207005F2321C451E7ABE36B0446907599FE26CD3099E097502E040D80FD5E2FC4858D0297DC68D669D4F9FA2C00107A7E668D20E497D53DCAE1300030E9F5C24C365B648010465DD09DDBD011EE118428B846E06309FD70A03E009DF61DF3FA505CDB660068D551177A5D766B022EF721ABFA48A60D160020E37ED8228D2600001094171CD6A80B9D69DC94ECF179ECB3FBEBEB7E00F0280C5A051C413D280078A67FCB0780C66E0280CF2F1C9442DC3A3D741AF7D80E2F75AD63C2E8C8889FF98087A15C0D0A00FBFD00209DC99403A045475D28755509C2F574BA1A47B03100C88209C8332730E45157EDE8AFB6AE9A95ECA3EDFCE756CAB87F00FCA13126808F020218753577AE0F100602A8A0DB01EF57C900A4210C9061B9FF3E465DA84A0EE8B3A0EFF1731FE60C360400E04D6226C25E3F3380B80E50F5176EA25117A8926B042186813E6504D76F201258AA950186FD8480CBC5C30D1A3AEADC3ABD216C12000833FE4D00CA2E283503C0D74E4E4CF82C94EF710F65D47952721D1459B12E9F2074BA0F6702F17C8598EA6B051F07EF95BA02A0C4008DA64F9FA32E3425FB6CBBDB7D1809F4A5527E01509B0F6018C6203BD2C54BF6901D006A527203475D18EDABA51D0B0B0B24D5DB5B51072C931A74B7A32600C083A477DE7967C04FDAD8EADA9AA785A086757CBDEA72DB1B50655D8B8B8B64FF64E5889CAB7B087568BA344675533E29E622FCBDAF3900F456597D98FB5F41F932BDCE0585EE5F965DE6A1132B3EBF8A14F94A00B71B997EC0C2CBFC4F3FF96A1BD4F777F0F2A21B085417E55B7F2693C93DAA0FC70373D83B92491249F09248247C1DAF038EE3101D1BA61308DC342B510074B63D38B1A2A2ECDEB3C7AFA71A8957851A862F00689A96A4246B10871578D585FAA5A9A929B9B3B3B3CB0F001EDABFBF29F6FE6F45C12800F4E1070031A64B66824416701BAAF2A953A712F178BCD3EBC18E68FF139537304452A558C7C7F8386433168B291F7DF4D1CF4E9C38F1672716505DE85F06DBDF8E5B9625C95B5EEAF7DF7F4FAE5CB912692A24C19D56478F1CF1754F56D3C6E0E50BAA7C496401D581FE11660A507FFB2AD08EA1EB56E5FC2E5E3B8372FBF66D72F1D2A5075E3956469CD39AD9B941BC878CFF4BBC778EFFD3E788DE3EDB014C84EB4990F793F29DC44EF738D551B14EEEFB9BDCB3F88886FF7FFA17BFB03503FC6E6A4B89C014C81666A18013790A65004F510003803C3030B02B4F8F2F652030F8FDEF420E1F5E872B8135890BDB48CD32141BD8465C16665BEE24AE3DA2E2D10F43673C5728242900743B33E0068058772A35898715E03C34A6265B00604C60C30285B0CEB7697150900AA1961F413DF0136D1237DF82CA4720A0F219931A9AD68BBAE401C09B01D52EF4A3454DB4B74F6A501956CACEAE710400FC8F6C51CF038EAA5148D300A64A60A33E0AE8080A260AFF971108F019D3112A1AF4D143019077350152B9A78737C4804AF61428E2B0629D33034E0CA0D90020A2EEE0DA887D2C09918048FF0C0008083017781A571B0580269A013B0650A80988C34386340E00A85CF405D8712D2208AC53411CCE058A40118C880B6D16CDA3B28B611B511000F0CA1800F4850088737A95DC7C0066FF55EB26D3ECB7E81FB37CA829D86402B87905CC03A8D504485233767BF3B45113926D1450F6BEB131D2D5DD4DAE5DBD6A0D42853100800100D3491920C601A0140EAA36F69F01A00D3EEFB11880B10002406000119D61F800AD008A7A3109EA809FCC4B269364EAC001AB8E3B77EE58859DCB60B181AE2739003016D0CB1840B0FF0ABDB81D467BA7E574D082F4AEBB31404800D80AD41D14B0190BB33EC0B0F0EEDDBBD6DCC0D2E262F1681E1A0114201A007DE0D46C823303123FB5A13AD87F04401C2A4A3013A00926C08E01EA7DCCE976342FCC112FCD0B409F5F387FDE3205380F634DFE50FBAFE0E61CD02129EE148A537D97F901763E804A2F6E83CADA5808C84A6922C8EE30237A4D64CFC3633B5D382B003FC9609FD330D0E000A001030058DA1C0060B1809B0FD00E7422B3932BD98490410F7AB44B7E3004746E556924680CBB301B9AA32A060C3EA5B85804BAD11000E82F140190E000A0D84501BCF263D469C0D12FB3B36BAD573A13E8B48D5BDF26BF03D0A8F38BA5625C5FF65E4F32437E3D7D95B4C57472E92FFBC88D9F8AA789211070D00200621C03B048A0E4088A6B8B0A058515054048219714CFE60028089C4A24E10240ECEFBDC30BA4A32D475459230FEDBA63BD87FAD22963C3E055D980E618A0942320731180CC87809401A4D2EC1F9D01644EA0F56A532209997D84FEBE35DF050A2FAA706EBEB7A42B3668B52200E2360C606B02580818A70C2019FCEC1FB7246C4782AD72B0FBAE5DBB483291B07EBFB0B4C005EF5FBF7EBDE91940ECE385B54E72E6A323A43DAE919574C23A619E818332814207B4E80348621420D30F1586166400764237F3FE5DB36E5BE86CFF1F7EFCD14A6065E96ECD1CBE96399F361B6B327995640AB1A25B4FF5C4808D7E1C37FAF9C92089F7017833C07C8038C4FE123FF5DBACCE916F4F1ABE13E62DE05136ACCDD93AFF6267E0D18770343E636C0A009538AC07F00090391380452D14C3880723BFC22C5CCCFD48F3A61136DAF1302B2CD8B198FAD6ECD2D7D757EC7B8722D90C48F8AEFCA056391010310AE041605D2C261E94961DC9831F7CE00B1E6BEEF5A7601A2548F95852A95431C5BAB8665ECDF6EBBA0AEEB5181F1B2B4BD8104B8925B8010AA1A0C49976D5CE0914A380D285D02986A228B235C7EFC1CBC78EDC0D0E163A57376FDE6CCAB010CFDDBD75ABFC48FDC526563C2EE88C8C8C58452AAEEE7932133ACD0BD848A7354EB7B2A0EF4D53C1FC854A7A7D3D0FCA2C33056EB69E4D030F0D0E5ABB58D1AE6287DF9C9BB3A68923F166E7878787C9E89E3D965942B692B8E4D34A00201C3BD35F68CBD94CF6D9AE05C8E2055F7EF9E59F7F76E4C8AF143ABF5CC9C9E33D69DC4EF6CB4387C8C18307CBA790059BD3CC336F8D982164099D28172F5E243F42B4C24B3E9FAFA4FD9289C663652E5FBEFC27B72E576D9CC15216F3A79F7EFA19C4CCD3BDA954CCCBA64B5D18E5FDFDFDC4CFAEA25652543DEAC75F59E701607A61000A0034D92B4B4B99EBD7AF7F43B8F57F270088A125161D2A2CBCFFFEFBFF7DE2C489E77A7A7B65BB38948F0AC4858AA1A121D2DEDEDED2CA6A643BD1148852D107A0A67809947FF6ECD933780B29E602B2AC60570098F4229DDE54803069F1830F3EF8C3CCCCCC3F2492C924FEB6ADD3F624B11306C117509B70A3682341E5A7EE11E164D04A0C409D3E8C68D6CE9F3FFF9F703D6ED2C8732030884352A821148DDE880E840276C73877EEDCBF83FE53870E1D7AA2A3A36307D829157FE61C15ACC22BFBC97399B20186847E3632B632558725C89ED887EC88381E00F8772947A338E76F80D3B870E5CA95736B6B6B0B548F7871560081EBC6105EF978230B8E351A166E5CBA74E94D7C03A2836E68602FD8A91DDDDDDDC30084244D4454C054C87D7D7D49B0FFDDDB415161B615FA70EDDAB56B196A920D2CF4397A269359989F9F9F03B5ACC0DF4B1C8BF3BA441D3226E04D81210280517F815E8C37B5D107E6050711BDD17528B7016D5769E861492C168B43A33B4F9D3A750C00F2F3C8A6D756FFD8D8D8DCECECECC7104EAF41C901CDEB2E47BE9836FACCD092A37A34440630B99B754EF919FAB92E4E1F3AF91F38FA41DAD03C4C4E4E76D52B0268159B5E8D1C3870A017FA330B6503FA770300E06542C514D83C4DF559A045174D80C9D14281A2254D95AE910749046E930F72318C9513C002B17DFBF6758B11C076B7E9D5B41306520ACC2D8EFC0D645DE8DF82AEEB26715F7D679FE9D494A7A929C88B8EA02ADCA45100205AE26CF6D40B0048F13C0115746F4283137BF6EC49D5C20091A92839829D6006941B376E6C80054883F2730002BDC2343B0F803C557E96F3034C3B06602CC04C00DB52BC298BC4890440FFA0F336E9E8D1A33BC1318C47363D98FA4F9E3C39F4C61B6F7C058E1EFA5D19605BC30303989CFF96A3858F044C11003A6723721C00D44A0000FB24618191AF251289D8CCCC4C7F2D134091A92897E9E9E9A1B7DE7A2B0761389A016402319C335D40A0517DB24840A7C5740A0359ECC828441623804DDC2FCB08001CFE0634B2E3E0C18343AD921BD00AF2F0C30FEF84C155804185CE609AF303880716D03916286C8A0230A4A0AB4D260700998BFF2B460018FE81F2D59E9E1E0918203F3A3A3A1CA92D38191919D9DDD1D18176BFD0D5D595CD175784DC1C4131B2D3C9E6EDE1B64E201BF105E17F57A1F48FA2024AB5C1C1C11D91DA8213F0A7FAC7C7C713DF7EFBAD512814F2E00BA02368C0AB491CCEFEB1990FD045FA2782724DC117E0670473DC44C2A68294D4DBDB9B0774EAC00426FC3D12A92D50919E7AEAA971E85F03C0A081B39D8792E53C7B2FA5C029DFF680083E12900453E0DA38B0F7722A9592A071E6D4D45457BDA680B79340BF4E8079C5E35EF5A1A1216D7E7EBE70FFFE7D2FDEAA21CCF36C0600F50324EE42C2CD0012370710EC93D4D7D76780FD8F8303283DFEF8E3E391BA42F103F6C14093707108069806E656F740FFA6008292F29D0E89E26F90884B220113503E3A7EEAC0C0808919A86320DB4D391F7FFC3179FBEDB709386A646D6D8D800964E95856922C66F8608EE48E1D3BAC153EBC067F590585BD8702A39A1C3D7A943CFFFCF39BEA00861D07DAC7A97619F304E0D95E00203A84749B87CD4191020BB01B2A666D416324543E146979795981D7BDDB0D00981F814BB6C78E1DB37617411464A5C8AFAEAE5A295CB81309FFC74C644C8F43A0ECDDBBD752385EFBCD37DF9023478E90959515EBB04D3B8191BF13FA3A098A97718615CDEDD75F7FED754AD869AEA0DCC673C8301DECC6A6D2DFDF6F02F59BE9745AC62367A061A3DB0D002CE9E5ECD9B3E4D9679F259F7DF69995D0095E3B2EE6940E6D403640E561D634E6F8233050F9F8431008143CDEE5DEBD7B4EA1B6FCC4134F4C2105A0A9053099AFBDF69A98C721964DB42FAE24CA36B36076623895471F7DD4A408C57B15F054776D3700B0492FA4F34F3EF9841C3F7EDC52262A19F71B601A3A7E86231C158CB992E7CE9D23870F1FB646FCD34F3F6DBDBF7BF76ECB34386D539B9898980220C4D10CA08979F1C5174D3F5291017CC726740609CC3E36280608EF027B36B0DD00801B4C50797860D30F3FFC40AE5DBB56DA9FF7F9E79F5B0A9D9B9B2357AF5EB5DEFBEAABAF2C70BCF7DE7B56DAD7175F7C6131009A066409A79F8905F3FA10E20D7C0C19AE0BE4948A9A12F6F04BCECECE4A972F5F56E0EFD8638F3D36495AE78CA6C064FFFEFDE4E5975F0EBD1E50FC048009776C29E07348AFBEFAAAF4CA2BAFD4B47021D7DAA80F3FFC10B385E55C2E1783513011056CE10998D9512849507E6C7C7C5C0EE299353F647A7A1AE94B01474705DB3616A929D468437DF2C9271FC28537082595471E79A466B6AD39671B9C1D09ECBE94C964E437DF7CF37F800DAE43F8D30B5E301E342947C7C6D41E62429481CBEC1BE0372C8293F81302013F029FA2F10040C1F97F0081FEDD77DFCD8303A34048D803ACD046B72647529B9830E20DE8DF0C389B8B503652FE7E3D345C0080176B82E275B04D5960815518F12AB0C0069E4DC34E198BA4A639069CA0C3019607165883D7F5783C6EE5F68109301B0E0040A3010DC385A334FC7D0FD09AC1CC60F45469A420456AAC29D43681F2CD582CA683E2B30080FB102E6EC0C0D3C004D40C00A996F4279C07387DFAB4048D51C0298903F5E3C1523160021CFD12862A910A6B13184C968240F1C6C0C08006E6B600250BFD5D8010B06C6DBF11F30056E5108F6243728B8B8B1A8627D0384BF138E31549A062E0DE908989091D473FFFA35B0D6100FE391408EC5C01E9B9E79E8BD41590CCCECE1236E58E82933F763F02598DFC15CCA645E8DF747C7C0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (82,1,'Printer_(24)',decode('89504E470D0A1A0A0000000D4948445200000018000000160806000000DA7D5C880000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000002FC4944415448C7B555CD4B1B51109FDD6C82F930BAA901A32018BDD4062F422F157A6BA4C41EE241BCD8BFA0F468AD42F12FB0A77AAF9422F6921A13720BA56091D24BF110856E4A4CCD87A6E6E3106392EDCCEBEEB249DDD458FAE0B1F366DFFBFDDECCFC6657906519F4637D7D3D383737F7166E30363737832B2B2BBB7A9FD0BEC96AB5CA838383969B10D0D9769F00FF79FC4160B7DBC566B3093CCF7705D46834A0AFAF6FE0AF04036E77E0F4F4144451EC8A80CE788686FC68BEEE48705E2C422E97A37C7645F0E3E4048AA592718A767676EE731CF714CD8789A323909249005418558D558E6C4571CC47B632697D717101783E180E874324C6402010D708D6D6D6F8A9A9A937680ED3ED356015547976F2D19AE3F99E5B2ED72374DDC139AE114C4E4E527186C94EA7D3AD006D20863E5C6304E09B982098B1582CE6F2FBFD0546808A61D5AF56AB903E3E6E016901BD868FD4643299E8E945EF6F827ABD7E1B27A45229384C24B4BCB774394A579F7F5959AB3E50FCC778416C54B2EFA2EB3323181B1F7F6EB7D9A8076079799985AA4E3AA4D994062515EDEFD4B5D96C86D1D15128572A4F70EB2B015F70BBD1E840E1EC0CBE4912A00A1848C7418006AF02B3B390C39E7089A28BB02902532E9BEDCD64B390412DFF2C1474385C47125022D28F6C2603627F3F5CD66A3D844D041C4AD35AC4062B63A3909E8D86D3E964692897CB867B2A950A54CB09C4F2D0079345C0E7F3F9268F95B73B1C303232C236E90BAC4662C33AE1CD589EAF1A168B85EDC99DDBA05ECBCB6A04F06E7B7BF7DEF4741095647ABCB8085EAFD7F086EDFF0FBD7F7F7F1FBE1E1C40A9546A7CDADB8BA98DD6482693EF7146E9B2CF96965EBADDEEDE4E353622A9D56ADF5757575F28CB3A6133029C1F29553E9FCF865D6DEFF653AD0E87C3419FE00F6ABB3002BC8D8C394ED3868D8D8D077C17E89148040AA83A411058540B0B0BCEADAD2DF3FCFCBCA444DA1414E3929EF1787C4892A4F475095010BCC7E3D1948A671BA8341FE21D5EF93F0885426194E9977FF945E2D720353333A3AD7F017CFCB12A36F54CBD0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (83,1,'Printer_(48)',decode('89504E470D0A1A0A0000000D49484452000000300000002D0806000000E84AE8C20000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000068C4944415468DEED584D6F1347189E5D7BD7766CC726B613077052488A22418362854A9550D30B91282267220EBD50F5467F41EF88737F40B94442088450D520404AC221AA425BE8A505844268704C499CD8499CF8DB7DDECD6E9875D6F67AF3615562A4F1AE6767769FE7FD9E11CAE532ABD7EEDEBD7B3D1A8D7ECF0EB04D4F4FFF70E9D2A5EBF5E6D9CDBCCCEFF797C3E1B07C9004BC5E6FC9CC3C91FDCFDB47021F097C2450BF094C14DB0B85C28181CAE5724C96E5E366E60AF5F2C0E4E4A453B4DB37BB221116EEE8680888991C63D4DEC6622CFEEE5DE1CBB367A57A734DE5817C3ECFD65657593010D81309D723964C2659B15834F52E530432990C5BC14B23076446CBCBCBAC64527B7509CCCDCD316F6B2B2B420B07E5078BEFDFB3168F6777041E3D7AE45B5F5F3FE4F1FB233968606363832D2E2D319BDDCEDBC256E7CD03BD54FA50058882A0339DF24E7BD299541E425A5B5BA3EF08B76FDFFEC266B3C51D0E47FAFCF9F38BA69CF8C183076E448131DC5EA4E76900174471EB4395365C67CCE839FFBD1D63156B2549627E9F4F1B9982602E8E8C8CACD5D400C07F87CB88F69F08942151CBE02DCCD3EE5D0E074F604814C56F70FDB12A815BB76ED95C2E97AE6C4E439D053209931F354D52937E0D4279978B1DD647AFDA045A5A5ABA31A98B1F4B217C96380DD404DFC0D80EF006F3B248683A7B1784E8F8F8B803FE90352400A01181733A6AAB448073564BE02DAECD483BF298889CF409AE2F0C09C0C622BC9391E44903D524B6A76306CF2B85A98E1DAF4A00E02395E64319D8AC09E822CB2E08F1EFA18C8C50CA13E8A9158574041288FBAB70E25A1FB03466F4BCCABC04B2727B2854A9819D04F040B877EF9E8E00252ED240A31FDD1392EA95B2722818E4ADE438612DAB13780D086EB77B5814F51576E4E851D6CC46E50B36F83C810B8455E36BD7A48FD024757777CB3C81CF4E9D625F0D0D3595C0CACA0A032E9DD55CBB76CD07C849D282A601540B62CBDC9B370A632DF34E4C4EB2172F5F322D166CD356EF5995FF4AF4E0CC42A8A887A83EE2038350E3FFA99327956252D802A938340851AE4AD16C8D80D8DBDBDB4D0EBBB9B9C94AF07C8AFD3954A09B2825EA3615A06045C41C39A3F545E0205F24D204DEE174B2778B8B47F0E82F8AF41A011BECBF8FAAC08D745A095D4480EE692F60B9ED01B13430A45229E6831632D9AC52ADAEA752146C2468AA6017B6F44B29EF04CA67B60E12448054B88EC5A49146A5B697C4C80248B01EB79B65704FFB6514988755CC9B9A061C1470A8E6A7AED43E94CA01DEAA068CB2A895B5F47D22118FBD84F465E6F67809179990137DCDAE0AC201A9776631991896D54D46B154B20C82D66BE18F34DBC8065F57CEC01A684F3ED0F30F9BFB37C8D21989300655028246C0592816DB682249BF64B0F9B022455996592B481001CB822012C0F1EBDF11C5911D8E3C11F2A956B39DC864A8494239ADB34DDA4C2821CD02116C031573DC8D209C88386D6D6DBA6D2909389BCDD249B9CC6B40BC7FFFFECCD7172E0CF266D30ACFFFFCCC1916E9EA52FC81970A0F4AA8A27E669003AA11E2474435DE2F2C2C28F74A3DA67E87DE373131F127530FE5B64B89D9D9D9B70BB1D822E26C48CBC605985417C00F0F0F5705D8883D37D228FA8D8D8D31F24BED8C88A49FCB6613F3F3F30BF4972740E725AB77EEDCF9C9EFF777F4F7F70F40754741C4D5D9D929070201713FC1565B8FDC9487FF14B033CBA1A85C78F6ECD9CCD2D212815F46CF69046815D9479CEE93C9E4FCE3C78F7F53EDD8353A3AFA6D3018ECDD4BB066D7228AFD72F3E6CD09D87C5E7301B5D3110B39585923407F6294F878934614F1421BDEC02E8E14776372434343DE1B376ECC81C006E7264420A50ABD5CA981A446409224211C0E078E1D3B76489224D68C363030D00E2DC46046AB1C01BA667802D4F22AF8B4B618BE60BF72E5CA09809759935A4747C711986F0A04122827785512DE9C524ED30F42535165B47D5C71FAF469E7E0E0E0A7FB05EEF9F3E7ECE9D3A74A58A4A8475AA684E772B9980FF9E7DCB973E403872E5FBE1C181F1F9F9F9A9AAA3CAE56A290C8A9A5A832533AC26729140AED1B814422C1E2F1387BFDFA352526E5489D8AB657AF5EB1999999ED7910E299BEBE3E51C5A7F502E4FE218CAAFB4B9DB75DBD7A554022EBD92F02D16894F5F418BF9EDF15228CF743138206B8B2553D9D863444C4DD3F9E3C7992C12EAD295E0CB3CA03F82C3464AB36A72A01384FFEE1C3873F6333310D02423308D8EDF6627B7BFB7B84F142C3043C1E0F39F5EF50A70D12680A0124D232CCB8A0864DC3F61F69A6742E6DDB81FD0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (84,1,'Printer_(64)',decode('89504E470D0A1A0A0000000D49484452000000400000003C0806000000D689BC640000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000009324944415468DEED5A5B681BD9193E238D2C59967C4B225FEAC4975C49D27583210442C1BB8440A05997F42114025DB6D0877DDD7DE94B9CF7E6A979EB4BF7C1B01B42C336909A4258BBB9B20FEE4368C18BD9902C64E3D8EB9B2CDBBACEECF78DCFA847A3912DC9A3D8A63E30CC682E67CEFFFDDF7F1DE9A6698A4AC6AD5BB73EBA78F1E29FC50E1CB76FDFFEEDF5EBD7EF57F28C5EE94B5A5B5BCDDEDEDEE84E0420128998953EA38BFFF3B107C01E007B00EC01B007C01E007B0094379E3D7B56DFD6DEFEBB37D3D3A2A3BD7DC70891C96404D7F4F3F7DEFB143FFF51330052A954B02E187C7F6E6E4EB434378B4020B02300585D5D150B0B0B22180AFDB2E62690CD66C5DADA9A58595911D1E8CEC888B99655ACA9D2BAA6620016B185D26991CBE5443C1E170D0D0DAEF755B390AD8CA5A525B10616F8FCFE1A3BC1C54591D675A1699A989F9F17B158ACEA457B09124D722D9914015D17353701F881FC4BC984ED1C3688D65A705CCD7A2A33013020100C5AC749506EBB01B0C7ECECAC68803F320CC35B00EEDFBFFF31501EC2E1216C1A5E7298F4E74863FFE4E9D3754DF09CD406B5A2D29B779BCAB1A15EE7F1FFD4891B34D7F3A672CD849005CF60D4C317F970DDC866035F7CF9653C1A89BCB0AD03DB3F2726266E0E0F0F1B150100E1FF84177FA69E4B82FE3E292C5F4DCFEBBAE012B65E60F78EFBCA9DA3D47DCC05789FEEF7470140BFF2F8070303032DD8FFB16C00207C0B26FBC4799EE14FAB72815E08B9D97C1C7EF748F087D1D1D11B972E5D4A9505006CE9F7A07AD82DE1D0AA15B24241CA99C3EDBE1200B442A60FB1BF53160010FE376E1E97B176AB0BF442C88D40B47D94CBFA7F5D3600D2E9156A1FF45F950094ABF1FCE2AB1064C3395CE653AF313A399900607E51960F181F1FE7B9A24A2791488855A49C1BBDB82C8D6FB2F86AE7508F991A3736363A19700C7E20E8F403BA8BA09DD8F99CE799FA5A0CD80E21D54852C67C4B58AB1300CA0A669CC2FEDF1B02006771D0E7F3152741C8B70B002857C80A05F1620EAEF56057971BE3FB370500C2BB3EB98872B324001582516BA0581A9718A736F501B095836E9E946970590094487CAA16B28CF98A0040A1566274941305BADC2AB5050940D5426EB4788FE760A5EA2603147B604300708376EFDEBD4B6EE56A0A613097CD1652BDC4D0E4E6787B7EC1450CB3F37CE579B7F7B84578A7D95929BB9DA217B3FB0C653415E1745578BA00D4F887DCB2A9B367CF96CAB276DC605DD0D1D1E196E1B2264039A31936082A03B4CB972F079B9B9B43CE28904EA7457F7FFFAEE9F4B267D1D4D4E4C600FFC8C848ECDAB56B6F6DF2140010C2783B3363F5FDD4B2767E6E4EFCF5F3CF5553C95F2BA0B3CD2CA5ACB5EE75A1713E6D55CBE0525477988FA9CCED3403FBDCFEFDFB855F7688788E1B190C1199E5CE4A4B307595FED8A2CBC8F892C9A4954E5A0D064CCA24887DB7D246AF6D68A7150F4DDBD0BF94337E84D22C93A5E060348F83C12043644C2A3EA73280F306BABBBB8FB3E4A513C99005B2F9B002EF4F33F04218AF012A351F6B179AB2A55908AF63CB411E44B20E29370532550082A0479FDDF2A6C7CF4906B006B07B819AA6796AAF5ECF6703C43573EE03070E081DA6308FE488DD28B0BB8DB23258D02FAA00D401B21E96BCDCE849F9805D5C946480D7F4F708A035190A6597285FC8E13C4DA09EE50D4D5F97F6CFF8163273B94EDAFFAA8CF9B623A4F6AB3501CF355CA649510E8EA9A929A1C114C802EE93A91401084B33C8DA0CA0030C9BC8946C61E9044DD965B57FEF9641D0C9608EC39D3322529F11FFFDBEC77284506C334E3748A56BBA04913FEA8D6CB6258D07B3A43F1DA00C3DB5109E8B61C9CAB949577BC15E0160AFB9299C104D91942553068A847C51C980801A05F8239C358C28A94FDB3794F6B351032D452211ABC3DCD8DC6C6960C94300846CBF737C3379683D12F80C2BB201880609403103E003C2F4FCA6E303831D47BD6402E7626EC1EF8BC954CA53E19B8A9B21EBFE0C726573B9908C02450004A7A7A7970E2259C82AF66FD104C21F3D72447CF7E285675465B619C2BB666667F321D68BD1D2D2228E60AD76E19677C4CC06B17664B52B56C45B677D0100FAD76363131F0E0DF56B8E6A90DAA2BDBE3F38288E1D3B269697972B5E58ADBF18D7D5D559CE7A7272723D0F90BD0BE71A464747BF914E5F537D8055FDBCF9E187E9E9376F7E847DEE570B22FB9B1BF3EBD3A74FBF53C12B799E293B01A0642B32EEABF32CC7E3B389446241756BBAE2E718E857FEFED5575F9C3F7FFE83587BFB51D0B4CE2E30F8E99925A65B95B59D42AB832C65BCA7995AB58B2CA2B0F6CCCCCCCCB78F1E3DFA9A7D5F3B0DB60130656140CE2CF2DC93274FFE66D3041386E000514704C357AE5CF9150088D582CE5E818690FAAFB1B1B149282F05D38555A457A58CDCE818E62508199501BC10C73623D1D155670513F0C1C65A4E9C3851EFD26EDE561FE09C17ECD5C6C7C7BF85634D60DDCE9752D14B52D6AC5D0C99120D7AB6B7129D8256592010D0BBBABA7CBDBDBD11B796F94E328781818126288B8A5C704961F87B45029071021097D120A1A6D830010D5A0F0D0D0D9D4288D1DE8566B732E7C993276358EF3C9CDD34EA01C3A5859894CA2E00202B2F2CB80100E7D778EEDCB9B67755CE6E65CEB6B6B6585F5F9F011388BF7EFD3AEDE8AD1A8AAC59B51FC00B296923059D4F383F1F6AEA404F4F4FE76E288460A2FEAB57AFF68D8C8CFC072C584134301D0C30A4F62D76E8EC8BB14B2A11C909C777C16834EA0B87C3C6BE7DFBBAB643207EE579F8F061BE0F595F5F6F658E0C772CA2984A33513B73E64CBE130C33388E63F3E5CB9749070086B237F23D41C5436A4EC7017BF2874221EE7FB61D00F0ABF4E3C78F299475DCDADABAFE4F150042309E3F7F6EE52650521E0098C151FE46E2967BF5EA959B1F300BDAE292059A122FF3E3C2850B3A9C4918D9E1B6FC39988D4C568ECCECD8E42008D438FFA64B76D8C98FDD0091F5C061A4C27EFA82898909C3C5C9167F1831DD5DAF76F3E64D86C0E3B0AD6DF96739FF8C393C3C5C6946D80DD3082281F341AC0D4BD84D85623A8C2D02249F02E55035FFC57B979D2028CA04631228DADAC092D776C65735007490107EEAEEDDBB7F01FD22B4969D1C05600E06EC7FB1B3B333DEDDDDBD69D6A66F86E88D1B37D630E977088533708601B10B069C631A0E70716A6A2ABD2500A45FC8DCB97367EEC183070B838383BBA2290AC6D26FE4C4E61FB2C54F83C03A2D1D003E9E0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (85,1,'Printer_(96)',decode('89504E470D0A1A0A0000000D4948445200000060000000590806000000C1ED215D0000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000EC04944415478DAED5D496C1BD7197EB37013294A22294BB2ECC89623D9B2E2DA31E40045D243811C6278017230BAB8A8815E0A9F821E8B1EEC0045CF39F51020073B0850C031EC02597A48DAD47510204EE0C2050424B110C78B6447B22C2EE23E33FDFFE11BEAF169162E236EE2031E469C19BE99F9BE7F7F6F2841D334E256BB7CF9F2A3E9E9691FE9E276FBF6EDEFCE9F3FFF53B7C693DDBCB9C3870FF7CFCCCCF4773301994CE69E9BE389A4D75ADA7A04F408E811D06B3D027A04F45A8F801E01BDD623A04740AFF508E811D06B3D027A04D4D43EFFFCF3FE1B376FBE95C9667DCB2B2B5D09543E9F278B4B4B4494A4C9FFDCBC79D9AD715D2947170A85A028CB6FE40B05B2F6EC19190887892CCB5D45403A9D2689789C08A238A411720676FDB66D08E0252593C9906030D85504E033657239E3A3D6561A80AD582CEADB1C1080D2D2D7D75771DCCD99B756B4F5F57592CD66F5E710DA8D80340E64100052924C26492412A97BBC76240B9F290B5A20954C6B9B6900487C51DCF0E771B095AAAA360598669185CF84DAED6D7713A42A0AC981A46C3501CDD692B5B5355DFA454170755C570840FB28D2A807815907756D9606348B2C24203C308061687B6B8071B3ED44801B443D83F03A00919D547ACEF622601DBA8721004351745ADD128A62F4835A0EF98E91DFB84680508B7A5EBB762D0A37808B928E422FC7999080FD4251943D84DAC76422418677EC205EAF9717B14D63EA9AC2DA553C073E0B7CC00DFB55FA7DC14A6AE938B84F63CFC5CFE55304A2E179CC3E7A23E6E3C167D4EEC78F1F93B09160C24982247D1FEAEBBBB271AA00B7A77D0BFDE6E9D3A7EFBA4EC0871F7E780ECEFD2B0B7C3949010921BC73E21FD06A5F2DE79AECDB74FFF4B3E6E235CCF60170241A8D9A832A087F3A71E2C45F5C23E0830F3E7803366F991D43094E827AD6F2E066D73403D26CAC66805BEDBEF1B1313BD87E73F2E4C9F71AF60100FE386CFE6C5307D293AF5A1F6613900D12B8E9BC06AF61F57D8D133E51B4AC67FE1E7AE30440FB03F490D541043FB75123A9E9C1AB321F8DEC6B44C2ABB8063A67BEE4C2B49F81F04E81167CD72801A76D23049E80AD00B211706BBC46B5E76AD4F7D91080ED77D0FF583701D7AF5FDF035E7FCAA94A98A70468CD26A15A205D20D06C3C7C7687F6AB86088030F280534285528035925603DE0890D5EEE3AF91C6E0C3BE4D60E8FEFAEBAF3FAD8B00007FDAB90E97D613AF76957A47206D08741A6FDD990014E29FC0E65FF5FA8029C72C11D4B0C064C1553DA483BDAD0B341788A9755FCAD90461A0B1B5046468E5B35A705D01928B9E341709AC8584F554AA9A5CEB702351D09453F14ACF82EB05D70C4807705B2DF515FBAAAB22D447C0952B57BC814060C2EECB2990003D047500B211EDB0FD7E1D04BAB98FAD00DBB48380A574E6CC19A5260200FC49D8487623EBB3444C165C955DAF16B46680EBC235702588D7E3B183C90F8E783F6CE76B224010847D4E75A2D567CF2A73804634A111705B40A0B13FBEB6468687876D71124571A66602A08D38E916AE01CAF14998DB12BEC5E0565B1CB4BAC6D3A74F1D09B0C352B671B031470212894D658856815B0B680D5D83DB8733654E0D34A07602A0C52C2B8F860F00F563B3E0B690FA2AF6599E5BC7784F57576D31D2278034AD7A0204A134B372FDFAF539276671DA318761A8B90AB1839AEF7702883E80DD981A5F2A293DF0E619B51A7C4DC5F589CDFC237C677979B99AF9EF6388AB66C294950608A150E80549B20D82482C1A2591A121B29D5BA0AF8F0C0C0C108792CE7E43B679126413E9C72E86C361FFA6395DAECDCECE76DD22DC5A1BFAC02107215414057FC004676E549E0433F48453A74E790707074376E0621272E4C8914A13B10D1B26A33859EF5031902F5DBA143B77EEDC326FD1788475E91F1919F1275329C16E15D8D2D212F9E28B2FC8766F68FF2727271DCF0B06835855C0B2B4C66A816C627EA4B1B1B1210CAF30CB4327A72F0761E369F81B9769FCFBC68D0D47C92DFDE01D19CFB266F3B99A731C3FE34332CED2ECF326E76CB23CA69ACF87C112F8FDFECA31E16F14605C49879644118418C55B656FD55403C676EF7E1EC1C72CB7A828A56A27B3D6C6B07D55D642ACE2B3EA4E6B96289BDC4FB5D7C6695995C10689C08E13F63210A0822F2D66B3115ADA112909960478FA0281E902C4F738D182202B4802A7010D13E01261421B908338A1901A1A60102001012A483FFE9DC9E75103D01917588595B93191219F479627510330C9C2652748001B6F2301B822008FF14947CB5A0312DC68434BA18030969F9F4A3F760F5DF957CCE570159787625C34F202990F3FA17B01F09DC82A0E8C5B330DC8D6A101DD4A100A2A828DCFE70373138B44CA651A8D6A06082B12E027A5F7590A8619E2350019F201353BD004E5780218120A2E9BA04E2607B132EE3F0AE0BFF8E28B647E7E9EDC5D58289926200708C06C2D4031CE98F900817EF601E011DD095312541A09553861EA1FB6838971F4018C29C6D2C4ADAFBED28B74BA06A0CD01470C5885290132ED3841A3C99CFDC7CF7E003C8C13ED79C3076014C4D53B8C63DBDDFEE3B5590DC07723B0A3D44B74D92225007F4D12577179E9ED09BC0688543D02C0A80F07451210E47218CA66C26096D034756A734B60D0F617391C864269924CF7115528D5D2E492B0E2F2CE208D8410F73CFA5E56033608C8E765041F4D4C9146403C019D0CBE1148B8350E8BC50B7B17C9DCF33F9007CB11F2D9FF0E961C70094B3F35415E6A6D4A1AC066C094003FD82ED990707CE98E4FC2F40B77E02B485BA5492C162251E87E55C74EC110B4944BF928013EC2CCB5CB9C03467602A02E924A9945E02BD6FD18359016BFCBBB67CF1EE2F3F9CA61DEF7F7EE6DACD06B32012C16FF5DD809D23F40D69260823455C70E7104127C340CF53219B1C0FA00891EF4C3838858C330333DE550B4C51A802B32506AFAFBFB89ECF1B4047C33678FF0ACC483F4584978D59235F150E9F7549820C6FC08F4045FB150103D74666993ADA4CE0B09A255BDA63F742814D267E3F0DA3867D14A7F140804EC7D04ED708F12478068443E6C1286DD9BA7914FB9AEC1C44D460F058364CFC444CBEC2E561FD104ADE3AF980019AD68483E96A2CDF011D8480B0405CCBA61E63D563EC0D00429954AE919568196A3CD641C3D3B2EC7404D78F8F0E1E69734B6B0255B04B8D1F0A58CC1C14132363A4A3C60FEAC9E5D0715C2540570BC77EFDE121578B60B7C1EA0ABC6B7DF7C73777AFFFEA38603366B46168CA9F70BB3B3E4C08103FA1A994E7B41BB16138A128FC0DFBF7F9F2C2C2C6C54056C840FB5004C3AB971E3C66D0667C1AA14A11FF8F4D34F6F0E0D0D1D0A86421EAB32306B77511376EDDAA5F756C4E2CDCE03D032180418A5793B1F908CC773A0B56BB4005721A1FC7C001E5460D0DCD5AB57DF3B7EFCF82F43FDFD7EDDE1DA3C0012E0F0AE54DB90E2C6F83B77EEDC540D356B680D12F178E61F1F7FFC373C0DB35FC62F6F2240A505223C29035F4E7CF4D147978E1D3BF6F3582C86DED687BF1682D36BFCAB996363630D13D009C0B3910F9A230C7D71D4F2DAA892B3354A13F995E5E5855BB76E7D86024D4A65E83CED654DE00928D05229BE7B23C117335F7EF9E5DFF51365D93B323232118944C6E106C252A979B08F8F8F8FC171A1DB81E71CF1EAA3478F52303E5863A588932B608AD2E0071F2E2E2EFE0044A4385C530C090AAF017897E855B314FC04FDA28775BA70C127D049C9B98B228481FEA3478FEE0D87C3BF6E27E09BE15B76EFDEBDF0FEFBEF7F964EA713804D41B3BEA881ED3A25214B09D14D114B804AED548A66C4053663E32A803A01108285E6E6E682D59A9F4E9576B376E8D0A1013043A96C36FB0C229D9C667FF122B52C49BA2DAF8C908D448D029EA5D22F52320462FEDBA202981E193440C3FF9CE4444037016F3408BBA3900CAE030171304169F0999A85F41B04E42801398AB5C2FB00851260D8AE3417B36A4C6C2B00FB3E005E821B19B222A01B81674C5004C26E05CC4F127A02EE4505222A221CCEBFE6A919CA5002086F828A0C010A3543A245722180F9F103F07D7BF7EE8D39D543BA0978E6DAC289132746DF7DF7DD7988F11360918B94001674F66F03DF9C5914C49AA10CFD5B2616337B703109B05700F85C341A1D6E3608AD9CFE64AF0D21FAF8B56BD7D290B4A67EFCF1C71CB15EC96E087891313F251F80CE0397A830E19261B3240B0284603028EDD8B1C3F3EAABAF465013C8366D13D0401055F00559F089591BF363987885B5FFE575414C1454604E16CD08181818102017F000EBCA4B2FBD3441B67183BCE83908C1310F2840FC9F8190D4AE10A6329AA0119395712C09A295F9E9EFEF17B0E603246828019D08DC93274FEA9AC0C1F700702EC26800FE385882C0E0E0A0964AA594D5D555C5C60CA9CCB6726D2835433C5356AC0B100160062CC662B1E73A918077DE79479F4F40220040FDE716E059F41F1EC11936FD67D89249BDE00661767979E6BE7DFBC8A953A7585F2883199EFEE4934F1640163530C7CAD75F7F6D178E9625DFC81B44C6BB6B8C16280C53151D6E50831014099340023A9200AC673D78F0809C3C7912B37B323A3AAAD7B240B0F42D16DB70B2078FE3422BFC1BCFC7BFF936353575108E4BB0D5E07C85B1F56C5759C1669336910BB1D8A6328C95FBF0F0B0061222810A7B401DC73B91009C44C1D0F9CE9D3B7A21D158FD87FB219AD1A51FB7C67B1068699124DCC737C0633F6A0208A370F1E245AD9A56210C0E31AFC6C7FFB3B3B302DCB004766F1434A123FF77F06BAFBD66F97E2F9A246CB8EA02DBD9B367F5EDCB2FBFAC9B2DBE010EFBC08479811CF1CD37DF142E5CB850539252D31B76C8075C440409F1BDF2CA2BD3A443DBCCCC8C6B6381E44F802006C0344B070F1EAC3941A9E71547AC826218BA2B9BCD26417545F4E1DB310C05D3A341574018F7CDCFCFDF07672C5AFD2A8A6B04C4E3717CB14078FBEDB7FFB9B2B2723F9148448BC5A265D6DCC50D83912CE4454F401897C014C9E0BCB75E03006C351A8DE6C1EEC5C1093F06B790C29574DB4D0B2092D2A017C02FC483C1E03AF88E623DB945CD0400F80A80BF0E71F322809E82C8C10766685B9A202040452D00939C585B5BCBCECDCD295B4D809E274C4E4EA6C1F4803214D7202316212ADA9604800FD4C009AB10D2161617170B60FF6B5E9323D45ADAA52F97613424D4E3F5BBB18103D668F859739DFCFF1BC154734D819D460000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (86,1,'Rack_42_(128)',decode('89504E470D0A1A0A0000000D4948445200000086000001B30806000000EAB96F3B0000000473424954080808087C086488000000097048597300000D4000000D40017C4BA15E0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00004BC84944415478DAED9DDBAF1DD77DDFF7ECB3494AA2248A3C1449C9A428DA126DC9952317706AA4B934459D16860BE7A1490BA32F0582022DFA96973EF4B5FF478A26299002BD06295204281CA7758218966D19BEE812CAB2AC0B6FA22E9644F29CB3BBBE5BF339FA9DC5B566D69A597348CD9E0106FBECCBD97B66ADEFFA5DBEEB77A996CBE5EC4E3C2A77CC46702CEFD4016E1BFF3BE9BA2360F8380264F97107C9E24E02C4A953A79ED8D8D8F845377E779704C67C3EDFFDDB7D7FD6FBB1F7ECEB81F77601B0B5B575DADDCF6B376EDCF803779BD73E2EE0B86D12C30DD2E2A1871E7ADA0DE26F6C6F6FFF967BFEE4CECECE861BC0B97B7EA3D06FDCF2B77DCD4E6EDB67637FF35C27DFC7F3FAEF8DBBEFBE7B71CF3DF70824D7DD78FFC09D7FECDEFA0FCF3EFBEC8B6B0F8C3367CE480AFC1D37F9BFE9CE7FEC06ECAC7BAC3EF8E083F9F5EBD7670E1033F77CBF40B96702FDE7FE7B4DEFE77CF6E0C183B3BBEEBA4BE7D29D1294DB376FDE7CD9CDC19F3A89F307DFFEF6B7FFEF9D22510603C6D9B3678FBA95FF6B6EB2FF99FB8D5F778370DCAD1801A1120874E6FE7689498A01A3D4E4C73E2B69E2BF2FF5B3582C742E051A7DC68DD16537665F7763F39F4F9E3CF9DFFFE44FFEE4FAC71A184E227CC2DDD057DCF95BEEE92FBA1BBFD7AD060161050277C39D06BE0914A526B48B1449F96C080CA1D722EF2F1D702A376EEFBAF35B6E9EFEEB912347FEF0CFFEECCF2EDFD1C0387DFAF467DCFFFE53777ED53D7DD29D079D8498090C7A442D7499A4D0A0F79DA494EF6ABBC694EB646243CF9BCED875687E34960E1CCB7ABE6EB831FE917BFEC74ECAFCFE37BEF18D1FDE3660C8807AF8E1877FC97DF66BEEEF7FE85E7A44F7ACFF7520A8BAEAEED88A8D1981292AA22B5862BF95F3BBFE67A52A7C49D0049A14C00A240E183367972DA59ADD1CECB8E73F7552F97FBBDFFB4FCEA0FFF33FFAA33FDAEE0D0C670BFCBD90B5ED2EE011F7C35F75AFFDAAFBF14DBCCA18DA9B06B5492DC42C7D5E13F8DA3E5BC22EC8B56152541C130F40F05A6252A40B98051419EF52D9028C7B6DE916EB55F7DA5F5CBE7CF9CF7FFEF39F7F3B306E372E5CB8F0FF1A790CF7E1FF139A3877F11FB8C703F7DD77DFC68103075637A749B2674DDAF43A7563DE776DBBF32F6B695635F11846DA5521032F0656EBAAFA208BD900B1EFD2E701AF797D292E4393E48E47DD443DCCF75AB0D8D72C58FCCFDAD743EFE9EFDADBD1B5540E209BEEF5AFBCF7DE7B5F8D2CCC37441B3502C3276ACC172CCF9F3FFFDE97BEF4A5FB8444198FF6D46BB54DD1F93DFF7DBD2E1DFAFAEBAFCB80DDA8CF797D36318CFBE9E2552DC49BAE65A73EB79C67F1EFDC7DFD2B8147635D7B21C1D37829ABD3F35C6E793FF41ACFDF78E38D8D175E78A191DB6993188DE44D930DD2E73D4E810150D4BF0D2016F5635503A30A8081B3DA078054117054DEEF2FCD35CF6AA9B73BD1B59ABE657C729F377D86C736A22E5962A47C8155235DDE1300E4BE4A270A101A24C0A9E7EEF18601C786078ACA0CFE8EF7DA7E490A1F10F6E43A9018522573DDA3EE9B150D3874BFA8214BA9F701458CCECF01455095C4BEA00F200482F7DF7F7FF5A801D16FCA6ED169D588B941D4C746448D2C231264E88DB12A0096CA4888A50722796E5568256B0C304A75EF1A1F915CA89CBEA08819F9A9005984C44DAA4A881DB21DDE7DF7DD99B38857D201BD77FFFDF7EFAE14EC0B0C501FEC11FB62195125B15DCD650F89527960A86A2930F7BEB76A5029A8C2E8643236804463E18CC6D56B50E8FABB8BCA8969832236468ABD20C40B08EFBCF3CEEAA6F41DBA19E7D140F3EE9EE8571EFDD5E4498C26DBC207C7320280650F09310B48811D0F6CCBC067AA86EB898EA7352471D52565751E3A746876F7DD77AFCE14505837BF938D11DA864EF90201E0EDB7DF9EBDF5D65B2BA9C0852315AC5712533BFE23F646CB2A9CF97ADC3CEE879D61AF691E303A7DC374DE3479B109B620C125D6780A2452C19224870F1FDE9526A1EF8DB9E4C91223050C9AFC6BD7AEAD802040E847058413274EAC2E2E2415BA782C66C043A0587AEEA005C7721FBC922A30F93BB5CAF03DA4B97F3D2100A4A806CD8BC0005034BE3A350F3AB5A52F90DC7BEFBDAD5B0AD9C0F0BFA046EDC6CB2FBFBC0284265C1720F5F0E0830FAEDEB76048355063C694F77A15D0F1B300307C0F654843D44EF8DCA894261BA662DB2176B6498ED0585990A0AA25490412BD27804862E77A9CB77825B10FBA1F5EE887CE9D3B778B54B02AA20D10189789D674931B1853273B01402C0B03C2FEE6CC4889D075ED014B574991E28D68EE24B9B560A57E0408A880418C4FFDA8531F374E9D3AC5AE69118FC53FACDA11F8DCDF774588A46580C768323C970500B16C7091775A8CCCCA372A439221050039DE886C3D49F64B972E0D4F7075B11762E252072497367FACE4A909AE0F22D262D6E08DCC0690184B0F1055A227B4470D8AC780DD65CF89058191CE3E5449E93218C1D595D08A5DB8802012476080FE46575A4EC3F34A9A44FAAC81D358B64C768ACAF0FF6F9EC8B4068D4F54AADD04B363C3BD9722B79A08AEDEC6671FC24B132D820BC6D36E20B1827C5B25B2F272567F1F75B26C01CA32014055C26776171654383BADD63E10B925B590436EF9866C6FE3B3ABB8F16D05711B22BA74EAC27453D2777584F42DF4778B571202484C6AA430A07DEC8B9907D22A1114558ED8B79E860EC222051078A21C6992BADD91647CC6BE20A43E74D1F8D2920C42BE6E40DC06EEAC8DF7CC5049558BEA08FD1D52257D28F11850AA0640CE02347AB66AF04102B925352C49228068B159722BF4DD6DDB1D9D8CCF98052DDA5B24974E49095DE491234766C78F1FDFA32274235DD45140722C03C452ABB8EE60905691C96D9312558B1755F5B117AC2D8691AA7117B7A4E780C4925B76B36E10820B71F6E69B6FAE2E44A040A49D39736677AB3C662BF4603FFB649F2D3B7A28CB160991CB7BEC7E4757F733F47F96DCB2B69CE646F32206549C86AF4A3ADB18A10FBB1FBAEBB9E79E5BED7F6C6E6E2A32FC96C8AC1C863367E327C1F86C02C0B283AD513570165582C753452446674EA2ED33020706AAA407EA468BD8DA2AC5092E272DAE7FF18B5F5CA4A887128457BDF57CA8C32A5DCEE2BBAFA549AFECEF21FEA4242842070CA84071F1E2C5E108AE92E972BE14F1C3FACC0DDFEC0988184DDD151821D675366BDFB4DBFD3FD85DB2CDDA26BC89194D25C07C4EA428C195632FA490610281449D653CF5FBB0803501B4930988D9AC3956A394C4E8CCB0B208A0FD911E9601D5E98740F4912E36727D10822BC75EF0DF23E70192CB26F7C278367C47953841318A7A0860346DE8257F370C280BC3261231DE105F7D54CE6004578A26F13F63C3FAF437FA554612AA43DC864F7275F0389609B478CE36FC32817E5FB6D0EFCBDCF1F243FCE02D90AA5A44BC9F038A4109AED8E4592902E349589F9E0B0832827C77B6CFFE4BC34434498B92F119CB16222DCBC68A7D86B0488D21138BFAD5E222B128056C83105C3A62D4B52E12C6532A42A8D6291F1AC6D386F5A50C4A82E89EB5309D29C0E8BA89562548A3AC1B4C25B76C2291C95B5D0147C4963C91903409D918C58D4F014412414497184FBDA70B3A76ECD89E0B6ED914EBBB5A67B3F62DF8DE2BBB87D1DB5B9DB4BD866D466C87E645F3A1B9D1A2645F8A398C0561F54E1F70A85C3CFFFCF32B7B01EAF5E8D1A3BB1E465F6E235392B44589A7D8017D805125783EAD0029C15B406E915A80CA966D27724B73D5B4BBDA9BE092243879F2E4EA02425BE57D5CD8E0C87F782D1B0D83BB6C59BD4DC0A832C09743A22581C206E3E472122946269B6AFA5BC6BD16F360049793065B322243290025082FFB88D873CF373A88F3D4FC926547F5319B35EFA62EDB984FBB0986E75182F1F45FD3184AAD10035384E0CA7155BBA62B12CEC69E8BF56EF4DC0DE08D8C95BC4C7CAF8F2AA912BC93C6EBC47393C188FB69939C4B81220492C17657BB309CFE41783BBEB98D3968736333C5FC9036C6B22340F78C91AD4506482C039AA24E52ED90C123B8728D4B5C5A319E3AB948F9E11A0C4906E9C18E746D9BCAD8AF23F51AA269043E038A07685DCD104D9E6A870C4270E5822394C84C463B89CCA17C949641AF3A006568899103C8652E6F616340356E5A582438C780127B3E18C1D53479243203065C28C56E58779694C58EC6EBED960A7D7997641EC39F504B6EF931A064C1534A61101B23266E42557AA51E08EBA39E834E85958518CFDB20B66F37185A255D574FC332A0A41CF859F0A13AE8C5092EF23B4864F6194FA988C43480DEC66BA6A1B95F939FFDDBA53C0D5B73CB32A03606D4B7318AD6C75068DFE5CB97571B620283AF224A4C7AE192D58D364653E051C2C0A5DA3C838122348E9601D521894DA036AF1525B8F4BA5317EF7FE10B5FB83725C6B3EFA4B33DEF1EEF9A8DECD0BD49DDC692BB5341D1F63FA46F081057AF5EEDBA009A81D156E3A2EB4AF1C92EDFAE71AF5F1F1B3050B9B2C7D84E6793AB64E67B0804C509AEFAB1EA53A12FE4D2CA68D2A36FDC3278AAC43F1BE10191A7FBC48D67953731CE7D58516B8C1623B84A9473D46090C88C1A622022D5FAD6E20020A104E7507DB2AE7648C8E3CCF24A52EB7BB61DBA21B950DA17D0238C271147D82AB18635EB028EA6C9643E6040AD2792AB7206D95D0DA12D3471520D105DFA1B964E46905FBAB10BAB3A7650C45EB331A030A01897290C68680E8B135CF647F5BA984E85F5E951CF0504E5AF82745B337C9FDCD4D180A289B76062D990942416507C0694EF299E3EC0739BBF4AB53E184F5D942DE8DA25AC6F9D2545176F847D144B93D392427342681F20198CE072683CF8FDEF7F7FD70F57FEAA2EC0AA8790BDD02717655D40D1F7334809319D9478D47C5CB972654FFB8A5E3646E8C3758597EDC71F7FFC80ADEEDB56DEA00FFB59DFD0626CC0D07D6941C5546B09E0C8FD05247A4F12BE5701D82682CB01611B0931447B0AAB0B4DE1B26A8C5283EA42B6CC52AEFB990392C10AC09604809FA41B2AB944869A03E2CDB181C2B6A7225889856025766995533482CBFAD225AAF7D9324134DD85D4B17B07EB628852CA920ABFB1D55DCA0E199CE0CA9110C4788AE8D22058430949613A1AADADCB6A83A3ED24DA0CF8DC72D2B785E06A1295726305041BE3490A5D4E3ECABA02C55622B23439F61D5BE83106745F08AEB61B218248A97122B9689540BB8450CA62A1209DB522B790B436069426373106D427B78A135CA1DD4F014124971E6B9E63C5782A6D3116E3B98EBC450950F8FB273EB9A5F70412B2E009EDDB970E47EE8BE7AAE504E3C905080CD6BB0815A05F7752AB0FE1954A6ED92C78FACEC14AFB8D8C7323C6174D01A34A6A96A4507F92508C67DF8E8A9163941669CCC3EBEBA2EA7BB560010A6ADC1AB4C5D3071C0AD596E2406E7F925C09618B8548438D91DC523E291E481F4FA3ED33540E5610F71D41707515A758E0B8B8EEC63E181B30B48251C5A45CD8F6DB25EC90141E23479D440BC096663F6136FDB03E6BAB8CD9DE80E843D403128C495FA597503983199F39CD6C427999AC14DB8F035BC556A85B47C3D3766AC6D5072025DB621527B89A52F46317A3C986E4F29BD558C3753A6E25B7000A3609E0613FA98BCAE995D49CC2A7C7C0A10B57489FC0A013378A1C8A2EC949938BBA770E6C1D507116800662ABCD63295E003676B154EC13C965136CB1BABB06F0AC2BA791C35B70B20581AD120B161EA43E068F1265946E1418F09BA9D8974A724D477F5614090267C11C91A2411D505BD2A94D1B241B9FF69FDD8F1CFAF18F7FBC5B2AF081071E0836E2EDEBB1AC8B6A291D9463D94F8C56B9FC52EF3691A978872387C21B9FFFFCE717B146BC7D27DD7FAFB6CC0F8C91E0A2AC5429C633646802123D0E4670D593B6CC1583B9EFD9F0F8DA7D1B9DE8C0DEA2E4229EC6D0C5D98A6CBBA7125C7D0D461B8062ED188C56A7BEB6C6080CD900BA479286640BC080B679815D81335801D812EA8149A7E30005C9D833F0CF75B031A0FF352EB6BF2A89CE6D2049B543868CE0AA720161CB006995F01ACC5E4681B6B5303CFD3E2574414A4D11CDD92B29028CB6C6F43EE3495766C42534EF94BB9A06124E18637F838DD79B82A06E4B01585F3D08083AC578126144EF4F0B8689D0CAB70D62ABDF32A0F4858931A083135C367F5504974E3A065BC633B700FD4466750BCAB1BBB1446E8518D041092E87C88D575E79654598D0BE4AF9ABF4F88CD5F11CC29B597750D8D790D0F01648782A31538262B002B02AB5A48A7D0AED4B8DF12C10EE37BAD0BE12C9444DDE88CF80B293ED03A348FA80BEC479175B478E1C3938648C272B00D5E4FE3E38366068C28E1F3F7E4BC7855CF733E533245093E8553C7D20D52BE9634B10AF815A92BE74E0185DD53EDD9BEAA54AC4FB1B5D4355EC1BB4C3510900D88263105C3640A5AFADF271B23190167A24394B40B10D7A4BAA9CDEE903295E49AE7A207937D495B9EDFFD7E1D03890E40D031ACB82CF0145CC5D1D84E04A0184ED5102E369BB324F617DCD52C0DA1F3606148FC36FF17DDB0AC0A6AC66623C6D563B3765DB5B35954A4E914063074593EAB5E4966540ED824EB13172D549637D8C10AA0502E23C575FE0A481653C434551D63DA139F5BE53286E40C2262455138905F53D9441082E184FD5731218E8102CA389805FD2E142DCC654EEA09FE4887D068613724BE36F3B21C9A0EDCA5F24115C77DF7DF7A1575F7D75156002E319CA6A1FCA9D9D40D1FE9910B9A56D8BA27925BEC47028BCFED4534FDD13EB675692EC3237383A824BF7A5785936BF4AF3163EB9A5DFA36ADFA00457298633043EC2FA706FDDC08DCE75E1DEE02DAC8159DA0E89D918C508AE1E0DEE1A7D771BD6A70B976D6223BC1C4846C772E1CA536B1DF65359E974991C22F33D25F5B45195A43654EBC26DD8D03E5B0288F76043D7C9C60885F6416EC54A24F5496A2E6A7CFA3D34528C297BD30282EDCAEC17929D0CCFBD6A06DE0289620DCA54EEC37F6D10822B94751D530F94F981F1A42BB3DD208BA52C4E6EEBDEE736B9D9925B96014D21B7423C4691B6144D09B10200617DB64789F4A64D052859807E1D40110289653A9913CB8A36A99C410AC0DA2FD524CB3786F164BB5C6D296C1BAB210AD0AF2B289AC6C8A61F0A2094D38C6DB5174F1F705260F1D24B2FAD265DAA414457A847C944620D0F8A90FD00F7031D4E9076A85F495182CB016079EAD4A9D50FB7C54D7401474852B8DF9D8F0D0C7EEDF4215851BFC5B7A4C8600560D596429222B65D5EA27A9FADD857237D7449CDBA2F6D29D8D0FF1449DA250E7435806E2C058CDE0457481F357925256C02B6E889382769E9F0E1C3A30CEDBB74E9D26E308E543291DC9C43A89C7D23B8FABA61D68DB24DF5D621B44F07DC8EAD446469F2D2764831822B051829C1363EE3E9A7D585623FD7CD4845AD4008DA0C785B2DA70F55DE6BDBBD89C5CC0184269BFD009D565D4CF11AED0B8CF1C303842287268FA9F6B6CCB5AEE3BDC8F9B0DF7F553762BB32DB184F544553EFD5750547DBA2B319F04468C11D35B19E398B39496234A4C25556CC4B12C0780A14F8D1EA4660EB78B6D5BB58E708F12EAA01F653634BAA81DF1DA94BB070278901304864B68CA7C2FA4474950CE0994092F619BB5742053F362F014B4A645D2F55E28CA103028432DA15816423BFA75480F292A3AB3762C3FB708FFBAA9379D3CA76A0B871F2E4C915309A4A16E7105AB10349E46EEEAEB181409326824BF7277B6188A01CFB5B0A006A9BAB22C6679F498FBD67DB3969B068C1E95E1F25C145FF752D321ACED85DD212BC4549B5BD88FD60C9809A5064914D6384F8D14039F5354A23C4B2BB349B116F215BCDC67F0ED1B9B98B11BAE833F129F9AB367C8FCF5A0F669DC2FAAC012909E2935B446E95921CC524464EE983D0FB24EA42D4D8A05F8032792CB78E2D00C11D8501B531A05D5DDF7D27B8AC8854589F6ECCEF51C25E48488F4E477C72D9468005653C6D99C7AEC66911822B664891C8CCD6AEC0A01DC3210AD0AF1B8F119226BC6E33E06D57C62E76486F8941D12F85F5C970D285E212C9C21EAA00FD048AF82E3524974DC3C0D3B3DD9B0721B8F4BA08AE0B172EEC86B4AB47891FE3391DFB078AA6103FCB806A5E524A7F67B9ABF622DC0F6C7FE6339F5934B5B1EAEAB184824AEA72C9A38CE09274A58B641750A480CB32A092F08351E24E44ED8462154B253463A8523FBBCE565B8E554288B3D07D12DE97929AD845BAC4BA421725B872263D457422FAB0B0716F754A571E397264946D2964A711C14DDEAA0C76789E5483B1AF37B22F0457AAEEB4258C59254477ADDB861C558974EF7A14488801657C62A5AE72ED90C109AE1CF560C3FA7C66D306BFA6464A8FDD08D538C91EF0C3FBD86C4BED03DF650BBFB3C44805047B1EB07748072CE5214A2A8CD14321AB8C80619F01B5F643CA78169118393F063B07E389F883A55BE77D901C40B4ED7358061429826B9AD3B9791082CB3270E4AECA504422A808BD75679BC030253477372A6D1CA80E8C77DF03296663344D945BFDF32B57AEACAC6989394903194A0A38F177484B782C933A49038EDF09C932A0BEED3608C1B5582C36A89C4F59A4AE157E33C031DAB61443B5D1B4BBD8D0E1A9457C3BA912673FDC7CE08107164D2E6509B28B2639B59175686CC06071D96A435DDCCF54724BBF474AC76004D750D5FB30A27410C5259575FFFDF77F303660D096020352AA98C2AD349CD90F726B5082AB4FEC279969A825584F6236C6DE96028657E918D41B91F12EB070FF317EA714708A125C5DC0114A644625595B655D8D4FE25A28C32D9090E44C39A55472AB9434E924315254078CA78DDAB245C552834AD6CD1B419A982E4FBBFB294494372539C7403128C1D5347104B56223601D5B75311DF92E6AA80E2881C236B939472A0C467071B0F9438CA7ED51124B59CC9540134896B7B4F8A601AFCD82B72457711BA36DE22CE3498C275D9963319E25EB8D4FE4D65EE98D8AB631A06D6AA4CBB82E9A2ED8194407D59682AD6159D04D319E13C3392CE3199A70EC0F0042790A36308722B8B6CE9F3FBF9113D6D7151CBA39195BEE0647D977558BCADA6243A5210A20B2457A87F635892D1B663744335EE213493DA84B4E8F2E09058F4CC0572D113C379B1AD005145DA57291A4E612251BAD5460CB983AE3D421C7C53D7AF4E8E88061FBAE139E2090A8B4045E880DEF2B058AA21263089BC0D6C266B5E0B7DB2E8BEB62576831C08012FB4989045B00A524B955D4C6E85AEDD706B85A82AB2D65711D6332C880A74C82404226BC0EBF1B650995D359627489F1C4B0F2B3A2D6B964632E486C163C81C20289544FC8CBE80A8A628553FC2FA3F4A0DD422661881DC35CF530A52ADEFA9AC651760905639B3A210D5A38A58914A13DB74E184FA8DAA6009EA9585B375084A409F61831A096266F6B6E93BB001B2586FBF18D37DE7863050AAADB5301C6EE9296F666D6152439AAC1A7CA010792BA7704571B79226B596E950DF86DDA1CEB7331B5681C655B0AEA85F4951C31CEC9F6544B69B6D74B6228A9D959C907423643296F06A64ED678DDB9677449CDBA47115B9A2C764D63E17D255C548AF80F5238A504A115FB5F482EE949B87D72548E1D3B36BAAA7D9A2445DBD397458B40252542EAB864E7E63E527C91EAD2F49510B6513D99563699791DA2B950C530A00208C57501905DE97D838307DB44EB63617313B09E36CE93015AE7DA5CD0E4E4AE8AB31048B4D946D4561348BA4A97620457AA776163337C9ADBEFC83C7925B78EA14D6E46DD406E85F650FA80A228C115BB197A9430E976832C272B6A0AD299EDF130620CA8CD596D23B7F6AD708AEDCA8C552D9B41176D5B594D0028A78E2D03AAB125390B06D4B8F949E35B2CAF4440D0260F8CA7F41F556C433D4A4A7B33EB0E0A7F0C6D72B39F05EF67C00F46703963E8E0DB6FBFBDFA6159CEA118CF210AD04FA048B71F201E890165B30D69D275ACE74D13EB24C58D13274EACAC65DB3DA7F4A008E9924202DF3AB4A5E8EA7EB67DC64FEEEA636BB45506AE4A105A4D604037427239608CB22D85EE8DBC558C73D2334B925BA1B11F94E0CA99F4D07BF019E446303018B220DC0DDC28F50BEA575E068B422E291D9CDB18D01C3B64DF09AE3E0D6B900C3691795D492E01817AECEC13C180C64A550D1994D389E0EA22492CEB49BA7F2C91798AC958EE6E0B0828F2F604129DEC25F91B625DD4C9200457D38FF889CC361E2074539357D23CCE5A38A2078881210B5E5C118BAC4D5D147557435F1AB39AE95162D94DAB2EA6092FE3B25A69A247EA80EAB431A036F6625F0BA7E8C204042ADA1243613B32B7E9C41CC26B02C5322A4DA0CA211AFD3AA0A5247223C1E57E78E3F5D75FDF254CC88168EB4F322534970745681C2D034A0D33CA24F8C9CEB963DCD67D60A9A262B85B5D7342522FA8EE61BE18DBE41338DD965CD527FE82F28EC4BC14D9448BA1D4DDC88E1FAB5892FE26E54037829B56C53AC37D8C0FDD12AD34C9C11992DCC2251E8CE0B2C66429F5C0668F068A743DD92F6FBDF5D6EA66363737475786476050AC0552916E515A7400A409242581534495940284ADBA83854D61B2AE094A1FD7838C3DE5AD0A18E22B449363BB11E1560A14FB4670E5EA56BF9627373EB5DCFCD06ED3EEB5160979AB30A0B6F75C573B645F23B89A9AF172DACF4280B5D5F1B4AA6B1D0F280142FCF0006597206943AC71D3A4EF4B04970F08367E90003ED9D2D484657253DBD500E19264C10314B6ED53FAA90D4E70D98B2599D9966E94BAE813D237E5AF368F856D7043AB5301058FCE7A3FC509AE9018723642252389B03EBC0AE9415BEFA27409A60924CDC009C58042708568F2E20497984F01404090216919CFB6CDB10910C3802264DB590614092EC9D2679CE776B2FCD359CB5B327EFC70B4D22A41A093FE1C7B689F9289B4B253447ED79615B64BA5FFD99C50BF45E9AE44A99282482EA1DB721BEEF928DB5210DAC70280B3D0EB2572518B174E295964BEE93D1BD607AF21834AAE19259AC6ECAEDAD03E6A9AEA1403CAF6BA2D555582DC2A4E70E54C7AD361CB3792D5CEB9CE9D166B35BD3A95052F8048651F3D7A74B7725FA828CD7E81620F30BAF2ECA10B0110B6709B1FE33919A01F1D5A286FBEF9E66E831B51E432F8298C1BAB5C54AA22412F5512932484EF5992CB56DF0985A24DA0881F6CB849CD8A2E87D852E11502A3421EE1BED918B1D7319A9002BE849848AC726EAB0DEDB3C6ABCD824F61408B771F60F56328EA22B109A816E7EF8E76F5582640B407E5D8FD1419F2E410DBC4AD7DC92B71E85C5CBA7469973491DEF313994B782C1328BAF118ECA7D00989F84F3CC0C136D19C94D83E73E6CC8605C350934EF89B7B1C5D7136169555BF394049010EBBD87523E5AC0A81D912C3A171593AFAD87E07217D449CD76D29966394081A472AF711B5156A9A5BAA385BAC4D67278991E33DF449571418B4820887A7C8BADEDFDCDCDC1A1B303449B20DE46DE8FEE9B92A9A9CD0855490F431348B6DA2850273BB04FC2211D08B1A04EA5DB615941DA33B0AB905032A903CF4D043ABE77EB1FEBE92E3B6115C31B149661A3D4AA07C01C33A329EA1B10224D7AE5DDBED5BA2BD140AF6FB81C25DE76B3082ABADFF2A3ACDB6A380F320B46F6AC6DB7C68AC142D2FD52A6090DC2CAA9CF14C21B70675579B5C511BCB49F337D48665436352610244FBAAA6540211E55239449413031A23B7F685E0B2BAD16E80D91DD3B642A5D391CF65F8CFB50889A6230694F03EEB890C2E31566F2E1673F1F50283E51A6C3273482A4C84567990F8D2C44F6EC6D3416AF7EEBBDAA44214F309F56ACB01C5C050A2DEF83AB6A5E8CB63F8A17D750E702F43B451623849B1EDC4D5465B04785F5610F0D5BD364699D4ECB7A5400A0F416EA514E2ED4370555D455F932461F550FE58EFC90AD7A99B3976ECD88D317217B4A5C0DB50E496ED3B3B54E7E64108AEDC498FBD47FE09228E5847318118B37C6ECC875FB90F0352A5266C167C287D73C8CECDC508AE94F7A8BA43283BAB03514AC0C9BA1EB2D39094972F5F5E491185F73DF8E083AB4564B3E087D84F294670A582838ECC8850BF2BF3E495840FEA9D8A0195BDA554039B058FE19FDB2BAD97C4C8E915EEBB4D96F5E43336BE93F7A6209DF48566B3E0253D8801B5BDE0FB34DEEB2531423BADD6E2B55675ACC0CAC45BF407099D902C032A29228902B9180BB01E34AFC4760BAE4B21AD4EDA52F4D9199D4093BFE29B3A2121C5532B0D7426B89C085B48A4C1AEF9EDADFAB8461328BAA9015F9AC080EAD126373705EAF426B81C32B71E7EF8E183A11E257D3C96D0416D2AE7C51C1ADB846B61C93ED0E4D93661B99C441B48304EF57B216EA414C135888AB0DC066C2774711D853ECAE26C0284802FDB80C87B6254FA4A8E21A47476F7813EEDAD68484BB10FA19AB03E0D560D96D145F0901F82C12EE9A84521F613CE822DF692A0189CE0EA03088180867A7833184FEB9ABF4AF89EEC3722C8456EC92D658C0051E9FA9FA52446952B966C2233AB81F24CEBDCA3A449CD082018F952350289A489C6D0B62FCDB5430625B852EC05DBB31D97C9EFCA5CEA82C7EE9550FF5449CE92B2028A0C574A4EC7C2249BC6755F5A5F11D667936BE1362C759B13C0331D71CE4292C4C6804293DB18D054AFA628C1655D2136766C57E650EDEAE928CF63909B826D420CA8CF8096EA8BD65819D889AFB9A296050A8C48BAECA46EE8A418AFD391069410032AB050DE51A7EC94129DA5DA521477C55613184A2534D7C0DB18DB044BB24A1584388B2EA0F0C78F3AA0020B4150457BBBFB22C8DD88DA526CA45473E9FA1E142E115D630486A4ACC4BEC2FBC8B381BBE90A8AA6FF69DAC32A5E19B82F00EC205100844466DA5208809B9B9BA30CED93D827CA9EAED4D80DD80E43756E1E8CE0EAA31E68C4ABC1A01D93568BDC32B9647EC2D2980F0B04DD3B4D794F9D3AB5BBBFC17E4A49726B0882AB132020B9E03560F3681BB9CE15FBEC41A8E3D5AB5757EA54C496D48D5C5292BF6320E9AA723A7B25BE184AFD7224834DC6B51B4531C673F24A3EF2320410B9A202090CA80285A9A961B3E087EEDCBCE8D3CAC0167745545AC6B3A939DC14DD151F6B028505068105624BC9CDB2512CA37C47D818B6E380653D797D8AF11C86B720A54006AC243231A07E167C1F6F314B62D84D1CBBFA6528F559F51338BA83C466C14BEDD02E4B60A143444A05C5248911336CDC0F6E409A90C81CAB52DB87EC9A8E7C4F83D7D879A5AF1A19F0024C9F85D8B889F6CE3BEF6C9F3C79723E54C31A9B9C44BCE258DB52681BDD4ADF12A0084913BCBEBAD05DF76BEE9BA2D8555D40DD0ADDA82C9DEEF5EB630306C1BABA57791BB40AC325CD61404BB4B0E8E4AE862EA00438603C25EA04040D8CC49F184F7CF59A3A1EA5BE219642DE869FB74A8A86DECBC91119D2655D94684A13FB3F482EBF2BB300B1CED15C366F55EEA8C647C6E3273EF189D578B14D80CAD9AF70BE2C822BF7C720B9E8BBC14D4EF9ABF145044DAEF2DCF480972B4A35611B03DA17144508AED4BD0B2870F4A9ED4E602BCD4D80683F486C1667213B4C20915DA262B1BC6FF7979AEC9041B6DD99F3D80FDAF28D3AAC2BEB176B9BC8AE6E9284A2329216020B31A09601B5FCD2BEE695D84466CBD5DB44E6DCAEC11320F2790CAA2A5307D466C10B30446D599B6D3082EB9E7BEE5985F651F38264A1BEFD492670F427B77C06D466C16BBE9419DF67BC1B092E27C296274F9EDCD3A324652FA40B20A6B614696315030EAEB0D48E16702CABAD882A7140D8D396A2744702DD00617D32B4EA9B197D5B0A9BA19E637FE54893BE4D09175D567D9FC386F551A84C624FA058A7B614922022B7603FB5DA9BAA09946859518CE0CA91064D2AC2329E105CB25D9A56CC580FBF2D851609BD4BB01B2CB9950A8AD28B3B29822BD79EB08C27A1EDC433DA34BBC9D0FCA8C6A925B71403AABF6DA0700972AB18C195FAE5B63F89AD7541CCE294BF9A76D81850A91B459293058F4DD2446EF9AFDD96C229B6610DCFE950100BF69DD8CFF485A7F1830185B3802A673FC5EF84745B0AA7D86C343BE17EB8DF7E1BB3EB7058CEC2D6019597A3BF63EA793082CBA9850ABB00FE8244669E4FC9CCFB4F7891054F1D509B051F8BB22B9A57E2BC898A380A2443496327F2DEE8B28E6C3BB01C40A4B6D1C48B91DB2F09A253733658EB2B87C81D42FB72EB5DE414A0A7625FCD7C8EAE6A9F6C027116B669609357D687DC22ACA12951693082ABAF3B04C903F349DF78894667897F3036606861A9903C712AB20F74D856A3B9EA24E53383174EE90B0E36E0A0BE6D049325B9C69CBB6A2BF749E46B3C44FA294858E302FBA9B3C93BDCF7A4E6942FCD21BBD814D3CDB33A74D37EC5BE753DF024FCCA7D0F3FFCF0EA7518E22677B44BC7C4E2298A29BC3BF4B70041283B99ED58CA29D585D7EDB095FB243569CA7BE6CC99DD2CF836063455BA0C4E70593090D04C581F0C5DACC7C674342F42A4AAEC12495CF1153606D466C1F751399D25464C5459D6130BD852DF4DF59F26699177685C554B43760979AB028ABC1CDE8F31A0832535DB56DCFE7E877DDDBAB213208623B734F9360B9E882D491381C60FBF1C8CE0723FBAA10BA1D22FBDCDFA4CF2048E6EE3141A373F0B5EAA4660918D27093318C1E540B1BDB9B9B9B02AA22FA1153B4C81B6836324B8E471406EE57A0E29DE08711EFAFE120BB891E0B201BFA5139A75D09907FAB6E6344617A8C176028624AE2A6EFB10E45653239B22C667499540435A9D5A45F8EA127B427CDD526B74C000F43A691BA6FD0C055AEBC0A5D77894004571773564D1F6C96D85F1D4200808309E02824DE05D37DB0190680B1D4F435E06515BB21904943EA0D817822B4775B02946F946F6400406CB784E46E847EEA83C0C9D5A3CC45988DCD238690169FC42414F25798B241B23178DF426D1C99E808DF19C7A94A41D1A2349119DE4ADCA157DE491477655AFCF8076951C4525865FEF42174FD17988161BDA9712503C1DF1B1860155A0B0DC5049124593CB88EDC380F6F64AFCE7B6341296B6CF78E6A89DE948B70520B5B49FC2D6BD8072E2C489DD7D29DF151E2CAFC45DC01CBBC06E8997687B301DDD41A2F1479A5CB9726537B44FD2846A4502D0609B68B6F4732CEABBABC7123AEA10B8F9D8269671EC6267A518952C5E81855087506C4BB14D3425359327D297D08ABD07B7410F567743A34C6AA6582B223FA577491717957A5E7D2B17255706EE5BB2D1AE1E219AF03E4921081E0DD6B163C74659B54FEE3A8B40629F4D2F3CB8B6D0FFAE2D2BBAAAF7C57EF460A74A9DDC590D8E4020FF5CF106561A8DBD2D0546BAEE9F3191B741E53E2D106C8712E4D6A0ED35BBD80B309ED4F024C41D40B057B0CE878D7B953B2A9050B94FE326801013DB1714C52B037709F865438C4D22DDE0D4A3A4FDB095FB348E0AED53A030BBB2BC9FC2801609D4E9F3CFD66BA1250599ED4D5BF5933BDB7C681C0510456E69A189AFD0F9E0830FEE96924821B70627B8FCF7FC6466FAB1762D403F1DCD2A8774441850A4090C288C730E65D05B62D86A70FA9B70BF505DAE0910C3935B0281482D159E9134A14C820C58BB487BD7E06A32589CF89A5302C9E65F96D061D3D19FDCD282941B2CD562EB800A2CF494E9AA5A1A258613613B0E1C1B4D4663096E837C943A6E63ADDB52E40025D0277777677650826B88703EDE23899968AE756A4BC1C4E16D7409B0C9CD551DACBD665FD501A1A381A19DB5FC741956EBDA9682CA7DA424C2F1740145E9F94A22B8527FCC7F8F66351A08DC2CF11A329E72FA9C8F99DC628B80DD511D843F86AA1A966CD2DB99E0CA01848DF1443DD8062DEBDEA3A469EC28EF78F1E2C5D5421267A1E4660186F7422A67D0E26C7D5B5FF98C279145920CB1FCD5C99B891FB23B04109D1A5719ADDA99550C285DA1429B6EB785E08A956F947AA0E61399EDA9F9ABD3D17E680CC57ED2BD596EA8C8ADD3A74FEFC680C69298FA46CF65974160530CE9102A6F30915DE5B90C8AC586B2E0C586E2D5593775B0BC12F783157D3D2D8A394371A1D3311CC1659F0B00360B1E624B06ACE646CCE86004979302158D78FBAA8694FF95B874126931B609A6BA501F9ABA0924783992269A2F4990BEB93B8D0497BB91A5BBA9AA4FBD8BB602F4905C4473CD465ACE51A25F2B9AC87A4211FA8222F45A885DDDD708AE2EEFD19682B445E20CE4C508184E148E2E82875205B674A5882D2D0CD215630CE86D2DCED6C7CD49716709F495AAD020492F8AD3F7DB4C8F3DB4CF56EEC3D3D0229101F9D0430FAD5E87DC0AA982AEC5D90625B8725C21285F32D52855286309977632543F34206524D2778E42F2020905DB346E3177B40F2959C45D6D0304BC0655F2613C6D8CE7BA976F6C3B08C8D1A943FB28724795B72AD513AA8B3AA43AE9DCDB9DDC55F6FD7DC6730242BF0320BCF1C61BBB856275CA2DD5F8DA18D01828DC7BCB2AA09F8BB7BEA26C236D36092BB38CA75FA86D521965548E361EA9A70103EA1BB07E0CC660041794377F33E97E3273496F663A9AC7CCE6AD866240A9CBAECF0C467089F924CE93984FCEE9D87F5084243185578801958DA7B358B3BCD08F3BB769E90CA02AC756E8B257C2EEEC9843FB68A509B9D5950E68323CE9844499476A7C7591D445BC92DCF7A4960402C2FBE8B428F1E7F4E728DB5268C268332A6F8362337ABD2B03DA069CDB96A298F31E648E06C7E6AFCA3D23B620B70BD0C7E9D03DE24940FA693C1490A38380A654063487B7B8AD115CFEC13E08B5B92834265D28C9B0CE06A8EE1D90C8DBD038C92E50A699248A5E17FBA94513CBD9E91B1CDC5B95E4A80EB9B09206A42D4272C9CDC2A5ED1BD63EC6039A5C20A18AB03C0D915B52375A483A19BB9C38D0A204578E9DC11E089E0BB52ED09D13D195AF72B475A053632A424BAEE8B973E756E34CFC2CC562DB40D175FF297913CDB6A7422A480492C88CFFDC95DB988EF0789169F6FAEBAFEF6EB891056F2B0AEF7B5E890F083D921BD954B1AFA4BE9B00F2116741DEAAE642EA464051E53E362BA934D05B9534D9104E8CED06E9000836C4520BD04F475972CB8E39D244FB296CBA499A48E5481515B731F86127A6964E6455B65373891B0B1D145F778FA30BED93DA951A40C296040ACFA9030A03AAD7E98254DC2B69ABE5D937A119C613B796CCFA31AE7A8143A21F914FCA450E039AEA8DB4D561ED2431BC7DFCAA2420342874E011C143F3158251746C6E6E8ECE85B15D1748DBA4A605BBD34D0C68C9A09CE2DD07BA5ABCB4A560AB9EF84E893C7F20C61EDAA70363DD263753B98FBD8E505B8A5C5014DB444B41532A38B42274B396F1244C0D7B653A6EADDCA70544535EFD2D8068DCEC167A9F18CFA29B6829FE318C273D58A9FB40C0EFD4A324ED800F52DEAAC6934CB34F7EF2932B954303A05853E394C8BB6C8991CBB5FB5D99F1A1A71E25E5548E380B9D804459668F3EFAE81E06943AA0A50BF9666DBB13D6474518620F2DD1E5B7B098B88D322AC732A0B24B2449041451E6A41DA454142E4270210D6C576600911BE339B19FE55C5FCB806AA14A9AC81526308756637D00D2D8FA0A0A9CA63584F795F2584224D758DB52F85D1C4A915B569A10032A5798366483105C124F42635F0034BDC7661C24D758DB5268456360A6B6A5C8715191C884F50930A2C78722B88A57EF237A89D03E449F102FD138E6B614042DD90275B1B614B9A028EDB22EBAEE7FE4166903081A185216A5276D56F6D8092E3621694B21B10FB9050B4C51FEBEE416466BAF788CD08FF42D3E4F137A741D514884AB4D9EC6CEEE985026419244B5B6B49018AB262332378179B028F1A62F27C6532B4037461D4FEDF8D98A7D1328C2634AD49BB6D0A9DC77EAD4A9D9638F3DB6028900626365074F6ACE356E7CA38A2D655A53EBE6140B804BBBEE0D6BBA1CB6721F862BE496C6932637D680EDD316AB93C4F0EB570006A90A184FC89558B39A89BFE87EC8F680B378F9E597778371C88267C3CD925B8336B2F15F677754134F09C1A618CF89D01A46E590B72A6922835E2091341177A1F9C0C36B9226BD092E27C2AA50589F1E63EED544870F070AFF3959F0B677097B2ADAC01C8CE0725FBE7406D06EDCE79019ECBAB1BAD4F4C1B14D2A9B6048DABE067868AC29612569A1DFD36F90E5569CE02AE90E850C57894200818A723734BA082EF25489B7B095FB728DF3546FA4EF226E941890237D7EC8FE2F217D54EC235753A21032C6BD373A7FD61665433A8AB710B1A5D54DBAA2EC83DC711E34A9B9E14BAB3EC8631F8438470D8CC49DF46213BB37F683BD12F2434404CA2555CF55C648A795265D2BF6ED1BC1D5F663BA51BA324B02C0EEC98AD6604CC13B7B0FA9155BB98FFC1055EE63E75486A48D011D2A9C2F99E04AD920B38CA7FE26C6532497CD5FED9A97B24E0740D0F9CA2BAFEC06E488D8D2DFD0E41ADF5C326B5F5A5F11E3890D42581FD55C7C6E630244B703DBE3D5575F5DD9257243659710034A4A8295C2FB5A3805C9A08B131868FE46BF8C366E630247FF43E3AB7614522BB4F89634F9D4A73EB5BBE926A0E434E6ED2431EAB614BB76032E172E966D563355E8DB7F9543F7666DBA9105AFC22BFA5B0B56AA7C30820BBBC0D6B9285182A9C93D9E42FBF2790C2D562B4DB47D6F93CE8B135CFA411BDA57E22642AC2015FB6ABB6594FD4A348EE4DCE0AE960879F05F2389A9EEB43D0CC195425AE5BE47C53E4EDB69512AEAD8B163A3EBBBC90E29BBD2724965485274C6AF695182DC1A9AE02A02088ACF437F13C2263D690764ECA17D7EE53EF25605120AB6695C52BA37978C03ED2C31729147B22E650E088685DB980CD2BD515BB20FC405C936506E08FD56E946E04B935450142D83105BFD6D9282805F7258910A12A13688670245F8602F4520B195FBCE9E3DBB4B9FEBF4D30EBAA88FDE36469B2B2A89C05E08D56F49BC9D7A94F4533954EED32135AC809CF3E7CFAFC69B20E12E0C6811AF24A4220003289734D085FAF9ABD351EE60BFE9673FFBD9EEAEAC380B915BD401B559F025CC82455B463B3E38B52EA800D3D4A36422BB863B2489B521A9E87B18504913D1E49A274912D4F86051E2F8C1701A4D3D4AA684E6FD335AEDDF30A0D401852A47AA0FE29548C7C94A6E520F2526DCD6DA186B5B0A4D16DB095D532ADA6C08CA4ECB48D57B5237BD2446DFE4952E920220D460D8B5CA9D781C65EE6A7D6F2B6F430B81AA7DB1E6777D41D277F1B6A60F944A68D6E4CB70D229B7965E1D18AE105C870F1F1EA5CE8106979148BCAB1850AD6A81C4B2BFA540B16FED355300610F481B4907AD125C2C89BB758EE4D2BD53940D06542EA918501DD6EDEFCB700EDA5E33C756405C52D01592CB0F28998E8FC61A0654DE861693C64F79AB9228F478D1CE690A039A028AE2ED35439F657794882E5C25557799F257F30FD91D1A3B9D523954EE236F15728BB614A992A328C1452B2A3F7F953D105D38FA5117CC2EE114E3594EE588AFD0F9E28B2FAE2409A17DB251880FF519D012764792C44045E8C490A2B9DDD4A364FF0EC82BC580527045768918507AAD36D5012D4A7049459027490D4FCE2EF9ABD35186DCD2E254589FEC372D581ADCD0BB44F6CA600497802063C8AA872615D127A1796A4BD11D2430A09216AFBDF6DAEAB728E83F08C1D537953E8511B415FBC6DC9642EA98CA7D30A0396D2972BC11C20601C6A0ED354B905DF8EC905C54DB5F87B6144467416ED9B614E4E4A4B8F3393CC6E0ED35BB6E8EE93DC2FAC86C0708D281BE1BBB0E6D292CB945A41B0C2895FB6464FAE59FBB2EDE3B82E0E2B0E50DE8DD2582468F9351BA579200122D145BB94F634753DE50A5C3A13B372F4AD4BBA06625711B42BB8DF19C0278D20E02850512622D244954B98F7CE0500C688ADD5194E06A9226188E546F6113C8329E53FE6AF7436A160694BC1471168A01D5219A5C2009EDCE96D869CDDA4483F1D4856234E90229791CEA5E3401A28CCA2106F46FFEE66F56209124114D2E490D03EA47E00F965742A53E482EC0609BD5A4B06C1338CA1E94CF146721BB449244A7A872D4B8AD285C9CE0D28F028850B0EF40E17CA3734DEA9CDC620BC47E0F59F09226D8253AE5E9F4D9CD6E24B8A4C328F49AE3C2E60E1A1E8CBC19A7A60E8D0D1892BAE22C20B5FA54166AE32D50291A576DBA759D97C510D13F6DFF4B72126D3709EB934BEBF4E707630386A42CD966D4E3D4626333B24F3DB2C18AB3E556D4E9624BC0DBEB947A424F52C5D632A3633DA8B54E1E8EADDCA7BF613FC58EA6D4014DCD161C9CE0CA0584A4828060194FDDB47604D7B9621F875FB94FECB0BC0D156D25F20D7734479D9452F78B9206918DF1D44147E650CEE574EC553552A33A253501C9E38F3FBE7A2E80E83DD2025240D1D7D8EDD5FACA366011EA0916112943C0C8D4A3247F81852AF79D3E7D7AF6C4134FEC6E2F40930F55EB73D14545D07B55079B62EC90C26F4C4799C356EED398138C239A5C630D031ADAC21FB4708ACD5D255146174A40EA2415F657E590B72A17582021B9991850521673DBA066490CFDB00041C53E012156DE606A47B1BFEA46072090CA210654A76C1419F9B69A7051828B32C68021B7FC520E28A83BEE7E6F947D573559105C4380440B57D24431A044F0DBC4E6A29581A9E339C4418C2739AC54B45B8E50BCB078A8138E2D2657B40F6D1DB329304AF10E0727B872A4414892482DC16D080C34D79395AD811238C61CDA47BF55585F791BB6AF5C8E3419BA0ED7A28BF8CF89F184EDD440E8396D22E5D2AEA3C14A9CAB4E19911A178D91BA0DC8C887086C62405340D19BC7E85264BEE93D184FA2BFB5522411E46EA5C431AEDB014D4E851C7142B4D224C34FE3179326FBD2C8A60B38B015A43F2DE3A91B52CD28F4E9E4CEB61F1A275212A5720412A91B35B8D1B80B207A4FE39B2239FA1C8B2EAA83E86682788466E948ED20DA18CF218DD77550396C27BCF4D24BBB8562CF9D3BB7020C92448FA9D2BC882A010C564510D6A7033D09E339956E1CF660BC7FFAD39FAE548ED84F9DDA4FD1F8134D5E2A49ACD1C6104A09A0D1EA2791D986F6A51A48D351EE8831A0A2C9051A0144EFF58EE08A4DA8A403F5AF2DE3D9A7686C1BB7A19FEDF2AFE66CFBFEA6EFF0BFCFFFEEAAEB7D69024B178E8931A0020A3D66BA2EDA468921E920C33235C6B38B8EA3223FD15C6E100F2402A0D764F5E1E672AF41F72823D296C5EC1B8610333CF5BDB2F5A88458446294EEA8185B3D105C50B6B46690A1E5D07EBD8B34B8038EE87552649FF40BD1E3BA773A46C536BDBA925B39AFF5E231FAF427210D81D03E184F19ADD283367F3520EAF5C2B2C08495FC5CCE772D7D77542795FB684BA18D2FFAB6508CA6CF622C1AA893AB22DA6C09490585B113E349ED2855B04D581DA9126228B5D264635499D7173CA4FF61386DE53EE5AD6A2111ACA33387012DB5C3BD28D17E093D8A8A207F556010E3D9B7AE7501D5520D243152AEA54A19535BB94FEA866C332511E975A959E58E204D860C044E26B8623FA81B9028A42BB344A4F5A70B731B55A2D4085E72618931A82AD2D8D9BC55A51BC8D378E49147F6A42B126F3144ADCFE4BC129ED39559EE10D57D652BF85D990B731A39935115F80D1F18A992A2B881ACB124505879ABDA7A904DA2A82DA91E42FB6C8989A137D12AB80C818174453C085DE86D623CABC824560163B5EA018C545B26069041183EE26BC55948754BDDE8840115506CE19541B6DDF583D4C6924408F52819B81D851DE02A91840AA9901C1BC3FF9F5440ECAB3B4D25451850B2E0254DB4332B8048150D4270E98B45CC7489F1CC0104648C5640425B8A1020DA262717204DA06B03E82DA0B66D294A56EEB3E3AD854A80B6B2E009E2DE3782ABD42E1E0417F189E4AFBA9BB9DE20DAAB0C6991CB89C4A4531B485A6D1CDA52E06DE87E21B7BAB6A548E1310627B84A80835A9754ED9318246EA3A52D051356358878F65776CCE7970120B401631601A3FD9D7903581B3D0D520F21B7B47D2E754D047E6A5FB35417755082AB8FEAB01D99B55A207432DB52D8819F071E770A115C29C0E0B5B939B3892F9FDCD282A1BC2306261B635D413138C1950308D90A72A7A42268CF2DEF45B64A8746BC556495571E28E6119B62199014A91223E6F5840031EFE3B66A4CF034940BA27193BA1103AA7194DD40C04ED362BA2308AE3D5F50C7784A22C883413D000622B97AAE5E5F32CC3D15B2F400323430660D00E9C56D10032A905021479244B116523722B66872DCC6390D467035F53383F194354C56BB1ED9282A6079FB935D45EC0A7D6EC3B3434A0363E681711EB816DF28EDCD63D8CA7D52390289C2FB9E7EFAE9D5738144129918D0A236466A5B8ABA0CD2EA64AB586088F55F2D4C68CD02130030366A69B26300321B0018F67737BCC72A814BE9ED924285BFF0C20B2B95AD2E48E22CA47AE882E417D91D84E012474FA1726B3937B5E72EB459B6F40679E94DCCB2BEF62D33F0A89B262074F14A62EA64A341820CC67C5A06F4273FF9C92A125F8B56F19F84F7A18A049441082ED2E86C7983DCFCD52CDFD9D92B4E222D02EAC05FAD4B038EAA06C4D2532F2581310BD8165662F86EEC1EE9C1B6025D014A1F9A1BDBBB4412A468E114FF8B24216C685F091776CFC89BFC55BA110488263B314B3321332321E6061CB980480549D5E0A1CC3DF0ECB17188B79004C606EB9BB71A9B33185071257D166A7182ABEDB0F9AB9210149415DA7553CE02BFE90D6E48A46F046C8826DD5E0218B38011BA11008595602BDB07DE82D2955A0C12FB2472B30FD5771E06299C522A60C77F8F9A523AB56AA8B82F63C9AF026368DC9D0655B23446676526C257215500383994784862C4BC93B9F71D41E69560609D72E9B5486444CAD3D0D810DAA733579A9406C9A2342088F114DD0BBFA11B95789354486CB5B913A1B4635E42939BDAD5106C532721DEC257653B6DB601B11612FD944950BD2DD923905B7E2BCD5450EC0BC1D5F419685D9B9CA41BA2017D0EFA6BA9A101DDF6A44428D6A28AACF665641F23C7F89C35FC56D5C0D0024E794CDBEE7E7652EA976A8C887ED3219088B750408E161AA17D7AB4B4C050217E9D5B5F51DD9766BC64662BA7A1406D2E0B8CA5A7429689D2649939F931D5D2B6AD6F3F636D8B6DCF20CE764775CA1DD5182BB44FC9CD4F3EF9E4AEF415509A5A7FEC4BEB2B0C27E942CB780A0C309E7E3782AE45E69DF5FEB8FBDF05C69DFB7B5E7FE76AB2EA15B86C3052732441D67BCEF5DC055F7D3D9527F196F5350A185B4E451CEF5BF1586A45D1F53AE5FA2AB683A26C96F8B22A67D0C229D27B02011E04617D422B9D007D6EA3CB85D4DBD0DB4E1D090007DDE3EFD7837ECBF7C6063954A229754272631742A5201A9E1F905A70E3B8EDC66FA36F8D102D488DBFCEE79E7B6EA56E4E9E3CB922B664D7A16EB46063F65C6F828BA01281403F9693BF9A32190E704BE7ADECB85530AF5315ABC5876147471884D8F7C682514A82A3ED33218070F29CEA006E416DB873C749C3B91BCFA553135589482EA2B62816AB0D37A91DB9C4524345082EFF66854A2112209408E7933A722B68CB8162E1066D5B8F5A51121CB6B898FF9DF6B14BDFF85220B2131F7B0F40E8E46F4D9A1640ED6D5432D69DC1B92380B889ADBAD862FE1850B98F2CF8C109AE3E251BF55EED8AAD548574B09312F3BA3DF8C20E087FDB8ED000C13E87EEB5CF53EEA1ED73A1CF84A444ECBB7C50E89400D4FDF39E56B218D0BA46F8DC4DE2B65B781B6E52B71C48165D55CD20F1187DBFA449553889B3ED0667C30DC88E3398361C382AFFF798743D5AD7D69754BC6F5F8B1064C1C9CDB9C7AEAA45D7C86AD5FB7A6E81C2A9CFC8803C71E2C486EEF3D2A54B0B671F6CBBCFCFDF7BEF3D49928D54553384CBBAE853943C24496AB179D3DDF8C29D5B4EE71D90712423CCAA01A4800F0A9DFA1B5797E7F67F432AA6492AF4ACD791FC397EDFDE1BA78080318FC4B36A46DBE7E7CE9DDBA06A8E5337CB5AD5CC9B54CDA0C5D9BAB09F01C36BDBDDB45C38D925D59933672A27250EF8AB1D3287E7447859105830F84048E92F56BA214ECEF7F159AB16758FD42BD3BDA15E684288BAA582F0534F3DB5A1EF71EEE98603C94D67AC1E7086FF2DAAA66403DEDE94B8FD3177C34B77D15BE21C9CDAD83E7BF6EC4159C5EEE6E75602C44E5F4AF886A5B5EE535CD6218F2EE0088CD7EE3D4A52001840C2A9F7F5A8DA9FA74F9F3EA0F179F1C517371C5096EEBDCA8163E5D5587774301B23E58BD804721775C35DD40177735B4E322C9C08ACDCDF079100FA1C138E4460F2392D87E1AFB2216C9EBE139F6AE4C6BED777632DD891A4BE8AD5490B90279F7CB2FADCE73EB7E2299E7BEEB94A8FFABC53334B67B856A58DD124892137E8DAB56B5BEFBEFBEE8AE9DBDCDCAC74A14E651CB0A51BFD1BC7C8B2D220A48A422E69AAC158427AA448A2142337F5FA7C4968DD5CEBD5586F86CFC95E13352EB03CFFFCF3B31FFDE8473B4E82CCDDF8BB69D83A10B3BFB201ED447FACAEFB750780434E32ACA48333906E7CF6B39F3D2486CDAEF0984408790D5D2E38D5F34859DD6D8C6529491123C29A3810FFFF00880F14AB72B055B425F1D77FFDD73B172E5C90AA911ADF56249C5BD0BB5B05DEBDBF71F9F2E5538DF7E0263F364B371C180ED6FAEEA61369D703376241B5323CA552EA7D8E798413904D4226CDDDEEFB0F0456D2526ACA7D6EBB6912611543F3D93699FE24B4D1DB1620A1CF98F7785384DD81884A911FBA655E5F4DA0BB9F1D73FD3A75680E44065656A218C06883E426DFFFEAABAFDEFDD65B6FAD7E570C6B64CFA715185225E7826F2C16A26EDF8377901E63FFC27BACEACF6F3811F77BCF3CF3CCAFCA28524C8158532E583721C3D4DDE45F7DF7BBDFFD374ED21C76FFF36987F87F7BE5CA95C74DFD8DF7DC6BDF74E2F1A28492FBFB4D31CA818DADC6BF6BD054A9FF67F6662A03B894C8F15BDEAF2774C319E4BFEE56F3A33218EB31BAE9EEEF876E5C2FCC3EDC92FFB986D66C08EAB51BEE9E3FB8FFFEFBEF759FFD6DE795AC68615504B607754A9C5BFB1F2F5DBAF40D73ED60B372DFF3B7DC387F7B766BFC482B8BB67093F2525F1DFD3BBFF33BC72E5EBCF807CE72FE1565506917D0CFB6262056ABC8DD881221546B70CB7DEE0FEFBBEFBEBFED5EFF845C5E37683F72C6EDDBE6EBDF123B3F1B38EA7A80E381B7DF7EFB7F38F7F3AC9BA047746F6EC1BCE8C6FBA2B917B915AFCD3EDCA2679778C781E0A1471F7DF49FFCEC673FDB944D4124B8955404F51C3D7AF42FDD42FBFDD217BFE8FB055FFEF2977FF7273FF9C9BF7496F279D91BBA78194762F5A4FFFC1D3E678B9C770F9FAC37CA246EAFB801FC0BF7F75DE67AB66B517BB33E3F8E6586AF69653A892189F7AC08BE7AB56E99531203F551B90572CFA73FFDE9DF7CEDB5D79EFEFAD7BF7E486A5C8B49E497F88D489AE76FB831FFBDD20D807A01E32B5FF9CABFFEE637BFF9EF9DC772C81A5ADAE9D3F9D4534FADB6826D7942270D8E9C3F7FFEEF3A20BD6A06EB7A7DCE66777E3DCF9CE38388D80E4EE2134F3CF1CFBFF5AD6F7DD6BAED1A3B791FCA21F9C217BEB05A6876DBC0A9922F6A1EEBF88F652980CCBBFEE3D7BEF6B5932FBCF0C2EF5A50F8C7B3CF3EBB8AE1B046A26C150796CF4B4DCE3E0AE8F5072D1A50FB3139962DE72D875B44BFF4C31FFEF03331EA5B94815B84BBE531399C14D9FC855FF885D332E46B80CCAB023E7C67603811F9DBCEA6F864DBE7BEF7BDEFED66B3994DB3CD4CC9B0FC989DF913319F7FDAADFE8DA6CF08342AA9649BE0390FC469997B7FC3FD79A256CF4500D21918EE269E48D9FDD36714E403EAB54124AB7B361DFE381D4BF99CC60F095CF792BBE96C92796DB79D2905906C1BA3FE91F92FFFF22FDF97215D568FDFF9CE7756687796F44B13146E21D20E662CCA55D0B58AEB3ABBE4EA0F7EF003D9179FA801A155F8667DBE53BBFA37726D90452E20EAFF71F37BE8626A7EA4902D3128C3C9DDC84F7FFCE31FFF7082C22DBC9126F264CA6715CA2717B6AE4DF2626DAF1DA83DBB7B6B801CED0390790A2044D6D4BC83C81689BC87AF5EBDFABC734993B28714B1247572E6CC999F3B63E97F3A4BFBE60485BDC7C18307AFE6C67F38A3F31567E0FFB7D947E992028824F983B50479B456318FE4AA9879062064303E5CFFD8B9679E79E69AF3AF7F9468582D9D8BFA8A7BFC2FCE9379C5B8A9D3511F6E5CFED7638F3D762505140A7178FAE9A7BFEB8CFFDFABA9009B755F042055606309DAF440FD0302C5FDB5683A5AFF2D37E39EE3C78F3FEE2EF25FBCF2CA2BF7C76EC459CCDB274F9EFC8EB3A69F71BF4522CE7B359BF9FEAC258D2F363E23C446E55CD67FE4C6E91F28AC2FF6A1B367CFFEDCA9923FBD78F1E2A57A2C6FD644D93B3567E2E7DBECD49FD17BEFC66C10D857544C081873030874D50335200ED71204D09CD9DCDCFC94F3AD7FCD81E3A87F134EFF09142F5CB870E1CFBDB76ED61776B16600FB4E7609A0DC6EB0C9763BE1A4F0DF776AF7736FBEF9E62D85704F9C38F19E93BA7FF5FAEBAF5FF0267FBB9EE4D7EAB10DB9FB3E40AED57370ADFEDFF7EAF7B7058ECADBD2AEEA0BBCCF03C43D35101646FD2CEACF1C3B7CF8F083A74E9DFA95EDEDED130ECDF71F3870E0A6338CDE77CFBFE7DCABEF476EE2AA4709C72627375B2CE73BAA81C0D2E5FF366AFBEDB803C0636E513DE98CF5E36E0C0FBAB1BCE1CE6B0E2C7FE5407375B63769BA320BED925968312E28264100C8FB92EC21601CAC81715F2D210ECD6EAD35C5CDCF8D35BC9224F7DD77DF03CE9DDA321E0FFB1D37EA93BFB7CC8D350DEAED7EDE77E2733A2C6DD4BA5F637FC881E12E27210ED505726DB1187F4CDFAD27DAEE2B550900D90A00E45D8789AD98C4B8AB9E702B21528B89F845CA961EC2BBE49A966A4B51E2F343AB25BFBE57A8FAB19D5C5EDBC9BCAEDDAD7E031049F0F7140713B331E60D80D84FBD7DBBFFFF4EB047F6039C56826CDDA24A3CC9311A6B7F72867308D80F01F1FF0140E60754ACDC25B50000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (87,1,'Rack_42_(64)',decode('89504E470D0A1A0A0000000D4948445200000044000000DD0806000000027AD4390000000473424954080808087C0864880000000970485973000006B9000006B90185FA08600000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000020494944415478DACD9DCBAF244756C62BEB56DD7EF7ED97ED76F778DC8CDD5E804642462084108BD9586C6681905723849100A1D9F11720B1648158031B969660818457AC90062C4B0819B5B0842DCBED76BBBBDD2F77BB9FF751C5F98AF8954EC58D888CBCB6B332A554DE5B95951971E29C2FCE2B4E34F3F97CF45D1C8D1DA31E8FF977D5F0B81FDFE6B946838D0B172EFCC6EEEEEECFF7F6F67ED99E75BBE237A3F1783C827EBAFABFF55DFCB9BF7F6363636297CB76FDB7E974FAD757AE5CF9CFB511E4F2E5CB871E3D7AF4BBF69B3F9BCD663F36426C3D7BF6ECF0F3E7CFC7F67F0D015708125FE3BF53DF711A3146870E1D9AD9F5B911E7813DFE7FECFC9B37DE78E35FDE7DF7DDBDEF852067CF9E3D692FFC9935E68FACC3AFDA79C208B0698468FCC8F9912D7532BEA70B71ACD3FBFEE6EA38489DD9B63E3DB2F39AB5F3EFEDF37F78FFFDF71F5613E4D2A54BA7F8C71E70C61EF0A7F682DFB7079EB3F3A889C224377A318BA7B82016875AC2A4DE2702E8B3C964B2E4143E4BFD666767676403B86B7D786A7DBB6DFFFFE337DF7CF37777EFDEFD4AEFB7E7CC3EFEF8E31562A9B3F769F4D1A347BFBC78F1E27963C5B138470F9428D8C346F6D0C5A9BFF95F57DD13BEBB6ECFF967FB9D7EDB389C9DA7B023268E3A96C09126FC3F0FF7482E0F5B27DFB6CF8E4A6C748A40A953DF1D3B766C62D71376FF096BEB9FDFBA75EB8FED99A7F45CEBDB557BDEA51582C0763A8E1C39F2F8ADB7DE1A3F7DFA5494CD9E7C6F7832DADEDE86480FEC657FA567AABF8110FE3C904847E7AEB5F19475F2A7D6EEA3EAF4E1C387D5EEC5D50672D11708B2B9B9B9FC5C57FB7FE3C30F3F7CE6C52F3E26F1C8E430459FABE38F1F3F5E10439C011BEB306ADF0FC4D80C8DD768EE85EBE80044810822EE46B88AFB26C68DBB5E94C4A1B4475C417B5357B5D7F7394910CFC6FED08BC4050F1F3E1CD94CB2101F519A8688407A11A71DD3D0F85120C6DC5D670724068D1A874960124F06EA0322A2368B8375551BC525FE5E7027A736ED23881E76FBF6EDC55554D7F7A74F9F5E11154FF1A813E3708508BBE19C1D802063F73C44B0095C0257EE6B0B622442A85FE2680DA644FBE4C993ED04D103384CD6369F3C79B220C08913275670A3244AE1BBADD0E09113112F365D093273E232F39C639D9A7AA2B8362CDB04968021E21E11C688312EBD78E291DF4460FBCC99330B0224C461F9323542DCA317E8BE208FCFDC888E1C11F63A826BE3B881E7CC9DDED4D8FBF7D459DA22F1883925C60EF5D36651B573E6FB9C15190032458440AC059E885822840EB125C4B1FBB7A319211EED5A704D3D63F9B90E7BD74C44D0A8D3768984D76273C0EAFB9B04552F32FE06FD5898F1F5D75F2F3946ECC74B99691C01E38EA48660DE4214CF1D9E4BC611D026B143A73A4CBB4434B55522E339259E3C922213CEF19D3B77164004C54F9D3AB5A27F78DCC800ABBF7A51995512A449DCE789B3F2EEF8CACC22224008D34EBDAAD0E4B8638543C24DCDF1E3C7A5DDAD006A89088EF2E7329C31CF2869F316EC1827EE5B6088BD6B13F1CE89067F4B7C0056D4FC563D844360A51F4284F8E11E4F8423A8F64167B95320C6CC71488920A38496BBEFB0776E33CA1E58531380BF061B68EEFB5CD4549931E207EA859A8E75A2A089F2BA9F4665F062DE416C9A0CC7A408A399663918DE986B03D62A4D952FBD58884BEEDFBFBF0454BD40D31680CA549750D272844871C9A84094262260560FF2C0AA767A6015D1F43F78E2CD8D56D5DD7E30BD71E3C6D22E906627F9034BF479A941D1E8C75C31ABE09079813BE6B9F7968055570DA8CC8F40AC71ABEAEE4466F7FCF9F30BB1F06A7A4E3B8DA6B27305919915C03535C3CC4A44B1B64E990C4AC04ABF9CB53BB2019F558B8CFD3DCFD8294B0248543425EB74800AA8B671CA2CFA3C89990962ACDC6FEFDAD6BB65F67B608D6D9B787AC6A2AF1699F8065E84EF839945AC87865A12EFC2743BAF50CE92F7495175B3CD0A27E0A2C08E1167C4048ADD9155E6BF3A2A0D550A1A7822DD44F7A2A0157CB1A5CED6388DAA3E4F71019D459C007F7DCFACC32C536BFE6F0A54758800E8249E0829C52C7CD614D4F47D671C57710D9C57E04D1158110DB45511487D90985781AA73D06E0B54FDAC9251D157803570D699BE825468AAB18255F29201AC26FAB3A2C878E30E17628908A2B29F8283B356AC79B72F820854BD47CC0F500A58537E92564D3587BAEAB800552223C0F2D6A3F799F47DC40E22FF391AABD756BD8A5054DDE39886282F25865985E94D0F0147C425EB2244494418545C016ABBDAAC2BFA08AA7DABC804826CDEBB776FC186F851BDC59BD351C2EF0FF54508C594DB740EB0C38727E40610A8FA3EEFC327C029506EFBDCB973CBF93B339BACE828CE0B35ED933BBC395F52E3BDA52BD7865C88BECF6D22D39454F4101A5C8812A0863B40F1D41E45654FEDD0E813904A399C7322552D32B1C54B600A054D9F01A871B4BF4F3C893B0A21683F812B75DCCF42806A4964566619FBBB51E7F1A3EA211A05009500D0BA0851431C38C0FB57B1B79861BAF84326210D62253095D34E3DD5FB56CCBC63AAA473E04214A7882868AA55C69DFD78474EA01A22E8E14C672EB6DB9B6246676360CD6108D3AEFD76566DCBE46E42D91198129C623E7781A25E65076B1B632ED6B273DC5315DB8DF33278A1F08494073D90C0B10B4E0D023B005234533858ED4641E3DE4EFE10E1AAE23298CD7A81DC88E009AAFA508E128678D5DD03EBD6D656D3C5FC9FDB0F96065C1B11BC46A814ACBE0861A3BEE99D422560853002565D09435445FF9573550AF3F112D2AA685470C2DCE98B200ACA6363915295224E4C2870AF68EDC639A329F31F372279165E0EE3D9A64F71D1A0D01E8035362B7244C9C5936207D14AA09BCC21F004476E2169A677FCF004885D0168AC6A7BEC66AC721019C537953D84DAABA419CD2C298B3717E3ED9B28250C614A16A11858B3E2C7550E2251CB80675B1661CEECCFC54E43F24AAFA08A88948095F6AA8F6424DA6FEAE33231A0E6F024C68DE099EF1554F54E40559DA51F35C0DA292E93D2F488E4A1A0F99159178EA08C91CD847F35E7174E69AA3591BBA5862740C5998CE78946A438A8EF59264520B8D7FB52313300D6EAFC107D69D4DE54C45F3F1296E821A940778633367A7421366DA2E1815527FE55EB5BBDB56B96EE36D1B95CA03B618A63E39CECD1FC9FC82AC7995C9A6D7CF832F85697D66E510F819A6D2C49B2BF770384FCCF3ECDFF1D5C88CC20412DCFCE3A71C24C676BD707A6C81C0A0E9615056EDDB8417A970F409580B553AE3B694972D77B3F2AF9EDF845866AE9A2AD7A60455B45B4BCA6DA6AED0A544508CDEF04884BA9DD51E4FD508F18B25163CC79A732C9BD9D32888E1D3BB62DF33F91949B24042F0BFF4F7B9C655694B29AD80C7A0AA05A2532A560B737FBF140B1DA2A80EAA31E41754F53282106A56EE86F38A1E43C6A7521C6F18D48455E3A8AFC82210FAAEB8EF1AACD12051F7E8835E99268ED2348642E37F2A1EA140148C7F453EC1088D006ACD85A9E68EA4BACB32445C677CC88B0A11F8123A9D4EE8CF5A9F36C9FD6AE66BE9C132815BC722B3D925AEE12B0FD889B1CEEC681EE122190C7802FF7FAB476C5056AABC0B516580398CE4B5C3E29B17ECAFBE441D52F5B35D1EA55867CA6B2B8A51658DBC47D12CB9F0F7413CAD42CA2CF8897C676C03A5D005C09A4A1B19680B524322B04B1CE4F64ED0AB535FA4C6BFEA5B5E2B40EDF6A0E587DC2F1C8ADE8CC12C4B902F7522B304B5E348D4470CDF5EA42948890A35213F4C62762449A1771314AAF9CB7A5617A40455EC38A895E5D883231821F7819848A8993D358E38CC5156297CA5C783C418CBC12E70356EB38E060BC78A43DA42C72DFEE529F27317B4139890C663FA9D15E26871086883B8A7F9529389E003ACD3281E20B17A2282E71F00B8652D1FEA168AD392E10F7BADA04C4A99B6A8298A2B3EDD33173A9DDDEB1CC92727B71EFA0DAA6C6C7C0EA15B32A82B48D3AE2E48D3C0C40234CAFA01A1CC68BE8A23819ECA8F1935413C43ADBA4AC49710A2B30D102D1523DD0AEC3D2C579A5B6107A2587358E1D75C610FE16385127043914A6902B120795D78D1FB4854C00FDEF6D9C2E9A75ACA94E959289470A40AD09492833B0478FD938D7490FAC9409024362506D55DD8DD576BCE95F52CCFC229DC09E47FA240833A00F49966233225028DE30AF2248891D53FE054688954A4698073D62C72E7508A48CB19C161129CD369D44267502A868A439AFD4BA0EB54B0A24E2216065BD6E0E3FAA8D3BFC9394A9F179A094E81ABA62860B004DD507B74B9A76D2B813A88ACA924FE6F6D4D2D594A1672FED2DB66BEFCA2E64F67F7B0796BBAF297ACC3CDB0B5451B4526C16832A89BCC1DE79D623862C4AEEB0D2CB836A5BD05B885A6DDCB5B1A3F7811009C3A3668DDBEE514466CC846A8B40551CCDFA993675BEB362E6FD96EAB45F8189F7699D1A6A7C801B88BB725B00D6D4945C1D86B0076E507889E00FCB2A6A329A8760E9AAAD5E8742C17451C9A65A0FF10B86FC2ACC5263F05A4DA7D35EAD5D7534CE5549E11EDCEC736DAB45C6A8B8E757219588C05A37FDAF69DA7EDBABB52B31C1758833BC4D9D0F449A77C290522AA65BD6BEC417D6CFA456727EDF96AE1432AFAD0A3FBCA55B8ACD740655A2FA3E1533F6490EC9E205373450721E11B8F26B683AABEED6F9A9D23189CE51C92EB5F070C8EB66184CC488FC33AF98E50833F6FE0DADB9932D40324A9B8A8E7AACD1E81B54F54E66909268E03C72E03BCF8520F6D9326DB118A73A2FD324344D0B546DEEEFDD85A83648E740346A2CDC1C4E2655771FDB8D4195D90505082D3516A73E0F2C711143DC225F0ED8E115AF98189DE2323EC641BD654F9838276328D62EB30ED900700E1901B5F8B7421023C0A640D507A6FC1AFF2111A1CDE6F2FE553C7BA11FF5711923C2B6AFB45BE1475DD6F8B1DFF696416418B68CCBA0AD968C38BFC6D7BB100F64EDA60C22000CBB41006784ECB5E48EDE89339CF083CFC4CE05BD0FAC9879008A1F00A0FAE26EEB1213E10679EF220CFE559F49949B79AA3804372280EAD7C2B445CED78D216AB3D2D2251EA8F3BE7457B54FD58DFC9410215A6AA9F0928FF1DA6F0EF7D5F938B53B27263E833214A8EE06AA46C56575885CE1254F040CA990D4BBD12747E03EC441D4E61D734EAD8305BB739F61F61357652D9EC9EFE33E7DAAC46558FD15CC87D614AB6A7F48AE8C8ED752319CC09821B811D53EE94E6A0FC04A6C264ED1ACF1AD4EA22F1B6610D4F2546DA2A12A663E8B48622CF11771FCACD306AA2BD6AE116342E125F0A166FE0EEA716F2577A49839CD330BAC6C9C81587B50CD894E9C96B943C4BFA4F7A39C913813B8A9D7923B6A17254DE31CDA12B002AA55D66E9BF2425893D556E4B20A578C4B7A9521700CA0572A1801EFDCA2801C5656F95463EB96FC0A7CA9437223AA5DCA6B2167556E00ACDD5241FC5682582737D0417C700AE20C291E53B2B92808891B00E2844A114D173D64CE0A4CB4D4DC4BBD5E12F66FE9D585A8190407516EF4C116EF271975C942D402BD9262E68980A6A8976944ECEF5E5D881874220C350B52E90E296F59176BB74911C1AF67D3EC22AAFB9DCED661F0211A68AC9A7104ACA80B05609D77C1906C401B11F2F832A44303A35AB02C2612B0521FC0AFB6EAA4BA1B01A6C8A55F019DDA076A68F119DF0F764BA2E88A4095D08A12F6AA096294DCA19A7E6A7B92B801A23CB19175C46548D6C9B910BD7F87A0FCECFF7D88655B26979496F3A3927741595F8D84D90CBDC765C4C1120B8A4446A953ADB199560E29558A6145128A995FE0BCAE439CA101A17DDA814D5E32FCABB5CB584BD6EEF24584FFFC6700EA10AD5D751EDCC00D2060F56E80D24AEFA4C81811A66087AF535AA3F2F6E931CB6D871D05EE177E12D4799CCF239779991519974CB743DDA1B69A4324CD08C103D0F55A7247A00AF8FBACC99C31C73D806A9620256B37958A89AA4EF115B1A90E63D15E4BEEA090A92DDA7A0E7DC3AFFCCA59EF07B6763DA022428C486E8BA6BE0FAA00E37816B08A6BE3C4DE54FF5AB310BD46EA9755F88CE01C470DE1602F2AF2CF04AAC20E4A8C768ECB5867A7ECFAE553A84A861E8EA375A476E7AC71AEBE14BBF495100F1E77B17677F4A25C0A551CDFA536585088D692DA8DE3CAA790A6AE94175316F4813399FD677EFB67FD4DE69073E3AD25B51BEC502D7AFCBC298DB5366230C9A16F5C78894436CC7E227B43387003886385199A75241E714599CED6AEB6A8F72B3079009FAD337DAACBACF3E0C183C5A08973441C5C886C905AADBA879D4A1794AD51D17D8CB7CF84194AEEE4D231E23D3E3590F849AA44C6E1C45E4DD56ECC7EC92CD9CC46C0DE126664ED4A842940A7F6A8E329A52CF693B495CB98D464D8C4795A7AB9E67B81AAAFCCD0B7CEC1B4CB0A6F29656C75DF169BA952DD536CE7CD7E0FAA434A9C515B841B1873C20D9D6CA91D13A75A75B71B2744F5FDFCED97610C35D8ED0792B083385A808A7F35C4AA3B29667BB05C9B76CAE76411AFC38588D3BB64CC6180E25FB569B993D77DDE460466154212121F8D48DFEB6524BA6A87F40EE232C2B4B6E5EF9DC2102522782D55F24AB184756289B774D53E52BBF1AF7605D4A4B51B138250840F4EC55EEE211C6ADFDDBB77173E56E18582566412C51A6A97357713B454D038AE11327450C5FF0B6E8820DE0DD0A9E48EC433675667C06DB938671DA0AA238E24A6461F2330CC3AF36F65EDC65C81D9AF2B81EE5084602D257748EDD6DF7E495CCE19D435D89D742CFBED9E31FB4B9B9CF7A990B131A10E718DDC00A4749480B5CADAF59A1C11FF941F75A8F841550B0D1EAABCCF43ABC9428C43995336016FAB1392989AFBACDA3DCE55EEF7F5889466254E469D0FA18B7117E36EC7175F6AABD81D762725B0D567D5EEC6A776B3B9580E58BD3A6FBF9B1D68CD5D8A08ACC0240B510A1A0D3116EDBD6A370E6EEF0002E473EA7CA75A88190FF7F2659251293EB8ECD65918D2EB1C1A181449E91C02D6D236DA9D6619A807A8925FE1170C0DD9D215710056E18634567258DA725E52D6EED427A779474B45D5EEADBE3A2EBCC24753F2E5109A1071A4CE8B409DCC7FC54CE3756BB9D46E21B728EFB65879D2A3FEB1CBAE48D4632437B594D62D1DCA7E333BB062164D754B1FA64E767E5FCED7D3E94E8FA231F77119718044035F4EBC0F5F97DAAFFBD232E35A437E0755012A8BFE30BB87127AF06E006DC42EC50C02A58CD35A0C197B2D95A4360830E44077EC06D08C289192B6AA59C755206FBA04AA1ABFA9704E438D6B98053762EF2577BCFF37D74E8935055F584C54ADBA6BFBF8D2EA4BBE634D3D801AE232BD5ABBA1FEE2D2FA2609B0B4942CA80DDDE2322922C47E54515DB59BD7A998893328B913360B1ABDF8E28B4BFF6A0958ABD332FDCD3E7D4A07FB56E5767A5FB742C636303AA4CA8B38CC8A642874CE424431A3929D8FF8C775CC86EC42D480DDBA756BA92BBDF0C20B0BFC08FEE17A6B570A0FB9ED2535D7E78CAC332EE39260B29CA3BEC80DC07212D357EAB310DB0007630FB48683C4AAEB70216A20D416F24048E029AD97E914CACC8522485FD25540268A8B08EB161BBFA28A64192965FADB57C7C9CD3AAD5988A96DE2B176D91A815598430C3D68E6D3298288300256321662602D82AAB7229961200495EC2A3869EDA9DD7E607D7AA6C40AE773276BD73ABE9372D5E770C5D72F1D4A6A774AE7D0C0B2DA6A6B6B6BF6ADC210B11851C855D4970811605E676AB72C5D1432E94B3915E120EB76F7E5A3E2772099571E296AAE0ED1D225512607ACD50449ED2EC4BAD77859FB500FB5F5F6EDDB8BBF51C8743239909A5E9D854828C113224E64CBA54B18117BABFCBFA12D5183555EF0AA2D1532FCABC185D8E4B6C2DCA7A90A547385556222B04B47EEC1DFB7EDE2574A79B1C9E1062E4603D58359BB29359DD54914C3F7598806AA4F7BF4A9AE94DC11D04B29A3D407EBF00E52CBAC98850811BC1F952C61149D751FACB5C3D2D574FCF2CB2F2F172242384FA02EAA7B4358412CC9CB489F1A921F3577C0B9941695B68A7FB5263B3BD65437887641809AFCF6B040E7548FA03A150794B89489E1CE9D3B841F16FACAA84B1D337BC16E699E8E03DDACAD09BB8B7CD3A3982CDC1424CAF89CF61CB0620D77CA20CACD286C1C2AE0D2FC4EA03B8ACBF4B654423DF2338BB845315D322505AA7CD76537E6A2EA8E28A0A4A9F3220216EF902A4460AB30EB48DF1076A8FD24F77672213A4FD40639A93E5DC9D7351B7A06A2DA2DE2509348B8216D559344087B365D62BBF3D8EC6FF552875280EB2EB993C33C71F4CD9B3797FE559B96E75D08322B59BB2868AC950150C53DEB2EB9A341244B2867E1C635A5AB3024B790590A8FD84E9C23764466D7197AF025773448F2929112466DE9039BFFF14DA23A8926E20A1101401D8AE9EF0F4F1C71AF3C64286439F16FB5768DBA539272297715175E1A3AA8E206106EC8BF2A9112E79C3F7F9E64E3FA2DAAED413B4C53A555D39E8B40EF7595DCC9B5D53B9FB1BF02E67C7B6BD7DF0390F9DCB3B071E75A52BBD96D0D434E5CDDB6D6AE544DA768EDFA1598E2041143D416A00E61CD1DC627B39FCC09890669A37E41516AC176D5964C7E0526A9DD426CA9C3E0C91031446D521BF1858873A4AD322DFB5489EA69D7586FCA6A2432876A0B2FD9084D7AEC7FD3768344E7FAF5EBCB8588B8018C60F59AAA1161C7EF5856AA89E89D47C11F7BBC47F37F1197F10B134A224C9A95C4CBC47F4E4AF881ACDD78AD8C8840221B99CDC185F8755F04F171192C5D0626B674BF536B97CC21BD5484100104A8AC4F198AA5EB2BEF8A38120F56A0C7059BBAEE0DD1F87ACB6249806A48F9ED85E978211A3AD57E6520BEF2CA2B8B41F5A255ADBA0B54C91CF2F9A86D0F093E93DE3044B15D4297A55987F532C465A4B11A77D797CB00546BEA2D4B84704487DFF499C93C1317B34D350A62296359845154CFDA3C8F37FACA6AAA25351D3FAA4E4C6D6F511AA83EEF9320E844B8234894D18CE2D7F1E482DE555988F19A345F78491496B1C4B6034352C834387E574479C8C85CD60410D724AA36EEB4968D683F0B8678D9908253A543EDBC71E3C672D6912A2F5700557310ADDA5A880D8E975C7E7B6A6A0E2EC4B305ADD29FCBDFB5DCB7EF37DEDA2547A58473E20CC565344B92F73E0A7199AA50A65170AFA654068086791D5657DF4B74ECBB54D51B6FEDB2D930016F71718A83BD7888E3DB762898D498FC0097D465127945754F3CA177057734159D2EFE86CAE27106A2C05E1E76EA11A97D29FF6AA75A885EDFC085287190F8084CA5F0542A67BE23DF9620A3C46F9B941348276E808B172F52E97FC547C2F2972AF3DF3A3FF1FB5C5378E980667FAA735200E6EE4CDD3F6E214C2737802C5C650310F6B441ADB7768521E4A4E6F6C14C6D751F82DDE74283E71942E89CB97BE605028E4BC490EFB726B5DBCF3AB2C18222372F9526DB5772A7AD901BE9D4DEF48E52BB3D0136C2390B573AD546900DF78C71CC19CA74D2A069307C6A3735437283A8F6FAA2F79DAD5D0798CB4A71A476679C46B19C7BC28C3A10649C218AFFFD3E4BD7D55D5E888C4F3FAF89C91409420E9746410F97968A82D6E24FF58490176DCF7566DE8120FC7E2343947D3A870F78CB0D70E9D2A56535BE78B55595B56BD49DA2F242E10300AAE78A49E8F85E04A8A30C41529C350967B56EA301F379EFD254A5B16AD6BC79F3667D16A25171075F6A1CE94A1144D427133168AADCA48E4C0376F07F6E7619B5CC369B8E388BDFB39B2A49FD6D268506F68B2FBE80EBE725D1891710158940D68EDFF88F007300D599EBF0D87566E688336A214A0CAE13478CC5F353BBA95272479D4F2DA7ADC592492A2735E602114053965E2839A51A430CE612E56856680AB23F2F80F238BA428C3D9549CE59BA220E89322C1789B78DECBCBD2CBA05802A8A6B56F10A5A220421597DD154E7DF53E92F3F1BA89E6B05576467ABA0AA37417710410E5B2793D56CE280B77C24ECE18DADD3892046E105A8AAF32244AA905BA4D9EE989AFCC488D71807BD668DFD8B5CC8B065894BD6B6F09FB118C108B26D6D7D6A53FF8681FF664A81945A20850CB17AE9A59746172E5CD0674D759EAA5171A72DBF3D18520F6C469A9F3A75EAC89616A0041B88F0844FB48F5F5EEA74DCF9D863C7366DC6899B145ABA75EBD61323CAAEB57D62037834E54624CD2AD46C3CF816D551FED923EBFBAEB1E0F8873FFCE116FB40914544853C5F10BF2DFE5BE29AF83B160B91698823EBF2E5CB47F5B7D95DB3AB57AF3E0C96F811ED1D9C731D76D654F991D0DCCEC7C672CDABAFBE7ADC466642FE19D31DEBEF7DF115583B1721AB119FDCEFC83AC00F43D6B506EACD37DF3C29827DF6D967CF4C3466F2B09BE86F967CABAD1CA2913610BDAF04BC175E7861F3B5D75E3BCDEA2959BF741EB9250F3E761F74F58B76250C44C5C0A3A84A701B1E7EFDF5D717F75CB972455EB3AFAD5F5A4F78AC8D431AD3E26E3A75FD999D67CF9C3973CFEC826F40FB3032E7EC4167B5D8306405DCB3CFEE19E6FCC8AEE3B0A186427A8F13EC1EAA87CF9B026E94BEE3FFB175FC34F71A373CB5CF1E87A09A0A6C6B4AD6760E2755D9CB55FBBCFAF9E79F9FF8EAABAF8E19619E18114F87475E35625D5A7947DBE8BCF3CE3B873FFAE8A3BFFDF8E38F7F268F94023EA172ED3FBDF7DE7B7F6972FC87F68CDFB25B6FD9485DB5EBBD707E2F312A1BB05FB5EBAFD8F9A5BDEF53BB2AA6ACF57EBB368BFCC0DAF627D6C9D3C6D90B826A76B97BF7EE9689CE33BBBFB1011CA3AD9A682D92A25744A6F4F6B7DF7E7BF3830F3EF88581D59B62453969F1251870BD69975FB3177C224A8767ED76D437BA1E33EBD47FD9F5BF83D2B61BEC24852C7F72FBF6ED9F5A7B36A47FF8C306F2E4FBEFBFFFB0D610CB1ED7AE5DFB0311036BF2934F3E59E04830BD5FB2CB71E7EFD876AAFBF779EA1D128DE710439C6E84F8751143FFC8D36E5CBDC4B6EBD7AFFFDCB8E5949D9B6D04991480ABB129ED27F1E7AABA2035DED4F7EB4389C51877BC62B3CA0F62AD558367B831B3C113217FC7CE4FAC5B5F4AE53251D9AEE2900080F2B29C35D0BA9A72C919D72805FC83A110C438E09A89C9CDF873718A11E353FBFE96E866E76F06C2BC9EE398892784261A3B55CAF6553B7F64A0F385BDE8813D7859B4CDE6FBC746DD5FD877D79C25BBD643AE4F03D32B866FE75106B516CA3EFB5F6BFBBF06D15676DE095928760A64EE048E11A73F85631A5F4C0542D8B9157E78C4C4E34D9B497EDBA6AB5FB2173EB029EBDF0DB16F044013CA7F930B0F7431E2BE837BCF1A78BE6558F763953235EEFED46697FFC0A166E747017B96D10B898E9DDAD34213C37511C513E46820C4E1C8210CE71C0D4E1F3DFC5900B5592144D0643E1B557E7E907B8F066EA00F3BA1AD8F22623411619E068EB9E541F55998299A358CEE68005CB62BA5E4FF00FDF5693E9ACFE06D0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (88,1,'Rack_42_(96)',decode('89504E470D0A1A0A0000000D4948445200000065000001480806000000493930930000000473424954080808087C0864880000000970485973000009FD000009FD017832FDCF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000033914944415478DAED5DEB8F5DD755BFE7DE3BF68CED49C663C7AFD8F1236E1E72402A6AA30AA10A095121A40A5141104408FA85F26FF0896F7CE5734591A0427CA8081F402D254A40346915A13E88DAE6A1C4F1636C8F63C7F6CC78EE3DACDFCDFEDDACD9DEFB9CFD38E39C736F8EB475DFE79EB3D75E6BFDD6DAEB519465D97B98472147AFA547F9B027C3730C1F26314E9F3EBDF789279E581A8FC78563421A27D6F2F2F203EF0D06830726BEDFEFE3BDBE5CE28D3610A7D8CDFF3F75EAD4AA10E0B746A3D1D7E5E517E5390872D3772D15049D3E6A4693C9DCF11DD7F7ECE78600D3F7700EF39D4579BE22E3239993FF16E2FD9D8C7F7AE38D37B63A4D949372C8A47F4DC68BF2F25921C6D2C6C6C6607373B3B87FFF7E531CB76368E2D88FF67743067EBB77EFDEDEE2E2E2581EC7F27A4BEEE74D39DDDFEFD9B3E75B3FF8C10FAEB49A288F3FFEF805B9E03F95A75F93F39CDCDEDEDE2344E88308F2BC7232AB26D55EE54D8F2A422ACE990EE198DE70382CE5B3B1BC1EC9BD7E20F7F7CFF2FA9BAFBDF6DAFF7E6A44918B191C3F7EFCCB4284AFCBC5FCB6FC6E552E6CB0B5B53590F77A18752BD4F7592C01AA263585989A107CEE228EFE7FCC9B4882B13C8E219245127C571EBF79E6CC997FFBF6B7BF3DDA15A2C8C99764C2FF402E0E9CF0BC7C6FBF8CBEFC713F65127D8F7A325D440DF92FDF77EC89B5FF5F7F0E6ED08F5544B107E610924124C45806A8744F88F44319DF120EFBC7975F7EF976145164F2FFC11633F207BF2B275EC69F51C6EAC9E34AD18FF673BEE630AF21D3AE5728F8D29AB0D2A74742B98EE7D7936CFF8779DC2BD707455F8030FC0D07BFAFCFC5D72424DFC3FD0A7126D203EFDDBE7D7BF3E2C58BFF21EF7FA8EEF5E6DB6FBFFD974E482C27F9239B288F3EFAE8B5175E786119CA19433866B212F89CEFD77DCEE77C948BBCF4D1471F7D451E71D77DB9C881260889A009147B2C2C2C78919D82DD7C1C1BA28C4489FFA65CD7DFC87B7B710E0C790FBAA4C7D718FA35E6CAF53E9FF3F7AFBEFA2AFEE7772C130D80C14B941D6C4DDC0EEEB057965EF918D42558295C157A4592AD95D25F12A2DCC1DCE16FB0C81401F42852895273F41541F038E63874E8D0C664426412712FA22F26D78D7BB339DEC5A99AABF01B0CC565A54B847A8D47175138A12E3155050CF01938E2EEDDBB13EE20A1708186536E1983756808D237933FE6CADD05C214156360FE731B5C0BA311D7496EC3F513CAF33EEC8559376CFD954C944097C4E411177DE7CE9DC9204780CB706390AB208E35410335F4C48F1D1CD388F7C4105F734BDF220EEEA7EFB0F4279C4362E05EC041449A1E51E966D114A2B890914B81E38244044179F5C426E991E5450F4D8842FD4102690E33CF078A4B7A0EF1356E98287A41F4D5B9FBD67BFD2A83D5D625B84F0CE88D7DFBF6F5080E7C8B379B28F60931F9EBEBEBBD5BB76E4D88820B7CE4914726BE25ADC86D02E0BB24A422AC5EA136314615DC522610A1A7FEA76FFDBF7EAFAFCD833A91A409447D8AB9C15CEEDFBF7F32F01D2DBE34D1928822272CAE5DBB36210408823F585C5C9C1081DC4042B8B8A9C6201D583078AC88A247D9B0822FD5734DE48204C1B0014D8858A2B82621A053214D386770C6562D7E2751EC2FC9C9F680FA62C14FF586CD0D3E62540104F99F056B25971EF1D5A4082B1CFF39B6C456612133E73D85F8E520CE0E1C3830D537D0ABB07D5CF31C4514A1F4E6638F3D3625460A0050AE88296C8683D2330165C5F029EF502F33A16FA138B3EFFA0D5634A1ACC3F08D1E20CCD2D2D2E43F630095932898C82A38ECB3DCC955605FAC102D5321F6E4F5ED8AC92B2DB15556102086834A0B7A6BDBA8D08B047E2C5C3F212CED15BE1783B65C622E89287CB41473255760B241044062EA18B030561CB9CCF618FB56AA877342095156B86ECA1A20B0E3371A31D110C441488CCF7D682B942855C419D641351797DCBB776F8236400CFA7E0802B4DBC523D60A87615735C1B108ACB09478E981BCFABFC1255EF4A56D162C38CC132401EE9590984ADE35B49F2C9A28F64E9D1649376FDEEC7DF8E18793E7B80028330C02005CA44FB459CF8B9AD55E7AB8A58C10574584C88BF61C68488CF9C302C4DCE03508A415BDB6E8A388E2DA580227DCB8716302EDF01AB0EFC8912313D1A61D8D1477750471ACD032401485E817DF241715EE9AA2E2BAA20E480997CD02E31AF60A08142DBE6CD9882FCBC916418C83070FF680C2341148801004E600060B2E191E419814885C27FE0ADBE7973AF07BD826DA6681AE15820C5CF35CA17FFA3D7BC8893660A3183857C90555888C488EFB3232162B0852058BC71E5B66ECB06B4A8FE8AB25282031DDEDDA291BC0FD4E9B05D265757575320DF61C07892F974E091149F66BEA170C426B9CCF3CBF1DB8B24BCB7B1C83C4CA401BE8016E112950E2BAB91742C2708B22CBA5D0EF87EBAC2AFC1C42105C2C5C31107784C46055DC54A0B82B2B14BC6FB58740DCD2321CCB10B1ABFD76DACEA29758EF1B55212E5BACD9602A693FA58A18584D50669097E00010010ACD07890359BE0CB0EC43157E6911277B4B80AE7AA22AB33F14ECC6CFDEE4B275051105601FB842C546EDD8FE4D54C065850FAC8E383E4EA9135F29F68F1712D3418B39A1CD6213247B930BCF31F980C4B04FC00D10474063B6833246D4392EA6AC1161E3866C96E0DFC7222ECD41788EB9C29C695BAE11D7BD40E2A52B57AE4CA87EEAD4A9C91FD5B9EB03895354ACD210D11543149B20BD44519865B360FB037838DA756F7FF9EEDDBBF74E9F3E7DC0DE458C85C75AC91BA5B812684B940D58F7452C3C96B99B4062C2D65CB4057186CDC0B5B5B5916DE1477B89631198ED61A68EA18D42C7A51CEB91C4E845E89410C2F4AA1C95728D25B77819CD1322D2426C96ECFD1497E154F59AEE7AE82110826E6E46B754E8945EC0A4E510A5CEBFE65D88B80FEEABD8EFD9303F8468D944A9E3165C14B73CCDCEDAD4B5409147C331722FA4EC8541E398F3A66E9A3DB050F50698368E6DB4E5E394ACFD14DB4B8C035C005401DB84FB0970D7030C108DD9BB9415AC5D36B0DA43771EA3B82664D553A1D31D83B9C1BDC344706D8665B9EEF517A1034004A007AC0A5C007C6120847650526FC4E89DC855DCE4D1C8FFB908C4D023BA9868B354A5794411454EB6F4EEBBEF4E5CCF478F1E9DBA18B4BBBECE1119EBC08B115FAEF4B78A9B7C6844B7438FB0B0AF5FBFBE0312276F72DD93E3DCB973077C622944EFD846A391BB877A2D3E307758E14D1C8C0103816EDFBE3DCADE4F89B547EC470647EB000CBC96735F6F3351900444D183E18A6C49191473A1FB29B5AEFBC09B99C851283C3AEA78437A57B2C5D9DA0FA04B2C221D38816BA703323625512BFA28A2F8BEE4E3168834C613D39D0DF4C108FBA6124F1FE6E1731B693F17171A457A68A07734247639245D9B57B04BE02DC605E177DCFAD481DD75A2AE2BC4097142D20189E81E13D7E6DC67B13925CB750F9B04B018C4C001F703B637B96F4251D53002EBCCA13DC424040804510EF3818A3E9B28460C2DBEF5D65B136507BB04690E29EEFA793A74AA1DC5190884058DC089EC4D2E99FC0D81C4CBBE348758FB4459B9AB5D80C4E4FE9CC138623C5EBC787194B49F928A8C7CFBF690B50CEE662CB1FCD78DB64362BA4B18D592EBC277A1AFC633B97C620ADC441F10F7AD6998A6C0C84F53C96B116DA77AC7A446641125160ED337064F31069187DEB366A47A97748D4B0CD136D1F616ED98D0E4D4465CF72E488C0B81E2826D8247A699610F5AEB1EEDB29F35C5AFE12D0D4A108792A02A5DA2B1FD144C3403BB31D9200273FAECC0EE5057CCAC4262EEC9C38CA092A772CFDA79E4A39C742F203188003472ECD8B11D06A2DE4D9CC523358E58DB2C380087313E761267BAEE85005B02891F70D7872A7E576506A36F5A0F8981BA88189BB259D6D6D6C64D6C722555ECB3F3ED75D8A7D90CEB0424A67DC1C206B98ED4E89D479751E372DFD7E9087214F7AEF5E7B4599AC0FCBB2DB6B09858810803360B157BAA68335C18EF25767DB94A2C31B01B488CB60903BB09916741EF706F88E9D8FAFE43EDAF64D7BDFEB2CF78A4BB1EB60903BBB192C0E6E4942AA2CE0200B0E789D1A32E6EC8268AEB4BF843100190182CCD44180C5D7922C6E8ECCAC48706E0317002F3483B4D43626D3C86BAB39C449193EE0124C6010220B09BEE0772C4BCBAEB636C16E3217642E268A2C809B74F9F3E3D654D57144B2C3C364866A5CD132BD7D86711B6260924C429B3F753507981A9C8A9F689DEA563E4A410F9769B8922F78BCAA953484C389C82B63481301DD94489F5126B271D03F4782E5697C36772A3A3B68B215C2750251E991815EBC6AF2A6E90449450FB843A0637C0C06EA38F76188F5DD62DBA5C21EE83614729DEEF28A2C4D418C1C4C3E106484CD73C7E8FF0CC58DDD345BF97CB08A684D048CB0789A31C92AE93680311112C40120CEC46228CAF18DBBC1C76D53B061C5294332A548BAF60A2B87488FCC9C27BEFBDD763E551C85546D757D5009B07777D9578622C31E388B1904D919D22DB750FF4858A13BA0E8BCF5D1F5A82CA444CEE6FB99778925E9793B5654362A2D8E8EC60075146348062E1B0559E707231B8511311B3DD72C55E32C8D097F798923D0C97BB2B903E8A282990983A88112C3C0F73204D9EF966DBF504E130C5366C16960449F572379234E4837CAE7D7BC262FA7DF4F92A52EC3A81BE68B3E03E088753F758B2F753AA0881150F58AC03BBD935C287C4BAAAF06D384CDDA0275947BC546D1527EFA7B8DCEEF414B3208EAEC3CBC089BA761DB30A89352CA6374017D37189AF68A2A8130CAF5EBD3AD9C0A233119E62978332C52F368B07ED125D0414443239F94523FB29301057565676C474B9EAD787D8272AB7635FD7217168E09D0EF476E99414DFD73644541311F65839389751FA65CB4552898964DE63139967A6C8439945945438CCE71A1213A1B15CAC40CC7B6D774032BF041C0338CCEDEE9C7A2D49C50D6CA2C4AC10E63B320284ACAAFD405DD32976540B6D161047EB8D1803327B3FC567A51361C04B8C156597C1606657DDE658170F5D5E5D97040975E337BAC9A503BBD9C486E509EDFDFA7982C3AE10231D89EF135F4144F1ECA70C5029812D9DC0BE200202BB43EBB0743DA225B61B04172B9353E909C090B92B9AD84F190081800876ABC0D4C00973DE85361323C7BF65DB2B84C45AA7641105B60FD31D72563D5999B0588EA5361305CD67609F71B537719880F13279932BB6EE97AB3CA1461CDCEC213ADBB76FDFAD962BF392B15A80C3D8D8B3BBC1A6A64924EFA7A48825DA26445EB607D9B65BBAA25374BF4A10C6B65962CC86A4EDE0BA869AB681850B656037D99CFBD4755D8ABA78E8B21F10471C2CC2164A98D03918BA3CBCAEFE29606B067633029DDD84D88A765620B1AB1F9786C274CCE2B58EC4E7A2F425A786CECDD05324A6805D82C19C462009BBC1A6CD15F3E82176392375DA373B7DC7CCC1D0F3E53D987C10816EE8944E7636FB76051237154BCCB864A0BA28A27856F2A676DB87E8085F1975B03294A4F97CB1ED9018B568088973CB8150C2206D2F466A0C037A68458921ED9434BD1DA79528C4F669758037213116131612111795748E2BBF099D120C87E980D4E50935247601802EE8092A72DDA18E9038D6931E1B533DACFBB28B20B8509DEB484F3103296641D1DBA540E8C667C9753CB29657C87D46EB943AEE0007E8069B2A2F7E8A327C5BC5B388B66C486C7BD553A170A54E61853740621082C6A1DD6033A593DD2C12C976E1EB823A3A14294B7CC9C916411496DC6BCA5D2FE71D760512C7666CD9E7E00EA509501C34A15336565757979B70D7730B1504960B6E75340BBDC414C775922002128F62B8A556A7A4DA27CCCD60BD6210F8C081039DF012B39C2FA40475464EBD169BB3EA88334C6D30697B8959FA8317AE37C6BAE825E6CE2183264020A0AE1448DC884EA9E316FABFC005445DBCD0AEE7397A38685A7B58871E71FBB74E942541E2109104021012B346A40EECD6F6C92C232EED6CA4CDC2DDD5BAADE42CD73DC50FE42B6031531C98AB515579229775BB68B3E828169D2F6AA3B82C9D02488C328590A7ACD81DEAAEAF796C750702DB3A8F1D9A10BAB5ADE8A37C482CEF6D1C3E7C7839B50E8B5D5086AC2D63A5ED9018D90534909B72E1CBF9464DB8EE938C433BEA1C8FD0458CCF5D5E5E5EEF022406C26246B49DFBD984C84BD62931CADA15B5C12816BD8FDF9583E9D680C5ECAD8561FBB9726AB644BBEEEBE0311108F7E7B50CD536CB2C28793BD09BA1478C5108B5579AD0290FBCC6E4430CB9EAB084AC845941609C076DB38414D469C475CF069BB04D183CC162D1B935C0BA0479EBD01681109ED36E7395A38A998BBEEB4772E2C5B5B5B5C91F21B01BFBF5769FF5941DCB593FEC3A0214F3682918431CA7F892936E1C3972645937D84C755CB2E284A9A9D8EA62D1A88C0748CCCCB35CD4C5CDC068489CEA900CC1E76C9AC68E3B02895B5D2C1A95F1709D5C448CC22198C9896A49D22931B0D8F79AAE06B23103BB43F626DAA44778DD20100803114E9BE561385C87317F606F79EA346E2D5375FB8A59405B003BEC53AF6D16DB35B3AB90D8C5253AB09B93AE8B76CE220273A12D3B39159C44D455E5C68FF212574D1ADDF5ACC3820317420725E5EDBC22308A68861E312ECC6554667B8901892F5FBEDC63A23FDDF5BE4E76F30A815D063689C15C5213859FEF2506243E76ECD8726860775D3B4136C7916B6B75976D406204B5735735279698BF353505468DEC3C66269C4EDD0ED439D04542945677D9062466976D44B530EAB329876AF6CE630A3174DF5CC24A4262B3D9D309AB1C0B08038B8B70D8844825A3CAC6BCC4A17558187E43984CA8DCB52816D7FD136DE2118A1C440281B8F8EA7C643EC9936DA7E8F27DF61E89ED809B6500C0986A46E2D3EAC7739F8738B652AB57A7684ED00D36E929061188C2BA5827B2292ED2C1EDBA2E7E55644BF2CEA34CFA5E54C6A3DB042CAB03BBED9E5BB1BAA7CB066455C9751D7A445BC540E27E1349435B478E1C09EAEB18420C4262796CBD9718A88BB5316375A286C30CCB32B1C465135EE23264E2AB82EF18D80D62E0062102E5025BEF25A68F0BF60A2B66D85E8B046E2B1BD9798C15433A180D4377B6D3DCD60565AE2131E030F272A02F5CC51B76C35619D671411571EC069BBA34A12B85A2CB9018620804222466BE7C6A344B3624D68615E5ADF6F37085CDBAEF8BA1BCB4FA610C739BBCCA85DF0851B4BB9EC1744CA76360372E2236B3ABCBE8CBB54019D9430F3121B1AB6E58B64E9113EEB976EDDAD4A1863F03FBBA7ACECF321C0E85C6BA4D14EBE2D3856FD0673F663E7C9CB26D0776DBD9BF3104510D2A1F6DF3C4C39ED0CD7B72FC6714EF267062DC84F81AC71664B30F7218068327E4623F6AB933728CC9C4350371316ABE0148BCFB995C75E144605DEA225D174C56E1A8ED224A67411371C166C13DE990DC14D415BD1D5C0587EB38459726243AEB926D5285B6D03719862F161BB80783F5F04393531B491AF24D3E9D70761420DD0AB30C8B5D360B20B1B659728DC65AA2E8FE29BAC1262D771221C6F5324BC88B8123900A8C6AE13E0B8DE946135185F20BEBEBEB3B72F9884A5CF926F31E40A1A35A187A844765B314C96E1645D5314B133651289A8565BAD05210364668826D1591A84FD9AAA309D7FD28A76507D997A56355CA40ABD1178B3A6341321B8D316F39B1C4B1FBFAB501DEB181132C27AE03BBC9DA62906E744199D3430C3184FD152C2C86E3A6EEB43616E01D63288210DA61D9543A411B08049D0AA405380C2F312B1DE56C85371ACD52D560932BC926C42CB8F0C9EDB0592096411C0C067A8788B8C62031E11F573E934E5D7558E6058531364CDB2CAC3199133051E7251E3265994460180DEBB0CC837D1263F933F488512D2CA86316703A24563F2A7460774C1D16DF0A3161AC9D682968C3FF18A465D797D419D459E24BD8F33EF74F52E030B98B06946A9CD689968250EA74BFEB3490544F4053D12C49088284306135D3866A78C42190B8132D059193C3AA4DD857E2FDE4A2C95D2B57687F4E370C5785AEC5D24478CEA74920100703F708380CA3120A9D7A24D68DDF8897D8B737ADCB27F13D9F3B66561C92445BB76EDD9A701089C4C4DB9022A08D5AF47A8F44DB27765BBD7981C42CA8C3CEA98C6A6140496E1AFCD0A31B06D00374D7D3FBC9C0EE79F41257F9B5384F78A40B9FC1135AA284CE4BDF05FD90A387137105D82595520861307BDBBBD7EDE81C94CA45200E17B539AF739EA3C4979C788B010FB985A219816EB8ABF5E50A0989E980CC85C4E63CE3C6032762B8834DC4C8CE402F50920612DF6D335118478C6B66339EC3870F4F1B2DD0284CF16B3556AE30841884C42C4F48BBA46B81DD2E024199B3A237D016AA394182106DC658FDC96E96D0BA2CBA572E81804EBD9B4548CC5220146FD867C12337C372167694F8D2B60957BD6E5CC3E089109C3E4BE80B8B8FA1472CB90E4E22DA0A49814FB1530A360ED015BBF9A7F39AE7E89A6870894E4EA51BDFF44A9E8AF86CD7BD4CFE1EBC26D6A67EA873C1D4E99E596F29A8438FD8DED6CC613F59A7280B7E136CE98AA38D411AD0396C036E88D2999682BE463EB1FE3313A6356E44A7C4840FD98400FB72B5404142FE9AC089CEB414A428829758B745CCAD90976DA7C440628A3AE63A62C4F4EE6A9BBE60F0076D2F70D0A14387A6251863A17E6389A821C4D0BB6D84C4BE5C96AE1EB8A71B376E4C3A64B0980E6C163CA788CA31C283748AEB3D5700372328BBD86033156DD1A8C402A4CD022E82A8F3B5B78DE614DF97E9AEB77BCEFBFACDCF93C7D8E622ECB1405C33F4084432E1AACD114564E822FEACAA0E4B2231FAB34C203BF448B9F0FB318471260D094136841D97ED3A2C29257119816E12331F69F3A462C702C5A2E9C1B03DC4B1688B6000697B8D6C0787AC7CD77798EB08190B820212B30A92C0CB9B5D80C4BC07C0611ACFBA9253AA3E6A0C12871087DD841896841BA032EC62E50986A762B00D3A832608971F0A24AE124F2E7704EB44E2917E320CBB62F72CC41193400CF4068120E670FF1A7DC6188D8D7889B91F6DC3645737A159465CB85734918358861207D282DDC27D169FC7BC11F1C5441FADEC7548914DA47984C31473E016DA2C4C4E65E85163E50A65052CE1CF7420412C013C1751745D94550DA64BE85E5E26EC28DD4BCCE772F27B42F103AE42D1B1DCC0786283D70FB61C12F7D95290522295DB755D7CB9EF71E33B8FB1174622E0A0F247B6B1DC70AB2BE389989EF44F613979B6416765BF871147EC254A9D91683F32E9945C41B4C29DCBAE1DF4028340DC8A78ECB1C7A6A92120524C1C7132248E2D9B4E488C8B2624661D165F45D62E1EB80F788731A063E9216635F2D8823A59E50A5DDCA19B6C32D7D12E4F38EB1DB689B6008B6954824858A0BEECE146731E7D7588ED64D47981C02EDF96ABA00E44B936191A210A2131D1930D8963B78AE7E1B00BEA808B20E20C81FAD93A8590D88E624939184F6CFAA774A2A5601341133AF408903846A278D157AABB9EDC65883085C4607391BDAD2F160D85CE45047D81FB62147D4C39905DD1293E8AFADCF58C7162A43AE0246EA48B817BE4121088AD798F1F3FBE63918578D71BDF0EAEB34F3424661D16C6DBCE4AB1688A217039068BE920AA85F55A68B33469400E633983C460C826E3A1AA1AA8CD920392FBF110D1D88F870EC22309E8B3591ADB7974952164488DCE8E9D37A4A50051EFFAF5EB3B9253B9CFE28B6AC981C48B84C42CDA19CBA2F3462457722A069ECB67FD6CD7BD88A40D516CCBBEC0EED0D714775D82C4764BC114BDA0DDF82668641CA553721A38FB5E83BB740364424AB9B8D64362DD52903107445C3ECB3E152627E9941882B0FC0703BBC1CA90B55D83C4764B4176AC43E72546E7A41895D93AC55500D9F53D4262AC2CE63AD28AED6260B7CF75820185CE0E442010AB946B0E6A8C2821BE2BFD397BE2127D1012375113BE0B4625BA65C066C142847718B161405EDCADF4EDB3C4106758D760D3AE14CA808A1077FD2C2330CC032C7E2C4A886D46B540D4B92A7364EB1459057BC1B27A675113A949569D9583A540A04BD95582FD876511F7B3758A9C645A71C217541753A690050FBA0089319184C455CEDAAA61DB2CAEC08920378B25A2825A0A564162AE1646509A567DEB6D87C48CE18265CE9A994DC71127250DA5108349A7B062B952A010F5CDC867AD976BF45F417CEBEA7858F184FA2971C4BBD6BDCEE59864834D269DC236E1BE7DD7D198AE8E87830D6E200118744731F750A3596C773D3882958918C1C250A259B04DAA0EDA616B6B6BD3CC6114D4C15CC4EC5426EF3CDAAC075666D5545D29CFD721741E7A3EEAE45446E2EB823AA941EF4EA288A25BB0B398E8B20F896299B7A816C686D16661BA04F49181CB45B6452F7F32322EE7AC0EDB1A8D1991D7FAF43A88A55CEF849D2E81C278318BD5E925468E9EAFEE61A87DC21AF0EC16615CD96D2FC256E25AD97A96F501585E3E152CD80573B21BA5C5A031E63AEAEC27B035FF433E6F3D1CB32B4D40044157E0603F98947AC40FAD0C886EB0C9382710812540BA5E828A880AF61638077EAD13274E4C88C5A2D8A162AE712FB17E5FD761C105EBF284AE266AB37260F2A127303007F0108383D8393534C3A09172855A59732751F753B13DC5F380C0B48718AE7CA02D108875F175C251633B8F80C43404097F19D55257367D1E3DC4BAA00E37C23020D64D59AAA289A4A192CDCE34724825806A8AB3DC76480CC59E2386ED22A02CA493ED6611F9B95DD51337C451C9AC2E46ED1B1F51ABBBD7B1CF09C41121B11D34E1321EAB86A9715326EB14FB0F6308416E605F2A168A0684E4770520B43ED78E451ACCF54E563AC254999E8DFB49F1EF359A885AD7D7910D36098971D164DFAEEB17DA2C48A2E596EF134F3C31013C0CA808DD89DDD5B2EA6CFEC51218761D969C9C8E2E382031B01881B6909CCA9ECAB45952CA7E04E9148F129C6EF4D0F5C0000A7BCB781E2A4D30AD0E1C842D641049A7786B53A1919D47F9A3218BDEE816E824C267C5A2771EE41226A7C2B00417519A08918A2682F10A164EF6C9C4D8D75D6E2918A32798CFC2E454A6493411CD729F1B5A2970583B288DEBBA732D0599FDCBD0A13AE2F8BA10818B0889B3928652DDF54C3A654E39410089DBE596820C9A205C8E85C3D9AEFBD013B0330F1B84D1B50D08D9751466B714A4AED0D13A31046A24C0BB4A4CD152D79D797460F7ACA12FBD3F44A31268EBE8D1A33B02481A2BAB1E4245DA250C9E60BEC9BC0476BB8CCAAB57AF4E240208041107B44523DA5163327F3B1875AF08874104F674E49EC13CBAEB636C168839A22EB3CD5164BB5986600BF5A776044B4A9A9D21EEDE364F301BF78470BE4F44E9823A409F20121679B64E118ED8AA0B9C0879CDC06E0C13CC376C3351609C312D5037554895008CC297F38D1ADB0E8E2506731DD9C4860A1040009F8BECBDD366A2B058340E16BD8128A2D58EFBC8D59F8D240DD51184B609D8146C8B5862B06E0A9E6F9B0392F703CE818E402910100B04C2FBA14D6E42177EA5F8AAA2326D138A24EE9B80107ADF7E960E88219602C1FD8340405C5888B467AA721F93207115E52896088959FAC3EE26342FC80BF7C9F2852C05824D309D9C5A15BC972CBEA0F088B618C1C2A06E3BCD2124936B96090402689B85C9A9D0ADDA66C9465F72C23DDA655F578725228062A65B0ADAC9A96C7083B59D4D1441209BC8BBA86B2758E7B864E01EF359E486DBDEFABC4068108DBEDCCA802C0592048973ED117D800870DA61A5E85056709AB0F5AD2E40625D6902F743173EEE25A689B34FC167E53C86BCA607153780CF70532002F6B2BBAA5F74A5092E348821480F234926903854CC3D949C47F66A0747E8069BAE826CB3E280C440882A1016441CA25A74F9933A31B72BD12C4627EC6887E40BEC9E650406918C3A2D189813B8F0018961B3702BC3959C1A332FDE9D4776D6262466E20F73E25DDC306F5E62DA2C84C5901C80C3B059586E9ECA3E7BE751F4C3227F4C48CC50A2984A130EC8D9768764749B727D60B1B27C2110276C160C11EF8D40E20D61C9659BC2B10E37465072DF5E6E787F9720715D25D5BAA0097291DCFBA8F19DC758773DCB89E386A077E85D15D6FEB04B90180462F681466339E22E9A535288A3313D9E8308F414CF0A24669D19E80A7200460E246EBC1F3DFB3AEA069B20840E9E98A54347E23329E8DCB973933960C44B55726A2390D8B36F3FCD87C7C4E342B05A6C77FD3C34704619100CCC070CCA63C78E4D6D369A0959C663D54472EFC46EB0E9ABC3326F9018F70FEF30FB78B1E4BA6E5CE04A388AE614BC16F9B9C8F7B5FBB9813A2CC5AC11468B29480FCC136031443B03BD45B40FB2758A88A50DB154975D76492C21744B4111812B6D9EE0265A0AEAB43A7251B497B82938AC03BB81C4986647B107592B37DCEACA78752D057382261ADB0E0E25080C43B666652B3E3828BBBA576FB7148412674B412C30001C86B0EE068186215D713C155975E9A409246684C72C85B1428FF2DE200558C8E0D4A95313C2914029FB2AD9E28BBB88DA526737A1AA50D65953EAB867C6864144031223F408D2829EF35DE9B2ADABE199AE0653DD40846173C4BCD622BE74E9D2649F058B15701891F8E02626E95675D588D22980C40C5BD54864D6E2B99A84C4901EB6CD02310702C9FB836CD73D20F1EAEAEAB2761DB8905668FF148A3D118187DA3CC128160DDB827B463909B7BA4F3D2031A3F0770512877C070460BE234B6940ECC9C55D6F3351502C9A2506EDA0899CEA78499038060EBB1E19D88D55464F31BDC55DD335BA7F0A17184410F4050EFAFC743062D3D5F186A9F609943F0D44C246B8EB536B97B4F5E0962EA27370CF3028018721967471EC4639253470C20EECC68560C580080402B35A024489B7692910CC070804480C09C1E454D74658A35E624262D828ACE283610776CF231CC63D33129FC57460F5C38D0F8EA208B4C14272B94242621D65EF4B3AFD2CEFF1139BE5F2E5CB130F319353D93955EC987C2F316289E1256687849432205AEC75A97F4A5D4BC150B0A093530189E992CA51F4658C3DE2AA3C818B0021B4B2940B6C7D4B41DA16208EEE8B5CA52F53638AA32CFAD0C064BB0E8BC9849D6E8B028D75ADE291EE9FC2386916E9E436B8AEF6B71BF64A728037F40DF03B2328194FDC45DBA46A0275A5092E3CF8B7181D89855727E61A8B66719D1862897BF62C20037FCFAC0676BB94394354311780C267CF9E9D108B5E735F3DE2C6EC14BB9B10DD258CD8B033BCE6E9808883779891F82C05024231EC4ADB2CD93AE5C081037B592B9291E4DA533C8F7D1DEBA408FBD4C395CFE45416015D5B5BEBC7CC9353A70827DC67EF945C488C63965A0A86A02F3B3955EEBBC46396F8420041ACE2B73D01402DAC8AD7B5968258404DB5143420A06C62E7313A3E0B37025703EB80D159D7D596822004BDDF10456CCFC12DF0DD82C33B744A1517F83AD9811B40085C3C8900B69D15DD8255CE3D79DC2F5B0A3EFEF8E3D3029E188C8F0B75DB27771AF2158A667E382E8A84D0FBF6B3AAEC698BB1E723ABE33DFDF4D39345C9045C9FB1DC282466D229B038D897176657EC9E37E485FB87031203901870F8E4C99313839A628EFB2C8DB8EE854D17F047CCDBA31B7A1E0CC41C9B856E7C7010F659B01906D146489C953424938FAE82DE76B3B1798FF3D652905C02FD0A298396826C5992EC6611428C73B981112C4463267FB0D545D8D05D1CD78A89D4AD10738226405CD8298DE89494CA1330BC8CB1344DFA0710E02137DB6A9731B7B9AB5A0AEAA0891845DE68226A5DD229CB1342CC41A662E76D5682F6744B412C34C07FC061DC37161CDE6708ABCBB277EDA5E4B8EEBD9B5C8C89A25B1B9C002547AB7D56BB6C43ACB1A520D33D60549E397366BA20358162254F88F82A94F29BC0611642A66DA2D1D82CB73BF74D30338471607E9039FCCC33CF4C9353D939350912BBBE2C7F32A4CB9E90D8AED8FD192CFEE40010B878F1E2046D4192C06641243E6C167C2622BD9FEDBA070AB103BBEB0041DD9F9A9682ADAE3801488C49CDF14C406AB0E723F7FA1BD129C21DA35C773DC51E88C19D4AF97EABB389B0186153612271CDAC9B99035C2061642EC6AA287A9E9B25061ED3410934A673EDA17F285BE5FDCD361345579AD0C1206C584D1753554ECFAE6572E9C69B759527C80D384000B02D12FF674199DB81DE2010143A0EDC2710574CA86E92EB5EAF7A1F31689B80CD09054104E663CC2A00801863A50956C73B7DFAF48458405A5555CB1BE1145779287004570FDDD4F3DA3F4557C7D381DEB05BF01903DF1B8D6611020C184EA47B6BE912209FF54FF9E49E19EFF6DE7BEF4D8C4A88B8F3E7CF4F380A3A687D7DBD9F2CBEECA636AE069BA9B2D214610B0DA82DD4A8D4790E83B7F08CDA83DEEC9C940EEEB330D09B7BFDD93B8F8866F185F087BAEB99EBA8FB777926276902138EA0FF616F469669C4C28CE90FAC071B170012130C35A25342ED13BC471000FD438CCEC20738565757EF3A56F5A7799038250D3FA22DEEB8425770B3AFAEFB431DC1A22CFA54F73D0EDA254C942124AE08EC2E725773CD798B041156B81C903A6882798F2014B3D862AAE345E9945817005DD820024BF7010EE231A360725121DA728812A5ABAAAE5B579A6007A213274E4C3EC3FD23F0CE571DAF292FF18E9341275024312800EE7A0D0432C5878F53CA0802B9446215A7248B4E1A950851651C31D01688E54B4ECD86C408DF64D22988C17E54AC4EEDEAB49D09878B0AF193C22955A2B06852A7C1648077180373C652200CF4365E8E225BA7C075CF4DACA602BB4DC0F86280D8E97926B28C145FBD40824CCFCDC4DB54CE87388728C302D65D886471177613A0682FB150760B94CEF112D35FC4E06EAC1AB9E981351121AB3B8420BD0042047108CBDD32C03D276882AE19B9EF07BCC459494331755958B0CC84D54C652F77E8C490BA5331897DF5582AA2956A4CFFCE4394D24184BE357CBA67DAF40C07F528AC73B647642468AAE5DFA8EBBEEA603B41BAEB410058B335FEB010F88A091C5B135E4678017C3AA51FC289AC6186FBE16283AEC07DB2A5200958E7BE8F268A8B9255628A690E6C4AC976824022818E497B8572920666B8947F2AA7900803F5180D225CD5F180B8E02506E1008743721F93DD2CBE42D1ECAB452F282E2433B0BBA8105D2EA2B81EEBD0574F1162A0463F4167396D16883828F30B172E4CE68791F839E874E849FA2958365DDB26580DBE3A2C81AD3A5C44E9AB553C36EF8D3C448925BAE69481C5957D8B384907832630A0CC21E2C041405E3E31974414D1117BD877BEAE0E4BCC0A302D054B87DC1F281135529319C221751CD3AFE194A968CC6D2908EE00DAC2E20550808883EF4CCED78F41714E9D2227DD1458B85C578725C436212CC6CDCA585493D057E285EF8DD5048E2D5D522670892D228766F4D5FF4FB9111282B58875E5F2D483FD530089ABB6D877C54BAC5F3378824618BDC4587DB2726E5B135C58DCD233C4187B444A0CA7EC90C896C2778208168BE6B603EC15DA582C725017E2EB0B94782801DEDA36C17E3588819B61746045039891A53F7A96922F1C4A3F87287D87FE2AAC736225EF48BED5ED3918AA8B203B2A7A2CB410076C32248E09F0D617096E604D7740E2BA1D3BC3C223CBFEB0E5FF5889169F6D5206724895FB5E1BA523B9B6D2B3A3398DC467C73A2C422404611ECC76EFD440DE75D7BD2E88C3A453FAC400FBE0848B6C774E457E5FC9F69E8300B61B26C7A5EF23A8D663DB660429735D1D8FC5D7E025C6A28492D7E91F36C724BB592896D8E9940D36194663EFDBD7AD006370DE97C713478E1CF9174C6A8E27C1B5A233CF072E59826F4E147C29F7174474569A2011305FA88C079B05F058C78665EB9483070F2E4234D16FE573D7D74D9CB0F75888BA0D5423CF073216E4FFCEFBB893316731C408FDDCF719DB08D230966B945BBD3F908984D21FC6DC33E60B112D089C806883DF0CF92C57AE5C1954A54904E91491911B32990762DCF57C0D62EEDFBF7F432E6A28D6EE18360F7729F93D3E67FEB97ECC99E018C2D1262141D8687465656501EFC962ECCB2A1F0BA14632A1854C78949F10F7C29E8F72EE510C473B754AA81F8CAF714342C34D210636C7C662302DB262B52606561D5E6345EA820078CE1132B13144A8220A33A049183D208A8E1F3FDE976BEECBCADF16026DCB221D09B1F65489B75DDD0E0E71D7C32892C9DF429C98D8207D91A70BB8214E3E078980C16C633CB7BF97E0AA49FE3E4373791D18CCC9D15C0431F4E4934F0EF15A08327CF7DD7737856B0632B645CF2E868AB75D75DD1BEADF958B5F10D1B47DE6CC9925B616E40DE23BAC71A28726845E459C80A60912F25B12863A1303D74A02C178C4E710CBB0F63FFFF9CFEFC5B93EF8E08381E88F2D0382FA75E22DC9755FC51D261E6A036C8BC03259398BC21560ED05DD5BD847000CAE3EBA5F7210530E71EADC421AFA6A82B1650963174E9E3C599C3D7B16A2ACF7F39FFF7CE2F3A2073D240D22399A4556C04864E9A65CE0E0E8D1A3C573CF3DB7971548755F475C2C1525F3CFF51F6B051E83B6EA569CFDDBAACF62F58DFD9C83F7CAFFC3DECAF3CF3F3F2194A0ACDE8F7FFCE3B128F711209CDCF73E9F9D52791D870E1D7AE0DBA2E4B6E4CF27EEFBA79F7E7A01F97B94C16471AD98ED1511238A5CF9F82108AB4A57F8CECFC9D40B429FC7775E9B485AE472AF89E20E03F3F3A31FFD68F4B39FFD6C04BB47E6A9101AD971AB57AE5DBB76CC27BEFECABAF83DF247E765C57F00FBE217BFF8C564D04D815A607200659D16FBE54B021757D831812E18B98877E4FD57E4F72BF29DDF90B142602037F08E9CE30E5D1BE67F8B9D73503CB08F6EDE2A5C56BDEBFB153B9D85B95FFDFB15B9E6551913F925138BA0ADCB7407E13AF11379C4356FCBFCEC95EF1E17D1B58F7B4E3407E4F39B72BF6FE29A4C6A3B6C94C3429CF7E5F93535D7DE82744996F557BFFAD5AFBDFFFEFB7F2B72F40864E8E73EF7B9E967D84390897FF9A5975EFA0B79F9945CDBAF098BFF3A58592EEC2DB9113A8960065FEDB5E33826D77C4488F19C3CBFB6B1B1F1965CEFC8B8612E612F8B2E99F3E7CF9F93C9FE7359E50761AD3FF5D453DAE88694F9E177BEF39D2FE45CCC30E6CBDFF8C637866FBCF1C637852D5F003CC47BD869B363A50414E0E6301E11A25F9795F2EF6022B34AB7637C4D0FE9B8228BE5A68CB794077BDBF8E8EE1B6EE95FB870E18F05717D5124C784A3E0F382B8D2FB4E4250C1414F0E7EF9CB5F26973CE9C77CF9273FF9C95FBFFEFAEB7F42824CEE46949BBCD7D3714D1057C2314FCAD303E6267163F033804BEEB58C20DCC3B967AEEFA6E1E2BB24088E679F7DF62B6FBEF9E697843BA6100D880BF7AE519B2CC84785285F10220E41C85D27CAA54B977EDFB5558A9522ABA7C7F2494294BE70D03315E72F5B3642FC5ABFEAF28443A90BB1A6C9B832178510EEF7204464EC4F214EF0975F7CF1C5F3376EDC78C2F73963BD4CE0F3F8EEDDBBADEEBF157388D1B824F773D0F739740B37C5DE79E71D9812589D17649C4B214EED978A8F8FA158B0F704595566CC4094BDF2CA2B5835D704087C302B449185B62552A072070FA20CF72EDFBBF9F6DB6F031C9C86D44B214EBF8E18F21498EFB1EF7FFFFB2BCBCBCB97EB6E00AE7A21CAF7746DE3AE1F7044CA82ACE57C415E6399A3FF14AE8292477EE7E114E20C5DC430CA199127CB40B9E6448765B25F9795F0A45C64E1DAC812CCFEA1A0ADEF898CFD3F73EE99C9E59669F9AFC5C5C5B322A2FA2EE35216E32D013BDFFDE94F7FFA5A6F670CC292419E9C4BF490B902E80D4021BF05C04025C2B1D34E310421310E1B62AC9AD74BF2F14939FE5074C67928347D61274E9CB82CC7BF8E3F4602382944DD5B1AC1F43EFD1CC79C63E1ECD9B37F76F1E2C55FB15DF7C78E1D13E9B5F69248072EC22D63DFDCEEEDDC7E1E99CF6EDBC431E80FC4296DA22C28CE386488B1D8FB243C67E5E3F93FF165B980B3429815E190FBC23DEF0B08785556D15D7501F8D3F77A9F04495459DA4D7DB69B9F63B59F3B7EFCF89764DDE1DE0FE2DE457A5C5E5F5FFF1F11597A6B71648872CD83EE6CE25C35DFBD2DF4B85F287F5561FE78C52246DF7251F4CDF7849B17970D3BF7CD9F6C190ED930A2ABACB9E1D8D70FE31CBECF28D61F85D41062EC178EC1EB05B3F036D5F84879017CD7C0A08D2DF37D1007456D366C4E811ED86311A3EEE26382E6768B3B723924E6335F66981D25137ADD9A387776704A8063AF353A7716708367014F74CAFF03B31060B8D0291A5B0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (89,1,'Rack_42_with_door_(128)',decode('89504E470D0A1A0A0000000D49484452000000C7000001B80806000000F106F3660000000473424954080808087C086488000000097048597300000D3000000D30015856D5690000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000679D4944415478DAED7D698F5CD9795EDDEAE2BE35D76693C365C81969166B1947B66543816307360C250192D8800504F1C7F86BBE25F9010182F817E4933F184800430A9000121C688B6DC990359246234D2CCC68869CE13243CE70279B6BB32BE7B97D9FE2DBA7CF7ECFADAEBEF71EE2A28A55D5D57DCF39CF79DFE75D8BF1783C98B551A83168C918CFE204F7236C1FCED2DA5940B1198132EE41B2F9C768864031B7B8B8F8B9E170F81B2B2B2BDBC4A64A0287FA9EC9F3B9B939E3EBFAFF537EC6F2B9319F3F7CF8F045753F5F55B7F87F2B8CF420E925877B3CFFFCF3DB1F3D7AF4EB6AD37C596D9E7FA51E9F7FFAF4E9DCE3C78F87B9FE262988F85C7FACF35C7F0D80C0A37C1FAFEDDAB56BBC65CB9681BABF1BEA5EFF56DDDF578F1E3DFAB56F7DEB5B0FFB2DD8836370F6ECD97D6AE37F496D8E3F52D7EFAB8DB3B0BCBC5C28800CD5E93A78F2E4C9605A7F8BBE81E5657B3FE6B3B6CF6FDFBEBDBCB66DDB3656D740CDC37D059837D4E3FF1A8D467FF1E31FFFF86ABF253B008ED3A74F2FAACDFF7B6AE1FF58FD8EDF529B63AF0240A1800040946098F6A6D64FFD904D9DE3F752A2E8EF2B400C2051D43556CFF1E2133567EF28C07C43A96B7FF1FAEBAFFFBCDFA22D00C78913275E807AA4AE3F548BFF59F5BDDB0086070F1E1400825AF0A4CD157A92A76EEA3AC00B9518AECBF47905A671F5FA58CDDB874AE27E4B81E57FECDCB9F33BDFFDEE7797FB6D3BC3E0508B363C7EFCF83F523FFB1575FD33F5FFB3EA714E9D7A9008058080EF8DDD5CB68D1A23157C9BDAF49D29DF65FB7929252407D13F6BE227A6E7EAB0292F35B763BCA6E6F6969AE3EFABF9FD9A92365FFBDEF7BE77B7DFC61B088E175F7C71DBFDFBF77F0F60500BF4BBEAA5055891F0B37CACA37ED8FEEFDA84BAD528E4F7E69654BE7BC6DFC74B02C2049CD0030007102EA59E42AA00380F15587EAA9EFFEF3D7BF6FCF7BFFAABBFBAD06FEB4CE03875EAD41FE89B11434DF66975C18AF445B5F9F7EA3AB4EF548E0580E9355DFA8458A252553117C86280AD6F7AFC1FE65E1F4052259952B906E070306A548794C2CEF27BEAF56F5CBA74E92FD56BEF9C3F7FFE46BFD513C0A188F3D8B2D996D4B57D7E7E7E0E96152C642529CA0BA2DEF49CFFC7C50DEEFA3C9FF3113F02BF07812187945031665BDB67631E4D40958784FEFDD2FF817BE36B04049E4B358C9FD75FA7E4D1A5916E3AE6EBE077EA1ADFBA756B458163AE9AB75BEAE13DF5F89EE1F1F2850B17567A2818F6C9993367C6964D76E7D39FFEF4E8B77FFBB7775294579CA224D77894AFF33DFD35DB7BFCBF7C1DDFAB167845E9D2430906DF98A6AF2634B2859F53A7FA589DE20525082C54FA657A3DF535FEFF6B5FFBDA1DF57BF712D8729E783055CF1FA987F316E09CBF7CF9F2A3AE826364D2DB6337A39CEC98CD8BD701080083A7AB6B2163FFCE2686E9DE4D12494A3ECC31362C5FD73667D07C85BC669A2793F4D55E4334C24BB8F89E785C397EFCF8651370705DBD7AF556ABC1E1E300A10008FD1900013AF283070F26E65DAA6C784F9D7C93080BAA66A6EF9D85D844DBE6C423EF0903D211F7C2D31DCF79EF54A56241E0028609B0AE3973BC87688513EABD13EAF19FE8A03F7AF4E80D1D3002441F5EBB766D5387CA8CF4B82179F2E55069B0094016EFDFBF5F8282A719780C014187A03C55377B08926DB3F230A09A8501524DC06CDDBAB50450080842816103482260A46439A01E0FA8C75F337CF6E1A14387CE59D4B5F76FDEBCF97853488E9C12039F8554585A5A2A018105C72640D8C48E1D3BD6718E94DFE123E4D39214AE4344AA28B6EF2111274FE06172EFDEBDD2734E4348ACBAA5AB55B941E1BBDFEA71BB7A7C45BDF58AE1B32BFBF7EFBFA8016602A43B77EEDC9E4970E89318021A9C7C77EFDE2D1715806058849A80892A6503838B5B8400639AEA953C8143A5AC7EAABB248124D5542B31A700080E161C300451A821226233370618C3FF81F853D5F5BBFADFB377EFDEEB369EA39E7FA4F6D854D48A91D477434F4F9C6E00834278F988D770CAEDD9B3A7040449B654994C1B429A746325C646720E1D24216A682CC99616287C3FE60A1219870FE67AE7CE9D88F635AA6026A76CE2E99F1B14A152EC6075FDBAE1330FD4BD9FD3794EF5FFF795EAFE24ABE4306D367DE1B030B76EDD2A2FA84C58209C660AE513E9C02B4427AEC3294C9B73A34012721FA6CF988C0D36B0E000231721D1C70174E3C60D86C497D7EEDDBB8DF39463A36F04602CDFB7435DAFAAF75E35FCCC53B52F2F6A80990048EDCDBBB5C1C13F4C2DCADCB973E74A406061705A1D3E7C7870FCF8F120E9909B54EB7AFCAC987463391980A11B42422D52B867A8AC942A346A4082032C9428A675CDBDD1A70998C0EF9B53EF9D564F71FD53FDFBD47C7D62B1ACE1F18AD15AE5F0240F21198E1D3B365904291D4201A0F38A1493B08B6B4C13242E55CAB67026FF869C0F8025D69C2B167CC245F01DB0088203EA7FA7E9EF7AF5D5576F296973551D7E8B0A5C7BA11DF092A6E659004CA6EF3BACFE7F182151FA7BEA111121E7287170599D8095E87E72F0E0C12DBABA94EAF4330D869A507DA8C89A516DF265F14D5B95326D069354C349CFCDAFCF71ACA9D6E76381D4A0AAEB23E4070F1E7AF7777EF75FFE9727CB4FD5A43FD971E7CEB5C34B4B77161F3D7AB078FBF69D85EBD7AF1FB979F3E6D13B776E1F56801982EF003800DF4600A66100EE528F9F51FFFDCC3AB5CAA4A3D635759AC837F909139E18DE4E33A63A0157201EEB586266816BC8F7E1E7A1050F87110F043927B60327D6016832E5DA4E603C7E74E5FAE0A38FAE97B4525D17D49650D79EC18E9D8706AF1EFBCC607EDF6EC52D47A33B77AE1F5CBA776BE1E1C3FB8B4B4BF716AF5DBB7E580167415D8BF7EF2F6D237070AF8C766812304D02708D5A15B3E962360517928E405C00051D6120998CD3B279C363FEB626C192833F713EE49CF370E0E2B84CB5297E0EDD80B1F630B4FFAD0F1E3E1A3CB8F26870E54A19D00BB5E1AAFA0975EDFAD968B47770E685171570F60CF6EEDB593CB87F6BDF9DDB378E3C7870EFE88307F7176FDCB87EE4FAF51B0A3837A0AEED0370081E97BA16B3C19B9658A5CA6AF373C4924C1D140001270592826080954B061BA658A86CCEAD690283E6D53A9C8531578CC465F025240CE60A5CA28EBA95E2040C19CB4A0DBB7EFD4E790D56CB10DD5ABD76BC53143B0747174F0C5E7A79F760DFFC9E413178BCE3D6CD4F0E2D2DDD3AFAF0E183638ADF2C28A9734401E8A87A7E44ED0FA7BA16B2C19B52F1D6490E9769D705185A4CE808C4826391E1FBF0997A632D5C3A105DAA436E50D491202E154946D7D25CCB901B9ACD7D0E409399DCB5019A280986EFBD73F77E790D2E7E4C75EDE260B01DD760CFBE85C18953BB4B756DD7CEAD73B76E7F7C40491D25719620658E5EBBF609A48EE23A378E2D2D2D6D87DB804682A6B887ED7B8C6A55C886C56BF8C3E908C4A6C7690742383F3FBF2E1C3D7573CD8A4F2374D3DBAC58312A12258A8CE4E5E94AA0C064EB5B239F137023E6F2E1C3C7A5AA56A96BD0B13E51DB505DFB7EBE65DB0125715E51FB075267F7E0FED2ADBDB76E7E7CE4DEBD3B8B50D7AE5DBB76044602257516D5BEDB8F39217874299E0330C14E400C6C7645C006B76FDF2E2504160F8BB5B0B0502EA81E2692AA96E520CCD374F235259168C1D3250AE6586D92F2300250E0FC9352C56660596F0E9FAD43A654D76EDC29AF6ADC59BDF6BE5B14FB06274F9F197CF6F3AB52A72896B7DDB8FED1E1BB776F953C47499A854F3E29C1A3D4B59B0B0A3473745CA7026664339372C3422A0010B8A013E2C4DAB76FDFE0C891234CFC9F5CA1B15839496ED384BC2E40524875AC0390910BBAA75C971CB9D5CE694BE7BB4A55C37571555D8365E7D260B00BD7E0E0E1E383B32FEC2EA5CECE9D5B87376F5E39F0CEDB3FFFC33FFFF33FFFBD5429E27402AA9369FBE5CB97CBC93E79F264B920120C2E421A1A5018426A377A3163C244622C7D75FD1CD2018875C4E105890E4F7958E8486BEA75AFAA6B0F95BA76B554D7B0A9AEC1C169E3A3D1845C7E189B564DF6A3975E7A69872B4C24452DB265F7E94EC01869D134784C8EBE5095091B38446DAD03167C3FA406A43AE6F1CD37DFF412F21615B3B7AD5AD01C580979683DD958CB8D0B300C99D02550154681FFCCA500645624C8FA53ED61C9CDE804ACCB4342E7D94FC85B0E8D6290129FF58C90DB9C803AF7A8A353F3759691C1C53F02A71C1D857A8CD1AC80C267410B91943452D0C4CDEFC07DCB7247395530BF6AD576C931A865F21D85D4928A55A364EE34CC6D3839B1390806A819B2B042CA0DA700A38EE73F876431F13082427ACAE5EB75A44A9B0879AA5AE5F3817909B969F3C80201A1A723169829B274DA000CB4C9538DA2273435FBAF09C912C209EAA85B2E49203DE59C77569E873A862BD4016802872B5AB8ED6A95ED3E43F2495C4EC02244626001E1088495040BCADC67D8DF21155242459AD8EC4DF00BD3676C4EC0D0531FEB41732DEF01F38A0305F3CA3606A1EA96DB43DE1DC9E122E236C058939DA4BA23178079CD7004C2078281458395E4C081036B12A05CA575523DE5BE4D9FF3348C01489DACC01007A028125782850E4048659B5431718E8DF6906F24218F8DCF72C656C9020AB09D0310E0100C8A73A5C8C63AFD7278C967D10998CB222581228D1870CE324B13A65C1956E25329BAC03BEA44F98E5C859AD5228CDE7AEBADF20731F1070F1E2CB30249A64DA122B9AC5BB338C14D0323E64081EAC56044020587170E31BCEE22E4DD1976421E3217CE72A04A2D5A79E18517CA934A0F13A9EBF4336D80EAF717A91B78560122D5A254B3ACEB357ACAA1DAE2F7D0593BEDD0FECD44C85D8099107257EAA902C20AF884CC19CFA516E939D5CC69984560D405087359A80E994EF45C9286D548420879173CE4599C80A1C5D2EAF0088A7F93050BAF57E530C74D0123879F23052020D1550AF00424F2540FB16EA59405ED3A2177DD7B0860829C80293C423ABC40E8698E647E312D2C394CBC390094920119CB39783898D41DE694134439D42D1B9FEC8A9A650A1F89E11E4E27600A8F60BE814C7D94B67B6C009CA42622DF95A117CCD6C375788898D62126C6AD27E4455295F9102760F0A6C56907303045962491E645E9FB98A6B5AA4E88499312C46590A0C996554A187A03EEA7778CF249EDDE431EC7BB929C80A6C9C7E90F27202E3C876480C50480A0F448B56EB55962841E3E3255960718243173CA31D7B28D814BB5F26D849E909BDFB33A01F501B0C08ECE1459F6D880571C0BA4B735EB471A306C19807AAA2C1B00319C0412DA16D1DC65D52A2B21D7F4D5E1D5AB57CB144C2E042483ADB540082F99C55CF1D409CF098CD0B932A5CAD253CE5605B634D99E906722E4551AE6081B1F0514E8EFC8596267A32D54390110FAB734E500A4850B641ED2DDD4337D7D51B7EEA85529257A9C55D69554787CFCF8F11D296122B1E45EE8CFC3B62D11A42DEE2DA6ED408AA4C1EF409D304A145DADE809791CF7F03A019B081E94BDCAE5E70140A53244A7C9CEFA407E0B43F965DE461D152CE4E75CB572BB14B29EDAF62DA91C688AC490C5A32985A4A99169B26D25E3B83FFA2F58545A565FA7D143B73ED5A997DB254F78A84A1B63BD0B7602C67AC9D9A64BF68B90314631C5A3DB081699572E3DE2F492B3E36C1D15CC47C8BB96CFE10385B31C6868B34C1B6864F1688649000CACA6EE2AEF93DB9235CBA030BD26372CFD4C72AE749F46280FE909790D0FB98B90FB362DDB02E38294A09911A1D37A35C4D84DD315096253054C9E72566027F90EFDAE3E64BD26210FD153D9639CC5A371B261B1D84D888030A94CBD973C8D78DB1C805055992A6B922AFA5AA624FBB48D90C73A03AD4E4082462F1E8D4580D5058D33593C9A97ECD254F7F4EC1230521C80CC0DD173CA71C9166B5D26E32152C39926EBCA045413BEF5EDB7DF9E4806148F965D64431A67F612231E04A135A90012992A8BF5409AACFC8CAB6E554FC8DD80B1563CAC9C804F5E7BEDB53999A0944B2AE81B45449CB66EC5584A27A7675C7F4DF794F79C239D904FE6D4C631AA491DE726D27A22942CAD6FEA17D7868183051B17AA4F0E1EE2031901E27302F61E720F210F7102D601801C92B033949D664B7216B5895AA783E1DE98F805809037D0F2548787F8FC1CAECDD115C9914CC86D9CC3570924F494031098224BDF0709636AADDCCD3C649A2C4F7959489AA13521A6DA506E62DB005DC921CF4EC853AB15F294646B650C168F96BE0FBD707297AD548C33930061E16D5BCDE2D05604DDCEE5A849C86D4E405FFAAC1C00011D81B2CA861EE64EC0C5F69490AFC94797DA90BA0936BA072006B300710F3C4418A469028B6F2EBB1A952B9BD72411F29456CB5095645B653AA9D04596D2036A544EEBD6468BE190BFBD4EE91BDBA9AF3B00710061FEE9D73039FF4CB1555D25E42EC9194DC839A488C7906D95697D41C6190061F27DCC32006649B50A559174A060B03F375365E918F41D749DA2E401D5D46DEF39030FD564CF7DF0C107A584609F88A3478F969FB381A1AE79B76B4049B148315C849EF2AA7F63A9DED23168CA04EC1EF728922B8F389D80E40728A0B0B8B8B8864CBB1A67D60140F5B7B46ED54C3DC273390019F94CA9C29077532660D7A272A55A955264C1E904544078BA67CF9E2D24D3B9A502DF03282095DA2A3D58111DC3167F96CB01C87C199B71A36B8187218780D3436E3A4D62AC5531A061561CBDE1FC7D24F03B77EE6C1D4260B4C0FDE164A77ACA7AB936EB538E50131321EF16DF7047247B09B9ADD65148165A286098224A4720A505A5919E4BDE668EC1AC4859541A8FD2EC9A5305EB09795AFB81356A95FE452CF81C1B71CBCD4E8288906AA91BD7E922DB262B952C2A4DD50B0786DEE2BAC942D25DAC7818D3FA2CC909686A2D0092CE2EB278CE7EDB0C28F411F9364B8E101549F792EB00A2FA15AB82759D90EB73102245269C23A427A0696021593C1A80C00020E0FB60F8839EF31163DDEAB254916BC1323EAC4E2FD5D218CE61DA081D50AA9CF92C3E2932B28561982407D4247AC66953A733D0E6086C638FC09C20087D0D20E125536559545A16720B25E45D31E5A61457589743AE8303FF477A2C3DE318580C78C5B148211545BAA84699EC89392C5254AFA40350A6CA1228301B77AD83532A2137FDDFEB04AC5A906D45116994B3947153B2B5402E00749D73A49A6AF5F6CB6C1C243DE4B68DD0137237609C4E4075223D3E79F2E47657DC5468E8B4EB3D2E7225AD5A572B17F9F72C4691D354AB03851514F55AB9B6D3B1FD52238E903B39879CCC186B55AA1AA55BC5B079D4FF5B572B171C0DEA0ED41E992A1BEAD7A8E314749D9C5D931C8D3901EBF208E919A7779C3E119936DBC6212D4DECCC44A0C476968D05464FC88BA4F6035EB52A0400BEAC405A55A4099291A45D8DC6A57ACA0A86ACBECE042797EA13A36EF5843CBDB8428813B008950AF284A4679C5E769C9032AAB7CBB5AC6C79F694A23294449726290EC0EE563B9C6CDFA4F603A5E490210B3122970B63F28C33845AFA3E7CF1535D004CE8A92FBDE2DCCC94367A125A2CE708D9246D53AB4CC68810C0785B10985A0B000C4C91A5A5091D8530C81F42733EBA2241EA106F93A79C39222EB0B83CE45D26E436EBDDBAB67FB6581B091A2C061D81B2AD323CE321D5D463BDE45D004A0AF1D6ABAFD301C89C72BDE2611FB29EEE215F2739F449552018BDF3CE3BE582C01188AC404CBE6CAB1C5251A4AB6A544EA9A2BFC60A2532A4045C0F521D04BF5B7D381A24E4363F87D27D57CE9C3933470B8BAD71662E005466CDD6AD244976530D33A5039040915E701B21EF62699E68426E425AB5982B9414B1C183A15E72FC7E2C2C733D4C9EDDD05A55B33A58F480EDDE5C7354D70148A0F484DC5CD44DDEBB0F30239BB3CFE704CC914F4E0724360C4DBFBB76ED1AC74D4031F58265B16118305CC09AC71670000AA5895E543B87540925E41D50AAA2CDB86BA2727D4EC0BA3C82A6490040960065799FCDEE1D776D34FD3D46033053929E721696F6599F52D42D5DAD98D601B25909F91AC9119B0918223158F1907DECAA1A58939FEF4ACEB86B23D377C1474A15F206DDFF94A26EF54EC09A843CD409E802051B3AB2B532078B47DB887C978B48EBAFD1244E8E223DE5FAE7731557E8097904218F31FF0104301B429FC6A2D2330E35816A9489C8F7E6DB70B0484FB994CA3A274CE11C5D0959AF45C8439C80E40DF08AC3110840D01985B6CA5CB4D0D8A91E20615CCD34A4A79C019DAC5C62B25C75392AB73621773901D57BC38F3FFEB80404F56234CF0420628A4787A851E2BDA2EB2008CD0094DC04921C173DE5B66E5DDDF392D724E43627A09AFC21FEBFB0B0502E04AD4B3227A32E8FE802F7C85DAC4DCE99EE2967EC95C909A86F88B6E3C4552B3798909B442D5E5740583E74E8D09CA9A248A254B0AA0A54D3DA283990268B7BA31A94028210F060ED981B1262AD69B1905E47C843A486D7439E62AD4A05057E37D400820F5CA6AA95DBAA5543051796318203901E6C575C5A0E49D3F5A85C1F2137FDDF9B09C8EA2339002013A1A88EE95D64DB9E264B83053BCA32FB8F9E721337C8A182F99D80EAF33D21B702C649C8EB480CFA37A84A302B90DF2BD364BBE2F3907E0A7ACA99532E5B309364C780C5D60DCA5560A027E49184DC47226D8BC105A723909B9FD1A2F47974397CDAB6B9E917C29C51AAD03C6BF294E76A98D976CE612ACD934CC84D150F5DA0204F2020E8B042EE072587AB1A6297DB9DF9C0221749C65B990EA510D5CAB601BAA45659E7C05648DA161A6E52B7D8CD949E71369307D104204C6D954378499781E19304364050D2C84E4EA6EF7713F241AB4987AD9B6CA8337022396CDE537006380191260B6030EE075981941E29B1535DACBA9ECB01C8F246D2AF414F398B5B8410F2F69B7207C11CCBF419A713504DF4964B972E95561578C50F1E3CB8C633EE4B82EA55A966258DEE29C76000A829DBAF8BA5797C4E40272177390195D478F2CA2BAF6C0BE9B5514702F0F338F9DA98260BB593AA50AAC4F07D869E72D9A7DC47C88B96DB7225210FE11C4E421EB3C963D5229BA951E62FD83AADB66150FA928F493F52EE869921D1D5AB9FEB8EE4F0A950A6D793929DEAEAD55407F0C8469AB830F6ECD9D33A0F39541D5CB85F48115CACBC2EBDE475A48A8B8CDB1D61DDF290D78ECA4D092DF02542E1B4D44F4A49E4BBD23C5396FEC46120F3C9D987DD645D4AB17849B54ADF18DDA93E92294D361791E6C6C749497323D527C959BADC235086D4609E58709B520560315911530211434FCEAE1272176046AE123A3E50C8B6CACC27A084A0DA245B2BF7962AF766668B02E6CEB01BAF5E7D3D56B5B213F2B64B8D3842BE8E73B8A484CD7284C563F1689C7C0C73808A20CB8386AA4BBDA7DC2C55185652EABF22E68A8792DE5B25B690741742D66308B90E9851686B0178C465CE380B95C133CE4574012266F3DB1C92A6A26EB175AB6605843124DB14A0C9A866C9E574B0989C805D6BA4991A956B941C529D520018C209C8F44B00028E40539FF114A9B01112639A1BA22E4043EAE54A69428B18C3E06D074757B887A96E5568FB81121C3EC9C1E2D1B2C44E4CBDDC1850B475C1C01B18B69F0A0C1719970E40DD24EFDA085DF273C4B61F2809B96D41AA8A232B509B6C6122398A48331B102A5AB5A0AD5B322636310ECA159459D70128D28DFB90F540426E03CCA86E28484C5D2A590A949E715647049FC1E9BA6FDFBED631459434C2457F06FA9A501A4B6992D301A84BE31875A227E4C55ACE91B2C94301C34DA09F66CCF7604593B60F1C02F4010124CC290768522586EBE77C1EF22EB83C52AB1D7A39472A8F90C5A375958C664809982E0DDDA781474850AA5E7864D7269F5F232684A4CB84DC74EF4151B9B9BA3171B1593C9AAA13462E136FDBC1426FB94C95957DCA5D85A56DC070AB52DD51AB527A918F42406002855E3C9A5F281D813675A9F794BB55245A06E9FC633889CCDB88E11CCE90F59E905BDF8B921CB278B46CABCCE2D17A5BE51E00E112D8E500A4242E45BDC8D7E03CEBDE7257ADDCB58FAD57AC9CF91AC1845C9F58868F203D56B65586A8475E029E9BFC1EB14EBF2E7692ADF39AEE2597FDE0091653144157472D0FB96B732AA9305755212C01A11761CBC155BACE3B7258A4E804644809545D13E758BF11BA57F1308A90DB16A5EA71BDBCB0B0B0352490B04EB950A8048C406DE38AE160C13D82A331A92B160421AFD101687302866609F684DC13B29E432D728589D033CE2EB2D83438F1AA8699ADAB95CB107400059BD79400965305D301602B07DA137207210F99F058B5C86539619F6C3C320FA40B4E40A602C3A001A04055A55FC3E4F3C9D19EC0A5777729643D25D1C9CB39EAF20886549B7ADFC92E505DE31D981348495AFC00125CF098CBBCF2541E2241D165276088D4700166E4B32CC56C5A6605324C02FFA7B797EF879C905D23E3A6BC727ACAEB58BCFC51B9DD25E4216A569013D0F61E4D88209A32DA54168FEE7B0486ABA2F469D0530E6EC25EE5325536245D5602A0AB69B2B1845CFF7F3421C7E2C9E2D14CB8614660688A6C979D84310E409ACC319F00885E7DDD5711D1E504EC43D60308B969A1E4A4E324039184331000C022010C689E694B80EA3A005281627B8D2A29BDE57AF575BE6FAA9ADF5D276083845C89F3D1FBEFBF3F098493C5A35D29B2B3961ABBD98161930EBA84603215D6C5A682C90DD0B51CF268426E5B844AA4AFBCF8E28B43535BE5D84D1EF2F92AF7B9752B06825D3955A3129B629D827402CAC5EE729A6C2A210FE21C0A14E318F2170B183A02D9371B2A5A1B4F339CE82C011A1A8F56C701A8AB565D4D9395DD6453AA1E8E62263D8650DADE977DB39903223B432915AE754C9105EF281D2149E6E7E72769C2BA03B40907608CDEDD36C9E1ABA66E25E431D53052AAAEEB1532786A4A7F88CE5DEAD6AD9A654E837B86F480C54F7ACA21596C1992A9EA564FC8FD99902EC078CB81A6904A72145B5B655B899A5C9B7A9A64D355CEDEF773D2538E47B68F83F1837396AA5AB9E6E1191FE986B5CAC52B5C80F13A014378846CAB2CBBC6328EAA8B391CBE468DFAFF195DC00C4B7231A6CBC614DFD6DBA4D955A9EE78C8535A9F25C556D1F2C2A6F3ACA4AE7BC6F5A8D3DE841BAE8ECA020CECF5C7C8DED08643369573ADBAD5E63571AB953EFE15E404C4A09E8C0B8B267330A4CA949AD3D103C3FE1AE797CF599A95B5BF6446A04DAD32AB116D97DEF13DC88309B99AF8E2DAB56B9314597AC651944CFA3D5CEDCA7A89510F1826154C7AC9E5C92841D413F24194D43001C7E90454E018B2425F4CF1E810A9E0ABD0D7A641B375CC5CC51661E0DC31E45D2FEC6656ADDAAF5635E604547CE2E99E3D7B865499724805FD675872866A827AAF75E8400C1A0E192676D1E7110B02DF6B94264C93F511F22E95E669C409980300FAA0679C561816830308E7E7E75BE704440517DC33C3CF912ACBFC8D908AF5751C806E5366EB952AA7D32F6BDDAABA449AE49139E3B2555A4C3593CD3858150417BBCA425D454889F494A7A4CB86F839CC1BA15B1E7213289C4E4017E788950A26FF082EE61FC8C2D13E22DF7632CE4301A9006C940963073DE5A6B9496998D913F2B4F603D1C94E3E354AD6B492BF0C0B2D9BB7F4D6ABB5832670E92967AA2C3DE5A90E40D7C9D9C516044969B2BE13C9B4A9E9A822D1A4579C11B67D6A6C3C3793CE3FF030B65EC623395A0C37719F8E6D971A3509794C44ADF48CCBE2D1CC71966D957B50C47336D36B3C64E82967380900A3730A17E7306F846E498ED88C406FE0216B2DC9E2D15C1C53CE781DEB569775E310B0C8EAEBACC0CE901D9932ABAB56B6D3B16B21EB2EA9E17502EA9B1569B2D7AF5F2F4F2B5855F043AE5AB93913A1BA0C8C10E22DEB8231AE8D00626E4C4FC8D38B2B7809B99AE4A767CF9E1D513AA4C64E8584C5536568A3ACDFB367CFC4AF216BE58670BDD0D738CF74A84AD26D3B1DBBE0E770F1AE6042AE4F7AEEFC70D3EFA07AC648DECA0BDF3A2720381AEE938D3265A2570E60B8D6CBDD0BBD9B21EBA1CEC0519DA4A658C030B481791ED820B0C8A0E40F9E436F66CBE5360D4A5EF036DCA3F46BC898B53A12C3F499B090F5EE11F25029E27502E6684623E37D9814255364BBC445C00918FA8FB0120084FD4F68F1CBE100D4C1D1D52AEBB508796AB293EDE74812659721DD41D8D7CB5DC3EB26E9B2EC28CB54599A70EB0422F684BC06218F11D7B62F32A5C8CA729531299E5DB652E1E0604E39F898EE295F5BCA339C73D84FC7EE95E68922E429C49B8B28ABEBD1D66EAAC99493CB740528E46434CD32A25774C04AE21C2127671B0979A82A1544C8E5EB14FBD09341A039E9B2AD726C12540F8A3815498695609E9953CEEEB2364FB9AD6E551738878F90FB00E37402AAC91F5EB972654DE37800820BC4323B3900D0575C0FB748E9D5D7294DB8A8B6345A9BDAD113724BC34CD7A654133FDEBF7FFF1A75C9271DEA78C92B8B5621F56ABD785B4851B75812DA3430D9DA4CCFA6CCD5305302C2542BB78BD50EB312727DE2ABD3690CD16D7256C5960BB59978493CF1B8517D01736D149B4A83C305A9B2E0658C60867A1A0B82582B55EAE6E809790221CFC12364175999228B8EAB78EFC08103ADF490E362AA2C0E0348641C062232A0B6BAA57FC61F95DB76A9519390DB26D657E9220630D2332E53649937DE958C40992A7BEBD6AD92BF41A2C0012855575361E91475CBEF04ECB687DC4BC8437D19295E725616A12F444F93EDBA858A3E0D84CFD0F987F82BA603F04A55B77A27604D421E33D936509010EAE120F4964B8F796FAD320FBD4EAEACBE8E41E91ABB56EEA8DCEED6CAAD1DB2EE9A78BDAD320B29D88A47A7A8655D922226F58B25580912F015CE6F280F7147E5B65E6EAC9B8398E8DCE01604F4D8D2332E8B47CBBE1B3635A0971AE1F76EAA53CCC348565F6730A734D9DA3887690374DD43EE03CCC8B5604A1214D087717A61619848834BF78C37D123B007C6FA796238895E7D5D7ACA4D3EA22E13F21433AE9790C3438E8D0F8B0AB2D9241864CE782F11F20025D62245AE47BE42296E8BADEA629E7E6C4F8E7584DC34F97854E4F0E9FCFCFCC8675D8A89E835BD87056568CAA085310D30D542EA826C9BFC1AB91C80CC2BB7A5C9760D24A6D23C3152A45639D0D45E1CF8C5500548306546E0DEBD7B5BE704848393B58151A882A9B2508FF49CF23A60F1D5AD0A3D31DBA656D9EEDD0798A04CC01C80813E2CC3ADE90444361C25930CC56EDBA0650F658E7020404AC2A701932D83386D052CEA34CCEC09799CC48C7602A64A0C263D316E8A31455D4D91E5C05C404AE28214014870A1FD32AB4592D7A556270921E45DE11C319EF1759CC332E1450C28F48C3F6939915EF13AC5DFDA4AC4690D8414654809D42F067DBAAC812179E4211BA1ED6A554A6472ADC043E6155012C8DC0E3D97BCB7608519337088DCBD7B7752CE870518AA9A5E6BE633C401E8DA085D6A5E13C2BB823B3BD93634EDECCC19C760F16879C2C586B4F7C33CD7B47031B49F79E598737918A5D4ADEA3A2137FD3FB81CA804031609A719C34458A335A47874AF46A549113D7E4DF79433FC5D7ACA6D9CA35BA08827E4D14E4035F97357AF5E9D3897A0073390D06459A963DEED3A28628937330BE9D7005000181C5CD2C7E1AAF8D70D5F47CDA85CD30254B1542B274F9E9C9311B7B6826375250693A08A16AE184E77C6A6E5AA8DABBFC603CB542BB78B52A30E210F720222875C7E796CA888EFF36C67C044A8B69A76714FE009F094B3C617CB1AE500866D7D7A421EC6BB529D80454E1EC18C400002E64AFA3D60EFC7235E6F639A2CBB5F31320092042A2AA425789CCBE793EA000C21E45D921CA1AA549413B06EAB656C0046F252B5C04681B952B636E80AB72050105282C3801D6561AEA505D0E6D7A85370C15CB7AA1B9C2385907B39472A91D63DE38C1CD517BFEB037371F3E6CDF2A0608B025C4A7A4EDEAFEB008C3D39DB68AD4A693F50822387750916135E12AD32C43DB472B88E765F7DAAB60C565FA75461EC15780A0E19BD4F790CE7B06D842EF939527A9147F721E742D2332E4DBA44298112E2104C1595398BBAA5AA484D7E273DE5000CA40A381A8B4ACB03C9F5B7F808791724470821B7FD3F5872E8C5A331583C3AC5E7B1D9D5AA90CD56B7EAA274C462EE711881BB31A79C85E27CB5AB4275EC9E900FCCB5724D13AC16A2407D25589200027625D2FB6DA492F57EA459A47818C99C72E68B30B75F97AE5D26E42969B25EC9C10A7DB0A44847A0CFBA542709AA8D8361367525884DAA304D9631583627605709B94D32F800E30C3C542AD418A7526C5BE518890100027C3CF9DAE82187FA834386163B566FA90B0CD3DCBA4AF3F41EF23867E0286623FB40116A9B97CDE599CF009D1A5972FBF7EF6F9D1310791A986CC63FA15805FE0F75952551733A007570F41EF2B44AEBA314EF6A0A8F9029B2CC19A7E9929BA3CD69B255C18A496A304002627DE8D0A1F2BE597D9D7C228703D0552BB727E47EC0043B01538834AD59B2A00073416C05E0BA32A862B1F802A409FC1A50C1E834A53A9BB36166D754ABC60879AC1AA517902689A774707582EAF2C0DCD0A7C19012597D1DF3E67200DA5EEB09794D426E9B605F3D563AA108004A0159545A3AAA725AB7DAAA76F19175720118FA3360B4C073BD4F7948C34CDB46E8B2873C8890C738EA6836943C819D6409981E00E9C030BD867986A18251CB32A71C73EFCBD17701A06F7DE621E42EE920C933AD2AA6E2D13E50C4543FEC816297048CEA85E4800A2673CA59BFD864C6B51530EB022852AB1D7A398712E7439C5AACAD241D8131BDC67B29525F82D8A40A0F2D76FB65E258CF39E2A4461421C7EB0A182BC78E1D9B6B3A4C048BC962016D74028258E3B668ADCBE900941C9066602941BA1D953BF0F6447445E77A9D80399C7EFAE79911C8934E36CE5427602B9D80AC160209CCB828567FCC991AEB4A74EA1AE77075760A014C5251B794BA54B27834CC936C8483C0460003A3AD4E40990188211D80381C18EDCC98B55CFDC94D4EC02E710E5367A724426E227F3127B82DD94606C261036023504FEE6AE34CE900C4DCB0FC271EE91762F5F53AEA56DF3073D01C218F95183CA9586687E1107DF168FBC07C002428328183049E725C3255563A4F635A11F8087957DB9ED924A933873CD40928879E91C65F20F3C57502DA9B70ED870F8B4A43DD64EB65107A1E36B2FDB24FDDEAD364ED6A65086082258754B764F168FD97C914D97EA48384070CC83CCCE94C950558C0DB189DE08B64E8D364D35B9F79FB90331CC4543C1A43C6FCA458B7FA1146BC65FB6536BF61AF72A8B1AE0216B17A77DB2447CA1C7843D6B76FDF5E5CBF7E7D4DA91D5C3675299630FAC0D4456911FA1AD60012058716AD5FF013C95AB994E27ADA6CD70879880A1545C8A93EA1DB109FEB9EF13A52C1D63873D0C286995483628AD7C58005528316402692D9FC547243749190DBA445505137B971D5648F95082F645E414EEB160B36D0FFD156B32EEE939542E8CFB079CA632C52B6D7F4EE597AD5F5EE489106A372433679AC979C271B7B4A304596367FD6CA35F59A30D5AA0AA95BB5D1AA1BEE0F170B56E040D8BF7FFFE4C4C71C480B54CAFCBA8AEDD936459F26EBE65DB5CA818678C9192AC28038907A6C06586118FADE7402D4B436816FB249AA1919009080541F3B76AC040E4368EA6600C6AE515709B94F8AD4CA04747D39C120E38864F168DB49D925024EA0C0E80189027F069C7F20D7B40ECA3EE5B1EA968990CBAB2B61EB31AA9455728438FE7C99675099183BC55E14AE1EDBFD581D9827169566172D5C88BFE201A3CF619D36CC5D38986208B90930D1E123F2B97E32B16F5DDD24A82E0FCE0BCDB4000C2409424AC0536CA6741B30F435EB96E42892A272D7488ED013C7563C9A223C47C592AE03C3347F0C52046058808139E534B3FB08B9C970D105C921F7684C79222FE760E721F005720496DB49692DD003260E18A6CFB0550100C3F6CB040A16DA577CA15BA3F03AFA929D805BB76E2DD8CF4E7704F6131F470A53D557D76BB24E2E0E30FA8BC059643B081B21EF4299A49434596F39500C2535C68B8B8B85CB339E432AB04C665BD36441ACB161B18169A4A8030C9B5184C5E09AEC8DD205423EE11C390A42C79A83F1070008AC974BFB3E7C1FF3F3F3AD4B9365FF3FF205926A267FC5746B8AB148B9A2A37DA594DAA25649C99D44C84D139DBB198D5E3C1AE41217F467FE6C9B6BE5D29C8DFB05676354EDE1C387CBD7E9F388AD6AE88BA876A9555D931C59A37253F563A2950DE3E9D462BF3B6E94AE660562C3F270B876ED5A294561AA85A71C07849E539E0A161D1C006597AC5536426E921A26C08C7C9B3E466F252018364D2F2F756DDAE67B22BF769EA5A71C4081A71C3E0D1C2A4C33D6237A63021125287B0F7938F7F0B5202842B8074F256997D773C67BEB5618500002C45DE939E5070F1E2CE7590F297149001B60E47AF584DC41C86325862C12AD8BF010CF78B7C47A3DA050FD82040660744FB96DBE7DB1553EB2DE13F2406B959404F48CF3E4E1A2F8AC223D08EAF338DD530EF337C0C20AECB2E27D2E234AE709B98BCCA9492FBBC932E49CB9CAAED3AA5F986680A10FB6BEC68105150C402158E469D9EDA8DC9A84DC35418A088E1716160A1660CB113B65FB3CC0D75627204F7696D6A90B0CD33AD0F907158C69B2FD01559390BB265C7A5A730040FFE50C75C023465537B6754E401C2EB847F005D9E3C4E5298FB148E9434F93EDAABA2B030F535A9F8D524E9654C0E017B3940C400187182EE8D038511948D7B641CE865C0DB60A40E10A84CC303A00F3E0DAD42952A54F760A6BC1104DC873B45A9629B2000503E498374E55A04B830E50F004F660074F50EAEBC4A721A3A0EBAA5B3D212F8240617A2FBA0FB9EFF31210B4DB33EC9DBE8F3E2BF0D9C90E90E0BA7AF56A09144894C5C5C549075E92EE5475AB971C4552FB01AF5A150A1859F40D1E72593CDA552FB71F6B07F3346EDCB8514A5A44F3022C000D03157D40D181D113F20C845C9F30571F07BD3E127F896C2B604A82EA41112E89594C9A9E7244F3BAAAAF9BE6B70F596F9090EB962B2E0837BEB4A5F73904F9806152BF2855E004845401582059580C4F56740925E45D08597711721F609C4E409C58B024B18B2C55273C37253FE52A222D2596A9647E6C51B75C9B7456C0C2EAEB000C2C5E6CBF0CD0B04581EE04D42372BB22396272C675C0782507261F1726DC24C6EB6C32FDBD595AC05870E9960FF91D385018DE5177EEF4D7F09D24ED38C89844A64B719304E98AE44889AB5A23396C5E5706B8A59275977545F609A42370D0C242D2AC828E7B0E49958DB548C9212D81BD8A9B5E7924A9794DCCA967FA192640B15E2EEDFAA8CF843F88B572DBB4404C6C623400B802EE9FB92E7A06600E07A08F737425645DD702422B8F3809796AAB65A378D25264B119B861A4686F739A2CAD79B870DFBA03903584A5A7BC0E307CEBD39590F55A1EF2904D1F5B978A1B9DE45DD6CA65A1E4AE37CE940EC04F3EF964E2D7404E39800390846400DAD647FE1EBB13B0DD9C83843CA51F60961C725D65D28B47EB9D64FB615E184A8D8F3FFEB894284895459D5C80067328FB9887F210BF13B03B9C23C490E2951C2E75CAD66B9CBD36483425187CF572FBB17E0004F092C35C0B32CFA2D2478E1C99D4A6AA2298A3497CB7E67F7D26608C14F1498E42078C74F8C5168F8EE52A5D952272000C5047598001CE3F5C50BFD8EFC4E400F411F22EC456D9FA908736D0743A01F1414A03B9F19922DBD7C49D2E5030E8D30060E0D3005040EAF19CBE285F446F972447A8F9D6041CA7E460C01B3DE37A8A6C4A3F881E30E9C0D05F23480018AC0F0B4A83A77081BBDC824027E421447C1DE7B02D044C8E2809A393E914A79F8FC8B360401BD36441AE715B24D53ED533C5014807233BCA9AFAA774AD058124E4314EC00938724D500C6098220B95008F5C589C806A615BE70424B1E63D4B6B9EAF0655537E8EEA139D21E42650D800E325E469936DFF3CDB2A33110A1B0392095619DAF2DBEA0464F5479A6259511E5219F7CC8341778AD66D98E98FCAED3621F70126D8099842BC01026C04862A48CFB8AF12479B074DB190285029197E8E5AB9364F7928307C0EDCAE498ED8782AF9FF64B5CAE5F3A0679CA725BCC0BD67DC3C704020470317E60C4041F61F3DE5ACA36BF294FB5430293964C4333742DB2507C09F252A579FE0D0C425168FC625CBCEC8E2D1B2AF760F0CF78103EB133DE530D14A4F39E7D514D1EB5383CDC4BC75F44EBBFF709F860930C9CD6B080A4EBC6CABAC4B871E146983D2165285D1BC489545A0A2F494DBAC5F36CE4129D2F62531557C348120C9092827991966F20BE8F790EFC5FCE1FD089F1FCC2FB3FFE8290750205558A944A630BBE6991B6635F070AED56A9549F50FF57B789D80E00BF2C4D13DE3BDD3AF7960985EA3DA0AC0484F390C204C6BF63901DBCE3970EBA19DADA29D80388D4C4EC0108B492C60003C2C6C1B9560F60B37050BA680459F43AC8DF494F3F7F99C806DB756F90E679F14714A0E9E4029BF38E4F4637E3A6BE6E2246C63AF3AB6AB06B9A6FAA357350C9DE3905667B46CF9D7A8F53238C8A0144DC843D4A614A4B2000040C18A7E38F598AFDEC634599AB41919803900B9C6FF591E158FB1878BEF357F0B8276273BF9EEDF14A5ECECECE4DBE4B13C8239E3ECEF4147A0F48C77894B30010C05DB70408027805403303C28303F29C08871DE76C35A1577B8276702C6A851940CF8252C1D8305A733CBC761745167AB53B5D95B06D3148BE2123844607D8203F0E4C993931EE5364F79A8BAE53EE4DA5E9A67BCAE8267E865951CB1A7A1F48C73D1A92EE88D339B183680D4018E2F6AD3148F53E7FE7088409AE08284053F01504E9F3E5D7EB72DA7DC050C7FB253FB25B5BCFFD83D15147868FA0C4DBB9010D233CE62C7B6ACC0369B7775BD35159CF4944372A0F882F49443FDE23CDBAC5FA175ABDA6E668F55AB74E9324ADD04B278B42B55B30BA068E2C4D3093D1C7FF094E3300250E829E7FC33A4443FD4BA9C261B4BC8D7F9395C9203AA1216069B5E56B2C023BDE27A88750F8066C182F966FC158C1A70D4C2F205A902DE82F50A8D656BFF5AD5DB8F23D784011CE4130C4B0825833D609E0DD996BAAE14D1A31364A512A85C004BE54CB546E5CACDD3F643C5A6768648115F37D9F2442299CE790AC962CBAC955BD5CB6D9D17102A108C15E409219EF2140720D609128501A1FE42D2DD0D1F89961CE149326152C1B6980C71C0455580E1D8F3F3F3AD7302822B30F18BADCD208971CFD8CC21495F294E419BCEFD4C8A748B73C454F10FF273A4768ED573C6010459C504018DD09DB1416409D1B60E9AB3010676D5C5854E4D5840E90BCA010CD7DA71C37421D929B434AA51AD8A9DD850C90220B0AD32C324B0F8B0E34BD2D85582CD545858A118550BEB139EB3FD34805207045DAF2BA69B7225D7089122A354AEA00F263FB1AD32A4030B0760B165AFC07EACE776B8AE5DBB56CE1FAC4FFBF7EF1F9C3871A29C37B6A636E5CCF81A66F6A65C735472881419A5F61B9780600105763CEDDB2AD753BF607D8284859AC98EB2000A802373CA433847370A2C8C87ABF5CEF058F2D5F1AAD45829B29A725D96121D14B25C289B69D2331ED2A6A01FFE930FEA15A50A24328002A90262CFA80419A2EE3B39D759AB36A1E9A328C6235CEA0E47857E0793E884F2A0990BE5192635CBAB565134EBE5EC59975582A18E5AD60FFF7C61BE11A4C822713011335516433713B74772802B0C14101418860394732C2410349261E51CBE7D6E25E4FA62E01113CFB004E9C8F2B515E801901F18FADC620D285500184812AC17424BB056972E5D0A0B599F79C9319E9B1B8EB7ABBF73B8463A684028EFA3588B279B87DCE704A414714A0E985BA1F39A42CC73F508A49AC624A036D6CAC5A6959C2C1518AECFB04739D6CC552B574F769ADDC91EAB3D3ADE0669B14EC899806078DFA556864891510C99CB911A3BD1E7D402020C500FD83CB2F2C4B7CE0928ABA0E364274F938D326355D13A265E2939666DA2574B788EB72A46B4CDF8C75980B046531CC7AB55A6B9CC52483A0434740482C833CC9DB67E3A02B981DA6881C20530701E709F700032198CF3900B18263579D64DB9F8B386C5CA8E41319E33826060078209282951B9C14EC0BA6A143BA6B22222BDC0C85108552FDAC823688E950EC0C5C5C5529A02244C954D950E363FC72C1B470AA851C50A4EC6A11704268961FACABA51B921E1233112833144ABA6C29589675CCF0AECC7EA900E40FA355027F7F9E79F9F1C2698BB94404482C3E60D9E1570C02CBB2A312A69318E02C1C0F68910B5CA45CE933201F5B8299922CBB23358D8BE7874DCC0DC419AE0C286863F0317AAAF33FE0A40B1CDA74DAAD8548B59581345BAB716C5CAF609201281607A13068710B5CA2A395C12C1655DC2E2C1C2C43AB90404C150D7BAD5F58179A5F5E9A38F3E2A2D5E040A24B35E7DDDD5A3C3E6ECDAE8359900C3BCE58B589498B42F773E4B4DB54A9F44FC12D96B5C8689CCB2E8DEACFC445ABC2859C05360F5C285FC72CC3F7B95EB9CC3D496601624C7B0186F990023421A38B878B18EA68C07CE7C9660426EB26E205C41AFE2CDE2D1BEC69939C97D3FD6CE1B2BAF43AA90A740B230FC1D6B76E5CA95994D932DC33F868A6318F67D88343002C14853C64563841C13CD14D958DE90E22967787BDB0636302BD5A782C276C030FE0A52039E72E689843901C71B018CB9E17065676100864F1AB881C0F7C793F75D7C4B57B34CC4DCE904C409E4ABDD540730F48CB35E6EB56005DF939FB31575D33FAB73A3593835717FDCB032553656B50A794D46EBCE9AE428CDB5C3955D789A220D060E20ACBEB7FA2FC45A65024D12E7880185CFE4C87C0FD6CC65653F9C7AF803A7552BB74E4DA990F2F5F277B00F22EE1D870054203CCAE277B61A5F29AFD95A446C741F72A54AED2A06836180C47082C00804A85083B8A8645FE293B305412E358A55D47182B26019F4653DD3ADCD69B2E40AB800143A48711D3972A43CF1592BD7E6208DED4F3E4B7DC895C4D8814C079F2FCF270D4C403000E5D9B3807BB40168D4048F608A2C13A1B0D8D8107074D1DCDB75528E05C101810BFDFF18557BEAD4A9F2200148109A0EC992E2004CE57D0DF18C2DC362BC6DBDC4F0A84506696002820D28294E4029455C4EC022E484E102304596665E7AC6D956596F9CD98FB583716657AF5E9D54353C7AF468195A42E71FABAF87AA5BFE3EE42B530006F6DBCA4E7D03CBC71069E00382E93B7CF76F92A6F2F351998026095185994FB2D29863606A9CD98FB081B944FC19242D80A27BCA09A490C366E31D7DB44C15B5A4410A988A62D05C6C9509242CAF0309C1FC04593CDAD573A34F844A53BFE0D3C0A1034F39240980824045703986E9C85AB93E6BD5B33EE42B0D0363BC5DDDC19671466960FE1EB36D4BAA55B12D08BC4E404E209F331B50168F36498759D57D37F3E0FC0108902A28C2007020A71C2A1840C3301E127A975A311575AAF4801746108400C104A610DB16DFF74525D7921C2088D20B2EF3C97BA9303D50D80E1F38152955D8FC06204193D30F3FFCD09BDBDFE47A553CA3B08160AD5529441AB881B04EEF4A50AB9C2D08749B382C2698ECD0AADDA980A1FDBFAD69B238D9715B7400867ACA63FD1C8CBFC2BA85C41435D74C68658BFAF62DA5DB2F9B34183881A0BF2D0FF4EC2D084237794AD5751279168F66DD582C2E80D2B6C16A21B870D89074B3C657AC6A15FADA4679C815D728A54613D2C0060453DE0704812B9FC57B68C74C7A8C54D0DF038987EF8339E3B4B8E094A3646AAB13906123B870BF2CA40DBE80477AC9A11ED9A44A8A5FC3C4399A0E5907CF507B746EFD0E36652D0500C1F4277AF0C4EF91F92CBCEF18623ECAD95B432FFC8685A7EF834E2F9CA278EC323F61013C00058B86B0734814F83558641BF3C4A2D2B19E71D7E79A0C595FC5DE7887B418E596064620587F95B905436D429E52801820A0999739E338111137D56705DA4DB500092E8499B35313D264319732D42656CA4F3B2AB7289EEE180CC6C53A93540E69E005C2FAEFB0DDBF4FCD9A3481ADA3EF924C6311D956D9543CBACF190F9F634615C0A70115149627E494033032EAC014586833AC4C8373206EAA0C1159EFC8C8230D7C5A9A094C83C2D98221B8D572A898669D5C5CEC6CCA1A4C6C2D203B41F552227D605E1177059F060E207ACAE100641B033D5536B49074EEB5193279297603474A8340E356A1AB5536AEE19222C1D62A7C09A4041E59944C7AC62591EC7693C666248ACD538E885E183A28B16544EFF4D4AAF1705D11369F3408B5E0FA8D5B56408638015DF3E3E41CD2C781218B47FBB843EF25CF070CD3FFE929079F63A0222EA860581BBC372D536E25350683718434180C0609122352321583EC2D08387138890890904AEA75000089C47A576D1B503F99595967B16CAA2E0E2D58B7A0663199CC5796279FE4404F8CB2D073D1A8344800538A133028649D922207006C9F871E0D40D0E4DB564B168B55C83AB9B1ADDF621C80A620C4A624C7DC70BCA320D72806539006C6EF29CCFF89DFABCE90759B152407B9A34D9FA1226CE90573259E0320A8A0D1B6410720269C8701E2A0301FB2005E8C593DD4F7D1EC61A3A4C65014648BA9843E4804931508EBBFC296EC94A50F791DA9C0F7584D9DFE0F7A82A12B77AD3FA0F494835C634E7058E04020A96676A02D5723265CA7E964A7D5A85B23D12E6243A57CD2C00704E3AF496C4160E41C3972C9793A62B159D60760804E8CC7BA7A779B06A4257AFFE1821401BF833FE3F8F1E3E57B98334855A926C54895A62547E90D1F1BB67403D2C02F98C606DFE278635A10C889678A2C1618179D80381DA95B63B1A79196B95907E60660C085AE4C902888BD3A7DFA7479D030EC46F6290F6D98695323EAAC071ACBACE9B6140684DAD2C00484EA8ED67FA6C91604AEC9978E401955CBF4CD3A6D9575B1975AB76A330F7AC291970170D0530EAEC27464BDF98DAB616676A9612AFE1C449223D42273499E2234A5166742A32D08D65826E656832D2125A4D505177D2039CDBB7547139BC2569FCA54BB2AC7EFA7F549FA34D8A71C818AF81DF494EB85E25C11B975AC55A85AA87E7AEB641F464A83102058A581A7248F7C5F1E0E264FB88F983B9D80ECC0C43603D8FC00814C91B5D5CBED9D7ECD107ACC3F7808C0C0923E000AA40AC3DFD941CA14C29EC3CF5116802E0645AA3458CF1FDCD2200408B6242A5FD2573021D737B64C3C926D95EB00C0F5F9D4A494591F344C34E10084D4469512907A98C841EA01189F1310739DF2F7ACF6EC8347BC989A34908F96CF188B30D8EE3F749F39D52A886BE8B8B1DC2166D2A523106A5B1BF903CB9FE270916A685D60E803DF0FD2CEEC42D7E115D33B5EFBC96DC3A23094F41C4F451AF8D36E65B5C34172546E9413B0AECAC49F6135443A02D9489209505011DA369893817BC66170E8D0A172F2D9F22C265536D67892DB430E8FB8B6390B49842336794325790AAF2957728DDA51B9A1136A5B0CA6C87273D01108F3A40CA16873AD5C5681C405B0D0170407200E09F6FFF3A5CAC69405A50A9C2BB60A7B6950AC6C252052A581014C398A3014838842D2528A50C58C6A41102B15A495064080AD1E9B8024127E0F5919A3CB836D0830275027C115107BF5DC73CF4D72CD592B3746B50ACDE748911C8A6BA0DE6DB991A75DA0CD0704F3FD0DA20A49274B0EDF44CBE2D16C198C0B2648D92BB007C6FAC1FA53B8B0487400BEF0C20BE57CD23928D5AF146F795DC9312CC6DB571BBE4EAD405B10085C7BB65654AE4B8FF5EA9F952390D61156D160C3793D45B60746D88232BE0A9E72A85C700022A404D20573CBF77D3CC4D57E20613D4A956AD05C81B65A40B0CC66BDA8DCD81C0D561381DAC4468D2C1ECD3091AE0514363930AFC8FC8304C69C83A3C06871F2E4C989754AE729214695B5969D00640C9FA954F5A541DCEF0ED5FA52D4AADA7DC8F14146D5424F664D56D95639B669663FE2250AE619F9E450B11056C2F6CB000A0E2D59D822C464B9B212018E4AA5DA78696006820DFC8DF52187DE4B64D146EFAA2692521CAE1F6916422C3A1B65C209C8642AAC19240C5A3267941C6A0B8CB70ED60453AD9318C534A441E4BC35175B85589E8585855264BB2238EB4A0D5AB7DA5A2B17273CE680F1684DE4D0E07BB15EB072418AB892D66225C77058E56D947B75A3A581F31B0A935A95D27E20D80958C7E9671B50D3582B178B49756DBC3A8A36A967507770BF305CC85459A8A639A20F6CC6149B9F23567240A55A57AC6D234160008249CBAB1B95EC941C3E735F0C68F05D0CA3C0A3EC89C7D3949971394ED2265419D3E111320754451910C83900B966213C70059FA73CA56126E7DE1C951A341350A9B6CD8A3408E2FC13DCAFAD931B4BCC939C80A1F9E4AC84814D4FCF38C080B297AE0E509B991B84A89800092E36A0619D5CCE11C34D64C4736AC34C9389F2999FC39FEC84A2308152233F10128AB24B9F61480596E43EE4B15E720C7AC6B1D04C91652DD83E1B70FD60202208340E13E46AC0AF810C40481238061171EB2B9A1722E9744757C8F296C5DA36422D4AAD74385E6FB84889C85D63AD4AADDACD5E1BD0A761EA65961A16B54EE34CD3E74D6A5E534D584CC94B4D0F9A6A71E17733A9090E40FC9F39E5BAFAE5E21C121472C3ACC613F90FAA4AA52AB282603068B4D2A14EC85D60A95D7D44FF0C43449887DCD6E2D121AAA3CE3D720115DFC39092F7DF7FBFB47841A220F60A921907101D802ED5D81DB2EEDBD765C1B62DB58090ABEE6D0A9806E366BAC9EA4E409C34B42E31688EF5964C8EC03E1330EFC0C1C374597ACA719D3A75AA3C900012D97ED9243962394731B410F114929C491A04D4E3998029846FB8D2679D4E40A84A94141804854B3AE4E0307A131CDBF3AE0EE92947FC15CCC350BF2055581B0C12C7BF1E5E13EEB6206930186C4CA5430061BC56C596C9BB21E123AE90766F3950862DB09A4888FA9012C448FE92CB849B838BE4A8E38541E3440E6384E97733FB0F5205D641A85DAE75E2C9E8951C00C78CD4BDF503C174AFE3A83EE4FAFE733A016539FBBA664C1BC166234990FACD6CBA35F1100E26363172994EC05C609503DF4B10FAFA90BB30AE80A148E5783413D260F58975AF994CB12633AE6FE873356AA275B2EBF3322B109B86641EA10FF883DA582B97197ECC97871A84E7F492430DF2499594B2A075929D86526A3455F736411AE81BDDF299625532A6F7212FFBD1B82C1DA13CC2A7DEC89C71F637C76641C09CFC59A6C99A7E77937DB3F5BFB7A9C14699B8777003AA40684083D77148606E7C123BD4CF51A7794D99F5570CF2D4BDD5401002049734D0412094A8B58FEAF7A6F621C7CF4565028682829510714A322B107A31C2AC6354B58D36DFFA3887A9CD58E8C9CCAEB14C5A82F103E65A589F30674C93C5A3ABAA611D23881B1C957F23B3340801824B1A4820C4D4AD4A32E5BA3847A81A45EE8005C6C2329C5A7AC69908D50FBBA916D7D5AB5727AA17240A5265697D0258F440C53A85A46DEF15AB3570E79A9006BA74F64983102058D2760B935A95AD0FB94B8DA2679CC5A32111B888BAEFA34EF1B767E431B53ADFE633F9D29F810B73CB909213274E4C3CE57A5169D3464B55AB262AD50C4883C1C05BF6C75A28CEE6E748921C3E9502EA120B2948CF38EBB4CEA267BC892A832E0B95E9A4AC3330CF88ADC2A173E1C28589A7FCD8B1636B72CA754F79D8FDDBC031DE4A675A0E929C531A4497FD4958FF8913D0F5C3AC40C85EE3508B183B25C130AD76BEFD307BCAE1008454C15AB0FA3AA48BBE0EA169B20087A9D6AE09048603C1290D428090A388F4EADFB592DC82608DE430E9663899481E4DC5A3434D8AFD68460A625DE829BF7CF972295590260BC98222D37E29E2901C0D7103F918220DC2C0648C8C2C64375952812842EEDAC810E5A8DE6DB2C1E7F492332B9069B2AEEF6EC2A4DB342F01B9262FE321934BC53349155900DC6D8D332A72C8B11D8E23B84193D2603D98D601C199352A25879EF854AB0541EC468C699C09DE42EF388B37402550E4733CC89533509397C4720EDBFDE390E1BDE264C7BC324ECDD52833669E53D6C9143E82F8528984C4BAB70D4A83A899F286AC479972730140FF194806A6C932380EBA31360E25539B6BE5120C20CF6C220A2B14CCB5EC8A85C3C1275552CA82DABFCB707029958A9B34441A04589302C0142E0D62F79D8B73F8D4AC6427A00F302CFC86D3128FEC948A8CB7985CE9140936EBE65B1663C38505827F08FC0E2A2CEE9345B6718034050CFBE49585A21B930683868060BA135FF8888FAC3B9D8026F7BD6B211837C50270587C3801E1D88AED49B151E6DBBAA6DC1453ADF49443A280A3C0FA84E7983F9A729B0606967B5820677C50CCAA341844A95AE3E03EE42629125D0E54E70E900A4C91657C1016932A429DC6996DB32E850CB629C08102F50B1C05FD3CE02967FB0248153DDA2087D95C719091FA96618C34981D2018E7BF086D7766FA5C74F511168F8684C017303D9696125B98484AB186CDA42A35A57E21381317EE1F4081EAF5E94F7FBA5C035629D1D5AFD4A1CEBA2D9124792640E0E2548D553CA4F8A1679CC5A3192A22C3449892D9948F63237C27264FF0464A21A85690C8EC530E7F062A52C2BFC1EE585897E4509BC1CA9667647C5301A14821E4BEC427A713102715BDE46CAB6C0A13C9DD226D96D5245771057D2E9A0413D602AA170C1C307AC04B0E6FF9E2E262A9C6BEF5D65B299C634BD11C1036A062E2B81617744A0ED65DA5AA54A75EAE6FB05C661BD527A6ADA63A007DF38D758154A199985987F1E0283DE3C58C00A1C8F115219A519213D047A46B659A5551BD34F5E27755B57213177676410550E01E2189F97F4AE2D4C038D73AA4A6064072CCBE3488323078D52A27E7F06DFA9C45A469D902289804C5EC378003D22335977C5AF5727D6A9569300310273B13C1C01340AE011036004A398C72997395D4981B6896AAD9940671DFDB1821AFBB19D9DF4EB655A6DD3E256C62B3F012D76089545C0CA3C11C01287CCF94AB1103DE34A9B1A678DBA604424E429ED487DCA746D1CC2B536461974794684CC58D8D28C739EDC18C495C981FCC1B424AD0A90952941D78317F3ADFCBEE001CD4E21B3349E01B35E5869C587A8A2C1B3ED2ECE8EB06E5FA6EFDF74CAB4EEE4601948963B042011CE02888BD7AF1C51727738ACB942A5B771E02CB7E6E2A73AE2E395CB154B55A10C8052099A6FF83E56570C2B1AD725B1A67DA74FCDC6124269E225365115202BF060A30D0E701C96252BFD238C73A32BEC9CDB9ABD5207C6D18925B10C8218B47EB6D95DB543C7A56D52FD4F5C285A2D20C290150A08A31860D404906E76A01B762F301616C443ACDB8364084243E399D80940E00053B10B19F04A5436C21B1586B97BB104037EBE592B0A30533D60840C105BEC2D0F71042AF718ED1060321501AAC0781816878394708511FF97C11F812E91597F572735BB772D6CA6DCAF2A4AB522100E5E1D244B430E3AF2055C853D8A033021898F8E19440504B1A9840B0E6A45CDBF3B00809ACB5ED3BA713102790F43BD471FAD9064B64524A6D3669E0AB4082C1242FC6A5D5F194BB2435AB494607229AABEDCFA4349800A170004560254442C8F45949CCBD4EC0D80DE27B8FB67D6C16063232688EF15C6D1B8C9EC5FDE23000B1C6E4D30198EAF3C965CE1DE6E11BF9A54100105C35B4624CB9A682D35932017DA0C0A680B585FE0FDAF661719127A8AB56EE344713D28B460CE664B0F23A8205313F0CFD0F4995CD090C41C6674F1AC8C74168DB8181E8653F4EEA434E2912ED040C911826CF388000BDB84E48F53455A550CEE1FABCEB3E195F8579813A8934597005F4FF83A1830EC050536D4D07E0A831206496066610D8D5CC943EE4FC99A44C40D3CFC81459B60C86DF03767AFA3EFA611E20EB74F0F160817A79F6ECD9722ED95116576C8BE508CE51C48360E027C9855B62C44B03F3E7CC7578E3BA8965E943CE21DB2AB36800EBB84ADF471396ADB6155D90F7CE9C722435B1AA21CA7FBEFCF2CB6B3CE5A6B94D7200AE931C0D4903CD9A94220D9EFD2A7F89D2D8D8AA606B956D8331548445CAB858940EA6C699B3A42AE524BC3EB52AC7C01CC39F810BEA17C83C8214D1A71C1247B65FAEC739C6E126D3294983102058FA785426DC4C2D086CA5DA01029A5AF5E2D10CC5EE55A6E9A95FF4699C3B776ED2A60040814ACB960FB1A6DC4272CF14936943D240DF9786CF14EB7FD7B33F4757AB6289B95372409CCBAA2221C5A353CDC1FD889766B06C5DBC78B16C0A047040AA205D16A4FECD37DF0CFD46D45498F359934C20301DAACD4B83F520B018B7D6996863556BA71310A71400A2178FCEAD32513A5569B25EAFA6ADFDB2D46D63FFB6263909C23AF0F7B04A7D4E4F39BF0BDF4DA9C2E8E8C0EF989B96340894184E6960D6F406264DAF909C2326FA22A80F798A5408B56E8168F2924596D5C24EBD56AE0B4C21BCC3C73970C25335055070D8B04E6E2E4F79FA61351E169140489506EBAD496E6910028455100C2C607AF637A4F4061C35718A9906D4334806A6C96273D0DCCB3E812CB2D046AE409E868967DD6016958E0D16CCE9E7188F57E6F4D602B3220D34E3D63A2098C0B41E58EB9D80A15224CA0918CB23D8DB8E6113345142FCBB723D7CED0742CDB8B368BE959E72A8409823D6C9C5A1C19C7AE6D5A702237C9DC67352954D31994E571A44CD75617202864A9151A8273C4462E00B71F2F3648444A0231027E3B4097A8EDF17E3254FF97D90A06840830BD2155E721C284895C57B983F38FF6C16A8DA2903E3D5A20A29D2603D98063EE39617082920B01BE1327793754DBAE9FFF48CE30484B8C222E2D4434EB4DE38B31F7EF58B9E700C4814589F90268BF965C213E6375F47ADF1DCB4A4C17A4B71162038BF21444A4487ACDB269C3A338B4763E3B38B2C7B056291EBF83E6CDECEAE2537510D85B9567ACAF1283DE52CC59ACA396280B0F1D2201F0FF601288873C86AEAF821D65902286401859400BC14D04C530ACD8AC4939E72486B64FED10188C5959EF2A8FB1B8C8700848500079A4CA72B0DEAAC9FCF1128A5885372C0EC48CF381D81F48CEBAD05BAE4F48B89CC6D62603DD828F3FCF9F3E53A81D03FF7DC73E5010690BCFBEEBBA13733A7AB3BA1D24007D3460341FFDE943EE4F2F3AEC0C302A7101C4A048329673C87589B20B52AE09063E3E650C1726D74485D1E304D8014121CDD64AF5CB932C99D89B3566D2E6910FABDA975AB82FA90833FD47108FA06380B6BE5B25E6EC8A674BD3F8BBC84F91A78C481434FB9AB3077ECA1C3FF331831E6CF2359DECC40B0CD53637DC8534D86AEF7A0A6C1BA0530D00146932F360FAC33B3C2117C5E739B5AA50394258C7818600E709FACE8C2F2461B73CFF090CF1C10327DE7B8D9E63575D528A84A38350108FA3E60698149929E7179C2E6DCD875A4489D49B5A976D2530E732D40028E000B140D1D989B189F505D6FB9941A9B411AC47C874BAD0A89D01DE5AAA02ED51A164F606B345A5250E632B40A624EEE30ABA49E4061031A565E87050A0061AAAC4DAA64AA1956B40108296A955772C498C06C83ED82C91D700202102088CC0ACCA9DE84E605A7002C7701B9D0CD0A7E0790E0C27CC20285D82B7495A57330BF03B0FCC9A20130CC44DF8EBAB59447298D2CF14BE91987DA84C5A4C30A80908D33DBD4F22C8473E4E03D003F3DE528FF09B5148E3F7494C59C0324788FED99EBF51D6FBA24CF46AA6CEB0BF0656941204F4B7E31CBC930010A44128B247D1F75BCB54D718A1009D2449E7BAEC183E7C2850BE51AC001884699AFBCF24A39F76C5340091D175B3575CE314502BF3EC2389BE46025116959E265F28CE726B43E35A7CE86DE28B25E77402AC34B8E604E486DE694A3F8020E2D4A14489708B56A1349837ADF6BDBAB5EC9A1FF20732B7430D8ECF3D3F4926FA4354A57AD7C5623D61CCE7DFFB808064815A85F000B2E78D023AC55451B81E09B3B1F39774A0E4C3C48619D3011DF6719B7850B2A43489A6C2E804C0B58D8B4B8371C303952656D641C8610B65F0E27AD511B70D64150E45CC751E807539D7EA6C14A884C9165F20F24D4DEBD7BA3D264A70D90944D4D07271D8038705854BA6EC1BBFA7E8E71B1098150988877CAAF7191F551DD132CA4EA3A00201D81ECAC0AC924FB049A6AE5E632CBA5980173AA8D7AAA2C2305E02967766068A3CC5CC0D89CD2606C78BB3058A9EA1B58464D94D8C1E7714AC256CF5E81AC34EE4B914D91104D480F5F06A0EBB590EF2650C00D20417178C002253B35D952657301A3288A6223F22CC2BFC30784712058D2B8C8286673B8DE8774406950AA0E900E30312223908EAB26897993EA55D3151CD92D0B5C0107090E15481478CA21515884DB96AB5147A2C5E2697AD260E00182516214B112C3B5DEA33ACD68B090B2AD32421ED856B94E8A6CCAE7430092029E699736C57C31A71C7F2F424AE0007CF5D557CBFF03240091CB0198E9EF9C6169A083C006A67A0019C54EACF48CB38FB64C91D51B6736B1A14C20A85B2822E56742FD3175EE13870D2E78CA31EF70009E3973A6040D8B2F60FE13C978CE1A618124B9AE34880153BDBD37F20511CA3A4BB0B85057C6C2503A40850A6922DF3440E4EF6D3AD929F4FE72AA7A9877E493E382B40647C1F5A94F7DAA54CB0014E9299F1ED10E9106030F104C2A515D30D59B7BA71310CE242C02269BA656BDB540EE1E813EC2A96F3617494FD9A029126823BADD62FEE9D3801487EA054F392A9580FFFDFCE73FDFE4D2201E4CC5206F0CA5537240BF851525963BA436CE646B0346DD865AD26C9B30B56EAEEB6742FE26FDEF81A102AFD76994E99B03AAB6E8E9018348C43DE383C3786910028426A4C17A108C1960B8EE33F590E274023619260210601199260B93654814AF8F6FC45645AC0B749FE4C4DF0150E01E59FE13FFA785AA09E91AA356B1A66CFC061E0490E4FA603201410781EEE4D73FD388E488B584F840C34E500005AD5B6C20097030C851DFE8A17C63DA237463B38F092C4CE06DE06F4C6C625597D04699A96BE380C738EE244F95066E309954221F104C2030B4D669061C7537098B470310B870623262D4D5892846EFB74991263309EB78F0710830049DE553592B972DCF521AD0A4FB39E4460E31994E471AC847E3670C2030159CCB46C87DA75288946169180612D21409DF874FDCA7FA2172E669E4E022A1C6007C8E6DA741AED9A200CD67F01C20C1DC814FB83CE5F5B2020B61CE4D35994E571A045664DF58C9C19F959E71B655861585F9CFD330EBB6613000130709D44E701458A1D05516AA17242E9C838CBFCA1342324894066BC1E49306214008910681E549B3280C5E27A0ADA20880008E80E72C1E8DB8293CAF533C3AC4C2B4598A2ED4F93B317F984F5CF81E486398D63FFBD9CF96C60C808439E5350F89718C5A942A0DD659933CD22004082610E454AD8208B97404B2AD324345F048C2991250A87314FC3A00CFA5AACCEAC697AFF139E6057356B72E1573CADF7BEFBD721D58A504D205EBC0F2A0F1F32437BBDF643A0D69100284103065951CFAC4425D6235752C2E01618B9B4AD9C015695F510B5EE639A9FF174C78D273D86D5C63DA92C4E75791EFA38D1B542398C52155954A54D4CD0A845A85CC3F34CAC441C29C72380061F4804441A18B50EC151304D43399E6920626FE9000A66625071619A080E876B5558E3507339F61F7EEDD4FD5E6414FBAB102C810C090AA5C68D8782838423E5707687ADA251E2BB0979B56F1B23108B79AC7F1BD7BF78AD88AE8A6B9C09A209F9C8D32214970851E54FBE7F72C3F7982FE848FB393E426A4414A7BB4DA92C33499901438D9532A8A98363748BB9246CB0A18734A6F7EAA9E8F209D2040F8333C55F95C3AF4F87FF9B9D80D9E1320BA1AC512F6FA23E6108781E20DE50F28E95B283555DDC24AA1A4C98ABAE672C443615E709031A1CA37DE78E3275FB876ED93634A3D3B77E2C4894BFBF61DBCB47FFFA19B0F1E3EDE72EF1EFEA6652308746B500A494E95064DB4474BB656D52D175AA94D00427982AAC7E1FEFDFB0BA5878F7429C0CD8F475E3A10A454D101628ABB8A89C70A310DBB7E17EE153F4F60E0FFB8081002087D358E1E3D3A843451A77EA1A4C858DD4B294D52D5AE1495B6EAF771EC873FFCE131481D907E25759E2E2E1EFBE0CC9933E717178F02301FEDD9BBFFCED2D283EDEA1AEABC32441A248229BE214E7C02607E536EA8BF43A910CB6A53CCE1945404720B540A2919E426E7EBFAC6C0FFB12026E098FE968D50B1B8E9090C3C12287C1F7F2F0BE011305509D061657D2AAE5EBDBAFCE8D1A39102CDB292DAA350B52B47F543A8CB55C5C53945FACF7CEF7B7F7B067F1F543475983D7AEEB9E7DE5380B978E8D0E10BFBF71FBEB263C7AE8777EE2EEDB87FFFA168B699471AF8C014E67269C0946BD3EB43174401E1895AFC11D4264514473825D5A6D82255226E765EF83F5FD39FF331B4514CE8C91FF2B9D82A28040841CC204A6C3CAAA700886E16C7E72A6932C2BD5EBE7C79A480F2547DCF50A95C4F01141BD76BAA8B1606241B7C2EEADAF6F6DB6FBFF2ED6F7FFB15B6883E78F0E0BD13274EFE12803970E0E0A503070E7F5C14A3A70A30DBC15F56FFB606A44158006F3128A62C396C8BA116FDA95AE0526D5213579C3C7912E6D8910402370C373F2F768892609040DA48AB541D49A37326DE17EE1780A0CA857BC6FFE56BCF3FFF3C2C4F73E00FE7CF9F2F6EDDBA05B56B458164E852BBA661EE663E8F52C776BFF5D65BAFA97B7B0DE12F50C914C0AF9D3A75FADD53A74E5D9E9FDFAFF8CBE16B4F9657E6147FD9F2E8D193228B34F08160ED678AEC922304245564E913B5B823759A3C5580D88AD34F2DDC5097022610E8D2830B4E129BC3C7914B82D4F99D7AD1307678C2FD131C942C0409B32CB1E93EFFF9CFC378016932F7C1071F4CCCE888C192955B36CA0F442300AE4B972E1DFAC94F7E724816C256D2F09202FBB9E3C79F538039705971985BF71F3CDAB6B4747F6EF9C9533308428090B7B6821D1CA17913556F8D27D08BD5623E557AE8E8ECD9B3857ABE95A7A294123A9FE046A1CEAD9B6CE5E7A6DD1C33347030441533493AD36B24EE52D2C8EE56B85892559DC665180980A5549C326FA35A93650592D16086865608FBB91FFCE007CFE11E48F88F1D3B7E5EA9631F28E05CDCB7EFC095DDBBE7EFDDBDB7CA5F60C15B77E687A47C1896AA31B58A8B53399556EEDCB98394E3E2C08103E32F7EF18B05F8040141A940B289934F57A74C6A524C49CD94CD6AF385A466EE2594BE714A119B8F04F3C88BF349950B860E35FF259947B0E21B6FBC01320FB54B4DF9D339B64A9EB5101B80BA0A87997BF7DD775FF89BBFF9EB1798E3A2F6D4432559DE55E0BFA0F6D5E5F9FD87AE6EDDBAE3F15DC55F1E3C78547872331ABBD14211ABB165B11E2875691B265B2DCA8A128D732881CFD34EF6A0B381A0691DDF763AFBBE27E5675C3FE79214A9F7E3030B0183D7B0063FFDE94F911AFB44A95D9022709A8C41A473671E363D109101C02890DC3E79F2D47BCF3F7FFAE2FEFD25E1FF64653C2CEEDD5BDA261D964E403EBEF5EA9FFDD97FFD1775D4AABFB79C8EFBD5C4437D7A000FF6C58B170B842C0CD667AE4C1ED5E777ABCF1E54A27E3BAD3072D12BEBCD5DB560D7575F2A0EAAE7BB7520A9DFB9AC5E43E8E98AE7942842DEABBEBFF09C36EB7E5EFBBB0ADF89A595D69CE367B4DC92B1E1BE062623A4FAFC1CBFD3023648F327FC990A4C786DEB461B305207FB277EF8E187FB7EF6B39FFDAABA875F45621800A338EDC7AB84FFE487F3F3072FED9B3F78F3F1E3E5D1D2D2832D8F1FE72F2A315262EE8B39BEE82B5FF9CACB3FFAD18FFE8F129965D420E27C40CA38A07322584E81E32FBFFEF5AFFF47804FDDF8AFA913E24F9796965E5327DE1EF51978CFDF56E4EEAF579E9964504BFFC6265B631C1487D5FDFF73755F2F28D5748752831EAB7BFB85D2C3FFBADACC2017D7B01F0460F0DA13350F8F1511FF0FAFBFFEFA2BF832183AD0E1490EA5AF63F35F5404F88CA6854F9E2B55063FFF79717D4E5DFB36D344CAF244EA703EA2F6D81148CC8AF08F1717172F3CFFFC99F78F1F3F7E49F1978FF6EE5B7558DE5F7A3857172EB5891C8EFF2F7FF9CBFF5EF192FFA4FEE8C32813837D2DD35DB59B3DA51E4E021CEAF9E8934F3EF98EFAB93776EDDA754A499C1BB76FDFBE5F2D2E360B3A6ADE1B6CC2A1E6E08902C2779404FDBEBAB705756F9FA8FF3FD024C48AD8D0903443357FAF2A55F78FD47C2E602E3D5C679F3A615728420CEFBF515D93B5520FA7D5F59A069A139B696EA14622964C5DC5F9F3E74FFDDDDFFDDD291CBE555CD9B2E22FE7CE9E3DF381FADCA15A7BBB0E37F8933FF99323EA8FFBAA2285BF09479514F9901C38F1989843C9A14ED2EBDFFCE637FF54BDB45B5D90325BB831D4B5B5DA34CB03B37B67B38D617500F1FE786F4FAB6BCDBD7DE10B5FF8E30F3EF8E03575606C97AF631E5F7AE9A532D64D4A0E05C06535D7AF7EE31BDF3857016D3C4EA9245D140734B0E07A39C7E1B9910307B4DEB1786A92E3F2E5CBFFEDFBDFFFFE3F363906DF79E79D521482C4CBCAE1F7EEDDDBA744E18B1F7DF4D1DD6AD34C0E5B753D9C8615629A875C75798752A37EE717BFF8C56FC0D1A7BF072F35FC1A0A3C6B00A2D426581BFF9D7AFA9FABB903589EC682447D146AEB77AA8B8081E87FB5020A25CD67D5B577B34C7E1D60D402C7BF5643498C3F70AD01720A70EA21E48003D694858585CF2870FCD0B766D334DBE5508F6B9C7088A7FA2D13302451FD877FF88752826887CD2B955A74BB52410192C72920D100839DF593EA926AD9198394796ED0C2910C0EB590FF58E97CDB7D9F7BEBADB7065FFAD29726DE5CE88B8A9C1E9AF6069CE5A1C8F67357AF5E3DE8FB1CFC04BA575C1D360BEAE9F3EABAA3AE5B154820951F0890AC8C337853ABEF78AFBABE264073D000989736BB5A96F4C7E304F9E217BF1844E2586C1AA6DD73E7CEC144070BC3FB837E3C63D5FBF6BDA8E66618F2592436411A032890248ADB415A1CA9D49DFD0690C0C0F1482DD9320D00E3CC6107EAEB609AFF7675718FE0E0FC150D3050CBF6B4121C9558C52222123D388D0D5548000C00452DE6ED8B172F9EEB21B1E600B98BC3434A05DB80571CDE66848F287515FBFCC3CAB00163C68E6AF3CD57C02048EE1024A02A6A1993C97B0460B03F7E545D72FF9C354899E39B161C12145091D5B553A946B743E391641F73754ABEF1CB5FFEF2610F893584FB97870E1D7AACA4EAD610494CE7EACB2FBFFCEE4F7FFAD3BFAFD686E6E02D15586C2059AA54AEE5BABC24512D7BB7BABE2AF6D76103603EAD196C660B1C2650507CAB93EB674A57BE73E1C205AFF5A2EA18BBA216F3ED37DF7CF31B831CCD135A342E5FBE7CE3739FFBDC470A1CA77C9F45C7272425BDF2CA2B1FA9F13F45F87A21D69420C19AC164BEAF22EBB7055008922795CA3535901840F3897AF8667549B5EC3306B56CF786824380625489EB5D1528E62BBD76AF3AFD9F7CE10B5FF87F6A617FD35592A72AEB737F6161E1F51FFFF8C7AF57DF71AF12F12B3D3456F7C7A3478FBE333F3FFF6F6EDDBAB5D5038E27EA736F2935F59B8A8CDFAFA4C4F260AD6F68E254AC4022D7F08006927B95CAF544F29226B849825AF67A75C97DF9C260AD7919D762137F436148332D2A506C3381A2426EA9DFAA4DFFBC921E7FAC16EAA82D0147BD7F43E9C95F57FAF4236171C2F38F2B91DF0364756C51D2E0DF9E3F7FFE330F1E3C185A80F1487193EF2A527E510061B9DAE0084579EC90C80C594154C5C34A7298C8FBE36A4D5606CF82C5C706F5686686DAB2470C6AD9A7EAAA658516D6CD13C7058A9150B39E53C47CDFE9D3A77FFFDAB56BA714F19EFC31F0881F3B76ECE37BF7EEFD40A9011F89095EA91600E0B859FD3FB7FFA2D864DF5554737EFCE4C993BFA9C0F12B6ACE76C8FC96A3478FDE558F6F29D5EB2DC3CF63B35FAD36FB8AE3F7160224CBD521755FE3254BD5FA3C193CF3E64BB06C0AD0A8B9DA6151CB76D501C7D64A479D378082C48F6AD78EEA737B8E1C39727AEFDEBD5F502AD65EF53558AC5B1F7CF0C1F79FAEEA5C63018A87D522DEA9263F6553163536E1ACFE2EA83FF017ECDFB56BD701359F9F536B73445D2852F14849DFBF5F5A5ABA3F581B5633AEE6149BFA7AB5A16DF97173DAFAE9D2E47E058C89235103C9B2F67CD38146ED4BDCFF8B06297334141C5B2A74EDB280C234E9739AB5843FF7544CEA5331814FB513AE08DC44A9AFCDEA77E9A7BA9CBFADD57312EB39B191E5F5586C581B18C91F659CD79C061879802D8BB593C0786CF8FDCBDAF5D4A096ADCC3868164C6A998973CC89891C462CF240932A8576928C339FDCA9277A6EC9D2C4EFD20FA3A1813FC88DE7039F3CC446964B1E7285B6F6FA265F3100F5B141B2E8C0196F1649A370B0D346C88B0CFAF6ACEAFD9B9597D4FD3E6E782935E6340932670091E933430B4857344EB36C90324FC5FB4F358D62C570A06E18688A8D0069B11953D436FFD093A15C970D30C380D7879A84D3A58D0E8E650358F87C6C915C53014AD196C62FFDC87238C500686801CC50A864A6D7C606F5704503C7534D0D5B11AFAD0855722C84CAB807473F361A4436000D2C00B281467E66A06D761D384FB5CB64255BC90D901E1CFDD8082934308048074D61E11E529AE857560932EA97B71F758663338E1300A43FD73F2BDFD32547CF39FAD13909347080664D9D815EADEA470FA2C174AC55FF1F431B0AD706D1DE680000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (90,1,'Rack_42_with_door_(64)',decode('89504E470D0A1A0A0000000D4948445200000064000000DD08060000004D27D7E90000000473424954080808087C0864880000000970485973000006A1000006A101E86410CF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00002B214944415478DAED5D4B8C1CD775ADEAEEE99921871CFE873343529225599265C0326C69E3184680AC027813208897CE226B239B6C0204F03E8037F92CB2C9228091459C209B6CA2040A9008700404909C388A4491123FE677381F0EC9F97457EEA979A779FBF67BAFAA7B7AAACA890B28F477A6DF7BF7DD7BEEFFA5599625D3B852B9F4CB64BAD7D020B3690DBA81577A98B9ADAEAE1EEBF7FBBF25F7EFCACBAF0A4DF60A883678E4AD5FC79EB75AADFCB9FCD6BC3C5E9D9999F9B34EA7F3E38F3EFA68E7FF2D412E5FBE7C6E6F6FEFF7E46F7EBBD7EB5DDEDFDF3FF9E4C993AEBC578683F29B0B6B1FEDF3D07771B7DBED6476763611A2ECC9F3C7F2DE1DF989BF1662FDF9871F7E78EFFF2C412E5DBAF49A2CFCEFCBD3DF90C7734280E33B3B3B1D99B87741430B197B9F8BAC5F6B8EF01103AFF9A8BF2373E9C9FD44EE8732C677E5F147EFBFFFFE7FFE5211E4CA952B2F522CC84E7F5576DD0F6432EFC8CB13F2D83D589BE145D28BE01333F6BB31C2952528BF2B622A27065F87380E1BEDD9B367FDDDDDDD3D99C7963C7EF0F8F1E31FDDBB77EF5FAE5DBBF6ACB10479E9A597322EA288819B6FBCF1C625210A88930847243291FC1137DEB3373F9785802C9FF5719CC67B4B384D4C2BDEF85C6F08E1D467B2C073DD6E17222BC12388A49FF333BE8F5BFE2EB97EFDFADD1B376E5C90BFBF25E3BCEABB6FDDBAF5A84E827430685EF3F3F38FDF7EFB6DECACE4E9D3A7F9A3BEF57BDBDBDB393120BE3059994C1F0B86D776F10FA338E8BFC5FFC78E97DF9BC3B88123737373C9B163C7F2EF9183F0BBFA733CE21662ACCB674BF2BD4BF27DDCDFC1DFE1E6B845517914221608F9F0E1C323D5F03A5AF47027DA05E480410861FB015760D220065E83209A184771B9C5CBF09BD8F54AD40E7005DCA1E7A0E742A269026862BBFF7F5AEE6FE2F67CE7D9B973E7AE1922F1F9F5ADADAD9DA97108C5849E800078F2E8D1A39C339C58CA77230115EF617138D998689A94007A4C6EC152BDD0E40610C27150FE19C6456D4CCF496F3E7287E5120F9178CFC977DE908FDEF07CA77FF2E4C99B1E42E5B7ACE546298260D0BCE4796B6D6D2D114AE7C4C0E04F9C3891B33DC5150980C1EB85F211E308B9643006FD1E160784C178F188B1622E1C378C57BDC8250830CE77205EAEB8FBD7EDF7644CD0FCAECA6723C492F77E4163774010B7D3DA988C60C9107660D7F1D28430A2A16577AE0FB027E50E8DF91AAB0263C9FF96C4019738D1DCD6E3C1E7BFF6EDEFFCCDE6E656FAF4C9F6F2D6D6E6CAFAFAA315C1C719CC9BEAFD2444F27CFFAC7CEFACBC7EC7F3FDA732AECF40AC0EC58F5BEC3D12C307AA7C0E990D0E22A8BBDD9959D170184EB1C4D0CF212A8121788F62D362867DC4F765ACFB7A31F07C75F54BEF2D9C68DFC677E6E6BAC9C993C7D2DD9DCDC5EDED47E71E3D7A78616B737D497073697B7B0BC45A158E5B146338FF5DBBE8CE9330329712449D97FB4D79FFCD218210D4AD68C084A15569CD8A22410F4C7385E69471C4584C23D3FF8313E264310E8A592C7E08D8AD684D95DBEDD9B35DDCF8F27A922CAE2F9C58FC74E104C1B69D2C9E3C2EECB937BFFD78EDCCA347F72F6CAC3F3ABFB9B571F1C9F6E365C1DA958D8DF56559A316C631A9E81B12595ACB0297004F08E89824F004BB4363896F0135A6587C9944DDB50B693FA3058F4D82477030360F151102BBD6B2F8BCAC1B747FBF973C5CDBC4D3A7B2A16FCDCD5FC19D2C2D1F8C6D61613E59383EDBDADA7A707A63FDFEB9B53521D88670D7F6D6F2C6FABA106CED9270DA31AC1FA58A8F481DED8290E7DDDBB76F0FD4C853A74E0DE189F5599985498B76F524A22A4428A3790DA9B516D83737376928CE70AE1431D35234B6B69EE096156E3F6CCF5C7C787EE9E2C7E7970E3E87283CB5B890ECED3F3EFEF77FF7577FF8B39F7DF4E510970C19868087E5E5E52123D04E3AA4E9C45CEE93102522BE528C9993B122CC02BB360E85387BFC3BED7639EA0BA2F0CEB33588BDED76BBB31BD3F4860C43A272084CF11C5C42CD0B22417DA71FF2F04E0BD839468C81A21613D2201F03762BB2AA2046D19A582E1912590468CD050474C83E1A5DD87124CEB85C115B84B22E163D015AE81C0FE712B2D8ED62544D94562B1D2182E6920E7D3F9AED21AE60A113376805538C69C21501F03862CB27AA42E2CBE712A1C50E02693F1B81DDEE48AD55D6C521764C435A964C60F6CE9D3BF9841617177340D74428D8C553C590D0EF84EC9318B083301B1B1B98D78CCFB36C22C4474C9096974338AF2182C8A2EF2C2D2D0D403D04E47C4DD5D7EDB44A781FBE2C726C19CCD016BB067512EEC00EC92A15595AD3D31C32709D58E3CD271E34A09363C8F2CE91D72FC31D216EF189BD0097643400F5783106EB5F0BD92C5C88FCEF2BC7F5E718E2557B7D86212F4C12EE76DC2006FE00BB4D13689AB2B50CA85B6B9D7FC3C96960A7C56E415D2F489AD40BEA236AAF759D40A3A2CB1D040118E23B78CDF7ACF8AAFAB2C66008D869B113D835E1068661C51C525AED751FCE4214C14247DCC367A147B49DD638BB7B522E018650332CB237B4B7D7D92E339AA30E38A46A82B48AD55EB5203BF057852C744D04ED65750BDDAF8A41B4FFAA08D855781A63DE1BF565552FB2A26AAF2F05C73721EC30AAC078AE5D0F0CA95675D152A7856E81DD06AEF47C4640BD063B24E68EF78670F905C85F003AB41ABCD65E538FB737AD1A4742C04E57BCF6F4FA16A40E4B9D222BE48E1FD2B2E49EB97FFF7E3E19EEFA93274F0EEC12DC93B83A8E9A283160E766726A7ABB7E0E8973C91041604B9C3D7B36773BD8187A48CB716C3608E156312715922D340A9902E4D4F5AC291CE28B32E6300082301B503EEC053CAC43BA3F93E8282EF05CFEAE3250C746E182FB70CFE75A71F3EADB6CC9AA2F6DA9DB34D9A100951B741AB2D08127607F02AAFE3BBD23AB9A243897377F5FBBE24304D236573D1C5200EA7A6129BE983EC3A4387C196A23BF67C598CFEDE1CB3A394C064A11B02BB19BBF8FCDC3F7E85DB02A663D185202D495B36BF6EEDDBBF982631230107DD1C39A813D2D7228D22864AEAFF2BD75EB8E876871E505756D180AABEF5CB870612897D717BBD62282A05EC6529F26A8338C5B063B540877B709F1101F877083049D8BBEC911D071BB4CC001C6C802550AEACC6A676982DE3431ABDD26393489437C76C8C88480210474BADCB13B19B0AAD3FE60998475A158B0B796BA4E72A843CB0A257C7BBDBD0474DCD8F9F823381A75EC23E496A893385624E0620E808EB15B50AF8B437C9EDE110E91C59E45A893325A6349681194B652D5CCD21076E84DC278880E1F20EFCC827A5D5A56A978880C7EE7F4E9D3030BBD281F4BBB2AAA640A5D31E58B72FAC4940BE1EEFA43B8D5BB4E4AC54362E99A34BA743E16DFC77BB24095C92D5AEA980CEC23A3BA47DDF12376515A2F875817CA90DA6B4501011DEC4E0B9DE999D328573B2C7610C059CD45F1C9F77CF9C7231C52793CA43502EA5AD1E818BF4E0B18A2B3DCB103F11DEC4A24CB85EC92BABDBC7A4C0C5E715329304D9BE2ED0D82BA8E87C840DBCC65D2059E2119CDCB4DBE52C3B00C7610D8E98A67C14E53BCBD4150E72513DDC3E06DC14E282D88BE23B70BFBBED619D3F065190F749EDB0B55DC75732874C37337EA821D5647D561A947413D14C2B593624DBA2D6FD3B2FAA827A23DBD180709418BDD160B856224DA8FD5E8DC5E2D066099C3DBCB183A8D2B02668D0EC6D42EB406764E8E79BD56EBAA9F435AE5737B65E1BBEBEBEB83A4B8E3C78FE73B4F177FC6D24BEB02F6102770A25450746E6F5D1C829F2B8C8728AFE81E403D64A1FB164465965706EAD82876216376072D765FD167D3E2218310AE0BE3663120D7A240972D3B25A0326F2FEB0719F3A0C7B744F27536D2EC26A9CFDB6B6F579ADE0969330302004FB0E8AC2E55CDC492A36EA711BAD8EA83E3A6CFAA0CC790787558EAD6DB6B931C3AB6CD128D29787B5981AB5B54C4AA6FEBF2F2FA2C7682BD06760BEA7570087680350C47409D6C243B6E1689D6B8A0E7D3E3ABB12426CE9A66B55314909B7CA05E3D87B4CA652EE25A5858D871842965A1D34A87225035A8EBEE72658C425B853B106149FDB9BD9A5B46228631B1404A6A790C3101E2C9842B05756C241006A0CEF84D8C38D630ACCBDBAB0B76BC1C125B7C1A881059D4E5F577EA02745EDC0C3AD34487137CDC3D12314C92CA39249A0664070D02B0A5118840402748DA98892F09AD8C2FEBB0B8138AD7508DB7EF33796EA49343D3D280F4C49E3C79320B224014600265F3B19C81D51A7760937C172E748707C131F9EAD85D1DE48CF5F4D69DDB6BB9648820F3F3F33BF892CDC78A797AD9E6AF2AC3303BB8062D33CA62871BE708A8372E1E5254FAAC599F59283A5AC73CAD2A2F869119408B59EC4521DCEA2DF582784868A7D042674B0D17EF1D787E8BD4E1AAEC0F6E149D6765FAB70443B88D2CFAD43B085DAB11C2D531742659332662775D938C42FAD974CD3A77A1235ABB6E0E09C54306490EC6659D89713814C20D55E06A351244ABD0306C41E9D0A9AC45BE2B762E950967F573483CC9A1A58D3DE1889EED4315C2169D48E05C2B951A8620081B7686C2B81ECDAB6F55F2BABCBD218F6FC7804AEA2306C15B3BEAAA0CDFFA2E8C07F886DF677C9DE50756936A12861476720865B963D7EB1E59D885AE74AD11DE5E3D061D63A7780AF9B96C1A500D8940E540DD899E598470E9C6669235413E24BE9AE6EDB5F17465C57747E3210D4B72D08B293279077DB274C79FA2B6ADD4FFABF6F66A795CD4185359EBBB4D4B03B25CD289D5EF855C13BA82944D95055CFB232AA5A79FFCB440DD850B06D55110A9562169621A902FB777C8DB1BEBECA9E5B3B6D2ADBE5FD6173569FFDED0DFD1CF8671806B5893EE6BCB6433519E7B7B1B160FF135BDB4E783F0409482BEBDB56208DB69F06210CB8AB4BA1B98C5CAD97231AADF400897C11F003A9D77A17889E180CAA646FB27E650A44A4E2BD8797BBB56FFAFCB9735620FB97175F4E2A260071F68AD2A66A1BB06F79583237E577B7A63C62045B12BD7DBADBF8159522E1E1273B77352DAD4A7D795EE1511119516EC9053D0DF0BD6BAE6E62257CA10A827F583FA501A50C8A2650F1326586B70D555AE756209239C1449C00DC6D943DC33120FA9C1522F547B1517B4609D0347A855B19E2F948FD524A31063D41D4BD94E56856CD3516F6F33407DC025DA4D2D1CD10601A0DF6BA75D915DE24A8E2B330C219E7CC06E9F5B6047C18E75E6256933407DE05CD48B8CA34CA9FA16D5A1B3DE109F81AB2AF4F6E62294A93FE48222EC70BB70FF288EAB98C4522F95E4107241F8F2B16830EA36E4555D747E3A774FDEF58E89193160B7B187BA1A07944E72D05CC19CA7503E56933A3950EBE2219314B7BEE4EBFA931CD2F2490E02885D76B166136582652C1FAB09963A9FD3D3C009EB3EF1B6197F134ADAA2F1106008D89FE15BDB90DF2E003519DD9EC967815A9FD6B83BCAFC76EEED65655491B8A58AEED280F69BC021DA7D134D72489E1FB2533A1F8B9929B24895867019CB6719774960CFCA1E0E70945AD658967AC840B47E2256E5D615C2655F618C018481C50EFC20C7C632E1EBE490587B26AFA54E02B0628A3DB2EC293C4DC211E6906960F7695D3E8EA85EF52D00754D2599D42CDB67D0C660F8B3295A151731666FF82C76673B75EBAF0F698D05EA3BB0D26D03E59038A325EF0242AD8A88913279CF779099EF511D35BE3B520A5093B7D7E7C78A8670436209804EDF163B60BB8CF9CA92AD9D67205F649E661D3A952DD471AE3E2DAB357E1A9075D8E9D47F12A24E40D7CA054EF18478025190A0416FAF350A43A05E678BBF521CC25DCF2ED63A89D91EDDDD043CD19CC06A2A023B3947473DEBF05FC50CC3681A901063565BE804F42271E6269C56B4C3F253DA8A8C420DEC6C432877B77E0E69954B0372452D3BEC6D52C4099820DBEBE9E482AAD81EA289CD6662A7B369DF9B6CAEDD5013E32A41BD741A5008C8F56EA295AE8FB4001789FCCEAA1251D800DC04E066B4448778E279B8459DAE35A8D779A08BEF2CC34E9185AED54A8A301E5751D484BFAC2FEB303804C2A0A6051B031C4B57BC06769FFBBD2E2EB1F190A82F4B16B9C3DD070ED0250747593115DBA56576B0DE301AD8411802BB5B84B6B692F3BF4D1A98DBABDBE761021CB4C592905D52717BA67CA1E94B8B013B9334D8901F6F8FCAEFEAED90D2490EF2412F166BD080CE46943CDA5B2CFCCA64007E13BF0FA390D9253E60F780FB48FE71D66FD8812E361A685367745219D547DDAE892D9BAABE34B0C3E640476E5B265D74C07D6EE8560C25637572485C0515D9DD1E4BC1FCDEBA5B6AD80B63A2C54E60A72BDE62A05D8CBABCBDA5921C60185283D2C752B0FAB6483D6E82C5AE1B9B31798EF17599CF4CDDBEAC52F110EDEDD515B8457609CBA6F9FFAAB2D4B1FB99F9A245A62F474B03BB3E7AB5AEEED6632539D8C4691F2154D3CB415F78FC5D55A0AEBDBD18071C8A2CD6B1BEB6A253DA7E29BDBD1AEC09E86CD9644459E55E3B8E059C8A380E8803EE0915ECF87665E38EABF0B13B2BA67C859356BD6C0A8E60BC4C6122B0B30F8A05F6A18AAE34AB9543A2490E32995997BF3452066D09E069CF5469C18E2FA2695DF11AD89DB7778687DD5364A549BF6282149CD266DCE83B3C1EA88CB7979A58D500C9821DFC3E413BD60148F9DFF66C87D2BACA1182A7B459C330A6DE3213903609411D3F2056731672321E46E7D786AA76E9F03310E6CC9933037F55D1093BBEA39CEA1259DE53DACAC4D4ED91A6755AE8767C54D1E94AD1AE789F481BCDEC6F552EB2C6517B53EAF674AFD34AD780DE2483502F3844172C763C32C64EADCBB5DA484709D2E0DC5E79DEA158A2FF2A968FA5CF2C4F2A0CE162B1A90586D474720FDB01BA32E9F6A8486BD7E23A29547BDD64F7B093745F133F950F8EA1A336E6DCE055450C3316ECD02004471761870BB6EDB373691DC71DF938249AE4100277DD1797B609009D1EDFAA27C6821D2A14104BC00E860442C4E1DF0EBD57831D52BAD7893D3852C77B993FAB8F3D6A4A270716A9826B61B1C315CFFE59455A56AB5D3541C29EDEDC1B62B2DABBD4D9F9C7FCB2059FA601BB326EF3183BBBCDD115AF0DC3A134A056568BC82A95E4206FEE7157E97CAC1017114BAACECB0240F384D1D0A9D0DC481AD801209620ED4EF51C523AC9814D8A439CA0BDBD743FF0686F111595813A7E93AE7FE6F46A4767E8114D30EBAE8F8C757218807A11B0D330C4E4C1396CFFA74F70ABFAC24E873391E383CD41577CAC5C81BE2C2D92EB709D44413DD4FFD697C1D1C4102EC6474F2F44282D767D8C8526E4D026AC1C0AC7487290E7B3FAF8873286A1F539F94E4838AC2FCBFE8E6F67DBF08105763C17CEEE96698A5015A8FBB8C41A863BD855F644049F58C3A260B2551D70AF9D8CBA6047372E280276E1A05D4D903A44D6589D1C4240AEA9A80F95E73923785D15A843CB620817B8A6D3468BAAA9AC73312748521FA88FD5C9C17A7A0196CC16F4B521AFE3C2E2C29948E2C00D0F600FB9E22D86D4C92165BDBDDEE69604745DFCD934C310E3D5C0AE2D76BAE2EDAEF415205569A9EBC09EB71C419ECFEA2C45EDFB89893337E1AA0CC37C91EDB9BC563C698B9D0D6A649CDDA67288B72BA95C3B4C8E2BAA13E1CE53DD4A2BAB0FC14D7708413B06EC0CAC3501D47DF190110E298A9F73F0B48AF11CB21B22A28EBE53DAC1894D01BB83B5843E608F827A4D22CB775445D030B4C8CF0C147082AE9A6A028E604C3C9D14EA30801DE2899BC7E284AD28AE7A0EBE86CE436AAF4972E8E80ED61C34CF996A625B0DAB754115670857C7D8B100A22EB7EB4E72E8F5FA03F78DCF8562ED90CC773063AC7A8A077265D505A7736FAF4DFF0959EC3A2B9ECE45BD53B38ADD40DA2DE53B17D76A59BD9891481948973B08C1F64C3A0DE8A8B91EDE5EFC360B769892144BBA76319DBE5E8C5C1254AE9EF786704CBBA946D4DE98B797321917015DE747F9FC57BE26FCD33A10C6023B0C4296695B7C6B9261284C9AF872E1BC5D49F56E1AC83477541E63D85AC59C866FCA0778F675D1C2617C0F1F3E1CD4CE9F3D7B360776A8E6D65AAF9F20FDA131D82C7CCB21B3BA9092806E93AC9B7C619C1AD8759C04C702D64F90519115C3905D1A7B65321AF15DFA8DAA0675BA747417099F1242B10A6E91CDB5AFE756C726A39655962041C3506B55B44D00E6F4BC560DEAF416C05F45DC60F3B5D07C7C2D6E939A45D6D867E1B24119DF8738D03959213CA8C2C0E25959E4001087C01E4A7ED021DC03E254619DE7BFDF3AD0B27BC184EF60C10E6FDA24C0117B5058D3F0049BE3FEFDFB3961E0E702B0D3A5124AB63EAAE24F6AB069DAEFC0B443BF99248FA58318FD5473A93EA473A43E041BCDBA162C9E84DC2B49759516A92DD8F169894CBA661D22888346D1474D1021C24C2BCD661DB0BA37E97BCD528A2CAB5D9101EC71153BD6520F8571B1F330D93AB84517ECF094B858C10EC59A106877842053320D65F55B692B9B4F5357DF402587DB348B6B592450279441E2C312864AA1EFC330049EF033D1FB2B3F6107170B7698246ED35C2DA18E22402544E8B4D2FE7C5E419A0D5169E8792EB47A1380BA7E4F3597C989400BDDD7E4AC8ECB02FBF9F3E7730C0965F1B3290265F661E7D06A65DD34E9CF0D163FF592C3BDC8861AAE9521483A744EAC2ACE8F1D14D6346067FA8F0676CC4BD4E2D4D6181E661EE00C59A1797B288C915249AA5004228B25113EDBCEE6F6767407EB50C594CD93AAB2608762CA16ECD8F16960A72B5E446D7B5AA09EE69D9EFAC7B494D267BE6523C4C906BE2CEDE064A9E000438CE36D2FE42DB5163A2D7A952D9F153919C7B159B45FCB26DCD9821D2DB662215CF9BBFD29112415621C873A9B79E413173F1D08AA6C90B816AA24885AEA3E2E60CE2C280A8B18A74AEBB285AAAD5D5BB003ECC0D8741F789FE7611A0469B57AC7B01476E187173FF512A7B42F2BD44A83F217BB9209D6EC6FD2848B053BFAC0E20B172E0C4AEE6CF2831E772EF2C62488D8197362E3CD8416DECF19CF0557292D4BC53D66D81F8B7DD55902DDB486FC3160BF77EFDEA09932546210C925FA7546ED9031D5DB567F3E0B2CBC5DFC5143242DE7CB52BB6770024DCC42F7A50355E8ED4D7C053B3E8722331B893907F53A938BACDCD6702B3CBAF01EFD2AFFD27096BDB5858A3A396421201F0450448C319B9C3EAE2A0B7670F90A7688292160771B2E9B9420C21D33B8C30BEF5EFB517EF03D2A4256BBF206A8EC2ED7DE5EAA68580C6404EA1876130A769861C2E4B910B04F4A9056DA3B16DAF5BE851FF99C24CBFA23D93B855A16F386E82905CBD3E56ECF16690AB04334E1C6A60161CE9D3B3702EC93124438A30B1D27B4EB038687CF524CB5C3B6902032C02EA9E73B38B2A9F9589638105D16D8F128739AD1BBB30C410E7AB50B770CEBB64193BC0856B4615848109C40134AE31F1D689AE83369ABB4D419C2A5C15716D8E5BB7B5A76E7F3CC8A2CF2FE6CCE1D49C1E28788A3F9281D33621802F24134CB9D68038D4567A1D8F64C471D0FA1CDC18394596E40B11A0376BD18244E9C3BFAC78B76FDD0276908CF93219754690CF1352A63EC81804E03B12EA9A43DB7180F1D85D82C702812D87DDE5E4D90A2640E6087AC643BE0521F5AFC02170A034C23998B239BDE07EAEA009441C51493AC6316FA347D5991E3EDD2903B05C4614D08819D95B8AC631F21489245AD72ADD4A6058E432E7CC06A77866118D48712E51C0B7739392658FB76912FBFB74AC33054B01303762440C8DFCC308E337C02B66FE81962B0B345BBDEE3480CBB50D2B43C86F0041A9F6168451A2809D9CDD8B66B1E5099FAC5821D2A1410A1369BD2023B6C1680BA5E8CE729A7A92FF0349BA4599AAA604768F1CBBB50C6F465C5388100CAB269787B192EADB360478F8BC0EE0BE38E1BC295BD3C5F2082D2B8EFEA80CB86790B7940BDF20419895EA96329B00B219F89273AE5B4CE0BBB1C9B83D807B70E5CF1D0BC34B08F03EAB08BD396007A1E7C2AE5384C3D3A472074900543B8F90633270574B8EBD8298ED63901BDC98621C607E2804B98D70BE2C0E705623D78F0A05D8E203DC71D5E5DB7F4E2279EB87A2C0DC8A76565F6A88A1090F3627E6FD586A13D61C78733D8440476E721CECA1044F0637E78E10B17BF78EE8EBD44CB4AA36940A64EBD67ED112BD218A1D32E708830A401F964F638B193A20C185E109FD804104F2CD8016887D24729DAE4F3BEDE643E8E3F485CC866A6B1F8563FCEC6759D84342C4C9A2D2C08E8F4B45605EA765CFA841D8C0B76075DF11059A156E436C1C0637BCC4EBCF005FE2D2DB2C6CA7EC785C1AA62C9210B3D7490A4AEB998A40623A45C143935C1A528D8E1B8E14C84DDC1A69DBAB999ED5061FF6F2B4DBA5E62147975878D9534E4F9F5255B0709229C30AB8FA560FC5C5BE89186676913001F935D5B5B1B003B8803770A882344EB16F9B2720E096520163916BDDF796E1426010ED19C6A4F47D8A1AA58E620625DB0E3DB559643CA704BAC70D37A7B43C0AEBF4FF1E5ACFBDD18A8BB98473B14CB881347A9C7A68EF2B948CFA2358623C9D645F9580474DC4C80602F2A86702D11CA8748CBE3100B76C8014CBAB6C01E3AB438449056DAEF4EB2EB7D8DDC1431D2982F2B18C20D2D20FE80279E4174014B00EA1A34A701EAB13A9510BEE8383A880367228B8BACDD6431C4CF2107BEAB6162F8173F408CE78B9F7AFD5BE593AD875AA7BA86977C5F5BE831B7BB05F57138C4479871D4679DBD08A25CBC7871D0628367FA6A4BFD79806A9820A98A0C86163FB4F0A59C8F5956DE75221399D55DAC7D167AA8DD5F9557D111DC105F48BA46B90438071A176E01FBAEB63F0E1646B94B5C56C938BBBE9CF391724F540627B2429AE490EB04A06E9B978576255B6AC46C85697288DE08AC5361B95D4C0D6766A3CB11D8D59FE98DE6EC8F940B1FF0EA7A77BD7FF113EF36D5228B25115E0C0959CA36860EBF10D34A71B33D133CAEB1D0E934B948779060D901811D5C615BDCC6360617B2956673C6AB9B96DBF549F90EA0E9C149AA36D182EA7761593493D1183D44B200007D92629D718DC31077D8EFEAD26C6C187A7A99145EF6B7F3706DBEABC7DFF5E3B858B49665CF8CF4B5894D55047008D03568162DE6246AAF550C26E59C3B77EEE4CFA1192E2D2D0DBA3838377DE41FC3873564561F7AF17D9F8F55D226BB2A2FD8D16EF7A28555277F4E4D26F9B42BFDFB149BB1843D10E0C18307B96D426047C14E84433AE32CEC44DF31490E85041119BC5764A1F3A40146E8D8B7CA79EF83E03E29A8FB2E803893BC219AE8E289FD1F00FB7EA06B4E8018D320CEC8776D3789C2FA9050BF45EC4A260C004B009E559C5FE8C3105FC10E6A42401C108BBD7CCB8A4DA7EEA6D35E7C9F3782A9A485012A3B698A229641034B30D11896F8BCBBD3547B431B4617EC60E3003B38F632C0AEE21F5359F8D877906C4DD3426B5743012A6518CED04AE72E64366099638E7C3E9DAA2F8CF9D6AD5B83180E811DAF05533AFE9D9B74A6C021FE08A3E9FF6543B8514B9DA79831F85374CC110B767C27EC4CD330B413878862567EAC12D7027B2FF4E5B43F7338EC308BFFDCFC4FCDEB622DCBA4C5643EC3D05AC9D879743D6047EA829D2297FD61BCBC3A844B1B89C5A8DAD118216E16E090108614EEFAD0E2FB9D8F493A71B2B5BE08E8D8910073F4C99D96B737D655346618DA821D780A9697970765D2E300BB6048B770F1EDC2172CBEFD7FB100558C20290186E15BEC444C0EA01E2BD809391D0F23B22C614284C767D828B819C0027120DAC83D315FA5FC8756199163FB410E391FE3311192381DAB4E5DF0A0CB8600FA9CA990F3AEEAAB2C71A18860EC3C2501C08E477A7B47007DCC5D5F1013E17BE9731A67F9BF6D8117B3BEB74DACD7B9288BBFCBB068A8684767C853B5E44E296AC151664143A9407A1118C2A5BB2406ECDA158F9E927E08F1EF7A9FC8F110231D86954C6338699C6A1BAAB4C8B23E28BB38E01ED7213A9F2876218D3359A46C9A7EA918C162053B4595B87E9195A493EE7A0FC6A7F63DFD7C2C5F96CF4908B60727E0111346BACD38C53A87F10A17797B6DC10E22848CB173B31403BA9718E9F0628677BDDD6F81FD973EE79E3139448B2202BAB6D0434D94A701E887E126E6F532F19A5A97CE2DF3A69EA6071C6217BE68F123434D8BC6E923C80886B8D3CFBAF4F612D0B5851E5A607756607A58B77A28DBC5D75EB028FB1E2A315B3381388893C89C7C29A279B7D0C977FD386E96349806E4ADA01216DF6517EB9818C11FB21D2B29AEBDBDDC09D681362D114760E7EF433415013B92E7E0D08E2DECA4BB7E3C0E29910654268CCBC693D86D6C244070652785C3069FCAA49242BEEBBC5E8CCB9D2F95BF8636E503F6D06FA70722AB578D73311BCF75123A1B0498424087280BECC674D224B9D077CBE4F5EA1376B0DBE048447E162D766D1406FE0F08D29FFEE207675A1ED41151D35553B47E757E6F9954509B9B3529D08FAB14607C200E09848CF89595959CB37109E0B703043982858F7F3714A41A4972008650A3B295AEBE05F2A5038544D4242A70A83E45452AA3C07EE3C68D81A80D14A6B6220B374D119686A287FAB50DE1F68A0A4001A4BA02971A195DE2BE9D10C28D189EC4FA09B360C79EB0136AB141D186AE9581853A22ECF0B47A3073B6352B9D1090EA8B80CE835D78AED361ED8732A7FB8430C477C20EB365206619292CB2D6D3619135C5C51F799DC6FE1D45D8C8D1AB3AF08489E2111384DA48DBA4A83F8A1655DA0A2E43B858E67D0CD89D5A9BEF326007EC0E26CF71CC91FF71A85DEF5F7C1F718AE73E62185A401FA3E965D49755C6855EE446298343182788831B0481C685C46BCC6B636363663CB154AA5C2A2DE68CF28ACA104184037609E8BE93A07D16332376D635ED2BD619C78715F21833DE415F562C3440F185B93877D09E6717C98AE9454B4BEEFAF077429D1ECAAC4327A6E75B3144071E0FDB62D8D47157164A211A678794C958F115EC8038CCEB2D0A7A154BADF2BB3ED2668386671A6AA2554890D049D08CA363F1210A181E2D43F569B695B5E3D371746C12D612E2333819F5114805C448C7DDF5B1C50FB8E59332ED603A3EBF150FFAC5237479185A7467FB44843B83AF2522E1A9755F4FEB820DE1ACEF599F81C97EBD54CD411C60070FBF8C847133CB1945BB3EB6F8EA75AA5F5BD1558821B808EA58FC220BDD898CA7627FECC9A4DBF21C827DC697D8E6F721A5856E78DB67CB95D765C2B5DB22A23A32C6B6A8BE23B956105B200E6ECC07598D70C50BD78C58B033339D14C74351D48DBBEB7D8B6F8953E0B80C1304A0EECE1D0FDA01B218FB62186EBB93994FCC1F80C7C0EBCB47D739A1902091466543D8C50300847353D19C8E830B447CEE0BF76EC8B85B822B27421E5F04B1302FF9DB5DAB2EFFE99FFCE80F56572F7DB6B2B2FAD9F2F2EAED8B1757EE2F9C3805C7771BC124DFC2C716DF17B64D9F87A7C623482C6D53B8605376675F74FCEECACACA22554CBA3048083ED7BE9A32DC107B9FFF0FBFC5446F10E7D2A54B9D175E786111BF7BEDDAB5C7B2F0FB4298AEACE6B1B2215C216A5BEE573FFAE8C3578999A74F9FDEB97CF9CA27CBCB2BD757562EDD3E7F7E796D76EE9868A02052561CC0CA3C553C59396B275A41250BB02D0BB12B9A55FB95575E39898570C73E0C1EC909E40E7D02F261A3803E223162499F1B3002DCFAFAEBAF2F40EB12B1D4FBE4934F7684302D88341C57378E4201AE1151372BF757E525EE5C9B134CDABA7CF985FFB97871F973E1A8BB67CF2DADB55BDD6C6767B795FA15B291B6B2E9B804C12593DC971DB389C9BFFAEAABC744F69E66EC83FE22FAA79C0819BBEAB66C23019F2D63CFC6C558683701F38067EFBCF34E1BBEB54F3FFD34F9E28B2FB6E473C89EC5493702FEFFAD5BB74EC8FD0D79F90DDA42172E2CDDBB74E9F2271797576EACAEACDE3B7DE6C266BF97B4F6F6F77D47EEA46531E463BE905D97CACED810EDE496EC8A67C201E9E79F7FCEEF9D95FB12769C8BB75F47F72091DF5F8256255CD193F71EC9E3333B14E3F1B5EFF9526E9EEB9CEA8BF27B104FF32E548013E5365D70091AD83E343121CC71E192B3D00CE1047DF3CD37D74594B56EDEBC39277F7F6A5ADC8ACD79EDDA67177053D384B35338E80BE1A0ABCB2BABB70493EE2F9E3CB3BDB3BBDF297B8865E7C18307AFC7BEF0C31FFEB0F3939FFCE4C732A1AFAFAEAE0EDA22C962FCC5BBEFBEFBEF42B8DF91457E5516EA7321281C4A77E57E9A1CC125933E2BBFFF2D8851F9AD4FE5111EC4DBA015C4D6E5CB977F70F7EEDDB32FBFFC724E70188DF2FDEFFD9B5C8AD02FC9FD96B92F1F766CAA2BEA958F3FFEEF2B54BF1717177B541AE4BEBDBBBB331F15CB3191F1DDEF7E77F5830F3E784F26F93276C08B2FBE9897866127C80E79FFA73FFDE95F42C426718FE9515C6D17E5CBD520E1E8578433BEFFF0E1C305E01CC6894D0327A370F91FBDF7DE7B7F0CC9134EB64ECF28E27CCD3DBE018C3F027B2A2AA63BB13FFEF8E38FBF7FE7CE9D97A9DB5FBD7A3579EDB5D77282C844B10BE6C772674EEFDA3758F33688410351C69DBCF5D65BD4A27E531EFE41EECF6531B61D61FAE6EFC1D9FFE46E2E1C6C96370D277DED305854CAB918A1645B76DE3BF67DD45B60D2F2F97F250DB9806DF63DC4FF315611599FC9CBAFCB0DB51680785DC6BEE908B31FF99FB059FEC3DD7A5D7C22EFCAB4E6D2F111C2EDFC53C2FE577D56B070C703D13CFEB529041159FD893CAC5ACD4834A12F6EDCB8F181BC3CE6E684D41870FC4DB9AFC95CC1194F65F1F7C620FE35FCADDC7FABD6ECB447E47D651291D7F11142EE570074C2EEBF10CC58138DE5CCE00F3A9D6B8229FF28848188D84C8A33368EFC92B17C2062F49B62772C288FC287D7AF5F7F4F9E5E708A46E2E607CC839BE705B951D4FE99CC1D9F3F731A5B2F1BD3132A5F4756C53FBB5B8BBCAF7844DEA952A02EFF60C1ED9ECB6E47A1EE795658FECBA23E7E5BB48825D989373737377F2E000AED0649B55F28795ED6029CF6F77267AF68595F138EFE16C62E9BE6A66CA69FF70F3CA7103DE0F427EAFFA64E11E9B9CF1FB9B960833D7673EAD93B9B82CB5AD6F9458FC87BC1479019B583EC82A48E9BBA6E023D3339BB90A967612779AFEC6FF0BD3977CFBA71EEB847DB23AEABBE3B67444BDF710B08B8ED1E79F7DCE7532594ACFD2912278DD5444CB85B2BCB6D3AC4F7C821F626A1BA8E481DF3BCEF88EC2354A6EEFEA4844A9B7E84519597ECC95680503A77ABED8833A36E2CE29E1375FB8E2B9FB8E759E27A54FF8A204743341F772586435245A89C48B2CEBD5F11A47EA225E372C8FF0276A5B2BC6B039D220000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (91,1,'Rack_42_with_door_(96)',decode('89504E470D0A1A0A0000000D494844520000009500000149080600000092296FAF0000000473424954080808087C0864880000000970485973000009E0000009E001381680960000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000046C94944415478DAED7DD96F1DD99D5ED5E525294A94A89D544B6AA965B7DCE376DB9D891D0733B011180E0681F31238819F06180448FC122098A7BC0779CC3F9097609220C0008111208911C319D863B431DE3363C7DDD3EDDE572DAD8D5A48512279F3FB8AF55DFD7878D6BA75C93A977D80D2BDBA1BAB4E7DE7B77CE7B79483C1A0D8CD51CA283A3806BB3D11133CCADD984B02E9D8B163470E1F3EDCDBDCDC2C8D1B3A16A0C9DFB2BE3E35353530CEAF78F0E0C1C3B7DF7E7BF5137075185400D2D2D2D267E5E19F0988FEA9FC9D67E498956333F1770A2DDCF8BCD7EB593FA31FCDEF99EFE1C0EFD4CFFB321ECAB9BE2DA0FB7339CF3FFBED6F7FFBFE2710D94350E1A69C3B77EE8BEBEBEB7F22FFFD4772734E3F7AF468FAE1C38753F258C8FFDBF81B8D0F7E9F60D4A0D2209D9D9D2D66666606070E1CD814906DC84BD7373636FEC7F4F4F47FFAE52F7FF9F34F203346509D3D7BF6A0DC94AF0B88FEB9FCF70F05340B029E2901510F20D2BFDBE4E6BBDE3341E07A8C0197F99EEB3501179E6FCA7380EC9E80EC47F2FFFF2CD7FC5D01DAE34F60D41054E7CF9F3F2E93F82DF9FC1FCB7F3F27CFE71E3F7E3C25A02A6592A30083BF65BBF93160480560CA4130998FBEEB906BDEC421CFD7E4F1D7320FFF5524DC9FBFF4D24BB73E0195035422893E2DEFFD894C30ECA10B3299D302A41E8DEA58091163F334054BCCE7786E3E7B4A6C2827B062AE0F8B6A6D6D6D20521A405B97E31DF9FF7F1390FD971FFEF087BFDB77A0BA78F1E25F1A764B4F56DD970540D3F82F443FEC8CDA4BD31EDBF091AB57BFA69FAB47FC53FA6C26F3B90B403E30DABEAFA58C069529950030FD68BE6F936626004582D3861C00646FBEF9E6F7E5F135F9FF9BF2F7AB439EBF2B6322556779E9D2A51DEEF5F1E3C7AF7DF39BDF5CC4E4C03E0A3DBA5E33FF2F2B771D067D8A1DC7CF6A40B83EE303A90FC8F8BE4816594BEBF0000B31CA71AED563CCE1FA2C7EEBD7BFFEF5F2ABAFBE3A25809BE762AB0FD867EF2990E1F12DFEFFA38F3EBA972BA8FA5A35C4DE0C530AD96E6C6D775460A2CD85D5CBD5ACA559D3BF190B48D7FF712EFA773917385F9C6BECDF32C0B2E37B26BD51BF36059A459EE2F8BAC5FCF8D800DCF0B87EFDFAD5CE832A7453634084212BBD58595929C4B6A86E0C3E83D58A1B84439E0F6C93BE5703E74449C5F3C7FF2165F4A220E0702D4D006DE3CC7C7350BF7F4A9EE2F8FBA6845E5C5C7CA0A59A01BC776FDFBEBDDE5950B96C287D531E3C7850DCBF7FBF9A7CFC0626FEE0C18395DA53B6053F5F6AD272D775BDE566FA5427EC2A5C0F1E01385C0B1E0F1C3850BD165A205A75EBF93541629E57E87D1987E478A13ECCF7D7C57C79CF01B8B7EEDDBB777FD741A50D5A1BB05657578BBB77EF5640C2FF31B9478E1C19AE6ADA509C70AA1182CB76134CE37A1CC3B4CD422A4C9F1BE648DB491894C8737373C3C564FBBEFEBB8992AAF13D95E3527DFC43F3B7E45E5D7300EE4DB9B7D7C7062A3D001211A7C59D3B772AB05012CDCFCF6F03114015BA413E637ADCFBCCFCFD51ED24AA471E180017161B0C76CC0BF61CF5DFB1D9AD6D4A5BDFFB16E766B13EFEC0FCAEDCD7FB3EB52A527AA331A86472A6DF7BEFBD4AB5E17D88FBA5A5A50A38DACB6B6277D96E9ECFB36B5B52B9CEC94683C4004D7B7E982BCCD1AD5BB7AAE7587CF2D8B319EA6D81A481EAF47D775E5EFBBC3CFDBC4DADCA35BE6B039C3C02880F86A082FAB2ADE893274FC220AC6C0882C894463610B9544BFDBBA5EFE253A880544069E0F23CCDBFA3EDA45887427F1640AAF70E2B898E3933D59FBE51BFFFFB7FF77599E7D79697974F0B10CFDCBDBB7C46D46A1FAA756D6D6D683AEC96EA0C7C176AF553F5619B5F78A415D0FAA6E18C1F16103D86ADA0A5514812D9C00540E23079261795302E4965FBDBE67373BB881E2B8F2654062415A232401F68F5CBE7C78E1D7B6776EED29F5D383E5B7CE1EF406DCE95AB2B778E3E7870FBF4CA837B67C4A83E2D405B12C02DDEB973FB29B1630F43CD02747A8137054D8A768800EB92BCBF248F7F680595E9A9845408FF0F89C655466E0A2B96510AA4146248CA36006682D765AC9B9482B681F01AD51AC19522C95C3C55FD4EF5EFEAEA5A755CB952ED38DC2E8A69398EBF363D7BBC583C33557CE6B9F962E1E8BC9CE8C38377976F9E5A59B9BB28CED2D2BDFB77176F0BE020E59697EF9C96B92F013ACCF718546394DAAD68241BA5601AB5AE3F8C8926A5408944D10F6041D2F1754D309A27380E7B2A6631F8EC2ACE03AE05E70C40699544B321447CEA6DA19DE00E5F076CE31B3797AB034E27B677C4877B776AFA4871EC78593C7DE1607154003777606AEAEEDD9B27EEDFBFBD78EFDEF2D2BDBBCB8BE26001704BB76FDF7A4AEED32C3DD69830A451D4AE15543E43152B416C804A2271728F1E3DBACD1334E98310976382D8942AA3002A567A85E8055C27EC2518E4F81E25029C18A8397A82E6F7FD92B71C79E1DCBDFBA03AB0C6E5B82E4AF77A511EFC7F8717CE14A717672BC02D1C3D58AC3CB873444077FAC1FD6551A5779644B22DDEBC79534077F329917AC7703D101054ABA3D866565069240328A013402BE03956EEA143872AD7D9F4049B6CA5F8D45E53E99522D6536F2277090026020C120C0729059BF36357F1E32521571F8A5ABD2A6AF5EA4DFCF7AEE811394EBD71E8F0A962E1D854F1C2170E1547170E8B247E3C7BE7F6B5939070CBCBB71709383996C49693D796FBD046B17368A5146452FA1F7CF041218662F57F520A009B49709A206C63CFAE0D9B2A153CA976D27002EB0D68520A980B2C40520A88FA30A324C6ED98C40CA8D59B37EF56878C35399B0F8BE2E887B373478BC58365F1E967E72A2977E8D06CEF2FFECF77FEE577BFFBBFBE1EAB1AADA0920FF4A0D24E9D3A35DC6ED104A7B95513A3824C4A619C808A0196CD8EAB233C8376926B40425182E1A00437C36EBA00AAA05ABDB7521DB8C5B22E1EA6D85756508931F7082A8E5E448A07A8A517B92D359983DD00532C936E7B8DC0B27DD6F4FE42839402F0D63549953A8729E7EA92548DD4174008838F5E12DD73BAE37BB95D135A5D788F9205B69196C4387F5B94428C4433BDBF360DF52E80CA36AF7D9751190322DC04780CF004F11CDF8387841BA037954735DE63C196F23742AA51B3EE3CB44362CE9BCF7374C453159908AAEA3C5DF36F53E9FD9450141DA500209181469402B773A832DB12AD29922BB4696C533F3140E4396A831CD7896BC622E27BBEEFEB80C027E79809AA8A444915223FCD28054C1EEC2D1C788F2467DB8177A3A8411FB8526D2CDBF721A508304AB03A5CBAB2A34C356953ED7949AA116D2A0C99ACFE871F7E58510A18F068B0B96C520AB1EA68AF223D9B7052363BC9EBE9284A0160C31C6101E26F9352A0447778C459A93FDFF6CD8E6D1A7D9108D7804A43A482A6144C633BE4019AE27FB72985D441C9130B3673304A8120D39BE9391BEAB1EA8F00B3824A00F4888C798CC4B1798BDAFDDE6BD11DABD608ACD8A0BA10D010E9B189186A15A5A0CF2977F5E79A5B2BA84236868B72C0CA848D452396BF49B71C510AA34AA99414AD54B5478F95C0D2FC546C2D8818EFCF4F33741B5831910B5E5085EC240005BBDE0C77E1AE3E7F0BAFB5659CC7BCD7D69EA306877E4F2F9494CC1A77364D991DA06298752BA86C110B7C045060C0839F22C1094F10B6842D4274373D41D745C6A8C090AAD6D9357520E39052A0C19EAE3E025B0C1D33D4634D89BECB7ED0816B087501370540310404F682CE449E94E14ADF379D0ECD59618EB08B4FBAC54CDFF2DA24991BEAB6856B051572BFAF5CB9324CC302884E9C3831DCCFB385BBF83CC0DC8BD3F90C72CD59E139A434162124579DBE559A5A20B7F970ED08B8EC2B2BA864727A48333A7EFCF8B6C407B3EE54C878B7A8B0B2C9058D9B9BE2F77CAC780CD034A50050D521D5A54F526522AAAC3B022EFBAA6F96D9C110003D625E5F282AC1279D78B0824A0E134789136367F9808601D2D84629E406AA1849E5B4A962428A7DBC15B394CDE4523C87C4330BB8764DC5B10604B65B70B06E55D3F82A933EC851F5F9C9DB221E542EBECA9C102603805220E38E1B811BA253DD73B5A1CC9017FC9FAFA564D6B85DF2DE44806A47E4A70EE1F065D1E8342C520A4CC38241CA4847534AE566A8DB80A2931F385F90BCDA9662A5185F4D869D51127949AB1823DDC953E989C48A8417088F86042724110C5246299894C224798036A0D0E38304C301806191615EB0C06C510AE3CA6DECA4A4B2814A2665EAFAF5EB954402A830598859A7A4B2D5528831DE2791CBA2D7481B0CF3857963C68DCBFBDBFAFF0487139B5F90D7FA587100925976B129889A520ABB396C09A2A906390B76B0D89B0B54396D28A7F06CC328054BF9A035F0543EA63C365134274A01400028F49C34F5FC98DAB6B9E5AD4CD9E2A972945431E9EFD1353F634044C69DB5147802A41462A214F6728052C0790258AC96670BB74E05DA24457E264B2ADF46B28F52600AB8F684E882E766A8930AD1C53AB45AC435716F2F1668B618F59C0CF5D473F5F254362040129994025635EB31E95C3FD76F848AEB37BD987100D70409251729056D8BB9BE3BA9295ADED0175FD62C2905442940225112C188B765D0ECA50798BAF29B569B613C15C38FC9CD315FD016069377E46783203DF30D796D1BA580C95B5858A852B14C4F7052688450C88BCF63D4510A5868A41418A560CE717E919F89417AB6645214E8C08400483AF121A6CEA76BD43645D9DDD55836CA4036AF515731669482FB664C78DABBFE01596D6B3AF1A10988744943B2CE5D5F99ECC36356D36B02346E5F815280E4DF8B5242E300564CA26E5471FED882AABA96BAFE0E0085D7D09CB1CBEA0F36634D7D0CB75B7412448C31EF02DAA4D652B0D957DE0C651FA03879A014C0EFD058A53AD5D5F472B4B1285975596B9B371803B451CA33E602AA2849E52B160B6F90AB9A9402C0442965D6F9CC7DE83018ADDE79FDA1CC1A17239D134F65DF1108D854AE0BC5E4215E0A510A9A52C0EAB5253E4C8207186B94D3EE620F1E92BDBE2885ED76493EEACF458B44A93F520A376FDEAC5CE3DA16AAE804EC078EA3CE672E200B65D630F101C430CC024629B8A4524E3C55485279D51F29054C125B87D8121F628D773EA6D452D84BEF6F14A09900ABFB1BF6DC8C742F93E5D5309E4A830A9402894EDA47A920D27F1092AEED04D3710C8081C9A1A975BB5C993572DD1BF2BB539314A31E8CFC1CA5929E6D831920D4110ABAF6A74C6EA76794150119A5C04603AEBDBD26DEDF76BB2C4F4A21BA3A710C9D609344B809A01458E793BBFA7AC335B7C185C0E79038ECFC90422B8479AABCA4950B4441EF2F442F60B2B1A27150359A15E57235DE5D60A1674789C5F9D1AF8788CFBC8B9E9549F52C823D943171A012E009E291919CF004593AC895029F195755C618E466180C8310B9986C0073B9E493589DD8D7F0680A8D104929B01B296BABDBB662528CF749A21874188CEEB5CCBE358C51B74BAA7C288598F28C4E4955530AD39820B38964D33A9FE3EE3ADA26A5304A8D509D59C3C4073FA5B04FAA13D7E2FCE191234716460191026865E8D6AF953BE3B4ED919F7B21D9D802C4EC60DA24B30603D75DF71D9EDA97A12FA194F71810E9561B1A1CF40CE7E7E7072917328ED5EC939A50F7943488526098B4A659DA6822F98466C88FAB8A61D5A3BC3F1F8868A43283467F46EF87E56637D1F066363653DE4D0A2636ECC51E4E3C59E5198736A62F68DF258958E7935C14B73758A4C386E85CEB2990D0E5063273184DC9E5A3262625F1215952F980C53A9FA014749D4F520A21A273923C3FDDAC9B8B4987C1D816E95E35911C17F9196D53E9812805B40E0190EABA52958DC13A9F214F30F7F097D4CF6A09C68ACDA4167C95F47236D48345CF2CC6714529A0892426C995F81063BC2BA0767EF260A4DBEA4EC5028DB5AC98F8506F2CF7F28FFC6C509ED104954CECC3C3870F2F9889A12920E244E2F7E145D537A7D3D3484AC156ACAD49AA3B8C7C500ABA3C639E919FE120BD6D92CA5C45B1AAC1052C1DA1C03F0C758047016AA7F521D43D170129056D988F023477E4E720034955A68513DB2AE9D908485F8946520A34E2F97A4C47D22E0E9C37291286C1E8AD9858CF315C477D320CF5A8A2676667241344A414B8FF47D6DCD6692B770F903D773837B630982686EED6EBF88D8D2C00D54A79463D5C9442C8809F143AC15C54CCACE1DC85326BF2AF4E5CA407E959C0D443F60C8004D0D0CEC09192023F09193529DD4AEB50EC218FC5FD4E3DF1A19D8B6E82AAD74A79C619BCC6D621B63A9F2920CA055CBE069226E0429402131FE4FF3D97A49A94EAC4E6E7ACA0922F0C29055F37D2986E10B43FBA5EF313E787640F1298A34A3466D6C81C6E783B3E644A7EFAE6C559492F0544B6CF7352618FD1935A5858E8742D05A87C16D64050228B75A44C68ACF737A9D5899D92CA57A4DFE51D997DFEC8C4E79600C10EF73AB38600D35E5FEAB033D2F9A9BF1867A39F1A51A0279D14026D09929F29922D076F4FB7C125214AC33CA58D48D3D5DF254915559D38C6D0068850940340629D4F86CC4E620ABCCF5662A5655DC38A13ABBDBEC90A7D49ACA3EEF84045290048B087681FC190A5AAD33D68523CC0D870E2368DD951411ECAAC31B7A5B8C8E89CB80AA8E5A3FEE2A4EA309ECA11A93883D7512C9693A4ABBBA47880363075852AD8610BD415FF46011A1720131FD090D3E592E7EEFD39233F6D80409482786A0BB654AC5415C782159A08ECEA8041CECA2D4DF62C4D80E1BACD28851CD59F06565475E290EA6A52E505839DD1754ABC48BE4E1B5B28EB8D014F0F0003B5A0BDBDA6550173DF508E8D511F4AFC5158707A7B50192675404A81A1303919EFB816560AD499354CEF4F4DDF9A84A267297B97FD263D82759D4F9DA56BF37C26C1FBA3E10D90115CDC8A894DDFB207E9E533274945CF623C368007D5E170D0D660DA1281358995F46C0063668D36EE5DEAD146296C0F279ED0F28C8EF4A21E5B8700344CE78637E84B7C88093B9E34A0E902B39C54F25866FF9D9C79AA244965FBA0FCC02C26EBD8B163D6C48710586CAB3597C4077ABB4D52DD75032436EF4697D7DC8B9EC5F2545E9B4A5E5B3D2223A623968FB7C2C432C3B7B6B73A3D8B384F74BAD04EC728A9EE8C52288C5A0AB98D50E4E70E508580114B239804200D7700139E148648BE4EEB41A87C4A2C500AE4AD527AFBA5928739822A18F9999A9E6E028E7605B76C74275233722197C10D734D29006078EE0BE4F335919C04F2335A52350111EC2BF2388C5927139D730D05DBB5EB28053C92B36277F798B201B9477E2697128AB1934829309D1B83F1EA667468EE21C5A1C1FA11B866DA8BA138AB49537F2EAFCF6B53E1B30011A3146867D03BB279829306A2941D05CE05ED2FB3F0AC0D4079457E269667B4A92B597507302928160B6F28A6E343C8D0CF615552853735C8B5BA83E482546361FEBC233FE383F49CEA4F2676550075C4D5D636647729BE6BA822BA1EA580C9C10222186CF6612AD020D965FEAA28059BB19BA3FA8B0A276EA2A662EA7C72C0A0672D85E3C78F773EF1018371E98C520885C1C43646DA39D7797A7FBECF54A12F3136444A9D4FED31B1B78D4B0D8E33F273149B8E51AD580C7048083076738FFDFB21F59FBBF7E70CD28BB18D4C1069639D31EB7AA7BE0B45397C604C89BA24B8EADE3A15C00034A8F4506303D74D9994EAC451417A2EE9C4F822520AACF3891FD1B1EA3E69312994023D3DB3220C55BE2BB1743F5427F6DA54A827084699DC54F5419938B3288719CF3D4AD871176DAC9041AE2BC2B054360164D453D817D589BD3C957CF80040031041DCB751E73387090C19E521A069FB5249B3A94949D16A2CA96A426F756161E1481B753E617B4045747D163161E0E570CE2999D5BE54F73A2FD2534B213F9E2A6644530AB1555E389974A3698B61D59E3C79328B5A0ADC44C681A1A54FAAEAF4F13C396FD3786B7EBA00120B22EDEDB11018CB35726F30B75A0A38775C03EC4A48599A014C351BB58D488E3C555275E2264C39C35AA822343F6532D1B97B7DB81E9D59A339AB94CC9ADC792A97B311ADFE6CF503A0C274D179BD793A891EA0CD56D23D6BB0A8585DD00C83B1F504B487BEE4A3FE92AA133BECA21E56A7A614F0A358A15469BEC487FD9459636B8C641699F5B9E439F154BEF7B6457EDA40211373009345F638A5CE679393EAD26A4CDD0D301B23F177589E51C086724D03BB4B9EA7A11EAC4E6C03844C0E121F0E9B122935765D7B5239CC22CB3372DFB269622CBF533B2D6088A72669EF2F3946BD890768BE0E2F897C0FD5680E94C29D3B77860B011E1FDB9FD8EA4EA5006D928A9E858CF4A1FA6BE201BAB2684829302DDEB737D8654A01876E488E479DDAEF233E630CDD9C36944D0F30A9E859AC44D24539B40DC2AC9A1C33685CD7AA931E743518520A31E95B2E973C47F5975C9ED135001CAC5C9D414343D445294C62AABB190643D69D944228412037E7C506AA51CA335620822D045699E8C404D28D9EB43A9F4D06E6822063188C2E321BE679262BF2D36B53C9A4CC015410F76C64144A7C08D963AE06E071852C7667F8121F62AE553746223DA1298549F1FE4206BBD5A64294022805579DCF58A39E510A90704D3B3E8C136426BBAD131FD81BDA672BC5502AA014722FCFE80A7D498AFCF405A5F94044314F1B8399CC50A31839442960E85477AA399BF391E2FD4D42E8CBC8E519633929B339353D43D81ADC746601FF5C062534EA73C14E5A5858A862ADD80AB74920DF24447E4607E9F924900B44DC92D0AB97AFE9D727C178C7B5A0451D160949511CEC5B13738DAE3AEA9364A83B435F7CF152ACF3C9F8282D99F68B07486294DD594929409AB9813339D5897D46BAB73C23075BDA3211145FA0CBCC9E34A965B0730491EFFC4D4AC1E4AC6C612E79467E16B6F67D69417AFD7E7F8E0C32262926F1C165BC1B27D0E918755794426C660DB93B66D660C81C6EA314B6DF8C7CCA339A3C5B309CD812D9895A0A877DE12E2110F10F736BA3EBA0C230A31442BDA143993518A22EB7510ADB25555EF654743B96D88E0F311E203BBF639552C2815280178513CA254A81B53F59ABD4DCE36CE2F9E5BC4D4367C347994485BEA4940AD2FC145739A31458144D17EDE8BA1DC5D0690CD849A01458FF33B529A6CF7E9A9476B751417A2115A7E38BF80775510E57199E1C0716054851382D905CE0AB40296001996DDADAE279BA0EAA91E2A934887448B15E7D667AF7A479807AE03A751B5C4831028C94C224AABFD6AA1333D4852E33BD1A4D0AA67880B9D30AB606920017B6A0E82993B3B24529E46E538D5C9D58C0534529B01962A8CE67A87E554E13D734D5DDECB5CC5243A414720E7D69A53AB180A7A214CC7097580F509F0CD544DD18A8D33C157AEF50D56351A544B09A20632159500AF2B6A33C63913DA852AA13277B80DAF524A5808965F7AD1C2885DBB76F57E70F150680514A8FD2AF467BC7AE766DB97155C9D5899BD849ACF3C94D566EF1F086D4557AB332C671E05A4025C0E32381AB8BCC8EDA462447F5D7B83A71084466060D6F06379C7D4C746E463AE3F251531E120C0003F3CECC1A92A2296D449E84BEE4A7FEA2AA13C7A8369DE26D2BCA919200E10B27B6A9843654845E5D4D134339070017E68161309060AE3018B396C2CEF399D0EAC4B689C09B4C04D561B5ECC2E9E3A5BA5EF1C525C6538146C96C5631D694826BB1E42CA97C46BAB33A714D291C04A05820955EA06B077F52F8A951186F9DBEA58B7580521013619037F9D9428CBA0068456C87795BB84B0A884829B060580E940213474929344975D76D704929E41DF999984D93A2AA622411336870406DB2CA714E9402CE1D9BC86CF0A4FB1636E954EA2ECF98AFFA4B2A7AD6449DB11329FE10C38EA13E29E972A31470EEECA60A1B09DE1E8C72520AB652DFA13622365B2EE7D097C6E519431E11493D4EB6CEA0695282A78B83D50391FCC0CC1A342C0F65D6D82AE9ED5CE1F9F0542E67234A52B9264813993A7A810539520B7DE4386C99350CE6F3A55D4D42E24352794617100020AA31DA1329753E277DE8CC1A482DDD18890189A1528C135B9ED10602598515A5007462A2CCB6B6934423C4189F3146B94929306D4B1E9DB514729A9791CB33925218B5CE27063372EAD5DB694A01F6527DFD4307C307B0989E3502B461E243CED5895B2BCF980A22263EE060015AD009487CC06BB9243ED0E363CC7D280C26D6FBCBB53A71A370621B6852782B5D948376982ECF985BE2834929B097344B4FC66C98BB428A73945429E79A14FA62935AE4A7D8F19C404ACD38E93AA5C0621D30C221C14E9C3831BCEE98D4AD490A7D09D9A1C1F28C26756016E5A097E89ADC49F304C957915280F422A5C0798A6D233229919FD1417A343459A5979287753EF59ED8A479803E5566BE66D6FFD494822B63DB753372517F3615EE0C27D6172F2BAFA21418CDA98B72C4806852792B9F41CE96C0BA3152CD5F61E10E3077241173B4A7524286AC924A56E0CAD9B367E7C94D35ADF3494F0A939B439402B65F52131F428D914029C86F4E1154FA26E558F5C5E7F9051B733701118D77E6C031F181F1DEA74E9D1AD85680AF90AC4F97B72D855C890F38FF51326BB80BC1AA324FAE33EFD017977DD54FBD4136A94520D5ED5D87E12E6C24C95CB8BD70715D9F75897133F1811E1FEB7FEA2CEDD879D31BCF04D4D65EDA662692AA85EAC421100D11598717D3A067064D6A69EC2EDB500418160536900130A8495C3BC3606218764A2BD33EC9CDAE6A1CF9690391F6FAF843BA50FF24D5F9740D5CAB59AC03079EEB4EEF26C028A9B4944AEDCBDC15408D549D1820614920EE81F9DABB3661E473F6FC303F94CC90626C8C444A41F3763629B555DC242F508D549D9894028D566EB7E81F6DD2796B52F92B5B6324D6FFB4510A4F3CC1BCD45FE87D6F7562B18F5664D5CDB751E7933D86EB4EE99D76774829701339B54B29AF1B528CDF97C5E9A4147293543E233D589DB849E482A61418B04615E1A214BA36402990F03D7EFCF890F46513CCA64D2469536929951249D9059EAAF518F550875286BA4022B1AE153660F58E7ED7C94F6D4B9AB51420C1A0CE584F9E36666C668D36E275BDF55C28051B4F15AC4EEC9250BE084F4C0E80C20C1A86BB84CA0F757AE62C6060D51A2C1C6C1E2390EFE4C993C3C648B620469B1363AABF9C6CCE56EA53D9406466D0601040AE62FD93B6EFC70D6466D680B302F30E75C9480DDB35DBD4DF16D0260354D1919FBACEA7A6146888EE973A9F3E3589621D90D2DC408624C323C0638608D919F53CBDBF608CBA0D00B20A8794023B17E802B24DECAE49A716B0F8186B0529061B0C120C9482006A6067D437F787A4AAC5FCCA993367E65D453952B82816ABA84B44779E5220E90B09642E9058CFCFA414E4F35393C0A8C7002ACAA64A9544EC98406F894D9370D494426781054A017B7AA41418938E6B484D75B7797FF932EA2D94670C651BDBB2454829F0268052D03149B9D452E026313C3EE63D22269DC6B82E016E9BB7D0DEDF76633D3F4A21AA3CA34FEAF8541C290566D0308B46B70EC97DE01A608CE3C0C0E631BC3D3CB2305C6C668D8D51CFC9484F2ACFE82A29689B60A2943D5A747D7557E2E5240D2C9C9B376F6E6B830B35C94ACC2E0966A31472527FA6F71732D8BD3695AEF369A3149A18EF660845AEE9E0BA580724367303614BEA45E8A714262B48CF5B9E5126E620EC22E6F57192626DACA6AB20259C789455D6B4B0ACCF28A7AD85798314639F65B1CD2A4AC1BE4D9397A11E1DA4675355621BAD2C2D2DCD33DCA50917658B522832497C888952F0797F0017336B4C4A81F6E8964ACC45FD8D104EACC05086BC4117E58009637729A62D19510A9D049699F8C090617AB300598A24B3797F9A9FCA2B4AA185BDBF541507C31DAE3777F1E12DF146F07BB9767CC00281C707A031C1D6E694847ED3B4A9B6E6341F0FB971905E8AE7C65AE17505DE61518B8CA314AC7340806140FA02602271D9CC28EA5ACDC4874960D4BD417A21C2D3FC3F260413CAAD0882C84C7C98C47D3F1BA5A08951B331922BF181376552A2148292CA6C1DC2A6D47A8274A18EFD128F6E727866FD4FD009A01548299875506DA0CA69CE42919F419B4A26668E8DA9F163662B571788263DA3C66590EB9622D8DE811403C8F02826C19052C835F1A195EAC43211ABA4147CF97C31F6D8A44429A4008D7B87757F9F1D94427E890FC5E8D589533D40B3B40C5400562A57708E510AB095E88430BFAF491349DD696C67E243BE31EA3EA33DAAE3434842C170C7CD609D4F500AC8E4A50ACD8952B0452920269D11188CC34F89AF72530A791AEA8DAA1387561F81C432415CCD3818B39E5225A5CB9C958E5200A5001589D8740CD690F0119F7C4F939EF931EAC5F8AA1333420183AB965C4D28DC781206ED24A849A878006C71717128C55CE5C14DF5979BF70735CDF38F3977274FC5821C66FF151AB2AE98A9FD92EA4E70418AC10683F422A560467298510A4FB669F2B0A920516DEADB25D1AC924AEC88398A75FD232920DA2F490F9C1748312C3616EB80A3027529D2DC93F830C86A219971F62EFBCA0A2AB18D564F9F3EBD234A21164439530A0C3E4CA514F4A0B352DB9ACEC4875C6C2A1BA06CC9B15E49E5B2A962280746294015D49CD7B00760AE9402A4506AAABBEFA6E46753D9CF5FB7E6B3DA54B174820D68B8112CFBCCD62168C9A12BC6E44C29600399752234C06CC4A70D68B9273ED836C3CDE71A708D0A74D00B64C224A41029056E32FB2805D7AEB72BC4382596A7CDD5EFA21420859906EF2AB514AAA5B005AA223B50D9EE959658CE42B22E95A7FBD8F98A72ECB5580F8132A526B84929E07A6FDCB8514930243DE02057E7CAAC71253EE423A9EC3B022E95D8F7E5F8D95C61D209B662FDFB69600E6EDDBA55452A905260301F5BAE84131FF2983717A56033DC9D86BA4CCC014D29E8D5D6C403DC6F9402DBE0D6510A53B96FD3B8AA2BBB00E6EAF8F05056DF618AF3540F500F4C323B75161D2F7A067B499747F24DB0CFF3D3C53A64716E9052E0E4E7482940FAD26E0AA9C1249B2AE633ACA5C0FE78DC1FABD544E729052C02AA330CEE6BA6A4BABBBC3F6D46E4C4A8D3A6D29ACBA706FB4D6904FD9C890F18ACDB0410E90C945C2805A6B2E31A705D5065A74F9FAEA42D1C131BA510EBFDED547FB9A8F7EDEACFDC183701165D49CF7C4E4A016A8D75147023A83A62AA1A777D6081201E1D07268B890F906200163DDF189BCBC6F5E4526FC2C5A8BB8CF5A486479A52D0F97004D1241BE7B8362C1A48AA8F3FFEB80218E80410A3207F7D99359930EA684A3F8553941313E3A9E8F1F4E5DC4BD7F96B46DDCB5399B602862E9CAAEB7C8E937CECF2C0F533B3063618326B60E84372B3B4A56E2BD24D467D80B3E897E2B05558C0BDAB72DCB7DDD04283CAA5F2823C95ACC2398AF5509DCF71D456C8C1BD3653B0B8810CDB9199357524ECB6C4073DF97B394D65B9392392697648FEF2642A60E90FBA1975DBC6B293521011BF7AE2C489F926753ECD416FAA6E0A944594428A3AB7797EACC3506F5D0DA314EC8CFA6E4FC966BFD7133015546F832178E469397CA9DC768DA5BD5FA1BD76557FD45E7F16C53CEC9187E78C0EC5D1E528059C2B18722E02465984288510D06C94C276467DD7A6A3EC951B07A0EA6AE0EC0490CE1A1B3C796D7373C36B9847D954A90DB719A500B14F771C510ADAF5EE3AA5C06B34290550259A520055921A3ABDF7FDFE068281CD39F9AB535AAD6D039006D68EF30F87BF689B2BBA89A4B9AA4929E0606517520AAECA7A5D1EB68D656621E320A5008F0F528CE5822089430C3B43B34D467A371875B19BA0EEE69C92C9F8780AA5E0528349053A74510E72535D8C521827A5800392195219008314E3CE01E7C0D543D9F494C6EDFDF5CAC1B418E4732900DAE6F829465D2F0A9F94DAC1A8BB80C5821C048F1933B5DF3692194B851018E437EA621D2C39A41343DCDB34E39CAB41BF0254E936DAAC00DA7ABDD4EFEB28851863DD6A539994020B72F82885FD18FEA2D3DCC157417273DF939935F2DE1E243E0CA6A67A9B07092813552E00D94C2CD326D484A76B63D99AA14C4AC1E656A78208AA02466E9DBA549A41F21AE97BD9658AE51975BC5823877DABCB4305B4BAF8DBBA806C17131F2AA3FC10FE940D3C211B7D50BFB3F57AE9DD11B049A991121F5C9F659D4FAC54A84DDC20A80A18BB274F9E4CF2A1DBAA601C139ECCF28CCCFE813AA39A831362F6444EF5FEECDB1CEDDB54535B80EA85A48F0B40D52E4DB1C5270EDFF76C33D93696FBBE2D9A58371C3F0ACF0840E20AA527980BA5C041E2138B005216D775E6CC99EA39C085D7795DA94D24776ED3B46C98F72A1B6ACA277D0A0F808CD783E76FD6301D520A297482965AE4A64810929BA211EFA014B22A9A8E6B80218E0393055B09DE1EB82B5CA3ADC0ACCBF3B36FD3B427A94AF1F4C4DB9B0D491F1F802CAF9726A85C2A4F6B807E4CA1B261D1750112DB87B0C627CBEC4C3AA58049D56130F4F620C548B1E82A37364935C61ECABDCA304F913E2E0019AF57AF24243E38B769CC7A530013BD1C1DEAA2132CF79B07C8C5844805D890E4AC584E4957BE19778CFA546FE3A0DCFA5E8AF47101C866BEB792F820627E4EC7A79377D11DCFF72B8D601B9817A87EC45A418A63DF1347DD9ECE4929B4E1FDF57A8319F1F3A6D3A44FE1F5FF86AFD71FF685EF58131F6CD249ECA3555979F366F5B814E35DB3F07587CE4E839094026D425F4467E83A48290060A014C48199B26DD38C6A536DDD47ECE9F9D597CFFF3301B48DCC1AF8BD5767E243934A7A3ECAC16C1DC23A5630E4EB8C9ACE12999036CCFC41D830CB4B02246640624A4D0553FD69FB6334506D1EE0267119609F9CE0310064FB9ADEA60949A9E0364DC8037C2282B728056EE730EC36B7C407C64231FB8791170018AE0DD7A4290517156302CD541F4FB669462339B7F6F59A491FDFD794A8ABFE2F6ABA7425C426253EF8C085E79870264E925280EB4D437E129A48B2B0197BD6808783B70749866B6402698CE768EFA1DC7C8E2A9253DB46310072812740B3DB16844F0DF67DABCDA41418EE021501B5804935BB914EAAF18E6B236785014A010566F1483BCA4529F0FB3B3B3E340315EE5B0903BD8837994CE913F99DE17F5ADDA6212F850FB38730A591592F603F0D4A2964D6B058C7534F3D352C39A45BBBB94B09359BB35EB93117044F40FAD8223CD57BDB62AF4829D8CE3F7A9B46EC88833AAC85BC0B5B8AA47A80933E74B10E800AD20B07D4E4B56BD7FA32778EC48741032985342A91523EE9E357793BC113005D28F1216A9B069482B8D787426D6D7DC6BB9674A0145860B5CB0306B949ECFA168ECB54D0C53A4029F4FB7D47E2C32079E3AAB71574E78F2FF70128E53B4551BA76045AD9A68931DEF988150A20818967262F7BB67479C05EC279439DE191E7CE90E1149045273E9429524A30550E0EB4217D2C21C56561710C07C5CE5A0ABE58AAC6D934268834A5C01C3873B335174A41EFE14195312E1D13C628859854771BE06C8C7AAF97C29E57817761E953780164058F97636FA3945008449588AB83EFC0E340D4334A81DEE0240CAA42500A5830D87A397BF6ECB6621D31F981ED500AC826DE9C558479D893F3481FB7F3B72DCAA1B431EA51A58462EC246E2C73DBC556E7336487D87A9C98519F5D1DB02FC959E15C01304429C02067B4270E979D654B1C48D112F2555008BDD6A48F053CA4BBCCCD68EDFD259712B2018C45393058BA5A77246DD3F86EA390ACEF77DBFA3D5C338B9A5DBF7EBD529100D8F9F3E72B35CF3932E3A9E8B834A114B025D3A6F431C153148533C60AFFC66CD3781975516907F8453C92DCD44994FB3D01C24C7367668D59ACE3EAD5AB5378DD9638103B57B5813EC338F318E9537800941A63A5EB53354A7CC09055F85026653E86DC0C6D401B890F9D060A131F6CCD8B624166B6C195C70D99ECA9514A0989949A2D76242EF8A58F0F40A93156C9890F3680A050512A8DA0550B5C72AC52A84EE60962A2BB4E2930F121264A21559AD95674EC6FF64023D490684BFAA4C458B963EC1318F56DBB3E11A582001E32C9F871006852121FE0DDE2BA708D3AF1A1691B91ED8C7A1C835E949B33A9D2A77EAD498C55B91D606146BD11A560FB0CABA3D080C76423B4162B3BB73A0AAE81EB004D8283510A4B4B4BC3FA11AC49152A26EB2AC21A43296CC54C95DB0CEA18E9E307901D3C1E1C784B0999910BDEAA2FA6C7A4CB5793A76163C5490977F1714D3A4A01120C510AB0C3588B0A73E2537F4D121FAAE21ADBDDFD56A44FAA1A8F8DA5DAB14D632B5FCDB6B6B48D48F8D98AC5EEA78D64482948E56BD7AEEDA01448BDE828059B611B8A51EF55B1E7837E3106E9E3138E2EF236C44F79ABBE8052A04863EF3B5F75B9FDDAE941DB61A41420C921BD34A500D340832B96512FB76A4A158ED08351019440D6C5273E384125ABF0A1783FF3AE5097943A9F931AA510438CD631FA15A560AB17119A8F8AF0DC5E28711700B44D2416B66D1A97941A32EA3136556AB158AC507682C7CDA1FDE5CAA889B1E95218F3A6136F46299885CD5C94410CAD409B2A9651EF959BB3DB2ADFED02785CAC428A94F276D14A011153C299740A00C17085D7B41B9442CA35F8E2A0CC2805008BF612268B9D2C9A349134BDC020A87A83036305504248B1DEFB8B31D6FB4D1B6B9352C00F334A819482AFE8AADEA04EEDB7B7DB8361C188EAC482C126328C71D84D583848814FC9AC31DD6FEF1C978399714A9F8858F5A139979CF810BF55500E8B727045EBEA2E3A83791449336A3E5C134915036C4827800B07A31498F8C0F6B826A510B2495CDE5FB5D7570CA6C7297D6CE0717EC792F8905C9DD80412680596D2D1A12E935294235562E2F3B0BF746E20EA288018C55C9976586A0FE5F289941A4DFA14455A48B1F53B203E07C1F241C1EAC4A014883A481FCD4BF91A49A6E610EA1B99935AB4A9C9AB57AF6E2BD6012906F3E0CA952B53EE6D1AD762DE9C517B2D3E90F8A54FACCAABC1A3BF339CFFB20C96128AA2144494AF89589FD7753E9BB60BC11F6A12A560826C1415E8527FE67B506524799B660D99C53A44A20FA314AC890F568D3698B5ABA1A29D840602C8021E9BF476ED08B836965D417A83140FD096BDCCA453FC1136F1664FC02EB3E43867D84BBA0E8459D82CC5F3B395BC7E72536CF389BAA8C314ACB14A1F133C6689A3FA3DF87F518C3AC1D5B833A98968B60E610130D85E5007FC0D1AF8E6C58CCA51C5AAD798415E0A87AE5D0A7B8935227084A498AD925E6C75E2DE963DD59AF4B18064870678021EE52CA9CD6BB38964A8A25EBFA96A61D74E7A3FACA580C7AE18ED361517BB60F03E0186C1D01EF4F7C3C281910E3517AB26A3131F4A517DA174AA80FA326D5217804CF098110EAE42B2C1C48794BD3C4629D038E5C46A6FB02DF7BF45A6BC95C114771C585000D8B973E72ACF8F054A1806134B293824D5AC57FA04D457ACF4F1C464D99220CAA4C407DFCD65B80B83F058E3D356E7B34DF535EA6FC518EAA3FC3E5421392BCC0FF60C21C1408C323F909935BE6D0E7B88D19358F436A48F66235C000A2541B86A294433EAF8BFD811072A83AB6EE38A09D2F514C605A25C07C381905903DB920566B1103FFAE8A32997C4DA196A047B6AD01B0C0AA7F4A95F2B63A54F0840FEEF143B78B690947232EA22CA2B4AC107A25809853FC22885100863E98371A9C5544AC166949BC53A4029146A63586FD998DE5F6F2BC1C12B7D62D5575A12C43693CD3AB9B19DDE7DC5F907293DFFCCCF303A54530A50096D253EA456FF0B71541C00021B48D61C53A38C6B5BBE9FEB33DB164BAF6A3F5BEE86F42913F615594B21A6D3FBB66C9A513A943283860902B4BD709334A5D0F5A1338D31B0086088D755862B3517432924C0CF547FB363923ED100B2CFCB4E46DDB7B19C54F5C5CC5C66FF1918AED8B107A580896F2265DA28ACEA33D46D1103A16116EBC0F55EBC78B19A38D68ED0159C47397F347B44F7AB2242FA6883BAA9F4F19D8A6BC1C5747A0FF254E67B0C7761562E2616F643D304CC2E7058299402C85C1C985C486514EBD09482D9A5342DAD1DA02ACA18E9336E00B9D49F4BE5C56ED33CA1DCC503649D29467062F208A2261DA5461D7BCD5F61E258AC0392DAA4147C6130EEBBFB24D4650CD2A7E96F588BF3476DD398371B940280C40692BA58AC8E991A2747D5A6A1EE2B43DDC6B990F844660D6C4B500AACFFA92905FF4229FABB297D52BE63567D494E7CA82769EDC89123F32C0F94E201EE6088510327935A0A9038CC1CF245AFFA06FBD5C0C6C475CBFC6DA314DCB7B59254E55E03C8279DA3131F6C377AB3265052B397F99C6D43EA491D6E30EF462B9151542380C076B54CDAF075C78AA516226F5BBF0BE0B1FD862BC830A9945069B9333E10E1E3D85CC64A87DAA4ED859BB4DB94822FFC24A4FE6C9402D41902EE74B7772DC59A1AE616F537BD87002A43D44728F1C15A9C3F26FC453F077830E97884C8E7E672C840F505DF752DDA93528A7B7C08EDB970E142659C935230A55813905565AC59256F97A44FAAEA8BAD4EECDCFBB301CB8CE0645F644C38ED90084AA11CB7671832D46DFF4FB1954C4A01928C111BA91E9FF2FCFABB2F7DD2BE43EF8E52C9B7B1EC0D7DA1918D03221F761173FA74EB90FD3634A58081147704F2418A61B03A73F49DEC15D32382A845000D76E8655B94824B4A394B091D3E7C78969402F7EDDAE883D75422753D09829402921F688381B3C21CA296424349B50B06FB601B78861FD7F7674BA297B1DB34956964BBD132498FB025112A161B4335344D7C180584B1EACFFC6C9328059B9AD4C53A065BE19D017BC99AE33756E9B30340DBE36DB6012B94F8C0FBECA414EA091F3405113D3D5BE203C35FBA2C71CCC487982805977D56DF8C415812277354234B1F2B80F49EE8B6F8767F0F65AD4D8219CA3E0FD06C2209B10FDB82817DB0BD60C4F36462131FC665A8C70C5BE2037B21330E1FD7150A674976044A6F36727BD287AF5900E40B043413374215F5A23B939A9F23A540231E9C140CD7A61ED06EF257B1D55A34670552140083418E09C4F58252889162618AAA3243D2A58F0192A0F4F100A8F464DE24F750B65DBC8B4362F01DD3B030B1D8EFC2F3D8C487A6A12F7B6DAC43FAEAC40710BDF0F620C542C53A7CA3D71B18801AC44B9F80FAF2491F17804A475C7C6CA7F7600F650D246E2C5305EC769DCF5122217CA95A4D062433392BCC110C7CD45160996C7056F098A342A361A49786B6DB05E9E30350FDBAEA4BD342292111F3B300135624ABBBB808CEFDDA99545FBFAE9C87ED2A84C120980F26026A2904EDA93D923E3600693B7DA0BABD8F9CF82092A8A214CCA21C4D40A4A59D4F42B82A22874B18B6A71661339152682A199955C342FFD01C7E4A61D0DB12584656F598A58F21E80CE1B8EDF52A63CC472944757C10F13E88B9E92E3583154A4A01AFF1468DA3E3432C4863B668A0D671CE506390D290CACC718C75042CC72060A5F7CCDFD91DE9B3DD6C7B02201BB03677940F724929AFF7975A2A889402F91DDC0CAC564D29D87EA34B6CB94929E09A00302C06008BF664CACE4194F7573EE9AB378AF4B180C4237DECEFD9B7A576DA543ECEAADFA4CE275E67E203F927D8154D2985B6A2306359755B3690EDFB6C3E800160D120C7D094C268E73EE8B9C063DEC090F4F10128063C4EABCFC2A8FBF2FFFA29AA040022A580C9C4C4C2C5D631EBB91ADBA1C13018502850EF90CACF3CF34CC55F6141314A2199F8947BE3923E21F5358AF449215A7D1D1F6C15F5FAA1AAC3B03174F967DD1FB9499DCFA6067997F82BD02BE4ACF0F7A1224929E03D002C564DD63655B9DBD2A7892689E9F41EA41418C5494AC1E4A6BA4023A418EA6D15E8307F176A9F95F358CF8AF53F23121F7A3E09B3DB00F2A9BF984EEFCEA267A01410A71D03A2981B434AC177635C764D1349D4142C8CCC48A5143468B10805489514C335CBF9FB298572D073499F44008D332AB46CDC43D9A414524064662F93522077839B150256DBD22B159000042905DA8D78AD694B913A967D10B88BBD06A7BAAB51A1B65A0AC9890F310D8CCCCF00443A83067617628A9824D034F1A149396AD7F380F757E2BC79EE983C5C132A0DE39A003046BDB6ACF67B7B247DA2BF13B34D13559C3F14BBCED621040B130110A0161301A08DF32E2641B020072905000C9402EA4EE9DE7F94628DB36ACA614E60E79248B58B9A94F810A37A080286BBB0651B28058088816C4D13306DD2C8557EB9A92DE5EB4913AB1A75FD4FA8C84F7FFAD3D5A2B285C1C4160229B94DD3190039CE32A1EE67B0E11129051AA1CC7DA337D8566BDBD00D081195E332DE6D83FB7B3830A10018326BB877089025243E8C43FDB52CF506D6859294F820933303206115EAA21C6DD4F91CD59D4FABA4327E158A158A0857A842CC1754E4E2E26295F88011885228F74EFA34FF7E280AD40A2A5965EBB0976C510A4D6E2C131FF68AC3727578303FD746E20324D4071F7C5031EF214A810E428701E4AC1962368C0A56271695B6D9C403E480ED85CD5833F1811443DB54405B43273E30F3BA4979464D2954D516DD0BAEEC8AF4299C1D50CBA0A44E6A229992BD0C1021408D510AB6C487B66D9B546232F4F7CD280576B160E4AB2F4AA1A1F757167B9A443A70BC656BAD151606C9FDFECC9B62C64CB13C631B890F6D76D1F2A54F85FECF9AF118CCACC1F60BAF97E5197D7FD7771D65DA4596ED4B9F606F9232759EBDE4A76D6543DA40228131874AC3C4C20362205B6CCF96580ECB35E729F4C2282DE4F4609402AE97510A972E5DAA1615C37E1A941C1AEC9DF4D9D19BA474002B791107792ADDA91D5208406237525D677D54B566A6048DEA0136ED071D336C510AF0F8C0BEB35807E6684C122842FA141E00D9C01303BAF861CD5046940224920E7719A5CE675355D7C4706FD2137A1455CB2805A842961B828A046F85DF8D2DCF18CB15C5491F1F80E2BF533634F75C94C263802926662A254AC1D6893404A2D458ABD8BD4C9B8AD5C91E4D170DE64D530AE2663B2905F537223CAFB265E9E3028FB5D4763932A804489BAE7097980EA53A4A01DC05C0E963DECD9B3B4A57D258B0DBAE434729D06E8C8D52B0797EF5621CF86DAA41B937D227BE3152B2A46A62A7D83E0B108152A0FBCDAC5DDE9010A5600BF61F89ACB1B46FF5BD4F5B494729B02C1080C6FCC798ED9766E51ADB953E1A24454A9B11259ACC8C9B916CAA181061D2A12E60C8B3A92237985D21C3B1A01D67F78758A31D929AFB9C186C93025B09C023A5D074133D5DFA1411EA2BA1CD88053C45610D5D2E526F45526752AC584C2ED966F05200115B93B54956EEE68801B1E6AC300FA0142E5FBE5CA949000C29F00D22466B14C5481FBFFA4A953E8ED065FD5ED9444A054165B65523A5002025D4F91CFE1613295C12514BB451D59F4F02DBD46CCAA2C0676188E3C035814A78FAE9A72BCF0F6A12128CC17CF1B5E7DB953E45E1CDBCD9011EC77BCDD49FED02E7E7E76718C989C9810AD05D1F52A214E4373645BAAD43BA615547AA9FD205AC86A12FA5F91BEAE0977BA881208B654324EF4CAC5A839AC422C34152149402D2B7705E8852009FE5817F19237DB4D11C237D7C00728127F4DE483695ACB6754D29F8BA91DA6E685DA8E2A148B92979BE29209D05A074AA8FCDA84DB5C58201701689A42BECEADD753ECA229A827D88387D594C1B320F495B595880EFBEFB6E95FC8085E9A3146EDDBA75A62C1E1E3A7AECE4ED478F36FA2B2B0F7BE5C02E7D42EAAB89F409006B9888D18A4D054A21D5C0ADBDA535397AA2E2D665C5CEC1FED29B8D74B3F19C8FBAD1A2194EE1F2DA9AA847DBF500E8FAC035C083458A959C53090923007B8CF990C71991D465CCDFD15D4A457A396FC98F7EF497CFFFF4A73F79FEE8D163833367CEBC73F19967DE7EEACC531F9C3871FAEAC2C2F17B2BAB6B33ABAB6B63933E2678B4AA2B9599973AD78D2BE929A9B42192681D37456C8BDEE2E222B88369DD995303894631DFD7E06ACA7A37790F00E239507AE11AF808DB4F54589FBDFDDE7FFF7D11E00FFB22B9D6453D1E18DDEBDB1A5B8D92AE96723CF3377FF3D7CFE0B5BA7BC6FAB973E7DFB870E1C2BB4B4B4F7D70FCF8A9EB870E1D5979B0B23AFBE8D1E33246FA982071E6107AF7944D4276049E2A043699F85559857D998075B9F039D85F040857291EA13AA9426D524AEF6E27E7298DB8BDC29D029E532D592AF54D5E8DD19CB260AA66E5B0913EF8E08335F96C29602B0564D36DD7E8AA132EFA1F7EF8E1733FFBD94F9FC37582BE9173583D7FFEE9D765BEDF5B5C5CFAE8D8B153D766660EAEDFBFFF6066BD067930057E50F8D98B27EF950DB7FEE229054CBC88FF3501472913BF21ABF88048A5526EC6346E0889430D20F3B0750D18659FAF2D90517AE2FCD835CC041924171ECF9E3D5BCA4D9D85D3F2E69B6F3E16037DB34E02E9F1BB6DF5ABD17303AF5B8EB977DE79E7F32FBD547C1ED214DEE6C99327972F5CB8F83B916AEF9F3EBD78458076A328A7CA070F56FB9B1B9B31E4FB76F05889F916D55FDD0008F6C49A3CEFC1ABB97CF9F20C6E826EDBA6ED2200856A0437444FACB69D7C1109BE3DC27144856A6FD0B4DB74CD4B1D9101AAE5C5175F9CC6233CBF575E7905F6D740D4D9AA7CEEE0B8B93580BEEE3AB1F0FAEBAF7F495EFA1240BFD5D0F2F4B58B172FBE79F6ECB9F7E5F995A3474FDE79BCBE094760AA9ACFD0AE8EC7736EACFE6415CE88985F81E7236277FD2B5FF9CA4118AF5CBD944CA60472ADCE9830145F8AD6B8C28B7D9485F99E061E0D7B766D4541D9679F7D16AF95BFF9CD6F665E7EF9E587F5A674AF682721346AE0DED421398BAFBCF2F2624DE9006883A5A533EF5DBAF4CCDB629F7D28F6D9D585A3C7EF3D5C7B0447A0798C8B4752BD6BDCCCBEACB6A3687E282EF1C702988D5FFDEA57159F8349AA6F76597FF7B81C0764327BDA0016A0DD92EF3D90EF2CC8851E51376A20EFAFCA771E59F61ECC1B5926AAB73206403AD9A09698D372AE070CE0ACC9F1482B049CBB1C1BF5351E90EFCECAE394A625641E1EC9EB3721D1575656E66EDEBC7954DE93B77A8F8A3D1A2063AF5EBD5ACA71411C810B7404C43B5F1749F6964834B1CFCE88C779F2DADCC1230F459AC111180D5422BA2FA67EE9DBDFFEF6C11FFFF8C77FF5DA6BAF9D835EFFD4A73E357C0F132A40FA77DFFFFEF7BF2393F9F7C433FC96FCFF0F647291EAFB864CF65BF547AFCA71BFD8DB01701D9149FEB280E145386372CE6F8B01FEB23C024C37EA73C473006AED85175EF827AFBEFAEA1FC16B13F53794AAB851B2087FF38B5FFCE26BB5BA2C454294F58D7D561E5E54C7E7E538BC57174D47401C8ECBE2085CE63EAE00EDA13802E2715E7C57ECE58F8E1E3B79636666EE7162D8F356999894F1B5AF7DED4F05F5FF66797979915D11D033982E3640256AF37FFEE0073FF80FF2DF13723C2507F67966EB9B03C3044BE16ED18D019AFF081CBDFAD0E778A7D82A048B6D986764E2FFB1D84D97C057C17E419F64DA59F010C598FFF87BDFFBDE197CC717F252DFA44F1940C371B6E8CAA4887AC735C9BDBDD79B9A5A7FEDD5578F8D05545FFDEA57FFF4673FFBD9BF9749DDC61023561B2122001640253AFDA39FFFFCE7FFB6BE49BD62F4A4C9DD18CE89107BF28480E85F898BBF6D6261147FE6339FA980851B80D43691CA5FFCC94F7EF22A4CD310B82C603B5983EB0B0A68CF1546C5C3AE8FE893159537FDFEFBEFFF6B1350186FBDF55615BD004F084326172BFF40C2CD2BBB001ED710B5F047A2EA77AC546C1C8B8B5FD54CAFAFBB27F3F32D79FA1FE55886EA847D56832B989D2A9F81BAFD8BFA20D030A99FB3A8CF23D9834A5CD72F5FBB76ED69D7FBBFFBDDEF8A2F7EF18B6C66BD09EB74333ECDB7D395FD0528A75DEF2152013156F51C416D40FDBD20C74D39AEE3E51A5C48B5D9880197013480F257F5A1D5E72505324AB6F35980AABE80F21BDFF8C669B0C89E89AF9247E1299E3B77EEDAE604B52C951B3B1D5870C5DB6FBF8DCFAD8BB10E6F1AEEFC0234670DAAEB35C8EEC974AED636DB60D09019ADBFF7667D7C47DDAB1386EAC4F17BBBAD3EFB0130F5EACF1C7AE59557DE3875EAD4FD2B57AECCBBBE833DB27EBF0F03F7AF8A091A624FDDF419D1F00401ACE79F7FFE372FBFFCF2CDDA969CAA1D9423B5C3B25C830B2AEE1E9C3099E2F554BB2B0036FCED1FD487569FCF5BD4E7C2AE81CA00D33C579CACC4D332697F2BA0FA92CB5B10BBEA81ACD41FBDFEFAEBBF299A64227674C894FC5ABCDCCF895AB786B02066ECB9E79EFBEBF7DE7BEFBF2BFBB0571F53B57D09701DAFC105607D5C3F7F507362AD81CBA23EFF6F7DE87B7CD1E27D3EDDCA7C19CC7559AFB243706E6AF17DBA06D6BC18AC9F9555FBC7D7AF5F3F6AFED0F9F3E76F88D7F7BF65E2D76A4E8713D77560C53809E5E5CB97FFC51B6FBCF15953AB8BD7F75840F543B1ADDEAFD5DAFDFABAD78A9DDBB49BF567566A4A857374A7FE1EBF33509A6EB08B8BE7980568BF5763A231A8A62D603A544B2DACB8F3F3F3F3970E1F3EFC0FEEDEBD7B666565057B5F0301DB7BCBCBCB2FC9FF97D504C29678AF882F21328EF79A7ED77CBD2F7373796969E92BB2682E89D7378FED190114C0F0D7376EDC78535D3749D32B9E05453275B506D32D25B91E2B9E6CBD3E364DB029DB6ADC4043FCF7670DA07DA1C6891F54B594820D70B216D50453CF10E978FDC8E9D3A7CF09C09E153BEA8648AEABF52A7B543F62A21E14EEC47EDBFFCBC49B5D46FEEE28DFD5CFB1497C5C16D1D1C5C5C5CF891DF5481C938FC57979545F378F7BB551BE61F9ED29A512A78A27555FF0BD87B5047BA88EB5FA51034C036E2FC166539F175C926A4E81C937E9E6FBE6BE77533EAA0DC9320E29573AAE7D603C1F14967D4D65A792B99FA98F69A5094AA52637D5F38D1A788FEBE3A15AC4EB96634FC026F881F47AD166538D5A33A94BB65017CEC704D654E09836C0D737A45AA940B3AE80C68340DBF080AD1827D8CAFDDA51740F3C489B5AB549420DB09EF19CD2AEEF005B4F81655D81ECB152995A126E2800166D01EC135075177C2E10960EB0F5D4FF4BCBC141306D58ECB3A1CA1D055C9F806A32815778C03630D46069011B40D538B3A3FFC92DCA6F2829125BA4D665EFF51C601B698BED1349F589D42B1D806D3CFE3FB643A658AB0180DA0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (92,1,'Rackmountable_1U_server_2D_(128)',decode('89504E470D0A1A0A0000000D4948445200000080000000090806000000FA8124DB0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000006C04944415458C3CD58694C5C5514FEDE9B81616768D897CA5AD3524A299A365245F96153B03558DAD0A47F34468DA63FD47F36D188DB1F97A45163A3266AFAA74D3556B1A5825A5A2950B0B420CC0CCB300374A1ECCB94599819CFB9CC2B03CC4C5B95A4875C786FDEB9F79EF79DEF7CF70C12804A1A3B6968E0B1C4C4C47571717105E1E1E1282C2C44424282F2086EB71BDE762FF7FF66AE2CCB080E0EC69D6CB5E3587EAD56ABC560E318E7E6E6EC2E97CB8DFBC8C6C7C7A5D6D65695C56251198DC66A8ACF16121282D0D05068349A5B747F4A22BF411AA9616161282929C1C8C8089A9B9BC502EC9892B61659EB37A0DFA0436A720ADCFCE35EF99E92242DFF60E9ADF76F093E7D25AFB516D69330383484B5D939484F4BA1A04360E8ED4341DE464C4D4FC3681E80FECA65646566C2E576F90421505CCBAFEE1417275AB9BB7EE30692D333C475C186F568BBA2C79CD586A9891181D16A992CC988D2C6DE956F8FE16F5CBF6ABE7DBF75EB56A4A5A541AFD7232828084EA7D3CC1416D1969696629A405592CB0E4C0A9587E5E48CE4E424E8743A646565617E7EDEEFC63C97D825E6F84B8AE2333333036625AFC77F1D0E07626363B166CD1AB1FFAF75BF89390971F188204562024445462C56A4CB893C22446D6D2D727373FDEEC9C64AC2FBF0BE3EC1A5047355730C54D1A2006C36DBEDF8525252445C2A950A3F9F3AED730D9BD582A7CA4A119F100F83C1406BCD63E3C65C8C8E8EE1E2C58BD8B1E349B89C2E9C3A5D03ABD57ACF04B05866111115837559A9989C9CC633FA46A4D967F059E266D455BE01476804361DFF102ABB8DDE7329168C0DA901B66DDB86B6B636FE48C3D97D8EC6DBF4F28F90839382ECA4046D62F9E711E421C03C813244D548D281F8F878D4D4D4F80D72F7EEDD181C1C447B7BBBCFE70CEC9E3D7B0400D5D5D5A8A8A8C08913270409676767854F7F7FBF48A82C2F54DCE5CE4E04AB83C475A7BE5B24868D0934363686E8E8689118CF8BF94CFEBE7DFB505F5F2F62F3655C1DC5C5C5E8EDED1540E5E5E5E1E8D1A3282F2F17F7A3A3A3E2FDA3A2A220F9AB5022514E4E36CACACA70ECD871CC52C2F65756A2A1A101376FDE44E9CE9D82FCDD3DBD5489867B570059254A363E2E96486A13C9CFB64E4243C99E4D48873D3C0A6E49A59C574BE652E51B63626252687F0D157BFBD4D454959A2ABE8E12FE9E472A79869B13CFD5C723387801743505CD6073857015646767FB0D9293C3D5C2FE817C7C81C7E4628B8C8CF4C8EF02D40F6FCE879680FFA5EE77146ECA83CD6EC7D90B8D90680EEFC3559D9ACA5531E9774FAEEA9C9C1C91447FCAE5CB946220F03CC7C0D203C4BB3F9048A22F5C68464F4F1F8C26131C14E7CC8C0513E313F49911DF7CFB9DF0EBE935222323035A6D344CA601525A15D2525388CCE374BC0C2377C383423D7444F6C52377E59EFD9A683828E1362246D4B55E3842C221B99D2BF2CFC5C139A6B55C7C4D790C1D1E1EFE5E4D1FB29E6AF92181A826B9CBE7C42B2408F680C2E030B85C690C0283E82B890AD05C25818C7D585ABD8D93C855C2C6BD082B80E451803F9B5BC4BE0CC699B3F54B8E93898909216FCBD7BB9B3DBD8DA5DFD7D1C6D5CF839586892D14C0A704B805218B8B1FC5DEBD15F8F2ABAF619DB3E2E0C1574831CF40A624BFFEDAAB628FAA773F40C9138FE16952CB2F8E1C11C97DE9C517F0E3C993D483B5E2AD370F89FDAADE791F26F3E062F2976DDCB4361511B203D3560D924D557005B9203B6385BF772FC2D8510E331532D08821ECB258DFEB68AC63071E0ADB1512C89E23807B017D5797B8DEB56B97782EF946011E8605049BE72EF415C968696911DF34B8395112C0B130E88A026CA1AA67D9ABFDA31E4F6C2F8283FCEA4901645AE7DCB973FCCD45CCB9D39E1C5B201F2698F26EDC0CA7A7A78BB894DEA2AF8F9AD08202BF73ED362BCE9F6F107E7D4693E8ABF8DC9E9C9AC2A5D64B387CF853C82A191DED1D2245BA2E1DF50A3DE27D2689C863A4147F5D6AC3471F7F220AC2D0DD2388A9D8FCBC439060607008965B73785EDB8FECE0291CBAF1101A9FED863DDA862D2F6F87EA969AE2712D2180A25E8C0115726C7E7E7E0DA3FB038DF203070E889766D6F159CFC967A6F312724818AE0D98A863500B1FAD561BB00954360BE4C341288D49201FB3D98CCCF5B9D404C6D18845874E8FD4A42451108357AFC1A8EF42021D1B4C3856276FB07CADC7F1FF970656F1319ACC487E207DC5B700578079FF8B51FC8BC7506033E8AE60F8FAD0EDBEABA8A8481CB1AC624D4D4DAC888D4C00FE2EB39FCEA30C4A78281160942EF31393921ED750E3C413948407026E352D50C5B2AC3B571B741FE6AD70F7EBFF01487DA48E8E0ED96EB7AB48C53E2785B290E2C610195CF46C9814F6A77F00C815448DD67E5BE80000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (93,1,'Rackmountable_1U_server_2D_(64)',decode('89504E470D0A1A0A0000000D49484452000000400000000408060000003EA039A40000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000025449444154384F95534D6F1251143D6FBE80360C018C50951602944AAA6CD898E80FE8C29D3FC03FE1CA7FD11F611ADDE9DAAE6C9A488D5D48621735501B40488076F89861609EF7BEB4845DF5246FF1E6DE7BEEB9E7DD11003EE572B9279EE7598BC522FDECF98B4000220802F0F957E8BA8E70380C29842C140A98CD3C3A3E1ABFCE850C24E45D042B304D13966529AE470F3664AF3B68B55A97EB6225E72EBE68D49E8542A120A2EB0B5F372571A1DFED5827B5E38410A295C964B4C964726A50AEBBBBBB9B393C3C1CADADAD8976E78F3E9B8EB1532A61341A2D0993C9245CD7C5783C56774DD3502E977171710122443C1E0735C48F9F67F0BC19868E43F91E7E379BC866B3F07D7FC9954AA5301C0E29CF53771E9604A97E0ED5251209D5EFE86B8D4C8DA079D9D92CE436517EBC037F3E47AFD743A9B48D83830F18919E5B63A4944A0B633074502A66F1E6CB7BBC7EF916ED7B19ACD7F6556D341A4DD2A3AFD7EBF56F6C8047851A89B059583812C6C4B952C39221CB2D60F2582C06DA92E520FC8D3127517C780BD818D773E14E5D15EFF7FBC8E7F32AB60ADBB6D5B00C16CD71EEC5FCCCB5DA87A171FC66406ECB5B55A954B0914EA978BBD3A147DBC63B32858D1722503C474FB760C8CF884D04E6377AA98FCD3A69E639DBB5BFB7B7F78A847A34E056E27E2AB8BE1A0AD330D500B74372018B5C7D495E7936EA168661C00C8564B1588473B33D67F5BAB0C9B8D53ACEE387F2FDF9F25B2412C1743A5DDE792B34C3900F37D2EA17709C6B03FF01D2B6D0345D86348999A6D12F2031E8F6ADD3EF2771CB32CFABD56AB2D1687CFC0B5F0F293615097B020000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (94,1,'Rackmountable_1U_server_2D_(96)',decode('89504E470D0A1A0A0000000D4948445200000060000000070806000000F76948DA0000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000004E549444154484BC5565D4C936714C644A2864C5408411D08D4814E5A5A5AE97F29B4454A81524AE97FCB06969F82AD080C04E36FBC59A24061062F6676E5F5AE8C5BB2442FC8747049A2C9EEF677B16C174B6662049F9DF33A3B6DBBCC0BB75D3C79FB9DEFEB7BCEF73CCF39DF9B97979777857077FBF6ED5FEEDAB5EBABCAAAAA67B5B5D2E723F1D1CD5389E466241ADD7A8970E425226984C27F8350388DE0AB0886046283439B1F4DCF642112C995EF0D72FE433E7E86F79F393BBB457892488CFFF05F21161BFA89387D525252F2FD8E1D3BBED8B76FDFDDB2B2B23BE5E5E521E23EEF97C2C242B8DD6EA8542AD0350A0A0A502B5740A5D1A2BFBF1F5D5D5DE8E9E981C7E37963F4F6F666C1EBF562626242C0683623DC3F80F9C5457882212CA452B0BBDCD0EB0D0804026F251F63646444E4B3B6B4E084D30567AF17C3F15330353B70F49814164B0BB45A033404FE2DABAB87D57682AEF590D629DE00F590C955B0D99D6875387152AB45506F42BD6F18F2D098C85351592D786528954AF87C3E343434402E97FFCC025CADACAC447B7BFBF39D3B77FE9A9F9F8FD2D2522854C7A12401E821381C0E7476760A815E85D168C4CCCC4C569C118D4671EEDC39D8ED760C0E0E221C0E0B3199940B172EC06CB10842DCFEA0585D3EBF588B8B8BB916C462B19CFB8E8F8FC366B365C539C6FBB610D15C13AF9C97C59C9A9A82A3A3E335018C4D6DB0586D585B5BC3CACA4D2C90111E3D7A4482C5B1B1B181546A090D6ADDEBD064422F50A7388E70A49FDEB10FDF480A70FBD8BB284ADDC13B9FAE0A010E55BC971680CCFE9BCBE5DAE2FA2A2A2A56580079555515BFF433FAFDB8A8A808D5D5D550EBF4D0359A2191480489EC24766526CE9F3F2F9C9D196702E7E6E660B55A31303020546782262727C5DA442F1FF8E0435C9F9F271102482D2DC3D1DD83BD7BF7A2B5B51567CE9CC9992F914888FD32E35C03EF6B3018C4AAD168C4CA62701DD902D821AF57D13317118F8FE1646C08972E5F81B9B985D6CB3839380C5F208444721C8D662B4E8F4FC0E3F523148E62EC54125A7D23343A13A1F135016E490FE16AFD31549E5D46D9C55B4280F28AC3690168BA7CE7743A9FB6B5B5E1C081032D2CC01C0BC081DDBB77B32AA24D8C4D4DD0375BB07FFF7EF132C96452909889D9D959442291AC3893C41D40C9D0D7D797EE809744596C2F464297F785F37DD13EB1B2016A6A6A8400B9F28D8D8D61747434E73D36039B657A7A5A08CF1D100C064507B45307BF2A80C16CA71A5A71EFDE7DDCB8B1826BD7E7A91BD6111F4DE0C18387D411298A2D607D7D5D10CE9D323FBF88A5A54FB0BABA8A4E97073A6333C182BAFA86B40037DD35B8E454A0FA631924CBEF0B01CA0EFD25C09E3D7BC4346110EF4B2CC04376B9DFEF874EA783542A8599E6B38D5C68A259585B5B0B93C9241CCDA321134C08CFE0CC388F1A766BAEFFB0386612D7130A63915ADD49A27007B4BB3DA83972040A85420840AD9A05AE63686828E73D269E09CF8C87422138286FE608929173D51A23540D7A288FEB68EE9BA82BD4506B39A6CB8899C435432D629A34546A039A6D1DF49D69C769871A03760314711A4D49ED9F024804F9DBB66D834C261363B1BBBB9BBF03DFB20047E9EBFC1939E66B22FF732AF429B5F4F3E19191AD89C9A9CD009D20FE0D50376CE53A05F169A5D7EB7BEBF0F9FDFFDB29687878F447A552F5BB4472F8F1C183076F5B2C96FB64F6DB647CFD1F1901158D207B2BD20000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (95,1,'Rackmountable_1U_server_3D_(128)',decode('89504E470D0A1A0A0000000D49484452000000800000001208060000009390D6830000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000007CE4944415468DEED585D5094E7157E76D91F7E965F0105F989428014886D0C34281132D46933466F6CE84C653A6DAE33497AD1746C73D3192F329DCEA417F6B2D7B18DD56A07419240304204A1541058587E963F4145041616766177FB9C97FD364A58627E50603CCCE1DB6FBFF77BDFF39EF39CE79C77753E9F0F4F5A743A5D222FAF518F510F53C3B1FDE41EB59A5A49BD4CBF4F6D06A3744F0A0066B339CFEBF51EF507BD90AA7FD2CE788CBEF050BFE07A950683A1D2E572756C7B0030CB8DD1D1D187B89E045C02BF678B04EB71D83622CC401F553A1C8E5ABEEFDC1600484F4F8F25BA5FF567F9CFA8D1DB20581B2D8BD43A6187909090CAF1F171FB9602402645B29C2A595E4C356CE3603D0EDBBA3476B0DBED0D5C677953018086E97373730F08ADFBE93D67B377635B15487C36ADD7EB6B04104B4B4B55369BEDEE1301405E5E9E252C2CECA70CBE04FD08BF8ADFEA8EDF8240F252AF0B3308205A5B5BDB7CDFC2A0470640494949AA74ED5C50B2FC15AAE969166FAABD8C532F092078B2F8B8AEAE6EEE3B018013E90E1F3EBC9F94A375ED3F7C5ABBB70C98DCD42B5AEF505353630B0A006A12F5656AA8F6E5BE7DFB5E4D4B4BFB05695EB767EF5E1004782AEB6411FF666767361D98C49E919111CCCDCDB99A9B9B4FBADD6E074F16301A8DE0D5E5F178AA0400F223449EBC909393230FD0D9D9A926908139B9B9C87D7E1F066D36DE1BBE27877D833391CB858CEC15BB04886C7E10111EAEAE6EAAB5A3039648CB63B7CBA7D323253D7DE5E4C3ABB57790362DC3ED5A846F83C166329B1F696C77573B7AAD9D817B36EB888888C0BD7BF7101919091ED1DB24A271F290740F663C9C4EA70280385B06BB5C6EDC9F99C5BC731E25C5C5E8EDEDC58E1D3B3614B9C9C9C9888A8A529F6B3EF954AD5F52F412C24243515DF7195EDAFF02E668E7E7D79AE1595EC2C1A2223434342025256543EDCAC8C8504921F29F4B55CA2E91E5E565CCCC38E0722F617CC486FCFC7C242426A0BFBF1F1E8F175959CFD2E953E8EBEB43C18BFBE1F17AD1D2D20AF654DF18822E026C57F25EA424EF60662FA070AC07F14B0BA88AD983F6E2E3F0984291DE78017AFA656666E6A177131313111313A3F6D1D3D30393C9942400F80BF537B1B1B1F94486AFBEBE5E8E1689127C51A36125EB1DDCACD56AC5C2C202B2B3B3515D5D1DD4C863C78E29EA696B6B5BF3B900EDF8F1E3585C5C446565258E1C3982CB972FA3ACAC0C131313B873E78E7A5F10ABD7AF38E5CAB52684F83F7F5CFF39BCBE15E78D8E8DA9774867EABEA5A565CD35B95994979783FB5373AF25A9A9A9D2EC62606000E3E3E3282C2CC4F9F3E7955DF7EFDF4707D926333353813358A88C26338E1E7D0D151515387DFA6F2AA1DE7DF777B870E122AAAAAA71EAD42965EBC93FBC87EE6EEB3A71D7AD090B018D507B7A5A0A8686C770687614998BD3688C4CC6AD17CAE08E88426AD3250500AC2A49F4CD6C51519165E7CE9D7ADAD5C758FEC3C0C93E60A3504E95C6CF4D34778587870700603219FD1B33B2CECD2A66888B8B53E52298B0D6A86C14B00447B22B50A74299D942E9EC5E958345E6E7E703942772A0603F62A3A371E9935A941D2A56E36BAF368ACDCA2E718C0490F52E783921E004BCB2AF3583E7CF6E994BAB95B217613C51B159BE0F1E351FEDD1E33302B4B3B31B2304A773DE899327FF0807EDB2F6D8F0FEFB7F56A0EEEF1F80C512A9FC2BEC2AEF8533318445C4CEE8A84882DCC7BD3956E1E2E17E6C416F8093EAA53D21EE05FAD0A8EC58F1ED97E3246E04DE10F7B6877BB0F07EC96EB7BFA715F52871241F9A29A55AF045CDC695D39E4C2C8E96DA2193C95582B09608C2254B24B0C1440BF8EAA6450BE0E8E8A80299D82572ADB50D6666B138E5D32B57BFDC981F00B2A6ACB7DE9A124C827BDD311A93AC7E4FF4EEDDBB0A088A01746B375D12C883078A58527F82B367CFA9605654FC1257AF36A83DBFF1C6AF57E69A9CC22BA52FA3B4B41467CEFC13FA103DCA5FFF396A6BEB70BDF5BF78E7AD373145D6F9E0AFA7C972B70290D3AD5AF8EFE9CFC3ACF76062291C79556FC317E283C11DA146FB1EE84624668C6DBE7C161053E33897D9C07FF2CB5296D6E93F187C51BD3F4812AC2E6BB77A59285BEED77296265AD3B65E872A2A4C21D49A949484A1A1A1006B48F689F3B4FD3EF76C2612E2E351DFF8058A0A5E64EDF7A09174AFE31A42EBA435E59CAF5B539E7FDD188BC5A24075E3C60DECE529C8C6065882A60157EB4FBEFAAE3C77A3BDE326262727D13F308859C71C3EFCF00CA6598FADD65E9C3BF76F15EC81C141C4C6C6B0D44CA0C7D68765CEEB612F31C95EE1E6CD2E7CF4D1BF54991B1E1E0EB0A5D66F8853266EDFC602FDF3FBC49BC836CFE0B7633FC6D93FB56129C68D825F9522C46978E854E20F7A2096DC632213ECBAB8F7A29CF34F9C38A11C281DA2649F3841362A19A70F8BC0AD613BC2D97DCA1871B604E7AB4D0C020B4800D72B0166FF5C324F30914C95462A35330BA96C0C77B1B16AB9D18E8C67D214C2FB06ED18E8EE627393A0D68B2740B4D2F16DD7148610603FE8F4D5228961EBEBC7AEB49553C08F7EF01C5ADBBA147DBBDD8B1B7BE424C3188D8FF61B9CB5EB7FB8333116E8BB58FF55EC76EFDE8DA6A626894FB300208BFA3A6BEF33EC1023A6A6A66E13F50574E641699CA2D9350AED09F2D773CA461EBF048CC1C4E170ACCB441B25E21B018B965D6CAA7CDFCFEF00BAEF3C4093E9E969B26BBB622F9E086A58C2BAC9B40904F032E37C8B00B8F87F4D75DC088A013CD70000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (96,1,'Rackmountable_1U_server_3D_(64)',decode('89504E470D0A1A0A0000000D4948445200000040000000090806000000823E2A7A0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000003244944415448C7CD554B4F1351183DD34EA7B4D0078F022DA558021A62680D02296A88BA320DF80BDCFB335C197F040BFF8171832F5CB87041088495019306D4500985BEA6A5CF99D673871641340444C3979CDC4EEFBDE77EE77CDFDC91EAF53ACE1B92245DE730DB408430E1FFC416314FBC22DE5343E1DC1ACE6200055B3A3B3BA78560EE9BE5F36073EE6F8CFC35CEC855263E70CFBC402693D9B8500342A1507BA55289EABA2E043FE05FAE7F59DA0B30725D748730C3ED767F5C5E5EAE9ED9804824324CB142F0433EDEE61AF912093CCB392AF14E986132995E2F2E2EEE9C3080E823828140A03712997ADAD1D1D153ABD55C97A5BA9249423E97BB08E3EA34E14B369B8B2D2CBC7D62369B35625318101F1F1FF76D6F6F2391486062EA1614D90C5B4B0BCCB2DCCCFC603879271CCECB160BEC763B7653294C8E4F4065D2C57219B1F535288A62E054AEC69C62B5A285E7279249040782886F25A0AA49B89C4EC38842A100160AF1F8F7DF1B432A8BD2828E7637FA337B58F75C41D5ACA0B0F109AB2B8BE8EDEDC5C8C80876777737C5ADFDC2EBF5D6767676B21E8FC720CCA4D26877BBA1663207C86661B7D9209B4CC8F1B740219F4778741436262BCC0AF8FDF0F6F4F06C099AAEA3AA11550DA9BD3D385A5B8F71B95D2ED434ED90AB522A616870109EAE2EC86633BA39060706A0693554AA55C3C8ABC343B87FEF2EA6A7EF606C2C8C9999289C2E07AC5685B052F0410184910225723ADBEC78FC6D09796F105FAF4D62BF5004BB1BC964324B03F572B9FC4694B89FA24D2E86304090A9E934F214E8A728B141848D06F00B608CCDA832B9E63C6F5FB452A84493B2ACFE3EABA4D774A4D8116C3DF87CBEC37DA2BA823BC775473B40242D0AA0AA6A43CCCFA25AD86142A4E092E5838E0A8742E4E933E6E35B71846F843137F71C8562D168B172A582D59B7E9A3A0FA706688D6E21974B9CC73C82E28867D168F4513A9DAEF2D60C7675F7D44595648B2C8945CD1613078B677E0D8E25254C6806DF29424680D52B164BC67F9FF90A381C6DC75AD5E0E2A837CCFB139745B1C2C77655D57C8D5FA2A3F7D6A921F29024E9D8DA348BB1B2B2C4B3E4B57038EC88C5622F7F005F788241A459A8C50000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (97,1,'Rackmountable_1U_server_3D_(96)',decode('89504E470D0A1A0A0000000D49484452000000600000000E0806000000D06619120000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000005914944415458C3DD575B4C5C55145DF7CE0B6686770706E8404379434948A04428C416488CCF5AE3F3C31F131BFDD6FAFA31A91F7EA8DF9AF8A33FC6C49886A68DA949A941AB69B55A2858825A19DEC3BC60068679BBF6051498D1A60AA5F5249BC3BDF79C7DF6596B9DBDCF28C964123BD914452961F708ED28ED30CD803BB7C5695FD34ED3FA88CDD84E2FA8EC040119191935AAAA3E4ADF02FA4159E74E40F75FECF5BA10C1BD9C0E854217393F71471240952B050505AD02FA9AD26BB761F3BB01F83FEDD14D7F67D60839E772B982BB4A404B4B8BC1EBF5DEBB06B858C96E83741BD70DD3FA494A5F341A3D3DC9765B08686C6CB4EA74BAFBD652CB03B4DCBB09F41D8CED4721231E8FF78D8C8C5CD95602BABABA6CB158ECE13595F7488ABF1B52C62EAE394532B4229E979777FEECD9B3E15B26A0B7B7B7824E8E8AD2D977F0957A972A73B7D75CA29DA39F3E93C9748664CCA71040ABA13DB67E5369EFE8783D2727C7DCD4D4248507FFBFA6201E8B22145AB9ADAB5E1F1D856B6E769429EA238BC582ACACAC6422913825083B796D7474767662767616434343728D44555D3DCC1C68B7EDC1E2C202586CB6E52E69B3156AFDC4F4342A6B6AD05057872B5707714F6B0BCE0F0C606EC289429B0DC160705BD6CBCECE01D587DF9DE3B0953A906132A2C45684E19F7F85CF3D034555914E95B7D254BD81EBE42189043213FC4BE12E1BCD9A235D248CC9891BF86D6C64BD8EA2A2A2024EA713AC194E1DDFB5391C8EC6E2E2620C0F0FC708B4CADC851C9A3858F07850909F0F9E0A0D942DF77DB4B7B7637C7C3C25A8EAEA6AC829E2FD19959595109FF9F4A3AA0AEA08FA0CC9864E0F9DAA83CBED462C1A837F7111A3D78650E670A0AAAA0A737373297EDBDADA100804B0B2B259C112DFA14387B0B4B484E6E666ED7B7979390C0603F6EDDB87109F138A0ABD5E872C8B15F36E2FAC997ABCFACA4B1CE7A0106AF1F4534F602918C08B2F1C4751910D636363DAF8CDA64F7917E389AAAEAA446E9605AF0D7F81F270001F3FF326A69B8FA07870007EAF1B7EBF67952C558D979595A91217AFB217F57C7792F6242DE6F3F9460854537676368C1CA0379A18A85B98A2726D29395152940424E4C9988D8DB7256DBCDFEF476E6EAE465E6D6DAD06DEEA5C15569EB00A6E7E9A64D455EDC714FB582CAEF9CACCCC446161610A01BC10109C224DD51B9BC4214D483B70E000A6A6A6B45E889058942DBA96ADF81702F8E1CA4FF0FABC888623DAD8B15F6EE0F2E5EF990D5C2828D803C16292BE44141EAF5723D4623153C1931B7088FDF9BFCB60864F678229E0834A62B6D692C5C5C571A69E52FA3111937724EA6E01922FF556AB55035FCC643422C1C045C1029AA8DDC87729BFDDD7C08A4422690B986C3E1C0E6BFDC4C4041698CEE418EA742ABC24E7C2371711A1FAFBBFF956F3252744C06B686848BB1EE384D96CC6F2F272DAA229732466E967666664C3D8BB77AFE617C9CD63F9E3110F3D783FAE32054A4DE8EE3E4CC17970ECD8310C301DD6D7D7A1A7E708DEFFE0431C7FFE399CEFBF0003896E65BA3CF9D6DBDA29DA9AB4866BEDF0C433901B7E1771454459BA8900C65521CF2218E2D62B043C2B04B02870C17A2D782140D41F49AEE650992035602BC8D20408016EEB375193F892822369419A3CAFAB34C95C9965B5A0E360AB4642775727CEF57F857C82B24A44FA8B9710F077DF649EA41D49892525251AD9D23C4CA372E2B00108B95FB8E63D78F9C41B8852A9E2F7F3537D9CB388A16B23DA7E64DFEBEF060787B0C25322F33EF9F433121BF8EBB4B3064CF3C45053283318118C334D059350A3AB712637640CA67B4D40E2DF6EB73F2ED435F3489FE071AD9E672B2D2DED319B2D3A7B717152542FC562279AD99C8922BB3DA5E60978E988FEAF4DE5E6F7B316A98A064A92A732B951BD4AFA6BA872F3CA7CF30F92012E5DFA4E0418F279BD5F52E82514E5A4DBED7EEF0FB8E8B41C4A41997D0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (98,1,'Rackmountable_2U_server_2D_(128)',decode('89504E470D0A1A0A0000000D49484452000000800000001108060000001504A42D0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000ADA4944415468DEED5A5B4F5BD9155EC7570C381868203104023164722109490993098D329924A44DD4A1D3AA52A4E93FE843A55EA4B6AAE6A56F55477DE85B34525BA9913A6A5F3AC94C47819090512F0C850C7702986BC0C660CCD5C6F8D2F56D9F6D8E8D8F99B69A4E2ACD16473E3E7B9FBDD75EEB5BDF5A6B1B251E8F93A2287544E420B5353737DFAAA8A8F891D3E924A3D1485FB4ECCD60305028140A47A3D1F88B269BDBED36CCCCCC98060606EEACADADF92D160B99CD66D875331008BCADF098B7F9FA2E5FE6F4970B0A0BE94C4323597372C8EFF389678A923E4A49F9205505DA7171B553D19352D975A3CE1127B3C54A79F976DD0D2E2FFA28168FEDBC134F9D234E596C92D61557521F649B0B3AB117247CA6EE682D0D0D4FD0DAFAC60B657CDFC23C8D0C3EA5582CA11FABD54AFBF6ED23BBDD4EF9F9F9E4F7FBEF9BF8F94D69FCAAAA2ACACBCBA3FEFE7EF1C25630484B3E2F390F55928962F47263233D7BF64C203EA994B8BE82D3FBB28DD5F633FB24D7E8ECFAA700C0E5572E88EF4FFED14937AF5EA1D9790F75F7F691818D7FA1A1812626264865B3FF5861D9DE45DFA143878412D1DA3B9E2401A06DB15894E873E60183D1209CC9BFB490343E5A535393F89C9A9A12CCCEB63E0600881D151717534B4B0B757575255F0055C42251B1F9E1E161FAF2B973C43442353535343D3D9D717128A8810DD2D7D7472B2B2B19C7949494506D6D2D793C1E3106C0EBE9E9A1E3C78FD3C2C28258E3C08103545050C00C9020A691F171321A8CC4344B3D7DFDB4BCB22A9E8F8F8E92ABBA9A161717E9F4E9D334CADFF51A140000638D4C0DEBD5D5D5D1F2F232316D0A197B7B7BC57E979696C8C72C585E5E2EBC47EB04DA36373B41466BCE2E7A53F44853D1E146057F8A0E592ABA741A0987A8B8A8942C569BD0553A884F9C384141766C0E59D8430C0008A2F3D2A54BC2C8393909E14D26930040D2B01C3B56575705A2C012004CA686F7E0890E8743DC676AB9B9B9E293639010047109866B648601456D6C6C50241251B79AD869F941CE474C469AF37AE8688D8B7C8B4BF4C9C020296C08C885356D369BAE5C685008E64F578C6C72EF589FE9517C0760CE9F3F4F851C0EB14EE660B5D31C45C55459FBD28EF19454A3C97B4513F6141504393956AAAEACA08DCD4D96D3CE400CD09CC7AB61A69DF730BF6250E85BAFDFA2D9E773AC531BCDCD7BE951FB435A5F4D84A258DA3E610F30251C6E6464043A0BC2422149BF30EEE4E4640A00E4D216F66C2800868162B4D4A26DE170588CB1AAE3333520F0D3275809099657020284B1589C37EAA180CA00508E94CB22FA63BA736D6D6D25584D670CE4DA2B4C69DC29E3E37DF67CAA751D49EA4D1B56F6BADFC7CC72A4FA30AD3203E2593927E1601B09102D63282AD5AF73DEE1AAAEA220EF6DC9BF4C8505EC406B9B3BE148B3068C0E96C4FEA12FBEB6018077F8FA367FF90A06B227423B06284A3080B2C3009D9D9D095AE6E7DBDBDB59150D00E98D91CF31178022C3000C097A868722046819004A810CC293790332F1433F7216280A00C82617D8662FD9D107864298823C9595952224200440690801D918A08019A6F648F58ED176793AA5B1C30E9D9B4D6601F87C6658DC47D980475DD53AECA1241D24C19671AA282FA36101184392F1B40060DD6E30EDE701E41C7EEF3103FFC2C45F7ECD9D4D18CC8901B47A8F8DF7750900296C2E0B05FA2C2A2A125E0E65EAB54DA6302CA83746F6018930382E006668682839667D7D5DA05526E2470E1F263BCB303337CFE1E0207B9A9D3C0B3ECA67AA74B05C084B980F06CCC64E487E0050BD8631D005F210C80350210CC806B09E397346A7BA888BBDFCE6CE9D2C254FC6F287FEADD1595E8B72CE6630D9540688A594AABCEF47FCF9557E6E607D738E1FEC3069E3A325E16166697C5C32D9B1D87285727D4C330F1EB6EFDA7E5C73F79C95A0C4E229CFD3EA019A999FD73C4C1D2BADEE9E9AE6B86F227B11D1DFB81A90ADEDC9473B1E07406E8529CCDEFAE7FBF7939364320F2A07D193650C0046E9D54BDA98698EB939B9B68C26325BED9F6B0560B4A455241A00B0E3D51890F93130A45D930050633B9EDE90F11F9F0695B7829B1B7498CB33786E1494A3A465B7C9EF8A7E88D41B9336570E2773927D4654EF73718870B0B7777DD24B8D67EB29C872F40E0E519099A28AD921C8AC2310FF59C9C5F76019A32151623DE3AA24E3B9C492276B1EF2DF36C852B4DF4936AB89ED65A6EAB9492A8C84A8C35947533567C9E6F790637A584D026329ACCB0C5E0B06D4CA97C20018C44657B40C605491126205E37E83155E5F5F2F4A22BD864C1C80D22B03B14E696969C2E3B8DC42BCC558540EF8445E80FC00F3787D8992CDC8090F924F113ED8E3A32ABAD7D8F39D1C12BABBBB0535EBAD8986BC02FD7A49281810210EFD1887F5B14FC885CA00B901E6807C53B3B39929783B4C6FBCD1C2B94219B9DD13621EE80B55C5A3C71D74EBE6D744DCFEF0C307E4F17AF5CB3C1DAA47684AE8D841F67C1BDD1C68A763C1257A5A7B8146AF7D874AFBFF2A0000EF8FC55319000E9D1E024DAC5058A240CD01C4E6524280E62818753BC6E024491BAFD31B0E7210C3519BEB1D9DA21E456B6D6D150AC23900EA7459C6E1B002F7D22B03AC48001009CC56782B496F5BCC0448D0E411A7DE9A68274F9E14FD7A636068D4FEB36C5C8CC1F8B6B636BA7DFBB600349241E437D09192A53AC8E74AC0E92C13655C38BC4D3852C70B28D58A8A0AF9334F94950BBE45FDA0AEE84D6FF8544C815C40CB00D0396C870B3A643054B013368301BE07DAC70631482A32FD1CC0C8F7D24B516F2321D4A33A200C1E8CCC3C5B462EEBEEF4832434C910B20C2CF952319745653432364E050CC08422260423402E59E3675B135E0CC5039C999ADE7EA4E2B0F764F9A65306A27F9EEB7103CB373D332BAA179CAF2C07020CE2759A9A9E1163E63C0B0CF88BB4BF643F8D8FB929CCCC71ECD84B1C42FCD4D5DD43AFBD7A59543A0FDB1F332385744F2B7F55794E9CD2060233F4F23B6F9261CB28883D128DEC2A0325080000AE6E1ADC6EB700C0BA0C0130BA0480360904384C7C3FCF74ADD68FC278F0063DE3824AB3350900180DF7D2F0636363C99C0420928A1E1819E5B83B214AC0A7FD034960606338DC80DC9900955EE7671B0300C81216748FFD0150B20C849C2803B33100E471711978E34633BDFFC107E4F5FAA8A5E575EAEDEDA3C9C9596ABA789199AD88196E468CBB7AF5357AEFBD7B0228DFFC460B757EFC3179B9BAB972E5B258679CF73C32EADE95AF6C70FD1F8F6ED35BA5DD74DAE6A7374B6AE88F6F8D52C98332AAFDE5298A30A0E499861ADAC57C12006A12B8993C08921E74EDDA35712A87EF12042100C09860042851860BBD06E3EDF52B22C640D988FFA8E3E199D2F8DA78277390FA932798010ED2FB6D0FE9E2F9060180D68E8FC401153C1B9BC3A670E979B24A7D7BFE1E0130619EC1C14161F0714DC2071911B274A997D7FEEDEF7E4FEFBEFB27CE55425C3945E809CB098FC4A1CD4F7EFA33C10E2B9CBB74B3A7DFBDFB0791D042A76DADEDB4CD7AC149E00F7EF8631106565656D3E4530FC65683E2FA3E35263A58C4A61B2E8D7EB7534089B08C636E846FAF3771BAC855DD2A667B85AFC7A74E9D325DBF7E5D9C16CD738906630310C050DC9243EB4CB3E15030E3F9F467D9425B417256562550CCA08AA8871BF80E632DCC3D27B3E97FFF937584E3EBFE83CE17F6D7403858D7DFDBC5B906405F5656267E6B010890BFB18DFDEC786715F517B49F33326EB95CAE7CCE7A37987A1D9C8055802EE50F375FB4FFBFFF0718181830329B2BA8FDD9E07F615BAF7268C3F70833F97DB6F5DD7F0118336FDF065B83970000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (99,1,'Rackmountable_2U_server_2D_(64)',decode('89504E470D0A1A0A0000000D4948445200000040000000090806000000823E2A7A0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000045C494441544889AD564B6F234510FEC6E3F13B7EC776486CC74908DEAC91580E1C3088135710E2C6910B97BDF03FF8139C3821AD38C18A0BEC0AA4C8EC82C812F348A2654362C7AFB1E33CFC983155E599C964C5296C49EDE9AEAEEEAAFAEAD156007C40E39D743AFDD26B775EFFF0E572D93C3F3F8790A2C8C7035C5B3B4B17CFDEF16A1A3C1EE704F8AE99CCACDF19AED3CCB56BBA2581502888D84244D1F5E1B1614C0DBC00AA6DFF98DADDDD7D108BC5469148E45BB6FBE9C6C64661381CA2DD6EE38DB7DE868F98E170085EAFD739E8F3F930994C609A26D93C83AAAAC29B4EA7B2E6793295C293FAEFA8BE59C5F0EC0C9D5E0FC7CF9E22120A89BCFB2EC330E42E2685400C91CC783C96BBFC7E3F32990C1EEF3CC1CA4A1E8DA3364E5A27503C0A6E4A9A57C3D9E9297EDBF909ABABAB28168BE876BBCFD8436D7373133B3B3B080402989151FAA08F743A858B8B0BE70236880E08084C0C0EF3188046A381B5B535E17BC851C5C35124902813DA2727C86C6D8101B629994CCAFAF2F2D2B92B97CB4900745DC7FAFABA00A6B8322EB394C5626E497836DF9E7B49369BCD88BE7F8E8EE7FBB207DC79B522C1B8FFF537E8F7BAD7FCE9F7FB0603F025A17EF7F0F0F032954A05F8F080906272476D341A5156841D0038826C78ABD592F5DEDE9E38E1A1F353CAD6090D4555D0E97424B22C3BB3D29DD71C711B00E6F3382343392BF6F7F7C9A12CDCF14EC516B09C4E5825A7581F4564D8F1B05F8341C1C8256396F3F3D3C3BE8EF1648C30959361CEABA8D96CF6E89320B0BF60006A344C4DD39AC160B0C80EA417B3386A34AFEA9B3E1D8A8C83BC65DAA39F7F9917BF18A2A0D9EE50DC15D4FFFC4B9419868995D5125A9DAE2B7D15F406A757CE5993DAA3C7CE7C303CC309DFA55E95E0D17147C6FF21D39803403D6A40BEC429C075AF1501CA5CB5480048030B06FD585E5ABA96B6D43024DDEDA831150A05290B8EAE5D12350265EB954DAA7F5DE427C301E2B19893394CD480A439DA3C5552382B3CCE2C2EC525D2FFC376CD3993498671BB725BF47709D05BB7CAB877EF2B0C0683FF74565135948A797CFAEB7D7CF2D167F01C5250F6FF903DEA4145F693F53200EF3293D39B0150C99176B381FCF23212898493B6BCCF19F07C2D73FD734A572A154961E705A0733CE7FDCCE2A29C7703C0BA6C30598E01E6353BC40D4A1AA4AB06FC24CFAF82EA51496E043F81545A5F432C1AA3C7C3448F002FD1B9EF1F3CA4949F4A09FA033E7C972B20D07E08CFE908BA55021C2CF6856C7A9F018830831B213BEB2563B80C7AD4C139127694B80744A351695236B1C17C113B50AFD7118FC71D00B804BC94C2175654E539B4C064E758A7FBAE4502899B2E95A2F493E77BC080CAA6D3D5498640EAF7D1A62CE012E317634401504997467363A6CCFB0F75E29E3EC438A1C1EBDBA5128C90DE3900E57259F4932E8375BC57AD563F2747556A4C0B8552C9981082D3C9E4466F4E301432C3144D9BDAAD96429EDFE8AE48346AA612F117F63FA0D93CF6D7B6B793F4C2FD9DCFE7670707071FFF0B03F81B516ED0EAC10000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (100,1,'Rackmountable_2U_server_2D_(96)',decode('89504E470D0A1A0A0000000D49484452000000600000000D080600000056F26BBC0000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000007AD4944415458C3DD58DD4F9BE715FFBDFE026C838D6DB03160189040E8C2BA10604BB44AC95D7A9B49BB9AB6FD0F93AAF66237BBE85D276D95A66D379DB6BFA09BBA2A8502216BEA8A90002906433E20293136C6181B9B4F7BE7F7D8AF8B3FA276D294497DA447F6FBBC8FCF39CFEF9CDF39E7B106A057E635999A4CDCB871E33DA7CB650D7406F05D1C9A9CD260301CA7D399C4ABD299CB9D6A5F0483F69D9DF8F6E3C78F6F59AD56C8CC9F9E9E7E44D08332474D26138C46230E0F0F61329B317AF527FC25ECD6866F109FAFF1ED9B47267B08B7B7159E6617A2F138BA3B3BB0FAF80992DB5134363615C07A99EC7CF5D7B2BD3536EF26F7E0F6B5C12467ECE9ECC4FC62F895393DB2B981F0F2A2FAEEF7FB515F5F8FBABA3AB133FFA549D6029A84C5CD9B37B1BABA8AB9B93958C40199FD344E8E0ED1D71DC0DADA1A9A9A9A201E2B13DCD0D0404F222E00568E9696169C9C9C28878A22B58FCFADADAD6A4E4C4DC3214077053A90125D2D6EB772403C1A85D7E35146EEECEC54C9F5C8BB542AA5E442A7AD0CB3D84CB951F9BDD3E94432995432686320104028B48C4CAE3C44B6B69E43339AFF2BF6943D573E55BCCF9F9E080E7E64B399D25A474707868686100C06898B830EC872F1E8E8A8B4C962B140CB1784BE78F1421D8887C96432650AE8C5B6B636ECEEEED6046A6F6F4FC9DADEDEC6F9F3E761B7DB914814982F690074BCB5BE0146F9DE28EFF8BC537C4F300962E5708BA3D4BE0AE790BDDDDDDD2A58464747313E3E8E9191111C1C1C089173C2836A7EBA3C6EB477F71671D38A00577E42E9B358CCF08A4D16B3499C7F84CDC8965AD7DFAB33C9E7C8A5D715565F096E13B76E2902E6CE042EF732809A9B9B79862C1DB02E9EE812230DE170581D84C0D22AB3286544110C52A7D6686C6C54D15D398E8F8F8BE920AF00E03365E9CA35013D268E999D5F50E9E1CEE72A22E41006C5A8BEBEBE9A72C922060481ADF58E834CA52C3A89FA5C2E9702395F9E9BD0D6EAC5A5A18B2F01BEFCB3CE5207B7CB09A66AEAF149FAD48A51AF7FD276B7DB059BD8CD337B5CCDD88EA758034A3A19203D3D3D949195005B348951D704DCB4006F4DA7D32B42D901462DBDA9194CD88A7D05AFD7AB28CEF5724A6A2A922BD7F50827D0CF9E3D53914F26E9239BCD2AF91E317668F002EECECEE1EAC8658CDF9E81CD6EC393274F541417F364954EEAABA5937B79B8A5A525C5CC4824525A5728E673657B93BB093C98FDA23AD5543CE98E78D926EDCCB7826D66A4F7F79116E71702E26BBD82F17DC1E67549A1FB1B1B1B374D7AC41030195139B4728066D0506FB3C123852BB21D57F36CF5D38A6A9756C267CA5DBEE621B433C9933B561E3D8259C0358BCCF1DB77D4FAADE9DBEAD3E9F60838394C4C4F9715DB4A19B52A6E28BC5A636FBEC40A7FA0BB4CDEF1A91191ADC4ABE882CE06A655825D2343384C3A75B928F30D3DBA8C422716E10BE7FA14DDF59CFDED0B56EDBDEDEDED4AD6FD8545381D4D18BB740933927EAE5DFD313E9E9C86557407029DAAC8FE2FF431FDD824909642A1AA3DF1E873B1C72FB52DAB1CE49046635398DAD6E6432A9D56E9EBDB0D493D2D3E4969CD78E3E15D244CF5F8DDCFDF456B2808F7DA039C161D40FD624B3FD37CBE486D9D01798242CAEBD3209B72F283F9F979554099FBCEA611BD585FB9720553535355263187B3284E4E4E626060401554D60BA685C1C14149692695FB3F9F9D9596348BE0BDFB0A847078053E9F57A5908585852AB9C3C3C378FAF46955E745D963636398999951C57756E4D26E82C80E8EF5249B2B97E5743AF0CEDB6F49F7B7A6EC7BF3CD1BF8FD1FDEC7AF7EF90BDCBB770F1FFCF5EF159947ABC9F02C0354B0723A1AF1834C0C9B163B6203A3B0479F2907E845981813474EE22FE9BECB245EF9931867E32281D719C07E392F6BEC8E48179FCFA70A74ADC823D07A013CDB21E9D4E71EBE67F43B1C8E521EB14B64FEE8F2654C7DF61946867F884FA60A69888C6327C1EEAC963E36046C2F6B3180CCE16F2983CD030BF6CB4656EE223377FE8DC44E4205C1871FFE13EB1BCF31F1E924222FB670F1E24504E47E7237388BB1D161099E2D85BC4F6AE2D4F41DC1466F850D25997FEB780D59CD84EF7FF46B58A307C514942B398018724A50B44890FE960C381290343A80C5562F72269311A706A36A3D59487B7B7B6B761E3C301554BE2BD24CA500CAA043E416A81C4A59C48BBFD914469C1C9F482E8E16BA203192ACEBEFEFAFA98FB2686BAD77ECB478FF60DB4BBDEBEBEBCA3E3A82E7CAE7CB294016764850D0B6DDDD24BED7D38DD0CA0A3AC5F14C10FB5248072EF4E3E9FA06FAC4663622C71248FDE7CF61EEFE3CB60460AD58677272C788EF24F1D3D6086227F5F8C7CFC2F07ED281FA98AFC400DADDD5D5A5B029064C8A0E88303AD9B793B252990B29C86496426C44B3CBADA22DB4BC8C7DC98B555124401C48F4543280FD7C42EE07499995E9625B9E1342797FA343A506DA6234166A8CC7D302ABCD8A15698953728FA8ECDED95DD0499577128E07E23882C6F656B78183797D6F2F05B7BFBDBC6BD2CCF8E39F3F283D8F7F3A5328E6CB8FAAD6BE0CAD96D6FEF5F14429F7D33E9BDD09DEF122B124DEC7A07AF3DA6F7ABE66A7412B5D16798F61BAE459E50C51BE3927F32FD7AF5FBFB0B9B99911CA764ADB68F4B5F9F39232F2F88E8DFFC77F410F1F2E36ACADAE3688EE5D61E4A26480A6582CB62417D8B7FE033EAB94C73C3AAB540000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (101,1,'Rackmountable_2U_server_3D_(128)',decode('89504E470D0A1A0A0000000D49484452000000800000001B0806000000B49F874B0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000C734944415468DEED5AD96F53E9153FD7761C92D8D91767213B6423EC8C580299A9466CEDB442B4A5A8EA88B60F7DA85051FF813E55AA2AF5B5D2487DA944A70CEA3C66921060A001025918200359200981ECB663C776F092D8E9F97DBED7B9497C0D688064683EE9CBF5F5FDEEFDCE3DE7777E6771A48585055AED214952061F7EC8F3139E47789AE9FD1B4E9E977836F06C62BD4FAD05A1A4D502407C7C7C652814FAB16CF47D3CF56FE2B96B01D0AF30423C3B59D606BD5EDF30373777776195047F6700602F37984CA6837CFC44367AF96ABCF01A05C804CBD5C8BA69301A8D2D76BBDDF55E00202D2D2D953DFD986C701C53D7BA97AE01D9E61808ADCC8E5F81216C365BEFF70A00E53C82C1A0F0727E363CDEF03E51F92AC83588BC018030180CD78686867C6B0A006C607D4D4DCD3E1650A1F6AAFF632A7FDBB2BDE07905A182F386AF9E3C79F27C550050575767F6FBFD47F85E78F971FE2A73DD53DFBD6C0C846E763C54150D9B376F6EBB78F162F0AD01E0C081034548E0743A1D8CFE217F655C37C29A92CDC1F735B37D1AD8399B3A3B3B6DDF09006C6CE9F0E1C31FC8B40EA36F5D37C2F746B6109BAF1D492400D1D2D2F2CD6B01E0DCB973BF3399CD7FE76B3A5A1F2FF7229EB3B3B3343F3FBF3600A2FACC0939BD78F122303438F8F3D6D6D6FBAA4B5EB6EF2464FF19CFDFA337A35C494D4D2D4C4A4ACA4B349969C79E3DC4285AB7728C51BAB180869F8D9367D6BBA6E4F278DCD4D97E8BDC2E2758633E2E2E2E949090402693098D380F83F63394687F4088C70DBC80B8D420A7D329A6D168A4C46433E5E4E6D3D3BE1EB2E4E64687D977C268ECE19C71516E513115E4E50AEA1B9B98A42D95153461B592D56667B97A2927275BF6430DF7D43E7D05DF5E798A83D53E4D0525A5E23C60992797FB05CDB8DC6B0A00838F1FD18C735A39359495950996E2C491CC66733ADBFA470040A11CF3E9F4E9D33432324257AF5E25051001AF4F5CE3B283F6ECDA458D8D8D545D5DFD460484303E9F0F6814CFDFB06183A0ACD2D252620612606C6C6E0EF7174A8A851C139353B4313F9FF43ABD00009EB1B5B6966EDCB8811EC41B910B3278BDDE1572151616821D49AFD753435373D47BA726476855D387851065645AC81067247FC0BFE492C562A16DDBB6515353936075D667320020786BFFFEFDE26515BA87B20100C55BDD2E174D4F4F0B0540E9F7EEDD8BBA3F28E6D4A9536293898989A86B4A4A4AA8BEBE9E7A7BC34DAEEDDBB7D3F9F3E7E9E4C99334333343369B0D718B7299712007465B4757D8388CDE3B9D5DE4E6988B3133E3A4C9C949B12F0C0520688D3367CE88EB5C3F47BD0E051D3D7A543801D6ECDDBB57C875E2C40972BBDD422E8C8C8C0CCD3DF40CDACC82A245C260F9A5C5CC3AEA67E51D45F84D490E3F8741E6F3F9C9CB0E8285CAEAF0D2C5CFB5EC8C53561B6566A4916DDA41FD3D0F2914088533C1E0D2AA10801E1D1DA52D5BB6D0D0D090C8030C727381B2B3B3C96EB70B10A8C381328C7CB38B41004F800163253C780636C9CC8CDE1E80A1B4C083893D40536AE51CF860371919D597AEFF97F6EDD9450E06CACDF64ED2493A2117D6171414887DB50612B58A8A0ACDFDB5721DB011260CAFC8A3154A4CA624DA545A12891552F88F7C2A2D31E6F2CF29661395B16E9DFC6E90311098A3A1E1618AAC9268C967C85B515ECAF714325802946C36936D6294EC538E300042C115EF8FB08E1C406600010004AE69567A3A5EAEA3A32302803003C800E01B1D0E87303C848B0500853EB5D6783C9EA8DF231CC09810147BA819E0EB9B6D02F1A1D002355CBE1A2985249D24E402005E26175825965C185C4347BD0F32839DD2D3D3C30C2045878099955BCE00503C757159F4CF6A8024252452765606832D91E219EC3EA670835E17D94B5AA400F159C72C91929A42699CA705E68334C2DE9DCA2098B63A650084D4653D3D7CF850302FBE6767EF673B3D0500D0D4F99C95720A8BF865AD7CCC82F703000A420100E4064545458219B4BC48A953B13ED61A7839908864F3D6AD5B545C5C4C8F1E3D12DF2BFB0100F0708CBDBB765222B3C395D61B74E4A37A7232506E77DE15F2B5B7B78BD0A4B0488CDE86A0D697C98E6700286D6D6DE27D7B7A7A22CA0410B097A471EFACC745C303FD4BB246695902B9EC24725DE2777DF4ADB48465822A23AE4C51257ADC23516262220519D488F993E3A311908482A125ECC68EF58C8F85909381DE3D3636F653039FA0692014CF86856B5CE0E3598501145A844AF77049881877930D16523C50258C12981E747F2B64501B4212316FF18DDB65A6116BF81AD0EC0F0422CF048B600DF28EA4F40C7AFAFC39253360301EF5F59357F6D464F680B2F2322127D68762286C607050C8116BCD83EE6E219324BF771C03714EC5184196B1EBEE5DC152A9510046BA04BA77BF6755B3FFB838E38A1000FDB08DEFF2B100FD1D0564067546CE06C7F961C5F8F074656146760E0558E9414655C0ED89E2650BB24157B845F820A9AA3FE5BBE565E102ADF83E8EBD11639CB37F4C8C67A3638BF139398566BDE11FC8DCB32F5616980B919657E4FC55D6C4ECC0F1BB24C860D452FE5A18CB4300B3DA2106800ECEAE38B6414DC9F297158AF131F5BA3000E6D8F81F1DAC131932623545C960A39DC7BAA6B5369FCBBCB4B43471FDB25C92220464A4A751E395AFE9E3437514E044F31AE7054696B9FEC37AEAEFEF5FC1386F5A2E94990932201BB8CA893626C78644F882EE900C2BE110FA1525258716309E5A87AF5B3AE71694516A720225256EA0030F6FD346BF9B3EDB7294EED4FF8252877B29FFEEE5A80CC0896C3A42A03A075AC20058A4183F1202F4E1FFD4B259ADD4D5D52592A443870E89CF5A03B5262852ABDCC23E283B315A5B5B69F7EEDDF4F8F163116FADBC0F681FB11675B7628C5E7E561A97484075D783EE487C1BE0EF377108C07D5BB76E15CFD11A75757502285353D1FF1D2F2525856A6B6B4552897269D3A64DE23DABAAAA448534CC19392A0D93F0FEE82081827F7DE653DAB97327DDBE7D47BCCBF1E3C7581703D4D8D44C9FFEEA9702109FFFFB02F5F5F5BF7643CAED7645AA0DB329812ABD0EAAF2DAE99FCC3CF6F21D64F07965879E5FC100D03BE4533B8A812FE0FFF1360200B808E114E38B2A403600A20332745CC73A64C25AC9163642A2858C59CBE3201CD641A9070F1E244E48282F2F2FD2CC8101D4B98585CB54CCE19151AAE435D8FB5647A7A80294F234D69E0A259A394BD6AA0214EF067851F3A3A41CE4BC01600523619F8565B94F346359AD76EAEDEBE3AAC14536FB74F8B37386EF77F3F386448239CBE14AD2E95FBD0B19D1DDD25275222E9112437334C7DE9E34F59CE2DDF608A32F6700D84D010083B8C662B1FC160C70147D2025044038750800038413C438D10C416DAFD0483018D42CB7E0250139A9D32AB71485471B4A0F422787203CD3E7F789F86C656F54AA038009724116C81E6B4F2496A2BBA9B146E981680DB976265547262AB80DA27C9644A28CDE05408CF2157B4377006230B840C78E1EA65C8B851E338BF9FD01AAA9A9263B03EF4E47171DFEF807625DF3A52B34ED706A86A7AB85C5D4AE9B23EFFC1095DD3B4B46077ED23189AA40CD00CB0190939353C92CBB29D2085233803A0460E261C8FE479E0D8BD805054A31E218E81B0C112BCEC1A00000BC1E6000FD625F256C449A32F20B4F4C59F91EAF50AA8D6955A7944A7CEC630F533A812FDB132089B506B2284C82F5AC2811121002F0DE0801B11800F298CD262A2F2B137D8379AECFCBCA4AF9DD9E71B99644164B0E999393E99BFB0F44E306FD79FBB48341EC11F700E1494926CACBCF1309656A5A173966DC2B18C0E5F25070CE4FBF491DA4CA7827FD31AB986E9E7D4A99372C54F28F4A06736091AD5826E82799F7550000FD3240163B81F020D4B7478E1C110A95AB02A1304F605E3040565696B8110F58DE298CE62DB1AECBB5A810AA9B4B2F3C6F79CE0010E9E5FD6A2A365371E1466A68B942B55595EC5971D472BD955F2C914012A88595FE41AC320F0A78995CB80E63A32F01EA1F1818885C470EB163C70EED30C33A3FFFAF0BF4C5C5FFC82C19A26BD7AF0B06C033FFF2D7BFC9CEE3A7CECE2EDEEB0B3656D85B2FB5B488F56022D80020F32D6B4C290CE0F2F8C4FC336D0F5F78C665FA9962559F657E892DD053412E8310A8B4E8593E0F9E8627B4575757C71D3F7E5CF4E7C7C7C78522E195A88175094934CB34EB9BF5BCF35206CAC82D2CD2CCCCADE363A47BCDDFF8DEC86F2EBC65A625FCEB682D83B3AF7F784DFD1A080074B45D63D0F905A00100FC8887041DC0E69CCBC6B6DE2AFE218495FB27F6A09F301D99396B9D65C3A773ACDF082A0405221B5E1FB173030E2B21AD9CE8ED0E49CD5E4B3C012CD2D7D70BF9244E60EF71AED427E778214E74BFE4B0F6E5FF0096DF6932D3A411F00000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (102,1,'Rackmountable_2U_server_3D_(64)',decode('89504E470D0A1A0A0000000D49484452000000400000000D080600000019AF686C0000000473424954080808087C0864880000000970485973000006EB000006EB014C319E4A0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000004F34944415448C7BD56C94E1C57143D55D55DD513DD0D1863D3130D6150D4812C9CC491831728B2A278915DF6F98248F989ECF20D59253F900576A46C2C2CCB468A9C01128C8DC76E30F43C0FD59D735F0F40821C01B65FEBAA5EF5ABBAEFDC73CFBDAFB44EA783D30E4DD3DEE7E573DA75DA659A8EB73352B41BB415DACF8C2173EA184E42C0850B17BCAD56EB53BE739DC14BE0A1936C7616B25FE1AB4DBBCBFB15C33056D2E9F43DCEDBAF8D8077381C0EC775099AB75769D619C0BED1D1DB27C3E4DC6CB7DB2BA669DE5C5F5F4F9D88804422610E0D0D5DA5139565AECFBE21A06FCBDF7D5187AEEB2BCD6673756D6DAD7984005A80165B5858885DFEF8CA8F2E97E5A6CB412DBF56A8A770A6E93A8A852298D1336FC4609B996C2E7D7BF5D637954A251F0804FE14026EB8DDEE6B94B97AEDD2954FE06009D92DFB441B99960B2E970B8552198B8B0BA854AB28144BD84B25D19692EC65497B55B0BD55D3B2404CC8168B0887C2D849EEA3566F9C311D1AAAE5327EBF7F075438464747C19E71CBE0CA77CBCBCBDE5AAD86423E8FD1736328F31A09B3BF11B893C488C52727D1B66DE8C428F77E3A999D9941301080E974223C3181D0C58B48EEEC62825701DC6C34F0E4D14344C361B6AA035FD148847E34458ADC7B3D1EBC9748283F721FA2AF7068022F9229F8FD7E948A15640B69685C6B9304B18E26D6D5AA4650FEA01F5E9F07D57A1D3034A51C8DD744E25DF8867CD8D94932BE1C76775E204C3C8B8B8BC8E572868304FC4ABB964AA5E02110C942B5565575E5F3F98E70383C3C8C52A9D43F028FD45F5FA23AC194C8748D409A760B7992799C2FCA8FCFEA47EAB86F7D5FDA21B97CF4E10798999BEFAA44EBEEAF7E9C339318191966BE3AC8E472BDB5EE33E7CE8DA2DEA8A3C0FF33FBFBCA573299B4498051AD566F0B013F10881C6DDB24605A400D115C8E813684CD2E3AA4E9408664B53F0A0CB42C849003C9969440932A110997590206F91D3B3F8E3C4B810D48F99100D3D99C0A7EE09FA354A932D34535DF7DB907CB65C13ED4DC36FF7A80ADCD87479AD77F583ABEEEBBB8ED36DAAD563F794F788993E89F1CBDEC5191DAB428403774981D27DC94A3D9CB90C849F50802B24DB32B5F0EAFD70B93EC1BCA1C4A210F1E3F8687E06B2E37DF69C2B24C38E9D36958035F22757E4FF0EA18F8929A77994EB5078F2FFA1AC1C6D6D62010CB34108FC5506F329B6C8AB16814ABABB799DDC6B1210B9E48F822BEFCFB0EBEFDEC6BE8BBCFD07AB8A9D618CB942480A6090197442A128C8070380C64B3194CC6A252235D5952923EAECB5CFEB30FBE11B0B1B1A1E6F3F373A0A4540D0B0879D6D074E43259D51BFAA523BE82C1A0BA2F534176171022EC0BFB94A8F88F31502155D70E4A646C6C14F1A938A4576532194CC5E378FEECB9524A17579EB51DC2FDDFFE5025D46AB5A9480B298F0F8EDA2EB46649F5B01E014A8154ECB2EC1091CD2418518053B50590842CB367F5B26B2809CBBA31C8B8813A25DCAFD7CDCD4D66A6A01C9332D8D23099F962A9A8E6B269FFBD06B376D857BF8F0821928CEDED6D45D06175572B7515BC9C2ED25F1A54903F10C4D4D434C98B6282A7C5ECDC1C1C4E134D39C188A3C0E6D90933D8E02FD0CD47C4DA256086CD5BF030E95ED9E28BA5A5A5EF294983D21B0AC7263B224FBB572F271D16FB80F750C3CB66D2A7FEF0717BBC38CF2696CF975A2451C3FF1EA48386AAFDFB5199EEBDDCC5BDBB77F4F1F1F1642814AA3E7DFAF4AB7F0006A06197FF9D49440000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (103,1,'Rackmountable_2U_server_3D_(96)',decode('89504E470D0A1A0A0000000D4948445200000060000000140806000000722B38EF0000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000008A24944415458C3DD58694F5CD7197EEF2CEC0CC3306CC38ECDE6921817221C5CC98B9CAAB1122995257FAB3FB9DFFAA5ADD4FE80F41F245FD2AA52D5F8075495653BB1094B6D43B065C0363B44ACC336181818186086E9F39CB9339E8DD4B10CB67BA45777EE3DF7BEE73DCFBB3CEF192D1008C8610E4DD3CA70F904F229E41C2459DEDEB10F7908B909B9057914386480B4D7AD1F801B5253534FE3FA097413F8F75EF6DBC30E8657184B90DBD8CBCDEDEDED6F61DFEA5BE9809C9C1C8BD168FCA51EE59720F63785D8213AD10FE98233981937979696FADEA8036A6A6A2A7D3EDFA77A79390B31BFC391FE2AB639E98CFDFDFD9B66B3F9EED8D898FB501D70E5CA15E3C8C8488B5E5A087CDD3B02D451ACB907B9CFCCA04306305E8B03CE9F3F6FDDDDDDFD1541C7EDC710DB3B0ED4518D693A0376DCDADADA6AEDEFEFF7BCB403AE5DBB76666767E733C8599498537864FA7F8B7444A9F8FDFEA35A73D7603074994CA6D6F4F4F47F5DBF7EFD699403204D908BFA6F397BEEDCE7E91999C6E355556F3A8A0E65209B25252949569EAF1ED99A086479D8D32D9E4DCFD6D4D4E4AD8C8C0C8133D8E1DE26E87D90932929299204C3DC6EB7C05BD2D4F20B868AD8AC164136C84F0D8A80C47F60C0E6CD5883C3BDB1298E92527114E4CBCC9C53AA8E5548FFB341595D5A106B5696325A8F89B0C617111AFFECA061349A204671ADB8C45E582426FCAE2C2991FEA7A347E600E7ECA48C8F0669A1BCBC5CE14C9B100CC32C2FF94811B97CF9B20C0E0E4A6F6FAF7A61CBB32901BF4FCA8B1DB2E8F1081D043E88526CB15894CCCECEC62D5A81850822FA67759F9696A61C999999290E87435ADB3BE168A364A4A7EBCE31A8EBE2FCBC38F2F3250B4E48A4B7ACAC4C5C2E97783CD16595F6555454A86FF2F2F264797959701E11EEAD04800F0D0FCBF67EB4AE79E794184C49D1F520D2ED313FE29F076FB4988F43D3FEBD3DC9CB2FC2BEBDE1B7737373A5A1A141BABBBB59EAD2E980ADE2E262D9DCDC54C672D0015A305F05FDAEDA1C0164ED8C8A68BC8F33802C2C2CC401C5CD5327751130826EB55A558605BFD5241973F61C9BA08D935C5C591E363736540DA663998989F4D2897466ECB0DBEDD2D7D7A736C860BA78F162C2F74223BFB0508A2B8E0541D4247CD52250D48213CAD62247A1DAF31E0271767E419F7FE1040D734D0DEFA3BCA4C9F4CC9CDCBDF30D8258E2F8861830C0565757B7B9C321005B4CDC878686546A242727AB854D58747171510A61283D47A0621D4030B2B3B30FDCE41EA28020307BE6E6E6640300135C1ABBB0B42CEB0FBA65DBEB95F6072A22944E3AF4F8F1E307EAA5D3139128338E3A98750C16060F37CB8CD012906B01CADFA9F7DF4B087EAC131848D9D62C31031F1F74E7E6DAC3CE095D5962F3F37259DF65CFE7177BB64D965DEBB21F612BCE0B52057E05269EF5F5F5EF4DFCBBA0A8A8680DC09BD132F523D21B5406D001009C9B09DD27EA16123D57E98745091441CF474979FEFC79788E3A8DC8805C7B8E34FCEC84743D7A2C673E68923B9D9D6241643063421B8B058DC0C60642A43D3820CAD4D49494969686D744A405ED0C4467B01BCF7B7BBE8F61E90425276E4A8B2B5BF1EF6B20DD0DDDE6170EF07ABD0F11644D0896ED999999AB263D4A037AF9F1106C0A4B44524AAA6458508B9DF34A448B27C581A161F95FD6446248158323A3928C526272ADC89D8EFFA8E7DFB477A86BA6351B69EB97BBDFB51DA84312ACC869EA3D689E8E2B2C2B8F9AF382D29C0B2B874EC2FE88D28D40B021D8B5D09F7C263D5A037C0839137280110ED9F5EEC889DA1A554274D67EE9450F7A977C43673FEAED130BCAD7874D3F97CEAE6E39FBE169B9DB794F5250F72BABAB54C97A1DEBD96C3661DBF70C9C108879C7B5382D959515E02A0F30F0A1E4D964727252113DCA033267ED6557177B5E219A079B7CD4DF292BE654F9CB6FBF9482A7F72477E46138036823CAD3316219E25353A8761214D6FE90180D46415AA8AE88F598243C8F0E2572D0512D2D2DD2DEDE1E6712BF61CBD5DADA2A757575AA16932FA6A7A7A5BEBE5E39D40D3EE879DC070ED891C7CF06C487C81F1B1F036117A23E17C893274FE2F43636362A905656A22397BA9B9B9BA5A3A3435D7B7A7AA4B6B656710E6B720AF614DB0559916D7FFCC3EF657C7C42017EE9D2C7F2C5175FCAD5ABBF51FBFEC73FAFC7E552223793C308AEC59221D5DE5571EEEFC96A45BD58674682D9A77300316663A107B3065EAD31E1FA15C0CDE604810F6700EE03E8A11989ACE704841F268ABC72BDE58C1CD415AACB5C98F3E01A45C0A18DB0056D6E3C256DF7EE4BE3C993720765480BD649D579315B12ADC78E8ADD50A20C20E9875A6692EF8F35085E64F6FD075DE08A55D9022FFDFBC60D999A7122A03A657E61511A4E36804B4AA4ABBB474E377F80670B3A7917485B5B87B233B8174358E7D7A5F5E2C57DFDEDDF49DA822F8A03880331A40007FE63FC2766C03601A60368305FA203CCE8D1F7F12209136421D5D5D571BDB74E2A0ADC4473245F1231C85DE91C1D1D5500313B8817BF7562A33EFF3E887745157A7647FDFDFD8A4C13E96444938413CD8540278913F8898909B51EDBD320A147A70081A08D3CACADBBD7A5B8A85872EC36D51DEDA124D1EEF2F23264E50482A1081C1E80AD381B9595AAACF278B68200838158529657D6E4D7398BE2F2A7C88DCF7E90BC5687A42CE72303F472038C19ACBCEA01A3DAD025024823B969960846AF0146F94D663CCF95CC2C8B8C61333428760CE280137242E4604479202C3D6BEEE87F6A37703E585B774B4166962A6D34851BE3A01DE978C68353A2F598EE0C9250F4458E3E388E01E3D2CBD3BABEEE22DA5196981C477446698624F9DBDFBF0EDF7FD7765F5D47467E887B36343CFEE2C36FDB7405C18A90916195FD00CE4C2EB77C25B5EA59DDE7E511EB0433848113E2243A00FB5BE4DEF9A7CF5F2F5CB870C2E9746EE180508AF43014143A028548F5B77968AFF811F82D800CF225D212EEAA0201ED272CAEFDD84B83030386D1D111CD6C36EDE2707AAFB2B2D2822C1D5C5B5BFBF37F01103B11E0852899F30000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (104,1,'Rackmountable_3U_server_2D_(128)',decode('89504E470D0A1A0A0000000D49484452000000800000001A08060000007FC354EE0000000473424954080808087C086488000000097048597300000DD800000DD80134E635620000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000010604944415468DEED5B597014D715BD3D335A663423A10D098C36242101B204D8C16C8E0B30C5661BB0534E1595CF98AA7CE52B3FCE5F3E525970AA9C54C555CEB76D6C134C3902AB401BAB598C168440129BF67D43BB66244DEEB9D36FD4234DB74CC50E7CF8B91A754FBFD77DDFBBE79EBBBCB64644597C1CE7239AF4161D1D1D9B9191B1232F2F8F366FDE4C3FB5A59BD7EBA5D9D9D9E74EAEA6A626BA7BF72E7575755D1C1E1EEE888C8C2487C3419AA68D8D8E8EFE56E33EA7F838126E303AEFD8B99BE2962DFB49C3166D6D6E36B5B575535FFFD07325D7D8E813BA71FD1279A7A7E53A2A2A8A3C1E0FC5C6C6524C4C0C7574749C74E80C10EC1011114163636372CD28A19EEE6E1A1BE76B9F979C4E97E1F1FE2505F02FF9837587B9393F4D4C7B2979C50A4A4A88A718570CB5B4B7537666064DF1A43ABABAA9FDF1434A58163F3F480BFF64CDF2BDDF6F90F1B2B7AF9FD273727539E768DAEBA389C9A9E70A00ADAD2D41E52B7DAAC36EB703049900C072D561DFBE7D4263C5C5C5728D4E5EEF34C5908726C6C7A9A8B090EAEAEA28353595FCFEF0DAB4D96C32CEE7F3990A86FBE8373939298B07A699999911F0819ED2D3D305A968A77559B233330504AD1D1D94BEEA0596CB2700F031F5AEC9CDA17BF7EEC9B81FA2616E900DB2E01C7FB12ECB972FA7C4C44491F35C6959D8B1FDFD5DCFD615B0BCB171F16CAC6E9A9C180FB975F0E0419917DC0240C0F34806004453CB98E60B0A0AE8F2E5CB218AC203ED0E3B3D7CF89076ECD8412BD81A070606A8B7B737ECFBB3B2B2E895575EA113274E98CA88FBE807A0E19950FE77DF7D47DBB66DA3A9A9297AF4E811AD5FBF5E165AD3EDAEAAEE0E45F135145275BB4E8013A0B9516A6E6E1659E3E3E3E9FCF9F3A6EF7DEBADB798AADBA8BABA3AEC7DA7D349EFBCF38EC850525242870F1FA693274FD29E3D7B64E1A6D99A3A3B3B89E32353D2B0DB6D949A991DB8AD69F3DD340ACEC5780E45182D3491413E33E3A30847044D31B827262682DC13E8AA8FD4FFC9CB592D379CD1D1343CFC841A9B1A69B0BB47C7C25C886CD0DB962D5BE8F1E3C7F22E5ECB3900C08B9BB88160018B6EB4E4C0A41C62A55800043B6BD6AC113F12AE7100297F8B8A8A687C7CDC9425C2353C531DB03AE302BD5CF82225B1F59D61CBFBD98622710FE597AFC8E49F3C792272272727537E7EBE290000B455AB568932CD5A38E6826B8C8B8B13D0A9FB662EC5C5205A93BD5A57B2AE30030A8CCA0BF99DCF3DEE184A5D9E22F7A378BDC1720F5859C1918B404494C7ECE7724533D5FBA8DBD547E3ECF7877BFA02AE690100308F9E9E1ECAC9C9112063BA410670B95CE2FBD58243F9F300B0070763019492C335588F02821900541F45B78A328150201EEF018084017479BEBD55A5504BA5172F87F8658C83821468A70D7ECFD8F06C800440306B0007C06E6C781EDE01F0E31D0106080F81185EC7DCECACA0DCDA3C120C4A0C9A7C902944419111949494441A5817EE97E5B4D9B4D0BE0BCE633D6E7273403747015735363C44756A6DE742DD3464C23C60609C15E05A0030AD021974C00D33009C3D7B965E7BED35530B9E0FDEE62CFB2885676767536363A35CC30581FA556CD1D2D22248D5F405D8F8620165A6ADA2FF9C2BA557B76C2607B3D2F90B17653114A51D3A7448E434F3C1CA9F2B7631931D078072E5CA15F1FB9051C98579E19E19038C8F8DD2B7172F2C8A1CB5303F685641A9B674E0AA30E876BB456600FCC9F07010340BE3344EFB0460F85D372601007A0DF3A249AE87604A293D902FF2A4F9DCC9C8DEBA6D3BCD32AAAA6B6A2D23E68A0B172C451F6141BA7B7AAC5318668F56F6D73E6F80721B1F3CA461A67A586F55EDED2038E3380348635AC7842A9778EF2833DC038E65AC5A754DCD62A58A1F9E6FD76FDCE060AF9F62E21317BB0B573CF5F68FFC9F23BFD0F4339A03C0853100D6E7FEFDFB025E008059788E75EE0700F6F1F13123E8B0EE2731CAA6180064230C10ED624A6265CCF89E2E955A3205B31E11C53E55E89BA9B9B9AD3DA048712D813E00E6B42F40E9535EDF5364784F2F9571882BC66DCA32DF2745FE5F9AA6D9E43DAC410ED01D96D98C110070BD6030FCCE4C5FC9D71F39F8A20F370DB45DC77F8B822E409F7444849DF6BEFEBA44EB6601E00FD572737385CAD18ABF29090495EBD6B26F5D4DC5EC02B6BCB489A3DE28FAA6BC92397B96F6ECDA29598A0A607FACB672E5CAE0DCCDD2C0DECE664A4C8A97BE838383CC1403321FA4D30F98C5B25767B13139F9FC81C4144FDB108325A7A473B6104B29C989B4F14639ED1A6DA78FB377D03F7FF311B97B9AA9E0DF1F2E0A02750074F2DF95BA2B9C649770D261F4CBBC8030A172BE5934CF0081D6C63E1991238224E4C266A914948054EAD2A54BA83485ED835412B1049E87B46CC3860D545A5A2ABF610C1607EF40BDC1A63BBABA8646610014802E5DBB1E74019DDC1FB50904B0081C8D69ECC2B67BF76E897190ED846B00DDFEFDFB453117D89D6CDFBE9DAE5DBB469B366D12CAC758F859C8655AE3E0F91F3E74988E1D7B8F4E9F3E4D55BC4EBF7FFF7D99D79FFFF2573AF6DEAF65BEC73FF81B9595557C6FC60906A97047BC2670CB88FE5D733E8A9B9DA60856B63726967CCE7966320681BA91D7F2DF54064030407318831FBE0913DAAC942F051B2DD037921707E916808254CAAAD88105C43E0294680612D50F68C4C20F0D0D49308371F0F3C1544D07402E5B4E21B3C099F3651C10AEE7E8D74325CC009A9E06E22F02498CB76A292929A6B2E319B887B5400683CC08568C8C060129AC4FC9A599B916BE51555D43C78F7F40439C97D7DF6DA00FFFFE0F796E5B7B1715179FA18A8A4AAAAFBF27D906D6C2C72E0CF7A399D5A4AA38ED9535B1D961B5D31412CBB13E8CB5835A57124DDB23A8538BA2B4EBDF50D4E880C107843200AF753AFFD5B0E62A485F08009CBE1454BE6DFE65111191B2D0508E12DC2ADF566565B34552851C339A8302500D540CD0DCDA267E7B92FD586DFD5D8A65B0A8681672A1B60D99219BD9B3038B1C6D990558A5882AD20EB801CDD4680B0AD6D3EE5DBBA8AAAA4AEA15070EECA7FEBE3EBAFFE0916CAEA567A43390A6188C5BE9D5575FA51B1C543E7CDC4CBF7CF717C2689F7CF625FDEAE8BBC2349F7D7E9201551B12BB18E397B8543F2539E728D23E40732FFE81FCDD1C335567E92E2094019C4E6706AF91669C63880BD0951D6D640005B648CE512128AC1ABF5B2D141408F02CB598B078E4EF7003B030502CA8162D212121C4D2A2A22225E7C5BB972726B10F4CA0AEDE3E5912F87F00EEC08103964A04E3E09D5672A99234CACAA84780EDC04E60022557C0584C525CBED7D6D6C16B7593FA07FAA9A5B555CEF1DC81814106C143A9A2F6B0ECD32C0FEEF5F4F4B28B6DA79B7C0E8B1FE47E4D4DF7D96D603DFAA4DC1D5C5B04E1FCF2F1B149CE92BA28966CE4F523B063B7E065839DB1190820940118FC6E6D81E08E85B9BB51F9B014F588085E609467418BF0DDB03AB386E760AC559FF6F67629B0A08FEA87DC3F987A3103C0C24187681E8EBA535396537413330B833126C62576E0E2BF19E99B648250142CD42CB8527B0D130BD23A631BE63C5AED0140468CD1AB66819883CF313F54E962C28CF7C4255255CD1D3954FBECF3AF82E7FF39732E34A5BC399F767E72E254F0FCABAF4B0CAC3FCF586E4FBCBCDF37EBA7A19149BA44A974693C109364FD2B39240330BA0EAC0FC6A92CC02C0690C92BE54BA0A5A3282E214922D9519E78CDBD863071CAFCD9C0E8B8E1C58BA3195C0D311D9A66623A4A87D80A9C7AD4DDD1DD4D1D25DDC19A000EF1E92FA4B1D54CC89EC5959B372DFD7FD700FBC7478F96EEB344431FBB23BC7B9B650BF5FFC89B41E33EAFC57EAA9F5CEEB8E0F9C29D40E854B94E01009F604F33092E4059AE9105A00C50C9606F37ADCECAA2290E82045D6172CD906BFFBC408BFB28D4F943B681FD86EF102448E11FDA3B3BC89D174BF11CE0AD5A914AF59C0DACCE4CA7A8C828AA6F6CA2FEEE2E618600E2FD4F577578CA52805A44B46E06E4B23041AE777294F2F3D748B008DA57BB9A7021C63D8E3E8E09E04E314F181FEEA34AA75C1518109B5BAA8287714EBD260237897B4A99B846814731D40C03C466772CAA03045CBAA6CAEF1E3E4F8234C7F8D8A15C80028072071AFF855FC376F00A0E4A6A6A6AA8B0B05084326B981868D66CD305EF40C4AE5C0026831A35C6E1B9F0D3F0B5F85B5A562E63B0159CC97EB98153448FDB23F5EF40BCE1A5F4B4346A6868A0CCCC4CCBDC5A05885631008244F4815C7077781E7EC318C887D230AECDEA0036BB4DE6037930FF9D3B77CA3C917AA21E80CD2A3C1BD7482F116B6037B3BEBE9E7671E00890DCBE7D5BDC0F7621A10304930872B16187741763B1738B523AE2148CC5AE2A4080386366DA2F73581803281780C631D7CF19087F0200A68C31007C9E9101500940C5090C01D46211714040B3B66EDD3A29299BF581F2B110B02204440014F2EEA3478F4AB50A8B8DDF010065718F5B5AD92A2624656A696B2797333A9817E33D90090B70C1A21CBC77EF5EB11028C74CF96FBCF1C6A2ED608C834C502416DC6A3B5845E85BB76E9531089C917ABEF9E69B125FA03E82F9E2D99823EA160002AE51AAC55E3DAEA1E0DADA5AB17AD42F2013F626A074EC79C0603016358523478E48208D9A452C07D51A458ABE16328002017EC77AF1F564703BD8CC05E0989B9BE5C02B92464646A41F10AEE82AAC8F62B680A5586DBB9A058FB03A8051157A54D08A2A60417E1E9D65CBCBCFCDA6384F2CC7053DC1ED604C08168AA8DDAA3E016520587C9AED601805A81C722986D196F88A08FDD43858AF62125C2363C135948B6BCC15EBAA3675F4A29CDCC318E3B330468D457FFC0EA0E11D0183B105D3EC857B01C620507705923378150340F9C853A15C6326303B3B17B47A5090A244B303F48F495AF5013854D089FE78177E431510478FBE59A4E985A87B1C107EF975318D4F4CD2D59BB7A8A4A2323011FE0FCC04D7A100A476FC161EB0602C9CD97D1CC6AD6AF5A127E44286827453C965A57FACD1175F7C21160D36846CF84006CF83C5C2CA4F9D3A256B0A36A8ACACA4B2B232A990E2431954106FDDBA25A931E4FDF4D34F852DD117A9329E8D8667A1348F0F6B904E833584F60500B3C17A08D619C0077BCC1B9614BD64377052014059AD0A181400FCD35E29043DE245C08BD46EA15945CD68C1567500A0176082CFC3C44179C696C6BE5D6D07E76465D2CB454554525E416BD7E44A4C70A6B45C56BC95736D3494A021AF591C0079AD8A40AA0F64471106BE173E1A8054748AB5B1DA0EC66E298088AF8F14B8F12C50BCBA866211AF2870A1E4ACBE5750AE4AF50500DE7EFBEDE035E4C13E83EABF71E346798EFA060231913DCA19520C83CC304818B65B2FA0E93A18C56ADC0A9CCFD920B87A907205F8D0D1C939F864B4938A366E927B25E7CE9B07D47C72FBCE9D25E9FEF2D5AB61D34363ABA8BC4083438394E18913F0210618663774A3BA46BEBCC124131293283323532659CEAC60D59E8C8C52D3FD07967D6E55552F29FBB7D7AE4BB0156E3BD8668BA03BF58DF4AC1A94EB71DA65C3C9E18890CFCB944B806B5686C92CE563F0550000D7F968E000651DE805340F8A86A5072A7E3E4A60D478DCEE6732A194556906058E904BFF1A699665C4794E5EFE33912B69C5CA90D8055FF320307539D3E8B968312E0601BBEAB10000E0BA9061805561E41C80B632006E687A4050C893F81DD38D064AE6146C1953F24150F4DAB56B256AFFA959B7E7F17F0CC1975257996901000EE0EBD8B0FB54359495FF4736FAB2FF02016DF271B63E300E0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (105,1,'Rackmountable_3U_server_2D_(64)',decode('89504E470D0A1A0A0000000D49484452000000400000000D080600000019AF686C0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000005E14944415448C7DD57EB6E1B45183D7BB3E3C4CEDDCEC5491C071AA55442912A5AA5EA1314FA0408F11AF0048887E02580FE8350FA07012DADDA5012C581D23A899D38BEDF2FBB7C67ECD9AC442504FC414CB559CFECDCCEF9CE77666A00F84C9E1DC330AC546AFDCABB77DF736DDBC17FA544226368D45BE7DD5EB7F76FE7EA76BBC637BB5FC54F8E8F9F45A3D1662C167B6848FBD9FCFC7CDCB66DE4F3796CBF7303F1996958A605CBB6FCC1A661C0F53CBF6EC0506FD77521E4213C1646381C46367F869D9B37502A57D1EDF590F9E53962B1281CE7AF49EDF7FBB02C0BB63C13D128B2B91C526BEB289C57709ACFC1F3DC7F0CDEB66C346A353CDF7B84A5A5254C4F4FC334CD5736B15CBF7E1D878787088542AA73F1E202EBEBEB28168BFE049B9B9BC864320A30CBD4D414262626D444EC272462666606AF727921C48427FF640199AB80E4F2124E4F4FFDB9161717D1E974502A95549DA06FDDBA85A3A323F484B4542AA508CB172EFC31D31294791947B215FDF2D2BF6DCBC44A7259D55F658FF941FDE6D7B7B63665AD2EEEEFEEA2521EE291E8E3EAD5ABC4EC90808E2791E5C28CA0259B2E9CE5B1B5B5A53AEA32180C3037378756AB355484F48B44220A3CC1E4245A1C6F0A782ED8EBF51509B57A1D35619EAC730E96B1B131455650155C9F0AE05EA84412AB508ECAFCCC24D616E323F58DFE1A43224C21301A76547B323177D9473E5A70E198123051E1CB51F0741005438704ECCAF341369B55002D91CAC27212BF8F98D493956BF53FC9EA7C14419D128C9827A9F3F2F818AD765B4561752D85BA90D690BA5F02CAF2E70AB695CBC85231E6650AE6F225F5FC9D42328D0089DE0838D5B8BDBD8D6AB5FA94047C2D4CBC2F1D9F4A0A6C9B22A7881D5279DB0E6C9AE430926224AACE746154197D46966A88C7E3F8EEC747B8B29146FEFC0C34D35AE10C8BD25EAF5F12C8F4E13C4135ADADAD7143FEDC4C931F1E3FBE5C7F2A82DBB777707E5E40A3D114856EE28B2FEF89F2F2AF056F9836B636DFC4870FEFE193BB1F21278A745F64F467FE78439ECFED9124C4E38C452E4CB32B968A4824E20A942E939393AADE6834FC4D8F8F8F2B39B12D9D4E2B508649B314A63D43190FE5BC924CAAF1BAD03B985E24D4CFF19197300DFCB9249D7C13937421A1A15058FA0C94EC57C5206FDEDC41B55655A46CA4D771FFDB07A854AA92520349311BDFAFAEC2ED3DC0442D84F6C844056BCCE0B147C3D50B0878458021C018511D695D1841820EB673B304C1F6FDFD7DCCCECE8E72CCC3C01D80FBA7044910C9D31E40D5D007749DA5D96CFA86C8B9A8B8A0EB5F144BD83FC80CC1F57B68CBA99897138729CB3DF43A3D1C874E649EB6026F4AFA9CE48BE24B53302B35849A61B52F45A66D2F70CFEA3715A98E3131301260C9EFC9995995DF5EE0D87B5DDE9E05DA386141C6B882FAE434A73CA0D96A23B1B42CF9DF41B3DD856F28AFF193F2FE01020E87B210DE1F5C12D06A36B0B7F74C19270DF3A270AEDEB56A4588EC2B2272F913457874624C2973D06B63BFEFC0E93A30C5983D77E093CC7E12800809B8C3469F00F9D8ACD7B0BAB2E2478525914828A675DEB22F8FABB2181695C0BC968B059EECFD8C447C1E858B229C9083DF0EAA985E1E7AC5D0898672673DE801947DA15050A4333DB8DE4F4F9F057C230657805239B426A61FF7C7BA5614DFBCCFE8BBC9D0081D353F4F257D8F2146B6C94974873AE8B0F3C2C28202C5DCEACA44649AB2D50F0710A4AE73129532329669A1EF10ECC734F2D4E5C944B95256FD098A9BE6C3BE94B8AE73F3F48851542E8FDFA0834B3AF09B313AE3099260F5F14D32B90EDF9A1C7A0DDFDACBDC910274AA0AC6361550D68B3357790FB09C104A958A02A9D3A02FF2E6373F9252B272DC69E73ECC1C292072658523E3D8774C36C6B682A40A41EBF3B7278A21C1CDC029F3EB8B17EA6244F20EE452C64D139C2ED5EAD047EA8DB6DA537FD0F18FB96E8FBFA54FAD29C45B720BADC93C8EF84645021A1253AF4AFF819F5F541BF725E36B6CB97BEDDAB54F45C6DD747AE3EDE564D28B4D4E7AFFC7FF0B640E0FC79F3C7E34250ACB6E6C6CB872427DFC074BDF049A3BA6FE770000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (106,1,'Rackmountable_3U_server_2D_(96)',decode('89504E470D0A1A0A0000000D4948445200000060000000140806000000722B38EF0000000473424954080808087C086488000000097048597300000A6200000A620151756B480000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000B874944415458C3ED59596C94D715662780596C30C61B36061BB3789F7D5F3C8B67C6C68C773336366631061BB3DA8077309B6BB0C9F290B45486B411286955A4F25A21A552D53E943CA42FAD5AF5A595DA8854695A454DC9E9F98E9961E667680B813C547DF8F4DFB9FF72EE3DDF3DDF39F7CE9C3973E6B430EE87919E9EFE379D4E47C3232334323AFA3F87515C47461EF5F79FFEFC9B845EAFFF323B7BC3C3B973E77E909090F0417272F2FB4949492EF6F99C5F30281AF3E7CF279DC5467A86D668FAAFA1311A9F86213E6C1E2F7976EC8CC05B1D94ABD6647EC63BA658186711772CA659E8A2806F9407AA68477D039DEAEB278BC3FF8DA1A0584BEC78F1EDC2850B29252585B66CD9423939391F82803FE246414101959595C9438B172FA622959A545A2D1D3C78906A6A6AA8ADADEDB9D1D2D242BB76ED926B6B6B2B757676D2E0E0200D0D0D919A1DD2D4D64E139393146C6CA6ABD7A6C817AC25B5464B070E1CA0A6A6A617B2093B61ECDEBD9B7A7A7A687878985AF8B7CD531143405199819DA379A5B0387C94B5212FB2B84B4B4BA9B8B898B66EDD4A797979BF05017F003B98744949893CB46CD9322A2C2DA38DB9B9E27C3811B2A40426190A85E2DE8393BD5E2F1D3D7A944CBC024F9E3C495D5D5DE2249600898E8A9D3574E0F061AAE0D5DF7DECB844415A5A1A555757CB73F1BE8B71624CCA7ED8C077713D73E68CF41D3972843A3A3A6411B5B5B73F454099CE4CAEEA06817B67E32C828DE4093691B70668A68A5A6017F9EB43D4DAD943ED5DBDD4D4D14581FA160A34B45065432B553602BBA9AA6937F50D8F53FFE8381D3F3BCA2AE2143B19EB732204A8D56ADAB76F1F6DDBB68D366FDEFC3B10F0FB8C8C0C0A0683A452A9E4A1952B570A015BB76D17276235363636CA33D1D8B3678F3858D90F9C3A754ADE3D71E244C439009C82AB8EA5A6A639445726AF52556D3D5D9C98900848E7B1B85C2E19647D7D3DD5D5D5C500241E66D294FDC0C0C040C41608C0157D1803C66A757B6308F006AAE9E4D0393A050C9F67E7CDA27F645C707AF482E0CCD8451ABD7C95BE73EB3D9AF9FE1DB90E9CBF4C83E3C0151ABA004CD0F0C5099A79EF0EFDE0EE3D7AEBC60C5505EBC54E7A667684008C0B8A806B7E7EFEAF41C06F323333A9AAAA4A58C143AB57AFA62226A088C3851305D5D6D6D2CE9D3BC531D140DFB163C79EEA070E1D3A24C4011E8F4708C4CA8653E11883C54A9575F5347CEE3C05D8F1172E5FA1404D1D65F058601F1150595929EF46A3B9B959BEADEC0730161001F2FC7EBF442E7EC3F9E8B3BA3D3104F82BABA97F60884E0B869F6070641643A37486719631303C4697262669FCD2048F75820646C60483A3E768280A63E317E95B53D7795EE354C9390D7652D3B36222A0A1A141160AE7815F81809F73E5F3E58E1D3B2441200123491495A92471E919CE7297C0EE740A1CE5E58272B79BBC3E3FB75D02A7EB092AB8DFE3ADA07297FB09D849809FC9D69BADE467C79F387D46A4E8C88993224520DDC8D1E1ADF03191EE88ED303C1C553E7FE0A97EC01FA8149BCA7ED8B6391C64F5C44680C1ECE271BC3AE0FBB0B32E353342C09A356B64517204FC333B3BFB6310B09409F80B5633B73F4702E6DF545CA626A3D54E1E76C40BC1F7042049093D4700341F3900D5CFA1DEA34C4490B44CB88B9D08B8A351F1EFE1F90F309A2DE4F00562085069CD54AA327C6DA8342632DB7D1C75D5D46CB2D06EAEC48A43DDA4AED9237652D6A54708E0FCFA05229313F1278B162DDA0E025E4B4D4DFD9465E611B77F84049C959545255C054186201D66B3997C3EDF533213080484CD781284F7003C83E882F42037A0128A48106BFF24573F01BE4282AAEB1B29376FB3BC8777904394C03D2C16657F053B19B20529C5042141904E8CAFAFAF4F2A2265122E2E29A3A9E9EB34C1F9A7BBBB87666EDEA4504B2BBDF9E65B74E1C24552A9B502B540C7155A7C6C2F2C2193D52BC9FEFDFC14BA9FBB8A5EBBFD31A55EBA2D769253D22204B0D37FC685CB578585859FC0F742C0DAB56B41C057DCFE0912F0C68D1BA954A31139B05AADA2C5D052E5A4E1505437F11C059D86B3E104683F1267741236F21E0312748D1DB0A3AE81AE4E4D53EDAE10A571F48134542FF1741E5510AA2F653F0840E5152F092337A00A524A5051898A376763BCE91CA5B63D1D34C905410397C4E7CF8FD3D98141D21BAD64B1394967B090D9EAE028B2B13C5AC98A3EBD3982C26255848073255B69AA388F32C6666873CFB8D85993BC2E42002BCC879C8441C09F230470D2FB142B94DBFF4002E4F248F6002A9E043F28138443E04825506363452AFB91F4A20940BBBBBB5B56221C63B6D9457AF6741E14290AB10370451504D2C3F6407E34B0CA41AEB21FC04A8F2600D50F9E05F9F89EB20A2A55E9E8F6ED3B74EBDD77696878941E7CF411F5F41EA3BB77EFD28D1BDF8DE9BB77EF1EBDFDCEB7699C23E3970F1ED0BEFD07C960B20B8A4A3442C0FEFDFBE98D603ECDD46EA2B41F6653DE44A1D859BD262542C0F2E5CBFF8E39C410909898F810A1BD60C10249C0D82468747AD2B16EF23D9914261196956880005426CA7E381C2B0F5102594004A17E07212851CD763BF938F94E4D4F53B08937625353B231CBCACEA6A54B974AE582724DF95D4CF2F8F1E371C782EF223AC236610B6D8C2F5E1554505446CDA15681DDE9A1FD9D5D1C9976DEB4B57324EC8AEA73506B5B07D5739FCBEBA703DCA73358A9A44C27000192D42D6E0ABA9D54E776903A64275D4DB9F427AE4E16E763BF85248CB96DDFBEFD4F110258761E422B972C59220918AB5EFBF8B840CF49057AFDD2619D8D003F979EB8A212C215A49B383A5E36F4BC88944958A3B7915A677D65C0F7616755E26A2160DEBC79C4724F7BF7EE45C91F21C0C361F11912D78A152B240163BB8C01E35CA59257928993B0C1608840FFBCD01B582BF1AE514A453F6BBC466F14E78FB0DE22179CBF78499CA366E94099697738A5740CC31E85E87E9B7D16568EA8787071A90C7BB06FF7FA6277C25CE9215210E1884E48AD93CB6CB47175F3BB685B2C16C94B681B79078F0201B20B5F20C2207F2854701FB9C866B3495BAD9E8D8C15AB92840028CCBA75EB241A0B0A0A1EB2DC9783809B0879843BF41F0958C309D8C4460B4B4AC9CE93807118C140A3814A0372A0EC0790902009900618C40E163A1CCE010EAECDB1EAFBCE0EF20E98F701C74FC8EFCCF5EB45AE202570821290206C6494FD70567F7FBF4CBCB7B7571C8384DDCEC9175218AF0AD21B4C224FC839B80FC786AB29547D20076DF80036D186A3F10EC68779C26F500F381DF761175520DA46560FD859BE223172100785813C8348CEB5B740C0DBA8FDF102F41F0918CC5AF883A51AAD1C4F605098B872EB0FE7A2F288772C80E40747803C3C87B083E35135E1EA64021001D3AFBFCE4E69A4ABD7AE515DA845AA204C1EA4C54BB4706ABC7B7056BCA3081CFE6121B4E328425105198D66991716C6860D1B22B92C272747C60B67C21F78062463178BB6960B149082364E35512C40D7796325676300DA3A9D41EC2424AC0897A08453072C4E8C93BFFD0E08B80E66601021C8C941420EE1ADE3DD6AC6E3AAE47993301C859587500521F83E1C8767E198724E88D07CEC05A2AFE919992281700A26F2ACEFC61B0B220063C7154EC222C0CAC6843BD8BEB20A3221BF8944EAC5999B366D1222314E48312A43AC74AC5A2C50D858CF118AB96051A25809130287A28D3E94E1681B9860D859BA6CB91000A571B05FA10688A4FCFCFC3740C0391C3FA08483711C95E2216779B9244A1082DF301AAF0C850461A07074343071D4FCF10EEA40A69DBF8FC337543FE1E36854419BF3F329373757C2F445AA2010A4EC0791784F5905151615F3CA76BD3214B384CF1290200420C742E6A00258283CCFCB20A009E5116A668415FE13809ECAD98EBF92F4565B7C58C2B046A07B06629E31CFC26877C6FC211306487FD69F385F076A4EC2CA3F648C160FC3FDEA60F53CAE82D6080109090954CE0B0F0440553821B78180058C6966E75E6A6AEA8F3934FE8AE47A98374DFFFF4BF2E58095E20BD6FE472C6B9F252525DDCFCBCBFB29FFFE1ECEE1FE0557D41B7370B24B660000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (107,1,'Rackmountable_3U_server_3D_(128)',decode('89504E470D0A1A0A0000000D49484452000000800000002308060000005CB6028B0000000473424954080808087C086488000000097048597300000DD800000DD80134E635620000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000011734944415478DAED5BEB4F5557165FE75EDE70415E0222E005441150AB83566BA7BE5AADDAFAEA64267EEB34E95F30C9A41F26F365924926CDA49DE9A49999F443D336D1D1F888622D3ED00A6A15F0898AA82008C8FB0D97C7E5CEFAAD7BF7E1DCCB3D176DB4A2ED263BE79C7BF6D967EFB57FEBB71EFBA0B95C2E7ADE45D3B4583E6CE4BAD9738CA797AF0C722DE17A8CEBB72CF77BD36150DAF30240707070BE67C1515772B54E0781FC84F2A801103CF5F4D8D898E3A506404C4C4C381FD618163DE3055CB46735B6218040B1435F5F5FCD4B0180949494743E6CE2BA85EB5AAEE12FC9823DEB72CFC00E252D2D2D432F040032333341E32B0C5A5EF03359B06739369886338A1DEAEAEAAAA71500F2F2F2E27C1CB8B817D54B7B41C0546B64875BB76E0DFCE400282C2C2C3068F98AA7E1C04D67E14FE3F90C73FD5EB1434545C5AD67028037DE7823DC63C3B7786C7AFA2F767C5ACEE781811D4E959696F6FF68006CDCB831C3A0E56B9403F7735BB417184C235CCF2A76282E2EAEF20B004FD2E56FC605B6D96C4976BB7D6DEE8205B480EB2F650A2D02170F0F13C7F2D36E6C0F1F3EA4AAAA9BD4D6D65ADEDCDC5C1E1C1C4C56AB15C9B7EE8181813F61ECBBB9FED6DFC3616161B4E6AD8D648B8EFE659503941CFB1C7AD8D8421D9DDDD36A5C03FD7D74AEB4841C0E7714191A1A0AE5A6685ECFF0F070D7A3478FBE09E2DFB3D50341414140068D8E8EEAF4D750FF80A2F801E7B0433A783CDE9CEAF6E3D12ADE3FE21CA7F89949648B8AA47006646B7B07A5CD4AA121C730B5777652535D2D4FC8F604DAAAFDE8714136AA7477F750AA3D53CEC79C633434E4A09EDEFE69058007B535FAE2ABF1ABCA4CA0454444CC03009255830D1B3690C562A1C3870FCB35A802D41631CE82191FA77C36071C7620C1F3745C580F6D0258E3DC3FDE0710A6A5A501A1D2E6E0912239E6CF9F47713366D0D19325342F3B9B864746E8EC851F688CC19A979B4BB76FDFA659B3663D35BB0F25802C5070C46F494949141B1B2BE32C3E71C2EFB31D1D2DE47C8EA600208E8E8E65F945D2D0E080AF5F47FDFDFD54575727206059270200631EBB4F8B162D22F61CF507305174690DB2D2958A1BB474E9528A8B8BA38686066A6969314B06D1CA952BE9EBAFBF361DE48A152B282B2B8B8E1C3942AB56AD1210949797D3B265CB18B10E59CC828202A054D7D78B97AFF278DC0B71EED225010C4A4F4F37DDBF7F5F7EC7E21C3F7EDCF4BDEFBEFBAE8CFDF2E5CB7EEF03743B77EE94311C3D7A94B66EDD4A070E1CA0F5EBD7535F5F1FBFAB87D86E52464686C7F2FB63181725DBB326EE6A9ADF739D4D34032BF1216E462C3999514242424441FA0706C9DD54535D789D67D9ED3CF77161C7DEBE7EBA7BB786BA5B5BE5BE92D1046B758B8CE11778DEEF0AF2788BF4EAABAF527575B5BC580D5000E07203018B31C25A879ACB1A07619BF90D28000B84E5AF40CBFD15800B4569995150858B17D1CC84782A3A718A5E2B2C94C99D2C2D93FB5818F499989848F3E7CF37050080367BF66CA66BF3CCAA327FD07A3506CC6906B30FDEA9EE6B26962422328272B232BD174BD397CCEB7CA20F3704A2D8CCA52427099843824344D6F71F3C9868A1D1A4F379AC48A161A1D2B68BCD9263B09F7AD94C0A005CDE0000D376747488F2B1FD87EC46B112A38A0180722570085409004708A1936D2E04A016D96FDED2E1D085660600D5C6B7A07FDCC3E0C00058048BC53D9E0B159514C4E3703A9D74FCFBB3FA38356ED3D5D5258E0DDA03C01086D97BE3E303EF34A30DC0EE154F717FBDBDBDA29100819B01FC97C8080F00FC2C96D7B9A643424753288F7DE6CC44D820B2F25C4679AE605FCD8C49F818CF4A133B2386C7E5A4888870EAEDEEA42A8F2BE31AF7F669209FB6B6360133189CE732AA3300268641296AC7A22B0058AC4122D883070FD2EAD5ABA55DA09047518F591B0812253D3D9D6EDEBC29028E8C8C14EA5771F7BD7BF7BCB47971DE02CA484FA3A2E213F4FA8AE52C202B9DF000E1EEDDBB727CE79D7704B866000078CCD8C7D80682021B9595950960302E3527DC03D3983993FDBD3D74E97C294D30B5362964F43AD32687948695F61B72FA9ED8A2A20400838343A2E10A5C2E1F068082633E90B1C7191C45CB0A44322CBC2808EED4A953A2E55810685534DBA4B4AC6CAAADBE4509FCB0D5C30C9A2F07BA9E202CD0B4C7F6D4BBD8C6A7A4CFA1689E640A3B61D50C8CF8D819B2902D6DED545F7387A26D51C204CA71FC294A636313D9E7E7CAF92B79B9545BDB48CD2DEDD32A0AB85A799E7A981114E3CC9C3953FC33980238F3EC1354421D7672FD8411BED56303C745E90D0C806364948D46C69C509129D6569B744325D37C41330943AEC9FD844544CAB197BD57540105DB3AD53492413A2C76D9498E91D1C9C07C82502F5088E85B6C4CA3D321431968BEC62C26DAC1BCA9F68D8D8D679989BF08E24675FCA34B99002E554C73052A245325846DD186B7DEA22B57AE88BFF02C0B2209E58C1E39FAAD1C172EC8A56CFB1C3ACA4EE0F225AFB0D71B4AC74ACEB0BD71D286F5EB241250807D56056166B42729567CE2A4DF36ADCD751413132DDA865C011C5498AE91D131AAAFAFE71077B6D8FAFAFA06DDA134E26E62D1FC2F2CC2DE84A434B6FB364A8C8FA62557CA68756F237D91F91AFDE7C34F29B2B59EF20E7CE6F101C6BD00C0CE6F33AF6D0ADEC16BDBCBFEC0974146DBC7CE0F8CF6491664816200E5843DE0D8B1A9A9499C21381157AF5EF53B403850089FCE9D3B27EDFD95E4E46409FF9A9B9B252459B87021959494C86F78068B89480071B78AC5AB6E575363F32372B0FF5076A99C823DE06C6A6CA4EBD7AF8B7D5BBC78319D3F7FDE7401E1BFC0C1844DF757408D6FBEF9A6F810088711195DBC7851C263D8568C171104C66566F32CEC9BECD8B19D7EFFFEFB1CE6165165E565FAE8A33F42E3E8E38FFF4E1F7CF0BEF4F7C9A7FFA093274B7416F4BBF006E751DD1F1A1AF4C83948C068738E50C2D81085BA9801A3E32978A067C217F3610056F26BDC4F12578B1E91191D376E04155AAA2200A3AD0F09091534032848049979F2680F01428BCD984269379C41F407C1B7B7B773181445393939A2198383835E4280F6E7330B1C3D7E92962CCC67BB6FA3EF4E9D96F721BEC531262646429C40050E9CAE797EC68EF14016007A047BF418177C8BECEC6C796E22B231C90330602F5FB946FFFCEC5F1C9D74D38DAA5BF4F9E7FF963E9B9A5BE8D877C5545A768E41788717318435D11DD938F97E4848309FBB44CB71EE96E5A840CDE83C6A167DFDE846783C8DF3B2356961945A7182C27ADA4D4D005FCF6285F2DA00F40500DEF3AB09ED9F7851302F1A04AD32778142414C0842336BA3326B819E07C0B0A016CD3D86070F1BC524210378E3563545B1933A2EDEAC458009A7156306B87C1320C63C00C61E281270FAFA383ED18D8A60CC4C2FB41599C9D75F5F45D7AE5D63D08CD19A35AB9941DAE9268FFB1566A9D4D9A9CC58FDB47C5921B3CC72494CDDAFADA31DDBB73243B5D0EEFFEDA35DBFFB0D253058F7EF3F44950C2833C7292C999DDF300B055B3BC892F567D25AD911AEC89814056069793D3258469A8A74BC0060F8315C01C09B0142E8D2A54B1246A81471A0142FFA0AD406EF83C6639141FB73E7CE158A85C619934213A625480065E1F1C4711410CB66A809212B0F0F26030BBB69D326AF64CDA4FD514FB869765F258230573018006FB7DB850D903E0568312E5116130670B24FD2C4F3B871E3062F7A2735B089BBC6260AE0EBEAEE12DB0FC0B6B577880CD0AE9DCD0BA28AEB37AA04F8F01D0088368E723A3A3B69C42047F403A5E81F70C80654EE63388A060044635D8CE179906FEC6E5C7C688AB223C1A121F8FC4B68B1B5B53560360DF612CF066A035B2CA94EF6EC513130F803AA001418C3E8A83BA68FB145536A4A3255DFBD278B1DC3F60F938A888CA2B4D454690B3F007D9A9927BC0720D2CD8B9F823E54D613F90514386FFA0E1B9B00CC0D1B40FE4A942D962E965F95AACA57DFECD5CFF71F3AEAD5BEEC7CB97EFEE5577BF4F37DFB8F18B4DE6AC834C68809181D1BA78EEE012AA5642A1D706FE7D8FF9BE8B5F8BE00500A6D6A02B00846FB8FEA72BA81111D174FA32CDCDEA1612ABF7ADD9F01D54F5BBA7A0286FCF8A98D516EC6A34ABBDA7B6E525894DB8F780887912BCAED9ABB52C5A627B33F824D8FF1313A5D5A16D0FE37B34651F59DA9DB4C51D0C66A62465CCC00A8CF749BB7AF2BA0D6032410A12F00547A5B258204007C32978F09CA042800E8A9602086C1D1D5DA42994C870ED66AA377A9BFC4E573AD4DA621753EF18CCB6F8C0E0A567E425353334545C7502C8756B3390CABE205B4735815C62C80F3CED64794C421972FE2CDF2535E71B34FFBA972086A2B55188AC1189B9038D9FC39FA68FEBC1C613F50AD728491E686D7AEFC0FA464614E314F281FEE272424E8A60A4CA3F65BC04A784E25BA6026D57E09E68C6B38B76EE66C667618E17B41937C0065F7F10CAFB78D7F4BC0683EE4BACA9701145A4037F050077940291CBE210F80B00D83322B981868D6CC04E01D082541D7B087980CCC069E43BF101AEEE378FCE429790659487B463ADD665A4656D0668BD285959E9626A1DD9C39734CD3C00A589867A034364C04DA605C3077E80FBFE1198C0FF13DAECDB683619F311F8C07F35FB3668DCC13296FF839486FA36F5C2F59B244D2E1F02FAAAAAA68EDDAB50212388F30870849B106959595E2BB202C8519C3B3F9F9F912F120758F6711420304F0199C0E178DB342FB6300C81EBF7354F36B3EFE15007018F702D42743BA1F80F811610A57A0164284006A6ACCFF79059F91DDB97347ECBCBF02C70F82C07DF81300D499336768D7AE5D62BFF12E0002005079885A769E706F6CCC49F51C538787B9B5616870488485714100E8C7ACE07B07F816667900CC6BCB962DF29E63C78ED1B66DDB68DFBE7DF21C0080DF21F040DBC1EA676C79E319E4119037C03E059CCAB367CFCA7CD137E68E7C0380806BC81472C3351618B91668FDBA75EBE4DDD89BC0A223CF02F9E059E43EB66FDF2EDBDC172E5C6000C500EAB23760DC0C327E0CA29481CF87F4CD2008DD48FD13A1A0553A4318086F18EDB0803302A442415FD096FEFE27FB42060885D619C3388B67C073ED73286FFE3CEA6446C86121C0096CC296A6C5BD1D8C09E19D6081401E3E925081D8CB5F8400A5001831F7A9B6839580B160E2ACB2AC10EDE01A00C3358EF2A10DCF1572549EB932172A12516DD50E25AEF10CAE010C5CABCD2FB577037968E392F4F16B029419F08C73D862DC0DC4821716168A2D520040F8E5644710FBD3401984172807A026FF386DD4A0002C1C4199F0BCA109601BA34ADD62A76FDFE1221A608DC7D670F1E933EE3C00FF4193541F183384E9AFC22C293A37AB46B3E5661CF76F08353136B30F617CA38DBD7BF78A362BCADFB3678F2C14B41F0CB47FFF7E593C4456A74F9F964D388013EC72E8D021AAA8A8D053E2BB77EF961019AC808C225809055BE6F890A6A8A848C000E615AD97AC9F535724C8192C846496F2AD3C492FD90E1E5200C000306934526183382D23A3CC00C1D4F8B041D77CAB676FDE2C6132555E1E6DA021402D04850C206C99B1E0D330650290095CB2B0808A4BCE506E4E3625C6BB3F0EC1381B3C61DA7BEFBD277D9A8DCB93030F9808C2B85091ED0405230FA0B69B954326DBC12614A07C29D034DE03D0A12FD0B4BA862F807ED116E082FD467F2A3C7DFBEDB7457EB886C6EFD8B1437F160049E5B01705D7301798AFCAB98C70D81C141A2E00306A3FE4028604CB28D3CCEF1FC42CF0AFD9DF337AAC9B376F167402E51800166778983BE450AC93A380E020ABE9EEDFA45D3697B967ADDAEAF74CDBBAC46EA667E7C8BD0476AEDABBBAC42C8485850A1BB4302823990EA7F2E09F76E9E271CDCECC9AB41DDCDB8D3072FC396E131245C570C8CE6C5379A954F228584B800E7581E7BB4E5EE3117636D741157EE07A93055D007A41D203C804A54822C6394671F894F819EF009A15F9FF624F1964768A30ECF9E3EB9BCC9C79CF655C3367A7E9E7F83825343484ED7038D7B469F33D406868980000CA013309ED077B802DF8BA9ED9E7A2E6B107B94C5B7F60FBA8C1463255C4B2B7B90D00808DB23DA7C57F910A0BD5E5092FB5E93226F86CD89585496205AF61E7B216CE2457173BEA7F61BFA9F4FF9BDB7102A15D6E600000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (108,1,'Rackmountable_3U_server_3D_(64)',decode('89504E470D0A1A0A0000000D4948445200000040000000120806000000EB2FD8220000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000007134944415458C3BD574B6F1B55143E337E2576EC384F3F92268E9B280E546A692B21A41681820A02D1B267056201E207B0618BD8F03B58429108021595225E426AA29626AD481A52DB49ECD8B1E3F83DB66786EF5CCF8CDDA68BA6497BA5EBF1CCDCC739DFF9BE73EE48BAAED3D3364992A67179D7E817D1EDF47C5A16FD47F405F49FE043E1A97D380C0070581E1818784596E5CB98C74ECF3D6EDC51403D4C33F669A1FF89FF0B369B6D2197CBAD1C2B00B158CCAB69DA258CBB8CDBB7D1878FC9F067D5E20C06B3A3D168FC924C266B8706E0FCF9F31376BB9D23CC4EBF86EE7C5E0E1D333835AC771DCC5D68B55A3F2C2D2DC50F00801E468F7A3C1ED7952B57BEEAEFEF1F535575E4D81C3AE27C36B052A9106C3A3238B26C4B2A4A7D657979F98B783C9E551425C5EBDF443FC7035C2E17BDF1F63BA4B55A4FEEDA233679BC5EB23B1CD67DB1B047BAA6770DD38D5FC970507FCC72ED5FB7A78F428120EDE58B54ADD58F1C8C4AA54CBFDDB8468D864281408010F45F396B476766660814A1442241DB9B5B141E1DA6DEDE5EAA56ABD6649EB0B3B363DDBBDD6EEAEBEB23241E2CD810E379CCF5DFFFA0572F5CA07CA180E74D4A271314181DA55AAD66C5D40B90780E2220EE41511A1F1FA762B128463800602814A2BF1797C8E7F551B154A1C4668274497A62D674455D3C80D6A95EAD60CF3A45A3511A1C1CA47ABD1E63009AD3D3D3B4BABA4A4EA793249928954AD3A9532F0A46980DD21034E46EB2859D6010D811BFDF2F1C91D1913449C338BE4FA552140A06C57B8B251E8F11918A595DC47B64701188A9A929B16637E3A7A2111A9F8C1880B5E798FF91AF283A39499AAED1463CC14FA9FD5AA2D3F083D7BAFACDB7B4061FB971D0229108FBAC32000A3B552A9504008C58A5561483F899954D104136CE8C64B3D9A45144766F6F4F80024DD1C4C404E6CBC238DDD888DF319338AA26787C650675AFCFEB99C6ADADAD890875EBCB699349ABD7DAD194244B40DC3459A2F5D57FC5DEAD8662F180DFDE5EBC492A24E874D88514B931201C24ACD36000BE46FF2C93C9344746461C36A039303C4CF1CD4D036543CB1B1BD686E6D3FCFE3E495D84CB17EE1053E83F44A1D16C800D3205C7C6A924A4D419B75FAE74EE8C3F8BB76E3F44E16C2E4F2DAD034022B90D90B79E58EF0EBB0339A497FA41FB4CFF483B896AED00C0578DCF34F97CFE3A084FF7809C061A2D09067084406D2722411C31A38F0E0D892890DA221DDD81FF93D0EDC8D020F97D5E3A3116A6B3674E8BF963A07C9FDB433E3C5760801B72D15B4DABFBBD7DD4E37420D93649E3C863FD9391491AC0789FC74D63A1209D7BE90C9CB0590ECD4C8DD3471FBE4FEF5D7E932ECD5FA44F3FFE80C6C338926888B8D638D015A54AE1C0207D92BA4972EC2CE566CE8AA873EBE9E9B90F00D8E7BFC4D1152FD8EE17DA3940A65ABD4E1143F3DDBAE54467262A66072733BEB20CAC1C003A32DD99CA2EAC5740329C3E7952E8D43480D7E19CC29A371B539ED7E6523704B01F2D30AA4E2227F012AAA82A124D46A2343F3F8FFD0B424E737331BAFADDF7887016926A9186518BB113C88457C953F5E050D0DE1F760499016CA3757687F35EC10038C18EEF33BD65D932A0652435644EEB591A55013412CFEFDEBB2712A2CA09101BB12362035071178EFA7C3E920C001A88BAC811F6CEA7432A9DA60AA4C26BDD5F5F1739A265E40571BC4B6CD1B59F6FA01CD6609F46EBEB71CAEEE6208D2D9197D4964A1B0F92B493C9E1BD8E52ECA478324B057B98F4BB12B9551912D0CC3CE333E5CD1604F886B37A3B09B675DBC0829ADE31A0A628078F59994C274961C3260CE3F9A552999AA077B158A230640254A96030E7D16265E68292511184512C3F002DDBBABEADB416A5539B82895C3D74550140559C333491D49875997409D2E224EC1009DB6553A9504789967AA95CA97503208046E20DF00EAF9B65CD64403E9BA1D8EC6C57ED260A42D7CC0AF3198FE572B5BBBB6B9541A6F6ADE5BBE480BE3939DA917977333B62ADEE330592AD58A75C2E5B06CDCDCD11CEED8239CC1696D7D23F77BACAB017927208060EF87D629CCBD9BE3AECB290185712B68BCBB3B7CF2DEC1A1AF48BBD18544DEF00C08182D42E30C71BE641C464800AF4184151CF8D6E9632F39E0D31CF05BC61E7E0D13E07E82C036895B5C9F726EADCD9302422EBBE3D5E17CF795DD9909EFED037822602C0B983F7E3F9AA214B0E1E3BCFA0313BF0C52AC60EA39A717EE2039AA17D71E5F2CDF3009AC20CC831E266AD67247B7ADD5414D191C83C8DE49068D8303EDD99ED4122492583DAFBA0BB0B4671F9F340BF1C5DA6AB0779210F231800AD2B073098DD0C5B45ED2F5A6B158583CD2E600B8532EC72D14EB69D38957CE1A02495BCB86EA7214DD94E9BDB69926C0E9C22B7214906AB0D6C381C16A0C19E224BF0ADD9D9D92F71A34CCFCCBC1C0C8574AFD777986F9567DA7A7B5C90595E531E9383C01AE930F66D42622B2B7758AA1B380E37D2E9F4E7FF036C19D776E37BB5D20000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (109,1,'Rackmountable_3U_server_3D_(96)',decode('89504E470D0A1A0A0000000D49484452000000600000001B0806000000837D8A3A0000000473424954080808087C086488000000097048597300000A6200000A620151756B480000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000C814944415468DEDD5A497314C9157ED58B7A516BDFD186040864D08060900CC330C660048C070E76E0D378B9F8E8BFE0A3EF0E87234C842FBE99F0D84418026200316C0224168125A411A28516B4EF524BEADDDF975DD574578B610823C064C4A34A5955992FBFF7DEF75E66A345A35159CBA6695A112E9F438E437E0271CBFBDD1E41CE42CE416E039FC89AE2B31606C8C8C8D8160A858E03FC2FF06703C4B2D686FE5FDACB7443FF94C562B9108944CE0502810BF87BE6BD340080B61715157D06450938A56A2D00791746486861BCD382B59EA341A6A7A73BDEA901CACBCB73D3D2D28EE27B52CB1148E6FBE4BD6F61CE019DA6CE85C3E1E6C1C1C1E53537407D7DFD26020EA197EF8358DF3518EF72DE8446F09B690CE872AEA3A363E08D18E0E4C993D6E1E1E1BDA416841E3D7DF3FF0118EF836EA42745559595952DA74F9F0E7F6F039C387122636565A5899E0ED08FA12BEF03F6DCB7A11B13371338E9EAC2A54B97A6920C00F912F21BFD9EDCFE496969A9FD70531393AB7C688D2B8A44A2B2BCFC7D28FBCD39C8F5EBD765626222E8F57AFF9D9E9E2E2E974B903B4E519F36C8C7892F5BAD56D9FDC9A73165C3A1972CC3A8805657577BE9F263CDE9491787C399584929AF9B9D9A946824F29A90BEFA31C7CCCACB9774B74B3656564ADBBDCEB766F4999949E9686F55EBB3DBED929B9BABC4EFF7DFB4E179195FAAABAB13543572EFDE3DB1D96CB2BCE413BBD522BB77EE94F1F171D6F6AF3D312C0C6F8B086A6925B47A41418102FBFCA5CB5252532CBB306F4BDB5DD9D7D82097AEDF904820203BEB77C8FCFC3C0CE478ED392309C6E33C59595992939323DEBE3E191C9B40AF2BFE7C6E6EE6250EF6E65A4E6EBECCCFCEC4298D385347EC2B8873090D10A5A27BF7EE95D6D656F5120D408F99999B55E03B9D4EE9EEEE4E19BCA6A6460DD6DBDB9BF2ECF0E1C36ABCDADA5A696B6B933D7BF688CFE713946BB27EFD7A1539B373F3F2A4CF2BCB2B2BD2877E8EF57C68504AD795487676F6AA736EDFBE5D262727E5F9F3E749FDD4F9D0A143028E95FDFBF74B7373B3343636CAE2E2A204834115D5E666B35B25B7BC3C1E295AEC1F758D4576E25593FCBC5C350E72A42C2C2CEAD195FC6E2D30D12C22C140486E5EBFA6FAC30946E6F7BB76ED929696168E69A10182E07CF2535C492E86CD91E650A03132081AAD665E343D6C696929657154D298908DBC479999896D262DD0D28D88D850552D23A3E3B2AEA4589E3EEB87F216352723A5A2A222251972BC9292121551E686DDB7BA525FE57DF07C462E7541B8A78C55909F27751F6DD371D4E26466E4BEC42BA3B10C8E61C3FC2144765FFFC02A4612A95E5F099A73CBF8D4943CE9EA94D9599F249E661806A45EB3B3B32165004E40E58DC4446039A6DD912677EEDC9183070F2A3AA137992B057AEAC2C2420A180491000C0D0D891B0AD19B3931C1613F010C0403E283F1E8F95124468B16F3B4FBF7EF0B9DC2F05EB301C89F507ED539B12397FEFEFE7804F17B8FC7A31BC5644C2CD21A09EAC06B92100AC9062048E1A08C8F0CBF0033E44F4E80FAE8FDDEA7CAD1E68149341CD469319A44CB3AFD70FC200D300D002AF187ADA7A7472D504580B2BA53B68042A6F5C5464CC9710E93743CEE8272A949F349EF536520C32BC7C627E20BBBDD1A4B48117CC7E8C11E5FC61081542E0F89D255EE92E72323EA5BB3D74EC0B3A84F309C5A5A3F06E0FC664A8FB251D027DB34FEE6D89AD3959C1CE19D57AFDE5AD38ACB664F4B2A2AFA908B366EDC483DC370F8280DF023C8303C320BDEB28850F3C422408321ECE2723AE2C06B166B4ADDC105AF4A079118401A1279E2FB7C37AC8317C6B8F4148E4F63F04527A225233376AAC18A61B50A8B36B1DBD392FA5143C513BEA659524A49E619B7DB93A46320B092C4CFAF0FAF1E492C30D23325D3E390AC9929B1234A1E56D58B7DD927B699B1240A02E87EE8E8001BCC6293FB0B5BCCB12351783EDFBA0CF04FC4C20321BDB82015EB8A6504DE980950CC74C0E44C2E63FE30B7FCFC7C75258D703C5200BF673F69E2EBE62BAABF66E306793E3A26C545853288C43A8D045B5551AEC294BC6D6EA416F69BEB78D2457171B14AD0D4696E6E4E511FE7209D8D8E8E4AFFE878B2930496E4D7BFFAA59A6B10C97F172ABECB97AF207937A82AEC9FFF3A9358709B2ADE6842BE5B16A7CB231565C572F0498B1484FDD2F4BBBF484E5F876CFAFA6F1249886260D00E5D1BF44AA8D762F0926ED26C2AAC0C60D1D42406F80490EF250A1BC134F7530802B99763314AC8DB5BB76E8D274846184393BC6F85B044B5D96DE0F1456534E609026316824AC3AFF68CC99906D8B06183AADEB66CD9A28A071A9EC93D6ACA0151E830033AF3F99690C77C3239352D7EE425D5076AB4A739E1D91EB1DA1D2A32D340C969284CDCEE7450B53D2E0633B075B9F2E4417AA1E47F7B5732877BE37B90C4EA5CCF2D4A199B610084057BF71A062071580016AB162EB8B0B0300E7A6263C221D066AE26E889A59FE266F0373D33968435554DFCA70BC919E0DD6D6F97450041E598D469588E6D9E9360B2F2E238E666AED26848460AC7244D9837B656AB4DB6C129D47778E7E89123AA4CAEDFB14326604852F0C9933F9753A7FE2AC78E36214A869461BFF8E9E7F2C73FFD593A3BBBF5E8B3C4136C4E5544322CA0D4BADF4BB41754DA519E840D287E277089C7924D4FAE51722780B7137C02A7364FE0E0FE91A72AECE9A134C46A8DCFCC099A6310407A240120F87C87F74CBC0A14BC5357BB05FB8139F9F8A33A696B7FA4B8FDC183072A51318ACCB4C708A21E1C7BB5F31B7ED7D9D9A9E8E8D9B3676ACE17EF275B201808CADFFFF1950AFDB1F14919181890EE9E5E19C5868DF34E2122D8F72DFAC641B37EE411B57779D22B8FBB7A9228D282B574743F934967A958314FE95751B12EC71C30A2E700BD9C7512DB885E1A716E273C6AF8D8B1633967CE9C5154919797272E78B52B235302ACF1D7E04C8861EB8127D308B108D454B9B6805DA35DDF87BCC9160E05C5914E5A4C8F1F45F85796642D7F716464389C6E79F4E0B6CC22391378E6C0E3C78FCBAD5BB726E028158C9D2658C3CE87AC3A288A82F0F13242B8A8205FECAC97A1E8ABC4F20AA16714623749090763B570E3AE9DEAFAE90F1BC589CD8E1F0677221744F03C022F7CA584BE5B789CE271BB305F28254A4381452929CC16BB25249565859293E9148FCBAAEE33DC36C9CE70A8FB346B588AF233D5BD5502B2AE2847CA4AF2B026BF549416487141567C8CBC6CB7B890E6781F0D2DE911108D5780B12A4DE3D50E5AFF94AEF63378A0C73000C1E0D502C57DD86ECF2207900AF891B18B351AB998898E9B3573E399077303439857EE2419D61426C66B375B1420DCD24750B2B2660FE0D9D8E888DA4D1621E7F05B7323C57013466A4B3940DCBD1BF4F08427BAEA5B4632F99DD7A9DCA9942A880995BA319F90A68C230B836E8905933E698F7D1462635457BCE77B7CCEBC655031235ABD9BE6484AC206ED5250D86443B72F1901CBFCC0D880C5AF88001B26E0C07CCEA4C8E38144A122E456733FC54898DC9D520804CB41A33CD5748F2847994BDE5F5F56269E74B75A00DFE7C2987BCCC2451350733F9D847A8F8D8DA9BF5163ABF9789CA122DA6A4DA9825881517F564D3C9BE17A58F1F19E1515B1A073D1E8D3D3D3D2D5D5A51CCEEBF5AA1D3ECFB9B86B674EABAAAA921B376E28E059B0F03EAC6F42130D608A023F0DB0C24553C9FAFAFA171484C95976B17E3600A117270A15D4F412D2FCCCD814F1DED8D2B3C2A0E2C639362BA34BD76EA864F64DCB2D6CCA16156F123C1A9DDEC9791385E31234733F85E351771E79704EEE4F18097422CB2A5510DFE9E8E850499BC72D3C3C2498070E1C908B172FAAB11A1A1AE4ECD9B3520607A9AEAE96F3E7CFCBB66DDBD4BA78C6BF6FDF3E55AAF3148187813C4D6674F2DE62B5265110C7A30135FDC80545839F1434CF45D1ABE83D4619CA233D2ACDA44CA3D008E643370EC2F02580E67291DF1886300EC38C4605493B34E08FF7ED956BB75B65FF9E46697DD02E9E0C8F9A87DF9BCB4AA3D279D90F459C6BF3E6CDAAFAA944A265E5659487F46EB305E617E6A5408FC8A74FBDF866BDDA1378BD3C2ED8A4AA20B6DADA1FC07986F413E0CDD2D7F74CDDAF5B57AABEF37832E263B02F887CC3FBA5259F643A32930E2FE9AC7420620B8759A4011E53717A0F3DC5A0A020FADCF0402E76251C959EBEFEE410D66F27DA1F261D11186D7C0675FAC050CAAE91EF8C4C4E8B95BB630073E1CA55D57FA1F91B75CD2B2C06F07EB9FBF0D16B571DBDFD03DFF9E356B60EB6D132738AC5BF863F0778B28A62B9068EB8E45B50CE4347E695827DCA634DFF9F0D7F0087D6C04BA29B6A6A9A905C5DD555D5CAFB3FC4DF2479EE04678BBEB9115FE118BDBDF2F0613B7D20B4E4F3B560236A457EF4821E7FFB5F91DA02FB4FE8C9B40000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (110,1,'Rackmountable_4U_server_2D_(128)',decode('89504E470D0A1A0A0000000D49484452000000800000002308060000005CB6028B0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000017D74944415478DAED5B596C55E7765E67B08FE7D966B00DD8C6808D21CC432140C26D4842061225D26DA444ED43EE43FAD2973E54B7B76AD5E1AD0F7D8AD4AA55944A891495DCDC00370C210C0683C13176C0F384278C8D6D6C1FFB783A43D7B7CE5EDBFB1CCE3E26A354A9BFB4BDB7F7FEF7BFD7BFC66FADFF3F8E5028440E87E31F88289B2C6DE7CE9D7FBE67EFDE406E6E5E80FEBFFD9F6D03FDFDEEC6C68664EFF47477775757B5CBE5221C2CF3369FCFF7AF0EEEF3F77CFC8E0F67F4CB59D939B4FBE0B334D0DD450B0BF33F29614EA7134450281834FF873206F97F10A8D7DA0FD738CB3B31FAFDD4CDC1DF2DDD5429E37BF83BC15090FC21A2C2D929F204FDD49F92496305251474BAA868A69D8A0ABD3435E5A1BEBEC49F859EEFD35C6EB7F066D6E7A3BA9A6BE49B9991FB494949949E9E2E07F3D53B3434F43B37DFDF1F4BF86833D35EF24E4ED2FCDC2CBDFDD65BB46FDF3EEAEBEFA7DA5BB7E8D5575EA180DF4F277FFF051D7DEE08151616D2F5EBD7A9FADA75E65E7C023D8989F467BFFE35151515D1E52B5728272787B66ED942CDCDCDD4DBD747C75E7881C6C6C7E9B3CF3EA337DF7C9356AD5C49E72F5C60261752656525DDBB778F864746E8F9E79EA387C3C3545B5B4B2FBDF8224D4F4FD3EFBFF8825E397E5CC6FCFAE237545C5C44159B3651138F7DFACC9978228FF86F64F8A17115A28DEB4B69E4D1280D3F9EA0DFF4D651B16F927EBBF95774F6D5BF227F6232BD7CE704FDDDDFDCA42BD78AE883BFCC63A5703F396EE489CF8E989F774490E288FC6B79C5E178926E8C1964E5F4B85D94C73CEBBFDF630A3FFC8EC33CD2D2D2D25352528E83D2025373A0E9ACBDD07AFD7F6AE23139F9EC9B9DA3095686C5C5459AE5EB49BE766230A7839FCDCAB300AC322161894A639C2726CAD635C3DA0921B26BA2D4D4341A66417AA7676881C77F343A2AE3078221990084ECF57A697E7E5EDE99F24E4BBF91478FA41F687B3C31417EBE17629AA0086EA603F3989B0BD31A0804C432626967288A4E87E3875B5F527232ADDB50690ACD2A288745BA7A6DFD969BF95C5C54487E7F807273B2699AE7DE7DBFCFECE3B02881C318E4C0DEDD94959921BC8792DEBC759BFABADAA5CFAC6F26B6AA1B4AE076BBB3C0911C7D70F0E041CACDCDA5CF3FFFDC74CB10B893DDDCC2E2823016820B32C36659E85096D9B9790E0FE1675E2678D7CE9D54BEBE8C1EB1705A5A5A79CC03F2FCE2A5CB7488C74F4F4FA386C646B987C3E17086AFF93BB0B6F9F9F07D8C8D499DFCC39726E15DF77B232672B7A959CE2B57AC209F6F56C2D4C2C222CD5BE8C95ECC16C502DD6BD7AEA5FD7BF7725F1F7D73E52A1D3D72983CEC166B6EDC149A314E77CF7DAAABAF17BA62B5FF2EDE46C981451A4F48A16DE7FE9D422C345AB5F43C352599CACB4A972CDD22E1E5AE939212696D517198F72E8788391CAF2D3E23EA9A8548E9696922938989495A53B49A06FBBA658C45E683B5BDFDF6DBD4D1D121B2C137796C510033606D6137DCD0D01019A7A199096ECACBCBA3DDBB76516B5B1BC7B97EAADABC599874F75E13AD5AB54AFE1F1D1BE7771CD2EF2EBBE911B6E4679E7946ACB8E1BBBB1C2656D3C60D1BD88A1F51E1EAD52210849482FC02DACCAE1D428442555654D0E0E0034A48F45020B4BC55E6E6E6F077B69ADF59BB660D95949450FFE0A041F74EF100733CF636A6676C6C4CFA959694D2EAD5ABA8B7B78FF28DF9CDB1977136BA2304646D6FACEEA1429797FE65620F5DFFCD7F923F9915F7E446F3790A7B80F2D292280B7744CC21D29297AE9DCCCF145620780097CB29F737949598EEDF1A0A1C96310381A0DCCB633E2C2ECC89DCD0A2B1C828CB6303F31F67D313F0B9838FF510E27BEFBD27F1F4F2E5CBD221333393F2F93E870B9A999A64E252C82F8C9C63B79D2A03C0D23C1E0F25B026827970A7C96C55DA8F638DDC9B61E10084C0CDCDF27D9C115AE0D6417002BB6C781B108DF170C6B3A7026C8498962A1107DF496621604C7829585022630E8C8D0373003DF002C9C949E2DD700D4B423F781FF40B04FCB461CB33E10FF05C84D33C6665C238A53817E9DE421E0D6E19A7903B48EBDA734C10D8DD1162412E472F912D50723CCD7CE3BF1064E549F424516DF5159A602CA5ED05C6567BD9037EC1380973E5B0DB0A0FE0C7C3CD6CC1EDEDEDA6F6E01CF6000E19CC91111E24D19D40892C48031F514666D692F6BB97E23FFAC18295C4F48C4CD30452D312CCB8EB4E4834E3B00BEF1B7D5C78C6EF17AC2E1421AE2F5947E30CC226190B6CADACA0F6AE2EC1028F861E989A8C238D9556894BE17043860749E031123C1E53F353333296E86654AC980573F3B002A10D0FF49BFD15250C1B74A7A47B29F7BB7C76BFA954525C4CF7D833AEC8CF673E2653576FAF80671F83683B313D898E424FFF6F34B68AF256D9B97931B10D0C6B8431143CEFC387027203A602C0A2672C885115006D7ED647CF1F3E242F3FAD55FED096CF4C5CC1B158623C8791D1A9694A60DACA4B4B69ECF13835B7B6D35A66F8E4D494C4BCDCAC4CDAC75ADDC8B80273B0B51A9BF8FB7DDAC68D1BCD77FF70FA0CA5B3F21770E8286397DF79FF3E157358CBC9CEA61ECE64E031FFF4F9E78467F0443FE6BBCBBD8B3007BE89823260AEBFDB244A6C55007D1FF11F5ED0F8DF6F2A80C60B3DC3EAC20A10A269B6BA2B9CAE2124ECD9B3872E5EBC684BCC2E8EA368757575B67D8E1D3B262EFF02A776482D7B7A7AA8A0A0401410681FA81DB1CA2D59494068BA7AE38600BC454E3D6BEBBEA5118EE30821357C7F4B55153D7EFC58E8EB63E6C76A508EFDFBF7D3EDDBB765FC580D69E9264E19EFB3301106D6AD5B272171FDFAF5ECDEA724FDC473D01E326CB2B77F803D91573291EF9A5B3894B804904D323D972E5DA20CF63498637575B52D3F80BDC06B28B15D3B74E890B86D8CB36DDB367AF0E0818C0D7E61EE3E03E4826E8761B8D10A6014FDCCFB7C0E420116B5331E2A034190513192098301C810200C5882DFEF8F4928FA22EE979595D94E06800CFD00C65094C0D8988CBE03AB098F9548C14058210FB3F09016D5319390FAB4B477D0BDD636A10F4C005DD96C7D183B56438CC71CE15D405FACA6F72738A5045E018D500664472B39AF0678524B5210B691B3878A0DE5F4D5C56F685BD566CAE031CE5EBA22E931140DF508F0AA98BD965D8108DFC1F7504BB16B2AB44106B6CF3EFBAC58325C3A0C05CD70E9614C85CC244A01700DEF00A55659F3211E2060B5FCDEDEDE881010E25CDCE571D3E3B151332D8426C6132E98ED76BB6DFB608C24C511311AC0A3E088C40493AEAFBEB9644EE47F4E9D89C867A140F82EC05F82B50E11A3A1CF42547AF4B40DDF56A6AA2234B5B5CB815673FB5B5A3226272BC084F4C37CE37D57AA8D00D27168B7536C13F8197C8202B8622800E8E8E78C0BD911EE83263E0B06F80F3E26F99F63D60F6908100FC0028736C345C14A71CF6E32101EDEC5387644834858BEBA56B86EB868E4A8200ECA8309A9D5A21D7DF6A0E4F7B5DFD6D3ABC75EA04E0E1B8D4DCD42CBAD5BB7640CD00BEBB56B5ABBB0EB03BA1106B2B2B2E41AFD1430814ECC19CFC2A02C4C57255B7F1583D2D3E7CEB307A8125078CEF00070CD2D2D2D545E5E2EEFC6A30DDE159ECC8E67E01762373C09DC3DBC159406C05DCBBC68F88E2A00452900F8AE21A0ABABAB81CFD7DCFCE7BFF8E671ADB56B670D0124D98F8BAA7872AA6988D53A99687022C5216634FA442B89F685B03121B846947FD1BABBBB9F88D9D6B502B87CD4E381016ED5D7D3E8F86363BD225B848234D69C781C2B8AD747990F0F87180B9709CB1D181830FB40A05BB76E35434067CF7D9927EA17A0312D35253C0687AF8A8A0A33C57D9AEFAAE1C4EB03A12BCF100EB44141A120F3160588F600D67515A6698043DA5FBBAD82E39BE0763D77DC65660121126D0EF8393FE7B4ACC1002A4B833B229214A0F3010B61B11AD2B9E696D698C99036AC05CC33531D462AB96A458158DDF0A3518EBBEB299505D4DAD925C242D97794F104D60BECD2284CFCE1C361D372ED1076ACF58288BA3D5FF6B34268985AC598025940DFE0035A5354C80A904AFD0F8604882524865D7AF5B56BCBD2D5DED11117FDA31C5E7FE78E3D5DC800183B01A794576D8D08573A0E7B8E013E174560236B1C628103105E670D3215404A869C9F8716E669FBF66D12065673BAF353B470C1250C0875750FD7A59CF2251A61E75AEDEDB06B4349DA705FE3EC7D668CD40A16F1DC912354535323EEFAE76AF82E5CB9621BA481B260C6EED8EB9D16FA015241BF5A5B19CF0367B8EC7829EA8FA50B40135914BE8BC5359CC1D7E87201DFEBE153A1B52C11E1011CE10278AABA7F55005858635393A433C83781D2E1226335A04CA0E64F3FFDD4D69DA11A05669E3D7B36226D448A89D081740B21473040303C06168DB42E2133336637CCF119315A01E10D4E0B633528D43BEFBC23A9E7A08D87022601EDF83E5C2A68C38AE48B2FBE28FFDF610B84FBF7180525AB2287285C9285B021142C4C4129C13318CCD5AB57CD7A4074C3BCC1D73371562BDF7AEB2D89FB1F7FFC319D387142C200040F1E8167F81FC53C33C593D0F94408C8D66577F52CEE28840B9F7542AD3FAC00E1140A93C6043059300AF1C60E656B6E8B32B15D4A66BDD6941213C281C20604667561AB57AE10EBEAEEEDA36C8EF928358BAB659D8570D017004EB18A1DF80493902EC65CC9B36426989F663BA0070704198DD401FA0A5878A859E4E66451766616B574749AD989664E3B76ECB0AD3F8067508078B42B9EC27819461513D7F09668503C31648367D6555D5500A67D25BFE3B0DE8FF60032DF480570C8322A140013D27ABA5D9AB728AB7A6110A771D26E32D10D0A0321C142516BD06C00EDE6B7774C45BD567BCB541AE013D0857E1060BCF412B481AE787DEC321BD00CBAC070F100861345216870E8A184A8867BCD669802065003C07761BD76555415083219BB3E767517CC1D0D1E19452AAB3CA34BC10CBCF34C2FAA15DF280C1091024A21881C52DD82359C3C795218012BD05C3FD601D72FE0CCE6B936143E90C6B4B5B58956B7B6B6526767A7781A305BF727C852F59EDD74ECC82123253C4007F7EE3135FB1A832CE4B856C58D75E80EA3E5FAC043E0FAEEDDBBE2ED4013A74DA208664660F0B6AA62139D78E91825B1528046A4ABD6CA1B165EA000CAD3588775FFC5727D50F8019FD017F4802E1C5010518610D97A80E8B1E4BE110F4E72EC7B13B9E8A953A7441371402841EE5B50544C6D771B6905038D44A36011AF30A1966B57F932D6A20DA0128ADBE7D1E818AD595F6E300745157FC456B0B6EF1AC4AA5D3CB1143EAB078AB570E23294CFB4A6188B2A0A48657E51CF43067A92CAE8F48CD0053A13F97F4DBFE00190AADEEF6863501094109A94942CB4EBB26DF45A9EB13943E80A45D1ADB15A0C92FB58E7E788F22018031B63CA2AAB68C6EBA59BD557048B6898817CB122882A2263A5D37C7E35020358B564A91218A405764BD8E8812210B4CF6AC576028CF5EC69FACACA1F5B9DFE7FB93A9C42EDDBB99D32D2D3E9DC3797E957870ECA92F2D51BB594CBB1F979CE0260995AE8F8A18B2ACBBD07E0AA5EF2D41FBF0A639D8A8D92967E79F63CEDD9B14D96C2CF5FBE2A42C7021AE681B50E2DABFFD474297642168076D1A8988A07B018A0B50E1013042A06807055F8E282111AF87CFEFC79FAE0830FE465C450ADD7C72206481908D82ED6238EAE59B3469409780200AB89B30CA471004A88672859E23B66C9B5B58D0157BAD053D7D0289E209C050C0B3A87F081A6E32DA80091A3B6AF75F3E806D70F90080B41150F34603CA50BAE164680F0E63016FD5BDA3B6962D22B18008B41290608F64E4DD2871F7E48EFBFFFBE99A1D88140804B00585434ED1A36D6A07886C52CEC8B1C1F1F17F900FCE1181A1A922AA1AE03A06866170262D601540174DBB099061A8A80492B1802A3EC3456B3002CBAD8298082300802D68EEF600D62F7EEDDA2C9E3964D0CB233062B75CC24ECDA19E0896EDEB45176CDD4DCAE13178BD807B78C030A18AF018CD9F5D1CC0682D23111FF910E02A5A3C862AE05180EB874DD5A2A2B59470F8687C513000B0C0D8F98E0116E1D6E1BDFB4AB0682677806176DE72555705042F0096573F051819FA6B6D63430D658D17273F38DDFF2F979750BD6FC5F3784681600540BA14219EC3080E6BA609E5DDE6B971DC42254198DCD1FAA3860B0E20BA481A8A103AFE84EA278683E5E9FE5E8524BB6D2876D70996C99E01FAE539223330CD0069E6916156FFD445346BB14365E316949B94246D1273E0864AFBB372B2BEB9FE0019014672942B666005A07D07A368A2CB07E848978CC0A6F24752ECB50B87E8C0526C10D3E3276F962B29ADFEA6E973176C9FE80DFD85EE65B9A1C3F47FC57E6E0DB76A914BE03376A579F508088B1C00FD08235062B5DBA64AC25E5B9F9391A61A08AFEDE692FCD44EDC4C57E02CCCD69490B63095757E9ECFA4079E0459039C1B0200F782C78283538AB07C096B658CAAB8ACBF3CA1F1E1E2E303784583D80550974452E83B30287B163273A8EC45A9A8CD747BD0784A16915BC8A2E45A32156CB628A41F086B252A9B5FFF1C245D97409DA861887E03D3058B38A788B2EB2EDEC29168C403BC2100E582EDCAE365409773220364300E303EC567A30FC902A18247A3C8974E14AB56C8743DC062FE0DA9F6631281E10D43E10BAE21C2874746855BB88F6D0B140209FFDF8E23FF2F1B7DBB76F97E20B76B1E02370A94805016E5273F2A8B7BD5504A6130FC5DE8EF6BD90EE92870A5F388DADD8D6059B69B6F6B5E51B4411A08CA0071B5065499AAF077ABAC8E3B65F470FC5A521F48391F81CBBF5A29232612AD2406C88751B481F69E0404F37D3E5FE8174D11365DCA76DD39C9EAEDBB88906FB7AE9DE9D7AF37DC80E9B5A900662E515DEB9BEBEFEDF223C40AC0244B81E1F941F3C1C397C58B68DEB9EBD9FAB21435040F6D5B9F366C105967FFAFCD79C12EE10B075EEF215E113B68463E9D6AE3CFD533500AEE8C5A0672A2B04049E3A77810EECD9CDCAE0961D41E0674141BE6CDFC276BA78BB7D7E6C838741A8423BFFF5D74F7800ABFB8FDA123617B12710937BFDF5D7A502A6DBB5DDC6B3F1B13171D18891708B98945D7BF7DD7725A54185CF2E557CEDB5D7644B18FA1DE13C1E15B337DE7843B6A4E1002DC810B4DD6D69A5D68E4EB1FAEA9BB566BAE3E398CB9A2C7B02504BC7E28D5DC3F8C8C9ADBF7DB0365808167E304FC4D603070ED0975F7E49478F1E95B410AE1761C9AA680D4DCDB2350D567FB9E68619B2E6667DB2D885CA1DC214DCB51D3F10FF0FB3717DF4D147B6B4832ED0F7C9279FD0F1E3C7651E88FB9005168390462385D5F250304A01C01BCDB82C61C067EE09849011DF3179A0567343080F18C076698E69FA132BC4DC780B17C84B5134596E7B1688401FA4411817310C0C0B19BF3CB2BABF8AF2F5E6CE9B9D6CF11969E974E6EB8BE6A28BA6595884B243D2505EAC56DA8153A7653325180B7A3486E3004DD1DBE1B655550A0E8007D8BF6BA76C630306B0024FD083DC7DB9D419E9A61D08B46EDACD34B6BE834E3512C503A150E4E65E6BA601B940765AA5659ECF4001DAADE8512D5F41037E4D93C4A818BF0E92DF03F23D3027DD487DEC000B90B4DDE64BBB0521BC87EFE30CE48D4C4079D6DED52D9B4DB0F3E6E6B7F55271531082C9832E8C0925D695B1580A07BA745B57BCC5AC685AA13CA85BC0D542602ACCEF9A5BCDC5206C584D88C223A00DEF825FF1BEABAEDC6E91CD4E7974AE289E01C3A907484E498D783760FC50C792AEFBF9A8C7D7B080EE658D48D78E9A73CAE2886003977800B8CE74E34714BAB5C84E01ACB1C6AE0F268BB4126BD9708340FE6A01B03E19C798502683D252B65E6C055BB7A698F27373A8E6569D60008412FC321956069AEC56CE54B876CFADCA8B43AB93004D9A5AC2CBE09ECEAD68D54A2AE6F83EF678824A18BBC85E42E3378BB2C3E8F469F186CB7D57D71FECFAE87DE0108412FC0FFE75183B89E049A16C0AA0D3584EA8DFE017DC90054218AA8DAA486CCCA33C4623F6040EF3CDA69191917D9830629FFEB40A9359F02F1A0B292EDAB57BB7DCBBC7FD20283B01CB4FBF8C8D0A76ADDDD8000ACB91DD3E3C2E7EED6B6A36BBDBE69616F13AE979F982FCF1532E7C1F930F06C3DF4E6641FD09C76A7C0FDBC22028BB0A24B69961DCB9383F6EC1762FD9D02A3F7C9D930DB1D39679608C405495CD638405D096646C164965EFF7D2CB2F0BAD081B836CA1F1BEDBC3CA3F1B87B6D0C484E00C08159B63E0F9AC7D25F3181CA479C3CAB130E6F12491CF3F6DFE840F8A0CFC024FC00AF180E730AEAB81557CFC333F74EA9A3ABBDFA36CF9AE1D3B76CCF06482B3B33E07870307FDC20D8AC831CFB6BC07BA2626265DBF345D1CDE82EC0D6DE9626B7432D39DBF345D1C9E438C870401B6B6B424D6D45C4F66E370B0228E324D9D8ACBD838FF8215A1E37F011D33B0A6415FEE9A0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (111,1,'Rackmountable_4U_server_2D_(64)',decode('89504E470D0A1A0A0000000D49484452000000400000001108060000006DBBAA8C0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000084C4944415458479D97496F5C5915C7CFAB79F0501EE238F110C78EC7103B24C002892F90050B364402A44608F818EC800D3B5648B4045B04127C0044AB6101A65BE9C48E1DC789E324EE781EAA3CD45CFC7FF7D5ADAE582D8138AAABF7DE1DCE3DC3FF0C1598D9CF34BEA561535353F7E6E617CA870707690BCC8220B046A3C152EBD94EB14824A86B21C2466D612ED0A9DAA539A8DE76FECB7841BDBDBDC5AEAEAE7AD0B0465FB5D8D8EDEC6F44E28D60207D60EFB6130DF180E7FF45D148A41168FCFDA3BFF51DEEEFAF46A3D1DD743AFD110CD72291C824F2D66A359BBF77DF3EF8C1F76D7767C7E6E6E66C6575D5AEF4F7DB1FFEF8A7F718EA8CFDE8871FD8DADA9A8D8C8CDAD9D9991D1D1FD9F4F4B43D7BF6CCAE5FBF6EA552C90AF9BC8D8F8FDBF3172FACABB3D332998C2D2D2DDBE3274FDEE30795AB557767A150B09F7FF267FBDEC35F58FFF0B9FDF6DBBFB4EF3CFC9AA5B29D58981F86760E82A48CF5E4BA2C168FDBEEDE8131EDF7CC4C4F59B55AB1C78F3FB3B342DE1E2DFED3C93E3434842C2B31EDCBDDB973C72E2E2EECE5CB97D6A8D71DE3488C253DC59CF1F0E1776D6777D7A627279D323DB99C556B756E9777EB866F6461FBF077BF6F5329B09E9E9C8D4F4C685B4C1747DDE55DDDDDF6D39FFCD8365E6D5A269DB24E19E6B3274BF6C9A79F5A4D46A84B868FBF3E6999FA5FACBB5C749C66A727EDF657E69D62A186A817A214F972E2292FDBE1D1915B0EB705D6DBD3237E352B9C1CD9BF17FFE5E6D1379BCDDAD1D151375BDF3D78F060706565C5B6B7B76DF6CE82C5A29790D644AC7B5C826F1BB06508B3B8BCD0D3D3EBBE0B855319F6DC22FF237093A994251229A7403CA85B3515B7899B635638CE4B8998ED7CBE151AA049FF956D682DF7DA10D3ADAD2D5B5B5EB29999196784E5E5E5D7B8B95A6D5A1DE16BB5AAF576E5A4448F1D1E1EB6780D0F0FDBDBB76F5BDF7D7D7D0E7A8C98D09292F03C9FBED8B099D9592B97CBB62583E677B7ADA3A3C3CECFCF5B670707076D7F7F9F8BDDB762D1AE5EBDEA64601F8800A27FFDF81F9689EBAC152D934DDBE6D9A98DDDB8617B7B7B2D5ECA19EE9957A879220C0F0E0E9C6CF0EE5708AF3C7FEED0ED89BB84C60A063863E2DDBB774E50EC051226045B2F209413E4894D9FC050186193C9A43B07B4198403302E968A0E2DF05A585870FB3C013F84F346E11DE3634014C10010102E164B56566E8A542A4EA9F19B376D6060C02AFAF672B01F1E9EF8DE55B892D36EC860EC45E13A1015B176FBF66DF12E9630C0AF347E83C71022105E797F236FF37424455E283FE840CB0067121E01F7E44914673E9148B8084967522EEB27126752F282586B252C08BEEC4730CF0F637B033F5182C4B3C46E4747D6CE959F30605406DAD8D870E8F3CE2177614886E7452E3B393971EF8B8B8BCE48A71725AD87082039238F8CFD21064001561EC900F7224A56B76EDDB2A49421A978EA5692C9B7298140308611C2F00E121EAF3E6B855E4C5E191B1B7330F4C2B19F6F8C80D7F8E64975F0F3189290D83B7EA4FC1171394165D5FA7AFB6C7828AC2EFE2C4EC3015E1608848126EE640EC43C5D5B6F85403C9120968775EEC26928782891466738148D466C4725106150D20FACCE1CC231BC52AADD4E00E20C25429405EE32E6F7F7F79C703E441008EFC2B3BD8C318701310025145EAC076A0A044B675078F9FB3D2FDE39DB8E30CE832E104B3E402FB52CAD5E44B2E5380FB55CAC4D191787D1B883158710C60F1FAFFE9BBA0F2A484820607373338465D3CA5CE6E25CBC88BF76C283DCE5C97B9DF8E7DED7AF5F3BFE3E8307CD5AC31E32F9979D6D278F1078D1939C9E9E3A67F910D05A0706C3082E043C94384015E8944589F95662D1FD9434928A9FA0E61FA84A848C1BEEFCA984A6E980EAB5B09FB8A68C8F62DEE210C90C6738C304E1FDEBEA2DEA4DFE28C49E30CE03773FFB53421DF03E3E3E6E85149EC6604EB6260AE085610841D6D1AB78516C25418F1EF7AE31E82F4589782CEEB2F855C54D5AD07543CDCAD4D4A4A0D6E9DE5D6951485092BE7AF7AE53725E759577BA31486671B03B91F2840902FA41894DA592CED8DC457C93DD298F8406997B747454827F91D9B1C076B35285E53AE4C5FB952B57C2EF6AC86F46B0CF2A84E04567490E48E83E9F037CFE90214640C0379974CA6B447529162611B67B0D4291F6D2459CD22BE00DF206B1E72B42586703076510409CFACCCD3ADF5F202AE447CC721E5EE1DDFC17C163A0A0E13CBABEBEEE4A98F7204F8C822C9E7C82E59E376FDE38D478A4421E0132CC5DD70831E943006F0CA9E9413160EEA9A038BA4CC7CD520371BE4C1E28575CFCD7AA358786D11B6356160C199E28A19E7CEA5A5A5E6ECD81C6B2601DE68E866BB90315AA61FDE7A02C7E2E24B4D3AAE21CF2BC9EAAABF5E40CAB9C5041AE2602DA42A0828655B234CD8A2B293A80B2343E5509ED077F880807FF8D47803DA1D0210B0361422221D8A17C4D359C3BF6F776DD590CCB958C0141B69BCCDD14927BE7D43D0E094140F7FAB56B36AB76D5676EF8E0BD57AF36DC3AF7795EC8342287795ED0C2FCBC750A158C09FD111B1D19A1F4B5107057A1DA4488EB04B78915A08A2030028AC095D2E70FB146A96BCFC0617755777BC2AC1DC2150F5F349B0D78D19470D687001EBEDCBDC1C377779C099BB0C039A3A4F9783383D308DDBF7FFFBDCC8FB3FCFD10A1C5DD3CA968A10E8D564E690B911D66CABAF01BEAD6B655D6BAFA07068E92C9445DF0AD6A63A5C23F05A5769596B2064FF7CD10F3922E1642EB153D2B52BC9C4E67F237C7C6CEE3B158BEABA3E35C42D492C9548DFD956A4DBF5AA524BEEA422B8E7DAD3557D6F9AA44D51DE58AAA4E45463A1C1D1E2E26E3B17C26933D8B4563F55C77AEAE6315863F2B5ED2417235BF2F2E8A6E199BAA0C2357259BCD9CA8932C154E4EE2EA38B725EF8E72DDAFFF03D71BDAD934B744620000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (112,1,'Rackmountable_4U_server_2D_(96)',decode('89504E470D0A1A0A0000000D49484452000000600000001A08060000004821599F0000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000F384944415468DED55A59531CD7153E3D0BC332C0306CC30E12020910A0CD926C394E2CDB9162BFBAF294A7BCE40FE4252FF9092E3F265571AA92BCC68FB663612D18C48E0081166010FB32EC0CDBEC39DF99BE43ABE9B15D2EBB2AB9A5AE66FADEBEE7DEB37CDF39B7A511D125BEFE487A2B2D2DADBFD8D6D6D8DCD2B21B0E876DF47FD8323232E29AA6FD4FADA9AFB737776F67C7F9FCF9F37F676565618D5A3C1EFF3356F9255F778C835D2E17BD71EB17B4B1B2441F7DF4112D2D2F939D37E4F3F9A8ABBB9B7EF1F6DB343B3B4B4FC7C7D30A3C575F4F175B5B69A0BF9F5AF9BE7F7040EB81009DBF7081BA798EAB57AEC8B38D8D0D6A6C6890796F5CBF4E9B5B5B140947A8B0B090060606E8CD376FD2E4E414790BBDE476BBA9A3E31BE285A7951B8984C9575543B9B96E2A70E7D046F0807EBBF894022E377DF6C11F286E73D09F6A3F2187234E9F7CEAA16834FAB3293DC1EB2CABACA4EDAD4D1AEEEDA1782C06C593D7EBA5828202DAD9D9F9C2C1E32A31D8664B3A3B36876B7F7F8F8A8B4BE8F2E5CB545454C41B8B52C3B973ACA06DBA7AED1AE5E6E5D1C2D2727A0334348AE2036B016A6E6E66456F8AD0D68B1769617131F96C7353E66E6969A1E59515E2A8A325EED3782DD555D5143CD8A76BD7DE20273B4481C7C3EB29A6B1A7E3741C0AA5957BC846E5AD93DD666723E48A01DAF656C99FE3A5ADF2068ADB9DD4DAB2C18A8851A6CB47C575D544122C1A2168B4E40F4A4590FECCEEB091AFA494F5A4B17E12B4BAB6A63AA55F0DBF76B99D1839D8C04EFAEACB2FE4D9F6FA8628DF382FEE99999965304081BCC84A85E777767692DD6EA7183C434B1A24168BB352348A4423728FE1195F1F7EF81BAAADA9A1878F3AE9FDDBB769E2D933CA61AFF39596D28B972F29C3E92407CF69636538329C2CD4C61B77F11C0EFADB3FFE9952DAC3AE6ED9F6F4ABBFCBEF0FEFDEA1682C2AE36389B86C182DC69BA83B73867EFDC1FB343A3A46451C1579EC0883C34FE8F6AF7E49FD1C311DF7EF5322F1BA51FE75EE121D6A0EAA1FFB8C129A0EBADC0AF9FD4B6D174F146F3044CA147A9FC3E9A0EA8A728A6372FE37BFB4947A4757A9BC0747F17AF229C00E575A52449B3B3B747C7C945ACBBBEFBE0BCFA7BDBD3D3692C3030388692EB2670E0D0DC92018002B85D742A9EB6CC1682442C7474734EDF75399AF8C616949168267FE193F2BBD84E6171658E919B4CB02A6FD33E4B03BC83F3545796C946D7EB6CB426D761BBDE2F17BBBBB69BD788ADFD9DBDD23FFF4149594140BDC6D72B46073333333F4F4E9539A9D9BE58D6C0B2CCDF8A7C518B3737374747048D9EE5C7110C843BBE55DA1E5A89B1EBC11A03843CFF048316F3E41D170889666FD4A8329451A6F2953F0BFF999297148EC2BC2FA383D8E68CE6FE735E55030B84F3B9B1BA4712418217397F7DDC090ABEB3A8E77663C1E4F1DB0FE192B7B787858BCAAB6BE819C0E8728EC3B712EED8FF4A3B1A07C6F2179F2F3283B2B9B0E0E0FC9CBF00405EE6C6F924DFB81DCAF59FE29707A42C2273DF98545EC28C5E25CC0FE4C8ECED9F9790AB2214FA0218D00F5E47BFA8D63801C9EA2621A1D1CA0D5A54579F636F327A0B9A7A7878D147C890888E6E4E48865549308008E6A096A387B467E5B111F369AE0904C98621E9B41DFF1F171EA5DDCF3F3F38580E679D3F36BEBECB54554E82DA085E5152A617C4758E7718650515141C8147E4C83672A3E4BC24CA144C9E0D030C16773B2B3C5838F8E8E292F3F974293475454E0A13CE60B8CFB310D989FD4592A9304BEB3CC219169D40F740308423F1B200A0344A020740097704F4EA6D12213624579B9643F087B73BBC2998C82076303F95DE78CA6A3A383DE7BEF3DB9DFB871430CB2BDBD4D4E27C2329911B8D9F859EC895E56021437CE991522100B9C98983825F39D77DEA1C1C1413A10B23D692525C984E1DEBD7B749BF9E83E73415B5B1BAD30B9D7D5D5A594909F9B277B74F01EF372920A7FC2510F0E847C409CB9DDB97387BEFEFAEB534E58C3FC7781B33AF4DDBC7953D67B86390A0E069811EEB2C10027EF1D72B41B8838E6481A2891E01F1A9409E5E3C218972B93B3A17D216728C5DCA05078580A0F0D56362F369B3D0F0A3F62CE0099223C671872965757E988E709B011F15E88BD09F0804881E1ADBCAD9253BB5D1387606E63F4A1216BC2DAF12CA1C3DFD8B3E7021C31C172BBE0855A13323228C8DCD00F65E36E6C4CA2A7200F8E0007235D46321D3D890018A7A9A949F6880B33FC8EF5FF8027C8C7032C580CC01D99992EEAEAEA9217641326A809713A084F3D85F43C0E46C186C6C6C60810373A3A2A02918AE2425A76A6BA9AAA2ACBE9C5E434359F6FA08ECE2E791F7502BCD7ECE5687008CC6FEE53BF0123900508431D81B18034D5DA5B9A744346383970D37F3852A074BC03AFB59289677028739F723CE86072725264F573DD035DD5D6D6CA6FCD0441705AF4F33E16575757A510CB64ABADDEBA752BFFF3CF3F3F664FCD84E2BC6C498D5F442A29164E4338E91ED37754A2487135A78B4A19DE4A8ABCB4B6BE4935951534C999D3FCD46412A7339C3F847BBF7784FA6BFFF080CA6AEAA88CB335400394E7726548C615E44209E93152CD1F27CF5AE621A79FA55C140E3EEEA6CDF5807290C8C71F7FECECEBEB5B64C8AA72288F6525231D7DC8DE7F4771808D9588C2698D8B0E2B52542168554DC22B427AC184F0466421344150D87CF7C010E3B19BCA39A5DDDD0D4A16840639E7CF37FE24C48FDF804844DC10D70AF0D75C4E51ED9CD9A198CBE3BF915603360A19F2B046F3BC2A2989E98594954C4410F6A6DE2D2B2B131E7CDCD7AF23C2C93E789E097EAF3DA10FB6A9B41072F86A4C7100FF08EE0745F9C0EFF5F5F5531784027BADFAAAAAAA84ED81D70B5C1F0043A10C45C20C8C12556E9E1BC51D8C810DCDCDBE127C87015FBD7A75EA427482F4CDCFF10EC21E89C339AED821131C80C402CA53CAC9CBCDE1D4378BA32C8BF79584CF714E30006D70282B99D8C3126768E6E7E023C85C5E5E96FD0602019189FDEB9A4F41B2A1796034E55C2A02123A89D49D90B02661898541C9B068C87404005202512A023463B5D98BE061F0166C148B5ADBD8A043F6CC3D1EFB6D6F7F1233592EC6C00056C40F993082D953AD3C17EFAB3953243CF15C7E832033F4084634202AB91EB29409EC4794ECE9859DC19B4F8D45AAAD9E9B39007219826A4F1940852B2E284AFEE6C14E562C48F8EEDDBB426EE613468C8352AD88188BC0A2FD1CE2581452346C12CA8797A0CE28E6B06F6352EC1D1CA69BD7AE50C7A36FE51CE8F1E3C7723EA420CED8A4806279567DD8288C0359900962C53340826AADCD17A41E0409BB73B2E9DEC387A224EC1369ACD5BC5837649A3324A568C8029760CCC8C888E8C96874A3010C1953C21801A9FC3F1501361C0425249F076CE0B22A78173934AD1A4E355F3B2433A470F71F3CA0682426E7242FA767E880FB9092E29CC5C79C50C0B935946745E47BC1605A1A7CD4D969499A5CF0D016CBF255D7D2C2E232459106731D82822C168DD139CE7E3219967AFBFA2CE71D37D423E6B91F3D7A94CAEF8D843C3E3E41BBC13D2AAEC84E6780D723000F81CD271CA009C6D5710A0A8CB3F20CC01226DCB538D729E70C07308479418C086D782FBC1F39FE571DDF502EA7A77535D5024520E399B905AE034254C96923C23E6471EA0942C566CD7D583B3806F80B28C19AA4D0E3C805FF3C19191512C699110C1DE1B5807FE6E6E728C0F2713C80F1567B415481CFCCC9063C1EB280FDB8C3D0D01DD608999D1CC9C63A40194087A01409E7EA599028D9180108B12DF664285A70530AA8930B9B8630F3735C50060C088583C8CF9E3D4B8D8D8D860CC2268A40AD819842EA09D8C37132149C84A9D30DC6B33A32C09A4188502048180A8352155F282F948F21CE0C3907524E850254C1975503945A6581301864821B5001C300EDEDEDA22F2354A82C4841935E28A2F695D3D04F59611E230461617274CC0B05F478F4B37833B1E21DF4A5049A2A5633796281502E946867030779BE41F6CC50284C5DBD7D020D981346870151C099890EF342A655C1641E8B795426A6F078E2C54BC94E6252E3385E1B8B230B2B3E43B401E7CD15BF15092343C3853D2AA3C74D10A41BB59AE7FB0B56706C19013A09835CDE7AEB2DB1B639DB5163ADB220BC8F0A14DE0F38829729A84328836C910A5E6D6BA587DD3DF42693F003BEE3F8E3C58B17122D487FCD9B56F2D255E0F048F007BC16E7406880881409375DA030CF89B18802AC0FCE857D5EBD7AD5725EE806CFCD7D0ACBB13F9C612182B8BA9567985719C00841CA08D80723C8A19C86AA2CC86800D2C9A2A9B9590815976671563E37BF60593226BF1819CED3D566B808EAE9ED958838383C628F9C94F39FE9D939318C47F0B35A0A24AB1A742DB09EB6345DD3F36FCDA4247C8BD8E2482EAEA8223FCB815101B1F86A06E59C617884729F7006632953E5F5166D5537AEF9381C3211F12E2EF6C81001EAD454375EF234544500B013E1834109FD60ACB2CC27E109DC05999ABF1DC37B50FC58E1263C15EF023F31A73A6483C7DCEFFC56BE375C686C1012AE42B1B3B22A30D7507F56A0C3ECFDEA7819EB304310F808F3C2EB3146C9C56524611FAF2B9E88513C9690BEF9857939014594430FE65C5F1D2F633D66E2C7FBD827921445D45807201991785FCFCA1404A10F70984A5313890800298C08009942992A0AF05104DF35510142F9C0400543EA52139A9FABC20DCA56B0813990DB0356D4511116062EC0625C19C90C2CCC9B0491623DC6AC4C5D98071C607E8E4B9D928210A10C7C7786F28C248CF31FBBCD2173E3FBAE822844240C67352FF68EFD989FABFDC368D5D5D572C797C502FD58457D9857240CBD603DB8EB498D44C01A1607C5AB0F0B729682F31B0ECBC0D28208471693EE9C04D637A7688A6CF00EE60561C1985010140858C23BC3634FA5BF676048BE8C011A904A42D130A0D9EBB0706CD08A84D51A223AC643B130849C4CEA24FC6C7252B213F41B3FA240269489B599C91563619C747B34261DE000242E309A7CAC07B473BD11A650EAAC4A4500EF6D0306985447AD78591144583EC427790093A7FB7F36AA88B37A0E88521EAF0A158C0DEAC514E4B437375157FF205DBFD44E83A363F20ED6011286539837ADE0D2A83C635F7D7DBD1C0D2301501F8A8C24DCC6F2C2A1B0A0760647DD378135AAE5EC0790A53240AB79D3C9541F667036043852052B48581592F85F1D9C5F4B94410E8CC0579C7532A0E90AFC2B2BAA09566318F2B1B52B6BEBEB375819B1C5B93937D97EFAFF9FC5797FA4ACBCFC48E7AF5468ADADAE667194B87E8EFFA6D3D0D878AACA3A0E856CB37E7FBECD6E4FFCD402599FA1529FEFE8D9C444CEE8C8481EB22E86A96138253BD67376B4DFFF1723B17F48035214C70000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (113,1,'Rackmountable_4U_server_3D_(128)',decode('89504E470D0A1A0A0000000D49484452000000800000002C0806000000ADE0B05E0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000018BC4944415478DAED9C6970545776C74F2FDA11629584241609C426B010FB6E600CB6F15A13A7BC4C9C493EC5937C4F556A5253959AF990AA7C48E56BA69C54AA9C724D5C31C1363B062481D8056613426C0209D0025A115A5A52CEEFF6BBADD7AD7E2DC71518F0CCADBAD5DDEAF7EE3BF72CFFB3DD966F7878587EDFC3E7F305F56583CE379D39577E7C6348E7699D7B74EED67966F83960BEEFF745435252D2647D79DD11F86B3AB39EE5F39F03DE37EBDCE728C3BE5028D4F6A35780ACACAC1247E06FE95CAD33F01C0BE859D235A8F3840B1DCE7775750DBFF00A909B9B9BA22F2F3B0247F0B3FE002CFBFF83B6FB3AF73ACA70A0B9B9B9E3855180A2A2A21C7D79C311F8569DE37E84027A9623A4B34A69431976D7D7D75F7CEE14A0A4A4A4CC15C0AD60DD3F5AF6531B0D2E57F16D4D4D4DD7335780E5CB97A7E9CB4F1C8163ED05CF73F8FD23569E7E9D471D65D8535D5D7DE5A929C0C68D1B0B5CD08EF0D35E3466FF9894C783AE7AAB0CA0C3B163C77A7EB002BCFAEAAB3E07CE2DB497FDA15AE90BBA9F3E9DE556210E1C3870CD53017C3EDF87FA3EC7FDC5E6CD9BFFB16CE9D2141DF2C7F1E28EEEEE6ED1C0513A3B3A6A8F1C39F2EB40209C79ABCCEF0C0C0C5462E57FA3F39FE241FAD49C5C295BB55A1E34DC95D0C04062287911B8F17F20D2E7F34BFEACC270923ED02F3EBF5FFC81A0048687C42FC312F20564503FB3666070409292866468D027A141FFF3933EA8CC4E1DAB94AE8E7016893167646498393434D4D2D1D1F10925D8ED5EFEBCFDD143E9EEEA94AEF6365C822C5BBA549A5B5AA4AAEAB8BCB17DBB2E32283BBFFA4A7EB2658B4C9E3C594E9D3E2D67CE9CF1E6B8F3312918943F7DEF3D73CF899327CD6BF19C3972FBF66DB979F326E86334F7BFBFDC21EFBCFD964C9C38512A2A2B65C6F4E9326BD62CB97EE3863C78F040D6AF5B27EDEDED660D68E8EDED35F4BCF9C61B326EDC38292F2F97997A7DA1CE1B7ACFFE0307C754029F73C1C387AD0E940FC94B0BE64BEBC347D2D4D62EBFAA3D22D37B3AE49725AFC867BFF8AD8492D3E41FCEBD2BBFFABB13527EB4407EF1D79325343414B5779FA712FA3CFEE44BACB731D7F8A25CCF90A4A7A7CBD4DC5CA9BF7923227CC7EA25A8BC4F4E4E96CCCCCCA9CAAFBF4201A67A31C3AF5ADFA90C0636B2C667495E7EBE6AF8A04C983841A64C9D621E3C756AB68C1F3FDE7C37E5D62D494BCF18214686E3B238252559059469048B36723FEF1F3435C9A44993754E924165E2B8F1993261C2042A8892AED721D4891327495ADA3D730DF7F4F5F5C978FD3E3B27C728C0E42953CCF5B9D3A6E9DF72D9A8A1ED515B9BA42A63C28C88E7B347EF3DDEFBB1465A5ABAE417164784E47309CC3ED72A192FEEF77E459DDC9C6CE57148264D9828DD8FBBE5FE83267BE188BAB8DE2F5A304F72B2A7CAA0CAA5B9B555BEBB70511AEB6F9A6F1F7775C5A09A2FF2CA4C4A4ACA8A5280152B56A840A7CAEEDDBBCD6704DFA74C0DA8D634DEBF2F172E5C3016D7D2FA50AED7D5A99086E54173B3DC6D6C948ECE2EA9BF7B57E6ABB5CC292A520B7A24576A6B65FD9A3532A0105A517954D6AC5E65047EEEBBEFA4F15EA3747577E95AAD32101A34CF62DD067D4EEDB53AE9EDEB5506F4C87F7CF69F8658852CB974F98AF8F6EE93612C4C8572BAFA9CA113C5A8B97A55FA55195A1FB5C9ED3B770C52DDAEBFAD8C09194635288DD9D9D9B272F93279F2A457AA1435D6AF5D63ACE1F889933267769164AB32DF5214BA7AED9AA7D0F766174B66A84F3A82A932F7C44E19C2A7A6BB1520458A67171A2D8B2730F7FB88223AD7A6A5A64A6E6E8E04F4D91889FA681997911125BCD8F733674C57E3CC34F46270330AF2A5F9DE9D708ED8DF1F45FB76456D10B6CB510C4583094137822C59B244AE2A23DD9AEF33AF0103D17FF1F39F8BA616D2A10BBCFBEEBBE61A985DA6F76D58BF5E3EFDB77F5741FACD75DF1E3A24FDBA810F3E785F3A54696EDDAE9755AB56C98AE5CBA5FF5F7FABEEA44C4A4B4B55C88F5583B315EADF969D3BBF324CF8E8C30F0C1DA7CE9C95C73D3DA3ACD067DE8F30617661A17CF8FEFBF2E8D123B9A5F4AC5FBB56162F5E6CEECD5564F8939FFE5476FCCF4E49494D913FFBD9CFE4AE2AEA4D558E2D9B36C9ECD9B3A5B3B3538A740D68F8AF2FBE903A65525C98D0B16046A7E4047AE46C5781746CF967194C1D14A91C298300BFC5AA4C5E02F3F9465BBF2F82103E993C6982841C836014CFF6C7459191BB874DC6111A0849A61AC2F4BC6972CE1FBE1717ED1E28D4C2850BE5D4A953160502AC711D1EE2873FF9E413397AF4A8F19D0CA0393B2F4FB53A4D426A5D7979F9F2A4F789B4B4B44A81C22AD434AA6501C5682A56073108B4E7C91345818792CF75FA372C708AC273BAAE05D4B3365AFE40218EF5B3B2C64BBBFAD83ED5DA1C85C1BE5EB5E6D6D6EF05BB2807CFE1D90D0D0DC6D25124E284640D7C26297D1D2A64343F3F3F4F191C927BF7EED3AB50044852987D606898A8EEA64D951585E855FA17962D336BA6AA52E3D70795E55B52EF4A96BF4F0EF4CE949A6D0D329434282B4EE449E9E256DD57BA9C3E992C19E9E3BC6350DFF78B527DDF2B801DFDC72145BC9EFE0149D1FD9CAC2CD738EE51E4BB6DDBB61994DFB16387D96F5353532D2B60F2F336A93500FF08ED905A2F4CC5974E513FCAEC57C1477CA52FE6F1562DAD238DF9EC73ACD7E6C6689FFB7D3C3FC5D7BC9D30798AA165920AA7BBE7B16A7148662ACC35A800411802556C21126F78D010A67638AEDF1FB974386E2E1F8F5E629D74B53802DAA95326CBFDA66619A7D68F52E3869E28FAF4F6F478C743B141472CE28CAA2344857A090D22336B8224A96B3B5171443ADA46BACC6FBDF596CC9C3953AE5FBF6E8C4B15E04AD06936186177B82246986E61B7578391CD1B37A8E5B7445D3356B1C38BA189AE0589400A3EE3D77B15790800D72C5F2A6DFAEC4B576B65A56623C94917E5B2BE1FA70C5FB8608189F28DCBF2FDF08434D1BD7C57543402ED4734A64101E614154AC9BCB9B2E7E021292D5928E335E8DC7BE8B074B53D9475AB571B83B23C7B5AB41110331908B6EEF61D359CC951FCB6F7838AA02F74E9F7A188020C99D445E22A406747BB54545498887AB56EEAF4E9D39EC42C5061306A6A6A3CAF610DD291AAAA2AE3ABEFDDBB67040FA3201AE260F60455CA7B0FDB0C6DFB8E549857E6D7FBF6A962F46B5E1E90AA13276489C612C036CF56AD8EFBCC5475098B162D32743DD6B823DE0001B110E82180C2AD5CBA74495D5F9E711FCD1AF0123340BB35C8DABAEB7253E31B5CD7F1B3D5E18055F7F04883E0931A6812F4AED5988400DA6BB057788D657A0DE2258DDAA5BABA5A8A8B8B0D8F581B9EC19327EAB2A669E643FA1C8BB8B13194EBEF8328C080FD23C4E3436D0610BE6958820A2730185F8FFFB4161A6F701F8422D0B1ACFD8E066C300764A14801731908C0D40B741D1BC86C7D798309EACE9CBF206F6E7B45AEA8F55FD409CDD0C69A080641C71BB6A2C92B2953BCC1F318089A75F87CF9F265292B2BD3B824C7588F35141B822D9C572C0BE6CE95DD07BF95A52F2D964C15CA9E434794773E231C901565F2A2CBF28C7D24BAC65AF035CD50962A027EA79954414181CCD1E0DCF2D246FEFEC06805806ED0817B5CEB0D8E42805B9ACB5B8D3191E830859B2469558DE3261480D42936C570479AA46589208B7B2DB3BD82BA88020C86E9FAB6E2A8A90D20BC1DBBF668EA188AE4B3280074215C6A01F1067F678FECC9EB1A0486B57B0DF61D9B1E5EAEAD93DA1B374D6C72ECD41993C2858DC96FD6E37AAB705ECF055D729C3A86D700B55026AF619587BA48800A658C02C027940405E0EFCE340AB00BF9EB87B556806E17E0140CCC66D03EE007460235F10656089402495E96C6BDC0D78C19338C32E093F85C575717412222F430028415600DF9BB32E8DCC54BB27DEB2B724DE1B246E1171AB106188002A0085E039A10A2D735764F28308A42CD838C02B782907A1481AC8BB32E604EE12C458062D97FB85C5E5AB8C06443878F55993D98B4540D0A9EB1172F9E215CBE67EF5E3CE3D92800BCE53DFBE01EEB366CDA882BB2EF254601B80F7EB17F4DB36B0194A03EF437FA65198C76578AAC0BE03DBE76DEBC7986381E1A79409C6137C0355E9BB17F6713D637D2B0700FE0CAF85A67134D148C5439A9445E57A636B73E8C080B254261CCF50906CF4D748DA50B65C2153639E9AA45450631012EC1BA00A2FF0C8DFEC9481AD5454CD0EB8D3B4A0A1A9FCC9AF0F1FB3C976BC6E219866279463DC33D0C2FFA4614201601AC3C91B5F2BE4E79FCE741B75FD60B30B74BFAFA927501A42F43C30622F4A614A9AC3C9A302A25AFBFA6969C685007A83E776ECC6BD0547F726A84397E5FB81032316BBCB19A879AE2A43BCD8D4EB5D03D7BF7268C9A9B9A9BC78CB6E9258C950D50D3E8EB0F23253E1F058036DEA73AB14650DDE6442732AF3C7A744CBAEA120480F69AB1784655B55D79327BE1A208CCC7A048A3BEE4BB6908BA8304D50A76556E15205C09F499624A3029602A85580030F4B406300E6432DA743355A7C3CD250A487E437878DA1802057875DB36137163714F73CCD560CFC6003BBFD9151128420F1B4C50D2D3D3222EB4548342F88AFBA0F0F2B4062920AECAA4A7E5E5260B0031DCF2874EFD5BBDD295A78AE18BAB00BEB06A2459F8B790110806E44CD509938AD09C214AB6917AECA05BB77EFD7AF9FCF3CF3DE18C923042DEAB164B6912A19F53ED065A6116C244D9B07AABC5F577EE8611493F1390B63BB975A3C220B4E01EA0F5F8F1E39E01DC471F7D24070E1C30D5CB7883881ADA2943135842C3D75F7F2D1B366C309F49C1485BA1D716763AD5AFDF77D0AA95EEE9E3EE48A04B416DE5CA95C63D91461383C41B5C8351EDDAB5CB53C8EFBDF79E81F82FBEF8C2746689979005FC8036D242E29321875FA65F22D12E40F997E69275B40238908159BD69E13FAC007A916A76B21361C3682C01DF98281A85795EF936C2B083756C504624CC2452B501A0CD02E6CF9D63E878D0D22CB3347804F65B34D726DAB66920F7F1DC44D90702F442309B2ADA4C8789D0B02EA60DD6DC69605E6E8E2CD0F8E856FD1D2954BA68CCD437341AB4822EF808CF962F5F1E69C2C40E040B4D8968B7C1B9E97E2ACFF8CC9E6D1AC8B3A24AC2CABB38314081D213E583E2214081B5FE1104081A98238AE5C1303F51CE6A7C6366A62702C4169DDC513AEB63A11447C20810BEB65C11C8EF14590E96579894305C660E339A35A12911D4B236CD1AAF6BBC7C3F0AC15EA803A064288ABDB6EEE62D530822383D597D2EAA6165A37E9B1A27CA506C35D62BBD8EC733048C429818C10958ADD06315C031B6A9B169AC3F26088C4A016D1D0005484A4A962FBFFCD26CC6ED22E24D1E6E82368FEF2D6154DDEEDFBF1F69E0D0AA64B229208D35ECC637AD5D2DAF6E7E39DCD4D8B45136AC5A19111AB08F1BB0CFF69A08D146C15EDFF30AB4F26CAA8658186566DC0202B50D2ABB87C50BE6CBBBDB5F3306F2F21AA571D3CB91FA046BD15AB7EEC9EBB96EC518EB1A5C27A99FCD18A08BC93506716D4B243E0244F535462180BB0014A9040E87174B4E49363086325CADAD8D685EBC41B4CA71A4010F8D675DBA6EACE14689C7AEE609DD44BA7421C722AA4E9F8DC0EF818A4AA529BC890CB5ACFCBC3CC310DA9C160A479A4A234D1C94CA228D578592DC1D816189F65EBB269F897F38B9D4E734C72ED65CD5B4F4B6E9591C3D79CA74174D3EAF7B27BE0109487199510810392F104E9931025C6C2C6ADA7DA0E0B5CA77688746F77E4632B007D2A22E72E6C4498A94A315C02A415C05B0059851D6AAC287B0B9C5734D2B959CB8D70547F11A3EDD1EBECE7D6DBF8702F14C0A44F6DA80933F5366A5D17240E17FF3BA75A6A871F4D46963ADEBD6AC3148029D7C1E0BDE71155EFDFAF0A18EB4B8F7E2966C8E7DBFB9C5BCD2089AA728F1F5BEFDB2A26C89C956A031459FB161ED1AA34808D7CBBDB8FF8E7BF2EA8EBAE385D8EFD833E5793E976BB0196E0B0F3981E0680470DFEB8F89014641B72D0A555656987403E6906ED920097FE89E44BCB496890160B47B722F93A212E7FEA64F9F6E206D8D0A90B54B4A4A4C29D63662C2714098E137D4EA38EC81625C5468BE7AFD4638F75541601958A6B13847D36327832CC30680AE72680466A1993A3BAE097F4CC0C8DEF1FB7C8785B1478440A1274C57BD5C520806EDAEDDB8193E4C4279B7B3433EFDF4D3088FF0CF5E7411F89261C5D2E5A60D9E411B32E13D7C865736D602A5A02B39251C9BC54380315D8015B6857F5E434EFD9C8D606108074DF50A566C700861031E27892D946319368A25AD8109C402F859B74B326D625590293A6F28DC16A980A8BCB51A280C43348A6BCBD6899A504113CF2425EC41507FA00C4C738A3800BA501C942CB619342D275B66A882A0080579D34C2C70FB6E43C4D5703DBC821F899E0BEDF078AC163BFE9E6C017EC1EBF9F3E74735836C10301C27088C77BE31A80FFE5B7D5D6F5DC0A800CFE78F280041109BE1BD97706DAAC3667B7A7A3C6BEE898A491685DC50C5F34C648B805438C3AE681B05C0C260C84082E3EB044958A3D7355EB57AB7E2C64232B1CA93273D86D9F42AFC31DFC38FB178C673CDC92957BA17AF17909191316633C82B0B88450045DCA5EA3A7E09025042CAB608101B03B01F7A019C30E11C80D5E4449D2B9B29785D639908EC23102C0548B3074E080E6D6BD8765D380144B917E29B5A5A5D9BF399000925B056E4854ED0E3F6A1F1E8064E7153BC87167CABA50B3AA981B89B41ED1D9D72ABFEAEB98F8250C01FDD27E1983CA896286DB67CE2B9896867B01674201BD6B4CD203EF39D65CB60687430E9763BAA7079BAAF997EDB0EB669A0B53EEB0A6C350EC1431C7DFEB18E49A34C89AEB1D1306B9262E1C3790EEF817FAC26B231876082ADB52B964B50695A347F9E2C595412292AA1483063AC660FFB48D4C8721781400B5B6D23826F77B2167B68D6BA8079738A64E5D22592AC4651B66891AC5852EAA045B28949E005F1C4F7690625EA41589EC17FCE28200B78055D4C328316E74CA67BCD5804F047DAD50609423CF1D73AFF9E0089E0E2F0E1C3C6C703A9A63041E167D214A9BF7635A1F5C4E1B6F759C151C7DE86A3983AECFAFCA4AF5766CD9D1F714F3022E81CA020F06AB87943991FFC6147ABC6F8F9DE70827BFB942F0585E1933CD0D3EFA09E3D33D178FB962405FC3F8CAE31684B44178A3B6BDE7C69BCA3C1E9B9EAC8F7181B28CBC1506A2D204A7575F5BF04DD0810CF051804502D069EB668E44EEFFD69368318A481E9CE8F38F6687A650B2EC54585F2CDFE83B27AD95273EA77EFE12346A996AAF2620D4FB3E1627B05D6926D33A874E102995D384BD3C003B26EE572737866DF9172C3B3FCE9052693E0E8DBD36C5471528B4C82B1FFE0C15108109B79B86A23BD512782F0EDEFBCF38E5CBC78D1C09D71054E4A41D1810208D083DFB647C7E38D8F3FFED814658076AFEED5DB6FBF6DD6C4476EDCB8D1345DF81BD12C135A46E200914B35574D9AC58187CA93274D0FC004478FBBE5ECD9B306AD4030AA955E83F5D983D7F93C98B875EB56F37CDC11E9290D1AD25A3203941F5847D12C4A9DBB74592ED75E330860CAD58EEB2330FCE69B6F4C2A6B4F1BD579B4C96D03EDB3CF3EF3A41DBAA0EF77BFFB9DBCF6DA6BC62DC123262E1317103EACE273EA00D10AC07948F7A15627CDEC893A138865B3B03957664BC1BA20BF00C22FB209348BFC9305BD0611AB3D0593D84B847DB20D7EF0E30459FCDD36922CC1F38BE7C84B2525F2D5DE7DB2AC74B1F911C4EE83872247C2B002D6C2E2BC2269A0991CDF2BD0B2C2B3C660B30AFC2ED39E2872BB2B6291D9B3661A0420462116D85F5E1115E1B386BB88E415C12F5BB6CCB38166AD96B550765BBAB627946CF6657B27B1BD03201FA32693B0F505BDDF28409DFB066BF9D61DF4F6F649AADE14748E85F9CDCF96528C4FF1CA59212CC3F92D5FA2CE5CBCFB6C791874089F2D0C7F87F5532A26ED3A557DDE54DC6C5C810240176B12B57B957A6DB5CDAB5AE89586B12ECA43C3053F8AC25AC504999A34F80201CE7E7721AAD369CBC8DCCB5E123DD722A397D178058836D5A6128A4C2C02B87FA3E99C0588E28BBE0FE95EAB51802A14481520D35E8810609469AEF073687F380D3C7FFE7CA40D6C35D08B89639DCF33C19CFA532CF7CA952B52585868E0D9E6E236AAB79696A5CF9DAEB9F283E616F3FBB7C99326CAC9B3E74C4484B2E0676DD4ED8500B62993A856C0FD567989F88167E8B2CC4340F660A569074FCB957C550A52D319EAF393D4CA1FBA7E8C810BB1075CC67A6E22DA2D2F29FCE09EEC0157EB56E037E8615DD3385506CAE883CEE1595C18745B4552636E555438CF99C026FD634D7373F34AD20BD22F34DCA681FD03E10713E92E5588E2973097F43ADB828D37FA9C53BFB13D6AF7E008942D9E3C71725C9A3F91020A45272717CF9C32D53C97A357F65088C904D0747E34B276AD398DCB9128ACD50BE26921F35BC4C73DDEFF39E5CEDD704E4F7B976B41BE4E576FA3D9B1F6482025E11F759A2AA4D268918926D5EBAFBF6EAE0515384696E8B9B71C25F3AA9DA000E6C0A73E8342586CF38C8C08DAFB9CFB39299592922A3DA16E431B8645F48F6263E0AA10F7740F8FEC7F0829D5F91BB57A3FC2C7FA55F3370702C1406969E963D5A6210D6A7CEA0E9EF9FF81707EA236E4F53D74B5B777049E355DCAC821855C4FBAD427FB95E9CFFCBF4528120CAB2B31D07CB5A626B9AAEA589A22AD4F15A85569BA6E5D8CA2C55FAAB2D5FD2FFEB07AAF5E588E4E0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (114,1,'Rackmountable_4U_server_3D_(64)',decode('89504E470D0A1A0A0000000D494844520000004000000016080600000070BE9A340000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000009364944415458C3C558596F1C59153E55BDBB17777BB7BB1D133B89D3631B3B660C0F018440331026F3467E12E29977C4231AE505F1309911EB8819821092B3616731EDDD6E2FF1D6EEBDABAAF9BE5B7DDBD50C12641285AB5CB56F55DD73CFF29DEF9C1BA3D96CCA571D8661A4F173BB357F801991B7330A98BFC7BC87F9296CD8F9CA36BC8A0360B0D1DBDBBB803DB7F1E76DFCDE785D4B5E27009EF198CE80AC4F4E4F4FEFE3D77A630E989E9E8E351A8DF76834961F600EFE9F8DFD6FF2CEF0FC7774886DDB9FAEAFAFE75FD901376FDE1CC3F30F1DC761A4BF8747A1B765D41B3E879B1ED119B0E3934B972EFDF5EEDDBB7687035A11BDCAC59D3B777E1A4F24B230BCFF3F2BF1C6CD92B73C6AD56A75733597FBD9C3870F1781EC353AE0B798EFF16D5757974CCFCDCBCC5456904B323636261B9B9BD21D8FCBE28307FFCE07F2DD6F7F47B6777664606040CAE5126645D299B46C6D6D4B7F5FAF54AB35A9D56B323C342CDBDBDB12E98A4834D225AB6B6BB2B7BFFF25ED829188A4D3198162F2C3DDA7F2D1DC8FA42B69CB4F26FF28BFF8658F38AF118180DF277EBF5FFEFEC5E752874E434343128944EEF9F12E9B482424180CCAD1D1915460C8D760F8512C2613972F8BE334A5B7B7078634E4FCFC5C060607E4F0E010CE8AC864F6BA98103C0AA58BE5B29C9D9E482AD523C5624992A9140EAA4BA55A95F1F1CB62FA4C89C5E2D2150E4BCDB2247369548E719EDF1F508ECFEFEDC9D1F1B1C46351754EBA52102B1493485F517EFCFE9AFCFA37D764682443CF2BE71BAD20701D0C06646470507C3E9F6C6C6D2960AB6FF07A7E76060EB5E4E37B1FCBFA5A4E6AB5AA0CE2DB68342A8140204B0704E7E6E654840A8582DA58ABD5A58E4D4D08AAC188068CBF7265425EBE7C29D9EB59597EF6547A92292997CA2AEA4538AD04A3CF313FFBF3E717C98591ECEE96E977DE81CC9A727230E0179F69C8D76766E4F98B1750242689EE8454A1181D50AE54C4B26C294C27C41FFD83348CBA3C783420F1685852B188324ACB566E50CE30C4AA9585D49F8804DB08E5EB0D18CD20462361B11A75F50E954C464747657373334451BBB76EDD1A7EF6EC99EC0396D7A7676404F0A842E157198C22236E19A6BC3B370B07D6657D735BCE4F8EC5B1ED4ED6E9FCE34B2344478542727A5E946F2D7C43F60F8F241C0EC9CAF3E7E28361B66DFFCF7A111511E8562C956413E858595E926C36CBEA264B4B4B1B44408302192140426A95AAECEDEEC8ECECAC1C1C1CB4054D4C4C482E976BAF09A30AA21506A4914B4A29C2F91F2BFF74E9CDE1E1A61CEEE5657272B243E991911125DBB2ACB6F3BA811432FDC9C989822773F4B3BFDCC7334391651351CC6F6FC9FC8D1BE0966A5B16F7A9DA7776D67E363535252B2B2B629A265232A590B7B2BA06598E7A4F8E01D113250D136BA5713E9F5724110C05E5F0F05039238428E8C94163F59A065161FD4B817EF001FF2E2235C809B6EDC82914E33B7EA7271DC7B3F4BA8C6FF90D2795A3E21A25FCB6DAE2121A5E2C165554BD7BBDB238F91D7FB52CA60365D3891C7BE01B0E10FD3E11F0113EF83E14AFC3E820F369249D961C98BA51AFB71529E0E08BB5C8090CA3700B87E8410490A899E3E830547E767727E508516D3A4EFB3B1A4155A8A44E84120CA9B5224BAE59DBD850ACEF3AC350BF3D3D3D720C597E0447CB33C05B944FDDB4ACC74F9EB46531983E38A8015EF1E8E0C06613E7FFCADF220CBE790C07BC6B00B65D8034D9BA685D7494C3803C89528F38601A47792452E871C29670FBDB8347027049D37695EF06C145218F91D4838690E9EBADB24644B194AAAA81EF5895D0B4C89FBEB8AF1C651AAE03687806C1A151CD164A983ED4E1CCA32BBF612AE9F74CD7274F9FB5CB289E1DE3A74F054DB9C3714CC0689E50E23C061B33072FA0E80AEAEBEB534A6AA509772A4BFEA003B89710F0639FED801300552A4B85F89D1EFC9B93F0E5E039DC4F994407599AB2095DE6ADA1DC007E805EE6F8B8643299B61E349EB2989E7A703F1D408E21DB533F1AAF1180BD499EA99C7A015FBF4961ACD7644C46A2E181370572AD9F31A7A8F40B94322ACAC68991B56D0B8604D564F9A1A28434F3560F1A4E036B9E4A43652983CF9797975D52C4191194AF4031A00C658AF1BCBEFE7E37BF5BC8209AD87B18A6DB1F50161DC9B1B8B8A848BA8EB3743B8D3D7E55263502B8700FF003BA8E5C01E37B8DD7DF789FB9D1692A457920A3C71458DFCDBBA468BB8765100146C8CBDC3C8BB2B453782E9F51167981D164A5D846A530515639A96F3C1E53BAD160B36500F7514E20D08EA5329801E2733A88683E5D5A56CF7469F43A605C0B5229805FC2F632BA40EF0584B0D2254457047E9F4C2615ABA6017385A056A7A67217113984111918A3D2C353BA2847A70015227A1835A2E04296E9EA60B8F7901DB4DD63E006EED729C012472E6217DBE6ABE16155061918D6FB12104D47E832A82B03F64E32C9E7B420E5049F5F79986B1EA2A72631BDA6F231B4CB7416A3866BA7FAC66809E761349A5D240DD37B38299FD1F0AEF9AD86ED1A2A1095D6CD128D6709636437501D741A71B2FEF33CBDE6A41EDA483678EC70E9484F0AA87770FA3586C5D208505E47D40601195D3EF4D8CD775EAB1BF06E6E75B503D6BC18D988EC455F109041448335DCE7215497A13B3BC125E47DBB13443AEDECEE4286EDD25FD32541E67E12E944DDBC23975BED58B3C5F67682DCCD40384EA70320573542163D7B031D16A3C097EA3203689710113DBB7130595DAF5967A7D0E3B3D767EBCA0BD428D839180CA10D6EA87E9EE30804D88FEA41C2ABB69A194298AD6DB55A5193C439790D971D942BCA1A4600AE5DBDDAAE424493056EDAC2CD94BA524F2DCBED4A07DAB238A7D10986E144CE09548D34523000B91A01F3F3F39A7F1A0C715EDF0419C5263C4321CC1FE6A2260EDDAEF2D7FB9F14AD9652C18C2941263E2F9CABA8F31D6F5FCC6B929AE60F1AA15B54EFD079CD94A02CD58015CE702FA9A3B4BA757E15A85B5858E8687DC94FDE3E832949036903F5724B64B3CD43741CDF439F03BAA18EBCF926609947D453BD7D7DC55038D484336CDC042D3DF8376E6A68B8EA0E963627F2D4C2A5C986236C186CE3BD85F25745DDAF01F29578B4ABC6E40D04434DDC2E6DFCB3F1CF6EC9B2819426D60E67A95CA10C80D47070F576CE0A053B168B968687861B50B682DB5C9DFC9448A59AB8AD62AFE5E8BD28DB94D95EE3568A5F4BC9A24C9CE58423E12A6CB2CECFCE7C70DE2174DF45607EFE2F5B60E4D2107D992E0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (115,1,'Rackmountable_4U_server_3D_(96)',decode('89504E470D0A1A0A0000000D4948445200000060000000210806000000269CAEF10000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000010394944415468DEDD5A5B6F54D7155EE399F16D3CBE8EED31D8E6663060CC35D03440A89296044A9A469552A9AF6DA4FE84AA6AD4E7B64FED639FA356A95A2552A4DCB918B003D8D8180C0603BE61833D631BDBE3BBC733FDBE35678F678ECF84A09496F4245BC7B3CF3E7BEDBD2EDFB7D63EB8E2F1B83CCBCBE57215E2761CED14DA49B47279BEAF7EB48FD13E413B03FDCC3D53FD3C0B03E4E6E6D66565659DB294FE329AF769DE7FD64EF114D7025A13D643837CBCB0B070EFB93400BCDC1308048E50E9988F4AAF7F1EB4F70C0C798FC670BBDD1FE7E7E737F5F5F52DFCCF0C505353539A9D9D7DC2F2F2D7D18A9F33653D6B43CEA1FF0C9C4FE10AC6E87FE606D8BB776F03156E79F9F7D1DCDF1165FD37647613A62CB8BAD8D5D5B5F4AD0D70F2E4C99CA9A9A963B0F21BF8F963B44DFF27CA7AD65704ED34A3636565E5934B972E0D7D6303BCF3CE3BD5B3B3B3BF585C5C7C25168B1D4557FE7714229E1B9930C46DAFD77B16C9C917EFBDF7DE0769CFD07E84F61BEB6F0199EED852B735B86BF76E998944E4BB78F90A0A0444F95CADE9524B0BF4391D1F1C1CFC14042E393939B2B4B4F47B8FA5FC57CCC0B1B131999C9C140F06CD3E9E909FBFFDB63C78F04090E1C8FAF5EBE5CCD9B3F2C3575F957BF7EF0B422BA3C0C6C6DDF2C20B07E4E2C58B7260FF018944A66564745476C3B0A74F9F9697BEFF92446622120A8565574383CE7BE4C8610987C3125D5E96F28A0A69F9EA2BF9C1CB2FCBAD5BB7A42C1090C2C242F9E0C30F05619D51EED2E2A254ACAF91427F8194FAFD129A8EC8AFFB5A6538D72F7FFAD9BB12737BE4CFDB7E2B5EEF8AFCEEDD0A89C662DF26FB4B7AF1EA1FC95F128B46655D4DB58C61DF5D5D37241E8BB998B8F87C3E29292991E9E9690F0D10E4605AC4839F801F9D7816CAA1A52A2A2A6579398AB62CC16015145329159595328371FEA2A28C8B0B04CAA408CF0B0B8BA4B8A458E2F8AF0C8A2B82120B8B8AB52F86BE402C8EDFE82B461F1A726D71C1D8948568944ADCC72726742EFE2E292DA5E7A4EE38ED9A9D9D2140C061DC88049F080C503B3F29CB9873B624080378A5B63A22D9D92B78BE59AA6A3689CB284EFF37F75505F397C7E396EA75EB60388F2C411743C30F9363538D71E8C03E59C4FAB2BD5EF9E8A38FB46F6A7282CAD7BF01451A9D1C0F6354D000AAC583070F2AAE353737EB80D84A4C72FCB9525A562A8FA72675821228AD105E555E5E2E2323A3F2D69B3F95AD755BE40B78F489D74F4867E735F1F90AA47AFD3AB909AFDD505B2B37F00EC773B12B98B3167DFE42BFBCFFCF7FAD86676BABDEFFF6FE3FF4FED64FDE803112C6AB280F483FE6A4F7B3D56FAB9737DF382557DAAE4A5969897AD2E5D63639F9DA6B72A1F9A27CFAD9676287E7BF37EE93D9B857EA6EFF51E25978B8CF7212EC6DFF9E4659D5A32B690CFBDD0B03ACAB0A6AF4D1512BE060D68834C315413FD453383C2695E5651286F32C2E2C26D772ECD83199999991F1F171CE534803683C370006AE5CB9A283143FB1CEE1A121858B310C66040CE177DBD5ABB09C571E3E7AA4061B1A7A20AD508007EFF0B9D79B0D8507E47E6FAF84012FEDD7AEC91CA2650A9E48C1A17048DAAFB6ABA767C4CBCB97A5AFB74FDADADAC40DCFED1F1C101FA29111D2DED18E68CD96FE81012904D6FBB1E1CE1B37240B0BBE7BEF9E442027AFC02F51286AFCF1639D6F67EE848456F2A4A92E2A714F5C9A2EAEC77AE3B2B4302FDD373A64D502E990624314B9269232D621FE602DAEB70010330DFE1CC75E5D1EAFC452608EF0BE63C70E99806188529CE37E5959D9E6E3C78FCB9D3B77A4BDBD5DC37DC396ADBA5184C993F281A7481D12B7E5E8B2149505A4AA32080516C8E4D434FEAE90CEAE9B32353EA61EF6B5D8FBA45E8701F45CCADC585BC314066B880262F3E456F71D998B4C4171EEAF9DC7F504392E877E426571A05C3ADB5A65643891891E3D7A5476EDDAA5CE0E0EB8A31180F448BDD35C890C222ED1C505D9B2A15615E2E4B17979792AC44E8A246CF207E7A401193D9CA3001E5B01721D1A1E96C19190CAF060E37C1E854218516EF455072B799EA47DF68B186AC6DA0991CFC86194C935B10FCEA5ED6A7B872CD3F85C0B8858E700FF2C628F3EC82237911C9D089EF3ADF24EFA3E0D6F728CF1F46030A84E4CB458B6A5AC5C1314AF9C8B2B9AC535F1453E788C90E53D61009784C0DE543CB197CFECAD1484C877EDFDF3F3F3B271E346F0C4886CDBB64D1E01AEF89BF3D0285E2C5A3D125C505981ECC6EF9375503AE5F6200A29930678F8F0E19A565555A532ECFDA85B5406656DDDBA55E19063B916CA324A08C201CA03A5C0F080041175DCEFCDAE2E3508FF769269F662EFE765649A75F14E98517C89C5AD9A611582B87F1ACE32C68A460016B7821F6EE4A8AA84044B233382122291885A97DEB536E39855AF8ED8EA056EC6292A8C60CE45C3DDEDED97BE81070A07A1D058326CF93EB1DDF292B48B1BA077D9E7A701EC17D76622216EE1DF35283BA114ACC9CA5C8C91E820996492EC5351C2BCE724D344CB8A1511F1D86A0450C78420EC318A35BB69801330C04D2CB2888BE002D400896365B970E182BEC08963B69C990AE518C28D13E6D21BAE5FBFAE0A632ECFF7B94992690CCF372123DA883CB9BBE7AE34EEDC2E9F9F3BAFCA3A73E60CCF9D1CF927AAD89DBF4619E6625452260DD8D1D1A19ECF75986B5FE32ECB604BCA3F5F9C392B73737348245A951C9D6412B628D309867851D6DDBB77551FE4503538E4B2B96C10C439F81CEB1F098542BFA201C639C0F2CE1928BF4021086FE6E6E5CBC1438714CB9C688845543AE1ADA6076114606B699230378922AE570BA2B0A6626E9946CD311A1EB3427A9356B2E7CE9F7724DB09CD6C5C8E14FCE597A71D4978726A4A0D5659BB514263E30A09D1E88ACCCECDAB53ECDEB35772A0F81614968E3291B565A2FDD15167998F0143738890721485A90680BC45E85AC30C86BFE4B13A6900C6F43928FF9429E3D95F0F0C87A51C21C884AB53F8D3D3E959342C3D8884CD792B51C471DEE6D6AB5AACF8A1EC55E24F90D406642A8C2CBEE72493FD4ED1C86754B419C3B9186D2CE00C09BBDD59C878BC50CA2220365BDFF3A360E31846B9934CAEC52909E19A193184E0D4A4410B464056CBE52B6B3800C8400C3C10B7AC92651D2CC5ADA3E53D490EC07FF3F3737A34C08511EFB9B9D446A1CC1CECFD6CD5D5D5BAB09A9A1A25ACCD9B37EB518692B01A33A65565198A16FE0EA0A8A2C258575016E726B9D91B21865984BD9FC6A64C92EFA64D9B146BD7A17235599AF1C240699994C028A5DA4AB4AFBBBB5BDFE73A9C6412C25838D9FBA970CA1C4656C731A3485A784FC2633CBEE6E00E7B2CD742D772A0640458A574CD2A09B354CE5165D0A38881762F200931E5723AF8B26334651845307523318D00C258032C2082CEB55C4A60268F412C994E78CC79195DF6A873F250BECF964AC2EDD76F58188DA877652523989E4F2C77924947228F4D01CA9E243375DD760EA05C386C2DA3CEF479CC40761AE56BC6C2BC9AB8D8D2C2EF021ACA548C7D8384162EDCE9A08A1ED88B8A985ECB228F1E43E5138678B19CDFB373877C75B5438E1C3A08126ED273201EE03536366A14381D0333EA220E27B57CC6F0EFECEC5423DD40856C886F95841B741C332FBFAF403E07E173BF4D4D4D72E0C0014799741ECAB41BDD647534CEEDDBB7F55D2353952CE911409DB0DF22E9789A014CFE6F1AF35017FA0F1DFA9E84C7C6B4395D7D03038EFD8F108EA9D7343CD76571153965050A98989C92DEC107320F4F1A044C71450CE93DBBF748D7CD9B8E641B99E9CD58F436C359D24E462D1E18001C8D817CCBAB0187A321595E5AD6FD8D7926F4CC8BD90F1DA955CFA4D6CABCD5DD9DE938542E343727A228C5C854328F452691309455E5270FE2520D60AE3408A27752F9BC33026600313BEA138594B176EA45CBB3FFB175E6927A190E20AE12361841F4441ECCD14B3F45C6928F4DF308E2C1F043292E2AD4ADCFCCCCCAF6FA7A85377BC469D4A090E2BCF61C9CA14F3864C1C488633144D9542C39A1E35AA792B00FBFD1A967453E5FBE64819487FA8735EDA50713EBED1723995C6827684605F7626412A2A83F2202659EB71C22668B00B69855A551ABE506828C019403B2123849E5329C9DCE6708412CF39D2EF6137278E7E2B76CD9A29E66F822E109A2075794555C983026899F8498695EAEA5C0CA9C9C8C4EC593F079D8451823DC999C9C17E5F8F27D7A90E7CB4BD42FFCDEC1E7996432A3A1219DB2202393A7BC3400BF77D0D9D28EC9520C608CC0D7F17725B5FA079063B11D8212672BD9EA115C18BDCB4EAC1C576C9DE33B154C06DE1861542AB317DEB9A12C289D27A42D57DAB4283AD7DCA25E49B99449CF62B39F07199C774A174D756CEECC4AA8141E17D82B610D7FCF6AF240997412A7BD70FD8C5C3B0AA4261F4626A381C6E71E8DD15323C0E8168E518D77FEC219179C228019023D9CE91C4333D538A9464A25EF340EB13C92DEBF61C306190057706124B2C4B90B8F6DF3E5C517F66B11F4F28B87B42EC8CDCD53E23650E834AF933C36EE83A1CFAA9B0E43A546F598239454D4FEDD8DB26BC77669D85E2F7B1A1A928767031697659AD7692D06CBB9CF9E9E1E359275CCACC63706304711C92F68AB7A9B630444AD422C4D489C100454AEDFBE5D093804453A11542612E6F702A78B3238DF3CF09D95680FAA6292E5BDFE414440548A5017D4A210EB4169EF7290370A12753E8F76C9282B731B33732F8F1105138C2A54A5FD207DCA511844354E28DE08A3D1C9DA3B3A9C65A618D02E7364349451263FC3E614F8D32028B5E0A4EE6980651301DBA16C7A8B1A00339234FD05150A1D7E60AF9DF8B8685A9D186ABFE85524417A21C751F1F44612B77E5B3E7F41FBB660F3C30F1FC9FAAAA00C21139A89CCC836408113D11A1266BF3D0D25099BA28F10454F347500A3821F86A8767E2CA20198FDE421DAFAFBFBE4FEFDFB72F8F0E1E489B0FDE27A399F7D3DE422EE938518F5C077A93BD64CE4A1B3D86302826249CE64B4182E80DE9709414B8C00B23871CB4401F3710F2A5566409C90CCEE1482ACFC9CC296A445659BE8E21C3B77EED4CCC1CAE03444093B59189F6B7D93E64775E236C9D6C8486D3426D762EFA71C2A838A2221F21F17501ED7A7506011625E4EAEE480DB7250647ABD6EEB4C2BA4CAE5FEEDF35AC593AEDFDE6F1C8D8A67A6C43B0F2E0D99937798821A28A243322930C52138402360543F84B8131F468C02795A99030F090D3FD00D73D298C3BF20E0585ADF4E9686B038B7390EA0A750B9243A863ADF69EDB8A63974F39556FDD0CF8CC81C7F7073F6E2879B30296D26E2E73E289784C80C85116048B8EBCE6D8504424F6A664799F44EEEC5E99C8991979ABF4BDA47FBD5628F7BA44C3A1FF7E8B2A09D8EC579F41F1D5806C4DEC2D4520F0532E7E6820DA992375C56D1608E5033FD0325A767EC272C98F2DEC006E737F04139FB5199B21E7809645C5294388FE73AF88E53ED61CEF733ADA5AEAE4E0991B0418F645F381C4E8ED98DCABB1E631A506B34828CF504160662E49853806F2AD37836938CBEBE3E3512E19A739084AD2FFAE2CDCE491EDD10926904B41832C25697A5C0BF22C476D26AF08020BCBD7A635DDD1894B132343050200E8BFAB617E44511B66B407EE4D1A3BCE9A9A96C6B83AEFF943CEC315EB76DDB9A8F080B8B8B59037D7D0559AEA716F5C417C09BCB95C1E0E2EDEEEEDCEB9D9D3EC22C0CD48EBDC711ADDD70B45FFE1B72953321215755FF0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (116,1,'Rackmountable_5U_server_2D_(128)',decode('89504E470D0A1A0A0000000D49484452000000800000002C0806000000ADE0B05E0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000019524944415478DAE59C69905DC575C707D0C2AE05494868F67DDF97376FE6CDAA19CD68D74842BB461A2D6843FB32A3158C70624061318B64498008AB6C638371B1B84815A9CA3717E5CA87385F6292AA24E52A2A2997B103445027FDEB37E7E9CED5EDFB4418910F99AA53F7DED77DFB749FF3EFB374F79D141149F1D3912347BE373474E4CB83070FFDE9FF2B1D3A74F84F838343DF9A366DDAFC5F1B376EFA3FA5C1C1C1FF08D23314F8A351FEA9058B964A5656B66CDEB2458C30A4AF6F89F4F4F4DAFB9D3B774A496999DCBF6B977DEEEA9E2D79F90509CACF2F74D2E2C57D72F4E831D9BD7B8F545555DBF7796E6FEF9475EBFAEDFDE6CD5BA4A6A64E4CC765E8C811698C36C9A6CD9B6DD9DA75EB4CDD0E7BCFBB35B575B26FDF7E3974F8B0B4B4B6C99A356BED7D7FFF7A698834CAC1438764FF810352555D23F90585D74845929D9D2B2D1D732DAD58B55656AD5E67EF8FD556C86B25A9B233522FF97B7E20773FF6A694AFDF2FAF5FCA9677DF4F95652B3A12EF4105251552156D93AA26A85DAAA166A8436A12D429B5B138D5412D9DD234AB5796AD1D90C52BD799EB0669EB5D20F5AD5DD260A95B1ADABA2502B5C769E1F2D5B2FBD011397CFC413974ECA4CC59B242A29D3D52565527070E1EFCEC1B0360D9F23552545C2A0F3FFC7D3973E6AC1C397254366DB94FCE9C3D2B4F3DF543E9ECEA91C71F7FC296EDD8B94B22D198C45ADBA539D66604DF24B19636A3900E8934364BB4A9C5DCB74B53738BECDB7F40CE9D3F2F8F3CFAA8CC5BB0489E7BEE8CFCE8DC3959B97AAD9C38F9802D7BE0810765D1E225B6ECD9679F93254BEE95871E3A2567CFFEC8287D50FA370CD8FB274D3F68832BFD1AD808488EDBFB53A71E963EF31E6D3C67FAB8B86F99E947ABED13D748634C5ADA3A4C9F3BA4C1F4917EF3DC68FACA7341617142897BF6EC956DDB77D8FBE7CB32E55FD26F9487AB4B64FA0F2EC98DEFFCAB05C2EF7F7F8B15DFC09658E2BD58FB1CE9EC992B5BF71EB6B46D1F3428DBF72B0DC90EE8007444764207A1A372EAB127E499732FC853672ED8EBC3A79F94DD878FCBEEC138ED193C217B86E2B477E8A49C3AFD843CFFF2EB72F1D54BF2CA8FDF94C1074EC9FE630F4AF79C05323834F4C7500098BF9986D286AFF76CDFBEFDF4CAD5EBA5B0A8549E7EFA19F9E0830FE4FB7FF197064987EDFD4B2FBD24BDA6E1175FBC689F07878ECAF11327EDFD850B17ACB05F7FFD0D79EFBDF764D7AEBDF2C8238FD93214F5E0F71E928F3EFA48CE9D3B2FCBEE5D293FFBD9CFE5C30F3F94ADDB77CAE9BF7ADC963DF1E453D26866899FA23E6A34B3A977EE2279F5D5D7E4FDF7DF975DBBF7CAA38F9E8EF3326DACEBDF28BF78E71D79EBEDB765D59A7E0B58CA4E9F7E5CB6EFD865DF79E38D4BA6BFCB2DA028A37FF02A282C0904C09EB911F9615FB16CEC8D49D9A17AC979A6586A36B60402A0B9AD47FA07B6C8D3E79EB74A849E3DFF62829EBB005DB474E679E82539FB429C50E29BBFF8A5FCE42DD3FF77DE93972FFD54CE5D7C59CE5F7C45CEBF14A70BD05F43AFCAF3867EFCD6DBF2ABBFF9485EFFE9CFE585575E93170D2D5FB9C602C0E875B2A1E91E9A6A757FCB2DB7344D9932E5DF264E9CF8E9D8B1633F35059FDE7CF3CD7F98336F91E4E4E64B695985D4D6D64B71499931EF85F61E739A9D93271595D5E6B9CE08AB480A8CD9A4ACB22A5E461D9E31A745C525F6BEACBCC2802A7E5F5E5169EB61C26BEBEA2537AFC0B895725BC6353B27DF4379A16479D535D8598BD5A20DFA9D6BFA5F3BDCBE1DCB70FBA565E5961FBF57D7D4DAB2F28A2ADB067DD5762BAA1A2CD53734198BD12295D5115918AD944DADC5D21DA996C2BE0AC9D95C2CC5B3AB65C5CA3259DB5F6A2C61BD54987A50B979B7A63E62DE8F5EA148D45A48259EAF5093E5A594A8D718A77A0F357828E27BF6B65F5D1791ADDBB67D66F4FA09BA45C7E81A9DA3FB1473F356494989DC73CF3D627EC01C584A4BCB90050B171AF4EF913973E6C882050B2CCD9F3FDF49F3E6CD1B4173E7CE75126D2A6D36FE1D3E0089F862E5CA95327BF6EC50EAE9E971526F6F6F28D137F8D18FD6B636D962E21C7EA72F617D0E23FFD8BD846CBC6334165656AF5E7D5DF941F09B35ABCB80BAF8BF55AFE8185DA373749F3263C68CBF2D2D2D95993367CAADB7DE9A00C0F4197140DC7FFFFDB6B1BEBE3E6933C20AA28181013960022D573974E2C409E3DB1F301D9A25070F1EB460E29D356BD65861DC77DF7D323335CD048655B63E0160D82087868664D3A64DCE72DA85DFB66DDB4C70B9CEC406474D00BAD83E53B66AD52A59B162858C1F3FDE04A4BBED18019E0B54F03A6C82CB30E01D3B76CCF244B18C71E9D2A556093A46EE333232A4A8A8C8D6DFBF7F7F687BB401385DE5F7DE7BAFE5A7930699205700064FC6B768D16213CC675D56BDA263748DCED17D4A6A6AEA6F7830D71100983A759A1853211B376EB4CC40F0F2E5CB0309A1226018BAEAA8700A0B0BEDB5B2B2D20280FB93274FDA365253D3252727C78204E1003A9416440C76EBD6ADCEF2FEFE7EDB364A80BCBC21040B088CBBB3E0C3AA6CD8B0C1F20C22EA98F4D804A44B9C759081974F6D6D6D628C8007456564665A0500D25D268BA26FAEF600C08E1D3B9CE50A72AEB4E71F237D26EB32FCBEF202005D0FEBFC3729E9E9E9FF54565626CDCDCDD60C6AC54993EF9269D3A6596475767626501644800386A0DC550701840180CEA6A56718E04D95EEEE6ED9BB77AF45F8A2458B0289594B1D57B9CE0E1700180FFD45205CDBDBDBEDCCD1FA7E5ABF7EBD7D0F30BBEAA0301700002C16203D234BEEB8E30E3B53D51AB9DA03206A498288BE840100F02C5DB60C997EAD7A45C7E81A9DA3FB146392FE99071AA420018049932D523059B158CC76C6256CED088A76D5E17DEA604D108A5ED53C329B338C70C68C196372F06CDB797E7799F82D767DE250A89BC0EDA0385C00C2C7B57885CEF5F6DB6F97BCBC3C696A6AB27D74B5C58CA3FF00CB55873E53A7A3A3C32AAEABABCB02555D4EDC0264C90D37DC6002D45C6B5DE99BAB3DCA014ED818B13A4C1EDA6742C05B5D00635C660070D75D772500808EF91D9DA37B00F0090F74AEA1A16104004A4A4AED4CC5ECD1A82BE05A6882453A42C3DE60CB1BE8A9090D0B6AB2B272AC608A8B8BADE0C284834FBE16E1A070573980C8CECEB1E610B781005D75295790BBEA00E2E3C78F87F629332BDB8E0F990318DC8EAB2E65C9DA23564277AEF2A6A6E6110040C7D41F06C0271600D5D5D556E0D16874040072F3F225126994C6C6A82556D61A869F237E32BF5B6A6C4CDC87BE1769BC8A108EA6855EAAAB6F88539D52FD557546D4E5EA21573D000EE0AA4D1A5963D241259B3A7A29A82F3EAA6F880C5383196B244E0D9EAB21C608C8E1F76D797AF95DC5D3C3AFC24CE04993262500808ED1353AB700307EE013FC1FC8F603806551D0525F5FEFF443DF94B0163AA320DCC3DAB56B2D92499128C79C5167B4787A096BC615F780892D2F2FB7BC192341EC6810661757A1848BC40511EBB0E6C0D8704D58BED1E047FB5E9EFA1BD6032B3279F2E4110040D7E81CDD63017E87DF4028F8412F0048CB50524B4B8BF5C7CC9620AAABABB3E6B1A2A2C259478328CC2D02A7930802D7823F870FFB0826374DB89CFCFC7CC934517310613E19ACAB9CB16880445089FB2140A25D5C8BA676643AF04730B82A577B6409B4E12A8734D025CDE33E6266246E017E8C17C06101EEBCF34E2B4FD267E4E16A8FE09AFEBBCA55EE8C0385E2F2182393169E8C87C9E405007241D7E81CDD27000082E8B0569C68009065FC2319002F11D484F9223A922CA0510090122A00346245608585C5362DA32F0C2ACCDFE2DB49155DE55812050056C61F21C30F011BE1D8BE30F6305FAA5905C1A0AB0EB35CC7C89536F5372C0E314B5676AEDC78E38DB65F4ADF26D055000068FF1899687E00341A178D7C13003066E077A087011614148C0040A131C9048120ED5A82113AEC2A07F1410040E89ACF171B9F0C6FEE0153588004A0407CB220D00F00808C0F0420F497B413E1111C85815C01159699300E3F00181F8B6928C95A000300C6A8A96AD862166B19002799DCFD00601CF004ACA481933D41203A86EFB00BB802007C06E6D70B808A8A2A7B6FA248DB785847608A005CE5CC66DA20FFC59C8240FF922E6BF7F0234D0220CC72972F67D0F8D4307F8FC926FBD04C84B40CFEDE7EDD7DF7DD9627824398AE345641842B7395337E14C64216591072C5CF7B97A015000A02C6E86A4F17B334560A222C196E0D370761B159D5549E04DEDE2C001DA3EB04008CC9FD87DADADA3F23707C931700992667AD32D162ADB1008DD16822AAB7141D7D9A3933D546E644AF0CA4AB2B3EA0209A659439DB80C6550E751B807575BBDBC01CB2CE51595965236F52A668B46998E27D8A1AF7A7D41C8B4993C9A32D99BACDCDB111148BB5486B6B9B8D995A5B5B1344BA89C0D977484B4B3713ABD2F224520FE3091F78EA7D10CF9696380F2F4FE50761C5BD2E001DA36B748EEEED56B079F8033374C2840957003071924D2158AC0149A315210791AE961598AC83C518FC167EEA7A912E4D632510A0FAD9D11A8F7F191C934B2C00CFFCE13132BB35621F6D9E9A0DE0B691E5240F00D031BA46E7C3DBFF29E93535357FA4A21F00E34D4046B48D70E2682A0C2498E2575DE5109D41C96CF6E02E5891DAB76F5F622510D39A6A66076919BCA8C352AA8B50DA30920349032404ADEE8059A22B81F8C7154610BA19447D804ECC1344F022E8749543BA1740D08C3BC1C5E94AA0BAB48C8C4C9BDDE09258780A6B8F72F4E22AC7D5C08F6056F72218A3AE04E22290AD1F00B489CED13D00C8AAAEAEFE8C8AA4445E00602E08C41888A66A4184F2F0C7A46FAE3A28CCB517003143308FA437F86ACAC2D6DD51866EA60491069DAEBD008224DD0C4280F84F14E4DACC22E6C0BF337B5C75FCFB1DDEBD009403E059EE9E3E7DBAF5D3F41F45B9DA0300BCE32AD731BAF602009F05806721081DF31B3A47F700200F7F10040022644C09011B0A426041A4393E57571D06E207004A4430CC4EDE4D4FCFB0691980831FB3D765F2181C56C2550E4F6F90E8170E11B96E06A154FC263CF92D88C8D9D5A2B8EA301E17009800710B90657992551034023E577B0084D4D1558EE201A50B0080D6BA800000A073740F008A8C39F8DCFCF8F5B871E37EEB05406A5A9AB502986B84E39A6D305124BAEA30E3E82CA64F1762102A5603623510F3488E4CD6811903145AEE27848999759543F0C372D136822622C7A2692C00B86FBFFD0E1B19138031E35CFDD72C266C8CA47C804E17B874CF42FB431F008046E38C1F20BADAA3EFBAC7E222CAF58009F5192320559E585F2F008C8EFF115DA373740F004ACDC31766605FDC74D34D4F7B0140C0427E8CB2101851B5A5EE912773608A60306B3DC68F069DDA51B34C39D46B8000793795B2B2B3ED922CCA405808DD75FA081021F0B0134A800E85BBCA8998D99861B713619132BAD22DCA9904F14316C1755068D8AE2994999563F9E1AB7537D05597B264ED11A30132573999821700E8185DA373740F002A8D39B86C66C9E763C68C79C40B0036833852D4D6D63E22AD21D521A581DA4CC066A92D4E1CD9EEE8E8B4D4D9396B0411B490BE41A4784A0060FEFC0536ED24C56C6A8E596A3669958B623E229A57B2FD0B21ED2BC7D2D90AE67D522C3F457DA4FD8A53F308225D4B50732C305D83D28D95D33E27E339925FCCCD2F8427E9A631FB0900A063A3EB2FD039BA070035E6E12BF3E3E5B163C7FE8A451805007BD7A08B9540D0187630817A9854571DDE57A4525F832966149681D98CC5617660B6740FDE45F0C22AB9CAE149DBDC635D98C1582AAE7AA08419C8D903FC3467E4E88FCB9D68D015E672D42F635DE89B8E953EE8F635874D592164FCF44B37A882488FADB9CAE1A119060B5C7A4536F044A6B803B500E8161D9B772EA373740F001A0856F0B7C6DF7FA100986000C066100DA2148445C78388A81DFF48FAE6AA83790D5A0A2638D2881F00100422147C3C2923F58308D388C05DE59A22F9978209D4700D8C0B37638463C786DB41A8AE948B36F0B761691B3149D052306083571C703972DB6DB7D97EE19EE0EB6A0F19E0565CE5C83B682F0099C293F100342F008C8E3F47D7E81CDDA71893D0CC039D21F8F202203333DB46C774524FF1B848D7C95DE5DEDDC0A0CD20DAE768B941A84530C2E2EA6A0F409159B8CA99EDD7B219C4987523EC7A6E06B10E12B700B956C6CC6EB518D76B338831FA01C078D1353A47F700A003130FD248FB88C2E30B0613ED77006CE5B23883D2C2000033ED4810A170EF42106910045F5552515189E50DE888DC315F6180624686F5C9BB19044F3642BCDBC1BA19C492300219CDCD20946D02ADC4C21320B316C0B800C6482CA5BB9EA3B51944FF5964D2852075310A0074CB7891393A47F700A087C1D3390E817A01C0C7201C0DE76CE0686D0661EA5D757273F312EB101A577C1BE1A00484E13DA2E62D47686C063166F6F0931D454FB6E50DA0C2FA84550200CC4478EA0652B2A3EDFE0D2C2F6121C2CE32724AC80B00748CAE872D404FCAF8F1E3178006848D304C9A9000005FDAD4DB2348F596B8BFF23C7C34C947DEBAAE3AAE32628EA2A262A93633C74B264A1D41DEA353FEE35F4AF136EB471247A73C47A8CACB2B4C16901F3F96A56DD7D55D45754AFEF63C32F11EC5F2D395636F119B05248E8225E39990A57F3CD7CAAFD1A6B99A05A05B74AC813DBA4F31E878838EE10FFD00E0F32D820902AAEBB9194487403AE7010938E1C93AC2F5E2A7D68899C34CC04FB33B783DC7A82BA1AC03902560315961BD9E3CB1465852B5000A00741D895B864B29260DFA2D42C77CB146ED0500E7F4315B94E3735DC7BD380AA6418FAB8EAE5B836078E187587FD7634FF0E1E0E8B871E3ACDF24820D6B8FFE60CA921D53830F82C61D701256FD23EE00A0E9B26CB2636F94D31E33CA5587F6F4681C3111B10CC1AAAEF703F4D4B40C2B5F1670E803ED86C90C5924933B7568879887788D2C4765BAD804AD5E00A063E48F4ED1BD05004BBD7474C68C19F65CBE02007F4545B2000498ECB3A8B0A08DA0CEBB3E8E3034558398112C708C1B37DE2A9759C2352C084CD627DD9F088A90E903331F00904EB1831716716B1018764C8D2CC29B052057FD8D2C80F61500F48BF1879DA2429EC94E62514E1C01D8FC63841F5F062900D02D3A46D7F46D040068848F06BD00C837310028D3D944D4EA5AE88119C80B5B080A02008AC73C32E35BDBDA136702710161BB7D9A5686F50980F801C06FF027AD63ED1F0010AD636D929D3002E428CC55CE4CF403008BC3F8B8628DD2D233AD7CE937B3366CFF416586390F93BB1F0004B3BA8B386FDEFCC48110748B8EA99F008031251600749E6FD6C8C3EDC9910913A4B8B4DC46AC2C5CA8B05D2B6FBAC0E22A5717A01B141A91130933DB9961580014821B60560200D72A980A0745BAEA20084C2D51343C01951E4D8798CDF0D30D28CDF35DA447CC5CE5FA899CA65FF0E377DD7B60AC6A019033A00300C964463F5D750033AEC79A7B334616E518BBF2C4ADEA790078A263748DCED1BD0500E60F4191EE7901905F58627D0A568075E5A8FF5898874033EBDBFA7CE59853FCA813C79AD83B40C9DEF7BCF5C86139138095801F9B4EDE2F8CBDEBF9EC35F02F6BE2FB1457AFF7EBFBEC6578F709BC047F7CA946F2EC4BB8EA42EC67B0D7A163F5137CB16AF1E75882746D1E7E7C1B88E2898558FBA74D17BF787B5D89235F413C75DF25881F446A3DD90300748CAED1790200EAAB30357C2BA700282DAFB62B56202B7EE85077027B46108A08FB1EFF5ABE6D1F18D8683B4C6AD66710CCC021DD308AF38E1F7C1CF1BF028C798712BB8CBD7386E9CAA769577D8A66F8F1FF88962E5D66D3A6957C8862664BD7F01883C6F74DC61834BE55ABF8707695E4E6155A7E90EEAC5E2F996ED83060332B3D158C6ED131BABECA02E08BF1197CB9AA00C82B28B6B3111F8A0F0BDB08C15C6302C3364A3057FA9939F50116FE88674C3A8A9F3265AA7527588DB00D286288B053C30C94200F93ADE70730C12C83C28F2B7C30FD984A04C2CC08DB98D13D0B571D5C2075B8A72D22716206DD48A22F1959D9F650067DC312D00F577B8C31CC0DE2FEE0471DEE75FD5F654CE0DD612C8C0200DDF2BB0DB8D502E4E4E4FCBD9E6143107A2E90DDC0A292CA11DFB28FC63F33F09F5E21F0225F8D0B7FA93DA081B23065F83EBB851C40F0C27FBACA190B3C0098661B7A36917409E110281103B0140C3F94E2EABF7E1D4CECE0AAA3A77F3408C46DE95171823578A667C60F84A0787886654E0000B9BACA758CF41B00FB654A9A8C7B983265CAD77A1E9077D0353A47F7299999997FC703D1B1170053A64E93F2CA7AFBACFF750221B83A83D2C204E8DD9C093ABEC44029D3CFA6B000CC18577BD46190C952533F00BC6710B1000080AD60F8254BB9E017B614ECCF021400DCD3176666FAF08920662A3CC336A034080C5B0AD6FF3BE005808E910942CC6222FFAFBC00E01D748EEEF90F21EF2A00083638254BE519F7CC94CA9A46AB100241D0381A9F6B834A064FE75896D57FA1C26F5CE9A47E8D1406283DE7173623011502067CF0C39DE9421042550BC01634E702F4238CFFEDD74FFAF91BCA2063205EA1BEEED9A35005000B4A7CA11BB601A5630CFB9F048018222EC0CA105CEA42106321B5D67F11836ED1B102202D2DEDDD9469D3A69DC104D2181122793895F92F5A55B5F1C89CDC918160AEAEE7B7EC088CA54A362C308F61DFFEA970B886090710852DEE18E1D84C800F4498E161DBBDC936BCF44B1EFD02DA4FA4B6C400CC52FE154EB2C527FD9F04611B686AC95CE5C5C5256471F69F44A15B74CCEFE81CDD7320649209847E6DFCC4C726DFFF78CC98311F9B59FFEF7BF7EEFB72C78E9D7F36E6F3B2894ABF133239EC65D3B1AF0CCFEF848C89FECA5885AF4DC47DF9BB2093D55C3659C997DF153FC8A48F978DF5FB4FA3E75FA35B748CAED139BAFF1FFE702348A90EAECA0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (117,1,'Rackmountable_5U_server_2D_(64)',decode('89504E470D0A1A0A0000000D494844520000004000000016080600000070BE9A340000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000A294944415458478D98D94FDCD715C7C7A672DFEACA2F56E40530660960CC667618989D99616618B66137068317BCEF0EF516A771E205C771E244AEDA38765B292F952AF5A18FFD3B5AF5A1AE9BC67655B9066C93AAA7E773E10E3F204A8B7434BFF3FBDDB3DEEF39E75E5C22E282CE9E3DEB8B46632FF68E8FCF25921D33E313FBE6BABABA67060687669BDC2D2F56D2E0D0F06C4767D7CBFDFBF7CFC613C9993DA363B33DA9D44CAAB77F66746C7C36D1DEA1DF0ECC76F7F4CEF40F0C98EFBACEBCF3787C2FDC6ECF2A8AB6B53F1D1A1EF9667070F7D32BB1D66F86C70E7C1D3CFDDEDF3FBAE37B36B677CFE3E1DD637FA96A689EA96EF27C277942D1D9D65872B6BEC59F7E57E3F6CE84E31DB3A981E139B72F34D3DED9FDD4C60CF1F743A51FEFDEBD3B5153D724F7EFFF4CCE9C7D47BEF8E24B393F75416E4E4FCBB977A6647CFC80DCB8714B46C726E4DDAB3F953B1FDF95B3E7A6E4E1C34772FACC39F9ECF3FB3230342283C32372E8F051E9ECEE9563C74FCA4F2E5C92EB376ECAA7F73E53BDE7E5E1A34732B1FFA05CBE7C554E9C3A2307278FC8FBD73E9464678F9455D64A776A40921D29F9A8B140227D31C9B93C2933333F9044A74F1A5BC2323179542E5FBB29573EB825573EBC25EF5E9F96ABD76FCB7B376ECBBD9F3F9007BFFA4AA63FF95CDE9FFE58AE4DDF950F6EDF95FB0F1ECA57BFF9AD5CBF734F864646FFA1F1FE88984DEC9B366DFA74FDFAF5FFCAC8C87856DFD8220D8D6EA9AEA993FA8626A9A9A997DADA0643D5D5FAAEBE49AAAA6AF5B7516AEB1AA4AABA561A9B9AA5BC7297B8DD2D52B9AB6A1555D7D44A4D6D9DAEAFD7F535AAB7D1FCD6A97C9DEA81B0852E6C2B3AC4E3F54A57A049BC9166A9EF744B7B52DF7B7DD2ACDFBCBE8084A331E503126A8D883F105A46814070D53B9FBE835AC351696B8B3FD7C01F1333B1BB727373FFB061C306B0205959D9D2DBDB2BC96452229188A19E9E1E5174A479E8E2C58B924AA5646060408E1C39A2413468B26A1425E3D2DEDE9EA663C78E2DE38F1E3D2AFDFDFDC606CF838383525151616CB4B5B5A5896FB1582CCD8F8D8D99B5434343E6DBE4E4A4BC5D5868FC72AE1B191991BEBEBE34DFD9D929274E9C307EE1EFBE7DFB34F1752F89959889DD555050F0D740206012B079F356696A6A328A11867016839687B45F1885183B74E89034E8AE666767CBDEBD7B5705ECE4718004747474C8F1E3C7656878587272728C0DA7FEC3870F9BA4587ECF9E3D460E7B241C7F9063A39CB2C3AA0F1F2CDFD5D5653681773C637F4749C91CB11233B1BB0A0B0BBF6E6D6D3509D89AB54D9A5B3CE2F307A4457F0D79BCBAB87589570A8696F3A565650AF35AF10783CA7B8D0C300EB5860D742D85426109045BC5E7F31B1B4D4D6EA9D0F2F1FAFDE26EF6A4C98F7DCF128FAC6FC59AB2F24A2D09FDA6B6D2EBF479E53A7C75F2D9DBB6BD2656622676576565E5539FCF6712B0656BA68138BB15D460A070386CA06E79888CB28BEC12BBE3F1FA4D4679E7D5C02D0159270F8C9161D790D30922D806AE4EFDECA493B732F801CC0F1E3C28E51595862710BB0EFB90D3777CC58FEEEE6E235B5858F48A58B14BEC26011ECDA441C0D62C53CB38476D5902762B790BB353A74E69A3094A51519191FBBE1E00049D6574E0C001292D2D35E5E45CC77B1CB63C012043C0D434A5959B9B674A02B2EB2893956588AFF4101243691516169B0410B349407171F19F1B1B1BD325A03522DD3D29698BC5D3D4D7D7BF8C4FF5F699DFB0A225AABB5755552DDBB76F3775E66C6638ECE4D9C9783CAEA51032BBD3AA949797A7BBB8F00C85C311A3874447A25143EDED494D4097590742B15B58546C360B7D56AEAD2D6664AD5C5409DFF9862C72DA3BDE102B3113BB6BE7CE9DBFB009A009E234462C8C128984D90D27246942649BB5A3A3A3D2ACB585C364D9AF356889DD59C9E32084ECA0EE2CFA68666113C4028124278F1CE503D1A069BCF41C90E15C0792F0C1F2F83431316164D081AFB6048899D85D2525250FE8FCBC7CEBAD4D266060448010C240C7F2D0F9F3E7D350BE70E1829E0BEAA54C1B2110C7094BC0D5C9E33832D8B874E992A949B56F9C73AEA3749CEF1863C8F14CE99C3C79D29400092091761D01DA9167A714E5420960F3F4E9D3E91220666227015F2AF3DCF6806A3DA4F4AA20D082D81D145B3EA6B44F9B17F5C537145755573353D3E3C6124871F27CA7C1F14C534396714652D1658975A0CEF2B6F9B1BBC8524A455A02941281DA75E8C457A72E360F199E91CFCBCBB709784EECAE1D3B763C72BBDD4FEC148846DB0C74F885A8AB84061B75D4328A5893486812F4B95E0F4240D9D49D7EB744B296F18B756D793B350824AA760CA9CD783CB1687FA18E63B178FA1BFEF46A0FDAA57D271E8F2F93B34DDACAF17E49D7823DED55A6071033B183805FB6B4B4FC87979BB4073437379B4CE2946D5640DBF21087185B0253535366AE5302ECA4B35730AE9C3CF5B8720A68275ED53BB0C75875F60E3B05803F2592975F60D0C418B4EB2C3A2C8FAFB604B0C1B3CE7E830062267612F06B768197993A05323333978D2B08834E1E45240983D4A1BBB945F46C6D60EA1C97F6486B0978E220CF0405CC376FDE6C7E9DFA490CC9749EF0E845ACB3759F9B976F1A991D9110329C2D56FA8EAF2480DFFCFC02930062267697CEEFDFA70F4299D9E624654E6AFF27716AABD5CB4E402F1DAD3A6E2CDC22D1A5328A441669713C8523FAABD4D1D1A9B5D8AC3A820BA3D08C431D737A6981ECFA88D1B754929400172DD638E5ACEC77C9418C52ED55AFED4188D85D7A19F99B4D0025A0B56132AD103144A6E8AC9687682C34157BD0A00FE84C3588A0BB5A02494E9E5D6427D819CA8812E1FC402373EAA709E293E5F1C7A20D742097999565E418D9761D3DC1A90BDF2919C6277689439BE79C4D00B1BBCACBCB9F502F660A2802B66CD9628C7C5F0990007E8132F0A4316EDCB8D118728E4B8274F2E805FA384390940CB7329B144BF40A606E7902479E44581B9999597A00AB326706BB8EE049CE4ADFEDA99212C8CBCF3709206662E728FC98ECAE59B346B39AA3708A988B8A57E1CDDD1BF2F982CB797F30FDBCF0DEAFF5B80065642DC1FB57F14B6B38A17181E1D2140C860C05167FCD7360914C130D99233704E4F91F02700F8696E4022BE502CBE5B0B32D27E715B11233B183803F91E18C8C0C3D076CE3BE6CB2ECBCFF036527CF0E916D32CBE1066857683727CBF6BC00B1E34E1E083AD160AFB53446A77ED06146E6220F1A400E76F0053D3939B9E61CC12EDB75162196671482427B5842AEE0EDA23962256662670AFC0E256BD7AE95E292F2F481E67F5D6A508803D418DD3D476B193DCE75940AF0B63CE3C8260E9DC09512B00715BB0EFBC0D5F23600CA8DA4B101FCF3A65A0F6024C5AE432F8975FAC0650D79FBFF809A9ADA97C48AAFC4EECACECEBEA2179227EBD6AD7B92EA1D78A6A7BA6F931D9DAFB553BFB1A497A3657C32D9F1269E684FF30AB337A5A565F36A705E619DA69E9ED4BCEE649AD7AE6FC8F2BA4BF3BB7655FD9B5FED23868734194697E5153DF31A409A577BF37AF87AA567966F35C1E9F7E85034BDB13CA4895CC6EB25EE9FDA03FE48CCC4FE5F0E5A5A7BB9A331FF0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (118,1,'Rackmountable_5U_server_2D_(96)',decode('89504E470D0A1A0A0000000D4948445200000060000000210806000000269CAEF10000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000011054944415468DED59A599055D51586AF8885A08803282083F43C77D3DDB76FCFDDB7278686866686069A796C469179922828CA204E800A3861555226D1B25279C94B7CD007ABF2A256459F1249F2925851AB40A9242BEB5BCDBE9CDEF75C0CD13CA4AB569D73F6DD7B9DB5FF35EFD31111890469C78E9D7F983D7BCE5F67CE9CF57F4BEBD6F5FCA9A767D3A555ABD6FC79E3C6CD97FE136A9D30E9ABA696895FFFAFA8635AE7373B145C1FEF883FB069F396CF7272F3E5D8B16372EAD429E95EB254CE9FBF205B1F7E580E1F3E2267CE9C9586C646195F5A96920E1C38202FBFFC8ACC9A3DC7E63FFEF8615DBF4DF99C97858B16C9891327E4E433CFC892A5BDBC376FDE22478E1C91D3A74FCB521B3B2FDBB63D22878FF0BE33A2A01ABF03070E2AFFF21B525E7EA154D6364B73DB5459BD7AB5D437B5CBDBB923E4838CBB246DC729E9F7DE253972B24CAE5EED27B3E737D9EF506DF30499BE60A94CEF5A2A9D5DCBA473E13299B170B9CC58B45C662E5A213317AF90598B574AD7CAF5B26DEFA3B2EFF1A3B265D77E99B364B5CC5D0AAD9179CBA0B5327FF95A79F6CC39397BE10D79ECE993B626DE3659F7B47D5F9202F4EF56A5E18ED6F76CF8BCA0A8549E39F5ACBCF0E26959BE72B55CBCF8966CDFB14B9E3CFA949C537066CD9E27E72F5C50809E903D7BF7CB1B6FBE298B162F5500CFC8F11327E5D0A1C7E4C28557654157B7BCF2CA3979E2C9A3B6FEB5D7DF50D057486D7DB351756D5CEA1A5AEC5A5BD7A4F7CDD2ADBFBF79F1A2ECD8B95B8E3EF5B49C3B775EE6CD5F24AFEBDA433F795C76EDDEABEFBB288BBB97C999B32FC9F1E32764C386CDF2A68EADD76B49698554D63449F3840EE9E9D960E0EE692D9527DA0AA5644D878C3BD12E4F9F2AB0FDCF59D0AB80BAF82459B1A6478E3DFBA21C7BEEB41C879E3F6374E285B372F21A3DF3E24BF2FC4BE7E58D9FBE2D6FBFF39EBCF5F62F15E857E4B9B3E78CF8CDE8E5F3F2F3777F25BFF9EDFBF2DA5B3F93D3E75E95B90B16A99C9B1E0D626DD80F1D3AF4D0881123BE1C3870E0973AF0656656D657F98525525E1E938A8A2A29D4FBCACA1A29292993D2D2A8DE574BBE5A592C56256565E5525C522A311D2B282C9668454CCACA2B6CAC3C1A336BE45A32BE4CF20A0AEDF7FC82221B4F45FC0E3F7860D1B1CA2A1BE7CA73F07DBC0B8F2B2C2AB1B1A2E2F19297572015B11AA9AE6E504F6D962ABDCE6C8CC9BC7854CADB754E7799B44CAC56A546A5AEBEDE7EAFAAAA97FA8626696C6C31AAAD6B4CDC1BC56F44ADE1D4D44BF16B54AFB28C1C39F277600CD6600EF691B163C7BE9F9E9E2E77DE7927FE20770E1E7CB5A8B844162C58208B345CCC9D3B3789962D5B26F3E7CF4F1A67FE8A15EAAAB366D9FDC2850B65DEBC79B269D3265302EB264F9E2C5D5D5DC63F48CC5DBC7871D238B464C912E3C33BB9B29EF0C2784D4D8DCC9831C3DEE7AF635E777777284FDEC51AC797B98CEDDCB9538A55916BD6AC315953AD45DEB0F72193C302DED0FAF5EB65D2A47651E0FF66182BD6600EF691B4B4B48F333232E4AEBBEE32050C1830E01F23473E2853A74E9555AB56493C1E4FA2EDDBB79B70FE38421D3C78506A6B6B4D11BC9CB9F0C9CB2F50ABAC968E8E0E696FD7B8ABD61724E6AE5CB932691C22A7346ADE8137D7471E79C436C59A61C386194F806E6A6AEA4393264D3240FD7168E3C68D2623324F9C38511ED61CB76DDB36536C7A7A86F144B1616BD90F60FBE360E6F6EFAEC8CA7B9A9B5BA57FFFFE97C118ACC11CEC237AF3456E6EAE592D3FDE72CB2D327ACC5863D8D3D363C2F9C43856E38FCF9E3D3BA502082D050505063E16C43548BC1F00FC7188F1A002F6EEDD6B63803078F0609B934AD63D7BF6C894295392C6F1C6A002006AD7AE5DB26EDD3A0527D3F6CF3A94E0AF457E3CC41F47E1FBF7EFEFA3007832B7BE210EBEFF0263F60AE6601FC9CCCCBC8495B5B4B49802A034B580DB6FBFDD3605A83E613D588A3F8EDBEDDBB7CF04C7823A3B3B65FAF4E9762536F7EBD74FF348A9AD653C48080558FE38B465CB167371C060938CC19FFB3BEEB843EEBBEF3E03306CAD967E6608FEF8F2E5CB35296EB07B1408EF69D3A669C535533233B38904062A0AF2D7A200640A7BDFEEDDBB6D2F107CE109956AAE72F8823598833D0AF88297D6D5D52526E42A580D8DF1246A8C3B6ABA21C5E3CD499497972FD535B59AE0EAFB52ED8DA9A6B62E417DC66BEAAC082009D7D7377A140FA786646A08A1424DF0C93C1B7F10CF7C0DC10E5FB0EE5574A679C017D4DE0D0D0D890959D9B9964C9C25FB8455CC993327691CADE3D658133C79C633B82F55B0F0047812BE9C953872C9CD1F87B056AC98F792E0980B4F425B7979B9BD0F9EF00F12E3E4067F1C227C41DC0306EB213CA940AB2A4214790D1EFE5A570CF8E3F001373C01DEAC759834355D8F30608DFC4E017F6451500169E99906149BC5CD274C98D087082180E18F23849F84B892E0CACAA316F750144AF11318829258C3921EA109B725F6C393E7AD5BB7DA261E78E001E389329A9B9BFB505B5B9BAD696D6D4DFA6DEDDAB5169B019250033FF81276B372726C2D499562C35F8B52C1CC1F072B7FFFF0645F4486A002580FF609056049D743507EC24DB074040912F34956FE384050B10405A004653E75FC830F3E687111EBF29587C24958FE38048FA002A86CC843F021FE03304919B07CA208601FFE38CA0B2A8077A0048C2B27374F7B832A1BC7DBFCB57800EF0F7B9F93D1ED1F9EC8490877F8827542015A0A5D429871E3C62526141597CAFDF7DF9FA8F95D3DEB086B83B13F0E9184111A8B66E32E8C108248ECF9F9F9B279F3E6A4756C0AE585F1E45D088C4BA368F8BA10337AF4681932648825BFB0B528206C0F004D22753C91917B7813AF2915B16AE6F96BC1CB25779F9083BDC08B50043FEED9BFC317ACE101F691418306FD820736E226E468A8A8D5A4575151A9140BA568B497CAA315C9A4E12641D1A8F1CACECED6A4D560F73F063534346A575EA95D709176B3D5EA6195F6DC97AAAC73775455556D73AB1354D3878CAF5A2A0503F7A9795625F1AC4AC193C2A35E65CDCDCB4BE00BD6600EF6917BEFBD77130FDA952526D0DC6061681F37F209ED1312FC71D788A179E21E8D150994E4CAF105E1C4D5CC7EB385A5302FAC1123BCF03BF1196B822771984487DC842FBC8E1E2148C471BCCD1F87083FE4013C8BB5DC8383F5019959E6FDEC236C2DF308CDFE382188F0888CC88C57E17D94E7188CC31799E101F628602B423CF4D0438909C3878FB084429C0BEB03A81458E38F038CDF88F18C302880D887BB03B45F3F23E48D6AEB6023C69531F8A8FCC6939A9E8D0709A5D118B9F01224E6071B3180730543BA3662AEDF600FFE5A9487A2FC71DE13568480575DFDF52207ACC10FEC239AC4B6F3A05AB99C7011ED840919081916E7002A556CE485583A3C01082FC0520BB41326091357E1CBC683C47C2A067F1C228E0312A09370F1043C80584B23168BC56C4EAA988C1CFEB8AB825CB98D4C18107BC8C8C8B2AE1D8BFE6F7220FBE7BD7820FBC7380969010FB8CC7BC11E05EC424005E7834419AA0214696CEDEAD2525337EEC8850F360E53BF15EFD08E6FB95A15D6E313DF1848C008C7A67C2BC75A5379006001B83F4E18CCD1921105A094B0B5004BB8F0C7E107DFB035F90585327EFC785B4778F27FC7A0F080B0B55453619D7781F274F8823598837D44EBE83D3C6862F8C84DC8D632ACA3639AD5AB71ADC3E37DEAF260EDDB6220B4B4B41A619DBDD4668405B4B54DB078CA51C4E4C9532C1157F749846154F3BD04FF464D981404BC9B64E7A82615D526533087D178195885453255F75F5D53F3FD7CBF8727842791D80349F8233007FB88969B077850B7F8DA4D18356A8C5924DA0F4BC2580EBFFBE3EE34902BF5306720CC25BE8F1F5F6A56C5067179BFBA7049BF32A4F2208EBB2E95388B55E345840BC21A3C79F6E5710777617BA048C05ADD9139F98E704158CACACE49F435189DBF96F0C13A7F1CEF66FFEC9B9EC6ED89B91C650442D0D7600EF691E1C3871FE2212B2B2B50A7665848C1729D8041C2DD217F3C781C1DBC5235555454D819381B4329FE5A420289302CAE321E6CC4E0C93DB178E8D0A1A6509413B69679617B4089C1468C42C1150CD939B9E60DAE694CD54384BD2F55120E2A00ACC11CEC2323468C388C859274DD848CAC1C6B16D02056763302D04CB18E2414B4804AED2C696EF88082B5F9EBF0361258184F2A1378B111AC0CF0900B705000B2A76AC4507ED81E001F39B06678C3130F80723504B37FC22C4AF6D792AC6FA4708CCC1D83B37F72463009232F98833D1EF044920232B2A5B8B844373B512DA12929FE628D53A64C0D8DCD7C402777F8E358BFB6DED69C911BDC380A7184E0C93CAB2D8F907BACE9A9BA9E2BA2DAE46937698938AEBF73E45B56566657774F08218C71726AA4A570D49AC35AE349694CB3180D506656B6F1A4A9E44822C8976B2C56697C833C1D5F72206B7CBEC8E92B00EC49C2EFF2C04159A213D68489E6D12095401885F5076144CC26E4D4D5D55B3262AD3B890C969AC800E19A3E119E1C61B110168B05C3D77DB2747CBF8FC24A5DF739150B2E2929B5FD074F4D7F085F3C98EE3971D6A65833AED8BF13C9CBCBFB9C897AB5AF614C1833765CA2340C4B8AB820E0FAE368DF354B2421BA58921DC2B5B64E90919A30496C61C91DEB272986254CC20BF198DFE10DF8808E1C9C2F91F4081DA91238DEE28F331F3E1805EF26543066E76269E966C5F0253FF86BC98DBCDF1FC7F383FBC74B0875CCC773DD1747B0BE86F9E728E0331EA8D19D02388E064C77F6EF5B35C222BC3F8E7507BB55978448A2EDEA4D74AD6C382C07F01EAC2FD5819A4B948EA73B3A4601AEB94B95C0F11C7F1CC370BD039ECE91057CB98E4BCB303C5C0CBF991C401EF3BB76E65656D5241400EF6B0AF82CA20F9FF576AABD9F0C9994999D2BF7DC734FA212F21B2EC60031EC1BAC4BBEBCC0851CDA74F2C9A04183AC0D67E3D77B86EB84B59264FD7197C8705B9A3ADECF3BF0241470F7DD771BA0A9BE5FBB4A67A2D74CBAC60FEF628E3B7EC703060E1C68719C44EFAF650DA086BD8F71F75F1AF0C53091D57D920463B0663F609F500035FAADB7DE7AAD0ACAD34EB8D88E50FB9E6E56F4523426159A888227A051484B4D4E10EDB4D43B3D851FC98D24863BB2DE279A1D5B1F1823E1D9696355EF89E775AA329938B9E5B32431367AEDBD41E2C4D2C91424C7B7F7C4F73AB10FBAF6529593FF3B8A85F0655E257B0839257627B33E5FF60EB6600CD60905141616FEDE7D0EC49A9C0248426892C474B3441CC5ED5DA98815E211244CF77F3E374BC8E7121DF7F0A4C4245613BB19BF5939DD492D7242F021CCF1CF5FBC136FF86FF6EF64862757CE8D5C080263F73F4C608F023EE10137C1ED98949E956FA5132E4418B999AED57D3EC41589D76C887313AA213EF29057D874581749B590EAF8DB1D98F14CE8705DAB4BC2283C4C1ED6921CC30A09E23DFB23A46070C88992D3340750A9C01779FDB584AAB0A4EFF213B1DFE5020C059E7837D882B10B9F8AFDA724E10F89875402FC78DB6DB7FDB3B0A4C2EA6040418BFEA7472C838DF9E310DA4601243F271084D6870CB9DB36CC1C36112414E48E8EFDDF98EF1265300993875000EF0350C0F2E5610D9B0DFBACCA6FF0450100055F2C18058C1A35CA0C10A0C3F68F8185ED9FEAC74FC2C84F9FA2E1E75B30661E98833DDF847F8D466884147C8E77AF96466BAD62510DD9C6FC6FB40846C512F6FDD6FDC71A3C0186CD013A6B5000C91D4B0F4BC2562DE93C7FDC85184222CF58A6FB672E14C091341EC0982F0F5E12F60F0480881C244E1A43F71F7B3C530511AB6998F0F4B0FD536C84EDDF7DE684DC877DE6D3540E1830E0EF600CD6E003F69161C386758F1933E65305E6D3FEFDFB7F5A5454F4F59225CBFEA235ECB79327B75FE9EC9C71F9C7A0F6F6295762B1D877DAD57ED7D131EDDB1F8394E7B7EA1157B52BBF326D5AE795193366FE60528FB8D2DADAF68DF2BF02DF1F8327A4B25E1E3D7AF4878AF1C78AF5C763C78EFD44B15FFA6FBBDD2A17AC31E7CC0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (119,1,'Rackmountable_5U_server_3D_(128)',decode('89504E470D0A1A0A0000000D49484452000000800000003508060000008939E30D0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00001A4F4944415478DAE59D7970D55596C7A3222A20FB224B76B29004B24112028404026481B0EF611781B08320CA22E3D2D20AE2328AA8B8E04A0B386ACF38E5D454DB53D57F4D9755A3E54C4D95DDCEFC3155FED7D33ADD6D8FCA99F3B92FE7E597C7EFFE0292086353F5ADF75EEE7DF7DC7BCEF79E73EEF27B248948D2D586FECB56EC52FC42F18D427E84F84FC5338A2645CF6B41EF4EF7574368B7D8BF6AC531C5BF2BA4AB71C30D375C4BF85AF181628722FB2F8200BD7BF7EEAF58AE7843F13B85DC7AEBADD72C7AF5EAF543E233C5138A3AC5CD3F1A020C19326494628FE29F14DF2AE44A3078F0E06B1683060DEA2CFC51F173458B22EDFF1501D2D2D26E544C553CA6F84C21571BA9A9A9D72C5252522E05FFAA38AA98AAE87ECD11202F2F6FA062A5E2678ADF2BA4238C1A35EA9A456E6EEE358B9C9C9C2F156F2BD62B865F35029496961628F6297EA5F84E215D899292926B16C5C5C55713FFA278483149D1ADCB083071E2C4EE8AE98A27159F2BE45AC7840913AE5954565676057EA738A358A51872C504983E7DFA60C51AC539C5570A0962DAB4693F2AD4D6D65EB3983A75EAE5E282E29F157FA528575C7F5904D8B469D31B3B76EC941D3B3B193BFEF2B06DDB76D9BA75DB5585F6E10F974580EDDBB7FF72FEC22532322B5B1A1B674973F30A993469B28C2BAB70EFE7CE9D2F39B979326FFE02F7B9B4749CFB9C9333AA4354564E94152B56C9BC79F335E9CA97C58B97C8CA95ABA4B0B058993BCD95D5D7376AB25820CB962DD7CF2BA560F418A9AB6F90155A6F6AED34292C2A767F5FB274A9E4E517C8A2C58B5D3FC61416691BB5EEFDF4E93324BF60B42C5FDE2C8B97C4EAE5E48E8A405E7B685FA7D7CF7598BF70A92C50F07E7BD544395A365AD6D7D448E986FD9273F79352D9BC458E1D2F91132747CBC2250DF1EF8191D99A5C8E296D43610C79718C8DA1A83DF28BC6496DDD2CA9AEAD77AFC5E513A4A0785C1B4A40998C6EC5C4EA69D2BCFA7687D5B76F94CAC953654C69B9E4A81E77EDDA75E1B208A05FF870FEC265CE088F3DF6B8BCFBEE7B72DFFD0FC8CE9DBBDDFB175F7C4966D435C8A9532FB8CF7BF6DE2565E59517A362C2453870E0A09C3FFFB63CF5D4D34AA085F2DA6BAFC95B6F9D95B5EBD6CB43477EAA65E7E5E1471E51A32E953367CE382C6F5E29C71E7DD47DEFFE071E9496962DEEFDCBA74FAB6116C9ABAFBE2AEFBCF38E6CD9B24D1E7AE888EBD3B163C764997EEFECD9738AB3B278E9F28BFA521E816C2540D594460766F2A696CDEEFDE98214F9AFE42439529227438E9E97A4F7BF90AC5D8FC8175FDCE2D4B7F68E49F1EF81495367C8AA8DDB64D5A6ED0EAB41CB0E873560F34E596BD8B24BD681ADBBE4E0030FCBF1A74ECAD1274F38ECBFFF88ACDF7EA7DCB17D8FC3861D60AFC3C69D7BE5D04F1E91071F7D424E9C7A599E7AEE25D9B1EFA0B4ECDE2753EA1A65EFDEBB2E8F007BF6ECF970E9F2D5324A09705C098012EF3D7C9FBAF1DD72EEDC7979E185177546CE94E79F3FE5CA76EDDE23FBEEDEEFCA9E39F9AC34CD9EAFC679C5956D6AD92A0F3CF8902B3B76ECB8EC3F70488DF5AE9C38F18CCC5FB0585E7FFD0D39FFF6DBB261638B1C39F2B02B3B7AF4988C9F507D49A86F688ACB6AD9BC557EA204E0FD23DA46F38AD5F2E6999FC99B6F9E512FB05C8975D4955167C3C6CD8E78AF28799AE62C70843C7BEE9CDCB3FFA06B172F1046808DD32AE5BEBA4259515B25852DB324E770838C6D9E194A8089D5F5D2BC6AAD1C7FFA5979ECE9E7E4B113CFC9E386679E9727C0C9530E4F82675F90BF6EC56B6F9D97BFF9F9FBF2F67B7F27EFBEFF81BCF2E65979FAF997E46935F089563CF3C2E9185E3C2DA75E7943FEF6837F940F7EF14B79EFEFFF419E3FFDBA3CFBF2ABB248C7BD6FDFBE0B11E7304969BD7BF7FEB457AF5E9F76EBD6ED53FDFC69FFFEFDBF9ABF608964646649838680D5ABD73AF75CA2AE7EF59AB5EA7A97495676AE1A70A1FB5C5151A9B3A6D2BD5FB868B1531E75F8CC776AA6D4BAF7B39A66CBA4AA6AF77ECE9C795A2F5F8DB4525669FB79F9B8F94659B3769DCC50779FA533302BBB63D0C69225CB64CD9A75523AB65CFB39DDBD9F39B349093C5AC3C66A6D7F8D6B7FFA8C7A2D5BABA46994823145B24ADF37AB97C81D55E0C21ADFABAE99EA64A7678C948A09531DA6D7CD543DCC91727DBF797A891C6FCA56029449EECE62497D3C5B46AF2C974387F3E4A70FE7A8DB9F24E595531CC65554CBE49A5A1DCFCC3634CC94BA8659096872A8779815475DA3A1E96234C45EEB03983D77812C59B64266CD9E1BFFDBA4EAA9EAB9775D50BBFE5AF189DAF813B5F5277DFAF4F918DB27A9B1DF607366D8B06172CB2DB7C44FAFD233325D06BABCB93934FBAFAD8D8198EB1092AD4E9912434DCD1487EAEA1A55702BAAABE3983D7BB62C503265668ED4F773A4AEAEBEB58D5A2F4C7E1CD3DA308D7E0631AD0D3366D4B9F6915751315EC68E1DA7649C1BE877EDF7436D00217D655CC8CCD03192FF3436CEEC3C79B5E1BA415EA98E8FFD0AB32B36C6D6D81CDB270D1D3AF4C3828202193E7CB8F4E8D1235EF1B6A1C3A56FDFBE9A456ED5A4AC5E93AE15DAF179A1B8E38E3BD44DEEF09683BBEEBA0B5724B366CDD2AC749B766E817B5DB26489266ACBDDFB94D434254A8D4C9E3C59366CD8E0EAF8A02B1559B56A95B7BC5989BB65CB164D3057CAC2850B5D7B73E6CC719F176BD278FBEDB73BD903060C104D7A1DD919A3AFBDB56BD7BAF6A2FAC418D00372E81F72D00DAFC8BDF3CE3B252D3D43CACBCB958475AE2CAABDCD9B37CBBA75EBBCE5E80D793616FA377F3E9E6C8D93C92BE4CECCCC8CDB151B636B6C8EED93F4C3476104183478887062B77EFD7A470084CD9C3933141B376ED44463AFB71C1C3A74480E1F3EECB634792D2A2A720AE1FDBDF7DEEB149C9C922AD9D9D9CE189A88B6F31289804C28D5578E8268DB9465B2F7EFDF2F77DF7DB71BCF525D45DC7CF3CDCE581804A5F9D6E2F40F1247ADD70F1C38D06E8C63C78E95DDBB773B993B75190C0953D3D2243939D9E904C244B5A7B99833AEAF1C632307B2D39EC93E78F0A093C904993B779E931746006C9F949292F2D9E8D1A3A5ACAC4CDDF59478C5FEFD07C8A041837529B6CCB92A3AE2332E1D4078535393B70E83892240CC03A4BA533F420D04C073F8DAB3D9E62BE7BB6104E015D03E244021CC7CC6CE8CF4B5475DBE47B8F2D5C1D88904B0316210DE43008DBF4E572D2D2DB268D1226F7B7800DAF495D397300204C7481840A76657C689ADB139B64F4A4D4DFD0F3ECC9D3B57AAAAAAE215FBF5EB1F670A7FC7BDF83A620A8E1A0CDFA70EDB9628822D510647E7512E332C352D5D6EBAE9261933668CAB1FE57530D6A5781D6639331BB2100B99EDC8C400BC721ECF7903DBC7843B3C41184CD910CB5787B6A9336EDC3847F8F1E3C73BA222873EC43C40BA5C7FFDF56E0230A918A3AFBDD5AB573B6FE52B07100BDDD12FBC0CA48358364608C031B3D9155B626B6C8EED21C0E77CA0F3C4A620017247E5494646868BDB9732DB18A4AF0EEDD3D928836568E6DDAF5F3F77BE0EFB71F1BEBA280FE544B5873CE4FACA091543870E93DB6EBBCD791D14E8AB8BD21823848A0A85B8DFA83E4100C6A7F1D7919838EDAB4B5947ED110AA32667A54EB4810307C6ED8A8DD1492B013E7704E0640977C1EC0C12202B2B4767C7D850945C114A0368FB7B6A5A86CE8CE2388A8B4BDAA1280A81EF25A2D0839C9C5C1D63763B59616D1787205E5652EAE0EB7371423B69E999EDEA167D4F99972A2F3FBF806C3F6E576C8CADB1B92380C681CF9909B8A24402B0054B653273B2CCAE02AE91D9959797EFE231CCC7AB74953C6631F2C8B02B2B27384F3169D2A4C88CFC4A8177412684638C24D78D8D8D5D2AD3926B563A4102606B6C8EEDF100BF2531E00BC4E5F639C00897691237F8D2C891234341CC6370858585DE3AC433AB43ACC510C4283A48BC22C6A21CDC23320901AC557DEDE1F668C3574E9F91875C5C21E182586F3900CA278C107270DD8C9D7ABEF65809DD73CF3DDE72C02A0199C8E13D13C7E231F91146678389E535FA8480513A234440165F7945458593C704B27C00D926D312F46008609CD81A9B63FB3801582B073D405F25404646A6DBF4E14B243551B1888E44C56C064B1D924A964B18CFBE07689F0318362AE80BCAA2F3ACA9C3004148267DE5C125129F133364721A64303B58E958C2E66BCFBC0686F4D5B159CE1879C540C8E13D6326698500DC0CA65F1897A59AAF3D8809917CE5362E880C0112C74892BD54C73660C0C0761E00FDC609A06EE0B730958131E382042009246960202423511D2119A1C3BE72061B46008C4898A153C84336C64331B487E2C300CB69C7570EE87322016C1F807266184B5DFAC13851B6AF2D5BEA42645F1D3694120900A9303C5ECF3C808D91A49971F8DA63FCB692F101AF944800FE864C88CD2A6040C00360636C8DCDB17D3B02E07E83042091B8EEBAEBDCDF691C23F980F270CBBE720B01B87AE23B2E951080715865F09A9D9DE364F7ECD9D30DCE76D3C280DB4339BE7280B151222E0FC2219357327AC0985901B0F444318CC1174F1903FD273F89DA9D24EE9A1CDB5C327918C408C006147FE33B51BB8FB4876C5F1DD33B7AA51E321997C9642B3E1802B0653B02A8CBFD8DB2FF0F74989DBF2001D89B275B64E380CD2012A58B51E5804B21B108FE2D88AAAAC96E9F9AD7B072304C730E62226D40126609B13A0C0CCE62B90F281CA5F8CAE92FDBA4259A55930C724E40FF264F6EDB51445180F1A1E4E93366C4F7F08367112C236D4F04234002C0B983BD07C9C9A92E7B2756733EC2F904F94AA24CE4CD5059C89C1238A708CAE3CE037A60F298CC36790DEE157D0693406C8CADD5E67FECD1A3C7E79C06666812F7DFCCB87604E8DBCF5DF4C03D3343A3580830D6F70186C63D1242B2D403102A90173C544ADC028DBADA153CB84281614031CC3CDE6370DB0A466E1089794CD8DF0C61046B686870E03DB3997172C906B70F39AD4D9F4C5F3F7CF24CA6BD471E040A2E03B131B6C6E6D81E02A4281BBFA4436C510609806BB44D0694C62E5318988910C5570EEC2C801D37123E941FDC0924B68E484E713B64CC005C5B679C05101F191BE1C00C6F59F9629D098C91D86D9B3DBE4BA6C8A2DF511751ED2C80D94B5D8C47DBC843E91884032FE2347D61FC51ED514EE8F495D33EF22CCC91DB407C5B053069D16D9000D8187DA8CD7F8FED21407A4949C9576104B855D90273311631D7176B49A648B8702DBE3A742EEA2C00E5E01ED97964265366DBB86180207CC7574EAC8E3A0B80088C99584CFF511C64F1793812380C1CE50913C7183C0BA0CC4E3C398EB55351FAEA6B0F02D8C9A9EF3430EA2C00225087A56E2201B039B6870059CA86FFA122EBD32001060E1AE43A08A3E90875C2604B3C6689AF4E478741B4919292E6E215C660F9447BBEEC178F439BBE725B75F80800A16387413D9D42F01A8C91F761B031D2AEAF4EE2188304C063C53C40BA4B72498099B94C305F7B780F88EE2BC7F0E8CE470023799000B60781CDB13D04C8D50F7FD23F5E5077F89B2001468C18E10E1248CAE88C2F8E23C498E8AB8372E92CB189B0C22B6B795B2530FBD827678DCC0C81BD28FB4AD6C8841D6637C010C8B41080B7E29507411927EB634867D9732298088C91B1FAEA6060EAD8E927B39CBFF11DE4315E08C0CA8A83368C8FA7F2B587D76149E72B077825DA2554B00FC11821B725C0C80D12001B636B6C8EED21004FF97CAD7FFCB32AFF6490005C0A657D8C32E9A82FF120D1C0C0BEAC1D85D0C1B0438B600264AB0E7616CDE30433E820E80F6B5D5F3960D6617C5F39174FD82B67BD4E4E804C5F5D662CCAA69EAF0E06C3D547F589F30E74CAC61324C7CBF9EA52D6517B101B52FBCA21769000D8185B63736C0F010AD5557DA3B3ED4FDDBA753B128F154A809159399A6CB42DEB2606617FAF8A816CDAC09226087715CCC0D53087D8D5B01A0D2F0EFAB7B4F474357E999495574879451BB8BA15C4F8F1951781659C61C284890E95AD98A07D8D61626BFF27B9FE176A18CACEC9F1B61D6CD321D06622DA64B4475C5E2B52D503448DE54AE5C564B68103A13E81D08E8DB1B5DAFC7FB13D0428D519F7ADBAC36FBA77EFFE3EEEC908903932CBB913662571D4E76A7145B89A28776CEE088FC06C67F96765B82BDC2FF7F3C9379865D4E98C831FFA4D5BD67F5BB2327388EB1C40E149B883D059874D78361B1BF2182B218B95486666961B23E187A56767C8B3BD0EC685A7E233324922D951EDDBEA01B02D36C6D6D81CDB438032750717A8A86BC42F8304183122C5B9777200CA49DCC2802BB5CB1EBE3AC4F8B0AD609239F20B14959D93EB9240DB55E37A98EFB16FE21E44F195737E11761600D13006B271D91C7AF14ADF3BEB3028B8158C9B471EFA83709CAF9077D02FC258671C06256E05930B2013DB9110F70B10001BD3176C8EEDF9B9968964AB7406E50709C0050DD6E428A7AB0F8398851C0629439D616DCF3DEA82C9A55E970A3B0C421E86679B14792833EA620575EC4690AF8E1DFC841D06B14C269E732B181DDBEAC832F8EF7BEB29EA300842069340E462636C8DCDB13D04A821E9222325E3E7BA526CBDD8571B8B3DCB4F08B8949B299772A70EE55017A3F0773B0EC675F1A818B2D977B07B015184EAE88611E58904202BE7BBCC68FACBDE385BB1768DAB2342757439D6C6C80A842D74888A3C5B2EF3AC05636447D3563FBEF698A9B4D391DE8D004CAC1CCD69486691655BD346006C8B8DD139E3C5F610A00E36F005941124407E41A1630D5FB2E54DD4A54F73AD61B0E3D4A86B63DC07B064C5AE6E5F89729871F40963DB3671708B16A57118843C14C78C89BA7F6704F095D35FFA645BD878CFC4A7AA8D00005241425F7BA633EB6B18D03B6126F61CC694F81982C9C3D0410260636CDDEA01EA92745D388B4A749EDBA3ACC3E31E4067646206DE95183E3C5913C15C1717633F80D0FEAA13873631B4FD40C3C53F28D1766D8D873E12C12AC350307AB48BA5F1AB55B4595A1A90D38AD6EB6BA5AAB4D2B189EDB66E778F6BDFB6A1ACAC3C8E71EA11D8EC0A5EE78A5F8D0B9169F24265AABC4B9199AB1EDC36F8B02D36C6D6D81CDBF3EB5DAFB22E251E2612807B73C4B0CECA567DB00491A758265757BB2406D677F595305C25EB717209664D578E916417991C07E3FA89EDCCD0AE948937E2C969F30046006C8DCDD5F6A793323232FE8D2C1F57843B0C1200B6E24A6D15E0CBB82DE98155BE3AA674B2739696181D23F39EE4911CA05CBD0049207193254D547BF48758E62BC73B588284A2C9E083D7A50805AC3E782E801CA1A36B6F76C52CEA9A9A5D08C17BB1CC240410826CE711C58F484E75FA6515431F68D7D71EFD4117BE723CA5EDF9D30EF9002B2EF21C64B2FCE5C1902001B031B6C6A6D8DE118093250CC155657E54D11D1BF6E9E3E2150DB30AE8E80A36496254D286C182FBE3F6C44BF021063638BA77BFC9ED1AD27914E6DB57B06DD28EAE4BD196EFBA14DE0D021037216654C66D4960D4CAC49E7DB009815EED6F2468C4EB11C9694EBFF48BBC242A7146671D25DF944332CE3212C7883C1E0D3302605B6C8CADE95B3B02D0087BF0410264E7E4394691CDDAE07DEE8604CA9EF50B839DCE25120062A17892BEC9D535EE748E25172E1903F90E7B2000670B6C22455D974A24805D97A24F841A08409F58B2D15E944BC588E8C957CEAC4E2400B3137996991B011823FB2710BF239D9907F1E93D910036C69817686A47006C4CFD3801D4953802E06A38A0B8F1C61BE304E0916ADC061B177621D277D8634797BE72BB536777E19851B87DD6D5BC7767F1EA963008C07D461D8512366C5511755D0AA3D815735603C1EB52F668188A613FC0DA8BBA6216754DCD968196BF845D4133024074F20F08E06BCFBCA63D591406663913C576002D9731996C0D1B01B02D36660CD81CDB3B02E0FE5014A7624102F0DC3CD92A59A95D5DF25DE7E2BA12F7CFE27FAB0A9E1354B9E48EEB54ECFF275E1533E4E68E92D4D4B4F815345C9CEFC79218286EDEF7234AB875C208C6B0E551229881DC4364DF1D853435CD767FB7C7D913C123DD5CC36A77B6D17A0185330FAE6A51C73E07C706389F484DCB8C9D53A84CF4451EE093894E99C1BC26CAB47316AE80E1E1EC73A24C96D6762104DB62636C8DCDE304B058C5ACE159B9D8D5A13EBA4C2A8EEFA54F0B79EE1E831ADAAE5CD5B543E29D3860EBF0E0F525367EC66BAEC1E91C83E61EDC947646BDF8F9F7E073FF182608FA92B8660EF681EC7896CE1ADCFF7C1D63BDF6C5FDB640076D868D2F718C61E373DE53E5648ECC76AF605A82BC449957AA533C074B4D2300B6C59ED8FA220F802BC175E0EE8D00593979ED9E658F4AB88875B1E7D1C3CB691B57451CC45551DF9239BBC14378183870900B27C4E4A8B377623BDFF595238381926BD86F18D8EF0350863CE4B0C94508420776B52A0CE414F43F2AE43026FB7D00FAC69859A9F01D08EE1E0E4DCF74E186FC034F17F51B077C97D9EA2BB7875E916B378C918D8E294347FCA8961100DBD2276C1DF7009999991FF3C17EBCC1AE85711F60547EA173195DF92C3B8917EB5506C12F67F4EA75AB1B08CB14668DEFCE1FB218BCAF9C9960F7E56CB5117C761E83107FC90188C576E9C5D77F5B0530B37C75ECF1704B02E9879D025246CE919296EEF40B0191893EA27E9300BDFACA6D8CE881196D63449FC84446F05A38B6C5C6D81A9B637B7EE0F9577C201B0F1260E0A0C132A6A8ECB29E658F7ABAB6A367D92D6BE5D6AA3DA718F5642F33B9A3AD605B220509107C3208A34080FCFC7C27AFA32517F2A20EBCECF1F04402D832102FC48D207B300499510750767E12F5BB0BD82D9100C1A5350420F30F1280EF60736C9F949C9CFCBEADF3E930B764A93C74D870292A1DEF0CC2860333AE331ED7C63D4124984D78A1F376958C01D3493671D8048A22945DD18A3A9D8354289841238F786F3F1B0321CD03E022B98C4A7BB8D2EF7BE065279E842F64DB8F4ED8328E30620460438971461D405DCAEF2E4062C6413EC12B9B5DB611C418595AB331D67A1DCCD9183B61736C9FA4EEE1242E90C670F72C4FA83C529395A2D24A77260F831808F1AA2B9F6567C7CEFE5F00DC63D4716FF02760A29413F5BB0628283D3DDDEDAAF1F3EDCCF028427574E065CB36DFAF88B0B44D4DCF70B39407523ADA7CB2DF24883A40334FE62BE7C20B975D6CE9898D9910D81CDB7321A4FF8001037EAD1F3EEAD9B3E747BA26FE4867FD17DB77ECF866534BCBD7EA3EBFD54CF4078166F6DF55548CFF4E65FE20D0D9F09D7A850B9AE47E372304759D0C64D6D7377C1B51E742674327D2059D747F563B7F8C6DB131B6C6E6D8FEFF00945FB2EDE863C6720000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (120,1,'Rackmountable_5U_server_3D_(64)',decode('89504E470D0A1A0A0000000D49484452000000400000001A0806000000077C5A4F0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000A25494441545885C598494C9CD911C7DBB6AC4856A4C4B6BCC41E30C61868308BA101B32FDDF4C60E0D6633D02CC6EC3BC6D8607B8C9744B9640E934BB6C9E498E49A5B72987B0E8972893489A5643489CF8912C5814AFDDEC7EBF9DAF17862CB9A20FDD55FBDAFEABDAA7AFFAAF73E3C22E27913E8DF414599E281E2D70AF912F154F15D459BE2AB6F1A8389E375948F1E3DFAB563C78EF51C3F7EFC03C53385BC0CAAF3D6A06B7E11FEA5F8A5625D91F7D613909999997DF1E2C555C5AFF4F9B9422C74EC4B414646C6EBE0CF8AEF29626969695F7FED04442291AF949797872A2A2ADED3DF8F15F22A5CB972E5ADA1ACACEC6DE3B9E2239DFBB6A248CBE5C0E726606C6CB2666C7CE2693C3EF67C243E2AFF2F0C8FC45F89BEFE01E9EBEB7F33F40FFC637864E4772F4DC0ECECFCAAAFB45CEEDF7FD738F2E8D163199FB82EABAB6B52545C22978B7CE22B2993C2CBC552EC2B95F5F59BAA1797478F1FCBB56BC3B2B5B52D9337A6647A7AC63C0F0E0EC9CECE4333B6BCBC2277B6B6CCBC4F9E3C91CAAA1A33A79D97F998B7B0A84CDA3A7AA4B92D263FC94D91D6AE2139BBF3A1FCE6B7C7A4B9BD516A1A9AA43A109168AC4F9A62FDD2DC0D06A4A57B505A7B06656C6641966E6D496F7C42DAFB86A4A37F583122ABB7EFCAB7DF7B5FFAE2D7759EAEBDA4049C3A75AAEFC89123EFA7A6A67E54565EADCEDF950175FEDD073B32341C9785A56559D200AE0D0FCB839D47D23F30A4C16CCBDAFA868EC5E5C937BF25039A80EDED7B925F502C798A7C17E2F171999D5B908D8D4DA3F7F0E123DD8D41D9D8BC2D333A1E1F9D90BB77EF4B38DA22F9853E0904A3D2108CC86CB0406A3B4AC43B53283FFA71AAD405AAA5B4BC4E0686E27263665E2615FC4E69D053B38AB94559BDB9296BBACEECE28A4CCF2FC9CC3E1697D7E5E6E696CC2DACC8E0D0C89E96C2778899D83DE9E9E93FA7DB1E387060B7A0B0488635D0D6D6568946A3065D5D5DD2DBDB9B90C1ECECACF4F7F7EBCE5F93898909A9ABF74B47478719C3D6C2CEE5960707078DDED0D09026272EE170583A3B3BA5B9B93901C6DDF2C0C080D1B7360B0B0B52555D63D677EBE127FE5A199F262727656464C4CC81AFE1481309784ECCC4EEC9CACAFAFDE5CB97CDF97A362545DADBDBCD224C06589480AD0C36373725168B196C6F6F4B95529A396EDCB891A4B7BABA9A24CFCFCF1B1BD6B877EF9E5CBF7E5D0A0A0A4C42DC7ACBCBCB496304811DCF1B1B1B66DECCAC6CE31B8159BDF1F17113A49599637171D18CB3E6FAFABAF87C3E1260FC25768FD7EBFD543BBF49404A6A1A0AD2DDA375D8D2222D8AB6B636B350CBBEDCA23B393A3666326CC74A4BCBCC71C542ECA6C5CCCC4C923CA676B0A0BBBB5BCBA0CF8C6187B3AC63811E3B696574F181204804F67979F9120C06A5477DB57A3CB3DBEEB9A6A7A7CD3AD8F29B93936B62256662F76826FEDAD8D8680653CF9DD7801CBA36353529A0528B8BA24EC0CEA24CD8659C8101619D105B801E40C73EBB65E620C15D1A4C4D6DAD3436068D4316AC6F9EA34D06C876EE360D6440CBA8A4EC8A34E95C6E3BC7DFE6841D727B7B47C23EA6BEE6E45E32B11233B17B8A8B8B9FF9FD7E2701A9E7A4561DA2B66CDD923976D25DCB50D05D028140A31416161A3B27710E281DB74C89583BCA8879757D9344B71EE304626558830DFD636D6DCD9448B637C78CB3CB560FA6A06365126D4B00462D2D2D193F89959889DD535454F48CA0194CBFE0DCBCDC8E020CDD3293B2D8D5AB57CD82B575F572F2E449435D1A8F05766E99FA84CA048CF3D4AF362253026E3DDB4BAC4C62E94BAC8D0DB59D7B294FEAEAEA8C6CF56CBF78D107FC84C5FCDA12206662F7E4E6E6FEACBABA7ABF07A4EA6E06C40F34437E7F40024A156A8D67BFBFD1BC0B8542466ED471BA784949896141281496A0BE0BED231C8E98318B70249A78C769026DCB94CAB5B575D2D0E097063F70D6641D7CE119BADA5FD6A40FF97C256AD3906CA73E380824E933C633EB5DBC9869622566628701DFAFA9A93183A7BE7126D1A509CC1E51EC9695C19D3B77126CB875EB963992689EEC54C03AAE80CA6ED9328BF9E9E630064A32E6D6A3744CD0FB32F3DA5300FAC340AF96000D2F680274F460A57B2E02B62540A9700AE55E727A0031133B09F8810A7F63F09D94545393A3A3A38900A18D3DBE2CA843DB8DA1604545A5F972E35873D38FC5DD32EF71923E821DC93D7DFAB4A1B47B7E12678301046AFB00C9C0362323D304C9B3D5A31CED916941C26C39F19B95ED3509A8AAAAFA3BB17B74077EA8F5F04706CFE9291031340DFFCF40BFBCBC523B72AB84C25143738BC82B10D52EDDDED1692E510EED430934063F1F94588726AEB2B2CAACEFB6FB225B4E9E0B172ED81EF094D839063FD066F26F73117A27D5D43E9973EAABC15091E665654063A1ABC20E9E098012600742AE1EC04EBA6576872314B033C8A5A5A5663DA7E738989A9A727AD1BECC2EDB86CB2D706E6E4EBCDACC60062569F56024735B9935F18F52639C12F4E6E498041033B17BF426F6A13D0661005D99CB83FB66B6B2B29224DB04402BA8595B5B2F7AAF36B5F6AA9B20F3DA0B903D11CE9F3F6F9C73EBD1037867654A9224A04730049E95E5354972DF5AF185A4BBE7A20CB1C55FCA27332B2B710C12BB273F3FFFA74C641290966EBA6A50A9E5A64E48BB79320DC349942C2FAF30BFC1E04BEC9268E9BC0FE8C587CB0F97138E50E78409244E1ADEFB034EE7774E21671DE682F65CC02A2AAACC7A6E3BC72698B0B3FAC60705EBD912206662A7097E6A1370E66C8AD4D7D79B8CD98ECF85024ABA4F01E80B256D097475C5F46A9A6776D7FD71025DDD32F3303760676004F70EECDCF3A3C7316965768E460913A03F483B9F6EC660A1D58321E8BA7DE7FE0F4B588312E002651340ECDC043FB157E194736926432FD2E8C512C079FBE5856E8736B33367CE2475647B61A22EAD4CCDE320B62487049C3871E2BF4A80F1174B80FA678C20281F12A09D3CA9EC5EF6E186EF94862D1F3EA2EC5598D83DDABCFE4416F573D894803F1034D47568EA50877BF567140EEBEE346B86F5B4D02CA35B57DF209555D53ADEA2948B1804F59B3EAA777173390A3AD04F516367E5A0EA4165E684BEFEFD0B0B73BACB093912B5A753C4CCC1C9838F9487B5C3574E9F44790643C6D7C4454CEDD234466225666287011F93A143870E99047043225B5C302CA0905BA609B1B33080B31D99FFC1990F11D7C7091977CBAC634B879D63B7B2B3B34D5374CFCF4EA26F65FCC10686C10698C44EDA2F3EABC7050B3D2B730A5846E02FB6D95EAF89155F889D26F80B5E1E3C78502EE517F18D6C28F6AA6F0128CA422C4EA727D00CAD6512E2FE68A25671CACA38801DEB414D9CE3DFE804F8B252B1B24D9CA538654009F04F59F7A58D3AA724DDBEE29F2D4DEC7CBE52132BEB11BB476BFE81EEC227870F1FFE4B6757CF3FF55EBFA7CABBDA8412D00C26C91AE8AE069690956ABBDA04F7B4CBAADC94402CD6BDAB9FBF09593F4D0DDC3AC5C5BEBDA6A6965D60C73A3ABA76DBDA3ED36B6D6DDBEDEEEE49C85A1EBB7AFBDCADA9A9DDEBEC8CB9E66BDEEDE9E94DC87AE1DAEBEDEDDBE3D742CB893BCF1F885963DFF90F552C3C46C01C16880000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (121,1,'Rackmountable_5U_server_3D_(96)',decode('89504E470D0A1A0A0000000D49484452000000600000002808060000000193FF390000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000011FD494441546881CD9B696C95D799C79D4D2424010281103010EFCBF5BEEFBEDE30C62C26312698C536E005DB40D8211060D2044813B624ECB424CA84341D753448953A6AA56A34ADAA56D5CC874ACD17A4F9D0569A994F559799366CCF3CBF639FEBD7E79E4B430604487FBDBEE79EF39CE7FC9FED9CF35EE24424EE7E42FF85147B143F53DC52C8438CBF2A7EA8D8A248B9DFDC187EEE03E14F3CF9E4938D4F3DF5D429C57F28C4857EFFD062C28409415C539C54CCD7754D78680D307BF6EC693366CC583D7DFAF4EF2AFEA0907B8DE79F7FFE8160DAB469167F565CD5B6FEA953A7CE79E00678E9A597D293929276262424FCABE2A6421E36A88EF713BF521CD579AAC3E1F0E3F7DD004C92979717CECDCD3DAEB8969393235F17D9D9D90F04595959F70BBF577C27140AADD5F5CDB8670650D2A7949797AFACA8A8B8A2F8BD42EE07748E8716656565778BDB8A5F280E9694941469ED78E4AE0CB07CF9F2BCA54B97EE6B6D6DFDC9C2850B6F28E44E686969792058B060C1438BE6E6E608F4F37F2B4F57162F5EDCADDC4EFF9B06D8BE7DC78DA56DCBA475D1E2AF87D6078B45AAC3FAF57DD2D7B751BABB7BA4BF7F5036F60DC860EF80F40E0CC9FAC1CD32B071A30C0DF74BFFC0A0F4F58F205CDF24B5F710F54D0BA4AEB1D93CF9BC60E122191C1CFCFEDF34C0A6CD5BAE676466C97BEF1D9393274F4A77CF3AB978E992ECD8B1530E1F3E2267CE9C91705D83141416C7C4C18387E4FCF9F3B2BCE3553973F6ACBCFDF66133FEE2C54BB2666DB71C3F7E5C4E9C38293DEBD61BD95BB76E93C3478ECAE9D3A7A5A767BDE9B773E7EEC87CEDEDCB55DE0595FB772ABF643C8AC6232B2B47CA2A1BA4A179892E78486AEA5BE56AFA0BF2CBA4A72561EF6989FBC17FC9373F2830CBEDE8AC37DF83DAA6167965ED066937E895E55DA04F3ABA41BFACE80103D235B059F67DE388BC7DEC94EC7FEB1DE9DC3068B0AA77C86075DFB0C1A9B317E5DCE54FE41BDF3C216B754C4373AB6CDEBCF907510660DFAE78C9626868D3F5AC9C0279FF830FE5DCB9F3D2ABDE71E5B3CF64CFDEFDF2EEBBC7E4F2E58FA4BD63A57CF4D1C7F2CE3BEFCA1B070EC9A757AEC8DAAE7572FEC2053979EA7D79F3CDB7E4DBDFBE2C9DABBB0C99478EBE23BB76EF958F3EFE580DBA41CA2BC331D1B3AE4FAE5CF94CF6BEBE5F9DE0B899AFB3B34B3EF9E4EFE5ADB78FC8BEFD07CCF75D3DBD7241659F38794AB6BCB6DDE8B869CB36C92F285103D41B030C0F6F32E41E5A9027C75A42923BDC22F3CED6C97BEF678D334075B845360C0C6BFB1979EF83B3720C7C784E8E83D3E7E4C4E9F372E2CC7939A9F8F0C2B7E493EFFC837CFE8FFF249F7EF77BF2FEB98BF2C17970493E34F8969CD63EDFBBFA7DF9E18FFF453EFEF473397BE9B2ACE85C2383C3C33F0A726DB8D77DEDBBF1F1F15F4E9C38F14B6DF8323535ED56764EBE2EA4C87873764E9E1415974A6E5E81E4E7174A917A597676AE79F2394FDB8BF5FB1CED477FC6E5E5174821DEA8FD78E6693FA2CAB685D44B63C18EC9C9CD37731614154B283BC73C73556E4E5EBEEAA33AE4E4EAF7F9E669C7A02B324ACB6BA4A2AA4E2AAB6BA5529F6DE10A69AF2B97D2855552B0AA549A5AAAA57D79B9D484C3DAA74EFBEAB3AA56AAAAC306C5A5E5FAAC1D453880BA3BA3261AD5A360BC6E5BFF5339BEAE87D1EB7A76BAAEE79BA371F3E6CDFB89EEE7E599679E31C7F1499326DF0E6565CB8A152BE4D5575F9565CB964561EDDAB5F2F2CB2F47B5D3BFBBBB5BB4E098F1A0BDBD5D366DDA640CC5775ADC65F5EAD5B26AD5AA714026DFBBED60C3860DE6D9D5D5659E8CEFEDED359F4B4B4BA5ADAD4D56AE5C69E60A428B9E91EBB603ABC32BAFBC62F4ECECEC346DBB77EF5643E618F9147BDF58C6B156B7BDA3A3C3AC0199F4617E646FD49AD3D2D20AC7FF0BC7700DE7CAFD4FE31213137F9D9C9C2C53A64C3106E0383E6B56BC21B1BFBF5FE6CF9F1F855DBB76C992254BA2DAD7AC5923870E1D92AAAA2A431A4AEEDBB74F86868624339465B69C8CD35D963434348C030A339FDB0E0E1E3C28BA2536B279EEDDBB57B66CD96248E3B48A4C8C515757370EEC48E85B5F5F1FF5DDF0F0B0D111D2E9B763C70EB3AE818101494C4A36EBC7C97C63AD43B8ED38975DBF7D62D0BEBE3E696C9CCFD5C60D389E3C79B2C039DCC7E91FBFCDC8C830D6E2CB471E7944E6CC9D1751D2B7F5C4A351DC6DC7038206C0FADBB66D9375EBD68DA49850C82889A1DCAD1B110409BE6D1D325C03BCF6DA6B8684679F7DD6C8D402679E2E5E7FFD7513216E3BFAC5324072728A217ED1A245C6B3DDB14495EE68A2DAE97FE0C001AF016A6AEBE0F6361CC3359CC37D5C4A4ACAEF6A6B6B8DA7D95BC1A4E454632588C68B5DB078C2CA6DC70BDF78E30DB360084579BC8890CCD41AF0D8638F496161A1194B7B10186BFFFEFD51ED000340367FB350641345A4080CC05D0D0B65612EF6ECD9630CEEB6136D180D59C844367AA3734A6A9AC90438554F4F4FD4581C0A83F9E623E27144E41145C804050585117E1B1B1BA5A6A646E01E03FC9649ABABAB231DD233B2A4365C1785705DBD41DD383444A37E0CF5A3484BCFD462546B3C2108DF3CB110AE1B8FD2B2722DFA85BA98BAF1A8BD336A83F0CC93A5853D4AE6DDC8F5C80C656545F8856B6368E5DE18002B1305C108C06B464F7251C0DBB1AADB4E2EB685168F2524F104DAD821F13DDFE1ED6E01A78DD0F615FDF5EBD747BEC7CB28B8441B85B2A0A02032DE971218E34B4DC8A086B00E1B8160FBF6ED665785CE708217BB63F170F470DBEDFA894ED68F6CA29F88A9AF6F8CF08B5C38B706F88D9DCC7648484C36CA433461E8124DF8C6CAE36E11E249B81616179BBC8792C80D1ED7018B2725B8ED80D444D8F24426799694C3C266CC986164A2137D82602C29810D82FB1DB91EA00BBA433C7249BBA9E9E9660CE4C3833B16A332B7DB0E57EEFA91C9BAC81C4103C039DC470C406E1E4B419952595969AC4791727332C50B45DD76FAB363092A403F142ED5BDF58B2FBE6894C473DD028ED750307D459F9A13340006A58EE045E47F360C14509B6F83C050366283600D410340123B2B7463FD252525C680449A3B96F5A0936F3E6A6070FDF4430669C8F20BD71103E8E1E0772C84FB73DB2147F7ECB366CD32618AA5DD624B55A730FA0A340A107EC1BD3128282C92A79F7EDA5C47A3943B8EB9309E4FA6DD496164BCDD1677A07B6963048CE71B8B617C6B2062908BD35899FCCD3314CA96A953A74A535393E9E78E852F6B5817E861370C7623825CD61FC930CA3532E03E4E49F99C0F73E6CC8974484BCF90322D704545457AC2BC33107C27142A2AD51352D3D24D11AEA8A8BA0757D8952AAB46A3AACC18B45CDB3890F13988D857C6E5E360AF9E2B34EA6B6BC3BA630B8DCABF1B99B1E456981D4F864695E517AEE11CEEE3D4D25BF88027D90ED39E9F6EAC87A7FB26C2FA84BDDB4E5123F4F0280E5F76AF4D0886F42086479152086DC233083C85B074DB015B49BE2772F026F4A22FF3B11872355EC74283208F93AEDC76807E9C73880ED22C7F53EC496D497A10236A99CB37D66E0ADC76D6469A641C3A53A84969D4CB9A408D856B38877B0CB08DC5F09ACD769839F3C5485E8C15D628E1B643B67B12B6451803105190C57C6EFD20AF52087DE700C23A7810E3497165CC73CF3D676492BF7DFB728A2064B9EDAC2D78108330AB2B06E08C414EB7570A4160246A9BDBCE3CBE4D087C11FD965FB88603B88FD3FCB98B0F73E7CEFD9F4888E849580B44CC83D8D6AD5B63E646264479FE462E1EC022B9269E3D7BB63961E27DEE58BC04527DF3EDDCB9D3781786207AF056A28ABA415D29D61D168B8C95933194DB0E891461E6B5A77B9C8A8848D66D786666A669FF3A35D05ED7F064FD44535555753002FE0C37701F377DFAF4BD28181F1FFF33DB213129C5E4D68E8E157A98AA1FC3E89D872D5C901904E4AC51596E3B48D7BAC2FB53FA301F5E1B04DE06096E3B601178A2DB8EDC543DB5620008B5ED6C1D2D2099280AB6D9730084FBCE081C9A727373231775AE5CDAD02928D3CAE58A8271AE4C0C6AF9856B3880FBB8175E7861DFA801FE7D6C1B1A9265AA34A7CDC6C6A608C8E1D1981FC1D8C55C7304768F9F9139720F54630A71E5683156548EA1D287AA6810DAC8E5244E619CAF7F936329A020CCA9D962F4F41E3CC18F778EB1D37A73F3024D251D929D9D234BD52128C456662CB9755EB90DE3D0D6B64C0F77D9C122FC6F700EF7717A9039C807CD4B7F1CB3D03C6345BCC45784493F1469B7DD1E446CBAC06BF04CC23C3F9FF709F9C6D3F116772CF290EB9BCFE671F233FD88145203698EB4864C3EBBC59B7A61CF0E2E4883D40D9BCAA80978353AB06343771BE5EE58D20769D56DC729583FFA904EED9A463608E1600DF8239CC37DDCCC9933DFE4436A6AEA588784E488E732919BE7C8C1C06DA7AFAF08B16BE260C31DB8358AEF228F42E8CBABB4070F62C8E46F7231D7D118943AE11B4B3FDF1A3062F0208671918B1CB6E1F67A39D619823AE89B2F5611AEA91D33005CC339DCC7E9E9F4301E9A969616E9909C9A6EB64A58102FBB1B05384CE1014CCA78C86632F6EA93264D32276CDFEE8A2D2505CC2793DD111189216DC1442FC8C1006C18621DC418E35B03E4A307BA710AB7DB507646ECD9593FDE8F91DDB1F4BB93C17108E6E549541161C1220CD7700EF744C051D7004929A9A6087345CDCDDDC881640C84365E137D502935614BEE760F30090989C6F26C451B1A1A35224AC7813E90EBB603BC9FFB13A20814178F80237D626292EA9E6EEA15698ECBB920D015BDB80EA63F40071C815C6EDAF4735100292969868FA2A26293025DB9E8C4D8A04C2B17CE18E3CA4D4C4C8C3200DC6380AB7CE0A2CC76C8C8CC363912CF207C7DF0BD3AF401CFE600C535B57D6943DB571DEF9B1B7DF1583C98E2884792C28888AF02FABBC0F3D9C190327887CDDFE8FA5565DE492E29948D47845FE57AD40057E3F4C33516C53689B76174983B2FC1904FD8FB0A983D64B9EDECFFED618950B4274E886C6A6A36F74B4408B5C557C021D457847903C6F7904E44928228842C901727E84AAAF0E94A01470FB79DFEC8214DD8D7AFA40B732FA651C5350272A903EE581CC857F44959AC9FFA4111E633A98EF5722561DF38C2359CC37DC400BC2EB406E01CC01613C5F8CEF736C97712B4AF24ED69D516213CA05517CA059725DA57C0315AAC93B72D9456260BC4201880B0F7E903C8C5BE3762D426C6DB5D19518A5C9E5CC7C387CDE1EE588C440DF0CD471D734FEDE85D565E193100B22306506B5CC343F9F1EAA38F3E6A3AA5A46598233E8BE60EC6DDFBDB5F3AF8CE0578AB3DC21311F6069373C2C489134D7163E1BEB1782BBB2FB7DD6EE5807D21845C3E63007E5040A4F964D28E63B8EDB4413624DB75E2F1C84D484832FF8F81DC4DA4B963714C48F5CD47BBFD95867D47C2FAF95508DCC2315CA33BDC470C4071E19DED8801324D8119B9FDABF0DCF655E8AEA632F277101CAED8F194958F475E5EBE16B754CDAFF95AC42852C506143A0B7303ABC595DF1C59506CD1A344618BAF053A67683873E36AE6746E2301B997F077752DAF18D1D5D593B9D2CD6F988AA4588BAD576EF9C88D6CECF55746C9E56C01B7708CDE110368385C23A711A678D3C83634D3E4483C020FB85B208B0978DA5F101072D5D535267F7E1D99C8B14599BF8922D20BB9DADE37D9DBD7AF0A6A08B2482900397870EEE86F988892BB9509ACCEF63E8C7B239B82E0185EE001EEE3B2B2B2BEB0EF46093BB30D4D0D99FB150A10E1E6161B8A3339D457F4ECEB43F23E9FC995A42B42DCBE3E842CB7D092C78DA231AEBF4915C841266710C8A2C0D9221CEB2A9BB1BED32C44D914C4DA6D5146B744AD01EC54904B0A71C792EB7D45DFCDFD3CED5983AB16B88563E68373B82705FD9C7C05D17CF9C4134FDCCECE2B91F4F474938FB1A27B098667B030DFC51924060D802200AB4F9E3C25F28AD17D95C742A9013CDDEF20DC16CA601166711880F9F0668CEBEAC31816EBB663B0A0018828E462180C101F1F6F1C1043FBD68F63F9D64F0D740D0127FC4244D3CF4D38A61F9CC33DEF84FF9945733051F2B9DEBD5D505C65762C140B16E6BE2447313CDDF7029DA2677F26C8C51C8B8374C660008A3B275B5F0133BB25EDE7B6DB14832C22C56E0F9983057125CD398036571FA284B16E3B24A20785D2BE80B73F40E097718F3FFEB83930B101F0ADDF5E8DBBC059EC7B0CE4D217B9D48C0913267C09C7700DE770CF7574D7DCB973BF5062BED049BF50D2FFB26AD59A3F69D8DE686D5D7CBDAD6D99174B97B6DDB81B2C5CD87A434F90371B1B9B6E2E5AB4F89EA0A565E14D8D885BFCBD64C9D29BAAD7FF1B4AD84D3DA9DF409ECABDA56DF704AAEB2D3D07FD068EE11ACEE1FEFF00AC300C34E2B45B870000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (122,1,'Router_(128)',decode('89504E470D0A1A0A0000000D494844520000008000000076080600000000F59BCF0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00002B644944415478DAED7D07785CD5B5F59EA2DE7BB77AEFB22C1B77D38C099860B00D9810B0297F1252A82F210470420B8F1212124A4831A1873FE5FDE14FA836B8C8D89665F5DE7B2FD334FDAD7DA4912579248D8AC1C23370BF3BBA337367E6EC75D65A7BEF73C712B3D94CF6DBF97B93D8016007C079F7A5DFFAC7BFFFD1D8D691DAD6D9431D5D7DCDFFF795A72EB203E03CBAFDBF8F3FABD46AF589A5557554565DD7F5D7979E0AB603E03C03804E370A80D2AA7A00E09776009C7F00308C028019E0453B00CE3B00E8F586710678F7C527ED0038DF00601000A8A7D29ABAAE777E6B07C0F9070083715C02EC00380F01601400A8170078FBB74FD80170DE01C0681AF3004B0B0012DCCC8B18B4F31600260B00AAEBBBDE7AE1F1731E00EFBCFF9FBB3B3AFA6FAE6F6EF35069D4CABEFEA1F7FEF18767F7DA01305F0098CCE30CB01400F0AF8F0EFCCA4C921FB6B47751655D1335B576ECFBE71F9FBDD90E807902C06C010018E0CDDF3CB67400D0D145550040638B1D000B020099699C01DE58420068EDE8060334DA01B068004016F0C6AF9710003ABB05033434B7DB01B050009455D70B0678FDD78F2E1900B475760B0F6007C06201000CF0FAF34B09003D5455DF44F54D6D76002C1400E5350D8201FEF2FC2F960C00DABB7A0403D801B058000003FCE5574B0900BDF0008D546707C0C2015051DB20BA81AFFDEAE74B06001DDDBD8201EA1A5BED005838001A0503BCF69C1D00E72500389F2E0303FCF9B9BD4B06009D3D7DA20E50DB6007C08201C0F93433C09F9F5D6A006802005AEC00583000904E95563500000F2F1900748D01A0C60E808503A0BABE59F402FEF4CC1202406FBF90809A7A3B00160E80866691052C2500740B003411C06B07C04201001A151EE08F4F2F2100F40D0806A8AEB30360E100686C1195C0A5060036AFD8EC005828006A1B5BC5AAE03F3CF5D09201400F3300CC6B55AD1D000B074053AB9080250580FE41510AAEB40360E100A81300A8EF7AF5A99F2D1900F40200A326B071DFDF5FB503604100A86F6E131EE0F74B09000383631EA0190078DA0E800503000CF0FB5F3EB86400D037302418804DA01D000B0440434BBB608057961200068704035432007E6F07C0790780FEC1615107B003601100D0D8DA2100F0F2933F5D5200E01E46656DE3BEBFD901B00800401AF8F2134B07000343C3C203701AF8B7DFFFB71D000B0140535B87E805BCF4C4034B08008A5109B003E0CC5B554D9D34313ED6642B009ADB3A8504BCB884003038AC100C5051070978F93C07005F295B5A5E19ECE8E8701DBEC60DF82EF126B3E93DB3C9FCBAC96CFE2C2D39D13C2300DA3B0503BCF8F84F961C00AA0080F7CE570014159778B87B786CC3C7DF4564BED06432CBCC661321E884E0636F227CAF561C7F03C75FCF4C4B2DB50600BED0B20C0CF0DB250480A161A5E80554D637EC7BEFC5F308006D1D9D0E46A3F1327C5E049DB622B82EE6D14013EE930080D88F01400061FC78118EBF6E3299DECACDCE6C1B0740C718001E5B420050284719A0BE69DF5F5FFCE5D71F009D5DDDAB8D2613077D0702E86F9E3CCB6D09FED8F3C4F3F1A779FFB04A9D3AA235043303940A00FC78C9006058A11A35815F6700F4F6F527F14C4730772198D1A3D43E46F1A783793AF81341317DF069E2794C46330D2A1454545937B836272D70DDEA95FA250100A56A340D8407F85A01607068380441BB0E41BB119F296752306D08FE7C8130F6FC5E1C7F07CF7B7DD3BAD547CF650028C6005051D70C003CB1B401A054A93D10A06D6341BF1081909A670FD678F0E7210156CF37E53C75EC1770FF8D4B366DA839E700A0520B09E06EE03BBF5B820018D16A1D30F09761E039E857DA6CE66C95002BE7B10A8409CF9F8135BEC0F1D771FC9DCB2FBDA8E75C0180A519B4640000F72EC180AEC6C0DE8801DE8E01F59B76A68E1F9F5FF0E72901B3790A038E7F30565FF8E755976FD67C550050AA34A38B421B9AF6BDF5C2390E009C3B45983993F9060C60D4AC1A3D25E83652F60CD4BFF0E05BF95C0AECFF3696567E7AED555798BE5400A835A30B42EA1BCF59008462BB1EDB2E9C3B7B5230270465BAE0CF255806A3894A2B6BE9E08962F1C6EB56645062CCB269C1B14016B0C644ED78FE5B5C6CDAB9EDAA535F0600546ACD781DE0AD171E3F6700E089ED1A0E3AB64DD8A4630C30F794CD06EA57AA55947FB2940E23F083C34AF27477A59599A9949B994C8E0E0EA25D1A111C486EAECE8B250156CF33E573953110F0DC376FDC714DF35903806664745168DD570F00476C5BC6827E2536E7A94F58ECE073F3E6F32F0AE9645915E90D468A5E164AABB3D3292D3186868615945F5846C78B2B488D417290CB69DB65EB29317AD92C41B7ED33CEC18FE07FD3E7A312617EEF965D3B07171300FCDD2C7580AF0200126C6BC782BE1D9BEF0CFA3FE3C0DBAAE746839E4E96D6D081A327A9BEA54DCCF09CB4445A939B4EC1FE7E54D7DC4687C004FC6B1F1C109EF5B9E9C9B42223895C9D9D902F37C130B5505C6418C52E0B23A944B2684C64FD3C93CEA7C5F3FE25C06036FDFFDBBF7DA36E3100201684200D7CF3378F7E6900481D0BFA0DD8226D34806455FF6D0CFE904285D97E923E3F5628EEFBFB7AD1DADC2CCACB4C21994C4A274A2AE9F0F1226AEFEE15EF171E1248ABB253293D3E8646F47A3A515C4EC74E55D2905249916141B402A0888B0C259DDE405A9D4E8063A11230C7EF3780BFDF1D4B2B0F7FF7D69BCDF3018066443BB624ECEC03206CCCCCDD882D731E19808D033A39F80D4D6DF4C99113A0F272713C253E9AD6AFC8A2A4B848E2C510078F9F1254AF861962206424C6D1EA9C340A0B09A0CE9E7EE10D4E95D710CE486909319497914C817EDE34A05002149554545E0B10E871DE48BAF0821C924965D3D70C267CDED333DFAAFECF09DC785E2380F306F6AFFFE08E3D9573054095A804369D3D00BCF4EA9FEFDB75DDB5F779B8BB07CCF7C4B61A2EBEAFD319E87851297D74F8043580D25D5C9C11D4745ABF328BFCBDBDA8BAB1853E83041457D689F37AB8BBD10598ED2BB352C90DCFADA86B80212C25BED2C70386302F23053291402E4E8ED4DCDE455F9C2AA7CAFA66F15E5E1E6E949D120F7044137FF562641172F885A498089203500B9780299E610A734C3D1FEE173010F0FCB7EFBEF38ECED90030A2D58E96826BCF2200BE77EF036F63666C59B73AAF70DB9597AF96C9640EF306C00CFACFEBDB3E3D5C40FBF38F0B9A0F8373DF8459C981E58FF5C5A9323A905F406D5DA345B8E8F0105AB322933293626944A70768CAE9504131F50F0CD33296809C544A8D8B16EF57525547470BCBC725222A3C5880222E2294FAF0BE0525555456D34412A904AF89A4ACE458C88233B1CB7671769C57F0E75E8A9E746E23F61F733F02AFFBFB7FFDE84E957500E8464BC100C0EB670B00DFBFFF81B7A512D94E1E1C47B963C38E6BAEECCDCDCA5C3117FA9F69A0AA1A9AE8C3CF8ED231049023CDA6EEC235B91417B58CFA0606E8C09193C8ED8B88735EB94C86C793041B84050550775F3F1D3C5624248233810C80610DD82234D89F542A0DCE594147715EA54A0DC3281719426E7A22F981491A9ADBE918BC43434B87608A9CE4384A898B2289C44C65B5CD908E5A7806157C443418286561467061A56D159EF78FB1B4F2A307EFFD91D10200F62F9563A5E0D79FFFC5D901C00FFEEB4100402A00C0AE592295928FA7E7893D37DDE01B1C1418331FFDD7EA75940FB7FE9FCFF289AFC8F1F270A78D172C179B17289D51FDF1C1E374AAA25A0C88B7A707ADCBCB1252E0EAE224BEF40198C2CADA2641FBABB2D3C48C77777121FEE5ACC36082A28A5A010A1F6F0FCA83E9CBC0AC668D2F01CD1F83FEF385950CA2E5E96002A4904AF508DEAF0632D0C03D0A3CE62FD86519FC04334729DE2B08FE2101CF95CA640BAA6BCCB12135F1DC5D78FCED98E898202F6F9FEBB460BED16650D3BEBF9C3D00FC0C12301900BC974AA5FAD8E8A8FC1B775C93E9ECECE435330046BF546FFF107DF0F91104F718712F3B1E79F9A5EBF21004CC309311DA5D441F1F3A4EBC3A876F71D111B469D572042F8EF4F8B2472103ACFFFCD32861C101B40E86302B258ED70352454D2352C022687F9BF83B1681CACB4CA5F8A83004578D2CA0820A4AAB8869934D642E9826D8DF87BAFA066008ABA8A261B45E9310154ED9083C03A7B6B19D4EC244F60E0C5100328F7478050646635B17F979B98BA2D37CF57FA1A56D272727F2F2F2A6FE61355535B5ECFBCB736709003FFAC9CFC625602CF06280C7F73269FFDA952B2A2EB970E32A3C2EB3A6FF9C97BFFFC921FAA2B044B8F5D5B99974C9BA9514151642DDFD0308FA31A1EF4CF30EA0EA555969B471752E8563B079A672D039B88CF88CC4585A0F36E0C20F0793BDC141A4807C9D9C93A303E5A42608DFE0E7ED49ADF00B474F9651694D3DE44B2E0C1FCF785730453D80C24CD00463E80C8398017960097190CBF0FC46B0412D29946AE127329363C4F9CAE1134AF15DD4233A0A0DF4A3D5D9494038A4D141267CCA1CDDFF74FA3FE70697566FEC964B250FE3B5EFFE72EF83FD8B0A80BB1E78180090EC9C30F3270360ECB85CEED078E5968B75996988006E9C637F76F404BDFFE961E1E603FC7CE8D2F5AB906EE592ABAB339557D7D3BF0FE4D3C9D24AF1A5FD7DBC681382CEB39A9D7F552D64E0C8712A46209C11D8D5B9192205F4F274173392AB801C7C0681BF8F37AD5E9E86E027E273C804E08E149462A67688C0E565A5503A80C395AB6218426603BEAECEC7CB8396E335C97111C83EF498EDB578BC9EF4F8EC0991E19491124DAE8E4E548CCF5A56DD483A484A2400919E182D3C053FB7B6B90312E64A1B73D3312B1DBEE406D7196CA2C3FEDFD8B35FF8D7B38F3D32B20800D80B0920AB00982809620F9670729037790786047F76F494139BAF8CA438DAB2690D665E1275EBBAE9280273E0E322E235787C4B86C9BA043290951C0FCD3661C6160B4668E9E8A610CC32060CD7F5B99C5B039ADE9F7F52B87ABE25C62EA3B5CB336018C36904B3F2784905025F226A04316088556002AEFAB1041CC76C3F595A2D9CFDB2502E06252193084216A01035817268BC0CE0498B8F126CC023C135043E6E349A84A4642645619A4BE914DEBF1E8167B02542A612A342C164435451DF4A3E0043722CD2488CC7C460CE5FFFE7DC87B030C7105EF3DE58B1E9B35F3FF5A8795E00B8E7C1BD8201A69BF95301C0F7EBBB86796FFCE12D3B29312E5A963F984FFF3DF80B2A8CD84F129D8C967DB09AAE567E9BB6AC5E4BA13062FD988D1C74A67A6E71A6838A37AD5E41C931CB84913B565C46FB8F1410FF0B194CD72B31A3D740467CBD3C89AF913F74BC48D4FD0D462382140743C8A5616FEA8457C82F281380E162504A6C14E56524913FCC5C4B7B377D81EC8103C925E36CF88C546401EA112D9D8057E05A017F17EE28F28C371A0D54585E477578BE23029F0CF025C584231319A4A2AA4630CA3085C053A4C62F236F18D9267C5696B30030D05CDCFF6CD5C8F122D5DCEA112D38FE26A795BF7BE689529B01C0175BDCF3E0239C05EC981D00A78F0DA80D34842D313E963E8C7AD554B2FE3F52B374F2B943CD11B4BDEDFF90E19F41740294CC83B51679FD85087C80AF37F192E703470B40F5A784610CF2F7A30D79D9949B9180E73A10FFA6CF67908132D03D670279D929B40AA6CF15F7F9079F0E9F2811C520185461F89623FD7305782AEB5B4431889D3D4B472E3C416274383CC43018A48AAA715E669BB4F84811786696136535087C3B3C86A3087012663D4B080382677EA01F0C2298C30FC6B1ADAB0F3EA10929A49A3CDC5C283321125993BB6857738A692DF88BD18D9CB5CF72FAB54518FE379DE4D2977FF5D41343D3028083BF7DFB76694442DA5B729974BB2D335F2219BD6F2629B50DE92836269A7E13F813D2780C5244BC87B935A05A3215757E7531747FD5737461CE4AD1DCE12EDF4787BE804E9793115F281D74BC61650E25301B409B0BE019B819C4FF5842B0BFAF004D26CC1DB8994E9555C32C96882C81737DEE076424C50883C674FE4551B9908788902064088914151A4CED3D7D02100DAD9DC26B3083A42544D1B05A450525A381E72A221F4B8E8900E328A810BEA4A3A79FFC31BB3392A2290880ED4436510226E80513B80174CC0EE1417E4262CAEA5A84A164C989C366B3019CE7DAC69980E30810FB7A7B935AA3B9FCC9477EFA6FAB00E0E06FDCB851A6D56A1DD65CB8F90D995C7EF55C00C07B0D3991A78F1FBD1CF073AA743E49CFB4FC8DF2A3DF319DC87A5FAA735752407B346D57EFA6DBFCEFE0D8D14BDDBF85D9AA213D1881AB706B41F19CFBFB629099010E1E3B05AA3F450A9546D0323F96101521F49D753F1F6E9FEFC74484D205908078E8B24AA31505A6E34515A4E1F40FAF5B093F1108AA6E6CE9A07C049EBD86BBAB2B2D4FE34250240D0C2A470B440C08043E1300E2C0F773C5B0AC965A3B7B8579CCC2F1D0405FE24BB44F55D6031003C20426834DA2E13186F159B8A0D4D93B28B29384C81000C2978C90B4E6CE3E716E7F2FB7B3BDC279FCF91C170F770FC1901CC7E161C5E54FEEB50200CBCC6F6D6D75341A8DAE6B2FDEB20FA8F9862DD46F018094F798CD12377FFAB3DF5354E27A5400A0D0F520BD1DF002DDD477BBE9B1B50F4986492179A6FB09FA30EC5D1AF11E65A3C8C124DAAB7B8ED2CC39D0FC2EFA949B415C25C4F95764242305CC160D1DFEA1E4CF018A0204CB882FC93377CDF2740A0AF0059D0FD26180A210B31E9F0A06334E18492F507255432B1D2D2C43C0FA4420591E38C0DDC82CB872C88177418E9D9D1287E3E13430AC8204545313727FEE1DE424C75278B03F40A916816FEEE81115CAA4E83018CE10914D94D6B688E39CF2C6458460E6076070895A009E6A368F3239C5470481A5DCE7A4FFF3AA29E07DB978E6E2E24A3211A3D1982986555B9EDCFBC07FAC01409A9A9A2A87CEBA62F35D7BD165AF38BBB85C64EBCCB70080DF44E2E2456F05BE82C01FA2A75ADF150078CDEF19BAA7F3197236399BFF27F35792BE949AD1950593161A60E04EAD22B73FC1E8911FAD5F992D82EB026AAD82396309E06AA03302251A41D8586F3948CC12ECDCB9C5CBDD3FD67E47CC403682CC129C420622256526884786D0D9DB47F9851CF80E3081B3A81524C7460A0FC29E8001E1EEE68CC0C7835D82C72A8675421A783013A2C2C4AC3721C215087C2D8E631411F440513574904B01B641AA00F0F47A23001104E6F01165EFF9BAFFF10B5A66093ED7349C9D5D4EFBB6B1E0F37D8542B5E5977B7FFA9FA90B3C248F3CF288E4830F3E70C2C93D753A5DF0864BB6BCE0EAEEB1763E0090CA1CE8BDD0F7E8B8DB7E7AA2F5CD7100DCDFF93C06CC444F07DD45571AB79BFBF34AA8C1A372120C3CBB8269074CE22DFE7BC497E17AFF6833A8579844AE172C4F4BE0421477C3445DA011FE81F37E2E196762A6F28014C2C01D292C25BE90323C38802E4006118559D9D6D14B874F95529308B00BAD001324C52D23BEDCEA5871158C64ABC80E72C0040C142DFC077720CBEB9AC520C72E0B1146D101B3B90AA6B3BCBE55789465A10194024030C57366C0FA3FA480FE87058A4D78A4452A004DC7021C4907B9834853392692B1993F11002AA5E2B227F73EF4C1190060FAAFAFAF77C27D2F9C3474DD255B7EEDEEEEB1DA56EAB71CB7C8C57EFFFDF491D7FFD02FDA5F1B07C08F3B5F2083442F00F0ADBEBB295BBD8EF6253C641E4CAE9704F746D34DDAEFD2377DB6915ADD49038AA741D507E8BDF7B3A9B77F230C6136256186727AC80B4138F05C2D6463B776453A743E52540C392DE4F5009C56720E7F414E2A34384054FEB848C47B4F503A073E05299D02CFFB0212C059027700392D4C423E6F827B2FAE6E00833488F78C44103313A2055B7011A8B8BA91B82F1F12E04369F0109E0013670065000AFB8208C805EBBF13B29CB91780E62801669388854C4CCED3819F1A7C7E8E5A65050016098001741C1A1AF290CBE581176CBCF8712F2FEFAD739AF913004048FFFE14F20704FAFE7100FCB4E345D24A470400BEDD771F65A9D7D0CF436FA3087D1C7DAFEF6EFDAA1C4FB9DEF0AC24257E3F82717AE5D4C8C82A6A6DBF8F3E3E6414A5610E2E077C5D5E0602037A8641E4A08B0A2140C040598DC073B6C014CFCBC59A91FF7B7BB8535E5632A5C0142A356A049EDBC18DA2BAC7333E15291D3B539EED85307E5C1B60DDE78EA1B7A71BCED1438595B5626673EA97897491F70C8432C84023DEC31F7FA7C64508A09CED02D0F8CC17067E2C0613823F1A0BC9381BF063C30AC5E6A71F7DF843AB2670F9F2E588BDDC0527F73248244139CBF376858446EC46AEEE395700F0F346E43AA0D28F0A5C8F08003CD4FE7B52CB940200BBFB7E4CE9EA55020091DA0401888CA8C72822BC8BE2A39BAD349724F4C1E71974B2F83BC81472841CF00F251C1C2F0699847367CFE0E3E549752DED2283688129F385E95B959D2280A1869673ABB804468ECD5A0EB49F53463674550D2D42FFD9E805C12FE4A6C50BE3C9A95F0124A507B93F37823213A3282CD05FAC2AAAC06BAA1B3BC80D862B1D81E7D2F6EC3D80F9EBBF25F85CFCE222159BDDE9823F1500BC2915CACD4F3F360D007829775C5C9CDCDDDDDD0546D003D9800F6E51E9392BEEF00D08DC2CC36D36EA9F2A172491D311F702018047DAFE484AF99000C0ADBD3FA554CD0A0180686DB290848CC8FBC56A72856EBB79D3CAD740D54DC21F68461CA9BCE6527294DE0D63B70C695E117D72A40DB3BE49BC173B7A5E12E6E9EE46FCFBFF9F7F51241A42A3BE204D983BF5C80818A202B97C8DD03CCE10B2531340D132AA6FE9A4A3480D59BBB9CAB8223D415038E7F205A5D5C2D9BB3A73E3289A62C28331F066AA696A13E91E8F039780A3E0016CEDFD2FA400A437180869BAB82F9D10580BCD4B2705FF4C39502AD500C0431F4E5B07602F505858280F0A0A7234180CAE78334FC4DD37222A263B3523EB4E0F4FCFD4D90130E131EC9B9C9AE9C9C087E8E1F6576948DE2F00707BEF4394ACC9110088D3A6D10D7D3F140030939C4A9A1EA7D8A0572838A01E133F1DD47D3F4EE507FA3A4C2EAECFC2B4F12251373A72E226F2F5BC4D6409FC8B199F1D3D25560E89C5A360029EF1A39DC372F8862A3190DC62CE4B4D242704948B4A874F8EA6869E1EAE94072045C3287277F238025FDBD42E0C557A4214254545888A5E03328EE22A5E3B00A9890A47361022BEE7D4602D7603C868328A35900C00C968AC4E03C04AF0C727E1142FA0526AA607800504BC831CC81C1D1DE51A8DC6098FBBE1BE378EFB672C5FF18D98D884DD4ECE4E7EB30160A24C143B9752F0482AF5CABB0400BED3B3971246320500787F5DFF9D020026B32395363F0A00BC48FE9E87E978EDEBE4EBDCA65F9EF99243727CC919D2D0D5934DBF7B6D039D2A978842CFBADC4CB1B68F0D21570039C71F5D3514432B911E72F998D7021C8667684426C005129EF15CE6D51AF454585A8B99DD28AA885CF7CF40F01904EDDD7D74B2BC8E069055C4222D4C01B89C1D65F36B03DB50001A3F0E69E3E69A7A443D46F79335FDCCE0CF2C076A95E65248C047B3F60278CF6C505E5ECECC0F457070C1DE031FDCDBC9C929EC82F59B6E09090BBF921FB39A2958F109266C1592667A2AE86EFA5EF7A362E633009246B26947FF7705008C26172A6BD92B00E0E779948ED5ECA300CF839410FE060505BB9B9785D59E5156AE6988A453A54F215F4F12813F26328132B1F49B4BB97CE18887BB0B0D0E29E9504189D07A76E7BC3E3083178662B08BAAEAE96445AD28E870FA97933ABA3E907B055C106AEFEE87EEFB413A62C8C3D565FE6B00E65000E2E56DC3F03946B371DC7B5977F7163698DD0CAA54EACDCF3EFEC887362D0BB7B001B203BECC8BD9C0111FDE15873DF57ABD1F642165795EDE777CFD02965BA37E6B467158AAA247BC7F8219FF7D8A81F633005234B974EDC01D63007003001E1600F0F5380606F8D32800429FA1A2C6A72932B8D1949BF117A98FD710283C981A9A6EC7ACDE4E4A93925E31FC86FA0E49C9B13450E8FEDA1519E403E7AF50A9444D80977DC1C420D58B87FEC78B624D596D93C8FF99F6234303C5DA411FA4896C04B919C405216EEA709610E4E7B5C82B80AC077F44A7A5BEBE7E68BD6EC20C9F29BD9B590E267A8121D5F0E6179E7CFC23F384A0CF7A61C84459C0DE41A7D339393B3BBB331BB02C64E5E66D4A4DCDB8D5C5DD35646AE0CFF00BD88FC834D4A733905CE7290090AE5949570FDC2A00A0377A5045EBCF04007C601E4FD4BD3A0E80538DCF89CF9315752FF50C6F33FB79DD6F96384AA52F6B5FA04F93DE259D874A9435D6B55E4EB7F7DC475295A3B87E808D1C0F7A7A02642033495412F96AA22360897E183D5E22C615C220EC4760164F56D489AAE268693816062F48A4878BBC02F88CE01BF406EAEEEB23854239AEF312CB184ED2F7C9942F9DD6089EC90683C30397F734357CF8D7BFFED56401814D57064D9505BE2E103717A48D225BC03E78D3A59BAF8F8C8EBB0679B5B3B5C04F660609694D12BADBF30E910D5C3578CB1800BC018007C600500800BC320E80C2865FE3754600E02EAA6EBF87FAD46B685FC2C3E6AE9C52895932F93BB8A9BD28FCAD8DE4991F2BF4FA82E5A9E4E9E68AB4B0173250441DA0741F2F775A99954CD1A1C162F08BAAEB45B9976FDC12E67A017FD6F95FDF689BFE73F7B30FBEA4BBAF573C7FF20C9F39F8D6D9607A00F4F6F47CF3A37FFDFD83152B56E82D2098D3B581536541A15070F5D0952B88A01AA84140FC864D17DD161412B61A8327B116F889A6B157D243E5A67A8A1ACA1100D0197CA9B2EDC702005E6EC574B2FEC509007801AFD30B0054B5DF4F9D8A5CBA2F7C076DA4CD6663462BD5F9964DF20761D5A9F483964728CA959B3EBC80A444D4F2DDA1E12B3392462B7E1870BE76905DBF46A3C5B165A2E3C79DBC2F6305F0D0D010B57674C27BE8A6D0BBF4CC802E821C74B6B7DD505154F03E323C4D4141015F87609AD7D5C196BA01648181E000EA746659C0B946B385AC9C0B7257ADBACDCBD33B72260058BEACDE0804793C08C7EE20823B0A805200E0B7E300603048A5230200CC12DDAA2C0180CB86AEA3CDC3D7D1DF639E33B7A49E94B82ABDE9A6961FD25AD906A48E4A3A78A264BCE2979B9E44998931249349A88E5BC390880198C3E8B0605A9199284ABA362EBD3A7D65D33CF49F53BAA69656A4B38A29E99A745230670380F48CE7CE9C1AB6D4D75D5F5152F889979797E2C08103BA790360221B4016245C3B080F0F77E8EFEFE76EA207B301B6C08D175D7A75526AEA4E672767F7990030BAEE904867AAA35E4538057AFE863C5D2B04ED5B0070A2EE6592CBD40200E5AD0F518F2A4D00E08AA16FD145C3D7D0CB017B69D8A19F1EED7DDE101AE82B3B51522939595A35EA1B60FCF23212C5AAA276710D418970F65CE9E34611EBBF79917E8F68A602900EA96613FC476757B7E8C29C11A40913E5CCE0CF4D0E263ED7A0D7F774B4B7BC545F59FE370C4727247B283F3F9F01605CF00F444C94055E4C023AE36CC10D87BDB0F9E11675F1E6CB6F8E8C8EDE241DBD9DD9619C040C1E996A0CDAE754DBB993BC5C0F8C01E0550040210050DAFC73EAD32409007C7370376D506C150050CA8645DBB9B1A991148383E6E0405FC99AEC34D1E1E3948ED3409601BE2A8803CFAD5E5E98327DD017F6FB06161630198D82EA1B9A9AC5E2906903686DF64F2307A753439AD60FE083E9BA3BDA0FD55696FE1D995B1DBE4F33C6B97B5118C09A496459484D4D15B503D604BCA93B669D37DE23203E29296BE38517DFE6EF1F90302D00A6F61BF0DF88BE861CE52F514DC79D38D6230050D2FC18F56BE2050038855CA3DC2200A0956AE8075D4F5255553575F7F4D065176D40DE6A305636B4389456378835889CEA7159973FF259B804FC0C20F4C1D95754D721D5544F63D86C0BFEAC7230F9DCE681DEDEEA86AAF27FABD5CA5A8C6D2BCC7A1B667E17EE0F8D7900C39C4DE05CD8A0B5B5556629290308421630A881175D7AD965CB73736F707573F739E39A03CB8528D3640F46B302B3E93D1A1E594FFD70FA7BDCB7D2B58377D04AC5C5020006FCF7BD9E5F08000C0C0ED0AA952BA9BDBD837A7ABACC61013EB43A3B4DE2280C9E9592ADED4BAF6D0A3EFF8C4D79453575F5F4CE6CD6A6CBDFA7F8015BE540AD5275B7D4567DD2DFD7538ABFDB108F0E04BF1B93B21FFB61A552A9A9ADAD359020BE4506C074B26029298314BC2011FEA0A0B06F6CBD7A576252F2A598950EE333C0C2065301304DB511FF23E4187C3D518D09F9BED440198ED9627918A757311121A253C8BD7293C968AAACAAD4BAB8BA3BF3275CCC4BC04FB385890076AAACAEA5BA86261A6BB459356D5301309317B0253584CEAB3B5A9A0E77B6367D81B16FC77B7722E85DD8F7E17943184335D8489B9D9D6D98731D6021B230B5A40C148ECB426C6C6CCA65576CDD1D1A169661B5D368198833E462E662D34C99C7407F9FBEA6BEC10806725ECC4BC0F975F58DCD545A5601D9D24D538E9D62D8CE98FD7397037C02C3407757496B43CD6718DB569EF11C7CEC7B31E6036AB55A8589C7570BE939F51BBD74730E95C0C564034B49197B175E010679F0C5C341EB376E5CBF6EFDA61BC10C4192B30C00CB791AEAEBB4DD3DFD5239927E9B80308304B0DF38515844FD601E89546AA51C3B5BF166263698DE0C2A86061B3B9A6AF76BD4EA7AFCDDC1C1C7BE079FBD1F4CA4F0F5F555438AF596593F76E1AEF92BF9A9D8A99D466891330EB9393989AB8CFD713F64C7CEEBB767E6E47CC3C9D1C96926EAB72DF0930160CD78F2601417158F28B55A47BC4E365709E01F6E3E7EF21452BB165186B69E7FCFA17863831CF0633AED487F576BE3E7837DBD65F86E1CF84E7C5E41F7D898EE5518631DC6560FB76F9A3AEBBFB2DF0A9EA9D3C825659685B0B088F86B77EEB82936362E572A9349167BE65BBBD855A3519B0A0A0AB50692385B7CD14CC1679D3F55524A4525A317B24C5F8E9D060033C8C14CA921D2C99181EEF6E3BD9DED47C702CE3ADF0926E59F4119C4582A4770C358EACBCACA98EEADCEFAAF0C00B6741AF9C221CE1656AD5ABD72CB15DFF816D2C6F0B30900E98494AAB3AB535F5C5266324B654ED3B140556D1DE51F3B2EFAF4931A32561DBBD4362F304B6AC881540CF495F7B4B57C8ED8B672E0F1D9BB10F81EEC0760AC15904F755757972E3C3CDC38DBACFFCA01606BA711E80EBE66C78E2B56AF597395AB8B9BDB6251FF7400B09C07EC3452D3D8282792C92DC1EFEAEAA14F0F1DA68ECEAEC9419A2E8036C8C15423684D0EB46A554B5F7BCB81118D8AF37941F5169DC7368CBFD52E2E2E5A8C9DC19AC93BA701604BA7119F2F30303838EA865D375E9F9E9EBE4626934B178BFAA5330008D46ECECF3F3A525DDFE4F8E1A707CC0D2D2D7271F9CAD4C519D6EAF1D6823FAB1C4C7ECC60D00D0E75771E520CF61571E059E739F096B4CEE2EE7133A4A4A418A73379E73C006CE93472499965213B7B79D6F6EB76EE02CDC5CE0680F9CCFC490C32F69A1B6EB95D535E5BEF628B5B5F0C394026A2550DF59F18EEEB3A82EF2C028F7D1726441F187110FE43E8BC56ABB5B87BF35C67FD390980E93A8D600367D0DB78A7110F075FBD6DDBC5976EDEB2CDD3CBD36B31A97F92C48C3DF7FA9B6FD594D534B8586AEED299DCFA0CC19F2D35C4E9CD5A95A272B8B76B3F667FF3D88CEF060B0A9D070094BC481A74CF174D18E6A2F34B0A00D63A8D5C520623B8583A8DCC069E9E9E1137EFDE7D6D5EDEAA0D8E8E0EF2C5A2FE89AFE1DB750C806A0B034C5FBC3993CE67F00253E4C0A0D3B62BFBBB3FD56954D5168387EFD8CD81C7DFC3F8186A4EEBE6ABF34B0E00B6761AB98894989898F2ED9B775F1F9F109FBC98D46FE96F5DF7ED5B35A5D5752E67B65BA7D7F259FDC0D8FB9A4D468566A8FFA046315860A17A9EF55CB7E7A68D52A9545BAA78313131A6F9EAFC920580AD9D46D064F0E5575CB1F6DA6BAFBDC6DFCFDF7FC61FB7B291FA2DB79D37ED11009873F166263920B35EAF569ED40CF5F1CFCAB7F30A770E3E1B3CCEE7B990C33ACFBFBB3566F0CC8B39EB971400E6D2697472720ABDFDF63BAEDA74E1851701234E0BA1FED300D8AD29A99A08001B6AF9D3A78666A35653A355F47F62D4EB9BB87CCB548FB7E9C17D36780A0F0F0F0DE44DA7D1688C8BA5F35F0B00CC76F10A771AF95F16C51614111111F7DDEFDEB9232B3B2B9373C6F950BFE5B6E35B0C805A17A98DC19FAE9963361ABBF4AA81FD06ED48B9A582673178675BE7BF560098A9A48CCD1DACE0C3D902B6E00D1B36ADB8F9969BAF45DA183257EA9F0A009B6BF95300809BCAAC511ED66B14C7C60C1E6BFDB8CE733E8FC06BCFA6CE7FED00604BA7912F5EE1758918E890DD7BF66CDE7AE5D6CDEE1EEEAEB652FF44001457D6B8CC74DDBDF5D4900C669DB6C83CA2388031E685193CE399EE7B2D3A8FCFA8E1BAFDD9D6F9AF2D0066EA34BABABABA6170BD395BC03EC8DFDF3FFA9E7BEFDDB6FA82D5B90E0E72E96CD43F15004474C6C28CE9E4804C867A1A517E62361AF842034BDDBE97E9DEA2F3602BFD62E6F3E73500A62B2973B630B1D3C845A4BCBCBC8CEF7FFFFBD7C4C5C547CE44FDD600205291197E85436A36F5490C9A031283BE840D1E533EEB3CD3FD57A9F3E7050066EB34E27B8A8B57980DD81FDC74D34D1B77EDDAB5C5CFCFCF73A6F34D0580C4EA620D1A911B74C749AFC947B0DBF11E1D96E5585CBEFDAA75FEBC0280AD9D462E227135F19E7BEED97AC92597AC72E025C33600602208107C938CF4958E46C341F07E33CEDD2E97CB3BC666FD00F68A2F2B9FB703608E9D465E8E8620095948C2EDDE7BEFBD3A2323237EEA39B67F6BB7BAA4B2C675EA71B9C4D4EE64D61F92984D7538473B6F34BA32677C11E662D7EDED00582459B0D669E42569DBB66D5BB567CF9E2B8282827C4E33C01E657165B5FBF8B9C834EC64361C9793B18C46D7E08D3B7C36790098126C33ED224C3B00BE7A2058ED34B24944008320056177DD75D7655BB76E5D0BC970DC79D39EC1A28A6A6FBC50E760D697622B1C5B8029663D9770B1F53939390D8359C4AA9C991661DA01708EB0C14C9D46968565CB96C5DC7FFFFD5B9F7FF90F7EC5C5A583CE12FD094493FFC103DEC4BA7B5EA081A08BA5D7EEEEEE23E792BBB703600EB260B97805875C2D9D462E22312B606607C2C7F1208DE038A7737C7955B7654996979797A6A7A747B790553976007CC52691AC741A1908F8DB1BDAEE89FBBCDE80D3B861FC3D80C00FE16F95B7B7F7C8B96EF2EC0098231B583A8DA075FED7D05D31DB396B90629CF8624A0D9EAA9EBAF4DABC8407D10E80696A071E1E1E323081C3F0F030FF78A6041261C2DF065E8B37D7A5D776002C4159E05F504790A5D077D125823298010AF3D725F07600D8EE0F46D37FF153124BCBE0D972FB5FCD077F9A127699A90000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (123,1,'Router_(24)',decode('89504E470D0A1A0A0000000D4948445200000018000000160806000000DA7D5C880000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000003B9494441544889B5D36D48DD551C07F0EFEFFC9FBD3E5CCD344330967BB1ACA47C8039C75A08C188DED48818AC17DBD8DEC9682F22160303AB37AD5C052114C41623A2C064DA13D6AA3B8A54622BE79AF9804EE7D47BB9D77BFFFFF3FF9F875EE884954E85FCC179777EE7737EDFC381D61A1B5D9F7ED9BBFF99C3ADE59BE961D844B98E53A78559BC999E4D01EB554F4F8FF3D26B6F756D19E0791ED9A659B865000010DD79E4FF0E18C61603EC5F80B95EC3E8E8E823A1504FF388FF44B43E60B00D00BEEF5786A17821C7FD036498B55A7028A9714F5141EAC8F3FB8ABEEAEB7BF7A9BD7BFF587582BB007100CF69AD0F68608F5492A490181E99402EC8A1345E04D360F1FC98732C08F8B12FBA2FFC1EF8FC5CE48B4F0E1EDC3F75D7097EFD6DF04C63FD63470038522A6416B3B83C3C82F1C91B20106424307963168E6D215E10432CCF8152BA5641D74624DE78AFF3A31F7C1E9E2B7258B761587700A4B5C68957DB545565E5A5279FD8FDD0546A367E732205A9256CCB442EF0C1790868400801CE430825519097879867414A8120E0E09C230838170AE96C267D94A7E72E74747470D25AE395B6D7B5E7BA608EA77B9B3ED675AC91B6A56B287EAB0C3C12504A228C22701E22142194D4504A218A045CDB409E63238A42044B0882308441E4936B3CCC9A9A9A3C25A394655BC8774C7A60A29ECD4CE72863F4CA476BCEC264124A694452012058CC0288000DB88E8598E78008506A099552C0320C789EE7095FE4B34422E1FF3D74A5FCD6CCF4870C104DBC1E715E8A9264A5313665EA86C7DFD6E31503300960064143C36406EE2D29444569316CD384520A3C0C31BF9044361740080121048068E90D008088E8F8F1971F2CAF2C3BBF6D7B751DCC9B6018C0154EB85C32AF6AAFEDD46E5460C40B62282E88ADC491CDE6707D6C0CC985242CCB826DDB701C1B0C0866E7A6B7AF002BAF4EC44E9E3AF5EC8E1D35EF575555954A2B40641054DA50B974926B32DC308CC80F7C0C5DBB8E3FAF0E032038CB071B8C446661AE7B6672FC50229158F80F707B1A00ECF43B674E3736361C2D2B2BB35DD785E7BAC86617C5679F77455D5F7F6B09A94CC7B6976F6DE9309B1D4A25675FBC74F1E280D65AADF993F5922A89A8B5B5B5F5CD9DBB9ACFEF6E6EDE655B1615DE5761CE2717A2547AD1746C1B8C1854C4E733B399933FFFF87DA7D65AAEF593D782A688684F7B7BFBBE9696960F1A1A1AEED75A4344110CA8003C735606B913FDFDFD69BD4A1CAB46B45A2DC766747676B60DFD3572F89BEFFA464C85438383BF5CBD1DC75AB7DCD40240D5D5D58500D846F6FF03678B6042D4627CF00000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (124,1,'Router_(48)',decode('89504E470D0A1A0A0000000D49484452000000300000002C080600000023163B670000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000A1B4944415468DED5596B6C53E7197ECFCDC797D8B1E338F7401292102E491428B052A089482874AA60745C0A68A3454C1394AD52377E8C75193F3655435AD5AA552BA652A1858E46DD86B6A96B35AEAB20CDC245DC9242527223B1133B76E2F87E6E7BBF633B7142C26820B09CE8CB777C8E7DFC3CEFF3BCEFFB1D1F4A5114988EEDE041A029D31F965FBED67CE3C4476F0DC2346DF4745DB8FCD9B3A63979D95F2A0CB516A671A3A7F5E21405D3BD4D2B018AA66736818755E0AFA74E593F3C7EA279C3CBAFEF7E320A3C24019E61385392611ED08A75C6E6C0FF0AC234E7C00C27F02814A09FA802143DC31598E9167A1C956C061080994DE0B176E24B76BBFE7113601FF6021D767B89148AEC9014699B4194336F785AFE2E884A1D76D1065190FF3F09B85CAE4C19E8970451D8CE48CA2205AB8D2C02907B0BBCBBD804206F4A3524797C5408969697CC2556C6A13C690226BFDFFFA22849DB6986A9924589A608E0490758788E83958BCB7E7DFADFE7778AA2704C90C563DFADAE6E99423D9E32010D8E7504B4288A2F6020B5E4E018A0109DBB7AFBC09C6C048EA1EF3987230FC37F0064EAC0897F7E71598A48754129747CC7C68DF6874DD4890810B957E2D80EAA1DC042C20963A3ABCE114184C62BD7A1ADAB076C160B78FD3E48B598A1A42037EA99099401192D07CA220E98431FD77F7A5A10A53A3F47FF65CFA64DBEC9057830054A63A0B7E1C88D1F1C0F9A0CA7DB03E7BEBA0C81600852AD669024593D96956E857E971B7C3EBFFAA5568B09D2AD961125E28180E86B4656A81A7C55A30946DEFFE0C8D1BF09A258E7B6DFFDA2B6B656FCD639F0C66F7E7764CFAE1FA66466A4E726BE210E5A9665B876AB0D2E5EBD094683010C3A9D6A1BBD4E0B399969303038840B2F4605DE8764325353A0B5BD1B097940A361203B2D35AAE284CA801EC7563CB9D564CB741D7AE7BD4F22A25C57B1A8B4E38115C0A83DF5FBF70E8B458505E7766CDE58AED7E9CCE4B83F108453E79BA0BBD7A102D5683470D7DE07730BF36056563A086823B331091C1197AA02DE8040281C41C298403C0FEE41AF4AF2AEFD6BC8B2A500CF7360D46BC7283A9A33EAB15445A1F652A0ECBDD874A523CD960E7A0D9B3A69A78EFFACF2B35F1E545896057530AC776EE11C47189822F21E5D3640E7553768790DE4E56420997E4832E880E35868EFB243BACD82F920C0D0900F6CD66424826A6016B02C03C33E9F4AC03D340C3AFC7C301402735212068205AB39094451C22102168AE8AC0EDC97C49173129E437B3561D9AE0B0BCCF1F70FD5F68F49705C30510CC3C0C86019537B7757714B673B1C9E5BABBCFEF47A68587F0C247D488D920123E8F6784183648D48C4E70B8041AB55BD1E0A0BA041620400511E9354CD110617352456E4FAFE50185C83C370B3AD0B1C031EB5184C946B23F68D1E5C4229D4DB2C447A7EB2FF17677E7EF06049EC7E81A2962D5B66243E6398D1C121B874939952BAAD54D1A91AA5A47D89FCAFA547E1A3396F026F53D31006BD7E484AD28F00D060C443E130F0AC064211412D680C1D2DAB2C92220B331E671FDA9247058248362248D0E970823F181E577EA344D4FEA78C16019D4EC7DA526D95B4C294AA042A2B2B199CD34964681AA31F1B84102B0B60122D00411DF595E706CDBBCD72AFB60BECE606A858D80461C18BC9AC45988A1A55BD4E0F019C198652232ECB1202E5D402A0D7F13084D5891089D558CC051D081111F2326C682F6EB4D4268C3811F211040F5A2DAF2AA2C851EBD367CF9E95388E73B9FAEC6FE1C1C0A80A8C3AAF1B7A0E68053F8EC3D45948D734BE00D5FCE74AE5D3EFC29A55EF20B841CC07BDEA75AD568349052022701D7E51282CAA0A0D0DFBD55B430EAF194D7A83AA506E86156667A746EF9D55A4102FB1234A901C40FFABEB6A5991D57C20819163C9CB9079D7AE5D1196820B1EE7C0E726B369B6D164CAC764A618B4918ED68009FF7AD85E30C91648415F535E1BD5DD93069EC122F9F9D5BFA50A666333EB9883E0CD2A8020F687144B32389C036AE4A3492981891045FBE460BFC8C0FE4170CB72B444AB4389CDB2A21685E1E16108AB568CDE1850B1412414C3914FD65457B5B0B15A2FE389E1C58B175F3C77B26FC7DC790B6B4AE62FA8B5A6D90A8912C53282C3B2D84D3931EBD1D3C0A07D3408C04E7FF99F6A2524DBE042D9252A2035C0FAAE1F405B9B1D7408940026B621CDCEDE3F006938CFCAB28114AB2EF204DD5DC6841FC0723C84E0193AEA042A7667262590082B3233A60F285149043CE944FFFFB9E5E6B50BCB5755FE68FEFC053FE68D7CF242651ECCE672D11EFD18A1107E801061C1EFA7A8FA8001BCA65EB9B5A089CE71CF817C4BB95A3673D26DD089FD8394BAA5A5C523A5528ED903122A0E89BE6BC00DBD8E3EF535010E09C0F11F90BF3889F0F030A619455393FDBCBE79F366E6CE9D3B4949164B51CDEA356F1415173FCF6BB52CA94E0A5E40901AF14257F1CB22501FC885642905DC9C03B2AF16CAA525F974C75D87AA40717E0E4675B49E4F54E70710F8EDF67608A06A6CAC94B3D1728EFBECC831929378AD407FCFDDA3775A5BDE2C2828E8A1EEF77C809458B4155129757E69E933CFAC58F5ABD97979A55CACE1915956EC704B08822CD0E0A387C1D09B020ADEC95892348229D9C44BF734AA3878113DEE876B375BA0CFE91C291C6C623F4A20822A8A6E675F63D737B7DFC54034E18AA0B7A1A121443DC8030E221512214BE9CCAA9A9AEDCBBFB3629F2DDD961A27413AEEE8FEE8B8D3F64DC8E976ABD520B1CB862221B87ABD195A6EB7A9FE1E033606384109C53F34D8E6E8E938ECF37A4F22F8CE9292126F7D7DBD346629F1201BB1556B6BAB51ABD5166CDEFAD2FE254B976D30180C3C5952B04C4C152E4E80510991F4BA7CF94AC8E3F5F1D895E9E6AF6FC1F9C626059B1FC58E033B5E01291272B9FBED7FF27B073FC5EBDCC60A3570E9D2255149004D7DDB474CC4560B162CE050C2D4C2C2C2251B5EFCFE81F2B2F2A7F035359112F17DBC9B9336EED8297AFD417E2C60366A9F1122D8B16539E01B749D1CF6B88E6041B986EF73A05DC2A45A4EBA989BC20F4EAAAD50D2ECAAD5AB376C58FFBDD7F2F2F3B2EE25C08CEC2F5E592D480AF6B349A24ED39424047D577C03FD870541B8804A77CF9A35CB1FB7CB7D57A353DD88AD9A9B9B93799ECFDFF9CA2B7BD73EB7768BD59AA21FAF00297D152B560BA2AC70F75887AC97C44847C4E7A9C31AFD19826FC3C80F8EB7CBB41048B41502B5A5A5A555EC79F5D5FD95AB9E5D8E6B1786AC7D98D80D49F9F22A95C098A883EC5142817F4891403D62B99E9C9CDC87CB9BB0F280C0A847F99895D8AAACAC4C87D267A3BDD6EDDEBDFBA7151515F9234F2E91404494A204682AC4C8420344027F440C8D7ABDBE3B2B2B2B703FBB4C3B81F8565555C53A1C8E64A3D158B065CB9697B76DDBB63D3333D344088405115757D22D0E848F599A3E4DEC8251F79C3973469C52D0A6EB4137B11556290DAA9166B1584AF7EDDBF7DADB1F7C382B38E43E0D8AF4D954ECF2580924DA0AF3438F499E81FB19689F7E5CBEDBA76297274220B15A399D4ECE66B3098F02787CFB2F27B8C84671AE50260000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (125,1,'Router_(64)',decode('89504E470D0A1A0A0000000D49484452000000400000003B0806000000CB8C8CDC0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000101E4944415468DEED5B09701CE5957EDD3D87A43934BAC7BAAC5BB28E91B1646CC93612D816364B143B148495CD62075361ABA2F5EE864D2DD91490A5922AA8A576B3A46077612B0B65C862273118022CB163D94296655BB646B7461A8DCE19DDD268EE9E3EF675CFA1D15836067C011EA9AB0F754FFFDFF7BEF7BDF7F78C089EE7E1DBFC226FD58DFFF0D189275F7AED37E3DFDDFF74FDB79200A98C52A814CA6482E414DF4A0284174110DFDE14B85D08907C1309F8AFDFFEAEAEA3DB943B3231FAD6FBAFFFBBE9B65500798308488E4FFC9B8438CDF33C4F95DEE62970EBDFFB1BEB01D7FADE7708F8C612007752E00E017708B8DD09206F28015F0B0F803B29708700F2C60C8180AF0901E41D05DC20055C6376DDC8E93065181CDC8A52DCCBB1DC832CC7B6B02C7F88673CEFE9743AC7EDA280EB4E80C53253C671F45E96E31F9552122DC3B27894177E7700CFEDE008D2D1DAA67F4F1129B77B3CCC2D2F31D78500ABD59AC5307C1DC3317B8160F3791132FE084F9C7961EDDF178F8102973D0AB91C64711278E8FE7B1E6C686A3A5EBD69D3855B61825F9A009BCD164F50D4231CCBEEE578A8E081F381F5C55B04EFC71F00EE5F96CE21718CA9DA844D2CCB9E3F71AAB10FD78780A1DFAEA9A931DDAE1E108583ACC565AF442AADC1B57409141F02DC071802507D7FF0EF4380893065F0F9B8FF020BD40B1F7EF2E9194C9D433CED3EBC7BF7EED95BED01142E5B71D98383FC1E8E5919000A2B81F47FD0C2712CE8BBFBE1CCC54E28CCCD84C29CD52095487CC9110A3E5C29C2B53C54E27E254BCA7E75F8E8B18F053268BBF5837DFBF6B96F2601E502685C1EC5451B3C1A007E05692F3A9CF0D9393D74F419A1203B1D369597406B671F9C696D87AA0D6B41AD8C02B54A0972A92404FCCA24E2062A8CAFC5E3B5548472F1CD77DEFDBD97E50E8D0F1A1A9E7BEE39EE46A440961FB4B0E4879FCC5F6E6841F99B46CD70E2CC0558B4D9614369216C5C570C4D17F478DC0277EBD64056EA2A68EBEA87146D3CA427278171781CF2B3D241A356F85571E554F21F55A332F6E381FDDAF4ACF1D7DE78EB1D1AE843070F1C68BF2E8DD0B3BF7871DB27C74FBE8937FDF94AE02198C141BD02C330D07CB11DFEE53F0FC167E7F5B0F1AE2211DC87279BC03C3905DFB96F132427C5434B7B37501409EB918851F31434B4B4414C4C348C4D4DC39F9B2F8217DF07FB84E5A406CD925FA614DF514841D3FD079225F4FFF6EAEBED2FFFFA3F7EF2D22BAFA47E992A40043E1CAD7FFAA7BB2889E468545464F7BE3DDFE7F2B2B38AC34F46D3139799392B7C7AFA2C740D0C4279710124C6C7A2ECDBC03C35234A3E4EA38196B62EF19AB2E23C989C998373FA1E589518877E900143A88AA9B97928C84803A14FE8EC1FC26A100F09311A888A9443945C8A8470C1FBB12C271214DC0E1C5F7E0E8F3FA7BC2C73485754FAD4C4CC5CF947A79A761F7BE35FDFBBAAC13DFFFCF3E2C69F4E34149014F528D291A0EFEC4EE8EAED6B2EC8CD964644442803F2EF320CC2DB473F86D6F61E282DCA85A4B8183875F6125826A7A1727D292423C036CC77015439029F5F58448574421C46FBAE221F1113D3B3909F91826F4840F7E030A814519010A701D3D8048260C0E5F6C0C08805E263A3C51872A87B04866BCEB72DAC857DDEBF1D38CE7304CF7119C842AD656242EBA15D049668D3C533A71BABABABD9CF55C0DFFDF4E7BB2892384A492890509428598AA2DC59ABD38C49C969058D2D97A8CCF414285D9B0DFA4B0370F65227AC4550E5C56BA0ADC700C69171282BCA074DB40A1A510D4E970BBDA00871F270114989C3E8E6AE4E814E830966E7ADB006AB82C3E98481610B64A6268963181831A347C4615E12306A99863C244A20538B04F15C4005575246C8DF969F3787DB4758D67BE8572FFEA2890FFB3E4090801F3FF3DC6E4A26FD4308F8E0323EE7E252CA14CC27A5BF9199D2DBA1D2B2131E5F3808EDA747317FBDB005A33F67B5C1E9739770B0B150AE2B84A13133F4618405A38BD544C3797DB7E8CC457959E80393308EE95290992E1265C494C84ED58217073C6A9982D5E82376AC26738B763CBE0A2667E7B17A448A442C8165BF789A30DC10CB736F5340BCF5EB977F69089A203A26C9F2BC94C4991989ED996FBDB424C56BC86EDE28E387A3F944470ADF92781CDE245E85F27BB3409541C1D1FF3B0D5674FF47766E05A94C82C6761E6263D4B00E15D13D300406D3089497E4834C2A85B66E036813E22015CDB17BC0041198EF1908781053402E93E2BD626004A31F87D7C769D4D0651CC6B2190936870B9ADA7A51356E58C4E56ADD26840639A46C132464A8958A7FD2C4688E843C9623888A8A0AB9D3B1184785011716E1985246809C9583723189609A9389BAC32F300EC6013FC8DB06AF3CF82390FE600486CCE3700AA57F57613E64A5A540233ABD0DA3B8B9BC14AC18C9B69E01D10063D46AB8D86580184C95F4642DF418472132420EA9AB12B0349A214EAD8294A438E8300C8B84A4A3390E0C4F205172C84D5F05FD4894DB4D2F015BA1DB5CA98C4AB1EFD0A0392B1562D9952C2B8376BB3DC2EBF6C487473F48086A57E99563D320150D8897464A46A7E6A1D0B089235C5218B359606B4D0CACC9ED824F1A9A215AA580CAB2123105FA8746A1027B02190EA0A5AD47049AA64D84F65E231A602464A624419F6914D4B89D8D00F57D26D1D8F2325360105303CD1D74F919A26F38D1204BB2D3205EA3BCBC4486F726FE322A38A9A03C34739FA9FA0C940F6D7309AD564BAAD41A79746CCC3D32995C1D9AFF8125818D8508221A0C115D50E05E0B465937C44FE51205FD9BF9FD12335FB5EE25624DCE19D0AD1987134D12BC490C96C002B1411A1E9F4010D9621E0A299191A205655404467F04A31D0FAB12629190418CB80C325213A11F9540A15E0B32D3C03C3D076E0F8D253319A2B18BF4B5CA975500719BE7968EB3E29A05E18903E97FE8E2EB8D08F402667A5BF59657450204324E9E3CC9998CFD13A3A6C10F95D16A894AA52E94E22B9C84385E05ED91ED90EBD1C1A0BC0BD45C2C44716A4217D54C188677F11435479827EF47E3CA83E8E877E15297144A0B4AD0E8DCD0DE3708B9E8EAD14A05E8B19C0AB99E99960C7A5482404C41569A1871878B065D5E26CC62099D59C06A812424614914C227465504EA03EB8BF4D27EA044BA512934ED114B2D104B1F9305BA43BCDFD4B6EA7B5E5B5605042314BC80A6694D6262A2AE74FD867F4C4C5A552591480801BCC44F824BE2042BBED131D53B90ECCD8004EF2A7824F12898E76AB18131835CE2E0B6577D4446C89D183905BCFECEE328D907C0EE74A101F623D074041F0B67B151120C302F33153A7A4D62B92B41E0A3135330B760834294BA2A2A726567BF420570381C60B3DBC53420495F35F3A5F2D2B6B0305EA6F3C57FFE59C9B2561889E09A9B9BDD2A956A7A7070F0CC9FFEF8C101FD85733F723AEC43A1E6A826D490265141B967833F8784498DCF53389E44A226C8231F3F8BCD52317FAEED19182C92C3CB053F81914823ECDC7CB7D82D5EE8E8153B44090EECBCBE0F7B8274B12A5CC4B982E0FC9BD7158A4AB9AC0DBEC2F3068FC703E6894998C6468BF632625AF0A169116CA438F13A244FF07EE2B2C990BF4960F06F8EA2A2A2D19EAE8E77DBDB2E36DDBBFDFE2772F20BF6A193AA04322882826A7223B4935DE001195E47F9AFF7AD5D9E281C4C34F186AB9F37EA3E83A93423F13F793F03E3FFEE87DA35DFC51EC1028DE73BB04C6237991083B3C57EAC1C5AD856795730D22BCD0196A6E1FEB908EB058B6512E6AD8BA25163270B840098E0704D885411B82D3CAB21FC2640F81A2A494646861C717A569C0E0B6AC0158D27CC635A389B1B4FBDD871A9F558D5D6ED4F6764666D432550821ACAA8B540294970D1F7A2CC88A0A078D405C749C0CE7A884DCDFBA165F87D7E9B6B07A478F289931D974057900D9518E5167D2F1A600CD46C2E130718001E3AE15AE9790362C4F67B12C6CC169110D1E4103CDE7409A81F35C1F92646D828FBC0E3E52E87FD0C96C4083CD373D50722021148821B7BE9C9C5C545DB07477F5F9F9757505D794FD58F93B4DA7C510D786319F52028342E24621EAF99C32B653848A9F81E525C5B1D1E426EC806D3C22457757729A6401F19299761C4D789CF0502391D685CAEF6286D0627517D4623785C1E8CB82FBF09C267806299F34799F3BB3E074B64D8161686868D86FF9E9B993A86E77B9799E0353C6121737272A4E81142994CBDAFA6A6AEACECEE27D46A754CA04A04DA6892E48166C7E082671A3474123492C7A16AE12FC043D3C0D01E5E29014F72B23682FBDCFE7EA9B7B762ABDDD5D30B5333B3CBCC4D5C07F6296AA97F11C622AE49F0D21EEBC4C8D0FB5396F16388A317EF3BD6DADA6A47EC2CF145BE2BEC370EB2ACAC4C8E378A8B8A8ACAAFDDF5507D5149C94EB91C63193687089222A1FC4EBCB46FB158E831B3195BE70859003CB782B3BBDC6EE8E8EC817ED39018E125C05776F9001128437A6EDAD238313AF45B7CEF0E1CFE8842A158686868A0FD690EC497F9B2B44004A60565B3D914B8A9CDCCC9A9ACADDDF5B7595959BAAB81178F4902DBBE81F67475BBA7E7AD127C534968D41904DFDD6B80D6363D78D1D9A9307001225652018E897758E7BB264686DFA669D739043FE8F57A670A0B0B5D478E1CE1426784C457F9B678202D5009D1D82FA46DDDBE7DF7D66D354F262424245E0BF8406FC1300C7FFE42AB7BC1E6C0B4E08991F17168686C82796C8444805498AC5754816FDFEB76996727477FE7B2DBFF8CC00DB858F01E0E943CC3AF0096F8AA5F970FA4854EA78BC01BC5632AE4D43DF6D853151B2BBFA3502AE441E94B4253830C820F55CBFCFC3C73A0FEEF9951CB64C4F2C88601BD2CF29450426C8BF3939FDAE7E70483EB4252479D4EA7756060C01B90FB551F885C87CFE208F40641C60A2421393535B5FC2FEB1EAB2FD1959461574D5C29FACB0D94828AAD3B68A7879185025DDA0E570125F882D763B79E5B9C9D39CCB2B41E8F9B50EEB3EDEDED6EDFB4E1EA0089EBFD0F13425AA03FC85C2E573492B1BAAAAAEA81EF3DFCC893ABD3D3933F0FBC20A60DF7DE4FBB3C5E5930CAD4D2AC342C1D78D6E31A702D4C1FF6D2F4594C4103DE6F1287E0BC92DC6F0A0101353CFCF0C36477777724024B90C964397FB56FDFE33B1F786077AC4613B512F8C08C6D7D750D1240CBC86591A7424C4F7077669A712EFE91F1B84FE0F8BB10F8181AF2E2E7C9FDA611104A04B6D452EC159428CB6434C7B57F8DAFCD5BB66CC43421430908BCD6576DA71D6E8180155C1E7827EF717EC6B81D1FE2313D9E6EC27C9FC5887BAE45EE379D80D0B408CC3471C0191B2A2AEE7BEA873F3C5054589811907E280136A75B16343FDF633A96E4BC1DE0B60B06D78AD7F4E1B827B02973604D67F9AF0082B859FF3415E81DB0018A542A958918C1DCBABABAEFEFD9B3E72154862A9C00F1CB13085E4A70235296FE0878B6F98BB8FB6D4740A81A302D24D891A9302D527152A23B78F0E0133B76ECD884692141023C48809C046E2192601A088E6DC06BF438CEC12FE2EEB72D01E169819BB1981A99C5C5C55BEAEBEBF71D7CE6598D6D7ED620E1BCC751016DD7D2CC7C2D09084D0B2C9951B89B8411CE46D02978D88E5237A2BB8FE02C7471686888BE1E72BFED08086FA9D10B14A806E1A338E4C2BB989F9FEF0EEFDDBF910484B4D48222482482BFD1C003AFFF0763E7F58C2674353D0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (126,1,'Router_(96)',decode('89504E470D0A1A0A0000000D4948445200000060000000590806000000C1ED215D0000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00001D614944415478DAED9C07785CE59586CFCC68A4D1A8F76AF52EAB5BEE153006D31C8C8D169C6543B2D86C80DD04082C106AE82594408843964D6C200B2C8E77212104BCC696552DABF736EAD2A86B469A3E77BFFF9764ABCCA8D8C663479EE7B98F34573373EF3DEF39DF29FF1D890441A0CB0FDB3D44972280CF3F2F92D77756FDA056D1EEDDD5D573FCF0FBAF1FB90CE0023EFEF4E5D1308944D45C59D744B9C5E5870FBFF7DA8ECB002E03587A00AAEA9B29E754D96500B60250DDD04C278A2E03B019809A0605E500C0A1F75EBD0CC026001A5B28E764E96500B60250DBD442271880DFDA06C0A1435FF976A9069FAF6B6AF5EA560EB4FEF19DE7EF5B520070E1C80125873FDB6F1B009F7F75344E1089AA1B5ADAA9B0B44AF7E15BCFCA961680E656CA3D5976F8D3FD2FDB144023035056A5FBE0CD2506A05ED14639850CC04B3605D0D4DA4127110107DEFCC5D202D0A0688704951EFEF4DD8B004059B5EEC01BCF2C2D002CF45912FEC4C6009ADB3A790E587A00E07939274B0E7FFC6BDB036011F087D79F5E5A0058E89F4012FEF8D72FD81480A2BD8B47C09203C03C2FBB900178DEA6005A180044C0EF7FF9D4D202A068EFE411F0C7B76D0CA0A39B47C01204D0453945E5873FFAD5B33605D0DAC900D4E8FEF3B527961600E6792C026C0DA0ADB3874BD0FBAF2E3100CCF3B28B00E04D1B03E80280D2250880791E6BC43EB03180F62E251F45FCC72B4B0D003C2F071274F0CD5FD81640B7928F227EB7D40030CF3B81247CF08DA76D0AA0A3BB9747C0EF5E7E7C690160179E7D0A11F04BDB02E8ECE9E565E87B4B0D00BB70B626FC079B03E8A3938880DFBEF4F3A506A00F7D40E9E1DFDB184097B28F47C09203C02E3C1711F0FE6B4FD91440776F3F07B0FFC5C796160076E13927CB01E009DB038004ED7F618901E8E91DE039000D904D01F4F40DF008F8CD0B8F5EDA004478D4D5D5250B22C96D6641D82498CD5F18C5F441527474934500B870D607FC878D0128190044C0BBCF5FA2009A9A9A9691D8EE3681843D2408CB4D6633C1F864360BD8D84F738E59301D908AC51F2724240C4C0250F60FD289C252DB03C079B00878F7F9472E1D008383836E1A8DFE161399BE2F98858D30B2C83CDDE86416267E9ED9A7379BCC7FD6EA0D5F0DAAC7DEE96511000942FD6D5300BD0C0022E0D7CF5DFC00EC95FDFDDBC94CB79BCDA61BE0E90E66EEED0271AF3F6DF0794190C964A221D5182EBC26FBF19FDCB5119F2DD80CC0C0108F805F3FF7EF172500D1A04AB58E8CE63D30E42E18CF73DCA8530CBC40A35B7B1F76B618CDE60F4C82F1E0551B37565F68007D0C0022E09D672F22006ABD3E9EF446185DB80DDE1EC60CCA74DD04830A968C2E2C1284F5F71561DF419D60FAE8C62BAFECB91000FA07877904BCFDECC3360710A0D3E9FE013F6F3799CCE9D6BD780E83CEE9FD67F68DC39C225FB3DF87DDE6BF0926D301321BFE74FDF5D78F7DA70010016FFFC236005CB07DCF24087BCC26D315B868C92CE358F562CB92D2DB3F441E6E2E7378FFC4BE85478D1ADB2193400748377A64D7AE5DA6F3096060688403F8D5330F5D300076D8B661DB83ED467C867C719232DBA03A9D818ACAABE9F8C9321A181AA6ED5BD650C6F23832198D3CBB3288B3E5CBD2F1E68DB62EC1441F9A2053B7EDDA51723E000C0E8F70097AEB020058CDE405DBADD87C2677B2CF3853BB9FF1FEB9357CDCFBFB0687E8784109E59EAA206727475A9B9E4429F15154DDA060B37E6209EEC62BD7537C54E89C51635EC0F1A69EA7693C7957A29A3A60129B3FFC415656DBD90350F10878EBE99F7D2700A2278CCEB6284B2F58902CCCF0C6DA26051DC92922F645BBF8A8705ABF22997CBD3D281746CF2BAE208D564F49B191B432359E1CA476945752857D3ABA72753AC964F6E7146D16608189F928B2C641AD943EBDF7F6DB471603606844C523E0CDF308807977D684C4AC9CEF43169A4C753A3D3CBD9CBEC93D49C3236A5A036F5F979144236A351D43149454D593B3DC9156A526D28AA458EA540E70208A8E6E4A8E8DE0FB70CA54585143AE4E724A8C0E233B89D802F8F1634E7AFA4CEF9F276AB42820FE0796396867D27F79D75D7719E607A0E611F0E6530F9E3B80ECDCFC77D7AF59F5C3099D9FF721703998DB13950383F44D76011D2F2C252F7757DAB43A8DD2E263A8ACA681BECD2B8681BB282CD89FD667A4504C440840D471F9D1EB0D8880044A4B882636FBCF2BA9A47A453BB9BB3A533AF645870753735B17F923725C9DE567E9FD73464D1F8AA9FF02C6833FBDFBEE3C6B0086556A1E016F9C0F00F7FEEC51C1CFD727F7EE3BEF08F5F2F4085C1800CB17C2E4E5AB637954565D4F6989B1B4794D06F978B8D3B705C5742CBF98C6345A4AC7FEF52B53C8C95146D900945F5A457E30E89AB4248A0A0DA2B2DA06CA2DAE2465DF20452C0BA48CA418F24485545C5147A5B54DE4EFE3C901B9B938F1E41DE8E3C57384304FA5655E608E9AF2BC01CF0F8A74A6830F3E786FE3540023AA512A2CAFD2BDFEC403E70EE0BE871E13C4623149C4124D6A52627ED6CE1DABA4523BC7B9E5E78C0468B45A3A9E5FC20D3F323A4A9B5767708FEF1F1CA123888282B22A2E331B56A6D1DAB4E5A444123E9A574455750A4A8E8BA4759025968C99B7170086DE6042528EA415CB63690C9F5D505A43ECAEE838444A5A4214190C463A55594F75888C90405F5A951287F718C909C7907279329F558E9AD96BCC90B85CC8D4C188D08853AE9EEEB923EA512E41E705C0BF3DFC380730B949EC249DD75D7D55CBFAD5996BE6D2FF9EDE7EFACBD15C3A72A28002FD7D68EB865530500C1555D4D2D7C7F3897D8F2A121ECD8024C74550318C7624B7888650C2AD4D4FE6BA3F32AA4645544AA58818571767EC4BA0E498086A80C1F38BAB687064049114C3F34137F24341790D75F50E5042640812761822404DA79047C6C6B41C9A9F971B37A80B802EAECB5E70D4185D5C5DED9CE4CE54A3E8D0FDF289FBCF1DC04F1E79E23400C9141072B963F96DBB6E96852D0B8E9E2A3FA5B8E02F8E644366EA6835BC9719DED3D595BECE29E0BA3F0A6364A6C4D3156B337973750C9A7F34BF089AED0C1869801145ECDB8EDF42921A5A3A28267C193E2791827DBD01AF8E478283833DAD4A8E8724055315CAD382B26ADE37A426445202CAD3A6964E2AC279B084CCE032392AAD6EA2968E1E0A0BF2A314001B52A9C8D7CB7D8A644EF174C142577D165163329B7E874AEAC0CBCFFCFC1853C1B30270FFA34F4E8B8069D120169BBD3CDCAA77EEB821ACB4BAD1E98B6FB2B9E46CDDB89AAE5CBB827AA0D37FF9BF13BCD27182D76D81E66F5E95CE3DF76FC70BD997182821269CB6A0940C8081F34B2A7812568D8E41DBE3501525A2C611B1552E346575140AE3AD494B244F0F37BCB7864793337205CB03E141013C07B084EDE1E68AA41E4552A904AFA9A78E9E5E9E3F18CC96F66EAA6E6A251F4F374AC1B155631AF286238825A24578FFC2A386C1339ACDAD78F28141A0836F3EF744D5A2003CF0D853002081C145342D122467400C8FE98C832A9DE81F6FB95E9C9C12297AA3FD55FA54FE3ED917A392A9BC99B6AFDC0423C5F2B292E502760BE1BACC14787C3AF7B2A379A728FB6429A4414EEBB13F03FADEDEDDCB73477D4B1B3C3B9A56A725A00B36530E1AB4B2DA460A09F0A39588020F37672E3DE5307E28343F0392A445797B12707AFA862047A1141D1680CFE9A4EAC656C8903B2F5759B35451D7427247074A8A0925B188A1263CB79FDE389EFDB8C3DAFB8A4D26E100890D1FBDFDD24BDD7302604B820FFCFC69F34CF9990943241253A35245617181C227AB9E13F5C6D59DFE0C37C193B654ED22DD417FD4B152BA6AFD4A48CA726A0584AF8F17708F8D85913665A6222704F3E747213F2A24B23548CA99303283918D28605FC048420E58959240469391725919DADCCE65271D656CFFF030AAA61A44981A79219CA24302A90ADE5ED5D04201A88E52204703432A1E29F652292D8F0EE511545EAFA0F69E7E00F4A67844098B40678061AAB1C0C66D4A829EF8290853A600166199F0F1479C9C1C5E7AF999A7BE9E0500B617272626DA5DB7334B67417A66C9D1B05E4C6E011EF4507016DD2CEC169A57E78A7A1CC7BBF9C09658BA5BFD105DE3770D155454D2D1A3A5D4DDDBC74BCB8DD07D47683A2B398F1596900BAA958D2B53E1A5E15482BE80ED1F518DD10A543399CBE3A8BBAF9F8F293AD007A4C3DB5321352D9DDD90AF1AC89F86474BE4327F2A471555812DC8CF8BD260F821F518127203BB2EC009E3B2538E0868822405F97AC1F0C1348C2AADB2A10D704D94141D421EAE72449D69A2B8B0DCDC2DD2FB4FBFC6C15E4AEE6E6EA4D1E9DE7BFEF17FFFE7690098F1A3A2A2A49E9E9ECE5BAEBDB16F96E127E547340582D481C4CE9EF4D365DFA37B94CF52ADBC98063D9A85873D1F1392BC968B5F523E4747423EE59ABEBBEEC7B4D7EF5F884D0D8FE414A294ACA6D8B010DAB82A957CE1A979C819274E96913D4E9295A149489A35900F1605ACA259951A0FEF0D8796B7202957732F63656968902F22A8811B3E24C0071552142249834EB98E8C30646A5C38FA024F18B915EF6D430FE2CAA380199CC11886E7472F0BE091D0DD3F08D9EA42A3E84291F8DC498F9E4CCC538D3A7B046E3D6A44500F27B9131F9F30FBA9C7C6A60360DBE6CD9B252A95CA0920FCB7DE70738D35E999190522470F7A306C0FFDB8F719AA70CCA761713F5D37743B7D96F48A3090542F124467E42D50114701FFB981B6046E84E1D3F8897F8B5C905F5285FADD0FB9209977C327CB6BE944E1380C264931F0D41294A57968C6A476767C36148C3297BDAE02D21212E48F4889C685A14728ABE5CD5D2A4AD03018B1B6A99DCAEA9A7994A500069B2995D62AB8B12383FD282A248086217D558DED646727A118C090CBA47327E2B92AA229DECF00B26B7090DA8F3B308C2F82CDC634A300F0E87400901EA9BDBDBD1B8C1AB1EDA65BF2AC1B9D01194FD03C17D849E991C8FB686FEF93542A3F412AF1305DA9FA1E3DEF7F0F3DA47E4138B2FA3DEAF06E1039A89C6863EB0EBACFF97E12862A501175C3804AD4EAD1909F14345E4EBCF26152E3EFED49EB56247123B34861BACFE63EAC1A627F639D72796D3385035666722C64C8C04BD521959A376631C82B0DAD9DBC3963464D851CB1CEB90CEF51A02C0D09F0A63840650D5E15A26C54ABC3F34094CE4EB30C7A366BD57C8914B227856D24A8B444A271BB4DFE1C1DD5FEF6C5A71EB96B1A808C8C0C3B8944E26A329942AFB9E9967CFC6E674D7A6656447FF5FE921274EBA8C8E95B1A13AB69B3EA460EE0B5B64374C0EB35F2903A094F793D6EB2171FB3F374FF2D458535924E2FA7BEFE7BA8A36B37FD5F6E1960D4504CC432DA808AC81D0D18AB7CF261545F2F06633997859CA24A5EF944C06B572329EBF57A3A81E68CDD12C24AD044480B4BF405880CA3C14C2909111402884C9E98FCB0A62C0932C67A85CAC616EAE91FA2D8D0409E3316DF80595BAB367193B20A8B2B844874DA71270168349AFD2F3CF9D8DE693960F7EEDD92DADA5A99542AF50A0E8D581B9390F8B0B38B4BCA5CF273BA22C2876A41FB0B8FFF269D484B1BD4DBE945FFFBE8D5B6CFE80F5EAF90BF2184B24C61B8F84F2939B119EF39335C54B4FBD29FBE7C8C3293D6C25B2448CAC5ECCB6E140AEFDE802860656A367243694D23C5842D43142490C16844B454505B572F3C3E9277C54A18938DAB8791BC59071C0DC3D6A15A62D58F8BB323A5C646A23973E4209A5ABBD143F85164881FCF4FE36BD50B99945A1FDAB17C63341A78E7259EF478EEB8B34168C6B4FB5F7C7A0600567EB23CD0DBDB2B7376767637180C7EC9E92B76844644EF93C964DE33A5C7128C4F3C0E915EA4A7B5A3DBE865BF9FD2CBED1F7300418670DA650EA6509F0F48D1F788B031FD45F2F7ED1455D65D430E760FA069194244FC8A3EFE22801CED336823A2C0DE41CAC7D365307C6C7808AD45190BEBD071C854231225D378360D6533981C4441A7B29F836009B605515004F961E7CA5EC792703D3AECCAFA5694A61EBCECB4B7979CCBF8E1CCDF90CCC7206126185F241A77C63901E0271AD7FD2F3DFDF3BD96CA50D1AE5DBBC4EDEDEDF690223942DCD3D1D171D9EA0D9BF7FA0504ED4002B417CF909FC924CDA0A8ED46E994AC928274D1F49ADF03F442FB1F3980604324DD620EA4109F8FA8A4F9755A13B38B6ADB9F347BBB07989705FDC62E31A6009F81BA5A904092B2E8E0A1955458D6C66B7DB656C0423A1B49B906F57D126AFDCCE438D2EB0C307C251FCAC5C3E8E9D0FEBE8111E4876A24391D373C2B4D5BBA94545CD548CE72192F455DE5F269D5CBC2C70FB3BD9F25FB5194B134E1F5A2C982650E10ECE71824E8955F3CB1D76A23369113245AADD601DECF16DCBD8342C253D23232FED5C3CB7B85754962079550A3A4875EF17E989EED38C80184E8A3D127F8D332EF4FA854F10A0750DEFA2279381752B05FB5909ED424924A47266A6F111D2FD84606FD633886085150C6BB60D623AC498BC7C98A29B7B8822AEA9B914B826915BA6D0DBAE09C5395A41C18E28D577C6408F50E0CA3339E2845E323C8CFD37DFE758205DDA72410EC424328A70D26C319238B26AF7F2A8819C69F88048D46B7FFD5671FDF3BE78AD86434141717DB41921CF1D40D1AED979ABEE2DAD8C4A47D4E4E4EFED61A3593D8441FCA3FA26B07FE890308D3C5D20EF2A560EFCFA84CF1220750DAF22A79B9E44072BA4839B29332E25E877E7AC33B1EA07E72A3B7252F51BBA98DAEC8FD3E6D8B5D8F1ADA81573A6C3EB40CF53E9B19D941125914B06E99AD17A7C545D228BCBFB0A296AF23A7E07904A260FA6859B074FBCA3C8DD4F83EB638D437384063E81D44DCB8A24501989421AD56B3FFB5E79EBE5B60A5D57C6BC2AC41436E10A347B0C789380182A7542A0B5EBF65D39DE191513BEDA5F60ED606777A78F3EBF297295C1B4F37921705791DA6F296E72600FC1200B249265552C7C0CD94167E0F9D6CF84C38E17D5838B6F143B1C9613C51CB4D4EB43E6F37693EF2232F3757DA90914C6E6E4EE809AA50DD342191062281C7B1AA8F0A51FD34B675D172C060E3696690C5553096BDDF84CA86DD83DA3F30302137330CBB001053018C8D8DBDFFF5E787F65556561A607B61DE45F9495962630A77777707B55AED8A9EC1C737202071FD862DF7F805F8AF46D5CA256326843E3466AD863E8AA53E0AF4FC9C2A5A9FE1008A156F918FEB5100E803801D00702F9DA83944AFFB3D44CBE5314247FA299152DEC18FEFDA11403FAA7894D2E4A974128D16F3F000F4036BD213F89C9FD5FB937D01CB0532343F5367338B6BA4A6C3181C1A425EEA86F71BCF34A55300580331571E50AB463E2CCECBDE17181838F6C9279F98177C5BCAA42CA15292EA743A3912B51BAA25FF8CCCD557646466EE7375730F9E9913267B063375A2CCFC5F6AE8FE470EE054F33BE4EBF60DD94B06A96BE8064A09FD09E5D67D02003FA375AA6BC94D70A763117F14366BAEA25B25DF17955737517611BB6D4546EB33965380AF17373A5B17F07677E3AB60EE161AA9B3BDED912557456B3B8DA854B3AA18D1E4F52D2612269EA39E302A7BBA1EA93859F03E4C3A5C5454645CD47D415393348C6F8FDF9DECECECBC1011C1576CBBE6F6F884C45D320799DC52829640B3F52633393B3E4CB51DF7908FDB5F482A19A1EEA1ED941CFA20E5D57DC4016C4223E76896A3AC7D979EEEFD1D55575598D5A31AF13A183E2A24882F3DB2468DC15D8DC4BCCCCFE7FC3452D8D8F266534B0B7576F7F01E619A312D829869646B0044343C3450AEA8ADD93F34349003296F81038F2C1A802559429296E1E4DDB0F9F8F9F9C55E75CDF67DA161E11B701091B59E815D9CC6904F3A630B0DA8E32821E867945F7F8003B81249592A48E9B0C7FBF450D75B742C3B9BD66666082E0E22537165BD1DABFD59271C8BCE99CBCCE26FDEB5385A6E696FA7C626051A3D9345EFB5086006084BC6D76AC6FADA9AEAFFACECEACCC67BEBE1B00AE4D4BE848404CDC71F7F6C3AA77B4367F60ED8DCD90DBA296969EB366DB9729F97B777D834E38B668F32580F6036D7D2982E8A0E1A0E50AC2E99460D1AFA9BEC10DDA77B9C8E1CCBA10D6B3349A9EC23FDD8A829392654903BC9ED2C2EA29CC52DEFBDFD03545E554DC86D13C6B3A2E38B8A04111B6B6B7B3A5A4FB42B1ABF868D9BF09E161CAF1B6A3168341A35CCFB17948417234BAC7790CBE5CEF84C6F1C2CE8BA9B76EC5A9191B9DB51EEE8B2903506CB7F3BD385B3E7903E735555954EEAE02863A1B4987B7F4EDFA8258CEB7C697935B577759E968FE9B39B33B2B2101093AF63A734D4AFAC6A87D7E35CEBF01A051CB31346EF974AA56A171717FDD1A3474DC284E1CFDBEDE9537B073737377677009BAEFAA1728ABAE9E65B7E141717BF4962672791CC18735B34BC64C6DA838521E0C040BFB1AEAEDE682F93CB16D348E90D06AAACAEA1AA9A3AFE1EEB558CB54898D1F14E89048D7AA4A343D1F49566545586EB6F866DDB20394AFC3E8208D3A2F4348EDFCB70C6E8E7FD0B1A937325D63BB0521E27E0A1D7EB035352D2576EBFE1BA7F0E080C8AB694A06742596884343536E95A3B3BC5123BA9D4522335B5016B685650E1A912360EB0DA28CD55C5884E4F86A7478249AF57293BDBBE85E7E7E1980A2637B06B37AE7D10B9702C383858CF4A4EC182B1BF936FC8CCEC1DD07CB86097374E3678FB7537DCB861D3A62C575757B7F9A56761B2C52E0C91A71D185139E0B0E259B746F6F5D1F1DC02EAEE512E6064307B866F2D21E36118EEED39D5DFD3F135644681E7ADD8DF89AD0FD7AC96C9643A68BD69A6D75FB0EF884DCA526161A114DAE7E8E4E4C47A073F544E91B7EDF9FE1D29A969572029D9CDEBED12EB37084C7D2D2EDA949F5FA057EB0C8ECCE347C746293BB7904B0E4D33DEFC1DEB9C9120120B63AAE186BEAED6BF1A74BA5A56560234EB1CFB587D8F87362D2DCD68CDEB2FF8B724A78E3400C019C9C813C70D8C4B4848BFF5D6AC3BC32322E217E2E9F3ADD04DEEEFE8E830BCFCC63BC6DCA262199BB65B958F59CDD4FC208C7A6DEF404FE7DFB4A3AA5313954D3B0028213743B8548D838383616A92BD68BEA63AB37760530684AD0F2E2078FBF6EBB76DBFEEBA2C4F2F2FAFC548CF5C93D96B6FCED276F5F6C916564E4E4FB0B35F2F26329BC64687FA4F8C0CF41E83CD14307A1BD379E4B7415CCB289C4A3F9FDC5C145FD49E39D24079C67A077F5C40F89D3FFCD16D6BD6AEBB0ADA693FEB8E8C796E1098BA9F1972DB8EDDDA2E659FCC5A3533E7E4724A678B8749A71E2E1B1DEEFFABC960689CD479D8AD1F958D1A9EAFC3F5189F7CF2C94519DEA6DF949F39D270747474862779C1AB82222222927F70E70FEF884F484862CB94D6A5C73A0CF6D876D36E6DA7B257269AAFB19A0304E4463136D8F7A541A7A99CD479ECEFC539AB607BCD4275FEA2FC5705967A075C1C93255FEC5E76F5D5576FD97D6B5696BFBFBFEF62A467A23AA1AB6FDAA5EDE8E99589173832980A026DECA05635F88D41339ACF1AA973D5F98B16C0CCDE01922465230DC892071B69E082C3EEDAB76FD7D55BB75E2D777272982F174C1A9F3DB6DE708BB643C9004C37F65C934BC8B70E7A93A7570D7FC3EA791CBFF57CE8FC450F60AEE550182C088D4CE2BFFCF8C7B7AF58B122950DF9E6929EA900DA7B94B2A989546C75254B64361BF5D5E6B1E1BF988CC6BA499D07847E94B6AA73D5F94B02C07CCBA1F8D3B2CD575CB1EE4777DE991512121A604D7AA60268EBEE914D2D272D76B66663A7593BFA57C1A82F99909B0EFCEC65E3E2A1A1216D6666A6E15C75FE920230D7722893259C6FE8DEBD7B6FDAB973E735AE6E6E8E33A5672600BE8C6869722912D42283F65B6CC759598963B4E1183DD886D8F86042E7CD936BB7DFD9755ECCFFB2CCD248033AEC03EF0C46728EBBFFFEFBB3366EDC980E8389E702C017D14FD7FC649408A6523BA3E62B7C4E03F37ABCA40B3A3F80BFABBF0B9DBF640158EA1D90A01D612C76F3983F7687AC5BB72EF3DE7BEFBD353A3A3A7806000D00384EF90CB21399150E66DDD7A0CABEB5D234735A99909060FA2EE5E6920530D77228BC3F10D71076C71D775CB367CF9E6B11294E1300460180FF2E2161502A18B2A522F329667836386349964D2BE572F9A88F8F8FE1421BFE920330D7480351C17A8760F4123190A59D5BB76ECDDC7E7396AAADAB5B262543890399F3D8AAD4A4D763EBC36B47905F7417526EFE2E00CCB71C8A2D243535356540AD49696DA8ADC573F6BDAC163638C3D6851277D0CBCB4B634BAFFFBB00606D3914CFBD50D1B088F01CBFDDD1CC1645D87FCEEA47A3A79A4CB2DF7575B32400581B69B0B215BBE47C92663269A0F56A36A36F6868604B8236F7FABF3B0033471A902509A281FFB3114F4F4FA6F1C6F335BBB90C6061B2C47F9DF8C92F50B8482FF4FF014564AED27794164E0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (127,1,'Router_symbol_(128)',decode('89504E470D0A1A0A0000000D4948445200000080000000490806000000F5D92EB70000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00001D5C4944415478DAED5D09941C55B9FEABF7E99E9E9E25B3AF992599C964210B040C18C1C3128E20B8BCF394457DE811E53D8C0B20A028060282605883E1B118091E168D62F4C9A292030121099010B291C92433C9643233C9EC33BD56BDFFDEAEEABE75EB5675F56412835A3977AABABAAABAFA7EDFFFFFDFFFDF5B1D495114F86759AEFCE6CD01FC3EB5D8EAD43569F9D8FCF835FDC9B51250D7FCEB1C6C516C63FA0663C0BE06BA3E8AFB3B70DD89AD0340E9FCEB0B4FF67E14FB4CFAA811E06B4B6F2DC55B5EA0287203AE59B0C9BA887C9F893530EC93933B4D5FD37FE9F3C32A213AF1363B2449226D1BB68DAFAEFBE5BE7F136002CB37AF5B4EAC723EB6D3B02D545BAD15689349006103EBF3521D2B49A935B65E6C9B0819920D36BEBCF6B1C3FF2600B75C7BE35D53F07E2EC476860AF62C6C2E5B0069C0C82290264A98E4F160B476663F30C027DF4B024FFF32EBE436FEA56FE2EB4E6C6FE3E68BB8FEC39F9E7DA4FB5F9200DFFEE13D65780F9FC1F659BC95C5B876DA01070C40C9595A31585C1B442E5E0598DDD6834E4FD4772F482A1B526B1D09521E42C1BF4806E9057CEB85179E7E70DB3F3501AEFBF17D5549C0695B84CD91D112C12E29202BE0534402309200CCB7536B1577512F4AA93F1AE8CC9A92C2645B92DA0919F0E5DADFAC5EB1FE9F820037DEF6A0A45AFA7754172F918F8EC5E2E0F3382121CB1089C6C1E1706445023073F1BCF55A10013802E85C3B0B7E0A6C8E00220720097C8143028FD305F90521280C05E9E16DED9DF43A2AF0AC6EA097204212FFACC0F553CF3C7677E42347809B97AF242EFD3FB1DD843D34837C5E424E8092484030E087D6962668985A8D0A5B86B6BD1DB0BB6D3FF40F8C40381245324826D66912DB41E0C675FB192200FF5AB0CDC4F7340118D81505CC7ACF8100067303909F9F0785D8F24321282D2984992D8D30B5B60A02FE1CF8C1F20760E7AEBD5C88306E4BC958D183AB95B8E7E135ABEEEC39E90970CB4F5779F0DA5762FB3E765303F99C78340A4EA7034AA614C282B9ADB483F4E228F965E5848C44D8073BF7EC83818121180F4770BFC3D41B800911C0F2B5087066BF0E6026CE7304208BDBED8682823C280861A38087A0A9A1169A9BEAA018BFAB66D9ECB2EEC5F5F0ABE7D6A121C87A0230EB24F06C88A07D15C1BF6B70DF1DBF7CF8B63D2725017E7CF7A397E36597630F552795B90CC3C323E0F3BAE1A22567436E20C72884C8CD38925F5462F627B08376A095ECFCB01D8E0E0CC2E8589809136C6CD69303046411C7751E70251DD30D4400080503100A118B0E52CBAE282B8159339AA0AAA2143C1EB7ADFE89A077BB69D97D70B0BBC7A80D04EB1411B4AC22498830EEBF0537EE7DFCFE5B1327050196DDFB781EF6D64ABCE41745713C9E88831C97212FE8A71D36BBB509BC1E8FE6E252AC67D431D300CF4FC007DBF7C08EDD7BE1487F920C924A06D69A65249C13F713F2A4C900826D3BEBA407C8F1F92094970B179EFB7138FBCC059484135D9E58F33B7865FDDF198B6733064E140AC523B07D466A0BFFB5EAE7B76CFB871260F97D4F62DE0E4FE3F5EA45020E3801178BC7C081B71FCA0B407D5D15CC6C6E4257EA1429621A4F7962C4E309786FDB2EF40E6DD0777400C910A19F918F20B54CAF87A93515F09B757F81F1F1881EFC54AC4FBB761E74F51D83D2D7F2FB5CD42EDFFAFA6530ADB12EEB7EEAEDEB876577FF0206868735C8D300B3DBACC5EB2C3FE501D87D51EC93DB70FBCE9577DF143BA104F8E9834F9114EE7A6CCBD2459BB47032A876C1FE582C012E97044518475B9AEA613AC64EA7D399D206E65E41250366129BB76EA745A045A7CFA5D64FF6EF4151B9E6F93F510DA1FB6C917BE7737B769FFA5D897227A0FFC725E7D3583F91E5DE8757C3FB3BF6E852C3B413D06860150ECCB402DD7E15B7973C70E70DE1134680BB1F5AF3085EE3EBACD2CE04B8D123A42D34168B51AD505C58404344637D8D8EF17C5870480E4B72ECDDD701AB9F598724881AAD9F23427A95069DE897224CDB8857F9DCC5E752EB9FE8B27D671B3CF4F83398EEC638A08DDB29DD68251059A198D60AEB70EBD215B77F2F7EDC0970CF23BFFE0A9EFEB83E7F1691203331444489C7E3E0CFF1425949112C98D30A35D5654C8E6CF40C246D1491A07DDF0178E2D7BFA72460533A2101522421C0E7C39CD66970F1859F40527A6DF5C9E0D0303CF7BB97A07DFF41CC000AE0F40573E0D479ADD4A3DD7ECF2AE8EC62323849624A060C01529E404400A692684A04781AB7AEB8E727DF968F1B0156AC7A761E76D3063CDF6796635B11C39A005CD915C10847C234BE7FE58B97801F7368435800562F001587692F8124E8E882C7517C514F90025BAFF8B57B9882A168DE9C19B0E4DC33C1ED72D9EA8F814104FEF72FC2AE3D1DA847C653C090AB16E07DE761F6600E3E0F7A5A13A452C88C9902AF15A49577FDE8DA6F1E1702DCFFD8F38578DA662043B0603570028C07E05F67260359E228160B30F6CE6A6984F9A7CC0097D3690803A28C41470AD533747476C1AA5FAD4D7B0256F421C98A0BF361E1825970CE59A7D956F904F8677FF767D8D37E00C668BD4232940325418D5862F772AF0DA0DB2080C00B903DA7DFF1836BDE9A74023CF8C46F1FC0F3FE1B0CE559301080B77E2B32E8882027C0EFF3C0BCD92D300D452149173D6E17052609B0C31A7CBEA9F7DE79A01BFEF757BF85B1483425F4C838BFCB0950575581EE7A267E663375D9564BFFC0105AFC4BD086C04750848A8A3DE2C10111F8BA3785D9812471E25038E268C8189EBAEDC66F5C31A90458B9FAF75E3CE710B6023094690504C848063111881824DB4945AFA45C24117D4E27B16A27AD2ABA9C0E0A96836C6BFB5C4EBA8F9C4B3C0679EDF379691C279AA27F70085E7BF35D88CBFA913CB29D40DD11CCF5A3EE28C430D04209E862C20005FE859751571C8428A6A276819744830492D14748CC08924108B2E2D00CF8940749560D715D7DEBF55FEB9D3402FCE2A93F9C87E7BCC857D68CAFED81AF2BC182B567C8B456D2B99BE17D525E96E967E13AA1D0B1078FDBAD7676BA0F584210111AF0FBA8089D3DA3895624899688E1B5D8189FC1E0857BF5BCE1F7497AD2080890269E711FB7BEF996EF5EB57CD208F0E8D37FFC069EF3B0F5089ACD12AC687C5D4008E04AB66624606BF6EC7BA432E8C5F0118EC4A81E203DC67E6FBE0F5822694B143D92CBE9023B069FC1FF73C41013C268E9660430055E5BBF72F3D22F9F3B6904B87DC5134F9495967E5967CD3CF86014788681185342F03579B3091862B075EE1C2D3514F0C18CE67A58BC683E1C3932006F6CDC0A1D07BB310C8CA8C52649488268348ABAC345AF430844BC87E6452452C374E8330EB06DEDC663F8F745E01AC3838800C69080B7BBF7C66BAF6C9834025CFD9D5BFF6FE1C285178800B7B70D1CB83681368CCC991321918843517E1073F826380D459D48D0EDDD7700DE7E771B1C3CD40B43A361AA15F45E4001BFD705575D7E29F51AD1689C7A01428CB1F1088C8F8751F587211C26AFC3345C90F23499D740B609F9E2843089041DC320AF93FBE230343402127E9EC763AC2D9801AE03984D2305A46009108BC5076FFAD697F2278D009FFFD2B54F7FEAA24F7D4138B42A72D5A2F1756E9285C153643950A31181747649513EA68BCD30B3B9D1964023D6BDE3C37678E3ED2D70A0AB17BC3E9FEEBDD2A2105C75C5A5D4DA8F752195C097D7BF0503C3A3E0767B04B38724C16C22C9441C4A0252183D0012B5074340E9A411A079DED9772D5DBAF4BA4020900642E4B22DC6D7F5808BDF636BF41A59880BA643C1DC400D29D7569416526B278340D92CC323A31494BDFBBA2041DDBBA48BFEC49B4C9B5A49CBC0135D3A0F1C823FBDB201FAFA87C025045E503730D100D6A073E30BB8B3B7EFC8EEDBBE7FF5F4492340E3ECB3EE3CEFBCF36E5874E622F3B972A684C840068B3571ABCDF595D4E5761EEEC3744D01127A6B2B4A60E1829974924936CBC8E818FCE5B5B7A10D81571449ED554537BD4B7B453EFBF4792DF089450B264480DEBEA3B0013D0CA9040E8F8C53EB4FCE7DB001BE605EA1A538648E21A9F4A14387B7DCFDE36F9D32A904F0783C375C7DF5D5505C526C02B8B9EB16C6F54C6B5C4A8BF2E092258BE976381C81EDBBDBA1696A35048381ACEE9F94695FDDB009F610E0B5A1671DE0E2797EA43E70FED9A7D1295DC7B2F4F41E853737BD4FB5C7309290E8004206A318E409C28F1E9A6C33A2F6C0812EA259B6DCF3936F4F2E017075C3942953E09A6BAE018FD76332C9C25CF8658CEB1C013C2E093E7FD1D97452C6441702FCEB7F7F0FDAF677814C805724304CEB64E702F00BB937390E9FFBD43950515E3C2973280819DEDABC0DBABA7B610485A5460649902F4AFCF84186ED435DDD30343C446E7BCBCF977D775209F0535C5D4FB65B5B5BE1F2CB2F032DDFB09A64A19F90C17B8AB409F2E7112176CEA253A0AEBA7C429D4C143A49FDF6EE3F84D74A4E3BE3E7F42902B04D688009A00C977DF6025A2D04264474F71C81CAF2127B9541C172B8F7086C7C773B5EA70F46C63005F5FA18328804A239018E1C398AAE3FF59CC99615B77F6F7208805FCED130EBCC3B340290E5FCF3CF874F7EF21C73176ED7FA1962686B52B19B36B51CCEC0189FED42884380DFB17B3FA65C6EB577D8193FFA602FEC0545E19D035D723C4EF8C267CEA3E9E5BB5B76C2D61D7B60782C0241BF17CA8A0B69D5B012B5C944174286CD785D42AA51D43C3E5F8E6E3C03442250DD1E4151DBD6D69E7A8E9110E0FE3BAE3F360210E0B5CDFA998BEEC0D7D7B1EF9F7AEAA970E9A597A00BF358CCB831CEC0312384667F79011F5C78CEC209CFBF8B60CEBE7DE75EEAF68F0E8DD1D9BB562410812D6207C9E7F3FC6EEC64A0C0B363058A3AA98590A1BC6C0A92A1118A8B0A264E0624C1E6AD3B60575B278442F974CC43379CC40C0E1DEEE9C5B87F90929F298A6F79F0CEEF4F9C000CF864EDA89FF9312480E33BFC71C5C5C570C59557405565A56E8EBD68E2859D2959786770C159F3212F2F77C29D4766DF0E0E8D504BDA7FA01BBA7AFAC19BE34BE6F406C00DAC00C584121907011870A211F40C48E42AD40DC43384B2FC3EE439893737BE0F71C591D45BA01F2D4C0AD404B4ED6D87A3FDFD86F90DC4033C74D78DD91340D28694928D804F4A65AEA9AD672C73389C4B45E7109778D14517C1E2C51FA72E2B638A279A9143E27E2201F366D643435DA5AD4E223198A4753D7D0330383C8AEA7A1C8687C7E8B87F0CAFE52416CA8EFA0940B47CCA072CC4A1DD857886680C42411F6A85623ABF813C1C6235DCFCB7D736C1C068988600C350B2BA1A1A1C865DBB3F44B247047D9BF4002B7F767376041080EF529BB7AE65E1AD4E97DB72A6497373337CFAD3174325F506E2593766337288FBAA28C98785735B84719D4CF03CDA3F040368D9C3D839C32363308A422F42269632E55C45FF87035DACFE4D219ECC4727A4E4C8643C1E85FCA01F6AAA4A6146D354147D9ED4A0D3EB6F919A411F7849EC7748C6E9255232C7EFEC389074F98CC7154C66DDB2EADE1FCE554C2CDD400001F86EB5911CCC573B7DC10F5D1EDF5576BEEBCC9933E18225E7435D6D9D78F0464000AFDB098B4F9F49668121C8C3308400139047462314E83132A2A74EF25044428D57F62221272206B7DF127BC53ED89976D1F10224434128401F3AE93CD48B9AC783B1DE099CB1A7744D07027FF060171D77E0475FF9908ACBD64757FC686EB2DB8D2490B81F3560C1776A56AF3692F7E45637CDBBDEE3F35F960DE95B5A5A60C9854BA0B1A1014CA75ED3944F01BFCF492B73E374C68E941EAD3719BE5544A2CE820420B89E9108D6081F03FEBCABD51D4794BB233DDEAB3B7F7C7C1CF6EDEFA4E95D02C39AFEA96771593DC90779EBE30FFC643EB9BC88043C011C8CE57BD4462C9F94DB82D8F2AA1AE6FC8FD71FFC6C360470D2912F0F4C9F3E0DF5C162686A6AA2B3748CE28F0554D119A4E8A10D9DA353ACC0554C0A7C4A667D37D98FCE49923541245DA487818141E844377FA8FB300D81A91FC1D03DF3C84DAF674BEDB2F2FE930F2D2335EC84FAD5742448118051FBACE513F0896C254F41905C2654513FEBAB3981D0926CBE334993BC5E2F250169C1602E7A8566D40A2D50575787E9998B9BCD03BA717D9E0CFC8F3228025FAE28909104220299934139461720597B05297D6D027AF7E11E388C2D1C0ED3D94B29D02D1E9DE7EB2E74845491B7AD7E78F96924DAA85E40950CC91EE209A0093E62F9391CF864B4A5B0BCAEF58BFE60C1E26C0840F26F023C113A692224D781801FEAEB51F16378A8AAAAA4C71AC96024868128C620CF914044142B4178AC01C0461090D2216DA07F4005BD974E81D700E7C1976DFCAA095749FDE0A95FDC7106191B6248A0E808C0B87EA72AF834F0432AF845D8A6100294D5B67C3A9057B4301B0268E06BA01BC9907C2F0773749239909A426161217D0AD7458A37668410093A0E6545B1B0672583AD1F8F27E7A5643633323C02838398CD0C0E425FDF518846235403B1A0CBEA93D53AE065EBDF4832565313DB9F7EF4AEB3887E54499060BD004B004DF17BD498AF814F802F565B6169CDF4737343C5A764513E1682AF81AE6DB36460B7F3F2F2A0A0209FAEC91C043A6022990B3AC54CCD8BCDDF9208624D90BD03181B237509CC6828E043749B08B914E01AC829B04D0820279F589233FEAE513A0C2612F11DCF3CF6B3B3898E245926EF0578D5AFB9FE20037EA90A3EF50025D5D3CE0AE697CCB0DB07A48C6BB47A2F47042B327874C793F7FCFE00F87C3EFA3C3E0919A252B19205098C44C8CEF449C793F48C54FDC87C85309D2A1686716CE47711A2D158123806685903536600371021490053F065F16F20B1D9001260E7B34FDC4B66B38CF15E8025006BFD24DDCB57633E19D128534940C240414955D3C260416993FD0CC0A1826BE501BC1C19D22448AFC564D18ED10A455AE78A7EB12BB5627FCA8D79C62ED9F9C98E26F5FEF4F5649A73CB746E5F727E5F045D36A9BE85C723745BFBDC2478ECB692BE8E06A81901F8350BBAB69F035E36F9C12B8D04895874F7F3ABEFBB80CC81215329542F400890D008C08ABF1CD5FD6BD64FC02F6708102AAE6C9C9B5758D6904D06C05B336FD566A0F364D1DE139141DFA9B20E90648732AFB559BEB2AC0344D6AC94392F0524775EEA38FE1833F075F726B67E9620460FC07A02860C86DF46D47B80582CB673ED53F75F8CAF86D5301061C3004B0037E3FE59EBAF600890575052339D088189A480565E402F0859B264F61C240CC81C908A8004A9CE1782CE1F2B065EE1CE4B5DCF40041BE0A7C8C9118607DE862710168608DAE3631BFEF0CC235F550930A67A81B856176009C0C6FF22950015BC07C8CD2FAE2AAD9E3E3BFB14D06BC39AB57D6232989DA327803DCBCF68FD1941355A38EFFECD4380E058DEFA0596CF8708CBB450D50323C303CFBDB4F6C91FA90418E5748029010A55D0CB190F4042429EC3E90AD6359FF631893C9C378929202F0079D0CD7400798F88403340782B33278222F6123CA0BAE3C41E2093FB37DC934918300B01BA2C41E40D98D2F0FEB61D4BDF79F3E597C8C0A140081A42808F0B01AC0728568B4281B29AE6D640684A897D02786D58B2592810790EFD711A01F496652481DEFD0BE2B9EE589E089CF573841169009126B12682007C2B91A81140367A02A03FB011EBFEE373AB2EC5EBF43321206216025C4CE937C4688072755DACEECF757B7CA1AAC653E6A2377067AA0198C57E513A28AA0588AC9F7F8FFEB6A0D015DB200167D19621C0B6F5739FABD32526E1C98C089908200B52C3A42054F67DB8EDC6AD1B5F7D05A11854B300A108D49A5BADFF6B033F5A0D404B034BD4EC80BCE70FE4159694D5B6CCB07AF28D2D0289F2F9CCD66F2C1DF3C7916DEDC7A26D6900B30C6042966F1EFB8D61C08A0866D9891E749E700A4F0066FB484FD79A37FEB2F61115FC2126FEA78A417C25D0C98CFE6985A062157C8D00859A17207AA1B0B4B6AEA0A4BA76E24520AF8D3450142AF4FBD8FC7D724820108AA27021F03222EB37BF2FE33D296664D11140D189521EFCB191A1CD7F5DB7E646FCDC7E157CDEFA13220238985140BF0A74A1EA094AD86290A605C8B1E5535B67F9730B8ACC08C0BBFF4C16AD075D1C06D86BA46B007C071A3B3B61A2FC0D69A08D0C406F8D99AC9F0F4B62F56F5E6730D626CC88108B450FBFF1CADA6B8606FABA18F0B5F4CF3020A411400B032E460C6A2381454C5A38452545BE160A301BF01757344E0B1694949B5501ED809849FC5969818C3500B3DC9EB364B3F89FD1FD9B1C2FB47ED3FB536C7A1C0E7486086363231F6C79EB6F77F67677EC13801F65AD5F371864321CAC4D04D1CAC2DA88A0E605B45040BC852F37BFB8ACB8A2613A2B0CC565603111CC8B45DE8C75806CDDFE09258145A85164B146302B4C098B52F4A1D984DCDB7DE0B9B7D6AF5B2DCB090D780DFC7101F88A683E003F09D4C790204F9B0FC0B47C9E042E8F2F585A3D7DA6CF1FCC676702F12E5D04642622F01E435C05B4E844ABFCDFB4522872FD13F304E6A4E489608F909AD68846237DBBB76DBCF7C30F366F56411F551B6FF971D1B430D1943060E6057838126843C4058C17C8D3C2817AACB7A8ACAE31AFA87CAADBED716517D3B38FFF99AB8036AD5294DE9992209BF83F01F76F9995A4DE5706FBFB5EDBF8DA9F5762BCEF11002F72FBBAD94066B3823512B8B870E067748166FD218604B92A514835D18791C08F59424371794D4D4E8EDF6D271DE40B46E65EC01E018EC50B98C5633B166F4A8049484D13B80C1CEDDDB0F3FDB79FE96CDFD5C6803EAE360DF88CE0DB9916EE649F0950491050C10E320408AA4D23815F2582D7E974E594D534D557D634D40772831EABB1006B02888F352540565A80EFECE3E1053294A63314A410F7D891DEEEF5DB36BFFEFCA103ED9D1CE81AF05A9E1FE3E6002AB6A6850B48009C30D432841C8608B91C01820C5172B4B0408850D3D0D250DBD0521FCCCBF76722005B33987402588AAD938B00B1586CACAFE7E0DFDE7B7BFD6F7B0E75765B801E61804FB0824F64F9D93C1AC692401B34F23222D1CF9121C0B51CE658729EA7B8ACAAA4A67E7A4D756D6345416161E0847B80939C00B16874A4FF48CF3B07F6B7BDB9ED9D0D9B50E88D32806BA0F3AE9E055FB103FE841E0E6548E062C890A3363FD3025C38C86148E0D53C4A59654DF1F419736AA73636574D292E0D4E9A0638A61090AD06C8820022758F2D1A890EF5F51D7AA763EFAEBF6FD9F4FA7B89789CB570AD8A17612C9D75F59ABB4FCDFDB7037E368F87F3DE807D5E902582970911391CF85AF3326BED3CFAF85965F5D4A2D639F36BAB6BA7165756D54E09E517F88E67169071902793F5672B0219AF138BC5C3C34303FB078EF6B575B4EF7EF7BD4DAFBF8FF97C98039A75EF66D69EE063BD1DE0B32280C01B00F3C4302B14DDDC13451E0E741FD7BCCCF11EC6B390EBB8CA2BAA43CDADB3CB1AA7B5944C6D682AA9AAA92B0C04725D19EB00C7D5FAB31D0BA0F30BE59191A143A8DEDB7BBBBBDAF6EDDDBDFBC39D5BF723E02CB0EC7694B3F4383386CF2AFB040F7C36E0674D008137E08B470ECE2BB83970BD1CF03EC1FB6EAEB93492395D2ED7EC53E697CC9A33BFB4B2BA26BFACBC32585A5A16444F11F40772C97F342DD9C9B7279073DB023F1A098F8D8D8DF68F8E0C1F19191E3A3234D8DFDB7560FFBE0FB66CDA33323C38A282C8BAEF1803788C6BBCA5F3AA3EC180AE640BFC84096042045E23B044700A40F53004F132FBD8354B0096084E866CA9E6CBC971373635876AEA1AF22BABAA43C5256579054553425E6F8E177943C8E32604C26CC48D7FDC0EDC70389C2E746A2E5E7DC7E37139168FA2168BD13F74A1EB6824B91941F73DD83FD87FF4485F5F4F5F4FF7C1DE8EF63DBD8303474719C0625C8C662D990799DD9605719D77F1F2442D7ED208904123B0847072CDC581EA166C3B2D08A0AD1D8235FB702B5BCF60BD95C24E0E27E56A4C4BDD81DC5C57241C8E21AE9128F95DD87447B38D75BD6C8B0BB659F0452DC1011DE3841CAFE69589C4F81342800C5E81F70E4E0E383674383971C983CE371109248E048E0C0FEBB1F15366D67206126824890B0891C840920477BD04F7598AC97D4D1AF0C7850059920104D6EBE0F484D3C48B4826E7B1CF38828917E09EC5D5C551B6C3150128098BD70981052704E4E149A530009F10D04F0801B224046FB54EAE1C2D99006DE5F6250101EC3CF6CB83219B90C20C48D1FB8A450C3710503951A09C480264200370AE5A440E9E246012EB1D82B86FE6FE25DEDA4C3C832CD8962DDEB73A1F04C09F50D0FFE104C882142088E1BCD814810D166EDFEE83FF8AC91A4C5CB628940841574E964E3F990830016280897BB702DA9125F8A245B6713E988DBE9D74FDFB11B8C76321C8F15C3E1200675AFE1F90AD17B25A9E5C1B0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (128,1,'Router_symbol_(24)',decode('89504E470D0A1A0A0000000D49484452000000180000000E080600000035F8DC7E0000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000039C49444154388D75544B6C1B55143DF3C9D84E63A77162EC364993B4510415A925286A2408548010414808B62CBA2B125B5436EDAA122C58102101AABA4042820D41347C04A812C50229A4A0D292AA699CB6A993FA4F1D3CF6787E6F3EDC37B10329C5A3336F3CF3DE39E79E776704DFF771BFDF1BA7DE1DD62DEB7966D9CF30870DDACC1EB06D36C018DB4D5019736ACC66354114D76559CE4464F9C2D79F9FB9712F8F70AFC0A9B73E78B96F77ECBDD403FDC3C5F29F58CF97619A0688108EB305D775118FF762684F12438329B88E8BF33F2E4092E415A94B3EF9E999B7BFF88FC0DCDC9C74AB627CC56CE7054E90E8EFC5D8F05E8CECDB834A7513AADAC4F9CC021CD7C3602A8197668E62627C14F942195F7EFF13566FE5208922894834CADFBEFFCE9B2F12B5BF2DF0E1C7E75E7598FB49C7A543222145C281D121844321285D1296966FA2A9B570F4F1C3D075130BBFFD014D3720F04314200A22C4408446597AEDF489E367E54E29D995ECEBE9743A20E625F32A5CCFC546A18A54B21F8F3C3C81B17D83F8EEC222AEAFE6F0C491345E493E4D82067E2121C7F5778858967D8C68FF11C86432E5C9C949C4A2D180D8A5289203313C3B7D3828FD4EB18A9F2F2E419464B834BF566FA06757371E1C1F41FAE0386EE40A58DB2862B3AE51022E4AE54A89F306028220748D1E9C0ACFCECE626666064F3E354D450323437B716D751DF5460B6A4383242BE88B2BE0B116AA2AE0ABC8DE2E211EEB46321147281481A655B0B6761BD4716E2040E45C649CD9C67E8BDCCDCFCF239BCD626AEA080CC3A46EE923032222DD3D084768D7E840B06D7E2064DB0ECA77EBB84AFB532C95D06C6AD4710CA66586885BE4E4DD84438E65861189F26A68918D7C3E0F4551820D4BA552E4AC451BABD3420B9669A145D77A00838C188119D33479F6C1FAFA664D275E45A4934DA86F56EFDC24473E6F3359E690DBE882E791652188123E5D3BEED6BBC0F7C9F3BC60E4CDC1A8FB6C724F62CECAF5CB6789D7E9082C314B3F57CA5DCB30CBD0781774C02B403B161E4900CFDFBEE6021D70D1A6FAD7FAF295C5E3B9952B9768A12BD3248F9C55E9CF678656BFBCB67C71DA67CDE73C664C2406FA13F42CBCD5673E76BCF3FEF6891CEB6AB9B0B15C2E157F58CC7CF311DDAAF0DB3C911D9F0ADE4D34F412A2843861F8D0A38F3D34367A20D5138DF546C2BB6252485174ADA53654B5A636EA955AADB27AF5D2AFBFD3DC06272598C4E9FCEFB7E85F623C1BEE5E21486D086DDB1ECF9747D08E98F124EEC7F337E81712D0E84C6ADD0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (129,1,'Router_symbol_(48)',decode('89504E470D0A1A0A0000000D49484452000000300000001B08060000003A690C720000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000008EA4944415458859D577B6C53D719FFEEBDB6633BB6F1337642E218F284609E1B6AD34181755AD9A405A629EB9E5227ED51A9A89DB6696F45FCB35154ADAA360603699D04EDB4A0AE157BB56C520715AC0C46CA5325104842803C704CFCF67DEE3BC7E7DAF73A4E81DEE497EFDC93E3737EBFEFFBCE778E394DD3E0A33EFDFD8785452D973FAE8ACA6A4553838AA2045505828A2A8754450D4AF8AEA1555485531435A1AA4A42569404F6A1D512A0A9090DB44981E3DE0BD517860607079587E5C03D8C008E03EEBB3F7F698524CA5B90CC2791D8E3AAA278901C601B54934528D83659955A02B22E0147E6E571624E480902F72ECF09C7049EFBB75D9D39FB20821E48C00F76EE6BE041DC69B1F0FD9186A03F93CDC1E4740264599E478E0A20249988326162712DD2065C920AC09F3A9B0D22E110343586C06AB1C07F4E9F031E3DC5F37C8AE7B93D9AD5FAC2E0EF76CD7D2401FBF7EFB74E24B51DE8ED01A7DDEED9F0E81AF0793D74817CBE08D746C761ECE61D98B83D05A22899089748970813E21AF37AFB9216588A6844D29170103A9646C155EFA4EBED7EF9F73074E1031A119EE34B56E067058EFFA596117EF3CA2B03850716B07BCFA14F4992FC6B24D0A57B58D3140807FDD0DCD400DD1D31703A1C20083C90880C5F1B83A2284228E083236F1D8334F6E9A455962E44784F771B7CE50B9F857043C0B4DE89534370E0D09F31A5483A71742CB11CCFEB11B9C971FCB7F6ECFED15BF715F0ABFD839B31B78FA2E72DD5B9AB03F3149A220DB07ECD7288B634E23B4FC5E042342A0707FF0AE94C8E12B70802C49777C0C647D742475B94AE41A2F5EEC9FFC1A52BD76149B4094E0F5DC2B49C25FBAC44BC2C8045838AE044DC2B9F7B71E7736F2F28E0F0E1C3C2649A9F4092113369CD24807825DADC00B1E626B0592D60B559D05A694ED73BED309348C21BFF38061914115FDE069B7AD7416B4B13C8E88CE327CFC07B672EE0987B8C0550CFD326556016518E06471CC48D5AC5E9B6818101B5A6807D7F38D2CB59B813D51E27024A1B91B5E7D9123072E070D8705101EEA5D23422B41FC744423EC8639ACDCD6581EE649D3D250E1501348DAA22A18BE1C9DED01EFFE973DF385E5340FFD3CFFF70EBD62777E91E37560FBA29358365C434D65EE4AE87553DEDB036DE0D568CCAD59171B888297279F8064DB14DBD6B2118F082284980A51824B4A224535CB9360A5377EFD13404D009B3C81823812995CD669F1DF8FE37F7D414D0B966D39776EC78F6359FD76726AB6AE56AA26F4A7C819EAE253097CA427BAC093ADB5BE922E491B0C40E5DB802EF5FBC869B3C4F4BA6C7E584FEBE27A850E3333D330BA7862EC3F8AD49281424762E708CBC3912328ABD357967FB8B03CFBF595340FBAA8D4F3546C27FFCCE33CF8005EBB2A6A709255FF13C69AFE86A858FADEA367D9E9C0DE72F8FA0E76F400E4B2D9D9DD6FCD213F27960DB6736C2F4DD591A153C57CA9F25F35EBB7E134651C8C4AD6928484A2965586A91594646C6402C14B7BFF48BEFCD178083F8252B7ABF8CBBFE60241281BEBE3EE8E8682F9F9CBAE709825E376C796C35CBD90A81C4EC1C9CBD78156E4F25E8A6D3E72FFFC5DF7A471D649838AFCB01512CCBB1682396606F792E12C1BFFDF304DCCB14A9D0B9740AC6C7262097CB01B2D9FEDB177E6C1680440434752D5DEBBE6EB339F6EA13C5E371D8B6AD0F82C1605984D52AC0FA783BE6B00C73993CA4D2595A328915B1CA7025A7538FB110E846976A881907FA88456E072CC6F3A1CE6E83E1919B1801150AF9028C5CBF01333377CB0E5465E5F3075E1E78A32C8091772022E1D6EEA75D9EE04F8C6961C5D2B8F5C94FC3CA552BA1112383A50CCF06ADEC75FD5A60BC2254B81B22F061D71616498ECD99C20A3639350DE3E3E3E828723D51CA05A35014FB5FDBBFEB751CA792F164DBD721C28815FE48ECABBE50F3174D02B0BEFB7C3E841742A106E8EC6C879696288D8ADD612FE53805F3E53CAF574760FE93C3933B994CE2D990406F27A0582CE299A18042EF5B953B1659279D4A7EEDCD57F7FE093F261301C4FB1E4417A2D71B6ADE1688C4361827B7DBEBA800AFD7571652B23E2A22100880DBEDA20415B574E5D0348E5629E259B2A82C2B5841245A4245195114F1FE54C4AA5344E27334B7490120B94F2A0D691301FA85B1741B28456176FACEB78F1E397810A91589000B825C4CD620B6B83C810DE1D6658F1805389DCE79C46BBD93BA4EF68524338BEFB254691372A5BEAA31B2D1CA15210C8AAC9444300163572F3E75FAC4D1BF23B5AC51C05AC466DC0F2B63CB1F7982E7054117E072B916105011E2F17898F7A48A101379739F6C10A48BD3C5560B51583488081C9B7AFBF5038F89A2384A324FDF035E4427E21388756E5F43BCA1B9B34717E076BB2951BFBFDAFBFE729B88946A9197A59AFDB25C5BA82C9B3F2B9B534A1B1DBEF4B3F367DE7915694D230ABA001B224236311140F683DB1F59110847BB048BCD46BCAB13378A206D7D5F389D8ECAA2EC8AA0A790285545661E79739A558F2502F2857CF2E6F52BFBCE9F7EE710F2BB83482314BD8C12114E56893A10E4786DE704A139188EAD5A1CEB8A06027EDE1C814A24FC7E3F6E74BB9990BC00C1796D73FA548FC18D2EDD9E18FDCBD0C97F1DC866533790D70C22839090BB663CC88808AC89B008D18488219622A28E7A776CD9CAF56B636D9DE1603024D48A4649C0425EBD9F08F35E20B6502C1493333367DF3F737CEFC48D2BE790C72C827CB524DFCA648D119F7795609B5A1742D26A31A211D18077237F7469675B6777BCB56B79BCB17B598F3F180C700B0A2064C4FB45A3F48EDFE69464627A6C7A6AF2E2C4D8C8E90FCE9FFA2F9E0553B86E129142E4097184AA1948CFBBCC71FA85BC22A49E89F11A2C85DBBDC8DFBB71737B4F7C7504CF827ABBC3E5A8C393CDEE7038AC36ABDD6AADB3E3D5D24A08667359319B4EE773D94C2E93C6AF39D94C3A9BCF928EE4E4E4ADE173674E9CBA9748CC30B259861CA9F5245DAA892F28A086103D2A36863A26CAC550C7FAC918527AADCC9277DEE9740B1CA7CA78872784C41A2832A259D61699A7A9B717227E5F010B880183201D02EBD3C70886FF917EB280C208493A29D667FC9FB14FFB30D20F2DE03E82CADD863E3D72FAA35501C07C337A60C2D5CFFF013A8DF8404CD0F30B0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (130,1,'Router_symbol_(64)',decode('89504E470D0A1A0A0000000D4948445200000040000000250806000000F250EF370000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000CC94944415468DEC55A79701BD519FF56A7255B56644BB2E5DBF2113BC40E499A64981C8549A181FE432F0686CEB4D3A1500809530A0C8429E1E840380A25A1241418205052064A8096A185824BDB9004C8903B314EE22BF1299FBA6C698F7E6FF5DEEE5B1DB10361BAF2A777AC76F7FD7EDFF936111445816FE2B8E1B6FBBC520282A298F029A07845197CB22C7941567C922C7B517C8A227B6549C679395F9695513C1F92242584F3238A248724410EE17C08B00F8A1092AD7066F5A2E0E18D1B37CAE76B9DC2F92260FDFA2D76D9115E919494CB40962F458017223001058CA240E65CE6792481EB93351211C064124605C1F4B1C964FAC86C36B5FDFD8D3F1EF9BF1170EB3D4FB4A0762E1315E552459656C98AE2408DA2928DA0945CC015453FAFF515F57AB22E5DE862D52F01FF528264606B1A144C429B4510DAC02A7CB8F3C5CD27BF5102EEDAB4D5238BD27A5CED0D26410894077C2021E8FEC1618844A774CD2959C0D3734A469F02E5FB745DFCFA0801C51E0F04025E282BF5C3F4740276EDFD4225C544483199B0357D2C5884C75E7BF6D1779559809B3501F73DF17C919C14EF401FBD495144577D6D15B434D783CD66250F254B858ECE1EE8ED1D80DEBE0188C4A674504CAB595AF29B146859D53403EFB0DBC0EFF742C05F0CA5253E089478A1A6BA026AABCA54ED93DFDCFFC83638DA7E12817356816B51FB26E198194C1B5E78FA81B7BE36010F3CF1E24A00E95559522A88262549823C045EE22FC20595436579A96A8E4C0BE49E478E9F84AE9E33D0739A90118322772198CC66181C0AE9A06525CDD451F0535C340716B734C38FAFBC0C1C8EBCAC6BFAE05FBBE1A53FBF8356A183D7C4C4C820AD79872D695EF7D453778D7C2502366D79E576D4CE4308DCAC28BA1FB33E063B701738A1BCD407CD8DB5E0F715235093FA700C542A591D27BBA1655E03C4E253F0C28EB7A1AF7F381338D13E7ECC784D73430D5CBC62292C6C6DCABAA6442209F73EBA0D060743A998A092009944686E21F409B269D5E6476E3F794E04FCEE99D77E8026FC1743904A8BCE7A4B10C8AAF6AA2B4A61C5B20560B15855CB3013424C290947A2F0FC2B3BA16F20A4C675A00498CD021218848B972F5189E48FD1F14978FFA34FE074DF20D4072B6162320ABB3F3FA0693F45824E0008BC0568D269315B573CBCF1E6BE5911B0E5B9372B10D661F455B72158A5B71C09E441351525B068411354969552D082B11508091178F6E59DD03F344238035F71215C75E577A1BEB6D2B086F189307CD0B61BF61D3AAE5A0F5DB2F6AD824D6B992568D902522E91724F78F3C10D37FF7056046CDDFED63A04BE395DCBCC0214859F4B8DC973ED181B2C26B3EAEF16D43C11ABC502169B19AC386FB15A558B989A9A8603473B682650C05D980F410C724D68FED518E8DAFEF3291C38DC0131FC5DA6E37234A87F29E000690468F141B30E115754BDF18E9FF7CD4CC0CB6FFFCD2C98BEC78295969B33FA3A19FA3853540FC726CF6E55E305098E5398C6D8D3F95840DC417529764ED3BB9105AAF81C9660ECEBEE01BFB8FB969F3D37230177DEFFE450E3DCB9BEB3E5E9EC454B667023D7B89C79D0DA1C84658B5BD4D499482661FFA176E838D50BDD670655C0769B0556AFF81638F1B789A408A2284212DBA428A55ABC46247D9C3FF665274C63DF8C56A58111784B48EFA7C6F158FCF17B6EBBEED7331270CD75B79DB8E2F23575863C6DC8DB4622F83C6EB198D44562CD00735C4E98DF1484852D7355D3E70FE2067BF61D8643C74E427C3AA9EADAEB29846B7FB406C9B0655D57241A833FBDF11E8C4FC654DF4E390068AEA0B79C3B306B4119E81F5CB7E937EB9E9A9180794BBFF3E92FAFBF6189CFE733983C0F3C97B9AF5EBE1003DB1C181A1E55A3363347764C2712B0EFC07138D2DE893E9ED0EC5CA10E5155E683EF5F7171C675EC6016D0D9D38F45D710A66225C325343204412BA1C7C6C6616474ECC6C7EFFFD5B61909A86B5DB9A7C4EF5F76F3DAB56045933D1B605EEAAA4A6125A6C06C0731E9FD874FC0D18E6E88A3F6B5272B4A46BFB9BE122E59BE188642A358668FC03C4C8D56AB25E39EC4958E2191DD678660806415C1C491009A25442331E8ECEAC6F3F28D4FFEF68EDC04E085E40E4270FEF2DDD85F525D53033FB9F65A9833C79DBD78E12AB802A71D2EBF6429467E33643B480D7004C19FE83CA3FA3859A2A2AB9FF5D46F626D01BF070643E36A7C20D9A4ACA4186A2A4B315D56A82935FD202EF5D9FEA3D07EAA4FCD36027587B1F171E8EAEC8624166508F8C62D0FDF999D000A9EACDE8604FC1BC78BC8BCD3E984ABAFB91A5A5B5A344B803432C8CABF7DD105508C44E9A69E548B9889C9084C8463308932118E60F41755008A01B88101E31C5B1FA4F60036AB394546855F2DC3C9412ACE7D07DBE14457BF5AFD915F13D7255AEFC7BD89169041B9E999C7EEDE9A410007DE8152583BEFA2F73097CFE71730B7B111D65CBE06EA1BEA35D08C808A120F788BDC3081A616419988C6218A1B220D1733F32CE6CEFA3A70EE60032E1CB02EB10C8703F724F8DC81E1314848A9628C64ABBEFE01E8EEEE81787C2A3D6EAD7DFEC97BB7B29DA2402B381E7C114AA0BA79D9762C65EBB399F282D65658B96A25D4D505212F2F4F7705D049D1412B7A80E35A4DC3E98A9FEDF69CF938378E45A3187843D0D5D583EE306578EFC008901289F5DB9FD9F434A8D959516872004200D9767950483D5A5F3577C983569BBD22FDB9C4740B0A0AA0B0D0052E572154D754415DB00E2A2ACAC153E4C192D34C81711A5728DCACC0334D5F8F04995AE77B09CC26A3636330828172687804036B1C647405F27E429625FD0D1357ABC4E3D15B5F7FE1F77FC0CB451CCB0C3C09AFC479CB89A5A33455362E5E6BB33B7CE90458B0AC75B908F8022422D592B14A8ADB0D65810078BD5E758E8FDA4612388059C79907B98E144211DC478C21E8506804634B58F57D8310D05A2B6B2F62580A0F87C737BCB363DB66BC25A9B1255EFB5EA27994569580864557D9F29C9EF485D8B040618019787DECD2AC839143C666CC0A9224AA8BE23307ABE749B41693A90A2F994CA81922896532A917A613536A749F46112948520DAAF7237D32271A09202D012F6956A013303A3278EFFB6F6D270444519202E7FB01940B5016A23496055B563BF2DD1916909767A7E0742B4801D6C960C0D9983C982D9AB42259BC2819FB5CABFE36DB9C0A3E1378AA2FAAA6AF13C148900DEF1D077A3B6FF9EF873B77209449E24502357F270AC9272D9480B91E7FD5C2A292AABA74021C0E479A0BB8384BC836E7CA015ED4162E3260A294D64F9B33B4FA3D19689177053193048C07CAAE0F77AE1AEEEF69A70424990B300B20FE4F727F93D5E6A8A968B87099C964AC6A484D900ED0A87D23110505F929B03C093CF8ACDA67A418AFC904CE5B061DA711A0064429E50AD1C8E4AE0FDE7EE97A84318812E609203B0F92FE8228F3A954B93C25F5FE8A86669E80FCFC7C0350DDEF0B3922744288C530CDE5B4802CF3BCC679F3E7AFD1AD4A274D770BA34B24A6A687F6B6FDF5A7A3A3FDC711C6284A8C0F82440AA81B34A0CCA301B1145DA1D9E3AF0C0A7467920E327B0CD0E300216026EDF326CFFBBF51F3624E228DE4185D879C9B9E8A0F1F39B87743CF97073F4108C354FB6417A6F08510B1824294326A0984806A4282D335A7D25FDED86AC6C26036C0F9F376BB7D562E60347D31270939EF9323768C8D0CEFF97CD73F1E0A8F873A114B88FABE9A02D5428812C0B20121C1855202A982A89AB67EB3C5E6C7A0382F5019AC72BBDD161E742E12889C8D006DC186F1D72081FB7D2C12EEEDED3AFEEA177BDADEA5C0C750221C78F5DF17F9BD0023C142DDC14389085021EE516CB1D88A6B1AE65F50DBD0545B54ECB71BE3802B230BF00464F5736D7C6E5690E35ECAE4E4D8A9EE53C75FDFB7EB9FEF53D01354EB716AF632036F208023818815C54E621E258214493EDA16D3AAD1E50F9497D5049BAA918C405D5DA3174B61F35727E0DC2C80DD0BEBFFB191D0C0D1C1FED35F741CDEBF7768E8742F051DA61A8F53AD8B14BCA1D6CCFA4284C6045622E7D134495C630E05EFA6E342DA1698ADD68296D645D50B162DAD9EDFBAA8AC616E53116606E19C634046163082C7AA706A6468E0CBBEBEAE43278E1FFEACE3D8C1931468944A8C0A798F9EA422ABD57416B039DF0871D6C088B051715052F269015540C5C5CDE515177B5D8DCDF38B4B4BCB0A0A3D9E7CB7DB835EE2723AF35DCE3CA7D3811FA70D371B56BBDD811B784B2C129D8A46C3D1087ED07F23D88663613C22E1896878727C7262626C1C235A7BFBA14EDCD18539B0714ECB090A98685BA29215F88C04E42082B70C2BE72ACC4A9CDCD8C6C51433779DC0B54414BA50915B7C92CEB13641659A0A039CA4F30CB04CEF9753E3E74C400E32200B218C14D632D0660EAC999B67A4B2FFFDC048903891D35A91134DC3BCCC06F45726E02C64304218487E0C1C01A6B43E3B7812980621AD55D2FA4CE05C419F170266498AE1748E369D047E9C71F029EC7C1CFF03221EC479524784F20000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (131,1,'Router_symbol_(96)',decode('89504E470D0A1A0A0000000D4948445200000060000000370806000000F3134F770000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000154C4944415478DADD5C09941CD5757D55D5FB32FBBEF5ACD28C06ED200162932146365E0E073039390959EC109980AD1013D931B1221C0808DBC8160A1618616410E198608381D80E420E5832DA10685F9034D2489A999E999EEE999EADBB96BC5FFDABFBD7D6DD33628B4BFAF37F55575557DDFBDE7DEFBFAA194E5114F8242DAB57AF769C1810EB1511421CC88D922C87149043B2A4142B32F871EC5714D9A7C88A5F06C5AF6E93259F4CEE4351C664199B228DE22AF6CA18E0BAA428B8AEF4E2B66E3CB69B07EE8CA828DD7C1CBAB76E7D6AE2E3BC5FEEE32280E380FBEAD7FF6D86C8C98B10CCC578157364596E9415B906AF49C06D404045C02033C626CB3663B28FCC8C2D8EC57524888E713B1ECF717C3FCFC331E0845D02CFEDE22579F796D7361D573E22603E3202EEB9E77BFE714E59AA70D2A588CA2249562EC1EF2E52640ACC54806481A7402A56C7EBCE9169E82A60BC6D8E5844A6C5788EDB83C4EC5414FEB793919AB7B66E5D25FEBF2360E5CA35C18453F81C7EC7CDD896C929E9488146814C8F2D2C3AF5996C06D2781CB3BFEE9874033DF0649BDE1BC94FB5C79F29F7E4E83AC7937E48E0F9D7F09897459EFFF56BCFFC68F8134B006AB86B8C2BB90575F94BA8BD9F46EDF6C892081C9A934C2D394300B56EC3BA11585642F4402B06A0CD0DD4FF9AE503D8DF2FA72382C7EB0D06FC101F1DA5DBD22D811FBF21F0C2639D4D05AFAC5AB54AFE441070F7238F78BDA3CEDB25541B04A9561225F0795D5053550EAD4DF570ECE41908F7476028364C25034C9E3035AB365BB81EF894959B80A784B08BDBE582F2B212282B2D864AECC9B8315403BBF61E842D6FBE8D2099244AF392E33CCFAD0D72BE9F6ED8B06AEC632160E59A8D41979CBC03CF73375A7D852449505C148496C67A686D6E003EE5D7EA45937174380EFB0F1E83BEFE41181C8A8124EBADDAD2B2650BD0C14262D2DBC14480BA11BFBFA830086525C5508E609797154355451974B6B7404D75450A58BA9CEF0DC3EA877EAC1A0CA7650D54A28C64608BA087AFF7888E07A74AC40511B0FA071BBFA048D293788E32729E6432094EA7A05A5167472B941517A9E0F3E60B4617E7201289C1DE0347A0B76F00FA07A3FA609A0656365B381824C6047C6A3BCA37D45557410B7A20B1EE56348AB69606F07A3D39EFED873F7E0676ECD99F329E745CD0C68C473084E02D9DC01BFB9B9FAC5DF5E6874AC0BA75EBDCC362600D5AEAD78C96A9A67908A4288B5018F0410592316FF64CD4D30002A25E3E5E28AF8E7926D0F50F44E09DFD87E1DCF93E08133224194A8A0AD093EAE038CAD7E0D07046CB5982404F02B0DBF01F6A35545796C182B91D70CB173F9DD7FDED3B700CD63DF12C4C2644860003F85AD0E698A09DDAA6E0CDAD1FE7DDDFDCF4F037463F70021EFED1E63689139F4759989F2D0866F26D223112941417425D4D0592D10E5E8F9B82CFA76F82043DCD3388FB1322162F9C030E8703C248CE539B5F82A1E8B0017846660CC0D30FA0BEAE0A165F3C1BAE5F7A39088290F3FEC8B91EFCE146387EE2348011781D010CF84C1A9B21030E82A05CFDE803DF1AFCC008F8FEE3CF95C949790FDE6043B63CDB9614B46AC41925AA189A4275AA67389D8E94E5681E418800D011427A42C2C6677F89248C506B878C2700935AD2FB69A8AD86CB16CD81A5575CA2D376E3B263F73E282C0842FB8C2675FD8DB776C2F32FFE2675AE14DE4C864441D7D64DE09B62C4CE84D37BEDFA5577C42F98004C2FF94065FB6FF00EAF33836BAFDD5AC603A03F86046B97CBA19271E30DD782DBEDA204A45C39053C9F2680A7243CF9B35F40243662CA6E484F8E0BD557C1E58BE6619B9BF57EB6EF7817DEC276BABB4705B3B2A2045A1A6AE1F8A96EFC9EA134B8E969BBAE67E242DA1358F081495DF9D703DCD00D98AE262E8880753F79E17E84F29FED32936C5EA04D80D899ABCFE352F59D80E5F779A807F0BA209DEE194248AC78E2672F42043D210D3CEE1742A9B97AC9429877D1CCACF7B10D41DFBEF33DE84689B3990E008537BDAEADA53D290D760668AB6D9ABCE2AD7FEDC17BEF5C376D02D6ADFB6F371F181FC25DBD723A2B912DF36F532ECE6428642C8A2238054ECD4C5C283F4497058107276ABDCBE95433149FD78DCD0B3E24C6E572629EEE04177A88CBE1546F2AAC92F00B880D8FA6CE8D841606FD18632AD5947221065CA3DE6FDBB117B6EFDA073DBD03004649E28C43CE04BE9E08F3C40D98C00C6C8006353B3A72DF3797774C9B800D4FBF7C95CC29FF9B5DE3C1622264F319586D4BC9156992448E4C8D1D98C59074927807DE08080E421A079228C3707C540DD2698923E7C0630B821E8C0195D031A319C4A4047FC074B22F1CD1019DC5FC19908109C4FA58608C037AD099B8A08D79EEBAEFDCFDE52DD322E089E75EFD0E4ACEEADC81160C566FD80E561327D091601CA7B72119247B72380488C6E2C0A3D7643EA7535CC398047D2E15D1E926253BF89C9123CE44863E18E7D7A7C6CA9A6FAFF8EB95D322E0DE07D6EF686A6E5E945B6A2007217633568509D4FAC299AC4810F079E1A299CD70D5650BD4ACE9E0911370E8E849387DB61746C726756490C5E5E031CBAAC589A10822067B521621BDC8F4E43349F538FC5C4EC534B24E3C4D9D3C9298C40BBA6AA9B17897137866069D14A5D7EF5DF1577F322D02FEF4CBFFF0FB65CB962DD101682A0D806D2DC65814B3065E4F8244E60E854198D3D10C97CCEFB4CCE1493C79EFE07138FA7E177475F7921950BAECF0A92B16C26597CCC9796F493C4722914CB7F37DFDF0DB37B6C3D86412E38FDB0C38E3127644A4332526658D8F8CBEB2EA9EAF7C7E5A042CB8F2732FAE58F1F51BD5B39A4A0260EB0996EB868913B146626D9A7C90495B5949116633AD701106D46C393C590E1F3B053BF61C809EFE2135986B733001CFF985EBAF80192DA1BCB23C724DBF7C752B1CEF3A8B5EC7EA37233FC62CC92A18B332A5691AB69E9EBE271FFA97BBBE322D025AE75EF59F7F79DB6DB7B6B4B4D8D7628CB2620B3CE319A8D1975F3C4B4D618F9F3A8BD99180C0CF80E6C6DA9CD7740C67AA3BF71E84BEFE284A90C03C60C9543D5D4E016EFDE2756AD12D9F656C6C1CCF7908BACFF542DF40EABC600ABE0CB0BAB1757C20A3D1D131E8EF1FD8F0F0EA15CBA74D40C0EFBFF5CEBBFE1E0281A04511CCA62866013C2B3D0DD56570FDD2C5532A859CC089D2AE770F43DF604CADF3280CE0995C28B3F871BEF167375DAF06F0A92C71046DCF7B87E1ECF9308423310CFECE2CE033A01B266E623209A74F778328CB1B1EF9EEDDD32460CE95CF63F7A586500896DFFEB7985209995A8CB136C33E00B12B92910985D70537A244903C3F9FA5EB4C0FECD97F04E70031B54C91317803E48A9E06F25DE5C541B8F9F39F528F230B29EE151717A4AAB5792C2398EEEEDD7714CEF6F4ABB37087D3A58F0516718174C4B34F9EEC828909F5B9FF86B5F77F636A047064EA894BCBEC2B9E2304A8F160E102B8E5A69B311F172C81B71F83AE9A79ED92796A95329F85C8CDB65D07546D56EF504B3F1912CC49A692F10A9C34866ACBA1A3AD0976BE7B08FA23C3EA31C58501A8AFA980B9B3DAD0B37D795DCBF0481C03FF3138D73B08D1E131CCCA9CEA2C3E131734F025E8C278128D46532931A76C78F48195F91340C157B3E8E6D9576CC6C1CDDA673535D570DB5FDC06E515E5590B6366E9498131ABA50EE6CC6A9D92248CA23EBFBDE720A69E7D20E04DEB9547D1A16F2242050467EE3849D36553543E243189DE50A09241023FA94BE55ACEF584E177DBDE810951491714B5F38DE3B51E7FFF248C4F8C672E4D5136AC5FF3ADDC04705AEE946A0E6CCEE68B966CC2CD37B2FBB9D00D6FBAF92658BC78917EC294A54A49762B2DF2C1D597CEB5CD6E486A39846E4EAA9EC3F13188C5C76164641446C727D534934F4D6AC01C736D1930C5852CA9903AE12B2F2D80869A4A98D91A52277EBA403D3E01DB77EE83F3E1284A915357A6260B663B68F95D389B978D13C50D8F7DEFDBD90960C027D64FC4999882A7A9F3B22771527283D535CFEAE880659F59068D4D8D8CE6EB9F4C69BD035DF59A4B67AB351E5266888F4DA08B22D0A30832823D8C812F3E3AA14E8A52B357C55A66140B582D6528C7E4D7BE1281B3684C8F39052A4A8B205457098DF5D5B0FFF009387AE22C5E9B23FD704913FE682C065DA7CEA0E1444D2938CDAF1F7F7CEDBF2E37BE6F942680015FA0964FC0F7630B863A163F8A59C075D9AEBD7DE64CF8EC673F032DADAD9641970C4A0AFDE0C1A03B82C013A0937893E4361413C0FADA3EBBDD38D6C7023B019A32FEBAF204994973A8E99CE0480572A6543D383404A74E9D86E850D4FCFE1133B944837B62E3BAFB96A7842273F12C013C63F96E0A3E49134A1A665EFCEF4E976749AE1B70B95CD0DEDE0ED75C7315CC689B895A2D5810C13CB1625E90327F6601B409F42CDA7F212F1B709C3521546EC8B38CFE8141949AD3104BBFE5615D92D7EE5F16A5279F7EECFEAF9290C392C0D17ABA263B0E0A7E001B99BD9463ABAC6F5BF04F2E8F6F41AEEBF660AEEDF178D59272B020081DED1DD0D1D10EF598BE9249964E3E8C04E88057F432A318D45C31E8BB0DD60A4C9D04CEAA644ABD8080DEDBDB0703FD036A09437BA546B6799F897D6C2A25934F3DF3F84377903047144E23412380A7D2E362C0AFC05645929EDAD679B77BBC818EEC46C321F81E15FC54EF4DF7017F009A9A9BA0A1A11E4A4A4A31E5F35B563075326388B2F6EB3A7F00F8A0DE33C32F888F615C1A8E41383C00E1FE4124414C97CC33E0336303F8AC172412939B9EDFF8FD3BF1CC93D40B6495006AF940C1F7622BA4E0D760AB5309689973ABC757D09CED7A89366640D7936022241080B2B2529C0C15A9336BAFD7A7AB076507DD1817B2259FF91392C019EBF0082604184C89AC44A331F5359B34E0D4D2F5EBB2CE0BD8D728D9F20CF93F3939B1F985A7D7DE45B2545203D4BC40238067A4A794825F4F9E6D132FA8699E7D83D75F589FED06487ECD826CE70D666252BDDFEF579F82B971DD2138327ACF69C87396B1402FF9F66813B01289044C923641DA388C4F4E62CE3E81A9E518CE5627556D3702AC96AC25D9127855FB59F099DE581F1B1F8F3FFFD2B3FFB1824C69A817882C0102B5FE026AFD04F810ED2B6B1A3B977A83C535D908204FA6EC80CE4584F17332BBCCDCBC449F92A55E6F91D2376C2E8B8BF8B92CCA6ACD9FBC8F4AE614221E477AA2E1A4C4AD9D4BD69E0530E0B2DB7312C07A85225332F46F73B3A5FAB191E19FBFF2F3C7FF914CA6B14D68B1800DBE5E9AF5D450E09BA9175494D7B6CC2F28A96ECE950199C1F4D2756F7A7B3E4410325360B08065C0D288D1C0D1804D8F25BA0FBB1F739EDC24487981AF9D57D1A4C9D60B0086067A7FB0E595CDE4C17C8C952196001F0DBE84804696007F41694355A8637E2E025840B359BD3946E8892239813DF80CC00CB87A422888926C22C99A04392D3F7AD025130999EF93D3A0B3DEA030718125E0C8815D7F7EE89D6DDB0D04484602340F085102882754709C50DCD4B9F84A8EE3F97C5250D2DB498C95D51BB7699A7D21E0A78F61745D920CC0E7E31DB908D0C5854CA0D6FDBE8324C75F7B61C3B518D4C3D93CC04333A04A4A4013EDC97A71795DDBAC82E2CA1A7B023C7981AB9724B34491FD522F6E190130836A29458CFCA4C1B7F2008BFD727987952C4916D294FE55282A4743FD3D3F7DEB7FFE6B2DC214B18B015A165440B3A03A0A7E887A4429E6F905B52DF3E6BBBDFEA015016669B106572F435E4BEFB00225AB1730E09BF731836FA5FF660932C71C2B12245DD0560C4428303A32FCCE965F6D22D94F3FB6A85D16C4D112842643550C09B534332A72383DC5F56D7317F26A3DD86A12660D706E2FD04B555E166E9093CC67D63265B67C0BF02D3CC0F23B1919D21120E9E70B89E464F8EDAD2FFD5D7430DC45E23079B6C3EA3F5B8AE099021CB1F0126CD514FC3A4A08797A528013B28ACAFA999D0E97DBCB12A0D7F7EC9A6F049DDDC7ED76DB5B7F9EC41863835E8AF205DF3EEB628931A5CBF4BB2726C6CE1CDAFB87FBCE9E3ABC8F5A3E919E31D34C98A905094C2C0852C02B2911D5744C882910044790C404CC8E2AB559B0758693DB13F4DBBCEAC31049B2D2FE546FB6FEDC44E424341BF836A49BBC83F93C32D0FBEB9DBF7B75FDE4E498263B2306E921E0CBC6629C26472E8684122A3F95B42FD74820D5D2C292AA50497553BBC3E174E46BE1D90234398E3C23D6DDF014B5DF94E19882B3949388ACF263223DF35DC96462A4EBD8BE47F7ED7E6B0BCD7688D5C719CB172DABA116CF039C0C098534309753AF28A3F305B23D20385C05A5550D6D15D5A1069F3FE0B0CBF7EDE701FAF5F42C382F4BCC05B23913B24E412F4CF212087CF8FCE957DEDDF5E68BF158A4975A7C9C5AFD046BF99AF4E4F344CC4533231FB5F8220A7C29F5028D0442920F8908D68666B4D537CF680A060B5DB9ACDF2E4BFAB008C84F7EA696F64E4C8E477BBA4FFD6ACFB6D75F1E1F8F0F52D035E0C729F0492BCBCFE799301B983DDAD3314A84D60A19120229221C81C6D6CE96BA506B5D556D7D99DFE7E3FE680820E7174529168B1CE83DD7B56DF7B6375E4F24C6638CCC8C51E089D52718E0652BF06DDF8A3090C03EA8F1508F0850D00B2801052C09B479BDBE4070C6AC398DAD333A1B1A9A5ACBFD7E3FFF4921209321E909B0DA57C429EC5064E0E0F9B3A7DE7E6FF7B6EDC3D1C1410AF6A80174CDE293EC83173BF0F37E2F882181F508CD2BFC8C7704E8D8477B2F6D6EBF3F18E89C7B71A8A9B5AD127F94D5D6878A838180903701964158B2AFF5D07D6D67C359624002018FC7A26710F4F7FB7ACF1EDDB7E7F7BB87A3D1080579DCD06BD6AE819ED6FACC53557B9073BE19C7788391082D6575D3E665AC9F6D5E86302DAEB8106877E79C05959DB3E755CFECB8A8AAB1A9A5A4A2BA2680A438AD4AD17619896D25340B396C9F48242646E3F1482C3A7036DC73FEF8E953C78E1EDAB7F7A42425B4CC658269930CE0090B6B97F2057ECABF23664384D66BAFB0B818423C06F0DD4CD3F6731A08755456D7FA5ADBDA8BEB43A1A2CAAADAC2D2F2F2C2A2E2B2A0C7E3F6701C46185C789C8A637380C03B048E7360222D10A09362524A4C2644CC4A3023C49FB882C6ACF61338331A89460763D148643032101EE83B173E73F244EFE060789882A9C9C7246D0966BB96C5240C41959519692AC04FFBF7842D88E00DB14223C4C9BC61C11264DCC6922030BDC09C977D74CAD11BD57A05BD497D1B10B19618F7D7C61A58924126920CA8A2C1A259CBB6025C035B99AAC55F300136445891C11B4065C74E66DD69B10FCF90C0D6AB388B5778B41B60759725C048826800D4F89964D1D873B3C0C37481BF6002F220C3480A670097378C8D3DFBB89405DE48024B005880C502C8122319ACD9A8E18A610CECF883FA8B5A1FF8DF0BE2322F7D5A11C219E484B7B070766C6CD62FB0E989502C2C359F759644C5D87F587FC2EC43FF9365368418ADD9CABAAD8EE32CCEA3D8906104D58A24BBF3287F747F336E0AC4D8BDB2996B3F658ADB3F52A0ED96FF03FF213910F230DACE0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (132,1,'SAN_(128)',decode('89504E470D0A1A0A0000000D49484452000000800000006B0806000000BFBD8A8A0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000034884944415478DAED7D077C15D795F79999D7FB53EF0D21012A209B628A0B656D30B8AC71499C78D3BCBBD9CD97787FBBD978E36493D8C97EC96FF75B7FEB78BFB86C9C38066C63838D019B6A4413CDB40712C51401424212AA4FAF9799EF9CFB669E468F2759606323C5B287376FDECC9D3BF7FCCFB9FF73EEB9773849926024FC711C67C38F79B82D90B7DC1BAC8A6DB86DC26D036E1BB15DDB4744BBDEC800B0582C13799E5F80759C8F5F67E2A6B9DA323ECFE753DD8B760EE3F70D82206CF4783C75B81FFA12009FF03766CC187B3018FC0BAC136938093DE78BACCF67D8365EB460B5641D10D01B9A9A9A4E7D09809859E72A2A2A2646A3D105B84B429F7E2D5AFE056AFAB5FE9D233090851045F1C353A74EB9FF6C00307BF66C0769393EB8A2E5D95FB4167C5E6D30C87D2208FE3DF81BF1860DFBF10F3FC55103007C387EF28C3B16E804B84BC3F3B37881AFC6C3C21721302EC931AC0F2018AFA9A4C47A70B1E7BDB27EDC5515DE238AD29EA828EE8A0ADA8D7B6A377D743D0171DD0150397576B5D32CB8A6D44C84D4D41448492987FAFA5AA0DBA6A7A783C16080482402E17038E9276D814000B09B60FB3DBD6E2CC301634B4BA1BC7C1C343474404FCF09D068B4909F9F0F916864D072683F140AB14FDA4858ADED1D30B1AA027ABABBA1F5D451B0E78F059D560769E969604CA89BBA1C651FAD59BC6E91A80869A9A9588F3CD8B67D3B54669AC16FC90283DE00D9D9D949AF577F0F8543F1EF02CF435012C01F1126EEDCF0CE91110D800CBBCE3519019097970766F31878E1859FC3030F3C00C88EE38D4082511E9E366F6F2F4C46CDB4A5A4C09EB367E10C3672494909B8FB3CE074D8A1AAAA0A0A0A0A60E5CA83A0D55E84DCDC5C408235A02CF5A7BDA303C6A170DA3B3B61371EF3F97C50535303A7CF3642E584F160B55AE1C8D635D0E4E561CA94294C8BD5025236059053F1D952B16E3B4E9E848FF138D58D009081C099387122BCFBEEBB506AF4438F391F323232585BA89F515D6E86D70B55A80C2DADADB0B9AF8F9D3761C20414BE84F782895B460B00480BF6ECF1C29933ABE0273FF909D31C6A4CBFDFCF3ED5FBAD172EC0BFA2508B51D0DF7FF1453880606000F078C169B73100D0F5EFBD77022D01C07DF7DD774559EAEFB9E7CFC31373E6C092DA5AF81382818E575757C3D9C6F35031611C03A7FBF84E587BE8023CF8E083082AED8072D49BBBA7079E2E2E86490894EF3CFB2CECC263E8C130006466A433007422D0DA0F6E821E4B21CC9A356BD0B2689B8042FFD7458BE095F5EBE1F973E79855193F7E3C84251EBC6161E296B5CB47070048806673313CF7DC4F98C0FAF0C149886AED52F6FDF8DB4C41001B6AED8E1327E0149E575454045E9F3F6E012A2B2BE1E5973783C9D4CA2C003D8B5A5BD55B3A9AF80AD4B24B972FC376D4306A781254E3F926A8185F0E76BB1D76BEFF16748B46B8E5965BE2DD4EB2BA855040B762DD52B1BCDAA347E138FE46CF2662532A1660F9F2E55066414B662FC2AE2F7540DD12AD4A0E5AA349595970F1D225D8E076330B400088F23AF00461E403C069D12007A866FD635E5E19EC3FB003C2F89069D880A469C9FA6AA5F1E9933482F5D9585E776F1F9A5E07948E29858A8A0970FA740B34359D049D4E37683FAB2E2F1289F5D76401887FB477743200F4A05637379E868CBC425696DDEE008D5633E0FAC472150B469F8CCE2B1C202F17EAEAEAA0382B1578B313F9890069696903AE1B8A0FD0F31A4D26E0B406088A3071FD3B231C000E8BE0AA1A57067A24434EE758686F3F8E0F1900B3C5CC881835086DC4C695FD6854BD1F0549FECD8DBCC161B3A2B073203B2707BA3A25DC4E63D93A2CCF32E01AF5264AE295C7F01E6EAF0FC6141542575727043B9BC198960F1C7A060E9B1D38E41403EA806D35E07A71609961DCEC361B0341C3B106284E3140C8988640D3A39532E1FD62CF95789DFABBC8BE4B40FF698D16F0863804C092910B809A597756A7A105A8A9AE84C2C242245B63E0B7BFFD29CC9D3B977501F4F0C934C38FC4A814EB96EA70C0312447E750D388F485C211B02161ABAAAAC4BEBF1C962EAD430D6B62244E2181FDDADE5FA6014D6B099EE343CD3F841AA610AD8B2D97605CD9580A3BC3DEF52BA113BB808A8A8A0182516B287DA72EA09448200AFB4853139CC3EFE48108E88990F0274EAC8637DF7C13CAAD11705BF259D904F464CF499B15AF2FC1733CD81E7B70A3BA97A297A337DBC08F1660CD9B231C001936AD6B62650533D12E5718DDC0B7062581CAF7C1482071001B5A802AECFFE96FF5EA9348C0227112385879892490BC00EAAB2F5CBC08E563C7420E5A93EE861DB0E168F33591401218692E997A0240737333B88FEDF854245067B28237228E6C004C9B7D67B5C3A847008C671ACCF379F0873FFC0AFEE66FFE8609861E36286B246DCA7E575B1BDC4F7D3182E69D8F3E827AD41422817EFC9DCC2C0180BE2F59B20B1C8E4EE6BA29D7272B2F1D05320BCF3F8A2EE53A6C7402C0A44993E062730B948D2DC5AEC909AE2DEFC1B93E80F9F3E7C77D7CA51C75595E14D862B319B2D0737863C70E388CC7C80B9090A5A4A5A10540EF62DDBA7590C775439FAD88592AF5F589E5156379731184AE8F3F86B7D07B5048A0D1E6C073B8892BDFFCC34806C0A26ABB115C3555154C60393965B07EFD0A665E53D08FD6683449491B7D52DD0464DB7DB259A47383D805D8AD16D6A8C4D6EBEAEAE1E2C50666FEC9DF569B7FF5271D2733AC1CEBEDED65E7B75FEE8072EC02481887F6EC80FCD2F1EC3E360419DD3B91A4299B123DF462574565137114D06AA46097558CD661F5EAD530BE0049AE239B9D4B0053774B6A8F40294B0952517C848264269B1382120260C94806C05D8BAAAD02E72AC8CE405225607F988782E8810E34C37ABD9E3D3CD581111FF619234920EF4B099FFE60088C46030BC210B1D2695391C09D63C2E538BEFF5C497D2DC48F1399547EA32D8080CA4C4D814E2481BA8817059609220A855878E2FD25551DD59F20D73F82E552DD8CF85C9790B7E423F2035A0B03148189889D98A40C50D753AE1BFD39D332A0DB134100BC38720130EBAE07AAED7AD155815E00F5E176FB18F8CFFFFC314C9B368D215DD1CE44661CC1E336D4885424476DA8659D788CB482CCAC15BD078A015020E79557B6A0F69F67F7A2464E64D6710DC33232D1EDE3F058138285BA1FEAB73BBB7BA0B4A4988169FBDAB720A8773273AE76431337AA9B9DEA8782BD84E5B6539C01EB66B1589955ABAEAE82D75E7B0DAA527946020900F4A7AE9B6209689F47EB9386164CC4E73D2DBB81449833730B18097CF395110E00A741728D2F1FCB48E099331AD8B3E74F03486032E27609499B9A04EEC77349306401AC66024005236AAB579FC0C60AC2BDF7DE7B05B952979983E42A5924B0A5B50DC6141741666626B4B9B6C2F68F2FC3E2C58B99491F2E09DC8D02A3BAA10962419F6AACF3C7D89F47CF1FFC542430253D0B3C110101F0FCC805C09C450F545BB4E01A87448B98B6C79306AB56FD17FCE8473F8A1336850C526328DFDB919D3F8C1A9D85BCE18F2834050041D410ABD9C20040DAB662C561145E1FDC79E79DF132944DFD3DF5F469988FBC61574303AC928F93177009C96609DE83D87BE3DE8D70A8D9C3C629E84F5D27F5A7075DCAAFA13529292B83DFBDFF3EECC53A51DD286EA00060CF9E3D60EF3BC700400475B0B2E8B30489DF0308C6ED870FC3D2EE6EC60588E3A467E7420049E06B231B008F54DBF45157D99812E677E7E591EFFE12236DA4C18A692473AB368DB4F1F81BF1040F9AD930F5CB4623708206CCD8CF5259B367CF86B56BF7A0CBE5628D49B100B59FADF6B7A983D5E1FD28D012C1FDAEAE2E66667BFB3C505C58C0CEDDB26E35149557B2FB90D9560684D4E5291B5696F10E026B087FA32EC4EE70A247628731D8D52D59B2046A8A3240482B6042A6E718D08DA8CA255E42514EEA5A42788CBA460A6DE7178F015F449AF8DA8BCF8F682F200BA4E001B34E6B894423229120797C9CFE95920F9773542FEC38258DFC29286745B1B1A8AFD76A88A147E48224E5B22107E0B9245F4211112C262303A0D216F4C9ABCBE28697631025AF05EBA541B2CB408730419044909C52D247989E2AE1310729536E20ADDE1D356AA66D59BEBC75D464040DF687DA584269617212E86C3C641AC1593E494FC5ED203EE306D4FC8DC83976EDDFBF3FFC45B7FB170600F4950D76BBFD7612BA9C1E56762300F1736C8F3EDC6AF1D93710288E1E3D7A66D40300FBEC52443FE50192C049CB8D234860D7BB2E6709083220B6ECDCB9B36F540060F2E4C969519DF950AACD9285EC561389F0480063513E8EE3AEBA3C22835AAD86A56D115B16450D9617864F4CBCE3127BD8D89F12590C87432048110823DD1850372ED955C9BBF17054042DF2133DBA90412C4FC7892CA9839A58FDACDC6084A4BF4CAA823F24C2596D543BBBB67675C7881E0ECEB0EB5D936BAA61ECD8B1E8B28D87B7DE7A91B1662540A20E8FAAC7DD891D6BF19C30CB970BC7F207B191EDF6D85800B9571B371E83CB970F31A64DE1DBC146DC68A33C3BF22C68F49EC6FF696CA2F9522B4B09A3DF3FDAF23E380BCAD9E81DC501140F255999E44D70B2AB1894EB66462F242D25159FB314962D5B06D38B9DE0B3C53C0C7A5E7518591D6422F64F2889D273E36FE40550CC44D2E8A10FDDC09DA32925CCED4E81356B9E87279F7C321E0748F4D969A338C05750F8D9E852FD7EF3661607A048621FA584C9194124F0D5AB8F417A7A2F1BC049F4FFD531869453A76011BA8E3B8E1E85F7D072D060100582CE349E630020FFFDC2FECD70A0A98F0595080083F9EE7DBDBDF05728D031E8AB3FBF660D8B0324E604EEDDBB176CEE46E83617C4338C062BAF045DD287274D82DA83076109EE2B81A00022D58F6EE096B5A30800E7CEE9A0AEEE8FF0D4534F7D6224F0677979032281D4C81EAF0F1C724E20F9EB2B571E1D7624F01FE6CE1D3427302B2B0B5A0E6E819DA73BE0A1871E62AEE65091C067B02E4A24B04E0E2B53B247869C1378E2C409909A0EB340D0CC99333F3112F8B37BEE8157366C80DF9E3DCBBAB671E3C64184D38037C48F9E9C407AA8F4F432F8CD6F9E648DA46841626C9C994AD42A27EEA7A1396E76BBA1138F51BC9D822E4E7BCC02DC7AEBADF0DC73EF014DB4218D1D2C1B883601EF93858011B1DC0B582E59008AB6511730615C3933D16B972F017D4A16EBAA9421DB64B17B56376C373BDEB3A9BB1BDAF13C02904E6F601680EAF6FBDFFF1EAA32F4104E29665D5DB2F109A56E1ACA0CD66A2184ED7146B60A34A2A8355947474A98512BBAB2D29CCC11B65AAC2CFFDD87A69C170499394BF2E85C3F9B1E785CF94DC26BA360D0EBC064348056AF67236FDDA8910AC98A8DCEB12BFBCB89FD0F6C7E855C8E28DF2C1811C1613182CFEB67237106238D024691580AF2FDAF2C2B7E7DBC8EF27DB10E06AC0F710D1AC2A611458A78725C8C44B23254DE8224A77EC9370151DE57DAC19A9A0EBE6068840360165A0093812585523E004D0CD9BAF56DD60814CB27CD4DCCBB578F932BF9006CD40C1B33408341C8DA2BB03FBFE9A69B60FBF646E8EC3CCC3489C2A789B9FCEAEF743D6935DDDB8D5685FAFD96D676B400654CEB8EEFAD85B4924A764FAA9B92B03A580227818EF20114AF418B9E89D3D99F0F3025DF8224B090FDAECE55489663A0640DD339649D284B99D79BC0171646414EA055E3AAA9AA641C401473E18D37FE1D1E7FFC71F6A0899932CA7E4F7B3BDC8D0273E0351FB85CE092075CD4296124C0356B1A90B5B7C3CD37DF7C45190332829A9AE01664FDC7910B6C92BB00CA083A77A189E5043A1C0E38B3670334B40761CE9C394CA0EAEC1DF5E64396FE97D89D5046D05B757570088F113FA1A64C9573023FFCF043C8112F4397293F9E1134D85688A4725E5919CB085A815D0AD599C63A048319FC516934E404EA5C132B273000D4D78BE072BD111F0E4E362924D9C4908FE4DC7B4A096349A10800D2E855AB8E0FC8091CAC3C754EE06B9D9D4C738987345D6C6629613452D979741B6C6AB81427816ACF445D56321248BC8186399494B026049CE744DDD591C0F5EBE1B78D8DF194304A0AF5847904C0084F09739A385775C578D6489410F2EFFFFE23B8FDF6DB59A30EE6B313212AC1EB53D11436343743135A00EA427C01CA098C0160EAD4A9F05FFFB51AF4FA66E6122A59C1C936136A7C310287047F18CBA646A6A492E6965604C0183692B8F19D6510D63B1889530860D2FA91DB4763FF788D0B2DCA05FC4E669F329E1400FCE94F7F82F14E808023966C92185350976BC57B1521D9ED4360ED43EBA20C075B1CA910401238B253C210005603B8F2B23298DB969B5B082D97503BDCBD60329B59142C2A3362960E467D7F3CFF5E64848C7E57E605500A97CD6262A6363727173528CCCAA38091DE6050B16D519567DF9F8BCF72F3E5DF8980D17E3A96D58DFE77C0E701675A26237654578AF4C4E724A8AEA7FA89AA790B92142B8FAC8605414104B5B1F11C64A6238FD01918D935188CAA8CA0A8EA19FBBD0349AE17FD4E7F1939F9D017088D6C00CCBA6B51B545CBBBAAC697B399404E07F675473633A64C42A4864E246D34CC1B898465522432AD5584E8A3717F8B99CD0E1E8766F2E89176E8EA3A860DAD6391BD2BCBBA727630CBF8C572C83DA37C004A09A324D18BC70F424AE13846FE88B41986313B98AC98E226F2828691C05CEC4E6AB1ABA9CA4137CE92CD882E7531C91255D5DFD59359D9EC24F4024261CDC437477A4EA0C320B926948F652CDD641A032FBDF40B967B4FEC3ED96C596A000F0AE436D22804491D92A39372B42D96126662E69B2674BEFBEE616CAC66363183C5E3550DA9F62E52B1DFAF44003623B9DC89BF51B895BC888BD805949614B12EA07EDB5A38EFE158D7922C7B57D927F0DC4E19C0F2DCC063725A3825A52A3981AB56AD8252A30FBA910452BA99BAACC4F2B2B17BBA1901427303D7E3732B249000E08B8EF09CC0390800B351728D2F8BE504EEDBE78353A7DE4D4A0287333B98DC408B9C13488D481343AE6576305915F202949CC04F333B38594EE0A7991DCC8E21005233B221882470C4A78459B411D738245A24408BA50489DB532C744BAE58A26628DA41EB034C4721D851A3B61F3F0EA7652F80068568B0A6B2A28291B5975EDA149F1DAC0C2CA92D89F2DD8942AB4C4B8BCD0E96C707C80B68458B403981E477EF58B31C7AC0C43296D5B38313AD144D0D9B8EDD478AD309DBB06E1FAB7202696A18D58BA6869559C3E0B51531ABA0A497252B2F1BEFC5D607686B838D584F3A465E4046761ECB0A1ED12961B3173D528100A82F2D2A8811B7DCB170F8F06ED6C7A7E0F7C460CB607D2E6DF4E7F3F999B92E2A2C645A72EE5C1BBA5C1FB37C7C0A1527F30092CD142600106FA0B105CA09A468E2A5F3672023B78891399AC8A1D56907F52A12CB56867569A02A2323132DDD5E28CC4A018D3905CBE3079D1D9CAC2CFA240E4049A1A1B0B6F2B5579E6B18B10098316386B13B2C7C2596DB378CA48A68D8110EFAABD01BA894C4E838BCCE98907531682EDD179E10A2AC3534B07E22BA8767788D704CA335D40B3AC3058EE386D5E86851C21E4D6479D3AE5DFE5191113448C2881609D92CCA12A2D4306C9CCA5194E593ECAF039F7133C4D60CDC78E2C489962FF2F9BE1000A0D00BF0E1E7CB0B42CEA5718F1B54589F475D8E2A60406EB303DDC7C0A803C0C30F3FACEBE9E9B955B53660C528D7F26BBD1799FA6D0408CA0DDCB66DDBF1110F80F2C9B3CB9C26EEE4F8B125F2D22B63C0ED3ECB3C000AB42821D201D1BA21F66995304A08C9CECC02676A0A9663849E9E338CB8293901CA356C935707E92F431AB0DFD3DB0763C714C1E5CE0EE0FA3A40E3CC662165B3D912EBC09528A4A82E578ADF4752D58F52C31CE84D389D7674754F41518A09027A3BE8757A5637519E98DA7FAD74C5732ADFD950B5C84B4109C6D5AD5FFDF188CE0750124228966FB395323790C6029465E21267DEB0481DBA6A79D818B40AC719F4A95BC85DCACE66710025258C5CA5D75EDBC126875244513D397440CE1D96A7C37BE59BCD1046F65F2F4FC3A6783B2D105189DE84197FDBBD7E25F448A6D8024D83CCE26165E3F554B71474474FB6B6C245FC4E913E015DC38CF45846D0EBAFBF0EE3ED51705B0A18D0D54BE12496674437300FEB1F44A538248F9092CB1BE5B5E00EC0E8CA0944B7190E1E5C3620109418BC5102413FA540506525FCE0A597D86820F9DA7D1E1F02C0C62281A4A96BD69CC4C68AC03DF7DC7345F04719CD535608F9C1ECD9B064EB56786D9094B0AE861DB0B9E1D235AF10128E44E3CBC45DC0FA7B4FEEBAEA40907A343024F1E00B8BA3272790A26D92940B4B96FC1ABEFBDDEFC6E6D5E1C32A9F4A92286DBD972FC322D4A854BC66C5EEDD70240E805852A8120A7EE38D7D6872BB58F086B43A208FF42979004A79940F703B5E7F184DF33AF99E24A8B3E72EB055C2285853BF752D9CE98DC282050BE2B102A50C65F5AEF80A21A8D53968D15EAFAD85037220288A269D52C208589B376F866CF132B8AD45316126D449FD59E276C39D688D0E9E3801CB5549A164013C416EE4E704A62300A6DD5C23A7858F81D5AB5F676488867095F87DB280482CCB461B5F4F906925369803AFA3FCC2193366C0B66D2EB878B19E9D4B421C6A4937653512DAA7C19F2CB6365F2B548E1FC71AFDA39DB550307602BB0F451BD5C3CBEA2C25E553C9080ACB69E19411949A960A25681D56AE5C09554599C0DBB3E2CF3A58F0874D84A5A561E56567A96BA4C1284E671C1D3981663DB88AF373189132E8339108F5409FBB8FF5D90AF189E5DD89729A9D2ACF4E8A0DD9D2D02C7D0F2207A0D9C156AB2DB6F286C68E0DD6CAAEA7C118E51AF544CF017985EAEF5826E5176467A4416F4F2FE84524E1460723796CE63297787D7FBDAECC59949805A0A160227D9DA8C9E9660DF8393DAB676C05136E407EA39450CFFEFAC626BC5252A83708233D256C7675AAC5E8BAA9BA9299C9949432F8ED6F7FC6345849094BB65E1E255DE869E897C2B558C71ED4164ADB12516A36AB054DE438666A57AEDC8BA0884DAB5348A05A4BE363F668F2EDF2C4902E142EDD9BA687777475A31710F350766D5C0D9239353EAE70C5BA82AAAC5E23D69BD23C3A297D0DBF93F5A1FC8614670A4C98309E91C0AA741DF86CF971E1AB19BF523FB67A092D7C45C2C767A6A850405E12CFE24CC57D6EE29A919E13986ED3BA26555630937BFEBC1676ECF8233CF1C413B1FC3A1484328143DD67D3C4901FE0F90508949F2D5B0647B0E148603E7F00CDB319C6619F496677E3C653482E03F10522D49B420469CB440EF03892B1157575F0366AA7927B4FAB8495220028567FB96117EC6DEC82850B175E313144A99B3231E49F5140959326C13FBEFC327C24A77193E52020D00AA6274F9E04BEF538F49872D9C49064F552F8CA3834F9FF82BC63D9962DF002925565304863B4806FA42F135733FBCEEA0CA38EA584D1B87867A705D6AD7B11BEF7BDEFC5059FD8C8B45D6E69818750C0B442C81FB06188049256504EA015FBE732E4133428B47EFD092CD7CF169E4C0440485E1398F69DE7CEC1429A19545F0FEFCBA0A346BE841CA0B838B69E6FB36B071C69F13000287DB2BA0C65A31542BE8EF71E8BD73FB77A351C90D7F4618341294E96B1EC72B9C0D47B0EDCE6BCF80A2189A054B6629A6984E77C78E0002C410F45C907305A1D100C8D8265E29CE6584650595919A4A717C2ABAFFE2E6E16134DAC3A758BC7BAD1444B127A489E5F07D8CF5BCC26E67691666DDE7C10DADB4F304151BF3D60D955751780FB7AEC2268658F087E525A387911F4FE8122798590BADA4DC8EC4BD97D94FE5A6DB6D5E572F2DC403F69317E27D268C2CD89DD54210275C58A1550999F0A424A1E13BA12081AAC6EF4AC34692584F7A5F3A96EE9341C1C95467E4EA0492FB92C06EC77D187F7F9F07E7C804D84E4065BD18353EFAA9613C17FC4288142CB166066AC59D402CF85D8089C521E7745395C92413AE5272D12D39877C08BE821204B60AB90F0FC80913D0E9255951BB04F2496081F0191EAA6C1D2C222175FC26EE073015BF18CDD858F3D27C773785F81E5100A8206523232A1D71B9DF4EEB2975D231200F452A8E973E74F7418B487CA4A4B18AA4DA66C78EFBDD7D89A3964660768829C34A19024905D371248485E23882C00316D8A949199DCB7AF11BABA4EB206274E904CCBD86C5CB210D8B0D4F0A23C7387A277BD6E0FE4E7E5B0F3EAF7ED006B66416CFD4125743BC8C2CE94BC4A6551820AD58D9E87561827772F2F2F173EF8E003A8CAB140D0122B3B718DA001E552592CD114F7650B4041B3BCA212F084A237BDB3F48F87650F411A3100E064759C7AC7DD9352CCC2C192C27CD6381D1D3A2481CBE1AB5FFD6A6CE165D50409F5F2ACB454ECDDD86869089AB777ED828FB19E24B06028CC0040A48B00B16BD779F40EBC2C26A06401255B8ED5D1DC0CB3B1DBD87FEA14D4CAFD3079251D9D5D909B93CD3282DA4F1C80E36D1EB8EDB6DB1800D4E52865D3753431E47E64FC8578FDAB9B37433DFE469E036504D13352C2EAB163C7C0D8D70C7DC64CE6ADA8EBA6049694FD7CEC8EEEADAA825D478FC26AE4034A983A35331BDA3ABBA76F5CFDCE216C4ACA3A113F6B205C6F00686E9E75C74D6956D39EFCDC1CD64FB6B4F070E8D01A78E491479816288DAB084A6998AEF676F81A32F36C14F4FF7BFF7D3885E79256304BA03740515121D3AABABA73C82B42307DFAF4A40253B65404D4E29A1AD874F8306CC44656E2ED9DDDDD9083DE06B1F78E8F0F427D8B9B8D5328D3C892818A00F02D0463290AE93FDE7E9B8D2D30D7111F99D631A672CF239BE72E9F018F298B452D1301A02EAF1889F03711C0EFEFDB072B2E5D628A401C2733270F4E9F3EB770EFAEAD1F615B7AC8E07CD620B82E00E05887C7BA37E3B889536EC9CB4CD9989395C9DC40B33903DE7EFBD5789AF415A3774A8E3C6E06DC37A326F6628379E9FD411439C446A697399147400342EBD6EDC7C66D6102532F359B38CAC6D3FA82F2D26F3DB2AF4D42A325E8B2D03BA17E7BEFF62D6074A4B17AAA67F10EA8979CCF6FC64F23DEB303AFEFC3EF944246B9FF346D8DEA465D40490A7649B6AC7857A726954A396CFE237EDA685D620443BB9C164E752B281E03478ED67FE3F8D1C3BB28E4809B9702A7230500B408A025A7B8F4E682FCC20D36930E2234F285C20B0482CCFF674283FEA89832AB573DBB377E4C3E4EB383753A0D76034666A66973BBFB625C8D48A2387839CA4CDEF827CDFFA3655F2D66F0627DE838BDD48279208206943B27CE028E97AD442B55B39B755A0DCB35F4F679408F5D15D13C4EE06432AB7A265539FD4F88B450924927B68DC1628363470E7FF35273D37E3C44EF22A6174C863FCBD7C85D6F0B40537F9CB86541EC35B06972F68F4106089F40A7D59511A17F2DC1C44A261E4BC6EF25F5A74EA3D1DE5259F990D56C2E3BDBD2B2EA7863E341F91EEAF3E2E598519D6F1A3FFE5E87CD56D3EBF5361C3C766C95C7E7F30EF5D849EE3FDCE445E579A83E5159CB09915DB2E05B650BE01B110050818026D953C494467D32640038E5633A1900C210C21BAAC1D49FDC2020617F4E8BC5765B75F5DFA1B5C8A86F6C7CE9F8F9F3C7550D0E72A327BD474D79794D5941C137F0069AD3CDCDCBF61F3BB62F41E883AD4E39D46FC9FE4499E885E4CC20B70C802E79DFA77080114102D54450D67802410A6E0ED9326865E1730916401AA6B60CEB6F1CFA9EB3264CF819D565E7F1E3CF1CA781FAFE32A4042040328B90E17058E64F9DFAF7683DE6F6F9FD755B0E1C78FEE2E5CB3D0982E513B49E1BC44A7083805C94353F280BBB57DE14C147E4AEFF3315D8E7F2EA5859D00A08ECB205D0CB8DC60DA1FDD23500202E84BBAAAB6BAA8B8A7E1D11C59635070FFEF0744B4B5792EB25D535521200C4CB7B60E6CC5963B2B39F42F2A23DDFD6F61F6F6DDBB6214917C60D724C1AA2BB0395F9F7CB42A77502033228A4EBF5FAD8CF03000AEA49E329C7DF225B00BD6C1DB8AB30FFD2207DEB15A0F9C6CC997717A5A53D1D8844762FDDB9F3C9E6DE5EFF201AAE94C90F01AEF8B96373736DF74E99F2A4C560B8CF170A6D46B7F29787CF9EEDFC04C026E305C940189685EE932D41E87A68FDE70A00150878B9DF37CA0030C800E0AF12009F745CFAA7B973FF36D56CFE87BE40E08DE76A6BFFCD170E478761558673CFF8FEE373E6CC294C4BFB153E9AAEB9BBFB9917366E5C7D0D6543020F09C9820F28811FE93A0BE8739B172083405081C0A022823004991B36294CD1E98427E6CCF99545AB7D18FDF3DFFC7ACB9697AF92545E15D8A61615D916D5D4FCC2A8D73F148A44D66F3B7EFCC71B1B1A2E5F65398AF6C708A0C321D834FA0520F11AA3467CA7B5B5D53B9A00A08040AB72053509FDA6742D42AAC9CAB23C5653F3925610A65FEAEBFBFEFFDEB6EDFD24DEC2B50260C8EB7F7CF7DDF332ADD667B1F2FA2E9FEFA9A7D7AC5991A4EF1FD29331399DD335A0790478EE7E6C2A9BDC5C5EA450EF72202DE96A6FF91065151DB100180404DA41BA81AB12D2B72A2AB2A71514BC89C5675DE8E979ECDF76EDDA3788BB782DAE260CE52128C71E9E3CD97E6B51D16FB43CFFB58824BD5FDFDEFEC48BDBB6B50F050093CD3681E3358FF21CFF10364EAEB29C5C7C6493E3D4DF2FF11CF706C70B4BDA2F361E1E9100480001AF12BEDA1D4C469A0615C633B7DE5A59603693C605CFBADD7FF9CCAE5D67AF4283AF05044392B9DF2D5E3CDF20082F90850B46A3FFF4772B57BEAEFEDD6070E4085AE9ABE8493C8A4D51C544CEF50B3D3EA4AD3E96000A0442BDC8494B2549B7ACF3E2A98B230A0009208004E1735713E079E5F6DBE799F5FA379045359CF47A1F7CBAAEAEE3530A78B88D210D157DFCDDC28576ABC1F02C3EE837F1C09AEDCDCDFFBCB4BE7E068AEE317CF4DB69E43F265345E00341A0687E6C1F929E231FA36C83AD12074B259376C5E51327FA4604005420480CA372C315C48A3973BE8D27BF2071DCAAA33D3DDF78FAC081C03568F267FEA7B0767C3CCDFCB2B29FB8C3911F3574761943A2C825D76A4834F5C9CCBFFCE69AA180C2F9F1F33D7CD2A5ADC5B91BA4DADAC80D0D8021C0A06EC4A421D455B7DDF60C0AFEA778E2FF39BC7DFB93BFB84E41924FF367B1397E883EDCFDF8283339F9050103849B4CAB01060A57754EBFC06150A0B09F68695AE0DAF1DB9BD44D5C3A73F2A31B1E00C3FD7BBBB252677438FE80BB5FC18A7F7F615DDD0B376A5DAD76E72FB09FFF394AA44114233A4994C672097D7B8206AB040E89A63E0927E82F2B1A7F35AEC44631D9D274B4D6710C302711134B04415AD678FCF8B91B8104F2F6CCCCD910E11E45F7A625CA4597BA2F5F3EF949D7ADAAA971E8B5DA77259E9F82757E64E1DEBDEFDFA8C2A767B43A537F894DFBD45FDF6D863F1EF54A9A0E435B30104811A3A24E31FDC94D7D22286050A0B0F509D9CB2B22480CF9D870321FE3D7344742D0EA40A3D5295D080D34EF44882CD19884B71B0F1DEAF95C019092995F0D207E1D2BF9284D1054C6D9E5F1F4FDD4774535DC9B9EB6B6B6C46BD7D7D414A169FB00682491E316DEB57FFFC11B55F077DC7187A9B7B737B5E952EB2F3333B21E9B36DE00AB33EA21F2A6052C26211A0A737D7E9FCF2E293D5C02C94B060A3507508ED12B6E407E0F31FB594E3A116420004D82E16289A73ABD11343A7DDC7A4422E14301BFE75F3A9B2F6CBCAE0048CBCFCF1523809A0E8FE17DAA60C072E852FF34AE7E3050A0631376E84B2D3A611545C13655554DC687590BB4B44A347AF7BCFAFA0B37AAE6D37A48C160702236F4ECD6F6CE47A64E9B32F1C1C58B61F5C68DB0F1FD75F0A3078DF0ECF93EE05C665A822CEC0FF8AD57E3FEC54D7FACF5B008D4FE483496712C5F1BCB9EE6182028055ED0E9406F88A5B9235EDA823EF7E968383203ADC7B7BBDB2FBDFA9903203D7D9C95D30717E30DBE2EBFFF8F5767CDF467EB24CC8B1B9069C3F6BD3982F0D15FDB6DD327E975BBB860F02FE79D39D37B237394D9B3671B7A7A7A6E46F37B576777CF02A3D936B9BC662A04421170B79C81E9930A61B97F3D043E304059AE00E7DB85BE50C0A70F86C3BA81560086208A03BB0636881009B32C654979C115ED2007A0771FD08B2CF1BC703818DC1B09876A245134C7DE841EFDD667060004BC263DEFC29D28B5C7D035BD8FADEC3550B3219E8625492A00A82CC190BF431B2746DF90046EA9B7A7E7C08DDCF74F9B36CD120A85F21004B7B8BDDEFBBA7ABD7754D7DC6CB3EA05983D6F165C6C71C19F5EAD859F7F550BCF747583B0D5216924DEEDF37A6C51914D2248EA220EE93DC85E067101F6722C5A2D456F9483467039140A6AC568D421C97989C41DC42820002E7E3A0064178C9982E6E6318993BE0222A40FAAE92ACD1E8E25480E86F83927F0419682A859E6F7779FBB0141C0210F1090073871770CD6F7F6EE3ECFE2A824D43CF4C8780DAFEF83352BBBE0AF1F7B1896B5BC01AD6BBC60D36BC066E222973A225E0F028193A53FA4FB973426D0DF85083CE747CF23128E44AC6CD6B5A8CCBE9662CBD9F1F0B75D2D17FFE7AA01905534AE98E7C5AFE16564E2CB93096BB8663E290FF8649EA00084FEA993405C1AF4F996E171CF8D0684050B16E83A3A3A3288FF84C3E13BBBDCDE7BD3B3338AFDDE103CFE9D6FC3919327A0F1940BA27DED30655204DEEA0D80EEA0D317F47BC4602068498C0924BA7FC982473CC745341AC1130947EDA224728AC0D5C2A74F9D867FB27C4CF1B3C302406161B533AA0D3F8CE7A2D06126D10C5AD29CBD07E793B4FB0AC15D0B40925B13F47B2F729C16B7E82F3CBDBD1B6ED46EA1BCBCDC6C3018B2D1344F0D8423F7F57802736F9A3CC1C91BEC10F2B8615ACD4DE00EB5C3CAC63500076C50550870BC89EBF5B8DD46247ABAE49A0F894451D2EB74BD2815339A7B6DA2C0D5564023F05B8C027CB7B1B1F1F4A000A8ACACD4F586B84578D9D739495C88E7E914818583B1B97D12BD5C49A3658B2331D6393CCDBD461ED05F1E56DA27089A0308812968010C88C7059EDECEF5373841D4F8D0FDC3DDE268343ACBED0B3C18E13453F47ABDEE2B0F3E00BDBE0EE8EABE0C5B6B0FC3D30F85E1A7ED1ED01E748A9C077AFB7A7BC86DE4078B1368B53A8F46ABE5A3A2644A2670651FCF3D6FD6EB7EEAB09AD61C3870A08FD2CC060080CC5641D9C49922441EC3AF0F616B3B15C1208304741F50F021F6660CCA9D67EF3845E241DF797A6DBA46376CCDBE26B0E057BDDED08CBF5BC617F0768B5E82DDC743947BBFB0AFA7639D74838735A97D4B4B4B7556AB3515AD4145342ACDEB0D04EFCFCC768E2D2D2FE502411DB45CB800F7FEC50C58DEF52E746F0F83396C82319991D0E133C180CFE3B1A941A0D168827A9329204A9C3D99C0152B8042F6E8B59A171D66FDFFE579FE320A3F120FB7CB6FBCD2E48FADF8174E10BE83DF8B94C626564982268DA7D56DC9ECB3E364FEE9956FF4C9D167845900BAA9CE608C0FBF7C2218AEA21BD0EBF45E41AB95B02FB508F7FB6086DF04705107B587BD34D9E45B258579EF188D465FED300741BEE86EA1BABADAA8D56AB3F0D926872558E40D44E6A76765A7D16BF016DF3F1F5A3B76C3D1FA1E686F6E83BFBAD50FBF0EF482695BAEC7D7DBCD23B13358CCD65E10B436ECE78564244FB602A296E7D659ADC69FA22378EAC89123FEC4E4520600A7B3D801FAE01983D15C8FEEC34C898668E5694CFEBE9EB8C633214BF4FA367A11626CF56E891D17E477EDC5A667096809C8FFBCA66E20E17C41C387B15EDE7038E278F8560DBCB92D0886A9127C63FA37B1AFAC82BFFBFE0F2035C5F1A2C36A7D47A7D39D46F3DA8608F74B236090038120545555D910B80558EF198108A0F11766CC9B57A8B739BAA0A53915DCBD0628CC30C2BBDAB560DC5A1C5BB6480C7BA222674DDECFC7F6055E3AA1E7B85F588CBA0FD1E2F40CA618710070BA503763913CF7B1DE68F163BF3E914421B2F57A42100905E577F791B029F6AC01518ABD6031128DBD989980A061F3EF6008863F8407A00208CDF23299CDEEA82459A5B4B000B7FAE057C654F8F1AB7E983B7F219B5B5831B6087EF8C37F86CC8CD4ED768B65375EBF0F1B72AFCBE56ABD1EE953D7AB5BA8A8A8D09A4C269A33511E8A44E60645E101479A6D02CF9BB9EA0963A1BAA2020ED49F80DDFB3E92A79247BD5191A6278A57903CEC94BBB43CFCCEACE57E6FB7DBDBB66EDD1A1C4A19FA01A00F752B0B19D0272F68F6A13528C012B318F10B05626008850824F232693CB30A1A9D2EBEA2C6704CFB2769BFD16870A315D1CD182719B6D5A31C334250382B0B1E2D7A143ED8540B96F47C08211FF175B7C2E1FD1F05B333D33E30190C3481724F28146A387AF4688F3492863965204C9F3EDDE0F7FB33D192D6A06A2D0C4AC2C2B48CACACCCEC5CE8E87183BBB30D7C7E3F0A4DF4A26298D5661F0512D2F2D25A9B5EF835CAE69442F286950F100340B85B7135D898726C3F8C7D6FBB24F059783381EE130AF81108E198991762438E57EBBE0DE60EEA745ABFDE608E44B888555CD403CFA5A6C00F5E8EC0848A3CB8F5B62A28C89E0AABDE7D17429206EA5D072481E33E4E75583F40D3BF0FAF6F40ED6F1A3B766CDF5B6FBD158511FA47DDC2CD37DF6C4110E4A120A78740B338CA6B6E2B1F37DE74E64C2304D11263478B164032CBC2970488BA0CBCF86B5E9276A202743434348487AB000C003939E56941C97B39B68C49FF92260A20B03F0F6A044D006F6AFF34EEDB603C40E0B988C962F3980D9CBDD72722BD8D82E611373CE45E04E72EF9C1640F414E5E07022F05562C3F097E9FB73DD56EDD845ABF031BC98564AA312525A567DDBA75A191A6F983590304810609AF1381508A98B823C46B1F42B7B10A7F16180024306357D0AA15232F1A901AA1E56846C1FBAE7606118B2C141494157A42BEC6B8E079B59FD90F040481877CAE6854345D552067F0DF258BC5DACB19054B3437A0F9EFD93AF8DEFF00A438CC307FC1BD306D5225D46EDB0E8D4D27C8C2C1A18367FD76B36997DD6AA6A0CF61D4F88F65B72620DD8059419F515859EFF57AD311E8D5C8C0EE0E72DA7B2489D36A20B24DCF459FA736C0BEBEFB5ABD1F963D802E49414B4737055652B8440BC02B0B1CC58F4B5A81EF8D44A3E628459C06D1EC4F8AFA19F4068FDE64E1A392688A167A409CE6866FB597C1F65336C8CE3541BBDB0466931642BDDD70E4884B341B74C71C16D31ABCFC805EAF3F86DAD182ECD63B12DCBECF2A9A88CF4B53EC2B110C41DCEA1D0E47EB2791BC617501C5C5C50674454ADCFED0CF4391E803141748D47EC532F41FE7A30227F6858221BB88901C56D8178F52F0C26CB505AC76D1FE95C922BCB009DD4553101EB8FF6E98376936ACDBF4219C6D6A85943413F6F387A1A7D3D76233EBD61B74BA3A32F75897F3252525EEB7DF7E3B3C1ACCFDD54613D1D49B3C1E8F88E6DEFF59783AF14820091D7D52AB3F1C9EE90B449EC6FEFE26D60DF0092050EDD3582312B140341A0E858241DB503C80E7B8A8D5E670731AAD3D38A58D4F3572F01DB305FE738D0E66CC2C87D64E2D8C1B938E4CD70BB53B7610D3F5580DFAED469DB009057F18B5FE349AFBCEDDBB770747A3B9FFC2AC4B622898FA9C603098DAD6E9FE6A2012FE21FE9CA9081EF84410A8DC461EDC019F4F1B09878D89913E8BC5D29B9765343A2DA06B68E22054D50137E74C8445E3EE85551F6C00ADC10C68D3C06972C3F66D27A27A2DEF729A0D6BB16E072391C831447DEBC99327BD5F0AFE3A0340ED8A9496969A4D0E47BEC713F8C76024F2281E35A8853F8865A061C25EAFC76D417EA041ADF5996D4ED137B7D9B2B8CB0156030FAFEFD4C15FCC2B82F4B442282BBA09DE7A67357474F540677727440281F3163DBF0E6DCB2E64F647D0CD6C42B7A64F1DBBFEF2EF730080DA1541F3EBC0CEB6C6E38FFC2402D2AD6CC459DD0D5C193BA033C2208968EE7514DDE27A7FE08259EB268259970575AE26B8E79E42309B5B20E0CB812D1F76404F4F57AF49CB6F316A85CD581F1782A711996D17129CD0975AFF050140CD40EFB9E71E435B5B5BA62710BEDB178AFE93085CB1E22A0EB00A2ACF019D55377AF8EC8D104537A5C2DF2FFC36F4BAFBE09967FF1BE6CD2E034F5F0876EF391DD671E201B34EB316403C88D79EC4EEA72DD9A0C5977F5F1000146B400108228968960BFD223C1E8A728FA1DB684B123D64A0E01900785B5A6A0A688C36C84C73426569212C59BE92C2979206A2670D20AED16A853D14C543C137A7A6A6F6FD39B875230E00C948A2DF1FAEF245A34F44419807896E23F30EC02D2200E82D5ABCDE0C59690E683C7B16DC3D5D5D3A2EB249CF735BC8AD43B7F0DC688AE28D6A00249244ECA7732212774720CAFDAF28C757A8BB01819318006C562B389D0E387FA129A897C27B755C9466F41C1AED51BC510D00C51AD0302676090ED4E29210080F8625CD5F493C97CEBA001019002810A085E8499D145A2D89E2BE3FB728DEA805809A2452760B0A36137DF68AB0A0FF761834F31100014E8290560AAFD709B01535FEC89F73146FD40240C50D04E40636D4EEC2A8244D8B8066AA460C1DA298B5C16038F565146F1403400D044A6A0804024EEC1AACA8F5019FCFD775F2E449DF48C9D0F912009FC1DFD34F3FCD6FDDBA95369643FAA5B9BF71FFFE3F918F337F52328FB90000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (133,1,'SAN_(24)',decode('89504E470D0A1A0A0000000D494844520000001800000014080600000097B5FD830000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000003FD4944415438CBAD954F6C554514C6BF3377E6DEFBEEEBA5B52D7F4A5B3091F24450504275439A18351137C6A80B4C74455CB965A5814477C68D1B638809E8421317C68434BAB10A2E8A11C116412C584AB58F86F27A5FDF7DAFF7CFCC1C172D4DFB28BE857EC9CD243767BEDFC9F93233C4CC68565F5F5F1F113D4F4487003CC3CC6D585F31337FC7CCDF4A29BF999A9AFAB3B9809A01875E7CE9DCDE5DFB07ABD51998C949D4BABBD056D88A3C29238863646D3E8CF49197CB6848173D1BDB1065049A9EC67C4767E5F4D75F75ADF613CDC4825F08005A55406B3B22E06E53D4B4DBF77DB7D9EF1E409AA54CC400963E41B464C8BCB4D2129001D032DC2E0305DD3B43D9FCE34E5479E797B18BEF59BBB839CB6C979DFE4BB8AA0286469EE540651ED2F3A1B5816924B8BDB0C0D22DDCD1AE5F4E6ECD9E6A09686F6B7F77D78ED29E348D909467D0F07C84E116B08EC00B0B309E80E38748E7E6D010029D6140B9E376E7E572771C761E07F0C1BF8EA8180464AD01814100945210422C8D860862794420822B25881802000901D7F5D0328338AE5F55AE6F95EB72602D0B21D871144BE1A028251CD763D7F35124028CE5A010B090920366B6D6FCDD12906B5D89E33A67B9A61444499A51AE73CA8D41A22DE25A83B431C848A09165548B1B648CA55C389C2C2E462D01C5A0F0A4EFBA0E0120B6D0790A580BB6068218AE041C4110D6C0110457094847C02508CFF777B70C5980442DAE224D23985A0D69B188EA4215AC6BF092148B8E454E55E4F53A1221104555583707C531545B3BB504CC57A34F94546FC7F52AE5DA1252ADB5B9ED189D0ACE73018772279DF79224B3DA9ACC5A2B53D3804E1264376FFCD0F2AA202201602B800E0016807976E7CE6D5D61F8C017E7CFFF7AB7EED503071E29140AE1A933677E04C08530ECF1BCC08BE666BFE755A6B4DE65B70C520070E2E0C17D16D06F9E3DFBDBF2015ED1B1A1A1E29999996317E62A2F5821061CA92095BA45427E4ACAFDECD6B5CB97D600BA7A77F43BA4DFD03A7BCD6A3339E8ABD157C2F0F32357AE4CACD7C4C0C080B76173C70D4959FBF58939C544D2910A8E547094AA648DFA47542A95C29A755E669D1D31DA3E658C26AB358CD1B0462308C4785CCF5FAF47D1C5FB4036EED8FDF0E94C371EAF4495A43C5D0B826250CBD2CC07EBF7A9B3A7FFC3422178CE02A51563AD218892BE5227F7756F5357C726DEEAEDED3939323292DCE75DC0634F0C0E0DECDEFEE51F13B32A5D6C4C126787AF8E8DFD4EDB1F1A389A5B1C773DCF18AD4596A5DED6FE0DC9A68D5D81837072FAFACDC3E3E3177EE2FB85B53637DA3338B87FFCDCB99FD7845CDABBF74163C40928F7E92DBD1DBABF7B4372F9D2D4D1DE4DDD2787878753FC07AD844C44F2D17D838758887D45C51F8F8E8ECEE27FD03FAEE1FF0243A365280000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (134,1,'SAN_(48)',decode('89504E470D0A1A0A0000000D4948445200000030000000280806000000B88779710000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000C3A4944415458C3CD59696C1DD5153EB3CFBC799BF77D4DC8E2D831751208069A004114840A8806B522528B2A103F68252AD1AA455555A91252CB8F5655A9F8832AA8549050D3AA15082832C52524211164051202761227DE62FBEDB34FBF33CF4E4D4AE297C4125CEB6AE6DD3BF7CE59BFF3DDB11086215D6E130441360C6333AE77E227F76BB18F50C9DA45EFC36D7800D7D7B1CF6B9665BD83DFF665CB52A902030303CD41107C635EE86DE8E9CB1478A9678AE86FB142F8FDDAC183073F5A3605BE79FF03B9F53D03F17C618A744DA342A140FECC0C79AE4393AE473D6BD7D2D4B44BF5750AE68A94CF6629592CD249DFA354AA8A326747A8B16B35B9AE4B857C9E62F91C8DE572946C6A26C52D52ACAA8E4449A622D6D0DC1C398E4359590E0BD94C726868287F29D9C44AB4D455554FC41314D335D2548544048BE1B99486F298A3742A49814714330C5264897CDBA2163CE443E0742A412ADEA22A32F9586363AE4992C88392068C914C9824CB3285814F0EE674F418BA249040E9B4BC946C72250A78BE17B2651DC7257658806E43F01002FA7E4079CCC98A48362CE7070149989BB66C522160B154A24010C8F33C58598AC6CEC1834A22118D5981438A1A90288AA4629DA3EBE4607F4952F0A2F892B255E401C3D0051D1BCBB02E77F68002610D16561261791DD6F54982109CC9015B1E378E6D9381752285918081EF23EC5C4A4221074AB0C0AAC21E85B730C7212659162908BD30F4A9AA822CABC803BE1F467159F64018BDCC87401EBB0222F31C37070278980B319787728AA2461E62E1D9DA000146302A600F356646DEF421AC849B807FB0A7104E01F6E2B55E05B255E40109265754099BCA9130D1421650A0C8E2325B11CFB025F977082574F604E29AC75D8F3D2545C2B301540E4BC4B9209445E0715ECB1A89E802946523299A162E0B0A5D33F0F53A5993CCC02E25C829DE1478EE16BC6C0BA61A2BC5EB25DE730E5A0C9320BD2D6AC67FA458628A073FDAFDD668B8C4C28A42A8B339FDD7B6E6CE8DA55256535545E090E178B511E325C46C5B4B2B12D925D394A3718E73DBB171EF21C6110A5696E2E95AE25AC7F3E5EE908870D1089636CC1A45D5EEC5F8BD8EEB84AE038076BD3969FBF6368ECCAB0EA1AA44EA86F6E62EBDBBBD4558B3B29B5A1BEBA9D777693D12AD369DA46BBA3B009569EA5BBB9A3A5B9B29815DEF40E22A42482BBADAA94AF6A9ABBD8DD28918296248B741E870EC1435D4545377732D35D6D75155328E39A25585BCD0919D550D55AAAF73DDD8B224B1E53841C9CA49F97C964AB0BA05689C4E2681320ED9258B32284A3153A0B3E31391E505334EBB44896288E399995972049D6666E7A092409A6ED02EC4BBD6D919C1EE6411706B8AA46940244DA7D3353564C3ABB2006D9696BF320F24CC98183753944A26A8B6BA9ACC588C3A5088BA51510DBC380D650AF9801A1BEAF12CD0A590A7C162818AB8D65457911294A2B54861285FA44108E88C8EA230EA549B8A21F462113870216B3D778E9A50E543143D5A2E18456C06969D8707F2E400216C587E168508042C2A5C5CC8926989A6F0721B054C4E246937C48DC3D2D93C6887625226938D3C60003EDF01B41AED1D11ACCE803E288112D504F6CE583A1DEDCF05AF6AB96054D73551D7E2B09419599B694113945981649451C8928938E5320155E3E53A3CE2E6B2742320348F6B64793B4F495C992EB0576EC29AD2C951C0AF4CE9B811153B8650F64E6326434DD90C39304E252EA808466FBDF3EEBFB437B75C572816C2A8D8B84E0C5E318016A6E5584A5D4D2DD38DA8A8317E73C50DC220AACE02488D887B453322213DAF3CCFCF09081B5476D78C994541164B982E614DC0F50397C2787DCDC67DCF3EEB5EB5021B367FFD3E490AB70354D6A32EAD5E1C7A5171C21F2DDA265CFC23AA6CE5CBFC82F3C3345FBC168D716DFF0CBF0FF982B467EFDB43BF867CC1552BB0FDDB0FBA5F5BBF59CEE5CE1073A20CDC2C8E8F93042B8E022DAEBDB69F8E1DCB5077B7495924F739CCAD457CBF0BB46AEFE8A499912354DBB58E3887E6409757218FDE1B1BA3A675BD94945C0AB464940FBC368E798FD1C9885156A0AAA19D3BE7AE1E466D3B9C3E370EA4998DA801172F66A2FCD22242E22C04B6EC228D4FE4A9542C51097327202427ED2C042A78A01140160E1D36D718E624E412F605289450C898040A11206441395C592953964B1BFF3260346E8AD5550D11DC712233838C31AB84A598C330AC06BE8A644E30738D946B9E4F4A13BF05271F3D13113E085DCF73939324C31826732C546466B55CC175782D895A1245463ABD3C308AB21E4C4F8F4B93531391C0CC3A0358919967893D70769C7C54E5B131C02C28828D483E1C9135912626A7090499A601B1CC4C99751E8712425575747A2B7A38BC80B34938917162CF4219B81690BA4C308A24156071D175FD28E198557228C8E0F3098412C72BB3D4CCAC052C57CA7008F86C869299CC5C04B34E6E2E4A5ADB2A015A73D48035B9B367CA8C532CE7A003AB738E280839193996433E1C3B7C3821B015AED4032C3C978189C9896CE887694E32E6E92E9F0D301580AC3922E216CAC83204C67C74669055FA18E1A3801AE430E78A3ACEBBA5086244C4F73154693195A202C6EC1087184D8C720BB84A33084F2E648AE386674E9C68C2FB272E45E89644A1790BD4A1F7A177CC2B1D94C1F1FC75A1455977634FCFCDF09A3174E0C0AB0BCFE0DC2BDFDCDF7F0742C81FFEE083370100E17C0408F43F945DB872153B897E1C7D3AE4E3D9D5C0289490E695684057BFE085D126FCD0F7B76E7D286B59A32FEEDEFDC6C2816E9192E16DFDFD2B7ADADBEF3F3432F2D25B870E7DB648F170D17D8105E7A85BEA3C50F17721FE98355FDB8D0B048F36E84A24D44706079F3C99C9FCFD8FBB77EFBFC033E16225AA0D437A7CDBB6871037E1EFDE78E3B9E96271E1F418C652A92E4956EF9344699528492F55C78D7F1C3F7EDCBE6A05167942BD20F9C3C7FAFAAA363635FD6A2C9F7FFAC95DBB4E5C44F0C56351FBFD3DF7AC4E2ACA23EF9C3EFDF20B478F0E8882F8A028CA1B996288A0E35C0B703F274AE2CBB87961EAD467C3177A44B8DC4F8BF3897DBEED1C1CEC1654F5A71949FAC977DF7C7326BCCC0D93A9AA47155178CA0AC27459E0F3822F56228264EC7C5AD5D4E743497961ECE3F297BB8A14483776740BA1B7230C82BB80D16F7B21FD393F3371F0D50D1B360B92F49D7076F6C7775EC2CD970288CE152B77D6748A77674E160B93D3563CB2D082E0525909969C3F8A61A0FC6D09B45B9695E152AEF0A38BC2686BEBDA1A57B41E40F1D92109C160B8C0B604BA1EECF289C6EABA931B34F9A35D19FBE1D9E2CC650BCF6DD3A64D2DA0257A637A9DB072E56CE2C323C7DC73A7C807BCEA147DE1283B9B3F3BB2525C0865C0B82884478AB9CCAAC077377ECE035D5D5DBA25687763700728ED5D803A85C9202C1FF11EBEF2EFF3F73C1E0218836008B4F967C54C66CF157841E8EBEBFB56757DCD1FAE59DF5337F1C9613A3835590A276D2A58BEB1389C1445C933C1725CDBF4C104E4507838C2E0D635BD5B20C90EDFF7B67BB69DF43CE63862A4392B7811C1A32B0E2567DB3B04E9D34FDCDFE6E7669EA22B6C838383C65CBEF0CBD53DAB7E60C4E2FA54F178983B9BCF8D8C160C54FFD0308C92EB07290E25210826C0071E1D3971EC6F42AAA1799BAA6A4F6A86B9C92E15CDC07722BE02D908501691AC2F145C122DA551F1BB75C55CB3652BBDFED2BF865B9B9A1EDDB367CF87E195FCD361BEC11B6D5A3CFDDCFA81B65B3D43123F7877D4B18A2E98BB2705BE6741F0674E1C3DF8C4C239419682500631DBEA94F2194333A61D57AC8DBEA831E799173A3A93CCD74B49107D3399C8B6F485E91ABD53686FE8A4C3EF9F9E8D9BE68BB0D2A757233CB743870E9DC2E5F68181EBB6D5B4B6FD49558C065BF40495847FAB42F0E0810307C63E1782CD5D5DB7BB4EF00A924466A1354529F0890A0CD45C6C71EE35693363D7F9E6F5B52D72AA6D1D1D3D78C49A1A9F7A3E158FFD62EFDEBDE3B4CCED965B6E916773D60FBDD03F7678FFDE7F5EB490B5AD58DB037C791EA7D40D4C6B5911459232A552DEF05C4FC541BD505F9710EA7AE558CA5D4D9A2606EFED3DB0DB1085C7F6EDDBF73E7D89ED3C0A31FAAE58DBBBC30F84DF84A254CF4AC892EC03B2E6B49541CD3AAD955A5626E8F5573E1D099CD2CF6BAB922F0E0D0D79F425B7FF2B64FDFDFDA6158A4FFB82F23D28A1235933EBFB075273D3E3853327479E4999FA53C3C3C3B3F4156917ADC41B36DCB0C60AE93940D14A21F0F7C5A4E071C4F9C7F4156B97A412BDBDBDAAAEEB8DFBF7EF3F83E73CFA0AB6FF029903B825F07487600000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (135,1,'SAN_(64)',decode('89504E470D0A1A0A0000000D4948445200000040000000350806000000F186EDAC0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000012D84944415468DED55B09701C65767E7D4DCF7DEB962C214B42BEF109C1B7618D1DC22E49804D056A49B62A152AA922A91C5B95AA0476B3452515725416E7D86C2A24EC926209E12A1230C5AE59035E6CC0966D3076642363CB3A6724CD3DD3D347BEF7CF8C2CCB5E838C442D4DFD9E99EED77FFFEFFDEF7DEF7BAF85E4380ECDD7214952C0E572EDC09CBBF1731746FBCCEBD7F2ACEA3D8318AFF2B02CEB359C4BCEDB9A3FAB013A3B3B5742F1DD9867173E37E294F62914FA2C878DE3B02CCBAF62AE5763B1D88177DF7DB7FCB91960E5E6CD1D6E93EE521519CA3AAC70DD95E4B0405EE9558D2055BC861CBADA1AA42B7CA399F714F0ED90ED386F5B24BFFEEE5BFB5F5950036CDCBE7372E7B68D61C3F0E0578ACAE532158B452A140AA4A5D3E4D7341A2895C8C6B4DBB66EA1BEBEF3D4D0A0926118D372E15C8EB2304E5A51C8EBF393994952597153281412722C53C4580C231E1B19215734465D5D8BE9E30F8F50B4B58B54551573F1B0B3595A8467BE3D3E4E0D4DCDF491598E1C79EEB9A94FAB8F3C5797C1C365050B1F1E4E505D5D1D058341F2783C84D8A74558581316CD0AA8AA22BC209198A268342AE4DC6EB758FC125D273F142DC150FC3B160991699AE4F57AC56FF68A1294DB188F939DC910E29E3428E9D55DE239B57978F3FCB86FB9CF47939393A4E079E1850E815FD8B133B966596FD4E30E53BE30492ECD4546D920139E50C662780759999251A6DE9E6E4AA50D2CDA164A950D9661594BC859369C5691C9CC6749F5F828140C236C2C310FCB9A6619F340CEB229168D5026394A81683D79FD7EE179E299D5E7F277495668ACE88AEC7BEEF185F380A0CFAF36D6D7513251A0EBBBBBA82E1EA550C00F43A8D453C8D33A046A3E9B213776ABA9B1812E9C4FD1A2D616EC72987C5E372930C4CD304263364D46B1C0F3D1A2861895E10D5E8F8EE0B6A98479261363748FDF47F933A7C92A9728168B92572EC3981A69309A05A3E7F01C75748476020F4E7E788214050F9FA30BA8D7009B167B4D5B5B1DC26058EC00BB723E9FA7F370554606765796E1CFA6A6308D233E59A686011F625739FED9652D60C17072028A792803776719F60E09D7DE4A24C880CBCB9061AF4A668AD410C56E438EE7E37369C81DC56F0E4306DD082DB4011C49B8A56DB9C40379A1F06F625C30F1BD8873AC381F59809D6DCBC2188C072CC3B1CB8BB72499D4AA1C24A80C37E7DF1AEEE7791D8C0C8CAB23BE558419E3800E5CB1F1C91860036539342C18A180EFFE4080345523638EEACC1D0415597103C48686C6A9A7A787DA5A5BA91E60C808BE0C0A2EC3B51C14D7A0A88EDD1B1B9B14722D2D0883588C0258E826805DBD650AA4D7103A4DF57118C9A668248230A900611946BEAFA383247881097777EB6E0A785CE239E170183B8E7042284461A42F21BC46E08D15340B2F2C086EBBED977EBA7249F77A97EE470C4E4001BD02440C849625617725CBB424133BB86C492FB2401A406762B16A45AE0A92351074B9DC64000475B7973C3EAFD8E18B20C8605A121EC6469E181BB103E11852A7D7A9006A45863F3974BCFE80959D9C88BCF8E28BF9CF8509AE58B162255C9329EFEE4FC302E79121B2F01166823CE0316FBDFFFEFBC6B53C77CE0658BB69FB5FB4D4C77E832457C428E775B11A8E59CC3373982593FC21BF8019DB362EBB2EFEB32BEC4EB14D98CE2570422CC7A919A4226B21C6DD6E1D73164881C7B15CE51A89D0611140D31470E49C5DC86ED8B76F9FB96020E873BB7F67C39A1B822323656A6CD4280B26C61980E33E3235451100D441A0B23B14A4AD5B36D3BE7D1FC0531A2E91EB06088E20FE878019F1781DA9E52C8DA68B545F5F3F2D93C51CB7C3ED9F3F7E9C5C4D4DB4B467319D3FF11E051A5B8501588E879AC9D1865048F98F53A7623DD7F7C692BACA565F381E20C992C320150E57C808139CDA2843A14295DFF360B40E857C02C16BE778F12C63CAD547CB12650B45C1F078B767CA4D72B6C19CB52AA060582293CC7CA603B9946956CECB735667EE1E2049B295989880FBFA005453F05C0DE0670B163605374E60D1BADB03765846A618C60D16A5B19B32AE433D00A24AE7F15946CA7221AD158B2518D2241BBFF93AA73CB7C71172C77259F23534908C0C90E3DDC6671E6017406A74E9BA308C01B993B8D6DCDC5235407861D320189E1A04151D1F4BD356143BCB972DA3AEC59D82F56D85316E0B87A890CF11A74A3F985C623C4B9B366EA425BDD75347FB22A0799CEE03ADED66CA0B63794160DA9BA1243CE1BA8E768A83F1F9BC1EC47B911E5DB386A4A121C1FA027866C8AD5003C2A2B9B9992248853AB34DB0C9DFC5BCE7CE7D4C2A1B20BCC020B8F38E5F4EF6B4B74649C26EE4260479A9F172CED726A737B9E2B63DDD8B697824054E600A979EE6EF4C8410160E94E66A309F4E92E2F28A5CCFA9D1844718486D0AE6CAC1BD3584471DB022313248DE60048AEBD3FC9F656DA44A2660A170944A2E35F2ECE30B580B80BEAA2D2DCDD8917AEAC08E45414202D869DE8D3A2C6A29888C6930AF7763473BF0003F3537355218A0C8E798F87443F106383CE77C3FDC39821A81A33C809A82C9137B830923ADC6350B349A15E55A40B38AF02ABFA0BD2A629E19A38ABAE1066CC2D8E8285D03045C0308560189917A2618F1A163056A35CDD59A178CD4BCFBD3A0856B6E5EA9695631058BA82AC35EC143901B281D02D81A3044257592A0BFB5464B4D5EC2F055FB03626DE1056682EBB76EFF76632C76B7D7EB93F2F92C562639B6E3C896657A4DD3F2D996E9C742357651C60A45AB009D40F2691E40D3395E58C0E17ADF55A1B2B3B98253E10BEC1950D8D4DD7A1E5E9885D172B6038415725C3BF0DD52C6EB92373DFDF4D3C68219609A10AD5DBB12BBB18B7B81F8B969360BBCD679E7701F0B1E652608CF7A1595E49BFDFDFDA5056782376FBBF5A7CB975C7FA3E60A499C065D2E5DF0FA8BA392D64A00C4E54B97A218CA91DF2B9A8402F5D9B5B9816288EF66A5D2CB4D0153FD148984856B1B5C07F05CD5521B1E468D4887C9E17314883709AC10F31895DA8287A81914D51873ACC8BB73A805AEA125A62D6D6D6A90329325BA69FD3AEAEEEC20FCA6BA68986E822BDE0ACA6A19450AA2B0696EA8A7D44489D6AC5E455DD7B5530BE4A2E1207D0540783D8C80C8A7387EF776B6A1D495310FC012CAB911364621477FD4D642F2E039522507E92F460D019DEA63118A737305CFE1FB639914DD17F0D1B9B303E4F7B85D0145712D2811B26CDBCA6473D4D414A0237D7DA20EC883D6F24E8D02F018FC18D438EE0B6078D1A84E7D478F0AC4AF35455E817C01E409502E884D623441B2E6A5C1C141E119A25F805DFF97D3A7A9100C920BF1CDCD92E1A91CC5BD530280B9B1C2B2193CEFF9B1713C2726C073C1B300D29DC435BBA655525605A42A0D0C090BF0334A435959783DD2992989DE400DB979B83174AADC2703045D223BD8B5A67F65608E30D35B41B7A9D24C714C81F4DC08A93544F00FC57597E82572BB6CAE5960EE06D03499153B7BF6BCE8E23287E7DA80D3530CC608C008BC43968865838687C7444D207277B5E3DBCACAC05B7817399571AF903DA3C6F3F91C5F5B160890914A89542872BE2C09ECE346081B859BA63A9ED189792740CFD9380BDE12334CDB1C1D4F407989FAFB4F0B9666561B1367F19D81CDEDF10A37BE70610804C64D174067392CCA86294ADBC3924C26A748C8B26B277369D23C60840819CE661A80351889D24B19D40220537C2E914852D1D14886E1B8FDC5F379BC3E3221FB6318A777C952513F2C68086077644D9154375C6D682881B88BC0BD1591BB198963D8AD7670F3D4D4A470696687838309C1F6B81BECA0EE2FE17A178A1C2F762C9B498BDD8C04BC289733B86E5111CC2E9D9A02ED1DA68DD8F1D49933A2CBCC73C9665E844D09DEC1E5F2E444928CA10BB40AF7BC7FFC18D650A2FE1327FC58A732EF1E2055E89EAB842285772D18D4A7BBC2A275851DCF61B8E54A13B4F67E201074D1C8C848B56D5616E73FE4B7491CE7DC4405584EA42700826E9A9A9A9A4EA726C2E0106870917B8BDCF884D289549EA29EC234008AB748B8D687FB387C98750E9D3DDB8575A6B1DCAC530396F9E0015503E8D1FAA69B1CCBDE86C2A7C1766C6FB558E749B8BF6357E92DBCD6B12492A42BBDE76BADAFEBF5B9DDF1FEC1C13780152680901BC352533CD61D0E06169F1B197D2793CBA748944B58A25421899273C98BC26AEF888764637926CAE1647A32F102CEF5335B773E857273224255D7E2D67F13460B46CD00F20C0DA5CBDE6356060B49BF72F3CD5F2B5B56EE858307FF8BB36AF55AEDD359D4D010DAB17AF503B96271E085FDFB9F362EBE619567CD2D5707DFC7F92F87318A91A87EB7E6DD00333C818DD0C005DCAC3072AEF029BEC7FD7EFD37376F7E2891C9EC7FFCCD375F992577D9F7FBB76DDB899AE3CEBE3367FE6E6F5F5FFFACEB34C3F3F8E0D7E3931819E833A7E6E835D5020C86DC1EC408312ECC5ACC6CBE4E37B7B747EE58B6ECAF3E4A26FFF17B070FBE7715E52F39B7A5AB2B72DBCA950F956CFBEC775E7F7D0F30C29C69D4DADF0B20C5EA2E8F6F97A428B664FA9E999838935AF062A86A047775C83F4BA9DF5FB7AEBB371E7FE44432F98DEFBCF3CEC027EDFC150CE93CFAE52FDFEED3F5AF8FA4D3DFFAF3BD7B8F5665745F30B84B96B57B10FBBB31745E92244B457CBE84CF279391E0FF3A9FD02EFF4CEF05AA4650AE904EC5A4FF76CB2D5B3CB2FCE09974FAB7FEF4E0C1E427287FD563CF9D77460292F4E81B4343DA531F9C326D99EE04F90A5794AEF61BC4A77CB1FF20CB9392AC3C8354FB83E181FE37AE8409D27CFC8D9024CD467BA2E7366FBE1F0BD9524A241EB8FB1A5F5A5CD6920F85FF01B4F91EC376E2D5DD9E569A3FE5DAB969A3C8D5260CBF7754CF2344FE53B6A527CF9FF9F0F867324024725DD8514B773B92B551B29C975241DF4BCEC040B176FDE50D1BBEC59FBB0F1D7A78DEFE980947A4AEE140E75A69C3F9A3CA54B1508CD8A2497DC98ED3251EE1F0CB53ABD28D9625F17A4ED175AE688FE19EEF7F3C49FFF4A90DD0DDDDAD4FE6CAB783ADDD871CFF8BB0AACE5D98CA9B19270D5AF3ACD7917EF88396C6AF62F27DB71E3DFAC47C2ABF76EDDA070C87FE72FDD68DC1A1BED7E8706ECAD446B452269BF70985A79597AA9E50FD1B2510255BA269C3B87437CFD757CC67BD209E5FBDAA01F8C18D1D5D5B519CDC076AF3AB50363C5DFD39D3CA577F57BEAB8E9D2CDBF613A0414FE67253EFCD971156AD5AE5332CEB0F03E1F81F6CD8B024949818A671E514F5EF77F276A9A48285BA6A8ACFC604A9DA6283F220A06606ACB58EAB47DB74565FD1006D9DBD2B4DC9BE1754E2D771BDF55245AB8ADB330C30FBF745B993B0FE9F95329967E6D113DAD2B9E25F0742BE3B366FDFE27EBFEF30E562839438E24AA553598F655BAE9A11E4696C902C97AEA54B861942992D73A90DEF301559BE688096AE156DB20485C9BE17022BB8B0B0AC32478FE8FD4F372AAFB8FB971B4191A5B391A056484E958F655313BF46F378B02156AF5EBDC9246D4F736BEBF2459D8D7271F438BD991AB7F541577A62321324110932CA70EF9423295ECB325D42718BDF5138876D4BBA77F8ECFF9D64F4561B3B7BBEA769FAFD700BC94065C57F75C1B5B56D8360D99260E4B5776F57DB716EDFC2AA463CE2294EC40BC11DED9DF4A31F0FFC64FDEA1B6EDFBB776F8EE6F958B76E9D86B0F8BAE6097D73DDFADE46BF3F4363A7CFD1817CD29407F4B4A46ABA69DBBE8AE216C98E332E4BF68303A74EFCB0961225EAE870470A4601C8F836D8540B2CD4C67FBCC431226A199B2A8D0C4512EDE99FE5F6C0083B16F5A5B38A155CB1C92B6B89E5A2467FEAFBFF3ED4D6DCF058B158FCEEB163C72669018E1B6FBC315630EC6F871BE2F7AF5BBDC17B0EA5F489E31FF0EBF230EB01E02E298EFDAFA73FE8FB3DACD5BAC49B3A608074D12C8854222BA6DBA3A7507E858D5249E1D4415CA87D82DB7B3D9E34B955F7E25B0C977DAA8D76EE5A46AFFC4FBF33327CE154C4EF7D2497CBBD70F2E4C90C2DE0C16101A05C466EFF9E6034BE31399EC8966D2BA8D8D601CDA2AF1D3B7668E08AF7F5AC5AD59C1C9B18847B4BDC65E1B7B8AAA218604F79A36C85AF06742E972BAF8775A76B45D137F151236DDFB18D8E1E3946E9A9F1895CBAB047D7D4EF1E3E7C78883EC783D9E9AA35EBEFB415E541B8F163C7DF3BF4ECD5AA420182ED9D3D5F42EAFA677878271B805F75B34768AA92B3C41F2B967D33159715B9EC6DF2166F68B7021F0D85E98E3BB6D39183A7019A79E36CFFB9E77D6EED91603078622E7FA9B1101E31A77298898EA5687F6C98CE376081001B40562AC650254A1572594FD932557F9B277B5383EE3F59D4E5DD5B77D091431F913F4876DF3B270EFB5DCA37A1F88FA07891BE20C7653C60CD9A354DC0843DA6237D85E341962B618190B060940275E7FDB7B7DD44A3A9098AC7257AEDD5B3E755BBFCB71E5D7FE2C0810313F4053BAE4884B8F3B364C5EACD48868F21792C1761A1C89CE20A2B57AEF2F09FC6EE7FE3272917994F3946E9D1BBEEBA6BE0E1871FB6E90B785C950A2F5FBEDC2F69DEDF3624F94F485663480A45B8B852CC4CED97CB8587C00DDEF92CFFB3C2CFBD01668445B329EB7F03C95E95CA7F5FC866FF7BA1D3DACF9501F8D8BE7DBBEAF17894975F7ED99C4D26BEC8C7FF03F90C20BD4B7E3AEA0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (136,1,'SAN_(96)',decode('89504E470D0A1A0A0000000D4948445200000060000000500806000000E6E270950000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000023294944415478DAED7D097854D795E679EFD5ABBD4AA5AD4ABB4A68032410981D61402C066FB44DDC8E1D3B4ABAD389E3763AFEA633999E6F265F27EE746632CEF7F524EE1EF7641C3B910D5EF06E6C6C76115661904142C8EC0209B4A1AD4AB5BF65CEB955AF28156231C6509389F8AEDFABAA77DEBDF79C7BFEB3DCF39E395555E176FD711C578D87BB636D0136F116752D61DB8B6D23B64DD80E221F94DBC2835B2980CCCC4C3B327D19B6BBB1DF95F855C1CDBAF7979CC700B62D31616C1A1818E8FA9311406565650DAD709EE789E9F3F15C779399F755DCEB282E928DB22C6F0A85423B3A3B3B03FFCF08A0AEAECE81835E4EAB1C3FD22ACFBDC5CCBBD97D85B0EDC4EB195CEDDBB7AF252505307DFED2EFBB32ACCFD96D36D16677C2A8B70F54E0D8441545612DF13CF1B3D7E7877C5736184D66A43141303008BC20C4AF8331742A5E83B4785410B6C361091C6936F00FF7836849071DD211AD766F82F6CBC610A3B3D9AC20CB12E89530A8062B180CFAE835D4479C464DBE971296158F5F8994EEF9E493C1D411C082A50D774C2CA99F525D8D83754073F316703A9D10894470B2E1F8915AB6DF0F4EB3199A0606C060B7434456A06C4209CC9F3F1F5E7EB911CACB0D6CD28934741E191D8529562B0CE0F1D0C808E4E4E40059CE9977DC015BDE590B8A351B0A0B0B196D729F766C93B3B260CFA95370117FCFCDCB837C6C2693097A8EEC0535D30D56BC77729F742CC53E2C1C07DBFAFBD9F599AE3CB81894DC7B36BC7B3665043073E15D0D351545F5132B2BA1AD6D0844B11F56AE5C093E9FEFB2B6149967C1C9FE8F0307C0E47241201481D2926298306102BCFEFA7EF8D6B7EE0487C371199D0799F79BDA5A787ECF1E78F5EC5970BBDD108E4830E38EE970F1E83E68EEF2C0FDF7DF0F7E14B046A39D4FC3E38F57AD82479F7B0E8E21330B0A0A51802E282A2A820BCDDB2194EE864993265D46EBF57AE1EF5070838100FC637333A4A7A743BAD3057DBE486A0960CE927B1AAA27E4D74F9F5683CCCB87C6C68FC08EAB7BCC0A8E35034EC66E34C2595CC9221E490326B88B61F9F2E5F0E1874D08051E764F6D054A92143D62CB40280862EB090621232303248488AA4913E193F7D6416E4925582C16726FC7F4474D0885204314A10B853F8AF459D9D94C03E8AFE7642BD8F34A41AFD78FD158ADD9B089C8A7532814BAC6995700435ECEBD6DC3ABA923803B57AE6AC8B418EA5DCE6CB0599DD0DB7F16D5D50802CF23CECAD894D831DA94D8519264F0A0200AF3F3C1897660705002591A023342148D8D5DAFC897DD8384A261B92B3B0BFACE9D0053460E32C800668409EDDE84DD44CFAE5794382DB5F4B43414BE047C00056E76801D3F93F064FC8D8D11AF97D879F41E4AEC3B5E6F84E108B8B7BD93420258B6EA2F1BDC2E47FDA489132118B4C2B163BB191ED304D02B628D56161D2720C33391499B7A7BC18050835302775101CC9831035E7B6D374C9B9601E8B6E27D82713AD68687A12E33134E5EBC08BBB0117C900D985E53037B3F7E1BBC820DED4739135C729F39D8E6E0F5EF218C74274090CD6683BEB6BD20A517431A0A401BAFD6278D61161A751DDEF39DF3E7D9F57945C5E00D28EE0DA9248095AB1F6D28C8B4D6575654C0A9533E5C35E7C7B501A3C8FC45687C4D0815FFF3F06130A3210DE34A7517154205D2BEF6DA3E78FCF1DA2BDA805FA0C1FD3DDA8ED73B3B990D5070FCD35000DD2DBBA0B5C7CF6C4022F66BC7A9D8EF532B56C0775F7881D9804214860B9D843C84A1DE963F4238BD84D980441A6DBCDF43281D4641FC534B0B059390575004C37E1D0AE0A5D411C0F2071E6E28CAB2D74F9D3205999707BB766D0223E23BA9B486A9B4BAE8C8E351C455E5C5EFA977C2F192E22258B87021DA8E16BCA697612DC18086C30C36F0A8A7D58D47BF24B1D528213C549497C1F64F3E8082D2496C2CD46F221D1D15EC8BF21C1E646418EFEB40639A9B9BCB60A5BFE318585D45AC4F829844FC277A0E6979A2C5CF349F1CD49E6149706F78358504B0F4BE871A9C7663BDDB5D84C6371FCE9C694541A4A141352431431AE3EAD17741F4820AF273A0ACAC0CCE74781083FB200B3D0FCD154DA4A3160C0618BE038B083870E1B5A78F1C0447C1043021F3C95349647EB445719F20853115218E8C7804E146F6F482CE91C3FAD4E9740974D2A5F3D87815B4058ECC6CF00444F73BAF3E9F3A02A8BBFB8186B2422783A08101017A7A5A18A468384A4D3BAF1A1A02130AE6830B17C08A30A0723C14E4E54235C610EBD635C19D7716311B4058ACD901D6FAFAE001745B9B916E0BDA008220E4244C9D520D2D3B3E829E90083508471A8E6BFDD2B91B6165416929AC6D6A02E25A5171318B53D211EAFADBF640D851CC0440CC4EA6AD8B19E6B5D82FD98992B272F0A87AF73B2FA5900016A1175459945B5F51510E172EA067E339818CBC93E16972ABC189104CBC72E60CD81083691593000883C906AC5E3D9DB993C974BE73E7E06F10BBB79C3C09EFA1012F2929612B9982BF53FBB7C1A96189B9B2746D005D5D8D8ECE2BD0FD5C3D6B16FCE2830FE014D2900177A130B3D11DED6BDD0552E604168724D268B66035BAAF7E14C6BF9E3ECDB4A6B4BC12428ACEBD36950450BBECDE17CB0A9C7F4D8198D359004D4D7F644C1410EB133195B4209A8B0136490AEF23B20A450579307BF66C3874E8144EBC1769ADCCCD1C83C7D81084E31A61409793D20EF928BCFDBB1A21CF5DC634876C43721CA0B995C160887D365BCC2C920EE1E791DE2EB03BF3C1886E334F3144027469E3D5BC29FA3DBFC80DA39CA1F8CD17FEF55CCA08A0A6B6D6198AF0775CE9772512CE9482BE198A24CD541599AEB3DCAAC4DC75DE2B8CC23CC209BA66416F3C289A2C1D57BB38D7A2DBB27DFB762965D3D1757575BA818181DA58469432A335B731BD7C237D75C7F60736A277B4A5B9B9B93FE5D3D1C874DA6059194B452FC37BDB5330BD7C23F752714ECD24103C6EF27ABDBB0F1C38104929014CABAD7B7E5271DE936418D31D85F0F9F1039081EEA0C964BE94D3A1630C5B43A120C35F09B179C8E38549E5A550513911DADBFB9101FDCC40266644B57C107DF6FB7C0CD3D1764320244149513EB41FDC03E905A5D16C656656DC7D4CCCEB301C273794A537146603E4087E37701EC48C7CF48232414483ABB9BD89B45A74CC5C58BD11469448C1BE8F3E3A9F3202B8E3CEE50DD32B8B593614BD457445DB61FAF4E9CCD0923B97789C822EA40127FA565717D890091407944E886623DF7AEB007A32E52C284AA6F5A3F7F408064F7B916E434F0FF35A22180F5036F4C4BE2D70C6A3B094B6E6426A74D42678BD50377122FC6EE74E38437BA1B15404B99E17D10D0DA615E177056368E89CDA0A34EC1407BC84FD528C918671407F20C5D2D1B316AF6C985A56503F1999D88F68D9D7D70673E6CC894F4273EDA8D5A0848C1807BC76F62C585100948E2E43014C9D3A15D6ACD905F7DE5BC55672329DFFFC79A8CFCF871D1D1DF061CC0DA580EC0E14C0D15D9F40979F87458B16C56998D034371405B002EFFF9B4D9BA0833C2764762EF64DA9859E965DA0669732D754EB4B6BE486DE8FC1590035E0057483294592E9CA855E9F800248A15CD0FC65F7361466D9EBCBCACBC0E52C82E6CFF682CD6A6591703814666A1F85A0702CC32833B5A600C717084359A91B6A9041EDED9DE0F3F7E144D3190449783DAD725A81D14CA8844C0D202C8441442DA1FB16E41740EBC126701514830E352B8DD2E0B148381C8E46B1E45AAACC0D0D3248215AD2001A4360A80FAC59B92C034B9170723A5A4B89D0B5E43F5B1D99E0F10BA9958E5E78CF830DC559B6FA8AF272B0DB8BA0AD6D374EC88213152FF3C9B5D4B036395F200815A513A07ACA14686EBE808CEA66698CC45C9086E189748C59281CCA231DDEBD0D1C85652C1541FB10C9745A0A9A9848DFE90D46C8CBCD8946E7BD67804FCF67F0C2F3C215692352B4DFB48C2C180CA7583A7AC5038F341466DB582AA2B3338CAA7B1A162F5E3C6E243CADBB9B45C27FC088D65158C86C407151015550C09B6F7E0A0F3E389D6D0F26D379117A9E44DCFFE4F871784FB301C8104A479F3DD808C706C270D75D775D16CD52AB181E86FBD126FDEAE38FE114425001F64BD95032F61409871CC52C959D087B74A46CE82A9C5F0005F1BFB07FB2192ED4388F5F4CAD6CE88A071E460138EAAB264F02AFD700A74E35415555553CAF4213D2CE2917644601BC87468D7241128EC18D0C99356B16FCE10F8D88E3C52C824EA60DA371A15CD041B4055B0706A0B8B89845D435355361FFE6F760583533C31F4DD85DA2D372417722835FDEBD1B3AD1A8920072F05E84E9170EEF04DE55CEEC41322D1D97E25868E5BFD2D9C9AE2F282E816139D5B2A1AB1E6A701884FAACAC0C70A465C1D973A7980D107422C36D86FB526C378AED88455D3DCA2E4A0A07D9190EC84703DBD7E7815078046CB66808A1D90B893293B433265DCA50526A984718B2633FE73B4E435A9693098EB447DBF98A1E23F19DB42804227C893A06394184BF88DF0B466B1A9863A993445AAD3F89C68B471C30643A736048E2532D1DBDBAC1EDCAA8AFAA9A8C8637070E1DDACE60263117144FEDA26741FB012136020E220A40517E2EF39A1A1B4FE0571798414CB6016C2F81EC004102FE46584F7B03156565B06FF307905650CEEC02E5A092FB0C51DE896C07E51C62B439E8D292611EED6C07D551C03CAFF1F69315D408DA3708E36FF497975F08A311536AA5A317DDF340436581ABBE1CBDA01327BC080DDD6C474CC351ED486EDD428C036847EC37ADAD604408A22DC982BCE87EC0BA759F8ED9114BA4F59E3E0DFF8C10F3878307D98E184190960DED69DD0D2DDD3E58B56AD5B8551153D00D7D0AEDC3F75E7C31BE2346E968DA98EF39BC036D809B41E6785511DFB5D96004E1E8E7385ED29A92D2721851C5D44A472F58717FC364771EDA80C9E83958E1F0E1ED8C419AFB96B83F5B86AB91F68437A00DB0A051E370D516E06AACADAD85DFFD6E33FAF5996C2526D3454646601932ED38C611B4271C15808002A882EDEFBF0E1153069496968ED913D6FAA73DE1B96E37BC7BE000DB13265A32C0A42D9D87768298531ECFA26AFD696D0EBAB6B427FC160A9DF6032A264E8620DA80944A47CF5ABCE2A725B9593F752243B3B373D0133AC320086255115A758172A93282D370D91F0C415E4E36B872F320E497C0E31960A961AA4AD32A2212E8E2151251FB0190E1B043EF058C52B35C687304D08BFA848A8658750362B89258E980D376D86DD114B71C0183D9AA1A7051B0CCED55AA38683C268B4DF5E0903F7CE3F7BD299B0D4DFCC388D51DCB88526674E9B552D1B73A439A703F4A2FEFA3841B327B635757D781AFBA6CFD2B1100FAD30654D5450905BA136F757AF966F483F718C4396CC1E32634EE9BF6EFDFDF99B2029833A7AE5AE1A55FF13C3751E0F8021CBEEEBA27CA45B7C8384A6FB276953171633FD20E18ED9C45A9B84B9770970854551D4B16BB804BA052AFD117BB56854105D4732088FB46B21C4F1F59B72E9C42E9E8250D332695D6D306B9D1980B070E6CBEA25BA7A23135A2E11D463A81EDB786A1BCB404E6CD9B075BB71E43D7351A2913E68E4945A33B48658D0ABAB083F81DEDCFD25E6D351AFEDD9FBC8B5175057343C985D5E8E27DA2476342FC1FA1D48756969293C304E8ED38024A7A211BAF96021F5346839E1095B4F4213DB9D5B6F4CCD4CB86CE58B8BC615A45341DDDDE3E8203ED85152B565CB938173D8E5FA13B496E68201486523413945A58B7EE00BAA1F399BBA7B9AD9A4B488559BF9E3F1F9EDFBB976552999745D9D0E9D3E0627B137C96509C9BEC4ED6E0512BCE3D814CCCCBCB67C938AADEEBFEAC11828E62E6868E5798F5038C90A938F767870E312FC891ED847E7F8A096076DDCA8629A505F594D1044887FDFB37B2AAB34457526BF938996C5CA58D3D3D60A61A1EF43848005498F5E28B9BA0BA3A2DBEFAC714F77A3C301799D1393000FB070759FA983656EEC0D860E3DB6B81B365B352152D808BBBAF789E89C71A7475B7B6B7433F1557E1B9569E7EBE6537E8732B98E624D62C69AD0AB5C480B3DA70E1020BE09CB90530ECE3532B1B5A7BD7AA860CB3586FB598702276181ABE083AF4D159512B3DE020471F70600F5BA8D1871ED4D839552A38B3B358E61414117CFE61962E86D84318DA18A3E7C0A2578D9EDCD0348B19FCA3C3A037DBD8FDA820985DC7AEB9742DA38B19684A4758AD96685655451755D0237C89CC1AA85162D61F192825E608A9B1FE757A230C86D5D4CA86D6DDF75043694E7AFD14B401767B21ECDAF511DBD5D2567F22AE1A50ADD310E3CFA0AA1BA80A9A13A0303F97ED666DDB7614F17F38C624692C9693E650A92332ED1C0573A80D1CC24939065F3B36BC038EFC52B64235BB93680344B41559389E8EA12118C5F13A9D2EC8CDCD61FD8C74B48190551C2F694CD420BA471A1EAD78CFB658797AA17B02F40795D41280569C4BFB016D6D032C1541855914CA27A69429BB588BDF51E2EBB7478E808810444111156611A47CF8E16178F0C1990C6B9353C35EC4FD6766CE8457D076BC77FE3C4BDED1E829FA1E38DE0C47BABDF17474F24E5C151E9F449BF483975E82E33867DA11CB4201B204E0913D10B447D3E1C9B464039EC0E0721485F0DF5A5BD9B8F28B8A6124D5D2D1549C5B9CEDA8A7B400CFA74163E37A16E66BB598F1025B5A51A8155988BDADB81A8D688C6915E72326CF9D3B17D6AF6FC2485A8DDB80443A09EF55623030661C477B40B91C41D00155E36DDFF01E98337359BE5E8B7613FB35218D1BB5A315053782E375A10744E968F26A7A8E539576095BDDC9DE139DE7218FE811A54F878759BA624259250CC97CEAA5A3ED7AAEDE828C1504330C0FF5B0AA6756409B80D95A8BDB02FC475B96B4B20CC800416781807F08789D107D582EF6901CFD83383DC4B19DB4C76410594A5967B6B3FE045E88D3C4FBA45F944BD84E3680655C91C17A0C80159D0144D14017313A45B3218A120F0904747169C7CC82821CF1454ADE7FA3A12325048098CB5136B4C495FE4D37BA86C1A01E0E1FDE194F0BC75770ACD9E87121C4DB6308457A6402ED1990119E32650A6CD9D28AEE2177198DA601C5A8013E5CA5643F280EE0510326A007B5BF7123E8ECD94C2BC6D30003F65980ABF7387A5EA4014E57B422829EAA1C421BC039F2994734DE78B3501BCDC8A7C3385ED2808A499361704429FBF8FD574EAB5F9281374B00C2FCE577BF5CE2CCFC86CBE5C438A00FE8E1F39988D75A8947629B8EC6CC88935D77E204E81D0E561D9D9D99C1EAF51B1B3F8765CBAAD94493E9A82CE507D5D5F07E5B1B6C4146525D0FA5A3279494C070C7513879D13FA62C25B195A1001EADAD859FBFFD36AB8E265A8A35A83877E0C46710B1E5B2B822B1325AABAA7808B5939E657811C74B9A5A5E31118E9E393BEBF0DE9D4721FA1CB172A382F8D20240E6D3B30BFA990BEAD6BA73B35753A1AC28DAE0D0A17DF11595B81B45475A8D56849B0B68E8F4780DCFEB70353BD876E2BE7D9FA337128C47A489B40AB674F2827085F72343484814F952BCF1E9EE1DE070E6315819B393165BC53AA4CDA03ED176D063EF196880335183A89FC1AE5360C92E60F62071E56BF436D220A43983E3254F8934E0E081835FEB387DB209A2AF3908DD1601C4984FF0682BAC98FC5886DDF6134596F591709843F4E435AC8F2555E209198E1B9BD041C888A0011471C26A2C2BC3C5933151724A17715A9F221A0A446A09AF0F90B72A8A3AA48D5A149EE745841533E27D5856A4C0D84C0F97986853305EA0DBE23819E2D3B93A5EC2897DE259EE0895955751E8A347DB5A9E088C8E1EC15F2ED226DB8D664D6F9606D00249C3960FD1177064925020FAF6132E39F796C091EBE93CCEBDE29C9CA269A5A57F757E7070EB81F6F61DB1DF689771CCE4D36C36EB9CAAAA474C0643E1D1D3A7D79CE8EC3C191BC77863E1C749F371094735A11F4ABE5118D183ED02A587629FA5DB06419A118E319B98EEC2961D3BD7254D50499AD8B504A368744BA64E9D5F999FFF8363E7CFFF665B4BCBBEA46BD5A4FB32662F9D316341595EDE93C33EDFCE0D4D4D0D5E9F2F98C05CF50A8256938495280042AFE118EC10E3E97EF297D933B8696E684C133421900658639FF92B3079BCC9C378DAF19DC58BBFE1B4DB1F3FD0D1F1F79B5B5A8E5E23673DE6FBF2DCDCB4BB67CFFE07A328567DDED5F5CC07FBF61DBC8AE01357FC7802F063A3A7C87DD8223763B3E6A66EC824C0913D2600639200AEC4706E3CE69B4551F8E19225FFD9A4D7CFD972ECD8133B8F1FBF70354125DD6FCCF7DF59B264697176F633A3A1D0A6757BF7FEAAA3B7D77725A125435F02FCF8632DA2DE24C6DD6C017031861B63DB8E2618E7FD40D7B37ACBB2B3CD7F3D73E67368548DAFB7B43C79A8B373E47A56FCD5ECCBBCB232C73D3535FFA41784196787867EFCFCE6CDBBAF632C6A6CAB326449779688022CC365B665B0B7B725E504902404434C10FA7160E8AA1AF1B549939C8B4B4AD6488AF2F9B34D4D3FEA1E1A8A5C63C57F11C1C033F7DEBB22C36AFD9788A27CBCFEC8919F6E6F6F1FBDD2F506BBDDA517C4D5A8DC5FC7A94DA3A732698AD85A71566B38817B75A0ABAB2B650490240431D684EBF072D8DF7F9D376F62695ADA9BE8D7BDF2FD8D1B7FF96556FCD56CCC53F3E7A74FCBCF7F1607BB30100AFDED0FDF7F7FAB7681D56AB52B9CF017BCC03F8A0CA7BD6D3ECAF428F3212A8058E315FCCF0EFC658D6C16DF1A3871C273DB059020042EC67CFE0A2EE098F317972CA9B308C22B2145F94FDFDABA75EDF532F32AD771D7BAAEE1C107E9756AFF3B24CB9BFE71F7EEADC3C1F08348751F32D6A8313961D5C395BE8B0A850FF21CBF1E3FACE975A67DAC5EC7634C5F79594A8220AEFAF7F6A245DFE204E1970AC73DF2D0D6AD8D3758C5A05EC758C65CCB713916873DF42CBA33DF41483224313489C157D282E8F7EC3B3EFE1DBAAADC3A5E10D69C3FD9BEE7B609E07AFED62F58F00C8EF89B9C2CDF73DF9E3D9FDFCABE4DE9E96E41E50EE1E96155566A71A908575DF5FC65ABFE324D5062855CF4B08820EAE9D9E2D3F8C35A10D5355DEDEDC7BF720164E6E64E9665EE715015270E6BEDF0C59E1DE3F9CC6F5657EB2D56EB8B38887241A75B75D7EEDD7DB792F9A411D6CCCC720CA58E2D5E6084BDC7E55118E6E560289836DEAABF962610D2C9E108456694B9605581F460B7A0D3838E1E2AE719CD7E245D2346F8374E9E3CDC77D304E07496E4C8BAC8A3AAAC3EAE827A078CCDFF77E17F5E55405E3B3A38C8DCB7C6E9D31D0890EF62EF433693E9B1797BF6046E35F3ABABAB9D11597EC46677FC7A4EDD247863CB473045AF87A317786FC41F344422B2FE8A5093B4EA5596028FB0DC17319AA12E13921AA351C168B1B3FD04458AB4067CDEF681EEAEAF7F2901E4E4E45824DEB01AFB7A1C17F852EC5CD01270891B2F6AC246371E5B9D3CFFD1CF9D590FB904E1835D6D6D3FFEE96D786B2D55EF6564647C3D100C3E88CBF32FAA67D6729EC17EC833F5C0FAC01130349B15952A82BC7EBBAC28DC1535814FD004CA99C46A5055356A0F5464BC881A201AA8460ABA4301FF195992E6A3C09A067BCFCFFDC202A0DC7F7641E972443A5AE90F20BD655CA65FB68B75E95C2B5940556DC441AF31E8B8B7070707476EB5062C5EBCD8E2F178AAFDC1E0536185BB3F23332BED1B8FAC8463A7DAE064F30118A91A86F35BEC119DA484BCA3A356B80E4DD084441A21A346E80C06D0E9F432A7CA1783A170BAAAC87A35FA0ACDFD833D5D73AE5B0079C56533D0E17D1C39F728B2D195CCD0ABACF8CBCFE1B2EF8378588FC73521BFF7633C466E952062AF54B089A2B878C4E7FF0F05455973CB2A72C534CB04F0597CB0F1F56D7067A5028D5D1088F485E4502864BD7EEF88C7D5CF8F48B26C9424D9C0CA6288F9D1F29C4303DD9D33AE2A80DC92496E81531F4332841875E2388CBBAE159F28986BFCEE4795DEEAF78CACBAD5DA505656A64F4F4F774A92F4F0902FF03D774959B92D3B8B0B792E424D8903DE1CDC05CAA776C8B682B7B3D7AB4718318CAB09D12D0610059D1F033905996F55628C57B517D1E2998EE37E5F595AFCFDCB04503C756ABA1252FE124DF9E348B280C04C62AF8A092199CC1E88D051D1546CD3FABA987F4DC129AA4ED07D8AE6AA18CD81637478D0783BDC6112C4D4A953CD7ABDBE2214893C1194B9D506A329FBA1AFAD807317CE43E3F666A85DE0813F76F28A70C63832EAF5A4E1F8F9C4958FF388184C469F24AB69C8702EFEC6DD18F3D1C7FD5C14F8BFB51A75BB8F1C39126602406F403FAAE8EE45D5F826F2E25EFC4ECF36B643416654645546EBC2452BDBA833B2F482C036D3AFCA5CB81CFB937FD78BFA515E27485C69D0F1572556F8F78F7CE1993553D21A1B1BC3B7EB95F20F3FFCB070FAF4695AB9F38392FA74BACBB1B8B0B0C24059C5E9B327C1BACD6F402927C1393912B9705CF1FBBCA3E8B6F2AAD56A1D51049D0D992D680CD7563E4E7858D471FFECCE75FD16E7E68B078274CCCC2D7C466F34DD251A8C7359D9065AF16060345EC6A145F3974A3BA2A51BE452E930D050A3A1E5F5DB01FCA7E3F9B0C16CF657E4AA8ED6331170DE67824773EF857FF9F757A5896513E8B982233881819BF556921BF594D2D2D232F074D56858792A3B27AF6A611DF023C33618B910826325C760A8D104824FEF45268BE8541813713E564219D1F1EA5B0EA3F81FF15E7DC9EF1862024877E6FD1AB1F7694E100E99CC160B9E97CB043BE1E89B45B8789DA5CAFC5AC238623E3D0EA45E058AC6B501382C8BD93622D1AB6CEA3CC203FE74D8DC6280F94B96C3E432373CFBDF7FA1949714BF8417EE423CDE72E8D0A1F3701BFF089666CC9861C2C5E05639E1DB114EF758564E66DE9CE9B32082A8D07CF830F4F4F44690E16222CEE351D571EA6746117E383A3C7CB0A3A363DC8DFBA806380B7E0D023CCD2C39CFCBB8AA5B44515FA9A8AA99BDA381A00864100491152791006EC4F3319B4C1ED5C519BF56CAEBD7ED96A1745E2EFCE8E1BF87DFFEBE01ECD9F9D0FED9A7B2DF3B7230333DED65F44AB68F8E8E9E249C8414F823F7BBB6B6D61C0C0667A2CBFA77065BC6F2D2F272AB6FD40B274E9E8AE02C458DF9BCA2F4EA38E5E77693F84A5353D3E8D5A09425CA3273F29F5339EE077C5400CCB20B021F11F5681A14D5410FD4C5B7996EC0F341A3E6B75ACC4A20A258D5A58370776832B49E9061E1B22C0CD58DF0C1DB47C1E7F59CC9CC70BC250AC2C7388923A8AE4337E3956037FB6FE6CC9964F8D230345B29A9BAA7239C50132BBCD3239F033A90DF10E5D04F507BFBAF67F170555555FAFE11CF4B88348F69CC8F269C7816520BBC2EC0B37219D9F645573C0A3462B1DB7C914A5FDAF7728DDCFFD9CCC1A2C57361FEEC5AD8B6751B80380207F69D18B61A0D9F582DA63791F1076C365B1F1AA9909A0A59C2ABC092DBED36646767E7490A7C338CB0848BF3A2C849FF808142734B4B8BFF7AC7CF524685A5A5AB8321E9DF306E7669CC67C28885D974D4F3BC27222B7A49968C97335D49104CB49AC762B38DB87374D633BD08857346E051E77DF0D9E7DDE070A5A3501538B8F7705889849A6C66C35AA4DD895A7616071EB85D9ECF8DEE81E302466435E56380D6979999E9FDA25ACB450D2BA79B327B76CE50FFD04F90C9DFC62F0C7C02F3B94BD0A408BCEA09058236195DADF17C7D93C9ECD59B2DBAD0EC3ED313060BFC6E9B1EEA96CE823C571E1C6D3D09A74E77A8A3DEE1E376B3E175EC7C532412F91C57922715E1E68B08E24B1766915ACD9B37CFE8F1F86B3CA1D02F319058C836E262CCE735688AA658C3AA24F9FD7E9F43B301683483690E7B646E856ADBD12E807DB60C7F33FD3BF0C6FB1BD8EB5D446E10F6ED69EFB71874EB459E7B17FB6D0E87C31753C5C8DE36E12543150521DDDDDDF68B8323ABFC92FC3345E5DC5C923668DA81519D2F18F429468359566D68989674738F0D64C19BFB2DB0E26E3BA499CB61D3A66370716020A8E3E49D661DBF168DC95E9D4ED775F0E0C1402AE3FC6D1340626E043D119727243D1D8EA8DFC5656FBB0445978481019557E5799BAA0BC3ACFB27C1F2C265F0ECBFBD002B57E4406BCB8872EE4C7F9B4DAF5B8B976F459C3F818C27B74C863FFF5D7B474C33328260988CCBF56792C22D4741E8C6B8AB3CE75539DE366962258C8664985AE186F51B3682A0C8170C3AE55D1DA81FA0C6B4205E0DFEFF0E3737BC278C8210E7CC99931108CBCB8232FC1799E3276BDAA0E3C0ABA000E81DFE468311DADB8FFA7839B8559023AF21D4ECC7D6BD77EFDEE09FE1E64B6ECA6B461A61A43020C3B7C30AFF5D849E2CB4035E0538AA079544900EE995F02BB4E3E8F3F9CE1C3B76CCFF67B8B949024836D28140A02A04E28F70F5CFA317D81A39F94D1E948F30986AC3CB466E6712ED4F5A008946DA6C36E7A1FB598E4CA747744E3A1C8E9E548F62FF24049098A05ABC7831FB5FD022E3237F869B2FFEF77F01FA72E8A45FF86ABC0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (137,1,'Satellite_(128)',decode('89504E470D0A1A0A0000000D49484452000000800000004E0806000000E8DC1E0F0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000275B4944415478DAED7D09781DD579F699B98B74375DEDB224AFF2BE800DF68FB1D90C84D550C26668434820101A684B1A4A20CD466880FE2D0D4F5BF2A4D03481A424F9A19036ECE0F08442C00BBB31C696BC4BB2F6FDEE7766FEF73D336734BA969780492447A3E7E8CC76E7CE9CF7FDD673E65CCDB22C71B42D9AA62D45B5026509D68F0904027A3018CC555454F42C5EBC789BCFE7DB65184673369BDD9B48249A5F79E59576B48339169F65F1E2B323E974AEDEB2F45A53B36AAD7CBE3E9FB7660442A1D9A9A181B8B08C72CB324A4CCB085B66BEC834F37ED3CCE9E9F4A4FF48245EBBEE906D75341060CD638FF9B467F61EF3E843B79C585454F4E55C2E3717C02B328CA8410471F2C9278B68342AF781042CA94C26F3237CEE1F40863D9FC43D2E5BB6269ECB656A0C43ABB1F47CB53044B51046A5695A9500AFC2E70FD406FC45758383DDC59669C64C2B1F06B04558D72D610A8913398A7BE67D17158744269D94D7B68465FFC7719C2F743D245A5B820F59D6BA6BC61D01EAEB4F3EDFE7D3CED334BDC4B2B458ACA4B42A9918D075DD17D2752D1408864290E022239FF3A3C6562420F464A079CF467F2A9570811E0D7C559F78E289A2ADAD4D84422111894444381C162000899043F9CF743A7DCFBA75EB1A0FF79E8F5FFEA74B45CEBA1C0054008272CD32CB4C146C9796945555F575ED2B462BFB70FF4263D174A7E6FD6812BC6071B148E3FE2DC31020840452028A623AC072BF69E405C822C137F259014D86637961BAE75BB86EB5E8E9F19D6F59AF3F3B6E08505777CA05C0F2873E3D5F036085CF1710C1A2B07C28125CF7F9C1FA089A4BB3598EED69D3278B5C7AA7D8B0E1B707047DB47D679E79A6AC21ED62DFBE7D50B38B05CC83D4060E11FA4182D3D6AF5FFF9E7588063AF9B41BAF2F0E87EEB74C23687A406309068B451E20653329006488BC9113468EA0E551B09ECFC9751E2B29AD1083FD3DF63D6AD6F0FD3B959710FE405012C09678C32688354C80FEDE8A8154AAB7CAB2DECF8E7902D4D7AF3C37142EFAB110E9499072A82F3F1A2E240136C16E1D6408048A508AD16079B90DA9170B17D68974B24500A4834AFB6844B8E9A69B84DFEF17F7DD779F686E6E16FDFDFDE2B2CB2E13A9544A1180F5AEDEDEDEB99B376FCEB3FD0B89806B692B567EE17B8695BF598738CB6BEBBAA094635B02178E9588C1BEEE51A5D9DD9664D6A516482787844140490C4AB5248A23E196ADE2D94614904C3A21C1F602CFDAE78B88CECEE84342ACFFC2E1F8357F3002CC9C79F66A4DCFFF87610CD6D8C0E3C1FC41110816093CAD54934AEAA901EC87F78B783C24E6CC2E15FD7D9D62C78E1D8704BF70DFF2E5CBC525975C22DE7AEB2DF1E0830F8A3D7BF688AEAE2E71CE39E74873400228122493C92B70ECBF77EDDA358204A79F7E53B4AFBFEFE9F2EA49A7520DE7733948775698B99C2DD928D192729118EA87F4275D808407284BD96C6C474BCA40944E3E364EE17E61AF5BF63A6154DB148E743A0372C03350FB5953513AE78442DA5DE1A8BE1B9AA5C2C89BF520592DFC896A149A259856230C67316418C58DBF770268DAC2606565ECA54020B7D2111BEC23ABFD2040111A3323B88F22140A97402A930E0174316D1AC09F532125B5A7A7474AF1E148BF22C2A2458BC469A79D266DFF134F3C21D6AE5D2B76EFDE2D35C075D75D27BABBBB5D33C082635BB0BD120E48BAB5B595EAD46A68B8F8F85849F10B3E5D2BA7741A6879D6A661DAD22BB72D1189C5457F4F37D64D29BD00424ABF2181B3644D4D6090ECCE3DFA037E53D3AC1C04DCD0742B0FBD62E93E78421AC8AF5938CD44C32016B04C1FAE8223794437015F2A39A8794D8FEB107A89E7EC131E026A625AF28813405BB3C657B7AEE3C79AC89F0B4F87DA91FA512F2E0EFB786B462E67E0AC309E38A003F868AC0C8D9E920DA84915AA4B6D40E92F2DAB1289C4A0948AD2929CA8AF1112F45FFEF209B16AD5E952626DA7E7E004A09377ECB1C78AC993270B440962EFDEBDE2D1471F95E043BA25E8B7DE7AABD8BA75AB0B3E0B344C1EC79620726845289984B9C8E9FA8ABF0080FFCC4B431567FC7E2D897BCDFAFDBA81F53CEEDF82138BFB17D05E4578EEA2402A31C4D6C61ECB0F9DEBC30381B9560040F85174054C4959A9E80369EC6DD3F501A45B405835CB71096CCCA4B9417B65B369475B18C3C09BE648DFA0C03FA1DF91C934741C5102CC9EFF273FCA66BAAF02BF033E09224B4014438D5332C87C82ABA1F8E1C91687A2B8F98C7C4AB95FB34D41119CBFA2E2B0482513F2DC48C81433EAB312C8B56B5F14EFBDB7499C70C20962F5EAD5A2A3A3434A60A1BA6761A8575E5E2E1DBC6278D9047F686848BCF0C20BD27C107C46030B172E10577FF6B3E2372FFFEF08027CF0C107BCF6B7F0F987D1D07DF1783C65EA4B97A3DDFF1B8D5D41D034A9AC78FF42DA7EDBC3B7418B9796E1FBFA6D702400865C1FF6F28741D31DF2D3B9335D9060FBF386EBFDDB0EA30D1E9D3F104C241309F7BAAE06283031A369004D2F42FB4EFFE5112140ED9453BF2BCCC42D9A6E16CB0620007818DA2B7AF30459731A870087C231097606DEB10DBC2E816603D276521B643369798D7028284E5B592B62B1B004F19E7BEE02E85D529AEFB9E71E5155452D91900D83385EC6F92C7CAEC1C14101474E02CFCF72FDFDF7DF9792AFA43F1A8D883BBFF36DF1EC732FCAEB28F06966480080B271D2A449D7E2313BCA2BCF38B9BCAAF6673EBFAFC895249A01FA0179E5D9E7E10FE441701DFE4C50F47677CA7384F0D8FF025058E2E565A2AFBBCB36E49A17136B9462DBFAA262460329E7BA1E0D607A1CCE03688060B046F474876EFF58049831E7FC6F58C6E0D7B3D98162E5C829E926F8867C70CD06D7D94FA78E4E93945409BAADEE19DB862371F94032EC73AE75C62933C4AC860A092A25E48A2BAE909F9D3A75AA38F5D453C5CD37DF2C25BCA4A44436C2C0C080049A3E026D3A49C0CF7576764A878FEA9F3509C02FFAEA57BF22366E7C473A820A7CDE373D6D9E87EB1895959517CE9CBBE6A440307C1B1EC7AFAB084DB75CE9361DC9535E7E14F733D0D763833242DAADFDE27C104A5E2F8B67B7A5DD9052AE8A65166E9B328FC0E8219D4C7A54BF75480DA0B480A64D06C98B577D2402D4D49D74ADB012F71946A24449AF926EAA6F4A2EA591E0729DC74250F7F4E233B05772BFFC9CED0086C25190232898C8B13F631F87DD155FBFF5D3823695A0F09AB7DFF615B1676F9B9832658AD402F3E6CD13679C718658B06081947402D8D7D727553DC9C0759A09AAFA96961619F6B1CC9B3B4B5C72F185E27F5FDD80FDAD2A2328CB71C71D27B501CD044B4DDD89AF9597CF5901A034A9860D472543454B200BD46B241695F79B1C1A180661540D60AF97C24CF57675BA193DAFA4DB793EDA7ECBBD0E9722268E100A0A57FACD11D9C0111A6084F4DB244CA7A64059A54B7F27024C69F8D4153E2DF36032D15EA239E0125482C5E404E375DB1EEBAE6AF7C1692B2E8E3AF1ACE56A03F9793038128E8BBC8C794D47EA490ABF24422C1612577C7ABEED653BDEF6EE9D5BC53FDDF77D515B5B2BEAEAEA04D4B3A8AEAE965A00365AFA099478AA6482480250BADBDBDB65D22707029E7BCEE9681C5DBCF6FA1B68C4F408F0CF3AEB2C316BD62C09FCF6EDDB45EF409528AF9A8B7BB20AE26E733F874B6980682CE648BFB59F062804C50F9253AA7399B4EB9C99E6281A809F71B2846C8BE25031C2CC41F7FADE24D4A134009418846DC6DB42AC5F765804A8AE5D79A665261EC9667B6A6C706DC955D20F0F5F9A2E093E49E190A3A82822BD764AA59714FC4C20582C133A493A7AC2734DE7F37017C5606FBFF8E2752B5CF055DDD6B255BCF9F666681321C1A7A3A7C057F69F6092000CF186D05095E551316BE63448AD101BDFD8245AF7B54B8DA280E7F75F7CF1C5E2820B2E909AA2B171BB58FBEB6691CD1749E9331C20AC038454AAE1E3159562A8BFD7766EBDA1D801344019CEEFEE6CB7AF250AD4B8BBCFF35DA8FD7E5B7832A96441D8777826C0E72B87F358FE80656DB8F1A004D0B46581B24AFD37C21A5C613BD6746F1D4F57D8EB918813ABCB00C53E461738182CB243944CCEEEC070627BE13889B4F7C9C4006E4EBACFCEE7EDE30875C5D060122595F8FCD5C7842291803E920479440608967309D10D929826FD0C3F6A5D364E51D087EF8709C17A2C1A92BEC7D6A63D62EBB65D205CCA059E35CB8C1933C4B5D75E2B350ACD08976FDFF198E8E9CD781AD6DA0F486661E41E0510D6CB2ACA444F6797ADCED5E7E4BAF0ACDBDB7C6E3AA7C9C490E3D8D9C50654A80DDB18481035790D1FC067FEC092D91FCD218970D685F3BD6C4BE7B8253CF7209CE7D0AEB1ACF53F39A406D08227ADACAAF1DD64994397E1A34165D3959D0E31C4C335F252FABDBE40489A849423FDDE633417B168A9944C4BF348BE320DA8534309B173D396D4492B4A77575717CF331D3527932F9E1209C3B10CFAF15DBAAC191B0F803CFDFD43A2AF1F26A07F50824E93A00057EB74F42EBCF042E94310786F59BDFA3B3289F307EED7367DBA65426050202A3A9A4BB3F1C533E46C8780892261AB01775DD69E6D91C35A12A51B42D281BA179AF9BBD9ECEB7B0F4A80DA8655B79AB9C13B84950BBBB65BF73BF96876D6B0B3C39052EB8DE3E9D4998E49B0F7FB5DAF3E140ACBCFA6A9761DB0D5316A0A367ACBCEDD62DF8EA69658B4F71BF3E7578661E7BF4FCF5E813E1A1158EC50CCAE0B8B17789A8D254B96C85E41FA0E341BE98C25DA3B53AED3BA6143A3342129F80819D8E720CC596F4F77337C9E9C545B1AFD704B93BD53327549CFDA725498A5C54B2B82FD7D5D861441A67068D32C8B71038FEB962545D3AE99DD63762C14D6E808239CD4BCE6C5ABFEF93DA611C50777FFCCEF37734E3A5F7355B0BDE8C3DD489200F016450BCEDB0CD27F80BA19668E6ADB18950075334EFB9C2632F767D27D512F78D24EEB76E70CC1CB80846C2CCB51FD54B56178FB2934980CFF3C1EBD8650AF04529F9579F3BC7BCCF5FA59702BCD4DBB45553C2FEAEBF3033B76343E0527EDE7A79C72CA0FA0B227D391636847100F9704EAF9E81FCC993347A683554690C0B36EEBCC8857D7358B349394D2E152765348BB1F2FAB1089C17E9971131E353E6C7FAD11B6D6E7B3893E30D03722FFAFCE1DF5B382CE635C0CC07F106EFFBF55E06FD804181A88E2949E57E3F1BE77876DA70DB89D5E17BA0757C6E2B43120AFBE05A511115207C2DB143B8B4610A07ADAAAF38D4CEF43B96C5F95ABB615804EBC1E82C347FB23B3778CDF9D120C86652C9F638F9D471BF0F341102688CFA5330C01FD1E320D93ABB7AB5BEC787F6B6E5275F6FDB3CF5E341B8D1825D88D8D8D5BE1E43523CE3F93C0D36BA793C6108FEB2C4CDA787BFC98EB27E03178E32C88E365D8E8055DAEA36CDB9E146D5D74AA34B7D369D8D60BE9008670AD4110C01B7215F6C20D3B60163CF410CCCE90C7FB2F74E4BC7E8572CC6CA1CDB969DD511C4279439AD8D99815F192DE9F44A343DB2808EAD1D9A66EFA88DA5F23BC96813A81F35A717C27A59F594DA6B55D02544F3D75453EDBFF9891EBAD77BD758F7432D463B8C2583DEF866BC3E11CBD79FA003C663B219A63DB19E6C5E48365A0F235D7D35704B149D6B3AF5BB4EDDABB2F1A1DB8231AEDDF0EC7680142B16B20A9C711688471F94824E2A7E3E655EBA6D3C02A0BC8EB117CE60FBC4565075DE09954F205C5EEF652A8F9BC1D9EA9DCB9A9C22A3BF48AC54AA454D2F154DDB7B2D1E56786B36F2A0CE3128DC6445F6FB7ED9CA91071446CEEE91974B449945DC703BDFB699342F56F5911D1B92F37346952EB9720DC6982EC491A08EF3A8F9936435258A76AE980EDEFDDB3670F25C6203BB478E5892F9A66C799A691D5F850852069D2A12BB6BB289D385EED27218A393449865176368FDAC08FC6A5A3476250E5CB5CB92BF9C3E4E1F5B6BEB34524FA7B5E2B2FEFFCFB40209770D41789A923D6BF70FAF4E997E1E66B98D8514E1C4B329994211E3B840828C34D4A3FD56F6969A96BDB9907A8A8AC126968092A471220671489AD3B4DDC9B708190EDE68EC1B0B7D9355D0C677660A0576E6B9EC4CC88367706ADD01287C31139B247C6EFEABA9637855B60124CBB0E04E887A446E408864D84E9269C1283616ACB67ABABDBBE851332B6836893004261158C81A01A2007D89D9D421B2551D2ECDE56630570E6F29FA0FEAC431934A00090A8FDEC8F87FA8B84E4C815A11976FAD18EFEA0D6FD32D44B6753F20B879338765E807DFB1999CFF7B95EBED727C824B3A2B9712F54D0D0BF5755753EEAF4B77B9D17E9C000C452A8EF6B01F47970CA7415C251F593DC656565320FA06AB5CE44CE962D5B246C37DFF23762FD6F7F2B1AB77D280C7DBAE84F163BE956D31D91A38A1A80C1BAACBC4A7475EE733B61BCB1B9D82F2CB4412E2B2D173D3D9D1EE9F64AEFC8FC81DA17894441E8413B753E8ADD77AF8367E96A83160B266FACA8E8F95526934981F0267B201D12EC370886C700BA89B6634ADBD8BC79B3E11DDB80335784F01093716A19EA52ECF2D416EB72D4650C719D7DACE3D82E41F1AB2F22617C019FACA9869938912442F1432BE87E9FCC0A5252934369D1B9B735515434705779F9D0EB059EACE6DC20BB5629A35457D9AAAAAAD5B0EBFFD79BB5A394AB44902200350081FFF0C30F655FFD37EFF83BE9D4F5F6F6881FFCDB8BF088C276F7AADB73681719C9A8EE57DA7D682F363CFB26547B16DA7D25C1CA5BA740E4735959AC82E4CCFEF65C992F436AA544626878889733AE401D570928D32A161D2DC6404D4DDB729F2FCF2E6A4A7361AC3A5A5867796BEFE8A64324826467A75E53530317003A0A1A14A004A06AFCA8FDA954712C97D3CA4CB3A814E48D9BA6AFC43433B302016D19CC461D4A453C5E160D0643DA10404F26332859A8E862B17C79053CFAB601387ABB60E79BA0D2DFC1F5DFA69A22F88E7A4B02D021809D416D40133CC7FE79D569C3542DBB7C99C099366D9A6C34A67B5527D0833F7A5844709CFB5330198FFC629DD8BDA747D8A3B77417584D17C30EA0A3DE2B2B2789CE8E9691523BAA4D1EB6D765E595A2A7AB7D7F892FF0FEDDEBE0AF18E655A68273D9113869C346C33523B95C09EC7FF79365657B60FF454F676767E60080EFCF8003007D580480F405A08A03D82E820A26197C50573E8EB737396C19AADBA93500E8DA709E03A0964232CF803D9F595F5F3FB5A1A161123EA7D186D37B67CD42670F0FD403E0B6617B13CA2BF8BEF5908E3ED4696C1B700CFF1204B8471180BD75768FE3E8CB17AEBF419C77C185B6AA477963FD36F14FFFF0F8A8E7AAC1159ACC710819D25AEE7EBB689EDA2691E66A13F6CC45A26127AB67395AC572FC09D313929BFBA97F3566E0A0EA1FEB7DDD11F85283375655F53D8676E96F6A6A323EEEFB0C8722808C29E18DFB6143FC50ED7E1081E0135C05BC867D12744502EE071158FBD43624580368119C7B0AC87002D4F74C106326EA72AA734506555382519AB1BE11E555EC7F1104A056D802FBAF9300ECE1637DA0A502E1DFBFFCE04109103B9B98B47AE0FE9FE3BA292757A2CB94A9E98CA963C9E7ED615BACB359268E0C59673239E9B41EA9450E20D1752703EA0C28512473D24936B9EC412784A9AF3B3B505DBDEFC440C06C411897549EFC274D00490278E33A80A213A6117C7ADA041FE640261D1C42682089B4E7DCE6712F491441A819B0F8015E256CF72AD8F1C550E57311EBCF06712274F09466508400012DD48D70646066CC493C87BD7C3C76B0E596AF7E4D2C397EA9AB05B66DD92C766D6F744708B15685FE09CF7306840A6FFA99DBBDBDEC664E4A422882A8428228B2F018D7BD6422D17499F760092036E7083992D0C76370252CBE034277056DA4053C593D7781DD7FAAB6B6FD4B68B76EAAFF23F136D3A1FB0286492037972E5D2AD70180AC950482082403B580E6A46B35472B680056EDD794F6A0264183FB41289A9620F6D1B7A805194E022916019C85383C87FBBD44202074F44800A687693A0EB6CC9D375FDCFECD3B5C30190EFEF6376B6588E8059FFE0409C06BB3D69D310D5EA7B3B0141EE736DB139FA577CED83B8575FA31721BB7D3CB840C9EA90F25A39C5E9A5AC709F6A96D12004DE687ACD0CF1C320C7F1B74D45BD168FE7D5C6BC01BCA7DA2042820C27EBB0FF6110F692461481645146A128476F41158025CA815702C4007130DE4070926830C7CDD6B09F62DC1BE19BC0E0946023849A203DDAF139EEAE29B77DE256AEBEA9D51BB96D8F2DEDBA21F5181029F9A80612347151D0C7005B21CBD6327A57AF01D5D68C3248146DDCF9C3BF677E1BC84F2E09CA6930E80CCBE7198EFB0F3A608E0737220BA2280739C92DE8D7A17337968A3766F22E7F74680DFF1E54CED10A4900B88A1F7F7F7D321F4D1BC20CC2319A8182411480827EAA04A0CE2F854988AFF837BA61AACA246E0E81E4FCCEB78F7DA88F515279D2C2EBDF2CFA41F402DD007F01B3FD8B41F01D49070BB134B774D04230DA69455FE81A9E86DDBB6D107F91026E9A7F80E462D79D9B9A269CA31339C34ACDAC79A529BC73D70DDA4B6513E92029F8BDA76BC77328EC4DA87CFB4739D43D48FD4CBAC7FB017433C2471EB850B17EAB0F51AD43DFD0D1F9D4ED4E403C91070B44310CEE3A538FFBB2A1270D4EEA8E0B36643DFFAB7DF92397AC331055BDF7F477A7D8A002C0496F90435C288F90CAF9F409230BFC0E1E3CC35400D1B0891BF8DEFE864BEDD91D6AC029A790C0770AECBE2800F8E194A0B68B83F650274AFD32CD5867D7E0AF5009E77105154E6CD37DF3C22D23FA6DE0D1C85103ABC7E573B000092817E4300A6A31CE55D6C07210DB25FC00BF8682438FD53678BA5CB57B8BE407747BBE843CCAE00F6027DA0F59D3B774AF01509E837402BFD140EF1FFE03B680A0649028246B00DDBDBCD73611E83593B80C8631475B7E195BFE4641435A7F752FA4DD038CC86F2FD84DCD4A9537300DF3C92AFB28FC9D7C30FA61D507CF41DAAAAAA7E013BBB9AA37DE9201E4C03B084231171F5176E90232A48807C2E2FDA7637C9CE22AF162804DEBB8FC3C815F82C88C3A95D3E80C6F80ABEAB05EBBD002C856B1A4CBFB2C04FB100A04CD7E21AA673BD511B5D39D65EE75A9D4FE0477B47F1A824C0E16887952B57AE81803DC2E1DFEC283A18F86A7DD5A7CE1193A7CF705EE332C500C7ECE7D2FB11E0405A61340D4001861F7015CCC5DB00B0836F10412B199EEC8F758834ED612DD62704D4B89B20429161F1E2C56178ED7B017E19C3C1D1002FDCC75EC155679FEFFA01B96C4664077BF703FF4044686C6C94CE9FD200EAE5541CFB217C877F85C4B7D20CB0AF7DB4BCFB986CCFF13C43C859679D751FA4EECB1CF77F381A8065E56967CAD7B65562C84C0F89A04F1F9504DE6DE60608BE22006BFBE512197D34D5D6D65E8D7A0FEEA7E74825692608708865F5EAD54C146D6507D06861E0682498543F5934CC5BE486849691139180B6DF68A14222F05C4500551835A8051AE0B370DCD633543B5269DA09021CC672D145176D6C6F6F5F46800E470330C7B268E972998357A6A0B4D827421EC0BD445064E000516502544DCDA3169CF708C2D37F8423D80A6DD17FA43275130438C4B266CD9ADBE108DEC304CDA1C1B7D76BEAA6884859851B12468AFCA2321EDB6FD8989704CC3812787AFE8A001C6DE44942354F9A34E94AD4BB6906707E7A8200BF87E5F39FFFFC4C10A089127A38E0DB13310444F594067B72074ED182EBCCACAF1E157CB5CE1090E0AB42127807A37289C7E35F4288FA12BEA34D0DBB9E70027F0FCB95575EC94125D30E271250EBB18A6A61683ED717983AA94A545794BAA07B49C0D430433E02AF6A12A070C1677E595D5DFD771C798B70705C9881A38200D002DF873ABEF17023015B0B04851108BBD1402454248E9B3F7B04F86A9D61268157E033FCF33A809E10B513D1C0A5A877B1CB763C9881A3820037DC70C31210E0ED43497DE1BA150C8BA154C6F505562C5924CACBE2323BA808C075F59A3813412401D7BDF6DFBBC462B15BA2D1E833B8FEBED6D6569A81FC583603470501981CBAFAEAABF93A52507503ABB983D4C412A31141F8FCA2BD2F614FE44433505723961DBBC0957C1676391378FA00ACD56BE3071A8A06C23C0733F075E7058C7EF502C604013E01D03FF399CFC4D0C827A09C88F297F97CBE9AFDF5CCA3ABB786D865AC5E2861B72E7BFA388094A11D49D0D6971483097BA00987635D7AEE99221209BBC451D3C9281290007C45ED20F7D58F68E0227C76C7783003E392005FFCE2174F84A4FD05CA6568E82225F1EA8D2145007AE98C0E58D85FC071869468D635353572CA3886844D7BF739390143AC387EB158B268BE24809A56464D29A34850E8FD172E20D9A7716F9B9DC11B3403E6583503E38600D75C734D31C0FED350287423A477196D34ED33FBFA1501D434328A00CE58C211E0B3F08D22169EDFD0D020A6CD5D2442D198D402F1584C5C73E525420D3651F30A294DA0B28E07594C906B0DEE6933EE977E40622C8783639E0054F5975D76D9ED50E3B74122E3F4C865A720077AE87E11E0383EBEA5C47700A5F366DBEED2D2B87C518440AAF982BCE0D389F38E279C3A738E98BD70B124D2E5179E2B74CB70E71352134BB19058075B40C89D20C05FE13A4D2040EB58CF078C69022C5CB8B01CD2FC1BCEF9CF57CFF8F2C4D050420E97E6B87DCEAEE577DE36F2CB99C6541DB0DFD2E16C5F9A05CF3C22A790211114F8AA78D5797955B598B7E404D1306D8A983BAD6EC4A45224015F3839D4023FE381929292FFA20FC0D7B0F11DA90913F01196D2D2D28BD0988F73FCB89A16D65B02F26DE591FBD4885E7BB6719B10AC39145BFA03C984C8A693F2556C9281DA84C5DB06A148542C5CB6421C3F6FA6E8EAEC9024504438D402CDB3A1AAAAEA7B3025BB50F662570F1CC6EC8413F8BBABFD6553A64C590F152DE70652802BD00BD70F4C029F3B26D09ECB20203B837A7AFBC48EED5BE55B3CD408854E5D385A224E5879B2C825FA25F81C76C648E2600BBEA71BE07F03DFD584CD3DB8EF0E1038D1D4D4349107F85D6D7E5D5D5D2B2474923D3B7670BFF7FD0BCB8188E02DDEF89FC3EE5A5A5B04DFA67EFBED8DA24FFA1523977879A5A82C8B4BA7EF502F9F30F483C6FA5738A8EBB049C96F83833940E9179FC030AEA39D00AB172C58F014C32DC6EA4AA255764E4D0557380144A166F06A02A50534673C207BF2EAEBEBE124F247220CB1E18D0DE2CD8DEB8567B60DB970C66F4E0D73B005BEC500BEFF5E946D007D37BEB31991072C4B6F464C74067D2402DC8DD0EC6BB4CD04D30BB8025101AD7EF28544194D2378A55F4D1EC9EB52ED736651F73B71ACBBBB4F3CFFFC73A2A971EBE1DEA7983D7B36A7AC35111EDE058DF506F6EDC0F772FCFEE0C478808F4E807F9E356BD65FA95FEF6028E7ED98F176D4105C2E0A7012816FF7783587AA950DDFBC79B3FC8918924708E199DC815FEE13CF3CFD8C78F9E5970E7A8F4C22317F40F2F1BA04BFADADED6E1CDA8EFB689920C0C723C0D710FEDDEDB5BB24C168A374BCB52204A55C6909EE63FA57F90574E80818E7175652AC9E5FCD35C47E81FFF9D593E2D76B5F2874F2640A99934AF23B0B5E17B31022DE86EF7E05EB7BC683F73F9609702C24F45D6A0002C8708DF97B9A82D1866B17BEBDA3884202C8F9F7A145D404521B366C90BF31E0F6067A9E5D4D2DA7407DF2A9A7C5F3CF3DEB4A3C7F9F60B417463D53D6BC857BFD1A48B81DE7758CF514F0980E03E1A0ED2C2B2B9B4E300914B36F6A6E3FEF1BBD2C2486AA49062F11BC4EE04B2FBD2481E474717CB5DD792FCFCEDD3AAF841796679E79563CFDF453F275314E4D7F20F09DF514EEF32A5CAE09EBCD700E07C77A083896F3006742E2D6729DA03363472DC06C9E57F25521F8AAD02EABFD4A0BB0F78ED2CFC9A009369D40D6F417EC9F5C1909BCFAD128969FFEE72362DDEBAF89D34F3F5D92E600E0A321336DE9ACB8159AA4096DCAF1E2BD1361E0C75860F77FB568D1A20B9527CF6C20BD6E05BEAA95E47B09A08A72061F7EF861F9B3702490F7C5655E939D45EA3B462300CFB9F3CE3BA506E2D4F4A3819FCF658DFBFFBA2397784B7BE12BBF2EFF1E2EBD0BC4ED8623981AEB6660CC12004005A0AEDF9C3B77EE316A600625966ABC9000CA0414161E7FEFBDF7A46D5FB56A951B0E5A72C2A59C0BA4EA28E27E6A0D2F016C7FE029F1EA2BAF88F9F3E7EF07BE696687FEEDAB1DE298603692E8D5FA7EF154F88EEF7F187D12D7E91E0FEF078CE9CE2090C00FAFBB0931FB349A0266E5088297005E33E0AD5598C79F87BBFEFAEB5D6DA0F2015E02A85A4D56C5E3F41FD47E26A5EEBDF75E39CFB017FC6030B3EFDFBFDC613558B9BAAE77B5BEEB5EAAFEF3BF9DDB73C2D3FBA23FFAAF266B374C577A82001F9F043E90A071C9922533D8F00491BF1744427809305A79F9E597E5ACE0341D6A848F9AF367B459C415B06AF611153DF0FCDB6EBB1D61E054794EB4389DB9E084BECCE7160D14A71B85D9D6EE6BFAA033B0F6AEADA53F477B765615E707BBB3C121F55B831304F8F824D0A737346C5D76FCF1B3D825CB59BF19DF7BB540E13A1D3DBEC57BD14517B9E07BE3FD422278C9E0D50A0C431992DE7DF7DDB95BD668E9E3EA139159B94CCE1AB4FC22257CF7BF5172EBE3ADD1B7D919846BF6702207E78726731361E0912581367DFAF47BA74D9BFED7A5A5718D99B8C25C8097080CFBCE3DF75C19C229F0BDB17FE10F5014FEBE0035004700F1F52F12088E64DB03A766B62C9B9D59F5C2A6D07D9B7A8BDEFBDCD4819BDFEB0B3CF49DAD15CFE11A83B0FB093517EF5897FC714700B5409D5701FCAD00A58CF9FCC2BC000BBB6F093A7F2DD43B12D81B017835812202259DE3FEF879FA00743849A0D75F7F9DBF34FA444569E9FFFBC763BB57FCCDFB553FE4A45045A6993B6FF260F8D15DA14E688C6C6D6D6DB6702EDE09027C020B42BA7968F0FBB76FDFD170FCD2A53366CD1CD606F411366DDA244E39E51477BA372F09BC8B8A06D4D83F2EEA57C8D418433A8670005358FF123EBF93E3FD51387B6906BE429EB37FC0F1349A9A9AD49C3FE306FC714B002E975F7EF9BF0094479F7FFE796DDEFC053F9BBF60E1E4850BE68BD69666A7ABB77CD4B1000A78AA76024F3B4FD0F933743CD7FBEB23D4080F3CF040A6BDBDFD9B9148847DFDED38BF87F317631FD5BC39924FE3AF31C72D012EB9E4920A00FAB3C71F7FFC3C6CEA0008C1C1D4EF4E9D36EDA2D2D28AD0318B1669B192A89C76551180769DD3CB1258CE0246D0E93BA81E41D72460FD9D77DE15CF3EF34C4B223174171CCE8DB8462F80EF83D427007E4E816F8DF3376BC6F59B41975E7AE92DA8F621D6FFC5CA952BC3B0D9CF4015DFD9D9D9599E48244E9D326DFA39B367CD698897C4E42F74F3C79CEBEAEA45381C727E60C7BE8E9137644FE15E39F8738FD58C7F9D9D1D3F2E2D2DFD15801F823648007C390DDC78F1EEFF2808B066CD1ABE0AF632C0E61C7C0B01D2DA75EBD6DD031B7E3CCAD98806E82B6C87AA5F0F623403C8129C33A3A4243E37128BD547F16F68B0DF6C69696EC1B11D38F66E2C167B0DDE7C1FFC07C6F0ECD2CD708AB6783C9EE7ECDCE355D51F9504E08238FFC9BEBEBE0B9826CE64329D70C8B601B0A19E9E9ED721D5EB11D2B533460711866026B288EBA5EAE6BCC5005B4D68EDFEC892F33EA131383868E27C03A6C274A66813471BF8E39E00D75F7F7DCD8E1D3B3603CC0AE7F782BAE1DCFD09C02F72E6DEED07C09DB4DF4CCE401378A76F1B31973117002D44C1AF6B887132DBD71FAB0F700700FFB6DA869AFEFB77DF7DF787907AFE9C0D0931C85FC9E2C4CD2A2DABC03CC87CC6E26806FCA822C055575D75417777F79D50EBC7416DF740652F7DE79D7786F04CFC01604EB3CACE9864575757E66872DC2608E0596EB8E1860048F0653C4719A2816FD5D5D5F911E6C9D1A2B4E593274FCE1FE9F975270830561F66F8C72D5451B1FA04F87F0C04F090E08FCE967FD4E5FF038E0E200ECE70947E0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (138,1,'Satellite_(24)',decode('89504E470D0A1A0A0000000D49484452000000180000000F0806000000FEA40FDB0000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000032E49444154381195C1CD6B1C751C07E0CF6FE6B7B3B3B3BB997D29C9168971A2B151092426C6A668C322119482E4D01C241EC45EFA57F4E841CFBED47B4F82488B45724949AC41301A43B3714BDDE04BC866BA33BB333B333BAF5F53E8A188D9D5E76144847FF3D2CCE54F87B2EA9BF9BC2A99ADEF0B6D53CF56ABD5B8D96C7EB5B7B7F7DEF8C23BDC6AB85F0A029EF39C762EA130E7B91D298EBD94E7DAB05DF535CBB87397E30963DA1B1FA573B9D5B42465954C2E2FA665E4D2F7E9C50BF34C9665A8AACABBDDEE65C330ECF48E7E26A1F0152E90EC072E3BC1C388842411088CB39478B8593E730E1C278A95858B8AC4BECE2872414A31A44409244A182E4B9E2CA63223C325D8B685BBDFDD412E5FC4C8D9C57715252F45B12F44610F4402128A110511982020894588420E04D9649567AA5F70A1F77E3A2D8B4AAE888C52465A51D131BA5E86EDFFD4F3CC0BA669229BCD62FAE55761D815044108ABD38E9224628488F93D078C62E6795D1684821EF77EFD9C312251641F33495AB824E7E517441E4F31164D178BE591248EA2141AB7C2D0DF9065F9BAA66919B55846E30F19B615414C09F07B2E380702DF439C04602C46D073E03AF8EC6173E32A1E6344842731C6C452A9949E9B9B5B04F0FAC1C1C15BF57A7D7AFEFC795C5CACC2B1DAF03C0FBBBBBB61A3F1FB0F00374451EA1071238E85D034956B443F3B788CE31F882806E002B80DE0F6D2D2D237BEEF6F744C138CA7303C3C82C9C97368B7DBA95AADF689E33837D0878001D6D6D6362726263C4DD360B61E02A208599671747484288A56318080019697979F1D1D1D3DC86432D08F0E716C744044D8DADA421445F38C31117D709C829D989999D923A2495DD791CFAB68996DECECFC82DACE361EE19CDFF37D3F461F1CA77BCAB2ACC9B1B1318C8F8FA352A9204912D4EB75DCBC790B5353530882601303709C8288FEAC56ABAEA669CAECEC2C344D43B95C46B3D944A150A0EDED1FE3B79F6FCC31C604224A700A017DACAFAF17FF3A3C6CD8B60DD775D1ED76615916B2D92C3E50F73F741FB02B4494A00F4644E8676565A51484E1F5E671EB6C41559F368CD6F16F0FEEAFEABA5EC37FC031C0D0D0102CCBFAB6BE7FEF46ABD572F03FFD0D5841844457FC9B670000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (139,1,'Satellite_(48)',decode('89504E470D0A1A0A0000000D49484452000000300000001D0806000000EC30EF6F0000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000095C4944415458C3C5585B6C15D715DDF3BA33F75EDBD8C6C64F1C633B08708C01F3B06BD2E020A42A2A1F0D0D6DC3473F5A29563FFA918F4A8D5A55F9A9D45655FBD192AA04A90A6DF9AAD42222448086846003C19897C1E06B6330B601E3D77DCFF374ED639B9A36A10DA6EE58A3993B73E6CC5A7BAFBDF6192B42087A9A4D51DAF4DA5ABD4C55AD525F11858585CB564E8F7FFAD2C4C4E89731674E5959595057573798C964CEC4E3F1BD9D9D9D17E63FDFD6D6A64F4E1695F81A2D3375AD32934C2D733CB75655D41A236455BB5EB6D073EDBC2070220A092B6B2734DFB555DB2B7C676ABCE37B8F707C11028AA2682B6AB6FFD90A6BAF5A565837CD0899660ED5D6965077D7FB944EA7790CA9AA4A4B972EA56DDBB6D1912347A8A4A4841E3E7CF8EDB367CF1EC0FBC48E57DEDC9449678F8AC02BC050B29D0C012CF99E4B8202B2B3C999DFFECC6FBECEE78A12A2D191D00B429CED99C1B3D1782281152BDA2CDB53DED2346D896698A667A75E0F47AC5C5D8F906184E498AA4A224D4DCF1194E0972C5922C11F3B768C0E1F3E4C3B76ECA0582CF6309148544F4C3C579397977B42083F4F90E7854286B01DC703C88048085511A4200D9EE7288A4A86CA13AA425344A0BA6E1A646CC5F36CDCCF289A1615FA6746FA8D378CCA0F6E1E5455E76BD1A8A11A2193345D27B3A81C20350A477301DAA4BA6A93C6C77A6862224EEDEDED2065503289E8791E0D0F0F13224E3BBFFA0ADD191AA6A9A9A9A27BF7EE7D6BCDDAED2FAA9A5A8CE893087C530FA988780A11F66494711147875C27C03C0EF60CCB0459CA5280FB7EE0CA233FAF1A39F17F235055F3F2C13267F2B54065CC613C10908E09048E0E2609479710744DAAE2516BCB3A71F9625CE9E9394657AE5CA1C6C646E28CF6F6F6D2E0AD3E6AFDD266EABDD14F914884366C68A2EBB1D02F2D2B9A87289287776156726D1B046C098C41691A13025809D4E7A420A2248FFC47F3041308E3CA63122A2ADBD22582EC7A553594702417AC5D8A8473C8717DA455A79CBC02CAA46D523483B2894CB0F32BA5E0E719AE9340947C0A8542F299146AE1DAF501447D9A9A9B9B69CF9E3DF4AB5FBF4FB1FE7119E120F025D19089F1D9B43C67189095D00D033C1C31031651430D2063810B0C0C99E4501108A1241DDBFBBE245052F5E23655F50FFA5EAA346486898B53510DB2005ED54CD2754B9E07908FAA8668726C3CB0C4ADABA525A1F8F8F8F85614A82CE02C22E7380E45A3515AB56A156DD9B285325E01F5F64DA1282111004F2513AE90243C0544549D236EA7F99CA32E8F5CD88ECD596099094A4C254EE444A76EA0C654E0D5C02489D2780FB5D6A3E717B79CD0B4441B6E2ABAA1E3A1805C6898A393456ACDB001E278713A4504F023B76E0E886CEF0F9A9B576FC5D8D7192C4B8A8F393939545D5D8D674D484CA5EE9E0CA56D4F02E1B8A92C0514A6F00329205DD7C875B3D269E4CE633088B52FB522F360E138F5075CE8E58B80C90F3B96650DF6F4F47898B2653D915F01A115E0C65223A43C17B2F45A64A4CE0C9BC5E148340F6F353C04480D1203516BE400DCE422269A825506D0F70713131311783E5C6B05757474D00F7FFC36FD66EF51CABA06307852361C904C26C1852B0905FEACDEEDCCCCEF99A29624B9D682D9714E3612CF8B0E55E37D4996B989E000BCE8EAEAF2D9921FD50067002074482182F484609DBAEBBA6C633A22BDBCBEBEBE15CD6903AE35C2512A4646462E3F78F0E0647E7E7E2D64F4759CCB79727272E9B7BFDF4FE7CE5CA2CE4F2EA32E2C443A44AC66CF0BE8FEFD8734359D4AC2CDE0B98A16F8429581E5D043B89ACE8EE9B1237397A26C327BA0BC7CF23B7D7D7DEE6739E62317926C1485CD21C18F363535F114AC6BC5B6EDA1EBD7AF9FE9EEEED62CB691BCBC35A5A5A55B7373739BA6A7A79B392A735B3299A0CED39FD0EA171A289D18A570D822644CEE6CB1A66993367C4FC3BC3731EFB4AE2B715DD713D82701610CC182FFA92148DDC469DCB2B4FDB158BFF779BDEA311B1533E9104FE8C44C2A8B6C74C02ACF72A6702917843A20A52AEE39DC0B4E7DF4777A7EF51ACACDCF47279A696E5CD4BCB3C5EEDDBBD74426F703740F321D076896471284B208061A950733429FD214FFF6EDFE31F1846EAB7F91F5CF3C825C482EC0DBC8541AF6F95E7171F18FF83640C1715C1A1E1AA2286CD787EE972F5F4E454545F2DE6C205464A40119FC53381C4E722D41D3B04611CC06490E9B7D67F0244C2A2D606342E7CF9FF7006E1F08F08A8E782F2828A0C1FE3EF24155C3928381239C7267BB45A4E13EEE763CAE0E0E0EBA3CC71C50F1CF2DF84FE0174C606E3B74E8D01D90883170DE9984072749A75294C112876B849B1C1381631156A7582EF82BD03336428EFA42DEADD333DA00FA2822FB3C83E43AE0A38F55661C04E43A0A2418F8DDBB776506582228E43DA3A3A3A7588E4FFBDE679281DDBB77AF01E031685A401A3439392923EDC3E3F9F730AC135A273819F5F7F73F7A0E597809056ECDD3FDE266A0B5B5F535F8FE4FD1EDEB52E9AC04695A61E93AF06D3A7EFC38AD6BDA08DD67684565195DBA7489AE5DBB367F8A8009CC16AC585402AB57D77F98C9A4B6B11C7819C13BAF3A99848EE6955FB88CCACAD3D471EA63CA2FB84A013E522E9C3BFBD81C18FB37642EF9DF14EBE75AFBD37C5222E355959595B7F959F400F901C3C5CB6B212632D7D8D871066FDFA5CE8E5364815C1235C01B8F81DC8EE0F44D7C23C4845C6F2CA284F0F206B6441C09F629C1339139129C092C37A8A1A181366FDE4C2DCD9BD0BCDE9136CACD0C5D9CEB6425961FCED34A67A119D05A5A5A1C744CB5AAAA4A92C03A49EEDCB052B0CF596792F5C0457DE3C60DDAB7EF5DAAAF5F43587E30415FD8F19DF1ACF81059C82EAA0B81B40F4B7C8B23CE063217753EF235B6D14D9B361193C3DA49D605AF56E7810F5E6D1E9D787BEBE4373036F47F71A1AB57AFFE6CEDDAB5C016FEC9DCFB618B34303000A0F5D2EBF9E38633C04D8CC7D4D4D49072FFAFC32F374E89B19872E81783053F475F4889A7FDDFCED34A68FEB672E5CA869ADABA131BD6AF2B2E2F2F97D1AFA8A8907AE7B97999CD0D8C099D3C7932533E7AFABBC399F0E90A6B3AF5EEC50CAF40FD45AF817FDD76EDDAD5168BC58CF28AE5BF0389CAAAE5150613E1A8B3B4F893B3A3F3CCF8C5EE0BDF44B19FC1FA27BD10EB7CE64B0948E92374DC7E44BDABE7EAE53F7E7AEECC3948239E9B9BDF984E276EE3DE39D44612E01D5EBC896711B56749E0CE9D3B0D709E2500F897A1A1A12EBE84A5043BCBC7F4BFDE66FEA5B1F0BDBDBDBD825D0D056CCC497331F67F00A7E1BFA37077D3F20000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (140,1,'Satellite_(64)',decode('89504E470D0A1A0A0000000D4948445200000040000000270806000000BF984E3C0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000E4B4944415468DED55A696C54D7153E6F9DD563633BDEB0276C760CC640C08404684305345D5242084B451329456D1AA9AD14A5FDD3A84943D53652AB2E5215A53F222AD22A912A95D09434691A96D42484CD82D8C6313660F0021E2F637BF6B7F63BD71EE3B004AAD8943E74FDDEBB6FBBE73BDFF9CEB977905CD7A5A9DCB66FDF2E37B464CA0EED7BF929C771D6A215A1DB3F7BF6EC4BC5C5C50D86619C4FA552AFD5D7D79FBCD97756573F94E3F54A25966596388E5BACE8DEAA646CB8D4B6ED0AC7B54B5C72F26589F2544D0D1A6652752C53B1AC8C34140D3D92C91C7E7DE2BBA4C90060CE9C079E5414FAB1EEF505144551655951BC1E9FE2F17A94803F2E37357E20C1D0D10F4A9268353535645916A9AA4ABAAED3C8C8C82E5996B7ECDFBFDF9AF8EED56B9F7E269D4E7CC776AC200CF313391E2393941CDB22C7B1D1F00E4DA54C3A45AEEBA08DF6B9F8671829B24D936CC72455C9757BBAF502D7AD8F4E7CBFFA590CAF9EB7EE29DB8E3FAFE96EAEC71B204526F2787DD86B547047907CFA20B5B7B7515151D1B8E1D9B675EB563A72E408EDD8B183B66CD942A6696E181E1EFE21AEFD124E712469BBBCF4DEAE37755DF9924336CCB149F77828191FFEC41818402393260B868211E4D8360CB6D1EF212BA3000C09CF6A944CCB6DD3EF946A4AA7AF9C01A6CC721D276C99B67DD3004CBF73D53272E8BB92242B5E7F8E2F9588953BAE59A76B5EC984FBE34983FC012F0D0E8F5069914A663A427E4F2E85C3E14F181E080468D1A24504FAD3E9D3A7299D4E533018246662341A7DAEA0A0E065DC172D2EFEE22B3D9DDA5A609181370D78DF51350DB6996039A803EE4A18972B39E4F5FAF474DA56F09C26498A228182966D2992EA4AB2634BA699224919AE4A8CD8F5CC8E2C733CDE52E78600948457CDD31477B722A72B555D23CD0316BA69CACB0FC0237E723070F6B8D71FC4DD0A4D0BC974776D1EBDF8E2EF69DDBAF554575747080BD110FF82EE393939B467CF1EB0A39D962C590CC307299148D0E0E0A00FFB4D55550FFC23BFF8AEA53056C140D16C0F0F58C7F713C918B9592310062E7B5B5705991DA6BFCD94B78481B2228115C6756D736C3D225FEF6259D98A7049C57D1F4976B4D9B1472A11DA04E7930D9A29A01D8006ED0C02D800C287631E8C431B1F5E492B57AEA4542A4D8D8D8D54585828E8BE7CF9729A31638600E0D0A143A29594DC41F3E7CFA3B6B6760E012A2D2D0550C1C772A7CD3C022A5732601039011C9847A02E460D3E641BC067A798D0177604DF27346D82ACB9E37FAEDE5229E9C05522585ABABCC826F34DD78D2D01C52455F390A67959BE888F75DD4FFC88A2688201AAAAF398C4B9EBC8F4E8965AD7B62DE9F8B183D4D8749AEEBA6B2ECD9C399372737385972F5CB840897894423941BAD0D54B3D3D1705231E7FFC713A70E0287574F9F13D7D9CA6D9BDD7E7A5446C78ACEF72BF0600D2C9B83866CFDBB639C60C6829DC6B421F1C8820DFCF6C6196F01E1EA45432FCE8550014142D3B40B2B902B1C42E279FD74F06BCCB0F0483B978282DBC2F83F67EC46E1AB1CFB7CAF817ED8F5A0F3E50E2A8AAABB34735D581C7C018A8A384BC641A16A510F3A7DB3A29D2D72FE27FC58A15B479F36642ECD3B79F7889924953B86C54D1055185571914C3C85CEEE73D344591652180973D0D0195C525D7B27013B15638FC0AEEC30138E5CA49DB96FA00CC83E30084C36B4B5DDD7EC7480FD6282AF4032AAAC2F3201F62490710011CC31049119EF7A099B603E37401466F57976B8E9CDAB57871850C357F18698D38F571CB6432E38D8DF67ABD545B5B4BCB962DA3D2B20A3AD93C48A98C45C3C371B02385941803E6560C8355317EC5656A49AE0C10E44C3A29C106098497D9939C30441ACCA424F6FAA897D96E2FB9E6C55715259D18CDBE922C684C94443BAE69DADBE7CF9FEF550B2BBF1252D2436F19E9BEFB48381706C16336C718C496E35B03F50D8E7D18EA012358CDD91805F437C18EF31FB79C5B30D77D2F5C57BB1E2FED614AB3E1C96452EC3936B96FFAF4E94213CACBCBC5B96107E8EDFDBDF8168DE56F15AC2A80AB90585DBB8029EDDA8EA0AFAA29944E25484628F0B99DA5349A1058243491F25C59F41B192F52A97B02638D4F5401389C0168C55EF4AB9981C1138A62CF94A43C41531615213E784403BD4CC3149EF6683E523DA0215455C64505A024E249EA6C6DF95B28D8F5627BBBE34622A177E6CC99F34D185E8D97CB2C5A5C03E4E7E70B81F3701E4F6500B0421D3D32F547E3A38A0DA06D1760435C39CE4D33230A19A63BB1B08930D047A92E42C01162C8B1C0E125E25DB899281BD18958AA252FD77C1D8E4F4F040063B2E1FD04B42809105C351EB5EE46F952884B79782B9A5520CB4E115E8692D5CC475F059857E50B648A343D198420EA0C888DF8CAF50F1F2B2F1B6C1C1A327220825150FF6C4343C3F750E6FE1C54DF88CA4E881FCEE9CC993334128BD18F9E7D9EF6ED6DA0E34DE788AF33E8F014071704D6432600D6B07746E93DEA7D0063A2AA1BB570D41A0685955F45489A56661C18018E84F718B1BFC0FB9D5D5D5DE6351200DBEE5E550A73A0C0836A3C1E0FE0D0CB652DCA557C5F55009C8A7B316679497575F5B2B2B2B21A205983FB8A2E5DBA6444229153C8E31FC462B177E1F50B78DDB19E9E1E2E6EC6DF3F73D66C7AE157BF468CC7E9B96776C0A38E90281E02D397F5866B1C368CC38C4351C65E13AC445EE708C61F597205681CD1BA176910E1C862499223C4D14883A376DFA2A1A1D666572072FDEDAA2CC062813A5D8137658402AA2893EF9150ADC90043C6B902119311DB1ACE0388EBCFA1AA5B0AB01640176A01406E7F7F7F0CE0B8030303211C7FE2FDCFFFEC17149E31931A8E1EA6543C46797979223D721CB3D19C3DFAFB07D006298E108BC713682988A781487193966583D24A46925403E26BC9B28A92418A23DA4C0C53838F6CEC9BF3F22EFDA0B7B777C8BDC164E7532743CC882BBBF8CFAA55ABA4BEBE3E567B19834785AAE90085ABB8108A9DFBC0923A80F120BC1FEEECEC1C9F04319597DE732F3DB6ED5B3430D04F675A9A0400DDDDDD4230597BF02E71DFC58B17B9541E866EECC5F900AE758385231CC6DC306E8020F19E4B60154DE7635C1BC6F73FC4FE0CBE9DB951A5FBA9A5F035D09B786E8F19C6B5660AA113C7B4368A70E8C1636F8642A13F43E9DFF7F97C12C73A7B980D6B6F6B8577FBC8E70BA0B8F18B17718588FB517D960940F8B3BB77EFE64A3217978FA29D44DF084048E27B291CA7F12E68A2E9003076A2CC2CC57519FD26C01C42389A3733C7513FEB54780C246E483B12CB31A3CEB97704E9EE8369D3A6AD60CF6601E07DD3C913B460711D05F3F2C9469AE609124F8826128E8FF95E84D442B08B05AD1F0C30709F8D39847D13C3726F0900D701433064CD9A357F6400B816C81ACFADE34C1B55CEAB41CAF592641BA28F59926D5C2C710AE5062FAF643CA0E6480364816193BA82234FE56A90DFEF7F0D35409A8B9E890D61417D88F10C048FE4D198CF02C400B01E209C44B105F6940F0D0D2D0390FA548C714A0178E38D379288ED835702C06D682002030D4A607EC0C297153F6E9C3AB3A5346FD86FF0B1688C89F0646E2A4DF106005E8357D764E93F510B5C143D49549A29B482092070EA440A1D7F07C2E07EEC5810A3A309FFFF8401BC219DBDCA0ACF5E67A1CB1E7353904898053D91015126F35A01629CB880426135515B0AC188D5E170D87B8DD47C7B320053DC208CFD06AAC6E59C9B11D3B9484DACEA9415C559B366A192CBA1AE4B11CC376C01C2B973E7886B07AE0D266E60C10A88E25F7118BFAD0158B76E5D1886FC04F9E0EBDDDD17FD5E085E30E017CB599CE72168C2C3BC3072F0E041AA5B7A0F858A2BA8A5FD1CC511F7BC4CC6F3862B37844C020C51C674C0BD2D01A8ACAC7C14C6BF022F8B6570F628CFFD3D1E34ECBD984AF3129A24AB6286C86A7FE4F08794136AA1282AC37B1654D3A953A70853EA2B2BD238324A3D42C1984CE327150018F465B43F71098BC18A18E73DB751103CE371CEF477A5E92880428211B19161FAE8C8FBE418496A696EBEF2D516B4E30F78867F4449BA93FC4B8E3459EF83F7DF837A7F7EA2E12C7A3C1DE64A8F733F03C10070AEC75C422C8D279219DAB76F2FB59DFE584C834DE372F9CECF5554541C04A39E45FC9F80408EDC6876F73F63000C9C915577363AABF6EC750682016110B88F7F11E2F392921251F7CFADAEA4BFEF798BF6BEFBCF6C0125E607BC9802F15C8C50C9B9A2CABCFD0040DE7EA9B0B0F005AEFBD9780601D59B98DCF09ECFD930DEDADADA68E1C28522EFB35D5CF16DD9FC08A98A44F5F5FFA6D5AB578B4A301E8FB34EF8A1015F056B1AF0686CB24198B43A00CAFE5B78DA6183B35E640A33180C007B93D31EF7F36228A82D5682991159B66CDCF808FAC3FC0389309ED709D0DC27560E54833521CC3895DBB614E6F9F9D9B36757C14037FB0B5056F0B2951FF773895B555525006160B2ACE0EBAC116BD7AE116B0163C6679EDE7071E00B77A44A9F9A1B9B0F2D5026BB109AD44A1003AF6F6D6D5DCBAB416C685660B333BBA6A626426124567DD840A63EDF93058BEF61701C3316FBDAA2EEBE9D1BCF5BBE26F75FBFDB1FFAFE6F9A03EFF6F6F69A939D0526BD10EAE8E8D80B719B555BBBE018285E905D22CFAE0DF254373BC9614630180C04E77EAE12B9482A5133AF2E8CA4CD939DFAD1E6B8F7D487D19CD648E44262B233C0A4A6C16B54847E78F9D94030F4E4DD8B16E4F17710C3E321C11B4F7A9829BC7138302B76EEDCD98D14B91521D1028062E8B79B9B9BEDA9307E4A01E06DD3A64D0F41CD0FA3D8794892946D256565F32BCACBFD9AAA2003A8C2684E933CF1E9E838EF1C38B07F17C2E0A7604537263E23C78F1FB7DD29FE2F2C530A000BD6FAF5EB7981B210AABE0B4A1E445A3BD2D8D8D80AC19B91975730379E8C75A61289F7912623309E633C8D5837A6CAE3B714806DDBB62DC6ECEE308C8D20436C408CBBF0EE19507FE8D3E6F553EDF55BB62002FA5F422DF00AB24213629D7F8F93607CDCE51F026F934DBA55608FFD3AFB5FADD8DE8AED3FC7289D2663EC3BED0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (141,1,'Satellite_(96)',decode('89504E470D0A1A0A0000000D49484452000000600000003B080600000084D18F0C0000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00001A4F4944415478DAE55B09741DD579FE67E6EDEF69B1B55A12B6E47DC70613969098CD6C095B4DA1E0B027262929D0F42487D052E224A714DA2C276DC3499AC0490A760A384B4981938425D80683C5E245C6B22D6FB26C5992B5BFFDBD997EDF7D739F9F8404C1349182C7BE674677EE9BE5FBFEFFFBFFBB8CE1388E8CC7CDE07FC3986559D6755EAFF70C3CE70C8FC723454545F13973E6EC2A2D2DDD964C260FB2C462B1B75E79E595B63FEAF3605BB870594532E9D4DAB654DB4676929DB6A764B3D97ADBC9D6F8FCC1BA446C206C3B99886367028E93F166ED9465182589AECE3723787E7BC4EB8E05015555E7464A4A4AEBE2F1EE72CBF2977BBD9E0A11B3D4B6ED229F3F34D1F224E774756C5ED4DFDF3511EFAD01107DECF3F964D9B265323030208140401289441AE5B1542AF5CFEBD6ADDBF97EF75FBCF8CA52C709D698A65369DBE94A478CF24038D210EBEFF1DB76B60C80563AB65D95B5ED0922769198463018087A9389A8E1A84770C4B1B382B6425CB9F778BC924CC686D4B14D3259D9DADBB37EF2A8C4FE290868683837609AE6539695BDD8B2C4F20522629A161ED016BF3F2C1EAF4FEC6C56CACBCB01EE5169DCB40E2F60CB48E0EBE3DB6EBB4DD6AC5943F001E862B58FC7E3363CE296F5EBD7FF9733CA8B9DBFEC4B7F93B193FF0A807C0A448065991E5CD89664621880D8673369B1E0793C97CDA6F3F52441FD77B2A4430CD3945432AE40D7BF374DAF1C3E145EE5381BBF36260418C6126F4D9DFFB1805F961B866379BD01F1FA02302A5B4C584C004438B6A3009836A3464CE990CD9BDF1E11F4C2BA891327CAFDF7DF2F77DF7DB7ECDAB54BE6CE9D2BD5D5D52480E5E8E0E0E0FCC6C6C60EA25448C4F9977CF9B16C2AB1C2115B110CA950FB40282CD1C1DE7759B5B662AF3F28319CB7B3194542AE64D5DFF016F1F9E185F1681E7C4772CFEBD8C5D2D7E75990C96C6C1AC92088CF1F8500806455579FFE88CF6FAF809B5B0418D2A2AC5E49088E3D1E1FAC0B0FEFF3C8D4866249A77BA5B7B74FBDD84816AF8FFD7EBFDC70C30D525C5C2CF7DD779FBCF3CE3BAA7EC58A15B27FFF7E45C2912347D61E3D7AF433D8A788C3C28537841C27F5B23FE03D25EB82AA80C2DEA2F7810402686761F136C177545D6EEF80A09044FB07708ED223CA6BB4A23B64D330B2A8CDE05DB37859FC266DC3E040035F26DB0F2271FF4C00F5F0BA8C07B1C1B4B329C3E32D4F7C280266CCB8D41F4D467F04002603268F6979AC60281C8847A3663A632FB00C5322452532188D8A65007CCB809C5AA89BA0F4920F396FA609500D79E185E7E5820B964926931915FC8A8A0A39F3CC339507BCF4D24BF2F4D34FCBF6EDDB65FEFCF9B260C102E9ECEC5404ECDCB9330E226742F6BA484269E9790FE3122B6D051A4C569CA4639829E096320D33EDF37BF10C3E23934E0230876A62D263716C198E0D7D72AC5024E21B18E8B5C09289406BE619A00E194E6E8F0D1008AEE37A8FAD3C44936DBB7BCA16CFFBFCD353C74500C030A7CDBAE48974AAEF4A68A765D2C2212D16AD3A4BEDF3280B0F0423928686024655C7F3A110AD3DAD9C744A6D56AA2B83F2AB5FFE5CF6ED6F9555AB56494F4F8F0251838F0C482291884C983041CACACAF0FB90B4B6B6CA73CF3DA7C06F6B6B937BEEF98ABCFDF6162D41D2D4D44422EFC0EF9EE8EAEAEA3BE5B4DBA1C1D9BFC3F5FCD039756F926FE3DD0946280C091AE8CF4B4A5EC73560307206FE786CF0189836BD2593FB0D258981D88B58014F2206AADDBBCAD0FA4C7AEA6B1F98804975677FCF71A29F17C978292904351008AB9741262396E5113FFEF6587EF550941F788622C80BE949A7928A8C59D34B65F1822A09068372D75D77AA2C62E5CA95B27CF97255A734162F1985F774747450569882CAA143871027362BE92101D7FCE55FE0FA5E3970A05581CF60BC67CF1EEE7F3769D2A4CF974E3CEFCE60387C2741CBB860516A60C58A09821608041103FA5D2B768B0B1249807740A21884337910ED0219D3C7B4FE5432E15A7BCE0394B58FE001A6E993FEBE9A07FF6002AA6ACEBEDF90E8570D33E327F004D1EB0B0270B85C262BBA8EE0E7B2055A998962C1C24A941565D3F070B7DD1DB75F2CB5934A05A9A3DC74E3671491B367CF96EBAFBF5ECE3FFF7C955EF6F6F64A77773702599F40D301F2016969695181975E70E515974A32950111CD0A787AD6D4A95365F7EEDDB263C78EF8FC936F583FA1BC7AD931B7CF0192C9A4DD809A913048ED3DDAA98E69D18EAA67DB4C3EDB09854332D0DFEB026EBBF5B973EA9FC330003235016E9D6A5760F1B6FB1C2AFB0B54C9D1AEC0F2F72560D24967DF654AF28164AA37A864C462F1AA6C86190C01364102FFF678FC7909A2D5E764280C574BAB76865B6F818415572FC0794369FEA6D75E965FFCEA3999366D9AD4D7D74B5D5D9D5456562AE9E186AC46E9FBC1830715F025454139EDB453E4D58D6F49178841EAA908B8F6DA6B716F53C951674FB51415570DD35D3B07ACABCDE87F28B0281BC72CB6D0AAB3002A20F1E8A0FA9DEDD879126D9724DB3D56F2C334362F63C7FA02B938E00C9120CB3A095E67D58E4A4045F5C7AF739CBE87D3A9DE1205B26BB994121CA818C43A5A3425287703C95BB81FA99BC7F2490AE0E77E9B6BEBD8A6B4EDEF48FFF517CE80CD381E1240D206FA0EC1B2F74A0631AFBCBC426539D45D9E8FC5A220312EE5138B91910461E1076477CB7E053AC167DB9B6FBE59F507DEDEBC5D56FF6C2BC3E131409D9135B904C1BCBBF348411BA700A89C0C85224578B61ED7AAB534690B77DC4C280B430B214644DD3A6784BD1CEB3BE0DFE040E87036DB58372201EC7617159FF1135FC839DD319C691012A2A72425182E82DB277115155A15A821D425A0BF6268A0D10EC112B822D5A416F10A96CA8078DCBEF780F3B1538A06EAEA42C5045F9380344E2ACB42A27BEDA6090F816C2552694851BFEC6A69853744956C11784A0EB3A26BAEB9464A4A4A54EC58BD7A9DAC5DFBAA7A61CA5EAEB32479308E81F6C7E8FFA88B2205CD0511EC758FCD718FD36811C35F0C38CF3ACEA62F8F48C0A486A55F75B2D1FB1C27AD64474B8A1F41D4CE9939C8800C2187F6C1D219DCD8C670DB86C2C56E96E00CA94F26D3D2B2756B3A136FFBC679E7359403F83B19643501DCEB4270B927D83C66E1310BE30ED3CEB3CE3A4BC996054F6BD9DFA792808ECE3E04E1C312C3750D4825B2A02EC8668C76651A0E28E66082C134931E68C078BCB1D80054C28675B8E76DC752F605778531102313E41AF104FB0A598375C4D72ED0F844CC680E07DB5FE14338C49BD6EA265CEAC1003E4A27CA9B38F73ADAB422A1480E21A072CA276E133BFADD6C3A1AD1A0AB94D2EBCF759C5C4095140178EE49880699B14169663C817A23274756EE5CB43F2A8347DAB2E72E9D641D38B06B1B34FD89458B16DD8F406B319564FA391A09DC988E22AB913973E6C8AC59B3547C60A04EA77DD2D834083D4D0E91171A5E001EA1D2CB42E9B187CA1033A05874E0DD1235AC9DCFE71712A0EB15F8B6962D4B0E1D887754551D7E7C9890105FC3F5B814E2D311546DC6BE09F2DA896421A308A8A8FDC495A6117F3419EF2A2D04DE70D347C60045139508C42AABCF303F365DF01907428AA80C523C92C5B4926321BC46E7E10E69DBB5E399FA29B1FF9D3B77C68DC8E74F07FB29DCBB070F5345AB8EC5622AE5A4B4B0F0B998F313E8D2D25295821270164A0D4B5F2C2CCD7BA2EA5972430BC7860F8A8A8AA5B7AFDB0D8AF690A0980BC27C4E2604260C263A346B51836D2EF8E2A836267AB8C944DC8D032EF04445797A44FABBFB7F535EDEF5C448A39E001D76EA64B0EF46D98763D85C5B14FBAC515C76FA3A71BA3FEE48D6606AA57C86F93DDCDAEB635663E7B317663A7E145429903559C16051EEE55C42743DDBEDDAB2239D49747E77E2C4CEE75CF734274F9E7C614D4DCD670074950EA42481F97E189D22824B8B27D81CA0639065B6D3D03055BA3A3BD4F9B60E1F321D53C5099D0E528229BF0A5864250910CA38E0B8F52A2AE407D21C9528407E46B57A9DF1F895F5C7DC6CCA191AB4D1A6AF272076A6FDB39148EF2618549686AFBBC6F0602717CF4C444449E29AFD30AA28ADDFC9B9C7E95FC7898B5026E037A5F8F104CB637AFC012F3377E1D806070B6905C170102E9F02B8864A3D99F7869125241094A9CB5AEB496022969643BB5B8F04FD3DF71515F5ED26F0AE1ED2223270C1504343C34AC8CC159A04BE3007D5AAAAAAF2FBC3870FCBA64D9BE493E79C278B169F224FACF96FE98ED6E18102C7C674DCCC250798A37AB68303BD4300559E80F66A2C289B038F4310D1C101954EEA7AFB5DF97B4ECA7232E5BCEB1CE361C7214F7B55E5FE33814137DE23E3BEE390E00A021C18958377CABEF1C61B593D38374A1674769148B40C17AC308C6C256A2A505D86FD448EDBE3E638CECE0401D5909A62784B103265A6327C284391E6F7A5E275B589D707077B9A202D9B70AD83CC10E88A7818BADF00FE4E4C9932652D0858421298EF53E75127F012D5DBDDB973A72C3DF77CB9ECCAAB544C78F2A98DB27B6F8F0BC4B10E8FEEFCD06B08347BAE8592A2BCC370ED12D884C31158FF603EE3325C2F6213BB80584A693A95C8F70B48B2E8610A75FD08F4BFFBF1D2D2FD7721DE33BBC9E6078646CC9386023E6A1A8A9D67C284093E001744F1B2E0E626DCDBE21EBF4395A53204005C0D99B8F4A4934E9A535D5D3BB3BCBC72726969D84B4039698207CB405EF6E2781B4A2380FC1D3C602F7E9F4087EB6AC8CF238C010CC61C4E18BE7DFAB2CBE5E6CFAE5441BA69DB3EF9C6FDABDDBE85A1B4D974355A8D968200F6C44D8E25A93AC91D9B2AF7112A16EB42882D1CDBD16A61E407D572BD5CC71D8EF007FCAA9D1490AC3CCB3D1F8F452493ECBEDEEF3FFC3F4824E2A3CD7C7DA0F9009700133AED05501E0064F9FD7E137A46F00D14B5874B99EEB1D276971C0BED66435ECE41B09D034D9F0DCD3B09AE69900C16643E89FEFEFE3741DC3A5C7B23885B0D0282EDEDED2A100FDFD8217BF83F1F157F30A048786ACD2F65A03FAEB22E965C47D1E3667BA6F2C20CBC311E4F4A7B7B87F4F70FC2DA93707B3301EC3C36D24C3CBE49A7E0BCCFFB7509148924D9CCF54D1491566E841652DB55597960098CA91D3DF594F3013B18A3F6845D128C534F3DD5ECEBEB3300AA01B04C7790CCC09EA0333B315D52541DF36512052BF7D06B501742DD92DADADA8F613F1FA4CD47DB0AED1D2C202E8D3A2F3C458DFB8CB4DD7CDBE7E49CF32E505ABD67F72ED9B77BA7CA9218B4F94C248E8FCC67E2DF7A7882B2A58F472AEEF0770224C6D0B78923CB43F1260DC3934249B293CEEE088822695E40E201C15E8634BC2E7EE36C88440EFD3B9EBD97F2FA814796DF8B30430FC6BB7F8ED64CEF41165FCA001806A4C40438162CDB0BEBF1B1A08D1F60842B2A2A16A3E77A2AFE5E0C8016A36D984071F08D99D008CF219508C85F7FE05F14C04900D7F8EA3A35394312D88760D6A483F94820B31ECFD2876BB581EC410E313116A1B4E37C27EAE26E8CCAAAF410A9A3FBFA4A6E45299961152413F0267B1F8C672BDE77FFF1C8CFFB12F001E7088C518831EBEBEB4D58BC07807948043CC9CBB179B714B15F00ABFD365EC4C7592D5E8A2ECFCC2AE7FAB9F2B92F7C51A6CD98A92CBC65E73B1243278B04F01D3804CDF624855EC17E03FB0FFC1D07F0DE7EFB6D964E6457DF427B58B9916236E6829D75938314AECD0E133D3293EB477182C624F016F79458F7BD38DB7604A515CFD0ADD3CA3123E00F204649DAF4E9D34DC80E638A17D6499922093E78C5F760A557102C47F5AE8F01AF89983E73A65CB3E22645C020C03FB86797224017023FFC981EF5FAEBAF4B6363A3DA23B1F82748218703BA69C50412F723E069DC2343E0713F962C9E47E54CF02E956C900CC63BD555425E8F1287E70E70D6ED78ACFF4F42C07B9021F3E6CDB3A0F92652470F24E95200FB04F37ECAD170EBD744ACB8E5731241C78C241CDEBF473C088885248C4400FB1124807B48C633E8DC3D0020DB703C08F949E3FE1978A88DEBB330E8DB38970786F1AF70CF78C7BC1ECF6C3735356565D8E4FFB825E0BD084126E4AFABAB3BD8D9D93991A9E84812C4326FE12259B4E474158C39CE93414F9640B3773C12119C4923F0E8FCA83DDEF728B2BBCBB1DF8DEBF52173C914E4ED1F180CE74302688C97957124E39C73CEF90ED2D3BB504694201606DB659FBE52F540B31CB48BF549D01D1FD2A0171E53D2083E3D807B6E488BEF467C588BC3CEE3491DFF5FDF7B3C2D4DBCE4924B66C1FA77701A7224F9D1C7B3E79F2C655593940C493A2991A02F3F40379C004E4F12FC37DF7C53CD25730389CF4186FE161ADF8A7BC58F57BF3F720470BBECB2CB364036CE1A4D8258C7B199190B16AB8142F64A2B8A8E8D900E2781A0BFF5D65BCAFA77ECD8A1BDADBFAAAAEA6210D80CC9EB3F9EFCFD234BC075D75DB71281F8073A151D8D88BA86195CD2A0BCA0A2382C65134A860C55B3F0DD987ED2FA4902535CBD21487F1532F438EED331963234EE08B8E9A69BCA200B9D00D6184D82583857EB0997AA601C42EE3FABBE7608013CE64A0A7A80DB07E09854FE3EC8725E44FFE38BE8931C7727EA234900B76BAFBDB60DA968CD6812A48F4900E78BE905A72D982DA525C543266D3892BA65CB963C09EC0DE75FDC3062E87B5C8C94723B176F8D950C8D4B026EB9E596A76099CB47939F7CBD2F205DFD3145407DED24593867469E000E4170851C09D8BA75AB343737BFEB3E90A1AF2397FF31A70AC74A86C615014C451103EA90A5DC0850BEC9593202C9A16A76CE083447463959C3754324A1AD7B406289A4782D8F5C75F1B92AF092000E4D70E5DCB66DDB14015C57347C830C6DC0B556E29AFBD17E4C64685C1000D04F4240BCDDEFF7DF0650AA59A74734D929E3C829FB061C29E5C01BB59DE49C76DA69321BD9D0C18E2ED5FEDCB33E26F366CD506D99F19000167A826DDB2311B00544DE8673BBDBDBDB07382E74421100E0CF2F2A2ABA0316783940B3A2B0F4E2A2A2FC8A0776BAD4A2AD81813CF8EC23900006548E9EB26DC3ECF9326972BDD45456C8F24F5DA8962E52FF3509238DB072C37D5F401CB80F443423431A9338302604705877EEDCB9CF783CDE0B3300983D5A356C9CCD88CFCB4E5548FCFE80FA3285335F5C42180E05A404419664504E480081D5336835931B64FABC93E5E2A567495747BB2281BA4F2246DB40DEC3C5C5C58F80E416F43DFA4F080F40D0AB47FAB71D12122498D4745A3AF7FAB8B0704E967BCB5D979448C4253638807D4C7943A175979455C8B9175C245E3BA97AC02481F235D2866B6E83F5FF230E9B407EDB58F588FFD4A3A1812953A61C867470F585029CE3F77A4FA0F5DF4349F0A880AB8A3AF6492F246957F33BD2DA7A60C83C724DFD34A9AD2C933D2D2D4AAA46798E0118C13DB87623AEB91719502FAA331FF92C082F7E6B4D4DCD8F99D568ABD74306045E17ED0D9A0812A00B53500654F66AA7CF9C2D2DBB5BE4F72FBD001262FA1E5259532747DA5A477C06C496A3909E6FE13E1BF1E76ECE867D98F1FC3F2B02AAAAAA9EC50B5F4C90B8D88A8196A06ACB676150652924A2D00B1894F991063F57E235B825D35979F9F72FCB6B1B37E41661B973C3C3B78686062E7DEF6C6969F90ADA6CC1B3EC1D2BED1F130260FDCFC382CF7327F3F3ABE0F4D0013D4103CDBF093EDB9010D6EB09775A3F17E7EA8DF5F48A8DAF35CA534FFE6C08F824A3B6B6567D77405219EC914DFD88057FEFDAB76F5FDF09430040FC2B643F6BF4AA6776A80A4730F52C962686C7941C82AE25888195E0F39C065F134370D7ADDF203F5BB35AD54D9F3E5DAD9EE6EFF404BDDBB7E8441675333C6B0BCE758084F4093118076BF49C7CF2C9030CC6048C5EC02F1E0B812F72FB01DAF249849621663CDAFAD98ED64DCBCFB869AC2EEB376C90D58F3F2E4B962C515255087E0109F7E277BF403900321227CC601CD2D007E1055FA11C300DA534106C0D380BC1A5BEF3A30BEE490EC1FEF5AF7F2D575C71853AE63A20ED199A00FD911ECB238F3C2A070FB6AAE5ECC3C1CF6612C9CBEAFB7EF86473E4A763D907181302005E78E1C2857B2B689A726CDDBFB67EED019A045DC74135B6A3A45096B8B97AAEC8501F84B832C442A97AF0C107E58C33CE103DA6A4BEAA49C5E3DFBBB3C3986BA4335F7A74E2756F74075E8397F51EEFB2923F3B025C12428B162D3A823E4184430C04555BBFF6040D3E8F69F19C50BFEAAAAB1461FC5B7F2DA381E5F80F89E0A01DDF89F50F3DF4905A1BA4DB5846ACEBE13B3A9C868174C50F7E13F9DA82702AF5F79B8A7F18AAAAEA6F6A6A3A7108E0868E50F1E4C9935B017E31258429E27029D2452D4FFFE427D5B702CC90B4EEEB4F97F4F705EEEA37256D3CFFFCF3CFCB3BDBB724E7D5C7A24B67F57A2EAC884676BFE969DC79D4BBEEDFF694AE194CDA6DF09ABECECE4E4E143827DC7034002D82176C4136544F02746AAA3D8185BA4E2FA194A86F10DC1C5F4B4E21119A040ED2F19B622E6FBFDAFBF48EB3E66466BEF45AE0270BC3C94B7E7E2872EF4F0F96BECAE5297A51D558813FE604E80D72F4C5AAAAEAEFCE9E3DCB6256549892723C7FE9D2A54A7AF4648C880C21412FCEE51C00C96280A7B77CFFFB0FF73BF1DEBBEE99D933F5DE6D13562F2A493B274F4C998F1D286EC3F512483F3363B92262DC10C06DF9F2E5F7C06A67D4D64EBE71C992C51E12C0C13612C22F650A67C6F47A2E5A3D3FDEE6980FB321F62B721FEEA5956CAD59B3E63F1003D6A0FD01FCBE97ABE0406A1601D776ADDE1EEBF71E37045C7EF9E521E4FBDF58BB76EDBD3366CCBAAFA161EAED955515E5A79E720AFA01DEFC601CC1D7F301FC9B33630CD8DA1B08FEFAF51B9C679F7DE61190F823B469435CE846B6C475A0CE58CACDB82680DBD5575F7D139EA779EBD6AD6FCD9B37EFDBCDCDCD2F76F7F65E346DEAF44F81902ABFDF6BB25356890C76625999FAF2854F4F4FA1E6B71D6C4BEDDCD9DCD8D3D3FD10C0DF8E537DD4790459EABC3D9E801F9704AC5AB5CADCBC79F36F11781703E83D870E1D7A08127215AC388254F20D04D5571160F941C82458FD82E292093503FDDC7A5F4700DF00F919841770582181F3043D05B9F9508B674F3802366CD8B00B32331520271128BF830ED55B8383839DFCC80FCFCAD99724759CED418AFA3A47FF9E2B964182AD357E3C033F2E094020BEBAA3A3E3491E23155D0B6FF8079011E1172DB0EC0EE8FD805E0EFE5ED719EFA08F5B026EBCF1C6F908960FA0237529329F4B5E7CF145CE58F9F8D50ABC21E67E5D3FE699CB479600BDDD7AEBAD173DFAE8A3BFD51F7020D524E8D98F1AF8E39680FCC3157C77F6E7242B1F64FB3FF7E7202373868E600000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (142,1,'Satellite_antenna_(128)',decode('89504E470D0A1A0A0000000D494844520000005C00000080080600000086130E0C0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00003AF74944415478DAED5D07605455D63EEFCD9B3E99992433939E1048680955429122010958168115140B62FFADBFBABB967577D1DD5F45DC75577157D9752DABD8B060A1F75E4312080910427AAFD3CB6BFFB9774A26805B145877E1EAE5BE79EFCDCBBCEF9E7BCE77CE6D20CB325CEC79F2DCFB0D00C05E88BFC5C2A5041A29D017C1902EC4DFBAE8017F6AF1FB598204FC85FA7B97249C95666CF8FC2FE59700BF00E9AB4D8786A25AEDBEA0F57B31032EB1EC635A9FF4E925C02F40EAEC748E6365E85AB468A1EF12E0E7318DCD9F73DDE2A57F7BABD5EE7AADA6AE7EF9053719171BE0E3A7143C6DF7CAB72F59FA8EEED8B1634F330C734131E02E26B09F7EF983FCCBC78ECE8B35EAE07875CBC0C2FD7B0F5D28FE7D51021E63303C9E9A100B033213A0DBE5851863CC4B17FA3730C4DDFC6F4C43F30A0627A525BFFA9B67170DF5F87869E7BEE25D1D1D1D737272870091F09AC6F60D8FDD56507049879F0BC33865F62B268BE508A3504F7DEFA32F0D20CBBAFC3103E7B4D457C1EE9DDB61F3D6ED7068FFBE3FFD3B7EDB7F95844F99B12057E6E4757AA3293936D60246B319F4861850A9D46088319E18DC2F35C9DDDD1CD3D8D40423464FB0975634BEF8F0CDF92F5C02FC3BA469336F79CD1710EE8FB32632B6842488B72640BCC50A669311F43A35700A16BC3E3F74763BDB620C3AEF808CC4C418835675F050E94B77DD74D5E39700FF27D3FFFDF6B54C8F3BB0ACB4BC7C9A2F204342722A2426A54042522A2425C44192C504965803A8551CB83C0168EB7442635B373435B7417B6B1334D6D58866459776D9B265172480F51FCB529E7DF65936CED6F76105A3FC3F96E1FD030664DFEBF5066E71076022A7548152A5028D5A0906946E8BD900B1263D34B7D9C1EDF5D3F32A95125896054EA954387CBA07F191BFBF04F8B7A48FBF58959B9639E44DB7C733061D971583FA672D038679CDEE74D61D2C3D71B7D7EB59EA763935DD0E0DA8380E02BC08CA962E54293C74DADD60777AC1E37683D7EB05BFCF077E8FE7EE0B05F87F944A595156A6D2D5753CED717B9E42B0DB3C1EDF03B983FBF773385DCF38EC8E676FBAF147BFC3DBE4DB1E7936DD6CB62E8A8B8BBF2DC6685668B51A50A00EE70591026DEFEE82AECE76E8686B45B5D20CDD5DEDF265532E332C5BB4C87309F050DA5F746C9CCFED21523DC8E3F1FCC59A6879D9A88D59EA703A321C6ECFFC6BA74F3C74FA776EBEF7A99C40C0B72125233B8941F5210A02F8FD3E40E90787BD1B81EE80AEF63694740FE4E60C7E66E587CB9EBDE8554A59599981E30CCF730CF300AA8F530C0B533232528D5A8D7EA7C0FBBFF47994B3116CF7D9BEBBF59BBF0DC32249A33735F71F3EF965491226F381C00404D84840F7B85D917B1D76FBADC4345CD4127EE040D90C955AF5865AAD4AF5F9FCBFF37ADA5F1424CD73A8226ED06934F70C1E9CF97763D9C9C9C9AF6325FD0F1E3ED9D0D0F0227DE179F3147DCB1B47C4C4C4CCEA97D9E7698FCBFD6A9C256E487656BFB13653A2EDFEFBE7BA2E3A09DFB4697FBC4AABFCBD5AA9BA5506B95896E4395575F5A25EABD9A9D340BB2C8AC310ECBA7FF41C51149F512814BB9A9A9A3E0C9F933FF944C4E2E0BC79779D4AEF93F17466465AD5F1CAAA1D2CC3E48B2C7F1D5E3BAF21DB1F9C6BBF6AEDD61B25462A972479AE0CD25322EF185D52567E05FED05D0CC08713C68F989C97975BF7CF3CAB05536363E3FBD88AC5D3AF7DF2C99B9D28EFDDD8C0B3395EBF0A8F9D0C23DFF86FD3E159432792CAB8B14FD680F9494929FD13935263E21312559C9213650968545396249024C983B906A5B04A96C46A4116AB6451A8167C52D9F34F2DE8F8677FC8F2E56B52D57AC5EB6A95FA5A7CF8760184BB0B0F543A7446EE1B8D469D8D7F69DAB4A9E3F69C63855A495EF5E5971FF5FE7AF1D295E47D3FF86055EC4D375DD375410147B0CDE8107C3CFDEA590583860C0799FC87AA3E32A04542D9A3C70470F259CA44D02763064E124925A0E321C9CF2E5D5186D7B609A2B03D20F2DB96FC6C61F3D95EFBADF73EBB57A554BD28CB2C79F67D0553C72DFBEDD2BF5EAB556BDF9265C57AD1CFCC9D7DFD54C7397F7B99023E2AF82B18A2766E6554CC8FB17CF382013E70647E361A9A55F3E62FC8CECCEA0F61A34A013F0D780AB61C049F1C13A043524F322349620E96394A51BC5F25A9E1D9573FAE1005711BB682ED9200DB6C0659A3E1946FAA34CA89F888AF41E0EFDB5A5DD659B2B8EC35AD4E730B30F0E0EDB7CE79EF7CBDBC0C0C01FCC78585854AD9D7B14186D8767C9F1B2F28E04A25773DCB32D97DFAF60325A7881286D381EF013F02BCD41B7C31027E50EA2551CCC6325B1485BB18DE43AC9A2C28147E9F9B5FD6D664FF6DA0BBD1A2D1EAD6CB1AD925338A910FDC7D53E57935604109573475BAFB2C5AB4A862E91BEFAF6080B967F5D60389574FCE6BBE2080ABD59A346C5FA043EF0C0BFC9F394D2A28E2E4FFA8317370A6B4CB72086C3904BC4C81F77BDCC0BB3B40C9C820E86218AFA4D5F08270AF10F0DE2B310A19384D995B522F690747FD79B7D00A2AE1200B72161615F85244ADDCC709E25C2C979E779672A0B432AD7FFF017712606A6BAA80631534ACC9712C957692496C42A5E4401DCE2A258DC469D41C0D0A91AC3D23AB40A364C1D9DE085D8D27B07644D0C4A50067B0028BCF6FABAF04AFB3138CB6744663B4E568B4864F8D81D8E62797BCFBE613CFBF954F0255E7E3E52559AC0C8140008787EEBB65271675701ED94AAF17E103F093D878AB13D50A6CDDBC01ED08D0180417CE51C053F095047C456FE031AB09F82A65A402BCEE6E282BDA03ED4D7560B6244372762E184C667074B543E9811DA8C654D067701EC4982D802A05B316B45A9D59A7D5DDA9D1E936070CFDEA9E5CF2CEEF1E7FFEED91E7F2E58D4AA101E5DB2F334C56A401037C84795C515179C67905BCB0F084A5B9ADF3EE384BF2AF394E59D7D9DE0E470E17033A0498D9602813B3221A786518F410F0AA20F041B0396CB13294161F80C2DDDB4181AD65E8A871803413F41A0D1C3B520845FBB743FFC1C32067C46830E8F540824C04EC20E8BA68F093755AFD6368480B7FF1BBF78F3DB5E49D5F3EB5F8AF59DFF7E5516F4BA834AB2024E194ACB094AD30A20C379C571D1EE0D40F37B7763A398FF8678EE33CC854FEB261DD6AD0EB743068F060049CA1E013A96768193A0E2AFA68254FF5FCC98A93B06BC736D4DF228C1871190CCC1942DE23A2DB33D128A767F4015B6232A5992235B2588A5230E367811E8BC4D8D2128D2D290760F96B643BBF7EFA77EFEDC77B96FB05FEE33FFCFCAE96EF884125FEDCFEE10F37FEF8AAA2F59BF61C6718763E7E5C725E6229BB8E1F8F69AF77D5141F3EB964D1A3372C2617E6DCFC3FEFB677742E2006F147B366436EEE9008E83DE09F09BCDBED82D5AB5643E5C94A043403A64F2F00736C5C90B79FC662EC0E0778DC1E30C5C6D34AA2A08B7204F0E8320C7E08741AF98BFA8C85B04914F80FBC01CF17AF2E7AE89FE6EC7F7C63F92B197DD2EEF3CE98A4454B493DD2759BF6FCCA1217FBACAC60068E1A3AE0F83957299C5F756F734B27EA0A21D293BDE8A9FFBD73D284712EA24ABE5EF905AA9792A0868320B84C1878CC8A90AA29292E82575F590A1528DD050505B060C12D9090608BD2ED3D7A5DA35181D51207B6042B3217071A631674685C751A256655AFAC8D946A542F54C59C96B50A543F051A9DFE1DA321B60555CE473F7BE1AD71FF94E1642953510E3C521BD1D9ACC47E182CE5F9E75CC2575754A8C51A5755E19163EF2C7AE4C69F1F3C5C354090E1968E2EC72DE8F7F5D9B37717ECD8B1934AD36597E5C1B4E9D3515F2B29BB508424DDDE6D87955F7E09274F9E84FEFDB3E1FA1FCF86B8B8B8B33876610F35CCDF837431C00BF88C6E506B74A0407B2011890E4B7B58D2C3521E5135A41483D7A8B407255E081F0BA415F07BD1C9FA5D55A6E18B4FE6CE15CF06C0D23FBF7F4D667AFA377D52D3A6E7E666AE8FD8B4A2630751A80C23870F18784E75B8A11B9EACF3B82D97E7E5BAD6ED28DDDFD165CFEBEA7254B7773B3F1064F9FD1BE65CF71734A2E3B76EDD06870E15426D5D1D5C3F772E58AD169473161805033B766E87FAFA7AB8FAEAAB60DCD8D1D4F845AB9D6F073EA85E5428FD5A8D0D1CA862142021F0AA289522F7023B1A684154844A2E540921A0B10C02AF1C8B9F57F4AF0B54FF7CC93BAFA035F8EB8B8FDFE1EC2571A0A0D4105D006238D7475D2252FEDB95ABB70E9F75F5E4E27326E19F6F3854842A6178674BA7BFA5AD6B331F10DFF8E54FE77E1DF26DE04455F3E886D6AE7D7BF6EEF36FDEB4592D083CAA0F0E6620B823468CA0AA8480EA75BBA92EF7793D1404638C0174061D18D0E8720AC5194E54D8818A069E80EBF57828782A542F3D122E87245E8C92EE334B21FA7A44D2855005D08AB08BBCF0265E7E75F113B7D652095FBA469D99ADF76466A4BF9233A8CF63E1DF575272224594E5BAFAFAC697665E9BFFC43903FCED15DB720C264331EA554E72FA5D55279B0C0840236270087321C3C885C3C766DFD5E170CEACABAA72ACDFB0CEE8F7FBE9CBF7C7D6367DFA0C888F8F8BF075A2CFC978D480CF8FBC3E00BC1040FDAD069D9E503C3555471166735A7C26ECA106C8F750CD908AC5973E0B73391DE868A98FFA2C844B214AEA692508983F1578E1E5179E5C78E09BB5DB6B33D3D38A730667CE8C06E750F1F1AD75F58D7DAEBB363F132216EC7B3AB72B3F79BBADE8586D312F88F3B5068D9C94616DF30684553E975F42899D8DC8DCDBD2D8A5894D8C33F82568CEEED7575B5B53C391976B47AE7EE0C07EF07A7D9092829EA3820B05DE18541368E850BA8DC61850222F97F17E3F5682CFEB25DC88727AE26011E9A715452B2C784C2A45C9916749B4E490F313EE1FED8429143D9F15A8D614BDCEF7187292597C2EA93C5AB2E418AF2A14B958DEBD654FC99556B381B1C49A2C366BEC1FA3C1696A69573B1CAE5BD66FDCB57E4CDED0BA7302F833CF3C0343FBA79E38545EA3F107C4C91AA5C2014A45A21F89859DF7DCCEFAE145348E355A83DAC7033BB1BDBDF5BD5123470EAFADAD65887A21155F57578B8ED34132C60312915713D5122D0E044852015A1D320C8D963A511295389EDE488C6F18D808F0C4A9226347F0610A4ED1E3EDF602BA37F88A68F0D99E6345C8C023C0083A021F049D668655A46B94AC2DD1126F59FAB76F3AD7EC3E7CB4E0F2617450505D6D7BB5CBED7AD4E970F846E70D5B734E3D4D9DBFE117FE00BFADA5D395101BA39591CAAD44E2BCAAC9DBBCA8A8F6C83A9DDEF028DEE6E2B4A6825355956FCC9E33072C9678048900A5041F4AEF375F7F03AF2E7D05CACA8FA34A10E9B084700E3775A242C8778817A9D71B28A80A04953837A85328301C0245682489C390616A6A02205622F97C26653CF35CF8BC364429CF3C56232D0D7BB55A545B0A62E4198341FFAA41A9ACFBC5EFDE7BE1A9C51FC48E1E3D9074A0AC47D77FEEBC792B14E74CC249CAC9C9910F16D6AC1318F1368F9F37F4498EEBCF319AE98DCD4D837C1ECF5FF6ECDEC9A7F7ED7790E7F96B3CBEC0676DCDF5AA8993A664343735D10135642201A1821DA8668A8A0E414D6D1D242526A154EB223A3A14DB8D483F51E36169236182703898D0451FAA29420F515069B880482B3947EC809253F4A812B6B77487ED88E26CEA25E23384243FF4B759FC9C663343639B1D3D1F568BE726E0A5BB37EF2EF624C5990E399C8E5B65AE6EFBF4A9E3ABCE19E0245D3634C3B5BBF85411EAE77B901BD727D98C7764F4CD7CA0EC68F95B5E9F6761E1FE3D57A5A4F5F1A3E1B9A2B9B17DAAD7639F3761E215C6CECE76F4309D60341961F4E809E0B0774163433DECDBB717BA1D4E48494DA3FABD57074628B60EBD460D04812052AF43F543F4361A3670395D54FF931A72DA9D34DC4002643DAA231AC4E8E3E80A89029B0DAB1836729C62314273A713244611140256A1C5F2EA16BB6BB09A15635C4EA7346DCAF8AFCF29E0248D199A59B5EBD009C6C78BF3199659AB5771CF0C1A9CFDDEAF1E59F8C7B7DFFFFC70777747BCD5967859400CC8CDF5D50FA134DE3D7ACCE54A2782D2DCD44859C9848953A0A3AD0DDC48F1EAEB10F8BD7B019B2519B6D0D389214783DFBB22C2D24F540F89CB9BCD6404AC964ABB1F194C45C529E846670B71A2CC83F41113E048A5868D6B04D008C0A7814E8C29F11508ADC5FF92E20C80CE1E880C17D1F3C1CC5A1849E09C2EE7906D85952BA78E1FD67A4E01A7B18495EFEF501812C6BBBDC2148346FD476CC2AF9DA8695DFFFCD3F7ED3D7144BB92E7BAE6235F9EE6770B7FE8EC6C598316FFD661C34732017F006A6BAB511ABD306AEC44E8EA68078FC74D41A93871028A0E158152AD41A7C91AE9B408C656C2C75165889F876B88806F406A99608D873E7D52C0837C1F0D1A6542A41590BFE3C0D644CE113A4A1C20121A09872038561102390434DBD302C8719C410D5D760722A20ADE43EFA580A3B0A0F1EA6AC307A8EED95D5269D9BAAB6CDFE47139DE7306F8E4C993E50DFB4AD731927C47B7CB9B1A6FD4BF88BFFBDD6395CDDBEEB97D6CFD869D879A91DECDF7F85CF12BDE7EF9F7CBFEFA5E8B5AADBDB6FFC04154979FAA3C8120493074C468AA5E3C1E17A0418201D959B061C346D88312EFC3CAB1DA6C549A68502B3AB025877B88A2835D3DBD48245C9C608B47A3AB876E04C98A7E4052A20DE2E3622116D51A89B770687489EC92DF2185228EB224D256415B0309312B82749380AAC3FB1D0E6C352A6DB01530A1CA40E04925383B9AC1E972B3F1B6E431F8E0BBB7ED3DE2DBBAB6AD70F2E43ED2F7069C823E6A907BDBDED20392243EDE69773524C499FF2433F247E5A71AF73CB4E09A355FAFDF75357A9533FEFCD6F29526638CA2B5B569BE5E1F03E9197D910168E15879291A42250C1A3C1C5C2E27747775D160D5FC1BE741C9E152283D7204766EDF011D9D9DD4D812D642632B6701381C5D94C221DC5049A866ACD984CFE8C2BFE1A231756A5069E78812F5BC0A7F4B8891E0B15AADA62D854A301396701282C067A19AB1DBBB111125AD185251A46511D546800F047C505F5B05A999D9485339A2DFAF028D67DED67D474F5D317AF0C9EF0D384993460FAAD9B8FB308F2FFA545BA7FD139BC5BC027FC4C7E5958DC527ABAAD77A3DEEDBDD5E5F9FF85813AA686632828E86330E12129220C66886E3658729EDEA9B350819861B4E9D3A45A5AFE0AA6BA0CBE14063E8802A3CB763E70EA8AEAEA5D3438C26731050392A464E3F47831D029FD24C323B4D4F4080E696362A911A04960DC7EDC3311D361CE16423114E32C093463E69E70A4303682A8D8E1A6DA2CD0449A0EAC9EB7551CF97B4D4785B120DB23141E9B7E0F36EDEB6BF6CECF6DDA507278DCDE9F85E809334654CCEAE09BB8A47A3B43DD8DADEF97F568B9904783ECECCCC5C7FB4F4688CD7EBB93AAB5F3F2BBAE336A273DB5A9AC09A904C014F4ECD40D5E1271DD3782E054848E068E911E4EF56C81E3C0C79B90CFA181395B6E6C626D8BD6B2794949400836AC686EA463E6D0480D8EB382A5E8EE789174924DCE57453692792CD8600259E5810D8E8383EF4AA0806A59C002EA3DE36C41868EBD4E0EF26CE9A015B2E89E9A7F5C9A2AD850D571C432A8DEAF92CACB13BB6EF2BAB9F9837A8E47B014EAE6ED85AB4165D973B50C86628DC35CF18CCC95BD0A47D883AF8C3B2B2B2A9574E2BB02527A7330CBE7466DFFE947B137540F4B956AB8FF4F0C7C659690CE648C921484A4E07F45AE1D4F1A334E01534900C1D205F76F4286CDBBA0D9D29A2E713289852947447832D454515C93388DA20F7777539E8F3B8A8A11E3470C90443684C54074AB812BA51BDF168E0CDB1B1C18A88EE70091BDBA87E8060D7234341C77755320A76F6CE83E56907B61FDE306E5C8EF09D002769EAC461DED55BF6EFC3177ACA19501BEF5F30E3ADE3950DEB513DFC51AD52552424242613BC884A203F3CE0F7D171D8044812FDF32047273D411ED4E54472BCA85E6AAB4FA2940F47A9EA001EEF0D76DD0559CAE4FCA990804ED3CE1DDB61FD86F5D0D1D18506D112F40AC51E90A5D3253D145D240F22FADB8F86D98B15C8D2682513A1FC72A41B057A7AAB3075767420FBF1812DC1D6AB47AB57D7E21915D1033E55510C3B5250713FDA5E58BA79E265833ABED770E5477FB3ECA748AF5E427D3973F1130BBFFE6CFD9E8101BFBCB3AEB62ABEB1A18EBE88C00742A1D0DE9918D2D17979B4240C42C929117C35FDF1AB56AD42DA789CDE47623105053320C664A2CE4E5151216CDFBA1981F3A2379C0BF953A6C0C0810368ECA5B7B3C3F6F228C320C834FAE8A74694C47A206A3C4DB481261575B2FC1834B6B643DED831DFD2E9413A38429D23424F38F85B22944E490A5CF5B33B67EEFA97253C9C665C316AF7371B778F9465E9E12D7B0F7DF4F06DB32ABF5ABD313139396D1C990B999AD607925232408D9248A44FE0F9A024A1340C1D3204468E1C014DCD4DE8FE77405B5B3BB4A37344D4CFF0E123B029F3300069E5942BA751DD79B8A488BE1801EA44C531BC36185B8B17D6AC59053B77EE842E747CF43131F87D3D523EB997AA1122FDA24150099F0E7750C8743C0AF41AB2174E0EBB1D9A9A5AA05F565F0805F0432D20DC4F1EADF3CF94FE5EFDBC2CAB46699FBBABB062EBE523B2EABF13E0247DBD7EF33A49621662254EDFBF7DCDDF04467D97200A8312935269108B1779E4DC26B0907992986947024A7C5D7D2D7D393BBE945A13A467874B8AA9D4252525437A7A063A4436D8BB6737D4D5D662B34E840DEBD6C0C85179909B3B1C01CFA53CB9A9A901860C1D49257FDDDA35505C5C8CECC10B26346A64F65A4FECBC67C45798CD48E8C1845B5C4F571F448E3D2EC2A4AA60E0A0419191084CCF418FEE0F5541AF4EF4B3D804CC6AACA0B9BB0F1DDF3A6E7876FD7702FC9A2B27F83E5FBF7D0FF2B45F78199DCEA85377E08327184DB134D64D7E4AD5A9E3E044708894C7C4982121290D0DA6055A51AA9D48071B1A1A60D2A44954B26D6814CBCBCB90A777231F8FA7AA63DFBE3D9099D98FEA7142CBAC5871C7D1B8EEDAB1155253D321FFCAE9D4E05E39FD5AD88DE74E541C878DEBD6615941C125CF2128885192DE432765AAF24874B317E0789E04C708E069E969D4D69C11EA09C3CF843BD2A3249F3933878047BDA998B7AFA4F28331C3FADAFF65C0499A396D7CC3E76B363B6451FE8DCCB09FE9D4DC0CB3391E1AEA9067EB0885B24057672BF5323B3B5A29DFF6219084B1C4C627A2F427437D5D0D7A8789505D530DBB76111E7E8A823470500E029D8CDEE83E283CB01FF2F3A7C1D6AD1BA854930E8B3E5811A422776DDF0CE3C64F82A3474A60464101E40C190A3BB66F831294F8CD9B36413D562A8BAD880ED10875DF457377821419A2416233C4D851DE1DE0A1AAAA0A62CC66301A4D9141ABA10EC15EC0F7AA841E9DD3638843E7C2928E9CCD326648E617DF097092AE9B3E69DF67AB360F0904F8056693C11E6332C71046D2DDD54E872E9891027A919D90974C4EEB4BC1F6A003D1D258872A26007A633C549F3A410719592C16A8AFAF8346048978A512AB41096E8380CF0343870FA78015EEDF03632F9F0466731C141EDC4BC3C083060F85EAAA4A04E914DC70E37C04BB84C65488CA686C6C8492A262ACAC2D786F17EDF8D01B8C3D928E0892B0028F7686B4AE204A3275C4149C1A555A42EF009BDC23EDC1F26C64236A5014D3339C0482A00FDD73A4E6ABEF0C38491FAC5CB30E1BCE6D6E8F4F4E4E4C3413A3C423232033C4D4F882269474E261AA541A640A5EFA2BE26DC9D80A0CF4B8A6AA025AD0880E46A926DD74DDDDDD340490D2271B5A505793D691929C0A197DFA5203D9DDD5890E9589765CD45457429FBE59785F137476768031C688AAA00F94971D8DFCBE9CDC1C985E70356CDFB615366E5C0F070F1E0097DB0D3A7464880343540EE1D0C48E7422F524F19DE6C606F023174F439B224951A30B2221E59E11C33D91CF338167220D21A27A1859105CDF7B16DBFCBB9E1AC1728A9DB171B1FE9C410362DDCE2E0497A7439363CC564AFD8833E343AEDDD1DA40A54F81C63506A5ADB3A38D46FDD4C8709CAE606BC81B330E9C7E064A0AF70123F170ED8F66F572727C4482C95818745248BCF6707121545556800969E46DB7DF036FFCE9555A01E45E92A621C5CCEE3F183E78FF1DACD0CEC8EF36A3DAE897D51FAF0DC0DC9FF65E11D7BDA6E20428504072860C89F4CFF61AAC7DC650EDB304D9221EB1DCE39CE131DA9BDAEF25E1245D3FF3CAE68F3E5BBB031D8C5BDB3B3A039999D96A03BAF51C36CB80DF833F58814C454BA7A7F83C4EFA0224723770407F3A148EF4E61315449AF6B06123C1844038DC7E2AE1E8AA800EAF11A0086D241C3E25D10A870F97D0F08146A3436AD9426715930018A1A344E590A1D661BE5D75AA1206237FCFC8EC0B474B0F477EB70F85A009A5B9F4C861E4F95B68CCBEA5A5958EEA25D24D04A5D7F8761AC10C1B58A927AC2CCB675539D15A3F7C7470FF5ECDF7069CA479B3A6D52EFFF49BCD3C2FDCDC884019F55A8EB8D82410A4E054A151A9A4F7C64F3B0B88CB4F00B4210D2C416A4862D8B194D629E1144AABC6104B01EF6E6F41B0DB11987AB0209B212F5F831E6A7CBC050EA04E47FE4F3B1D9A9BEAE0C1071E0493110D769C0DD54A29E5DC0CF52E65748464C8199C8BA07EFB9C2CC2B0482F1519D2B76DCB66B41307904D355255A721BD4F4A550FF0611523F51E4916613C209FA6EF01B66C5C0B07F7ED6E3D2780D351A7B367342CFFE8EBF58224DE80F44FADD1A8580543E8970B25DD4B6B59AB3793E16734FC49FA41C9E859A2B789CA2173E03BD050EAD09151E94C14709079AA6B49183677C84864329570E2C431183B6E024A6609B4B63441DFAC814028E9375F7F498764F4EBD71759501272F96A3ABE85804ED8CDE8B197C336D4E5FF6CF220016840434E866C930A282E3A440D713BA1B62E17558D1CB6023A223824F1B2D47B2A8ED3E98413C7CB60EBA60D28DD7B20353DB3E49C4E8CFDF2C3578B66DCF4E064D4B99B4ACB8EDBFAF5EDC324D9E2E98FE37D4E90952236592BDED9462BA1012597A815C24CC2DC5543A6BA84120D03A0BE4F424926C1A35634B0A463B9125BC1C0C1432873292EDA874C260FF89CE1B01EB9F881FD0760E215F970DB1DF7C09E5D3BE1D0C1FD94859071293AC2943CFFFC4463121A50D20EEC209B494D8C85F26347A16CE5B1907E67693FAEC91C4B3BA4A3150979A7F6D6D6881D484BCFF4A7F5CB9A75CE6722AFFDE0B5A3D7DC78CF2459546D3E71E2640AA18AFDFAA653C044D107280BA0335A80757652891E3E7214682AB534DE41EE5113F6101EBA816E3F898D2425A7A0B438A84A22D24AE22E63C65D01C70DA5D0854CE6E8E14218983312C41163F0F800ACFC6205F4416633FCB231C864FAC3DEDDDB692B3223307EAC682200913133A4EB0E6D8EC160A09D202AB586C679880B4FEE230138B79374DD39A9D43EF79B5FC1AF7EFD22553DC42E91902EC9A72703B22AE21D2725A7BAF53106B52D3965E6D3F75DDF71DEE6DA4F9F797726AB516C46E9E8830C40189A33806B43EAE570B8292330C4C481DFDB0D696969D46527FA93BC20FE40F0884A388C2C25CEA4A36C272777040450C20E171F88B8E643865D064DCDAD50575D413F1335923D6828D4A2DA395E561C041525ABFF801C3A1920774026EC3B5088AAAA195B9909743126D4CD3108B88A3A65C4A0FB11DC53959574950952C143870C86B9D7CF453A59082B3EF904DCC890E65E3F1B264E9E0A4B5E7C893A6F3D332758E88B34353D231352D2322441105AD1DBFE5B4E4E6E812FC0AF7FF8B6AB9EF897A385FF6ACAFFF1DDA9E82013D0B3636262BC68F4B4E4AF91261A176BA6B173A58287B4D4341AAC2220A5A6A54397874C55D90FD658233DD7376B00BE1007A5250723805F3E7A04D4B479E064085C92492747C1B429089C03D41C83863896EA7722B976A78FB20BD22152555B0747CBCB917337436B6B336467A6C2BC1F5F4780828ACA6A58B3768363D7CE1DDD6803E4ACEC6CF52D37DD1CAF54ABD94F57ACE8282A3AD4B1F0F63BAC896999E637DF78ED90A3ABAB6DC2E47C7D6EEEF0A1A8621887DDFE81C4C0ABBF7C78FE89E55FEE7AD6EBF3CF6A603BF216CD9D1B38AF80A3DED261D17FE19D0F1B5B9D8137784118C4D1902A87EC450D23517A946A32EA49097DD2129011D4D2380B31A4CD5D3E28473591603151209393D3418DCE52D991C208B803B2FB825BD24245E9C15E61E01BAF9F0513C78F86B21355D08106AEB6BE01BDD826A8470A4886568CBA6C141ADDCBC185AA6E2B1AC303FBF7D19E2882439F8C74B8EAEAAB1B72860C3738DC3ED1E1F1FEB9B3CBBB34736C4ABBAE39F02B3FCF3F812DED0B97C43EA46199652EA76BA28A5308D80ADD9228BFA40A706F2F5C38992E1EBC62DDC1D1019F6F8BD7E31F77D7FCA987BF533CFC5F047C3416FB162CBC6BEFCF9E7E76ACDDE1149A9ADBB9F6CE2E59ADD6B4A381312015D312EFCEC7B3608E51D2D57932FA64425DAB134E9697802D3E08789CC586942F0ECA8E16F548B3250E54C62404FC402822183C4FECC09CEB6F84FA8666D8B8EEAB33E2F2F41EB40B23868F8431C85C881EDEB16307ECDFBB1B9D306F35FEE6BC17962D71CB4ED53C87CB7B8FD3E5CD73BB1C1F3BDC8EDF8FC91D22F342E0BD002F64122242665BB7B475B4D5DA5B47FCE9C9FB22F3F3BFF9A650E7E7A422E4FA7FBD79D6C4257F7762ECB99C0649F9ADDF2B12D38D2073494909101B1FCFF8FDBCD5171040AD47DA87A5CFCF531D6D8C4F91BA5D3C4B3A3148004CA3D7D2419F846E11179C74EE0A42705883CBED411D1FA46424B217EE79216E3F497674968881EDD52B13CA04F483C85E48CE41FD3E0ABDDB71E326C80E976B8B5EA355CE1D378EC421DE25F9F7EFAECBC19F7F0F2B319BF7171539D392122DB1B1E676AF2F9084C0AF73BA3C9981B6EE8FEFBDF7DE6BC22BC3B1066E09E3F3B79E2C99F85B98F50F66229F6BC0FDBE8018264BA1C01BC8D1339AC353CA1154BF20B1A47B8EF42B2A9112DA5D7EDA5517F0778270AA26AA533938D09E67EAA1A3DB497BE9C9485CC274FC81E06A780E6737652084BA7D5BA6FDABE869A2F325174CBFFA95FE03730AD0D855BDFEFEFA7765BFFCD2FD774E3FD9BF5FB257F28B1A41143475C8630F979577A151D5700CBB64ECE5E36758E262937D5E97ED64ABF62D6CD50B36ED2D9F867F7E81C8C2B0458B40FA8753BFCF5532994C0272D75D1A8DD21EA3D76EA8A9A9D0236F48D11B8C49889B2A7A506764885B382824475546C84D26E004FB4AFDB40C60D9802C2110FAECC75681D40062628C41C7059D13C2E119463C6BAC3A3AE3B37FF9C22FEE7F8E68C2BF7CB499C8E4D3A2423CFEE7E51BEB2DF1A664A58AFB4AC128263C7CFBCC830033E1C6BB9F18647774DFFDE9671FC5988DE6E2E123C75C9E3D20E7861FCD7F008D01CCC0C73C36B76074D5DF9DA779AE935EAF2756797CF1A1C2F284B898AC4D4DF5635E58F2878FD1907FF0E2E2DFFE5256A8D2517D66A04620B3C73210DD0CC4368365988124721A69153D13FB2395111DAB90C347A12929B41590C1FF7EF7B7AA94506EC1FC2EE637F76CFABC225CF783B2D31A79416AB03B5CC31A9BDB3495350D9C208A465EE04DBF7FFE05839F0513B21012F95B81C6728BCB619F5655793235DE6A4B199C3BFCCEAD5B7756FEFAC9BBDEFC871363CF75C297F793A1C0E8DE0E6C6969E99A3D73FAFD8B97BC7C952CB37B1E7FFC27F69347763C82B7ED3ECDD0B22B56EF721D3A72425BB277D3523EE0CF40E53D946515699C5A23AB545A0FC3A9C8B0A8D8E81600518340C9842E94BEA0E7C7853B00D8D05006D1CBB0D2418695D7B02A2865D1F1554AFCD4A9B36E9F933772C4D03163F226A17394545A5A56B761E3C643ADADAD1A9B2D51EE9B3D68B25AA3BDB28BF7509B22899155327C58DAF1B3A3A1AEBAD2EFF3269BCCD6FFFD871363CF474A4F4F4F46D01BC8F1FD0F3CB8E7BE071ECE13FCC280B1053FB2B092BC057178A9A264C733B9B9B9AAEEEE6E32877E1CFE96BBCC71F183BB3B3B08529D0CC02A522908DAEEFAFAFAD2F0E2EAF9F31E30303E77467375D9D32228862A547A190D6712EA70737A46BA3461627EA0B0F0905B94240E7F830681D106D76F092D25224A7EB4050EB4058EF8D8386FFE942B4C4909367543734BCBDAB5EB0FB43537B7E0771D3201134407523E873531516E6EACAE6744D6C1F201BB5E2F3A0E1E3CF82F2F9F7ADE004F4949B1D0A009A6A4A4A443EB376D1BE9F3F16F8FBE2CF7574A7DDC830A95F171DED75D2378BA924206F614E60137DC7A4F1168E3CD9FFC653151355720D07BCFF6FCD4D45452412BB5F199789D9949467A91F17FF9932797EB8DA6ED07F717EE42436C9719D121F2BC038D985D0192A3095C8E8AD5ABFDF06F4AE70D70ABD51AA352A9C253B0FD7B0F1449AC42A99A3DF32A45437D5D3DA78D6D51EA62478ABCEF39DED9F437FC1D64A0D1938D8D8D7F0E55D8AB58CC42E91E81A0779CFE6CB55A5DCC2AD52FA9629297A2CAF0C5184D061227993D6BD691FE83F2F217CC1EDD013FC074DE56754B4848889622F5AAAFBF3C8AE029DE7CF7C3CF1A1A1AD26A4E968E921966B142A9794AA132ACC36BDF84C12609DDF29F92168295F03E73DAEC5AACC857F0FC7E754C525230FEC445168A542A55F61F2AD8E715F0D2D2D240744FEBC71F7DC407D98B61D6E1E38D03C87165C9F69F8BBCB75A69B0F6D1C4657C7AFAF7D1E8CEC3C3CB51DA9F0E9F4F4E4E268B804D47097F04DDA17B4211BF88F16715CC29F801A7F3BD6E61207C5051717CA040C6890563578B426AE34EDED96C43AF07F530FB6156EEA4F1D15FAEADAD25D3B2EF41697E1675F654628851D897E1E73B1943CA54BC96480157A94C51EE56C5C50C7844AD2048B1BB77EE381A22CF373CF6D4A2EBF1E835CC77303E119D053889EC7B55F6F02B46443F00D5CFC708F29BF8FD0F90717C88E5A7A87AD622D97BB027A6AD8C48B8D3EED87B49C2236A65793852CF8E1C39EA0504F20D34889F5654EC752858F16A821752B1757D874D18701A3F7F24B4BAE6689FCFF744F6B0494823E5F0F21C029DCB1F4A9B567F557C49C243A9E8D0C1CCF071FF8139FD46E75F1799AA71BC78770330D255C426B232B3B1EFE0F191F54B789EEF87A0C7061D1BEDD3D85C22D28D4E511B44D9548671D92F5AC011A45E802370A9C78F959D0A01C5A4A6A4DED36FE8C4D7468D1A45C7119F2CD9550A923C1B0F6DAC82DDD077C8D884ECEC6C351A4FB200EF2B64A564A4803F454B7C730F2B51462F65EDFB2ECEC87F0DE0A806CE7030567CB43C327477F6ECD943949CE2C7DD01EDD6812327D0499C274B776E41406F0706B25846B9DEE3F5BF4CEA0E69E2AF50FDBCAB3458C89C77550470B53A9A323AE0079E2EA84A2169E78EADD688B15372CC35D7FC88AC8079B9283047B2864DDC9C3564E2878C0CA31145B2D6D450B529798ECA98B0CC0771797D874C226EFCE0E8E7A9D51A734F93FAE103CE5D68C03D6EF7C0B6B6D6568331D6463E175C357DF8EAD5AB6A50DD64207BC90F0F869423BC5A99080AE56BE40C1B42B517E02A553C899F87BE74D14B78E06CAA7DE5E71F47564A23633FAE9B35E73B798664EABDA2C7E721957449A59CEDE4E6F56B74D19FC74D9830123DC763FFEAC3159CB2E1B40AB8A452CE76B2A3BD6D88DBED72B39C5A1F6233F03F0F3D1A73ACBCACC8E97407DC2E97E87239243288C8EFF332814080E3F900270A82529248B855D2A241D661259D4601E58B1B70420BBF251AA9DAB261CDA1A957CD1A1B0976D912528CA6B814AF9FA7E3B4C90209C161CEA1CD8D7C3D2519F9EA0F9E8F279F7B249CB9B855CAD9686138AD5DF5C539DFA9F5920EFF169542525D4D750E59C0F41C437E49C2FFCE6553E1BE5D47CEA90A93D98B1B70D4E181BF777DCDD79F3ACFE5DF932EB114F8BB7D87E5A525C31E7FF0B6BD3ABD81D7EA0C92566F94B57A9342A337726A8D56CD29D55A8552656059CE88EDC57886D773062FBFC8590A5129675B7B36AA0518DA5A9A4684EE55874E0BAC42E10C5941B2538A9961593BDEE06118859B53A9EB580557A754AA9A39B536A0546A44BA002EABE444108FFDD0013FAFC395535353E3054130711C1740D79DD768348117FFF4E15788D0047F40024A01BD3E387C603B6CFCF25DFA1D4B623AE44DBE2E3866DBEB85BDEB3F046B6A169DF349569DD09A93C9EE80F7551ED9F906FC07A6F32AE1A1DEF65E6EFB575B0E8B1E9F1F9B3F1FB5F6AC74568E47FE21AE3B19C246162890E13F7FFFE67FDB5E6CD1E085E7549E8138592655A1A433C7C80C83E81156FFA9E982ED36484658399DCE89B7DEFB988F6195553E3F2FF8FC7E3180B9A1E604E9044EA56E7F4B9DB4E1B3653CEA6E36A4C339BED5E7A333F224492D042A9A1E7862F188FF54C02FC87E9A64CC60BF21133E92C5C02CDE6BB793AD5C104C9F1870915E777DF6E01174F22C1AC47A519434785F7C777B23D3103587263A3DFFFAA76448F36FEE9A33F1579724FC2CA95FEE04D26B339751A84065B05A422A63A9AFD3BD84E394AFCEBCE5A1D964806420E04F0D2EF2C84BD3AEC873BBDD1EE7E60DAB767CF0F6EB645C21F9ADE99817D231E222FCF2B50FB7B81E9C9FBFE4928447A5ACA113C9609D65A79DEE526AD5D9E5FB3676FCE8E687975A2DD6598618BD353E21558980B304F42183FAD5272725A40604D12788FCD06B270DAF9871DDBC01C3474D7C373B67E418B26F045DB559E01F7CECB6E97FBC643423CE0864467DA4138E62CDF1BF2160CFBFE7E98549C9A90F1A4CE654A7DB63DFB8E64B9FC0F30299165E587214A59D6F4369D68822D021706BBFFCE4F880A19719A5A8BDDD44515CFAFC1B2B175E023CECC528B817438734761D67B556C883125E5BF0D073A31252525F4F484A018B2DB165F7D68DDD4DF5B53A97D3FE1099E343A6866FDBBD0FB195645194277FB4F6E09D21FF7DB918B55227AA22068DE99BCFBEFAC9BC8B1EF0EC9193ACAC246CC143B23653776CBC45939898F6B33C63766C4A5AEA1728DD1A5B6232DFD9D57137DAD5FE3126F3A9D79E7BE40D2110789A47D0EBEB1B1230178696C378E9CDAFF625F899C0F2C8D691F88F288BE5F859218AC2FB3F7FE96FD75EB480670FCB4F9505790723C370542CC546636C464262CAD62443CE6A4B52D28AC4E4D4D4E4442B24598C3FD9B2F61B3D592DC29A9074907CF74F8B7FF23CAA961232BF7DCBB66D23B0AC45D06315A2F4EAFFCC9A5C8D127E3CB4512A2B8BD27EBCB6038F95A85E56FCE4D7CBA65E748067E55E9E258340B64A2443D6B669B4DA6108A6684D4C7ED43A40F7726272CAA4B4C438484D885D7E7DC1654BAD09B6C9A856C8121D07C3CF403D5E42540BBAFE8AF5EBD7A22C4BC818C5796F7CBCF55A3CDE49540D9E6AC2F22690F887B1DC43BBDF64E9CB077EF1EAE5170DE059C3C6E702ABD8813C9B0C552333702D166B82CE6A4B406013872724243F8840437A62EC61639AF19E9933EFD5C5C7275C4D96DDC3EB11E22D06026544C211F4E2FABABACC53A72A0FD015D924F94F581623B80C6AF763083487E71E577B1433F03C4ABBA4972571F5BD8FBF34F2BF1EF07EB9E3F31899DD06741831D381A097C5C55B73622DD6DA78ABE52BAB35F1F544AB0952ACA6AE745BEC9CCB92923C8664CBF371166B1A5529F10991D5E791AC1C250B4D0A82B0116962D9E6756BF2FCBCFF24829A86B27E75D060CA3928F55FE0F18D0EB5AF9F24BAA76345A0CE974C8224AC5FF8E06F72FE6B01CF1E3AE90A86653721AB279BB039419616ABD4EA79E6B878B266E133E638DBBBF171268DC56CF058638DD7D86CA6CAF977FF7CA239CEF230560A9DDE1D67B545B6680C08DE3262380381C0B000CFDFEDF3FB986F3EFB9845307994ECE9A10952B6A00E17D15B9216FF7ED123DD5E4E2CC00A299604291E0DEAC679773D95F55F0778BF2193AE91415E8B8731983DE84BDD042CF3A0D11CCB1A4DE6CF4D26F38D3146739A51AFE50D06F58F3352E2F6CCBCF7599DD11CF796C91CC79863E3C1126706ABD912013CAF7F42354AB817194BDE9EF51FED41F05F6FA8AFED7BBCECF05E54DE6C78636B5196664882FC073C57F0D02F5F9BF2E6A2473BFD5EF14ABC7604EFC196266F9A79DB23E9FF3580670F99308F61E42FF0902CE5E347523C1B9D9DB94A4E99618831DA31B7EAF48602AD562BA954DC82BCC17D48C58059CDBE6030C664C5184D274DA698B638939E2FDBBBA29B09A5679E7946E6797F391A4FF3D0F133FABB79F1E7087EDDC6D55F5EEEF7FB8E87793892F4C9D89A3E4770DB5077D3BD40DF7DEDA90E0578A7622594E13DE98C049BAE99F740E27F3CE008F69D3243B7B425C38D05D4DB3702C39A91732F4090C992471B341AED3D4A950A14203F7C5DFEB04F48206BF6ED8F4ED6E9740F69757A41A5523D67D0A9AD46BDBA0D41E642CF22A36355017FE038D5E37E617CC5BE35BCCFE77B449625C5AACF3F5422070FD0BD1D10745EE46F4603FB6B3CCEBBEB272FCE2515F6F6D217DA85003F152BE218029F856D61E395736E8BFF41031E1236F6B4AC20396BC8C49F20D86F869E4148DA1D6E8F6337EAF0D7C977D51A6DB552A5CE57701CBB73CBBA2D4B9E7D820CBED766650DB368D5FAB7542A352309C26F253E904036B1661968275E3F66020A0970597D1E571DD1E37CC03F113F27D71CDB5B8220AF6A6F6BED7BA2FC707144CA2569C19E2DDF7C8ECE0F4ABEF89C3527878CE852AE78E7A50E8FBDBB00CF55E07D3992C8AECFCF9F6D66A2D20F0670026A48D2C8384043483FD3DC3767EC7328C5BF0DF714887EDF4FAB4A776F5029557710EF9D5528C8CC60B38263E30F17EE3F545D5991CF2A55AB878D2BF84BCA809CB7388ECB0CF8BDD56FFDFEC916AFD7753B099F55575799AD56EB0B369BED958484843F637EDFDE5E378748B828F8E7272525EDC15CE2E9AC194A18F9FE5DDBF33A5A9B9D6485384996D13627FCBCAEEAC4726C01D9E386E73F14AAB4D8752BDF7237569DB80EBF538DC08FE455EA352983C6C4855A1287EFC98584E88274C69C355A18FAE34427DB341A4D1ACBB2F108928E74FA9A12FADEA454EBAF88B00977D73E9FB3B51AEFD1EBE23326B10A9591AC254E369706C9E7ABAA38C6721A938A2C0A138F4C2498092BB192AA82B4CCFE608B37C3B1A25DF0CEB2977B4B834205DAB80CBA5C87B723B83803D2C4662FCF24DA52B341ABD3C09482EBE81276F53515F0D5F23FC19CDB1E918997F4F5077FDC8F1C9EEC10482600D4596C299E0123273D83AD2A0955D3AEB2C3DB16FAC9025CC159D064D60419614086E609E71370EEEF48BEE1BE877FB66C40CEB002B23E6C4B733374393DE0707AE8FAB04EA71DFCCE76107D5D63509AC7B01CD9704819591ED4D1D50C2DD5651AD25F29FA1DA0D25BE8E28D4445903550C886A7C6D838BA4D413BBE734353E3195D6D9244F6E40CAE590B2CE9DB0C5077DED9D50E7A631CF27013141FD809B923C78235310DCC482FCB4BF632B9A32629FA0D1A31EEF8E17D917D91DB5B1BC0B9ED2B183C6292CC2894E3535207EDAF2ADFBF83E5B826BDDED4A2D6EA0FB735D56C42A1729D4FD0BF0D70A24E4C6A8D263E7B602EA4F71D4897E2F78562D0FE80407377471B74B637D1D241969A7379303BC0E3EC82F6FA0A088F6413FD5E605401DAF34EF6D9A93976808656474DB80A624CB1741794CE2E3B915E2A6912411A1B0FBE7880F138121120B59F976A031E7743E89EC6F6C653D6A48C81C94D0D754C6A661698CD161837F95AA8AE3C4AB7AE197BC55560B525D1FD1F944A34DA98D1A690C51D198DCE8055981B9B373E7F6670F926019A6A4FB621E064D928CFBF43C2C97983C7ED56939D3FC84A683CD9DB80ACB12D105620D3ED1B5904CF149780D2160BB6004FB72020B16CDE8F0E0B8D837824A7BD8BF7B81D8CC7E3519175073D2E87D7DEDDBD0FA5DCE9F538AFE59047825E2724252634E6175C5BA83398543A9D5EA3D6EAD46AAD562DCB0A05A754E9355ABD5AA5D5A6B30AA50633D9CA4443367813459E6E0D46FE76BCCD06C3464FA4C7641F06B28C9310DA2996F4FC93D5FB453E6AF758FCADE1ADDAB11E894E27D36188F10EFC3BBAD8D89AEA539507F6EEC860512C546A3D5D3D510CC633220B7B053B01A4C8025EE16D702908028F5FE5D4641177B26C68907104B4E9FD474C262B303FF6BF0F9005FF14822829045ECCE4453193AC5ECF93E7D0FD3885E0661674230B2154D9B497079FE5A325CDC1BF15049A8048C0A565E898185E51085D17E89A2751FB24D3D101E8D1D2567DBEBB1DBFEDE14417D8D7AD5AF909E613A4E651B7A98CA6589D39CE6A4035A04749D461D3D421CFD673288B2AB4A4686B5511B0235214DAFE3CBC21B4107A51ACA866B40B8499F1545509A1325869013E789F100286A7CF14233BA804AF05F7580B4B69A414446A68116831E0F761C3F263A3F38958D9E83BF904325200FF41FCFDE41C19C4CBFBBCEE13A1F796FE5D809340D2C1909537A13ED5D8BB3B39CCAAD0F748135447392A9C0A95BED16C8943A7270EC5DACC716A23F27013CB2A62509209A53420502C019B9023B26A32912E9E564A689712215812B0FC7E848626546A0172EC0B9043F23FF9E8F3797DC41BF263E9F579B0F4F87C1EB7CFEB7523DB74F9052140DE23B4B45990C24691022664ABC839B2206D35E6A6D0BB5FF84EE410350C03CB85321BCA5CD4B530F0AA505647654D28D3EB481D352AAD2E5EADD6C56BF5A6B8B1634629BC1E97CFE574F99C2E97D7E5747890FD78ED5D9DEE00591A39F8F262A88C3E8E3E279C76FD6C395A724F976039749D8C67EC26BD53F25987829D67C0CF02FE697DC3114989CE8AA8CA50444BFF69A526748D3D0D94D30192429FA34BE92C80CAA1F372D43DF259CAB3497BD4E272B2F86F717CFEA5079CE91E337F2747574AF8381A48294A02E52889FC5690A0F7EE17A75F3F6B922FC4E8A7F305F877A890E84A816F010C7EA8807DDFF4FF66C1B88A7AF294030000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (143,1,'Satellite_antenna_(24)',decode('89504E470D0A1A0A0000000D49484452000000110000001808060000001C6216320000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000003FC49444154388D95D3794C1B54180070A6FE41CC8CC68861D06511A8225737E860CA61718C411D0B63D432815E2B940E702D2D1490E3D19663D09672761468A165B68E32BAD652983041CB14E4DA509630022E0436171A679464F1C86735D18415DDFA92EF9F97EFFDDEF57D6E00E0E6423CEF46223DFBF8BC2B801BF7230967B7F9A75A4C2092C5AC12E9322DBFC2E432B2B8B8B2DF6C9DC8E797D724895AFB4D3902E94606837BCA09718C3D2733B9C55CD1C5C60A999ECE1776442004CFE8AE588966CB78F6CCCCD2BEBF123D3C3CF61249CC630AA5FE84135284A40917DAF460B8360BBAA16968D58E80A8B9EF617983DA2AA8ED3C4943C8FD9FE4A4147AA8B25B9FE684F40C4CB0CE17D7CE5F328E83C6300CC6911B30FAD5120C8ECE81D6FC35C8B5A3DBA8F993410E52BC9B9C4C7BA9476B4CECD65CC5EF400CD766B49DBD2395D9E7D1ADD2EA36F8626A09EEACDD87B5F52DF86E65136C7377E0EAF505E81AB0419DD2FC796B777F616FDF60E20E04A9D5EE3D83364141556B39B74CF6632A9503151714B070FB7B7860FF09EEDDDF82E5B54D985E5C05EB978BA01D9C80E6DE4F674B6A54113B7E878BDA7D9A3456366AE8B29756774051550B9C20B300352861FAD60AACAE3F80F57B7658BEFB038C4DDE04E3D81C745FB1417DA74581107AEEDF23D10BC46F37761AB685521588656A90B4E9A0A0A211CE308B80CCE041B55C0DA3B679B87EE3264CCEAFC0B0ED5BD059A741A2B26877BC321FB5C8EADB74BF8BA4DD206BD700F55CE9DF1023BF0288A94CC08644432289098555CD20EF1A00459F1558FCDA6DA702CBE1A1CE2AA9EA61EFE521601708A11849E01C5FE4B8A21C280E348355B841CB2DFFAC48D8369E9C995FEFD898E284B073731B9BBA06142D1ACBED6C7ECD462ABDE0979804F21F241AC79E708A3E56D7AA93D4B6E8258C7C6139955D56BD6BD9E3703883A3CEEB0EE28F94797A7AC61EC00653F1846473480401131848D8EBC8D9F3C4DEF1F2F21AE950E9477D8322C907B00199BEC191C6C0C3F1EAFFEBB1DD10339DC99E7887983EE11F16BBE01F1A3B1B181E277309F1F6F63660B1AF2FB65F1AB60BEA54BFA5507910141E8F5C4230188C5F0EB7CC820B3BB2E51F74683320F4AD529FB0B8175D42FC8222CF061C3EDA97C5AB19975EFCB8A7593B6C4232ADDF53233EC131C17E415153FD23534A9640F2E159AED824510F7DC31377A8D29908F344C42F243AD437245A4F620AA6480CBE547BD954EB7F30AA8992573949CDAB9427677279618433AFFC27924ECF99A5E595FD4A7C3FEB113EEAB83D2A3EC5CEE694AC7EC0C85B4BA1E4DD4DCB126C1F4DCAF839E638E911C6E74DF1AE8863B83BC273DF7E9F88D7DEC0D10270E155A7D328A263EF9DE68647C751B08187125F7ED50BEFC8F177C40B8F237F02F0AAF9D1B06934A70000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (144,1,'Satellite_antenna_(48)',decode('89504E470D0A1A0A0000000D49484452000000220000003008060000007459A8520000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000C6E4944415458C3C598095053771EC7AD47AF75773BD3BAADB2A81C1594AB881787821541398A1A109443E494FB902B908410081002091042C20D01C21D8EC81141C211300A72CB550101B76245EBB15D8FAABFFD278BDD76C65AA653DACCFCE665DE7BF9BFCFFB7D7FD73FAB0060D54A9AA2E2DEBF2DE7BE1585286FEE555BB56AD53B7F2AC81E636B0D16B709B3DCFB5704C2CACA6A0DAFA57F0AE31414FFA780EC3530DF77E0886D1723ABA434965DFDC0C2C653F60F07B1B4F324D9B8629FD3F20550D974F58778764D1F3E8E2D4217FF9818A9AB6B974BCB28CCC829A84CF0094F48CCAFE97E30303E0F654D3DE089A5C3F153EE67571A64F5D0C8B45753B3883E3030492A2F6FDE2C39BF5D7D9783A56360CB3187806F34B48FBE30B2B06B5F3190FAFACE6D97C543992D2D623F51F780777939AC797D4D56565661C3860DEB25DF43F0143A2E3A39974824AE5E16889696D63A8CE3F92A12A3EC3FB4828BCF13721A162839F57D6456750B31B52C0B9BC8B10F8DCFD85C5E5EBE26AF9017C8AB6B8962B08AC2AAAA0407DEB6B80484109D729657D7AABF2C103D438C537C7A1914D75F81E20B5780537719F26ABA20B3B213982542A0732E426C7A15C4A5143CC2C7670B4349C9D5386A96DCAF2D1E82A304F3F942E5DA3A217D59205832B3CC23880C35AD0350D736087C6475C241A8BED42F0DBAD8D442A0B2CA004FCD87481A071272EA219A59F52422B1A83C303AF32B37B78C756F5A3C989080E9EB1BD3AFE1B7664ABCF95610F1E0CC3E02ADD4C2D2DEB32D84940A82AEEB70493C066D3D13C0AD1502363A15A56337348A46A0B4A11BB8F56228E48BA5DE4A29BA0409D917208A51B1884DE0A4FB93D8DA3F5D3C0C9FA4D9D737EE5CC3175A8BC5C387DF0AC26F1DC8EDEE9FC2722A5BD39D7DF1F7DC034970B1FB3A64732F407C6A1EF40CCF40DFE82CF45E9F05F1D03408C5A320100DC385F621A8B8784D2A6346790792AF19E2326A81402FED0D2267DBA0005D1B1A1AFFF7BEFE89583E9FFFE165F170CA5B41AA04BDC3B5825E5152129F54C613F15CFD2367AD9D02A0B846081DBD1320EA1D879EA129189E9883C99B0B30816C68721E7A47A6A1ABFF06B420EF49A494489857DD056928A6A8390D404AABB889A572FCAFF68E66491E844098BF24A1148456DEFD01B7FE8A38B7AA2B3110CF748C67F32EF961298FBF34B3059FB05868EA18907A6474EA1BB831BB00F3B7EFC1EDBB0F607EE13EDC98BB036353B7E11ABADE79ED6B6842B2F25AFAA4D2B1CBDB016520D40AC4CFF0B4A2B816E155DB5002D5F4ADC14AC96954CAABEEAEA6E7569F720DA6B0FCB0547A0889F1EAAC370E2C4E7900919A09A2BE49E4895B3035FF2D0279088BF71FC39DBBF7616C720686C7914DCC423F02BA3C30052D97C7A016053E7A4110B40F4072610BC467D52E62A3525A7FA9A6FCF8859C5E6D975F258AE535F6EAD97B93F8FED884227C7C26F8E3E86066ED062E3E382950DBD5B125A0BBB0B0F8101E7FFF14EEDD7F0073FFBA03376FDD81D1AFE7A1EFFA0C7423D98457C6A0FDF208E4F33A501CB50329291FC86C5E3F3185ABF7D6CA8AA717538BF9DD0EC4A4FC18EF50F295B068064A5D2E442773C12B3806DC505737904A1607175A7BA07F6C4E1A3373B7EF232F7D876090B716FF27DBE4CD3B20E939E2FE4928AE6D834AC155C82C6D0176599B34B0C9AC9A2CB78CFFC7CCCF400202681F04C7E6B2CBEBBB8F24A47317A312732098988ABC9204D149B9109BC2014B071F38E5721E02D0393BF750C82B1748B36970621EC667166072E6364CA1D899BE75570A3938360B459517A5E5A0A173182A97328D55D60E49F94DAD447AF5476FEC352E2194EDBE84346C4A76C5934CAE00C82985104E4E87480A0B92585C28A868064A5A316063981095988F643B072627DDE07C240D7802315C1E9C826B28D507C6E7A47083C82BACBC4A100F4E437BCFA4B44ED5A042C96DB80A393C11A416B75EA715F065DE18C1F65E51F671A9855F27A69748BD40A4E600920B12985C54E0181043CF8363B65E808BCB84486A2EA06E0B67BDC2E1738D036079C617A29272A0BE6D002E5D1E45360271C93928D86F407BEFA4B45836768E48614A1B7BA4AD845174A9EA170B8C935F74661CA3E8313DAB0A68993C08426F1C43CF85E0C8246071F8606E730E92D89590945101B8F81C303BE90A2656EEA0A96B02279D824079E741386AE902BEE154E90BD4770C4113AACE12887A540C2559259149D2DF621825CFDFDA88AC5D42737171ECC754562990933940CF2805FFF078A0300BE108C609C2A299088C068EDE04F00EA30081920587CC1D90772240414DEF67A6BAD718010680FBF918F04170A13148EEC43CF00AA382BEC9E91BBF3A7B58D8FAE4F94724DE0A21A521990A2121AD1018B95580B1F706122D0F6C5DCF4B173FE38503FB73E1E0131A0B6C4E2DF8A1879D3E87035F2C054E9CF147F22173F00562025BEA2D3D639B7B48D2EBCEBEC47A6C2C5BFBD727A755AB8E6770AAC4D858D67F904C8F927378905DDA088E5E58245501B8FAE121106596249B52B34A8010970EA75D02C13D200ABC42620155E897545631839673814CCDA8C01754B655A5719AAEB0398D2682F661D9BCCA76A7654D686BD7AE25897A472750237C2E092E06B715A2D32A5F0546B39FA199F485BD17016CDCB070D0CC0E9CBC23E0A4A31F1C39E108062636A07DE838AA39140EABF822B9A0BAC327A7AC250D4127F9E353EA5C02638B1ADA86084422AC5E16C8A64D9BA84545C5E58A1A7A7121D1CCEDB4DC3AFDF058E68285AD870895FF2B16F67EA3FAA6F64F54F61C06A3638EAF4EBB86DCC138F88D9BDB78341A635C09A4C4ECACE4AC8A46F4DB467B2F62A5C65E63FC0EADC3B186164EBDE709C987DF58D0DE641B376E8CB1B2B21692E2A94972CA5A221919D9FCAF3036990850BA79525151795776AB324D65F7E1319BB3FE5CBD2336065A5F9ED8A9AA735441C7E8F83FDCDCDC3EFC5D8667191919FC962D5B66A6E6BEBDB6454155476EFBEE76030383B5E8FC3E64671090B782AA5E89BAB6C9AD63B61E3EBF7557B01C69429141735BD7544804892EAFA6AD26AFAAC7946CAED1F91419D92D81283D9FEE3C60FE83E63E53C3150341D2F84B405CCF7909F3CB9A46155475AD1555758C14547419E85AF856652DAEA2DAFE7FEF3238068A1A073457D2239E12102525E5816E346BECD433EB451E7829317935BD69747CB44D437F4C0AA2AAA3B09220CE1210642F9A3AFA169985F5534618970E1DC3939D5FE89A76EFD865785573BFB9480AA2B97FC34A4A63B7040241614411AFA55FDAC2512D01BF4826D87912E008EA315210C5A3EFAD1808CA8C93AF415454D57A139845A3A849CD455039F7D1B8F0F24710FD63CF7E2BC4B240247B59499C1C3FE990EBE01ED4F38596F6B72AEA5A8BBB740D6FC8292A3D50DCAE2554DBBD5F5F43DB78CF8A82BC2E5A41111426AA8EA3BB750E2E2AED507BA4BE4B776EAB9CE2C33DFB8D2EBD2ED32B0E820A5601CA8EEF367FAEEAEB1210750F975874B7106D88BED8B927222022AE9E51D29AB1E220E8B31A41DC50D731AD770DA124D979E0856868AAA6B0CA86D14E2F37BB4AC4A015085E111915D415039194727935DDC26D9A06B77D098C9872C1B56BFA660E59564E214A366EE1D3AC92E69EF4B236727C26FF21F252B31F311DF7BB8348E242414DB7067963F8B43B4E5021E89DCECAABDAE74F4C7F90DAD0F09ED929AF4A632BF78BC81B2331CCAAA9B0B8DC14341694DAF990BC7F37904D5A5A1FCAABED17A0CA59A1A5FFD51481CE1D15F58DEFF2084BACCBADEE9A92C8A56F6297A0A1636A77CC3EA08B905CF22A80C4AE700AA12859BB45549A9DF671F8CD2092C591BDFFD9678A1BE455753BE5557572D1B1CED8D2F5BEA69EE9453D234CA62736B1A584DF39FBC9279FF82BEED855BD5941A545465E45E4EC4F9E3D7D2EBCE9943BB6485D5DFD2F874FB8D4ED3D646589D65B876CCDB241249DD4F294DDD9F068DAF768F67C7114E3FC62D73E83E76A68D85156D302593965D037B585333E04F0C7D3E1D34F3FFD61A3CCE627325BB73F5BBF7EFD081A0D5EDAA27975BF1106E495D47F40F72F6A1B62BE57DB6D302DBF7D67DA72FE067F0DB2C6E090B19FAB77C813CF60F20B5F5CF24BF4F6E0E81B0598B341AF0C2D1C9F6A1D30FFCEDAD1633CBF8C3F9F5D5C3BC3E4D42ED0B2798F12D8BCA751A965AF42E3B2C1079702CE816438ED8E85E3F6BE70184D6C2A9A7A7796E3959F4AF33E3265649AC80C3EFE78A3FD56C51D91F24A1AD95BB7A937FC535EA547EFE091C1332E9E23D676CE3D1656F64263F393170E189A97EED633CA54D7D24954D8AE81DBB445CEFBAF1F7D7C063D5B22CD7164FB96ED9137D48E779662660DB2B54B5ABF8BECBDA5E3BB4BE7D62D5D5FBB74EF6B5BBD64CBFAD75962FF05EE5A73924AC4BC860000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (145,1,'Satellite_antenna_(64)',decode('89504E470D0A1A0A0000000D494844520000002E0000004008060000006547451D0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000014164944415468DECD5A097C54D5B9FF66EEDC993BFB9A7DDF431212D6844542D8545C40A3E04EF155D16AF1D94DE9D32760B5B6D5FA6A95D256DBDAAA94278AA0501091256117210B24210BD9F7CCBEDC75EEBCEF4C828FBE2E421E1627BFF33BE74EEE9DF97FDFF9BEFFF73FE70C442211B89AED9ED5EB4CE3794E0957F945479469E379EEAA023FD5D435156479785C0F5FAD10B9F6D6FB6FDAB475CF33E37DFEAA787CF9436BCC9577AD7C67CFC1132B15F81ACF67A8FE9580672DBAFDBABBEFF9A6D664B0944E2B4C37B99DEE9F4588FBBEAEC0972C59A2F388FA9D8929E9735BDBDB838B17CC0C6DD9BADDCFCB4AD7783F53314E832FF9B5FEF9D7A6551D3BBE2B3D6782A3B0642AE4672601A356415DE3F961392CD26D4DF5AF6C78F1E9755F1B8FEFD8B143D733147C56CDD0598B17CCDBD531E49B6BD4EB52E3ED26301918F0F8D99853B567A17F68E45B78FBBAAF85C78F9CA89B3F3CEC7C96A6A81D34ADCEEA1CE85BFFCEDE8F46F2E38BBE151397F08C5ACD583CAE11E86C6F8596A633918913F273DF7AE3E5D6ABE6F103353596188DF545654449C53A1C1FDB2CA6F0E6CD690FAD5D0BF203F754424A4ACAA7E8A695713953EFE402A1B95A467D17C368FA2D66F3BD97EBF52BE6F1DD7B0F571A0DC6EF4622E10D5E7F7081DD647A7DC68CE2E37FF5650A05959898A8E9EDED0D91EB0757FF705D515EDE5941921EFDC1E30F548CCBE3F3E6CD53A92C59AF4C299B71BBCD116FA1288A4786ED0F4BB2530A4B2E59905C822C364B827430C0B84FFC72F56A9E3CF7AB37B7C4DB0C865F9A0C869EDA9ABA8D06B3A9CCA2B77F67C6B5C5FEBF53ECC2D885FEF75AD1668F89B1F6F70F08DBB757A52C5D5ADE7DD9C007FC8ADF3DF6E01D2B747A03606DC24A1C516333866519A43036290C6149C25E04BDA8E7D6BFBAE51825067C369336DD1B087CBFB1B965B1D5629657DCB5E4F14BD61B11B90DE4C82D38DC0C4AE90EEC5FBA2CADB2ABB555633659CAF53A06745A35E8B51A30EA9968F69B0D5AB01A756035E9C16A3682C56206BD4ECB00E7A95033BA25033EA9B8A5BD7777586329EBF78675DF59FF0BCB25CB0D9A6A030564D3406D0585B2F2B245963DA85A69B6589B8E1F3D0C6A5A055A0D0D3A460D868B0CB018B5603632E01AE882E19E56484ACF02B7C70B121F82D49C894AAB2D7696C5667FC36A4B1A78EAE7EFBCFFE40B6F543EF6D8AB9A7FF6E5AFFFE2F941EC121E7F7CA507401E6C6A3A9F7BC9A1B2650B501CD575A3A092EF6F6AA8AFD7E9B48EF90B16808A528252890D039DA889C18141A83A7800F2271440C9A40A088723A05153A0A4D498754A10C43036097841D2088250290A7CA54ECF7B9F7EE9ADF744817D4727F61F5CBB76ADFCF70862346F6113C2B913C7CF5E12AB1CAD69BF63D7BEE3BAEB17961D0DB8875F7E75C3EBD7C6C5275095B7DF0E48572483A0AAAA0AFAFBFBA1F2D6A560329BA3EA8C000F63EC0742A168FCA305A3E005043F6A003611AF791078D2B81E9EE7370A5CF8D72FAFFDE617A5FEEDCD3BB666A5A5ACEEE909B98A8A920E4C98905A7629C0A925B77D639B9E61F24ED7373ABABABD3FBBFEDA39738F9F386EAEABAD5565E7E42248193C1E0FCCAB2807A3418FF1CF8086A6D1DB2AD06854A3D76A8C52F49B0E438B8C35186ED186F7A8D56AC02204B49A31E17801ADA6567F527D3A69F7BEA32D8BCAA7B9EACEB44CB3592C23D75D37B575C4E529FF78F7FEF3C5C51306BF14F8B2FB1E4C329BF4372B456538120A9773A1F0607A4EA6A5AFAFC778F8D021A54EAF87D2B25204A523E9841E14B0933194A86822330894CC8C96D100AD54607EA811AC6AB4D1A34D13ED69044F8C40B369F574955AF3E8DEC335531995C21D1F63959393E34E0D3B3D6CEFC0D0CD2513F3F75E5201FAD3474737D98CFADCE6F69E9343DDBDDB8B264D7CF07C6B83A9BBB373415B5B2BD86C36587CC30D80951918CDA847552A25502449541482A130CC95C49E687888183A02B60BE1C261CFF162F49AF41C798FF4BC00CA300F8931A681DA735DDF8B2F74BC6F71F3D52BEEB9B5ECCBE42EB56EDD3AD85677ECA3084B7F2333252ED0D4DA2A1C3D52AD8F49489D683168CF1B0C8624B7DB056DE7DBA1A1A1116263E381D16A493A011629A0A3C0D110021CEB8B521189F2BD068D41DA1CF53ADE437A7ACCC8683FF69C925281DDAC3778B9F06D812176894EADE84E4CCAECBCE986053D5F0ABCA2B0307CE048DDA7FE90F4E08CA90561D7B0EB595E92727B7AFAF6A5A6A6146151C2F8D4808849B77BF75FC0E5F2460DA0542A08CBD162153584C4B341AF450AD54130E48791911104486642C67F470045D7A8216AD517E055786DD5D2101471F668759C20C9F9FE5070FE91531D7F993F7BA2EB92B4CAF31B3E58AAD53195F91989A1B6CEF6974E9C38BD47F0BA56144E9972281462816359F0FA7CC8DD7E20AB3EA3C98C52A102D25353A221C460B2467B351DED89F79D2E0FC63FCE10CE4830C44388E5A32173219C0813A92302F4BAB9B1700A4343ED7148CA2C1091855E9545FF8FD64679FE4B44D6DA57FEFC925E6F68CC4F4F28DDB9E753977B68304FA7D3DC9A9B5F043CC6A48AD640477B0BA4A52440FFB00F9A1BEBC1E1B0414545054C2E99884C4347170A5176194B509EE7307CC2A0D3E940440A259449E29C1FEB253608435E169061C11F0845598CD19BA346E1B3231CCB3DFCCCB76F7BFF6F42E5E257D5C75BF70524CD73214EF8C994E2A2793895376767E769D4E8358D868972B84E6F8296E67360B2DA60A0B70B4362188D698793A74E032A43342436AA6F4841228D142825864910670D89279A1B0A1C28B151186224277CFE00586D5664250D188C464C7A15DEA724E1A8C3F1B2AA138DC2ECA9B987FEA9AC7D6CFDABC9B44AFD467646E15D0AD97B7A7870204D0A87B17AF603CB86A074FAF4283793F826D5F5D0A16AA4CC595166A9AE3A8839E0849C9C1C983D7B16A4A7A57C418B848988C620A0099DCA91D122C6068270B6B90DB2F119E18BE275112391D9E149CFFFC1C8773EB46AD52AF11FEAF1879F78F17A35C35C97E0305E9B949C51E0F379A3A142A63D14F063424A909A9A060CC320CBE8E0D8B1A338D642726A3A9CADAF031FE682130DE0300C4A4BCB60E6CC193813F6D1A42472626C5382C26B096BC3D1E327613AD60B5285C5B1D8FFC20871D488313A3DE091A8C57F132A175E372D9ADDBA65DB2773B0505028BAF289C77D5E3770A120A02A04056A1432E5C490EAEA2AC8CD2F8063478F424C4C0C7A9606ABD58EDE9420E8F74629EF0FBFFF3D34369E039613C064B161722B1090088160282A541A1A1B212323736CC327AA1DA34C7541C890467413CE703AAD08FBFEE9D22DD05FB756920B77C6C6D8392EE8634C662BC8449F04FDD1EA393838104D40C2C76A8C7FF22DB171F110C0A9275F140C06A1E37C1BC4E17B4AD4327DBD3DE076E5C20F9F7C12F2F2F361424141B4272A99E401E6551428014EC2880CC8E7501882844A23F4282EF7C8F0EA7FE871F25AB66C59E4F54D5B3FF4B8DC8B1CB171B15A2D43D11A1D48A200019F0BF2F3F2309E5D60B73B90EE5408B2958829B060D2CA128F6F6990257C18E7A9A05233D0DDD58109AEC14A1C0375B5A7E00C86D481FDFBE0F3939F235045D4FB1A8D169FA34142EE27424E1EAB13A3868C4EC4A1EA7DFA4B5A735EB76285DE48C5EECDCA4C2B8EB15B75A0A481E358D4EC08CCEF8B169A94CC3CA8DAF70916260764E0980D7AA1A3B31BD2D2B3A1BBB3154A4A26434D6D0DB4B53603A1D623870EFC7D9D8D9A262F3707D043188AB836400A253A89F42154A2CDE71AC9ECD45EF26279D6F2E5DA1875FCC7490989135253E31D1C1F89966FBBD5026D6D2DB8B0C881EAFD7B212F2F1F2BAC08BD3DDD9094920E2DE71A20774209D4D77E0626A309129252C1116387A387AB4167308106F3857C8E73C4896122434A7212CE442D996DD8B06163541613D069699961A3C5D2181F9710B65813E65FD62ADF9494E49873CDD2B7D013F36935AD2E2A2C80C4840418E8EF0647421A1C3BB41FD29069C827F6F674C194A9D370F171309A880FACBC2BCAD71E5F0042820C110C83533535505F57030BE6CD21B3D45F73A6A14A12586F49C9A4998D67CF1C494CCF2B93F860974AA571F21CFF5FB9B959D7783CFEE687EE59F4E965EDABF8FBFA9EBBEDC6F2F4DCC229F2B0CB33C4F26197D71774D8E2534C18A36AABCD010A22A82894BA28C408AF6B50E64A08F8745D33B4B5774057475B541A9359C9CACA86850BAF838E8E8E2695859E5E5A3AF39ABE21E7D29E7ED7A19229D3CB31C6C5E6D661FF8B4FDFFBCD3D071BB29D3E4F0A82DE78D91B4258C15C3CCFF6899268D1EAF47142988DA5507C05FD22F87D6EA0B526181CF642281840DA63C1597D046763B468D9D0288167D12066B422626B6F6F8373E79ADAEFBD6FE57A8DCEF087A0DFDF939B91A80E062CFD7BF71F7C3B14F066A5A66697DEB5EAA9DFA1FE05CEC03F32AE9DACD8D858C3999A93F4C9BAA6F5870E7F96FADC0B2FFD1EC3220D99310D5742BFEDED683D86491BC7717C1CF2BBDEEFF5280358ACFC58BC0281407435458A9452A98A5014FD394A88ADC8A347398E9B1E171763EFEB1FB27F76B22FAEB5B9A9AEB9B9D1199604A6A9E18C3B2131A572DFBEAA475F78E6116E5C3B594949492F1A8DC69BAA8E7CD638B37C61B51C0E4F137CFD7DC8B57326959617D79CA8462114F9514F4F4FF3FAF5EB957FDCF4EE1A5AEBB859A7D327CC9E530EE73BBA6A4541602549181104D12D89A2AF7862A13E3D2D5DBF6DFBB66A5FD0E79204D9AB53EB433EC1EFEACA4FF045DE7D37FCFFDE3B442379BFDF9FD73FD0E7985294E5FCBCAE45D218E375426070C78EAD9B66242727FF42966513B977E3C68D05B4D660A698481672704C5C6CEC53AFFD74CD8FFFD1673FF5DDFBBFBAC32BF4AC40BAF7366F3EF7DC4F7E1E1374763D81F3B5406BCDE88C9EA0D1F41ABCE73F333333E3500EFC3B310AD59D93FC4F0E471AAEE406EBE59E0145F70B77EED84E6AF4D299D7CC7D9995BCE558F46ECD292E5FDADEDECEE1ACACC105C0BE884AF56BBCE73E2C28C458E818711DBB6AC049A8907E6868A8880DB1A15B96AF4CD6E9E3ADAC9ABD5706F9BB5925E50B5004C5E32D751AC6FA24F6663559DAA3C3DF7CF189C1AB061C41F1630668F67CBCF34C5E5E5EB99ED16DD609DA8751B7BD8D99BE49A9317E5B634E5FA3D4184AC8BD6A8D2606C32910B9C22708E3F238797DF4C1168928B7DB96DD2121A29FE37F7F4B1853AD77542A55CA0E14A2B9A8F42494B876EC7D57FAD463DCC0DBCFB7E52383844BCBCAA6A56764551B0CC653286DEB5594AA45A15092AD05371AD6498C8B7C05C055971B2A17661C7BDBE99347EB32F22717DFBFEA91396E5F10BCB8C8258B0DAFC70D3E6C5EAFDB4AFAAF83C7858BAF776E7BCF7D49CF29AEB2C749A85C7C827DA6FE74D6A1FDBB4E28690313A1D45AD4FE0651144801D2FFF5C90378AF2A702C2A6D18D7988820964C9B390B288DF670F5415D6BC3E922477C4A0763300D0E759FD7E3DADFA562CC07F48CEA8F118D4E0451D973558177777793B3C8EF93F1FB9F9CEA707A82692DE7CE020287E48C8274A32D1EBC2343D1651830067DEDA9FD1F7E5507C0E33A2ECCC89BFCB2C3669E8E6A4F21CB923522CBD98855F63A872881E77131AE082FBAF9EE8365736F58F5F09D151D5F0BE0D9C5739EC6EE4740389A564C9D3CB9F4D7F9C5D3A74A92A82E2F9BD4555F7BEA8FAFBDB4EEE4AAEF3DFF1F267B624C2024CC79E2DF16F55D7DE02573FE84C4BCDC6A77BC3EA1A0B8262E2965E3BE5D1FB6CC5DB4586D359B70515CE4F0F152011B60F78658BE800D851A7D3C37F7C7AB970D5F353ACC9938A702415758AC764FC9B419BB274D9FB5C1A8D3AE55A9D53A41082D6C696D4D1C18186A8808E2AB921CFE6F72268A8D53F0FC9ECB3946BCA2C0B32696DF8873B305D59EB2B064CA9B93A794FD66C6A4ECB78E541D18985038A9E6B5E7BED789DE3DB373E78E1C5E10CB44316CC1B5E610B64149141A2589DAF5E8A3EB0DFF52E0D925E5772A1491F7F0EE73597905CEBC828973A714A49EFF64EF274F65E4173C9B5754DC4FEE0BB1C1B35EAF67CBEE1DDB5D6151BA17573856046D92C3C21B9228F50455CA0FEFBF7F3DF32F019E5D5CFE20569EB77015F19AC1689E94929AE14A4E4CD0AA8D707367BFE785F48C1C73616E7A54B2F2C1C0592E18729D6BA8AFEFEE3CDF84DEA6B1350B6278ADECD6DF8D639F0F02EF4F7BE821FA2B034E7EE4953DF11AE4ECC86F2272E40748790B1D8EB821254565EEDDF5D1BD4F7DFF850A9BDD3EDF6E31559B34E0C5DB4DAE91E10E5CE1CF1AEC6B5BF797EDEF660A3CD78B95743ECFB1670254D72DF5878EDD238ABCC2362C6D5ABE7C3975C55805BF5CCB304C028A29734C4AC177546AE63E890F6E96C4908B31C43C929D9BE76B3DD710D2EA0CA6ACBC094A8BC9E89D3EB3DC7670C73BBDD507F64814AD316A2D29B121E7795E8CD09EB49C62FBEC79D7D3073F7EFFB3CCDC92B46D6FBFF22CCD301DA5736F59C3B16CCF67073EF836A1556CECFFD541970C1C41D3CBEF5EF91F0B6FAC5CD7DB3F84AB1C170C0D76C3485F0704B830B02C07ACBB07383600A6D86C48484A06474C0CE4164E81BD1FBC2977B49E25CA91672CC966CEDB3F802AD1658E4DCB9F52368722BBAD98B8E0750DC1C8502FD01A0612D3F26491E74436E873BA9C833FED6A39F32B7C5E1A4FC957B9474634C34303B246CD28E312E2C1EA8881F4EC02E0381E789685502818F1B89D82C73522BB9DC36EB34EED8F37D1E6150F3C1C542A28B263AB96224AD21B2240D92439A2E41030C785D07016C898E742D10D537C4F29709C86171C895EB7733E7EFF1B63DEBF6C8F937827BF5E588CBC6CB33BE2E30C268B9D6174368A569B288A362A940A14500A1DC6BC5EC4C44B4A881BB8ADB2329E1CB4B2685C28C4CAFE40900F840242004B262E4B053EC48A5C2820F23C27B06C481478161DCD490217920481970411FF42813F0783FE77114B68BC31AE1C9B056AAC916BC200E4E71BE44CDC888D1412B3466748C848CF4CD6EBF59CC7E5F23A9D236E8FC7497E15C48DED06909E1D1B0B63DEBCB85DF8E544F40C0171705F49C91FFB29A972AC5D6C5874DB6474CB3DDA5F18FF55BBD28BE5FF014EAA096BAFB3185F0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (146,1,'Satellite_antenna_(96)',decode('89504E470D0A1A0A0000000D49484452000000450000006008060000004BECBFAC0000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000026294944415478DAED7C097C54D5D9F77397D99724937DDF1312086109105651CBA2BE4805772B56AB225D7CD5AAB5568B565F6D6D7169D1565BD1E2020545D917591396040890102081ECFB649F7DB9DBF79C33331068FB7D8A50C5EFBDFC0E67EE9D999B7BFEF7FFFC9FE59C3B8CA22870A56F454533C20E1FFEC276A9CEC75EE980FCECC5A5E94EAD5EBE94E7BCE24151C9EC889ABD6B1DFF0B4A70DB7AE0E4785058EBA53EEF150D0A0370CBAB8B1F3AF8BFA0E036F9DA79F336EF3EF25A5F7777F76501FB4AF33E0B172E54C5E55F5DEF76B9C2BBDA5BCA3E7CEB37B3944B3C08FE4A634974CE55B7DF386352B2204AF0F9E63D2794CB7057BFF5A030B7DECA5DE5607FFBECB3CF8E6CEBB69FB6DBFA6F686AEF054442F47AEDAF5D8EBFF9AD0665F2CC9BA64FE1B49F1B2322C3D66ED929DC3C6746715B3D675EBB76BDA2D16AAA6C2DDD3DFFDF68CAF3CF3FCFEE397C7AA5466FBA393E3185898D4B84084B24A8D51AF0F97C8D99A931ECB0B4D8944187D0B1FF685DF193F7CF6EFB4E33E585DFBD39BCB9CBBD52017E784C6C2293949C0EA9A929909A6081A87023F80531BDBDDB069B4BAB61B0BF3FA1B3F5F44E80D939DF4997BC7AF56AF5D2773E5ECCB26C794242DCFA29C56336ABD56A41ADD18041A78608B31E92E32C1013690693410346A31104D1CFB8DC42D6FD8F3D67F9CE3165EDA65D13FC92EE5D86115C5969A93F6255AA5F0E0CF4BF555B5FF9449FB9E76DAD4E3745946468B30E8028CAD037E882EE6E2B32A50FECF641C663979EC6D33CFE9DD094AAAA2A83DD29FE8FCDEEBCCFE1743D979F93A3EE1F1C98D7D7D3BF60FEFC9935A1CFDDF7C88BD72363DE0E8B884A526419DC2E270CF4F7424F77177475B48249AF6FDFB7634DD2150F4A7575E30C8651DE19B43BEB049FE7D71116CB0B2CC355D570DEA76EC9CFF70FFD6C7272F2F5B22C6F8C8ACB78262A2193F1F83D5739EDF6893EAFC7C0324C67545464ECBCEBAE8B7EF4D11FF55F91E6B3F5C0014B386F5EA2D36AE7F22CF77364C8A0C9A8FF1B28CC63052333B616FC8BEF88A2D8CC71DC3B6E7BD71F765494FAF0D08B0C6E0F3FF19BDAFCFCDC471A1B5B96B21AF54D78FCDD2B4E68376ED97B8BCACF9F5464C564B7B9C79E3A5D570CA0DCCF28CCD58585595BFFDDF73A3B3B4FB4B5B52D3C73E68C2F742C18C9D6330A646162B8128FDC71D98496449085EDEE478A8AA77C3F323A2623C2121DC6AB381BBE63450AF7CB92D42FCB52BF88BD22D1FD1E59100FBEF0E4DDA7FEDD1F59B6725D8249AD7953A7D34EC08B5F74E8687593C9A4FD0CB560D9EC1993165EFCE52B141445E1FE8A3B4FAE58B723F68E1BAFB55E5250728BAE8E1A678AF8FCA61FFC7072544C1CB91BB4C98A62C0BB9B20CB0A482874326D1220202005DB0B4B3FE99664B14412A4125991F6BCF4F882E3E456BEF5D795F7EBF5DA57F01C9FDA656E78F5E163F7198DFA67D1F52E987FD3CCAAAF75F50AD3807F63C66F7FF3E8F137DE5A5EC30BE22D7874E925058567B8FF19969F3F3929E99C90078001024C002039D0240581910220115010A018EC6F9624F166B2FFDCEB2B6CAF303E41AF533336A7F79747CFD46E3071EA95069DA15E706B262F5878A3E7EB135DA9C7FF16D157C0AC0006EEB814A09CA729667358BEC96402B58A070D696A1EB41A156D7AAD1A74D87090B419B41854E9D560D46320A5D782C1A0C766009DDE88CAE801D6371806BC26CA2E6923BBFA9D7FE6FCD02CAB0C118322BFAF43F25E222DA3A0A4EDDEBD9B07465C81F76EE2BE7D1529978C29E595CD57C7C4C48E3E555D0DD3A65F0DBC4A85C0E33F8656B84039CB1C3867563235ADA0492960B70D4267E329D0F22A884ACA0099E1A1ADF6388024405C4A368B77739C248A1F8A92E07EFAF7CBD78AA2F4B12D52D8FAF6830F0A1773F15E233460C7A9D551A98F2C9A5EBF6ACDD6433270B7E1B1DF5F12A66000F5942532E6CF1E8F130E1F2C079E6581E75950F11CA882AC093087071D32E72C6BB0D7E2F1C6D327A0F2D05E888E8E839C914598BCA9E060C917603699216F543198C323C06034059AC1ACC7FE0E0CD5D7C7BA8C9D08D05F1EFFDDBBD382F87FE9EDEDC58BDDD875318C9415302158C1064CE8EB33E54065F3E8E6B68EFCB4E8E1731AEA4FE51F28DD737D789819468D1E031C82C3B284310C60A0449933746B6D6D855D3B7742187EFEDA99B371D066CA1CAD460D13A74C054B742CA0480309D3691325105073488FACC15E88C43864A14614163EF3EA47AD4F49E20A41963E5EF28BFB2ABFE418EA255008285B5500FF40609654D634E4140ECB38FDB540F178DC4FB575F5BDFAFCE2DBFD5FCCDD727B765AA475CBC68D3A02C498316329201C02C312800830C82FBFDF0FDBB66D8393D52761C6CC1908E028E20DA83911EF246914D0A6A7C1E0C00068F5063C074B8120C00440190A90186882908CFD93D83FF9CC920F4F0A82F0B12879962FF9D58F5BFF2FD5EB7ABC32CA9479F36675EEDD7F6C0F2753B63C7FB1A070B36EBD3BABAEAEFD85CE81C105667378D68CABA6FD64586EF6C82EAB557FB0BC1CEFBA0469A969C0720140588E81BA3375B07CF972E03915DC7BEF3D909D95193033DA88D9055E13B1369A0C20FABDD4143598F15293E4029F239F097D96471DE2B0F13C4F5F631F8DED1A8E57FFEC8BD2A379DB765734CF9836BAE3C201541C3D51101B1D59909C1CB782EC37B776A9B51ACD03B131116F5E74EEB365EF892F3ABAACBAE8088BB6C3DA13D169EDFF4864988F664D1ABE72F9C7ABF24ED7D66A12139361DECDF32122221C8160E1BD65EFC1B0DC5C183F7E2CA6F0061C144FD914322D25E8CACFBA6F648EC7EDA6ECE054EAA02905D82250F648B41742FB62705F1088791106059AE82FC5634B74DE96F58B172FA6B382EFBCBBFACEE1F939CF4E9E589847A5E0C0498BD1ACEDAA3B7D66DC4D37CDAABC28A65C37F7EE07232DE1937B9AFB9C8E5ED75ABC97954656DD317C547A49B825E601B7C7ED6C68A85757551E038BC5029151513076EC185AF821947762C6EA71B9496A8980213B504B541C3B843981A6D56AA9603318DF68B52AFC0C7F8E55F83DF25D7E087B02FB3CB2870FB2075F737C2AF6B78B2ACB5DDB4B8FCA5B0E549D8C3430AA98A8E8C7DE5B16F7D2F4E9A02427477BAC3D03E37BFB0663F3F332B75F9CF95CBDE843DE2CDD1B116D4AC0C6DAFADDC992283D5D5FDB719FC164A8345A2259935EA76B6D6DE1AB8F5743535313C4C4C68209BD0801C088B109894FC820FC821FFC5E2FD5143208E2AD088B54AAA039A147D2A0E762914B1A640C397ECE7C02401040091B09405C1034729CA300A90830B8CF5B3041BC9E6798450E8F286726C54E8EB434BC979D9D4C27D9BB7B0798FEBEFE871194372E0A94F5EBDF960F56D77DE2F34B8B8C061D2BAA59FD80CFB95CF4893FD7704CA7CA685CE0F5BA37A4A6A4E47574B4C1C0403F1C3A781006060720312111546A3575A47891E8713480F90DA8112C06074E225B06CD8832005942824235054B45BD1A0544350414FE0290CE32861B02CE5080381DC3F2C549D16170AAB963F8BAED65C7AF9D3CAACBDAE96FE81BB03EF7E9C62DBBAE9A34FE2BD76FB9E79E7B0E460F4BB597553656BA7DC2FD89D161AD3DBDF69ACE9E8EC555A72A776565E7DA9C1E618ADF6D2FCDCB1F91DBDAD242BFD8DD6585036507D0EE25484070181C64A83443F48527E6818327F10AC705DD7A406DA8B968D08418FA059982C90F31352E04460810FC3E17640F05860B1E437058FC3B16A3069C5E7FA64F8287761CA82CAEAA3B559E6031C7F7F40EA45F3579DC968B02856C45C353CFEC3B526F747A7D93F2321263149F70577347FB1DE5FB4B0A9352D2B3FA06ECEFB1B29032B270741401262CC202A9199970A8AC0CCA0F1DC281E9D0AC6202112F28677326326C02084B75863085A56EDBE7F3A278FAA9A9F97C3E0CF28CE75812D4176A42DC10130A991605843BDBEB351CFD5B3E897C9ECFE2587EA12088AD3EB773D6AEED9B5E9D3E7DBA7251A05077567B6877AF4B7593CBE77766A427DC3E6278CEA2B2B27D3B194615AED1687FD4D6DE74B541A75F3072D4685DFD99D3D474468E1A0B0DF567E0F8F12AA83E710A222C519843990309A41C4C2465E56C6A4018A5C614C288B95298D948CDC98B3A545FDF14F034D814FC22E1150142AD1ACA16EE1C286C9035D86B113C90451020C01C0486F58B9023791D2805AAA8F212EFB6E9D3D3BEF41A967F2A47BEB2745D02AB571DC588F6ADC468D36CC127CDAF696D75B435B5D45BBBDAFFA688AE0F0B468C3E62898AD6ECD9B51D6262E2819419F695ECA083D31B7410151903D3A64D85E1C3F3A966A88362AB0E6AC885FB8441384EA86F6C0306E3209D560F6EAF0F7C5E146E0A14C9CA09ED90654C006C013374E2BAFDD83805A3639F1B06FC1C75E57E81B874115CBD1D80E106C426A5D7F865E1B1E77F7ADBE6AFCC143A2B373ED7B17D7F75A5DFE75D8241D4133A9D6A6958B8794353534B97CBE178B6A3B7E315C9E32908334764E7E60D87BAD327E92455564E1E58BB3A60587626A4A6A5C2AA55ABA1A2E208328581A8E8186A478132831CEC03A1FFB9630A84879B6932E6703800C304649C29E8DDF49867E9A80EF12C4F4D9147930C08324BB549163CA84E245E52A876B11841B3F87E53DD294848CD8AC210E0AEDDE52726EC2A3F56317D7C41EF5702856C578DCF6BD8BEF788DEEEF23C1061313DC0CBECF2D898C8D76A4FD7CDF1389C69919688E93DDD5DC6B0700B64660D83E6A67ABC602DA4A46641F5F14A20F598D1E38AA1A7B70F3D5539ECD9B3071C4E37268BB194DE34780B82210E69649F43D3222EBE7FC086B99144E31B926210B323A612D01562361C3D16081A19F0BB5DA0F06AEAE514640ED12BE204505B20222A9ADE3896E5B259867FA8A4FC44E4CEA3F525D3C7E6085F1A14B2EDD9BAA6C4CF9A6EEDEBB725C5475A7EC1AAB80F3C2ED7DF319779A278C244930B8336724F2C91D128B009187FE8D0156B713F162A0E97410202E3F5E185618E24887EA8AD39053B77ED842E6B3784A348EBF0CE8B1780124A184914ACD56AA816D9EC760A14D11126E8D942C9296DC19CCCE3B4831FBF6FC6C4548D311039BF1EC18D8D4FA41E90A6290824DE1496E1D8624E92E6EE2A3FB97BDAB8BCDEAF34C5F1C84B7F8BD572FC515EADFA4961C1B00A4610571D3E529136227F44ACCF2F048235BC1364E07EDC2761B90F5F3BEC3668AAAF8182B193E16879099A831D592022705A185130128E1DAD80D8D838B8E6DAEF41C188E1E74A14FC39510DB96132708FE75CEE449D38491DA4A14C93A0B3AD0DFA6D4E48C63C4D08A509C116D09880CE08E7BD165C92DFFFE35F2C9CBBFC2BCDFB3CFAFCD2E91CAF59ADD5B2458579237D1E8FEB605DDDA96472A11282E074B9CE66B92ABCA393274F0683D148C3781605D48782B966CD27D08D0C291A5F0C63C616D1CFEED8BE0D0E961FA0E04CC3F87CC2B8223005DD327FD60D9F33193209469A4ACDD38C3B583B3E0B90B5A3031A5ADAA1A07064200397CE07861CF39F074A28BF12C9385E7EFC47D73FFD9526C37EFACC1BCFF02AF50D9E786E5AC2A0B236353DEB3A22A0848E0E870D7A7AACD06BB5225BBC3063E64CA842F74CD280EAEA6ACC93C6425A5A060CDA06C1EDF6D218E6C0BE7D503461229CAE398974B7C0C6F56B68F89E9D9303C5138BA1B0B09046BD7C483F286B98406D87C63D2C8DA29560F649C0E9EFE9852395C761CAD42954BC43C09CADE104134EF102169D6BE28B3FBF67E6B35F1A1462C60B7FB1643346A8C7A3CDBAECB8F8A4B9BC4A838374417F5F0F68757AD0EA4D981806F645F404999919A83571C81815D437D4437A460694ECDE83E6E5C3A4329AEA8AC918061F7CF02E46C449909199032D2D4D70A87C3FADBF8C193D1A264C28869C9CACF35843B5819A901808F5D940F1D08926BA6BD71EB8EE861B02F59C90895D00508835A142D7F9C0088F3D7AF7CCD7BED40C2189BBEE7CDCF903BD5F73D4A5E13F9124815E04B978735838B4B736E0DD02D0E9CDC063DC6134C7C2A0C38F2ED60F9DFD9D98CEEFC3E0AC0EA64EBB064A912544706FBBED0E64D231F8DECCEBA9D91D2CDB0F39B9F9508D0279DF7DF7C17BCB96C1DED2129A99178D1B0FE38B8B21293121604EC16AA0E076520048F98254BE1C0E2705221428066A504131C618870BD698836FFCB370B3EC6FDE58B1E3E37FEB7D2EDCE6CF9CEE5EB96EC721AFD7FF628C255CA752A93113B5A2C29B5143C2503BDC1097904ACD00850778F4464D4D8D909C98489970F26435D8104886D761DED40E23468CA477CFEBF5407C7C12541E3D8CF14C2CF422D37CA85759D939505F770645D643BD17C9D077EDDC052E97074CE11134EF214010D3E9EBEFA7A33C73BA16E2D1EB1106C941CD390B50B0E03E84FD102A09876A41F8BF1AA1812F0D0A05E686E92DFF58B385A87C417C7C8C519604C6ED76608CA2A7531B44633ADAEAE924198915FC1E176508A9B9785170478F2982DEFE41B0F5F7D2FAAF85A4043840AFCF83015F26F56036CCC21B1ACEA0679A854C3A8E4248BC99036EBA691E66E67634C19DB07BE70E4C2BAAA10BA3556226911816B811483FE6504673388AB1263861A7D0F769B1EBBC998873945142D82881EE744D75E25702856C37CFB976FF07ABD68775597B46A7A4A66B895092AA980ADD2DCB129638E84048CE320641206C20394B6E6E1EBD833D7D03288A561A3BF4F5F65060C24D7AA8A93D8DC15F060EB403A3572DBEAFA622DCD5D94E07585B5B0B731198AAAA4A9A1FD950B81B51AB0E1F3A889E6C3B825F8FF18C16AF4343BD9F4C23E873D32F8126D3E3944110E843137E21D61C3CB0D7F0954121DBAD7367ECFE70D57A68EF689FAAD3AA38F4148C2CC9F48F68347A10F0CE93C2362946D5A109383000B3A39722C198DB2B80B5B305CDCD83019A9EEA495B5B3302E94333E805F46CE0F53861EA94C9909C9C0635E8A1041A9DFA61F4A84234A9062AF0E76B9E4C0BE424313D545E06BB76EC80D3684AFD6856E46F12E6105393822E5C51020C0A954C09242453DFBE6D131C3F7AA4FD6BAD4F9973D7CFFE9BE7D5AFE664A53131511686C41F2CAFC50BE0C03ED88D89612465697373138D4D9059D0DAD50F8DB55528C261306ACC04686F6B81B6D626987EF50CD8B0612DBAE5E180F90394EDDD052331D0CB19960F6507F6C3D12387E18639FF856943053435D6FD3FBC2543C126AEBB60781E34B7B4A2097B30DA8E42538BC434C2181015BC385196D0E4DBA0A3BD9564FDD2B0FC82A7BEF6A29DEB6E59B41023DE3FA7A624F93352933464F0C0A830A14553720C4076EE303876AC8282928AF14A5D732774B69C41B3898009C55741E99E2FE89DCFCB1F01EDED5DD0D9D10C59B905C838031C2EDB83418982714B110215013EB71DEAEA1BA1BAEA08BDCB448F4CA821249C27D132298106A823D3C9BCD3A76B00AF09162E7C109E5DFC025D1276DE4C206A605C5C0224A6A4784CA6306B4C6C7CF58B4FFE70CE2559C9F4BD79F7DF8377E6DD98A82887C96C0C1F187462F2170531E84DE2A2C3F162BA50036C9086A671E27423387ADB41AFD763003715F6956EA7D4D5E9751019970A355587298059B92331EC57416B4B2D5822C269E973C4C891E83A556047E176FB6434DF2E34C576C84C89A59FD95F7608F6EE2DA505AB1FDC7D370A3EC0471F7D00E9E9A930E3BA39F0C7D75E254BC3C4B4F40CEBF8099379E21C06FAFBB6E10D5DA63798DEB089F2A4C7EF9EE9BA24A0205DB3E6DFF393594EA7F03A8B3E99CC43C7C7C540667A0635A7C8703DBAE77AD48B6C38565D0B92679006640523C7A1599451B74CEAB9238AA6C2A1D26D1414228ACF3EF5286891014D48EFD6D60E686A694317ED834C74D73ACC9E77A2173A5A5141B56CFCF8228CA667598D6191725D63F3475B36AE5975EBFCDB664447C53CDC69EDFAB3C1681874FB9487352ACE8AB18C4716C497172D98B57DF5EAD59C5F135FE276FB9F78E0F66BF65FCAE55D2505D929EDDF9F7F07DBD9DD2BF50ED87C18C774605E647039BDB13697C0125125935C6423390ECD97300824D930018465452A8A64828D6801C949FEFEF16750306A1C6C58F7290D164952498E97A398464410F39B0CD3AEBA06D9568299F9A11347F75514BFB8F4B5A8E898D8FB6FF8FE9D1F75F40E6C76B8C479C989B16F201B8769D5D0D5DAD6C676D694CE7EFBEDB769D94065C978DAEFF6968400B994A0485E8F4744CEB1A414C9ABB47AB7D79F2523D581F3A3C7F1038FB95253470F15391EF31806BD49536B1B488C0658157A01D64F732792BDA28D50AF40A74D302D90110CE2A245910D4EBFB2303868838D1BD68111CF376EC224EF35D7CE8C1444E5D1C67AEB9B8FFE68D633EFBFBFFB454D34FBBB9E6EEB96F28AD6FE70B369796C4CFC8D9C4A2D3AB998BFE135DFB3ABBC662C5EC95CB53762D2255F088829FD31900592901CECEBEB4BD2EA8DB168965C304A0AE4094A305E42D577B8DCE075BBC91C36BADF73FDA993351880050ADAA4B4498E47C6245040E83CF6BF686E8FDBBF63E7E6EB7373726AF1E48F6B54CAA9773EDE7E2236D1926C61604B8225A6E0D34D9BA0A9AEFE7E87ABA43223332B3A2373D80DF3EFF9F9DF7EFCD0FD080ADC73CB2DE7AFC6BC24A0A09BCB4197D9F7F4AF9EA9997FDB0F0E6356CB2F79E54FBFC5C02915142615E1484558D2F41AF55D0EDB208245D640296A381B82877A999A880F0121710C09FC9C4E5BA048149AE00FF60CCBD662BEF2AEC2487F2FDBBAA17BF7C99346CEADEAF478BD8EE636ABB1B6BE250AD38A8CCA43072676F7742B9222B72A8AE8ECEDB68EE5F983F128FAF76EDFB1FBD3979F59547559D6D12625251D47B14D387EA2C6DCDD6F2FB8FEC65B7E8BB4AC395355FA14793F3B3B5B8339CCF76FBC79C18AD2DD5FD8067A3B07307974982C51B5E6F0E82E63786C0F9A4EA2CBED1E8D60E47BDD1E038A2F5330B250494E4971F6F6F6F6A196B82441F40A12C6CF8234883AE44300C3F4069D65CAA489C979C386990E1DAAF0EC292DED73395D83E89E9D1873445657561C777B1CBD9220D911793B9AA60D64C66EB68447F51465BFDDB26489E7B2ACA345607DD82C7B4B4B4F8D1D37F159B7BDED299D31615D5A4EE154BFB38747C0C8922BBDC33ED8650CB3B008CA13674E9FFC74E8398A8A8A549D9D9DDB7596F40A8D5697AB451F9D9E966EABA9AB5FED777BFA2545B463EA6F9765C986B8D8D154ED3E49B48F1D3915FC3AFFC0DC19E3FBB029C12570DF8AC5C5747DEB071FBCDF3F76FCC4DBB3D3D2C73734341ED0981367B216ED5F7C036D5908CC910F96BDF56A5C5C5C06E6423BE2E3E32B1084A6D0093A3A3A16F36AFD4ED49CC51CA772CB8A6430994C259B56BE75C9D6DCFF471717234BA8509597951146B0EF2E5F55D1DAD2B400357532065B8FF1BAB09CB6B6B657C967BABABA1A10A05FA02EAC2666458E2526264EC6636355E6383331695EC519E8C5716CFD37B144FE92808203A24C41634FAEAD39D58A30DD5A75AA758477B025CAE7E8EA51E9238765174EB931F479046815618ECBE57A1D459A00F12746AB7D1875E83E3C9B4C6A3240AB6B52ED150B0A6E675DDA8A8F3E6826387945EFCB1895FE1D24DFF7913177C90AF3715621465AE7807C04D93205DDF94664DAAB5A43E2743C1C8EDEA59709AEFEB17659CBAE585088D09E9D2FDABD238AF46AB5F686AB66DCF05E6B6BEBF13395A5EBF1438FA3CB5D8BDA3B21B880D083DF7B17011887FD113CCB4FA9C8F1FC60E85C7BB7EDAABBE2CD0702539EB93D3DDDB43E9893377A7EE6C82977D1258CC7F7FE4561983F61A0BA3973E45505C9C9C98978F841B2A69ED71AD6633F9286DD6A7568225CAAAEDEE5FC4E980F0163EDA7ABA8165C3BE3DA711A95E6C5ACC2A96F648F9916DD5055FA0C86691B3188DF86724A74E5C9F6F6F63FAA0CD16DE7A263AD31842F7C43DB25371FB26DDDBC414B4F8E79CABC5B6EE9C348FF614554BA330BA678514C67E05B719AF0A45CAD25635156C1D4152CCB9FCD3D78B52636F8D27E45838282791E28DDDDD6E16EB78B468A53A64E1D8B621A7AF48DA4C9A14147229CD70303B79F8D9718F0F1A46416A898DAAF74A6F82F38A4DEB96DF3895069F0E65B6F770E59DEFFEF2F86615B430BBA31A9B67D53A05CB2309FB9607DFAE6F59F4957CF9C435F178E1E5B94993B9C4C51F806066D0E9BADDFE5181C74DB1D36AFCB66F339DD4E11B364896358D39053D8AF685088F95C98583637350C93C8745D908D0434B546AB319A140D66D151648D9CD16406775804ADD1922957B7DB39B452FF9D331F722CECF0C1BD272FFAA4F237673E97C5FB84B62DEB3EBBE88129DF01F3F1FFABBACCA9139539EFBCF1D21EAD218CD1E94D98049BD49C5AA7C3DC46AF006B521499E43DEA7F191082726583825B1F3612929362B0DF6030EA598E671896934F9EA88A71D96DA99224EA51537A343A632782E174DAFAD3D55A43A328F822D4FAF0D32A8ED9A4D2E89C9C5A2F02C329980CEEFDA640B92C4FB07FBEF3D83187CB5BE874FBE84AA795EFBC0C5DAD0D90993F1632F2C781CBE984B22F56425CDA70E8ED68005D4412784429A2F1E8AE41F8166C97F561EDC04A23852ECBBAF01D521E08BD0FDFB29F70B9A48FF59347ED93D3721E1E5F3CC9CAB07CB9D7EF97FD7E9F3CD8D74D923D53C3A9235263ED310941220CE5AD8DD57634255392993FF583877E390D3FB3EEDB00CA25351FCC635EC7EE678A2CD4A1527ABCB6CE2D5151310FCF9C77AF8E57A9FB304B7687691557474BA3F2C5A6CF3887DD4698AACB1B5964BFF3C127D3FD5EDF0D0FDD71CDCEEF8CF964164EFD6F04823496E154390CAB2A6B6F6D7E2AA360E2875EAFAF5763309B795E93CCA8C212E6DDB620EFB5BF7ED28C1972764246C6A4F153670E609CA7151466DD1F966D99F89D0105B3DFD063EF3E74D1F6CCACF45FDFB9F057F72724673CA000A3D9F0E98A7E9FCF3BD069B59A3BAD3D27D1BBCCF87447C53D874A4B5BB2F3479B032BAE25031EDFFCD29B6BC67C47845621C98F9D4C54A566E4BC9C9892979E969DBB34252D4B3872E8C04AFB60BF49F0B8E7F87C3ECFAE92FD398220764822BCFAC167FB630449F988AE389224055DB75690C5AD4F2FF928FF8A0585882B2922A107F9090125253DAB2B3563D88AF4EC9C4F33323234A989718FFABCDE94A4E4B463AFBFF0F03EC1E77BC2ED74F03B77EFB12310113207AF8BA2B436B0BC5362B0FD03D962944561FB63CFBF9575C581427E5624B360F2325244C2DDEAF8C494A4A4B48C5FA565A47F98959192989D1AFBFE9AF75FF94B6272EAE4C4B4F463E43B6EAF773F99346F6A68C86D6F6BDB2F8AF21D8C2265C892D88BE6D381804C9304E176648D055DC0F6854FFD31E58A0165C48811EA8C9ACE9508CD0F7177BF392C7C444272CA264465525A4AE294ECB4D8C3A991AA45B229E581F8A4146362525A3BF99ED4E7ACF1FB7CB2D7EFDBB465C3FA22BF5F6C42F3790B59538540D81451D2C8B29C8EFB372383E241F66DBFF727CFC77DEB41499E3449E76523D6A288DC8CBBA5A48A16139728C6C4261E8C4F48FC714ABCA5292D356AEE93BF7E333E2636E9F7F109C990949C4CD756AD5AF5AA0799D2846674CCED71956D5AF7891BC14844964CC496274AD21A49947F2548DE12DCBF0D5B9AC4C2F6793F7D3AF25B0B4A7676B159E3E4C84F05CD4697B30F995269898CCE8D8C8E5E1D151DFD8BC80843B751A79B116D307486C7C62C8B8A89D5C5C6C541626CD4D905677E9FF724B6711E9FFB81A6FA33190DF5B5A5088C8EFE488D286A516EDB41629F78EBA5473E9765F14E042697F3485B6FBD7561D8B70E94BCBC09918A4E4582ABA9D82A30F07B09BDCE8FC3C2236ACDE6F0697A83516019F9BAB1C393EBEF58F8F44FCDE1E1D3C32222D7465B4C1063D1F4A026B3D8389FDF770AD932EE58C98646EC5FD8BAEE93893E9FBF9EFE388D22DF862C7A1EBDD0A3773FF652FCB2D79EF94412A5BB717F949B536D9CB56081E11B018539B7B1A1965D303E5950A94BF0EDB1D84E308AEF268C4D966A757A59A7376252AC4ADCF0F9CABFDE367BCEE9E26BE78ED0198CBFD36A34DB79109B8D3A0DECDBBD9D14A2C84459946360A01D7525223E396F524B4DF94A5114EBBE58BF1AC78DC6234946AFDB95268ABE1256969FC7BFADFAC75F5F5A2D0BC27D28C213451BBF6ED2A45BC98F5330FF31500800D891298A08A01577888A4BCE192B839A68473EB2A3B1B7ABF56E9F572005D8748D462BF02A3E73E796B56DEDCD4D3F2F9C38F698D91CB991E779EDAE4D2B1C1E8F6B01894196BEF187DFC5C5C57D8A6DF3A0B5E151E281784EDE68B1588E3B7A9A0CD6AE8E9CCA8A7D2E62423EBFF7973BD7AFA86564F9BEFC5193AEC7BF13BFF6E33F6D73DA6D8F203057831ED644446498F15A3504346C7CF0BA2F5B42A8B966F6F5B78799221E6C6D6962FA7A7A0D8CCE924BFEB8228B9277B03DC2A092F6711CAB0B1498185D7D7519387ABAB2548648E05591992A8D8E2EF49B36FBB69BD45A33B4B57782E8F7CF08DD5CD1EFA68FFF333C6F547C0AEE7BB8819E36208FFF58A262C1680A8FB60DF63DD2D9D6086191319FE357BCD8ACA55B5674A664151C8D4FC9991D9396B8C76E6F7E0599D584EF7591F7B1B92E392841B40D29C919736EB9EBFE628F5F00AF578081013B587B7BA1B7AB99EBEFE90A1FE8EB058F5F01A7D30EF6FE76B0E38094E0EFA6788D66B00D58A1F5CC51C81E3E0E5C8E41FA53460259D6882940B074E9633C8E685992458FC753E7F57A3D3E9B0DB47A73625545193BF1EAD950347906F474B542FEE869E4A746B47EBF3755A5D2A49273919F1F89891F5D989E99FB1159238719B9B263EDFB24D06BB85C4CD1391D3653B7B5933E1B2C4AE4196019F47A1DC4A764A12DA5D2A7CFFD5E0FEDC9823DAFC72DDB06FA7C2EA78D73BBDC0A86F4038383B65AAD4A49D3B2A25EA756CB0FFEECC953BC5AAB51A9351A5EA5D5CA8464983AE3EB38D45E3403151E53D8C08398024447C5D09E2C0A8CB8E6BFE84311026D8175FA745F457E364047D6C9110AC65F2E50C8C9C5B2BD7BD675B477AAD55A6D8CDE60D6690D469D4A63D4AAF008CB726A29F4F3419240D7B58AA2C0E2311DCFAB41AB238B6DF8B8C8385D5CFEF0BC81F1E38A23020F610AB1E4E9533F7D2D82D7478F8180DA428EF9F035E9457F60D0E48107712800437AC12F289842C9C8120519A42832AD62992E8BA620B52534215B5B5BCB4E6C64D23B1C02539D9A50AFD2680C1196188BDE1466D16AF5E12A8D369C637913C372A4086D921530E1405922AE2D8D4D9C41A3A18FA6D187B3E9A36BA2E2F1A2CCFABC282B3EF2CFEF211D5A908F1CF0909E3437D921C7F13FB7CFE776FB3D5E971F3D931FCF2F076F201B2CF0114DE9B8AC452604461D04820BFE713ED8B82038E47D5DD04B915E4FB428D8EB7506732CB22C3A3F371FC1527C0E87C3E570D81D8383830E342D27DE58E29EC560A13BD4FC43FAD07B62B049C1260EA9740E6D44A706702CEEFF58E56D484CC00C71E54C10246E0868AA0B5AE84E8606255FD02B435E4B177C1682EFFD2B10CE2B030759AE5C56A65C4CF9E002D01838FF37F3FE6910FFEE98F22DF825F2FF0391261C4E5D50B0C40000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (147,1,'Server_(128)',decode('89504E470D0A1A0A0000000D4948445200000060000000800806000000F4DC6CBA0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000260D4944415478DADD7DE99324D7715FBEAAEA63FA987367674F00049620482C2812100510A42842206958124939EC30CD40D85F180E7DB2BEF98BFF04C9617FD0673B14618BE1904507A90883144999119615A22543066D035A628FD96B767766E7DAE999E9B3EA397FF95E55BDAAAE9E6377004E6F03BD7576754FE67B99BF3C5EA6D25AD307F9FACAD7DFF47953B3EFBAB35F534AD54BA560C6F7FD19CFF3A6F8784A1135895453299AE0E3129F2FF136F03C65B6CA0B9487AD1CCBB95B4B77CF0E06E17F0FCAC1BFFED177FFE8C734462F7518067CFD1BDFFA1D26C8174909F14A9608814AB7204CE09EE3FB033F907FFC20F0F95FBF14044C2ADF2FF34189894FBC4F9E6C3DE23B64EBF15BF17FF89FCC1E9943956E718A377FF2BDEFB73737B726F8B55DAD96177DE57D3FF4BDDFFFC99F7E7BF5B8332038CCCD3C5ABF71F1E3CFBE06A2D11E049123656FB13B29319D73C935F341779B0C0C4DC9E786878FBD2EF71375BBDD46BFDF7F8119FCC244B5F2CDD7BFFACDBFF3B4F76F7EFC5FBFFD43FD414FF50F8301F83B41B4F86F71FEFED114C2BD3101B53C800FB59C0F234D5134A0B01FD1200C793FE42DF60714857C8DCFF50603F9E0A0DFA727CE9FA3C966C3F93509C7334C8A74449D6EF7BCD7F7CE974BA557BFF4D56F2E7EF96B6FFE5969D0FFBDB7DEFAE3FBE3CC00720712F67677DAB4BCBC4C8A6745BFD7A3FE20249635D4DE6DF33945251629DB3BBBF2391611747F758D1AF53ACF269F56D736A8CEE72626AAB474F71E2D9C3C29CFBDBFBA4EA7174E508F9FB7BEF9804E9D9C97674C4F4F53B3511FE26F8EFE99FD300C1B7CCB0BBEEFBD3008826FFCBDAFBF79893CF56F7FF8DD3FFAC17198150FC580542A286A3161166F2E3171A6687B7B87063C62B1BFB6B64E13D52AD51B3539EF793E95CB2521AAAE4DC857AB580C29577C9917C45CB95C6166D5A8CEEFA054229F9F616866E79ECE7E26FF0CCCB5A9A9A67C47AFD7676644E759819FE7F3AF3238587CE31FBCF943AFBBF1AFDE7AEBADEE58304088CF6F57F4544A015D78E629AAD76A2C52422152A55A21E27325261ACB6356A84ACEF3286442F2B16225CB44A9562A4231B0749A454B9B990305DC6C36A9D5DAE1CF7AF2DC075BDB5461E65DB9763D9981B1F4C98CE158530BE955C227DC57E359C6C497EFDED96DD759E95F8CB45ED095A93FE0BBAE8FD10C2021583CD0A6A727E995975FA476BBCD442A0B9AC13E466DBF3FA06EA747B5FA047F2E62B1D4A5491E91104F90F3B8A7D785D8E27D162D614B3B2244148625B02E14811905AD5456F8C4AAC153CE7C302FCCAA320F84F5072D3DD63A20F3B76A07C960D469333C6366258CB3E7927B92E9940E67CFA87B9E5111EB953E0D7A03B914F171E6FB9329A086647F8AB3E34981D96BD0194363010063A78475860186720FB65AF4E39FFC0F96D765200F19CD132C5AB658EE9720C72B251121460C5825CCA39DAD025A5BDF607155A62A7FF6D6D2322BE13921F2F2F27D56C20BD4ED776995EF39BB708A5ADBDBF4C9179EA32AEB15553003D4083D204C9781E125C4C7D6F7BC3144417A7806743A5D7AFFCA22CDCE4E8BDC661C2EFB2BF7D7A8C6CAB6C9B27D8D510D94EAF44CC4447F209F2B97CA4CD41D791E6B04607856E0A1FD1A6B5BC80837FB5AF6292B920A70704609F3010CBA78F6B0352DA290C92FB36B7F187DEC44901E62408C4A8C5195EE2B2B8E9423A7944EAC092BAE2C02520EC1634563899F1A6746748DD40194FB32E7423CDA537DE0E8EBF1D7012A21464AC074382A0795284B48957A1832A452391DEA5AD39E40D09C0854BAF0BBDC67452CEBFDC0B0CFF7947D069841E3AE03CC6B8A45CCEBAFBD2A32167F208C2FCC72404819E970619403A148C456EE44A54A7DB670498754656888736C2C095EDF61A30EC49E9C6CD216EB0DD80D30BC361F6C894D71F9EAB51133408DD401B1258EDF1459A35C7EA7E71F8B29F0903320959EB0623FFACC47C422AE560D0CC53E08D7EBF7A8CD3A024A57B3CC65FC4D330C5B77763B3460888A7BA0687BDD8158C7834114FB9C8C83CE2A4C45A978CBA2A002219E9B450003067696C406C0E7C1087F2C5D11054AD888112B9F1D594DCA910EBC1765FC07517A8F85A7AEEC5216BDC410533B9647DE1562048F767ECB3048DE6D7759C9F7C5289C9E6A186352A931640008E958C2F8D3979757E92FFFEA6D9A63E403B101188AFDE59555B162E13CBBBFB62E56F0ECF434DDBE7397AFCF50A552967B300B80966EDC5CA2B3674FC9B7DC63187AEECC2986B53D5A6504758ECF6FB5B6E963179EA69999A9BD5C7F8ED1E5B8381C271D203166D694EBD41B2711649050560C87E2C9D402F5E27DC03CB8262232E7408B781FF7C93DA1BD87F7E143C27971A0C9BE16B1E53E0F10322F02B3825F65620778CDB06E9167F2E7E10F8A5FDBBBBBE3A984418CAC922BC2DF297A512E4A4A608F4AE8A592D88172BDD6F67A8A6862C0937506BA0868843BD4A225F892C455C20A187AE95860D0D8EA3F940E709C723AE30B76022E7684AA020B496BE58CD3548A270C7302387287D246CAAB5407A5EF619D9487B2DACE2AD75E81C28768F4C65107E4FFE0D9D929FA472FFC062399BEA017783D7B8C6CAA0C3707D140D00EE0A6E6990311F095D77F95ADE79E889B06EB882E5BCE83419FBEFA9B5FA6EDED9610A93959A7ADCD6DF2F979CD668D1EF07EB55AA16B8B37AD255B343747E8032F9E655EE218C22C88C5DD181B626648961859CCDA580020295C0EDBDB9E783DBBAC44DBED0E4D361A228377767659E93698183BC298897A95544731F388EABCDFE976E4C9D57285768336A3169FCA7E49703BDCD4D0227BC55054DE18706694B83CE006F73CEB5257E3A903F204805B190EB96EAF2744F69968D8DFDDE9B0C18519108A3D10454AC28CA128E028B548DDF1ABC901AEE9B1768495F97E3D0202A9213784AB59C00CE313F2326E89B1B603D6D61ED04FFFFA1D5A3879823637B784F8D8BF7367991A2C3EA627A7E8EEF28ACC941373B3B478F3162DCC9F1091827B26199763565CBD7E939E3A7F568874EFEE2A3DF1C469899E01C29E3F7B9A5ADBBB0C471718DAD6474050553813001A201A5D367A4A1569EBF1F405E9BC6F27D937011511BD4970243F60D39486C8424F3CB1D3376EED2EEB0C58CFD8EEB6DB0C4FA32111A8F7104331905222F3B5A3E4D5B141418FA48475ECD9748C9E785F3B393D3494DF93DE93319872AEE4E433CEF521D4B3871B02FF445A27835F5C119669C7C41777B8DF9142504B880486EA219FB3723CCD722EC1FEA9EB40150A7265BC664443EE023D04431DA370841B02A20B6F7C6FE8405258E6E3E78ED6C3BE98B9B9497AF1977E93DA8C60101583136DB7D3A1D76A9F9514951E439C2FD45E16E50754F4A52F7E5EC409448C38EC58BC2088F35B6FFC3A6DB23207B3A62627459F2075A5596FD0C6E60389A65DB97A9D157A3FE308D5077043C0CA46F007710138038F89F87F781DE04661115A9C9C6C10B54CC811D011F72012862817EEABD726C4ED00393C51AB4A12164637F284E26722D41858F700180962F95E209915402DF0B29223825CE26B67F6B86E884C30C8EEC21784D15FAB4D8CAF0E70FF781073ABD512E30AD70281A17D6A33E647561B4637463E0C28F87580FFC10C6164983386ECA1A7F3FEFE94CCDAF190AA2239AAA8C05B9B57D24A7EAF1A3706681A4E4B595BDBA4BF79FB6774FAD4495A5F7FC0C4EFCAFEADDB7724BF678E8DB4DB77EFC9485E38314797AFDDE0EBF362B4E19EE9A929BEAF4E97DEBF4A179EF98810F3D6D25D7AFAA927C43083C7F4A927CFD3168B277C0EC95AEA008658913E504EEACA3191408FA2035462DC389EB59C57523B9A9872B15F958C641368B17014B30AB3443CA191B8A411ACC7D6E850D71B9BF8937421F1DD30A51A1DB8196B3B2076BA2927BE1BD35C5B4FE750CCD78DC5673CA3C3DE65F7D9128FC87B638B9054EC86182586E8F8BC1ED915A12DA5DC992019D444D973AEADA09D7B32385F393454494C39F9AC050054E80F8ABF7BAF40CDF1C98678F4196067FFDCDC14C3D0E71986B625CA15783EED30CCFCFC2B9F115F5097E5F8677FE54581A190E9BFF6B997C5BA1D847DFAE2E75F915021BCA75F79FD0B0237F1D8DF6048BAC1FAA454F669B2D1A4F58D4DD119C80DDDDE691F88806A0FA5ECBAC0C7D4124E7110707F9361A8DE0A19DAD525EE8A2817DCC8087CC01F5FABD524D71F280879A2B00188E13CFC4118D3A1E6F3BCBF1D989F53A99424BB4256CD20A3C233FBB1EB63543695DA170115E78F8EB5330E30B4D5DA125827768185A1BBBB1D319AC418637B00EA158B2F90B02BDED028CD117557B92494D1CE099DF847E573A91CD17BBA21B2A2498DBF0E2852C2EB0C43FFF69DFF4767CF9C963501C80F3D73FA14DDB8795B0CB413B3B30C2BEF502928D1A98579FAF995AB7496AFC308C33D330C539107F4DEA5F7E9631F7D4688739DCF23D50522EBCEDD157AE6E927253768E1C42C923B0B535186A36FC5626694621E53256CC7A57246A3CAAE0F4B14B1D2498C5865EE71929CED8480888AB481A1B0A621BA90C61EC2A116693719CF21F268A20F69E1F155C2F9B494D41797C47535396988160E6ACAA22017FDC4F7E9BC182908AA0005ED9151BB9F1B62387EA0C64F07902EF0C2670C801C219D6BCA3508D4687743D699EF1A785A520C3333EE506E885C2C601C9373E31910BF908AFE6986A1F07002D5042CA301435FF9CCA74509C30FF4CB9F7E4194E76EA74DAFBEFC22ED6CEF0A44FDFC677F99BA9DBEB82F5EFFB5CFD1FAE6A610F68D2F7F815659B76015CBD4E497787F9DEA8C9E2E5F59A40DD605EEC2CB916E88FD94F0385AC2450B340043279B754136C8842B310A02DA81ABB9DDE948F2AD78439118C50C8117B2C748887A4A126E4DD255C84AB942FE96819A583B80EC0ACF0F249C28DE503E16E32DD27B126FC82D3DD21618531D500443913688F82D061960283CA0582726817A2850DE42A98249090C95604A74A815129A74CE0E50C9D97174431C891DB0B1B921233B2185A47F28BA712B4D84424A628C5116AFDFB619099A2E5FD54976C2A5CB57C588C3D1CF793F5E540191678C304DBD76D7EA007D3037841AED86184F6F68811D706AFE043DF7D1A7249A957A2974E288D3914EE3BBB934469DF35CC6CF57B93C47F008D96CEFFEDD556AAFAEA78BFA9CE9A30E62E066DC108F495E10D24D20EBFFF0DBDF95A42CDFE6F59B021C5E92E71F5FF33D2F396FEE55E416ECF0EDBDE5924F33933556E83D869E1E7DEE332FC8828D221DA0F635B4D4B17443E0E53DCC0CC804C7ED39184DF0DBE32DB29E8DA910C7D60784B8ACAC94AC55A9C18AB8C64A176F59321AA6F74159E3DEF999267DE2E3CF523948D308B54ED789C5EF48EF9FA4356A76A8F1D301056929165F83782E2910771DC4F7F95ABE0868E9854F3C9BCC0290E0F2D5EBAC475AE4265968BEBEB6F180F5C575DADA6EF3BDA5913370C8F6552A6BC6A9E3EB8678641D10A70AA20CC0AFBC783193F804D182845839F2D295934B4BF7D255944C68AC29AE9DAE8AE296FBED70C5E737B73A12D64CCAE3E433B2752E20AFD4DEB69922DA238F7D7C7480EB90BEBFBAC1C6128B8BE79EFD407FE8D5EB776853664ABA566C5FD1A246196A639B194743B51BE6E7A6E9D4C919FA8BBF7ADB2E27F53211AE380F53D9F39E734D6646E2B44B1366B39F33853E3E75F1595959BFB1B5951074B850C71E1ED2BCB36E2C63C2BA60A136BF51CBE7077FFE9729DAC136B0880788287091518A74A027E2F3B81FA983D8E2B8562DD1B9D3F3B4B2BC49A156C200EDB84274B22E598F74C88D144DE3AA038A94A04B0077D183EE33B3404C58CB0328652D4A1899CE865186F8CB2B6BB4DBEEC85344D40FE2997582EF3D2531865EA8867550D132B1A258C03176433CA2122ECE4E8EDD0CA2382D317DFB19AC0316B4646792E7699B31975B78C19FBB7D67450CBACD6D2CD4283B1078542DB9E15591C549598F0D03CC0B0445C0FC6B7FFF359B8AE2A6A1C488C8135493181FCEEA95B9D9A9E49A1BB08933232E3CDD10B1948A404BFD7C44F2206E88BC123E0615531ED917845CCBCD073B12424C93A6523624B99C4A1514FA70EFD5F61E4A18890351CC2CD9AEDF5EA68D07ADE219702037C463A08475813714D9C6938D09FA4FFFE5FBA3CD6DCFB3385F25CB833C07157956599B9262F1358F7434A0A0541617C41BBFFE2ADDBDBB42ABEB9B540C83F673433C16EE682A5C280DB7F3A5CB8B7B7E2EB67E639F50EA23F2867C48D83F395BA7573EF329FADF3F7B97EEF32C1B1A00CE0CD08771433C2EDED0840D07ACFC081FCFD9330BF4F24B9F9411E9DB11FFCEFFBD442BABEB26B39A093FB0CF4460676D6D4DA2617EB9312C02DD5267E4C69CF77143D063929692FCFD8708A8DCBC7D97D1CDF29057D4CC049DFC207CC78D3B6B74EF3E334605544DE0ED1E2848ED43E8BCF1ABD4383AE3F23340D1D6CE8ED47BFE97BFFBAD23F941C3CB924C80676D634BD212135748A628AF2ED6B943FBC72B16F0504A381F948FAD5756044743FCB83669A6AE34596BDA20A96FFDD37F4C674E9FA43FFC8F7F4C4B7757F7F101E58A788CBF37343BE2EA6C0320F5F0F7FFE0DF3F14C1338A585C18817561104DD62BD4EE45B2F4E95FFCF36F52A55261C22FD08B9FBA28C6DB2F5D7C8E45DA5FD04828342249EBB14A4DD48F5077D00472C2E16733139E3A3B47AF7DE173F4673FFA6FB4D34B75005255BEF39DEF50A7D3A1F58DAD8C4EDA0BEBAB63EA9678E4153287A1FFC2FC1C7DE2B96732E7DEBB749596EFAF19D1E3A7FA657BBB4DEFBCF37F68796D8BAA13CDE4FB9167B4B1B9498BD71649F9250715EDED86386EF0F3C80C311C212EFCE4F933077AC6B5EBB733C748E68A3F2BF0D4B7EE6C9641B7961FD0FCFC299A402D6A3B4350F0A3F191733435B395CC00B58F98510570684C4B960D8B208C5E9497FFEDDFFA726E84A9421F4DBEBE6846E1AAA2CF99FBEF2CAFD183D6B6ACC8DCDCDAA189E62CAD5EB94E41B5B1B79871897E0CA7C123F70F80584140E66F7FF6DE48261D4CA9BBC536E26202DA644D04257AE9931F970CBBDBDD3EFDCFBFFE1B59000EF360B25C1F8A0BABBD46FA58BBA3753E266C8E9119F79FBFF7C323FD61B58A4FCF3C718A6EDD5B1759FFF28B170531616AF8A509AA956BC32020977C7BDCDD100FA103B2BE204D873385AB95324D4F4D66CE61E145A7C086789A897FF1F9E7D800FB29ED74A364BA147B548B63017B125FD1B15827F650B9A1A332CAF77BC5E1C9FCB9A2D78DA515F90E83821AB901506C39EF8780D28B63BB488F72A50ACC0A99E9C926FDB37FF2B5CC3D199F4D218A4AE3032E9271898CEDC79FBF98A4A5B8CF4D9D81C52A77A41B629C75409211E7FC914B7796E9D4C2499A9A9AFE407FE8D51B77A5F4FD903B5C1DD20D418F99253C7F629666A6EAF4EFFEC3778EFCC7F57B1D2A95AB52EFF3777FE74D59D487F267796FAC1E92EB077343A8F15B21A30B7BBA603DC0D2DD9523FD61E74E36E9EB6FBC463FF8D14F98E80F92EF1A5AA3E62E8F1A5137EEB8BA218E64061C460B232DE5CCA993997377EEAD308CDD2954D88B8B8B7CFD3E956B53C3BA25A6620E161F0C01A9C7A16CA54A66445C894AEA3D6B5398092315ABE44DB963B3301B65EBDF67EB551FC058BB7977936EDD5DA34855A8BCD700D82F232E53CD77581F8CB52186D7FDB50D6AED741805FDB634454892716D826E2C0EBC24E9D64BC5838DA8443A2D65AC536D6F53CFCD73B0FA1E69EB7911682AF0A97DDD108F87255C3002D1F5626575D3543FD791231174AEA548BA583B39C6CD9E4749F05CC705FD2CF39CE2DEB7EFAE8A3FA8B87F81CA899903A4248EA70E18B644116CC712D5F72E5DA6DDDD36A5859A3CA913EAA9B87D946F8F4D644B494D38CFA6B12B096BCA223FDFAC8A44C13EAC194310A65CF6A9D9689AC60F05EE70538FF4606E88E336118E203794A434FCB3179E961A0FABF75769B3D5923234A9C564B2AD86D6F72696D43039906D373B334D0B0B27E8ECA9536456E9EFAD030EE386A0715D299F2F9A274D1508950E037AFAC97374FEDC190AFB03A929DDE9F5A5D683B42BC4A26D544FE9F56555252261E82B89DE2EE5C0D4F6475337F4A144799BFA448502662CB2264A3C6B6475A48E865B98E8F175431C890E404B40D405BA71E3B6D503A69E81C9FF8C57C878526C0F44A6A6154D647283BC388D9DB725CF37228889AED14FB81752545214068A02EDF1B3D5B03736276B8A2A241E5737C411E800A348913A88DE2E8B376ED1DAFAA62CD2CE82955CCFC103980E405253CD269D9C9FA3B3A717D8E29E4B6680EB8C5085C6484185C4C721248957541802D4E266BEF8DCC758B40C24DF7F9B1532EAFDC49571FB3DAC94340D9F219E90962E298A81294780B02666088AB65659FCCCCFCE8A1E80F73428F949E2EEE81E3234BA42E29E4EBAB153C294E9600714D4D9EDD2C6C603599A1A1348FA02D71BE4358CC83165D4230A781BB92691942353D24F126209FB0621F96C84D93204D0BE9E769AF81411B7B822D66837C438F70F70E77EA4456E63C4430FB47676F6ACEBE60E4181FAB6A6BDB419949C51B35E0C3A049D5851710B85602182865150C112A53172433CBC12CE54CD36AB159F38775A4A9201F56CAC6F30433A227AA46E5C7F60DE83BE59CC8D92C5DAE028DFB72BE5450C950415210B0210F4C48959164B815C3376DBDE2D4C4639DC52D1A41E076FE8B02F6810854965148CDEE9D9199A9AD6B689B2990D711D7FE19F0EA98F6C68294963C44FDC7A36EEF3E2DB8C399643CEEAFCD10DA57561F6C568ACAFC6BF5E9055CAA884C80AF6E797AFD19D7BCBD2E522867C124367E2EA78D9A932F0939CC6CA226EECCDB8DFC7513C2B5801631138023E2798A93A7175ECA507F23D648EAF1BE2919D71713C1C28E6B9672FD0D31F79429431DE4042B1C831B5228CE851B10AB68434BE349B1B5AF2C42843E7A47AA34627E7E66896098FCEACCA53236740BE1DC4C1D78B8D790F19659570144656B42859358FA63C6951A65858997B20AA8096B06212D0B3CA3604EC080506C4330495B2209A023F2DF19D696538AC8047AE8E3FA4683AF60C88BDC5F1E8059E47C78CF7AF5EE591BF65514DB6B3B6E09C6455BC671DA0698F77CF366C36A8D4B34B989428DF806703620D50CA5A17ACD0A1EC62993D2B241EC324ADE0919FA04846303A9DA2A73C8AEDA1AF98293B3FB0CD38C3CCA8CD77BF500EAE85E245AF0174E09863A2CFB308423F6265D7260C77D050FBBA218A88ADC6352459341D4C5D508F15668DCE9EA9081C3506945DD4219D4C7B52AC0FD0D4F40718C85A00300FD0B322A2A8C2E74C81BEC0AE1580332EE9275C300386A5D101DD102662A7C69E01912D47B978FD96ED52AA933A0EB234D58BFB08288B80E2E5AACA54C6EDC04D31A04EBBCB3074D7D48AF37CBB5AD263C654A4253A9A6F4AE1BF2257485A36760F5B20ABB6F19CE8716000D009CA4C3EF9C4395A5EB92FA9863BBBBBE203CA42469D1995856D629CEA8768008A842F58C2F5C62C39AD5C7342EC206827437A7E84674A9FE9E831114164DC110B27E7C565106A1384874D80E54B5D86A36008CA92F5A5894F9FA281E93B298A96A127226070C455581CD52A552A55F8BC17245632C6F8E819B0B70F2866BB64E0A1A7A58A62E3F0311141BD2EDDBBB7C2C40D9DBEBD3610EFA5F0AFCC04AF3281C99B10B443D6E7230BB89512B10338DA07B4C5B2A46020330CF683AF47A4A5902E28DC41431512E31EF591854B1E14D7632182E296B6535392E38345148807C47035C975280A4926A24467E587D5218D7A4DBA2C9D3831232D7393DCD2BC0452D952A2F90A89D21A28B21FB26E6BD1018F83088A7BC8546B157AE2FC5929430C9403180AE5DA470C00E8C7B6B60DE3EA882869836C69CFF8FB218EC0480951B2E29D9AACF1F98A88A0928F9F69E476DC6DA9705D523E1322AECE1BA55C321DBD23E9D4ADA3C7400461447619FDA0CFD7C0E27D159911EF31A4AC96AA3431E1654AD2C4A90C7EEC8E8E1193155B4AF9A65807C5318028E9675F38030A645012AFD6B619908A840F9EB68E3B71C8B2368842FE496E9FD74758F679307AE9A355C278088F5C44BAEE310A82F8313E9FD4E04903F9F9CAF3B6A983368199B84E509CCA02BFD0E47453FA10CF4C35536FACA651266F56ECB856BB2D832367ADE481128EC24170E1C28552A5523934E1ABD5EAC8CFBCFDF6DB79866A2330548611478082CCFBC4DC0CCBEBA638DD76777669B7DB967D889F810D43C2FF23CD7C7428DDB5A5498FE40BF9E2708B0D2F1867538DA6B440C179202C0CDBEC0CC8B6338C5588B6299191F17E4820DF44DEF8FBA234A3DAD4248AD4766BABB1BBBBDBE43706801E765B0F9FF33CD36CB1D56A0D9D8B5F33333320B6C6796C99C1E1D4D454F8EEBBEF86E91038220640BE23F0A22182F8B83251A13296962A4AAA5CC53DF3047FDB60BE8AB3DF30FAB593C8655111FE266D24B6053B51F10CD0E94C73FBFBC4558E35888F76EACE0CC4B530D4DEEEF6D67C085C5C4C709D3F877DA7365E723D5E706EEFD50CA923DE8F980161A9541AF0ABB7BCBCDCE3D9D6BB72E5CA00D7300B1E5D0788A732247E38DD5FDB4CF237DD1CD158F6ABA441739A4EE8D9C6CE9E2DE42AF050F9129A84A30E7D05E0889B42C7565D1091CB3488B3B9A691596919A74382F286F836B013932E8ABC5EA7732E3045E992273231338D5AED525AED8A0E8729F12919E91A8A8589CBE061C0BFBFCFC75DA60960E12E4456A7D3191CAD1226937678E6D4195A983F49ED4EDB3AE3E2F0632822C1D4850EED0CC88D5E5BC01B817825652B3D6AD4AA34333D4D13F5091143828292A54B595DA921CBB54E8A7938A69789E7C79232D219D3813FE331BD4EF36EC5FD4549A5DE82114EF92EBAA96C8FCC2335088C55875DDE477F5E8F3F0B6678458BC38F40099B512589B952CBA1C2FAA06413757522AB13C587E2DCF090B21E403E68E01BE75B1A2133CA3850261E40D66320D6EBA8F8848E540A3BE399668D2EF42F909F619285B5413FE6F6487BFC7B660A54BA2E8881E83C98B1B300233EE4E780C8207C87AF85966938D7E519D6E5578FCFF7171616C2DBB76FEBA39B01FCD7757A3D5A5ABA4B5BDBDB266345FE58CF4804CF424B5299863E3667CE644678E658C71911363C19485CA0245DF9B0B863543C5E4A0A89A6506EE8CEE93FA9120415576017DBCC70A3CA17270E30D11DD327253C88CAFB90E9D8B679BBCDCC68F1768BAFB5787F9B19B1CBFBEDE9E9E99E55C2FAE8501042923C52CF9F3B2D4DDCB6B6B6253505BE1F82D8E947D4B738BEB00FB99B9CAB4C9962881CF49A418F19247CC123BAB7DB06A2C42A6AA68D3033CED2B6E7300D64E3AC41803B9A3FE7E3BD1F032CCA8102963814137800F90EA2F37BC7217C8B4558ABDFEF6F4304D5EB7516FB9DFEB973E7FA0C4D6331A58F500419850AA8589B4035F42ACD336ED7D671163BC1426963688234122766511417E82B59875CE07B490D6953D28CB762A8A509C1C533204A962A49CB146DB15344D9554C80B14A5B3194F895D448C7693AE223BC40743EEEF3B66347FB0E4638EF6F31835A18F1600613BFCD84EFF6F8353131115EBB762DBC73E78E7647FE913100154BFAFD45AAD76BF2C6A8856146560E7BE474C99BA824D9754A166738C5BBC94B004DDCAC2DEE499C8F4517F8A394B6DA366999428EDB22964A82D8CCF950A0A4623365D0DB8BF090E750ACBC0F190EC2EF32D131E265B483F8FCC6E8DF6526B499E6DD46A3D1673B20C48867791F1559C0876600ECF55FFDCA3F54C3DED050500FDE8985889E002C4210E592842B49410F4C1E289F937C9F02384B71D01E69ED3DE3C24E8E79F6743BBD91316A91F4CE8CD3D9275B3E98C48070103141F5D2ADC54B7FDAEF5ACF618A7862310159DDB7884660A42B66EC7B9BFF26C8F70E942C1B5A7D1EE9E1EAEA6A74FDFA75BD17E1F76580522A5F97561DD44D025D80F787F5D2DA71352B9D552FC99096EC0DCCABD6D6E6CA8FD6966F5FCDC148C8F7C851A88091226640EC98F01033FCDE8162ADD56A226678B40F58B946F7EFDF8F8AC4CCA118A0B2791BEAF9E79FF77676763CFE1E0F0E4C3A8E2FEB5A162C151B639485C07CBD1B8583F76F5D7BF787808C79F94EA6D4782F96EF4CC36D8C708818D65B2DBB0F66889861E2F7E7E6E6061033A3E4FBA1196089EFBDF4D24B1E5BB6016BEFA0D56A05FC85018B91122BBBD2B1A4BFEBAA88C196859B51C84682AFD6579616BFB7D3DA5CCDCB77AB5413F96E091FCBF68C9801E159B90EEEDDBB17AEAFAFEF2BDF0FC58098F8172E5C086EDEBC592A97CB15D6E015966D15562E551E2415FE9EF2319D00CE0A7A1B763476C14EAFBBF3BFEEDC78FFA7AE98B16866108B198C6CFE1B45BE5BA20B7E8762651A8811D56C36074B4B4B612C661E95F01906C46287C58DBFB2B282C15EE5674FF00F9860EED7ACA15245FCBD51AF75194194F17720230E68C26DDCF08BE2404C0BD3682FC2A8BEB374FDD2F758C9EE5AC28796E879189928D52218C9840F7940862C111E5ACC1C580431A76198285630F05BF8F6AD621EAD2C5DFBBD895AE3743928CD78E560DEF3CA73CAF7663CE5C3590F873A4494BC79F4611BC0E1C736004CFE806D9852285B0442A2A479C3D128617E9E595FFCA0B5B1FAE3B595DB972DA21982911033808E3CEA45CC601F8A958F3B8785918F6C43599F86109965BFCF5F58E61900D1836D997F54859550890DA63233A6C4C7251095B741BC6522FA76DF97A0135B96D8375B1FC2AC59AE4E34FCA0D4E477C3F74BB39E1F4CFB41D0549EDFE0AF2EDBC1C08CC356059679BE619EC677C4CC13A6C5B30FAFD3F3B3E1201CF459A4BF7F67F1BD1FF0F5BEF5C7609BC0488BD7C568C28887D8E17702232166AE5CB912FBEBF50749F80C035C1D0031B4B1B101C5EBF348F0793AE21D542A152646E883D8CC18DF121D239BE91824C7CC283F36EF63268039B85E700D0681CCB49871F69AECFB7E500ECAD566A95CA9972B953A33AEE105A569DE4E32039BFC657536E178A0044D46957FD27AB07E3F1EF5391899E077FE1B30EA217ADAFCF7899BC0C2C890920CFC0F96E8850CC841502021C53F4E412CF1168466B3B10FC2A8C9C94939E699E1C5220B5B565870BDE29A30C632CBCB334B8B1B580B43ECB50C731C66052E43E27D92B634DACB31D2B3BF1D41901E703A086F898ED1DEB2B36097FF9E1E60E4C2C2C2C0FA673E74C21732206780E5A2AC9986211057281FAC62DDC1CC907DD80BFC0743C60B63A6A7A7855156EE27DB3CB340C47866E11C88CBCCF2720CC9CFACE4D83245590F6537B65C21662CE1DBB1B56AC58C8E4383BF08C28F64C0012CE33D42E1438C22975960144E8059785B2629CB886466C533AA6066F931C3182627B3CC32CAB33F33428811E287B71D7823DBED76FFC489137D58AB1FA67C3F52061CEAA18FC02CD641C9ACCA332B168160068F649567561CBD62868490EDD56A75E004C27F6162E64367C011306A3F660D89C098594C7C6420683BDA8F859839B60CF80099A52917313FAEAFFF0F7E990507A747E3B10000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (148,1,'Server_(24)',decode('89504E470D0A1A0A0000000D4948445200000012000000180806000000F755AD310000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000002C24944415438CB95954D6F633514869F63DF9B34B7DF30A2A3A6B3E063CF92FFD0DFC20289C5B0E5AF20C41236A80209C166106B2418040434425544A9DA6620B9C9F5B1CF61915040D036F5CA92ED47EFFBC8B22B7707E0ADC7EF7E6085D7CD7413A10E48BF68AE1F1E1EE4CFBE78F29304F9BC3F18BCFFE987EF7DC3FF8CEA7A12C31B1E79A58E1B040F4890E5823949F3E5DEDEEEE3FDBDDD378F8F8F5F3C3939E96E04E55288310201002720186A0511A19442AF57D7F3F981DC9A28AB72757185D9B26A10C1DC397AF410016208745DC74DE31AA49AA9FB35C1032ECB83EE8667078118234DD300B3BB410F5EDAA78E15048844C49C69D72140DBB64C2693BB13A59C573307040B4E14B0952311215FEFB9CD51569E4FA6608687B052EDD45505224810445803A4CA0BBBFBC4E0D4554D5547DCE1FCE2124408AB54CBC4B7552B464A2DF3AE63B3D9443AA11703C50A227E5DEFCE4425295A0AB3594B150417C17B35AA1941D60725CD04A0B83157050771D8D9DEC27D0909AC01D2AC188E65433B45358365C088728F44391700CC9C920D3367B1E898CE15842564BD6ACB3A86934B464B06845C0CE01EB27346B5B058242693E76C0C06BCF6F2113FFEFCCBD2CF7D64A76CF4EB1E8341C3E6D6061050CDC4F8D7850CEB393257B21BD3D90C30745F4949190CFAAB6ADC0D0298B5893FA65354338B4547DBCE504DD7A052B2AC05D2A408D0AB23BD5E8D174829AF20CA2227198F9F6E0D87C3D0344D198D46061477B7EADF5C234A2069210425A99273A624DDE9C430B3D0B6E7EF00B96D5B0E0F0FC7EEFEA5887CFD37C85D9E7E3F62B0B141AFAE68DB39A3675354959CD3C05D72EA16DFBA97E4EEDF99D993B3B3B367BEFA3D2A1189C3E1F0D5ED078F3E12E76031EBF6E6C80EB00D3422A19FD2C2AF2E7EFDA4FDFDF26311F96A3C1E5FFEC791BB17E007E0EDD5C5FBA7D0EAE8E8687B7A6E9B4DD3FC767A7A7AE3A3FD278CE09ADF74A16D700000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (149,1,'Server_(48)',decode('89504E470D0A1A0A0000000D49484452000000240000003008060000007947D8150000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000008AA4944415458C3B599CB8F1C0711C67F55FDDEC7ECDAD960EC6CEC5888A7791C8C1002041207908244244022204EC00171E6DF811317102012211E0714E580504404088808E0F81136B689B38FD9D99DDDE9EEAAE2D03DB3BB2646263BB46676A51E4DF7375F7DF5D5A32522387E7CFDDBDFF96699E797D3444B34A992440A454A49B44C440B512D45B5529132512945B45095F28517FFB8BB331CFDA12CD31F3EF7F31F3D1BF75FF8218FF4FE132B83E52F9D59197C76B83B627C70485D3B6E81B9E16EB4AD1311B4ADD15ACB95F7BC8B9595659CD89D4C265F85F8CAA79F7CFAF79FF9FCD79E6D32BEF7DC8FBFBF712A40618E9901C2EA608934CD4812254992FEADA82A699A9026295BDB3B9839048808802C2D155709AE5624DF7AEAA96FBCFB9967BE3B7ACB802C027387709A2698D40D11E0EE44386E0E229839662D8FAE9DC5AD3C760541085413B23C597ABD6992533164669819AF6EDC6667B84B96A4A4698A1388082290E739EE8EBB736675B5FB0130FB3C5105510239BD86220237E7131FFB086F5B7BA463C5035525085484D68C4413549597FF7E6D16B2293F079386321788640E80DC30377EF3DBDFB1B53324D5044D14734722700FF222A7695BDAA6E5431F781FAB2BCB338610D04499342D360F86CC1D33E7C2F9735CB8700E415015DC41152240A5632B02B23CC5DC3B82A40355A409488A260A93FA7480DC0333A72A4BB23C4555111154641A935E2B828A32DADBC7CDC003E91951CD887054F4F40C79749E73F3D57FB2BDB3DBA777426BD6B1300D59D3D0342DEF7BCF3BD1C50A14A4071BA2A826CC8475DA2C73733EF8FEF7B2BAB24CE7B7316345443A91274AA2C28D5B1B9D6FB977F401C3E12E0B55415996A7074474C678FDC6AB1C4C26A4BD29BA77A08820CBD22EB4E1AC0E06A4694288C6942104CC83495DCF43D4BD310A70AC1C0541F78ACE1ADC71373C1C77E9C3D3A968AA25994F961966CE3BDFF104AB2B0322A2F79F04515011DC1DED4BC9B56B37389C4CFAB4EFFECC98D23914D7B0C0CC78E9AF7F676738244D3BA76EDB960821C2298B9CBA69689A86272E5D24E94DF37E6EE6C450178E8B8F3FC63B2E5F42F4E465A7C29E1E3B3BBB1CD693BEB81E950F7A2DCDC1A93B518B80EAB19B4BFFAB8F854444083ADF3AEED4D3B0310F86DC0D336579B1E48517FF449E67646946559514658E20A469CAD9C122A85255057B7BE313B57E16B6793034354611E1EC99159244499384C1F2120B55C9DEF80011A16E1ACAAAA26DBADA17C718927932641680131E0C8723D2AC13F5F8B026EB9BB2344BA1CC49333B0A59EF14478A7B2B927E53860CF1C0C3198E4624AA6459CEDA2367A8AA92E1EE1E5A2BA9766E2DBDBB4308FF0F86DCBBDE26D1844B8F3F36136B9224586BAC2C2DF66D2C5465C9F67074D4A0DD97F8F361C883C099D4357FF8D35F67E7CFAC0E585D5966B8BB4F92243CF6F6B31C4C1AAAAAEAAA7D9FF7C7CBC75CD2DECD40843CCFF9D4C73FFC1F5F50ED9A7C80D59501DBDB233EFDC98FF2A39FFE72C6CDDC1982603C1EF3B35F3D7F6C3C5AA22A4BEE6D6E91A519EFBA7C81AC2CF9C095F7B271EB95BE413BC990C89C9C9A70961617F9F2179E3CE698CCC232D5D5D242C5AD8D3BDCB97BF73E6EDE6A8E3DC0A93D9CBDFD7D7EF0935FCCCE0F9617298B82CD7E0EBB74618D85A5252EAEAFD3B47162EAE098639F9EA1E81AB4A585459EFEE2933376A2EFFEA60D1BC0425571E3D5D7BAA68E3859ED99572DB3CEE846E3930C5555499EA58CF6C6B83B97D71F252B4A2EAEAF63E60811829E281BF3A9F661B83B82760CCDD809A6A3C5748FB0B050F1F23F6E606E7DF77F326C3A9F6ADFF5436F6C6E73F7DE2677EEBE8E59B75820A05AA838B3B2C2DA2367397FEE5186BB7B9839890A329B32E484059CDAA9AD5F380820AAA4226459D63BB6F60DADF79D81E16688A6E87D0CCDCD87AC9F5E3D82E5C505A2EF00A02B175996E2E69875CD9CB993449CBA6CC09B74BD16D133E41479469665DD90181D5851653018B0325826C4FBE5841F09F9B829CA1C00B9758B29F760696991A0BB69DDB44C2635870707ECEDED31A96B549259784FD4B21992394CAED3B035E60C37B7D8DA1ED2340DD61ADE6F475413B234A5C8F36E17D0CFF633219F6841E60008C05AA3AE1BCCBA666D5A3A22020FEB971246DB8BBA6F194F84CDDA46E606C8A30BDB745597E659275601373073DAB6C55B3B6AF28F6DD0AC69719F272077CC8DBCC850322C82F0A02C8B7EB4765A3BCAC8D9D441D0B62DAAE0E632DAD94A4524BD6FF310F7FD67BAB5FDAF80F22CC7CD69CC90F6E8A68B0B15459161DECE3232BCD397590B2EB88059938CB76E5D5C5F5F5F1591A8EBDA4524FAB7F7E75A331B8BC83822DA070332272F52F6F71D6B5BDA5E4B49D37238999017198926B35D638467E1BDF04590081A6B93C3D1FEE7DCFD00204DD33846481311E3A228B623E2FAD9B367AF8BC8E881800218EF1F301E8FFB9D74B758306BF13E442A32E3DCAD593153A25F3C4404AD9958C423C0A40711400D8C81ED88B8E6EE37EBBADED9DADA3A88887820A07FBC7293B22C288B82C5A545CAB240443A236C8DC3C984D76E8F99F48B06C75237C3A50B5DB85B63ED756FEB1A70E050444611F15A44BCD2B6ED469665BBB76FDF3E8C083F216A1149D6D7D7F3344D8BC5B5CBC57471B5BF3F667F7FFC70E9E148DBB6D378ECEC6CFFEBD7DBAFDFFE5BCFC610B8E5EED754F5F53CCFF7EFDCB93379B3C70FA988C8850B178ABAAECFBBFBF915959DAA48FF12C8024415215510855B141EA1EEFE80108798B54D53D77FBE7DEBE55F44C45E446CAAEAB53CCF6F0C87C3EDEDEDED31D0FEB7E72012113386226221CFF3A583838345552D814A44CA2CCB96D3BC5ACBAA85F32AE93982012A0B8156049588160B8BD560B479F7F9DDE1E64D55BD1B11D7D234BD351E8F47F7EEDD3B88087B18A2E53858E98C44AF5EBDAA9B9B9B495DD7DA348D9A990E06036D9A2631337577CDB22C1391B2699A52442A552DDC3D8D883744E45F699AEE6D6C6C4C8EEBE37F06F4D05F3A9A6F922B57AEE8FEFEBED675AD66266B6B6BCD4B2FBDD4BCD5C753FF06C6A05E708151475D0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (150,1,'Server_(64)',decode('89504E470D0A1A0A0000000D49484452000000300000004008060000005C20F4460000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000DB44944415468DEBD9ADB8F64D755C67F6BEFB3CFA95BDF7B7ADCE3B1612EB18913CB96C32511C828440922B28048790852489EF2CE7FE03F8157040F110824CB4282002FC8420A529407C028219840ECCC8CE7D297E9CBF4A5AA4ED5397BEFC5C33975EBF1A59374CD9166AAAABBAB6AADB3D6FABE6FADB54555397B7DFDEBDFBA5ABAEC4BCED0146C6612DB488C38B126B3D636446C965852232613B199B5922164464C668DC9C4984C84CC1A93FDF09DFF4B0F0E1EFD28CDD27FD8E8E85FBEF9E69B051778251FF8D3ACF9D54FDDBCF6A7228208548F822050FF0CAAD7A5F7284AF09EE003413D5992B2B4B28408B824B9D7CFF3D7BCF7AFEDF8EC4FBEF0DAD7FEC524C95FBCF5F77FFDA3F93900C41811116EBD7F8FD3932E2178CAD2638C1055C80739C618D224211F0E015868B7F03EB0B1B1CE4B4B0B8808A008008A0FFE8586495F501FBEF9BB7FF8C7DF13957FFCDC2B37FEFCF5D75F8F17EA408C71ECC0334F5F66E1B99B586B499CC51A8331862C4D116B11228DAC81B596B22C4912CBFDAD9DF1FB55A10A5915C5C4391A59BA28CA9703E1D5EFFEE0CE1BAFC3D1DC2220187C8C78EFE9E711A21250620844D52A7DCA48242280F71E8DB0B9B9311B812A0CA489254625B1095600FCC5A7500C91181511E5DD9FDEA1D7CF892152942569EA10310C06039224217509FD7C0040BBDD201F945CBEB4C6E5CBEB9308D4F65735543DA689A5F0717E3510EA08ACAC2CB3B6B2820AA08A4B2CC618428C586BB1D6A00A460C89B32810FC240581FAB1323E8448B391E2352062E6E340984AA1E73E719DF5B565AC18ACB5F81040214912420CC41071CE015094052E49B8BFB54B51148828A31048653FFD7C80AAD06E3529839F3F0AFDDB7FFC80E16040A853C8B91423900F8624D69238479EF701A1DD6E91E73997D6D778FE13D7AB3B2F534520824B127CF0747B3DD2D4CDDF018D4A04B4CA2054238AA122401D73C2E812CCCCFBD19A31EA3F69B71A2042621DC3A2989303318C0D78E5E54FB3BABC04D690188B8680022EB5C4A0841849D3045428EB086DEFEED2EBF5EB22D6B17F024485C4188C80B3B64ED88B462118A3D0F6F62EFB0707D45C84B1666C8815418C45ABDB5C3988521423B41274CCD9550A85106A20108C9179456092027BFBFB1465490881A22871CE6144C8F301894BC85247AF9703D0E9B4C9F39CD5D5159E7DE64A9D42131C15C05A838825AA10756E526202831B97D6485C020A5123D658408921628CC5584308014148124B8C8110751CC13111D750747ADAA7D38646A331BF08C4A9227CF6992BAC2C2F638C902449F573204D1D3142089E2C4B01180E0B9C736CEFECF270FFB046211DCB8851BD0F8B82A81197B8F947E087FFF53F14DE57305A14A4AE62E23CCF712E214D53FAFD3E6284C5850E79BF606979814BEBAB9503710AA46A161EF17288719E30AA304A81FA6BC746988951626A888D4A0811AF1E9D12832A5332029990DA2F9E3D1F5DC42329F1F28B2FB0B4BC883186C41A620C880A499A8C6134CB1C020C0B4FEA1C3BBB0F79B0BD3BE601C61A68DAF099DB323F29B1B5B3CBDEE1E1184CAC08D608212AA696D6AA8A18C19A4A5E0F8B72AA88E358464CCB6A66F9EF822310260EECEF1FE2632478CFB02869A40E630CBD7E55035996D2EDF6516061A143DE1FB0B8D4616961810A45CD58464C4760ECD47C506892C397362E91395741678C88351811428888118C18A24604C5DA2AAD7CF0F4FBF9A41F982AE2B3EA74EE5A6873639DC5A505ACA9703E0450551A594A8C911002599655F03818E252C7CEEE1EB76EDF859194A88D9E2964E61981389112793EC0FB7292B7352E41E5C8B4E65755548450545A8A293107CC22905C4C117C4804C214132FF3576F7C87344D714995F3A973743A2D9C73A856A4963AC7D52B6B9C9E0EB871ED2A771F6C8D61789C2D32DD9B3DA114B2C6B0BEB642922424D662134BABD164F3A94B586B393C3AAA449E11BADD9CD2FB998E6E1CB13A85CED6C3DC99B8DBCBF9EC675E9AE4F154CA8808EDE6538854CA524410231C9FF666FB0199CD189159629BAB1A6D3432FEECDB6FE09CABA48373B45A0DD65696C9D294FE6088B5963475DC7CF632FB8FBAFCDA2B9F9E38203A2323A611688E300AB16ABF10E0F99BBF5CF55AC660ADA199652C2D2F608DA5990F6A6D6F38ED552834D391CD20D02402B34FE65403008341C18B9F7ABECEE5BA048D1DA7C5DAEA525594A6B2C79A84D35E3E35D8D2C70D9FB43873921201D44404216BA4FCED77FE79E6F7AD66831BD79F25758EADED3D44204D537EE5FA533C3CECF2C5CFFFD66C3F704646C89329E2EA3E051FF8EDDFFCD5C7FE6254C42B4B0B559B29062572F5CA2683613155C4FA988C18D7C30578613E2A85628C137439F36F446451158D5A91985677DC88F0EB9F7989DFFBE2ABE33A1AFD779132E2E379A0C6EFEF7EEFDF677EE75CC2D52B9701B8FF601704B234E5851B9BEC1E9CF2C9E7AF93F992DB3FFD494D64B3C4758144FC51D3694550F2C1903FF8F217A61A9A4953A2C0CB2F7EB20AA5A9A615D76E58FAFD0177EFEFD0EF75A966925386CB949ED027C0C49D7693EFDF7EFF5C1F660D242EE3D9AB9BFCEFBBB7F065016A6BC385B3BD99CE2D85A6882CF8C07FFFF8BDC75268637D1580DDBD03BCAF86532FDCBCC2ADDB77F99D577F03552171196551CE444D1E93D5739E4AF4F301DFFAC657CFFF89223C3A3A1DBF3FCAEC7E80A955D51C5368A2469BCD8C6FFFCDDF9DEBC3363756383AE9F1CD3FFACA8C169A0839991972CDAD88C3540AA92AA5F7C418AB41AF2A4684A5A5055495A3E35342A85268B993F1E8E8081D756F32695EA685DC0C0ACC6FC15131E99D7B3B7CE36B5FA9BF586B5E30D55DD4914C56225A4FA695ADEDBD2931378D40B36C3CBF229E92D327275D1EEE1D72FBCE5DBAFD3E22D53646A8A4B33182188315C3C242876BBF741511337E7FC5D2B3AD2417D8127C2C8C8292658EE79FBB5EA55351920F4BBC2FEA7551834EBBC5F2529B7667012B869DBD7DA22AA28AB1E64CEA4C64F5072DD92F70C917C7E3F176B3C5BBB7EEF0E8E888A2F09465890F01AD0DB4D692B994E5D525AE5D7D1A44274C5E6BA149EAC8CCA871EE11F065C9C3DE01DD6E0F6B0CAD660369B73062B05630D662A4EA071267C128D14F1CA82A43CECC47474CF604784045B8B2B9C1C6FA2A078747F4FB03F2E190C170880F818649483347ABD9E4D2FA2A0B9D16BB0F0FAA9E18A9971FD36A74D21F63749E4C5CA190F7817BF71FF0FEBD6DFA795ECD4343042398BA36AD35345CC2E1E111CF3CB349180D77991AABC8D911EF9350A322845012222C2D2EB0BCBC54AD95C4A01A00A1D1484992A4DA19BB6A6FEC4B3F71800F52A0732EE2D1557D81E1A9CBAB1863383C3CA45F9494BEAC4EA904706932DE13ACAD2EB3BAB442AF3F18AB599D192D3EC1221E5DBE2CB9777F879D9D5DFAC301860AF7A56E5C7C19085E290A0F2A34B26C725864CAD2C76444754447E6EE40544853CBD5A73741C0FB880F1E5F94354764B45A4D3AED1669A381B3869DDDBD090AE9E3F32005420884F8041C10A0DDEC706F6B8B93D3534219F03110824711AC08C6262449C2E2629BCD8D8D4911D73DF1B48C508D441F518110C2FC1DF0C173F0E8906EAF87082469422A0EC48CF17F3499B3C612D513834E1DD7D1310D6B0C4489D5DAACEE35FADDAE15117B4E7B75529E15027CAC031A9595E54596161738EDF628860545E929CA020D4AEAAABBDFC832569697C832C76E7E3019ABD48B7A8DD589225141A43ABE108237C73BEF5FD9DCDCEC88884E1B39F51A11511151638C0E87431F42C8452457D570AE1A787478CCF6C37D06C5901815ADA575350B35182BA4D670747CCCE58DB5A9135F105119AD66A9C9775CC4A53783FEC9E780BEAAEAB413F51D56118921842822458CB16BAD7DE4BDDF050AE01C0EC4800F915633A3D5688091F11921009758A45E009AC4109531BEAB0231A668E5F0E8C0482591141F82D1186F88C8E08CBA1E191F5475688C39050E54F5D039779CE779AF5EE59DA38845585F5DE1384938ED9E521425F92010BC47B562E1C4595CE2585CECD06A36C9EB135C55044316630031538E55FD43DD4BA7678D57D5608CC955F504D80F216C596BB7814311E91E1E1E16AA1ACFE5C0AD3B7769341A34B28CAC91B1B2DCA6D948712E256A2484480CA15A04969E877B079C9C76A7422836C688CA881722512184A044DD0DA1F453867B11E919638E638C0F8D310FBCF7BBCEB9E346A3D17BEFBDF7CAE9029E7140265D87F9ECE77F3F99CC4923BD5E9F5EAFFF73C19C4A754070242322A021F6FABD93EFEFDC7BEF3F4524D6F9DC15914731C61D6BED0363CC7E9EE727D7AE5DCBDF7EFBED30BAE31F08A32262AE5EBD9A014D556DF962B87A51624B15196FFDA3FA10C2ADADDB3FFEA710FC001802272272006CC518B7628C87C698D3ADADAD02080707077A1E1E30B5F1EBC0DAA0777CDC6EB6FE15E888D08A9126221990296421C634067523B4390F10281C9C1CECBC75B8BFFD1E908BC8B188ECA9EA96316647551F6559D6BB73E74E59AD27CEA7F4A4DE34CE44006889481642C844A4212269082133C6A418D36C34DBAB69D65C3149B6E112B712A10534444C23AA34AAE7D25024EB749A0B6138B8BD7DF7276FC518BBC698A318E38EAA6E017BCD66F3A8D96CE6EFBCF38E3F9BDFE776E06C0DDCBC79D30E0603331C0E6DBBDD4EBCF7C67B6F430836CB321B63B421049B2489B3D63AEF7D6A8C49478EC618C7AF638C998824AA5A8AC84363CCF6603038109193BDBDBD0110F417D0D5F261EF95D9B9DF873D37376FDE34FD7EDF1645613B9D8E2DCBD29E7536C6688C31B14698DEFDFBF78B9F254D7E2E077EA60F399FB36382BA08C347D7FF03445C9686BCD643590000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (151,1,'Server_(96)',decode('89504E470D0A1A0A0000000D4948445200000048000000600806000000BE12341C0000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000019C74944415478DACD5D5B6F1CD971AED3B7B9F22A921225519795D6BBB62C055ED9461C07889375E2B7C00E020741FC92A7FC82E43F388FFE0379486C200B04411C040812D8468C18BE65E3D8DEF5AE77B52B8AA248F13EE49073EF3EA9AFCE39DD3DC3112FB2969C915A3DD33D973ED5555FD55755E74869ADE9348FAF7EF5ABD146B752F67A49C5A75ED923AF9C78BA5A2A04935E104E799ECF1B4D90F6AABEA78BCAF7A3C05791525EE4293FF47C8A1479E6B5E745BE4711C9397E8FE7857B7BBB338F9656DA2AF0BF1DFAFAEBFFF9ED3796E81C1FEA3801FDC9D7FEEA6FA727C6BFA414F1207820BE1704BE1FFA010FDC0BA3205405DF0F229F47EAFB3EF92C017E83EC49F15FFEA0FC10EF9579227B392E7FB33D0E2D2DAFD077FFEB47A47542A552713D0AA39F79A1F7CD0BC5F85B6FBCF1467CD6020A8E7B43E87B1716AECEDF730390A1A8FE4191DDA7836599C789194BAF17531C2794C45DEA269A741C533736C77ADD1E4D4D4DD0F4E4847C0EB74AEE9732FB76A73317C7F197C238787D2B0EFFFA0FFFF8CFFF3B0ABDAFFFDB3F7DF3D1C8080857AD7960EEA2B7B6B7697D7D9B62EA51DC4B78C09A2D8428C1E0F9AE27FC916EBB435D1E3C9B0C0B2AA142188A00718EDF4A1D3ED76977290803FAF82BB7686A629C7F86BF47AB4CB5C90A9CE4BB0336C7BBBD5E7297B4FAD32F7DF92F7EC6FB6F4D143AFFF0516BD5B1024AE4AE6AB237969ACD366DD76A624E9EA7C49C0A6121332D36350812AFFD50F1EB80C28037DE2B3EC72395BD2FCF03EAC53D4AB416ADD3721312F91DDD272AD6641672B512F2FB93D96EB7FB475EE0BF5EEF16FEE6F7BFF2979FFFDE3FFF5DEDFC3408429201B090580D6E5E5FA03FF8BDCFC9734F99A1C08C9CB6C99706BE600D048BB7C87927616DCEF300D9EC62FAE08347ACA1897C9FB237E31050E20C9BACE71761BB343E568599FBAD56FB72EB60BF78BE2646C6C4B4C516F90783E181C0AC62C1942EBF076360138306F079EC8133381E273D7B4ECB1E528220607ECD568BC228347AE20048593017903787C2428105DD13E176793F56A950ABDD1E010C622383DABBDBFF707199BEF7FD1F99C16ABEABFCA75088E49D9EF5586DC6A01E7F2660334A18A370DE13A169D9E33C03B098CD2B2FBF4463AC11949A98B6F89399171E9D4E97C6AA151112E311F5A05100BF8FF8E11DAF3DC6C4A045D89BBB6C06E1692F3F86145AF1D793D17AD6CBE507ABACC752A97668117692EE070D0C8F52B120E760AE1010CCF2F07BCFD5C4322F93C6362C1F8FC13A142FC580CCA08D8B0F423FC51A88B318B106212EE287EF2B313D9866C09F2BF03998AA72C8AC89D217A9B52931C54AB94C119B639785542C727CD9A4D1105062D51ED77EE3C615FA02833447C2ACE2E618D4DE00B401584F3C1C9B17DF659FDF07CCC8A3B4136AC2037DF0E1233161ADA15139DF950696EE35BC9FA24EAB4BE57291430C7CCF08989871F3898D731C886230492E50D21678EDD35C1493A8EC5CB6B7206FCF8909DBCDDD0C1AC0A066B3453BDB7BF21C3116C7F0AC857A143448E74C40D3D2D213FAC10FDF147D809B56AC4685A860A4ED65208D481AB112B408E7710EDF83BD80346F18E4AD1BD7E9E2C519F18ED0220B2B3AA73BF2A4C81804C1B41084B246CA77A95130B1248B4D1C15482C408AC74930F0B84F21713E16A1C6321073DE989CDBC71C20FA892711B4D11E0B3D4E364AE7DCBC01A30BD3932220E017024CD22382414EFD95054FC16ADC6D42D4EBF5115232A74C784021C2488327B94D5B2FE6049FC7B8C41E53FDEE512271E73D2B95928417AD766B14B858929A182EFDEA95CBF4E9FBF7E4AE220E3166D1932189A783C8D8B402CFC43D00D744E804093723898F42090E61A21F3E7ACC80DB335AA2F540249D43237C1F634EC4660953AB56472450D416A41D5BF5D975974B65B17F0C1E26D2EDFA79A6C102F0C5C3189C60CFD365A1590DD41C1B854C52C1C52496E27FBB968B399CCB3C99CD18F0F318F10F079CAD5647F00812F73D6F344C2CC90D6065E529FDFC17EF588168897D2289A48DE698C174659CE05BC0308031C8AB79BF27F8030FE4071E9B4B95055EB0DFA6E45F9333D2B9D813BF114AFC14067E7A3C4E462850142FC357854876BF7120C7624B358A25EBC56CE80FD587103CC60D70AF129FC739003BF6380FB71D719078EBE6029558C08EEBE9148FFA31A8D566AAC1D8D363B33C6D16F4238D831C483BBAA1F3D76DA9867286E0D9CD0ED0CBB3712FF79E431A9A582A930C782695F23265F242A24512845A5E77EE1AE45CBAD00CFE3BC3AE76E1CAA58C7593CB2CAAD445A799C674003A4DB7BAA8D8F3956857BD5E17EA90C5D93A173D672EBED56A4BFC532E96C4C5836A9C85269D2EDDC1170F3E746DE18AF030E88801E96EAA69E29283D004861698715EA720ADE53C7009E6FAC1876D66F68D947E99E4657FCA8CD2BC35B291084211801EF46BF379C741CE4D6DEDD4E8E9FA96198232A02B1E49B899D19CC4E68D2040381A4FCE7996A2D8F80982608C6A331E69CB51B4083039ECE287C4452EC53B525E0C77AC71D0A0E5D5B534F9054D412AC23075E3611A0CC0D08EC0660D4BE5524A5EB10740371A4D2A32385FBFBEC05EAC98E716649D993A2C16954FAAD040AEE51C73D22EDD911255DEC51917721134E5769EEACF2A2BD5BFEFE77A4916A5DB342D0DD08C34D5947F3D125423C9316CBEA0F258996E5E5B3060AA45129294172036C024690C8983A035201CD02CCF307892C89AB998662EE605327E44C62E9B9B6503F4506F4667A439A7C4A024D57BD4B1AE5D75206DFE003829C7A31C486B71C59E9C776E39B1202D815F9741FAE123DA665C4BD96A321C83E890B1D9A07274C8AAB9FE46A3454B8F5724B9A5942F46E848A87335006E65B995E15F065260769A0586F392AFE6EFECC6BD3EAEA787D08C3EEE918F1E4601839CC750365FB353DBA55FBDF39E0DDA7A422F00B22E9328C92D0660980D401A74A00290F60D60638FF3078D86E489AE5DBB2C021384D359C6D5E5E61C06A95CFA7500A9CF99ACEAFEC2613FF00EA445076EB639AFD27ABCDBA7090DAB259997B481D0B0BAD8106F363218948FA4C1D42B95725AD7021097848BA934D631EE5D9B68194D0885229B9A33479F0A85026B5551F2D241109840530DC45CC700B33A23377602379FE46AF35AD2A39F7EED9E4977C034F858A7E340DA7C26E281FBBE897B1C88E39C6783489C8F0A1C4977627AB8F89856D6D60572711312A75FCF70F16996F1C44CF2AC40DA5E271A1650828147F2241FA38561A7DD0D7C3CC67169F1105F7FB248DD06A28795420DF569A31307D9AA83ABCDEFD4764423A42AE17A565254B138025C491C0E212369C9AB958009F64C14DE38E8F4713D9D64B4553D83669C5D1CFD1CB5F9DB37176887E39695A79BA24118A4A8BE7B4ECA1E375555140C51BEF2ACEB97582889197F8A34373B25DD226FBDFB8111827665A29CB77A06CD506704D427AA6A084867C9087AB8B4426FF3A000C600590037F648C7A2523A562D9BF696008CDD047E48B306D206E3D1EDEB176975638776F722399E37B1BE14C6513423D5C851E0620318E1BA3A0E1BA3A6F1B10ADDBAB160FB873C5A5C7A22A59A0C6F7CAAD50FF858CF9481D230C272BD0137AF8EF066A36162BA9FACD6F70FE833AF7D92EE7DE2637DA6A072FD40A901F08B4FBE7A3B5732A2F4FCD4E4341539C07CBAB69145D2DAE9E860D2550D11DAA898182559DD8AAFBD108592C3D9AAD5ACDBF55201655BFFEBBEF3941D475610B150569BA754C86A30FA3C4433468AACEAB4E08901FDF87F7E4E3FFDD95B0677185342D91B1C32251DDFE2929F1DB71885E737AFCED2C6769DF1E912958AC55C3D5E537F594CF543D119D38C5370314B487374124243570730C5E1081E5393E3F4A9BBAF0AFE4078EFBEBF48FB070D4B584D61A7D76D51B7DD94EFD5B618E0C2A8C1D866988B3F8C4BE75E38D4292F8357BAFDD235C906A6A5919C4BC7BE56DB93C221A8C7A5D969521C7DA76E1EDD616C52737317A5D68EEC63BEB49D506205A08F01E61172F35A6503D8ABEFD3B5AB9769E1CA7CDAD292BFD8D44DAB1CC893CB0519619A88DB98CC2AC753F9DA7CF675C369469F9B572395EEA0D484BEFBFD1FD14FFEF79787DE2709FC20873916870663A5F99971DAA9B7E8EE275EA689F16AD6E5FA8CDAFC60FAFE2CF9FC099B3895CDD71C4D7EC0EE27ABE374EFCE2B823F2837BFFBFE433123D79880A4D9C50B13B4B7574F399E4B77A438744CC4AC4629DD21C9D69C17C308A04557E6E79EF999071F2C5A90F699B9FBECA9C6D3D7D83F585AA3A050A652A190EBE8D0694B8C528A06DC599A7B1A3D0CCA99182E796D7387EEDE7955B617F178F8E88998E6FD4FDDA55FBFF7016D6ED7B22A6CBEBA31947A8C0A483B17CDA636373345BF7CFB5D7AEB9DF78FFDA874BEFA5E4A5E6536907480248C4711BD76EFE3343D354E63E3AFD2D7FEECCBF4831FFE84FEFE1FFFF510CD382F267F8A8C625638C46387DDF893D5F5A1EF0538838FB9C71E5313588B0B1C0B6C72AF7DF216BDF7E132ED371A3485ACA2AFE81BDFF80605612135AD6701B31A350C12DD71C91DD2C7360C488355B994BEDE6F34A561D3C53AF8F4D2CA3A35DADDF4756DA72EF8B3B6BE99F1394DCF66F267C8394ED5270D2D5ADBDCA6CF7FEE3EFDF6673F95BBD60C10D410334B93647913016D6161BEFFF0313D5D5FA7DBB76EB2E036A56E9FCBB90E07E6C18AEEB9B3F95C73C1C59969DADCDCA2A5C7AB8783C3133CDCA08045AFBC7C83C62A65FA050BFDC99315691D2E96C78E8C78CE92669C3C1F94A6448DC9FD9AF9D5B040F1240FC441773F7695169F6C50B55AA6D90BD332DCA8583E42D8EA5C68C6E9CA3E69FEF9E8078A84A6C1CA3C9696574DA0987E9769A7DB3F681DE27A9980547FC1705836716430C8326EB2853D949E3FF7D9DF129A90CD2FCDA61AB883AE6EFED9FB77C9F53964FD879A3EFD19A23926B2AB6B5B6951C090557D24933F6BC271EAB20FFA7E9AAD0EBBEFC66FFCE3C80C88F9E6D31D8A4E50301CB18459BE368F2EF7FFFBC53BCF8D41D0ADBBAF2CD0FB8BABF4FA177E9766672E1C2E6DABC3DEEA90D0D4C88074D23F97E2181C42B7D9DCEC85F4F5DAC6963460E6BD58ABD9A076AB957AC9ACB49D237C692AF71934239D923E4A204D5A5AE7EEDD7999E62FCD9AD65D32F891684A7B0693249B02F5B15BD74D1B719264ADC4FC6776FE3A2D5CBE484D048CB9BA9BF2F3F1F37105C351E8B44FFA0B870F1697A5AC532C96ECEC1D37FB30ABB29A46CD5CBB9E6BE62453CF97664F7E7F2756B4C86455A7B956257CE6A8BEC491C420172892ED10DBDEDE65412D3127ABA5AD763887D985D258E5994E0F65A768BA252B649EBDCCA30FA53BFF0A6B50ABD33F6FDE4FF4F105C35C08301239E97C4A14BC6C7CBC42773E7E5B04F5F8C9AA74AD7679A0EDB825AD2C587A027D8A68E780704060A3309086A96AA5425397C6E9329B681046A6E493CF287AAACF5F3D2B1B3D4275319D1B80D1A69DBDBA24E6D1F13E31314693BC99E62874D093CCDF108D0ACDEA0A3E92F5CCBB4299AB8A1274D837FD293F0DD3A6AB8FA419A365623A9F1235031AAB5425607CF2688D36B7B6654E7BDAF57AA8178D289F918F588B50CD98BF38470B57E7B3B9B0D6C43C3D683AE747334E8741CEDC24264A687A6A82AA4C2B7A32FD9237362DD4E031930773BADADD8EE480508905A0978A91140965590ADF1418A3C0565573A56D49AD04DEB134438D52E1303F00B8FCED9D3A2D3E5EA6A76B9BD463C178769AA56B7FD1B6C2019016A026DF4C47F0CDA22761E873AC344B9719A4134D7DA56DF2F5C8D08C13B3F9FC0020ACB16A895EB9FD12DDB8B6409B9BDB4C3D9AD46633EB75DB6C6E3DE97095054DE09538B08900D2AC41C510AD3155BA34374B8512CA42A1C1B7DCBC79AD0F0BE5B8B86804CA3EF90168AAEDEED3F2CA8A782E37010AB8ECB3002A61D13499DB39AD9891282E5EEA647C9C7F717B6F97A2464013636346837275B764A0EEA3F2E6A40668C628B8794042DF00F84015D311AE5FA3272BABF494A9449BA3617834CC2B452FF4201B419864D611F2198F8A34333D4DF3F3ECE6239F05DECBCA3E92F44E6CEEF219DCEB0C69C62941DA0C0077F8609F4DAAD7A3A9C9091A1F1B375DF452B930DEA8DDEB8AD0B098125A7E81390683CC721608147D59DF43A75ECC71BD4C8186352D8C685DCCC527D2D0192712FC6DADAD3348AF53BD7E600498AD476200DBF50279CE043D99E10CAA8134EBDCDC0C5D9EBF982E5460E8899D1F7B626056A323A07C9503958B2B97E66876669AE24ECC84B32D6E1D6B9775587B804D98F90C61A01E8F155B30331AFD8B55CC722E14C98FD05714A52B3898304B6713548ECA24A634E3A36F523CBD807810A8AB2F33C540A7476E96AA00B532EA23B96705F3614141EBE0E50EBC2603FC9EC447A552498245B72E515A9BCF60FF486F864E592C583072027279E7976E2ED07EBD416B9B9B823798B583E94D682A4763952CC5E591500DE93493C030C0DA88343535451738D00470BB19CF6EDA393226C7D10C9914238BA524A3A84144F5FD86CCF102C016D8B5470CC4D9E4160BD8CA6892AC86078DE2E838509EF0B042214CF3D098D39199D8809B4F27BC646282E6A441651C8F9E8012B342268DC5555A5D5D93323434C6B505E71AEA330E9603702C26305E65463F3D25F33EB4CE1272DA25FD55BE70E15E9835D3949DF3E13E377A2666BD199693C0CCC32B572E192A82F63C2C20C9608D852401D2181996E12AF28655EC42591ED013762F4D565E2883CE3789A6FDD2035A2B1388AD3AC576DA021F5371122BF59C25567D828AE77381749DC1193C6C6BBB2693EAFAD6647573C3DCB404D7FE9B26D1CCE2265313133487847D921505948DB3F2C0AC73AB31881C73897116AED27137B873E74EE8AE8F03D1A1837EF3CD370F4F93C9E4AA737B9D17DE73B979B0F2ABAC39972ECED26EBD6E2369DEC0C77A06A8312BC8651001D061E8097B2F574A34313E21C1A359A12AEECB16E49B16D2D660782C4BED95CE9606EB3148D7B636263736363AB941EBC1E78C89FAF2E5CBCF3C876D6F6F2F09C3309E9999E9BEFDF6DB50CB04423ABD80F86E1F1C34C57B210FE4566A5136088C0A3E155496A7F66CB33956BF83066171B65A6D574CAF3A564993FD7D8DE4E6878C66693BB50A3B376BC8B605B289799DE6FE0D36D77177793921E89C20B42C4437700C7B7EC41D66D8E57219A597E6013F58231B2CA4E4B9DD7CB11471143C274C7E87E39A0EBB770DA0E63B1DCB6033A5555650262FED49DA1559C869CC38F43DCBE6ADA6686D8565D76D043DF162C3CE6233854AFA25E5038908A8D7EDBCCC2FF60660450FC20CFF7E7A2C31D506564AD5E5F36DD6A0037C073FAFB590CCB2F505BCF7B9300813EA90D680A9213A36AA6AEB351E96445666B964BEDD854260B00744C3B2FC106100A66D2687D9822D51DBA828B16DC86EE686CE151130D2D8E3D1A211A03A802D7A986B8160F85CCC028160509883603A7CB8C7C75A7C8C4941BB73E1C285C47DE639DCBC165CA91DD465E9E4FD66F3902B776B9C79A68A93D24C5F49268DAA1C454F4C8CD3F4D4240DF523DAF929DB2DE458BE5BDBC36A28B299BCC394EB785806342728E0098400D7DA6581ECF3B95D3EB6C3DB369B688DCDACCEC71B8C556D36AFDE7383B49182473333531CCB4CC86A771DE66200E72EBBF64E1789B3D84C19875022334F2C62DE85F5C7507905D550C2ECFDA10B948805D8D565DC4C47950279C6FE6313497B432A883A5346DD636174786BF07308A106A1B0C9EDF075ED42306C56ADC9C9C9CE83070F7A9B9B9B49DEFD9F5A40AB4F3784C163E63396CA41ADBE522DA71DF5CA4D69B23CD2A46375FF6A797638C82159F01C181DE887C59C4C2C6961C0AC302CE7F6E3D8AECD93130CCC0882C99951DD690B708685B3CBEF3960736A39AF3528986305E482AFDFF9E257FA500211F32E93556C2E9600D7923581C49D872631AFD440CB8296FC35482BBC1F342D19B6069949EBCA3A9F66B5CF3CF6A4AB827638AC78F7F183B7FE431B1584500031B1055EACF27AC0FB5D680A04C3AF6BAC317BFCBAC137A5BDBCBC0CC1266B6B6BFAA88031182214D9EEDFBFEF6D6D6DF9663ACFD1A08D1C34367A418BCFA6F9A524D760AEC46BE1C4C6E6EA87DFAEEFD6B672AE1A6AD8618C69B290EABC8719EDF0310866B7DBEDD65928CDE9E9E9369B514CE944CA5344D2CACC8CF36EDCB811ECEFEF87ABABAB05FEA102DF94D219D7EAF8CA63591F2D0D098DEB3F68370F7EBABAF4DE8F9DC6F031002EE2978673D3100C9FDB664DDFE3EBDF67E134676767C58CB6B7B7137DCA75BD829CE678172F5E2C306895D84C2AFCC315FE81AA8E7B636EBAE5990908F2B18BE9F2BF3DD691C7CB8BBFFA17869B264CCA9A11F0659FAF1131D08EC5981D362108E680B7F6CACA0ACC283ECE8C4EA4411C3D7ACD66336001B1D624D09A32DF8562A3BEF39D69467816518515BCC4FA5EE4DF8A58EDB11E45E4363E17B00904CCB043B684D010C96438CE1CF3886D4B0DDFB99DBD9DF5EFD43656DFB7DEA8CB1B8454879B06BEC08CA0397C53EB8C31C097CEE2E262EF346674D443D9C92312A14083F84710579458350B7C01F8DF539839A888071AF13E043DE16321BF4EF7A64EE815A352652C0A0B635E108E0785E234C74BD39E0AC6B5C7C2D446901C0346686AE5E721AB49C8B682F26AC8314DC8411F93FE224703AA1BF73A6F2D7FF8F6BF236E41B40B33E2DF8737AAF16FC245237ED9654FC49E2C6E4E4C4C74E1A6AD6048BF209557B9A04A30E8F6EDDB7EA3D1F05993FC6AB5EAB3A07CBE2B7EC497CD17E2F3C5F97CB764EF36BE50EC39BCF103ECF3CF59708115AABCB6CF7D6DC05FF65E10448542692C0CA36A54284EB45BEDE6FEDED6861D6CD30A464C08C2819B8619F1F3D6FCFC7C9799BAAD6FBE781CE8FBAF6B547F3B7CBA84089B9FE23BA55850B221626761C91EB4809F7B954A0542F220CC42A1E01F214C08CA1F22CCD009932F035AE98102C05DF379680DE2973A7F1F04D37E91667462011D150F1D536F71A181E2A0F499C284202144D64C11248408614260780E61F2F5E03DB2E7470C2DE1E70D98918B767351F247EE39D48BFC8D17294C6826621C1660CCF812C34D7F5466746602FA0D85A98EC98E9ECB85FE3F4524CF3249E403160000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (152,1,'Switch_(128)',decode('89504E470D0A1A0A0000000D4948445200000080000000500806000000D1007DE40000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00002B6C4944415478DAED7D07609BE5D5F5B5B66CCBB6BCF7DEDB891DDB59248184106881400861140AA5145A28D0B2A184AF2D1D747D85EE452185EFFFF98096555669B613CF38F18AF7DE5BB6B5A5EFDCC796633BDE24AC5A2024BD92DF75CF3DE7DCFB3CEF8B93DD6EA795C77FEEC3E9B30C00273C1CEFFF7DE090D2DFDF6F07160ED86DF6FD0971312BC8FEBC026022F04E0F3EF490E4A69BBFBC5126935D8F8F3BED769B87CD66271C53ABCD6EFB1B80B02F3931BE6C25CC9F13003832BEBAA636452291DEE82471BA161F83C7836EA389E013824F083E5EC5F2522CDF87E52F66A426B7AF84FC330A8086A6E660A944723D50806CA7149BCD361E6C47F039D8B689E04F7D7F060878D83FC4FB7D78FBEA9AD519BA95F07FCA01D0DDDBEB6EB3DAAE46D06E400437E255321EF4D9837F1610CE04FF0C3B8CFFED1896FF0340D887D7F7D66567595600F02979F40F0E2A10B84BB05F37205897E155351ED4B3B37C3AF52F3AF862F9C8C80895965550654DAD55EBE67E2A2539EE811BAFD9F5FE0A003E81C7B06E04FB615B371E74FB2EBCF79C55CF1D209887056607C799F75D3D3D54525A46A76BEBC43AA2232328353991BC3CB4547EFA74477D635385AB46F3DD271FBCEFC00A00CEF363746C2C0141BB01C1BB0E010A5F7CD097A6FF369B95EA1A9AE9C4A9326A6D6B27954A454909B194141F4B7672A293659574E264190D0E0F51485010AD4A4BA6D090E0A3D53575EF37B775FDED477B1FAA5901C0397A184DA60004660F02743D5E579D45D33382EFA0EC8525E06CEA371A4C54515D8D0057D0C0D030797B692925219E2223C2696060904A00888ACA6AB258AD141B1D49692949E4E9E14EF54DCD545074828D27A9552AFBD62D171C8E0C0FFD25D6FDC665DBB71A5700B0C487D566D32080A8D3EDD72358172238920583B9A4E04FFF7E78584727CB2BA9F2740D038E2242432829318E7CBCBCA8A9A5554840634B0B29950A4A8E8FC377092497C9A8BCAA8A0A8A4BA9B7AF9FB400427A6A3225C6C680198629BFB084AA6A6AEDBEDE5EA7D764663C00A678F3CACB2EB1AF0060EE871CCF8BC7836EBB1CAFEA459BB545EAFE4C20B47776D1A9F20A6A686E21B95446B13151148F002A1432AA3A5D2B24A00F99CFC165DD8F890C2783DE88E5E560835390243D05070652462A4B40103535B7011025545BDF404E528900CBAAD4547276515351C9C981E6D6B62A2F4F8FEF3DFBF4536FAF00E0CC23174FAED577E3E93D6F262F23F83359C06AB5506D4313955554514F6F2FB9BB6928212E8EA222426874D440A72A2A91D9A7C9603452504000A526C6536060007EDB47C5A5A7008C1A30945580253D39893CDCDC5019D4503E24A0B3BB875C9CD5021029F83B93D14C052527A8F0C449C20E0886589D9E427A83A9FC485E4185B35AF5FDDFFDF78F4BFF1301103B11747E463916DA1DC19B83C617ADE7B300614C6FA0AAEA1AAAC4933337C8DF8F1290ED7E7EBED431C104758DCD623FA2A3C261FAE2C9DDD515D4DF06C3771252D0464A8502CBE3C4536277A213E5E5540450E87423E4EFEB43E93083D1E1E1D4DDD747F9052542225C5D5C697546AA00444F6F3FE5E517006455E4EEEE46B96B326DA989091F149F387558AF33FEEED7CF3CD5FD790680DF4496DF8067D66C3F981AFCA5946CF3057F60701081A8A6BAFA46EC3D51645818C5217B9D91A9B558C619DFD3D3474A95128088A6F89868924AA50228A5A0FADEFE01D2BABB53725202C54645D010F4BD189EA0ACB28ACC2633458687898CF7F5F5A606540EF9C5C530852DE4EFEF4B59E9691485B2B1A1B1898E1E2F00C09A003C7FCACE5A4551F8BBAAEA5A3A723C1F00ECA6D4A404CB964D1B5EE9EFEDFFDFC6BAEA377EFBEB678D9F0700B8E079C544D0B7E2299DEFC773067D1EEA9FCB0072F95671BA5AE8BC8BDA9962E0DA395816B319CB6BC477636363E4017D4F8C8BA588B010D2832538B09CA1FC3E08D4CF554060A0BF581F4B00EA7E92002089713190874452A9555401C960AA6720454586512602EFEBE383E5D5945750445D5DDD140DFF003348BEDEBE309CE574F858012A8B014A4B4DA29CD5AB05388F1516D1C95315E4E3E36DDAB1F5C2E7CC56CBF30FDFF38D239F35004827827DC344F05D16BBF2C53AF9B958803392B38CA97E08CEDED7DB9B62A2222930C08FFAFA06B87143F5D07FB3C5229671E039507DFDFD548ADABEB6AE4E6C939B3D2C011A1767AAA9ABA712D4FC9DDDBDA4717541D013280E4CC1DB2A0143B05164BF108F65ABD25250062A8549CC2F3E4123BA51F88B18CA5A950E6FE00C2F504AC70008FEFD6A98C3CCD5A96440E979E458816022AE3A72C00E21C1015458720AD5C7296612DDF62D17FCCC6AB33FFFEDBBEEA8FF3403206B22E83CE2E6BB9C95CFDBB0398B05CE047F647494AA1128A67433323C34384804DE15016C6126402676200B254E12484008C5C646096D6E6D6DA39338F1AD6D1D28F154141F872A203A8AFD9A6082529486DC020EF0F5A5646878584830B79E051370D64B5039A426C543DF13012A331523C00C16DE2FAE1A581AF87D41518908BE13B69F9991269673F61FCACB174C14085958BB269302E04B8EE3B725A52749A3D1000C19389660B14E7E860405746E59BFF6BB1299ECA57BEEB86DE0530580879E78AAF8CEDB6E72C5C98F59CE8A270DE01224A00FA6EA746D3D82DC86D24D0E8A0F17353CFC19B2B941E8381B3415821B131D0EDD0D27278904DFD523C0A7453059DF13E363293C349886F0DB53A21F504D168B95222019C909B1E4E5E9896D7488C070B347E3AAA1B4944451090C0E0C09FA2FC7FA38FB33C00229F1F1A483BC1C2F281646D155ADA64CB00083A8BDA38B0EE71D17800D0D0AA475395962FDC70A8B01AC93A84ADC29376B3585858E07BE0815845C2EA335F8FB3880B30B954B7E6189CD62B576A4A5243F0933FBFCFD77DF61FCC40170D7FD8FDA9D244ED6C888F0235FB9714FB2AB8B8BE7520130D300CE167CABD54A2D1D1D54535B27689D6B740E2C9BAED1D111AAAAA913346F3099C8034E3B2E2A0A941A08BD471550538DE0D60A0A0E0CF0175580AF8F37D8A153B4771B9B5B482A9382056284C633A8184842027A7AC8DFCF87D2929244CDDFD6DE019A2F05209AC43E30FD33EBF4F4F48A60F2763C3DB594BD3A5D2CE746D2E1A3F9621B91116122C86EC87236874558BF16FBBA764D168583A14AF139BFB804609522F06942AA068686E8583E1BCC260AC6BE67AECE10DBC57EEBBB7B7B1A7CFD7C7F981C1BBBEFE1FBEEB27F2200B8FB81C71800244186E139B82127BBF48B3BB6ADC37BD9A201B0800458F17D6959394E6233CA373FD079A8A8C33B507F57D7D422289DE2B70128ED62902D5E5A2DF5836A5902B85D8BADC0EC71151049CE30866CE8CACAAB90553D221889F131024CEC1138A3B93BC8F2121E12024A4F206F646A4D7D03F4B9943A212901A06E310E00C9696A6D1519CFDB09428058F779790D0074E4583EB57576A08A881681E78E22BBFFA292930224EB73D68863614FC11E81CF01FF7D0A2A8F91915118C942AA06D33158D720F07C7CDCB52C0263F03963507265A31B1D693B555675DA49E6F4CC1B2FFEF5EF1F2B00BEF9D0E3769E8023008057A65AA55C5677CD95570CE2E4AD3E97FACF2CC0AEB901753B9F18CE0E29B619028D8E8E0817251E6728EB2B97585CE2C5468E57015899608932806264745CDFE3E3A2850E8B96303C4125CA331BB6C19503D3B952A510EBE29630B77923434351F32791B79727B6DF40F9D06D064438E42773552AF979FB08F9399A5F286AFF44AC3F0B8193E29CB0FBE781240F0F0FDA00FA8F080F15C3CC478F1592C96AA63519E99491920C0633000C25C28B70A66767AE121EA4B6BE5E349DC6F47A788F04C84A1C7C8F5594ACA76B6B859C64A0B2F0D27A16E1DCEDC3B97BE9C947EEEF3AEF00B8E7E1EF9C0500C9C4675071C197AFDFEDE7E3ED1D3AAFFE2FB101C4A371D5D575E4EAEA2A349C1F5C8357D5D4D0E0E0B0D0F75830417010820B475E812AA0068061260943562720309CF95D609093E515227B95728570EE7131D10268A7C0382751169ACC26A1C15CFAA9E1E82B4F73E9574A43005F34C0C512C0CD1DEE30B204F072EE1D6466A492CD621381E7F24FEBA185EE678A7EC409049ED9814BCE4C503D978FBCCD6345C542065C6062B333578BFE43330CEB5130413F3C47222A8E748084FB150CD83230155719ABD25384B4CD48182BCEDB0748B017F0FAF7A7BEF3F0E87901C0BD8F3C619F1A78EC1BEA41044DA2A4096098C3C3828BAFBBEACA14954AE57CAE1B40BD7D7D74E8E8F1717D873C44E3A4794202783C9F25808DA24C26871E87534C44A430564DCDADE20476767793BB90805861FC743A1D4AB90A1ECC1159CB80E0E16027BB04BFAF10193C66308AC611B777550A052A860AB8FD52D21BF4DCD44116A69011FBC22CC0DBE07D59BB66B5680071C977E0C8311A06BD670238D970FB5C21F0886201CA4739BC47F6EA55629B5D283F8FC027B477748AF2340B9EC2198C565155234627F95CA7A7A4085FC11237DFC4163C47F1FE35BCEEC3771F3CFDDDC7ADE70C00F73DBA771A005C1446BA39F16DFAFFA75269489A209840CCD174B20F672425F67E61C7F6082C735A5A0368FEEEDFD0D030F12A954AA5C8984A9CA41ED4F86E6EAEC8A2480A4349C519560D0359064A1F1ED2890E1E9BAC409460CC045CC3B35153AB55A0D70448478400157B8F93F00BBCEDE48438E1E8F9701828ACE53C3E9086D28FCBBFD1D131D1F2E54A83879473B33285F728079D1F044807870601922451FAC91432F1F7E3DA4FD0F87404344948CD51B0466D43A3A07EEE1E7A423658F21824269311EB48A4048096CBDBA5CE70C239EBC4EB4B3C13FA674FED2DFEC800F8D6634F4E0380463A448F6E7C8B5E2E0CA07C5A4783F22E0AD1238BD8286287AD56F3F0D64D1B25B9D96B5C3F6A03682610D8B87120B959C34CE0EBED452328CB7820E734F49F877C7922074B80076482FBFC4CCFEC173CB51E22C061D0736E26959C1C1F0052005429A8F91350219860124B4E9E14BACB999B0ECD4D8A8FE3994A087C2180779ABCB0CD1CE87604CC1DB77C0F1E3D26DACABCEE5C300177278BB0EE2379F96484BC6441FB33D35349CFAC81C07329EAEBEB33D91F6050324806212D49F025692909A4805C2D677ADB2CE7B812EF5FC0FB179FF9F1F79B960400C79C7B00C03A0D00925E7A64E3BBB4EF981F1D5627D36B173C4B99EF6DA35CA7ED02009CA97CF2C86A1EDB7DF54E45487090CC768E0780F877169CDCE3C8182E0D7957992AE3A2A3C5902F9778ACEF7C52D95973F78F077578E48F4BBF3A641FCA599169DCE265ADE62610B78A154AB9306BDC011CE81F126DDC4A48860F8C211B3636849CAD8750F377835978983917C17473D340B32B68FF913C48C008AD027DE764AD16F4CD6D63DE2E8F50AECDCE12A695A99F658407AC98C5B891C4267731339C160AFE2CC0E17F0FE1BF2C112FFFF6E73F1A9C170013C197242525492FD9B9DBE800007E440A899ED668F753CFB09C0EBAC4D29B17FE9E12FEB596B659AF9906007EE5AD6A5C54863DBBAE52A9D46AA7A50CFFCE3CB0D9AA091D0C60476727050707C2DDDB4446B22F60BDE6864B626CAC1813E08EE089B232D1F4F1F2F4106D5FEEC40DC1137093A602B5BD06668BFBF73190869EBE7ECA87E1E3D2904B44D6670E7C1D3E1F421677C15B44A12AE12C66A661977EE0709E00188F28AECFC92625F49E6B7E76F6DC7760B9605AEF1FE8073B148ABA5F480040C5EC740E66382F3C6986636C276360A0DF3F1FFFF6BD57CE0A000EFEAE5DBB24050505722F2F2FE5964BAF1874B8FE02B8551F9457A74163A9313E644D55D33B173D47F1EFE6D276C9B59300100E800DA34426A4C16C345AA222C22C975CBC55B59C01A085660071F0C5840DD4FFDC31E4913F9EEFC77D85526879370223DABEA07A7F30421F289B339EC703B8A2E02960FC77A21B87D28F1982FBF7ECE0D95FD483A699D2DB0136A67EAEF9B954E4F18983C8781E98E272745D6E16B9B96AC4BAB91F60C1FEE7C0EDB3948C8D8C09D3C765248F65ACCDCE14FEE45CCE705E4866DD346E421E6532D9D875575FE97216001CC1EFE9E991F7F5F5A9518EB86FBBFCEA0607000E1D3E4A5D5D674A4FBF601F92E40C138DD969BBCF359399AF950FD0069FF7E8FDA66CB2BAC44E968DFAB151E386DC1CA7A4A404C5FC07B3BC19C056008121CE357C29B49FCD607050A018B3E79A9B33945BB0ACBB5E3071E9C9C9F83E00B57E8F0010978B3ED0782EDBB8CBD80C0FC134CD2386BC1E0E3C376D98510E20F06C48B94C5D97B30680F042A95849FB718ED82C32A567C1F1DBAC1621013CB8E40A70AC036B4445862F6B6EE3E4CCE6C59E938957F6144840E13998DCC7F4FA3901C0B42F43F6A8B1620F04CDFFA22FEC3C76060047A8B3737AEF210AC85F9BBB06E5977C12001E9276FA4AF2ABF4DAC908AA515F4C46BB9EBC9C7C1D6523CAA831FD65176F572008D2E5CE009AEF44B134D43536504860106934AE426F8BA1C1ADEDED82095293938427E8009879748F03EDE3ED897A3B157F1348AD1D1D9477BC489498FEFE3E94B36A350504F889E1DF43A8EF790E029F4CEEF773A3899B38FF3E94C717B0882A623D745E8E939E8FBA9F9DBD542AA39C35ABC4543266C633C15F3CB897C302DC540B0E0CE099CD2443FDCEE79FC97954AF1FBD7ED74ED7D90020CDCDCD55E055835AD70FCBC22EBEFCEA371C813B78E8F02400A43219396BDCA1BF52D4E75E141E92350900775B037D25ED4DFA9FC2302AF5C9A417E29EA64D0557D37AE7ADE365237E63B5586DCE0A9971FBC5DB545299D4E95CCD009E7952B865CB83341CC094840451BEB581CA0B51A27166FB787A51467A0A4E943FA8BC5B38F2E6965621015999E90210ECF28F22F0A72119DC8666D3C799DFDCDA0E2638225EA32322687D6E3679B86984AF387CBC508C247215B03A2D8569F7BC1CDF5CC1F784D761DFA286143A2E9E1600186780110040332B0056AF5EADC467777C0E44B022B67DF1AA971D003800000C82569D351E141A6A877BEDC5721B59AC5222F326D26A03050064C616DA1EF01615B60650915732BD90F534A51EDB40BB64B74D8C299C318AFA31BD393428D09ABD2653B568EA5F624389A77BF329E0A163CEC83630029790DC75E3F9035D3D62248E1AE0193CB5EE085A8618181AC2B1E6A10AA840DDAF717315133C984AB90D7CF0689E9824CA1906598334400250261E387C4CCC2EE29A9F8D9F4AAD5CA6BF5938F8B39D1BF63E6C2EB9E2600A102D9A89C03B80A0D7EB75D75F7395DB820C80E5A1DBAFD8F5A6030035758D64B6B740233BC48A4D2629198C32B2DA90D5D64D70D808384E70785818559C2AA4E470171A4AD0D2FF5BF34B4A3AB08EF668BE7656A5205EB132DDF0A03173558624242444BE9419C08BCA9289133E3A3646E595D5A249C4068C3D019B3E1E0AE6326E352420223454FC8EA5818790552AA5D0731E611C1C1A162D5EAE34B837CFA68F4D625D43839000EE4E727B77E3DA6CACCFFD234D729D09F085F45F2A75128358EC619CA6049E04ED4F07C27C0098E6016002FD366EBBE4172E2E9A5CC944A3C76235A0CE3D481EDA61E88A9DBAFB5C417B7AB2992F043D06D15BEFBC4B6D3047BC93DC964DCA89A1A6F41272D669688FE71D530080DA5D7698DA47036114E3C6CB463838FD88CEB071FD7AA5B38BB36439FABF5877DC0623F7F6071F924A393ED61F23FA014661124F9495E3D824949E964AC971B1A289C3E300DC2072553B43CF3345EBB9ADA30B753F24A0B94D30C1C67539E4076FB1D8BEC64225DB62749FFF6159F283B719D7F9B903EF6004BDDE307CC3EEABDC17AC02A05B6EC87CAFC4B48C6D21E11177A994EA4047C7AF7FA09DAC745CCC14532ACD24935C40DEDA107AF39FEF500B3474EA231D273836298CC203A2A6657EA6F2798A756FA0DF9CBA8EBC43E245D9C86C603699AC7005A69C9C1C35EFF847354873D5D406BD81A430AF3C9F9083CE53B5F8F729DCFA4D4C10EF79C64F3140219148C5502E7706FB0706E950DE31715D2157131BB2B385DE2E0D8C0B49DCC2C1E7C691BF8FAF6029A789D27B3CE8F333C0D8987EE8C66BAFF698B70F5052522273777757619133BEF3502814BE99B9EB6FF20D08BC562695A91D411CD6EDA7924A3BA5C4660887FDC6DBFF9C0600A43279FB78D2F6CDE9E4ED3D1D00A94E7FA074FF56FA49FE5594975A44CE231ADA6ADB49AE2A57B1A323BA6113CA2E7B5C6CACF27C36487800A814651A8CA9A810A4C87E1E45E4468EC56C117D022E1979A896277AF0502E9FFCB5D0F8B8189E28F5D166382FB501C455057B1817179733819D12F8B98130FE5E6F300EDEB8FB2AED829D40184289D96C5640125456ABD5053BABF50F0A8D4ECB5875B787A7E70664851307D364B288A0F2D4A937DE7E47D0AB1A1582C6434359E9DD90022BD33BF96A77A21E0F98900109451B7E4539E15DF4D3FCABE99D940FA834E828DD9EB7975605AE992819C7D9A6B7B7C790101F2FF3F6F2949DEB06C9CCAB8639C8AFBDF94F31ED3C213656F802FC5A98C49293E562BFD913F044127EBF9419CECBD57FC7BA392AEE6E6E84C414CD3647E0694AA01D81A7699FA7CB80DE6818F8D2EEAB3D173516B069D326496B6BABD4CFCF4FA1D3E9D4A8F7353870CFB8E4D4F5710949773B3B3B877390C6A5C14998A45E9D0E8EB9055962E6BE0C190C32329A64E4E57E39B42A181434CA4684A4E65EF2B51EA336FB1A7A3DFE75AA0A2FA6DB0E3E4E59E16B69FA1C0427EEF6D90707FA0DE969692AB942EEB498602ED779F3D880C9642605E481FB0785274E0826E0B103EE1528E4B23901782EC0381BA05CD46A72F7709B52CF4F093C4D71F9B3047EA60CC0D3F403005E8B1A0D9C0A04540672044E8945CE78BAC32378E76EDCB427342CE246995CEEEA6818F50F94D1E04801B2DD889D97D0C0B04AD08FBFD7170080103188F2A7BFFC156EDC97F59EB66DBB900E04BE42E519C7E9AB479EA0ACB0DC69934F1CBE8319616C6CCC0ACD36272626A8ECE7B0473EDB7AF87A4106806E7444CCE861DA5FEAFD0896ACFF33D6C7D7367285C2E309678CDCF48C3F1B0813323007100C4643FF4D7BAEF1B64F09FABCD705386ECAC4DEA0A2A202C58154CEB28038B882113CB45AEF88ECF5EBBFE6EBE7BF55C293012636DED2F64FD29BDBC9D5C54CADEDEE9418BD95FC7C42C560CAEFFFF4DCB46D44C0856B732494E2BE8A9243D3689C55C601E0633D42B6B156EA946D2317773F0184BEDE3E13D7BA0181810AFB6247C81611FC65B7A29731C035DF18000E5E5C8F280CDE940C1F8FC4F4CF6780B0383F0006E87BEBD597FD5E7EF9659B03048BBA32683659B0582CCE00C2B82C24266665AC5AF30D5737B77847C36764544F4DADAFD2F0989D62422F43B9343E41E3777FFCCBCC95D395975F46B96BB226B5DF91F95E8677294BF306BDD5B09924515792DC2623854C290EB8A3AD4D1F1212A2707175917EA4C1A5C5B2C939BAC269AEE0F3EC110582AE522AC6CFC1546A9F1308F3FB81E940209E08D3F7BDEF3C1A545B5BCBF744122058D2A5610E20C0244A511DC85816F0F72E08BA3BBEF2BAE0C2AD9747C7C5DF821A5BEB70FD35F58DA2F9C2AD526E98FCF6F77F16EBE28B30B8A5EC17A8A2A4D83E328C45D2C5175E3F8DFADD87FF4E399EEFD3AB551BA821219A5EB4FF96F60CDC4139FE1BC4F7668BD9D6D5D9618C8C8C5231FFD8CE53F097734B9AA57437792E204F4393482567287B368D5F64E0E7620494BFFD7FFCCD33E1063C8A8A8A786EA16DC91787CE250B269349C3B2A0D16883366DBDE8B6E0E0E04B51B6C81C53C7180CCC007F7AFE45D152F60F90D1EAB476983C89686AE8469474E1FA47A70140DAF1125D187C885EAEDC4095B101F4ACCF5EDA587529DD1BFA044D35A0C3C343969191114B7070886AC189A8F352F6B9B91FD1621B401C20BE6EC161F0A6966C535BB833697FB97E006560FF333FFD513CAA09DDFEFDFB4DCB02C05CB2C07308F0590DC3E80693A88D8A894F5DBB61E337BCBC3CD31C6CC0B3775F7FE7438A8E3A419E5A03592C521A1D938B9DEBEC72A1CBB73F2002CBA371F5600E7F3F6F920EE69154EE4A2D292EF4C7A0A7695DE925747FEC7F4D0E353B4D79ED686F37CAE43289BB87566E3FC737A358D033CCDA849A9B8984DC49A467824B530CDB0C20CC2603CB010292A4E80FBFFAE56588CF505E5E1E03C0FA91EF0F30972C8014DCC10ADE9B2FDCBA2D392DFD36948DBE0E73D7DDDB4D0D2D7F231F2F9D68292B9516945F12DAB2EE3B0200F50D0DF48B677F0B07AC10D706AECDC9229F8D2ADA17F60C65D75E48F727CC040024D43C4A32958798925A5FD760D06A3D1472A5527A2E275D7C64169892F9CC5E8ECCA429193F1D08F3C9C0DC7E60A60CC0AFE99A1AEAFEF2F61BFFF813E2D3E9E9E939FC9119602159C0436DB55A45B5A056AB032EBEEC0B374545C75E09BA5338025758524C4AD5EBD4D2A1A5A08041CACE784A0080AFBFFFD92F7F356D1BEC8AB75EB58E4CAA61BA2EF7D6E900B08D5268F73D546ED8419E71BBC5323091ADA9A1D1E8EDE7ABE6439CB767B06CF7BFF8E0F3EC655EDF59CE7DB6EC5F061066F3039CE12DCD8D87FEF5FEBBCF0DF6F757631F3A118F7E58007D7979B9E59C01603659C02BB381C2210B008567646464FC96ADDBEFF00F0CCC76F8023E29C70A5FA0A345448F7CF3360180C6A646FAC92FA60380E9122C435FBFED26619AA652BFDDD04DE963775359A717C932FE400DC61A8A52C589D66E4F4FAFB9B7B7D7E6AED52ACFA5042CB601C46D669E1F307E9E670CD3CE648069B43F8B1F98C508CE25037DBD3D35470FEDDFD7D4D0508A6D77E25CF5E0FB2130F1A88F8F8FD9510A9E979B44CD9405680F5CBAC419EF3D40475E1B366FBE202767DDED1A37B72087E91B1C18266F6FAD182B686C6EA2A77FF6CCF89DA6144A7276F3A0B070294587F7D3D0908A765E7A2F79B8074C02C0305047B9F408E5377A926BCE9FE896BECBC96BC49F1EF3FE21F9788CF70FEAEBEA0D46B359A652AB650B06737242EAF2F45F4C53B3F16DEA8CE2BAC439EBF62940988D11960304FDD848DF89E2C2D78AF2F3F7F354082CEBE16B3B21A53A0F0F0FC3D4E09FD7BB84CD270B6C12F1B5EF55D75CBB27212979974221779E3A5FA0B1A9899EF9FD5F10782D8585982929BE8BCC2629C060859151D2AAA4AF515464E2240086BB2A29CDFC249D687123DF4DCFD19E8EADD4EED64CBF68DF47D989EB260C175FBB60B55754541AE48C2AA94472BE1A407A834104DF3E9EDCF364EA4C202CDE0FCCAC10AC16B3B1BAAAF2C38307FEFDBAD56C6EC5F17663FFFB9170C3D0FCB19E9E1E536262A2756AF03F96FB04CE260BD8314713C92B242424F2B22B767E352C2C6CE3783351220EF61F6F7D40AEEEEF939BC60459B0D3C0909AD46A3375766B687DD6ED141B153B3E5BE9E0617169F5D1FDAF9164A48A76DCF863DAD9BA91FAB45DF4D3B6E7695DCAC64900386443373C6CADACAE36A9D52EEA73197CA3D124AEFE1DD77A9A676C7E1E202CD10FF0D6DB9A9B4FE41DDAFF4A5F5F5F2D12AD133FEF85011FC4F7A3F05F46A5526986E9B38D5FB4353DE01FDB9D426793052C72C1CEF10405AFECDCDC9CCD5BB6DEAEF5F48C747404474687E9C0D15F93D6B395FA065C482EE3F2C94EC971F74E02E0C9EFFF88EA1B1B85C9E2DBC37CF986EBE8BFA5DFA1A6A8D3F4B3F617687DDAC6697E4132564D56451029D4EE3C81C5D4D4D24272A55AF1511A405CA9F07430A3C93C7B376E66D0670DFC027E6096D270B07FA0B5E0D8D1D71AEA6A4A10F80E9C831EB06B3F5E75D8273D5ECD8EAC9FB864CFFE89DC29742E59C05B31E40C6970055569B12F3EBB76EFD9B92A73F5756A955A335E364AC4ED5BDABA7E45B54D5E9418DB4531E1F7515444B208EADEEFFD505CA3377D224A12B9E5DA6847E415B42A2173DA08A3A4F1E7241DCAA326F557293C798738E965E5E5FAFE419D5C2295CA96341DDD62135734EB46C6B01EFB3C819DA3937756A36771C6D06830E8CA4E96BC575A5CB41FCBDBB12F5D78F6E1AB210080B3DE84F796B9B2FE1303C042B280C56E0082278C4AE8B5D7DF704B744CEC45281BA51C3C7E1C3DFE67FAFB7B3DF4F52FDF4071519162D0E889EFFEE02C0028D52E74EB4DD7D1E53B2E9E46FD0C0063E5F7285CF2211DEAB98CA236DF4327060B69ADF705A895CDB6828222A3C16C567128E72BFDF83BDD884ECC1012744F4E7350F41C933496E907B02D4B7D6DCDF1E3470EBE8D0C6FC1A24E6479378E6D00AC3A02DA37609999DBBC0B05FE1305C07CB28032C50507E5C1630B191919E95FB8FC8ADBFDFC031226F57B74540C91F21C3D0180FFFA019555568A93A576D190C6434B99197DA45258E0F3B474FBCDBF9E0680E1E24728D6398F3E68DB4E015B6EA12DEDA97451D717E9999C3F9312DEB0AFBFCF52547C02C59B936AB60610DF94926F1C69321AE7E9C5CF078425F88189C07384BA3B3AAAF38F1E7E7360A0AF9ADD3D673DCE533F247498AFF8E9EAEA32E17C5940F7F6C506FF1307C05CB280074F4071C5010A59B86AD7EE4B366CD870A3AB46E33919CC8909A68F3FF9036A6CEF2417540CA9497D14E4AF43363B2153510BF7B9D283773F376D8E41E3FEFB29DBAF80DE69B998DCD65D4D578CAC23D72E773A9A725A5C42E51887A8ADAD31965555F31F2AC675DE246E5DA31BD64DCFCC4576E3E603C27C7E40373CD45B5290FF6E53435D31D33D673D9B3C10E3E0D8D8D8A8ABABAB01996F594AD67FAA00B0185900DD7979787905DF7CD3CD37A4A4A45E22033A1C0078FFDF87E860FE1BB431A7990C46B9B85E611015834C66A59A3A3F7A7AEFAF270798BABB7BC9D54549A51F3E43230609F96ED946375A2E21D7360F3A9A5125EEE8E5186012D3BE706E8EE717E8DFDF7F5862349B15E355CA6C63F333299BE6F5038B31862693515F5D5E7EF45469F141EC471B673DD33D9B3C6EED22E87A2C332D64F23E3300986D5E22F78170A04AF84457EC27570BDE38E044F883DB5036A60B361053D64DF4CA1B4F0300B5E4A9D5536DA3179860981A9ABCE97B8FFC611200DFFCF6C3E2F270BEF1E4C55BB750FC05A17497E43A5277BAD1B19CB301E0609B6F3FB6D72A972BA4B38ECE91D3F4C0CF948199C66E013FC0EDD9E686BAB2A2E3C7DF371AF5CD9CF54804BE2CAB17DF0D617F46351A8D71B126EF330780C5CAC21557ECDCBCFD92ED37BB7B68FD1C0DA4D6B616DAF7CAB3E4EDDD41637AF60926FAC657FE77120077DFF7B0B81184E3C11776AEFD62329D30E4D1DF6E795500C0C12C0E00F0F35B8F3E31098039876997E507A603A1B7A7ABB5A4E0F807FDBD3DA739E31D9D3CD67A1CFB088FE3E3D504BAB73926747CDCF70AFE54C802B3014E8A270C63C06DB77FEDDAECECEC2F2A144AA5A3E1F3E1A10FE860DECBD4DCA6A57DBFF9E9E4DC81BBEE7B48DC1C72C636E8D517FF4AE1E1A1625C7EE610B3B85B0A00206300CC3B56BF1010E6F603A3A3BAA1F2D292C34DF5752558CA3ADF018DE7ACEFC3B10E635FC6FAFAFA8CC1C1C1D67391F59F19002C240B7C1513570B919191B1B7DEF6D55BE2E2E2B21D816307FFFADBEFD1AE2B2E9D9C58FA8D7B1F1417703A06979C91F13E7EAE949AD84D61413BE9AB37DD390D0093F74B7A8419402E9DBD373F8B1F58F430ADD954575D75A2F254E961009A339E6BFA4E47FF1E093F02E6332EB5B4FBDC01603E598029D2B02CE0B3CF8E1D3BD65EB56BD7977D7C7C8325B3CC2CFEFA3D0F88FB05BBB87B909B56436B335B458D2593DB6860C0957EF2E45BD3A8FF0C00BEB3080658BC1FE038B6B536D79E2C2A3864D0EB9B1C59EFE8DFF3C00DF7EF5B5B5BCD13A5DDB24DDEE7060073C9824EA7E39948A25A6036C0D3EF8E3BEFBC72D3E6CD3B9DD5CE2E5301F0FDA77F498515D5949BD9425A773D325002B72D1375F6C0A00BFDFCBB6F4FA3FE49003CFCF8380066A5FDA5016108020F677FB8AFBBBB7A42E745D64F74F206F97F6AC9A376E7CAE47DEE0030972C802E4513896581FD5D686868C49D5FFFFA4D696969EBA55299C461140F1C790DFEE039F2F119416D2FC5D975A29E7E675229ADF4C3C7FE358DFA27EF99C80090310068CE21DA59A76D4FF10306BD61ACA6F25461635D6DE9D4C033DDF3240D64FD88A37F5F5E5E6E3D5726EF730B8099B2C0D734C224C9878686266501C7E67BD14517ADFAD24D37DF1212121CE9989BC829FFDCFFECA59395A7282EBA97CA4FFB921792EEC74FFCEBACEC170078E831ABD45105D0ECD7DDCD650C6D368BA5A9AEAEEA74F9C97CEC53BB23F84CF79CF53C49834D1E77F2C2C3C33F96ACFFDC00602159C0D39DAF5BC0896759D871E98E4B77B9A1D6735405BD7DBDB4F7C73FA2D8A83C3A7C3C9A5EDFF7D2ACEBBF070090C9A698C0C5CCDEC53F5D1DEDAD9565A5C7F4A3235CCF77809D44D64F74F206B8930733BBE4FEFD0A00E60102B3417D7DFDA42C4C3491842CF8F9F985DE77DF7DD7E5E4E46E962BE4B2C97B201D2BA0E75E7A859E7BF6E9D901F02033000030B3973F0710468687064F979F2AEAEBE9AA41D03BA796761FB7C9FB8F02C0543600109C5816A65EDCCA573923083EB9B9B92977DE79E7CDD1D1D109B3B9FE998F6F3E000690CBA473DE806102086693C9585F5355D9D250C7B526D7F1DCC56BE7491AD84E2F0039B498491A2B00384FB28060F0554CA25AC07BDF5B6FBD75CBB5D75EBB07D9E835DFBAEE7EE05100E00C03CCBCE0C26EB7D9DA9A9B9BEAAA2B4A2D2693D0786EE14EB471BB99EE973249630500E7C1243A6441A150F0554C4216F82A676463E0C30F3FBC7BF3E6CDDBB8B1302B00EE7F14122093CE365AD7DFDBDD5B5B71EAD4D8E868EBC4302D07BECDA1F5B48C491A2B00388F6C30F39E07DC5246807C525252E2BEF5AD6F7D292929297DE6DFDF75FF23169840D9D4162EFCDB687D65D96994F50D3887DD137DFB36A67CB08C18AB87FFD02D6792C60A003E0620F03D0F101C1E5B70E17B1E70B580F77EBB77EF5E77F3CD375FE7EBEBEB3F09806F3F6A96CAA572FE730B1EAD0DB58DAD8DF5351319DE39315CEB28F17AB98DEBE8DF7FD2266F05000BB4941D17B73A6E85C3B2C0774A7DF0C107AFDCBE7DFB0E50B71A0C609248A4F29E8EB6D6FADAAA5AABD9CC83343D53B31EAFDCC6EDE3513BAC4BFF69CEFAFF68002C461626D8C0373232320A40B8FE777F79C1ADA6A2AC6244373486F3C5C1ED7734741C59EFD0FACF42D6AF00601E59987A2B1CAE16B86C6430705389AB093CF53867FD3C278FB39EB51EDE51F759CAFA15002C5216F856385C364EF40FF826CBFC3FC1E0E1596EDF0EF058FD6731EB5700B00459181B1B13F74C040054083EDFC5D4A2542AF56CF23EED0E7F0500E7A8890426908F8E8E4AE10725083A3CA0D90260583EAB59BF028025C8C2DEBD7B9DF6EFDF2F81417432180C4E5006BB46A3B17FDA1A3A2B0038CF40707CA4F1EB34C8FE393971FF07D8A71BB9A44D93E00000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (153,1,'Switch_(24)',decode('89504E470D0A1A0A0000000D49484452000000180000000F0806000000FEA40FDB0000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000036E4944415438CB95946B6854471886BF73CD6EF6AC89EB6A884975375183AE5A4D84404B213F6A0D8822D52012A1782301B1F487088542A07F82509AA01204FB2334D04B0A15418862292828885AD1B84623D966B3BBD94D62B249CE6DE6CCB938B3644B8BD134031F1F6738E779E77DCFCC709EE7C17B86904C6676231BB5208C0791EAFEDCD8B875029631B8C50408210D86611C35113E822DAB02210CD9DC048CA652EE9C3AFF1463FBD77C76F64A67E7D7D3CB11584FAB953E1FA5C0CD74C5801082643A0DE3D91CA8BA0E866182A6E9609A08906962CB71EF3AAEF363B9CCF5757474B8EF14F8EDDAF5EE83FBF69EE6794E741C07183C951E874C260706D2C1B26CD0695755034C6450212A4E45742A8A6D9B41E6886BDF9205F952CFF79DB7DF1238FBCDB7A34A202B377F7AC26DD8B1A30A6104F3AA069393AF21373545C11AE826851B080CDA75432F8858B6050413C0160181E7A1AC3C08B2243FC326EE4344FBE9C2F9F3E98240FB57E7A653E471E8F3ED4D90542DABA5F9305F51B14664D96BBA06E9F12C64B39385989838B6D83C8B4B05977E1F0E8540090480BDCFDC636C4138BCD29324E9101789447C7BF61EB8E7940CED14700DCC29B3D0B27D97378625BCE7A3CF648E1378F611CB3E9DA5B151B139EAC8A06ECA5704617578D5021815E0222F4265E51A082A0AA432B92F0A0E388EE3BF3C7BAED5E3E132B2464A251202698302CDD1ADEE8C5D8AEB6AB7F8E96E2A80548D391A87956565509C63608BC654EAF78142C1922882482B37996BFDCF366D6B6B93D6456B7B5ECFA78E133BCFFB1D0556EC5A0B1F87EA8846826E20182C29028BDDA4456824A224FE036665E8BA319DCB37BE750EA81B8E6EB9687524DAFFD7E09F0D01C50FAB03A5206E5B0BF5620DCEA312C1765C91C167F2B36CBB82B0006502B64DECB1BF137DA9D1447B7F7FBFC5BDEB24B3D8BABB2F1EACDDB4F1F22F57AF846A22D5501FAD8244D8F32A67A2E693A197B2CFE7138B609EE7BDCC58323EFC7CF0C8C0C040DC5B0073EFBB2A989BA6A626E1D8C99317AAAAAB4EFDD07751FC305607B1BA4FF0BD078F4B8A71E4A7A7F223C32F3BAE5FBBDA4379CE9257C562425D5D5D1F6CD858F3BB2079F53691F19DFB0F7D84FE886462F8C6AB1743EDF1787CC25B04F6BF04FE1D5B6F6FEF7E4C9CEF6EDEFA03922389338F1EDDBF4919EEB22EBBA5DCD0C6C762313F5DB5EE2D017803E3A425037E775C910000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (154,1,'Switch_(48)',decode('89504E470D0A1A0A0000000D49484452000000300000001E08060000006AA49DC10000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000009F44944415458C3CD58097054F519FFF63EB2B937D70636B78484802412CC104CC0944211B0D2801C415070180A086552079563E494A9E8581DA6963A431B9912A39456ED0805524827108848D2403627E4DEFBDEB7BBEFEAF71E59D890044190FA32FFBCB7EFFFF6FF7EBFEFFB7DC77F052CCBC2C31E023C743A5D02CB0A8B3C22F8D7E4F474233CA643F030048C46A38A20FCBF22297205AE5244D19490C27F24497D43D37405E9759F282828207E6A04C456AB6316822EA3197A3E45514A1C80C001B1DF3AE3672FE185AB4D4D3E86626A2452D9E1535F4B3EABAC2CA5FF6F044892CC27296A39027C1101C604830D80A7F16CB5D9A0F15A33F8FC7E9049A560309941A99083D96A7326C4AA8FEB0D8663BBB7BDF1F5E322908663194531CB6986CA18C9D2DC40B9404F5F3FB4B77782402C02D24F82C3E100954AC513100A0580E4C166754058980A9C2E57BF5A1D7DB4A7B7BFE2D0BBFBBE7BD404D43816E1588EA380BB310CF4A0B5FD08B4ADB313060C46904B656041EBD3382793C9C088C0E5721938EC4EF09124286452B03B5D209188C1E67072810F84DBC34645455E35596CA7264D7D72F78665CB1C3F9840775FDFACB11ACD7ABC9C8D431278809BA7E85BC0E941226E0F012D6DEDE072B941229580C168E2413338E7409032B91C4C463388C462601906DC840744420EB81DA448C0E174E36721783C6E604080DF63F05901E9F3FAAFC6C7C57E403A2D55070F1E241E88C06BAF6F3F9993354EB26249E914A9541A328400822707E5A343E06EB79B978DC96285F0B0509E881F352F1209D1F21608095182CB4DE0F3240264C0E97023412958ED4840CC11F0E0C234787D241201F0F8BC182F72F01004889118E1F37A626362FF6E361AFE71F4933F1CBD2F029BB76EAF168BC5451289C850525CD431F399C2A9DC3C8D16A487689F829B5D3DE045C066B319588110FC3E1F38D1F2A1A14A305BEC280FC0202681E00021603BC6831CBD62B3D9311E8448CECDBFD3E3F18014A54778BDE807E03DCC000B0CCBF0D7196929F8BCA80DDF5B41FAA88A03BBDE6A1F95C096B776564BC492A2DCB0F3502D1C07F13EAD79F6CC22595EEE64D548C18B59099C0844D7DA06F83DDE1B32941327214E724264C15D2B30037199899393C3CE1110A1C75CE82D1112F4F2CF8AD0083ED2CFDFE3BC302E3D8D97E4F04C47D762FAAE60DDCCB10F3FDC6BBE4D60C68C19E2BC6933CEB9DCAE8248B6054E67DF805F3A5F011946023A807861DE3C496C6C8C38100BB7023940840293D98259A80FBC5E0E10C383E002D862B18114A56341726204C7599E0B5E2EC5BADD1E042941EFB840A95480C56A83CC8C745E92C1DEBE9338EE10512AE5546CB47AFF960D6BB7719E134E9C38513DF317F3AB3B3A6F8ED7E95A202D27118AF29E8502F539F8D21D03D1743A13A588F43D37E7E7721146DB1022419EE9EAE9E563A17F40CF1330184C18E45204EEE26389467236F4820A010FE05C28A654BDDE0419A9C9101F1F37E29AC1E005F8A71D9308899A7818D01BAAD6AD5E592A282E2E1663506AA797CCFEC668B6A62B427498AB494C8B252074E8A0214B0FC99E0990A39A02A4D745C5C5C651F9F9F972EAAEB808BC8C0B6E335AFC66773797EF79D0029488C16884C88870F4941EC24255D08B1E4BD468202D2589FF4EB085875A1CD76468888A8880319A044CC3123E8E068CA663BF7EE5A517390F08F2F2F21449696953D23232F7496450D067A887F8E87CF8E26F5F414C5C04CC7DEE6790A81E0329D4677046F5248C71A6F8D06A82C4C4B1D2404D08D4873B3182E9D64B40FD950608512AA16F600042E44A7CB181974956E613284F7618D860EB73C983CB5EB1EA183E9638E0816134198FAE5BBD6AD9ED20E6E2002D1199993369615272EA36A944AAB9FCDF7F42B2D6857A4D028D7A3228FDD7A12AE5329447ECC5EC22028BD9446465664AE5728568A4D62270DDDDDBCB4B86F348CEF871204000F7AAEADC1993112A21145372085FC903C045836783D152B1FED59565432A31D716A3A4640CC324144C2F2E1FA3D5AE6AEDA89183200CAC660A2E5EAA87BC824C583A7F1984492C28B12BD0A1CC61E44EA52F2D3D4D8E6B0946D6F048E48656F5DB730C85B5428281AA1C063A78E80DC64F37AD5B5336622FB468D1225157575788569B3AE1A982FC3D9AC4B1457597BF15F8E93AB4080D93B25703E53243B8A0133E4AA881BDEA43D8FBD849C2E3A563E3E2E443E26214CF70A0C9A039BE0660FEE7EA06974EEF0017F0A9F76E2FF4F6F47DF4D589AA4DA336739C373036703D71D494A79F9E3369F2533B1C2E7D7273FB49989EFF327C72E4285F988A57E4C2D2A92B20146E80C765835E4F9C57241489E4F210C930EBDF15A801B99098B9B8F42B40902359FB36702CDB849B70B4B736FFFE5CF599F7EAEAEA2CDFDB4E230F216E4A64F8B2F8F92F2CDC90353E7B8D12DBCC43870F61801B4115C24259E9FBC0DA1BC06C6B8423E12DF0B6F63DB6B9B9D92B1089652CC20AAE1DC155DD8FAD840BAB3183596654D083677C3FD9D9DE7AAAF6FCBFDFC10A7E2D3535D55A595949DFF77E8093554747872A29292973CEDC793B3563C7CEAAB9F047A18B30C2CB4B3E804DE55B212E211A121784C26B79BF0505D581843C4C4B2FED1308C50AF27696B955C5AD7607DF1472157B28E8E15EE8EBEEBEF6EDA58B078D46FD590CEABEEAEA6A1F3B08FC8176640159E1A2D1858585338B9E2DD981FBE027D2B010AD59BF19A2D414242749E08DCD7F02A1F124981C5DF0A90A0986ACF737365D67298695618D60B9EE15E52218CDDA8161B35A4D8D57EB8F747776FE15FBAAF6CCCC4C0767F587DE13076485D64C58BC64C9EA698585EB2ED6D784F7184E00E191C29B9B2BA0F2F32F806207A02EA31E8E145561BF24863D07DE25BC24ADB817686EF8BC04D172FDDAE9A6862B1FE3BBAEDAED767D5B5B9B9F1D01EC436DEA3959B5B6B686C6C7C767BCB472D59B137272E61E3BFE17F186577F036B376EC1D6BB038A9E4981837B3F06B94C0E3BF7EC27BC14A3B8935D8602C7BD03D37DA3A3A9F14AFD619FCF578D55F78656AB75DF6DF54746205856DC4E0EBD326DD1E2C5DBB3B2B273F6BFFF3B108A6B305885B0756315A8A3A361C7EE7DC33CC00F8C0393BEBFAFA9F1BBE34EBBFD04066C13DE37D6D7D753ECF700143C8ADF8502B242225C31D39495952D9DBF60C1465D7B63F4E75F1E86033BFE0C519111B07DD75E82182410F082DBE574B65C6B3C3FD0DB5B85CB5C40597635343410B80EF3A3FF2E349AAC308586858787A7949797BF5E5252F2BC42A190726DF4B6B7F710849FE209E06E8DBCD1D6DA74B3B3ED044BD367F09966DC095ACE9E3D4B3DB61FB6EE25ABECEC6CECA4A5EADCDCDCFCB56BD76E43EF4CDEBE6B9FC7E9F12AF5FDDD3D9D3ADD694CED2751F69770F3D25B5B5BEBBB5FABFFE804EE96156A3AB1B4B474A1CDE979FEC285FF0C789CCE5A9CAEC696A10D7B1EFB835AFDB111081C5CA78BFBE750948E064718DEEA4389E9830BD24F9A4050A72BEAE9E911614E277F885C463AFE073058EEEEAEC64B560000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (155,1,'Switch_(64)',decode('89504E470D0A1A0A0000000D49484452000000400000002808060000004ECEFCE90000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000F7E4944415468DEDD590B7454F599FFCDFB954C26EFC764F29C3C48788424105E2220EA2A880202828AB4B5D6D2833C94565BB114DAEDAE5DCB5AEB41B1F69C6E5111DCEDE3EC62AB58A8474979872433249399BC93996426994C9279CF9DD9EF7F43203B24012B56DCC9B9E7DEB9735FDFEFFB7EBFEFF7DD08229108BEE88FC9644AA2FBF88B8A8A86708B7D045F1400B5B5B52AB94AB55200E106BAC79DA130170C73DC1F392E74D0E970FC69D1A245A1FF8F0088BA6CB63B235CE4612ECCAD0C87232A8EE340DBE0D75C985F87C39C23C47187C291F0C1391515A7BEF200B85CAE4A0AEC112E1C7988D6A957828D0A7CE4FBC876B7CD86F33575100A85CE92E2C25FD7D419FFBCF7073B3FFCCA00E0F7FBF33996692EC4B25D7825483ED031DB63820F853834599A517FA911B1312AA4A7A5A2B1C9028FC78382FC3CB47775B50BC291A35533E7EC5ABE7C91E3560420391C0EAFA38028F0F09CC9323CB60ABC5E2F8C0D26B4B675409B910E895442DF1BA1902B90A5CB84A9C98CFE01178AF4F9E8EBEF4743933932BBA2FC6497D5F661D8ED7C65DFBE7DFD5F26004A5AEEA7E5115AEEA2A0C4E3051E1E277027055567BC84C1C1216467656260601096965664A4A7213636060663235140809CEC2C34B7B4C1DAD383427D1EDC1E1F5A5ADB909DAD83C73DEC730DBA2F4E2B2DD9FB87C307FF7CFCF8F1D03F0200112D4B2F07FD002D31A33F8C57DAD1E5DFD56D655984502044465A1A5A3B3A607738909B934D3408A1A1B1090909F148A4C5407408D279F9B939E8EAEAE62B203F278734A207F63E07F4B9B9E8A0FD2E02B1203FA7BFB9B5AD765659D9CE67B66E3EFB450030EB72D0EB68498D3E981D3B91C005434134B7B6A385CA3C213E0E4AA592FABF05A4F6C8A54CDAFBFAD1DED1059D2E1D0202C64881ABA90AD209204681105D272B530B73730BFC81005F1526B3198140103A6D061ACD16C4D035552A25BAAD36E4E564B71245CE2C983F6BC796C71FEFBC29003CB7E79FCF6FFEFA6331BA4C6DC178078799B845099C9704CCD4DC0C47BF13E92929F0FA7D2474ADD0C4C6222D35994AB91DAEA1610A488B7EE7205FDA4C07944A058C8D26A8144A242526A0C1D404994C46E7A4F2FA209188919C94C46B475C9C1A32A9189DDD36E4E874B0F6DA2122EA3011A563230579B917FB06068E09207DE9E0817DB6BF1B80ADCFEE8A8844622E3F37FBD34D1BD64E55299509D7001055FE16CA98542A838D1EAA934A353D3D154A0ACA6269018480569B86F6F691D2CEC9CA82CF4700D139A92949904A247C17484C48805AAD42BDA111711A35D431B13034361200C91020C283A8A72E61EDB1F15A934DD7A9371AA982D4488C8FA70458904DD5E30F04836EB7A77EDAD429BBBB3531EFBFFEC413C1CF04C0F6EFFF900010412A26FF2694B8AA66951BEEBDF38E2A11DB19CDFF3114F0FB03E875D8F97265DC8F53C7D21207734B33B8509817409BAD17649290A5A50725102C54095469FC7D2F51F6D3A87A2462112E1120199459A615ADED1DC8CFCBE5B581D1A28004B2AEBE810097D0B9197C75A4A7B2F3C4743D02292F871758DE6C715C1F170ABD1BE004077FB6E7B9EA1B02E0E9E77F141153AC4B7417506F4F854394014558D177FBFC3982850BE6254C666EE886044000816008672ED4805D8751C0DCDC86A1E161E2772681E4400F554A0E69827BD8CD77040648880B5155B4225B9781E1611FDABA3A28985C58A9E407E9DC29857AEA268DFCBD5897603E42A3A6EC6B343010782CFB79B9D988F0153AAE385BC895BEC585B8832FBFB8B7695C00040281E8995D7B42ECC167259D47A35F8C437967B1CEF2144422216532E85D75DF320929B978B20E30BA6D77F4F399CD484BE133E9F67879FEF6DA1D5409569E0E6EB79BFF8DB53BD62A9948129FD14DED90B5CC92E2025E275CAE214C9F3A85CFB8582C21D032504B1448218A944C29249AE0BA5EE46AD2C2A7950AE93BFFF6E3DDFF7E0580C58B178BED76BB7AF983EBFBACD47E2E5DBA84D43C35ECB39BF180EF1B904BC24894DAD01FCA89484442DFEA952B640A854278BD9BB20E6036B740AE90F3E2C77C416E4E16FA1C7D14642F720904A60D9DD4369913643AE2A0D637A5A888B4A515367B0FA69794C264B1F0342B24A3C47C858A04B47CC63402437CDD967C990EFC7E162BD3249D561B5ABFFA01090F005B4A4B4B5572B9BCF0AE15ABCF757559F1B753A72096485156968B1953AB102371E3F6A4FFC1AB9112E85C058889A8B9E484F8C09D4B972822E1C8951B862EDF283C4E8B745246BBAC56B47776212F3B9B82EDE5DB59417E3EEF1198092A292AE4C160BE61DA9429E8A0ED5EBB1D538B8BA99A4C74DD086657CE2491555CB967F83A33C7E87E0D75126A9D7CF721CA716B1F58211E0540585656A696482433088013BD941D7B7F1DA1ED23210C43255F8E0095AF56548323653D28E89E810AD9029EE31E8F3BC0F839A5B8583AEE0C10F5604CD83C648B3FA93E4DC2A8A56C0F50C05D282E2C80832863A25E4F83115FFECDEDED28A56D669FFBA8C5CEABAA40BC267ECCF5AF7F3FB630C1CCCCD0D2B96ADE7F30E719A4A1E4A155F75F014040B3B98C0692F4CA79B7EF494A4D59E7F3F64A7C81B31050374889BF17FFF5BBA3244E6EE4DE9E8C994533A18F2D41A682CC8BDF83415915865C03BECACA7271427C7C943E4C6C97996962FB86C8231888DB85FA5C0449408DE4128B48E858D02CF8CAF23252F654DCC8B035F6187E70217F919898489E410801052E14B0EE2664005CA500E30509A040AFD74B89061A7D51D1ACE292192FC42726CC6A693750A6A6E2BDF7FE131C61A5D78BE97B01A615DD069DE41CC4816EBC90DC800DCEEF20519E14F17A867D15151572AA0EC1A4FA70793F3D082F7CE43171EADC05EA029908522B65204C2B2DE64B76A220C313649DED57C690B9226FC104732468010120E4B7D99A63003CB85212DD05046BD6AC111A8D4605D121A972CEBC5579FAA29D3131AAB4333567919E61E40BC6E98CC7AC69AB71FA4C357253457867DEEFF1B8ED7BC84B2A00B30B3E9F374465152A2E2E924797E344651B0C069989C1F18F3FA1AC25A2886885496CF7445520221FA121FF2193492F072BE0E791D1350F04AD69840F6E58B34A3AEE30C480A02C8AA9A7C724242464CEB96DD1569D2EEB617F60406E6E3B46D6578DB915CBF0D22F7EC91F5FB6A0182B162F8726261E1A5127A4EEB3188C5F07679FD34F1656909C9C7C8D3E846FA08D4E5C41D71E17A13FA55C0EAA60F6FC570215460130BA6600FCE1BD7715870F1FE6261C87E94242D20629F56A4D7676F68C8AAAF93F48CFC858E0F17805ACFDBCBCFF00B2721464404250CA4AB1F8B6FBA10C3621C97B147B922258E8FB27CCD4CC4677678737352D5D4A3E5F74236F8AAE3D66E2E3189042F2286C86982CE3D140300AFCECA77B35B5B5B59E49DF078CA5059577F2DC050BEF9D5951B9332E2E2EBBFACC31F2ED3554BA62F83CB9985FB512BFFBE37F233F258C8B773563AE7F31EE485D4EB41020140884C9CEFA53D2D2E5ECB2939676D4FEF0440045A8E4E94F20BA2A6E930170654DE4B2DB7B8FFEE657071EA9A9A971DDD01BA1515AD02013AB56ABB5772FBBEF5B45C553361177557F3BFF0E5D32098BE6DF87E777FF983FBE689A1E5FFBC63A64C665432AF443DDBE0BCE8217E11DF0051D760717A78997DF48698F97F56068A49D52CC97CBFDAAB85D01226A3D0280801930CBB9D3A75E6E30D6BD4F55D3555D5DEDFB4CAFC4182DE6CE9D2B237DD068B5DA92BBEF59FE6C4E7EDE12E2A0D0EFF563F74F5F429E5E8AACAC10C4822C3CB2661B224117923BB6E160DE7238079DF8B6EE69B4B5B6FA863D1E9154A690DC987D1D09DA4D1E8255C435010AFEAFCA4703E171BB5D86BA0B6F9FAEAE3E443A61A150FA29783FC51EFECC2F45C7D242A954A6CC9E3D67C982C58BBE9B96925670E2E451F8027F25A72586D79D866F6E7C1E6F1D3A0269A813DC32351C611B9ECFFB57BE5B2034143134B4FB02E1B08CAE2A8C0E7C5428D9A03438E486D7E71D312DD1DC9E0008F69D400B369B4D7FF9F4938FDF08F9FD063ADD1A1B1BEB3E71E20417B91CF8DFFD56980141165A429488A18AD0AE7A70ED63B3AA663F2E1449E2DE3FF61A393E319EDCB4139BB73E4356B70FEAB8386CF9FE462C2A5DCC0320366E416FDCA31026EA39B3A125101188142CCB63B3CEA6C8FE8101FE3DC4449CBE46E54700887476B61BCF9E3CF9ABFE7E47B5DFEF6F1D1E1E76B5B6B60658D66FCA6BF1685A903EC453CB2B7CE8E1479F9E36B5F41EFA41C4DAD2B7B7EE84481642696908722987ED4FBEC50320A8790C66D54A6C16EDC5C725F5B0F7DA0335F58608C52E737B3CB0DA6C9140302898AC9D8D0784CBD9DF7BF1FCD9773BDA5A8FD2E399C8E1F6969494788F1C39128E8C13EC4DF9C708AB066A9922ABD5AA88898949A9ACAC9CBF62E5AAEFE6E4E494BE7FEC03389C87F8917A704882679F7A9B7F0768369C82263F0EDB155B503BB59B263C250FCCEB6FFEDAD3D1DDAB14D2F6F5FAF9D8DF29015E93D1F051FDC5F3EFD275EAA96A3A69DFA0C16008462609F2A6FE6B8CA58B682156A954B154CEDA75EBD7AF5DB2E48E27C94D26FEC7E17DE8E96BC34F9EFB0D3E38F617FCE4C59F831C27EEF9FA7CECDEF802DFCB1900FB0FBCE96DB7F628C6E5763420B49F2A9AEB6869AEADB970F6EDA0DF7F96F65928F8BE73E7CE3191E36EC6FF053E172D341A8DFE9B4F3CF1D49C3973EF730DB9A55A1A6CFEF4E147F8979FBF026D96926C2F87AAB2F5D8B0E66B7CB0AFBEFE86B7BD7B0200C6AE4911ED3D3D9D7535E77E3F38E0FC2B816724AE77D3DA4DC187223718D817F6DFE1515A78BD5E25F98594F2F2F2D98F6EDCF874494969399B040FFC7617B2747D440B1952131762E7961FF1E7BDFADA1BDEB66E9B62E2BE2E807B6868E8527DEDF1EE8EB60F28E00B94F116527727A9FB3522F7A501301E2D0888CC356B1E5AB166EDEACDE9E9E9696FFEF61730B57C045DFA027C6FEB0FF9E37FF9DA016F5B1701704D9B13B04931D86631D55A4C0D47E9B9CFD1E10D048055A15078C6B6B65B0A80D16A602B362A4BA5D2780A2A6FFBF6EDDF5ABA74E9EA5088935B68EE9F5D3E630480FD07BC2D5D56C55591E32D5FC4DAD1D66E32D67D14F0FB4FD3BE1AD6DA88620366B339F859B3FE0F07603C5AD0D7D4FCFCFCB26DDBB6ED2060AA842C5AFABCB2FF754F4BA75539CA77575F9FB3A9A1EE1495FD492AF5F3F4BC8D34A0F54C9F3EDD33516BBB6501184B0BBD5E2FA1A12A9602CF5CB66CD9DD9B366DFA0E4D9DBA57F61F186AEEE88A0D78BDBE667383D161B3B277FAE7E9B85AA2501BD17FF0F366FD4B07600C2D84947D198DD709145CEE8E1D3B36399CAE851F7FF2A9A7B3C55C476ED040CF779E78DEC40C0DF5742F9DF3B9B37E4B00104D0BCAAC8A024DA532CFA7DD19B4B8E827332D1D54F243D733345F5900A2699190901043995751C9D39C141EBC5143F39507600C2D58450869AE88DC0C91BBDEE77F01E1FA866211D8A0F10000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (156,1,'Switch_(96)',decode('89504E470D0A1A0A0000000D49484452000000600000003C080600000099D4BFB40000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00001C454944415478DAED5C07745CD5B53DD334A31969D49BD5CBA88D7A7137EE0153620C960DD884408C0D3809E5C3A285D82440483E21212410C3070276086003494CA80EC5D8966CF532EABD5B7D54A697BFEF55B5AC6A534C99B5DE1ACDD3BC76F6397BEF73DE930476BB9DBE7F7D7D2FC1850280002FF6FED1471FC9838242AEC08AEB6C365BAF5D48FB6354AA8FF12BDBF7007C49AF83070F8A9292D2D69148B04D28106CB2D96D4E769B8DAC58EC363B7B6FC5E77FD88474202936B6E07B00BEA05763635B8A5044DB11E66B10603F643C0D2FF6E177FBA4CFC34B89D56E3F20B0985E4D4F4F6FFA1E8079BEFAFAFA820D26CB76300A28C61E3B31D3C7033E45E0ED670161EFE9EBCBCACE29D41805C2DF3C7AEFEDB5DF0330CDABBFBFDF1DC7C9B0D8ECDB11F065089E6038A8F649019F35E87C693DDD41790545545D5B4B2141419418A736E9F486A3659515B932BBF991BD7BF70E7E0F00916C50AFBFDC6EB56E471037D8ED3687B14C9F10CC59B37F64BDD56AA3AA9A5ACA2F2A21643EC5A82228363A8A5ADB4F536E7E1175F5F650426C2CC5C544F568CACAB3BAFABAFFFDC4AFF6EEFBAE0120B4582C2B113004DD763582EB326566CF96FD13C0D01B8C545A5641859A52128BC4A48E8DA2A0050BA8B4A2928321918859055048600095E07BD9F9051CD4E484380A0B09AACF3A95574C76FB5FFEF8DB5F7FF06D06208107DD6EBF161413601D09DE8883C1F58F66FA54943275F6F7F669A9A8B48C2AAAAAC9C7CB8BD431912493CAA8A0B88407DFCFDB8712E263C859A1A0DCC2622A2C2E257777374A8E57939BAB0B9DCACDA7829252F2F470A7D4A4047271762E3C9993572A964A7FF5DC938F977F1B0008C4721D16082AC5CD1CD4C9BC3E0D10786F696BA322647B5B7B2785870653942A9CFAB4FD5458A2A1E6D676528585506C4C1419F506CAE53A5047A1C14100434D068381B2F3F2B1AE01DB86F02A30994C94959D4BED9D5D9496144F11212196632773AA4D46D3FB1B2F5EF940464686FE9B04802B96CD2341BF886DCF56B27D304A19773453D3C95482CAB6339BCD5453D740E06E3298CC1415114621C101545BD74845C86283D140D1919114151E464D0028BFA898BABA7B28265245315151D4DCD24C39F985D4D3AB25757424C5C54603AC3642C6F3F3494F4E244F4F4FCA3A95439AF20A6C1349498971545D5D6BA8ACAE6D5A949674BFC0A87B7BCF9E3DB60B11002996CBB06C1B79974EFE827D8CCF6709FAA4ECD7E975545E594D159535A4747626952A8C944A672A2BABA432D08C5C2E47B054E4EFE7CBA9A8003483334690A32938C09F53511E2809CD1B25A8635009C1548A00E74094DDDD5C39F5088402CA44E01B9B5B404F715CBCF35161A772F22918BAB1283D853A511D390545267594EA5FE121C1BFB963F7AEFCAF1B00C14886B3A0678C64FEB42FBBDD3E8B953C735D4F6F2F8257C583120041558587F22CD79456525D6323F9F978F3C0CBE58E54AC29E759EBEEE64671703D4E0A39E8A814825B495E9EEE148FC0BB00345615A5E5950021901211E89EDE3E4E3D0383439C7A02FCFD293BB780F28B35BCC2D29213A8BEB1894E9CCA256F2F0F5E258CE2F20A8B00A6BAC57F81EF4B556555EFBCFACABE935F2900CFBD7CE092ED5B373F2997C962E6BA93B964BFD566A5165C603932197D0185860473E7D2DA761A01AE84B5ECE5C18B8A0827BDDEC805B8A1A1898282FC396518B08E09300B5A18385F0D9A61FCCE74A0B1A905BA1089CA5071DA3A9957C0DD515A623C392B9574323B8FCAABAB293E261A8E2916405551664E2EAF225625B5F54D948FC087435FE2E0B24A4A2BA8AABA8E89BC3D3222EC684E5E918674F4F8A143CF377DE900FCEC9E07F78A44C25B37AC5F5BF983352B978D0EC9660760EAEC3781D3EB1A1AA912172496889835240F5737AAAEABE3B482AF5304049335546DA74FE3E2CBA957ABA54854450416061A7338DA817E8A067D305166A031E7333838C82B202C28904A50252C7B3D3C3C283531813BB0CCEC1CAE0549096A68888A0A615BB3414FE1A141948CEF545454633F451409EA4B8889415595F3CA64FB8C03A065F8391FB10F6155A58E355454D716EBF443FF498E0C7D147A61F97200B8F7C1BD4281708F5028245441E90DDBB6DA22C3C3E266A69FE91B2926AC83BA210A0D0A2676A4CAAA1A00D2002A7142804360313D21C0F5A4C1C5322E8F0C0F0705F950556D0D15030CB1584CB1A8007F7F3FBE6D21AA40E2E080A62B06C2EA8E8EB8986B41084060FD402F9AB42C64B7563B0020E2514101840C464595F2EA4A888BE120339D888E8CA024D0150B3C137B35DC5532C062C9C2DCD4025F3F4A4D8EA7D39DDDF87E01B9C3DE26639F4343BABEF2CA9A3AB8AF5FECFBE36FDFFD4201B8FDDE87F622F81C80E14560F7F5F6C9BCE9FAAD612E4AA5EFCCFC3F3DF737B5B4C09B1720681EDC224A11C48AAA2A74B775B83057E84038E77CC6F7953535E4E9EECEB3D6093EBFA4AC8CF3BB379C0C7338229C17A39EFAC6665E116A6843536B0BF7FEAC636681F706B027F199897C1CA827262A825BD93C544E944AC52D6AB1A68CF2A01DB1D09BB4E424244613043B9BEBCDE2B4141A181AE23AE28073651A211008B9DBD2C33CB0EDBDBDBD58A55559EDB603762BFDFDD7BFB8A7E6BC01B8F3FE3D7BE11C3800EC4225422BD9855206860E175A78F50F2F4D9548240E67D0CF2C223C6C4FD194592C3C40397985D4C0041859CDAAC0A0D7731D6074C19C09AB0293D9C4FB0116941064B11A7693D1505EA186BA7B7A78B6468485225B6B281741717474A414045EE124E79C5F57DF080E8FA5487C67B851D370409310B812E84B162C6A7444042D494FA5A6F6363A76E214F621A3A58BD288F1E2F193D95C6316A5A6909393130F7C4757272A468D730C1C4FBC33132DD366B5EE179A456F3CF6D8FDDDE706C0837BF68A04E315708DEA433ADA18495DF6C8E18A20EA5D989A3474C9FAB501D3F2FF74CDD6C8708DD94FB20BA8B3AB0BD450CEB93C1C8162E27ABAA3838ACB2AA81B3E9FB9235619CDADAD3C8016AB054E289AFC16F89206EEA8B0A4049DAE07A71101EC6916AC259B0D25838A82B1AFDCC242504B39C532AA01B570F1852565802E5D94CE81FCF458160FE6F2C5E9A440B51DCB3A495D3DBD3CF07E3E5EBCD25812C483F258B5F16BB6CFDCD7E0DD6CB3DADEC3AFF7F749E99D97F6EC31CC1980BB1ED80B11160100010FF88F63DEA6CCFA407ADD7F807CBA0229C29CC0D75BCDE6A1CB2F59274E888F97DAC6460FD30DD7A63E513DBAD98EEE2EF202DDD422639987375BACB8D0306E1B5997CB684281EC668337171725A711464701FE0B208C3100D340A7C0D73D3D7D68AED4DCD632BBC92A2A26329C5B5246434C90593FB174611A0D825AFE7BF438E9A04DCB172F261F1F4F3A9E798A535A7A4A122A2B988B2FDB07A3A77835A33DD1BCBBFA91EAD75AEDF64364B31EF8F3138F7F669F14F0310046DC8E9051102CDC2F78B663D542970FA953E74ACFC75413F50B6863E74F685C1FB0D86DFAAD9B3739787A788A660CFA34A365B68E8D10CAA0072ECE4A7285D031F7C182E60DBD60D652808B6716B4A6BE012E2A98F703DDC852268C3A6CCB6881CD8BB2613FCB2AAB78870CD74295B5B594793287BCA0074B17A6A2E3B6D127C78E533BAA64D99285B0C281E88EF378A053404D4C5F34A83E96F561704AA9898924953ACC29E82C8EE353806935B1C9CDCDF5F5C71EBAFF9E330060C1CFC8C810D6D6D64A97AFBBF861994C7E37C3E5D8F1E3BC270B0970A79A75C56433DA6893F6661E7807B18DC464248B5089835A6DEE2E4AE3A68D57C8C422B160E6EC987E120A31A32258CE219D0E5510810CD571EA6941C0E0C76143872D684E41213F79E6E95D5C5C383F57C1E7338E8F47E06BEB1AE80432DE15BF5B0231158B45F4D9F12CAA07952C4C4B0225457197C3F6130B4A4B4F4DA0EA9A7AD0532EF9827698003B83F76DF36C3067EA87585FC2340B4ECA78EDE64DB2330078F8E18785870F1F96592C16B7656B2EDEAB7471D9C10078FB9FFF1A2B15377725A956420C95A91C0057A99632825FA79734579248194062A19865B2393632DCB66CC912E9EC273ABC6EBA496963732B5C4D1E323198BB26D680310723934AF9D841818E381B625E837E82F5078CA379670BD7A290CB3987CBE5323A9E750A6EAB86BB164647C525659CE783E1ED972F5E0440DBE8F3CC2C923BCA691974C00B4E6BA631F9A8A13863EE659F1E08F64257CD6DB204965A6F309C0D405A5A1AACB58333021898BE74E5439E3E3E573300DE7CEB6DFE25B144424EC8A694041FEC2885A011E4223A4D37AB0FD2EF4F5C42AFC6BD432B5B375294433C0747373860B868D912517070B064F6EC9F39AB18C7BFF7D1C7249339F020B34C621E9EB91CE6E3D9FD812638AAAC53CC2E4AC0E1C9E406ADC8841362FE9E4D4E5313E279AFF1D9892CF27077A315087CFFE0007DF2F971B24073562C59C4DDD7FCEF57CC5CDD6EB0D78CE6E43247C6327C010086EB366F729C38F311A4A6A68AA552A99BD1680C4D59BCEC416FDF05572035E9F0FB4748E9E60C073188D2D143BC24A490AE8537772347E120A5290ED3F1F6C5F4F4927D9456BD962E966C1ED3061CCB6EC6C1D6AD5D2555289C84A3193397EC9F7C8156AB95BF1F8783A9ACAC41E0C3411D91D4DCD6CE2D27EC39A5252591371C51369C4F013A5E56EE69F0EEEDA73BE074323970CBC1FB08037D0C01EEECEEE68167D5333CCD3DF31C263D953121FB27DDD59B22FB996E04015057A5722CF06300180D866D9BAF723CA30256AF5E2DEEEBEB7382BFF70700F778FBF8DD201409A919CD5350D00970B304071590D12C2207D10F6868C04025F0E83DB0716C9AF8C1EAFD94D8B69436388E0320A72E32897DC96C3259E53207D3F2A54B591A9C03A78E6795D16842C65AB8453D9695CD6D6972523C773785702D390505DC05B1A669605047473333F95C89797B2538FDB31399BC7216A24A9870B349E97C346A36672740CC7C6106BC3CDC47925070D662301AF5DB32AE924F1661E1AA55AB1C1050A544A1F049494EFFB1EF82053B240E5225F346ED1D9F93D4B107D463274787F534D86FA277DE7D7F4C1FD4099114911C48519EF12307B6D395AE8FD23B2DD007F754DED00D0E0C98D078D963A2A2A5F319594F55FEA8549C530732DE934AE060981BF2809565169265E731707A07405A949A4C7EBEDE74024E88CD8A9833625581449BF178F37D5283C5D005D9CE9C1813FC33834E23EFC380188D06FDB62D579F058060EFDEBD8293274F4A9A9B9BE5E82A5D5D3C3CC2E313536FF7F0F4DA00CE17194D3DA4A9C84797BA94F4E0CFC30C00EC50265740D064E82A63410D0836B24068D3D156DFFFA543956BE995B0428AE949A1154EEB39383D3D5D860475ACD8DDDD533C6BD0A728EFB1DB9C5858B7CC2CA4A7BB07C4D9814F389910A780F3596397035BCA06748C8E16C1D9E0C2E85C1DDA74DB316D62C22D73904E99F1ACCA467F1672008C3A00A098B2116395003D1099CD6607B4DF0A50B8872A2A7651943AFE6EA58B523D4A2FCD2DADF0D359141A26A2407F1DDC8609D6514489D1B70EEFC7662035BD42950371F427157444EB4EB74A1F18A32704CFDEDFDF67484E4C92819B057312B7596E73B27B04060836BB8FC08678D9B9F9B0943EB418FEDF15A23CD576E31A34FFE3B1EB708331616E6CCAC04F08FAC4CFA0D1A1ED5BAF769AB6131E69C8046AB55A0C10985D524204BDD2162DCB0855A976CA64320F4629D5B5792453E441906D68DD1D712144A971B732AAA1436FFF9B5BAE8529B17424E92D72D6BBD16E970739154D6CE2F43A9DC56EB358A26362645307C73EA9B199DD89B0475778633532903B17AD99891A59B89C6073919F93787E9C6A84677C3E1B801F5D9BE13CDA114F7B4B72B4390325B1C19BA3C96402E02E814B56ACDAEDE7EFBF5124124B2C56139557BF470AA72E889E849624DF42FD00E04F7FF9EBD87E42558114BF368C5604AF1D0BBCBB5D43527D21B53B6E2599A3827ABABB4C4A70A8AFAFAF836D1E4F4ECCB56AA6732FF3CD7E096C2E0B3EB3E1B365FA740B03E086EB325CF84809AF19EF098F56C3282D411B9C0084874A159D94BA78F1FFB87B78A4B080F6F6D7A2D3ACA52D1B2FE5003CF5F4B37C7B214E54EEEC42EBD744D1B28597D1E884D5D5944DA9B297E9AD8EFB28DB2B97D68B36925C2AA7B69616FD027F7F0794B568EAE0CCE59EF339F8F759B6637331D600B27B1367055E3845A0697A1D800B1A7AF9B9673D3FFDF45313626F9BD35311A37322D0920814E488402A71625E4B56ACBC2C561D779B5CE1E43B4C2F02EAEF1FA03F3FF7226FDC92128DE4E1A6279345440B3C2F81E74EE720380E7E4E8B9D5E0300F7D21DE137D196969D74CD829BF8F6168BD9D6D6D6660C0A0A96B1E3CEF5012EDB84EE74EAEC9F5FD58CCE7750E9BC87984C3542817012F5CCBE08470078F2F147033D3C3C060082755E8FA5B080C0AE8AA0E412E8821C8BAB5C2EF75FFB830D3B42C223321C2412991D07F9F0C8118A8C3E857293400BACD4D7EF487E5E97923A3A953EF8F0BFE428939197B09C7CE22EA63B826FA02DF537D3B6E09D676844BF566BEED36AADA025D9B93C7171BE55335AC1C273A099B3A9691CA4DEDEDE4FFEEFD93F6F059368351A8D79DE0F664DA62574D0CE688EDC43C2C3D5AB56AFBBDDD7CF6F19E3C85E2DB3ADAFC1A60D00750905FA6EA0B898747AE16FFBD1A916F37D45448492C30F07C8DF1A48D7C7EF1C0BBE427F92B4166F927B44514B4BB31155207476564AE692FDF6793CF63855E0AD23992F388FC04FF57DDDD0507B4951C13399C73F7F1B09DC724E15309548E7E7E78B21CE32464BA808EF25CB56AC4E5FB4E4672EAE2E412CA34BCA0AA8B9FD0805F95FC947BE2FBCBC9FF20B8AC6F6939898403FBF6507BFEDC735027D845BD73EB2F616D280FA19D25BF4E42A71B35757571A1CE54E5291582C3C77EE9FBE6A58576D3159F87DEB79D18C70E6C05B4C667D4579E9BB9F1CF9F0557CAEC535B6414BB5F3D280F9D0129BA842ACFCAED874D576B53A6E9B542653F059B9C5CA3DF30B7F3BC01F0171843847A8C4F0EA469222E85B37FD6EAC02644D4F120D965173DC2374EB6006DDA7FB2DAD0A5E477ABDDE5A555D6D72767175B49F572375E69C496F30F0A1DC8CC23AA76C1F078AB99CA68686ECA31F7FBC5FABED29C5BA56C4A1DBD9D97910C137CFC9059D0B2DA17993421758A3E1E1E3E31379F99557ED0E09095D8DCCC64B44FFF9E0236AEBC9A590402D3A533399CD426A3FADA09DD73F313C49D541B4DBFE4BBDF51F9078E59DB443B29176D5DE473726DECA03C3EE4C75749E36373535DB64A88819B37F9631023B160BFEC835CC996A66FB5E7777677DEEC9CC7FD4D5D46461D74D1289A403D7D6DFD7D76704EF5B869F6598A50FF8A26809AB7C9253172E5DB36EDD4FBDBCBC548C962A6BCAA8BEE965943BE35C08539F8C6EB961188007F63CC26EF090422EA3F5D7AEA0873D7F4E379DBE837E927CDBF8A4D5D0420279205557551B7AB45A149C443C9F3FF860B742FB0706716CCB483067A79AB980A3D7E9B5C50579870BF2B2DFC7E70684A40D09D98BEBD661311F3C78D036ED2DC92FF469AF09B404B557A0CCDD1038DFAB323236A72F5C748342E1E4C202F9F989D7A8BE358F24223BDD78EDD33CB8F7DCFF4BAA6F6CE4FB61627EC5B5AB2936219256C58C377292AA07A8B5DB4A0117FD8151883DBFA0C0A0379AD930463855F68FCE8FD8530EDDBDBD64329ACE4350CF06C96AB39A6B2A2B8E9F3CFEF99B389F6AC4B419EBBB743ADD206CBB313737D73A31EBBF7400A6A2259C88335679A03242B76DFFD1AEE8D8D88B91BA629DCE406F1E7E8F7E72FD561EDCBBEF7F88EA1B1A7956CA9D9514132BA294B88B68CB953FA2D107052CC577D0406F3B49D7BC40BF6F7E986E73BF9B5C451ED69CDC7C93C56E779CFCB0B0D962A19E9E5EFE48244D12CEE91AA839EA80BDA5B9B13CE7C489377B7BBB99B368C4F1DA717CEDE0E0A03E3939D93255D67F25004C474B58E582CCF68E8B4B4CDBB869D3EEC0A080B889F3A1BBEE7D88BAFB0729345C4CC10183B0B166508698EEDCF5EAD8777A4FEC22FD600F09563F491777A7D28DBDB7D32FD31FE3BF6B686834156B4A0992CAC71A2CF0ECC90B14C48C593C5FCBA9D5F67514649F3ADCD4509789ACAFC7B15B70BC6EBC0F41684DCC62DAE710DCAFECAF24476969606080CD965813E786557E576DDE7CD9EA356B6F727171F56459F7DE914FA9AAEE1085046921D02270B5948674627AF0CEFDBC51ABA8AC826B329326F3EF14B1F13ACAD0AFA1EB5B7F4ABFBEE8775CA04733F7E34F3ED31FF9EC9844ECE020FEA2A886CF720C065D4569C9514D51C187B88E5AC4AF0985DC819FFB91F586C9227BC10030132DE13D64C7CDBB6E4C494DBD1C8D9D031BF2BDFAE653A08E325088800686A4B4E77F5EE619FEF45F9FA777DFFF88CCF0ED3FCC584F45F19F92CA124D8FADFDC370858886E74D9AD232F381836F4BCEC7CD4C5C7022D686FA9A22B89B7761B52B90400DCC5A22F8BDA8685D4040806936BAF9DA01988A969C9C9C1CF1D10517E21D151B1BBF7DDBB65B232254694C801B9A5AA00FBFA3861621EDFBFDB3C3003CBB8FDE7873FC698DE8A8487AF4D17B49151479C6280334643EF0C65B530230277EA761AD602075B4B73516E6657FD0D3D555887DD7816A98C8762289066613D90B12800940B05BA1C2515A62230D5CA0DFC68D1BD75CB1F1CA1DB06E0B5830D903B48B529279609F62001CFA27A1232685D28D12122C249749E897773F4FEE6E5E6333FA628DC6BCFF8DF10A983EDB69DACA181C1CD09614E41F6D6D6A607EBE96653D1626B27D680A757311D90B1A8089B4C46E000100292AC209E7E48576DD7FE7AE5DDB56ACB8E82A34768EA399FDC453CFD0C7274E913AD64C010B06D0C10AD04F08E8868C7D14A58A1AED42A9B844637E0515702ECD95D96436D55495175496161FC5B9305BC9B3DE6C3633911D74777737426459E0CFFB6FCA2EA8FF9632999640433EC16161D1B7ECBC65676252C252B14824608F22FEF5853D2476282214016921D256AB906EDEF6178A8E1CFFA31E0EC0EB6F4AE613784623CD8DF5B565C505470D7A7D05CB7AD6502146EDF8598B97A1BABADA7CAE7473410330152D21EB1400C11D65EFBB61C386E5DBB66FDF11101018C22AA1ACAA945E79ED5152287A100D01DD78CD330020F60C005E7E6D220034A30EF4767575956B0A33C1F31A6C5E33C2F5E7642DBFD1004CA625575757293A4AE696605385FEBB77EFDE7CE9A5976528954A6706C4BFDF3B402FBEF6013DF9F023FC49B98900FCEDB54392D99C8F41AFD357969514B4363614607F8CE7D93FFD6800F06C7EA33D176BF98D0760322D6567674B90818E080AA7253F3FBF883BEFBAEBA6654B97AE944824228BD5CAC7C85289E40C005EFAC7C16945D86AB15A9AEAAB6B6A2BCB7390E5F55878D6636905083D0E0E0E43E76A2DBF35004CAC86C9B484757ECB972F4FBFEDB6DB76A854AAC8C9DB1531005E7D630A1126FBE9B6D6F6AAB2927C834EC7E6F32CE3D9D2383AB584BD349C8FB5FC560130132D21605E00C47FC78E1D976DD9B2E55A37BCC62A40536A7AF1C0EB0E13833FA0D5F657579468B43DDD958C66B0AE868D11584365341A7B669A5A7EE701988E96F0D1154D9C0F1BF2DD77DF7DD7A352D6813E24E8030C2F1C789DDDD82793D1686AACADAC6E6F6E2A67A3031A1E21D48EFCDC896DFB515DC6AF2AEBBFD1004C454BF0E7ECC1624E4B0909098977DD75D74F846271F0B32FEE979F6E6EAA6FA8A9A8189952324BC9B89E653D9FD57B7878E8BFEAACFFC603301D2DC1B12891FD9C9656AE5A75514E6EBE4C37D8CF9AA5215C670BBE5ECF66F500A013943300D04C2CEBBF8886EA3B09C0645AEAECEC9460912B140A17F68000EBA8F16BF624B20E41EF40A7CDA6967D6C568F868A59CBAF25EBBF75004CAC063669C53BF3A36CE4ED34F2B319CE89FD1F39DD97D5507DE701980A08D09178686848888AB0994C26CBD721B2DF390026033161D50515F8D1D7FF034558AFEE92BF05B50000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (157,1,'UPS_(128)',decode('89504E470D0A1A0A0000000D49484452000000630000008008060000001FEBD7B90000000473424954080808087C086488000000097048597300000AAB00000AAB017DAA48330000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000025D94944415478DAED7D09B41C559DF7FFD6D2D5DD6F4FF2923C1292978D1042102428F2CD9820A83832E800239FF37D306E30EA0CE7A830701C57CE1198610ECCC8721C18461D195194414045104C9C0F0505224109D9F35EF6E5E5EDAFF7AEBADFFFDEDA6E6DDD55D52F8B1EEBA5D2D555D5D5B7FFBFFBFFFD97BB114A29FC713B3936E98F22F823187FDC4236E50FED072D5BB64CD375756E3E9F994372ED5D2A485D20934E42E52E90481750E8A212E9300C20400DCA37C3E46A831AFC948157D87B7E9E1A1583C284A1D727C080099DD427281E5330F0D518A395C903FBF6ED1B634F69B5ECE4F7D1661042A4B75CF0AEB55A9BB69648F25B884167E2CFE844F1755142BAF19C06A6ACF114E592E5720DD94D79479C177723789E03C62E18FA1405328ADFB8176F1CC02B8300F541BD5219948CE2A6818181437F50609CFBB6352B3ABBBA2F52156D0DD6F0B72B4A66B62D4803ABB9A1EBC0C58EFFEC2ADA4890D30508568CC605A7062A9C7E008F06F1FE013CB15BAF4D8EEEDEBEF9AEDF1B30CE3CF38219B3E7CFB958CD686B24495EABA899157679D9AED7EB08820E3AE55207BC87D5D244820C15BC110588C141E7F2A2048C1472A37A750F96794222526EE71B2F2D3D696D06A39E3517BD774D5B47C71A4956D62C3D73F95B2549C9D902D275036AB5AA450FA6F065052D8220302624E779FC2EF10BECDAE73BEFBFDF39A076C5E6B684BDC522F2F3EC2FEA39211050A35EDB46A92ECB6A6EA92CA3E6EAB55D279D017FEB9F5E7C5AEFAC5917299AB6E6F2AB3EBC46C96873C51A59AB56A08E1AC07F3C3A7EAAAA0215E9C7AA9D41414600629D6C0688A9013AAF040C00197743F83EF766DA889EAA28F4AD78D42329DAF293CE9B3AEBAC3FEDE95BD877517B5B7E8DA4A86B962E5B7E26AB6FB6F075E4FD72B1E8FC68056BBE96CD79856FD0E635DBADD8D180F864C928CFA89B768748125E57804A2E6D853E275C0FC669BD32886A7B2A82B0EAA4716D19F5BCFD1D7FF6271DDDDD6B90F3D7AC387BE5DB5435939724E208B7582A40BD5A33EF47EAC9E6F3FC577B38BD89204335813401C4428C691FE536073580699EA099F19FC314A176089D882344564E93D4DC9B4E8A38E39CF3D72CEB9D3DFB1D8A925DFBBE0F7CF8ED192D7B8A841E07410098E7C10CEF64B1604A137F1DABF9D98E9CD760DA3FB981109813930610F61DD54A99DB024641194DF3785391CFB1CAE32F0BD52B03F8AC32A3220473EE090DFA169D734EF7FC19F32FD4F26D6B9056D62EE85FBE4AC66A660ADFBCA73035891454E780A06640476727AF8986E1E5FE46C20CAB931C90904B6182AC964AA01B3A3FAF66B21ED797DF4F9A3C473881BC8A75AAB20D11CC494A7611914F5004CEA8E7BCB7BDE3FC7CFB8CB5B2AAAC59BEF0ACFF25CB725BAD568132FEE0A989715EE272718AD75C464939A41E15F99F81512997A13835E1D46C4E070E2581152BD81E922969C7E5B404282B0A0715630D7E4C434063A7AA4841D54A85BF57B52CA8A809A2BB1A903309E22E3EDAA07AC9A85576E8069D8D9AB0E284A44356AD5EBD24DF31FFC2A9F1A12BCF3A6FED9BA994E92D94A68094D1C7611C2E314F276328B25C41953550D0B467666F9D1085091DF163A6D03A24DC99615048C44C49309BCC1C77BEA398081E11D42E8220832423973337165F25CBAB612E2E1372B13889C7354E39B66D61A09591069947A4A00D4047015F33AE2AA5716FF5FA70B55ADE8FC5EC27526695748C327A0DC158B2E2AC07D54CDBF26CAEA7BB529C443F39AB62F1CA956A6508A5984314F212773D08546BBA84C2CBA9AA8C3C9C85BACE6A60CD0A96DCDA6D588199E104618675DEE66DC339369C60CBA5138E266282DFCB40AF2366353CAE2358B45EADC860D4B4DEBEF9593308343F57A996A154984437B9666A9FE595B1485DD3725C6BC200D16BD57DD56A699C5265194899B3C8094D144AF94BEA5499572C5739C733CA61B5931D037B6F196676CE4C0B10389605B6690A749030F696ACF23B92C40A83543901651D354AA206C607A38AA24C298A54956505EDAB96C7BAD38DC162D606AA5428C0E4D8B0A559E639459177D631CA34405D4688361F8E350A71698AD744CB9D24B65F492CA1F357F31CBF871CA752372A2FFBC38A82BC8E80C1CCAA5E9F0915DF4D46BD2E131846559E9015A98C41272844CED6D0C72E158ADD956A7D4926DB362D1810811EDD93522B06DC410308884058200071403BC14840F3888069BCA22050737403E6D4AAEC3E9DEF46AD3C064AA61B6A95D6840D1E132516CCFCFA88FB136806096886434DC4A993D34245AD7CDA2CAFB9A749829A9F21F184EDFD2FD6B588DB5BD30C9B921C2048F4971C57D51028332918C4AE68F69E56D8E107CE11490386DF5E38DFED0041ACC2BB5475A2598A387F3431207685329D12D250A0F1AEB96FC46BC4206935C3D50ADB603B9A2182E01C4F73FB084D78AB63C848E3AC6A2818127F80ED25A615B6DFA108A4F153DB0C4F6D7355D9B112E21790E328F9889A6D972995DDB06DA12409026B2C6C8FB849983F4182D7A4346010512B441040F09E88603F48CB026D0D4BEA561D4213DB0E62098AD18808466261FBF5C9774D821668CAD18A800678358334ADF774BA9521A8C5B65650D2DCC58DF0453D063C85B0A3AE39A9AF7406DC356AA2BBE45281AB19C4934615E22BBD0E7ABD6CB5518825A25C6066AF18CA35979A295130AC57426922AC0CF06A7262AA22AE4648224D25147648A0E1B946D26986D75F75A26C225813E2F5AAA80F766AD430E02D212856DBB14F8B6422945969960A71DF7476CF80A19122144BE5A07D73DC53EA302D8D4B53BC4C82CD881068D36BE0A5756F009E220227E0736B45E222AEC174692ADC883321BEF2AB5F341506CF7FC92C432B83222B4070E7995B49E6E7792704764DCDC07B2F7D373CF1E3E79B3A1D4EE011433B24A75211A782A511369006F59FA4F5A6FCC65B34E802977A02241AACD2715982F77FC2BD5EAB411F0AFC829C0AD5BA0E3F2B8EC1B0AE7B05274B411B2450939DA84F62C489CF6634137634480D52A62465D027A4077D5A22B88FAEF30CB60568C548B3A7CD5755B8A6B387EF6CBB7D4482872646A12A0A340AE440141D59AAD08A4EAD44A34D25A984DDC0E2B31723C2B59562598C805634D08C1014FC3541C6135F9A390766CADEF6CA0EA4A17F997D0AAC9BBFC401826D37F5F4C20FE72D820F7674FB54CE575E0A5ECFCF558D58D90131A095AC9DF87729E27C936BE2F3A496682A542B5C103CE9F4C033DC0E06DD28FC77E5DBE10328D4B3B51CECAFD7A086D5FB307A5C4F1726E1BC6C0E2E6DEB0C3C8281B70469EBCBB3E6C24BE512ECAC55AC8E0BD18942B0A84AAC47B1F48309548A008F84C6E311F92612EB5A229A22D169324F60481A24C0ECFB1FEBEB87054841F6F6A3A909388440D85B1DA5F50DA4230D6FCFA0D26AF8C036A48B2ED4986E7CED4430FBF1F30C0CB3A70685282E70292A811167B596E32105C048266CC1A69028A9A6F0A6042BE83D140223D2100DF7DC57460EC327BA67C239A8156C7B336AC2281AE6114387ADD50AE4B146F6A0D0996D285103C60D0AC5BA019368D40BB8D784FE4C54ECD2134869D889426FF1E37853547402520A1B80344C9593D48D4B24CC94438866441480BAFCB0AE3805CF970AF03EA4A27FECED438153C8A1F06758B7E6F1F8FDED5D0D8BF33787F7B9D688068D240F2405AA729D8C1801A0643E53CC4D250702225D7CC72E492D250AC3DD47AFA174136D0D62235EBB1F9D1A87D7AA6518AC55F9FBB479281AD197CA6D7B71BDD038895C3BB5462C9A4A2BEC068E56436722114D0512B31EFA22119E77784A637B35D8B4B907E38BEBB0E62BF82C159FA3E26BCEB21BEDB8B711591066D09B72227CC7D1086A472333CE2C06EB2CC41C0649220D059AE41A89130C26A5296F141812A1B7D8B8C48CFB1DB3FAA062D98C32DA8C49B42763B84FA0CDA850C3F90AC3EE7213083188279FE6361793A65E15773BA93F859E5CD8D1D72CC853057D21094BD180FB2372324DED14CC8BD2589F49E4F0B9BE223E811E98F3C808F71320C28837F1AAF827AC963E42486A6137688332BFA5159BD1288C0F6B748AE7C8B5DA746104854AC1136839F42AB8B70DED06719B6B0921E985DD20A4200DF2214AD328C3FF83448AF2A5D749A456C483C3B619E26F2042BB89C67B81BAC9471A5A75046DF01B7080C676C3BA245934451AA840AC66567F48263441A46C5C0AA3290281EE200DA23E1AB35DDCB619519B8E087CF2C87EC1B5A511C9BE0803DE24DE10EF77521629841D9D9AB2FE9752A64348832834D03E1E720F9DC6D63CD9C3E361AE2D750D759876348937988C0C7F044EC205DAB00936F236E2786DA935C35FA388CF9FF7A4D823F3BECD371D396800A98A45E2A61167BB145A7483D2D0FC90DB65C8A71D7134436857F1D7DE24C28EBC46A061B018AFAB8EDF89252422BD0ED04A1791C3461DFE7DFC28776D599E8A0DADAC53EA8CEB564018F21BE2DADA238BC05737E26A06F1372E251576B4E23860881D0093B7671088F40EC2628F565C5B1657DCD6C066B0EDAA037B9CDC54B3B60CF06806C4B219C46AB86A45D8D19E9AAD7929DA33C2D2500197DB973C0C37E0F134E3779512DC327C187660743E85419E2E089C69C837C647E0B56AC94D79F900A12109657F1A82881D28C2F221C46DCF086BAF20D3D2CE9192A6482320A2F4C157697B7B67C3657F7105140A93502E9BC3CDCA9532BE16A154C2F7E522544AF8BE5CE62D7ADF991CE369109612C9207F6788995E3F50AFF9288904F255628704BF661091BA43030E4B334203AA06962F69CB1F69C1B5F5F69322425C4102B92BFFD6D6DE01ABCF5D05194D05990DEF95CD2161515AC4DAC06BB53A54ABB8A331AF56D95EB5F61A542A55A8E3F58ECEB648AA22BEA42111ED41032E6120186189BC34CDAC019993E968CF084F9D135F61A20A54AEE8B0EEFFBD6A0D1D73879059C3C1CC6E3112B823A3580F10DE4B840147CCF1D91C44898D28E260AAD91CEC1AD80F6C6C5154A01AF0A87C863CCC88BBD95AD292B0935D4B942824E11C1C128724F1A5CC99700CA88A13AC18D1E3F9627544235EF7D5E351F90C79B40B4F22DA325A11B6AF32B444534D0342E2CD969EC04D745F09888379C4AC6B789B82A7AB6A0BC28ECCCF11570353B9B624C233015FF22D995E1C533440ECF4E8ED9C4D3C59023F55D91E61D0F56CDE04DBB099D5E7EDA4EF1D12517D4813D9D313A8195EBBE1A52DF0698BFFE786F70C4926EC80BE04C6574E0B4D91C429F6F839F1690283F83D2A1F2D116F26D8336B51048525157620D14EE2A58712B9B624BA8D2590623F215A41A9E0BE12A11FB02F56884CA7134FF09A56D8910E5013364F9042279135A395B17CA7CEEF83B3569E0ECB962C82EEAE0ED8B27D176CDDB60B5EFACD6B186F249B1093527F60E7D67631D82311A90BE21F5CD9F07737107648744CA6C5B56D1204C6082C4369485114F8DF575E0AEF7FEFBB60FBF66DF0FAEBAFC3AEED6370C61967C09F5F72211C1D1983AFDC712F0CECDE97AC5C1ECDF06673BD9A11E4553BFEF018D814C26E78AD816B2BC59279A8AD489FA3551188DBBE74239C8F91F9273EF17178FCF1C7A1ADAD0D56AD5A85C06C874F7FFAD3F0EA8697E1FEBB6F83B7AE7E53C27A12A205BE3488D7CD249E08DC33BE43F2F6950DCB5335BA16D95F37759C11731C5B12A6BAEA8A4B31F236E0F39FFF3C7CF18B5F84A54BDD892C2FB8E002B8FAEAABE1BEFBEE83BBBFFA55B8F9D31F87ABAFFD0C4C4E1512C43FC44355E208136FAC11927F222143E5226D2869625FC3F94D863459DB44B415CF782F987F0A5CF66717C11D77DC01B7DE7AAB0384FED4D350F9F2ADA6E6A82A7CEA539F82F1F171D8BB67375CF7E10FC676C95C2084F115215A10D61ACD62316FCD961AD6FA34595D73408ED41A188D5BC8E253D65B569F0DEBD7AF87F3CE3B0F4E3DF5547EAEF6DDEF032D9600CA65A8FFF029A0D6D0B01B6FBC111E78E001B8F0ED6F4B64CAC26828D2A30A69C26C55D84D53E8526ACD20CD5DB50401F8E2FE5361D3A64D1C0CDE4EF1ED4740FFE973406B667A9CEED90BD59B3FC78FBBBBBB79B6B6BD2D0FBDB366C40A5588D80A49BCF14398471565C05B6FCB901A5C8369A6A9A62990F0286EE18279B063C70E38EDB4D34CAD78E659C8DC7C0390AC396D94FAC9EBC01818047A74D8A4B5050BE0C08103B064D1C2D881A3D82D27E851F96C8977B0A239B35CAC5A2FA51E3C03D39928244D0D7C3424A36313306BD62C3872E4082C5AB408084B83E32E9DFD2620A7F4016563F7D888266B0CDFD0D010F4F4F4C0F0C8684C3A8DD08210734C427C462AA4DF1BC47CD0AC9935B2D5B341059EB6D9F6E27A53BB06F6C0F2E5CBE18D37DE303D8BCBDF07B507BF09A43D0FD259ABA0FEAD6F8374C60A207366F3EB9393939045AD491A6F34D48208F796D77688392CAC61AD27A173ADF3E600237AC4E9715CCCC42CC0568CB02FBCF04278ECB1C7F8D4DACA7BDE0DD2B2A550FED827A17CE55F013D7808D4BFBD8EDFCBE20FE6EA6EDD3EC0EF8DF50D11811D2110D0187F1D9562089BC410B63D13A961CD4EEA3D4F2327B56F198CA441DF8BBFDE009385325C7CF1C570CF3DF7006435503FFE31C8FEF77720F7C84390F9DCCD20CD33EDCA934F3E091FFAD087E0DE07FE33816B1B52F323698A047A04DAA04509DB88296C77D501F09CE34018A90D384D0F4DC8475961EEB9FF5B70C5155782A66970FDF5D7C3D6AD5B81B2A1BEED6D3CB678F8E187E1F6DB6F875B6EB9057EF4F47AD8B4797B8A0AE24FF547D1947B5EE782859685EDCC546AD8E7BC6B79E8119A71425609D8B7FF207CE12B77C267FEEE63F027870EC0238F3C023B77EEE4D798B1666EEFBFFDDBFDF0FDC79F82FFF8D6F712D92D6FAADCDF8B2F8AA6CCECAD3D4ED0F08D370F1DF013E8784D23CE8B8F7156A33979C060DBE6AD3BE0FABFFF32FC9FBF7C1F5CFDD71F8185A79EC23B1F8C8D4FC096AD3BE1A62FDE0E1B5F7B23D5A221819A1FA1BB7E9AE253C8386B712413B629641A0182F78C914633C4071D8B05688A18753FF0CDEFF0C2691915DA91A60E1F39EA4C469CD6AD0BD2549411F70164D18961D096841D357D3B6D42FDA934834E7F031DEFDC26CE9093AA5C06F565F749687636CA88DB33F788424F276C8192C2E8CD68A93D8306BEE464DCC25D569FE843A7D024CE4F0BB89E3485B023907226B837474749AE29311F96DEB53D0931A1FEE8D74F4724B2FDC7EC2962D89E8FA965D468E425F9969B13BC2767C503C11B335F75284E301A06B272E54AD9494D5A05965AA6257A722114705F43CCB6BF9720112BBBD3892EB8B69F57D83420ECF020D0756BC7478FC2C4F8083B4F4AA592367FFE7C556C7B680C06A511C44903FF9F3C8A14147CA4CDF0D91527AE0813B6D15CD84648246EC719955281E7E3582F4ABC2697CBE576F41EB5FEFE7ED92A1F9112099136C7EDC41B8D60722F4E67008BBB89683722854D83C276023B2318181A7A0D8E0C1D0542CD956D74C39050F69D8661640B858272EEB9E74A89BDA9069313B4BC653219E8EAEC804347865A321A044864CDF7B71307A2706A488E01A761F52FEABC7D898656D2C9B1513E448E80CEBFC7A0F53202D186FB54575717491067D068EB4103CE5E420054B8EAF24BE1DC7356C1A285F3790FF389C929D8B26D27FCE087CFC0AF5E7A3519169446B4B3043B328775B130C004831A34BE97146005EA61F65A650A8AE8B6E77259982C98C9CEE1237BBE87BF952F89373232020848B23883D278463CEEA8EF258B16C067FEEE5A281626E07BDFFD36CF4F552A1598397326AC5EBD1A6EF9874FC153CFFC1CEE7BF0213E2623B1C588A42A12180164BF350C90C3B2AA8D841DC51CBC8A1A351ED8B226808CAAC28451877AB5521C3B72F005A4A9AAA22875B41BFA860D1B8C04DE54549C413D51655CBBC19A506FFBF24DF0B3E79E81BBEEBA0B2EBFFC72F8FAD7BF0EDF7DF861B8F58ABF84CECE4EB8EEBAEBE0CC158BE1C6EBAF4D6537020A421A34303968303020224B2BD807031A240EED7368B4CB253ED3680EC130EA6598D7BF8C562BE56FE2F5897ABD5EC4D74A3E9F37EC584349EA024D87DDF8F847FE0AFEE7E73F87FDFBF7C3D7BEF635A0AFFC06E8A38F43E5D58D90EF68872B3E77339C7FFEF9F0852F7C01EEBDF75E4E63AFFCE6B731AD1A899ECD001ACFA86610FC3335243A794121DC93F4CBA35EE2037FB248C5CC0BC8B4B5C1D8F0A1DDA323433FC5AB63485353084875C78E1DBAFD2029964E507FCD0F6A0A8D39FA9E75E53C6D693FCFD4DE70C30D3C39A83FFB33A8DE7D1FE8CFFFD2B96FDEBC7970CD35D77030AEFF9BBF4EE7DC361C7D1A929FA27C4534A76647A7C485C0CE08C61980F4C4506776826905D03ABAB653D5BD833BBE82F4C41AF727108CF2AC59B3EA9652B41081D3F4F9A915CB97C20B2FBC00EF79CF7B389772412C5E04F25BCFE3ED19E2B676ED5AD8B87123F42F98C77B88C4038244C71A0DF2B77CB1BA98C2F60681E03B875C47280291E340D46B65C8E773307AF4D08FF1DA41AC7C23AAAA72ADD8B469932E8A4F8A6BB9C59A4F05446820386CBC2DEA3F15B66CD9022B56B86B0EAA1FFC006877FD1364EFBE0B484787E7FE850B17F2DE214B97F4B71E5A924828DCDC14341176A82D7183434DD6F922914C2B54454220F23072E4D0E1C3870E3C8A5A719469056EE5BEBE3E8F56C4F6A668581A39242A8FA321337ABAE0E8D1A3D0DBDB0BCF3EFB2CFCF6B73E5BC07A85DC79273FBCE4924BF87DAC87C8AC193DC9D221101DF845B9BF76D6D69F42A71146D26F4B5404A2ADAD1D342DC37B45160BE36C15E7FAC0CE2DFF8C1AC102A8B16AB55A6C6B6BAB310F8AFA72F24A2C3AA234667B477338F6EC3DC8BB74B236EE77BEF39DF08E9A0E3A46A7303C6AE696B379204857EA47AEE1F7339B71EDB5D7C2C0EE6FC748A187A042429B9442830DFF82BBE1863B3C1BCB96E3EC6ACF714A626E6CA55C8076D48ADD3BB7BE80F434883BB31593BAAE970F1F3EAC87094B8AEDD28A069CFA0C7B029BB173700FEFF6CFEC06FFF4C828A8EF7E27D4FFFB07507FEC092E519231E7BE4575E6BBA6656170CFFEB821788AB4BB0BA6DDEC1A6DB821344BDBDDA6F2058473390DD82A9ECC1EEEDFB767ECC0BEDDDFC2EB47711F43ED28767777D74DDC6932309ADA0CF0B7ED36D70EE6A29E7DF639B07BF76ED8BC79B379B2AB13B4FBEFE5BB7AD595CEBDACF7C8473FFA5178FE8597F8C2ED497CA9345D4FC5C6254AA30DB77FE2B18E1C815948A7A6F794831A5BBEB438650CEEDC723FDE3F84B66284ADA4E9776553352ED1B068D459A1D8A7454D42F02343C3F0F0F79F80CF7EF6B370D34D37C13FBEEB12E8FBAFEF02B0C953AC5E2C46A50C0F7DE31B7CFA8AF3CE7B0BFCDF6B3F337D795C126D4D5CE31DFFD91A4AB06F762FE4110896DE615371747675C1F6CD9B7E5728143659608C2318A5AEAEAE3A5214A51183DAA5243623A81DC15824CEF6C48F9F4313318976FA4EB8FDD72FC23F0F1D84A77B67C0CB2B96C1434487EB376EE0792A16F4DD79CF83303A361E3B91496241D238B31B1F640A737BBB50F89D5C2B34B4155934DE833BB71576EED8FC1FACEE2110A368CC0B61AE6C22CD884C7C505F4F89849D16982FFEA5DBEE82F7BFF7DDF0D5AFDE0D0303BBF8303216539C7EFAE970D9659741A15481BFBDE14BB06DC740C2B4EDF11BE0D9DB9D83B973E7728D60467B72628CF59AA7DBB66E79042F1F66011E82C05DD9458B16E9FBF6ED8BD48A78344523A270EACF4BC58F35787715E4E3479FF809FCE257AFC02A8CCA4F5FB618162C5A063B760EC2BF7EED3F61C3ABBF8352B972EC259A12BBF6AC0CFDFD0BB84630306AD50AF4A0FBFDFCFA7503632343BF66461B0D364B7B1431000C756513834123F23181C04FD09F24BFEFE0A123B0FFE061F8C94FD70BF38618DE6E31275927088CE560F1823EE8EC68E7402848A9D4A8036A4465D3EB1BFFDDA2A7616480C95AAD56C5A0558F534DA57834457D74447D469C7A17A83A516DE1A9414BB6E0E3FCB93DD0774A9F937BAAA2F764A0B7B7E977AF3D83970F59913637DAB367CFAEF923ED546084A53CC2620D7AB2D45E9A2E5F96649BD9A5C1E9CB97094940037ABABBE1D5DFBC72E8F0C1FDEB51E647D00D8FCC3FA5078386196E2F4D856ACC71ABD13EC780A49B5F3AEE273495C099E8F1B1A42503239BD580F5D7DEB279737DE386971E644030AD402022F34FA96D06853063ED0ADD7575E9C9D18D4A2CE731D0D4D317CD83B973E638DE53A138C5272943AD78D1CAC81E69967F3A263415746F1B4CD015D547F5B8B2576BDFB8606E27AC3C7385434F6C41C6193DDDF0E22F5F18D9B573DBD3CC9545404698D166F9277463F5A45F1A8FA6A897A6BC7623E851FDA1198F8EBC0AABDF7CB6D946E1D01381AD5BB6E92FFEF2F987191071F34FADD3944043C1B60CAF4775A2694A5C5E36769FAF268FEDE96CE3EDF62AA7A70C6FDBCE21202FBCF8CBD76BB5CA20DA0927FFC45CD946F9A796688A8A34E44F2587785427D6A92211D2A52DF90A6CB24AA61179A427158F3B3A3B60DDBA9F4F6D7EFDB52799D116F34FFEA6D4E9D30C1A6637A8AFD7A797AA5E7BE57958BCEC0CE89BBFD0EDBB8A3B9B6993EF351D6AF53ADF75D0A759338C906E5EB441D22D9E6EB07565999D60869B75271A1C18A4FFB3FE5906C4909D7F42200A495DD914E990B0C0CED70023DCC37A5AEB7A9D0FE395657337A7496553A212E7985D67F7F2796B6B753E972D0709DFD7D8628A35B6EB7C6EDB4AB59AB84AFB5D6F9A96A3C09C2A8F69868EE563037AD6AFFBD9AEF1F1F1CD69F24F2D80111ED851BF4117EE21408478C41E9265814989D35EC0BC119699D53409B938E3692B70D3DDEE2C372CC2ADD7752857AA085215016220E2319B8C984D408CC75934B06A468B2DE4B8CAC1E7D255156EB87FFCA39F947FF5E22F7EC034224DFE293D18212D797E8FCAA122DFCAB73606F6696AFF39A05057D811A197BB382370619802C958AB23536795E42A52C7E8E8304C40954F2A46C5C501210E6D35B119125B125B82FDFB0FD2679FFBC93A3C359436FF94CA80DB03385CBB217854915465CAD41D8A450510C240A1DE35FF08B1E6EE10E6F000EFC4BF94061396D4BFDA8DAFCF04F5F98434214FB1C776B4B7C3933F7AF2D0FEBD7B375A40A4CA3F25D60C0B08D6319704023B08A1AA10CDB0AF893465EED6807770E7947527DBB2894ECCDF59EB8A09003BDAE67C5E1266DE8C5002DA38F6A0D098A67EFADCBADABA679F798C6905F3A05880A7691A77655B31DA919A41CC8DAF35EB8CAAF1077662AD0FD30C714CB54853147CC37ADD7BC4DA4FFC6B793B334E506799062A2EF1436960DAD4D8D177CC2EAAA5E2A4F183C71E656D1443ADE69F626986AD0D6CE0067A042A229ECBD84B57850476619A41038BE052DF1F71EE23D49A5C825880388BBB07A73615354C4887B99010D1D8BB65126E0C961B020D3591DBCB2FBFB46DE4F0BE97ADE0AEA5FC535330885BA5A43D7BF664F03587AAC9060DC8611E150D8937A8DF6686688463BCC17CE570786A6770324571B0A218B750E18BCD05A582F3EAD2F8BE54E4569C1C1E1B3EB497F52B3A8A65E3F92768D2FF693A688ACC993347C52FCC3220D0659B8DA764BFB71466C445634D2008800731418B44432E529FBF5B0C885AE66B4F719C6BDF0CFF61BDE569C22EF4865E33460FEEE21A61E59F865ACD3FC5A129B274E95219554FC567E73188E9C202CC64C3AA023641A4200ADECE08342C236109950846DBD20E122913E2657C0F4D899A4185D9D72C4A230186F259741AC85D45D995F1A1BDBBAA95C20E0B8C212BD26E29FFD4100CDB852D97CB044160232F336C1426AAA3569E38F82F92AC2E9664A55792941992A274CA72268F05CAE1715665115646D388A4B986DE9ED25AA425515398D0F82B00F52CC6440520FC3D19A9376E1133028EADB2BC294A3C9AE43D0E61A80871568AE35363437B98561CB5F34F289758FD9FA6CDB565C39A10882ABE4E5143DF6E50E330D5AB6D75D418BC9CC5C265B00CAAF55985ADAFAE64B4198AA2B623366DF95CFE14D6A36E74E890ACA8AAA66A996C06FF65736D0A2162AD0E1A6BB79A8343776EB2527012A8B00096302FA11D41523F4D35ECDB4003B465183A1D3EB8EB352BF7E4E49F5853EA74BAB2013018BA4C3BB2D92C1D1E1EAEE5F3F9129E62BDC60CB41D053CCE3110F095197636A082BD66F0238A39F2892A7AADC276B5529A52511699C2F85195ED16604CDB5459567AB45CAE23A366DBD56C36AF69D91C6295CB2058F89A4520F14C1E952D436CFAF27B72E0EBB2EFBEB78CBF671290A06908CE5C4443D3ED93C307F6A3666CB36D859D7F1A1F1FAFB49A7F8AA3199471607F7F3FD30896EBD1B1006C0D3615DFABA8290A7B450F821978BE3320F095095AB68E550B240696669FB3EFD3F5BA529C9ACC14E844C6BAD7798E05988CEFF388480FEEED192D9B673BA293B3C192554553D5AC86C7B26B3F4C5112711EF426D41408505D85A4A8D5D5C2C8BE0DF876F858E49FE2D2141D1C1CD457AE5C5941FB5147404AEDEDED32D6088260A030752993C9B057A44D850120E179BEB3F716601C003C56AD57768EDD6B5F67E76DC06CBA532D20B8A6954BC54CA95850AD7B1CC0D833AC8034A3A8996E04AA03E9AF4DC920584A268FE2C9576BD5DCD4A4AAC8785261F96E2044F4E0FCEA12581916EFAB16473753A37EE858E59F1AA65D849404F1B932BCAE2138A452A930E3CE3446C242F1B1D29D9D9D0C0806144180B8F147AA63D7196032F2AB6C81252358EC331203D202C4018C09DA068C01629DB7A9D003986DA72CAA649FB5B5CCB25FFC19B2E99848ED08482702D38E7B4E96E43C3A221A7AEB59820E0AA0D74189ACB134A06E251CA15E1C2A8E1D7C0A9FB3179FB103CBB503CFEF6743BFD0689798ADA034ED445809C0084B1286F89AFEF72C62E79E18038CBD327018600C20F4C5F97B4BBB2441BB240B3045D02E0E9CA04136608A0F30FB9A0398789FF5CADF0B802A02600EBD9A9EA3DC4D24B50DD04D34F4CA11D0F52D787E37DEB70BF73D58DE23F87BA6502BAAD395F6480446B34C6EE336CFE68031B06C8D6280215892950E97D8B186E68181E5D3309B0E654687CC7E59768CD3A300840D18035A13295104CC06CDD23A0614ABF125464B789E59E87DF8F943C806138B172F2E5BB6E29869456230A619300F2D323A64AF8542816B92AD5D0CB430C0B0C62A16585CCB1848CC31F401C6BD3EDB09B1A95000846955C6D2221E6EE13E81E7584CC1D21F63F8FC12DAD2FAB1D68A6302468B80C5D22E66BFFC80D9368CBDB768D0D1300B209B063D1AC628CED22C06749D7991789DE59EA61838484FB5E94E7B9C54601C2FC098C36181C3016233D8F8016336CCD62A16F022C0F5B6B6B62AEB5C80F144FD7801715283713CEC9708180309C1A0484B068266D851363D8E02FABD05E3180006C1B0E3F80AE7FF032146B34AA6EBB12B0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (158,1,'UPS_(24)',decode('89504E470D0A1A0A0000000D4948445200000012000000180806000000F755AD310000000473424954080808087C08648800000009704859730000020000000200017E7ED3E30000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000003D149444154388D7D94CD6F155518879FF73D33733F5A5A0AC82D4A11028518501235A23161A9266E8C8DAE74ED4EB7AEFD0F4C5CBB3126C4104DD0C48F1863890AA85117902A180A1A4AF8B2B4A5F7CE9C39735E1733F75230F14C66716692E7FC3ECE396266FCDF38FCE4338FA7CEED0AE65AA10A9D50C576E5435986F21AE697566E5EBDB8BCBC7C5BEE073D72E4C8D6877B3B9F8F81E7507D565CB6AF0C81B22CC9738F2F0ACA10F065C062B96855E85BBEFA5A02B077FFA13997242F773BE38F4E76276706FD42CA2AC6683153B4AAA2B910025534D439C2A0B850951E97766645538AE24E4C0048C7DFEC4C4C1E6D670959ABCDA028C8F392BC2888D1B0AAA89C73B7CC6C75D05F6BB5C7B6CC265917001101200150A7385544957B8C36134D52174DB7236C4F34BD9A6529228220884018814470CEA1AAACADDCE0FAE50B64A6EC03AEEFDA43E195288299E112A595652082348AD6B314AD971454155521FA82D9D5350EF5D7981381FE3ACE2989730038E7C8B2945696D2CA32B22C25831AE4A4868828A68E9383757C34CE1639628688E09206A48E6C086860A40D08B9AB68381211F6A61915D264588312A7B4B2B486B56A2064754682A05ABFBD1D3B997E718EB53CE7D8FA3A2D4D0921E29C6EB09621326C4C4847612BA3160A5FE1BDE7816DDBF8E3C62A6681F1F116AE69565518B5D6044EC65051AD8A664FBCF5C6EB1C54F8F8C2253EFCE85354B4B6EE74D45A2DA65E3C1B2AA2A1357C36B7DB6C51616A72535D2AD420A9DB1B2A323386272CD9B0EF6838BCF7C1710E1FDACF175F7FD774512B12152A8BF8B21A410CC38F14C586D6106FDCFC87CFBE9C27CF8B61A9A8082A420815B92F6B88196BCBD709DE7793BB9CFA0178E5A517383AD9E5FD5F17F8E6E4E93A54ADC30DA1DC9C17013323784F590CFCEF67CFFEAC0066118BC6D0F0C1DD3B690D729E7EE2B1FAC88DCE9510424C8AA2C41781B18E5295FE5DA01A81A20DF5189F7F7B8A4B69C6F1135FD5D66C58AD5045235491AD535D5289D7CE9C9A7FDBCC6C642DC6461570E6B773CC9FFE85BC281AF4BD97DFC4789BD9DD0FC5139F1C9B33B3386A8D2A12636430E83331B999344D00215AC4FBB2866D601D3CB087F3E7CFCD2F2C2C9C1A7E4B6A8E491523657E87DEF43463DD0E3B7AF52EF6BEE4F2E58B34350170F1CFF3CB677E38F9EA500D40323333D371AD09EDAF70DBACECDC595D71A97349BBD326C6485555085A676860A1AC7EFAF1FB779696966E6DB42B565F13DAEBF53ACEB91933EBA5697AA033B6697F96B6675C9A4CFB1076A8A6E3BEACBAF9FAEA5F6AC5538B8B8BF97F40A3C9F0026EA6DC3B746A6AEAC14EA76357AE5CF9FBBE7FFC0BA9AFD6D0A24887680000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (159,1,'UPS_(48)',decode('89504E470D0A1A0A0000000D49484452000000250000003008060000009685B32B0000000473424954080808087C086488000000097048597300000400000004000119239A6B0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000009D64944415458C3CD595B8F1C4715FE4E55F5652EEBDDB5633BCEC6B78DED8DE38DE56063611282132982272484FC06124F28120FFC02F80179485EE0012410F08202080102144884431411881DEC38F1C69B5DAF2F6BAFD7BB6B6FF63697EEAA7378E89E9EEEB9D84E78A1A551D7F4CC547DF59DEF7CA7AA864404FF6F97F95F3B181F1FAF5686B7BF605470C00997845DC840E0182133878E39649650D8051C73CD493CEF9817E0E49625B96DA28D79CFC3CCE4E4E452AB4FFAB44C11119D78F6F913E5CAC049ADFD6704F43429BD890570CE8199E19C8373C9DDE6DACE5A5816B073853ED946B7C4361711D7BF75E5CAE4850762EAA91327F63C34BCE38572A5F2CCD7BEF1CD2F2B63763303CC0210E01C03CE4188C0200094FD569C401C03CC205220B401B16B5E11E68636C1188CBFA3691BFDC377ECD8B1B2F286BF5A1D1A7C3A08C32F3DFAC881A7FCD0375A291000168099C1CCB08EF33C269F3B0B173BB038902628521007C0391084D936274538D45E692FF43D34353A3A3A6ECA432F6A6DC683B0BA2B0C3CB3BEB6E2D76AEB2111AD4108224CD639722CC4ECC0ECAC226D15092B52C4C203DAF865A5154408CC0EA43C100822AE611BB58F63E66DCA04071F4CE8C1E6E7602ADF559E0194817504E38508C352A28554134E00CB0ED602D6022236EDC0A1BE76372E952AD78DD16B5A9B266925365E2D35EB358F82CA3645E6B0EAC10C2562ED9D7D4A25542BA5D2367DAA24D0DA78E485BBAC08AC03E0188007C7A805CA2BB7C726E4DB2D505E2F50440452042282520A9F12134004A508CE15335A2905AD5502A000A4B3DD07944A3B26A2742A028100C80DD4CF450850A4E0C04550A4A0B54E86A75C4A5077E80AA0548B2922501A42A264F4C6C65DAC2CDF4D80A65D0A019064963B1EDD85B9F9E51CC384BCFF91A11454028072CCB6582210E07B7DC2977FA5CF9B8D26A62F7D886DC660C15A6C3306DFDFBC0D37ADC52BCB8B786CDFBE941180522DBA1C284D0A46EB8C4DEAD0548EC00E504A6760DA22972C3BBE37F41036698D9FADDCC5C972150D116CD11A2F9407D014CE42A29402290530E745D5A12914F545F7A87D05961401A2B2D9FD7C75195F08CB50000E0721BE5E1D0400CC5B8B0B2C6DA1A7932A0CA2124DE50114F4953EF4EFADA94457D22A0902ACB0C35F6B6B00808FA3267EBFBE0A00B86963701A2A4549A6292AEA4A2955D054DE9BF259D89BA91C304504966C2AC5029AE6642B115BA092044958CE5B03515EE86D4D65ED16695E97A65A80F28C213774FB0A89B0D3F8A82A852B718485967E280596328DD41A944E34D5CB068A19E9F728C839301928C9CD2CBD666D8CAA22344570A1D9C86A6AE6714A15AA8152ADEC2B82EAB2867EE14B20A4824CA97A6C6C0C4F1E1E877516B18DE1228B1FD6D6218D26C2F0104A954DC0AD4FDA1ED74A945CF9D2A92510515F6BE85966909A78DBA7125B58585C85B50ECE5958EB9257DA16690058C93A685583166BCC02457950E8630D7D99A276DC7B143EB96F9D41E67394E9CA65B5AF970DE49FB53CC1F4AA5F6D5AA90BC09387C6B06578087F7FEB1D58EBBA0B72CE525A032BA50BB5AFBFD0FB84AF1DC66EA65EFCF629849E46D9F370F4F001FCF897BFC3ADF9855CE145B6CA48EE6D56DA6586FA5B43CE338B3ED5272C8FEDDD85814A09CF6DDB8E635333D8B56B279E7FE67817CDD491C1ADDAA775C296D1EDB64EDB266DFBBDB75894CE84BA98DAF9E80E1863E0CEBC072885916684816AD819BDAEA29E2CFEBA6B5FBE7FEAB774E925E0FC57DF3DFB3EF6EDDE8EF8E018FC9535BC79ED2A26A6AEA36FEDCCB186B4CC24C69FAECE246DE5EE0FB619CDA1AAD5EB387B610AF1C15194C200576797F0CEBBE770CFA54FFA126658CBEDD2D40227392A4410F50225ED5FF4BCCE9EFB00FF3A731EC20E51946C268A444BD77A8C003827B0CEA5FDE7192A82EBCD94F4AE759DD165EEBF1E6E870DD9929A25D91F4A1B55BAC06EB76B2B77C00D17109132FDC6EE8C73E7AEA7DFC681A85DAE5AEF1D3359CB1D216B035A5FFD04F5F565349BEB43478F1ED51DE1CBA6D053809F3B328E234F8CA212F898B9B988DFFCE13544515CC8BE94A20C1C81E09C9856A83BF5144711221BC1D9A85EABD53EBE7CF9B253DDE1936CFF92BF02DFC7F12307F015CFC3C94B53D83DF2109E7DFA78CFDCA0422105849DB62E11BB752EBD7372068118D5D0471C45AF944AA54FD05EEFB699928CA922ACCF1F7D12BEE76166CB3026477660FFFEFD181B1DE9F2A916907C182D4B1720EB1C08169B0737218EEA330BB7AEFF746666665D4472A0384BBF145C312B666FCCC3F77D3C7E6B018FD71BF05756B1BADEE8E32254782F9C645F022601A4C078E4E16D6017C55313E7BFA3B59E1711D76D09D206D39985D7666F6275BD8EF736D6E097022CDF9EC79B6F9FB987BD65A2028B14329600ECDDB91D816F30F9E1955F4751F4D1D2D252A3CB1238039503D731D84F7EF15B1CD83F8AED5BB7E0F43FFE8C8D7AFD7EFBF89E4F773DB21923233B70696262E1FAD5CB2F0F0D0DDD595C5C64F433CF365B92EAAAD8F1C4A5295CF8F0A3EE654B87BDF52BEC5B062B3872F8092C2D2CB87367DEFE01115D9B9E9E8E0B96933B562B00CA80DDEBEAF179CE51BA2EDFD7F8E2F1C3D85429E183F7CFBF55ABD5DEBC79F3E68A88704F50DCC192F0673C3596FEB0F6ED1EC1E8DEDD989A9A5E3D7FEEDF2F45513427ED03AEDE65A693A5D9AB533838FE14B436C91E8219F56684463342D48C104511ACB56846319C73686D13DB788AC006AA65341B3579EDB53FFE88882696969636EE77644D79409C6A4A24292BBEE7C1F30C0606082EDDE769A50008E2D8A256AB63E1F65C31413AC82A05015E7FFD8D8BCB77EEFC4929B5D819B642F8884889B02F2C59FAB6BE2FC2D9A12B33832801A3D3D33E4E27A174B261E8AAFC3960E7CFFFE7EE1B7FFBCBCBD6DACB376EDC68F6538022221A1B1BAB80DDC39C31C599AF3027FA6266B81C30A2E4845898D36D7BFA3033DDE2519B8DEAF185F3EFBEEA9C3BBB75EBD6E57E2C01803975EA943A7DFAF4401094275C5CFF556CBC9186E70D7B415871CE0EAFDC5D44580AC372A9EA97AA159DDFF94A8B55668808082AB31291BCE881E5DBD72ED8A8F1461004372E5EBC18DFCFDD68CF9E3DC1C6C6C69052AA1C0441C8CC55661E524A5545A42A22034434688CBF332885DB83B0B2D90FFC4D9E1F568D3665D22654A4838DDA7A5819D862ACB588E218CD2846D48C609B6B2BF595F9979452AFCECECE5E6D9593BE4C4962460D22BADDF2BC43870E99E5E565E3FBBED76C368DB5D638E78CEFB3712EF6EA1BEBA1736E90990795520300AA002A2232A0B5D9AE8DBF436BB359941E14A892C41B93CEB97F465174FB7E80EEFBDF0C51CFF3610240FBF6ED334110786B6B6B5E1445C65A6B7CDF37CE39638CF100949C73C300CA44B44E441373737377EFA5A5CFFC87D1038006003A79F2A49A9E9EF62A958A595B5B73737373CD07610900FE0BE7125494E334C5F60000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (160,1,'UPS_(64)',decode('89504E470D0A1A0A0000000D4948445200000031000000400806000000B3E29F780000000473424954080808087C08648800000009704859730000055500000555012519CBBD0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000F1D4944415468DED55B598C1CD7753DF7BDDABA7B7A366EC34D22450E458B64A480D41281946831900C07319038CE02C4BFF9887F92EF7C04C887BF12208881C81FF90902C4892C5A90130154EC885A1C39A1968892258EC42167E18C34332467E16CB5BD7BF35155DD55D5D5C319CA3090026AE655574FF7BDEF9E7BCEBDAFDE9088E0FFFB61FD2ABF6C7878D80DC3B04E54EB775DAB576B5D8B44BBB0940B210F801346E1820AEF4C6FDBB6EDDABBEFBE1B6DE673E9971D8953A74ED996DBF8AAD3E87B5A933E238CFB0C9B9A002E443C21E5B2002202C30C360C664EC6E9B561461C87AB109E13604620338A799605330066C0F1AC595F9E9C9C1C7DFF971689471E3B7D6CFBC0F673DA71CEECDC77E434696B880D8345C02CB04452430D9819300C23020290FC487E25132A200894B21A227290808300000568001287D758E9C8AAF7BF04E0DE9D387EFCF8E0D0DE43CFD69A3DA735A9A70E0D3F748CE348314B621C51621633008661490D4D5FCFEE8340A024029C382594DC2712B44022C2260E4700A969DB3BA401C4F17ABCA59C2022F5E86F7CF54C7FFFE0D34ECD3B73F491279FB014F51823103180082CC7011B864AA141D4866979C60140388631062202AD35400C66800CB71C84189F4DF429805DDA761FDA72629F3871EA507370C76FBAB5C653679FFBE653B6E3EC33518830081047313CCF0529021B496792C192CCA8310C2282D656C1116362C426821880948645AA9517947F23C78B71E88F93D20795E53EBC25763A70E4C4B3B6EBFCB1A5EC61BBD6D8B61E04E28711598A7CA756BBA395A5A2588825C2F2DA3AB1613286C930936103616188C44AA9180423261202108BF11CCB6E68E5282882308323064360594E2B3C1287336118CCB1D01165798FDC13C592E59D235DFF36690D210D280DA593D9725C2F9D75D39AEDE434309CFE4EAFCB8C17AC2DC3ABF780647D456BBAAD6DBDAA94361A64ADF94B7D86390A023FD076FD30C81E22BABBE10AAA3B9C92BCA2DCA940EA4BD2301194D630867A98D1130502206EE1C744D198883ED2CE18A4E4D0B629BBD71AF2464E804A4E1004F4E57C0040A40070F5AC2A8045412995238192D129B7B5A0A7368C04754623630BDC634448A088A088C015E24A2028A5A095423EC38BAC4685B174CB09A554CAD1ED53298288FA927248204520A500633AEF2A05450A4A2B146250E940F23317888D72A21D8D3C56E3600551148024898C0241116069012B807522520200CA81EF87C94CB73EAB024EA400456D38A5465331290AD7AA1B9C284BA852345AA10510053EDEFB9FB72A70AD71A256C73C040B20ECDD7F3FEE3FFC158C4D7C9118A4141425FA51662F52C97D9D194654D00DCAE7647ACD392754754E9420959BC1ECEB3D523860DB008001ADF1A7BDFD38BF732FBEDB1CC443C6606D75A94508ADA8AAE267E52DD32A496CA5557BAC4A63ADA0954EA2B0A113F9AA26FBF23CF541F05CBD891FEEB90FE7EA4D1C755C9CF26A78A6DE83D130C483B683BFD8B61385C91669C1891455C229CB89B2D12A353A19ABC2B84B62A3034A19BC5AF61061240A7039F05B7FEC5182E5798E3116192CB281381A992784761428858A14BE97A034A570A27C1A247F4DE8D00FD59D6255CEF87682E73F8544301185F8CB5B33B049C117C65ECBC64818C221429D08FDDA0284DB9C4E481C485988948230E72241AD59A6424697442FE7DDC68A5D911B2069CD5C867303C04862C8A0B2F07BCD3E04225861C6781440245F7EA4CA9F2676074B29E474A253E4AA44AF2BC52AE4E094CB8942242A046F9E63BCB0BC089144931902B1A983B65581F1F21397D7890A91AB506DA5EE12894C1A52570AE1ADAA400695853F68F6B7AE6FC411FE3E5C69013F51E47662979D5094E444194E7907CA02B8A1D8651EE4F502200895383677DC3231FEF9CE621266022211882EBEB5481628E805A9ACECD01DCA5C163D2AB050B7C4CEE5711B490988A4481BAD63CEC478A6DEC04ECB86027061753957A5661D694561993AA11455941D25A34B496E757542E5B097E943A9EC387C64188F3F7E126C0CC22842E08708421FDF5D59417467195110608DFB71B4A799A3581484B35C82140AC02E4A5D2ECDBBEB445EE4F210CC11FBF4E70B989CBA9D363F68516962641DE4F5C0D204B234E66E2D168C68E54539B989A075BB1ECAF70F1DFD04B51269138B672D86228894E4291D72ABA32B76771DB511F2CC840E2712954E9499BA94E265D1B336D2890205E5A09541A36B47211B77459D39914B6E4A9A26AD55C1F1A219C54A76438ACDD2205F3F6DB44878E0FE7DD8BD6B07AE5D9FC4C4D474F77EA254C6E4935B51B11EEA307A2BA578919B733351C1489EEBE23B7FF26D2C2FDEC2D2D2124E3F7602F3CB3EFEEEF97F44E7D2A8B46AA67234F2899A2FC5BBB25496F00ADDABD86ADDE83CFEE85BDFC0271FFD2F4E9F3E8DDF3FFA104E9C3881707511BFF3DBCF765B802BF4262D21CD4A715D2CC52B4BF3FC98D426123B579697320C02C1D0F63E0C1F3C83DA4B3F86595C42DFBEBDD8BD7B370E1FE9C3F9972F74924447C7982BE614914E9787F231A0E2F4171A02B5994850B71A2385D2E4E4041EDCBD07500A7AF81030338B63C78E61E1F6ADAA75828E5C401E4EA02EBD44BE19CAAE75473FB1C91580A272FA4180078F3E849F7D7819585B07CFDD04EDDD834B972EA16F7047974AA6221AE9A70A015AEB4A0728071BC93F12C897F29B5D372A1F6FFCD73BB875EB167EFE9561986FFD2E2E363CB8AE8B7FFA979736CC897646E42BE674455C9233D19CF4E46455BD3D66182388195B8C4485173F7DFD6DCCCCAF6168F71EFCE7EBAFE3C0C143B8F8F607F8F017231BE417B529BC1591E40900B3148C34D975CB19293806C3774FECCD2C935DF8C9EB78E5C26BB02C8DB5B51FC0B0E94A70445410BDFCF30A168611C0A48649CE0081E4C6E92B525C4BB43A8DDFFA2A5F10849B5A8F2D902AB5A322462889445A2BB7ED4E85567263C0C411A2C810119188C85D1EB214FFF89E9731F375502112E982B218E2143AED2496525492E91566CC7D3E01B7D6533F70E0804B44815565B7C8E66292DD771C07EBEBFEC6EF6B758AF94824D7CCA20D0B88B9033AC5A808E66FCF218A0288B6FBA2286A00080B4E70C193F687511787CE3DFD24BE76EE0CAE5FBB8A43871FC40FCEFF1B2EBEF9DFDD6341C53E216328634C8D7339518E7E360EFDB52487E2506E7D3EF61AA5CFD48AECC4EDF96F8551A41245679E7C140FECDB8E85AB9FE11C14E63EF9054E3F7A1C4F3CFAEB150E48E74271AEF167E61AB7182847A726632A461C476036E8EDA9A3DE685EF557EF5C06B00EA0BCDCCD3938951C2A79F2DC33A7D16834F09810F87BCFE3CC134F208E63FCE1377F6B83122C5F2DB59D61C3DA886CA80B2431FA7A9B0087E1E4F5913F574ACD4E4D4D859589DDA6B1148F228527A10060591AA3574770F2E4495CBE7913F19F7D0772E50A0E1E3C888989892EB9D3054E29D6D90804A59C4867D3D68CC1FE010887981AFFFC45221AADD56ACB5906A88E9C10E98C44094E716CB077DF7E2C2C2CE0D7AE5CC52317DFC2A930C2FCFC3CB6EF1CBABB6652F15596845ED9E4052F89081163E78E01347B6A585E5C9CF9626AF2FBAEEBCE8E8E8E469252D8A62251951413D37358BC398D07FA06D0F8C6D771677E01636363B8E357971C5DBBC6849DC09C46A204C1A1ED7DD8363080A5F97973FDEA477F454413D7AF5F5F1311EE5E766491902412DD68F65FCFBF82E1A3C7F1765F132FDC98C47B750F03DB76E3851FBDB2F94A86729A50D1B76CEFAF63FFBEBDF05C0B636357DFF27DFF521445F3C5F5A0722498DB91C8A84DAA5D89A2087FFDBD7FC0FEBD7BB07B68075E7DE37D8C4FDC48EA9AAD3E95AC28CFEA9E8DA3471E40A35EC3679F7E7AE7DA671FFF6D1445D3376FDE5C9752EBD8A113924642D29232E9E3A56B6F313E39856B631360B381F1BC09D9CC454211E1F8D183D8B17D1B1617E6E583777FFE7DCBB24695524B558F6055B562B71DC9CE7BAE12EFA158193EB81B871FB81F8D9A870F3FFAE0CAEDDB377FC2CC5F4C4D4D0552618CAA2A0025C74D724F2561B52BDD167DF266ED1868E2F1530FA3AFB789B189F1E09DB7DFFA9B388EC7FAFAFA56BACD872ACF581B46C5F36E9EC85D70DF85E43A8EFBF60F61C7B64108C778FDA7FFF1230023BDBDBD373FFEF8E358BA40C2AA9A95329C00C1F8E88738F6F06350A420E9EA5F1CC7F083084114220C228441008EA2EEF0EBE80D3A8F9AE7A2B7B707175E7D75FAC6E4D8CB4434393A3ABA9EA7D40D9D60E68A28A4F7D2ED3F96A56159567A6A18C329C74BBA0A916CC2F27D1FBE1F606D6D1D8BF3732D58B6A35DED89E779B87E7D2CFEF7975F7C1EC067711C2F9429B52B9C282909492AA0D4AAED45C0ADD792665D294A4F05AD085A116C4BA3E67968367BD0DFDF0BC7D25D8CEE842941E4C51FBEF016115D36C64CCFCECEFA72978D8A2A73E0E4C9931644DC4C1F0A4EA414C92C2D4732956D3F5F68AF7A67EF4BEAAEE4417B4BF94BF694AD7BF38D37A73EBCFCFE8BCC7CAD56ABDDE9BAABA5F8A489E8D8B163F6D4D4D400D86C13C9842EE74C0685D47849779949BAD32C732483A408E72298EEE9000A70920AB60AD797D73EBDF2FE7900576CDB9E191F1F0F6513DB452D00343737E7789EB753E2F5C5689D4638B606C572EAC29EA775DDCA76016486B108140B98042006B8DD727201729958528EE572999D7F5A2082DB3363EF80F90311199F9C9C5CDDACC458E932B9307328FEF28F4DB07249447AD7803A801A91DEA51D7748090D4D8F8FD8B6ED365CAF56B75DB7E63AAEE77A9EE7D57A6CC77128EBC2848B8E40A9569325E59E3D1DAF2C7CF1B9BF32FF9A526AA4BFBFFFD6ECEC6C2C9BDCB46B01907DFBF6854B4B4B334B4B4B772CCBFA546BEDC4716C5B9665294576E4AFD645A419476B3D003C66AE250E9207A0A6941A74DCDA905BAB0DB8B6DBB41DAFA16DBBAE2DAB46647951E8D7C3C0B7486995094602A9ACFD35D1C2CCF84522FAC4F7FD1B5353531B526A871322224414035801B07AF6EC595A5E5E26DFF7090056575715336BDBB6DD20081CDBB66D66B62DCBB28C3196D6DA06E0AEAD2ED7FDF5D55E2411AC33B347449E52CA03509BBD31DAD4DADE6D39CE0069BBA994DD10A026A01A47FE8C31E125A5D4678EE32CA6CFFAB7B027EC2E11A37633D0DABB72F6EC59E41D5D5A5AD28D46C35A5959718220701CC7B133072DCBB2E2387688C815911E11696AADEB69343D11B1896819C015221A999E9E5E14912D3971D7CDBD395CCA661D2D473308025A5B5BD3F57ADD5A5959717DDFB76DDBB6B5D6B688A8388E63DBB61777EDDAB53C3D3DCD5BADCAE857F5AF0754DCC25670D4F33C79EFBDF74C3A675B36E8FF0002456488371D4B9C0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (161,1,'UPS_(96)',decode('89504E470D0A1A0A0000000D494844520000004A000000600806000000BAE7E4210000000473424954080808087C0864880000000970485973000008000000080001D799097B0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00001A164944415478DAED7D6B901CD775DE77CEEDD73C766777092C9E340190024C428820826468CA7051154B8A44D99548A2ACB8E4971CA5123B557191215D54249754AAB0A252512E95634548C5091D9BB12295454996A31265C6244C8B1245841429102408010BEC72817D60DF3B8FEEBEF7E4C7F4CC74F7F4ECF42C00957EB859C399B9DB33D3FDF577BEF3BAB74122827FD8FA6FFC0F10E4DBAC9FE683BBFEFAEB0BE4793BCBC5E1AD8EE55600AE90E20AA02A10718C181190186304008C18311031C60869540DE9D5D09755A5EB2BBE60D5D76BF3B6D6972627276B831E0BFD3498DE2DB7DE7AC35879FC1DCA718F92E283C66084602A065C2156364420004404C698D4B3C088811881118118133D37C78D91F6FE80408C0944CC0A2093044C1831133032A175708E83DAEBE7CFBFFE9A88989F0AA06EBBEDB6A2ED8DFD6271A87894D93E6A3BEE5B41EC68AD618C8648131401DA27DC02220E90A480C8024AB48181C06801A8DF91098C0EE64C503BA583FABF9F3C77FA073F71D3BBFDAE5FB8A33272DDDD96ED1EDDBEE796BB6CCB1E3322F0FD203A210D628059258088AE2700895E110402224024F627024800210289697EA74853850D81B8097E4F888C5E16E39F63B2F6B057F90521E3FE4434EAAEBBEEDA551A1D7FA7E7967FDE52EAE8DE1B6F791300044180300C11043E0480652988A80E3B204D04DA27DE798624308BC1D67C6D4C18810C1033386221C1407A02145E1213CE105B07D82A1CBEE662BE77EF5E6FF79E5B7E717864E8A8EB78476F3870F856C5CAD5C6A05EABA1E1D701039062388E9330A3F8954EE09078D701250E8FD1065AEBE61EC4200240912665828BE8738DB362A4A12CE70059DEF66BEAF58EDC79F4C8C8D8756F77BCE2D1C377BCFD6D6EA1781D3341EB0041BD011F4D66B8AED7B4FF98E026CC0868FF3F3A6390484F3619D1088320324105CBB6727EB71813FAAF41C465DBDB07758DC283DB6EBB6D8757DAFE4EBBE81DB51DE7E8EE3D37EF57AA79151BD52A42BD0A6686E73A2896CB2971050406109300220E405B7792FEA6850E7CBF119925C1B2DD8498230D4AECBBC598BAE8FA69A3B1956DF7E6AB1E47BDF9CD6F76EA9A3F683BC5B77B85C2AD6E79FB2DB06C476B036934B0B6BC0C231A162B144A4528661031C2A08EF5F5554004DA08C4E8E61507D072F5884C4E0490886D908815AD7131F07D1FAC2CD8960DC7F512A181C4C14D8B3A0068BD1406F5F31AB487D9FD477C05E17526507BF61FBEDF73DD7FE214B7EEA8D88E4DC40C31561806D361E0BB20F28850703DCF73AC2260048D868191B0AD3DCD47ECB5245FC3888888B022CD4421116B4514B2455A118BD6A16B5B5C1CAA8CAAA0D180EFD7D168D4A3D82802CA008EE7814825744B87C1C5865F9B37C207989DB75C8DF4231328B69C776976DFD10804A109C0CC50CC6066302B301388184AD920A2A609B52F638EAD89131963481B30003BBD4BBDBA022282B7BC0EA5B0A294B56459AAAE94826D392E888695A546EAD51A0561001141505F9F6676570D596F023B3B98AE9E17DFD0F4889AA248A0A6AE1035C7A2D7B1F3BE36892833C0164223C3A191E14610020863AE2B3002CC2BA2051336AC86A61B5DDBCE9F9610659E33405DC0581B7D4913A01660910E34FD2F88704D3742E7C2F48C13D96602B61A60AB46701130B98148BB0B648CE7040A6D16B5D9D4FAAFFDFE5A6E12636E1ECE3208028E8EB71F10C9B7847E58650245CC6DD6103AA64629F31BF0BCAF8859FD7252664084A263CF0B04A577498FE663545B9BA22FA2F68306076A332011B77FAB1F50ADE3E28482F7018252AC030DC6286E7D19C5B42221E8DD40C9D517A9D845C967788662DA9A03088AEF94FA889582C6EA7D942D905A07DD3A808EF925D06F96CC22E595ABC4A8E485D9905544608A3C65178908DDD8658D01BDAE8AD51BA7B64025BD5F6B1849A4C2601D26A83723EC683F1640A159FA806AE66C222D2F26EDD70240D91682D046B55A8B0A651D36E5D129268270F3390F109401346D2A8E6AB3084913A41862C90A20A62E5CC0F4D4F99EEC6056509605A518C456F33529B0A5F0CE77BF1BE7A72EB7816AFD7E3C7EEB6BAA4889793F202843B8690031EF049A1D46B50E34610E5D8E6D83C29808B40E718B65E1A1CA16BC1106F883CB33588DB27D1DF8A0D4E793BFB531AB88188C38A30603A22BBEB273318A6366D70A053A029E4128085194B937B7B7154A980A7C9C0F03004045293C30B21577148AD8673BEDABFEC4FA1A9EA8AE369361A43C569B55FDC39156BC454CD92EBE276829E51A288E42925171F71B0F3C13A21D5DE9DBBC22EE2D57F0DEF2303EBF388F4B3AC073B52A8E78457C687824F13BFFAC5CC13B4A43787EB2DAAA17F588CE3B26D853A7286215F18640241D5F2F80A80B1A0BBDE38304A3E26CCA3A688A6284B7174B78FF500500F042A3861FD4AB008025A3F1E9CBB35D3F5566428515C4483255A1641CD52FC8E588D1C49413882CF6D0608C8AFBB4F8C1515CAFD2848A7EF8B30B73F8DBEA3A3E7EDD38DE1699D9D3D535ECB02C7CE2BAF1CC5FFB3FEBAB5D8C22202333404F56B5749563714B5E20F204CFD686A16E2AEA4D8A7B545EC9D89EAF57F19B9726D11041CD9824983D339C64ED1C225D42BE5192DC0A8839A33A97991C6744E171A9492363F50FF8E2616B325CE82673675B8A0AFEADED5218E2E1855918E936BD4E684FD9214AACDC43C84E928918E09844F403A24FC26CE74F61BABD4F9B51D4499825670AB3DDB2F01FC67A9B9EE98AE8A94BA332DD6D3C324737A37A560E52E3DD39611E318F1F549A5114BF3259972C7BF3457026686088154AC4F08860C54F5A5226459248C2912A1AA6758AA9196C26E2BB0D81A08DC772570FE261428C51898A42BA7EB401A356B5C1F1EA3AAA62E00B10884043508E1820598C02B72F5652D0BB758AA303EE540F06A91C50DF0B9DB35D4571D7D216D754C4B9E12F5D67297CA43296F9B7BF5A5B89BA2AD4B314DD89ED28BBA3C9519A948AA3BA7842FD2B0700E514734A69518A519932411B4F82980B43FCD9CA2286985120864B8402338659F5487FA4CBDCE2958CEE436E069B9DC8BC0F107D12666B10D3EBE66847B392072BED9E63AFCD63C66D5E01ABC6A02E0681000B5A63416B183467ADA067AE9723412680381647E5AE1CD046F5BAC14C2F4E78EAA1E3FD8CFCFBF52ADE150CE11DC5321CE27637FB9B6B2B980C7C1C4CC344C9A438AB261617744624E4CC392B07FDAA0976DEC25DA706950A9333FD8365DBF8A7EF7937EAF52A1AF506EAF53A1A8DE673BD5643BDD1C017D6D7F147EBEBD0F51AA411C0F83EA6FD3AA4D59A9264A81FAF7BB5218A494122858AD8C4448395557A746606EBEB7591349EFB25F71D1ED9825AC3805501857209E591A6B02A66B0A27603552986B2149462584A354FD8086CC7C237BFF5F7A9388A5225E18EF9F5AE9973BE1615F5CB0737A15194A959C96F5D59AD626979ADD34A17D39CA061522D7649B6DBFB750CBA841CD95EB76976A9E43D4F62DCA33363E5F17A94D1DF8BD5803323F3ABDF5B10705A97522CEBF27B892E4C9F1615F5CFFDF28B39658B7ADFE8ECAAF5F7D2AD32EAD4F05382DE314FCE0DC486DD9A816AE6599811A5F2816B375936191224199266341137A723326D0850EFB655DA3673B5AB1899ED678A571E073B69C77150AF370641295139E8887BB2CFD8F2941C8DA7E3A85E40E4EACCE41773425A100631BDEDDBC7F1EB1F7A1F7E76FF3EE83044AD11E0BBDF7B1E7FFA177F894623E86BA1D4B35596C178EE24C6B980A00CBF1E1BB3EC41342AC3FBE585E9E7EEB815BFFA817BF0A78F3E8AE79E2D61CB962DB878F122B66CD9822F3CF2693CF8079FC1DCFCE57EA44A3228CEAA2E458F33AA3F101BE6839B8ACCD34964569738B58D8D8EE0C3F7BE17C78E1DC3030F3C804AA100999B07EDDA8993274FE24B7FF1E7B8EFDF7E040F7DF2B3BD7F369A6F18AFF4A430E8F2CEC4AD9A39F507A26FE3A15B8C067142A9224CF6F62BEFBB078F3DF618EEBFFF7E542A159853AFC13FF6DF204B4B3878F0200E1F3E8CB0B18E8337EFEF2BE6F1390F598CEAC44D51E1AE55ECE366A8C051672631C6ADFD3835D62A16F21502953328B871DF0DB06D1BA3A3A3F0FFF08F10FEEDD30080C6FD0FC19C3B8FF7BCE73D3871E2040E1D3C90C3F462216E9A51D41D70E605227BAC339E3636DE2C2A1B793DDB228C8F8F03610873E205D8EF7D7773FC57DE0FFDD4713033B4D6B8E1FA5DFD3DDF468C8A79DF76529C062831D601A2B52F778D35D320DBDA2CA30608078C21CCCDCD0196051A1B056DDF0EF763BF0F33370F7ED38D101128A53039358D7E15D62E46517A9C3A853BCE604AD75812A0C47C8A76034810849B2AB3A49EFB8076766212B55A0DABABAB28FDDAAFA2FEE0C700C7018F6F85FAD0BDF89B279FC4A14387F08D27FE7E7046C5EB470910A919FDF59863DA9ADBDE7A972E7F49ACAE7605A5E0C152922F3FFED778E8BE7F85471E79040F3EF8208A5FF83C647D1D542AE1D5575FC533CF3C837B7EF97DF8E1CBA7FA2730716F47C91E1E75FD91720391386C49D5570548CC3EEE0B946C223D0330333B8FAFFDF593F88DDFF84D3CFCF0C3D8B56B17C6C7C771F6EC59B8AE8B8FFCCB8FE2C14F7CA6EF15A00C2D4A0B7A7B6F23CD7579463281488C25882348900DD78A513DB6FFFBF4B3F8F1B90BF8AD0FFF0BECDE318E959565FCDC5D3F8FE74EFC10FFE6F73E81B5F56A3EA2C6B42839AB26554E319D4549C91317F4B2AA78E14FFA24EDD77461E3B9F393F8F8A71F0120F05C17ABABEBEDDA54AECA01F710F444B5B2095CABEE6E62ADE874EF4F528808B2CCB38972186C1628D97C9DC018C17A1F06659A5E4A8BE26591348022ADF536920B886EF38CE958F3D3940328D3978A3F998D928050AC2A46C9025C6B5596E94C12DD10882C5D1208FC5A1596E3428C216A86E8CDC54D1BAB44F664C3CDAFD7968176CD126EA2EEEA061100031883CE4AAED60AF69876B556AD27C652A5EAB94B9330610040BC83070F5ACD88232BA9C9B0E5EEB1AB818BE408DE126DA0EE16794CE80D847A0321B19A7D1680CDD7ABCB8B585B5B83361AF55A75B856AB158E1C39A2FA6A945C3985DAC160B154C4EAEADAC028274D2F0958C2F48CA88EE9A52F85F4F57A3A68607171058A04C6888461C35E5F5F7799B90E800688A352A69803BB5D3BB7E3B77FFD83D8F3333BB1B2BC8C527918275EFC118EFDC96358595BCB6D7A99ADA7543151B438A69FD793B422754C656565055EC1C3CA5A8895C5D9D76A6BCB3F0600D775058058B90D439269403F9CEEBCE3ADF8B50FFE321E7DF47F606C6C0C3B76ECC0E4EB67601C1B5FFCFC7FC4C73EF5599C9D98EC9BC22427AFA52DB393FC6931360B36E5F5FCFA1A5829B816C3F73C2CCF4F3F4E44D542A1E09F3C79D26C607A31CF21597FDD7819C74865081FFEE02FE1D8B12FE2F71F7800C51FFE08E6B5D3A0436FC1E4CDFBF1C5FFF2C778E0DF7D14BF7BFF27FBC65499932D32BB2646F5F47AD2C5A3F685171D8004182A97A083060A5EF9F58B6F5CF81BCBB29644A48168512F6FCC7EC91673D9987EFFFC97DE85FFFDA52FE1BEFBEEC350A180C6439F40F0E89F0122D8BB772FEEB9E71E9C39FD2AEEBCFDAD1BD7CC13715377B130A5512C46B2BD9E486C4D73ECB602A2A1C8A0542E4191804437A626CF7C92882EB9AEBB7AD34D3705ADB3E35C1A2529C0FAE8FB4DFB6E401004181B1B032C0BEE23FF09D6BDEFEB98E59D77E295575EC1CFEEBFB17FE10EF97A7192E1FE25E5F5740A400B1AC552099EE7C0B61566672E7C4D6B7D3E0CC345634CE3A9A79E3212099DD52F0A8F5526DAB703913E0A353C54C2C8C8084E9D3A85D3A74F3707F75E0F59BA0CFAFAD771E8D0215896855D3BB76D7091A4476B29167426A27F20EDF5BACB2B9D3F39CA607878189EE720F4EB585C5EBC3877E9E2FF62E659006B13131341DC56AC3C071A373DC911542D2DAF6269690937DF7C336E7AE924646109585A026D1B87BAF31078DF3E68AD31F5C6C58DC589A84FE130CE2E89024E49796CE9228062C168A58C52A908A3038481AF4FBFF2F267945217832058DAB66D5B637E7E5E24E63637D6A8C8E44424C31C7B83F5FA8F27502814303B3B0B2A97C15BC620B52A78FF4D905A1DC78F1FC7E1C387F1CAAB6706AAAC6E348D47A49314B727836404A080606CB8804AA58282E7C1B1152E5C38775C6BFFD52008E69879FDE4C99361FAE438BFE9495BDC2573F162E7FD57FFEADB78FF07EEC5E73EF739541716806211EACE7F0C99BE8889E9693CF9E493D8B6F367F0FDE75FDC54F5396B8206A4598F92C49D38BA3F5B29D9D8BE6D1C439180CFCECC2C4E5F38FBDF9552172DCB5AD9B16347D0CAEFFA26C5265DF59394E92518D57D3A6B6BEBF893FFF915FCCEEFFC2EFEF8B13F873D338D6DDBB6616A6A0A954A051FF9ED8FE2A14F7DB64FC961D06CA07F51DF7314AEDFBD13E57211A235AA7EDDBCF2F289FF1A86E1541004970B8542EDC489135A32D6906C1C70B64C2F2EE2926F12FE0B2FBD824F7DE63FE3B73EFC01ECBF692FFC461D600BDF7FFE45FCEBDFFB38AAB5DA15A7CF940F9FA6E91070C3AE2D181D1986E3D8F0FD064E9F3EFD52BD56FB0111CD8C8E8EAEEEDEBD3B989A9A92C10A7792343D497BBE1CF9DFCCEC3C1E7EE40B304660DB166AB5E6525AC955B81BB0F5D367DBB17508BB77ED84E7BA088206DEB830B9FEEAC9178E31F3B4D67A0140221CC80954528BBAC11ABC6AD268F8035246AE9AD155CA0E6E3EF026944A451004F55A282F9CF8DE9799793208825911593F73E64CB8D18F728FBA5D971689C4CD2F1FA3AE42DDEE8A0B8796221C3AB00F95CA304AC5221CC7C60B2F9C9858B83C77DCB2AC8BB66D2F8D8F8FFBAD5465A0E6824448A53D9F24D3C0ABD9E1CA2C045F0D9C0FECDD89DDD7EF82E7B9D0418033E7CEF9279EFBEE3100534110CC03A845E1C0C61AD73B3C883327C528FC841875853FB17DEB300EBFE520CAE5121CDB8601F0EC33C7BF03E0BC52EA92E3382BFBF7EFF7B3C2815C40498F582ACEA86B0E9331ED806933D55522E0F0A103181A2AA3542CA25070F1BD67BF3B73E1C2B92744E48D5AADB600A0BE91806F9A51EDC720F6279B25935CD95709305619C650A904CB629C3B3B113EF5E4B71F05708199678C316BB7DF7E7B90F76B394F7B2A1EE576582578EE996FA358F4502E9750191EC2C8F0102A95210C0F97512E15E1153C58967D05F79A6A997C761A2A7D3E5B2C15502838B014E33B4F7CEB074110FC9899A7C3305CDAB16347FD2B5FF98A484E0DB17A5FCF1483E23A1545EDADFB5F2AC5504A351FD1EA04E6E6AA84567D28087574A3D230BA69698020081186217C3F801F0408FC0061EC9E9AF1B9043220690540B15884EBBAF8D6B7BFB37CEA951F7D5344A6822098039099CF0D0C9491CEBD68129E4E6295F35805346D96ADD7ED6935006C4BC1520A9EEB7696634413E8B5363046436B83506B2CCCCF63E17208264ECD1190BE45C37843C3712C4C4D4D9B6F7EE3AB7F09605229354D44CBDBB66DF367666672B329D3F48888440C255297582AD3320589164B7712D07442DACCD6E3F39298D05E8DC08925AFD27610143194A27EBA203DB922E7DD8444E03A0E1E7FFCABA76AEBEB27B5D653002E03E899CFE5068A9AB31F18002719D4610EE2E6488831280D9644377D900E304C31905AD3C4930E4280D89A16EAB8D81499244EF31E31D4F1A7FFAEF6BDEFFEDD37004C029849977737055404923A78F06041442C489C419DB8A9CD2D91F6DD3310635E1660406C9918276FF4D0FA4CBCCBD37D332FC9EC0AA55B69F1CDF76B8D6F7CFDF12744644A44DED05A2F3073EE702013A81648070E1C282C2E2E8E01E20962BA94D29ECE85A4C4DD59BB18D57E982E002403D84E6987006248777BA36766904EB31767265E5E5C5CF87F0026C3309C01B0D62F9FDBB8FA1099DBCE9D3B9DF9F9F96166DE0191424297E281669A6119DAD4EF61A43B2E8B03DDBE7548DBE63BF62FE83FA7696D69666E6D69F659005396654D5B96B59C279FEBEBF58E1C39C28B8B8B3611958C3195B0BE721C616D562B7B2B2B356C597631B49D8265396EC12B3AC2DCD69EFEA074EC3B716FDF2E06C622F0A85E2E71534FB5C8B367CF013A68844B3313CF029802301586E11C806A9E7C2E7778A0940AC330AC4A587BBAE1AFBFC4CC65009E8878003C638CC7AC2A96ED5EE7386E6964746CF7CCD459DF76DD82E37805CB760AAEEBBA5EA1E0785E91DB1E32233D429729C763368E18156353F764C2A40D4672B63477E1F5C0AFBD06608A992F32F3EABE7DFBFCE9E969912B48505B5D45DEB973A76B8C2989C8906DDB65009ED6DA65665B6BED1291474485083887886C11B189C8262207801301EA8A48D175BD2D8E5728BB9E57F6DC62D176DCA2EDB805DB753CDB765CDB765CD72B5A8896CAB6A6DE6863D068D4B1303F87D12DDBA07533BE6A3EA75F6B84D1986B2B3F68D482E5B9892F13D18B22F262100467CAE5F2C2C4C4849FF50F4E0CC42811112232D3D3D3FE9E3D7B8CEBBAF55AADB6A8B566638C0AC390B5D6966DDB8E52CA6166C7186331B3658CB144C422A236984AA98231C6ADD76BAEEF37ECD565B15A4012916B8CF1A2F72E5BD668D12B0EDB8E57B25DAF64594E51295510E262C3AF16EAEB6B162BDB4EDE8F4D325F8968595F9E7D8199A78C315344D4CEE7262626AE3887A7CE0A4A4AACD8BFFBEEBBB1BABA4AF57A9D1A8D0655AB55353A3ACA8D46837DDF57C61832C6B0D69AB5D6CA711C2B0C434729E528A56CADB5AD94B28C315604AC4D442E8002808288B8001C001611D9C6188788E260BA006C662E59B633AA945D66DB2912AB22912A805541843C801C1176B5BFF2467D6DE16B22F2B252EAA52008CE6DD9B265E9E4C993E195B229015446E0D9ABDA4A0070F7DD77D3EAEA2A0140BD5EA7F5F575F67D9F8786865410041C86211B63280C432522A4B5B61CC7B198D98900B599D98E58A98C3136333B00DC96891B63DCB4898B881399770B4C8B88486BBDC6CCE7009CD25A9F01303B333353CB536BDA3450FD6B3DBDEE6591D4BE382B01200DA6EFFB2D10D918C3C61865DBB6DD32F10850CB18A344C432C6D82DD601281091678C7122475435C6CC02B86059D6ECD6AD5BD74E9C3811CA55AA305E937F40877ADF0BAD2F98CBCBCB2A08021E1A1A5261187218861C0733D24B3BAE9722C24A293F088235CBB2562A95CADAD532B96B0AD4B504B3D16850BD5EE7389800605996A956ABE1E8E868D82AA1C8553C39FA69FE67E3728049597D36B90627F5FF018A3089B00C617BD10000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (162,1,'UPS_rackmountable_2D_(128)',decode('89504E470D0A1A0A0000000D49484452000000800000001A08060000007FC354EE0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000D4A4944415468DED55B7B705C5519FFF6FDCE26BBC96E366D9AA40F9294A6AD34803348B1908EE320C2A8807F7498611CB5B6A0B45494F10138E31F8EFC238A828EA2CCE80CF8C03F1466144751B06542DB901652DAB43469BA4D9A4D76B3DB7D6777FDBE73EFB97BF6EEBDBB9BA42D782627E7DCF39D73EEBDE77BFDBE73EE1A8C4663DCE572C50D060350A62497562C9BF8B58A5651D66AD3EAB3DCB9F4CA52A9046212AF1BA98BD74BEDF37F76BF39AAF2EB4422D16440E69FDFB2654B87C9640231A360D4BC6EA46DA5F446FA502A168BEC8528539D5F37522EA5EF073DF672DF6F7878386C068D244A4F369B854824C2165DCCA47D57B2ADD13E9439F31BC92434369B8D65ABD5CA4A6ACFE57290CFE759D6AA8B7398CD66D8B46913F8FDAD156B266AACFABA91F6A5F669A41E0E876162E2ACB24E6249C95CCF24A5D369181B1BAB32E9EA7A3DFAE518A747D7135EAD36B7DB0D3E9FAF22534AA55270E9D2254826934A5D2CC58456930940642E063FF9E973E5FBA0568141FB19AE6492D6C2A0B9267B77EF6202A097CCF5FC91D7EB859D3B77AED8942FC7BC374ABF5CE673A9AEA45028A08024E5F5C2B6629E9544BF7AA9044603AE83D98A3593869218AAB4BF4200D0C4A562B158DEEFF75BD4E687523C1E87A3478FD605621F74D90898A2E47038D074FBA1A5A585E5E6E666D64E964ED478CADC1A700BC0E7210BB07BF7EE8A7BA02CC2C76FBB15B21FCDC178E654159B829E00CC242EEAB271B9747AA4A1D20E78E5B997211A4B33868B494B1869CD4878D1B559CCF86FE0CC99334FCDCDCDDDD5D7D7D7A6F669E4277B7A7A2AFC2FAF4B2F2E69A1165DCFAF374AD7ABABDBB47C277F71AEB1BC6EB15898DFB7DBEDAC2481203AF7F5548A9930901A03D01C6A01EBEB5B0F669F135EF70E43C295A85A747F6B10262333BA0C5E2E7D53733F988F38A0B36B0D44A363C85DA32094C60AA6F3B541212F8E8E8E4E2E2E2EEE31636306DBBE848B71ECE4C9938FF7F7F7FB448D2101E8EAEAAA32C3CCA4947260B71AA16070B285D432D50B0B0B30393959DB88E9F84C11AC2C87AEF5F27AF7D29B47B434FA96A504816010D2DD29482C5633DF6430610F7D5CB012FA807B2303A5669B1D8A04722B9E1DAA46653219181919790F2DDEC7F0F9E7CD02DAFF310AC19AE9E9E9073B3A3A6C5A6655F48F1843C281BBDB6143A7071E7C6A1CB5A29D315CED42D0B2C0912347744D77BD58BFD1FD85465D80D3E964C04FCB0590C917CD7E2D1730383858616EFDADAD70BE699A31A324D867AA6F6BDB0AE1E405544EA364B355CFF491B601A44FEB0A402D7AC0DE066687152C14CD1417515A4CF273C959F0FDC437E4C524BEEB1031BF220AA08426EFDB1313139F0B8542DDB5361868B136AE2AC28E6DEDACEDD3373AE1E5A30BCCB772B3C30561FDFAF5D0DBDB7B45F611F8B5F8825733FE161DB1B7C90B61CF2CD82DAEAA35BB3E741DFCE6F48BE040E1D302DD44FFF5A917C0866EA9C40547E8B32DB005DE7EEFDDB282097D7C362F80C7046B7AD641328ED6A75084778EBFC7D49FAD8B6003D0122751D11FC371E18A2840606E16ADC02F506BBF1F080434994FFE309B8AC123BB06213C7B095E3DF43EDC77FB26F8F7E85BA83176163588634E9C3801AFBDF6DA87261424ED2541E556804A1222AEFD7A591D063EF4D0437C530DB184153C4D4D606A3283DDE852B49CDFD78AE6D9E674949F4B60A2345EA08B0C964BABCD013687241C4A1F796CABBB15128E1CCC2C64C0D7DD07035D011480138A0B10D3B973E766907FCF5785812A2BF02F44FE0B6D6D6D5E35F30939924FFFCA1D1DD0D6E2807B0EBC044FECB9194C46031CF8FC3AF8FAB3EF332C40998F09A26FDCBE7D3B63961E585CC98610AFD7DAFC11770BF94610DF04E21B411C00223062C08F4A0E043908E4F39441A0B4C2A18E10184DF82C1E23384ACE2A21B4A280D865ED57339F814A02A55AD68103711A8F42A7450BB803102F4D29F76A6BF5B3F9E500500101E4FBB1FFF112C5A9B50400D349F4EFE4F4BC6ADF4FA6BFCB9F877B86BAE1B77F3906831B83D0DFD3829D0A70ED5A2FDCBAD9026F9E89B2C5E5AE80169242C95A91801ED2AF15018874AD48406B678D2378C20124A4EA1D4F8EF8799D321702710E7ABF0A84EE6B013B32A9E03680BDE0ACB23C26BCA7C3E52A335F2508669CCFA166B0C0683E5E792FFE2CC470B400EF16A48D1E5FB317D67476942DA4B102F9132F8635378254C9872F68523F082D4662610E1EDF771DCC44A2F0AB3F8FC08B3FBC1D62C85C9EF67CA61BDE78620401A293812BD23662FEF8F8784307428D1C06D59AA3DEC10895C47C32FDE4AAE8192973E1E6804FCCBC5D9C8BE6B8E9A69BCA2EC1EDC279BC3097996756520187DC046353295FB6C9EC79F1CF4825EA89C968028BD5A6B42B1187CC64AB6C21AAB67C31B7BA5BB090E675A31B59DFD35D15FD088AE4AA2B00D8B9DFE3F1348B0B485A1C8BC5E0BE211F74B75BE185BF8D4367D0090F3FF94F463F383A033B063BE0996FDD02FBEF0EC2F77E1766713621620A213B3B3B75011D6FA792FA8BD7F5C688A05034F37AA5D69E391F478CE36E8E978C77586A01C18AD02A9B038BD904F64B36984DCF576954D69B83D45C5289CD0C5C38981023DD8DF448521600A90DA54312722C0BDE021432058946ED6C0D243ADA2C686EF2E01A1861763E0AD1D8429997EC26D2B3224F69AD06EB0A00FAC4075043141B470B405AD0E64AC197EFBA16572B0BF70E75B27C7A2A0E1722182EA5B2F0F4376E64B49B377BE1BAD72FC07824C284E0ECD9B30C04AEF4CCE07201C17A20503C1310DBC4F9688E7DFBF695774BA33170A24BB1272D9089A765ED2CDF77B13D8F02209C271864E6C842906F23014849ED326325664BD7F9961C1B2F31BF2C189463990508FA7DE0F3363145085F9896192FDDA75852F84AF45E1CEBC0E74B6B0A00123723F8DB4C8CE3D24EDA3F3F370B4F7F7703980CB98A17FBCECF86613E9E853FFE607B05EDD15DABE1B38F9D66072F04028786861410A807E8449A16F0538F1143403114D4CB7C3790FA910FE799300107811CF851298242ADD34049F0A4179E989C020FBA01FB8215B2892CC6E3DC4F4B42B798CA437A3E55B1296310766BF2C91C24C9021825EDA7120426E73B5080703C7B4F63B9DD60420148C511F83543FFFA2E989D9E81D1D1772A9543105C0CC9DBC7C6C6BE89D5C7AA04003BFB91F1BFEFE9E909888897B4E1EE9B9D30D063671A2EA68E560C7F1C4678F77404AEDFD8A2B437A3A7D97B870B7EFE8F19E663E948B21E88535F6BF511B79FB5C6EB013FF5D636F970D262CA1C0C72C0476899EABCE4DBC1E25C34C735D75CA3BC6F3A93C6B55A8426831B8A8B4526007432582A90E09520914A422953841C0912A395CA560279148BC6211FC3C803C1B44166B25166305DC731BE2F265038114C184C325DA6CD25A3B0DA1584523609CFFCE8291C67A9C21A7C6D42A190656262E28B28C0AFA0601F5204003B84D044FCBDB7B77703BD9C28009437F638E1E8C939665A987B9225F5FE4FAD5116E1F8E918F077A2B23380A006AF6821E97B0291C9EAAC0681CBA5D73BD9A49218DE84313B47FCDC329099A767A5CCC11FD5A9A42CCEC3C3DCB21E1B2093CE82CFED038BC3C2985F2CC88C2E14612C7A0A3AFC21985AB8A0B4B1B59285E1F8C51310F4B4C1F98569E94819415DA188EF46D95882B7C363E0B3B4403839836B5F6442506456A008D114BA1F0CC9D99C920FA9B000E261105D6FDBB62D74E8D0A13FA0E2DC89B4C3188158BF869AF0F0BA75EB3A9D2AA449669616EBC93F91F959AC6B9AC583213293DE6649DB76ECD85105F8B440603D7ABD31A2B917CDBE78CD858603471AC7059DF08E5E16E7D2C21D333317A1736B08EC313B632ABBA7CCE053F909B8B67D03CC1B6365C6974A8AAB38959B80818E5E9837C7416BCBFF44621C06027D305B985376F8183EC03292893281CCE7B2786DAC3AC7503F29F1E5861B6E58353232F2571CF74B332EC4A37D7D7D41BECDA89E8034E5D8B163576C07EF727E5CD20808E41F848840905B0011F8F163613D10B87FFFFE8A53B7E1B70EC3DE4FEC86E7132F41A6902D9B7A99D9B6263B380AAE720C5F14B67CF1CFD66C0717D259E0573E632A6F26793014CC39CA11A66CDEDF8E8F2100B5C305D9CD820A67F0C7164342C23D680982070F1EFC82191B0AEAB048F49FA4C15BB76ED5D5742D60A7D7A6EE2FEE0CD6A2D76A13EBE2B38BA19F98B975A231EC148D0E6F0410C8411F8DA792B49FDAC439C5CD27BEA9F7EAABFF81AF3EB01B3ED97C0B1C891F57E037BFAFAD6486B58E5512E3A1A48CE3F1BC1DACB0CEB59A912456942A64C00E1658EB5A550523E7E3F3F0E6F861F8EF1B87AA15A1C649A9BC6E8BEAB3802ACD210B303535A5E97BD5004EAF8F1AB82DA74F23F7D4F2F96A4C40E11059018A8B4993A9CE4F0345F0C73100CFE23C1425AD5EBDBA4245D3D8E7B69D77D65CF42BF545D0BD703FFB2A487D6FC26A44AFF94550BD9D33D1EFA9339FB456E663B5E6E08CE775BDFB349AF59E5F8D6B44AD1633F7F76A6BC0FBF239E89AD2DAB5DDF0C8813DBA5FDFACE473F1A58C51C209158DAC5B3A15AFF97D84B91EF30960D007904B3DC61577F5AED627E25C88F48E7197F37D60AD72663A0C36ABB1DC6E84CA6F0B3F249F9A6B7DD0A2E02DFA61083239AEB1C74E3F0CF12EE5471A97EB871E2B99F34AFDF0A2D611F34AB5F82AFE9824A2FA6188E77F01E3B99D6663AA070000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (163,1,'UPS_rackmountable_2D_(24)',decode('89504E470D0A1A0A0000000D49484452000000180000000508060000005F3F2CBD0000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000015D4944415418575551BB4A0341143D333BB3CF48DC2406D122687C442420C14EB017C4CEC68FB0F18FC4DA4FB0B3B3106D44141102BBAE139F6459CD3E9C3B90C28133DC799C73CFBD97F5FBFDB85EAF378BA2E0BEEFC3755D789E674031DD71CE31994C60599639C7710C296DC4C988FD641934175555A22C4BA002727DF67D0FAF49A4847E3CD34227815361267091E60ED234D584CA10094208E4796EC46DDB36C9984E1A0E5AB85ABDC5287B8327B419E19BF87078809B8B6BE2DD71A5D42939DB1BD8D8DF16A8D56AC62963CC081348544A6962AA86628B5B98EDB6D0D958C7FC6617736B1D2CAE2C235C5AC0CED6AEE12749722EC2303C46FE09870159CA908FC7DAAD3449A66D215025D48269659C0B38DF161E2F1FF01C0D619712CD4603EFF8C253706F8CB4DBED23D6EBF5E22008CC0CA6BD27388EF36F16244ACEF55F44516466F0CB0AA6AC0F54A56EBC765CEA3FB4F8486F5901A55ED41FE9B2926530D0C8B60000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (164,1,'UPS_rackmountable_2D_(48)',decode('89504E470D0A1A0A0000000D49484452000000300000000A0806000000F2E3DD4C0000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000003A849444154384F7D555B6B135110FEF6926C2EBBB6499B26691A6DD55245BC5441F0C122BE08A278A93EE80FF0C59FE09B7FC427F1C5AA880FA2A828082A3E55412DDA4225249AA69B5B6B92DDEC3A73E2916D6C1D7232B373E6CC999933172597CB2D0D0F0F47755D8F8742A148381C06D120FA9FC57CC33036EC33CD67183CCF43B7DB15D875DD0DDF8CE5F27D5F2C96711C47D09BC9F177508794EB743A7CB656A9541ABA699AB1643239C28695CB65349B4D6194A669026F46B3E19227B1AAAA7F2F93068E8E8E828203DBB651AFD7B1BABA2AF6A7A78FE0C5CBB768B5D6E175C901FC077CFEF9A45F43D888415542D8BB77374AA5E21039D1D51B8DC65DF2E81A45510F1A2AA3CC984151944D171B2EB10476848179922F6564E43F7FF98A8B37CFE259F415AC908986D314725BD1A7DBC771E7C61C1455C7D4644EE8A160BFD30B85C2F5F1F1F1C4D4D4D495743A8D482482E91D0EA2868AAFD5AC4899858505B4DBED7F0C968B1DE715748C2F083AC9FB4127C7721954A34DD4F43564AC0C96AB457126154B61C9FE0E9F82908C27F063AD2CE47798133870681F3ECC7FE67080EC7EBFB8B8784168A457B8C7516105AAB78EC3BB22B8742207AFB52278C108068D0FF2A48141A7B692659DE9F408F4BC8191B1310C65324813E6354C34F3243F4569C8D8702C9C397F8EF2C967FB51ABD55E931E57E407A54A8215F3D35F3EA6A25C59C173AA874B472DDC9BEF0807645EF7D31284F37F222CF7831197C6F71C506059261C97D2A9497543B2DE1AEDB1B346086144A08655C4A31606B514545D85F9CB8466C47B3A7AFA84729D18FAC4C4C42C7FA48C9F989D99C49B8F1DACFF7271723A82A7EFE7E9C26DD80A822F14A425964B820894EFC1AED6B0DD4E6165F92792090BC5524114EC603A86825D80464627B271941A4568610D993D0398BBF500AAD60BCAC0C0C00CE98AEAD4461F66B3D9537C79A1E2E1EACD4FBD9CA6E2BDFD72198D964EDDA2F5D758D9CE82B4EC3EB248FB5F6AB3175BF8F20DC7133388B74C74420E624371EA481E1ACA3AB49026642ACD2ADC36B563D7C3377B11F7EF3FA26C31C45E3E9F3F4875F950A7A23D222F58A97B28561CEA3C3EB8F9689A4F0714A27B39DE6FB8A48386F73BD0FF023DA0D4E9BAB0DFFE407E759052C2C74E3F25F29B8F6EF33302F39F8594C8F9C7F34FC4BC913387755A96B55FA1CEB34473400C326246649FEF6FA5C16F96E91F787216B0D17216C8C2E60EC6C387313B4C17231A8D296250513AF9E205370E2DC9F73C0E525760B147FC52B1E893AE1ACD97FA6FA944493536B809A30000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (165,1,'UPS_rackmountable_2D_(64)',decode('89504E470D0A1A0A0000000D49484452000000400000000D080600000019AF686C0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000005A74944415448899557DB6B1C6514FFCDEE5CF6327BC95E923669926E8C498C4629A288D0F6C582855A2F20142D3EF82228F4A1BE28F828883714F12FF0415A44AAA8B42242F1A90F626B515B4D425B6A927673DBFBCECEEECE7ACE37FB4D27EB26D66F397CDF39F35DCEFD9C553299CC423A9D0E0783411024038180A6AA2ABA38784D340F67D0344DD0FCFB1824CD7F8687E338E8743A7DE77EB0DDDE76BBFD2F3AD376BAB3DF5D74C6A2B9BCB6B65657E3F1B83A343434ACEBBA102C9FCF637373530820410AD70BBDF47EFB1445118F4A904CC46231ECDEBD1BD96C168542C1037EBBD56A89B34F1D7D1AF3F3D751B7EAA8D76AD03A4047FC68C8FB18E9382EEE92091C77CD1F691D8A445D63109E4884B0BCBCAC911262C4CB0DB5D96CDA7E0643A1106D4AA0D70BFC96EE87FB3DC2FF9DE9FD2C22DF8946A3C24B78AF6118026705F0A8D52C7C79E62C46F60C22FD6802B74B796F2F5B5E8E9DF0BDF131FC74E602BDEB1AE3D8F387BD7DC44B47DDD8D83841D6FF787C7C7C9A89E1705830C2DEA0EB1A5D16A0B52184625AB55A1597F70ADBAB3089B302FAB9267B1C833FACF85DDBB6BDD0E1733C1E3AB80FDFCD9D43A36D0B3CAA46506DD53C4176C29F8D3E87D5CB055C5BBCD9F54647CCA552899C6DF353B552A99C23ADBF904C26CF533E88B16564381C98B6918AEB383F9FF494625916EAF5BA10426ADA3FCB355B51E2BD0A609C9920EFF3629BF7B3F00C77ACA9887DE6A409C5506174E83E9041021A414BDC135488A250B839010FEF06891863B1518C8E8DA2B05E40B154135FF8DDC5C5C5775657573F54791359F597C9C9C94B940CF7CB50303A053C32338C6C2A820B576F52F88C0B3AC729258F1DE3BE97E60F31099C03A4D28AC5E2963CC00CB2E0D3330F203590849E0E61209515E7A6CC1C162A37A03BA608F8297302F3E56BD0DB51F17D3A760FFE2A2E4275C214FE0EB2269D8B0DE2C9C38770FAF4D7422994E78A24C327BC56A5A61A8DC675BA603FAF2D4A3AAF3F93C6C52B4B78E9C87D78F54806EF7E55406220232C269314332F3DC12F30D3FCB874677F12E43BFC5E21BD4082AB3807996C1A5A52473C996287C0687C1CF950D90D0F82B1D8386E1B45EFFEB1D85EACE805213C83DA31904AC6313268BABCD01EF2E202ED6D6C5100B9FE9C6470DF9E22A64606B1B4E2E0E4FB3FE0E4F1393C3CBC8A3F2B03C27252E8BB857EA590730D859D487A4CE3C121C621C81EE02A0042199A1DC4FAC29A70DFC22079607E5528430928280F5650DA28D19A941D54602B4DB42B6400950DA422931920E5BA71AF74658D442269C2A3C447552880847A657676F67EE109955B78E3C549C4223654C5C2E30FC63139AC20773483973FF895981C124CF7AB12FD66067EBCD7DAAC000699FC782D1521AB001DC3D2D22D64F501946F95E1B4DAB8B47619954A198D9630207E5EBE8852A384A6425E4309FB629EBEB72A68111ED48288DD1B462A047CF3EDF7E23B8F5DBB7699547EDFA2E59B2A59E1ED5C2EF71A31A189326868F8E88B9B6E62210D535F84F74EAD1033018488C96AADED09E132A988B59CFB0DD90BF42AA1372F48BABC873D80936ECA482044F5DB69B6B1D92A239288C0B1E84CCB41DE5A47341842A369A34396FE7B6D1966280ADBB1851754DB352C5CB9823F7E9F27CB87C59D6C9499999913A40845A55A7C9C5C222999585EB7F1D9B5F296EECF9FDC24FE7FE7DE10304DD3CDDAF4BD5C2E735912099013227B002B2D3731E5E6A7850A0ECE3C46C26EB83D84A2A1665B24B0DBF418011D56B3E13543A120E1DD92F9DBCA55DCB8EE964006742B04BD1FA1A47F4CF52728D95A5242DC22341FDCAE1BBC1B90C9D2FF0E0FEA42BDF2C7A5B546DD1E95652F099AD1080E3D710067CFFE88C6198B129A23F8E74031D0C19D6A67238C8EA7008177BBC653F81CA3A3239898C889F22E77B8CAA09942608120DCEDEF93C4ACB65D8FDF9BDCFEAB23F4C376FDFADDF4F17EDCDFFBEF74C776FF35BA744E20252A87F57F00873E5D6DE9A8A9310000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (166,1,'UPS_rackmountable_2D_(96)',decode('89504E470D0A1A0A0000000D4948445200000060000000140806000000722B38EF0000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000009F74944415458C3AD596B6C5C4715FEEEEEDDF7D35EEFAEEDAD1F71126325A469022890A6ED8F2640790854A90868115245257EF1908A084580C44F90783FA5FE6FA98410555B902A2A0434A16A1C9CA44A138726F53BB51DAFE37D7BBDF772CEDC3B7767AF77D756C8B58F66E6CCDCB933E77CE731B37A30185C4826930D4DD3E0F178C0255186C8946D85EF90CA9375AFD7DB711C97FC749A53B6F9314DD32925A9EDDDF6B9C7B9F9B2340CA3EBBCDDBEE71EC77375E9D7A87F83CA2AB7F3F9BC578FC7E3B57DFBF6EDD1755D0890CBDDD6D57637BECFE7DBD5382E5909BC896ED46834761CD38EA440DACDA72AE24EE66F37AF3AFFD6D696206AA725FFF2E5CB37F44E88999F9FC7952B571C84CA47D6FFDF52D6DBCD2D1FB926773B9148A0BFBF5FD0C0C0002A950A6EDFBEEDD0C6C68628ABD5AAF3EEC9932771FCF8033877FE12CFE408DD9A5829A41CE07E4CF90FA5E27A68FD2659B2C74B550FB860F2FA80893D83B830F59F6D7BD6D5CDA94AC866B3E8EBEB73D0C92EC28D5895A7F2D5368F610BE0B2D338F7F89DD0255D967479CCABD7EB02612C58AE73A92239140A616D7D1D2FBDFC2ACDC7736E41F7B04BD458F3B85B0FCFD430784D9A508204D6534F7EAE759CFD4DBD542ABD4D942357E45751B6BCBC8CAB57AFB620B71BAAEF669F8AFC7656C016C00061622B600B28140A2D16C0C41620DF670B181F3F68FBE9063EF1A947B070721173C6823377C41746B95E2170B77EB3133FEA8BA0542FB7F093BE380E9F3D803F3FF732EDA5A900B874CCA0A0759759019F9E9E9E7E766C6CECD1743A9D909B64D31E1A1A6A41AC9C2C1C0EB7F8752616026F58B58E4E08EFD496A4225EF5CD92E7B64689FACDCD4DC712A415C8770860844C4B50B9DC003CA33ACE55A75A847234712FAEAFCC6C437527FE5022877756DE6DE13DD4733FAAA54DF87D3AEA8D26DA4DA3A9245EDBD4D4D4A5F5F5F54FEA26DB23F02409F53D12EA3752A954B01DFA6AB51A1E3A000C67C378E14C49A0501D77EDDA350E2A2D998D8AF24ED46E8C3BFB7097B1580C041641994C4628BF582C0AD4B32530719DD72CDF3B71E204F68CBD4FD4FB07B2A824ABF092F2D8E74BDFEFD70396B09458C08FCFE36BEB6E02DEC036DE44743F268DB7901DC8501C5D164EC96DDD24FC0B94019DA4FAAA13036813DF9D999979841470D81D0F18513A654F4F7DE6282DD283D7CE5F44B11674D0CACFC8C8087A7B7B1D144B64BB11AEF2550B50C7B9D343B735F098402000BFDF2F2C91912ED1CF42E73A13AF5BBEC3CAB222A789682402BDC78F482CDEA28048248A08598AA370BB2F188E2044EFA83CAE7B09E53E5A839A726643690C0D8F42A3C87BCFF00AFE7DE65C8B5B9D9D9D2D1058BECCC277076183907596367158150213B9297CE7F38378ED8D7745BCFAFA63A338FDEC8210020B91C72C2E2E0A2B50F37A35EFEF768E70F3DBE5DF2A8F5D202B9BC0224A1636AF9191AF96320BE2F78E1D3B86C1DC88D0015B10396B44C231A7DF4BFE3A40F3BA1540AB44281C127C4701CC17E39B7C499958065BC60C6A5A10F71E3A84B3AFBF49639B31607575F526ADF7C2B62C881F42CC9972B9FC5516ACDC2C23EA60AE8EA313297CFFD7FFC44FBFF5B0E03F3861E0CDB992130B386372235C523B8B90073775ACAC4BC4A8B9BBDAE66FD2015264365CB205B0B09958195CF2BAD922E4BBBC3ED3B68164328162A28148A829EC94AF877D8DA500C52A7A7D49E2EB4DBE4D29E29B7E2F5951AC5501D13E52808978344C71B4DF7265F67E785FB4BE0D55E6BA2B35EA57D1CF1BA816D770FAE9C378E6E77FC3070F64F1D77F5D11FD5F383580D77F368D1A0981AD807DEEC2C2828362F789B75BD9EE74DCED24CB82A7D3BB88434C2C74028E40BD5A325FBEC3413815880815707D1DB7B0556ED8FB26ABF04651AE52CCD884C85E046829454DF97B51A394D5EF0F5A6BF358D41F1C2441D71141AB0524230918548643418C0EE704F239D55592204F47059020EFE7CDA9AEE72B1F8D239DD0F0D8C3C362E2D9A575FC7D72091FFF70065FFB6C023FFAD34D8C8C8E0A7FCCA62D91AD0AB65D5BCDE5DDCA606A277849FCAD08F9645E2B5BAB1CCF8FCC8C788CAA00CBAAAD4CDD341BF01634144B0567EFF3C105F487FA50C817AC63816605CDB9E022D2A11E726B1B96F06D252C8596D017EAA58CA74A6D8FE079BCF41225F3C978148BCBB7905FBFED0461C35E1FAD2BD9560134A86F7070F03E35EB4987F2F8D2C78E52D25AC183F725F1AB17AEE2F28D75FCEEF48704EF23076318FFC73456367A857BE0A02785A10A53A68EEEB63C44B985BF930258C89DAE16E4915F923A46B3D1BE59DB44B01E40F956D94A0FA9BF681631309846F1E646F34845FF05AD806CAE071B37371CF47BBC1E143D45A4FB7B51BC55A480AB0925B0028A742E181B1A40C0AFE3BFEF5C7714206D2097CB65C96D9E2237F9AAA3001A9026F4BE343C3C3CC26DF6A9F9FC1A7EF3CC1034B322CFE808FA1AC8F5F92960517033AC094F7F318B277E7C1D7A202194E67629775AEFE47E24C938A00A5BCD84643624852FAE1E6CC156296DEDF1F5A1B149BC06294E9089CD520D957C4528857932132D054AA49882237C4DB784BD19AAA1B45A82C76E6BD4B756CEA3371EC6EF7FF93C6EDC58B0DD5933069002C24B4B4BBF208B7C94D6F8B64E95F7933FFDC3FEFDFB0FC88C860746C37EBCF2C63AFE422427D13C21C49361FCF6C51547AB2CB04C2A86AA11167ED91D80DD017637FC4EA9A8EA823813926E484D67B98FDD0D07623508F338E9878BE45AC7121308C402B6022C81EB11526A2228DAAC0493BF49A53740873EBF174EC0E0390D2BA21B5BF6BA1AAC0013AB953C12D1A8788FE526E5A95E1E1D397264E2E2C58B2FD21E1ED769C17FDCBB77EFB8DCB43C30546A067EF2FCACD36E1728D5BABCC9DC69EC4EBC6EA9A86CB3307B7A7A1C62B4CBE0CB07322E99D48318A7AB816054D4A7A6DEC213A9C711CDC448D80D1BF1947444B710EB279E2115607D732B4E27E981B893FFCBA7ECAF21DC13127C21645AF6E4AD4B78A0FE01CCCCCED3584BA61EFB70A71EC80E1D3AB46F7272F23956804F9A88BA4946175F47B44B13DD87AA766966B771BB39A4B54B45659D95CD2897C4EE47BA1DF7414CBE631DC42C01CCCD2FE2BDA9799C1A3A8EE9C2755BD024DCBA89BDE16147F0E092FE3452CEFEF8A875D76F3AD7A6D0EA06F6F178916A5A4A393F3705FF75BE0251EEF884D560DBA99F5CA84F775F39C8CDF261864E6D3B5E25DC29C9439A5ABAC774BA8E6070B04039B76762A1F37A19FDF22A82C97D1571CFD018B928BE56F0E1E96FFFB079DD70B72E43EDE92E6953048C60F3CA22E0DF76A9D8F53A9A1FCE95C7C7C7B75D94B5BB3C53FB3A5DB0ED760EB5BFD3A59CBCE296874079F9A6125B80BC8C13F939C5A754AA0F3FF8DE3785E00D1BDD12EDCEFC0ECF0AC2569F5537D8F16F7BD7D5273D89DD67D8A7E7C5C585F60A20D404666666E6647E6E2331D3C9D7EFA6DEADAFDBCF96EEB870273F3BBA7F16BCDB3F3B763A20EE761E22E727C9B5B535DFFF007E756B84B84A2F280000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (167,1,'UPS_rackmountable_3D_(128)',decode('89504E470D0A1A0A0000000D49484452000000800000002308060000005CB6028B0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000EE94944415478DADD5A796C1CD519FF66BDBBDEC37BF85AAF6327760E8C63C855078A0841490011481329294A45D3D2D296863F5AE56869821048AD68ABA84520558846A205A9AD90284514A40221690857C86528769C40421C7C26B1BD87AFF5DEFDBE9979B36F666777C707899391DECE9BF7BD793BEFFB7EDFF77EEF10D2E9345CE96BDDBA7575C964F21ECCAEC57407A612BD7A46BE75A2FD99AE360DD489609D4378DF673299DEDEBF7F7F3BCC804BB8120058BD7AB5CDEBF5DE8EFF4D0627C3371AFD8E2B65E0AFA1CD1E0203D6DB67B158F6BFFEFAEB03D73400366FDEBC803C5C100432F82A4C8EE930CA35028814A616D4CD3E02456565E5477BF7EE8D5FD500D8BA75AB231A8DAE96BD9CD282AF5BC9D7102046301D2430241289B75F79E595335705001E7AE8A18538BEADC536EF4134DF8E45C55752C9339C134CA4FE791A2A50B7FB50AF075E78E185D08C00C0AE5DBB5CE3E3E36BC8E0B297D7CD64AF9BE944D260FD24CA8E12180814A150E8C8CB2FBF9CBC6C00D8BD7BF7A2542AC50C7E1B26CBD5EA75571320F2BC13C67480F8435151D1DB4F3FFDF4F96905001ADC832CF52E99C091D16BAE55AFBB46BEF50C9B5D98CDE6837BF6EC19CE0B009991ABAEDADADAD2E6E6E67B5D2ED737AD566B131ABEE8722B7926186EA67FAB813A89582CD63E3C3C7CACADADEDCDEEEEEEC12C00A07707AAABABD1C602B084A1C482E871269349C0B10678192556A695F1CFDA3C5DF9E47AF942324ABC329842F4F2F9E446EBE9D5CDF79C4B26CEFB52A99CFF3F99FF2B540FFF2F8DFA1A4ACB42BA2120D266F4F0087AFC2C343AF08994AD979F4859A13A93916BCB9932B98E2ACF46EE57D3BBDAB209BE4BC3BD877FB7BFBFBFD75C28B48C8D8D4157579761CF35E2C113891C85EA539A88B720E0C16EB743494909381C0E314F320C95108D46016735E25D9BF8F68A8B8B61D5AA55E0F3F9612C1251E94BCF2BB53A9DAA6C226D8482013879B24DD113BBB3CBAC0DA1DA866818C0A94656D8D50BC593296343835EB9D1F626A27832BADBED068FC723DE592826A047D0982C8D8E8E8A6060CF7C5B041ABA2EF50FC2EFF7FC896B3F453F12B3BADC4BBA8209F4FE78D72FB7E67DCFAC35BA76FC21852D59B2242BFCD29DCF6B43B3CC25943C720ADDFADA909F4F96AB0E1F0EB521521B267920F1EF32B06B139527120955BBECFD742AAD327E321111EF0C5497EB2A227D586CF84D661508A4BE0A39BD5F04403C1E3F8764A064F6ECD96EA6101E08C820E1C489132A6F9B487EAA72A3F97CCC982FA3D05F5656A64A2C028C8C8C889ECFF2FC9DBF9C4E276CDBB64DF5FF765B31DC71F73A08AD1C8433E97359DF50E79E0D5F0D75E534E264E545E8F91B82F7C26BCFBF0A172E86B2F4A307462AA7E886B6379971EC5B89E3E28F31CCFF163DBD8A112BA634EAECB265CBB23C8F67F5E4DDBCB7B37A7C9EBD9F2FE9BDC32249AE3AACC3BCB7EB11435646EFE1CC47F966CA533979399F5039AA67BE2DAD8E28ECCFBF6E2E24DC69782F7118E2A94496D2CB8572E88CF7E434F064E537952F8391F62854FA7D08806096A1F93CFBDE818181F1D3A74F7F81DC6693C80110047FC171EDABD6D6D67FA0B17DBCC75067CBCBCBB3583829C261894189CD04C171BB3854F040600642A609A74E9D324CE826F33C91A911914002354BF4DD8C04925750D2CB6BDBA8ABCBAC7A536995DF0FC335615DE31717592199CEBD5A3B15F942C7F5602BB682C56697E887C00340FA36FE42474FA13D5AB04FABB03F71850422D1D98F1DFB3532FE3DF5F5F5257A048A1F2B8786C2B0FB27F550E72F819FFEF194E2555A4E410CDA08899C8ADC2811642490BE89BC9A45042A27A2C7481F2384B948A0CD66D30E32505A5A0ADD25BD6041706875774BD54DF079E8ACE810F2245C55E766DF37E034CA735DF9E4E5B63228B25BA018BF29958CA13EAC1C2114C4FF62DE4F510D9DFC4BECD7DD647CD52C802EACF0E7DEDEDE6DC8071A9867E9018114B4B2C9024B1BCAC5B2EFDD510A2F1E088A20B0720AA0E447CF58B3664D5E02988FE019912B9BEA7948200F4C36ACF03310520ED52370B321414B06B54492BF6856D1EBBE04368B336360D9D88BAB1641CB501BD830E268870ECA2DF12F82E3E156B0C9D148A923CB6FAC6C828F075AC08CFA55CA655999CD8B7F6E86B9D72DC4BE58404826E083F73ECE4C91B918D0D1D111C688B61DDF1DC99A06CA7F9A42033E8363C4B3B43AA8353E29801425248660DB776E81CFCF0FC23B873BE067F72F87778E1F87201226F204FE9D73E7CEC1A14387A68D08162281858820857D1AD288FCD1B7D29D4040E42F5FD292C0EDDBB7333B8BEB022E5709082E13D84D0E9597D365B1A2873A1DBAC6A7BBD95A8CE0C8BCA7058185C93950B0BCCF5901416B04BAFBC350E4AE84A573FDF0E1FB1F67868074A6FF172F5EBC84C0FE8F6A16A055141AF8187678145F28D17A3E0120180CC2130FD483BDD80C3BFFB01FF63E71AF28FFD596EBE1E1A74E8973642787748C26B061C386BC6450AFBC1009D4BEA347FEB4049011383625A53B25E6F93CF9A367CAB3727EE9968F8ED2DEC92C9A6C81E0B6802DE5507103C9C056C9FB758C9F9601C2E47A203093DCE1504FD1E5BA9568F48154A7E210BECA0AE98F05696D40C80CF1F4DEFFB2D601741CE81C86F89876EC270550E85F36B708EEBCB91A9EF9FB11B8EFCE06A8F5D9B15202E654D961E3AD4E78F3D380E8114C49E17018DADBDBF3EE294CB68C9F8918594F67DECA08204D0929D1C5489F36B1D541BE3D6AA3A6A6869918BCA55EB03BEC9074A5C096702A466620B0607DBBC39173C58E0042F2B4161CB29C78851DBF57AF6F552515D09AEC10CB7CE5A550870E97660C40C8EC395014C3F07FCC0800AAB183662D791215311A80C77E78337CD9D90FFFDC770A9E7D74357C7AAA5B3684003FFA561DFCB7A5058DEE50660EE445041CADE1F291BC4229D78AA05112C86637E4FDC459B4B30046FC284FDFAE5D0AA6A8A01A56D0F81E8F1B068603104FC6D49BAD648418F288F1A4F22C7DAE9411BF1F30B2D1F82DC87213AB2791370280CDA11E2258F2D83D585FD229F5A76ECE2CC5EB795D910C399ABF2000503137A2773879A452082426BFE3DB7EF0794D70ACF522DC754B0DBC76F00B51FEEF77CF633498078B17B8E0D12DB5B0E3B91E51D1A4649FCF072B56AC2848EAD847EA85F77CEFF0EB127AA44FFBCCED782AED3086CC933F16F6D9333F9464140B72F4888205DB718CD8A13F12C8F2A89837066303630A319756E74006000EBB6E940F8E66004132939CC77BC28543D3685C929B58423DD0820EC4A0D4530216D45D203404838100073F415A9EC6CBE572517F97150400A2E411AFD7AB506BEA3C858F799551B8FFCE6AD44014D6ADF08BE993CF07E1C26004FAFA87E1B1076F10658BE7D961F50D0938DE75490C959D9D9D22099CCE95BFA910C14224905F11E4CBF8F6A88D1D3B762865814010CB1C503C6686F170840BE332AFF263140C8C690283A00022EECB0044900D2F01407A8E97E1FB83639CF13329341E065F05F6C5EB067391097A7A2E649029AE0308CADA053AD875D8B61BBF7B481700749013D97F3D198E790E79C65068007EF7C8426C2DAA52E893CFB7402C9E82979EBC4D343EBB766E9E051B1F3F0321445D6D6D2D6CDCB8D110E1D37AB5DE73AE55447E5730D78A208B00AC2D46065958670490793E3DF3D1815F4DE481D7D5D92D02C011B4436C04878B14C73F52F8FE581C22C131111069EE240EFB898DC46014238032A4992063647C8ED7C420820012D0C05A000446435081406E5A3007BACF7F05C78E9F50F603C4C8C801B7A1A1A1EAB3CF3EFB0D66B7670100FF683632F8BFD5D5D595F38716C81B7E70971BE6555B6830037E6D69F9420F0C8D26E06CD7202C6DF02A324731C02FEEF3C2536F5C12C7D2B367CFE6247346089FD13A460E72485336974200190964633E237DF44C7956AE5D085ABF7E7D66B10BF94332110797D9216E10A592F89F04BC2401310DC3911110D03FA2F198285792DC5E301882443006F1745234AAA92813E605CC87878620358ACE988EC932A99C01A0DE5103C9C8303CFFDC5E692D4030A9A38DAC9BCACA4AB3C7E3B91FA3FC5B08EAB7140060854654CC9B8D8D8D73D86A1E7F6AA5C26B85775BFA554B8C74DDBAB8426C7C682C09EF7D3AA80AC9568B09C7259332C5621B13468C9B8B24F29EA7070223277EA87FFCB8AE9D26B2B57FC60358E2DBD23E8B208844A1DC590A66BB4532AE0C0202C0C9E017505B59039DA11E09182A1000B4F69F8659A5D5A25C9CBBB35DC634452F013EE9390995C565D03DDC87ED625F8B309225250004C7C2602FB323E892E26E206F7CED66103DD352FFD1A347FF8ACEFE00ADFED289A0A7D023BE3B7FFE7C3F219B57188549F2903FBD81084608F39B3FCC207C08D66ED414DBA4C317CDCDCD05C37DA121C20849344202F536B098F129D4F3619F1F0EB46D688F56F65DE88539CDB5600BD9D406C6D491E88645FE46E8370524E3523BA9CC62CE39942FA959080345417E014199359C193D0F4BFD4D70213190218FF2F0D03F3E080EBB0DA218A5049D5D3F219BE4C3F2E5CBABDBDADA5E42DBBC6AC6822D34363036AC6D80A647348FFFBA56F0A67B8BB8100964DBC13C1164DBC13CF163DBC0B948E0CE9D3B5511F1C89113B073EDCFE1C5917F412411558C0F72A8B7BA2DE0483A44C32B53392E6F755BC19170487617B9429A0303866AA7056C5E1B28269509E427E17674321BF4F5F529D341FEC42FFB6C3E4292AD172F5E5C71F8F0E1F5661424F54E02B1449D45C418F2C65C642D1F99334AF8A66B2AA817B5D8A10FEDD48F7FE689A576138A547DE0E087F0F0D60761AD6D25B4864F4B464C67BCDC396E8306A10ED2262650F66AC4AC33668746F35CD960D2D0C04F259C511B5C6FAACF3AD31D098CC2FBED87E183F73FCA3E11A4710CED8110D441CA9CEB2410BB88007574744C69E1A6D02ADE7425BD5D41BD95403A0A469180DD49C6881F7FE713DF0E0D959B366D52E98A22E5868D5BC431FE725FDF87C3480EC994EA08408B73E244506378FED96CE4C06121431965EE85DA9AEA2C21DFB630BF97CFA680FCB130FE081BED6A92D7B3BD029E18332249D7FCF973E1F1C776A8F64A78F29CEB7BF2E93C5F3E974C3B742AC6C5BE044303BADEAF9A06E6333E91B8A6A6A6091F07E7CF004EC71171A36D4CE331EA82752EF4F5C84C7DE2EF4EE57F27FAAEDE30C081461846238FE88C6D16CCBB7211B35CCF85CA73DDF9E9DF54EE13F19CA9D6D5CA26E3F9F99E0B9D6F9C4474094A8F69B641E4FC3F51A43139B90A70170000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (168,1,'UPS_rackmountable_3D_(24)',decode('89504E470D0A1A0A0000000D494844520000001800000007080600000012F78DB60000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000001BE4944415428537D52416BD440187D93C4241B379B2D069658695096B2085EBA081EC58317112FE255F667F853F61708DEEB413C089EEC51696985B2B0B624C5CEC684266B373B89DF17894805073EDECC64E6BDEFBD89A8EB1AED984C267651148F68FA948BBE6DF27E7BE63F7844B0AB94DA0D82E0E3743A2D5B4E1186E193E170F8C275DD1DDBB6B70DC330354D831002BAAE83E73CE872435855D51F6CEBCAFA92C6D7344DF7A3287A2DC6E371D2EBF5FACBE51224804EA7F34FB1505996B02C0B9EE7613E9FD3DE35440B89C22A50D58A5A158D00A9A14E043CEB3A16F2EC42771C470D0683C7B76FBAD80A3C18761F799EA375C1C51DB2000BB1A094921CAD61DFF370F0E018879B33C83B292E470A47B766781E3CC3F1C10C459EBD35B22C7BCFF61FDEADB1E1EA78B3B76EC828AA86909145F8CCDF912855C30F6F20DCDA86B9EAC3B11DF89D0D74F3083B8BFBD87BF70949927C307CDF7F2554069928243F34AC975D22341BD2D6058B30290BB6A29C867D6160FEE51B4ECE4E615626BE777B48EA14FBE6E7E61E25F3528C46A3981ED8A7CEB4ABD9F39B50840DB20326E7751CC7D049E4A7AA446EE4BF5DD18FD020D54AAEA095A8E5797CFE0B3D41F780B88AEA860000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (169,1,'UPS_rackmountable_3D_(48)',decode('89504E470D0A1A0A0000000D49484452000000300000000D0806000000EFE6EDF40000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000004314944415448C7A5555B6B635514FECE2D9733CDADCDA54913A5ED90A1204E5141B0A320A8D329DA976A4164C0E7799DA73EF50F884FFD01E28320820C88A82DE30D61141D111D6674AA75DA899D264D9AB44D32494E4E8E6BED7497D398CE14671F166BEDB5F75EE75B7B5DB6E2380E4E32E6E6E69296659D27719AE865A241D6F79EEF67CFAD7BC0FA1F8AA2ACD8B6BDDC6AB5BEA2513D092EE53807E6E7E73D8140608A8C4ED31E06FDE4C3C03C02F85ED922FA9EE6CBC497B3D9EC4F8B8B8B9D873AB0B0B030D6E974A60F40BF48AA81FF0BE611C0F7D39549BECACE10BEE5A5A5A5F54307D2E9F467A15048090683E708F8294DD3C0A4EBBA2029BBF5FD380F322E7E4A69704466CEF39352EFB95E7BED76BBD56C36AFEDEFEFDF57262626B6868787135EAF17A55209947F471C382991F3FF01914824108944502E97B1B3B3233803387B7612376EFE895AAD0AAB651DDE36C185D3612E14E87004584F4C3774181E2F542888C783286E6FA35028E4F55AAD769D7E38230C1CD07143AEB9B9245555F1A0C10E4AB22C1BDF7C7B0DAF5DBE801FF41FE1D53C68B65B629F57EF232BC0B3EDA7F0C93B5F405175BC7AE19CB0D36834FED637363666E9F63F1E1D1D9D4D2693F0F97C188D5AF07B5514AD243832ABABABBCB9AF132701CC74E422E88B4587508B36B0A915910D8D61AD9C13379E0D8E61A3D24DF133E1D387F245338BCCE33790BB9B67EBC8E7F3B772B9DCAC4A40EC6AB5FA910CBB6337F0D2A41F175F49A0DDD875E71DDD9C75C839D5DC24D724F15CE63173698389D32439320C35ED432293412C398238F1443A8D38CBC463A9140663710CC6E30847A318B08730FFD69B04DE1611A9542A5F530D6CEBEC1D1785746066D2C6C66601E54A19D34F78F0E55A44DCA0AC0B4E1559B886611CA91777D1B12CF7CB06C0C4B6782D120EA163006A8B6CD8060CC7074553E0F1981830C3507515A14014F14043D834D74C4452816E74B9CF5A9648099D0C2AE3E3E3AFB3E19096C7DBE7CFE0FAEF2514761A98991AC477BFFD2ABAA94C837EBC3755647AB9F5EC88AC134E95BDDD7DA4B6A328E4B6C819139BDB39B13610F3E09FCA5DA8868640DC877BD54D681E0DA9F121AC5CB94A36BA1D8F9AC3F364D7D04746463E8CC5626FF04F776B1D5C7AF7160C5D83AAA958F9E50E8A5543A408AFF782EF97EFEEE29680DD4E48E76EDFFE0BCF85A7E0AF9B681816BC012F6CAB836ABB2E52CC6EB6B1B35B46F37E5344637D7F1DEFBFF7017523AF389FC9649EA9D7EB5774BFDFFF820C6BAE64E3CE56DBD51E2944BA72C075114A0621B9042A5BA75C7317BADB59B7BE5AAB63EFE7121E2B86A8A4DB1873A2E8764D07A79D0457BA68A7A3A4670B9FDEFC5CCCA53DFE1745E16985DE8035124C02788AF43ECA53453AC0397E5CDF97F9CF5CCA4CEE7740EEA547477431E6BC468FA6639AA662DB078F13EFEF70A177CF76E72C1F5C8E23E7BCC7A10E74CF215BBBF4AEECFD0BBEA900C29AE831B60000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (170,1,'UPS_rackmountable_3D_(64)',decode('89504E470D0A1A0A0000000D4948445200000040000000120806000000EB2FD8220000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000069E4944415458C3BD57E96B545714FFBD65E665F62593317B422C2111444B356A172DC52A36A12D2D0D6D41FAD582D8FFA2053FB51F03FD96624BA8DF248DB5AD9422D2A0A02D88C625518BC9984C3249667B9999F77ACE9DDCF165986C767970B8F79EBB9DE577CEB94FB16D1BCFFBF5F7F7EF5514A59FBA6FD13907A9559DF3EB9D5DCDDF488675D63E25FA91EE1E5B5959B978F9F2E5B9E7D541D98E01060707FDBAAE1F65A569DF0962B56C26F07614DECADE1A7C8BE83A8DC7887E20F9C64746464AFF9A014E9F3EDD6D59167B983D7D98C8FD3F2AB7EDB5E49C05E25DA2EE58A150181B1E1E9EDE9601CE9C3963F87CBE2328C39A957E613321FE0B43FCD3F071F06F72A83065B3D92B4343438535060887C35FB95C2EC5435F2C161BA08571953E6AE124628976D5CA5BE2715F0A230572B6EBF1ABE7D79BDBEC6C278F50CCFD12E58C85A5A5A52B848E4744B6D2D5D535D5DADADAE176BBC12437905104514C55FACE31AFE57EF558AE91633646A9541202702BFBD2589AA68104010906D33445BF582C8A35D16894D6A9E5BD560976D519E5D65ECBA375D69A79676B617131855C2E27788F1F3F7EA83B21C3944C2641161282314921B7D277F2E498159567AF7A41B41466686868402412C1F2F23209B628EEE5960DC0FB0EBD7C18C3DF9C07038A9567D728D8FAF72C38940A2A8FBF79080F1EDCAFCCE8994CE63E09D4218DC09E205E4578A994ECAF47EBCD3B0DE0A4502804C330E0F57AC57DAC7C2A95C2FCFCBC4001EF65A59334DEDFB717E6711333998410DAD00D9845B3A2C446E3372247307A7614E97401A80AD77C3E9FD21389C400F1467A7B7B0718B26D6D6DA0B01010F61B25D4191A8A6A183244262626B0B0B0B02D14547B5F2220100880528F303A4352E60D8980B2BB6DB41E68C7779EF380A7ACA04F27A315B31585371AB707DBB0A3A909CB771F4255D44A884F4E4EDE24B47FA8132347977D1C8FC7EF353737C7A58758A0C1570C84FC6E0CFD648AD8663E7B8C8563E5D860B295FD5A63A9389F29FBECFD603088BABA3AA1B08023EDE13123A00251DA5FD7E445201C167B59B9A255845DD418B2F06A1E31368AB6408C57A731DDA3D91A2C9A6F0E35A1AB77170CB781893B65E85335B0A6A7A73FA3D0BBADAE427F9998779C106DF153B2C89B68DDE1C7CEF0DC9ACC5AABE454CFD75A2FE3D0D997A1535DBECAF30A62F17AB8226E846331442867BCD4FE12BCD190E88789F675EE8787C734CFE3FD9D7DF04402A2CFBC8011C68AE6455FDF3EC2922DF2C2DCDC5C8A94FF5518585E4C5EC94AA1CDDC123EF9A809E7466F23E8B5F1DEE128CE7EFF04AE860E11A3B3B3B315783BA15F4D922F159361C0C4DE6F6C6C147D8E7D491C5E8C08DED7B5B31BE150189A8F2A905A274222680429143DE538561544FDF5082A11D1E7B31AFC7184B558F92E2277D14038E8474B737D790F998010B65241D8AAB5F5EEEEEE1E09FD81BD45F4B4BB70F244072EFC368553EFF7E0ED17D3B87837572939BC562ACA97D532802C77B52A01C3DC1912CE32290DC060C866D2F0150CCC4F26455A4FC6E731FF34297CC9E7261B9348CED1AF004584AAA9588C2F2193CA4221CD545D43BC23028D8C934E67567300380147686F27DD3D250C40A5E8F3FAFAFA762164EE094EBDD3035DCD22319BC4EE2E0F223E13EFBE1AC2E8F84D5ADB2292A133D139E3BDD6581A4312DFC3B1CE95C0EFF70B45F84CCE2F8C0C99103908128959D4138C73C92C4A050BD79237283473C89A39F23070F5AF719836BD2340954357313E731D05B584824263970663B70197B98C73DF5E209468C200547E0D7AF47DC1B94F27E5BFEEECEC3C49428BA0B4542F3EFD9232A6CAC2ABA2BDF4E79C5024AF4485F02C2C27C55A49AF3A01F23A89006722E424C8C4677115E0968D2211202D60AE14107507E18DF960152D9AB310202329794D8CF35681125F1DAC154B6C5824657D86971E44965076D95CC2A3A9493C25D4783C75954AB367CF9E0F6EDDBA55D4C9E2474910B784E862BA842B89CC1A0F3EA3DC3AFC679E66E565EB2C8B32BCE43D5CFEF8E3397E99A5D369F120E296C3838DD6D62E9E3098FD630647761DC093CC0C40E07013BEF30553BC026D224331902FE545C964A5E53B803D7A6DF226266EDF134F00E908FEC8E01A39FF35BD3A8BF373940571263259F6367A086D44BCD799006512E439F63CDF2713A033091EF47A70ECD8EB18FFFD06ECAB161AE015A58F5508D87AF9AD670B1635FAAA7292A78B3CF10B7E464F6F8F58E47273292FADAD42F4333441E45E55304A9075573F666AC5B4E43BBD5E1D124E9EFC2171E601672BDFEBB59ECD1BEDDB8CE73CD7717E9EFA29AA662B7F03FA37F6EF115CEA590000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (171,1,'UPS_rackmountable_3D_(96)',decode('89504E470D0A1A0A0000000D49484452000000600000001A08060000004821599F0000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000AC94944415468DEE5596B6C1C57153EB3B3EF59CFAE9FBB7642E2786D27214D1A85BA85F44102B1522950408814142144058A445441F9417FA02045A8A0F0871610215204123F9AE60750F81114BBA58196089A384A681CE71D278E1FB163C7DEB777ED19CEB933777C773CEBDD38B6CA63E4A37BEF997B67EFFDCEF31E4BBAAEC3723EBB76EDDA88BFB113E9591C3E8DE4B5CFA9640F0BCD59E2F51F20754992D49D4EA7FF76EAD4A9EC72E2232DB500F6ECD9539DCFE777988013F02BFE83C07DD06F4FE39C77B1EDD634ADEBF8F1E3E7F52506ECA10570E0C001D78D1B371E3301277A1C49FEB0C15D26E18CA265BC85EFBA5C2E57F7D1A347873E1401ECDBB72F466E657676F659DC5027B26AFF9BC05D42E1F492759040FC7EFF5F0F1F3E9C591601ECDDBBD7A3AAEA9368864CCB71CD265AFBBF08EE43ACCF23FD9D8441F1E3D0A143672B71572505B07FFFFE3504367E8CFCF8A7B11FFA3F067731EBEF99EEAADBED76771D3C78F08EA3007C3EDF2F6459F6E364C658B972E5465CB001496113A439452FD72FC7AB74AEFD80E278A177CB3D7E98B9333333E9542A35303939D983EF72C4438F9293EAEBEB6FB6B5B53523E04084C2B05ADEB7F3459E38769A576A9DB806039AC52721E0C69694080C3B0FE3D743ADAF84E837165ADBD7D7D7EFC603EB74684E0406B5C96412EEDDBBC740211EE73B8DF93A22716C7F5709D17CBE696A9D08AD1642A110234551A05028402E97834C26C3DA6C36CB88F87C4D6B6B2B3437B7403A930559D24172919AE26F98DA4A0AABE318AC31E7E9B679BAC9A33F71AC1B7334C69D37CE6452307867C0EE0D74B7DD6444D311C12E4795CE7512905DA8E504205A1F11699A6845DCC2C435F4DD89C929F8D9CF7F6D9D933CDE725D442526612191F9C69799004465A7C78D1A334B87A54D8B4220ED4924121628E5DA0799536E6C071C6CDA170804201289905F656BA6A7A7016FADCC0288D0D7B296F87C4D2C160335CC63CC2CACFF681B043FE18781E45C6C7421685CABC5A772BECE805F75A709CE9CBA68258A5CA9EC0FE14E02F8DCA54B978EAD5BB7EE11510898D742434343917673803C1E4F115FD460AE814EE372F3782B6ABF539FB49BF64744EE880441EE880027C29B387345C4E76BABABABADB305705DFC63EBE178DB71C86A390B90F6481CAE4EDE305C88F0B485E3706DAA32FE939127A0E604FE96F62F74739EB9A06C03FFF6EDDBC3A828AFB971C31711D8672E5CB8F0E6A64D9B9EE1A61B0C06A1AAAACA0A94F43485A7211272C38D7185F95E31C0F6F6F6020AB228A3592CD95DA2DD3D12D87575758C3089606053CC22CDA79613B7007AB66EDD8A31A08DF5E3AD6B20DD982A029F9E6A5F641EC8063F5C31FFE36A075C2C5C85A61551181E1A2720E66172E5CA955B185F5FC6FD1E739B07BB8F2F3EDBDFDF7F76FDFAF5713B00E463F3B9347CE78556A809FBE15BAF5E8682D75BE4B65A5A5AA0A9A9C91288E893ED7D51704EEFC4DF15359F670FE21A6A691EB94C4EA4F9D48A990E5E24616696854554AC10C8111982A860E68F31187DFE00F851B1400CAAD87AF0AC44450A8124C62CFE342A519888A6A0D08EC15EF6C0C0C088210073CEF8F878617474F4157499C7580C108270221C0E9FC14DC74510E8210D7BAEC30F053CD83F3F1884AFED88C091B792E01584401670EEDC39C7BCFE41DB72B936EE13A2D12834363632DF4EFBA37835353565118D2913E24F676727AC5DF708C3A10A852187BD6849AAA1BFDC35294108E5D5628BA3984319D774B838E331F94A2E6C8D891A4351E8F30E81148EC1A776AC81DFFEE67523D89B96824A3E8CF1E908DF97DB765938899B7E9E80E59B207F5A254FC1D79F7B0A5EFCF10978F57B9DE0F3CAD075FA2C8CE714CB3D6DD8B001E2F1F8BC0CC5AEF1A5C8E92E60CFA1C58C46FCA668015CFBA925122DA030639C331256215B0DA004540B68450E8214F08032AB16811F24BE5F0605D78B561194038C1F52D5B904017FA72154079A2EA1727AA0311665C0F38C88F68D7B9B104B146E5B54CEF183D243074B26A6E047DF8EC3A137FE015FD8DE8C5A950452AC9776AF867DAFF563108C33102E5FBECCACC0EECB171A2F34C7292D1663005900F97F6AB90590DF175BE2F375DBB66D83352DEDCC0555630695F64D028ADCC8535C12D4FA6A21A717C0EBF1B3E485ED05FF1AFD51D02404DA152ECAC49ABC0D40B706058A055057558BAE4E83FAEA08C45B569BE799B332C47746C4BC480098DD6CA7E0CB358FB47FE7660936B604E1E4FB05387B7110DEEDB905EF9C1984AE5F7E069E7FCA05BFEF1967AEA0B9B9990545AEC9F6CCC6291B72E2F3BEDD0278DAA69BBE97AC943220CAC8588CC2BDDA896741B48E8465780153D0491D52A84C56E1C627B3A09A484ED10C4B08630137F25548A613C63A14968494F027D97C54591C632627633C903161F1B921A4F86164EC3E4B02D8EF81C4F1A7FDAA8E02C08FFB509B1EE75A4866ECCA8FC277BFB2194F9E811777C7E18F2707E0EDD3C3F0879F7C12829E3CECDE5E0F27DEBF8439B80A23232370FDFA75C77B81BD5FC97BA70C88F749496A6A6A586A492DBF07501624B6E23DA0A3A303E3C5470CB75AC84360DA0BE9B1B4E56A527A0AEA6211488E248B6A54492909B5B18D90184B30E039A55D29A88DE2FC8924022F1902407E665D169A1AEA59C0EFEFBF6D5A9264C580DADADA182ACFA3A820E72D0110F868D66FAC5AB5AA9DBB1E0A643FDD1B05BF9C4786B1A14B37EF415500A0A60A199A11E07EF0D506D8F7AB7EF4853580EBE7DD70C59B6E257C7E2FB05FC6C41840DA4F4220E2A5089E3693DB21E2F701BE8E02B76EBA030ACEAA1C8642B6001ABA0B1D4943C06694026450289AC603AD313FE7C1347728C1809664D276A3CDFB50F063299387E476C178F63EB4AC6C80F7DEEE823F9DEB352DCEB892D119315B5431053D62569927A816D4801B7FB3ADADED093469170F723EB70E03A33978BD7BD0D04AFCC0EA1561F6B1DF9D1C35F25BFA2882555BE581041E98DF9CC5DB6DA97A4FA95A12E78B7EDF5E96A00B182909CD2377474013A8FC26CCFB622D88E66096C90262369385556A0B78156F91005C18543D8A07C73A1302F199D1B9CCE08B7C49C3D47896AC4083993C06FADC4C9150C632F721E4F3C3ADFE01484CA5E6C5343ADF962D5B1EC38CF11DBCD17FDE8D1AF497D6D6D60D5EAFB7C8F40A9A0CDF3F3258040EFF801D5CBBEF16C1E4633BD8BC15DF8BADD3658C1381CFC9A9C249BE9FFAE24D98C711EA5FB8D0075FAAFF2228F715562C634220AD5725A88AA946014DE38115F91117A833AA5584B3B2C6C02CF8F05E64B84D23989F1FBF085BF547617870D8DABFA9AA737E1F9566F3E6CD9B7A7A7AFEEC46AD0FF25C5EF4B324104ADD4A15DC4AF59DDED9DDCD42453CB1ECE1A4FD34A6C0CB5D10116937F168CF5427221EB920D102C855713F7CEDFA4D98BE96849D8D4FC3D5CC2D74A726D088517B7D8B212CC241E36EC8056B637196E598854EA3B8807AB216E733CC4C7C4F8F9E07CFE53CE4F2055C67FE6B5C022B7DE644E7C47D06DD4EA91E11F9D1BB77EF960CA04BC52F35D79E8A8A7D0293822F0634D6920028E852FA29B6621ACA52D79862552A5FF8E64B65FFBBB5D8E7B4EBBD39F0AD0BA6F3EFB8EDC0F3870E49A9A553CAE8943A2E665EB9F94E6508EAD33BAEF164CEE46A4808FC32C6FBFC22466B48587575F5F0CA0F5F3603AC66D5FB353313D274CDAADF5B2E48ECEB0FC6D3F86FE01E8686EE3897ADF11083E86A66B95998126B58A8CC5C2E8DB4FB72F11D7749957CBB5449BA547FA177620C702AF02D54FE5EEC6F3A7D874A3E54DDA1FEC4C484E7DF963F5A84A50413980000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (172,1,'Video_terminal_(128)',decode('89504E470D0A1A0A0000000D494844520000007B0000008008060000002B9216A50000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00003F024944415478DAED7D09801C6595FFABAABECFB9EFC99D40420839091010420847802020417451703D58FEAEAEA2ECEABAEBDFF5BF2BEAEA1EAEC7EAAEB82820203701428418CE104820E49ACC2493B9A7E7E8FBAEEEAAFABFF7D557DDD53D332191633B380595EAE9AEAEAEFA7EEF7EEF7B9FA0691A54EA76DB6DB739ADBEA61F5A6DCE0D8AA2546765D92A67B3798B288E5A04ED9EC19E9EFFB8E79E5F8CC0F4765C9B508960AF5CB9D175E93517DE5B5D5D7F792E9793D2E934D09EC9640AC7BCA240736363AAAEDA7757F7918E1FFFD74FFF6DDF349CC7DEC44ABBA10D1B36F816AF9CFF2062B9114195106CA03D9FCF83FE5A3FA69229D87FE080ABABA7FF96B3CE5DF7CC97BEFAF5B3A7E13C89C03EEFBCF3AA6B5BE73F545BDF74A9284AA0AA0A586D5620E963009DCF971E3B0E76C0BEFD079A579E7DC16FBFFCD7DF58390DE9490276EB9CC577D5D435ADB3582CA0EF56B0596DD0D2D20456AB95039C83742E05876D7B60CFCC6DD0EF3F08CF6E7B16EC0ED78C33D7ACBDEF962FDE3E7F1AD60A07FBB28D9BCEADAA6DD850045ADFAD560BD8ED4E587CFA62F0F97C8C9B0FDBDF84CE8FEC82D0178761F0E31D10A83D02E3C171686E6E9DB364C9D2CF4EC35AE160FB6B6AFFDC6AB58B922421C81298B99B0077D81D28E63F048B172F026BD60190C42F8DE39E02B0E75C306BE64CB0D96CD03A63D6756BD7AE754C433B71B354C24DAC5DBBA16DCE69675C4340EBBB058AA04B260EB7C29A356B60F69CD970DFB6DFC0DE8776832F59079FBCFC338CE323912878BDFE99575DF7C98FE2657F350D6F0582EDADA95E6B77387D92244211701DF452916E65FB82F90BE0AB33FE169289247476EC477D6D87A3DD5D50DFD8024E87033C7EFFBA69B02B146C11D976FEBC3930323A0EA228B27D2AD0096C32D206FBFB60D78E1760A8FF08F87D5E769D6C4E83956BD681009A380D6D85EAEC73579F3D7FFD85E7239036D0B9DBBC4F04BDFB48173CF9D06F40C9C661F5D997C24CD4D7555555E0F73A61EFEBCF432C1CB64C435BA16027D299ECD1BE01E81F0A1438DBBC1BA093FE1E1B1B812D8FFE16169EB61AD29EDB60D7C0CDD031B69E713B6D0E9B0506077AEAA7A1AD5031BEEB8D1DDB330A6875D55582208840FB64A0D3BE7DEB6668A8AF859EE0E93077EE2C68AE05D8FA6A33A45369167C218B5C1415DB34B415CAD98F3F70EF1F82A3433B1C0E1B022D94ED45A01389180CF41C86EAEA6A48A1FB158A01BC7A400339FC1C035A5555B62B72F6E969682B94B3694BA7E2F7E2E16C036400036C28BC1EEAEF0597CB09F1781C3CEA6638DA350056B51BDCEA3E703AABD1F58A9001A7EDDEBDEBBFA6A1ADE0A0CA485FD75DE9646288412B4009C8FA6B809C9C659C2BCB32D88420D44A5BA0CA7E043C1E0F04834170BBDDA4DBF7EDDCB933300D6D0583BD75EBD6E848A0FFE66C361D2ABEAB813903DBDC36B3E07A11E0440824BE93C92478BD5E102529AB28CA85D3B05638D8B4FDE6BF7FFCCC707FD72733994CAC08B2C600A5BDAEBE11AAEA9A99FB65CEC333B7CC62495A2D96B93FFBD9CFC6A7619D7C137EF8E33BDD5D870E5C75B8F3E0B538B0015194BAF0FD03D94CA6BBB3635FEFE0E060EEFDBEA9CF7FF91B57B7B4CFF86E6BDB8CF90E8713F531ED0E768CC563F0D2B667201E1E05399B054192544D13B6FFE74F7F741112803A0DE931C0FEC7EFFFC78BCF6FDBBA46102D9C83548A4031A529E84254418B388F4719FF4CE139691C5DE43C25A6E4F3E1BCA28CE07987F379657F707CAC23160D8F208124DEE98DAD5DBBD6B274D5799F689D31F3E659B3E79FE3F5F94487C3C14477281882C3470E1F1A1DEABBAFEBC8BE3B1FBEF7DE9E69288F03ECCF7DFEB67C6F4F8F44AE4DF15D661A15C427FD4DF86BEC1F43AC02230CF61A8D26DA4124638ADE00FC4320E290F19B198D72549A16573535A62A4820B97C30AFE48FA2F4D837363A7C00CF09E21E462251CA6FF09C73CE719EBEF2FC835EBF7FA6A2E4955060785B4D6DF50FFFF59FFF71CB34279FA0EB85064F166175E9C10C1D686E0773E348339B4B3AE85C02682C044DFEAD4E042A7B4F1590F3254DD59CF8B71389C06FF8C0454BC10256C90A36BB137CD5358094A609A2A05CB87E437EDE298B24D4BFAA45B2D017728B979F9DB1488265CEDCF9B0E7F51D23477B0EBFB16BF7B8B7BDBD7D666B6B6B0009243D0DE37172F697FFFA9B631D07F6D549162B7B0339081A672F0049CD412E9382643C0AA97802923C42C54067470E3237A0547A4FE580ABC67BFA6B555340557402A1F70CFA110C9F8A6F24A66FFADC17588C9C529A648891F1451B118B5E8796479F3C0963A3A3108B86B44307F72AE1B1D1A4266819BC2EAA193591574882286174D582283D46D299D4E16C36DB9DCDA47BB914892091687F729C6DB3DB531AE96712C1689C57F9ABE048CD329011138745048F5D00AFA842BDA880A02878061E5554E14A1E443C0A4814A0E440C4BF851CFAC1F92C28D93424C2418884421089C440CEC980CCCB443D814DC0130118C463806E4763CC88851B192E021BC537EC796317B4B5CF048FD7CFCE6B686A86AA9A5AA1FB48A745CE2B7EFCBABFA082504A4916B2D06DE0747BA11AB8AF2E0A288B04155FE72FB9EC4A5231698DEC1015094455A2E8B64572B23C9EC9A4C79048024A3ED793C9668EE473392A570E2281C827B918B72545A6A34536E8723609760426A308B8A35586423E826257124D19298B00163C8A121EC56286CA8A521D7D5D3C8A506F01684702B1318240E2C05D43CED4D047D6904074A290F19801359D0185A448240CAFBCB80D69070908AF61B33920276760A0BF178DB271686A6A819973E62385DAC0EBF3B372A5742A55B02B885C999A61AF3586BCC66D0D464E44A7A049F898282E043B09329D408C67B031D5E24682123811321A11055229F9CB2EBF2A8BBF9541699542A24D28AA12CBC9B9F164323E381A18FEFEC0407F7765836DB3250C8E20AF3B95CA804D4330349B2E6E556E9973318D06181B0412E11A1F0C7A0FE87DFC0FE900F2F83AA58890052B028F446293902804D2CD38A03A81D8887B459D68D867FC2890378012444369A022D0144039834A8965198920CB8E79390DA94804C2A13198BF6C39A096876C220EE1F111088E8C3069C26C048183CC4167F7C9D4906E711A513A8340D87B1A3F9F9DA293094A22324E6C78BE8D118811AF9748FA38C085D2A3B1B1F1C2DB6FBF7DF1F7BEF7BD5CC5826DB7DBE3F4500420DE3EC8721EDC82AAEB6060B30880E3CC06254FE792FE141040F6BE068AAA8B4995F96934C8921EF2C42F29EC039D60F40B093A17922EA78FF098E7E7D03D482845541C4C0D0752B339D9E08B480064AE49FC48BA1FAD3FA8D6F4EF2B2A7B139AF148AA857615558B4225C7A802D47C8E118F4204C48E19145919464C2A932821080D0F41281C864422A94F46304D4890E55CC150358CD692B9156CFC60E65B6FEE9E8D607756B2188F9B5D2E46CB79E42CD4BB8E5C0447D8020AED8215071F091B8DA73CEEC4C12A636B8901A2148843E74E45150A1241E01241D14F60EFE519F1E80420E12ED235D8792AE31A025F435B817D97C8502483908E2A3F6ACCF8A32389248511A0082A4A12058860ECF81A78264C372099AD005AC158CC292A24324814AD79B02E54A00189A2118984A91C942E4819A87A640ACAF32311081AAAA8EA8848D2F1088C0DF6C1A1FDFBD12EC9D9D1C168C09BA95CB0714F917156C45B605CA16573F0E1D5F3C15FE567949DC3074E219567F0FD742609D91C710E5AD9795D44AADC4AD7B8B6245147034BD118454482A02242241291F2CD646DDBEDA81FF98EEF09687D330EE104807A123994C0234220A0D92501540378A44391884CA43B6652897E5D64AEB7C85990BF064E18121221525902EF3B9ECE43129F8B1183A27FAEA2EA51552B128685FFAD16D2A62A12A98A624523A967C5D72EBCD72A151CB335B870F636D8F2D0EFE8B9DB2A5A67835E940B9AB1B3B14610050B64D1A0A28C9291792AA41FF9DF22B7A2754346B7E8459EB1D23FD3FD6FDAC96D2291AAF0693CE96C1689280E99441019070987DC3472AC05D2F5081E271645D1094861EA42D3D509120E219F8AC750DCA35DE0708188869584BB88469D2E199865C50047CC20490067F390921536D384C094445D75A9F49F2070235557312403F4A71275BB848885938FA06B7276460A89C7E274EB63879AA4E2C1160D4EE03B59CF8AC5050934D68A01159373AE714BD730EC34EEF270CEA66B28483039148BD974928149D3785C38282E9F57AF2523FF99139054486B0A2547765F825688DE693CA09345238D7CFFA1C30760467B0B1A956948E2EF2412A3784C2381284C4467F0778368AC25D1DA97F34840F89E0D5514BA6A487828F68990905814B4C215C9CE0C4AC18A44830403561708683358D0A0244220ADA414C057F5A20A6EA7581C6E6368BC950E764AC7DA001BFF470ED45047C793C98241A2A7138BBADD2001A1E8E4E8229C055214482562D07FB41BDE7CE579088D8C821325C4E9AB56C3BC5317416D7D232B42200E643CC48CC3891B13CBC69585E2D1614717C95A0D0974BFE6CE990B13E27CDC86D0833E50625815FFD6033F2974DD68A734294D168CC6E31047232D120D432CDEC70C5699197A2A1E9148289F4E04838444C412802A10FD4EE31EDC15CFD94C4F33578A8744112C15293E994E140752033007BC0CE035281ADAFAFB2A8B70BDFCFB67E0E15FFE0439BB18CD7CF1A94761F99AB5B0E9B3B7424B7B3B50464BE4396995F18C56222AB8FA2E109A2814E891E974D514B717387128F43913C35AC97D995F83C987A68207DAEBEBEA4BC3C260E403A0E48B5AE93FF0B9AF7D07A48699C687150DB6C874B6A07324895E95B92F3906405ED54AC4370F8E16065C33297BE333B28AC3E341D87CD7CFA1DA69873A971D7C360BF3A19D160BBCF9F276B8FBDFBF0731F49355F2A78DEF6AA6DDF45B2AFF3DDD04100AC10E104AF40A7701B5D2000B9412A8615B98DE80423A4028C903991242A5615D018A55342CC46B95D0E0B41BE3E3AA78314E8F4C204902E708326028A799534133236DD6CF06C10BC50F99058BBAF1AD1D2FC0F2D96D509D08D37094FC600E7F6777F761E83AB81FFCD5D5205A2C851F30B89B2C72CD887B09459B5A107940C4A44E74915DE434E316751B42287238986D0BA1C8BF9CE54DF1154E54DCAF3624079740263A611FDA6C127A1976E3EDCAE76C3D22A614DC0C8D59ABC08C9C02D799049CC6931F05C6D60CE085822A48E7F293FE20855217D77B61D70B7F40AB5C29E568D30E3C78A7998D33100AF5690407256754AD18252B66EC4A53B5A51CA9FF419D1BB299345339E41D14E2F4659C6BFE9E21FACD6CEEB0A05B6929542E9F049C4DFA4F51B84843EB98A24E38B43975A2AE3228BA40F1E5CA1CAF555DDF047B6209A8B7AA4C274B65D92D01F5F8787F8F4E58059151FC1DC6C95A31C853FC3DFDB7E83D19BF9B456229D5D94241D2085A29871735317E37938591D111D8F3DA2BD0DDD9012BCFBB106A3D0E98B3F00C8A329974BC50941886272970AEE7D7B75B2D2C6EC055FB4960A0A17C247745777928722433AECAE6D5C924B87ED44C62CF7416B94B754D6D6CF6C638829A44CBB5DDE304BB24C2683A0BE14C0E75B70459216AE2E242654C61800D2ED64CD63318FE7691EAC02CBB05B330174A01374433A9AB2307F7C04FBF783D0889317676D7FDDF07C95B0317DDF89770F18D5F4037D15622AA35D3EF08E6D83A818D2EA520594F26310E4C8C13E0B44B5A9E3D0AB91B66716DC448F40441A9EF6D14355020A3AEA50507CCC1406D4023CDC22374B50E1BDB49F43AEC76D4C162D118D3F4808966E2EE42450C1FEE2CB93D240DB4A27C15CA64B7505A6E536A8091BACAE7E1D11FDC0E62720C7C88911F7145B50B5A22045B7FF66DE87AE315282980E1AA402895DE0523D18A7EB8C873EE952EC609EC94C839DBD8815BC97973F0442BBA5C6539001E262DA24E29C8EAFA06F0DBADCC1237C4381DEB9C3698E975A161632D05BB106EE54906B30EC7B1CFA87A240CCAAC76233053446122E0A68F20158F42B0E7102CAA02B8A41DE0F27397404D532BBF7515868E76B2FB2831F885A2E55EFA3B68A0A1181738D8DAC9C0D9D4AC4641914D4093E1222AB2AE17F3C5812FF7ADCB8F9AC9BAA54A93D3CF3E978528278BC091A676B83D3848E204774B2D71BDF4AC9A01342F6E2BFC5649544F10A01CE372C38D36A7CBCD2278ED8DD550BFEA6238E353DF80CB6EF8B30277AA86E43049865257AD14740711ADC6C3C81A385B5B5BBD15ADB3A90821AF14D3784A36CBB25A14293273B0A1438B7A5BE3850242896E27E299B1EA3C18DBBE1972A120FB2C2EE75950C4839C9046C25A7BF547593E58E3E9D542D18166C4E749AC0BCC55035177C974D7ACC8D1E53DDC8A51BED2608B1EA0D1A9889231356DB3A0768E07DA2EFE387BA845CB57C2F235E7B1D7F1D1FE822BA699743F009484870DC0ABFC3E18CE64A0AACA0FB16884C478153D6EC58A71E24485C58BF32C61914AC650DF921827FF7B72EED42670B6FE8FCAEBD004C906E2C29570209C800EDCC7D0380BA4B2B03F1487819C0675734E6559A542E8D2A422349E02CD52D6C91CC92A11F94414E224809B7D2528C9E631D18CD2E4ACEB6E01B1BA19244751C52E58B2141ADA67413234CED44B91AB2773E98A17AEA9AE82642201757535744F1E7CABBAA2C5B8DDE1609C6D009E8C85C081522D2F5A20836E8AAA4D04BAC448E321CA7C5E46DF35C3A26381813E7035A2555E5DCB73DD028B7091D166F378A0BFA71B22E120A4D062CFA34FAE72A34865796DD4D18A5E4061F6BD550EB2CAED04ABDD01199442E59BB9A4C824CFD90BABC5020E74AFD2BE9692EFB87D3E7860F33618EBEB62491A615203CFFCB77ED16AE4E87432012DEDB3691844BCB7D68A05FB4BB7DE24DBED4E85B88CB89AACD56838062E210F39C1CAC0335CAC1223CAE412517FB2143E707074148E767540E79E5DE0C9C5E1AAB567C3F537FF398CE5018219192228CA0359056EB8E96668B469D0B1FB75E8EE3800A3230148C6132CB841A06715B5548F8399F3B582B54E862055924C59263A69385480794B578356B780F564319EE1E127B7C3B36FF64070A80F72D954411A185F2EBF8E41507E241241C942554383C1112D95ACB3C16EB767544571AB3C811043B1542B2A90058995E7549B8438F37F0B355BBACB168F8621D0DF0B163909CB4E990D676D5CCB0A12683BF59453D8C06C7EE877E0713961DD862B60ED2597A2D8AB831C12D6CE37F6C05B9D0760D8E186A6D619E0A9AD031B72AC08E6C08DA12F753D2EF2C1669C9DCEE85AF218801B3A980889A488E4F241D6560D3FFCF9FFC0D597AC81A79F7B19EE7CEC052432BC54FB7C4846436073BAF96FEB7ADBEC5B9B622DAC379B944B3183931364436583ED70509AD3CDDCAE3C8F69D16BD14A2D308AB16FC348E3044F8347F3AD828121B86CE54258347FEEC41F40B1F9B11B6F84050B1742381C86F5EBD71743A7F8D99A552BD87EB4AF1F5ED87300320846434B2B0B6C689A3936AE53982040216ECE389B8B71731CAE3CC345EA2087E7D1BCEE91C030741C3C08BFF8E98F61D76BAFC19D0F3C5D62E065AC5E180D464072FAC0A54F012E09A16A85A8A1FE1B5E5449E4BDD8BD9E8A0FAC30B0D1404B51A19F427A9BE2E354F24B7558163B2452E989110B136713A750BDF864409BB7952B57C2DEBD7BA7FC7CF68C76686F69869F3DFA0C78AAAAC04B614BA198F62C1880DCD0A023056E52E958312B566EA871DD9E4A25A1BFB717363FFE283CFAE083D075E8901E4F28CF9FE3B9F73EFA343CF7E611B8FA239BE0F22B3742FBCC19CC5D13C05491AA1553BB941E65603B6B2A3EF3C56A06A89C5834258BD9BC2D2A60B0D8209E4C9B8016CAA266024F7E08EF0EE521A7BBF18EB2284D54DDB12E89DC95276348DCA733E909DE82B9C882FCE6683802FFF08DBF85EF7EFBDBD071E0C0A4401B5B3AA74257E721F8DE3F7D1B3E72D5E5B073C70E905195953C6259E4CE8646A7D5E1ACF89CB6A1B3E3E46B1778883885381B5D9BF1C37BA0D76388AD42BEAF30F8B29C451D1786ADDB5F442E97596DB8DE9CCE82629A1FE96F0492CA847A7AFB682E35B378F5C2FC6237433ADFE7F7B3F263D588CAF1EA63118A993091139EC56E47B0B3257180895639B0BAB7FEBEBEE31A90BC29524A538CEEBEEB57B0F8F425E0703A8BF1002EC68D048B0EB6ABE2A3680C6C519492A2201539891E04391B9F025A9BEAE1CA8B2F9C20CA8D71252EA1FA6A9AB1918D46202DCB904B667861619ED5A19195AFE051A6627F7C4F8FD4E5F5346336C7A6F7907168B5DB10EC2A9AD603C941671134B1D49F164DD5B01D3B5F8243BB7796E85D919F4FE7D177C9889B356B169B9020E78CFBD1EF23677ACD8A22F96B632262C7FEFDD07BB49BBDCF88D666053B1E2D36BB3E0F4D23774E048BC35EF1F171A372204903C3734D3AF36A79C62EB99C3A25D02CDE8D0F4C860C4DCA6B6E693109DAA2D5A4F17A3095EAD1791D99C0B917F8D4603A8FA482052581DEDE4AD22B5405B3E12594E864FA6BE5DC19307FDEDC6270C6B4EBA14F8D81F7E99B6F62AD390C408DA6F546E37A63A773F406F63277053548C7C2D0B92FA49FCB5B7CB06B516819A55FB4F710342F5A5AF1694E03EC140DAE6E7871CD489C4D215365E214E8F2BA437A60D12A4E52DE2314FCF0B49C66457D2A5E976AC569721E894612E9A2209604A68CA0855646580562341989A5D523C28499A1061150D786C996C83008C3DC8ECBFC99602A979E6A1B0A04500DD94E0E6B9C389BF4A7C64B8274319E63432D1BC98C499E559B183D2CD998CB833A3D88227EDF9E3DF0E6CE5721120E81BFAA1A569DF7215870CAA950DB500F769B83578F96941B165C1D534D0298B0067349021CD3D59E081801B9038DAF871F7E986C16E62F9365FD99CF7C86198A5311CE641BD92382D57A328971A928820B069A00D9BCF2764359021298B24DA48BC9B7FED54F7F02CF3DF544C984FCE79EDA0C57DDF071B86AD3F550DFA0AF14500AA250C6D5C5BA374128CBA19FE046DFB9F9E69BE1DE7BEF2D4BA268F0FCF3CFC3DD77DFCDF4FEF182CDD4CE4950C02016C53837828CB1E39C4D410E108E89F5E449128A56A1F8DEFEFBA7E1F9AD4F81DFEB8253E7B543635D35CC6A6B04BFC7018FDDFB6B78E277F7A19196D5F57759A2BCDC95D24A2D825237EB0480BEF3CE3B4B8036DE6F6FAC659CFED0430F9D1011B1EE4D056661694E4B6573B654CAD91428A01739457D7BA4617211AFE0775F796E2BFCFADFFF066AAA7C1306777824085FFFDE5D70F5C73E014E97AB3005589BE4CA53BD77A29C4DD2E52B5FF9CAA49FF9BC6E10F09EEEB8E30EB8FAEAAB8F5B94FB7C5E1841F7934B07274F738E572A6727256EA0150C698AA2E1736672CAD4400BC7869DE2E6D14894E9B4C9F4684B531DD454BB616478580FE44CC8AC1D3BAD0A7F04D83D3D3DCC509C0098C70D3FBEE376B8E0CCC5B06FDF3E78E289278EFB9A75B5B5101C09B0DC36F7B3AB2A5A8C930B65769974CE46034DD18EC1BBC7368A6877BABC68AD8E4D094A9DDF03A3C343A5B56E93FDD214B25B3D41B00F1D3A348138E93E7FF0CDCFC38CD646386DC16CF61E89F3E3DDAA6B6A203216803A3436A95A05EFA8225B60978A7193EB25B0D224041BD99BFC4FCB24DC3969D8CA3C886807D43434C0E0F038ECEDE881DA6A1FAC5DB30CAFA7C03D8F3CCBBE4EFDC12949619E8C60245A3438B6B9F0C7E8EC919191094475CB8D1F8675E7EA4B82CD9BA5CFBA25EE3E6EB0ABAA20978841FBECB970B8EB30DD536B25839D2A77BDE474026C92063265BE1209D6A97F4A0637952B9911A26BCE43F7CAED4A42338A6CBFCFC30211141A5D7BCE5238D23B0C2EBB8515EB0B93F8D5667A9A60F11B7E366825FEF0DB6DD9B262870BD7AC802F7FEEA385BF17CED3E76D757676B2208A91AA3DD6E6F7FB4190E350D7D4C4C2BFA8035B2B598C272583B3F9E025D0E0A0A4842C3919D8C763A39517015AF0C13F74F12510188FC0C2F933A105AD5D0B3704DB5B1AE082B3CF80196D4DE0F1F9F552A029948436A9E6D078E8543A6662A37C1B1BD36BC5DD2E075C71D139F0A3FFF72516B933B619335A9000AD2C426688FCE3023B2783D3EB634122A4BCAA8A07DBAC1BE3C17170482AA4043BEB3372DCD6B8792A16825D555D07A2AD1867C82B7A4BAC3C07E8E0E10158B46C798133B563580593496C523FA4668E77DBB3678F2E7ABD4EF8B77FF82B701663DA6C4BC4D290CEE6DE366A66DEA82332B9AA76049B085C10447725839D62E2078A75DBD1588295266976374462B1B7B5C62793EEB4DBEC3604B3B84426CD77DED77194C59F696B9B350B39DB571ADD7A3B3D6D3A8726061E2FD824C2C9A5A298C2C048185EDD7D60C239A321DD7E2000172D5A747C8388D7A36940762A53A6B95F825091605B4A38DB28914585984CA5C04AC910BB07A2F1C4F1B9D865F3B73595A7026BE6C0BD0FFD82A523AB7C6E7455FCF0E0E6E7991F1E91255881EFDBA9DF8A2415D288256151B3322F7B4DE5C8C72BC6292C3A63C60C5AE015B66FDF0EF73DB30B96B6B682A34997BAE9BE31B0C5F4063EAB56AD2A5CF778FC6D9AE142A54CC4D9AA28BA2A5A8C3B58F2DD54D847F56854468CAE53187DE5E311DFE680499EB59D4C41687C1C06FAFB60F7A13ED8FCFB57A0BDB5010E1F1D8266D4DF5DDD03AC17CA91CE0E08048621118F430E75259B4D5A66666B53F0B868B1B234E5F144CEE8BAB42C5473B3DEFAE4ADD75E87BA30EAFCC3E3A0758D416D02A590DB0D9FBEF24AF8E4B5D7B2D509A894892482A228C7F4E929ED69B3BB581650AC50B00BD6B8BDA0BB4C8585D4AAD2523591B385A9079472C3547E1C8D446074748401B9E5F14720158BC2F215CBE017776F063BBA5BBBF776C2D225A7C3F6575F83575FDB0DABCE3917569E750E343436414D6D1D78FC5EB059ED204E62B899999CF2CBF95CEE6D8136F2EE363C0E72C3AB0FDD306A9B51957714489F3A307DE1820BA0D1E502F9F9E721565B0B427B3B78D085A4664292217D26480D1B484E87FEB92855B61877B24A0B9393CB27E5D3443DB92419323557D3A0472261E8EFE983BD6FEC826D5B9F86EEC39D6C3A306D814000FEECFA8FC0F86800D65E7821DCF1C31FB1F75864EBC86178EC81FB98AB76015AF067AE390F5A5A5AF5FAAFC9D296FC67A93FA951FA7B2C8E4E84C3907DFD7518D8BF1FAE5FB10232C8B1BBBBBB219A4C429DAF3494DBE0D7DBA0DA90706DE497E31E43C02DCB96B1CCD854C9100B1167A573F6976EBD29FBB5BFFF8ECADA8819592F9A6AC39A8DE939EDB70B70B0014517EDCD5DBBE0973FFE3718E8EB9D20F6481CFEF75D77C3952826BFFDDD1F323159F239FADBFBF7BCC1F64307F6C39FDFFA97D0D2DA4ECB374E192827CE4E478E2DC65951C2C183E044C017B4B4C0ECC64608A0E4B966F5EA09404F658513E854A34E7971A9386BB3B051485822EED6C1AE686B9CACE63405418A11539AC62933FD2D73CB599B2CC505C01BC4294C74FFEEEEBBA0BFB7E798FA6D70707002D0E5DBEBAFBC0CE3E363ACACE9581B791154E2F47662DC7C375604E4BA73CE814F5F74D1710F948DCF5F37AE477E38E9F371B449868686987DC29AFAB1D46865EB6C2A274E5A50D7E4A8E9A4D1A886BA090B467CBC6CCA6A192710E0D94C960DC2BBB151FB0B63D58209CADAB4514D59381C819EDE5EF6FBD96C86D90C5939CB5A5E919E4EA1A8CEF6F5818644467DD2484F932790D77443306F34D4A3EBD1DFD486035FE7E835FE688E489FDA616FFB03232E8D55D4EA8D6AF10D500589F5539B85E7E80BCE55B6EBC56AC7050BD5F1EABE0EE3628A8F97CDE69CD287CDE95D0A3D5EBDA95DA12F092B003416EAD25D98C0D838FAA41E163513744E60739C056A7B499D8B91439C5E3FFCE6C96D607F6117EB59429243E14DEC55DE2057E3819B6C7004449B1D04D49912EA78113D0B0B5EDFE5F5E1759AC1568F635F7B1A084B72ACE8D0CAAA5B45BD5010EFCDC12A62F5D6D9F49E15EFC3429D94A90256D42B60C99F678D72286247CD7115BDF729231A36754A05291E62F78F44E0686D6D75A3044B5626D8365B9CD29CC519AF1AAB1DA76D382BC037FEF53F59AB2C7A50E20C7D86A7CA766A449FA2FEE4A81BB3BE5340387B169EA3400E295E15AD20201060B1931583AF1D90A46EC308A8C038030983EAD098AE93987EA6A2431501EBF6F8F16B0EB0B1CFF11234F75BD47BB490C6612DACA9E516BD96F4CFACA2DEE29AE896BDA696D7F4A054D028A8ECBB564BE979AC673AFFAE955A614BC07F4364F571D4369B360358D6269B88985A6E0A7A69B380D60E7B0EBDB3B23175B732C1C69B4FEA25BA66D74B4F730ECDFA100C1B8105D1D4BF9497F426F27ACF34FD8B8A4E243820562A24140ACD4C4DDFD7DD179A3EAB7FA60F2AD5AE4B82A80344E0E351B04825811512B512D725C5898602EBCEA0F26ED76CB90A10790F35DDBB60131944222C5E58C8CA8CF529BC02EB852EF0D263A150AAAC1AF3CE799F53268554BD6F395DDD82368D2867D87C76919ADEA612E042F70B558987833D5891608391D32E642D7108A96594A9918D397E6D2C18C3F41AAB3636084062E254AFE42F020DBC916DB1D1AD5042088688E7D53D0802270CAD3843403065BB8C66F6C69C2BADA42FAE509CE6AB15FBA91965CD1AEFB82452068EEAC1113489F2F7D4B395CF51677DC9A91BB38C3A1EED801CF53F4DA7208B1E472A1683E0E818BA90E89245A9376A96B715D3EBCD5142E266A1C8CDFE4A053B59888F172672C9BCFBBE50E81D5A30D4B85E4F2B5A1168C1DCD4C4042608A6AE8485A662A5F175C14464E68A42284E982D743E30B569B0E300BBD18472A161E80299C506245AB38496ABA0FBA73EE1F92C687C05029ACA93CCE211B9308A1E41782CC85CC64C462E254498588DBA72C57274BD5CF0D2F32F165740528B4D418C261C225B52436AAB58030D8C0A5393CCA481D20A0BA04271263ACF3D6794A298346ABDCD13D54B2C77A138DFB9B4E18D806029E01372E05732E0410EB3A83A58167C2DA27411541493B92C2D58827B8A35BED790CB94541CA2E89EF50C0EA0DB17865822A52FD548BA9F1B573CC861F8BF25BBC0D5872E7144A66FCD809B9F852264175D7C19F40D8DC0BCA141E83CD4699A900085F4B00B0DC40BD75F07F7FEEAC7150D76B134C968E7485CA10985C202E33533D45174CB6A1130A7A88257CC8117B9CC2BC88CBBA813BF887E3255BD080C38BD1B3FCDFA141034F49540CB2420111C832002D63936C6E2F0275A572672500964951AC84BC8DD2A19870830723A11B1CA8FC7029C1DCD93054CDD1B522985196AA4BBD9C4434D6F435DDFD0084DCD2DD0DCD206CDCDED505357C7BE5B55535357D99C6D0455B888CE2763B0048611307D492791C423178BD9648271191070C869C970104243033088A231180AFF51F5DC7FEC56E8F62F92CE248025360BD4009D2D35A1886C258172B0DF1EF0A244BAFBEE5FC382790BA065E65C5879D687A091E691A3F72008A5F1FB4838A48583636F543467B3FA6793EBB563DB56806DBF37A95AA110F67CB78227EF05E86478A952117411413773F96480F3C817D3B7D43AA3A6AE81B5A5A6237589A8AD6B044A16D139730AC4500499A60E0706FAB5A1A1BEE8CB7F78E6D71D07F7FF4F4573362B27364FBE3156BA31B5833426BF55F236017485C4BBC28E043C1959B4589D1741A529C2B446585D3D825B5F8FA036B0B968451D2E96E5B3F5B543464703301A1896C7C703E343037D7BBB3B0FDC130E8D3D3238381803F87A458E4B29D816C9B4724031162E70E42980325977A28A7918944C546142ABFAF9FC3E367F8B0A257DBE2AF023B8BE2A3F7B4DC6560144512C7069815B4D459459F4A3C3E3E3100E05956824141B1B1BEE3A7AA4F3A9A1BEA3BF1C1818E88393682B15E3DCF52A5DF48C072FD0C548A361F25EE9627D5EB5A4AFBF69D1D7E1345ED3247D3695978E369AE06F07B7DB85C0FA18B8042A71A70BDFD32D7151B7C4457DC27F099865F97103588AC5874241888643F9783C9688C522C3E3A3818E91E181CDC1B1912DC8B10370926F65069A046E7F2DD74542C130A1B9D5A4A73D766F61C29BC88D1963C2BB28148FA260183EC68A4008A29580B4EA6B6CDAACEC3585412DB4EC934D5F68552A58D56289BB44808926F04A3E337DA7809EA91C95C4395B03249144624D68997446C96633323E4F3A934947B2E9F458241A3A3C3E12782C121E7F0E410DC2077433831D2790ED4E6F319021E8F1608A26D9781B891240240E007F5DFE99249682351940C6F7CCEB71944FEDD126A925A6E9426414D11A24A45AF23959CDE7722A8ADD982C67E37236339E4E260752E9E43EBCC0ABC8A5BB11DCC0646B74FFA96C66B09F5BB66255F068EF43B5B4DA1D5BFE98324D6573B0F40693D4DC86023054C7A3B2235B4B9B6682D22A04CC1216A8F08E01AEE4C5C2BA98465F31DDABD13BE871379E42D1AA8414278A16265C78633901411751BA08AC4D36EFD546465613FAB6B4F2EECC99B3A1B1B15E743A9DBBCE5F75EA9930BD4DAE2ACD3AF85F7EF22B5B707C74E9CE575E384D2BC44CDFD986D7D1F2F91CB5B91EC36338994C0403430311521B9371D96F1EDEBAADA5B9E5022A221C1F0FF23DC48A1D42E8BF279249D6D2837A86D6D6D6B29EA134B1AEAEBE9674F7CB1F5AB1E07C289D3C62344464F7F2A70C76C9042E6A6D89879D00B7EF7C5F284DF76744BE3346BEF3FEA7E3E628AB81975134488509242DF2BC37BA5A58935B85782CDAE8F4D45CABAAF9989ACB8FE472A9107E999E89CA5D72F87374CC73F0158EFFFB4E00575D75D56C97CBFE117CEC33516E35A02AF453E6155566005DDBCE5C4E7E1E1FEDD08A152BDEFCE637BFA9BE2760BF0FC01A3B39F4545846F5CB2E87C3335BB0D997A095BDB8F3E0FEE5ED6DADA6F87449A759BD9B115F5ED168CC63BC763ADD73EB1A9A7E4B858FBCC332C534B3285512788D089E3486F2EA4026167D30950A5307BE04FE46EABD06FE9A6BAE69B0DBAD9FC71BFD584ECECD120445A266BE2CA127E80BC353212312EF22359FBF106FE5161B1AB407F6BFA57EEC86EB47F1E9EE8C46133F79F2C927072A166CA11889A0DF210BCFE7F2562D9744EB52C9E6380B3F4675A13669B4DA298F711B6942D1086AF0FCB261E051A17F697971B13B327D3677EE3C181909E89D9064599465D989069B1381A769B4F3713FC7EA747EBAD6EBCB8A92B50BA5C023C140CF2FF1FD20E5F4816545DF1EF46F7DEB5BE29E3D7B56DBEDD2E77239E522E4C666BC774A6EAA287914B43BD292453A9ACDA4E78D8F8FBB49FAF8D055B4B3808DC00237E6CDC7167F2F7D0FED2531954834A1EAFB9AC32E7DEDBAEBAE09E0D87CE1C1071F79A062C03689672AC8F63A3DFE350EA7FFFF202CE7A00167D7AD69A5A054E921ED76073B7A7DD5CC03A0F5B20C80F5A6787AF33C9A9BC53A2C49A618B689F7EB5BE7413CAD403E1385ACE93C804CC93421B41FEC68C22FC6978BEB5BE6FD8DC7577BE7D18E57FF1EF48E095356305E71C515D51E8FE707B29CBE11DD394B2848B96CBD5883939E88C42B22505655D1CE608199ACCCA273646BE87976BDC2A7B0103DEE44A0D535B5E076B90AC44C5E8A97C5107C4C728D8D8D3645A391FBAFBC6283ECF678BE8B97F8D6FDF7DFAFFCAF818D374ED7F4225A4D7E6FEDD725C9BA5151F23E3620651BD55AB3165938083469DFE9AD2F4CE711454709D0B4D3F9D44E8B06C35200526431802347BA61CBD667D9EC138BA451388D816BC4C28F357D47CEA6F062B59F3965D9BAAA436F3C7B0BBE159AECBC4D9B36FD8BC3267D716C7458C8645240A296E203E489D0B2CC4A610966454FC4A82A9F42A4B114AC0309D566B5C72D366710EF6918EF2F869FB9F0DC263CAF3E3436EA1DD73489EED5EDF5A024F0B3689F510FD0D0D008478F1E85FEFE7E9BDFEFFFBB79F3E67DF5DA6BAFDDF0E0830F6E3B616BFC5D02BAC5E36BB8C4EE72FD3BFABE8EA9CE254E76381D6C3D4E02DB4ECB22DBDCF89E175DA97698356B266B9C4B450554AF9D61FEB4CC80D5BB12EADD11D9AABA9495C3C1B058684D325AD93E5DF80EF54B37FE9EEA5929B0D33AE77402AA63DF8ECD17E279C3650695D7E371EE0805838BA8AFBAC54AC426EA8032509592D70CF4B2D724C65B5A5AB5583CEDD9B56B57D664BF982B353404AFC566B5FC732A11BF3C2D675CF49C345182BC0E5AC7E58517B7439AAF7E4C92AEADAD0D5A5BDB5E429574397279F47D019B8BEE1A87DBBBB175CE193F191FEA761C2B864DAB17148176B0A30309C05FDB04165A071B8A35DAC61A9F465548A18728AF3733121F39390391B141248A0C9B70C000CF64F406F9936CB45C86B7BA1EAAEBDA891B6381C1AEBF0AF41CF81DFE66BC94A33FF23A72E60A5A24DE69B7B2DF9A0C6433371B5C6EBC662B1FE0EF2D3EFD8CC71E7CF0A19BCABC10B38B68780A0A72AEB46AE5CABF8BC723B74463514F0E89BB1F2557DE349191868242C64B4E5F2AE7556DC5238F3CB2EFFD02BBB569C6C27F6A9EB1F0C6E1BE03904EC6263D97195A0432D7D3B4B3AE87363B3434B781C757A58BDE62AD52B1A32177B5D8C40463F57ABE606C682C00037DDD8CFBB3591DE4F2E723B1EEABAEC3BD011C2E3FB5AD8C27E3A19747FABBFE25161A7E154F8969A685BD366EDCF87959CEFC48CEC4592490B5E856388865AF752E2E7D5D3E41B1ADBD5D7BEBAD03CB2291487632CEE6BBC2ED869CE13A5E7AE9A5732D12EC38DCD5694926536CF284F9D2947E5DBE6CB966B13ACE7FE081075E783FC0AE431D7DE9FCA56BBFEDF1F866A6126148C523904C44502FA64B0127EEA69838026C63C90D1B134B2D6D33599A91E9637661B12C746AEA4BCA4A99353EA82A7475EC83E1C1FE82214696BCC349AAC1C3763BBEB63B3C04403E198FBE150F059E1819E8780C2D776AC74031F194D912BFECB2CB9A45411D88C7C3A2D522E91C6C06B944649772B4AA4EEE1E530BB0BABA86BFD9BEFD852DC6D04D168B3281AE70D0B38B162D72B4B4341EE8ED396AA105E8C9F0A3E7A6B6252A931C5658B2E40CCD6A755CF0D0430F3DFF5EEB6CB2B4A9F66A41CBECC5D77AFDF5ABDD9EAAB9169BCDA9E4B2904A4620938AB30980B4780CB5BA24C38D0A1D991186C7C6E6660636CB785171BE68E26E959709539BCC7C8E5F47D15728C2C7181D1B631C4F717C02D66A75311580B6431CF5767F36953892C924F787877BB72593A15E6E88C58C404BB9CBB571E315F7078381EB68BA900EB0C24576E96B23B863007DAC8D545573EB8C6F3FFBECB3779B050EDF2573806912E0E5050B167867CD6ADB313430289104239B85EE85263EE4795FD895CB572A28D3E73CF6D8637DEF25D8020F9650DDB48F59E5008D35CDB3CFF255359C832ED829369BA31AB9D84BB5B686EB4486988AE05319AF30494707A3AD34CBA269FA58486CA501B150F08780CB79594EE673F9785E91C3D974EA08827B301A1D7A33111AA3874EF19D7CE904178F8A56B21663E976D1456B13D974C2ADC7E42717D3CA71826C6C2EE4EC86C6D69B9F7BEEB9474C9C6DE1E3661C25FE5A321180013CE9F29A5316CCDD3A30306049A612C840190634651229BE404DF8962D5B114D67E416043CF59E806D02C7A04EC3D7A6800ACD7FB2F3D72EA7A7AADEE5AE6EB5399C4DE88A34A2455C8BA25D9F37AC1A1D88CDF30CF59C1872B6AC2AB92089DE7C2E3B964B2702E94438801C1BE300E6F94E56599A1F65234AC639F86D9139F7DC73BD92A8C5B2D96489989E4C649FC846EE93205A6B5F79E5956819674BA623ED363E5EC66E80CFC6A1B5B5D5BF72C5B267FAFA7AACD4C42F954CF385F8744E696F6F83B9734F79E4DEDFFEF6EAF714EC29A26882898A2D262AB6F1DD621261E64E585A21E156B454737C574CC68CC23F2F59EFED78809DE29E2D175C706E26160D8B13B95807FA4437B2434E3DF5B4A1279E787226E5872619239824A46C33C2CA9C71ACC639D5D5D5AE0BCE3F774B6F6F8F93F2F5942432EC15F2CF972F5F49B4E935B8FB3D8F8D9BF460A1052EE8D3072B7923A2B3FB3DBE23C1F1D1F98AF2CE40365451437DA3D6DBDB7F295D9FA76EB549B2717C49539A68C48838CBA55396AB470F075C0C87C3A9DF3FFB8775EBD75FB8A5AFB7D7ABA057928827996A23E32D1C0A8A0D4DADDFC273BF0A265D30BD957219719563CFBE039FA05CBDBEB240EE8F069AEC8DBABA7ABAF8C7F7EEDD3B026FDFB851CFCAA054E212808026DF3FCA0DCAAC21C5E2F1B8FCD453CF5CDCD6D69EF57A7CCCB3B1F05620A1709866A5DE62A6E0E9AD0C6F4384F6F4F4445BDADA8E1C4F03FB6305905A5A5A3441946E7DF9E5575F37A99B13918E2A575B4913E069C30E49A7D3B9AEC3DD37353536B2192936565029408A66CDA8AA67C3860DF5D3601F637C0D71BA73E7AE9B66CC98AD9437F2795B90D16DACAEAA86F90B4E091EEAEC5EB763C7CEE74DE2583DD1742A3F3FCF3D0A023CC2C167CB23EFDFBFBF0B0DDDDFD16ABFAC2F1B8FA9CBD90C1280FDDA69B0A7065A312257A817E3AFBDB6EB430B172D1A7223D7E8FEBF3461168811C4A1E01055CE2C5870CAB068B1FFE5E6CD4FAF1F19191933B97DF289727619E00AE7EA5819E0EAE38F3F7E474B6B5B5A9FA049615437533F48789F785F8B174E1AA4A91E4B100C239206D5867A31FDF8E34F6D5CB060C1EC53172EFA42369D5D99CD651D68B00994A8A0E895CBE9545C6E573F9EFAD8BE7DFB1ED9F9FA9B514E3832073AC68FF9775224C1EF4FE5F767F656C8B5B5E2A7BBD0FA3B97B8BAAEB69ECD5045B17EEA34D8C7E66E99075F2C5C8F5B3B3B3BBB71FF526932C52AD6D7D757CD9A356BAEDDA1CDB75844B9BDBDBD5596E5642C168B728013FC98FB635CC129389C4097CB227068E1E7DB29C0E2F6B810EC3A3878F00078783FAF69B0A7E69E3CE76C63E94F9729BA25CE9933A769C58AA5DFCFE7E485B1785CA492E620753CA62C94DB01AB562EA3808BE6703A724EA77B5092ACFF8CDFFBCF77F93E550E3889724B636363CD48606426A99AA54B97C3A18E83AC663E236729472E081FB482CB8D1B371228B7E27351E0E2574F3CF1C4AE77E886597804CB610435AEBEFAEA7F74D82D378C8D8FEA6B869A63DF0E275F844E64491E5A103E1C0AB3808CCFE7D36AEBEAB7C8727ED3A38F3E1A7F17DD4516A2BEFAEA8D77F774775F76DA698B61607080A54389FA66CC9CA16EDBF682E58368A07D1AF7EFE3007C1E07FCE7EF82B8CC9B746EF0868F6EFA0E32CE0DA150C804B4C6032E799653A7F42A1544D4D5D4C09C39F3E0CCD56721A72DA5EC94D0DB73F4D268683C7ADD75D7BEABB3FFD6AD5B77B6D5225DBAF0B4D3A11F81EEEDED63A95EB60A225F86EA03C5D9E84FDA5184515FE939FCAD305AA8B5EF46D52871F947376DBA23A7646FA7456E14B68E681692C904EBB54631727DAEB6DE988756F073D89D50575F03355575AC712071BCC7E386FDFBF7B279656DED3346545598BB65CB96E43BB82F71FDFAF56BD14C78CC6EB5B8DE7CEB2D181B0DB06C203D361585CC9F774AE289279FF27FA07436024DC6D36C1E6DF2E2C33E02ACA396A0BC13C38880BEE69A6BFE4ACE656E0F06C7201E4BB0E894CEC156D64999C8895C324A3152B743029D0A34C29130B8DD83505B5D070D4D8D407DFA972C3903022301D4A9071A1B9B5AC3D75F7FFD8CFBEEBB2F7022F784AAA40A09EEC60F7FF8C3B722019D9A88C7E0007273221967451D465C808A359C4E47EF078AB3B9AEEEC77D734747C76D4EA7B3F1ADB7DE1AE72E0A8961F94439FC631FBBFE2FFA7A7B7E84BC8AD7105C045C3C1163B56F469908953B5388923889F2EE547543952424DA89AB68C9693A95B8DAEFAB82EA1A3F343636B309FED406B3AFBF9708216F77BA1AD0BE081FEB7ED6AE5DEBF0783C6B90A83E81AEDEF568FCD969F5E24422CE168427D5C2BA3B529D5E4E37D4BD1E2F2C3875E15F3CF0C0833FFFC0703672D2A7104B6B381CFEBF5D5D5D128F56F90CA08D48D3895C339D4ADE816E8C1409475C149CA041CC97757B24105D289AF5C563A9A7690E41B601AB2421A0797F38CA46515DDCC06002A2D1180C0DF6B36E903535D52825829666A7E3253C6DD124E09E852F2F404E5DD7D8D8B01AB9D44ABF4469CD702861926A56D622DB588C8FAD9A4C458EAD6DEADEBDFBA95042FB4080BD69D3260981FE12EEDF79F1C51729AAE435B94CEAB14016A6A83146F1B83A9D4EF9286AE672BA19E70C0F0D8322A88512294A59522C9AE68FDB509C53933D74B158B995CCC0CEB0240AE9730A9FC6900359462A8DEFCB3E14B96990D046A6C0CCD8E8C8C21B365D7B433C951D74B95CD7489278716B4BD30254C912AB33A78E17ACAE4EAF45B0A101E8767BF435C079BFF5423F74FC8FD6A973395D34AFFDB328E958B9D507026CE4B86B288CB867CF1EF2636D3CA4180353C11E14538782291021988E02FAA9125ACD97A3A1752B72D2F9C4C5E82AB1150E4805CE9D370FA832845C292AE7256E8DC4226CC90B3772A9DFE705D121A2A84F80831555EA1C9E41D0097C8348A8B48A385340C38EC0A15225BAAD5822710F7166221EE6F5F2A5ADB79D2E279F55E29850074F52278E7A9B7434FD0ED9123535757F78F4D1C7EE319EFD0301363EDC5790BAFFB6BFBFBF2081F96E1435F0068D8251ED2142B1F2C3B260C182DA993367DE88FAF693784E355EEB5E04E351BFCFF70387DD2E343735430C010FA3CF4CC57D1EE42812CF49E4F64824C2ACF150709C2D456947FD2D59F546B84443229EEF96DCE802650A952E643CC96CCD3091F9E514CBA6C90644487A5F1B8175933045E910B81AD097F600A64AE83765967655C089B681D7EB4122A867DFA524889C53EE79F8E1476FE1C4AE7D200CB4ABAEBA6A0D3EC3EF77EFDEDD3638382871B19D32251CCCA53E5613C8D299679EB90407F153389857514813B9E34E1479BFEAEBEB23A9604102685CB572E583996CAA050D2274A9745064E22234D48CF54C682C53C90CB3BCC912CF9B261E7269C2FC5D1B72BAD56263FA941690B1D8F48A5A12FBE6AE8AA41668020575ACF05755B1BA707A9F6AE0A3B13837004B37922A7EBF5F8BC7626F1D39DA73DB4B2FBDF49A41F086617AD273360E3675887F9D1AD69B62DA4A19F7160AF71A1A1AAC679C71C6E5C8C59FC5013C13C7A15B96E5BFDEB76FDF6FF01A199388B7F5F6F6E6705F7BC925EB3F9D93725F496762821B8D3187CD85835BCD96752270A91F0B894F975BE73CEA3D4362D528792657C86AE33D6188EB2DD642335C63A39A74EA1563F8EA5ED4BFFEEA1A4624C4C941B4B42703994BB66C6064F4BE5777BEF613344EBB39B19317A2983D90931A6C92CB575E79E56AD49D6FF067314476793D9BBA7EFDFAB310E0EBF12B5480578DFB6B08C42634861E4297C7EC831B2864F89EDDB265EB4F50D46F59BE7CE9FD28AE6B224A8455897A507F523F1887C3C53A1F2658A5678A8969B49A8F71DFFA0A08ACC11E6B79ADA74D89A39D6E17531385C5E369E9E940A0B00E9A1113C7ED08AA9B5791DB5F4682DC8ED228C009DD28BA9C3005F964E76C02F44C1CA826E458CFE8E8689C3F93BA6CD9B22A7C6FB5C5623917079F006EE3C03F85FBF71E7BECB1EDC7C8781121996766643B3B3BB338A8675F71C565BF1C1A1C5C333834C87AA9F97D7ED64B4D45A0C812AF41832E895637D5B293959CCFC98CB3D92C186A80CF67A61A22DB98AA6BC3CFD0275711D4642C168FE6F2F920FACA81542AD383FAB90F25C528023B86B6C408DA2623990C9BD36436400BF6C954F1849356671357AF5BB7AE01392CC0A97D844FC88B21B88D783CC5743AA51A7F8BFB8F10E4FD27FA3B50DA3C80120E3FEDEA3CB4613C186206596D6D3D54D75431DDEBF1782734059C6A9562D2FBA160184E5BBC848221FD2FBFFCF2C54343433193CB58BE6BA6A362FEEC7802462735D8C4D928C6C9046F9E4C9DE3B33D87A7DDE970381EBEFFFEFBD3EFF0B70A8588B8BB2FBF7CC36DC1B1D1DB868687D8C7E42F93CFDDDADA5AF0EA59D37A36ED585F61C0BC8D8D8EC291EEA3AC75E6A2C54BC22886CFDFB56BD711139893ED608E199C6844F0A4B6C66994376CD870360EE8A7F0CF55DC30D9816FBF8A3AED85C71F7F7CF0BD2030EECB3B67CF9EDD76C619A73DDA71F0C0AC583CC1822335685451E4CCEB7643DBCC191047D78C564320712DF1CEF9D410A8A7E708D3D5AB569FA58642914B9E7DF6D93F940780DEEDB61FC29F7803A177CAE504BA63FEFCF933162C98F75F81C0F0B278342224D06A36B260648411F8CC00A3BF25BD1D365591CC9E3DF740241ABB7EEBD6AD1DE596F37B72EFD360BF2BA0B3192EB5B5B5DE152B565C8476C41763D1C8A258346C4F673302AD4B4A5D1DD15F5691C3A32E97E7F9C1C1A1DB77EEDCD93395E53C0D76E5036F9EB32596B972E593ED55789F5B734D83FDDE00FF76E1DDFF9541FFFFEF5A2E05A8B13B700000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (173,1,'Video_terminal_(24)',decode('89504E470D0A1A0A0000000D4948445200000017000000180806000000117C66750000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000005014944415448C79D95596C54551C877FE7EEB3779D2ECCDC2E2914914DAC8945C0A0A8D362434248435454F0C1C4C4B8BC184582BE68505F78F0C1F86034312124582221156A404429C442B5D285B653684B61E8EC73E7CEDDEFF1452226B482BFB79373CE77BE9CE57F08A51477CBD35D3B963EDABEE9C4E4CCB5884FE4F77F79F0C0C7B8CF300B7534C8CDFB23724353EBEA66DE1F14DEC5FFC88270876114BF3F80B1F333981C4E05DADADAF8FB8573DD2FECFE9EDA2EE3BA6ECAB2AD1BAE65CCA9A6314D0DF3EBF1485DB421EA595DC89B3DC7BE1BB0EE174E5E7EF54D576B6A2712077805029E71215007563E093FC7209B4953C3721CC6B5AC622659544BA52C21A4405D9ACEE6339FFFFCE389630B9AB32C751A2261AEBEBA1CBCC0637E268EEADA3AD4D46E00CFB3D04B3A816572B992CE650AAA279B2B5617541DF99C02617A70398085E15A5175CBBC1EB4466BC0732C063E7B0B565313D6EFFD1492C8C15414D45706E03814C94402F95C164D2DCB601806F67D3251B6E881E60B05DB344DB82E453E9F435DC807279B46269B8161B9506D0B0003866170E88357F0EDDE97004A218922028180B8285C2B6996665AB01D0776218D35CF6C45C3438FA0984C40B11C58E0E0BA0E2875910F3622618BC8A452200C416559885B14CE1058A2A3C2E7A8E01C1D392AC1F084A0E5B3604A0A384BC3ECE438AE8D8DC0613CF02E79003F1CEB41F2FA342A021E66D1AB480963080287E6683D202F41CFE039CC4DFE89C736BE8FDA70051886C0E794C1EBF5E27B8F84B9914BD873F0200281002E4F5E258B9B333054DDF867359E60D78E1866E36370294029C5ED02716D6A14AFEFDE8EA1A1210040C0E75BFC1111C26AAAA6038440D34BE81F1C45626A12576E1521AF781835B53500055CC7C1AA680BA29A042B9381E33890448184C361FFFCFC7CF1AE7086424F644B383E3881ABF1715C999DC7D44D1654F4E08B93FD88B4AE409D9503476D88FE72F4C4E7E0492A38071145D381CF571E0130767738CB960A4A0E872FCDC0B428A4277681754CF0AE89D99BF3B8353303DE5221BA1688A981EA3A985411ADA21FD95C89D644967817DC1617AE39D2F30D6CCB8620F0104401A228419204488204EAF54008045C2918D0BD3E9FC2FA8309DB762FC7E3F1D337AE8E1D3A7FF694BA606DD9B97367CDF45CF2590AAA12CA96143525298AB1B4B62EFAF8732FEE79EA44DF696CEDD8A27CB8EFBD4100C3F3D7C7DFA694EADDDDDD5106EE6B9AA63D28499E65BC28B284E08CA2A8078E1E3D3A0100E4CECF4296650F848A1155C934AE5ABB0E2DCBD720954AC3310D0C0DF60384B5092BBEB17A595856F2A9774A9A864241456363F3ACD7EB9DE058AEE9E2C5DF9A2AABABAF5FB83010FD179C10424255F2BA6045E56E50262088BC9FA19CA3E9EA0D532F5CCA2513BF9BA61A6F6F6FCBE7B259D630CCDB52033F9DF9750B80E0E6CD1BBF9A9A9A7AB2A5A5E52459E89B5B2C9B36AC3F924AA7B60314555555B7CEFE723E4A29B5FE160C6DDAB87ED834CD1AE65E605D5D5D4BB76DDBB6F9769BE5C5E7655956BD1E2F4049B8B32336D8DDDDCD02404747872E885248D335F69ECC3B3B3B3B7A7B7BFB01E463B1581B03F7D4E8D8A89F655998A609411020CB513B1CAECD0B3C5F9EC9A499925E1AFE4F382184C462B18F08217F388E63178BC573C1A06F2DE01ED1755BB24C1DBC20A0AAB2D216446924994C1FA7941EE9EBEBBB78AFE691DEDEDE397AC7E0952B570AA1907F082E95059E2F54D7D6CB870F1F36EF9CF71729B17274C1A189C30000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (174,1,'Video_terminal_(48)',decode('89504E470D0A1A0A0000000D494844520000002E0000003008060000006E6548DC0000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000E9F4944415468DECD9979909E459DC73FFDDCEF3533EF9C4966720C3948620E34070439B248944AC088C4A0AC96917577DD52B7CAF52875CBC57277AB745DB74A77BD4F0EC98A012A071194603451018130246008496692997993B9DF79AFE7ECEEFD63262160A1643695F279ABABEB79FB79FAFDF4B77F4777BF426BCDF95E2B57AEB4AFBFE9B61FB99EB7697878C49252F63564D21FFFE2BF7E6A1B17E932A6F2D2C2E557DEE979A9DB6CDB714AA592F1DC89A767F58F0FFCE4CBFFFDBDF7FCC582DF70E3BBAE6E9DDEFEEE74264D7B7B3B2B57ACA0F086E38CC5C3C6A5972EFAB410425C0C70EB7C5F98BB60C1759E97129E97229D4E3367CE6CFE31FE3845A39F83CF3EB36CE3BBDFDD01F4FEC529DEDCD2E2388E8DE338789ECB89E347181CED403A57105686A8D46AD15FA4A9ECDFBFEF3B491C574DD3C4344DFABA8F40748CA8F4386114278F6EDF3E7051C03FFFF9CF9F17FC9E87EE3F313250F858924489D6906B68C6A6806DF8BA5CA97EEA6239A7F5524F61F0C6776C6A324D5B1A86118308801A50065D94528E0AF4A04617541CF757C2F864A1A767DF7871E46DF3172DFE97E6E636D7CBB66E3F74E4D9BBB67EFFFB858B052E6E7BDF0713E5B8A66E5B88A5134C1563A80823F1115140697488919111C230426B854070D98AD55C75ED750481CFC0A9537ABC54945D4F3D3E6A98E61888A280516048A9A41025B23F2897BBC7C6068F178BC59EDEDE5EFF8280BF77CBDF8776AEC1E99DFB565CDBC6716D52AE4DCAB548B91639D72463812514B6500825299D2E10958B609804A57192A086B66CD00AE9D748FC327E7184D1C1417CDF470881529A2489B41086320C3392497CB8F7C4D12BBBBBBB8329998A6198B1216327AF432E6972D14283881146825026666C1229036D99601938298F698B97E2791E5243924892441125922891C4B1248E15619CD0580B2957AB84614CE8D7504924882353C5516AFC85DFBCB1FAC20B8B80035302D710C5412D53E709D62E998361181886816918188620A896E83D768499732EA16DFA7484001947C4494C9C48224352AD8E90CFA48895C68F12CA22A29444D4AC9820955015313521A9FA924A9C508925F93997A24DA37ECACE29D051B95C212F255A830284D628AD4169EEFCC227E93BFA12E95C8E8F7CE97FE8983B0FC77549A55358C20001651B664F6F45298D541AAD01AD99A83468D04CD65A53A954F9E76FDD0B5AD54D391C4AADC2308A88A20835F17BA8C9122509391DB3229F6689ADE87A742752839C6C97681082285128051A1042200420E089FDBFE6B1DDDB49E208C1C4F74208B2D90CF5290FADC5D41547EB200A4382304269100AD499C82EA02EDF48323AC87894208606515A23150831B1AA4C9422521204082D266A606CE8347B3E7B23656573EC779BF9DB2F7C9D89658C4620C8E532A0F594C10D2DF18320200842D0A078798A8561D1366F2141A2B00D415D4B2B4A4D289E68F0A522540AA9279444BCACAA8C4396AE5EC3FB3FF1592A832726FA3B674672690FD334F25306575AFAB55A8D48C644717C16DEAFD528F476D3367F1141BE99414CA6CD9AC3C0A902611C518B24B16462206A7282C4990140D38CD90CBAED98E93A068B3EB6654D404FC267D3296CDB6D9DBA731A66B556AB9248452D08B01C0743C3F8602FEB962FA07DFAE5DC70F51A8E1F3FC6E557ACE1645F1F7B0E3C43E76597C3A48A86ED104611AEE30050A994D9B6752BFF75EF2FF8E67D8F904AA5F8DD6FF6B1EAF22BB04C0B8D269372314CAB69CAE0966D54B5D60821A88D9CA6DED248AD50B50A079F7F8167BBBAF05C97288AF8D5BE7D388E871194298F0C210C8169089228A4A77B8C7CBE01D77579F277BFE5D31FFF184A298A80609C4D6FDFC0033B7FC615575E0908B2690F6188FCD415176619ADD132A6A3B981C5733B1000F3674D3A93A056AB72AABF8FBA7C238D2DADB45FFA0684101893A6A1B542954649791E5114B362C91BD8B76F1FD55A8D280CCF2844737323437D3D6820139541337570DBB04A4A69844C08278D559F09297AE2EE6BFFFE390E3CFE38F9A626FEF3075BC9D6E52662B298889F4218789E475DDD44586E6E6E62F6ECD9DC7ACB2DFC72EF2FB979FD7ABE7DF73D9CBB391A1A2BE2A5DCA93BA76119E35A6B74121126FA6C183C534B99D0E6C56CFDE6E7F8EA1D7FC7137B764D0E6C22D19CD96ABF7AD3FDECB3CFF2F0CF1F218822F26ECC934F3EF98A76C7B66999D6DA3865F06C2E3BA4B506199D551C3DC93E99E9CAB588F152959EDED38C0F9F9ECC84AF2AAF022F140A388ECD57EEF828EBAE5EC58E1D3BFE187CC6CCF494C173750D23860124117E9C70AE956801A66DB3F4B26564D21E73664EA36DC68C5700737680AFECF8E4C993DC74DD156C78CB9578AEC7E8E8E8AB5777E41A9A9D29836732B951C334D149FCB2A94CDA8A528AE258919E91986FDFBD83EFFDF821BA9E3FC6C99E6EFCC03F0BAC273F9C63361BD6AF67FFD387898F0EE28E4AAEBFEC32C68B45A49493CE6A92CAE7CD993367A6A604EEB856D51006424654A264228B4C5830DDC78EF24F1FBA9DEF7EF31B144341E264B9E7CE1FF2912D7FCD630FEF7E4547E70AEE974A44BFFE35372E5B4E6392E6D27C2BEB7239A2471FC5F7FD49708B4C7DA3886373DAD4C2A1A46A590E3A0AA886C9D986E2E818FF7BE78F38F2C2F328A578E8913DB4B5B54DCC42718C9FEDFE193316BF11A91408815719A5219B46694D656484DAE117593D771EBB9E3E408C264812CC7486ACED91CAE5182D96F03269BCAC351DE83E6F70A545CD344D8802F60E4A0EFCF857444A534934E54BD6E37DF216223B85994A33663B78C2C4B6A0D736F98F5382B46D92B22163B7904D0419D722DB3E8FECED6F26631B646D933A5BD3AA638452247142AD56C3680A88F6EDC5359D86A9296EEAAA611A88A8C6A855CF98618069524934582662F2DE3104391DE0E818274C7083184FC5B832C15601B68A102A220C0392C4A718FA68BF465CAD30363848B95C218E63D6AEBD963D7B1E432609D9BA3A3A66CD6B9F1278AC45CDB66DC6870B4CEBFD3DA60CF1AB15F24115115550B50A0465AA8303F40F140882D73EEF314D13D7F5705C17C771701C07DBB6711C9796D656DA67CE225BD7C03BDE751BAD2DD3181F1F53BFD875FFB129816B4F554DD3A4B7A7074E7E95388E88A2F83C329881E3BA647339EAEBEAA96F68A031DF44636323F9A6261A1A9BC8E79B28974ABA5229554F9F1AE8AB94C71E7FA4E7F85D3FDFB16DAF9ECA71316075E67235250C9DCBB78A3896B85A613B0E8EEDE0B80EAEE3E0BA2E8EEBE0791EAEEBE0DA2E8E6B63DB0EB66D2210C824D11A29B5D2BE52B224936464E0547FEF899E6387BA5F3CFCA3279ED877980B7809AD35EFFD9B0FAF3F7AF4A5CD60F8862142CBB47C04816908DF104615412084AA22751519D556BDF9BA9B172D5DFEE1C3878F70E8F917E9E86867F5AA15E4B2D94F6DDA70D5D701733219445AEBD77DFC70D34D37A573B9F4555A1BA7B66EDD7AF0CF82FFC9078448018D8DD366DD629AEE1A60C1DAB75C3F7FCB073E987BF2F74FF3FBA70ED0D13E9DD5AB5670E4F0F36CBBEF5E59299795D6C48669F500DF1AE87DF13B5AEBF04C9F9B37DFFC11B4719B52B2238E22A3E6FBCDB96CD6118610B66593ABAB470894EF47C520F01FDD76FF03EFD15AABD70D2E84686CED58F060120557499918B6EDD0D2DA4AE78225AC5EB58A4AA5C2A981A189230BA92814FA280EF533343840B55201A02EDF8A9DCE5C73AC6BFFBE5B6FBDE5AA52A9F45858ABD81A4518C58461441C2774765E329EC9E6F624719215425C2A8431C3B284DDD5D585EF072C5BB2F48B0F6CDFF9993F0B2E84102DD3175C55D7D8B4B7385C3092242693CDD2D8D844C7EC4EDAA6CFC21002A514B194C471C4D13F74D1DFDB8B69D9B85E06379D2D074178FF89C34F7C68EDDAB5B669C8924C2211453161181286D1C4265D291A1AF2EA9903CF2D066C2004821B6EB8FED6DEDE935F1E1D1DC3324C965DB6FCB95DBB1E5EFE7A14CF3736776CCA354DDBE038EE3201296108C7B62D3B9D4ADBC2302CA1B5509A4069355C29FB3D611CBE18C7FED1A0563D3CDCFFD2D340596B5D7EDBDBFEEA1B95D2F83F9C51390C43A47C79F6D3E90C879E3FDC32099E063280B574E9E2598E6D3F383030800656AF5AB1E38107776DFC93FF4868ADC780EF4E96FF5F1410D68C72B94A104667175A2FB7415353638FD67AF8DC19071A0E1E7C2159BE7CC9FBDADBDBEFEEEBEDE5A5978EDDF4BA9CF382842E2184E7797316CCEB3C5EA9565E99074C93B6D6B6F1DFFCF689B9C0E8ABE3FA64709877F9E5ABD7D5AAE5AF546B55DEF4A6D51FBC28E067CCAEB9B979F9A245F3B706BEDF025A784E6ADC8FFC4F3CF554D763C089D74A4642080F9877F5D56BF68F8F15EB3B2F99FBE205055FBF7EBD6B9AE6F29D3B773EF91A000D9D9D9DF3972F5BB2A3522DB7A944894C36ADA338A9D9967DDFCE5DBB6F7FADBE67CD9A95EAEC9C59191B1D33F2F98621E342AA6A59D6BF09217EF05AED5BB66C61D9B2C5FB7B4E1C9FD6DDDD2DFAFAFA3876FCB8D04A673299F407D6BD656DF0CE77BEF58F0E89366CD8306DCD9A350F87416894CB1552A974F18229BE71E3C69C52EA337BF7EEBDBB52A99CD05AD7CE6DDFB4E91D5FEB39DEF3D181A10192382693CE200C81EFFB28A9C9E572B44D6B05216436DB90715DF78D9E676F3185B941AAA4A3E6FB0C0E0C502E9559BC64E1FBAD0BA5B6947263A15078A052A9F403FEA46958D75E7BEDD2743A7D8BEB9A9B66CF994D269BE2F4A9D324894208412E93238802AA7E8DFEBE7EEA1BEACD94EB05D8164A19D4D7D78310E472F5A45329CAA54AD74F7FBAFDEE0BA6F8860D1B3EBC7BF7EE7B8068FEFCF98D3367CE7CBBEBBA574829BB0E1D3A7457A15060E3C61B1F34106F362C53C451C4E8E830A57205AD35B94C16D773B06D97542A45734B0B8630191C1AF6E338EE91523E2784FCDEC30F3FBA476BAD2F08F8E6CD9B1DDFF70F4B29B79BA6395708A1B4D6F7AC5CB9F2813BEEB8439DE39CD6BA756B6F1F1E1AFE966198A2A3A303A5144A4A2CCBA25C2ED3D2DA1A0BCC1F8E8C8DFCF6F4E9C1670E1E3CD803845AEBE8BC1659E761E36FD75ADB9EE73D72DF7DF755FED4B30B172E9C91CD787FA8562B755A6BB49AB07129A59E3B7FE1DC6DDBB6FDD93DE8458BE3AF9598AEB9E69AA58DF9FCB5AE61ECFDC9830F1E7ABD1B8BFF0340797E8EBAD4816B0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (175,1,'Video_terminal_(64)',decode('89504E470D0A1A0A0000000D494844520000003E00000040080600000042E9C4F50000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000016C14944415468DEDD5B099854D5953E6FA9577B55EFDD34BDD04D0BCDD2024ADA4413062520515C413306B3C824E34C344EBE8C89CE6732CEE7C43193A81367D4A8F3E94CD49868882406454524015922220842774377D3F452BD547555752DAFDEFEE69C5B0BCD96A829327C3EBD7DABDE7BF5DEFDCF3DE73FCBBD70B66D43B18EBBEEB9FF2E97C77F6B3A2D572692499B07E81639EBDE1FFFE85F9E85B3ECE08BF5A01B6FBAE53E109CDF07E06AE44C46482693625F7F7F6B4AD19FF98F47FFE7071F4BE0D7DE70D3D7AAA736DEE972B920585202E5151590CEA4E0DDE6DFC16F8C678173B8EF78E0E1A7FEEE6C022E16E321C192CA3592D3094E6C047E56EB4C282D0DC27BEF6D0347CA86A9B553C121C04D78EB631F9B195FB87061D0170C7C529224A0E67265C1CF9F371FEE5FF1185C5B7B35BCB3730B848647DA57AE5C39E56303DC344DEEFC05E781288AE07038B0496CE6434303D0B5E70F604ACBC02B01F474EC866834AA7F6C80EFDDBB37F1F6DB6FF7088280E0B38D04B0EF9DEDD01F3F0F6A2AEB2191488300CC7DC43F36C0D11D5ABA967986E779E0381E584FE70D05FCDC4E08F53E89DF75D00D6360F3E6CDC6C78AD5F7ECE8F8513C36F672E10487D07909442E014E41C6EFBC66E8DA756713AB73B77EEBCE27430383CB80E7521C7071B0AD986DD9610BCC114D338614397324A925F7ECDAB22544B37BBA075D79E5959E05ED8BBF5BDFD4B2BA715A53832CA33B7BFBAD68223AFE7ECFE1839F7BE9A597E4B30AF8EA2FFFAD198FC7B333CF7494A92F6B96650161B50C13E813C77116DEA2E184AA68D3198E1392F89B04CF0B5124B4A0D3E54E6B6A466C6A99F5E9C39DFB9EEFD8DF717B57D7DE109C850777E34D37AB89898414685900BAAF0278D3C0C937403474E02D15385343A819E0340512D108C46331D0341D0CBCAFA00028AC2F7CF9ABD0DC32037C3E1FF4F5F680D71F80C181A3B0EDF76FDAF16858E5784EE37931831490C65F24C0E2E228DEB0611B6386620CA7E4D4403216EB8944867BC2E17004057F46F980FBCADFDC928A2726BCC2391740A26A0E3232BA25646627F552B6773A88A905F039797071163808B06D02671928181D354283E8D15E00EC2DC30013D5C24A25C1D27590D309306419C2234320CB2840B27F46031CE43E9E708E03D4260B49D220EDC2B32943531E78F5D5F5F7173772C399C09779399C614026E62C1E67D381ECEC0242C0F316F00232B56543068762A1AB723A51186256182418978383A9B3DAD0344C30F13EC3B0989918263205366474F67B53D7C04061E8D80CDD004BD3405164144E1A34390D4A3A09F2440C7439C95BE9B8944926A4E8D0802F3C1AFA368EB5C8C09171739108B404045836BF19908221A3A8D89BA8C50802056F7359022023E70D8109884341F00A36148249B3C573598ED05100EC9136A8080E242F70A204A6E8C4FB1C20A3164FE0F9243E27834236052F182E1492C300C36731A118F86E13FBC64FDA107AE81B1E9C1CFE8F91EB87068EE35590C541B0355071765C6E37B8790FC6DA3C533BF2CB3CF5A477AA0C5DFBDE05B7CF0F2DADB3C1EBF5E2750E443E771FF5782F8D8F40870707A0AE720AA451C5652503C98C022959059537407599A00926A84E03056C818220550DBF632F2B1AA4B1A9A8354905B54B92DCD3A64D0B14330012719819135514689671A6587C956376A2790B7B9AEB8CAAC0C3777C1D8E7475314D689D33076E7FF03108040360DA3986B3E9171C0B6404C106C9ED8492D25296B19109D0B30AB7E6EB008573275FA3EE895F6E80C1DAA942A8EFD0946202E7814C97D9A08ED226B566EFC641661B736BF83D36360A0D0E0B96D757C0954DD5D0204760EF5B9B72F7E13D66EE37D9E1336D21F33071D64CFB188971B9F8863E5B685EF46E4298BDC615AEE5E3209F078557558B9CC1D7163572C397C84438446E8A991D761E7CA1E11FC9E78538AA5F5243D6C613B2A243CF9EDD0C2C0123362021D135263062768CD015556560A1003A0B90CCE189FBEE822F7F66263CF2DD5B41CDA4732C9F05CFE7EE774B22780225747FB0A8C02D044E2C6B1919B4333307D466606D38D63B5D5E54D952F020930B3828B7C823F9A859F5CDDD6FDA5921E936D92CC2764AA022704230193CFD19ECDA0FF1D71E8645952A74BFF6346C79E1C9DC6C67CD057233EF460FE242E0A6CDFB8B0A1C259BA2C1190ABA14C3CE4D3197059C57756C92CB0D53A79FC3406BA8196E64F2D2AAEA8249E4679AAE294856C4EA22A6A70A7A078ECB0339E6BF0D4D8573CE990E37DEF39FD034BB0DD2C96861B6818382DABB25076A1BF21A6F078A0ADCE57246097822328E52C8BA9F1CF682AA137055C16C6BCE0530E2F0C0605A81CEA402D5B3E6A3AF360BE0C92BA8A6CD661E4D1B0474618AA64DB26FAE00AA7E661B082DED20BA3D70DEA24B20361E39C1CEB31AE2C238C18DD1208EA4B8C0BDDEC0B886D21F8F454140972423402BAFEEF89F8EB63F363C08F19EFDB06A713BAC5CF3551050E5AFFBD29760C982D97064CF4E181D0941066D5F3373F66D656D9E9E43E4762C4E3C36E34E042CD69D0BBDBD7DF0CCFAAD30141A394ED5734AC2A24697C78B92E48AAAEAA2DBED89D1BC2A990C94E09B26526908A28B624E0C410CF476C3F2739B617AD342F6836B3E7F03CC987B2ECC9A358BF96EAAAFF5F50FC01B9D07A105A337CEB673C90E0EDECA79865CFEC3E504914A25E0A11FDD0FFFFD9347F1BD32BBDE5853019FDEF81A5CBC64292336A6729C0D41BF0F44072B0D1617B8C7E78D09BC8061A44AF9178CE3EC96386C069CDE9F8845F05A3D741D3E8C313CDA1BDA9C887D2C1E07511010BC00355595E03ED803A439547464FE9CB92860CF61B2C8214F4CC4E12B37FC356CDBBAE5B881F48F4660F5AA6BE1F22BAF82A79E790E722380B2D212245E0C9B45BEACA8C025514A713873CC9762C231A3B6163E35AFB590A59A735A20954CA2CA639C8D44651869167B1F193BC47A45D598599406FC2025D14E31AB674E119F69E0F9C4D051E88A8F155E481EE4C6D55F80C58B3E838CAFB12C8FCE69C833F4BC868606786FD74E069CFE27CEE1D524E60B62599163753B4DF532162CE12054E3984DD229BA16C4E82B9F49D100BB0F77C1D1DE5E98FF8976A8AAA965DC5060EC428092B555B322085515E5C7BDF4D3175EC87A0A5EB66DDBC6DED1D6D68626163C55690BDE7C7B2F923A5F5254E0A8DEB2C880A38C2DCC968CE3D3603B0786B13BB2F6D34F3C0CBF7DFE178CCDA98C7CE7BD3F844F5CB4A8107616246467D9E9744B5426FE7ED9D2A5B06DFB76282FF1435363336CD9B18309E1B8BC199F17F07AC8768A1AC0884840693E079C32B48C661EC7C2930F52F7C8910E58F7D4BF1666E327BFF835B42D6C6742C86B49F6A776E1EFA98EAD5BB732D0EC5ED4985224EE75EBD6C1AA55AB4EBAD7E771934C8B1BC0A00EA1AA8B59E086CA7CF171BA7E5C7C8B5CC089D0D9DDCFBE534FA1262B514DBEDD9E1CEE9E1AFAF0F0309B692A473FFA6FB7C315175F086BD7AE3DE5BD7E046EDA96B7B821ABCDCB05F5429F2DAB27577CF243171D0E68686E86BA29950C50635D3578DC2E20C115C04E02CDF2F7D34CF9A1438790B87478F8DE6FC14224D319D31B60FFFEFDA7BCD78D599EC80BAEFAFA7A77F1921401D2822866E3725365A9E97165E2C9E0F1FB9CF3DAD1A5E18F6485AD9E34A3201C92744A95B6EDD3CF38115B6B532D2CF9D479ECBB9C36D812D4A90EA7E4A43CC1899A55513CE08A95CE931B8FA969C638459183CB0FD6043150090F3EB616DED8FA2E3CFBAB8D70341446DF3C810EC1382EA3CB4BC23E8D955F7DF5D5F0CE815E1879AF1F32836110A23A5CF1D9CF822CCBCC74261F2E14487D5333CADD515734E01353BDC8EA7CCEC635486BC649B34D03898E8FC34BBF7A01BE73CBD7A07F5C86BEA1089455D6C2FA5737C157565E01CF3FFB53268013CDC33C41D7E93D090C7E948318E9D5D440E8C82854A5DC70415D237C73DE3C98D8B001463B3B996F3F36E32254D64C21C62F2F1AABDF7DDD75DA55BF58877988CD03466FB27EF28CC7A2E3F0C0BDF7C0D64D1BD9C0632884E1914AD8BAFB0044221176CFA3F7FF007D7B0F7CF3CEBBC0EBF50170C76CFE4437A6BEFF3ECC4526FFF19A35701E9A0A1D140BB001619C20777783D6D8C84C894C82B4C95B5E81D19B54346617B3B929AF232027462790663939779C274BA765E8EEEC38560AC6168DC5A014031BD121B17322AAE3918121D8B86337B8FD7E1693B3982811831A8F083A657194BDE91AC847FB401E18C07316BC33F11E9808DA427333C9E4301CB6DD6E100746C1406DE12574656E3FB883252089C21902AE2B302894C23F3EFD2A736B264B3501A2190D329FB909C3360D34C109BCC787CD0F11A70B386C22A69F8031FC08E6EC3F135CE0D405708A3CB8040E9C95C8CA945A8A9862A2EB72A30371B65A206160EBC6CCCBED14586EEFC5DF934AA3D5B11C40439353551D744C9E286DEE7C7D3D55730345058EB6A3A24AFA409341719540075F4EB4C71290340AC028E1599041E563279ECB7F06FA2C64ABB1A24065E65CBECD3233A435AAC0628EEAD16570A326B9C0000715A43042E4590D1E398534C05420AA2AF8FA0C28981D669271B051C803BD4720323A06194C95595D502832701CBCCA42562D83EAC917D459A5C501347D0F6762D8A482808423D838006C3C063B3C9221473D7283A8A581C39ECBA4003213606362934EC561703404F16814D5DCCE6D1C70B0788035F4FF14C050E428E4058AEF2D2B29810B2EBC08FE30F416787D7EA845E2AB99520BC989F882E2CE382F6408F8F0D15EA8EB7C252B0005251F8B22880424C7C710C01868FA47DFD040DAC352DADCAE090712177DA61882549BB8A2A2B212AAABA74055750D78FD2570F3D7BF056EAF17A94783D050BFB17FCFAEFF2DDADA1901FEE29ABFDFBFE98D37E672935C58066DEB447FFAE71C2E8CF002FE000482A5505A5696ABB79742499076495531B00E144C3A95420D899989D4C4443A31D13B3E1EDEDAD9B1E7C9DD3B771E286E5A8A8743E06487D3CD5642C84835B43B279217B9180A6769ED4C146876B22A29B2D91259A8CA1619496525474195594396F7203B97A0DAD282821B89CFC17E23B0204551145B55154B57357568B02F76B863FF81D191D02B07F6EDFA695F5FDF19DF3292ADE99496BF89AAD56E713C5BAFE21C161BA023B7AFA5A08EA2680BC8D678DEA6EBD86C120AF5624E287C8E14A9B4A12A8A351E19333372DA8AC6229B93C9E43B89F0C88E48647467676767F2FF757D3C1F4BAFB9E59686F1C1B0A8289A6C061C99586FAFBC7BF7EE0F64D46822DCCF5F7A7367C01F6CEFEC3C049D5D87A1BF7F001A1AEBA175E639D86640CFA1CE25B7DDBCFA9D49C92ED951E6CF5907C7D70AD75D77CD1274A7F34DD3DE3F7BF6ECD7EEBEFB6EEB4301FF102F736057EAF004EB24D1D1E2F478CFE738B1ED8EBBBEB7786EDBB96E061CDBE1EE5E689AD608ADAD33587BEAF147AC3DEFEE36142583C19B6970BC806E80DFA366E4A712E3836FE238A227BEEBE28B2F16EBEACA2F478B5883EEB31C3DE38869985C3235B1DCEBF562D2620B347E3F72079956AEBAA7656479D834ACBB7EF9E28BCFFD5155FF80805D2E977F4145EDF4EFDAA6B9D830340F9D97D00C82A5152CE0C8EF75A37D6EA5A525EC3B1D2323A36072125F56562651B171029BA6A814857D8EE7B8CF35B42EDC8BCF6F4710050D5BB5EA9A87F0E7DF18383AC4D1BABB65D3F2B1C9EA72C4378140C0969C0E03C782CF52C8B278A7D3C5F97C3EA7DFEF9FD6D3D3F3B305F3E73ED33C7DE6F5BFC2E323CD38AD4D07CAEA57492EE9395DCD146A433EF4B1F9D5508FBF0AA6D4D52347E8AC364F41874D9B0328D6C6C1E972142662E3108FC758F1327F787CC8EA35D3466389F1398307778E5F76D9654EB7D3311E8B85BD14BE5346A8E53613E854BBA74D0578AEA565E6A10DAFBE3697BC310D117F57EB764BDFD735FD32C3D003DDDD8751C0099C04176A5CEBC8B4A6E90D8F3FFEB8FE61818BB54DE73EE00F967E231619E6540A525881C003FE4080ED7B99D63C030550C6AAABAC00412B2AA6C16A733823B06BC7EF199B4B2E17FA733738DD5E909C9E30AAE56B9191A38F24A243BB702CE68A1597ED4B26C6DBB85C4556D38D1CE8ECE7BC8B0D048370E040D702BC962FDBD3055AB651DADBDBCB79CEFC43682824509596B4B0657A8B5A593DC5FBC20B2F981F06383DB8B1BA7EC635BE40E552A7DB331FD38F520E833122718A50BDE8BA9C088AE3B32518DA6C6051B263F3A666E8E9642A3D6C197A3F0EE488AAA60F2B72E2FDE870DF3E7C6E12C7C05480663B111F53684C59D034D306036D9E105390394D24E4D6502844DBC89C142A4C325D0E4D419C376FEE8ED0D0A0A064B20B97B3E7CC9AB8E8A2C56544801FC8C6EDAC74FA10FF4F46E1D073B9550D21BF40E2F1043D92C7EF47DBF30B0EC98FE9A30FC94BD795D4DE70A8BB9392B4496C9E5B8E3B99CDF1DC14AAD3531A9A576FD33C354923A1D91D9D98BF1E4BFD49D5A88443F17C6922917075761EBEE4DCB6599BFB8FF6F32878E8EA38142C2FAFFA215EBFFD436DDBC68129A44AD8468BEE57F1C06027DED2DCC0B68E102F9CEE20BB151DAE2FE5C6644D728F063E2693DB3931251C0EDB5D879C97B7CE6C79B9BBBB9BC7A009928909DA377F3B0F67CFC1C5E371B1ACA2F2F5D3591F054718EEDA68DF5FDFBE7DFBCB27D781B3DA999BA0416CD1C1C1C191C1A191D5536AAAC185E6110E8F79972E5D1AE48AF96F52FEDC192747816DDA25972CBE4D96D337C9E99440E448DB825D1EB7110C96FC7CD3A6DFD1B6AF30B53F15FC1029635783AD0249F3FE8E83FB97343636A127AAB8E7AC019E8FC4B0A3BA5A25D96B454545E053177CE25E4553E6A0ADBB9C0E876C73DC619E777CE7E5975FDEF2019F49E0AB2EB978D1BE70245C2E6058DED8D4FCC65F0CF855575D7511BEEB0EF4EB37BEF2CA2B893F31F3E2CA9557DF6A1AFA0348526C8C94BB7BFD7EB46F09226156E753FD3EDF3FAFFBCDFA1FFEA9772F5BB6AC5592848E91D0105BE59D33A76DA7F897007DFDF5D74B38F827B04D952489D439F1C73CC88D375C7F757C22F66028340298D880A2A9E0C47C9D18BE0423C2BABAA998BB573BBBBA3AFF7DC99245FFB069D396A9A77BAFAAAA9FAFAC2C7FB8B7B787D50929A344B7BBF72F32E3575C71C5D730F0B0DF7AEBADCD388354838E9E6A97E26DB7DD16D8F7DEBBD191D111219D4E33FF4D612FF96C72865423203A1330232CC160A9AABA8AADEB7BBDFE7D1B36BC3E8F9EB162C58A1ACC1697783D9E2F22192ED13555CCA819181B1D63A132ADDFD7D636D49E71E0A4BA389867D6AF5F7F7BCECF2672CD9EBC5C71E9A597CEF0785C8FC9A9E45F29AA028383430C28A938458654A420BF9EC9C86CE9897CBD1B0326DA89892031136C1A1505BE14052561C88AA9B4832D6452FA4CCFA39A7F643C02A525E51B5FD9F0EAF233AEEA57E28100F249C2F0A460C64BC7F9E79F7F1976D7A0ED1F8DC5267E595555FEC9325E74969597431A838EF128C6F818DFCB6C1F5CB650825921086E17DB3242FFEAC9EDF5E06C46AB2984A66DA6F45BDA5D2967144827D398D0F850481E4374884FAF5BF7DB9B49DBCE387054F115FBF6EDBB0F3F928A534AEB59B468D13CCCA02EE5799E086F5D2C16FBC2B66DDB28F474E02CAD5FBE7CE9EB86AECFC0B013CACB2B30C64FB31DCE14EB9B6821E4DE58B112CD80AA425401F220607477E0C1D98F46639048A628FFED27816220F3665757D753C3C3C3E379133BA3AA4E591DAAF9BB9AA6ED4601EC415B6D43B0CBF1D2516C8F20C8B5F9A4E10497E6B9F4D2A5DF1E1B1DF91EA9E9F4694DE0C3A404131AA6EE94F5D1020695C6681F6E5555B5AE28DAEF3121D81F89467745A3D18E83070F0E10F3E79A998F6D3E7221E22310DB3F2198DBF03DBBB1FF35CED24B2FBEF8E2D80708661CF3F07039C5ED23C32322A92B959A4B8201966D5139ACBBBB876D0DAD9DDAF8D98D1B376E3EC5CA36D8A70178560530A7F3E9CB962D5D1D8F8DFF572C16F5D2FA16B935BFDF67FB0281544D4DD5E56BD7FE66EB47AEB99DCD079767B5635EC09E1C9A7F9467FE1F6409D128E154E8680000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (176,1,'Video_terminal_(96)',decode('89504E470D0A1A0A0000000D494844520000005C0000006008060000009057158E0000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000029A94944415478DAED7D099C54D599EF7797BAB5757555EF7B03DD3408C8260A261845500C113026C485C42446A38913279979E3F8F232F39C4CE697CDE79B499CE864312ED11811350497605406E3CE22223B4D37F4BE57D77AABEE3ADF77EEBD55B79B06916037E378F91D6ED5EDAABBFCCF77FEDF7A4E71A669C2786F7FFF0F3FBA3A5858F81D5DD71BD369D993C9665449F41C002EF3837FFDFE77D79B137153E3B471E3F96C575C7145A86EFAFCC7EA2735AEC86632904C2621954AE13E85FB2488A2088B162ED8DBD37EF4E61FFECB775EF93002CE8FD785AEBCF2CA4869ED8C2783C1F00A399D068EE3415114BB65D9BEAFAF1F5E79E5F59933E72D78FCFF7EEFAEF33E02FC2FD80ACA26FF3C5C547C892449402D142A80CACA0A501595817D887F07769CFD277823FE12ECDCB9AB72FEC2F39FB8F5D6DBAB3F02FC14B6959FF9CCD905A1F0A73D1E0F5093240F03BDB2B20ACE59700E989C0E072FDC0EC3FFD8075DAB0F42D6C842595979DD9C73177DE923C04F45BAC355374A9257228EA69607DD03F5F57570EDD56BE1D277D740F92D9361D6338BE182458B2185B4535A5EBA9623EEF9106DE2785CC42B79CFB7C016106CDA7B58F3782C7A89442270FB97EE80BE9E5ED8B9E34DD8B36B0754D74E869A9ADAB36FF8DAAD73F1146F7F04F8FBD8962D5B567FB4A30B4CC30441C8039FA718095E7F650B6C7B7D334CAAAB81683C0EFD1D8760B07136A8AAFA11A5BCDFADA2BC2CD8D5DD8F600B76135DC07B60E7F6B7E0F0BE1D5058772BF49ADF80506412048341E8EB68866C56313E02FC7D6E7FDCF4FC1B01BF17789EC3C6B326083C03DF340C78E3E5E7C157B418A5FB3CA8ABAC81A1B807344D034DCD9AC968A6ED23C0DFE7D6D9DEF24BBF4F62B6B7053A67BFE6A1ED48330874176A0F1C3CD2057BF63E0BA27E08C82153353DF5F4D38F443F02FC7D6E8F3F72FF93C9786C0FC731E716C1CE37F230BD5E2F984A1B88D13BA05C7C9A713AD9E6B83DFC9159780A1B4AAB31D4DFFBE58C2C77B98E3229AEACAA657B03A9C5E7F381AEEBC8DB59EC0CA1EFBE5FFDF2960F25E0D75D775D70C992251FA8C5F2D07D776F3B7268DF35C944AC9700765A79653594574F814C26CBDEFBFD01C82AFA8EA1A181EA0F63108BBBE59B7FFF6ADB91968FEB28611CCF69C8AC1A726B16E148E1904FA17026D09C1B324C6D48CDAA7D86617618A6FE6E6CA87FDFD0D050776B6B6BE6FD5CF0DA1B6EA89ED134FFABD575B55FA9AEA9AB276B4441D36FFFBEBDB1837B77BD188BC6EF7DE8D777BF001FD28DFBD2576FD1FA7BFB05B00816B83C0DE4F65633ACBD41C35F6794801D82FF81CE03A7E0A715FCAE8CC792782C861F1DD60D6D50D7F45E45D57AD2A9D481BEEEB66674801281CACAF88CC669F3A735CDDE84F4210FF675FF88D3F97B1E7CF0DF07E143BE71D7DF74ABDCD7D7E723BC45C1C338D4067314E8061D06838027D0714FBC4B8D4C3B1D3B818EB3EF73AE0BD86F7CA81857AD590BFE4000AD1201E2F1A8591829E27A3B3BF5FEBE9E3476483A2DA712FD3D5D07339964B3222B3D713971383610DBAF6972774F4FCF10DE87FEDF1EF01B6FFE66ACB7AFB7904CB4CAB3E641B67A3670860602E8C021A89CA1828060F286021C82C9D15E43EF4F4526D1B3908DC5203AD40FC3B8A7C81FEB04FC9C1B7802BDA8B804BEF095AF2347FB9872244BA4A3ED087380BCFE2072B80CB29C810DEB7E839D11B3BEC72C1920F3D1C4A6E37B95E738D4A89046194861F7C7910AA378CD415D51FBD299644F2A9EEA50D54C4B3A9D3E824ED5C0FBA5BC0FDEB5E7214B60935D9C45C5D5A148C00B7EF0A071CCA163E21138F406052695880D78C953440F5122C705F74578AC1A9B646AAC634C5D03F458ECBD02869A652D1D1D846DEFEEC44EC4CE43B494749AEC73C48C8348711978240F081E09D2B2CC469433C26890E1E8C2BE36443C468ADD8F2DC2B94711DEBB287921ECF541385CCA8E093C67E271E353ABAEC49B619D24E3D912BAA6F5E1287AFAEDB7B7FF704200474599819C5D8C92890FC81135F00602880F8D9DA1B1816CA094E36B8EFE8E02CE11BF1890D545406841127D207A45F0883CEB2C91F6E8E07844BBD3B0A3F02D5211E9003C3F7E77368E24D498E8552AA06555747414A8BFF093A0ABF81E9B9EC9609F657030C96064651C5029D0E5242487A230D8D305C3F138F5C6A80E322183666546CE7028F902614F8C8687C3B8AFC4D62488DE051515F58FF7F6B61D1E77C05172652625888680EE34DDB090EAC3F70824723A7A25C08B1291308E6DDCF3F870A43451D8788A7270D6C36A26431369C7B03A0F7B8E00E6E9187997040A8E121E3BCEA4F7F8551D079821A17BEF41C747A2F31A205287530FD3E7E91C3A75BCD5491AD319683A22D555E148E17014D1A8CCA80C60501068053BC7546436AA4CD65129D6B47402E4D8101C6D3E08DD473B49A5CCC65B187FC0458F37414A0F080C4E43C90338B73A04F3673432734DC60792D1EBCB641550D534826492AC33300CB44F88A74D26FFD6D0A68D46818EA066D950F7A0E493F44BD8673EF0E09352C08A17049B0F48D122B082610923814A74A55307996CF498F819138715751729EF78C684584643FA51D9FDEA38CA0C3D88AFFD608821BC473C07F69CEEC157417C8D1DC8CCDE1A03CEFBB8067FF8FE5FE3FD43E984508ADFEF8F91C5C19E1D41457903D44E1040FB3888A015E36BDE565E1C713D388ACC3E4E1D80D4A02135202CCC1A21579D0253F4390A42E92AD1868A0E8D825E641CA510F7AA66538BD5487A537D5D5080D7553503547C4F7B1311D5551D12E90C446505529A008A20812E7A7190F980F7055197E068E3AC11A569B827B0B1D7D99E0483BA4A47FB95FE6E47A4717C144C08E05EAF3F4E0F65880664902F251E5D6B550733EF818369C7404881D183D1017A4DDDA4C869E86A3F02FBDEDE0631548CD366CD8559F3CF61568993E19148A279574781D559CCA5671760B6270C758460FAD4C6FCB5A9334D0B343A462E3F5A1F2CD34F6D389E80185A342954B41A768E82928CCC4F412F50E8399072140A1560A767B31A7E0E7582B7D1B69C8C89015CF279E3ECB151CA92F8103E940145B343D0647AF3B6A540710046D31CDBD3315D5760EFCEED70FF9DDF83C4B015D4FB13F7289C7FE927E18BB7FE2D1497968380C012689C99EF344611D48B9CC5E54EC03B37D2D8318BB7992FC0591D4F23C78BD60865886C0761A46038EFECFB05C78FB0FFEBE8E880BBD6BFECD836C10989A5F81170663998D6D0E55121AA340C9D9B660F6FD9600C0FD37A0EFA8E8234F2DA538FC239A5415854118139258530A7B410A20776C1C6077EC1CA1F9CF3183941B6CE6DD867E7C0A12CCE029638DDB494A3D547B607CCE53C298BD6EC839CE31D8F386E9FCAE53DD34BAA14E05048FCE807E03631122EF25282998138EC380F693B15321AEF083819258CA74DE7295C1B2922399D845A32EF823EF75FA075DF6E664148A8282DC02D2A62C2CAE5A59277860BFE25ABE84C095AD7B24685690367997EB9AFB10EA1FA16D21101F45E89BA9802372DBD02F669DD1E732814C25B53A0B8AC187ABBBA26067094B734B3E8488B23F7F1C87B2A6A7D137223D91D51B541B75EF068D92888D05046254703C2523EE0A8CA2966E500E369376773AC136D86C901A9A15467E9F316D66382EED0868EF7D8D1DE0E0FFEEBF720DADF07175CBC1C967DE66A288C94DA00737678C2B9550B7D911C3954FCD5759311F0CE89011C9F2B651896A5419B84129ED53830DD1A9373814D00D907C8432DA9AC016F7A0814C32289183A30DD29B4810B42966A32C1E67C32ED388BAF4DD3D607D679751B14D34D1B39D0ED11663AC73988F675C39D6B178390B142005BF66F867D2F3C0A7F7BDF1FC11F08019753F266EE5C6077B80F9DB37049399D67420027614BD3FD31F30D1B9033A11936E1BA24DBF5D270F047C0A72F5C0C26B9F85E0FEB8608EE1BC2012A5A64E100874E186F9BE072D77114E0810C997D3975677BBC39A05D21302ECFD57B5F7F094ACD18AC9C22C2F2C5F3D9F1FEE67761B0BB1BB85181332E47E8D62809FA3CE02B28A4F713A33449C21D7B999A89C33AAB9BE0B2D66CEC6D8BC156F90C701CA233CEFD18F882D6BD1380643F7BD171290C0599B36398CE39EC30AFDD590A5E234B4E8EAD509DCEC8C788F3A0734ED4D17E4FF454535E048DCBAF820BBEF2373073C179E0454598CDC8C7748EFB1CF49F8FCA324285744F1323E1BCC9A589F3A8FE4345C07953CBDBE166CEFA722C2C0B38703A8103AF3F000567CD6154328C2D818A8F38BD72F2D4BC448363D9588D3A945190993FB7E9320FF356891BAD3CE8B567CD85C286D950BE601902ED870B2EFB149C7BD15218EEED040E8EED2C77AC3FE097D83DE3B1D084008E160A9370025C5329BC8A7B0E952145FC46B18A01F90ED0F1EF49743A7A3BDB41A869826ED18FDEA20903E84576A532A023105D1D6DCC9220AA325C92ADEA79B00DFBBC86CDE5E628D01DD3CE0DFAA4E9B3A0A06E0688C14276AC664A03ECDEDF0289BEF65C48977371921B742F05D5FC413A5860471FC717708D3753F49004B6AA5AB16E72F02910949364970341D64C3A99808E23ADD0BC6B07F83351F8FCCA4BE0FA5BFE0A5A64150650CA6B9BA6C237FFFA5608C851D8BDFD0DB4288E828C4E1501ADDA34628EE074D3B6CFC74E61728EBD6D6348657245332F8083875AD9DF7FFBC433F0D46BFBA163FFCE9C3D9EB3CBB99176B91F758CC7325583D5D5D591F18F1622A588C8B90A82CD1E575318E0722603C182028B401CFB8AA2FEA92474B51C82FA4209AEBB6615F8FD7E76A2694D4D30F5AC197068FF7E587CE185505555058D0D0D30383404AF6E7B1B8E1E1A86F229D32080E7A4B095416E3E581EA7618B218F4066B30A7A94528E0E4CB7B833672B0B5D9D9DB07D6F333CF9F07D70F6D43AF8FD0B6F90060743F4423C16835061A10DBA798C5D2EA1844B74CF0604790F4F800F8C733CDC4C09F8A04CE921E80438D08DA764282D1B699D30C091463E36BD0ECE9F3FE79893CD9D3B17C2E13003DBD94A8A8B61F5F265B0E7C021D88656445DA091295BCEB6F338CE2999E098E451BC8400079709CD4C471C1951ECBC575EFE4FF8B73B7F0C7BDE7D978D8A032D1D3967EB270FAC87C32909AEBDEE8B30A5B111F93A607FDF76DDF035C5E745C347A389D734BD06FFDA3CAE94A2A384F3029F1FDA1ABAE3820889943C126C3B0ECBE1DF4EA58278E6B4A92C4E4D5143C3AD285D5C4E591B4A1E98A3B89C2E9D415DF0E86F1E84AF5DFF65D8BD6B178C5541D11F8DC1AF7E7E2FAC597D391C3A7080D11FB8E8C5E27011E5C963EB107EDC0BFE45CE6BA4045E74FC6026E1262ACDE1E69D9089F0795E75322A7206DE6C1D84975F798D65EFA946903C4EF2345948964EEA1141B0CBDAAC383B857B03904C66A15DD5F0EF9E1C2783ED8552144B411AEB8E0F42656525CB794A5EABB256F2484CA9B7B7B5591EB1CBD87603AFDB2F6924BCF4A74D3063C64CB46284BCFF86FF850B91260714FBBB5C78DC018F0B425A709201E401A2A74920D554D5C2C205F361ACF2094A8951E08A12C54CD9E9861D4A3550F96AF9A81D759261BDA6FCE75CA41B1FF2273944630598946C06A29D47D1860F3113D5F10DD4641C5445816B3EB706562CBF146459664A3D6B370A21902544F7A3DA59ABB2B27278F9854D56A7BB3AA603F93F2A943A6EDFB8DBE2E21D5FFE7266EDE6575848C34AD7641850142371BB6DA6CB62F0489475F7B95C418E497B329180443CC168235418864849317ECE8B12CC83DBBA334775208B7F50580139BC2852843AA072CC9B1D4D234E891C352B119E0F54D16BE7987B6B6E6E863B1FF983F376FC01B732DC828237EA6537AC5AC38D9C9F311F9A1B693DD06B0A260D47A3F0E4A38FC0E64DCF410A812FAFAA86EBBF712BCC5D702E040305AE6018E7846472523EA203E0F8D56D6EF05A5B5BE1DBDFFE36BCFACA2B501C894008DB430F3D0453A64C390664F746B1745E4DDB71E7F18FA7F0560299CF3A12934D44C14BF948ED783537DC08484CB09CA6FBEFF9093CF5DB07C1CC26F1A4D8017D9DF0A36FDF06EF6CDD061AD5A8E414A179CCF7DDAF4FA69A902A6BD7AE5D0B4F3DF514F4F5F7C34194DA81AE36F8021EB30A998EBF9115C5299625644C40D647B4FC7B26E1EC407C78187C9C0E99B1003F8EE05001507F5B333CFDE0F7475A0D83C3F0D3871F8073CE3F3FA750474A733EDA9B1B392781F8FAF5EB61C78E1DB9F7A4D8A737D6C3A697B7C2F3CF3F0F2B56AC38AE945302DBEB11A0B4BC8C62E2C1099170F4DCD2CE83466371F0F32A6446530A370A716E94D996518E3979594984253448918E22DF5CACC61C25F32703F89E3D7B46BC6F6AA883FFF74FDF84B9D3EAE1EEBBEF7ECFEF07FC3EA86FA0DCA63931128EDE62CA912E1D255B6001AC51536B1C846C37DB2DAA64069277B7734F333B386F5623EC6F6E87B6CE5ECB9B1C25D1F988BAABDF6CB3F4441CEE6C478F1E85A2C22044E329D40F7EB8F7077F0734A565CAA41A78E9ADEDEFF9FD205A4AC5E59513A2349984FB02FE84F3E44CC2D0CA90474BE57178D756BA505E5D0B9565C5505B65995C0D93AAD0CB2C049F0FAD1472ACDCC9DD13F0B861BC37E019B4D7C9310B8782F0CB3B6F87867ACB7F99D9380962E8DAB7B59D785A901FF93B80D6105A4F1343297E7F20CEBBA5CBD44156B4B1CC84314122577DEEA28F4374380EA5C5962F21A1D42F983D0D6DEA02CBEE1E2B5D07EEB02F37223A79A26DDFBE7D6C8CFCE627DF81F3CF99953B3EB9BE96ED0F1F3E71411509413014A67A96899170AF24253881CBCB1E3A0FCA6849E38E55A00E40E469CE5A703E148402EC4F83D13874F65831A1A9D3A7337B7824D6DCD8E3C67C6FC04982172C58002A5A23E954C635327468ED4BB0D7D3F19A27041CBD572F52203A638513C2E15E6F304E65C38A2DD554A29C56B4911C0BC7B76D1D1A78A74381DF3FFB24549417A3F7A7410C39365CDDC896E9208E67C0DBD55A2670639CD57C4F4A29C4F3AC5CB9121E7BEC317862D3369853530352297AA66D43A04633D0D4D4C46C6D320FC7727CACE795C02FF8C0234A0535353581CECECEF4F89A85029F14783EEFF551591AE76135DB7E9F7F4CE9063B364E61DCA18101686D3E041B9FFB135416485057E361AE3F51CCF6437F069993E0A265CBA1ACBC0247418895268F00E224CD4293856715689C3C997D7FD7DBEF40696C0D64A30908231D5F37772EAC9A391306B76D03A9B111424545AC163D17BA70006733A0FD20783C01411128443BBE800367A678876759E84E03192580168E61808F21DD94B018469BBDF9E041D8F0F8A3B0EDF5575976278560D4D5D6A033849DE70BC3C1FDDBB0ED878DEBD7C1E28B2E862BAE590B0D0886D7EBCF9929EE928CE301CE9CB26C16A278AEA31B37C2E5482B6FE2B569BCF8782B9C5B81925D451DD9D909665717446B6BA1183F47317B770753B984E8095047F815C52CC1435DE32BE1C0A5A990261787202B4508433C1E87B2D2D291F69B5DF290C0BF6DDAF80778E4FE5F3067C9D98E1C3902EB51E28947B76FCF9B684303FDB0F18975B0FB9DB7E1073FBD076AEA2681C01F1BE635E0F880A7DADB21B8772F2C3DEB2C88200F7F66D1A251F9421701E2E703087A76D6AC5C92244F295E3C212DB020D164833A3CF4EEF84A38A084D3346C9B52A81C0C0A0AD0CE4D5836333752B711959074AFFFED4323C07636E26C526E63DAD0AD2D30D0D707D53575A46D8F05D6C807B4DC012AE264CD6E191C5D356565505E5C0CCDE8DA93E413B5D13E4315BAD8345682CD430605C38B809B761283CED3861D57B470A9536C5A3EEE4A131F2FED58124CCA2980E50F310E1E4B55EA949BC446A1569E9525BB6A4938AB663C9596416219179ED9E1AC181F3FEB0D04E1993FBF05AF3677E07BD1AA8E35AC2A5A0AF36AC961F0CA7136498BCA9575FABB5DCB822C05B29C0683EACED1B413BD01F0204707826128A8C6160E33E54C75E8224D93F148505252CEA29BF45D1515B986D76840A74EE9EF61D615DE5F68DC01270E175C124E93A540F4C3EFDF7A1B9EDB7D946565349AFB4E3588A8DDE259A41C830379E6656036C8A860454AD7E058F5E1489540F016401772BF29F959868880E63D56E932879FD95A1861E50D3435C52372E0A1902FAA102A43A3E92912CF815760D33358965DC23E94F06F2C1F29589FA53946F439F679D604FB6FF97A76A22CF29C493878049B753C137C934D1460568C20042744C24521AF34399AA1260A70B8EE42365D84E32DA9A51B54894B35469876490282C2335307ECC823FB0EAB6503EB35FD13080CCE0251E0F3D974D39EF8908B16DADE1015D1E733FA9C5D4A6160236B8AB7CB99814D5F31B0F30D1E8F682810992C2BE1C061C84A3E0C2A6C92B340ABC8655329C8E2C893930948A04EE1AC2C55C1F84BB80136873B9CA15A8FCE73B9F806CF09ECA165CD6419F25CAD07038E77B496CB1BE52DB78AD50CDA057E9C352BC2744556D87BBBC89F149D8454123055082859BC391D444AE3690A08788C748BAE5A5360D28A0C3AD5BCC829D0322948A12E89F6F6A2A24F2087E7BDE469539B60381E836E54A0D6842E9D511751965D7C31FE8053E6DE237AF24A53C93065C9E7D53F033DA35BD5AF0EC8564D379703DEA903F1715447264310C1A1D8388F4009A8173CB817F50C1B415C56061E4105040B90B3D57412944414FABB7BA0BFAF07D272865190B3908DB5A88D906B3CD3093C0B1B703C9F5B12C459A5C2D9965E7A298BD7FFC73D3F63803B059EC52565689E3641323E3C63FCE3E194B917F39462D2D41304B890D7C0CFA19421506C8E8E2CA3C9A800AF51C1108249E9B86C9A05F4392505663A0E064A5C1215526F471B1C8E274EE9A608309AB743FC2B8A1A9B342508FA08C019E8B4E7AD24366F539F1B7482BDED682B037AC6D973A0BCBC0A2A2AABA0ACA292ADB745DB1FFFB0DE37EE806B0249B890B3C30FEDDC0A35D10118ECE9848E5882996534A766BC16776089EA5C6218C1D6096C0DF95F1C09764EDAADC56EA80EA5ACB2122A2AAAA01CF704704969191B1D931B67E53A8412D06D5D2D6677477BDF8E6DAFDD31FE394D94702A957028259D4AC3A1BD7B724353B667078FF7C656056233E034CBC2F1F1100A1742381C61AD10CDC0305A3CC565A55059590D9148516EA52126E9B8A74AB1C1FE3E6378389A8A0F0FB5F7F5766F3DB4F79D47745DD9B27BF76E05FEF9B6094822AB68167A3C23322E4E069CAAB1DE2B4FF8976C029BB5EC61E5C6C16001FA5B052C4045597FDA3370236188848B586D8B23A5FCA83D298F01B43C868706B5387A63F158ACA5A7B36DCBC17DEF3CD0D2D2B2EF4C597B85019ECD8AACFACA1B0CD98ACFAE98400E35380F0451B2986DCBE666F2AEBD75DC51581678222BF421254C412AE24A8F24B1BD9715F750F3B2F99C54424139464B295A4D745185FB38E1459501A9740A32B2ACA337A92A8A226BD9CC7032953CD8D9D5FEC72307F73EDCD9D9390067F0E6ACAECC7DFEFAAF6576BEDB2C398533ACB8C696EC11608C058EE8064A1C1B40712498D6DC40664D5B6567341956574C5D67EEA581A6A29C4A245A1435DB914A260ECBA9D45B6A36F9FA8E1D3BDAFE3B2FE3E1D4479BB3E7CCFDCA91D6233F48A6D32172DD3D3CB066598568B35A6BD1A02D4C4BDF59CE86AAF16C8AB76511F0A620723A7E4CC14ECBE211B68203E29A46F092085272DAB41997971417F9A81FA94353E92CC41332AB278C141553408BABAEAE146AAAAB84929292172F3A6FFAA75C7CFEA1588EE9035D3F9CE3DC5E1048BFDBF89F7D559595059D9D5DD0D1D90D9DE88C7475F540343A8C16451920D0505343AD9AF28E6FADB962F9ED86A20E2A4A8A22649ADDC82BA33A9ACC07D50937DF7CB3271E8D2EE53DDC65E8E556217116E8A6D6A565B5D754C3D8BA61C38653D609E20700B0B3A64910F9B95CF205E779FCA14FA0833247CD6683EE25F438706ABE15B6A88D61AF1661582B0C2D2CAFA8D94CCB78205D9BC8322AEA8D34F65D1C75478BA6669FC0733C4B915F6C71D3344F7A05CFD5AB574F41E57C169ABA1D6805F53CFBECB3FDD75C73CD4255CDDEA5EBEA39A88FFC789C4D9B26A51CA2FC27256824EE260F27C1DAB557EBD75E73752F12DF7F4463B1FFBF69D3A6D4B801EE0239ECF10426171495DE8837BC0C9FBFC6D035BF139BA6B416450579DB517156E624A5490B8DB1C01297CF2E979494425DFD14880D0F52969E434529C9725AD234853234F5D89644CAEA7E2249BE4E5E147F88B7F11B8A0C8F2579175F7CB1585151769BAA646FCB66B391743ACD0DE37905BB8477E9924F808CB446811DBA2E5B13571447E44BCBCACADCB95901EFA91A95F83F07FC9EEFAEF9ECA7B78723254BEFBBEFBEC4070A383E24B96B25A1A2AACF7BBCBE5B0D4DA9336819879CC92758AB520482108894B238B9E5450AD6B2D61299835E340583AC2499798C68ED10C5BCF6EA1B60F212F8F1BBAC5E8626ECAA22B3C9F3B1739DCF665275C1C2E29F35CEB968F2E15D5BFE81F4BDFB1EAFBDF6EAEF4522A1FFD3D5D981AAC52A75365975B4C11641D05985AE150AB695BC895656D6237834341A4C1C699C9C497BDB3BDA3C747F4174AE580818CDD8CAAA2AEA0CEE853FBD702E2F70F1356BAE7CF689277EBFF2447473CA1C4E139250A2E794D74F7B3839DC3F6374BEDD92DC020B70DCFB0205C07B0AA0B1B181014C09035A5486250E1485C5AAE9A1B314EF36A9B388A963F6CA114974C6ACBD5564EF92185182DAA97340CD665EDABBED797AD8DC4C82B56BAFD9D6DFDBBD80561AA2B20D925402979218FA88BD053A59655555D5FA96975FF3BBB2B74C80162E5C58505F5FB306AFFFBFB2994C037E476075EB78EE7776EE62F7452B464F9ED2A05754545FB77EFDFA474F37E091FA69E7AED71479592A71ECF2B0949C08906407026C4FABB955D54CA6F542EC19145CAEE48D4930E36F3DC7E5C9F83074B5B5808C76771A1B79BBEECD8F1D58585C0E8150899949A7B6F7B4EFBD69B8BF6B9763327EF6B357FE381A1DB8CDD455465F6E9019B863004E1BF908D3A7CFB86BC3868D77D90C20D83CE7286C1A41DACA952BCF350CF5773DDDDD15BDBD3DB9EFD3082A2E2E82D973E6FDFA77BF5B77C3E9043C5C52D5F083BAC6B937A6E2FD9E547C08E4642C376382F88E72893E9F9F799194476C689AC1266A59096B37E0F6927C94F1312C108EB61E82A32D87986B4F1DE4C3A14CD3BA298B142828A251D09B18EE7F69A8F7E8A3C3035DEFE069BAF159D862E3975F7EF92C2593DAADA8B2BD68CD5852ADE7A4DA8D01E991FA499394CD9B5F59604B370F23C3F5CE4C47EA0079F5EA5537B71E3EF40FF1449C4D08336D455B182E843967CFFBB775EBD7FFCDE9029C50AB0C452A2F2BA9ACBB22102A9A1B0C16D66633490179151F4A010DA98292014CE8F0D629A8440A52B0C3AE8E5B4E606BF60C0643B7D26D4425342740F205908A7C8A924E7565B2A9966C4ADE27A706B7F6751EDE6A5B28517C86ACFBDE2E5FF1C9D7E3B181F3096DC6D12E70DDD27DBC67AFAAAC325E7DFDADE92E9356B4F74EE372396F94F85597AFF8566757C74D34192189A39174015DA3A8B81866CE9CFD8DC71F7FFC67A7C50EB77F9F2160B788D71B682CAE6AF884E4F5D7891E6F9947F296881EA908C93E2C881E3F67156CE6579131AC79CAE868A9BAAE2435558BA35936A429DA205A23FD78AC379B4EEC1FE86EA1AC7ACAB6BFB3F6EBE3DAE1175DB818FDFEB487F2976301FE5ECF8C3C9C7AE9A52DA52E1E27C029D8E47535C93ECEE624E0A8FA467F7FF78D4343432CF8C77A03AF3F75DA54D40B754BD6AD5BB7E52FB6526CDB37490DC1EFCF66D3EDDD4776BF69DF8CBB89AED213FA8E3EAAA976D321BF7682F359C56D79BC97C34123EF138B170959B63C9F03B2C624CE3809E122EBA9A828F2EFD4B1CEB56CD3D72DE1F44C940B2DB0854D7CE69967EE5DBE7C9982F6FA2D837C944DBF21616A3BDA06B5D5B5F7E3671AC6D3D30497B498C7E93CF3345DCFB772C565BB5B8FB63438808FB66C8EB711C5D5D74F4ABFB4F9E52ADBA6374E30B205DBC12BC216B23B815BBAF4A22F6465F95B3DA84893C9347BDCF9F3E60127483E74B0B21FE8FAE1E6B19B611E673B4D97A4E7F1BDB175FB353C2F32857BB26013EF4E99D2987D6BEB8EF3E13D6A4AEDE7506D6AA3E824851EA8B2D4402A7A38180A3D565C52824683F5330C3D7DBD505E5AF25D8071FCA5AAF18C0F0D0C0C246B6AEAFF2C8AE249497561380233CE9AD9FCEA6B6F2C46E76CD8A637F324048A2890ECD5415B81D36BFDF9E75FBCB3A6A66E80CA04C93A5369CD474DFDD2074E29E38EB44529C4AD1534CC972CB9E8AB89F8F0D76574E5354373D6B1B5B81A4700F9061595159D3D3D03FF7BE7CE9DA498133678C9F71302B6AFEBB1A9856A1503D5D5D525B535952FF4F5F7416D4D1D9496969AC3B184C47DD816A1C767F7D8BC4A0F4E09627ECE9C39D3ABAACA5720CDCC1479AED8E48423DDDDDD0FEFC24DB57E28889432112E797029C444FB4B624A0EE8E79E337707ADAB38AD693A0CC7A2505E5153FA61049CB381A62057A1ADCC0474C2BC972C5BF64FC0194BD2C99457D1144E4407CCEB950C93E3559FD7D7E1F3FA7FF2BB75EBEEFE0BAF4DD78B2C5DB2E4C69E9ECE7F29AFA88418824DBAA4B66E4AE3190DF8EAD5AB97E3EEEBF81CBFDDB061C3E3A730C4C98AF02D5BB6ECD365A5C53F1B18E817ACD5FDAD2D58106251410A90512D4C2291A40962467969C583EB9F7CEA2BA7EA9B34343494CD9831BD4D4E2725E2EF8EAE4EE6F04D9ED2348F3FC32595E2199F46A1785FA975DBF0219A48AC5973E5ECE2A2C8BD838304B6060A02908827D14E4EB22ADEC1810156015C5B3B19A69F3513264F9AC2F7F4765FFFB145E7EA9FFBDC67AE3D154B69FEFCF93FAEAAAC9468DDC676049B7C00C94AD2A7CF580947E9FE32EE7E4E4314EFF1B1A79F7EFAF3EF379779E595579E8DD6DEAE81FE5E8E42BEB178DC7284548D0160D52A9A10A0980FB64A1CFE656515102A0C416B4B0BF4A1D437354DFFC5E3EB9FBCF9BDAE75D5555749B22CAFF14A9EDBBD3EEF9C2354968D9D490554B4559457C0EB6F6E13C433116CBC79722AFE11C1B9EAC891237B7123EB2180429F3E19D051AA1F6E6D69BD164C83A715F7292E63FF1013039AC2A8E48279040FC81999D595139DD0B21FBDDDDD50545AC2009224118E1C69BD093BAEF5A9A79EFAE11842415EE60592247DCEEFF3AE95242140B34062D1288BDFD3D2234E22BE305C481EB97946029EC9643E8BBB83E899BD6C5B1C05B6DB9FB1F727FEBE2C5F15F0FBF8586C18E2E862EB76D282D9DC91B0B59E22FBE9316B2135A733A8EC63381167C59F43435108A01D4DDF191AEAFF3E82FB2B9FCF877D97BA00F9F8D382C05F56100C4C41C786672B6924E3B95A1E4AACB0451404ABEC8E7E3714DDFC15A73DA7791A3DD46F261289BFB2959EE20A58E92E7E77C73700ED5E71DEBC790884F07555553C14A9F3FA7D2859455671685A6615B38958020A4241B64C08253E48E2698D15AA9BCCD2CF22E82A0BD112AF67A414ABB15154858B44C2BD8A92E669654FAAE055ED1F41A4103429C4A2A212561E42EBBAD0A891D832521C089C0045E1E28D1B9F7BEE4D522C671CE0AB56AD5A82F7F5EE962D5BDA6D8188D9A0EB36D6921DC76011BC19336654D7D5D57D1187EFE771F86E8FC7E3BF28290A9F8320042A2A2A201A1D621926AA204BA533308CEF298C4A65CD34659DA5F5A8D7044AF9A174222454E864FD4A0BC7E2F994564B2612AC63297B65E562450632014E261FFDD216FDD20BBD2E2A8A40616118294B34256FE0818D1B37DE62C7CFCF4809BF1187F8061BD4B42B5228DA362E8546C5C58B179F130E876FC0217F093EE47A7464566DDFBEFDA86D0ECE59BD7AD5BDE670F4525AF4A6ACBC9C29CA743AC9966052551D32591988725445B317B334D9EF1851B2C4E793D83AE524DDCE4AFFB4A7941A014DF58C94D724707B7AFBD8CFE1B88D0F549E29B4EBB76CDFB1E3B6E6E6E6D61191C733C94A21F145093FD8DADABA6AF7EEDD03766CC274C2BB684FCFF17ABD2BF0E157E3FB727CE07B91EFEF79F1C517074707B0484F2D5AB4E8A2AACAB20793A9A460A5FB828CBF75340F69111D1AFA567CDCB0271DF0B9CCBC55024DF3933856A6E7937CE00F06205450C8A88340EEEB272B4453F13EDA7044B4E2EB16745C0FB4B4B46CECE8E8E8B1758EE60ECE9D51805F7CF1C5A5A150A80FAD867BDBDBDBEFA19806D2C5791E8FE732EC8BCBB151D8B419EFF9AE6432F9C0E6CD9B3327089F92A417E0F94A2F5D76F18B070EECAF21A0C8F30BA342F388128BE4A1AE60A69B4A9303380B5C926256288A2D82F440734A91FF63785F5DA80B5A8787A2EFA664F9307EF7204A700B4AB46207BC34576CDF182BBC7B46017EE9A597962027B6DBCAD2BD2908E21FF05E7FBD60C1824D77DC71877132A3C5A625A2A0C24B2EB978DDC103072EA001535A5ACA68817E35CB9AE7231EB31E00591E7BF7EC85AAEA6AECB5C8FAE79E7BEE261B50638C2489E96E1F4899C4074829DFC27BFA22BE24D0DFC0FD6B48214F3CF9E49383A77A4E2743B374E9D2B5B168FF4FBB7B7BD9D2155555156C1A61556515DAEA695474054CC22925B77FFF3EB6D2D1C2458B5AB66EDDB100FD8138E4E67C9D3A68DC87F0272B8F07BA4333BE152B2EBB3D3A38F87703438362464E335EA7C58D8942A8428C2C96C2C290396952C313BB77EFB9E1D0A14389D39524F91F01F828E01DF0C5A6A6A610B6E5A2C8AF00536F42610F237FBF9148A4EF47A5BDADB7B7376373F16903E97F14E02790FC9CCF753A68E344DB7F01A92ABCEFC84E426C0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (177,1,'Workstation_(128)',decode('89504E470D0A1A0A0000000D49484452000000800000007508060000008661E9610000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00004E4C4944415478DAEDBD07985DC7752678EADE975FE78C4677A301300220C12026500CA2489112956DCADAB13E8DBFF9BE95773DB33B1E7B66763D49D4067BED9147FB79E793E7F3AC6DD9F2AC3CA42452224551244551CC142332911BA1737C39DD7B6BCF3955756FBDEE068826011AF2F091172FF47BF7DD57E79CFFFC2754959052C207B7F3777BF8E1673A62C9FADD20C4BD8978623893C9F6D7EBDECB75AFFE4A50ABBD522A2DEDBEEFBEFBFCBFABEB131F28C0B9BFFDE0C73FDDE242F0491CD97B05C00E7C2946AF2792C99D9974667BBDDE8062A9087B76EF827AAD5E6DEBE8D8DDDDDBFBB346CD7FA51AC897FFC93FFAE2C4070AF04B747BE6996752854AFD2302AD5C48B817477474B5F71905387AE408FCF1D7FF1092E90C89004AC53C78F53AAC1B1C84C1A111E8E9ED9BEBE9E97FD18DC79EAB79FE2B6E3DFFFA57BFFAD5F2070A7001DD1E7DF4A91170E42708DA01E41DF852E69D3E6314E0FFF8DFBF069DBDEBC1715C108EC05338FCF7427E09728BF3B08447111F279309E8ED5F07DDDD7D01A2C4C196968E673CCF7FB9D6F05FFE8B3FFDA383F21C08EF030538CBDB830F3EE8A65B3B6F8220B857091DAE58EB39480152C9D4F63FFEC69FA090E740A2F5AF1B1C81642A85A70DF890FA3E900134EA35C8E71659198AF91C542B25686DEB80B68E2EC8B4B4957A7A075E6BEFECFE793C9678251B735FF9FDDFFFBDF90F14E01CDE1E7AE8A7DD6EDCBF4738F25EB4D2BBF1A5AEF7723E5200D7896DFFF36F7D1B7EF1E2CF58B8D54A955E874422898A9086EEDE01E81F1C82542A132983A514D572095D460E4A853C94CB05701145BABAFBA077DD7A18DD78C9F19EBEC1E7E289C42B6E32F14A57ACF4D657BEF295C699AE29F68D6F7EEBB3CFFCF4F1AF572AE53E242C55D4EE0AAA6601152327A5BFE47BFE3C38E238BEB6BFD1A8ED1D3F797C0C7D58EEEFAFD01FDD2E63EEBD20C5BD4E0C6E442B75806D041F09F19ECF2F518804FD7D7D03F0EFFEDD5761CFDE3DB0B4B0080B8B8B70EAE4093871FC081CDCB713BFD541179082582201EDED5DE80A0621936D81382A4A5B470FB4B677B352F89E878A5084C307F6C29BAF3CBB61D3C55B37DC71CFE7BE94C5CF95A1E37314889C510126C64FFE452E97EFA4DF893FAF35C20681174B3FD805E907EAC2451C46462F868FDC798F8F9ECBC7F7D4F06D3504112428B2884A93C78B42A5F1167CDF9BF083E040B954D8B5383F77024FB4303E3E5EBFF07CF9A399623DB8137FCFBD8E109FC0FB21E14BC24608704404D3347D481E96F7AC08FC79FC7F72720AD2D90EB46CD431D4B6EEDE3ED87ECD8748D7A0542AA19B5884999929181F3F09E3278FA1C07D5400548A581CB2A80C9D68F9D9D676468B04BE4E4A313971129E79E261B8F757BE7C56D7122B157259BA20C771F4CF6CBE2317215109F8AAA4D2E0805E90D245C54804A4340C4F92214AEAC7F8908F64328BCCB655BAAE1BECF8F0477CFC9E3A121F429A329EBF84E744A541A4F1FD05CF6BCC36EAF52385427E0FFABB31FCD279549A738E36DF7EF0918D22F0EF65D62E80D87B927E5C20B480A321D0660B2B5E7C4F4A2004AB168D2D9DA7A3132DBAAD13700CF008C0C37B27BEC41CA10505BC71F3A53CA65EA30E8B4B0B48149758310E1FD8033866AC102E1E8418EDC80FC68E1C80DCD23CF4A23B79470588275315BC888470DDF0F7453F4D28F45392D78F5C24BF92058D52C5C72474277C2D70A45212F65BF49A4F172FBCBAE7A282B878EE049EA6653565A39B134B427B572F74397D804AE3DF8C4A830AD3C0A386EFA250A8885F50D048B3D8683466ABB5CA29F48D07F0F151449EE9E568F3B5679E896D3835F761B272FCA27BF15C97B3A48D64E569244E3F7B99529C4B3468696D8593FBF7032225A4322D68D5AD20F9BB253F26CB564AE1A352A0FFAF927776209D6985FE7583F83A2A85EF61F49007341AC8A3729C183B0C994C1666A727CF4E01907CD0A0B63B42C1DDF0E846688C5C03A86EF8551E0AD603817EC6C57BC7ABE3733C1A0DA8169790C4E460295FC0B736B4D507AC0884044EA8000E3F0F9C88E5D20F36AAA5461840464E929F7874F81E290CC10F294D9649981EF070D8DD380E5E1CA1B48D5F23A4711CE17FF8B68FD691B879498CA5928944E2CD78DC8DC7E3A8F17184CB045A4B9205D0D1D1894707645BB290C6B8BC59B8CBF4E21CA18121DE434343D0DFDF0F956A0DA6A7A660627C1C5099A15EF7A08ED6DE40019312A451A0342EF1780261BF572B042A86879102CA291E4FE27B32D0815C815C79AD52E4C8E1AC5C000E46997E00C5A2FC43D06227637D50C3A177D12D38AEC3EE81EE6318B3C6E83EE6402686D085425D27947288C003BC3264060D90A828EABE0A41BD0EB281C68B3FCC6F54A086E1CC3CFED8B98505585A5A0A5D0B8FA86D8C5249412E47A5E5AF87C8A45E939E4FBE8C8E38BD4E83DBF479A1FE091187BE967E572CC68CDA8DBBF81B6310C7E7A430F1449C073E49F748C0B238D0EDA834DDDD5D08DB6DD0D282C40CE1772D68408610B954E0F1EDE9EDE5F3529610910C15A001B55A0DE6E7E7617E7606AA388E64680D1C63898A1147C520C877506E99967648A65B60766632B4A4B38DEE48018A2E0E80A335BE51AF401261BCE20935A4D2700194AFD4038E965D461A58953128B809B43A548A845218520E9794072F2CE6D2C0E2800AC1AFD30F4DA03D5F8AE289078824A42408610121086AB28F3FB851ABF2E1A1C278553ACAE061FCDB40AD5E9C9981793C16507968A08C22AC4D6194BA48AD08013DC71FE6FB142DE15115AB284CB3D21864A0DFE6A2A264D269D871F30EB8F2CAED67A504E42295C24A2528AD084A6852BF0E6C94EDED1D8C00AC14880C745FC571A2A4D1E2FC0C7300E20DA4540D1CB3B5DE62A8D545FE69948D422D28556A88B7281899C0C1117C65247473A1AC04A8C06C677CAFFEEE07DA8803456CE87434B804F74004D3C72FC3D16F04EABB1AB10C2A8D56123C928C308A6C06FAFBD885F8C4C6D56327500883BF94ADC16F78788F4A83D6E1F381AFA302FB357C5C2B835FA5A30435F48FF393A738D4CAE50AA19B216D90CB846B2B0C416D1DCF1BF87E88FE4DAEC07A10433EB4ED8A2BCF8A1BD06F21C5F90F7FFCC7E4B250082E74B67742DFC0007475F5404B5BBBA508522B0784CFC9EA8907C4E22928978A50AE56A1542842BA95D21427602DA91DE20005A98780FEAB57EA80D44359868CAC46B022082D7CC98246EC57CF8516BA24FF8EC450A80F93128880DC8B126AC0C2975A4990C008A54CFC9AA390859481F8086934E90DFF39A02845B17489270D9C04F809A5147408568E807F780C3591CEE9300FC181C6171378DF297D88118FC17B421BC92E4BA18F4F4A846853AF94A1512E401DE3EA5A290F8D620E16A726611A43ABD9D905A8544E6F61C9440CCF29CF8A1B100FAAA2A1A55231F0F03ACA850AB2FA39D8B36F5F98FCA1E410B925E43390401744D93F428314924362FD463112E89AFA078761ECF8044C4F8E45A4FD6C150035B0A825AC4213BA661A18834B01B0B09C80FE269562B0001502042C7842067A2F091BC318E972F98B0C873E4B8AE319F721052B832F95B52944C1BFD37B5D42120171A27E287DB67A4729133F0687A30CCACC48461613A9040C970E9DCC7594C6FA4239781A504A56101F08E8BBE3F83C0115FC8DA59A87704A842AAB882A06B5410C8F2C9EB15BE53EE2974BD884C0B4C5C1189C521FF4BDC4790889F068092AF05FBEFE55A8115290919C45A4C0E132BEF4C9CF7C9619BB873FBE8144BB5828A01F9F8629E448745F2E95A18ECA5A2A97611A9FB311F1400956024A16D1991DE42C4E2CC1B980B56676494E254727BB4CC803642581E5FF48091C2D7C5002E71F8B6FF27890159B224BF4CD3DBD4923007D00ED8365C231302B59A01FABF329A5525F4AA44CF1128504FC23855608A567AC0CF4198944143147A18ACB3E877F079156BE60FE6D012B7015FF50AE3690DF78A8E31A3DE8BBA4BE0EFECF61050B94EE70F895AB4B582403A088869488EEFD18DE27E192CE36E63675743BE49F8938BE53A4C0482123FE6B42BF643A0503EBD7430F46060D14B4472E0EAF9594835CD1D2E202F29F79589C9B63656152886E913812858401A2491DDD413A9D5D9302944157A342F42088D40F95460996B17E2174098AB64B05D364CDF45CA383D07E965D057302E52E08117C255186685FC8906C85AE46F3087201A1405858012797786CC955E811A473901EAABFE1FBE98BC850F11C751CC4723D804A1D078AAC9C4245B21C575D472054BE4F48654DA48481169810D16B745E952822040AF8B7D295D5F0C58EF6360EDB287BD786FEFB747903C52F340248CD3F2C12189141085F30CA418ADA4A8430DB02FDEBD6A3B229E5300A52C6EF2E1672AC1CE5426E6D08A0C23F7D05ECD77DF56303750904BBB0DCFAA566CB0168CBD67E9CAC8985A8122DCC0F9824AA1F01E69EC84CC46EF0B150A0A049254921CE4A204265744848429DCB25FFEFD2C731EA20162F1467604746824788CF23C4D73D524CA5306EE0B02A07A0EE8D5015CF0858A0BE56771944EF517C57322204FCC86121E328A12B11D0D5D30D27C68E4319A1BAB5B5EDB47903698781FAB7DB082023B3034B07C27B9086145AD1823E671C3943ABDBC5EEA0943F7B0570580168903934D18C930852C8C6150A04320A05038DE07CAFFF161E64D552933EFD9A798F2F9530C812E93C5E10BDE6EBCF1194D163154100D72318A65D115A252905BB1CED26180D285F219400F368ED454F3202388E0A4F295425B71273543E831EBB31F51A87AF8EFEBBABDFAB8F98F9ACDB7C1EF35E0417E85F3FC496488931A9ADDB10D4405A4710283906528F3744AEE01D10C016B6010E13EF4B197D307CBC260E008285029A9D23D360CBC00805945A18B8A544B0604B20080DC2D0102D05899F2FD57B09153C1169AD420562E7AEB260129C1E14DF17E16BE673B61BA0CF93C018DCDD80BF9B90C028A8034A13E97325D4989A1770A4A0C8A37A9FF23D0ACEA590213123AB57D0AF88A24A8629221768EB5704D370043A95E24B42BB03E208FDBDFDFCDAE2D2A27255864BAD9645D424D0C1C17DE4E1EF7336B2ABAB1B3ABBBA30FC6B0BFDF759218025682B6803B94612C89940265B742FC93737185E199A19F0349FD2164EC95911A195827816B0A37C9C90215760E1B3AF57B9017EBFCF690135908E62FE260A519181D0DC410D26FD9DAC4DA51402BE46A66B9456162E94918D93E0991C3A1C23E025BA5AF0CC50B528B5608D3035C0B31B104AD90568572094EF97C2D13E5D2931F10B5616ED46A89297C0989C64915BCA2D63E10AFF756A21B461C9615E86D3D885928FC46E0C6AD57DC8236A484E7D854CF8378338E96C968B42999616EE1920E5393D02C09A22819871014A01B405A0FF94310DFD5A38E4A37980747228D0BE5E11789D1F7095967AF83C16268DB4F0B5C5ABB012783049393C5FB33F2D74128E17E81C029F0B420E4103A21494343340F81550A49CB8502E40062A44D4618576BE8ECEFC0561AE43B07F57C4315208EDF3C3ECA2A395D4F000850941A08921184BC72824A5BAC12A9572732868D5146CD836EEA10B9123118FB152C5632EBB2B0F15B9582C403EBF8491458D09DEE2621126276638EF2FFD3ACB85124882126742F063EA2F4CA07250C9784D790045021DAD00BE0E0315F0ABE82E2261A043304EB408D02E40801973118435641DB7030B47A18113E6017C8810C46411395944FC804346A15C888E201CC53CF9DA689048B16A9C8A961C0B3B1608AAAB55561F55092C4B2697A344A9C89C4E3409CDEBF9AFA42CBE4644AD18E6BDA015424010868D311C78BA51EE5E8659C69515C628EDAB0B63DA5A2B9522CC1796D01D7A9CDA65BE15A8D3B8780D1944805426CB7C88AE8342C4FCE22C64B3693E17F18F72A108B98505CE8E5269F8DDB900F39358CB9A49894103124610E2BF8A0A981C9A2C98B6623F0C05156A1852A8DEACE362CD1DC2ECA2B47208529DDBD195418312F4BC4AAF6982177159A5B28A2EA86490CB0A6C62FA6582A3FC8030FE1D74042015C4076AA0F937E824937AAF52A2C0D78927EDEEDC8456004A06190EB04A1818680850C28F685D4B6B07747676731C4F4A446D62F53ADD57F839F506361AEA3E99A5DE9D385BBD219BF40DB15802C723A692595E63ED2EC0F7FDA8E811F811A1902A21C2F212964204102982142122285FA9433F8D0E21ECEB605F70C8277910FD10171519348923932F105AB1546847DA8E210FC11F971414346BCD63A1A96BD0E4905040D802B1C23A41B1BCCEA469B4234D34215EA03F1FE6068403060FFC265408209648F14FA064CD0AFF6BA381A95CCAE5452008B37B3C8228483A2755FCD20D8F637E72059468328F4345328DA4521F81CA60AE4901A872C70A40631D5324D067EBD331BA90BA3064334EC919345604A799108AB088242C145050CC6F163A6DEC485D2BD0995B9DD4318801D2248B04427EC0EF2132484A11E3EB2441B9A19586AEC2089AADDFF2FD3A47202D85089A98BEF6F4E4E7A5FA3B6720357954EF1561B2C8D7A8E03A09A500B5FAEA1CA059FE61AEFFD4B17DDC9FE0EA10947D3A44297265E13A6FC00D3B0EBBB2A85BCB16BC54E1656050612D2EC075D8FF80B960CA73DB2EC0502A1DD73B9AFCF9965298CF86F510037981D0D92F4D0ACDC080490E4504D013564A908824BD86F177B9A1D2BB31C709D1811487AA87C240B316BC0213950D349941430503EDEA0210E1EB5C94755464C2C44E4248061D5FA59F85B96E11E82262F47926C66E5223C0993800848221C1D510DE7B0646345CFB3ADD4DEE45597880964E848E2B9E94EE2DD5D10534B809940A48C07C2863093EEA1C5E3309E4048AC7F55A10746E8A0284A24F60C5A364BC8E15A30A6185FA4EC8D9C24CA1AF5054BB0325345FA7843991A32303A12307A1134BE67D7411A57AB3F041F3025351E4B42E345B3D040A9E758CA2327E3ADB27C062FC0CF7CAE70338CD21A0CE82469C41450F2CF0401981AF23014793AE1A2280B42C40DA4DA5320A035968F8F94CB695D93FF515C4630EDF4BEEFD33295E3F4CF79A8291793E37330192A2020B05A48C5CC29A1480CA8E7452BEBE1815B9CA38E048B40CBDD23026B5DF533D21110134029732721522D490A866203447F0439873C242103DF02CC52089951A38C49CBD53CD2944FA024D38293AE17B0734197442C81261EE4C2785B40F0F42C394DAE27468074AB0814E14A99C84760D2C7C374A0737B90D4D1CB502341A2B2B82CD1C0074653308DBCC0D09155A590C3934114C989D6D8AF3F5796460F18028FBB8964C102B00B516B10BD0B74A3E0F99610179CF227E1A96B56CA8641016881C004BF8A6C425F4058B306CF4434E10913E6530A2295A2034C857034EF1C6400F90B49A4D40672C15AE438214C45521AB084C3A07C2244C6489222C16B13BD06D701CF2991C8000CD05A22E61551D74C2D05065144D822860F6AD5C4063A50BB0D020B03A8248784258BD469AE846E4D0228AB08A522CF3F921029876EC35284025954E4BF43561DF54616909D22EC69A7E4C6B9AB16A5539A1C1660BD28A11E8C250188F6B38377C8153BE9ADDABD4AFE60061CE46E7ED49F8F8BE0AC21D3D8FEB48C3D7CA62482188E68213E70EC8155047329854AD6AFBE24112760A1807C9B79239563C2F8228051CB9089D0C0AD47B544BB7815915510837167280D386810AFB2317803F3EB73007C9A46AE7A67980329188FAF9E46A966F2B05AC807E3383684DB5807FF65BBF217FFB5FFE5B24D95E4A6A2FB0880AD041AC88F4436B7320A370C9D53ED55C880BCB5C81167EC8E7C2BF41939F5721218415441274C167CFCA7508E5771551F42DA228746E20CC1CEADA0137920845022108A24651CADF3B5132C7C07728641665E426029DFEF6B5E0A56C5618FE57389A1412FAB89C82A630AD56ADF25CBFD5AB81512A38DD92C538BF00C58222762C3CCA6A06CA82A58CF84210D601025D9493AC6C9CA4D3DDD7A6F024A504B1C65A00A453E90A5E618A7ACCE9BBF2F902F40BDD07671A38740BB78229887AE6A571E106BA0404C20E0BAD7E3B6EDA80303288E9CFEA023C94D0F2890F7348642A8B9AE1873ED3948C03A15BCA945611F9A3B094432A2D24A99B4194378AE0DD7438B00A0875BD7E9827103AE721420B0F0CD90BB984F1F34A613CFC46EA09A8542B50AE94B9347BA63090C6B9985BD4193F3D91C6F40898AAA186750827DC987B9349340AA13F1B5618057734AF490162F144D9759D4EBFE1B336B2B6312710BA4152848C3F30506F8587AE76138E34D3C9EC6E17D36AA0DD82B65A5322F5B57595F1BB6BD4D3E78AA6241257113559F44DA2C9542D8D0BD11942450E55C4C07D44BA010402154F8313F9D250C8569E4055045D9DF831CD66BA2184F98108C91A7F4E87A0A400BDBD3D70F8F0112897A929A463D530D02468E80CD9D68E2612C7B981780C15A88A0A14876AB9124EAE59317358877B4DCF4560550ACFFEC6B24C2412254A2D1A90A24907541256BDE2D62C2161B2E86109C0EA58350AA1FC15F9EEC86F6992082AA9E3AB4E6CD55B40B9702457054FB55A987E415F87599E4609CFF41498BE01A9A206523C0381BE2E1A7192CA35BD00564F80E903B01E736F00D7FB5DDD1720F4A17B004C6F007FC6D57D01D17B58D95009D60D0FF3B517113D434B6EEA0550D74F9352026AB9B3423623C4DFDE2EE063977442E2EB3EB46D6AD531FECA6C1F2912210ECD49A0CF8D8C0C87825FEB2415568078225170543B4D88DD3423485A961B4240287465C5F49F0FB6024018BA04FA6FBE7E9D0F2D60D32C52C3274B0D5F1345D370D2DC64D2D083E719E508548E41450CEA3B022DFC40934B760B5A808E6E28E1092EA410E1EB4EA80C6A0E83B34C41F03E16357F844A13534AE1E8D7C8D5D0420E34004BB9A550E8AC0886AD6B2B2145235F6F876D4661D25043F2ED41AE75096219A739C52B9BC3BD3B6EBF153EFDC97BB807F19FFEE3AFE8B99DD1BC85D859BA01B5764D225974CD090C692114D0A4CA401F082B15ACE37BF3F640AA890E365D7264E4CBC1E20E60F20128C43CBA1C4E44099330D2657CDD75EC98DA4153512972118E9E88EA81AA47D0395DA10A57716A0C75745E20D05C40A88135797C49D183AF5D1328462BAC8881923F8ED520A26A58812E17EBAC229E33D9DACA3F8DFAF4A52E75DB6E4042540CA2D945F962290CDB0C029CAC6661BCE041F7E15E28CF5543E4582DDC7BE0BB0FB10C2885FFBBFFCBBFD5B9056DD578C1DD67312F305400848D12D7D3AD0A1FD50338D80FA76CC9B0A357E8B0CACCAC11860D4AC7EA6051A11D470FC2243844945AC6EB2D52F95392A08C904DFF4044EEFC65E5662122BFC31943A12B83A6052D301DE1926B051C1940C409C2641698303188923026BD2BA21E01D30760B2862A1F0F4D3D853416A94CEB3B56040D4C7FFA53F7C2B7FFE63B619B98A90E7EF3B5BC7AFE6F82D342FFF24523404F60B127325D7CF165B06E68F4EC1580D3C121846841E97CB3146059BF08D3C34297078535ED0AC04A12E9E48F4D04ED2EB10A5E7425009E36E65B73068455DB8B2C3FCA05A80293088B55CA4DA8CA9EAB390517501C754FD7CFE962AE0D08D3DFA4C358130BA810D7E7E28F08C3415F2B89D0790511368C46EDE3BE8EC7E319D5CAD5A8D5C2E61AC7012B5C8A52F4D75C732D97AC1F7BEC47B0B8B0C88DAB32D06DF4260B2154628BDBE7388CE5699B4C54A523746E26A6F31234C3270623C32370D5753B60FDD0C6B3E602A102B86ECC742DEB40BBA1ADDF24564CB60ACC3F204D472DA8491B4267FECCC5CBB04AAF9FEB622091B7624375079B8620B674B0AC989D3844C8605AC54C4A39D06D5C5244CDA8FA7B68DC55D7B0561422858ED096AF4239572B8408AF53378084A54DA5CED2F40AFA0198E273A02B82E6330D42B1A4EA09A0F67065E9AAC610A57A9B5BB5B66DDB06975E7A299790692228157AEA3CFFAFC129E5BA7EDE085F6BAC782F2D2B431356D57D227CBED68921742B2B04D0050C76015ED3DC7929C30048E705C2674AE86CFA6A924520AD38D051215A14193850A8AB1CBF63FA0C4DCC4C906EE27D33214544EEC1349BA8DE7C2D7819597A441C15723852D9BB23B562381ABE75162F0A15CDEB51B2C7A48982C0D5CF2174062A7A34AF12D984B02B888465FA2BA3C3D1D3DC027837B7A57C1106FAFB617E6EE69CAF906221806BB900E0694F52581180C96609D1247C6BB92916AE9ABAA50B437AD64F10461002AAC8F889D5BBFA5C12A21A8249AEF84DD3C8546460548E8B2F860CEA70D2D19181E95B60B224CCBD410A08671B498BBC4A69FCBF0889A1D082E55E469303087980794D210B452134EB289654D9BF86C5012262AE2B8EEF623D2E9A6CD2D2DE0D8974163A3B3B607A66F63C2A8035B75AF8F5301308BA1C1AC59951746088A1E9A431966E3AF578387587362D7850F60235D9239A7AA8274A6B14B12D7ED9C4544607E9E8484084962FC3D0316A3D938112A06B944128652152284212A8268048DDFD0BA60144B7914549224797BF83B07247BFCFD3492A420057E7F17936B1D408128826240882B523004DFE9C9C99863886A39E5EEBE07C2840995B8DAD1226378508685A26433A3A13E6AC440521C218226CC58C6A57CA928B1AFAADECAF2E2B47AE86F90044D3CF18014CB590605744C257BD7EA6E74F84F3F93817A0E71E706A59E7181C131E3A4E247CD0EB19397A0A869E8B18560EA58A0A543530AA87F04C2469425DFC8E78322C093353371DD6BA6A1812C235DE68718ABE9E36145400C56AE53CBA80900368B02517603534186B948E6C9E4F0FB269758F4093B0B0A6AE73F06564BA0D692A88102A856BADC6A5846D7881881A456454733085A568E651331750797D474D0D1742878596DB90C61DE8C9253AB6545DB84E64F942359A3037F0A33A81691937731A180102B07A023CED02340F702234584BAB56B312C47981A8F37173EC28C05EF420740146C4CB895FA8CFFA35192D791A683837D30DC94F727347983E16617410583D06A6D6E683D0295F11FAF9706A99540A63122B26B23755BCB038A2FF1EF6D5596959D36F17A58AF552386EF49CD3BCFA79382D8C53C1EA7D8EF99CEE4EA6E9D91C1134EAABC4ED326C035FEB5A42B3734B70FCD43424B21D70C9A5973765FCCEA502842E20CCD6799E15F6699264B5898105F5CDAF5BB503DD1258AC07561248878F5A1BA411A034A55B4D200DCB0F745828EDDAC3B295330233DFCE9EA368D2CE46D120544AA9C34DD0F30CECF97E2C64279A8F68EA04BC36926BA594850885CF731363314EBF526B1D1D76AA372CEAC8B57180D9F979383E390B1DDDFD902B942087D1C0F0C8F0F9428028FEA57FEBE53C241D8872003AFC015D1593F65C7FB013421149A45BD597CCFA97D70AA2F4A866E5DA9AC370CEB26C1F22C1857586A69A818C6A0D60597B60B9077B826A5833D0134B1CCBA21D35CB6879ADC0759BEB09FC39379AA08AD2E7420FD5F3693937BB6A1775EBAC0D024E9E9A82A1A161D872E94570CDF66DDC7338303078BE5D80125561611E326E1096834D26B0B9E5DD7A3D548ED05FB0E0B8A3D79EB428AD15BDA4887ADE4C66CEB803094D02947A7AB6B4E03C7C6C846E72E632720F0A21A455A089E63AF0BD2FC31C8111B6E3341785C219C246F8C2561875046E1CBABB3B59E834A1232AE044797CB9460E902B96219D4A414F57070CAF1F40A21987ECF2E9E7E74E01DC48FED414B2B0001947D33369317B11095B08EB353B1BAD5FAFF832F4EDA1C04573ABB96C2A3387CB218465671F9AA13F00FBF3918043D70051093AB47C88A2031B117C4B794C9530E20162D96B4AD0667A7A287C8D028113839E9E3EFE7E9A2318093E68CAF7AFE5D6DBD90EF942114E4D4EC381C3633C33686961FEBC440165553E94A1252E1572D0E5503A3815C27CD8222E74E826ACB0AF294F00CCF8EBBE0C7B0AC2260CD342AEAB5686AC31630F9B67A3C8A0B9E740A881D5DDC1D2EA446E5AA3C0A0869D2ED62120F7184AAB78A453CCAE34338BA36418672E0308AF88BE8F15821B54021E03CAD3D354741F11747064048E1E390AA562A1391BA8C367582307D8383A0C6FED39C8E693A25CFFC8104C8C9F3A3F6160D3DA36401316EB90308B1884166F41BE13358984DDAD4284505FF102685E584F84E7927A3122A50CBA1B878B48222CD29870D15ECE8DADDA111194EB882324924C1CF51431FD3C228D227423816911338AA2C34F0794A5ABC490085741094C3158877CBCA29ECE00321A483575BDA3A707613AC6CBB504BA6B89B982D6ECB5E6815AB219D876D9665ED76868FD3AEED1A005A4CE8B02A4742EDB5E5151D2CA9F56D2471A7E27A445F4A20910E679D5D782344A63450C225A2436847161CFBB3579025D3E068BFDFB3AAF1F58566F2286A895DAD142350D2BA62EA03805277CB88CAC5E932681A4AB8AAA72A8EB831A6D4CBD83945E2180B17CD0135855612BD5D60EC4A54C28E840B44A9922C96BCF046633299E3C323F33C159C6F396094CA5D33A9F2FA2146CD05865116507562C996908A01662CD974DEF115105297421A14298EAA19D3534D9059D78626BB5A72449A729AA8010F245D8A62EC3256DA4EE55B4DC03E873F29A06322A56E91474DC71CCF423CEE84930D3DB8388001A45B09421996D61B248936CA42578B3EE4270016ECE614860259DC94861B140961377095BF57E2BEC0BF751680AFB04877D4D2E234406D11C425AC9A468667FD46F104E3B5C1642842B661A56DD2458A310D19A46CC037453A84D22039B5086F986A8972F248242857C423F173A0720CC1A45D67D229DE1CD20A841A3798DA077D7B0F9BE2900CD0D48265255A18B34A158AC29E386C587D201FBA1267E81AAF5473237D6EF34050986D085EB445BCA1058E122584BC819722AC3295AC6920DB0EA50D10856F38270992561046EA791ADE64DAD5CBE154130EBD7593F1116BE28F1A32302C728877A1E4F6779F9166AFB6EEEE38BBA7A2F5404A069CA1557371286F3CF82C6AA615FD46D22A2E5DEF1BE1648AB8024C06A1EB05E3353B4653312E8FC3F9812AD889A69781A591318441D368115F685D9C6A6BA811DF737CFB00996650E7D90CB1404347CEB32B011BA56044728343068414D21BC8C0D377D06CD933674A87AC12A80DD1A1EFED16F58CFACB6B0B0141C31FF9A99C1B2C2FA05AC720A5D5011CDA9E4F0BC515D5AC8A8CB58580B14B00B300A180A5A5AF31096E50340366504ED5A81B492447612C9D32E21B27A116EF3666702CD114BA5F875B57A77D4C4698E0B5103C2DEE1382F1BEF58D04B24A9A185E284D6EFD8E56123348AF90368B27E7E8BB3D2FAC189C2493662270A2BA5359B465ACBC2085D4A2584709B6A0D06D675B75E104D62F5CD02161035A38659C670DE62D450E2D87C4042B86E11C7FE4E735D5F98E56C84EA05D07C115C5EBF5FF0BC7E9EFCC99358CC988935D702DE570488C713459308315DBD8EE90B0CADD6B656A5F59CEF97D0E426C0CE17585B6F4411A13EA723C2D4B0BDFA082C3B85B59F84F2E8D29E98627C7F60B912B30AA70C398DB416E70DA4B500634818AD65EA79114B194E42F1F41A39426702815D81BA7E6EC8C4EF4E065548D222D2D4E21EAC5CB1433D3FF702A4FAC0DCDC1C54ABD5F78600C0EB04B8617D9FFF0D1AE1B430B50273D3EAC76A9E9BB696D3857DCBA3007B2A3458A965299A7B0FA4D57C2A2230D0D7116515228515614EC24C4F8F2A7F2AD367878541106523997D783EBB3CF0EABC6A07ADD4C1F718D37BB43247BD0A8D4A95F3FC6A39F91254F205282D2DC2DCF414CCCDCE412E97D78B48F9CD616098EC5ABB06D08254345D8C26ECE6F3792895CA50295738DD5CABD6A054CE43BD5A87CEDE01F8D8C7EE7ED74DA1CD9DC1DA070B1C003BEC033BEC0303FDD1627876BB5893F5879544CBFA4573D51096A716C26E6A19B6A38B309D1C095F8468104002A1378BD79C426B8C076A6F00122A731914A4F06A7A53892A046831B499448306B2508085991928A0000BA5CAEAF13ABEB6FDEAED70E2F809B4B8793DEB2708F74A32255F76457A070F23789E5C224E4F0168B5D1B98525985F588442BE0885220ABA5864C499989C84220A3E9BCD70E7AFC7136962BCA23B71904C2A0B29147AA5548002FE8E9635168B9A14C0341B98C53DC0AB867C000C6BD72DDF34E4753D372F92F9E9AC1F56B17E8B33E85E78724059D98076598736BF8A026D400C05E952730A1E2E6D5AD5A8A1302B20687B141264B984C2444196F270726A0AE6110E73F982DA95434FDB36F7EA881EAB52AE13C5F676A8B7ACAFFEF2CB2F854BB75C0377DEF931F8C33FF803AB27A179155F4AA85DB2FD6A5ED49156FD72748751A0A7722FBFCDCF2FC1D33F7F0E4E1E1FE33999AAE1C4E5BE84818101DE88A265A09FCF55A35DC33429A57D8DE87BE3F1B45A9C4A34C07D17CD22B602945D6B3E192B81D75819F6590D1D0DB95AD807D0227C6885061E28445FEDCC4142142440B442825981C2137514240A53A23045A588C22CC0E2D404E7BB7722A47A9E77563F822776EAC30C1EDD1319238113243BA112044D655C2764F55A199A1421EA78A2E6F01AADD3C74C5FF08E5D240C7A4E35FA7583433030B81E868636C0CCF404BCF6CA8B7C1DB61B0802B962B6C6F1931370F4C861EE35A0AD631C61BA8E627CD06E21B49B19FD068F9A4EA4A26E2C2B5A1B8192758806ADB4946C36FBDE38808A02C2D9216C7117BB0588D3562B688DD42748076D1F470B21207EA245E23D09B25EE17B592D429E7CE2F4348CCDCFABCD9DCEF34D65DE020EBF5C5A50DA45810724785204FC1B29845606C7F19B50C09476CFA404A4026FEEDC055DDD3DF0B3F163B065EB55B06EFD7A16785757EF0AB4C8E59694FF6637605623E586D3150A40934F95B0DD70222B5D5F4C2B337D3B2D191B8BC7D4C452A966609252D0127304D0B1641C7AFB06782BBCF7A600A6335833E7177EFC43709F7C0499A6D794D3E1C50A1B0DB8906E6AA2A45E5A0D85EFFA962290D50791F5BBA404B4DE202982886AFB460968F03B3ABBA1BBA7078F5E167C77771F6FEDC65BB584118168EEDF9B9982B1A30761F7AE375020EBC35D554C1848FB202EBFEE5432ADD609D6EB1D2BF472B8A894E47D02BB19EE7D760FEA6FDC828F210595F063F1443833E8BD46016557AF75633C1A2F49E637F702F0F6641798F05728022DB9227C9ED5E31845D068C02E81B6AF7312D08290493B7CD0664CBD285CDABB979A3ABA70D0692CA20CA0B5AFA2BE15F239989A38C57BFBD07E7DC43D78F7CF9656FCFC80DAF4CAC4FF1A5150882BE66C8F0C0FC2E6CD17F30AE16DED6D2C741226ADF241C927AAC8D66A553555CC9E1A469B796A83A58D2A5A28219180F78800561868B77009BD79A05A9BA60E17F28D0685D6E06FC58384DBD6DECE3B83B6B577F0E3767AADAD13D2997468C536EC375BB61A8B422EC77BF5D0D4AC3914F8CCEC346F6CD1DADA014ECCE5F7B76B571009DE89F622D6055434A8150A904E25E09EBBEF50C2ADD757CE0DA4657BF5F67B856209BF7B16728B398E1488FCD14EA3E56201BAFBD6C13D9FF854531888F21242FF18799A4AD44A17106E950E2B148117427C9FD299DC8F178F31E432D4E17D426FFD4A1642D69B6D6983361434099CAC58EDE4998D08E132680F2DDA84B4E11E812A61945B5C80C58505F4E10BBCFB47017DF9225A3AE51FC9BA091548B8C9542B9F4F9A45A8CDFC3F1D25A9AD11EDE5E95536D05B0501D4654469628A2469EFC64514324D0B9B9B9FE37D0872B94528A2D05BF03A1C37A936DA243E869FA105278B78BD34D3B8A525DA00DEF71A661755A915412E57846617808395C6415503249AFA00C8EF3B187298415C9E1E75C4F24249C47EE96F8AC4A8ED58D57D8C67BDB040E331255CD4DEA4DEAA55ED99E7447ED1319DBA6E53C7AEA3977631EF6B6A5DB306B8942FE18016192E69FF3FB51277951F174BB4D72EC6DD6E1C859BE1739ADF914CB5853B8AA9CDB1235267829F30D4734493D0CD381834909EBF8203D078E60A659846D2BC94CBC3E4C4386F7049E7EFE9EB43455CE27374777641272259A552E50C251984AFD7365008E1AF9225AC917CE356C3342942602B81AD00454A6C6778F7C928FCE16558C8DF246408B1D1E05BA4C559261C638167F85B28D065E70A174CB4E1C76E4AB19632AF544ABCBC3AC5C8F57A2DA8576B5EBD51AD639452450BAA964B2517A135EE2633ED28AAB8E326342A342B6B3CDD1AB6B6DBFD7C8EC66FBD198A5A6E56D8C21591E003714634F065B022505F44C57CF8A11FAA750C755B9D5AE54BED676C5AF5A8E59C908ADC022907CF41E0245C03AAD51ABE2FC5E867DF4AC53CCD58A5DD2C3CEB005B096C05786EDB15DB6BC74E3C9E74F164BCCBB754A1D57292D5DCA7212D99484B36CDC97DA9CF45FBF5D565B4D484F9E1BAED46D78644B41E85AE0709D5F68D776A917A122211AEE1E151B8E4B22DB071F3660A97BEF3B9BB6FFE2AB956FDC3B3FA68779C587FDFBAE1ED1DDDFD97B4B6765E124B24BA1C6DBE41283CA7D9AA1D6B4A78205611FCDAD060B565DC7308DD46E9A330542FC449EB08BB71E6103EAF1BDC5011012D8C89A84979EC24A478A7B281C1215E34CABEE5F3397A81528334ABB40AD61A1D4632A102FCB3DFFA8D996F7CF35B1BEFBCE3967B77BEF1DA0D3210C2AA15AD524292BA699B2672E9A88081C6B1FEA29D8EF4C9BDCCA3E5CF21E4CF609835E305FE02C2F0FCD1C30716C7C7C7C34AC6777EF0B389F5EB07D751CE7B768E88D73CFA413A16D8C755AA555E63A7B3AB137ABABBF0E8E690CD75306C4A4A3A4FC1FAC16546367C2D08BC85A9F163C7F1E8C4E73DED9D3D1B7BFA872EC6FB4DA94CEBB06AFED104AE4929C4394303B94A2288C23BB50BA8B5A806EF2DEC42DC8DB1A05919120E5A3F721147F1348A54D2A934E7032819B55A18582E15B35A014A1049C8E30E0B413625651329412598C4BBFF571FE7FDA68909FE6E113369C6FFF2D0538B78BF0E2C843179774A95920F2458A450CFD72B6B9ABEFBA58585DE54AA659BEFD7F218AA1A8D6FE80168588AB1945B9C1BC763373EEE4A26D3FDBD831B367475F76F6869EFD884C39E59331A9808E20C68B01A7DA655C0E9F708B399262D938F3CA8AFAF17A39556BCEF536B17076A73C82AEDAEAE2304E24EC239FD52305EA341FE9F34A3AECD7639B983D8FB19A289885DF22A2E7850CC9241FFD6EDC4B3DB11DE2E9E9E9AEC1E1C5C1F5591EDAE625404DA4225F033D6D2A84158C62D164B9FEEEA1BFC3425845039503710118453C2532CE17B1664E0CD2239D85B2E2DEDC23754B4422CD56A958953C7DE3E864707BA96F6EEFEF503BDFD4323ED1D5DA3480AFB9AD020DCA3C85A172B5CBB3838231AAC363BB8A7A713B66CB99C7D7C3A9D82145A33CD43A4052789A06220C8CBC252EE255885E8AD165294CB85B1F25C79D7817D3B0F58BEDFB73AEEE4FBA200220AA81DE397D3E9D68BDC78E22A379EBCDE8DC5AE45B8DB803FACD5CC2BF0F41AF84244051A93AE25F24803149ED6DE4F0FFF1BDDB889A1516DAD5277D152B2387878D4FB0CB14B24529F4A2607652C9E58C4D7F6560A734FD7AAE531FC8259BC48429FF4E2ECE4D4E2DCD4187ECB1B99D68EB6FE75C343C81D8691730CC7A488D98BA269CCB668B35AC0693534588D0374B563187BD9E6A6358228CDEE9F651D04D97F3DB7B43096CF2F1D9C9B9EDCBD77E7EB6F2D2CCCCE6BF757D2F765ADEC8DA86F7625093CE7D0AE2DBC856039D5DAF58F7110EE42EB6C8DE2544FB7A361F8974AF2AAD944EC08DA4DE54E4DC976954F44A8242BA1D0D171CCB2ED514440BEB067FD26C8CFCF42A356845ABCCE9FA3CF53C86716ACA64F795EBD0B3F7A4BAAA5F396EE81D11C3EFFB34A6E7A2F9E98B6D2F5F1A8E291C6CF1466A74F14F13881DF9FEAEA59D7D3D7BF7E7D777FFF50369B4D534289EAF2F333F3D1547ADD8E2C65E426026EB895E2BD8E6DA35E2BCECDCE1D9F9999388A023F801CEA008E57DE1276451F65EDEE6A96F01B76DFED3957002D78827612726F7BF7BAFFC98DC57F0D05DD4BCBCE2D0730823D121A4D4A49675A21DDDEC749170A3BE96F3C274F0B9042235A529D2C39A6A7627338473D096839870F1F85DDFBF6717304E512844C6AFE6056210D1842CDEE1FA62CCD29DA46B57DDDC8A5FF3C73F1E6BF1E5CD73DD6D6D1D19DCA667B33994C772A95E948A7526D8954AA35914AB6A493E9743C118FA56889F7440CE616733C9E73A800FBF6EC87F9D97915DF9895AF783693DA192D58A518F44E69ED42213F3F353E71F2D4A9E363470E1E383A3E7E7C4213DDA2167A65D951B504DF58CD059C2E0F70AE7A0C075A3A7A3F9E4AB77C03B535D30465225A5984A09C854F03994EAB322B0ED8C33F7C142EDABC11D6AD5B87DAEE21E92923F3AF63AC5BE62E1DDAD1AC56A9C164B108274E9EE4CE984AADCE7043EBE824E308A324683D959B5085C8540A2387B6B636686FA7F430C26E5B3BA78B396D8C7F476B16188EFDC3142A1EE52788817776B4736128195759C85DA860375D7B2D3F5ECAE7B90183CAC4B318CA6D1C1D81E191F570ECE8F1EADB7BDE76171773F1B07CAE97B6033BBFB15AF74FE0FB33D35333C78F1F9B387AE8D0F15DBBDF388EC476490BB4A88FF2324BB7056F5BFA6A7EFF8C99C0B5F8F415DD32F77DE10B0EC6A11D6E3CF389EE751BFF6461E65442D80DA20675F4F668BCAE5D32A90E4282040E7442622C9B8299B9390E0155FF9E1F2D8FAE971D25F84FA513D0966A816CBA9FDD47269DE273C4F040A201996C8684CA8AC5757B1D2665F0BD2DA80CB4F51C23090AFAC8D831D881824DE3E78AC8B4F328D8975E7D0D2AF91CBB9D69BC1E62E3C3EBD7C3D11327E0E0D16370C355DB6178683D1FFB0E1E82ABB76DE5EF3D7CFC44EAAD4D1BE0C0FEB717DE7CFDADA55AC5EB4217D7C123E0F91175C16BAA56ABB563C78E4C1F3A706062CF9E9DE36FBEFEC6A91AED26A504680B7DB9A5979709BDBE4CE82B08DFE96A01E24C1A29F4E600F77FED6B2CC3BD7BF7860A30BB75ABB81DEF272626C4E2E2A23825847BE8E9A787B3DD235FEFEA1DFED4E489FD808C5B13366BED3FA1325CC6FA4901928603E031327A31B4A1E5A5D34915E76692DCF2447F4BA512FA3EC9240BCC020F78CED6962C6492296BF76F170E1F3906375F772D2A420B77E850A7D0E34F3D85821C54ADDB94E5A4D0B25E8775BDBDD08A0A43A870E0C85114E816E8C7D73859830AB17BEF3EB8E143D7B22B228EF2222A481B7EE7B6CB2F678579E5CDB7B86EDF4AFBFBA2229411954E4D4EC191C307279E7DE2C9A3B55A90DC7CD1E6D61D377C28B167CFEEC9D75F7D7562D7CE37A7832030106D7C7549437C791581DB105FD7C7E958FE19057F4605D04902F8025A756767A7934C269DA958CCE92C9544A5AD4DC417169C1A4266B65613451CED18622DC6E9EEBEB7DEEA1F1F9FFECCE0862B7F07B5BEB3525E846A29C7FBDD12CC76747540473B1E9D9DBCE61D9E5B57E95AA1ADB50DAD3A15F584E37D0A7D392D90405618D3E967AA9851F3E5964B2F668B4DA10215D11D3CF4E88FE0B28B2F6258AE377C54AC04CCA27FA669D564B9543C22E11C3D790246D0BDD06BE676ECC449989D9D81EB1105CC6DEFDB0738E4DC8E96BD88109F43C87FEA996761747888BB714A952A23FCE0403F74A23BA9220FA1EBB8F19AABA376AFC52578F1ADB710D116E4E1036F9FF8F10F1EDE7D6AECD81CFE86AA8F610A8E711515A08647510B7D359F5E79076B0FCED6DACF5A01BEF6B5AF39CF20D88EC258AC31DF9A086A350456CA3BA016607C46C246D88E8F6CDED0D3D5D5D78FD0D7974CA4FA119907319C19F1A53FEC88D83032E46C4B26EBD23AB6A6CA48969988A956272453502C1459D0647D44F208464958C572191E79ECC770D3F5D7315C524690FC2EAD927172720206FBFA19CAA907AFAD152D1C2DFAD09123F0997BEE8E326128A4EF3EFC307CFE539F6C4A93923553F1E4AA2BAE50440B05776A62029E7DE125F6E5E46AE6969660B07F1D2242163A68257054C893F89E8F7EF8661D7E05F0F26BAFC386A121181A54792B721F2FBCF20BB872EB16FCEE0A378F965161A797721C06E6F2C5E0D0DBFB0F3DFABDEF3E3F373D35D9A8D59688C1378246194559F6556EE26CACDD5E1107DE8DE04FAB0064FDF7DD779F034343896B86360D5F73EDF62F20C31A42841F4063EF4363EF4621766378D6815ED985703F3CC1AC381E4B7086CAD5748176C198A28140E1EDB8E17A55DCD005978585451474091E7AE44708B73DDCD244A94F95E2C4F00ADFD387A4ADA7A71BDA91C0510A983EF7B3175E84EBB66F677267DFF61D3800274F9E82BBEFFC68F81A21C637FFFC2FE1866BAFE67C7A1E854DCD1404D3192A2BA36250E3C538C2F55DB7DEC28842B719BCE6575F7F1DEEC173995554A9F7FEB9975F81EBAEBE9ADDCCDCC202BCB9672F571689D42EA0A007D70D425707924D44B429E40EA3E86E36EA859DC64E9D829776EE4145C855F7EFDCF9C4633F78E88952A1308FD798C76B2AF8D52A85A0E891EA154BF0DE32DF2EDFADB59F950290F5A3AF470ADC991EE9EFBFF78E3B3EFA47DD9D5DEB49C81D2884B82E9592AF8D23994BF222C57178FEE55FC045A31B6083DEBD621E076776760EA6676678DFFBBD070E726BF6C0BA01B6720AFDDAD17233992CC2ED41F8F89D1F59D95B8770FEECB3CFC3A7EEFDF8B2FC7900FFDF830FC2AF7EE6D33CF04B08B544D4C802F71F3EC2716817BA981AC232A1C04DD77F085AD2198C00DA982FBCBE6B3722481F0CAD8F165CA252EC4BAFBE0A1FFBC8EDA1C009F6BFF3BD87D0DD5CC2F0BE88D7D3D9D5CD313E9566F3A532C4F17CB7DC783D738312A2D6B32FBE0C1FC6E7AD1A710E1D3B0693535370F3F5D7F352F2D3A8582FBCF126472E28EFF1DD6FBCF5672F3EF7F3E76BE5F2122A40BE82B746A351C92793751C405F0BBF79DEEC396CCA585501E6E7E7E3B92068E9686BFF320AF4FFBAF9A69B1315DA0B07A1F9928B36336492AF2DE20010D4D18E9614623DF6932778B0A84043C26D359D39381833A80C63C8A009D297DFA8FEFDD3677E0EF77DEEB32BFEB667DF7E984125DA72F965706A7C02A6F071A95C41B2B881B7B7A32E9F2E146C1E5F4BA110B66DB97CC5E749AFB65EDEFCFAFE830799BC5D81AF4FCDCEC2CCF40CE4F01CFBDE7E1B8691232C20615C8F0AB279C308461A2916E86164FF830303ECF74377825C617C7C1CEEBEE3236119FB7B3F7A0CFA7B7A58298868921B3874F8287CF4961D30D0D3CB7C88BEFB0DBCB6436327A8A3E7E707F6EEFEF7C78F1C39D490325FF2BC4ABC584420A87BAF6FDA14C0830FAE1AC29D570598ABD55A7BBABA7F13A1F8B76EB9F9E6C15EFC4113089334D8BD2860DB5F1BD81C43F83D72E8107C140763B5DBCF9E7B1E2E45A24683D8541347413E87BE731E85DBD5D5C5309F2F15D99D904069E70F62F21D38707584F1E75E7C113EF7C97B579CFF176859DD68F99B376E5CE61A0E223F388C42E965D8A6C1CF20445334D2CAE162062667E6E0D61BAE6365E59DCA113D9E78FA19B875C78DDC75646E875009E87AAF47B24788430AF936461B0D8C78D6F5F7735453AD37F0BC69D876D96561DE83D0ECB9975E865B6EBA118D233ADF182ACF932FBC4C91451515E12F771DDCFDA7B2509DAFF87E395E2AD590287B1865050F3EF040A0F308F2BC2A007180AF7CE52BB13A62737B2A759F7063FFF3E0E0BA4B6EBDF99604CDBFDBB773277CF9D7FFC1694F486CFCDAED57C2C8F0B055972EC0D4F43432E70A3CFCC8A3B015854AAE83C2A993A854F7A0C2747575B232A5F59E7B2480EFFFE087F06BBFF2F915AE814AC3CF3CF71CFCEA673F1375B3A03088533C814842A49206AB8C164D8D961B464654148082A61AC37E8CDBEFB9E3F6E6091A8842BF784DF9FC70AD231C9B1FFFF469181E1C64574373F072887E1806B02174B6132FC9C2E1B131B8F68A6DCC51CC6D1C619FAE733B12427B1C1E7CF43158D7D78B616215BA3B485947913374C0091C8737F6EC43742D8CE71616FE70ECD0811F211A148378BC1A2F14EAA3A3A34CFEEEBFFF7E795E5D4048027B7BD36D19D1DD126FFF8FE038DB6EF8D0F5A31B376E80A79E7812FEFBDFF832FAD8CEA843B6A0043C3935CD2CFD17489E36E1A06770401A68CD34E5E9B61D37B105934BB005FACAEB6F6054E0C2D548EA96DFE8BC4F3EFD33F83CFA7A1E407C4EAE6401ADF8145A1E4DD3EAC6EB5842A10C6158B709E19ADC1475C6649063BC816C7F0439C7060CDD9A5DCE123CF3FC0BF019E416F66C9A497403DF7BE411B86AEB56766BB3F83E42A44DF8F91E0A59F1FA67E6E761DFFEB7E1B69B7734FD8EB7900C12471AD51C8850E2D0D8714E1AF523621221BCEDC61B98EC126212CABDFAD64EB80815A05B8F2515B176A24B790B3951B95C7E697A7AFAF76767C7F6D4CA4131D6D65649E7F3F5C1C141FF5C2AC169C3407603895A6B47ACED36BF1EFC6E2299BEFE4B5FFC824BED573F79FCC7E8932F876E1C9C34A558D1DF7750C76DEB4A01D3ED71B422CA94F5F7F7AF9AEFFECE77BF8FE4EB3664FB3DCCB45999D02248B0742CA0D0E9BCC88E50385B78C0F83B71C0298B38818AF7ECF3CFAF400BFA694FFFFC598E22289E8FC2C30A277B5E4048BE1C390B85A3F3F38B4C1CAFDCB225248B1C71A0A25C7EC9C54D6EAB5AAB61C8F822F3198A56A65071A691471C3C761CC7200B0B4828873134BC0E9190DC242354B1047B905F5C77F55510EDCD00185A4E5254C0EE22440F3CDF23E87EA40C1AA54AE9AF8F1C3EFC8D7AB1389B0E82E2C1C1C1FA33F7DFEF9F57052014402D73DF387122DD924E772584FB2F9289E4C73FF9F1BB37D1E40862DD43FDBDE8CF2F3ECB993B01FCF95FFD15FCC6977E9D05460348CC78727212076E0E3AD042DE40FF4D892162CA57A090FB50195AB472B5E8294F7BD097D3ACDC6BAD644B389078AEA7112DBEF4C52F825AF656412E59EC4F319258D78BC414A196A09CDE3B8A2E8A60DB5698E731C4BB64F366E8432BB56FAFEDDAC56B0090B25054430AB784EE65726A02096915EE403420811BDF4E63FAF2EB6F723878E945173529FB1BBBF7F07BE9F7858928E44E2FBCFA1ABA84768E124A3806AE9EFBA766BA0753FB5F7FF5C3B2569B433E50D9BA75ABF7D5AF7E35386F0A6050E01544810E2483B1546AC095F292BBEFBCF3CF46378C76D3ECD7271F7F1CFED5BFFCE7A73D31C5DFE3A8DDA790E4506EBF157DFC1BAFBECE56DE40DFBF1D079F60359349336C938593DFDE83F05AAD94E1BA6BAE59F5BC6FE20052DC6D471314AE9160C61035A64E8DC3D0D07AF6C78BA80024DEBB6EBF554F688DDAB01EF9C99348E4AE5A414877233327051A4517462E6D021595B27EB586873EBF95D3C3C4F00925E88CC7F1FB5E79ED35F8F4C7EF09C9B0B99DC0A8E52086A51FF9F08ED0EA292A78E4C99F72A84AD943CA16528DD0E5E5E6A3F50C046F01EB70310AEF835FBCF2FCF6E9B9FC040C0F1711CBCEBF02100ADC8E28D03B33934AC7E35D4EBDBEE1A24B367FE1A6EB77FC138EDDF7EC815E84CC6DE82F4F8E9F82291C2C124405AD9BFAD47A1176FBFBFAD16FB6401A0786C8523BFA5062DEBBD037137C8F2CF3CDE646EC9BFCF9459B3735E705F0FCA44C14316410B6BB3026A77AFC387EF7A568B95722B95C3E43F6D9175F6292B53C3C0C34C11B45EE308ADF45212611B7325E3F1150226864A514F1906B70CEB00B57AE50841F3EF113B863C7CDB07E5DB34251D4F0D3E75E808B4647601ADD0C296506398A59CE06F43D25CE788228AF4AAEEA1B8D863753AFD5766304F1C8DE9D3B7F9008026A5829130F38EF0A60A3406F10B4E0CF1FF083E0E2BB3FF6B16F5EB471D33ABAEA63C87E69A0D60F0E00955189F4110C9A6CDF99EADCDFFEDBFFCA717FDADE69DB227F7FFA977F059B31D6A71A00855679847E62F09474210E90B09A20A951F481EF3F8CE7FB4CE873EDDB8BBF781549610AAEBAF20A269227119508C6EB88049428222422D8EF4594A273DB3EFAAC1B359034FECDF71E62855261E50CCCA2C021AE2A8EF61277BCE1252D46CD093530DF276BD5EA54A55C398C02DF3B3333F3C6426EFE04BE65D1ABCB458C9A96E2B55AE97DE100ABA1400B4067E038231B47473EB7E3A61DBFDB9A69E57CFAC2CC34864E77AEF98B291EFFF36FFD357CFCEEBB98F05188B8B494E3D940D75EB59DAD9688A511285DE5533F7B06AE409236D0DFB7E27C441EBFFBC34754765043F1522EC7C29E5FCC21231F63245A8FFEB7B7BB07CFDFCE027F27653DD38DF80A9D9F881C3A675E2093AA8E3C41C5AC72A6572DA19D517845316DE988403E0AFC1486AF87F2F9DCDEC9C9E95DE54A710EA453C28F9571ACCB3121CA180A56DC20A8C87CBE8A84F3FD8902564381C1582C5BF5CA0331E95C74C7ED77FC3F176FBA78847EE48F1E7D047EEF777EA7C92297DF48B0C74F9E444E30C1451E1210FBE96C2BCF8D23AB239F5D402BFFE1638FC37FF72B9F5B75670CBAD21F3DFE13D871FDF59C3768FA0E14F6C1A363F0FC4B2F71BB38ADEB43F13FC17827BA9E1E8C5852EF62FA7453F888A1DDF11327D9BA49E0A55A9D512FC693379A21DD11E65053CCA9EA87DCE5380AFC2092E83D93D3937B6BB5C692147E1995A2EC415001CFA9C6A4AC39B1589D0A02AD3401BFADCD431EE6EDEEEEF66F7F3FF200A74381E1623119D46A9DC2F747464786EEBD65C72DFF8A4AB8F30BF370EAD831F847FFF0CB1CFBD20011F1A3E95634F59962E74E1C7CF2A3E42E964F5E587EA384CC934FFD14BE78DFAF9E166AFFF35FFD35C6CF1BB99132572C808302E8EFEB6372D6829C60215F8499C909F8D86932926773A3B6B453182D9C4092373DBFC0118544DF4CFCC7B116D434AB997157B09E4941F79EE7172B95CAB162B1F8F6C2FCFC9E5353136F4B298A24EC40786547C62A880234F1BEE6C41B75BF0C0D12F8622CE64332E9173D2F18AED502CA0222EB97E75AF067AD0061810820D676F2644B3D99EC4780BBE8D6DB6FFB0F975D7CC945847507F61F4038ACC255DBB6718288E075B57CC0D9DE8E6358B47BEF1E762D54541A3B7E02A6666778ED7CDA9F8F2CBB0B158BC243FAAED5FCFEF3E8F763F8F5375E77DD597D277103525ECEE0A12297ABCABAB9A3289CFD14DD0BBDB78EA3674E371AF58552B97CB45828ED9F9E9BDB3D3B3F734422C550021765D488AA749CAAE37975B2707CAD51419697420BAF529CDCDEEE774E4C482370BA2612FAB92EFEBC2B05E0ECE003F739A9475229D193ED80BA1C593F38FCB15B3F7CEBFD54A6A5313872F0002762DEED8D922E14368E1D1F830A865C548CA9A0C047378EC20012B42C0AB9B35D355EBC8030FFD97B3F7166A249B587E75F801E449D2BAD2490F92E0AEF48D128EE5E2AE4799A154DB15233A49BE11C02BD958534DB552161ABD5A68BE5D2E142BEB07F7A6A7AD7527E715C68FF4D4207C7AB0690600B0F2A9546A65536AA5EC673924BBE3BE7FAA5D152B015B6067BF7EE95EFA7C0DF9502D865E2784F4F36E1FAFD52B89BD10DFCD1964B2EDF42CEEE451CEC5FFBFC67198ADF3931E423B49E62CBA6DE3FE2054EDCC5D87B94F3E439E4021984F56D975FB6EAE7C7D052179716E1EA2BAF7CC768E3FB8F3E86216917934A8AEBE7918F505C9FA22210E5EE750752B4E6A0DA3B9056E18268E20912B6DA7889FC772EB76F7A727257A95A9A3516EE134943EB4625AA52BFB9A43D32D1C253ADAD5E6C69C947771EE067C9B24381631827AD9AC3DFD912A267AD00A646D0D9D999F412890E64A7C3EB06FA3E72FB2DB7FD01B579F968B52FBFFC12FCD3FFF17F684E08A1C512B41E3F81C29E9FC3B0ABC67B0C5F76D1259C2BA08E5BCA0F109284BB8DE067FEF6BBDF832F7DF1D74EEB46A8F3865AC0281DBD22C2409F4D212AE50C9C549AEBF4941FA0E554EC648B5A19D46CD1AED7F7A505E77CBF86FEFB04097C610919FAF4F8EE7AD5B3085BAC42906E081B4AB2215DB7E1E4F37E0C7D78127D38224480219BECBDC004FEAE1560390A20D9E9138EB3F9C33B6EFA3FB75EB6E52A9A38B917FDB6838348D9BEF9C505A8224BA6E2D0A6D1515EF28CF60BA64920AFBEF106B76EC562A76F4AA614EE6BF8BE4FDC75D769ADFB6FFEEB0348F4EEE0FE044294B9C525B4EE32FAED34B77F53C368389BD92CC040CBB8FA46E06A7129CFF7F06348D84AC5030B0B0B7B26A626F72348156CFF4DD67D3AC23680846DB9C0EF4781C30528F0F7A400360AE4110512420C617875CB476FBFFDDF77B677F2A41BD3194BEDD714775348965C16221E3C3606AFBDFA0BF8075FF8C219BFEFB59DBB30846BE3926914522EC1D1B1E330B7B0083EFAEB69F4E5D4644A459926BF6D168E0EF424525A49CC572DE618AB2F964B95A38542E1EDD9B9B95D537353476201FA6FB26E8CBB9D1842BAF7EE08DB852EF0F7A400E633BFF99BBFC9FD0241A3D1E748B9E9861B6FBC7FDB96AD375002841221B256851D37DE7846C2F7F8D3CF708166B532B01DF2FDA7BFF81622C806CEF6615CC5AC9CDAB2285D6A967EB72DDCE785AD3C5E3E8556E0A40E4FB4CE993265D8F2F9FD33B3D3BB161773A7F0873361132C700CC968410DDFAF0B74D899D656246C9E45D84691B0C1DF3961BB2014C0A0401551A01DA05DC66243DD3D9D37DE75DB1DFF777767B7434D238FFEF087F0BFFD9B7F7DC6F35087CCB7FFF601F8F55FFD3C570123BE70024E8C8F23C9CBF17EBCB44CDA72AB0E85AEE09BA64123EBF27899387CCDAF56ABE32564E8F95C7EEFC4E4D4CE72A532CBFEDB47C2E6A275FB4E354E31381EBF4C84ED4241801005F03E5314A2CF8D8B4DD75F7BC3BFDEBEF58A5BA867FEC8E143D08FE4EC23B7DD7A4686BEFBC02178F2A9A760C3D07AA8D6EBECB3BB7A7A39FEB6ADDA66E7A424BE576774E069E0815FAF54AAC751688716171691B04DEEAED51A8B8AB0C591B0412541219940C2E6FD7213B60B4601ECD6F16CADD6EE3BFE507BB6E3BABBEEBAF34F7ABB7A6324AE871F7A18EEFFBDFF955BC40DB37FFBE0413870E830CC2E2C70F87525C1BFB521C47286EE2149F3786DBC3A5B395BBBEF9789B021F13BB084846D7C7A629F216C3EC2B9C0906C39614B66325EA95EF77ED909DB8584003CB9F62B1A05CAB1182D92B7F1FAABAFFE17575DB9FD2E42015A3EFDE5175FE42650EAA3A395BFD60F0FF39A7DCB2B63E6BE817EBB5EA379F26A150C2A36A1E22CA1C491B015DF9E5F98DD3D3D3D7F0885BC92B0C591B035FE7E13B60B4B012C14680F8236244DEBDBB2D9ABEEFAE89DFFA9AFB72F7E5ABF6DDD9365D3F42BB502668D67DB34EAF5198CDB0F1772F9B7A7E7A6772E2CE44E129C0B64E944D840275CFE5B246C1794021825A00EE25232994E7A5E4FC395A3D76EBFF6B7AFBA62FBA7A8CFAE29E102012FA4402B6E2BA1D768F386A056A98E1751E0F9426EDFE4C4D4CE62A93483D4AE1C976EC9266CB5468343B2FF9609DBF9B8BDE7F501A83E3D36365697ADAD0557CAD903070E7C7B6060E0A36D2DAD19AE8AF91E278468F9538CC51B18CE9D28178B0797F2F9BDA7C64FEEF66ADE6203E1DCC590CC214847EB96E0D78488D75C701B35E979F15ACDCB12618BC71561CB6464EFB1632B04FEC0030F481B653EB89D67043028400DA4333333A96210B407AEDBBFF5F2CB3ED7DBDDF32B34C117C9DB12866447E71691A14F4DEEF71A419EA09C7CF8E9085B0609DBEC0784ED974301EC1471626020E5361AADC2753B8413B4FA00495A17C7E53D256335AA90F935598BA53024D3842D8584CDA4543F206CBFA40AA05140EC85BD3198E94DC43C2F954E241218C2C530229048EE686D8F4622DDF0544934E9BB2D2D7E09C9DADF450DFC83DB3956005B09F0214D2A71694189D4DC1CF775557B7A82ECE2A25C4ED83E10F8DF2305304AA0852AECE5648CB03F60E817DEEDFF07C0F7B90C94A643CC0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (178,1,'Workstation_(24)',decode('89504E470D0A1A0A0000000D4948445200000018000000160806000000DA7D5C880000000473424954080808087C086488000000097048597300000298000002980136D347DF0000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000005914944415448899D955F885D571587BFBDCF3E7FEEBDE7DE999B493293C94453356DD3404025487CB0FA20A58D15B1A022227D28A650F0B58F99E093827DB1088A250882494054548AB6129A46FC17D2D6503B6D9A84269D4C66E6CEFD7BCEB9E7EC7DF6DE3E240D24D8075DB01EF6CBF7B159EBC712DE7BFED73A7EFCB83C74E8F02127C411048F9DFFC7F9EE85D72ECC792FFEA56B7BF2C0FD074F3EF7DCB13E8078E2EBDFEAC78D66546459565555569B7A2C941C084F4FE0D72D7ED594FAFD5845EB8F3CF6C89EC5A5DD9F0F55F868A8D40E216E094F9F3C5D5BEFD46492B1B1B9C9E6FA1A5FF9C6934FFFF07BCFFE44A5B37333371EFCB2DCDE8E5A0B899C6F25925628698660AA8A6A5A501625653965252F78E38D2BD869869F16CCB7245F78F8611CCEB73A6DCA5233B76327C3D188CBFFBE780040D55ABBD23A79B3124CA3986DAA816C3768751A2C7612CAD2904D0D9BA329936141362928F292229BA286E7D1A6465786A58F6EA79976B876FD1A8D344546510DA0F2C9D0CA5AABD2C404DA116A87AA2C616551A5A595C498DAA31A1133D611494F124012405034A82ACD466FC8C6D6DF198D8614E5145B5BBC170E406559513B6BE2D23A64ED092A878A1DAA721859D31101ADB4412025B114C492DB2D88C64DCACA609DA19976489D679215E4938C20101E4019AD8D7735DA81B48EC03AC6DAA20B431389558A380EE9A4094900B1F47724BEDFA2AC347118D87AB2116E647DF2F104AD35424A0BA084949577961A81760265C169CF18CB36E5898CA3A92DED34A49D2624777E00D3B445A533BEF4F8E3BD332FBFB4B41836084D8FB9ED3B39FCB92FAE002819C84A780B41402DA07430AA2C4DA9088D23D18E5CD7E43A60B11DE12444E296C0369B14A34D3EF3E98345B73BC73B97DE25CB0BA246FB4E66A44054DE59BC94200346C6A39DA0F282BCF654C6516A47616A7263E9A409B3ED84562B2149538AA2C0BB5B617D6FF526DDEEB6BB42298594A570355E4A6A044648B4906804B587D27ACADA31358E425BA6C6D14E1B24CD98A899321A0CEFC01EF8F87DACAEAEDE255052CA0267F022A0F4121148A40CA89134D174F49438F3080D3A138C42CF1487AE2A8657DF66381C82871B6B37595DBBC1649CD1DB1AB36BCF5E6E0F5914FEF205167AD7B1658ED005141926EBF3FEF5F7B83818A29462F7D21E762F7D84F985055A694A77761BDA18840CA89D0BDEB97C85B495220245AC04CE3901A00219BCB5B572F1B3E07D12C73E4E621747B16FB752963E75484551ECD3B4550E06BDF1683469BF7BE9723B69B6C2388A886E77968D67948A701E1AAD066BEBEBF47B1B33428840FDE137A79E019E011042C8EEE2DEAF85323ABE6BF7D2AE6F3FF95472F6EC5F7860EF2792B3AFBCD232D666F30B3B4FECEACCEEBB6FDFBE87367B83F6D6C6A069EB3A3CB0FF7E36D73746D7AF5CBA122AF5D757FFFCC757BDF75678EF3977EE5C97B0F9B1F178F8C97F9E7FEDFBB3DD4E37EDA46266A6432003C230240A155204044220A5405B8B9482ADE1D0BCFCE24B7FFBFDAF7FF5E2DADAEA19E04D2007BCF7DE0B40FCE8859FFDEEE0FE03470229098200630CE0F180313541A09052A08200632DFED67620A4C47B0F1EB646C31B2B2B570F3FFBDDEF5CBB6B4DBDF7FEAD95B79FDA1A0C5D148588DBE8244E48E284384E0854401445002449C24C3B65FBDC1C42084C5D33984CC8A7E57CD20E4FDE7B9C84F71E21843871FAF42F16B6CD7D73716181462321CF0B2A63305AD39D9D659217CCEF98637DB3C7D670C8603CAE2759767D5A167F2AF3E2A766347A7D7979D9FB7B4EA4F8E07DF4E8D1F0D1AF3E512CEDDCA9B4D63CB4FF415EBFF826B5B39465495695659EE75726E3E16FB352BF60FBFDABCBC78E7984E05EE87F150821C4895F9EFA719A369F0E0285753E9B14E395417F78AAA7F5CFE37E7F6B7979D9737B7A1F06FC50C107921F3CFFFC11319D9EC9F37CFAFF00EFADFF000F1AFE7A87EDDB0D0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (179,1,'Workstation_(48)',decode('89504E470D0A1A0A0000000D49484452000000300000002C080600000023163B670000000473424954080808087C0864880000000970485973000005310000053101B7ED28520000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000011594944415468DEC55969901CE7597EFB9AFBDA999D3DA495A595B45276254B96B5BECA26C80E952ADB012A36455C455CA180C82647110865A8E2879CFCA1A0A09C72F237A18082805514E032F1116CC9D846B28E9556D62D59D26ACF99D9DD999D99EE9EBE79DEAF7B755AB23149E8AAAFBE9EABFB3D9EE779DFB7470A8280FEBF8E575EF9E990A4488F0781FF78AE50F08F7F70BCFBD8B1A3970BF9AE9F14FBBB5F7DEE9BDF9CFAB86B48BF48070E1F3EACCDD6163F2BF9305A0ABE80B786963F531565DF5FFED55F3F90C915C8755D32DA2D0A28B025A2F3AAAAEE59BDF633FF7647EFD07FEFDAB5D3B8F69AEAD3BFF3FBBB1B8DFA3DB24C4DF2E53A5130EFFB6ED50D68DAB6AD29CF71CED46B33C7C6C7C7F54F63F48F5F7EB9570BE4C764521E5754F9F38A2C6761FC4DDF9B999E49AD5CD94FBEE7E17C9E9A4B0DEA58568C4819892713238B8BFBBE7E26351EC40BC9BFFFD33F78FA2B571CE8989D27703939552893DD6ED2D2D2127988005FC8E585732D91A57B1FF8ACAFAA9AA76A5A4751E48E2CCBBA222B4B24C97559966A7EE0577DCF9F716C7B6A60709576CF5DF70E95CAE5CF298AB4DD950349917D224425500282132449D2750E0009522E97A752A99BFAFA57916E9864DB0EF63655E666A95699A3E9A909E9F48923DB899EBE9A0144C5CDE60662D3438F523EA5518FE6531C375191408D3CEC1E70E692E439B2E45932D91DCDED98594B6F971DB34DAEDE227D719E6A7373649826B159674E9CA17327CF129CA518AF98465A3C4E09AC582C4EC9648256F4F7D3FDF7DF777D1A0289360C6DA056BB4D7373159A5F5844105D2A967A2995CE938748CFD766B3D741085174257263AEE753CBF6C982C94959A34442A3640CE7718D5209150B3BBFC6791A0631753C64C8713D640CCBB6C9B12CB21035CBB6C8E9D864E3B5A1B7C9310DEAF06E34E1A4416DEC87DF788BD60FADA352B124B2C1A09A9A99A5D75E7F8D745D2713C1E06B4924031F12F9BE84F70DBA91B32A3E747CCBC016C0DB00910E4816CB17BBE2E31CA9971D2CC040C2AE283EA5E22A71B8030E390CF0181232DE53003B29490DCFA29603A7E269BC76C951B1920E390E7618B60E905D5CAC531EA49515993144996C9AEE1EDD2E0C6DC309DD30A852A9D27CB52A9CD634E56607705BABDD3248F55D3225455C4818EFC258E59A5D3824479FB13381C8104EE080C75E9085CDF03DD2710D4951903D55DC00E02345E29B05D14E14F333C248CEBC82EF8321D46C34E9FCD9B3148B27488DC510F58052A914157B7A289ECE90FF1182C950B7CD8E490AB9E0585C44DD811F72940DC58B3200271444578161B2EC0922CAB0248EA8B0F986E3C350688DA65202375228347AD960DE5D9977891C76809264B4AA4228824086B13ED59B3AD917A6496F37C844F43DBCE7C34068BDC8B481CCF4947AAE77009E9B36F02B416D5C0E28DC9418363E09072C44488AE004BBC5B9C49988A0C5377091394523901E5886818C6946852A87C63B911336BEAB44698FC9296A570CA89C27948983CB5C6238164B2532D3396AB775A1464BCD06C91012C771103C39B8DE01CFEF58C840CCB5C9C367D01BE140E804B2210CA63013117C14964240CB0E04E4290DA26B801347898D5729848B23221F84C64759E00C7026E24A820C4439CC001C083CB13C8F0D95896D72EC0E798E4501E0ED780E9C7558AA6E8010F910069354FC9031C6986452C9B8A823C2828554B203E062683CBEA39B2EC561744A92C5EB0CF0AE499A30D0BB01EFB614C2E94A26B0E2729C16705F6F3903BE680C289BEFA27412929B3428AE23B0709295CBB6E01050127EEF1A07508410089D72F0507C06A385E1118424C62DCEED88072A8C353B801AF35DF6236EC058152A12534416A078C28965BCDF683CBF8EA99C01330C18EEE723601DD871EA833138E5088966E7B80EB83667C08D3270A3038AAAF397022CA1B788820F2BB868B8AC268C5B7606AECBBE8CB48258702A1997235885446748C56059065961E3FD08FFEA35447644564268C5BC1875CC1042AC42A552C95254856210922F3FB2915EA60A4DFEC71C171BBA73CB66E2D01F1A3B8AE2A8F8D73B20496D9656C97798EF02C35E10325F82234C66C70FCF7564C186A1C9981C72418D1CC0B98A2C58585CC5593E7D3982924C578CBEA24AB84FCCD544B11224460A7A7A7A3B39D4814AA546AF1F9DA2866B8A88732B73E4C85104D5A7743A4977DFFBD0ECF59558515B4C2209245E5610C68D1719CFBB24CA6E40066EA6695248665F110466656258C5A14C36761B56C7399280930FC33CF96A0610AD2813B886AD71B3260C0C144560F74F9E7B8E1A4DEEC7B0B057ABF3A21FE2F37CA1885542B12B38D73BA0AA2D2E5E013810C861D926295C5ED86F0B72E9B6276EC4EAC4EAC3860B2985D13158E9705B01E339433644201E87139A1A111A708C38B10C29876B0EEEC595990B96EFDF5CA416EA0D2A97BAE0C0ADBB5D359D4CCC8B0C40AA420E5F758033E222032E206205211CF8B5849B29012B93425A04319B0B203B010673261C38C82AA50A525F35DCE5561AF7B351F80A5D4501130C3437B50882C42870E94C9E0899B8D52123353561AC6B856D01D6727F138845D4C6CDDC88D8AC509C19CE828D9BBA3E2F5FEC0E3BE385B5030913E7EC04C3291E3586092C1011AD824A05B408A237C20A6ED0C74AB5469F7BE41154FBD86DE70D3993CD2DAA082DDA65019590C8B2E001AF0E22CAB911D2C80A857397DF4374D8684F3840A1039E1F3A238CF7A38C801F316EA955EC8A305E03B4306551BAAB2438C0EBC6A3BB54A437DFDA0329B56FEF80A2C55B0ABA48C9B104FE036E0CA3C8B3B11DAEC47004B41512EB51C80D5F544FBAE284C7848F32E006BED8EDA87EF0E79C01369C7B25550BB392CA17896B10B708FE0D9D5A0CCDDCAAFE6E74A295DB3B204981CE170DB8645F837F8692C9FA1FC12AAC11A1531E85FD3B857016B2CB46BB11A49C65587146BCF09CAF2923FAACF50242B867B290A756AB1556D84F399BB35EEA2ACB9863862A84C62C90192224A023450E499153A2D05D370D860AE22F6702867830DC13B042268270CEB080B380DB0E95E103958212241249B250D65DC7BDAD91EC9C691A1FAD426A4C36188FE476C4804211813B1C34E56AF43913BCD8499CA1F30C28E777280B9D4E427262E88D9268C6548965D1C6EF19DB36B530D8CC76D0CBA0F73710ED1CC6C913478F5265760E467568CDE02032E044245604794F9F3E470D0CF566E45C7DA94E4BF5257AF0971FA11CEAC1750E741C5FE71EDFC1C57BAD2AA9DCB6A20B2C622CC40C8C49AC13F2C36A8310888289B2817EDD58ACD1899949B4BCE6958BC579E6C53022766058E3A56A82B0DC20E6B2797AF4B14769E5CA41BA7BFB8354EA2ED3DB6FBD268C04911546C29EBDEF50A3B184AA9BA64221471D8CA6B9A08B3290D3AE42D7CD1988B9B2A1E026174E1D27E9F41F0AFDE5EAF7690E6E0B522919372E5011B36E1774BEABD44DFD2B56505FDF4A11E9A54643B4DE1397CED3F89183E0424C70C030CD140FFDA3A3778B4A8C591D30F4C470DF6A350104F50A4F00677E9E255EA8A994AD4BC07D325310697481D55436540A8E1E2B87A66962C538B2628F6112C34A849116D1EAEA12DF77790EC68064F10E75E1C1FEF8F163F4DEBBEF0A63D1BA88A96E7931D30270C534DA19788E6BA8D444EB505F5A4217EA8887023CE4D72A155AB96A0D0252E67123011F5086024FDDB973A7F3EA9BEFFDC8B49DCF939867244F5315171777915207CB9555052386EC28AACC53A38DEA5DEE2EF70CB65B6D0D37D3B89B58B57A5049A752DFFDD6B35FFE176079B067C5C02F154BBDA3B9426938994CF70863254FA85638C0F857961F289C3D368CCE5F98A0F9DA82805C36971570546371647125AD40266DAB93C4D7CA583538D1113FFAD77FFEDBDFBDEDF34749CA251289EE58AC6B83964C3CF8AB5F7CF237BEF0EB4F96DE3F70880E1C3C4CBD8532F5F50FD007E3637F3C3038F27B8020176A13CDD8F8D95363AFA6D3B952DF8AD5777575F70E6573850138A0F27019F640E10207842D6B07578BC53377B3D9021F1A22CB89647AB1569D3BD56A355E176C8F4633F5630C2F1457ACFD5679C5BAAF83D8DD1CB97C214B2D4C4AD3D3D3A2EFEB2D77A3C7F1E9F4A99334393D9BEAEBEB4D2D2CCE8B1E275FE81EDE76CFB6DF1CDA38F4E3EEAE9CD5D3DBA3036675F4FEB999F90569ECC058B038BF14E72C78910383AB079803C1C4C4C4E2C50B17272E4F5C38F9E187670F5466A63EC0C7DC4AD7B174D1CDF0E3BC6B0B88143DEF7BFEF9E7A5BD7BF7CA172E2FEC40BFFA86D15C94584273F9020DAC5A456BD70D51B1BB0751E1A76C71EAED298317E86DB219711D8E1E1B95CB6645CBDC95CF8BA76D6029081CA7DAC202A592297040A6B397268C97FEF1A5C9CD1B877C74A7D6D1B1B14B070FBC7FA25E5F98C0A5A6B130D55015ABCD0F3F282C4FC13289AF38F0472FBC90BC7F78F861C597EED0624A1F303B00426DB62D7B048528954D2614C6711BA53F934A89A2C506B14432C98AC522556A551ADEB0812E5E9A402F53C2EB9A487F80EF9A90E5DEEE6E5A58AC53A9584037EAD23CCE0BC0790B73EFD9F3E7677FF0BD17FEEED2D9B3C74CC799440AD9F046146D2BEC5E6E2ED7CB1092BC6A752436B279777F5F2995CD644475BD3C3949E5629750242EF9C31BD6D35CB58A1EBD04FD6FD3C4E49488321FFC68260615E2E7A3EC685F6F0F4DCDCC105FAB0119648DE7CFB850E67339F1DB3EC0CFEC74F03B9546EFDADAFFC31FFDCD73878E8EFFFB7FFEE4955D975AE7668EBD71AC732BC3970F057011D0D936FA50CCB4F42FA1B1CB6FBB7333A4D01232C812C7CF6738E516E0B058AFD38AFE3EF1D02997C9A21D4850657E5E3C985220B13ABEABA1FB64307276D6AD5903A76B54048C9A709A1D625865F1DB3CA2AFA3DAB23473FD41C6A5BB366FFACC86914D5F2D97D7D2C09AD5C70A8F3D66FDF68E1DFEAD7BA108500BD31FCE4C4C4D7F2FD755F0DF3F7888560D0CD07DA3DB690B9CC92162FCA48CCBBB8C481E1E1F174F8E25B078A151A7871F7A9046366E100F773399947818D5D60D4C544B64213319D48955032BC32611E2615A364DCFCD894C713D59BBFA0E2A035EC96492CE5EB840F56653CDA4337FB66D74F49F46AAD5C427FA8786B3F0F4B3CF9677ECD8F10FA57CE15772B86916F0C8216225F4E61CB9FD706CDBD62DA88E7374F1F2A478CF84D17DE5321A378F4A28F53D80C5FE436354C8B35A192283994C9ABA519599173C4686E3629D8E1E3F892C293485898B0B9F0A52079ED7B1EDCE45C06D0F64F4A5C6E4E4FE175F7CD1FA447F313DF3CC339A92C96C7FE28927DFA9D76AEAE69161011F860BDF88235442C5E59BF7F7F60A07CE9C3B0785D18528DB904EAB63D1C6F5EB20AF6501A1E5A306984DA381AB81B875F0C946FB2043AD1CD76EDB8679A6D56EBD5B5D5878AB51AF9CB17C470F5C4DAFABAAF1EAF7BF6FDF8E0337C9E8CE6F7FBBB47DDBB61FAE5D3DF86B5B87372292F92B9F3750DEA7A667C800F1DA805411A53F05A778E25A0D79E563B652A52648CB6DC51C54885B82369C62E8B11C991DB361E8FAF176BBF94E7566EECD6ABD3EE96B9A9EB36D7D321EEFDC572A39E065107CC201E1A63FF9380B8EA6DDF9D4979EDA5F9F9FD77A10C97014081FBD6FDBB205C48DD3B1132768F3F0B088E2F8F113E1D3653616A494F96984F87BCAF10DC3A8B55BCD232DBDF576657A6E6FD3346B92E7E98EA21869CB32D11E78FF1B833FD6013EBEF28D6F94EEBFE79E1F6CD8B0F1A9E1C13582607CEC3B7090EEDC3422CA3B2BCF1420C191E5BF8FC22ED67675A335DDA82F1D6A2CD5DF9E9E9C7ED7739C3AFF6DD0916563534F4F67D7AE5D9EF847E667F4F7E847B6126BCBE5A5FD47DEFFF3C1D56BBEF8D33D7BE31BD7AF174589879BF70E8F013271413A4C6ED6E25263A251AFEFC3D0B1777A6AE660A0AA2D07E313AA83D1ACD7ADDDBB77FBCB4A77ED84F5B33A6EF93FF16F7DED6B5D0F8C8EFEC5D6AD5BBFEA62E2EA582C8DBA5EAF2F9E879CBEB7B0D878B35AA99C7424A99D00D99A68DE686ACAFE28837F9EC72D9B39677EBEB9FFE8BEEF62D8806C77F46AA5F65F0BF5CA05558AB77D189CF53C734D77B720DC2FD2E04F9C013E1EFECE77D4950B0BA9B8AE076825AC4D9B36B9FF17C2FD3C8EFF01FC6A3CD92169AC810000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (180,1,'Workstation_(64)',decode('89504E470D0A1A0A0000000D49484452000000400000003B0806000000CB8C8CDC0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00001B5E4944415468DED55B598C1CE771AE3EE69ED99DD9D97B97144F51122F714951A20E524A64D9B01439122C39808C0470001B10A0970408F2644A0F811E1C1B0960D82F0910C471E2883192408A6259B665C9D6451DBCC9E5BDF73D3BF7D567BEAABF67B8B49632E9C8D7903FBAA7BBE7EFBFBEAAFAEAE85ECDF77DFA7DF8BCF4D24B715F0FFF814EDA2346C81889C592D952A9F4EED973E74E75F7647F381ED68F1D7CE209EB46E7D57E970178F9E59FDCE4EACEC39AAF3D82AF0F6044F9B86E18D3E56279E85BDFFE1685C211B2AD064522612F1A894FC7138977D2D99E971CCF7BFD1FBEF9B7E3BF57001C3A74C888A532FBB0A64734A2877168DB6AD731002FBDF83F436FBFF933D2348D22F138F5F40D926146A85C5CC6C893EB38649A663D95EE3AB36EFDE61F0EAFBFF9959E78E7FB4F3FFD4465E55CE6979FFE8BF727A7C6B719BA51D731305F5923AD0058F29EEB2DF9BE3DE73AEE74B5DE98282DE74F54ABCBE3E7CF9F6F7E7242BFD24586FD19DDD41F31A3C94FE35E5DBA0EF1B1908FFBD8B64DFBEEB9879289142D2CCED385F3E7683997231B82FB9E4FE1688C529D5DB16AAD3EF2CE9BAF8DAC9F9BFEEB030F3EFAEFF8E99F5C0500FC68976539B8A51B218DD2E4FB036C13BEE79187E1F2D675C8755D0AC5A294890DF977DDFB8007746D53371ABA61D67443AB68BA56D419345F5BF43C77C173ADE96AB536555C5E1CB52C6B7C6C6CACE807E6F68FDFF9CF6D61D37B44D38C87F1DB7DBAA719BE837B6215BEE663093A3108BAAE7F8CEDEA581B7E846BD6ACDB44FD433751219F270BC058CD062D2F2FD3F4D424E5738B00C5A6858579BAEBBE4F1BBF388DA99B861D32CD487AC7016A24FA48D75CE2D5183EB69E4DE459A4DB166976837CAB4E5EBDAA35AA79637E6AC628148BF0492D4DAC305994466DBD05FBC9742F199AE60F0E6FF0F63FF090138E4642F8A787C3610A47784429168950241AA118B4168F4729994C527777377574745228648A997FF4E313E6A19D3BB6D3E4C424159B75B9D6C65A7DDC3999EAA05BB7EDA26AAD4AC5FC328D9E3C4A3353973B3F0A80A63930FD48D5F6A918E9C624069998288C6D04DB48D8C47783A2D846B00D870D8A617BA7A991E9DB00CA03913864351AD4AC37047DA75E230BC36ED4A859C3B656D1EC6AD9B02A05233F37434B4B4B625D0A38ED2AC0D8D2D4574DEE9B4824E8F1C71EA3B56BD75EB5700F663E333B4B274F9EA44CA68B7AFB072859AB530DF7AB605B2957280797A8572BE4B81E40C1F05CEDA300E87A13374B8035C8C1A4B040D25C9F6CDD07D978B2CF5B0B93686C96AE4E964EB21F09C7291A8093C2D671D8655C08E163DFC57C9E1CB3799FE7C4BE8FFBE020FEB3A936A926A0350120035527C7AA92877DBF592117C2CC9E3D4AC78F9FA0A1A161718B9635F800BE5CADD2E4F4149D3A739A2A950A35A104DBB2B13643A2033B5C776F3F2D2CE521FCEA9E646242CB17E86D72F00B1D0BD534D6AA4E3600D13D161E373614309AC7A060189ABA164069D01A2F2C1CD2497C19BF3778A110DCC7D61755631FB7A97B3A5530CA4D9D1ACD1000D3C8A130B9668C9C38000B019C0840B431522E6DE8BB896A131F0817F9BEA6B8C130C482BABABA68CFDEBD5487E00D8C7A9D01AD830C97687E6E8E2AD0FEE54B67719CDD23740D00486B60360863F30637F2D9BD20A8AC1937640B6060700D0BEDF8724C0B84870F908163868EF310CC0408E430A26C763E996C7558382EA12A80AA60C7C6DC86A18B4BF1A54CFA6AEB12200478EA3BFFD4D02262D62E9B319324E632705F667A4F40F1AF1AFC89279220C5E12BC0349A347EFEECEA0060CE3A9B6A18AA73C5053CA663A5698FB7BE689C5608CD9AD7031731E012CDE09C5C0356364C5D7C9AB50FA7A0264CBF8AF33E4C331C5284C9C231C71B5A304809ADB69A028101D4A354AED7841B383A30081299B0CEF9B905FAD1ABAF02B820622032C4E20984C0E80A50A8BD5D15002CB2CE4983E63431A94F2CAB160C5630BB80032135163600444CDF5042EB7AC00DBADA37B0F20800D0A161B6A43A2F160B6386F6D9A444705F09892FB6681EBFC537A36D09014018213D02136E281710DF873519AE846917D6110A7780BE1A542C95A90E4BA981F59BD0387391C6F38ABBF8D4A857AFE90235DB86E3BA16B9014A2CA0C796CC56E01B6D97B05CB563F017570F84562EC26018BC75025E0000089CA4870CE1035F774522D69643CADC4558DD575BB10A4D845656C0AE800864840140E002BECA154CB1005F40D00C10700CD10D248568466A26DCCF8852A5949328E540C13CD7AA0060543976122CC0E53B78925B489CE53B2A6BF003425451426E21C73C890A7A60FEAD6DB3095FC6CC11D3544422712D0057CCDE0F4C9F8537456025B45AA813B885C339891E82F61ACADF030BE028C3C25B4D4489A9715CA389C66DAB89E148C4716D449320A4B2FBF0F9D53940D7AB1C8610B885ADD95F44D12D77E0C8204503D24F9E8305652264F312B7F3DB3CA1C1D499E8427081A8A68B658443A64A6B39B2082FB8BFE0FFAEF8BA685E0F846660A8E5020000EB630B6097A41607306F45625203C4A2210144915E13EC5F451E50465EC296036E43346A81F111009081E59B485E2A481DA350434394C5F15C674E111044F39EDF16567143704C3841EC85CA882461689DCD94CFEB203F5D63523424E16181BD40702D105A0F3841919E02C6D114E87C0EA9AA5880DB667C5D84F784D55A73709451E7F9381362281C95F36E90C63380AB02108BC7739C402C21678E83C41AAE2EB159846F978C8A03840B7CC51162011C02C5EC5D2AC32A4C66FF56B468450C00113374C9303D7CF734C52F2DA2BBE2FF4A10A36DFEC177264C0860352D081512A0516B88468BCB4BB4BC3427EB62C1F9189F6317C001D4054D39C62078D772814432B5CCD2968A254A12F2685D250C9E4AB7C405243A90DAE7B9395CDA013FB035549A9E244AD140F36C15061067DFE498CDE498103234310FBB81D30E734C90570080B68268A0422316EE9A9449A725A9E9303A8508C545B90C46EDC00437D461923560D2CC9922D52B750502788D4D9F334EBE462ACCD5008847E305D65C1328F91C0EC53E61059C1E7A5AC0032B06BEDB86224B16B401C2E33017618BF0C418841B107D94A5E0DA1026B171301E56C2B10578ECEB01F1E99AD1263E3B700BAD150E7160007540A15024284B59005C6B7070902E5E1E17ED6ECD1854B82344A55C822A858A983C87BE03F7DD0D6B70E88D37DE92D43999EA6CAEC6012503A1C4F751F10139DF5436AF4902E793E0E02B77D00272D4824861C3EC9B98181C24D1405B9931BA8A43D8122CCECD0DAE09480A2997DD40258881B9AFB40275AF1627F07E32DB4DD54AB91D0A990FF6EFDF4FEF1E3E8C88D3A4572ED5C9BE5CA56AB116F8BB1A3FFAC9EBC20BEC4A1B366D42C1345CF96822E453CD90B8C75A851560D5CCE61CB6988AC41284F494E6DCC01218E12A240A81E06CE60C5F5980CDD971601D86E78BBB703EC11144BA0EF81E325552C46EE605428BAFB7AC2020C09645243AD360F87A900DB21B7AD4D3D34307BFFA559A5F58A472B984B2B72E851527430DF005470207378DC36AD299AC94C7AB2742885C062F4848C452015B536E1014F9582858D60B728320A4572D95012AB750566104B982F080CB210C82438A9080100081EB42F08F106A064F7999843D97F38115A4D8AA05B83E8927C1015397DB0078CE95BC96CB65C92E61C55C058E9EBB44DBB76D256B6A1262A0CC0A87AFD14F6825429E51350C95EDE9CC03BA1660A040F065FF8A2B88F090C2F2193D534890AD8201B244F39A5882C90273DADA165E1541212E95F1A37098C3A376050418BBBB42F3CA12F01B5C1F81F69610A9B8C46642E50ED5B53E9B37AEBB66DABB6A7FD1F39C9AC916C0083856A0E1A0E60EBE49EC6573E52C0CAB65003CB18C202AF04F7D952DDAC1D6F103F377D596B337DBF5DA1184F7B968E2F0C8D6C05B2EA7C3D28C510D19CE1F4C8C584707121CE502AD3EC36A1FCE0FC6A766917E472812895C170026884B2CC0173FB7DB559C7468B420330968D913EDBB92B36BFE0A725409A2F000FBBF19802282FB8105B4C2279F7795BFB325444D43313BB9011F284BE005718E619A1E451229909D258C6EA036F1AE91D44C4ECDD0AD5B77501CAC9CEEECA053274FFD7200406062017C43DF093820E0012144D28398A443731A3580B289C4C6153B6120B40008B5CF241812F2834892B529EDBBF00B177338C1390782B400626DFB41783402DFE7E3265B89076B8825A4CDCD71DD37783E7B5561C291907486C88F817FAEAFDD6FFA61A7DA76019E38C84FFD9605B43A3A1C2EB89AD598BCD4392F48985AB5831684152FB0002F1090932871093F10DE3354BBCC57A936F709389A78DA95048C4D5F92294C148AC514A001093AD7B08081BE3E9A9C9EA558B897A66666AE0F80C6EC6C10052004EA6AA5F92010B448109A69FACA0514A36AC2076C1D5E6009AE7C53DCE1B584F7B415FB4AD816082E830040B9F718622BE074595720B8BE0AA1A66B88BB84225195DDB549D0BBA6405DE90EE9027B9E777D2478F0E041078990279467A996B21FB881941B9A12B621BDC21556A16981EF5E197CC40B5A2F9E7FB5FF5FF9DE8A1AC13307FEEEAAEBB84DC60D0C35541125441809AB6714DCB8755CF53CE013FA48E56F189A2DEB0607F8578540D5856D28D5AFC80F34C901FC2047F002D05481A6B6AA7657AD28E5120A1C2F880E5E1B882B11C376552345840F80E048617087573A536E0082F7C902A0EBA6C58BE5871F529C4A0787A4BF6707214E921EBDED1BCA1A02AEF05A0F4482D3BE144EC139FF4AF35209EE07DCE00544D9CA167D69BD73FF901323DD699261D5C96880D46A65C9E5A5B8611EB84665B7F2C369731105DEC4C484B4DDAF9D08B105E88625CBB61A41BB27682BE15FD30B046E45875F0042DA5C57CEB6F38830D2980E546411CB45A1E44AD335E48364A1411BE1D607DF3450AEFACD06468D2CA4AEF572916ACB452CB84ACBB93CE5F3C520AF77C48AA4B5E51B57E501DC063F77FE222D2DE5A42F68C38D6B48848A85923C3FE4967815731F78E0C18F01C0301A62BE762D50A32F20E840BD9B9AC8EA403E700F0D0BD1B078D60E0F0D806958BC064D6958B4562F9187A2C5A9E4E9FCD4382D2DA827409C8E864261A9E7B93F6F9A18BC45FA2A7E6EA87E9E3CF8C0BFCF3EFC30CDCFCFD165547BDD3D7DD4D3D78FDCBF8F8E1D7D9FA2204484C4766EFBDAEB6FD2F97367656E7E54265BB84C67A6932AA58ADC3F9DC9FC120B308C269BE8F4A5733494FC67906195DC4A9172D39334B5B828C8FF7F3EDC9B676D84EC9000C1C27397588040048A46A394EDEBA1BEFE018C418AA5BA68EFC6DBE89E03611436755A0418A74E1C91EE12BB80633BEDA7A6517EBE088163F1A83C0F48C4E3C82BC2288E6A94496729D5D1495DD99E8F0700A4536717A8A0E63EFFC60F84C078D19FC487B59B4CA5A803F97C673A4D1968239DE952238DFD741765B259B9AE5C2E537E394793E397E8E4F10FA9B09C175FE6C6071323B7BA0C28CAB2ACF6639EFDF7DD43DB776C15A6E50A3087DFCCCECCCAD3607E3EC8CDD0F51B6FC635B7B79E396AFE8A97220400306F3D9AE8C049432A006E93A7A229158284894DD92AD335A59C6D6931642AB3E6214F7CC3C1165A10C191C7CB6F701E9A434A5B971E1FF72197738B58EC34952078315F908488EF2182EA2A1A702460ADB3E09C05AAAAD535AEBC2760D1D8D838E62A50BE90A71A406030990B983819D048644A00C03C2C6F0818B82A52FBD2FEA0BEBEBEEF25929DBB7181E64991E2FB1C93E1A33E9B28B2327C377CDE62783A0A08DDD47D53C7BEAE0BAF83EFC328ACC069AEC60F2680B3562E17BD72A983B2DDDDA51FBCF8FDBF9B9A18BB5CADD7333DFD6BEEED48676F4F263B3763FE484BBBDC1C6DA5BBD2C8E084486F096E2810748E16575CE0C36327E9D2858B123E3932259249C9242D6E8501B85EB8D4965B6E956BAD463D860DFB4389F993838500F08DE79FFB3A3D4F5FFF554C5C93EE09992FFEF87005054BE8CCE8391AC558CEE7E9E6751BE8D65BB6D0962D9BACE79FFDEABF11C9023AC72F1427B07D45D743DDBD036B7676F5F46DEDCC64374622B12E169C995E840E72892BDA676236DA8FD0C57DF97158222EAE1586F5B0D5C245A8DBED114BE6365A22A99A21B0BA383659523D97461B801B14B813263E108977DE198E2446BA0737DC06E65E874585448BBA2E61922D490DEEE0FAE95BB66F1BE77054AFD5D8F43C2314AE41C20BE546E1D5DCA9C9C33896E9CCF66EEAED19DC8CED4DC98ECE21494A0CD586F25658C3CA5478F7AEED74EB964DF21648A552959057AD6AE0831A4700BB54CC4F2C2ECE9F2A1596DF03AFFC9CBBF781F05E9B03AE43680E3B994CEF9A2FF40C6EF82BF8D74D904173101A3B93694A77F5D2E2E2125CA957583D1E8B5207CA5176237E40F1FA1B6F50B67788C2C5252E7AF452B98422C2E980E98FAC1D5E3FB2FEE62DAF0E0D644F87A3E1542412F5138944A5AFBF3FD795E94AE50A05F3CCC9B3347179CAE4F8CFD600B0DB613002BEE1CE2F730134DC989B999A46F2737162ECE2C94B17CE1E8135CCE3B21C4621109E4DBFD902E063DF1213C1717EF79E3DE6F442F579CBAAFDA5EF79ED5649679A993C2D23DAD14FA9545234C15D5B0843894404234631EC739DCFE1AE1F2065B35D42941980C4FDBB30F704828C90C1E32C910933CC6D2E009A82895F9A9AB65FF8F74333CB8BC58E6C57D6F8F29FFF69C7CCCC4CF9ECE8E8EC99D19353C78E1EB9786EF4CCF940D8458CE560B0BF5703AD3B01F979ABBE26F7DC73CF49FBE31446626C4C07D2462C1633C76B4BF14B2766BE914E777F2164B81A0B9446A2D1D3DD43D99E6E4934D60CAFA12816DF994A08837383B2030BB7A09972B94A7DB8AE8AD0CACFE33999995B58A0CD1BD6CBB3FB443C46D9AE2E3A7D1679C8403F9D1E3D4B7DBDBD34BBB840BD88E13954771B6EBA4952E79FBCF956E1D077FFF5F8FCF4C4F4A50B17E6601579D8FA6220F872B02D06DAAE33F7B5EA357F156DB70160E173CD66F6D30F3EF46738BAD6D0CC7EF8723F841A4434C862E1299F6B5808502A16299B49836C6C2A944AD48DC5B365542020373C93109CDFD319EEEF178D5F42988A206119C0F7D77EF633A9DB59F39CC62691B89411AF878706696E6989766DDB2A7EBC807D6E6B8D4D4E218748C9B56CEE9CE931803F7AFD8D0BDFFBEE77FEE5F29933A7AA9635E7D4EB4BD7D0B67F5D2F4A3EF0DC03E62D8DBBF63F78EFFEFFEEEDE94EF2E2D952B8F97006A9661A894C18B19C17358FEC702BD89D9FD82C170A92346D58B78E9A60DF1FBFF653DA08CD7221C244D4D191921C9D359B0030D3B37374D79EDD22D0517EF76770802691B8F8F2484BA5CD5C6374757652375CE5DCC54B74C7AEDBE9DD0F8FC8B142B92C51A007C953AE54F2DE3AFCFEF77FFED31F7F6DFEF2E5B17C3E5F1E1B1BB3AF47F076A2F6ECB3CFAAD752175FD65213A96198E9A39B376D4AD56B55BA79D32608D949C3FC14E6E245BA67DF5DEDAA6C6C7C0259D732CDCCCD49FCE52737E72F8DD19D106E706040CAE34E08CF60F0F933E7CEC12A6A92548D4F4DD1455C3B3C3C04974951B952A13B77EF86556540A639EAEDCED2D4ECBC901B578E4D58DA067E3A046BDBBD63BB94D80BB91C738476CBA68D5B37DFBAF58BD9356BAD9EBEDED31BF6ADB19FFCCC93EEFDF7DF7F63009CFE8FD3DA627DB6807B6E456EB26D616141AB22ACCCCCCF4B4CE71792F84D8D25EC6FD9B4996ED97233FC7E9816C0FEEB8257D818F40F8F1F87D94ECAA36A7E6B73110BE5BCFCC0DDFBC01959A9DAEEDE7B077C3E43C74F9D561567D3A61CB23816947FB3E3B65BE11A3121C501B8D0D8D434158AAA326C584D05C4F6ED3207679177EF1E0901C8FB1160BF900C758D4F160AE37FFCA94FD9CFDEE8CBD24F3EF96438D1D3B373D7C8C8374776EEDA1B02778CDC7E7BFB258359687B09025DB83C462047F87A82E2F0E128DC8205DD77C71E307E54843FFCC187B41F42E7E12227CE8CA2520BA9FE02041C0407B0A9CF83E476EFDC29D79F3E7B9686E076730094054C255561B300C0F6ED1991F45BDD372AD7BD7BE4A8548ECB00661C2EA49AAB2653D4F2E1A347B6972F5F9E7FE18517DC1B024003117EB95E4F853CEFBECF3DFAB9FF5A989F3732C8E5E3F0DD380A920C7C9043182F8EBBAFE72E5C6803343D3B4BC74F9CA45EB077B154148BE1373F99B8CA2891B7DF769B5C776274947A60EA9CA64ECECC88D6390AF09CBDDDDDD4055EB9EA7D50ACEFA76FBF4D7D88380CE61884E5DF30AD732355570D989A55AF9FAFD5AAEF952AD59727A6A75FFBA774BAE41F3CE8DD1000FCF9CA57BE124296B076DF7DF77D7BFBD66D9F2A41B37F78FF81F679108D745C39CCB155302972A1C37ECCE4C6850893DED8F838EDDCBE4DAE39065367BE604B0963B0C02C2C478FD5DE07E6AA6E627A46C836076EA9F353EB56C39E3BC78E55AAD7EA672BD5CA91DCC2E25B0B8B8B676DCF2B51D8451488953667B335EE75FE4A7F2FC056F0542E974C9AE6DD8F3FF6F88BB9C525330B22640DC5385E437BFC1E2F57872B3F17C7C6540587DC7C06F57B11A18D5D84CD98199BABC4D1F317E8BEBBEEFC888667C1331C1D9650CA1600A4BC4522CF2A3CE9BF5A5673B95A299F4678FC706E6EF6CD7CA930AE37BD122AB1B21E6D20F3CD3433D5AA03E5785BB76E85E20F5E77D370D54C90ADA01EF686F7EDB9E7EF77EEB8FD8F166767E8B30F3DF491D7D527C0E6B373F3E2D7BA694A98E470D707806620501AC0655698345BC6D19327A9BFB70789D0227CBD4CB566535E985660C81B1E1EC2EA42B95C3A59AD56DE9F9E997ABBD6A84FA3BA28390DBFE24722D550B96C81435C16187EEEA984F557FBC3875501E014F8A9A79E4A45FBFAEEF8FCA39FFBDF52A1185A33D88F04A50616B6A4E56473A361CD30041E10E2E3CFCFDF7997EE5DA1E1773F3842EBD7AE110D2FE696A9C2AFAC062F31CAAB2B9E8394D776EBF5DA14EA83139552E5BDA9E9E9771A8EB3084B2FA1BAAA7891722D514F58CD66D363810F4160BF958B7F029F6BD602C80CCDB1B9B9E191BD7BBFB67BE7AECF736361CFCE1DD415F4D74AD0DEE10F3FA007EFBFBFFD1B0E974790DCB0D9333BF36B229C0F7081C46D357EA485E2C48276C7CB95EAB1423E7F786E7EFE3D48B7EC1B46D9D4B44AC575EB15C3B0EFCC66DD53A74EF9870E1DF2FC5FE39FB55C1300B6822F7DE94B499466239F7FFCF1572AA572E400B4CBECDEFABC7FF498B4B1D80439C96181B921C18D4876114E64EAF8944AC58B955AF5683E977F07D1E2A8A73BC5B06B9491B255FC52A9D1D8B8D14632EF014A0F7989EFFF06FF8EE763AB41B6824BF999C1916D77FCCDEE91DD5F3C75EC386DDEB80164B58C22C7A11E843C7E2F97FB6EFC1617BF9505A22A2369395BAD548EE672B9B750F48C1A109820B01E69568DAAD1C80F0E3ABF2D816F0800B682A79F7E3A51D5F59D4F3CF6D80F33E9AE383726D89CB9A7D7B49A3E2C205F28154E23233B32B7B0F456A1B07849F7CD92E73860E828185ABB8AA17FDB02DFF05F8DB1158C2E2DF5EEDDBEF599A1A1E1A71BCD46259F2F9C410CFE607666EEAD52B53A8D494A5E28546ED66AB50462568BA17F1705BE6100D80A9E79E69970BED9EC0A452219CB6FA20489D434D7ADEAC9643551AFFFDA18FA77028016084F3CF1849EC9647408AA41B3DE6F82A17F139FFF0313895959DC8EE9410000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (181,1,'Workstation_(96)',decode('89504E470D0A1A0A0000000D49484452000000600000005808060000000AB1F2F80000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000033684944415478DAED7D69B065D575DEDAE79C3B0FEFBE77DFDC333D8A6EE6866E848006091082C4961D882D5BAA0AB6A90C9538F961FF48B98A564AA954394E1C3B7125922BE5722CA5E2203B09121612205A20D134DD0DF43CBD1EDE3CBF3B4F67D8276BADBDCFB9F73D9EBA1B1A63C9F285D3E78E6758C3B7BEB5F6DAFB09DFF7E167FDF1C20B2F64CC68F21114C51356C4DC9E4AA6FB9AADD621DCDE72EAEE5B3D3DB1E3FBF6ED73FF3ACE2D7E5615F0ED6FBFBC5598E209DF974F80100FE05B517ADFB222E753A9D4B691911138F8E60F61727212F2F9BCDBD3DB7BAEBF6FF8403C957CCDAD370FFDF66FFFF389BF53C007783CFFFCF3D14426773FDEEF9302C413F8D6D6D5BE1728E0DF7EE52B90CA76433C998266BD06C5C222948A4BE07B2EE4BABB71CB17D3D9ECD14C57CFCBD271DEF45AA5A35FFDEA57EB7FA7808EC75FFDD581415FD89F93BE784208F108809FB9D66F480193E3E3DBFEF25B2FC2C5B327A1A76F08D66ED844EF839412A4E7816DB7A0522A42A55C805AB50C11CB8264262BB3D9EED1BE81B56FE407075E8D2552877EF7777EF33C4AF7AA0216FB7FF78F068F1E3CF09B8E6D5BBEEB8D4AE99D283A8D73870F1C98F57FFAB423FEF25B2FED36043C610AF12442CB9D2878F1410E400A387CF8C8B637DF3A0C9668C1C2FC3C4C4C4C80633B604523108B27219DCEC2C0D05A88C613AC10524CB351876AA504F55A057CE9C2FA8D5BE18E7B3E55CC75F7BD158B277EFF5F3DFB0FBEB7EAF94647CE9C2C95AB794318A82B1F246E692B019F7EEC49F9C8677FCE1386700C219AF8DD3AFA4B153F2E49E917D015173CCF996D3AF6A46F3BA7161666CF789E377FF9F2E5E6C729F16F7CE33B5933E13D6A22ACE02D3C8EF21EF051E61E8A9D444FB7657C301D007DDB3005ECBAF95628576AB0F7BE18BF5F44085A989B87B99919387DFC08349B4D20FDA28079CBF7F5436FFF1A94A184B9B959F8E6D7BF96FBFC2F3DF3D9A1751B0FE1CF5757006AAFCB322D080CC5A43D4A194DDF406518E0CA083A42129FF700B9202989F712F1D0034F023E37A1AB67102CD390F7DEFF90340DCB360DA3258451C3C3557D0165017E0115B7E8B9EE5CABD59A6A356A171617E7CE1886318F1656F820DEF6F5AF3FBF1DFDFE0914EC13222AEEF7A588483C919082850E5AF0FC54FAAC09A1B7EBD580E0FF00FA0606C144F938AE07895416723DFDD0D73F0CDB6EBE8565D06C346161711E0A0B0B3076F922BE6E00492F1289A23745E19DB7DF8027D66DFCF11E87966FA3102C1416E4FA8720DDDB0786E7806CA24B9511E72A55701D8781CCD70A08F7A6875A22454854046D9EE1346DC3934D0B2F3E89B7D10DA26D55EA89BAB1482C09836B3741049586EE2AEFDFF7888DD7D242C9D54969E86D653C60D1F3E5A274E542772E97EE1F1E1CDEB07ED3CEEE7CCF9A542A0DD16894058E900352F84AC886D280528660EB971FD81B041B59AEA70731BE0615849566B3052DDCD0352093EBC6CF7D705D17922917D25D79644A0558B3E126F050512DDBE6803D72EE242C2ECC5E1DF20CB254D34CD285895C3F8C0CDE476F422C6A40262260D0F0100B3DBC2114B68F7B544EB0016D6E0B7C072FCC6E80D76A80DBA842717E0666A76711132B3A04A1FD8B30EA034184AFADD346A581839B105A69D00D5A489D4A9B410B9BC5EDE489936891269818F8A21818AD88C54190F6165A5D2C1A83582C0A51DC12B118C4E371E8CAE5A01B8599C9A4218D8AC37BBE86372823A3DF6EC0004C0225E137715F2C1661667A1AEAF50606637CDFB1313EB8784C0B32C89AC81013A8185220056E171572550508C3681A6C2906989220C5C7E73EB430ED70510465338A566AE2CD09548CC9371B415121DCA09B99FC195A317E8EAFE973DC6F434B8BA1D22C0C469294847B0FBDC869E245E38DB8A828075DD569D5C1ADD751775570EA55A8170B303F390E8B4B050E6EBEF616D0E8C48A235A81374537D612362C1363A7E2F43F1A9140D035F2F5593038D00FFFF00B5FF8B1DE40E7200156CA15849B01F01524F33E8E583F34BC16304983560B15A0F7E57299638483CF1D624AADA6B2BD6B00AB859FB784F6634322D4A002D01EF555A87B720D89166F2A9746DC33245910BABCA79425047D8E9FE1D93070409382A0114196106745452D03E278F3269E836307B9AFD4B104F70C6174932E1E07BDCC47AB6285917539A43C1B619014D7C2E72D8447E56D1EC2A46C54C043E52DCD4CC2F4C438148A25B64C1B598B4FE7F2975B36FD7FFEC20578F0A17D303838F46362030A3A91826F3EFF3CCBC58A442085F94002856FA0C165325DEC5509F4263608FC278ADE96452822982B14CB50ADB7742CBDBA062C74E31A1DC0A4000C1E633B50E0D24A2001119E7A06ED49F8A808432BC72741D213939FA364F9BBF45BFA8A23D5CDB0B27043B5E10D18F8533C9F9010843A7252529C67A1B251FB12BDC835A2E04552E8094A4952457B0EFC74BD1E1EBC8642AEA3AB1204F8DB5C588BC7DC800A04FA8EE7301D0417BD0437824989FCBDB5380A6F7CF3CF109B17A1BF7F70D5D8E06BF27EE7DDBB61DB8E4FC02CB29EF1F1714CC60A80E401E6E6E71082EA084B4DBE7E0AB8113436FA512C1147388AE27D38FA58D752403C5E65AB0484161F2183F09A8446E401EF99044F57A4E5C542202193E5135CF175B372D47356082909B4679072A4521E7D218AF86BA055E12911CB892E2AC5F0090862F8A4E82DEA642C1DF20C13F7188C1173016A2D0FF1183D8395A3A049E2796AE8859EDE28B44819C1E7318633F23089B0B871533FDECE9F41A15064635BC99402A149F2447C9E48246078ED5AE81D1860AF72D033D9C3704F81B9505882C5B93954CE52187C295ED8E8A182620D5C3DE85BF158AC4410402E60A36B475198B62F94E50B256CB2100E25141FF08E5D6618648DCA5394807133B4F0BDE0B7CA9B0CA1BFA3A12A8A168E34158543C2970AB7A5426BD36777007560C1F024F1779596843A0ADDA5D774E1A6A15544C73098F7076C87CEE7119321A12A67E5F3B00D19CA226B68C904812B99925468CF9F69C40A6186218537F59A18572693E51CA077701895626B0539ACA0F14B230CB95755402C992871D4274E4B0A402F68FA5125405F5D0CDD045B3E4AC7F5E9A6108A7C83AF2E88092C680FF877AE687B0429CC09BC80AC1D05E0A2E04980A6E9EBA0E9B300C9AB7CD43629C3456B77D00AAB08350DC767CFB44C93BF2F3B051608DE0B04AD8C85F76408247AA9BECFC91992087A107F97810777E40DC47E8220AC6288AF85CF52D201592961E57BA015136C446CFC6B2A201AAF2897430BAB35212A88424595D0B5D5330C110E0B65419E0EC2F425123A055FBA7BB7038A945BAB98A1204A7992C3F1451DCF42082268614F90016590484D7DA8E3D670F19CE8292C333C962F9482257EDF63CB57C20ED111DA19B0177A835050A5BF1F603DC1077BC08ABC21B0747A9C3A750AA6A6A6D1500C486732D0D5DD03090CC6110CCA006D6F08DC24540CB45F5F9305256289120735BE18C25F5705621D8C19C7780F8CA32C056DCD8C1241C40A6148FDD6F095125CE96B782765F9CBD89381C7224E6EFACA76E9829BF859432A2B57162F03FE12440514AE8A5432801BED3D9E3E87F200A1BEAB3D0CA3087F9F8D018FDDC2802C3B629B083C4A2AAB26CF31AC341E33C6383E3B57808B17475171752400C4FBC9184D2615743CD3329939517DC844FEAFF4721D2C08C1B8C638494525BA6C17B3600D0D46189014960ADF0FA1C493CAEA0DC678C1D49575A285EDB2BB74C407A13C04F4E78E7E2F221447A70B6D10BFD74C2914B70873B96570C39F7A22B47E256809FAB41C37245A8DA195439932799A83F790EBEAD21EE0BF2F8B66C86008C2C4130599CE7443A5308B541AE967360BA9342AC555950007F70D8C250EC264B3520363B188E720DAEC3199A0025E3EDF730D05F87ECD37C84D3DD6BA89D44DC1BBCF6C34C805182F8D40112A4953B4D3645CE72F6B0B87108294E7041E14788843EE8EC77528BF4038F3D19C5A443189217572763A8547178957E629BAEA690193CA3C5094965F6BE5789EB678AFD3038043301B060A6ECD868D4C21A566667C5F0AE554894507E1C0767B0786F8F80DCC7E897E52AC54496583F392582CCD46EADB55CEC6BD8864055A96E43870F544CC177516A8EBB2AB190441A6BE185042F482A81FE607416C30742E20B4B07D66319E766DE6D71A67196341410FC180A1A1A9EC29B7A164CDD4CA5320AE6CDB0A2044A83DE3BE15301E19C290D40A12DA73C903384E68880A03351E373FB40696262E2BA8859001F377D9017410B6D1BA8B8B7310895AC8DC227CF4682C0E6634069118C24DC256E508B47481FC98615C7B8FE4FA9877ED3C004F5CF349C88E52409412188E09CAACF8801AFB032A1A446862431EBA8B11C40C3F88098A3919BE0ABE41CC603767B3442FC02FD7A8B6A585EF4AC58C0CD1CE5895FB992CE8C0B2B93C11321E9F6193054CC413BFFB7E4F58C18C68EC319D5599B2F4DBF0A38380D41A60EF202F2361361DF418B47634528A1D342043F2A2E04E251197ABC21E67FA5CA8ECD8E09A3100218884E5E0C195AF3ACC26D81A40D1BF802AFA52DD1CB4890C0BDA93ED7CC0F09495064C8813328DB546102430D1AA227E52CD3D221485155A6914784560925279822FDAC29342DD94842026485688A7CF23F567410D88C706408487A3EB8820776FB69A611E1050D020090B20289E4843BE6F08ADDFC4CDE2F810707CDA1CFD9C6A41D54A19CA182B14ED5510A4A8EC351480F85FA7ABA292330BDA733A920FD0184B17A4A967287C72375582F09819298A1A583E84F1A3ED19FC14155423B8A31A11310DA160C971551025CC141C0BDA4480451E424D0031A0B2DE0ED8217644DEEA7526643A1720E62535338A25D39CADB633E176493BE0FC2440212CCD8E4418073B797E48439938980C3B8A26B73DE05A831C165E518D2ED0D10A00F2045D8EF0425643094C400841C704ED0A3A2163162E2DB6265743965286D037A85CBD822E4BD4D3D2821761BC50C91D9D8FAAAD54A608051E60B316BC62397EA8BC20C9323C0D35AB0460E5418AE94553492EF4851EA0E187F64A68CA035CAFC5AC0622669823F8CBB2E1E5895710D44308221CBC9607A06DD4A936E3B8B612A8B4C352AEAF19B1D4DCDFEF8CE881E0C00F83AC3454F1CEE520AA8232D780385803546D4E95C1D2A51F372801B14B8990C2D26F637865862E37D0E9B593298BB59462A406C8301FE86047941304ECC80BA9A6C1F945140328D7F8113A82411D30C25217CB8C5852ABD5804BE70A219B5748A03D81CEEEA90A0231C8A0EEDF093F2A06C0B5C603A046031C3492C3CA72ECB0F6AE4E49CF7DE61F8A9A2AAB55799A1290D0AEEC752665860EC2946C516D9D048ECF23A660387045502F02153704E8DC40FDD6944A09A102424CC7CF3C2D541D6B48101C8FAC4019320CD452EA3C4104C999C4EC33C110546FD4B9D4CCC15C67C252A7B6ECA55614A1598D69104BF47800DE53D5D98EBD2FD58860E7FE7A84CF0AB05DBF46639E0C39E432E8760A73D44E0D82684504B181ACC0109AEDD066E8244CA88447A1A2F610001B7FD0626831B452DA41976A49AE8E25A0C7744961447129B8472949D3C2363A3D21784F076019F078D00159E7089ED009A208B2681A0E8D317329974B904E6734FCE8FBC573C6F173BA1C8A4594E192873FB9A30B26640446EF69C1EC9FA8012366484828684F64219D4D42A95CE111B96AB57A5D0A302231B34E1E100CDF08F400B6675FF3085FE3A9A6A69CA808EDAADA4338F069FEAFF331A695B4A7D242B94542A6F7F4FB12F4E687EFA9F755A2A4CE45CF5550A55A8CA537AAA2AA429E7E0F95CA237628A888FE2C6299FC3EBDA75EAB2D384624AA6AF79552495BB1F26CA9B1FCAEDD7731F677D2C9F5912AACEF894061FBE2328809B66C3603BFFA2B4FC3ADB7EE84271F7F3414309526AEEA01664BD448CBECE2F40FC502ED01BEB68C6563A554F0F215D6B2F8B5A24236D411801D623C28692348D8980D759435348D159D899B4EEC282933D15C294E98B4694F103A3B36443B28B3C57BCAE2E97DD71361DD48055F5D3DD59E10F1A3FCDB4AA5C2182E3B8B71A88C6CB64BE7104AB8840C6F2E266076A20419230775B9D8217CA58CA5A525F8C3FFF2557E7EF4E8BBE1D0E8DD7BEFBFBA02969646EAAAE8A5030D42108B39189C0832531158BCF20816322881CA203AF2A7C1FB78832D35AE1B11BAFC2054653548D0987F7BAA96247476CC192D17D65450274C7585B27443276A81E07DCD7C5400965A192A907B3A7B0ECBD63A3FE10453AA9234C501AEC41A1DC538CD5ABEF8AB5F803FFBFAFF8446C366B8393C5A56B033A95A723CDFD3A56B85F9012D32B4ACD2A9146CFFC42ED8BAE396AB2BE0B9E79E737FF94BBF4E5E6FB20CDD96C67E43C7011172611E79D25605418033DA8297A14503D41DC943924C2735D3717D58362EC0A9BB1ECEA4F73DAD20863AFD7D9332705F4153CC34C2E29CD07B5F979885AF03B06622CC86E472DA2A7542669811A5004EC674ED940666F498353D76EEDA055FDEFF1C266C6AE09D06E1B935453F6FADF29A3A238226ADB8DE1B86798D3C40F5A6D00872926FC86E325D6343E06E39D552C28156D310A96183D225297C3DB6AB031FBEB41D1FEAF8B9C543724A780A7AD4F023FDE7FADA8B7C559656C256D84F019E6282623BDA925941AA6CE14347494AA8BCD8B00C451141D35BBF939AAAD2048F89E189824119129AD403303C4C8AF7E85F1F7961F87230391DECEB87F189F10FDDD9C757220C8B226F924CA55658808489D999B4DAA345C2D05064744093A129695012167A9042275BC1A815D1505FB9BEAA88AAF164D7680B9F3CC43414150C608706623C6DFD2AA84B0EC052D78C7C1D0B424FE8C805600505EDCC13249FD3E2B8448534958CF9DA0BFC6B0E21060F623BB7DF7E27D253E7865A2B590188AD4D35102FA0502A431A2FB526227A905C596C108C8398A01CDA6C17C534F4545D8F831E533B1D68BDA09EC4CAA0425CBB7461E8D285C7C2570C4A6A852965A8512E1A6FF0749300C11207E50E6A4ACAE81C130E28673026CC43389C1312CC59D0D3DDCD85358F4982687BC175F2F735C343DC235A6FD66F5C01F158BC1E709C4AA506BD822AA23185E742DD058FD58AF6E891AF9905838CAFD2741BDF687864CDBA5017C40F0DD62280223D7C49A507053D0195959CDC29CB5795D680E24ADD1AC34A103E8F11901264981B687CEF1C09F3DA30E97279D8D0CAB660CDC60DD0AAD774C214189860EFBBBEFE51FC0DD3DFC80D298043682C11AF867D4B3CC8EEA9A06B888EBA629088E9B6421D8A55E30397D1A0627B3A30AAB811266D222869E81CC157F0D0C9F9A57ECF932B5EEBDEA4E07B5EF81DE004C90C7303D5AD676ABECFDD7A1DF9000F7DEAEFE33F30B46E3D382D47D34C4527697F3D1ED06834E1BD932330335FC0E4AB1BBABB7B6E4C01A964AA12D05025340782D00A86CE86035811EA677ED0FAA76957CD55C956BB1AD1B6449FE02528216B880994C035798DCD81B5FBE1732D701F74B214247B8A6652A0364C95AD2E4BCE7482C67BEE4332B8F4CD34D6506C27D59D57C3879AC77B01AFBF8E1EEDCBA3E3B079CB5678F8A107F85AD7A1326F088262B144992E9E5A415449DA056A950DF03F708240098621C2F8004265B84DE49CC2D4993175BE811E4BD6581C9619743555C506680B1F54C0B5C2AC5A8499A9D4AFB9031BA1908A7DA6E7732BBDE472851A2B53D8AFFA1FC28E080DADA66FB232098228DF4861B245E508EEB833547CA2BDA2A5D7F000F41C2A37E47BBAB94322128DDC9802A2F168D9C4C0E4F8BAD9954AB0A00B61BA1C11E2B92E3FA8963EA599BAEB871EA17205A5384377417399C750B982A72D8C6BFC4C3915BEB3850B23F410A9E9A8A7DB613C43C50719C40B08BEA3BC8D2C3E285D7301D6D38337BEAA2951B245019836CA3B13E94C5834E352A350C546FF3A5C60E3BA211819B9C0BF911EF5B1366E3008C79365726368E96C9806E635DB111D6589107274E0A52FB7341C0435755F0FEB061933075D6817F4A4CE9283C11EF5BEAEAF77C094AF3D40F250A8623E2104491D94850AACB4A7FE22454F850AC4BE2608A6EEDC90AAA6646A588B25334A919EA79ACC8C20ABBF760C20CB276ADEAC95A0BFAF1B4647476F2C06D0B8B089195BD06444CDAC6DDAA9C76185AF33649F373D92082DD70FF3F8600850EA4AA42E70AAE77A5C4186C9935282177C8F2146C7056DE52AB1D2FD9F528DC229B8F2C3FC202800724E22D4400E6DE4110489E4A51C2768A8D3086200F0A08C6AD06AAC8801D7C78252C938067A9FE70ADCC8543A4BB39B3A7B801694EFA98A68907405B453845EA03878532AE811C1978C0EB6A4736308BDC10FBBA14538AEAF08BBD43598A0313BDC583946A828A2A516E707107A87AF954071880A789429F3615D35741A8C9A511036C96BA4C110144924D9FE684A5134AA28375DBF941FEFBC44CD25D5A08C1F94A45DB7439086AEEC1961C6C98137683FD7820F787450B80B0773FC40014257BC57F68B890EE8F1C3E7CC86A4CA0D3C8DCDAA08A6CBC77A644A77AD07D31918EF4DC3083BD668EC59980113D21B3E8F507B093E6FD4ABDAFABDD00B3E7E052004058DAF8CE1D26EC38AD04A08679C288B6C7A6D792FEBED0B6244405F851142901F302795162F6B720D67C12CA3B2ED58E0859EA19F878AD2F90167CF8A03B9520DA6B0F00DD5FEC83983A1A82A7B034D1EC124AA56ABB507D1AF330FF8281F1D1014D1D2173C26E0770896D94C4759DAD1BC3E98DD2044C78CAEB0D3AC0D479DE3CB41E53414BCD19E33263B841C066D9E142838EE48DD33EA07F141C727DF6FB7507282C7415968CC6F33201E6F307DA6B0D4C1469D0CD456A298909EF3E0FF0D4050188483C176B7B52C3DEF6444747DB6C64911CCE112461B8A025D04DF87205F10ED8EEBB6AE02606A67DB41DBB7DF8E0BCB8643C15FA6A8203007099ACBF31754EF29DB93F602F600DF8388D382885D07C356132868CCD70B3BD9340BF8900F1A575F5A2AC0D4E4E4757B92A56FBD6E46DA4118EC96B656A1DBB935EDA48F64E7208D687734059237144C09E81CC8D174D4684F9B0BF2093FECBEF53BE281082DDA0F598E7A6E206DB41C1B2CCC550CDFE56948B6E7F294A006CD256B35C169D6B977B389F0D2AA54A15E2E41A5B004F3C85896964ADCF1E0E9724B30F418CC0DF6AE1284E9FC8D460BE61617A0542841A954826AB50CE54A4535EBB66C5EBA809AB7E8F8BB6EB9FDFA1480CAAF45CC8846201ADE6BA896926549970A8C8E660BEFB3FEA04C112825A823E9EF06A33874C4385A620E93BEA4D74456E3212490401D30D0F30CA2C076130CA709BE4D0DB03417AB061E0AD3AE96A038370BE55295854E5EABF05DD14BB1120EF1F1CC33CFC008FEF6ED13A7543B498765D29456EAF564EC37540F93B722139E5F588477DE3D06854281A7A692C009D32442179D37857436DF9D8752A5C48B7A109427ACE83527662CF700E1D7544BB80E03B61E9837C4B291A7968E11747B71C4D9ACE140C26F81496D6D2440D9024117E6365153284C7475A0B9528D2A885615FC065A4AA50C85E949383E37B76AE70029CBB22C9E074C33F8559D47EDA97B83E7089B26E337B39DAB288176B4B6C3860D1BB9D0168BC578DA695FFF206F1B36DE046F1CF89E1A13E09846033272D928F8A9D3E7E0F889133CF0AF4AF726971F525D5D90402A4B2D89A562898F91CE64B93F88023B3DBFFEF1001075BAE9208DAD2ECEC0C68513E809B6B6C8064F05F55080E8D70028D0CAC20CCCCFA23556AA1F69502237A72E3DEEC3214578167826790909DE0B15B09A128209D884F75D5D399E0579F6DC59E8CA75C333BFF1CF209BEBD60A12E19064A958844C57375B3F7981E72D5700052EAAA6D2EFE8F85403CA647308457528978B6C1CB49C01CDA0A7A9B55417A2CF8786863FC8800CE8DE2065EA23274FA2EA4F86AE4CC2085B173FA647A0082A1578A6CB8AB068AFBDC0D04AA0D9ECB9EE1C0C0C0EA96D6008FA718B2712A1D08450039873B3D3B0303F07C5A5058C050B50585A82AEEE5E5D90D39D1DAE6B755EC7F0F0B05262570FF4A00263B1889AF44DEB6B18EC319C4DD3C21D9D63C21F8886628659A7A9FEED40A84B1242253D1FB7F0D5B23116CF40CC6433DC264213A37368A9B427EBCE2204D04683DF420B3910360D134E8E8F216E2FF2424B34BF97961888C5533CA15A35000B9EFD1204605F130EC773969536B76FD904EBD67E918F59AFD5970DC257F1F5FCE2222C209CD204F166A3C683F8743D77EDDE035BB66EEF84563DE97F39CF5531A0296BA4D130130EE827514EDBFE60BC96334E659D0ABB2D16A6C5EB3A4454F9566FD497196C24C86C36CBD380BA50B0C9548A5BD5DBB8DF16B0D07043784B565C2E1561A958800A6E4B852263701C856DE0790D9D0FC41319DE77065CDF502366BE08F618846DCF5AB96C0115A24AE52A4FEE5E5A42812F2EF14C196250B444818DD66FB391AA64AF82ACAB88DF09D6E4C2EFA979F09C9B0ABDEA8192369F2C99B46BF4B2676043BBA8063E2F1390E2CE342D50AB8DBF96160A0749C30A17D0A0B518967FC7D40174F9EB4EE15A1DDFE1A2190D7AA3C512463B764BDAAD966CB56CD1B29B46B3D1120D7C9F6A38923BC49462950728C6452BB148DD37A3AAA310EED5FDA9802B340516467BEFF9DEB23E9212C6B8EF1FF82142D78C6250F8BB2C7A61040D0AAF0D12F1187B2419EADCEC0C4FE43030C98BC663E131F0FA693D3A2A3EB9C1A6BBAD7D56C0B3CF3EEB9CBB3C7DF2D4B98BBBB87420759F6860055225639ED71EA054838FBAA5D1D4DDC23E7509DBCAEA542F11A70C26F7A153A3033A3FBE87FB70F8402F8481EF1B462C1E37D0FAC5A69B36C34D5B36BFF1A5A79EF80DFC561A375A6A2C1789C4D6F50FADBF33DBD37F4B2693DB8A82CF1A3CCD55AA796ABEB14C98EDBD9AEDC97528F21E1D7097EFF5F8B1E72D0BC2E3E393BC08079E5B19181A0809DE43AE4FCB12249065D15206755DD44B0FD244BE2C6CDFBE233C46BD5E4BF12A30485F78E12B253537F4007A64E370C7E38F3E78EBE5F323831F0EB43DAF55AB970D23B258589A593878F0204D7FF53A31F0F9175F6FF4F5F5C52627A761726A0AB76998A6656D908EF6F6E431E00DE236046BD60C43573A55A409EDD4AFAD2FBAE438ADC2E4D885CBB8BD8AAFFB7BFA863ED1DB3FBC3D9BEBDD9C48A68654AE27F48C1AB10C5A3ABDE06ADEB0B21C4DC840F982EAC2548649F947A63B83C8918606E6296BD6AE652E194128A5A50D380877F474B61A75B2FE9CB65D476F0C34A102A8430E77EFDC68F0EC58A38D9E26B5EBC52389C4B047D36CA0237BD6D3636B18CCBABAB2BAFD5B15C5C6C6C71EE95FBBE5757C5D4645CEF99E37856460DA6E96675B8DE60CFAE0E4D2FCF42C6E47688C249ECCAE1B1C5E7F53777E6063BAAB6B23DA6A349C9DB39A37048A58E10D2BCBD1046F34E8DEDBD7CBC24D22B4104C36D0E22B980324115DC2CEB8559685C00CBD8C4460AEA3A170D92236D647C158443050808E449A4E2673B74512C97BCD48EC3EBCADAD1884F2889F164D83E20111CD5882801D89581D9550350EBC76DDBA786F3EBF8926C4F1624988FB14F412A91C2433861F89C64A781BE7EA95A5EF351A9531CF69CC4E5C397B01B76E0CBEBD7DFD6BD7F60FAE5997C9E53722F3E9F2C30E26D51E438AE7F9C9FE0A6F58A1801D5B37C186B543E0B84E472B6203E3636B555920255D2C169646AAE5D289B1B18B478E1D3978861AE9702B6B4FB68311D91B5680163C459BAE54B6F7E17832F32FF1C6EE90D2652A477368C982321974D7549AADBB93D150F08DA1DBA688F158962E6FA87A50A1506252D0282F40238A297EDD628641335B78C6A963E7F0C99E443ABB6760FDB6D96675FE3FD8766D01858C69BC8FB4DAAF1A46AB6C88C65C772EDBD79DEFEBCB20874D2413C985D90531363A0941573137E49A6A91116F0504A9513683E7B0AD92ABC872B93487F9C5E5A9A9F10BE3972E9E5858981BD302A7ADAAB7BAC6FF96861FB98C057D48E193E1F4F40E6FF9795F7AFFD1755A19778555A4D219162E6DB1741E5E3BF0869ACAA3932C72D93866969E8CF3730A76E552010E1D3A8410340911D1E239BAAE8794D58DF0F233A9740A5908E505B8652917C8D24A2503DD3DDDFFBA379F9B8FC6E35D5DE9745732998CD1440BE2E91B8686F83C24CCF363135C3CDB76F316E7F4F1B3627A6ACEE2BA8D54ACE06A2362980B38D3D3533363572E8F5FBC74E1F29913C747EAF52A2A1D8ADAC2ABAB08BDA985EE42D81DD9CE05AE6BE1D6956B6FD26F3098A6CD44FE779019FC56BD5214017D0DE02D9648423A99623E9FC02D89CF73BD43E130A2CF537B5439992C3B994EB0A21271CC091231CE382D642609621AC904A45319D4761E3D260231F42A12287910B7AFA33287FAFBD8C366E71790A5D8EC692514744F4F0FE3F5CCDC3CDC71CB2E5602BDDEB679339C1E1981370F1FA91D3978188943391389C6BBF33DD9C567BEF42B79C2F5A5C542FDE2C50B33E7CE9D9D3A71FCD8D8C9E3EF8EBBAEDBD0C22EAE62E9352DF8A6861AB7633D11B95A22B6AA0248E0FBF7EF17A74E9D12F33B778A7DF8DED4D49428140A62707050CC5896F1EE2BDF425CEF7D3E99CAEE9D9FBE8CF8ECE81E224541A9F0454955FF401FE47BFB78D1BC356BD661F6994621C799C2911063286C0A6E69DC682E2E2983B2CAFE7C37B54C4212BF77EADC79B869FD3AA8205B22CA79EAEC59D872D34D2C64BA7AAA47EDDCBE9513BA732317E19E3BEFE099ED93D3D398285560C7B6ADA8987978F3D0DB98D5AEE1364552C85A645D540D9D42A5BD77ECD8E281575EB9E0D45A72F3E6F5F2ED83072750F0F3A8D496162809BAD461E9950EA1D7B4B5DB7AF3829EB4CEA46B55E35EF9D997BFFC6503056FC537C423A69B8F48C7319181200C1A065E0C82B6346F5ABB21974C746D1C1F1B7F0893BC5FCC74E7865389B849C24AA512BCB44BAE2BC30AA04BA0F7030A1047215DBC320ABB766C47AB4EB2058F4F4EC1952B5720DFA35AFCE268F16751E8B7EEDCC9E55EBAC205CC423F79CFDDFCF9D4CC2CCC20F7BEF3F6DBF83509F7DCF9116E98ADD4AA707EE4320C0DF6B1412C15CB70D3C675ACE489A919B8EF9EDDACB8D367CF410ACFB371FD7AA862E6FCD67BC7600C29F1C4E8E8F4F75E7CE1D0E963C7AEB8B65DB43D6F5120134386565D013157B3767F356BBFA602C8F29F7AEAA9C8CEDDBBFBF7ECD9F3CB880EEB10E9872C33D2876CA5172F3C6F984637265331AEA55B56B86E0EADA678FED225D8B9750B7463A6481E50444B9E40BE7FE6EC19181E1A0E4BCD3C551485D0D3D30DDD9845123D3C73EE1C3C78DF7DE1B59C457868D61B70FBAD6A86C9F98B17E1E4A9D3B061DD3AC670EAB8A6FECF743A0D63984FDC76F30ECE2508D2DE39761CEEDFBB87CB1DF45DF298ED5BB640B15486B7DF7B0FBD2B0F3584211A96CCE2EF9BC8B486FAFA60137AD9281AC33BA7CFF867CF9C79E7A5FFF317FF7B6C7474B455AF2F61A65BC4EBAFE0BED3DA036C97D763EDD75400593F424D3CD9DFFFE8C30FEEFBE3FEBEBE5EC2DB6E0C74315A933316634C2E964AF0F22BAFC2AE9D37C3FCC2024FD9A72C9196EE3D7FFE3CDF08E179177A0015F9CEA0B5EDBBFF53EDC40431FAB51FBC0E9F7DE4336D815FB8001313933CD9AD52ADA9192B78CC7854951A6829CB7B77DF051914182DABF0E6DB6FC3DEDDBBF58C461FDE3A7214065088F4BC542EC3BBA7CEC07AF488A55211366ED8C01047FC7F6E6E0EF6DDF7496E4B3C78F8087AE20E34982EF4CA2B3081C227E341AB8702C2DAE8D4547DF4E2A56FBCF4E20B7F5A2995E69183968AC562636969C95E2178F8B0EB6CBF4F017881493395F985E1756BFFF0A1071EECA2C623B218C2579E89426B25E34DD71A4D486152B2158359678C7E0915F3E9071FD0AB4AA9C7C8A5CBBC96F2D0E010CC215C90554651919E4D2BCF2659A1FDBDBDB069C37A561A5DD28F9009ED4581D379E9B1542CC2E9336719766667E7F8F5B1D3A761786090832D617B2A9964581B4345EEFBE4BD7C5D542238F2EE31F8E49EBB3968CF2F2EC12B3FF801EC4408A4E588CF63CCB879FB3684CC2CAFF7B9889FDF73C7EDFC5BBACE83C74EC0C5D12B97E7A667BF72F2EC91578C925D2EE6724DC44CF7C08103DE8D2E70BEAA07447AB28FC5A3C97F7FDFBD9FDC8C41172A4B4BF0D003CB67FB11E3F8F36FFE253CFD8B9F674CA57AF82C95655198870E1F85CD376DE46E36CC4AF0667730DE663359848C141C3A7A141EB8F7DE65AB147EE76552DCFDAC5CF210C2FC97BEFF2AB29B01A8D5EB0C3554048BA15750061B43CFDAB97D07737412F221F48007D1B229BF200FF9EEABAFA160B772C9B8582E73AC214BA732028D6F1023A2075DEFE8D838DCAE5F136D3DF0E65B303430C009D75A844EF2EEE3E72E50507F656A7AE22BF35353679A8651EF76DDD6F0F0B0F7DC73CFC98F44011C03F6EF8FA4E6E67A3069F9CFE954EAB19F7BF2C9CCEB08175F78EA17A141429EA5DA4D8D932562374514701683AEA7C75BEFB8ED568E07C1E3CDB70F2324AD47EB1F68570751C0FFF7DB2F32BECF23032101D17CDA5ABD06194CD86889E23D6885E40D649984CB54E2BDFD96F68CC3D3E72F7060DF72D326643473308F464285B301A4A364C99467902593572C160A1CE86FDFB5537537E37DBC7BFC04B2A021FE8CBEDF6CB4B88634DCDFCFC724D398C0D842B368366FDCA860F2E22578FBF8497B6E61E1BF4F8E9FFB4F8562633E6F59F57C3EEF7C5825BC8F053DFDF4D36666D3A664C477EE6BD6E49F3EF6C8C3FDEB31F08D8D5E41ABDD0B39B4C26864F576ECEF22FCEC434F8969D8A0B49D18CA0B2FBD049BD629B6810912C7079A2294443ABA84C2DF82D0D38B3017F6DF8F8DC1185AE5839FEA08CA1746600403F1107A24597C0D03348628E8425A4B7161E4F265D87BD75DEC8DF4189B9CE4AE855B6EBE996B4C57C6C7E108321DC27852320DF4F4A0478CA3903763CC0ACE3F8BF4940C62FB96CDAAB480F7701495B561CD1A9844E3BB88F056423A4CB5A9F9C2E23F9E3F7BF6F5F3C3C3B503FBF77F28387A9F0288C93FF5E52F47625353790C823B3EFDF0C3FF6DDB96ADDB0E63D0FBE2D34FB1F03A1FE4EED3D3D35CD96CE0C59E4341D13A6974D8354383A830CC58D1434848EF9D3C05776BABEC4CEA5E7EED00EC41E151418E8E378334F32CC60D6A31A1E1C606CDE745BCDE8DF84F1E41D0A53CC0478EBF4DCFD4F1E187070F31B6131C4EA3572C2186D3048D1C9EBF1F95456BC59D46BADA954E322B0A1E9750E1550CBAB722A90826E0BDF6E69BBCD0F71C42521DEF8B171F54D3443996583C9FA2F5BFDE7EEBED7F519D99293DFFFCF3CE47A2804E2F70AAD5B54343039F7BF4E1CFFC5E3C96801FBEFE034E6A88A5D072BD29BC115A5399A0A20B2D8AF60447744C0AC68F23CBE90CD084BDDFFACE77E189C71E61AC9E468B9A42E5D1A07401836A9ED66346B67219ADFFC94797FFF6F0BBEF21CBE985F55CFA558F77D03269A891981991823866DFC49AFAD09A07F1BB144F567B501E720585FED0A73EC5149888C17BA7CF22D35A44389228709B575F0F6A966A6A936065D21FAEA8371B6710B2DE9A9C98F8F3E985854B69CC11BEF6B5AFB91F9902022FA05880016FDB430F3EF047DBB7EED8C565037467C26EC3B8FA62741438BF7FE007F0B9C71E65EF98989AE4AC348F18DB6AD479D83197ED2286010FECDDBBEC78648107D1E33EFB994F2FA3AEDF79E5FB9CC851E188063FC81B7A50697DE8719D5E75B50719C1E4F40CBC8B8C6A01638DC7E3CF6A19FC60489605AE5ADD7DC7B6676BB5FA854AB57272767AE6E862B93C86322B220415D369BF606786AB1821EC8F2C062CF3824C26292D6B4D7EB0FF91CF3EFAF81F60501698A2C33FF98D5F5FA5EEEDC124063A12343530C510DF6989471A41A2090DD43A72FCE44978ECD30F2FFB1D8DA5BE7A007382CF3C1C5A3C61FC29CC1DCE22CC50264C9935254C44557BF158E465D7FB202A49B4741AAD9CC68B2B084FB1585C2F51D95E534877567ACD6663B28E022F964BC7A767E68EE2B5CC1AAE5B4580AF7A42D48D98D7888954AB4C8B0DF5F7DB70EA9487F0233F923CE07D5EF0F4D311ABABAB3B128D6EBDFFFEFBFF60E78E4FDC39363A06E9789483290DA4509244B51DB2402A25F4A23552ABC86A0F6215F477B9F6DCBD3B7C8F18D5050CA0EF62F64A9931353BD11F5AC863904EE331CF5EBA0877EDDCC5B1E45A0FA2C6D3183F2610D6E690C616285872DE120F3376B51AA65E5ED39776A3DE1843F675AE542E1D9B1A9F7C0F1911FD9995AA19F1ABBE43CBB9194D3316B3FD52C9A97475B9982D7AF33B77CA7D78BAFDCF3DE75F7B6DDC0FA980C00B906A2412420CF776773FF4D8A38FFD57F40A318F4CE153F7ECE6C0FA411EC4825E3FF816D45030341043C2A6C0685826AC41FAB80E99C6CA073506BCF8F2CBF0194CEED22B08004D171D45763385B16409194F0DA924D59182B90E6AE9601976FC4ACFABE3E34AAD5E3DB3B8B4740C93ABE3AE942584A1AA490B7AF97E236959CD3AF2E49C100E7ED7ADD56A321038C28C1F0CA67F54ED37575540501B8AE7F33964445BEFBB77EFEFEDFAC4CEBD73A880C17C3766A53FBEF994CA0157464799D65550F0094D3DEBC868766DDB8250D213E23ED1C4EF7DFF350EDAAB3D286FF8E60BDF6616449042CC84A8203545A4B411F87ADD3A29831E7F49B940098578A95AAE9C592A14DE99989A3A6B1A46C537BC8A74453D8290820A6899F1B8ED5996632E2C7898797B854241EEDCB9D3270B878F58E01F480141767CB15A4D78B63D9C4FA7EFFFDC639FFDE3AE4CD63874E820FCD35FFB35C66D6A5CBD84CC0213142E19D39846370A7BD3867548F9320C4D96A5F8F92584305A6F74934E6E3AA1E8F8A953F0C93DF784419732542E29A3022D4CD448110479104E5FA5C6319797B8E7D5DF5BCD8546BD3E522E974F2FCC2F1C5D5C5CBC84AAA81A54BDF4BC9A138D363084B72288DF8D6CC3CDB5722EE62AF2E314F807560079C1B3CF3E6B39B1580ED3F92D7BF7ECF977B7EDBAE5415AFEFDFCB973980D23E5C3B43D45357DC46CCA4469C0E35564404FFFC2E7573DE6811FBD8949D39DCB620579CCC177DE855A995621F1D8BA89295119A07355426E27572DE57EBD5E9B41B675A15AAD9C98C5808989D724C1898101535856CD779CA68316EE229275E3361E8B79EB3A05BE7FFF0D15D23E1605747A01DEF1503A9DBEF7EF3FFEF89FE4BABACD85C505D8B777CFAA41F73CA6ED535353CBAAA0C183BCE42FFEDF0BB01593A1256AFB46588A9202D3E9F00FE69095AB85F2A8F71FF7AEE3A262276AB5EA79CC544F4C4ECDBCD3ACD5E67C8414B26E20815B76D37022B667188E8D90821AF47622169D3A75CAFF4911F8875240E005954CA62BDE6C6EBEF3EEDDFFE68E5DB73D4A1967AD5484C71F7D64D5E6DA575E7F03366F580F83FD037019F93E255EC5729517CDA3C25AF817293483A1FE4B123AED6DC76E217E8F61C03E5B2A158F8D4F4EBFE73ACE12C189637AB548C050104EF018CB184ADF4FB0C03F94023A2BA5AE690E9AD9EC3D3FFFD863FF2397EB891C39FC36FCA32FFCF2322F181B9F400E7F1E621878698C9652F79E7C0FE702E15FA0A0BF2186984EEB95F29FFD68356BD57AFD3232A5B34B4B8577F15C270DCF2B11860B14B834A1EE806C093B623BC85052C85028609E1F3EEFEF837D7F2D0CE5274A0181173423912C4A72F3EE3BEEF89D3B6FBDFDEF5176FCD68F7EC463B434964B2D8B3409828270382DD5578B6053714EFD9D159B28641131FC62B95A39535C2ABE33393373CE94B28281B58A3CB2469430F237CC507EA214D0E9058D68742019B3EE7AE2F127BF91EFC947FD157FC2837BFB0946A863CC561BC2C97CBD410CA57A727E7EFE9DC2E2E215DF9015CF51023762B261BA11BB8A90126F2043C9AD6428FBD574B2BF657F7FF7032920F0022F95CA48DBDE78DB6DB7FDD6ADB7DCFA4BD4864E819217B66BD192BF4D89029FC60CF342A9543931333777B45A2A4DFBC2AB182252F5855D37FD68A38118646096996AB55C62287BF279EFD44F117E7FEC0A08BCE00A4054CECCE46389C4963DF7DCFDFBA6690D62E0ACA0C02F164BE513D35313EF359BCE5CC0C125263C3F8D0CE52752013A3B36E21B36C445B54A19720FE236A7A3424A9B841DC5CDF3FDD6B5188AFFB3FA07ED6F44019D4A48A552915A341A4BE8EE5A2312F16AB6ED860CE53C32947D3FBD0CE527560181123ABBE7E8BDD0BAFF9630948FE3F1FF0146BEE5E725E73D2E0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (182,1,'Zabbix_server_2D_(128)',decode('89504E470D0A1A0A0000000D49484452000000800000001108060000001504A42D0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000B0E4944415468DEE55A6B6C53E7197E8F7D7C8BED90BB7331491C020D0C04084447800C1085B13229A0894AACAB54F8B349ED9F76FD59555AD17EF447ABFE98B4492D2B5AD1DA21AA16414307E57EDD1A5AC6252426019290C4899DBB93F816EF7D3EFB38C7C6C74E224D6CDA271DCE393EEF777B9FE7BD7D418A46A32449D20A22CAA3785BB366CD8FB8FDA1C6660B9BC2619A4F93743A2958516188CCB3FFFF72D3E974D1A9A9A9E07FC35A3A3A3A745D5D5DF2DDBB773F1A1B1BF3198D4632180CC07C627474F47D8965DEE7EB35BE0CA99DAB8C263A140C90631E134FC9063AF49B5FD33F9B6FA652237E8FC65FF93DAA7A1612525A51AD77219FF22D180C925EAF9F99554A5E455499334D4BFD26A574CEF45D66E56EDDB8892E5FFFFE99833FD0DF4BADF76ED1F47444BC9B4C26CACDCD25BBDD4E369B8D0607079B64FE7DA702BECBE522ABD54A77EEDC111D3C3A89BE65C6EC636596BCFB2E4906C3AC260E3E7840BD9F1CA6D1911172392BA8B0B0901E3F7E0CCB981700B391956599162E5C9878BF71E3066D58DF409D9D9D14662F940AE29CBC5996BE151515949393239E2F5EBE2CEE8AD29F651BF20D24AD63C3860D622FC002C6C1583F070258F0112035363652737373A2035CC57024027322C96CCE4A00DBF6ED24979450477D7DA2FFB1A347E9C08103624228C9E7F3A5ED8BF9972E5D4AD7AF5F1780A56B353535545E5E4EF7EFDF172C069B1F3D7A44656565C4EE8C8687870589E1E69EF4F4888D7A3C1E5AB76E1DB10BD45C37BEF7B07C777777DAEF168B056191262626E8DEBD7BB46CD932315E5D5D1D0D0C0C88B931675E5E1E935C2F48F8A4AB9D644B8EDA9FA5F182B14729ED67299D7452A7B4B48CF70D4DF829140EA68626E2D04E939393C4214AD80F083089A78686066A6969116E42B12800188877F6BCF55666F077ECA0FCFDFBE9F1CE9D146C6B832F14EE106384422171C1BB68816B6682A12D58B040534671E9006AF9F2E514617202E4152B56505151910043AD07000330B0278C9BA9819C5A320017E320ACF4F5F5D1DAB56BA9BDBD9D56AF5E2D48A952A8B030ACABC851464E576D1C2849859B1ABCF4CF2693999CE5A5622C8036C4C4F60D0EC5C8243DED9540D017366FA2B1B17111013BBB9FD0F933A769D0E74DDA07307DF8F021555757531B3062EC418029C595E28245A90910CCE07E13E0B1229C9F7F4E4F5E7D9526AE5C99F1203C868981E5E44310000BC573DAB0110C2636E3F7FBD3CA608CB9B86D1000771000E4D10A25000FF3AA4394BA8190D3D3D3B39C97620460422EA9AD49022ADDB3A4B276E5399F89585C5C28D61C980A50A0AC947A3DFD2AC720259EF164301A28C2EB2B7594D0542040BEA1618EF1D6A435633E800E63811EB0275E671004F8235F2FF10F5B20E876BBD14B6750AC3792399619AAAAA8EAE4491A78E71D1A3D762C9971DCDFC8D7D5AB57A9B2B252904A0B44FC0EC561D35A320A31E0F2311680733A9DD4DFDF2FC006891256CC1BE6BD0860312694A1E55960C1E8978960980B9E00F11E24C6BC580FBC0ED65DC2A14F3173C4DD5247311360510254296DD22AA50555D6CB3C9741009563B65090D765B7DB9292DD544FA297F5718FA1A79AAA85F45D8E25890020378743FFAA55ABAC18973DD9710E991FC8FCF227EED810573E7A34B1725F540810CE40007D7E3E553535D1C8679F91EFC30F9FFA0E907217E491C56C6246170B052BAE524BC95887960C368831B02EB860A5C1AD29ED0127A04B962CA11C06DEC96061E3001E572010D0F43E5096D677450663E18E3C006B402EA234E41F88AF1847E6F0D7DA729FDC6D6ED20CD3DA3E84E6D1E9A9CFC26BA9B083EE787F17F8FE535EA38EC9CCBC9F3C2F2B02503CFF18158941DCFD0B0268588DC46EB5F2CB2F29C01543DF9B6F6A2ECCC8406004F7A3C7E29252337CD573CFB7673366FC02601E435502A49604FC4F2FB5B4B69189F38D4084F9CCD75727BF4E9929F9B5BBB78FB205BA2E9649BFEA99D7AE9E5E76C726A137D9687BA615806CC4D623491E80C15FC246AE838E957027AB19C38918B2AC9F29E08308E174993FB3A9E2F0618C4ADDAFBCF23410AA16989CA045AE1A61D5D1E8F49CA89C5A7E652BC7D4711C565A535925AC3A560AFDE7E64502AB24A8ED1D0F05897D033DA4DD6D1E25698A8E753C5F5E81836C561399395C2CEE6C23EB74889A5CCF93B7B28E6C9E4EDEF7D9A43D70E5549B1A62933C008418F444FCC7154993FC38DE7B8FCC2B57D243AE2BA3195CBA88DBE3E35CBA95D1AD5BB744998758ADD51C0E078D8C8C688600C4E07C0E3B00756868483CA3AC44C2857171B88172122562F377CD5C962DA0D6D65691F8C0456B35F4471EA0957C42699081E2906FE059991FF9002A88D2D25271F7C473028A86E9A5BD7B393770D01D2E1975AC5B948F1E4F1FDDBCF93D6DDFB19D421C4EBE3A7E2291184BAA132BB5274C47C0F1F1783E545A423273FE173FB45179D04F27EAF792FB855F91F3EAF1A433001806F01489A52AD4C93C7821DF7395044C392AD44A020B5E7F9DF25E7E993AD6AFA7C8E06056E2222602248C0B0B45D9A6D55632A90014949BAEA1CE86A2518A418E131ABA74E912EDDBB74F8083F88CDF418050282812347831BCABF384D40662A2B4D49A5701186383C83813B876ED1AEDD9B347FC3ECE2407012187E42C76BCAE232B13D2E9ACA05E5E2FD6876728DF6AB3938389110E8744F2E9F74F50EA91A594B07A29CDD18194D52B4503534F2581C057A986F8BD9A89BC0D1EE0B77CED420880904200250F10E5617CFEDCDDBBC971F0203DDABA9542F172315B33724C8455637C00082BD5F4166C81B06028548B4C1A67EFA2D4C39AD5568379B17E2839D3BC38E0292828C0D1A8A64C244D328C793127EE336E351AB75E8989EAE1DFC35C5AE3E44D664F708F49E9A501AF8F4B32B7D0C920976C5BB6FC84F2F3F2E95F77EE929DCB3797AB9A7A39E770BBDB69E3C6F5A2143C73F602AF21AC224432017E57534F7A294AE60757E8C71F5FA4902F483D294920C05774545555F53C27D2DBF136AE6C101FA148B50790F837F0B3982DBEE2C8110A339B8BDF7E3B33FBD812DDFB7E192F0563870F209672D8A3D5E08633C92899BAE2A9607590078038C9C31E6085B0786C1856ADC467E5404AABFA003933FE6D836500B4397EAE81F94154AFD72B3C0F08243C005BBE5209D4D6D6D296CD9BE958F40B8A8423B46777235DBE728586474669078700F46B6975535DDD73B4A1BE9E42E15885B3BBB191CE9D3FCFDF43F4F35D2F0A0FFAC3ADDBD4EF1D54011ACB7546792C8341471F54DCA04AC338352C5D4CFF78CD4D25BF2FA7E8B968027C8C0B6CB107AC0F7726EA54E22008CA83E2B66DDB26EAE7D82664CE268DE4E701CAB8EEF5BCF1C6ECF21555E580493D6C5938B655AC46CB92953094A941069B010038D8C0A916123EA5011C1C174306A0297365729990C9E6522183B58128C82B70AE819253ED4562248A26CAC58F3EFE843E3DF257E1E2D1FF9BD36738EE87688C89D3C663A0C103A0A43DF4E7BF247290935F7F23FA63CCBBBC377894A1A1E194C43446008F7744DCF7D3A698C7E5EA78E3895A1A1A1CA03EEA4EEC9D2D5E9C9E0263E431F1134B3F087023560484658084F88A09150F6063ABCCE7F7D1A347E75887C4AA07B3D546D5358B621B6B3A95B18B67C09B7558CF858B59654EFDFD3459B80C743011C4BCA7B2CCEB9DC5BCB39161AB0D8545394D450E67E277AB7DC6AB19D8831498ED333955914525679A099D66135FF65885C9DCCC2F2C9D93FAEDB9F98C9F51E442E23899F31B84381807C8C8EFC3FCFE3729FEFF010E32F8BBD865D93871F273B2662E2929596C3699A2857979E15A976BCE7FD4C7FF0730DAED16265694FECF9A9E158E539667BD8EDBB76FCBEC2579393A1D5BFD39C67A9C71C6E11F47D2C0171E8FE7D37F03AC928066A5577C080000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (183,1,'Zabbix_server_2D_(64)',decode('89504E470D0A1A0A0000000D4948445200000040000000090806000000823E2A7A0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000004714944415448C7A5564B6F1B5514FE663CF1D84EE247C68FD8CE3BCEAB20FE410A124282055291C20A894DC5AEEAAE2B965D7449575D54A4ADCA6351D125484845025510014D1044564A42541287384E1CC7EFF17B38E78EC70F5A36E971AE73E7CCBDE79EF39DEF9C6B09C07B345E77B95CEE37E617573EA8E8F83F492C2D299B6EEF40AF4E923BB3EEB724F5EDB31E9B8D2660883F538C56DF3AC37AD3B7C69C05029A512C940FF192F2E497356D6B6BEBB1C7E3A90E0D0D7DC7AEEDC562B18952A98493E363DC256FDFBE7103D240374ED9E1406D6F0F77BEFE063F8E8FC166B35150DD20555545B55A255F0D31F8BDA22862DE6AB5C4FB114D433C1E87CFEBED736880CEE175CD66B30D9684C1C141618FE76C27180CE2D95E82C621012E9D3BF8622E8BBFB6E3989E9EC6C4C40432994C42611F161616B0B9B90987D38933723875ED5A377B144CF8F66D64EFDD833D348A542A8599991930609644A3511C1C1C748270921D62140861A4D3698C8D8D091DEF8D4622C8E5729DBD6EB71BB55A0DBAAE7700989F9F17F62A950A666767855DC63B3C1EC5883F20D6584C93DAC34E408E8E8650AFD7707C9CEEBCB3C9325E7B7509D95C019FDF596D93CA10A0921F4D06E02165E90A1DA86B9AE66CD0A1BD12BC7E1D67B76EA1914CC21E8EE2F4F41473737322CB9670B6386B16288D464304CC6B39B83D620F239ECFE745F09C756686B596C12A97CB1D7BACE3E039F0DDDD5D905F6851B984463404FD3EB3D0A43600FCA1B942FEB814190D898018F1B4EBCE7C572D1561D4ABE4B3C91E4AC41981E323FF1E32004F68B448F10F391D6BB4B3C8E2BB7C19FAC606F4F575F1AC90B560388283E451A7B0F93B5B283E47B77436DB65117D8E4F331827100A65CAB4D4ED33D96211FF25F5AF7466EFDED4491A5E2A9D677F1F8A715ED1F59A59D2B29CA77F5E2AAFA74A9B1232D5698CB3D6AA998B5C172FC21608E06C75B5CF88D3A142F3F9886AF58E8E1A8AC8A0A56376844221A1B37A003FFFB4B6865030D0A13BCBF0F0B06050AD7D2ED336426552246098AA76BB1DE17018F1A77F221AF25249CC8875C9A323BC72E1021E3CF84AB0E545222B764C8E87F1F11FDFE2FD8F3E85FEE527424F36270904B357D1F35BAC640A0B00C8393B3509CFCA0A9257AF3E673443B40E53300E6A8CBD41B0A3BD8E70FDF333D39E7B06CF935446DC03787DEFDEDEF2B1002D140A62CFD4D49428096689934A85078BC3E1824AC98851397ABC1E51026962D9E4C438BEFFE131016FA04EB7CE00F9F528320DF7D1235474B3F7706365A0E9EC7718802156705D0B3610F2EE4B9704C5476FDEEC8FFEB32F84335C9B9C5DA37D4559DD9A9DB684B3C8996660B6B7B7E1F7FB45A6AD7D560FE03983D9BB97ED339BD8EECECE0E5D8101A1CFE70BD4B9B3D40F0C5A5FC429CD25C94667A890E93E661F540725914C73F0B26CA39E43E7693264E7EFA437415E5C5C34D7AA6A83817D777979F93E39270DAAEAD09B25BD1C6CB61A2FA2D4C9C29CFA9B24A9E4FCB9EEA2268167539473D56FC0EF6F55F47AE2657E03A45247EAC6FACF7E02344137536B7F7FFFC37F01620C060E2E1A38D80000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (184,1,'Zabbix_server_2D_(96)',decode('89504E470D0A1A0A0000000D49484452000000600000000D080600000056F26BBC0000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A0000076D4944415458C3D558594C5C5518FEEE3030C02C6C1D9642A12DD0AA5DA818DA9AB656EAD2D43ED9C468627C3146637CB0F5C1178D894B7CF2C987AAF1C5E88389515FAA36EE0BB515DB22A552EAD0420728200303CC0CCCC2CC5CFFEF30779CE56231B10F9E7098CB9DB3FCE7FBBE7F3968003648BF47BA261DFBF6DD75B4C566ABBFC362D1B1CAE66FDBEE08689A86FF592B2828D092BA1E8A86A38B37739F6432815FBBBB9D7EFFCCF4D0D0D057A5A5A590AE0B6427085AB7F49D56AB9506211A8DA2489EDFD375DCEE70C05251F18F8B276666F0EE3DF7A127300F5B51D10D4CD1337EAFAEF9FE9C82BBA626FDB796F7B072BBD190A5441275B50D181D9BBCA9444F5CF762F08FDFD5F3DAB56B61B3D9505C5C0C5DD7FBADF2AE915F1C39720457AE5C414F4F0FAC02A42799C4BE830751FEF8E3A68B1636354193858677ED4242C60666FD58B3660D9C4E2782C160DEF8FAFA7A8C8F8F73D3ACF70E21B9ACAC0C939393282F2FC7E2E2222806BE6B6868C089CF3E43A9AD087373736A6D0A24CB8EC242548848A6A6A6F2F62C93F578D8191149494909E8A449B1B5AEAE0ED5D5D5F8F9975F3036368A29DFF4BF43344305DA8D9897E38642812C1CB66FDF8EEE6EEA1E2E1210E641979696D2838A8480683C8EF98F3E523DB75985C5A69327312AA4C57D3E148AE74C4F4FAB835555552910CD08201099FBB01198F5EBD72BF2B76EDD8ADEDE5EECDDBB5791B84C9606AFD7AB94E372B9E0F7FB73C3889ACFB5731B092591B48D6E4F623996642E83A3C362B160EBED7728D0146E9A01AA86E5A09AFDD92076582C9A5A6B52BC33228230A2AFF179CBA61654C8BE14C7773FFE84EF4E7E9EB689FB85422165979C314C02BCD29B4419168FC7A30E44D5C475F3406111C5367EFA29268F1E457460605985620CBD6061614181C4C3E6362AB7B2B2D2D43BD2E12C91509F048C20353636CA410B303931A58825A09148245F7072701E28975CAA3D776D7A0A01E05ABA80EA7094A2BD6D5B168066C01B9FF5223212A00990B5D56EC464CFF4BC148B76397F6D4DB53AEBAD9B5AF1ED177FDB41A16DDCB811F1783C1C08047EB38ACA3A455D2101BE540CF3882237D30396C403F20E2AE4347CF821FCC78F63E1FBEFFF0E030292DD6E17771EC3EEDDBB9507E5457F2194C4E6861012CE46EF191919C90A27B3B3B32AAF10581E86EBFED3DAB97500FFA65219E6B86F41CA53D9E6E7E7557CB0CABBFE0BBD39F3CC72C832B87D596FB4FCC893FAE574395524084BD733842018F78A1D6DB1586C617878F811ABA10EBA060522075104C473D4C456FBE69B889C3F8FB9F7DFCF0E4916F19A52BB5AE3E4D7DF64A5592DE5D2970707536FB5B4FB1BADAFFF529602D3EDEA1022E145D44A888C49C2FCA1EB543E4A5C5B549593E76F18973DB2B6B3CC851ABBEBA627E1CC6022181513273D950C1501E20EAA2493BECF5059228780AAE79E834592E0C433CF986EE254B1BC09E170D8207375F96C85EA95E18A5ED575EA14DA2469F924D750CDFFA6DA351B4BDB988F9689EFC7C4F81896228B2A6CF8C43BDC6EB70A511C5722958A6F6675093A290271555463DD5A375CC1591C1CEEC5CB079EC64C5D3312177E4DDB2367BA85E730C2A3E1013A37A41B1B3D9300D7830FC279F830BC870EAD68C0D0F09084915A75808B172FE67DBF73E74E480D9C0E0169E284D43D7BF6E0F4E9D3E8E8E8C0B973E7D0DADAAAF2890A57229401C9352484A1C86CFE8E1D3BD0D5D595B7E7B66DDB5448BB74E992AAD08C904732B9079F23E1281E7EF8211CE8BC1BC7DF7A074F3DF984AC754A12A815EDEDED78E5D5D7D5F8EC68A3E53DC562513135898AF232D86341DC191C47D45D0F7F4B1B6CA9FC438C8D729F4D7265A35558794B1EECFC82C0A73D20156B4B0438F78B2FE2DABDF7428FC55624807318F35851B1D23053DEBA75EB543C365329E7B26A20F0048B80D39BB82E730193EC860D1B4CE7D353CCF6E45C2A8D1ECECE33D206A3106010E0FCC1C12B424418DE91517CF9D5D7181D1D93B185B2EF9C901EC7E1070E614C4A68AE5729849E3FFF1B76EDEAC0B56B5E0C5CF6A868A85912E99C302FE3DE68EE4085E773144F7C83E194DA8901C1679762C5DDD2D2F20A3D202E1EA0D138AA975F2AC3494673331A4F9C802E4A5C9F917433DBECDB6F03C10521AF187D7D7D4A5966958A51DF9B7D4765B32E672949E0AF5FBFAEC6116CDAC2E4CECA8AD5C34AF309742C472024936BD04B8C3C472F64F8E545482503F961854502073C834A40D1680C0532B649EE3A956B06D0DCD2ACAA1E566424D0EB1DC126A96E486AFFC01F6A0D15528409DFB41FB76112F7D78FE0DBF605F8368790FC60D903787EAEC94FDA223D44CA5E10D05F3B76EC185886B212A1411B03013C7BF6ECAAE2DF278F3E868FFB2FAA1BB41143732F5C3C303735BB2350DD042B9E5379D1D05929470B340B1C5255104C8E33ABF7A96AA3D4CCF400DE33962B9EEC46AF09C89CDA1ADE84C7FF93646B2B2E35CD3B3D67BB100A065489BE7FFF7E6CD9B20567CE9CE1C5F4258E6E95FE6E6767E716B98D2E8AD2AACA1D0E5B8BCD16692EB14756B3F1C2E6D6F26022F9BFFB5F1009D6F9BFA048347433F7E9EBBB60BF7AF56A89DC1FE6C55B7F174F7609D697E5AEF3FC5FD16E43B3BBFA54DB0000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (185,1,'Zabbix_server_3D_(128)',decode('89504E470D0A1A0A0000000D49484452000000800000001B0806000000B49F874B0000000473424954080808087C086488000000097048597300000DD700000DD70142289B780000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A00000C784944415468DEED5A696C54D7153E6F566F83376C63076C0642C0E01065231092B0440AA22C6D54552849DB1F49831A55517F24AA9AFEEF8F44CA8F546A7E343FA2A296464A5115829DB0C440EA382840C00B310662C7C666BCEF9ED59EE9F7DD9937BCD99D146220B9F2D57BF3DE9D7BCF3DE73BDF39E78EB5502824F3DD344D2BC66507FA2EF46DE80EB9F3DA18FA11F45AF48FA1F7815B41286DBE0060B7DB570583C1DD11A36F4037DF88796F0540CF454CF4D390B5D66C36D7050281B3A17912FC7B0300BCDC929797F738AEBB2246BF7B5E347F6B02A41F72D5413775369BEDC8F0F0F0C41D0180C2C2C20278FAF688C1792DB81D3C759E650BA037100CB3B3B3B54343436DB71500EE4683E0CACB31373DDE72A751F9F72C5B27D9C16432D54297C73B3B3BBDB71400209479CD9A351B10CF756AAFFE81D3F9CD94CB8DB9EBC90E168BA5B6B5B5B57B5E00F0D8638F397C3EDF367C975EFE133C5AF8A3A7CE8B6CADE8CC1D6AF3F3F31B8F1F3F3E73D300B071E3C62A2670A0221A7D331ED97E34C22D255BB4CC043B7CF4E9A79F0EFE5F0080B1B5A79E7A6A5D84D669F4B53F1AE2B6912B887E86CC80D05C0B66F83255999914007BF7EEDD999D9D7D20180CD9BEAB80600A41D98782F7B6A8CB6FB475647272F296386C40422E1EB73BD0D5D5F5EC891327CE185E7B60FB7E0D37BF40FF1DCF66F437393939658829CE7B3C3EF9632828DF258D0F586DF2DFBD2FCAE5AEAE1F9CFDAB972F93F3CDEDF32EC7F4D4A49C3DF3B94C4E8C933166AC566B108EAD1C13E5B91BED6FB4EDEF19E2F9050C10C40FC10BD5876D3669028276A25B2B2BE9D6735B19E3275D7DD2D3DB2B975B5B25CF9167241D439889476CEC032D81AF24FD7BC393DE9E1E29AF288F3E8B5F2BFE81669C4D4B0887A9C71AC6F3D2D7DF2FAB9639657C626ADE01D071E5A28C8F8DEA1F2DCB962D538C80B0200E87C3065B6F27002AF54D3EF3CC33D203C5D5D7D78B0E882EB31964E191E5CDCD62CECF9FD3C27DAFBE2A936FFD45CC6693F87C5ED9BC79933436364A5555D50DD9182A10999999218A251008880D4065C8713A9D642F75BF6FDF3EA95EB54A9A21776565E50D8BBBD3D3D34A2F5424D7A732CBCBCBA5B8B8583DAF3B7C588DED77752741DDF71B00BC1E77CC13CA79DF7DF7C961C8487B434F0E02C0C3978F3EFAA852A629E2E51CC00DF90201F5F9624141FA989F9B2BCE8606F19C3D2BC36FBE09BC59C58A7EF5EA55F57EE1C28532303020DDDDC94B571A69EBD6ADB27FFF7EF1FBFD49C7AC5BB74E56AF5E2D8865B20AC625951D3B764C7D8F8CD5D1D1C1832805822918AA170C4423151616CAD1A34753CABE67CF1EF9EAABAFA4A5A525E97B844379FAE9A7656A6A4AADBD73E74E79EFBDF7D495CF3C7090BEBE3E59B2648998C003048535CB2EC51595D70942D3A2D7846709F7D057519102196D303939253EE84467A2F025F67E6DCD6A19181C9402C83A383422EDAD4D32D8DF17B30FEA823A59BB76AD5CB97285F379A200282D2D95E1E16105026338980906E792F1C962186E7674545C2FBD147D6CC11C595959CA389C97C65BB06041D229B81EDBC30F3F2CE3E3E349C770AE648D73B2D3D0FA3C54D6C4C48432C6A2458BA4A6A6262DA32C5FBE3C6D664D6324938720E43B32926E3C7E2E80C3AC4028E067CD102334496DC4C89F14611F958B2BC4E3F52A279A00007AAE5D0B071F034AF4FBDCEC1CA95AB2589C554BB017BF2C7038C4D5F535F61EBB1F82956C495DD1D1B15F2F01C0603502A18BA8B4D3A74F470DC2EE4FB2F1F856F6FAEB62874776AC5F2FA10880C27358D482636363CAAB531950258DF81E15C731A900E0F5263F0565C64D2F24C330CE9101A81BAECBA4C78C30C6BD040CB2C5CF5B9081E192AD4DE08C8C8CA8B5A950C5009A49EDA3B8A858562C772618EBFABDCE08897986232F574AC098D41965CFC3E76CEACE906B1819C58CB5CBCB4A19D7959C3D76177490ADC06FCC632E5CB8209B366D52CFE1EC5FC3313B098027D0F703C17B38080F87705D48EFA7D2A2C84ED10A5F78410A9F7F5E3A1E79443180B15918060080F7DF7F5FD6031C5A8698C8B5B8E174EF75B622DDF333632FE95BDF2C430CC383BE61EE8354CD79530120D3BAFA181A99DED3805057565626AD4870F575F9FD92929228034C8C8D48C7A58B49F79C98DC6A316F4D34AE29FC8CF764A6A8376BC9925F914B6DAD0049B6F8B147026778A01FDF0BC694E5B06D37E4ACE47CD0C50597CBF5730B3E0429248586B2A8E17FE3FA5B9D01D2012077F36659F4D65BD2BD6387F81153929D0568115A37C310E79B9A1268D6A8A02FC03E21C3218716A73252E2674826F99E5D8B182D6090710861ACF1F353887759B27EC306357FE3A95331DE10DFBA90A77423F94D37A61520538993255C145B99801AD87116327C79FEBC8C8E8C2AD6F1228D696E99C752D04406988DB10574760E7B588C7D46CB398B11E15672B6C816DDF82A07B0243F05B0AD58214B0E1C10D7CB2FCBF4C99329E5282A2D133F90E8F7FAC0A33E754892785C9170897DA7432114FF3694C2A742620705BAB91EEB618F37E1384A8B9FDA38572876D690164A2A7232D7CECE7328655BAD3699EF161F0260D3C7C10026A3135A8C494EA40258A91B9F3D1849AA8CCD8C24A5EAD021197DE71D197BF7DDB44258E1A59B1EDF24972F5F8EF1FE84DA3A4D7898EB5826728CFF6C070F1E94279F7C523A3B3B63A8FF66ACCBF2564F6EEB3E0E9781AE9EAF952CD4A59E3F30BF0944283A1755530806727B3CDFD9B865154E292AC811BBCD22BB5A1BA438E0953F6FF8A55C58B7434ADABF9060637D0C0360CD225E29831EF22CF1314E37BECE02B371B4A8E1193DDF8BF8D7FFDA6B1905ED8201AE2EAD52091A6B500221556329CAD8CE922A596392C3399824D2B02B57AE9473E7CEC9FDF7DFAFCA1B761A82F199F75C8B95CD030F3CA0F281548DE5E53564D93C0349D648E90F3EF8A03224CF155851F05A5D5D2D8328BD282FF55784D28D18A17198FCBEF89B17E4DE7B6B503A9E54CFB66CD9ACF2862F4E9F91E79E7B56DC2855F7EDFB87F4AA0C7F4E3FDD1832FAF051734141BE58CC2659E919910AFFB484721C32EAAC91DC9E2B0A6046F0D2BE34BCB1CCB6E0C523B82ED613210AAE1B5FE500715540F9DB6F8B094AEE46622573F8A1C46AB3AA728CDE4F0FA092D2359655A9C6E85504B36E3DC32760081CD6FFDCC3D0D0504219C8FA37DDBA1C4B8F4C35863AA1FC9C9F40A6677FF3CD37F2D0430FA9330202830744FA5C3AF50E4296B68B1701D80955315C6C6F9731DC0F0DA34EC7BD4ABAF15DCD64CE68F0C457B1A7B25DF67C719BC0D65EB7385C1D621D71C584001A9F8E4D1B732FD843754545C55E32007FCFDFA887002ACB18024C4C68A87CF4E2575E91BCEDDBA5031E1374BBE7845956012CD3A83C1A305DA2454552D9A9C67832D025156A89E42CBCE7BAFA9ED2ADCB79D38DA15CE9BECFB5744AD522593B8DAAEB916E62C3FC4AB65018C8DC67C01F60CE2F3FDBBD534A4A4BA4A9A94581FA9E7B5628066B6BBB245BB73C01F9BCF2C1877531FB8F0F4747973AC5AEC186D367C5D9D220724D129240CA184906C9922B50152CA3B6DC7A08A08014CC1802080062BB64F76E59F4C61BAAD45B5A5F9FD1F0AD35F746CF1348C5F41A2A39552DCFC603A34C63E8491CC3BA9D1ECE92908AA1C268243288EE3D0C13FA3900019EAA0CE4BA9C2FDDBA7CC77978A24960F14AAF6708D0CB512303984D6625CBD2AAA5E2BAD6A74EF278CF839AECEC1C295F542E4118620118C40146E5BBAB577B95819622A7E0DCB9B93972D7E2BBC4E3F6A8B9BC3E7FC2EF1123A83AEC60D9578A2E49B9C52DBFBABB4A2EFFBA4B8AFE5A2AC183C1A84CD403C3A3CE005C0772AA93C0693D09249D6DDBB64DD153A42A103394ED669908C377EDD8F1AD931596635C9C14AB9FA7CFA6385CA28138365DE9C9779C830661FDCF4D35A1BCD41B0F66080ABBDD86B9B262EAFB54F3EA072EE9D6A56C3ABB309FA041DADAAEFFBF264392025F24D63274FE7DDF3FF19DF0F903A3E5E12347B1F7A0FADCDE7E290A683A08C7F9FD61801EAAAD435939ABCADBA6E6165576F87CB1C7E366735896B10982D62B7F9075E117DD28BBEB9D323E362CBDD2190500F3A2356BD6281B338C45F634C9594E500E6CDECE0D3011D27F602100ECF0B262C6D3CF3EFB963F0787AB0796450C032A33C7C6D2B501C4C64CED931327338EA93B7C44B2C038F434B60F3E3C94767CFFE0909C6B6ACE30A621E3BA478E7D2241188B7A2B2EA9B89E44A6F94E8EE187D2ECDCB98D9B4B73380AE004D9004EF89472140ECCCEDF5CC850B81F4232FD2FF50F2140C89F40D13F4519E580074D010879404C35A83644AA733A9DDFFABF3A883A7CDF343387A3E43BAD51E1F0EC50E65CFEE636324B84A53484CB7330787BC4B167C1A0FF418574E07FBF14493B4AEB31620000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (186,1,'Zabbix_server_3D_(64)',decode('89504E470D0A1A0A0000000D49484452000000400000000D080600000019AF686C0000000473424954080808087C0864880000000970485973000006EC000006EC011E7538350000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000005034944415448C7BD564B6F135714FEE6618F1D13BF13A7499C383606F1508822405D145880845A8490BA824D77DDB22842EAA61BC40F615BB56CCAA2295D54828656904A84145854A8A94AEC90A71DC793C48F997EE7C6766340D024851B1DCDCCF5BDE79EF39DEF3B379AEBBAD8E9D0346D848F4F68E7681FD274BC9F91A7FD401BA3FDC81C96769CC37600E8E9E909D46AB533DC738EC94BE27DDB396C3760BFC19743BBCFEF31C330C61617171FF0DDF9DF00D8CB619AE639499A9F2769D62E827DA7A371CE128B73DB719C31AFD77BFBC99327F96D0170F8F0616F6767E7493A5155E6EFFBDE61B0EFC3D7A4B043D7F5B16AB53A3E3131516D038016A20DA6D3E9EE8F8E1DBF11D4F46EBAF4B49C6F59ACEFD903B7C3BFCB6077A855FE954AA5ED9CF41A1FA82E2D1716EF8DDFFDC2B6ED6228147A2C008CF9FDFEB3A4398C4A15DF562BD87BFA3460186D9B1DDBC6CD62093F25FBB1B1B1211DF0ED87371E96CF82C7E345B15884691AADD0B4B7242CC3C3B87C7EBF9A995F2CED0AFCF2EA2A7E9FBC8F60B013B1580C64C52FD2B5474F9C3881783C8E759EF9D4B2E03041777DBD65A18B17618442CAC96C6E06B148183E8FD9B203FBB2E8B0BCADEFAE681499540A07F6EFC307896E0CF6F763F8D0412CCDCF211E89C02749D12C5AB2B757CD598DEF0E9E7F6C741489AE38BA6251A48752C866D270DC3A4AE515549D1AAA7CAFA28E1AADAE39A8EB2E5C5343381E41281A56EF62307518968943C307914A0FA2509847A5B28128E31B1E1E8665592993394DD03ECEE7F3E8E8E840B552817DE74E0BB5CEF3E7618F8FA374EB167CA34761DBAB10B6ECA11CB66A509CAE132C19F23BFB8720ACAC394AAC80B0873DA6A55B59170C06DB74CC0646021A6D6B88004E9D3A89E4C0C0E677635E19FF8459D16804F57A9D891637D7689B3C8AC76358636C93BF3D50FB72B95C7D6464C42897CBF70480AF19E4596EFC8300ECAF6E09C47FFC387C478E60FEFA75F56DD0616730848542011B8D6445D44BA4B6C3837945B60213DAAE95ED7F7DF13B1289619573C595924A4ECC309755B21591551328AE11BACA783E938397ACF0B338530F1F91C2532FC9477BB396B6AC2DAF969BF1FDC5C71081FECE6C20AE3388FDC2807A23096F26A3A83F7BE54A9B339FE899097AFC9BCD506385BD1E8F4ADE61427AA33A9270C0E75349F23A42381C61135BE15A5384DDDAEBE15EA99ACC37F74A1C3EEF661F96DE11A14472B32FE0B73CE8EDED51F3CB85650C0E2471E7EEBD16F02F0FD3B4D0DF97C0674F7FC6979F7E05FB79AEC9D0B4802E26911C958A05020115B4E8DF603F885FBD8AFCE5CBAFB46DE9C4FD7D7D207D5A731220BB6A6B4E1C2793492C2C2C609595CC66B38AFA85E5650C707EEBDE307B4B85B26B7678914C8AFD637A7A5A2596A1FE05A0D9B97974F5C431941A62137510980BB03F6430FDE7DF64879F67EA58A2FFBEDE3E4C3E9A52C0D76AAE2AD84C20086F79066EB55DA204FAB400909480F9FF8E3ADC595B43E4D225B80CAAFBDAB57648BFB9C9442A4AEBE2A4A951DEAF0ABC660F68CA40129075CF9E3D535D778DBE2579A9BAE8BCB9D747A60880CD21FB9A3D448090BD72A5D8B2DF2E93A5753E6DA5EB3075DFDDD5453669649A8F79643039F5987E2BF46160A564C31D20BB22DFC3758ACABF14446260CC21E1DC05DE02371888C6CE1C3CB3B6E124EA75F73512C25C36AB3DD475CD85FB5F2EEE57464501E7D9D1152620D46A4EFDAD82DF6CCADACB31C8EBDC8B593CB8FFAB9E4824F264E83A0BF3F93FCFA63E489E26E2D60000000049454E44AE426082','hex')); INSERT INTO images (imageid,imagetype,name,image) VALUES (187,1,'Zabbix_server_3D_(96)',decode('89504E470D0A1A0A0000000D4948445200000060000000140806000000722B38EF0000000473424954080808087C086488000000097048597300000A6100000A6101FCCC4A250000001974455874536F667477617265007777772E696E6B73636170652E6F72679BEE3C1A000008844944415458C3D5585B4C5CD715DD7798E131C0C0F0306060C2CBD8AE05D85679D4B24B8D1CAB6DE234921BCB4AD54AA9FC998FC41FF988A57C58CD67F31545AD1255FDB4A25441AA63BBB65B3F63D3E014830D041BCC6BC002CC63188631F3CC5A8799611E174213E3D847DADCE1DE7BCED97BAFB51FE76AC160503672689AF6022E2F430E417E01499167770420ED903390B3905BC10D7690F6A4D787C30D6969694DB8BE8CB5E9F89AF5CEDD68327C8F310939075BCEBADDEE7F41BFD9671280DCDC5C4B5252D2C110CB7F0DC9FBB13CB68120FA216D004345C7D4D4D4ED27111DDF1B80AD5BB756F87CBE43A1F4D20C313D238E7A5A203E24108C0EC885818101C7860270E4C891A4BEBEBE3DA1D442C76F7F4E1CF534F6F441BEC4B3330683E16C5757D79D2702C0FEFDFBB33D1ECF2FE974FCFB2B48CE73ECA4A739ECE1429E929272F1D2A54B0BEB06E0E8D1A3755EAFF755A497838140A001B78CDFB51BF23F8BEF73E950D8A864A3F6C43A5EF8A7CD6834FE1B60B49E3A75AA330600C84F210742BFA5B1B1E984CD1F483F6058BF4327F6FC4CB50BCFDB48369A2408E73B175C1BBA0FC82CED5FB5896BC1E51E1E1E3A93919121E9E9E9ACE1E7E8E5DB90BAD4D454494E4E96F9F979015AF23730A02137578C9B37AFB9B87774543EFE79B374CC3BC4643289DFEF97FF873C41D17F99BA30AAC6C7C7A5183A783D1E09A885B5C8CC1596C5AEB866CE65B790BC7C1471B917A5BC6C8B0C8F8C6F280063A3833270BF47FD2E2B2B53B685B2C6374C2F05281C72F8F061E9E9E9918E8E0EF5421F98D15C5F2F96D75ED35D34B5A64634BC37B8772F8CD264E2E143B1D96C9203D0D0A2E9754DD2DFDFAF008A1ED6EC6C292A2A12BBDD2E9B366D929999194500EAC0F54E03001F9C4F2F6798CDE272B912802A292991070F1E24EC59585828641BF501E3D4DE148BC522C5C5C572EDC60D191A1A94C94733B10845C12C5A2C7C6BDF5F99AC45A532D7C27CE44DDAB873E74E696B6B63EA4B27008B34606161410844D8288FD72BCE2FBE5092C0CEAA2AB17DFEB90CBFF492F81D60BE31499C4EA7626C361C3A3B9B785EA1D138A0C9E3C78F63EED3D979797972F7EE5DD9B66D9B72E45E804A47733D1AF210E09696964A6666A62C2D2DC51FFCA4A0A04046464674A38873868787C50CF0685F7575B58AF2E5B90644AD417635342C3B5193C8558BF262B8BEF16A2B2956D7B4B45419B58F8B1BF62C4FD322D7EACA72E587B49414B978F9AA5CF8676B4C6D999B9B53CFA7A7A7DD04A007489450DFDEDE5E151A2816E25B258F24E5E448E9A79FCAD81B6F883764B429C9287EE6528040475BADD6C4530C98979F9FAF808E1E4C5BE162B8B8B8B81CB263634AC92A004D7D080041C2812F2182A29985E641776DCEC14956FD3F8A94491DA8271D996E4E935DB535BACED703A1203F6F991800D39A95255E9F6F85FB2110CC58B3A478B3CCC31FDBB754CAF9E04A91BF7FFFBEB20BBABA1C0EC77F8DECE9118E7330D40407DC0653769139E18563D886FBA59F7D2693274F8AFBD6AD1516C349593088E9231C457A00D099AB751B4C09939393CAD10492EF12043A8DFAB090ADB636C1D3EBC2B827E712B8F00847168C17F6192693516EDDBC915828127EEADE4C7827364569D0DB1B53A39001DA6047230070830C7F502D26FE09868C73536165701C9B38367FF289384F9F16676B6BC233634AAA2AA8A7CF9D8B5524A44C775F9FCAE39A8EF65DDDDD2130E2CCC59F2584B83517A0B816E5D295AB116BA38DEAE9BBA7EB9BE01A85B817732CD66CD95450B2E1453810A52CFC9C87B4AB853F6318434C0982711A644F040016BEA891FFDE7B12007BA63FF8407713736A8A545556AA1CBF1A5357F978A77B3F07A98E05F4F2E5CB525B5B2B8F1E3D8A74463F646DEAC69AC7F175C76D19B78F8821E0152BF61B1C1C92F2F23215C98C400BEAC703DC5BDF79C22F9959F952662B14B363567EDBFF959C38F0A6D82B774AA0F358441F64982AEA10034038BC99FBC312880220EBF5D7C5DCD42423870EADAAC0080A5D11BA0EE6F93B77124FE20D28742CB07464F46077B26FDF3EB972E50ACE208D72F3E64DA9ABAB53A982B99A7A723DE67882AB377FF7EEDD72EDDAB5843D77ECD8A180ECECEC54859AA98AC598AD2D8BB101CD83CFE393577FF38ABCF8E201F9E8A3BFC8B1637F94EBD7BF54003434D4CBC93FBD2F13139331F1A547018F67496500A6E264B7536A17A7C497952773B6ED9216AA5BF4319B0E0AEC322035FEC40854FE0AA5ACBC193E0B50FC10C56C7424B96FBF2D432D2D125CA500AA8E03A0B188B2D361AFABC73C763264B5EE7902298FFBB3CBA1D3D825B070920C6C2399C7CBCBCB75E71304BD3D6907010C314E3190B5863546E904571AD009F5F70FC81208670730E72F5C44A1B62B2739D02DF97C417905C4B3DBC7543DCACFCB95F6AF3BA4A9B15E454C774FEF3228067F24E25CC926F97375BD9887CFCB36C77F6430B0020081A5C08E3CE8F20E23C0CD62C50DC992B0E2010251512136E4FB209C53D1DEAEEBB8990F3F149975C051A98AA9ECF7E37B750E1A4D03F49E79603C19CE224C47B3A524DBD9429AA00719CBDF74F26AF309A0272E6D723F763B048DCF6938BB10824160355461FECE462D28467B999D6D556787E5D6525307C0AC2C0B5256319A12AF02ABD4562AF700D80BB85297AE3BDD9182CFB676727A5AB60426E460C1985CDDE196A99A7909FC3D1069B96943F8D30DF67611B27771E3FDE3C78F4B1F0A258D576C4397F05654A7B3D6F8C7EF7E2FADDFF4A86E281F8E6424C47F4BA1C16400591D3FE8DCC7B81FDF79A94E08670A3FEE5B2C59EABDD5E6D319F1DF7468302332CCF8E8A1EE2FBAA4501561FB1329B629A966DDBAF3BFF6EBB2E0742832343737ABD4C8548BF6FA04DFDE02F9B8A5A5653B98B608638AAC9999A6325372A0323DC3BF9E8DDD5515C9CE1FE103E40FFDFC47804194C0D292C71FBF6630BA25FBEECDB5B55EEAE9EE36DCBBD7A7A1E5F5A0AE5DAFACACB420ADF6A2CD7EE75B1EBAEF8F483150520000000049454E44AE426082','hex')); START TRANSACTION; INSERT INTO role (roleid,name,type,readonly) VALUES ('1','User role','1','0'), ('2','Admin role','2','0'), ('3','Super admin role','3','1'), ('4','Guest role','1','0'); INSERT INTO ugset (ugsetid,hash) VALUES ('1','b21d61561974b06cbeb97a71ca880e92f0fc06d49ac3246280afb88dfa6050a6'); INSERT INTO users (userid,username,name,surname,passwd,url,autologin,autologout,refresh,rows_per_page,roleid) VALUES ('1','Admin','Zabbix','Administrator','$2y$10$92nDno4n0Zm7Ej7Jfsz8WukBfgSS/U0QkIuu8WkJPihXBb2A1UrEK','','1','0','30s','50','3'), ('2','guest','','','$2y$10$89otZrRNmde97rIyzclecuk6LwKAsHN0BcvoOKGjbT.BwMBfm7G06','','0','15m','30s','50','4'); INSERT INTO hstgrp (groupid,name,flags,uuid,type) VALUES ('1','Templates','0','7df96b18c230490a9a0a9e2307226338','1'), ('2','Linux servers','0','dc579cd7a1a34222933f24f52a68bcd8','0'), ('4','Zabbix servers','0','6f6799aa69e844b4b3918f779f2abf08','0'), ('5','Discovered hosts','0','f2481361f99448eea617b7b1d4765566','0'), ('6','Virtual machines','0','137f19e6e2dc4219b33553b812627bc2','0'), ('7','Hypervisors','0','1b837a3c078647049a0c00c61b4d57b5','0'), ('9','Templates/Network devices','0','36bff6c29af64692839d077febfc7079','1'), ('10','Templates/Operating systems','0','846977d1dfed4968bc5f8bdb363285bc','1'), ('11','Templates/Server hardware','0','e960332b3f6c46a1956486d4f3f99fce','1'), ('12','Templates/Applications','0','a571c0d144b14fd4a87a9d9b2aa9fcd6','1'), ('13','Templates/Databases','0','748ad4d098d447d492bb935c907f652f','1'), ('14','Templates/Virtualization','0','02e4df4f20b848e79267641790f241da','1'), ('15','Templates/Telephony','0','1d12408342854fd5a4436dd6d5d1bd4a','1'), ('16','Templates/SAN','0','7c2cb727f85b492d88cd56e17127c64d','1'), ('17','Templates/Video surveillance','0','d37f71c7e3f7469bab645852a69a2018','1'), ('18','Templates/Power','0','3dcd5bbe90534f9e8eb5c2d53756af63','1'), ('19','Applications','0','a571c0d144b14fd4a87a9d9b2aa9fcd6','0'), ('20','Databases','0','748ad4d098d447d492bb935c907f652f','0'), ('21','Templates/Cloud','0','c2c162144c2d4c5491c8801193af4945','1'); INSERT INTO drules (druleid,proxyid,name,iprange,delay,status,concurrency_max) VALUES ('2',NULL,'Local network','192.168.0.1-254','1h','1','0'); INSERT INTO dchecks (dcheckid,druleid,type,key_,snmp_community,ports,snmpv3_securityname,snmpv3_securitylevel,snmpv3_authpassphrase,snmpv3_privpassphrase,uniq,snmpv3_authprotocol,snmpv3_privprotocol,snmpv3_contextname,host_source,name_source,allow_redirect) VALUES ('2','2','9','system.uname','','10050','','0','','','0','0','0','','1','0','0'); INSERT INTO media_type (mediatypeid,type,name,smtp_server,smtp_helo,smtp_email,exec_path,gsm_modem,username,passwd,smtp_port,smtp_security,smtp_verify_peer,smtp_verify_host,smtp_authentication,maxsessions,maxattempts,attempt_interval,message_format,script,timeout,process_tags,show_event_menu,event_menu_url,event_menu_name,description,provider) VALUES ('1','0','Email','mail.example.com','example.com','zabbix@example.com','','','','','25','0','0','0','0','1','3','10s','0','','30s','0','0','','','','0'), ('3','2','SMS','','','','','/dev/ttyS0','','','25','0','0','0','0','1','3','10s','1','','30s','0','0','','','','0'), ('4','0','Email (HTML)','mail.example.com','example.com','zabbix@example.com','','','','','25','0','0','0','0','1','3','10s','1','','30s','0','0','','','','0'), ('34','0','Gmail','smtp.gmail.com','example.com','zabbix@example.com','','','','','587','1','0','0','1','1','3','10s','1','','30s','0','0','','','','1'), ('35','0','Gmail relay','smtp-relay.gmail.com','example.com','zabbix@example.com','','','','','587','1','0','0','0','1','3','10s','1','','30s','0','0','','','','2'), ('36','0','Office365','smtp.office365.com','example.com','zabbix@example.com','','','','','587','1','0','0','1','1','3','10s','1','','30s','0','0','','','','3'), ('37','0','Office365 relay','example-com.mail.protection.outlook.com','example.com','zabbix@example.com','','','','','25','1','0','0','0','1','3','10s','1','','30s','0','0','','','','4'), ('38','4','Brevis.one','','','','','','','','25','0','0','0','0','1','3','10s','1',E'var BrevisOne = { params: [], addParam: function (name, value) { BrevisOne.params.push(name + ''='' + encodeURIComponent(value)); }, setProxy: function (HTTPProxy) { BrevisOne.HTTPProxy = HTTPProxy; }, setPayload: function (params) { var parts = params.send_to.split('':''), defaultValues = { ring: ''true'', flash: ''true'', telauto: ''false'' }; BrevisOne.addParam(''username'', params.username); BrevisOne.addParam(''password'', params.password); BrevisOne.addParam(''text'', params.text); if (parts.length > 1) { BrevisOne.addParam(''mode'', parts[0]); BrevisOne.addParam(''to'', parts[1]); } else { BrevisOne.addParam(''to'', parts[0]); } Object.keys(defaultValues) .forEach(function (key) { if (params[key] && params[key].trim() && params[key].toLowerCase() === defaultValues[key]) { BrevisOne.addParam(key, defaultValues[key]); } }); }, request: function () { var response, request = new HttpRequest(), data = ''?'' + BrevisOne.params.join(''&''); request.addHeader(''Content-Type: multipart/form-data''); if (typeof BrevisOne.HTTPProxy !== ''undefined'' && BrevisOne.HTTPProxy !== '''') { request.setProxy(BrevisOne.HTTPProxy); } Zabbix.log(4, ''[ BrevisOne Webhook ] Sending request.''); response = request.post(params.endpoint + data); Zabbix.log(4, ''[ BrevisOne Webhook ] Received response with status code '' + request.getStatus() + ''\\n'' + response); if (request.getStatus() < 200 || request.getStatus() >= 300) { var message = ''Request failed with status code '' + request.getStatus(); if (response) { message += '': '' + response; } throw message + ''. Check debug log for more information.''; } } }; try { var params = JSON.parse(value); [''endpoint'', ''password'', ''username'', ''text'', ''send_to''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || !params[field].trim()) { throw ''Required parameter is not set: "'' + field + ''".''; } }); if (params.send_to === ''{ALERT.SENDTO}'') { throw ''Required parameter is not set: "send_to".''; } BrevisOne.setProxy(params.HTTPProxy); BrevisOne.setPayload(params); BrevisOne.request(); return ''OK''; } catch (error) { Zabbix.log(3, ''[ BrevisOne Webhook ] ERROR: '' + error); throw ''Sending failed: '' + error; }','30s','0','0','','','','0'), ('39','4','Discord','','','','','','','','25','0','0','0','0','1','3','10s','1',E'const CLogger = function(serviceName) { this.serviceName = serviceName; this.INFO = 4 this.WARN = 3 this.ERROR = 2 this.log = function(level, msg) { Zabbix.log(level, ''['' + this.serviceName + ''] '' + msg); } } const CWebhook = function(value) { try { params = JSON.parse(value); if ([''0'', ''1'', ''2'', ''3'', ''4''].indexOf(params.event_source) === -1) { throw ''Incorrect "event_source" parameter given: '' + params.event_source + ''.\\nMust be 0-4.''; } if ([''0'', ''3'', ''4''].indexOf(params.event_source) !== -1 && [''0'', ''1''].indexOf(params.event_value) === -1) { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''.\\nMust be 0 or 1.''; } if ([''0'', ''3'', ''4''].indexOf(params.event_source) !== -1) { if (params.event_source === ''1'' && [''0'', ''1'', ''2'', ''3''].indexOf(params.event_value) === -1) { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''.\\nMust be 0-3.''; } if (params.event_source === ''0'' && [''0'', ''1''].indexOf(params.event_update_status) === -1) { throw ''Incorrect "event_update_status" parameter given: '' + params.event_update_status + ''.\\nMust be 0 or 1.''; } if (params.event_source === ''4'') { if ([''0'', ''1'', ''2'', ''3'', ''4'', ''5''].indexOf(params.event_update_nseverity) !== -1 && params.event_update_nseverity != params.event_nseverity) { params.event_nseverity = params.event_update_nseverity; params.event_severity = params.event_update_severity; params.event_update_status = ''1''; } } } this.runCallback = function(name, params) { if (typeof this[name] === ''function'') { return this[name].apply(this, [params]); } } this.handleEvent = function(source, event) { const alert = { source: source, event: event }; return [ this.runCallback(''on'' + source + event, alert), this.runCallback(''on'' + event, alert), this.runCallback(''onEvent'', alert) ]; } this.handleEventless = function(source) { const alert = { source: source, event: null }; return [ this.runCallback(''on'' + source, alert), this.runCallback(''onEvent'', alert) ]; } this.run = function() { var results = []; if (typeof this.httpProxy === ''string'' && this.httpProxy.trim() !== '''') { this.request.setProxy(this.httpProxy); } const types = { ''0'': ''Trigger'', ''1'': ''Discovery'', ''2'': ''Autoreg'', ''3'': ''Internal'', ''4'': ''Service'' }; if ([''0'', ''3'', ''4''].indexOf(this.params.event_source) !== -1) { var event = (this.params.event_update_status === ''1'') ? ''Update'' : ((this.params.event_value === ''1'') ? ''Problem'' : ''Resolve''); results = this.handleEvent(types[this.params.event_source], event); } else if (typeof types[this.params.event_source] !== ''undefined'') { results = this.handleEventless(types[this.params.event_source]); } else { throw ''Unexpected "event_source": '' + this.params.event_source; } for (idx in results) { if (typeof results[idx] !== ''undefined'') { return JSON.stringify(results[idx]); } } } this.httpProxy = params.http_proxy; this.params = params; this.runCallback(''onCheckParams'', {}); } catch (error) { throw ''Webhook processing failed: '' + error; } } const CParamValidator = { isType: function(value, type) { if (type === ''array'') { return Array.isArray(value); } if (type === ''integer'') { return CParamValidator.isInteger(value); } if (type === ''float'') { return CParamValidator.isFloat(value); } return (typeof value === type); }, isInteger: function(value) { if (!CParamValidator.ifMatch(value, /^-?\\d+$/)) { return false; } return !isNaN(parseInt(value)); }, isFloat: function(value) { if (!CParamValidator.ifMatch(value, /^-?\\d+\\.\\d+$/)) { return false; } return !isNaN(parseFloat(value)); }, isDefined: function(value) { return !CParamValidator.isType(value, ''undefined''); }, isEmpty: function(value) { if (!CParamValidator.isType(value, ''string'')) { throw ''Value "'' + value + ''" must be a string to be checked for emptiness.''; } return (value.trim() === ''''); }, isMacroSet: function(value, macro) { if (CParamValidator.isDefined(macro)) { return !(CParamValidator.ifMatch(value, ''^\\{'' + macro + ''\\}$'')) } return !(CParamValidator.ifMatch(value, ''^\\{[$#]{0,1}[A-Z_\\.]+[\\:]{0,1}["]{0,1}.*["]{0,1}\\}$'') || value === ''*UNKNOWN*'') }, withinRange: function(value, min, max) { if (!CParamValidator.isType(value, ''number'')) { throw ''Value "'' + value + ''" must be a number to be checked for range.''; } if (value < ((CParamValidator.isDefined(min)) ? min : value) || value > ((CParamValidator.isDefined(max)) ? max : value)) { return false; } return true; }, inArray: function(value, array) { if (!CParamValidator.isType(array, ''array'')) { throw ''The array must be an array to check the value for existing in it.''; } return (array.indexOf((typeof value === ''string'') ? value.toLowerCase() : value) !== -1); }, ifMatch: function(value, regex) { return (new RegExp(regex)).test(value); }, match: function(value, regex) { if (!CParamValidator.isType(value, ''string'')) { throw ''Value "'' + value + ''" must be a string to be matched with the regular expression.''; } return value.match(new RegExp(regex)); }, checkURL: function(value) { if (CParamValidator.isEmpty(value)) { throw ''URL value "'' + value + ''" must be a non-empty string.''; } if (!CParamValidator.ifMatch(value, ''^(http|https):\\/\\/.+'')) { throw ''URL value "'' + value + ''" must contain a schema.''; } return value.endsWith(''/'') ? value.slice(0, -1) : value; }, check: function(key, rule, params) { if (!CParamValidator.isDefined(rule.type)) { throw ''Mandatory attribute "type" has not been defined for parameter "'' + key + ''".''; } if (!CParamValidator.isDefined(params[key])) { throw ''Checked parameter "'' + key + ''" was not found in the list of input parameters.''; } var value = params[key], error_message = null; switch (rule.type) { case ''string'': if (!CParamValidator.isType(value, ''string'')) { throw ''Value "'' + key + ''" must be a string.''; } if (CParamValidator.isEmpty(value)) { error_message = ''Value "'' + key + ''" must be a non-empty string''; break; } if (CParamValidator.isDefined(rule.len) && value.length < rule.len) { error_message = ''Value "'' + key + ''" must be a string with a length > '' + rule.len; } if (CParamValidator.isDefined(rule.regex) && !CParamValidator.ifMatch(value, rule.regex)) { error_message = ''Value "'' + key + ''" must match the regular expression "'' + rule.regex + ''"''; } if (CParamValidator.isDefined(rule.url) && rule.url === true) { value = CParamValidator.checkURL(value); } break; case ''integer'': if (!CParamValidator.isInteger(value)) { error_message = ''Value "'' + key + ''" must be an integer''; break; } value = parseInt(value); break; case ''float'': if (!CParamValidator.isFloat(value)) { error_message = ''Value "'' + key + ''" must be a floating-point number''; break; } value = parseFloat(value); break; case ''boolean'': if (CParamValidator.inArray(value, [''1'', ''true'', ''yes'', ''on''])) { value = true; } else if (CParamValidator.inArray(value, [''0'', ''false'', ''no'', ''off''])) { value = false; } else { error_message = ''Value "'' + key + ''" must be a boolean-like.''; } break; case ''array'': try { value = JSON.parse(value); } catch (error) { throw ''Value "'' + key + ''" contains invalid JSON.''; } if (!CParamValidator.isType(value, ''array'')) { error_message = ''Value "'' + key + ''" must be an array.''; } if (CParamValidator.isDefined(rule.tags) && rule.tags === true) { value = value.reduce(function(acc, obj) { acc[obj.tag] = obj.value || null; return acc; }, {}); } break; case ''object'': value = JSON.parse(value); if (!CParamValidator.isType(value, ''object'')) { error_message = ''Value "'' + key + ''" must be an object.''; } break; default: throw ''Unexpected attribute type "'' + rule.type + ''" for value "'' + key + ''". Available: '' + [''integer'', ''float'', ''string'', ''boolean'', ''array'', ''object''].join('', ''); } params[key] = value; if (CParamValidator.inArray(rule.type, [''integer'', ''float'']) && error_message === null && (CParamValidator.isDefined(rule.min) || CParamValidator.isDefined(rule.max)) && !CParamValidator.withinRange(value, rule.min, rule.max)) { error_message = ''Value "'' + key + ''" must be a number '' + ((CParamValidator.isDefined(rule.min) && CParamValidator.isDefined(rule.max)) ? (rule.min + ''..'' + rule.max) : ((CParamValidator.isDefined(rule.min)) ? ''>'' + rule.min : ''<'' + rule.max)); } else if (CParamValidator.isDefined(rule.array) && !CParamValidator.inArray(value, rule.array)) { error_message = ''Value "'' + key + ''" must be in the array '' + JSON.stringify(rule.array); } else if (CParamValidator.isDefined(rule.macro) && !CParamValidator.isMacroSet(value.toString(), rule.macro)) { error_message = ''The macro '' + ((CParamValidator.isDefined(rule.macro)) ? ''{'' + rule.macro + ''} '' : '' '') + ''is not set''; } if (error_message !== null) { if (CParamValidator.isDefined(rule.default) && CParamValidator.isType(rule.default, rule.type)) { params[key] = rule.default; } else { Zabbix.log(4, ''Default value for "'' + key + ''" must be a '' + rule.type + ''. Skipped.''); throw ''Incorrect value for variable "'' + key + ''". '' + error_message; } } return this; }, validate: function(rules, params) { if (!CParamValidator.isType(params, ''object'') || CParamValidator.isType(params, ''array'')) { throw ''Incorrect parameters value. The value must be an object.''; } for (var key in rules) { CParamValidator.check(key, rules[key], params); } } } const CHttpRequest = function(logger) { this.request = new HttpRequest(); if (typeof logger !== ''object'' || logger === null) { this.logger = Zabbix; } else { this.logger = logger; } this.clearHeader = function() { this.request.clearHeader(); } this.addHeaders = function(value) { var headers = []; if (typeof value === ''object'' && value !== null) { if (!Array.isArray(value)) { Object.keys(value).forEach(function(key) { headers.push(key + '': '' + value[key]); }); } else { headers = value; } } else if (typeof value === ''string'') { value.split(''\\r\\n'').forEach(function(header) { headers.push(header); }); } for (var idx in headers) { this.request.addHeader(headers[idx]); } } this.setProxy = function(proxy) { this.request.setProxy(proxy); } this.plainRequest = function(method, url, data) { var resp = null; method = method.toLowerCase(); this.logger.log(4, ''Sending '' + method + '' request:'' + JSON.stringify(data)); if ([''get'', ''post'', ''put'', ''patch'', ''delete'', ''trace''].indexOf(method) !== -1) { resp = this.request[method](url, data); } else if ([''connect'', ''head'', ''options''].indexOf(method) !== -1) { resp = this.request[method](url); } else { throw ''Unexpected method. Method '' + method + '' is not supported.''; } this.logger.log(4, ''Response has been received: '' + resp); return resp; } this.jsonRequest = function(method, url, data) { this.addHeaders(''Content-Type: application/json''); var resp = this.plainRequest(method, url, JSON.stringify(data)); try { resp = JSON.parse(resp); } catch (error) { throw ''Failed to parse response: not well-formed JSON was received''; } return resp; } this.getStatus = function() { return this.request.getStatus(); } } const CWebhookHelper = { createProblemURL: function(event_source, zabbix_url, trigger_id, event_id) { if (event_source === ''0'') { return zabbix_url + ''/tr_events.php?triggerid='' + trigger_id + ''&eventid='' + event_id; } else if (event_source === ''4'') { return zabbix_url + ''/zabbix.php?action=service.list''; } return zabbix_url; }, }; var SEVERITY_COLORS = [ ''#97AAB3'', ''#7499FF'', ''#FFC859'', ''#FFA059'', ''#E97659'', ''#E45959'', ''#009900'' ], serviceLogName = ''Discord Webhook'', Logger = new CLogger(serviceLogName), Discord = CWebhook; function stringTruncate(str, len) { return str.length > len ? str.substring(0, len - 3) + ''...'' : str; } Discord.prototype.onCheckParams = function () { CParamValidator.validate({discord_endpoint: {type: ''string'', url: true}, zabbix_url: {type: ''string'', url: true}, alert_message: {type: ''string''}, alert_subject: {type: ''string''}, event_nseverity: {type: ''integer'', default: 1}, user_agent: {type: ''string''}}, this.params); this.params.discord_endpoint = this.params.discord_endpoint.replace(''/api/'', ''/api/v10/'') + ''?wait=True''; if (this.params.event_source === ''3'' && this.params.event_value === ''1'') { this.params.event_nseverity = 4; } if (this.params.event_value === ''0'') { this.params.event_nseverity = 6; } if (this.params.event_source === ''0'') { CParamValidator.validate({event_id: {type: ''integer''}, trigger_id: {type: ''integer''}}, this.params); } this.data = { embeds: [ { color: parseInt(SEVERITY_COLORS[this.params.event_nseverity].replace(''#'', ''''), 16), url: CWebhookHelper.createProblemURL(this.params.event_source, this.params.zabbix_url, this.params.trigger_id, this.params.event_id), title: stringTruncate(this.params.alert_subject, 256), description: stringTruncate(this.params.alert_message, 4096) } ] }; }; Discord.prototype.onEvent = function (alert) { Logger.log(Logger.INFO, ''Source: '' + alert.source + ''; Event: '' + alert.event); this.request.addHeaders({"User-Agent": this.params.user_agent}); const response = this.request.jsonRequest(''POST'', this.params.discord_endpoint, this.data); if (!response.id) { const error_message = CParamValidator.isType(response.message, ''string'') ? response.message : ''Unknown error''; throw error_message + ''. For more details check the Zabbix server log.''; } return ''OK''; }; try { var hook = new Discord(value); hook.request = new CHttpRequest(Logger); return hook.run(); } catch (error) { Logger.log(Logger.WARN, ''notification failed: '' + error); throw ''Sending failed: '' + error; }','30s','0','0','','','This media type integrates your Zabbix installation with your Discord server using the Zabbix webhook feature. Discord configuration: 1. Go to `https://discord.com/app` or open the Discord desktop application. Open your *Server Settings* and head to the *Integrations* tab. 2. Press the *Create Webhook* button to create a new webhook. 3. Click on the webhook that has been created and edit the details if needed. 4. After setting up your Discord webhook press "Save Changes". Now you can copy Discord webhook URL now by pressing "Copy Webhook URL" or you can view it later. Zabbix configuration: 1. Before you can start using Discord webhook, set up the global macro "{$ZABBIX.URL}": - In the Zabbix web interface, go to "Administration" → "Macros" section in the dropdown menu in the top left corner. - Set up the global macro "{$ZABBIX.URL}" which will contain the URL to the Zabbix frontend. The URL should be either an IP address, a fully qualified domain name, or localhost. - Specifying a protocol is mandatory, whereas the port is optional. Depending on the web server configuration you might also need to append "/zabbix" to the end of URL. Good examples: - http://zabbix.com - https://zabbix.lan/zabbix - http://server.zabbix.lan/ - http://localhost - http://127.0.0.1:8080 - Bad examples: - zabbix.com - http://zabbix/ 2. Create a Zabbix user and add media: - If you want to create a new user, go to the "Users" → "Users" section, click the "Create user" button in the top right corner. In the "User" tab, fill in all required fields (marked with red asterisks). - In the "Media" tab, add a new media and select "Discord" type from the drop-down list. The "Send to" field must contain the URL of the Discord webhook created before. - Make sure this user has access to all hosts for which you would like problem notifications to be sent to Discord. 3. Great! You can now start using this media type in actions and receive alerts! You can find the latest version of this media and additional information in the official Zabbix repository: https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/templates/media/discord','0'), ('40','4','Event-Driven Ansible','','','','','','','','25','0','0','0','0','1','3','10s','1',E'var Eda = { params: {}, setParams: function (params) { var required_params = [ ''send_to'', ''event_source'', ''event_value'', ''event_date'', ''event_time''], integer_fields = [ ''event_id'', ''event_nseverity'', ''event_object'', ''event_source'', ''event_value'', ''host_id'', ''trigger_id'']; required_params.forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } }); Eda.params = params; integer_fields.forEach(function (key) { if (typeof Eda.params[key] !== ''undefined'') { if (isNaN(Eda.params[key])) { throw ''Parameter "'' + key + ''" must be integer. Given value: '' + Eda.params[key]; } Eda.params[key] = parseInt(Eda.params[key]); } }); // Check type of event. Possible values: 0 - Trigger if (params.event_source != 0) { throw (''Incorrect "event_source" parameter given: '' + params.event_source + ''\\nOnly trigger-based events are supported''); } // Check trigger update and trigger resolve events if (params.event_source == 0 && params.event_value != 1) { throw (''Incorrect "event_value" parameter given: "'' + params.event_value + ''".\\nOnly trigger-based events of problem are supported''); } // Check endpoint Eda.params.endpoint = (Eda.params.endpoint.startsWith(''/'')) ? Eda.params.endpoint : ''/'' + Eda.params.endpoint; // Prepare groups Eda.params.host_groups = (typeof Eda.params[''host_groups''] !== ''undefined'') ? this.prepareHostgroups(Eda.params.host_groups): [] // Prepare tags Eda.params.event_tags = (typeof Eda.params[''event_tags''] !== ''undefined'') ? this.transformTags(Eda.params.event_tags): {} // Prepare timestamp Eda.params.event_datetime_timestamp = this.getTimestamp( Eda.params.event_date, Eda.params.event_time) }, setProxy: function (HTTPProxy) { Eda.HTTPProxy = HTTPProxy; }, prepareHostgroups: function (hostgroups) { var host_groups = []; hostgroups.split('','').forEach(function (group) { group = group.trim(); if (group.length > 0) { host_groups.push(group); } }); return host_groups; }, getTimestamp: function (date, time) { try { return Date.parse(date.split(''.'').join(''-'') + ''T'' + time + ''.000Z'') / 1000 + new Date().getTimezoneOffset() * 60; } catch (_) {} throw (''Failed to parse event time.''); }, transformTags: function (event_tags) { var tags = {}; if (event_tags) { try { JSON.parse(event_tags).forEach(function (object) { var tag = object[''tag'']; tags[tag] = tags[tag] || []; tags[tag].push(object[''value'']); }); } catch (error) { throw ''Event tags format is invalid.''; } } return tags; }, sendMessage: function () { var response, request = new HttpRequest(); var url = Eda.params[''send_to''] + Eda.params[''endpoint'']; var data = JSON.stringify(Eda.params); Zabbix.log(4, ''[ Event-Driven Ansible webhook ] URL: '' + url + '' data: '' + data); if (typeof Eda.HTTPProxy !== ''undefined'' && Eda.HTTPProxy !== '''') { request.setProxy(Eda.HTTPProxy); } request.addHeader(''Content-Type: application/json''); response = request.post(url, data); Zabbix.log(4, ''[ Event-Driven Ansible webhook ] HTTP code: '' + request.getStatus() + '' response: '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } } }; try { var params = JSON.parse(value); Eda.setParams(params); Eda.setProxy(params.HTTPProxy); Eda.sendMessage(); return true; } catch (error) { Zabbix.log(3, ''[ Event-Driven Ansible webhook ] notification failed: '' + error); throw ''Sending failed: '' + error; }','30s','0','0','','','','0'), ('41','4','Express.ms','','','','','','','','25','0','0','0','0','1','3','10s','1',E'var Express = { params: [], setParams: function (params) { if (typeof params !== ''object'') { return; } Express.params = params; if (typeof Express.params.url === ''string'' && !Express.params.url.endsWith(''/'')) { Express.params.url += ''/''; } }, setProxy: function (HTTPProxy) { Express.HTTPProxy = HTTPProxy; }, request: function (query, data) { var response, url = Express.params.url + query, request = new HttpRequest(); request.addHeader(''Content-Type: application/json''); request.addHeader(''Authorization: Bearer '' + Express.params.token); if (typeof Express.HTTPProxy !== ''undefined'' && Express.HTTPProxy !== '''') { request.setProxy(Express.HTTPProxy); } if (typeof data !== ''undefined'') { data = JSON.stringify(data); } Zabbix.log(4, ''[ Express Webhook ] Sending request: '' + url + ((typeof data === ''string'') ? (''\\n'' + data) : '''')); response = request.post(url, data); Zabbix.log(4, ''[ Express Webhook ] Received response with status code '' + request.getStatus() + ''\\n'' + response); if (response !== null) { try { response = JSON.parse(response); } catch (error) { Zabbix.log(4, ''[ Express Webhook ] Failed to parse response received from Express''); response = {}; } } if (response.status !== ''ok'') { var message = ''Request failed with status code '' + request.getStatus(); if (typeof response.reason !== ''undefined'') { message += '': '' + JSON.stringify(response.reason); } throw message + ''. Check debug log for more information.''; } return response.result; }, postMessage: function (is_problem) { var data, url, result = {tags: {}}, response; if (is_problem) { data = { group_chat_id: Express.params.send_to, notification: { status: ''ok'', body: Express.params.message } }; url = ''api/v4/botx/notifications/direct''; } else { data = { reply: { status: ''ok'', body: Express.params.message } }; url = ''api/v3/botx/events/reply_event''; try { var tags = JSON.parse(Express.params.tags); } catch (error) { throw ''Value of "express_tags" is not JSON. Value: '' + Express.params.tags + ''.''; } tags.forEach(function(tag) { if (tag.tag === ''__zbx_ex_sync_id_'' + Express.params.send_to) { data.source_sync_id = tag.value; } }); if (!data.source_sync_id) { throw ''Cannot update data. sync_id for the provided sender is unknown.''; } } response = Express.request(url, data); if (is_problem && response.sync_id) { result.tags[''__zbx_ex_sync_id_'' + Express.params.send_to] = response.sync_id; return JSON.stringify(result); } else { return ''OK''; } } }; try { var params = JSON.parse(value), express = {}, required_params = [ ''express_url'', ''express_send_to'', ''express_message'', ''express_tags'', ''express_token'', ''event_source'', ''event_value'', ''event_update_status'' ]; Object.keys(params) .forEach(function (key) { if (key.startsWith(''express_'')) { express[key.substring(8)] = params[key]; } if (required_params.indexOf(key) !== -1 && (params[key].trim() === '''' || params[key] === ''{ALERT.SENDTO}'')) { throw ''Parameter "'' + key + ''" can\\''t be empty.''; } }); if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) { throw ''Incorrect "event_source" parameter given: '' + params.event_source + ''\\nMust be 0-3.''; } // Forcing event_value and event_update_status for non trigger-based events. if (params.event_source !== ''0'' ) { params.event_value = ''1''; params.event_update_status = ''0''; } if (params.event_value !== ''0'' && params.event_value !== ''1'') { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''\\nMust be 0 or 1.''; } // Check {EVENT.UPDATE.STATUS} only for trigger-based events. if (params.event_update_status !== ''0'' && params.event_update_status !== ''1'' && params.event_source === ''0'') { throw ''Incorrect "event_update_status" parameter given: '' + params.event_update_status + ''\\nMust be 0 or 1.''; } Express.setParams(express); Express.setProxy(params.HTTPProxy); return Express.postMessage(params.event_value === ''1'' && params.event_update_status === ''0''); } catch (error) { Zabbix.log(3, ''[ Express Webhook ] ERROR: '' + error); throw ''Sending failed: '' + error; }','30s','1','0','','','','0'), ('42','4','GitHub','','','','','','','','25','0','0','0','0','1','3','10s','1',E'const CLogger = function(serviceName) { this.serviceName = serviceName; this.INFO = 4 this.WARN = 3 this.ERROR = 2 this.log = function(level, msg) { Zabbix.log(level, ''['' + this.serviceName + ''] '' + msg); } } const CWebhook = function(value) { try { params = JSON.parse(value); if ([''0'', ''1'', ''2'', ''3'', ''4''].indexOf(params.event_source) === -1) { throw ''Incorrect "event_source" parameter given: '' + params.event_source + ''.\\nMust be 0-4.''; } if ([''0'', ''3'', ''4''].indexOf(params.event_source) !== -1 && [''0'', ''1''].indexOf(params.event_value) === -1) { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''.\\nMust be 0 or 1.''; } if ([''0'', ''3'', ''4''].indexOf(params.event_source) !== -1) { if (params.event_source === ''1'' && [''0'', ''1'', ''2'', ''3''].indexOf(params.event_value) === -1) { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''.\\nMust be 0-3.''; } if (params.event_source === ''0'' && [''0'', ''1''].indexOf(params.event_update_status) === -1) { throw ''Incorrect "event_update_status" parameter given: '' + params.event_update_status + ''.\\nMust be 0 or 1.''; } if (params.event_source === ''4'') { if ([''0'', ''1'', ''2'', ''3'', ''4'', ''5''].indexOf(params.event_update_nseverity) !== -1 && params.event_update_nseverity != params.event_nseverity) { params.event_nseverity = params.event_update_nseverity; params.event_severity = params.event_update_severity; params.event_update_status = ''1''; } } } this.runCallback = function(name, params) { if (typeof this[name] === ''function'') { return this[name].apply(this, [params]); } } this.handleEvent = function(source, event) { const alert = { source: source, event: event }; return [ this.runCallback(''on'' + source + event, alert), this.runCallback(''on'' + event, alert), this.runCallback(''onEvent'', alert) ]; } this.handleEventless = function(source) { const alert = { source: source, event: null }; return [ this.runCallback(''on'' + source, alert), this.runCallback(''onEvent'', alert) ]; } this.run = function() { var results = []; if (typeof this.httpProxy === ''string'' && this.httpProxy.trim() !== '''') { this.request.setProxy(this.httpProxy); } const types = { ''0'': ''Trigger'', ''1'': ''Discovery'', ''2'': ''Autoreg'', ''3'': ''Internal'', ''4'': ''Service'' }; if ([''0'', ''3'', ''4''].indexOf(this.params.event_source) !== -1) { var event = (this.params.event_update_status === ''1'') ? ''Update'' : ((this.params.event_value === ''1'') ? ''Problem'' : ''Resolve''); results = this.handleEvent(types[this.params.event_source], event); } else if (typeof types[this.params.event_source] !== ''undefined'') { results = this.handleEventless(types[this.params.event_source]); } else { throw ''Unexpected "event_source": '' + this.params.event_source; } for (idx in results) { if (typeof results[idx] !== ''undefined'') { return JSON.stringify(results[idx]); } } } this.httpProxy = params.http_proxy; this.params = params; this.runCallback(''onCheckParams'', {}); } catch (error) { throw ''Webhook processing failed: '' + error; } } const CParamValidator = { isType: function(value, type) { if (type === ''array'') { return Array.isArray(value); } if (type === ''integer'') { return CParamValidator.isInteger(value); } if (type === ''float'') { return CParamValidator.isFloat(value); } return (typeof value === type); }, isInteger: function(value) { if (!CParamValidator.ifMatch(value, /^-?\\d+$/)) { return false; } return !isNaN(parseInt(value)); }, isFloat: function(value) { if (!CParamValidator.ifMatch(value, /^-?\\d+\\.\\d+$/)) { return false; } return !isNaN(parseFloat(value)); }, isDefined: function(value) { return !CParamValidator.isType(value, ''undefined''); }, isEmpty: function(value) { if (!CParamValidator.isType(value, ''string'')) { throw ''Value "'' + value + ''" must be a string to be checked for emptiness.''; } return (value.trim() === ''''); }, isMacroSet: function(value, macro) { if (CParamValidator.isDefined(macro)) { return !(CParamValidator.ifMatch(value, ''^\\{'' + macro + ''\\}$'')) } return !(CParamValidator.ifMatch(value, ''^\\{[$#]{0,1}[A-Z_\\.]+[\\:]{0,1}["]{0,1}.*["]{0,1}\\}$'') || value === ''*UNKNOWN*'') }, withinRange: function(value, min, max) { if (!CParamValidator.isType(value, ''number'')) { throw ''Value "'' + value + ''" must be a number to be checked for range.''; } if (value < ((CParamValidator.isDefined(min)) ? min : value) || value > ((CParamValidator.isDefined(max)) ? max : value)) { return false; } return true; }, inArray: function(value, array) { if (!CParamValidator.isType(array, ''array'')) { throw ''The array must be an array to check the value for existing in it.''; } return (array.indexOf((typeof value === ''string'') ? value.toLowerCase() : value) !== -1); }, ifMatch: function(value, regex) { return (new RegExp(regex)).test(value); }, match: function(value, regex) { if (!CParamValidator.isType(value, ''string'')) { throw ''Value "'' + value + ''" must be a string to be matched with the regular expression.''; } return value.match(new RegExp(regex)); }, checkURL: function(value) { if (CParamValidator.isEmpty(value)) { throw ''URL value "'' + value + ''" must be a non-empty string.''; } if (!CParamValidator.ifMatch(value, ''^(http|https):\\/\\/.+'')) { throw ''URL value "'' + value + ''" must contain a schema.''; } return value.endsWith(''/'') ? value.slice(0, -1) : value; }, check: function(key, rule, params) { if (!CParamValidator.isDefined(rule.type)) { throw ''Mandatory attribute "type" has not been defined for parameter "'' + key + ''".''; } if (!CParamValidator.isDefined(params[key])) { throw ''Checked parameter "'' + key + ''" was not found in the list of input parameters.''; } var value = params[key], error_message = null; switch (rule.type) { case ''string'': if (!CParamValidator.isType(value, ''string'')) { throw ''Value "'' + key + ''" must be a string.''; } if (CParamValidator.isEmpty(value)) { error_message = ''Value "'' + key + ''" must be a non-empty string''; break; } if (CParamValidator.isDefined(rule.len) && value.length < rule.len) { error_message = ''Value "'' + key + ''" must be a string with a length > '' + rule.len; } if (CParamValidator.isDefined(rule.regex) && !CParamValidator.ifMatch(value, rule.regex)) { error_message = ''Value "'' + key + ''" must match the regular expression "'' + rule.regex + ''"''; } if (CParamValidator.isDefined(rule.url) && rule.url === true) { value = CParamValidator.checkURL(value); } break; case ''integer'': if (!CParamValidator.isInteger(value)) { error_message = ''Value "'' + key + ''" must be an integer''; break; } value = parseInt(value); break; case ''float'': if (!CParamValidator.isFloat(value)) { error_message = ''Value "'' + key + ''" must be a floating-point number''; break; } value = parseFloat(value); break; case ''boolean'': if (CParamValidator.inArray(value, [''1'', ''true'', ''yes'', ''on''])) { value = true; } else if (CParamValidator.inArray(value, [''0'', ''false'', ''no'', ''off''])) { value = false; } else { error_message = ''Value "'' + key + ''" must be a boolean-like.''; } break; case ''array'': try { value = JSON.parse(value); } catch (error) { throw ''Value "'' + key + ''" contains invalid JSON.''; } if (!CParamValidator.isType(value, ''array'')) { error_message = ''Value "'' + key + ''" must be an array.''; } if (CParamValidator.isDefined(rule.tags) && rule.tags === true) { value = value.reduce(function(acc, obj) { acc[obj.tag] = obj.value || null; return acc; }, {}); } break; case ''object'': value = JSON.parse(value); if (!CParamValidator.isType(value, ''object'')) { error_message = ''Value "'' + key + ''" must be an object.''; } break; default: throw ''Unexpected attribute type "'' + rule.type + ''" for value "'' + key + ''". Available: '' + [''integer'', ''float'', ''string'', ''boolean'', ''array'', ''object''].join('', ''); } params[key] = value; if (CParamValidator.inArray(rule.type, [''integer'', ''float'']) && error_message === null && (CParamValidator.isDefined(rule.min) || CParamValidator.isDefined(rule.max)) && !CParamValidator.withinRange(value, rule.min, rule.max)) { error_message = ''Value "'' + key + ''" must be a number '' + ((CParamValidator.isDefined(rule.min) && CParamValidator.isDefined(rule.max)) ? (rule.min + ''..'' + rule.max) : ((CParamValidator.isDefined(rule.min)) ? ''>'' + rule.min : ''<'' + rule.max)); } else if (CParamValidator.isDefined(rule.array) && !CParamValidator.inArray(value, rule.array)) { error_message = ''Value "'' + key + ''" must be in the array '' + JSON.stringify(rule.array); } else if (CParamValidator.isDefined(rule.macro) && !CParamValidator.isMacroSet(value.toString(), rule.macro)) { error_message = ''The macro '' + ((CParamValidator.isDefined(rule.macro)) ? ''{'' + rule.macro + ''} '' : '' '') + ''is not set''; } if (error_message !== null) { if (CParamValidator.isDefined(rule.default) && CParamValidator.isType(rule.default, rule.type)) { params[key] = rule.default; } else { Zabbix.log(4, ''Default value for "'' + key + ''" must be a '' + rule.type + ''. Skipped.''); throw ''Incorrect value for variable "'' + key + ''". '' + error_message; } } return this; }, validate: function(rules, params) { if (!CParamValidator.isType(params, ''object'') || CParamValidator.isType(params, ''array'')) { throw ''Incorrect parameters value. The value must be an object.''; } for (var key in rules) { CParamValidator.check(key, rules[key], params); } } } const CHttpRequest = function(logger) { this.request = new HttpRequest(); if (typeof logger !== ''object'' || logger === null) { this.logger = Zabbix; } else { this.logger = logger; } this.clearHeader = function() { this.request.clearHeader(); } this.addHeaders = function(value) { var headers = []; if (typeof value === ''object'' && value !== null) { if (!Array.isArray(value)) { Object.keys(value).forEach(function(key) { headers.push(key + '': '' + value[key]); }); } else { headers = value; } } else if (typeof value === ''string'') { value.split(''\\r\\n'').forEach(function(header) { headers.push(header); }); } for (var idx in headers) { this.request.addHeader(headers[idx]); } } this.setProxy = function(proxy) { this.request.setProxy(proxy); } this.plainRequest = function(method, url, data) { var resp = null; method = method.toLowerCase(); this.logger.log(4, ''Sending '' + method + '' request:'' + JSON.stringify(data)); if ([''get'', ''post'', ''put'', ''patch'', ''delete'', ''trace''].indexOf(method) !== -1) { resp = this.request[method](url, data); } else if ([''connect'', ''head'', ''options''].indexOf(method) !== -1) { resp = this.request[method](url); } else { throw ''Unexpected method. Method '' + method + '' is not supported.''; } this.logger.log(4, ''Response has been received: '' + resp); return resp; } this.jsonRequest = function(method, url, data) { this.addHeaders(''Content-Type: application/json''); var resp = this.plainRequest(method, url, JSON.stringify(data)); try { resp = JSON.parse(resp); } catch (error) { throw ''Failed to parse response: not well-formed JSON was received''; } return resp; } this.getStatus = function() { return this.request.getStatus(); } } const CWebhookHelper = { createProblemURL: function(event_source, zabbix_url, trigger_id, event_id) { if (event_source === ''0'') { return zabbix_url + ''/tr_events.php?triggerid='' + trigger_id + ''&eventid='' + event_id; } else if (event_source === ''4'') { return zabbix_url + ''/zabbix.php?action=service.list''; } return zabbix_url; }, }; var serviceLogName = ''GitHub Webhook'', Logger = new CLogger(serviceLogName), GitHub = CWebhook; GitHub.prototype.onCheckParams = function () { CParamValidator.validate({ alert_message: {type: ''string''}, alert_subject: {type: ''string''}, github_api_version: {type: ''string''}, github_repo: {type: ''string''}, github_token: {type: ''string''}, github_url: {type: ''string'', url: true}, github_user_agent: {type: ''string''}, github_zabbix_event_priority_label_prefix: {type: ''string'', default: ''Zabbix Event Priority: ''}, github_zabbix_event_source_label_prefix: {type: ''string'', default: ''Zabbix Event Source: ''}, github_zabbix_event_status_label_prefix: {type: ''string'', default: ''Zabbix Event Status: ''}, github_zabbix_generic_label: {type: ''string'', default: ''Zabbix GitHub Webhook''}, zabbix_url: {type: ''string'', url: true} }, this.params); this.request_headers = { ''User-Agent'': this.params.github_user_agent, ''Accept'': ''application/vnd.github+json'', ''X-GitHub-Api-Version'': this.params.github_api_version, ''Authorization'': ''Bearer '' + this.params.github_token }; this.payload_data = { title: this.params.alert_subject, labels: [ { name: this.params.github_zabbix_generic_label } ] }; this.result = {tags: {}}; }; function checkResponse(response, received_code, required_code, response_field, error_message) { if (received_code != required_code || !CParamValidator.isDefined(response[response_field])) { var message = error_message + '' Request failed with status code '' + received_code; if (CParamValidator.isDefined(response.message) && Object.keys(response.message).length > 0) { message += '': '' + response.message; } throw message + '' Check debug log for more information.''; } } GitHub.prototype.createIssue = function () { this.payload_data.body = this.params.alert_message + ''\\n'' + CWebhookHelper.createProblemURL(this.params.event_source, this.params.zabbix_url, this.params.trigger_id, this.params.event_id); this.request.addHeaders(this.request_headers); const response = this.request.jsonRequest(''POST'', this.params.github_url + ''/repos/'' + this.params.github_repo + ''/issues'', this.payload_data); checkResponse(response, this.request.getStatus(), 201, ''number'', ''Cannot create GitHub issue.''); return response; } GitHub.prototype.updateIssue = function () { this.request.addHeaders(this.request_headers); const response = this.request.jsonRequest(''PATCH'', this.params.github_url + ''/repos/'' + this.params.github_repo + ''/issues/'' + this.params.github_issue_number, this.payload_data); checkResponse(response, this.request.getStatus(), 200, ''number'', ''Cannot update GitHub issue.''); return response; } GitHub.prototype.addIssueComment = function () { this.payload_data = { body: this.params.alert_message }; this.request.addHeaders(this.request_headers); const response = this.request.jsonRequest(''POST'', this.params.github_url + ''/repos/'' + this.params.github_repo + ''/issues/'' + this.params.github_issue_number + ''/comments'', this.payload_data); checkResponse(response, this.request.getStatus(), 201, ''id'', ''Cannot add comment for GitHub issue.''); return response; } GitHub.prototype.onProblem = function (alert) { if (CParamValidator.isMacroSet(this.params.github_issue_number)) { return this.onUpdate(alert); } Logger.log(Logger.INFO, ''Source: '' + alert.source + ''; Event: '' + alert.event); if (this.params.event_source === ''0'') { CParamValidator.validate({event_id: {type: ''integer''}, trigger_id: {type: ''integer''}}, this.params); } this.payload_data.labels.push({name: this.params.github_zabbix_event_source_label_prefix + alert.source}); this.payload_data.labels.push({name: this.params.github_zabbix_event_status_label_prefix + ''Problem''}); if (!CParamValidator.isEmpty(this.params.event_severity) && CParamValidator.isMacroSet(this.params.event_severity, ''EVENT.SEVERITY'')) { this.payload_data.labels.push({name: this.params.github_zabbix_event_priority_label_prefix + this.params.event_severity}); } const response = this.createIssue(); this.result.tags = { __zbx_github_issue_number: response.number, __zbx_github_repo: this.params.github_repo, __zbx_github_link: response.html_url }; return this.result; } GitHub.prototype.onUpdate = function (alert) { Logger.log(Logger.INFO, ''Source: '' + alert.source + ''; Event: '' + alert.event); if (!CParamValidator.isMacroSet(this.params.github_issue_number)) { throw "Failed to update the existing issue: no issue number was received." } this.payload_data.labels.push({name: this.params.github_zabbix_event_source_label_prefix + alert.source}); if (this.params.event_value === ''0'') { this.payload_data.labels.push({name: this.params.github_zabbix_event_status_label_prefix + ''Resolved''}); } else { this.payload_data.labels.push({name: this.params.github_zabbix_event_status_label_prefix + ''Problem''}); } if (!CParamValidator.isEmpty(this.params.event_severity) && CParamValidator.isMacroSet(this.params.event_severity, ''EVENT.SEVERITY'')) { this.payload_data.labels.push({name: this.params.github_zabbix_event_priority_label_prefix + this.params.event_severity}); } this.updateIssue(); this.request.clearHeader(); this.addIssueComment(); return this.result; } GitHub.prototype.onResolve = function (alert) { return this.onUpdate(alert); } GitHub.prototype.onDiscovery = function (alert) { Logger.log(Logger.INFO, ''Source: '' + alert.source + ''; Event: '' + alert.event); this.payload_data.labels.push({name: this.params.github_zabbix_event_source_label_prefix + alert.source}); this.createIssue(); return this.result; } GitHub.prototype.onAutoreg = function (alert) { return this.onDiscovery(alert); } try { var hook = new GitHub(value); hook.request = new CHttpRequest(Logger); return hook.run(); } catch (error) { Logger.log(Logger.WARN, ''notification failed: '' + error); throw ''Sending failed: '' + error; }','30s','1','1','{EVENT.TAGS.__zbx_github_link}','Github: Issue {EVENT.TAGS.__zbx_github_issue_number}','This media type integrates your Zabbix installation with GitHub using the Zabbix webhook feature. GitHub configuration: 1. Create an access token. One of the simplest ways to send authenticated requests is to use a personal access token - either a classic or a fine-grained one: https://docs.github.com/en/rest/authentication/authenticating-to-the-rest-api?apiVersion=2022-11-28#authenticating-with-a-personal-access-token Classic personal access token You can create a new classic personal access token by following the instructions in the official documentation: https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens#creating-a-personal-access-token-classic The token user must have a permission to create issues and issue comments in the desired repositories. For webhook to work on private repositories, the "repo" scope must be set in token settings to have full control of private repositories. Additional information about OAuth scopes is available in the official documentation: https://docs.github.com/en/apps/oauth-apps/building-oauth-apps/scopes-for-oauth-apps#available-scopes Fine-grained personal access token Alternatively, you can use a fine-grained personal access token: https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens#creating-a-fine-grained-personal-access-token In order to use fine-grained tokens to monitor organization-owned repositories, organizations must opt in to fine-grained personal access tokens and set up a personal access token policy: https://docs.github.com/en/organizations/managing-programmatic-access-to-your-organization/setting-a-personal-access-token-policy-for-your-organization The fine-grained token needs to have the following permission set to provide access to the repository issues: - "Issues" repository permissions (write) 2. Copy and save the created token somewhere, as it will be shown only once for security reasons. Zabbix configuration: 1. Before you can start using Zammad webhook, set up the global macro "{$ZABBIX.URL}": - In the Zabbix web interface, go to "Administration" → "Macros" section in the dropdown menu in the top left corner. - Set up the global macro "{$ZABBIX.URL}" which will contain the URL to the Zabbix frontend. The URL should be either an IP address, a fully qualified domain name, or localhost. - Specifying a protocol is mandatory, whereas the port is optional. Depending on the web server configuration you might also need to append "/zabbix" to the end of URL. Good examples: - http://zabbix.com - https://zabbix.lan/zabbix - http://server.zabbix.lan/ - http://localhost - http://127.0.0.1:8080 - Bad examples: - zabbix.com - http://zabbix/ 2. Set the "github_token" webhook parameter value to the access token that you created previously. You can also adjust the issue labels created by the webhook in the following parameters: - github_zabbix_event_priority_label_prefix - the prefix for the issue label that displays the Zabbix event priority in the supported event sources. It is set to "Zabbix Event Priority: " by default. - github_zabbix_event_source_label_prefix - the prefix for the issue label that displays the Zabbix event source. It is set to "Zabbix Event Source: " by default. - github_zabbix_event_status_label_prefix - the prefix for the issue label that displays the Zabbix event status. It is set to "Zabbix Event Status: " by default. - github_zabbix_generic_label - the label that is added to all issues created by the webhook. It is set to "Zabbix GitHub Webhook" by default. Note that the webhook will reuse the labels with the same name that already exist in the repository (including the color, so it can changed from the default value for new labels in GitHub, if needed). Also, the labels are replaced when the issue is updated, so any user-added labels will be removed. 4. Create a Zabbix user and add media: - If you want to create a new user, go to the "Users" → "Users" section, click the "Create user" button in the top right corner. In the "User" tab, fill in all required fields (marked with red asterisks). - In the "Media" tab, add a new media and select "Zammad" type from the drop-down list. In field "Send to" specify the full repo name (owner/project name) e.g. johndoe/example-project. - Make sure this user has access to all hosts for which you would like problem notifications to be sent to GitHub. 5. Great! You can now start using this media type in actions and create GitHub issues! You can find the latest version of this media and additional information in the official Zabbix repository: https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/templates/media/github','0'), ('43','4','GLPi','','','','','','','','25','0','0','0','0','1','1','10s','1',E'const CLogger = function(serviceName) { this.serviceName = serviceName; this.INFO = 4 this.WARN = 3 this.ERROR = 2 this.log = function(level, msg) { Zabbix.log(level, ''['' + this.serviceName + ''] '' + msg); } } const CWebhook = function(value) { try { params = JSON.parse(value); if ([''0'', ''1'', ''2'', ''3'', ''4''].indexOf(params.event_source) === -1) { throw ''Incorrect "event_source" parameter given: '' + params.event_source + ''.\\nMust be 0-4.''; } if ([''0'', ''3'', ''4''].indexOf(params.event_source) !== -1 && [''0'', ''1''].indexOf(params.event_value) === -1) { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''.\\nMust be 0 or 1.''; } if ([''0'', ''3'', ''4''].indexOf(params.event_source) !== -1) { if (params.event_source === ''1'' && [''0'', ''1'', ''2'', ''3''].indexOf(params.event_value) === -1) { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''.\\nMust be 0-3.''; } if (params.event_source === ''0'' && [''0'', ''1''].indexOf(params.event_update_status) === -1) { throw ''Incorrect "event_update_status" parameter given: '' + params.event_update_status + ''.\\nMust be 0 or 1.''; } if (params.event_source === ''4'') { if ([''0'', ''1'', ''2'', ''3'', ''4'', ''5''].indexOf(params.event_update_nseverity) !== -1 && params.event_update_nseverity != params.event_nseverity) { params.event_nseverity = params.event_update_nseverity; params.event_severity = params.event_update_severity; params.event_update_status = ''1''; } } } this.runCallback = function(name, params) { if (typeof this[name] === ''function'') { return this[name].apply(this, [params]); } } this.handleEvent = function(source, event) { const alert = { source: source, event: event }; return [ this.runCallback(''on'' + source + event, alert), this.runCallback(''on'' + event, alert), this.runCallback(''onEvent'', alert) ]; } this.handleEventless = function(source) { const alert = { source: source, event: null }; return [ this.runCallback(''on'' + source, alert), this.runCallback(''onEvent'', alert) ]; } this.run = function() { var results = []; if (typeof this.httpProxy === ''string'' && this.httpProxy.trim() !== '''') { this.request.setProxy(this.httpProxy); } const types = { ''0'': ''Trigger'', ''1'': ''Discovery'', ''2'': ''Autoreg'', ''3'': ''Internal'', ''4'': ''Service'' }; if ([''0'', ''3'', ''4''].indexOf(this.params.event_source) !== -1) { var event = (this.params.event_update_status === ''1'') ? ''Update'' : ((this.params.event_value === ''1'') ? ''Problem'' : ''Resolve''); results = this.handleEvent(types[this.params.event_source], event); } else if (typeof types[this.params.event_source] !== ''undefined'') { results = this.handleEventless(types[this.params.event_source]); } else { throw ''Unexpected "event_source": '' + this.params.event_source; } for (idx in results) { if (typeof results[idx] !== ''undefined'') { return JSON.stringify(results[idx]); } } } this.httpProxy = params.http_proxy; this.params = params; this.runCallback(''onCheckParams'', {}); } catch (error) { throw ''Webhook processing failed: '' + error; } } const CParamValidator = { isType: function(value, type) { if (type === ''array'') { return Array.isArray(value); } if (type === ''integer'') { return CParamValidator.isInteger(value); } if (type === ''float'') { return CParamValidator.isFloat(value); } return (typeof value === type); }, isInteger: function(value) { if (!CParamValidator.ifMatch(value, /^-?\\d+$/)) { return false; } return !isNaN(parseInt(value)); }, isFloat: function(value) { if (!CParamValidator.ifMatch(value, /^-?\\d+\\.\\d+$/)) { return false; } return !isNaN(parseFloat(value)); }, isDefined: function(value) { return !CParamValidator.isType(value, ''undefined''); }, isEmpty: function(value) { if (!CParamValidator.isType(value, ''string'')) { throw ''Value "'' + value + ''" must be a string to be checked for emptiness.''; } return (value.trim() === ''''); }, isMacroSet: function(value, macro) { if (CParamValidator.isDefined(macro)) { return !(CParamValidator.ifMatch(value, ''^\\{'' + macro + ''\\}$'')) } return !(CParamValidator.ifMatch(value, ''^\\{[$#]{0,1}[A-Z_\\.]+[\\:]{0,1}["]{0,1}.*["]{0,1}\\}$'') || value === ''*UNKNOWN*'') }, withinRange: function(value, min, max) { if (!CParamValidator.isType(value, ''number'')) { throw ''Value "'' + value + ''" must be a number to be checked for range.''; } if (value < ((CParamValidator.isDefined(min)) ? min : value) || value > ((CParamValidator.isDefined(max)) ? max : value)) { return false; } return true; }, inArray: function(value, array) { if (!CParamValidator.isType(array, ''array'')) { throw ''The array must be an array to check the value for existing in it.''; } return (array.indexOf((typeof value === ''string'') ? value.toLowerCase() : value) !== -1); }, ifMatch: function(value, regex) { return (new RegExp(regex)).test(value); }, match: function(value, regex) { if (!CParamValidator.isType(value, ''string'')) { throw ''Value "'' + value + ''" must be a string to be matched with the regular expression.''; } return value.match(new RegExp(regex)); }, checkURL: function(value) { if (CParamValidator.isEmpty(value)) { throw ''URL value "'' + value + ''" must be a non-empty string.''; } if (!CParamValidator.ifMatch(value, ''^(http|https):\\/\\/.+'')) { throw ''URL value "'' + value + ''" must contain a schema.''; } return value.endsWith(''/'') ? value.slice(0, -1) : value; }, check: function(key, rule, params) { if (!CParamValidator.isDefined(rule.type)) { throw ''Mandatory attribute "type" has not been defined for parameter "'' + key + ''".''; } if (!CParamValidator.isDefined(params[key])) { throw ''Checked parameter "'' + key + ''" was not found in the list of input parameters.''; } var value = params[key], error_message = null; switch (rule.type) { case ''string'': if (!CParamValidator.isType(value, ''string'')) { throw ''Value "'' + key + ''" must be a string.''; } if (CParamValidator.isEmpty(value)) { error_message = ''Value "'' + key + ''" must be a non-empty string''; break; } if (CParamValidator.isDefined(rule.len) && value.length < rule.len) { error_message = ''Value "'' + key + ''" must be a string with a length > '' + rule.len; } if (CParamValidator.isDefined(rule.regex) && !CParamValidator.ifMatch(value, rule.regex)) { error_message = ''Value "'' + key + ''" must match the regular expression "'' + rule.regex + ''"''; } if (CParamValidator.isDefined(rule.url) && rule.url === true) { value = CParamValidator.checkURL(value); } break; case ''integer'': if (!CParamValidator.isInteger(value)) { error_message = ''Value "'' + key + ''" must be an integer''; break; } value = parseInt(value); break; case ''float'': if (!CParamValidator.isFloat(value)) { error_message = ''Value "'' + key + ''" must be a floating-point number''; break; } value = parseFloat(value); break; case ''boolean'': if (CParamValidator.inArray(value, [''1'', ''true'', ''yes'', ''on''])) { value = true; } else if (CParamValidator.inArray(value, [''0'', ''false'', ''no'', ''off''])) { value = false; } else { error_message = ''Value "'' + key + ''" must be a boolean-like.''; } break; case ''array'': try { value = JSON.parse(value); } catch (error) { throw ''Value "'' + key + ''" contains invalid JSON.''; } if (!CParamValidator.isType(value, ''array'')) { error_message = ''Value "'' + key + ''" must be an array.''; } if (CParamValidator.isDefined(rule.tags) && rule.tags === true) { value = value.reduce(function(acc, obj) { acc[obj.tag] = obj.value || null; return acc; }, {}); } break; case ''object'': value = JSON.parse(value); if (!CParamValidator.isType(value, ''object'')) { error_message = ''Value "'' + key + ''" must be an object.''; } break; default: throw ''Unexpected attribute type "'' + rule.type + ''" for value "'' + key + ''". Available: '' + [''integer'', ''float'', ''string'', ''boolean'', ''array'', ''object''].join('', ''); } params[key] = value; if (CParamValidator.inArray(rule.type, [''integer'', ''float'']) && error_message === null && (CParamValidator.isDefined(rule.min) || CParamValidator.isDefined(rule.max)) && !CParamValidator.withinRange(value, rule.min, rule.max)) { error_message = ''Value "'' + key + ''" must be a number '' + ((CParamValidator.isDefined(rule.min) && CParamValidator.isDefined(rule.max)) ? (rule.min + ''..'' + rule.max) : ((CParamValidator.isDefined(rule.min)) ? ''>'' + rule.min : ''<'' + rule.max)); } else if (CParamValidator.isDefined(rule.array) && !CParamValidator.inArray(value, rule.array)) { error_message = ''Value "'' + key + ''" must be in the array '' + JSON.stringify(rule.array); } else if (CParamValidator.isDefined(rule.macro) && !CParamValidator.isMacroSet(value.toString(), rule.macro)) { error_message = ''The macro '' + ((CParamValidator.isDefined(rule.macro)) ? ''{'' + rule.macro + ''} '' : '' '') + ''is not set''; } if (error_message !== null) { if (CParamValidator.isDefined(rule.default) && CParamValidator.isType(rule.default, rule.type)) { params[key] = rule.default; } else { Zabbix.log(4, ''Default value for "'' + key + ''" must be a '' + rule.type + ''. Skipped.''); throw ''Incorrect value for variable "'' + key + ''". '' + error_message; } } return this; }, validate: function(rules, params) { if (!CParamValidator.isType(params, ''object'') || CParamValidator.isType(params, ''array'')) { throw ''Incorrect parameters value. The value must be an object.''; } for (var key in rules) { CParamValidator.check(key, rules[key], params); } } } const CHttpRequest = function(logger) { this.request = new HttpRequest(); if (typeof logger !== ''object'' || logger === null) { this.logger = Zabbix; } else { this.logger = logger; } this.clearHeader = function() { this.request.clearHeader(); } this.addHeaders = function(value) { var headers = []; if (typeof value === ''object'' && value !== null) { if (!Array.isArray(value)) { Object.keys(value).forEach(function(key) { headers.push(key + '': '' + value[key]); }); } else { headers = value; } } else if (typeof value === ''string'') { value.split(''\\r\\n'').forEach(function(header) { headers.push(header); }); } for (var idx in headers) { this.request.addHeader(headers[idx]); } } this.setProxy = function(proxy) { this.request.setProxy(proxy); } this.plainRequest = function(method, url, data) { var resp = null; method = method.toLowerCase(); this.logger.log(4, ''Sending '' + method + '' request:'' + JSON.stringify(data)); if ([''get'', ''post'', ''put'', ''patch'', ''delete'', ''trace''].indexOf(method) !== -1) { resp = this.request[method](url, data); } else if ([''connect'', ''head'', ''options''].indexOf(method) !== -1) { resp = this.request[method](url); } else { throw ''Unexpected method. Method '' + method + '' is not supported.''; } this.logger.log(4, ''Response has been received: '' + resp); return resp; } this.jsonRequest = function(method, url, data) { this.addHeaders(''Content-Type: application/json''); var resp = this.plainRequest(method, url, JSON.stringify(data)); try { resp = JSON.parse(resp); } catch (error) { throw ''Failed to parse response: not well-formed JSON was received''; } return resp; } this.getStatus = function() { return this.request.getStatus(); } } const CWebhookHelper = { createProblemURL: function(event_source, zabbix_url, trigger_id, event_id) { if (event_source === ''0'') { return zabbix_url + ''/tr_events.php?triggerid='' + trigger_id + ''&eventid='' + event_id; } else if (event_source === ''4'') { return zabbix_url + ''/zabbix.php?action=service.list''; } return zabbix_url; }, }; const serviceLogName = ''GLPi Webhook'', Logger = new CLogger(serviceLogName), GLPi = CWebhook; GLPi.prototype.onCheckParams = function () { CParamValidator.validate({ alert_message: { type: ''string'' }, alert_subject: { type: ''string'' }, zabbix_url: { type: ''string'', url: true }, glpi_url: { type: ''string'', url: true }, glpi_user_token: { type: ''string'' } }, this.params); this.params.use_app_token = false; if (CParamValidator.isDefined(this.params.glpi_app_token) && !CParamValidator.isEmpty(this.params.glpi_app_token)) { this.params.use_app_token = true; } if (this.params.event_source === ''0'') { CParamValidator.validate({ trigger_id: { type: ''integer'' }, event_id: { type: ''integer'' } }, this.params); this.params.zabbix_url = CWebhookHelper.createProblemURL(this.params.event_source, this.params.zabbix_url, this.params.trigger_id, this.params.event_id); } if (params.event_value != ''0'' && CParamValidator.isMacroSet(this.params.glpi_problem_id)) { this.params.event_update_status = ''1''; } this.data = { input: { name: this.params.alert_subject, urgency: (this.params.event_nseverity = isNaN(Number(this.params.event_nseverity)) ? 2 : this.params.event_nseverity) } }; this.dataFollowup = { input: { items_id: this.params.glpi_problem_id, itemtype: ''Problem'', content: this.params.alert_message + ''
Link to problem in Zabbix'', } }; this.result = { tags: {} }; } GLPi.prototype.getAuthToken = function () { this.request.addHeaders(''Authorization: user_token '' + this.params.glpi_user_token); if (this.params.use_app_token) { this.request.addHeaders(''App-Token: '' + this.params.glpi_app_token); } var response = this.request.jsonRequest(''post'', this.params.glpi_url + ''/apirest.php/initSession''); if ((this.request.getStatus() !== 200 && this.request.getStatus() !== 201)) { Logger.log(Logger.INFO, ''HTTP code: '' + this.request.getStatus()); if (CParamValidator.isType(response.description, ''string'')) { throw response.description; } else { Logger.log(Logger.INFO, ''Request not successful. Received response: '' + JSON.stringify(response)); throw ''Unknown INFO. Check debug log for more information.''; } } if (!CParamValidator.isType(response.session_token, ''string'') || CParamValidator.isEmpty(response.session_token)) { Logger.log(Logger.INFO, ''Check getting GLPi sessionToken: '' + response.session_token); throw ''Required GLPi sessionToken is not received.''; } return response.session_token; } GLPi.prototype.sendRequest = function (method, path, data) { this.request.clearHeader(); this.request.addHeaders(''Session-Token:'' + this.params.authToken); if (this.params.use_app_token) { this.request.addHeaders(''App-Token: '' + this.params.glpi_app_token); } var response = this.request.jsonRequest(method, this.params.glpi_url + path, data); if ((this.request.getStatus() !== 200 && this.request.getStatus() !== 201)) { Logger.log(Logger.INFO, ''HTTP code: '' + this.request.getStatus()); if (CParamValidator.isType(response.description, ''string'')) { throw response.description; } else { Logger.log(Logger.INFO, ''Request not successful. Received response: '' + JSON.stringify(response)); throw ''Unknown INFO. Check debug log for more information.''; } } return response; } GLPi.prototype.createProblem = function (status) { this.data.input.content = this.params.alert_message + ''
Link to problem in Zabbix''; if (CParamValidator.isDefined(status)) { this.data.input.status = status; } var response = this.sendRequest(''post'', ''/apirest.php/Problem/'', this.data); if (!CParamValidator.isDefined(response.id)) { throw ''Cannot create GPLi problem. Check debug log for more information.''; } return response.id } GLPi.prototype.updateProblem = function (status) { CParamValidator.validate({ glpi_problem_id: { type: ''string'' } }, this.params); this.data.id = this.params.glpi_problem_id; if (CParamValidator.isDefined(status)) { this.data.input.status = status; } this.sendRequest(''put'', ''/apirest.php/Problem/'' + this.params.glpi_problem_id, this.data); this.sendRequest(''post'', ''/apirest.php/Problem/'' + this.params.glpi_problem_id + ''/ITILFollowup'', this.dataFollowup); } GLPi.prototype.onProblem = function (alert) { Logger.log(Logger.INFO, ''Source: '' + alert.source + ''; Event: '' + alert.event); const problem_id = this.createProblem(1) this.result.tags.__zbx_glpi_problem_id = problem_id; this.result.tags.__zbx_glpi_link = this.params.glpi_url + ''/front/problem.form.php?id='' + problem_id; return this.result; } GLPi.prototype.onUpdate = function (alert) { Logger.log(Logger.INFO, ''Source: '' + alert.source + ''; Event: '' + alert.event); this.updateProblem(); return this.result; } GLPi.prototype.onResolve = function (alert) { Logger.log(Logger.INFO, ''Source: '' + alert.source + ''; Event: '' + alert.event); this.updateProblem(5); return this.result; } GLPi.prototype.onDiscovery = function () { return this.createProblem(); } GLPi.prototype.onAutoreg = function () { return this.createProblem(); } try { var hook = new GLPi(value); hook.request = new CHttpRequest(Logger); hook.params.authToken = hook.getAuthToken(); return hook.run(); } catch (error) { Logger.log(Logger.WARN, ''notification failed: '' + error); throw ''Sending failed: '' + error; }','30s','1','1','{EVENT.TAGS.__zbx_glpi_link}','GLPi: Problem {EVENT.TAGS.__zbx_glpi_problem_id}','This media type integrates your Zabbix installation with your GLPi installation using the Zabbix webhook feature. GLPi configuration: 1. Enable access to the GLPi REST API: - In the GLPi web interface, go to "Setup" → "General" → "API". - Set the "Enable Rest API" and "Enable Rest API" options to "Yes" and click the "Save" button. 2. Add a new API client: - Click the "Add API client" button. - Specify the API client name and set the "Active" option to "Yes". - For security reasons, you may want to restrict the API client to the IP address of Zabbix server and/or create an additional application token (will be generated by default; you can uncheck the "Regenerate" checkbox if you don''t want to use it). - Click the "Add" button. - If you''ve opted to create an application token, open the settings of the created API client, and then copy and save the generated application token. 3. Create a new user profile with permissions to create problems and followups (alternatively, you can use an existing profile with sufficient privileges): - Go to "Administration" → "Profiles" and click the "Add" button on the top of the page. - Specify the profile name and set the "Profile''s Interface" option to "Standard Interface", and then click the "Add" button. - Open the created profile and click the "Assistance" tab. - Set the "Add followup (requester)" permission for the "Followups" line in the "Followups/Tasks" section. - Set the "Update", "Create", and "See all" permissions in the "Problems" section. - Click the "Save" button. 4. Create a new user: - Go to "Administration" → "Users" and click the "Add User" button on the top of the page. - Specify the user login and set the "Profiles" option to the profile that you created in the previous step (or any other existing profile with permissions to create problems and followups). - Click the "Add" button. - Open the profile of the created user and check the "Regenerate" checkbox of the "API token" option; click "Save". - Copy and save the generated user API token. Zabbix configuration: 1. Before you can start using the GLPi webhook, set the global macro "{$ZABBIX.URL}": - In the Zabbix web interface, go to "Administration" → "Macros" in the top-left drop-down menu. - Set the global macro "{$ZABBIX.URL}" to the URL of the Zabbix frontend. The URL should be either an IP address, a fully qualified domain name, or localhost. - Specifying a protocol is mandatory, whereas the port is optional. Depending on the web server configuration, you might also need to append "/zabbix" to the end of URL. Good examples: - http://zabbix.com - https://zabbix.lan/zabbix - http://server.zabbix.lan/ - http://localhost - http://127.0.0.1:8080 - Bad examples: - zabbix.com - http://zabbix/ 2. Set the following webhook parameters: - glpi_app_token - if you''ve opted to use an application token during the creation of API client, specify it here; otherwise leave it empty - glpi_url - the frontend URL of your GLPi installation - glpi_user_token - the user token that was generated during creation of GLPi user 3. Click the "Enabled" checkbox to enable the media type and click the "Update" button to save the webhook settings. 4. Create a Zabbix user and add media: - To create a new user, go to the "Users" → "Users" section, click the "Create user" button in the top right corner. In the "User" tab, fill in all required fields (marked with red asterisks). - In the "Media" tab, click "Add" and select the type "GLPi" from the drop-down list. Add any value in the "Send to" field: it is not used in the webhook, but is required. - Make sure this user has access to all hosts for which you would like problem notifications to be sent to GLPi. 5. Done! You can now start using this media type in actions and create problem items in GLPi. You can find the latest version of this media and additional information in the official Zabbix repository: https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/templates/media/glpi','0'), ('44','4','iLert','','','','','','','','25','0','0','0','0','1','3','10s','1','try { var result = { tags: {} }, params = JSON.parse(value), req = new HttpRequest(), resp = ''''; if (typeof params.HTTPProxy === ''string'' && params.HTTPProxy.trim() !== '''') { req.setProxy(params.HTTPProxy); } var alertSourceKey = params[''.ILERT.ALERT.SOURCE.KEY'']; if (!alertSourceKey || (typeof alertSourceKey === ''string'' && alertSourceKey.trim() === '''')) { throw ''incorrect value for variable "ILERT.ALERT.SOURCE.KEY". The value must be a non-empty string.''; } delete params[''.ILERT.ALERT.SOURCE.KEY'']; var ilertApiBaseURL = "https://api.ilert.com"; var reqURL = encodeURI(ilertApiBaseURL + "/api/v1/events/zabbix-mt/" + alertSourceKey) var incidentKey = "zabbix-" + params[''EVENT.ID'']; var incidentViewURL = ilertApiBaseURL + "/api/v1/incidents/resolve-ik/" + alertSourceKey + "/" + incidentKey; req.addHeader(''Accept: application/json''); req.addHeader(''Content-Type: application/json''); Zabbix.log(4, ''[iLert Webhook] Sending request:'' + JSON.stringify(params)); resp = req.post(reqURL, JSON.stringify(params)); Zabbix.log(4, ''[iLert Webhook] Receiving response:'' + resp); try { resp = JSON.parse(resp); } catch (error) { throw ''incorrect response. iLert returned a non-JSON object.''; } if (req.getStatus() == 200) { result.tags.__ilert_incident_url = incidentViewURL; return JSON.stringify(result); } if (req.getStatus() == 400 && typeof resp === ''object'' && typeof resp.code === ''string'') { if (resp.code === ''NO_OPEN_INCIDENT_WITH_KEY'') { return JSON.stringify(result); } if (resp.code === ''INCIDENT_ALREADY_ACCEPTED'') { result.tags.__ilert_incident_url = incidentViewURL; return JSON.stringify(result); } } if (typeof resp === ''object'' && typeof resp.message === ''string'') { throw resp.message; } else { throw ''Unknown error.''; } } catch (error) { Zabbix.log(3, ''[iLert Webhook] Notification failed : '' + error); throw ''iLert notification failed : '' + error; }','30s','1','1','{EVENT.TAGS.__ilert_incident_url}','iLert incident','Please refer to https://docs.ilert.com/integrations/zabbix/native Set global macro {$ZABBIX.URL} with your Zabbix server URL. Add a dedicated user with the media type "iLert". You can also rewrite the incident summary via ".ILERT.INCIDENT.SUMMARY" parameter or leave it empty to use the standard pattern.','0'), ('45','4','iTop','','','','','','','','25','0','0','0','0','1','3','10s','1',E'var Itop = { params: {}, setParams: function (params) { if (typeof params !== ''object'') { return; } if (params.log !== ''private_log'' && params.log !== ''public_log'') { throw ''Incorrect "itop_log" parameter given: '' + params.log + ''\\nMust be "private_log" or "public_log".''; } Itop.params = params; if (typeof Itop.params.url === ''string'') { if (!Itop.params.url.endsWith(''/'')) { Itop.params.url += ''/''; } Itop.params.url += ''webservices/rest.php?version='' + encodeURIComponent(Itop.params.api_version); } }, setProxy: function (HTTPProxy) { Itop.HTTPProxy = HTTPProxy; }, setCreatePayload: function () { json_data.operation = ''core/create''; json_data.fields.org_id = Itop.params.organization_id; json_data.fields.title = params.alert_subject; json_data.fields.description = params.alert_message.replace(''<'', ''<'') .replace(''>'', ''>'') .replace(/(?:\\r\\n|\\r|\\n)/g, ''
''); }, setUpdatePayload: function () { json_data.operation = ''core/update''; json_data.key = Itop.params.id; json_data.fields.title = params.alert_subject; json_data.fields[Itop.params.log] = { add_item: { message: params.alert_subject + ''\\n'' + params.alert_message, format: ''text'' } }; }, request: function (data) { [''url'', ''user'', ''password'', ''organization_id'', ''class'', ''api_version'', ''id''].forEach(function (field) { if (typeof Itop.params !== ''object'' || typeof Itop.params[field] === ''undefined'' || Itop.params[field] === '''' ) { throw ''Required Itop param is not set: "itop_'' + field + ''".''; } }); var response, url = Itop.params.url, request = new HttpRequest(), object; request.addHeader(''Content-Type: multipart/form-data''); request.addHeader(''Authorization: Basic '' + btoa(Itop.params.user + '':'' + Itop.params.password)); if (Itop.HTTPProxy) { request.setProxy(Itop.HTTPProxy); } if (typeof data !== ''undefined'') { data = JSON.stringify(data); } Zabbix.log(4, ''[ iTop Webhook ] Sending request: '' + url + ''&json_data='' + data); response = request.post(url + ''&json_data='' + encodeURIComponent(data)); Zabbix.log(4, ''[ iTop Webhook ] Received response with status code '' + request.getStatus() + ''\\n'' + response); try { response = JSON.parse(response); } catch (error) { Zabbix.log(4, ''[ iTop Webhook ] Failed to parse response received from iTop''); throw ''Failed to parse response received from iTop.\\nRequest status code '' + request.getStatus() + ''. Check debug log for more information.''; } if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Request failed with status code '' + request.getStatus() + ''. Check debug log for more information.''; } else if (typeof response.code !== ''undefined'' && response.code !== 0) { throw ''Request failed with iTop code '' + response.code + '': '' + JSON.stringify(response.message) + ''. Check debug log for more information.''; } else { Object.keys(response.objects) .forEach(function (key) { object = response.objects[key]; }); return { status: request.getStatus(), response: object.fields }; } } }; try { var params = JSON.parse(value), json_data = {}, itop_params = {}, result = {tags: {}}, required_params = [ ''alert_subject'', ''summary'', ''event_recovery_value'', ''event_source'', ''event_value'', ''action_name'' ]; Object.keys(params) .forEach(function (key) { if (key.startsWith(''itop_'')) { itop_params[key.substring(5)] = params[key]; } else if (required_params.indexOf(key) !== -1 && params[key] === '''') { throw ''Parameter "'' + key + ''" can\\''t be empty.''; } }); if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) { throw ''Incorrect "event_source" parameter given: '' + params.event_source + ''\\nMust be 0-3.''; } // Check {EVENT.VALUE} for trigger-based and internal events. if (params.event_value !== ''0'' && params.event_value !== ''1'' && (params.event_source === ''0'' || params.event_source === ''3'')) { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''\\nMust be 0 or 1.''; } // Check {EVENT.UPDATE.STATUS} only for trigger-based events. if (params.event_update_status !== ''0'' && params.event_update_status !== ''1'' && params.event_source === ''0'') { throw ''Incorrect "event_update_status" parameter given: '' + params.event_update_status + ''\\nMust be 0 or 1.''; } if (params.event_source !== ''0'' && params.event_recovery_value === ''0'') { throw ''Recovery operations are supported only for trigger-based actions.''; } Itop.setParams(itop_params); Itop.setProxy(params.HTTPProxy); json_data.operation = ''''; json_data.class = Itop.params.class; json_data.comment = Itop.params.comment; json_data.output_fields = ''id, friendlyname''; json_data.fields = {}; // Create issue for non trigger-based events. if (params.event_source !== ''0'' && params.event_recovery_value !== ''0'') { Itop.setCreatePayload(); Itop.request(json_data); } // Create issue for trigger-based events. else if (params.event_value === ''1'' && params.event_update_status === ''0'' && (Itop.params.id === ''{EVENT.TAGS.__zbx_itop_id}'' || Itop.params.id === ''*UNKNOWN*'')) { Itop.setCreatePayload(); var response = Itop.request(json_data); result.tags.__zbx_itop_id = response.response.id; result.tags.__zbx_itop_key = response.response.friendlyname; result.tags.__zbx_itop_link = params.itop_url + (params.itop_url.endsWith(''/'') ? '''' : ''/'') + ''pages/UI.php?operation=details&class='' + encodeURIComponent(Itop.params.class) + ''&id='' + encodeURIComponent(response.response.id); } // Update created issue for trigger-based event. else { if (Itop.params.id === ''{EVENT.TAGS.__zbx_itop_id}'' || Itop.params.id === ''*UNKNOWN*'') { throw ''Incorrect iTop ticket ID given: '' + Itop.params.id; } Itop.setUpdatePayload(); Itop.request(json_data); } return JSON.stringify(result); } catch (error) { Zabbix.log(3, ''[ iTop Webhook ] ERROR: '' + error); throw ''Sending failed: '' + error; }','30s','1','1','{EVENT.TAGS.__zbx_itop_link}','iTop: {EVENT.TAGS.__zbx_itop_key}','','0'), ('46','4','Jira','','','','','','','','25','0','0','0','0','1','3','10s','1',E'const CLogger = function(serviceName) { this.serviceName = serviceName; this.INFO = 4 this.WARN = 3 this.ERROR = 2 this.log = function(level, msg) { Zabbix.log(level, ''['' + this.serviceName + ''] '' + msg); } } const CWebhook = function(value) { try { params = JSON.parse(value); if ([''0'', ''1'', ''2'', ''3'', ''4''].indexOf(params.event_source) === -1) { throw ''Incorrect "event_source" parameter given: '' + params.event_source + ''.\\nMust be 0-4.''; } if ([''0'', ''3'', ''4''].indexOf(params.event_source) !== -1 && [''0'', ''1''].indexOf(params.event_value) === -1) { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''.\\nMust be 0 or 1.''; } if ([''0'', ''3'', ''4''].indexOf(params.event_source) !== -1) { if (params.event_source === ''1'' && [''0'', ''1'', ''2'', ''3''].indexOf(params.event_value) === -1) { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''.\\nMust be 0-3.''; } if (params.event_source === ''0'' && [''0'', ''1''].indexOf(params.event_update_status) === -1) { throw ''Incorrect "event_update_status" parameter given: '' + params.event_update_status + ''.\\nMust be 0 or 1.''; } if (params.event_source === ''4'') { if ([''0'', ''1'', ''2'', ''3'', ''4'', ''5''].indexOf(params.event_update_nseverity) !== -1 && params.event_update_nseverity != params.event_nseverity) { params.event_nseverity = params.event_update_nseverity; params.event_severity = params.event_update_severity; params.event_update_status = ''1''; } } } this.runCallback = function(name, params) { if (typeof this[name] === ''function'') { return this[name].apply(this, [params]); } } this.handleEvent = function(source, event) { const alert = { source: source, event: event }; return [ this.runCallback(''on'' + source + event, alert), this.runCallback(''on'' + event, alert), this.runCallback(''onEvent'', alert) ]; } this.handleEventless = function(source) { const alert = { source: source, event: null }; return [ this.runCallback(''on'' + source, alert), this.runCallback(''onEvent'', alert) ]; } this.run = function() { var results = []; if (typeof this.httpProxy === ''string'' && this.httpProxy.trim() !== '''') { this.request.setProxy(this.httpProxy); } const types = { ''0'': ''Trigger'', ''1'': ''Discovery'', ''2'': ''Autoreg'', ''3'': ''Internal'', ''4'': ''Service'' }; if ([''0'', ''3'', ''4''].indexOf(this.params.event_source) !== -1) { var event = (this.params.event_update_status === ''1'') ? ''Update'' : ((this.params.event_value === ''1'') ? ''Problem'' : ''Resolve''); results = this.handleEvent(types[this.params.event_source], event); } else if (typeof types[this.params.event_source] !== ''undefined'') { results = this.handleEventless(types[this.params.event_source]); } else { throw ''Unexpected "event_source": '' + this.params.event_source; } for (idx in results) { if (typeof results[idx] !== ''undefined'') { return JSON.stringify(results[idx]); } } } this.httpProxy = params.http_proxy; this.params = params; this.runCallback(''onCheckParams'', {}); } catch (error) { throw ''Webhook processing failed: '' + error; } } const CWebhookHelper = { createProblemURL: function(event_source, zabbix_url, trigger_id, event_id) { if (event_source === ''0'') { return zabbix_url + ''/tr_events.php?triggerid='' + trigger_id + ''&eventid='' + event_id; } else if (event_source === ''4'') { return zabbix_url + ''/zabbix.php?action=service.list''; } return zabbix_url; }, }; const CParamValidator = { isType: function(value, type) { if (type === ''array'') { return Array.isArray(value); } if (type === ''integer'') { return CParamValidator.isInteger(value); } if (type === ''float'') { return CParamValidator.isFloat(value); } return (typeof value === type); }, isInteger: function(value) { if (!CParamValidator.ifMatch(value, /^-?\\d+$/)) { return false; } return !isNaN(parseInt(value)); }, isFloat: function(value) { if (!CParamValidator.ifMatch(value, /^-?\\d+\\.\\d+$/)) { return false; } return !isNaN(parseFloat(value)); }, isDefined: function(value) { return !CParamValidator.isType(value, ''undefined''); }, isEmpty: function(value) { if (!CParamValidator.isType(value, ''string'')) { throw ''Value "'' + value + ''" must be a string to be checked for emptiness.''; } return (value.trim() === ''''); }, isMacroSet: function(value, macro) { if (CParamValidator.isDefined(macro)) { return !(CParamValidator.ifMatch(value, ''^\\{'' + macro + ''\\}$'')) } return !(CParamValidator.ifMatch(value, ''^\\{[$#]{0,1}[A-Z_\\.]+[\\:]{0,1}["]{0,1}.*["]{0,1}\\}$'') || value === ''*UNKNOWN*'') }, withinRange: function(value, min, max) { if (!CParamValidator.isType(value, ''number'')) { throw ''Value "'' + value + ''" must be a number to be checked for range.''; } if (value < ((CParamValidator.isDefined(min)) ? min : value) || value > ((CParamValidator.isDefined(max)) ? max : value)) { return false; } return true; }, inArray: function(value, array) { if (!CParamValidator.isType(array, ''array'')) { throw ''The array must be an array to check the value for existing in it.''; } return (array.indexOf((typeof value === ''string'') ? value.toLowerCase() : value) !== -1); }, ifMatch: function(value, regex) { return (new RegExp(regex)).test(value); }, match: function(value, regex) { if (!CParamValidator.isType(value, ''string'')) { throw ''Value "'' + value + ''" must be a string to be matched with the regular expression.''; } return value.match(new RegExp(regex)); }, checkURL: function(value) { if (CParamValidator.isEmpty(value)) { throw ''URL value "'' + value + ''" must be a non-empty string.''; } if (!CParamValidator.ifMatch(value, ''^(http|https):\\/\\/.+'')) { throw ''URL value "'' + value + ''" must contain a schema.''; } return value.endsWith(''/'') ? value.slice(0, -1) : value; }, check: function(key, rule, params) { if (!CParamValidator.isDefined(rule.type)) { throw ''Mandatory attribute "type" has not been defined for parameter "'' + key + ''".''; } if (!CParamValidator.isDefined(params[key])) { throw ''Checked parameter "'' + key + ''" was not found in the list of input parameters.''; } var value = params[key], error_message = null; switch (rule.type) { case ''string'': if (!CParamValidator.isType(value, ''string'')) { throw ''Value "'' + key + ''" must be a string.''; } if (CParamValidator.isEmpty(value)) { error_message = ''Value "'' + key + ''" must be a non-empty string''; break; } if (CParamValidator.isDefined(rule.len) && value.length < rule.len) { error_message = ''Value "'' + key + ''" must be a string with a length > '' + rule.len; } if (CParamValidator.isDefined(rule.regex) && !CParamValidator.ifMatch(value, rule.regex)) { error_message = ''Value "'' + key + ''" must match the regular expression "'' + rule.regex + ''"''; } if (CParamValidator.isDefined(rule.url) && rule.url === true) { value = CParamValidator.checkURL(value); } break; case ''integer'': if (!CParamValidator.isInteger(value)) { error_message = ''Value "'' + key + ''" must be an integer''; break; } value = parseInt(value); break; case ''float'': if (!CParamValidator.isFloat(value)) { error_message = ''Value "'' + key + ''" must be a floating-point number''; break; } value = parseFloat(value); break; case ''boolean'': if (CParamValidator.inArray(value, [''1'', ''true'', ''yes'', ''on''])) { value = true; } else if (CParamValidator.inArray(value, [''0'', ''false'', ''no'', ''off''])) { value = false; } else { error_message = ''Value "'' + key + ''" must be a boolean-like.''; } break; case ''array'': try { value = JSON.parse(value); } catch (error) { throw ''Value "'' + key + ''" contains invalid JSON.''; } if (!CParamValidator.isType(value, ''array'')) { error_message = ''Value "'' + key + ''" must be an array.''; } if (CParamValidator.isDefined(rule.tags) && rule.tags === true) { value = value.reduce(function(acc, obj) { acc[obj.tag] = obj.value || null; return acc; }, {}); } break; case ''object'': value = JSON.parse(value); if (!CParamValidator.isType(value, ''object'')) { error_message = ''Value "'' + key + ''" must be an object.''; } break; default: throw ''Unexpected attribute type "'' + rule.type + ''" for value "'' + key + ''". Available: '' + [''integer'', ''float'', ''string'', ''boolean'', ''array'', ''object''].join('', ''); } params[key] = value; if (CParamValidator.inArray(rule.type, [''integer'', ''float'']) && error_message === null && (CParamValidator.isDefined(rule.min) || CParamValidator.isDefined(rule.max)) && !CParamValidator.withinRange(value, rule.min, rule.max)) { error_message = ''Value "'' + key + ''" must be a number '' + ((CParamValidator.isDefined(rule.min) && CParamValidator.isDefined(rule.max)) ? (rule.min + ''..'' + rule.max) : ((CParamValidator.isDefined(rule.min)) ? ''>'' + rule.min : ''<'' + rule.max)); } else if (CParamValidator.isDefined(rule.array) && !CParamValidator.inArray(value, rule.array)) { error_message = ''Value "'' + key + ''" must be in the array '' + JSON.stringify(rule.array); } else if (CParamValidator.isDefined(rule.macro) && !CParamValidator.isMacroSet(value.toString(), rule.macro)) { error_message = ''The macro '' + ((CParamValidator.isDefined(rule.macro)) ? ''{'' + rule.macro + ''} '' : '' '') + ''is not set''; } if (error_message !== null) { if (CParamValidator.isDefined(rule.default) && CParamValidator.isType(rule.default, rule.type)) { params[key] = rule.default; } else { Zabbix.log(4, ''Default value for "'' + key + ''" must be a '' + rule.type + ''. Skipped.''); throw ''Incorrect value for variable "'' + key + ''". '' + error_message; } } return this; }, validate: function(rules, params) { if (!CParamValidator.isType(params, ''object'') || CParamValidator.isType(params, ''array'')) { throw ''Incorrect parameters value. The value must be an object.''; } for (var key in rules) { CParamValidator.check(key, rules[key], params); } } } const CHttpRequest = function(logger) { this.request = new HttpRequest(); if (typeof logger !== ''object'' || logger === null) { this.logger = Zabbix; } else { this.logger = logger; } this.clearHeader = function() { this.request.clearHeader(); } this.addHeaders = function(value) { var headers = []; if (typeof value === ''object'' && value !== null) { if (!Array.isArray(value)) { Object.keys(value).forEach(function(key) { headers.push(key + '': '' + value[key]); }); } else { headers = value; } } else if (typeof value === ''string'') { value.split(''\\r\\n'').forEach(function(header) { headers.push(header); }); } for (var idx in headers) { this.request.addHeader(headers[idx]); } } this.setProxy = function(proxy) { this.request.setProxy(proxy); } this.plainRequest = function(method, url, data) { var resp = null; method = method.toLowerCase(); this.logger.log(4, ''Sending '' + method + '' request:'' + JSON.stringify(data)); if ([''get'', ''post'', ''put'', ''patch'', ''delete'', ''trace''].indexOf(method) !== -1) { resp = this.request[method](url, data); } else if ([''connect'', ''head'', ''options''].indexOf(method) !== -1) { resp = this.request[method](url); } else { throw ''Unexpected method. Method '' + method + '' is not supported.''; } this.logger.log(4, ''Response has been received: '' + resp); return resp; } this.jsonRequest = function(method, url, data) { this.addHeaders(''Content-Type: application/json''); var resp = this.plainRequest(method, url, JSON.stringify(data)); try { resp = JSON.parse(resp); } catch (error) { throw ''Failed to parse response: not well-formed JSON was received''; } return resp; } this.getStatus = function() { return this.request.getStatus(); } } var ZABBIX_SEVERITY_MAP = ["not_classified", "information", "warning", "average", "high", "disaster"]; var serviceLogName = ''Jira Webhook'', Logger = new CLogger(serviceLogName), Jira = CWebhook; Jira.prototype.onCheckParams = function () { CParamValidator.validate({ jira_url: { type: ''string'', url: true}, jira_user: { type: ''string'' }, jira_password: { type: ''string'' }, jira_issue_type: { type: ''string'' }, jira_project_key: { type: ''string'' }, event_source: { type: ''string'' }, alert_subject: { type: ''string'' }, alert_message: { type: ''string'' }, event_nseverity: { type: ''integer'', default: 0 } }, this.params); this.priority = this.params.event_source == 3 ? this.params.jira_priority_internal : this.params[''severity_'' + ZABBIX_SEVERITY_MAP[this.params.event_nseverity]]; this.params.event_tags_json = parseTags(this.params.event_tags_json, false); if (this.params.event_tags_json.length > 0) { this.labels = setLabels(this.params.event_tags_json); } parseOptionalFields(); this.result = { tags: {} }; } function escapeMarkup(str) { var length = str.length, result = '''', markup = [''{'', ''|'', ''}'', ''~'', ''_'', ''\\\\'', ''['', '']'', ''^'', ''<'', ''>'', ''?'', ''!'', ''#'', ''+'', ''*'', ''&'']; for (var i = 0; i < length; i++) { var char = str[i]; result += (markup.indexOf(char) !== -1) ? (''&#'' + str[i].charCodeAt() + '';'') : char; } return result; } function parseOptionalFields() { this.params.customfields = {}; this.params.components = []; Object.keys(this.params).forEach(function (key) { if (key.startsWith(''customfield_'')) { this.params.customfields[key] = this.params[key]; } if (key.startsWith(''component_'')) { this.params.components.push({"name": this.params[key]}) } }); } Jira.prototype.addCustomFields = function (data) { if (typeof this.params.customfields === ''object'' && Object.keys(this.params.customfields).length) { var schemaData = this.sendRequest(''GET'', ''/rest/api/latest/field''), schema = {}; schemaData.forEach(function (item) { schema[item.id] = item.schema; }); Object.keys(this.params.customfields).forEach(function (field) { if (typeof schema[field] === ''object'' && schema[field].type) { const type = schema[field].type; if (type === ''number'') { data.fields[field] = parseInt(this.params.customfields[field]); } else if (type === ''string'' && schema[field][''custom''].split('':'')[1] === ''url'') { if (this.params.customfields[field] === ''zabbix_url'') { data.fields[field] = CWebhookHelper.createProblemURL(this.params.event_source, this.params.zabbix_url, this.params.trigger_id, this.params.event_id); } else { data.fields[field] = this.params.customfields[field]; } } else if (type === ''date'') { if (this.params.customfields[field].match(/\\d+[.-]\\d+[.-]\\d+/) !== null) { data.fields[field] = this.params.customfields[field].replace(/\\./g, ''-''); } } else if (type === ''datetime'') { if (this.params.customfields[field].match(/\\d+[.-]\\d+[.-]\\d+T\\d+:\\d+:\\d+/) !== null) { data.fields[field] = this.params.customfields[field].replace(/\\./g, ''-''); } } else if (type === ''option'') { data.fields[field] = { ''value'': this.params.customfields[field] }; } else if (type === ''array'') { if (schema[field].items === ''option'') { const valuesList = this.params.customfields[field].split('',''); data.fields[field] = []; valuesList.forEach(function (val) { data.fields[field].push({''value'': val}) }); } else { data.fields[field] = [this.params.customfields[field]]; } } else { data.fields[field] = this.params.customfields[field]; } } }); } else { Logger.log(Logger.WARN, ''No customfields found.''); } return data; } function parseTags(event_tags) { try { return JSON.parse(event_tags); } catch (error) { if (this.params.event_source == 0 || this.params.event_source > 2) { Logger.log(Logger.WARN, ''No event tags were found. Should be an object. Received event tags: "'' + event_tags + ''".''); } return []; } } function getTagValue(tags, key, throw_on_fail) { for (i in tags) { if (tags[i].tag === key) { return tags[i].value } } if (!throw_on_fail) { return false; } else { throw ''Tag "'' + key + ''" is not in the event tag list.'' } }; function setLabels(event_tags_json) { var buffer = []; event_tags_json.forEach(function (tag) { if (typeof tag.tag !== ''undefined'' && typeof tag.value !== ''undefined'' && !tag.tag.startsWith(''__zbx'')) { label = (tag.tag + (tag.value ? ('':'' + tag.value) : '''')).replace(/\\s/g, ''_''); if (label.length < 256) { buffer.push(label); } } }); if (buffer.length === 0) { Logger.log(Logger.WARN, ''No labels were set.''); } return buffer; } Jira.prototype.commentIssue = function (issue_key) { var data = { body: this.params.alert_message, }; this.sendRequest(''POST'', ''/rest/api/latest/issue/'' + encodeURIComponent(issue_key) + ''/comment'', data); } Jira.prototype.sendRequest = function (method, path, data) { this.request.clearHeader(); this.request.addHeaders(''Authorization: Basic '' + btoa(this.params.jira_user + '':'' + this.params.jira_password)); var response = this.request.jsonRequest(method, this.params.jira_url + path, data); if ((this.request.getStatus() !== 200 && this.request.getStatus() !== 201)) { Logger.log(Logger.WARN, ''HTTP code: '' + this.request.getStatus()); if (CParamValidator.isType(response.description, ''string'')) { throw response.description; } else { Logger.log(Logger.WARN, ''Request not successful. Received response: '' + JSON.stringify(response)); throw ''Unknown error. Check debug log for more information.''; } } return response; } Jira.prototype.onProblem = function (alert) { if (this.params.event_tags_json.length > 0 && getTagValue(this.params.event_tags_json, ''__zbx_jira_issuekey'', false) !== false) { return this.onUpdate(alert, true); } var data = { fields: { project: { key: this.params.jira_project_key }, issuetype: { name: this.params.jira_issue_type }, summary: this.params.alert_subject, description: this.params.alert_message, priority: { "name": this.priority } } }; if (this.labels && this.labels.length > 0) { data.fields.labels = this.labels; } if (this.params.components && this.params.components.length > 0) { data.fields.components = this.params.components; } var response = this.sendRequest(''POST'', ''/rest/api/latest/issue'', this.addCustomFields(data)); this.result.tags = { __zbx_jira_issuekey: response.key, __zbx_jira_issuelink: this.params.jira_url + ''/browse/'' + response.key } return this.result; } Jira.prototype.onUpdate = function (alert, dontUpdatePriority) { var data = { fields: { summary: this.params.alert_subject, priority: { "name": this.priority } } }; if (dontUpdatePriority && this.params.event_source != 0) { delete data[''fields''][''priority'']; } var jira_issue_key = getTagValue(this.params.event_tags_json, ''__zbx_jira_issuekey'', true); this.sendRequest(''PUT'', ''/rest/api/latest/issue/'' + encodeURIComponent(jira_issue_key) + ''?returnIssue=true'', this.addCustomFields(data)); this.commentIssue(jira_issue_key); return this.result; } Jira.prototype.onResolve = function (alert) { return this.onUpdate(alert, true); } Jira.prototype.onDiscovery = function (alert) { this.priority = this.params.jira_priority_discovery; return this.onProblem(alert); } Jira.prototype.onAutoreg = function (alert) { this.priority = this.params.jira_priority_autoregistration; return this.onProblem(alert); } try { var hook = new Jira(value); hook.request = new CHttpRequest(Logger); return hook.run(); } catch (error) { Logger.log(Logger.WARN, ''notification failed: '' + error); throw ''Sending failed: '' + error; }','30s','1','1','{EVENT.TAGS.__zbx_jira_issuelink}','Jira: {EVENT.TAGS.__zbx_jira_issuekey}','https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/templates/media/jira 1. To make this integration work, you will need the following from Jira: * Jira instance URL; * Jira project key and issue type that the issues created by Zabbix will use; * Jira username and password or API token. API token is strongly recommended and can be obtained at https://id.atlassian.com/manage/api-tokens. 2. In the Zabbix web interface, go to Administration → Macros section. Set up the global macro "{$ZABBIX.URL}" which will contain the URL to the Zabbix frontend. 3. On this page replace the placeholder ''<...>'' values with the ones from the step #1. 4. In Zabbix, you need to have a Zabbix user and add Media with the Jira media type. Make sure this user has access to all hosts for which you would like problem issues to be created in Jira.','0'), ('47','4','Jira Service Management','','','','','','','','25','0','0','0','0','1','3','10s','1',E'const CLogger = function(serviceName) { this.serviceName = serviceName; this.INFO = 4 this.WARN = 3 this.ERROR = 2 this.log = function(level, msg) { Zabbix.log(level, ''['' + this.serviceName + ''] '' + msg); } } const CWebhook = function(value) { try { params = JSON.parse(value); if ([''0'', ''1'', ''2'', ''3'', ''4''].indexOf(params.event_source) === -1) { throw ''Incorrect "event_source" parameter given: '' + params.event_source + ''.\\nMust be 0-4.''; } if ([''0'', ''3'', ''4''].indexOf(params.event_source) !== -1 && [''0'', ''1''].indexOf(params.event_value) === -1) { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''.\\nMust be 0 or 1.''; } if ([''0'', ''3'', ''4''].indexOf(params.event_source) !== -1) { if (params.event_source === ''1'' && [''0'', ''1'', ''2'', ''3''].indexOf(params.event_value) === -1) { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''.\\nMust be 0-3.''; } if (params.event_source === ''0'' && [''0'', ''1''].indexOf(params.event_update_status) === -1) { throw ''Incorrect "event_update_status" parameter given: '' + params.event_update_status + ''.\\nMust be 0 or 1.''; } if (params.event_source === ''4'') { if ([''0'', ''1'', ''2'', ''3'', ''4'', ''5''].indexOf(params.event_update_nseverity) !== -1 && params.event_update_nseverity != params.event_nseverity) { params.event_nseverity = params.event_update_nseverity; params.event_severity = params.event_update_severity; params.event_update_status = ''1''; } } } this.runCallback = function(name, params) { if (typeof this[name] === ''function'') { return this[name].apply(this, [params]); } } this.handleEvent = function(source, event) { const alert = { source: source, event: event }; return [ this.runCallback(''on'' + source + event, alert), this.runCallback(''on'' + event, alert), this.runCallback(''onEvent'', alert) ]; } this.handleEventless = function(source) { const alert = { source: source, event: null }; return [ this.runCallback(''on'' + source, alert), this.runCallback(''onEvent'', alert) ]; } this.run = function() { var results = []; if (typeof this.httpProxy === ''string'' && this.httpProxy.trim() !== '''') { this.request.setProxy(this.httpProxy); } const types = { ''0'': ''Trigger'', ''1'': ''Discovery'', ''2'': ''Autoreg'', ''3'': ''Internal'', ''4'': ''Service'' }; if ([''0'', ''3'', ''4''].indexOf(this.params.event_source) !== -1) { var event = (this.params.event_update_status === ''1'') ? ''Update'' : ((this.params.event_value === ''1'') ? ''Problem'' : ''Resolve''); results = this.handleEvent(types[this.params.event_source], event); } else if (typeof types[this.params.event_source] !== ''undefined'') { results = this.handleEventless(types[this.params.event_source]); } else { throw ''Unexpected "event_source": '' + this.params.event_source; } for (idx in results) { if (typeof results[idx] !== ''undefined'') { return JSON.stringify(results[idx]); } } } this.httpProxy = params.http_proxy; this.params = params; this.runCallback(''onCheckParams'', {}); } catch (error) { throw ''Webhook processing failed: '' + error; } } const CWebhookHelper = { createProblemURL: function(event_source, zabbix_url, trigger_id, event_id) { if (event_source === ''0'') { return zabbix_url + ''/tr_events.php?triggerid='' + trigger_id + ''&eventid='' + event_id; } else if (event_source === ''4'') { return zabbix_url + ''/zabbix.php?action=service.list''; } return zabbix_url; }, }; const CParamValidator = { isType: function(value, type) { if (type === ''array'') { return Array.isArray(value); } if (type === ''integer'') { return CParamValidator.isInteger(value); } if (type === ''float'') { return CParamValidator.isFloat(value); } return (typeof value === type); }, isInteger: function(value) { if (!CParamValidator.ifMatch(value, /^-?\\d+$/)) { return false; } return !isNaN(parseInt(value)); }, isFloat: function(value) { if (!CParamValidator.ifMatch(value, /^-?\\d+\\.\\d+$/)) { return false; } return !isNaN(parseFloat(value)); }, isDefined: function(value) { return !CParamValidator.isType(value, ''undefined''); }, isEmpty: function(value) { if (!CParamValidator.isType(value, ''string'')) { throw ''Value "'' + value + ''" must be a string to be checked for emptiness.''; } return (value.trim() === ''''); }, isMacroSet: function(value, macro) { if (CParamValidator.isDefined(macro)) { return !(CParamValidator.ifMatch(value, ''^\\{'' + macro + ''\\}$'')) } return !(CParamValidator.ifMatch(value, ''^\\{[$#]{0,1}[A-Z_\\.]+[\\:]{0,1}["]{0,1}.*["]{0,1}\\}$'') || value === ''*UNKNOWN*'') }, withinRange: function(value, min, max) { if (!CParamValidator.isType(value, ''number'')) { throw ''Value "'' + value + ''" must be a number to be checked for range.''; } if (value < ((CParamValidator.isDefined(min)) ? min : value) || value > ((CParamValidator.isDefined(max)) ? max : value)) { return false; } return true; }, inArray: function(value, array) { if (!CParamValidator.isType(array, ''array'')) { throw ''The array must be an array to check the value for existing in it.''; } return (array.indexOf((typeof value === ''string'') ? value.toLowerCase() : value) !== -1); }, ifMatch: function(value, regex) { return (new RegExp(regex)).test(value); }, match: function(value, regex) { if (!CParamValidator.isType(value, ''string'')) { throw ''Value "'' + value + ''" must be a string to be matched with the regular expression.''; } return value.match(new RegExp(regex)); }, checkURL: function(value) { if (CParamValidator.isEmpty(value)) { throw ''URL value "'' + value + ''" must be a non-empty string.''; } if (!CParamValidator.ifMatch(value, ''^(http|https):\\/\\/.+'')) { throw ''URL value "'' + value + ''" must contain a schema.''; } return value.endsWith(''/'') ? value.slice(0, -1) : value; }, check: function(key, rule, params) { if (!CParamValidator.isDefined(rule.type)) { throw ''Mandatory attribute "type" has not been defined for parameter "'' + key + ''".''; } if (!CParamValidator.isDefined(params[key])) { throw ''Checked parameter "'' + key + ''" was not found in the list of input parameters.''; } var value = params[key], error_message = null; switch (rule.type) { case ''string'': if (!CParamValidator.isType(value, ''string'')) { throw ''Value "'' + key + ''" must be a string.''; } if (CParamValidator.isEmpty(value)) { error_message = ''Value "'' + key + ''" must be a non-empty string''; break; } if (CParamValidator.isDefined(rule.len) && value.length < rule.len) { error_message = ''Value "'' + key + ''" must be a string with a length > '' + rule.len; } if (CParamValidator.isDefined(rule.regex) && !CParamValidator.ifMatch(value, rule.regex)) { error_message = ''Value "'' + key + ''" must match the regular expression "'' + rule.regex + ''"''; } if (CParamValidator.isDefined(rule.url) && rule.url === true) { value = CParamValidator.checkURL(value); } break; case ''integer'': if (!CParamValidator.isInteger(value)) { error_message = ''Value "'' + key + ''" must be an integer''; break; } value = parseInt(value); break; case ''float'': if (!CParamValidator.isFloat(value)) { error_message = ''Value "'' + key + ''" must be a floating-point number''; break; } value = parseFloat(value); break; case ''boolean'': if (CParamValidator.inArray(value, [''1'', ''true'', ''yes'', ''on''])) { value = true; } else if (CParamValidator.inArray(value, [''0'', ''false'', ''no'', ''off''])) { value = false; } else { error_message = ''Value "'' + key + ''" must be a boolean-like.''; } break; case ''array'': try { value = JSON.parse(value); } catch (error) { throw ''Value "'' + key + ''" contains invalid JSON.''; } if (!CParamValidator.isType(value, ''array'')) { error_message = ''Value "'' + key + ''" must be an array.''; } if (CParamValidator.isDefined(rule.tags) && rule.tags === true) { value = value.reduce(function(acc, obj) { acc[obj.tag] = obj.value || null; return acc; }, {}); } break; case ''object'': value = JSON.parse(value); if (!CParamValidator.isType(value, ''object'')) { error_message = ''Value "'' + key + ''" must be an object.''; } break; default: throw ''Unexpected attribute type "'' + rule.type + ''" for value "'' + key + ''". Available: '' + [''integer'', ''float'', ''string'', ''boolean'', ''array'', ''object''].join('', ''); } params[key] = value; if (CParamValidator.inArray(rule.type, [''integer'', ''float'']) && error_message === null && (CParamValidator.isDefined(rule.min) || CParamValidator.isDefined(rule.max)) && !CParamValidator.withinRange(value, rule.min, rule.max)) { error_message = ''Value "'' + key + ''" must be a number '' + ((CParamValidator.isDefined(rule.min) && CParamValidator.isDefined(rule.max)) ? (rule.min + ''..'' + rule.max) : ((CParamValidator.isDefined(rule.min)) ? ''>'' + rule.min : ''<'' + rule.max)); } else if (CParamValidator.isDefined(rule.array) && !CParamValidator.inArray(value, rule.array)) { error_message = ''Value "'' + key + ''" must be in the array '' + JSON.stringify(rule.array); } else if (CParamValidator.isDefined(rule.macro) && !CParamValidator.isMacroSet(value.toString(), rule.macro)) { error_message = ''The macro '' + ((CParamValidator.isDefined(rule.macro)) ? ''{'' + rule.macro + ''} '' : '' '') + ''is not set''; } if (error_message !== null) { if (CParamValidator.isDefined(rule.default) && CParamValidator.isType(rule.default, rule.type)) { params[key] = rule.default; } else { Zabbix.log(4, ''Default value for "'' + key + ''" must be a '' + rule.type + ''. Skipped.''); throw ''Incorrect value for variable "'' + key + ''". '' + error_message; } } return this; }, validate: function(rules, params) { if (!CParamValidator.isType(params, ''object'') || CParamValidator.isType(params, ''array'')) { throw ''Incorrect parameters value. The value must be an object.''; } for (var key in rules) { CParamValidator.check(key, rules[key], params); } } } const CHttpRequest = function(logger) { this.request = new HttpRequest(); if (typeof logger !== ''object'' || logger === null) { this.logger = Zabbix; } else { this.logger = logger; } this.clearHeader = function() { this.request.clearHeader(); } this.addHeaders = function(value) { var headers = []; if (typeof value === ''object'' && value !== null) { if (!Array.isArray(value)) { Object.keys(value).forEach(function(key) { headers.push(key + '': '' + value[key]); }); } else { headers = value; } } else if (typeof value === ''string'') { value.split(''\\r\\n'').forEach(function(header) { headers.push(header); }); } for (var idx in headers) { this.request.addHeader(headers[idx]); } } this.setProxy = function(proxy) { this.request.setProxy(proxy); } this.plainRequest = function(method, url, data) { var resp = null; method = method.toLowerCase(); this.logger.log(4, ''Sending '' + method + '' request:'' + JSON.stringify(data)); if ([''get'', ''post'', ''put'', ''patch'', ''delete'', ''trace''].indexOf(method) !== -1) { resp = this.request[method](url, data); } else if ([''connect'', ''head'', ''options''].indexOf(method) !== -1) { resp = this.request[method](url); } else { throw ''Unexpected method. Method '' + method + '' is not supported.''; } this.logger.log(4, ''Response has been received: '' + resp); return resp; } this.jsonRequest = function(method, url, data) { this.addHeaders(''Content-Type: application/json''); var resp = this.plainRequest(method, url, JSON.stringify(data)); try { resp = JSON.parse(resp); } catch (error) { throw ''Failed to parse response: not well-formed JSON was received''; } return resp; } this.getStatus = function() { return this.request.getStatus(); } } var ZABBIX_SEVERITY_MAP = ["not_classified", "information", "warning", "average", "high", "disaster"]; var serviceLogName = ''Jira Service Management Webhook'', Logger = new CLogger(serviceLogName), Jira = CWebhook; Jira.prototype.onCheckParams = function () { CParamValidator.validate({ jira_url: { type: ''string'', url: true}, jira_user: { type: ''string'' }, jira_password: { type: ''string'' }, jira_request_type_id: { type: ''string'' }, jira_servicedesk_id: { type: ''string'' }, issue_comments_public: {type: ''boolean'', default: false}, event_source: { type: ''string'' }, alert_subject: { type: ''string'' }, alert_message: { type: ''string'' }, event_nseverity: { type: ''integer'', default: 0 } }, this.params); this.priority = this.params.event_source == 3 ? this.params.jira_priority_internal : this.params[''severity_'' + ZABBIX_SEVERITY_MAP[this.params.event_nseverity]]; this.params.event_tags_json = parseTags(this.params.event_tags_json, false); if (this.params.event_tags_json.length > 0) { this.labels = setLabels(this.params.event_tags_json); } parseOptionalFields(); this.result = { tags: {} }; } function escapeMarkup(str) { var length = str.length, result = '''', markup = [''{'', ''|'', ''}'', ''~'', ''_'', ''\\\\'', ''['', '']'', ''^'', ''<'', ''>'', ''?'', ''!'', ''#'', ''+'', ''*'', ''&'']; for (var i = 0; i < length; i++) { var char = str[i]; result += (markup.indexOf(char) !== -1) ? (''&#'' + str[i].charCodeAt() + '';'') : char; } return result; } function parseOptionalFields() { this.params.customfields = {}; this.params.components = []; Object.keys(this.params).forEach(function (key) { if (key.startsWith(''customfield_'')) { this.params.customfields[key] = this.params[key]; } if (key.startsWith(''component_'')) { this.params.components.push({"name": this.params[key]}) } }); } Jira.prototype.addCustomFields = function (data, requestFieldValues) { if (typeof this.params.customfields === ''object'' && Object.keys(this.params.customfields).length) { var schemaData = this.sendRequest(''GET'', ''/rest/api/latest/field''), schema = {}; schemaData.forEach(function (item) { schema[item.id] = item.schema; }); var placeholder = (requestFieldValues ? ''requestFieldValues'' : ''fields''); Object.keys(this.params.customfields).forEach(function (field) { if (typeof schema[field] === ''object'' && schema[field].type) { const type = schema[field].type; if (type === ''number'') { data[placeholder][field] = parseInt(this.params.customfields[field]); } else if (type === ''string'' && schema[field][''custom''].split('':'')[1] === ''url'') { if (this.params.customfields[field] === ''zabbix_url'') { data[placeholder][field] = CWebhookHelper.createProblemURL(this.params.event_source, this.params.zabbix_url, this.params.trigger_id, this.params.event_id); } else { data[placeholder][field] = this.params.customfields[field]; } } else if (type === ''date'') { if (this.params.customfields[field].match(/\\d+[.-]\\d+[.-]\\d+/) !== null) { data[placeholder][field] = this.params.customfields[field].replace(/\\./g, ''-''); } } else if (type === ''datetime'') { if (this.params.customfields[field].match(/\\d+[.-]\\d+[.-]\\d+T\\d+:\\d+:\\d+/) !== null) { data[placeholder][field] = this.params.customfields[field].replace(/\\./g, ''-''); } } else if (type === ''option'') { data[placeholder][field] = { ''value'': this.params.customfields[field] }; } else if (type === ''array'') { if (schema[field].items === ''option'') { const valuesList = this.params.customfields[field].split('',''); data[placeholder][field] = []; valuesList.forEach(function (val) { data[placeholder][field].push({''value'': val}) }); } else { data[placeholder][field] = [this.params.customfields[field]]; } } else { data[placeholder][field] = this.params.customfields[field]; } } }); } else { Logger.log(Logger.WARN, ''No customfields found.''); } return data; } function parseTags(event_tags) { try { return JSON.parse(event_tags); } catch (error) { if (this.params.event_source == 0 || this.params.event_source > 2) { Logger.log(Logger.WARN, ''No event tags were found. Should be an object. Received event tags: "'' + event_tags + ''".''); } return []; } } function getTagValue(tags, key, throw_on_fail) { for (i in tags) { if (tags[i].tag === key) { return tags[i].value } } if (!throw_on_fail) { return false; } else { throw ''Tag "'' + key + ''" is not in the event tag list.'' } }; function setLabels(event_tags_json) { var buffer = []; event_tags_json.forEach(function (tag) { if (typeof tag.tag !== ''undefined'' && typeof tag.value !== ''undefined'' && !tag.tag.startsWith(''__zbx'')) { label = (tag.tag + (tag.value ? ('':'' + tag.value) : '''')).replace(/\\s/g, ''_''); if (label.length < 256) { buffer.push(label); } } }); if (buffer.length === 0) { Logger.log(Logger.WARN, ''No labels were set.''); } return buffer; } Jira.prototype.commentIssue = function (issue_key) { var data = { body: this.params.alert_message, public: this.params.issue_comments_public }; this.sendRequest(''POST'', ''/rest/servicedeskapi/request/'' + encodeURIComponent(issue_key) + ''/comment'', data); } Jira.prototype.sendRequest = function (method, path, data) { this.request.clearHeader(); this.request.addHeaders(''Authorization: Basic '' + btoa(this.params.jira_user + '':'' + this.params.jira_password)); var response = this.request.jsonRequest(method, this.params.jira_url + path, data); if ((this.request.getStatus() !== 200 && this.request.getStatus() !== 201)) { Logger.log(Logger.WARN, ''HTTP code: '' + this.request.getStatus()); if (CParamValidator.isType(response.description, ''string'')) { throw response.description; } else { Logger.log(Logger.WARN, ''Request not successful. Received response: '' + JSON.stringify(response)); throw ''Unknown error. Check debug log for more information.''; } } return response; } Jira.prototype.onProblem = function (alert) { if (this.params.event_tags_json.length > 0 && getTagValue(this.params.event_tags_json, ''__zbx_jira_requestkey'', false) !== false) { return this.onUpdate(alert, true); } var data = { serviceDeskId: this.params.jira_servicedesk_id, requestTypeId: this.params.jira_request_type_id, requestFieldValues: { summary: this.params.alert_subject, description: this.params.alert_message, priority: { "name": this.priority } } }; if (this.labels && this.labels.length > 0) { data.requestFieldValues.labels = this.labels; } if (this.params.components && this.params.components.length > 0) { data.requestFieldValues.components = this.params.components; } var response = this.sendRequest(''POST'', ''/rest/servicedeskapi/request'', this.addCustomFields(data, true)); this.result.tags = { __zbx_jira_requestkey: response.issueKey, __zbx_jira_requestlink: this.params.jira_url + ''/browse/'' + response.issueKey } return this.result; } Jira.prototype.onUpdate = function (alert, dontUpdatePriority) { var data = { fields: { summary: this.params.alert_subject, priority: { "name": this.priority } } }; if (dontUpdatePriority && this.params.event_source != 0) { delete data[''fields''][''priority'']; } var jira_issue_key = getTagValue(this.params.event_tags_json, ''__zbx_jira_requestkey'', true); this.sendRequest(''PUT'', ''/rest/api/latest/issue/'' + encodeURIComponent(jira_issue_key) + ''?returnIssue=true'', this.addCustomFields(data)); this.commentIssue(jira_issue_key); return this.result; } Jira.prototype.onResolve = function (alert) { return this.onUpdate(alert, true); } Jira.prototype.onDiscovery = function (alert) { this.priority = this.params.jira_priority_discovery; return this.onProblem(alert); } Jira.prototype.onAutoreg = function (alert) { this.priority = this.params.jira_priority_autoregistration; return this.onProblem(alert); } try { var hook = new Jira(value); hook.request = new CHttpRequest(Logger); return hook.run(); } catch (error) { Logger.log(Logger.WARN, ''notification failed: '' + error); throw ''Sending failed: '' + error; }','30s','1','1','{EVENT.TAGS.__zbx_jira_requestlink}','Jira Service Management: {EVENT.TAGS.__zbx_jira_requestkey}','https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/templates/media/jira_service_management 1. To make this integration work, you will need the following from Jira: * Jira instance URL; * Jira service desk id and request type id that the issues created by Zabbix will use; * Jira username and password or API token. API token is strongly recommended and can be obtained at https://id.atlassian.com/manage/api-tokens. 2. In the Zabbix web interface, go to Administration → Macros section. Set up the global macro "{$ZABBIX.URL}" which will contain the URL to the Zabbix frontend. 3. On this page replace the placeholder ''<...>'' values with the ones from the step #1. 4. In Zabbix, you need to have a Zabbix user and add Media with the Jira Service Management media type. Make sure this user has access to all hosts for which you would like problem issues to be created in Jira.','0'), ('48','4','Line','','','','','','','','25','0','0','0','0','1','3','10s','1',E'function sendMessage(to, messages, params) { var response, request = new HttpRequest(); if (typeof params.HTTPProxy === ''string'' && params.HTTPProxy.trim() !== '''') { request.setProxy(params.HTTPProxy); } request.addHeader(''Content-Type: application/json''); request.addHeader(''Authorization: Bearer '' + params.bot_token); response = request.post(''https://api.line.me/v2/bot/message/push'', JSON.stringify({ "to": to, "messages": messages })); if (request.getStatus() !== 200) { throw response; } } function validateParams(params) { if (typeof params.bot_token !== ''string'' || params.bot_token.trim() === '''') { throw ''Field "bot_token" cannot be empty''; } if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) { throw ''Incorrect "event_source" parameter given: "'' + params.event_source + ''".\\nMust be 0-3.''; } if (params.event_source !== ''0'') { params.event_nseverity = ''0''; params.event_severity = ''Not classified''; params.event_update_status = ''0''; } if (params.event_source === ''1'' || params.event_source === ''2'') { params.event_value = ''1''; } if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) { throw ''Incorrect "event_nseverity" parameter given: '' + params.event_nseverity + ''\\nMust be 0-5.''; } if (params.event_update_status !== ''0'' && params.event_update_status !== ''1'') { throw ''Incorrect "event_update_status" parameter given: '' + params.event_update_status + ''\\nMust be 0 or 1.''; } if (params.event_value !== ''0'' && params.event_value !== ''1'') { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''\\nMust be 0 or 1.''; } if (isNaN(params.trigger_id) && params.event_source === ''0'') { throw ''field "trigger_id" is not a number''; } if (typeof params.zabbix_url !== ''string'' || params.zabbix_url.trim() === '''') { throw ''Field "zabbix_url" cannot be empty''; } if (!/^(http|https):\\/\\/.+/.test(params.zabbix_url)) { throw ''Field "zabbix_url" must contain a schema''; } } function getZabbixProblemLink(params) { return params.zabbix_url + (params.zabbix_url.endsWith(''/'') ? '''' : ''/'') + ''tr_events.php?triggerid='' + params.trigger_id + ''&eventid='' + params.event_id; } try { var params = JSON.parse(value); validateParams(params); severity_emoji = [ "\\u26AA", "\\uD83D\\uDD35", "\\uD83D\\uDFE4", "\\uD83D\\uDFE1", "\\uD83D\\uDFE0", "\\uD83D\\uDD34", ]; // If its a trigger and a recovery operation and not an update operation. if (params.event_source === ''0'' && params.event_value === ''0'' && params.event_update_status === ''0'') { var line_message = [ { "type": "text", "text": ''\\u2705 '' + params.alert_subject + ''\\n\\n'' + params.alert_message + ''\\n'' + params.trigger_description + ''\\n\\n'' + getZabbixProblemLink(params) } ]; } // If its a trigger and its a problem. else if (params.event_source === ''0'' && params.event_value === ''1'') { var line_message = [ { "type": "text", "text": severity_emoji[params.event_nseverity] + '' '' + params.alert_subject + ''\\n\\n'' + params.alert_message + ''\\n'' + params.trigger_description + ''\\n\\n'' + getZabbixProblemLink(params) } ]; } // If its a trigger and its an update operation. else if (params.event_source === ''0'' && params.event_update_status === ''1'') { var line_message = [ { "type": "text", "text": ''\\u2733 '' + severity_emoji[params.event_nseverity] + '' '' + params.alert_subject + ''\\n\\n'' + params.alert_message + ''\\n'' + params.trigger_description + ''\\n\\n'' + getZabbixProblemLink(params) } ]; } else { var line_message = [ { "type": "text", "text": params.alert_subject + ''\\n\\n'' + params.alert_message + ''\\n'' } ]; } sendMessage(params.send_to, line_message, params); return ''OK''; } catch (err) { Zabbix.log(4, ''[ Line Webhook ] Line notification failed : '' + err); throw ''Line notification failed : '' + err; }','30s','0','0','','','Please refer to setup guide here: https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/templates/media/line Set bot_token parameter to your Line bot token. When assigning Line media to the Zabbix user - add the ID of the target recipient. Use a userId, groupId, or roomId value.','0'), ('49','4','ManageEngine ServiceDesk','','','','','','','','25','0','0','0','0','1','3','10s','1',E'var MEngine = { params: {}, setParams: function (params) { if (typeof params !== ''object'') { return; } MEngine.params = params; if (typeof MEngine.params.url === ''string'') { if (!MEngine.params.url.endsWith(''/'')) { MEngine.params.url += ''/''; } MEngine.params.url += ''api/v3/''; } if (MEngine.params.on_premise.toLowerCase() !== ''true'' && typeof MEngine.params.on_demand_url_auth === ''string'') { if (!MEngine.params.on_demand_url_auth.endsWith(''/'')) { MEngine.params.on_demand_url_auth += ''/''; } MEngine.params.on_demand_url_auth += ''oauth/v2/token?''; } }, setProxy: function (HTTPProxy) { MEngine.HTTPProxy = HTTPProxy; }, createLink: function (id, url) { return url + (url.endsWith(''/'') ? '''' : ''/'') + ((MEngine.params.on_premise.toLowerCase() === ''true'') ? (''WorkOrder.do?woMode=viewWO&woID='' + id) : (''app/itdesk/ui/requests/'' + id + ''/details'') ); }, refreshAccessToken: function () { [ ''on_demand_url_auth'', ''on_demand_refresh_token'', ''on_demand_client_id'', ''on_demand_client_secret'' ].forEach(function (field) { if (typeof MEngine.params !== ''object'' || typeof MEngine.params[field] === ''undefined'' || MEngine.params[field].trim() === '''' ) { throw ''Required MEngine param is not set: "sd_'' + field + ''".''; } }); var response, request = new HttpRequest(), url = MEngine.params.on_demand_url_auth + ''refresh_token='' + encodeURIComponent(MEngine.params.on_demand_refresh_token) + ''&grant_type=refresh_token&client_id='' + encodeURIComponent(MEngine.params.on_demand_client_id) + ''&client_secret='' + encodeURIComponent(MEngine.params.on_demand_client_secret) + ''&redirect_uri=https://www.zoho.com&scope=SDPOnDemand.requests.ALL''; if (MEngine.HTTPProxy) { request.setProxy(MEngine.HTTPProxy); } Zabbix.log(4, ''[ ManageEngine Webhook ] Refreshing access token. Request: '' + url); response = request.post(url); Zabbix.log(4, ''[ ManageEngine Webhook ] Received response with status code '' + request.getStatus() + ''\\n'' + response); try { response = JSON.parse(response); } catch (error) { Zabbix.log(4, ''[ ManageEngine Webhook ] Failed to parse response received from Zoho Accounts''); } if ((request.getStatus() < 200 || request.getStatus() >= 300) && !response.access_token) { throw ''Access token refresh failed with HTTP status code '' + request.getStatus() + ''. Check debug log for more information.''; } else { MEngine.params.on_demand_auth_token = response.access_token; } }, request: function (method, query, data) { var response, url = MEngine.params.url + query, input, request = new HttpRequest(), message; if (MEngine.params.on_premise.toLowerCase() === ''true'') { request.addHeader(''TECHNICIAN_KEY: '' + MEngine.params.on_premise_auth_token); } else { request.addHeader(''Authorization: Zoho-oauthtoken '' + MEngine.params.on_demand_auth_token); request.addHeader(''Accept: application/v3+json''); } if (MEngine.HTTPProxy) { request.setProxy(MEngine.HTTPProxy); } if (typeof data !== ''undefined'') { data = JSON.stringify(data); } input = ''input_data='' + encodeURIComponent(data); Zabbix.log(4, ''[ ManageEngine Webhook ] Sending request: '' + url + ''?'' + input); switch (method) { case ''post'': response = request.post(url, input); break; case ''put'': response = request.put(url, input); break; default: throw ''Unsupported HTTP request method: '' + method; } Zabbix.log(4, ''[ ManageEngine Webhook ] Received response with status code '' + request.getStatus() + ''\\n'' + response); try { response = JSON.parse(response); } catch (error) { Zabbix.log(4, ''[ ManageEngine Webhook ] Failed to parse response received from ManageEngine''); } if ((request.getStatus() < 200 || request.getStatus() >= 300) && typeof response.response_status !== ''object'') { throw ''Request failed with HTTP status code '' + request.getStatus() + ''. Check debug log for more information.''; } else if (typeof response.response_status === ''object'' && response.response_status.status === ''failed'') { message = ''Request failed with status_code ''; if (typeof response.response_status.messages === ''object'' && response.response_status.messages[0] && response.response_status.messages[0].message) { message += response.response_status.messages[0].status_code + ''. Message: '' + response.response_status.messages[0].message; } else { message += response.response_status.status_code; } message += ''. Check debug log for more information.''; throw message; } else if (response.request) { return response.request.id; } }, createPaylaod: function (fields, isNote) { var data = {}, result; if (isNote) { data.description = fields[''field_string:description''].replace(/(?:\\r\\n|\\r|\\n)/g, ''
''); result = {request_note: data}; } else { Object.keys(fields) .forEach(function(field) { if (fields[field].trim() === '''') { Zabbix.log(4, ''[ ManageEngine Webhook ] Field "'' + field + ''" can\\''t be empty. The field ignored.''); } else { try { var prefix = field.split('':'')[0], root; if (prefix.startsWith(''udf_'') && !data.udf_fields) { data.udf_fields = {}; root = data.udf_fields; } else if (prefix.startsWith(''udf_'')) { root = data.udf_fields; } else { root = data; } if (prefix.endsWith(''string'')) { root[field.substring(field.indexOf('':'') + 1) .toLowerCase()] = fields[field]; } else { root[field.substring(field.indexOf('':'') + 1) .toLowerCase()] = { name: fields[field] }; } } catch (error) { Zabbix.log(4, ''[ ManageEngine Webhook ] Can\\''t parse field "'' + field + ''". The field ignored.''); } } }); if (data.description) { data.description = data.description.replace(/(?:\\r\\n|\\r|\\n)/g, ''
''); } result = {request: data}; } return result; } }; try { var params = JSON.parse(value), fields = {}, sd = {}, result = {tags: {}}, required_params = [ ''sd_on_premise'', ''field_string:subject'', ''field_string:description'', ''event_recovery_value'', ''event_source'', ''event_value'', ''event_update_status'' ], severities = [ {name: ''not_classified'', color: ''#97AAB3''}, {name: ''information'', color: ''#7499FF''}, {name: ''warning'', color: ''#FFC859''}, {name: ''average'', color: ''#FFA059''}, {name: ''high'', color: ''#E97659''}, {name: ''disaster'', color: ''#E45959''}, {name: ''default'', color: ''#000000''} ]; Object.keys(params) .forEach(function (key) { if (key.startsWith(''sd_'')) { sd[key.substring(3)] = params[key]; } else if (key.startsWith(''field_'') || key.startsWith(''udf_field_'')) { fields[key] = params[key]; } if (required_params.indexOf(key) !== -1 && params[key].trim() === '''') { throw ''Parameter "'' + key + ''" can\\''t be empty.''; } }); if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) { throw ''Incorrect "event_source" parameter given: '' + params.event_source + ''\\nMust be 0-3.''; } // Check {EVENT.VALUE} for trigger-based and internal events. if (params.event_value !== ''0'' && params.event_value !== ''1'' && (params.event_source === ''0'' || params.event_source === ''3'')) { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''\\nMust be 0 or 1.''; } // Check {EVENT.UPDATE.STATUS} only for trigger-based events. if (params.event_update_status !== ''0'' && params.event_update_status !== ''1'' && params.event_source === ''0'') { throw ''Incorrect "event_update_status" parameter given: '' + params.event_update_status + ''\\nMust be 0 or 1.''; } if (params.event_source !== ''0'' && params.event_recovery_value === ''0'') { throw ''Recovery operations are supported only for trigger-based actions.''; } if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) { params.event_nseverity = ''6''; } if (params.event_update_status === ''1'' && (typeof params.sd_request_id === ''undefined'' || params.sd_request_id.trim() === '''' || params.sd_request_id === ''{EVENT.TAGS.__zbx_sd_request_id}'' || params.sd_request_id === ''*UNKNOWN*'')) { throw ''Parameter "sd_request_id" can\\''t be empty for update operation.''; } MEngine.setParams(sd); MEngine.setProxy(params.HTTPProxy); if (MEngine.params.on_premise.toLowerCase() !== ''true'') { MEngine.refreshAccessToken(); } // Create issue for non trigger-based events. if (params.event_source !== ''0'' && params.event_recovery_value !== ''0'') { fields[''field_object:priority''] = params[''priority_'' + severities[params.event_nseverity].name] || ''Normal''; MEngine.request(''post'', ''requests'', MEngine.createPaylaod(fields)); } // Create issue for trigger-based events. else if (params.event_value === ''1'' && params.event_update_status === ''0'') { fields[''field_object:priority''] = params[''priority_'' + severities[params.event_nseverity].name] || ''Normal''; var id = MEngine.request(''post'', ''requests'', MEngine.createPaylaod(fields)); result.tags.__zbx_sd_request_id = id; result.tags.__zbx_sd_request_link = MEngine.createLink(id, params.sd_url); } // Update created issue for trigger-based event. else { if (params.event_update_status === ''1'') { MEngine.request(''post'', ''requests/'' + params.sd_request_id + ''/notes'', MEngine.createPaylaod(fields, true) ); } delete fields[''field_string:description'']; MEngine.request(''put'', ''requests/'' + params.sd_request_id, MEngine.createPaylaod(fields)); } return JSON.stringify(result); } catch (error) { Zabbix.log(3, ''[ ManageEngine Webhook ] ERROR: '' + error); throw ''Sending failed: '' + error; }','30s','1','1','{EVENT.TAGS.__zbx_sd_request_link}','ManageEngine: {EVENT.TAGS.__zbx_sd_request_id}','','0'), ('50','4','MantisBT','','','','','','','','25','0','0','0','0','1','1','10s','1',E'var Mantisbt = { params: {}, setParams: function (params) { if (typeof params !== ''object'') { return; } Mantisbt.params = params; }, setProxy: function (HTTPProxy) { Mantisbt.HTTPProxy = HTTPProxy; }, checkUrlFormat: function (url) { if (typeof url === ''string'' && !url.endsWith(''/'')) { url += ''/''; } if (url.indexOf(''http://'') === -1 && url.indexOf(''https://'') === -1) { url = ''https://'' + url; } return url; }, getProblemURL: function (zabbix_url, triggerid, eventid, event_source) { var problem_url = zabbix_url; if (event_source === ''0'') { problem_url += ''tr_events.php?triggerid='' + triggerid + ''&eventid='' + eventid; } return problem_url; }, request: function (method, url, data) { [''token'', ''url'', ''category''].forEach(function (field) { if (typeof Mantisbt.params !== ''object'' || typeof Mantisbt.params[field] === ''undefined'' || Mantisbt.params[field] === '''') { throw ''Required MantisBT param is not set: "'' + field + ''".''; } }); var response, request = new HttpRequest(); request.addHeader(''Content-Type: application/json''); request.addHeader(''Authorization: '' + Mantisbt.params.token); if (typeof Mantisbt.HTTPProxy !== ''undefined'' && Mantisbt.HTTPProxy !== '''') { request.setProxy(Mantisbt.HTTPProxy); } if (typeof data !== ''undefined'') { data = JSON.stringify(data); } Zabbix.log(4, ''[ MantisBT Webhook ] Sending request: '' + url + ((typeof data === ''string'') ? (''\\n'' + data) : '''')); switch (method) { case ''post'': response = request.post(url, data); break; case ''patch'': response = request.patch(url, data); break; default: throw ''Unsupported HTTP request method: '' + method; } Zabbix.log(4, ''[ MantisBT Webhook ] Received response with status code '' + request.getStatus() + ''\\n'' + response); if (response !== null) { try { response = JSON.parse(response); } catch (error) { Zabbix.log(4, ''[ MantisBT Webhook ] Failed to parse the response received from MantisBT''); response = null; } } if (typeof response !== ''object'') { throw ''Failed to process the response received from MantisBT. Check debug log for more information.''; } if (request.getStatus() < 200 || request.getStatus() >= 300) { var message = ''Request failed with status code '' + request.getStatus(); if (typeof response.message !== ''undefined'') { message += '': '' + response.message; } throw message; } return response; } }; try { var params = JSON.parse(value), mantisbt = {}, url = '''', data = {}, result = { tags: {} }, required_params = [ ''alert_subject'', ''alert_message'', ''event_source'', ''event_value'', ''event_update_action'', ''event_update_status'', ''event_recovery_value'', ''event_nseverity'', ''event_tagsjson'', ''event_id'', ''trigger_id'', ''zabbix_url'', ''alert_sendto'', ''mantisbt_token'', ''mantisbt_url'', ''mantisbt_category'', ''mantisbt_issue_number'', ''mantisbt_use_zabbix_tags'' ], method, severities = [''none'', ''low'', ''normal'', ''high'', ''urgent'', ''immediate'']; Object.keys(params) .forEach(function (key) { if (key.startsWith(''mantisbt_'')) { mantisbt[key.substring(9)] = params[key]; } else if (required_params.indexOf(key) !== -1 && params[key] === '''') { throw ''Parameter "'' + key + ''" cannot be empty.''; } }); if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) { throw ''Incorrect "event_source" parameter given: '' + params.event_source + ''\\nMust be 0-3.''; } // Check {EVENT.VALUE} for trigger-based and internal events. if (params.event_value !== ''0'' && params.event_value !== ''1'' && (params.event_source === ''0'' || params.event_source === ''3'')) { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''\\nMust be 0 or 1.''; } // Check {EVENT.UPDATE.STATUS} only for trigger-based events. if (params.event_update_status !== ''0'' && params.event_update_status !== ''1'' && params.event_source === ''0'') { throw ''Incorrect "event_update_status" parameter given: '' + params.event_update_status + ''\\nMust be 0 or 1.''; } if (params.event_source !== ''0'' && params.event_recovery_value === ''0'') { throw ''Recovery operations are supported for trigger-based actions only.''; } if (typeof params.zabbix_url !== ''string'' || params.zabbix_url.trim() === '''' || params.zabbix_url === ''{$ZABBIX.URL}'') { throw ''Field "zabbix_url" cannot be empty.''; } // Check for backslash in the end of url and schema. mantisbt.url = Mantisbt.checkUrlFormat(mantisbt.url); params.zabbix_url = Mantisbt.checkUrlFormat(params.zabbix_url); // In case of resolve event. if (params.event_source === ''0'' && params.event_value === ''0'') { method = "patch"; url = mantisbt.url + ''api/rest/issues/'' + mantisbt.issue_number; data = { summary: params.alert_subject, status: { name: "resolved" } }; if (/commented/.test(params.event_update_action)) { data.additional_information = params.event_update_message; } process_tags = false; } // In case of update event. else if (params.event_source === ''0'' && params.event_update_status === ''1'') { method = "patch"; url = mantisbt.url + ''api/rest/issues/'' + mantisbt.issue_number; data = { status: {}, priority: { name: severities[parseInt(params.event_nseverity, 10)] } }; if (/commented/.test(params.event_update_action)) { data.additional_information = params.event_update_message; } if (/acknowledged/.test(params.event_update_action)) { data.status.name = "acknowledged"; } if (/unacknowledged/.test(params.event_update_action)) { data.status.name = "new"; } process_tags = false; } else { method = ''post''; url = mantisbt.url + ''api/rest/issues''; data = { summary: params.alert_subject, description: params.alert_message, project: { name: params.alert_sendto }, category: { name: mantisbt.category }, priority: { name: parseInt(params.event_nseverity, 10) ? severities[parseInt(params.event_nseverity, 10)] : "none" } }; if (params.event_source === ''0'') { problem_url = Mantisbt.getProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source); data.description += ''\\n'' + problem_url; if (mantisbt.use_zabbix_tags === "true") { var alert_tags = JSON.parse(params.event_tagsjson); data.tags = alert_tags.map(function (t) { return { name: t.value ? (t.tag + '': '' + t.value) : t.tag }; }); } } process_tags = true; } Mantisbt.setParams(mantisbt); Mantisbt.setProxy(params.HTTPProxy); var response = Mantisbt.request(method, url, data); if (process_tags) { result.tags.__zbx_mantisbt_issue_number = response.issue.id; result.tags.__zbx_mantisbt_link = mantisbt.url + ''view.php?id='' + response.issue.id; } Zabbix.log(4, ''[ MantisBT Webhook ] Result: '' + JSON.stringify(result)); return JSON.stringify(result); } catch (error) { Zabbix.log(4, ''[ MantisBT Webhook ] ERROR: '' + error); throw ''Sending failed: '' + error; }','30s','1','1','{EVENT.TAGS.__zbx_mantisbt_link}','MantisBT: Issue ID {EVENT.TAGS.__zbx_mantisbt_issue_number}','','0'), ('51','4','Mattermost','','','','','','','','25','0','0','0','0','1','1','10s','1',E'var SEVERITY_COLORS = [ ''#97AAB3'', ''#7499FF'', ''#FFC859'', ''#FFA059'', ''#E97659'', ''#E45959'' ]; var RESOLVE_COLOR = ''#009900''; var SEND_MODE_HANDLERS = { alarm: handlerAlarm, event: handlerEvent }; if (!String.prototype.format) { String.prototype.format = function() { var args = arguments; return this.replace(/{(\\d+)}/g, function(match, number) { return number in args ? args[number] : match ; }); }; } function isEventProblem(params) { return params.event_value == 1 && params.event_update_status == 0 ; } function isEventUpdate(params) { return params.event_value == 1 && params.event_update_status == 1 ; } function isEventResolve(params) { return params.event_value == 0; } function getPermalink(mattermost_url, team_name, postid) { return ''{0}/{1}/pl/{2}''.format( mattermost_url.replace(/\\/+$/, ''''), team_name, postid ); } function getChannel(send_to) { switch (true) { case /.+\\/#.+/.test(send_to): return getChannelByName(send_to); case /@.+/.test(send_to): return getDirectChannel(send_to); default: return getChannelByID(send_to); } } function getChannelByName(send_to) { var team_chan = send_to .trim() .split(''/#''); var resp = JSON.parse(req.get( Mattermost.channel_byname.format(team_chan[0], team_chan[1]), JSON.stringify(fields) ) ); if (req.getStatus() != 200) { throw ''[{0}] {1}''.format(resp.status_code, resp.message); } return resp; } function getDirectChannel(send_to) { Zabbix.log(5, ''[ Mattermost Webhook ] Call {0}({1})''.format( arguments.callee.name, JSON.stringify(arguments) )); var teamUser = send_to .trim() .split(''/@''), bot = getBotUser(), user = getUserByName(teamUser[1]); var resp = JSON.parse(req.post( Mattermost.direct_channel, JSON.stringify([bot.id, user.id]) ) ); Zabbix.log(5, ''[ Mattermost Webhook ] Result {0}: {1}''.format( arguments.callee.name, JSON.stringify(resp) )); if (req.getStatus() != 201) { throw ''[{0}] {1}''.format(resp.status_code, resp.message); } resp.team_name = teamUser[0]; return resp; } function getChannelByID(channelID) { Zabbix.log(5, ''[ Mattermost Webhook ] Call {0}({1})''.format( arguments.callee.name, JSON.stringify(arguments) )); var resp = JSON.parse(req.get( Mattermost.get_channel.format(channelID), JSON.stringify(fields) ) ); Zabbix.log(5, ''[ Mattermost Webhook ] Result {0}: {1}''.format( arguments.callee.name, JSON.stringify(resp) )); if (req.getStatus() != 200) { throw ''[{0}] {1}''.format(resp.status_code, resp.message); } return resp; } function getBotUser() { Zabbix.log(5, ''[ Mattermost Webhook ] Call {0}({1})''.format( arguments.callee.name, JSON.stringify(arguments) )); var resp = JSON.parse(req.get( Mattermost.bot_user, JSON.stringify(fields) ) ); Zabbix.log(5, ''[ Mattermost Webhook ] Result {0}: {1}''.format( arguments.callee.name, JSON.stringify(resp) )); if (req.getStatus() != 200) { throw ''[{0}] {1}''.format(resp.status_code, resp.message); } return resp; } function getUserByName(userName) { Zabbix.log(5, ''[ Mattermost Webhook ] Call {0}({1})''.format( arguments.callee.name, JSON.stringify(arguments) )); var resp = JSON.parse(req.get( Mattermost.user_byname.format(userName), JSON.stringify(fields) ) ); Zabbix.log(5, ''[ Mattermost Webhook ] Result {0}: {1}''.format( arguments.callee.name, JSON.stringify(resp) )); if (req.getStatus() != 200) { throw ''[{0}] {1}''.format(resp.status_code, resp.message); } return resp; } function getTeamByID(teamID) { Zabbix.log(5, ''[ Mattermost Webhook ] Call {0}({1})''.format( arguments.callee.name, JSON.stringify(arguments) )); var resp = JSON.parse(req.get( Mattermost.get_team.format(teamID), JSON.stringify(fields) ) ); Zabbix.log(5, ''[ Mattermost Webhook ] Result {0}: {1}''.format( arguments.callee.name, JSON.stringify(resp) )); if (req.getStatus() != 200) { throw ''[{0}] {1}''.format(resp.status_code, resp.message); } return resp; } function createProblemURL(zabbix_url, triggerid, eventid, event_source) { var problem_url = ''''; if (event_source === ''0'') { problem_url = ''{0}/tr_events.php?triggerid={1}&eventid={2}'' .format( zabbix_url, triggerid, eventid ); } else { problem_url = zabbix_url; } return problem_url; } function getTagValue(event_tags, key) { var pattern = new RegExp(''('' + key + '':.+)''); var tagValue = event_tags .split('','') .filter(function (v) { return v.match(pattern); }) .map(function (v) { return v.split('':'')[1]; })[0] || 0; return tagValue; } function handlerAlarm(req, params) { var channel = getChannel(params.send_to); var fields = { channel_id: channel.id, props: {} }; if (isEventProblem(params)) { var team_name = channel.team_name ? channel.team_name : getTeamByID(channel.team_id).name; fields.props.attachments = [ createMessage( SEVERITY_COLORS[params.event_nseverity] || 0, params.event_date, params.event_time, createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source) ) ]; var resp = JSON.parse(req.post( Mattermost.post_message, JSON.stringify(fields) ) ); if (req.getStatus() != 201) { throw ''[{0}] {1}''.format(resp.status_code, resp.message); } result.tags.__mattermost_post_id = resp.id; result.tags.__mattermost_channel_id = channel.id; result.tags.__mattermost_channel_name = channel.name; result.tags.__mattermost_message_link = getPermalink( params.mattermost_url, team_name, resp.id ); } else if (isEventUpdate(params)) { fields.root_id = getTagValue(params.event_tags, ''mattermost_post_id''); if (params.event_source === ''0'') {} fields.props.attachments = [ createMessage( SEVERITY_COLORS[params.event_nseverity] || 0, params.event_update_date, params.event_update_time, createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source), true ) ]; resp = JSON.parse(req.post( Mattermost.post_message, JSON.stringify(fields) ) ); if (req.getStatus() != 201) { throw ''[{0}] {1}''.format(resp.status_code, resp.message); } } else if (isEventResolve(params)) { fields.channel_id = getTagValue(params.event_tags, ''mattermost_channel_id''); fields.id = getTagValue(params.event_tags, ''mattermost_post_id''); fields.props.attachments = [ createMessage( RESOLVE_COLOR, params.event_date, params.event_time, createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source) ) ]; var post_id = getTagValue(params.event_tags, ''mattermost_post_id''); resp = JSON.parse(req.put( Mattermost.chat_update.format(post_id), JSON.stringify(fields) ) ); if (req.getStatus() != 200) { throw ''[{0}] {1}''.format(resp.status_code, resp.message); } } } function handlerEvent(req, params) { var channel = getChannel(params.send_to); var fields = { channel_id: channel.id, props: {} }; if (isEventProblem(params)) { var team_name = channel.team_name ? channel.team_name : getTeamByID(channel.team_id).name; fields.props.attachments = [ createMessage( SEVERITY_COLORS[params.event_nseverity] || 0, params.event_date, params.event_time, createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source) ) ]; var resp = JSON.parse(req.post(Mattermost.post_message, JSON.stringify(fields))); if (req.getStatus() != 201) { throw ''[{0}] {1}''.format(resp.status_code, resp.message); } result.tags.__mattermost_channel_name = channel.name; result.tags.__mattermost_message_link = getPermalink( params.mattermost_url, team_name, resp.id ); } else if (isEventUpdate(params)) { fields.props.attachments = [ createMessage( SEVERITY_COLORS[params.event_nseverity] || 0, params.event_update_date, params.event_update_time, createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source), false ) ]; resp = JSON.parse(req.post(Mattermost.post_message, JSON.stringify(fields))); if (req.getStatus() != 201) { throw ''[{0}] {1}''.format(resp.status_code, resp.message); } } else if (isEventResolve(params)) { fields.props.attachments = [ createMessage( RESOLVE_COLOR, params.event_recovery_date, params.event_recovery_time, createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source) ) ]; resp = JSON.parse(req.post(Mattermost.post_message, JSON.stringify(fields))); if (req.getStatus() != 201) { throw ''[{0}] {1}''.format(resp.status_code, resp.message); } } } function createMessage( event_severity_color, event_date, event_time, problem_url, isShort ) { var message = { fallbac: params.alert_subject, title: params.alert_subject, color: event_severity_color, title_link: problem_url, footer: problem_url, fields: [ { title: ''Host'', value: ''{0} [{1}]''.format(params.host_name, params.host_ip), short: true }, { title: ''Event time'', value: ''{0} {1}''.format(event_date, event_time), short: true } ], }; if (params.event_source === ''0'') { message.fields.push( { title: ''Severity'', value: params.event_severity, short: true }, { title: ''Opdata'', value: params.event_opdata, short: true } ); } if (!isShort && params.event_source === ''0'') { message.fields.push( { title: ''Event tags'', value: ''`{0}`''.format(params.event_tags.replace(/__.+?:(.+?,|.+)/g, '''') || ''None''), short: true }, { title: ''Trigger description'', value: params.trigger_description, short: true } ); } if (params.event_source !== ''0'' || params.event_update_status === ''1'') { message.fields.push( { title: ''Details'', value: params.alert_message, short: false } ); } return message; } function validateParams(params) { if (typeof params.bot_token !== ''string'' || params.bot_token.trim() === '''') { throw ''Field "bot_token" cannot be empty''; } if (isNaN(params.event_id)) { throw ''Field "event_id" is not a number''; } if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) { throw ''Incorrect "event_source" parameter given: "'' + params.event_source + ''".\\nMust be 0-3.''; } if (params.event_source !== ''0'') { params.event_nseverity = ''0''; params.event_severity = ''Not classified''; params.event_update_status = ''0''; params.send_mode = ''event''; } if (params.event_source === ''1'' || params.event_source === ''2'') { params.event_value = ''1''; } if (params.event_source === ''1'') { params.host_name = params.discovery_host_dns; params.host_ip = params.discovery_host_ip; } if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) { throw ''Incorrect "event_nseverity" parameter given: '' + params.event_nseverity + ''\\nMust be 0-5.''; } if (typeof params.event_severity !== ''string'' || params.event_severity.trim() === '''') { throw ''Field "event_severity" cannot be empty''; } if (params.event_update_status !== ''0'' && params.event_update_status !== ''1'') { throw ''Incorrect "event_update_status" parameter given: '' + params.event_update_status + ''\\nMust be 0 or 1.''; } if (params.event_value !== ''0'' && params.event_value !== ''1'') { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''\\nMust be 0 or 1.''; } if (typeof params.host_ip !== ''string'' || params.host_ip.trim() === '''') { throw ''Field "host_ip" cannot be empty''; } if (typeof params.host_name !== ''string'' || params.host_name.trim() === '''') { throw ''Field "host_name" cannot be empty''; } if (typeof params.mattermost_url !== ''string'' || params.mattermost_url.trim() === '''') { throw ''Field "mattermost_url" cannot be empty''; } if (!/^(http|https):\\/\\/.+/.test(params.mattermost_url)) { throw ''Field "mattermost_url" must contain a schema''; } if ([''alarm'', ''event''].indexOf(params.send_mode) === -1) { throw ''Incorrect "send_mode" parameter given: '' + params.send_mode + ''\\nMust be "alarm" or "event".''; } if (typeof params.send_to !== ''string'' || params.send_to.trim() === '''') { throw ''Field "send_to" cannot be empty''; } if (isNaN(params.trigger_id) && params.event_source === ''0'') { throw ''field "trigger_id" is not a number''; } if (typeof params.zabbix_url !== ''string'' || params.zabbix_url.trim() === '''') { throw ''Field "zabbix_url" cannot be empty''; } if (!/^(http|https):\\/\\/.+/.test(params.zabbix_url)) { throw ''Field "zabbix_url" must contain a schema''; } } try { var params = JSON.parse(value); validateParams(params); var req = new HttpRequest(), fields = {}, result = {tags: {}}; if (typeof params.HTTPProxy === ''string'' && params.HTTPProxy.trim() !== '''') { req.setProxy(params.HTTPProxy); } req.addHeader(''Content-Type: application/json; charset=utf-8''); req.addHeader(''Authorization: Bearer '' + params.bot_token); params.mattermost_url = params.mattermost_url.replace(/\\/+$/, ''''); params.zabbix_url = params.zabbix_url.replace(/\\/+$/, ''''); var APIEndpoint = params.mattermost_url + ''/api/v4/''; var Mattermost = { post_message: APIEndpoint + ''posts'', get_channel: APIEndpoint + ''channels/{0}'', get_team: APIEndpoint + ''teams/{0}'', chat_update: APIEndpoint + ''posts/{0}'', direct_channel: APIEndpoint + ''channels/direct'', channel_byname: APIEndpoint + ''teams/name/{0}/channels/name/{1}'', user_byname: APIEndpoint + ''users/username/{0}'', bot_user: APIEndpoint + ''users/me'' }; params.send_mode = params.send_mode.toLowerCase(); params.send_mode = params.send_mode in SEND_MODE_HANDLERS ? params.send_mode : ''alarm''; SEND_MODE_HANDLERS[params.send_mode](req, params); if (params.event_source === ''0'') { return JSON.stringify(result); } else { return ''OK''; } } catch (error) { Zabbix.log(4, ''[ Mattermost Webhook ] Mattermost notification failed: '' + error); throw ''Mattermost notification failed: '' + error; }','30s','1','1','{EVENT.TAGS.__mattermost_message_link}','Open in Mattermost: {EVENT.TAGS.__mattermost_channel_name}','','0'), ('52','4','MS Teams','','','','','','','','25','0','0','0','0','1','3','10s','1',E'const CLogger = function(serviceName) { this.serviceName = serviceName; this.INFO = 4 this.WARN = 3 this.ERROR = 2 this.log = function(level, msg) { Zabbix.log(level, ''['' + this.serviceName + ''] '' + msg); } } const CWebhook = function(value) { try { params = JSON.parse(value); if ([''0'', ''1'', ''2'', ''3'', ''4''].indexOf(params.event_source) === -1) { throw ''Incorrect "event_source" parameter given: '' + params.event_source + ''.\\nMust be 0-4.''; } if ([''0'', ''3'', ''4''].indexOf(params.event_source) !== -1 && [''0'', ''1''].indexOf(params.event_value) === -1) { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''.\\nMust be 0 or 1.''; } if ([''0'', ''3'', ''4''].indexOf(params.event_source) !== -1) { if (params.event_source === ''1'' && [''0'', ''1'', ''2'', ''3''].indexOf(params.event_value) === -1) { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''.\\nMust be 0-3.''; } if (params.event_source === ''0'' && [''0'', ''1''].indexOf(params.event_update_status) === -1) { throw ''Incorrect "event_update_status" parameter given: '' + params.event_update_status + ''.\\nMust be 0 or 1.''; } if (params.event_source === ''4'') { if ([''0'', ''1'', ''2'', ''3'', ''4'', ''5''].indexOf(params.event_update_nseverity) !== -1 && params.event_update_nseverity != params.event_nseverity) { params.event_nseverity = params.event_update_nseverity; params.event_severity = params.event_update_severity; params.event_update_status = ''1''; } } } this.runCallback = function(name, params) { if (typeof this[name] === ''function'') { return this[name].apply(this, [params]); } } this.handleEvent = function(source, event) { const alert = { source: source, event: event }; return [ this.runCallback(''on'' + source + event, alert), this.runCallback(''on'' + event, alert), this.runCallback(''onEvent'', alert) ]; } this.handleEventless = function(source) { const alert = { source: source, event: null }; return [ this.runCallback(''on'' + source, alert), this.runCallback(''onEvent'', alert) ]; } this.run = function() { var results = []; if (typeof this.httpProxy === ''string'' && this.httpProxy.trim() !== '''') { this.request.setProxy(this.httpProxy); } const types = { ''0'': ''Trigger'', ''1'': ''Discovery'', ''2'': ''Autoreg'', ''3'': ''Internal'', ''4'': ''Service'' }; if ([''0'', ''3'', ''4''].indexOf(this.params.event_source) !== -1) { var event = (this.params.event_update_status === ''1'') ? ''Update'' : ((this.params.event_value === ''1'') ? ''Problem'' : ''Resolve''); results = this.handleEvent(types[this.params.event_source], event); } else if (typeof types[this.params.event_source] !== ''undefined'') { results = this.handleEventless(types[this.params.event_source]); } else { throw ''Unexpected "event_source": '' + this.params.event_source; } for (idx in results) { if (typeof results[idx] !== ''undefined'') { return JSON.stringify(results[idx]); } } } this.httpProxy = params.http_proxy; this.params = params; this.runCallback(''onCheckParams'', {}); } catch (error) { throw ''Webhook processing failed: '' + error; } } const CWebhookHelper = { createProblemURL: function(event_source, zabbix_url, trigger_id, event_id) { if (event_source === ''0'') { return zabbix_url + ''/tr_events.php?triggerid='' + trigger_id + ''&eventid='' + event_id; } else if (event_source === ''4'') { return zabbix_url + ''/zabbix.php?action=service.list''; } return zabbix_url; }, }; const CParamValidator = { isType: function(value, type) { if (type === ''array'') { return Array.isArray(value); } if (type === ''integer'') { return CParamValidator.isInteger(value); } if (type === ''float'') { return CParamValidator.isFloat(value); } return (typeof value === type); }, isInteger: function(value) { if (!CParamValidator.ifMatch(value, /^-?\\d+$/)) { return false; } return !isNaN(parseInt(value)); }, isFloat: function(value) { if (!CParamValidator.ifMatch(value, /^-?\\d+\\.\\d+$/)) { return false; } return !isNaN(parseFloat(value)); }, isDefined: function(value) { return !CParamValidator.isType(value, ''undefined''); }, isEmpty: function(value) { if (!CParamValidator.isType(value, ''string'')) { throw ''Value "'' + value + ''" must be a string to be checked for emptiness.''; } return (value.trim() === ''''); }, isMacroSet: function(value, macro) { if (CParamValidator.isDefined(macro)) { return !(CParamValidator.ifMatch(value, ''^\\{'' + macro + ''\\}$'')) } return !(CParamValidator.ifMatch(value, ''^\\{[$#]{0,1}[A-Z_\\.]+[\\:]{0,1}["]{0,1}.*["]{0,1}\\}$'') || value === ''*UNKNOWN*'') }, withinRange: function(value, min, max) { if (!CParamValidator.isType(value, ''number'')) { throw ''Value "'' + value + ''" must be a number to be checked for range.''; } if (value < ((CParamValidator.isDefined(min)) ? min : value) || value > ((CParamValidator.isDefined(max)) ? max : value)) { return false; } return true; }, inArray: function(value, array) { if (!CParamValidator.isType(array, ''array'')) { throw ''The array must be an array to check the value for existing in it.''; } return (array.indexOf((typeof value === ''string'') ? value.toLowerCase() : value) !== -1); }, ifMatch: function(value, regex) { return (new RegExp(regex)).test(value); }, match: function(value, regex) { if (!CParamValidator.isType(value, ''string'')) { throw ''Value "'' + value + ''" must be a string to be matched with the regular expression.''; } return value.match(new RegExp(regex)); }, checkURL: function(value) { if (CParamValidator.isEmpty(value)) { throw ''URL value "'' + value + ''" must be a non-empty string.''; } if (!CParamValidator.ifMatch(value, ''^(http|https):\\/\\/.+'')) { throw ''URL value "'' + value + ''" must contain a schema.''; } return value.endsWith(''/'') ? value.slice(0, -1) : value; }, check: function(key, rule, params) { if (!CParamValidator.isDefined(rule.type)) { throw ''Mandatory attribute "type" has not been defined for parameter "'' + key + ''".''; } if (!CParamValidator.isDefined(params[key])) { throw ''Checked parameter "'' + key + ''" was not found in the list of input parameters.''; } var value = params[key], error_message = null; switch (rule.type) { case ''string'': if (!CParamValidator.isType(value, ''string'')) { throw ''Value "'' + key + ''" must be a string.''; } if (CParamValidator.isEmpty(value)) { error_message = ''Value "'' + key + ''" must be a non-empty string''; break; } if (CParamValidator.isDefined(rule.len) && value.length < rule.len) { error_message = ''Value "'' + key + ''" must be a string with a length > '' + rule.len; } if (CParamValidator.isDefined(rule.regex) && !CParamValidator.ifMatch(value, rule.regex)) { error_message = ''Value "'' + key + ''" must match the regular expression "'' + rule.regex + ''"''; } if (CParamValidator.isDefined(rule.url) && rule.url === true) { value = CParamValidator.checkURL(value); } break; case ''integer'': if (!CParamValidator.isInteger(value)) { error_message = ''Value "'' + key + ''" must be an integer''; break; } value = parseInt(value); break; case ''float'': if (!CParamValidator.isFloat(value)) { error_message = ''Value "'' + key + ''" must be a floating-point number''; break; } value = parseFloat(value); break; case ''boolean'': if (CParamValidator.inArray(value, [''1'', ''true'', ''yes'', ''on''])) { value = true; } else if (CParamValidator.inArray(value, [''0'', ''false'', ''no'', ''off''])) { value = false; } else { error_message = ''Value "'' + key + ''" must be a boolean-like.''; } break; case ''array'': try { value = JSON.parse(value); } catch (error) { throw ''Value "'' + key + ''" contains invalid JSON.''; } if (!CParamValidator.isType(value, ''array'')) { error_message = ''Value "'' + key + ''" must be an array.''; } if (CParamValidator.isDefined(rule.tags) && rule.tags === true) { value = value.reduce(function(acc, obj) { acc[obj.tag] = obj.value || null; return acc; }, {}); } break; case ''object'': value = JSON.parse(value); if (!CParamValidator.isType(value, ''object'')) { error_message = ''Value "'' + key + ''" must be an object.''; } break; default: throw ''Unexpected attribute type "'' + rule.type + ''" for value "'' + key + ''". Available: '' + [''integer'', ''float'', ''string'', ''boolean'', ''array'', ''object''].join('', ''); } params[key] = value; if (CParamValidator.inArray(rule.type, [''integer'', ''float'']) && error_message === null && (CParamValidator.isDefined(rule.min) || CParamValidator.isDefined(rule.max)) && !CParamValidator.withinRange(value, rule.min, rule.max)) { error_message = ''Value "'' + key + ''" must be a number '' + ((CParamValidator.isDefined(rule.min) && CParamValidator.isDefined(rule.max)) ? (rule.min + ''..'' + rule.max) : ((CParamValidator.isDefined(rule.min)) ? ''>'' + rule.min : ''<'' + rule.max)); } else if (CParamValidator.isDefined(rule.array) && !CParamValidator.inArray(value, rule.array)) { error_message = ''Value "'' + key + ''" must be in the array '' + JSON.stringify(rule.array); } else if (CParamValidator.isDefined(rule.macro) && !CParamValidator.isMacroSet(value.toString(), rule.macro)) { error_message = ''The macro '' + ((CParamValidator.isDefined(rule.macro)) ? ''{'' + rule.macro + ''} '' : '' '') + ''is not set''; } if (error_message !== null) { if (CParamValidator.isDefined(rule.default) && CParamValidator.isType(rule.default, rule.type)) { params[key] = rule.default; } else { Zabbix.log(4, ''Default value for "'' + key + ''" must be a '' + rule.type + ''. Skipped.''); throw ''Incorrect value for variable "'' + key + ''". '' + error_message; } } return this; }, validate: function(rules, params) { if (!CParamValidator.isType(params, ''object'') || CParamValidator.isType(params, ''array'')) { throw ''Incorrect parameters value. The value must be an object.''; } for (var key in rules) { CParamValidator.check(key, rules[key], params); } } } const CHttpRequest = function(logger) { this.request = new HttpRequest(); if (typeof logger !== ''object'' || logger === null) { this.logger = Zabbix; } else { this.logger = logger; } this.clearHeader = function() { this.request.clearHeader(); } this.addHeaders = function(value) { var headers = []; if (typeof value === ''object'' && value !== null) { if (!Array.isArray(value)) { Object.keys(value).forEach(function(key) { headers.push(key + '': '' + value[key]); }); } else { headers = value; } } else if (typeof value === ''string'') { value.split(''\\r\\n'').forEach(function(header) { headers.push(header); }); } for (var idx in headers) { this.request.addHeader(headers[idx]); } } this.setProxy = function(proxy) { this.request.setProxy(proxy); } this.plainRequest = function(method, url, data) { var resp = null; method = method.toLowerCase(); this.logger.log(4, ''Sending '' + method + '' request:'' + JSON.stringify(data)); if ([''get'', ''post'', ''put'', ''patch'', ''delete'', ''trace''].indexOf(method) !== -1) { resp = this.request[method](url, data); } else if ([''connect'', ''head'', ''options''].indexOf(method) !== -1) { resp = this.request[method](url); } else { throw ''Unexpected method. Method '' + method + '' is not supported.''; } this.logger.log(4, ''Response has been received: '' + resp); return resp; } this.jsonRequest = function(method, url, data) { this.addHeaders(''Content-Type: application/json''); var resp = this.plainRequest(method, url, JSON.stringify(data)); try { resp = JSON.parse(resp); } catch (error) { throw ''Failed to parse response: not well-formed JSON was received''; } return resp; } this.getStatus = function() { return this.request.getStatus(); } } var SEVERITY_COLORS = [ ''#97AAB3'', ''#7499FF'', ''#FFC859'', ''#FFA059'', ''#E97659'', ''#E45959'', ''#009900'', ''#1F1F1F'' ], serviceLogName = ''MS Teams Webhook'', Logger = new CLogger(serviceLogName), MSTeams = CWebhook; MSTeams.prototype.addBodyFact = function (name, value) { if (!CParamValidator.isDefined(this.data.sections[0].facts)) { this.data.sections[0].facts = []; } this.data.sections[0].facts.push({name: name, value: value}); } MSTeams.prototype.onCheckParams = function () { CParamValidator.validate({teams_endpoint: {type: ''string''}, event_source: {type: ''string''}, alert_subject: {type: ''string''}, alert_message: {type: ''string''}, host_ip: {type: ''string'', default: ''''}, zabbix_url: {type: ''string'', url: true}, use_default_message: {type: ''boolean'', default: false}, event_nseverity: {type: ''integer'', default: 7}}, this.params); var actionName = ''Zabbix Home''; if (!CParamValidator.inArray(this.params.event_source, [''0'',''3'',''4'']) || this.params.alert_message.startsWith("NOTE: Escalation canceled:")) { this.params[''use_default_message''] = true; } if (this.params.event_source === ''0'') { CParamValidator.validate({event_id: {type: ''integer''}, trigger_id: {type: ''integer''}}, this.params); actionName = ''Event Info''; } var actionURL = CWebhookHelper.createProblemURL(this.params.event_source, this.params.zabbix_url, this.params.trigger_id, this.params.event_id); if (this.params.event_value === ''0'') { this.params.event_nseverity = 6; } this.data = { themeColor: SEVERITY_COLORS[this.params.event_nseverity].replace(''#'', ''''), summary: this.params.alert_subject, sections: [{ markdown: ''false'', activityTitle: this.params.alert_subject, text: (this.params.event_source === ''0'' && !this.params.use_default_message) ? this.params.trigger_description : this.params.alert_message }], potentialAction: [{ ''@type'': ''OpenUri'', name: actionName, targets: [{ os: ''default'', uri: actionURL }] }] }; }; MSTeams.prototype.makeUpDefaultMessage = function () { if (!this.params.use_default_message) { if (!CParamValidator.isEmpty(this.params.host_name) && CParamValidator.isMacroSet(this.params.host_name, ''HOST.NAME'')) { this.addBodyFact(''Host'', this.params.host_name + ((!CParamValidator.isEmpty(this.params.host_ip)) ? '' ['' + this.params.host_ip + '']'' : '''')); } if (!CParamValidator.isEmpty(this.params.event_severity) && CParamValidator.isMacroSet(this.params.event_severity, ''EVENT.SEVERITY'')) { this.addBodyFact(''Severity'', this.params.event_severity); } if (!CParamValidator.isEmpty(this.params.event_opdata) && CParamValidator.isMacroSet(this.params.event_opdata, ''EVENT.OPDATA'')) { this.addBodyFact(''Operational data'', this.params.event_opdata); } if (!CParamValidator.isEmpty(this.params.event_tags) && CParamValidator.isMacroSet(this.params.event_tags, ''EVENT.TAGS'')) { this.addBodyFact(''Event tags'', this.params.event_tags); } Object.keys(this.params).forEach(function (key) { if (key.startsWith(''fact_'') && this.params[key] !== '''') { this.addBodyFact(key.substring(5), this.params[key]); } else if (key.startsWith(''openUri_'') && this.params[key] !== '''' && !this.params[key].startsWith(''{'')) { this.data.potentialAction.push({ ''@type'': ''OpenUri'', name: key.substring(8), targets: [{ os: ''default'', uri: this.params[key] }] }); } }); } } const htmlMultiline = function (text) { return text.replace(/(?:\\r\\n|\\r|\\n)/g, ''
''); } MSTeams.prototype.sendRequest = function () { this.request.addHeaders({"Content-Type": "application/json"}); var response = this.request.plainRequest(''POST'', this.params.teams_endpoint, JSON.stringify(this.data)); if (response !== ''1'') { Logger.log(Logger.WARN, ''FAILED with response: '' + response); throw response; } return ''OK''; }; MSTeams.prototype.onProblem = function (alert) { Logger.log(Logger.INFO, ''Source: '' + alert.source + ''; Event: '' + alert.event); if (!this.params.use_default_message) { this.addBodyFact(''Event time'', this.params.event_time + '' '' + this.params.event_date); this.makeUpDefaultMessage(); } this.data.sections[0].text = htmlMultiline(this.data.sections[0].text); return this.sendRequest(); } MSTeams.prototype.onUpdate = function (alert) { Logger.log(Logger.INFO, ''Source: '' + alert.source + ''; Event: '' + alert.event); if (!this.params.use_default_message) { this.data.sections[0].text = this.params.event_update_user + '' '' + this.params.event_update_action + ''.''; if (this.params.event_update_message) { this.data.sections[0].text += ''
Message:
'' + this.params.event_update_message; } this.addBodyFact(''Event update time'', this.params.event_update_time + '' '' + this.params.event_update_date); this.makeUpDefaultMessage(); } this.data.sections[0].text = htmlMultiline(this.data.sections[0].text); return this.sendRequest(); } MSTeams.prototype.onResolve = function (alert) { Logger.log(Logger.INFO, ''Source: '' + alert.source + ''; Event: '' + alert.event); if (!this.params.use_default_message) { this.addBodyFact(''Recovery time'', this.params.event_recovery_time + '' '' + this.params.event_recovery_date); this.makeUpDefaultMessage(); } this.data.sections[0].text = htmlMultiline(this.data.sections[0].text); return this.sendRequest(); } MSTeams.prototype.onDiscovery = function (alert) { return this.onProblem(alert); } MSTeams.prototype.onAutoreg = function (alert) { return this.onProblem(alert); } try { var hook = new MSTeams(value); hook.request = new CHttpRequest(Logger); return hook.run(); } catch (error) { Logger.log(Logger.WARN, ''notification failed: '' + error); throw ''Sending failed: '' + error; }','30s','0','0','','','https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/templates/media/msteams 1. Add official Zabbix webhook connector from MS Teams apps for the channel, where you want to receive notifications. 2. Create Incoming webhook for your channel. 3. In the Zabbix web interface go to Administration → Macros section. Setup the global macro "{$ZABBIX.URL}" which will contain the URL to the Zabbix frontend. 4. On this page replace placeholder with the incoming webhook URL, created during the webhook setup in MS Teams. 5. To receive Zabbix notifications in MS Teams, you need to create a Zabbix user and add Media with the MS Teams media type. Make sure this user has access to all hosts for which you would like problem notifications to be sent to MS Teams.','0'), ('53','4','MS Teams Workflow','','','','','','','','25','0','0','0','0','1','3','10s','1',E'const CLogger = function(serviceName) { this.serviceName = serviceName; this.INFO = 4 this.WARN = 3 this.ERROR = 2 this.log = function(level, msg) { Zabbix.log(level, ''['' + this.serviceName + ''] '' + msg); } } const CWebhook = function(value) { try { params = JSON.parse(value); if ([''0'', ''1'', ''2'', ''3'', ''4''].indexOf(params.event_source) === -1) { throw ''Incorrect "event_source" parameter given: '' + params.event_source + ''.\\nMust be 0-4.''; } if ([''0'', ''3'', ''4''].indexOf(params.event_source) !== -1 && [''0'', ''1''].indexOf(params.event_value) === -1) { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''.\\nMust be 0 or 1.''; } if ([''0'', ''3'', ''4''].indexOf(params.event_source) !== -1) { if (params.event_source === ''1'' && [''0'', ''1'', ''2'', ''3''].indexOf(params.event_value) === -1) { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''.\\nMust be 0-3.''; } if (params.event_source === ''0'' && [''0'', ''1''].indexOf(params.event_update_status) === -1) { throw ''Incorrect "event_update_status" parameter given: '' + params.event_update_status + ''.\\nMust be 0 or 1.''; } if (params.event_source === ''4'') { if ([''0'', ''1'', ''2'', ''3'', ''4'', ''5''].indexOf(params.event_update_nseverity) !== -1 && params.event_update_nseverity != params.event_nseverity) { params.event_nseverity = params.event_update_nseverity; params.event_severity = params.event_update_severity; params.event_update_status = ''1''; } } } this.runCallback = function(name, params) { if (typeof this[name] === ''function'') { return this[name].apply(this, [params]); } } this.handleEvent = function(source, event) { const alert = { source: source, event: event }; return [ this.runCallback(''on'' + source + event, alert), this.runCallback(''on'' + event, alert), this.runCallback(''onEvent'', alert) ]; } this.handleEventless = function(source) { const alert = { source: source, event: null }; return [ this.runCallback(''on'' + source, alert), this.runCallback(''onEvent'', alert) ]; } this.run = function() { var results = []; if (typeof this.httpProxy === ''string'' && this.httpProxy.trim() !== '''') { this.request.setProxy(this.httpProxy); } const types = { ''0'': ''Trigger'', ''1'': ''Discovery'', ''2'': ''Autoreg'', ''3'': ''Internal'', ''4'': ''Service'' }; if ([''0'', ''3'', ''4''].indexOf(this.params.event_source) !== -1) { var event = (this.params.event_update_status === ''1'') ? ''Update'' : ((this.params.event_value === ''1'') ? ''Problem'' : ''Resolve''); results = this.handleEvent(types[this.params.event_source], event); } else if (typeof types[this.params.event_source] !== ''undefined'') { results = this.handleEventless(types[this.params.event_source]); } else { throw ''Unexpected "event_source": '' + this.params.event_source; } for (idx in results) { if (typeof results[idx] !== ''undefined'') { return JSON.stringify(results[idx]); } } } this.httpProxy = params.http_proxy; this.params = params; this.runCallback(''onCheckParams'', {}); } catch (error) { throw ''Webhook processing failed: '' + error; } } const CParamValidator = { isType: function(value, type) { if (type === ''array'') { return Array.isArray(value); } if (type === ''integer'') { return CParamValidator.isInteger(value); } if (type === ''float'') { return CParamValidator.isFloat(value); } return (typeof value === type); }, isInteger: function(value) { if (!CParamValidator.ifMatch(value, /^-?\\d+$/)) { return false; } return !isNaN(parseInt(value)); }, isFloat: function(value) { if (!CParamValidator.ifMatch(value, /^-?\\d+\\.\\d+$/)) { return false; } return !isNaN(parseFloat(value)); }, isDefined: function(value) { return !CParamValidator.isType(value, ''undefined''); }, isEmpty: function(value) { if (!CParamValidator.isType(value, ''string'')) { throw ''Value "'' + value + ''" must be a string to be checked for emptiness.''; } return (value.trim() === ''''); }, isMacroSet: function(value, macro) { if (CParamValidator.isDefined(macro)) { return !(CParamValidator.ifMatch(value, ''^\\{'' + macro + ''\\}$'')) } return !(CParamValidator.ifMatch(value, ''^\\{[$#]{0,1}[A-Z_\\.]+[\\:]{0,1}["]{0,1}.*["]{0,1}\\}$'') || value === ''*UNKNOWN*'') }, withinRange: function(value, min, max) { if (!CParamValidator.isType(value, ''number'')) { throw ''Value "'' + value + ''" must be a number to be checked for range.''; } if (value < ((CParamValidator.isDefined(min)) ? min : value) || value > ((CParamValidator.isDefined(max)) ? max : value)) { return false; } return true; }, inArray: function(value, array) { if (!CParamValidator.isType(array, ''array'')) { throw ''The array must be an array to check the value for existing in it.''; } return (array.indexOf((typeof value === ''string'') ? value.toLowerCase() : value) !== -1); }, ifMatch: function(value, regex) { return (new RegExp(regex)).test(value); }, match: function(value, regex) { if (!CParamValidator.isType(value, ''string'')) { throw ''Value "'' + value + ''" must be a string to be matched with the regular expression.''; } return value.match(new RegExp(regex)); }, checkURL: function(value) { if (CParamValidator.isEmpty(value)) { throw ''URL value "'' + value + ''" must be a non-empty string.''; } if (!CParamValidator.ifMatch(value, ''^(http|https):\\/\\/.+'')) { throw ''URL value "'' + value + ''" must contain a schema.''; } return value.endsWith(''/'') ? value.slice(0, -1) : value; }, check: function(key, rule, params) { if (!CParamValidator.isDefined(rule.type)) { throw ''Mandatory attribute "type" has not been defined for parameter "'' + key + ''".''; } if (!CParamValidator.isDefined(params[key])) { throw ''Checked parameter "'' + key + ''" was not found in the list of input parameters.''; } var value = params[key], error_message = null; switch (rule.type) { case ''string'': if (!CParamValidator.isType(value, ''string'')) { throw ''Value "'' + key + ''" must be a string.''; } if (CParamValidator.isEmpty(value)) { error_message = ''Value "'' + key + ''" must be a non-empty string''; break; } if (CParamValidator.isDefined(rule.len) && value.length < rule.len) { error_message = ''Value "'' + key + ''" must be a string with a length > '' + rule.len; } if (CParamValidator.isDefined(rule.regex) && !CParamValidator.ifMatch(value, rule.regex)) { error_message = ''Value "'' + key + ''" must match the regular expression "'' + rule.regex + ''"''; } if (CParamValidator.isDefined(rule.url) && rule.url === true) { value = CParamValidator.checkURL(value); } break; case ''integer'': if (!CParamValidator.isInteger(value)) { error_message = ''Value "'' + key + ''" must be an integer''; break; } value = parseInt(value); break; case ''float'': if (!CParamValidator.isFloat(value)) { error_message = ''Value "'' + key + ''" must be a floating-point number''; break; } value = parseFloat(value); break; case ''boolean'': if (CParamValidator.inArray(value, [''1'', ''true'', ''yes'', ''on''])) { value = true; } else if (CParamValidator.inArray(value, [''0'', ''false'', ''no'', ''off''])) { value = false; } else { error_message = ''Value "'' + key + ''" must be a boolean-like.''; } break; case ''array'': try { value = JSON.parse(value); } catch (error) { throw ''Value "'' + key + ''" contains invalid JSON.''; } if (!CParamValidator.isType(value, ''array'')) { error_message = ''Value "'' + key + ''" must be an array.''; } if (CParamValidator.isDefined(rule.tags) && rule.tags === true) { value = value.reduce(function(acc, obj) { acc[obj.tag] = obj.value || null; return acc; }, {}); } break; case ''object'': value = JSON.parse(value); if (!CParamValidator.isType(value, ''object'')) { error_message = ''Value "'' + key + ''" must be an object.''; } break; default: throw ''Unexpected attribute type "'' + rule.type + ''" for value "'' + key + ''". Available: '' + [''integer'', ''float'', ''string'', ''boolean'', ''array'', ''object''].join('', ''); } params[key] = value; if (CParamValidator.inArray(rule.type, [''integer'', ''float'']) && error_message === null && (CParamValidator.isDefined(rule.min) || CParamValidator.isDefined(rule.max)) && !CParamValidator.withinRange(value, rule.min, rule.max)) { error_message = ''Value "'' + key + ''" must be a number '' + ((CParamValidator.isDefined(rule.min) && CParamValidator.isDefined(rule.max)) ? (rule.min + ''..'' + rule.max) : ((CParamValidator.isDefined(rule.min)) ? ''>'' + rule.min : ''<'' + rule.max)); } else if (CParamValidator.isDefined(rule.array) && !CParamValidator.inArray(value, rule.array)) { error_message = ''Value "'' + key + ''" must be in the array '' + JSON.stringify(rule.array); } else if (CParamValidator.isDefined(rule.macro) && !CParamValidator.isMacroSet(value.toString(), rule.macro)) { error_message = ''The macro '' + ((CParamValidator.isDefined(rule.macro)) ? ''{'' + rule.macro + ''} '' : '' '') + ''is not set''; } if (error_message !== null) { if (CParamValidator.isDefined(rule.default) && CParamValidator.isType(rule.default, rule.type)) { params[key] = rule.default; } else { Zabbix.log(4, ''Default value for "'' + key + ''" must be a '' + rule.type + ''. Skipped.''); throw ''Incorrect value for variable "'' + key + ''". '' + error_message; } } return this; }, validate: function(rules, params) { if (!CParamValidator.isType(params, ''object'') || CParamValidator.isType(params, ''array'')) { throw ''Incorrect parameters value. The value must be an object.''; } for (var key in rules) { CParamValidator.check(key, rules[key], params); } } } const CHttpRequest = function(logger) { this.request = new HttpRequest(); if (typeof logger !== ''object'' || logger === null) { this.logger = Zabbix; } else { this.logger = logger; } this.clearHeader = function() { this.request.clearHeader(); } this.addHeaders = function(value) { var headers = []; if (typeof value === ''object'' && value !== null) { if (!Array.isArray(value)) { Object.keys(value).forEach(function(key) { headers.push(key + '': '' + value[key]); }); } else { headers = value; } } else if (typeof value === ''string'') { value.split(''\\r\\n'').forEach(function(header) { headers.push(header); }); } for (var idx in headers) { this.request.addHeader(headers[idx]); } } this.setProxy = function(proxy) { this.request.setProxy(proxy); } this.plainRequest = function(method, url, data) { var resp = null; method = method.toLowerCase(); this.logger.log(4, ''Sending '' + method + '' request:'' + JSON.stringify(data)); if ([''get'', ''post'', ''put'', ''patch'', ''delete'', ''trace''].indexOf(method) !== -1) { resp = this.request[method](url, data); } else if ([''connect'', ''head'', ''options''].indexOf(method) !== -1) { resp = this.request[method](url); } else { throw ''Unexpected method. Method '' + method + '' is not supported.''; } this.logger.log(4, ''Response has been received: '' + resp); return resp; } this.jsonRequest = function(method, url, data) { this.addHeaders(''Content-Type: application/json''); var resp = this.plainRequest(method, url, JSON.stringify(data)); try { resp = JSON.parse(resp); } catch (error) { throw ''Failed to parse response: not well-formed JSON was received''; } return resp; } this.getStatus = function() { return this.request.getStatus(); } } const CWebhookHelper = { createProblemURL: function(event_source, zabbix_url, trigger_id, event_id) { if (event_source === ''0'') { return zabbix_url + ''/tr_events.php?triggerid='' + trigger_id + ''&eventid='' + event_id; } else if (event_source === ''4'') { return zabbix_url + ''/zabbix.php?action=service.list''; } return zabbix_url; }, }; var serviceLogName = ''MS Teams Webhook'', Logger = new CLogger(serviceLogName), MSTeams = CWebhook; MSTeams.prototype.onCheckParams = function () { CParamValidator.validate({ alert_subject: { type: ''string'' }, alert_message: { type: ''string'' }, zabbix_url: { type: ''string'', url: true }, teams_endpoint: { type: ''string'', url: true } }, this.params); if (this.params.event_source === ''0'') { CParamValidator.validate({ event_id: { type: ''integer'' }, trigger_id: { type: ''integer'' } }, this.params); } this.body = { type: "message", attachments: [ { contentType: "application/vnd.microsoft.card.adaptive", contentUrl: null, content: { $schema: "http://adaptivecards.io/schemas/adaptive-card.json", type: "AdaptiveCard", version: "1.4", body: [ { type: "Container", items: [ { type: "TextBlock", size: "Medium", wrap: "true", weight: "Bolder", text: this.params.alert_subject } ], style: "", bleed: true } ], actions: [ { type: "Action.OpenUrl", title: "Event info", url: CWebhookHelper.createProblemURL(this.params.event_source, this.params.zabbix_url, this.params.trigger_id, this.params.event_id) } ] } } ] }; this.params.alert_message = this.params.alert_message.split(''\\n''); for (line in this.params.alert_message) { this.body.attachments[0].content.body.push({ type: "TextBlock", wrap: "true", text: this.params.alert_message[line] }); } }; MSTeams.prototype.sendRequest = function (color) { this.body.attachments[0].content.body[0].style = color; this.request.addHeaders({ "Content-Type": "application/json" }); var response = this.request.plainRequest(''POST'', this.params.teams_endpoint, JSON.stringify(this.body)); if (this.request.getStatus() !== 202) { Logger.log(Logger.INFO, ''HTTP code: '' + this.request.getStatus() + ''. Endpoint response:'' + response); throw ''HTTP code: '' + this.request.getStatus() + ''. Endpoint response:'' + response; } return ''OK''; }; MSTeams.prototype.onProblem = function () { return this.sendRequest("attention"); }; MSTeams.prototype.onResolve = function () { return this.sendRequest("good"); }; MSTeams.prototype.onUpdate = function () { return this.sendRequest("emphasis"); }; MSTeams.prototype.onDiscovery = function () { return this.sendRequest("emphasis"); }; MSTeams.prototype.onAutoreg = function () { return this.sendRequest("emphasis"); }; try { var hook = new MSTeams(value); hook.request = new CHttpRequest(Logger); return hook.run(); } catch (error) { Logger.log(Logger.WARN, ''notification failed: '' + error); throw ''Sending failed: '' + error; };','30s','0','0','','','To set up a webhook, please follow these steps: - Create a workflow in MS Teams. You can use the "Post a message in a channel when a webhook request is received" template for it. - Copy the endpoint URL and place it in the teams_endpoint parameter. - Set up the global macro {$ZABBIX.URL}, which will contain the URL to the Zabbix frontend. - Create a Zabbix user and add the MS Teams Workflow media to it. For more detailed instructions, please visit https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/templates/media/.','0'), ('54','4','Opsgenie','','','','','','','','25','0','0','0','0','1','3','10s','1',E'var method, Media = { params: {}, name: '''', labels: [], HTTPProxy: '''', setParams: function (params) { if (typeof params !== ''object'') { return; } Media.params = params; Media.params.api += Media.params.api.endsWith(''/'') ? '''' : ''/''; Media.params.web += Media.params.web.endsWith(''/'') ? '''' : ''/''; }, setProxy: function (HTTPProxy) { if (typeof HTTPProxy !== ''undefined'' && HTTPProxy.trim() !== '''') { Media.HTTPProxy = HTTPProxy; } }, setTags: function(event_tags_json) { if (typeof event_tags_json !== ''undefined'' && event_tags_json !== '''' && event_tags_json !== ''{EVENT.TAGSJSON}'') { try { var tags = JSON.parse(event_tags_json), label; tags.forEach(function (tag) { if (typeof tag.tag === ''string'') { label = (tag.tag + (typeof tag.value !== ''undefined'' && tag.value !== '''' ? ('':'' + tag.value) : '''')).replace(/\\s/g, ''_''); Media.labels.push(label); } }); } catch (error) { Zabbix.log(4, ''[ '' + Media.name + '' Webhook ] Failed to parse "event_tags_json" param''); } } }, request: function (method, query, data, allow_404) { if (typeof(allow_404) === ''undefined'') { allow_404 = false; } [''api'', ''token''].forEach(function (field) { if (typeof Media.params !== ''object'' || typeof Media.params[field] === ''undefined'' || Media.params[field] === '''') { throw ''Required '' + Media.name + '' param is not set: "'' + field + ''".''; } }); var response, url = Media.params.api + query, request = new HttpRequest(); request.addHeader(''Content-Type: application/json''); request.addHeader(''Authorization: '' + Media.params.token); request.setProxy(Media.HTTPProxy); if (typeof data !== ''undefined'') { data = JSON.stringify(data); } Zabbix.log(4, ''[ '' + Media.name + '' Webhook ] Sending request: '' + url + ((typeof data === ''string'') ? (''\\n'' + data) : '''')); switch (method) { case ''get'': response = request.get(url, data); break; case ''post'': response = request.post(url, data); break; case ''put'': response = request.put(url, data); break; default: throw ''Unsupported HTTP request method: '' + method; } Zabbix.log(4, ''[ '' + Media.name + '' Webhook ] Received response with status code '' + request.getStatus() + ''\\n'' + response); if (response !== null) { try { response = JSON.parse(response); } catch (error) { Zabbix.log(4, ''[ '' + Media.name + '' Webhook ] Failed to parse response.''); response = null; } } if ((request.getStatus() < 200 || request.getStatus() >= 300) && (!allow_404 || request.getStatus() !== 404)) { var message = ''Request failed with status code '' + request.getStatus(); if (response !== null) { if (typeof response.errors === ''object'' && Object.keys(response.errors).length > 0) { message += '': '' + JSON.stringify(response.errors); } else if (typeof response.errorMessages === ''object'' && Object.keys(response.errorMessages).length > 0) { message += '': '' + JSON.stringify(response.errorMessages); } else if (typeof response.message === ''string'') { message += '': '' + response.message; } } throw message + '' Check debug log for more information.''; } return { status: request.getStatus(), response: response }; }, getAlertId: function (requestId) { status_counter = params.status_counter || 25; do { resp = Media.request(''get'', ''requests/'' + requestId, undefined, true); status_counter -= 1; } while ( status_counter > 0 && ( typeof resp.response !== ''object'' || typeof resp.response.data === ''undefined'' || resp.response.data.success === false && !resp.response.data.status.includes("There is no open alert") && !resp.response.data.status.includes("Alert is already") ) ); if (typeof resp.response !== ''object'' || typeof resp.response.data === ''undefined'') { throw ''Cannot get '' + Media.name + '' issue ID. Check debug log for more information.''; } else if (resp.response.data.success === false ) { throw Media.name + '': Operation status ('' + resp.response.data.status + '')''; } return resp; } }; try { var result = {tags: {}}, params = JSON.parse(value), media = {}, fields = {}, resp = {}, responders = [], tags = [], required_params = [ ''alert_subject'', ''alert_message'', ''event_id'', ''event_source'', ''event_value'', ''event_update_status'', ''opsgenie_api'', ''opsgenie_web'', ''opsgenie_token'' ], severities = [ ''not_classified'', ''information'', ''warning'', ''average'', ''high'', ''disaster'', ''resolved'', ''default'' ], priority; Object.keys(params) .forEach(function (key) { if (required_params.indexOf(key) !== -1 && params[key].trim() === '''') { throw ''Parameter "'' + key + ''" cannot be empty.''; } if (key.startsWith(''opsgenie_'')) { media[key.substring(9)] = params[key]; } }); // Possible values of event_source: // 0 - Trigger, 1 - Discovery, 2 - Autoregistration, 3 - Internal. if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) { throw ''Incorrect "event_source" parameter given: "'' + params.event_source + ''".\\nMust be 0-3.''; } // Check event_value for trigger-based and internal events. // Possible values: 1 for problem, 0 for recovering if (params.event_value !== ''0'' && params.event_value !== ''1'' && (params.event_source === ''0'' || params.event_source === ''3'')) { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''\\nMust be 0 or 1.''; } // Check event_update_status only for trigger-based events. // Possible values: 0 - Webhook was called because of problem/recovery event, 1 - Update operation. if (params.event_source === ''0'' && params.event_update_status !== ''0'' && params.event_update_status !== ''1'') { throw ''Incorrect "event_update_status" parameter given: '' + params.event_update_status + ''\\nMust be 0 or 1.''; } // Check event_id for a numeric value. if (isNaN(parseInt(params.event_id)) || params.event_id < 1) { throw ''Incorrect "event_id" parameter given: '' + params.event_id + ''\\nMust be a positive number.''; } if ((params.event_source === ''1'' || params.event_source === ''2'') && params.event_value === ''0'') { throw ''Recovery operations are supported only for Trigger and Internal actions.''; } if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) { params.event_nseverity = ''7''; } if (params.event_value === ''0'') { params.event_nseverity = ''6''; } priority = params[''severity_'' + severities[params.event_nseverity]]; params.zbxurl = params.zbxurl + (params.zbxurl.endsWith(''/'') ? '''' : ''/''); Media.name = ''Opsgenie''; Media.setParams(media); Media.params.token = ''GenieKey '' + Media.params.token; Media.setProxy(params.HTTPProxy); Media.setTags(params.event_tags_json); // Set Media.labels // Create an issue. // Numeric value of the event that triggered an action (1 for problem, 0 for recovering). // Numeric value of the problem update status. Possible values: // 0 - Webhook was called because of problem/recovery event, 1 - Update operation. if ((params.event_source == 0 && params.event_value == 1 && params.event_update_status == 0) || (params.event_source == 3 && params.event_value == 1) || params.event_source == 1 || params.event_source == 2) { fields.message = params.alert_subject; fields.alias = params.event_id; fields.description = params.alert_message; fields.priority = priority; fields.source = ''Zabbix''; if (params.event_source === ''0'') { fields.details = { ''Zabbix server'': params.zbxurl, Problem: params.zbxurl + ''tr_events.php?triggerid='' + params.trigger_id + ''&eventid='' + params.event_id }; } else { fields.details = {''Zabbix server'': params.zbxurl}; } if (typeof params.opsgenie_teams === ''string'') { responders = params.opsgenie_teams.split('',''); fields.responders = responders.map(function(team) { return {type: ''team'', name: team.trim()}; }); } fields.tags = Media.labels; if (typeof params.opsgenie_tags === ''string'') { tags = params.opsgenie_tags.split('',''); tags.forEach(function(item) { fields.tags.push(item.trim()); }); } resp = Media.request(''post'', '''', fields); if (typeof resp.response !== ''object'' || typeof resp.response.result === ''undefined'') { throw ''Cannot create '' + Media.name + '' issue. Check debug log for more information.''; } if (resp.status === 202) { resp = Media.getAlertId(resp.response.requestId); if (params.event_source == 0 && params.event_value == 1 && params.event_update_status == 0) { result.tags.__zbx_ops_issuekey = resp.response.data.alertId; result.tags.__zbx_ops_issuelink = Media.params.web + ''alert/detail/'' + resp.response.data.alertId; } } else { throw Media.name + '' response code is unexpected. Check debug log for more information.''; } } // Update or close the created issue. else { fields.user = (params.event_value != 0) ? params.zbxuser : ''''; fields.note = params.alert_message; if ( [0, 3].indexOf(parseInt(params.event_source)) > -1 && params.event_value == 0 ) { // skip sending of close request from update operation(mandatory when both update & recovery operations are defined in action) method = params.event_update_status == 0 ? "close" : "skip"; } else if ( params.event_source == 0 && params.event_value == 1 && params.event_update_status == 1 && params.event_update_action.includes(''acknowledged'')) { method = params.event_update_action.includes(''unacknowledged'') ? "unacknowledge" : "acknowledge"; } else { method = "notes"; } if (method !== "skip") { resp = Media.request(''post'', params.event_id + ''/'' + method +''?identifierType=alias'', fields); if (typeof resp.response !== ''object'' || typeof resp.response.result === ''undefined'') { throw ''Cannot update '' + Media.name + '' issue. Check debug log for more information.''; } if (resp.status === 202) { resp = Media.getAlertId(resp.response.requestId); } else { throw Media.name + '' response code is unexpected. Check debug log for more information.''; } } } return JSON.stringify(result); } catch (error) { Zabbix.log(3, ''[ '' + Media.name + '' Webhook ] ERROR: '' + error); throw ''Sending failed: '' + error; }','30s','1','1','{EVENT.TAGS.__zbx_ops_issuelink}','Opsgenie: {EVENT.TAGS.__zbx_ops_issuekey}','Please refer to https://docs.opsgenie.com/docs/alert-api and https://www.zabbix.com/documentation/7.0/manual/config/notifications/media/webhook#example_scripts. Set global macro {$ZABBIX.URL} with your Zabbix server URL. Add dedicated user with media type "Opsgenie". Change the values of the variables opsgenie_api (https://api.opsgenie.com/v2/alerts or https://api.eu.opsgenie.com/v2/alerts), opsgenie_web (for example, https://myzabbix.app.opsgenie.com), opsgenie_token.','0'), ('55','4','OTRS CE','','','','','','','','25','0','0','0','0','1','3','10s','1',E'const CLogger = function(serviceName) { this.serviceName = serviceName; this.INFO = 4 this.WARN = 3 this.ERROR = 2 this.log = function(level, msg) { Zabbix.log(level, ''['' + this.serviceName + ''] '' + msg); } } const CWebhook = function(value) { try { params = JSON.parse(value); if ([''0'', ''1'', ''2'', ''3'', ''4''].indexOf(params.event_source) === -1) { throw ''Incorrect "event_source" parameter given: '' + params.event_source + ''.\\nMust be 0-4.''; } if ([''0'', ''3'', ''4''].indexOf(params.event_source) !== -1 && [''0'', ''1''].indexOf(params.event_value) === -1) { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''.\\nMust be 0 or 1.''; } if ([''0'', ''3'', ''4''].indexOf(params.event_source) !== -1) { if (params.event_source === ''1'' && [''0'', ''1'', ''2'', ''3''].indexOf(params.event_value) === -1) { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''.\\nMust be 0-3.''; } if (params.event_source === ''0'' && [''0'', ''1''].indexOf(params.event_update_status) === -1) { throw ''Incorrect "event_update_status" parameter given: '' + params.event_update_status + ''.\\nMust be 0 or 1.''; } if (params.event_source === ''4'') { if ([''0'', ''1'', ''2'', ''3'', ''4'', ''5''].indexOf(params.event_update_nseverity) !== -1 && params.event_update_nseverity != params.event_nseverity) { params.event_nseverity = params.event_update_nseverity; params.event_severity = params.event_update_severity; params.event_update_status = ''1''; } } } this.runCallback = function(name, params) { if (typeof this[name] === ''function'') { return this[name].apply(this, [params]); } } this.handleEvent = function(source, event) { const alert = { source: source, event: event }; return [ this.runCallback(''on'' + source + event, alert), this.runCallback(''on'' + event, alert), this.runCallback(''onEvent'', alert) ]; } this.handleEventless = function(source) { const alert = { source: source, event: null }; return [ this.runCallback(''on'' + source, alert), this.runCallback(''onEvent'', alert) ]; } this.run = function() { var results = []; if (typeof this.httpProxy === ''string'' && this.httpProxy.trim() !== '''') { this.request.setProxy(this.httpProxy); } const types = { ''0'': ''Trigger'', ''1'': ''Discovery'', ''2'': ''Autoreg'', ''3'': ''Internal'', ''4'': ''Service'' }; if ([''0'', ''3'', ''4''].indexOf(this.params.event_source) !== -1) { var event = (this.params.event_update_status === ''1'') ? ''Update'' : ((this.params.event_value === ''1'') ? ''Problem'' : ''Resolve''); results = this.handleEvent(types[this.params.event_source], event); } else if (typeof types[this.params.event_source] !== ''undefined'') { results = this.handleEventless(types[this.params.event_source]); } else { throw ''Unexpected "event_source": '' + this.params.event_source; } for (idx in results) { if (typeof results[idx] !== ''undefined'') { return JSON.stringify(results[idx]); } } } this.httpProxy = params.http_proxy; this.params = params; this.runCallback(''onCheckParams'', {}); } catch (error) { throw ''Webhook processing failed: '' + error; } } const CWebhookHelper = { createProblemURL: function(event_source, zabbix_url, trigger_id, event_id) { if (event_source === ''0'') { return zabbix_url + ''/tr_events.php?triggerid='' + trigger_id + ''&eventid='' + event_id; } else if (event_source === ''4'') { return zabbix_url + ''/zabbix.php?action=service.list''; } return zabbix_url; }, }; const CParamValidator = { isType: function(value, type) { if (type === ''array'') { return Array.isArray(value); } if (type === ''integer'') { return CParamValidator.isInteger(value); } if (type === ''float'') { return CParamValidator.isFloat(value); } return (typeof value === type); }, isInteger: function(value) { if (!CParamValidator.ifMatch(value, /^-?\\d+$/)) { return false; } return !isNaN(parseInt(value)); }, isFloat: function(value) { if (!CParamValidator.ifMatch(value, /^-?\\d+\\.\\d+$/)) { return false; } return !isNaN(parseFloat(value)); }, isDefined: function(value) { return !CParamValidator.isType(value, ''undefined''); }, isEmpty: function(value) { if (!CParamValidator.isType(value, ''string'')) { throw ''Value "'' + value + ''" must be a string to be checked for emptiness.''; } return (value.trim() === ''''); }, isMacroSet: function(value, macro) { if (CParamValidator.isDefined(macro)) { return !(CParamValidator.ifMatch(value, ''^\\{'' + macro + ''\\}$'')) } return !(CParamValidator.ifMatch(value, ''^\\{[$#]{0,1}[A-Z_\\.]+[\\:]{0,1}["]{0,1}.*["]{0,1}\\}$'') || value === ''*UNKNOWN*'') }, withinRange: function(value, min, max) { if (!CParamValidator.isType(value, ''number'')) { throw ''Value "'' + value + ''" must be a number to be checked for range.''; } if (value < ((CParamValidator.isDefined(min)) ? min : value) || value > ((CParamValidator.isDefined(max)) ? max : value)) { return false; } return true; }, inArray: function(value, array) { if (!CParamValidator.isType(array, ''array'')) { throw ''The array must be an array to check the value for existing in it.''; } return (array.indexOf((typeof value === ''string'') ? value.toLowerCase() : value) !== -1); }, ifMatch: function(value, regex) { return (new RegExp(regex)).test(value); }, match: function(value, regex) { if (!CParamValidator.isType(value, ''string'')) { throw ''Value "'' + value + ''" must be a string to be matched with the regular expression.''; } return value.match(new RegExp(regex)); }, checkURL: function(value) { if (CParamValidator.isEmpty(value)) { throw ''URL value "'' + value + ''" must be a non-empty string.''; } if (!CParamValidator.ifMatch(value, ''^(http|https):\\/\\/.+'')) { throw ''URL value "'' + value + ''" must contain a schema.''; } return value.endsWith(''/'') ? value.slice(0, -1) : value; }, check: function(key, rule, params) { if (!CParamValidator.isDefined(rule.type)) { throw ''Mandatory attribute "type" has not been defined for parameter "'' + key + ''".''; } if (!CParamValidator.isDefined(params[key])) { throw ''Checked parameter "'' + key + ''" was not found in the list of input parameters.''; } var value = params[key], error_message = null; switch (rule.type) { case ''string'': if (!CParamValidator.isType(value, ''string'')) { throw ''Value "'' + key + ''" must be a string.''; } if (CParamValidator.isEmpty(value)) { error_message = ''Value "'' + key + ''" must be a non-empty string''; break; } if (CParamValidator.isDefined(rule.len) && value.length < rule.len) { error_message = ''Value "'' + key + ''" must be a string with a length > '' + rule.len; } if (CParamValidator.isDefined(rule.regex) && !CParamValidator.ifMatch(value, rule.regex)) { error_message = ''Value "'' + key + ''" must match the regular expression "'' + rule.regex + ''"''; } if (CParamValidator.isDefined(rule.url) && rule.url === true) { value = CParamValidator.checkURL(value); } break; case ''integer'': if (!CParamValidator.isInteger(value)) { error_message = ''Value "'' + key + ''" must be an integer''; break; } value = parseInt(value); break; case ''float'': if (!CParamValidator.isFloat(value)) { error_message = ''Value "'' + key + ''" must be a floating-point number''; break; } value = parseFloat(value); break; case ''boolean'': if (CParamValidator.inArray(value, [''1'', ''true'', ''yes'', ''on''])) { value = true; } else if (CParamValidator.inArray(value, [''0'', ''false'', ''no'', ''off''])) { value = false; } else { error_message = ''Value "'' + key + ''" must be a boolean-like.''; } break; case ''array'': try { value = JSON.parse(value); } catch (error) { throw ''Value "'' + key + ''" contains invalid JSON.''; } if (!CParamValidator.isType(value, ''array'')) { error_message = ''Value "'' + key + ''" must be an array.''; } if (CParamValidator.isDefined(rule.tags) && rule.tags === true) { value = value.reduce(function(acc, obj) { acc[obj.tag] = obj.value || null; return acc; }, {}); } break; case ''object'': value = JSON.parse(value); if (!CParamValidator.isType(value, ''object'')) { error_message = ''Value "'' + key + ''" must be an object.''; } break; default: throw ''Unexpected attribute type "'' + rule.type + ''" for value "'' + key + ''". Available: '' + [''integer'', ''float'', ''string'', ''boolean'', ''array'', ''object''].join('', ''); } params[key] = value; if (CParamValidator.inArray(rule.type, [''integer'', ''float'']) && error_message === null && (CParamValidator.isDefined(rule.min) || CParamValidator.isDefined(rule.max)) && !CParamValidator.withinRange(value, rule.min, rule.max)) { error_message = ''Value "'' + key + ''" must be a number '' + ((CParamValidator.isDefined(rule.min) && CParamValidator.isDefined(rule.max)) ? (rule.min + ''..'' + rule.max) : ((CParamValidator.isDefined(rule.min)) ? ''>'' + rule.min : ''<'' + rule.max)); } else if (CParamValidator.isDefined(rule.array) && !CParamValidator.inArray(value, rule.array)) { error_message = ''Value "'' + key + ''" must be in the array '' + JSON.stringify(rule.array); } else if (CParamValidator.isDefined(rule.macro) && !CParamValidator.isMacroSet(value.toString(), rule.macro)) { error_message = ''The macro '' + ((CParamValidator.isDefined(rule.macro)) ? ''{'' + rule.macro + ''} '' : '' '') + ''is not set''; } if (error_message !== null) { if (CParamValidator.isDefined(rule.default) && CParamValidator.isType(rule.default, rule.type)) { params[key] = rule.default; } else { Zabbix.log(4, ''Default value for "'' + key + ''" must be a '' + rule.type + ''. Skipped.''); throw ''Incorrect value for variable "'' + key + ''". '' + error_message; } } return this; }, validate: function(rules, params) { if (!CParamValidator.isType(params, ''object'') || CParamValidator.isType(params, ''array'')) { throw ''Incorrect parameters value. The value must be an object.''; } for (var key in rules) { CParamValidator.check(key, rules[key], params); } } } const CHttpRequest = function(logger) { this.request = new HttpRequest(); if (typeof logger !== ''object'' || logger === null) { this.logger = Zabbix; } else { this.logger = logger; } this.clearHeader = function() { this.request.clearHeader(); } this.addHeaders = function(value) { var headers = []; if (typeof value === ''object'' && value !== null) { if (!Array.isArray(value)) { Object.keys(value).forEach(function(key) { headers.push(key + '': '' + value[key]); }); } else { headers = value; } } else if (typeof value === ''string'') { value.split(''\\r\\n'').forEach(function(header) { headers.push(header); }); } for (var idx in headers) { this.request.addHeader(headers[idx]); } } this.setProxy = function(proxy) { this.request.setProxy(proxy); } this.plainRequest = function(method, url, data) { var resp = null; method = method.toLowerCase(); this.logger.log(4, ''Sending '' + method + '' request:'' + JSON.stringify(data)); if ([''get'', ''post'', ''put'', ''patch'', ''delete'', ''trace''].indexOf(method) !== -1) { resp = this.request[method](url, data); } else if ([''connect'', ''head'', ''options''].indexOf(method) !== -1) { resp = this.request[method](url); } else { throw ''Unexpected method. Method '' + method + '' is not supported.''; } this.logger.log(4, ''Response has been received: '' + resp); return resp; } this.jsonRequest = function(method, url, data) { this.addHeaders(''Content-Type: application/json''); var resp = this.plainRequest(method, url, JSON.stringify(data)); try { resp = JSON.parse(resp); } catch (error) { throw ''Failed to parse response: not well-formed JSON was received''; } return resp; } this.getStatus = function() { return this.request.getStatus(); } } const SEVERITIES = ["not_classified", "information", "warning", "average", "high", "disaster"], serviceLogName = '' ((OTRS)) CE Webhook '', Logger = new CLogger(serviceLogName), OTRS = CWebhook; OTRS.prototype.onCheckParams = function () { CParamValidator.validate({alert_subject: {type: ''string''}, alert_message: {type: ''string''}, event_nseverity: {type: ''integer'', default: -1}, otrs_url: {type: ''string'', url: true}, otrs_auth_user: {type: ''string''}, otrs_auth_password: {type: ''string''}, otrs_customer: {type: ''string''}, otrs_default_priority_id: {type: ''integer'', min: 1, max: 5}, otrs_queue: {type: ''string''}, otrs_ticket_type: {type: ''string''}, otrs_ticket_state: {type: ''string''}, otrs_time_unit: {type: ''integer''}, otrs_closed_state_id: {type: ''integer'', default: 0}, zabbix_url: {type: ''string'', url: true}}, this.params); this.params.entrypoint = ''/nph-genericinterface.pl/Webservice/ZabbixTicketConnector/Ticket''; var priority; if (this.params.event_nseverity >= 0 && this.params.event_nseverity < SEVERITIES.length) { priority = this.params[''severity_'' + SEVERITIES[this.params.event_nseverity]]; } this.priority = (CParamValidator.isDefined(priority)) ? priority.trim() : this.params.otrs_default_priority_id; if (this.params.event_source === ''0'') { CParamValidator.validate({trigger_id: {type: ''integer''}, event_id: {type: ''integer''}}, this.params); this.params.zabbix_url = CWebhookHelper.createProblemURL(this.params.event_source, this.params.zabbix_url, this.params.trigger_id, this.params.event_id); this.params.alert_message = this.params.alert_subject + ''\\n'' + this.params.alert_message + ''\\n'' + this.params.zabbix_url + ''\\n''; } if (this.params.event_value != ''0'' && CParamValidator.isMacroSet(this.params.otrs_ticket_id)) { this.params.event_update_status = ''1''; } this.dynamicFields = {} Object.keys(this.params).forEach(function (key) { if (key.startsWith(''dynamicfield_'')) { this.dynamicFields[key.substring(13)] = this.params[key]; } }); this.data = { Article: { Subject: this.params.alert_subject, Body: (CParamValidator.isDefined(this.params.alert_message)) ? this.params.alert_message : '''', TimeUnit: this.params.otrs_time_unit.toString(), ContentType: ''text/plain; charset=utf8'' } }; this.result = {tags: {}}; }; OTRS.prototype.sendRequest = function (method) { var url = this.params.otrs_url + this.params.entrypoint + ''?UserLogin='' + encodeURIComponent(this.params.otrs_auth_user) + ''&Password='' + encodeURIComponent(this.params.otrs_auth_password); var response = this.request.jsonRequest(method, url, this.data); if (!CParamValidator.isType(response, ''object'')) { Logger.log(Logger.INFO, ''API response ERROR: '' + response); throw ''Unknown error. Check debug log for more information.''; } if (this.request.getStatus() < 200 || this.request.getStatus() >= 300) { var message = ''status code '' + this.request.getStatus(); Logger.log(Logger.INFO, ''API response ERROR with '' + message + '': '' + response); throw ''Request failed with '' + message + ''. Check debug log for more information.''; } if (CParamValidator.isDefined(response.Error) && Object.keys(response.Error).length > 0) { Logger.log(Logger.INFO, ''API response ERROR: '' + JSON.stringify(response.Error)); throw ''Request failed: '' + JSON.stringify(response.Error); } return { status: this.request.getStatus(), response: response }; }; OTRS.prototype.createTicket = function () { this.data[''Ticket''] = { Title: this.params.alert_subject, Queue: this.params.otrs_queue, Type: this.params.otrs_ticket_type, State: this.params.otrs_ticket_state, PriorityID: this.priority.toString(), CustomerUser: this.params.otrs_customer } var result = this.sendRequest(''post''); if (!CParamValidator.isDefined(result.response.TicketID) || result.status != 200) { throw ''Cannot create ((OTRS)) CE ticket. Check debug log for more information.''; } return result.response.TicketID; } OTRS.prototype.updateTicket = function () { CParamValidator.validate({otrs_ticket_id: {type: ''string''}, entrypoint: {type: ''string''}}, this.params); this.params.entrypoint += ''/'' + encodeURIComponent(this.params.otrs_ticket_id); var result = this.sendRequest(''put''); if (!CParamValidator.isDefined(result.response.TicketID) || result.status != 200) { throw ''Cannot update ((OTRS)) CE ticket. Check debug log for more information.''; } return result.response.TicketID; } OTRS.prototype.onProblem = function (alert) { Logger.log(Logger.INFO, ''Source: '' + alert.source + ''; Event: '' + alert.event); if (CParamValidator.isDefined(alert.source) && CParamValidator.inArray(alert.source, [''trigger'', ''service'', ''internal''])) { if (Object.keys(this.dynamicFields).length > 0) { this.data.DynamicField = []; Object.keys(this.dynamicFields).forEach(function(field) { if (field !== undefined) { if (this.dynamicFields[field].match(/^\\d{4}[.-]\\d{2}[.-]\\d{2}$/)) { this.dynamicFields[field] = this.dynamicFields[field].replace(/\\./g, ''-''); } this.data.DynamicField.push({Name: field, Value: this.dynamicFields[field]}); } }); } const ticket_id = this.createTicket(alert); this.result.tags.__zbx_otrs_ticket_id = ticket_id; this.result.tags.__zbx_otrs_ticketlink = this.params.otrs_url + ''index.pl?Action=AgentTicketZoom;TicketID='' + ticket_id; return this.result; } return this.createTicket(); } OTRS.prototype.onUpdate = function (alert) { Logger.log(Logger.INFO, ''Source: '' + alert.source + ''; Event: '' + alert.event); this.updateTicket(); return this.result; } OTRS.prototype.onResolve = function (alert) { Logger.log(Logger.INFO, ''Source: '' + alert.source + ''; Event: '' + alert.event); if (this.params.otrs_closed_state_id > 0) { this.data[''Ticket''] = { StateID: this.params.otrs_closed_state_id } } this.updateTicket(); return this.result; } OTRS.prototype.onDiscovery = function (alert) { return this.onProblem(alert); } OTRS.prototype.onAutoreg = function (alert) { return this.onProblem(alert); } try { var hook = new OTRS(value); hook.request = new CHttpRequest(Logger); return hook.run(); } catch (error) { Logger.log(Logger.WARN, ''notification failed: '' + error); throw ''Sending failed: '' + error; }','30s','1','1','{EVENT.TAGS.__zbx_otrs_ticketlink}','((OTRS)) CE: ticket #{EVENT.TAGS.__zbx_otrs_ticket_id}','This media type integrates your Zabbix installation with your ((OTRS)) CE installation using the Zabbix webhook feature. ((OTRS)) CE configuration: 1. Create a new web service. To do so, navigate to "Admin" → "Web services" and import the "ZabbixTicketConnector.yml" file (it can be found in the official Zabbix repository next to the media type file). 2. Create a new customer. 3. Create a new customer user. Select the ID of the customer that you created in the previous step. 4. Create a new agent. Depending on the ticket queue you want to use for tickets created by the webhook, set the "RW" permission for the group that this ticket queue belongs to. In the example below, if you want to use the "Misc" queue, you must set the "RW" permission for the group "users". Zabbix configuration: 1. Before you can start using the ((OTRS)) CE webhook, set the global macro "{$ZABBIX.URL}": - In the Zabbix web interface, go to "Administration" → "Macros" in the top-left dropdown menu. - Set the global macro "{$ZABBIX.URL}" to the URL of the Zabbix frontend. The URL should be either an IP address, a fully qualified domain name, or localhost. - Specifying a protocol is mandatory, whereas the port is optional. Depending on the web server configuration, you might also need to append "/zabbix" to the end of URL. Good examples: - http://zabbix.com - https://zabbix.lan/zabbix - http://server.zabbix.lan/ - http://localhost - http://127.0.0.1:8080 - Bad examples: - zabbix.com - http://zabbix/ 2. Set the following webhook parameters: - otrs_auth_user - the username of the agent - otrs_auth_password - the password of the agent - otrs_customer - the email of the customer user - otrs_queue - the queue that will be used for tickets created by the webhook - otrs_url - the frontend URL of your ((OTRS)) CE installation (for example, "https://otrs.example.com/otrs") 3. If you want to prioritize issues according to the severity values in Zabbix, you can define mapping parameters (create them as additional webhook parameters): - severity_ - the ((OTRS)) CE priority ID ( in the parameter name can be one of the following values: "not_classified", "information", "warning", "average", "high", "disaster") 4. If you have dynamic fields in ((OTRS)) CE and want them to be filled with values from Zabbix, add webhook parameters in the format "dynamicfield_<((OTRS)) CE dynamic field name>", similarly to the previous step. Dynamic fields can only be of the types "text", "textarea", "checkbox", or "date". 5. If you want the webhook to close tickets related to **resolved** problems in Zabbix, you can change the following parameter value: - otrs_closed_state_id - ((OTRS)) CE state ID for closed tasks (possible values: 0 - Disable tickets closing, >0 - State ID from the State Management page). 6. If you use the ticket type feature, you can change the type of the created tickets: - otrs_ticket_type - ((OTRS)) CE ticket type (set to "Unclassified" by default; present on fresh installations). 7. Click the "Enabled" checkbox to enable the mediatype and click the "Update" button to save the webhook settings. 8. Create a Zabbix user and add media: - To create a new user, go to the "Users" → "Users" section, click the "Create user" button in the top right corner. In the "User" tab, fill in all required fields (marked with red asterisks). - In the "Media" tab, click "Add" and select the type "OTRS CE" from the drop-down list. Add any value in the "Send to" field: it is not used in the webhook, but is required. - Make sure this user has access to all hosts for which you would like problem notifications to be sent to ((OTRS)) CE. 9. Done! You can now start using this media type in actions and create tickets. You can find the latest version of this media and additional information in the official Zabbix repository: https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/templates/media/otrs_ce','0'), ('56','4','PagerDuty','','','','','','','','25','0','0','0','0','1','3','10s','1',E'const CLogger = function(serviceName) { this.serviceName = serviceName; this.INFO = 4 this.WARN = 3 this.ERROR = 2 this.log = function(level, msg) { Zabbix.log(level, ''['' + this.serviceName + ''] '' + msg); } } const CWebhook = function(value) { try { params = JSON.parse(value); if ([''0'', ''1'', ''2'', ''3'', ''4''].indexOf(params.event_source) === -1) { throw ''Incorrect "event_source" parameter given: '' + params.event_source + ''.\\nMust be 0-4.''; } if ([''0'', ''3'', ''4''].indexOf(params.event_source) !== -1 && [''0'', ''1''].indexOf(params.event_value) === -1) { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''.\\nMust be 0 or 1.''; } if ([''0'', ''3'', ''4''].indexOf(params.event_source) !== -1) { if (params.event_source === ''1'' && [''0'', ''1'', ''2'', ''3''].indexOf(params.event_value) === -1) { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''.\\nMust be 0-3.''; } if (params.event_source === ''0'' && [''0'', ''1''].indexOf(params.event_update_status) === -1) { throw ''Incorrect "event_update_status" parameter given: '' + params.event_update_status + ''.\\nMust be 0 or 1.''; } if (params.event_source === ''4'') { if ([''0'', ''1'', ''2'', ''3'', ''4'', ''5''].indexOf(params.event_update_nseverity) !== -1 && params.event_update_nseverity != params.event_nseverity) { params.event_nseverity = params.event_update_nseverity; params.event_severity = params.event_update_severity; params.event_update_status = ''1''; } } } this.runCallback = function(name, params) { if (typeof this[name] === ''function'') { return this[name].apply(this, [params]); } } this.handleEvent = function(source, event) { const alert = { source: source, event: event }; return [ this.runCallback(''on'' + source + event, alert), this.runCallback(''on'' + event, alert), this.runCallback(''onEvent'', alert) ]; } this.handleEventless = function(source) { const alert = { source: source, event: null }; return [ this.runCallback(''on'' + source, alert), this.runCallback(''onEvent'', alert) ]; } this.run = function() { var results = []; if (typeof this.httpProxy === ''string'' && this.httpProxy.trim() !== '''') { this.request.setProxy(this.httpProxy); } const types = { ''0'': ''Trigger'', ''1'': ''Discovery'', ''2'': ''Autoreg'', ''3'': ''Internal'', ''4'': ''Service'' }; if ([''0'', ''3'', ''4''].indexOf(this.params.event_source) !== -1) { var event = (this.params.event_update_status === ''1'') ? ''Update'' : ((this.params.event_value === ''1'') ? ''Problem'' : ''Resolve''); results = this.handleEvent(types[this.params.event_source], event); } else if (typeof types[this.params.event_source] !== ''undefined'') { results = this.handleEventless(types[this.params.event_source]); } else { throw ''Unexpected "event_source": '' + this.params.event_source; } for (idx in results) { if (typeof results[idx] !== ''undefined'') { return JSON.stringify(results[idx]); } } } this.httpProxy = params.http_proxy; this.params = params; this.runCallback(''onCheckParams'', {}); } catch (error) { throw ''Webhook processing failed: '' + error; } } const CWebhookHelper = { createProblemURL: function(event_source, zabbix_url, trigger_id, event_id) { if (event_source === ''0'') { return zabbix_url + ''/tr_events.php?triggerid='' + trigger_id + ''&eventid='' + event_id; } else if (event_source === ''4'') { return zabbix_url + ''/zabbix.php?action=service.list''; } return zabbix_url; }, }; const CParamValidator = { isType: function(value, type) { if (type === ''array'') { return Array.isArray(value); } if (type === ''integer'') { return CParamValidator.isInteger(value); } if (type === ''float'') { return CParamValidator.isFloat(value); } return (typeof value === type); }, isInteger: function(value) { if (!CParamValidator.ifMatch(value, /^-?\\d+$/)) { return false; } return !isNaN(parseInt(value)); }, isFloat: function(value) { if (!CParamValidator.ifMatch(value, /^-?\\d+\\.\\d+$/)) { return false; } return !isNaN(parseFloat(value)); }, isDefined: function(value) { return !CParamValidator.isType(value, ''undefined''); }, isEmpty: function(value) { if (!CParamValidator.isType(value, ''string'')) { throw ''Value "'' + value + ''" must be a string to be checked for emptiness.''; } return (value.trim() === ''''); }, isMacroSet: function(value, macro) { if (CParamValidator.isDefined(macro)) { return !(CParamValidator.ifMatch(value, ''^\\{'' + macro + ''\\}$'')) } return !(CParamValidator.ifMatch(value, ''^\\{[$#]{0,1}[A-Z_\\.]+[\\:]{0,1}["]{0,1}.*["]{0,1}\\}$'') || value === ''*UNKNOWN*'') }, withinRange: function(value, min, max) { if (!CParamValidator.isType(value, ''number'')) { throw ''Value "'' + value + ''" must be a number to be checked for range.''; } if (value < ((CParamValidator.isDefined(min)) ? min : value) || value > ((CParamValidator.isDefined(max)) ? max : value)) { return false; } return true; }, inArray: function(value, array) { if (!CParamValidator.isType(array, ''array'')) { throw ''The array must be an array to check the value for existing in it.''; } return (array.indexOf((typeof value === ''string'') ? value.toLowerCase() : value) !== -1); }, ifMatch: function(value, regex) { return (new RegExp(regex)).test(value); }, match: function(value, regex) { if (!CParamValidator.isType(value, ''string'')) { throw ''Value "'' + value + ''" must be a string to be matched with the regular expression.''; } return value.match(new RegExp(regex)); }, checkURL: function(value) { if (CParamValidator.isEmpty(value)) { throw ''URL value "'' + value + ''" must be a non-empty string.''; } if (!CParamValidator.ifMatch(value, ''^(http|https):\\/\\/.+'')) { throw ''URL value "'' + value + ''" must contain a schema.''; } return value.endsWith(''/'') ? value.slice(0, -1) : value; }, check: function(key, rule, params) { if (!CParamValidator.isDefined(rule.type)) { throw ''Mandatory attribute "type" has not been defined for parameter "'' + key + ''".''; } if (!CParamValidator.isDefined(params[key])) { throw ''Checked parameter "'' + key + ''" was not found in the list of input parameters.''; } var value = params[key], error_message = null; switch (rule.type) { case ''string'': if (!CParamValidator.isType(value, ''string'')) { throw ''Value "'' + key + ''" must be a string.''; } if (CParamValidator.isEmpty(value)) { error_message = ''Value "'' + key + ''" must be a non-empty string''; break; } if (CParamValidator.isDefined(rule.len) && value.length < rule.len) { error_message = ''Value "'' + key + ''" must be a string with a length > '' + rule.len; } if (CParamValidator.isDefined(rule.regex) && !CParamValidator.ifMatch(value, rule.regex)) { error_message = ''Value "'' + key + ''" must match the regular expression "'' + rule.regex + ''"''; } if (CParamValidator.isDefined(rule.url) && rule.url === true) { value = CParamValidator.checkURL(value); } break; case ''integer'': if (!CParamValidator.isInteger(value)) { error_message = ''Value "'' + key + ''" must be an integer''; break; } value = parseInt(value); break; case ''float'': if (!CParamValidator.isFloat(value)) { error_message = ''Value "'' + key + ''" must be a floating-point number''; break; } value = parseFloat(value); break; case ''boolean'': if (CParamValidator.inArray(value, [''1'', ''true'', ''yes'', ''on''])) { value = true; } else if (CParamValidator.inArray(value, [''0'', ''false'', ''no'', ''off''])) { value = false; } else { error_message = ''Value "'' + key + ''" must be a boolean-like.''; } break; case ''array'': try { value = JSON.parse(value); } catch (error) { throw ''Value "'' + key + ''" contains invalid JSON.''; } if (!CParamValidator.isType(value, ''array'')) { error_message = ''Value "'' + key + ''" must be an array.''; } if (CParamValidator.isDefined(rule.tags) && rule.tags === true) { value = value.reduce(function(acc, obj) { acc[obj.tag] = obj.value || null; return acc; }, {}); } break; case ''object'': value = JSON.parse(value); if (!CParamValidator.isType(value, ''object'')) { error_message = ''Value "'' + key + ''" must be an object.''; } break; default: throw ''Unexpected attribute type "'' + rule.type + ''" for value "'' + key + ''". Available: '' + [''integer'', ''float'', ''string'', ''boolean'', ''array'', ''object''].join('', ''); } params[key] = value; if (CParamValidator.inArray(rule.type, [''integer'', ''float'']) && error_message === null && (CParamValidator.isDefined(rule.min) || CParamValidator.isDefined(rule.max)) && !CParamValidator.withinRange(value, rule.min, rule.max)) { error_message = ''Value "'' + key + ''" must be a number '' + ((CParamValidator.isDefined(rule.min) && CParamValidator.isDefined(rule.max)) ? (rule.min + ''..'' + rule.max) : ((CParamValidator.isDefined(rule.min)) ? ''>'' + rule.min : ''<'' + rule.max)); } else if (CParamValidator.isDefined(rule.array) && !CParamValidator.inArray(value, rule.array)) { error_message = ''Value "'' + key + ''" must be in the array '' + JSON.stringify(rule.array); } else if (CParamValidator.isDefined(rule.macro) && !CParamValidator.isMacroSet(value.toString(), rule.macro)) { error_message = ''The macro '' + ((CParamValidator.isDefined(rule.macro)) ? ''{'' + rule.macro + ''} '' : '' '') + ''is not set''; } if (error_message !== null) { if (CParamValidator.isDefined(rule.default) && CParamValidator.isType(rule.default, rule.type)) { params[key] = rule.default; } else { Zabbix.log(4, ''Default value for "'' + key + ''" must be a '' + rule.type + ''. Skipped.''); throw ''Incorrect value for variable "'' + key + ''". '' + error_message; } } return this; }, validate: function(rules, params) { if (!CParamValidator.isType(params, ''object'') || CParamValidator.isType(params, ''array'')) { throw ''Incorrect parameters value. The value must be an object.''; } for (var key in rules) { CParamValidator.check(key, rules[key], params); } } } const CHttpRequest = function(logger) { this.request = new HttpRequest(); if (typeof logger !== ''object'' || logger === null) { this.logger = Zabbix; } else { this.logger = logger; } this.clearHeader = function() { this.request.clearHeader(); } this.addHeaders = function(value) { var headers = []; if (typeof value === ''object'' && value !== null) { if (!Array.isArray(value)) { Object.keys(value).forEach(function(key) { headers.push(key + '': '' + value[key]); }); } else { headers = value; } } else if (typeof value === ''string'') { value.split(''\\r\\n'').forEach(function(header) { headers.push(header); }); } for (var idx in headers) { this.request.addHeader(headers[idx]); } } this.setProxy = function(proxy) { this.request.setProxy(proxy); } this.plainRequest = function(method, url, data) { var resp = null; method = method.toLowerCase(); this.logger.log(4, ''Sending '' + method + '' request:'' + JSON.stringify(data)); if ([''get'', ''post'', ''put'', ''patch'', ''delete'', ''trace''].indexOf(method) !== -1) { resp = this.request[method](url, data); } else if ([''connect'', ''head'', ''options''].indexOf(method) !== -1) { resp = this.request[method](url); } else { throw ''Unexpected method. Method '' + method + '' is not supported.''; } this.logger.log(4, ''Response has been received: '' + resp); return resp; } this.jsonRequest = function(method, url, data) { this.addHeaders(''Content-Type: application/json''); var resp = this.plainRequest(method, url, JSON.stringify(data)); try { resp = JSON.parse(resp); } catch (error) { throw ''Failed to parse response: not well-formed JSON was received''; } return resp; } this.getStatus = function() { return this.request.getStatus(); } } var severityMapping = [ ''info'', ''info'', ''warning'', ''warning'', ''error'', ''critical'' ], serviceLogName = ''PagerDuty Webhook'', Logger = new CLogger(serviceLogName), PagerDuty = CWebhook; function getDefaultEventData(data, params) { data.event_action = ''trigger''; data.payload.custom_details = { ''Alert message'': params.alert_message }; Object.keys(params).forEach(function (key) { if (key.startsWith(''customdetails_'') && !CParamValidator.isEmpty(params[key])) { data.payload.custom_details[key.substring(14)] = params[key]; } }); data.client = ''Zabbix''; data.client_url = params.zabbix_url; return data; }; PagerDuty.prototype.onCheckParams = function () { this.params.url = ''https://events.pagerduty.com/v2/enqueue''; CParamValidator.validate({api_token: {type: ''string''}, event_id: {type: ''integer''}, alert_subject: {type: ''string''}, host_ip: {type: ''string'', default: ''''}, zabbix_url: {type: ''string'', url: true}, event_nseverity: {type: ''integer'', min: 0, max: 5, default: 0}}, this.params); if (CParamValidator.inArray(this.params.event_source, [''0'',''3'',''4''])) { CParamValidator.validate({host_name: {type: ''string'', default: ''''}}, this.params); if (this.params.event_source === ''0'') { CParamValidator.validate({trigger_id: {type: ''integer''}, event_update_status: {type: ''string'', array: [''0'', ''1'']}, event_ack: {type: ''boolean''}}, this.params); } else { CParamValidator.validate({alert_message: {type: ''string''}, event_ack: {type: ''boolean'', default: false}}, this.params); } } this.data = { routing_key: this.params.api_token, dedup_key: String(this.params.event_id), payload: { summary: this.params.alert_subject, source: (!CParamValidator.isEmpty(this.params.host_name)) ? (this.params.host_name + ((!CParamValidator.isEmpty(this.params.host_ip)) ? '' : '' + this.params.host_ip : '''')) : ''Zabbix'', severity: severityMapping[this.params.event_nseverity], } } } PagerDuty.prototype.onProblem = function (alert) { Logger.log(Logger.INFO, ''Source: '' + alert.source + ''; Event: '' + alert.event); this.data = getDefaultEventData(this.data, this.params); if (CParamValidator.isDefined(alert.source) && alert.source === ''Trigger'') { this.data.links = [{ href: CWebhookHelper.createProblemURL(this.params.event_source, this.params.zabbix_url, this.params.trigger_id, this.params.event_id), text: ''Event link'' }]; } return this.sendRequest(); } PagerDuty.prototype.onUpdate = function (alert) { Logger.log(Logger.INFO, ''Source: '' + alert.source + ''; Event: '' + alert.event); if (this.params.event_ack === true) { this.data.event_action = ''acknowledge''; return this.sendRequest(); } this.data = getDefaultEventData(this.data, this.params); return this.sendRequest(); } PagerDuty.prototype.onResolve = function (alert) { Logger.log(Logger.INFO, ''Source: '' + alert.source + ''; Event: '' + alert.event); this.data = getDefaultEventData(this.data, this.params); this.data.event_action = ''resolve''; return this.sendRequest(); } PagerDuty.prototype.onDiscovery = function (alert) { Logger.log(Logger.INFO, ''Source: '' + alert.source + ''; Event: '' + alert.event); this.data = getDefaultEventData(this.data, this.params); this.data.payload.source = ''Discovery''; return this.sendRequest(); } PagerDuty.prototype.onAutoreg = function (alert) { return this.onProblem(alert); } PagerDuty.prototype.sendRequest = function () { var response = this.request.jsonRequest(''POST'', this.params.url, this.data); if (!CParamValidator.isType(response, ''object'')) { Logger.log(Logger.INFO, ''API response ERROR: '' + response); throw ''Unknown error. Check debug log for more information.''; } if (this.request.getStatus() != 202) { if (CParamValidator.isType(response.errors, ''array'') && CParamValidator.isType(response.errors[0], ''string'')) { throw response.errors[0]; } else { throw ''Unknown error. HTTP status: '' + this.request.getStatus(); } } if (response.status != ''success'') { Logger.log(Logger.INFO, ''API response ERROR: '' + response); throw ''Unknown error. Check debug log for more information.''; } return ''OK''; }; try { var hook = new PagerDuty(value); hook.request = new CHttpRequest(Logger); return hook.run(); } catch (error) { Logger.log(Logger.WARN, ''notification failed: '' + error); throw ''Sending failed: '' + error; }','30s','0','0','','','Please refer to https://v2.developer.pagerduty.com/docs/send-an-event-events-api-v2 and https://www.zabbix.com/documentation/7.0/manual/config/notifications/media/webhook#example_scripts. Set global macro {$ZABBIX.URL} with your Zabbix server URL. Add a dedicated user with the media type "PagerDuty" and place the integration key in the user''s "Send to" parameter to integrate into the service.','0'), ('57','4','Pushover','','','','','','','','25','0','0','0','0','0','3','10s','1',E'try { var params = JSON.parse(value), request = new HttpRequest(), data, response, severities = [ {name: ''not_classified'', color: ''#97AAB3''}, {name: ''information'', color: ''#7499FF''}, {name: ''warning'', color: ''#FFC859''}, {name: ''average'', color: ''#FFA059''}, {name: ''high'', color: ''#E97659''}, {name: ''disaster'', color: ''#E45959''}, {name: ''resolved'', color: ''#009900''}, {name: ''default'', color: ''#000000''} ], priority; if (typeof params.HTTPProxy === ''string'' && params.HTTPProxy.trim() !== '''') { request.setProxy(params.HTTPProxy); } if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) { throw ''Incorrect "event_source" parameter given: "'' + params.event_source + ''".\\nMust be 0-3.''; } if (params.event_value !== ''0'' && params.event_value !== ''1'' && (params.event_source === ''0'' || params.event_source === ''3'')) { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''\\nMust be 0 or 1.''; } if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) { params.event_nseverity = ''7''; } if (params.event_value === ''0'') { params.event_nseverity = ''6''; } priority = params[''priority_'' + severities[params.event_nseverity].name] || params.priority_default; if (isNaN(priority) || priority < -2 || priority > 2) { throw ''"priority" should be -2..2''; } if (params.event_source === ''0'' && isNaN(params.triggerid)) { throw ''field "triggerid" is not a number''; } if (isNaN(params.eventid)) { throw ''field "eventid" is not a number''; } if (typeof params.message !== ''string'' || params.message.trim() === '''') { throw ''field "message" cannot be empty''; } data = { token: params.token, user: params.user, title: params.title, message: params.message, url: (params.event_source === ''0'') ? params.url + ''/tr_events.php?triggerid='' + params.triggerid + ''&eventid='' + params.eventid : params.url, url_title: params.url_title, priority: priority }; if (priority == 2) { if (isNaN(params.retry) || params.retry < 30) { throw ''field "retry" should be a number with value of at least 30 if "priority" is set to 2''; } if (isNaN(params.expire) || params.expire > 10800) { throw ''field "expire" should be a number with value of at most 10800 if "priority" is set to 2''; } data.retry = params.retry; data.expire = params.expire; } data = JSON.stringify(data); Zabbix.log(4, ''[ Pushover Webhook ] Sending request: '' + params.endpoint + ''\\n'' + data); request.addHeader(''Content-Type: application/json''); response = request.post(params.endpoint, data); Zabbix.log(4, ''[ Pushover Webhook ] Received response with status code '' + request.getStatus() + ''\\n'' + response); if (response !== null) { try { response = JSON.parse(response); } catch (error) { Zabbix.log(4, ''[ Pushover Webhook ] Failed to parse response received from Pushover''); response = null; } } if (request.getStatus() != 200 || response === null || typeof response !== ''object'' || response.status !== 1) { if (response !== null && typeof response === ''object'' && typeof response.errors === ''object'' && typeof response.errors[0] === ''string'') { throw response.errors[0]; } else { throw ''Unknown error. Check debug log for more information.''; } } return ''OK''; } catch (error) { Zabbix.log(4, ''[ Pushover Webhook ] Pushover notification failed: '' + error); throw ''Pushover notification failed: '' + error; }','30s','0','0','','','Please refer to setup guide here: https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/templates/media/pushover Set token parameter with to your Pushover application key. When assigning Pushover media to the Zabbix user - add user key into send to field.','0'), ('58','4','Redmine','','','','','','','','25','0','0','0','0','1','3','10s','1',E'var Redmine = { params: {}, setParams: function (params) { if (typeof params !== ''object'') { return; } Redmine.params = params; if (typeof Redmine.params.url === ''string'') { if (!Redmine.params.url.endsWith(''/'')) { Redmine.params.url += ''/''; } } }, addCustomFields: function (data, fields) { if (typeof fields === ''object'' && Object.keys(fields).length) { data.issue.custom_fields = []; Object.keys(fields) .forEach(function (field) { var field_value = fields[field]; if (field_value !== undefined) { data.issue.custom_fields.push({ id: field, value: field_value }); } }); } return data; }, request: function (method, query, data) { [''url'', ''access_key''].forEach(function (field) { if (typeof Redmine.params !== ''object'' || typeof Redmine.params[field] === ''undefined'' || Redmine.params[field] === '''' ) { throw ''Required param is not set: "'' + field + ''".''; } }); var response, url = Redmine.params.url + query, request = new HttpRequest(); if (typeof Redmine.HTTPProxy === ''string'' && Redmine.HTTPProxy.trim() !== '''') { request.setProxy(Redmine.HTTPProxy); } request.addHeader(''Content-Type: application/json''); request.addHeader(''X-Redmine-API-Key: '' + Redmine.params.access_key); if (typeof data !== ''undefined'') { data = JSON.stringify(data); } Zabbix.log(4, ''[ Redmine Webhook ] Sending request: '' + url + ((typeof data === ''string'') ? ('' '' + data) : '''')); switch (method) { case ''get'': response = request.get(url, data); break; case ''post'': response = request.post(url, data); break; case ''put'': response = request.put(url, data); break; default: throw ''Unsupported HTTP request method: '' + method; } Zabbix.log(4, ''[ Redmine Webhook ] Received response with status code '' + request.getStatus() + '': '' + response); if (response !== null) { try { response = JSON.parse(response); } catch (error) { Zabbix.log(4, ''[ Redmine Webhook ] Failed to parse response received from Redmine''); response = null; } } if (request.getStatus() < 200 || request.getStatus() >= 300) { var message = ''Request failed with status code '' + request.getStatus(); if (response !== null && typeof response.errors !== ''undefined'' && Object.keys(response.errors).length > 0) { message += '': '' + JSON.stringify(response.errors); } else if (response !== null && typeof response.errorMessages !== ''undefined'' && Object.keys(response.errorMessages).length > 0) { message += '': '' + JSON.stringify(response.errorMessages); } throw message + '' Check debug log for more information.''; } return { status: request.getStatus(), response: response }; }, getProjectID: function(name) { var result = Redmine.request(''get'', ''projects.json''), project_id; if (result.response) { var projects = result.response.projects || []; for (var i in projects) { if (projects[i].name === name) { project_id = projects[i].id; break; } } } else { Zabbix.log(4, ''[ Redmine Webhook ] Failed to retrieve project data.''); } if (typeof project_id === ''undefined'') { throw ''Cannot find project with name: '' + name; } return project_id; }, createIssue: function(subject, description, priority, fields) { var project_id = /^\\d+$/.test(Redmine.params.project) ? Redmine.params.project : Redmine.getProjectID(Redmine.params.project), data = { issue: { project_id: project_id, tracker_id: Redmine.params.tracker_id, subject: subject, description: description } }, result; if (priority) { data.issue.priority_id = priority; } result = Redmine.request(''post'', ''issues.json'', Redmine.addCustomFields(data, fields)); if (typeof result.response !== ''object'' || typeof result.response.issue.id === ''undefined'' || result.status != 201) { throw ''Cannot create Redmine issue. Check debug log for more information.''; } return result.response.issue.id; }, updateIssue: function (note, fields, status) { var data = { issue: { notes: note || '''' } }; if (status) { data.issue.status_id = status; } Redmine.request(''put'', ''issues/'' + Redmine.params.issue_key + ''.json'', Redmine.addCustomFields(data, fields)); } }; try { var params = JSON.parse(value), params_redmine = {}, params_fields = {}, params_update = {}, result = {tags: {}}, required_params = [ ''alert_subject'', ''tracker_id'', ''project'', ''event_source'', ''event_value'', ''event_update_status'' ], severities = [ {name: ''not_classified'', color: ''#97AAB3''}, {name: ''information'', color: ''#7499FF''}, {name: ''warning'', color: ''#FFC859''}, {name: ''average'', color: ''#FFA059''}, {name: ''high'', color: ''#E97659''}, {name: ''disaster'', color: ''#E45959''}, {name: ''resolved'', color: ''#009900''}, {name: null, color: ''#000000''} ], priority; Object.keys(params) .forEach(function (key) { if (key.startsWith(''redmine_'')) { params_redmine[key.substring(8)] = params[key]; } else if (key.startsWith(''customfield_'')) { params_fields[key.substring(12)] = params[key]; } else if (key.startsWith(''event_update_'')) { params_update[key.substring(13)] = params[key]; } else if (required_params.indexOf(key) !== -1 && params[key].trim() === '''') { throw ''Parameter "'' + key + ''" cannot be empty.''; } }); if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) { throw ''Incorrect "event_source" parameter given: '' + params.event_source + ''\\nMust be 0-3.''; } // Check {EVENT.VALUE} for trigger-based and internal events. if (params.event_value !== ''0'' && params.event_value !== ''1'' && (params.event_source === ''0'' || params.event_source === ''3'')) { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''\\nMust be 0 or 1.''; } // Check {EVENT.UPDATE.STATUS} only for trigger-based events. if (params.event_source === ''0'' && params.event_update_status !== ''0'' && params.event_update_status !== ''1'') { throw ''Incorrect "event_update_status" parameter given: '' + params.event_update_status + ''\\nMust be 0 or 1.''; } if (typeof params_redmine.close_status_id === ''string'' && params_redmine.close_status_id.trim() !== '''' && !parseInt(params_redmine.close_status_id, 10)) { throw ''Incorrect "redmine_close_status_id" parameter given! Must be an integer.''; } if (params.event_source !== ''0'' && params.event_value === ''0'') { throw ''Recovery operations are supported only for trigger-based actions.''; } if (params.event_source === ''0'' && ((params.event_value === ''1'' && params.event_update_status === ''1'') || (params.event_value === ''0'' && (params.event_update_status === ''0'' || params.event_update_status === ''1''))) && (isNaN(parseInt(params.redmine_issue_key)) || parseInt(params.redmine_issue_key) < 1 )) { throw ''Incorrect "redmine_issue_key" parameter given: '' + params.redmine_issue_key + ''\\nMust be positive integer.''; } if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) { params.event_nseverity = ''7''; } if (params.event_value === ''0'') { params.event_nseverity = ''6''; } priority = params[''severity_'' + severities[params.event_nseverity].name]; priority = priority && priority.trim() || severities[7].name; Redmine.setParams(params_redmine); Redmine.HTTPProxy = params.HTTPProxy; // Create issue for non trigger-based events. if (params.event_source !== ''0'' && params.event_value !== ''0'') { Redmine.createIssue(params.alert_subject, params.alert_message, priority); } // Create issue for trigger-based events. else if (params.event_value === ''1'' && params_update.status === ''0'') { var issue_id = Redmine.createIssue(params.alert_subject, params.alert_subject + ''\\n'' + params.alert_message + ''\\n'' + params.zabbix_url + (params.zabbix_url.endsWith(''/'') ? '''' : ''/'') + ''tr_events.php?triggerid='' + params.trigger_id + ''&eventid='' + params.event_id + ''\\n'', priority, params_fields); result.tags.__zbx_redmine_issue_id = issue_id; result.tags.__zbx_redmine_issuelink = params.redmine_url + (params.redmine_url.endsWith(''/'') ? '''' : ''/'') + ''issues/'' + issue_id; } // Close issue if parameter close_status_id is set and it is a recovery operation else if (params.event_value === ''0'' && typeof params_redmine.close_status_id === ''string'' && params_redmine.close_status_id.trim() !== '''') { Redmine.updateIssue(params.alert_subject + ''\\n'' + params.alert_message, params_fields, params_redmine.close_status_id); } // Update created issue for trigger-based event. else { Redmine.updateIssue(params.alert_subject + ''\\n'' + params.alert_message, params_fields); } return JSON.stringify(result); } catch (error) { Zabbix.log(3, ''[ Redmine Webhook ] ERROR: '' + error); throw ''Sending failed: '' + error; }','30s','1','1','{EVENT.TAGS.__zbx_redmine_issuelink}','Redmine: issue #{EVENT.TAGS.__zbx_redmine_issue_id}','','0'), ('59','4','Rocket.Chat','','','','','','','','25','0','0','0','0','1','3','10s','1',E'var RocketChat = { params: {}, setParams: function (params) { if (typeof params !== ''object'') { return; } RocketChat.params = params; if (RocketChat.params.url && RocketChat.params.api_url) { if (!RocketChat.params.url.endsWith(''/'')) { RocketChat.params.url += ''/''; } if (!RocketChat.params.api_url.endsWith(''/'')) { RocketChat.params.api_url += ''/''; } if (RocketChat.params.api_url.startsWith(''/'')) { RocketChat.params.api_url = RocketChat.params.api_url.substring(1); } RocketChat.params.url += RocketChat.params.api_url; } }, setProxy: function (HTTPProxy) { RocketChat.HTTPProxy = HTTPProxy; }, addFields: function (fields) { var data = []; if (typeof fields === ''object'' && Object.keys(fields).length) { Object.keys(fields) .forEach(function(field) { if (fields[field] === '''') { Zabbix.log(4, ''[ RocketChat Webhook ] Field "'' + field + ''" can\\''t be empty. The field ignored.''); } else { try { var parts = field.split('':''), prefix = parts[0].split(''_''); if (typeof prefix[2] === ''undefined'' || (prefix[2] === ''p'' && params.event_value === ''1'') || (prefix[2] === ''r'' && params.event_value === ''0'')) { data.push({ title: field.substring(field.indexOf('':'') + 1), value: fields[field], short: prefix[1] === ''short'' }); } } catch (error) { Zabbix.log(4, ''[ RocketChat Webhook ] Can\\''t parse field "'' + field + ''". The field ignored.''); } } }); } return data; }, request: function (method, query, data) { [''url'', ''api_url'', ''user_id'', ''user_token'', ''send_to''].forEach(function (field) { if (typeof RocketChat.params !== ''object'' || typeof RocketChat.params[field] === ''undefined'' || RocketChat.params[field] === '''' ) { throw ''Required parameter is not set: "'' + field + ''".''; } }); var response, url = RocketChat.params.url + query, request = new HttpRequest(); request.addHeader(''Content-Type: application/json''); request.addHeader(''X-Auth-Token:'' + RocketChat.params.user_token); request.addHeader(''X-User-Id:'' + RocketChat.params.user_id); if (typeof RocketChat.HTTPProxy !== ''undefined'' && RocketChat.HTTPProxy !== '''') { request.setProxy(RocketChat.HTTPProxy); } if (typeof data !== ''undefined'') { data = JSON.stringify(data); } Zabbix.log(4, ''[ RocketChat Webhook ] Sending request: '' + url + ((typeof data === ''string'') ? (''\\n'' + data) : '''')); switch (method) { case ''get'': response = request.get(url, data); break; case ''post'': response = request.post(url, data); break; default: throw ''Unsupported HTTP request method: '' + method; } Zabbix.log(4, ''[ RocketChat Webhook ] Received response with status code '' + request.getStatus() + ''\\n'' + response); if (response !== null) { try { response = JSON.parse(response); } catch (error) { Zabbix.log(4, ''[ RocketChat Webhook ] Failed to parse response received from RocketChat''); response = null; } } if (request.getStatus() < 200 || request.getStatus() >= 300) { var message = ''Request failed with status code '' + request.getStatus(); if (response !== null && typeof response.message !== ''undefined'') { message += '': '' + JSON.stringify(response.message); } else if (response !== null && typeof response.error !== ''undefined'') { message += '': '' + JSON.stringify(response.error); } throw message + ''. Check debug log for more information.''; } return { status: request.getStatus(), response: response }; }, postMessage: function(use_default_message, message, fields) { var data = { channel: RocketChat.params.send_to, attachments: [{ collapsed: false, color: RocketChat.params.color, title: params.alert_subject }] }; if (RocketChat.params.title_link) { data.attachments[0].title_link = RocketChat.params.title_link; } if (use_default_message) { data.attachments[0].text = message; } else { data.attachments[0].fields = RocketChat.addFields(fields); } var result = RocketChat.request(''post'', ''chat.postMessage'', data); if (typeof result.response !== ''object'' || typeof result.response.message._id === ''undefined'') { throw ''Cannot send RocketChat message. Check debug log for more information.''; } return { id: result.response.message._id, rid: result.response.message.rid, channel: result.response.channel }; }, sendMessage: function(update, fields) { var data = { message: { rid: RocketChat.params.room_id, tmid: RocketChat.params.msg_id, tshow: true } }; if (update.status === ''0'') { data.message.attachments = [{ collapsed: false, color: RocketChat.params.color, title: params.alert_subject, title_link: RocketChat.params.title_link, fields: RocketChat.addFields(fields) }]; } else { data.message.alias = update.user; data.message.msg = update.action; if (update.message) { data.message.attachments = [{ color: RocketChat.params.color, text: update.message }]; } } RocketChat.request(''post'', ''chat.sendMessage'', data); }, getMessageLink: function(rid, id) { var room = RocketChat.request(''get'', ''rooms.info?roomId='' + encodeURIComponent(rid)), link = params.rc_url + (params.rc_url.endsWith(''/'') ? '''' : ''/''); switch (room.response.room.t) { case ''c'': link += ''channel/'' + room.response.room.name + ''?msg='' + id; break; case ''p'': link += ''group/'' + room.response.room.name + ''?msg='' + id; break; case ''d'': link += ''direct/'' + rid + ''?msg='' + id; break; default: Zabbix.log(4, ''[ RocketChat Webhook ] Can\\''t get room type. Link to message will not be added.''); } return link; } }; try { var params = JSON.parse(value), response, fields = {}, rc = {}, update = {}, result = {tags: {}}, required_params = [''alert_subject'', ''alert_message'', ''event_source'', ''event_value''], severities = [ {name: ''not_classified'', color: ''#97AAB3''}, {name: ''information'', color: ''#7499FF''}, {name: ''warning'', color: ''#FFC859''}, {name: ''average'', color: ''#FFA059''}, {name: ''high'', color: ''#E97659''}, {name: ''disaster'', color: ''#E45959''}, {name: ''resolved'', color: ''#009900''}, {name: ''default'', color: ''#000000''} ]; Object.keys(params) .forEach(function (key) { if (key.startsWith(''rc_'')) { rc[key.substring(3)] = params[key]; } else if (key.startsWith(''field_'')) { fields[key.substring(6)] = params[key]; } else if (key.startsWith(''event_update_'')) { update[key.substring(13)] = params[key]; } else if (required_params.indexOf(key) !== -1 && params[key] === '''') { throw ''Parameter "'' + key + ''" can\\''t be empty.''; } }); if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) { throw ''Incorrect "event_source" parameter given: '' + params.event_source + ''\\nMust be 0-3.''; } // Forcing parameters for non trigger-based events. if (params.event_source !== ''0'') { params.use_default_message = ''true''; params.event_nseverity = ''0''; params.rc_title_link = false; } // Check {EVENT.VALUE} for trigger-based and internal events. if (params.event_value !== ''0'' && params.event_value !== ''1'' && (params.event_source === ''0'' || params.event_source === ''3'')) { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''\\nMust be 0 or 1.''; } // Check {EVENT.UPDATE.STATUS} only for trigger-based events. if (params.event_update_status !== ''0'' && params.event_update_status !== ''1'' && params.event_source === ''0'') { throw ''Incorrect "event_update_status" parameter given: '' + params.event_update_status + ''\\nMust be 0 or 1.''; } if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) { params.event_nseverity = ''7''; } if (params.event_value === ''0'') { params.event_nseverity = ''6''; } RocketChat.setParams(rc); RocketChat.setProxy(params.HTTPProxy); RocketChat.params.color = severities[params.event_nseverity].color; // Send default message if use_default_message === true. if (params.use_default_message.toLowerCase() === ''true'') { response = RocketChat.postMessage(true, params.alert_message); result.tags.__zbx_rc_id = response.id; result.tags.__zbx_rc_rid = response.rid; result.tags.__zbx_rc_msg_url = RocketChat.getMessageLink(response.rid, response.id); } // Send message for trigger-based events. else if (params.event_value === ''1'' && update.status === ''0'') { response = RocketChat.postMessage(false, params.alert_message, fields); result.tags.__zbx_rc_id = response.id; result.tags.__zbx_rc_rid = response.rid; result.tags.__zbx_rc_msg_url = RocketChat.getMessageLink(response.rid, response.id); } // Send thread message for trigger-based event. else { RocketChat.sendMessage(update, fields); } return JSON.stringify(result); } catch (error) { Zabbix.log(3, ''[ RocketChat Webhook ] ERROR: '' + error); throw ''Sending failed: '' + error; }','30s','1','1','{EVENT.TAGS.__zbx_rc_msg_url}','Rocket.Chat','','0'), ('60','4','ServiceNow','','','','','','','','25','0','0','0','0','1','3','10s','1',E'var ServiceNow = { params: {}, setParams: function (params) { if (typeof params !== ''object'') { return; } ServiceNow.params = params; if (typeof ServiceNow.params.url === ''string'') { if (!ServiceNow.params.url.endsWith(''/'')) { ServiceNow.params.url += ''/''; } ServiceNow.params.url += ''api/now/table/incident''; } }, setProxy: function (HTTPProxy) { ServiceNow.HTTPProxy = HTTPProxy; }, setFields: function (data, fields) { if (typeof fields === ''object'' && Object.keys(fields).length) { Object.keys(fields) .forEach(function(field) { data[field] = (fields[field].match(/^\\d{4}\\.\\d{2}\\.\\d{2}$/) !== null) ? fields[field].replace(/\\./g, ''-'') : fields[field]; }); } }, request: function (method, data) { [''url'', ''user'', ''password''].forEach(function (field) { if (typeof ServiceNow.params !== ''object'' || typeof ServiceNow.params[field] === ''undefined'' || ServiceNow.params[field] === '''' ) { throw ''Required ServiceNow param is not set: "'' + field + ''".''; } }); var response, url = ServiceNow.params.url, request = new HttpRequest(); request.addHeader(''Content-Type: application/json''); request.addHeader(''Authorization: Basic '' + btoa(ServiceNow.params.user + '':'' + ServiceNow.params.password)); if (typeof ServiceNow.HTTPProxy !== ''undefined'' && ServiceNow.HTTPProxy !== '''') { request.setProxy(ServiceNow.HTTPProxy); } if (typeof data !== ''undefined'') { data = JSON.stringify(data); } Zabbix.log(4, ''[ ServiceNow Webhook ] Sending request: '' + url + ((typeof data === ''string'') ? (''\\n'' + data) : '''')); switch (method) { case ''get'': response = request.get(url, data); break; case ''post'': response = request.post(url, data); break; case ''put'': response = request.put(url, data); break; default: throw ''Unsupported HTTP request method: '' + method; } Zabbix.log(4, ''[ ServiceNow Webhook ] Received response with status code '' + request.getStatus() + ''\\n'' + response); if (response !== null) { try { response = JSON.parse(response); } catch (error) { Zabbix.log(4, ''[ ServiceNow Webhook ] Failed to parse response received from ServiceNow''); response = null; } } if (request.getStatus() < 200 || request.getStatus() >= 300) { var message = ''Request failed with status code '' + request.getStatus(); if (response !== null && typeof response.error.message !== ''undefined'' && Object.keys(response.error).length > 0) { message += '': '' + JSON.stringify(response.error.message); } throw message + '' Check debug log for more information.''; } else if (typeof response.result !== ''object'' || typeof response.result.sys_id === ''undefined'') { throw ''Cannot create ServiceNow incident. Check debug log for more information.''; } return response.result; } }; try { var params = JSON.parse(value), fields = {}, servicenow = {}, data = {}, result = {tags: {}}, required_params = [ ''alert_subject'', ''alert_message'', ''event_source'', ''event_value'', ''event_update_status'', ''event_recovery_value'', ''event_nseverity'' ], severities = [ {name: ''not_classified'', color: ''#97AAB3''}, {name: ''information'', color: ''#7499FF''}, {name: ''warning'', color: ''#FFC859''}, {name: ''average'', color: ''#FFA059''}, {name: ''high'', color: ''#E97659''}, {name: ''disaster'', color: ''#E45959''}, {name: ''resolved'', color: ''#009900''}, {name: ''default'', color: ''#000000''} ], method = ''post'', process_tags = true; Object.keys(params) .forEach(function (key) { if (key.startsWith(''servicenow_'')) { servicenow[key.substring(11)] = params[key]; } else if (key.startsWith(''u_'')) { fields[key] = params[key]; } else if (required_params.indexOf(key) !== -1 && params[key] === '''') { throw ''Parameter "'' + key + ''" can\\''t be empty.''; } }); if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) { throw ''Incorrect "event_source" parameter given: '' + params.event_source + ''\\nMust be 0-3.''; } if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) { params.event_nseverity = ''7''; } // Check {EVENT.VALUE} for trigger-based and internal events. if (params.event_value !== ''0'' && params.event_value !== ''1'' && (params.event_source === ''0'' || params.event_source === ''3'')) { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''\\nMust be 0 or 1.''; } // Check {EVENT.UPDATE.STATUS} only for trigger-based events. if (params.event_update_status !== ''0'' && params.event_update_status !== ''1'' && params.event_source === ''0'') { throw ''Incorrect "event_update_status" parameter given: '' + params.event_update_status + ''\\nMust be 0 or 1.''; } if (params.event_source !== ''0'' && params.event_recovery_value === ''0'') { throw ''Recovery operations are supported only for trigger-based actions.''; } data.short_description = params.alert_subject; data.description = params.alert_message; data.comments = params.alert_message; if (typeof params[''urgency_for_'' + severities[params.event_nseverity].name] !== ''undefined'') { data.urgency = params[''urgency_for_'' + severities[params.event_nseverity].name]; } ServiceNow.setParams(servicenow); ServiceNow.setProxy(params.HTTPProxy); ServiceNow.setFields(data, fields); if (params.event_source === ''0'' && (params.event_value === ''0'' || params.event_update_status === ''1'')) { process_tags = false; method = ''put''; delete data.description; delete data.urgency; ServiceNow.params.url += ''/'' + params.servicenow_sys_id; } var response = ServiceNow.request(method, data); if (process_tags) { result.tags.__zbx_servicenow_sys_id = response.sys_id; result.tags.__zbx_servicenow_link = params.servicenow_url + (params.servicenow_url.endsWith(''/'') ? '''' : ''/'') + ''incident.do?sys_id='' + response.sys_id; result.tags.__zbx_servicenow_number = response.number; } return JSON.stringify(result); } catch (error) { Zabbix.log(3, ''[ ServiceNow Webhook ] ERROR: '' + error); throw ''Sending failed: '' + error; }','30s','1','1','{EVENT.TAGS.__zbx_servicenow_link}','ServiceNow: {EVENT.TAGS.__zbx_servicenow_number}','','0'), ('61','4','SIGNL4','','','','','','','','25','0','0','0','0','1','3','10s','1',E'// SIGNL4 Webhook try { var response, payload, params = JSON.parse(value), endpoint = ''https://connect.signl4.com/webhook/'', request = new HttpRequest(); if (typeof params.HTTPProxy === ''string'' && params.HTTPProxy.trim() !== '''') { request.setProxy(params.HTTPProxy); } if (typeof params.teamsecret === ''string'' && params.teamsecret.trim() !== '''') { endpoint += params.teamsecret; delete params.teamsecret; } else { throw ''The team secret of your SIGNL4 team cannot be empty.''; } if (typeof params.Severity === ''string'' && params.Severity === ''{EVENT.SEVERITY}'') { params.Severity = ''Not classified''; } if (typeof params.User === ''string'' && params.User === ''{USER.FULLNAME}'') { params.User = ''''; } if (typeof params.Event_Update_Action === ''string'' && params.Event_Update_Action === ''{EVENT.UPDATE.ACTION}'') { params.Event_Update_Action = ''''; } // Assemble X-S4-ExternalID for two-way integration // Format: "ZabbixEventID: 222 ZabbixURL: https://your-zabbix-server/zabbix/" params[''X-S4-ExternalID''] = ''ZabbixEventID: '' + params.Event_ID; if (typeof params.Zabbix_URL === ''string'' && params.Zabbix_URL.indexOf(''http'') == 0) { // Make sure the URL ends with ''/'' if (params.Zabbix_URL.charAt(params.Zabbix_URL.length - 1) != ''/'') { params.Zabbix_URL = params.Zabbix_URL + ''/''; } params[''X-S4-ExternalID''] = params[''X-S4-ExternalID''] + '' ZabbixURL: '' + params.Zabbix_URL; // Add Link parameter params[''Link''] = params.Zabbix_URL + "tr_events.php?triggerid="+params.Trigger_ID + "&eventid=" + params.Event_ID; } // Check if this is a new problem or a recovery if (params.Trigger_Status == ''OK'') { params[''X-S4-Status''] = ''resolved''; } else { params[''X-S4-Status''] = ''new''; params[''X-S4-SourceSystem''] = ''Zabbix''; } payload = JSON.stringify(params); Zabbix.log(4, ''[ SIGNL4 Webhook ] Sending request: '' + payload); request.addHeader(''Content-Type: application/json''); response = request.post(endpoint, ''payload='' + payload); Zabbix.log(4, ''[ SIGNL4 Webhook ] Received response with status code '' + request.getStatus() + ''\\n'' + response ); if (request.getStatus() !== 201) { throw ''Request failed with status code '' + request.getStatus() + ''. Check debug log for more information.''; } return ''OK''; } catch (error) { Zabbix.log(4, ''[ SIGNL4 Webhook ] ERROR: '' + error); throw ''Sending failed: '' + error; }','30s','0','0','','','SIGNL4 is a mobile alert notification app for powerful alerting, alert management and mobile assignment of work items. It offers alerting via app push, SMS and voice calls including escalations, tracking, and duty scheduling. Get the app at https://www.signl4.com. Find out more including an integration video here: https://www.signl4.com/blog/portfolio_item/zabbix-mobile-alert-notification-duty-schedule-escalation/','0'), ('62','4','Slack','','','','','','','','25','0','0','0','0','1','1','10s','1',E'const CLogger = function(serviceName) { this.serviceName = serviceName; this.INFO = 4 this.WARN = 3 this.ERROR = 2 this.log = function(level, msg) { Zabbix.log(level, ''['' + this.serviceName + ''] '' + msg); } } const CWebhook = function(value) { try { params = JSON.parse(value); if ([''0'', ''1'', ''2'', ''3'', ''4''].indexOf(params.event_source) === -1) { throw ''Incorrect "event_source" parameter given: '' + params.event_source + ''.\\nMust be 0-4.''; } if ([''0'', ''3'', ''4''].indexOf(params.event_source) !== -1 && [''0'', ''1''].indexOf(params.event_value) === -1) { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''.\\nMust be 0 or 1.''; } if ([''0'', ''3'', ''4''].indexOf(params.event_source) !== -1) { if (params.event_source === ''1'' && [''0'', ''1'', ''2'', ''3''].indexOf(params.event_value) === -1) { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''.\\nMust be 0-3.''; } if (params.event_source === ''0'' && [''0'', ''1''].indexOf(params.event_update_status) === -1) { throw ''Incorrect "event_update_status" parameter given: '' + params.event_update_status + ''.\\nMust be 0 or 1.''; } if (params.event_source === ''4'') { if ([''0'', ''1'', ''2'', ''3'', ''4'', ''5''].indexOf(params.event_update_nseverity) !== -1 && params.event_update_nseverity != params.event_nseverity) { params.event_nseverity = params.event_update_nseverity; params.event_severity = params.event_update_severity; params.event_update_status = ''1''; } } } this.runCallback = function(name, params) { if (typeof this[name] === ''function'') { return this[name].apply(this, [params]); } } this.handleEvent = function(source, event) { const alert = { source: source, event: event }; return [ this.runCallback(''on'' + source + event, alert), this.runCallback(''on'' + event, alert), this.runCallback(''onEvent'', alert) ]; } this.handleEventless = function(source) { const alert = { source: source, event: null }; return [ this.runCallback(''on'' + source, alert), this.runCallback(''onEvent'', alert) ]; } this.run = function() { var results = []; if (typeof this.httpProxy === ''string'' && this.httpProxy.trim() !== '''') { this.request.setProxy(this.httpProxy); } const types = { ''0'': ''Trigger'', ''1'': ''Discovery'', ''2'': ''Autoreg'', ''3'': ''Internal'', ''4'': ''Service'' }; if ([''0'', ''3'', ''4''].indexOf(this.params.event_source) !== -1) { var event = (this.params.event_update_status === ''1'') ? ''Update'' : ((this.params.event_value === ''1'') ? ''Problem'' : ''Resolve''); results = this.handleEvent(types[this.params.event_source], event); } else if (typeof types[this.params.event_source] !== ''undefined'') { results = this.handleEventless(types[this.params.event_source]); } else { throw ''Unexpected "event_source": '' + this.params.event_source; } for (idx in results) { if (typeof results[idx] !== ''undefined'') { return JSON.stringify(results[idx]); } } } this.httpProxy = params.http_proxy; this.params = params; this.runCallback(''onCheckParams'', {}); } catch (error) { throw ''Webhook processing failed: '' + error; } } const CParamValidator = { isType: function(value, type) { if (type === ''array'') { return Array.isArray(value); } if (type === ''integer'') { return CParamValidator.isInteger(value); } if (type === ''float'') { return CParamValidator.isFloat(value); } return (typeof value === type); }, isInteger: function(value) { if (!CParamValidator.ifMatch(value, /^-?\\d+$/)) { return false; } return !isNaN(parseInt(value)); }, isFloat: function(value) { if (!CParamValidator.ifMatch(value, /^-?\\d+\\.\\d+$/)) { return false; } return !isNaN(parseFloat(value)); }, isDefined: function(value) { return !CParamValidator.isType(value, ''undefined''); }, isEmpty: function(value) { if (!CParamValidator.isType(value, ''string'')) { throw ''Value "'' + value + ''" must be a string to be checked for emptiness.''; } return (value.trim() === ''''); }, isMacroSet: function(value, macro) { if (CParamValidator.isDefined(macro)) { return !(CParamValidator.ifMatch(value, ''^\\{'' + macro + ''\\}$'')) } return !(CParamValidator.ifMatch(value, ''^\\{[$#]{0,1}[A-Z_\\.]+[\\:]{0,1}["]{0,1}.*["]{0,1}\\}$'') || value === ''*UNKNOWN*'') }, withinRange: function(value, min, max) { if (!CParamValidator.isType(value, ''number'')) { throw ''Value "'' + value + ''" must be a number to be checked for range.''; } if (value < ((CParamValidator.isDefined(min)) ? min : value) || value > ((CParamValidator.isDefined(max)) ? max : value)) { return false; } return true; }, inArray: function(value, array) { if (!CParamValidator.isType(array, ''array'')) { throw ''The array must be an array to check the value for existing in it.''; } return (array.indexOf((typeof value === ''string'') ? value.toLowerCase() : value) !== -1); }, ifMatch: function(value, regex) { return (new RegExp(regex)).test(value); }, match: function(value, regex) { if (!CParamValidator.isType(value, ''string'')) { throw ''Value "'' + value + ''" must be a string to be matched with the regular expression.''; } return value.match(new RegExp(regex)); }, checkURL: function(value) { if (CParamValidator.isEmpty(value)) { throw ''URL value "'' + value + ''" must be a non-empty string.''; } if (!CParamValidator.ifMatch(value, ''^(http|https):\\/\\/.+'')) { throw ''URL value "'' + value + ''" must contain a schema.''; } return value.endsWith(''/'') ? value.slice(0, -1) : value; }, check: function(key, rule, params) { if (!CParamValidator.isDefined(rule.type)) { throw ''Mandatory attribute "type" has not been defined for parameter "'' + key + ''".''; } if (!CParamValidator.isDefined(params[key])) { throw ''Checked parameter "'' + key + ''" was not found in the list of input parameters.''; } var value = params[key], error_message = null; switch (rule.type) { case ''string'': if (!CParamValidator.isType(value, ''string'')) { throw ''Value "'' + key + ''" must be a string.''; } if (CParamValidator.isEmpty(value)) { error_message = ''Value "'' + key + ''" must be a non-empty string''; break; } if (CParamValidator.isDefined(rule.len) && value.length < rule.len) { error_message = ''Value "'' + key + ''" must be a string with a length > '' + rule.len; } if (CParamValidator.isDefined(rule.regex) && !CParamValidator.ifMatch(value, rule.regex)) { error_message = ''Value "'' + key + ''" must match the regular expression "'' + rule.regex + ''"''; } if (CParamValidator.isDefined(rule.url) && rule.url === true) { value = CParamValidator.checkURL(value); } break; case ''integer'': if (!CParamValidator.isInteger(value)) { error_message = ''Value "'' + key + ''" must be an integer''; break; } value = parseInt(value); break; case ''float'': if (!CParamValidator.isFloat(value)) { error_message = ''Value "'' + key + ''" must be a floating-point number''; break; } value = parseFloat(value); break; case ''boolean'': if (CParamValidator.inArray(value, [''1'', ''true'', ''yes'', ''on''])) { value = true; } else if (CParamValidator.inArray(value, [''0'', ''false'', ''no'', ''off''])) { value = false; } else { error_message = ''Value "'' + key + ''" must be a boolean-like.''; } break; case ''array'': try { value = JSON.parse(value); } catch (error) { throw ''Value "'' + key + ''" contains invalid JSON.''; } if (!CParamValidator.isType(value, ''array'')) { error_message = ''Value "'' + key + ''" must be an array.''; } if (CParamValidator.isDefined(rule.tags) && rule.tags === true) { value = value.reduce(function(acc, obj) { acc[obj.tag] = obj.value || null; return acc; }, {}); } break; case ''object'': value = JSON.parse(value); if (!CParamValidator.isType(value, ''object'')) { error_message = ''Value "'' + key + ''" must be an object.''; } break; default: throw ''Unexpected attribute type "'' + rule.type + ''" for value "'' + key + ''". Available: '' + [''integer'', ''float'', ''string'', ''boolean'', ''array'', ''object''].join('', ''); } params[key] = value; if (CParamValidator.inArray(rule.type, [''integer'', ''float'']) && error_message === null && (CParamValidator.isDefined(rule.min) || CParamValidator.isDefined(rule.max)) && !CParamValidator.withinRange(value, rule.min, rule.max)) { error_message = ''Value "'' + key + ''" must be a number '' + ((CParamValidator.isDefined(rule.min) && CParamValidator.isDefined(rule.max)) ? (rule.min + ''..'' + rule.max) : ((CParamValidator.isDefined(rule.min)) ? ''>'' + rule.min : ''<'' + rule.max)); } else if (CParamValidator.isDefined(rule.array) && !CParamValidator.inArray(value, rule.array)) { error_message = ''Value "'' + key + ''" must be in the array '' + JSON.stringify(rule.array); } else if (CParamValidator.isDefined(rule.macro) && !CParamValidator.isMacroSet(value.toString(), rule.macro)) { error_message = ''The macro '' + ((CParamValidator.isDefined(rule.macro)) ? ''{'' + rule.macro + ''} '' : '' '') + ''is not set''; } if (error_message !== null) { if (CParamValidator.isDefined(rule.default) && CParamValidator.isType(rule.default, rule.type)) { params[key] = rule.default; } else { Zabbix.log(4, ''Default value for "'' + key + ''" must be a '' + rule.type + ''. Skipped.''); throw ''Incorrect value for variable "'' + key + ''". '' + error_message; } } return this; }, validate: function(rules, params) { if (!CParamValidator.isType(params, ''object'') || CParamValidator.isType(params, ''array'')) { throw ''Incorrect parameters value. The value must be an object.''; } for (var key in rules) { CParamValidator.check(key, rules[key], params); } } } const CHttpRequest = function(logger) { this.request = new HttpRequest(); if (typeof logger !== ''object'' || logger === null) { this.logger = Zabbix; } else { this.logger = logger; } this.clearHeader = function() { this.request.clearHeader(); } this.addHeaders = function(value) { var headers = []; if (typeof value === ''object'' && value !== null) { if (!Array.isArray(value)) { Object.keys(value).forEach(function(key) { headers.push(key + '': '' + value[key]); }); } else { headers = value; } } else if (typeof value === ''string'') { value.split(''\\r\\n'').forEach(function(header) { headers.push(header); }); } for (var idx in headers) { this.request.addHeader(headers[idx]); } } this.setProxy = function(proxy) { this.request.setProxy(proxy); } this.plainRequest = function(method, url, data) { var resp = null; method = method.toLowerCase(); this.logger.log(4, ''Sending '' + method + '' request:'' + JSON.stringify(data)); if ([''get'', ''post'', ''put'', ''patch'', ''delete'', ''trace''].indexOf(method) !== -1) { resp = this.request[method](url, data); } else if ([''connect'', ''head'', ''options''].indexOf(method) !== -1) { resp = this.request[method](url); } else { throw ''Unexpected method. Method '' + method + '' is not supported.''; } this.logger.log(4, ''Response has been received: '' + resp); return resp; } this.jsonRequest = function(method, url, data) { this.addHeaders(''Content-Type: application/json''); var resp = this.plainRequest(method, url, JSON.stringify(data)); try { resp = JSON.parse(resp); } catch (error) { throw ''Failed to parse response: not well-formed JSON was received''; } return resp; } this.getStatus = function() { return this.request.getStatus(); } } const CWebhookHelper = { createProblemURL: function(event_source, zabbix_url, trigger_id, event_id) { if (event_source === ''0'') { return zabbix_url + ''/tr_events.php?triggerid='' + trigger_id + ''&eventid='' + event_id; } else if (event_source === ''4'') { return zabbix_url + ''/zabbix.php?action=service.list''; } return zabbix_url; }, }; var serviceLogName = ''Slack Webhook'', Logger = new CLogger(serviceLogName), Slack = CWebhook; Slack.prototype.onCheckParams = function () { CParamValidator.validate({ alert_subject: { type: ''string'' }, alert_message: { type: ''string'' }, bot_token: { type: ''string'' }, zabbix_url: { type: ''string'', url: true }, channel: { type: ''string'', macro: ''ALERT.SENDTO'' }, slack_mode: { type: ''string'', array: [''alarm'', ''event''], } }, this.params); if (this.params.event_source === ''0'') { CParamValidator.validate({ event_id: { type: ''integer'' }, trigger_id: { type: ''integer'' } }, this.params); } if (CParamValidator.inArray(this.params.event_source, [''0'', ''3'', ''4''])) { CParamValidator.validate({ event_tags: { type: ''array'', macro: ''EVENT.TAGSJSON'', tags: true, default: {} } }, this.params); } if (this.params.event_value != ''0'' && CParamValidator.isDefined(this.params.event_tags[''__channel_id_'' + this.params.channel])) { this.params.event_update_status = ''1''; } this.severity_colors = [ ''#97AAB3'', ''#7499FF'', ''#FFC859'', ''#FFA059'', ''#E97659'', ''#E45959'' ]; this.resolve_color = ''#009900''; this.slack_endpoint = ''https://slack.com/api/''; this.problem_url = CWebhookHelper.createProblemURL(this.params.event_source, this.params.zabbix_url, this.params.trigger_id, this.params.event_id); this.data = { channel: this.params.channel, attachments: [ { fallback: this.params.alert_subject, title: this.params.alert_subject, color: this.severity_colors[this.params.event_nseverity], title_link: this.problem_url, text: this.params.alert_message, actions: [ { type: ''button'', text: ''Open in Zabbix'', url: this.problem_url } ] } ] }; this.reply = { channel: this.params.channel, thread_ts: '''', blocks: [ { type: ''context'', elements: [ { type: ''plain_text'', text: ''Event update message'' } ] }, { type: ''rich_text'', elements: [ { type: ''rich_text_section'', elements: [ { type: ''text'', text: '''', style: { italic: true } } ] } ] } ] }; }; Slack.prototype.sendRequest = function (route, data, tags) { this.request.clearHeader(); this.request.addHeaders({ ''Content-Type'': ''application/json; charset=utf-8;'', ''Authorization'': ''Bearer '' + this.params.bot_token }); var response = this.request.jsonRequest(''POST'', this.slack_endpoint + route, data); if (this.request.getStatus() !== 200 || !CParamValidator.isType(response.ok, ''boolean'') || response.ok !== true) { Logger.log(Logger.INFO, ''HTTP code: '' + this.request.getStatus()); if (CParamValidator.isType(response.error, ''string'')) { throw ''Endpoint response:'' + response.error; } else { throw ''Unknown error. Check debug log for more information.''; } } if (tags) { return { tags: { [''__message_ts_'' + this.params.channel]: response.ts, [''__channel_id_'' + this.params.channel]: response.channel, [''__message_link_'' + this.params.channel]: this.getPermalink(response.channel, response.ts), } }; } else { return { tags: {} }; } }; Slack.prototype.getPermalink = function (channel, message_ts) { var response = this.request.jsonRequest(''GET'', this.slack_endpoint + ''chat.getPermalink'' + ''?channel='' + channel + ''&message_ts='' + message_ts); if (this.request.getStatus() !== 200 || !CParamValidator.isType(response.ok, ''boolean'') || response.ok !== true) { Logger.log(Logger.INFO, ''HTTP code: '' + this.request.getStatus()); if (CParamValidator.isType(response.error, ''string'')) { throw ''Endpoint response:'' + response.error; } else { throw ''Unknown error. Check debug log for more information.''; } } if (!CParamValidator.isDefined(response.permalink)) { throw ''Permalink is missed from the JSON response''; } return response.permalink; }; Slack.prototype.onProblem = function (properties) { Logger.log(Logger.INFO, ''Source: '' + properties.source + ''; Event: '' + properties.event); if (this.params.slack_mode === "alarm") { return this.sendRequest(''chat.postMessage'', this.data, true); } else { return this.sendRequest(''chat.postMessage'', this.data, false); } }; Slack.prototype.onUpdate = function (properties) { Logger.log(Logger.INFO, ''Source: '' + properties.source + ''; Event: '' + properties.event); if (this.params.slack_mode === "alarm") { this.data.channel = this.params.event_tags[''__channel_id_'' + this.params.channel]; this.data.ts = this.params.event_tags[''__message_ts_'' + this.params.channel]; if (CParamValidator.isMacroSet(this.params.event_update_message, ''EVENT.UPDATE.MESSAGE'') && !CParamValidator.isEmpty(this.params.event_update_message)) { this.reply.thread_ts = this.data.ts; this.reply.blocks[1].elements[0].elements[0].text = this.params.event_update_message; this.sendRequest(''chat.postMessage'', this.reply, false); } if (/\\backnowledged/.test(this.params.event_update_action)) { this.sendRequest(''reactions.add'', { channel: this.data.channel, timestamp: this.data.ts, name: ''white_check_mark'' }, false); } if (/\\bunacknowledged/.test(this.params.event_update_action)) { this.sendRequest(''reactions.remove'', { channel: this.data.channel, timestamp: this.data.ts, name: ''white_check_mark'' }, false); } if (/\\bclosed/.test(this.params.event_update_action)) { return { tags: {} }; } else { return this.sendRequest(''chat.update'', this.data, false); } } else { return this.sendRequest(''chat.postMessage'', this.data, false); } }; Slack.prototype.onResolve = function (properties) { Logger.log(Logger.INFO, ''Source: '' + properties.source + ''; Event: '' + properties.event); this.data.attachments[0].color = this.resolve_color; if (this.params.slack_mode === "alarm") { this.data.channel = this.params.event_tags[''__channel_id_'' + this.params.channel]; this.data.ts = this.params.event_tags[''__message_ts_'' + this.params.channel]; return this.sendRequest(''chat.update'', this.data, false); } else { return this.sendRequest(''chat.postMessage'', this.data, false); } }; Slack.prototype.onDiscovery = function (properties) { return this.onProblem(properties); }; Slack.prototype.onAutoreg = function (properties) { return this.onProblem(properties); }; try { var hook = new Slack(value); hook.request = new CHttpRequest(Logger); return hook.run(); } catch (error) { Logger.log(Logger.WARN, ''Notification failed: '' + error); throw ''Sending failed: '' + error; }','30s','1','0','','','Preparing slack for a Zabbix media type: 1. On the page Your Apps (https://api.slack.com/apps) press ''Create an App'', select ''From scratch'' and specify its name and workspace. 2. In the ''Add features and functionality'' section, select ''Bots'' and press ''Review Scopes to Add''. 3. In the ''Scopes'' section, find ''Bot Token Scopes'', press ''Add an OAuth Scope'' and add ''chat:write'', ''im:write'', ''groups:write'' and ''reactions:write'' scopes. 4. In the ''Settings'' section on the left side of the page press ''Install App'' and then ''Install to Workspace''. 5. Press ''Allow'' and copy ''Bot User OAuth Access Token'', which will be used to set up webhook. In Zabbix: 1. Set global macro {$ZABBIX.URL} 2. Set user media for slack using channel name or member ID 3. Set media param ''bot_token'' to the previously created token For a detailed instructions please read full README file https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/templates/media/slack/README.md','0'), ('63','4','SolarWinds Service Desk','','','','','','','','25','0','0','0','0','1','3','10s','1',E'var SolarWinds = { params: {}, setParams: function (params) { if (typeof params !== ''object'') { return; } SolarWinds.params = params; SolarWinds.params.endpoint = ''https://api.samanage.com/''; }, setProxy: function (HTTPProxy) { SolarWinds.HTTPProxy = HTTPProxy; }, addCustomFields: function (data, fields) { if (typeof data.incident === ''object'' && typeof fields === ''object'' && Object.keys(fields).length) { if (typeof fields.sw_fields === ''object'' && Object.keys(fields.sw_fields).length) { Object.keys(fields.sw_fields) .forEach(function(field) { try { data.incident[field] = JSON.parse(fields.sw_fields[field]); } catch (error) { data.incident[field] = fields.sw_fields[field]; } }); } if (typeof fields.sw_customfields === ''object'' && Object.keys(fields.sw_customfields).length) { data.incident.custom_fields_values = {custom_fields_value: []}; Object.keys(fields.sw_customfields) .forEach(function(field) { data.incident.custom_fields_values.custom_fields_value.push({ name: field, value: fields.sw_customfields[field] }); }); } } return data; }, request: function (method, query, data) { [''token''].forEach(function (field) { if (typeof SolarWinds.params !== ''object'' || typeof SolarWinds.params[field] === ''undefined'' || SolarWinds.params[field] === '''' ) { throw ''Required SolarWinds param is not set: "'' + field + ''".''; } }); var response, url = SolarWinds.params.endpoint + query, request = new HttpRequest(); request.addHeader(''Content-Type: application/json''); request.addHeader(''X-Samanage-Authorization: Bearer '' + SolarWinds.params.token); request.addHeader(''Accept: application/vnd.samanage.v2.1+json''); if (typeof SolarWinds.HTTPProxy !== ''undefined'' && SolarWinds.HTTPProxy !== '''') { request.setProxy(SolarWinds.HTTPProxy); } if (typeof data !== ''undefined'') { data = JSON.stringify(data); } Zabbix.log(4, ''[ SolarWinds SD Webhook ] Sending request: '' + url + ((typeof data === ''string'') ? (''\\n'' + data) : '''')); switch (method) { case ''get'': response = request.get(url, data); break; case ''post'': response = request.post(url, data); break; case ''put'': response = request.put(url, data); break; default: throw ''Unsupported HTTP request method: '' + method; } Zabbix.log(4, ''[ SolarWinds SD Webhook ] Received response with status code '' + request.getStatus() + ''\\n'' + response); if (response !== null) { try { response = JSON.parse(response); } catch (error) { Zabbix.log(4, ''[ SolarWinds SD Webhook ] Failed to parse response received from SolarWinds''); response = null; } } if (request.getStatus() < 200 || request.getStatus() >= 300) { var message = ''Request failed with status code '' + request.getStatus(); if (response !== null && typeof response.error !== ''undefined'' && Object.keys(response.error).length > 0) { message += '': '' + JSON.stringify(response.error); } else if (response !== null && typeof response === ''object'' && Object.keys(response).length > 0) { Object.keys(response) .forEach(function(field) { message += ''\\n'' + field + '': '' + response[field][0]; }); } throw message + '' Check debug log for more information.''; } return { status: request.getStatus(), response: response }; }, createIncident: function(name, description, fields) { var data = { incident: { name: name, description: description, priority: SolarWinds.params.priority } }; var result = SolarWinds.request(''post'', ''incidents.json'', SolarWinds.addCustomFields(data, fields)); if (typeof result.response !== ''object'' || typeof result.response.id === ''undefined'') { throw ''Cannot create SolarWinds incident. Check debug log for more information.''; } return result.response.id; }, updateIncident: function(name, fields, message) { var data = { incident: { name: name, priority: SolarWinds.params.priority } }; SolarWinds.request( ''put'', ''incidents/'' + SolarWinds.params.incident_id + ''.json'', SolarWinds.addCustomFields(data, fields)); SolarWinds.commenIncident(message); }, commenIncident: function(message) { var data = { comment: { body: message } }; SolarWinds.request(''post'', ''incidents/'' + SolarWinds.params.incident_id + ''/comments.json'', data); } }; try { var params = JSON.parse(value), fields = {}, samanage = {}, result = {tags: {}}, required_params = [''alert_subject'', ''event_recovery_value'', ''event_source'', ''event_value'', ''priority_default''], severities = [ {name: ''not_classified''}, {name: ''information''}, {name: ''warning''}, {name: ''average''}, {name: ''high''}, {name: ''disaster''}, {name: ''resolved''}, {name: ''default''} ]; fields.sw_fields = {}; fields.sw_customfields = {}; Object.keys(params) .forEach(function (key) { if (key.startsWith(''samanage_'')) { samanage[key.substring(9)] = params[key]; } else if (key.startsWith(''sw_field_'')) { fields.sw_fields[key.substring(9)] = params[key]; } else if (key.startsWith(''sw_customfield_'')) { fields.sw_customfields[key.substring(15)] = params[key]; } else if (required_params.indexOf(key) !== -1 && params[key] === '''') { throw ''Parameter "'' + key + ''" can\\''t be empty.''; } }); if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) { throw ''Incorrect "event_source" parameter given: '' + params.event_source + ''\\nMust be 0-3.''; } // Check {EVENT.VALUE} for trigger-based and internal events. if (params.event_value !== ''0'' && params.event_value !== ''1'' && (params.event_source === ''0'' || params.event_source === ''3'')) { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''\\nMust be 0 or 1.''; } // Check {EVENT.UPDATE.STATUS} only for trigger-based events. if (params.event_update_status !== ''0'' && params.event_update_status !== ''1'' && params.event_source === ''0'') { throw ''Incorrect "event_update_status" parameter given: '' + params.event_update_status + ''\\nMust be 0 or 1.''; } if (params.event_source !== ''0'' && params.event_recovery_value === ''0'') { throw ''Recovery operations are supported only for trigger-based actions.''; } if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) { params.event_nseverity = ''7''; } if (params.event_value === ''0'') { params.event_nseverity = ''6''; } samanage.priority = params[''priority_'' + severities[params.event_nseverity].name] || params.priority_default; SolarWinds.setParams(samanage); SolarWinds.setProxy(params.HTTPProxy); // Create incident for non trigger-based events. if (params.event_source !== ''0'' && params.event_recovery_value !== ''0'') { SolarWinds.createIncident(params.alert_subject, params.alert_message); } // Create incident for trigger-based events. else if (params.event_value === ''1'' && params.event_update_status === ''0'' && (samanage.incident_id === ''{EVENT.TAGS.__zbx_solarwinds_inc_id}'' || samanage.incident_id === ''*UNKNOWN*'')) { var key = SolarWinds.createIncident(params.alert_subject, params.alert_message, fields); result.tags.__zbx_solarwinds_inc_id = key; result.tags.__zbx_solarwinds_inc_link = params.samanage_url + (params.samanage_url.endsWith(''/'') ? '''' : ''/'') + ''incidents/'' + key; } // Update created incident for trigger-based event. else { if (samanage.incident_id === ''{EVENT.TAGS.__zbx_solarwinds_inc_id}'' || samanage.incident_id === '''' || samanage.incident_id === ''*UNKNOWN*'') { throw ''Incorrect incident key given: '' + samanage.incident_id; } if (!params.alert_message) { throw ''Parameter "alert_message" can\\''t be empty.''; } SolarWinds.updateIncident(params.alert_subject, fields, params.alert_message); } if (params.event_source === ''0'') { return JSON.stringify(result); } else { return ''OK''; } } catch (error) { Zabbix.log(3, ''[ SolarWinds SD Webhook ] ERROR: '' + error); throw ''Sending failed: '' + error; }','30s','1','1','{EVENT.TAGS.__zbx_solarwinds_inc_link}','SolarWinds incident ID: {EVENT.TAGS.__zbx_solarwinds_inc_id}','','0'), ('64','4','SysAid','','','','','','','','25','0','0','0','0','1','3','10s','1',E'var SysAid = { params: {}, setParams: function (params) { var required = [''url'', ''auth_user'', ''auth_password'', ''category_level_1'', ''category_level_2'', ''category_level_3'', ''incident_id'', ''template_id'', ''urgency_id'', ''incident_state'', ''default_priority_id'' ]; required.forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } }); SysAid.params = params; if (typeof SysAid.params.url === ''string'' && !SysAid.params.url.endsWith(''/'')) { SysAid.params.url += ''/''; } }, login: function () { var result = SysAid.request(''post'', ''api/v1/login'', { user_name: SysAid.params.auth_user, password: SysAid.params.auth_password }); return result.response.user.id; }, request: function (method, query, data) { var response, request = SysAid.req || (SysAid.req = new HttpRequest()), url = SysAid.params.url + query; if (typeof SysAid.HTTPProxy !== ''undefined'' && SysAid.HTTPProxy.trim() !== '''') { request.setProxy(SysAid.HTTPProxy); } if (typeof data !== ''undefined'') { data = JSON.stringify(data); } Zabbix.log(4, ''[ SysAid Webhook ] Sending request: '' + url + ((typeof data === ''string'') ? ('' '' + data) : '''')); switch (method) { case ''get'': response = request.get(url, data); break; case ''post'': response = request.post(url, data); break; case ''put'': response = request.put(url, data); break; default: throw ''Unsupported HTTP request method: '' + method; } Zabbix.log(4, ''[ SysAid Webhook ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { var message = ''Request failed with status code '' + request.getStatus(); message += '': '' + response; throw message + '' Check debug log for more information.''; } if (response !== null) { try { response = JSON.parse(response); } catch (error) { Zabbix.log(4, ''[ SysAid Webhook ] Failed to parse response received from SysAid''); response = null; } } if (response === null || (typeof response.Error !== ''undefined'' && Object.keys(response.Error).length > 0)) { throw ''Request failed: '' + JSON.stringify(response.Error); } return { status: request.getStatus(), response: response }; }, createIncident: function(subject, message, priority) { var result = SysAid.request(''post'', ''api/v1/sr/?template='' + encodeURIComponent(SysAid.params.template_id), { info: [ { key: ''problem_type'', value: [ SysAid.params.category_level_1, SysAid.params.category_level_2, SysAid.params.category_level_3 ].join(''_'') }, { key: ''title'', value: subject }, { key: ''description'', value: message }, { key: ''status'', value: ''1'' }, { key: ''urgency'', value: SysAid.params.urgency_id }, { key: ''priority'', value: priority || SysAid.params.default_priority_id, } ] }); if (result.response.id === ''undefined'') { throw ''Cannot create SysAid incident. Check debug log for more information.''; } return result.response.id; }, updateTicket: function(note) { var date = new Date().getTime(); SysAid.request(''put'', ''api/v1/sr/'' + encodeURIComponent(SysAid.params.incident_id), { id: SysAid.params.incident_id, info: [ { key: ''update_time'', value: date }, { key: ''notes'', value: [ { userName: ''Zabbix'', createDate: date, text: note } ] } ] }); } }; try { var params = JSON.parse(value), params_sysaid = {}, params_update = {}, result = {tags: {}}, required_params = [''alert_subject'', ''event_source'', ''event_value'', ''event_update_status''], severities = [ {name: ''not_classified'', color: ''#97AAB3''}, {name: ''information'', color: ''#7499FF''}, {name: ''warning'', color: ''#FFC859''}, {name: ''average'', color: ''#FFA059''}, {name: ''high'', color: ''#E97659''}, {name: ''disaster'', color: ''#E45959''}, {name: ''resolved'', color: ''#009900''}, {name: null, color: ''#000000''} ], priority; Object.keys(params) .forEach(function (key) { if (key.startsWith(''sysaid_'')) { params_sysaid[key.substring(7)] = params[key]; } else if (key.startsWith(''event_update_'')) { params_update[key.substring(13)] = params[key]; } else if (required_params.indexOf(key) !== -1 && params[key].trim() === '''') { throw ''Parameter "'' + key + ''" cannot be empty.''; } }); if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) { throw ''Incorrect "event_source" parameter given: '' + params.event_source + ''\\nMust be 0-3.''; } // Check {EVENT.VALUE} for trigger-based and internal events. if (params.event_value !== ''0'' && params.event_value !== ''1'' && (params.event_source === ''0'' || params.event_source === ''3'')) { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''\\nMust be 0 or 1.''; } // Check {EVENT.UPDATE.STATUS} only for trigger-based events. if (params.event_source === ''0'' && params.event_update_status !== ''0'' && params.event_update_status !== ''1'') { throw ''Incorrect "event_update_status" parameter given: '' + params.event_update_status + ''\\nMust be 0 or 1.''; } if (params.event_source !== ''0'' && params.event_value === ''0'') { throw ''Recovery operations are supported only for trigger-based actions.''; } if (params.event_source === ''0'' && ((params.event_value === ''1'' && params.event_update_status === ''1'') || (params.event_value === ''0'' && (params.event_update_status === ''0'' || params.event_update_status === ''1''))) && (isNaN(parseInt(params.sysaid_incident_id)) || parseInt(params.sysaid_incident_id) < 1 )) { throw ''Incorrect "sysaid_incident_id" parameter given: '' + params.sysaid_incident_id + ''\\nMust be positive integer.''; } if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) { params.event_nseverity = ''7''; } if (params.event_value === ''0'') { params.event_nseverity = ''6''; } priority = params[''severity_'' + severities[params.event_nseverity].name]; priority = priority && priority.trim() || severities[7].name; SysAid.setParams(params_sysaid); SysAid.HTTPProxy = params.HTTPProxy; SysAid.login(); if (params.event_source !== ''0'' && params.event_value !== ''0'') { // Create ticket for non trigger-based events. SysAid.createIncident(params.alert_subject, params.alert_message, priority); } else if (params.event_value === ''1'' && params_update.status === ''0'') { // Create ticket for trigger-based events. var incident_id = SysAid.createIncident(params.alert_subject, params.alert_subject + ''\\n'' + params.alert_message + ''\\n'' + params.zabbix_url + (params.zabbix_url.endsWith(''/'') ? '''' : ''/'') + ''tr_events.php?triggerid='' + params.trigger_id + ''&eventid='' + params.event_id + ''\\n'', priority ); result.tags.__zbx_sysaid_incident_id = incident_id; result.tags.__zbx_sysaid_incidentlink = params.sysaid_url + (params.sysaid_url.endsWith(''/'') ? '''' : ''/'') + ''SREdit.jsp?id='' + incident_id + ''&fromId=IncidentsList''; } else { // Update created ticket for trigger-based event. SysAid.updateTicket(params.alert_subject + ''\\n'' + params.alert_message); } return JSON.stringify(result); } catch (error) { Zabbix.log(3, ''[ SysAid Webhook ] ERROR: '' + error); throw ''Sending failed: '' + error; }','30s','1','1','{EVENT.TAGS.__zbx_sysaid_incidentlink}','SysAid: incident #{EVENT.TAGS.__zbx_sysaid_incident_id}','','0'), ('65','4','Telegram','','','','','','','','25','0','0','0','0','1','3','10s','1',E'const CLogger = function(serviceName) { this.serviceName = serviceName; this.INFO = 4 this.WARN = 3 this.ERROR = 2 this.log = function(level, msg) { Zabbix.log(level, ''['' + this.serviceName + ''] '' + msg); } } const CWebhook = function(value) { try { params = JSON.parse(value); if ([''0'', ''1'', ''2'', ''3'', ''4''].indexOf(params.event_source) === -1) { throw ''Incorrect "event_source" parameter given: '' + params.event_source + ''.\\nMust be 0-4.''; } if ([''0'', ''3'', ''4''].indexOf(params.event_source) !== -1 && [''0'', ''1''].indexOf(params.event_value) === -1) { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''.\\nMust be 0 or 1.''; } if ([''0'', ''3'', ''4''].indexOf(params.event_source) !== -1) { if (params.event_source === ''1'' && [''0'', ''1'', ''2'', ''3''].indexOf(params.event_value) === -1) { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''.\\nMust be 0-3.''; } if (params.event_source === ''0'' && [''0'', ''1''].indexOf(params.event_update_status) === -1) { throw ''Incorrect "event_update_status" parameter given: '' + params.event_update_status + ''.\\nMust be 0 or 1.''; } if (params.event_source === ''4'') { if ([''0'', ''1'', ''2'', ''3'', ''4'', ''5''].indexOf(params.event_update_nseverity) !== -1 && params.event_update_nseverity != params.event_nseverity) { params.event_nseverity = params.event_update_nseverity; params.event_severity = params.event_update_severity; params.event_update_status = ''1''; } } } this.runCallback = function(name, params) { if (typeof this[name] === ''function'') { return this[name].apply(this, [params]); } } this.handleEvent = function(source, event) { const alert = { source: source, event: event }; return [ this.runCallback(''on'' + source + event, alert), this.runCallback(''on'' + event, alert), this.runCallback(''onEvent'', alert) ]; } this.handleEventless = function(source) { const alert = { source: source, event: null }; return [ this.runCallback(''on'' + source, alert), this.runCallback(''onEvent'', alert) ]; } this.run = function() { var results = []; if (typeof this.httpProxy === ''string'' && this.httpProxy.trim() !== '''') { this.request.setProxy(this.httpProxy); } const types = { ''0'': ''Trigger'', ''1'': ''Discovery'', ''2'': ''Autoreg'', ''3'': ''Internal'', ''4'': ''Service'' }; if ([''0'', ''3'', ''4''].indexOf(this.params.event_source) !== -1) { var event = (this.params.event_update_status === ''1'') ? ''Update'' : ((this.params.event_value === ''1'') ? ''Problem'' : ''Resolve''); results = this.handleEvent(types[this.params.event_source], event); } else if (typeof types[this.params.event_source] !== ''undefined'') { results = this.handleEventless(types[this.params.event_source]); } else { throw ''Unexpected "event_source": '' + this.params.event_source; } for (idx in results) { if (typeof results[idx] !== ''undefined'') { return JSON.stringify(results[idx]); } } } this.httpProxy = params.http_proxy; this.params = params; this.runCallback(''onCheckParams'', {}); } catch (error) { throw ''Webhook processing failed: '' + error; } } const CParamValidator = { isType: function(value, type) { if (type === ''array'') { return Array.isArray(value); } if (type === ''integer'') { return CParamValidator.isInteger(value); } if (type === ''float'') { return CParamValidator.isFloat(value); } return (typeof value === type); }, isInteger: function(value) { if (!CParamValidator.ifMatch(value, /^-?\\d+$/)) { return false; } return !isNaN(parseInt(value)); }, isFloat: function(value) { if (!CParamValidator.ifMatch(value, /^-?\\d+\\.\\d+$/)) { return false; } return !isNaN(parseFloat(value)); }, isDefined: function(value) { return !CParamValidator.isType(value, ''undefined''); }, isEmpty: function(value) { if (!CParamValidator.isType(value, ''string'')) { throw ''Value "'' + value + ''" must be a string to be checked for emptiness.''; } return (value.trim() === ''''); }, isMacroSet: function(value, macro) { if (CParamValidator.isDefined(macro)) { return !(CParamValidator.ifMatch(value, ''^\\{'' + macro + ''\\}$'')) } return !(CParamValidator.ifMatch(value, ''^\\{[$#]{0,1}[A-Z_\\.]+[\\:]{0,1}["]{0,1}.*["]{0,1}\\}$'') || value === ''*UNKNOWN*'') }, withinRange: function(value, min, max) { if (!CParamValidator.isType(value, ''number'')) { throw ''Value "'' + value + ''" must be a number to be checked for range.''; } if (value < ((CParamValidator.isDefined(min)) ? min : value) || value > ((CParamValidator.isDefined(max)) ? max : value)) { return false; } return true; }, inArray: function(value, array) { if (!CParamValidator.isType(array, ''array'')) { throw ''The array must be an array to check the value for existing in it.''; } return (array.indexOf((typeof value === ''string'') ? value.toLowerCase() : value) !== -1); }, ifMatch: function(value, regex) { return (new RegExp(regex)).test(value); }, match: function(value, regex) { if (!CParamValidator.isType(value, ''string'')) { throw ''Value "'' + value + ''" must be a string to be matched with the regular expression.''; } return value.match(new RegExp(regex)); }, checkURL: function(value) { if (CParamValidator.isEmpty(value)) { throw ''URL value "'' + value + ''" must be a non-empty string.''; } if (!CParamValidator.ifMatch(value, ''^(http|https):\\/\\/.+'')) { throw ''URL value "'' + value + ''" must contain a schema.''; } return value.endsWith(''/'') ? value.slice(0, -1) : value; }, check: function(key, rule, params) { if (!CParamValidator.isDefined(rule.type)) { throw ''Mandatory attribute "type" has not been defined for parameter "'' + key + ''".''; } if (!CParamValidator.isDefined(params[key])) { throw ''Checked parameter "'' + key + ''" was not found in the list of input parameters.''; } var value = params[key], error_message = null; switch (rule.type) { case ''string'': if (!CParamValidator.isType(value, ''string'')) { throw ''Value "'' + key + ''" must be a string.''; } if (CParamValidator.isEmpty(value)) { error_message = ''Value "'' + key + ''" must be a non-empty string''; break; } if (CParamValidator.isDefined(rule.len) && value.length < rule.len) { error_message = ''Value "'' + key + ''" must be a string with a length > '' + rule.len; } if (CParamValidator.isDefined(rule.regex) && !CParamValidator.ifMatch(value, rule.regex)) { error_message = ''Value "'' + key + ''" must match the regular expression "'' + rule.regex + ''"''; } if (CParamValidator.isDefined(rule.url) && rule.url === true) { value = CParamValidator.checkURL(value); } break; case ''integer'': if (!CParamValidator.isInteger(value)) { error_message = ''Value "'' + key + ''" must be an integer''; break; } value = parseInt(value); break; case ''float'': if (!CParamValidator.isFloat(value)) { error_message = ''Value "'' + key + ''" must be a floating-point number''; break; } value = parseFloat(value); break; case ''boolean'': if (CParamValidator.inArray(value, [''1'', ''true'', ''yes'', ''on''])) { value = true; } else if (CParamValidator.inArray(value, [''0'', ''false'', ''no'', ''off''])) { value = false; } else { error_message = ''Value "'' + key + ''" must be a boolean-like.''; } break; case ''array'': try { value = JSON.parse(value); } catch (error) { throw ''Value "'' + key + ''" contains invalid JSON.''; } if (!CParamValidator.isType(value, ''array'')) { error_message = ''Value "'' + key + ''" must be an array.''; } if (CParamValidator.isDefined(rule.tags) && rule.tags === true) { value = value.reduce(function(acc, obj) { acc[obj.tag] = obj.value || null; return acc; }, {}); } break; case ''object'': value = JSON.parse(value); if (!CParamValidator.isType(value, ''object'')) { error_message = ''Value "'' + key + ''" must be an object.''; } break; default: throw ''Unexpected attribute type "'' + rule.type + ''" for value "'' + key + ''". Available: '' + [''integer'', ''float'', ''string'', ''boolean'', ''array'', ''object''].join('', ''); } params[key] = value; if (CParamValidator.inArray(rule.type, [''integer'', ''float'']) && error_message === null && (CParamValidator.isDefined(rule.min) || CParamValidator.isDefined(rule.max)) && !CParamValidator.withinRange(value, rule.min, rule.max)) { error_message = ''Value "'' + key + ''" must be a number '' + ((CParamValidator.isDefined(rule.min) && CParamValidator.isDefined(rule.max)) ? (rule.min + ''..'' + rule.max) : ((CParamValidator.isDefined(rule.min)) ? ''>'' + rule.min : ''<'' + rule.max)); } else if (CParamValidator.isDefined(rule.array) && !CParamValidator.inArray(value, rule.array)) { error_message = ''Value "'' + key + ''" must be in the array '' + JSON.stringify(rule.array); } else if (CParamValidator.isDefined(rule.macro) && !CParamValidator.isMacroSet(value.toString(), rule.macro)) { error_message = ''The macro '' + ((CParamValidator.isDefined(rule.macro)) ? ''{'' + rule.macro + ''} '' : '' '') + ''is not set''; } if (error_message !== null) { if (CParamValidator.isDefined(rule.default) && CParamValidator.isType(rule.default, rule.type)) { params[key] = rule.default; } else { Zabbix.log(4, ''Default value for "'' + key + ''" must be a '' + rule.type + ''. Skipped.''); throw ''Incorrect value for variable "'' + key + ''". '' + error_message; } } return this; }, validate: function(rules, params) { if (!CParamValidator.isType(params, ''object'') || CParamValidator.isType(params, ''array'')) { throw ''Incorrect parameters value. The value must be an object.''; } for (var key in rules) { CParamValidator.check(key, rules[key], params); } } } const CHttpRequest = function(logger) { this.request = new HttpRequest(); if (typeof logger !== ''object'' || logger === null) { this.logger = Zabbix; } else { this.logger = logger; } this.clearHeader = function() { this.request.clearHeader(); } this.addHeaders = function(value) { var headers = []; if (typeof value === ''object'' && value !== null) { if (!Array.isArray(value)) { Object.keys(value).forEach(function(key) { headers.push(key + '': '' + value[key]); }); } else { headers = value; } } else if (typeof value === ''string'') { value.split(''\\r\\n'').forEach(function(header) { headers.push(header); }); } for (var idx in headers) { this.request.addHeader(headers[idx]); } } this.setProxy = function(proxy) { this.request.setProxy(proxy); } this.plainRequest = function(method, url, data) { var resp = null; method = method.toLowerCase(); this.logger.log(4, ''Sending '' + method + '' request:'' + JSON.stringify(data)); if ([''get'', ''post'', ''put'', ''patch'', ''delete'', ''trace''].indexOf(method) !== -1) { resp = this.request[method](url, data); } else if ([''connect'', ''head'', ''options''].indexOf(method) !== -1) { resp = this.request[method](url); } else { throw ''Unexpected method. Method '' + method + '' is not supported.''; } this.logger.log(4, ''Response has been received: '' + resp); return resp; } this.jsonRequest = function(method, url, data) { this.addHeaders(''Content-Type: application/json''); var resp = this.plainRequest(method, url, JSON.stringify(data)); try { resp = JSON.parse(resp); } catch (error) { throw ''Failed to parse response: not well-formed JSON was received''; } return resp; } this.getStatus = function() { return this.request.getStatus(); } } var serviceLogName = ''Telegram Webhook'', Logger = new CLogger(serviceLogName), Telegram = CWebhook; function escapeMarkup(str, mode) { switch (mode) { case ''markdown'': return str.replace(/([_*\\[`])/g, ''\\\\$&''); case ''markdownv2'': return str.replace(/([_*\\[\\]()~`>#+\\-=|{}.!])/g, ''\\\\$&''); case ''html'': return str.replace(/<(\\s|[^a-z\\/])/g, ''<$1''); default: return str; } } Telegram.prototype.getMessageID = function (chat_id, message_thread_id) { const tag_key = ''__telegram_msg_id_'' + chat_id + (message_thread_id ? ''_'' + message_thread_id : ''''); if (CParamValidator.isDefined(this.params.event_tags[tag_key])) { return this.params.event_tags[tag_key]; } return null; } Telegram.prototype.onCheckParams = function () { CParamValidator.validate( { api_token: {type: ''string''}, api_chat_id: {type: ''string''}, alert_message: {type: ''string''} }, this.params ); if (CParamValidator.inArray(this.params.event_source, [''0'', ''3'', ''4''])) { CParamValidator.validate({ event_tags: {type: ''array'', macro: ''EVENT.TAGSJSON'', tags: true, default: {}} }, this.params); } this.params.url = ''https://api.telegram.org/bot''; this.data = { disable_web_page_preview: true, disable_notification: false }; const match = this.params.api_chat_id.match(/^(-?\\d+|@[a-zA-Z0-9_]+)(?::(\\d+))?$/); if (!match) { throw ''Invalid format for api_chat_id: "'' + this.params.api_chat_id + ''". Must be a numeric group ID or @GroupName, optionally followed by :message_thread_id.''; } this.data[''chat_id''] = match[1]; if (CParamValidator.isDefined(match[2])) { this.data[''message_thread_id''] = match[2]; } this.data[''text''] = ((this.params.alert_subject !== '''') ? this.params.alert_subject + ''\\n'' : '''') + this.params.alert_message; if ([''markdown'', ''html'', ''markdownv2''].indexOf(this.params.api_parse_mode.toLowerCase()) !== -1) { this.data[''parse_mode''] = this.params.api_parse_mode.toLowerCase(); this.data[''text''] = escapeMarkup(this.data[''text''], this.data[''parse_mode'']); } const reply_to_message_id = this.getMessageID(this.data[''chat_id''], this.data[''message_thread_id'']); if (reply_to_message_id !== null) { this.data[''reply_to_message_id''] = reply_to_message_id; } this.result = {tags: {}}; }; Telegram.prototype.onEvent = function (alert) { Logger.log(Logger.INFO, ''Source: '' + alert.source + ''; Event: '' + alert.event); Logger.log(Logger.INFO, ''URL: '' + this.params.url.replace(this.params.api_token, '''')); var response = this.request.jsonRequest(''POST'', this.params.url + this.params.api_token + ''/sendMessage'', this.data); if (this.request.getStatus() !== 200 || !CParamValidator.isType(response.ok, ''boolean'') || response.ok !== true) { Logger.log(Logger.INFO, ''HTTP code: '' + this.request.getStatus()); if (CParamValidator.isType(response.description, ''string'')) { throw response.description; } else { throw ''Unknown error. Check debug log for more information.''; } } if (CParamValidator.isDefined(response.result.message_id) && this.getMessageID(this.data[''chat_id''], this.data[''message_thread_id'']) === null) { this.result.tags[''__telegram_msg_id_'' + this.data[''chat_id''] + (this.data[''message_thread_id''] ? ''_'' + this.data[''message_thread_id''] : '''')] = response.result.message_id; } return this.result; }; try { var hook = new Telegram(value); hook.request = new CHttpRequest(Logger); return hook.run(); } catch (error) { Logger.log(Logger.WARN, ''notification failed: '' + error); throw ''Sending failed: '' + error; }','30s','1','0','','','This media type integrates your Zabbix installation with Telegram using the Zabbix webhook feature. Telegram configuration: 1. Register a new Telegram bot: send "/newbot" to "@BotFather" and follow the instructions. The token provided by "@BotFather" in the final step will be needed for configuring the Zabbix webhook. 2. Set up personal or group notifications: 2.1 Personal notifications: 2.1.1 Retrieve the chat ID of the user the bot should send messages to. The user should send "/getid" to "@myidbot" in the Telegram messenger. 2.1.2 The user should also send "/start" to the bot created in step 1. If you skip this step, the Telegram bot won''t be able to send messages to the user (bots cannot initiate conversations with users). 2.2 Group notifications: 2.2.1 Retrieve the group ID of the group that the bot should send messages to. Add "@myidbot" and the bot created in step 1 to your group. 2.2.2 In the group chat, send: "/getgroupid@myidbot". 2.2.3 If the bot is added to a supergroup and you want the bot to send messages to a specific topic instead of the default "General" channel, right-click any message in that topic and click "Copy Message Link". The copied link will have the following format: "https://t.me/c///", for example: "https://t.me/c/1234567890/2/1". In this example, the topic ID is "2". Note: - The group ID is a negative number, for example: "-1234567890". - The supergroup ID is a negative number prefixed with "-100", for example: "-1001234567890" - The public group or supergroup ID can also be specified in media type properties as a name prefixed by "@", for example: "@MyGroupName". 3. Depending on where you want to send notifications, copy and save the bot token, personal chat ID or group ID, and topic ID (if you want to send messages to a specific supergroup topic), as you will need these later to set up the media type in Zabbix. Zabbix configuration: 1. Set the following webhook parameters: - "api_parse_mode" - the formatting mode applied for messages (possible values: "markdown", "html", "markdownv2") - "api_token" - the token of the bot used to send messages Learn more about message formatting options in Telegram Bot API documentation: - Markdown: https://core.telegram.org/bots/api#markdown-style - HTML: https://core.telegram.org/bots/api#html-style - MarkdownV2: https://core.telegram.org/bots/api#markdownv2-style Note: Your Telegram-related actions should be separated from other notification types (e.g., SMS); otherwise, if you use Markdown or HTML in the alert subject or body, you may receive plain-text alerts with raw tags. 2. Click the "Enabled" checkbox to enable the media type and click the "Update" button to save the webhook settings. 3. Create a Zabbix user and add media: - To create a new user, go to the "Users" → "Users" section, click the "Create user" button in the top right corner. In the "User" tab, fill in all required fields (marked with red asterisks). - Make sure this user has access to all hosts for which you would like problem notifications to be sent to Telegram. - In the "Media" tab, click "Add" and select the type "Telegram" from the drop-down list. - In the "Send to" field, specify the Telegram user chat ID or group ID that you retrieved during Telegram setup. To send notifications to a specific topic within a supergroup, specify the topic ID after the semicolon delimiter in the format ":", for example: "-1001234567890:2", "@MyGroupName:2". 4. Done! You can now start using this media type in actions and create tickets. You can find the latest version of this media and additional information in the official Zabbix repository: https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/templates/media/telegram','0'), ('66','4','TOPdesk','','','','','','','','25','0','0','0','0','1','3','10s','1',E'var Media = { params: {}, name: '''', labels: [], HTTPProxy: '''', setParams: function (params) { if (typeof params !== ''object'') { return; } Media.params = params; Media.params.api += Media.params.api.endsWith(''/'') ? '''' : ''/''; }, setProxy: function (HTTPProxy) { if (typeof HTTPProxy !== ''undefined'' && HTTPProxy.trim() !== '''') { Media.HTTPProxy = HTTPProxy; } }, request: function (method, query, data) { [''api'', ''token''].forEach(function (field) { if (typeof Media.params !== ''object'' || typeof Media.params[field] === ''undefined'' || Media.params[field] === '''') { throw ''Required '' + Media.name + '' param is not set: "'' + field + ''".''; } }); var response, url = Media.params.api + query, request = new HttpRequest(); request.addHeader(''Content-Type: application/json''); request.addHeader(''Accept: application/json''); request.addHeader(''Authorization: '' + Media.params.token); request.setProxy(Media.HTTPProxy); if (typeof data !== ''undefined'') { data = JSON.stringify(data); } Zabbix.log(4, ''[ '' + Media.name + '' Webhook ] Sending request: '' + url + ((typeof data === ''string'') ? (''\\n'' + data) : '''')); switch (method) { case ''get'': response = request.get(url, data); break; case ''post'': response = request.post(url, data); break; case ''put'': response = request.put(url, data); break; default: throw ''Unsupported HTTP request method: '' + method; } Zabbix.log(4, ''[ '' + Media.name + '' Webhook ] Received response with status code '' + request.getStatus() + ''\\n'' + response); if (response !== null) { try { response = JSON.parse(response); } catch (error) { Zabbix.log(4, ''[ '' + Media.name + '' Webhook ] Failed to parse response.''); response = null; } } if (request.getStatus() < 200 || request.getStatus() >= 300) { var message = ''Request failed with status code '' + request.getStatus(); if (response !== null) { if (typeof response.errors === ''object'' && Object.keys(response.errors).length > 0) { message += '': '' + JSON.stringify(response.errors); } else if (typeof response.errorMessages === ''object'' && Object.keys(response.errorMessages).length > 0) { message += '': '' + JSON.stringify(response.errorMessages); } else if (typeof response.message === ''string'') { message += '': '' + response.message; } } throw message + '' Check debug log for more information.''; } return { status: request.getStatus(), response: response }; } }; try { var result = {tags: {}}, params = JSON.parse(value), media = {}, fields = {}, resp = {}, required_params = [ ''alert_subject'', ''alert_message'', ''event_id'', ''event_source'', ''event_value'', ''event_update_status'', ''topdesk_api'', ''topdesk_user'', ''topdesk_password'' ], severities = [ ''not_classified'', ''information'', ''warning'', ''average'', ''high'', ''disaster'', ''resolved'', ''default'' ], priority; Object.keys(params) .forEach(function (key) { if (required_params.indexOf(key) !== -1 && params[key].trim() === '''') { throw ''Parameter "'' + key + ''" cannot be empty.''; } if (key.startsWith(''topdesk_'')) { media[key.substring(8)] = params[key]; } }); // Possible values of event_source: // 0 - Trigger, 1 - Discovery, 2 - Autoregistration, 3 - Internal. if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) { throw ''Incorrect "event_source" parameter given: "'' + params.event_source + ''".\\nMust be 0-3.''; } // Check event_value for trigger-based and internal events. // Possible values: 1 for problem, 0 for recovering if (params.event_value !== ''0'' && params.event_value !== ''1'' && (params.event_source === ''0'' || params.event_source === ''3'')) { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''\\nMust be 0 or 1.''; } // Check event_update_status only for trigger-based events. // Possible values: 0 - Webhook was called because of problem/recovery event, 1 - Update operation. if (params.event_source === ''0'' && params.event_update_status !== ''0'' && params.event_update_status !== ''1'') { throw ''Incorrect "event_update_status" parameter given: '' + params.event_update_status + ''\\nMust be 0 or 1.''; } // Check event_id for a numeric value. if (isNaN(parseInt(params.event_id)) || params.event_id < 1) { throw ''Incorrect "event_id" parameter given: '' + params.event_id + ''\\nMust be a positive number.''; } if ((params.event_source === ''1'' || params.event_source === ''2'') && params.event_value === ''0'') { throw ''Recovery operations are supported only for Trigger and Internal actions.''; } if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) { params.event_nseverity = ''7''; } if (params.event_value === ''0'') { params.event_nseverity = ''6''; } priority = params[''severity_'' + severities[params.event_nseverity]]; params.zbxurl = params.zbxurl + (params.zbxurl.endsWith(''/'') ? '''' : ''/''); Media.name = ''TOPdesk''; Media.setParams(media); Media.params.token = ''Basic '' + btoa(Media.params.user + '':'' + Media.params.password); Media.setProxy(params.HTTPProxy); // Create an issue. // Numeric value of the event that triggered an action (1 for problem, 0 for recovering). // Numeric value of the problem update status. Possible values: // 0 - Webhook was called because of problem/recovery event, 1 - Update operation. if ((params.event_source == 0 && params.event_value == 1 && params.event_update_status == 0) || (params.event_source == 3 && params.event_value == 1) || params.event_source == 1 || params.event_source == 2) { Zabbix.log(4, ''[ '' + Media.name + '' Webhook ] Request of the ticket creating.''); fields.caller = {dynamicName: ''Zabbix''}; fields.briefDescription = params.alert_subject; fields.request = params.alert_message.replace(/\\n/g, ''
''); fields.priority = {name: priority}; fields.processingStatus = {name: Media.params.status}; fields.externalNumber = params.event_id; fields.request += ''
'' + params.zbxurl; if (params.event_source === ''0'') { fields.request += ''tr_events.php?triggerid='' + params.trigger_id + ''&eventid='' + params.event_id; } resp = Media.request(''post'', ''tas/api/incidents'', fields); if (typeof resp.response !== ''object'' || typeof resp.response.id === ''undefined'') { throw ''Cannot create '' + Media.name + '' issue. Check debug log for more information.''; } if (params.event_source == 0 && params.event_value == 1 && params.event_update_status == 0) { result.tags.__zbx_tpd_issuekey = resp.response.number; result.tags.__zbx_tpd_issuelink = Media.params.api + ''tas/secure/incident?action=show&unid='' + resp.response.id; } } // Update a created issue. else { if (params.event_source == 3 && params.event_value == 0) { throw ''Internal event recovery actions are not supported.''; } Zabbix.log(4, ''[ '' + Media.name + '' Webhook ] Request of the ticket updating.''); fields.action = params.alert_message.replace(/\\n/g, ''
''); resp = Media.request(''put'', ''tas/api/incidents/number/'' + Media.params.issue_key, fields); if (typeof resp.response !== ''object'' || typeof resp.response.id === ''undefined'' || resp.response.number !== Media.params.issue_key) { throw ''Cannot update '' + Media.name + '' issue. Check debug log for more information.''; } } return JSON.stringify(result); } catch (error) { Zabbix.log(3, ''[ '' + Media.name + '' Webhook ] ERROR: '' + error); throw ''Sending failed: '' + error; }','30s','1','1','{EVENT.TAGS.__zbx_tpd_issuelink}','TOPdesk: {EVENT.TAGS.__zbx_tpd_issuekey}','Please refer to https://developers.topdesk.com/documentation/index.html and https://www.zabbix.com/documentation/7.0/manual/config/notifications/media/webhook#example_scripts. Set global macro {$ZABBIX.URL} with your Zabbix server URL. Add a dedicated user with the media type "TOPdesk". Change the values of the variables topdesk_api (URL), topdesk_password, topdesk_user. The topdesk_status is the default status for creating a new TOPdesk ticket.','0'), ('67','4','VictorOps','','','','','','','','25','0','0','0','0','1','3','10s','1',E'var VictorOps = { params: {}, setParams: function (params) { if (typeof params !== ''object'') { return; } VictorOps.params = params; if (VictorOps.params.endpoint) { if (!VictorOps.params.endpoint.endsWith(''/'')) { VictorOps.params.endpoint += ''/''; } if (typeof VictorOps.params.routing_key !== ''undefined'' && VictorOps.params.routing_key !== ''{ALERT.SENDTO}'' && VictorOps.params.routing_key !== ''Default'') { VictorOps.params.endpoint += VictorOps.params.routing_key; } } }, setProxy: function (HTTPProxy) { VictorOps.HTTPProxy = HTTPProxy; }, addFields: function (fields) { var data = {}; if (typeof fields === ''object'') { Object.keys(fields) .forEach(function(field) { if (fields[field] === '''') { Zabbix.log(4, ''[ VictorOps Webhook ] Field "'' + field + ''" can\\''t be empty. The field ignored.''); } else { try { var parts = field.split('':''), prefix = parts[0].split(''_''); if (typeof prefix[1] === ''undefined'' || (prefix[1] === ''p'' && params.event_value === ''1'' && (params.event_update_status === ''0'' || params.event_update_status === ''{EVENT.UPDATE.STATUS}'')) || (prefix[1] === ''r'' && params.event_value === ''0'' && (params.event_update_status === ''0'' || params.event_update_status === ''{EVENT.UPDATE.STATUS}'')) || (prefix[1] === ''u'' && params.event_update_status === ''1'')) { data[field.substring(field.indexOf('':'') + 1)] = fields[field]; } } catch (error) { Zabbix.log(4, ''[ VictorOps Webhook ] Can\\''t parse field "'' + field + ''". The field ignored.''); } } }); } return data; }, request: function (data) { if (typeof VictorOps.params !== ''object'' || typeof VictorOps.params.endpoint === ''undefined'' || VictorOps.params.endpoint === '''' ) { throw ''Required parameter is not set: "vops_endpoint".''; } var response, url = VictorOps.params.endpoint, request = new HttpRequest(); request.addHeader(''Content-Type: application/json''); if (typeof VictorOps.HTTPProxy !== ''undefined'' && VictorOps.HTTPProxy !== '''') { request.setProxy(VictorOps.HTTPProxy); } if (typeof data !== ''undefined'') { data = JSON.stringify(data); } Zabbix.log(4, ''[ VictorOps Webhook ] Sending request: '' + url + ((typeof data === ''string'') ? (''\\n'' + data) : '''')); response = request.post(url, data); Zabbix.log(4, ''[ VictorOps Webhook ] Received response with status code '' + request.getStatus() + ''\\n'' + response); if (response !== null) { try { response = JSON.parse(response); } catch (error) { Zabbix.log(4, ''[ VictorOps Webhook ] Failed to parse response received from VictorOps''); response = null; } } if (request.getStatus() < 200 || request.getStatus() >= 300) { var message = ''Request failed with status code '' + request.getStatus(); if (response !== null && typeof response.messages !== ''undefined'') { message += '': '' + JSON.stringify(response.messages); } throw message + ''. Check debug log for more information.''; } return response; } }; try { var params = JSON.parse(value), fields = {}, vops = {}, required_params = [''event_source'', ''event_value'', ''priority_update''], severities = [ {name: ''not_classified'', color: ''#97AAB3''}, {name: ''information'', color: ''#7499FF''}, {name: ''warning'', color: ''#FFC859''}, {name: ''average'', color: ''#FFA059''}, {name: ''high'', color: ''#E97659''}, {name: ''disaster'', color: ''#E45959''}, {name: ''resolved'', color: ''#009900''}, {name: ''default'', color: ''#000000''} ]; Object.keys(params) .forEach(function (key) { if (key.startsWith(''vops_'')) { vops[key.substring(5)] = params[key]; } else if (key.startsWith(''field'')) { fields[key.substring(5)] = params[key]; } else if (required_params.indexOf(key) !== -1 && params[key] === '''') { throw ''Parameter "'' + key + ''" can\\''t be empty.''; } }); if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) { throw ''Incorrect "event_source" parameter given: '' + params.event_source + ''\\nMust be 0-3.''; } // Check {EVENT.VALUE} for trigger-based and internal events. if (params.event_value !== ''0'' && params.event_value !== ''1'' && (params.event_source === ''0'' || params.event_source === ''3'')) { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''\\nMust be 0 or 1.''; } // Check {EVENT.UPDATE.STATUS} only for trigger-based events. if (params.event_update_status !== ''0'' && params.event_update_status !== ''1'' && params.event_source === ''0'') { throw ''Incorrect "event_update_status" parameter given: '' + params.event_update_status + ''\\nMust be 0 or 1.''; } if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) { params.event_nseverity = ''7''; } if (params.event_value === ''0'') { params.event_nseverity = ''6''; } if (params.event_update_status === ''1'') { fields['':message_type''] = params.priority_update; } else { fields['':message_type''] = params[''priority_'' + severities[params.event_nseverity].name] || ''INFO''; } if (params.event_info && params.event_source === ''0'') { fields['':event_info''] = params.event_info; } VictorOps.setParams(vops); VictorOps.setProxy(params.HTTPProxy); VictorOps.request(VictorOps.addFields(fields)); return ''OK''; } catch (error) { Zabbix.log(3, ''[ VictorOps Webhook ] ERROR: '' + error); throw ''Sending failed: '' + error; }','30s','0','0','','','','0'), ('68','4','Zammad','','','','','','','','25','0','0','0','0','1','3','10s','1',E'const CLogger = function(serviceName) { this.serviceName = serviceName; this.INFO = 4 this.WARN = 3 this.ERROR = 2 this.log = function(level, msg) { Zabbix.log(level, ''['' + this.serviceName + ''] '' + msg); } } const CWebhook = function(value) { try { params = JSON.parse(value); if ([''0'', ''1'', ''2'', ''3'', ''4''].indexOf(params.event_source) === -1) { throw ''Incorrect "event_source" parameter given: '' + params.event_source + ''.\\nMust be 0-4.''; } if ([''0'', ''3'', ''4''].indexOf(params.event_source) !== -1 && [''0'', ''1''].indexOf(params.event_value) === -1) { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''.\\nMust be 0 or 1.''; } if ([''0'', ''3'', ''4''].indexOf(params.event_source) !== -1) { if (params.event_source === ''1'' && [''0'', ''1'', ''2'', ''3''].indexOf(params.event_value) === -1) { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''.\\nMust be 0-3.''; } if (params.event_source === ''0'' && [''0'', ''1''].indexOf(params.event_update_status) === -1) { throw ''Incorrect "event_update_status" parameter given: '' + params.event_update_status + ''.\\nMust be 0 or 1.''; } if (params.event_source === ''4'') { if ([''0'', ''1'', ''2'', ''3'', ''4'', ''5''].indexOf(params.event_update_nseverity) !== -1 && params.event_update_nseverity != params.event_nseverity) { params.event_nseverity = params.event_update_nseverity; params.event_severity = params.event_update_severity; params.event_update_status = ''1''; } } } this.runCallback = function(name, params) { if (typeof this[name] === ''function'') { return this[name].apply(this, [params]); } } this.handleEvent = function(source, event) { const alert = { source: source, event: event }; return [ this.runCallback(''on'' + source + event, alert), this.runCallback(''on'' + event, alert), this.runCallback(''onEvent'', alert) ]; } this.handleEventless = function(source) { const alert = { source: source, event: null }; return [ this.runCallback(''on'' + source, alert), this.runCallback(''onEvent'', alert) ]; } this.run = function() { var results = []; if (typeof this.httpProxy === ''string'' && this.httpProxy.trim() !== '''') { this.request.setProxy(this.httpProxy); } const types = { ''0'': ''Trigger'', ''1'': ''Discovery'', ''2'': ''Autoreg'', ''3'': ''Internal'', ''4'': ''Service'' }; if ([''0'', ''3'', ''4''].indexOf(this.params.event_source) !== -1) { var event = (this.params.event_update_status === ''1'') ? ''Update'' : ((this.params.event_value === ''1'') ? ''Problem'' : ''Resolve''); results = this.handleEvent(types[this.params.event_source], event); } else if (typeof types[this.params.event_source] !== ''undefined'') { results = this.handleEventless(types[this.params.event_source]); } else { throw ''Unexpected "event_source": '' + this.params.event_source; } for (idx in results) { if (typeof results[idx] !== ''undefined'') { return JSON.stringify(results[idx]); } } } this.httpProxy = params.http_proxy; this.params = params; this.runCallback(''onCheckParams'', {}); } catch (error) { throw ''Webhook processing failed: '' + error; } } const CParamValidator = { isType: function(value, type) { if (type === ''array'') { return Array.isArray(value); } if (type === ''integer'') { return CParamValidator.isInteger(value); } if (type === ''float'') { return CParamValidator.isFloat(value); } return (typeof value === type); }, isInteger: function(value) { if (!CParamValidator.ifMatch(value, /^-?\\d+$/)) { return false; } return !isNaN(parseInt(value)); }, isFloat: function(value) { if (!CParamValidator.ifMatch(value, /^-?\\d+\\.\\d+$/)) { return false; } return !isNaN(parseFloat(value)); }, isDefined: function(value) { return !CParamValidator.isType(value, ''undefined''); }, isEmpty: function(value) { if (!CParamValidator.isType(value, ''string'')) { throw ''Value "'' + value + ''" must be a string to be checked for emptiness.''; } return (value.trim() === ''''); }, isMacroSet: function(value, macro) { if (CParamValidator.isDefined(macro)) { return !(CParamValidator.ifMatch(value, ''^\\{'' + macro + ''\\}$'')) } return !(CParamValidator.ifMatch(value, ''^\\{[$#]{0,1}[A-Z_\\.]+[\\:]{0,1}["]{0,1}.*["]{0,1}\\}$'') || value === ''*UNKNOWN*'') }, withinRange: function(value, min, max) { if (!CParamValidator.isType(value, ''number'')) { throw ''Value "'' + value + ''" must be a number to be checked for range.''; } if (value < ((CParamValidator.isDefined(min)) ? min : value) || value > ((CParamValidator.isDefined(max)) ? max : value)) { return false; } return true; }, inArray: function(value, array) { if (!CParamValidator.isType(array, ''array'')) { throw ''The array must be an array to check the value for existing in it.''; } return (array.indexOf((typeof value === ''string'') ? value.toLowerCase() : value) !== -1); }, ifMatch: function(value, regex) { return (new RegExp(regex)).test(value); }, match: function(value, regex) { if (!CParamValidator.isType(value, ''string'')) { throw ''Value "'' + value + ''" must be a string to be matched with the regular expression.''; } return value.match(new RegExp(regex)); }, checkURL: function(value) { if (CParamValidator.isEmpty(value)) { throw ''URL value "'' + value + ''" must be a non-empty string.''; } if (!CParamValidator.ifMatch(value, ''^(http|https):\\/\\/.+'')) { throw ''URL value "'' + value + ''" must contain a schema.''; } return value.endsWith(''/'') ? value.slice(0, -1) : value; }, check: function(key, rule, params) { if (!CParamValidator.isDefined(rule.type)) { throw ''Mandatory attribute "type" has not been defined for parameter "'' + key + ''".''; } if (!CParamValidator.isDefined(params[key])) { throw ''Checked parameter "'' + key + ''" was not found in the list of input parameters.''; } var value = params[key], error_message = null; switch (rule.type) { case ''string'': if (!CParamValidator.isType(value, ''string'')) { throw ''Value "'' + key + ''" must be a string.''; } if (CParamValidator.isEmpty(value)) { error_message = ''Value "'' + key + ''" must be a non-empty string''; break; } if (CParamValidator.isDefined(rule.len) && value.length < rule.len) { error_message = ''Value "'' + key + ''" must be a string with a length > '' + rule.len; } if (CParamValidator.isDefined(rule.regex) && !CParamValidator.ifMatch(value, rule.regex)) { error_message = ''Value "'' + key + ''" must match the regular expression "'' + rule.regex + ''"''; } if (CParamValidator.isDefined(rule.url) && rule.url === true) { value = CParamValidator.checkURL(value); } break; case ''integer'': if (!CParamValidator.isInteger(value)) { error_message = ''Value "'' + key + ''" must be an integer''; break; } value = parseInt(value); break; case ''float'': if (!CParamValidator.isFloat(value)) { error_message = ''Value "'' + key + ''" must be a floating-point number''; break; } value = parseFloat(value); break; case ''boolean'': if (CParamValidator.inArray(value, [''1'', ''true'', ''yes'', ''on''])) { value = true; } else if (CParamValidator.inArray(value, [''0'', ''false'', ''no'', ''off''])) { value = false; } else { error_message = ''Value "'' + key + ''" must be a boolean-like.''; } break; case ''array'': try { value = JSON.parse(value); } catch (error) { throw ''Value "'' + key + ''" contains invalid JSON.''; } if (!CParamValidator.isType(value, ''array'')) { error_message = ''Value "'' + key + ''" must be an array.''; } if (CParamValidator.isDefined(rule.tags) && rule.tags === true) { value = value.reduce(function(acc, obj) { acc[obj.tag] = obj.value || null; return acc; }, {}); } break; case ''object'': value = JSON.parse(value); if (!CParamValidator.isType(value, ''object'')) { error_message = ''Value "'' + key + ''" must be an object.''; } break; default: throw ''Unexpected attribute type "'' + rule.type + ''" for value "'' + key + ''". Available: '' + [''integer'', ''float'', ''string'', ''boolean'', ''array'', ''object''].join('', ''); } params[key] = value; if (CParamValidator.inArray(rule.type, [''integer'', ''float'']) && error_message === null && (CParamValidator.isDefined(rule.min) || CParamValidator.isDefined(rule.max)) && !CParamValidator.withinRange(value, rule.min, rule.max)) { error_message = ''Value "'' + key + ''" must be a number '' + ((CParamValidator.isDefined(rule.min) && CParamValidator.isDefined(rule.max)) ? (rule.min + ''..'' + rule.max) : ((CParamValidator.isDefined(rule.min)) ? ''>'' + rule.min : ''<'' + rule.max)); } else if (CParamValidator.isDefined(rule.array) && !CParamValidator.inArray(value, rule.array)) { error_message = ''Value "'' + key + ''" must be in the array '' + JSON.stringify(rule.array); } else if (CParamValidator.isDefined(rule.macro) && !CParamValidator.isMacroSet(value.toString(), rule.macro)) { error_message = ''The macro '' + ((CParamValidator.isDefined(rule.macro)) ? ''{'' + rule.macro + ''} '' : '' '') + ''is not set''; } if (error_message !== null) { if (CParamValidator.isDefined(rule.default) && CParamValidator.isType(rule.default, rule.type)) { params[key] = rule.default; } else { Zabbix.log(4, ''Default value for "'' + key + ''" must be a '' + rule.type + ''. Skipped.''); throw ''Incorrect value for variable "'' + key + ''". '' + error_message; } } return this; }, validate: function(rules, params) { if (!CParamValidator.isType(params, ''object'') || CParamValidator.isType(params, ''array'')) { throw ''Incorrect parameters value. The value must be an object.''; } for (var key in rules) { CParamValidator.check(key, rules[key], params); } } } const CHttpRequest = function(logger) { this.request = new HttpRequest(); if (typeof logger !== ''object'' || logger === null) { this.logger = Zabbix; } else { this.logger = logger; } this.clearHeader = function() { this.request.clearHeader(); } this.addHeaders = function(value) { var headers = []; if (typeof value === ''object'' && value !== null) { if (!Array.isArray(value)) { Object.keys(value).forEach(function(key) { headers.push(key + '': '' + value[key]); }); } else { headers = value; } } else if (typeof value === ''string'') { value.split(''\\r\\n'').forEach(function(header) { headers.push(header); }); } for (var idx in headers) { this.request.addHeader(headers[idx]); } } this.setProxy = function(proxy) { this.request.setProxy(proxy); } this.plainRequest = function(method, url, data) { var resp = null; method = method.toLowerCase(); this.logger.log(4, ''Sending '' + method + '' request:'' + JSON.stringify(data)); if ([''get'', ''post'', ''put'', ''patch'', ''delete'', ''trace''].indexOf(method) !== -1) { resp = this.request[method](url, data); } else if ([''connect'', ''head'', ''options''].indexOf(method) !== -1) { resp = this.request[method](url); } else { throw ''Unexpected method. Method '' + method + '' is not supported.''; } this.logger.log(4, ''Response has been received: '' + resp); return resp; } this.jsonRequest = function(method, url, data) { this.addHeaders(''Content-Type: application/json''); var resp = this.plainRequest(method, url, JSON.stringify(data)); try { resp = JSON.parse(resp); } catch (error) { throw ''Failed to parse response: not well-formed JSON was received''; } return resp; } this.getStatus = function() { return this.request.getStatus(); } } const CWebhookHelper = { createProblemURL: function(event_source, zabbix_url, trigger_id, event_id) { if (event_source === ''0'') { return zabbix_url + ''/tr_events.php?triggerid='' + trigger_id + ''&eventid='' + event_id; } else if (event_source === ''4'') { return zabbix_url + ''/zabbix.php?action=service.list''; } return zabbix_url; }, }; var ZABBIX_SEVERITY_MAP = ["not_classified", "information", "warning", "average", "high", "disaster"], serviceLogName = ''Zammad Webhook'', Logger = new CLogger(serviceLogName), Zammad = CWebhook; Zammad.prototype.onCheckParams = function () { CParamValidator.validate({ alert_message: {type: ''string''}, alert_subject: {type: ''string''}, zammad_url: {type: ''string'', url: true}, zammad_customer: {type: ''string''}, zammad_access_token: {type: ''string''}, zammad_group: {type: ''string''}, zammad_enable_tags: {type: ''boolean'', default: false}, event_nseverity: {type: ''integer'', default: -1}, zabbix_url: {type: ''string'', url: true} }, this.params); if (CParamValidator.inArray(this.params.event_source, [''0'', ''3'', ''4''])) { CParamValidator.validate({ event_tags: {type: ''array'', macro: ''EVENT.TAGSJSON'', tags: true, default: {}} }, this.params); } var priority; if (this.params.event_nseverity >= 0 && this.params.event_nseverity < ZABBIX_SEVERITY_MAP.length) { priority = this.params[''severity_'' + ZABBIX_SEVERITY_MAP[this.params.event_nseverity]]; } this.priority = (CParamValidator.isDefined(priority)) ? priority.trim() : null; this.result = {tags: {}}; }; Zammad.prototype.onProblem = function (alert) { if (CParamValidator.isDefined(this.params.event_tags[''__zbx_zammad_ticket_id''])) { return this.onUpdate(alert); } Logger.log(Logger.INFO, ''Source: '' + alert.source + ''; Event: '' + alert.event); this.request.addHeaders(''Authorization: Token token='' + this.params.zammad_access_token); var payload_data = { title: this.params.alert_subject, group: this.params.zammad_group, article: { subject: this.params.alert_subject, body: this.params.alert_message + ''\\n'' + CWebhookHelper.createProblemURL(this.params.event_source, this.params.zabbix_url, this.params.trigger_id, this.params.event_id), type: ''note'', internal: false }, customer: this.params.zammad_customer }; if (this.priority) { payload_data.priority_id = this.priority; } const response = this.request.jsonRequest(''POST'', this.params.zammad_url + ''/api/v1/tickets'', payload_data); if (this.request.getStatus() != 201 || !CParamValidator.isDefined(response.id)) { var message = ''Cannot create Zammad ticket. Request failed with status code '' + this.request.getStatus(); if (CParamValidator.isDefined(response.error) && Object.keys(response.error).length > 0) { message += '': '' + response.error; } throw message + '' Check debug log for more information.''; } this.result.tags = { __zbx_zammad_ticket_id: response.id, __zbx_zammad_ticketlink: this.params.zammad_url + ''/#ticket/zoom/'' + response.id }; if (this.params.zammad_enable_tags && Object.keys(this.params.event_tags).length > 0 && CParamValidator.inArray(this.params.event_source, [''0'', ''3'', ''4''])) { this.request.clearHeader(); this.request.addHeaders({ "Content-Type": "application/json", "Authorization": "Token token=" + this.params.zammad_access_token }); payload_data = { item: '''', object: ''Ticket'', o_id: response.id }; try { for (var tag in this.params.event_tags) { payload_data.item = tag; if (this.params.event_tags[tag]) { payload_data.item += ": " + this.params.event_tags[tag]; } this.request.plainRequest(''POST'', this.params.zammad_url + ''/api/v1/tags/add'', JSON.stringify(payload_data)); if (this.request.getStatus() != 201) { Logger.log(Logger.INFO, ''Failed to set tag: '' + tag); } } } catch (error) { Logger.log(Logger.INFO, ''Failed to add ticket tags: '' + error); } } return this.result; } Zammad.prototype.onUpdate = function (alert) { Logger.log(Logger.INFO, ''Source: '' + alert.source + ''; Event: '' + alert.event); if (!CParamValidator.isDefined(this.params.event_tags[''__zbx_zammad_ticket_id''])) { throw "Failed to update the existing ticket: no ticket ID was received." } this.request.addHeaders(''Authorization: Token token='' + this.params.zammad_access_token); const payload_data = { ticket_id: this.params.event_tags[''__zbx_zammad_ticket_id''], subject: this.params.alert_subject, body: this.params.alert_message, type: ''note'', internal: false }; const response = this.request.jsonRequest(''POST'', this.params.zammad_url + ''/api/v1/ticket_articles'', payload_data); if (this.request.getStatus() != 201 || !CParamValidator.isDefined(response.id)) { var message = ''Cannot update Zammad ticket. Request failed with status code '' + this.request.getStatus(); if (CParamValidator.isDefined(response.error) && Object.keys(response.error).length > 0) { message += '': '' + response.error; } throw message + '' Check debug log for more information.''; } return this.result; } Zammad.prototype.onResolve = function (alert) { return this.onUpdate(alert); } Zammad.prototype.onDiscovery = function (alert) { return this.onProblem(alert); } Zammad.prototype.onAutoreg = function (alert) { return this.onProblem(alert); } try { var hook = new Zammad(value); hook.request = new CHttpRequest(Logger); return hook.run(); } catch (error) { Logger.log(Logger.WARN, ''notification failed: '' + error); throw ''Sending failed: '' + error; }','30s','1','1','{EVENT.TAGS.__zbx_zammad_ticketlink}','Zammad: Ticket #{EVENT.TAGS.__zbx_zammad_ticket_id}','This media type integrates your Zabbix installation with your Zammad installation using the Zabbix webhook feature. Zammad configuration: 1. Check that API Token Access is enabled in "Settings" → "System" → "API". 2. Open the profile settings of the customer user and create a new Personal User Token. 3. Set the "ticket.agent" permission for the token and press Create. 4. Copy and save the created token somewhere, as it will be shown only once for security reasons. Zabbix configuration: 1. Before you can start using Zammad webhook, set up the global macro "{$ZABBIX.URL}": - In the Zabbix web interface, go to "Administration" → "Macros" section in the dropdown menu in the top left corner. - Set up the global macro "{$ZABBIX.URL}" which will contain the URL to the Zabbix frontend. The URL should be either an IP address, a fully qualified domain name, or localhost. - Specifying a protocol is mandatory, whereas the port is optional. Depending on the web server configuration you might also need to append "/zabbix" to the end of URL. Good examples: - http://zabbix.com - https://zabbix.lan/zabbix - http://server.zabbix.lan/ - http://localhost - http://127.0.0.1:8080 - Bad examples: - zabbix.com - http://zabbix/ 2. Set the following webhook parameters: - zammad_access_token - the access token that you created during Zammad configuration - zammad_url - the frontend URL of your Zammad installation - zammad_customer - the Zammad user email - zammad_enable_tags - if you want to add the Zabbix event tags to the Zammad tickets that are created, you can set it to one of the following values: "1", "true", "yes", "on" (note, that if the tag support is enabled, each tag is sent via separate HTTP request and created tags will also remain in the Zammad when tickets are closed/deleted) - zammad_group - if needed, you can change the Zammad user group 3. If you want to prioritize issues according to the severity values in Zabbix, you can define mapping parameters (create them as additional webhook parameters): - severity_ - the Zammad priority ID ( in the parameter name can be one of the following values: "not_classified", "information", "warning", "average", "high", "disaster") 4. Create a Zabbix user and add media: - If you want to create a new user, go to the "Users" → "Users" section, click the "Create user" button in the top right corner. In the "User" tab, fill in all required fields (marked with red asterisks). - In the "Media" tab, add a new media and select "Zammad" type from the drop-down list. Add any value to the "Send to" field: it is required to be filled, but it is not used. - Make sure this user has access to all hosts for which you would like problem notifications to be sent to Zammad. 5. Great! You can now start using this media type in actions and create tickets! You can find the latest version of this media and additional information in the official Zabbix repository: https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/templates/media/zammad','0'), ('69','4','Zendesk','','','','','','','','25','0','0','0','0','1','3','10s','1',E'var Zendesk = { params: {}, setParams: function (params) { if (typeof params !== ''object'') { return; } Zendesk.params = params; if (typeof Zendesk.params.url === ''string'') { if (!Zendesk.params.url.endsWith(''/'')) { Zendesk.params.url += ''/''; } Zendesk.params.url += ''api/v2/''; } }, addCustomFields: function (data, fields) { if (typeof fields === ''object'' && Object.keys(fields).length) { var schema = Zendesk.getSchema(), arr = [], i, n; if (schema) { Object.keys(fields) .forEach(function(field) { for (i = 0, n = schema.ticket_fields.length; i < n; i++) { if (schema.ticket_fields[i].id == field && [''text'', ''integer'', ''date''].indexOf(schema.ticket_fields[i].type) !== -1){ switch (schema.ticket_fields[i].type) { case ''integer'': fields[field] = parseInt(fields[field]); break; case ''date'': if (fields[field].match(/^\\d{4}[.-]\\d{2}[.-]\\d{2}$/) !== null) { fields[field] = fields[field].replace(/\\./g, ''-''); } else { fields[field] = ''''; } break; } arr.push({id: field, value: fields[field]}); break; } } }); if (arr.length) { data.ticket[''custom_fields''] = arr; } } else { Zabbix.log(4, ''[Zendesk Webhook] Failed to retrieve field schema.''); } } return data; }, request: function (method, query, data) { [''url'', ''token'', ''type''].forEach(function (field) { if (typeof Zendesk.params !== ''object'' || typeof Zendesk.params[field] === ''undefined'') { throw ''Required Zendesk param is not set: '' + field + ''\\n'' + Zendesk.params[field]; } }); var response, url = Zendesk.params.url + query, request = new HttpRequest(); if (typeof Zendesk.HTTPProxy === ''string'' && Zendesk.HTTPProxy.trim() !== '''') { request.setProxy(Zendesk.HTTPProxy); } request.addHeader(''Content-Type: application/json''); request.addHeader(''Authorization: Basic '' + btoa(Zendesk.params.token)); if (typeof data !== ''undefined'') { data = JSON.stringify(data); } Zabbix.log(4, ''[Zendesk Webhook] Sending request: '' + url + ((typeof data === ''string'') ? ('' '' + data) : '''')); switch (method) { case ''get'': response = request.get(url, data); break; case ''post'': response = request.post(url, data); break; case ''put'': response = request.put(url, data); break; default: throw ''Unsupported HTTP request method: '' + method; } Zabbix.log(4, ''[Zendesk Webhook] Received response with status code '' + request.getStatus() + ''. '' + response); if (response !== null) { try { response = JSON.parse(response); } catch (error) { Zabbix.log(4, ''[Zendesk Webhook] Failed to parse response received from Zendesk.''); } } if (request.getStatus() < 200 || request.getStatus() >= 300) { var message = ''Request failed with status code '' + request.getStatus(); if (response !== null && typeof response.error !== ''undefined'' && Object.keys(response.error).length > 0) { message += '': '' + JSON.stringify(response.error); } else if (response !== null && typeof response.description !== ''undefined'' && Object.keys(response.description).length > 0) { message += '': '' + JSON.stringify(response.description); } else { message += ''. '' + response; } throw message + ''. Check debug log for more information.''; } return { status: request.getStatus(), response: response }; }, getSchema: function() { var result = Zendesk.request(''get'', ''ticket_fields.json''); return result.response; }, createIssue: function(data, fields) { var result = Zendesk.request(''post'', ''tickets.json'', Zendesk.addCustomFields(data, fields)); if (typeof result.response !== ''object'' || typeof result.response.ticket.id === ''undefined'' || result.status != 201) { throw ''Cannot create Zendesk issue. Check debug log for more information.''; } return result.response.ticket.id; }, updateIssue: function(data, fields) { Zendesk.request(''put'', ''tickets/'' + Zendesk.params.issue_key + ''.json'', Zendesk.addCustomFields(data, fields)); } }; try { var params = JSON.parse(value), fields = {}, zendesk = {}, update = {}, data = {}, result = {tags: {}}, required_params = [ ''alert_subject'', ''alert_message'', ''event_id'', ''event_source'', ''event_value'', ''event_update_status'' ], severities = [ {name: ''not_classified'', color: ''#97AAB3''}, {name: ''information'', color: ''#7499FF''}, {name: ''warning'', color: ''#FFC859''}, {name: ''average'', color: ''#FFA059''}, {name: ''high'', color: ''#E97659''}, {name: ''disaster'', color: ''#E45959''}, {name: ''resolved'', color: ''#009900''}, {name: ''default'', color: ''#000000''} ], priority; Object.keys(params) .forEach(function (key) { if (key.startsWith(''zendesk_'')) { zendesk[key.substring(8)] = params[key]; } else if (key.startsWith(''customfield_'')) { fields[key.substring(12)] = params[key]; } else if (key.startsWith(''event_update_'')) { update[key.substring(13)] = params[key]; } else if (required_params.indexOf(key) !== -1 && params[key].trim() === '''') { throw ''Parameter '' + key + '' cannot be empty.''; } }); // Possible values: question, incident, problems, task if ([''question'', ''incident'', ''problem'', ''task''].indexOf(params.zendesk_type) === -1) { throw ''Incorrect "zendesk_type" parameter given: '' + params.zendesk_type + ''\\nMust be one of question, incident, problem, task.''; } // Possible values: 0 - Trigger, 1 - Discovery, 2 - Autoregistration, 3 - Internal. if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) { throw ''Incorrect "event_source" parameter given: '' + params.event_source + ''\\nMust be 0-3.''; } // Check {EVENT.VALUE} for trigger-based and internal events. // Possible values: 1 for problem, 0 for recovering if (params.event_value !== ''0'' && params.event_value !== ''1'' && (params.event_source === ''0'' || params.event_source === ''3'')) { throw ''Incorrect "event_value" parameter given: '' + params.event_value + ''\\nMust be 0 or 1.''; } // Check {EVENT.UPDATE.STATUS} only for trigger-based events. // Possible values: 0 - Webhook was called because of problem/recovery event, 1 - Update operation. if (params.event_source === ''0'' && params.event_update_status !== ''0'' && params.event_update_status !== ''1'') { throw ''Incorrect "event_update_status" parameter given: '' + params.event_update_status + ''\\nMust be 0 or 1.''; } if (params.event_source !== ''0'' && params.event_value === ''0'') { throw ''Recovery operations are supported only for trigger-based actions.''; } // Zendesk_issue_key must be a positive integer if an update action is being performed. if (params.event_source === ''0'' && ((params.event_value === ''1'' && params.event_update_status === ''1'') || (params.event_value === ''0'' && (params.event_update_status === ''0'' || params.event_update_status === ''1''))) && (isNaN(parseInt(params.zendesk_issue_key)) || parseInt(params.zendesk_issue_key) < 1 )) { throw ''Incorrect "zendesk_issue_key" parameter given: '' + params.zendesk_issue_key + ''\\nMust be positive integer.''; } if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) { params.event_nseverity = ''7''; } if (params.event_value === ''0'') { params.event_nseverity = ''6''; } priority = params[''severity_'' + severities[params.event_nseverity].name] || severities[7].name; Zendesk.setParams(zendesk); Zendesk.HTTPProxy = params.HTTPProxy; // Create issue for non trigger-based events. if (params.event_source !== ''0'' && params.event_value !== ''0'') { data = { ticket: { external_id: params.event_id, type: Zendesk.params.type, status: ''new'', subject: params.alert_subject, comment: { body: params.alert_message, public: ''false'' }, priority: priority, tags: params.event_tags } }; Zendesk.createIssue(data, fields); } // Create issue for trigger-based events. else if (params.event_value === ''1'' && update.status === ''0'') { data = { ticket: { external_id: params.event_id, type: Zendesk.params.type, status: ''new'', subject: params.alert_subject, comment: { body: params.zbxurl + (params.zbxurl.endsWith(''/'') ? '''' : ''/'') + ''tr_events.php?triggerid='' + params.trigger_id + ''&eventid='' + params.event_id + ''\\n'' + params.alert_message, public: ''false'' }, priority: priority, tags: params.event_tags } }; var key = Zendesk.createIssue(data, fields); result.tags.__zbx_zdk_issuekey = key; result.tags.__zbx_zdk_issuelink = params.zendesk_url + (params.zendesk_url.endsWith(''/'') ? '''' : ''/'') + ''agent/tickets/'' + key; } // Update created issue for trigger-based event. else { data = { ticket: { type: Zendesk.params.type, subject: params.alert_subject, comment: { body: params.alert_message, public: ''false'' } } }; Zendesk.updateIssue(data, fields); } return JSON.stringify(result); } catch (error) { Zabbix.log(3, ''[Zendesk Webhook] ERROR: '' + error); throw ''Sending failed: '' + error; }','30s','1','1','{EVENT.TAGS.__zbx_zdk_issuelink}','Zendesk: {EVENT.TAGS.__zbx_zdk_issuekey}','','0'); INSERT INTO media_type_param (mediatype_paramid,mediatypeid,name,value,sortorder) VALUES ('1','38','endpoint','','0'), ('2','38','flash','false','0'), ('3','38','password','','0'), ('4','38','ring','false','0'), ('5','38','send_to','{ALERT.SENDTO}','0'), ('6','38','telauto','true','0'), ('7','38','text','{ALERT.MESSAGE}','0'), ('8','38','username','','0'), ('9','39','alert_message','{ALERT.MESSAGE}','0'), ('10','39','alert_subject','{ALERT.SUBJECT}','0'), ('11','39','discord_endpoint','{ALERT.SENDTO}','0'), ('12','39','event_id','{EVENT.ID}','0'), ('13','39','event_nseverity','{EVENT.NSEVERITY}','0'), ('14','39','event_severity','{EVENT.SEVERITY}','0'), ('15','39','event_source','{EVENT.SOURCE}','0'), ('16','39','event_update_nseverity','{EVENT.UPDATE.NSEVERITY}','0'), ('17','39','event_update_severity','{EVENT.UPDATE.SEVERITY}','0'), ('18','39','event_update_status','{EVENT.UPDATE.STATUS}','0'), ('19','39','event_value','{EVENT.VALUE}','0'), ('20','39','trigger_id','{TRIGGER.ID}','0'), ('21','39','user_agent','ZabbixServer (zabbix.com, 7.0)','0'), ('22','39','zabbix_url','{$ZABBIX.URL}','0'), ('23','40','acknowledged','{EVENT.ACK.STATUS}','0'), ('24','40','endpoint','/endpoint','0'), ('25','40','event_date','{EVENT.DATE}','0'), ('26','40','event_id','{EVENT.ID}','0'), ('27','40','event_name','{EVENT.NAME}','0'), ('28','40','event_nseverity','{EVENT.NSEVERITY}','0'), ('29','40','event_object','{EVENT.OBJECT}','0'), ('30','40','event_severity','{EVENT.SEVERITY}','0'), ('31','40','event_source','{EVENT.SOURCE}','0'), ('32','40','event_tags','{EVENT.TAGSJSON}','0'), ('33','40','event_time','{EVENT.TIME}','0'), ('34','40','event_value','{EVENT.VALUE}','0'), ('35','40','host_groups','{TRIGGER.HOSTGROUP.NAME}','0'), ('36','40','host_host','{HOST.HOST}','0'), ('37','40','host_id','{HOST.ID}','0'), ('38','40','host_ip','{HOST.IP}','0'), ('39','40','host_port','{HOST.PORT}','0'), ('40','40','HTTPProxy','','0'), ('41','40','monitoring_source','Zabbix sever','0'), ('42','40','operation_data','{EVENT.OPDATA}','0'), ('43','40','send_to','{ALERT.SENDTO}','0'), ('44','40','subject','{ALERT.SUBJECT}','0'), ('45','40','trigger_description','{TRIGGER.DESCRIPTION}','0'), ('46','40','trigger_id','{TRIGGER.ID}','0'), ('47','40','trigger_name','{TRIGGER.NAME}','0'), ('48','41','event_source','{EVENT.SOURCE}','0'), ('49','41','event_update_status','{EVENT.UPDATE.STATUS}','0'), ('50','41','event_value','{EVENT.VALUE}','0'), ('51','41','express_message','{ALERT.MESSAGE}','0'), ('52','41','express_send_to','{ALERT.SENDTO}','0'), ('53','41','express_tags','{EVENT.TAGSJSON}','0'), ('54','41','express_token','','0'), ('55','41','express_url','','0'), ('56','42','alert_message','{ALERT.MESSAGE}','0'), ('57','42','alert_subject','{ALERT.SUBJECT}','0'), ('58','42','event_id','{EVENT.ID}','0'), ('59','42','event_nseverity','{EVENT.NSEVERITY}','0'), ('60','42','event_severity','{EVENT.SEVERITY}','0'), ('61','42','event_source','{EVENT.SOURCE}','0'), ('62','42','event_update_nseverity','{EVENT.UPDATE.NSEVERITY}','0'), ('63','42','event_update_severity','{EVENT.UPDATE.SEVERITY}','0'), ('64','42','event_update_status','{EVENT.UPDATE.STATUS}','0'), ('65','42','event_value','{EVENT.VALUE}','0'), ('66','42','github_api_version','2022-11-28','0'), ('67','42','github_issue_number','{EVENT.TAGS.__zbx_github_issue_number}','0'), ('68','42','github_repo','{ALERT.SENDTO}','0'), ('69','42','github_token','','0'), ('70','42','github_url','https://api.github.com','0'), ('71','42','github_user_agent','Zabbix/7.0','0'), ('72','42','github_zabbix_event_priority_label_prefix','Zabbix Event Priority:','0'), ('73','42','github_zabbix_event_source_label_prefix','Zabbix Event Source:','0'), ('74','42','github_zabbix_event_status_label_prefix','Zabbix Event Status:','0'), ('75','42','github_zabbix_generic_label','Zabbix GitHub Webhook','0'), ('76','42','trigger_id','{TRIGGER.ID}','0'), ('77','42','zabbix_url','{$ZABBIX.URL}','0'), ('78','43','alert_message','{ALERT.MESSAGE}','0'), ('79','43','alert_subject','{ALERT.SUBJECT}','0'), ('80','43','event_id','{EVENT.ID}','0'), ('81','43','event_nseverity','{EVENT.NSEVERITY}','0'), ('82','43','event_severity','{EVENT.SEVERITY}','0'), ('83','43','event_source','{EVENT.SOURCE}','0'), ('84','43','event_update_nseverity','{EVENT.UPDATE.NSEVERITY}','0'), ('85','43','event_update_severity','{EVENT.UPDATE.SEVERITY}','0'), ('86','43','event_update_status','{EVENT.UPDATE.STATUS}','0'), ('87','43','event_value','{EVENT.VALUE}','0'), ('88','43','glpi_problem_id','{EVENT.TAGS.__zbx_glpi_problem_id}','0'), ('90','43','glpi_url','','0'), ('91','43','trigger_id','{TRIGGER.ID}','0'), ('92','43','zabbix_url','{$ZABBIX.URL}','0'), ('93','44','.ILERT.ALERT.SOURCE.KEY','{ALERT.SENDTO}','0'), ('94','44','.ILERT.INCIDENT.SUMMARY','','0'), ('95','44','ALERT.MESSAGE','{ALERT.MESSAGE}','0'), ('96','44','ALERT.SUBJECT','{ALERT.SUBJECT}','0'), ('97','44','EVENT.ACK.STATUS','{EVENT.ACK.STATUS}','0'), ('98','44','EVENT.DATE','{EVENT.DATE}','0'), ('99','44','EVENT.ID','{EVENT.ID}','0'), ('100','44','EVENT.NAME','{EVENT.NAME}','0'), ('101','44','EVENT.NSEVERITY','{EVENT.NSEVERITY}','0'), ('102','44','EVENT.OPDATA','{EVENT.OPDATA}','0'), ('103','44','EVENT.RECOVERY.DATE','{EVENT.RECOVERY.DATE}','0'), ('104','44','EVENT.RECOVERY.TIME','{EVENT.RECOVERY.TIME}','0'), ('105','44','EVENT.RECOVERY.VALUE','{EVENT.RECOVERY.VALUE}','0'), ('106','44','EVENT.SEVERITY','{EVENT.SEVERITY}','0'), ('107','44','EVENT.TAGS','{EVENT.TAGS}','0'), ('108','44','EVENT.TIME','{EVENT.TIME}','0'), ('109','44','EVENT.UPDATE.ACTION','{EVENT.UPDATE.ACTION}','0'), ('110','44','EVENT.UPDATE.DATE','{EVENT.UPDATE.DATE}','0'), ('111','44','EVENT.UPDATE.MESSAGE','{EVENT.UPDATE.MESSAGE}','0'), ('112','44','EVENT.UPDATE.STATUS','{EVENT.UPDATE.STATUS}','0'), ('113','44','EVENT.UPDATE.TIME','{EVENT.UPDATE.TIME}','0'), ('114','44','EVENT.VALUE','{EVENT.VALUE}','0'), ('115','44','HOST.HOST','{HOST.HOST}','0'), ('116','44','HOST.IP','{HOST.IP}','0'), ('117','44','HOST.NAME','{HOST.NAME}','0'), ('118','44','ITEM.ID1','{ITEM.ID1}','0'), ('119','44','ITEM.ID2','{ITEM.ID2}','0'), ('120','44','ITEM.ID3','{ITEM.ID3}','0'), ('121','44','ITEM.ID4','{ITEM.ID4}','0'), ('122','44','ITEM.ID5','{ITEM.ID5}','0'), ('123','44','ITEM.NAME1','{ITEM.NAME1}','0'), ('124','44','ITEM.NAME2','{ITEM.NAME2}','0'), ('125','44','ITEM.NAME3','{ITEM.NAME3}','0'), ('126','44','ITEM.NAME4','{ITEM.NAME4}','0'), ('127','44','ITEM.NAME5','{ITEM.NAME5}','0'), ('128','44','TRIGGER.DESCRIPTION','{TRIGGER.DESCRIPTION}','0'), ('129','44','TRIGGER.ID','{TRIGGER.ID}','0'), ('130','44','TRIGGER.NAME','{TRIGGER.NAME}','0'), ('131','44','TRIGGER.SEVERITY','{TRIGGER.SEVERITY}','0'), ('132','44','TRIGGER.STATUS','{TRIGGER.STATUS}','0'), ('133','44','TRIGGER.URL','{TRIGGER.URL}','0'), ('134','44','TRIGGER.VALUE','{TRIGGER.VALUE}','0'), ('135','44','USER.FULLNAME','{USER.FULLNAME}','0'), ('136','44','ZABBIX.URL','{$ZABBIX.URL}','0'), ('137','45','alert_message','{ALERT.MESSAGE}','0'), ('138','45','alert_subject','{ALERT.SUBJECT}','0'), ('139','45','event_recovery_value','{EVENT.RECOVERY.VALUE}','0'), ('140','45','event_source','{EVENT.SOURCE}','0'), ('141','45','event_update_status','{EVENT.UPDATE.STATUS}','0'), ('142','45','event_value','{EVENT.VALUE}','0'), ('143','45','itop_api_version','1.3','0'), ('144','45','itop_class','UserRequest','0'), ('145','45','itop_comment','Created by Zabbix action {ACTION.NAME}','0'), ('146','45','itop_id','{EVENT.TAGS.__zbx_itop_id}','0'), ('147','45','itop_log','private_log','0'), ('148','45','itop_organization_id','','0'), ('149','45','itop_password','','0'), ('150','45','itop_url','','0'), ('151','45','itop_user','','0'), ('152','46','alert_message','{ALERT.MESSAGE}','0'), ('153','46','alert_subject','{ALERT.SUBJECT}','0'), ('154','46','event_id','{EVENT.ID}','0'), ('155','46','event_nseverity','{EVENT.NSEVERITY}','0'), ('156','46','event_recovery_value','{EVENT.RECOVERY.VALUE}','0'), ('157','46','event_severity','{EVENT.SEVERITY}','0'), ('158','46','event_source','{EVENT.SOURCE}','0'), ('159','46','event_tags_json','{EVENT.TAGSJSON}','0'), ('160','46','event_update_action','{EVENT.UPDATE.ACTION}','0'), ('161','46','event_update_message','{EVENT.UPDATE.MESSAGE}','0'), ('162','46','event_update_nseverity','{EVENT.UPDATE.NSEVERITY}','0'), ('163','46','event_update_severity','{EVENT.UPDATE.SEVERITY}','0'), ('164','46','event_update_status','{EVENT.UPDATE.STATUS}','0'), ('165','46','event_update_user','{USER.FULLNAME}','0'), ('166','46','event_value','{EVENT.VALUE}','0'), ('167','46','jira_issue_type','','0'), ('168','46','jira_password','','0'), ('169','46','jira_priority_autoregistration','Low','0'), ('170','46','jira_priority_discovery','Low','0'), ('171','46','jira_priority_internal','Low','0'), ('172','46','jira_project_key','','0'), ('173','46','jira_url','','0'), ('174','46','jira_user','','0'), ('175','46','severity_average','Medium','0'), ('176','46','severity_disaster','Highest','0'), ('177','46','severity_high','High','0'), ('178','46','severity_information','Lowest','0'), ('179','46','severity_not_classified','Lowest','0'), ('180','46','severity_warning','Low','0'), ('181','46','trigger_description','{TRIGGER.DESCRIPTION}','0'), ('182','46','trigger_id','{TRIGGER.ID}','0'), ('183','46','zabbix_url','{$ZABBIX.URL}','0'), ('184','47','alert_message','{ALERT.MESSAGE}','0'), ('185','47','alert_subject','{ALERT.SUBJECT}','0'), ('186','47','event_id','{EVENT.ID}','0'), ('187','47','event_nseverity','{EVENT.NSEVERITY}','0'), ('188','47','event_recovery_value','{EVENT.RECOVERY.VALUE}','0'), ('189','47','event_severity','{EVENT.SEVERITY}','0'), ('190','47','event_source','{EVENT.SOURCE}','0'), ('191','47','event_tags_json','{EVENT.TAGSJSON}','0'), ('192','47','event_update_nseverity','{EVENT.UPDATE.NSEVERITY}','0'), ('193','47','event_update_severity','{EVENT.UPDATE.SEVERITY}','0'), ('194','47','event_update_status','{EVENT.UPDATE.STATUS}','0'), ('195','47','event_value','{EVENT.VALUE}','0'), ('196','47','issue_comments_public','false','0'), ('197','47','jira_password','','0'), ('198','47','jira_priority_autoregistration','Low','0'), ('199','47','jira_priority_discovery','Low','0'), ('200','47','jira_priority_internal','Low','0'), ('201','47','jira_request_type_id','','0'), ('202','47','jira_servicedesk_id','','0'), ('203','47','jira_url','','0'), ('204','47','jira_user','','0'), ('205','47','severity_average','Medium','0'), ('206','47','severity_disaster','Highest','0'), ('207','47','severity_high','High','0'), ('208','47','severity_information','Lowest','0'), ('209','47','severity_not_classified','Lowest','0'), ('210','47','severity_warning','Low','0'), ('211','47','trigger_id','{TRIGGER.ID}','0'), ('212','47','zabbix_url','{$ZABBIX.URL}','0'), ('213','48','alert_message','{ALERT.MESSAGE}','0'), ('214','48','alert_subject','{ALERT.SUBJECT}','0'), ('215','48','bot_token','','0'), ('216','48','event_id','{EVENT.ID}','0'), ('217','48','event_nseverity','{EVENT.NSEVERITY}','0'), ('218','48','event_source','{EVENT.SOURCE}','0'), ('219','48','event_update_status','{EVENT.UPDATE.STATUS}','0'), ('220','48','event_value','{EVENT.VALUE}','0'), ('221','48','send_to','{ALERT.SENDTO}','0'), ('222','48','trigger_description','{TRIGGER.DESCRIPTION}','0'), ('223','48','trigger_id','{TRIGGER.ID}','0'), ('224','48','zabbix_url','{$ZABBIX.URL}','0'), ('225','49','event_nseverity','{EVENT.NSEVERITY}','0'), ('226','49','event_recovery_value','{EVENT.RECOVERY.VALUE}','0'), ('227','49','event_source','{EVENT.SOURCE}','0'), ('228','49','event_update_status','{EVENT.UPDATE.STATUS}','0'), ('229','49','event_value','{EVENT.VALUE}','0'), ('230','49','field_ref:requester','','0'), ('231','49','field_string:description','{ALERT.MESSAGE}','0'), ('232','49','field_string:subject','{ALERT.SUBJECT}','0'), ('233','49','priority_average','Normal','0'), ('234','49','priority_default','Normal','0'), ('235','49','priority_disaster','High','0'), ('236','49','priority_high','High','0'), ('237','49','priority_information','Low','0'), ('238','49','priority_not_classified','Low','0'), ('239','49','priority_warning','Medium','0'), ('240','49','sd_on_demand_client_id','','0'), ('241','49','sd_on_demand_client_secret','','0'), ('242','49','sd_on_demand_refresh_token','','0'), ('243','49','sd_on_demand_url_auth','','0'), ('244','49','sd_on_premise','true','0'), ('245','49','sd_on_premise_auth_token','','0'), ('246','49','sd_request_id','{EVENT.TAGS.__zbx_sd_request_id}','0'), ('247','49','sd_url','','0'), ('248','49','trigger_description','{TRIGGER.DESCRIPTION}','0'), ('249','50','alert_message','{ALERT.MESSAGE}','0'), ('250','50','alert_sendto','{ALERT.SENDTO}','0'), ('251','50','alert_subject','{ALERT.SUBJECT}','0'), ('252','50','event_id','{EVENT.ID}','0'), ('253','50','event_nseverity','{EVENT.NSEVERITY}','0'), ('254','50','event_recovery_value','{EVENT.RECOVERY.VALUE}','0'), ('255','50','event_source','{EVENT.SOURCE}','0'), ('256','50','event_tagsjson','{EVENT.TAGSJSON}','0'), ('257','50','event_update_action','{EVENT.UPDATE.ACTION}','0'), ('258','50','event_update_message','{EVENT.UPDATE.MESSAGE}','0'), ('259','50','event_update_status','{EVENT.UPDATE.STATUS}','0'), ('260','50','event_value','{EVENT.VALUE}','0'), ('261','50','mantisbt_category','[All Projects] General','0'), ('262','50','mantisbt_issue_number','{EVENT.TAGS.__zbx_mantisbt_issue_number}','0'), ('263','50','mantisbt_token','','0'), ('264','50','mantisbt_url','','0'), ('265','50','mantisbt_use_zabbix_tags','true','0'), ('266','50','trigger_id','{TRIGGER.ID}','0'), ('267','50','zabbix_url','{$ZABBIX.URL}','0'), ('268','51','alert_message','{ALERT.MESSAGE}','0'), ('269','51','alert_subject','{ALERT.SUBJECT}','0'), ('270','51','bot_token','','0'), ('271','51','discovery_host_dns','{DISCOVERY.DEVICE.DNS}','0'), ('272','51','discovery_host_ip','{DISCOVERY.DEVICE.IPADDRESS}','0'), ('273','51','event_date','{EVENT.DATE}','0'), ('274','51','event_id','{EVENT.ID}','0'), ('275','51','event_nseverity','{EVENT.NSEVERITY}','0'), ('276','51','event_opdata','{EVENT.OPDATA}','0'), ('277','51','event_recovery_date','{EVENT.RECOVERY.DATE}','0'), ('278','51','event_recovery_time','{EVENT.RECOVERY.TIME}','0'), ('279','51','event_severity','{EVENT.SEVERITY}','0'), ('280','51','event_source','{EVENT.SOURCE}','0'), ('281','51','event_tags','{EVENT.TAGS}','0'), ('282','51','event_time','{EVENT.TIME}','0'), ('283','51','event_update_date','{EVENT.UPDATE.DATE}','0'), ('284','51','event_update_status','{EVENT.UPDATE.STATUS}','0'), ('285','51','event_update_time','{EVENT.UPDATE.TIME}','0'), ('286','51','event_value','{EVENT.VALUE}','0'), ('287','51','host_ip','{HOST.IP}','0'), ('288','51','host_name','{HOST.HOST}','0'), ('289','51','mattermost_url','','0'), ('290','51','send_mode','alarm','0'), ('291','51','send_to','{ALERT.SENDTO}','0'), ('292','51','trigger_description','{TRIGGER.DESCRIPTION}','0'), ('293','51','trigger_id','{TRIGGER.ID}','0'), ('294','51','zabbix_url','{$ZABBIX.URL}','0'), ('295','52','alert_message','{ALERT.MESSAGE}','0'), ('296','52','alert_subject','{ALERT.SUBJECT}','0'), ('297','52','event_date','{EVENT.DATE}','0'), ('298','52','event_id','{EVENT.ID}','0'), ('299','52','event_nseverity','{EVENT.NSEVERITY}','0'), ('300','52','event_opdata','{EVENT.OPDATA}','0'), ('301','52','event_recovery_date','{EVENT.RECOVERY.DATE}','0'), ('302','52','event_recovery_time','{EVENT.RECOVERY.TIME}','0'), ('303','52','event_severity','{EVENT.SEVERITY}','0'), ('304','52','event_source','{EVENT.SOURCE}','0'), ('305','52','event_status','{EVENT.STATUS}','0'), ('306','52','event_tags','{EVENT.TAGS}','0'), ('307','52','event_time','{EVENT.TIME}','0'), ('308','52','event_update_action','{EVENT.UPDATE.ACTION}','0'), ('309','52','event_update_date','{EVENT.UPDATE.DATE}','0'), ('310','52','event_update_message','{EVENT.UPDATE.MESSAGE}','0'), ('311','52','event_update_nseverity','{EVENT.UPDATE.NSEVERITY}','0'), ('312','52','event_update_severity','{EVENT.UPDATE.SEVERITY}','0'), ('313','52','event_update_status','{EVENT.UPDATE.STATUS}','0'), ('314','52','event_update_time','{EVENT.UPDATE.TIME}','0'), ('315','52','event_update_user','{USER.FULLNAME}','0'), ('316','52','event_value','{EVENT.VALUE}','0'), ('317','52','host_ip','{HOST.IP}','0'), ('318','52','host_name','{HOST.NAME}','0'), ('319','52','teams_endpoint','','0'), ('320','52','trigger_description','{TRIGGER.DESCRIPTION}','0'), ('321','52','trigger_id','{TRIGGER.ID}','0'), ('322','52','use_default_message','false','0'), ('323','52','zabbix_url','{$ZABBIX.URL}','0'), ('324','53','alert_message','{ALERT.MESSAGE}','0'), ('325','53','alert_subject','{ALERT.SUBJECT}','0'), ('326','53','event_id','{EVENT.ID}','0'), ('327','53','event_nseverity','{EVENT.NSEVERITY}','0'), ('328','53','event_severity','{EVENT.SEVERITY}','0'), ('329','53','event_source','{EVENT.SOURCE}','0'), ('330','53','event_update_nseverity','{EVENT.UPDATE.NSEVERITY}','0'), ('331','53','event_update_severity','{EVENT.UPDATE.SEVERITY}','0'), ('332','53','event_update_status','{EVENT.UPDATE.STATUS}','0'), ('333','53','event_value','{EVENT.VALUE}','0'), ('334','53','teams_endpoint','','0'), ('335','53','trigger_id','{TRIGGER.ID}','0'), ('336','53','zabbix_url','{$ZABBIX.URL}','0'), ('337','54','alert_message','{ALERT.MESSAGE}','0'), ('338','54','alert_subject','{ALERT.SUBJECT}','0'), ('339','54','event_id','{EVENT.ID}','0'), ('340','54','event_nseverity','{EVENT.NSEVERITY}','0'), ('341','54','event_source','{EVENT.SOURCE}','0'), ('342','54','event_tags_json','{EVENT.TAGSJSON}','0'), ('343','54','event_update_action','{EVENT.UPDATE.ACTION}','0'), ('344','54','event_update_status','{EVENT.UPDATE.STATUS}','0'), ('345','54','event_value','{EVENT.VALUE}','0'), ('346','54','opsgenie_api','','0'), ('347','54','opsgenie_tags','','0'), ('348','54','opsgenie_teams','','0'), ('349','54','opsgenie_token','','0'), ('350','54','opsgenie_web','','0'), ('351','54','severity_average','P3','0'), ('352','54','severity_default','P5','0'), ('353','54','severity_disaster','P1','0'), ('354','54','severity_high','P2','0'), ('355','54','severity_information','P5','0'), ('356','54','severity_not_classified','P5','0'), ('357','54','severity_warning','P4','0'), ('358','54','status_counter','25','0'), ('359','54','trigger_id','{TRIGGER.ID}','0'), ('360','54','zbxurl','{$ZABBIX.URL}','0'), ('361','54','zbxuser','{USER.FULLNAME}','0'), ('362','55','alert_message','{ALERT.MESSAGE}','0'), ('363','55','alert_subject','{ALERT.SUBJECT}','0'), ('364','55','event_id','{EVENT.ID}','0'), ('365','55','event_nseverity','{EVENT.NSEVERITY}','0'), ('366','55','event_severity','{EVENT.SEVERITY}','0'), ('367','55','event_source','{EVENT.SOURCE}','0'), ('368','55','event_update_nseverity','{EVENT.UPDATE.NSEVERITY}','0'), ('369','55','event_update_severity','{EVENT.UPDATE.SEVERITY}','0'), ('370','55','event_update_status','{EVENT.UPDATE.STATUS}','0'), ('371','55','event_value','{EVENT.VALUE}','0'), ('372','55','otrs_auth_password','','0'), ('373','55','otrs_auth_user','','0'), ('374','55','otrs_closed_state_id','0','0'), ('375','55','otrs_customer','','0'), ('376','55','otrs_default_priority_id','3','0'), ('377','55','otrs_queue','','0'), ('378','55','otrs_ticket_id','{EVENT.TAGS.__zbx_otrs_ticket_id}','0'), ('379','55','otrs_ticket_state','new','0'), ('380','55','otrs_time_unit','0','0'), ('381','55','otrs_url','','0'), ('382','55','trigger_id','{TRIGGER.ID}','0'), ('383','55','zabbix_url','{$ZABBIX.URL}','0'), ('384','56','alert_message','{ALERT.MESSAGE}','0'), ('385','56','alert_subject','{ALERT.SUBJECT}','0'), ('386','56','api_token','{ALERT.SENDTO}','0'), ('387','56','event_ack','{EVENT.ACK.STATUS}','0'), ('388','56','event_id','{EVENT.ID}','0'), ('389','56','event_nseverity','{EVENT.NSEVERITY}','0'), ('390','56','event_severity','{EVENT.SEVERITY}','0'), ('391','56','event_source','{EVENT.SOURCE}','0'), ('392','56','event_update_nseverity','{EVENT.UPDATE.NSEVERITY}','0'), ('393','56','event_update_severity','{EVENT.UPDATE.SEVERITY}','0'), ('394','56','event_update_status','{EVENT.UPDATE.STATUS}','0'), ('395','56','event_value','{EVENT.VALUE}','0'), ('396','56','host_ip','{HOST.IP}','0'), ('397','56','host_name','{HOST.NAME}','0'), ('398','56','trigger_id','{TRIGGER.ID}','0'), ('399','56','zabbix_url','{$ZABBIX.URL}','0'), ('400','57','endpoint','https://api.pushover.net/1/messages.json','0'), ('401','57','eventid','{EVENT.ID}','0'), ('402','57','event_nseverity','{EVENT.NSEVERITY}','0'), ('403','57','event_source','{EVENT.SOURCE}','0'), ('404','57','event_value','{EVENT.VALUE}','0'), ('405','57','expire','1200','0'), ('406','57','message','{ALERT.MESSAGE}','0'), ('407','57','priority_average','0','0'), ('408','57','priority_default','0','0'), ('409','57','priority_disaster','0','0'), ('410','57','priority_high','0','0'), ('411','57','priority_information','0','0'), ('412','57','priority_not_classified','0','0'), ('413','57','priority_warning','0','0'), ('414','57','retry','60','0'), ('415','57','title','{ALERT.SUBJECT}','0'), ('416','57','token','','0'), ('417','57','triggerid','{TRIGGER.ID}','0'), ('418','57','url','{$ZABBIX.URL}','0'), ('419','57','url_title','Zabbix','0'), ('420','57','user','{ALERT.SENDTO}','0'), ('421','58','alert_message','{ALERT.MESSAGE}','0'), ('422','58','alert_subject','{ALERT.SUBJECT}','0'), ('423','58','event_id','{EVENT.ID}','0'), ('424','58','event_nseverity','{EVENT.NSEVERITY}','0'), ('425','58','event_source','{EVENT.SOURCE}','0'), ('426','58','event_update_message','{EVENT.UPDATE.MESSAGE}','0'), ('427','58','event_update_status','{EVENT.UPDATE.STATUS}','0'), ('428','58','event_value','{EVENT.VALUE}','0'), ('429','58','redmine_access_key','','0'), ('430','58','redmine_issue_key','{EVENT.TAGS.__zbx_redmine_issue_id}','0'), ('431','58','redmine_project','','0'), ('432','58','redmine_tracker_id','','0'), ('433','58','redmine_url','','0'), ('434','58','trigger_id','{TRIGGER.ID}','0'), ('435','58','zabbix_url','{$ZABBIX.URL}','0'), ('436','59','alert_message','{ALERT.MESSAGE}','0'), ('437','59','alert_subject','{ALERT.SUBJECT}','0'), ('438','59','event_nseverity','{EVENT.NSEVERITY}','0'), ('439','59','event_source','{EVENT.SOURCE}','0'), ('440','59','event_update_action','{EVENT.UPDATE.ACTION}','0'), ('441','59','event_update_message','{EVENT.UPDATE.MESSAGE}','0'), ('442','59','event_update_status','{EVENT.UPDATE.STATUS}','0'), ('443','59','event_update_user','{USER.FULLNAME}','0'), ('444','59','event_value','{EVENT.VALUE}','0'), ('445','59','field_1_full:Host','{HOST.NAME} [{HOST.IP}]','0'), ('446','59','field_2_short:Severity','{EVENT.SEVERITY}','0'), ('447','59','field_3_short:Event time','{EVENT.DATE} {EVENT.TIME}','0'), ('448','59','field_3_short_r:Recovery time','{EVENT.RECOVERY.DATE} {EVENT.RECOVERY.TIME}','0'), ('449','59','field_4_short_r:Event duration','{EVENT.DURATION}','0'), ('450','59','field_5_short:Operational data','{EVENT.OPDATA}','0'), ('451','59','field_999_full_p:Trigger description','{TRIGGER.DESCRIPTION}','0'), ('452','59','rc_api_url','api/v1/','0'), ('453','59','rc_msg_id','{EVENT.TAGS.__zbx_rc_id}','0'), ('454','59','rc_room_id','{EVENT.TAGS.__zbx_rc_rid}','0'), ('455','59','rc_send_to','{ALERT.SENDTO}','0'), ('456','59','rc_title_link','{$ZABBIX.URL}/tr_events.php?triggerid={TRIGGER.ID}&eventid={EVENT.ID}','0'), ('457','59','rc_url','','0'), ('458','59','rc_user_id','','0'), ('459','59','rc_user_token','','0'), ('460','59','use_default_message','false','0'), ('461','60','alert_message','{ALERT.MESSAGE}','0'), ('462','60','alert_subject','{ALERT.SUBJECT}','0'), ('463','60','event_nseverity','{EVENT.NSEVERITY}','0'), ('464','60','event_recovery_value','{EVENT.RECOVERY.VALUE}','0'), ('465','60','event_source','{EVENT.SOURCE}','0'), ('466','60','event_update_status','{EVENT.UPDATE.STATUS}','0'), ('467','60','event_value','{EVENT.VALUE}','0'), ('468','60','servicenow_password','','0'), ('469','60','servicenow_sys_id','{EVENT.TAGS.__zbx_servicenow_sys_id}','0'), ('470','60','servicenow_url','{ALERT.SENDTO}','0'), ('471','60','servicenow_user','','0'), ('472','60','urgency_for_average','2','0'), ('473','60','urgency_for_disaster','1','0'), ('474','60','urgency_for_high','2','0'), ('475','60','urgency_for_information','3','0'), ('476','60','urgency_for_not_classified','3','0'), ('477','60','urgency_for_warning','3','0'), ('478','61','Event_Ack_Status','{EVENT.ACK.STATUS}','0'), ('479','61','Event_Date_Time','{EVENT.DATE} {EVENT.TIME}','0'), ('480','61','Event_ID','{EVENT.ID}','0'), ('481','61','Event_Update_Action','{EVENT.UPDATE.ACTION}','0'), ('482','61','Event_Update_Status','{EVENT.UPDATE.STATUS}','0'), ('483','61','Hostname','{HOST.NAME}','0'), ('484','61','Host_IP','{HOST.IP}','0'), ('485','61','Message','{ALERT.MESSAGE}','0'), ('486','61','Severity','{EVENT.SEVERITY}','0'), ('487','61','Subject','{ALERT.SUBJECT}','0'), ('488','61','teamsecret','{ALERT.SENDTO}','0'), ('489','61','Trigger_ID','{TRIGGER.ID}','0'), ('490','61','Trigger_Status','{TRIGGER.STATUS}','0'), ('491','61','User','{USER.FULLNAME}','0'), ('492','61','Zabbix_URL','{$ZABBIX.URL}','0'), ('493','62','alert_message','{ALERT.MESSAGE}','0'), ('494','62','alert_subject','{ALERT.SUBJECT}','0'), ('495','62','bot_token','','0'), ('496','62','channel','{ALERT.SENDTO}','0'), ('497','62','event_id','{EVENT.ID}','0'), ('498','62','event_nseverity','{EVENT.NSEVERITY}','0'), ('499','62','event_severity','{EVENT.SEVERITY}','0'), ('500','62','event_source','{EVENT.SOURCE}','0'), ('501','62','event_tags','{EVENT.TAGSJSON}','0'), ('502','62','event_update_action','{EVENT.UPDATE.ACTION}','0'), ('503','62','event_update_message','{EVENT.UPDATE.MESSAGE}','0'), ('504','62','event_update_nseverity','{EVENT.UPDATE.NSEVERITY}','0'), ('505','62','event_update_severity','{EVENT.UPDATE.SEVERITY}','0'), ('506','62','event_update_status','{EVENT.UPDATE.STATUS}','0'), ('507','62','event_value','{EVENT.VALUE}','0'), ('508','62','slack_mode','alarm','0'), ('509','62','trigger_id','{TRIGGER.ID}','0'), ('510','62','zabbix_url','{$ZABBIX.URL}','0'), ('511','63','alert_message','{ALERT.MESSAGE}','0'), ('512','63','alert_subject','{ALERT.SUBJECT}','0'), ('513','63','event_nseverity','{EVENT.NSEVERITY}','0'), ('514','63','event_recovery_value','{EVENT.RECOVERY.VALUE}','0'), ('515','63','event_source','{EVENT.SOURCE}','0'), ('516','63','event_update_status','{EVENT.UPDATE.STATUS}','0'), ('517','63','event_value','{EVENT.VALUE}','0'), ('518','63','priority_average','Medium','0'), ('519','63','priority_default','Low','0'), ('520','63','priority_disaster','Critical','0'), ('521','63','priority_high','High','0'), ('522','63','samanage_incident_id','{EVENT.TAGS.__zbx_solarwinds_inc_id}','0'), ('523','63','samanage_token','','0'), ('524','63','samanage_url','','0'), ('525','64','alert_message','{ALERT.MESSAGE}','0'), ('526','64','alert_subject','{ALERT.SUBJECT}','0'), ('527','64','event_id','{EVENT.ID}','0'), ('528','64','event_nseverity','{EVENT.NSEVERITY}','0'), ('529','64','event_source','{EVENT.SOURCE}','0'), ('530','64','event_update_message','{EVENT.UPDATE.MESSAGE}','0'), ('531','64','event_update_status','{EVENT.UPDATE.STATUS}','0'), ('532','64','event_value','{EVENT.VALUE}','0'), ('533','64','sysaid_auth_password','','0'), ('534','64','sysaid_auth_user','','0'), ('535','64','sysaid_category_level_1','','0'), ('536','64','sysaid_category_level_2','','0'), ('537','64','sysaid_category_level_3','','0'), ('538','64','sysaid_default_priority_id','1','0'), ('539','64','sysaid_incident_id','{EVENT.TAGS.__zbx_sysaid_incident_id}','0'), ('540','64','sysaid_incident_state','1','0'), ('541','64','sysaid_template_id','','0'), ('542','64','sysaid_urgency_id','','0'), ('543','64','sysaid_url','','0'), ('544','64','trigger_id','{TRIGGER.ID}','0'), ('545','64','zabbix_url','{$ZABBIX.URL}','0'), ('546','65','alert_message','{ALERT.MESSAGE}','0'), ('547','65','alert_subject','{ALERT.SUBJECT}','0'), ('548','65','api_chat_id','{ALERT.SENDTO}','0'), ('549','65','api_parse_mode','','0'), ('550','65','api_token','','0'), ('551','65','event_nseverity','{EVENT.NSEVERITY}','0'), ('552','65','event_severity','{EVENT.SEVERITY}','0'), ('553','65','event_source','{EVENT.SOURCE}','0'), ('554','65','event_tags','{EVENT.TAGSJSON}','0'), ('555','65','event_update_nseverity','{EVENT.UPDATE.NSEVERITY}','0'), ('556','65','event_update_severity','{EVENT.UPDATE.SEVERITY}','0'), ('557','65','event_update_status','{EVENT.UPDATE.STATUS}','0'), ('558','65','event_value','{EVENT.VALUE}','0'), ('559','66','alert_message','{ALERT.MESSAGE}','0'), ('560','66','alert_subject','{ALERT.SUBJECT}','0'), ('561','66','event_id','{EVENT.ID}','0'), ('562','66','event_nseverity','{EVENT.NSEVERITY}','0'), ('563','66','event_source','{EVENT.SOURCE}','0'), ('564','66','event_update_status','{EVENT.UPDATE.STATUS}','0'), ('565','66','event_value','{EVENT.VALUE}','0'), ('566','66','severity_average','P3','0'), ('567','66','severity_default','P5','0'), ('568','66','severity_disaster','P1','0'), ('569','66','severity_high','P2','0'), ('570','66','severity_information','P5','0'), ('571','66','severity_not_classified','P5','0'), ('572','66','severity_warning','P4','0'), ('573','66','topdesk_api','','0'), ('574','66','topdesk_issue_key','{EVENT.TAGS.__zbx_tpd_issuekey}','0'), ('575','66','topdesk_password','','0'), ('576','66','topdesk_status','','0'), ('577','66','topdesk_user','','0'), ('578','66','trigger_id','{TRIGGER.ID}','0'), ('579','66','zbxurl','{$ZABBIX.URL}','0'), ('580','67','event_info','{$ZABBIX.URL}/tr_events.php?triggerid={TRIGGER.ID}&eventid={EVENT.ID}','0'), ('581','67','event_nseverity','{EVENT.NSEVERITY}','0'), ('582','67','event_recovery_value','{EVENT.RECOVERY.VALUE}','0'), ('583','67','event_source','{EVENT.SOURCE}','0'), ('584','67','event_update_status','{EVENT.UPDATE.STATUS}','0'), ('585','67','event_value','{EVENT.VALUE}','0'), ('586','67','field:entity_display_name','{ALERT.SUBJECT}','0'), ('587','67','field:entity_id','{EVENT.ID}','0'), ('588','67','field:hostname','{HOST.NAME}','0'), ('589','67','field:monitoring_tool','Zabbix','0'), ('590','67','field:operational_data','{EVENT.OPDATA}','0'), ('591','67','field:severity','{EVENT.SEVERITY}','0'), ('592','67','field:state_message','{ALERT.MESSAGE}','0'), ('593','67','field_p:trigger_description','{TRIGGER.DESCRIPTION}','0'), ('594','67','field_r:event_duration','{EVENT.DURATION}','0'), ('595','67','field_r:recovery time','{EVENT.RECOVERY.DATE} {EVENT.RECOVERY.TIME}','0'), ('596','67','priority_average','WARNING','0'), ('597','67','priority_default','INFO','0'), ('598','67','priority_disaster','CRITICAL','0'), ('599','67','priority_high','WARNING','0'), ('600','67','priority_information','INFO','0'), ('601','67','priority_not_classified','INFO','0'), ('602','67','priority_resolved','OK','0'), ('603','67','priority_update','INFO','0'), ('604','67','priority_warning','INFO','0'), ('605','67','vops_endpoint','','0'), ('606','67','vops_routing_key','{ALERT.SENDTO}','0'), ('607','68','alert_message','{ALERT.MESSAGE}','0'), ('608','68','alert_subject','{ALERT.SUBJECT}','0'), ('609','68','event_id','{EVENT.ID}','0'), ('610','68','event_nseverity','{EVENT.NSEVERITY}','0'), ('611','68','event_severity','{EVENT.SEVERITY}','0'), ('612','68','event_source','{EVENT.SOURCE}','0'), ('613','68','event_tags','{EVENT.TAGSJSON}','0'), ('614','68','event_update_nseverity','{EVENT.UPDATE.NSEVERITY}','0'), ('615','68','event_update_severity','{EVENT.UPDATE.SEVERITY}','0'), ('616','68','event_update_status','{EVENT.UPDATE.STATUS}','0'), ('617','68','event_value','{EVENT.VALUE}','0'), ('618','68','trigger_id','{TRIGGER.ID}','0'), ('619','68','zabbix_url','{$ZABBIX.URL}','0'), ('620','68','zammad_access_token','','0'), ('621','68','zammad_customer','','0'), ('622','68','zammad_enable_tags','false','0'), ('623','68','zammad_group','Users','0'), ('624','68','zammad_url','','0'), ('625','69','alert_message','{ALERT.MESSAGE}','0'), ('626','69','alert_subject','{ALERT.SUBJECT}','0'), ('627','69','event_id','{EVENT.ID}','0'), ('628','69','event_nseverity','{EVENT.NSEVERITY}','0'), ('629','69','event_source','{EVENT.SOURCE}','0'), ('630','69','event_tags','{EVENT.TAGS}','0'), ('631','69','event_update_status','{EVENT.UPDATE.STATUS}','0'), ('632','69','event_value','{EVENT.VALUE}','0'), ('633','69','severity_average','normal','0'), ('634','69','severity_default','-','0'), ('635','69','severity_disaster','urgent','0'), ('636','69','severity_high','high','0'), ('637','69','severity_information','low','0'), ('638','69','severity_not_classified','low','0'), ('639','69','severity_warning','normal','0'), ('640','69','trigger_id','{TRIGGER.ID}','0'), ('641','69','zbxurl','{$ZABBIX.URL}','0'), ('642','69','zendesk_issue_key','{EVENT.TAGS.__zbx_zdk_issuekey}','0'), ('643','69','zendesk_token','','0'), ('644','69','zendesk_type','incident','0'), ('645','69','zendesk_url','','0'), ('646','55','otrs_ticket_type','Unclassified','0'), ('647','43','glpi_app_token','','0'), ('648','43','glpi_user_token','','0'); INSERT INTO media_type_message (mediatype_messageid,mediatypeid,eventsource,recovery,subject,message) VALUES ('1','1','0','0','Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Operational data: {EVENT.OPDATA} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('2','1','0','1','Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Problem duration: {EVENT.DURATION} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('3','1','0','2','Updated problem in {EVENT.AGE}: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. {EVENT.UPDATE.MESSAGE} Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}.'), ('4','1','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME} Device IP: {DISCOVERY.DEVICE.IPADDRESS} Device DNS: {DISCOVERY.DEVICE.DNS} Device status: {DISCOVERY.DEVICE.STATUS} Device uptime: {DISCOVERY.DEVICE.UPTIME} Device service name: {DISCOVERY.SERVICE.NAME} Device service port: {DISCOVERY.SERVICE.PORT} Device service status: {DISCOVERY.SERVICE.STATUS} Device service uptime: {DISCOVERY.SERVICE.UPTIME}'), ('5','1','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST} Host IP: {HOST.IP} Agent port: {HOST.PORT}'), ('6','3','0','0','','{EVENT.SEVERITY}: {EVENT.NAME} Host: {HOST.NAME} {EVENT.DATE} {EVENT.TIME}'), ('7','3','0','1','','Resolved in {EVENT.DURATION}: {EVENT.NAME} Host: {HOST.NAME} {EVENT.DATE} {EVENT.TIME}'), ('8','3','0','2','','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem in {EVENT.AGE} at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}'), ('9','3','1','0','','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}'), ('10','3','2','0','','Autoregistration: {HOST.HOST} Host IP: {HOST.IP} Agent port: {HOST.PORT}'), ('11','4','0','0','Problem: {EVENT.NAME}','Problem started at {{EVENT.TIME}.htmlencode()} on {{EVENT.DATE}.htmlencode()}
Problem name: {{EVENT.NAME}.htmlencode()}
Host: {{HOST.NAME}.htmlencode()}
Severity: {{EVENT.SEVERITY}.htmlencode()}
Operational data: {{EVENT.OPDATA}.htmlencode()}
Original problem ID: {{EVENT.ID}.htmlencode()}
{{TRIGGER.URL}.htmlencode()}'), ('12','4','0','1','Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved at {{EVENT.RECOVERY.TIME}.htmlencode()} on {{EVENT.RECOVERY.DATE}.htmlencode()}
Problem name: {{EVENT.NAME}.htmlencode()}
Problem duration: {{EVENT.DURATION}.htmlencode()}
Host: {{HOST.NAME}.htmlencode()}
Severity: {{EVENT.SEVERITY}.htmlencode()}
Original problem ID: {{EVENT.ID}.htmlencode()}
{{TRIGGER.URL}.htmlencode()}'), ('13','4','0','2','Updated problem in {EVENT.AGE}: {EVENT.NAME}','{{USER.FULLNAME}.htmlencode()} {{EVENT.UPDATE.ACTION}.htmlencode()} problem at {{EVENT.UPDATE.DATE}.htmlencode()} {{EVENT.UPDATE.TIME}.htmlencode()}.
{{EVENT.UPDATE.MESSAGE}.htmlencode()}

Current problem status: {{EVENT.STATUS}.htmlencode()}
Age: {{EVENT.AGE}.htmlencode()}
Acknowledged: {{EVENT.ACK.STATUS}.htmlencode()}.'), ('14','4','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {{DISCOVERY.RULE.NAME}.htmlencode()}

Device IP: {{DISCOVERY.DEVICE.IPADDRESS}.htmlencode()}
Device DNS: {{DISCOVERY.DEVICE.DNS}.htmlencode()}
Device status: {{DISCOVERY.DEVICE.STATUS}.htmlencode()}
Device uptime: {{DISCOVERY.DEVICE.UPTIME}.htmlencode()}

Device service name: {{DISCOVERY.SERVICE.NAME}.htmlencode()}
Device service port: {{DISCOVERY.SERVICE.PORT}.htmlencode()}
Device service status: {{DISCOVERY.SERVICE.STATUS}.htmlencode()}
Device service uptime: {{DISCOVERY.SERVICE.UPTIME}.htmlencode()}'), ('15','4','2','0','Autoregistration: {HOST.HOST}','Host name: {{HOST.HOST}.htmlencode()}
Host IP: {{HOST.IP}.htmlencode()}
Agent port: {{HOST.PORT}.htmlencode()}'), ('160','34','0','0','Problem: {EVENT.NAME}','Problem started at {{EVENT.TIME}.htmlencode()} on {{EVENT.DATE}.htmlencode()}
Problem name: {{EVENT.NAME}.htmlencode()}
Host: {{HOST.NAME}.htmlencode()}
Severity: {{EVENT.SEVERITY}.htmlencode()}
Operational data: {{EVENT.OPDATA}.htmlencode()}
Original problem ID: {{EVENT.ID}.htmlencode()}
{{TRIGGER.URL}.htmlencode()}'), ('161','34','0','1','Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved at {{EVENT.RECOVERY.TIME}.htmlencode()} on {{EVENT.RECOVERY.DATE}.htmlencode()}
Problem name: {{EVENT.NAME}.htmlencode()}
Problem duration: {{EVENT.DURATION}.htmlencode()}
Host: {{HOST.NAME}.htmlencode()}
Severity: {{EVENT.SEVERITY}.htmlencode()}
Original problem ID: {{EVENT.ID}.htmlencode()}
{{TRIGGER.URL}.htmlencode()}'), ('162','34','0','2','Updated problem in {EVENT.AGE}: {EVENT.NAME}','{{USER.FULLNAME}.htmlencode()} {{EVENT.UPDATE.ACTION}.htmlencode()} problem at {{EVENT.UPDATE.DATE}.htmlencode()} {{EVENT.UPDATE.TIME}.htmlencode()}.
{{EVENT.UPDATE.MESSAGE}.htmlencode()}

Current problem status: {{EVENT.STATUS}.htmlencode()}
Age: {{EVENT.AGE}.htmlencode()}
Acknowledged: {{EVENT.ACK.STATUS}.htmlencode()}.'), ('163','34','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {{DISCOVERY.RULE.NAME}.htmlencode()}

Device IP: {{DISCOVERY.DEVICE.IPADDRESS}.htmlencode()}
Device DNS: {{DISCOVERY.DEVICE.DNS}.htmlencode()}
Device status: {{DISCOVERY.DEVICE.STATUS}.htmlencode()}
Device uptime: {{DISCOVERY.DEVICE.UPTIME}.htmlencode()}

Device service name: {{DISCOVERY.SERVICE.NAME}.htmlencode()}
Device service port: {{DISCOVERY.SERVICE.PORT}.htmlencode()}
Device service status: {{DISCOVERY.SERVICE.STATUS}.htmlencode()}
Device service uptime: {{DISCOVERY.SERVICE.UPTIME}.htmlencode()}'), ('164','34','2','0','Autoregistration: {HOST.HOST}','Host name: {{HOST.HOST}.htmlencode()}
Host IP: {{HOST.IP}.htmlencode()}
Agent port: {{HOST.PORT}.htmlencode()}'), ('165','35','0','0','Problem: {EVENT.NAME}','Problem started at {{EVENT.TIME}.htmlencode()} on {{EVENT.DATE}.htmlencode()}
Problem name: {{EVENT.NAME}.htmlencode()}
Host: {{HOST.NAME}.htmlencode()}
Severity: {{EVENT.SEVERITY}.htmlencode()}
Operational data: {{EVENT.OPDATA}.htmlencode()}
Original problem ID: {{EVENT.ID}.htmlencode()}
{{TRIGGER.URL}.htmlencode()}'), ('166','35','0','1','Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved at {{EVENT.RECOVERY.TIME}.htmlencode()} on {{EVENT.RECOVERY.DATE}.htmlencode()}
Problem name: {{EVENT.NAME}.htmlencode()}
Problem duration: {{EVENT.DURATION}.htmlencode()}
Host: {{HOST.NAME}.htmlencode()}
Severity: {{EVENT.SEVERITY}.htmlencode()}
Original problem ID: {{EVENT.ID}.htmlencode()}
{{TRIGGER.URL}.htmlencode()}'), ('167','35','0','2','Updated problem in {EVENT.AGE}: {EVENT.NAME}','{{USER.FULLNAME}.htmlencode()} {{EVENT.UPDATE.ACTION}.htmlencode()} problem at {{EVENT.UPDATE.DATE}.htmlencode()} {{EVENT.UPDATE.TIME}.htmlencode()}.
{{EVENT.UPDATE.MESSAGE}.htmlencode()}

Current problem status: {{EVENT.STATUS}.htmlencode()}
Age: {{EVENT.AGE}.htmlencode()}
Acknowledged: {{EVENT.ACK.STATUS}.htmlencode()}.'), ('168','35','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {{DISCOVERY.RULE.NAME}.htmlencode()}

Device IP: {{DISCOVERY.DEVICE.IPADDRESS}.htmlencode()}
Device DNS: {{DISCOVERY.DEVICE.DNS}.htmlencode()}
Device status: {{DISCOVERY.DEVICE.STATUS}.htmlencode()}
Device uptime: {{DISCOVERY.DEVICE.UPTIME}.htmlencode()}

Device service name: {{DISCOVERY.SERVICE.NAME}.htmlencode()}
Device service port: {{DISCOVERY.SERVICE.PORT}.htmlencode()}
Device service status: {{DISCOVERY.SERVICE.STATUS}.htmlencode()}
Device service uptime: {{DISCOVERY.SERVICE.UPTIME}.htmlencode()}'), ('169','35','2','0','Autoregistration: {HOST.HOST}','Host name: {{HOST.HOST}.htmlencode()}
Host IP: {{HOST.IP}.htmlencode()}
Agent port: {{HOST.PORT}.htmlencode()}'), ('170','36','0','0','Problem: {EVENT.NAME}','Problem started at {{EVENT.TIME}.htmlencode()} on {{EVENT.DATE}.htmlencode()}
Problem name: {{EVENT.NAME}.htmlencode()}
Host: {{HOST.NAME}.htmlencode()}
Severity: {{EVENT.SEVERITY}.htmlencode()}
Operational data: {{EVENT.OPDATA}.htmlencode()}
Original problem ID: {{EVENT.ID}.htmlencode()}
{{TRIGGER.URL}.htmlencode()}'), ('171','36','0','1','Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved at {{EVENT.RECOVERY.TIME}.htmlencode()} on {{EVENT.RECOVERY.DATE}.htmlencode()}
Problem name: {{EVENT.NAME}.htmlencode()}
Problem duration: {{EVENT.DURATION}.htmlencode()}
Host: {{HOST.NAME}.htmlencode()}
Severity: {{EVENT.SEVERITY}.htmlencode()}
Original problem ID: {{EVENT.ID}.htmlencode()}
{{TRIGGER.URL}.htmlencode()}'), ('172','36','0','2','Updated problem in {EVENT.AGE}: {EVENT.NAME}','{{USER.FULLNAME}.htmlencode()} {{EVENT.UPDATE.ACTION}.htmlencode()} problem at {{EVENT.UPDATE.DATE}.htmlencode()} {{EVENT.UPDATE.TIME}.htmlencode()}.
{{EVENT.UPDATE.MESSAGE}.htmlencode()}

Current problem status: {{EVENT.STATUS}.htmlencode()}
Age: {{EVENT.AGE}.htmlencode()}
Acknowledged: {{EVENT.ACK.STATUS}.htmlencode()}.'), ('173','36','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {{DISCOVERY.RULE.NAME}.htmlencode()}

Device IP: {{DISCOVERY.DEVICE.IPADDRESS}.htmlencode()}
Device DNS: {{DISCOVERY.DEVICE.DNS}.htmlencode()}
Device status: {{DISCOVERY.DEVICE.STATUS}.htmlencode()}
Device uptime: {{DISCOVERY.DEVICE.UPTIME}.htmlencode()}

Device service name: {{DISCOVERY.SERVICE.NAME}.htmlencode()}
Device service port: {{DISCOVERY.SERVICE.PORT}.htmlencode()}
Device service status: {{DISCOVERY.SERVICE.STATUS}.htmlencode()}
Device service uptime: {{DISCOVERY.SERVICE.UPTIME}.htmlencode()}'), ('174','36','2','0','Autoregistration: {HOST.HOST}','Host name: {{HOST.HOST}.htmlencode()}
Host IP: {{HOST.IP}.htmlencode()}
Agent port: {{HOST.PORT}.htmlencode()}'), ('175','37','0','0','Problem: {EVENT.NAME}','Problem started at {{EVENT.TIME}.htmlencode()} on {{EVENT.DATE}.htmlencode()}
Problem name: {{EVENT.NAME}.htmlencode()}
Host: {{HOST.NAME}.htmlencode()}
Severity: {{EVENT.SEVERITY}.htmlencode()}
Operational data: {{EVENT.OPDATA}.htmlencode()}
Original problem ID: {{EVENT.ID}.htmlencode()}
{{TRIGGER.URL}.htmlencode()}'), ('176','37','0','1','Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved at {{EVENT.RECOVERY.TIME}.htmlencode()} on {{EVENT.RECOVERY.DATE}.htmlencode()}
Problem name: {{EVENT.NAME}.htmlencode()}
Problem duration: {{EVENT.DURATION}.htmlencode()}
Host: {{HOST.NAME}.htmlencode()}
Severity: {{EVENT.SEVERITY}.htmlencode()}
Original problem ID: {{EVENT.ID}.htmlencode()}
{{TRIGGER.URL}.htmlencode()}'), ('177','37','0','2','Updated problem in {EVENT.AGE}: {EVENT.NAME}','{{USER.FULLNAME}.htmlencode()} {{EVENT.UPDATE.ACTION}.htmlencode()} problem at {{EVENT.UPDATE.DATE}.htmlencode()} {{EVENT.UPDATE.TIME}.htmlencode()}.
{{EVENT.UPDATE.MESSAGE}.htmlencode()}

Current problem status: {{EVENT.STATUS}.htmlencode()}
Age: {{EVENT.AGE}.htmlencode()}
Acknowledged: {{EVENT.ACK.STATUS}.htmlencode()}.'), ('178','37','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {{DISCOVERY.RULE.NAME}.htmlencode()}

Device IP: {{DISCOVERY.DEVICE.IPADDRESS}.htmlencode()}
Device DNS: {{DISCOVERY.DEVICE.DNS}.htmlencode()}
Device status: {{DISCOVERY.DEVICE.STATUS}.htmlencode()}
Device uptime: {{DISCOVERY.DEVICE.UPTIME}.htmlencode()}

Device service name: {{DISCOVERY.SERVICE.NAME}.htmlencode()}
Device service port: {{DISCOVERY.SERVICE.PORT}.htmlencode()}
Device service status: {{DISCOVERY.SERVICE.STATUS}.htmlencode()}
Device service uptime: {{DISCOVERY.SERVICE.UPTIME}.htmlencode()}'), ('179','37','2','0','Autoregistration: {HOST.HOST}','Host name: {{HOST.HOST}.htmlencode()}
Host IP: {{HOST.IP}.htmlencode()}
Agent port: {{HOST.PORT}.htmlencode()}'), ('180','38','0','0','[{EVENT.STATUS}] {EVENT.NAME}','[{EVENT.STATUS}] {EVENT.NAME} Started at {EVENT.TIME} on {EVENT.DATE} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Operational data: {EVENT.OPDATA} Event info: {$ZABBIX.URL}/tr_events.php?triggerid={TRIGGER.ID}&eventid={EVENT.ID}'), ('181','38','0','1','Resolved in {EVENT.DURATION}: {EVENT.NAME}','[{EVENT.STATUS}] {EVENT.NAME} Resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Event info: {$ZABBIX.URL}/tr_events.php?triggerid={TRIGGER.ID}&eventid={EVENT.ID}'), ('182','38','0','2','[{EVENT.STATUS}] {EVENT.NAME}','[{EVENT.STATUS}] {EVENT.NAME} {USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. {EVENT.UPDATE.MESSAGE}'), ('183','38','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS} Discovery rule: {DISCOVERY.RULE.NAME} Device IP: {DISCOVERY.DEVICE.IPADDRESS} Device DNS: {DISCOVERY.DEVICE.DNS} Device status: {DISCOVERY.DEVICE.STATUS} Device uptime: {DISCOVERY.DEVICE.UPTIME} Device service name: {DISCOVERY.SERVICE.NAME} Device service port: {DISCOVERY.SERVICE.PORT} Device service status: {DISCOVERY.SERVICE.STATUS} Device service uptime: {DISCOVERY.SERVICE.UPTIME}'), ('184','38','2','0','Autoregistration: {HOST.HOST}','Autoregistration: {HOST.HOST} Host IP: {HOST.IP} Agent port: {HOST.PORT}'), ('185','39','0','0','Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Operational data: {EVENT.OPDATA} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('186','39','0','1','Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('187','39','0','2','Updated problem in {EVENT.AGE}: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. {EVENT.UPDATE.MESSAGE} Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}.'), ('188','39','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME} Device IP: {DISCOVERY.DEVICE.IPADDRESS} Device DNS: {DISCOVERY.DEVICE.DNS} Device status: {DISCOVERY.DEVICE.STATUS} Device uptime: {DISCOVERY.DEVICE.UPTIME} Device service name: {DISCOVERY.SERVICE.NAME} Device service port: {DISCOVERY.SERVICE.PORT} Device service status: {DISCOVERY.SERVICE.STATUS} Device service uptime: {DISCOVERY.SERVICE.UPTIME}'), ('189','39','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST} Host IP: {HOST.IP} Agent port: {HOST.PORT}'), ('190','39','3','0','[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Original problem ID: {EVENT.ID}'), ('191','39','3','1','[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Original problem ID: {EVENT.ID}'), ('192','39','4','0','Service "{SERVICE.NAME}" problem: {EVENT.NAME}','Service problem started at {EVENT.TIME} on {EVENT.DATE} Service problem name: {EVENT.NAME} Service: {SERVICE.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} Service description: {SERVICE.DESCRIPTION} {SERVICE.ROOTCAUSE}'), ('193','39','4','1','Service "{SERVICE.NAME}" resolved in {EVENT.DURATION}: {EVENT.NAME}','Service "{SERVICE.NAME}" has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Problem duration: {EVENT.DURATION} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} Service description: {SERVICE.DESCRIPTION}'), ('194','39','4','2','Changed "{SERVICE.NAME}" service status to {EVENT.UPDATE.SEVERITY} in {EVENT.AGE}','Changed "{SERVICE.NAME}" service status to {EVENT.UPDATE.SEVERITY} at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. Current problem age is {EVENT.AGE}. Service description: {SERVICE.DESCRIPTION} {SERVICE.ROOTCAUSE}'), ('195','40','0','0','Event ID: {EVENT.ID}, Host: {HOST.HOST}, Problem: {EVENT.NAME}',''), ('196','41','0','0','[{EVENT.STATUS}] {EVENT.NAME}','[{EVENT.STATUS}] {EVENT.NAME} Started at {EVENT.TIME} on {EVENT.DATE} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Operational data: {EVENT.OPDATA} Event info: {$ZABBIX.URL}/tr_events.php?triggerid={TRIGGER.ID}&eventid={EVENT.ID}'), ('197','41','0','1','Resolved in {EVENT.DURATION}: {EVENT.NAME}','[{EVENT.STATUS}] {EVENT.NAME} Resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Event info: {$ZABBIX.URL}/tr_events.php?triggerid={TRIGGER.ID}&eventid={EVENT.ID}'), ('198','41','0','2','[{EVENT.STATUS}] {EVENT.NAME}','[{EVENT.STATUS}] {EVENT.NAME} {USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. {EVENT.UPDATE.MESSAGE}'), ('199','41','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS} Discovery rule: {DISCOVERY.RULE.NAME} Device IP: {DISCOVERY.DEVICE.IPADDRESS} Device DNS: {DISCOVERY.DEVICE.DNS} Device status: {DISCOVERY.DEVICE.STATUS} Device uptime: {DISCOVERY.DEVICE.UPTIME} Device service name: {DISCOVERY.SERVICE.NAME} Device service port: {DISCOVERY.SERVICE.PORT} Device service status: {DISCOVERY.SERVICE.STATUS} Device service uptime: {DISCOVERY.SERVICE.UPTIME}'), ('200','41','2','0','Autoregistration: {HOST.HOST}','Autoregistration: {HOST.HOST} Host IP: {HOST.IP} Agent port: {HOST.PORT}'), ('201','42','0','0','Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Operational data: {EVENT.OPDATA} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('202','42','0','1','Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('203','42','0','2','Updated problem in {EVENT.AGE}: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. {EVENT.UPDATE.MESSAGE} Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}.'), ('204','42','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME} Device IP: {DISCOVERY.DEVICE.IPADDRESS} Device DNS: {DISCOVERY.DEVICE.DNS} Device status: {DISCOVERY.DEVICE.STATUS} Device uptime: {DISCOVERY.DEVICE.UPTIME} Device service name: {DISCOVERY.SERVICE.NAME} Device service port: {DISCOVERY.SERVICE.PORT} Device service status: {DISCOVERY.SERVICE.STATUS} Device service uptime: {DISCOVERY.SERVICE.UPTIME}'), ('205','42','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST} Host IP: {HOST.IP} Agent port: {HOST.PORT}'), ('206','42','3','0','[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Original problem ID: {EVENT.ID}'), ('207','42','3','1','[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Original problem ID: {EVENT.ID}'), ('208','42','4','0','Service "{SERVICE.NAME}" problem: {EVENT.NAME}','Service problem started at {EVENT.TIME} on {EVENT.DATE} Service problem name: {EVENT.NAME} Service: {SERVICE.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} Service description: {SERVICE.DESCRIPTION} {SERVICE.ROOTCAUSE}'), ('209','42','4','1','Service "{SERVICE.NAME}" resolved in {EVENT.DURATION}: {EVENT.NAME}','Service "{SERVICE.NAME}" has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Problem duration: {EVENT.DURATION} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} Service description: {SERVICE.DESCRIPTION}'), ('210','42','4','2','Changed "{SERVICE.NAME}" service status to {EVENT.UPDATE.SEVERITY} in {EVENT.AGE}','Changed "{SERVICE.NAME}" service status to {EVENT.UPDATE.SEVERITY} at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. Current problem age is {EVENT.AGE}. Service description: {SERVICE.DESCRIPTION} {SERVICE.ROOTCAUSE}'), ('211','43','0','0','Problem: {EVENT.NAME}','
Problem started at {EVENT.TIME} on {EVENT.DATE}
Problem name: {EVENT.NAME}
Host: {HOST.NAME}
Severity: {EVENT.SEVERITY}
Operational data: {EVENT.OPDATA}
Original problem ID: {EVENT.ID}
{TRIGGER.URL}'), ('212','43','0','1','Resolved in {EVENT.DURATION}: {EVENT.NAME}','
Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}
Problem name: {EVENT.NAME}
Host: {HOST.NAME}
Severity: {EVENT.SEVERITY}
Operational data: {EVENT.OPDATA}
Original problem ID: {EVENT.ID}
{TRIGGER.URL}'), ('213','43','0','2','Updated problem in {EVENT.AGE}: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.TIME} on {EVENT.UPDATE.DATE}.

{EVENT.UPDATE.MESSAGE}

Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}.

'), ('214','43','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','
Discovery rule: {DISCOVERY.RULE.NAME}

Device IP: {DISCOVERY.DEVICE.IPADDRESS}
Device DNS: {DISCOVERY.DEVICE.DNS}

Device status: {DISCOVERY.DEVICE.STATUS}

Device uptime: {DISCOVERY.DEVICE.UPTIME}

Device service name: {DISCOVERY.SERVICE.NAME}
Device service port: {DISCOVERY.SERVICE.PORT}
Device service status: {DISCOVERY.SERVICE.STATUS}
Device service uptime: {DISCOVERY.SERVICE.UPTIME}
'), ('215','43','2','0','Autoregistration: {HOST.HOST}','
Host name: {HOST.HOST}
Host IP: {HOST.IP}
Agent port: {HOST.PORT}
'), ('216','43','3','0','[{EVENT.STATUS}] {EVENT.NAME}','
Problem started at {EVENT.TIME} on {EVENT.DATE}
Problem name: {EVENT.NAME}
Host: {HOST.NAME}
Original problem ID: {EVENT.ID}
'), ('217','43','3','1','[{EVENT.STATUS}] {EVENT.NAME}','
Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}
Problem name: {EVENT.NAME}
Host: {HOST.NAME}
Original problem ID: {EVENT.ID}
'), ('218','43','4','0','Service "{SERVICE.NAME}" problem: {EVENT.NAME}','
Service problem started at {EVENT.TIME} on {EVENT.DATE}
Service problem name: {EVENT.NAME}
Service: {SERVICE.NAME}
Severity: {EVENT.SEVERITY}
Original problem ID: {EVENT.ID}
Service description: {SERVICE.DESCRIPTION}

{SERVICE.ROOTCAUSE}
'), ('219','43','4','1','Service "{SERVICE.NAME}" resolved in {EVENT.DURATION}: {EVENT.NAME}','
Service {SERVICE.NAME} has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}
Problem name: {EVENT.NAME}
Problem duration: {EVENT.DURATION}
Severity: {EVENT.SEVERITY}
Original problem ID: {EVENT.ID}
Service description:
'), ('220','43','4','2','Changed "{SERVICE.NAME}" service status to {EVENT.UPDATE.SEVERITY} in {EVENT.AGE}','
Changed {SERVICE.NAME} service status to {EVENT.UPDATE.SEVERITY} at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.
Current problem age is {EVENT.AGE}.
Service description: {SERVICE.DESCRIPTION}

{SERVICE.ROOTCAUSE}
'), ('221','44','0','0','Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Operational data: {EVENT.OPDATA} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('222','44','0','1','Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Problem duration: {EVENT.DURATION} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('223','44','0','2','Updated problem in {EVENT.AGE}: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. {EVENT.UPDATE.MESSAGE} Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}.'), ('224','45','0','0','[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Operational data: {EVENT.OPDATA} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('225','45','0','1','[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('226','45','0','2','[{EVENT.STATUS}] {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. {EVENT.UPDATE.MESSAGE} Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.'), ('227','45','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME} Device IP: {DISCOVERY.DEVICE.IPADDRESS} Device DNS: {DISCOVERY.DEVICE.DNS} Device status: {DISCOVERY.DEVICE.STATUS} Device uptime: {DISCOVERY.DEVICE.UPTIME} Device service name: {DISCOVERY.SERVICE.NAME} Device service port: {DISCOVERY.SERVICE.PORT} Device service status: {DISCOVERY.SERVICE.STATUS} Device service uptime: {DISCOVERY.SERVICE.UPTIME}'), ('228','45','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST} Host IP: {HOST.IP} Agent port: {HOST.PORT}'), ('229','46','0','0','[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Operational data: {EVENT.OPDATA} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('230','46','0','1','[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('231','46','0','2','[{EVENT.STATUS}] {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. {EVENT.UPDATE.MESSAGE} Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.'), ('232','46','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME} Device IP: {DISCOVERY.DEVICE.IPADDRESS} Device DNS: {DISCOVERY.DEVICE.DNS} Device status: {DISCOVERY.DEVICE.STATUS} Device uptime: {DISCOVERY.DEVICE.UPTIME} Device service name: {DISCOVERY.SERVICE.NAME} Device service port: {DISCOVERY.SERVICE.PORT} Device service status: {DISCOVERY.SERVICE.STATUS} Device service uptime: {DISCOVERY.SERVICE.UPTIME}'), ('233','46','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST} Host IP: {HOST.IP} Agent port: {HOST.PORT}'), ('234','46','3','0','[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Original problem ID: {EVENT.ID}'), ('235','46','3','1','[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Original problem ID: {EVENT.ID}'), ('236','46','4','0','[{EVENT.STATUS}] Service "{SERVICE.NAME}" problem: {EVENT.NAME}','Service problem started at {EVENT.TIME} on {EVENT.DATE} Service problem name: {EVENT.NAME} Service: {SERVICE.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} Service description: {SERVICE.DESCRIPTION} {SERVICE.ROOTCAUSE}'), ('237','46','4','1','[{EVENT.STATUS}] Service "{SERVICE.NAME}" problem: {EVENT.NAME}','Service "{SERVICE.NAME}" has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Problem duration: {EVENT.DURATION} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} Service description: {SERVICE.DESCRIPTION}'), ('238','46','4','2','[{EVENT.STATUS}] Service "{SERVICE.NAME}" problem: {EVENT.NAME}','Changed "{SERVICE.NAME}" service status to {EVENT.UPDATE.SEVERITY} at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. Current problem age is {EVENT.AGE}. Service description: {SERVICE.DESCRIPTION} {SERVICE.ROOTCAUSE}'), ('239','47','0','0','[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Operational data: {EVENT.OPDATA} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('240','47','0','1','[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('241','47','0','2','[{EVENT.STATUS}] {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. {EVENT.UPDATE.MESSAGE} Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.'), ('242','47','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME} Device IP: {DISCOVERY.DEVICE.IPADDRESS} Device DNS: {DISCOVERY.DEVICE.DNS} Device status: {DISCOVERY.DEVICE.STATUS} Device uptime: {DISCOVERY.DEVICE.UPTIME} Device service name: {DISCOVERY.SERVICE.NAME} Device service port: {DISCOVERY.SERVICE.PORT} Device service status: {DISCOVERY.SERVICE.STATUS} Device service uptime: {DISCOVERY.SERVICE.UPTIME}'), ('243','47','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST} Host IP: {HOST.IP} Agent port: {HOST.PORT}'), ('244','47','3','0','[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Original problem ID: {EVENT.ID}'), ('245','47','3','1','[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Original problem ID: {EVENT.ID}'), ('246','47','4','0','[{EVENT.STATUS}] Service "{SERVICE.NAME}" problem: {EVENT.NAME}','Service problem started at {EVENT.TIME} on {EVENT.DATE} Service problem name: {EVENT.NAME} Service: {SERVICE.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} Service description: {SERVICE.DESCRIPTION} {SERVICE.ROOTCAUSE}'), ('247','47','4','1','[{EVENT.STATUS}] Service "{SERVICE.NAME}" problem: {EVENT.NAME}','Service "{SERVICE.NAME}" has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Problem duration: {EVENT.DURATION} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} Service description: {SERVICE.DESCRIPTION}'), ('248','47','4','2','[{EVENT.STATUS}] Service "{SERVICE.NAME}" problem: {EVENT.NAME}','Changed "{SERVICE.NAME}" service status to {EVENT.UPDATE.SEVERITY} at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. Current problem age is {EVENT.AGE}. Service description: {SERVICE.DESCRIPTION} {SERVICE.ROOTCAUSE}'), ('249','48','0','0','Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Operational data: {EVENT.OPDATA} Original problem ID: {EVENT.ID}'), ('250','48','0','1','Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Problem duration: {EVENT.DURATION} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID}'), ('251','48','0','2','Updated problem in {EVENT.AGE}: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. {EVENT.UPDATE.MESSAGE} Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}.'), ('252','48','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME} Device IP: {DISCOVERY.DEVICE.IPADDRESS} Device DNS: {DISCOVERY.DEVICE.DNS} Device status: {DISCOVERY.DEVICE.STATUS} Device uptime: {DISCOVERY.DEVICE.UPTIME} Device service name: {DISCOVERY.SERVICE.NAME} Device service port: {DISCOVERY.SERVICE.PORT} Device service status: {DISCOVERY.SERVICE.STATUS} Device service uptime: {DISCOVERY.SERVICE.UPTIME}'), ('253','48','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST} Host IP: {HOST.IP} Agent port: {HOST.PORT}'), ('254','49','0','0','[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Operational data: {EVENT.OPDATA} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('255','49','0','1','[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('256','49','0','2','[{EVENT.STATUS}] {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. {EVENT.UPDATE.MESSAGE} Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.'), ('257','49','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME} Device IP: {DISCOVERY.DEVICE.IPADDRESS} Device DNS: {DISCOVERY.DEVICE.DNS} Device status: {DISCOVERY.DEVICE.STATUS} Device uptime: {DISCOVERY.DEVICE.UPTIME} Device service name: {DISCOVERY.SERVICE.NAME} Device service port: {DISCOVERY.SERVICE.PORT} Device service status: {DISCOVERY.SERVICE.STATUS} Device service uptime: {DISCOVERY.SERVICE.UPTIME}'), ('258','49','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST} Host IP: {HOST.IP} Agent port: {HOST.PORT}'), ('259','50','0','0','[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Operational data: {EVENT.OPDATA} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('260','50','0','1','[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('261','50','0','2','[{EVENT.STATUS}] {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. {EVENT.UPDATE.MESSAGE} Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.'), ('262','50','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME} Device IP: {DISCOVERY.DEVICE.IPADDRESS} Device DNS: {DISCOVERY.DEVICE.DNS} Device status: {DISCOVERY.DEVICE.STATUS} Device uptime: {DISCOVERY.DEVICE.UPTIME} Device service name: {DISCOVERY.SERVICE.NAME} Device service port: {DISCOVERY.SERVICE.PORT} Device service status: {DISCOVERY.SERVICE.STATUS} Device service uptime: {DISCOVERY.SERVICE.UPTIME}'), ('263','50','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST} Host IP: {HOST.IP} Agent port: {HOST.PORT}'), ('264','50','3','0','[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Original problem ID: {EVENT.ID}'), ('265','50','3','1','[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} Problem name: {EVENT.NAME} Host: {HOST.NAME} Original problem ID: {EVENT.ID}'), ('266','51','0','0','Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Operational data: {EVENT.OPDATA} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('267','51','0','1','Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Problem duration: {EVENT.DURATION} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('268','51','0','2','Updated problem in {EVENT.AGE}: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. {EVENT.UPDATE.MESSAGE} Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}.'), ('269','51','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME} Device IP: {DISCOVERY.DEVICE.IPADDRESS} Device DNS: {DISCOVERY.DEVICE.DNS} Device status: {DISCOVERY.DEVICE.STATUS} Device uptime: {DISCOVERY.DEVICE.UPTIME} Device service name: {DISCOVERY.SERVICE.NAME} Device service port: {DISCOVERY.SERVICE.PORT} Device service status: {DISCOVERY.SERVICE.STATUS} Device service uptime: {DISCOVERY.SERVICE.UPTIME}'), ('270','51','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST} Host IP: {HOST.IP} Agent port: {HOST.PORT}'), ('271','52','0','0','Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Operational data: {EVENT.OPDATA} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('272','52','0','1','Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('273','52','0','2','Updated problem in {EVENT.AGE}: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. {EVENT.UPDATE.MESSAGE} Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}.'), ('274','52','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME} Device IP: {DISCOVERY.DEVICE.IPADDRESS} Device DNS: {DISCOVERY.DEVICE.DNS} Device status: {DISCOVERY.DEVICE.STATUS} Device uptime: {DISCOVERY.DEVICE.UPTIME} Device service name: {DISCOVERY.SERVICE.NAME} Device service port: {DISCOVERY.SERVICE.PORT} Device service status: {DISCOVERY.SERVICE.STATUS} Device service uptime: {DISCOVERY.SERVICE.UPTIME}'), ('275','52','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST} Host IP: {HOST.IP} Agent port: {HOST.PORT}'), ('276','52','3','0','[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Original problem ID: {EVENT.ID}'), ('277','52','3','1','[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Original problem ID: {EVENT.ID}'), ('278','52','4','0','Service "{SERVICE.NAME}" problem: {EVENT.NAME}','Service problem started at {EVENT.TIME} on {EVENT.DATE} Service problem name: {EVENT.NAME} Service: {SERVICE.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} Service description: {SERVICE.DESCRIPTION} {SERVICE.ROOTCAUSE}'), ('279','52','4','1','Service "{SERVICE.NAME}" resolved in {EVENT.DURATION}: {EVENT.NAME}','Service "{SERVICE.NAME}" has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Problem duration: {EVENT.DURATION} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} Service description: {SERVICE.DESCRIPTION}'), ('280','52','4','2','Changed "{SERVICE.NAME}" service status to {EVENT.UPDATE.SEVERITY} in {EVENT.AGE}','Changed "{SERVICE.NAME}" service status to {EVENT.UPDATE.SEVERITY} at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. Current problem age is {EVENT.AGE}. Service description: {SERVICE.DESCRIPTION} {SERVICE.ROOTCAUSE}'), ('281','53','0','0','Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Operational data: {EVENT.OPDATA} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('282','53','0','1','Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('283','53','0','2','Updated problem in {EVENT.AGE}: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. {EVENT.UPDATE.MESSAGE} Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}.'), ('284','53','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME} Device IP: {DISCOVERY.DEVICE.IPADDRESS} Device DNS: {DISCOVERY.DEVICE.DNS} Device status: {DISCOVERY.DEVICE.STATUS} Device uptime: {DISCOVERY.DEVICE.UPTIME} Device service name: {DISCOVERY.SERVICE.NAME} Device service port: {DISCOVERY.SERVICE.PORT} Device service status: {DISCOVERY.SERVICE.STATUS} Device service uptime: {DISCOVERY.SERVICE.UPTIME}'), ('285','53','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST} Host IP: {HOST.IP} Agent port: {HOST.PORT}'), ('286','53','3','0','[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Original problem ID: {EVENT.ID}'), ('287','53','3','1','[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Original problem ID: {EVENT.ID}'), ('288','53','4','0','Service "{SERVICE.NAME}" problem: {EVENT.NAME}','Service problem started at {EVENT.TIME} on {EVENT.DATE} Service problem name: {EVENT.NAME} Service: {SERVICE.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} Service description: {SERVICE.DESCRIPTION} {SERVICE.ROOTCAUSE}'), ('289','53','4','1','Service "{SERVICE.NAME}" resolved in {EVENT.DURATION}: {EVENT.NAME}','Service "{SERVICE.NAME}" has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Problem duration: {EVENT.DURATION} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} Service description: {SERVICE.DESCRIPTION}'), ('290','53','4','2','Changed "{SERVICE.NAME}" service status to {EVENT.UPDATE.SEVERITY} in {EVENT.AGE}','Changed "{SERVICE.NAME}" service status to {EVENT.UPDATE.SEVERITY} at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. Current problem age is {EVENT.AGE}. Service description: {SERVICE.DESCRIPTION} {SERVICE.ROOTCAUSE}'), ('291','54','0','0','Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Operational data: {EVENT.OPDATA} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('292','54','0','1','Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Problem duration: {EVENT.DURATION} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('293','54','0','2','Updated problem in {EVENT.AGE}: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. {EVENT.UPDATE.MESSAGE} Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}.'), ('294','54','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME} Device IP: {DISCOVERY.DEVICE.IPADDRESS} Device DNS: {DISCOVERY.DEVICE.DNS} Device status: {DISCOVERY.DEVICE.STATUS} Device uptime: {DISCOVERY.DEVICE.UPTIME} Device service name: {DISCOVERY.SERVICE.NAME} Device service port: {DISCOVERY.SERVICE.PORT} Device service status: {DISCOVERY.SERVICE.STATUS} Device service uptime: {DISCOVERY.SERVICE.UPTIME}'), ('295','54','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST} Host IP: {HOST.IP} Agent port: {HOST.PORT}'), ('296','55','0','0','Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Operational data: {EVENT.OPDATA} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('297','55','0','1','Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('298','55','0','2','Updated problem in {EVENT.AGE}: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. {EVENT.UPDATE.MESSAGE} Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}.'), ('299','55','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME} Device IP: {DISCOVERY.DEVICE.IPADDRESS} Device DNS: {DISCOVERY.DEVICE.DNS} Device status: {DISCOVERY.DEVICE.STATUS} Device uptime: {DISCOVERY.DEVICE.UPTIME} Device service name: {DISCOVERY.SERVICE.NAME} Device service port: {DISCOVERY.SERVICE.PORT} Device service status: {DISCOVERY.SERVICE.STATUS} Device service uptime: {DISCOVERY.SERVICE.UPTIME}'), ('300','55','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST} Host IP: {HOST.IP} Agent port: {HOST.PORT}'), ('301','55','3','0','[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Original problem ID: {EVENT.ID}'), ('302','55','3','1','[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Original problem ID: {EVENT.ID}'), ('303','55','4','0','Service "{SERVICE.NAME}" problem: {EVENT.NAME}','Service problem started at {EVENT.TIME} on {EVENT.DATE} Service problem name: {EVENT.NAME} Service: {SERVICE.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} Service description: {SERVICE.DESCRIPTION} {SERVICE.ROOTCAUSE}'), ('304','55','4','1','Service "{SERVICE.NAME}" resolved in {EVENT.DURATION}: {EVENT.NAME}','Service "{SERVICE.NAME}" has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Problem duration: {EVENT.DURATION} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} Service description: {SERVICE.DESCRIPTION}'), ('305','55','4','2','Changed "{SERVICE.NAME}" service status to {EVENT.UPDATE.SEVERITY} in {EVENT.AGE}','Changed "{SERVICE.NAME}" service status to {EVENT.UPDATE.SEVERITY} at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. Current problem age is {EVENT.AGE}. Service description: {SERVICE.DESCRIPTION} {SERVICE.ROOTCAUSE}'), ('306','56','0','0','Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Operational data: {EVENT.OPDATA} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('307','56','0','1','Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('308','56','0','2','Updated problem in {EVENT.AGE}: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. {EVENT.UPDATE.MESSAGE} Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}.'), ('309','56','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME} Device IP: {DISCOVERY.DEVICE.IPADDRESS} Device DNS: {DISCOVERY.DEVICE.DNS} Device status: {DISCOVERY.DEVICE.STATUS} Device uptime: {DISCOVERY.DEVICE.UPTIME} Device service name: {DISCOVERY.SERVICE.NAME} Device service port: {DISCOVERY.SERVICE.PORT} Device service status: {DISCOVERY.SERVICE.STATUS} Device service uptime: {DISCOVERY.SERVICE.UPTIME}'), ('310','56','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST} Host IP: {HOST.IP} Agent port: {HOST.PORT}'), ('311','56','3','0','[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Original problem ID: {EVENT.ID}'), ('312','56','3','1','[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Original problem ID: {EVENT.ID}'), ('313','56','4','0','Service "{SERVICE.NAME}" problem: {EVENT.NAME}','Service problem started at {EVENT.TIME} on {EVENT.DATE} Service problem name: {EVENT.NAME} Service: {SERVICE.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} Service description: {SERVICE.DESCRIPTION} {SERVICE.ROOTCAUSE}'), ('314','56','4','1','Service "{SERVICE.NAME}" resolved in {EVENT.DURATION}: {EVENT.NAME}','Service "{SERVICE.NAME}" has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Problem duration: {EVENT.DURATION} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} Service description: {SERVICE.DESCRIPTION}'), ('315','56','4','2','Changed "{SERVICE.NAME}" service status to {EVENT.UPDATE.SEVERITY} in {EVENT.AGE}','Changed "{SERVICE.NAME}" service status to {EVENT.UPDATE.SEVERITY} at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. Current problem age is {EVENT.AGE}. Service description: {SERVICE.DESCRIPTION} {SERVICE.ROOTCAUSE}'), ('316','57','0','0','Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Operational data: {EVENT.OPDATA} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('317','57','0','1','Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Problem duration: {EVENT.DURATION} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('318','57','0','2','Updated problem in {EVENT.AGE}: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. {EVENT.UPDATE.MESSAGE} Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}.'), ('319','57','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME} Device IP: {DISCOVERY.DEVICE.IPADDRESS} Device DNS: {DISCOVERY.DEVICE.DNS} Device status: {DISCOVERY.DEVICE.STATUS} Device uptime: {DISCOVERY.DEVICE.UPTIME} Device service name: {DISCOVERY.SERVICE.NAME} Device service port: {DISCOVERY.SERVICE.PORT} Device service status: {DISCOVERY.SERVICE.STATUS} Device service uptime: {DISCOVERY.SERVICE.UPTIME}'), ('320','57','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST} Host IP: {HOST.IP} Agent port: {HOST.PORT}'), ('321','58','0','0','Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Operational data: {EVENT.OPDATA} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('322','58','0','1','Resolved: {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('323','58','0','2','Updated problem: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. {EVENT.UPDATE.MESSAGE} Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.'), ('324','58','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME} Device IP: {DISCOVERY.DEVICE.IPADDRESS} Device DNS: {DISCOVERY.DEVICE.DNS} Device status: {DISCOVERY.DEVICE.STATUS} Device uptime: {DISCOVERY.DEVICE.UPTIME} Device service name: {DISCOVERY.SERVICE.NAME} Device service port: {DISCOVERY.SERVICE.PORT} Device service status: {DISCOVERY.SERVICE.STATUS} Device service uptime: {DISCOVERY.SERVICE.UPTIME}'), ('325','58','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST} Host IP: {HOST.IP} Agent port: {HOST.PORT}'), ('326','59','0','0','[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Operational data: {EVENT.OPDATA} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('327','59','0','1','[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('328','59','0','2','[{EVENT.STATUS}] {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. {EVENT.UPDATE.MESSAGE} Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.'), ('329','59','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME} Device IP: {DISCOVERY.DEVICE.IPADDRESS} Device DNS: {DISCOVERY.DEVICE.DNS} Device status: {DISCOVERY.DEVICE.STATUS} Device uptime: {DISCOVERY.DEVICE.UPTIME} Device service name: {DISCOVERY.SERVICE.NAME} Device service port: {DISCOVERY.SERVICE.PORT} Device service status: {DISCOVERY.SERVICE.STATUS} Device service uptime: {DISCOVERY.SERVICE.UPTIME}'), ('330','59','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST} Host IP: {HOST.IP} Agent port: {HOST.PORT}'), ('331','60','0','0','[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Operational data: {EVENT.OPDATA} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('332','60','0','1','[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('333','60','0','2','[{EVENT.STATUS}] {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. {EVENT.UPDATE.MESSAGE} Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.'), ('334','60','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME} Device IP: {DISCOVERY.DEVICE.IPADDRESS} Device DNS: {DISCOVERY.DEVICE.DNS} Device status: {DISCOVERY.DEVICE.STATUS} Device uptime: {DISCOVERY.DEVICE.UPTIME} Device service name: {DISCOVERY.SERVICE.NAME} Device service port: {DISCOVERY.SERVICE.PORT} Device service status: {DISCOVERY.SERVICE.STATUS} Device service uptime: {DISCOVERY.SERVICE.UPTIME}'), ('335','60','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST} Host IP: {HOST.IP} Agent port: {HOST.PORT}'), ('336','61','0','0','Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Operational data: {EVENT.OPDATA} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('337','61','0','1','Resolved: {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('338','61','0','2','Updated problem: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. {EVENT.UPDATE.MESSAGE} Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.'), ('339','61','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME} Device IP: {DISCOVERY.DEVICE.IPADDRESS} Device DNS: {DISCOVERY.DEVICE.DNS} Device status: {DISCOVERY.DEVICE.STATUS} Device uptime: {DISCOVERY.DEVICE.UPTIME} Device service name: {DISCOVERY.SERVICE.NAME} Device service port: {DISCOVERY.SERVICE.PORT} Device service status: {DISCOVERY.SERVICE.STATUS} Device service uptime: {DISCOVERY.SERVICE.UPTIME}'), ('340','61','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST} Host IP: {HOST.IP} Agent port: {HOST.PORT}'), ('341','62','0','0','Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Operational data: {EVENT.OPDATA} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('342','62','0','1','Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('343','62','0','2','Updated: {EVENT.NAME}','Problem updated at {EVENT.TIME} on {EVENT.DATE} {USER.FULLNAME} {EVENT.UPDATE.ACTION} Problem name: {EVENT.NAME} Host: {HOST.NAME} Operational data: {EVENT.OPDATA} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('344','62','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME} Device IP: {DISCOVERY.DEVICE.IPADDRESS} Device DNS: {DISCOVERY.DEVICE.DNS} Device status: {DISCOVERY.DEVICE.STATUS} Device uptime: {DISCOVERY.DEVICE.UPTIME} Device service name: {DISCOVERY.SERVICE.NAME} Device service port: {DISCOVERY.SERVICE.PORT} Device service status: {DISCOVERY.SERVICE.STATUS} Device service uptime: {DISCOVERY.SERVICE.UPTIME}'), ('345','62','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST} Host IP: {HOST.IP} Agent port: {HOST.PORT}'), ('346','62','3','0','[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Original problem ID: {EVENT.ID}'), ('347','62','3','1','[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Original problem ID: {EVENT.ID}'), ('348','62','4','0','Service "{SERVICE.NAME}" problem: {EVENT.NAME}','Service problem started at {EVENT.TIME} on {EVENT.DATE} Service problem name: {EVENT.NAME} Service: {SERVICE.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} Service description: {SERVICE.DESCRIPTION} {SERVICE.ROOTCAUSE}'), ('349','62','4','1','Service "{SERVICE.NAME}" resolved in {EVENT.DURATION}: {EVENT.NAME}','Service "{SERVICE.NAME}" has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Problem duration: {EVENT.DURATION} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} Service description: {SERVICE.DESCRIPTION}'), ('350','62','4','2','Changed "{SERVICE.NAME}" service status to {EVENT.UPDATE.SEVERITY} in {EVENT.AGE}','Changed "{SERVICE.NAME}" service status to {EVENT.UPDATE.SEVERITY} at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. Current problem age is {EVENT.AGE}. Service description: {SERVICE.DESCRIPTION} {SERVICE.ROOTCAUSE}'), ('351','63','0','0','[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Operational data: {EVENT.OPDATA} Original problem ID: {EVENT.ID} Trigger description: {TRIGGER.DESCRIPTION}'), ('352','63','0','1','[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('353','63','0','2','[{EVENT.STATUS}] {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. {EVENT.UPDATE.MESSAGE} Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.'), ('354','63','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME} Device IP: {DISCOVERY.DEVICE.IPADDRESS} Device DNS: {DISCOVERY.DEVICE.DNS} Device status: {DISCOVERY.DEVICE.STATUS} Device uptime: {DISCOVERY.DEVICE.UPTIME} Device service name: {DISCOVERY.SERVICE.NAME} Device service port: {DISCOVERY.SERVICE.PORT} Device service status: {DISCOVERY.SERVICE.STATUS} Device service uptime: {DISCOVERY.SERVICE.UPTIME}'), ('355','63','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST} Host IP: {HOST.IP} Agent port: {HOST.PORT}'), ('356','64','0','0','Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Operational data: {EVENT.OPDATA} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('357','64','0','1','Resolved: {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('358','64','0','2','Updated problem: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. {EVENT.UPDATE.MESSAGE} Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.'), ('359','64','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME} Device IP: {DISCOVERY.DEVICE.IPADDRESS} Device DNS: {DISCOVERY.DEVICE.DNS} Device status: {DISCOVERY.DEVICE.STATUS} Device uptime: {DISCOVERY.DEVICE.UPTIME} Device service name: {DISCOVERY.SERVICE.NAME} Device service port: {DISCOVERY.SERVICE.PORT} Device service status: {DISCOVERY.SERVICE.STATUS} Device service uptime: {DISCOVERY.SERVICE.UPTIME}'), ('360','64','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST} Host IP: {HOST.IP} Agent port: {HOST.PORT}'), ('361','65','0','0','Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Operational data: {EVENT.OPDATA} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('362','65','0','1','Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('363','65','0','2','Updated problem in {EVENT.AGE}: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. {EVENT.UPDATE.MESSAGE} Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}.'), ('364','65','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME} Device IP: {DISCOVERY.DEVICE.IPADDRESS} Device DNS: {DISCOVERY.DEVICE.DNS} Device status: {DISCOVERY.DEVICE.STATUS} Device uptime: {DISCOVERY.DEVICE.UPTIME} Device service name: {DISCOVERY.SERVICE.NAME} Device service port: {DISCOVERY.SERVICE.PORT} Device service status: {DISCOVERY.SERVICE.STATUS} Device service uptime: {DISCOVERY.SERVICE.UPTIME}'), ('365','65','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST} Host IP: {HOST.IP} Agent port: {HOST.PORT}'), ('366','65','3','0','[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Original problem ID: {EVENT.ID}'), ('367','65','3','1','[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Original problem ID: {EVENT.ID}'), ('368','65','4','0','Service "{SERVICE.NAME}" problem: {EVENT.NAME}','Service problem started at {EVENT.TIME} on {EVENT.DATE} Service problem name: {EVENT.NAME} Service: {SERVICE.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} Service description: {SERVICE.DESCRIPTION} {SERVICE.ROOTCAUSE}'), ('369','65','4','1','Service "{SERVICE.NAME}" resolved in {EVENT.DURATION}: {EVENT.NAME}','Service "{SERVICE.NAME}" has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Problem duration: {EVENT.DURATION} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} Service description: {SERVICE.DESCRIPTION}'), ('370','65','4','2','Changed "{SERVICE.NAME}" service status to {EVENT.UPDATE.SEVERITY} in {EVENT.AGE}','Changed "{SERVICE.NAME}" service status to {EVENT.UPDATE.SEVERITY} at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. Current problem age is {EVENT.AGE}. Service description: {SERVICE.DESCRIPTION} {SERVICE.ROOTCAUSE}'), ('371','66','0','0','Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Operational data: {EVENT.OPDATA} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('372','66','0','1','Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Problem duration: {EVENT.DURATION} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('373','66','0','2','Updated problem in {EVENT.AGE}: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. {EVENT.UPDATE.MESSAGE} Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}.'), ('374','66','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME} Device IP: {DISCOVERY.DEVICE.IPADDRESS} Device DNS: {DISCOVERY.DEVICE.DNS} Device status: {DISCOVERY.DEVICE.STATUS} Device uptime: {DISCOVERY.DEVICE.UPTIME} Device service name: {DISCOVERY.SERVICE.NAME} Device service port: {DISCOVERY.SERVICE.PORT} Device service status: {DISCOVERY.SERVICE.STATUS} Device service uptime: {DISCOVERY.SERVICE.UPTIME}'), ('375','66','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST} Host IP: {HOST.IP} Agent port: {HOST.PORT}'), ('376','67','0','0','Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Operational data: {EVENT.OPDATA} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('377','67','0','1','Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Problem duration: {EVENT.DURATION} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('378','67','0','2','[{EVENT.STATUS}] {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. {EVENT.UPDATE.MESSAGE} Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.'), ('379','67','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME} Device IP: {DISCOVERY.DEVICE.IPADDRESS} Device DNS: {DISCOVERY.DEVICE.DNS} Device status: {DISCOVERY.DEVICE.STATUS} Device uptime: {DISCOVERY.DEVICE.UPTIME} Device service name: {DISCOVERY.SERVICE.NAME} Device service port: {DISCOVERY.SERVICE.PORT} Device service status: {DISCOVERY.SERVICE.STATUS} Device service uptime: {DISCOVERY.SERVICE.UPTIME}'), ('380','67','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST} Host IP: {HOST.IP} Agent port: {HOST.PORT}'), ('381','68','0','0','Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Operational data: {EVENT.OPDATA} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('382','68','0','1','Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('383','68','0','2','Updated problem in {EVENT.AGE}: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. {EVENT.UPDATE.MESSAGE} Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}.'), ('384','68','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME} Device IP: {DISCOVERY.DEVICE.IPADDRESS} Device DNS: {DISCOVERY.DEVICE.DNS} Device status: {DISCOVERY.DEVICE.STATUS} Device uptime: {DISCOVERY.DEVICE.UPTIME} Device service name: {DISCOVERY.SERVICE.NAME} Device service port: {DISCOVERY.SERVICE.PORT} Device service status: {DISCOVERY.SERVICE.STATUS} Device service uptime: {DISCOVERY.SERVICE.UPTIME}'), ('385','68','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST} Host IP: {HOST.IP} Agent port: {HOST.PORT}'), ('386','68','3','0','[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Original problem ID: {EVENT.ID}'), ('387','68','3','1','[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Original problem ID: {EVENT.ID}'), ('388','68','4','0','Service "{SERVICE.NAME}" problem: {EVENT.NAME}','Service problem started at {EVENT.TIME} on {EVENT.DATE} Service problem name: {EVENT.NAME} Service: {SERVICE.NAME} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} Service description: {SERVICE.DESCRIPTION} {SERVICE.ROOTCAUSE}'), ('389','68','4','1','Service "{SERVICE.NAME}" resolved in {EVENT.DURATION}: {EVENT.NAME}','Service "{SERVICE.NAME}" has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Problem duration: {EVENT.DURATION} Severity: {EVENT.SEVERITY} Original problem ID: {EVENT.ID} Service description: {SERVICE.DESCRIPTION}'), ('390','68','4','2','Changed "{SERVICE.NAME}" service status to {EVENT.UPDATE.SEVERITY} in {EVENT.AGE}','Changed "{SERVICE.NAME}" service status to {EVENT.UPDATE.SEVERITY} at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. Current problem age is {EVENT.AGE}. Service description: {SERVICE.DESCRIPTION} {SERVICE.ROOTCAUSE}'), ('391','69','0','0','{EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Operational data: {EVENT.OPDATA} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('392','69','0','1','{EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Severity: {EVENT.SEVERITY} Operational data: {EVENT.OPDATA} Original problem ID: {EVENT.ID} {TRIGGER.URL}'), ('393','69','0','2','{EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}. {EVENT.UPDATE.MESSAGE} Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.'), ('394','69','1','0','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME} Device IP: {DISCOVERY.DEVICE.IPADDRESS} Device DNS: {DISCOVERY.DEVICE.DNS} Device status: {DISCOVERY.DEVICE.STATUS} Device uptime: {DISCOVERY.DEVICE.UPTIME} Device service name: {DISCOVERY.SERVICE.NAME} Device service port: {DISCOVERY.SERVICE.PORT} Device service status: {DISCOVERY.SERVICE.STATUS} Device service uptime: {DISCOVERY.SERVICE.UPTIME}'), ('395','69','2','0','Autoregistration: {HOST.HOST}','Host name: {HOST.HOST} Host IP: {HOST.IP} Agent port: {HOST.PORT}'), ('396','69','3','0','Internal problem: {EVENT.NAME}','Internal problem started at {EVENT.TIME} on {EVENT.DATE} Problem name: {EVENT.NAME} Host: {HOST.NAME} Operational data: {EVENT.OPDATA} Original problem ID: {EVENT.ID}'); INSERT INTO usrgrp (usrgrpid,name,gui_access,users_status,debug_mode,userdirectoryid,mfa_status,mfaid) VALUES ('7','Zabbix administrators','0','0','0',NULL,'0',NULL), ('8','Guests','0','0','0',NULL,'0',NULL), ('9','Disabled','0','1','0',NULL,'0',NULL), ('11','Enabled debug mode','0','0','1',NULL,'0',NULL), ('12','No access to the frontend','3','0','0',NULL,'0',NULL), ('13','Internal','1','0','0',NULL,'0',NULL); INSERT INTO users_groups (id,usrgrpid,userid) VALUES ('2','8','2'), ('3','9','2'), ('4','7','1'), ('5','13','1'), ('6','13','2'); INSERT INTO ugset_group (ugsetid,usrgrpid) VALUES ('1','13'), ('1','8'), ('1','9'); INSERT INTO user_ugset (userid,ugsetid) VALUES ('2','1'); INSERT INTO scripts (scriptid,name,command,host_access,usrgrpid,groupid,description,confirmation,type,execute_on,timeout,scope,port,authtype,username,password,publickey,privatekey,menu_path,url,new_window,manualinput,manualinput_prompt,manualinput_validator,manualinput_validator_type,manualinput_default_value) VALUES ('1','Ping','ping -c 3 {HOST.CONN}; case $? in [01]) true;; *) false;; esac','2',NULL,NULL,'','','0','2','30s','2','','0','','','','','','','1','0','','','0',''), ('2','Traceroute','/bin/traceroute {HOST.CONN}','2',NULL,NULL,'','','0','2','30s','2','','0','','','','','','','1','0','','','0',''), ('3','Detect operating system','sudo /usr/bin/nmap -O {HOST.CONN}','2','7',NULL,'','','0','2','30s','2','','0','','','','','','','1','0','','','0',''); INSERT INTO actions (actionid,name,eventsource,evaltype,status,esc_period,formula,pause_suppressed,notify_if_canceled,pause_symptoms) VALUES ('2','Auto discovery. Linux servers.','1','0','1','0','','1','1','1'), ('3','Report problems to Zabbix administrators','0','0','1','1h','','1','1','1'), ('4','Report not supported items','3','0','1','1h','','1','1','1'), ('5','Report not supported low level discovery rules','3','0','1','1h','','1','1','1'), ('6','Report unknown triggers','3','0','1','1h','','1','1','1'); INSERT INTO operations (operationid,actionid,operationtype,esc_period,esc_step_from,esc_step_to,evaltype,recovery) VALUES ('1','2','6','0','1','1','0','0'), ('2','2','4','0','1','1','0','0'), ('3','3','0','0','1','1','0','0'), ('4','4','0','0','1','1','0','0'), ('5','5','0','0','1','1','0','0'), ('6','6','0','0','1','1','0','0'), ('7','3','11','0','1','1','0','1'), ('8','4','11','0','1','1','0','1'), ('9','5','11','0','1','1','0','1'), ('10','6','11','0','1','1','0','1'); INSERT INTO opmessage (operationid,default_msg,subject,message,mediatypeid) VALUES ('3','1','','',NULL), ('4','1','','',NULL), ('5','1','','',NULL), ('6','1','','',NULL), ('7','1','','',NULL), ('8','1','','',NULL), ('9','1','','',NULL), ('10','1','','',NULL); INSERT INTO opmessage_grp (opmessage_grpid,operationid,usrgrpid) VALUES ('1','3','7'), ('2','4','7'), ('3','5','7'), ('4','6','7'); INSERT INTO opgroup (opgroupid,operationid,groupid) VALUES ('1','2','2'); INSERT INTO conditions (conditionid,actionid,conditiontype,operator,value,value2) VALUES ('2','2','10','0','0',''), ('3','2','8','0','9',''), ('4','2','12','2','Linux',''), ('6','4','23','0','0',''), ('7','5','23','0','2',''), ('8','6','23','0','4',''); INSERT INTO config (configid,work_period,alert_usrgrpid,discovery_groupid,dbversion_status,geomaps_tile_provider,ldap_userdirectoryid,server_status,mfaid,software_update_check_data) VALUES ('1','1-5,09:00-18:00','7','5','','OpenStreetMap.Mapnik',NULL,'',NULL,''); INSERT INTO graph_theme (graphthemeid,theme,backgroundcolor,graphcolor,gridcolor,maingridcolor,gridbordercolor,textcolor,highlightcolor,leftpercentilecolor,rightpercentilecolor,nonworktimecolor,colorpalette) VALUES ('1','blue-theme','FFFFFF','FFFFFF','CCD5D9','ACBBC2','ACBBC2','1F2C33','E33734','429E47','E33734','EBEBEB','1A7C11,F63100,2774A4,A54F10,FC6EA3,6C59DC,AC8C14,611F27,F230E0,5CCD18,BB2A02,5A2B57,89ABF8,7EC25C,274482,2B5429,8048B4,FD5434,790E1F,87AC4D,E89DF4'), ('2','dark-theme','2B2B2B','2B2B2B','454545','4F4F4F','4F4F4F','F2F2F2','E45959','59DB8F','E45959','333333','199C0D,F63100,2774A4,F7941D,FC6EA3,6C59DC,C7A72D,BA2A5D,F230E0,5CCD18,BB2A02,AC41A5,89ABF8,7EC25C,3165D5,79A277,AA73DE,FD5434,F21C3E,87AC4D,E89DF4'), ('3','hc-light','FFFFFF','FFFFFF','555555','000000','333333','000000','333333','000000','000000','EBEBEB','1A7C11,F63100,2774A4,A54F10,FC6EA3,6C59DC,AC8C14,611F27,F230E0,5CCD18,BB2A02,5A2B57,89ABF8,7EC25C,274482,2B5429,8048B4,FD5434,790E1F,87AC4D,E89DF4'), ('4','hc-dark','000000','000000','666666','888888','4F4F4F','FFFFFF','FFFFFF','FFFFFF','FFFFFF','333333','199C0D,F63100,2774A4,F7941D,FC6EA3,6C59DC,C7A72D,BA2A5D,F230E0,5CCD18,BB2A02,AC41A5,89ABF8,7EC25C,3165D5,79A277,AA73DE,FD5434,F21C3E,87AC4D,E89DF4'); INSERT INTO globalmacro (globalmacroid,macro,value,description,type) VALUES ('2','{$SNMP_COMMUNITY}','public','','0'); INSERT INTO regexps (regexpid,name,test_string) VALUES ('1','File systems for discovery','ext3'), ('2','Network interfaces for discovery','eth0'), ('3','Storage devices for SNMP discovery','/boot'), ('4','Windows service names for discovery','SysmonLog'), ('5','Windows service startup states for discovery','automatic'); INSERT INTO expressions (expressionid,regexpid,expression,expression_type,exp_delimiter,case_sensitive) VALUES ('1','1','^(btrfs|ext2|ext3|ext4|reiser|xfs|ffs|ufs|jfs|jfs2|vxfs|hfs|apfs|refs|ntfs|fat32|zfs)$','3',',','0'), ('3','3','^(Physical memory|Virtual memory|Memory buffers|Cached memory|Swap space)$','4',',','1'), ('5','4','^(MMCSS|gupdate|SysmonLog|clr_optimization_v2.0.50727_32|clr_optimization_v4.0.30319_32)$','4',',','1'), ('6','5','^(automatic|automatic delayed)$','3',',','1'), ('7','2','^Software Loopback Interface','4',',','1'), ('8','2','^(In)?[Ll]oop[Bb]ack[0-9._]*$','4',',','1'), ('9','2','^NULL[0-9.]*$','4',',','1'), ('10','2','^[Ll]o[0-9.]*$','4',',','1'), ('11','2','^[Ss]ystem$','4',',','1'), ('12','2','^Nu[0-9.]*$','4',',','1'); INSERT INTO config_autoreg_tls (autoreg_tlsid,tls_psk_identity,tls_psk) VALUES ('1','',''); INSERT INTO module (moduleid,id,relative_path,status,config) VALUES ('1','actionlog','widgets/actionlog','1','[]'), ('2','clock','widgets/clock','1','[]'), ('3','dataover','widgets/dataover','1','[]'), ('4','discovery','widgets/discovery','1','[]'), ('5','favgraphs','widgets/favgraphs','1','[]'), ('6','favmaps','widgets/favmaps','1','[]'), ('7','geomap','widgets/geomap','1','[]'), ('8','graph','widgets/graph','1','[]'), ('9','graphprototype','widgets/graphprototype','1','[]'), ('10','hostavail','widgets/hostavail','1','[]'), ('11','item','widgets/item','1','[]'), ('12','map','widgets/map','1','[]'), ('13','navtree','widgets/navtree','1','[]'), ('14','itemhistory','widgets/itemhistory','1','[]'), ('15','problemhosts','widgets/problemhosts','1','[]'), ('16','problems','widgets/problems','1','[]'), ('17','problemsbysv','widgets/problemsbysv','1','[]'), ('18','slareport','widgets/slareport','1','[]'), ('19','svggraph','widgets/svggraph','1','[]'), ('20','systeminfo','widgets/systeminfo','1','[]'), ('21','tophosts','widgets/tophosts','1','[]'), ('22','trigover','widgets/trigover','1','[]'), ('23','url','widgets/url','1','[]'), ('24','web','widgets/web','1','[]'), ('25','gauge','widgets/gauge','1','[]'), ('26','toptriggers','widgets/toptriggers','1','[]'), ('27','piechart','widgets/piechart','1','[]'), ('28','honeycomb','widgets/honeycomb','1','[]'), ('29','hostnavigator','widgets/hostnavigator','1','[]'), ('30','itemnavigator','widgets/itemnavigator','1','[]'); INSERT INTO role_rule (role_ruleid,roleid,type,name,value_int,value_str,value_moduleid,value_serviceid) VALUES ('1','1','0','ui.default_access','1','',NULL,NULL), ('2','1','0','services.read','1','',NULL,NULL), ('3','1','0','services.write','0','',NULL,NULL), ('4','1','0','modules.default_access','1','',NULL,NULL), ('5','1','0','api.access','1','',NULL,NULL), ('6','1','0','api.mode','0','',NULL,NULL), ('7','1','0','actions.default_access','1','',NULL,NULL), ('8','2','0','ui.default_access','1','',NULL,NULL), ('9','2','0','services.read','1','',NULL,NULL), ('10','2','0','services.write','1','',NULL,NULL), ('11','2','0','modules.default_access','1','',NULL,NULL), ('12','2','0','api.access','1','',NULL,NULL), ('13','2','0','api.mode','0','',NULL,NULL), ('14','2','0','actions.default_access','1','',NULL,NULL), ('15','3','0','ui.default_access','1','',NULL,NULL), ('16','3','0','services.read','1','',NULL,NULL), ('17','3','0','services.write','1','',NULL,NULL), ('18','3','0','modules.default_access','1','',NULL,NULL), ('19','3','0','api.access','1','',NULL,NULL), ('20','3','0','api.mode','0','',NULL,NULL), ('21','3','0','actions.default_access','1','',NULL,NULL), ('22','4','0','ui.default_access','1','',NULL,NULL), ('23','4','0','services.read','1','',NULL,NULL), ('24','4','0','services.write','0','',NULL,NULL), ('25','4','0','modules.default_access','1','',NULL,NULL), ('26','4','0','api.access','0','',NULL,NULL), ('27','4','0','actions.default_access','0','',NULL,NULL); INSERT INTO hgset (hgsetid,hash) VALUES ('1','e629fa6598d732768f7c726b4b621285f9c3b85303900aa912017db7617d8bdb'), ('2','4ec9599fc203d176a301536c2e091a19bc852759b255bd6818810a42c5fed14a'), ('3','4523540f1504cd17100c4835e85b7eefd49911580f8efff0599a8f283be6b9e3'), ('4','ef8704ac79657fbf2818c74a70a571c131283abd8914eca173cd032929702789'), ('5','6f4b6612125fb3a0daecd2799dfd6c9c299424fd920f9b308110a2c1fbd8f443'), ('6','4b227777d4dd1fc61c6f884f48641d02b4d121d3fd328cb08b5531fcacdabf8a'), ('7','19581e27de7ced00ff1ce50b2047e7a567c76b1cbaebabe5ef03f7c3017bb5b7'), ('8','6b51d431df5d7f141cbececcf79edf3dd861c3b4069f0b11661a3eefacbba918'), ('9','b17ef6d19c7a5b1ee83b907c595526dcb1eb06db8227d650d5dda0a9f4ce8cd9'), ('10','4fc82b26aecb47d2868c4efbe3581732a3e7cbcc6c2efb32062c08170a05eeb8'), ('11','4a44dc15364204a80fe80e9039455cc1608281820fe2b24f1e5233ade6af1dd5'), ('12','3fdba35f04dc8c462986c992bcf875546257113072a909c162f7e470e581e278'), ('13','18825963bca486408507a3ec26cb578a35efbf77182c0f1738502102c18890fa'); INSERT INTO hosts (hostid,proxyid,host,status,ipmi_authtype,ipmi_privilege,ipmi_username,ipmi_password,name,flags,templateid,description,tls_connect,tls_accept,tls_issuer,tls_subject,tls_psk_identity,tls_psk,discover,custom_interfaces,uuid,name_upper,vendor_name,vendor_version,proxy_groupid,monitored_by) VALUES ('10001',NULL,'Linux by Zabbix agent','3','-1','2','','','Linux by Zabbix agent','0',NULL,'This is an official Linux template. It requires Zabbix agent 7.0 or newer. Notes on filesystem (FS) discovery: - The ext4/3/2 filesystem reserves space for privileged usage, typically set at 5% by default. - BTRFS allocates a default of 10% of the volume for its own needs. - To mitigate potential disasters, FS usage triggers are based on the maximum available space. - Utilization formula: ''pused = 100 - 100 * (available / total - free + available)'' - The FS utilization chart, derived from graph prototypes, reflects FS reserved space as the difference between used and available space from the total volume. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387225-discussion-thread-for-official-zabbix-template-for-linux Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','f8f7908280354f2abeed07dc788c3747','LINUX BY ZABBIX AGENT','Zabbix','7.0-3',NULL,'0'), ('10047',NULL,'Zabbix server health','3','-1','2','','','Zabbix server health','0',NULL,'This template is designed to monitor internal Zabbix metrics on the local Zabbix server. Link this template to the local Zabbix server host. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','e2d2b4e4ac28483996cc11fe42823d57','ZABBIX SERVER HEALTH','Zabbix','7.0-6',NULL,'0'), ('10048',NULL,'Zabbix proxy health','3','-1','2','','','Zabbix proxy health','0',NULL,'This template is designed to monitor internal Zabbix metrics on the local Zabbix proxy. Link this template to the local Zabbix proxy host. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','dd114bf0fb2f46bc84840f1bb24e2b23','ZABBIX PROXY HEALTH','Zabbix','7.0-4',NULL,'0'), ('10074',NULL,'OpenBSD by Zabbix agent','3','-1','2','','','OpenBSD by Zabbix agent','0',NULL,'This is an Official OpenBSD template. It requires Zabbix agent 7.0 or newer. Notes on filesystem (FS) discovery: - The ext4/3/2 FS reserves space for privileged usage, typically set at 5% by default. - BTRFS allocates a default of 10% of the volume for its own needs. - To mitigate potential disasters, FS usage triggers are based on the maximum available space. - Utilization formula: ''pused = 100 - 100 * (available / total - free + available)'' - The FS utilization chart, derived from graph prototypes, reflects FS reserved space as the difference between used and available space from the total volume. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/ Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','760be6e1c2194a5bb7c0df47cc5f71ca','OPENBSD BY ZABBIX AGENT','Zabbix','7.0-2',NULL,'0'), ('10075',NULL,'FreeBSD by Zabbix agent','3','-1','2','','','FreeBSD by Zabbix agent','0',NULL,'This is an official FreeBSD template. It requires Zabbix agent 7.0 or newer. Notes on filesystem (FS) discovery: - The ext4/3/2 FS reserves space for privileged usage, typically set at 5% by default. - BTRFS allocates a default of 10% of the volume for its own needs. - To mitigate potential disasters, FS usage triggers are based on the maximum available space. - Utilization formula: ''pused = 100 - 100 * (available / total - free + available)'' - The FS utilization chart, derived from graph prototypes, reflects FS reserved space as the difference between used and available space from the total volume. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/ Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','a3dc630729e443139f4e608954fa6e19','FREEBSD BY ZABBIX AGENT','Zabbix','7.0-2',NULL,'0'), ('10076',NULL,'AIX by Zabbix agent','3','-1','2','','','AIX by Zabbix agent','0',NULL,'This is an official AIX template. It requires Zabbix agent 7.0 or newer. Notes on filesystem (FS) discovery: - The ext4/3/2 FS reserves space for privileged usage, typically set at 5% by default. - BTRFS allocates a default of 10% of the volume for its own needs. - To mitigate potential disasters, FS usage triggers are based on the maximum available space. - Utilization formula: ''pused = 100 - 100 * (available / total - free + available)'' - The FS utilization chart, derived from graph prototypes, reflects FS reserved space as the difference between used and available space from the total volume. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/ Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','7e6bb0931a72459db9514aa924b420bc','AIX BY ZABBIX AGENT','Zabbix','7.0-2',NULL,'0'), ('10077',NULL,'HP-UX by Zabbix agent','3','-1','2','','','HP-UX by Zabbix agent','0',NULL,'This is an official HP-UX template. It requires Zabbix agent 7.0 or newer. Notes on filesystem (FS) discovery: - The ext4/3/2 FS reserves space for privileged usage, typically set at 5% by default. - BTRFS allocates a default of 10% of the volume for its own needs. - To mitigate potential disasters, FS usage triggers are based on the maximum available space. - Utilization formula: ''pused = 100 - 100 * (available / total - free + available)'' - The FS utilization chart, derived from graph prototypes, reflects FS reserved space as the difference between used and available space from the total volume. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/ Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','b1fd823d262042e08291313f72be9452','HP-UX BY ZABBIX AGENT','Zabbix','7.0-2',NULL,'0'), ('10078',NULL,'Solaris by Zabbix agent','3','-1','2','','','Solaris by Zabbix agent','0',NULL,'This is an official Solaris OS template. It requires Zabbix agent 7.0 or newer. Notes on filesystem (FS) discovery: - The ext4/3/2 FS reserves space for privileged usage, typically set at 5% by default. - BTRFS allocates a default of 10% of the volume for its own needs. - To mitigate potential disasters, FS usage triggers are based on the maximum available space. - Utilization formula: ''pused = 100 - 100 * (available / total - free + available)'' - The FS utilization chart, derived from graph prototypes, reflects FS reserved space as the difference between used and available space from the total volume. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/ Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','eaf36c98b91843b7b79bd5184a23d377','SOLARIS BY ZABBIX AGENT','Zabbix','7.0-2',NULL,'0'), ('10079',NULL,'macOS by Zabbix agent','3','-1','2','','','macOS by Zabbix agent','0',NULL,'This is an official macOS template. It requires Zabbix agent 7.0 or newer. Notes on filesystem (FS) discovery: - The ext4/3/2 FS reserves space for privileged usage, typically set at 5% by default. - BTRFS allocates a default of 10% of the volume for its own needs. - To mitigate potential disasters, FS usage triggers are based on the maximum available space. - Utilization formula: ''pused = 100 - 100 * (available / total - free + available)'' - The FS utilization chart, derived from graph prototypes, reflects FS reserved space as the difference between used and available space from the total volume. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/ Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','f895df5b37494f668cde1a2388d7af8b','MACOS BY ZABBIX AGENT','Zabbix','7.0-2',NULL,'0'), ('10081',NULL,'Windows by Zabbix agent','3','-1','2','','','Windows by Zabbix agent','0',NULL,'This is an official Windows template. It requires Zabbix agent 7.0 or newer. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387224-discussion-thread-for-official-zabbix-template-for-windows Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','13b06904a6bf41cbb795e3193d896340','WINDOWS BY ZABBIX AGENT','Zabbix','7.0-2',NULL,'0'), ('10084',NULL,'Zabbix server','0','-1','2','','','Zabbix server','0',NULL,'','1','1','','','','','0','0','','ZABBIX SERVER','','',NULL,'0'), ('10169',NULL,'Generic Java JMX','3','-1','2','','','Generic Java JMX','0',NULL,'Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','72aab08f7f27406a8f2c291648e5ba95','GENERIC JAVA JMX','Zabbix','7.0-1',NULL,'0'), ('10171',NULL,'Intel SR1530 IPMI','3','-1','2','','','Intel SR1530 IPMI','0',NULL,'Template for monitoring Intel SR1530 server system. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','f01bd64eef4049fabe087cccae590226','INTEL SR1530 IPMI','Zabbix','7.0-1',NULL,'0'), ('10172',NULL,'Intel SR1630 IPMI','3','-1','2','','','Intel SR1630 IPMI','0',NULL,'Template for monitoring Intel SR1630 server system. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','2327c665b46e4aa781d41240168c3867','INTEL SR1630 IPMI','Zabbix','7.0-1',NULL,'0'), ('10173',NULL,'VMware','3','-1','2','','','VMware','0',NULL,'You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/ Note: To enable discovery of hardware sensors of VMware Hypervisors, set the macro ''{$VMWARE.HV.SENSOR.DISCOVERY}'' to the value ''true'' on the discovered host level. Note: To create custom performance counter see documentation: https://www.zabbix.com/documentation/7.0/manual/vm_monitoring/vmware_keys#footnotes Note: To get all supported counters and generate path for custom performance counter see documentation: https://www.zabbix.com/documentation/7.0/manual/appendix/items/perf_counters Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','56079badd056419383cc26e6a4fcc7e0','VMWARE','Zabbix','7.0-2',NULL,'0'), ('10174',NULL,'VMware Guest','3','-1','2','','','VMware Guest','0',NULL,'Note: To enable trigger for free space for guest VM, set macro ''{$VMWARE.VM.FS.TRIGGER.USED}'' to the value ''1'' on the discovered host level. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','7942fb93ae3b47cf9ca0ea4beb0675ce','VMWARE GUEST','Zabbix','7.0-4',NULL,'0'), ('10175',NULL,'VMware Hypervisor','3','-1','2','','','VMware Hypervisor','0',NULL,'You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/ This template can be used in discovery as well as manually linked to a host. To use this template as manually linked to a host, attach it to the host and set manually the value of ''{$VMWARE.HV.UUID}'' macro. Note: To create custom performance counter see documentation: https://www.zabbix.com/documentation/7.0/manual/vm_monitoring/vmware_keys#footnotes Note: To get all supported counters and generate path for custom performance counter see documentation: https://www.zabbix.com/documentation/7.0/manual/appendix/items/perf_counters Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','5899b2f0aced4085b5ac25d0461b3425','VMWARE HYPERVISOR','Zabbix','7.0-3',NULL,'0'), ('10207',NULL,'Alcatel Timetra TiMOS by SNMP','3','-1','2','','','Alcatel Timetra TiMOS by SNMP','0',NULL,'Template Net Alcatel Timetra TiMOS MIBs used: EtherLike-MIB TIMETRA-SYSTEM-MIB HOST-RESOURCES-MIB SNMPv2-MIB TIMETRA-CHASSIS-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','53044571fb864d87af32473e08c76d0b','ALCATEL TIMETRA TIMOS BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10208',NULL,'Brocade FC by SNMP','3','-1','2','','','Brocade FC by SNMP','0',NULL,'Template Net Brocade FC MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB SW-MIB IF-MIB Known Issues: Description: no IF-MIB::ifAlias is available Version: v6.3.1c, v7.0.0c, v7.4.1c Device: all Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','de96d02bd5f242bfa31308ae2131d03f','BROCADE FC BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10210',NULL,'Brocade_Foundry Nonstackable by SNMP','3','-1','2','','','Brocade_Foundry Nonstackable by SNMP','0',NULL,'Template Net Brocade Foundry Nonstackable MIBs used: FOUNDRY-SN-AGENT-MIB HOST-RESOURCES-MIB SNMPv2-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','6ecfb7083ddf45f183ab4be50cfba37a','BROCADE_FOUNDRY NONSTACKABLE BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10211',NULL,'Brocade_Foundry Stackable by SNMP','3','-1','2','','','Brocade_Foundry Stackable by SNMP','0',NULL,'Template Brocade Foundry Stackable MIBs used: FOUNDRY-SN-AGENT-MIB HOST-RESOURCES-MIB SNMPv2-MIB FOUNDRY-SN-STACKING-MIB IF-MIB Known Issues: Description: Correct fan(returns fan status as ''other(1)'' and temperature (returns 0) for the non-master Switches are not available in SNMP Version: Version 08.0.40b and above Device: ICX 7750 in stack Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','f64ad01567914165a493815e492fb315','BROCADE_FOUNDRY STACKABLE BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10218',NULL,'Cisco IOS by SNMP','3','-1','2','','','Cisco IOS by SNMP','0',NULL,'Template Cisco IOS Software releases 12.2(3.5) or later MIBs used: CISCO-MEMORY-POOL-MIB IF-MIB EtherLike-MIB HOST-RESOURCES-MIB SNMPv2-MIB CISCO-ENVMON-MIB CISCO-PROCESS-MIB ENTITY-MIB Known Issues: Description: no if(in|out)(Errors|Discards) are available for vlan ifType Version: IOS for example: 12.1(22)EA11, 15.4(3)M2 Device: C2911, C7600 Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','aa3ce9bd8c1d40a2b0f83f9e642e88ee','CISCO IOS BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10220',NULL,'Cisco IOS prior to 12.0_3_T by SNMP','3','-1','2','','','Cisco IOS prior to 12.0_3_T by SNMP','0',NULL,'Cisco IOS Software releases prior to 12.0(3)T MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB OLD-CISCO-CPU-MIB CISCO-ENVMON-MIB CISCO-MEMORY-POOL-MIB ENTITY-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','1bb42fbdb9054645a62ff81f14ba3b99','CISCO IOS PRIOR TO 12.0_3_T BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10221',NULL,'Dell Force S-Series by SNMP','3','-1','2','','','Dell Force S-Series by SNMP','0',NULL,'Template Dell Force S-Series MIBs used: F10-S-SERIES-CHASSIS-MIB EtherLike-MIB HOST-RESOURCES-MIB SNMPv2-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','e5ec7acc7efc4ac491b6fa552ab077ae','DELL FORCE S-SERIES BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10222',NULL,'D-Link DES 7200 by SNMP','3','-1','2','','','D-Link DES 7200 by SNMP','0',NULL,'Template D-Link DES 7200 MIBs used: ENTITY-MIBdescription has changed IF-MIB MY-PROCESS-MIB HOST-RESOURCES-MIB SNMPv2-MIB MY-MEMORY-MIB ENTITY-MIB MY-SYSTEM-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','395184b5d5b048a68e06c91154c56847','D-LINK DES 7200 BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10223',NULL,'D-Link DES_DGS Switch by SNMP','3','-1','2','','','D-Link DES_DGS Switch by SNMP','0',NULL,'Template D-Link DES_DGS Switch MIBs used: EQUIPMENT-MIB IF-MIB DLINK-AGENT-MIB EtherLike-MIB HOST-RESOURCES-MIB SNMPv2-MIB ENTITY-MIB Known Issues: Description: D-Link reports missing PSU as fail(4) Version: Firmware: 1.73R008,hardware revision: B1 Device: DGS-3420-26SC Gigabit Ethernet Switch Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','d3176749a5274264938f487cd89d17eb','D-LINK DES_DGS SWITCH BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10224',NULL,'Extreme EXOS by SNMP','3','-1','2','','','Extreme EXOS by SNMP','0',NULL,'Template Extreme EXOS MIBs used: EXTREME-SYSTEM-MIB IF-MIB EtherLike-MIB HOST-RESOURCES-MIB SNMPv2-MIB EXTREME-SOFTWARE-MONITOR-MIB ENTITY-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','861dbdece18f4b8f85214a319995eb3e','EXTREME EXOS BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10226',NULL,'Network Generic Device by SNMP','3','-1','2','','','Network Generic Device by SNMP','0',NULL,'Template Net Network Generic Device MIBs used: EtherLike-MIB HOST-RESOURCES-MIB SNMPv2-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','67332e679035423f85090aa985947c36','NETWORK GENERIC DEVICE BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10227',NULL,'HP Comware HH3C by SNMP','3','-1','2','','','HP Comware HH3C by SNMP','0',NULL,'Template Net HP Comware (HH3C) MIBs used: EtherLike-MIB HOST-RESOURCES-MIB SNMPv2-MIB ENTITY-MIB HH3C-ENTITY-EXT-MIB IF-MIB Known Issues: Description: No temperature sensors. All entities of them return 0 for HH3C-ENTITY-EXT-MIB::hh3cEntityExtTemperature Version: 1910-48 Switch Software Version 5.20.99, Release 1116 Copyright(c)2010-2016 Hewlett Packard Enterprise Development LP Device: HP 1910-48 Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','57aeccd43b744942b9555269b79a96ad','HP COMWARE HH3C BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10229',NULL,'Huawei VRP by SNMP','3','-1','2','','','Huawei VRP by SNMP','0',NULL,'Template Net Huawei VRP MIBs used: EtherLike-MIB HUAWEI-ENTITY-EXTENT-MIB HOST-RESOURCES-MIB SNMPv2-MIB ENTITY-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','ad4c3dad4b7b492685d1fd3bd3a664f9','HUAWEI VRP BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10230',NULL,'Intel_Qlogic Infiniband by SNMP','3','-1','2','','','Intel_Qlogic Infiniband by SNMP','0',NULL,'Template Net Intel_Qlogic Infiniband MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB ICS-CHASSIS-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','6f7f2c44e13a46a4b219fbb5db92f3f7','INTEL_QLOGIC INFINIBAND BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10231',NULL,'Juniper by SNMP','3','-1','2','','','Juniper by SNMP','0',NULL,'Template Net Juniper MIBs used: EtherLike-MIB JUNIPER-ALARM-MIB HOST-RESOURCES-MIB SNMPv2-MIB JUNIPER-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','a326034825984bbd8a3a5885f3939bb3','JUNIPER BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10233',NULL,'Mikrotik by SNMP','3','-1','2','','','Mikrotik by SNMP','0',NULL,'Template Net Mikrotik MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Known Issues: Description: Doesn''t have ifHighSpeed filled. fixed in more recent versions Version: RouterOS 6.28 or lower Description: Doesn''t have any temperature sensors Version: RouterOS 6.38.5 Device: Mikrotik 941-2nD, Mikrotik 951G-2HnD Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','815b5a81b29a477695fddbd533ad9c84','MIKROTIK BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10234',NULL,'Netgear Fastpath by SNMP','3','-1','2','','','Netgear Fastpath by SNMP','0',NULL,'Template Net Netgear Fastpath MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB FASTPATH-SWITCHING-MIB FASTPATH-BOXSERVICES-PRIVATE-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','5920713da492452889adabc25e259caa','NETGEAR FASTPATH BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10235',NULL,'QTech QSW by SNMP','3','-1','2','','','QTech QSW by SNMP','0',NULL,'Template Net QTech QSW MIBs used: QTECH-MIB EtherLike-MIB HOST-RESOURCES-MIB SNMPv2-MIB ENTITY-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','21f3e79e1d2e4f5e868d1ef81c94bbfd','QTECH QSW BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10236',NULL,'TP-LINK by SNMP','3','-1','2','','','TP-LINK by SNMP','0',NULL,'Template Net TP-LINK MIBs used: TPLINK-SYSINFO-MIB HOST-RESOURCES-MIB SNMPv2-MIB TPLINK-SYSMONITOR-MIB IF-MIB Known Issues: Description: Default sysLocation, sysName and sysContact is not filled with proper data. Real hostname and location can be found only in private branch (TPLINK-SYSINFO-MIB). Please check whether this problem exists in the latest firmware: https://www.tp-link.com/en/support/download/t2600g-28ts/#Firmware Version: 2.0.0 Build 20170628 Rel.55184 (Beta) Device: T2600G-28TS 2.0 Description: The Serial number of the product (tpSysInfoSerialNum) is missing in HW versions prior to V2_170323 Version: Prior to version V2_170323 Device: T2600G-28TS 2.0 Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','2b9039885edf45b8bdd39f16dd069133','TP-LINK BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10237',NULL,'Ubiquiti AirOS by SNMP','3','-1','2','','','Ubiquiti AirOS by SNMP','0',NULL,'Template Net Ubiquiti AirOS MIBs used: FROGFOOT-RESOURCES-MIB HOST-RESOURCES-MIB SNMPv2-MIB IEEE802dot11-MIB IF-MIB Known Issues: Description: UBNT unifi reports speed: like IF-MIB::ifSpeed.1 = Gauge32: 4294967295 for all interfaces Version: Firmware: BZ.ar7240.v3.7.51.6230.170322.1513 Device: UBNT UAP-LR Description: UBNT AirMax(NanoStation, NanoBridge etc) reports ifSpeed: as 0 for VLAN and wireless(ath0) interfaces Version: Firmware: XW.ar934x.v5.6-beta4.22359.140521.1836 Device: NanoStation M5 Description: UBNT AirMax(NanoStation, NanoBridge etc) reports always return ifType: as ethernet(6) even for wifi,vlans and other types Version: Firmware: XW.ar934x.v5.6-beta4.22359.140521.1836 Device: NanoStation M5 Description: ifXTable is not provided in IF-MIB. So Interfaces Simple Template is used instead Version: all above Device: NanoStation, UAP-LR Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','6c235d126c1f4895acfe2156b140a886','UBIQUITI AIROS BY SNMP','Zabbix','7.0-3',NULL,'0'), ('10248',NULL,'Linux by SNMP','3','-1','2','','','Linux by SNMP','0',NULL,'This is an official Linux template. It requires an SNMP client. MIBs used: EtherLike-MIB HOST-RESOURCES-MIB SNMPv2-MIB UCD-DISKIO-MIB UCD-SNMP-MIB IF-MIB Notes on filesystem (FS) discovery: - The ext4/3/2 FS reserves space for privileged usage, typically set at 5% by default. - BTRFS allocates a default of 10% of the volume for its own needs. - To mitigate potential disasters, FS usage triggers are based on the maximum available space. - Utilization formula: ''pused = 100 * (used / used + available)'' - The FS utilization chart, derived from graph prototypes, reflects FS reserved space as the difference between used and available space from the total volume. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387225-discussion-thread-for-official-zabbix-template-for-linux Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','4d3a7adbb6964bd08f2b9d28e0da6496','LINUX BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10249',NULL,'Windows by SNMP','3','-1','2','','','Windows by SNMP','0',NULL,'This is an official Windows template. It requires an SNMP client. MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB IF-MIB Known Issues: Description: 64-bit I/O is not supported even though `IfxTable` is present. Currently, Windows gets its interface status from MIB-2. Since these 64-bit SNMP counters (`ifHCInOctets`, `ifHCOutOctets`, etc.) are defined as an extension to IF-MIB, Microsoft has not implemented it. https://social.technet.microsoft.com/Forums/windowsserver/en-US/07b62ff0-94f6-40ca-a99d-d129c1b33d70/windows-2008-r2-snmp-64bit-counters-support?forum=winservergen Version: Win2008, Win2012R2. Description: MIB is not supported Version: WindowsXP Description: EtherLike MIB is not supported Version: any Description: HOST-RESOURCES-MIB::hrStorageSize is limited to number 2147483647. Storage size is calculated using: `hrStorageSize` and `hrStorageAllocationUnits`. Allocation size of 512 bytes, sets the limit of monitored device to 1TB. Version: any Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','f9a59315c8944853bb91c0a9ec3056d7','WINDOWS BY SNMP','Zabbix','7.0-3',NULL,'0'), ('10250',NULL,'HP Enterprise Switch by SNMP','3','-1','2','','','HP Enterprise Switch by SNMP','0',NULL,'Template Net HP Enterprise Switch MIBs used: NETSWITCH-MIB HP-ICF-CHASSIS ENTITY-SENSORS-MIB IF-MIB EtherLike-MIB SEMI-MIB HOST-RESOURCES-MIB SNMPv2-MIB ENTITY-MIB STATISTICS-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','cce20a5d149a48b7ac7f5383c3510883','HP ENTERPRISE SWITCH BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10251',NULL,'Mellanox by SNMP','3','-1','2','','','Mellanox by SNMP','0',NULL,'The updated template for monitoring the Mellanox network switches over SNMP agent. All items collected in one template without any linked templates. MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB ENTITY-SENSORS-MIB ENTITY-STATE-MIB ENTITY-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','a60798c651604d93a062bec0f8a89751','MELLANOX BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10253',NULL,'Cisco IOS versions 12.0_3_T-12.2_3.5 by SNMP','3','-1','2','','','Cisco IOS versions 12.0_3_T-12.2_3.5 by SNMP','0',NULL,'Cisco IOS Software releases later to 12.0(3)T and prior to 12.2(3.5) MIBs used: CISCO-MEMORY-POOL-MIB IF-MIB HOST-RESOURCES-MIB SNMPv2-MIB CISCO-ENVMON-MIB CISCO-PROCESS-MIB ENTITY-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','40c233aaa3424fd29dc378022ff3461d','CISCO IOS VERSIONS 12.0_3_T-12.2_3.5 BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10254',NULL,'Arista by SNMP','3','-1','2','','','Arista by SNMP','0',NULL,'Template Net Arista MIBs used: ENTITY-SENSORS-MIB ENTITY-STATE-MIB IF-MIB EtherLike-MIB HOST-RESOURCES-MIB SNMPv2-MIB ENTITY-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','26674f62500e4e79b9f470bbf962130d','ARISTA BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10255',NULL,'Dell iDRAC by SNMP','3','-1','2','','','Dell iDRAC by SNMP','0',NULL,'Template for Dell servers with iDRAC version 7 and later. MIBs used: HOST-RESOURCES-MIB IDRAC-MIB-SMIv2 SNMPv2-MIB You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/426752-discussion-thread-for-official-zabbix-dell-templates Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','43dc5c8a9a0e4786b64e44422c7f32b4','DELL IDRAC BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10256',NULL,'HP iLO by SNMP','3','-1','2','','','HP iLO by SNMP','0',NULL,'Template Server HP iLO MIBs used: HOST-RESOURCES-MIB CPQHLTH-MIB SNMPv2-MIB CPQSINFO-MIB CPQIDA-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','c2a7ddca051d4b4a9553f339c57e47a9','HP ILO BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10258',NULL,'IBM IMM by SNMP','3','-1','2','','','IBM IMM by SNMP','0',NULL,'Template Server IBM IMM MIBs used: IMM-MIB HOST-RESOURCES-MIB SNMPv2-MIB Known Issues: Description: Some IMMs (IMM1) do not return disks Version: IMM1 Device: IBM x3250M3 Description: Some IMMs (IMM1) do not return fan status: fanHealthStatus Version: IMM1 Device: IBM x3250M3 Description: IMM1 servers (M2, M3 generations) sysObjectID is NET-SNMP-MIB::netSnmpAgentOIDs.10 Version: IMM1 Device: IMM1 servers (M2,M3 generations) Description: IMM1 servers (M2, M3 generations) only Ambient temperature sensor available Version: IMM1 Device: IMM1 servers (M2,M3 generations) Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','c9e1acd3ae4a427ab39724b6bcaf839e','IBM IMM BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10259',NULL,'Supermicro Aten by SNMP','3','-1','2','','','Supermicro Aten by SNMP','0',NULL,'Template Server Supermicro Aten MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB ATEN-IPMI-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','cf0947cc05d3450b9a6d66b2eb180482','SUPERMICRO ATEN BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10260',NULL,'Apache Tomcat by JMX','3','-1','2','','','Apache Tomcat by JMX','0',NULL,'The template to monitor Apache Tomcat by Zabbix that work without any external scripts. The metrics are collected by JMX. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/411862-discussion-thread-for-official-zabbix-template-tomcat Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','3cc8c9ae7055458c9a803597007f70bd','APACHE TOMCAT BY JMX','Zabbix','7.0-1',NULL,'0'), ('10261',NULL,'Remote Zabbix server health','3','-1','2','','','Remote Zabbix server health','0',NULL,'This template is designed to monitor internal Zabbix metrics on the remote Zabbix server. Specify the address of the remote Zabbix server by changing the {$ZABBIX.SERVER.ADDRESS} and {$ZABBIX.SERVER.PORT} macros. Don''t forget to adjust the "StatsAllowedIP" parameter in the remote server''s configuration file to allow the collection of statistics. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','79b16cbbe593444eae3de66de0cb566b','REMOTE ZABBIX SERVER HEALTH','Zabbix','7.0-6',NULL,'0'), ('10262',NULL,'Remote Zabbix proxy health','3','-1','2','','','Remote Zabbix proxy health','0',NULL,'This template is designed to monitor internal Zabbix metrics on the remote Zabbix proxy. Specify the address of the remote Zabbix proxy by updating the {$ZABBIX.PROXY.ADDRESS} and {$ZABBIX.PROXY.PORT} macros. Don''t forget to adjust the "StatsAllowedIP" parameter in the remote proxy''s configuration file to allow the collection of statistics. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','970c2342146549768e6b91a26089bcdf','REMOTE ZABBIX PROXY HEALTH','Zabbix','7.0-4',NULL,'0'), ('10264',NULL,'Apache by Zabbix agent','3','-1','2','','','Apache by Zabbix agent','0',NULL,'Get metrics from mod_status module using HTTP agent. https://httpd.apache.org/docs/current/mod/mod_status.html You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384764-discussion-thread-for-official-zabbix-template-apache Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','a8d91e4f36794e32b73090d5edf3d7ae','APACHE BY ZABBIX AGENT','Zabbix','7.0-1',NULL,'0'), ('10265',NULL,'Apache by HTTP','3','-1','2','','','Apache by HTTP','0',NULL,'This template is designed for the effortless deployment of Apache monitoring by Zabbix via HTTP and doesn''t require any external scripts. The template collects metrics by polling ''mod_status'' with HTTP agent remotely. Setup: 1. See the setup instructions for mod_status: https://httpd.apache.org/docs/current/mod/mod_status.html Check the availability of the module with this command line: httpd -M 2>/dev/null | grep status_module This is an example configuration of the Apache web server: SetHandler server-status Require host example.com 2. Set the hostname or IP address of the Apache status page host in the ''{$APACHE.STATUS.HOST}'' macro. You can also change the status page port in the ''{$APACHE.STATUS.PORT}'' macro and status page path in the ''{$APACHE.STATUS.PATH}'' macro if necessary. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384764-discussion-thread-for-official-zabbix-template-apache Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','86702e8bc514434e8c914d50c206cb94','APACHE BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10266',NULL,'Nginx by Zabbix agent','3','-1','2','','','Nginx by Zabbix agent','0',NULL,'Get metrics from stub status module using Zabbix agent running on Linux https://nginx.ru/en/docs/http/ngx_http_stub_status_module.html You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384765-discussion-thread-for-official-zabbix-template-nginx Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','27f6424905884dbb96ab9210d987a56c','NGINX BY ZABBIX AGENT','Zabbix','7.0-1',NULL,'0'), ('10267',NULL,'Nginx by HTTP','3','-1','2','','','Nginx by HTTP','0',NULL,'This template is developed to monitor Nginx by Zabbix that works without any external scripts. Most of the metrics are collected in one go, thanks to Zabbix bulk data collection. The template collects metrics by polling the module ''ngx_http_stub_status_module'' with HTTP agent remotely: https://nginx.ru/en/docs/http/ngx_http_stub_status_module.html Active connections: 291 server accepts handled requests 16630948 16630948 31070465 Reading: 6 Writing: 179 Waiting: 106 Setup: 1. See the setup instructions for ''ngx_http_stub_status_module'': https://nginx.ru/en/docs/http/ngx_http_stub_status_module.html Test the availability of the ''http_stub_status_module'' with ''nginx -V 2>&1 | grep -o with-http_stub_status_module''. Example configuration of Nginx: location = /basic_status { stub_status; allow ; deny all; } 2. Set the hostname or IP address of the Nginx host or Nginx container in the ''{$NGINX.STUB_STATUS.HOST}'' macro. You can also change the status page port in the ''{$NGINX.STUB_STATUS.PORT}'' macro, the status page scheme in the ''{$NGINX.STUB_STATUS.SCHEME}'' macro and the status page path in the ''{$NGINX.STUB_STATUS.PATH}'' macro if necessary. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384765-discussion-thread-for-official-zabbix-template-nginx Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','13d5bb0a4ae84228bff408aab5be338e','NGINX BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10285',NULL,'Linux by Prom','3','-1','2','','','Linux by Prom','0',NULL,'This template collects Linux metrics from node_exporter 0.18 and above. Support for older node_exporter versions is provided as ''best effort''. Setup: 1. Set up the node_exporter according to the official documentation: https://prometheus.io/docs/guides/node-exporter/ Use node_exporter v0.18.0 or above. 2. Set the hostname or IP address of the node_exporter host in the ''{$NODE_EXPORTER_HOST}'' macro. You can also change the Prometheus endpoint port in the ''{$NODE_EXPORTER_PORT}'' macro if necessary. Known Issues: - Node Exporter 0.16.0 renamed many metrics. CPU utilization for "guest" and "guest_nice" metrics are not supported in this template with Node Exporter < 0.16. Disk IO metrics are not supported. Other metrics provided as best effort. See https://github.com/prometheus/node_exporter/releases/tag/v0.16.0 for details. - version: below 0.16.0 - metric node_network_info with label ''device'' cannot be found, so network discovery is not possible. - version: below 0.18 Notes on filesystem (FS) discovery: - The ext4/3/2 FS reserves space for privileged usage, typically set at 5% by default. - BTRFS allocates a default of 10% of the volume for its own needs. - To mitigate potential disasters, FS usage triggers are based on the maximum available space. - Utilization formula: ''pused = 100 - 100 * (available / total - free + available)'' - The FS utilization chart, derived from graph prototypes, reflects FS reserved space as the difference between used and available space from the total volume. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387225-discussion-thread-for-official-zabbix-template-for-linux Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','2506b0ca01884903b547b1e19b76ce6d','LINUX BY PROM','Zabbix','7.0-3',NULL,'0'), ('10300',NULL,'RabbitMQ cluster by Zabbix agent','3','-1','2','','','RabbitMQ cluster by Zabbix agent','0',NULL,'Get cluster metrics from RabbitMQ management plugin provided an HTTP-based API using Zabbix agent. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387226-discussion-thread-for-official-zabbix-template-rabbitmq Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','5fa761bc51e4432a90c6c9eece930c4a','RABBITMQ CLUSTER BY ZABBIX AGENT','Zabbix','7.0-1',NULL,'0'), ('10301',NULL,'RabbitMQ node by Zabbix agent','3','-1','2','','','RabbitMQ node by Zabbix agent','0',NULL,'Get node metrics from RabbitMQ management plugin provided an HTTP-based API using Zabbix agent. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387226-discussion-thread-for-official-zabbix-template-rabbitmq Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','d5dc11ae9ab143a89c4be534bbb35188','RABBITMQ NODE BY ZABBIX AGENT','Zabbix','7.0-1',NULL,'0'), ('10302',NULL,'RabbitMQ cluster by HTTP','3','-1','2','','','RabbitMQ cluster by HTTP','0',NULL,'This template is developed to monitor the messaging broker RabbitMQ cluster by Zabbix that works without any external scripts. Most of the metrics are collected in one go, thanks to Zabbix bulk data collection. The template collects metrics by polling RabbitMQ management plugin with HTTP agent remotely. Setup: 1. Enable the RabbitMQ management plugin. See the RabbitMQ documentation for the instructions: https://www.rabbitmq.com/management.html 2. Create a user to monitor the service: rabbitmqctl add_user zbx_monitor rabbitmqctl set_permissions -p / zbx_monitor "" "" ".*" rabbitmqctl set_user_tags zbx_monitor monitoring 3. Set the hostname or IP address of the RabbitMQ cluster host in the ''{$RABBITMQ.API.CLUSTER_HOST}'' macro. You can also change the port in the ''{$RABBITMQ.API.PORT}'' macro and the scheme in the ''{$RABBITMQ.API.SCHEME}'' macro if necessary. 4. Set the user name and password in the macros ''{$RABBITMQ.API.USER}'' and ''{$RABBITMQ.API.PASSWORD}''. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387226-discussion-thread-for-official-zabbix-template-rabbitmq Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','8c8474148c2a4eaeabe5a9331ea99d77','RABBITMQ CLUSTER BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10303',NULL,'RabbitMQ node by HTTP','3','-1','2','','','RabbitMQ node by HTTP','0',NULL,'This template is developed to monitor the messaging broker RabbitMQ node by Zabbix that works without any external scripts. Most of the metrics are collected in one go, thanks to Zabbix bulk data collection. The template collects metrics by polling RabbitMQ management plugin with HTTP agent remotely. Setup: 1. Enable the RabbitMQ management plugin. See the RabbitMQ documentation for the instructions: https://www.rabbitmq.com/management.html 2. Create a user to monitor the service: rabbitmqctl add_user zbx_monitor rabbitmqctl set_permissions -p / zbx_monitor "" "" ".*" rabbitmqctl set_user_tags zbx_monitor monitoring 3. Set the hostname or IP address of the RabbitMQ node host in the ''{$RABBITMQ.API.HOST}'' macro. You can also change the port in the ''{$RABBITMQ.API.PORT}'' macro and the scheme in the ''{$RABBITMQ.API.SCHEME}'' macro if necessary. 4. Set the user name and password in the macros ''{$RABBITMQ.API.USER}'' and ''{$RABBITMQ.API.PASSWORD}''. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387226-discussion-thread-for-official-zabbix-template-rabbitmq Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','b9514029d03b44de9adf24251778dbf3','RABBITMQ NODE BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10304',NULL,'Cisco UCS by SNMP','3','-1','2','','','Cisco UCS by SNMP','0',NULL,'Template Server Cisco UCS MIBs used: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB HOST-RESOURCES-MIB SNMPv2-MIB CISCO-UNIFIED-COMPUTING-PROCESSOR-MIB CISCO-UNIFIED-COMPUTING-EQUIPMENT-MIB CISCO-UNIFIED-COMPUTING-STORAGE-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','cb66d34564e44b3893442fc74cf6e951','CISCO UCS BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10308',NULL,'HAProxy by Zabbix agent','3','-1','2','','','HAProxy by Zabbix agent','0',NULL,'The template to monitor HAProxy by Zabbix that works without any external scripts. Most of the metrics are collected in one go, thanks to Zabbix bulk data collection. The template collects metrics by polling the HAProxy stats page with Zabbix agent. Note, that this template doesn''t support authentication and redirects (limitations of ''web.page.get''). Setup: 1. Set up the HAProxy stats page: https://www.haproxy.com/blog/exploring-the-haproxy-stats-page/ The example configuration of HAProxy: frontend stats bind *:8404 stats enable stats uri /stats stats refresh 10s 2. Set the hostname or IP address of the HAProxy stats host or container in the ''{$HAPROXY.STATS.HOST}'' macro. You can also change the status page port in the ''{$HAPROXY.STATS.PORT}'' macro, the status page scheme in the ''{$HAPROXY.STATS.SCHEME}'' macro and the status page path in the ''{$HAPROXY.STATS.PATH}'' macro if necessary. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/393527-discussion-thread-for-official-zabbix-template-haproxy Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','812073bf8df143bcae2a84b32c3965e5','HAPROXY BY ZABBIX AGENT','Zabbix','7.0-2',NULL,'0'), ('10309',NULL,'HAProxy by HTTP','3','-1','2','','','HAProxy by HTTP','0',NULL,'The template to monitor HAProxy by Zabbix that works without any external scripts. Most of the metrics are collected in one go, thanks to Zabbix bulk data collection. The template collects metrics by polling the HAProxy stats page with HTTP agent. Setup: 1. Set up the HAProxy stats page: https://www.haproxy.com/blog/exploring-the-haproxy-stats-page/ If you want to use authentication, set the username and password in the ''stats auth'' option of the configuration file. The example configuration of HAProxy: frontend stats bind *:8404 stats enable stats uri /stats stats refresh 10s #stats auth Username:Password # Authentication credentials 2. Set the hostname or IP address of the HAProxy stats host or container in the ''{$HAPROXY.STATS.HOST}'' macro. You can also change the status page port in the ''{$HAPROXY.STATS.PORT}'' macro, the status page scheme in the ''{$HAPROXY.STATS.SCHEME}'' macro and the status page path in the ''{$HAPROXY.STATS.PATH}'' macro if necessary. 3. If you have enabled authentication in the HAProxy configuration file in step 1, set the username and password in the `{$HAPROXY.USERNAME}` and `{$HAPROXY.PASSWORD}` macros. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/393527-discussion-thread-for-official-zabbix-template-haproxy Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','948d046cb2894e5c8d07767a518cc1a9','HAPROXY BY HTTP','Zabbix','7.0-2',NULL,'0'), ('10310',NULL,'Redis by Zabbix agent 2','3','-1','2','','','Redis by Zabbix agent 2','0',NULL,'Get Redis metrics from plugin for the New Zabbix Agent (zabbix-agent2). You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/389050-discussion-thread-for-official-zabbix-template-redis Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','e111446745a1425b862f8727ae63bce4','REDIS BY ZABBIX AGENT 2','Zabbix','7.0-2',NULL,'0'), ('10316',NULL,'MySQL by Zabbix agent','3','-1','2','','','MySQL by Zabbix agent','0',NULL,E'Requirements for template operation: 1. Install Zabbix agent and MySQL client. If necessary, add the path to the ''mysql'' and ''mysqladmin'' utilities to the global environment variable PATH. 2. Copy the ''template_db_mysql.conf'' file with user parameters into folder with Zabbix agent configuration (/etc/zabbix/zabbix_agentd.d/ by default). Don''t forget to restart Zabbix agent. 3. Create the MySQL user that will be used for monitoring ('''' at your discretion). For example: CREATE USER ''zbx_monitor''@''%'' IDENTIFIED BY ''''; GRANT REPLICATION CLIENT,PROCESS,SHOW DATABASES,SHOW VIEW ON *.* TO ''zbx_monitor''@''%''; For more information, please see MySQL documentation (https://dev.mysql.com/doc/refman/8.0/en/grant.html). NOTE: In order to collect replication metrics, MariaDB Enterprise Server 10.5.8-5 and above and MariaDB Community Server 10.5.9 and above require the SLAVE MONITOR privilege to be set for the monitoring user: GRANT REPLICATION CLIENT,PROCESS,SHOW DATABASES,SHOW VIEW,SLAVE MONITOR ON *.* TO ''zbx_monitor''@''%''; For more information, please read the MariaDB documentation (https://mariadb.com/docs/server/ref/mdb/privileges/SLAVE_MONITOR/). 4. Create ''.my.cnf'' configuration file in the home directory of Zabbix agent for Linux distributions (/var/lib/zabbix by default) or ''my.cnf'' in c:\\ for Windows. For example: [client] protocol=tcp user=''zbx_monitor'' password='''' For more information, please see MySQL documentation (https://dev.mysql.com/doc/refman/8.0/en/option-files.html). NOTE: Linux distributions that use SELinux may require additional steps for access configuration. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384189-discussion-thread-for-official-zabbix-template-db-mysql Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','f255e3fc32124b55b2a17ef3c961e5f5','MYSQL BY ZABBIX AGENT','Zabbix','7.0-3',NULL,'0'), ('10317',NULL,'MySQL by ODBC','3','-1','2','','','MySQL by ODBC','0',NULL,'Requirements for template operation: 1. Create a MySQL user for monitoring. For example: CREATE USER ''zbx_monitor''@''%'' IDENTIFIED BY ''''; GRANT REPLICATION CLIENT,PROCESS,SHOW DATABASES,SHOW VIEW ON *.* TO ''zbx_monitor''@''%''; For more information please read the MySQL documentation https://dev.mysql.com/doc/refman/8.0/en/grant.html. NOTE: In order to collect replication metrics, MariaDB Enterprise Server 10.5.8-5 and above and MariaDB Community Server 10.5.9 and above require the SLAVE MONITOR privilege to be set for the monitoring user: GRANT REPLICATION CLIENT,PROCESS,SHOW DATABASES,SHOW VIEW,SLAVE MONITOR ON *.* TO ''zbx_monitor''@''%''; For more information please read the MariaDB documentation https://mariadb.com/docs/server/ref/mdb/privileges/SLAVE_MONITOR/ 2. Set the user name and password in the host macros ({$MYSQL.USER} and {$MYSQL.PASSWORD}). You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384189-discussion-thread-for-official-zabbix-template-db-mysql Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','e19c120027e04da69b130e0f6cea29fc','MYSQL BY ODBC','Zabbix','7.0-3',NULL,'0'), ('10318',NULL,'Docker by Zabbix agent 2','3','-1','2','','','Docker by Zabbix agent 2','0',NULL,'Get Docker engine metrics from plugin for the New Zabbix Agent (zabbix-agent2). You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/435429-discussion-thread-for-official-zabbix-template-docker Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','c5fd214cdd0d4b3b8272e73b022ba5c2','DOCKER BY ZABBIX AGENT 2','Zabbix','7.0-2',NULL,'0'), ('10319',NULL,'Memcached by Zabbix agent 2','3','-1','2','','','Memcached by Zabbix agent 2','0',NULL,'Get Memcached metrics from plugin for the New Zabbix Agent (zabbix-agent2). You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/398623-discussion-thread-for-official-zabbix-template-memcached Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','05894ba2c9184d33992bf1bd21c347f6','MEMCACHED BY ZABBIX AGENT 2','Zabbix','7.0-2',NULL,'0'), ('10320',NULL,'MySQL by Zabbix agent 2','3','-1','2','','','MySQL by Zabbix agent 2','0',NULL,'Requirements for template operation: 1. Create a MySQL user for monitoring. For example: CREATE USER ''zbx_monitor''@''%'' IDENTIFIED BY ''''; GRANT REPLICATION CLIENT,PROCESS,SHOW DATABASES,SHOW VIEW ON *.* TO ''zbx_monitor''@''%''; For more information please read the MySQL documentation https://dev.mysql.com/doc/refman/8.0/en/grant.html. NOTE: In order to collect replication metrics, MariaDB Enterprise Server 10.5.8-5 and above and MariaDB Community Server 10.5.9 and above require the SLAVE MONITOR privilege to be set for the monitoring user: GRANT REPLICATION CLIENT,PROCESS,SHOW DATABASES,SHOW VIEW,SLAVE MONITOR ON *.* TO ''zbx_monitor''@''%''; For more information please read the MariaDB documentation https://mariadb.com/docs/server/ref/mdb/privileges/SLAVE_MONITOR/ 2. Set in the {$MYSQL.DSN} macro the data source name of the MySQL instance either session name from Zabbix agent 2 configuration file or URI. Examples: MySQL1, tcp://localhost:3306, tcp://172.16.0.10, unix:/var/run/mysql.sock For more information about MySQL Unix socket file please read the MySQL documentation https://dev.mysql.com/doc/refman/8.0/en/problems-with-mysql-sock.html. 3. If you had set URI in the {$MYSQL.DSN}, please define the user name and password in host macros ({$MYSQL.USER} and {$MYSQL.PASSWORD}). Leave macros {$MYSQL.USER} and {$MYSQL.PASSWORD} empty if you use a session name. Set the user name and password in the Plugins.Mysql.<...> section of your Zabbix agent 2 configuration file. For more information about configuring the Zabbix MySQL plugin please read the documentation https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/src/go/plugins/mysql/README.md. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384189-discussion-thread-for-official-zabbix-template-db-mysql Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','4904f84303c74c5e955b7849730c3155','MYSQL BY ZABBIX AGENT 2','Zabbix','7.0-3',NULL,'0'), ('10321',NULL,'Chassis by IPMI','3','-1','2','','','Chassis by IPMI','0',NULL,'Template for monitoring servers with BMC over IPMI that work without any external scripts. All metrics are collected at once, thanks to Zabbix''s bulk data collection. The template is available starting from Zabbix version 5.0. It collects metrics by polling BMC remotely using an IPMI agent. Known Issues: Description: If the BMC has a sensor with an empty threshold value, we get the LLD error "Cannot create trigger...". You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/398023-discussion-thread-for-official-zabbix-template-ipmi Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','02f35169a5a54a5aad8b3f06e798ab1f','CHASSIS BY IPMI','Zabbix','7.0-1',NULL,'0'), ('10322',NULL,'Elasticsearch Cluster by HTTP','3','-1','2','','','Elasticsearch Cluster by HTTP','0',NULL,'The template to monitor Elasticsearch by Zabbix that work without any external scripts. It works with both standalone and cluster instances. The metrics are collected in one pass remotely using an HTTP agent. They are getting values from REST API ''_cluster/health'', ''_cluster/stats'', ''_nodes/stats'' requests. Setup: 1. Set the hostname or IP address of the Elasticsearch host in the ''{$ELASTICSEARCH.HOST}'' macro. 2. Set the login and password in the ''{$ELASTICSEARCH.USERNAME}'' and ''{$ELASTICSEARCH.PASSWORD}'' macros. 3. If you use an atypical location of ES API, don''t forget to change the macros ''{$ELASTICSEARCH.SCHEME}'',''{$ELASTICSEARCH.PORT}''. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/399473-discussion-thread-for-official-zabbix-template-for-elasticsearch Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','52b2664578884d9eba62e47375c99f8e','ELASTICSEARCH CLUSTER BY HTTP','Zabbix','7.0-3',NULL,'0'), ('10323',NULL,'ClickHouse by HTTP','3','-1','2','','','ClickHouse by HTTP','0',NULL,'This template is designed for the effortless deployment of ClickHouse monitoring by Zabbix via HTTP and doesn''t require any external scripts. Setup: 1. Create a user to monitor the service. For example, you could create a file ''/etc/clickhouse-server/users.d/zabbix.xml'' with the following content: zabbix_pass web default test 2. Set the hostname or IP address of the ClickHouse HTTP endpoint in the ''{$CLICKHOUSE.HOST}'' macro. You can also change the port in the ''{$CLICKHOUSE.PORT}'' macro and scheme in the ''{$CLICKHOUSE.SCHEME}'' macro if necessary. 3. Set the login and password in the macros ''{$CLICKHOUSE.USER}'' and ''{$CLICKHOUSE.PASSWORD}''. If you don''t need an authentication - remove headers from HTTP-Agent type items. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','95f2053c21094ad4968440b562cc7ea2','CLICKHOUSE BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10324',NULL,'Etcd by HTTP','3','-1','2','','','Etcd by HTTP','0',NULL,'This template is designed to monitor ''etcd'' by Zabbix that works without any external scripts. Most of the metrics are collected in one go, thanks to Zabbix bulk data collection. The template ''Etcd by HTTP'' — collects metrics by help of the HTTP agent from ''/metrics'' endpoint. Refer to the vendor documentation: https://etcd.io/docs/v3.5/op-guide/monitoring/#metrics-endpoint For the users of ''etcd version <= 3.4'': In ''etcd v3.5'' some metrics have been deprecated. See more details on ''Upgrade etcd from 3.4 to 3.5'': https://etcd.io/docs/v3.4/upgrades/upgrade_3_5/ Please upgrade your ''etcd'' instance, or use older ''Etcd by HTTP'' template version. Setup: 1. Make sure that ''etcd'' allows the collection of metrics. You can test it by running: curl -L http://localhost:2379/metrics 2. Check if ''etcd'' is accessible from Zabbix proxy or Zabbix server depending on where you are planning to do the monitoring. To verify it, run: curl -L http://:2379/metrics 3. Add the template to the ''etcd'' node. Set the hostname or IP address of the ''etcd'' host in the ''{$ETCD.HOST}'' macro. By default, the template uses a client''s port. You can configure metrics endpoint location by adding ''--listen-metrics-urls'' flag. For more details, see the etcd documentation: https://etcd.io/docs/v3.5/op-guide/configuration/#profiling-and-monitoring Additional points to consider: - If you have specified a non-standard port for ''etcd'', don''t forget to change macros: ''{$ETCD.SCHEME}'' and ''{$ETCD.PORT}''. - You can set ''{$ETCD.USERNAME}'' and ''{$ETCD.PASSWORD}'' macros in the template to use on a host level if necessary. - To test availability, run : ''zabbix_get -s etcd-host -k etcd.health''. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','b25b8b517a4743c48037bfa10af3dc3c','ETCD BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10325',NULL,'IIS by Zabbix agent','3','-1','2','','','IIS by Zabbix agent','0',NULL,'Get metrics from IIS using Zabbix agent running on Windows. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/401862-discussion-thread-for-official-zabbix-template-internet-information-services Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','c7c7e5dc319b4801982e719beb1c5191','IIS BY ZABBIX AGENT','Zabbix','7.0-3',NULL,'0'), ('10326',NULL,'IIS by Zabbix agent active','3','-1','2','','','IIS by Zabbix agent active','0',NULL,'Get metrics from IIS using Zabbix agent running on Windows. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/401862-discussion-thread-for-official-zabbix-template-internet-information-services Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','4677be3e07bf4f3285496f2f4230b928','IIS BY ZABBIX AGENT ACTIVE','Zabbix','7.0-3',NULL,'0'), ('10327',NULL,'MSSQL by ODBC','3','-1','2','','','MSSQL by ODBC','0',NULL,'This template is designed for the effortless deployment of MSSQL monitoring by Zabbix via ODBC and doesn''t require any external scripts. Setup: 1. Create an MSSQL user for monitoring. View Server State and View Any Definition permissions should be granted to the user. Grant this user read permissions to the sysjobschedules, sysjobhistory, and sysjobs tables. For more information, see MSSQL documentation: - Create a database user: https://docs.microsoft.com/en-us/sql/relational-databases/security/authentication-access/create-a-database-user?view=sql-server-ver16 - GRANT Server Permissions: https://docs.microsoft.com/en-us/sql/t-sql/statements/grant-server-permissions-transact-sql?view=sql-server-ver16 - Configure a User to Create and Manage SQL Server Agent Jobs: https://docs.microsoft.com/en-us/sql/ssms/agent/configure-a-user-to-create-and-manage-sql-server-agent-jobs?view=sql-server-ver16 2. Set the user name and password in the host macros ({$MSSQL.USER} and {$MSSQL.PASSWORD}). 3. Do not forget to install Microsoft ODBC driver on Zabbix server or Zabbix proxy and specify data source name in macro {$MSSQL.DSN}. See Microsoft documentation for instructions: https://docs.microsoft.com/en-us/sql/connect/odbc/linux-mac/installing-the-microsoft-odbc-driver-for-sql-server?view=sql-server-ver16. Note! Credentials in the odbc.ini do not work for MSSQL. The "Service''s TCP port state" item uses the {$MSSQL.HOST} and {$MSSQL.PORT} macros to check the availability of the MSSQL instance, change these if necessary. Keep in mind that if dynamic ports are used on the MSSQL server side, this check will not work correctly. If your instance uses a non-default TCP port, set the port in your section of odbc.ini in the line Server = IP or FQDN name, port. Note: You can use the context macros {$MSSQL.BACKUP_FULL.USED}, {$MSSQL.BACKUP_LOG.USED}, and {$MSSQL.BACKUP_DIFF.USED} to disable backup age triggers for a certain database. If set to a value other than "1", the trigger expression for the backup age will not fire. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','001a1677f6a949b6bddfdb2926023300','MSSQL BY ODBC','Zabbix','7.0-6',NULL,'0'), ('10328',NULL,'Oracle by ODBC','3','-1','2','','','Oracle by ODBC','0',NULL,'1. Create an Oracle user for monitoring. 2. Set the hostname or IP address of the Oracle DB instance, user name and password in host macros ({$ORACLE.HOST}, {$ORACLE.USER} and {$ORACLE.PASSWORD}). Do not forget to install the Microsoft ODBC driver on the Zabbix server or the Zabbix proxy. See Oracle documentation for instructions: https://www.oracle.com/database/technologies/releasenote-odbc-ic.html. Note! Credentials in the odbc.ini do not work for Oracle. Note! Be sure that ODBC connects to Oracle with session parameter NLS_NUMERIC_CHARACTERS= ''.,'' It is important for correct display float numbers in Zabbix. The "Service''s TCP port state" item uses {$ORACLE.HOST} and {$ORACLE.PORT} macros to check the availability of the listener. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','00ade9277d7c41e8b57d638b22d54372','ORACLE BY ODBC','Zabbix','7.0-2',NULL,'0'), ('10329',NULL,'PostgreSQL by Zabbix agent 2','3','-1','2','','','PostgreSQL by Zabbix agent 2','0',NULL,'This template is designed for the deployment of PostgreSQL monitoring by Zabbix via Zabbix agent 2 and uses a loadable plugin to run SQL queries. Setup: 1. Deploy Zabbix agent 2 with the PostgreSQL plugin. Starting with Zabbix versions 6.0.10 / 6.2.4 / 6.4 PostgreSQL metrics are moved to a loadable plugin and require installation of a separate package or compilation of the plugin from sources (https://www.zabbix.com/documentation/7.0/manual/extensions/plugins/build). 2. Create the PostgreSQL user for monitoring (`` at your discretion) and inherit permissions from the default role `pg_monitor`: CREATE USER zbx_monitor WITH PASSWORD '''' INHERIT; GRANT pg_monitor TO zbx_monitor; 3. Edit the `pg_hba.conf` configuration file to allow connections for the user `zbx_monitor`. You can check the PostgreSQL documentation for examples (https://www.postgresql.org/docs/current/auth-pg-hba-conf.html). 4. Set the connection string for the PostgreSQL instance in the `{$PG.CONNSTRING.AGENT2}` macro as URI, such as ``, or specify the named session - ``. Note: if you want to use SSL/TLS encryption to protect communications with the remote PostgreSQL instance, a named session must be used. In that case, the instance URI should be specified in the `Plugins.PostgreSQL.Sessions.*.Uri` parameter in the PostgreSQL plugin configuration files alongside all the encryption parameters (type, certificate/key filepaths if needed etc.). You can check the PostgreSQL plugin documentation (https://git.zabbix.com/projects/AP/repos/postgresql/browse?at=refs%2Fheads%2Frelease%2F7.0) for details about agent plugin parameters and named sessions. Also, it is assumed that you set up the PostgreSQL instance to work in the desired encryption mode. Check the PostgreSQL documentation (https://www.postgresql.org/docs/current/ssl-tcp.html) for details. Note that plugin TLS certificate validation relies on checking the Subject Alternative Names (SAN) instead of the Common Name (CN), check the cryptography package documentation (https://pkg.go.dev/crypto/x509) for details. For example, to enable required encryption in transport mode without identity checks you could create the file `/etc/zabbix/zabbix_agent2.d/postgresql_myconn.conf` with the following configuration for the named session `myconn` (replace `` with the address of the PostgreSQL instance): Plugins.PostgreSQL.Sessions.myconn.Uri=tcp://:5432 Plugins.PostgreSQL.Sessions.myconn.TLSConnect=required Then set the `{$PG.CONNSTRING.AGENT2}` macro to `myconn` to use this named session. 5. Set the password that you specified in step 2 in the macro `{$PG.PASSWORD}`. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384190-%C2%A0discussion-thread-for-official-zabbix-template-db-postgresql Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','d0ef7d659a8f4beaaabfc4b6134e737a','POSTGRESQL BY ZABBIX AGENT 2','Zabbix','7.0-3',NULL,'0'), ('10330',NULL,'PHP-FPM by Zabbix agent','3','-1','2','','','PHP-FPM by Zabbix agent','0',NULL,'Get PHP-FPM metrics using Zabbix agent running on Linux. Note that depending on your OS distribution, the PHP-FPM process name may vary. Please, check the actual name in the line "Name" from /proc//status file (https://www.zabbix.com/documentation/7.0/manual/appendix/items/proc_mem_num_notes) and change {$PHP_FPM.PROCESS.NAME.PARAMETER} macro if needed. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','1cbda0970410435684135884d0cb7090','PHP-FPM BY ZABBIX AGENT','Zabbix','7.0-1',NULL,'0'), ('10331',NULL,'PHP-FPM by HTTP','3','-1','2','','','PHP-FPM by HTTP','0',NULL,'Get PHP-FPM metrics using the Zabbix HTTP agent. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','49c77ce207f8478da53e761526d6eca5','PHP-FPM BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10333',NULL,'{#HV.UUID}','0','-1','2','','','{#HV.NAME}','2',NULL,'','1','1','','','','','0','1','051a1469d4d045cbbf818fcc843a352e','{#HV.NAME}','','',NULL,'0'), ('10334',NULL,'{#VM.UUID}','0','-1','2','','','{#VM.NAME}','2',NULL,'','1','1','','','','','0','1','23b9ae9d6f33414880db1cb107115810','{#VM.NAME}','','',NULL,'0'), ('10335',NULL,'Oracle by Zabbix agent 2','3','-1','2','','','Oracle by Zabbix agent 2','0',NULL,'Get metrics from Oracle Database using Zabbix agent 2. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','d670c32f007d438c9dcd32db57d2b691','ORACLE BY ZABBIX AGENT 2','Zabbix','7.0-2',NULL,'0'), ('10336',NULL,'Asterisk by HTTP','3','-1','2','','','Asterisk by HTTP','0',NULL,'The template gets Asterisk metrics from AMI by HTTP agent. You should enable the mini-HTTP Server, add the option webenabled=yes in the general section of the manager.conf file and create Asterisk Manager user with system and command write permissions within your Asterisk instance. Disable the PJSIP driver if you do not use PJSIP or do not have PJSIP endpoints. Please, define AMI address in the {$AMI.URL} macro. Also, set the hostname or IP address of the AMI host in the {$AMI.HOST} macro for Zabbix to check Asterisk service status. Then you can define {$AMI.USERNAME} and {$AMI.SECRET} macros in the template for using on the host level. If there are errors, increase the logging to debug level and see the Zabbix server log. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/410060-discussion-thread-for-official-zabbix-template-asterisk Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','30cc187a4e994c39b07f53d86b5cc6bc','ASTERISK BY HTTP','Zabbix','7.0-3',NULL,'0'), ('10343',NULL,'Linux by Zabbix agent active','3','-1','2','','','Linux by Zabbix agent active','0',NULL,'This is an official Linux template. It requires Zabbix agent 7.0 or newer. Notes on filesystem (FS) discovery: - The ext4/3/2 FS reserves space for privileged usage, typically set at 5% by default. - BTRFS allocates a default of 10% of the volume for its own needs. - To mitigate potential disasters, FS usage triggers are based on the maximum available space. - Utilization formula: ''pused = 100 - 100 * (available / total - free + available)'' - The FS utilization chart, derived from graph prototypes, reflects FS reserved space as the difference between used and available space from the total volume. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387225-discussion-thread-for-official-zabbix-template-for-linux Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','e2307c94f1744af7a8f1f458a67af424','LINUX BY ZABBIX AGENT ACTIVE','Zabbix','7.0-3',NULL,'0'), ('10351',NULL,'Windows by Zabbix agent active','3','-1','2','','','Windows by Zabbix agent active','0',NULL,'This is an official Windows template. It requires Zabbix agent 7.0 or newer. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387224-discussion-thread-for-official-zabbix-template-for-windows Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','5fdd2ca8b8f84962aaea5a218b46ea7d','WINDOWS BY ZABBIX AGENT ACTIVE','Zabbix','7.0-2',NULL,'0'), ('10353',NULL,'Ceph by Zabbix agent 2','3','-1','2','','','Ceph by Zabbix agent 2','0',NULL,'You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/410059-discussion-thread-for-official-zabbix-template-ceph Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','09fb25d089f7467f860895f6e71d3fa2','CEPH BY ZABBIX AGENT 2','Zabbix','7.0-2',NULL,'0'), ('10355',NULL,'Squid by SNMP','3','-1','2','','','Squid by SNMP','0',NULL,'Template for monitoring Squid caching proxy via SNMP You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/409339-discussion-thread-for-official-zabbix-template-squid Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','8e5236f799b347a8ae90a979198be85e','SQUID BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10357',NULL,'PostgreSQL by Zabbix agent','3','-1','2','','','PostgreSQL by Zabbix agent','0',NULL,'This template is designed for the deployment of PostgreSQL monitoring by Zabbix via Zabbix agent and uses user parameters to run SQL queries with the `psql` command-line tool. Note: - The template requires `pg_isready` and `psql` utilities to be installed on the same host with Zabbix agent. - The template requires files with SQL queries and user parameters that can be found in the Zabbix official repository: https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/templates/db/postgresql?at=refs%2Fheads%2Frelease%2F6.0 Setup: 1. Deploy Zabbix agent and create the PostgreSQL user for monitoring (`` at your discretion) with proper access rights to your PostgreSQL instance. For PostgreSQL version 10 and above: CREATE USER zbx_monitor WITH PASSWORD '''' INHERIT; GRANT pg_monitor TO zbx_monitor; For PostgreSQL version 9.6 and below: CREATE USER zbx_monitor WITH PASSWORD ''''; GRANT SELECT ON pg_stat_database TO zbx_monitor; ALTER USER zbx_monitor WITH SUPERUSER; 2. Copy the `postgresql/` directory to the `zabbix` user home directory - `/var/lib/zabbix/`. The `postgresql/` directory contains the files with SQL queries needed to obtain metrics from PostgreSQL instance. If the home directory of the `zabbix` user doesn''t exist, create it first: mkdir -m u=rwx,g=rwx,o= -p /var/lib/zabbix chown zabbix:zabbix /var/lib/zabbix 3. Copy the `template_db_postgresql.conf` file, containing user parameters, to the Zabbix agent configuration directory `/etc/zabbix/zabbix_agentd.d/` and restart Zabbix agent service. If you want to use SSL/TLS encryption to protect communications with the remote PostgreSQL instance, you can modify the connection string in user parameters. For example, to enable required encryption in transport mode without identity checks you could append `?sslmode=required` to the end of the connection string for all keys that use `psql`: UserParameter=pgsql.bgwriter[*], psql -qtAX postgresql://"$3":"$4"@"$1":"$2"/"$5"?sslmode=required -f "/var/lib/zabbix/postgresql/pgsql.bgwriter.sql" Consult the PostgreSQL documentation about protection modes (https://www.postgresql.org/docs/current/libpq-ssl.html#LIBPQ-SSL-PROTECTION) and client connection parameters (https://www.postgresql.org/docs/current/libpq-connect.html#LIBPQ-CONNECT-SSLMODE). Also, it is assumed that you set up the PostgreSQL instance to work in the desired encryption mode. Check the PostgreSQL documentation (https://www.postgresql.org/docs/current/ssl-tcp.html) for details. 4. Edit the `pg_hba.conf` configuration file to allow connections for the user `zbx_monitor`. You can check the PostgreSQL documentation for examples (https://www.postgresql.org/docs/current/auth-pg-hba-conf.html). 5. Specify the host name or IP address in the `{$PG.HOST}` macro. Adjust the port number with `{$PG.PORT}` macro if needed. 6. Set the password that you specified in step 1 in the macro `{$PG.PASSWORD}`. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384190-%C2%A0discussion-thread-for-official-zabbix-template-db-postgresql Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','399bd1ee587245ecac6f39beaa99886f','POSTGRESQL BY ZABBIX AGENT','Zabbix','7.0-2',NULL,'0'), ('10358',NULL,'Apache ActiveMQ by JMX','3','-1','2','','','Apache ActiveMQ by JMX','0',NULL,'The template to monitor Apache ActiveMQ by Zabbix that work without any external scripts. The metrics are collected by JMX. You can set macro values and add macros with context for specific brokers or destinations following macro description. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/411049-discussion-thread-for-official-zabbix-template-amq Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','c87e0a2e0683483ab7c6f3c380e9f840','APACHE ACTIVEMQ BY JMX','Zabbix','7.0-1',NULL,'0'), ('10359',NULL,'Aranet Cloud','3','-1','2','','','Aranet Cloud','0',NULL,'Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','af21edc47557400583e537904ea632aa','ARANET CLOUD','Zabbix','7.0-1',NULL,'0'), ('10360',NULL,'Microsoft Exchange Server 2016 by Zabbix agent','3','-1','2','','','Microsoft Exchange Server 2016 by Zabbix agent','0',NULL,'The template to monitor Microsoft Exchange Server 2016 by Zabbix that works without any external scripts. The metrics are collected by Zabbix agent. Recommended to use it with "OS Windows by Zabbix agent" template. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/415007-discussion-thread-for-official-zabbix-template-microsoft-exchange Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','cbf70ed444394566bcf213dd63d4d352','MICROSOFT EXCHANGE SERVER 2016 BY ZABBIX AGENT','Zabbix','7.0-1',NULL,'0'), ('10361',NULL,'Microsoft Exchange Server 2016 by Zabbix agent active','3','-1','2','','','Microsoft Exchange Server 2016 by Zabbix agent active','0',NULL,'The template to monitor Microsoft Exchange Server 2016 by Zabbix that works without any external scripts. The metrics are collected by Zabbix agent active. Recommended to use it with "OS Windows by Zabbix agent active" template. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/415007-discussion-thread-for-official-zabbix-template-microsoft-exchange Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','a0e05ca631034676821b7e0e1ce25488','MICROSOFT EXCHANGE SERVER 2016 BY ZABBIX AGENT ACTIVE','Zabbix','7.0-1',NULL,'0'), ('10362',NULL,'GitLab by HTTP','3','-1','2','','','GitLab by HTTP','0',NULL,'Get GitLab metrics by HTTP agent from Prometheus metrics endpoint. To access the metrics, the client IP address must be explicitly allowed. See https://docs.gitlab.com/ee/administration/monitoring/ip_whitelist.html. Or second method, using token variable from http://your.gitlab.address/admin/health_check (fill {$GITLAB.HEALTH.TOKEN} macro with variable path like "?token=your_token"). Don''t forget change macros {$GITLAB.URL}. Some metrics may not be collected depending on your Gitlab instance version and configuration. See (Gitlab''s documentation[)https://docs.gitlab.com/ee/administration/monitoring/prometheus/gitlab_metrics.html] for further information about its metric collection. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','f445dac89ff74deabaae9dcb84815998','GITLAB BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10363',NULL,'Hadoop by HTTP','3','-1','2','','','Hadoop by HTTP','0',NULL,'The template gets the Hadoop metrics from cluster''s hosts (ResourceManager, NodeManagers, NameNode, DataNodes) by HTTP agent. You should define the IP address (or FQDN) and Web-UI port for the ResourceManager in {$HADOOP.RESOURCEMANAGER.HOST} and {$HADOOP.RESOURCEMANAGER.PORT} macros and for the NameNode in {$HADOOP.NAMENODE.HOST} and {$HADOOP.NAMENODE.PORT} macros respectively. Macros can be set in the template or overridden at the host level. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/413459-discussion-thread-for-official-zabbix-template-hadoop Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','e129aeba7c814bf189772cf5919b4bbb','HADOOP BY HTTP','Zabbix','7.0-2',NULL,'0'), ('10364',NULL,'Apache Kafka by JMX','3','-1','2','','','Apache Kafka by JMX','0',NULL,'Official JMX Template for Apache Kafka. The metrics are collected by JMX. You can set {$KAFKA.USER} and {$KAFKA.PASSWORD} macros in the template for using on the host level. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','2eb43a3c9666467683b9ce09d2bd26d7','APACHE KAFKA BY JMX','Zabbix','7.0-1',NULL,'0'), ('10365',NULL,'HashiCorp Vault by HTTP','3','-1','2','','','HashiCorp Vault by HTTP','0',NULL,'Get HashiCorp Vault metrics from Vault API HTTP Prometheus metrics endpoint. Some metrics may not be collected depending on your Vault instance version and configuration. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','2f82248e411340429d390e8389850401','HASHICORP VAULT BY HTTP','Zabbix','7.0-2',NULL,'0'), ('10366',NULL,'VMware FQDN','3','-1','2','','','VMware FQDN','0',NULL,'You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/ Note: To enable discovery of hardware sensors of VMware Hypervisors, set the macro ''{$VMWARE.HV.SENSOR.DISCOVERY}'' to the value ''true'' on the discovered host level. Note: To create custom performance counter see documentation: https://www.zabbix.com/documentation/7.0/manual/vm_monitoring/vmware_keys#footnotes Note: To get all supported counters and generate path for custom performance counter see documentation: https://www.zabbix.com/documentation/7.0/manual/appendix/items/perf_counters Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','ca02e82e6c414d0aa7aedc8d78468a49','VMWARE FQDN','Zabbix','7.0-2',NULL,'0'), ('10367',NULL,'{#HV.UUID}','0','-1','2','','','{#HV.NAME}','2',NULL,'','1','1','','','','','0','1','51cf7ea3e6a74f7e8dde628dbc5347a3','{#HV.NAME}','','',NULL,'0'), ('10368',NULL,'{#VM.DNS}','0','-1','2','','','{#VM.NAME}','2',NULL,'','1','1','','','','','0','1','a12e25c500a14fcf99295c207371ca1b','{#VM.NAME}','','',NULL,'0'), ('10369',NULL,'Zookeeper by HTTP','3','-1','2','','','Zookeeper by HTTP','0',NULL,'This template is designed for the effortless deployment of Apache Zookeeper monitoring by Zabbix via HTTP and doesn''t require any external scripts. This template works with standalone and cluster instances. Metrics are collected from each Zookeeper node by requests to AdminServer Setup: 1. Enable the AdminServer and configure the parameters according to the official documentation: https://zookeeper.apache.org/doc/current/zookeeperAdmin.html#sc_adminserver_config 2. Set the hostname or IP address of the Apache Zookeeper host in the ''{$ZOOKEEPER.HOST}'' macro. You can also change the ''{$ZOOKEEPER.COMMAND_URL}'', ''{$ZOOKEEPER.PORT}'' and ''{$ZOOKEEPER.SCHEME}'' macros if necessary. You can discuss this template or leave feedback on our forum: https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','b606eda347ea4663a33ad4d12a482750','ZOOKEEPER BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10370',NULL,'Apache Cassandra by JMX','3','-1','2','','','Apache Cassandra by JMX','0',NULL,'The template to monitor Apache Cassandra by Zabbix that work without any external scripts. It works with both standalone and cluster instances. The metrics are collected by JMX. You can set {$CASSANDRA.USER} and {$CASSANDRA.PASSWORD} macros in the template for using on the host level. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/410057-discussion-thread-for-official-zabbix-template-apache-cassandra Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','5c42de26643c4b43b23a11159df021ce','APACHE CASSANDRA BY JMX','Zabbix','7.0-1',NULL,'0'), ('10371',NULL,'Morningstar ProStar MPPT by SNMP','3','-1','2','','','Morningstar ProStar MPPT by SNMP','0',NULL,'MIBs used: PROSTAR-MPPT Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','b84324c2a40a496dbbb379bbf5dde8d5','MORNINGSTAR PROSTAR MPPT BY SNMP','Zabbix','7.0-3',NULL,'0'), ('10372',NULL,'Morningstar ProStar PWM by SNMP','3','-1','2','','','Morningstar ProStar PWM by SNMP','0',NULL,'MIBs used: PROSTAR-PWM Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','24bed6339f0a492fab86fe757394b937','MORNINGSTAR PROSTAR PWM BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10373',NULL,'Morningstar SunSaver MPPT by SNMP','3','-1','2','','','Morningstar SunSaver MPPT by SNMP','0',NULL,'MIBs used: SUNSAVER-MPPT Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','f1336fd88ab0415a9c02892a71e50032','MORNINGSTAR SUNSAVER MPPT BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10374',NULL,'Morningstar SureSine by SNMP','3','-1','2','','','Morningstar SureSine by SNMP','0',NULL,'MIBs used: SURESINE Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','3bbfe42c78c74f04a2565431fbdd19e2','MORNINGSTAR SURESINE BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10375',NULL,'Morningstar TriStar MPPT 600V by SNMP','3','-1','2','','','Morningstar TriStar MPPT 600V by SNMP','0',NULL,'MIBs used: TRISTAR-MPPT Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','2d20a2fbd540492089fdcafc8feb60e3','MORNINGSTAR TRISTAR MPPT 600V BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10376',NULL,'Morningstar TriStar MPPT by SNMP','3','-1','2','','','Morningstar TriStar MPPT by SNMP','0',NULL,'MIBs used: TRISTAR-MPPT Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','07b32152c3654e8ead4c1eeae24efa8f','MORNINGSTAR TRISTAR MPPT BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10377',NULL,'Morningstar TriStar PWM by SNMP','3','-1','2','','','Morningstar TriStar PWM by SNMP','0',NULL,'MIBs used: TRISTAR Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','230fa9f7c1774821bbe6cdcbbba5cbc6','MORNINGSTAR TRISTAR PWM BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10378',NULL,'NetApp FAS3220 by SNMP','3','-1','2','','','NetApp FAS3220 by SNMP','0',NULL,'The template to monitor SAN NetApp FAS3220 cluster by Zabbix SNMP agent. MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB NETAPP-MIB IF-MIB You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/416694-discussion-thread-for-official-zabbix-template-netapp-fas3220 Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','e118ab11c1ec4f9cbe21dfce1441c0f6','NETAPP FAS3220 BY SNMP','Zabbix','7.0-3',NULL,'0'), ('10379',NULL,'Jenkins by HTTP','3','-1','2','','','Jenkins by HTTP','0',NULL,'Get Jenkins metrics by HTTP agent. Metrics are collected by requests to Metrics API. Install Metrics plugin and configure access to the Metrics Servlet by issuing API key. Don''t forget to change macros {$JENKINS.URL}, {$JENKINS.USER}, {$JENKINS.API.TOKEN}, {$JENKINS.API.KEY}. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','2ef2f2eb75ee4a0bae839e22aa76e5fc','JENKINS BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10380',NULL,'Hikvision camera by HTTP','3','-1','2','','','Hikvision camera by HTTP','0',NULL,'This template is designed for the effortless deployment of Hikvision cameras monitoring by Zabbix via HTTP and doesn''t require any external scripts. Sample device overview page: https://www.hikvision.com/en/products/IP-Products/Network-Cameras/ Setup: 1. Set the hostname or IP address of the Hikvision ISAPI host in the ''{$HIKVISION_ISAPI_HOST}'' macro. 2. Set the user name and password in the ''{$PASSWORD}'' and ''{$USER}'' macros. 3. Change other macros according to your camera configuration if necessary. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','3fb4020df2984b0ab64dfd8355ff5c65','HIKVISION CAMERA BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10381',NULL,'Ignite by JMX','3','-1','2','','','Ignite by JMX','0',NULL,'The template to monitor Apache Ignite by Zabbix that work without any external scripts. It works with both standalone and cluster instances. The metrics are discoverable and collected by JMX. Current JMX tree hierarchy contains classloader by default. Add the following jvm option `-DIGNITE_MBEAN_APPEND_CLASS_LOADER_ID=false`to will exclude one level with Classloader name. You can set {$IGNITE.USER} and {$IGNITE.PASSWORD} macros in the template for using on the host level. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/ Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','ab05dbb15ff047f192782f617f0627ac','IGNITE BY JMX','Zabbix','7.0-2',NULL,'0'), ('10382',NULL,'Microsoft SharePoint by HTTP','3','-1','2','','','Microsoft SharePoint by HTTP','0',NULL,'Overview: Template receives data via HTTP Agent. Setup: Create a new host. Define macros according to your Sharepoint web portal. It is recommended to fill in the values of the filter macros to avoid getting redundant data. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','8d5fe5b4ebb64255a2429b34c7dd3681','MICROSOFT SHAREPOINT BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10385',NULL,'Huawei OceanStor 5300 V5 by SNMP','3','-1','2','','','Huawei OceanStor 5300 V5 by SNMP','0',NULL,'The template to monitor SAN Huawei OceanStor 5300 V5 by Zabbix SNMP agent. MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/418855-discussion-thread-for-official-zabbix-template-huawei-oceanstor Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','c5564dd58c394b969d5365cc5de3e7f8','HUAWEI OCEANSTOR 5300 V5 BY SNMP','Zabbix','7.0-3',NULL,'0'), ('10386',NULL,'MongoDB node by Zabbix agent 2','3','-1','2','','','MongoDB node by Zabbix agent 2','0',NULL,'Get MongoDB metrics from plugin for the zabbix-agent2. 1. Setup and configure zabbix-agent2 compiled with the MongoDB monitoring plugin. 2. Set the {$MONGODB.CONNSTRING} such as or named session. 3. Set the user name and password in host macros ({$MONGODB.USER}, {$MONGODB.PASSWORD}) if you want to override parameters from the Zabbix agent configuration file. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420659-discussion-thread-for-official-zabbix-template-db-mongodb Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','81aa8c5ab5594f77a2b26fb7f5094048','MONGODB NODE BY ZABBIX AGENT 2','Zabbix','7.0-1',NULL,'0'), ('10387',NULL,'MongoDB cluster by Zabbix agent 2','3','-1','2','','','MongoDB cluster by Zabbix agent 2','0',NULL,'Get MongoDB metrics from plugin for the zabbix-agent2. 1. Setup and configure zabbix-agent2 compiled with the MongoDB monitoring plugin. 2. Set the {$MONGODB.CONNSTRING} such as or named session. 3. Set the user name and password in host macros ({$MONGODB.USER}, {$MONGODB.PASSWORD}) if you want to override parameters from the Zabbix agent configuration file. All sharded Mongodb nodes (mongod) will be discovered with attached template "MongoDB node". You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420659-discussion-thread-for-official-zabbix-template-db-mongodb Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','d38b271797bd41f2ad8c79d83b9d8d9c','MONGODB CLUSTER BY ZABBIX AGENT 2','Zabbix','7.0-1',NULL,'0'), ('10388',NULL,'{#HOSTNAME}','0','-1','2','','','{#HOSTNAME}','2',NULL,'','1','1','','','','','0','0','809db5d8d32a45898e8401f288a42fac','{#HOSTNAME}','','',NULL,'0'), ('10389',NULL,'{#HOSTNAME}','0','-1','2','','','{#HOSTNAME}','2',NULL,'','1','1','','','','','0','0','3fcd3244b1234186bda9a35c8f61c850','{#HOSTNAME}','','',NULL,'0'), ('10390',NULL,'Cisco Catalyst 3750V2-24FS by SNMP','3','-1','2','','','Cisco Catalyst 3750V2-24FS by SNMP','0',NULL,'Template Cisco Catalyst 3750V2-24FS MIBs used: CISCO-MEMORY-POOL-MIB IF-MIB EtherLike-MIB SNMPv2-MIB CISCO-PROCESS-MIB CISCO-ENVMON-MIB ENTITY-MIB You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/418396-discussion-thread-for-official-zabbix-templates-for-cisco Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','6ff896f545e043cc98de6d98698d41df','CISCO CATALYST 3750V2-24FS BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10391',NULL,'Cisco Catalyst 3750V2-24PS by SNMP','3','-1','2','','','Cisco Catalyst 3750V2-24PS by SNMP','0',NULL,'Template Cisco Catalyst 3750V2-24PS MIBs used: CISCO-MEMORY-POOL-MIB IF-MIB EtherLike-MIB SNMPv2-MIB CISCO-PROCESS-MIB CISCO-ENVMON-MIB ENTITY-MIB You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/418396-discussion-thread-for-official-zabbix-templates-for-cisco Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','4583f0c3bc894251a6c5e7129cb5b9aa','CISCO CATALYST 3750V2-24PS BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10392',NULL,'Cisco Catalyst 3750V2-24TS by SNMP','3','-1','2','','','Cisco Catalyst 3750V2-24TS by SNMP','0',NULL,'Template Cisco Catalyst 3750V2-24TS MIBs used: CISCO-MEMORY-POOL-MIB IF-MIB EtherLike-MIB SNMPv2-MIB CISCO-PROCESS-MIB CISCO-ENVMON-MIB ENTITY-MIB You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/418396-discussion-thread-for-official-zabbix-templates-for-cisco Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','30d084c6b7844b7cab6cf820b00bb7b2','CISCO CATALYST 3750V2-24TS BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10393',NULL,'Cisco Catalyst 3750V2-48PS by SNMP','3','-1','2','','','Cisco Catalyst 3750V2-48PS by SNMP','0',NULL,'Template Cisco Catalyst 3750V2-48PS MIBs used: CISCO-MEMORY-POOL-MIB IF-MIB EtherLike-MIB SNMPv2-MIB CISCO-PROCESS-MIB CISCO-ENVMON-MIB ENTITY-MIB You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/418396-discussion-thread-for-official-zabbix-templates-for-cisco Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','ea096c13a09b4d7a9be0aab1cec95206','CISCO CATALYST 3750V2-48PS BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10394',NULL,'Cisco Catalyst 3750V2-48TS by SNMP','3','-1','2','','','Cisco Catalyst 3750V2-48TS by SNMP','0',NULL,'Template Cisco Catalyst 3750V2-48TS MIBs used: CISCO-MEMORY-POOL-MIB IF-MIB EtherLike-MIB SNMPv2-MIB CISCO-PROCESS-MIB CISCO-ENVMON-MIB ENTITY-MIB You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/418396-discussion-thread-for-official-zabbix-templates-for-cisco Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','f744679600844c07b2b4eedda9bc3d0c','CISCO CATALYST 3750V2-48TS BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10395',NULL,'APC UPS by SNMP','3','-1','2','','','APC UPS by SNMP','0',NULL,'Template Power APC UPS MIBs used: HOST-RESOURCES-MIB PowerNet-MIB SNMPv2-MIB You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','3ec55c9966624ef5bc1b50502812d581','APC UPS BY SNMP','Zabbix','7.0-3',NULL,'0'), ('10396',NULL,'NetApp AFF A700 by HTTP','3','-1','2','','','NetApp AFF A700 by HTTP','0',NULL,'The template to monitor SAN NetApp AFF A700 cluster by Zabbix HTTP agent. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/ Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','79267c69f54a4e59b4152aba4e8c4bd5','NETAPP AFF A700 BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10397',NULL,'TiDB PD by HTTP','3','-1','2','','','TiDB PD by HTTP','0',NULL,'The template to monitor PD server of TiDB cluster by Zabbix that works without any external scripts. Most of the metrics are collected in one go, thanks to Zabbix bulk data collection. Don''t forget to change the macros {$PD.URL}, {$PD.PORT}. Template `TiDB PD by HTTP` — collects metrics by HTTP agent from PD /metrics endpoint and from monitoring API. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','43596328d4d74a5592906a9e08e3fd96','TIDB PD BY HTTP','Zabbix','7.0-2',NULL,'0'), ('10398',NULL,'TiDB by HTTP','3','-1','2','','','TiDB by HTTP','0',NULL,'The template to monitor TiDB server of TiDB cluster by Zabbix that works without any external scripts. Most of the metrics are collected in one go, thanks to Zabbix bulk data collection. Don''t forget to change the macros {$TIDB.URL}, {$TIDB.PORT}. Template `TiDB by HTTP` — collects metrics by HTTP agent from PD /metrics endpoint and from monitoring API. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','8ec72ebbe3204d7789429640abcac610','TIDB BY HTTP','Zabbix','7.0-2',NULL,'0'), ('10399',NULL,'TiDB TiKV by HTTP','3','-1','2','','','TiDB TiKV by HTTP','0',NULL,'The template to monitor TiKV server of TiDB cluster by Zabbix that works without any external scripts. Most of the metrics are collected in one go, thanks to Zabbix bulk data collection. Don''t forget to change the macros {$TIKV.URL}, {$TIKV.PORT}. Template `TiDB TiKV by HTTP` — collects metrics by HTTP agent from TiKV /metrics endpoint. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','3a0bbbb2ec0a4c58bba3ba3a3d6ce660','TIDB TIKV BY HTTP','Zabbix','7.0-2',NULL,'0'), ('10400',NULL,'APC UPS Galaxy 3500 by SNMP','3','-1','2','','','APC UPS Galaxy 3500 by SNMP','0',NULL,'Template Power APC UPS Galaxy 3500 MIBs used: HOST-RESOURCES-MIB PowerNet-MIB SNMPv2-MIB You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','5d3971cd973b46e7915d7ae0750bac57','APC UPS GALAXY 3500 BY SNMP','Zabbix','7.0-3',NULL,'0'), ('10401',NULL,'APC Smart-UPS 2200 RM by SNMP','3','-1','2','','','APC Smart-UPS 2200 RM by SNMP','0',NULL,'Template Power APC Smart-UPS 2200 RM MIBs used: HOST-RESOURCES-MIB PowerNet-MIB SNMPv2-MIB You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','e8c0b2c40e884f1598d86f3edf020ea7','APC SMART-UPS 2200 RM BY SNMP','Zabbix','7.0-3',NULL,'0'), ('10402',NULL,'APC Smart-UPS 3000 XLM by SNMP','3','-1','2','','','APC Smart-UPS 3000 XLM by SNMP','0',NULL,'Template Power APC Smart-UPS 3000 XLM MIBs used: HOST-RESOURCES-MIB PowerNet-MIB SNMPv2-MIB You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','eafd78764fde4110b9e46ae184f327ba','APC SMART-UPS 3000 XLM BY SNMP','Zabbix','7.0-3',NULL,'0'), ('10403',NULL,'APC Smart-UPS RT 1000 RM XL by SNMP','3','-1','2','','','APC Smart-UPS RT 1000 RM XL by SNMP','0',NULL,'Template Power APC Smart-UPS RT 1000 RM XL MIBs used: HOST-RESOURCES-MIB PowerNet-MIB SNMPv2-MIB You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','340ec6917c274ead8fab36925e57f30a','APC SMART-UPS RT 1000 RM XL BY SNMP','Zabbix','7.0-3',NULL,'0'), ('10404',NULL,'APC Smart-UPS RT 1000 XL by SNMP','3','-1','2','','','APC Smart-UPS RT 1000 XL by SNMP','0',NULL,'Template Power APC Smart-UPS RT 1000 XL MIBs used: HOST-RESOURCES-MIB PowerNet-MIB SNMPv2-MIB You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','32d3c78ff44c4c3c9ff5b893ad7f5fc9','APC SMART-UPS RT 1000 XL BY SNMP','Zabbix','7.0-3',NULL,'0'), ('10406',NULL,'APC Smart-UPS SRT 8000 by SNMP','3','-1','2','','','APC Smart-UPS SRT 8000 by SNMP','0',NULL,'Template Power APC Smart-UPS SRT 8000 MIBs used: HOST-RESOURCES-MIB PowerNet-MIB SNMPv2-MIB You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','b3caafda8c5345cc832ac3be3cefa615','APC SMART-UPS SRT 8000 BY SNMP','Zabbix','7.0-3',NULL,'0'), ('10407',NULL,'APC UPS Symmetra LX by SNMP','3','-1','2','','','APC UPS Symmetra LX by SNMP','0',NULL,'Template Power APC UPS Symmetra LX MIBs used: HOST-RESOURCES-MIB PowerNet-MIB SNMPv2-MIB You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','0b9a899ff8f1467c9fdf999d02b9fd77','APC UPS SYMMETRA LX BY SNMP','Zabbix','7.0-3',NULL,'0'), ('10408',NULL,'APC UPS Symmetra RM by SNMP','3','-1','2','','','APC UPS Symmetra RM by SNMP','0',NULL,'Template Power APC UPS Symmetra RM MIBs used: HOST-RESOURCES-MIB PowerNet-MIB SNMPv2-MIB You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','1dac0a88c3774315b90622a48031e369','APC UPS SYMMETRA RM BY SNMP','Zabbix','7.0-3',NULL,'0'), ('10409',NULL,'APC UPS Symmetra RX by SNMP','3','-1','2','','','APC UPS Symmetra RX by SNMP','0',NULL,'Template Power APC UPS Symmetra RX MIBs used: HOST-RESOURCES-MIB PowerNet-MIB SNMPv2-MIB You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','4ffb0f9103084384a98379ed533865e9','APC UPS SYMMETRA RX BY SNMP','Zabbix','7.0-3',NULL,'0'), ('10410',NULL,'WildFly Domain by JMX','3','-1','2','','','WildFly Domain by JMX','0',NULL,'Official JMX Template for WildFly. The metrics are collected by JMX. This template works with Domain Controller. You can set {$WILDFLY.USER} and {$WILDFLY.PASSWORD} macros in the template for using on the host level. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','4b27e636b6ad4ce68511d344d5604999','WILDFLY DOMAIN BY JMX','Zabbix','7.0-1',NULL,'0'), ('10411',NULL,'WildFly Server by JMX','3','-1','2','','','WildFly Server by JMX','0',NULL,'Official JMX Template for WildFly. The metrics are collected by JMX. This template works with standalone and domain instances. You can set {$WILDFLY.USER} and {$WILDFLY.PASSWORD} macros in the template for using on the host level. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','2bf5827343f0420792ad953f290baa05','WILDFLY SERVER BY JMX','Zabbix','7.0-1',NULL,'0'), ('10412',NULL,'APC Smart-UPS SRT 5000 by SNMP','3','-1','2','','','APC Smart-UPS SRT 5000 by SNMP','0',NULL,'Template Power APC Smart-UPS SRT 5000 MIBs used: HOST-RESOURCES-MIB PowerNet-MIB SNMPv2-MIB You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','8ec76aeb703747a5affdf435bc12f572','APC SMART-UPS SRT 5000 BY SNMP','Zabbix','7.0-3',NULL,'0'), ('10413',NULL,'Website certificate by Zabbix agent 2','3','-1','2','','','Website certificate by Zabbix agent 2','0',NULL,'The template to monitor TLS/SSL certificate on the website by Zabbix agent 2 that works without any external scripts. Zabbix agent 2 with the WebCertificate plugin requests certificate using the web.certificate.get key and returns JSON with certificate attributes. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/428309-discussion-thread-for-official-zabbix-template-tls-ssl-certificates-monitoring Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','5630ec1b1baf449abe1bc5521f85fe6c','WEBSITE CERTIFICATE BY ZABBIX AGENT 2','Zabbix','7.0-1',NULL,'0'), ('10414',NULL,'Cloudflare by HTTP','3','-1','2','','','Cloudflare by HTTP','0',NULL,'The template to monitor Cloudflare to see your web traffic and DNS metrics. It works without any external scripts and uses Script item. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','08ef3d687d754b0aba17e1dcbd77d4bd','CLOUDFLARE BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10415',NULL,'NGINX Plus by HTTP','3','-1','2','','','NGINX Plus by HTTP','0',NULL,'Get Nginx Plus metrics by HTTP agent. Metrics are collected by requests to Nginx Plus API. Don''t forget to change macros {$NGINX.API.ENDPOINT}. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','8cad0f2564694416b60bd8a414948641','NGINX PLUS BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10416',NULL,'Systemd by Zabbix agent 2','3','-1','2','','','Systemd by Zabbix agent 2','0',NULL,'Get systemd units metrics from plugin for the zabbix-agent2. 1. Setup and configure zabbix-agent2 compiled with the Systemd monitoring plugin. 2. Set filters with macros if you want to override default filter parameters. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/ Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','90ac276995294a6aa88462c032d2ddaf','SYSTEMD BY ZABBIX AGENT 2','Zabbix','7.0-2',NULL,'0'), ('10417',NULL,'GridGain by JMX','3','-1','2','','','GridGain by JMX','0',NULL,'The template to monitor GridGain In-Memory Computing Platform by Zabbix that work without any external scripts. It works with both standalone and cluster instances. The metrics are discoverable and collected by JMX. Current JMX tree hierarchy contains classloader by default. Add the following jvm option `-DIGNITE_MBEAN_APPEND_CLASS_LOADER_ID=false`to will exclude one level with Classloader name. You can set {$GRIDGAIN.USER} and {$GRIDGAIN.PASSWORD} macros in the template for using on the host level. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/ Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','47d87c39c121429b98a18f641aa443ea','GRIDGAIN BY JMX','Zabbix','7.0-2',NULL,'0'), ('10418',NULL,'Cisco ASAv by SNMP','3','-1','2','','','Cisco ASAv by SNMP','0',NULL,'Template Net Cisco ASAv MIBs used: CISCO-PORT-MIB CISCO-MEMORY-POOL-MIB CISCO-REMOTE-ACCESS-MONITOR-MIB IF-MIB RFC1213-MIB CISCO-PROCESS-MIB ENTITY-MIB You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/418396-discussion-thread-for-official-zabbix-templates-for-cisco Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','75d009cd4dc84ee7a8fc479fa2fbaeee','CISCO ASAV BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10419',NULL,'F5 Big-IP by SNMP','3','-1','2','','','F5 Big-IP by SNMP','0',NULL,'MIBs used: RFC1213-MIB F5-BIGIP-LOCAL-MIB F5-BIGIP-SYSTEM-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','44c2c2d94a4447c6a924386640e4854a','F5 BIG-IP BY SNMP','Zabbix','7.0-5',NULL,'0'), ('10420',NULL,'ZYXEL AAM1212-51 IES-612 by SNMP','3','-1','2','','','ZYXEL AAM1212-51 IES-612 by SNMP','0',NULL,'ZYXEL AAM1212-51 / IES-612 MIBs used: RFC1213-MIB HOST-RESOURCES-MIB ADSL-LINE-MIB ZYXEL-IESCOMMON-MIB IF-MIB Known Issues: Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings. Version: all versions firmware Device: ZYXEL AAM1212-51 / IES-612 You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','3a71dcdcfe0b4a0e8284d8939d335cce','ZYXEL AAM1212-51 IES-612 BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10421',NULL,'ZYXEL ES3500-8PD by SNMP','3','-1','2','','','ZYXEL ES3500-8PD by SNMP','0',NULL,'ZYXEL ES3500-8PD MIBs used: RFC1213-MIB HOST-RESOURCES-MIB ZYXEL-ES3500-8PD-MIB IF-MIB Known Issues: Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings. Version: all versions firmware Device: ZYXEL ES3500-8PD You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','b8a6f34fd5c447b1b9310746a96f4e80','ZYXEL ES3500-8PD BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10422',NULL,'ZYXEL GS-4012F by SNMP','3','-1','2','','','ZYXEL GS-4012F by SNMP','0',NULL,'ZYXEL GS-4012F MIBs used: ZYXEL-GS4012F-MIB RFC1213-MIB HOST-RESOURCES-MIB IF-MIB Known Issues: Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings. Version: all versions firmware Device: ZYXEL GS-4012F You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','73f123bb9ffe4587a0269c7e8752b2ed','ZYXEL GS-4012F BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10423',NULL,'ZYXEL IES-500x by SNMP','3','-1','2','','','ZYXEL IES-500x by SNMP','0',NULL,'ZYXEL IES-500x MIBs used: RFC1213-MIB HOST-RESOURCES-MIB ADSL-LINE-MIB ZYXEL-IES5000-MIB IF-MIB Known Issues: Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings. Version: all versions firmware Device: ZYXEL IES-500x You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','3db86b0d235e4c7b80f7d6144ca08925','ZYXEL IES-500X BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10424',NULL,'ZYXEL IES-6000 by SNMP','3','-1','2','','','ZYXEL IES-6000 by SNMP','0',NULL,'ZYXEL IES-6000 MIBs used: RFC1213-MIB HOST-RESOURCES-MIB ADSL-LINE-MIB ZYXEL-IES5000-MIB IF-MIB Known Issues: Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings. Version: all versions firmware Device: ZYXEL IES-6000 You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','3645654baaf04f11927b171bcb048349','ZYXEL IES-6000 BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10425',NULL,'ZYXEL IES1248-51 by SNMP','3','-1','2','','','ZYXEL IES1248-51 by SNMP','0',NULL,'ZYXEL IES1248-51 MIBs used: RFC1213-MIB HOST-RESOURCES-MIB ADSL-LINE-MIB ZYXEL-IESCOMMON-MIB IF-MIB Known Issues: Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings. Version: all versions firmware Device: ZYXEL IES1248-51 You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','8e6d7067cd094e56a52db999b3199edc','ZYXEL IES1248-51 BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10426',NULL,'ZYXEL MES-3528 by SNMP','3','-1','2','','','ZYXEL MES-3528 by SNMP','0',NULL,'ZYXEL MES-3528 MIBs used: RFC1213-MIB HOST-RESOURCES-MIB ZYXEL-MES3528-MIB IF-MIB Known Issues: Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings. Version: all versions firmware Device: ZYXEL MES-3528 You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','249de8d8d21e4dda9c3f766ab6201378','ZYXEL MES-3528 BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10427',NULL,'ZYXEL MES3500-10 by SNMP','3','-1','2','','','ZYXEL MES3500-10 by SNMP','0',NULL,'ZYXEL MES3500-10 MIBs used: RFC1213-MIB HOST-RESOURCES-MIB ZYXEL-MES3500-10-MIB IF-MIB Known Issues: Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings. Version: all versions firmware Device: ZYXEL MES3500-10 You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','21a95afef0e74fb19691693090403d1d','ZYXEL MES3500-10 BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10428',NULL,'ZYXEL MES3500-24 by SNMP','3','-1','2','','','ZYXEL MES3500-24 by SNMP','0',NULL,'ZYXEL MES3500-24 MIBs used: RFC1213-MIB HOST-RESOURCES-MIB ZYXEL-MES3500-24-MIB IF-MIB Known Issues: Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings. Version: all versions firmware Device: ZYXEL MES3500-24 You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','292970ad91204722b5e5cb3233fc0026','ZYXEL MES3500-24 BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10429',NULL,'ZYXEL MGS-3712 by SNMP','3','-1','2','','','ZYXEL MGS-3712 by SNMP','0',NULL,'ZYXEL MGS-3712 MIBs used: RFC1213-MIB HOST-RESOURCES-MIB ZYXEL-MGS3712F-MIB IF-MIB Known Issues: Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings. Version: all versions firmware Device: ZYXEL MGS-3712 You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','8ea7299983f24d0a913606e334f0e526','ZYXEL MGS-3712 BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10430',NULL,'ZYXEL MGS-3712F by SNMP','3','-1','2','','','ZYXEL MGS-3712F by SNMP','0',NULL,'ZYXEL MGS-3712F MIBs used: RFC1213-MIB HOST-RESOURCES-MIB ZYXEL-MGS3712F-MIB IF-MIB Known Issues: Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings. Version: all versions firmware Device: ZYXEL MGS-3712F You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','01deb47efa1f4a9092de67fd61820a7d','ZYXEL MGS-3712F BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10431',NULL,'ZYXEL MES3500-24S by SNMP','3','-1','2','','','ZYXEL MES3500-24S by SNMP','0',NULL,'ZYXEL MES3500-24S MIBs used: ZYXEL-TRANSCEIVER-MIB IF-MIB RFC1213-MIB HOST-RESOURCES-MIB ZYXEL-HW-MONITOR-MIB ZYXEL-PORT-MIB ZYXEL-ES-COMMON Known Issues: Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings. Version: all versions firmware Device: ZYXEL MGS3520-28 You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','89eef2fe23964f44bf9aec6d00e39efd','ZYXEL MES3500-24S BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10432',NULL,'ZYXEL MGS3520-28x by SNMP','3','-1','2','','','ZYXEL MGS3520-28x by SNMP','0',NULL,'ZYXEL MGS3520-28x MIBs used: ZYXEL-TRANSCEIVER-MIB IF-MIB RFC1213-MIB HOST-RESOURCES-MIB ZYXEL-HW-MONITOR-MIB ZYXEL-PORT-MIB ZYXEL-ES-COMMON Known Issues: Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings. Version: all versions firmware Device: ZYXEL MGS3520-28 You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','9cc843a085bb4ee5af0dc4d764a7eee9','ZYXEL MGS3520-28X BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10433',NULL,'ZYXEL XGS-4728F by SNMP','3','-1','2','','','ZYXEL XGS-4728F by SNMP','0',NULL,'ZYXEL XGS-4728F MIBs used: RFC1213-MIB HOST-RESOURCES-MIB ZYXEL-XGS4728F-MIB IF-MIB Known Issues: Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings. Version: all versions firmware Device: ZYXEL XGS-4728F You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','ab18a5665b7d4bed876881b5c4e8ce51','ZYXEL XGS-4728F BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10434',NULL,'Cisco UCS Manager by SNMP','3','-1','2','','','Cisco UCS Manager by SNMP','0',NULL,'This is a template for Cisco UCS Manager monitoring via Zabbix SNMP Agent that works without any external scripts. MIBs used: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB CISCO-UNIFIED-COMPUTING-EQUIPMENT-MIB IF-MIB HOST-RESOURCES-MIB SNMPv2-MIB CISCO-UNIFIED-COMPUTING-PROCESSOR-MIB CISCO-UNIFIED-COMPUTING-STORAGE-MIB You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/418396-discussion-thread-for-official-zabbix-templates-for-cisco Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','d5eb4ce08a334098a85e6e02c534be90','CISCO UCS MANAGER BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10435',NULL,'DELL PowerEdge R720 by HTTP','3','-1','2','','','DELL PowerEdge R720 by HTTP','0',NULL,'Template for DELL PowerEdge R720 servers with iDRAC 8/9 firmware 4.32 and later and Redfish API enabled. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/426752-discussion-thread-for-official-zabbix-dell-templates Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','9643f22821104f809e2486be83e1816e','DELL POWEREDGE R720 BY HTTP','Zabbix','7.0-4',NULL,'0'), ('10436',NULL,'DELL PowerEdge R720 by SNMP','3','-1','2','','','DELL PowerEdge R720 by SNMP','0',NULL,'Template for DELL PowerEdge R720 servers with iDRAC version 7 and later. MIBs used: HOST-RESOURCES-MIB IDRAC-MIB-SMIv2 SNMPv2-MIB You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/426752-discussion-thread-for-official-zabbix-dell-templates Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','fe5b8448661f41b9a6d948fccd7f9045','DELL POWEREDGE R720 BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10437',NULL,'DELL PowerEdge R740 by HTTP','3','-1','2','','','DELL PowerEdge R740 by HTTP','0',NULL,'Template for DELL PowerEdge R740 servers with iDRAC 8/9 firmware 4.32 and later and Redfish API enabled. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/426752-discussion-thread-for-official-zabbix-dell-templates Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','3f707f39c32a4b6e8b214c38a260f6f9','DELL POWEREDGE R740 BY HTTP','Zabbix','7.0-4',NULL,'0'), ('10438',NULL,'DELL PowerEdge R740 by SNMP','3','-1','2','','','DELL PowerEdge R740 by SNMP','0',NULL,'Template for DELL PowerEdge R740 servers with iDRAC version 7 and later. MIBs used: HOST-RESOURCES-MIB IDRAC-MIB-SMIv2 SNMPv2-MIB You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/426752-discussion-thread-for-official-zabbix-dell-templates Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','9fde0e1c36f8453da72f97535d4e74ca','DELL POWEREDGE R740 BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10439',NULL,'DELL PowerEdge R820 by HTTP','3','-1','2','','','DELL PowerEdge R820 by HTTP','0',NULL,'Template for DELL PowerEdge R820 servers with iDRAC 8/9 firmware 4.32 and later and Redfish API enabled. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/426752-discussion-thread-for-official-zabbix-dell-templates Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','1e9fe6b88c7542638c0f5d94484858b2','DELL POWEREDGE R820 BY HTTP','Zabbix','7.0-4',NULL,'0'), ('10440',NULL,'DELL PowerEdge R820 by SNMP','3','-1','2','','','DELL PowerEdge R820 by SNMP','0',NULL,'Template for DELL PowerEdge R820 servers with iDRAC version 7 and later. MIBs used: HOST-RESOURCES-MIB IDRAC-MIB-SMIv2 SNMPv2-MIB You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/426752-discussion-thread-for-official-zabbix-dell-templates Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','d41c5d0fa91545d68cced1b5dabe4bf1','DELL POWEREDGE R820 BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10441',NULL,'DELL PowerEdge R840 by HTTP','3','-1','2','','','DELL PowerEdge R840 by HTTP','0',NULL,'Template for DELL PowerEdge R840 servers with iDRAC 8/9 firmware 4.32 and later and Redfish API enabled. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/426752-discussion-thread-for-official-zabbix-dell-templates Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','20147f00f92d4240aab0b70cf578c022','DELL POWEREDGE R840 BY HTTP','Zabbix','7.0-4',NULL,'0'), ('10442',NULL,'DELL PowerEdge R840 by SNMP','3','-1','2','','','DELL PowerEdge R840 by SNMP','0',NULL,'Template for DELL PowerEdge R840 servers with iDRAC version 7 and later. MIBs used: HOST-RESOURCES-MIB IDRAC-MIB-SMIv2 SNMPv2-MIB You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/426752-discussion-thread-for-official-zabbix-dell-templates Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','fc834b8da8864678b55557e9a237eac9','DELL POWEREDGE R840 BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10443',NULL,'HPE ProLiant BL460 by SNMP','3','-1','2','','','HPE ProLiant BL460 by SNMP','0',NULL,'Template for HPE ProLiant BL460 servers with HP iLO version 4 and later. MIBs used: HOST-RESOURCES-MIB CPQHLTH-MIB SNMPv2-MIB CPQNIC-MIB CPQSINFO-MIB CPQIDA-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','172ec7e51f1c4a6ba49baffbab3dda97','HPE PROLIANT BL460 BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10444',NULL,'HPE ProLiant BL920 by SNMP','3','-1','2','','','HPE ProLiant BL920 by SNMP','0',NULL,'Template for HPE ProLiant BL920 servers with HP iLO version 4 and later. MIBs used: HOST-RESOURCES-MIB CPQHLTH-MIB SNMPv2-MIB CPQNIC-MIB CPQSINFO-MIB CPQIDA-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','586119e5e27e4062a3cce8601ecb8d71','HPE PROLIANT BL920 BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10445',NULL,'HPE ProLiant DL360 by SNMP','3','-1','2','','','HPE ProLiant DL360 by SNMP','0',NULL,'Template for HPE ProLiant DL360 servers with HP iLO version 4 and later. MIBs used: HOST-RESOURCES-MIB CPQHLTH-MIB SNMPv2-MIB CPQNIC-MIB CPQSINFO-MIB CPQIDA-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','60cb9ccb922e4fd194a1d9573db10237','HPE PROLIANT DL360 BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10446',NULL,'HPE ProLiant DL380 by SNMP','3','-1','2','','','HPE ProLiant DL380 by SNMP','0',NULL,'Template for HPE ProLiant DL380 servers with HP iLO version 4 and later. MIBs used: HOST-RESOURCES-MIB CPQHLTH-MIB SNMPv2-MIB CPQNIC-MIB CPQSINFO-MIB CPQIDA-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','379aaf7e87574debb4f5c3947a22ec68','HPE PROLIANT DL380 BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10447',NULL,'Travis CI by HTTP','3','-1','2','','','Travis CI by HTTP','0',NULL,'Template for monitoring Travis CI https://travis-ci.com You must set {$TRAVIS.API.TOKEN} and {$TRAVIS.API.URL} macros. {$TRAVIS.API.TOKEN} is a Travis API authentication token located in User -> Settings -> API authentication. {$TRAVIS.API.URL} could be in 2 different variations: - for a private project : api.travis-ci.com - for an enterprise projects: api.example.com (where you replace example.com with the domain Travis CI is running on) You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/ Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','8cdbe00a2a3046ee962d28d32567968a','TRAVIS CI BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10448',NULL,'InfluxDB by HTTP','3','-1','2','','','InfluxDB by HTTP','0',NULL,'Get InfluxDB metrics by HTTP agent from Prometheus metrics endpoint. For organization discovery template need to use Authorization via API token. See docs: https://docs.influxdata.com/influxdb/v2.0/security/tokens/ Don''t forget change macros {$INFLUXDB.URL}, {$INFLUXDB.API.TOKEN}. Some metrics may not be collected depending on your InfluxDB instance version and configuration. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','a6fe3640b23544e7ae15d438b38ce1cd','INFLUXDB BY HTTP','Zabbix','7.0-2',NULL,'0'), ('10449',NULL,'MikroTik CCR1009-7G-1C-1SPC by SNMP','3','-1','2','','','MikroTik CCR1009-7G-1C-1S+PC by SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik CCR1009-7G-1C-1S+PC. 7x Gigabit Ethernet, 1x Combo port (SFP or Gigabit Ethernet), 1xSFP+ cage, 9 cores x 1GHz CPU, 2GB RAM, LCD panel, passive cooling desktop enclosure, SmartCard slot, RouterOS L6, PSU MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','d596d6d231bf49c08890aa3ff135ecc6','MIKROTIK CCR1009-7G-1C-1S+PC BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10450',NULL,'MikroTik CCR1009-7G-1C-1S by SNMP','3','-1','2','','','MikroTik CCR1009-7G-1C-1S+ by SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik CCR1009-7G-1C-1S+. 1U rackmount, 7x Gigabit Ethernet, 1x Combo port (SFP or Gigabit Ethernet), 1xSFP+ cage, 9 cores x 1.2GHz CPU, 2GB RAM, LCD panel, Dual Power supplies, SmartCard slot, RouterOS L6 MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','a809695fbc784b75adcd4833c86bca8d','MIKROTIK CCR1009-7G-1C-1S+ BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10451',NULL,'MikroTik CCR1009-7G-1C-PC by SNMP','3','-1','2','','','MikroTik CCR1009-7G-1C-PC by SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik CCR1009-7G-1C-PC. 7x Gigabit Ethernet, 1x Combo port (SFP or Gigabit Ethernet), 9 cores x 1GHz CPU, 1GB RAM, passive cooling case, RouterOS L6 MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','012e7043ff9849e197c42bf41cdf4d9a','MIKROTIK CCR1009-7G-1C-PC BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10452',NULL,'MikroTik CCR1016-12G by SNMP','3','-1','2','','','MikroTik CCR1016-12G by SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik CCR1016-12G. 1U rackmount, 12x Gigabit Ethernet, LCD, 16 cores x 1.2GHz CPU, 2GB RAM, 17.8mpps fastpath, Up to 12Gbit/s throughput, RouterOS L6, Dual PSU MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','5ed19d1f74224588bf5f53ac47003acc','MIKROTIK CCR1016-12G BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10453',NULL,'MikroTik CCR1016-12S-1S by SNMP','3','-1','2','','','MikroTik CCR1016-12S-1S+ by SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik CCR1016-12S-1S+. 1U rackmount, 12xSFP cage, 1xSFP+ cage, 16 cores x 1.2GHz CPU, 2GB RAM, LCD panel, Dual Power supplies, RouterOS L6 MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','654910b270d9464f863ed085ba7302ce','MIKROTIK CCR1016-12S-1S+ BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10454',NULL,'MikroTik CCR1036-12G-4S-EM by SNMP','3','-1','2','','','MikroTik CCR1036-12G-4S-EM by SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik CCR1036-12G-4S-EM. 1U rackmount, 12x Gigabit Ethernet, 4xSFP cages, LCD, 36 cores x 1.2GHz CPU, 8GB RAM, 24 mpps fastpath, Up to 16Gbit/s throughput, RouterOS L6, Dual PSU MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','930c0e0534a9424fb01f2b6218d8ce59','MIKROTIK CCR1036-12G-4S-EM BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10455',NULL,'MikroTik CCR1036-12G-4S by SNMP','3','-1','2','','','MikroTik CCR1036-12G-4S by SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik CCR1036-12G-4S. 1U rackmount, 12x Gigabit Ethernet, 4xSFP cages, LCD, 36 cores x 1.2GHz CPU, 4GB RAM, 24 mpps fastpath, Up to 16Gbit/s throughput, RouterOS L6, Dual PSU MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','82b428ad78d34988b93f3d577f2b6adc','MIKROTIK CCR1036-12G-4S BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10456',NULL,'MikroTik CCR1036-8G-2SEM by SNMP','3','-1','2','','','MikroTik CCR1036-8G-2S+EM by SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik CCR1036-8G-2S+EM. 1U rackmount, 8x Gigabit Ethernet, 2xSFP+ cages, LCD, 36 cores x 1.2GHz CPU, 8GB RAM, 41.5mpps fastpath, Up to 28Gbit/s throughput, RouterOS L6, Dual PSU MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','7b3ecb24366f4685970df8e1143323f0','MIKROTIK CCR1036-8G-2S+EM BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10457',NULL,'MikroTik CCR1036-8G-2S by SNMP','3','-1','2','','','MikroTik CCR1036-8G-2S+ by SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik CCR1036-8G-2S+. 1U rackmount, 8x Gigabit Ethernet, 2xSFP+ cages, LCD, 36 cores x 1.2GHz CPU, 4GB RAM, 41.5mpps fastpath, Up to 28Gbit/s throughput, RouterOS L6, Dual PSU MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','7f44e67e3f564ec9894c9142d7276553','MIKROTIK CCR1036-8G-2S+ BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10458',NULL,'MikroTik CCR1072-1G-8S by SNMP','3','-1','2','','','MikroTik CCR1072-1G-8S+ by SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik CCR1072-1G-8S+. 1U rackmount, 1x Gigabit Ethernet, 8xSFP+ cages, LCD, 72 cores x 1GHz CPU, 16GB RAM, up to 120 million packets per second, 80Gbps throughput, RouterOS L6 MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','e7894db1c4c94e0f8715977e751368b3','MIKROTIK CCR1072-1G-8S+ BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10459',NULL,'MikroTik CCR2004-16G-2S by SNMP','3','-1','2','','','MikroTik CCR2004-16G-2S+ by SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik CCR2004-16G-2S+. This powerful and affordable router crushes all previous CCR models in single-core performance. 16x Gigabit Ethernet ports, 2x10G SFP+ cages, active cooling and the best single-core performance per watt & best overall performance per watt among all the CCR devices. MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','ab871d051e304f83950171c5243aa4db','MIKROTIK CCR2004-16G-2S+ BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10460',NULL,'MikroTik CCR2004-1G-12S2XS by SNMP','3','-1','2','','','MikroTik CCR2004-1G-12S+2XS by SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik CCR2004-1G-12S+2XS. The Connectivity Router - your best companion when it comes to SFP, SFP+ and SFP28 management! 1, 10 and 25 Gbps ports in a single device to make your life easier. MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','f2efeb94f4bd4ed9ab34a973c0363eb8','MIKROTIK CCR2004-1G-12S+2XS BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10461',NULL,'MikroTik CRS106-1C-5S by SNMP','3','-1','2','','','MikroTik CRS106-1C-5S by SNMP','0',NULL,'The template for monitoring Switch MikroTik CRS106-1C-5S. Smart Switch, 5x SFP cages, 1x Combo port (SFP or Gigabit Ethernet), 400MHz CPU, 128MB RAM, desktop case, RouterOS L5 MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','20ea139663264c21bca0dcecf2e95589','MIKROTIK CRS106-1C-5S BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10462',NULL,'MikroTik CRS109-8G-1S-2HnD-IN by SNMP','3','-1','2','','','MikroTik CRS109-8G-1S-2HnD-IN by SNMP','0',NULL,'The template for monitoring Switch MikroTik CRS109-8G-1S-2HnD-IN. 8x Gigabit Smart Switch, 1x SFP cage, LCD, 802.11b/g/n Dual Chain wireless, 600MHz CPU, 128MB RAM, Metal desktop case, RouterOS L5, supports 10-57V, 802.3af/at compliant MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','fac16383680c4454be48b6db870d975e','MIKROTIK CRS109-8G-1S-2HND-IN BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10463',NULL,'MikroTik CRS112-8G-4S-IN by SNMP','3','-1','2','','','MikroTik CRS112-8G-4S-IN by SNMP','0',NULL,'The template for monitoring Switch MikroTik CRS112-8G-4S-IN. 8x Gigabit Ethernet Smart Switch, 4x SFP cages, 400MHz CPU, 128MB RAM, desktop case, RouterOS L5 MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','8d7d49fd0b3f4b1f9046dc0e94457931','MIKROTIK CRS112-8G-4S-IN BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10464',NULL,'MikroTik CRS112-8P-4S-IN by SNMP','3','-1','2','','','MikroTik CRS112-8P-4S-IN by SNMP','0',NULL,'The template for monitoring Switch MikroTik CRS112-8P-4S-IN. 8x Gigabit Ethernet Smart Switch with PoE-out, 4x SFP cages, 400MHz CPU, 128MB RAM, desktop case, RouterOS L5 MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','538ec67ce01341a9b281dbd86d86d2a2','MIKROTIK CRS112-8P-4S-IN BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10465',NULL,'MikroTik CRS125-24G-1S-2HnD-IN by SNMP','3','-1','2','','','MikroTik CRS125-24G-1S-2HnD-IN by SNMP','0',NULL,'The template for monitoring Switch MikroTik CRS125-24G-1S-2HnD-IN. 24x Gigabit Ethernet layer 3 Smart Switch, 1x SFP cage, LCD, 802.11b/g/n Dual Chain wireless, 600MHz CPU, 128MB RAM, Metal desktop case, RouterOS L5 MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','c8db153405704d859ba5ee19f08b46f3','MIKROTIK CRS125-24G-1S-2HND-IN BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10466',NULL,'MikroTik CRS212-1G-10S-1SIN by SNMP','3','-1','2','','','MikroTik CRS212-1G-10S-1S+IN by SNMP','0',NULL,'The template for monitoring Switch MikroTik CRS212-1G-10S-1S+IN. Smart Switch, 1x Gigabit LAN, 10x SFP cages, 1x SFP+ cage, LCD, 400MHz CPU, 64MB RAM, Metal desktop case, RouterOS L5 MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','cdb6ebceb1174bada392dd24889b14d9','MIKROTIK CRS212-1G-10S-1S+IN BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10467',NULL,'MikroTik CRS305-1G-4SIN by SNMP','3','-1','2','','','MikroTik CRS305-1G-4S+IN by SNMP','0',NULL,'The template for monitoring Switch MikroTik CRS305-1G-4S+IN. Five-port desktop switch with one Gigabit Ethernet port and four SFP+ 10Gbps ports MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','223101f878704022a04c30c3ff066e3f','MIKROTIK CRS305-1G-4S+IN BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10468',NULL,'MikroTik CRS309-1G-8SIN by SNMP','3','-1','2','','','MikroTik CRS309-1G-8S+IN by SNMP','0',NULL,'The template for monitoring Switch MikroTik CRS309-1G-8S+IN. Desktop switch with one Gigabit Ethernet port and eight SFP+ 10Gbps ports MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','bcc01f2b466345c4bcbe0cea1a7884d1','MIKROTIK CRS309-1G-8S+IN BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10469',NULL,'MikroTik CRS312-4C8XG-RM by SNMP','3','-1','2','','','MikroTik CRS312-4C+8XG-RM by SNMP','0',NULL,'The template for monitoring Switch MikroTik CRS312-4C+8XG-RM. Switch of the future: the first MikroTik product with 10G RJ45 Ethernet ports and SFP+ MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','8da94e2f01ff46e28becf0b08ff09ace','MIKROTIK CRS312-4C+8XG-RM BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10470',NULL,'MikroTik CRS317-1G-16SRM by SNMP','3','-1','2','','','MikroTik CRS317-1G-16S+RM by SNMP','0',NULL,'The template for monitoring Switch MikroTik CRS317-1G-16S+RM. Smart Switch, 1 x Gigabit LAN, 16 x SFP+ cages, Dual Core 800MHz CPU, 1GB RAM, 1U rackmount passive cooling case, Dual Power Supplies MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','f474ff823fe84d689b9e4c6a4f0ce59e','MIKROTIK CRS317-1G-16S+RM BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10471',NULL,'MikroTik CRS326-24G-2SIN by SNMP','3','-1','2','','','MikroTik CRS326-24G-2S+IN by SNMP','0',NULL,'The template for monitoring Switch MikroTik CRS326-24G-2S+IN. 24 Gigabit ports, 2 SFP+ cages and a desktop case – server room power for your home! MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','c5f41fe0f54f470f9e304384838f150a','MIKROTIK CRS326-24G-2S+IN BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10472',NULL,'MikroTik CRS326-24G-2SRM by SNMP','3','-1','2','','','MikroTik CRS326-24G-2S+RM by SNMP','0',NULL,'The template for monitoring Switch MikroTik CRS326-24G-2S+RM. 24 Gigabit port switch with 2 x SFP+ cages in 1U rackmount case, Dual boot (RouterOS or SwitchOS) MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','bc80883918ac4f879427ca145122b5cb','MIKROTIK CRS326-24G-2S+RM BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10473',NULL,'MikroTik CRS326-24S2QRM by SNMP','3','-1','2','','','MikroTik CRS326-24S+2Q+RM by SNMP','0',NULL,'The template for monitoring Switch MikroTik CRS326-24S+2Q+RM. Our fastest switch for the most demanding setups MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','e7ed0e0cbd0b439394f6498ea90dc31d','MIKROTIK CRS326-24S+2Q+RM BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10474',NULL,'MikroTik CRS328-24P-4SRM by SNMP','3','-1','2','','','MikroTik CRS328-24P-4S+RM by SNMP','0',NULL,'The template for monitoring Switch MikroTik CRS328-24P-4S+RM. 24 port Gigabit Ethernet router/switch with four 10Gbps SFP+ ports in 1U rackmount case, Dual Boot and PoE output, 500W MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','dcf88bca5aaf4123a10eb3daab28a9af','MIKROTIK CRS328-24P-4S+RM BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10475',NULL,'MikroTik CRS328-4C-20S-4SRM by SNMP','3','-1','2','','','MikroTik CRS328-4C-20S-4S+RM by SNMP','0',NULL,'The template for monitoring Switch MikroTik CRS328-4C-20S-4S+RM. Smart Switch, 20 x SFP cages, 4 x SFP+ cages, 4 x Combo ports (Gigabit Ethernet or SFP), 800MHz CPU, 512MB RAM, 1U rackmount case, Dual Power Supplies, RouterOS L5 or SwitchOS (Dual Boot) MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','6742f5ed33ca4c19b8e61203770e5fe5','MIKROTIK CRS328-4C-20S-4S+RM BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10476',NULL,'MikroTik CRS354-48G-4S2QRM by SNMP','3','-1','2','','','MikroTik CRS354-48G-4S+2Q+RM by SNMP','0',NULL,'The template for monitoring Switch MikroTik CRS354-48G-4S+2Q+RM. Best price and best performance on the market – this 48 port switch will rock any setup, including 40 Gbps devices! MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','d1c1ab5db2c34c17ae3541407f8b7faa','MIKROTIK CRS354-48G-4S+2Q+RM BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10477',NULL,'MikroTik CRS354-48P-4S2QRM by SNMP','3','-1','2','','','MikroTik CRS354-48P-4S+2Q+RM by SNMP','0',NULL,'The template for monitoring Switch MikroTik CRS354-48P-4S+2Q+RM. The 48 port champion you’ve been waiting for - now with PoE-out! MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','fa5e5e131eb34bbea1b1f7b2352a853d','MIKROTIK CRS354-48P-4S+2Q+RM BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10478',NULL,'MikroTik CSS326-24G-2SRM by SNMP','3','-1','2','','','MikroTik CSS326-24G-2S+RM by SNMP','0',NULL,'The template for monitoring Switch MikroTik CSS326-24G-2S+RM. SwOS powered 24 port Gigabit Ethernet switch with two SFP+ ports in 1U rackmount case MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','75ada0d6fb22416a9e6e5f44c2c3f64a','MIKROTIK CSS326-24G-2S+RM BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10479',NULL,'MikroTik CSS610-8G-2SIN by SNMP','3','-1','2','','','MikroTik CSS610-8G-2S+IN by SNMP','0',NULL,'The template for monitoring Switch MikroTik CSS610-8G-2S+IN. Eight 1G Ethernet ports and two SFP+ ports for 10G fiber connectivity. Portable, powerful and extremely cost-effective - this switch is an instant classic! MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','8d22b4d1a9c6457fbd6fd959263f91db','MIKROTIK CSS610-8G-2S+IN BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10480',NULL,'MikroTik FiberBox by SNMP','3','-1','2','','','MikroTik FiberBox by SNMP','0',NULL,'The template for monitoring Switch MikroTik FiberBox. An outdoor switch with five SFP ports MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','2bd6f566391d49dab6bee184522ab5fa','MIKROTIK FIBERBOX BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10481',NULL,'MikroTik PowerBox Pro by SNMP','3','-1','2','','','MikroTik PowerBox Pro by SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik PowerBox Pro. Five Gigabit Ethernet Router with 4xPoE-out ports, SFP cage and outdoor enclosure MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','c03e1ab0128a4ae1847bc04a34f5634e','MIKROTIK POWERBOX PRO BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10482',NULL,'MikroTik PowerBox by SNMP','3','-1','2','','','MikroTik PowerBox by SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik PowerBox. 650MHz CPU, 64MB RAM, 5xEthernet with PoE output for four ports, RouterOS L4, outdoor case, PSU MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','0c7b3c03a5854f868b56f3ab63e2d3f7','MIKROTIK POWERBOX BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10483',NULL,'MikroTik RB1100AHx4 Dude Edition by SNMP','3','-1','2','','','MikroTik RB1100AHx4 Dude Edition by SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik RB1100AHx4 Dude Edition. Powerful 1U rackmount router with 13x Gigabit Ethernet ports, 60GB M.2 drive for Dude database MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','fac50638cb77468598c29a6a47520c24','MIKROTIK RB1100AHX4 DUDE EDITION BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10484',NULL,'MikroTik RB1100AHx4 by SNMP','3','-1','2','','','MikroTik RB1100AHx4 by SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik RB1100AHx4. Powerful 1U rackmount router with 13x Gigabit Ethernet ports MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','3dfd1a55987848e5aa6ffe92c228f63b','MIKROTIK RB1100AHX4 BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10485',NULL,'MikroTik RB2011UiAS-IN by SNMP','3','-1','2','','','MikroTik RB2011UiAS-IN by SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik RB2011UiAS-IN. Desktop metal case, 5xEthernet, 5xGigabit Ethernet, USB, LCD, PoE out on port 10, 600MHz CPU, 128MB RAM, RouterOS L5 MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','8cf537f34600403b9de31d3db4eb2a1d','MIKROTIK RB2011UIAS-IN BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10486',NULL,'MikroTik RB2011UiAS-RM by SNMP','3','-1','2','','','MikroTik RB2011UiAS-RM by SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik RB2011UiAS-RM. 1U rackmount, 5xEthernet, 5xGigabit Ethernet, USB, LCD, PoE out on port 10, 600MHz CPU, 128MB RAM, RouterOS L5 MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','969cf5dca58f47f0b271ccf62ef79c13','MIKROTIK RB2011UIAS-RM BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10487',NULL,'MikroTik RB2011iL-IN by SNMP','3','-1','2','','','MikroTik RB2011iL-IN by SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik RB2011iL-IN. Desktop metal case, 5xEthernet, 5xGigabit Ethernet, PoE out on port 10, 600MHz CPU, 64MB RAM, RouterOS L4 MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','141438a05f904b518c7d3ddfbbabf91f','MIKROTIK RB2011IL-IN BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10488',NULL,'MikroTik RB2011iL-RM by SNMP','3','-1','2','','','MikroTik RB2011iL-RM by SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik RB2011iL-RM. 1U rackmount, 5xEthernet, 5xGigabit Ethernet, PoE out on port 10, 600MHz CPU, 64MB RAM, RouterOS L4 MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','6d9737c72e5540d39e3553b773a587b1','MIKROTIK RB2011IL-RM BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10489',NULL,'MikroTik RB2011iLS-IN by SNMP','3','-1','2','','','MikroTik RB2011iLS-IN by SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik RB2011iLS-IN. Desktop metal case, 5xEthernet, 5xGigabit Ethernet, SFP cage, PoE out on port 10, 600MHz CPU, 64MB RAM, RouterOS L4 MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','318fd61c22fa4f1a92a71376814d6c32','MIKROTIK RB2011ILS-IN BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10490',NULL,'MikroTik RB260GSP by SNMP','3','-1','2','','','MikroTik RB260GSP by SNMP','0',NULL,'The template for monitoring Switch MikroTik RB260GSP. 5x Gigabit PoE out Ethernet Smart Switch, SFP cage, plastic case, SwOS MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','5331ecc3be9f47d6a8eb0732ae141239','MIKROTIK RB260GSP BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10491',NULL,'MikroTik RB260GS by SNMP','3','-1','2','','','MikroTik RB260GS by SNMP','0',NULL,'The template for monitoring Switch MikroTik RB260GS. 5x Gigabit Ethernet Smart Switch, SFP cage, plastic case, SwOS MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','1a74dd95e7244493a1b13b94fe9dd9e8','MIKROTIK RB260GS BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10492',NULL,'MikroTik RB3011UiAS-RM by SNMP','3','-1','2','','','MikroTik RB3011UiAS-RM by SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik RB3011UiAS-RM. 1U rackmount, 10xGigabit Ethernet, SFP, USB 3.0, LCD, PoE out on port 10, 2x1.4GHz CPU, 1GB RAM, RouterOS L5 MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','cc762a057f0f467ab571b6d76a9bb278','MIKROTIK RB3011UIAS-RM BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10493',NULL,'MikroTik RB4011iGSRM by SNMP','3','-1','2','','','MikroTik RB4011iGS+RM by SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik RB4011iGS+RM. Powerful 10xGigabit port router with a Quad-core 1.4Ghz CPU, 1GB RAM, SFP+ 10Gbps cage and desktop case with rack ears MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','780c4a9a657e42fc83f1ab9a535f5184','MIKROTIK RB4011IGS+RM BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10494',NULL,'MikroTik RB5009UGSIN by SNMP','3','-1','2','','','MikroTik RB5009UG+S+IN by SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik RB5009UG+S+IN. The ultimate heavy-duty home lab router with USB 3.0, 1G and 2.5G Ethernet and a 10G SFP+ cage. You can mount four of these new routers in a single 1U rackmount space! Unprecedented processing power in such a small form factor. MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','7b6f7a12a6b449ca926e74c894eca354','MIKROTIK RB5009UG+S+IN BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10495',NULL,'MikroTik hEX PoE lite by SNMP','3','-1','2','','','MikroTik hEX PoE lite by SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik hEX PoE lite. 5xEthernet with PoE output for four ports, USB, 650MHz CPU, 64MB RAM, RouterOS L4 MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','a5ddacdd5ac64b82bf5183769cc03e8c','MIKROTIK HEX POE LITE BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10496',NULL,'MikroTik hEX PoE by SNMP','3','-1','2','','','MikroTik hEX PoE by SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik hEX PoE. 5x Gigabit Ethernet with PoE output for four ports, SFP, USB, 800MHz CPU, 128MB RAM, RouterOS L4 MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','ff57532daf924030b364e3b75acb74c4','MIKROTIK HEX POE BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10497',NULL,'MikroTik hEX S by SNMP','3','-1','2','','','MikroTik hEX S by SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik hEX S. 5x Gigabit Ethernet, SFP, Dual Core 880MHz CPU, 256MB RAM, USB, microSD, RouterOS L4, IPsec hardware encryption support and The Dude server package MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','7802db8c2f9c4a7eba7b381b8f3fa5c5','MIKROTIK HEX S BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10498',NULL,'MikroTik hEX lite by SNMP','3','-1','2','','','MikroTik hEX lite by SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik hEX lite. 5x Ethernet, Small plastic case, 850MHz CPU, 64MB RAM, Most affordable MPLS router, RouterOS L4 MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','2785d83763c641a7a7937b516665d93a','MIKROTIK HEX LITE BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10499',NULL,'MikroTik hEX by SNMP','3','-1','2','','','MikroTik hEX by SNMP','0',NULL,'The template for monitoring Ethernet router MikroTik hEX. 5x Gigabit Ethernet, Dual Core 880MHz CPU, 256MB RAM, USB, microSD, RouterOS L4 MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','68c2034014f24115ae9e910962530472','MIKROTIK HEX BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10500',NULL,'MikroTik netPower 15FR by SNMP','3','-1','2','','','MikroTik netPower 15FR by SNMP','0',NULL,'The template for monitoring Switch MikroTik netPower 15FR. An outdoor 18 port switch with 15 reverse PoE ports and SFP. Cut costs, not speed - choose GPEN over GPON! MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','f1928e12f9554599a9adb516f38b6bf6','MIKROTIK NETPOWER 15FR BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10501',NULL,'MikroTik netPower 16P by SNMP','3','-1','2','','','MikroTik netPower 16P by SNMP','0',NULL,'The template for monitoring Switch MikroTik netPower 16P. An outdoor 18 port switch with 16 Gigabit PoE-out ports and 2 SFP+. Power all your access points anywhere! MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','b126aaf4499d49d7b4fcee0329b7dea7','MIKROTIK NETPOWER 16P BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10502',NULL,'MikroTik netPower Lite 7R by SNMP','3','-1','2','','','MikroTik netPower Lite 7R by SNMP','0',NULL,'The template for monitoring Switch MikroTik netPower Lite 7R. An outdoor reverse PoE switch with Gigabit Ethernet and 10G SFP+ ports. MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB MIKROTIK-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','1782caa5bf724f66a23e7dbb96ef7ba2','MIKROTIK NETPOWER LITE 7R BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10503',NULL,'VMWare SD-WAN VeloCloud by HTTP','3','-1','2','','','VMWare SD-WAN VeloCloud by HTTP','0',NULL,'Template for monitoring VMWare SD-WAN VeloCloud https://www.vmware.com/products/sd-wan.html You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/ Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','e1ca624566424496bff9d90c261ab37b','VMWARE SD-WAN VELOCLOUD BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10504',NULL,'Kubernetes API server by HTTP','3','-1','2','','','Kubernetes API server by HTTP','0',NULL,'Get Kubernetes API server metrics by HTTP agent from Prometheus metrics endpoint. Don''t forget change macros {$KUBE.API.SERVER.URL}, {$KUBE.API.TOKEN}. Some metrics may not be collected depending on your Kubernetes API server instance version and configuration. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','85ce114c802e4e28a5f3597e07d07032','KUBERNETES API SERVER BY HTTP','Zabbix','7.0-2',NULL,'0'), ('10505',NULL,'Kubernetes Controller manager by HTTP','3','-1','2','','','Kubernetes Controller manager by HTTP','0',NULL,'Get Kubernetes Controller manager metrics by HTTP agent from Prometheus metrics endpoint. Don''t forget change macros {$KUBE.API.SERVER.URL}. Some metrics may not be collected depending on your Kubernetes Controller manager instance version and configuration. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','2420a8a4fda74fbc81743aed69fafa3b','KUBERNETES CONTROLLER MANAGER BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10506',NULL,'Kubernetes Kubelet by HTTP','3','-1','2','','','Kubernetes Kubelet by HTTP','0',NULL,'Get Kubernetes kubelet metrics by HTTP agent from Prometheus metrics endpoint. Don''t forget change macros {$KUBE.KUBELET.URL}, {$KUBE.API.TOKEN}. Some metrics may not be collected depending on your Kubernetes API server instance version and configuration. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','e785916967c14544b59c3644c3edda3a','KUBERNETES KUBELET BY HTTP','Zabbix','7.0-0',NULL,'0'), ('10507',NULL,'Kubernetes nodes by HTTP','3','-1','2','','','Kubernetes nodes by HTTP','0',NULL,'Get Kubernetes nodes metrics by HTTP. Metrics are collected by requests to Kubernetes API. Don''t forget to read the README.md for the correct setup of the template. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','f397be2340734d24bc666102fbe184a5','KUBERNETES NODES BY HTTP','Zabbix','7.0-4',NULL,'0'), ('10509',NULL,'Kubernetes Scheduler by HTTP','3','-1','2','','','Kubernetes Scheduler by HTTP','0',NULL,'Get Kubernetes Scheduler metrics by HTTP agent from Prometheus metrics endpoint. Don''t forget change macros {$KUBE.API.SERVER.URL}. Some metrics may not be collected depending on your Kubernetes Scheduler instance version and configuration. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','ece96efdf0a045b99ede7978fa9366d6','KUBERNETES SCHEDULER BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10510',NULL,'Kubernetes cluster state by HTTP','3','-1','2','','','Kubernetes cluster state by HTTP','0',NULL,'Get Kubernetes state metrics by HTTP. Metrics are collected by requests to Kubernetes API. Don''t forget to read the README.md for the correct setup of the template. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','07695028a2ba4b66a5414797bec791df','KUBERNETES CLUSTER STATE BY HTTP','Zabbix','7.0-3',NULL,'0'), ('10511',NULL,'API {#NAME}','0','-1','2','','','API {#NAME}','2',NULL,'','1','1','','','','','0','1','a67ac5100e6d499088e4c81856f947fc','API {#NAME}','','',NULL,'0'), ('10512',NULL,'Controller manager {#NAME}','0','-1','2','','','Controller manager {#NAME}','2',NULL,'','1','1','','','','','0','1','9d529f3924fc4831a62fb1eec79b64d7','CONTROLLER MANAGER {#NAME}','','',NULL,'0'), ('10513',NULL,'Scheduler {#NAME}','0','-1','2','','','Scheduler {#NAME}','2',NULL,'','1','1','','','','','0','1','46da4b85c58f4c59825e61778a64a58e','SCHEDULER {#NAME}','','',NULL,'0'), ('10514',NULL,'Kubelet {#NAME}','0','-1','2','','','Kubelet {#NAME}','2',NULL,'','1','1','','','','','0','1','c1c4807f378a47dfa59e9bbc8e43f5e2','KUBELET {#NAME}','','',NULL,'0'), ('10515',NULL,'PFSense by SNMP','3','-1','2','','','PFSense by SNMP','0',NULL,'Template for monitoring pfSense by SNMP Setup: 1. Enable SNMP daemon at Services in pfSense web interface https://docs.netgate.com/pfsense/en/latest/services/snmp.html 2. Setup firewall rule to get access from Zabbix proxy or Zabbix server by SNMP https://docs.netgate.com/pfsense/en/latest/firewall/index.html#managing-firewall-rules 3. Link template to the host MIBs used: BEGEMOT-PF-MIB HOST-RESOURCES-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','16f281aeb8904d3db8b66dda94611fcc','PFSENSE BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10516',NULL,'OpenWeatherMap by HTTP','3','-1','2','','','OpenWeatherMap by HTTP','0',NULL,'Get weather metrics from OpenWeatherMap current weather API by HTTP. It works without any external scripts and uses the Script item. Setup: 1. Create a host. 2. Link the template to the host. 3. Customize the values of {$OPENWEATHERMAP.API.TOKEN} and {$LOCATION} macros. OpenWeatherMap API Tokens are available in your OpenWeatherMap account https://home.openweathermap.org/api_keys. Locations can be set by few ways: - by geo coordinates (for example: 56.95,24.0833) - by location name (for example: Riga) - by location ID. Link to the list of city ID: http://bulk.openweathermap.org/sample/city.list.json.gz - by zip/post code with a country code (for example: 94040,us) A few locations can be added to the macro at the same time by "|" delimiter. For example: 43.81821,7.76115|Riga|2643743|94040,us. Please note that API requests by city name, zip-codes and city id will be deprecated soon. Language and units macros can be customized too if necessary. List of available languages: https://openweathermap.org/current#multi. Available units of measurement are: standard, metric and imperial https://openweathermap.org/current#data. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','8098b3c157ab456abd55d3840eef79c1','OPENWEATHERMAP BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10517',NULL,'Proxmox VE by HTTP','3','-1','2','','','Proxmox VE by HTTP','0',NULL,'This template is designed for the effortless deployment of Proxmox VE monitoring by Zabbix via HTTP and doesn''t require any external scripts. Proxmox VE uses a REST like API. The concept is described in Resource Oriented Architecture (ROA). Check the API documentation for details: https://pve.proxmox.com/pve-docs/api-viewer/index.html Setup: 1. Create an API token for the monitoring user. Important note: for security reasons, it is recommended to create a separate user (Datacenter - Permissions). Please provide the necessary access levels for both the User and the Token: * Check: ["perm","/",["Sys.Audit"]] * Check: ["perm","/storage",["Datastore.Audit"]] * Check: ["perm","/vms",["VM.Audit"]] 2. Copy the resulting Token ID and Secret into the host macros ''{$PVE.TOKEN.ID}'' and ''{$PVE.TOKEN.SECRET}''. 3. Set the hostname or IP address of the Proxmox VE API host in the ''{$PVE.URL.HOST}'' macro. You can also change the API port in the ''{$PVE.URL.PORT}'' macro if necessary. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','4958b76448d74ff1b6d7d6280449beee','PROXMOX VE BY HTTP','Zabbix','7.0-3',NULL,'0'), ('10518',NULL,'TrueNAS CORE by SNMP','3','-1','2','','','TrueNAS CORE by SNMP','0',NULL,'Template for monitoring TrueNAS CORE by SNMP. Setup: 1. Import the template into Zabbix. 2. Enable SNMP daemon at Services in TrueNAS CORE web interface: https://www.truenas.com/docs/core/uireference/services/snmpscreen/ 3. Link the template to the host. MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB UCD-DISKIO-MIB UCD-SNMP-MIB FREENAS-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','28e31ef9402d4c1ba2fbc730a288d2d8','TRUENAS CORE BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10519',NULL,'CockroachDB by HTTP','3','-1','2','','','CockroachDB by HTTP','0',NULL,'The template to monitor CockroachDB nodes by Zabbix that works without any external scripts. Most of the metrics are collected in one go, thanks to Zabbix bulk data collection. The template collects metrics by HTTP agent from Prometheus endpoint and health endpoints. Internal node metrics are collected from Prometheus /_status/vars endpoint. Node health metrics are collected from /health and /health?ready=1 endpoints. The template doesn''t require usage of session token. Note, that some metrics may not be collected depending on your CockroachDB version and configuration. Setup: Set the hostname or IP address of the CockroachDB node host in the ''{$COCKROACHDB.API.HOST}'' macro. You can also change the port in the ''{$COCKROACHDB.API.PORT}'' macro and the scheme in the ''{$COCKROACHDB.API.SCHEME}'' macro if necessary. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','36116d8675da47b8a678193969d5a787','COCKROACHDB BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10520',NULL,'Envoy Proxy by HTTP','3','-1','2','','','Envoy Proxy by HTTP','0',NULL,'Get Envoy Proxy metrics by HTTP agent from metrics endpoint. https://www.envoyproxy.io/docs/envoy/v1.20.0/operations/stats_overview Don''t forget to change macros {$ENVOY.URL}, {$ENVOY.METRICS.PATH}. Some metrics may not be collected depending on your Envoy Proxy instance version and configuration. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','0368ca599bbb49729587b9c43ac83084','ENVOY PROXY BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10521',NULL,'HashiCorp Consul Node by HTTP','3','-1','2','','','HashiCorp Consul Node by HTTP','0',NULL,'Get HashiCorp Consul Node metrics by HTTP agent from metrics endpoint. Don''t forget to change macros {$CONSUL.NODE.API.URL}, {$CONSUL.TOKEN}. Some metrics may not be collected depending on your HashiCorp Consul instance version and configuration. More information about metrics you can find in official documentation: https://www.consul.io/docs/agent/telemetry You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','884bdbeea93c4be0a11a2c92a5f8adce','HASHICORP CONSUL NODE BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10522',NULL,'HashiCorp Consul Cluster by HTTP','3','-1','2','','','HashiCorp Consul Cluster by HTTP','0',NULL,'Get HashiCorp Consul Cluster services and nodes by HTTP agent from API endpoints. Don''t forget to change macros {$CONSUL.CLUSTER.URL}, {$CONSUL.TOKEN}. Some metrics may not be collected depending on your HashiCorp Consul instance version and configuration. More information about metrics you can find in official documentation: https://www.consul.io/docs/agent/telemetry You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','3db29bb6b2b14fa289ba7915264efcdf','HASHICORP CONSUL CLUSTER BY HTTP','Zabbix','7.0-2',NULL,'0'), ('10523',NULL,'Consul {#NODE_NAME}','0','-1','2','','','Consul {#NODE_NAME}','2',NULL,'','1','1','','','','','0','1','20efdd208e1548a7877a970e1600e5ba','CONSUL {#NODE_NAME}','','',NULL,'0'), ('10524',NULL,'HPE MSA 2040 Storage by HTTP','3','-1','2','','','HPE MSA 2040 Storage by HTTP','0',NULL,'The template to monitor HPE MSA 2040 by HTTP. It works without any external scripts and uses the script item. Setup: 1. Create a user with a monitor role on the storage, for example "zabbix". 2. Link the template to a host. 3. Set the hostname or IP address of the host in the {$HPE.MSA.API.HOST} macro and configure the username and password in the {$HPE.MSA.API.USERNAME} and {$HPE.MSA.API.PASSWORD} macros. 4. Change the {$HPE.MSA.API.SCHEME} and {$HPE.MSA.API.PORT} macros if needed. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','be10b1140fce4cc08247260b71bcd037','HPE MSA 2040 STORAGE BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10525',NULL,'HPE MSA 2060 Storage by HTTP','3','-1','2','','','HPE MSA 2060 Storage by HTTP','0',NULL,'The template to monitor HPE MSA 2060 by HTTP. It works without any external scripts and uses the script item. Setup: 1. Create a user with a monitor role on the storage, for example "zabbix". 2. Link the template to a host. 3. Set the hostname or IP address of the host in the {$HPE.MSA.API.HOST} macro and configure the username and password in the {$HPE.MSA.API.USERNAME} and {$HPE.MSA.API.PASSWORD} macros. 4. Change the {$HPE.MSA.API.SCHEME} and {$HPE.MSA.API.PORT} macros if needed. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','10537641cfa3416ab0f1451cdb61d804','HPE MSA 2060 STORAGE BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10526',NULL,'HPE Primera by HTTP','3','-1','2','','','HPE Primera by HTTP','0',NULL,'The template to monitor HPE Primera by HTTP. It works without any external scripts and uses the script item. Setup: 1. Create a user on the storage with a browse role and enable it for all domains, for example "zabbix". 2. The WSAPI server does not start automatically. - Log in to the CLI as Super, Service, or any role granted the wsapi_set right. - Start the WSAPI server by command: `startwsapi`. - To check WSAPI state use command: `showwsapi`. 3. Link template to the host. 4. Set the hostname or IP address of the host in the {$HPE.PRIMERA.API.HOST} macro and configure the username and password in the {$HPE.PRIMERA.API.USERNAME} and {$HPE.PRIMERA.API.PASSWORD} macros. 5. Change the {$HPE.PRIMERA.API.SCHEME} and {$HPE.PRIMERA.API.PORT} macros if needed. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/ Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','b8750c02b5624c6889979b129735bd56','HPE PRIMERA BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10527',NULL,'AWS EC2 by HTTP','3','-1','2','','','AWS EC2 by HTTP','0',NULL,'Get AWS EC2 and attached AWS EBS volumes metrics and uses the script item to make HTTP requests to the CloudWatch API. Don''t forget to read the README.md for the correct setup of the template. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','7af6d68b223a43d4bf8526cc5dc3fe2e','AWS EC2 BY HTTP','Zabbix','7.0-3',NULL,'0'), ('10528',NULL,'OPNsense by SNMP','3','-1','2','','','OPNsense by SNMP','0',NULL,'Template for monitoring OPNsense by SNMP Setup: 1. Enable bsnmpd daemon by creating new config file "/etc/rc.conf.d/bsnmpd" with the following content: bsnmpd_enable="YES" 2. Uncomment the following lines in "/etc/snmpd.config" file to enable required SNMP modules: begemotSnmpdModulePath."hostres" = "/usr/lib/snmp_hostres.so" begemotSnmpdModulePath."pf" = "/usr/lib/snmp_pf.so" 3. Start bsnmpd daemon with the following command: /etc/rc.d/bsnmpd start 4. Setup a firewall rule to get access from Zabbix proxy or Zabbix server by SNMP (https://docs.opnsense.org/manual/firewall.html). 5. Link the template to a host. MIBs used: BEGEMOT-PF-MIB HOST-RESOURCES-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','0c94915edb4c41bf8c627dddb4f68f5a','OPNSENSE BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10529',NULL,'AWS RDS instance by HTTP','3','-1','2','','','AWS RDS instance by HTTP','0',NULL,'The template gets AWS RDS instance metrics and uses the script item to make HTTP requests to the CloudWatch API. Don''t forget to read the README.md for the correct setup of the template. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','c6d9475847f44d9193f8253e5995b8f8','AWS RDS INSTANCE BY HTTP','Zabbix','7.0-3',NULL,'0'), ('10530',NULL,'AWS S3 bucket by HTTP','3','-1','2','','','AWS S3 bucket by HTTP','0',NULL,'The template gets AWS S3 bucket metrics and uses the script item to make HTTP requests to the CloudWatch API. Don''t forget to read the README.md for the correct setup of the template. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','a14ab6b4e80643fe8daa9d7288658f79','AWS S3 BUCKET BY HTTP','Zabbix','7.0-3',NULL,'0'), ('10531',NULL,'Azure by HTTP','3','-1','2','','','Azure by HTTP','0',NULL,'This template is designed to monitor Microsoft Azure by HTTP. It works without any external scripts and uses the script item. Currently the template supports the discovery of virtual machines (VMs), Cosmos DB for MongoDB, storage accounts, Microsoft SQL, MySQL, and PostgreSQL servers. Setup: 1. Create an Azure service principal via the Azure command-line interface (Azure CLI) for your subscription. `az ad sp create-for-rbac --name zabbix --role reader --scope /subscriptions/` See https://docs.microsoft.com/en-us/cli/azure/create-an-azure-service-principal-azure-cli for more details. 2. Link the template to a host. 3. Configure the macros: `{$AZURE.APP.ID}`, `{$AZURE.PASSWORD}`, `{$AZURE.TENANT.ID}`, and `{$AZURE.SUBSCRIPTION.ID}`. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/ Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','fa58228fee8a4e34a7c6503950d1c615','AZURE BY HTTP','Zabbix','7.0-4',NULL,'0'), ('10532',NULL,'Azure Virtual Machine by HTTP','3','-1','2','','','Azure Virtual Machine by HTTP','0',NULL,'This template is designed to monitor Microsoft Azure virtual machines (VMs) by HTTP. It works without any external scripts and uses the script item. Setup: 1. Create an Azure service principal via the Azure command-line interface (Azure CLI) for your subscription. `az ad sp create-for-rbac --name zabbix --role reader --scope /subscriptions/` See https://docs.microsoft.com/en-us/cli/azure/create-an-azure-service-principal-azure-cli for more details. 2. Link the template to a host. 3. Configure the macros: {$AZURE.APP.ID}, {$AZURE.PASSWORD}, {$AZURE.TENANT.ID}, {$AZURE.SUBSCRIPTION.ID}, and {$AZURE.RESOURCE.ID}. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/ Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','820fa4a1565c43e4aac07a691a5bface','AZURE VIRTUAL MACHINE BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10533',NULL,'Azure virtual machine {#NAME}','0','-1','2','','','Azure virtual machine {#NAME}','2',NULL,'','1','1','','','','','0','0','d08c0ee33c924b28bf1fed571da6c7f4','AZURE VIRTUAL MACHINE {#NAME}','','',NULL,'0'), ('10534',NULL,'HPE Synergy by HTTP','3','-1','2','','','HPE Synergy by HTTP','0',NULL,'This template is designed to monitor HPE Synergy by HTTP. It works without any external scripts and uses the script item. Setup: 1. Link template to the host. 2. Set the hostname or IP address of the host in the {$HPE.SYNERGY.API.HOST} macro and configure the username and password in the {$HPE.SYNERGY.API.USERNAME} and {$HPE.SYNERGY.API.PASSWORD} macros. 3. Change the {$HPE.SYNERGY.API.SCHEME} and {$HPE.SYNERGY.API.PORT} macros if needed. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/ Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','0ffde4421f524bcbac2f47fec87c0f95','HPE SYNERGY BY HTTP','Zabbix','7.0-2',NULL,'0'), ('10535',NULL,'AWS by HTTP','3','-1','2','','','AWS by HTTP','0',NULL,'Get AWS EC2, RDS and S3 instances, AWS ECS clusters, AWS Elastic Load Balancing, Backup vaults. Don''t forget to read the README.md for the correct setup of the template. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','c60e5929ab474f67bbe67dc6b04e709d','AWS BY HTTP','Zabbix','7.0-3',NULL,'0'), ('10536',NULL,'{#AWS.EC2.INSTANCE.ID}','0','-1','2','','','{#AWS.EC2.INSTANCE.NAME}','2',NULL,'','1','1','','','','','0','1','c4c830c727294b07926c39b00cf19046','{#AWS.EC2.INSTANCE.NAME}','','',NULL,'0'), ('10537',NULL,'{#AWS.RDS.INSTANCE.ID}','0','-1','2','','','{#AWS.RDS.INSTANCE.ID}','2',NULL,'','1','1','','','','','0','1','799663c52a644f78aa3b3c14d4cc7235','{#AWS.RDS.INSTANCE.ID}','','',NULL,'0'), ('10538',NULL,'{#AWS.S3.NAME}','0','-1','2','','','{#AWS.S3.NAME}','2',NULL,'','1','1','','','','','0','1','e45bd9810ea14718b17b875aad3fc544','{#AWS.S3.NAME}','','',NULL,'0'), ('10539',NULL,'Azure MySQL Flexible Server by HTTP','3','-1','2','','','Azure MySQL Flexible Server by HTTP','0',NULL,'This template is designed to monitor Microsoft Azure MySQL flexible servers by HTTP. It works without any external scripts and uses the script item. Setup: 1. Create an Azure service principal via the Azure command-line interface (Azure CLI) for your subscription. `az ad sp create-for-rbac --name zabbix --role reader --scope /subscriptions/` See https://docs.microsoft.com/en-us/cli/azure/create-an-azure-service-principal-azure-cli for more details. 2. Link the template to a host. 3. Configure the macros: {$AZURE.APP.ID}, {$AZURE.PASSWORD}, {$AZURE.TENANT.ID}, {$AZURE.SUBSCRIPTION.ID}, and {$AZURE.RESOURCE.ID}. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/ Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','ec92c7b0b1d14946b6ac61de89357199','AZURE MYSQL FLEXIBLE SERVER BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10540',NULL,'Azure MySQL Single Server by HTTP','3','-1','2','','','Azure MySQL Single Server by HTTP','0',NULL,'This template is designed to monitor Microsoft Azure MySQL single servers by HTTP. It works without any external scripts and uses the script item. Setup: 1. Create an Azure service principal via the Azure command-line interface (Azure CLI) for your subscription. `az ad sp create-for-rbac --name zabbix --role reader --scope /subscriptions/` See https://docs.microsoft.com/en-us/cli/azure/create-an-azure-service-principal-azure-cli for more details. 2. Link the template to a host. 3. Configure the macros: {$AZURE.APP.ID}, {$AZURE.PASSWORD}, {$AZURE.TENANT.ID}, {$AZURE.SUBSCRIPTION.ID}, and {$AZURE.RESOURCE.ID}. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/ Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','c1396bf1e8cf46f6a407e88ddceef0b8','AZURE MYSQL SINGLE SERVER BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10541',NULL,'Azure MySQL server {#NAME}','0','-1','2','','','Azure MySQL server {#NAME}','2',NULL,'','1','1','','','','','0','0','55b87078c14c4561b53e64af5ed77d61','AZURE MYSQL SERVER {#NAME}','','',NULL,'0'), ('10543',NULL,'Azure PostgreSQL Flexible Server by HTTP','3','-1','2','','','Azure PostgreSQL Flexible Server by HTTP','0',NULL,'This template is designed to monitor Microsoft Azure PostgreSQL flexible servers by HTTP. It works without any external scripts and uses the script item. Setup: 1. Create an Azure service principal via the Azure command-line interface (Azure CLI) for your subscription. `az ad sp create-for-rbac --name zabbix --role reader --scope /subscriptions/` See https://docs.microsoft.com/en-us/cli/azure/create-an-azure-service-principal-azure-cli for more details. 2. Link the template to a host. 3. Configure the macros: {$AZURE.APP.ID}, {$AZURE.PASSWORD}, {$AZURE.TENANT.ID}, {$AZURE.SUBSCRIPTION.ID}, and {$AZURE.RESOURCE.ID}. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/ Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','35ef29f24158444097272d2ea7fa6044','AZURE POSTGRESQL FLEXIBLE SERVER BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10544',NULL,'Azure PostgreSQL Single Server by HTTP','3','-1','2','','','Azure PostgreSQL Single Server by HTTP','0',NULL,'This template is designed to monitor Microsoft Azure PostgreSQL servers by HTTP. It works without any external scripts and uses the script item. Setup: 1. Create an Azure service principal via the Azure command-line interface (Azure CLI) for your subscription. `az ad sp create-for-rbac --name zabbix --role reader --scope /subscriptions/` See https://docs.microsoft.com/en-us/cli/azure/create-an-azure-service-principal-azure-cli for more details. 2. Link the template to a host. 3. Configure the macros: {$AZURE.APP.ID}, {$AZURE.PASSWORD}, {$AZURE.TENANT.ID}, {$AZURE.SUBSCRIPTION.ID}, and {$AZURE.RESOURCE.ID}. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/ Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','d023e2cd326c486f908e3e361d1fe157','AZURE POSTGRESQL SINGLE SERVER BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10545',NULL,'Azure PostgreSQL server {#NAME}','0','-1','2','','','Azure PostgreSQL server {#NAME}','2',NULL,'','1','1','','','','','0','0','54f0e0ec288f4feb9a2dc58a8726bd1d','AZURE POSTGRESQL SERVER {#NAME}','','',NULL,'0'), ('10546',NULL,'Cisco Meraki dashboard by HTTP','3','-1','2','','','Cisco Meraki dashboard by HTTP','0',NULL,'Template for monitoring Cisco Meraki dashboard https://meraki.cisco.com/products/meraki-dashboard/ You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/ Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','2fca6b60914b4fa98132b1a7885ab014','CISCO MERAKI DASHBOARD BY HTTP','Zabbix','7.0-4',NULL,'0'), ('10547',NULL,'Cisco Meraki device by HTTP','3','-1','2','','','Cisco Meraki device by HTTP','0',NULL,'Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','2cae7d2eeca04e6fa7419759ac9ad814','CISCO MERAKI DEVICE BY HTTP','Zabbix','7.0-3',NULL,'0'), ('10548',NULL,'Cisco Meraki organization by HTTP','3','-1','2','','','Cisco Meraki organization by HTTP','0',NULL,'Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','39e2f742d0b24ea489b7f61d27a5df1c','CISCO MERAKI ORGANIZATION BY HTTP','Zabbix','7.0-2',NULL,'0'), ('10549',NULL,'{#SERIAL}','0','-1','2','','','[{#SERIAL}] [{#PRODUCT_TYPE}] {#NAME}','2',NULL,'','1','1','','','','','0','0','86d599f384d94b368508a170911213ec','[{#SERIAL}] [{#PRODUCT_TYPE}] {#NAME}','','',NULL,'0'), ('10550',NULL,'meraki-organization-{#ID}','0','-1','2','','','[{#REGION}] {#NAME}','2',NULL,'','1','1','','','','','0','0','59cd2e995b814d7e9f8411dbc7420c76','[{#REGION}] {#NAME}','','',NULL,'0'), ('10551',NULL,'Cisco Nexus 9000 Series by SNMP','3','-1','2','','','Cisco Nexus 9000 Series by SNMP','0',NULL,'Template Cisco Nexus 9000 Series MIBs used: CISCO-ENHANCED-MEMPOOL-MIB CISCO-ENTITY-FRU-CONTROL-MIB CISCO-ENTITY-SENSOR-MIB CISCO-PROCESS-MIB ENTITY-MIB EtherLike-MIB IF-MIB SNMPv2-MIB SNMP-FRAMEWORK-MIB CISCO-IMAGE-MIB You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/418396-discussion-thread-for-official-zabbix-templates-for-cisco Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','80fc469750f84061924662a98c33580c','CISCO NEXUS 9000 SERIES BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10552',NULL,'Control-M enterprise manager by HTTP','3','-1','2','','','Control-M enterprise manager by HTTP','0',NULL,'This template is designed to get metrics from the Control-M Enterprise Manager using the Control-M Automation API with HTTP agent. This template monitors active Service Level Agreement (SLA) services, discovers Control-M servers using Low Level Discovery and also creates host prototypes for them in conjunction with the `Control-M server by HTTP` template. To use this template, macros `{$API.TOKEN}` and `{$API.URI.ENDPOINT}` need to be set. > See [Zabbix template operation](https://www.zabbix.com/documentation/7.0/manual/config/templates_out_of_the_box/http) for basic instructions. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','24b64f6d22b446dabecc86ee3f199004','CONTROL-M ENTERPRISE MANAGER BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10553',NULL,'Control-M server by HTTP','3','-1','2','','','Control-M server by HTTP','0',NULL,'This template is designed to get metrics from the Control-M server using the Control-M Automation API with HTTP agent. This template monitors server statistics, discovers jobs and agents using Low Level Discovery. To use this template, macros `{$API.TOKEN}`, `{$API.URI.ENDPOINT}`, and `{$SERVER.NAME}` need to be set. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','c077d6c381904e94a4df88136588b551','CONTROL-M SERVER BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10554',NULL,'{#SERVER.NAME}','0','-1','2','','','Control-M server [{#SERVER.NAME}]','2',NULL,'','1','1','','','','','0','0','1ade45fcbb9e407ca32542564b12f2b1','CONTROL-M SERVER [{#SERVER.NAME}]','','',NULL,'0'), ('10555',NULL,'Veeam Backup and Replication by HTTP','3','-1','2','','','Veeam Backup and Replication by HTTP','0',NULL,'This template is designed to monitor Veeam Backup and Replication. NOTE: The RESTful API may not be available for some editions, see (https://www.veeam.com/licensing-pricing.html) for more details. Setup: 1. Create a user to monitor the service or use an existing read-only account. See (https://helpcenter.veeam.com/docs/backup/vbr_rest/reference/vbr-rest-v1-rev2.html?ver=110#tag/Login/operation/CreateToken!path=grant_type&t=request) for more details. 2. Link the template to a host. 3. Configure the following macros: {$VEEAM.API.URL}, {$VEEAM.USER}, and {$VEEAM.PASSWORD}. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/ Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','738085dde4e749d49199e5e6fd4d56ab','VEEAM BACKUP AND REPLICATION BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10556',NULL,'Veeam Backup Enterprise Manager by HTTP','3','-1','2','','','Veeam Backup Enterprise Manager by HTTP','0',NULL,'This template is designed to monitor Veeam Backup Enterprise Manager. NOTE: The REST API may not be available for some editions, see (https://www.veeam.com/licensing-pricing.html) for more details. Setup: 1. Create a user to monitor the service, or use an existing read-only account. Similarly to the user authentication in the Veeam Backup Enterprise Manager Web UI, the client authentication in the REST API dictates which operations a client is allowed to perform when working with the REST API. That is, if the client is authenticated using an account that does not have enough permissions to perform some actions, it will not be able to execute them. You can also obtain the collected jobs if you are logged in under an account having only `Portal Administrator` role. See (https://helpcenter.veeam.com/docs/backup/em_rest/http_authentication.html?ver=110) for more details. 2. Link the template to a host. 3. Configure the following macros: {$VEEAM.MANAGER.API.URL}, {$VEEAM.MANAGER.USER}, {$VEEAM.MANAGER.PASSWORD}. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/ Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','2ce384bafd524db5b910d7f55bca1fbb','VEEAM BACKUP ENTERPRISE MANAGER BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10557',NULL,'Azure Microsoft SQL Database by HTTP','3','-1','2','','','Azure Microsoft SQL Database by HTTP','0',NULL,'This template is designed to monitor Microsoft SQL databases by HTTP. It works without any external scripts and uses the script item. Setup: 1. Create an Azure service principal via the Azure command-line interface (Azure CLI) for your subscription. `az ad sp create-for-rbac --name zabbix --role reader --scope /subscriptions/` See https://docs.microsoft.com/en-us/cli/azure/create-an-azure-service-principal-azure-cli for more details. 2. Link the template to a host. 3. Configure the macros: {$AZURE.APP.ID}, {$AZURE.PASSWORD}, {$AZURE.TENANT.ID}, {$AZURE.SUBSCRIPTION.ID}, and {$AZURE.RESOURCE.ID}. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/ Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','2d8b9329b5d04cdf85bf17d2d0db2b29','AZURE MICROSOFT SQL DATABASE BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10558',NULL,'Azure Microsoft SQL Serverless Database by HTTP','3','-1','2','','','Azure Microsoft SQL Serverless Database by HTTP','0',NULL,'This template is designed to monitor Microsoft SQL serverless databases by HTTP. It works without any external scripts and uses the script item. Setup: 1. Create an Azure service principal via the Azure command-line interface (Azure CLI) for your subscription. `az ad sp create-for-rbac --name zabbix --role reader --scope /subscriptions/` See https://docs.microsoft.com/en-us/cli/azure/create-an-azure-service-principal-azure-cli for more details. 2. Link the template to a host. 3. Configure the macros: {$AZURE.APP.ID}, {$AZURE.PASSWORD}, {$AZURE.TENANT.ID}, {$AZURE.SUBSCRIPTION.ID}, and {$AZURE.RESOURCE.ID}. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/ Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','5175afdf713744d9a81ce53864ccfc1d','AZURE MICROSOFT SQL SERVERLESS DATABASE BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10559',NULL,'Azure Microsoft SQL database {#NAME}','0','-1','2','','','Azure Microsoft SQL database {#NAME}','2',NULL,'','1','1','','','','','0','0','2aaf7dc7e9f04ccf9dd91fcd803fa076','AZURE MICROSOFT SQL DATABASE {#NAME}','','',NULL,'0'), ('10560',NULL,'OS processes by Zabbix agent','3','-1','2','','','OS processes by Zabbix agent','0',NULL,'Get processes metrics using item proc.get by Zabbix agent. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','0f6889282f6048e2b1370e569e578985','OS PROCESSES BY ZABBIX AGENT','Zabbix','7.0-1',NULL,'0'), ('10561',NULL,'Zabbix agent','3','-1','2','','','Zabbix agent','0',NULL,'Use this template for agents reachable from Zabbix server/proxy (passive mode). Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','8aa4557f6c3f4aadbc03447fca3af9f6','ZABBIX AGENT','Zabbix','7.0-0',NULL,'0'), ('10562',NULL,'Zabbix agent active','3','-1','2','','','Zabbix agent active','0',NULL,'Use this template instead of ''Zabbix agent'' for agents running in active mode only. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','650bec3f2f364a478b82317396949459','ZABBIX AGENT ACTIVE','Zabbix','7.0-0',NULL,'0'), ('10563',NULL,'Generic by SNMP','3','-1','2','','','Generic by SNMP','0',NULL,'Template Module Generic MIBs used: HOST-RESOURCES-MIB SNMPv2-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','4cb1aabe2b704b5c882963c2ef87d8f6','GENERIC BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10564',NULL,'ICMP Ping','3','-1','2','','','ICMP Ping','0',NULL,'Template Net ICMP Ping Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','37e5eb5606bc4abba66c8b20381a1e8a','ICMP PING','Zabbix','7.0-2',NULL,'0'), ('10565',NULL,'SMART by Zabbix agent 2','3','-1','2','','','SMART by Zabbix agent 2','0',NULL,E'The template for monitoring S.M.A.R.T. attributes of physical disk that works without any external scripts. It collects metrics by Zabbix agent 2 version 5.0 and later with Smartmontools version 7.1 and later. Disk discovery LLD rule finds all HDD, SSD, NVMe disks with S.M.A.R.T. enabled. Attribute discovery LLD rule have pre-defined Vendor Specific Attributes for each disk, and will be discovered if attribute is present. Setup: 1. Install Zabbix agent 2 and Smartmontools 7.1 or newer. 2. Ensure the path to the "smartctl" executable is correctly specified. You can either provide the full path to the executable (e.g., "/usr/sbin/smartctl" on Linux or "C:\\Program Files\\smartctl\\smartctl.exe" on Windows) in the configuration file or ensure that the folder containing the "smartctl" executable is added to the system''s environment variables ("PATH"). This applies to both Linux and Windows systems. Example for Linux: Plugins.Smart.Path=/usr/sbin/smartctl Example for Windows: Plugins.Smart.Path="C:\\Program Files\\smartctl\\smartctl.exe" 3. Grant Zabbix agent 2 super/admin user privileges for the "smartctl" utility (not required for Windows). Example for Linux (add the line that grants execution of the "smartctl" utility without the password): - Run the "visudo" command to edit the "sudoers" file: sudo visudo - Add the permission line and save the changes: zabbix ALL=(ALL) NOPASSWD:/usr/sbin/smartctl You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/415662-discussion-thread-for-official-zabbix-smart-disk-monitoring Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','7b6c6228b25f4586b42cd1bf37ff8034','SMART BY ZABBIX AGENT 2','Zabbix','7.0-4',NULL,'0'), ('10566',NULL,'SMART by Zabbix agent 2 active','3','-1','2','','','SMART by Zabbix agent 2 active','0',NULL,E'The template for monitoring S.M.A.R.T. attributes of physical disk that works without any external scripts. It collects metrics by Zabbix agent 2 version 5.0 and later with Smartmontools version 7.1 and later. Disk discovery LLD rule finds all HDD, SSD, NVMe disks with S.M.A.R.T. enabled. Attribute discovery LLD rule have pre-defined Vendor Specific Attributes for each disk, and will be discovered if attribute is present. Setup: 1. Install Zabbix agent 2 and Smartmontools 7.1 or newer. 2. Ensure the path to the "smartctl" executable is correctly specified. You can either provide the full path to the executable (e.g., "/usr/sbin/smartctl" on Linux or "C:\\Program Files\\smartctl\\smartctl.exe" on Windows) in the configuration file or ensure that the folder containing the "smartctl" executable is added to the system''s environment variables ("PATH"). This applies to both Linux and Windows systems. Example for Linux: Plugins.Smart.Path=/usr/sbin/smartctl Example for Windows: Plugins.Smart.Path="C:\\Program Files\\smartctl\\smartctl.exe" 3. Grant Zabbix agent 2 super/admin user privileges for the "smartctl" utility (not required for Windows). Example for Linux (add the line that grants execution of the "smartctl" utility without the password): - Run the "visudo" command to edit the "sudoers" file: sudo visudo - Add the permission line and save the changes: zabbix ALL=(ALL) NOPASSWD:/usr/sbin/smartctl You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/415662-discussion-thread-for-official-zabbix-smart-disk-monitoring Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','e518b1340ce44d7389d2cc7c304a97b4','SMART BY ZABBIX AGENT 2 ACTIVE','Zabbix','7.0-4',NULL,'0'), ('10567',NULL,'{#NAME}','1','-1','2','','','{#NAME}','2',NULL,'','1','1','','','','','1','1','bfcbf26edd704bdfaa65e244a987839e','{#NAME}','','',NULL,'0'), ('10568',NULL,'Azure Cosmos DB for MongoDB by HTTP','3','-1','2','','','Azure Cosmos DB for MongoDB by HTTP','0',NULL,'This template is designed to monitor Microsoft Azure Cosmos DB for MongoDB by HTTP. It works without any external scripts and uses the script item. Setup: 1. Create an Azure service principal via the Azure command-line interface (Azure CLI) for your subscription. `az ad sp create-for-rbac --name zabbix --role reader --scope /subscriptions/` See https://docs.microsoft.com/en-us/cli/azure/create-an-azure-service-principal-azure-cli for more details. 2. Link the template to a host. 3. Configure the macros: {$AZURE.APP.ID}, {$AZURE.PASSWORD}, {$AZURE.TENANT.ID}, {$AZURE.SUBSCRIPTION.ID}, and {$AZURE.RESOURCE.ID}. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/ Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','29325098807848aa928b4192ad5e020f','AZURE COSMOS DB FOR MONGODB BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10569',NULL,'Azure Cosmos DB {#NAME}','0','-1','2','','','Azure Cosmos DB {#NAME}','2',NULL,'','1','1','','','','','0','0','16eec30e921e4627b3599b4d06e48072','AZURE COSMOS DB {#NAME}','','',NULL,'0'), ('10570',NULL,'GCP by HTTP','3','-1','2','','','GCP by HTTP','0',NULL,'Discover GCP Compute Engine/Cloud SQL Instances and Compute Engine project quota metrics. Don''t forget to read the README.md for the correct setup of the template. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','4e1e9372a5fe4297936210bc4fc4b1c0','GCP BY HTTP','Zabbix','7.0-2',NULL,'0'), ('10571',NULL,'GCP Cloud SQL MSSQL by HTTP','3','-1','2','','','GCP Cloud SQL MSSQL by HTTP','0',NULL,'Get GCP Cloud SQL MSSQL instances monitoring with script item usage to perform HTTP requests to Google Cloud Platform Monitoring API. This template will be automatically connected to discovered entities with all their required parameters pre-defined. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','507d70db18554a4e9ee5e09bb29bc85f','GCP CLOUD SQL MSSQL BY HTTP','Zabbix','7.0-2',NULL,'0'), ('10572',NULL,'GCP Cloud SQL MSSQL Replica by HTTP','3','-1','2','','','GCP Cloud SQL MSSQL Replica by HTTP','0',NULL,'Get GCP Cloud SQL MSSQL monitoring for read-only replicas with script item usage to perform HTTP requests to Google Cloud Platform Monitoring API. This template will be automatically connected to discovered entities with all their required parameters pre-defined. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','54f0ffb538d94a9bb8062df3e63c4cb6','GCP CLOUD SQL MSSQL REPLICA BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10573',NULL,'GCP Cloud SQL MySQL by HTTP','3','-1','2','','','GCP Cloud SQL MySQL by HTTP','0',NULL,'Get GCP Cloud SQL MySQL instances monitoring with script item usage to perform HTTP requests to Google Cloud Platform Monitoring API. This template will be automatically connected to discovered entities with all their required parameters pre-defined. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','38456af4aedd4b168ec3fa4ad2acb256','GCP CLOUD SQL MYSQL BY HTTP','Zabbix','7.0-2',NULL,'0'), ('10574',NULL,'GCP Cloud SQL MySQL Replica by HTTP','3','-1','2','','','GCP Cloud SQL MySQL Replica by HTTP','0',NULL,'Get GCP Cloud SQL MySQL monitoring for read-only replicas with script item usage to perform HTTP requests to Google Cloud Platform Monitoring API. This template will be automatically connected to discovered entities with all their required parameters pre-defined. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','9d7871c093f9489293421396b9fea668','GCP CLOUD SQL MYSQL REPLICA BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10575',NULL,'GCP Cloud SQL PostgreSQL by HTTP','3','-1','2','','','GCP Cloud SQL PostgreSQL by HTTP','0',NULL,'Get GCP Cloud SQL PostgreSQL instances monitoring with script item usage to perform HTTP requests to Google Cloud Platform Monitoring API. This template will be automatically connected to discovered entities with all their required parameters pre-defined. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','e74c1e12f82e4d9880a368b53f5e65a4','GCP CLOUD SQL POSTGRESQL BY HTTP','Zabbix','7.0-2',NULL,'0'), ('10576',NULL,'GCP Cloud SQL PostgreSQL Replica by HTTP','3','-1','2','','','GCP Cloud SQL PostgreSQL Replica by HTTP','0',NULL,'Get GCP Cloud SQL PostgreSQL monitoring for read-only replicas with script item usage to perform HTTP requests to Google Cloud Platform Monitoring API. This template will be automatically connected to discovered entities with all their required parameters pre-defined. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','b43a7c5f1d1d43d28e2eb8f0a9f6f16f','GCP CLOUD SQL POSTGRESQL REPLICA BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10577',NULL,'GCP Compute Engine Instance by HTTP','3','-1','2','','','GCP Compute Engine Instance by HTTP','0',NULL,'Discover GCP Compute Engine instances by HTTP with script item usage. This template will be automatically connected to discovered entities with all their required parameters pre-defined. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','6d2443db49e54d59a82b9b525f2424ef','GCP COMPUTE ENGINE INSTANCE BY HTTP','Zabbix','7.0-2',NULL,'0'), ('10578',NULL,'{#GCP.PROJECT.ID}-{#CLOUD_SQL.INSTANCE.NAME}','0','-1','2','','','{#CLOUD_SQL.INSTANCE.NAME}','2',NULL,'','1','1','','','','','0','1','edc6ab9314ed410b8a3cf6bfedff51ab','{#CLOUD_SQL.INSTANCE.NAME}','','',NULL,'0'), ('10579',NULL,'{#GCP.PROJECT.ID}-{#CLOUD_SQL.INSTANCE.NAME}','0','-1','2','','','{#CLOUD_SQL.INSTANCE.NAME}','2',NULL,'','1','1','','','','','0','1','8b2556b881b14b86a98f90a447ae9734','{#CLOUD_SQL.INSTANCE.NAME}','','',NULL,'0'), ('10580',NULL,'{#GCP.PROJECT.ID}-{#CLOUD_SQL.INSTANCE.NAME}','0','-1','2','','','{#CLOUD_SQL.INSTANCE.NAME}','2',NULL,'','1','1','','','','','0','1','0fbbc550fda448d39aad6d0710f28b6a','{#CLOUD_SQL.INSTANCE.NAME}','','',NULL,'0'), ('10581',NULL,'{#GCE.INSTANCE.ID}','0','-1','2','','','{#GCE.INSTANCE.NAME}','2',NULL,'','1','1','','','','','0','1','cb22d82a12814afb8ba833c649d575c4','{#GCE.INSTANCE.NAME}','','',NULL,'0'), ('10582',NULL,'AWS Cost Explorer by HTTP','3','-1','2','','','AWS Cost Explorer by HTTP','0',NULL,'The template gets AWS Cost Explorer metrics and uses the script item to make HTTP requests to the Cost Explorer API. The Cost Explorer API can access the historical data over up to 12 months and the data for current month. Don''t forget to read the README.md for the correct setup of the template. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','dce23cdaef364e139efa580d8a304ffe','AWS COST EXPLORER BY HTTP','Zabbix','7.0-3',NULL,'0'), ('10583',NULL,'AWS ECS Cluster by HTTP','3','-1','2','','','AWS ECS Cluster by HTTP','0',NULL,'The template gets AWS ECS Cluster metrics and uses the script item to make HTTP requests to the CloudWatch API. Don''t forget to read the README.md for the correct setup of the template. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','c94105c23220452baed03ba87f09ca12','AWS ECS CLUSTER BY HTTP','Zabbix','7.0-4',NULL,'0'), ('10584',NULL,'AWS ECS Serverless Cluster by HTTP','3','-1','2','','','AWS ECS Serverless Cluster by HTTP','0',NULL,'The template gets AWS ECS Serverless Cluster metrics and uses the script item to make HTTP requests to the CloudWatch API. Don''t forget to read the README.md for the correct setup of the template. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','5e225ad1c2cc4d0bbf75586e7bf8871b','AWS ECS SERVERLESS CLUSTER BY HTTP','Zabbix','7.0-4',NULL,'0'), ('10585',NULL,'{#AWS.ECS.CLUSTER.NAME}','0','-1','2','','','{#AWS.ECS.CLUSTER.NAME}','2',NULL,'','1','1','','','','','0','0','71072e5a149e45b293946866f8220c07','{#AWS.ECS.CLUSTER.NAME}','','',NULL,'0'), ('10586',NULL,'OpenStack by HTTP','3','-1','2','','','OpenStack by HTTP','0',NULL,'Requests OpenStack API access token and discovers available OpenStack services using OpenStack Identity API by HTTP using script item and creates host prototypes for them. Template uses OpenStack application credentials for authorization. Zabbix currently supports OpenStack Nova service. Read the template documentation prior to using this template. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','4e3fb27f028e4c35b8c9fc43b11c07d7','OPENSTACK BY HTTP','Zabbix','7.0-0',NULL,'0'), ('10587',NULL,'OpenStack Nova by HTTP','3','-1','2','','','OpenStack Nova by HTTP','0',NULL,'Discovers and monitors project limits, servers, services, hypervisors, availability zones, hypervisors and tenants with OpenStack Compute API by HTTP using script and HTTP agent items. This template receives token and service URL from parent host, therefore no additional configuration is necessary. Read the template documentation prior to using this template. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','ff637e001b91472d8730eb7f10e65800','OPENSTACK NOVA BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10588',NULL,'OpenStack {#SERVICE_NAME}','0','-1','2','','','OpenStack {#SERVICE_NAME}','2',NULL,'','1','1','','','','','0','0','580d769292ec48379c5b84cd5c72533b','OPENSTACK {#SERVICE_NAME}','','',NULL,'0'), ('10589',NULL,'PostgreSQL by ODBC','3','-1','2','','','PostgreSQL by ODBC','0',NULL,'This template is designed for the effortless deployment of PostgreSQL monitoring by Zabbix via ODBC and doesn''t require any external scripts. Setup: 1. Create the PostgreSQL user for monitoring (`` at your discretion) and inherit permissions from the default role `pg_monitor`: CREATE USER zbx_monitor WITH PASSWORD '''' INHERIT; GRANT pg_monitor TO zbx_monitor; 2. Edit the `pg_hba.conf` configuration file to allow TCP connections for the user `zbx_monitor`. You can check the PostgreSQL documentation for examples (https://www.postgresql.org/docs/current/auth-pg-hba-conf.html). 3. Install the PostgreSQL ODBC driver. 4. Set up the connection string with the `{$PG.CONNSTRING.ODBC}` macro. The minimum required parameters are: - `Driver=` - set the name of the driver which will be used for monitoring (from the `odbcinst.ini` file) or specify the path to the driver file (for example `/usr/lib64/psqlodbcw.so`); - `Servername=` - set the host name or IP address of the PostgreSQL instance; - `Port=` - adjust the port number if needed. If you want to use SSL/TLS encryption to protect communications with the remote PostgreSQL instance, you can also specify encryption parameters here. It is assumed that you set up the PostgreSQL instance to work in the desired encryption mode. Check the PostgreSQL documentation (https://www.postgresql.org/docs/current/ssl-tcp.html) for details. For example, to enable required encryption in transport mode without identity checks, the connection string could look like this (replace `` with the address of the PostgreSQL instance): Servername=;Port=5432;Driver=/usr/lib64/psqlodbcw.so;SSLmode=require 5. Set the password that you specified in step 1 in the macro `{$PG.PASSWORD}`. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384190-%C2%A0discussion-thread-for-official-zabbix-template-db-postgresql Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','e0a7c3e725c445228b03116dc6114fe9','POSTGRESQL BY ODBC','Zabbix','7.0-2',NULL,'0'), ('10590',NULL,'Cisco SD-WAN by HTTP','3','-1','2','','','Cisco SD-WAN by HTTP','0',NULL,'Discover Cisco SD-WAN devices by HTTP with script item usage. Setup: 1. Put your username and password from Cisco SD-WAN vManage into {$SDWAN.API.USERNAME} and {$SDWAN.API.PASSWORD} macros. 2. Set your Cisco SD-WAN vManage URL as {$SDWAN.API.URL} macro value. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','e5cf4e7ac41a470b99e4262d1c5ee104','CISCO SD-WAN BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10591',NULL,'Cisco SD-WAN device by HTTP','3','-1','2','','','Cisco SD-WAN device by HTTP','0',NULL,'Get Cisco SD-WAN devices monitoring with script item usage to perform HTTP requests to Cisco SD-WAN API. This template will be automatically connected to discovered entities with all required parameters pre-defined. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','e1e25df663204b099f2597caf89a0678','CISCO SD-WAN DEVICE BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10592',NULL,'{#UUID}','0','-1','2','','','[{#TYPE}] {#NAME}','2',NULL,'','1','1','','','','','0','1','8c53a2dded4a47cba1eb3398aff888d7','[{#TYPE}] {#NAME}','','',NULL,'0'), ('10593',NULL,'Mantis BT by HTTP','3','-1','2','','','Mantis BT by HTTP','0',NULL,'Get Mantis BT issues by HTTP. Metrics are collected by requests to Mantis BT API. Please change macros {$MANTIS.URL} and {$MANTIS.TOKEN}. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','2c96393f8f2945c1a9f03f86adf5eb57','MANTIS BT BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10594',NULL,'HashiCorp Nomad by HTTP','3','-1','2','','','HashiCorp Nomad by HTTP','0',NULL,'Discover HashiCorp Nomad servers and clients automatically. Don''t forget to change macro {$NOMAD.ENDPOINT.API.URL}, {$NOMAD.TOKEN} values. You can discuss this template or leave feedback on our forum: https://www.zabbix.com/forum/zabbix-suggestions-and-feedback. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','f74adf26d9ab44ada318002d31fd2881','HASHICORP NOMAD BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10595',NULL,'HashiCorp Nomad Client by HTTP','3','-1','2','','','HashiCorp Nomad Client by HTTP','0',NULL,'Get HashiCorp Nomad client metrics by HTTP from metrics endpoint. More information about metrics is available in the official documentation: https://developer.hashicorp.com/nomad/docs/operations/metrics-reference. You can discuss this template or leave feedback on our forum: https://www.zabbix.com/forum/zabbix-suggestions-and-feedback. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','44eac6a1abe34999b85ad6d0e40073fd','HASHICORP NOMAD CLIENT BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10596',NULL,'HashiCorp Nomad Server by HTTP','3','-1','2','','','HashiCorp Nomad Server by HTTP','0',NULL,'Get HashiCorp Nomad server metrics by HTTP from metrics endpoint. More information about metrics is available in the official documentation: https://developer.hashicorp.com/nomad/docs/operations/metrics-reference. You can discuss this template or leave feedback on our forum: https://www.zabbix.com/forum/zabbix-suggestions-and-feedback. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','8598d0e2bd6f4903832ec91b7b300062','HASHICORP NOMAD SERVER BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10597',NULL,'{#CLIENT.ID}','0','-1','2','','','{#CLIENT.NAME}-client','2',NULL,'','1','1','','','','','0','1','8284dcf3055749d3b27720526c665e34','{#CLIENT.NAME}-CLIENT','','',NULL,'0'), ('10598',NULL,'{#SERVER.ID}','0','-1','2','','','{#SERVER.NAME}','2',NULL,'','1','1','','','','','0','1','addb1ce7995f44089a13128052171445','{#SERVER.NAME}','','',NULL,'0'), ('10599',NULL,'Acronis Cyber Protect Cloud by HTTP','3','-1','2','','','Acronis Cyber Protect Cloud by HTTP','0',NULL,'Requests Acronis Cyber Protect Cloud API access token and creates host prototype for MSP. Template uses HTTP item to query Acronis Cyber Protect Cloud API client for authorization. Read the template documentation prior to using this template. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','d0571c5f2c204b7ab244843040288a35','ACRONIS CYBER PROTECT CLOUD BY HTTP','Zabbix','7.0-0',NULL,'0'), ('10600',NULL,'Acronis Cyber Protect Cloud MSP by HTTP','3','-1','2','','','Acronis Cyber Protect Cloud MSP by HTTP','0',NULL,'Discovers and monitors alerts, clients, devices using HTTP agent items. This template receives API token and datacenter URL from parent host, therefore no additional configuration is necessary. Read the template documentation prior to using this template. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','bf3107deff3a4aabab1e1c0ee71a3281','ACRONIS CYBER PROTECT CLOUD MSP BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10601',NULL,'Acronis CPC MSP {#SCOPE}','0','-1','2','','','Acronis CPC MSP {#SCOPE}','2',NULL,'','1','1','','','','','0','0','bbdc747270f64876bc701dd87c27dbbe','ACRONIS CPC MSP {#SCOPE}','','',NULL,'0'), ('10602',NULL,'Nextcloud by HTTP','3','-1','2','','','Nextcloud by HTTP','0',NULL,'This template is designed for monitoring Nextcloud by HTTP via Zabbix, and it works without any external scripts. Nextcloud is a suite of client-server software for creating and using file hosting services. For more information, see the [`official documentation`](https://docs.nextcloud.com/server/latest/developer_manual/client_apis/OCS/ocs-api-overview.html#) Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','34f386276a094e8e9a6e46653fdf05b1','NEXTCLOUD BY HTTP','Zabbix','7.0-3',NULL,'0'), ('10603',NULL,'FortiGate by HTTP','3','-1','2','','','FortiGate by HTTP','0',NULL,'The template for monitoring FortiGate Next Generation Firewall by HTTP. 1. On the FortiGate GUI, select System > Admin Profiles > Create New. 2. Enter a profile name (ex. zabbix_ro) and enable all the Read permissions. Please note the profile name, it will be used a bit later. 3. Go to System > Administrators > Create New > REST API Admin. 4. Enter the API-user''s name and select the profile name you created in step 2. 5. The trusted host can be specified to ensure that only Zabbix server can reach the FortiGate. 6. Click OK and an API token will be generated. Make a note of the API token as it''s only shown once and cannot be retrieved. 7. Put the API token into {$FGATE.API.TOKEN} macro. 8. Set your FortiGate GUI IP/FQDN as {$FGATE.API.FQDN} macro value. 9. If FortiGate GUI uses HTTPS, put "https" value into {$FGATE.SCHEME} macro and "443" into {$FGATE.API.PORT} macro. 10. If FortiGate GUI port differs from the standard one, specify it in {$FGATE.API.PORT} macro. NOTE: Starting from template version ''7.0-2'', the API token is used in the request header. For older template versions (where the API token is passed in the URL query parameter), when using FortiGate v7.4.5+, you must enable the following global setting: https://docs.fortinet.com/document/fortigate/7.6.4/administration-guide/940602/using-apis For added security, it is strongly recommended to use the latest template version, which passes the API token in the request header instead of the URL parameter. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','e56c9577c225476eb6d8f1c2f5dc90a5','FORTIGATE BY HTTP','Zabbix','7.0-2',NULL,'0'), ('10604',NULL,'FortiGate by SNMP','3','-1','2','','','FortiGate by SNMP','0',NULL,'The template for monitoring FortiGate firewall by SNMP. MIBs used: HOST-RESOURCES-MIB FORTINET-FORTIGATE-MIB FORTINET-CORE-MIB SNMPv2-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','1f38deb487fc4a8d965e407ba7c5247f','FORTIGATE BY SNMP','Zabbix','7.0-4',NULL,'0'), ('10605',NULL,'HPE iLO by HTTP','3','-1','2','','','HPE iLO by HTTP','0',NULL,'This template is designed for the effortless deployment of HPE iLO monitoring by Zabbix via iLO RESTful API and doesn''t require any external scripts. Setup: 1. Create the iLO user for monitoring (for example, `zbx_monitor`). The user will only need to have the `Login` privilege, which can be assigned manually or by assigning the `ReadOnly` role to the user. 2. Set the iLO API endpoint URL in the `{$ILO.URL}` macro in the format `://[:port]/` (port is optional). 3. Set the name of the user that you created in step 1 in the `{$ILO.USER}` macro. 4. Set the password of the user that you created in step 1 in the `{$ILO.PASSWORD}` macro. For more details about HPE Redfish services, refer to the official documentation: https://servermanagementportal.ext.hpe.com/docs/redfishservices/ Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','d50f6dcfc3e44244a0fc9fd933607024','HPE ILO BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10606',NULL,'Azure Cost Management by HTTP','3','-1','2','','','Azure Cost Management by HTTP','0',NULL,'This template is designed to monitor Microsoft Cost Management by HTTP. It works without any external scripts and uses the script item. Setup: 1. Create an Azure service principal via the Azure command-line interface (Azure CLI) for your subscription. `az ad sp create-for-rbac --name zabbix --role reader --scope /subscriptions/` See https://docs.microsoft.com/en-us/cli/azure/create-an-azure-service-principal-azure-cli for more details. 2. Link the template to a host. 3. Configure the macros: {$AZURE.APP.ID}, {$AZURE.PASSWORD}, {$AZURE.TENANT.ID}, {$AZURE.SUBSCRIPTION.ID}. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/ Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','c0263df8d8c14d30b24afcf45a6a354f','AZURE COST MANAGEMENT BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10607',NULL,'AWS ELB Application Load Balancer by HTTP','3','-1','2','','','AWS ELB Application Load Balancer by HTTP','0',NULL,'The template is designed to monitor AWS ELB Application Load Balancer by HTTP via Zabbix, and it works without any external scripts. Don''t forget to read the README.md for the correct setup of the template. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','f59c8b4156ec4386a7c724534ddd384d','AWS ELB APPLICATION LOAD BALANCER BY HTTP','Zabbix','7.0-3',NULL,'0'), ('10608',NULL,'{#AWS.ELB.NAME}','0','-1','2','','','{#AWS.ELB.NAME}','2',NULL,'','1','1','','','','','0','0','2c31bc79209e41978f76315406339769','{#AWS.ELB.NAME}','','',NULL,'0'), ('10609',NULL,'MSSQL by Zabbix agent 2','3','-1','2','','','MSSQL by Zabbix agent 2','0',NULL,'This template is designed for the effortless deployment of MSSQL monitoring by Zabbix via Zabbix agent 2 and uses a loadable plugin to run SQL queries. Setup: 1. Deploy Zabbix agent 2 with the MSSQL plugin. You can use this template starting with version 7.0.0 of Zabbix and 7.0.10 of the MSSQL plugin. For more information, see MSSQL plugin documentation: https://git.zabbix.com/projects/AP/repos/mssql/browse Important! Starting with version 7.0-4 of this template, the MSSQL plugin must be updated to a version equal to or above 7.0.10. (You can check the version of the template in its YAML file under the "vendor" section.) Loadable plugin requires installation of one of the following: - Separate package - Binary file - Compilation from sources: https://www.zabbix.com/documentation/7.0/manual/extensions/plugins/build 2. Create an MSSQL user for monitoring. View Server State and View Any Definition permissions should be granted to the user. Grant this user read permissions to the sysjobschedules, sysjobhistory, and sysjobs tables. For more information, see MSSQL documentation: - Create a database user: https://docs.microsoft.com/en-us/sql/relational-databases/security/authentication-access/create-a-database-user?view=sql-server-ver16 - GRANT Server Permissions: https://docs.microsoft.com/en-us/sql/t-sql/statements/grant-server-permissions-transact-sql?view=sql-server-ver16 - Configure a User to Create and Manage SQL Server Agent Jobs: https://docs.microsoft.com/en-us/sql/ssms/agent/configure-a-user-to-create-and-manage-sql-server-agent-jobs?view=sql-server-ver16 3. Set the user name and password in the host macros ({$MSSQL.USER} and {$MSSQL.PASSWORD}). 4. Set the connection string for the MSSQL instance in the {$MSSQL.URI} macro as a URI, such as , or specify the named session - . The "Service''s TCP port state" item uses the {$MSSQL.HOST} and {$MSSQL.PORT} macros to check the availability of the MSSQL instance, change these if necessary. Keep in mind that if dynamic ports are used on the MSSQL server side, this check will not work correctly. Note: You can use the context macros {$MSSQL.BACKUP_FULL.USED}, {$MSSQL.BACKUP_LOG.USED}, and {$MSSQL.BACKUP_DIFF.USED} to disable backup age triggers for a certain database. If set to a value other than "1", the trigger expression for the backup age will not fire. Note: Since version 7.0.6, you can also connect to the MSSQL instance using its name. To do this, set the connection string in the {$MSSQL.URI} macro as . Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','75fc96367e8d4588ba8314145fc12d35','MSSQL BY ZABBIX AGENT 2','Zabbix','7.0-5',NULL,'0'), ('10610',NULL,'YugabyteDB by HTTP','3','-1','2','','','YugabyteDB by HTTP','0',NULL,'This template is designed for the deployment of YugabyteDB monitoring by Zabbix via HTTP and doesn''t require any external scripts. To set up the template: 1. Set your account ID as a value of the {$YUGABYTEDB.ACCOUNT.ID} macro. The account ID is the unique identifier for your customer account in YugabyteDB Managed. You can access the account ID from your profile in the YugabyteDB Managed user interface. To get your account ID, log in to YugabyteDB Managed and click the user profile icon. See YugabyteDB documentation for instructions: https://yugabyte.stoplight.io/docs/managed-apis/tvsjh28t5ivmw-getting-started#account-id 2. Set your project ID as a value of the {$YUGABYTEDB.PROJECT.ID} macro. The project ID is the unique identifier for a YugabyteDB Managed project. You can access the project ID from your profile in the YugabyteDB Managed user interface (along with the account ID). See YugabyteDB documentation for instructions: https://yugabyte.stoplight.io/docs/managed-apis/tvsjh28t5ivmw-getting-started#project-id 3. Generate the API access token and specify it as a value of the {$YUGABYTEDB.ACCESS.TOKEN} macro. See YugabyteDB documentation for instructions: https://docs.yugabyte.com/preview/yugabyte-cloud/managed-automation/managed-apikeys/#create-an-api-key NOTE: If needed, you can specify a HTTP proxy for the template to use by changing the value of the {$YUGABYTEDB.PROXY} user macro. IMPORTANT! The value of the {$YUGABYTEDB.ACCESS.TOKEN} macro is stored as plain (not secret) text by default. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','bc056b1724e748bba50928f8cc605f8e','YUGABYTEDB BY HTTP','Zabbix','7.0-2',NULL,'0'), ('10611',NULL,'YugabyteDB Cluster by HTTP','3','-1','2','','','YugabyteDB Cluster by HTTP','0',NULL,'This template is designed for the deployment of YugabyteDB clusters monitoring by Zabbix via HTTP and doesn''t require any external scripts. This template will be automatically connected to discovered entities with all required parameters pre-defined. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','f5fff9a83f774f4688692ad58aa35d45','YUGABYTEDB CLUSTER BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10612',NULL,'{#CLUSTER.ID}','0','-1','2','','','YugabyteDB Cluster [{#CLUSTER.NAME}]','2',NULL,'','1','1','','','','','0','0','1a7ec22ad5ad41e0bcb04c01c2c45e4e','YUGABYTEDB CLUSTER [{#CLUSTER.NAME}]','','',NULL,'0'), ('10613',NULL,'Check Point Next Generation Firewall by SNMP','3','-1','2','','','Check Point Next Generation Firewall by SNMP','0',NULL,'The template for monitoring Check Point Quantum Next Generation Firewall Security Gateway by SNMP. MIBs used: HOST-RESOURCES-MIB CHECKPOINT-MIB UCD-SNMP-MIB SNMPv2-MIB IF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','3a7ff6eb19bb4a42b5b5b34a7179b30c','CHECK POINT NEXT GENERATION FIREWALL BY SNMP','Zabbix','7.0-3',NULL,'0'), ('10614',NULL,'Oracle Cloud Autonomous Database by HTTP','3','-1','2','','','Oracle Cloud Autonomous Database by HTTP','0',NULL,'This template monitors Oracle Cloud Infrastructure (OCI) autonomous database (serverless) resources. This template is not meant to be used independently, but together with Oracle Cloud by HTTP as a template for LLD host prototypes. Read the template documentation prior to using this template. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','178645e229484bcf9cb030dc1edccebb','ORACLE CLOUD AUTONOMOUS DATABASE BY HTTP','Zabbix','7.0-4',NULL,'0'), ('10615',NULL,'Oracle Cloud Block Volume by HTTP','3','-1','2','','','Oracle Cloud Block Volume by HTTP','0',NULL,'This template monitors Oracle Cloud Infrastructure (OCI) block volume resources. This template is not meant to be used independently, but together with Oracle Cloud by HTTP as a template for LLD host prototypes. Read the template documentation prior to using this template. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','8afa1796d280425b99c7ea36900dac24','ORACLE CLOUD BLOCK VOLUME BY HTTP','Zabbix','7.0-2',NULL,'0'), ('10616',NULL,'Oracle Cloud Boot Volume by HTTP','3','-1','2','','','Oracle Cloud Boot Volume by HTTP','0',NULL,'Monitor Oracle Cloud Infrastructure (OCI) boot volume. This template is not meant to be used independently, but instead with Oracle Cloud by HTTP as a template for LLD host prototypes. Read the template documentation prior to using this template. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','e5486d98ff414c1391de1bd369a7f9db','ORACLE CLOUD BOOT VOLUME BY HTTP','Zabbix','7.0-2',NULL,'0'), ('10617',NULL,'Oracle Cloud by HTTP','3','-1','2','','','Oracle Cloud by HTTP','0',NULL,'Monitor resources of Oracle Cloud Infrastructure (OCI) services. This template handles discovery of various OCI services. Read the template documentation prior to using this template. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','057558a26d934b4683d73a7058499d62','ORACLE CLOUD BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10618',NULL,'Oracle Cloud Compute by HTTP','3','-1','2','','','Oracle Cloud Compute by HTTP','0',NULL,'This template monitors Oracle Cloud Infrastructure (OCI) single compute instance resources and discovers attached virtual network interface cards (VNICs) and monitors their resources. This template is not meant to be used independently, but together with Oracle Cloud by HTTP as a template for LLD host prototypes. Read the template documentation prior to using this template. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','e6b0aada359944d09ee4bd46c1a55587','ORACLE CLOUD COMPUTE BY HTTP','Zabbix','7.0-3',NULL,'0'), ('10619',NULL,'Oracle Cloud Networking by HTTP','3','-1','2','','','Oracle Cloud Networking by HTTP','0',NULL,'This template monitors Oracle Cloud Infrastructure (OCI) single virtual network card availability and discovers attached subnets and monitors their availability. This template is not meant to be used independently, but together with Oracle Cloud by HTTP as a template for LLD host prototypes. Read the template documentation prior to using this template. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','62d99b55585e41dd89736f5f46074dcb','ORACLE CLOUD NETWORKING BY HTTP','Zabbix','7.0-2',NULL,'0'), ('10620',NULL,'Oracle Cloud Object Storage by HTTP','3','-1','2','','','Oracle Cloud Object Storage by HTTP','0',NULL,'This template monitors Oracle Cloud Infrastructure (OCI) object storage resources. This template is not meant to be used independently, but together with Oracle Cloud by HTTP as a template for LLD host prototypes. Read the template documentation prior to using this template. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','e8f89476695848e99ba900a5664d290b','ORACLE CLOUD OBJECT STORAGE BY HTTP','Zabbix','7.0-2',NULL,'0'), ('10621',NULL,'OCI Block Volume - {#ID}','0','-1','2','','','OCI Block Volume - {#ID}','2',NULL,'','1','1','','','','','0','0','5030f7dadd5b40558e07a4545d7346bd','OCI BLOCK VOLUME - {#ID}','','',NULL,'0'), ('10622',NULL,'OCI Boot Volume - {#ID}','0','-1','2','','','OCI Boot Volume - {#ID}','2',NULL,'','1','1','','','','','0','0','914b808a4a014f6e824a3b9c53f1b492','OCI BOOT VOLUME - {#ID}','','',NULL,'0'), ('10623',NULL,'OCI Compute - {#ID}','0','-1','2','','','OCI Compute - {#ID}','2',NULL,'','1','1','','','','','0','0','9337374066e04291b2f94f8ad5470f54','OCI COMPUTE - {#ID}','','',NULL,'0'), ('10624',NULL,'OCI Autonomous DB - {#NAME}','0','-1','2','','','OCI Autonomous DB - {#NAME}','2',NULL,'','1','1','','','','','0','0','88d0076a057c441ab5a531cfcb650e84','OCI AUTONOMOUS DB - {#NAME}','','',NULL,'0'), ('10625',NULL,'OCI Bucket - {#NAME}','0','-1','2','','','OCI Bucket - {#NAME}','2',NULL,'','1','1','','','','','0','0','f71e979727ce42daa80a34da5ffb296f','OCI BUCKET - {#NAME}','','',NULL,'0'), ('10626',NULL,'OCI VCN - {#ID}','0','-1','2','','','OCI VCN - {#ID}','2',NULL,'','1','1','','','','','0','0','5329fee3dbc643ebbb99472c67a0a207','OCI VCN - {#ID}','','',NULL,'0'), ('10627',NULL,'AWS ELB Network Load Balancer by HTTP','3','-1','2','','','AWS ELB Network Load Balancer by HTTP','0',NULL,'The template is designed to monitor AWS ELB Network Load Balancer by HTTP via Zabbix, and it works without any external scripts. Don''t forget to read the README.md for the correct setup of the template. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','4c7d0c6e342b40458611bdb6e9dd958f','AWS ELB NETWORK LOAD BALANCER BY HTTP','Zabbix','7.0-3',NULL,'0'), ('10628',NULL,'Website by Browser','3','-1','2','','','Website by Browser','0',NULL,'The template to monitor a website''s availability and performance on the website by Browser. Zabbix server uses a web browser to perform navigation and collect performance metrics. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','2526dce71d714e31bd545e96370c67b2','WEBSITE BY BROWSER','Zabbix','7.0-1',NULL,'0'), ('10629',NULL,'Jira Data Center by JMX','3','-1','2','','','Jira Data Center by JMX','0',NULL,'This template is used for monitoring Jira Data Center health. It is designed for standalone operation for on-premises Jira installations. This template uses a single data source, JMX, which requires JMX RMI setup of your Jira application and Java Gateway setup on the Zabbix side. If you need "Garbage collector" and "Web server" monitoring, add "Generic Java JMX" and "Apache Tomcat by JMX" templates on the same host. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Setup: Metrics are collected by JMX. 0. Deploy the Zabbix Java Gateway component ([instructions](https://www.zabbix.com/documentation/7.0/manual/concepts/java)). 1. Enable and configure JMX access to Jira Data Center. See documentation for [instructions](https://confluence.atlassian.com/adminjiraserver/live-monitoring-using-the-jmx-interface-939707304.html). 2. Assign the "Jira Data Center by JMX" template to the host with a JMX interface. 2. If your Jira installation requires authentication for JMX, set the values in the host macros `{$JMX.USERNAME}` and `{$JMX.PASSWORD}`. 3. (Optional) Set custom macro values and add macros with context for specific metrics following the macro description. 4. (Optional) Assign the "Generic Java JMX" template for garbage collector monitoring. 5. (Optional) Assign the "Apache Tomcat by JMX" template for web server monitoring. tested_on: - Jira Data Center 9.14.1 - Jira Data Center 9.12.4 Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','a7f0c853c6634b1dacaaf43c2a0d9375','JIRA DATA CENTER BY JMX','Zabbix','7.0-2',NULL,'0'), ('10630',NULL,'Azure VM Scale Set by HTTP','3','-1','2','','','Azure VM Scale Set by HTTP','0',NULL,'This template is designed to monitor Microsoft Azure virtual machine scale sets by HTTP. It works without any external scripts and uses the script item. Setup: 1. Create an Azure service principal via the Azure command-line interface (Azure CLI) for your subscription. `az ad sp create-for-rbac --name zabbix --role reader --scope /subscriptions/` See https://docs.microsoft.com/en-us/cli/azure/create-an-azure-service-principal-azure-cli for more details. 2. Link the template to a host. 3. Configure the macros: {$AZURE.APP.ID}, {$AZURE.PASSWORD}, {$AZURE.TENANT.ID}, {$AZURE.SUBSCRIPTION.ID}, and {$AZURE.RESOURCE.ID}. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/ Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','d0fd5d346b1740dda9d3a976371789dd','AZURE VM SCALE SET BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10631',NULL,'Azure VM scale set {#NAME}','0','-1','2','','','Azure VM scale set {#NAME}','2',NULL,'','1','1','','','','','0','0','1cbeb513fe3648b6829836800952c9c7','AZURE VM SCALE SET {#NAME}','','',NULL,'0'), ('10632',NULL,'AWS Lambda by HTTP','3','-1','2','','','AWS Lambda by HTTP','0',NULL,'The template is designed to monitor AWS Lambda by HTTP via Zabbix, and it works without any external scripts. Don''t forget to read the README.md for the correct setup of the template. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','fd36e0a231d343d38a95d1ed789584ca','AWS LAMBDA BY HTTP','Zabbix','7.0-3',NULL,'0'), ('10633',NULL,'{#AWS.LAMBDA.NAME}','0','-1','2','','','{#AWS.LAMBDA.NAME}','2',NULL,'','1','1','','','','','0','0','7b468bda682c402b96fd55210aa85155','{#AWS.LAMBDA.NAME}','','',NULL,'0'), ('10634',NULL,'GitHub repository by HTTP','3','-1','2','','','GitHub repository by HTTP','0',NULL,'This template is designed for the effortless deployment of GitHub repository monitoring by Zabbix via GitHub REST API and doesn''t require any external scripts. For more details about GitHub REST API, refer to the official documentation: https://docs.github.com/en/rest?apiVersion=2022-11-28 Setup: 1. Create an access token for monitoring One of the simplest ways to send authenticated requests is to use a personal access token - either a classic or a fine-grained one: https://docs.github.com/en/rest/authentication/authenticating-to-the-rest-api?apiVersion=2022-11-28#authenticating-with-a-personal-access-token Classic personal access token You can create a new classic personal access token by following the instructions in the official documentation: https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens#creating-a-personal-access-token-classic For public repositories, no additional permission scopes are required. For monitoring to work on private repositories, the "repo" scope must be set to have full control of private repositories. Additional information about OAuth scopes is available in the official documentation: https://docs.github.com/en/apps/oauth-apps/building-oauth-apps/scopes-for-oauth-apps#available-scopes Note that authenticated users must have admin access to the repository and the "repo" scope must be set to get information about self-hosted runners: https://docs.github.com/en/rest/actions/self-hosted-runners?apiVersion=2022-11-28#list-self-hosted-runners-for-a-repository Fine-grained personal access token Alternatively, you can use a fine-grained personal access token: https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens#creating-a-fine-grained-personal-access-token In order to use fine-grained tokens to monitor organization-owned repositories, organizations must opt in to fine-grained personal access tokens and set up a personal access token policy: https://docs.github.com/en/organizations/managing-programmatic-access-to-your-organization/setting-a-personal-access-token-policy-for-your-organization The fine-grained token needs to have the following permissions set to provide access to the repository resources: - "Actions" repository permissions (read); - "Administration" repository permissions (read); - "Contents" repository permissions (read); - "Issues" repository permissions (read); - "Metadata" repository permissions (read); - "Pull requests" repository permissions (read). 2. Set the access token that you''ve created in step 1 in the "{$GITHUB.API.TOKEN}" macro 3. Change the API URL in the "{$GITHUB.API.URL}" macro if needed (for self-hosted installations) 4. Set the repository owner name in the "{$GITHUB.REPO.OWNER}" macro 5. Set the repository name in the "{$GITHUB.REPO.NAME}" macro 6. Set the LLD rule filters if needed (you may want to use it to also stay within rate limits as on large repositories, LLD rules may generate a lot of script items) Note: Update intervals and timeouts for script items can be changed individually via "{$GITHUB.INTERVAL}" and "{$GITHUB.TIMEOUT}" macros with context. Depending on the repository being monitored, it can be adjusted if needed (if you are exceeding rate limits, you can increase update intervals for some script items to stay within per hour request limits). But be aware that it may also affect the triggers (check whether the item is used in triggers and adjust thresholds and/or evaluation periods if needed). Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','11144543d1144a3693aa0b97a1c20dac','GITHUB REPOSITORY BY HTTP','Zabbix','7.0-0',NULL,'0'), ('10635',NULL,'Microsoft 365 reports by HTTP','3','-1','2','','','Microsoft 365 reports by HTTP','0',NULL,'This template is designed to monitor Microsoft 365 reports by HTTP. It works without any external scripts and uses script items. The template uses endpoints in the Microsoft Graph API to gather daily metrics from weekly reports. The template is meant to be used as a long-term trend monitoring tool. Setup: 1. Register the app with Microsoft Entra ID. 2. Configure Microsoft Graph application permissions on the app ID: `Reports.Read.All` - required for app usage and activity metrics `ServiceHealth.Read.All` - required for service discovery and service status metrics 3. Request administrator consent. 4. Configure the macros: `{$MS365.APP.ID}`, `{$MS365.PASSWORD}`, `{$MS365.TENANT.ID}`. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/ Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','03e93dc9a8194a17958544a056d02316','MICROSOFT 365 REPORTS BY HTTP','Zabbix','7.0-3',NULL,'0'), ('10636',NULL,'Huawei OceanStor Dorado by SNMP','3','-1','2','','','Huawei OceanStor Dorado by SNMP','0',NULL,'This template is developed to monitor SAN Huawei OceanStor Dorado via the Zabbix SNMP agent. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/418855-discussion-thread-for-official-zabbix-template-huawei-oceanstor Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','521d864fe8574f19b350f7ddbe259042','HUAWEI OCEANSTOR DORADO BY SNMP','Zabbix','7.0-3',NULL,'0'), ('10637',NULL,'Apache by Zabbix agent active','3','-1','2','','','Apache by Zabbix agent active','0',NULL,'Get metrics from mod_status module using HTTP agent. https://httpd.apache.org/docs/current/mod/mod_status.html You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384764-discussion-thread-for-official-zabbix-template-apache Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','aa3286a824464020863ead141e8f0afc','APACHE BY ZABBIX AGENT ACTIVE','Zabbix','7.0-1',NULL,'0'), ('10638',NULL,'Website certificate by Zabbix agent 2 active','3','-1','2','','','Website certificate by Zabbix agent 2 active','0',NULL,'The template to monitor TLS/SSL certificate on the website by Zabbix agent 2 that works without any external scripts. Zabbix agent 2 with the WebCertificate plugin requests certificate using the web.certificate.get key and returns JSON with certificate attributes. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/428309-discussion-thread-for-official-zabbix-template-tls-ssl-certificates-monitoring Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','de38542cf4f24fafab33520677f392c4','WEBSITE CERTIFICATE BY ZABBIX AGENT 2 ACTIVE','Zabbix','7.0-1',NULL,'0'), ('10639',NULL,'Nginx by Zabbix agent active','3','-1','2','','','Nginx by Zabbix agent active','0',NULL,'Get metrics from stub status module using Zabbix agent running on Linux https://nginx.ru/en/docs/http/ngx_http_stub_status_module.html You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384765-discussion-thread-for-official-zabbix-template-nginx Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','d2cebb67b4d94a12a072db85e7be6a33','NGINX BY ZABBIX AGENT ACTIVE','Zabbix','7.0-1',NULL,'0'), ('10640',NULL,'Nutanix Cluster Prism Element by HTTP','3','-1','2','','','Nutanix Cluster Prism Element by HTTP','0',NULL,'Prism Element: It is a service already built into the platform for every Nutanix cluster deployed. It provides the ability to fully configure, manage, and monitor Nutanix clusters running any hypervisors, however, It only manages the cluster it is part of. This template is designed for the effortless deployment of Nutanix Cluster Prism Element monitoring and doesn''t require any external scripts. This template can be used in discovery, as well as manually linked to a host - to do so, attach it to the host and manually set the value of the ''{$NUTANIX.CLUSTER.UUID}'' macro. More details can be found in the official documentation: - on retrieving UUIDs: https://www.nutanixbible.com/19b-cli.html - on the Nutanix Prism Element REST API: https://www.nutanix.dev/api_reference/apis/prism_v2.html - on differences between Nutanix API versions: https://www.nutanix.dev/api-versions/ Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','b6027e374e424481951ca2256099515c','NUTANIX CLUSTER PRISM ELEMENT BY HTTP','Zabbix','7.0-3',NULL,'0'), ('10641',NULL,'Nutanix Host Prism Element by HTTP','3','-1','2','','','Nutanix Host Prism Element by HTTP','0',NULL,'Prism Element: It is a service already built into the platform for every Nutanix cluster deployed. It provides the ability to fully configure, manage, and monitor Nutanix clusters running any hypervisors, however, It only manages the cluster it is part of. This template is designed for the effortless deployment of Nutanix Host Prism Element monitoring and doesn''t require any external scripts. This template can be used in discovery, as well as manually linked to a host - to do so, attach it to the host and manually set the value of the ''{$NUTANIX.HOST.UUID}'' macro. More details can be found in the official documentation: - on retrieving UUIDs: https://www.nutanixbible.com/19b-cli.html - on the Nutanix Prism Element REST API: https://www.nutanix.dev/api_reference/apis/prism_v2.html - on differences between Nutanix API versions: https://www.nutanix.dev/api-versions/ Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','8ab5387c8887435587cce8383b2fc6c5','NUTANIX HOST PRISM ELEMENT BY HTTP','Zabbix','7.0-3',NULL,'0'), ('10642',NULL,'Nutanix Prism Element by HTTP','3','-1','2','','','Nutanix Prism Element by HTTP','0',NULL,'Prism Element: It is a service already built into the platform for every Nutanix cluster deployed. It provides the ability to fully configure, manage, and monitor Nutanix clusters running any hypervisors, however, it only manages the cluster it is part of. This template is designed for the effortless deployment of Nutanix Prism Element monitoring and doesn''t require any external scripts. The templates "Nutanix Host Prism Element by HTTP" and "Nutanix Cluster Prism Element by HTTP" can be used in discovery, as well as manually linked to a host. More details can be found in the official documentation: - on the Nutanix Prism Element REST API: https://www.nutanix.dev/api_reference/apis/prism_v2.html - on the differences between Nutanix API versions: https://www.nutanix.dev/api-versions/ - on the differences between Nutanix Prism Element REST API and Nutanix Prism Central REST API: https://next.nutanix.com/how-it-works-22/differences-between-prism-element-prism-central-and-prism-pro-37137 Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','0bb43a48a33f48ad910441384486edb4','NUTANIX PRISM ELEMENT BY HTTP','Zabbix','7.0-2',NULL,'0'), ('10643',NULL,'{#NUTANIX.CLUSTER.UUID}','0','-1','2','','','{#NUTANIX.CLUSTER.NAME}','2',NULL,'','1','1','','','','','0','0','c1f630a16e304dcda7771895344638c7','{#NUTANIX.CLUSTER.NAME}','','',NULL,'0'), ('10644',NULL,'{#NUTANIX.HOST.UUID}','0','-1','2','','','{#NUTANIX.HOST.NAME}','2',NULL,'','1','1','','','','','0','0','24ccbeb75dc949ccb6c094416618443b','{#NUTANIX.HOST.NAME}','','',NULL,'0'), ('10645',NULL,'PHP-FPM by Zabbix agent active','3','-1','2','','','PHP-FPM by Zabbix agent active','0',NULL,'Get PHP-FPM metrics using Zabbix agent running on Linux. Note that depending on your OS distribution, the PHP-FPM process name may vary. Please, check the actual name in the line "Name" from /proc//status file (https://www.zabbix.com/documentation/7.0/manual/appendix/items/proc_mem_num_notes) and change {$PHP_FPM.PROCESS.NAME.PARAMETER} macro if needed. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','a9e83f950e9f41a78474d523c8376338','PHP-FPM BY ZABBIX AGENT ACTIVE','Zabbix','7.0-1',NULL,'0'), ('10646',NULL,'MySQL by Zabbix agent 2 active','3','-1','2','','','MySQL by Zabbix agent 2 active','0',NULL,'Requirements for template operation: 1. Create a MySQL user for monitoring. For example: CREATE USER ''zbx_monitor''@''%'' IDENTIFIED BY ''''; GRANT REPLICATION CLIENT,PROCESS,SHOW DATABASES,SHOW VIEW ON *.* TO ''zbx_monitor''@''%''; For more information please read the MySQL documentation https://dev.mysql.com/doc/refman/8.0/en/grant.html. NOTE: In order to collect replication metrics, MariaDB Enterprise Server 10.5.8-5 and above and MariaDB Community Server 10.5.9 and above require the SLAVE MONITOR privilege to be set for the monitoring user: GRANT REPLICATION CLIENT,PROCESS,SHOW DATABASES,SHOW VIEW,SLAVE MONITOR ON *.* TO ''zbx_monitor''@''%''; For more information please read the MariaDB documentation https://mariadb.com/docs/server/ref/mdb/privileges/SLAVE_MONITOR/ 2. Set in the {$MYSQL.DSN} macro the data source name of the MySQL instance either session name from Zabbix agent 2 configuration file or URI. Examples: MySQL1, tcp://localhost:3306, tcp://172.16.0.10, unix:/var/run/mysql.sock For more information about MySQL Unix socket file please read the MySQL documentation https://dev.mysql.com/doc/refman/8.0/en/problems-with-mysql-sock.html. 3. If you had set URI in the {$MYSQL.DSN}, please define the user name and password in host macros ({$MYSQL.USER} and {$MYSQL.PASSWORD}). Leave macros {$MYSQL.USER} and {$MYSQL.PASSWORD} empty if you use a session name. Set the user name and password in the Plugins.Mysql.<...> section of your Zabbix agent 2 configuration file. For more information about configuring the Zabbix MySQL plugin please read the documentation https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/src/go/plugins/mysql/README.md. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384189-discussion-thread-for-official-zabbix-template-db-mysql Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','51ffd432b9324ce2b04e1d4dc4122d16','MYSQL BY ZABBIX AGENT 2 ACTIVE','Zabbix','7.0-3',NULL,'0'), ('10647',NULL,'MySQL by Zabbix agent active','3','-1','2','','','MySQL by Zabbix agent active','0',NULL,E'Requirements for template operation: 1. Install Zabbix agent and MySQL client. If necessary, add the path to the ''mysql'' and ''mysqladmin'' utilities to the global environment variable PATH. 2. Copy the ''template_db_mysql.conf'' file with user parameters into folder with Zabbix agent configuration (/etc/zabbix/zabbix_agentd.d/ by default). Don''t forget to restart Zabbix agent. 3. Create the MySQL user that will be used for monitoring ('''' at your discretion). For example: CREATE USER ''zbx_monitor''@''%'' IDENTIFIED BY ''''; GRANT REPLICATION CLIENT,PROCESS,SHOW DATABASES,SHOW VIEW ON *.* TO ''zbx_monitor''@''%''; For more information, please see MySQL documentation (https://dev.mysql.com/doc/refman/8.0/en/grant.html). NOTE: In order to collect replication metrics, MariaDB Enterprise Server 10.5.8-5 and above and MariaDB Community Server 10.5.9 and above require the SLAVE MONITOR privilege to be set for the monitoring user: GRANT REPLICATION CLIENT,PROCESS,SHOW DATABASES,SHOW VIEW,SLAVE MONITOR ON *.* TO ''zbx_monitor''@''%''; For more information, please read the MariaDB documentation (https://mariadb.com/docs/server/ref/mdb/privileges/SLAVE_MONITOR/). 4. Create ''.my.cnf'' configuration file in the home directory of Zabbix agent for Linux distributions (/var/lib/zabbix by default) or ''my.cnf'' in c:\\ for Windows. For example: [client] protocol=tcp user=''zbx_monitor'' password='''' For more information, please see MySQL documentation (https://dev.mysql.com/doc/refman/8.0/en/option-files.html). NOTE: Linux distributions that use SELinux may require additional steps for access configuration. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384189-discussion-thread-for-official-zabbix-template-db-mysql Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','1ae69b01417849b180717f62ad7819d6','MYSQL BY ZABBIX AGENT ACTIVE','Zabbix','7.0-3',NULL,'0'), ('10648',NULL,'PostgreSQL by Zabbix agent 2 active','3','-1','2','','','PostgreSQL by Zabbix agent 2 active','0',NULL,'This template is designed for the deployment of PostgreSQL monitoring by Zabbix via Zabbix agent 2 and uses a loadable plugin to run SQL queries. Setup: 1. Deploy Zabbix agent 2 with the PostgreSQL plugin. Starting with Zabbix versions 6.0.10 / 6.2.4 / 6.4 PostgreSQL metrics are moved to a loadable plugin and require installation of a separate package or compilation of the plugin from sources (https://www.zabbix.com/documentation/7.0/manual/extensions/plugins/build). 2. Create the PostgreSQL user for monitoring (`` at your discretion) and inherit permissions from the default role `pg_monitor`: CREATE USER zbx_monitor WITH PASSWORD '''' INHERIT; GRANT pg_monitor TO zbx_monitor; 3. Edit the `pg_hba.conf` configuration file to allow connections for the user `zbx_monitor`. You can check the PostgreSQL documentation for examples (https://www.postgresql.org/docs/current/auth-pg-hba-conf.html). 4. Set the connection string for the PostgreSQL instance in the `{$PG.CONNSTRING.AGENT2}` macro as URI, such as ``, or specify the named session - ``. Note: if you want to use SSL/TLS encryption to protect communications with the remote PostgreSQL instance, a named session must be used. In that case, the instance URI should be specified in the `Plugins.PostgreSQL.Sessions.*.Uri` parameter in the PostgreSQL plugin configuration files alongside all the encryption parameters (type, certificate/key filepaths if needed etc.). You can check the PostgreSQL plugin documentation (https://git.zabbix.com/projects/AP/repos/postgresql/browse?at=refs%2Fheads%2Frelease%2F7.0) for details about agent plugin parameters and named sessions. Also, it is assumed that you set up the PostgreSQL instance to work in the desired encryption mode. Check the PostgreSQL documentation (https://www.postgresql.org/docs/current/ssl-tcp.html) for details. Note that plugin TLS certificate validation relies on checking the Subject Alternative Names (SAN) instead of the Common Name (CN), check the cryptography package documentation (https://pkg.go.dev/crypto/x509) for details. For example, to enable required encryption in transport mode without identity checks you could create the file `/etc/zabbix/zabbix_agent2.d/postgresql_myconn.conf` with the following configuration for the named session `myconn` (replace `` with the address of the PostgreSQL instance): Plugins.PostgreSQL.Sessions.myconn.Uri=tcp://:5432 Plugins.PostgreSQL.Sessions.myconn.TLSConnect=required Then set the `{$PG.CONNSTRING.AGENT2}` macro to `myconn` to use this named session. 5. Set the password that you specified in step 2 in the macro `{$PG.PASSWORD}`. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384190-%C2%A0discussion-thread-for-official-zabbix-template-db-postgresql Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','21cca24cec1d40cdb0c2999aa6ac3037','POSTGRESQL BY ZABBIX AGENT 2 ACTIVE','Zabbix','7.0-3',NULL,'0'), ('10649',NULL,'PostgreSQL by Zabbix agent active','3','-1','2','','','PostgreSQL by Zabbix agent active','0',NULL,'This template is designed for the deployment of PostgreSQL monitoring by Zabbix via Zabbix agent and uses user parameters to run SQL queries with the `psql` command-line tool. Note: - The template requires `pg_isready` and `psql` utilities to be installed on the same host with Zabbix agent. - The template requires files with SQL queries and user parameters that can be found in the Zabbix official repository: https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/templates/db/postgresql?at=refs%2Fheads%2Frelease%2F6.0 Setup: 1. Deploy Zabbix agent and create the PostgreSQL user for monitoring (`` at your discretion) with proper access rights to your PostgreSQL instance. For PostgreSQL version 10 and above: CREATE USER zbx_monitor WITH PASSWORD '''' INHERIT; GRANT pg_monitor TO zbx_monitor; For PostgreSQL version 9.6 and below: CREATE USER zbx_monitor WITH PASSWORD ''''; GRANT SELECT ON pg_stat_database TO zbx_monitor; ALTER USER zbx_monitor WITH SUPERUSER; 2. Copy the `postgresql/` directory to the `zabbix` user home directory - `/var/lib/zabbix/`. The `postgresql/` directory contains the files with SQL queries needed to obtain metrics from PostgreSQL instance. If the home directory of the `zabbix` user doesn''t exist, create it first: mkdir -m u=rwx,g=rwx,o= -p /var/lib/zabbix chown zabbix:zabbix /var/lib/zabbix 3. Copy the `template_db_postgresql.conf` file, containing user parameters, to the Zabbix agent configuration directory `/etc/zabbix/zabbix_agentd.d/` and restart Zabbix agent service. If you want to use SSL/TLS encryption to protect communications with the remote PostgreSQL instance, you can modify the connection string in user parameters. For example, to enable required encryption in transport mode without identity checks you could append `?sslmode=required` to the end of the connection string for all keys that use `psql`: UserParameter=pgsql.bgwriter[*], psql -qtAX postgresql://"$3":"$4"@"$1":"$2"/"$5"?sslmode=required -f "/var/lib/zabbix/postgresql/pgsql.bgwriter.sql" Consult the PostgreSQL documentation about protection modes (https://www.postgresql.org/docs/current/libpq-ssl.html#LIBPQ-SSL-PROTECTION) and client connection parameters (https://www.postgresql.org/docs/current/libpq-connect.html#LIBPQ-CONNECT-SSLMODE). Also, it is assumed that you set up the PostgreSQL instance to work in the desired encryption mode. Check the PostgreSQL documentation (https://www.postgresql.org/docs/current/ssl-tcp.html) for details. 4. Edit the `pg_hba.conf` configuration file to allow connections for the user `zbx_monitor`. You can check the PostgreSQL documentation for examples (https://www.postgresql.org/docs/current/auth-pg-hba-conf.html). 5. Specify the host name or IP address in the `{$PG.HOST}` macro. Adjust the port number with `{$PG.PORT}` macro if needed. 6. Set the password that you specified in step 1 in the macro `{$PG.PASSWORD}`. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384190-%C2%A0discussion-thread-for-official-zabbix-template-db-postgresql Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','7005acc9123e4bc290805a3a16dab9cf','POSTGRESQL BY ZABBIX AGENT ACTIVE','Zabbix','7.0-2',NULL,'0'), ('10650',NULL,'Juniper MX by SNMP','3','-1','2','','','Juniper MX by SNMP','0',NULL,'The template for monitoring Juniper MX Series by SNMP. MIBs used: SNMPv2-MIB EtherLike-MIB HOST-RESOURCES-MIB IF-MIB OSPF-MIB JUNIPER-ALARM-MIB JUNIPER-DOM-MIB JUNIPER-MIB BGP4-V2-MIB-JUNIPER OSPFV3-MIB-JUNIPER Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','fe7eb8b22ce84017b07bcab36e9032dc','JUNIPER MX BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10651',NULL,'Azure SQL Managed Instance by HTTP','3','-1','2','','','Azure SQL Managed Instance by HTTP','0',NULL,'This template is designed to monitor Azure SQL Managed Instance by HTTP. It works without any external scripts and uses the script item. Setup: 1. Create an Azure service principal via the Azure command-line interface (Azure CLI) for your subscription. `az ad sp create-for-rbac --name zabbix --role reader --scope /subscriptions/` See https://docs.microsoft.com/en-us/cli/azure/create-an-azure-service-principal-azure-cli for more details. 2. Link the template to a host. 3. Configure the macros: {$AZURE.APP.ID}, {$AZURE.PASSWORD}, {$AZURE.TENANT.ID}, {$AZURE.SUBSCRIPTION.ID}, and {$AZURE.RESOURCE.ID}. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/ Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','a93f57ccc68e442da79bf4a20fe46570','AZURE SQL MANAGED INSTANCE BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10652',NULL,'Azure SQL managed instance {#NAME}','0','-1','2','','','Azure SQL managed instance {#NAME}','2',NULL,'','1','1','','','','','0','0','5211d232275145598294fc35bac96075','AZURE SQL MANAGED INSTANCE {#NAME}','','',NULL,'0'), ('10653',NULL,'Palo Alto PA-440 by HTTP','3','-1','2','','','Palo Alto PA-440 by HTTP','0',NULL,'This template is designed for the effortless deployment of Palo Alto PA-440 monitoring by Zabbix via XML API and doesn''t require any external scripts. Setup: Configure a user for monitoring. Note that in order to retrieve the device certificate information, superuser privileges are required. If you opt for a user with limited access (for security reasons), the device certificate expiration metrics will not be discovered. Superuser privileges user (full access to all data): 1. Add a new administrator user. Go to "Device" > "Administrators" and click "Add". 2. Enter the necessary details. Set the "Administrator Type" to "Dynamic" and select the built-in "Superuser" role. Commit the changes. Limited privileges user (no access to device certificate data): 1. Create a new Admin Role. Go to "Device" > "Admin Role" and click "Add". 2. Enter the necessary details. Adjust the list of permissions: - Restrict access to all sections in the "Web UI" tab - Allow access to the "Configuration" and "Operational Requests" sections in the "XML API" tab - Check that the access to CLI is set to "None" in the "Command Line" tab - Restrict access to all sections in the "REST API" tab 3. Add a new administrator user. Go to "Device" > "Administrators" and click "Add". 4. Enter the necessary details. Set the "Administrator Type" to "Role Based" and select the profile that was created in the previous steps. Commit the changes. Set the host macros: 1. Set the firewall XML API endpoint URL in the "{$PAN.PA440.API.URL}" macro in the format "://[:port]/api" (port is optional). 2. Set the name of the user that you created in the "{$PAN.PA440.USER}" macro. 3. Set the password of the user that you created in the "{$PAN.PA440.PASSWORD}" macro. For more details about PAN-OS API, refer to the official documentation: https://docs.paloaltonetworks.com/pan-os/11-1/pan-os-panorama-api Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','edc752f178f94b9dbaee459ec7bacc66','PALO ALTO PA-440 BY HTTP','Zabbix','7.0-0',NULL,'0'), ('10654',NULL,'DELL PowerEdge R660 by HTTP','3','-1','2','','','DELL PowerEdge R660 by HTTP','0',NULL,'Template for DELL PowerEdge R660 servers with iDRAC 8/9 firmware 4.32 and later and Redfish API enabled. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/426752-discussion-thread-for-official-zabbix-dell-templates Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','185867ae9b4a46b59d53931d3330c770','DELL POWEREDGE R660 BY HTTP','Zabbix','7.0-2',NULL,'0'), ('10655',NULL,'DELL PowerEdge R660 by SNMP','3','-1','2','','','DELL PowerEdge R660 by SNMP','0',NULL,'Template for DELL PowerEdge R660 servers with iDRAC version 7 and later. MIBs used: HOST-RESOURCES-MIB IDRAC-MIB-SMIv2 SNMPv2-MIB You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/426752-discussion-thread-for-official-zabbix-dell-templates Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','3ba7dec7c0034d86ad1c73b4f8ee8994','DELL POWEREDGE R660 BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10656',NULL,'DELL PowerEdge R750 by HTTP','3','-1','2','','','DELL PowerEdge R750 by HTTP','0',NULL,'Template for DELL PowerEdge R750 servers with iDRAC 8/9 firmware 4.32 and later and Redfish API enabled. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/426752-discussion-thread-for-official-zabbix-dell-templates Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','42b18986c8b34c2d9c36f9cd00565bd5','DELL POWEREDGE R750 BY HTTP','Zabbix','7.0-2',NULL,'0'), ('10657',NULL,'DELL PowerEdge R750 by SNMP','3','-1','2','','','DELL PowerEdge R750 by SNMP','0',NULL,'Template for DELL PowerEdge R750 servers with iDRAC version 7 and later. MIBs used: HOST-RESOURCES-MIB IDRAC-MIB-SMIv2 SNMPv2-MIB You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/426752-discussion-thread-for-official-zabbix-dell-templates Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','419145c8af7e4b8eb30af8460bbed566','DELL POWEREDGE R750 BY SNMP','Zabbix','7.0-2',NULL,'0'), ('10658',NULL,'Zabbix proxy health by Zabbix agent','3','-1','2','','','Zabbix proxy health by Zabbix agent','0',NULL,'This template is designed to monitor internal Zabbix metrics on the remote Zabbix proxy via the passive Zabbix agent. Specify the address of the remote Zabbix proxy by changing the {$ZABBIX.PROXY.ADDRESS} and {$ZABBIX.PROXY.PORT} macros. Don''t forget to adjust the "StatsAllowedIP" parameter in the remote proxy''s configuration file to allow the collection of statistics. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','8cd15d3b39654eb7b7423e6b109037b2','ZABBIX PROXY HEALTH BY ZABBIX AGENT','Zabbix','7.0-3',NULL,'0'), ('10659',NULL,'Zabbix proxy health by Zabbix agent active','3','-1','2','','','Zabbix proxy health by Zabbix agent active','0',NULL,'This template is designed to monitor internal Zabbix metrics on the remote Zabbix proxy via the active Zabbix agent. Specify the address of the remote Zabbix proxy by changing the {$ZABBIX.PROXY.ADDRESS} and {$ZABBIX.PROXY.PORT} macros. Don''t forget to adjust the "StatsAllowedIP" parameter in the remote proxy''s configuration file to allow the collection of statistics. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','02aac022a62c48bba810d07bbaa712cc','ZABBIX PROXY HEALTH BY ZABBIX AGENT ACTIVE','Zabbix','7.0-3',NULL,'0'), ('10660',NULL,'Zabbix server health by Zabbix agent','3','-1','2','','','Zabbix server health by Zabbix agent','0',NULL,'This template is designed to monitor Zabbix server metrics via the passive Zabbix agent. Specify the address of the remote Zabbix server by changing the {$ZABBIX.SERVER.ADDRESS} and {$ZABBIX.SERVER.PORT} macros. Don''t forget to adjust the "StatsAllowedIP" parameter in the remote server''s configuration file to allow the collection of statistics. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','d31c888d12aa4bf68f280bc242501743','ZABBIX SERVER HEALTH BY ZABBIX AGENT','Zabbix','7.0-5',NULL,'0'), ('10661',NULL,'Zabbix server health by Zabbix agent active','3','-1','2','','','Zabbix server health by Zabbix agent active','0',NULL,'This template is designed to monitor Zabbix server metrics via the active Zabbix agent. Specify the address of the remote Zabbix server by changing the {$ZABBIX.SERVER.ADDRESS} and {$ZABBIX.SERVER.PORT} macros. Don''t forget to adjust the "StatsAllowedIP" parameter in the remote server''s configuration file to allow the collection of statistics. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','6d6c147c87de4af1b09cf0f55bac50a0','ZABBIX SERVER HEALTH BY ZABBIX AGENT ACTIVE','Zabbix','7.0-5',NULL,'0'), ('10662',NULL,'Azure Microsoft SQL DTU Database by HTTP','3','-1','2','','','Azure Microsoft SQL DTU Database by HTTP','0',NULL,'This template is designed to monitor Microsoft SQL DTU-based databases via HTTP. It works without any external scripts and uses the script item. Setup: 1. Create an Azure service principal via the Azure command-line interface (Azure CLI) for your subscription. `az ad sp create-for-rbac --name zabbix --role reader --scope /subscriptions/` See https://docs.microsoft.com/en-us/cli/azure/create-an-azure-service-principal-azure-cli for more details. 2. Link the template to a host. 3. Configure the macros: {$AZURE.APP.ID}, {$AZURE.PASSWORD}, {$AZURE.TENANT.ID}, {$AZURE.SUBSCRIPTION.ID}, and {$AZURE.RESOURCE.ID}. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/ Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','c3a9fa0e07be4c1bbe19ae65c3375d17','AZURE MICROSOFT SQL DTU DATABASE BY HTTP','Zabbix','7.0-0',NULL,'0'), ('10663',NULL,'Pure Storage FlashArray v1 by HTTP','3','-1','2','','','Pure Storage FlashArray v1 by HTTP','0',NULL,'Setup: 1. Create a host for the Pure Storage FlashArray device and assign to it the "Pure Storage FlashArray v1 by HTTP" template. 2. Enter your API token from the Purity//FA web interface into the {$PURE.FLASHARRAY.API.TOKEN} macro. 3. Set your Purity//FA web interface URL as the {$PURE.FLASHARRAY.API.URL} macro value. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','ae3ce7156aae4ae79a72742365c884ea','PURE STORAGE FLASHARRAY V1 BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10664',NULL,'Pure Storage FlashArray v2 by HTTP','3','-1','2','','','Pure Storage FlashArray v2 by HTTP','0',NULL,'Setup: 1. Create a host for the Pure Storage FlashArray device and assign to it the "Pure Storage FlashArray v2 by HTTP" template. 2. Enter your API token from the Purity//FA web interface into the {$PURE.FLASHARRAY.API.TOKEN} macro. 3. Set your Purity//FA web interface URL as the {$PURE.FLASHARRAY.API.URL} macro value. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback. Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','44990575121d4798b9e10520604c786c','PURE STORAGE FLASHARRAY V2 BY HTTP','Zabbix','7.0-1',NULL,'0'), ('10665',NULL,'Azure Backup Jobs by HTTP','3','-1','2','','','Azure Backup Jobs by HTTP','0',NULL,'This template is designed to monitor Azure Backup Jobs via HTTP. It works without any external scripts and uses the script item. Setup: 1. Create an Azure service principal via the Azure command-line interface (Azure CLI) for your subscription. `az ad sp create-for-rbac --name zabbix --role reader --scope /subscriptions/` See https://docs.microsoft.com/en-us/cli/azure/create-an-azure-service-principal-azure-cli for more details. 2. Link the template to a host. 3. Configure the macros: {$AZURE.APP.ID}, {$AZURE.PASSWORD}, {$AZURE.TENANT.ID}, {$AZURE.SUBSCRIPTION.ID}, and {$AZURE.RESOURCE.ID}. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/ Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','3d527f609e344ed8a4ec19762c31c619','AZURE BACKUP JOBS BY HTTP','Zabbix','7.0-0',NULL,'0'), ('10666',NULL,'Azure vault {#NAME}','0','-1','2','','','Azure vault {#NAME}','2',NULL,'','1','1','','','','','0','0','fb057eebe3fb4d2483c8a3e7fe4c7b07','AZURE VAULT {#NAME}','','',NULL,'0'), ('10667',NULL,'Cisco Secure Firewall Threat Defense by HTTP','3','-1','2','','','Cisco Secure Firewall Threat Defense by HTTP','0',NULL,'This template is designed to monitor Cisco Secure Firewall Threat Defense devices using the REST API. It provides metrics such as CPU and memory usage, interface statistics, connection tracking, and more. The template includes items, triggers, and graphs to help you monitor the performance and health of your Cisco Secure Firewall Threat Defense devices. It is based on the Cisco Secure Firewall Threat Defense REST API and requires the API URL, username, and password to be set as macros. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/ Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','1818cd052f174772a48bfc275d0016dd','CISCO SECURE FIREWALL THREAT DEFENSE BY HTTP','Zabbix','7.0-0',NULL,'0'), ('10668',NULL,'AWS Backup Vault by HTTP','3','-1','2','','','AWS Backup Vault by HTTP','0',NULL,'The template is designed to monitor AWS Backup vaults and jobs by HTTP via Zabbix, and it works without any external scripts. Don''t forget to read the README.md for the correct setup of the template. You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','024cf4f0711c4c39a4e016858efc5e37','AWS BACKUP VAULT BY HTTP','Zabbix','7.0-0',NULL,'0'), ('10669',NULL,'{#AWS.BACKUP_VAULT.NAME}','0','-1','2','','','{#AWS.BACKUP_VAULT.NAME}','2',NULL,'','1','1','','','','','0','0','44f23ddbb22646aea4db43a90646f695','{#AWS.BACKUP_VAULT.NAME}','','',NULL,'0'), ('10670',NULL,'Aruba CX 8300s by SNMP','3','-1','2','','','Aruba CX 8300s by SNMP','0',NULL,'Aruba CX8300s by SNMP MIBs used: ARUBAWIRED-FAN-MIB ARUBAWIRED-POWERSUPPLY-MIB ARUBAWIRED-SYSTEMINFO-MIB ARUBAWIRED-TEMPSENSOR-MIB OSPF-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','5265860748e14dea8ed58b35fd9fe3d1','ARUBA CX 8300S BY SNMP','Zabbix','7.0-1',NULL,'0'), ('10671',NULL,'Ciena 3906 by SNMP','3','-1','2','','','Ciena 3906 by SNMP','0',NULL,'Ciena 3906 by SNMP MIBs used: WWP-LEOS-BLADE-MIB WWP-LEOS-CHASSIS-MIB WWP-LEOS-SYSTEM-CONFIG-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','b1271833815f46499458a8631d0bda20','CIENA 3906 BY SNMP','Zabbix','7.0-0',NULL,'0'), ('10672',NULL,'Vyatta Virtual Router by SNMP','3','-1','2','','','Vyatta Virtual Router by SNMP','0',NULL,'Template for Vyatta Virtual Router 1908e MIBs used: * SNMPv2-MIB * HOST-RESOURCES-MIB * UCD-SNMP-MIB * IF-MIB * DISMAN-EVENT-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','33c77d08d94242b88703eea0fb6c2d91','VYATTA VIRTUAL ROUTER BY SNMP','Zabbix','7.0-1',NULL,'0'), ('10673',NULL,'Stormshield SNS by SNMP','3','-1','2','','','Stormshield SNS by SNMP','0',NULL,'The template for monitoring SNS firewall by SNMP. MIBs used: HOST-RESOURCES-MIB UCD-SNMP-MIB STORMSHIELD-ASQ-STATS-MIB STORMSHIELD-AUTOUPDATE-MIB STORMSHIELD-HA-MIB STORMSHIELD-PROPERTY-MIB STORMSHIELD-HEALTH-MONITOR-MIB STORMSHIELD-IF-MIB STORMSHIELD-SYSTEM-MONITOR-MIB STORMSHIELD-IPSEC-STATS-MIB Generated by official Zabbix template tool "Templator"','1','1','','','','','0','0','1945f22f8ba84ce89454d9513979a3c6','STORMSHIELD SNS BY SNMP','Zabbix','7.0-0',NULL,'0'); INSERT INTO hgset_group (hgsetid,groupid) VALUES ('1','15'), ('2','18'), ('3','17'), ('4','12'), ('4','9'), ('5','21'), ('6','4'), ('7','9'), ('8','12'), ('9','16'), ('10','11'), ('11','10'), ('12','13'), ('13','10'), ('13','9'); INSERT INTO host_hgset (hostid,hgsetid) VALUES ('10001','11'), ('10047','8'), ('10048','8'), ('10074','11'), ('10075','11'), ('10076','11'), ('10077','11'), ('10078','11'), ('10079','11'), ('10081','11'), ('10084','6'), ('10169','8'), ('10171','10'), ('10172','10'), ('10173','8'), ('10174','8'), ('10175','8'), ('10207','7'), ('10208','7'), ('10210','7'), ('10211','7'), ('10218','7'), ('10220','7'), ('10221','7'), ('10222','7'), ('10223','7'), ('10224','7'), ('10226','7'), ('10227','7'), ('10229','7'), ('10230','7'), ('10231','7'), ('10233','7'), ('10234','7'), ('10235','7'), ('10236','7'), ('10237','7'), ('10248','11'), ('10249','11'), ('10250','7'), ('10251','7'), ('10253','7'), ('10254','7'), ('10255','10'), ('10256','10'), ('10258','10'), ('10259','10'), ('10260','8'), ('10261','8'), ('10262','8'), ('10264','8'), ('10265','8'), ('10266','8'), ('10267','8'), ('10285','11'), ('10300','8'), ('10301','8'), ('10302','8'), ('10303','8'), ('10304','10'), ('10308','8'), ('10309','8'), ('10310','12'), ('10316','12'), ('10317','12'), ('10318','8'), ('10319','8'), ('10320','12'), ('10321','10'), ('10322','8'), ('10323','12'), ('10324','8'), ('10325','8'), ('10326','8'), ('10327','12'), ('10328','12'), ('10329','12'), ('10330','8'), ('10331','8'), ('10335','12'), ('10336','1'), ('10343','11'), ('10351','11'), ('10353','8'), ('10355','8'), ('10357','12'), ('10358','8'), ('10359','8'), ('10360','8'), ('10361','8'), ('10362','8'), ('10363','8'), ('10364','8'), ('10365','8'), ('10366','8'), ('10369','8'), ('10370','12'), ('10371','7'), ('10372','7'), ('10373','7'), ('10374','7'), ('10375','7'), ('10376','7'), ('10377','7'), ('10378','9'), ('10379','8'), ('10380','3'), ('10381','12'), ('10382','8'), ('10385','9'), ('10386','12'), ('10387','12'), ('10390','7'), ('10391','7'), ('10392','7'), ('10393','7'), ('10394','7'), ('10395','2'), ('10396','9'), ('10397','12'), ('10398','12'), ('10399','12'), ('10400','2'), ('10401','2'), ('10402','2'), ('10403','2'), ('10404','2'), ('10406','2'), ('10407','2'), ('10408','2'), ('10409','2'), ('10410','8'), ('10411','8'), ('10412','2'), ('10413','8'), ('10414','8'), ('10415','8'), ('10416','8'), ('10417','12'), ('10418','7'), ('10419','7'), ('10420','7'), ('10421','7'), ('10422','7'), ('10423','7'), ('10424','7'), ('10425','7'), ('10426','7'), ('10427','7'), ('10428','7'), ('10429','7'), ('10430','7'), ('10431','7'), ('10432','7'), ('10433','7'), ('10434','10'), ('10435','10'), ('10436','10'), ('10437','10'), ('10438','10'), ('10439','10'), ('10440','10'), ('10441','10'), ('10442','10'), ('10443','10'), ('10444','10'), ('10445','10'), ('10446','10'), ('10447','8'), ('10448','8'), ('10449','7'), ('10450','7'), ('10451','7'), ('10452','7'), ('10453','7'), ('10454','7'), ('10455','7'), ('10456','7'), ('10457','7'), ('10458','7'), ('10459','7'), ('10460','7'), ('10461','7'), ('10462','7'), ('10463','7'), ('10464','7'), ('10465','7'), ('10466','7'), ('10467','7'), ('10468','7'), ('10469','7'), ('10470','7'), ('10471','7'), ('10472','7'), ('10473','7'), ('10474','7'), ('10475','7'), ('10476','7'), ('10477','7'), ('10478','7'), ('10479','7'), ('10480','7'), ('10481','7'), ('10482','7'), ('10483','7'), ('10484','7'), ('10485','7'), ('10486','7'), ('10487','7'), ('10488','7'), ('10489','7'), ('10490','7'), ('10491','7'), ('10492','7'), ('10493','7'), ('10494','7'), ('10495','7'), ('10496','7'), ('10497','7'), ('10498','7'), ('10499','7'), ('10500','7'), ('10501','7'), ('10502','7'), ('10503','7'), ('10504','8'), ('10505','8'), ('10506','8'), ('10507','8'), ('10509','8'), ('10510','8'), ('10515','8'), ('10516','8'), ('10517','8'), ('10518','8'), ('10519','12'), ('10520','8'), ('10521','8'), ('10522','8'), ('10524','9'), ('10525','9'), ('10526','9'), ('10527','5'), ('10528','8'), ('10529','5'), ('10530','5'), ('10531','5'), ('10532','5'), ('10534','10'), ('10535','5'), ('10539','5'), ('10540','5'), ('10543','5'), ('10544','5'), ('10546','4'), ('10547','4'), ('10548','4'), ('10551','7'), ('10552','8'), ('10553','8'), ('10555','8'), ('10556','8'), ('10557','5'), ('10558','5'), ('10560','8'), ('10561','8'), ('10562','8'), ('10563','7'), ('10564','7'), ('10565','10'), ('10566','10'), ('10568','5'), ('10570','5'), ('10571','5'), ('10572','5'), ('10573','5'), ('10574','5'), ('10575','5'), ('10576','5'), ('10577','5'), ('10582','5'), ('10583','5'), ('10584','5'), ('10586','5'), ('10587','5'), ('10589','12'), ('10590','4'), ('10591','4'), ('10593','8'), ('10594','8'), ('10595','8'), ('10596','8'), ('10599','8'), ('10600','8'), ('10602','8'), ('10603','7'), ('10604','7'), ('10605','10'), ('10606','5'), ('10607','5'), ('10609','12'), ('10610','12'), ('10611','12'), ('10613','7'), ('10614','5'), ('10615','5'), ('10616','5'), ('10617','5'), ('10618','5'), ('10619','5'), ('10620','5'), ('10627','5'), ('10628','8'), ('10629','8'), ('10630','5'), ('10632','5'), ('10634','8'), ('10635','8'), ('10636','9'), ('10637','8'), ('10638','8'), ('10639','8'), ('10640','8'), ('10641','8'), ('10642','8'), ('10645','8'), ('10646','12'), ('10647','12'), ('10648','12'), ('10649','12'), ('10650','7'), ('10651','5'), ('10653','7'), ('10654','10'), ('10655','10'), ('10656','10'), ('10657','10'), ('10658','8'), ('10659','8'), ('10660','8'), ('10661','8'), ('10662','5'), ('10663','9'), ('10664','9'), ('10665','5'), ('10667','7'), ('10668','5'), ('10670','7'), ('10671','7'), ('10672','7'), ('10673','13'); INSERT INTO group_prototype (group_prototypeid,hostid,name,groupid,templateid) VALUES ('2','10333','{#DATACENTER.NAME}',NULL,NULL), ('4','10334','{#CLUSTER.NAME} (vm)',NULL,NULL), ('6','10334','{#HV.NAME}',NULL,NULL), ('17','10367','{#DATACENTER.NAME}',NULL,NULL), ('19','10368','{#CLUSTER.NAME} (vm)',NULL,NULL), ('21','10368','{#HV.NAME}',NULL,NULL), ('35','10388','MongoDB sharded cluster/{#REPLICASET}',NULL,NULL), ('37','10389','MongoDB sharded cluster/{#ID}',NULL,NULL), ('54','10334','{#DATACENTER.NAME}/{#VM.FOLDER} (vm)',NULL,NULL), ('57','10368','{#DATACENTER.NAME}/{#VM.FOLDER} (vm)',NULL,NULL), ('152','10523','Consul cluster/{#NODE_DATACENTER}',NULL,NULL), ('153','10523','','19',NULL), ('155','10511','','19',NULL), ('156','10512','','19',NULL), ('157','10514','','19',NULL), ('158','10513','','19',NULL), ('159','10333','','19',NULL), ('160','10334','','19',NULL), ('161','10367','','19',NULL), ('162','10368','','19',NULL), ('163','10388','','20',NULL), ('164','10389','','20',NULL), ('166','10511','{#CLUSTER_HOSTNAME}: Kubernetes/Components: {#COMPONENT.API}',NULL,NULL), ('167','10512','{#CLUSTER_HOSTNAME}: Kubernetes/Components: {#COMPONENT.CONTROLLER}',NULL,NULL), ('168','10514','{#CLUSTER_HOSTNAME}: Kubernetes/Components: {#COMPONENT}',NULL,NULL), ('169','10513','{#CLUSTER_HOSTNAME}: Kubernetes/Components: {#COMPONENT.SCHEDULER}',NULL,NULL), ('170','10533','','6',NULL), ('171','10536','','6',NULL), ('172','10537','','20',NULL), ('173','10538','','19',NULL), ('175','10541','','20',NULL), ('176','10545','','20',NULL), ('177','10549','','19',NULL), ('178','10550','','19',NULL), ('179','10550','{#REGION}',NULL,NULL), ('180','10554','','19',NULL), ('181','10554','Control-M/{#SERVER.NAME}',NULL,NULL), ('182','10559','','20',NULL), ('183','10567','','19',NULL), ('184','10567','{#CLUSTER_HOSTNAME}: Kubernetes/Nodes/Role: {#ROLES}',NULL,NULL), ('185','10569','','20',NULL), ('186','10578','','20',NULL), ('187','10579','','20',NULL), ('188','10580','','20',NULL), ('189','10581','','6',NULL), ('190','10585','','19',NULL), ('191','10588','','6',NULL), ('192','10592','','19',NULL), ('193','10592','Cisco SD-WAN/{#TYPE}',NULL,NULL), ('194','10597','','19',NULL), ('195','10598','','19',NULL), ('196','10601','','19',NULL), ('197','10608','','19',NULL), ('198','10612','','20',NULL), ('199','10621','','19',NULL), ('200','10622','','19',NULL), ('201','10623','','6',NULL), ('202','10624','','20',NULL), ('203','10625','','19',NULL), ('204','10626','','19',NULL), ('205','10631','','6',NULL), ('206','10633','','19',NULL), ('207','10333','{#CLUSTER.NAME} (hypervisor)',NULL,NULL), ('208','10367','{#CLUSTER.NAME} (hypervisor)',NULL,NULL), ('209','10643','','19',NULL), ('210','10644','','19',NULL), ('211','10652','','20',NULL), ('212','10666','','19',NULL), ('213','10669','','19',NULL); INSERT INTO interface (interfaceid,hostid,main,type,useip,ip,dns,port) VALUES ('1','10084','1','1','1','127.0.0.1','','10050'), ('2','10333','1','1','1','{#HV.IP}','','10050'), ('3','10334','1','1','1','{#VM.IP}','','10050'), ('4','10367','1','1','1','{#HV.IP}','','10050'), ('5','10368','1','1','1','{#VM.IP}','','10050'), ('7','10511','1','1','1','{#IP}','','10050'), ('8','10512','1','1','1','{#IP}','','10050'), ('9','10513','1','1','1','{#IP}','','10050'), ('10','10514','1','1','1','{#IP}','','10050'), ('11','10523','1','1','1','{#NODE_ADDRESS}','','10050'), ('12','10536','1','1','1','{#AWS.EC2.INSTANCE.ID}','','10050'), ('13','10537','1','1','1','{#AWS.RDS.INSTANCE.ID}','','10050'), ('14','10538','1','1','1','{#AWS.S3.NAME}','','10050'), ('15','10567','1','1','1','{#IP}','','10050'), ('19','10581','0','1','1','{#GCE.INSTANCE.EXT.IP}','external.ip','10050'), ('20','10581','1','1','1','{#GCE.INSTANCE.IP}','internal.ip','10050'), ('21','10578','0','1','1','{#CLOUD_SQL.INSTANCE.EXT.IP}','external.ip','10050'), ('22','10578','1','1','1','{#CLOUD_SQL.INSTANCE.IP}','internal.ip','10050'), ('23','10579','0','1','1','{#CLOUD_SQL.INSTANCE.EXT.IP}','external.ip','10050'), ('24','10579','1','1','1','{#CLOUD_SQL.INSTANCE.IP}','internal.ip','10050'), ('25','10580','0','1','1','{#CLOUD_SQL.INSTANCE.EXT.IP}','external.ip','10050'), ('26','10580','1','1','1','{#CLOUD_SQL.INSTANCE.IP}','internal.ip','10050'), ('27','10592','0','1','1','{#INT.IP}','internal.ip','10050'), ('28','10592','1','1','1','{#IP}','external.ip','10050'), ('29','10597','1','1','1','{#CLIENT.IP}','','10050'), ('30','10598','1','1','1','{#SERVER.IP}','','10050'); INSERT INTO valuemap (valuemapid,hostid,name,uuid) VALUES ('13','10264','Service state','452297e814a84b08a72730a7b777e378'), ('14','10265','Service state','a5d1f911fb264bd4bc087ea582626d7f'), ('15','10266','Service state','53c8528c18814f30a45d1540ab9e5c00'), ('16','10267','Service state','5c0883d194e8494498474106c22be2ca'), ('17','10301','Service state','c369d410303349b4973431b6ff8dcb85'), ('18','10303','Service state','aaf7d0b8b306412b8a3272343708518f'), ('19','10308','Service state','4980ec41c6644ecb9d5b52027a381fd8'), ('20','10309','Service state','a8a0c20f1d404a79900064ac5d11a8b2'), ('21','10310','Service state','ae3eec95cd1c440ba6c67ed5d7b7b915'), ('22','10316','Service state','4f2d7ca3c89246c6b691557447230031'), ('23','10317','Service state','622c38d0af2a4b6ea7a640a5d1a22b93'), ('24','10318','Service state','8effc3f81db14540996e2373dde6eca9'), ('25','10319','Service state','acd57d4f29a34286a801ce49cd6553fe'), ('26','10320','Service state','f2e8233fcf0a4dd2b53a82ca48436a88'), ('27','10322','Service state','15d416d869894fdb959ca2cda2c5e37c'), ('28','10323','Service state','94147888c7ad4f5bae864eb2698f0237'), ('29','10324','Service state','1735a8d251b24c3fbab32e766064536b'), ('30','10325','Service state','5f3f78a3470c48b69442d942f21d11d0'), ('31','10326','Service state','41be60c561114627b861677603b92acb'), ('32','10327','Service state','03cde96b90a641598db572a662dc2064'), ('33','10328','Service state','45ad479873b84113a98fa21b21081c65'), ('34','10330','Service state','1caa1e7c41e14c7492ab8112f93ea068'), ('35','10331','Service state','8e8fa515c14c4ac181db791c2c68c518'), ('36','10335','Service state','31c489581d8b4246942c663b88fbaf9f'), ('37','10336','Service state','d6e38832f2d44ec0bf6761e36fd7668f'), ('38','10353','Service state','22fe6d6c74454775994f07fc05d7bafd'), ('39','10355','Service state','1bd791d250e441aeb1c73e499d96e98e'), ('40','10357','Service state','372bc939f3924aafa13c4821b83a9276'), ('41','10363','Service state','6c967c4df18d4c7ebb0fd4be17df292a'), ('42','10365','Service state','547a6b8002d44a8f8f363023c6097b1e'), ('43','10175','Service state','25d04e2838af4fcca9ddd21df6781497'), ('44','10378','Service state','d3b3a064c6e445db8b9179ac79d257bf'), ('46','10325','Windows service state','d65f1af3c1e24a338983c52c5aa07d27'), ('47','10326','Windows service state','6dc834d8e50842d3a7337b0f88540b61'), ('51','10174','VMware VirtualMachinePowerState','78f08f5c5c0047b999a2e8daa96cf8b7'), ('52','10173','VMware status','3c59c22905054d42ac4ee8b72fe5f270'), ('53','10175','VMware status','2b324fd8d7624874a3a81449b62c2cd6'), ('54','10366','VMware status','5e5e3b01ef334bd39441568ebd0c31c0'), ('55','10047','Value cache operating mode','97bbea700550483bbd8405b4dd9d8005'), ('56','10261','Value cache operating mode','5dff563dde3c45d8b6d92525111384c6'), ('57','10251','ENTITY-SENSORS-MIB::EntitySensorStatus','d42214398aea4362b4fc61a090f188e1'), ('58','10254','ENTITY-SENSORS-MIB::EntitySensorStatus','318f3041aea04848a223de86e589c232'), ('64','10285','ifOperStatus','4827063819f14d539f509552c84f5f94'), ('71','10207','TIMETRA-CHASSIS-MIB::TmnxDeviceState','95a194271a584008a81564fd80189c5a'), ('72','10208','SW-MIB::swSensorStatus','73618556ee4b4e8f9ec9acf0893e13ea'), ('73','10208','SW-MIB::swOperStatus','54427fdf694547c598e3662df09a980a'), ('74','10210','FOUNDRY-SN-AGENT-MIB::snChasPwrSupplyOperStatus','fe1c4f9f35a34b6189110fc95e21b086'), ('75','10211','FOUNDRY-SN-AGENT-MIB::snChasPwrSupplyOperStatus','7b767e61825544bb857347f303a1f077'), ('76','10210','FOUNDRY-SN-AGENT-MIB::snChasFanOperStatus','d457efd8cee74f168bd88f4fb2376142'), ('77','10211','FOUNDRY-SN-AGENT-MIB::snChasFanOperStatus','41fadae69fa64af4a21c853fc00f23c0'), ('79','10221','F10-S-SERIES-CHASSIS-MIB::chSysFanTrayOperStatus','b389c759db0448ffbe28d4572fbfb3e9'), ('80','10221','F10-S-SERIES-CHASSIS-MIB::chSysPowerSupplyOperStatus','2532df482bd348ba8202c3eb2b76340b'), ('81','10222','MY-SYSTEM-MIB::mySystemFanIsNormal','5889e276245d411bacd130427ae4a5d4'), ('82','10223','EQUIPMENT-MIB::swFanStatus','e7ab460cf1bf4fca8afc22566257fc3a'), ('83','10223','EQUIPMENT-MIB::swPowerStatus','a46e6b21933f4aa7be17f9f11b1356ee'), ('84','10224','EXTREME-SYSTEM-MIB::extremeFanOperational','b71a1b2d06324275a37a1952f13e29b3'), ('85','10224','EXTREME-SYSTEM-MIB::extremeOverTemperatureAlarm','34c686dbaf8649b3b7dcc243068a739a'), ('86','10224','EXTREME-SYSTEM-MIB::extremePowerSupplyStatus','85bfdbc16637406fb5f1a23a15f16c77'), ('87','10227','HH3C-ENTITY-EXT-MIB::hh3cEntityExtErrorStatus','d7832aa00dd743bb8451cabff4e90e60'), ('88','10250','HP-ICF-CHASSIS::hpicfSensorStatus','3c0731bf0669419fa8ebfdf9f7ec14de'), ('89','10229','HUAWEI-ENTITY-EXTENT-MIB::hwEntityFanState','5d3f20a830b34f668c5f3ece41a039cd'), ('90','10230','ICS-CHASSIS-MIB::icsChassisFanOperStatus','39299506ad14445fa7b7a9e78cc54619'), ('91','10230','ICS-CHASSIS-MIB::icsChassisSensorSlotOperStatus','4c80241c4d5d4b949577e9741710a32b'), ('92','10230','ICS-CHASSIS-MIB::icsChassisPowerSupplyOperStatus','535cb21845474749994bf7c395e39312'), ('93','10231','JUNIPER-ALARM-MIB::jnxRedAlarmState','3aaa451c55cd4e72ab84b65dd8310564'), ('94','10231','JUNIPER-ALARM-MIB::jnxOperatingState','64128e7f2adf44988b0ca3edd76cba61'), ('95','10251','ENTITY-STATE-MIB::EntityOperState','bd1dc90aa54849d0a5ae9bdf368d03a9'), ('96','10254','ENTITY-STATE-MIB::EntityOperState','15ba17df88eb435d9d48145fba8d9029'), ('97','10234','FASTPATH-BOXSERVICES-PRIVATE-MIB::boxServicesPowSupplyItemState','d11e2b2f01c641728d1b7f764fa49f37'), ('98','10234','FASTPATH-BOXSERVICES-PRIVATE-MIB::boxServicesFanItemState','3046d246b1064c749c1c9144442c0fac'), ('99','10234','FASTPATH-BOXSERVICES-PRIVATE-MIB::boxServicesTempSensorState','4da55a4de7284012890e1fd5458f039a'), ('100','10235','QTECH-MIB::sysFanStatus','fe2ada3a06844e138b3c4fed1a8c8d2d'), ('101','10235','QTECH-MIB::sysPowerStatus','439cee4220954720aa34725fdc6c365e'), ('102','10256','CPQSINFO-MIB::status','8374297ea234491b980591a8daa88e1f'), ('103','10256','CPQHLTH-MIB::cpqHeTemperatureLocale','f1e590a8cc744e22b900595851833357'), ('104','10256','CPQIDA-MIB::cpqDaCntlrModel','140a21785b764c95a3f78c8c05ed0844'), ('105','10256','CPQIDA-MIB::cpqDaPhyDrvStatus','68bc7370fb8a43ee9957240e29636562'), ('106','10258','IMM-MIB::systemHealthStat','61bded84be1d419083d8bd8a8bd25152'), ('107','10255','IDRAC-MIB-SMIv2::ObjectStatusEnum','7cf6cc68df264e1f9cb0373b1fbca6a8'), ('108','10255','IDRAC-MIB-SMIv2::StatusProbeEnum','beb79217c0854cc4b83d6c498a92067c'), ('109','10255','IDRAC-MIB-SMIv2::physicalDiskComponentStatus','1125af03f5a24d84866e7ad7c1789fb4'), ('110','10255','IDRAC-MIB-SMIv2::BooleanType','1026b6847bd44fb5885bdfab49042d32'), ('111','10255','IDRAC-MIB-SMIv2::physicalDiskMediaType','8abb91818b39418d9ba1b83cd5078870'), ('112','10255','IDRAC-MIB-SMIv2::batteryState','4709491dc6ea41958de78e939e1b7964'), ('113','10255','IDRAC-MIB-SMIv2::virtualDiskLayout','150fd042191d4417a29df8dc554dae06'), ('114','10255','IDRAC-MIB-SMIv2::virtualDiskOperationalState','79a1e3792c20400bba39073240987448'), ('115','10255','IDRAC-MIB-SMIv2::virtualDiskWritePolicy','d9103bd7f6934230a67ae98607183788'), ('116','10255','IDRAC-MIB-SMIv2::virtualDiskState','41e6acc448194f3aac2612904ce851ad'), ('117','10256','CPQIDA-MIB::cpqDaPhyDrvSmartStatus','54b288da67e1431c9d401cf47a518bcc'), ('118','10256','CPQIDA-MIB::cpqDaAccelStatus','20d96ea63e994ba49244b94a4c24aec3'), ('119','10256','CPQIDA-MIB::cpqDaAccelBattery','7502d61cf7644a2d9cff7462f53569ee'), ('120','10256','CPQIDA-MIB::cpqDaPhyDrvMediaType','8351a024aa4d42d1915b44abe8acc4aa'), ('121','10256','CPQIDA-MIB::cpqDaLogDrvFaultTol','442c9095de9f4aa5bcca659292b2c12b'), ('122','10256','CPQIDA-MIB::cpqDaLogDrvStatus','8db38b47aba64739ae9f078f43b42888'), ('123','10329','PostgreSQL recovery role','9f38c01c325248d4b538c0582432b541'), ('124','10357','PostgreSQL recovery role','2e376ee568d04e7bbe98cbae4181f313'), ('125','10329','PostgreSQL replication status','0fba38eefa4c4073b46d3f8579fda314'), ('126','10357','PostgreSQL replication status','7f553f18ef6544ceaa4b50c4ebf0e583'), ('128','10285','Linux::Interface protocol types','4d912f1ee95942038f306ddefb3a57b3'), ('134','10301','RabbitMQ healthcheck','08ee896f31a1457a8e9b4f6f251700d4'), ('135','10303','RabbitMQ healthcheck','55188bbb2ede4300a6292b373ee36ab7'), ('136','10301','Alarm state','ce579def20ac488dbce1ff69baaa8c50'), ('137','10303','Alarm state','e65c3d3e8ea443a281b37c51ca461c26'), ('138','10304','CISCO-UNIFIED-COMPUTING-TC-MIB::CucsEquipmentOperability','e1686896f31e483f9add962dbbd90afb'), ('139','10304','CISCO-UNIFIED-COMPUTING-TC-MIB::CucsLsOperState','398aa5bf5eb44a8c8dd96babd98f1bd3'), ('140','10304','CISCO-UNIFIED-COMPUTING-TC-MIB::CucsStoragePDriveStatus','9b7c7078039c4e348ab417da71b96f5c'), ('141','10304','CISCO-UNIFIED-COMPUTING-TC-MIB::CucsStorageLunType','7d3e38476c894ae59ecac6640b24f833'), ('142','10304','CISCO-UNIFIED-COMPUTING-TC-MIB::CucsEquipmentPresence','5055674c42a241e3a2156de1dc1715bf'), ('143','10310','Redis bgwrite status','098c2240a8e947fc9f6f0a677ffcbc0e'), ('144','10310','Redis flag','3b6cd97c65d14e10bdabf5c42d767ad9'), ('145','10310','Redis repl offset','47c80efdf46745f1959eee76f68014e7'), ('146','10310','Redis bgsave time','82f4dc4ef0c9471d82dbe3605f4f31d0'), ('147','10318','Docker flag','c289195aa4dc47ab883fa95c9cb6fd07'), ('148','10322','ES cluster state','d651bdf75d0849d5ab2b0802fab76e22'), ('149','10323','Replicas state','4d926c30529447b3816cec3f1440b47a'), ('150','10324','Etcd healthcheck','f25e21a70baa4e009bdbcb44acb1a22e'), ('151','10324','Etcd leader','7bcaf8a520e24613a96d49e63a91a55b'), ('152','10325','Application pool state','63d1ad6b4cf643da870b14c53da6c52f'), ('153','10326','Application pool state','636c6915a8154b6ea1ea5b00f015c149'), ('154','10327','MSSQL DB state','bac1a10dad134d50add5bc9550e2ebf3'), ('155','10327','MSSQL AG Connected state','bfbb00eb85d747dabeda2954a5d659b7'), ('156','10327','MSSQL AG Join state','47413c135c094cdc8b59f18a9b195a78'), ('157','10327','MSSQL AG Operational state','a570f341d9a8470797aecfebd376b2b8'), ('158','10327','MSSQL AG Recovery health','4ec6a96ff6c64756b2f27e47972fd9f6'), ('159','10327','MSSQL AG Role','596556fba6064efb8155233371eb2950'), ('160','10327','MSSQL AG Synchronization health','2ab0923b3ce14ffc9dd454114f6b15be'), ('161','10327','MSSQL - Yes / No','c66ee50a8b3f4b6788b732bb8a6b514e'), ('162','10327','MSSQL Mirroring State','f1c105c262c5476798a93eaa4c46fbda'), ('163','10327','MSSQL Mirroring Role','09aaa82ccd6a444b80d5d3bb182fbafd'), ('164','10327','MSSQL Safety level','e70421b2c3db4ce1937791bdb432040e'), ('165','10327','MSSQL Witness state','aa9de6e21d08486db04f29e10d11a94c'), ('166','10328','Oracle DB open status','d0912db18fe54941b9345ebf869fd1a6'), ('167','10335','Oracle DB open status','015a0c94ba2644c6aa343d3f792a4072'), ('168','10328','Oracle DB role','df05d594141f42ebb294cf6adca5fd6b'), ('169','10335','Oracle DB role','afade10cda4e453982355342ba9d8d9f'), ('170','10328','Oracle instance status','41e105c52bf045899c3c4a1cb4e16865'), ('171','10335','Oracle instance status','4893318c780f47719e12e839c9a846c2'), ('172','10328','Oracle instance role','97b689d7ddc04bcd9b9f92af6ba783bd'), ('173','10335','Oracle instance role','53d97b73db8449959420e03114d345c3'), ('174','10328','Oracle archiver state','3afaab75342c4be186fb4f595ed62a31'), ('175','10335','Oracle archiver state','f39e64058fef423bb858ba45834a3455'), ('176','10328','Oracle tablespace status','c6633e4ef9a84fa7b843529479a06158'), ('177','10335','Oracle tablespace status','f14ed94cf12740a19e221ddaa4855c54'), ('178','10328','Oracle Archivelog status','79af6c068ba141ba9806f4341edd9266'), ('179','10335','Oracle Archivelog status','5a90da8dd6124159a7f82a7a996f0a53'), ('180','10328','Oracle force log status','f00ca5c45ab84df788820af2642e4784'), ('181','10335','Oracle force log status','1d9f4a44f2f94a799768f147cb712331'), ('182','10328','Oracle log mode','809554f521d645ea8e8850c3b1f41579'), ('183','10335','Oracle log mode','910dd4a87f75434289fa2e345778d18d'), ('184','10353','Ceph cluster status','2a4b2a8c55ba48b2a815e4123c9ea7fa'), ('185','10360','Exchange database copy role','4a0e19e58ade4e8c878a6b87f4021416'), ('186','10361','Exchange database copy role','0797c152a163407aa9490a63f80a8fd1'), ('187','10360','Exchange database state','2d131c4a033c4145a6bd66ec4c0c030a'), ('188','10361','Exchange database state','a4fac47b56e4470c9c6d435d7eb06845'), ('189','10362','GitLab healthcheck','3b40391bb8b6472e9c3fd8e1f001fe04'), ('190','10364','Kafka controller state','cf2440fb69c24371b231cb0a69002333'), ('191','10365','Vault flag','46edbd58c7384b53bb31775244c23343'), ('192','10371','ProStar MPPT charge state','1703c3aeb1b24641821e1c6d2cb4c8b7'), ('193','10371','ProStar MPPT load state','b5403a0805a54b9294f69a1e11a438b1'), ('194','10372','ProStar PWM charge state','f94eb6ad54c44281878c7c018c6209d1'), ('195','10372','ProStar PWM load state','f0be8765c74e4c4788d4ff99a6c5ccd4'), ('196','10373','SunSaver MPPT charge state','b51b9440e801481fbb76f28b4a5431d1'), ('197','10373','SunSaver MPPT load state','f21076ed51104b84ba4d78dd74bd1a5b'), ('198','10374','SureSine load state','1d6f60ea7d414cb8a26ddad70fc352b2'), ('199','10375','TriStar MPPT 600V charge state','8a0dfdf98d254c219905751cccc878d7'), ('200','10376','TriStar MPPT charge state','3c6c60ef422c4788bf0c5b74ffab7ef0'), ('201','10377','TriStar PWM charge state','4985c4742d5844e7bc0aee5aeeacc436'), ('202','10377','TriStar PWM control mode','252c3fb63cc34bb1a36ae6e9cbe5880c'), ('203','10377','TriStar PWM load state','735e1a0d990a4c449e59eeb402f3b40e'), ('204','10378','FAS3220 HA cannot takeover cause','e078162b11ff49f59c3ab6d905f88f2c'), ('205','10378','FAS3220 HA settings','d6993f0258dd4978a85aa5c141f1706e'), ('206','10378','FAS3220 NVRAM battery status','1fe2bf70bd63468584708a9d09eb42a1'), ('207','10378','FAS3220 Port health','ee5e67c90bca4ded84df2d82589bc2fb'), ('208','10378','FAS3220 Port link state','bd6ea858292c414d9bfd435631001ef5'), ('209','10378','FAS3220 Port role','c598c387157d4450b5bf8f68e6e794a4'), ('210','10378','FAS3220 Port speed','6b0fec10a0eb4c70a8982419c6e635b9'), ('211','10378','FAS3220 Port UP by administrator','c50cdd6dbe19482abdb870c12e7c7b8d'), ('212','10379','Computer online','d1b719ea85464279bd473fcdb34008da'), ('213','10379','Computer state','5313fc2399b24216945ed6416a00d55d'), ('214','10379','Jenkins healthcheck','a51dacf033d1423a886ca9dbfdf9b175'), ('215','10379','Service state','b45a6b0148074212bf45d6bb311565c2'), ('216','10380','Login status','4c14241141504a9d852d83965c309f31'), ('217','10256','CPQHLTH-MIB::cpqHeTemperatureCondition','1a03c5602a4a49f8839d820c666434fc'), ('218','10382','HTTP response status code','70add725d6a84f6f9ed0917107dfffc9'), ('219','10385','Huawei storage: Controller role','b5c6d9d67da54531a918c93a9c98cec8'), ('220','10385','Huawei storage: Health status','b7f399070ee0419cac1722f80268ff1a'), ('221','10385','Huawei storage: LUN status','e361f6b8fe92430f86d0e3dc70118ba9'), ('222','10385','Huawei storage: Running status','ae5093d843784258aa32437cde486574'), ('223','10300','RabbitMQ healthcheck','78275d6daacf42b4b97e3d806dfe81fe'), ('224','10302','RabbitMQ healthcheck','3380e05a15774dad92e77c983448698b'), ('225','10386','MongoDB flag','9f921e1503e74204b8f128966f9562bc'), ('226','10386','ReplicaSet node state','a99141555eff42ff8d367f10d9a7c569'), ('227','10386','Service state','b37ba44823e34a13a119f86f3d58a65a'), ('228','10387','MongoDB flag','2014769595e34d4bb18dbcf4d9eaf112'), ('229','10387','Service state','3cedce4712fa4a3eba63ccd7a790ecf6'), ('230','10390','CISCO-ENVMON-MIB::CiscoEnvMonState','673c7626d11b4867aba08e96b0fbd149'), ('231','10390','EtherLike-MIB::dot3StatsDuplexStatus','4c04fea7546044d9a9c64762a9e1ebdd'), ('232','10390','IF-MIB::ifOperStatus','346b197cb4fe42cb9b304ce246e5924f'), ('233','10390','IF-MIB::ifType','94e4f1da1ff24b96bdccf04ec663a1ae'), ('234','10390','Service state','3a72216b3fea4ad482d0e3655e407747'), ('235','10390','zabbix.host.available','868c28a7406c4ab3b48b783a6e7590ba'), ('236','10391','CISCO-ENVMON-MIB::CiscoEnvMonState','cbeb53fa3c2a4b16b7f7ee92265efd8c'), ('237','10391','EtherLike-MIB::dot3StatsDuplexStatus','5ef472cb5f424ef9a7393156204613ba'), ('238','10391','IF-MIB::ifOperStatus','73b7c034142043b689792e1e71dd5872'), ('239','10391','IF-MIB::ifType','635461b9ca404cc1b92c1fab0c6327f6'), ('240','10391','Service state','142fe822cc424a76899551b6f29799d9'), ('241','10391','zabbix.host.available','939c7551b81e40e9b053e624211d0901'), ('242','10392','CISCO-ENVMON-MIB::CiscoEnvMonState','fea34445b6cd4847b420d212f9b0201e'), ('243','10392','EtherLike-MIB::dot3StatsDuplexStatus','867b0e42f8a24a278ee15476aeadfa0b'), ('244','10392','IF-MIB::ifOperStatus','3534f9f22afe4f98a712a86ce755f491'), ('245','10392','IF-MIB::ifType','88b99531b08248e8be1fc0a3210acee1'), ('246','10392','Service state','653ce2314e6f499b84250048df1314f8'), ('247','10392','zabbix.host.available','690c4c1545894d049ac8e26e3de7ec9c'), ('248','10393','CISCO-ENVMON-MIB::CiscoEnvMonState','e47b3ba8fb9c4ecf82701ddf571d55b6'), ('249','10393','EtherLike-MIB::dot3StatsDuplexStatus','412b00b4bfbc48b4906370635c12dcee'), ('250','10393','IF-MIB::ifOperStatus','358db91b44e645df92072f0a1449de2e'), ('251','10393','IF-MIB::ifType','877039dc6b0a467783828f3421887b83'), ('252','10393','Service state','1d4c62bd989748a0b7947b6455405d96'), ('253','10393','zabbix.host.available','ff706c036eac4ef88570e41629e65514'), ('254','10394','CISCO-ENVMON-MIB::CiscoEnvMonState','52875f5c6b1b4bb3987c3baa03860d4d'), ('255','10394','EtherLike-MIB::dot3StatsDuplexStatus','8decf4d7d8744711b5f2ea68b5e73d14'), ('256','10394','IF-MIB::ifOperStatus','e8815fad611e47389c987c88a029cece'), ('257','10394','IF-MIB::ifType','93f29c48ad8b4bc7afe036817d946b18'), ('258','10394','Service state','ee7cb62782d44458abc9f7cca816dca8'), ('259','10394','zabbix.host.available','6273854a740e41718cd1354f227cf4db'), ('260','10251','IF-MIB::ifOperStatus','04fa3aad27e044a094dce939b3d361ec'), ('261','10251','IF-MIB::ifType','afe0ce28ed5d49dd822cc7013356c599'), ('262','10251','Service state','deb16b99706645929e300b0590f013f3'), ('263','10251','zabbix.host.available','a85fe23199cd4d779655f690a706d7c7'), ('264','10395','PowerNet-MIB::uioSensorStatusAlarmStatus','a808aadebf964e0cb6b8724bf1165013'), ('265','10395','PowerNet-MIB::upsAdvBatteryReplaceIndicator','731b036e41d147ba81bfcfb7e99b561b'), ('266','10395','PowerNet-MIB::upsAdvInputLineFailCause','f310a0bceb06404d9daee67ab578e4b8'), ('267','10395','PowerNet-MIB::upsBasicBatteryStatus','795c75c652124ad282bad3dfd50b8e39'), ('269','10395','zabbix.host.available','781c568d935d40f2a43951488cf2e046'), ('270','10327','MSSQL Job Run Status','eefa6e0e6f8b4facbc12004437b7ee8f'), ('271','10397','Service state','bce54cbdf2b8487985f9c7847a4c4918'), ('272','10398','Service state','047f0303f1bc424a959f5d0ceaab77c7'), ('273','10400','PowerNet-MIB::uioSensorStatusAlarmStatus','30a78904cbc94fc58609dc1a11aa48ef'), ('274','10400','PowerNet-MIB::upsAdvBatteryReplaceIndicator','ace379c23ae247f3b92ccffb9eef920c'), ('275','10400','PowerNet-MIB::upsAdvInputLineFailCause','19686fc030ee4c6bb69aacd3b9c735ca'), ('276','10400','PowerNet-MIB::upsBasicBatteryStatus','80593b554d0a431aa89a0c4960f8565c'), ('277','10400','PowerNet-MIB::upsBasicOutputStatus','f41b7d5469e64557ab0cdb81526aeac0'), ('278','10400','zabbix.host.available','edd7578bf71146dd88770a39eec537e0'), ('279','10401','PowerNet-MIB::uioSensorStatusAlarmStatus','6940a4d08173433bb4bc8ff3b44e578c'), ('280','10401','PowerNet-MIB::upsAdvBatteryReplaceIndicator','add26e1622ed4d1fbdb4a9bdbf7facb8'), ('281','10401','PowerNet-MIB::upsAdvInputLineFailCause','2597173167e34be0943fb6c81f2597e5'), ('282','10401','PowerNet-MIB::upsBasicBatteryStatus','7d2a66214d4b4b96890aa9e1c9bcf050'), ('283','10401','PowerNet-MIB::upsBasicOutputStatus','351383a7383a4472a31c09009cf9d1f5'), ('284','10401','zabbix.host.available','3aadc179423b4298b2e8a6e4850466a5'), ('285','10402','PowerNet-MIB::uioSensorStatusAlarmStatus','55fecbd639c44c328b4199569a7305ef'), ('286','10402','PowerNet-MIB::upsAdvBatteryReplaceIndicator','1ce6860b108948bda40d514fd4e3ed69'), ('287','10402','PowerNet-MIB::upsAdvInputLineFailCause','db1fa20d76c8416c83fa0b7fda536fa8'), ('288','10402','PowerNet-MIB::upsBasicBatteryStatus','50b6ae187875406ea8ba1669add70899'), ('289','10402','PowerNet-MIB::upsBasicOutputStatus','9c5fd52c36f6451ea3f502a871e821d7'), ('290','10402','zabbix.host.available','89597d423b454a42aa80fa8f7a20f273'), ('291','10403','PowerNet-MIB::uioSensorStatusAlarmStatus','7cf932d3b9304f2cb151134e9ea3be82'), ('292','10403','PowerNet-MIB::upsAdvBatteryReplaceIndicator','63c5f0e1601947e5a02abd25a07a9af4'), ('293','10403','PowerNet-MIB::upsAdvInputLineFailCause','70d097ce846c45aeb3c8be031c427511'), ('294','10403','PowerNet-MIB::upsBasicBatteryStatus','3424a9229a134b47b8544d611be082fb'), ('295','10403','PowerNet-MIB::upsBasicOutputStatus','05a60d9c47274f5a8f6c92efe8158b8e'), ('296','10403','zabbix.host.available','d4ee88b3cf5d4d95b27be2e7b2f20e3c'), ('297','10404','PowerNet-MIB::uioSensorStatusAlarmStatus','b2af1e2dcb874d43949c383f9b347f36'), ('298','10404','PowerNet-MIB::upsAdvBatteryReplaceIndicator','b06b54b07e6840e5a0c52ba7a6acf86a'), ('299','10404','PowerNet-MIB::upsAdvInputLineFailCause','a62f96735c47467da94b6bcf98cc013d'), ('300','10404','PowerNet-MIB::upsBasicBatteryStatus','ed12e8780c384caba8035fbb1c78e115'), ('301','10404','PowerNet-MIB::upsBasicOutputStatus','ae2ed0c2c99a4ad496f7a35226e3d4f0'), ('302','10404','zabbix.host.available','8cddc4f99ecb4866b1638b82b145ea8b'), ('309','10406','PowerNet-MIB::uioSensorStatusAlarmStatus','864d59cbfcc8431cb334b812bf7ef3a3'), ('310','10406','PowerNet-MIB::upsAdvBatteryReplaceIndicator','cc42cb7a7fb4417fa1c143e214958c1d'), ('311','10406','PowerNet-MIB::upsAdvInputLineFailCause','a3bbd0be8c7c4dc1aa9accb9f22292c9'), ('312','10406','PowerNet-MIB::upsBasicBatteryStatus','f801d4fb07c644e4be1f01e99ba48aa7'), ('313','10406','PowerNet-MIB::upsBasicOutputStatus','28964e9cf2b849fbb2f8d998cecdacda'), ('314','10406','zabbix.host.available','12058346f9e046388767c2939bbed2cf'), ('315','10395','PowerNet-MIB::upsBasicOutputStatus','c536d9dc64724643a9291c9b601b1eac'), ('316','10407','PowerNet-MIB::uioSensorStatusAlarmStatus','aec3362485c242ec928cb8ecfe5e61cf'), ('317','10407','PowerNet-MIB::upsAdvBatteryReplaceIndicator','912d8834176b4fe4a2f6bd12ef3ee3c1'), ('318','10407','PowerNet-MIB::upsAdvInputLineFailCause','e079fa8cc9614245b0fecf4b8f42feca'), ('319','10407','PowerNet-MIB::upsBasicBatteryStatus','24229472978c42739cdbe7aa47e1d34c'), ('320','10407','PowerNet-MIB::upsBasicOutputStatus','8c2c9721615c4408976f7632180ecfe3'), ('321','10407','zabbix.host.available','625f28bd49f14e49a1a7a4da01429906'), ('322','10408','PowerNet-MIB::uioSensorStatusAlarmStatus','8516e97893ed4f2ebe70766d17eeacde'), ('323','10408','PowerNet-MIB::upsAdvBatteryReplaceIndicator','84387eb0a5ef4523ac5d990eb4a6a796'), ('324','10408','PowerNet-MIB::upsAdvInputLineFailCause','58104ecf15d34fe38922f3fe5fa25027'), ('325','10408','PowerNet-MIB::upsBasicBatteryStatus','43715c15fed840fc8e188d062c0ef2da'), ('326','10408','PowerNet-MIB::upsBasicOutputStatus','d9b5340729684dd0a450b6de6b14b590'), ('327','10408','zabbix.host.available','cdf3578a66db4cfda6c36b4bbb295173'), ('328','10409','PowerNet-MIB::uioSensorStatusAlarmStatus','e2877a188bd24918992f8c7878550924'), ('329','10409','PowerNet-MIB::upsAdvBatteryReplaceIndicator','33d83523ceee4f3e916c885ebb33e8b9'), ('330','10409','PowerNet-MIB::upsAdvInputLineFailCause','c50ef9a9476d47e6935a6026bbb24d06'), ('331','10409','PowerNet-MIB::upsBasicBatteryStatus','96a985d8351f48be86c5b00472b48feb'), ('332','10409','PowerNet-MIB::upsBasicOutputStatus','160f7a39770d492c93403097650c1568'), ('333','10409','zabbix.host.available','cc7a368057bc47eeb834dc9363183c59'), ('334','10410','WildFly flag','e23e06cfd0ce4e069b9d996f101f6ee6'), ('335','10411','WildFly flag','4004b5f2501f44a69dc86afce3daa4d1'), ('336','10412','PowerNet-MIB::uioSensorStatusAlarmStatus','41e166e2a5f948488238198920ab4b17'), ('337','10412','PowerNet-MIB::upsAdvBatteryReplaceIndicator','224af0a6a5db48ef9c8861bc61873ea9'), ('338','10412','PowerNet-MIB::upsAdvInputLineFailCause','ded19296204545b9ab463d4fc65f3cfd'), ('339','10412','PowerNet-MIB::upsBasicBatteryStatus','271d8f0594cf451a8aaa98c84850ebf7'), ('340','10412','PowerNet-MIB::upsBasicOutputStatus','171d4d5bf01442e391b04f9e448df5a0'), ('341','10412','zabbix.host.available','8b4f199f5e704cbea67182d4abf9b8de'), ('342','10308','Server mode','bf2e9463450d4f4899abcac85cde0a92'), ('343','10309','Server mode','450c1b2c6d58432b8a5b34dd3b5e8870'), ('344','10416','Unit Active State','fe20979701834a80a823c514d11c19e7'), ('345','10416','Unit File State','e0a5e55e5a074a26935386c5e29a0e36'), ('346','10416','Unit Load State','0309ef57e92a4ea2ae4404a685f0e7b8'), ('347','10418','Cisco ASAv algorithm validate packets','764f7c162b8a45d9b41e795cf2f5f8da'), ('348','10418','Cisco ASAv encryption algorithm','f38e3c5200c941aa831857698eb3ea8b'), ('349','10418','Cisco ASAv port admin status','8395b87d3ff3496aabafdfd1d2e1c4be'), ('350','10418','Cisco ASAv port operational status','e97c331986454b68917c771c3bba9a3d'), ('351','10418','Cisco ASAv session protocol','22e5704487924e4ebca70e2062d40da4'), ('352','10418','Cisco ASAv user authenticate method','8dd72ccb744e4bd989ea739e21da7820'), ('353','10418','Physical class','3c3b7c75af4b4fedb12e30fb74406a23'), ('354','10418','SNMP available','91e8696b05654efca8f03b700ea74b0b'), ('355','10419','Chassis status','849febb31f524e9296afc5ec6ffb2fe3'), ('356','10419','Module provision level','ed7e1317987b433e9aa7168db3824c94'), ('357','10419','Pause state','6e590fa7db7441d5a4b145204ee254bb'), ('358','10419','SNMP available','b615a47192fc48f4b2cedb205c33f7d0'), ('359','10420','SNMP available','2b7c7c3eecb743e8a30ab3adc74ffd06'), ('360','10420','ZYXEL AAM1212-51 / IES-612 port admin status','db7f61bebcac452c8081b2c58d1013d8'), ('361','10420','ZYXEL AAM1212-51 / IES-612 port operational status','6c2a29dac43340399990340fe26a7a72'), ('362','10421','SNMP available','494c8983c4cf453789d2f0bbbe5cbbf3'), ('363','10421','ZYXEL ES3500-8PD operational mode port link up type','7cfe02e1eb224f6abe5216aaec31402c'), ('364','10421','ZYXEL ES3500-8PD operational mode port speed duplex','b568c9f69a1a4dd5951f1121523475c9'), ('365','10421','ZYXEL ES3500-8PD port admin status','4a20dd55c16b4c9082f267c532a4507a'), ('366','10421','ZYXEL ES3500-8PD port operational status','17635045a1ee4b8bba21b7d44634c57f'), ('367','10421','ZYXEL ES3500-8PD SFP status','875833a6ca71431da2b3747c4c1e3008'), ('368','10422','SNMP available','c6ba6086ed584ba0a4dd58ffe8564fbf'), ('369','10422','ZYXEL GS-4012F operational mode port link up type','82cce670bef64a47b326bb8b1a2f6cd8'), ('370','10422','ZYXEL GS-4012F operational mode port speed duplex','d7d38cadffc240f9a01434546659d036'), ('371','10422','ZYXEL GS-4012F port admin status','7456d212b8f44f7da215fc86f39e3956'), ('372','10422','ZYXEL GS-4012F port operational status','afa699db0bfc4cfbb48729932967230e'), ('373','10423','SNMP available','10dd3d9951014a38bc3517df54381a66'), ('374','10423','ZYXEL IES-500x module status','efd6a6086011465ca956b1664f7d6474'), ('375','10423','ZYXEL IES-500x module type','892651d2b1e3431490f2c531a50e2732'), ('376','10423','ZYXEL IES-500x port admin status','9174dafc199e438994256eff4dd87bdd'), ('377','10423','ZYXEL IES-500x port operational status','f64c046f1eca45e09dad683603f4674b'), ('378','10424','SNMP available','5247e9e5efcd4b29b864e336619eafcf'), ('379','10424','ZYXEL IES-6000 module status','0236177f088340ff8ce5adb9361b8df8'), ('380','10424','ZYXEL IES-6000 module type','7ad4e124b8184fb8abc454c70c67e309'), ('381','10424','ZYXEL IES-6000 port admin status','b20f50ac559f45369de16c04f5ccf523'), ('382','10424','ZYXEL IES-6000 port operational status','2f3b061e1d6f46a3b8216b2398fc2896'), ('383','10425','SNMP available','34ea860866f24498927b73f4ce438837'), ('384','10425','ZYXEL IES1248-51 port admin status','b933d3a98256457d906de8f7da377bac'), ('385','10425','ZYXEL IES1248-51 port operational status','e780cc91765849a0ace3d2eb2e4824a0'), ('386','10426','SNMP available','ac3d8b1e51074733a8bce57814528d83'), ('387','10426','ZYXEL MES-3528 operational mode port link up type','042fc0ecdef34baab224062d4f746b96'), ('388','10426','ZYXEL MES-3528 operational mode port speed duplex','cce63413576040fe8df5969886da993d'), ('389','10426','ZYXEL MES-3528 port admin status','6220d70f35404dd6834674510e0ae9ea'), ('390','10426','ZYXEL MES-3528 port operational status','36e992f6794a492e87c3c5a9749e26b3'), ('391','10426','ZYXEL MES-3528 SFP status','da9692b414de47d5bac9cd3287492e0b'), ('392','10427','SNMP available','7ad9362759b542d98a67796dd13fc5d4'), ('393','10427','ZYXEL MES3500-10 operational mode port link up type','064efc8dae8e47ae9c14713c7b31a36c'), ('394','10427','ZYXEL MES3500-10 operational mode port speed duplex','4ad7b4bf94494c93bdcbf36af095d5c3'), ('395','10427','ZYXEL MES3500-10 port admin status','e6a8dc82d4ca4b989daafd66ef1ab2ce'), ('396','10427','ZYXEL MES3500-10 port operational status','a96f6ed4d9e34a0cb79cee8bdbd672f5'), ('397','10427','ZYXEL MES3500-10 SFP status','8e9755ff129740298ab5f5497c6c17a2'), ('398','10428','SNMP available','dbb03955eb7043dda4dea1a9d7e8e043'), ('399','10428','ZYXEL MES3500-24 operational mode port link up type','c0f699295af740e2aabbb06c6718e8f8'), ('400','10428','ZYXEL MES3500-24 operational mode port speed duplex','f94441e46ffe4908a8a57089cbdaeaa7'), ('401','10428','ZYXEL MES3500-24 port admin status','df2213aff9984b3f837f99944f3c9bc0'), ('402','10428','ZYXEL MES3500-24 port operational status','679674c6b9364083a1eb1c9c9be136a2'), ('403','10428','ZYXEL MES3500-24 SFP status','f12de6ba6b4c4556b276f9d5d509ffcf'), ('404','10429','SNMP available','6e923e1e3ed34b8f87357b5fd7407c54'), ('405','10429','ZYXEL MGS-3712 operational mode port link up type','7c5d7efbd17f48619a3f4211a269b38d'), ('406','10429','ZYXEL MGS-3712 operational mode port speed duplex','da42da17340044ea83521107ac4dee04'), ('407','10429','ZYXEL MGS-3712 port admin status','7e107b2d754945dbaf833955fcae7f48'), ('408','10429','ZYXEL MGS-3712 port operational status','ed71a5038bf34198a3a56b0020ad728e'), ('409','10429','ZYXEL MGS-3712 SFP status','b89570749c5d4dcb9378b7951803b8e4'), ('410','10430','SNMP available','bf6cbe819fb94c85becf4364c47ef1c4'), ('411','10430','ZYXEL MGS-3712F operational mode port link up type','2695f35dedcf41e1aade2037e931c57e'), ('412','10430','ZYXEL MGS-3712F operational mode port speed duplex','c2b235ab2e6042568c096fdfb466f7dc'), ('413','10430','ZYXEL MGS-3712F port admin status','d145d8ee5ad2423f906335d30bfef592'), ('414','10430','ZYXEL MGS-3712F port operational status','655823ba854540c78a8078d4e7594bf9'), ('415','10430','ZYXEL MGS-3712F SFP status','bf0d94784c404b209d4c75c8f582a5c6'), ('416','10431','SNMP available','9e4265c1129d482fa12a09e657a7cda3'), ('417','10431','ZYXEL MES3500-24S operational mode port link up type','615d399b1a6045359dfc262b364b4c55'), ('418','10431','ZYXEL MES3500-24S operational mode port speed duplex','4217cd5f5c1f4b438cd4701c023da375'), ('419','10431','ZYXEL MES3500-24S port admin status','7e705fdb791341b8a1c86ee7d85fbfea'), ('420','10431','ZYXEL MES3500-24S port operational status','08e22f2eac034c9db9bba73040cea453'), ('421','10431','ZYXEL MES3500-24S SFP status','161770392cdb4dcd92c3596b5ad6d06a'), ('422','10432','SNMP available','5c5037a96f084a8182a5fb00f49ff285'), ('423','10432','ZYXEL MGS3520-28x operational mode port link up type','2b38ddd0e1a34cfab7dd6af9ebf28aca'), ('424','10432','ZYXEL MGS3520-28x operational mode port speed duplex','f23ebe496cfc4e659a09eff530b81a24'), ('425','10432','ZYXEL MGS3520-28x port admin status','3e0566598e394d80988fb49cd3215922'), ('426','10432','ZYXEL MGS3520-28x port operational status','2ffe41460977466cb09bc241b8d22739'), ('427','10432','ZYXEL MGS3520-28x SFP status','4443c6780c8f4d16a5f1efd5426db02e'), ('428','10433','SNMP available','a7acf3b0ac684d4e80c560bcd3dd2dc6'), ('429','10433','ZYXEL XGS-4728F operational mode port link up type','042ccfb45b0a4ef7bc8842f731dd8c4f'), ('430','10433','ZYXEL XGS-4728F operational mode port speed duplex','d466ff32531d4eaea989c07aa5989d6b'), ('431','10433','ZYXEL XGS-4728F port admin status','250f228ead4b433f987d42014255a617'), ('432','10433','ZYXEL XGS-4728F port operational status','ed13145eeefd44dda083716080725e60'), ('433','10433','ZYXEL XGS-4728F SFP status','49b0a85b7da947ab91e47ed2f2123907'), ('434','10434','CISCO-UNIFIED-COMPUTING-TC-MIB::CucsEquipmentOperability','8648df22d8be42359900e11ea395a98c'), ('435','10434','CISCO-UNIFIED-COMPUTING-TC-MIB::CucsEquipmentPresence','17dde900e96a47929b0abed0d5006c84'), ('436','10434','CISCO-UNIFIED-COMPUTING-TC-MIB::CucsLsOperState','c4a3603d4d8944ad8a8d2529bc3f1278'), ('437','10434','CISCO-UNIFIED-COMPUTING-TC-MIB::CucsStorageLunType','7d09a2b8df18410ca871ed9e7dbe6aa1'), ('438','10434','CISCO-UNIFIED-COMPUTING-TC-MIB::CucsStoragePDriveStatus','70a906bfe3b447a39e5a0f0ba5210ae2'), ('439','10434','CISCO-UNIFIED-COMPUTING-TC-MIB::CucsStorageTechnology','e1407fbe331343d3bda7d7eb122c085a'), ('440','10434','IF-MIB::ifOperStatus','2b0fde08268f4ce7b47aae3827ebdf23'), ('441','10434','IF-MIB::ifType','be402fda36e64dd2ad807925755735c4'), ('442','10434','zabbix.host.available','9ea529bf28a84fae95f1506ca6ca37b8'), ('444','10436','IDRAC-MIB-SMIv2::batteryState','3764082c250540f0b2827412a751f842'), ('445','10436','IDRAC-MIB-SMIv2::BooleanType','ef50d21a037545078e00102504b9b79d'), ('446','10436','IDRAC-MIB-SMIv2::ObjectStatusEnum','faa7d65868044cb08c2681db9615ef83'), ('447','10436','IDRAC-MIB-SMIv2::physicalDiskComponentStatus','c0b777b910e94d338ebfaacc94ca5c54'), ('448','10436','IDRAC-MIB-SMIv2::physicalDiskMediaType','596722d9a0b84c499908e460ba634a87'), ('449','10436','IDRAC-MIB-SMIv2::StatusProbeEnum','bd55f661ad24498a8876816ef9e70506'), ('450','10436','IDRAC-MIB-SMIv2::virtualDiskLayout','487f601e3f35437e800314865895b69b'), ('451','10436','IDRAC-MIB-SMIv2::virtualDiskOperationalState','a02a3f0c0fb24a52887f3feec42ae42a'), ('452','10436','IDRAC-MIB-SMIv2::virtualDiskReadPolicy','e2b543acfe9045ae8950075c1174b836'), ('453','10436','IDRAC-MIB-SMIv2::virtualDiskState','348ab665927b43e2b7e53eac8ab95820'), ('454','10436','IDRAC-MIB-SMIv2::virtualDiskWritePolicy','3bfaa8f277a549f7ae8a1bf0dc49e64f'), ('455','10436','zabbix.host.available','8124caf5004c4dd8985810ac9e6374b6'), ('457','10438','IDRAC-MIB-SMIv2::batteryState','557381876b894611bf213f55946b49a1'), ('458','10438','IDRAC-MIB-SMIv2::BooleanType','39a00987a4e14c0286acd9942db37e03'), ('459','10438','IDRAC-MIB-SMIv2::ObjectStatusEnum','ac53b62fdab246aa807e234ae9982102'), ('460','10438','IDRAC-MIB-SMIv2::physicalDiskComponentStatus','432abc8431e0438696cd1b96d3515a5c'), ('461','10438','IDRAC-MIB-SMIv2::physicalDiskMediaType','8aa7cecdd0944b91b8cdcba75e28d781'), ('462','10438','IDRAC-MIB-SMIv2::StatusProbeEnum','b096a16930734ec28bc0a5a5e7634783'), ('463','10438','IDRAC-MIB-SMIv2::virtualDiskLayout','3fcb8ac498564f068c4b30f3423fbe8c'), ('464','10438','IDRAC-MIB-SMIv2::virtualDiskOperationalState','6850d7335f6c423b87527a1a0252d00f'), ('465','10438','IDRAC-MIB-SMIv2::virtualDiskReadPolicy','076e6a30b90c49e9bcbb8a1adbc0b02d'), ('466','10438','IDRAC-MIB-SMIv2::virtualDiskState','4699f81ffa784d43b8e74aeb258a15cb'), ('467','10438','IDRAC-MIB-SMIv2::virtualDiskWritePolicy','15f75cf464d347308db357fa80e67f0e'), ('468','10438','zabbix.host.available','cf94dd75c6274a2aaff23e3a26eee213'), ('479','10440','IDRAC-MIB-SMIv2::batteryState','1a2c68f0f2384c0da7027981bd4bb5be'), ('480','10440','IDRAC-MIB-SMIv2::BooleanType','045512ecd6b94fbab71dd17abf5b8f4b'), ('481','10440','IDRAC-MIB-SMIv2::ObjectStatusEnum','82b2ff6e115d4d098ae1025547853b4b'), ('482','10440','IDRAC-MIB-SMIv2::physicalDiskComponentStatus','168707d69c984df4837638c72f103749'), ('483','10440','IDRAC-MIB-SMIv2::physicalDiskMediaType','1f138e6846544243a2729b41be9a97aa'), ('484','10440','IDRAC-MIB-SMIv2::StatusProbeEnum','9d25c114ba8046f5b126be9111d95184'), ('485','10440','IDRAC-MIB-SMIv2::virtualDiskLayout','e81dcef10a30448db51b9805ec60b863'), ('486','10440','IDRAC-MIB-SMIv2::virtualDiskOperationalState','e9e9b851915747c4b608934cd1235bc5'), ('487','10440','IDRAC-MIB-SMIv2::virtualDiskReadPolicy','92115895f7b9477983c67012b111afb3'), ('488','10440','IDRAC-MIB-SMIv2::virtualDiskState','7573aa4192534f44863508890606f917'), ('489','10440','IDRAC-MIB-SMIv2::virtualDiskWritePolicy','c6d4cfe5cf8b43808dce81cc1bcc4be3'), ('490','10440','zabbix.host.available','c5660f822c4a4567888e7f98d3bfab13'), ('492','10442','IDRAC-MIB-SMIv2::batteryState','692c968229d64965b3f6c59ca79b4522'), ('493','10442','IDRAC-MIB-SMIv2::BooleanType','1ee27c8f7c9d4f7cbafc8c7567b70c67'), ('494','10442','IDRAC-MIB-SMIv2::ObjectStatusEnum','c238adb07fea463a8cb21f962fcb24d9'), ('495','10442','IDRAC-MIB-SMIv2::physicalDiskComponentStatus','ee4ff377e3984685993e230911e6c13e'), ('496','10442','IDRAC-MIB-SMIv2::physicalDiskMediaType','7409409d584845e39579b478171a600a'), ('497','10442','IDRAC-MIB-SMIv2::StatusProbeEnum','1a301ddb56ba46d38314d5c3129544b4'), ('498','10442','IDRAC-MIB-SMIv2::virtualDiskLayout','f3e45e2d860b48c2a6f2b7a068cac361'), ('499','10442','IDRAC-MIB-SMIv2::virtualDiskOperationalState','6d457df3bf6646b3824ccc7be984587c'), ('500','10442','IDRAC-MIB-SMIv2::virtualDiskReadPolicy','47bf555344fd4fc1a15b372374bc75a7'), ('501','10442','IDRAC-MIB-SMIv2::virtualDiskState','2e035bf66ff144d8ab5e0c681bb246f6'), ('502','10442','IDRAC-MIB-SMIv2::virtualDiskWritePolicy','59eff775037e4e58925d3475ed0b0e34'), ('503','10442','zabbix.host.available','6b1b96e063084c8eb474006a9c691fb5'), ('504','10443','CPQHLTH-MIB::cpqHeTemperatureCondition','1b67de295fef454cb89744b101cf5a19'), ('505','10443','CPQHLTH-MIB::cpqHeTemperatureLocale','07d063dcbb3d4f1a8642bfd93afcd327'), ('506','10443','CPQIDA-MIB::cpqDaAccelBattery','009fd99d3734459285fa037c4a0ca201'), ('507','10443','CPQIDA-MIB::cpqDaAccelStatus','e138320082fc4aa69f3b23dad80272b2'), ('508','10443','CPQIDA-MIB::cpqDaCntlrModel','4891472973f84343ade2c5b61d96fcef'), ('509','10443','CPQIDA-MIB::cpqDaLogDrvFaultTol','a368b7472246477599d6278df8348bc9'), ('510','10443','CPQIDA-MIB::cpqDaLogDrvStatus','aab16842347c4e58b9bbee274dad3c62'), ('511','10443','CPQIDA-MIB::cpqDaPhyDrvMediaType','b3b110016c8c4272b9228161798a9bbd'), ('512','10443','CPQIDA-MIB::cpqDaPhyDrvSmartStatus','5b016d244c6845f7afcc80361aec2af1'), ('513','10443','CPQIDA-MIB::cpqDaPhyDrvStatus','2f4e1eb1f32847b3808372d02f752575'), ('514','10443','CPQNIC-MIB::cpqNicIfPhysAdapterStatus','3fe7ff0237a54f6cae3a1b8ffdabf157'), ('515','10443','CPQSINFO-MIB::status','342d09a1cfe543b9ac1555daee9f2235'), ('516','10443','zabbix.host.available','c57a256a525b46b0a1d0646200de57e2'), ('517','10444','CPQHLTH-MIB::cpqHeTemperatureCondition','1f0d43fc8b334b6da324b6ce4f838f81'), ('518','10444','CPQHLTH-MIB::cpqHeTemperatureLocale','96287ed099c14e09b2e1708487f64d8d'), ('519','10444','CPQIDA-MIB::cpqDaAccelBattery','684758347f0740e08af4986ed148e81f'), ('520','10444','CPQIDA-MIB::cpqDaAccelStatus','ff25d5d2484f40ea99b212e19c48e375'), ('521','10444','CPQIDA-MIB::cpqDaCntlrModel','4dc1441ab9964badbcb73e0dc213fe39'), ('522','10444','CPQIDA-MIB::cpqDaLogDrvFaultTol','3fd86d20618b43f39911746d72c2c242'), ('523','10444','CPQIDA-MIB::cpqDaLogDrvStatus','e72171bf818e4ee1bdf9638cb0494693'), ('524','10444','CPQIDA-MIB::cpqDaPhyDrvMediaType','3d32638b989d4d3e87f727baaef8b051'), ('525','10444','CPQIDA-MIB::cpqDaPhyDrvSmartStatus','137c69d61b394c979d7d25d91bcc2f0b'), ('526','10444','CPQIDA-MIB::cpqDaPhyDrvStatus','9af698a37bd844069eb2235f7f5d4800'), ('527','10444','CPQNIC-MIB::cpqNicIfPhysAdapterStatus','04dcfa6e36ca4a0590475d84186a5d62'), ('528','10444','CPQSINFO-MIB::status','83162a1a3b124ab2ae9b4cf1149486f9'), ('529','10444','zabbix.host.available','63b879b39b084a318547620421164c05'), ('530','10445','CPQHLTH-MIB::cpqHeTemperatureCondition','eb946b7168084341870c9157173b5c1e'), ('531','10445','CPQHLTH-MIB::cpqHeTemperatureLocale','a293ad4b90c14fe188623341b954d852'), ('532','10445','CPQIDA-MIB::cpqDaAccelBattery','ca2a5be5f3cf4fa7a9812d483ba043c5'), ('533','10445','CPQIDA-MIB::cpqDaAccelStatus','f15cd1d7fa7e4e05b46e872daa3a3c83'), ('534','10445','CPQIDA-MIB::cpqDaCntlrModel','abaffb0a2a1f47ec8aa64f6264d29092'), ('535','10445','CPQIDA-MIB::cpqDaLogDrvFaultTol','204396956bfe4ff5808dfa93bb35705c'), ('536','10445','CPQIDA-MIB::cpqDaLogDrvStatus','adb434bee0104007a4c0d053211bc2e7'), ('537','10445','CPQIDA-MIB::cpqDaPhyDrvMediaType','6cc6b46021f74cae83b29a62fc2cd1c0'), ('538','10445','CPQIDA-MIB::cpqDaPhyDrvSmartStatus','02eab0a3c02d440c82b86ddbd4ed1af6'), ('539','10445','CPQIDA-MIB::cpqDaPhyDrvStatus','8ab32bfce9f143da86a458427804a5f4'), ('540','10445','CPQNIC-MIB::cpqNicIfPhysAdapterStatus','d7ae95f8b813415c8d35cfe8debf8f2d'), ('541','10445','CPQSINFO-MIB::status','365afa633545431482f2ec054750da88'), ('542','10445','zabbix.host.available','9665746d6c2a4ad0b85b2f1f7d1cb12d'), ('543','10446','CPQHLTH-MIB::cpqHeTemperatureCondition','5655717fa32f4711b3062b97f1e5895b'), ('544','10446','CPQHLTH-MIB::cpqHeTemperatureLocale','ae1477baf3c046cbb5519346f28c7017'), ('545','10446','CPQIDA-MIB::cpqDaAccelBattery','af8340b5070f47e085eb91eb4580d728'), ('546','10446','CPQIDA-MIB::cpqDaAccelStatus','4c4378c0d1af4a6693f8c03bfaa9ad40'), ('547','10446','CPQIDA-MIB::cpqDaCntlrModel','23a855763fc346ea8a3559399ffa7428'), ('548','10446','CPQIDA-MIB::cpqDaLogDrvFaultTol','87ad87e768bc4d8ab77841e29176c36f'), ('549','10446','CPQIDA-MIB::cpqDaLogDrvStatus','46a2f599d46d438899ea4d8c552f51b4'), ('550','10446','CPQIDA-MIB::cpqDaPhyDrvMediaType','5f6868416f454beba585a0d2e9038117'), ('551','10446','CPQIDA-MIB::cpqDaPhyDrvSmartStatus','f78e361d31d94c479594b9d73257f80a'), ('552','10446','CPQIDA-MIB::cpqDaPhyDrvStatus','0efa6b7ed90f4edebc3282af5dbaf6c4'), ('553','10446','CPQNIC-MIB::cpqNicIfPhysAdapterStatus','1d312bcad99c43b8931fb128f6250afa'), ('554','10446','CPQSINFO-MIB::status','48e68c2789334818b5536be3f8628f66'), ('555','10446','zabbix.host.available','1b63c6eea5fc42a99501408d603c158b'), ('556','10448','InfluxDB healthcheck','d1b4478bdfc44c6db79a4a262f605d92'), ('557','10419','SNMP ltmPoolStatusEnabledState','74bcf04a70da49f89f04a20a9830fe13'), ('558','10419','SNMP ltmVsStatusAvailState','3a8776175b1f4cd7aa62f0182c7e3ed7'), ('559','10419','SNMP sysCmFailoverStatusId','6f96920248994bca92eb8d4394346027'), ('560','10419','SNMP sysCmSyncStatusId','1a42ed91b734453ab29a4c1f1feaca89'), ('561','10503','Edge activation state','6ac13cd1206145919ae7c9776ef5e76b'), ('562','10503','Edge HA status','cd8d83dc329144d9925a5c52db95df96'), ('563','10503','Edge states','87f150cd23e14448b35980b546dc2cd8'), ('564','10503','Link states','249b93828946422c9ef8870a915661ca'), ('565','10047','Cluster node status','cee1681b12ff49b6b7d442a851e870b4'), ('566','10261','Cluster node status','25ab0f5c570b4a7e9d15bd41db79fe25'), ('567','10505','Leader status','fa1732213d27418a88a61c964d93e9d7'), ('568','10507','Node conditions','785b20f8979341c4b470870ec8f50414'), ('569','10507','Pod conditions','f93e30e125de4909b52e7c38bc3f2c97'), ('570','10507','Pod phase','21ff77dde5964dcfb4bb2ae202a5f33c'), ('571','10515','IF-MIB::ifOperStatus','2216d8afb349448394590770ff99e56a'), ('572','10515','IF-MIB::ifType','3165b9b6c79e446f9d1029571518004e'), ('573','10515','Services status','fc5652614ee94cd8b437b3058886e857'), ('575','10515','SNMPv2-TC::TruthValue','f6bb441b7a65446c96c546bd3f3140ee'), ('576','10515','zabbix.host.available','d553e33d8b104a5e89d88500e85fa5fc'), ('578','10207','EtherLike-MIB::dot3StatsDuplexStatus','b31f48e2216f441daa0b05561ac2ab6a'), ('579','10207','IF-MIB::ifOperStatus','0a25bc3fe4dd40f8a08962befa8416d1'), ('580','10207','IF-MIB::ifType','ce3031283a6d458489747bfbf3696ab6'), ('581','10207','Service state','2d7b52f7709c460597a1ff44c1e39a1b'), ('582','10207','zabbix.host.available','03dcc409833146f6a1678df8b1311c40'), ('583','10254','EtherLike-MIB::dot3StatsDuplexStatus','322511c8bbf34b8da79b98e47067db64'), ('584','10254','IF-MIB::ifOperStatus','97fa6952fa0a4a2a965ba1e88eebe706'), ('585','10254','IF-MIB::ifType','629b7642da57472ea36074d43e45ce8e'), ('586','10254','Service state','ab33ce8c3fff400eb49d274d76143a37'), ('587','10254','zabbix.host.available','564ef39203334aff99b78aa8fb3fd2da'), ('588','10208','IF-MIB::ifOperStatus','c8b95f7ce9e44b5ea09273fb6c3c9a28'), ('589','10208','IF-MIB::ifType','db55d484980244b4bf5c60e0908f4e9b'), ('590','10208','Service state','17cb6bdbe4244a8fab16c0cbca5a4a00'), ('591','10208','zabbix.host.available','2fdee7620a3a449f9dd61eb3405e620c'), ('592','10210','IF-MIB::ifOperStatus','1b40ba5987784986bb25aa9dfa2d1e81'), ('593','10210','IF-MIB::ifType','5a55c0fddcc9450eb3e07b76cc73f8ee'), ('594','10210','Service state','ac73622b29f54d21aa6bcbac5a783599'), ('595','10210','zabbix.host.available','f74856688e9444bd93951f0c246ae483'), ('596','10211','IF-MIB::ifOperStatus','82de0c54872847d190ee681690aac69c'), ('597','10211','IF-MIB::ifType','6ba7778a7b454c649d6eb0126edd6a62'), ('598','10211','Service state','534121daa14949a6b5205cb9b7138b04'), ('599','10211','zabbix.host.available','e7bbb30eb3b748c6b6087bc2c353c3a8'), ('600','10220','CISCO-ENVMON-MIB::CiscoEnvMonState','0e5588b6aa714283b436031ff8ebc93a'), ('601','10220','Service state','9fc9d3c2eb254de996d9c4a61ba58671'), ('602','10220','zabbix.host.available','bb13061dd5b542f9b0f5921e75866679'), ('603','10218','CISCO-ENVMON-MIB::CiscoEnvMonState','fb67666002524322b1b9ae9ed1611be5'), ('604','10218','EtherLike-MIB::dot3StatsDuplexStatus','36ad5e7621ff466ca89e641c4410c6a1'), ('605','10218','IF-MIB::ifOperStatus','6c1104306b5447328703076cb76b64a9'), ('606','10218','IF-MIB::ifType','80d8685de68c49d8beb0f96f58baa1ce'), ('607','10218','Service state','521e28cd45a1421d89b1588e5392b50a'), ('608','10218','zabbix.host.available','cc333fe140bc45388e5508237b42e1ad'), ('609','10253','CISCO-ENVMON-MIB::CiscoEnvMonState','d811f4c78e8246f6a3ed1e903ade574d'), ('610','10253','IF-MIB::ifOperStatus','b4d11dd4e18b4958a17b5da31d101e08'), ('611','10253','IF-MIB::ifType','475ca8ba5faf4ddca62bd41be9b3d410'), ('612','10253','Service state','5470fefd50c64782ac60e3a2aa8b3d3c'), ('613','10253','zabbix.host.available','91d7e7e2bd4d48d7aecb9f9b4654185f'), ('614','10221','EtherLike-MIB::dot3StatsDuplexStatus','1962bc26a6064ee6868371f86d44dbeb'), ('615','10221','IF-MIB::ifOperStatus','7f124ca304d9431386bba2edbb9b2560'), ('616','10221','IF-MIB::ifType','9fde4e729aaf43cc993167d7c0bcae23'), ('617','10221','Service state','38ce73f0eb6b4c4a912b61b2014156fb'), ('618','10221','zabbix.host.available','01bced41864644fd842efed7085fda69'), ('619','10222','IF-MIB::ifOperStatus','538fac0622da44f6983715e4ab5174d8'), ('620','10222','IF-MIB::ifType','111695131cb1419e910bec80a4b8e799'), ('621','10222','Service state','613f2da376b04842aad29125788f0b91'), ('622','10222','zabbix.host.available','73baa4be94844904b9a6fc06152a948a'), ('623','10223','EtherLike-MIB::dot3StatsDuplexStatus','a5032b272e4c4208b16ce190833103b0'), ('624','10223','IF-MIB::ifOperStatus','2bdac31f40b04baaa131ebedde8d5077'), ('625','10223','IF-MIB::ifType','d050b91fbb5c406b8b59e4e66d3c783e'), ('626','10223','Service state','1012a8cf8ce34825aae3ffbb36ee1313'), ('627','10223','zabbix.host.available','93ebe10df982453aa98621c1f1d070f9'), ('628','10224','EtherLike-MIB::dot3StatsDuplexStatus','60e2bd909e284621a8a21810623b0e94'), ('629','10224','IF-MIB::ifOperStatus','2fcb120b5eb840ddbad31a7291711b7d'), ('630','10224','IF-MIB::ifType','d09aa2831cca48eb8c9011582c15bea1'), ('631','10224','Service state','3177ca5723c3410daf20723b88019907'), ('632','10224','zabbix.host.available','c6691c15854b472982f8a6636efdbe82'), ('633','10226','EtherLike-MIB::dot3StatsDuplexStatus','df2e3dab72d94efba9a85bfd7d1c3148'), ('634','10226','IF-MIB::ifOperStatus','9b4ab9573d184bf381f80ba4392fedc7'), ('635','10226','IF-MIB::ifType','8f5eaea6553c4053b1d04569bc14bcb7'), ('636','10226','Service state','b146c1413392488884ca17289a55055a'), ('637','10226','zabbix.host.available','77a05f825d144596a08149088121951a'), ('638','10227','EtherLike-MIB::dot3StatsDuplexStatus','ec3b9adaa2ad448db5a613cfb6e02fd3'), ('639','10227','IF-MIB::ifOperStatus','47c29a4e28094f59a3666ab1bc7bbba9'), ('640','10227','IF-MIB::ifType','023e30ad64bc402abf989de29c2b7c5e'), ('641','10227','Service state','814a713abe0740bc93531596474b80b2'), ('642','10227','zabbix.host.available','f6c6d62117c749a482792e753486a2be'), ('643','10250','EtherLike-MIB::dot3StatsDuplexStatus','846197beea984cc783b84822437bbace'), ('644','10250','IF-MIB::ifOperStatus','28a4a6c5a2b84802bfb1e3215ae398a7'), ('645','10250','IF-MIB::ifType','5a230e50a04d4855808dc213db1bb5c5'), ('646','10250','Service state','5a584e3a8795417c86911e6ffc37b0bd'), ('647','10250','zabbix.host.available','b9fe3941224749efa881a61b56c5d888'), ('648','10229','EtherLike-MIB::dot3StatsDuplexStatus','64bf3ebd444c4c4ca472b0846790b107'), ('649','10229','IF-MIB::ifOperStatus','ec040521269743e7a402bbdd1c952ea3'), ('650','10229','IF-MIB::ifType','a46f120c4e16400980806c27eb08de1e'), ('651','10229','Service state','3bde7ef9431d4a9e86d3cb88bb46a38b'), ('652','10229','zabbix.host.available','c2435e2487434b3b888c54cb4b6c0139'), ('653','10230','IF-MIB::ifOperStatus','59e447d9af934975975b38972c8a7fca'), ('654','10230','IF-MIB::ifType','f959de5e694a4e46a35da37ff58af887'), ('655','10230','Service state','9c931d7fbc984fd6b3a44a09fec264e1'), ('656','10230','zabbix.host.available','d6130251df4c41c0b417fcd8d71f3f15'), ('657','10231','EtherLike-MIB::dot3StatsDuplexStatus','69625f8a027542638c3ca9b64522602d'), ('658','10231','IF-MIB::ifOperStatus','79269236a24e4a1d8f40a600ee1c3a65'), ('659','10231','IF-MIB::ifType','f345b4dd14784f7f96902ad7f95d4038'), ('660','10231','Service state','e3bf54eef520492a94ad3d7bd7c3dede'), ('661','10231','zabbix.host.available','022ceae4990140a59b2ceca83a826dd5'), ('662','10449','IF-MIB::ifOperStatus','2c87030228374ab0a2f1051f5fdd1c48'), ('663','10449','IF-MIB::ifType','20bb48090ee04eadb771f56365193646'), ('664','10449','Service state','e7be0480e0904cc6a68cc027961d36f3'), ('665','10449','zabbix.host.available','1cab243abc4747c3ae5bc1e432c8e2f2'), ('666','10450','IF-MIB::ifOperStatus','3a94c6ec55bb4acea2aff228712bc4f2'), ('667','10450','IF-MIB::ifType','0a80c83f5dcc47b095641aa5a0ed3fcf'), ('668','10450','Service state','e785477c09fb4857b2b6ab0065eb30bb'), ('669','10450','zabbix.host.available','845e465060de4e619f5d2fc841730211'), ('670','10451','IF-MIB::ifOperStatus','fc286c3054704db2bc3b0e8b88ff74c0'), ('671','10451','IF-MIB::ifType','1299953fcf1143fb9155f889f39af069'), ('672','10451','Service state','85dc872152ec4c5f8af35558e554abae'), ('673','10451','zabbix.host.available','1f457b001e2e4d6c8ce2c386ea4d7f77'), ('674','10452','IF-MIB::ifOperStatus','22f415a6b99d4266adc34008f74b8273'), ('675','10452','IF-MIB::ifType','6ed02c4fe35042698491af23e9f9bf81'), ('676','10452','Service state','c16dce20ddb24e648936f2c874df7611'), ('677','10452','zabbix.host.available','9556e9053f5f49e2b8f8f4c312a15fc0'), ('678','10453','IF-MIB::ifOperStatus','1fd54fd1f5b245aa92674432cac9455d'), ('679','10453','IF-MIB::ifType','e8025fb20449470da19bf5881ebe3467'), ('680','10453','Service state','f9e0c946ec844715a29819e037a52d46'), ('681','10453','zabbix.host.available','d0c9d2ac973d49f09fd14d04803ccdf6'), ('682','10454','IF-MIB::ifOperStatus','91555b102b4344ecabb9ffba5cefdfd2'), ('683','10454','IF-MIB::ifType','e93fd9e1a289402f9631275a21da92a8'), ('684','10454','Service state','562a1120aa7148b3a3ebd862480574bf'), ('685','10454','zabbix.host.available','eaac357da10f4fa3ad2cf4cb5784c45a'), ('686','10455','IF-MIB::ifOperStatus','584f260e2200488084f41fbe709dd0ab'), ('687','10455','IF-MIB::ifType','12b06f3b345c43e7b9b6f2299b2608bb'), ('688','10455','Service state','8dd8911e238240a3a0455805bb8128af'), ('689','10455','zabbix.host.available','2f9ffba5f4ae4226b8ff39e4bff0b5d1'), ('690','10456','IF-MIB::ifOperStatus','33859113b37a4ed7b36e31ec6d016fd5'), ('691','10456','IF-MIB::ifType','480088441ae34e1d93cd19fa6379e30f'), ('692','10456','Service state','72f64e97a698449cbd0b6b60bc418b2e'), ('693','10456','zabbix.host.available','a52a4ff531194e7090d12246e011e9d0'), ('694','10457','IF-MIB::ifOperStatus','6e4c66c16e274c5f8caa1617020884cc'), ('695','10457','IF-MIB::ifType','ec8ebd0e1ace4fc4b455cd932c5abb6f'), ('696','10457','Service state','33a1f843573446878618a06307d76f8d'), ('697','10457','zabbix.host.available','4e2dde2550564c3baa667b369e03b257'), ('698','10458','IF-MIB::ifOperStatus','766be8ef402c431995ab5c5e70970cf4'), ('699','10458','IF-MIB::ifType','2a9c7cab3ad0446896cc2ef6121d4452'), ('700','10458','Service state','b5de6f35c8c14486b755175e8dee1d41'), ('701','10458','zabbix.host.available','506571817e794083bdf3a7276b60c22d'), ('702','10459','IF-MIB::ifOperStatus','39905ed60f834c78836e3fe8b4cf34fe'), ('703','10459','IF-MIB::ifType','308b4e2991ad4af88564441bc0e23b93'), ('704','10459','Service state','1624693f374e437db131f743864e865b'), ('705','10459','zabbix.host.available','95c329958acd4df1b5e2459725d50115'), ('706','10460','IF-MIB::ifOperStatus','d58e77f172d14ec5ab67d03296c7d38c'), ('707','10460','IF-MIB::ifType','acf4edb812eb4123af1d8560e63221bd'), ('708','10460','Service state','ad346998940e4b4e8e131b26ee4bee23'), ('709','10460','zabbix.host.available','6bd7aa56b18d4545891bfb11b69ddbd4'), ('710','10461','IF-MIB::ifOperStatus','ce35f7985cc545bb821b0d0603ddcdd5'), ('711','10461','IF-MIB::ifType','15e27cbe878e40b69ca4b16a3f6d1e2a'), ('712','10461','Service state','aae875e8761d49fda56524ee5d37f279'), ('713','10461','zabbix.host.available','287ca5d5072f4fa7b96a31a0812e1cc5'), ('714','10462','IF-MIB::ifOperStatus','10ff85e100864e88910e26efd34896d3'), ('715','10462','IF-MIB::ifType','b65a31c66306406a8fe73e6c210c0ba6'), ('716','10462','Service state','d8e4b86f85e549e4a3641b36c3b8c0b2'), ('717','10462','zabbix.host.available','61071e8ff079488dab143843f124fa99'), ('718','10463','IF-MIB::ifOperStatus','554abaed99124d0eb787506c0cb1b56a'), ('719','10463','IF-MIB::ifType','b59e05d6e52a4e3fb7546d7435c0dddd'), ('720','10463','Service state','59c270831db949389b6c8ae00b0ff394'), ('721','10463','zabbix.host.available','c6ee3b849b6942238cf691ecdb90be26'), ('722','10464','IF-MIB::ifOperStatus','844451a575b14c3abccb52db6637c57c'), ('723','10464','IF-MIB::ifType','f258811d525d47d7a491ffca5cf36211'), ('724','10464','Service state','cadc9c4a3e0549a9bd4092539a6e788b'), ('725','10464','zabbix.host.available','85b1c3feb18c4cbeb187dff5c4dd723b'), ('726','10465','IF-MIB::ifOperStatus','88ab84cb938a40a3918f884efd188d15'), ('727','10465','IF-MIB::ifType','6b690add355342aea58455d2e54f9202'), ('728','10465','Service state','b217d2a84c9844a08e6fef80c9dc6297'), ('729','10465','zabbix.host.available','be9bb4ec29c7453aaef08944117fa319'), ('730','10466','IF-MIB::ifOperStatus','9a2a53f5b1ee4cfd8128d6fd3ee94f19'), ('731','10466','IF-MIB::ifType','6efc0b7ffc2e4205b2cbcca15ceba64c'), ('732','10466','Service state','d6a4ac3dba1d494e8a61150fbdd8cacc'), ('733','10466','zabbix.host.available','4fa91d64132a4c2089cba197f734c0e3'), ('734','10467','IF-MIB::ifOperStatus','741d15ef55334ec9b017e355a1ed958b'), ('735','10467','IF-MIB::ifType','9b1f0649653b46c7be262934f376926e'), ('736','10467','Service state','9493572ff58f4e4c86208bb8ac839aa3'), ('737','10467','zabbix.host.available','bb18fe8a5404430e95b6bb00d571e6ed'), ('738','10468','IF-MIB::ifOperStatus','eb2dc24843604c1b8ef9169ce65e570c'), ('739','10468','IF-MIB::ifType','ea9e3359b57840c8b1fa1b1c0cbf55c5'), ('740','10468','Service state','e392411ac64845efaedeec750731caa8'), ('741','10468','zabbix.host.available','9200cc616f934bc5b0df6136c53e0650'), ('742','10469','IF-MIB::ifOperStatus','09f1738eab3c4fc381b22b1d82a8d192'), ('743','10469','IF-MIB::ifType','e56e7aefbc244b1f9a93fb787d7043db'), ('744','10469','Service state','8ca1d63f5ca1449fb4f2dbb94b54835a'), ('745','10469','zabbix.host.available','c5f9837a1d6d42bb9ffae512dd63f0d6'), ('746','10470','IF-MIB::ifOperStatus','898bfaed08a44954897385e63d854c0f'), ('747','10470','IF-MIB::ifType','d441d05e0e24462b817c5b3eae8d9b9d'), ('748','10470','Service state','04f7843b43454cc487e70cd3639b4024'), ('749','10470','zabbix.host.available','84bf465ed8e3421e817ba4648e7707e9'), ('750','10471','IF-MIB::ifOperStatus','a47c7db9e85a42f6807209393d5be773'), ('751','10471','IF-MIB::ifType','79a3153cc7f74b8ab41acec0f722476c'), ('752','10471','Service state','f430b2fa108a4c2c964d4e39c794cfaf'), ('753','10471','zabbix.host.available','5bc4289f35bd41b9a5034da380f78eba'), ('754','10472','IF-MIB::ifOperStatus','8c73c67d22c343c5a37d23afe2fbe98b'), ('755','10472','IF-MIB::ifType','7d7a0f21f1aa40ceb5acd6f1d9815875'), ('756','10472','Service state','c9ed7ee77afb436e8c85baba81aa3971'), ('757','10472','zabbix.host.available','ef6e97ca311d411c8b1d3dc7d87a1fce'), ('758','10473','IF-MIB::ifOperStatus','d9450045bbb64855ae135a53308f3a22'), ('759','10473','IF-MIB::ifType','6a6b6e7caa4d41b4b08781b665219425'), ('760','10473','Service state','03feaa2653754a39a49be179e127cfef'), ('761','10473','zabbix.host.available','26e5c5020edb4553a70bf0647d5e99a7'), ('762','10474','IF-MIB::ifOperStatus','d081693e5965461ab47d1e39712d0730'), ('763','10474','IF-MIB::ifType','4028b1d91dd34224af78d961a8139422'), ('764','10474','Service state','1b36de603f4a489ab58b3a2007664b97'), ('765','10474','zabbix.host.available','827c5e25ce6c499690912ce2f51f2d23'), ('766','10475','IF-MIB::ifOperStatus','42f75b8ccc1642699bc4c681379cdf9a'), ('767','10475','IF-MIB::ifType','eaf1d4babd704133811b0a0bc912d319'), ('768','10475','Service state','057602363ab44b638e1c116e1e4edafd'), ('769','10475','zabbix.host.available','14fa9bc957f644c19e88352fcd00a196'), ('770','10476','IF-MIB::ifOperStatus','328bdd06aa634535895f099b1ae489a2'), ('771','10476','IF-MIB::ifType','1404a90ce0c24bdfb85712fa4ada16f7'), ('772','10476','Service state','92b5d1e8e71948fba8a01231ff5661ae'), ('773','10476','zabbix.host.available','6c09aa1071a04b4381d625bfa862651c'), ('774','10477','IF-MIB::ifOperStatus','a020e149d8cd44b4bc01757e860fea9b'), ('775','10477','IF-MIB::ifType','eb92bcec20754ffda075157e919ff103'), ('776','10477','Service state','ff7e81f30cbc4a8e9bdd4ab9f1b67332'), ('777','10477','zabbix.host.available','51f609663817483cb44991b1057b6fd1'), ('778','10478','IF-MIB::ifOperStatus','03170ad661d94227a3ed44be919bb70b'), ('779','10478','IF-MIB::ifType','154285efa1184f648f415c16c80ed959'), ('780','10478','Service state','e99c8b74b91047ce94ccf9d257da7952'), ('781','10478','zabbix.host.available','4e98aec63e9a447085e18b0c00878c72'), ('782','10479','IF-MIB::ifOperStatus','373f90696d5446dfb8b96ac601ea46bf'), ('783','10479','IF-MIB::ifType','ec31f6a5de23428babb52891633c1cbf'), ('784','10479','Service state','46a72cb8e18e4f6287a01663b70d65b8'), ('785','10479','zabbix.host.available','3ecff0e7f545452eaf0a4ea5c259099d'), ('786','10480','IF-MIB::ifOperStatus','405ab38009ec49348abe0b0c40cf8400'), ('787','10480','IF-MIB::ifType','f8b354a36e1b483a9b62e151e9979e44'), ('788','10480','Service state','d6794baa748e42ecbbb7ff798a7b6dfe'), ('789','10480','zabbix.host.available','80459903b71047d1979a2043fa4a77a9'), ('790','10481','IF-MIB::ifOperStatus','f3c5ab8576b34585a21cc5c12ea2f030'), ('791','10481','IF-MIB::ifType','6f4886e0f3014d9796ba3014a2cf4190'), ('792','10481','Service state','15c511178ebd4ea1b08cf75048915a8d'), ('793','10481','zabbix.host.available','5b9f23af5c684b2f8360032126ac323e'), ('794','10482','IF-MIB::ifOperStatus','1688633d1275445f846db4e63be4ec87'), ('795','10482','IF-MIB::ifType','54cc6fac26fa4e038de096b4e4a27ca9'), ('796','10482','Service state','7b5f3cb781fd49e1bc0a1811fc6bdb3c'), ('797','10482','zabbix.host.available','07adb358b3dc45dd848501bb129c184f'), ('798','10483','IF-MIB::ifOperStatus','6baa15161f3645ec9f7c55454fb5b575'), ('799','10483','IF-MIB::ifType','9fa04834870c42d18cff898de904b7d1'), ('800','10483','Service state','cb3fc2c6a23845979765dc351158e134'), ('801','10483','zabbix.host.available','239cc24f3e7046059da55c621f7f7741'), ('802','10484','IF-MIB::ifOperStatus','7c2123a387904176a8285e3e1405622f'), ('803','10484','IF-MIB::ifType','618992ab84bd450c95e42ce469bbd45f'), ('804','10484','Service state','0cd4de70a85e44d28b6cad58f76dd298'), ('805','10484','zabbix.host.available','ecb1dff8b48f4537ab39a61186db0dd7'), ('806','10485','IF-MIB::ifOperStatus','2cc282d274444241a03ee557db156c73'), ('807','10485','IF-MIB::ifType','4c9d084f51dd4c649b645c71a812220d'), ('808','10485','Service state','3136d5ca9dd543d1a63a6df52bb60249'), ('809','10485','zabbix.host.available','8f791785fd354a10b5c5a005e023d6c8'), ('810','10486','IF-MIB::ifOperStatus','270aa43aec684b4691a231c73aeb3f0f'), ('811','10486','IF-MIB::ifType','4e3a9e65c5734c34b6a73f9f68513e3e'), ('812','10486','Service state','f90f3e32b5b54f0c93aa0e5722810917'), ('813','10486','zabbix.host.available','c3ffbe98192e4639843ab4a3584965ac'), ('814','10487','IF-MIB::ifOperStatus','5ad8c335be4242fab3fe494707553a44'), ('815','10487','IF-MIB::ifType','ab80a859fba74ce085fdfdddbadeda8e'), ('816','10487','Service state','4c5a4ebb20fd4111b444af3db223a21a'), ('817','10487','zabbix.host.available','46e81d323d9745f4af7af06ff9f85d3a'), ('818','10488','IF-MIB::ifOperStatus','77234a3478a44316b69d7cb39b018b47'), ('819','10488','IF-MIB::ifType','42a4cc6793864b5fa8fcfbb158b993cc'), ('820','10488','Service state','09896efced0143bc9f4c9f33db6051a4'), ('821','10488','zabbix.host.available','097987211d8a41c5bb87be4f8b9e4598'), ('822','10489','IF-MIB::ifOperStatus','8ab38f3183414268a97886537f26bb62'), ('823','10489','IF-MIB::ifType','94cc38c8cfd3498ca3e08b2f3a215d7b'), ('824','10489','Service state','ffb74f2e72274c3eadcee61d34faf885'), ('825','10489','zabbix.host.available','680e9b81d3094abc8a37ae0645076fe0'), ('826','10490','IF-MIB::ifOperStatus','e730f38a15e34cb4b52d27710056a28a'), ('827','10490','IF-MIB::ifType','486c1f40eae844d28eb8acfdebf52bb3'), ('828','10490','Service state','cdebb7ffdc0c4191a2b84569e3d8d40c'), ('829','10490','zabbix.host.available','9b957d38b829475a8cbe06991ff90659'), ('830','10491','IF-MIB::ifOperStatus','bba96f7bcedf4277b5411562b17b0216'), ('831','10491','IF-MIB::ifType','e1c29894283b4837b9fb6b1929b2af2e'), ('832','10491','Service state','9c3206fa143949e1a3d6423bc410a2dd'), ('833','10491','zabbix.host.available','85e730aa40d141f488e0d0e5cc51f4cf'), ('834','10492','IF-MIB::ifOperStatus','e6d270e997dc40dcb0b2d69f0eeaad69'), ('835','10492','IF-MIB::ifType','3435384894224f579ceb1d9529532d49'), ('836','10492','Service state','470819e8e6e04c988f1ddaf4ae78362c'), ('837','10492','zabbix.host.available','a57b96fc823f4634901a4da9df6d8f25'), ('838','10493','IF-MIB::ifOperStatus','1a0d7378fe7340b68845b69fb4f93483'), ('839','10493','IF-MIB::ifType','11d4940866204548bc22f75188bcbc23'), ('840','10493','Service state','c9b07b4e497c4723a45effe620dae0e8'), ('841','10493','zabbix.host.available','2a3d5a84618f48d2a98f1ce43b1541f9'), ('842','10494','IF-MIB::ifOperStatus','209d3691ddba4079971e42b4c66bbf7b'), ('843','10494','IF-MIB::ifType','537470b0ce914388bae1f5c9d0b7e650'), ('844','10494','Service state','f4e3f00eee7942b4a923008204a5efae'), ('845','10494','zabbix.host.available','7e6ac491ba67468ca65aaadd506b0653'), ('846','10495','IF-MIB::ifOperStatus','c212726bbd1047f2aa72c2f88b1bd4d8'), ('847','10495','IF-MIB::ifType','1d00e802a2c44775a84e2cff4e9f3e65'), ('848','10495','Service state','47444d3fbb2f414dbb1c6ad7cb77ee13'), ('849','10495','zabbix.host.available','451f6505bd2e43e08ab5f86e0e7ff816'), ('850','10496','IF-MIB::ifOperStatus','15171bce73d64d4db72399fefc7c55f1'), ('851','10496','IF-MIB::ifType','bcd9de0d817246688f7682a1b66ed046'), ('852','10496','Service state','c0bded469f6a4378a7fdcadd7c858b24'), ('853','10496','zabbix.host.available','427da1e5397442f3a00e445928f054ed'), ('854','10497','IF-MIB::ifOperStatus','6ea0ca9342014c71be6d5c38203bcf55'), ('855','10497','IF-MIB::ifType','97906247683e4a488e191c5aba0b1bb3'), ('856','10497','Service state','7a87ed0256064913ac714fe514f3a87b'), ('857','10497','zabbix.host.available','18e987751fe7494bba178a5412592b90'), ('858','10498','IF-MIB::ifOperStatus','76ca35629e874d2f90546a74a4b36ffb'), ('859','10498','IF-MIB::ifType','a6383fcd4ce349eeac45dea55c502ded'), ('860','10498','Service state','7cc0bd53766f455fa18674f6c6d08b47'), ('861','10498','zabbix.host.available','8882c6eab8a7460e81bed27d01992b08'), ('862','10499','IF-MIB::ifOperStatus','e440d3590aee41198de71b1b8d03b4b9'), ('863','10499','IF-MIB::ifType','9f7f414526dd464f813b6c193317729c'), ('864','10499','Service state','b31538483a81433a9136af0e3f210b2c'), ('865','10499','zabbix.host.available','61a780952af848389136a09bbebbec46'), ('866','10500','IF-MIB::ifOperStatus','839bc47f8c5a4c08a124d98a67d1d008'), ('867','10500','IF-MIB::ifType','e5ff01ab289d41c3b0400ddddd560252'), ('868','10500','Service state','60d08c7e151244b6818a208dc71be165'), ('869','10500','zabbix.host.available','4afed47df39742559534158284d405a4'), ('870','10501','IF-MIB::ifOperStatus','f67e80e8803c4aa7bf64347a6ab40336'), ('871','10501','IF-MIB::ifType','bb70b4c197574b659fec20c066393945'), ('872','10501','Service state','828e978dbe3d445d8059c31f8902e403'), ('873','10501','zabbix.host.available','47facf2a4a234c31851d1ec80a803cbe'), ('874','10502','IF-MIB::ifOperStatus','c3ca1fe6814948818bde09a430c55d56'), ('875','10502','IF-MIB::ifType','526dda4a360a4b81b3875c105087b417'), ('876','10502','Service state','325bbbb044504b29957d9a759d7947d0'), ('877','10502','zabbix.host.available','77b701dfe7914b54ad7f361e0ff55f3f'), ('878','10233','IF-MIB::ifOperStatus','b020eb645cff47c0b91891a36652c087'), ('879','10233','IF-MIB::ifType','0ab024c489794d1299d2992ad5b3e1e8'), ('880','10233','Service state','4197110252654153a2eee46de014a4c0'), ('881','10233','zabbix.host.available','f63bc9f2c0d0427b9d1eccae7a1d612d'), ('882','10234','IF-MIB::ifOperStatus','fecd5d9485284373bf7a2675c2b29698'), ('883','10234','IF-MIB::ifType','fc2630e4b471489e86b27cad74869009'), ('884','10234','Service state','5f4a459df3414f51a6304e95e33719cb'), ('885','10234','zabbix.host.available','8f0e780896f9432486996071a231fba3'), ('886','10235','EtherLike-MIB::dot3StatsDuplexStatus','867a4b73b9c74b8991bd9e7fada4266f'), ('887','10235','IF-MIB::ifOperStatus','8be611d8f2c84397b7ded25165d6c63c'), ('888','10235','IF-MIB::ifType','041993f5fd2c4dec97fe4a1ede37cad5'), ('889','10235','Service state','56ec9ee320f545d7a9f0941258f298ac'), ('890','10235','zabbix.host.available','1bc8b4e625ae4328b3919b6379680ddd'), ('891','10236','IF-MIB::ifOperStatus','ca6bcc5f345b46ffaa445d38a90ddcae'), ('892','10236','IF-MIB::ifType','7eaf5db3b1f047bd9a8f5acdfdaf59ad'), ('893','10236','Service state','0d9190336b1d47569f423067889d7a4d'), ('894','10236','zabbix.host.available','090a2707e81e42829504663cf37b8223'), ('895','10237','IF-MIB::ifOperStatus','2fc5bef495074d0e86641cc136e3dcde'), ('896','10237','IF-MIB::ifType','5161926438084643a3e2b08dac97cb4f'), ('897','10237','Service state','d72bcf64fddb4f4faf3bfb039a36e0e4'), ('898','10237','zabbix.host.available','4ceae86ef7e84797a911fd3d257eaa46'), ('899','10076','zabbix.host.available','4a25a6b3d6e4482ab2a748c79cb55524'), ('900','10076','Zabbix agent ping status','f2885fb5e52946f8bce8eb96a60f433a'), ('901','10075','zabbix.host.available','9c02af203e354ac6ac87a742e85f683b'), ('902','10075','Zabbix agent ping status','b82f35541efe4fc1a432c049eba5d082'), ('903','10077','zabbix.host.available','663bea44626447b5a72a71238dfda919'), ('904','10077','Zabbix agent ping status','3f4bc88020d444e1b951aebfa8f3dfb8'), ('905','10001','ifOperStatus','8c048c6cca8248f2860c208e8db0f59e'), ('906','10001','Linux::Interface protocol types','044df261808442a8af9e5cda0acaa6a5'), ('907','10001','zabbix.host.available','5488e5d78d704b78aee60c60414ce0c3'), ('908','10001','Zabbix agent ping status','64faba3a883241a88da8833970ac3ab0'), ('909','10343','ifOperStatus','276914b5aee2435da609d3112ecd359d'), ('910','10343','Linux::Interface protocol types','79afe98a54a648bb981c29e70ba6652c'), ('912','10343','Zabbix agent ping status','e815d397c5e44f1791622fd598bc1131'), ('913','10248','EtherLike-MIB::dot3StatsDuplexStatus','1fe48656fa5e4a23903921a5b0f2aac4'), ('914','10248','IF-MIB::ifOperStatus','1578e9a6c5f24dd1915d981c245b68fa'), ('915','10248','IF-MIB::ifType','4a342bf160284052bc94e123d13f7992'), ('916','10248','Service state','1ccba0a6ed744226ba878957e7d1aa47'), ('917','10248','zabbix.host.available','72e9f56c06b546319580d856fc112dc1'), ('918','10079','zabbix.host.available','0355844b2bee4fb59bddda6175ef4810'), ('919','10079','Zabbix agent ping status','a72caf871acf4776a891a612932fbf2e'), ('920','10074','zabbix.host.available','693c226692c548869e77d3313934ca28'), ('921','10074','Zabbix agent ping status','8dad41742edf49178119c70abea0a0dc'), ('922','10078','zabbix.host.available','2a704279b6e946a99b88bdebd4f99653'), ('923','10078','Zabbix agent ping status','5db838501e354313888d84800658ed6a'), ('924','10081','Win32_NetworkAdapter::AdapterTypeId','9b087b9bfa09434ea0d0b5c32577abcc'), ('925','10081','Win32_NetworkAdapter::NetConnectionStatus','7e549195e83446228db8bf1101bea83d'), ('926','10081','Windows service state','3f685167f97c492598ad445fc938560f'), ('927','10081','zabbix.host.available','c80233756c9d43769f334d632da07b8c'), ('928','10081','Zabbix agent ping status','5d3e53f3090448c7aaf081eb32b28ced'), ('929','10351','Win32_NetworkAdapter::AdapterTypeId','224ca38281f04c83844763251505cdce'), ('930','10351','Win32_NetworkAdapter::NetConnectionStatus','850e339a24de4ef6a0a881dc57bfa3a6'), ('931','10351','Windows service state','e29ffb786c21406aa2338e3d35b484ef'), ('933','10351','Zabbix agent ping status','0b50ea7e6695421da023ece0a23bed10'), ('934','10249','IF-MIB::ifOperStatus','2357d81186e34d5b91db98c2350e0bdf'), ('935','10249','IF-MIB::ifType','b3f64ce647bc4647a692f2e3bafa3760'), ('936','10249','Service state','43b61695bdf347cb8ec9bd23e7cdbc88'), ('937','10249','zabbix.host.available','a979f49c325344e0b6c064b829a21f62'), ('938','10385','Service state','0aa29a4ffa224d56a107a1cfbd6c416a'), ('939','10385','zabbix.host.available','d107957d44424014a251dff95751a41f'), ('940','10378','zabbix.host.available','7ad319d1815e45a1a28a8cd2516fd8eb'), ('941','10304','Service state','b98830da69f9463f949ed2df7ee5dcb3'), ('942','10304','zabbix.host.available','a67fce1a203742eea56849fc38b8af39'), ('944','10255','zabbix.host.available','a8b28aa27f374f58a1ebc85fd3a84887'), ('945','10256','Service state','98d8b8c35272455281f6ae0775691117'), ('946','10256','zabbix.host.available','1d84ec840bfb4ca0a8e98d11008e8423'), ('947','10258','Service state','2fa79738fa194e04bfaeee91a2e4396f'), ('948','10258','zabbix.host.available','c446435a96c24db2845ba0651eb44c94'), ('949','10259','Service state','e6794dc7602149a3b4fdbfeef45f6e8e'), ('950','10259','zabbix.host.available','1fbe26c5dcb3457f98f84a240aa790cd'), ('951','10510','Boolean format','a435f7e23050406ca40cf6f5f872b5a7'), ('952','10516','Wind direction','9a8fdac997914722acfea90f1f9d45e9'), ('953','10517','Cluster quorate','d4bbd08f3a324a57af97a17f819cb3f3'), ('954','10517','HTTP response status code','87034fae192c44dba6c8bb568cd90bbd'), ('955','10517','Node online','99c0bc65efb34d298586320bdcf14209'), ('956','10518','FREENAS-MIB::ZPoolHealthType','1ce70fc8edf2449ea6a0c687f359441a'), ('957','10518','IF-MIB::ifOperStatus','8206c1b8a10840c0908b34c95f8ba4b3'), ('958','10518','IF-MIB::ifType','f5115f963d0043f6b76ebbd27aaba600'), ('959','10518','Service state','8673d9a283674ca2bcd973f5fdff7258'), ('960','10518','zabbix.host.available','0fe93c05f4c94ce8943950210218f6d9'), ('961','10519','Node health','2e7ddaadebce4b1089dcf01a91d01293'), ('962','10519','Node readiness','705e364c9e1b44dbb3fb50a1b27a8cdb'), ('963','10519','Service state','cc5f50f62d4a4895aa64d167f56cb99c'), ('964','10520','Envoy listener manager','2152e7a114f3489eb6ea80b948c0db5c'), ('965','10520','Envoy server live','c05c038099d74d11b6fef057518a1fc9'), ('966','10520','Envoy server state','f467d440b03e4dab8cc4b15f87185eb5'), ('967','10361','zabbix.host.active_agent.available','0407f8e83ce94d9b88db8dab241e44c0'), ('968','10326','zabbix.host.active_agent.available','c63064c6717e4604805491ce54166356'), ('969','10343','zabbix.host.active_agent.available','d4a5821461a243c9bf320ea58be1af23'), ('970','10351','zabbix.host.active_agent.available','131de6a1016e43019d7cac2ce76901d4'), ('971','10521','Consul Autopilot healthy','92638a6d5a9347edb011a8c999a9895e'), ('972','10521','Consul health state','1f966e7c41134551870c82f013f0b2cd'), ('973','10521','Consul Node role','8d8f7d7e37a44fe8ac590147f621cb4c'), ('974','10522','Consul health state','9c120a74ede844e6a410b7e2c2d712bb'), ('976','10524','Controller status','3bb065172c93464c9f5e2e569f523a05'), ('977','10524','Disk group status','78f22a3d82a64372abb3e3eeb08cf03e'), ('978','10524','Disk temperature status','eb92d7812b8e4d2dbe4908fc3d42ade8'), ('979','10524','Disk type','e6478ee0a41b49778f2a3dc130649838'), ('980','10524','Enclosure status','243d29502c1c416c85eb2ccc961a159c'), ('981','10524','Fan status','40916613dcf24dc2beb8634ec67c04bf'), ('982','10524','FRU status','f656acc354ab4593a1c1718668c02001'), ('983','10524','Health','448c57be77694badb75dbdabe9b233df'), ('984','10524','Port type','66a23d01db744677a1878143ccf102c7'), ('985','10524','RAID type','996bbe1c4e2841d6ac35efd9b5236fef'), ('986','10524','Status','6c5d6649be2347ca83258f0ab1a63137'), ('987','10525','Controller status','f7af1259f3c54a5faa040c743d386d1d'), ('988','10525','Disk group status','6bb0dfe12f4249ef9f4b804885c70c60'), ('989','10525','Disk temperature status','de0e7d801a9b42cf80fe4c71c0eed982'), ('990','10525','Disk type','10547e62c7bb4581b347bc523ef03582'), ('991','10525','Enclosure status','37317f19f7d74b8fa61dd1b28e6f4d42'), ('992','10525','Fan status','1acc14c82fba4c3daa207d0ce9b702f2'), ('993','10525','FRU status','284ed898fb7c46ecb8d719646445264c'), ('994','10525','Health','cb8c3d00dfd4456181765b8b350ea4d2'), ('995','10525','Port type','ec101e7d212747779ed56ef9dbf72e2b'), ('996','10525','RAID type','171c9abf20514b0fb78d532bd987881b'), ('997','10525','Status','402b0dacf14a4436b0d3cfe237bf1e86'), ('998','10526','Boolean','79ba0611293541f29f8b43b34e64465d'), ('999','10526','diskState enum','fd9a3483b02f45c6836b9a126b669402'), ('1000','10526','hardwareType enum','7513c4c923884ed4b8e35ee9cdf4f627'), ('1001','10526','portConnType enum','5d243add5b534ebfac8ef95d55c4c8c9'), ('1002','10526','portFailOverState enum','5762248dd10143a3945c989f0fb73b47'), ('1003','10526','portLinkState enum','5a6cdc765c254f17b136c4267fc71349'), ('1004','10526','rcopyStatus enum','eb36574d642d4f9ea51688b4ff971c91'), ('1005','10526','Service state','aaa5a863e8524a7088e64a51f5976c98'), ('1006','10526','State enum','86e4337cbc86423fb9f605a9fb3b25b1'), ('1007','10526','taskStatus enum','5cfd4442b6244399b7aa8b57e9816a4e'), ('1008','10526','taskType enum','9a8e1dbbb8f7497c9492fc941fde7177'), ('1009','10526','Volume compressionState enum','f529111642364bb3a23637adc554e592'), ('1010','10526','Volume deduplicationState enum','716912c7b7d94f8e97fbf911edc9578e'), ('1011','10526','Volume detailed state enum','6a2355e32bf54483b252f1aaf170aa45'), ('1012','10527','Alarm state','50b7fdfdf6de41f4b4b210a07c10cd77'), ('1013','10527','Status check','d59e4f0c6aaa40bcb5f504f6743d9201'), ('1014','10527','Volume attachment state','cf0267337f284182a43db45d823824b7'), ('1015','10527','Volume status','4f31d29791b94e37b065f790609c50b5'), ('1016','10528','IF-MIB::ifOperStatus','b556be6037b449139eab7830cdab494a'), ('1017','10528','IF-MIB::ifType','c9a24f17cf8243feb44825d707132180'), ('1018','10528','Services status','0cb987b54d4243009aeae0454d0c059e'), ('1019','10528','SNMPv2-TC::TruthValue','1e5ba7a78b5843f0a97edc51eaa96778'), ('1020','10528','zabbix.host.available','187ea1eb9cdb4f52bf5a6651820024a9'), ('1021','10529','Alarm state','4ff4cda021a4464ebbebb42b7ee02673'), ('1022','10529','Read replica state','69bbb2cfded14be6ac596408bdd4de37'), ('1023','10530','Alarm state','5f232f40f02246ab843c9aacdcf8d5c5'), ('1024','10532','Azure resource health state','38c8ce1516704ec2a6f1ea9686db56b9'), ('1025','10534','Boolean','20d3a73c6cc84329a5dfafff29de32cc'), ('1026','10534','Device presence','d3641b3e94ad495f8e0c5c49984a5aa1'), ('1027','10534','Enclosure state','082018b109e24116bbd92f0657113165'), ('1028','10534','Health status','05742432aca048ca96684ba52bd058ae'), ('1029','10534','Hypervisor manager state','6cd4b888faa442c19392b959f1605179'), ('1030','10534','Link port state','930add5553ea42668e590c9824d9e8d3'), ('1031','10534','Logical enclosure state','556391b7f9c045c89d28ac52a1082635'), ('1032','10534','Maintenance state','e26c553cffab4766866bf25639fb89da'), ('1033','10534','MGMT port state','c66615691cba4abc9c7adecc29bb346b'), ('1034','10534','Migration state','6feb2826df9244a8b6b7732c98090b63'), ('1035','10534','Partition health','b878a1503ac14781a142f69a587264ed'), ('1036','10534','Partition status','2c6d8b81e7ee4407b17ca06739ac71f1'), ('1037','10534','Physical server power state','7daddccc109d41f8abf1e04ba1fbd358'), ('1038','10534','Power state','fe093138fdd14f7f80fa4498d91d7fa0'), ('1039','10534','Rack state','5a4901bdd6024256afbfebee6827e103'), ('1040','10534','Resource state','ba5903d60953477aafd313d3688c8dd8'), ('1041','10534','Server hardware state','a545b93c790741a29b726f04f03cbc8f'), ('1042','10534','Service state','2d6f2f67dc114502ae699e873130ba23'), ('1043','10534','State reason','647f5a6d2ce54e78af163f8676f3f1e0'), ('1044','10534','Storage volume state','e20d58a33c3b4a8891dda5da8b86cd5a'), ('1045','10047','Compatibility','b985f0f026be4889923f5d16393e5383'), ('1046','10047','Last seen','3b60aa68965f47baba665e354e0e79de'), ('1047','10047','Proxy mode','7c52b5e2d2434edeba089e136a7eb845'), ('1048','10047','Service state','0d2da53a4e404248b9d156b5a7342002'), ('1049','10261','Compatibility','2498ad0b91d742888acccd435ba52962'), ('1050','10261','Last seen','53d1560f612540d98a2983516b4b9f8c'), ('1051','10261','Proxy mode','cdbd6c1bc69b4dcf925a1048a970139b'), ('1052','10261','Service state','7a5e7def958c4f16b9380d4b81f609c9'), ('1053','10539','Azure resource health state','4eec167b4d69441398b96b8e375d6825'), ('1054','10540','Azure resource health state','323a5259fb854724891515767f341540'), ('1055','10543','Azure resource health state','f208cf6141c44659a2c6904ec4cd7ac3'), ('1056','10544','Azure resource health state','61fc206aaae04abda4012e031f0e27ac'), ('1057','10547','Device status','24967dff65a048578eae18b2485907cb'), ('1058','10548','License status','af92df09c58c4c9287fe294b7b90e193'), ('1059','10548','Uplink status','e16992443a614d81a7f4186622709971'), ('1060','10551','CISCO-ENTITY-FRU-CONTROL-MIB::cefcFanTrayOperStatus','aadba98c69b14fbab88e7c37cab158c6'), ('1061','10551','CISCO-ENTITY-FRU-CONTROL-MIB::cefcFRUPowerOperStatus','166e0ff278184ab7b574833bb0dbaec1'), ('1062','10551','CISCO-ENTITY-SENSOR-MIB::entSensorStatus','2c29188a8b70409eb9735be0caab0393'), ('1063','10551','EtherLike-MIB::dot3StatsDuplexStatus','feee58fb80214a779f809b5b5ea098d4'), ('1064','10551','IF-MIB::ifOperStatus','29398bbb22bd4743944d117f17973bcb'), ('1065','10551','IF-MIB::ifType','dc2b653516504e14a19afc2d2d9f6ef1'), ('1066','10551','Service state','e523e2589daf46be96abf630047538cd'), ('1067','10551','zabbix.host.available','7b2dabb391bf41d1ab5084248e77efed'), ('1068','10552','Control-M service status','54213ae65be64878988c9145d8ae86e4'), ('1069','10553','Control-M agent status','55b997715e1e4a4cb5272874b975b43a'), ('1070','10553','Control-M job status','14b119c7f4a940ea91a8df8c4b114eca'), ('1071','10553','Control-M job type','d6b4e3c8d5934bf08aeb19c8a2f52de4'), ('1072','10553','Control-M server status','f0e3072f0cc44236802ea58f13ebb3ae'), ('1073','10553','Control-M true-false','37a4770c51184c5e9a8d1306625babf3'), ('1074','10557','Azure resource health state','6f9c01899d9e45c9a1316ee081718e9e'), ('1075','10558','Azure resource health state','c87b2eaeb88c4932ad63c73fcafa5331'), ('1076','10561','zabbix.host.available','0d5e922550954e6bad89b22f1d9d0c65'), ('1077','10561','Zabbix agent ping status','e5a39fd666b04b70b6eea53e2373b564'), ('1078','10562','zabbix.host.active_agent.available','9f93aabb08794395b1c62cf784fc58c3'), ('1079','10562','Zabbix agent ping status','9bf3eef7e8d8402ca6f826b377ea2db6'), ('1080','10563','Service state','1817725a41454fd3b9ad22feaf889fc5'), ('1081','10563','zabbix.host.available','ced60845a741400390ba002e69e26b0f'), ('1082','10564','Service state','bdb5d65d925542eaa61c302dc40fbfe8'), ('1083','10318','Docker container health state','bec7f850ca6a477fbaa6c409d971259f'), ('1084','10318','Docker date format','2465e37ba23f4a7cb895835d8cf94737'), ('1085','10510','PV and PVC status phases','f5aa4a786972420b859029116aac8a2f'), ('1086','10571','Database availability','d2aa57a09cbb43e8b53b11316193f013'), ('1087','10571','Instance state','1c26d58d111b4689a2e7acd23a38f1ca'), ('1088','10573','Database availability','8aa36f0f6a0b42a3b5e0eabfb700e8db'), ('1089','10573','Instance state','9adad9dad34646d79bcc6c414ddf8afe'), ('1090','10574','Replication state','ea83090a16d94eb3bb643009c784d820'), ('1091','10574','Thread state','b1acfa66a401499cae56777db6c7750b'), ('1092','10575','Database availability','c783556dfa214e73b676ca187648c5df'), ('1093','10575','Instance state','bc3b08ca201d438689678a29e3575823'), ('1094','10576','Replication state','af111e6b9e5a47cd9c3933b8ce35076c'), ('1095','10577','Instance state','d5f19327f8b74b44a40950d9d4f9410f'), ('1096','10577','Integrity validation status','1e17bce361f9486dae764fc195561703'), ('1097','10329','PostgreSQL checksum failure status','cd2d975b0d7e4f8e89afb1033fce4ce2'), ('1098','10583','Alarm state','6b0f40b56f1c49f0beb66ffb85009c15'), ('1099','10583','CPU Reserved','bb1024c6e5a14c05a8a91ea36aff6d99'), ('1100','10584','Alarm state','2de56a6f2b004624976a39e7b58ea193'), ('1101','10584','CPU Reserved','e49859d7e9b1494181dec88a386b4bb2'), ('1102','10587','Availability zone state','b5d0c4e859eb4b2d854f551e3d8aeff5'), ('1103','10587','Compute service disabling reason','1073ca0bea3f46ebbfbcaba628484be8'), ('1104','10587','General state','a497438c723f4be88f452af2e8627613'), ('1105','10587','General status','c8109a75cda24fe1afec8ea68686cdb0'), ('1106','10587','Server status','375a709551d84ba3b0d4f24b6e0bd291'), ('1107','10329','Service state','6619a58602a44e83950d3d4b5180c0e9'), ('1108','10589','PostgreSQL recovery role','6e5062ae5345454f95cb8608b35eddf4'), ('1109','10589','PostgreSQL replication status','75393338fb514612a5f0ba57cec318b3'), ('1110','10589','Service state','f2af00a32d1e471a98b9e4e6148f68f3'), ('1111','10591','Admin status','ac1ad6688715425b8d6d0ac3c7e72b14'), ('1112','10591','Device state','7de6a0190832425a9b05d9740a6495c6'), ('1113','10591','Not used','a8fdd703646d4f3bb5c3ac7b39fd65da'), ('1114','10591','Operational status','a563ee950d954a3086170c5de9cabf71'), ('1115','10591','Reachability status','93bca94da129493ebfd4e7a9f833bdf8'), ('1116','10591','Unknown','fe4450cc25624972b754d834f369e7fc'), ('1117','10591','Validity status','7ab3966394504fb6a55c3247f4754729'), ('1118','10595','Detection state','766a3c43981147bf85e9e157eb69c510'), ('1119','10595','Driver state','c202a63acca7407bb6d61bf631696691'), ('1120','10595','Service state','40e17de6519d44bb80b4566e0569c31b'), ('1121','10596','Autopilot state','9898b464447240919cf8e25016be687f'), ('1122','10596','Cluster role','fe32599dc75c48f6ab0887652ceb728c'), ('1123','10596','Service state','b90612059a164f3fa0c7ab871afa0c59'), ('1124','10600','Alert severity','0c425866d0ce4412a54b66f215df4cde'), ('1125','10600','CyberFit score','4a5652b3706a45faa2b86ae652425692'), ('1126','10600','True false','df45c606a7ef4f49a3101ad135eef1bc'), ('1127','10602','Last activity','19c5ab8f192d42f4bd35a969bef3c9d6'), ('1128','10602','Quota type','18f5c94273b24b88a96bdf9d01b8d63b'), ('1129','10602','User status','3265bb49d935495abbcf8b24fbe8ed91'), ('1130','10603','Firewall policy action','8b0c51b152b04ba690cd13e43a2c90d9'), ('1131','10603','Firewall policy status','2285b34278df448ab2ba2276913c0b77'), ('1132','10603','Interface status','7aa1df8cbdda4d3aa5bad0af95733a06'), ('1133','10603','Interface type','6d6a2211c6e64ecfb00838886750912b'), ('1134','10603','License status','0e225b17b2e543f18fea31366d9b6286'), ('1135','10603','Link state','76ac7f91b2184689b19dc838cde49ade'), ('1136','10603','Service state','176db78d3aa34c92893300d56eda5737'), ('1137','10603','Service status','3b62f79c5a664465897a372e833af713'), ('1138','10604','Interface status','3ba88094988045799337ddb456936f15'), ('1139','10604','Interface type','61e451f29c9943cf81ed2647166d664f'), ('1140','10604','Service state','398df996f3474f2abdd26d52d5c83dd5'), ('1141','10604','Host availability status','01c410206d2c4754bcaa0dbcbeacade1'), ('1142','10548','Boolean format','ec79f04ded684421b644b38500fe8b26'), ('1143','10548','License statuses','ba834580763b481a8800a0323fa61327'), ('1144','10510','Build status phases','a315a447059e49f9bc0c3e2e9964696f'), ('1145','10048','Proxy buffer mode','10388a0c06864ac483377f4ad3a91854'), ('1146','10262','Proxy buffer mode','70f06f62852c428b94f1f2447d58a6c8'), ('1147','10605','Computer system type','724ed4e07ca34bf594719298055a0837'), ('1148','10605','Drive status','dacd46f1412e4ce2adfa0d938ebbc952'), ('1149','10605','Manager type','30627d058a064666b08c0bbdacd75fe3'), ('1150','10605','Media type','aecddd070d53474eaca622da04842d53'), ('1151','10605','RAID level','0aab2ac5ea59435280e84683bc852d32'), ('1152','10605','Redfish health state','267eae89956048769dcf6eb015b921ba'), ('1153','10327','MSSQL Quorum members state','1454643e9cad46f8953f4c054509151c'), ('1154','10327','MSSQL Quorum members type','caa789916da048c691f8eef5a71a856e'), ('1155','10327','MSSQL Quorum state','23c9fede4c9a4a21854b3fc83de459a7'), ('1156','10327','MSSQL Quorum type','fbf296f404ad45d5b02e3c20104b9b9e'), ('1157','10327','MSSQL Recovery model','f59af5b534994dccaebb4afc3266520b'), ('1158','10607','Alarm state','4bb749152d5d452ead36c5a98c3cac16'), ('1159','10609','MSSQL - Yes / No','0d7dbd62613540cc8dd70d2f0ec76db6'), ('1160','10609','MSSQL AG Connected state','1f962ea838d640d5905ae14d66826239'), ('1161','10609','MSSQL AG Join state','034a175b7fba4e4d8e85806c8f801f18'), ('1162','10609','MSSQL AG Operational state','fbbaea2f75f94b7ba0bb2ed2756e2593'), ('1163','10609','MSSQL AG Recovery health','c90a7f77957a40c8bb6c9370ff1f63d1'), ('1164','10609','MSSQL AG Role','b07e0cd2c7fd4411b16305141058c9d7'), ('1165','10609','MSSQL AG Synchronization health','dd1d46bfb14946769dc929ae1947a328'), ('1166','10609','MSSQL DB state','eeca1ed2c3cb4624b045b9ba0007f1a6'), ('1167','10609','MSSQL Job Run Status','bc4b734c0c3e4f508323a8880a9b27db'), ('1168','10609','MSSQL Mirroring Role','09480e835f474f22ba463b7c6b486de1'), ('1169','10609','MSSQL Mirroring State','6fd710f80063456483f47dab9fdab3c3'), ('1170','10609','MSSQL Quorum members state','300744b8bf494bc09cae58f1366e8043'), ('1171','10609','MSSQL Quorum members type','38b1c1c9183f450cb3256fefaa8ae24a'), ('1172','10609','MSSQL Quorum state','047cb848051f4e85a1f45664fd51255b'), ('1173','10609','MSSQL Quorum type','2697dc5e3d5e462aac7951844a9fa76c'), ('1174','10609','MSSQL Recovery model','1002338ba75c49f89ce5c27872818ff3'), ('1175','10609','MSSQL Safety level','8800c652dc154231b40e996b39c7c2dd'), ('1176','10609','MSSQL Witness state','0be116423b4949959053d581cafa096c'), ('1177','10609','Service state','faafc4168c5a4eb09d20ab4168fbbc9e'), ('1178','10611','YugabyteDB Bool status','8bac0bddc0f144aa901cd15d9cfd0825'), ('1179','10611','YugabyteDB Cluster state','7d6fa95c4346489fae2cdefa436bc9b6'), ('1180','10611','YugabyteDB Cluster type','10b748dae0334399a004e0e412682ccb'), ('1181','10611','YugabyteDB Health state','73aa9e520a2d491c883f7e65b6187fd2'), ('1182','10611','YugabyteDB Keyspace type','8d5264a7981d4e39bab56d4241dda9f3'), ('1183','10611','YugabyteDB Node status','63244be33897496d8f9599aca76e34e1'), ('1184','10613','FanSensor Status','6a115abb186b4f9fa22477c858d60c9e'), ('1185','10613','Firewall SIC Trust State','77983c82abc44f418cacaf98c57be31a'), ('1186','10613','Interface Status','863e809ef63b47168e97c3ea34095503'), ('1187','10613','Interface Type','e2ed7260bd594394b85cb5f803c9d47a'), ('1188','10613','PSU Status','24c77b8db1e44ffd8dbb3547c9140326'), ('1189','10613','Service state','9bef9869d1b94f78b4a5388d34f84a47'), ('1190','10613','VPN Link Priority','4e09769502b84240aff18a24b17f57e0'), ('1191','10613','VPN Peer Type','60597b4621df494fa8e69b7eb2806f4a'), ('1192','10613','VPN Probing State','02a3a896c3a14a23bc882657a8e72c0a'), ('1193','10613','VPN Status','673a59778998478e8752726f1d7cf5c2'), ('1194','10613','VPN Tunnel Type','6109e694ded24bb5a6042805e0e5bda5'), ('1195','10613','Zabbix host available','acb530d7d3ef431f98748e928a088ecb'), ('1196','10614','Autonomous database state','e336c0d4e22f4f9f9c42d6de65fed068'), ('1197','10614','Database availability','3b30e8a71ef342e78f9f29243aafd992'), ('1198','10615','Block volume state','780a56fd95474839943cbd2f8be2fc18'), ('1199','10616','Boot volume state','d881a2a2bedc4556a36f3d676ece0456'), ('1200','10618','Compute instance availability','9e238671edca4ed7b58eefacc861a77d'), ('1201','10618','Compute instance state','c336821eced54261afb0d10a0de6601d'), ('1202','10618','Generic Bool','dce0b4413ede4dbca55f89cbc86736b3'), ('1203','10618','VNIC attachment state','8fdcb86d1dde4d2489239dd61fbd8b08'), ('1204','10619','Lifecycle state','abf7b45647ee4a339df92bf06b12f0df'), ('1205','10604','HA load-balancing schedule','a7e08ed8bf9d4372b60dd44157ed8dc3'), ('1206','10604','HA option status','e90736cde03046dd87f6532af522bd03'), ('1207','10604','HA sync status','1ff2500e234e46fdb532de670a5f2aea'), ('1208','10604','HA system mode','65bdbcdc23994f2a8944f5c69a9b061a'), ('1209','10604','Health check state','7099e2e064d34d32b4a6f96a10798124'), ('1210','10604','IP Address type','8aa46ac9d6c44ffe8213c8f09a42eb50'), ('1211','10604','Option state','ba3b57b54fb44466aca78692ba3dda97'), ('1212','10604','Sensor alert status','c41154255ef34d65bc0636bef7fe0bfa'), ('1213','10604','VDOM HA state','a0ba5fd924d8458d9be8e70db252277d'), ('1214','10604','VDOM operation mode','b0decb11dd494681b813bc4bd03a6b1a'), ('1215','10604','VPN status','44e1f0b6062c414a8252fe34bad1987c'), ('1216','10604','Wireless admin status','08690a78109441c78c8f5bafae3cd3a4'), ('1217','10604','Wireless band type','a5a52ea3f94242eba7220554244ce63a'), ('1218','10604','Wireless connection status','40c5ac1ba5034b5490faa930ee7ed331'), ('1220','10627','Alarm state','e0e5308401bd4abfa79ba604c0481d2a'), ('1221','10629','Connection availability','6d06a74d603f4ffd8540c8b87f910c7e'), ('1222','10629','Limit mapping','ae5cd12f5e3f4da7aab84db686771cb1'), ('1223','10629','Mail sender','c5e16a1b701e429e8eff56c598530d60'), ('1224','10630','Azure resource health state','fc7ca60876144ac8b240db81537920a6'), ('1225','10632','Alarm state','a61fdde5c78748339a903f1224524deb'), ('1226','10634','Boolean','21844e435a364b2f92d675f0967e115a'), ('1227','10634','Workflow run conclusion','9175771d066042c49ac1583c0e8689c6'), ('1228','10634','Workflow run status','9b86b16774094f5e9c06286b27f6f440'), ('1229','10635','Services health status','cb431f0185884aabae7d46890926e724'), ('1230','10173','VMware Overall Health VC State','7e24ccef9d754cb4805df5b1f27f4ef4'), ('1231','10174','VMware Consolidation','be14ef9303f040859e6edbb13d9b64c5'), ('1232','10174','VMware Tools status','64586743ecc74b5a8b7b849cd4521f48'), ('1233','10174','VMware Virtual Machine state','68d712e1c43c4e2d84619c9fcb965919'), ('1234','10175','VMware Connection state','66bedf62dffd4402a037a6ef0f93f228'), ('1235','10366','VMware Overall Health VC State','30aec8e3198e4b91b1182514be8a8f6b'), ('1236','10047','Proxy group invalid value','8c23fc3b231b439a8eec4d0d60859c90'), ('1237','10047','Proxy group state','acd6475b06334535be452cd984a11f6b'), ('1238','10636','Huawei storage: Controller role','98ea0c82a56a434ea9cd02ddb31eef6a'), ('1239','10636','Huawei storage: Health status','7ef6825cca084ab9a3250448596fac32'), ('1240','10636','Huawei storage: LUN status','654d5d768ff041c6abc0a438be5698f4'), ('1241','10636','Huawei storage: Running status','e03d03289e84401b8c7e2ba1ddc67ba7'), ('1242','10636','Service state','f8cf9fe95cc54dcba96d4bfe8d8ec34b'), ('1243','10636','zabbix.host.available','da38017b841a4c17adff896fe2cbc9fe'), ('1244','10637','Service state','872ac3dadab34de9a69acd71d68cd7ea'), ('1245','10639','Service state','664f36475a624b6bbf6a23c430baaa9b'), ('1246','10640','Nutanix: Alert severity','86e15b9ab1e04285a8db065fbdf6eedf'), ('1247','10640','Nutanix: Alert state','079d797917c64626af20ce86249c2969'), ('1248','10640','Nutanix: Boolean','10ec1428fba54eeaabc6503361090761'), ('1249','10640','Nutanix: Cluster operation mode','537aaf6158724960a2535913030f0138'), ('1250','10641','Nutanix: Alert severity','c2fbc73721564974adb6251fdb372f70'), ('1251','10641','Nutanix: Alert state','7972e3d351f04d1b9cd4b7a542d8a81f'), ('1252','10641','Nutanix: Boolean','20773014179d419cae5306b0370d405c'), ('1253','10641','Nutanix: Degraded state','6e081d8e0e4e43f7914b311ce2925f82'), ('1254','10641','Nutanix: Disk status','1381c5ba61eb4cb89303b6256f81e036'), ('1255','10641','Nutanix: Host state','513019c2559c48cfbc6c801179c4a7ce'), ('1256','10641','Nutanix: Host type','d934bf8ae17c4ed78a439b92cf2f7bef'), ('1257','10641','Nutanix: Maintenance mode','1ee8073575c842269be02dd94211c22c'), ('1258','10645','Service state','a4bc71640e694328a20fe200c7c5fece'), ('1259','10646','Service state','3592fb0098304d86ab35a6a86aa95ec5'), ('1260','10647','Service state','53bef1cc5ae849e4845ffdd0dd6bcc6a'), ('1261','10648','PostgreSQL checksum failure status','9b9961c136c4426bb6d11c749cbb4cfa'), ('1262','10648','PostgreSQL recovery role','bf1b2c09ce844d9c8b2735901fe77a03'), ('1263','10648','PostgreSQL replication status','ee126cb6f7e14a93ae1e21106ee8732f'), ('1264','10648','Service state','e11dca50f6e4481fa1fda75aeb71cf8c'), ('1265','10649','PostgreSQL recovery role','6337031a50574f65aec828b7dd48beaf'), ('1266','10649','PostgreSQL replication status','0e115837e8c54923ad10a9b7adcda3dd'), ('1267','10649','Service state','5bc68afd88094e0fb14572246050181f'), ('1268','10650','BGP4-V2-MIB-JUNIPER::jnxBgpM2PeerState','3b94e9f3175c4822b93682636e5cf64d'), ('1269','10650','BGP4-V2-MIB-JUNIPER::jnxBgpM2PeerStatus','6a57534ae79048229a3ed10f9f0a52e4'), ('1270','10650','EtherLike-MIB::dot3StatsDuplexStatus','aba24883ea0f4a569748153eb554443a'), ('1271','10650','IF-MIB::ifOperStatus','93ba7232ec5d47db9478d91b6bdfd01b'), ('1272','10650','IF-MIB::ifType','ecb1a90bea804c79aa074876a95397ae'), ('1273','10650','JUNIPER-MIB::jnxOperatingState','71aa874db0c647f2ab6b6f6ed741efa3'), ('1274','10650','JUNIPER-MIB::jnxRedundancyState','0432e6064cae4a22bdd512d0c8900f35'), ('1275','10650','JUNIPER-MIB::jnxRedundancySwitchoverReason','742e0675e0b84ba685b1b06172334215'), ('1276','10650','OSPF-MIB::ospfNbrHelloSuppressed','5d007beac7eb4743ab241d6a1c80847a'), ('1277','10650','OSPF-MIB::ospfNbrState','ed5b11312aaf44e0b888c58743e89f81'), ('1278','10650','Service state','1373262e914a430abe52ec79d2fc138b'), ('1279','10650','zabbix.host.available','bcba269d955b452d87a6f49f7a35ed2a'), ('1280','10651','Azure resource health state','9bb00a69069d4c22a0b75b745da0de73'), ('1281','10651','Azure SQL instance provisioning state','aae2eec109b649d38e80684cdeb9458c'), ('1282','10653','BGP peer status','8f6bef0b83a440ec9e54676840809c47'), ('1283','10653','Boolean','75f5d630b1b74c7c8233b44422bba5eb'), ('1284','10653','HA mode','1ce2f4a43b274e719e9e44d24cb826bd'), ('1285','10653','HA state','3148f488405c4c3a8ca055891550bda1'), ('1286','10654','Network interface status','122afb9826d4493aa319b67025bd5e74'), ('1287','10654','Redfish API availability','2cfad557b52d49f7a56f84323c7b098a'), ('1288','10654','Redfish status health','0b3b101349fa4b4d94983d7fdae83679'), ('1289','10654','Redfish status state','e9e6e46c13fe4bd0a29b65cad929c6bc'), ('1290','10654','Virtual disk RAID status','29051e06a48b444a8ee285cd185ae04f'), ('1291','10654','Virtual disk read policy','ac7f30cf50cb459aaa41103c8fa6df1c'), ('1292','10654','Virtual disk write policy','39e0e7ddc8fd459e90fdb247caee7512'), ('1293','10655','IDRAC-MIB-SMIv2::batteryState','ffad2b2a57364726ba31cfc89f363e2b'), ('1294','10655','IDRAC-MIB-SMIv2::BooleanType','053a4a529ddf4bc7b1971958e4dce5c9'), ('1295','10655','IDRAC-MIB-SMIv2::NetworkDeviceConnectionStatusEnum','2216bf2485f548be90060048eec6547d'), ('1296','10655','IDRAC-MIB-SMIv2::ObjectStatusEnum','58480240826e49b09bf73f682f252148'), ('1297','10655','IDRAC-MIB-SMIv2::physicalDiskComponentStatus','e44bc856e8d449f9a288b614b7d6a143'), ('1298','10655','IDRAC-MIB-SMIv2::physicalDiskMediaType','e17dbbe344994170afa47b3d76b393f8'), ('1299','10655','IDRAC-MIB-SMIv2::ProcessorDeviceStatusReadingFlags','c9543b611d434fba99d4be3614813419'), ('1300','10655','IDRAC-MIB-SMIv2::StatusProbeEnum','d2f5ad57814e4c3ab8f1e7b1fa076557'), ('1301','10655','IDRAC-MIB-SMIv2::virtualDiskLayout','70851c009b4d4f0484f3bb955558c1db'), ('1302','10655','IDRAC-MIB-SMIv2::virtualDiskOperationalState','160204c8609542038d31357ce58424df'), ('1303','10655','IDRAC-MIB-SMIv2::virtualDiskReadPolicy','c1686f5a938f4dac977d55517687358e'), ('1304','10655','IDRAC-MIB-SMIv2::virtualDiskState','1c3e3bcf7ff14f59ac24f9d62f6671af'), ('1305','10655','IDRAC-MIB-SMIv2::virtualDiskWritePolicy','0a940bdd7900425b941e11e486e70c8a'), ('1306','10655','zabbix.host.available','20182c95fb0e494a826a7ae3f932127b'), ('1307','10435','Network interface status','623bbf13357f4b22a4030c813437db18'), ('1308','10435','Redfish API availability','8be2ad02ae4c4836bc21816e89a906ac'), ('1309','10435','Redfish status health','32fa026175444306b08fe3cf6618a98a'), ('1310','10435','Redfish status state','b30ec1c62a124a48ac129e6065d3180d'), ('1311','10435','Virtual disk RAID status','a63d06ed53ac4f3fb07a7e584301f34a'), ('1312','10435','Virtual disk read policy','3e1d1bf56dd841c7bdc9679ff8e24748'), ('1313','10435','Virtual disk write policy','c11a3e902ef248a5a1a77af824b43252'), ('1314','10436','IDRAC-MIB-SMIv2::NetworkDeviceConnectionStatusEnum','d731845914484868bbcb3c3e5b9d7707'), ('1315','10436','IDRAC-MIB-SMIv2::ProcessorDeviceStatusReadingFlags','4b8e905e42a94f8ebb9a9a4b2648ed84'), ('1316','10437','Network interface status','14d13bad8ac34a8987c178a3ab12bcd1'), ('1317','10437','Redfish API availability','c38ce461129d4d338847d86a5e051d09'), ('1318','10437','Redfish status health','8074a7bb6e304adc8945bbeffab84ca6'), ('1319','10437','Redfish status state','417f088da9f34fd9b0f75769a44cc126'), ('1320','10437','Virtual disk RAID status','78b955ca37dd4d3da9230b7263694206'), ('1321','10437','Virtual disk read policy','90bf833092b8409a818439b6a2eb9fbe'), ('1322','10437','Virtual disk write policy','a261537c3f7e4dd3a14ba4bad0c930dd'), ('1323','10438','IDRAC-MIB-SMIv2::NetworkDeviceConnectionStatusEnum','9dbe9b652e7746229cf5ef744a67c566'), ('1324','10438','IDRAC-MIB-SMIv2::ProcessorDeviceStatusReadingFlags','1c683fea74b645ed9f42d8fcd6edf442'), ('1325','10656','Network interface status','56fb82a2303e451b9a585687a0902794'), ('1326','10656','Redfish API availability','c1074235685c4d2096c30a3ab686634e'), ('1327','10656','Redfish status health','a5e2bf8ce89a482aa87ccccbf01cb1cd'), ('1328','10656','Redfish status state','c295caa412b74acb918176f8d4543010'), ('1329','10656','Virtual disk RAID status','d88a53d7143a49dfb37057f9d80ed48a'), ('1330','10656','Virtual disk read policy','46520ef5e9e544c4a4393bd6a2ed4548'), ('1331','10656','Virtual disk write policy','6c17f062dc8e4f7cb2362adcffbe11c5'), ('1332','10657','IDRAC-MIB-SMIv2::batteryState','44ae746465504433b126a6ad47867539'), ('1333','10657','IDRAC-MIB-SMIv2::BooleanType','540df39092da4d0ba419d9225b6855e5'), ('1334','10657','IDRAC-MIB-SMIv2::NetworkDeviceConnectionStatusEnum','bcd3842a7f14414786e7e893bf18033f'), ('1335','10657','IDRAC-MIB-SMIv2::ObjectStatusEnum','0e8b14fc00af4ec1b098b1dad64bbf12'), ('1336','10657','IDRAC-MIB-SMIv2::physicalDiskComponentStatus','7c02091fa34847cb8571066c5f1ccfd3'), ('1337','10657','IDRAC-MIB-SMIv2::physicalDiskMediaType','a0c2ee107bc24efba036b01f8aa16c03'), ('1338','10657','IDRAC-MIB-SMIv2::ProcessorDeviceStatusReadingFlags','b7f4bdede53e44ada2841fb5d39793db'), ('1339','10657','IDRAC-MIB-SMIv2::StatusProbeEnum','1b7e62b02f6d4b9aad5e81de0792037e'), ('1340','10657','IDRAC-MIB-SMIv2::virtualDiskLayout','f3ed0698bf4448ad9927f193aa804365'), ('1341','10657','IDRAC-MIB-SMIv2::virtualDiskOperationalState','5e0085d3c952446a8fb9603b074d720f'), ('1342','10657','IDRAC-MIB-SMIv2::virtualDiskReadPolicy','65fbf402163e494aa59a7dc814a038f9'), ('1343','10657','IDRAC-MIB-SMIv2::virtualDiskState','ce091236ac5c461da03712a39e97676b'), ('1344','10657','IDRAC-MIB-SMIv2::virtualDiskWritePolicy','d30e0073fbab42ecbb1c4ab74ad1f991'), ('1345','10657','zabbix.host.available','f5c3e47da21c4fd8ac4fd2c079ebd28b'), ('1346','10439','Network interface status','a9fd1db9128d4efca329941ff4f4d41b'), ('1347','10439','Redfish API availability','45c31886b41f4592bb87ffe940ce9fd8'), ('1348','10439','Redfish status health','e8d3f0814cad4a2bba79231c1c8c0230'), ('1349','10439','Redfish status state','d18e6f1b160f4ee3851b21cff3309d40'), ('1350','10439','Virtual disk RAID status','82e0dc0cd4714fb1b3894adff630b0d8'), ('1351','10439','Virtual disk read policy','3c9e776333294c79a975b715fab7a35d'), ('1352','10439','Virtual disk write policy','916622b4d50b4304b95888c9fc49149e'), ('1353','10440','IDRAC-MIB-SMIv2::NetworkDeviceConnectionStatusEnum','8a60520959be4ec5aa525f637beb8472'), ('1354','10440','IDRAC-MIB-SMIv2::ProcessorDeviceStatusReadingFlags','7ad96a534bc84f32afd6ae59011db2a0'), ('1355','10441','Network interface status','4cb6f9b8048a4109849a7f12bf0aba1c'), ('1356','10441','Redfish API availability','dfee913787ba42e49a11dae28d1a603f'), ('1357','10441','Redfish status health','5b5774ab04ec4f3eaf1e528ad02e0978'), ('1358','10441','Redfish status state','f73f21dc4f964efeb4f54f8565d4cd58'), ('1359','10441','Virtual disk RAID status','865251146a524335be8ec054d8df15aa'), ('1360','10441','Virtual disk read policy','b37b8981282944348ab2748fb09d55f4'), ('1361','10441','Virtual disk write policy','ccdd0a176df640e09b95837aba7580f1'), ('1362','10442','IDRAC-MIB-SMIv2::NetworkDeviceConnectionStatusEnum','a866da3a7c4e43d086efafb07178f8ec'), ('1363','10442','IDRAC-MIB-SMIv2::ProcessorDeviceStatusReadingFlags','092b816c537e4fe79c7f5826037c5872'), ('1364','10255','IDRAC-MIB-SMIv2::NetworkDeviceConnectionStatusEnum','0f2ef2e7ca5540fbbbdaa3e51acff0e1'), ('1365','10255','IDRAC-MIB-SMIv2::ProcessorDeviceStatusReadingFlags','c2a88e35b99c4c9d8b369a6edce17b3c'), ('1366','10255','IDRAC-MIB-SMIv2::virtualDiskReadPolicy','25c91adad83c46d48a8308b2e6273666'), ('1367','10262','Zabbix proxy check','d9fa93ed96d1497c9049f8f30267e9ed'), ('1368','10048','Zabbix proxy check','f9f6987645b341b68ba5449c9b741459'), ('1369','10658','Proxy buffer mode','22c73bf5429d4e9baf358fe6c177a033'), ('1370','10658','Zabbix proxy check','942633fa91474837afc5ce050cb86cb4'), ('1371','10659','Proxy buffer mode','550df0eb013b4103ad00dc3cc478189d'), ('1372','10659','Zabbix proxy check','c5cae9ab19384c9f85fe31f7e22ab8c7'), ('1373','10261','Zabbix server check','4eaa5f12801d43d9a5cfa2bca736ccc3'), ('1374','10047','Zabbix server check','9b8fe61b528547f49598075e79fb6623'), ('1375','10660','Cluster node status','c9ec732079f64b5d9e8d4b7c628580e3'), ('1376','10660','Compatibility','ee5e7ff1e0e041eca7483ea45213d3a5'), ('1377','10660','Last seen','edc03d2774094cfcb20afbe8476c85fb'), ('1378','10660','Proxy mode','7247343b21ed4fd4823f9148a3245805'), ('1379','10660','Service state','253052f6133b498eb7248bc3d66fa18e'), ('1380','10660','Value cache operating mode','cfe65eb3384047dfaf31a8d4b09c4de1'), ('1381','10660','Zabbix server check','bf89fa6047464f668db6b324abf0cc3e'), ('1382','10661','Cluster node status','f1f6de972fbc4675bee0426bcb15838c'), ('1383','10661','Compatibility','2e74275424ff4939a9f1a02424fcb42e'), ('1384','10661','Last seen','2e9f0571bae14b6485ae5cb79f2cb3b3'), ('1385','10661','Proxy mode','ae285f32e1884d75bd485ad08106ee9c'), ('1386','10661','Service state','2fa179c8f5f2482ca216270b91896e50'), ('1387','10661','Value cache operating mode','a73ec20cb9e9412296b6d604505376da'), ('1388','10661','Zabbix server check','c2fbdc79f9614caf99aa266087a7317d'), ('1389','10662','Azure resource health state','34874b4cf9cb4ce2863a5698ff308126'), ('1390','10663','Certificate Type','df8766d094be4b5aa569a20e9fc1e552'), ('1391','10663','Connection Status','0e3d616a7682487997fcf4e756bd875a'), ('1392','10663','Controller Mode','2f9f5ae3a2f14408b5fa8c0f82d3d5a6'), ('1393','10663','Controller Status','05c72722f9f9460291f50d3663161716'), ('1394','10663','Drive Status','00a977f4cb4d4962aeae7124e63f460e'), ('1395','10663','Hardware Status','788e2982fbd5478da2a4f94e46031439'), ('1396','10663','Pod Status','950c9c6b81e042938ca464a84a57b662'), ('1397','10663','Service Status','fe5ac2914b2f46fbbd0516e3ee0959bc'), ('1398','10664','Boolean','d2c0016639b2413c85a000746ee56109'), ('1399','10664','Certificate Type','a6f5e4bef3114c4cb08eb4c9e449dfa8'), ('1400','10664','Controller Mode','b6aed58a52b742c680173452935c2bca'), ('1401','10664','Controller Status','f315c5769cbd4eb4ac4721751070d247'), ('1402','10664','Drive Status','ed60650d00594c5c9778501ee06fb648'), ('1403','10664','Hardware Status','92c4cbd25c9f45408aa335aac5bec52a'), ('1404','10664','Pod Status','0142212de71f42bc9f7521447d89ff0c'), ('1405','10664','Service Status','59047ec19a5c4229bce4450f134ac5cc'), ('1406','10665','Azure backup job status','f79314c2d4bb458caf510b85f65cae81'), ('1407','10665','Azure resource health state','7bca76cc48c3468ca67b924f59003e4a'), ('1408','10667','Cisco FTD interface status','b141de8aea904aef8eeb955fe7d09bd6'), ('1409','10667','Cisco FTD process status','2a34dceeb32d44e39be2037a85b9dcb7'), ('1410','10565','Smart self-test','82b0797d499544a4832cda04b163109a'), ('1411','10566','Smart self-test','404d3c19ceef4e8e9c14d5e34bbd2a7b'), ('1412','10668','AWS Backup job state','0296c0c525304ea2ad91070346669b42'), ('1413','10668','AWS Backup vault lock status','b5821fcd5f3444198570b8dfb925ce0a'), ('1414','10668','AWS Backup vault state','d591fd3704ff4fc3a7e5ee6b206190ad'), ('1415','10670','Fan status','0d0532eebc294155a25733c1b7fe7ba1'), ('1416','10670','IF-MIB::ifOperStatus','42f606a7537849878b1090e7085add48'), ('1417','10670','IF-MIB::ifType','0c9ae7b0f91c40afbb1fc35a3e33052a'), ('1418','10670','OSPF area auth type','53bf2bc50e8049049d79fd3e23fa0755'), ('1419','10670','OSPF area status','4f6d5cf1f7ac44509c44cfdd3e21b5e8'), ('1420','10670','OSPF interface admin status','ff8918aafeb7439db7197845b4628a19'), ('1421','10670','OSPF interface state','a2002d515c744e278844803dd3d543e8'), ('1422','10670','OSPF interface status','7cb675b0d69441c9950dcb375ec458a2'), ('1423','10670','OSPF interface type','d69261a6f83c4d31a454b01f101a7c2b'), ('1424','10670','OSPF neighbor state','dc9b1a5f62c147849ff0eea9da891b71'), ('1425','10670','OSPF neighbor status','80a6f0a98231480bb649d030f37bf91e'), ('1426','10670','OSPF translator role','977d715501e74110ad6d5ab308f8dfe7'), ('1427','10670','OSPF translator state','71336b06c8814c5087ebbc891995eb38'), ('1428','10670','Power supply state','8fddba3562234525bec7b05dccbea5db'), ('1429','10670','Service state','797ba226aeaa4bdb96bfe404f3e980d1'), ('1430','10670','zabbix.host.available','b7a8836abbc84e42b2c562ccf4d562e7'), ('1431','10671','IF-MIB::ifOperStatus','0148dfb2980a443dbe2646757115ba4a'), ('1432','10671','IF-MIB::ifType','ce6e6488447a415a8c09869bead48038'), ('1433','10671','Service state','8de09e0fdf2845799e387d182da139c7'), ('1434','10671','WWP-LEOS-CHASSIS-MIB::wwpLeosChassisFanModuleStatus','62614cd4421b45bbbe2e2b06679af929'), ('1435','10671','WWP-LEOS-CHASSIS-MIB::wwpLeosChassisPowerSupplyState','37ba73ce2d34442b93cb781eea12b6e0'), ('1436','10671','zabbix.host.available','e8261a3a0c2f4d69b5be9b070abf9ce9'), ('1437','10672','HOST-RESOURCES-MIB::hrDeviceStatus','0af4bd0246d3414a946fdb800a964a43'), ('1438','10672','Host availability','1d9b43546b654370a6f38ed6fe4d4b43'), ('1439','10672','IF-MIB::ifOperStatus','692e46f1836c4e2682a0dc882fec89a0'), ('1440','10672','IF-MIB::ifType','7a288ac5cdbf429b9d568b12b312ad70'), ('1441','10672','Service state','31a78150623d4ce39a0c98a59bfa5c47'), ('1442','10673','Host availability','1ba10b4dfec646359ae363d8c374667c'), ('1443','10673','Service state','30e84601ccc9488c9f1c81dbf02df4b3'), ('1444','10673','STORMSHIELD-AUTOUPDATE-MIB::snsAutoupdateState','afd4fdd6212547a281a842b806f9b520'), ('1445','10673','STORMSHIELD-HA-MIB::snsHALicence','ee09eb3b1fa049b7bcd9ad51a49d39f4'), ('1446','10673','STORMSHIELD-HA-MIB::snsHAStatusForced','2063c82a4fd54f228655d1c42dd249ce'), ('1447','10673','STORMSHIELD-HA-MIB::snsHASyncStatus','1c7e7fe23de34086b5009a995ee4e71f'), ('1448','10673','STORMSHIELD-HA-MIB::snsOnline','0761fc9c63674cf6914d2d0c36df4391'), ('1449','10673','STORMSHIELD-HEALTH-MONITOR-MIB::*','278a31a580424daebcc73cc0f7f75764'), ('1450','10673','STORMSHIELD-SYSTEM-MONITOR-MIB::snsDiskEntryIsRaid','0c3077b6a7ab46f29226e493fbf7f60a'), ('1451','10673','STORMSHIELD-SYSTEM-MONITOR-MIB::snsDiskEntryRaidStatus','72383baf0804476fb75d1451a344554d'), ('1452','10673','STORMSHIELD-SYSTEM-MONITOR-MIB::snsDiskEntrySmartResult','ac297c469fb348d4ab231e43f935f682'), ('1453','10673','STORMSHIELD-SYSTEM-MONITOR-MIB::snsFanStatus','5ae9550fd2cf4c3f8361ca95b82b3c2f'), ('1454','10673','STORMSHIELD-SYSTEM-MONITOR-MIB::snsPowerSupplyPowered','fc9b6cf135884b0d8dcd4b159304751b'), ('1455','10673','STORMSHIELD-SYSTEM-MONITOR-MIB::snsPowerSupplyStatus','5a30cfb4e78742b0bc421abc334b7953'); INSERT INTO items (itemid,type,snmp_oid,hostid,name,key_,delay,history,trends,status,value_type,trapper_hosts,units,formula,logtimefmt,templateid,valuemapid,params,ipmi_sensor,authtype,username,password,publickey,privatekey,flags,interfaceid,description,inventory_link,lifetime,evaltype,jmx_endpoint,master_itemid,timeout,url,query_fields,posts,status_codes,follow_redirects,post_type,http_proxy,headers,retrieve_mode,request_method,output_format,verify_peer,verify_host,allow_traps,discover,uuid,lifetime_type,enabled_lifetime_type,enabled_lifetime) VALUES ('10061','5','','10047','Number of processed numeric (float) values per second','zabbix[wcache,values,float]','1m','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed numeric (float) values.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','de63f78f36e74361b6c9993d12d8b7c8','0','2','0'), ('10062','5','','10047','Number of processed character values per second','zabbix[wcache,values,str]','1m','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed character values.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b58fdd85cd6a48489d0b983ee8ebe97b','0','2','0'), ('10063','5','','10047','Number of processed log values per second','zabbix[wcache,values,log]','1m','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed log values.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dae76dc6c4ce4707be7cf9534efc0233','0','2','0'), ('10064','5','','10047','Number of processed numeric (unsigned) values per second','zabbix[wcache,values,uint]','1m','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed numeric (unsigned) values.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','47132a8565c943c0abbd4918d6af9339','0','2','0'), ('10065','5','','10047','Number of processed text values per second','zabbix[wcache,values,text]','1m','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed text values.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5397d6d4dedc44c29ff25b8fd5611003','0','2','0'), ('10066','5','','10047','Number of processed not supported values per second','zabbix[wcache,values,not supported]','1m','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of times the item processing resulted in an item becoming unsupported or remaining in that state.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c99a99cf7e1e44918736ab860694d3a4','0','2','0'), ('10067','5','','10048','Number of processed numeric (float) values per second','zabbix[wcache,values,float]','1m','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed numeric (float) values.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ba5efd0ed21d4ac39e1375788b7198de','0','2','0'), ('10068','5','','10048','Number of processed character values per second','zabbix[wcache,values,str]','1m','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed character values.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5f0c3ed0998e499aaa1e4a30726928fc','0','2','0'), ('10069','5','','10048','Number of processed log values per second','zabbix[wcache,values,log]','1m','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed log values.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','47cdd6ef01734ec1ab15b0ab43d147ca','0','2','0'), ('10070','5','','10048','Number of processed numeric (unsigned) values per second','zabbix[wcache,values,uint]','1m','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed numeric (unsigned) values.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8e4b9641b173415c8608ee4863bcd547','0','2','0'), ('10071','5','','10048','Number of processed text values per second','zabbix[wcache,values,text]','1m','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed text values.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1c259b08b3ff445f9b2f24a02c07c5db','0','2','0'), ('10072','5','','10048','Number of processed not supported values per second','zabbix[wcache,values,not supported]','1m','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of times the item processing resulted in an item becoming unsupported or remaining in that state.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','46574db1d70545f6af89e8607d22f5bb','0','2','0'), ('22183','5','','10047','History write cache, % used','zabbix[wcache,history,pused]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The percentage of used history buffer. The history cache is used to store item values. A high number indicates database performance problems.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1ae8253bb4da434da3ea6bcb0352115d','0','2','0'), ('22185','5','','10047','Trend write cache, % used','zabbix[wcache,trend,pused]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The percentage of used trend buffer. The trend cache stores the aggregate of all items that have received data for the current hour.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5cca0fc9878d4e068467d5a3b8558ed5','0','2','0'), ('22187','5','','10047','Number of processed values per second','zabbix[wcache,values]','1m','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The total number of values processed by Zabbix server or Zabbix proxy, except unsupported items.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','db364af6bcb24881850f3979933fccb0','0','2','0'), ('22189','5','','10047','Configuration cache, % used','zabbix[rcache,buffer,pused]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The availability statistics of Zabbix configuration cache. The percentage of used data buffer.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ac2aebc15b084d049538b12e9513c08d','0','2','0'), ('22191','5','','10047','Value cache, % used','zabbix[vcache,buffer,pused]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The availability statistics of Zabbix value cache. The percentage of used data buffer.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','559ca5966e404c948f99cabf7a9077e8','0','2','0'), ('22196','5','','10047','Value cache hits','zabbix[vcache,cache,hits]','1m','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The effectiveness statistics of Zabbix value cache. The number of cache hits (history values taken from the cache).','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','69b14487a9744dbb866f2e6ee131d0e5','0','2','0'), ('22199','5','','10047','Value cache misses','zabbix[vcache,cache,misses]','1m','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The effectiveness statistics of Zabbix value cache. The number of cache misses (history values taken from the database).','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c78439859fd248cdb15e1eee37be2220','0','2','0'), ('22219','5','','10047','Queue over 10 minutes','zabbix[queue,10m]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of monitored items in the queue that are delayed by at least 10 minutes.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2b2f695ed1ef4a7a871c80df9c911e90','0','2','0'), ('22396','5','','10047','History index cache, % used','zabbix[wcache,index,pused]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The percentage of used history index buffer. The history index cache is used to index values stored in the history cache.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9fc7faf5455e4e78bdb1406f947bfa08','0','2','0'), ('22399','5','','10047','Utilization of poller data collector processes, in %','zabbix[process,poller,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the poller processes have been busy for the last minute.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cbec202e15be49de93dc0c5f58824ae3','0','2','0'), ('22400','5','','10047','Utilization of unreachable poller data collector processes, in %','zabbix[process,unreachable poller,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the unreachable poller processes have been busy for the last minute.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4fd24bdb8935435e8617c9607b9c6ca1','0','2','0'), ('22401','5','','10047','Utilization of vmware collector data collector processes, in %','zabbix[process,vmware collector,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the vmware collector processes have been busy for the last minute.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bad00e43cd064a0fb3a4b65b71bea926','0','2','0'), ('22402','5','','10047','Utilization of http poller data collector processes, in %','zabbix[process,http poller,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the http poller processes have been busy for the last minute.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','419e937c4a1d4fa09c4b50ca88cbe3e2','0','2','0'), ('22404','5','','10047','Utilization of trapper data collector processes, in %','zabbix[process,trapper,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the trapper processes have been busy for the last minute.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0dd727eddfaf45a9a819a9d64c5b72c7','0','2','0'), ('22406','5','','10047','Utilization of history syncer internal processes, in %','zabbix[process,history syncer,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the history syncer processes have been busy for the last minute.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4d92eb7b411345cfbd6e2ea2ff5c1788','0','2','0'), ('22408','5','','10047','Utilization of housekeeper internal processes, in %','zabbix[process,housekeeper,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the housekeeper processes have been busy for the last minute.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','23f448b5acba472881857647ca1bb614','0','2','0'), ('22412','5','','10047','Utilization of configuration syncer internal processes, in %','zabbix[process,configuration syncer,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the configuration syncer processes have been busy for the last minute.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','301e7fe93a024444b19766e665e9d156','0','2','0'), ('22414','5','','10047','Utilization of self-monitoring internal processes, in %','zabbix[process,self-monitoring,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the self-monitoring processes have been busy for the last minute.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6fc9c055d4894c19b3b1075db106d995','0','2','0'), ('22416','5','','10047','Utilization of ipmi poller data collector processes, in %','zabbix[process,ipmi poller,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the ipmi poller processes have been busy for the last minute.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c11d415de9c64fd6911f82d49db140d3','0','2','0'), ('22418','5','','10047','Utilization of icmp pinger data collector processes, in %','zabbix[process,icmp pinger,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the icmp pinger processes have been busy for the last minute.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d5d469d5eb2e4e0ca0afc89b603d4065','0','2','0'), ('22420','5','','10047','Utilization of proxy poller data collector processes, in %','zabbix[process,proxy poller,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the proxy poller processes have been busy for the last minute.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','baf22e095078435d978a6c4374500db4','0','2','0'), ('22422','5','','10047','Utilization of escalator internal processes, in %','zabbix[process,escalator,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the escalator processes have been busy for the last minute.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d12ce718fad34644b92d98cf2096e7df','0','2','0'), ('22424','5','','10047','Utilization of alerter internal processes, in %','zabbix[process,alerter,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the alerter processes have been busy for the last minute.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cac7bb12993945fe848df86f7c4502ed','0','2','0'), ('22426','5','','10047','Utilization of timer internal processes, in %','zabbix[process,timer,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the timer processes have been busy for the last minute.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3af0ec03af6542e18aaff505e3806089','0','2','0'), ('22689','5','','10047','Utilization of java poller data collector processes, in %','zabbix[process,java poller,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the java poller processes have been busy for the last minute.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a8168691df3d43f1a1e106062f18ee06','0','2','0'), ('22835','0','','10074','Maximum number of opened files','kernel.maxfiles','1h','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'May be increased by using the `sysctl` utility or modifying the file `/etc/sysctl.conf`.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','56a83dc0e14e47339e13a451adcefef7','0','2','0'), ('22836','0','','10074','Maximum number of processes','kernel.maxproc','1h','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'May be increased by using the `sysctl` utility or modifying the file `/etc/sysctl.conf`.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e55f8256dd2d48fd9e7fd786f872b4bc','0','2','0'), ('22837','0','','10074','Number of running processes','proc.num[,,run]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of processes in a running state.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7f8fdbc74cf14fa2afda3b57c548c751','0','2','0'), ('22838','0','','10074','Number of processes','proc.num[]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of processes in any state.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','966acafb928b43f8a63ee673b1716d28','0','2','0'), ('22839','0','','10074','Host boot time','system.boottime','10m','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4e06c5b504c04c169ea1a0d6a7951eeb','0','2','0'), ('22840','0','','10074','Interrupts per second','system.cpu.intr','1m','31d','365d','0','3','','ips','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of interrupts processed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f6ed0de8cbb545298b174b19938a527e','0','2','0'), ('22841','0','','10074','Processor load (15 min average per core)','system.cpu.load[percpu,avg15]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Calculated as the system CPU load divided by the number of CPU cores.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0403d3b318a649d4aa0da97e18546bcb','0','2','0'), ('22842','0','','10074','Processor load (1 min average per core)','system.cpu.load[percpu,avg1]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Calculated as the system CPU load divided by the number of CPU cores.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7e4eab397cfd43d2a4aef7e2aa8c3a37','0','2','0'), ('22843','0','','10074','Processor load (5 min average per core)','system.cpu.load[percpu,avg5]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Calculated as the system CPU load divided by the number of CPU cores.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','55ad1da5b20c465f8db86701dcf3e974','0','2','0'), ('22844','0','','10074','Context switches per second','system.cpu.switches','1m','31d','365d','0','3','','sps','','',NULL,NULL,'','','0','','','','','0',NULL,'The combined rate at which all processors on the computer are switched from one thread to another.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2226fac821fe4928a9d727770e0af4d0','0','2','0'), ('22845','0','','10074','CPU idle time','system.cpu.util[,idle]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has spent doing nothing.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4689c51946c845e5b31cb7ca5b58fbe3','0','2','0'), ('22846','0','','10074','CPU interrupt time','system.cpu.util[,interrupt]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has spent servicing hardware interrupts.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ad032417f6de4e03a4f956bea65d8ce0','0','2','0'), ('22848','0','','10074','CPU nice time','system.cpu.util[,nice]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has spent running users'' processes that have been niced.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','84030949a4d545b59db4aa3b38402174','0','2','0'), ('22851','0','','10074','CPU system time','system.cpu.util[,system]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has spent running the kernel and its processes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','63121eb34bc94eeabd7352992b67befb','0','2','0'), ('22852','0','','10074','CPU user time','system.cpu.util[,user]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has spent running users'' processes that are not niced.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c9adb1a7c2fd4db9b176f9008483f2d7','0','2','0'), ('22853','0','','10074','Host name','system.hostname','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The host name of the system.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a80cd7ca70954cd1b6b89a686f642b9d','0','2','0'), ('22854','0','','10074','Host local time','system.localtime','1m','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'The local system time of the host.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cfff34f2374c410492b89cce1c6b5198','0','2','0'), ('22855','0','','10074','Free swap space','system.swap.size[,free]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The free space of the swap volume/file expressed in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e758448d5ec242e6a7a17f67c8f62874','0','2','0'), ('22856','0','','10074','Free swap space in %','system.swap.size[,pfree]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The free space of the swap volume/file expressed in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','43648a7f2c79443781a0ad500e7a9e6c','0','2','0'), ('22857','0','','10074','Total swap space','system.swap.size[,total]','1h','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total space of the swap volume/file expressed in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','61f33f0c3e35499b999626058048ec66','0','2','0'), ('22858','0','','10074','System information','system.uname','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Information as normally returned by `uname -a`.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b19974c64b4141c2aca0e997b03c2f0a','0','2','0'), ('22859','0','','10074','System uptime','system.uptime','10m','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d14bcdc15cc24f90baea06a13077a54f','0','2','0'), ('22860','0','','10074','Number of logged in users','system.users.num','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of users who are currently logged in.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','165a44bf3b9d49378e500acb90aa7957','0','2','0'), ('22861','0','','10074','Checksum of /etc/passwd','vfs.file.cksum[/etc/passwd,sha256]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f11f6e3539a244409f1c72dbd6f16b76','0','2','0'), ('22862','0','','10074','Available memory','vm.memory.size[available]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Defined as free + cached + buffers.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5b6c92c92e434dff8ce19e28b3ba785e','0','2','0'), ('22863','0','','10074','Total memory','vm.memory.size[total]','1h','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total memory expressed in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b32320608732421fac18437006bc1874','0','2','0'), ('22875','0','','10075','Maximum number of opened files','kernel.maxfiles','1h','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'May be increased by using the `sysctl` utility or modifying the file `/etc/sysctl.conf`.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d1b2d3cc2b7e44af8f9bfee11e04bf21','0','2','0'), ('22876','0','','10075','Maximum number of processes','kernel.maxproc','1h','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'May be increased by using the `sysctl` utility or modifying the file `/etc/sysctl.conf`.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','58244a8e72694ffcbba5a78a910ae818','0','2','0'), ('22877','0','','10075','Number of running processes','proc.num[,,run]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of processes in a running state.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','448c6de07b244281a4b1defe2e811773','0','2','0'), ('22878','0','','10075','Number of processes','proc.num[]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of processes in any state.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5fd5b351d8214eac8f4f4649594c27eb','0','2','0'), ('22879','0','','10075','Host boot time','system.boottime','10m','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4a533b30c43e42fb8c9eabada0817186','0','2','0'), ('22880','0','','10075','Interrupts per second','system.cpu.intr','1m','31d','365d','0','3','','ips','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of interrupts processed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','db555e8318cf4e7aa7beb85aa0250697','0','2','0'), ('22881','0','','10075','Processor load (15 min average per core)','system.cpu.load[percpu,avg15]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Calculated as the system CPU load divided by the number of CPU cores.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ad9ebf859f7346ca885c1edcb7333d78','0','2','0'), ('22882','0','','10075','Processor load (1 min average per core)','system.cpu.load[percpu,avg1]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Calculated as the system CPU load divided by the number of CPU cores.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2336b2ec03a846f3bed1e64384b2532e','0','2','0'), ('22883','0','','10075','Processor load (5 min average per core)','system.cpu.load[percpu,avg5]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Calculated as the system CPU load divided by the number of CPU cores.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','de68f40fc96648c0925c1f6a4ca6776e','0','2','0'), ('22884','0','','10075','Context switches per second','system.cpu.switches','1m','31d','365d','0','3','','sps','','',NULL,NULL,'','','0','','','','','0',NULL,'The combined rate at which all processors on the computer are switched from one thread to another.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0a140185a5114dd29451bfac68abdde5','0','2','0'), ('22885','0','','10075','CPU idle time','system.cpu.util[,idle]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has spent doing nothing.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7612803821c845889bda84b7f1ac9ae5','0','2','0'), ('22886','0','','10075','CPU interrupt time','system.cpu.util[,interrupt]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has spent servicing hardware interrupts.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f2acc3cd432546e5a223095a0ea2f096','0','2','0'), ('22888','0','','10075','CPU nice time','system.cpu.util[,nice]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has spent running users'' processes that have been niced.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','efa92492bec0437ba74f47d694500cab','0','2','0'), ('22891','0','','10075','CPU system time','system.cpu.util[,system]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has spent running the kernel and its processes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c9479b02b04141128b1ce7c8f3726c09','0','2','0'), ('22892','0','','10075','CPU user time','system.cpu.util[,user]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has spent running users'' processes that are not niced.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1f3bc82009e04b59845a0e15004637ad','0','2','0'), ('22893','0','','10075','Host name','system.hostname','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The host name of the system.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c17d001bd20a4732b8ef487366c6aa42','0','2','0'), ('22894','0','','10075','Host local time','system.localtime','1m','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'The local system time of the host.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4095ed7d606a47439294097a98af2c4f','0','2','0'), ('22895','0','','10075','Free swap space','system.swap.size[,free]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The free space of the swap volume/file expressed in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','63fc1259011f4250901889979cdf472c','0','2','0'), ('22896','0','','10075','Free swap space in %','system.swap.size[,pfree]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The free space of the swap volume/file expressed in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','187d11e610b94b468d18b88ca38f2c32','0','2','0'), ('22897','0','','10075','Total swap space','system.swap.size[,total]','1h','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total space of the swap volume/file expressed in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9647b0b857074c4b9c14f15bb04af096','0','2','0'), ('22898','0','','10075','System information','system.uname','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Information as normally returned by `uname -a`.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4523ae069e0b4e16bcb5182c6dbf63f2','0','2','0'), ('22899','0','','10075','System uptime','system.uptime','10m','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a49b956d592c4e2ba41caac3671e009f','0','2','0'), ('22900','0','','10075','Number of logged in users','system.users.num','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of users who are currently logged in.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fec3e877764e4bfd98e77da9d8c73606','0','2','0'), ('22901','0','','10075','Checksum of /etc/passwd','vfs.file.cksum[/etc/passwd,sha256]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2bb327cd5f8c49d9b680142825b9c030','0','2','0'), ('22902','0','','10075','Available memory','vm.memory.size[available]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Defined as free + cached + buffers.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','561c7a383b944bca9ec5f7c44e322fed','0','2','0'), ('22903','0','','10075','Total memory','vm.memory.size[total]','1h','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total memory expressed in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ffa54e82b7914672a3f7134134ac2638','0','2','0'), ('22917','0','','10076','Number of running processes','proc.num[,,run]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of processes in a running state.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2c2d08ab5833493ba45ebfe5154f04c1','0','2','0'), ('22918','0','','10076','Number of processes','proc.num[]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of processes in any state.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7c64480f840a4778bde5278e1c0a083f','0','2','0'), ('22920','0','','10076','Interrupts per second','system.cpu.intr','1m','31d','365d','0','3','','ips','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of interrupts processed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4a15778222a24f129b8ae7c240a32ded','0','2','0'), ('22921','0','','10076','Processor load (15 min average per core)','system.cpu.load[percpu,avg15]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Calculated as the system CPU load divided by the number of CPU cores.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','02210ac2faaa4f7bb74e995726706abc','0','2','0'), ('22922','0','','10076','Processor load (1 min average per core)','system.cpu.load[percpu,avg1]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Calculated as the system CPU load divided by the number of CPU cores.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4f8665f48aff4fa39e85639fed7b71c5','0','2','0'), ('22923','0','','10076','Processor load (5 min average per core)','system.cpu.load[percpu,avg5]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Calculated as the system CPU load divided by the number of CPU cores.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6fa2275f1f83456abfe786c8565c7a2d','0','2','0'), ('22924','0','','10076','Context switches per second','system.cpu.switches','1m','31d','365d','0','3','','sps','','',NULL,NULL,'','','0','','','','','0',NULL,'The combined rate at which all processors on the computer are switched from one thread to another.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1ad486947da9428abdebcecb83ca3d8b','0','2','0'), ('22933','0','','10076','Host name','system.hostname','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The host name of the system.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f4d10d49fa3c4dababf03d2cb80f044c','0','2','0'), ('22934','0','','10076','Host local time','system.localtime','1m','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'The local system time of the host.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aebc5bb0264a4f55985c96445964dfc4','0','2','0'), ('22938','0','','10076','System information','system.uname','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Information as normally returned by `uname -a`.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d0ef675d313849269890d06c7e003c9e','0','2','0'), ('22939','0','','10076','System uptime','system.uptime','10m','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2e0ff86c992c4a098af8cb1bee0f0001','0','2','0'), ('22940','0','','10076','Number of logged in users','system.users.num','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of users who are currently logged in.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','980a59760ef9481298ed35322841f939','0','2','0'), ('22941','0','','10076','Checksum of /etc/passwd','vfs.file.cksum[/etc/passwd,sha256]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4771d6d33c2247d6843198152a7065a8','0','2','0'), ('22942','0','','10076','Available memory','vm.memory.size[available]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Defined as free + cached + buffers.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6d4d9deab17b42f4a953c5210acac6f1','0','2','0'), ('22943','0','','10076','Total memory','vm.memory.size[total]','1h','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total memory expressed in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','57d30ccd5db64dc8b9498a36efe768e9','0','2','0'), ('22944','0','','10076','Network interface discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for the discovery of network interfaces.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','409cce8967b4494bbcc5193a26c69b06','0','2','0'), ('22945','0','','10076','Interface {#IFNAME}: Incoming network traffic','net.if.in[{#IFNAME}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','df9710a48eaa4a72911de3971b37c596','0','2','0'), ('22946','0','','10076','Interface {#IFNAME}: Outgoing network traffic','net.if.out[{#IFNAME}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0704fb302aa94f73bedade3a998a0fa3','0','2','0'), ('22961','0','','10077','Processor load (15 min average per core)','system.cpu.load[percpu,avg15]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Calculated as the system CPU load divided by the number of CPU cores.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','296dbd5148184004b26ac50ae5e6893b','0','2','0'), ('22962','0','','10077','Processor load (1 min average per core)','system.cpu.load[percpu,avg1]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Calculated as the system CPU load divided by the number of CPU cores.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bcba4702a58d48339c6e7e49dea574c4','0','2','0'), ('22963','0','','10077','Processor load (5 min average per core)','system.cpu.load[percpu,avg5]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Calculated as the system CPU load divided by the number of CPU cores.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','60057d54b81342f4aaa0103a278bf7b6','0','2','0'), ('22965','0','','10077','CPU idle time','system.cpu.util[,idle]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has spent doing nothing.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2b82ccaf9eb1424593e2738a5512e182','0','2','0'), ('22968','0','','10077','CPU nice time','system.cpu.util[,nice]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has spent running users'' processes that have been niced.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8665bd2dc84e46daa081a379548b0603','0','2','0'), ('22971','0','','10077','CPU system time','system.cpu.util[,system]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has spent running the kernel and its processes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8419321f4744476ea27b7d1acddcd365','0','2','0'), ('22972','0','','10077','CPU user time','system.cpu.util[,user]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has spent running users'' processes that are not niced.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','611c9a3c70aa4455b6ec7bebe64b5316','0','2','0'), ('22973','0','','10077','Host name','system.hostname','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The host name of the system.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6e3b32f3f92543759ef2f30834899ba0','0','2','0'), ('22974','0','','10077','Host local time','system.localtime','1m','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','16c6c420c710498083355361b104f7a2','0','2','0'), ('22978','0','','10077','System information','system.uname','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Information as normally returned by `uname -a`.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b66598337e0e4990a2776d2a42020e72','0','2','0'), ('22980','0','','10077','Number of logged in users','system.users.num','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of users who are currently logged in.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bb698e97aa1b45ebadcb48da729b8e64','0','2','0'), ('22981','0','','10077','Checksum of /etc/passwd','vfs.file.cksum[/etc/passwd,sha256]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4e11e7c5d43a4566989b39dbc0c23266','0','2','0'), ('22982','0','','10077','Available memory','vm.memory.size[available]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Defined as free + cached + buffers.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','767abadfa8be4bccb2c4c5a1d532ba87','0','2','0'), ('22983','0','','10077','Total memory','vm.memory.size[total]','1h','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total memory expressed in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6da082e7f822465592f66e2bd0a46947','0','2','0'), ('22984','0','','10077','Network interface discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for the discovery of network interfaces.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','83058e954f1d497d8c33c82c771d2250','0','2','0'), ('22985','0','','10077','Interface {#IFNAME}: Incoming network traffic','net.if.in[{#IFNAME}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1c1dc757da2a43c4827734e4b7b3fcd2','0','2','0'), ('22986','0','','10077','Interface {#IFNAME}: Outgoing network traffic','net.if.out[{#IFNAME}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4de64b1ecae344afa12f892937caa04e','0','2','0'), ('22996','0','','10078','Maximum number of processes','kernel.maxproc','1h','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'May be increased by using the `sysctl` utility or modifying the file `/etc/sysctl.conf`.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2fa6d58a5c7d48da90b1caf521e867cd','0','2','0'), ('22997','0','','10078','Number of running processes','proc.num[,,run]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of processes in a running state.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7c8c8421fb514e67bc9f14cefe4018f3','0','2','0'), ('22998','0','','10078','Number of processes','proc.num[]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of processes in any state.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','74c805e8bfd947348b206a0d33bfc461','0','2','0'), ('22999','0','','10078','Host boot time','system.boottime','10m','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1812e26de9ad4a36abb5498154e6ea3c','0','2','0'), ('23000','0','','10078','Interrupts per second','system.cpu.intr','1m','31d','365d','0','3','','ips','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of interrupts processed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8186ed95ed8c4d6eb52ea2e718984170','0','2','0'), ('23001','0','','10078','Processor load (15 min average per core)','system.cpu.load[percpu,avg15]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Calculated as the system CPU load divided by the number of CPU cores.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c13c2ff556594c5d985420dc974659cf','0','2','0'), ('23002','0','','10078','Processor load (1 min average per core)','system.cpu.load[percpu,avg1]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Calculated as the system CPU load divided by the number of CPU cores.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1a7cc53a5497427da28f882b1b185fad','0','2','0'), ('23003','0','','10078','Processor load (5 min average per core)','system.cpu.load[percpu,avg5]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Calculated as the system CPU load divided by the number of CPU cores.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5b053b6c00464f8b8f5fc49fffda1394','0','2','0'), ('23004','0','','10078','Context switches per second','system.cpu.switches','1m','31d','365d','0','3','','sps','','',NULL,NULL,'','','0','','','','','0',NULL,'The combined rate at which all processors on the computer are switched from one thread to another.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','320f8803624f4ad2b9e66f1a08f5a145','0','2','0'), ('23005','0','','10078','CPU idle time','system.cpu.util[,idle]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has spent doing nothing.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a653205d5ce4462089da4ed4d6f97f3a','0','2','0'), ('23007','0','','10078','CPU iowait time','system.cpu.util[,iowait]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has been waiting for the I/O to complete.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9bee92be803c48489509e41c19718abc','0','2','0'), ('23011','0','','10078','CPU system time','system.cpu.util[,system]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has spent running the kernel and its processes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bb32808bf73f489399ecb3e02bc18194','0','2','0'), ('23012','0','','10078','CPU user time','system.cpu.util[,user]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has spent running users'' processes that are not niced.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d30ad6a457df4e39819b76fc1be7a562','0','2','0'), ('23013','0','','10078','Host name','system.hostname','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The host name of the system.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1945e624e1864f2ba543f9438b1733f1','0','2','0'), ('23014','0','','10078','Host local time','system.localtime','1m','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'The local system time of the host.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0a0a8ab7047b400aaffe99917349291e','0','2','0'), ('23015','0','','10078','Free swap space','system.swap.size[,free]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The free space of the swap volume/file expressed in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','71597a2dfdeb4c63acf7505ffb7f4f08','0','2','0'), ('23016','0','','10078','Free swap space in %','system.swap.size[,pfree]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The free space of the swap volume/file expressed in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b2ee2b52a64841e282915d6de3c7f739','0','2','0'), ('23017','0','','10078','Total swap space','system.swap.size[,total]','1h','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total space of the swap volume/file expressed in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0e7ea1fd204c44f3b0a7880eac21a0df','0','2','0'), ('23018','0','','10078','System information','system.uname','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Information as normally returned by `uname -a`.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','034f7934cdb54cc6b99194fac9197bfb','0','2','0'), ('23019','0','','10078','System uptime','system.uptime','10m','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c15a8b1b6cbd446bad669ead64a172a1','0','2','0'), ('23020','0','','10078','Number of logged in users','system.users.num','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of users who are currently logged in.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a2c0d69124424e49aa4fc1f2416ffc37','0','2','0'), ('23021','0','','10078','Checksum of /etc/passwd','vfs.file.cksum[/etc/passwd,sha256]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5dd55b892d1b4828bfc570d6bf48251d','0','2','0'), ('23022','0','','10078','Available memory','vm.memory.size[available]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Defined as free + cached + buffers.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6888f0dd6b2e418f8c28a0ee59648fa3','0','2','0'), ('23023','0','','10078','Total memory','vm.memory.size[total]','1h','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total memory expressed in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d96d5ebfa074428e957335b5fa58189b','0','2','0'), ('23024','0','','10078','Network interface discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for the discovery of network interfaces.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6a47f796859241c1aa30f0d731cacf52','0','2','0'), ('23025','0','','10078','Interface {#IFNAME}: Incoming network traffic','net.if.in[{#IFNAME}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','548f317737ee4facbed4a371f3476352','0','2','0'), ('23026','0','','10078','Interface {#IFNAME}: Outgoing network traffic','net.if.out[{#IFNAME}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','02dbf0af85294ab0bbf042fca79448cc','0','2','0'), ('23035','0','','10079','Maximum number of opened files','kernel.maxfiles','1h','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'May be increased by using the `sysctl` utility or modifying the file `/etc/sysctl.conf`.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d25aa1f2eae445ceb18b7e4ee5383585','0','2','0'), ('23036','0','','10079','Maximum number of processes','kernel.maxproc','1h','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'May be increased by using the `sysctl` utility or modifying the file `/etc/sysctl.conf`.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5c376cae54854613a1533eb804bcee56','0','2','0'), ('23039','0','','10079','Host boot time','system.boottime','10m','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','928f973c004447d099a79e09a8b98cee','0','2','0'), ('23041','0','','10079','Processor load (15 min average per core)','system.cpu.load[percpu,avg15]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Calculated as the system CPU load divided by the number of CPU cores.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1ddc219f824541ca9c9ef30afda56df2','0','2','0'), ('23042','0','','10079','Processor load (1 min average per core)','system.cpu.load[percpu,avg1]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Calculated as the system CPU load divided by the number of CPU cores.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5abd63bb64114794ae6d253dcc12afb4','0','2','0'), ('23043','0','','10079','Processor load (5 min average per core)','system.cpu.load[percpu,avg5]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Calculated as the system CPU load divided by the number of CPU cores.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7e569411a7b4415098d21aaa44068dee','0','2','0'), ('23053','0','','10079','Host name','system.hostname','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The host name of the system.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9c0230c0bb944523bd781c37304bb87b','0','2','0'), ('23054','0','','10079','Host local time','system.localtime','1m','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'The local system time of the host.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5a7ce2c61d3a4696ac76e0406308e61b','0','2','0'), ('23058','0','','10079','System information','system.uname','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Information as normally returned by `uname -a`.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5c73ff0f28d24d92955c667e5245cfa0','0','2','0'), ('23059','0','','10079','System uptime','system.uptime','10m','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The system uptime expressed in the following format: "N days, hh:mm:ss".','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','34c001a77a904224aa90338590375870','0','2','0'), ('23060','0','','10079','Number of logged in users','system.users.num','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of users who are currently logged in.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','31ea6bafabbe440ea1b8d1b6cea74444','0','2','0'), ('23061','0','','10079','Checksum of /etc/passwd','vfs.file.cksum[/etc/passwd,sha256]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6df0d9e8694d45dfa11e433d8de7be41','0','2','0'), ('23062','0','','10079','Available memory','vm.memory.size[available]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Defined as free + cached + buffers.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','daf35c33bb84443f893bb06bfe10f870','0','2','0'), ('23063','0','','10079','Total memory','vm.memory.size[total]','1h','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total memory expressed in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','83c0218324a548c4a01054801a4d8b0b','0','2','0'), ('23073','0','','10075','Interface {#IFNAME}: Incoming network traffic','net.if.in[{#IFNAME}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b1f9e472c6ed467d8cb0cc1739c39b59','0','2','0'), ('23074','0','','10075','Interface {#IFNAME}: Outgoing network traffic','net.if.out[{#IFNAME}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ac93068d05084aa0a32a1bee78df3bd8','0','2','0'), ('23075','0','','10074','Interface {#IFNAME}: Incoming network traffic','net.if.in[{#IFNAME}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','81dec4b8de8c4ab68aef26d9f00aee87','0','2','0'), ('23076','0','','10074','Interface {#IFNAME}: Outgoing network traffic','net.if.out[{#IFNAME}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','16bced1c77eb46799ecedcde5049dbdb','0','2','0'), ('23077','0','','10079','Incoming network traffic on en0','net.if.in[en0]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','951d874e6b644f9787c7a0d267bafcf8','0','2','0'), ('23078','0','','10079','Outgoing network traffic on en0','net.if.out[en0]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ac875bd25d484d38b16cb02c30be6b67','0','2','0'), ('23108','0','','10076','CPU available physical processors in the shared pool','system.stat[cpu,app]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','081f8986446d43e7a3b72f7084576600','0','2','0'), ('23109','0','','10076','CPU entitled capacity consumed','system.stat[cpu,ec]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6a97d56a6c2e45e1b10b97e2395ff30d','0','2','0'), ('23110','0','','10076','CPU idle time','system.stat[cpu,id]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','142f33d7b2c3469c9664fedf4f053616','0','2','0'), ('23111','0','','10076','CPU logical processor utilization','system.stat[cpu,lbusy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','752c952fb18e4a0e8e5e3415b107b9f1','0','2','0'), ('23112','0','','10076','CPU number of physical processors consumed','system.stat[cpu,pc]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','748f1316a33b48658b11dca8f45cfcce','0','2','0'), ('23113','0','','10076','CPU system time','system.stat[cpu,sy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2647132edb6647ca9ef43a00ca09ecbd','0','2','0'), ('23114','0','','10076','CPU user time','system.stat[cpu,us]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e990898ddbb74c7b9a8c1c67cb9544cf','0','2','0'), ('23115','0','','10076','CPU iowait time','system.stat[cpu,wa]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2cd7a00570ad487d9cdf39fd198b2c0b','0','2','0'), ('23116','0','','10076','Amount of data transferred','system.stat[disk,bps]','1m','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6748e4c87589472ca1474f3c7b729e0c','0','2','0'), ('23117','0','','10076','Number of transfers','system.stat[disk,tps]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bf0180d8f109451db616749990a113a6','0','2','0'), ('23118','0','','10076','Processor units is entitled to receive','system.stat[ent]','1h','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3e1af0261f6a421d8ca554f8eb222716','0','2','0'), ('23119','0','','10076','Kernel thread context switches','system.stat[faults,cs]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0fe71698a3c74c93a8cb3a937dc7226c','0','2','0'), ('23120','0','','10076','Device interrupts','system.stat[faults,in]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a1e13d2dbd8b4086974ea32a2cd743b1','0','2','0'), ('23121','0','','10076','System calls','system.stat[faults,sy]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','883c7a12b1d54f4d8189ca0d9cc43102','0','2','0'), ('23122','0','','10076','Length of the swap queue','system.stat[kthr,b]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f027ed1c43464d4ab9a13d4b9f647e7e','0','2','0'), ('23123','0','','10076','Length of the run queue','system.stat[kthr,r]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6795c2b6914d4303bf30c71c7405ff7d','0','2','0'), ('23124','0','','10076','Active virtual pages','system.stat[memory,avm]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','12142f133863448c9c937c671e183bbb','0','2','0'), ('23125','0','','10076','Free real memory','system.stat[memory,fre]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3b4a5ff768654ff5a87b955684a0d7b5','0','2','0'), ('23126','0','','10076','File page-ins per second','system.stat[page,fi]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bf890bf5cd1748a5af9528a111ba43c4','0','2','0'), ('23127','0','','10076','File page-outs per second','system.stat[page,fo]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','19c4f7132b6c46aa9522bd46da3e8f03','0','2','0'), ('23128','0','','10076','Pages freed (page replacement)','system.stat[page,fr]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9ff3f7faa76c414aae7c5babb91fe065','0','2','0'), ('23129','0','','10076','Pages paged in from paging space','system.stat[page,pi]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6009d8a0fc2f486db979b226eb975e78','0','2','0'), ('23130','0','','10076','Pages paged out to paging space','system.stat[page,po]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','26fb1471e08c4c46800e4887d8bccd80','0','2','0'), ('23131','0','','10076','Pages scanned by page-replacement algorithm','system.stat[page,sr]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','83b1456726d448d6a756e03c0ec02342','0','2','0'), ('23171','5','','10047','Utilization of snmp trapper data collector processes, in %','zabbix[process,snmp trapper,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the snmp trapper processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cb9a7c4f3373496da97f3e0b8c978366','0','2','0'), ('23251','5','','10047','Queue','zabbix[queue]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of monitored items in the queue that are delayed by at least 6 seconds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aaf58555c0774e848f51a351b6ae8462','0','2','0'), ('23329','0','','10074','Network interface discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for the discovery of network interfaces.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d02d41ad698942bfab1fe29fad31010a','0','2','0'), ('23340','5','','10048','Number of processed values per second','zabbix[wcache,values]','1m','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The total number of values processed by Zabbix server or Zabbix proxy, except unsupported items.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5229b786efc84f01bb31f2819c47d9f4','0','2','0'), ('23341','5','','10048','History index cache, % used','zabbix[wcache,index,pused]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The percentage of used history index buffer. The history index cache is used to index values stored in the history cache.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8c4c7802497d4de4988278edc29f8eb1','0','2','0'), ('23342','5','','10048','History write cache, % used','zabbix[wcache,history,pused]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The percentage of used history buffer. The history cache is used to store item values. A high number indicates database performance problems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aec73d2a7e444702b352c75998bf636e','0','2','0'), ('23343','5','','10048','Utilization of self-monitoring internal processes, in %','zabbix[process,self-monitoring,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the self-monitoring processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1fd488bbb4af450cb2b5e8c81b739f29','0','2','0'), ('23344','5','','10048','Utilization of snmp trapper data collector processes, in %','zabbix[process,snmp trapper,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the snmp trapper processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','77ab21500d734deea86938a1a90035e0','0','2','0'), ('23345','5','','10048','Utilization of trapper data collector processes, in %','zabbix[process,trapper,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the trapper processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8d99635291d14ae8a5ba7d794540bde2','0','2','0'), ('23346','5','','10048','Utilization of unreachable poller data collector processes, in %','zabbix[process,unreachable poller,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the unreachable poller processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7b0f5b75d4854b84a7e1f51975732e25','0','2','0'), ('23347','5','','10048','Utilization of configuration syncer internal processes, in %','zabbix[process,configuration syncer,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the configuration syncer processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3d1bfa64a447427da0b463c3617b212e','0','2','0'), ('23348','5','','10048','Utilization of poller data collector processes, in %','zabbix[process,poller,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the poller processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','334398ad893e4146bc1b9370eef9df59','0','2','0'), ('23349','5','','10048','Utilization of java poller data collector processes, in %','zabbix[process,java poller,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the java poller processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','02214c0c38394bef8d648369584ae30b','0','2','0'), ('23350','5','','10048','Utilization of history syncer internal processes, in %','zabbix[process,history syncer,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the history syncer processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7dde8cd03e5043a2bd484f7213a5f112','0','2','0'), ('23353','5','','10048','Utilization of housekeeper internal processes, in %','zabbix[process,housekeeper,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the housekeeper processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','31f0355f4d7c4de6b0d6f206d1ca9fa3','0','2','0'), ('23354','5','','10048','Utilization of http poller data collector processes, in %','zabbix[process,http poller,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the http poller processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','782b11dbe3ce47e3b9098c43d83057ad','0','2','0'), ('23355','5','','10048','Utilization of ipmi poller data collector processes, in %','zabbix[process,ipmi poller,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the ipmi poller processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7cfb2f1504dd4b0aaac804b132d49bc5','0','2','0'), ('23356','5','','10048','Utilization of icmp pinger data collector processes, in %','zabbix[process,icmp pinger,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the icmp pinger processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9b899ab317b447d1a82d1136e0a2ff6f','0','2','0'), ('23357','5','','10048','Configuration cache, % used','zabbix[rcache,buffer,pused]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The availability statistics of Zabbix configuration cache. The percentage of used data buffer.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','606d1d43812341db8260a233295a4a4e','0','2','0'), ('23358','5','','10048','Queue','zabbix[queue]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of monitored items in the queue that are delayed by at least 6 seconds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cfbb623cca754fd49d4f606ab52f658d','0','2','0'), ('23359','5','','10048','Queue over 10 minutes','zabbix[queue,10m]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of monitored items in the queue that are delayed by at least 10 minutes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2fa1c8d8fcb94d4c83cf4e291420a690','0','2','0'), ('23360','5','','10048','Utilization of data sender internal processes, in %','zabbix[process,data sender,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the data sender processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','69eefd6aba164d71b0a2b8d2df06e9a3','0','2','0'), ('23540','0','','10075','Network interface discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for the discovery of network interfaces.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cac3466488a544198f766d1152878456','0','2','0'), ('23634','5','','10047','VMware cache, % used','zabbix[vmware,buffer,pused]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The availability statistics of Zabbix vmware cache. The percentage of used data buffer.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d273413004094604ad247c0ff9695879','0','2','0'), ('23661','5','','10047','Value cache operating mode','zabbix[vcache,cache,mode]','1m','31d','365d','0','3','','!vps','','',NULL,'55','','','0','','','','','0',NULL,'The operating mode of the value cache.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','07379df0114445b7b06818736f011ca6','0','2','0'), ('23663','5','','10047','Utilization of task manager internal processes, in %','zabbix[process,task manager,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the task manager processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','caeb7ecc88cc4c14bb80f901284be9a5','0','2','0'), ('25366','5','','10047','Utilization of ipmi manager internal processes, in %','zabbix[process,ipmi manager,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the ipmi manager processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','24b6b466929347f0a8164c89ba5624fe','0','2','0'), ('25368','5','','10048','Utilization of ipmi manager internal processes, in %','zabbix[process,ipmi manager,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the ipmi manager processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','52b3123dfef94d8bba1b1a13314a9d4f','0','2','0'), ('25369','5','','10048','Utilization of task manager internal processes, in %','zabbix[process,task manager,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the task manager processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','94d1aa1bff2d499f9e29dd9cafd04b9e','0','2','0'), ('25370','5','','10047','Utilization of alert manager internal processes, in %','zabbix[process,alert manager,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the alert manager processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d098ea71dd22428a8a8a42cf299699b7','0','2','0'), ('25665','5','','10047','Utilization of preprocessing manager internal processes, in %','zabbix[process,preprocessing manager,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the preprocessing manager processes have been busy for the last minute.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fc7999dd8d2d41a5a80eeb4b6c4c9b13','0','2','0'), ('25666','5','','10047','Utilization of preprocessing worker internal processes, in %','zabbix[process,preprocessing worker,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the preprocessing worker processes have been busy for the last minute.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6af695693d41434a96c0c6a020580828','0','2','0'), ('26925','12','','10171','Power','power','1m','31d','365d','0','3','','','','',NULL,NULL,'','power','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1821294a921d401f822678ce1d246163','0','2','0'), ('26926','12','','10171','Processor Vcc','processor_vcc','1m','31d','365d','0','0','','V','','',NULL,NULL,'','Processor Vcc','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','efc577d6deba4f46b1fe79e6a1a26fdd','0','2','0'), ('26927','12','','10171','System Fan 3','system_fan_3','1m','31d','365d','0','0','','RPM','','',NULL,NULL,'','System Fan 3','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','89e5edc9cd6d4984a7a76320f7800ae9','0','2','0'), ('26928','12','','10171','BB Ambient Temp','bb_ambient_temp','1m','31d','365d','0','0','','C','','',NULL,NULL,'','BB Ambient Temp','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2e6d7059cbb349889c639e9fba09bd8c','0','2','0'), ('26929','12','','10171','BB +5.0V','bb_5.0v','1m','31d','365d','0','0','','V','','',NULL,NULL,'','BB +5.0V','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7931e499e1894942a4763432a6a446fd','0','2','0'), ('26930','12','','10171','BB +3.3V','bb_3.3v','1m','31d','365d','0','0','','V','','',NULL,NULL,'','BB +3.3V','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','21820c76180446ff9965f8937e6d1ba0','0','2','0'), ('26931','12','','10171','BB +3.3V STBY','bb_3.3v_stby','1m','31d','365d','0','0','','V','','',NULL,NULL,'','BB +3.3V STBY','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7bd5269be38c417aba374c9e8af28f8c','0','2','0'), ('26932','12','','10171','BB +1.8V SM','bb_1.8v_sm','1m','31d','365d','0','0','','V','','',NULL,NULL,'','BB +1.8V SM','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f1d7b90d87c6411e9d887d223b4f9022','0','2','0'), ('26933','12','','10172','Front Panel Temp','front_panel_temp','1m','31d','365d','0','0','','C','','',NULL,NULL,'','Front Panel Temp','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d59236617a234098b0cd62ac30cba975','0','2','0'), ('26934','12','','10172','Power','power','1m','31d','365d','0','3','','','','',NULL,NULL,'','power','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e4f51e8a51fb4f23afe9d505ede91891','0','2','0'), ('26935','12','','10172','System Fan 2','system_fan_2','1m','31d','365d','0','0','','RPM','','',NULL,NULL,'','System Fan 2','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ede3efc70c794c3390531b41a28411ef','0','2','0'), ('26936','12','','10172','System Fan 3','system_fan_3','1m','31d','365d','0','0','','RPM','','',NULL,NULL,'','System Fan 3','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b51ab327c547413fb94dae69e93458d2','0','2','0'), ('26937','12','','10172','BB +5.0V','bb_5.0v','1m','31d','365d','0','0','','V','','',NULL,NULL,'','BB +5.0V','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5a60f33969e54742989571dc2f93be57','0','2','0'), ('26938','12','','10172','BB +3.3V STBY','bb_3.3v_stby','1m','31d','365d','0','0','','V','','',NULL,NULL,'','BB +3.3V STBY','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aef2b61786354719a6d99f60cff59f14','0','2','0'), ('26939','12','','10172','BB +1.05V PCH','bb_1.05v_pch','1m','31d','365d','0','0','','V','','',NULL,NULL,'','BB +1.05V PCH','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d2827f4cc6c4470daf4fd20868ed94c8','0','2','0'), ('26940','12','','10172','BB +1.1V P1 Vccp','bb_1.1v_p1_vccp','1m','31d','365d','0','0','','V','','',NULL,NULL,'','BB +1.1V P1 Vccp','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3bbcfcb625fa4805806601284c3eda20','0','2','0'), ('26941','12','','10172','BB +1.5V P1 DDR3','bb_1.5v_p1_ddr3','1m','31d','365d','0','0','','V','','',NULL,NULL,'','BB +1.5V P1 DDR3','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','350b21b2a569489a9c4c7376bf788a0e','0','2','0'), ('26942','12','','10172','BB +3.3V','bb_3.3v','1m','31d','365d','0','0','','V','','',NULL,NULL,'','BB +3.3V','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6bc6b9c60ce24189b8b0f8a928fab701','0','2','0'), ('26943','12','','10172','Baseboard Temp','baseboard_temp','1m','31d','365d','0','0','','C','','',NULL,NULL,'','Baseboard Temp','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8271dc34162d4657be1a67b5d8a4473b','0','2','0'), ('27203','20','get[1.3.6.1.2.1.1.1.0]','10207','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2183a57a2c904632bf813c15610765f7','0','2','0'), ('27207','20','get[1.3.6.1.4.1.6527.3.1.2.1.1.9.0]','10207','Used memory','vm.memory.used[sgiKbMemoryUsed.0]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TIMETRA-SYSTEM-MIB The value of sgiKbMemoryUsed indicates the total pre-allocated pool memory, in kilobytes, currently in use on the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f5cd1ed0f61f464f86a97485f833d832','0','2','0'), ('27208','20','get[1.3.6.1.4.1.6527.3.1.2.1.1.1.0]','10207','CPU utilization','system.cpu.util[sgiCpuUsage.0]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TIMETRA-SYSTEM-MIB The value of sgiCpuUsage indicates the current CPU utilization for the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e28cb751b37e42d29be9f0295bd030b6','0','2','0'), ('27209','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.8,{#TEMP_SENSOR},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.17]','10207','Temperature Discovery','temperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6382c9595cb446778d23bb273143b27c','0','2','0'), ('27210','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.6527.3.1.2.2.1.4.1.2]','10207','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0fa1180b594e401a83927f6c20809a86','0','2','0'), ('27211','20','discovery[{#ENT_NAME},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.8,{#ENT_CLASS},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.7,{#ENT_SN},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.5]','10207','Entity Serial Numbers Discovery','entity_sn.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fe7fa4ab68b8430c86a3adf6ba2fd048','0','2','0'), ('27212','20','get[1.3.6.1.4.1.6527.3.1.2.2.1.8.1.18.{#SNMPINDEX}]','10207','{#SNMPVALUE}: Temperature','sensor.temp.value[tmnxHwTemperature.{#SNMPINDEX}]','3m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: TIMETRA-SYSTEM-MIB The current temperature reading in degrees celsius from this hardware component''s temperature sensor. If this component does not contain a temperature sensor, then the value -1 is returned.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c6a233ce51d44b63963f2345f709e6b3','0','2','0'), ('27213','20','get[1.3.6.1.4.1.6527.3.1.2.2.1.4.1.2.{#SNMPINDEX}]','10207','#{#SNMPINDEX}: Fan status','sensor.fan.status[tmnxChassisFanOperStatus.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'71','','','0','','','','','2',NULL,'MIB: TIMETRA-SYSTEM-MIB Current status of the Fan tray.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','be9fb466b33f4d078b6aae15123bc7d6','0','2','0'), ('27214','20','get[1.3.6.1.4.1.6527.3.1.2.2.1.8.1.5.{#SNMPINDEX}]','10207','{#ENT_NAME}: Hardware serial number','system.hw.serialnumber[tmnxHwSerialNumber.{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: TIMETRA-CHASSIS-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ec087163f366430fbd688390bce17980','0','2','0'), ('27236','20','get[1.3.6.1.4.1.1588.2.1.1.1.1.6.0]','10208','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SW-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c6e2d4c076b14ed19fbcb08caa32e5be','0','2','0'), ('27237','20','get[1.3.6.1.4.1.1588.2.1.1.1.1.10.0]','10208','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SW-MIB','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3c68a1be050d4c1287e63eb7b3b81f8f','0','2','0'), ('27238','20','get[1.3.6.1.4.1.1588.2.1.1.1.1.7.0]','10208','Overall system health status','system.status[swOperStatus.0]','30s','31d','0','0','3','','','','',NULL,'73','','','0','','','','','0',NULL,'MIB: SW-MIB The current operational status of the switch.The states are as follow: online(1) means the switch is accessible by an external Fibre Channel port offline(2) means the switch is not accessible testing(3) means the switch is in a built-in test mode and is not accessible by an external Fibre Channel port faulty(4) means the switch is not operational.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','29f1dda8042d4fd18d7da9eb95fea76c','0','2','0'), ('27240','20','get[1.3.6.1.4.1.1588.2.1.1.1.26.1.0]','10208','CPU utilization','system.cpu.util[swCpuUsage.0]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SW-MIB System''s CPU usage.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b17a06635cb2400f9c6d0f848fd38868','0','2','0'), ('27242','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.1,{#SENSOR_TYPE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.2,{#SENSOR_INFO},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.5]','10208','Temperature Discovery','temperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','efaa3e2dfb5b405d99998bd6f8a08697','0','2','0'), ('27243','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.1,{#SENSOR_TYPE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.2,{#SENSOR_INFO},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.5]','10208','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','32c9720e348e4d4ebb9e70c2b247de29','0','2','0'), ('27244','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.1,{#SENSOR_TYPE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.2,{#SENSOR_INFO},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.5]','10208','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','721801e236e34b02b5430d115b23817e','0','2','0'), ('27246','20','get[1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.{#SNMPINDEX}]','10208','{#SENSOR_INFO}: Temperature status','sensor.temp.status[swSensorStatus.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'72','','','0','','','','','2',NULL,'MIB: SW-MIB Temperature status of testpoint: {#SENSOR_INFO}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f95f92a4151d4039ab3ce73ca231f079','0','2','0'), ('27247','20','get[1.3.6.1.4.1.1588.2.1.1.1.1.22.1.4.{#SNMPINDEX}]','10208','{#SENSOR_INFO}: Temperature','sensor.temp.value[swSensorValue.{#SNMPINDEX}]','3m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: SW-MIB Temperature readings of testpoint: {#SENSOR_INFO}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ee48ef951f124c569327670a2a0f2152','0','2','0'), ('27248','20','get[1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.{#SNMPINDEX}]','10208','{#SENSOR_INFO}: Power supply status','sensor.psu.status[swSensorStatus.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'72','','','0','','','','','2',NULL,'MIB: SW-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7a8f32cbb43f4ce789097e8cb26b0456','0','2','0'), ('27249','20','get[1.3.6.1.4.1.1588.2.1.1.1.1.22.1.4.{#SNMPINDEX}]','10208','{#SENSOR_INFO}: Fan speed','sensor.fan.speed[swSensorValue.{#SNMPINDEX}]','1m','31d','365d','0','3','','rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: SW-MIB The current value (reading) of the sensor. The value, -2147483648, represents an unknown quantity. The fan value will be in RPM(revolution per minute)','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4f37f76d0b3241598e69b091f1835ef5','0','2','0'), ('27250','20','get[1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.{#SNMPINDEX}]','10208','{#SENSOR_INFO}: Fan status','sensor.fan.status[swSensorStatus.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'72','','','0','','','','','2',NULL,'MIB: SW-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ee2569161ad146b392bb8f331a7f7d19','0','2','0'), ('27295','20','get[1.3.6.1.4.1.1991.1.1.2.1.11.0]','10210','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FOUNDRY-SN-AGENT-MIB The version of the running software in the form''major.minor.maintenance[letters]''','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4f58884d810a416ea321dd622c876d06','0','2','0'), ('27296','20','get[1.3.6.1.4.1.1991.1.1.1.1.2.0]','10210','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FOUNDRY-SN-AGENT-MIB','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7d8b9dc153c4408c99a707a9b4d57647','0','2','0'), ('27297','20','get[1.3.6.1.4.1.1991.1.1.2.1.11.0]','10211','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FOUNDRY-SN-AGENT-MIB The version of the running software in the form ''major.minor.maintenance[letters]''','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5c17e0d80c354391b339142f2a973886','0','2','0'), ('27302','20','discovery[{#PSU_INDEX},1.3.6.1.4.1.1991.1.1.1.2.1.1.1]','10210','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'snChasPwrSupplyTable: A table of each power supply information. Only installed power supply appears in a table row.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9ea01b3ce15248868f1ced0b38bf1245','0','2','0'), ('27303','20','discovery[{#FAN_INDEX},1.3.6.1.4.1.1991.1.1.1.3.1.1.1]','10210','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'snChasFanTable: A table of each fan information. Only installed fan appears in a table row.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cb46b61100c8456098a85b1e48644146','0','2','0'), ('27304','20','discovery[{#SENSOR_DESCR},1.3.6.1.4.1.1991.1.1.2.13.1.1.3]','10210','Temperature Discovery','temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'snAgentTempTable:Table to list temperatures of the modules in the device. This table is applicable to only those modules with temperature sensors.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','44a84963c9d04fc5a82415602ec8db33','0','2','0'), ('27306','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.1991.1.1.1.1.18]','10210','Temperature Discovery Chassis','temp.chassis.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Since temperature of the chassis is not available on all Brocade/Foundry hardware, this LLD is here to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5b62e90cfc5549d4b189158499b3d9fb','0','2','0'), ('27307','20','discovery[{#PSU_UNIT},1.3.6.1.4.1.1991.1.1.1.2.2.1.1,{#PSU_INDEX},1.3.6.1.4.1.1991.1.1.1.2.2.1.2]','10211','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'snChasPwrSupply2Table: A table of each power supply information for each unit. Only installed power supply appears in a table row.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','36f00d10099946c9bf3a9e617252bec1','0','2','0'), ('27308','20','discovery[{#FAN_UNIT},1.3.6.1.4.1.1991.1.1.1.3.2.1.1,{#FAN_INDEX},1.3.6.1.4.1.1991.1.1.1.3.2.1.2]','10211','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'snChasFan2Table: A table of each fan information for each unit. Only installed fan appears in a table row.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a192b69e71684d9381ca48b5453a2d8b','0','2','0'), ('27309','20','discovery[{#SENSOR_DESCR},1.3.6.1.4.1.1991.1.1.2.13.3.1.4]','10211','Temperature Discovery','temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'snAgentTemp2Table:Table to list temperatures of the modules in the device for each unit. This table is applicable to only those modules with temperature sensors.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c700d182f3e041d3b31076984100a402','0','2','0'), ('27310','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.1991.1.1.3.31.2.1.1.5]','10211','Stack Discovery','stack.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering snStackingConfigUnitTable for Model names','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e78f4dcfd112442f8b053f1eb0a28741','0','2','0'), ('27311','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.1991.1.1.1.4.1.1.1]','10211','Chassis Discovery','chassis.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'snChasUnitIndex: The index to chassis table.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','88f67d02cd484dfb841f5f841c3e0bd6','0','2','0'), ('27312','20','get[1.3.6.1.4.1.1991.1.1.1.2.1.1.3.{#SNMPINDEX}]','10210','PSU {#PSU_INDEX}: Power supply status','sensor.psu.status[snChasPwrSupplyOperStatus.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'74','','','0','','','','','2',NULL,'MIB: FOUNDRY-SN-AGENT-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','47e7c7bb4c27483bb4dd458b5a2d2c1e','0','2','0'), ('27313','20','get[1.3.6.1.4.1.1991.1.1.1.3.1.1.3.{#SNMPINDEX}]','10210','Fan {#FAN_INDEX}: Fan status','sensor.fan.status[snChasFanOperStatus.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'76','','','0','','','','','2',NULL,'MIB: FOUNDRY-SN-AGENT-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9edc2a34faa84e908b33259d495b5da1','0','2','0'), ('27314','20','get[1.3.6.1.4.1.1991.1.1.2.13.1.1.4.{#SNMPINDEX}]','10210','{#SENSOR_DESCR}: Temperature','sensor.temp.value[snAgentTempValue.{#SNMPINDEX}]','3m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FOUNDRY-SN-AGENT-MIB Temperature of the sensor represented by this row. Each unit is 0.5 degrees Celsius.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c181349497cc4d2dbaf43f51712278df','0','2','0'), ('27315','20','get[1.3.6.1.4.1.1991.1.1.1.1.18.{#SNMPINDEX}]','10210','Chassis #{#SNMPINDEX}: Temperature','sensor.temp.value[snChasActualTemperature.{#SNMPINDEX}]','3m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FOUNDRY-SN-AGENT-MIB Temperature of the chassis. Each unit is 0.5 degrees Celsius. Only management module built with temperature sensor hardware is applicable. For those non-applicable management module, it returns no-such-name.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','699f30c8feee47cf8bf3da4d10f2c8aa','0','2','0'), ('27316','20','get[1.3.6.1.4.1.1991.1.1.1.2.2.1.4.{#SNMPINDEX}]','10211','Unit {#PSU_UNIT} PSU {#PSU_INDEX}: Power supply status','sensor.psu.status[snChasPwrSupply2OperStatus.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'75','','','0','','','','','2',NULL,'MIB: FOUNDRY-SN-AGENT-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d96f92d0de9e48968483b9354b99e509','0','2','0'), ('27317','20','get[1.3.6.1.4.1.1991.1.1.1.3.2.1.4.{#SNMPINDEX}]','10211','Unit {#FAN_UNIT} Fan {#FAN_INDEX}: Fan status','sensor.fan.status[snChasFan2OperStatus.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'77','','','0','','','','','2',NULL,'MIB: FOUNDRY-SN-AGENT-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5491a504d4f8441eb3be588f2ed56d7c','0','2','0'), ('27318','20','get[1.3.6.1.4.1.1991.1.1.2.13.3.1.5.{#SNMPINDEX}]','10211','{#SENSOR_DESCR}: Temperature','sensor.temp.value[snAgentTemp2Value.{#SNMPINDEX}]','3m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FOUNDRY-SN-AGENT-MIB Temperature of the sensor represented by this row. Each unit is 0.5 degrees Celsius.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a6bc8a2263444fa1a2b07478068d7297','0','2','0'), ('27319','20','get[1.3.6.1.4.1.1991.1.1.3.31.2.1.1.5.{#SNMPINDEX}]','10211','Unit {#SNMPINDEX}: Hardware model name','system.hw.model[snStackingConfigUnitType.{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FOUNDRY-SN-STACKING-MIB A description of the configured/active system type for each unit.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a4fd63461cb24e4e81e4cbba9f086595','0','2','0'), ('27320','20','get[1.3.6.1.4.1.1991.1.1.1.4.1.1.2.{#SNMPINDEX}]','10211','Unit {#SNMPVALUE}: Hardware serial number','system.hw.serialnumber[snChasUnitSerNum.{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FOUNDRY-SN-AGENT-MIB The serial number of the chassis for each unit. If the serial number is unknown or unavailable then the value should be a zero length string.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2638da6ab127484f8119f8d46d5c996b','0','2','0'), ('27473','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.9.1.1]','10221','CPU and Memory and Flash Discovery','module.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ff38ddf97a2a47c88ad93d590dedc22a','0','2','0'), ('27474','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.3.1.1]','10221','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A list of power supply residents in the S-series chassis.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','21117a6eb71f4837971ccedfff7596f6','0','2','0'), ('27475','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.4.1.1]','10221','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f35cb754ebd748b7842c67461264f48d','0','2','0'), ('27476','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.2.1.2]','10221','Stack Unit Discovery','stack.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a619474b839642f69e583a2c63e8b4ba','0','2','0'), ('27478','20','get[1.3.6.1.4.1.6027.3.10.1.2.9.1.3.{#SNMPINDEX}]','10221','#{#SNMPINDEX}: CPU utilization','system.cpu.util[chStackUnitCpuUtil1Min.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F10-S-SERIES-CHASSIS-MIB CPU utilization in percentage for last 1 minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f2f0febdd3c14d77a47461c22b883bb5','0','2','0'), ('27479','20','get[1.3.6.1.4.1.6027.3.10.1.2.3.1.2.{#SNMPINDEX}]','10221','PSU {#SNMPVALUE}: Power supply status','sensor.psu.status[chSysPowerSupplyOperStatus.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'80','','','0','','','','','2',NULL,'MIB: F10-S-SERIES-CHASSIS-MIB The status of the power supply {#SNMPVALUE}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7cc5081ad6114124845beedbe4725899','0','2','0'), ('27480','20','get[1.3.6.1.4.1.6027.3.10.1.2.4.1.2.{#SNMPINDEX}]','10221','Fan {#SNMPVALUE}: Fan status','sensor.fan.status[chSysFanTrayOperStatus.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'79','','','0','','','','','2',NULL,'MIB: F10-S-SERIES-CHASSIS-MIB The status of the fan tray {#SNMPVALUE}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c916b4658e914e93af13b4fe7b58138e','0','2','0'), ('27481','20','get[1.3.6.1.4.1.6027.3.10.1.2.2.1.10.{#SNMPINDEX}]','10221','#{#SNMPVALUE}: Operating system','system.sw.os[chStackUnitCodeVersion.{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F10-S-SERIES-CHASSIS-MIB Current code version of this unit.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','67cce945315e426f9b12456fe95a6c1a','0','2','0'), ('27482','20','get[1.3.6.1.4.1.6027.3.10.1.2.2.1.21.{#SNMPINDEX}]','10221','#{#SNMPVALUE}: Hardware version(revision)','system.hw.version[chStackUnitProductRev.{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F10-S-SERIES-CHASSIS-MIB The unit manufacturer''s product revision','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bd68fcd8247744cb8c10e3dfc699bc7f','0','2','0'), ('27483','20','get[1.3.6.1.4.1.6027.3.10.1.2.2.1.12.{#SNMPINDEX}]','10221','#{#SNMPVALUE}: Hardware serial number','system.hw.serialnumber[chStackUnitSerialNumber.{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F10-S-SERIES-CHASSIS-MIB The unit''s serial number.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','eb6853c30dd04581b2e362d7747b40b5','0','2','0'), ('27484','20','get[1.3.6.1.4.1.6027.3.10.1.2.2.1.7.{#SNMPINDEX}]','10221','#{#SNMPVALUE}: Hardware model name','system.hw.model[chStackUnitModelID.{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F10-S-SERIES-CHASSIS-MIB The plugged-in model ID for this unit.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d6e3d7bb74b84e0c895a1b1b740f0e14','0','2','0'), ('27485','20','get[1.3.6.1.4.1.6027.3.10.1.2.2.1.14.{#SNMPINDEX}]','10221','Device {#SNMPVALUE}: Temperature','sensor.temp.value[chStackUnitTemp.{#SNMPINDEX}]','3m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F10-S-SERIES-CHASSIS-MIB The temperature of the unit.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4eaf5b777b0c4efeb34140618e18aaa5','0','2','0'), ('27508','20','get[1.3.6.1.2.1.47.1.1.1.1.8.1]','10222','Hardware version(revision)','system.hw.version','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fd86860f9ebc42b1970a845b7940daed','0','2','0'), ('27509','20','get[1.3.6.1.2.1.47.1.1.1.1.9.1]','10222','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIBdescription has changed','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c48928c7392d472d950804ee30936f0f','0','2','0'), ('27510','20','get[1.3.6.1.2.1.1.1.0]','10222','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9461071bb9fa44909aa181779c894a7b','0','2','0'), ('27511','20','get[1.3.6.1.4.1.171.10.97.2.36.1.1.3.0]','10222','CPU utilization','system.cpu.util[myCPUUtilization5Min.0]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MY-PROCESS-MIB The CPU utilization expressed in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ec0e7cc71b39447087f580569559a6d6','0','2','0'), ('27512','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.35.1.1.1.2]','10222','Memory Discovery','memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','80a71c76148f4408993f4d2fba2aac4c','0','2','0'), ('27513','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.1.1.23.1.2]','10222','Temperature Discovery','temperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d596adf697c1431cbe1244fe2737ca55','0','2','0'), ('27514','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.1.1.18.1.3]','10222','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1290d8eb44564a15b98d212c6f007b05','0','2','0'), ('27515','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.1.1.21.1.3]','10222','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5e0940a9219c4d3094c85777e89c63a6','0','2','0'), ('27517','20','get[1.3.6.1.4.1.171.10.97.2.1.1.23.1.3.{#SNMPINDEX}]','10222','{#SNMPVALUE}: Temperature','sensor.temp.value[mySystemTemperatureCurrent.{#SNMPINDEX}]','3m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MY-SYSTEM-MIB Return the current temperature of the FastSwitch.The temperature display is not supported for the current temperature returns to 0.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d861801102794d989895b4546a0e10fb','0','2','0'), ('27518','20','get[1.3.6.1.4.1.171.10.97.2.1.1.18.1.2.{#SNMPINDEX}]','10222','{#SNMPVALUE}: Power supply status','sensor.psu.status[mySystemElectricalSourceIsNormal.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'81','','','0','','','','','2',NULL,'MIB: MY-SYSTEM-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','949bf64a7d75429586292fd0acf4b84e','0','2','0'), ('27519','20','get[1.3.6.1.4.1.171.10.97.2.1.1.21.1.2.{#SNMPINDEX}]','10222','{#SNMPVALUE}: Fan status','sensor.fan.status[mySystemFanIsNormal.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'81','','','0','','','','','2',NULL,'MIB: MY-SYSTEM-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','77005f8940f44f47abe28debbcea1573','0','2','0'), ('27543','20','get[1.3.6.1.2.1.47.1.1.1.1.8.1]','10223','Hardware version(revision)','system.hw.version','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','06e2bd7f602140f49685ae8dbfa44660','0','2','0'), ('27544','20','get[1.3.6.1.2.1.47.1.1.1.1.9.1]','10223','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8e6d4c6568c54aeeb745c5ba43945174','0','2','0'), ('27545','20','get[1.3.6.1.4.1.171.12.1.1.12.0]','10223','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: DLINK-AGENT-MIB A text string containing the serial number of this device.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3dd0e86421b5410f9c34680650a0d9a5','0','2','0'), ('27546','20','get[1.3.6.1.2.1.1.1.0]','10223','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cc6cdf26ee0f4c5682c956c0ac741898','0','2','0'), ('27547','20','get[1.3.6.1.4.1.171.12.1.1.6.2.0]','10223','CPU utilization','system.cpu.util[agentCPUutilizationIn1min.0]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: DLINK-AGENT-MIB The unit of time is 1 minute. The value will be between 0% (idle) and 100%(very busy).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9d265ce34e9344c6875497e7ed0ebc89','0','2','0'), ('27548','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.1.1.9.1.1]','10223','Memory Discovery','memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0e1d87089c084979ade1f58cdedd42f8','0','2','0'), ('27549','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.11.1.8.1.1]','10223','Temperature Discovery','temperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','17702e5430f943fc9ebeefdbdd363e58','0','2','0'), ('27550','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.11.1.6.1.2,{#STATUS},1.3.6.1.4.1.171.12.11.1.6.1.3]','10223','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'swPowerID of EQUIPMENT-MIB::swPowerTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','57ec484412604bf091a2b8a5be1dff3e','0','2','0'), ('27551','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.11.1.7.1.2,{#STATUS},1.3.6.1.4.1.171.12.11.1.7.1.3]','10223','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'swFanID of EQUIPMENT-MIB::swFanTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8e7fe508f2ee4304a6097cabaf93b44f','0','2','0'), ('27553','20','get[1.3.6.1.4.1.171.12.11.1.8.1.2.{#SNMPINDEX}]','10223','#{#SNMPVALUE}: Temperature','sensor.temp.value[swTemperatureCurrent.{#SNMPINDEX}]','3m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: EQUIPMENT-MIB The shelf current temperature.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a84312b0296a432a948e6065c20749f1','0','2','0'), ('27554','20','get[1.3.6.1.4.1.171.12.11.1.6.1.3.{#SNMPINDEX}]','10223','#{#SNMPVALUE}: Power supply status','sensor.psu.status[swPowerStatus.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'83','','','0','','','','','2',NULL,'MIB: EQUIPMENT-MIB Indicates the current power status. lowVoltage : The voltage of the power unit is too low. overCurrent: The current of the power unit is too high. working : The power unit is working normally. fail : The power unit has failed. connect : The power unit is connected but not powered on. disconnect : The power unit is not connected.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7e87cca325f94ac091723f4dcef5ef26','0','2','0'), ('27555','20','get[1.3.6.1.4.1.171.12.11.1.7.1.3.{#SNMPINDEX}]','10223','#{#SNMPVALUE}: Fan status','sensor.fan.status[swFanStatus.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'82','','','0','','','','','2',NULL,'MIB: EQUIPMENT-MIB Indicates the current fan status. speed-0 : If the fan function is normal and the fan does not spin due to the temperature not reaching the threshold, the status of the fan is speed 0. speed-low : Fan spin using the lowest speed. speed-middle: Fan spin using the middle speed. speed-high : Fan spin using the highest speed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9fec4303859d411db13a470374862232','0','2','0'), ('27579','20','get[1.3.6.1.2.1.47.1.1.1.1.9.1]','10224','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7f6260a568644e89ba87ccca63102357','0','2','0'), ('27580','20','get[1.3.6.1.2.1.47.1.1.1.1.9.1]','10224','Hardware version(revision)','system.hw.version','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8ec263e1593e48d18b3e50f215e94196','0','2','0'), ('27582','20','get[1.3.6.1.2.1.47.1.1.1.1.11.1]','10224','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','93882ec52eed40778858e52dc7153093','0','2','0'), ('27583','20','get[1.3.6.1.2.1.47.1.1.1.1.2.1]','10224','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','42ec93c3013d428c9f72fe721ea46db5','0','2','0'), ('27584','20','get[1.3.6.1.4.1.1916.1.1.1.8.0]','10224','Temperature','sensor.temp.value[extremeCurrentTemperature.0]','3m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: EXTREME-SYSTEM-MIB Temperature readings of testpoint: Device Reference: https://gtacknowledge.extremenetworks.com/articles/Q_A/Does-EXOS-support-temperature-polling-via-SNMP-on-all-nodes-in-a-stack','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2e8384090e304767bc6bba60d822e223','0','2','0'), ('27585','20','get[1.3.6.1.4.1.1916.1.1.1.7.0]','10224','Temperature status','sensor.temp.status[extremeOverTemperatureAlarm.0]','3m','31d','0','0','3','','','','',NULL,'85','','','0','','','','','0',NULL,'MIB: EXTREME-SYSTEM-MIB Temperature status of testpoint: Device','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b17bfccc91f1489fb9f85d719ca19d70','0','2','0'), ('27586','20','get[1.3.6.1.4.1.1916.1.32.1.2.0]','10224','CPU utilization','system.cpu.util[extremeCpuMonitorTotalUtilization.0]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: EXTREME-SOFTWARE-MONITOR-MIB Total CPU utilization (percentage) as of last sampling.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fd93c5fb3e054f84b052d7f682a87655','0','2','0'), ('27587','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.1916.1.32.2.2.1.1]','10224','Memory Discovery','memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','53af0f95ffe243c394c273a1bc2857a3','0','2','0'), ('27588','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.1916.1.1.1.27.1.1]','10224','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Table of status of all power supplies in the system.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f3211654d55c4c778817e82ed2c123b6','0','2','0'), ('27589','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.1916.1.1.1.9.1.1]','10224','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1ed41878ed4a455c8a3871169225b8f6','0','2','0'), ('27591','20','get[1.3.6.1.4.1.1916.1.32.2.2.1.2.{#SNMPINDEX}]','10224','#{#SNMPVALUE}: Total memory','vm.memory.total[extremeMemoryMonitorSystemTotal.{#SNMPINDEX}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: EXTREME-SOFTWARE-MONITOR-MIB Total amount of DRAM in Kbytes in the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b22ba07a208d41788d0fb33074125ffd','0','2','0'), ('27593','20','get[1.3.6.1.4.1.1916.1.1.1.27.1.2.{#SNMPINDEX}]','10224','PSU {#SNMPVALUE}: Power supply status','sensor.psu.status[extremePowerSupplyStatus.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'86','','','0','','','','','2',NULL,'MIB: EXTREME-SYSTEM-MIB Status of the power supply {#SNMPVALUE}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ff7de77c363f4487ba9be3d262f912da','0','2','0'), ('27594','20','get[1.3.6.1.4.1.1916.1.1.1.9.1.4.{#SNMPINDEX}]','10224','Fan {#SNMPVALUE}: Fan speed','sensor.fan.speed[extremeFanSpeed.{#SNMPINDEX}]','1m','31d','365d','0','3','','rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: EXTREME-SYSTEM-MIB The speed (RPM) of a cooling fan in the fantray {#SNMPVALUE}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a9789017b3284366a56e7f9727ae20cd','0','2','0'), ('27595','20','get[1.3.6.1.4.1.1916.1.1.1.9.1.2.{#SNMPINDEX}]','10224','Fan {#SNMPVALUE}: Fan status','sensor.fan.status[extremeFanOperational.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'84','','','0','','','','','2',NULL,'MIB: EXTREME-SYSTEM-MIB Operational status of a cooling fan.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','601afb1fdc4744b29c2e52a260ccecfd','0','2','0'), ('27665','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.47.1.1.1.1.2,{#MODULE_NAME},1.3.6.1.2.1.47.1.1.1.1.7]','10227','Module Discovery','module.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Filter limits results to ''Module level1'' or Fabric Modules','0','7d','2','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','268421e66ba94cecac8fdeac7dfbffbb','0','2','0'), ('27666','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.47.1.1.1.1.2,{#MODULE_NAME},1.3.6.1.2.1.47.1.1.1.1.7]','10227','Temperature Discovery','temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering modules temperature (same filter as in Module Discovery) plus and temperature sensors','0','7d','2','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','14606d314fc24002a0a4cda2fa009d45','0','2','0'), ('27667','20','discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_DESCR},1.3.6.1.2.1.47.1.1.1.1.2]','10227','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering all entities of PhysicalClass - 7: fan(7)','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fdd2fcda49ab4f00861f1a2dcee1dcad','0','2','0'), ('27668','20','discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_DESCR},1.3.6.1.2.1.47.1.1.1.1.2]','10227','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering all entities of PhysicalClass - 6: powerSupply(6)','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','75f751bae6e64b9892c9283cefa8db80','0','2','0'), ('27669','20','discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7]','10227','Entity Discovery','entity.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ab903dd9cb4b49daba7a1bb0c2c65a1f','0','2','0'), ('27671','20','get[1.3.6.1.4.1.25506.2.6.1.1.1.1.6.{#SNMPINDEX}]','10227','{#MODULE_NAME}: CPU utilization','system.cpu.util[hh3cEntityExtCpuUsage.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HH3C-ENTITY-EXT-MIB The CPU usage for this entity. Generally, the CPU usage will calculate the overall CPU usage on the entity, and it is not sensible with the number of CPU on the entity','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','edbaa4c5e6e744b3bd4d7ab85b42c1ca','0','2','0'), ('27672','20','get[1.3.6.1.4.1.25506.2.6.1.1.1.1.12.{#SNMPINDEX}]','10227','{#SNMPVALUE}: Temperature','sensor.temp.value[hh3cEntityExtTemperature.{#SNMPINDEX}]','3m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HH3C-ENTITY-EXT-MIB The temperature for the {#SNMPVALUE}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4b18458608f74e0ca48af5cb674e324d','0','2','0'), ('27673','20','get[1.3.6.1.4.1.25506.2.6.1.1.1.1.19.{#SNMPINDEX}]','10227','{#ENT_NAME}: Fan status','sensor.fan.status[hh3cEntityExtErrorStatus.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'87','','','0','','','','','2',NULL,'MIB: HH3C-ENTITY-EXT-MIB Indicate the error state of this entity object. fanError(41) means that the fan stops working.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9cacbc1e037a4c0abdf0862014484a3c','0','2','0'), ('27674','20','get[1.3.6.1.4.1.25506.2.6.1.1.1.1.19.{#SNMPINDEX}]','10227','{#ENT_NAME}: Power supply status','sensor.psu.status[hh3cEntityExtErrorStatus.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'87','','','0','','','','','2',NULL,'MIB: HH3C-ENTITY-EXT-MIB Indicate the error state of this entity object. psuError(51) means that the Power Supply Unit is in the state of fault. rpsError(61) means the Redundant Power Supply is in the state of fault.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1ed2aa667cc94e6f9fb3abb9cb8de9b2','0','2','0'), ('27675','20','get[1.3.6.1.2.1.47.1.1.1.1.10.{#SNMPINDEX}]','10227','{#ENT_NAME}: Operating system','system.sw.os[entPhysicalSoftwareRev.{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a54f57e58f494300b99161b1fb8f2edf','0','2','0'), ('27676','20','get[1.3.6.1.2.1.47.1.1.1.1.8.{#SNMPINDEX}]','10227','{#ENT_NAME}: Hardware version(revision)','system.hw.version[entPhysicalHardwareRev.{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a63db3df3939447397df5bf9a58edde1','0','2','0'), ('27677','20','get[1.3.6.1.2.1.47.1.1.1.1.9.{#SNMPINDEX}]','10227','{#ENT_NAME}: Firmware version','system.hw.firmware[entPhysicalFirmwareRev.{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','88a392e093444292b3c58c5f9d5305a5','0','2','0'), ('27678','20','get[1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX}]','10227','{#ENT_NAME}: Hardware serial number','system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9ebc80e149fc4db7a4fb7df2322aad86','0','2','0'), ('27679','20','get[1.3.6.1.2.1.47.1.1.1.1.2.{#SNMPINDEX}]','10227','{#ENT_NAME}: Hardware model name','system.hw.model[entPhysicalDescr.{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cc241e313bde48e1bd23f3eefb667439','0','2','0'), ('27745','20','discovery[{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7]','10229','MPU Discovery','mpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'http://support.huawei.com/enterprise/KnowledgebaseReadAction.action?contentId=KB1000090234. Filter limits results to Main Processing Units','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','597d528e3de944a5807ff37a97763a7e','0','2','0'), ('27746','20','discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7]','10229','Entity Discovery','entity.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','df877d1d7c9f44b5917b47aa474bbd2f','0','2','0'), ('27747','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.2011.5.25.31.1.1.10.1.1]','10229','FAN Discovery','discovery.fans','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','40ceaa1bc97342c18e6af3e0b931a08b','0','2','0'), ('27748','20','get[1.3.6.1.2.1.47.1.1.1.1.8.{#SNMPINDEX}]','10229','{#ENT_NAME}: Hardware version(revision)','system.hw.version[entPhysicalHardwareRev.{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','110646e0177f4fbe840f6ba2d1d2afc4','0','2','0'), ('27749','20','get[1.3.6.1.2.1.47.1.1.1.1.10.{#SNMPINDEX}]','10229','{#ENT_NAME}: Operating system','system.sw.os[entPhysicalSoftwareRev.{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4472c8f94cd241468c851283f9854730','0','2','0'), ('27750','20','get[1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX}]','10229','{#ENT_NAME}: Hardware serial number','system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d7e128d526c14d1bb5519090104f0e04','0','2','0'), ('27751','20','get[1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.{#SNMPINDEX}]','10229','{#ENT_NAME}: Temperature','sensor.temp.value[hwEntityTemperature.{#SNMPINDEX}]','3m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HUAWEI-ENTITY-EXTENT-MIB The temperature for the {#SNMPVALUE}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','29549c71091a44108377a90eb9afff25','0','2','0'), ('27753','20','get[1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.{#SNMPINDEX}]','10229','{#ENT_NAME}: CPU utilization','system.cpu.util[hwEntityCpuUsage.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HUAWEI-ENTITY-EXTENT-MIB The CPU usage for this entity. Generally, the CPU usage will calculate the overall CPU usage on the entity, and itis not sensible with the number of CPU on the entity. Reference: http://support.huawei.com/enterprise/KnowledgebaseReadAction.action?contentId=KB1000090234','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6fae73ea06ff4e99956085fb807d75ae','0','2','0'), ('27754','20','get[1.3.6.1.2.1.47.1.1.1.1.2.{#SNMPINDEX}]','10229','{#ENT_NAME}: Hardware model name','system.hw.model[entPhysicalDescr.{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c25af879114744fda58fb8516a0c171a','0','2','0'), ('27755','20','get[1.3.6.1.4.1.2011.5.25.31.1.1.10.1.7.{#SNMPINDEX}]','10229','#{#SNMPVALUE}: Fan status','sensor.fan.status[hwEntityFanState.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'89','','','0','','','','','2',NULL,'MIB: HUAWEI-ENTITY-EXTENT-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dfd00d1c27034d1b8f800939e33e8ddb','0','2','0'), ('27777','20','get[1.3.6.1.4.1.10222.2.1.1.1.0]','10230','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ICS-CHASSIS-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9cfafe1389af4e569886c5acd8d95de9','0','2','0'), ('27778','20','get[1.3.6.1.4.1.10222.2.1.1.1.0]','10230','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ICS-CHASSIS-MIB','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','656086e221e84a9a90cc16855f564571','0','2','0'), ('27779','20','discovery[{#SENSOR_TYPE},1.3.6.1.4.1.10222.2.1.9.8.1.2,{#SENSOR_INFO},1.3.6.1.4.1.10222.2.1.9.8.1.7]','10230','Temperature Discovery','temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering sensor''s table with temperature filter','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9c408be55f0b4b1384191275f1b624a8','0','2','0'), ('27780','20','discovery[{#ENT_CLASS},1.3.6.1.4.1.10222.2.1.1.9.1.3,{#ENT_NAME},1.3.6.1.4.1.10222.2.1.1.9.1.2]','10230','Unit Discovery','unit.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1b369978fa354767834598c87c0df1e0','0','2','0'), ('27781','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.10222.2.1.4.7.1.2]','10230','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A textual description of the power supply, that can be assigned by the administrator.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','757aae6d5bcc40f5a14f1c3225569892','0','2','0'), ('27782','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.10222.2.1.6.5.1.2]','10230','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'icsChassisFanDescription of icsChassisFanTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','74e3c6efb7f24ffaa2b59c3518d37b32','0','2','0'), ('27783','20','get[1.3.6.1.4.1.10222.2.1.9.8.1.3.{#SNMPINDEX}]','10230','{#SENSOR_INFO}: Temperature status','sensor.temp.status[icsChassisSensorSlotOperStatus.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'91','','','0','','','','','2',NULL,'MIB: ICS-CHASSIS-MIB The operational status of the sensor.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','16048f5e4b6a497d8007336a3faa7ccf','0','2','0'), ('27784','20','get[1.3.6.1.4.1.10222.2.1.9.8.1.8.{#SNMPINDEX}]','10230','{#SENSOR_INFO}: Temperature','sensor.temp.value[icsChassisSensorSlotValue.{#SNMPINDEX}]','3m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ICS-CHASSIS-MIB The current value read from the sensor.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','943a4862c1e34cc1a30364a2677b327b','0','2','0'), ('27785','20','get[1.3.6.1.4.1.10222.2.1.1.10.1.1.{#SNMPINDEX}]','10230','{#ENT_NAME}: Hardware serial number','system.hw.serialnumber[icsChassisSystemUnitFruSerialNumber.{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ICS-CHASSIS-MIB The serial number of the FRU. If not available, this value is a zero-length string.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fe7ccdebf77246009bc91f9a18cc8ddb','0','2','0'), ('27786','20','get[1.3.6.1.4.1.10222.2.1.4.7.1.3.{#SNMPINDEX}]','10230','{#SNMPVALUE}: Power supply status','sensor.psu.status[icsChassisPowerSupplyEntry.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'92','','','0','','','','','2',NULL,'MIB: ICS-CHASSIS-MIB Actual status of the power supply: (1) unknown: status not known. (2) disabled: power supply is disabled. (3) failed - power supply is unable to supply power due to failure. (4) warning - power supply is supplying power, but an output or sensor is bad or warning. (5) standby - power supply believed usable,but not supplying power. (6) engaged - power supply is supplying power. (7) redundant - power supply is supplying power, but not needed. (8) notPresent - power supply is supplying power is not present.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2fbaed6a1a0d4b5b85be9f48d0fd7862','0','2','0'), ('27787','20','get[1.3.6.1.4.1.10222.2.1.6.5.1.3.{#SNMPINDEX}]','10230','{#SNMPVALUE}: Fan status','sensor.fan.status[icsChassisFanOperStatus.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'90','','','0','','','','','2',NULL,'MIB: ICS-CHASSIS-MIB The operational status of the fan unit.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c0bcbe5b06e34e65b1ea5d24e5c7bf18','0','2','0'), ('27812','20','get[1.3.6.1.4.1.2636.3.1.2.0]','10231','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: JUNIPER-MIB The name, model, or detailed description of the box,indicating which product the box is about, for example ''M40''.','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7a472141ebcf4816bffe9bb49f003db6','0','2','0'), ('27813','20','get[1.3.6.1.4.1.2636.3.1.3.0]','10231','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: JUNIPER-MIB The serial number of this subject, blank if unknown or unavailable.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b836efdbd3ac4becac319030250c1beb','0','2','0'), ('27814','20','get[1.3.6.1.4.1.2636.3.4.2.3.1.0]','10231','Overall system health status','system.status[jnxRedAlarmState.0]','30s','31d','0','0','3','','','','',NULL,'93','','','0','','','','','0',NULL,'MIB: JUNIPER-ALARM-MIB The red alarm indication on the craft interface panel. The red alarm is on when there is some system failure or power supply failure or the system is experiencing a hardware malfunction or some threshold is being exceeded. This red alarm state could be turned off by the ACO/LT (Alarm Cut Off / Lamp Test) button on the front panel module.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','414a29c595b2439dacb15b4fa0734ab4','0','2','0'), ('27815','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.5]','10231','CPU and Memory Discovery','jnxOperatingTable.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning JUNIPER-MIB::jnxOperatingTable for CPU and Memory http://kb.juniper.net/InfoCenter/index?page=content&id=KB17526&actp=search. Filter limits results to Routing Engines','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3ce46d56008248cf960c6bf689ea7c0b','0','2','0'), ('27816','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.7,{#SENSOR_INFO},1.3.6.1.4.1.2636.3.1.13.1.5]','10231','Temperature discovery','jnxOperatingTable.discovery.temp','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning JUNIPER-MIB::jnxOperatingTable for Temperature http://kb.juniper.net/InfoCenter/index?page=content&id=KB17526&actp=search. Filter limits results to Routing Engines','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e28a9bc06ada4427a7e135aa41c4f76b','0','2','0'), ('27817','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.5.4]','10231','FAN Discovery','jnxOperatingTable.discovery.fans','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning JUNIPER-MIB::jnxOperatingTable for Fans','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6e60561a198d43cf8c0fbe9a8ba1c492','0','2','0'), ('27818','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.5.2]','10231','PSU Discovery','jnxOperatingTable.discovery.psu','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning JUNIPER-MIB::jnxOperatingTable for Power Supplies','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aa36adb11a874374a739d96a2f9a0b3d','0','2','0'), ('27821','20','get[1.3.6.1.4.1.2636.3.1.13.1.7.{#SNMPINDEX}]','10231','{#SENSOR_INFO}: Temperature','sensor.temp.value[jnxOperatingTemp.{#SNMPINDEX}]','3m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: JUNIPER-MIB The temperature in Celsius (degrees C) of {#SENSOR_INFO}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','96f44fbce5de45e6918efd140283453b','0','2','0'), ('27822','20','get[1.3.6.1.4.1.2636.3.1.13.1.6.4.{#SNMPINDEX}]','10231','{#SNMPVALUE}: Fan status','sensor.fan.status[jnxOperatingState.4.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'94','','','0','','','','','2',NULL,'MIB: JUNIPER-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','be611a0c7aee4d72a0b5c53d199b7469','0','2','0'), ('27823','20','get[1.3.6.1.4.1.2636.3.1.13.1.6.2.{#SNMPINDEX}]','10231','{#SNMPVALUE}: Power supply status','sensor.psu.status[jnxOperatingState.2.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'94','','','0','','','','','2',NULL,'MIB: JUNIPER-MIB If they are using DC power supplies there is a known issue on PR 1064039 where the fans do not detect the temperature correctly and fail to cool the power supply causing the shutdown to occur. This is fixed in Junos 13.3R7 https://forums.juniper.net/t5/Routing/PEM-0-not-OK-MX104/m-p/289644#M14122','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c7101436ab3a4c0696cf74bc3c97c265','0','2','0'), ('27893','20','get[1.3.6.1.2.1.1.1.0]','10233','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8d2c5a405ffa42fc81a2c9b914e20874','0','2','0'), ('27894','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10233','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2c5a89f75a8d4e38ad021b3539ce8273','0','2','0'), ('27895','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10233','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','260eff3ec4034e33aea9c25962a782be','0','2','0'), ('27898','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10233','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0636e173288d42e68faf62c381a65087','0','2','0'), ('27900','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10233','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7d4a1591887848028ea8bae81b7d01a7','0','2','0'), ('27906','15','','10233','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b602ff4381e04e50a9282fe6f9f5c834','0','2','0'), ('27930','20','get[1.3.6.1.4.1.4526.10.1.1.1.3.0]','10234','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FASTPATH-SWITCHING-MIB','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2470e113b1174c70a1265bf4c4252b5f','0','2','0'), ('27931','20','get[1.3.6.1.4.1.4526.10.1.1.1.4.0]','10234','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FASTPATH-SWITCHING-MIB Serial number of the switch','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','697f863cf86544d4a366e8827976ed50','0','2','0'), ('27935','20','get[1.3.6.1.4.1.4526.10.1.1.5.2.0]','10234','Total memory','vm.memory.total[agentSwitchCpuProcessMemAvailable.0]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FASTPATH-SWITCHING-MIB The total Memory allocated for the tasks','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','98037eeab349478c8c393b163ec5193e','0','2','0'), ('27936','20','get[1.3.6.1.4.1.4526.10.1.1.4.9.0]','10234','CPU utilization','system.cpu.util[agentSwitchCpuProcessTotalUtilization.0]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FASTPATH-SWITCHING-MIB The CPU utilization expressed in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e8ffc912f0ee47cca513861fcecfddb0','0','2','0'), ('27937','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.4526.10.43.1.8.1.1]','10234','Temperature Discovery','temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'FASTPATH-BOXSERVICES-PRIVATE-MIB::boxServicesTempSensorsTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c63b577cb8544b54a40a4d86bc926ada','0','2','0'), ('27938','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.4526.10.43.1.6.1.1]','10234','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'FASTPATH-BOXSERVICES-PRIVATE-MIB::1.3.6.1.4.1.4526.10.43.1.6.1.1','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8fb96a540bab4deba00626237797cb62','0','2','0'), ('27939','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.4526.10.43.1.7.1.1]','10234','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'FASTPATH-BOXSERVICES-PRIVATE-MIB::boxServicesPowSupplyIndex','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','251d90e9c6ae4dad92328b677f6d6edf','0','2','0'), ('27940','20','get[1.3.6.1.4.1.4526.10.43.1.8.1.3.{#SNMPINDEX}]','10234','#{#SNMPVALUE}: Temperature status','sensor.temp.status[boxServicesTempSensorState.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'99','','','0','','','','','2',NULL,'MIB: FASTPATH-BOXSERVICES-PRIVATE-MIB The state of temperature sensor','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ac4a292ab2e548fea3326aaa92162140','0','2','0'), ('27941','20','get[1.3.6.1.4.1.4526.10.43.1.8.1.5.{#SNMPINDEX}]','10234','#{#SNMPVALUE}: Temperature','sensor.temp.value[boxServicesTempSensorTemperature.{#SNMPINDEX}]','3m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FASTPATH-BOXSERVICES-PRIVATE-MIB The temperature value reported by sensor','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','488762ecfb1549d294886681a6ec34f6','0','2','0'), ('27942','20','get[1.3.6.1.4.1.4526.10.43.1.6.1.3.{#SNMPINDEX}]','10234','#{#SNMPVALUE}: Fan status','sensor.fan.status[boxServicesFanItemState.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'98','','','0','','','','','2',NULL,'MIB: FASTPATH-BOXSERVICES-PRIVATE-MIB The status of fan','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9f515526de2c47108182b444d1d093c3','0','2','0'), ('27943','20','get[1.3.6.1.4.1.4526.10.43.1.7.1.3.{#SNMPINDEX}]','10234','#{#SNMPVALUE}: Power supply status','sensor.psu.status[boxServicesPowSupplyItemState.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'97','','','0','','','','','2',NULL,'MIB: FASTPATH-BOXSERVICES-PRIVATE-MIB The status of power supply','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aa5a704044b44909b2a348184ec71bc0','0','2','0'), ('27967','20','get[1.3.6.1.2.1.47.1.1.1.1.9.1]','10235','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e7dda2d7f577404dbe8e5beba7609617','0','2','0'), ('27968','20','get[1.3.6.1.2.1.47.1.1.1.1.8.1]','10235','Hardware version(revision)','system.hw.version','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a842a44da43a4d2c906d0c642eb11411','0','2','0'), ('27970','20','get[1.3.6.1.2.1.47.1.1.1.1.11.1]','10235','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','684868048c1645aea9d8ad94514bd4c6','0','2','0'), ('27971','20','get[1.3.6.1.2.1.47.1.1.1.1.13.1]','10235','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5ff90f06a84a43ac937d3798b360bbd9','0','2','0'), ('27972','20','get[1.3.6.1.4.1.27514.100.1.11.7.0]','10235','Used memory','vm.memory.used[switchMemoryBusy.0]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: QTECH-MIB Used memory in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8821718704db4ab4a8af8fbeb61dde93','0','2','0'), ('27973','20','get[1.3.6.1.4.1.27514.100.1.11.6.0]','10235','Total memory','vm.memory.total[switchMemorySize.0]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: QTECH-MIB The total memory expressed in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','609971d1876444659f779ef28ed81ce7','0','2','0'), ('27975','20','get[1.3.6.1.4.1.27514.100.1.11.10.0]','10235','CPU utilization','system.cpu.util[switchCpuUsage.0]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: QTECH-MIB The CPU utilization expressed in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','daab52a7d91b431b8ec579200e53a0c4','0','2','0'), ('27997','20','get[1.3.6.1.4.1.11863.6.1.1.5.0]','10236','Hardware version(revision)','system.hw.version','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TPLINK-SYSINFO-MIB The hardware version of the product.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','20690cbfeb924ec79f67200da3e0577c','0','2','0'), ('27998','20','get[1.3.6.1.4.1.11863.6.1.1.6.0]','10236','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TPLINK-SYSINFO-MIB The software version of the product.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1d20905fda0442b8b7b0eefcf473afd9','0','2','0'), ('27999','20','get[1.3.6.1.4.1.11863.6.1.1.8.0]','10236','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TPLINK-SYSINFO-MIB The Serial number of the product.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d2cc080e7e7f49a19bb27737c749ba36','0','2','0'), ('28000','20','get[1.3.6.1.4.1.11863.6.1.1.5.0]','10236','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TPLINK-SYSINFO-MIB The hardware version of the product.','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a571370a974c43deb9b5bb531d4dc4ce','0','2','0'), ('28026','20','get[1.2.840.10036.3.1.2.1.3.5]','10237','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IEEE802dot11-MIB A printable string used to identify the manufacturer''s product name of the resource. Maximum string length is 128 octets.','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e770de183b1e4ffc9348750520719b41','0','2','0'), ('28027','20','get[1.2.840.10036.3.1.2.1.4.5]','10237','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IEEE802dot11-MIB Printable string used to identify the manufacturer''s product version of the resource. Maximum string length is 128 octets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9e8ab4b180f24b64bcddfc1606d616d0','0','2','0'), ('28031','20','get[1.3.6.1.4.1.10002.1.1.1.4.2.1.3.2]','10237','Load average (5m avg)','system.cpu.load.avg5[loadValue.2]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FROGFOOT-RESOURCES-MIB 5 minute load average of processor load.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1aaf7d729983431cb28351e7ba0c8235','0','2','0'), ('28141','20','get[1.3.6.1.4.1.11.2.14.11.5.1.1.3.0]','10250','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: NETSWITCH-MIB Contains the operating code version number (also known as software or firmware). For example, a software version such as A.08.01 is described as follows: A the function set available in your router 08 the common release number 01 updates to the current common release','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dadf12eb4c0a42bf9504e15bc4fe6d7c','0','2','0'), ('28142','20','get[1.3.6.1.4.1.11.2.36.1.1.2.9.0]','10250','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SEMI-MIB','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','12d7d4a915714166b2c0a48733235ac1','0','2','0'), ('28143','20','get[1.3.6.1.4.1.11.2.14.11.5.1.9.6.1.0]','10250','CPU utilization','system.cpu.util[hpSwitchCpuStat.0]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: STATISTICS-MIB The CPU utilization in percent(%). Reference: http://h20564.www2.hpe.com/hpsc/doc/public/display?docId=emr_na-c02597344&sp4ts.oid=51079','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','083172af308e401a99a662f615a5b450','0','2','0'), ('28144','20','discovery[{#SENSOR_TYPE},1.3.6.1.2.1.99.1.1.1.1,{#SENSOR_INFO},1.3.6.1.2.1.47.1.1.1.1.2,{#SENSOR_PRECISION},1.3.6.1.2.1.99.1.1.1.3]','10250','Temperature Discovery','temp.precision0.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'ENTITY-SENSORS-MIB::EntitySensorDataType discovery with temperature filter','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5039f958791e40dbb19e16359dad0898','0','2','0'), ('28145','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.11.2.14.11.5.1.1.2.1.1.1.1]','10250','Memory Discovery','memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of NETSWITCH-MIB::hpLocalMemTable, A table that contains information on all the local memory for each slot.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e175ffc9f7db4714bc99450e86a3963f','0','2','0'), ('28146','20','discovery[{#ENT_CLASS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.2,{#ENT_DESCR},1.3.6.1.4.1.11.2.14.11.1.2.6.1.7,{#ENT_STATUS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.4]','10250','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering all entities of hpicfSensorObjectId that ends with: 11.2.3.7.8.3.2 - fans and are present','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ebc407e29b1f4575b50ca7bfb3a2abc8','0','2','0'), ('28147','20','discovery[{#ENT_CLASS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.2,{#ENT_DESCR},1.3.6.1.4.1.11.2.14.11.1.2.6.1.7,{#ENT_STATUS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.4]','10250','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering all entities of hpicfSensorObjectId that ends with: 11.2.3.7.8.3.1 - power supplies and are present','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','75ff389432a443dd89075f5a89bfbc1e','0','2','0'), ('28148','20','discovery[{#ENT_CLASS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.2,{#ENT_DESCR},1.3.6.1.4.1.11.2.14.11.1.2.6.1.7,{#ENT_STATUS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.4]','10250','Temp Status Discovery','temp.status.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering all entities of hpicfSensorObjectId that ends with: 11.2.3.7.8.3.3 - over temp status and are present','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8e9738236f3a4f5eb29df85a46e82326','0','2','0'), ('28149','20','discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7]','10250','Entity Discovery','entity.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4d827ed3c2a6436d9ea453ef1568d47e','0','2','0'), ('28150','20','get[1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX}]','10250','{#SENSOR_INFO}: Temperature','sensor.temp.value[entPhySensorValue.{#SNMPINDEX}]','3m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-SENSORS-MIB The most recent measurement obtained by the agent for this sensor. To correctly interpret the value of this object, the associated entPhySensorType, entPhySensorScale, and entPhySensorPrecision objects must also be examined.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0f33142de9874eb288d48337becae31a','0','2','0'), ('28153','20','get[1.3.6.1.4.1.11.2.14.11.5.1.1.2.1.1.1.7.{#SNMPINDEX}]','10250','#{#SNMPVALUE}: Used memory','vm.memory.used[hpLocalMemAllocBytes.{#SNMPINDEX}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: NETSWITCH-MIB The number of currently allocated bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a724e90409b746068c4765dbbcfaf70d','0','2','0'), ('28154','20','get[1.3.6.1.4.1.11.2.14.11.1.2.6.1.4.{#SNMPINDEX}]','10250','{#ENT_DESCR}: Fan status','sensor.fan.status[hpicfSensorStatus.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'88','','','0','','','','','2',NULL,'MIB: HP-ICF-CHASSIS Actual status indicated by the sensor: {#ENT_DESCR}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','939c03f1532944b4bfb732eb52b4d566','0','2','0'), ('28155','20','get[1.3.6.1.4.1.11.2.14.11.1.2.6.1.4.{#SNMPINDEX}]','10250','{#ENT_DESCR}: Power supply status','sensor.psu.status[hpicfSensorStatus.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'88','','','0','','','','','2',NULL,'MIB: HP-ICF-CHASSIS Actual status indicated by the sensor: {#ENT_DESCR}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','221f46a720ee4b2dbb35ad055f784146','0','2','0'), ('28156','20','get[1.3.6.1.4.1.11.2.14.11.1.2.6.1.4.{#SNMPINDEX}]','10250','{#ENT_DESCR}: Temperature status','sensor.temp.status[hpicfSensorStatus.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'88','','','0','','','','','2',NULL,'MIB: HP-ICF-CHASSIS Actual status indicated by the sensor: {#ENT_DESCR}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e5dbc6e86d0e4272aab83171cd9115e7','0','2','0'), ('28157','20','get[1.3.6.1.2.1.47.1.1.1.1.8.{#SNMPINDEX}]','10250','{#ENT_NAME}: Hardware version(revision)','system.hw.version[entPhysicalHardwareRev.{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','baffe9cf11744c2286592a35934fb5b0','0','2','0'), ('28158','20','get[1.3.6.1.2.1.47.1.1.1.1.2.{#SNMPINDEX}]','10250','{#ENT_NAME}: Hardware model name','system.hw.model[entPhysicalDescr.{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6bd9d8c8d9cd473fb7e562cbde4de097','0','2','0'), ('28196','20','discovery[{#SENSOR_TYPE},1.3.6.1.2.1.99.1.1.1.1,{#SENSOR_INFO},1.3.6.1.2.1.47.1.1.1.1.2,{#SENSOR_PRECISION},1.3.6.1.2.1.99.1.1.1.3]','10251','Temperature Discovery','temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'ENTITY-SENSORS-MIB::EntitySensorDataType discovery with temperature filter','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','247124c5f8db4825bf4ea593bd0ff413','0','2','0'), ('28197','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.99.1.1.1.1,{#SENSOR_INFO},1.3.6.1.2.1.47.1.1.1.1.2]','10251','Fan Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'ENTITY-SENSORS-MIB::EntitySensorDataType discovery with rpm filter','0','7d','2','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2c10f61247804bd4a8aa59fb3568d938','0','2','0'), ('28198','20','discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7]','10251','Entity Discovery','entity.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','55a44fb2235f4e25b960422338674193','0','2','0'), ('28199','20','discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7]','10251','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8d0cb484e4544ffca4319ccece754123','0','2','0'), ('28200','20','get[1.3.6.1.2.1.99.1.1.1.5.{#SNMPINDEX}]','10251','{#SENSOR_INFO}: Temperature status','sensor.temp.status[entPhySensorOperStatus.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'57','','','0','','','','','2',NULL,'MIB: ENTITY-SENSORS-MIB The operational status of the sensor {#SENSOR_INFO}. Possible values: - ok(1) indicates that the agent can obtain the sensor value. - unavailable(2) indicates that the agent presently cannot obtain the sensor value. - nonoperational(3) indicates that the agent believes the sensor is broken. The sensor could have a hard failure (disconnected wire), or a soft failure such as out-of-range, jittery, or wildly fluctuating readings.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4f298c0f2b6547b7b1827b3faebd1089','0','2','0'), ('28201','20','get[1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX}]','10251','{#SENSOR_INFO}: Temperature','sensor.temp.value[entPhySensorValue.{#SNMPINDEX}]','3m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-SENSORS-MIB The most recent measurement obtained by the agent for this sensor. To correctly interpret the value of this object, the associated entPhySensorType, entPhySensorScale, and entPhySensorPrecision objects must also be examined.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ffe7f6dff12f4b4ba24ddc28c6d1182b','0','2','0'), ('28202','20','get[1.3.6.1.2.1.99.1.1.1.5.{#SNMPINDEX}]','10251','{#SENSOR_INFO}: Fan status','sensor.fan.status[entPhySensorOperStatus.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'57','','','0','','','','','2',NULL,'MIB: ENTITY-SENSORS-MIB The operational status of the sensor {#SENSOR_INFO}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','401d26902e6f4080ab2b0123d95a08ba','0','2','0'), ('28203','20','get[1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX}]','10251','{#SENSOR_INFO}: Fan speed','sensor.fan.speed[entPhySensorValue.{#SNMPINDEX}]','1m','31d','365d','0','3','','rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-SENSORS-MIB The most recent measurement obtained by the agent for this sensor. To correctly interpret the value of this object, the associated entPhySensorType, entPhySensorScale, and entPhySensorPrecision objects must also be examined.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','284de830d5924f528b0c86abe5dbc48d','0','2','0'), ('28204','20','get[1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX}]','10251','{#ENT_NAME}: Hardware serial number','system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9f2e2fd678e94554be29654a5746099f','0','2','0'), ('28205','20','get[1.3.6.1.2.1.47.1.1.1.1.13.{#SNMPINDEX}]','10251','{#ENT_NAME}: Hardware model name','system.hw.model[entPhysicalModelName.{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d3643a044d4544e8a3487ed79c3a5390','0','2','0'), ('28206','20','get[1.3.6.1.2.1.131.1.1.1.3.{#SNMPINDEX}]','10251','{#ENT_NAME}: Power supply status','sensor.psu.status[entStateOper.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'95','','','0','','','','','2',NULL,'MIB: ENTITY-STATE-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','38a00c9f9f9447d0a0c9788ca9dcc9f2','0','2','0'), ('28250','5','','10048','Utilization of vmware collector data collector processes, in %','zabbix[process,vmware collector,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the vmware collector processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a5a7076a175c400f866a4d873d12e1e4','0','2','0'), ('28251','5','','10048','VMware cache, % used','zabbix[vmware,buffer,pused]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The availability statistics of Zabbix vmware cache. The percentage of used data buffer.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fc7412c1a02240b7931d3511743a2662','0','2','0'), ('28308','20','discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7]','10254','Entity discovery','entity.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','54b839c0606741bfad5c84497cf1d295','0','2','0'), ('28309','20','discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7]','10254','PSU discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','01b83e46160a437da4345824f472cc3b','0','2','0'), ('28323','20','get[1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX}]','10254','{#SENSOR_INFO}: Temperature','sensor.temp.value[entPhySensorValue.{#SNMPINDEX}]','3m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-SENSORS-MIB The most recent measurement obtained by the agent for this sensor. To correctly interpret the value of this object, the associated entPhySensorType, entPhySensorScale, and entPhySensorPrecision objects must also be examined.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0f769e8ce0b647989085460beb9a2155','0','2','0'), ('28324','20','get[1.3.6.1.2.1.99.1.1.1.5.{#SNMPINDEX}]','10254','{#SENSOR_INFO}: Temperature status','sensor.temp.status[entPhySensorOperStatus.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'58','','','0','','','','','2',NULL,'MIB: ENTITY-SENSORS-MIB The operational status of the sensor {#SENSOR_INFO}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2851148fc01c4ba5afb5ab6a3deba5ff','0','2','0'), ('28325','20','get[1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX}]','10254','{#SENSOR_INFO}: Fan speed','sensor.fan.speed[entPhySensorValue.{#SNMPINDEX}]','1m','31d','365d','0','3','','rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-SENSORS-MIB The most recent measurement obtained by the agent for this sensor. To correctly interpret the value of this object, the associated entPhySensorType, entPhySensorScale, and entPhySensorPrecision objects must also be examined.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7d86974a2de14ce3a254172b6bf0761f','0','2','0'), ('28326','20','get[1.3.6.1.2.1.99.1.1.1.5.{#SNMPINDEX}]','10254','{#SENSOR_INFO}: Fan status','sensor.fan.status[entPhySensorOperStatus.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'58','','','0','','','','','2',NULL,'MIB: ENTITY-SENSORS-MIB The operational status of the sensor {#SENSOR_INFO}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c5e6aaebbf9d467488fdfa1127a31fd7','0','2','0'), ('28327','20','get[1.3.6.1.2.1.47.1.1.1.1.13.{#SNMPINDEX}]','10254','{#ENT_NAME}: Hardware model name','system.hw.model[entPhysicalModelName.{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','161777c6b77c4c91a11e90dda46d4ec5','0','2','0'), ('28328','20','get[1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX}]','10254','{#ENT_NAME}: Hardware serial number','system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2f25bd11644d4bd3917d6c6693e74c99','0','2','0'), ('28329','20','get[1.3.6.1.2.1.131.1.1.1.3.{#SNMPINDEX}]','10254','{#ENT_NAME}: Power supply status','sensor.psu.status[entStateOper.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'96','','','0','','','','','2',NULL,'MIB: ENTITY-STATE-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3ec518948c0d4472b55adc761ef7855d','0','2','0'), ('28388','20','get[1.3.6.1.4.1.232.6.2.6.1.0]','10256','System temperature status','sensor.temp.status[cpqHeThermalCondition.0]','1m','31d','0','0','3','','','','',NULL,'102','','','0','','','','','0',NULL,'MIB: CPQHLTH-MIB This value specifies the overall condition of the system''s thermal environment. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','399110973c134983bd5020b9e5b509f4','0','2','0'), ('28390','20','get[1.3.6.1.4.1.232.2.2.4.2.0]','10256','Hardware model name','system.hw.model','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CPQSINFO-MIB The machine product name.The name of the machine used in this system.','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2708e6cb2ba240a791685ebdcab3407f','0','2','0'), ('28391','20','get[1.3.6.1.4.1.232.2.2.2.1.0]','10256','Hardware serial number','system.hw.serialnumber','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CPQSINFO-MIB The serial number of the physical system unit. The string will be empty if the system does not report the serial number function.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','96e27ad668944845a7f598f35b577d18','0','2','0'), ('28392','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10256','Temperature Discovery','tempDescr.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d39d17234d34419ab9bb0c1d90505bff','0','2','0'), ('28393','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10256','Temperature Discovery Ambient','tempDescr.discovery.ambient','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with ambient(11) and 0.1 index filter','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','279cdcdb6d304a7fb6ba0667c55fc774','0','2','0'), ('28394','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10256','Temperature Discovery CPU','tempDescr.discovery.cpu','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with cpu(6) filter','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8a0f24370b2246799b3db8c547f34d3e','0','2','0'), ('28395','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10256','Temperature Discovery Memory','tempDescr.discovery.memory','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with memory(7) filter','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f35e84ec9cb74bd19610fa7fdc59433d','0','2','0'), ('28396','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10256','Temperature Discovery PSU','tempDescr.discovery.psu','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with powerSupply(10) filter','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c12fc57ae86e434abd25e8ba8f6ca642','0','2','0'), ('28397','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10256','Temperature Discovery I/O','tempDescr.discovery.io','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with ioBoard(5) filter','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b32425e531b444c69cdc3efc015286f2','0','2','0'), ('28398','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.9.3.1.5,{#CHASSIS_NUM},1.3.6.1.4.1.232.6.2.9.3.1.1,{#BAY_NUM},1.3.6.1.4.1.232.6.2.9.3.1.2]','10256','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPQHLTH-MIB::cpqHeFltTolPowerSupplyStatus','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a77e77fc862847078ff3328f4d331747','0','2','0'), ('28399','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.7.1.9]','10256','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPQHLTH-MIB::cpqHeFltTolFanCondition','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dd52cf7724f7471cabf1970707a6fdd6','0','2','0'), ('28400','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.2.1.1.1,{#CNTLR_SLOT},1.3.6.1.4.1.232.3.2.2.1.1.5,{#CNTLR_LOCATION},1.3.6.1.4.1.232.3.2.2.1.1.20]','10256','Array Controller Discovery','array.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Array controllers: CPQIDA-MIB::cpqDaCntlrTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bfbfb003935f4a2da4ff253f1f01cda9','0','2','0'), ('28401','20','discovery[{#CACHE_STATUS},1.3.6.1.4.1.232.3.2.2.2.1.2,{#CACHE_CNTRL_INDEX},1.3.6.1.4.1.232.3.2.2.2.1.1]','10256','Array Controller Cache Discovery','array.cache.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Array controllers: CPQIDA-MIB::cpqDaAccelTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7589f2f30c7e4cf88bb7cd1d57f543a4','0','2','0'), ('28402','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.5.1.1.5,{#DISK_LOCATION},1.3.6.1.4.1.232.3.2.5.1.1.64]','10256','Physical Disk Discovery','physicalDisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of physical drive entries CPQIDA-MIB::cpqDaPhyDrvTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5b68bccba85349beb2800bbb99ba5e13','0','2','0'), ('28403','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.3.1.1.2,{#DISK_NAME},1.3.6.1.4.1.232.3.2.3.1.1.14]','10256','Virtual Disk Discovery','virtualdisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPQIDA-MIB::cpqDaLogDrvTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f8ddad8119414bdbb695feaa788aa89e','0','2','0'), ('28404','20','get[1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}]','10256','{#SNMPINDEX}: Temperature','sensor.temp.value[cpqHeTemperatureCelsius.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB Temperature readings of testpoint: {#SNMPINDEX}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7c7d2807f0714bca8c8f263c2a4be8e6','0','2','0'), ('28405','20','get[1.3.6.1.4.1.232.6.2.6.8.1.3.{#SNMPINDEX}]','10256','{#SNMPINDEX}: Temperature sensor location','sensor.temp.locale[cpqHeTemperatureLocale.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'103','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB This specifies the location of the temperature sensor present in the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','63fd55c6dee6427bbba7daa023d8f91a','0','2','0'), ('28406','20','get[1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}]','10256','Ambient: Temperature','sensor.temp.value[cpqHeTemperatureCelsius.Ambient.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB Temperature readings of testpoint: Ambient','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fd9c9a22a2a946ef895f92300de12004','0','2','0'), ('28407','20','get[1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}]','10256','CPU-{#SNMPINDEX}: Temperature','sensor.temp.value[cpqHeTemperatureCelsius.CPU.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB Temperature readings of testpoint: CPU-{#SNMPINDEX}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0bfe29bdf06e4432aafbbddb5bc02272','0','2','0'), ('28408','20','get[1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}]','10256','Memory-{#SNMPINDEX}: Temperature','sensor.temp.value[cpqHeTemperatureCelsius.Memory.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB Temperature readings of testpoint: Memory-{#SNMPINDEX}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','feb78ed0e9c640f2b2e122bebca181a7','0','2','0'), ('28409','20','get[1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}]','10256','PSU-{#SNMPINDEX}: Temperature','sensor.temp.value[cpqHeTemperatureCelsius.PSU.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB Temperature readings of testpoint: PSU-{#SNMPINDEX}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d2e8eb2989364732b85dbef4eb7d1ce4','0','2','0'), ('28411','20','get[1.3.6.1.4.1.232.6.2.9.3.1.4.{#SNMPINDEX}]','10256','Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply status','sensor.psu.status[cpqHeFltTolPowerSupplyCondition.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'102','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The condition of the power supply. This value will be one of the following: other(1) The status could not be determined or not present. ok(2) The power supply is operating normally. degraded(3) A temperature sensor, fan or other power supply component is outside of normal operating range. failed(4) A power supply component detects a condition that could permanently damage the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','45d3144d0e5342c6a98b6aca01f4a907','0','2','0'), ('28412','20','get[1.3.6.1.4.1.232.6.2.6.7.1.9.{#SNMPINDEX}]','10256','Fan {#SNMPINDEX}: Fan status','sensor.fan.status[cpqHeFltTolFanCondition.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'102','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The condition of the fan. This value will be one of the following: other(1) Fan status detection is not supported by this system or driver. ok(2) The fan is operating properly. degraded(2) A redundant fan is not operating properly. failed(4) A non-redundant fan is not operating properly.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2173681feff54bbbb27bca1c82fab363','0','2','0'), ('28413','20','get[1.3.6.1.4.1.232.3.2.2.1.1.6.{#SNMPINDEX}]','10256','{#CNTLR_LOCATION}: Disk array controller status','system.hw.diskarray.status[cpqDaCntlrCondition.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'102','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB This value represents the overall condition of this controller, and any associated logical drives,physical drives, and array accelerators.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','71ae1496057044819a80f0660d838083','0','2','0'), ('28414','20','get[1.3.6.1.4.1.232.3.2.2.1.1.2.{#SNMPINDEX}]','10256','{#CNTLR_LOCATION}: Disk array controller model','system.hw.diskarray.model[cpqDaCntlrModel.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'104','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Array Controller Model. The type of controller card.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','72e008704de649bbb10df34d38158b69','0','2','0'), ('28415','20','get[1.3.6.1.4.1.232.3.2.2.2.1.2.{#SNMPINDEX}]','10256','#{#CACHE_CNTRL_INDEX}: Disk array cache controller status','system.hw.diskarray.cache.status[cpqDaAccelStatus.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'118','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Cache Module/Operations Status. This describes the status of the cache module and/or cache operations. Note that for some controller models, a cache module board that physically attaches to the controller or chipset may not be an available option. The status can be: Other (1) Indicates that the instrument agent does not recognize the status of the cache module. You may need to upgrade the instrument agent. Invalid (2) Indicates that a cache module board has not been installed in this system or is present but not configured. Enabled (3) Indicates that cache operations are currently configured and enabled for at least one logical drive. Temporarily Disabled (4) Indicates that cache operations have been temporarily disabled. View the cache module board error code object to determine why the write cache operations have been temporarily disabled. Permanently Disabled (5) Indicates that cache operations have been permanently disabled. View the cache module board error code object to determine why the write cache operations have been disabled. Cache Module Flash Memory Not Attached (6) Indicates that the flash memory component of the flash backed cache module is not attached. This status will be set when the flash memory is not attached and the Supercap is attached. This value is only used on flash backed cache modules that support removable flash memory. Cache Module Degraded Failsafe Speed (7) Indicates that the cache module board is currently degraded and operating at a failsafe speed. View variables cpqDaCacheMemoryDataWidth and cpqDaCacheMemoryTransferRate to obtain the cache module board`s current memory data width and memory transfer rate. Cache Module Critical Failure (8) Indicates that the cache module board has encountered a critical failure. The controller is currently operating in Zero Memory Raid mode. Read Cache Could Not Be Mapped (9) Indicates that the read cache memory in a split cache configuration could not be mapped by the operating system and as a result is not available. This status may be caused by virtual space limitations in certain operating systems and is only applicable to B-Series controllers.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2e20ec1d27374dceb363a6cdd568d23d','0','2','0'), ('28416','20','get[1.3.6.1.4.1.232.3.2.2.2.1.6.{#SNMPINDEX}]','10256','#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery status','system.hw.diskarray.cache.battery.status[cpqDaAccelBattery.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'119','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Cache Module Board Backup Power Status. This monitors the status of each backup power source on the board. The backup power source can only recharge when the system has power applied. The type of backup power source used is indicated by cpqDaAccelBackupPowerSource. The following values are valid: Other (1) Indicates that the instrument agent does not recognize backup power status. You may need to update your software. Ok (2) The backup power source is fully charged. Recharging (3) The array controller has one or more cache module backup power sources that are recharging. Cache module operations such as Battery/Flash Backed Write Cache, Expansion, Extension and Migration are temporarily suspended until the backup power source is fully charged. Cache module operations will automatically resume when charging is complete. Failed (4) The battery pack is below the sufficient voltage level and has not recharged in 36 hours. Your Cache Module board needs to be serviced. Degraded (5) The battery is still operating, however, one of the batteries in the pack has failed to recharge properly. Your Cache Module board should be serviced as soon as possible. NotPresent (6) A backup power source is not present on the cache module board. Some controllers do not have backup power sources. Capacitor Failed (7) The flash backed cache module capacitor is below the sufficient voltage level and has not recharged in 10 minutes. Your Cache Module board needs to be serviced.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f212a5a7f2754d49aab4d4a4a6a5ca44','0','2','0'), ('28417','20','get[1.3.6.1.4.1.232.3.2.5.1.1.6.{#SNMPINDEX}]','10256','{#DISK_LOCATION}: Physical disk status','system.hw.physicaldisk.status[cpqDaPhyDrvStatus.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'105','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Physical Drive Status. This shows the status of the physical drive. The following values are valid for the physical drive status: other (1) Indicates that the instrument agent does not recognize the drive. You may need to upgrade your instrument agent and/or driver software. ok (2) Indicates the drive is functioning properly. failed (3) Indicates that the drive is no longer operating and should be replaced. predictiveFailure(4) Indicates that the drive has a predictive failure error and should be replaced.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d88cd26724fd4f19b899b4767fb33814','0','2','0'), ('28418','20','get[1.3.6.1.4.1.232.3.2.5.1.1.57.{#SNMPINDEX}]','10256','{#DISK_LOCATION}: Physical disk S.M.A.R.T. status','system.hw.physicaldisk.smart_status[cpqDaPhyDrvSmartStatus.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'117','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Physical Drive S.M.A.R.T Status.The following values are defined: other(1) The agent is unable to determine if the status of S.M.A.R.T predictive failure monitoring for this drive. ok(2) Indicates the drive is functioning properly. replaceDrive(3) Indicates that the drive has a S.M.A.R.T predictive failure error and should be replaced.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e0864c9d70204f048fc0c597a996b19f','0','2','0'), ('28419','20','get[1.3.6.1.4.1.232.3.2.5.1.1.51.{#SNMPINDEX}]','10256','{#DISK_LOCATION}: Physical disk serial number','system.hw.physicaldisk.serialnumber[cpqDaPhyDrvSerialNum.{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Physical Drive Serial Number. This is the serial number assigned to the physical drive. This value is based upon the serial number as returned by the SCSI inquiry command but may have been modified due to space limitations. This can be used for identification purposes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5eca1a95575f4cb891545bde063aae7b','0','2','0'), ('28420','20','get[1.3.6.1.4.1.232.3.2.5.1.1.3.{#SNMPINDEX}]','10256','{#DISK_LOCATION}: Physical disk model name','system.hw.physicaldisk.model[cpqDaPhyDrvModel.{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Physical Drive Model.This is a text description of the physical drive. The text that appears depends upon who manufactured the drive and the drive type. If a drive fails, note the model to identify the type of drive necessary for replacement. If a model number is not present, you may not have properly initialized the drive array to which the physical drive is attached for monitoring.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','82f09b232147488fb9bd7253ce1432c2','0','2','0'), ('28421','20','get[1.3.6.1.4.1.232.3.2.5.1.1.69.{#SNMPINDEX}]','10256','{#DISK_LOCATION}: Physical disk media type','system.hw.physicaldisk.media_type[cpqDaPhyDrvMediaType.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'120','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Drive Array Physical Drive Media Type.The following values are defined: other(1) The instrument agent is unable to determine the physical drive''s media type. rotatingPlatters(2) The physical drive media is composed of rotating platters. solidState(3) The physical drive media is composed of solid state electronics.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a6dfc1cf30e141b6b47d463d436f14b6','0','2','0'), ('28422','20','get[1.3.6.1.4.1.232.3.2.5.1.1.45.{#SNMPINDEX}]','10256','{#DISK_LOCATION}: Disk size','system.hw.physicaldisk.size[cpqDaPhyDrvMediaType.{#SNMPINDEX}]','1m','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Physical Drive Size in MB. This is the size of the physical drive in megabytes. This value is calculated using the value 1,048,576 (2^20) as a megabyte. Drive manufacturers sometimes use the number 1,000,000 as a megabyte when giving drive capacities so this value may differ from the advertised size of a drive. This field is only applicable for controllers which support SCSI drives, and therefore is not supported by the IDA or IDA-2 controllers. The field will contain 0xFFFFFFFF if the drive capacity cannot be calculated or if the controller does not support SCSI drives.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','03cf9c027f9b4557a0d0a233347c58d2','0','2','0'), ('28423','20','get[1.3.6.1.4.1.232.3.2.3.1.1.4.{#SNMPINDEX}]','10256','Disk {#SNMPINDEX}({#DISK_NAME}): Status','system.hw.virtualdisk.status[cpqDaLogDrvStatus.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'122','','','0','','','','','2',NULL,'Logical Drive Status.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e0de2e2cc2ac423c95bcca5c77b1a53c','0','2','0'), ('28424','20','get[1.3.6.1.4.1.232.3.2.3.1.1.3.{#SNMPINDEX}]','10256','Disk {#SNMPINDEX}({#DISK_NAME}): Layout type','system.hw.virtualdisk.layout[cpqDaLogDrvFaultTol.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'121','','','0','','','','','2',NULL,'Logical Drive Fault Tolerance. This shows the fault tolerance mode of the logical drive.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3d06c600df19479abc35c47832f1abc2','0','2','0'), ('28425','20','get[1.3.6.1.4.1.232.3.2.3.1.1.9.{#SNMPINDEX}]','10256','Disk {#SNMPINDEX}({#DISK_NAME}): Disk size','system.hw.virtualdisk.size[cpqDaLogDrvSize.{#SNMPINDEX}]','1m','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Logical Drive Size. This is the size of the logical drive in megabytes. This value is calculated using the value 1,048,576 (2^20) as a megabyte. Drive manufacturers sometimes use the number 1,000,000 as a megabyte when giving drive capacities so this value may differ from the advertised size of a drive.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','39add64d1cef451091f5416440ea0adc','0','2','0'), ('28465','20','get[1.3.6.1.4.1.2.3.51.3.1.4.1.0]','10258','Overall system health status','system.status[systemHealthStat.0]','30s','31d','0','0','3','','','','',NULL,'106','','','0','','','','','0',NULL,'MIB: IMM-MIB Indicates status of system health for the system in which the IMM resides. Value of ''nonRecoverable'' indicates a severe error has occurred and the system may not be functioning. A value of ''critical'' indicates that an error has occurred but the system is currently functioning properly. A value of ''nonCritical'' indicates that a condition has occurred that may change the state of the system in the future but currently the system is working properly. A value of ''normal'' indicates that the system is operating normally.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','33572e0e11214d8b8454e6947e0d282d','0','2','0'), ('28466','20','get[1.3.6.1.4.1.2.3.51.3.1.5.2.1.5.0]','10258','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IMM-MIB','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7075609a2d2545828a93f701d7b02c17','0','2','0'), ('28467','20','get[1.3.6.1.4.1.2.3.51.3.1.5.2.1.3.0]','10258','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IMM-MIB Machine serial number VPD information','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','db393421a28b44148b0a1e1273186900','0','2','0'), ('28468','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.2.3.51.3.1.1.2.1.2]','10258','Temperature Discovery','tempDescr.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning IMM-MIB::tempTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b5ac4b78efca4e8a9d8b2eb875f49c49','0','2','0'), ('28469','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.2.3.51.3.1.1.2.1.2]','10258','Temperature Discovery Ambient','tempDescr.discovery.ambient','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning IMM-MIB::tempTable with Ambient filter','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1e4d30dcff7f48bc872127d11f2e22b8','0','2','0'), ('28470','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.2.3.51.3.1.1.2.1.2]','10258','Temperature Discovery CPU','tempDescr.discovery.cpu','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning IMM-MIB::tempTable with CPU filter','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7eb45db4b05e42d39e0e2cf889dec2b8','0','2','0'), ('28471','20','discovery[{#PSU_DESCR},1.3.6.1.4.1.2.3.51.3.1.11.2.1.2]','10258','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'IMM-MIB::powerFruName','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e83e43db572d4a25b80629a115214ae8','0','2','0'), ('28472','20','discovery[{#FAN_DESCR},1.3.6.1.4.1.2.3.51.3.1.3.2.1.2]','10258','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'IMM-MIB::fanDescr','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c93e3c9379a4434f84334e5989ec2592','0','2','0'), ('28473','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.2.3.51.3.1.12.2.1.1]','10258','Physical Disk Discovery','physicalDisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dbf08da1d50c4a919bd2bbb1ee15f77e','0','2','0'), ('28474','20','get[1.3.6.1.4.1.2.3.51.3.1.1.2.1.3.{#SNMPINDEX}]','10258','{#SNMPVALUE}: Temperature','sensor.temp.value[tempReading.{#SNMPINDEX}]','3m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IMM-MIB Temperature readings of testpoint: {#SNMPVALUE}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','02af08c624bc444aae5d1f1b8f8b5d4a','0','2','0'), ('28475','20','get[1.3.6.1.4.1.2.3.51.3.1.1.2.1.3.{#SNMPINDEX}]','10258','Ambient: Temperature','sensor.temp.value[tempReading.Ambient.{#SNMPINDEX}]','3m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IMM-MIB Temperature readings of testpoint: Ambient','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c29ef915c0a6419eabd041ea34775c45','0','2','0'), ('28476','20','get[1.3.6.1.4.1.2.3.51.3.1.1.2.1.3.{#SNMPINDEX}]','10258','CPU: Temperature','sensor.temp.value[tempReading.CPU.{#SNMPINDEX}]','3m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IMM-MIB Temperature readings of testpoint: CPU','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','87da5286971d4f6487c3220c85850658','0','2','0'), ('28477','20','get[1.3.6.1.4.1.2.3.51.3.1.11.2.1.6.{#SNMPINDEX}]','10258','{#PSU_DESCR}: Power supply status','sensor.psu.status[powerHealthStatus.{#SNMPINDEX}]','3m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IMM-MIB A description of the power module status.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e8c7e01f5c3f40d29cdaa7506e293c80','0','2','0'), ('28478','20','get[1.3.6.1.4.1.2.3.51.3.1.3.2.1.10.{#SNMPINDEX}]','10258','{#FAN_DESCR}: Fan status','sensor.fan.status[fanHealthStatus.{#SNMPINDEX}]','3m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IMM-MIB A description of the fan component status.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6e576c4059c84b6fa80376ee59fd373b','0','2','0'), ('28479','20','get[1.3.6.1.4.1.2.3.51.3.1.3.2.1.3.{#SNMPINDEX}]','10258','{#FAN_DESCR}: Fan speed, %','sensor.fan.speed.percentage[fanSpeed.{#SNMPINDEX}]','1m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IMM-MIB Fan speed expressed in percent(%) of maximum RPM. An octet string expressed as ''ddd% of maximum'' where:d is a decimal digit or blank space for a leading zero. If the fan is determined not to be running or the fan speed cannot be determined, the string will indicate ''Offline''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3281ba9d16754ff79a9ed0e2bb328129','0','2','0'), ('28480','20','get[1.3.6.1.4.1.2.3.51.3.1.12.2.1.3.{#SNMPINDEX}]','10258','{#SNMPINDEX}: Physical disk status','system.hw.physicaldisk.status[diskHealthStatus.{#SNMPINDEX}]','3m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IMM-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','da7aa00e553c4014a70fe08f5fdb67fd','0','2','0'), ('28481','20','get[1.3.6.1.4.1.2.3.51.3.1.12.2.1.2.{#SNMPINDEX}]','10258','{#SNMPINDEX}: Physical disk part number','system.hw.physicaldisk.part_number[diskFruName.{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IMM-MIB disk module FRU name.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','08f626e126bf45fa8f978a2324118626','0','2','0'), ('28493','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.21317.1.3.1.2,{#SENSOR_DESCR},1.3.6.1.4.1.21317.1.3.1.13]','10259','Temperature Discovery','tempDescr.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning ATEN-IPMI-MIB::sensorTable with filter: not connected temp sensors (Value = 0)','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c03c556ed8e441099513aaacaf4a3752','0','2','0'), ('28494','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.21317.1.3.1.2,{#SENSOR_DESCR},1.3.6.1.4.1.21317.1.3.1.13]','10259','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning ATEN-IPMI-MIB::sensorTable with filter: not connected FAN sensors (Value = 0)','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e31995e21b3942e58b7ed451f57f0360','0','2','0'), ('28495','20','get[1.3.6.1.4.1.21317.1.3.1.2.{#SNMPINDEX}]','10259','{#SENSOR_DESCR}: Temperature','sensor.temp.value[sensorReading.{#SNMPINDEX}]','3m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ATEN-IPMI-MIB A textual string containing information about the interface. This string should include the name of the manufacturer, the product name and the version of the interface hardware/software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fe3acdb63d884c10bc5abe7edf001ceb','0','2','0'), ('28496','20','get[1.3.6.1.4.1.21317.1.3.1.2.{#SNMPINDEX}]','10259','{#SENSOR_DESCR}: Fan speed, %','sensor.fan.speed.percentage[sensorReading.{#SNMPINDEX}]','1m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ATEN-IPMI-MIB A textual string containing information about the interface. This string should include the name of the manufacturer, the product name and the version of the interface hardware/software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5309e5fab7a44b11a8f045db2868a544','0','2','0'), ('28511','16','','10260','Version','jmx["Catalina:type=Server",serverInfo]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','{$TOMCAT.USER}','{$TOMCAT.PASSWORD}','','','0',NULL,'The version of the Tomcat.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7f6ec0e48d41456896799f487cd8243e','0','2','0'), ('28533','5','','10047','LLD queue','zabbix[lld_queue]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of values enqueued in the low-level discovery processing queue.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d596a84dece14aa59ca53e9f53b21edb','0','2','0'), ('28535','5','','10047','Utilization of LLD manager internal processes, in %','zabbix[process,lld manager,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the LLD manager processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5e0ffccdaa51459c90d4868e61b1c6a8','0','2','0'), ('28537','5','','10047','Utilization of LLD worker internal processes, in %','zabbix[process,lld worker,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the LLD worker processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0b7b36eea80448ac8d11f7f30fb355da','0','2','0'), ('28539','5','','10261','Zabbix stats','zabbix[stats,{$ZABBIX.SERVER.ADDRESS},{$ZABBIX.SERVER.PORT}]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The master item of Zabbix server statistics.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b9a588fee45047b6b991015e7e83f3f2','0','2','0'), ('28540','5','','10261','Queue','zabbix[stats,{$ZABBIX.SERVER.ADDRESS},{$ZABBIX.SERVER.PORT},queue]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of monitored items in the queue that are delayed by at least 6 seconds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c140ebe6c0404ee6b17b5ada2de09f28','0','2','0'), ('28541','5','','10261','Queue over 10 minutes','zabbix[stats,{$ZABBIX.SERVER.ADDRESS},{$ZABBIX.SERVER.PORT},queue,10m]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of monitored items in the queue that are delayed by at least 10 minutes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','95c8bab7640a4227b8ce6cac06e1a08b','0','2','0'), ('28585','5','','10262','Zabbix stats','zabbix[stats,{$ZABBIX.PROXY.ADDRESS},{$ZABBIX.PROXY.PORT}]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Zabbix server statistics master item.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c3d4e015efe7459f8207096a04b296f0','0','2','0'), ('28586','5','','10262','Queue','zabbix[stats,{$ZABBIX.PROXY.ADDRESS},{$ZABBIX.PROXY.PORT},queue]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of monitored items in the queue that are delayed by at least 6 seconds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','128bcd3c019946b593f3256858cf8397','0','2','0'), ('28587','5','','10262','Queue over 10 minutes','zabbix[stats,{$ZABBIX.PROXY.ADDRESS},{$ZABBIX.PROXY.PORT},queue,10m]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of monitored items in the queue that are delayed by at least 10 minutes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c9b9ee0faefd4cefbac32f548539266e','0','2','0'), ('28618','5','','10048','Utilization of preprocessing manager internal processes, in %','zabbix[process,preprocessing manager,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the preprocessing manager processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','20705fe12d4c40a4a27306b66ec9a69d','0','2','0'), ('28619','5','','10048','Utilization of preprocessing worker internal processes, in %','zabbix[process,preprocessing worker,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the preprocessing worker processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9c7916375cf841fb8edaf383b93a0522','0','2','0'), ('28743','0','','10264','Service ping','net.tcp.service[http,"{$APACHE.STATUS.HOST}","{$APACHE.STATUS.PORT}"]','1m','31d','365d','0','3','','','','',NULL,'13','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','369f00e2970048c786ce3bd609e65566','0','2','0'), ('28748','0','','10264','Service response time','net.tcp.service.perf[http,"{$APACHE.STATUS.HOST}","{$APACHE.STATUS.PORT}"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','267ca6fe038346e5be1113f3bf9b4023','0','2','0'), ('28775','19','','10265','Get status','apache.get_status','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Getting data from a machine-readable version of the Apache status page. For more information see Apache Module [mod_status](https://httpd.apache.org/docs/current/mod/mod_status.html).','0','30d','0','',NULL,'','{$APACHE.STATUS.SCHEME}://{$APACHE.STATUS.HOST}:{$APACHE.STATUS.PORT}/{$APACHE.STATUS.PATH}','','','200','1','0','','','2','0','0','0','0','0','0','e61be8ad92004100aca55fcedd2a3807','0','2','0'), ('28776','3','','10265','Service ping','net.tcp.service[http,"{$APACHE.STATUS.HOST}","{$APACHE.STATUS.PORT}"]','1m','31d','365d','0','3','','','','',NULL,'14','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fb65918695094026838e2b9e4ca00402','0','2','0'), ('28777','3','','10265','Service response time','net.tcp.service.perf[http,"{$APACHE.STATUS.HOST}","{$APACHE.STATUS.PORT}"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5039d11bc3964d6e9928a0a46dd0b402','0','2','0'), ('28804','0','','10266','Get stub status page','web.page.get["{$NGINX.STUB_STATUS.HOST}","{$NGINX.STUB_STATUS.PATH}","{$NGINX.STUB_STATUS.PORT}"]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The following status information is provided: `Active connections` - the current number of active client connections including waiting connections. `Accepted` - the total number of accepted client connections. `Handled` - the total number of handled connections. Generally, the parameter value is the same as for the accepted connections, unless some resource limits have been reached (for example, the `worker_connections` limit). `Requests` - the total number of client requests. `Reading` - the current number of connections where Nginx is reading the request header. `Writing` - the current number of connections where Nginx is writing a response back to the client. `Waiting` - the current number of idle client connections waiting for a request. See also [Module ngx_http_stub_status_module](https://nginx.org/en/docs/http/ngx_http_stub_status_module.html).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','52a23a9f6d60490c8f5565b938154f61','0','2','0'), ('28805','0','','10266','Service response time','net.tcp.service.perf[http,"{$NGINX.STUB_STATUS.HOST}","{$NGINX.STUB_STATUS.PORT}"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','75a7795df3034835bcfd143f7c3e9b94','0','2','0'), ('28810','0','','10266','Service status','net.tcp.service[http,"{$NGINX.STUB_STATUS.HOST}","{$NGINX.STUB_STATUS.PORT}"]','1m','31d','365d','0','3','','','','',NULL,'15','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f06e76888f464e13b7cc4c3db33e8131','0','2','0'), ('28821','19','','10267','Get stub status page','nginx.get_stub_status','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The following status information is provided: `Active connections` - the current number of active client connections including waiting connections. `Accepted` - the total number of accepted client connections. `Handled` - the total number of handled connections. Generally, the parameter value is the same as for the accepted connections, unless some resource limits have been reached (for example, the `worker_connections` limit). `Requests` - the total number of client requests. `Reading` - the current number of connections where Nginx is reading the request header. `Writing` - the current number of connections where Nginx is writing a response back to the client. `Waiting` - the current number of idle client connections waiting for a request. See also [Module ngx_http_stub_status_module](https://nginx.org/en/docs/http/ngx_http_stub_status_module.html).','0','30d','0','',NULL,'','{$NGINX.STUB_STATUS.SCHEME}://{$NGINX.STUB_STATUS.HOST}:{$NGINX.STUB_STATUS.PORT}/{$NGINX.STUB_STATUS.PATH}','','','200','1','0','','','2','0','0','0','0','0','0','86f93d1941d147fe94d754eddd3e8ff2','0','2','0'), ('28822','3','','10267','Service status','net.tcp.service[http,"{$NGINX.STUB_STATUS.HOST}","{$NGINX.STUB_STATUS.PORT}"]','1m','31d','365d','0','3','','','','',NULL,'16','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e4a09193bc8f42f2888ece83f89f84af','0','2','0'), ('28823','3','','10267','Service response time','net.tcp.service.perf[http,"{$NGINX.STUB_STATUS.HOST}","{$NGINX.STUB_STATUS.PORT}"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','18c6209295b347e2a96ef11b147139d8','0','2','0'), ('28894','20','get[1.3.6.1.4.1.2636.3.1.13.1.8.{#SNMPINDEX}]','10231','{#SNMPVALUE}: CPU utilization','system.cpu.util[jnxOperatingCPU.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: JUNIPER-MIB The CPU utilization in percentage of this subject. Zero if unavailable or inapplicable. Reference: http://kb.juniper.net/library/CUSTOMERSERVICE/GLOBAL_JTAC/BK26199/SRX%20SNMP%20Monitoring%20Guide_v1.1.pdf','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','932c89bb249d412fabd3549ddcbf654e','0','2','0'), ('29395','19','','10285','Get node_exporter metrics','node_exporter.get','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','http://{$NODE_EXPORTER_HOST}:{$NODE_EXPORTER_PORT}/metrics','','','200','1','0','','','0','0','0','0','0','0','0','8b2fffcba0b24ca8a687361645ffaa1d','0','2','0'), ('29396','15','','10285','Memory utilization','vm.memory.util[node_exporter]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vm.memory.total[node_exporter])-last(//vm.memory.available[node_exporter]))/last(//vm.memory.total[node_exporter])*100','','0','','','','','0',NULL,'Percentage calculated as (total-available)/total*100.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','60c716c692fb482f9abffb0fc9ce4324','0','2','0'), ('29397','15','','10285','Free swap space in %','system.swap.pfree[node_exporter]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//system.swap.free[node_exporter])/last(//system.swap.total[node_exporter])*100','','0','','','','','0',NULL,'The free space of the swap volume/file expressed in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','99feb76b7da04b00a0d191b92bf979a1','0','2','0'), ('29434','15','','10285','{#DEVNAME}: Disk read request avg waiting time (r_await)','vfs.dev.read.await[node_exporter,"{#DEVNAME}"]','1m','31d','365d','0','0','','!ms','','',NULL,NULL,'(last(//vfs.dev.read.time.rate[node_exporter,"{#DEVNAME}"])/(last(//vfs.dev.read.rate[node_exporter,"{#DEVNAME}"])+(last(//vfs.dev.read.rate[node_exporter,"{#DEVNAME}"])=0)))*1000*(last(//vfs.dev.read.rate[node_exporter,"{#DEVNAME}"]) > 0)','','0','','','','','2',NULL,'This formula contains two Boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9d158ecffdaa43f6bd0ab867ca68620b','0','2','0'), ('29435','15','','10285','{#DEVNAME}: Disk write request avg waiting time (w_await)','vfs.dev.write.await[node_exporter,"{#DEVNAME}"]','1m','31d','365d','0','0','','!ms','','',NULL,NULL,'(last(//vfs.dev.write.time.rate[node_exporter,"{#DEVNAME}"])/(last(//vfs.dev.write.rate[node_exporter,"{#DEVNAME}"])+(last(//vfs.dev.write.rate[node_exporter,"{#DEVNAME}"])=0)))*1000*(last(//vfs.dev.write.rate[node_exporter,"{#DEVNAME}"]) > 0)','','0','','','','','2',NULL,'This formula contains two Boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','94203a49081047b6bc76cd66aecd55ce','0','2','0'), ('29653','0','','10301','Get node overview','web.page.get["{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/overview"]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The HTTP API endpoint that returns cluster-wide metrics.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1af326f40cdb407a96b34025062b4743','0','2','0'), ('29654','0','','10301','Get nodes','web.page.get["{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/nodes/{$RABBITMQ.CLUSTER.NAME}@{HOST.NAME}?memory=true"]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The HTTP API endpoint that returns metrics of the nodes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','61730555a0ae4f798ea740effb82764c','0','2','0'), ('29655','0','','10301','Service ping','net.tcp.service["{$RABBITMQ.API.SCHEME}","{$RABBITMQ.API.HOST}","{$RABBITMQ.API.PORT}"]','1m','31d','365d','0','3','','','','',NULL,'17','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6229b623f5ff40f9a65e9573b3b86e3f','0','2','0'), ('29660','0','','10301','Service response time','net.tcp.service.perf["{$RABBITMQ.API.SCHEME}","{$RABBITMQ.API.HOST}","{$RABBITMQ.API.PORT}"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b1f191f9077f4382b5b87e0085ae2622','0','2','0'), ('29661','0','','10301','Get queues','web.page.get["{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/queues"]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The HTTP API endpoint that returns metrics of the queues metrics.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7fb61ad564db42d5a373912491f5c9d3','0','2','0'), ('29738','19','','10302','Get overview','rabbitmq.get_overview','1m','1h','0','0','4','','','','',NULL,NULL,'','','1','{$RABBITMQ.API.USER}','{$RABBITMQ.API.PASSWORD}','','','0',NULL,'The HTTP API endpoint that returns cluster-wide metrics.','0','30d','0','',NULL,'','{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.CLUSTER_HOST}:{$RABBITMQ.API.PORT}/api/overview','','','200','1','0','','','0','0','0','0','0','0','0','c0d7c1940dea4cd4a01a94b9629db3ce','0','2','0'), ('29739','19','','10302','Get exchanges','rabbitmq.get_exchanges','1m','1h','0','0','4','','','','',NULL,NULL,'','','1','{$RABBITMQ.API.USER}','{$RABBITMQ.API.PASSWORD}','','','0',NULL,'The HTTP API endpoint that returns exchanges metrics.','0','30d','0','',NULL,'','{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.CLUSTER_HOST}:{$RABBITMQ.API.PORT}/api/exchanges','','','200','1','0','','','0','0','0','0','0','0','0','dd74265fcc2d48e2b160e749706c9a6c','0','2','0'), ('29741','19','','10303','Get nodes','rabbitmq.get_nodes','1m','1h','0','0','4','','','','',NULL,NULL,'','','1','{$RABBITMQ.API.USER}','{$RABBITMQ.API.PASSWORD}','','','0',NULL,'The HTTP API endpoint that returns metrics of the nodes.','0','30d','0','',NULL,'','{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/nodes/{$RABBITMQ.CLUSTER.NAME}@{HOST.NAME}?memory=true','','','200','1','0','','','0','0','0','0','0','0','0','14468c29d16440cfb40429f58a0399f4','0','2','0'), ('29742','3','','10303','Service ping','net.tcp.service["{$RABBITMQ.API.SCHEME}","{$RABBITMQ.API.HOST}","{$RABBITMQ.API.PORT}"]','1m','31d','365d','0','3','','','','',NULL,'18','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f53379f858f74714b15ee12fe6fc2d08','0','2','0'), ('29743','3','','10303','Service response time','net.tcp.service.perf["{$RABBITMQ.API.SCHEME}","{$RABBITMQ.API.HOST}","{$RABBITMQ.API.PORT}"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','542f36f0b4e24d99a402a98b6f6fe4c4','0','2','0'), ('29745','19','','10303','Get queues','rabbitmq.get_queues','1m','1h','0','0','4','','','','',NULL,NULL,'','','1','{$RABBITMQ.API.USER}','{$RABBITMQ.API.PASSWORD}','','','0',NULL,'The HTTP API endpoint that returns metrics of the queues metrics.','0','30d','0','',NULL,'','{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/queues','','','200','1','0','','','0','0','0','0','0','0','0','3d0770d550b24f5ca80289cb723c8386','0','2','0'), ('29822','5','','10047','Utilization of alert syncer internal processes, in %','zabbix[process,alert syncer,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the alert syncer processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','eea69b4541844ebbbbf634594c14a8f2','0','2','0'), ('29994','20','get[1.3.6.1.4.1.232.6.1.3.0]','10256','Overall system health status','system.status[cpqHeMibCondition.0]','1m','31d','0','0','3','','','','',NULL,'102','','','0','','','','','0',NULL,'MIB: CPQHLTH-MIB The overall condition. This object represents the overall status of the server information represented by this MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5f30715570c449ecb4e07858256a3e05','0','2','0'), ('29998','0','','10300','Get overview','web.page.get["{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.CLUSTER_HOST}:{$RABBITMQ.API.PORT}/api/overview"]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The HTTP API endpoint that returns cluster-wide metrics.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','943eabfb44164908b9135aa4d6478bea','0','2','0'), ('29999','0','','10300','Get exchanges','web.page.get["{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.CLUSTER_HOST}:{$RABBITMQ.API.PORT}/api/exchanges"]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The HTTP API endpoint that returns exchanges metrics.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f015f991bcea4c4dbf83dfb013300010','0','2','0'), ('30043','19','','10303','Get node overview','rabbitmq.get_node_overview','1m','1h','0','0','4','','','','',NULL,NULL,'','','1','{$RABBITMQ.API.USER}','{$RABBITMQ.API.PASSWORD}','','','0',NULL,'The HTTP API endpoint that returns cluster-wide metrics.','0','30d','0','',NULL,'','{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/overview','','','200','1','0','','','0','0','0','0','0','0','0','ff7ec5f6e2354c90bffdbd25f9360555','0','2','0'), ('30057','20','discovery[{#SENSOR_LOCATION},1.3.6.1.4.1.9.9.719.1.9.44.1.2]','10304','Temperature Discovery','temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','06216bba529b4fb2b1c52fb57d365c6a','0','2','0'), ('30058','20','discovery[{#SENSOR_LOCATION},1.3.6.1.4.1.9.9.719.1.41.2.1.2]','10304','Temperature CPU Discovery','temp.cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','098a87f2e7094da9853bf2cb94677092','0','2','0'), ('30059','20','discovery[{#PSU_LOCATION},1.3.6.1.4.1.9.9.719.1.15.56.1.2]','10304','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f8be95a8eb5a487c8c8f05d62e90f041','0','2','0'), ('30060','20','discovery[{#UNIT_LOCATION},1.3.6.1.4.1.9.9.719.1.9.35.1.2]','10304','Unit Discovery','unit.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0a96ab839bde40cf9d1d4db602c57a5e','0','2','0'), ('30061','20','discovery[{#FAN_LOCATION},1.3.6.1.4.1.9.9.719.1.15.12.1.2]','10304','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3c067096a2fc40c390a335e40bacc089','0','2','0'), ('30062','20','discovery[{#DISK_LOCATION},1.3.6.1.4.1.9.9.719.1.45.4.1.2]','10304','Physical Disk Discovery','physicalDisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of physical drive entries CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageLocalDiskTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','93247d3808394f7195356ced554d0d55','0','2','0'), ('30063','20','discovery[{#VDISK_LOCATION},1.3.6.1.4.1.9.9.719.1.45.8.1.2]','10304','Virtual Disk Discovery','virtualdisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageLocalLunTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b76c04b65a8348539434d8857d1450aa','0','2','0'), ('30064','20','discovery[{#DISKARRAY_LOCATION},1.3.6.1.4.1.9.9.719.1.45.1.1.2]','10304','Array Controller Discovery','array.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Array controllers: CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageControllerTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b77a56dcaa1947dd8c74b5764c36c22a','0','2','0'), ('30065','20','discovery[{#DISKARRAY_CACHE_LOCATION},1.3.6.1.4.1.9.9.719.1.45.11.1.2]','10304','Array Controller Cache Discovery','array.cache.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Array controllers: CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageControllerTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5c6518a1df0b45c09f3a2f186c3d4e3b','0','2','0'), ('30066','20','get[1.3.6.1.4.1.9.9.719.1.9.44.1.4.{#SNMPINDEX}]','10304','{#SENSOR_LOCATION}.Ambient: Temperature','sensor.temp.value[cucsComputeRackUnitMbTempStatsAmbientTemp.{#SNMPINDEX}]','3m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB Temperature readings of testpoint: {#SENSOR_LOCATION}.Ambient','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9ee4d857346541c6870586a0c7989fc5','0','2','0'), ('30067','20','get[1.3.6.1.4.1.9.9.719.1.9.44.1.8.{#SNMPINDEX}]','10304','{#SENSOR_LOCATION}.Front: Temperature','sensor.temp.value[cucsComputeRackUnitMbTempStatsFrontTemp.{#SNMPINDEX}]','3m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB Cisco UCS compute:RackUnitMbTempStats:frontTemp managed object property','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9dc8ac1ccf2a4671bef441db6297b2f9','0','2','0'), ('30068','20','get[1.3.6.1.4.1.9.9.719.1.9.44.1.21.{#SNMPINDEX}]','10304','{#SENSOR_LOCATION}.Rear: Temperature','sensor.temp.value[cucsComputeRackUnitMbTempStatsRearTemp.{#SNMPINDEX}]','3m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB Cisco UCS compute:RackUnitMbTempStats:rearTemp managed object property','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','631d46aad1b2403b9512299e2446a24e','0','2','0'), ('30069','20','get[1.3.6.1.4.1.9.9.719.1.9.44.1.13.{#SNMPINDEX}]','10304','{#SENSOR_LOCATION}.IOH: Temperature','sensor.temp.value[cucsComputeRackUnitMbTempSltatsIoh1Temp.{#SNMPINDEX}]','3m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB Cisco UCS compute:RackUnitMbTempStats:ioh1Temp managed object property','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1287280a5c9449bd96f11ad3b6a92455','0','2','0'), ('30070','20','get[1.3.6.1.4.1.9.9.719.1.41.2.1.10.{#SNMPINDEX}]','10304','{#SENSOR_LOCATION}: Temperature','sensor.temp.value[cucsProcessorEnvStatsTemperature.{#SNMPINDEX}]','3m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-PROCESSOR-MIB Cisco UCS processor:EnvStats:temperature managed object property','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b0a744fc4e524406ab87ccc4fbaae3b2','0','2','0'), ('30071','20','get[1.3.6.1.4.1.9.9.719.1.15.56.1.7.{#SNMPINDEX}]','10304','{#PSU_LOCATION}: Power supply status','sensor.psu.status[cucsEquipmentPsuOperState.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'138','','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-EQUIPMENT-MIB Cisco UCS equipment:Psu:operState managed object property','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0e869e57db494940b630fc2b8f10c60b','0','2','0'), ('30072','20','get[1.3.6.1.4.1.9.9.719.1.9.35.1.42.{#SNMPINDEX}]','10304','{#UNIT_LOCATION}: Overall system health status','system.status[cucsComputeRackUnitOperState.{#SNMPINDEX}]','30s','31d','0','0','3','','','','',NULL,'139','','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB Cisco UCS compute:RackUnit:operState managed object property','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','00a0fe6510064375a1736433a17904c0','0','2','0'), ('30073','20','get[1.3.6.1.4.1.9.9.719.1.9.35.1.32.{#SNMPINDEX}]','10304','{#UNIT_LOCATION}: Hardware model name','system.hw.model[cucsComputeRackUnitModel.{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB Cisco UCS compute:RackUnit:model managed object property','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9d0f6f5594a24c588da63fd29bf2152f','0','2','0'), ('30074','20','get[1.3.6.1.4.1.9.9.719.1.9.35.1.47.{#SNMPINDEX}]','10304','{#UNIT_LOCATION}: Hardware serial number','system.hw.serialnumber[cucsComputeRackUnitSerial.{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB Cisco UCS compute:RackUnit:serial managed object property','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b0c955f0fc184c6686fa2fe3fce29f1a','0','2','0'), ('30075','20','get[1.3.6.1.4.1.9.9.719.1.15.12.1.9.{#SNMPINDEX}]','10304','{#FAN_LOCATION}: Fan status','sensor.fan.status[cucsEquipmentFanOperState.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'138','','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-EQUIPMENT-MIB Cisco UCS equipment:Fan:operState managed object property','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f65860004eb74ab187d080782177370c','0','2','0'), ('30076','20','get[1.3.6.1.4.1.9.9.719.1.45.4.1.18.{#SNMPINDEX}]','10304','{#DISK_LOCATION}: Physical disk status','system.hw.physicaldisk.status[cucsStorageLocalDiskDiskState.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'140','','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB Cisco UCS storage:LocalDisk:diskState managed object property.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cb73c8de596549888d5f94b13619da3d','0','2','0'), ('30077','20','get[1.3.6.1.4.1.9.9.719.1.45.4.1.12.{#SNMPINDEX}]','10304','{#DISK_LOCATION}: Physical disk model name','system.hw.physicaldisk.model[cucsStorageLocalDiskSerial.{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB Cisco UCS storage:LocalDisk:serial managed object property. Actually returns part number code','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6d45ac307cce40d481c556660dea3157','0','2','0'), ('30078','20','get[1.3.6.1.4.1.9.9.719.1.45.4.1.7.{#SNMPINDEX}]','10304','{#DISK_LOCATION}: Physical disk media type','system.hw.physicaldisk.media_type[cucsStorageLocalDiskModel.{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB Cisco UCS storage:LocalDisk:model managed object property. Actually returns ''HDD'' or ''SSD''','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4dc3f8718af645998441c436263a1053','0','2','0'), ('30079','20','get[1.3.6.1.4.1.9.9.719.1.45.4.1.13.{#SNMPINDEX}]','10304','{#DISK_LOCATION}: Disk size','system.hw.physicaldisk.size[cucsStorageLocalDiskSize.{#SNMPINDEX}]','1h','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB Cisco UCS storage:LocalDisk:size managed object property. In MB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','da12b7742c0343709ab4c1d97c0b0f4c','0','2','0'), ('30080','20','get[1.3.6.1.4.1.9.9.719.1.45.8.1.10.{#SNMPINDEX}]','10304','{#VDISK_LOCATION}: Status','system.hw.virtualdisk.status[cucsStorageLocalLunPresence.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,'142','','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB Cisco UCS storage:LocalLun:presence managed object property','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5c0d7116c19940608ca40058e47fd595','0','2','0'), ('30081','20','get[1.3.6.1.4.1.9.9.719.1.45.8.1.14.{#SNMPINDEX}]','10304','{#VDISK_LOCATION}: Layout type','system.hw.virtualdisk.layout[cucsStorageLocalLunType.{#SNMPINDEX}]','1h','31d','365d','0','3','','','','',NULL,'141','','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB Cisco UCS storage:LocalLun:type managed object property','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0c6d53aae84e41fa9bdccf06a51bbf21','0','2','0'), ('30082','20','get[1.3.6.1.4.1.9.9.719.1.45.8.1.13.{#SNMPINDEX}]','10304','{#VDISK_LOCATION}: Disk size','system.hw.virtualdisk.size[cucsStorageLocalLunSize.{#SNMPINDEX}]','1h','31d','0','0','3','','B','','',NULL,'141','','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB Cisco UCS storage:LocalLun:size managed object property in MB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','db7e07e0325145d0a8f6bcef0cd0dff2','0','2','0'), ('30083','20','get[1.3.6.1.4.1.9.9.719.1.45.1.1.6.{#SNMPINDEX}]','10304','{#DISKARRAY_LOCATION}: Disk array controller status','system.hw.diskarray.status[cucsStorageControllerOperState.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'138','','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','262d45ac58734c0096de2b96d8294f4c','0','2','0'), ('30084','20','get[1.3.6.1.4.1.9.9.719.1.45.1.1.5.{#SNMPINDEX}]','10304','{#DISKARRAY_LOCATION}: Disk array controller model','system.hw.diskarray.model[cucsStorageControllerModel.{#SNMPINDEX}]','1d','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b0e1dd6aab454628bf46c0dba5293424','0','2','0'), ('30085','20','get[1.3.6.1.4.1.9.9.719.1.45.11.1.9.{#SNMPINDEX}]','10304','{#DISKARRAY_CACHE_LOCATION}: Disk array cache controller battery status','system.hw.diskarray.cache.battery.status[cucsStorageRaidBatteryOperability.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'138','','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','52055929503041018d8261f15231f346','0','2','0'), ('30086','20','get[1.3.6.1.2.1.1.1.0]','10207','Operating system','system.sw.os[sysDescr.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9f1c8827a9ef4948808bac9d76add9a8','0','2','0'), ('30087','20','get[1.3.6.1.4.1.6527.3.1.2.1.1.10.0]','10207','Available memory','vm.memory.available[sgiKbMemoryAvailable.0]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TIMETRA-SYSTEM-MIB The value of sgiKbMemoryAvailable indicates the amount of free memory, in kilobytes, in the overall system that is not allocated to memory pools, but is available in case a memory pool needs to grow.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3f2769066a184d29afd26047039b633c','0','2','0'), ('30088','15','','10207','Total memory','vm.memory.total[snmp]','1m','31d','365d','0','3','','B','','',NULL,NULL,'last(//vm.memory.available[sgiKbMemoryAvailable.0])+last(//vm.memory.used[sgiKbMemoryUsed.0])','','0','','','','','0',NULL,'The total memory expressed in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9005685cea194d7c9702f19040df7b80','0','2','0'), ('30089','15','','10207','Memory utilization','vm.memory.util[vm.memory.util.0]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[sgiKbMemoryUsed.0])/(last(//vm.memory.available[sgiKbMemoryAvailable.0])+last(//vm.memory.used[sgiKbMemoryUsed.0]))*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f223ac289a99469e8861219f4254dea6','0','2','0'), ('30090','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.6527.3.1.2.2.1.5.1.6]','10207','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f99bcd2eff1349f08ae23f6f9dbd6cfb','0','2','0'), ('30091','20','get[1.3.6.1.4.1.6527.3.1.2.2.1.5.1.6.{#SNMPINDEX}]','10207','#{#SNMPINDEX}: Power supply status','sensor.psu.status[tmnxChassisPowerSupply1Status.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'71','','','0','','','','','2',NULL,'MIB: TIMETRA-SYSTEM-MIB The overall status of an equipped power supply. For AC multiple power supplies, this represents the overall status of the first power supply in the tray (or shelf). For any other type, this represents the overall status of the power supply. If tmnxChassisPowerSupply1Status is''deviceStateOk'', then all monitored statuses are ''deviceStateOk''. A value of ''deviceStateFailed'' represents a condition where at least one monitored status is in a failed state.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a52d5ce3437f4f1ca633cc541028ccc7','0','2','0'), ('30092','20','get[1.3.6.1.4.1.6527.3.1.2.2.1.5.1.7.{#SNMPINDEX}]','10207','#{#SNMPINDEX}: Power supply status','sensor.psu.status[tmnxChassisPowerSupply2Status.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'71','','','0','','','','','2',NULL,'MIB: TIMETRA-SYSTEM-MIB The overall status of an equipped power supply. For AC multiple power supplies, this represents the overall status of the second power supply in the tray (or shelf). For any other type, this field is unused and set to ''deviceNotEquipped''. If tmnxChassisPowerSupply2Status is ''deviceStateOk'', then all monitored statuses are ''deviceStateOk''. A value of ''deviceStateFailed'' represents a condition where at least one monitored status is in a failed state.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b73b01d720c7431085657548d620f76e','0','2','0'), ('30093','20','get[1.3.6.1.4.1.1588.2.1.1.1.26.6.0]','10208','Memory utilization','vm.memory.util[swMemUsage.0]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SW-MIB Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9a8441cae4fb4c698502a20d5ce23ddf','0','2','0'), ('30105','20','get[1.3.6.1.4.1.6027.3.10.1.2.9.1.5.{#SNMPINDEX}]','10221','#{#SNMPINDEX}: Memory utilization','vm.memory.util[chStackUnitMemUsageUtil.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F10-S-SERIES-CHASSIS-MIB Total memory usage in percentage.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3571d6508f07442983936fdcc2ba733f','0','2','0'), ('30106','20','get[1.3.6.1.4.1.171.10.97.2.1.1.2.0]','10222','Operating system','system.sw.os[mySystemSwVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MY-SYSTEM-MIB','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8d31f35a9d8842f086a123014bfd27ad','0','2','0'), ('30107','20','get[1.3.6.1.4.1.171.10.97.2.35.1.1.1.3.{#SNMPINDEX}]','10222','{#SNMPINDEX}: Memory utilization','vm.memory.util[myMemoryPoolCurrentUtilization.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MY-MEMORY-MIB This is the memory pool utilization currently.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aa68024ac558424a8147f8d1e59a7b50','0','2','0'), ('30108','20','get[1.3.6.1.4.1.171.12.1.1.9.1.4.{#SNMPINDEX}]','10223','#{#SNMPVALUE}: Memory utilization','vm.memory.util[agentDRAMutilization.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: DLINK-AGENT-MIB The percentage of used DRAM memory of the total DRAM memory available.The value will be between 0%(idle) and 100%(very busy)','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ec82ef56dce54315a905721bd0cabaa6','0','2','0'), ('30109','20','get[1.3.6.1.4.1.1916.1.1.1.13.0]','10224','Operating system','system.sw.os[extremePrimarySoftwareRev.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: EXTREME-SYSTEM-MIB The software revision of the primary image stored in this device. This string will have a zero length if the revision is unknown, invalid or not present. This will also be reported in RMON2 probeSoftwareRev if this is the software image currently running in the device.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0ba6360ecf4c4487a249e3efabca2e0c','0','2','0'), ('30110','20','get[1.3.6.1.4.1.1916.1.32.2.2.1.3.{#SNMPINDEX}]','10224','#{#SNMPVALUE}: Available memory','vm.memory.available[extremeMemoryMonitorSystemFree.{#SNMPINDEX}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: EXTREME-SOFTWARE-MONITOR-MIB Total amount of free memory in Kbytes in the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6856e5a75d884af1957b9a3f92d86360','0','2','0'), ('30111','15','','10224','#{#SNMPVALUE}: Memory utilization','vm.memory.util[{#SNMPVALUE}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vm.memory.total[extremeMemoryMonitorSystemTotal.{#SNMPINDEX}]) - last(//vm.memory.available[extremeMemoryMonitorSystemFree.{#SNMPINDEX}])) / last(//vm.memory.total[extremeMemoryMonitorSystemTotal.{#SNMPINDEX}]) * 100','','0','','','','','2',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','830ec2341dc64980be35d87141a31b67','0','2','0'), ('30112','20','get[1.3.6.1.4.1.25506.2.6.1.1.1.1.8.{#SNMPINDEX}]','10227','{#MODULE_NAME}: Memory utilization','vm.memory.util[hh3cEntityExtMemUsage.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HH3C-ENTITY-EXT-MIB The memory usage for the entity. This object indicates what percent of memory are used.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3021126f556f4c62b335c8108ba1cff1','0','2','0'), ('30113','20','get[1.3.6.1.4.1.11.2.14.11.5.1.1.2.1.1.1.6.{#SNMPINDEX}]','10250','#{#SNMPVALUE}: Available memory','vm.memory.available[hpLocalMemFreeBytes.{#SNMPINDEX}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: NETSWITCH-MIB The number of available (unallocated) bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','27c87eb48e2e49879960bbb14430e52b','0','2','0'), ('30114','20','get[1.3.6.1.4.1.11.2.14.11.5.1.1.2.1.1.1.5.{#SNMPINDEX}]','10250','#{#SNMPVALUE}: Total memory','vm.memory.total[hpLocalMemTotalBytes.{#SNMPINDEX}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: NETSWITCH-MIB The number of currently installed bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1b6f6b3a06d44ff088a5ac0336ad995b','0','2','0'), ('30115','15','','10250','#{#SNMPVALUE}: Memory utilization','vm.memory.util[snmp.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hpLocalMemAllocBytes.{#SNMPINDEX}])/last(//vm.memory.total[hpLocalMemTotalBytes.{#SNMPINDEX}])*100','','0','','','','','2',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7167b10eb27548b8b48b7dc2881b82dd','0','2','0'), ('30116','20','get[1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.{#SNMPINDEX}]','10229','{#ENT_NAME}: Memory utilization','vm.memory.util[hwEntityMemUsage.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HUAWEI-ENTITY-EXTENT-MIB The memory usage for the entity. This object indicates what percent of memory are used. Reference: http://support.huawei.com/enterprise/KnowledgebaseReadAction.action?contentId=KB1000090234','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6215b7e957884516a350f8a7038c7d3e','0','2','0'), ('30117','20','get[1.3.6.1.2.1.1.1.0]','10231','Operating system','system.sw.os[sysDescr.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','24cd5862c2de4cbaad0b3bbce7f26a65','0','2','0'), ('30118','20','get[1.3.6.1.4.1.2636.3.1.13.1.11.{#SNMPINDEX}]','10231','{#SNMPVALUE}: Memory utilization','vm.memory.util[jnxOperatingBuffer.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: JUNIPER-MIB The buffer pool utilization in percentage of this subject. Zero if unavailable or inapplicable. Reference: http://kb.juniper.net/library/CUSTOMERSERVICE/GLOBAL_JTAC/BK26199/SRX%20SNMP%20Monitoring%20Guide_v1.1.pdf','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f60e29b4392e4a3e882a4175e618890c','0','2','0'), ('30119','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10233','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7e3b3e78086742a7b9cda953367a2d83','0','2','0'), ('30120','15','','10233','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','56017f610bf74f0aaaa92e9183e68ea5','0','2','0'), ('30121','20','get[1.3.6.1.4.1.4526.10.1.1.1.10.0]','10234','Operating system','system.sw.os[agentInventoryOperatingSystem.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FASTPATH-SWITCHING-MIB Operating System running on this unit','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5bd8c956163d4201a7e896abde28044b','0','2','0'), ('30122','20','get[1.3.6.1.4.1.4526.10.1.1.5.1.0]','10234','Available memory','vm.memory.available[agentSwitchCpuProcessMemFree.0]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FASTPATH-SWITCHING-MIB The total memory freed for utilization.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f94ffd4d6eb84ae88cdf5033df65f249','0','2','0'), ('30123','15','','10234','Memory utilization','vm.memory.util[memoryUsedPercentage.0]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vm.memory.total[agentSwitchCpuProcessMemAvailable.0])-last(//vm.memory.available[agentSwitchCpuProcessMemFree.0]))/last(//vm.memory.total[agentSwitchCpuProcessMemAvailable.0])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','86ef153d78b5466cac76a32f81d8b958','0','2','0'), ('30124','20','get[1.3.6.1.4.1.27514.100.1.11.9.0]','10235','Temperature','sensor.temp.value[switchTemperature.0]','3m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: QTECH-MIB Temperature readings of testpoint.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ddb9ac31893d4b1d882b0e500d2d6ad7','0','2','0'), ('30125','20','get[1.3.6.1.4.1.27514.100.1.3.0]','10235','Operating system','system.sw.os[sysSoftwareVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: QTECH-MIB','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ea6000232033495babf9157a67b89bcc','0','2','0'), ('30126','15','','10235','Memory utilization','vm.memory.util[vm.memory.util.0]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[switchMemoryBusy.0])/last(//vm.memory.total[switchMemorySize.0])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f2271ace8bd040618f10ec651a634cbc','0','2','0'), ('30127','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.27514.100.1.12.1.3]','10235','FAN Discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','58e5512df6204f7b9b7156055cfa35d4','0','2','0'), ('30128','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.27514.100.1.7.1.5]','10235','PSU Discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ca95cd64b34740df80505a2df513dd25','0','2','0'), ('30129','20','get[1.3.6.1.4.1.27514.100.1.12.1.3.{#SNMPINDEX}]','10235','{#SNMPINDEX}: Fan status','sensor.fan.status[sysFanStatus.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'100','','','0','','','','','2',NULL,'MIB: QTECH-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bbd9e200b3e849d69fa4084f7ac7f378','0','2','0'), ('30130','20','get[1.3.6.1.4.1.27514.100.1.7.1.5.{#SNMPINDEX}]','10235','{#SNMPINDEX}: Power supply status','sensor.psu.status[sysPowerStatus.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'101','','','0','','','','','2',NULL,'MIB: QTECH-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','124af24c3fb140499431f18e82a00c9d','0','2','0'), ('30132','20','get[1.3.6.1.4.1.10002.1.1.1.1.3.0]','10237','Memory (buffers)','vm.memory.buffers[memBuffer.0]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FROGFOOT-RESOURCES-MIB Memory used by kernel buffers (Buffers in /proc/meminfo).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6393f8a84fd4417abdccd8bd867aac7e','0','2','0'), ('30133','20','get[1.3.6.1.4.1.10002.1.1.1.1.4.0]','10237','Memory (cached)','vm.memory.cached[memCache.0]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FROGFOOT-RESOURCES-MIB Memory used by the page cache and slabs (Cached and Slab in /proc/meminfo).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','224c8d32f0d649b3b94b77e960934f15','0','2','0'), ('30134','20','get[1.3.6.1.4.1.10002.1.1.1.1.2.0]','10237','Free memory','vm.memory.free[memFree.0]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FROGFOOT-RESOURCES-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','401b95eff89743cba6942606ac051b01','0','2','0'), ('30135','20','get[1.3.6.1.4.1.10002.1.1.1.1.1.0]','10237','Total memory','vm.memory.total[memTotal.0]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FROGFOOT-RESOURCES-MIB The total memory expressed in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','eefa6d2e8560407f82bbb8783bb399ad','0','2','0'), ('30136','15','','10237','Memory utilization','vm.memory.util[memoryUsedPercentage]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vm.memory.total[memTotal.0])-(last(//vm.memory.free[memFree.0])+last(//vm.memory.buffers[memBuffer.0])+last(//vm.memory.cached[memCache.0])))/last(//vm.memory.total[memTotal.0])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','29df9ffb192d4434a88ac6a413b9569d','0','2','0'), ('30187','0','','10308','Service response time','net.tcp.service.perf["{$HAPROXY.STATS.SCHEME}","{$HAPROXY.STATS.HOST}","{$HAPROXY.STATS.PORT}"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c224cfe9b7474f9e80618dde78cfcb11','0','2','0'), ('30188','0','','10308','Service status','net.tcp.service["{$HAPROXY.STATS.SCHEME}","{$HAPROXY.STATS.HOST}","{$HAPROXY.STATS.PORT}"]','1m','31d','365d','0','3','','','','',NULL,'19','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','97e45c508f5a4df78fc783382088e233','0','2','0'), ('30189','0','','10308','Get stats','web.page.get["{$HAPROXY.STATS.SCHEME}://{$HAPROXY.STATS.HOST}:{$HAPROXY.STATS.PORT}/{$HAPROXY.STATS.PATH};csv"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'HAProxy Statistics Report in CSV format','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aabdb5706b6744379561f269e0709141','0','2','0'), ('30190','0','','10308','Get stats page','web.page.get["{$HAPROXY.STATS.SCHEME}://{$HAPROXY.STATS.HOST}:{$HAPROXY.STATS.PORT}/{$HAPROXY.STATS.PATH}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'HAProxy Statistics Report HTML','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e70009bd4e3041a3952738673ebb5c29','0','2','0'), ('30196','15','','10308','Frontend {#PXNAME}: Session utilization','haproxy.frontend.sutil[{#PXNAME},{#SVNAME}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//haproxy.frontend.scur[{#PXNAME},{#SVNAME}]) / last(//haproxy.frontend.slim[{#PXNAME},{#SVNAME}]) * 100','','0','','','','','2',NULL,'Percentage of sessions used (scur / slim * 100).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4aedda0904954ade92a4aad6460d759b','0','2','0'), ('30230','19','','10309','Get stats','haproxy.get','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$HAPROXY.USERNAME}','{$HAPROXY.PASSWORD}','','','0',NULL,'HAProxy Statistics Report in CSV format','0','30d','0','',NULL,'','{$HAPROXY.STATS.SCHEME}://{$HAPROXY.STATS.HOST}:{$HAPROXY.STATS.PORT}/{$HAPROXY.STATS.PATH};csv','','','200','1','0','','','0','0','0','0','0','0','0','93a0ea1e5b0145b5bd2dcdb698d367c2','0','2','0'), ('30231','19','','10309','Get stats page','haproxy.get_html','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$HAPROXY.USERNAME}','{$HAPROXY.PASSWORD}','','','0',NULL,'HAProxy Statistics Report HTML','0','30d','0','',NULL,'','{$HAPROXY.STATS.SCHEME}://{$HAPROXY.STATS.HOST}:{$HAPROXY.STATS.PORT}/{$HAPROXY.STATS.PATH}','','','200','1','0','','','0','0','0','0','0','0','0','123c03c715494faea6b1d4f8b8fa564d','0','2','0'), ('30239','15','','10309','Frontend {#PXNAME}: Session utilization','haproxy.frontend.sutil[{#PXNAME},{#SVNAME}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//haproxy.frontend.scur[{#PXNAME},{#SVNAME}]) / last(//haproxy.frontend.slim[{#PXNAME},{#SVNAME}]) * 100','','0','','','','','2',NULL,'Percentage of sessions used (scur / slim * 100).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','53efa6139fe3400283c96ec76eb20855','0','2','0'), ('30273','0','','10310','Ping','redis.ping["{$REDIS.CONN.URI}"]','1m','31d','365d','0','3','','','','',NULL,'21','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5949fadcbe2b405baff0668e81627278','0','2','0'), ('30274','0','','10310','Slowlog entries per second','redis.slowlog.count["{$REDIS.CONN.URI}"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','51a65fa1d27e4fcd915c5019687e7bc9','0','2','0'), ('30275','0','','10310','Get config','redis.config["{$REDIS.CONN.URI}"]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bf68f3ecc3544ef0af00889139caf313','0','2','0'), ('30276','0','','10310','Get info','redis.info["{$REDIS.CONN.URI}"]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','720f146ffe7e481482e11db4b99634c8','0','2','0'), ('30337','0','','10310','Process metrics discovery','proc.num["{$REDIS.LLD.PROCESS_NAME}"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Collect metrics by Zabbix agent if it exists','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','527a3526b0e64225bb3dcf2dbbfbda5b','0','2','0'), ('30344','0','','10310','CPU utilization','proc.cpu.util["{$REDIS.PROCESS_NAME}{#SINGLETON}"]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Process CPU utilization percentage.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','376a8861723c45c3bde08573c7ab2ed9','0','2','0'), ('30345','0','','10310','Memory usage (rss)','proc.mem["{$REDIS.PROCESS_NAME}{#SINGLETON}",,,,rss]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Resident set size memory used by process in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9d68e00f913a4faea5a334d361f324b0','0','2','0'), ('30346','0','','10310','Memory usage (vsize)','proc.mem["{$REDIS.PROCESS_NAME}{#SINGLETON}",,,,vsize]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Virtual memory size used by process in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','325cabaa95994a58bf30992586ba7544','0','2','0'), ('30347','0','','10310','Number of running processes','proc.num["{$REDIS.PROCESS_NAME}{#SINGLETON}"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d9ccc25e5d1b4f05b22354a7672b518c','0','2','0'), ('30431','0','','10316','Version','mysql.version["{$MYSQL.HOST}","{$MYSQL.PORT}"]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MySQL server version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a5d0f152c3ef4e069c3d5a6a5a9470fe','0','2','0'), ('30432','0','','10316','Status','mysql.ping["{$MYSQL.HOST}","{$MYSQL.PORT}"]','1m','31d','365d','0','3','','','','',NULL,'22','','','0','','','','','0',NULL,'MySQL server status.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','41cd6c8c535948f3bde6324e0912f1a8','0','2','0'), ('30433','0','','10316','Get status variables','mysql.get_status_variables["{$MYSQL.HOST}","{$MYSQL.PORT}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Gets server global status information.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2ba81b425bde4ba5b3f7d00a6c922ed9','0','2','0'), ('30434','15','','10316','Buffer pool utilization','mysql.buffer_pool_utilization','1m','31d','365d','0','0','','%','','',NULL,NULL,'( last(//mysql.innodb_buffer_pool_pages_total) - last(//mysql.innodb_buffer_pool_pages_free) ) / ( last(//mysql.innodb_buffer_pool_pages_total) + ( last(//mysql.innodb_buffer_pool_pages_total) = 0 ) ) * 100 * ( last(//mysql.innodb_buffer_pool_pages_total) > 0 )','','0','','','','','0',NULL,'Ratio of used to total pages in the buffer pool.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9aca02e86e744f43ab48e8ca9453cf77','0','2','0'), ('30435','15','','10316','Buffer pool efficiency','mysql.buffer_pool_efficiency','1m','31d','365d','0','0','','%','','',NULL,NULL,'100 - (last(//mysql.innodb_buffer_pool_reads) / ( last(//mysql.innodb_buffer_pool_read_requests) + ( last(//mysql.innodb_buffer_pool_read_requests) = 0 ) ) * 100 * ( last(//mysql.innodb_buffer_pool_read_requests) > 0 ))','','0','','','','','0',NULL,'The item shows how effectively the buffer pool is serving reads.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9a447424aca84124abdfa389865126d4','0','2','0'), ('30472','0','','10316','Database discovery','mysql.db.discovery["{$MYSQL.HOST}","{$MYSQL.PORT}"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning databases in DBMS.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8ceb226f000d48f099ee6e128ad551b5','0','2','0'), ('30473','0','','10316','Replication discovery','mysql.replication.discovery["{$MYSQL.HOST}","{$MYSQL.PORT}"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'If "show slave status" returns Master_Host, "Replication: *" items are created.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aed60b7ae3794d0ba25ad82da12b8966','0','2','0'), ('30474','0','','10316','Size of database {#DBNAME}','mysql.dbsize["{$MYSQL.HOST}","{$MYSQL.PORT}","{#DBNAME}"]','5m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Database size.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dda45077011d4f8fa5c25b1f351179ca','0','2','0'), ('30475','0','','10316','Replication Slave status {#MASTER_HOST}','mysql.slave_status["{$MYSQL.HOST}","{$MYSQL.PORT}","{#MASTER_HOST}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The item gets status information on the essential parameters of the slave threads.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d87c7c03e5884a43912f60ad91c3b46f','0','2','0'), ('30479','11','','10317','Get status variables','db.odbc.get[get_status_variables,"{$MYSQL.DSN}"]','1m','0','0','0','4','','','','',NULL,NULL,'show global status','','0','{$MYSQL.USER}','{$MYSQL.PASSWORD}','','','0',NULL,'Gets server global status information.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','72e0f88741d746bf88e8951ef69681f9','0','2','0'), ('30480','11','','10317','Version','db.odbc.select[version,"{$MYSQL.DSN}"]','15m','31d','0','0','1','','','','',NULL,NULL,'select version()','','0','{$MYSQL.USER}','{$MYSQL.PASSWORD}','','','0',NULL,'MySQL server version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b9fb80ca366e4d33801472bcd013f881','0','2','0'), ('30481','11','','10317','Status','db.odbc.select[ping,"{$MYSQL.DSN}"]','1m','31d','365d','0','3','','','','',NULL,'23','select "1"','','0','{$MYSQL.USER}','{$MYSQL.PASSWORD}','','','0',NULL,'MySQL server status.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5b7c14e38799427cb6520f47bf8afe6c','0','2','0'), ('30482','15','','10317','Buffer pool efficiency','mysql.buffer_pool_efficiency','1m','31d','365d','0','0','','%','','',NULL,NULL,'100 - (last(//mysql.innodb_buffer_pool_reads) / ( last(//mysql.innodb_buffer_pool_read_requests) + ( last(//mysql.innodb_buffer_pool_read_requests) = 0 ) ) * 100 * ( last(//mysql.innodb_buffer_pool_read_requests) > 0 ))','','0','','','','','0',NULL,'The item shows how effectively the buffer pool is serving reads.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','05e7e91206bb4138a945ea0de2d8c01d','0','2','0'), ('30483','15','','10317','Buffer pool utilization','mysql.buffer_pool_utilization','1m','31d','365d','0','0','','%','','',NULL,NULL,'( last(//mysql.innodb_buffer_pool_pages_total) - last(//mysql.innodb_buffer_pool_pages_free) ) / ( last(//mysql.innodb_buffer_pool_pages_total) + ( last(//mysql.innodb_buffer_pool_pages_total) = 0 ) ) * 100 * ( last(//mysql.innodb_buffer_pool_pages_total) > 0 )','','0','','','','','0',NULL,'Ratio of used to total pages in the buffer pool.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ad5520e067ea405eb939d319fa9690e9','0','2','0'), ('30522','11','','10317','Size of database {#DATABASE}','db.odbc.select[{#DATABASE}_size,"{$MYSQL.DSN}"]','5m','31d','365d','0','3','','B','','',NULL,NULL,'SELECT COALESCE(SUM(DATA_LENGTH + INDEX_LENGTH),0) FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA="{#DATABASE}"','','0','{$MYSQL.USER}','{$MYSQL.PASSWORD}','','','2',NULL,'Database size.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f358179ef78b4a31affa9e049b4048b8','0','2','0'), ('30527','0','','10318','Get data_usage','docker.data_usage','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4f7221691d494c60b40abb6dd5c14719','0','2','0'), ('30528','0','','10318','Get containers','docker.containers','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6edcd2fbe7c446738d323ce7f1c11810','0','2','0'), ('30529','0','','10318','Get info','docker.info','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3d8265e0495d4cbe97535f281a957b3e','0','2','0'), ('30530','0','','10318','Ping','docker.ping','1m','31d','365d','0','3','','','','',NULL,'24','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3c8f26e4b80f4356bde061ccddb95f2c','0','2','0'), ('30531','0','','10318','Get images','docker.images','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8b2be6316b8d4d019443062f0809b579','0','2','0'), ('30571','0','','10318','Containers discovery','docker.containers.discovery[false]','15m','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of containers metrics. Parameter: true - Returns all containers false - Returns only running containers','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6f379dce9d3440018deb2c2cbaa91c06','0','2','0'), ('30572','0','','10318','Images discovery','docker.images.discovery','15m','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of images metrics.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0b31468772c942cc8a401af2d33f17d2','0','2','0'), ('30573','0','','10318','Container {#NAME}: Get stats','docker.container_stats["{#NAME}"]','1m','0','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get container stats based on resource usage.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4192b5b8be2545568637b7121c1466c1','0','2','0'), ('30574','0','','10318','Container {#NAME}: Get info','docker.container_info["{#NAME}",full]','1m','0','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Return low-level information about a container.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','743e2c9545de49c89472e343bf8d38da','0','2','0'), ('30611','0','','10319','Ping','memcached.ping["{$MEMCACHED.CONN.URI}"]','1m','31d','365d','0','3','','','','',NULL,'25','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','57a4c2e763c3430daacd4495b91c3e74','0','2','0'), ('30612','0','','10319','Get status','memcached.stats["{$MEMCACHED.CONN.URI}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3a096b6d7d9945fe9a25d1fb5c835f1a','0','2','0'), ('30637','0','','10320','Version','mysql.version["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MySQL server version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8058b068b90748fea464443058103fc8','0','2','0'), ('30638','0','','10320','Status','mysql.ping["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"]','1m','31d','365d','0','3','','','','',NULL,'26','','','0','','','','','0',NULL,'MySQL server status.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8ca25701d88a4d33899a515d8e25dd5b','0','2','0'), ('30639','0','','10320','Get status variables','mysql.get_status_variables["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Gets server global status information.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a18b1092c42a4560abac7af42b14f007','0','2','0'), ('30640','15','','10320','Buffer pool utilization','mysql.buffer_pool_utilization','1m','31d','365d','0','0','','%','','',NULL,NULL,'( last(//mysql.innodb_buffer_pool_pages_total) - last(//mysql.innodb_buffer_pool_pages_free) ) / ( last(//mysql.innodb_buffer_pool_pages_total) + ( last(//mysql.innodb_buffer_pool_pages_total) = 0 ) ) * 100 * ( last(//mysql.innodb_buffer_pool_pages_total) > 0 )','','0','','','','','0',NULL,'Ratio of used to total pages in the buffer pool.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','70a1642e80114fd3a129c5774acc4f50','0','2','0'), ('30641','15','','10320','Buffer pool efficiency','mysql.buffer_pool_efficiency','1m','31d','365d','0','0','','%','','',NULL,NULL,'100 - (last(//mysql.innodb_buffer_pool_reads) / ( last(//mysql.innodb_buffer_pool_read_requests) + ( last(//mysql.innodb_buffer_pool_read_requests) = 0 ) ) * 100 * ( last(//mysql.innodb_buffer_pool_read_requests) > 0 ))','','0','','','','','0',NULL,'The item shows how effectively the buffer pool is serving reads.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e222b97642d04128af8c1ec20e463152','0','2','0'), ('30678','0','','10320','Database discovery','mysql.db.discovery["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning databases in DBMS.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','49cbb331980040908673ceb2706d9542','0','2','0'), ('30679','0','','10320','Replication discovery','mysql.replication.discovery["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'If "show slave status" returns Master_Host, "Replication: *" items are created.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','59cd0d5f67e441f7ad3627233ab6b595','0','2','0'), ('30680','0','','10320','Size of database {#DATABASE}','mysql.db.size["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}","{#DATABASE}"]','5m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Database size.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e3e3c31483e94be2bd24b062bb049027','0','2','0'), ('30681','0','','10320','Replication Slave status {#MASTER_HOST}','mysql.replication.get_slave_status["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}","{#MASTER_HOST}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The item gets status information on the essential parameters of the slave threads.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','130d6421b7864444a083dc7ffb1c03c5','0','2','0'), ('30685','12','','10321','Get IPMI sensors','ipmi.get','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The master item that receives all sensors with values for LLD and dependent elements from BMC.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dbcf45cb09284fc19a17e7369c8fda43','0','2','0'), ('30690','3','','10322','Service status','net.tcp.service["{$ELASTICSEARCH.SCHEME}","{$ELASTICSEARCH.HOST}","{$ELASTICSEARCH.PORT}"]','1m','31d','365d','0','3','','','','',NULL,'27','','','0','','','','','0',NULL,'Checks if the service is running and accepting TCP connections.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d0d38ce55f844a51a0f2131c86bec1ae','0','2','0'), ('30691','19','','10322','Get cluster stats','es.cluster.get_stats','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$ELASTICSEARCH.USERNAME}','{$ELASTICSEARCH.PASSWORD}','','','0',NULL,'Returns cluster statistics.','0','30d','0','',NULL,'15s','{$ELASTICSEARCH.SCHEME}://{$ELASTICSEARCH.HOST}:{$ELASTICSEARCH.PORT}/_cluster/stats','','','200','1','0','','','0','0','0','0','0','0','0','7066a66f352e4d79ba4aec11c0c5c611','0','2','0'), ('30692','3','','10322','Service response time','net.tcp.service.perf["{$ELASTICSEARCH.SCHEME}","{$ELASTICSEARCH.HOST}","{$ELASTICSEARCH.PORT}"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Checks performance of the TCP service.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','671888d47c724e54aca78fbe1b3ecaed','0','2','0'), ('30693','19','','10322','Get nodes stats','es.nodes.get_stats','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$ELASTICSEARCH.USERNAME}','{$ELASTICSEARCH.PASSWORD}','','','0',NULL,'Returns cluster nodes statistics.','0','30d','0','',NULL,'30s','{$ELASTICSEARCH.SCHEME}://{$ELASTICSEARCH.HOST}:{$ELASTICSEARCH.PORT}/_nodes/stats','','','200','1','0','','','0','0','0','0','0','0','0','66c22b8b2b8b40fda7ac6f0ae472befd','0','2','0'), ('30694','19','','10322','Get cluster health','es.cluster.get_health','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$ELASTICSEARCH.USERNAME}','{$ELASTICSEARCH.PASSWORD}','','','0',NULL,'Returns the health status of a cluster.','0','30d','0','',NULL,'15s','{$ELASTICSEARCH.SCHEME}://{$ELASTICSEARCH.HOST}:{$ELASTICSEARCH.PORT}/_cluster/health?timeout=5s','','','200','1','0','','','0','0','0','0','0','0','0','7f587fd270be4eb68d81ae1de2a3ca1f','0','2','0'), ('30713','19','','10322','Cluster nodes discovery','es.nodes.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$ELASTICSEARCH.USERNAME}','{$ELASTICSEARCH.PASSWORD}','','','1',NULL,'Discovery ES cluster nodes.','0','7d','0','',NULL,'15s','{$ELASTICSEARCH.SCHEME}://{$ELASTICSEARCH.HOST}:{$ELASTICSEARCH.PORT}/_nodes/_all/nodes','','','200','1','0','','','0','0','0','0','0','0','0','5105173f24d941b2969fe3d190d22e82','0','2','0'), ('30714','15','','10322','ES {#ES.NODE}: Query latency','es.node.indices.search.query_latency[{#ES.NODE}]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'change(//es.node.indices.search.query_time_in_millis[{#ES.NODE}]) / ( change(//es.node.indices.search.query_total[{#ES.NODE}]) + (change(//es.node.indices.search.query_total[{#ES.NODE}]) = 0) )','','0','','','','','2',NULL,'The average query latency calculated by sampling the total number of queries and the total elapsed time at regular intervals.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fadb6fe530ab4b1296d4c17728667b12','0','2','0'), ('30715','15','','10322','ES {#ES.NODE}: Flush latency','es.node.indices.flush.latency[{#ES.NODE}]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'change(//es.node.indices.flush.total_time_in_millis[{#ES.NODE}]) / ( change(//es.node.indices.flush.total[{#ES.NODE}]) + (change(//es.node.indices.flush.total[{#ES.NODE}]) = 0) )','','0','','','','','2',NULL,'The average flush latency calculated from the available flush.total and flush.total_time_in_millis metrics.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c530311329e348cca74c38fa2260236b','0','2','0'), ('30716','15','','10322','ES {#ES.NODE}: Indexing latency','es.node.indices.indexing.index_latency[{#ES.NODE}]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'change(//es.node.indices.indexing.index_time_in_millis[{#ES.NODE}]) / ( change(//es.node.indices.indexing.index_total[{#ES.NODE}]) + (change(//es.node.indices.indexing.index_total[{#ES.NODE}]) = 0) )','','0','','','','','2',NULL,'The average indexing latency calculated from the available index_total and index_time_in_millis metrics.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','23f54c51c30a4dbdbef48611a7907db6','0','2','0'), ('30717','15','','10322','ES {#ES.NODE}: Fetch latency','es.node.indices.search.fetch_latency[{#ES.NODE}]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'change(//es.node.indices.search.fetch_time_in_millis[{#ES.NODE}]) / ( change(//es.node.indices.search.fetch_total[{#ES.NODE}]) + (change(//es.node.indices.search.fetch_total[{#ES.NODE}]) = 0) )','','0','','','','','2',NULL,'The average fetch latency calculated by sampling the total number of fetches and the total elapsed time at regular intervals.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','79b5fd5e04e249da9f73fbe68915fdb1','0','2','0'), ('30789','3','','10309','Service response time','net.tcp.service.perf["{$HAPROXY.STATS.SCHEME}","{$HAPROXY.STATS.HOST}","{$HAPROXY.STATS.PORT}"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6f9c22a840764181be9cf98609e7f691','0','2','0'), ('30790','3','','10309','Service status','net.tcp.service["{$HAPROXY.STATS.SCHEME}","{$HAPROXY.STATS.HOST}","{$HAPROXY.STATS.PORT}"]','1m','31d','365d','0','3','','','','',NULL,'20','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','68cb52357d7443d79373df3890ed175f','0','2','0'), ('30821','19','','10323','Ping','clickhouse.ping','1m','31d','365d','0','3','','','','',NULL,'28','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','{$CLICKHOUSE.SCHEME}://{$CLICKHOUSE.HOST}:{$CLICKHOUSE.PORT}/ping','','','','1','0','','','0','0','0','0','0','0','0','cb40b0cf1296436d9a4e41062d1b3fa9','0','2','0'), ('30822','19','','10323','Version','clickhouse.version','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of the server','0','30d','0','',NULL,'','{$CLICKHOUSE.SCHEME}://{$CLICKHOUSE.HOST}:{$CLICKHOUSE.PORT}/','[{"query":"SELECT version()"}]','','200','1','0','','X-ClickHouse-User: {$CLICKHOUSE.USER} X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}','0','0','0','0','0','0','0','d09b77c25dfd45249df05fc3f6d45b7b','0','2','0'), ('30823','19','','10323','Get replicas info','clickhouse.replicas','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get information about replicas.','0','30d','0','',NULL,'','{$CLICKHOUSE.SCHEME}://{$CLICKHOUSE.HOST}:{$CLICKHOUSE.PORT}/','[{"query":"SELECT database, table, is_readonly, is_session_expired, future_parts, parts_to_check, queue_size, inserts_in_queue, merges_in_queue, log_max_index, log_pointer, total_replicas, active_replicas, log_max_index - log_pointer as replica_lag FROM system.replicas format JSON"}]','','200','1','0','','X-ClickHouse-User: {$CLICKHOUSE.USER} X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}','0','0','0','0','0','0','0','3793962be3494772832796c932947e1d','0','2','0'), ('30824','19','','10323','Get system.asynchronous_metrics','clickhouse.system.asynchronous_metrics','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get metrics that are calculated periodically in the background','0','30d','0','',NULL,'','{$CLICKHOUSE.SCHEME}://{$CLICKHOUSE.HOST}:{$CLICKHOUSE.PORT}/','[{"query":"select metric, value from system.asynchronous_metrics format JSON"}]','','200','1','0','','X-ClickHouse-User: {$CLICKHOUSE.USER} X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}','0','0','0','0','0','0','0','6c84e0abd186467882d2d3842749f937','0','2','0'), ('30825','19','','10323','Get system.events','clickhouse.system.events','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get information about the number of events that have occurred in the system.','0','30d','0','',NULL,'','{$CLICKHOUSE.SCHEME}://{$CLICKHOUSE.HOST}:{$CLICKHOUSE.PORT}/','[{"query":"select event, value from system.events format JSON"}]','','200','1','0','','X-ClickHouse-User: {$CLICKHOUSE.USER} X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}','0','0','0','0','0','0','0','8aa612d27547446e9457aeaf6e94e320','0','2','0'), ('30826','19','','10323','Get system.metrics','clickhouse.system.metrics','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get metrics which can be calculated instantly, or have a current value format JSONEachRow','0','30d','0','',NULL,'','{$CLICKHOUSE.SCHEME}://{$CLICKHOUSE.HOST}:{$CLICKHOUSE.PORT}/','[{"query":"select metric, value from system.metrics format JSON"}]','','200','1','0','','X-ClickHouse-User: {$CLICKHOUSE.USER} X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}','0','0','0','0','0','0','0','2193464b67724392905deef21f2f7c20','0','2','0'), ('30827','19','','10323','Longest currently running query time','clickhouse.process.elapsed','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Get longest running query.','0','30d','0','',NULL,'','{$CLICKHOUSE.SCHEME}://{$CLICKHOUSE.HOST}:{$CLICKHOUSE.PORT}/','[{"query":"SELECT max(elapsed) FROM system.processes"}]','','200','1','0','','X-ClickHouse-User: {$CLICKHOUSE.USER} X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}','0','0','0','0','0','0','0','4fb14efc757542c1b50605bdfb2e23cb','0','2','0'), ('30828','19','','10323','Get tables info','clickhouse.tables','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get information about tables.','0','30d','0','',NULL,'','{$CLICKHOUSE.SCHEME}://{$CLICKHOUSE.HOST}:{$CLICKHOUSE.PORT}/','[{"query":"select database, table, sum(bytes) as bytes, count() as parts, sum(rows) as rows from system.parts where active = 1 group by database, table format JSON"}]','','200','1','0','','X-ClickHouse-User: {$CLICKHOUSE.USER} X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}','0','0','0','0','0','0','0','042f4b688cfe488fbd0e80f40f51ce78','0','2','0'), ('30829','19','','10323','Get system.settings','clickhouse.system.settings','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get information about settings that are currently in use.','0','30d','0','',NULL,'','{$CLICKHOUSE.SCHEME}://{$CLICKHOUSE.HOST}:{$CLICKHOUSE.PORT}/','[{"query":"select name, value from system.settings format JSON"}]','','200','1','0','','X-ClickHouse-User: {$CLICKHOUSE.USER} X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}','0','0','0','0','0','0','0','88c843c6d4fd43c794d1447109146312','0','2','0'), ('30830','19','','10323','Get dictionaries info','clickhouse.dictionaries','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get information about dictionaries.','0','30d','0','',NULL,'','{$CLICKHOUSE.SCHEME}://{$CLICKHOUSE.HOST}:{$CLICKHOUSE.PORT}/','[{"query":"SELECT * FROM system.dictionaries format JSON"}]','','200','1','0','','X-ClickHouse-User: {$CLICKHOUSE.USER} X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}','0','0','0','0','0','0','0','46d8ed7374274d71a06119f50463f26c','0','2','0'), ('30896','0','','10264','Get status','web.page.get["{$APACHE.STATUS.SCHEME}://{$APACHE.STATUS.HOST}:{$APACHE.STATUS.PORT}/{$APACHE.STATUS.PATH}"]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Getting data from a machine-readable version of the Apache status page. For more information see Apache Module [mod_status](https://httpd.apache.org/docs/current/mod/mod_status.html).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','115413a0f5ab4caba418ab841ad81eba','0','2','0'), ('30923','3','','10324','Service''s TCP port state','net.tcp.service["{$ETCD.SCHEME}","{$ETCD.HOST}","{$ETCD.PORT}"]','1m','31d','365d','0','3','','','','',NULL,'29','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a0f94f429b99432e86d15ffa74d6eada','0','2','0'), ('30924','19','','10324','Node health','etcd.health','1m','31d','365d','0','3','','','','',NULL,'150','','','1','{$ETCD.USER}','{$ETCD.PASSWORD}','','','0',NULL,'','0','30d','0','',NULL,'','{$ETCD.SCHEME}://{$ETCD.HOST}:{$ETCD.PORT}/health','','','200','1','0','','','0','0','0','0','0','0','0','3fde4db8b9684ba4b56ba915e48957b5','0','2','0'), ('30925','19','','10324','Get node metrics','etcd.get_metrics','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$ETCD.USER}','{$ETCD.PASSWORD}','','','0',NULL,'','0','30d','0','',NULL,'','{$ETCD.SCHEME}://{$ETCD.HOST}:{$ETCD.PORT}/metrics','','','200','1','0','','','0','0','0','0','0','0','0','34ffab33275a400ab88e5217dee5ef96','0','2','0'), ('30926','19','','10324','Get version','etcd.get_version','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','{$ETCD.SCHEME}://{$ETCD.HOST}:{$ETCD.PORT}/version','','','200','1','0','','','0','0','0','0','0','0','0','fdf7593420ab42b2a5af8f8b8030b517','0','2','0'), ('30968','3','','10325','{$IIS.PORT} port ping','net.tcp.service[{$IIS.SERVICE},,{$IIS.PORT}]','1m','31d','365d','0','3','','','','',NULL,'30','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','96f2dd86997d4e259875b2fa9b1a3169','0','2','0'), ('30969','0','','10325','Total connection attempts',E'perf_counter_en["\\Web Service(_Total)\\Total Connection Attempts (all instances)"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of connections to the Web or FTP service that have been attempted since service startup. The count is the total for all Web sites or FTP sites combined.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','805f7dca2ac74f5bbfb81c5e7bfa6e09','0','2','0'), ('30970','0','','10325','Method POST requests per second',E'perf_counter_en["\\Web Service(_Total)\\Post Requests/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Rate of HTTP requests using POST method. Generally used for forms or gateway requests. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5f1210173665453e84f8f330a8c15eea','0','2','0'), ('30971','0','','10325','Method PROPFIND requests per second',E'perf_counter_en["\\Web Service(_Total)\\Propfind Requests/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the PROPFIND method made. Propfind requests retrieve property values on files and directories. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f197e93e03d04025bc855d4d77c35010','0','2','0'), ('30972','0','','10325','Method PROPPATCH requests per second',E'perf_counter_en["\\Web Service(_Total)\\Proppatch Requests/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the PROPPATCH method made. Proppatch requests set property values on files and directories. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','55c71bab45b04a2ca2afb526bf7c3e7f','0','2','0'), ('30973','0','','10325','Method PUT requests per second',E'perf_counter_en["\\Web Service(_Total)\\Put Requests/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the PUT method made. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d1d19cf6c920465184aa2b2a8b4439c9','0','2','0'), ('30974','0','','10325','Method MS-SEARCH requests per second',E'perf_counter_en["\\Web Service(_Total)\\Search Requests/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the MS-SEARCH method made. Search requests are used to query the server to find resources that match a set of conditions provided by the client. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','20ae8a67912045dc9b69c83d68e5e8ea','0','2','0'), ('30975','0','','10325','Uptime',E'perf_counter_en["\\Web Service(_Total)\\Service Uptime"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The service uptime expressed in seconds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4aa9419482eb484a8fc1773bee8b2993','0','2','0'), ('30976','0','','10325','Method Total requests per second',E'perf_counter_en["\\Web Service(_Total)\\Total Method Requests/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of all HTTP requests received. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','90eb19d7d37f439da2c78c44d85784ef','0','2','0'), ('30977','0','','10325','Method OPTIONS requests per second',E'perf_counter_en["\\Web Service(_Total)\\Options Requests/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the OPTIONS method made. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','22ececa2db2d488587b1194883723ea6','0','2','0'), ('30978','0','','10325','Method TRACE requests per second',E'perf_counter_en["\\Web Service(_Total)\\Trace Requests/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the TRACE method made. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c2ddd72243ba4a499a7a1e9ba6e4046c','0','2','0'), ('30979','0','','10325','Method TRACE requests per second',E'perf_counter_en["\\Web Service(_Total)\\Unlock Requests/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the UNLOCK method made. Unlock requests are used to remove locks from files. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','05a19416695b436daf701d9750b015a8','0','2','0'), ('30980','0','','10325','Files cache hits percentage',E'perf_counter_en["\\Web Service Cache\\File Cache Hits %"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The ratio of user-mode file cache hits to total cache requests (since service startup). Note: This value might be low if the Kernel URI cache hits percentage is high.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1e4b39ec2cca49fb9fb5a306c2724568','0','2','0'), ('30981','0','','10325','File cache misses',E'perf_counter_en["\\Web Service Cache\\File Cache Misses"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of unsuccessful lookups in the user-mode file cache since service startup.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d9c46d370afc496ba0a0ad0c141b4490','0','2','0'), ('30982','0','','10325','URIs cache hits percentage',E'perf_counter_en["\\Web Service Cache\\URI Cache Hits %"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The ratio of user-mode URI Cache Hits to total cache requests (since service startup)','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','566f0bea097e4b0bb7042e4f0302ff26','0','2','0'), ('30983','0','','10325','URI cache misses',E'perf_counter_en["\\Web Service Cache\\URI Cache Misses"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of unsuccessful lookups in the user-mode URI cache since service startup.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ab1884be28b54ea7bb187bbe843bb6a7','0','2','0'), ('30984','0','','10325','World Wide Web Publishing Service (W3SVC) state','service.info[W3SVC]','1m','31d','365d','0','3','','','','',NULL,'46','','','0','','','','','0',NULL,'The World Wide Web Publishing Service (W3SVC) provides web connectivity and administration of websites through the IIS snap-in. If the World Wide Web Publishing Service stops, the operating system cannot serve any form of web request. This service was dependent on "Windows Process Activation Service".','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7d76ec3d35f6446c842595c4831fabf4','0','2','0'), ('30985','0','','10325','Method Total Other requests per second',E'perf_counter_en["\\Web Service(_Total)\\Other Request Methods/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total Other Request Methods is the number of HTTP requests that are not OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, MOVE, COPY, MKCOL, PROPFIND, PROPPATCH, SEARCH, LOCK or UNLOCK methods (since service startup). Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1653ca4c0c6743f39d9b1e764022da7c','0','2','0'), ('30986','0','','10325','Not Found errors per second',E'perf_counter_en["\\Web Service(_Total)\\Not Found Errors/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of errors due to requests that couldn''t be satisfied by the server because the requested document could not be found. These are generally reported to the client with HTTP error code 404. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','11d9995d25114e4fad666a1b75734c01','0','2','0'), ('30987','0','','10325','Anonymous users per second',E'perf_counter_en["\\Web Service(_Total)\\Anonymous Users/sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of requests from users over an anonymous connection per second. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','50d8f5a08bbc494b8525f26eedbee781','0','2','0'), ('30988','0','','10325','Current connections',E'perf_counter_en["\\Web Service(_Total)\\Current Connections"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active connections.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1baed2823f1a4d2ca618cac5ab8bbcbb','0','2','0'), ('30989','0','','10325','Bytes Received per second',E'perf_counter_en["\\Web Service(_Total)\\Bytes Received/sec", 60]','1m','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The average rate per minute at which data bytes are received by the service at the Application Layer. Does not include protocol headers or control bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ac80660edbb74c1fb4739368806900d5','0','2','0'), ('30990','0','','10325','Bytes Sent per second',E'perf_counter_en["\\Web Service(_Total)\\Bytes Sent/sec", 60]','1m','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The average rate per minute at which data bytes are sent by the service.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5a0648316a164446bbf605930469d4c4','0','2','0'), ('30991','0','','10325','Bytes Total per second',E'perf_counter_en["\\Web Service(_Total)\\Bytes Total/Sec", 60]','1m','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The average rate per minute of total bytes/sec transferred by the Web service (sum of bytes sent/sec and bytes received/sec).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f086d17b51254e16bd43b57b39dc000e','0','2','0'), ('30992','0','','10325','Method CGI requests per second',E'perf_counter_en["\\Web Service(_Total)\\CGI Requests/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of CGI requests that are simultaneously being processed by the Web service. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b94dc0df81234c7d97197fe30875d5e9','0','2','0'), ('30993','0','','10325','Connection attempts per second',E'perf_counter_en["\\Web Service(_Total)\\Connection Attempts/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The average rate per minute that connections using the Web service are being attempted. The count is the average for all Web sites combined.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1e8244ebb5524c72af1d506df7bb2982','0','2','0'), ('30994','0','','10325','Method COPY requests per second',E'perf_counter_en["\\Web Service(_Total)\\Copy Requests/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests made using the COPY method. Copy requests are used for copying files and directories. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2b4cb17b486643eda9a560b43af70d74','0','2','0'), ('30995','0','','10325','Method DELETE requests per second',E'perf_counter_en["\\Web Service(_Total)\\Delete Requests/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the DELETE method made. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','350a6c7fac354570bbba04aa2fd6c98a','0','2','0'), ('30996','0','','10325','NonAnonymous users per second',E'perf_counter_en["\\Web Service(_Total)\\NonAnonymous Users/sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of requests from users over a non-anonymous connection per second. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d67523ef47464f8c9735d0a0359b5c77','0','2','0'), ('30997','0','','10325','Method GET requests per second',E'perf_counter_en["\\Web Service(_Total)\\Get Requests/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests made using the GET method. GET requests are generally used for basic file retrievals or image maps, though they can be used with forms. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6ae641f632ae4422a6f71898078dc2ee','0','2','0'), ('30998','0','','10325','Method HEAD requests per second',E'perf_counter_en["\\Web Service(_Total)\\Head Requests/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the HEAD method made. HEAD requests generally indicate a client is querying the state of a document they already have to see if it needs to be refreshed. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5e37ff2d4d1b4bf6bad855a3d09ec6c7','0','2','0'), ('30999','0','','10325','Method ISAPI requests per second',E'perf_counter_en["\\Web Service(_Total)\\ISAPI Extension Requests/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of ISAPI Extension requests that are simultaneously being processed by the Web service. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','18217a40ddbc421fb2db1b19d1fb7d59','0','2','0'), ('31000','0','','10325','Locked errors per second',E'perf_counter_en["\\Web Service(_Total)\\Locked Errors/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of errors due to requests that couldn''t be satisfied by the server because the requested document was locked. These are generally reported as an HTTP 423 error code to the client. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b7634ae2a9d5454bbac631b55e896277','0','2','0'), ('31001','0','','10325','Method LOCK requests per second',E'perf_counter_en["\\Web Service(_Total)\\Lock Requests/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests made using the LOCK method. Lock requests are used to lock a file for one user so that only that user can modify the file. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','069548a7c9e840bb8975f9b02b582c51','0','2','0'), ('31002','0','','10325','Method MKCOL requests per second',E'perf_counter_en["\\Web Service(_Total)\\Mkcol Requests/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the MKCOL method made. Mkcol requests are used to create directories on the server. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','02c1fe0d15d94744959e4b53b21309fe','0','2','0'), ('31003','0','','10325','Method MOVE requests per second',E'perf_counter_en["\\Web Service(_Total)\\Move Requests/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the MOVE method made. Move requests are used for moving files and directories. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6395e8edb1394396bd7602f621cf4b00','0','2','0'), ('31004','0','','10325','Windows Process Activation Service (WAS) state','service.info[WAS]','1m','31d','365d','0','3','','','','',NULL,'46','','','0','','','','','0',NULL,'Windows Process Activation Service (WAS) is a tool for managing worker processes that contain applications that host Windows Communication Foundation (WCF) services. Worker processes handle requests that are sent to a Web Server for specific application pools. Each application pool sets boundaries for the applications it contains.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','38858eb3cc2f4580a0a3c56c11fdeba5','0','2','0'), ('31005','0','','10325','Application pools discovery',E'wmi.getall[root\\webAdministration, select Name from ApplicationPool]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6148952d54d54982af404c6c845ccbf2','0','2','0'), ('31006','0','','10325','AppPool {#APPPOOL} state',E'perf_counter_en["\\APP_POOL_WAS({#APPPOOL})\\Current Application Pool State"]','1m','31d','365d','0','3','','','','',NULL,'152','','','0','','','','','2',NULL,'The state of the application pool.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','270068fe6e6844ae9bbf993509eda7e0','0','2','0'), ('31007','0','','10325','{#APPPOOL} Uptime',E'perf_counter_en["\\APP_POOL_WAS({#APPPOOL})\\Current Application Pool Uptime"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The web application uptime period since the last restart.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f039a53351d54132ab9ad046282389d8','0','2','0'), ('31008','0','','10325','AppPool {#APPPOOL} recycles',E'perf_counter_en["\\APP_POOL_WAS({#APPPOOL})\\Total Application Pool Recycles"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of times the application pool has been recycled since Windows Process Activation Service (WAS) started.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4700b5729ca440869de976ae347598cf','0','2','0'), ('31009','0','','10325','AppPool {#APPPOOL} current queue size',E'perf_counter_en["\\HTTP Service Request Queues({#APPPOOL})\\CurrentQueueSize"]','30s','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of requests in the queue.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','193642cad7214206a00db4f710bfbef8','0','2','0'), ('31010','3','','10326','{$IIS.PORT} port ping','net.tcp.service[{$IIS.SERVICE},,{$IIS.PORT}]','1m','31d','365d','0','3','','','','',NULL,'31','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8fa6b28b8226408db07a2317a99581a5','0','2','0'), ('31011','7','','10326','Total connection attempts',E'perf_counter_en["\\Web Service(_Total)\\Total Connection Attempts (all instances)"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of connections to the Web or FTP service that have been attempted since service startup. The count is the total for all Web sites or FTP sites combined.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f181123b522946018d9ac90599693cfe','0','2','0'), ('31012','7','','10326','Method POST requests per second',E'perf_counter_en["\\Web Service(_Total)\\Post Requests/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Rate of HTTP requests using POST method. Generally used for forms or gateway requests. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','222bb49332214781bc48a0eb610035c2','0','2','0'), ('31013','7','','10326','Method PROPFIND requests per second',E'perf_counter_en["\\Web Service(_Total)\\Propfind Requests/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the PROPFIND method made. Propfind requests retrieve property values on files and directories. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','011fff85fb0440b78ca7857454577c08','0','2','0'), ('31014','7','','10326','Method PROPPATCH requests per second',E'perf_counter_en["\\Web Service(_Total)\\Proppatch Requests/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the PROPPATCH method made. Proppatch requests set property values on files and directories. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3b8a1eea86034a268ac37031c08d3740','0','2','0'), ('31015','7','','10326','Method PUT requests per second',E'perf_counter_en["\\Web Service(_Total)\\Put Requests/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the PUT method made. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c4615d7155d14f98b76705df1a5778e4','0','2','0'), ('31016','7','','10326','Method MS-SEARCH requests per second',E'perf_counter_en["\\Web Service(_Total)\\Search Requests/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the MS-SEARCH method made. Search requests are used to query the server to find resources that match a set of conditions provided by the client. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a1cfef3952c346ccb39e85038e49ae63','0','2','0'), ('31017','7','','10326','Uptime',E'perf_counter_en["\\Web Service(_Total)\\Service Uptime"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The service uptime expressed in seconds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d53040c921324b2195045dacb3738d6f','0','2','0'), ('31018','7','','10326','Method Total requests per second',E'perf_counter_en["\\Web Service(_Total)\\Total Method Requests/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of all HTTP requests received. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ff70ce9edf1c45ba8263d33847992baf','0','2','0'), ('31019','7','','10326','Method OPTIONS requests per second',E'perf_counter_en["\\Web Service(_Total)\\Options Requests/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the OPTIONS method made. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dcb0338dc59d4c95b9f712fed84a3aa2','0','2','0'), ('31020','7','','10326','Method TRACE requests per second',E'perf_counter_en["\\Web Service(_Total)\\Trace Requests/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the TRACE method made. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fff9e968d5474adfbfd4ae9e19d836d9','0','2','0'), ('31021','7','','10326','Method TRACE requests per second',E'perf_counter_en["\\Web Service(_Total)\\Unlock Requests/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the UNLOCK method made. Unlock requests are used to remove locks from files. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0b6b770a6b014b8c857277e1d9cf6ffe','0','2','0'), ('31022','7','','10326','Files cache hits percentage',E'perf_counter_en["\\Web Service Cache\\File Cache Hits %"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The ratio of user-mode file cache hits to total cache requests (since service startup). Note: This value might be low if the Kernel URI cache hits percentage is high.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5ef9aec68d5b4fe79b17453ab8988b59','0','2','0'), ('31023','7','','10326','File cache misses',E'perf_counter_en["\\Web Service Cache\\File Cache Misses"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of unsuccessful lookups in the user-mode file cache since service startup.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a041713a95e746f5b4797a7aecaed9a5','0','2','0'), ('31024','7','','10326','URIs cache hits percentage',E'perf_counter_en["\\Web Service Cache\\URI Cache Hits %"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The ratio of user-mode URI Cache Hits to total cache requests (since service startup)','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5488881cba254b6b8f49ebacae2bc4c4','0','2','0'), ('31025','7','','10326','URI cache misses',E'perf_counter_en["\\Web Service Cache\\URI Cache Misses"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of unsuccessful lookups in the user-mode URI cache since service startup.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ffd18aef119f4c7c845c6a3e76fb747d','0','2','0'), ('31026','7','','10326','World Wide Web Publishing Service (W3SVC) state','service.info[W3SVC]','1m','31d','365d','0','3','','','','',NULL,'47','','','0','','','','','0',NULL,'The World Wide Web Publishing Service (W3SVC) provides web connectivity and administration of websites through the IIS snap-in. If the World Wide Web Publishing Service stops, the operating system cannot serve any form of web request. This service was dependent on "Windows Process Activation Service".','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','31d4f21ce4c6412b912ca65fe9aee83c','0','2','0'), ('31027','7','','10326','Method Total Other requests per second',E'perf_counter_en["\\Web Service(_Total)\\Other Request Methods/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total Other Request Methods is the number of HTTP requests that are not OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, MOVE, COPY, MKCOL, PROPFIND, PROPPATCH, SEARCH, LOCK or UNLOCK methods (since service startup). Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','eb6a098fef824b2e9abe80b4331190f4','0','2','0'), ('31028','7','','10326','Not Found errors per second',E'perf_counter_en["\\Web Service(_Total)\\Not Found Errors/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of errors due to requests that couldn''t be satisfied by the server because the requested document could not be found. These are generally reported to the client with HTTP error code 404. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','13e65fdff0704e6f87133b8efe34704f','0','2','0'), ('31029','7','','10326','Anonymous users per second',E'perf_counter_en["\\Web Service(_Total)\\Anonymous Users/sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of requests from users over an anonymous connection per second. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e70f872ed9184757b8a62c732658faa5','0','2','0'), ('31030','7','','10326','Current connections',E'perf_counter_en["\\Web Service(_Total)\\Current Connections"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active connections.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8b316e2896f041dca9b4adc601093b5c','0','2','0'), ('31031','7','','10326','Bytes Received per second',E'perf_counter_en["\\Web Service(_Total)\\Bytes Received/sec", 60]','1m','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The average rate per minute at which data bytes are received by the service at the Application Layer. Does not include protocol headers or control bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','64816de795864c8fae879e670dfe9e93','0','2','0'), ('31032','7','','10326','Bytes Sent per second',E'perf_counter_en["\\Web Service(_Total)\\Bytes Sent/sec", 60]','1m','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The average rate per minute at which data bytes are sent by the service.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1b0b636e0bbd4948b3047071a4b964fc','0','2','0'), ('31033','7','','10326','Bytes Total per second',E'perf_counter_en["\\Web Service(_Total)\\Bytes Total/Sec", 60]','1m','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The average rate per minute of total bytes/sec transferred by the Web service (sum of bytes sent/sec and bytes received/sec).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5abf01f6e7a7419d9a1de9803ccf1060','0','2','0'), ('31034','7','','10326','Method CGI requests per second',E'perf_counter_en["\\Web Service(_Total)\\CGI Requests/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of CGI requests that are simultaneously being processed by the Web service. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','37b23949ca94466eb552c6fd8239b650','0','2','0'), ('31035','7','','10326','Connection attempts per second',E'perf_counter_en["\\Web Service(_Total)\\Connection Attempts/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The average rate per minute that connections using the Web service are being attempted. The count is the average for all Web sites combined.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d32eb1398fa7454eb91329aa39d1e90e','0','2','0'), ('31036','7','','10326','Method COPY requests per second',E'perf_counter_en["\\Web Service(_Total)\\Copy Requests/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests made using the COPY method. Copy requests are used for copying files and directories. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','182bceaa31194bdd8c906cf226039b0b','0','2','0'), ('31037','7','','10326','Method DELETE requests per second',E'perf_counter_en["\\Web Service(_Total)\\Delete Requests/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the DELETE method made. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7da6cf8a65b94b6f8d89dc53c7de38eb','0','2','0'), ('31038','7','','10326','NonAnonymous users per second',E'perf_counter_en["\\Web Service(_Total)\\NonAnonymous Users/sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of requests from users over a non-anonymous connection per second. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6dfe3dbde2544c5080c3845d54c83219','0','2','0'), ('31039','7','','10326','Method GET requests per second',E'perf_counter_en["\\Web Service(_Total)\\Get Requests/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests made using the GET method. GET requests are generally used for basic file retrievals or image maps, though they can be used with forms. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5381bfc071524f32bb5290379d2e978d','0','2','0'), ('31040','7','','10326','Method HEAD requests per second',E'perf_counter_en["\\Web Service(_Total)\\Head Requests/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the HEAD method made. HEAD requests generally indicate a client is querying the state of a document they already have to see if it needs to be refreshed. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','414b17c9eb11460cb55d35aeb7b8c071','0','2','0'), ('31041','7','','10326','Method ISAPI requests per second',E'perf_counter_en["\\Web Service(_Total)\\ISAPI Extension Requests/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of ISAPI Extension requests that are simultaneously being processed by the Web service. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d5b38b5472214d629e832d2709c64b3c','0','2','0'), ('31042','7','','10326','Locked errors per second',E'perf_counter_en["\\Web Service(_Total)\\Locked Errors/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of errors due to requests that couldn''t be satisfied by the server because the requested document was locked. These are generally reported as an HTTP 423 error code to the client. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','74fed9efa0ae4301aab2f73d76fd8357','0','2','0'), ('31043','7','','10326','Method LOCK requests per second',E'perf_counter_en["\\Web Service(_Total)\\Lock Requests/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests made using the LOCK method. Lock requests are used to lock a file for one user so that only that user can modify the file. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cdf63d485cd1419385caabc050eb533c','0','2','0'), ('31044','7','','10326','Method MKCOL requests per second',E'perf_counter_en["\\Web Service(_Total)\\Mkcol Requests/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the MKCOL method made. Mkcol requests are used to create directories on the server. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','edbe50383897434cb33378b973628061','0','2','0'), ('31045','7','','10326','Method MOVE requests per second',E'perf_counter_en["\\Web Service(_Total)\\Move Requests/Sec", 60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of HTTP requests using the MOVE method made. Move requests are used for moving files and directories. Average per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','51a74530b894484a9ba101eb1176a982','0','2','0'), ('31046','7','','10326','Windows Process Activation Service (WAS) state','service.info[WAS]','1m','31d','365d','0','3','','','','',NULL,'47','','','0','','','','','0',NULL,'Windows Process Activation Service (WAS) is a tool for managing worker processes that contain applications that host Windows Communication Foundation (WCF) services. Worker processes handle requests that are sent to a Web Server for specific application pools. Each application pool sets boundaries for the applications it contains.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7f016ce3ab3941b78741dfb72c6d7693','0','2','0'), ('31047','7','','10326','Application pools discovery',E'wmi.getall[root\\webAdministration, select Name from ApplicationPool]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1dfb7339b81b4237a4e90b29328de297','0','2','0'), ('31048','7','','10326','AppPool {#APPPOOL} state',E'perf_counter_en["\\APP_POOL_WAS({#APPPOOL})\\Current Application Pool State"]','1m','31d','365d','0','3','','','','',NULL,'153','','','0','','','','','2',NULL,'The state of the application pool.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','82c0636b84d84863a2051d6b708d841b','0','2','0'), ('31049','7','','10326','{#APPPOOL} Uptime',E'perf_counter_en["\\APP_POOL_WAS({#APPPOOL})\\Current Application Pool Uptime"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The web application uptime period since the last restart.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f0a6fe8a4cc44582a3048f1a00442736','0','2','0'), ('31050','7','','10326','AppPool {#APPPOOL} recycles',E'perf_counter_en["\\APP_POOL_WAS({#APPPOOL})\\Total Application Pool Recycles"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of times the application pool has been recycled since Windows Process Activation Service (WAS) started.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e2cfc77aebab4b14bf6a690dbdd0c2b1','0','2','0'), ('31051','7','','10326','AppPool {#APPPOOL} current queue size',E'perf_counter_en["\\HTTP Service Request Queues({#APPPOOL})\\CurrentQueueSize"]','30s','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of requests in the queue.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d525c1c47ee2402d9635ae276a5e58ec','0','2','0'), ('31054','3','','10323','Check port availability','net.tcp.service[{$CLICKHOUSE.SCHEME},"{$CLICKHOUSE.HOST}","{$CLICKHOUSE.PORT}"]','1m','31d','365d','0','3','','','','',NULL,'28','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','68d1e19a6ec2401ba0dd509de7df2812','0','2','0'), ('31055','11','','10327','Get performance counters','db.odbc.get[get_status_variables,"{$MSSQL.DSN}"]','0;m0-59','0','0','0','4','','','','',NULL,NULL,'DECLARE @SQLNAME NVARCHAR(22) SET @SQLNAME = CASE WHEN @@SERVICENAME = ''MSSQLSERVER'' THEN ''SQLServer'' ELSE ''MSSQL$'' + @@SERVICENAME END SELECT object_name, counter_name, instance_name, cntr_value FROM sys.dm_os_performance_counters UNION SELECT @SQLNAME AS object_name, ''Version'' AS counter_name, @@version AS instance_name, 0 AS cntr_value UNION SELECT @SQLNAME AS object_name, ''Uptime'' AS counter_name, '''' AS instance_name, DATEDIFF(second, sqlserver_start_time, GETDATE()) AS cntr_value FROM sys.dm_os_sys_info UNION SELECT @SQLNAME + '':Databases'' AS object_name, ''State'' AS counter_name, name AS instance_name, state AS cntr_value FROM sys.databases UNION SELECT a.object_name, ''BufferCacheHitRatio'' AS counter_name, '''' AS instance_name, cast(a.cntr_value * ISNULL((100.0 / NULLIF(b.cntr_value,0)),0) AS dec(3, 0)) AS cntr_value FROM sys.dm_os_performance_counters a JOIN ( SELECT cntr_value, OBJECT_NAME FROM sys.dm_os_performance_counters WHERE counter_name = ''Buffer cache hit ratio base'' AND OBJECT_NAME = @SQLNAME + '':Buffer Manager'' ) b ON a.OBJECT_NAME = b.OBJECT_NAME WHERE a.counter_name = ''Buffer cache hit ratio'' AND a.OBJECT_NAME = @SQLNAME + '':Buffer Manager'' UNION SELECT a.object_name, ''WorktablesFromCacheRatio'' AS counter_name, '''' AS instance_name, cast(a.cntr_value * ISNULL((100.0 / NULLIF(b.cntr_value,0)),0) AS dec(3, 0)) AS cntr_value FROM sys.dm_os_performance_counters a JOIN ( SELECT cntr_value, OBJECT_NAME FROM sys.dm_os_performance_counters WHERE counter_name = ''Worktables From Cache Base'' AND OBJECT_NAME = @SQLNAME + '':Access Methods'' ) b ON a.OBJECT_NAME = b.OBJECT_NAME WHERE a.counter_name = ''Worktables From Cache Ratio'' AND a.OBJECT_NAME = @SQLNAME + '':Access Methods'' UNION SELECT a.object_name, ''CacheHitRatio'' AS counter_name, ''_Total'' AS instance_name, cast(a.cntr_value * ISNULL((100.0 / NULLIF(b.cntr_value,0)),0) AS dec(3, 0)) AS cntr_value FROM sys.dm_os_performance_counters a JOIN ( SELECT cntr_value, OBJECT_NAME FROM sys.dm_os_performance_counters WHERE counter_name = ''Cache Hit Ratio base'' AND OBJECT_NAME = @SQLNAME + '':Plan Cache'' AND instance_name = ''_Total'' ) b ON a.OBJECT_NAME = b.OBJECT_NAME WHERE a.counter_name = ''Cache Hit Ratio'' AND a.OBJECT_NAME = @SQLNAME + '':Plan Cache'' AND instance_name = ''_Total''','','0','{$MSSQL.USER}','{$MSSQL.PASSWORD}','','','0',NULL,'The item gets server global status information.','0','30d','0','',NULL,'30s','','','','200','1','0','','','0','0','0','0','0','0','0','ff07b83d161c4e0fbddf8c2e2c282258','0','2','0'), ('31056','15','','10327','Total average wait time','mssql.average_wait_time','0;m0-59s3','31d','365d','0','0','','ms','','',NULL,NULL,'(last(//mssql.average_wait_time_raw) - last(//mssql.average_wait_time_raw,#2)) / (last(//mssql.average_wait_time_base) - last(//mssql.average_wait_time_base,#2) + (last(//mssql.average_wait_time_base) - last(//mssql.average_wait_time_base,#2)=0))','','0','','','','','0',NULL,'The average wait time, in milliseconds, for each lock request that had to wait.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2915866b5891480aafd73463aca88a21','0','2','0'), ('31057','3','','10327','Service''s TCP port state','net.tcp.service[tcp,{$MSSQL.HOST},{$MSSQL.PORT}]','30s','31d','365d','0','3','','','','',NULL,'32','','','0','','','','','0',NULL,'Test the availability of MSSQL Server on a TCP port.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c0302965c2574b43955a1d37a8fce9eb','0','2','0'), ('31058','15','','10327','Average latch wait time','mssql.average_latch_wait_time','0;m0-59s3','31d','365d','0','0','','ms','','',NULL,NULL,'(last(//mssql.average_latch_wait_time_raw) - last(//mssql.average_latch_wait_time_raw,#2)) / (last(//mssql.average_latch_wait_time_base) - last(//mssql.average_latch_wait_time_base,#2) + (last(//mssql.average_latch_wait_time_base) - last(//mssql.average_latch_wait_time_base,#2)=0))','','0','','','','','0',NULL,'Average latch wait time (in milliseconds) for latch requests that had to wait.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1d49af2907d541719e4482439de3ef40','0','2','0'), ('31183','0','','10328','Service''s TCP port state','net.tcp.service[tcp,{$ORACLE.HOST},{$ORACLE.PORT}]','30s','31d','365d','0','3','','','','',NULL,'33','','','0','','','','','0',NULL,'Checks the availability of Oracle on the TCP port.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7ee99dfbd8dd4048bc2867aaa2fc335e','0','2','0'), ('31184','0','','10328','Number of LISTENER processes','proc.num[,,,"tnslsnr LISTENER"]','30s','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of running listener processes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bf89a6ced768432a9cc3c27e1e3159d0','0','2','0'), ('31185','11','','10328','Get system metrics','db.odbc.get[get_system_metrics,,"Driver={$ORACLE.DRIVER};DBQ=//{$ORACLE.HOST}:{$ORACLE.PORT}/{$ORACLE.SERVICE};"]','0;m0-59','0','0','0','4','','','','',NULL,NULL,'SELECT ''SYS::'' || METRIC_NAME AS METRIC, ROUND(VALUE,3) as VALUE FROM V$SYSMETRIC WHERE GROUP_ID = 2 UNION SELECT ''SYSPARAM::'' || INITCAP(NAME) AS METRIC, to_number(VALUE) FROM V$SYSTEM_PARAMETER WHERE NAME IN (''sessions'', ''processes'', ''db_files'') UNION SELECT ''SESSION::Long time locked'' ,count(*) FROM V$SESSION s WHERE s.BLOCKING_SESSION IS NOT NULL AND s.BLOCKING_SESSION_STATUS=''VALID'' AND s.SECONDS_IN_WAIT > {$ORACLE.SESSION.LOCK.MAX.TIME} UNION SELECT ''SESSION::Lock rate'' ,(cnt_block / cnt_all)* 100 pct FROM ( SELECT COUNT(*) cnt_block FROM v$session WHERE blocking_session IS NOT NULL), ( SELECT COUNT(*) cnt_all FROM v$session) UNION SELECT ''SESSION::Long time locked'' ,count(*) FROM V$SESSION s WHERE s.BLOCKING_SESSION IS NOT NULL AND s.BLOCKING_SESSION_STATUS=''VALID'' AND s.SECONDS_IN_WAIT > {$ORACLE.SESSION.LOCK.MAX.TIME} UNION SELECT ''SESSION::Total'', COUNT(*) AS VALUE FROM V$SESSION UNION SELECT ''SESSION::Concurrency rate'', NVL(ROUND(SUM(duty_act.cnt*100 / num_cores.val)), 0) FROM ( SELECT DECODE(session_state, ''ON CPU'', ''CPU'', wait_class) wait_class, ROUND(COUNT(*)/(60 * 15), 1) cnt FROM v$active_session_history sh WHERE sh.sample_time >= SYSDATE - 15 / 1440 AND DECODE(session_state, ''ON CPU'', ''CPU'', wait_class) IN(''Concurrency'') GROUP BY DECODE(session_state, ''ON CPU'', ''CPU'', wait_class)) duty_act, ( SELECT SUM(value) val FROM v$osstat WHERE stat_name = ''NUM_CPU_CORES'') num_cores UNION SELECT ''PGA::'' || INITCAP(NAME), VALUE FROM V$PGASTAT UNION SELECT ''FRA::Space Limit'' AS METRIC, space_limit AS VALUE FROM V$RECOVERY_FILE_DEST UNION SELECT ''FRA::Space Used'', space_used AS VALUE FROM V$RECOVERY_FILE_DEST UNION SELECT ''FRA::Space Reclaimable'', space_reclaimable AS VALUE FROM V$RECOVERY_FILE_DEST UNION SELECT ''FRA::Number Of Files'', number_of_files AS VALUE FROM V$RECOVERY_FILE_DEST UNION SELECT ''FRA::Usable Pct'', DECODE(space_limit, 0, 0,(100-(100 *(space_used-space_reclaimable)/ space_limit))) AS VALUE FROM V$RECOVERY_FILE_DEST UNION SELECT ''FRA::Restore Point'', COUNT(*) AS VALUE FROM V$RESTORE_POINT UNION SELECT ''PROC::Procnum'', COUNT(*) FROM v$process UNION SELECT ''DATAFILE::Count'', COUNT(*) FROM v$datafile UNION SELECT ''SGA::'' || INITCAP(pool), SUM(bytes) FROM V$SGASTAT WHERE pool IN ( ''java pool'', ''large pool'' ) GROUP BY pool UNION SELECT ''SGA::Shared Pool'', SUM(bytes) FROM V$SGASTAT WHERE pool = ''shared pool'' AND name NOT IN (''library cache'', ''dictionary cache'', ''free memory'', ''sql area'') UNION SELECT ''SGA::'' || INITCAP(name), bytes FROM V$SGASTAT WHERE pool IS NULL AND name IN (''log_buffer'', ''fixed_sga'') UNION SELECT ''SGA::Buffer_Cache'', SUM(bytes) FROM V$SGASTAT WHERE pool IS NULL AND name IN (''buffer_cache'', ''db_block_buffers'') UNION SELECT ''REDO::Available'', count(*) from v$log t where t.status in (''INACTIVE'', ''UNUSED'') UNION SELECT ''USER::Expire password'', ROUND(DECODE(SIGN(NVL(u.expiry_date, SYSDATE + 999) - SYSDATE),-1, 0, NVL(u.expiry_date, SYSDATE + 999) - SYSDATE)) exp_passwd_days_before FROM dba_users u WHERE username = UPPER(''{$ORACLE.USER}'');','','0','{$ORACLE.USER}','{$ORACLE.PASSWORD}','','','0',NULL,'Gets the values of the system metrics.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3839683749974cdeafd9178bdccb38d6','0','2','0'), ('31188','11','','10328','Get instance state','db.odbc.get[get_instance_state,,"Driver={$ORACLE.DRIVER};DBQ=//{$ORACLE.HOST}:{$ORACLE.PORT}/{$ORACLE.SERVICE};"]','1m','0','0','0','4','','','','',NULL,NULL,'SELECT INSTANCE_NAME, HOST_NAME, VERSION || ''-'' || EDITION AS VERSION, floor((SYSDATE - startup_time)*60*60*24) AS UPTIME, decode(status,''STARTED'',1,''MOUNTED'',2,''OPEN'',3,''OPEN MIGRATE'',4, 0) AS STATUS, decode(archiver,''STOPPED'',1,''STARTED'',2,''FAILED'',3, 0) AS ARCHIVER, decode(instance_role,''PRIMARY_INSTANCE'',1,''SECONDARY_INSTANCE'',2, 0) AS INSTANCE_ROLE FROM v$instance;','','0','{$ORACLE.USER}','{$ORACLE.PASSWORD}','','','0',NULL,'Gets the state of the current instance.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dde19b79507648bd80a82a0575bf8671','0','2','0'), ('31274','0','','10329','Get bgwriter','pgsql.bgwriter["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect all metrics from pg_stat_bgwriter: https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-BGWRITER-VIEW','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6020e17c25104cbfba182e9cddfe6336','0','2','0'), ('31275','0','','10329','Replication: Lag in bytes','pgsql.replication.lag.b["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Replication lag with master, in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','da9ce769f9444a3f9600ce64c4ab2857','0','2','0'), ('31276','0','','10329','Get connections sum','pgsql.connections["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect all metrics from pg_stat_activity: https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-ACTIVITY-VIEW','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e926ecd967f342bf90e9923825147d64','0','2','0'), ('31277','0','','10329','Get dbstat sum','pgsql.dbstat.sum["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect all metrics from pg_stat_database as sums for all databases: https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-DATABASE-VIEW','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ddddde3084d54f55838b970f44290523','0','2','0'), ('31279','0','','10329','Get dbstat','pgsql.dbstat["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect all metrics from pg_stat_database per database: https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-DATABASE-VIEW','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3be06ec14cba44d0892f3271a599c473','0','2','0'), ('31280','0','','10329','Get locks','pgsql.locks["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect all metrics from pg_locks per database: https://www.postgresql.org/docs/current/explicit-locking.html#LOCKING-TABLES','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7112eeb300c14d959c79715462bf9563','0','2','0'), ('31282','0','','10329','Ping','pgsql.ping["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','31d','365d','0','3','','','','',NULL,'1107','','','0','','','','','0',NULL,'Used to test a connection to see if it is alive. It is set to 0 if the query is unsuccessful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','56323e572fa443228987c62039153825','0','2','0'), ('31283','0','','10329','Replication: Standby count','pgsql.replication.count["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of standby servers.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a171db459d6144e4ad294579fb8dc56d','0','2','0'), ('31284','0','','10329','Replication: Lag in seconds','pgsql.replication.lag.sec["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Replication lag with master, in seconds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5a9eb8ee4a484911903688e620eb618b','0','2','0'), ('31285','0','','10329','Replication: Recovery role','pgsql.replication.recovery_role["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','31d','365d','0','3','','','','',NULL,'123','','','0','','','','','0',NULL,'Replication role: 1 — recovery is still in progress (standby mode), 0 — master mode.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4085b836bf614f3d910818074c386845','0','2','0'), ('31286','0','','10329','Replication: Status','pgsql.replication.status["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','31d','365d','0','3','','','','',NULL,'125','','','0','','','','','0',NULL,'Replication status: 0 — streaming is down, 1 — streaming is up, 2 — master mode.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3c83904cbad74ff7a0d10136a233e6c6','0','2','0'), ('31287','0','','10329','Uptime','pgsql.uptime["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','31d','365d','0','0','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'Time since the server started.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','efa946a67e5844ecb905c68a2a6b85bb','0','2','0'), ('31288','0','','10329','Count of autovacuum workers','pgsql.autovacuum.count["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of autovacuum workers.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d9169b4b31554063b9d01d0d27b4beee','0','2','0'), ('31289','0','','10329','Get archive','pgsql.archive["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect archive status metrics.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e9f4284fd3a1459e9c519dbdd8ee3425','0','2','0'), ('31290','0','','10329','Get WAL','pgsql.wal.stat["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','5m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect write-ahead log (WAL) metrics.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c3d96741af454f6b9a3a49b6117c31be','0','2','0'), ('31334','0','','10329','Database discovery','pgsql.db.discovery["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers databases (DB) in the database management system (DBMS), except: - templates; - DBs that do not allow connections.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b1a4bfe1031a40529a7c38ac6bed3c6d','0','2','0'), ('31335','0','','10329','DB [{#DBNAME}]: Database age','pgsql.db.age["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{#DBNAME}"]','10m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Database age.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1419ff1331734a4088349332e118ca94','0','2','0'), ('31336','0','','10329','DB [{#DBNAME}]: Database size','pgsql.db.size["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{#DBNAME}"]','5m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Database size.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b614a0909eec40bc841bf7446e842544','0','2','0'), ('31337','0','','10329','DB [{#DBNAME}]: Bloating tables','pgsql.db.bloating_tables["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{#DBNAME}"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bloating tables.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4367ba7fdffd459ea2b18e1877bc74ca','0','2','0'), ('31499','16','','10169','ClassLoading: Loaded class count','jmx["java.lang:type=ClassLoading","LoadedClassCount"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'Displays number of classes that are currently loaded in the Java virtual machine.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d16a651b35234011876b4f0c98126988','0','2','0'), ('31516','16','','10169','OperatingSystem: File descriptors maximum count','jmx["java.lang:type=OperatingSystem","MaxFileDescriptorCount"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'This is the number of file descriptors we can have opened in the same process, as determined by the operating system. You can never have more file descriptors than this number.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4c847c1239654be7b4f4d03fbb45ea4f','0','2','0'), ('31517','16','','10169','OperatingSystem: File descriptors opened','jmx["java.lang:type=OperatingSystem","OpenFileDescriptorCount"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'This is the number of opened file descriptors at the moment, if this reaches the MaxFileDescriptorCount, the application will throw an IOException: Too many open files. This could mean you are opening file descriptors and never closing them.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f72ee698db964f3c9ce84bbb4a1274d7','0','2','0'), ('31518','16','','10169','OperatingSystem: Process CPU Load','jmx["java.lang:type=OperatingSystem","ProcessCpuLoad"]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'ProcessCpuLoad represents the CPU load in this process.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3c252493c9304aabbb2930b9a82a1cbf','0','2','0'), ('31519','16','','10169','Runtime: JVM uptime','jmx["java.lang:type=Runtime","Uptime"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','00007954da00442b9631e15995ef6cab','0','2','0'), ('31520','16','','10169','Runtime: JVM name','jmx["java.lang:type=Runtime","VmName"]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e824c36de524425eaac253bcf3a1f3ec','0','2','0'), ('31521','16','','10169','Runtime: JVM version','jmx["java.lang:type=Runtime","VmVersion"]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a8675d659349414fa10cc11a1cd4ddd7','0','2','0'), ('31522','16','','10169','Threading: Daemon thread count','jmx["java.lang:type=Threading","DaemonThreadCount"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'Number of daemon threads running.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f2f0836103ea4358a740abc0010336ca','0','2','0'), ('31523','16','','10169','Threading: Peak thread count','jmx["java.lang:type=Threading","PeakThreadCount"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'Maximum number of threads being executed at the same time since the JVM was started or the peak was reset.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1793243b7ed147f1a182876fda905ebc','0','2','0'), ('31524','16','','10169','Threading: Thread count','jmx["java.lang:type=Threading","ThreadCount"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'The number of threads running at the current moment.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ca198e0473384025aecbc16913800c0c','0','2','0'), ('31527','16','','10169','ClassLoading: Total loaded class count','jmx["java.lang:type=ClassLoading","TotalLoadedClassCount"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'Displays the total number of classes that have been loaded since the Java virtual machine has started execution.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fc79c5ac074f4266a88d5c239fa0fb70','0','2','0'), ('31529','16','','10169','ClassLoading: Unloaded class count','jmx["java.lang:type=ClassLoading","UnloadedClassCount"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'Displays the total number of classes that have been loaded since the Java virtual machine has started execution.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b7620bdebd044fb1b1d2cb293ea8912c','0','2','0'), ('31530','16','','10169','Compilation: Name of the current JIT compiler','jmx["java.lang:type=Compilation","Name"]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'Displays the total number of classes unloaded since the Java virtual machine has started execution.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0d6880c07fcd42bebddc41f5f2eb7bdd','0','2','0'), ('31531','16','','10169','Compilation: Accumulated time spent','jmx["java.lang:type=Compilation","TotalCompilationTime"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'Displays the approximate accumulated elapsed time spent in compilation, in seconds.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c097ea2de6034d1d94f528533562b896','0','2','0'), ('31544','16','','10169','Memory: Heap memory committed','jmx["java.lang:type=Memory","HeapMemoryUsage.committed"]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'Current heap memory allocated. This amount of memory is guaranteed for the Java virtual machine to use.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d98a8d00639742f4b62a29e0c7394d61','0','2','0'), ('31545','16','','10169','Memory: Heap memory maximum size','jmx["java.lang:type=Memory","HeapMemoryUsage.max"]','1m','31d','365d','0','0','','B','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'Maximum amount of heap that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e757e0d3d72548df97066632448dd18c','0','2','0'), ('31546','16','','10169','Memory: Heap memory used','jmx["java.lang:type=Memory","HeapMemoryUsage.used"]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'Current memory usage outside the heap.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0c24cd559cd74ddb9ff0b167a3d37c23','0','2','0'), ('31547','16','','10169','Memory: Non-Heap memory committed','jmx["java.lang:type=Memory","NonHeapMemoryUsage.committed"]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'Current memory allocated outside the heap. This amount of memory is guaranteed for the Java virtual machine to use.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','50bb1ecb0a2141bbba128dfc842a1e34','0','2','0'), ('31548','16','','10169','Memory: Non-Heap memory maximum size','jmx["java.lang:type=Memory","NonHeapMemoryUsage.max"]','1m','31d','365d','0','0','','B','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'Maximum amount of non-heap memory that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0c6301dfec1c4e6c8ab26091e9372e91','0','2','0'), ('31549','16','','10169','Memory: Non-Heap memory used','jmx["java.lang:type=Memory","NonHeapMemoryUsage.used"]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'Current memory usage outside the heap','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','58d2bb1791994cbcacb75d029ed8a21b','0','2','0'), ('31550','16','','10169','Memory: Object pending finalization count','jmx["java.lang:type=Memory","ObjectPendingFinalizationCount"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'The approximate number of objects for which finalization is pending.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e309472afb794a2c9cd581275931db79','0','2','0'), ('31553','16','','10169','Threading: Total started thread count','jmx["java.lang:type=Threading","TotalStartedThreadCount"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'The number of threads started since the JVM was launched.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9db83653dfa6449c95ffec2b0e6c8b5d','0','2','0'), ('31554','15','','10327','Percent of ad hoc queries running','mssql.percent_of_adhoc_queries','0;m0-59s3','31d','365d','0','0','','%','','',NULL,NULL,'last(//mssql.sql_compilations_sec.rate) * 100 / (last(//mssql.batch_requests_sec.rate) + (last(//mssql.batch_requests_sec.rate)=0))','','0','','','','','0',NULL,'The ratio of SQL compilations per second to batch requests per second, in percent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','76918163a16e4ad786bed2040acc8061','0','2','0'), ('31555','15','','10327','Full scans to Index searches ratio','mssql.scan_to_search','0;m0-59s3','31d','365d','0','0','','','','',NULL,NULL,'last(//mssql.full_scans_sec.rate) / (last(//mssql.index_searches_sec.rate) + (last(//mssql.index_searches_sec.rate)=0))','','0','','','','','0',NULL,'The ratio of full scans per second to index searches per second. The threshold recommendation is strictly for OLTP workloads.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9ce27df57ebc4ecca1a4741e66c9fba0','0','2','0'), ('31556','15','','10327','Percent of Recompiled Transact-SQL Objects','mssql.percent_recompilations_to_compilations','0;m0-59s3','31d','365d','0','0','','%','','',NULL,NULL,'last(//mssql.sql_recompilations_sec.rate) * 100 / (last(//mssql.sql_compilations_sec.rate) + (last(//mssql.sql_compilations_sec.rate)=0))','','0','','','','','0',NULL,'The ratio of SQL re-compilations per second to SQL compilations per second, in percent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ceab0472883f47b0a18b04fc6f7438ab','0','2','0'), ('31570','0','','10330','Get status page','web.page.get["{$PHP_FPM.HOST}","{$PHP_FPM.STATUS.PAGE}?json","{$PHP_FPM.PORT}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','09ec73291f21417ab8f19f56fda3331f','0','2','0'), ('31571','0','','10330','php-fpm_ping','web.page.get["{$PHP_FPM.HOST}","{$PHP_FPM.PING.PAGE}","{$PHP_FPM.PORT}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c0c438492c63453496e83938745ffffc','0','2','0'), ('31573','15','','10330','Queue usage','php-fpm.listen_queue_usage','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//php-fpm.listen_queue)/(last(//php-fpm.listen_queue_len)+(last(//php-fpm.listen_queue_len)=0))*100','','0','','','','','0',NULL,'The utilization of the queue.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dfabcd55c13449c29a48b70fdce77674','0','2','0'), ('31593','15','','10331','Queue usage','php-fpm.listen_queue_usage','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//php-fpm.listen_queue)/(last(//php-fpm.listen_queue_len)+(last(//php-fpm.listen_queue_len)=0))*100','','0','','','','','0',NULL,'The utilization of the queue.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','314c3f19311f47acb93b046ab2625c75','0','2','0'), ('31594','19','','10331','Get status page','php-fpm.get_status','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','{$PHP_FPM.SCHEME}://{$PHP_FPM.HOST}:{$PHP_FPM.PORT}/{$PHP_FPM.STATUS.PAGE}?json','','','200','1','0','','','0','0','0','0','0','0','0','b91063d42d4b454089b58e29ee3bdb38','0','2','0'), ('31595','19','','10331','Get ping page','php-fpm.get_ping','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','{$PHP_FPM.SCHEME}://{$PHP_FPM.HOST}:{$PHP_FPM.PORT}/{$PHP_FPM.PING.PAGE}','','','200','1','0','','','2','0','0','0','0','0','0','a9ae24915703483ea95a346c625ed70e','0','2','0'), ('31612','3','','10173','Event log','vmware.eventlog[{$VMWARE.URL},skip]','1m','31d','0','0','2','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Collect VMware event log. See also: https://www.zabbix.com/documentation/7.0/manual/config/items/preprocessing/examples#filtering_vmware_event_log_records','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5ce209f4d94f460488a74a92a52d92b1','0','2','0'), ('31613','3','','10173','Full name','vmware.fullname[{$VMWARE.URL}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'VMware service full name.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ee2edadb8ce943ef81d25dbbba8667a4','0','2','0'), ('31614','3','','10173','Version','vmware.version[{$VMWARE.URL}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'VMware service version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a0ec9145f2234fbea79a28c57ebdb44d','0','2','0'), ('31655','3','','10173','VMware cluster discovery','vmware.cluster.discovery[{$VMWARE.URL}]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','1',NULL,'Discovery of clusters.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','16ffc933cce74cf28a6edf306aa99782','0','2','0'), ('31656','3','','10173','VMware datastore discovery','vmware.datastore.discovery[{$VMWARE.URL}]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','1',NULL,'Discovery of VMware datastores.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8fb6a45cbe074b0cb6df53758e2c6623','0','2','0'), ('31657','3','','10173','VMware hypervisor discovery','vmware.hv.discovery[{$VMWARE.URL}]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','1',NULL,'Discovery of hypervisors.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a5bc075e89f248e7b411d8f960897a08','0','2','0'), ('31658','3','','10173','VMware VM discovery','vmware.vm.discovery[{$VMWARE.URL}]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','1',NULL,'Discovery of guest virtual machines.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9fd559f4e88c4677a1b874634dd686f5','0','2','0'), ('31663','3','','10173','Status of [{#CLUSTER.NAME}] cluster','vmware.cluster.status[{$VMWARE.URL},{#CLUSTER.NAME}]','1m','31d','365d','0','3','','','','',NULL,'52','','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware cluster status. One of the following: - Gray: Unknown; - Green: OK; - Yellow: It might have a problem; - Red: It has a problem.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','46111f91dd564a459dbc1d396e2e6c76','0','2','0'), ('31664','3','','10173','Average read latency of the datastore [{#DATASTORE}]','vmware.datastore.read[{$VMWARE.URL},{#DATASTORE.UUID},latency]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'Amount of time for a read operation from the datastore (milliseconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4b61838ba4c34e709b25081ae5b059b5','0','2','0'), ('31665','3','','10173','Free space on datastore [{#DATASTORE}] (percentage)','vmware.datastore.size[{$VMWARE.URL},{#DATASTORE.UUID},pfree]','5m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware datastore free space (percentage from the total).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5355c401dc244bc588ccd18767577c93','0','2','0'), ('31666','3','','10173','Total size of datastore [{#DATASTORE}]','vmware.datastore.size[{$VMWARE.URL},{#DATASTORE.UUID}]','5m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware datastore space in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','84f13c4fde2d4a17baaf0c8c1eb4f2c0','0','2','0'), ('31667','3','','10173','Average write latency of the datastore [{#DATASTORE}]','vmware.datastore.write[{$VMWARE.URL},{#DATASTORE.UUID},latency]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'Amount of time for a write operation to the datastore (milliseconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','540cd0fbc56c4b8ea19f2ff5839ce00d','0','2','0'), ('31684','0','','10335','Ping','oracle.ping["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"]','30s','31d','365d','0','3','','','','',NULL,'36','','','0','','','','','0',NULL,'Test the connection to Oracle Database state.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7f4d8ea4912944ec8bf32edff9e3b5ae','0','2','0'), ('31685','0','','10335','Datafiles count','oracle.datafiles.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of datafiles.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','12efa23a53eb468ea7b0713b8f610542','0','2','0'), ('31686','0','','10335','Get FRA stats','oracle.fra.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get FRA statistics.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1aa391bbd2484793a31dc9f0dce51b46','0','2','0'), ('31687','0','','10335','Number of processes','oracle.proc.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of user processes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ce9dabcce58d408d8188fe7caa71e666','0','2','0'), ('31688','0','','10335','Get SGA stats','oracle.sga.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get SGA statistics.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1bafc80a94fb454785362593b8a73be3','0','2','0'), ('31691','0','','10335','Get system metrics','oracle.sys.metrics["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"]','0;m0-59','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Gets the values of the system metrics.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','eccce1efc85d46199b3147ec586e1cd5','0','2','0'), ('31692','0','','10335','Get instance state','oracle.instance.info["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Gets the state of the current instance.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2c7dd0c162b742d08a2432c8bdde4ce2','0','2','0'), ('31693','0','','10335','Get system parameters','oracle.sys.params["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get a set of system parameter values.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d59cca864e8044d89f9b4689ec712511','0','2','0'), ('31694','0','','10335','Get PGA stats','oracle.pga.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get PGA statistics.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4926809f2c244b33b1a0650510a30fa4','0','2','0'), ('31695','0','','10335','Redo logs available to switch','oracle.redolog.info["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of inactive/unused redo logs available for log switching.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','898a5325c2a2469dabb6a2356107dd66','0','2','0'), ('31696','0','','10335','User''s expire password','oracle.user.info["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"]','1m','31d','365d','0','0','','days','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of days before the Zabbix account password expires.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','73ff311f3d5c4e93b5919f5633fc09f9','0','2','0'), ('31698','0','','10335','Get sessions stats','oracle.sessions.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}","{$ORACLE.SESSION.LOCK.MAX.TIME}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get sessions statistics. {$ORACLE.SESSION.LOCK.MAX.TIME} -- maximum seconds in the current wait condition for counting long time locked sessions. Default: 600 seconds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','41d61d167bf044fe9f0d9815b4fd27e6','0','2','0'), ('31760','0','','10335','Version','oracle.version["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The Oracle Server version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','04c0b90a0a7c4d6a95f51d006a65a530','0','2','0'), ('31761','0','','10335','Archive log discovery','oracle.archive.discovery["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Destinations of the log archive.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e2f1ce8c037f4efa9bdb98166d344be6','0','2','0'), ('31762','0','','10335','Database discovery','oracle.db.discovery["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning databases in the database management system (DBMS).','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','59840e68757644afbcf6ec49a6f5e95d','0','2','0'), ('31763','0','','10335','ASM disk groups discovery','oracle.diskgroups.discovery["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The ASM disk groups.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8d31eea973a7408abf0eb25ca7ba70c6','0','2','0'), ('31764','0','','10335','PDB discovery','oracle.pdb.discovery["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning a pluggable database (PDB) in DBMS.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','479a56fe538f46c094cc4b595d070776','0','2','0'), ('31765','0','','10335','Tablespace discovery','oracle.ts.discovery["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning tablespaces in DBMS.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','46ee5f42a15b43a58f7ef0ce5e3638d3','0','2','0'), ('31782','3','','10336','Service status','net.tcp.service["tcp","{$AMI.HOST}","{$AMI.PORT}"]','1m','31d','365d','0','3','','','','',NULL,'37','','','0','','','','','0',NULL,'Asterisk Manager API port availability.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','58e18df6a5534395bf74d3babdb73170','0','2','0'), ('31783','3','','10336','Service response time','net.tcp.service.perf["tcp","{$AMI.HOST}","{$AMI.PORT}"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Asterisk Manager API performance.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','09102393dc6a4ac598f02d95801c6ca0','0','2','0'), ('31784','19','','10336','Get stats','asterisk.get_stats','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Asterisk system information in JSON format.','0','30d','0','',NULL,'','{$AMI.URL}','[{"action":"login"},{"username":"{$AMI.USERNAME}"},{"secret":"{$AMI.SECRET}"}]','','200','1','0','','','1','0','0','0','0','0','0','7db3e9cdae3d4bffa7429617e351fce1','0','2','0'), ('32117','0','','10353','Get df','ceph.df.details["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','af3e6faf835f41ef93cbbc44aa57f97e','0','2','0'), ('32118','0','','10353','Get OSD dump','ceph.osd.dump["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e7eb1f67d81c4e2ba7c57cfbc81d1a00','0','2','0'), ('32119','0','','10353','Get overall cluster status','ceph.status["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8b43d105f9d64a3a94196f3f3bc7eac3','0','2','0'), ('32120','0','','10353','Ping','ceph.ping["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]','1m','31d','365d','0','3','','','','',NULL,'38','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','911e8a654ca44e7ca56b8010ac7381c8','0','2','0'), ('32121','0','','10353','Get OSD stats','ceph.osd.stats["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','35b63ca6519e4137bb7655e37ed08e51','0','2','0'), ('32168','0','','10353','OSD','ceph.osd.discovery["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','374557a43a824d938e9a8e656151e0c9','0','2','0'), ('32169','0','','10353','Pool','ceph.pool.discovery["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fb6b4d27f46e4160ad978244aa845d0e','0','2','0'), ('32239','3','','10355','Service ping','net.tcp.service[tcp,,{$SQUID.HTTP.PORT}]','1m','31d','365d','0','3','','','','',NULL,'39','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','86cc718ce21b4ff9b0a09479ae3fc130','0','2','0'), ('32240','20','get[1.3.6.1.4.1.3495.1.3.1.7.0]','10355','Objects count','squid[cacheNumObjCount]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of objects stored by the cache','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','387bbd61d3bd469baa6c560afe8a18ae','0','2','0'), ('32241','20','get[1.3.6.1.4.1.3495.1.3.2.2.1.6.5]','10355','ICP query service time per 5 minutes','squid[cacheIcpQuerySvcTime.5]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'ICP query service time per 5 minutes','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cb9d0c300beb47568e99ff7966e1b10e','0','2','0'), ('32242','20','get[1.3.6.1.4.1.3495.1.3.2.2.1.6.60]','10355','ICP query service time per hour','squid[cacheIcpQuerySvcTime.60]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'ICP query service time per hour','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9130a0bc53144fe992b701aa9159ff70','0','2','0'), ('32243','20','get[1.3.6.1.4.1.3495.1.3.2.2.1.7.5]','10355','ICP reply service time per 5 minutes','squid[cacheIcpReplySvcTime.5]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'ICP reply service time per 5 minutes','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','35a7585432b3467585ff98b23e610d82','0','2','0'), ('32244','20','get[1.3.6.1.4.1.3495.1.3.2.2.1.7.60]','10355','ICP reply service time per hour','squid[cacheIcpReplySvcTime.60]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'ICP reply service time per hour','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','94eab55af41a465196588d08acbacb56','0','2','0'), ('32245','20','get[1.3.6.1.4.1.3495.1.4.1.3.0]','10355','IP cache hits per second','squid[cacheIpHits]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of IP Cache hits','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c5409583483e4024aabaab500bcb637a','0','2','0'), ('32246','20','get[1.3.6.1.4.1.3495.1.4.1.6.0]','10355','IP cache misses per second','squid[cacheIpMisses]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of IP Cache misses','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8e474d2fd410472bb03024d2a2361b5d','0','2','0'), ('32247','20','get[1.3.6.1.4.1.3495.1.4.1.2.0]','10355','IP cache requests per second','squid[cacheIpRequests]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of IP Cache requests','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dc837a887c3c463a9011d923dbbfbc0f','0','2','0'), ('32248','20','get[1.3.6.1.4.1.3495.1.3.1.6.0]','10355','Memory maximum resident size','squid[cacheMaxResSize]','1m','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum Resident Size','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','70786920f94f41eeb0fc525c2e6431cf','0','2','0'), ('32249','20','get[1.3.6.1.4.1.3495.1.2.5.1.0]','10355','Memory maximum cache size','squid[cacheMemMaxSize]','1m','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The value of the cache_mem parameter','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d84c3a3633784f77bf9375bf59da490b','0','2','0'), ('32250','20','get[1.3.6.1.4.1.3495.1.3.1.3.0]','10355','Memory cache usage','squid[cacheMemUsage]','1m','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total accounted memory','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c14fe87f87ca48f39bbe765db60e0a41','0','2','0'), ('32251','20','get[1.3.6.1.4.1.3495.1.3.2.1.1.0]','10355','HTTP requests received per second','squid[cacheProtoClientHttpRequests]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of HTTP requests received','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1e648a20db904e92ae4ec0c3f9037a99','0','2','0'), ('32252','20','get[1.3.6.1.4.1.3495.1.3.2.1.7.0]','10355','ICP messages received per second','squid[cacheIcpPktsRecv]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of ICP messages received','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9ee83c13fa6d41dfb8bfea91c02341b9','0','2','0'), ('32253','20','get[1.3.6.1.4.1.3495.1.3.2.2.1.10.1]','10355','Byte hit ratio per 1 minute','squid[cacheRequestByteRatio.1]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Byte Hit Ratios','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','31f3e3bb57d645ff8df6b9b8d1b70a49','0','2','0'), ('32254','20','get[1.3.6.1.4.1.3495.1.3.2.2.1.10.5]','10355','Byte hit ratio per 5 minutes','squid[cacheRequestByteRatio.5]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Byte Hit Ratios','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e19775b9c83648d58655a1130c5771e4','0','2','0'), ('32255','20','get[1.3.6.1.4.1.3495.1.3.2.2.1.10.60]','10355','Byte hit ratio per 1 hour','squid[cacheRequestByteRatio.60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Byte Hit Ratios','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ffb3fc17631f4cd6b55ed6eefd2e6cea','0','2','0'), ('32256','20','get[1.3.6.1.4.1.3495.1.3.2.2.1.9.1]','10355','Request hit ratio per 1 minute','squid[cacheRequestHitRatio.1]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Byte Hit Ratios','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a4ba5af69dd64fd8acf707ee1eaaeb32','0','2','0'), ('32257','20','get[1.3.6.1.4.1.3495.1.3.2.2.1.9.5]','10355','Request hit ratio per 5 minutes','squid[cacheRequestHitRatio.5]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Byte Hit Ratios','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b5ae7935e9be40e18c3020820a7865c7','0','2','0'), ('32258','20','get[1.3.6.1.4.1.3495.1.3.2.2.1.9.60]','10355','Request hit ratio per 1 hour','squid[cacheRequestHitRatio.60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Byte Hit Ratios','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b09f7a1d9dc340b88106016586099dba','0','2','0'), ('32259','20','get[1.3.6.1.4.1.3495.1.2.5.3.0]','10355','Cache swap high water mark','squid[cacheSwapHighWM]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Cache Swap High Water Mark','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','69e4fb088c6949ac94eabcb892df46ab','0','2','0'), ('32260','20','get[1.3.6.1.4.1.3495.1.2.5.4.0]','10355','Cache swap low water mark','squid[cacheSwapLowWM]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Cache Swap Low Water Mark','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','221e583d7cf2455b9d848462de4b1e9a','0','2','0'), ('32261','20','get[1.3.6.1.4.1.3495.1.2.5.2.0]','10355','Cache swap directory size','squid[cacheSwapMaxSize]','1m','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total of the cache_dir space allocated','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','215aefddd30e41aea54e30678f290215','0','2','0'), ('32262','20','get[1.3.6.1.4.1.3495.1.3.1.1.0]','10355','Sys page faults per second','squid[cacheSysPageFaults]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Page faults with physical I/O','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','38ad99f9b30c4d729030ceab6575f4f5','0','2','0'), ('32263','20','get[1.3.6.1.4.1.3495.1.1.3.0]','10355','Uptime','squid[cacheUptime]','5m','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The Uptime of the cache in timeticks (in hundredths of a second) with preprocessing','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','67460731d9c94166870874239c9a60da','0','2','0'), ('32264','20','get[1.3.6.1.4.1.3495.1.3.2.1.6.0]','10355','ICP messages sent per second','squid[cacheIcpPktsSent]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of ICP messages sent','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dee7d8cf211b4ad0a645a8d6d4f24c31','0','2','0'), ('32265','20','get[1.3.6.1.4.1.3495.1.3.2.1.8.0]','10355','ICP traffic transmitted per second','squid[cacheIcpKbSent]','1m','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of ICP traffic transmitted','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7234b612b50a45e0a1bb69654e2e784d','0','2','0'), ('32266','20','get[1.3.6.1.4.1.3495.1.3.1.5.0]','10355','CPU usage','squid[cacheCpuUsage]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage use of the CPU','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6d7f0f6b0f89462e96e86940b779eb69','0','2','0'), ('32267','20','get[1.3.6.1.4.1.3495.1.4.2.3.0]','10355','FQDN cache hits per second','squid[cacheFqdnHits]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of FQDN Cache hits','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0aea1fe702004d65919fc010c971c3b5','0','2','0'), ('32268','20','get[1.3.6.1.4.1.3495.1.3.1.12.0]','10355','File descriptor count - current used','squid[cacheCurrentFileDescrCnt]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of file descriptors in use','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','960b137ab773492ab3073e108575e4fc','0','2','0'), ('32269','20','get[1.3.6.1.4.1.3495.1.3.1.13.0]','10355','File descriptor count - current maximum','squid[cacheCurrentFileDescrMax]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Highest number of file descriptors in use','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','37b45201f8444583b01e0df5af2bc14e','0','2','0'), ('32270','20','get[1.3.6.1.4.1.3495.1.3.1.8.0]','10355','Objects LRU expiration age','squid[cacheCurrentLRUExpiration]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Storage LRU Expiration Age','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','910afdc20767408f90d1bc5b7a9fd6a4','0','2','0'), ('32271','20','get[1.3.6.1.4.1.3495.1.3.1.11.0]','10355','File descriptor count - current reserved','squid[cacheCurrentResFileDescrCnt]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Reserved number of file descriptors','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','26b8b1a25dc74099b61813905477b414','0','2','0'), ('32272','20','get[1.3.6.1.4.1.3495.1.3.2.1.14.0]','10355','Cache swap current size','squid[cacheCurrentSwapSize]','1m','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Storage Swap Size','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','35f3009401b6449d95988d9ee7a621a7','0','2','0'), ('32273','20','get[1.3.6.1.4.1.3495.1.3.1.9.0]','10355','Objects unlinkd requests','squid[cacheCurrentUnlinkRequests]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Requests given to unlinkd','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0789a0fa3e3b42a08a5e5bf8d0307970','0','2','0'), ('32274','20','get[1.3.6.1.4.1.3495.1.3.1.10.0]','10355','File descriptor count - current available','squid[cacheCurrentUnusedFDescrCnt]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Available number of file descriptors','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6bc024be663b466ca677941130e11f50','0','2','0'), ('32275','20','get[1.3.6.1.4.1.3495.1.4.3.2.0]','10355','DNS server replies per second','squid[cacheDnsReplies]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of external dns server replies','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1aecf10756f949999c8f3fe5ce9c2a32','0','2','0'), ('32276','20','get[1.3.6.1.4.1.3495.1.4.3.1.0]','10355','DNS server requests per second','squid[cacheDnsRequests]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of external dns server requests','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e5f647c77bdb498e9cc286795bc4077c','0','2','0'), ('32277','20','get[1.3.6.1.4.1.3495.1.3.2.2.1.8.5]','10355','DNS service time per 5 minutes','squid[cacheDnsSvcTime.5]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'DNS service time per 5 minutes','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3f4366896dd84b8ab78d6e3dc8a6ab63','0','2','0'), ('32278','20','get[1.3.6.1.4.1.3495.1.3.2.2.1.8.60]','10355','DNS service time per hour','squid[cacheDnsSvcTime.60]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'DNS service time per hour','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','99448052f1a34e15a5c042124db7b651','0','2','0'), ('32279','20','get[1.3.6.1.4.1.3495.1.4.2.6.0]','10355','FQDN cache misses per second','squid[cacheFqdnMisses]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of FQDN Cache misses','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2dea9b707b844d32b65a2d479ddb7d72','0','2','0'), ('32280','20','get[1.3.6.1.4.1.3495.1.3.2.1.9.0]','10355','ICP traffic received per second','squid[cacheIcpKbRecv]','1m','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of ICP traffic received','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bde307ead15d48859a97e35e52327d50','0','2','0'), ('32281','20','get[1.3.6.1.4.1.3495.1.4.2.2.0]','10355','FQDN cache requests per second','squid[cacheFqdnRequests]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of FQDN Cache requests','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1dad3f381c174b869c73f55cd831b40a','0','2','0'), ('32282','20','get[1.3.6.1.4.1.3495.1.3.2.2.1.2.5]','10355','HTTP all service time per 5 minutes','squid[cacheHttpAllSvcTime.5]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'HTTP all service time per 5 minutes','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','633a70cd41c44f2c895148a7ae394acd','0','2','0'), ('32283','20','get[1.3.6.1.4.1.3495.1.3.2.2.1.2.60]','10355','HTTP all service time per hour','squid[cacheHttpAllSvcTime.60]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'HTTP all service time per hour','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d3aa021743134d97af9dd8840b0ef692','0','2','0'), ('32284','20','get[1.3.6.1.4.1.3495.1.3.2.1.3.0]','10355','HTTP Errors sent per second','squid[cacheHttpErrors]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of HTTP Errors sent to clients','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7f5bd8f89ea0495ea87c294fb8c606dd','0','2','0'), ('32285','20','get[1.3.6.1.4.1.3495.1.3.2.1.2.0]','10355','HTTP Hits sent from cache per second','squid[cacheHttpHits]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of HTTP Hits sent to clients from cache','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','adfe3e2fc775400991d2ea2f06218daf','0','2','0'), ('32286','20','get[1.3.6.1.4.1.3495.1.3.2.2.1.5.5]','10355','HTTP hit service time per 5 minutes','squid[cacheHttpHitSvcTime.5]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'HTTP hit service time per 5 minutes','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0c4fd7c154a44442a3cec82ba4026b7d','0','2','0'), ('32287','20','get[1.3.6.1.4.1.3495.1.3.2.2.1.5.60]','10355','HTTP hit service time per hour','squid[cacheHttpHitSvcTime.60]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'HTTP hit service time per hour','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a642c99d6c3f4f5e8ec218459fd76f04','0','2','0'), ('32288','20','get[1.3.6.1.4.1.3495.1.3.2.1.4.0]','10355','HTTP traffic received per second','squid[cacheHttpInKb]','1m','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of HTTP traffic received from clients','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f2366a6008cb4dc7856904ea5c6631dd','0','2','0'), ('32289','20','get[1.3.6.1.4.1.3495.1.3.2.2.1.3.5]','10355','HTTP miss service time per 5 minutes','squid[cacheHttpMissSvcTime.5]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'HTTP miss service time per 5 minutes','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f8fa271a272442369b6cbc4fb1a2decc','0','2','0'), ('32290','20','get[1.3.6.1.4.1.3495.1.3.2.2.1.3.60]','10355','HTTP miss service time per hour','squid[cacheHttpMissSvcTime.60]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'HTTP miss service time per hour','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','23e5a3bd6e9a4c50a7d54336a6afc1e1','0','2','0'), ('32291','20','get[1.3.6.1.4.1.3495.1.3.2.1.5.0]','10355','HTTP traffic sent per second','squid[cacheHttpOutKb]','1m','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of HTTP traffic sent to clients','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ff6b7946363d44bba5721c82c8f84df7','0','2','0'), ('32292','20','get[1.3.6.1.4.1.3495.1.2.3.0]','10355','Version','squid[cacheVersionId]','1m','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Cache Software Version','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d7c7f0faa1f64745be774e30e6f0b68f','0','2','0'), ('32364','0','','10357','Get connections sum','pgsql.connections.sum["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect all metrics from pg_stat_activity: https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-ACTIVITY-VIEW','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b0da0c4856a645ca8ef03405d2d8d4a5','0','2','0'), ('32365','0','','10357','Get locks','pgsql.locks["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect all metrics from pg_locks per database: https://www.postgresql.org/docs/current/explicit-locking.html#LOCKING-TABLES','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7cee21f6225340ef80e9cdef7ce20b10','0','2','0'), ('32366','0','','10357','Ping time','pgsql.ping.time["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Used to get the `SELECT 1` query execution time.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f42bd73b3af6451b8a3a6113dcc1b675','0','2','0'), ('32367','0','','10357','Ping','pgsql.ping["{$PG.HOST}","{$PG.PORT}"]','1m','31d','365d','0','3','','','','',NULL,'40','','','0','','','','','0',NULL,'Used to test a connection to see if it is alive. It is set to 0 if the instance doesn''t accept the connections.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f5bd615243b344cb88dac1e83436cc85','0','2','0'), ('32368','0','','10357','Get queries','pgsql.queries["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}","{$PG.QUERY_ETIME.MAX.WARN}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect all metrics by query execution time.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','47bf580e1e4e48cf9c0e94fcf90288ac','0','2','0'), ('32369','0','','10357','Replication: Standby count','pgsql.replication.count["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of standby servers.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d8a509bd011a4ecda5d439295e257e9d','0','2','0'), ('32370','0','','10357','Replication: Lag in seconds','pgsql.replication.lag.sec["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Replication lag with master, in seconds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','21f8bea1141249c7a4dfafad5bc3ef41','0','2','0'), ('32371','0','','10357','Replication: Recovery role','pgsql.replication.recovery_role["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','31d','365d','0','3','','','','',NULL,'124','','','0','','','','','0',NULL,'Replication role: 1 — recovery is still in progress (standby mode), 0 — master mode.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','09f696124fca4c5b844bf66c9c912b87','0','2','0'), ('32372','0','','10357','Replication: Status','pgsql.replication.status["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','31d','365d','0','3','','','','',NULL,'126','','','0','','','','','0',NULL,'Replication status: 0 — streaming is down, 1 — streaming is up, 2 — master mode.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d449017462704508a4aad51a6b45fb30','0','2','0'), ('32373','0','','10357','Config hash','pgsql.config.hash["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','15m','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'PostgreSQL configuration hash.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','248cbe5067324b9ca435f2aced5e2a5f','0','2','0'), ('32374','0','','10357','Cache hit ratio, %','pgsql.cache.hit["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Cache hit ratio.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','70a7581fabd14e05bda762b79811187c','0','2','0'), ('32375','0','','10357','Get bgwriter','pgsql.bgwriter["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect all metrics from pg_stat_bgwriter: https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-BGWRITER-VIEW','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1fc5ba48a0974bd7bf965b5f130deded','0','2','0'), ('32376','0','','10357','Get transactions','pgsql.transactions["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect metrics by transaction execution time.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ff26a1c256bd40978f49a7a025538aa1','0','2','0'), ('32377','0','','10357','Uptime','pgsql.uptime["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'Time since the server started.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6418a2f286e64ecabf2295fca063f8af','0','2','0'), ('32378','0','','10357','Version','pgsql.version["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'PostgreSQL version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','321525ebcea44396922e96deec2e8ad1','0','2','0'), ('32379','0','','10357','Get WAL','pgsql.wal.stat["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','5m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect write-ahead log (WAL) metrics.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7cd6c524ecab41f9a22489866d503361','0','2','0'), ('32380','0','','10357','Get dbstat','pgsql.dbstat["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect all metrics from pg_stat_database per database: https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-DATABASE-VIEW','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b44f263fb33e461e8c3d700fb7688c7b','0','2','0'), ('32404','0','','10357','Database discovery','pgsql.discovery.db["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers databases (DB) in the database management system (DBMS), except: - templates; - default "postgres" DB; - DBs that do not allow connections.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5c4c658507394f5bb362e601f7c59d63','0','2','0'), ('32405','0','','10357','DB [{#DBNAME}]: Database size','pgsql.db.size["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}","{#DBNAME}"]','15m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Database size.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','69575e9785184ef5be2502e3cc282220','0','2','0'), ('32406','0','','10357','DB [{#DBNAME}]: Get frozen XID','pgsql.frozenxid["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{#DBNAME}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ddf6d0b7b5fe4cbbb540687051b8e5f5','0','2','0'), ('32407','0','','10357','DB [{#DBNAME}]: Get scans','pgsql.scans["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{#DBNAME}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of scans done for table/index in this database.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4bf92e4b0fed4d32b808b299d9e1fb0c','0','2','0'), ('32440','16','','10358','Brokers discovery','jmx.discovery[beans,"org.apache.activemq:type=Broker,brokerName=*"]','1h','90d','0','0','4','','','{1152} and {1153}','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','1',NULL,'Discovery of brokers','0','7d','3','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cbd9f98c2c1e412081a546e18066a868','0','2','0'), ('32441','16','','10358','Destinations discovery','jmx.discovery[beans,"org.apache.activemq:type=Broker,brokerName=*,destinationType=*,destinationName=*"]','1h','90d','0','0','4','','','{1154} and {1155}','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','1',NULL,'Discovery of destinations','0','7d','3','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','14432547793d42d2b75c7b08fcbb3545','0','2','0'), ('32442','16','','10358','Broker {#JMXBROKERNAME}: Version','jmx[{#JMXOBJ},BrokerVersion]','1m','31d','0','0','4','','','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'The version of the broker.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','29a0f197bfe847d596dad4923364490e','0','2','0'), ('32443','16','','10358','Broker {#JMXBROKERNAME}: Memory limit','jmx[{#JMXOBJ},MemoryLimit]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'Memory limit, in bytes, used for holding undelivered messages before paging to temporary storage.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','85c19ccb8b6a4242a8ba699e76836427','0','2','0'), ('32444','16','','10358','Broker {#JMXBROKERNAME}: Memory usage in percents','jmx[{#JMXOBJ}, MemoryPercentUsage]','1m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'Percent of memory limit used.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5e2a5638adf6405087014bfcfc8ffc93','0','2','0'), ('32445','16','','10358','Broker {#JMXBROKERNAME}: Storage limit','jmx[{#JMXOBJ},StoreLimit]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'Disk limit, in bytes, used for persistent messages before producers are blocked.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','78806476b5cb4ce48f8ca8dbd173c7c3','0','2','0'), ('32446','16','','10358','Broker {#JMXBROKERNAME}: Storage usage in percents','jmx[{#JMXOBJ},StorePercentUsage]','1m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'Percent of store limit used.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fc4c79543a6f4b7b9c22f11b61b644c9','0','2','0'), ('32447','16','','10358','Broker {#JMXBROKERNAME}: Temp limit','jmx[{#JMXOBJ},TempLimit]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'Disk limit, in bytes, used for non-persistent messages and temporary data before producers are blocked.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','09db80ee80ea47189142130d35a8e1c2','0','2','0'), ('32448','16','','10358','Broker {#JMXBROKERNAME}: Temp usage in percents','jmx[{#JMXOBJ},TempPercentUsage]','1m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'Percent of temp limit used.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','95354144839e4d22a82c4e9a1fab83d9','0','2','0'), ('32449','16','','10358','Broker {#JMXBROKERNAME}: Consumers count total','jmx[{#JMXOBJ},TotalConsumerCount]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'Number of consumers attached to this broker.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','64ab04e456804e10a6c78c3190807506','0','2','0'), ('32450','16','','10358','Broker {#JMXBROKERNAME}: Messages dequeue rate','jmx[{#JMXOBJ},TotalDequeueCount]','1m','31d','365d','0','3','','messages/sec','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'Rate of messages that have been delivered by the broker and acknowledged by consumers.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','48bc7dab4a1a40d8a823e880018cf8e7','0','2','0'), ('32451','16','','10358','Broker {#JMXBROKERNAME}: Messages enqueue rate','jmx[{#JMXOBJ},TotalEnqueueCount]','1m','31d','365d','0','3','','messages/sec','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'Rate of messages that have been sent to the broker.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a462499eecbd443e931a9aa831240f65','0','2','0'), ('32452','16','','10358','Broker {#JMXBROKERNAME}: Producers count total','jmx[{#JMXOBJ},TotalProducerCount]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'Number of producers attached to this broker.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2453d8221cec4e1ead6622c001ac9a8c','0','2','0'), ('32453','16','','10358','Broker {#JMXBROKERNAME}: Uptime','jmx[{#JMXOBJ},UptimeMillis]','1m','31d','365d','0','3','','s','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'The uptime of the broker.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a46d7281cb234ccaadacbb7d311cbd39','0','2','0'), ('32454','16','','10358','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Consumers count total on {#JMXBROKERNAME}','jmx["org.apache.activemq:type=Broker,brokerName={#JMXBROKERNAME}",{$ACTIVEMQ.TOTAL.CONSUMERS.COUNT: "{#JMXDESTINATIONNAME}"}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'Number of consumers attached to the broker of this destination. Used to suppress destination''s triggers when the count of consumers on the broker is lower than threshold.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fd8129c9a66043d896a70c91c8b0d471','0','2','0'), ('32455','16','','10358','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Producers count total on {#JMXBROKERNAME}','jmx["org.apache.activemq:type=Broker,brokerName={#JMXBROKERNAME}",{$ACTIVEMQ.TOTAL.PRODUCERS.COUNT: "{#JMXDESTINATIONNAME}"}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'Number of producers attached to the broker of this destination. Used to suppress destination''s triggers when the count of producers on the broker is lower than threshold.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','99f2094b02f848e785e40296958c5450','0','2','0'), ('32456','16','','10358','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Consumers count','jmx[{#JMXOBJ},ConsumerCount]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'Number of consumers attached to this destination.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5e93e53a0c2d49a49d421ded87b6b1f8','0','2','0'), ('32457','16','','10358','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Messages dequeue rate','jmx[{#JMXOBJ},DequeueCount]','1m','31d','365d','0','3','','messages/sec','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'Rate of messages that has been acknowledged (and removed) from the destination.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3536ec77069a434e854415f0a3270e67','0','2','0'), ('32458','16','','10358','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Messages enqueue rate','jmx[{#JMXOBJ},EnqueueCount]','1m','31d','365d','0','3','','messages/sec','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'Rate of messages that have been sent to the destination.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a6dacc8c4d1f4724bf49c63449992035','0','2','0'), ('32459','16','','10358','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Expired messages count','jmx[{#JMXOBJ},ExpiredCount]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'Number of messages that have been expired.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1c4ea913a9564d74b31ef82314203a15','0','2','0'), ('32460','16','','10358','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Memory usage in percents','jmx[{#JMXOBJ},MemoryPercentUsage]','1m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'The percentage of the memory limit used.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','158fac5a1b3c4f07a4004a733f9b6995','0','2','0'), ('32461','16','','10358','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Producers count','jmx[{#JMXOBJ},ProducerCount]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'Number of producers attached to this destination.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','82ee74872f6e46efbf16ae0705bcf2a6','0','2','0'), ('32462','16','','10358','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Queue size','jmx[{#JMXOBJ},QueueSize]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$ACTIVEMQ.USER}','{$ACTIVEMQ.PASSWORD}','','','2',NULL,'Number of messages on this destination, including any that have been dispatched but not acknowledged.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fdc1e26fbe6545d3bdfc86f6f8c91b8b','0','2','0'), ('32463','21','','10359','Get data','aranet.get_data','1m','0','0','0','4','','','','',NULL,NULL,'var Aranet = { params: {}, auth_token: null, refresh_token: null, space_id: null, setParams: function (params) { [''api_endpoint'', ''username'', ''password'', ''space_name''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } }); Aranet.params = params; if (typeof Aranet.params.api_endpoint === ''string'') { if (!Aranet.params.api_endpoint.endsWith(''/'')) { Aranet.params.api_endpoint += ''/''; } } }, request: function (method, query, data) { var response, request = new HttpRequest(), url = Aranet.params.api_endpoint + query; request.addHeader(''Content-Type: application/json''); if (Aranet.auth_token !== null) { request.addHeader(''Authorization: Bearer '' + Aranet.auth_token); } if (typeof data !== ''undefined'') { data = JSON.stringify(data); } switch (method) { case ''get'': response = request.get(url, data); break; case ''post'': response = request.post(url, data); break; default: throw ''Unsupported HTTP request method: '' + method; } Zabbix.log(4, ''[ Aranet scraper ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() < 200 || request.getStatus() >= 300) { var message = ''Request failed with status code '' + request.getStatus(); message += '': '' + response; throw message; } if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from Aranet Cloud. Check debug log for more information.''; } } return { status: request.getStatus(), response: response }; }, login: function () { var result, data = { login: Aranet.params.username, passw: Aranet.params.password }; result = Aranet.request(''post'', ''user/login'', data); if (typeof result.response !== ''object'' || typeof result.response.auth === ''undefined'' || result.status != 200) { throw ''Cannot login to Aranet Cloud. Check debug log for more information.''; } Aranet.auth_token = result.response.auth; Aranet.refresh_token = result.response.refresh; var spaces = result.response.spaces; for (var key in spaces) { if (spaces[key] == Aranet.params.space_name) { Aranet.space_id = key; break; } } return result.response; }, logout: function () { var result, data = { refresh: Aranet.refresh_token }; try { result = Aranet.request(''post'', ''user/logout'', data); if (result.status != 204) { throw ''Cannot logout from Aranet Cloud '' + request.getStatus() + '': '' + result.response; } } catch (error) { Zabbix.log(4, ''[ Aranet scraper ] '' + error) } }, getMetrics: function () { var result = Aranet.request(''get'', ''metrics/'' + Aranet.space_id); if (typeof result.response !== ''object'' || typeof result.response.data === ''undefined'' || result.status != 200) { throw ''Cannot get metrics data from Aranet Cloud. Check debug log for more information.''; }; return result.response; }, getSensors: function () { var result = Aranet.request(''get'', ''sensors/'' + Aranet.space_id + ''?fields=devices,metrics,telemetry,name''); if (typeof result.response !== ''object'' || typeof result.response.data === ''undefined'' || result.status != 200) { throw ''Cannot get sensors data from Aranet Cloud. Check debug log for more information.''; }; return result.response; }, getGateways: function () { var result = Aranet.request(''get'', ''gateways/'' + Aranet.space_id); if (typeof result.response !== ''object'' || typeof result.response.devices === ''undefined'' || result.status != 200) { throw ''Cannot get gateways data from Aranet Cloud. Check debug log for more information.''; }; return result.response; } } var processed_metrics = {}, processed_sensors = []; try { Aranet.setParams(JSON.parse(value)); Aranet.login(); var raw_metrics = Aranet.getMetrics(), raw_sensors = Aranet.getSensors(), raw_gateways = Aranet.getGateways(); Aranet.logout(); var items = raw_metrics.data.items; for (item_idx in items) { var unit_name, units = items[item_idx].units; units.some(function (unit) { unit_name = unit.name; if (unit.selected) { return true; } }); processed_metrics[items[item_idx].id] = { name: items[item_idx].name, unit: unit_name } delete items[item_idx]; } var items = raw_sensors.data.items; for (item_idx in items) { var upd_ts = 0, gateway = {}, sensor_metrics = [], metrics = items[item_idx].metrics, telemetry = items[item_idx].telemetry; for (m_idx in metrics) { var unit = processed_metrics[metrics[m_idx].id]; if (upd_ts < metrics[m_idx].t) { upd_ts = metrics[m_idx].t; } sensor_metrics.push({ name: unit.name, unit: unit.unit, value: metrics[m_idx].v }); } for (var t_idx in telemetry) { var unit = processed_metrics[telemetry[t_idx].id]; if (upd_ts < telemetry[t_idx].t) { upd_ts = telemetry[t_idx].t; } sensor_metrics.push({ name: unit.name, unit: unit.unit, value: telemetry[t_idx].v }); } raw_gateways.devices.some(function (dev) { if (items[item_idx].devices[0].id === dev.id) { gateway = { id: dev.id, name: dev.device } return true; } }) if (upd_ts) { sensor_metrics.push({ name: ''Last update'', unit: ''s'', value: upd_ts }); } var sensor_id = parseInt(items[item_idx].id).toString(16).slice(-5); processed_sensors.push({ id: sensor_id, name: items[item_idx].name.trim() === '''' ? sensor_id : items[item_idx].name, gateway: gateway, metrics: sensor_metrics }); delete items[item_idx]; } return JSON.stringify(processed_sensors); } catch (error) { Zabbix.log(3, ''[ Aranet scraper ] ERROR: '' + error); throw ''Scraping failed: '' + error; }','','0','','','','','0',NULL,'','0','30d','0','',NULL,'10s','','','','200','1','0','','','0','0','0','0','0','0','0','56f89fce2b1541b7898ad56362d4b28a','0','2','0'), ('32516','0','','10360','Databases total mounted',E'perf_counter_en["\\MSExchange Active Manager(_total)\\Database Mounted"]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the number of active database copies on the server.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b4978a9a4cff4ce88fbc82683b61eec4','0','2','0'), ('32517','0','','10360','ActiveSync: ping command pending',E'perf_counter_en["\\MSExchange ActiveSync\\Ping Commands Pending", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the number of ping commands currently pending in the queue.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9b59700d8db8472fbde41c85c7a06ffc','0','2','0'), ('32518','0','','10360','ActiveSync: requests per second',E'perf_counter_en["\\MSExchange ActiveSync\\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the number of HTTP requests received from the client via ASP.NET per second. Determines the current Exchange ActiveSync request rate. Used only to determine current user load.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fa70b4e2d17c44c6945dd2d1c971c34c','0','2','0'), ('32519','0','','10360','ActiveSync: sync commands per second',E'perf_counter_en["\\MSExchange ActiveSync\\Sync Commands/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the number of sync commands processed per second. Clients use this command to synchronize items within a folder.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8528015c73134a239d7ac235464788dd','0','2','0'), ('32520','0','','10360','Autodiscover: requests per second',E'perf_counter_en["\\MSExchangeAutodiscover\\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the number of Autodiscover service requests processed each second. Determines current user load.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','456cb7af0b224a59afabae36d24d2cbc','0','2','0'), ('32521','0','','10360','Availability Service: availability requests per second',E'perf_counter_en["\\MSExchange Availability Service\\Availability Requests (sec)", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the number of requests serviced per second. The request can be only for free/ busy information or include suggestions. One request may contain multiple mailboxes. Determines the rate at which Availability service requests are occurring.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b9a539175cbb4259b064a787a25e9dbe','0','2','0'), ('32522','0','','10360','Outlook Web App: current unique users',E'perf_counter_en["\\MSExchange OWA\\Current Unique Users", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the number of unique users currently logged on to Outlook Web App. This value monitors the number of unique active user sessions, so that users are only removed from this counter after they log off or their session times out. Determines current user load.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3c2a83dfef35497baf8c38b801854882','0','2','0'), ('32523','0','','10360','Outlook Web App: requests per second',E'perf_counter_en["\\MSExchange OWA\\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the number of requests handled by Outlook Web App per second. Determines current user load.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2c7fd331673e4d84aa09551222469b08','0','2','0'), ('32524','0','','10360','MSExchangeWS: requests per second',E'perf_counter_en["\\MSExchangeWS\\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the number of requests processed each second. Determines current user load.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9808449df53148a9a988a69d66944371','0','2','0'), ('32525','0','','10360','Databases discovery','perf_instance.discovery["MSExchange Active Manager"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of Exchange databases.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f3d6e34eaff844bfab582cb55d679e82','0','2','0'), ('32526','0','','10360','LDAP discovery','perf_instance_en.discovery["MSExchange ADAccess Domain Controllers"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of domain controller.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','635f8c96cf544dcd97e4a58b2e9353de','0','2','0'), ('32527','0','','10360','Web services discovery','perf_instance_en.discovery["Web Service"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of Exchange web services.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8a1cb7e22e55406e8e721a2189d7e00d','0','2','0'), ('32528','0','','10360','Active Manager [{#INSTANCE}]: Database copy role',E'perf_counter_en["\\MSExchange Active Manager({#INSTANCE})\\Database Copy Role Active"]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','','','',NULL,'185','','','0','','','','','2',NULL,'Database copy active or passive role.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0b2d46b766f24947b76b49d8368044a5','0','2','0'), ('32529','0','','10360','Information Store [{#INSTANCE}]: Page faults per second',E'perf_counter_en["\\MSExchange Database({#INF.STORE})\\Database Page Fault Stalls/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,E'Indicates the rate of page faults that can''t be serviced because there are no pages available for allocation from the database cache. If this counter is above 0, it''s an indication that the MSExchange Database\\I/O Database Writes (Attached) Average Latency is too high.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9ad0743878ed411ab1e76b8e774e91e9','0','2','0'), ('32530','0','','10360','Information Store [{#INSTANCE}]: Log records stalled',E'perf_counter_en["\\MSExchange Database({#INF.STORE})\\Log Record Stalls/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the number of log records that can''t be added to the log buffers per second because the log buffers are full. The average value should be below 10 per second. Spikes (maximum values) shouldn''t be higher than 100 per second.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1af9e0b4abb74e07af1d0d183333f0c4','0','2','0'), ('32531','0','','10360','Information Store [{#INSTANCE}]: Log threads waiting',E'perf_counter_en["\\MSExchange Database({#INF.STORE})\\Log Threads Waiting", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the number of threads waiting to complete an update of the database by writing their data to the log.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1b53de26c73a49bdb7fe55328db03ddd','0','2','0'), ('32532','0','','10360','Database Counters [{#INSTANCE}]: Active database read operations per second',E'perf_counter_en["\\MSExchange Database ==> Instances({#INF.STORE}/_Total)\\I/O Database Reads (Attached)/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Shows the number of database read operations.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1da31e52e5dd4b72bea5811a9bb06a01','0','2','0'), ('32533','0','','10360','Database Counters [{#INSTANCE}]: Active database read operations latency',E'perf_counter_en["\\MSExchange Database ==> Instances({#INF.STORE}/_Total)\\I/O Database Reads (Attached) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Shows the average length of time per database read operation. Should be less than 20 ms on average.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0bc5750ca13f4f738904e45f9860b76a','0','2','0'), ('32534','0','','10360','Database Counters [{#INSTANCE}]: Passive database read operations latency',E'perf_counter_en["\\MSExchange Database ==> Instances({#INF.STORE}/_Total)\\I/O Database Reads (Recovery) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Shows the average length of time per passive database read operation. Should be less than 200ms on average.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3095c843659341fd854fb297a9fdf14a','0','2','0'), ('32535','0','','10360','Database Counters [{#INSTANCE}]: Active database write operations per second',E'perf_counter_en["\\MSExchange Database ==> Instances({#INF.STORE}/_Total)\\I/O Database Writes (Attached)/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Shows the number of database write operations per second for each attached database instance.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7456bcbbac114ead9c417bcbeefa0e1c','0','2','0'), ('32536','0','','10360','Database Counters [{#INSTANCE}]: Active database write operations latency',E'perf_counter_en["\\MSExchange Database ==> Instances({#INF.STORE}/_Total)\\I/O Database Writes (Attached) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Shows the average length of time per database write operation. Should be less than 50ms on average.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e45413cc0e46458f9a00132b30c7c354','0','2','0'), ('32537','0','','10360','Database Counters [{#INSTANCE}]: Passive database write operations latency',E'perf_counter_en["\\MSExchange Database ==> Instances({#INF.STORE}/_Total)\\I/O Database Writes (Recovery) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,E'Shows the average length of time, in ms, per passive database write operation. Should be less than the read latency for the same instance, as measured by the MSExchange Database ==> Instances({#INF.STORE}/_Total)\\I/O Database Reads (Recovery) Average Latency counter.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5b7fc1949b67404584d2809556f3d595','0','2','0'), ('32538','0','','10360','Information Store [{#INSTANCE}]: Active mailboxes count',E'perf_counter_en["\\MSExchangeIS Store({#INSTANCE})\\Active mailboxes"]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of active mailboxes in this database.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6128c55bf63a4c48981dfccd077b4635','0','2','0'), ('32539','0','','10360','Information Store [{#INSTANCE}]: Database state',E'perf_counter_en["\\MSExchangeIS Store({#INSTANCE})\\Database State"]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','','','',NULL,'187','','','0','','','','','2',NULL,'Database state. Possible values: 0: Database without any copy and dismounted. 1: Database is a primary database and mounted. 2: Database is a passive copy and the state is healthy.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4db79306eb044db899be5e7672651959','0','2','0'), ('32540','0','','10360','Information Store [{#INSTANCE}]: RPC requests latency',E'perf_counter_en["\\MSExchangeIS Store({#INSTANCE})\\RPC Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'RPC Latency average is the average latency of RPC requests per database. Average is calculated over all RPCs since exrpc32 was loaded. Should be less than 50ms at all times, with spikes less than 100ms.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6bc9bc6d20df4de89ff03d63f21f6eab','0','2','0'), ('32541','0','','10360','Information Store [{#INSTANCE}]: RPC requests per second',E'perf_counter_en["\\MSExchangeIS Store({#INSTANCE})\\RPC Operations/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Shows the number of RPC operations per second for each database instance.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5321c367d288406d8d9eac217a444e9c','0','2','0'), ('32542','0','','10360','Information Store [{#INSTANCE}]: RPC requests total',E'perf_counter_en["\\MSExchangeIS Store({#INSTANCE})\\RPC requests", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the overall RPC requests currently executing within the information store process. Should be below 70 at all times.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','701d6a4fcfe14f899e0282eb75e08753','0','2','0'), ('32543','0','','10360','Domain Controller [{#INSTANCE}]: Read time',E'perf_counter_en["\\MSExchange ADAccess Domain Controllers({#INSTANCE})\\LDAP Read Time", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Time that it takes to send an LDAP read request to the domain controller in question and get a response. Should ideally be below 50 ms; spikes below 100 ms are acceptable.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b1c046c5aca04b85bf907f83c05b4142','0','2','0'), ('32544','0','','10360','Domain Controller [{#INSTANCE}]: Search time',E'perf_counter_en["\\MSExchange ADAccess Domain Controllers({#INSTANCE})\\LDAP Search Time", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Time that it takes to send an LDAP search request and get a response. Should ideally be below 50 ms; spikes below 100 ms are acceptable.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c7326e542e534afd9a1df9a8ec1226e4','0','2','0'), ('32545','0','','10360','Web Service [{#INSTANCE}]: Current connections',E'perf_counter_en["\\Web Service({#INSTANCE})\\Current Connections", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Shows the current number of connections established to the each Web Service.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3c3d1881bb294a31afa09605699a6965','0','2','0'), ('32546','7','','10361','Databases total mounted',E'perf_counter_en["\\MSExchange Active Manager(_total)\\Database Mounted"]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the number of active database copies on the server.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5af1c3257c264abda20023eae10b3b86','0','2','0'), ('32547','7','','10361','ActiveSync: ping command pending',E'perf_counter_en["\\MSExchange ActiveSync\\Ping Commands Pending", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the number of ping commands currently pending in the queue.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bb9de29f56124a77a6ac1d3f8cbd72e9','0','2','0'), ('32548','7','','10361','ActiveSync: requests per second',E'perf_counter_en["\\MSExchange ActiveSync\\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the number of HTTP requests received from the client via ASP.NET per second. Determines the current Exchange ActiveSync request rate. Used only to determine current user load.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','038e740be37c40339520b4c4b1b0d18b','0','2','0'), ('32549','7','','10361','ActiveSync: sync commands per second',E'perf_counter_en["\\MSExchange ActiveSync\\Sync Commands/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the number of sync commands processed per second. Clients use this command to synchronize items within a folder.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','953665dbe8f948ff821333a4d50eada6','0','2','0'), ('32550','7','','10361','Autodiscover: requests per second',E'perf_counter_en["\\MSExchangeAutodiscover\\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the number of Autodiscover service requests processed each second. Determines current user load.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c8ed8a7e36c6453183aee1a778a4749a','0','2','0'), ('32551','7','','10361','Availability Service: availability requests per second',E'perf_counter_en["\\MSExchange Availability Service\\Availability Requests (sec)", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the number of requests serviced per second. The request can be only for free/ busy information or include suggestions. One request may contain multiple mailboxes. Determines the rate at which Availability service requests are occurring.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2260d98130814d369ac1c90324caaa26','0','2','0'), ('32552','7','','10361','Outlook Web App: current unique users',E'perf_counter_en["\\MSExchange OWA\\Current Unique Users", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the number of unique users currently logged on to Outlook Web App. This value monitors the number of unique active user sessions, so that users are only removed from this counter after they log off or their session times out. Determines current user load.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b4336fce2d27450b95de4f1bbbf947f3','0','2','0'), ('32553','7','','10361','Outlook Web App: requests per second',E'perf_counter_en["\\MSExchange OWA\\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the number of requests handled by Outlook Web App per second. Determines current user load.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','14344546f3a748fbb8f78e503e92255f','0','2','0'), ('32554','7','','10361','MSExchangeWS: requests per second',E'perf_counter_en["\\MSExchangeWS\\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the number of requests processed each second. Determines current user load.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e8c8e348c01e48ad92ee02060717e097','0','2','0'), ('32555','7','','10361','Databases discovery','perf_instance.discovery["MSExchange Active Manager"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of Exchange databases.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3b23aa50517a4081b8463f694757cd0c','0','2','0'), ('32556','7','','10361','LDAP discovery','perf_instance_en.discovery["MSExchange ADAccess Domain Controllers"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of domain controller.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c18f965b9ba6419ea578238ebc8168bb','0','2','0'), ('32557','7','','10361','Web services discovery','perf_instance_en.discovery["Web Service"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of Exchange web services.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8749f11f547546ac8bf81478c798186f','0','2','0'), ('32558','7','','10361','Active Manager [{#INSTANCE}]: Database copy role',E'perf_counter_en["\\MSExchange Active Manager({#INSTANCE})\\Database Copy Role Active"]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','','','',NULL,'186','','','0','','','','','2',NULL,'Database copy active or passive role.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7e0a5f324690432199728f577dbcc91a','0','2','0'), ('32559','7','','10361','Information Store [{#INSTANCE}]: Page faults per second',E'perf_counter_en["\\MSExchange Database({#INF.STORE})\\Database Page Fault Stalls/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,E'Indicates the rate of page faults that can''t be serviced because there are no pages available for allocation from the database cache. If this counter is above 0, it''s an indication that the MSExchange Database\\I/O Database Writes (Attached) Average Latency is too high.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','947396e622b24e2090a23607ee7a06a4','0','2','0'), ('32560','7','','10361','Information Store [{#INSTANCE}]: Log records stalled',E'perf_counter_en["\\MSExchange Database({#INF.STORE})\\Log Record Stalls/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the number of log records that can''t be added to the log buffers per second because the log buffers are full. The average value should be below 10 per second. Spikes (maximum values) shouldn''t be higher than 100 per second.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8c1ca3d79ef445668e8a5ba04a278e6f','0','2','0'), ('32561','7','','10361','Information Store [{#INSTANCE}]: Log threads waiting',E'perf_counter_en["\\MSExchange Database({#INF.STORE})\\Log Threads Waiting", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the number of threads waiting to complete an update of the database by writing their data to the log.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9173dba68e55434aaa324b3e38ba22bb','0','2','0'), ('32562','7','','10361','Database Counters [{#INSTANCE}]: Active database read operations per second',E'perf_counter_en["\\MSExchange Database ==> Instances({#INF.STORE}/_Total)\\I/O Database Reads (Attached)/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Shows the number of database read operations.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9ad96174c29142f6904322d08d76fe8e','0','2','0'), ('32563','7','','10361','Database Counters [{#INSTANCE}]: Active database read operations latency',E'perf_counter_en["\\MSExchange Database ==> Instances({#INF.STORE}/_Total)\\I/O Database Reads (Attached) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Shows the average length of time per database read operation. Should be less than 20 ms on average.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0df865f52f304f97aa01a706e455e153','0','2','0'), ('32564','7','','10361','Database Counters [{#INSTANCE}]: Passive database read operations latency',E'perf_counter_en["\\MSExchange Database ==> Instances({#INF.STORE}/_Total)\\I/O Database Reads (Recovery) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Shows the average length of time per passive database read operation. Should be less than 200ms on average.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8381c3c3971f4b3380cfe5d663e31416','0','2','0'), ('32565','7','','10361','Database Counters [{#INSTANCE}]: Active database write operations per second',E'perf_counter_en["\\MSExchange Database ==> Instances({#INF.STORE}/_Total)\\I/O Database Writes (Attached)/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Shows the number of database write operations per second for each attached database instance.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','defb4f7dfb6f4a97a4928bab82897845','0','2','0'), ('32566','7','','10361','Database Counters [{#INSTANCE}]: Active database write operations latency',E'perf_counter_en["\\MSExchange Database ==> Instances({#INF.STORE}/_Total)\\I/O Database Writes (Attached) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Shows the average length of time per database write operation. Should be less than 50ms on average.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9c83e27f56f94bea9e635158037a0c8b','0','2','0'), ('32567','7','','10361','Database Counters [{#INSTANCE}]: Passive database write operations latency',E'perf_counter_en["\\MSExchange Database ==> Instances({#INF.STORE}/_Total)\\I/O Database Writes (Recovery) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,E'Shows the average length of time, in ms, per passive database write operation. Should be less than the read latency for the same instance, as measured by the MSExchange Database ==> Instances({#INF.STORE}/_Total)\\I/O Database Reads (Recovery) Average Latency counter.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a53596604a4c4a49bd04bfda30064d78','0','2','0'), ('32568','7','','10361','Information Store [{#INSTANCE}]: Active mailboxes count',E'perf_counter_en["\\MSExchangeIS Store({#INSTANCE})\\Active mailboxes"]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of active mailboxes in this database.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9ef13ef1197a4ba1abba1591ae588fa8','0','2','0'), ('32569','7','','10361','Information Store [{#INSTANCE}]: Database state',E'perf_counter_en["\\MSExchangeIS Store({#INSTANCE})\\Database State"]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','','','',NULL,'188','','','0','','','','','2',NULL,'Database state. Possible values: 0: Database without any copy and dismounted. 1: Database is a primary database and mounted. 2: Database is a passive copy and the state is healthy.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0e3dbea7e5694cc48c5216d92db67f7f','0','2','0'), ('32570','7','','10361','Information Store [{#INSTANCE}]: RPC requests latency',E'perf_counter_en["\\MSExchangeIS Store({#INSTANCE})\\RPC Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'RPC Latency average is the average latency of RPC requests per database. Average is calculated over all RPCs since exrpc32 was loaded. Should be less than 50ms at all times, with spikes less than 100ms.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4a08076fdfcb4226a122474f5c2e98d9','0','2','0'), ('32571','7','','10361','Information Store [{#INSTANCE}]: RPC requests per second',E'perf_counter_en["\\MSExchangeIS Store({#INSTANCE})\\RPC Operations/sec", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Shows the number of RPC operations per second for each database instance.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c423048154634eb29f4fe56c306f5b04','0','2','0'), ('32572','7','','10361','Information Store [{#INSTANCE}]: RPC requests total',E'perf_counter_en["\\MSExchangeIS Store({#INSTANCE})\\RPC requests", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the overall RPC requests currently executing within the information store process. Should be below 70 at all times.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0f4970d43155441ab0f860e4e06328e0','0','2','0'), ('32573','7','','10361','Domain Controller [{#INSTANCE}]: Read time',E'perf_counter_en["\\MSExchange ADAccess Domain Controllers({#INSTANCE})\\LDAP Read Time", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Time that it takes to send an LDAP read request to the domain controller in question and get a response. Should ideally be below 50 ms; spikes below 100 ms are acceptable.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','577f868ff1e54113b61e8f74a084f611','0','2','0'), ('32574','7','','10361','Domain Controller [{#INSTANCE}]: Search time',E'perf_counter_en["\\MSExchange ADAccess Domain Controllers({#INSTANCE})\\LDAP Search Time", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Time that it takes to send an LDAP search request and get a response. Should ideally be below 50 ms; spikes below 100 ms are acceptable.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1c94a8c06c5a4d4894060b68fc44a093','0','2','0'), ('32575','7','','10361','Web Service [{#INSTANCE}]: Current connections',E'perf_counter_en["\\Web Service({#INSTANCE})\\Current Connections", {$MS.EXCHANGE.PERF.INTERVAL}]','{$MS.EXCHANGE.PERF.INTERVAL}','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Shows the current number of connections established to the each Web Service.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','91f7649f17bf4d7a9ded8bec70ff09e2','0','2','0'), ('32576','19','','10362','Application server status','gitlab.liveness','1m','31d','365d','0','3','','','','',NULL,'189','','','0','','','','','0',NULL,'Checks whether the application server is running. This probe is used to know if Rails Controllers are not deadlocked due to a multi-threading.','0','30d','0','',NULL,'','{$GITLAB.URL}/-/liveness{$GITLAB.HEALTH.TOKEN}','','','200','1','0','','','0','0','0','0','0','0','0','c48920e302ff4b9ab16f45b67775b440','0','2','0'), ('32577','19','','10362','Instance readiness check','gitlab.readiness','1m','31d','365d','0','3','','','','',NULL,'189','','','0','','','','','0',NULL,'The readiness probe checks whether the GitLab instance is ready to accept traffic via Rails Controllers.','0','30d','0','',NULL,'','{$GITLAB.URL}/-/readiness{$GITLAB.HEALTH.TOKEN}','','','200','1','0','','','0','0','0','0','0','0','0','794a8d7f474d490c96e714dac810140d','0','2','0'), ('32578','19','','10362','Get instance metrics','gitlab.get_metrics','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','{$GITLAB.URL}/-/metrics{$GITLAB.HEALTH.TOKEN}','','','200','1','0','','','0','0','0','0','0','0','0','2aa509b84dc14026b8ff8ed473add2d2','0','2','0'), ('32619','19','','10362','Puma metrics discovery','gitlab.puma.discovery','3h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of Puma specific metrics when Puma is used.','0','7d','0','',NULL,'','{$GITLAB.URL}/-/metrics{$GITLAB.HEALTH.TOKEN}','','','200','1','0','','','0','0','0','0','0','0','0','acd3e31daa8f497bb1ce0f91d104d928','0','2','0'), ('32620','19','','10362','Unicorn metrics discovery','gitlab.unicorn.discovery','3h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'DiscoveryUnicorn specific metrics, when Unicorn is used.','0','7d','0','',NULL,'','{$GITLAB.URL}/-/metrics{$GITLAB.HEALTH.TOKEN}','','','200','1','0','','','0','0','0','0','0','0','0','912723d1837641cf9b84996788bd6b54','0','2','0'), ('32634','19','','10363','Get DataNodes states','hadoop.datanodes.get','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','{$HADOOP.NAMENODE.HOST}:{$HADOOP.NAMENODE.PORT}/jmx?qry=Hadoop:service=NameNode,name=NameNodeInfo','','','200','1','0','','','0','0','0','0','0','0','0','d2d19ac9d1eb434c98a55cbf76c27850','0','2','0'), ('32635','19','','10363','Get NodeManagers states','hadoop.nodemanagers.get','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','{$HADOOP.RESOURCEMANAGER.HOST}:{$HADOOP.RESOURCEMANAGER.PORT}/jmx?qry=Hadoop:service=ResourceManager,name=RMNMInfo','','','200','1','0','','','0','0','0','0','0','0','0','6d7546c5d15d4e478b2e87e35d5306b0','0','2','0'), ('32636','3','','10363','NameNode: Service status','net.tcp.service["tcp","{$HADOOP.NAMENODE.HOST}","{$HADOOP.NAMENODE.PORT}"]','1m','31d','365d','0','3','','','','',NULL,'41','','','0','','','','','0',NULL,'Hadoop NameNode API port availability.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2c52d856e07e4524abf3c2ae4b47c6b6','0','2','0'), ('32637','3','','10363','ResourceManager: Service response time','net.tcp.service.perf["tcp","{$HADOOP.RESOURCEMANAGER.HOST}","{$HADOOP.RESOURCEMANAGER.PORT}"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Hadoop ResourceManager API performance.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','98b11f1156dc472fbce27ca053e01d4e','0','2','0'), ('32638','3','','10363','NameNode: Service response time','net.tcp.service.perf["tcp","{$HADOOP.NAMENODE.HOST}","{$HADOOP.NAMENODE.PORT}"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Hadoop NameNode API performance.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','66a87b21d32c436bb2d2eb23ec328f91','0','2','0'), ('32639','19','','10363','Get ResourceManager stats','hadoop.resourcemanager.get','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','{$HADOOP.RESOURCEMANAGER.HOST}:{$HADOOP.RESOURCEMANAGER.PORT}/jmx','','','200','1','0','','','0','0','0','0','0','0','0','e693cff98ec74cc198ec6b5e973f116c','0','2','0'), ('32640','3','','10363','ResourceManager: Service status','net.tcp.service["tcp","{$HADOOP.RESOURCEMANAGER.HOST}","{$HADOOP.RESOURCEMANAGER.PORT}"]','1m','31d','365d','0','3','','','','',NULL,'41','','','0','','','','','0',NULL,'Hadoop ResourceManager API port availability.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','615b75c42ebe471da798a0613667d499','0','2','0'), ('32641','19','','10363','Get NameNode stats','hadoop.namenode.get','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','{$HADOOP.NAMENODE.HOST}:{$HADOOP.NAMENODE.PORT}/jmx','','','200','1','0','','','0','0','0','0','0','0','0','687406d06ce94a8291b2e72bb2f8bec4','0','2','0'), ('32668','19','','10363','Data node discovery','hadoop.datanode.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','{$HADOOP.NAMENODE.HOST}:{$HADOOP.NAMENODE.PORT}/jmx?qry=Hadoop:service=NameNode,name=NameNodeInfo','','','200','1','0','','','0','0','0','0','0','0','0','0f05e90a6fc547d18f291ae2264db9d1','0','2','0'), ('32669','19','','10363','Node manager discovery','hadoop.nodemanager.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','{$HADOOP.RESOURCEMANAGER.HOST}:{$HADOOP.RESOURCEMANAGER.PORT}/jmx?qry=Hadoop:service=ResourceManager,name=RMNMInfo','','','200','1','0','','','0','0','0','0','0','0','0','de2d5f97843345668bc0b8c8336b9c14','0','2','0'), ('32670','19','','10363','Hadoop DataNode {#HOSTNAME}: Get stats','hadoop.datanode.get[{#HOSTNAME}]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'','{#INFOADDR}/jmx','','','200','1','0','','','0','0','0','0','0','0','0','6d2d030b3ddb41a394faede737329bbb','0','2','0'), ('32671','19','','10363','Hadoop NodeManager {#HOSTNAME}: Get stats','hadoop.nodemanager.get[{#HOSTNAME}]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'','{#NODEHTTPADDRESS}/jmx','','','200','1','0','','','0','0','0','0','0','0','0','23c89dfb26a34b77bf34fcf543f719f2','0','2','0'), ('32693','16','','10364','Leader election per second','jmx["kafka.controller:type=ControllerStats,name=LeaderElectionRateAndTimeMs","Count"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Number of leader elections per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cf096fad8b83431a968095ce8f5d3029','0','2','0'), ('32694','16','','10364','Request handler average idle percent','jmx["kafka.server:type=KafkaRequestHandlerPool,name=RequestHandlerAvgIdlePercent","OneMinuteRate"]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Indicates the percentage of time that the request handler (IO) threads are not in use.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2e7433fbf07d415ea40251a29364264c','0','2','0'), ('32695','16','','10364','Fetch-Consumer request total time, mean','jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=UpdateMetadata","Mean"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Average time for a request to update metadata.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c66e750dccd0461e82f8a3b5bd432333','0','2','0'), ('32696','16','','10364','Network processor average idle percent','jmx["kafka.network:type=SocketServer,name=NetworkProcessorAvgIdlePercent","Value"]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The average percentage of time that the network processors are idle.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','46a7230e12f8404c813e60fae1eaf91d','0','2','0'), ('32697','16','','10364','Uptime','jmx["kafka.server:type=app-info","start-time-ms"]','1m','31d','365d','0','3','','s','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The service uptime expressed in seconds.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','deca38d699f44dea90961be921d096e4','0','2','0'), ('32698','16','','10364','Version','jmx["kafka.server:type=app-info","version"]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Current version of broker.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','75bf053e436e4bb8bb2a94e86a0b194c','0','2','0'), ('32699','16','','10364','Bytes in per second','jmx["kafka.server:type=BrokerTopicMetrics,name=BytesInPerSec","Count"]','1m','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The rate at which data sent from producers is consumed by the broker.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','47dcd92e0ca64833af8d8112b7c66731','0','2','0'), ('32700','16','','10364','Bytes out per second','jmx["kafka.server:type=BrokerTopicMetrics,name=BytesOutPerSec","Count"]','1m','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The rate at which data is fetched and read from the broker by consumers.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d71ed49d3a1f4599b239105ab7435724','0','2','0'), ('32701','16','','10364','Bytes rejected per second','jmx["kafka.server:type=BrokerTopicMetrics,name=BytesRejectedPerSec","Count"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The rate at which bytes rejected per second by the broker.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','15d9fe23872541f0bb3dd1ce33598a61','0','2','0'), ('32702','16','','10364','Client fetch request failed per second','jmx["kafka.server:type=BrokerTopicMetrics,name=FailedFetchRequestsPerSec","Count"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Number of client fetch request failures per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2ce7bb5db0674cb1a9504c4d8af72a00','0','2','0'), ('32703','16','','10364','Produce requests failed per second','jmx["kafka.server:type=BrokerTopicMetrics,name=FailedProduceRequestsPerSec","Count"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Number of failed produce requests per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a26150db6e464090910b837b69e6df8f','0','2','0'), ('32704','16','','10364','Messages in per second','jmx["kafka.server:type=BrokerTopicMetrics,name=MessagesInPerSec","Count"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The rate at which individual messages are consumed by the broker.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','28e488bbe6544d688e741b2ab0397275','0','2','0'), ('32705','16','','10364','Requests in producer purgatory','jmx["kafka.server:type=DelayedOperationPurgatory,name=PurgatorySize,delayedOperation=Fetch","Value"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Number of requests waiting in producer purgatory.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a3d88b98436040e494911b94ce72de8b','0','2','0'), ('32706','16','','10364','Requests in fetch purgatory','jmx["kafka.server:type=DelayedOperationPurgatory,name=PurgatorySize,delayedOperation=Produce","Value"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Number of requests waiting in fetch purgatory.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d68c2995725745a5b1f3f4507a5fe49c','0','2','0'), ('32707','16','','10364','Replication maximum lag','jmx["kafka.server:type=ReplicaFetcherManager,name=MaxLag,clientId=Replica","Value"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The maximum lag between the time that messages are received by the leader replica and by the follower replicas.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fb83a988422c40b792e23b10a0f2ba64','0','2','0'), ('32708','16','','10364','UpdateMetadata request total time, p95','jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=UpdateMetadata","95thPercentile"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Time for update metadata requests for 95th percentile.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','230f713f85c748bd9d29d8d086fcc80a','0','2','0'), ('32709','16','','10364','ISR expands per second','jmx["kafka.server:type=ReplicaManager,name=IsrExpandsPerSec","Count"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The rate at which the number of ISRs in the broker increases.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6125c4144c42452ea20c53c5365ad970','0','2','0'), ('32710','16','','10364','ISR shrink per second','jmx["kafka.server:type=ReplicaManager,name=IsrShrinksPerSec","Count"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Rate of replicas leaving the ISR pool.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','81eb0364269b40988404bd902ba409f4','0','2','0'), ('32711','16','','10364','Leader count','jmx["kafka.server:type=ReplicaManager,name=LeaderCount","Value"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The number of replicas for which this broker is the leader.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9489608614ac4d96810362fc52901c55','0','2','0'), ('32712','16','','10364','Partition count','jmx["kafka.server:type=ReplicaManager,name=PartitionCount","Value"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The number of partitions in the broker.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1a737ce50a274c3696beade89187afd1','0','2','0'), ('32713','16','','10364','Number of reassigning partitions','jmx["kafka.server:type=ReplicaManager,name=ReassigningPartitions","Value"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The number of reassigning leader partitions on a broker.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','05fb33b225264059a2eef04a91963dbb','0','2','0'), ('32714','16','','10364','Under minimum ISR partition count','jmx["kafka.server:type=ReplicaManager,name=UnderMinIsrPartitionCount","Value"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The number of partitions under the minimum In-Sync Replica (ISR) count.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b22cee3e3aa849a1b5098e18f42b3b3d','0','2','0'), ('32715','16','','10364','Under replicated partitions','jmx["kafka.server:type=ReplicaManager,name=UnderReplicatedPartitions","Value"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The number of partitions that have not been fully replicated in the follower replicas (the number of non-reassigning replicas - the number of ISR > 0).','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f55e42503d7d4091bd4487a30bb144b9','0','2','0'), ('32716','16','','10364','Request queue size','jmx["kafka.server:type=Request","queue-size"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The size of the delay queue.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c2086b19fcf84c1f948ec80726054dcd','0','2','0'), ('32717','16','','10364','ZooKeeper connection status','jmx["kafka.server:type=SessionExpireListener,name=SessionState","Value"]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Connection status of broker''s ZooKeeper session.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e96464452c844cb7bdeaab62f7c7e5ed','0','2','0'), ('32718','16','','10364','ZooKeeper disconnect rate','jmx["kafka.server:type=SessionExpireListener,name=ZooKeeperDisconnectsPerSec","Count"]','1m','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'ZooKeeper client disconnect per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9852aa0bf3074a319b83f695a9d0deca','0','2','0'), ('32719','16','','10364','ZooKeeper session expiration rate','jmx["kafka.server:type=SessionExpireListener,name=ZooKeeperExpiresPerSec","Count"]','1m','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'ZooKeeper client session expiration per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3e612950b2c5476e9634ce11f93dfd61','0','2','0'), ('32720','16','','10364','ZooKeeper readonly rate','jmx["kafka.server:type=SessionExpireListener,name=ZooKeeperReadOnlyConnectsPerSec","Count"]','1m','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'ZooKeeper client readonly per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e9f647cf41214ef7aab480d349f48c21','0','2','0'), ('32721','16','','10364','ZooKeeper sync rate','jmx["kafka.server:type=SessionExpireListener,name=ZooKeeperSyncConnectsPerSec","Count"]','1m','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'ZooKeeper client sync per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b156305285bf4d508afd1d9c91ae34c0','0','2','0'), ('32722','16','','10364','UpdateMetadata request total time, p99','jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=UpdateMetadata","99thPercentile"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Time for update metadata requests for 99th percentile.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8e654055b20748a085178882d7b5bed9','0','2','0'), ('32723','16','','10364','Produce request total time, mean','jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=Produce","Mean"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Average time in ms to serve the Produce request.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5bcb9ecd5d77460fb25d2afa5173832b','0','2','0'), ('32724','16','','10364','Unclean leader election per second','jmx["kafka.controller:type=ControllerStats,name=UncleanLeaderElectionsPerSec","Count"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Number of “unclean” elections per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','57efca0b4b1e4d1298d7cf77d8d04c98','0','2','0'), ('32725','16','','10364','Produce response send time, p95','jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=Produce","95thPercentile"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The time taken, in milliseconds, to send the response for 95th percentile.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','410c2ecf84fa4f67a9d0b0ca69d77338','0','2','0'), ('32726','16','','10364','Controller state on broker','jmx["kafka.controller:type=KafkaController,name=ActiveControllerCount","Value"]','1m','31d','365d','0','3','','','','',NULL,'190','','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'One indicates that the broker is the controller for the cluster.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9b3ae38007db4fd5a4e0d3baf026b732','0','2','0'), ('32727','16','','10364','Offline partitions count','jmx["kafka.controller:type=KafkaController,name=OfflinePartitionsCount","Value"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Number of partitions that don''t have an active leader.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','765a10af1fa6444bbeaa7b1669e3c8b2','0','2','0'), ('32728','16','','10364','Ineligible pending replica deletes','jmx["kafka.controller:type=KafkaController,name=ReplicasIneligibleToDeleteCount","Value"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The number of ineligible pending replica deletes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6f4b742f64a04254b607fd49fd7fbfa3','0','2','0'), ('32729','16','','10364','Pending replica deletes','jmx["kafka.controller:type=KafkaController,name=ReplicasToDeleteCount","Value"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The number of pending replica deletes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','77069f977a4b4277a13ef329c4cc810f','0','2','0'), ('32730','16','','10364','Ineligible pending topic deletes','jmx["kafka.controller:type=KafkaController,name=TopicsIneligibleToDeleteCount","Value"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The number of ineligible pending topic deletes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ddfd3ce0b846434fb4dddf391b956d6f','0','2','0'), ('32731','16','','10364','Pending topic deletes','jmx["kafka.controller:type=KafkaController,name=TopicsToDeleteCount","Value"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The number of pending topic deletes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','96c5cb8b0647481e90e0878c8bbc4d4b','0','2','0'), ('32732','16','','10364','Offline log directory count','jmx["kafka.log:type=LogManager,name=OfflineLogDirectoryCount","Value"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The number of offline log directories (for example, after a hardware failure).','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c11c8666c0ba4f03b8ba15573b7a6ffd','0','2','0'), ('32733','16','','10364','Fetch-Consumer response send time, p95','jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=FetchConsumer","95thPercentile"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The time taken, in milliseconds, to send the response for 95th percentile.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4fd9235510964af99e3c174c6a18773b','0','2','0'), ('32734','16','','10364','Fetch-Consumer response send time, p99','jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=FetchConsumer","99thPercentile"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The time taken, in milliseconds, to send the response for 99th percentile.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3674bdbc6d7742399478a960c1a24647','0','2','0'), ('32735','16','','10364','Fetch-Consumer response send time, mean','jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=FetchConsumer","Mean"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Average time taken, in milliseconds, to send the response.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','04dea48528bb4f56bfcbf93576ba328f','0','2','0'), ('32736','16','','10364','Fetch-Follower response send time, p95','jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=FetchFollower","95thPercentile"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The time taken, in milliseconds, to send the response for 95th percentile.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','57af4d4b76f548e897d9e66459928b40','0','2','0'), ('32737','16','','10364','Fetch-Follower response send time, p99','jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=FetchFollower","99thPercentile"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The time taken, in milliseconds, to send the response for 99th percentile.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5222217c516a4ab9926afd9ddbe6bfdb','0','2','0'), ('32738','16','','10364','Fetch-Follower response send time, mean','jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=FetchFollower","Mean"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Average time taken, in milliseconds, to send the response.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b11586ce79e846b495ed15a112959685','0','2','0'), ('32739','16','','10364','Produce response send time, p99','jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=Produce","99thPercentile"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The time taken, in milliseconds, to send the response for 99th percentile.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e5d7139fbd5a4688bba04d5837a21d3b','0','2','0'), ('32740','16','','10364','Produce request total time, p99','jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=Produce","99thPercentile"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Time in ms to serve the Produce requests for 99th percentile.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b59938aa9192429890367ca1dc2e74b7','0','2','0'), ('32741','16','','10364','Produce response send time, mean','jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=Produce","Mean"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Average time taken, in milliseconds, to send the response.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6e51118940ed4bd192774b8fa44aeb26','0','2','0'), ('32742','16','','10364','Temporary memory size in bytes (Fetch), max','jmx["kafka.network:type=RequestMetrics,name=TemporaryMemoryBytes,request=Fetch","Max"]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The maximum of temporary memory used for converting message formats and decompressing messages.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','10cd80d9dd0e4b918138aa99dcd28b2a','0','2','0'), ('32743','16','','10364','Temporary memory size in bytes (Fetch), min','jmx["kafka.network:type=RequestMetrics,name=TemporaryMemoryBytes,request=Fetch","Mean"]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The minimum of temporary memory used for converting message formats and decompressing messages.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9034049c16424d81a22b0f0063657ed6','0','2','0'), ('32744','16','','10364','Temporary memory size in bytes (Produce), max','jmx["kafka.network:type=RequestMetrics,name=TemporaryMemoryBytes,request=Produce","Max"]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The maximum of temporary memory used for converting message formats and decompressing messages.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','57a5c2d51b4f424baf34ab963eed45a4','0','2','0'), ('32745','16','','10364','Temporary memory size in bytes (Produce), avg','jmx["kafka.network:type=RequestMetrics,name=TemporaryMemoryBytes,request=Produce","Mean"]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The amount of temporary memory used for converting message formats and decompressing messages.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f28dcdf12db44b30a82b7a1bead52521','0','2','0'), ('32746','16','','10364','Temporary memory size in bytes (Produce), min','jmx["kafka.network:type=RequestMetrics,name=TemporaryMemoryBytes,request=Produce","Min"]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'The minimum of temporary memory used for converting message formats and decompressing messages.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','eddaa3dce4be472ba2133674c845a53f','0','2','0'), ('32747','16','','10364','Fetch-Consumer request total time, p95','jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=FetchConsumer","95thPercentile"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Time in ms to serve the Fetch-Consumer request for 95th percentile.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','36b32cc516ce48859fda10b348564446','0','2','0'), ('32748','16','','10364','Fetch-Consumer request total time, p99','jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=FetchConsumer","99thPercentile"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Time in ms to serve the specified Fetch-Consumer for 99th percentile.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e08291248e4e42858303c27de441aa1b','0','2','0'), ('32749','16','','10364','Fetch-Consumer request total time, mean','jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=FetchConsumer","Mean"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Average time in ms to serve the Fetch-Consumer request.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','16c3eb799dca4ed7b167e1127406766e','0','2','0'), ('32750','16','','10364','Fetch-Follower request total time, p95','jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=FetchFollower","95thPercentile"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Time in ms to serve the Fetch-Follower request for 95th percentile.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','01704212d78343c597f92fa151f3372a','0','2','0'), ('32751','16','','10364','Fetch-Follower request total time, p99','jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=FetchFollower","99thPercentile"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Time in ms to serve the Fetch-Follower request for 99th percentile.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c7d9215ee14a4d86b5ad38dbad26c247','0','2','0'), ('32752','16','','10364','Fetch-Follower request total time, mean','jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=FetchFollower","Mean"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Average time in ms to serve the Fetch-Follower request.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','487274528ec646afb5e04f6edd6619b5','0','2','0'), ('32753','16','','10364','Produce request total time, p95','jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=Produce","95thPercentile"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Time in ms to serve the Produce requests for 95th percentile.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3680508a52524de08819abc3d81056be','0','2','0'), ('32754','16','','10364','ZooKeeper client request latency','jmx["kafka.server:type=ZooKeeperClientMetrics,name=ZooKeeperRequestLatencyMs","Count"]','1m','31d','365d','0','3','','ms','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','0',NULL,'Latency in milliseconds for ZooKeeper requests from broker.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3b6de5f72ed94b928684083fbb65b6cb','0','2','0'), ('32755','16','','10364','Topic Metrics (read)','jmx.discovery[beans,"kafka.server:type=BrokerTopicMetrics,name=BytesOutPerSec,topic=*"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','1',NULL,'','0','7d','1','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c4421eb9f9ab4bf2b6d4ba101c897ca7','0','2','0'), ('32756','16','','10364','Topic Metrics (errors)','jmx.discovery[beans,"kafka.server:type=BrokerTopicMetrics,name=BytesRejectedPerSec,topic=*"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','1',NULL,'','0','7d','1','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','82037c202489462fa9c4afbb23618315','0','2','0'), ('32757','16','','10364','Topic Metrics (write)','jmx.discovery[beans,"kafka.server:type=BrokerTopicMetrics,name=MessagesInPerSec,topic=*"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','1',NULL,'','0','7d','1','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d5ec81baadad41f29882757979443b5b','0','2','0'), ('32758','16','','10364','Kafka {#JMXTOPIC}: Bytes out per second','jmx["kafka.server:type=BrokerTopicMetrics,name=BytesOutPerSec,topic={#JMXTOPIC}","Count"]','1m','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','2',NULL,'The rate at which data is fetched and read from the broker by consumers (by topic).','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','42ad85334b524973afa2fd8f2a135e77','0','2','0'), ('32759','16','','10364','Kafka {#JMXTOPIC}: Bytes rejected per second','jmx["kafka.server:type=BrokerTopicMetrics,name=BytesRejectedPerSec,topic={#JMXTOPIC}","Count"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','2',NULL,'Rejected bytes rate by topic.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','abaf2616581a46158a13a71ffcf67634','0','2','0'), ('32760','16','','10364','Kafka {#JMXTOPIC}: Bytes in per second','jmx["kafka.server:type=BrokerTopicMetrics,name=BytesInPerSec,topic={#JMXTOPIC}","Count"]','1m','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','2',NULL,'The rate at which data sent from producers is consumed by topic.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','61bb29999ea1465c8125b518507d9e5d','0','2','0'), ('32761','16','','10364','Kafka {#JMXTOPIC}: Messages in per second','jmx["kafka.server:type=BrokerTopicMetrics,name=MessagesInPerSec,topic={#JMXTOPIC}","Count"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$KAFKA.USER}','{$KAFKA.PASSWORD}','','','2',NULL,'The rate at which individual messages are consumed by topic.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5c18b5eca61b4ed2ae1aae197b7c9958','0','2','0'), ('32762','16','','10260','Protocol handlers discovery','jmx.discovery[attributes,"Catalina:type=ProtocolHandler,port=*"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$TOMCAT.USER}','{$TOMCAT.PASSWORD}','','','1',NULL,'Discovery for ProtocolHandler','0','7d','1','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a478be537e5f48fe95310997d0df0eda','0','2','0'), ('32763','16','','10260','Global request processors discovery','jmx.discovery[beans,"Catalina:type=GlobalRequestProcessor,name=*"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$TOMCAT.USER}','{$TOMCAT.PASSWORD}','','','1',NULL,'Discovery for GlobalRequestProcessor','0','7d','1','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','77175f79fe844bb8bca66de437a3ba32','0','2','0'), ('32764','16','','10260','Contexts discovery','jmx.discovery[beans,"Catalina:type=Manager,host=*,context=*"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$TOMCAT.USER}','{$TOMCAT.PASSWORD}','','','1',NULL,'Discovery for contexts','0','7d','1','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cf1badf064714d9b9e3b7110696432f9','0','2','0'), ('32765','16','','10260','Thread pools discovery','jmx.discovery[beans,"Catalina:type=ThreadPool,name=*"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$TOMCAT.USER}','{$TOMCAT.PASSWORD}','','','1',NULL,'Discovery for ThreadPool','0','7d','1','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','05752834671f416fb2fdac1006308c3e','0','2','0'), ('32766','16','','10260','{#JMXVALUE}: Gzip compression status','jmx[{#JMXOBJ},compression]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','{$TOMCAT.USER}','{$TOMCAT.PASSWORD}','','','2',NULL,'Gzip compression status on {#JMXNAME}. Enabling gzip compression may save server bandwidth.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','830f58f8ad6640d989a70c01f7aa2ad8','0','2','0'), ('32767','16','','10260','{#JMXNAME}: Bytes received per second','jmx[{#JMXOBJ},bytesReceived]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$TOMCAT.USER}','{$TOMCAT.PASSWORD}','','','2',NULL,'Bytes received rate by processor {#JMXNAME}','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d7cb07f3f5e04792850332c416284dd9','0','2','0'), ('32768','16','','10260','{#JMXNAME}: Bytes sent per second','jmx[{#JMXOBJ},bytesSent]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$TOMCAT.USER}','{$TOMCAT.PASSWORD}','','','2',NULL,'Bytes sent rate by processor {#JMXNAME}','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','abad7332ed6b417c92f6038ce12ae000','0','2','0'), ('32769','16','','10260','{#JMXNAME}: Errors per second','jmx[{#JMXOBJ},errorCount]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$TOMCAT.USER}','{$TOMCAT.PASSWORD}','','','2',NULL,'Error rate of request processor {#JMXNAME}','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1596a335401d47d6b2bde7a5b0de7b07','0','2','0'), ('32770','16','','10260','{#JMXNAME}: Requests processing time','jmx[{#JMXOBJ},processingTime]','1m','31d','365d','0','3','','s','','',NULL,NULL,'','','0','{$TOMCAT.USER}','{$TOMCAT.PASSWORD}','','','2',NULL,'The total time to process all incoming requests of request processor {#JMXNAME}','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','985d3eeacd9d404385bfcef693add39a','0','2','0'), ('32771','16','','10260','{#JMXNAME}: Requests per second','jmx[{#JMXOBJ},requestCount]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$TOMCAT.USER}','{$TOMCAT.PASSWORD}','','','2',NULL,'Rate of requests served by request processor {#JMXNAME}','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8e0307b5063549dab118e0e374a62aad','0','2','0'), ('32772','16','','10260','{#JMXHOST}{#JMXCONTEXT}: Sessions active','jmx[{#JMXOBJ},activeSessions]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$TOMCAT.USER}','{$TOMCAT.PASSWORD}','','','2',NULL,'Active sessions of the application.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c20bb67db247471ba686d2ea371b7c73','0','2','0'), ('32773','16','','10260','{#JMXHOST}{#JMXCONTEXT}: Sessions allowed maximum','jmx[{#JMXOBJ},maxActiveSessions]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$TOMCAT.USER}','{$TOMCAT.PASSWORD}','','','2',NULL,'The maximum number of active Sessions allowed, or -1 for no limit.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bc3c2a3cff614f3eaf001463df1b2364','0','2','0'), ('32774','16','','10260','{#JMXHOST}{#JMXCONTEXT}: Sessions active maximum so far','jmx[{#JMXOBJ},maxActive]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$TOMCAT.USER}','{$TOMCAT.PASSWORD}','','','2',NULL,'Maximum number of active sessions so far.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fd8678e68cf440939af2dd8f3568a42f','0','2','0'), ('32775','16','','10260','{#JMXHOST}{#JMXCONTEXT}: Sessions rejected per second','jmx[{#JMXOBJ},rejectedSessions]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$TOMCAT.USER}','{$TOMCAT.PASSWORD}','','','2',NULL,'Rate of sessions we rejected due to maxActive being reached.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','34702e2d6b2142ec9aa43bea1059a98a','0','2','0'), ('32776','16','','10260','{#JMXHOST}{#JMXCONTEXT}: Sessions created per second','jmx[{#JMXOBJ},sessionCounter]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$TOMCAT.USER}','{$TOMCAT.PASSWORD}','','','2',NULL,'Rate of sessions created by this application per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','eb28f9bd99d440f4a50d1c24ae758029','0','2','0'), ('32777','16','','10260','{#JMXNAME}: Threads count','jmx[{#JMXOBJ},currentThreadCount]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$TOMCAT.USER}','{$TOMCAT.PASSWORD}','','','2',NULL,'Amount of threads the thread pool has right now, both busy and free.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7d7418c72ced48eca2a92e30021b611b','0','2','0'), ('32778','16','','10260','{#JMXNAME}: Threads busy','jmx[{#JMXOBJ},currentThreadsBusy]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$TOMCAT.USER}','{$TOMCAT.PASSWORD}','','','2',NULL,'Number of the requests that are being currently handled.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','35b1e99fbc44448083b5aad0ce1239a1','0','2','0'), ('32779','16','','10260','{#JMXNAME}: Threads limit','jmx[{#JMXOBJ},maxThreads]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$TOMCAT.USER}','{$TOMCAT.PASSWORD}','','','2',NULL,'Limit of the threads count. When currentThreadsBusy counter reaches the maxThreads limit, no more requests could be handled, and the application chokes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','32e316ce567c4f94aecb89d9763e4d27','0','2','0'), ('32780','19','','10365','Get leader','vault.get_leader','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','{$VAULT.API.SCHEME}://{$VAULT.HOST}:{$VAULT.API.PORT}/v1/sys/leader','','','200','1','0','','X-Vault-Token: {$VAULT.TOKEN}','0','0','0','0','0','0','0','f92c90b99edc42d9b170d775c714fa0a','0','2','0'), ('32781','19','','10365','Get health','vault.get_health','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','{$VAULT.API.SCHEME}://{$VAULT.HOST}:{$VAULT.API.PORT}/v1/sys/health','','','200,429,472,473,503,501','1','0','','X-Vault-Token: {$VAULT.TOKEN}','0','0','0','0','0','0','0','a78063c1186540fb88d3b958b14250bf','0','2','0'), ('32782','19','','10365','Get metrics','vault.get_metrics','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','{$VAULT.API.SCHEME}://{$VAULT.HOST}:{$VAULT.API.PORT}/v1/sys/metrics?format=prometheus','','','200,503,403','1','0','','X-Vault-Token: {$VAULT.TOKEN}','0','0','0','0','0','0','0','4ccc4256252f4345a264db340f4ddbf5','0','2','0'), ('32783','21','','10365','Get tokens','vault.get_tokens','15m','0','0','0','4','','','','',NULL,NULL,E'var params = JSON.parse(value); params[''url''] = params.scheme + ''://'' + params.host + '':'' + params.port + ''/v1/auth/token/lookup-accessor''; var request = new HttpRequest(), output = []; request.addHeader(''X-Vault-Token: '' + params.token); params.accessors.trim().split(/\\x20+/).forEach(function (accessor) { if (!accessor) { return; } var response, data = {}, error_msg = ''''; try { response = request.post(params.url, JSON.stringify({ accessor: accessor })); Zabbix.log(4, ''[ Vault API ] Received response with status code '' + request.getStatus() + '': '' + response); if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from Vault API. Check debug log for more information.''; } } if (request.getStatus() !== 200) { throw response.errors && response.errors[0] || JSON.stringify(response); } if (typeof response !== ''object'' || typeof response.data === ''undefined'') { throw ''Cannot lookup token from Vault API. Check debug log for more information.''; } data = response.data; } catch (error) { error_msg = error; } output.push({ ''accessor'': accessor, ''token_name'': data.display_name || ''null'', ''ttl'': data.ttl || 0, ''has_ttl'': !!data.expire_time, ''error'': error_msg.toString() }); }); return JSON.stringify(output);','','0','','','','','0',NULL,'Get information about tokens via their accessors. Accessors are defined in the macro "{$VAULT.TOKEN.ACCESSORS}".','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e8cb015d45ad4e3b9f87d3cbbae3a980','0','2','0'), ('32890','3','','10174','Cluster name','vmware.vm.cluster.name[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Cluster name of the guest VM.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','061eed2d40d5427092b50172ea0a9c41','0','2','0'), ('32891','3','','10174','Swapped memory','vmware.vm.memory.size.swapped[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'The amount of guest physical memory swapped out to the VM''s swap device by ESX.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b064f0e0a53f4f6588827100becb4335','0','2','0'), ('32892','3','','10174','Unshared storage space','vmware.vm.storage.unshared[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Total storage space, in bytes, occupied by the VM across all datastores that is not shared with any other VM.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','35aa9ee1743e4c1787c426da20f48097','0','2','0'), ('32893','3','','10174','Uncommitted storage space','vmware.vm.storage.uncommitted[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Additional storage space, in bytes, potentially used by this VM on all datastores.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8183cf2c54774d7eb544f645d5c26b8c','0','2','0'), ('32894','3','','10174','Committed storage space','vmware.vm.storage.committed[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Total storage space, in bytes, committed to this VM across all datastores.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','13173517c99e4a87aa6750392d14b255','0','2','0'), ('32895','3','','10174','Power state','vmware.vm.powerstate[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','31d','365d','0','3','','','','',NULL,'51','','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'The current power state of the VM. One of the following: - Powered off; - Powered on; - Suspended.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0943ff346c9d4cc69fc773843066c473','0','2','0'), ('32896','3','','10174','Memory size','vmware.vm.memory.size[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1h','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Total size of configured memory.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9533bc39366443fe8a3808190801441a','0','2','0'), ('32897','3','','10174','Host memory usage','vmware.vm.memory.size.usage.host[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'The amount of host physical memory allocated to the VM, accounting for the amount saved from memory sharing with other VMs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6fcbe4e95fce445aa417b9738004391f','0','2','0'), ('32898','3','','10174','Guest memory usage','vmware.vm.memory.size.usage.guest[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'The amount of guest physical memory that is being used by the VM.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e960399726a240de9ecc12eff65415ae','0','2','0'), ('32899','3','','10174','Shared memory','vmware.vm.memory.size.shared[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'The amount of guest physical memory shared through transparent page sharing.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c6a539ee57bf48f78342358c391c65ea','0','2','0'), ('32900','3','','10174','Number of virtual CPUs','vmware.vm.cpu.num[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1h','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Number of virtual CPUs assigned to the guest.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bbfb146e74144160b2e47c0f2cdc6c20','0','2','0'), ('32901','3','','10174','Private memory','vmware.vm.memory.size.private[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Amount of memory backed by host memory and not being shared.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6563409185804ed89b49dfde92edfa10','0','2','0'), ('32902','3','','10174','Compressed memory','vmware.vm.memory.size.compressed[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'The amount of memory currently in the compression cache for this VM.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9e7b9360e4d84e9397b5f0a7ab074726','0','2','0'), ('32903','3','','10174','Ballooned memory','vmware.vm.memory.size.ballooned[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'The amount of guest physical memory that is currently reclaimed through the balloon driver.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fbe7477fd85a4ee39a9226b2c6995446','0','2','0'), ('32904','3','','10174','Hypervisor name','vmware.vm.hv.name[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Hypervisor name of the guest VM.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fedec469a1d040ae971e0013102e1e7c','0','2','0'), ('32905','3','','10174','Datacenter name','vmware.vm.datacenter.name[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Datacenter name of the guest VM.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3e70b5d443b942db974b5f92a7acce19','0','2','0'), ('32906','3','','10174','CPU usage','vmware.vm.cpu.usage[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','31d','365d','0','3','','Hz','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Current upper-bound on CPU usage. The upper-bound is based on the host the VM is current running on, as well as limits configured on the VM itself or any parent resource pool. Valid while the VM is running.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ea416ff054cc4031ac6b5cf446156540','0','2','0'), ('32907','3','','10174','CPU ready','vmware.vm.cpu.ready[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','31d','365d','0','3','','ms','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Time that the VM was ready, but unable to get scheduled to run on the physical CPU during the last measurement interval (VMware vCenter/ESXi Server performance counter sampling interval - 20 seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ff0a31df94784cfbbf10deca55f76145','0','2','0'), ('32908','3','','10174','Uptime','vmware.vm.uptime[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'System uptime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4c3b010d7ea74da6b0dc1dd4e625bbb0','0','2','0'), ('32909','3','','10175','Hypervisor ping','icmpping[]','1m','31d','365d','0','3','','','','',NULL,'43','','','0','','','','','0',NULL,'Checks if the hypervisor is running and accepting ICMP pings. One of the following: - Down; - Up.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3010cb082f23478b858912f944347530','0','2','0'), ('32910','3','','10175','Vendor','vmware.hv.hw.vendor[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'The hardware vendor identification.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aec06090d16d4bdd8ed3494b448f19d8','0','2','0'), ('32911','3','','10175','Version','vmware.hv.version[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Dot-separated version string.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','222ad20887cf479b8e81a4c338078d17','0','2','0'), ('32912','3','','10175','Uptime','vmware.hv.uptime[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1m','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'System uptime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ecad96137494476293b57a0440de3f65','0','2','0'), ('32913','3','','10175','Overall status','vmware.hv.status[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1m','31d','365d','0','3','','','','',NULL,'53','','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'The overall alarm status of the host. One of the following: - Gray: Unknown; - Green: OK; - Yellow: It might have a problem; - Red: It has a problem.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0cec294521314c5482233b5b96e90c8d','0','2','0'), ('32915','3','','10175','Number of bytes transmitted','vmware.hv.network.out[{$VMWARE.URL},{$VMWARE.HV.UUID},bps]','1m','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'VMware hypervisor network output statistics (bytes per second).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b013afcba08b47f4a5b590a59f464a58','0','2','0'), ('32916','3','','10175','Number of bytes received','vmware.hv.network.in[{$VMWARE.URL},{$VMWARE.HV.UUID},bps]','1m','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'VMware hypervisor network input statistics (bytes per second).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','33f78ab6ee6c4e7585a83a60cdecab6f','0','2','0'), ('32917','3','','10175','Used memory','vmware.hv.memory.used[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Physical memory usage on the host.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','93d680d6886d446badbbe995ddd9ba9c','0','2','0'), ('32918','3','','10175','Ballooned memory','vmware.hv.memory.size.ballooned[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'The amount of guest physical memory that is currently reclaimed through the balloon driver. Sum of all guest VMs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','21020a79436a49c38caf8941f6b68da3','0','2','0'), ('32919','3','','10175','Bios UUID','vmware.hv.hw.uuid[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'The hardware BIOS identification.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6c4aab55b3e640779a25ac90b9ca2a43','0','2','0'), ('32920','3','','10175','Cluster name','vmware.hv.cluster.name[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Cluster name of the guest VM.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','af4d0877fda84753816c817ad76162f1','0','2','0'), ('32921','3','','10175','Model','vmware.hv.hw.model[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'The system model identification.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7ed7ac26da384bcda976badf24ebbec1','0','2','0'), ('32922','3','','10175','Total memory','vmware.hv.hw.memory[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1h','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'The physical memory size.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ce89c38e6e5d4338a30ee150be1b2b67','0','2','0'), ('32923','3','','10175','CPU threads','vmware.hv.hw.cpu.threads[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1h','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Number of physical CPU threads on the host.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','89cb0a4809e7454a862f398a0e9d6bed','0','2','0'), ('32924','3','','10175','CPU cores','vmware.hv.hw.cpu.num[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1h','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Number of physical CPU cores on the host. Physical CPU cores are the processors contained by a CPU package.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c99a5bf2e3904f97b3d361ca20af7883','0','2','0'), ('32925','3','','10175','CPU model','vmware.hv.hw.cpu.model[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'The CPU model.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3f0c35fcef9e4699ac5a1c51d80f8da4','0','2','0'), ('32926','3','','10175','CPU frequency','vmware.hv.hw.cpu.freq[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1h','31d','365d','0','3','','Hz','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'The speed of the CPU cores. This is an average value if there are multiple speeds. The product of CPU frequency and the number of cores is approximately equal to the sum of the MHz for all the individual cores on the host.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ad0053d57b834e6a9776c08e1c455d55','0','2','0'), ('32927','3','','10175','Full name','vmware.hv.fullname[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'The complete product name, including the version information.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5c29837f75f04d7f9a5786691b3dd991','0','2','0'), ('32928','3','','10175','Datacenter name','vmware.hv.datacenter.name[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Datacenter name of the hypervisor.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e4d27d7f9b9048d4ae6c60cbdd6c0091','0','2','0'), ('32929','3','','10175','CPU usage','vmware.hv.cpu.usage[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1m','31d','365d','0','3','','Hz','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Aggregated CPU usage across all cores on the host in Hz. This is only available if the host is connected.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1bff6fbd300d4455a787a273d957bba3','0','2','0'), ('32930','3','','10175','Number of guest VMs','vmware.hv.vm.num[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1h','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Number of guest virtual machines.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2045df572e864834bd4bd97046353f4e','0','2','0'), ('32931','3','','10174','Network device discovery','vmware.vm.net.if.discovery[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','1',NULL,'Discovery of all network devices.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','914634668bab4266bd641ee224dbc1e4','0','2','0'), ('32932','3','','10174','Disk device discovery','vmware.vm.vfs.dev.discovery[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','1',NULL,'Discovery of all disk devices.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b1543bdfb5a342d7ad694c87248fe173','0','2','0'), ('32933','3','','10174','Mounted filesystem discovery','vmware.vm.vfs.fs.discovery[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','1',NULL,'Discovery of all guest file systems.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','44ff9ef164dc4d20acf06b3368d64456','0','2','0'), ('32934','3','','10175','Datastore discovery','vmware.hv.datastore.discovery[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','1',NULL,'Discovery of VMware datastores.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fb7774df87994355baff7402d9fabcc2','0','2','0'), ('32935','3','','10174','Number of bytes received on interface [{#IFBACKINGDEVICE}]/[{#IFDESC}]','vmware.vm.net.if.in[{$VMWARE.URL},{$VMWARE.VM.UUID},{#IFNAME},bps]','1m','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware virtual machine network interface input statistics (bytes per second).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1a7452a0061b45b1b1904e3ff64cf49f','0','2','0'), ('32936','3','','10174','Number of packets received on interface [{#IFBACKINGDEVICE}]/[{#IFDESC}]','vmware.vm.net.if.in[{$VMWARE.URL},{$VMWARE.VM.UUID},{#IFNAME},pps]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware virtual machine network interface input statistics (packets per second).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','863c3aee5d9248d48adbf86832fa6c8e','0','2','0'), ('32937','3','','10174','Number of bytes transmitted on interface [{#IFBACKINGDEVICE}]/[{#IFDESC}]','vmware.vm.net.if.out[{$VMWARE.URL},{$VMWARE.VM.UUID},{#IFNAME},bps]','1m','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware virtual machine network interface output statistics (bytes per second).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0993e42664a14cd7936351c55b1d64a4','0','2','0'), ('32938','3','','10174','Number of packets transmitted on interface [{#IFBACKINGDEVICE}]/[{#IFDESC}]','vmware.vm.net.if.out[{$VMWARE.URL},{$VMWARE.VM.UUID},{#IFNAME},pps]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware virtual machine network interface output statistics (packets per second).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','144a2ed3f76e49af92462e0fea275ede','0','2','0'), ('32939','3','','10174','Average number of bytes read from the disk [{#DISKDESC}]','vmware.vm.vfs.dev.read[{$VMWARE.URL},{$VMWARE.VM.UUID},{#DISKNAME},bps]','1m','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware virtual machine disk device read statistics (bytes per second).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bd151efc8a0b41e9b64cbf21303fc659','0','2','0'), ('32940','3','','10174','Average number of reads from the disk [{#DISKDESC}]','vmware.vm.vfs.dev.read[{$VMWARE.URL},{$VMWARE.VM.UUID},{#DISKNAME},ops]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware virtual machine disk device read statistics (operations per second).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e6248013150d4f23a0774f6cc80e8df3','0','2','0'), ('32941','3','','10174','Average number of bytes written to the disk [{#DISKDESC}]','vmware.vm.vfs.dev.write[{$VMWARE.URL},{$VMWARE.VM.UUID},{#DISKNAME},bps]','1m','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware virtual machine disk device write statistics (bytes per second).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7ea68380b855460b8e51281223659661','0','2','0'), ('32942','3','','10174','Average number of writes to the disk [{#DISKDESC}]','vmware.vm.vfs.dev.write[{$VMWARE.URL},{$VMWARE.VM.UUID},{#DISKNAME},ops]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware virtual machine disk device write statistics (operations per second).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8344a1066f5c4ef49894d2d18fac2339','0','2','0'), ('32943','3','','10174','Free disk space on [{#FSNAME}]','vmware.vm.vfs.fs.size[{$VMWARE.URL},{$VMWARE.VM.UUID},{#FSNAME},free]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware virtual machine file system statistics (bytes).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','622e96310f9d4f54b4ed82f655fa153b','0','2','0'), ('32944','3','','10174','Free disk space on [{#FSNAME}] (percentage)','vmware.vm.vfs.fs.size[{$VMWARE.URL},{$VMWARE.VM.UUID},{#FSNAME},pfree]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware virtual machine file system statistics (percentage).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3103537bb1d24633a064d173b3b530f2','0','2','0'), ('32945','3','','10174','Total disk space on [{#FSNAME}]','vmware.vm.vfs.fs.size[{$VMWARE.URL},{$VMWARE.VM.UUID},{#FSNAME},total]','1h','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware virtual machine total disk space (bytes).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','08d05eac03994b56867ec302a346735c','0','2','0'), ('32946','3','','10174','Used disk space on [{#FSNAME}]','vmware.vm.vfs.fs.size[{$VMWARE.URL},{$VMWARE.VM.UUID},{#FSNAME},used]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware virtual machine used disk space (bytes).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','09bb15da42464d8295d5e94b1d42cc87','0','2','0'), ('32947','3','','10175','Average read latency of the datastore [{#DATASTORE}]','vmware.hv.datastore.read[{$VMWARE.URL},{$VMWARE.HV.UUID},{#DATASTORE.UUID},latency]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'Average amount of time for a read operation from the datastore (milliseconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','259d1ff4bde143248f7ee2f7f880cb62','0','2','0'), ('32948','3','','10175','Free space on datastore [{#DATASTORE}] (percentage)','vmware.hv.datastore.size[{$VMWARE.URL},{$VMWARE.HV.UUID},{#DATASTORE.UUID},pfree]','5m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware datastore free space (percentage from the total).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f36245398cc4460a9cb4ec741612693b','0','2','0'), ('32949','3','','10175','Total size of datastore [{#DATASTORE}]','vmware.hv.datastore.size[{$VMWARE.URL},{$VMWARE.HV.UUID},{#DATASTORE.UUID}]','5m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware datastore space in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cc83e8f5ec08483db75482706bf01aba','0','2','0'), ('32950','3','','10175','Average write latency of the datastore [{#DATASTORE}]','vmware.hv.datastore.write[{$VMWARE.URL},{$VMWARE.HV.UUID},{#DATASTORE.UUID},latency]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'Average amount of time for a write operation to the datastore (milliseconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9db980d8f5f44af5ad11a5949d80031d','0','2','0'), ('32951','3','','10366','Event log','vmware.eventlog[{$VMWARE.URL},skip]','1m','31d','0','0','2','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Collect VMware event log. See also: https://www.zabbix.com/documentation/7.0/manual/config/items/preprocessing/examples#filtering_vmware_event_log_records','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','64b8a28c1a904540930ebfec5af04872','0','2','0'), ('32952','3','','10366','Full name','vmware.fullname[{$VMWARE.URL}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'VMware service full name.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ebb8417eceb541b1b51909c745642f05','0','2','0'), ('32953','3','','10366','Version','vmware.version[{$VMWARE.URL}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'VMware service version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','edfdedd78e9c4c299a1555bd13b2f677','0','2','0'), ('32954','3','','10366','VMware cluster discovery','vmware.cluster.discovery[{$VMWARE.URL}]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','1',NULL,'Discovery of clusters.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dc0a844c06f7456b8643f9f9672e6b8e','0','2','0'), ('32955','3','','10366','VMware datastore discovery','vmware.datastore.discovery[{$VMWARE.URL}]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','1',NULL,'Discovery of VMware datastores.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3cd02594ee644dbe88bdfc4f4257ae05','0','2','0'), ('32956','3','','10366','VMware hypervisor discovery','vmware.hv.discovery[{$VMWARE.URL}]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','1',NULL,'Discovery of hypervisors.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','988bb85b325449b29780eeda15c73620','0','2','0'), ('32957','3','','10366','VMware VM FQDN discovery','vmware.vm.discovery[{$VMWARE.URL}]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','1',NULL,'Discovery of guest virtual machines.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a7e2f6830442433cbe515e8bd72ee0b8','0','2','0'), ('32958','3','','10366','Status of [{#CLUSTER.NAME}] cluster','vmware.cluster.status[{$VMWARE.URL},{#CLUSTER.NAME}]','1m','31d','365d','0','3','','','','',NULL,'54','','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware cluster status. One of the following: - Gray: Unknown; - Green: OK; - Yellow: It might have a problem; - Red: It has a problem.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','41fbb29592f9495e92d88240ce2ba7a5','0','2','0'), ('32959','3','','10366','Average read latency of the datastore [{#DATASTORE}]','vmware.datastore.read[{$VMWARE.URL},{#DATASTORE.UUID},latency]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'Amount of time for a read operation from the datastore (milliseconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0ed09f26cbad4d96bea297da4215d73b','0','2','0'), ('32960','3','','10366','Free space on datastore [{#DATASTORE}] (percentage)','vmware.datastore.size[{$VMWARE.URL},{#DATASTORE.UUID},pfree]','5m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware datastore free space (percentage from the total).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a2b1785fc773404e9ce69bcd868c5b88','0','2','0'), ('32961','3','','10366','Total size of datastore [{#DATASTORE}]','vmware.datastore.size[{$VMWARE.URL},{#DATASTORE.UUID}]','5m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware datastore space in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','78fb4b4b0eec44a99207f8354773269d','0','2','0'), ('32962','3','','10366','Average write latency of the datastore [{#DATASTORE}]','vmware.datastore.write[{$VMWARE.URL},{#DATASTORE.UUID},latency]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'Amount of time for a write operation to the datastore (milliseconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d9570c0822cc4996a7dda1ddb9426404','0','2','0'), ('32963','19','','10369','Get server metrics','zookeeper.get_metrics','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','{$ZOOKEEPER.SCHEME}://{$ZOOKEEPER.HOST}:{$ZOOKEEPER.PORT}/{$ZOOKEEPER.COMMAND_URL}/monitor','','','200','1','0','','','0','0','0','0','0','0','0','cf7e83297d6343fb87dcd7848f62ce41','0','2','0'), ('32964','19','','10369','Get connections stats','zookeeper.get_connections_stats','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get information on client connections to server. Note, depending on the number of client connections this operation may be expensive (i.e. impact server performance).','0','30d','0','',NULL,'','{$ZOOKEEPER.SCHEME}://{$ZOOKEEPER.HOST}:{$ZOOKEEPER.PORT}/{$ZOOKEEPER.COMMAND_URL}/connections','','','200','1','0','','','0','0','0','0','0','0','0','f682f5d6e1664f919872f309371e4079','0','2','0'), ('32998','19','','10369','Clients discovery','zookeeper.clients','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Get list of client connections. Note, depending on the number of client connections this operation may be expensive (i.e. impact server performance).','0','7d','0','',NULL,'','{$ZOOKEEPER.SCHEME}://{$ZOOKEEPER.HOST}:{$ZOOKEEPER.PORT}/{$ZOOKEEPER.COMMAND_URL}/connections','','','200','1','0','','','0','0','0','0','0','0','0','e0f576ea5ae44289866fb726079ddbf8','0','2','0'), ('33018','5','','10048','Utilization of availability manager internal processes, in %','zabbix[process,availability manager,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the availability manager processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5131f979c17a4346a95f8ba77e7133a4','0','2','0'), ('33020','5','','10047','Trend function cache, % of unique requests','zabbix[tcache,cache,pitems]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The effectiveness statistics of the Zabbix trend function cache. The percentage of cached items calculated from the sum of the cached items plus requests. A low percentage most likely means that the cache size can be reduced.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b14a5ba6c93f4d6c9dfd820640d34e9b','0','2','0'), ('33021','5','','10047','Trend function cache, % of misses','zabbix[tcache,cache,pmisses]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The effectiveness statistics of the Zabbix trend function cache. The percentage of cache misses.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6db1280cb0134e81af8e070ae2356e7b','0','2','0'), ('33022','5','','10047','Utilization of availability manager internal processes, in %','zabbix[process,availability manager,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the availability manager processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8677812221994919a46f6cbba16ad447','0','2','0'), ('33023','5','','10047','Utilization of history poller internal processes, in %','zabbix[process,history poller,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the history poller processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8de74bea977141469cf2d594bc907968','0','2','0'), ('33028','16','','10370','Cluster - Name','jmx["org.apache.cassandra.db:type=StorageService","ClusterName"]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','147ba5946b994324b1f6d88a8d3b6541','0','2','0'), ('33029','16','','10370','Thread pool SecondaryIndexManagement - Currently blocked task','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=SecondaryIndexManagement,name=CurrentlyBlockedTasks","Count"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked. SecondaryIndexManagement: Performs updates to secondary indexes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','18b83c6b48164e1f9b8f9ae6058da276','0','2','0'), ('33030','16','','10370','Thread pool HintsDispatcher - Pending tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=HintsDispatcher,name=PendingTasks","Value"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of queued tasks queued up on this pool. HintsDispatcher: Performs hinted handoff.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0efbb0ab0e3244428f5e5917fa73437c','0','2','0'), ('33031','16','','10370','Thread pool HintsDispatcher - Total blocked tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=HintsDispatcher,name=TotalBlockedTasks","Count"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that were blocked due to queue saturation. HintsDispatcher: Performs hinted handoff.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4eb4e405cc564c9c8a694f085b1905dd','0','2','0'), ('33032','16','','10370','Thread pool MemtableFlushWriter - Currently blocked task','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MemtableFlushWriter,name=CurrentlyBlockedTasks","Count"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked. MemtableFlushWriter: Writes memtables to disk.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7fd397d3d09a494fb0032d97c93dc462','0','2','0'), ('33033','16','','10370','Thread pool MemtableFlushWriter - Pending tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MemtableFlushWriter,name=PendingTasks","Value"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of queued tasks queued up on this pool. MemtableFlushWriter: Writes memtables to disk.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c0eaf8af68114b0eb1f16e7cb456a442','0','2','0'), ('33034','16','','10370','Thread pool MemtableFlushWriter - Total blocked tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MemtableFlushWriter,name=TotalBlockedTasks","Count"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that were blocked due to queue saturation. MemtableFlushWriter: Writes memtables to disk.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3e402261b410467cb177b3c02dd237f3','0','2','0'), ('33035','16','','10370','Thread pool MemtablePostFlush - Currently blocked task','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MemtablePostFlush,name=CurrentlyBlockedTasks","Count"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked. MemtablePostFlush: Cleans up commit log after memtable is written to disk.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','868e8d31c8424607a7f0aafd4eff46cf','0','2','0'), ('33036','16','','10370','Thread pool MemtablePostFlush - Pending tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MemtablePostFlush,name=PendingTasks","Value"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of queued tasks queued up on this pool. MemtablePostFlush: Cleans up commit log after memtable is written to disk.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9ddfd1f388ed4c3a9e81558e626f9525','0','2','0'), ('33037','16','','10370','Thread pool MemtablePostFlush - Total blocked tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MemtablePostFlush,name=TotalBlockedTasks","Count"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that were blocked due to queue saturation. MemtablePostFlush: Cleans up commit log after memtable is written to disk.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e00f5f7ac9904ea4981c44a506005d62','0','2','0'), ('33038','16','','10370','Thread pool MigrationStage - Currently blocked task','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MigrationStage,name=CurrentlyBlockedTasks","Count"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked. MigrationStage: Runs schema migrations.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','480f3d158c764cd3877e0b04189eb60c','0','2','0'), ('33039','16','','10370','Thread pool MigrationStage - Pending tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MigrationStage,name=PendingTasks","Value"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of queued tasks queued up on this pool. MigrationStage: Runs schema migrations.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f9b504b8b9f34f70a15691a16ee69e39','0','2','0'), ('33040','16','','10370','Thread pool MigrationStage - Total blocked tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MigrationStage,name=TotalBlockedTasks","Count"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that were blocked due to queue saturation. MigrationStage: Runs schema migrations.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','79bc07acfef846768a036243efd3d954','0','2','0'), ('33041','16','','10370','Thread pool MiscStage - Currently blocked task','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MiscStage,name=CurrentlyBlockedTasks","Count"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked. MiscStage: Miscellaneous tasks run here.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','94360cbf59cc4978ab64872f9d0a9100','0','2','0'), ('33042','16','','10370','Thread pool MiscStage - Pending tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MiscStage,name=PendingTasks","Value"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of queued tasks queued up on this pool. MiscStage: Miscellaneous tasks run here.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0a0ee6e0a2de4da5acfa715959dbae9f','0','2','0'), ('33043','16','','10370','Thread pool MiscStage - Total blocked tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MiscStage,name=TotalBlockedTasks","Count"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that were blocked due to queue saturation. MiscStage: Miscellaneous tasks run here.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','807494ed64b54f9a95961fa7031e7d7f','0','2','0'), ('33044','16','','10370','Thread pool SecondaryIndexManagement - Pending tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=SecondaryIndexManagement,name=PendingTasks","Value"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of queued tasks queued up on this pool. SecondaryIndexManagement: Performs updates to secondary indexes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','622728098a35433bb00b7ab1614665bc','0','2','0'), ('33045','16','','10370','Storage - Hints','jmx["org.apache.cassandra.metrics:type=Storage,name=TotalHints","Count"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of hint messages written to this node since [re]start. Includes one entry for each host to be hinted per hint.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3e0332f3770046b5b3ba4216111f3b3f','0','2','0'), ('33046','16','','10370','Thread pool SecondaryIndexManagement - Total blocked tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=SecondaryIndexManagement,name=TotalBlockedTasks","Count"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that were blocked due to queue saturation. SecondaryIndexManagement: Performs updates to secondary indexes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0dbd7303e9a64bc581ef8c6619876d2b','0','2','0'), ('33047','16','','10370','Thread pool CounterMutationStage - Currently blocked task','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=CounterMutationStage,name=CurrentlyBlockedTasks","Count"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked. CounterMutationStage: Responsible for counter writes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1ff2b0f1c6a04cfca0d40a68c5a39476','0','2','0'), ('33048','16','','10370','Thread pool CounterMutationStage - Pending tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=CounterMutationStage,name=PendingTasks","Value"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of queued tasks queued up on this pool. CounterMutationStage: Responsible for counter writes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b0cc87b96d0e4f3c8ff2023665d90379','0','2','0'), ('33049','16','','10370','Thread pool CounterMutationStage - Total blocked tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=CounterMutationStage,name=TotalBlockedTasks","Count"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that were blocked due to queue saturation. CounterMutationStage: Responsible for counter writes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ab2b8d88ecf54b028b88cd757581a419','0','2','0'), ('33050','16','','10370','Thread pool MutationStage - Currently blocked task','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=MutationStage,name=CurrentlyBlockedTasks","Count"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked. MutationStage: Responsible for writes (exclude materialized and counter writes).','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ef7d71b026ec4e948acf8d7469b21ee2','0','2','0'), ('33051','16','','10370','Thread pool.MutationStage - Pending tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=MutationStage,name=PendingTasks","Value"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of queued tasks queued up on this pool. MutationStage: Responsible for writes (exclude materialized and counter writes).','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b2eb10fe498847c88b395013e4fb516c','0','2','0'), ('33052','16','','10370','Thread pool MutationStage - Total blocked tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=MutationStage,name=TotalBlockedTasks","Count"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that were blocked due to queue saturation. MutationStage: Responsible for writes (exclude materialized and counter writes).','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c6e48ac0ece74e31803dd72310306330','0','2','0'), ('33053','16','','10370','Thread pool ReadStage - Currently blocked task','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=ReadStage,name=CurrentlyBlockedTasks","Count"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked. ReadStage: Local reads run on this thread pool.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e588e58881b74123bfa6f2d5d948da93','0','2','0'), ('33054','16','','10370','Thread pool ReadStage - Pending tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=ReadStage,name=PendingTasks","Value"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of queued tasks queued up on this pool. ReadStage: Local reads run on this thread pool.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2770bde0ee834ddebcd773e265fa0aef','0','2','0'), ('33055','16','','10370','Thread pool ReadStage - Total blocked tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=ReadStage,name=TotalBlockedTasks","Count"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that were blocked due to queue saturation. ReadStage: Local reads run on this thread pool.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9d9b20c6994c40849048cb5d0fe407ad','0','2','0'), ('33056','16','','10370','Thread pool ViewMutationStage - Currently blocked task','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=ViewMutationStage,name=CurrentlyBlockedTasks","Count"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked. ViewMutationStage: Responsible for materialized view writes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','49df0b39c6a944d5ab96a946b233c380','0','2','0'), ('33057','16','','10370','Thread pool ViewMutationStage - Pending tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=ViewMutationStage,name=PendingTasks","Value"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of queued tasks queued up on this pool. ViewMutationStage: Responsible for materialized view writes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','967065e24d2c44be96687cd829ea928c','0','2','0'), ('33058','16','','10370','Thread pool ViewMutationStage - Total blocked tasks','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=ViewMutationStage,name=TotalBlockedTasks","Count"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that were blocked due to queue saturation. ViewMutationStage: Responsible for materialized view writes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5e6719076bbd46f78d3fb9b625a0cdda','0','2','0'), ('33059','16','','10370','Cluster - Nodes down','jmx["org.apache.cassandra.net:type=FailureDetector","DownEndpointCount"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f131a5faad964307aa860e3932ba781d','0','2','0'), ('33060','16','','10370','Thread pool HintsDispatcher - Currently blocked task','jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=HintsDispatcher,name=CurrentlyBlockedTasks","Count"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked. HintsDispatcher: Performs hinted handoff.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6c9721f341904c5abb4d4a4637f6c80c','0','2','0'), ('33061','16','','10370','Storage - Used (bytes)','jmx["org.apache.cassandra.metrics:type=Storage,name=Load","Count"]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Size, in bytes, of the on disk data size this node manages.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','31fabd5575074957946328b0257568c6','0','2','0'), ('33062','16','','10370','Version','jmx["org.apache.cassandra.db:type=StorageService","ReleaseVersion"]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1bd80c1ce70045cbadf60ee06a09a989','0','2','0'), ('33063','16','','10370','KeyCache - requests per second','jmx["org.apache.cassandra.metrics:type=Cache,scope=KeyCache,name=Requests","Count"]','1m','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Rate of cache requests.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6f6980f9267b4bef93e3a37153ef2184','0','2','0'), ('33064','16','','10370','Compaction - Number of completed tasks','jmx["org.apache.cassandra.metrics:name=CompletedTasks,type=Compaction","Value"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of completed compactions since server [re]start.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b202aa02d0b74e8da321a2a19fe33880','0','2','0'), ('33065','16','','10370','Commitlog - Pending tasks','jmx["org.apache.cassandra.metrics:name=PendingTasks,type=CommitLog","Value"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of commit log messages written but yet to be fsync''d.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7176e7e8241648d1b7e81a0b4d2d329c','0','2','0'), ('33066','16','','10370','Latency - Read median','jmx["org.apache.cassandra.metrics:name=ReadLatency,type=Table","50thPercentile"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Latency read from disk in milliseconds - median.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6e4ad2b5249c465894b87006a38b9542','0','2','0'), ('33067','16','','10370','Latency - Read 75 percentile','jmx["org.apache.cassandra.metrics:name=ReadLatency,type=Table","75thPercentile"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Latency read from disk in milliseconds - p75.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a8b0499f15a74102b6ca486dee07e99b','0','2','0'), ('33068','16','','10370','Latency - Read 95 percentile','jmx["org.apache.cassandra.metrics:name=ReadLatency,type=Table","95thPercentile"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Latency read from disk in milliseconds - p95.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5e3a95a9119149889365691d932b8407','0','2','0'), ('33069','16','','10370','Commitlog - Total size','jmx["org.apache.cassandra.metrics:name=TotalCommitLogSize,type=CommitLog","Value"]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Current size, in bytes, used by all the commit log segments.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','70eebcf7274942eeae0a80911b7c9095','0','2','0'), ('33070','16','','10370','Compaction - Total compactions completed','jmx["org.apache.cassandra.metrics:name=TotalCompactionsCompleted,type=Compaction","Count"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Throughput of completed compactions since server [re]start.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','24e44d0bf8254131a032406ffad86732','0','2','0'), ('33071','16','','10370','Latency - Write median','jmx["org.apache.cassandra.metrics:name=WriteLatency,type=Table","50thPercentile"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Latency write to disk in milliseconds - median.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','31ccd8b50bcb412893e91accb853d755','0','2','0'), ('33072','16','','10370','Latency - Write 75 percentile','jmx["org.apache.cassandra.metrics:name=WriteLatency,type=Table","75thPercentile"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Latency write to disk in milliseconds - p75.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8f0aa624a54d45f5b6c8ead24694fc58','0','2','0'), ('33073','16','','10370','Latency - Write 95 percentile','jmx["org.apache.cassandra.metrics:name=WriteLatency,type=Table","95thPercentile"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Latency write to disk in milliseconds - p95.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cc084d0142a94262b585d6b4a7b06468','0','2','0'), ('33074','16','','10370','KeyCache - Capacity','jmx["org.apache.cassandra.metrics:type=Cache,scope=KeyCache,name=Capacity","Value"]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Cache capacity in bytes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','934eb483047649449bfa221e3cc610d3','0','2','0'), ('33075','16','','10370','KeyCache - Entries','jmx["org.apache.cassandra.metrics:type=Cache,scope=KeyCache,name=Entries","Value"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Total number of cache entries.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c4f8435dfef0426682781711addbf075','0','2','0'), ('33076','16','','10370','KeyCache - HitRate','jmx["org.apache.cassandra.metrics:type=Cache,scope=KeyCache,name=HitRate","Value"]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'All time cache hit rate.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b3351f07502d4cb8a16d4fa730a72a6a','0','2','0'), ('33077','16','','10370','KeyCache - Hits per second','jmx["org.apache.cassandra.metrics:type=Cache,scope=KeyCache,name=Hits","Count"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Rate of cache hits.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3980ae66ea1b415baa24078d26ebeaee','0','2','0'), ('33078','16','','10370','KeyCache - Size','jmx["org.apache.cassandra.metrics:type=Cache,scope=KeyCache,name=Size","Value"]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Total size of occupied cache, in bytes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f8fed6058d4b45a7afcaf5a057622c19','0','2','0'), ('33079','16','','10370','Storage - Errors','jmx["org.apache.cassandra.metrics:type=Storage,name=Exceptions","Count"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of internal exceptions caught. Under normal exceptions this should be zero.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b15aa6f290d14fd1bee094325c444e8b','0','2','0'), ('33080','16','','10370','Client connections - Native','jmx["org.apache.cassandra.metrics:type=Client,name=connectedNativeClients","Value"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of clients connected to this nodes native protocol server.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','574ff464fe6b43cfb1d07e4ad1383c33','0','2','0'), ('33081','16','','10370','Client connections - Trifts','jmx["org.apache.cassandra.metrics:type=Client,name=connectedThriftClients","Value"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of connected to this nodes thrift clients.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','15d5bd0e534246a7922f8dbcc2a96a21','0','2','0'), ('33082','16','','10370','Latency - Client request read median','jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Read,name=Latency","50thPercentile"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Total latency serving data to clients in milliseconds - median.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6c1cf4b7835d4c66ac1e42840199594c','0','2','0'), ('33083','16','','10370','Latency - Client request read 75 percentile','jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Read,name=Latency","75thPercentile"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Total latency serving data to clients in milliseconds - p75.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c0606810baad4e438f6d69508cf11581','0','2','0'), ('33084','16','','10370','Latency - Client request read 95 percentile','jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Read,name=Latency","95thPercentile"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Total latency serving data to clients in milliseconds - p95.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4ed583b0546c4897b9ff423e36097046','0','2','0'), ('33085','16','','10370','Client request - Read per second','jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Read,name=Latency","Count"]','1m','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'The number of client requests per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4f68953ebaca4d089a11c78e04c9170f','0','2','0'), ('33086','16','','10370','Latency - Client request write median','jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Write,name=Latency","50thPercentile"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Total latency serving write requests from clients in milliseconds - median.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','72cdc0188682483d8c1d837f2c9c475b','0','2','0'), ('33087','16','','10370','Latency - Client request write 75 percentile','jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Write,name=Latency","75thPercentile"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Total latency serving write requests from clients in milliseconds - p75.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a63545e0bf8d4c87818fe719c299b508','0','2','0'), ('33088','16','','10370','Latency - Client request write 95 percentile','jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Write,name=Latency","95thPercentile"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Total latency serving write requests from clients in milliseconds - p95.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','955f1f2615a14694bb20eedd07963ada','0','2','0'), ('33089','16','','10370','Client request - Write per second','jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Write,name=Latency","Count"]','1m','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'The number of local write requests per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d914d6cd66ad48d09197a30819a386f9','0','2','0'), ('33090','16','','10370','Client request - Write Timeouts','jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Write,name=Timeouts","Count"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of write requests timeouts encountered.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','30b3ba5b576045dabda9b3a0914a1dc6','0','2','0'), ('33091','16','','10370','Compaction - Pending tasks','jmx["org.apache.cassandra.metrics:type=Compaction,name=PendingTasks","Value"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Estimated number of compactions remaining to perform.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e55942a9ef3c41e8993e8c8d849ff026','0','2','0'), ('33092','16','','10370','Dropped messages - Write (Mutation)','jmx["org.apache.cassandra.metrics:type=DroppedMessage,scope=MUTATION,name=Dropped","Count"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of dropped regular writes messages.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f4686c81fe1b42c2bbe049ec421b4533','0','2','0'), ('33093','16','','10370','Dropped messages - Read','jmx["org.apache.cassandra.metrics:type=DroppedMessage,scope=READ,name=Dropped","Count"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'Number of dropped regular reads messages.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2001c9fa67bc4ec4b693d289edc38cfa','0','2','0'), ('33094','16','','10370','Cluster - Nodes up','jmx["org.apache.cassandra.net:type=FailureDetector","UpEndpointCount"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','0',NULL,'','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fb35aef03e254d98a3d29e8180a1a5a5','0','2','0'), ('33095','16','','10370','Tables','jmx.discovery[beans,"org.apache.cassandra.metrics:type=Table,keyspace=*,scope=*,name=ReadLatency"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','1',NULL,'Info about keyspaces and tables','0','7d','1','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','504e40d04a024249bfd4ac67891f8a21','0','2','0'), ('33096','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Bloom filter false ratio','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=BloomFilterFalseRatio","Value"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The ratio of Bloom filter false positives to total checks.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','22c24ee8cfd34623b137c6cad5a2299d','0','2','0'), ('33097','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Row cache hits','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=RowCacheHit","Count"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The number of row cache hits.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a73d2b8f38184698a3ab7a4bb3742b4a','0','2','0'), ('33098','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Write latency 95 percentile','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=WriteLatency","95thPercentile"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'Latency write to disk in milliseconds.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8d79071ab7ad49c483efbb7503a4b308','0','2','0'), ('33099','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Write latency 75 percentile','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=WriteLatency","75thPercentile"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'Latency write to disk in milliseconds.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','141b38b299e14068abc0c175ae4023e6','0','2','0'), ('33100','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Waiting on free memtable space95 percentile','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=WaitingOnFreeMemtableSpace","95thPercentile"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The time spent waiting for free memtable space either on- or off-heap - p95.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','af19509867e54f19a64a4b66d054e0cf','0','2','0'), ('33101','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Waiting on free memtable space 75 percentile','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=WaitingOnFreeMemtableSpace","75thPercentile"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The time spent waiting for free memtable space either on- or off-heap - p75.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b599e354a5ee417cb056dea424a5792d','0','2','0'), ('33102','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Disk space used','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=TotalDiskSpaceUsed","Count"]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'Disk space used.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a20ace3047bd4a238644dbc55d2f8fed','0','2','0'), ('33103','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Tombstone scanned 95 percentile','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=TombstoneScannedHistogram","95thPercentile"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'Number of tombstones scanned per read - p95.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','70fedfc2310e4eb19195da72c9ada63d','0','2','0'), ('33104','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Tombstone scanned 75 percentile','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=TombstoneScannedHistogram","75thPercentile"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'Number of tombstones scanned per read - p75.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','592bde2f9eb24d7e80b45f3db965b2e0','0','2','0'), ('33105','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: SS Tables per read 95 percentile','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=SSTablesPerReadHistogram","95thPercentile"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The number of SSTable data files accessed per read - p95.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','187487b9d35444da989f9e0e3814798a','0','2','0'), ('33106','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: SS Tables per read 75 percentile','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=SSTablesPerReadHistogram","75thPercentile"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The number of SSTable data files accessed per read - p75.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','53e4852850a74163ad797969d3366eb0','0','2','0'), ('33107','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Snapshots size','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=SnapshotsSize","Value"]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The disk space truly used by snapshots.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','529e7683300b4fe9bb46e3f9ed8a9552','0','2','0'), ('33108','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Row cache misses','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=RowCacheMiss","Count"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The number of table row cache misses.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','32df58c8fa3a4ad3ba2e70fc056895ad','0','2','0'), ('33109','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Out of row cache hits','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=RowCacheHitOutOfRange","Count"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The number of row cache hits that do not satisfy the query filter and went to disk.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','213ecd18728a40ffbdbeac07daf0e26f','0','2','0'), ('33110','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Read per second','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=ReadLatency","Count"]','1m','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The number of client requests per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fdec15a1f86b4943bbd72fb992dfce90','0','2','0'), ('33111','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Bytes flushed','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=BytesFlushed","Count"]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The amount of data that was flushed since (re)start.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','417a27c1779a4d08b5673320b1542ad8','0','2','0'), ('33112','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Read latency 95 percentile','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=ReadLatency","95thPercentile"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'Latency read from disk in milliseconds.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','38d31a8a16f04c39a64ee36940ae7eb8','0','2','0'), ('33113','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Read latency 75 percentile','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=ReadLatency","75thPercentile"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'Latency read from disk in milliseconds.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1d240e1fe4b245b0b1b2b30d42e5077e','0','2','0'), ('33114','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Pending flushes','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=PendingFlushes","Count"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The number of pending flushes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7e287e5459644536b9420263b4096dd1','0','2','0'), ('33115','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Pending compactions','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=PendingCompactions","Value"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The number of pending compactions.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1f44ed6c453d44fc811ae310701df4bf','0','2','0'), ('33116','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Mean partition size','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=MeanPartitionSize","Value"]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The average size of compacted partition.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bdf111fbca884f49a6cda263b8b07feb','0','2','0'), ('33117','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Max partition size','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=MaxPartitionSize","Value"]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The size of the largest compacted partition.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c447d219390a48f2bbbe0d19211472c8','0','2','0'), ('33118','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Live SS Table','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=LiveSSTableCount","Value"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'Number of "live" (in use) SSTables.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bf733ba7ab2045d38a88c6f0650ba1f2','0','2','0'), ('33119','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Live disk space used','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=LiveDiskSpaceUsed","Count"]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The disk space used by "live" SSTables (only counts in use files).','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b69ac0bb285a4e8fa82a98f4de2645d2','0','2','0'), ('33120','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: KeyCache hit rate','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=KeyCacheHitRate","Value"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The key cache hit rate.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b43134f2d2a043f2a61919467619efe2','0','2','0'), ('33121','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Compression ratio','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=CompressionRatio","Value"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The compression ratio for all SSTables.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9721c8cd9d0f415d9d5ddfeb417cee01','0','2','0'), ('33122','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Compaction bytes written','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=CompactionBytesWritten","Count"]','1m','31d','365d','0','0','','B','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The amount of data that was compacted since (re)start.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','71b3b14f8ce7414786fa0bcd471e8842','0','2','0'), ('33123','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Col update time delta 95 percentile','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=ColUpdateTimeDeltaHistogram","95thPercentile"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The column update time delta - p95.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','685e1bbe10044d9d9ae2b02357ba2934','0','2','0'), ('33124','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Col update time delta75 percentile','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=ColUpdateTimeDeltaHistogram","75thPercentile"]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The column update time delta - p75.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b6623ca2ba0c4dd9ad2be5fa263896f5','0','2','0'), ('33125','16','','10370','{#JMXKEYSPACE}.{#JMXSCOPE}: Write per second','jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=WriteLatency","Count"]','1m','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','{$CASSANDRA.USER}','{$CASSANDRA.PASSWORD}','','','2',NULL,'The number of local write requests per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c1a9748ab9824626b9a59c323aff9a3d','0','2','0'), ('33126','15','','10316','Calculated value of innodb_log_file_size','mysql.innodb_log_file_size','1m','31d','365d','0','0','','','','',NULL,NULL,'(last(//mysql.innodb_os_log_written) - last(//mysql.innodb_os_log_written,#1:now-1h)) / {$MYSQL.INNODB_LOG_FILES}','','0','','','','','0',NULL,'`Innodb_log_file_size` is calculated as: (`innodb_os_log_written`-`innodb_os_log_written`(time shift -1h))/`{$MYSQL.INNODB_LOG_FILES}`. `Innodb_log_file_size` is the size in bytes of the each InnoDB redo log file in the log group. The combined size can be no more than 512 GB. Larger values mean less disk I/O due to less flushing checkpoint activity, but also slower recovery from a crash.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e5413d85449e4baea683c6365808cc17','0','2','0'), ('33140','15','','10320','Calculated value of innodb_log_file_size','mysql.innodb_log_file_size','1m','31d','365d','0','0','','','','',NULL,NULL,'(last(//mysql.innodb_os_log_written) - last(//mysql.innodb_os_log_written,#1:now-1h)) / {$MYSQL.INNODB_LOG_FILES}','','0','','','','','0',NULL,'`Innodb_log_file_size` is calculated as: (`innodb_os_log_written`-`innodb_os_log_written`(time shift -1h))/`{$MYSQL.INNODB_LOG_FILES}`. `Innodb_log_file_size` is the size in bytes of the each InnoDB redo log file in the log group. The combined size can be no more than 512 GB. Larger values mean less disk I/O due to less flushing checkpoint activity, but also slower recovery from a crash.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e35cf67b6d2f44ffae908296faccfa50','0','2','0'), ('33154','15','','10317','Calculated value of innodb_log_file_size','mysql.innodb_log_file_size','1m','31d','365d','0','0','','','','',NULL,NULL,'(last(//mysql.innodb_os_log_written) - last(//mysql.innodb_os_log_written,#1:now-1h)) / {$MYSQL.INNODB_LOG_FILES}','','0','','','','','0',NULL,'`Innodb_log_file_size` is calculated as: (`innodb_os_log_written`-`innodb_os_log_written`(time shift -1h))/`{$MYSQL.INNODB_LOG_FILES}`. `Innodb_log_file_size` is the size in bytes of the each InnoDB redo log file in the log group. The combined size can be no more than 512 GB. Larger values mean less disk I/O due to less flushing checkpoint activity, but also slower recovery from a crash.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4680fd31a2514e3f827b0060a6d5bfc4','0','2','0'), ('33172','0','','10329','Custom queries','pgsql.custom.query["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}",""]','1m','1h','0','1','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Execute custom queries from file *.sql (check for option Plugins.Postgres.CustomQueriesPath at agent configuration).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1cab825fac8a49ba96dfbf7a696be729','0','2','0'), ('33173','15','','10329','Cache hit ratio, %','pgsql.cache.hit','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//pgsql.dbstat.sum.blks_hit.rate) * 100 / (last(//pgsql.dbstat.sum.blks_hit.rate) + last(//pgsql.dbstat.sum.blks_read.rate))','','0','','','','','0',NULL,'Cache hit ratio.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b98d2328694f44598f2177b3f93d4b90','0','2','0'), ('33174','0','','10329','Age of oldest xid','pgsql.oldest.xid["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Age of oldest xid.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0377fe6f2f8d4539b649c636ab012415','0','2','0'), ('33175','0','','10329','Get replication','pgsql.replication.process["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect metrics from the pg_stat_replication, which contains information about the WAL sender process, showing statistics about replication to that sender''s connected standby server.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4120befb754d47e9a931f868c28badb9','0','2','0'), ('33177','0','','10329','Replication discovery','pgsql.replication.process.discovery["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','15m','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers replication lag metrics.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e94f9017c06644a2bbcb48697381556d','0','2','0'), ('33181','20','discovery[{#SENSOR_TYPE},1.3.6.1.2.1.99.1.1.1.1,{#SENSOR_INFO},1.3.6.1.2.1.47.1.1.1.1.2,{#SENSOR_PRECISION},1.3.6.1.2.1.99.1.1.1.3,{#THRESHOLD_LO_WARN},1.3.6.1.4.1.30065.3.12.1.1.1.1,{#THRESHOLD_LO_CRIT},1.3.6.1.4.1.30065.3.12.1.1.1.2,{#THRESHOLD_HI_WARN},1.3.6.1.4.1.30065.3.12.1.1.1.3,{#THRESHOLD_HI_CRIT},1.3.6.1.4.1.30065.3.12.1.1.1.4]','10254','Get sensors','sensors.get','1h','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Gets sensors with type, description, and thresholds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8954dfa9dc4445ad987f764e35c7db6e','0','2','0'), ('33183','20','get[1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX}]','10254','{#SENSOR_INFO}: Voltage','sensor.voltage.value[entPhySensorValue.{#SNMPINDEX}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-SENSORS-MIB The most recent measurement obtained by the agent for this sensor. To correctly interpret the value of this object, the associated entPhySensorType, entPhySensorScale, and entPhySensorPrecision objects must also be examined.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7f66af7d12864f2cbaa8a106979ec427','0','2','0'), ('33184','20','get[1.3.6.1.4.1.33333.5.64.0]','10371','Array: Sweep Pmax','array.sweep_pmax[arrayMaxPowerSweep.0]','1m','31d','365d','0','0','','W','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT Array Max. Power (sweep) Description:Array Max. Power (last sweep) Scaling Factor:1.0 Units:W Range:[0.0, 500] Modbus address:0x003E','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a517a7aafbab426eb6ced8d5f57c1fa4','0','2','0'), ('33185','20','get[1.3.6.1.4.1.33333.5.53.0]','10371','Load: State','load.state[loadState.0]','1m','31d','365d','0','0','','','','',NULL,'193','','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT Load State Description:Load State Modbus address:0x002E 0: Start 1: Normal 2: LvdWarning 3: Lvd 4: Fault 5: Disconnect 6: NormalOff 7: Override 8: NotUsed','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ae927b5cba5b43f5a2136fd3ee71b63d','0','2','0'), ('33186','20','get[1.3.6.1.4.1.33333.5.39.0]','10371','Temperature: Battery','temp.battery[batteryTemperature.0]','1m','31d','365d','0','0','','C','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT Battery Temperature Description:Battery Temperature Scaling Factor:1.0 Units:deg C Range:[-128, 127] Modbus address:0x001B','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1a8e79f49e86429abc80dd29598299ee','0','2','0'), ('33187','20','get[1.3.6.1.4.1.33333.5.40.0]','10371','Temperature: Ambient','temp.ambient[ambientTemperature.0]','1m','31d','365d','0','0','','C','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT Ambient Temperature Description:Ambient Temperature Scaling Factor:1.0 Units:deg C Range:[-128, 127] Modbus address:0x001C','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9a87cdcf65184059be334e986bcf801d','0','2','0'), ('33188','20','get[1.3.6.1.4.1.33333.5.48.0]','10371','Battery: Target Voltage','target.voltage[targetVoltage.0]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT Target Voltage Description:Target Regulation Voltage Scaling Factor:1.0 Units:V Range:[0.0, 80.0] Modbus address:0x0024','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','20ce95acdff6486684461f10579a73b4','0','2','0'), ('33189','20','get[1.3.6.1.2.1.1.3.0]','10371','Status: Uptime (network)','status.net.uptime','1m','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','526ee94df484462a9264e57d92954e64','0','2','0'), ('33190','20','get[1.3.6.1.4.1.33333.5.54.0]','10371','Status: Load Faults','status.load_faults[loadFaults.0]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT Description:Array Faults Modbus address:0x0022','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fb4d2147a8224b599ad908eca1b019e4','0','2','0'), ('33191','20','get[1.3.6.1.4.1.33333.5.46.0]','10371','Status: Array Faults','status.array_faults[arrayFaults.0]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT Description:Array Faults Modbus address:0x0022','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8fbb5c650fa040c892a1d10a17fbbf14','0','2','0'), ('33192','20','get[1.3.6.1.4.1.33333.5.59.0]','10371','Status: Alarms','status.alarms[alarms.0]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT Description:Alarms Modbus addresses:H=0x0038 L=0x0039','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d44cb5d7db31402dae79275a9148817d','0','2','0'), ('33193','20','get[1.3.6.1.4.1.33333.5.32.0]','10371','Load: Voltage','load.voltage[loadVoltage.0]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT Load Voltage Description:Load Voltage Scaling Factor:1.0 Units:V Range:[0, 80] Modbus address:0x0014','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','47894752dd1d41f1aa882387acf6dc3a','0','2','0'), ('33194','20','get[1.3.6.1.4.1.33333.5.34.0]','10371','Load: Current','load.current[loadCurrent.0]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT Load Current Description:Load Current Scaling Factor:1.0 Units:A Range:[0, 60] Modbus address:0x0016','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','29a7d76472fb4025bc78fbeab273e955','0','2','0'), ('33195','20','get[1.3.6.1.4.1.33333.5.63.0]','10371','Array: Sweep Vmp','array.sweep_vmp[arrayVmp.0]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT Array Vmp Description:Array Max. Power Point Voltage Scaling Factor:1.0 Units:V Range:[0.0, 5000.0] Modbus address:0x003D','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7714c76013e341f8b6753cc5a50a960f','0','2','0'), ('33196','20','get[1.3.6.1.4.1.33333.5.56.0]','10371','Counter: Load Amp-hours','counter.load_amp_hours[ahLoadResettable.0]','1m','31d','365d','0','0','','Ah','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT Description:Ah Load (Resettable) Scaling Factor:0.1 Units:Ah Range:[0.0, 4294967294] Modbus addresses:H=0x0032 L=0x0033','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c72ef851c2d240c9835c1703cec49fd6','0','2','0'), ('33197','20','get[1.3.6.1.4.1.33333.5.51.0]','10371','Counter: Charge KW-hours','counter.charge_kw_hours[kwhChargeResettable.0]','1m','31d','365d','0','0','','!kWh','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT kWh Charge (Resettable) Description:Kilowatt Hours Charge (Resettable) Scaling Factor:1.0 Units:kWh Range:[0.0, 65535] Modbus address:0x002A','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4a53a2211a1249d59369ad65762ffe47','0','2','0'), ('33198','20','get[1.3.6.1.4.1.33333.5.49.0]','10371','Counter: Charge Amp-hours','counter.charge_amp_hours[ahChargeResettable.0]','1m','31d','365d','0','0','','Ah','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT Ah Charge (Resettable) Description:Ah Charge (Resettable) Scaling Factor:0.1 Units:Ah Range:[0.0, 4294967294] Modbus addresses:H=0x0026 L=0x0027','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','009eb72ff6674da49d1dd85a6f9459cf','0','2','0'), ('33199','20','get[1.3.6.1.4.1.33333.5.45.0]','10371','Battery: Charge State','charge.state[chargeState.0]','1m','31d','365d','0','0','','','','',NULL,'192','','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT Charge State Description:Control State Modbus address:0x0021 0: Start 1: NightCheck 2: Disconnect 3: Night 4: Fault 5: BulkMppt 6: Absorption 7: Float 8: Equalize 9: Slave 10: Fixed','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1b1b61995c0d4d89a7f9ad4e14c3541f','0','2','0'), ('33200','20','get[1.3.6.1.4.1.33333.5.33.0]','10371','Battery: Charge Current','charge.current[chargeCurrent.0]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT Charge Current Description:Charge Current Scaling Factor:1.0 Units:A Range:[0, 40] Modbus address:0x0010','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ed1d54fce0904b7c9d0895a094f55108','0','2','0'), ('33201','20','get[1.3.6.1.4.1.33333.5.30.0]','10371','Battery: Battery Voltage discovery','battery.voltage.discovery[batteryTerminalVoltage.0]','15m','0','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fe5c3b724e894573acdaf522a2213adb','0','2','0'), ('33202','20','get[1.3.6.1.4.1.33333.5.31.0]','10371','Array: Voltage','array.voltage[arrayVoltage.0]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT Array Voltage Description:Array Voltage Scaling Factor:1.0 Units:V Range:[0, 80] Modbus address:0x0013','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','41a1118e1be3417daa79faace733d861','0','2','0'), ('33203','20','get[1.3.6.1.4.1.33333.5.65.0]','10371','Array: Sweep Voc','array.sweep_voc[arrayVoc.0]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT Array Voc Description:Array Open Circuit Voltage Scaling Factor:1.0 Units:V Range:[0.0, 80.0] Modbus address:0x003F','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','379ab969ad784968a1090ff98f5801ff','0','2','0'), ('33204','20','get[1.3.6.1.4.1.33333.5.38.0]','10371','Temperature: Heatsink','temp.heatsink[heatsinkTemperature.0]','1m','31d','365d','0','0','','C','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-MPPT Heatsink Temperature Description:Heatsink Temperature Scaling Factor:1.0 Units:deg C Range:[-128, 127] Modbus address:0x001A','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7d0cf28c0d334154971738df11775d1f','0','2','0'), ('33206','20','get[1.3.6.1.4.1.33333.5.30.0]','10371','Battery: Voltage{#SINGLETON}','battery.voltage[batteryTerminalVoltage.0{#SINGLETON}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PROSTAR-MPPT Battery Terminal Voltage Description:Battery Terminal Voltage Scaling Factor:1.0 Units:V Range:[0.0, 80.0] Modbus address:0x0012','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c02c73a349ec4a6b8557e142c4866148','0','2','0'), ('33207','20','get[1.3.6.1.4.1.33333.6.31.0]','10372','Array: Voltage','array.voltage[arrayVoltage.0]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-PWM Description:Array Voltage Scaling Factor:1.0 Units:V Range:[0, 80] Modbus address:0x0013','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','953fb8b3c23f420bb6132874ce3e33e2','0','2','0'), ('33208','20','get[1.3.6.1.4.1.33333.6.59.0]','10372','Status: Alarms','status.alarms[alarms.0]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-PWM Description:Alarms Modbus addresses:H=0x0038 L=0x0039','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7c1c1e03425c4b4bb176cf45458b916a','0','2','0'), ('33209','20','get[1.3.6.1.4.1.33333.6.39.0]','10372','Temperature: Battery','temp.battery[batteryTemperature.0]','1m','31d','365d','0','0','','C','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-PWM Description:Battery Temperature Scaling Factor:1.0 Units:deg C Range:[-128, 127] Modbus address:0x001B','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','39763f7fccd94aefb720a34871c0962b','0','2','0'), ('33210','20','get[1.3.6.1.4.1.33333.6.40.0]','10372','Temperature: Ambient','temp.ambient[ambientTemperature.0]','1m','31d','365d','0','0','','C','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-PWM Description:Ambient Temperature Scaling Factor:1.0 Units:deg C Range:[-128, 127] Modbus address:0x001C','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','13d3479a7b5940b5a53d5f13bea9e2d1','0','2','0'), ('33211','20','get[1.3.6.1.4.1.33333.6.48.0]','10372','Battery: Target Voltage','target.voltage[targetVoltage.0]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-PWM Description:Target Regulation Voltage Scaling Factor:1.0 Units:V Range:[0.0, 80.0] Modbus address:0x0024','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f4b7bfb000754a17b4719863d3755519','0','2','0'), ('33212','20','get[1.3.6.1.2.1.1.3.0]','10372','Status: Uptime (network)','status.net.uptime','1m','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','42f6a75d923d4262b37d85c4f7d1d322','0','2','0'), ('33213','20','get[1.3.6.1.4.1.33333.6.54.0]','10372','Status: Load Faults','status.load_faults[loadFaults.0]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-PWM Description:Load Faults Modbus address:0x002F','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1cd47d04af104cb9ab1cd7dc745a6aea','0','2','0'), ('33214','20','get[1.3.6.1.4.1.33333.6.46.0]','10372','Status: Array Faults','status.array_faults[arrayFaults.0]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-PWM Description:Array Faults Modbus address:0x0022','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2517d96e51c14372a0336c9a6ed5d078','0','2','0'), ('33215','20','get[1.3.6.1.4.1.33333.6.32.0]','10372','Load: Voltage','load.voltage[loadVoltage.0]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-PWM Description:Load Voltage Scaling Factor:1.0 Units:V Range:[0, 80] Modbus address:0x0014','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cccc0976a62b47b1a558d521704c125d','0','2','0'), ('33216','20','get[1.3.6.1.4.1.33333.6.30.0]','10372','Battery: Battery Voltage discovery','battery.voltage.discovery[batteryTerminalVoltage.0]','15m','0','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-PWM','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a80ad3ace9b14446bc5fd5d6aaa5af87','0','2','0'), ('33217','20','get[1.3.6.1.4.1.33333.6.53.0]','10372','Load: State','load.state[loadState.0]','1m','31d','365d','0','0','','','','',NULL,'195','','','0','','','','','0',NULL,'MIB: PROSTAR-PWM Description:Load State Modbus address:0x002E 0: Start 1: Normal 2: LvdWarning 3: Lvd 4: Fault 5: Disconnect 6: NormalOff 7: Override 8: NotUsed','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','14b3ca3869374f54a467e5e9017f918a','0','2','0'), ('33218','20','get[1.3.6.1.4.1.33333.6.34.0]','10372','Load: Current','load.current[loadCurrent.0]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-PWM Description:Load Current Scaling Factor:1.0 Units:A Range:[0, 60] Modbus address:0x0016','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dcade8607cf142a2b88333f9880448fc','0','2','0'), ('33219','20','get[1.3.6.1.4.1.33333.6.56.0]','10372','Counter: Load Amp-hours','counter.load_amp_hours[ahLoadResettable.0]','1m','31d','365d','0','0','','Ah','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-PWM Description:Ah Load (Resettable) Scaling Factor:0.1 Units:Ah Range:[0.0, 4294967294] Modbus addresses:H=0x0032 L=0x0033','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','104a7db1c27d40b3bbee506f7f922393','0','2','0'), ('33220','20','get[1.3.6.1.4.1.33333.6.51.0]','10372','Counter: Charge KW-hours','counter.charge_kw_hours[kwhChargeResettable.0]','1m','31d','365d','0','0','','!kWh','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-PWM Description:Kilowatt Hours Charge (Resettable) Scaling Factor:1.0 Units:kWh Range:[0.0, 65535] Modbus address:0x002A','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0e7124df3f2b4298b1a13576d0b2d5e7','0','2','0'), ('33221','20','get[1.3.6.1.4.1.33333.6.49.0]','10372','Counter: Charge Amp-hours','counter.charge_amp_hours[ahChargeResettable.0]','1m','31d','365d','0','0','','Ah','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-PWM Description:Ah Charge (Resettable) Scaling Factor:0.1 Units:Ah Range:[0.0, 4294967294] Modbus addresses:H=0x0026 L=0x0027','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8acd2e7944694a828cf9b739b75513d9','0','2','0'), ('33222','20','get[1.3.6.1.4.1.33333.6.45.0]','10372','Battery: Charge State','charge.state[chargeState.0]','1m','31d','365d','0','0','','','','',NULL,'194','','','0','','','','','0',NULL,'MIB: PROSTAR-PWM Description:Control State Modbus address:0x0021 0: Start 1: NightCheck 2: Disconnect 3: Night 4: Fault 5: Bulk 6: Pwm 7: Float 8: Equalize','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a7ae2d3b911e4bb5a7eeb770470245a5','0','2','0'), ('33223','20','get[1.3.6.1.4.1.33333.6.33.0]','10372','Battery: Charge Current','charge.current[chargeCurrent.0]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-PWM Description:Charge Current Scaling Factor:1.0 Units:A Range:[0, 40] Modbus address:0x0011','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','148008b117c94155ba81600e3050ab25','0','2','0'), ('33224','20','get[1.3.6.1.4.1.33333.6.38.0]','10372','Temperature: Heatsink','temp.heatsink[heatsinkTemperature.0]','1m','31d','365d','0','0','','C','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PROSTAR-PWM Description:Heatsink Temperature Scaling Factor:1.0 Units:deg C Range:[-128, 127] Modbus address:0x001A','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1d13bd3ea24a4fcab3cd5b7586e6033a','0','2','0'), ('33226','20','get[1.3.6.1.4.1.33333.6.30.0]','10372','Battery: Voltage{#SINGLETON}','battery.voltage[batteryTerminalVoltage.0{#SINGLETON}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PROSTAR-PWM Description:Control State Modbus address:0x0021','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6e4ed5ae449c48eeb328d30b76d083a2','0','2','0'), ('33227','20','get[1.3.6.1.4.1.33333.3.57.0]','10373','Array: Sweep Pmax','array.sweep_pmax[arrayMaxPowerSweep.0]','1m','31d','365d','0','0','','W','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT Description:Array Open Circuit Voltage Scaling Factor:0.0030517578125 Units:V Range:[0.0, 80.0] Modbus address:0x002A','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9836b1fc81b84a44b2a708291bd5bf1a','0','2','0'), ('33228','20','get[1.3.6.1.4.1.33333.3.46.0]','10373','Load: State','load.state[loadState.0]','1m','31d','365d','0','0','','','','',NULL,'197','','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT Description:Load State Modbus address:0x001A 0: Start 1: Normal 2: LvdWarning 3: Lvd 4: Fault 5: Disconnect 6: NormalOff 7: Override 8: NotUsed','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c5dfef2deee445ec88e2d63dbfbbaf68','0','2','0'), ('33229','20','get[1.3.6.1.4.1.33333.3.36.0]','10373','Temperature: Battery','temp.battery[batteryTemperature.0]','1m','31d','365d','0','0','','C','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT Description:Heatsink Temperature Scaling Factor:1.0 Units:deg C Range:[-128, 127] Modbus address:0x000D','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','157faa85ae244950b4a114b95bad6d50','0','2','0'), ('33230','20','get[1.3.6.1.4.1.33333.3.37.0]','10373','Temperature: Ambient','temp.ambient[ambientTemperature.0]','1m','31d','365d','0','0','','C','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT Description:Ambient Temperature Scaling Factor:1.0 Units:deg C Range:[-128, 127] Modbus address:0x000F','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','430cf6fcb9b74943a8ca7f1d9d06fa56','0','2','0'), ('33231','20','get[1.3.6.1.4.1.33333.3.42.0]','10373','Battery: Target Voltage','target.voltage[targetVoltage.0]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT Description:Target Regulation Voltage Scaling Factor:0.0030517578125 Units:V Range:[0.0, 80.0] Modbus address:0x0014','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','52afa576b83b49e69ec8d379fbc42965','0','2','0'), ('33232','20','get[1.3.6.1.2.1.1.3.0]','10373','Status: Uptime (network)','status.net.uptime','1m','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','63512390f2a04885bf8d0e19653a72b1','0','2','0'), ('33233','20','get[1.3.6.1.4.1.33333.3.47.0]','10373','Status: Load Faults','status.load_faults[loadFaults.0]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT Description:Array Faults Modbus address:0x0012','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','24762b0c264745548150a4bd5913156f','0','2','0'), ('33234','20','get[1.3.6.1.4.1.33333.3.40.0]','10373','Status: Array Faults','status.array_faults[arrayFaults.0]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT Description:Array Faults Modbus address:0x0012','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f44756455697466cb905aa6ae4d0220d','0','2','0'), ('33235','20','get[1.3.6.1.4.1.33333.3.52.0]','10373','Status: Alarms','status.alarms[alarms.0]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT Description:Alarms Modbus addresses:H=0x0023 L=0x0024','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','91f2c1893b594e808032eb0140247d7a','0','2','0'), ('33236','20','get[1.3.6.1.4.1.33333.3.32.0]','10373','Load: Voltage','load.voltage[loadVoltage.0]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT Description:Load Voltage Scaling Factor:0.0030517578125 Units:V Range:[0, 80] Modbus address:0x000A','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a9ca69fcedbb4524a8eb4b92b975008e','0','2','0'), ('33237','20','get[1.3.6.1.4.1.33333.3.34.0]','10373','Load: Current','load.current[loadCurrent.0]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT Description:Load Current Scaling Factor:0.002415771484375 Units:A Range:[0, 60] Modbus address:0x000C','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6491ee507d9a4c099852d33e57df48a9','0','2','0'), ('33238','20','get[1.3.6.1.4.1.33333.3.56.0]','10373','Array: Sweep Vmp','array.sweep_vmp[arrayVmp.0]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT Description:Array Max. Power Point Voltage Scaling Factor:0.0030517578125 Units:V Range:[0.0, 5000.0] Modbus address:0x0028','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0842746ca41c44128a575113307259e2','0','2','0'), ('33239','20','get[1.3.6.1.4.1.33333.3.49.0]','10373','Counter: Load Amp-hours','counter.load_amp_hours[ahLoadResettable.0]','1m','31d','365d','0','0','','Ah','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT Description:Ah Load(Resettable) Scaling Factor:0.1 Units:Ah Range:[0.0, 4294967294] Modbus addresses:H=0x001D L=0x001E','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','28e679eace174d289ca5ccf90f3b9150','0','2','0'), ('33240','20','get[1.3.6.1.4.1.33333.3.45.0]','10373','Counter: Charge KW-hours','counter.charge_kw_hours[kwhCharge.0]','1m','31d','365d','0','3','','!kWh','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f6d0f89c747b4418ad34c32b5ac9a5b9','0','2','0'), ('33241','20','get[1.3.6.1.4.1.33333.3.43.0]','10373','Counter: Charge Amp-hours','counter.charge_amp_hours[ahChargeResettable.0]','1m','31d','365d','0','0','','Ah','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT Description:Ah Charge(Resettable) Scaling Factor:0.1 Units:Ah Range:[0.0, 4294967294] Modbus addresses:H=0x0015 L=0x0016','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','149545b9154044e3af27b4e9ad809c0e','0','2','0'), ('33242','20','get[1.3.6.1.4.1.33333.3.39.0]','10373','Battery: Charge State','charge.state[chargeState.0]','1m','31d','365d','0','0','','','','',NULL,'196','','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT Description:Control State Modbus address:0x0011 0: Start 1: NightCheck 2: Disconnect 3: Night 4: Fault 5: BulkMppt 6: Pwm 7: Float 8: Equalize','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4da765c8e26540c190ea07be08b87abc','0','2','0'), ('33243','20','get[1.3.6.1.4.1.33333.3.33.0]','10373','Battery: Charge Current','charge.current[chargeCurrent.0]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT Description:Target Regulation Voltage Scaling Factor:0.0030517578125 Units:V Range:[0.0, 80.0] Modbus address:0x0014','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a36313ef0933403788a42de8a62b4838','0','2','0'), ('33244','20','get[1.3.6.1.4.1.33333.3.30.0]','10373','Battery: Battery Voltage discovery','battery.voltage.discovery[batteryVoltage.0]','15m','0','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f8803a1390b745f08673d4ea998548a9','0','2','0'), ('33245','20','get[1.3.6.1.4.1.33333.3.31.0]','10373','Array: Voltage','array.voltage[arrayVoltage.0]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT Description:Array Voltage Scaling Factor:0.0030517578125 Units:V Range:[0, 80] Modbus address:0x0009','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','da1f347b28dd4fbeb123f228adefb0ed','0','2','0'), ('33246','20','get[1.3.6.1.4.1.33333.3.58.0]','10373','Array: Sweep Voc','array.sweep_voc[arrayVoc.0]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT Description:Array Open Circuit Voltage Scaling Factor:0.0030517578125 Units:V Range:[0.0, 80.0] Modbus address:0x002A','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0e3371208513416ab1b9afdf2c3b2c08','0','2','0'), ('33247','20','get[1.3.6.1.4.1.33333.3.35.0]','10373','Temperature: Heatsink','temp.heatsink[heatsinkTemperature.0]','1m','31d','365d','0','0','','C','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SUNSAVER-MPPT Description:Battery Temperature Scaling Factor:1.0 Units:deg C Range:[-128, 127] Modbus address:0x000E','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5f238fe557a7412cad5f3864e407284e','0','2','0'), ('33249','20','get[1.3.6.1.4.1.33333.3.30.0]','10373','Battery: Voltage{#SINGLETON}','battery.voltage[batteryVoltage.0{#SINGLETON}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: SUNSAVER-MPPT Description:Control State Modbus address:0x0011','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','903b96b7eb37482da469fc802d3da1b0','0','2','0'), ('33250','20','get[1.3.6.1.4.1.33333.9.30.0]','10374','Battery: Battery Voltage discovery','battery.voltage.discovery[batteryVoltageSlow.0]','15m','0','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SURESINE','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c577d82138d04ca689155f01fe32dd74','0','2','0'), ('33251','20','get[1.3.6.1.4.1.33333.9.31.0]','10374','Load: A/C Current','load.ac_current[acCurrent.0]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SURESINE Description:AC Output Current Scaling Factor:0.0001953125 Units:A Range:[0.0, 17] Modbus address:0x0005','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0cbf90bdfbc44bc9939167625c20aaed','0','2','0'), ('33252','20','get[1.3.6.1.4.1.33333.9.33.0]','10374','Load: State','load.state[loadState.0]','1m','31d','365d','0','0','','','','',NULL,'198','','','0','','','','','0',NULL,'MIB: SURESINE Description:Load State Modbus address:0x000B 0: Start 1: LoadOn 2: LvdWarning 3: LowVoltageDisconnect 4: Fault 5: Disconnect 6: NormalOff 7: UnknownState 8: Standby','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','193eeecf87c24527b5ba4b0df2b66cfc','0','2','0'), ('33253','20','get[1.3.6.1.4.1.33333.9.34.0]','10374','Status: Alarms','status.alarms[alarms.0]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SURESINE Description:Faults Modbus address:0x0007','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d15815c3d6024a83ac03425e23d798cd','0','2','0'), ('33254','20','get[1.3.6.1.4.1.33333.9.35.0]','10374','Status: Faults','status.faults[faults.0]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SURESINE Description:Faults Modbus address:0x0007','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d92ff915ccda482db946118238ea2ef3','0','2','0'), ('33255','20','get[1.3.6.1.2.1.1.3.0]','10374','Status: Uptime (network)','status.net.uptime','1m','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cb4a5c3033f84baa8260a8199265e5a9','0','2','0'), ('33256','20','get[1.3.6.1.4.1.33333.9.32.0]','10374','Temperature: Heatsink','temp.heatsink[heatsinkTemperature.0]','1m','31d','365d','0','0','','C','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SURESINE Description:Heatsink Temperature Scaling Factor:1 Units:C Range:[-128, 127] Modbus address:0x0006','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c6119c74beeb4ab69854d52f2eaa969d','0','2','0'), ('33258','20','get[1.3.6.1.4.1.33333.9.30.0]','10374','Battery: Voltage{#SINGLETON}','battery.voltage[batteryVoltageSlow.0{#SINGLETON}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: SURESINE Description:Battery Voltage(slow) Scaling Factor:0.0002581787109375 Units:V Range:[0.0, 17.0] Modbus address:0x0004','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3a526ad82f7a48c589c3079599e0334e','0','2','0'), ('33259','20','get[1.3.6.1.4.1.33333.7.31.0]','10375','Array: Array Current','array.current[arrayCurrent.0]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT Description:Array Current Scaling Factor:1.0 Units:A Range:[-10, 80] Modbus address:0x001d','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2e83c42d78e8486f936733e3cb6dee6b','0','2','0'), ('33260','20','get[1.3.6.1.4.1.33333.7.50.0]','10375','Counter: Charge Amp-hours','counter.charge_amp_hours[ahChargeResetable.0]','1m','31d','365d','0','0','','Ah','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT Description:Ah Charge Resettable Scaling Factor:1.0 Units:Ah Range:[0.0, 5000] Modbus addresses:H=0x0034 L=0x0035','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3d67ceefb2c443d38051e2d22aca45ce','0','2','0'), ('33261','20','get[1.3.6.1.4.1.33333.7.48.0]','10375','Temperature: Battery','temp.battery[batteryTemperature.0]','1m','31d','365d','0','0','','C','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT Description:Batt. Temp Scaling Factor:1.0 Units:C Range:[-40, 80] Modbus address:0x0025','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4f3fdc6382704fb584fbe11264a0e5c2','0','2','0'), ('33262','20','get[1.3.6.1.4.1.33333.7.45.0]','10375','Battery: Target Voltage','target.voltage[targetRegulationVoltage.0]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT Description:Target Voltage Scaling Factor:1.0 Units:V Range:[-10, 650.0] Modbus address:0x0033','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','738f2e6d143a4e6db3ecf2736ca843cb','0','2','0'), ('33263','20','get[1.3.6.1.2.1.1.3.0]','10375','Status: Uptime (network)','status.net.uptime','1m','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e6a4dd0a61c8479985a1179842d22766','0','2','0'), ('33264','20','get[1.3.6.1.4.1.33333.7.55.0]','10375','Status: Faults','status.faults[faults.0]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT Description:Faults Modbus addresses:H=0x002c L=0x002d','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','81efe20cce1b4b26a6eda83e86fbd49c','0','2','0'), ('33265','20','get[1.3.6.1.4.1.33333.7.57.0]','10375','Status: Alarms','status.alarms[alarms.0]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT Description:Alarms Modbus addresses:H=0x002e L=0x002f','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a2b5a78fe649480ea0cc580b5fa30bde','0','2','0'), ('33266','20','get[1.3.6.1.4.1.33333.7.52.0]','10375','Counter: Charge KW-hours','counter.charge_kw_hours[kwhChargeResetable.0]','1m','31d','365d','0','0','','!kWh','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT Description:kWh Charge Resettable Scaling Factor:1.0 Units:kWh Range:[0.0, 65535.0] Modbus address:0x0038','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1a7ff2c884784eb4817956e0ecd5b718','0','2','0'), ('33267','20','get[1.3.6.1.4.1.33333.7.46.0]','10375','Battery: Charge State','charge.state[chargeState.0]','1m','31d','365d','0','0','','','','',NULL,'199','','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT Description:Charge State Modbus address:0x0032 0: Start 1: NightCheck 2: Disconnect 3: Night 4: Fault 5: Mppt 6: Absorption 7: Float 8: Equalize 9: Slave 10: Fixed','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aa20a89288c444a492910cb1a7f19499','0','2','0'), ('33268','20','get[1.3.6.1.4.1.33333.7.33.0]','10375','Array: Sweep Pmax','array.sweep_pmax[arrayPmaxLastSweep.0]','1m','31d','365d','0','0','','W','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT Description:Pmax (last sweep) Scaling Factor:1.0 Units:W Range:[-10, 5000] Modbus address:0x003c','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9750ce4073d9467fa18f0e35f990c081','0','2','0'), ('33269','20','get[1.3.6.1.4.1.33333.7.44.0]','10375','Battery: Output Power','charge.output_power[ outputPower.0]','1m','31d','365d','0','0','','W','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT Description:Output Power Scaling Factor:1.0 Units:W Range:[-10, 4000] Modbus address:0x003a','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6e168ff947324068aad1fc16d577369d','0','2','0'), ('33270','20','get[1.3.6.1.4.1.33333.7.42.0]','10375','Battery: Charge Current','charge.current[batteryCurrent.0]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT Description:Battery Current Scaling Factor:1.0 Units:A Range:[-10, 80] Modbus address:0x001c','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5e42ba3c9a764b9690feb04d4bf7df45','0','2','0'), ('33271','20','get[1.3.6.1.4.1.33333.7.36.0]','10375','Battery: Battery Voltage discovery','battery.voltage.discovery[batteryVoltage.0]','15m','0','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT Description:Battery voltage Scaling Factor:1.0 Units:V Range:[-10, 80] Modbus address:0x0018','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','058dc403d9b541978aebcb2944ecf75f','0','2','0'), ('33272','20','get[1.3.6.1.4.1.33333.7.30.0]','10375','Array: Voltage','array.voltage[arrayVoltage.0]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT Description:Array Voltage Scaling Factor:1.0 Units:V Range:[-10, 650] Modbus address:0x001b','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e13c3135ce8649ea9c88d4f9eb56219e','0','2','0'), ('33273','20','get[1.3.6.1.4.1.33333.7.35.0]','10375','Array: Sweep Voc','array.sweep_voc[arrayVocLastSweep.0]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT Description:Voc (last sweep) Scaling Factor:1.0 Units:V Range:[-10, 650.0] Modbus address:0x003e','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a8f4819131fe4247aef9b1cd819b47d9','0','2','0'), ('33274','20','get[1.3.6.1.4.1.33333.7.34.0]','10375','Array: Sweep Vmp','array.sweep_vmp[arrayVmpLastSweep.0]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT Description:Vmp (last sweep) Scaling Factor:1.0 Units:V Range:[-10, 650.0] Modbus address:0x003d','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','de36a1087b2d4ade8369c620c794c881','0','2','0'), ('33275','20','get[1.3.6.1.4.1.33333.7.49.0]','10375','Temperature: Heatsink','temp.heatsink[heatsinkTemperature.0]','1m','31d','365d','0','0','','C','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT Description:HS Temp Scaling Factor:1.0 Units:C Range:[-40, 80] Modbus address:0x0023','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d3abc18d718540039adcfcb4a74bea43','0','2','0'), ('33277','20','get[1.3.6.1.4.1.33333.7.36.0]','10375','Battery: Voltage{#SINGLETON}','battery.voltage[batteryVoltage.0{#SINGLETON}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: TRISTAR-MPPT Description:Battery voltage Scaling Factor:1.0 Units:V Range:[-10, 80] Modbus address:0x0018','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','429d19822647434ca7df7016f44d690f','0','2','0'), ('33278','20','get[1.3.6.1.4.1.33333.2.31.0]','10376','Array: Array Current','array.current[arrayCurrent.0]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT Description:Array Current Scaling Factor:0.00244140625 Units:A Range:[-10, 80] Modbus address:0x001d','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2c3dcfd83bf946fb9da84f648c1efbac','0','2','0'), ('33279','20','get[1.3.6.1.4.1.33333.2.50.0]','10376','Counter: Charge Amp-hours','counter.charge_amp_hours[ahChargeResetable.0]','1m','31d','365d','0','0','','Ah','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT Description:Ah Charge Resettable Scaling Factor:0.1 Units:Ah Range:[0.0, 5000] Modbus addresses:H=0x0034 L=0x0035','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','48db3379939b4698b8f30ff7118a9a95','0','2','0'), ('33280','20','get[1.3.6.1.4.1.33333.2.48.0]','10376','Temperature: Battery','temp.battery[batteryTemperature.0]','1m','31d','365d','0','0','','C','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT Description:Batt. Temp Scaling Factor:1.0 Units:C Range:[-40, 80] Modbus address:0x0025','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9aee4500f32a4016be4f137c948b3d67','0','2','0'), ('33281','20','get[1.3.6.1.4.1.33333.2.45.0]','10376','Battery: Target Voltage','target.voltage[targetRegulationVoltage.0]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT Description:Target Voltage Scaling Factor:0.0054931640625 Units:V Range:[-10, 180.0] Modbus address:0x0033','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c46896a6169142b59fc7f534f1981993','0','2','0'), ('33282','20','get[1.3.6.1.2.1.1.3.0]','10376','Status: Uptime (network)','status.net.uptime','1m','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5f1e79c9987648c8abb325a507209a07','0','2','0'), ('33283','20','get[1.3.6.1.4.1.33333.2.55.0]','10376','Status: Faults','status.faults[faults.0]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT Description:Faults Modbus address:0x002c','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','64a01cde330e437499a719237f68fda2','0','2','0'), ('33284','20','get[1.3.6.1.4.1.33333.2.57.0]','10376','Status: Alarms','status.alarms[alarms.0]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT Description:Faults Modbus address:0x002c','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5c96236f9623495289b94bd4d63e6faf','0','2','0'), ('33285','20','get[1.3.6.1.4.1.33333.2.52.0]','10376','Counter: Charge KW-hours','counter.charge_kw_hours[kwhChargeResetable.0]','1m','31d','365d','0','3','','!kWh','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT Description:kWh Charge Resettable Scaling Factor:0.1 Units:kWh Range:[0.0, 65535.0] Modbus address:0x0038','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f14eb25c426141d1875d5828b5c62c30','0','2','0'), ('33286','20','get[1.3.6.1.4.1.33333.2.46.0]','10376','Battery: Charge State','charge.state[chargeState.0]','1m','31d','365d','0','0','','','','',NULL,'200','','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT Description:Charge State Modbus address:0x0032 0: Start 1: NightCheck 2: Disconnect 3: Night 4: Fault 5: Mppt 6: Absorption 7: Float 8: Equalize 9: Slave','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7ad0e0153d6342a5bdd1576b2ad815e3','0','2','0'), ('33287','20','get[1.3.6.1.4.1.33333.2.33.0]','10376','Array: Sweep Pmax','array.sweep_pmax[arrayPmaxLastSweep.0]','1m','31d','365d','0','0','','W','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT Description:Pmax (last sweep) Scaling Factor:0.10986328125 Units:W Range:[-10, 5000] Modbus address:0x003c','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','53c1cccd0262422eb18bb6745adb2369','0','2','0'), ('33288','20','get[1.3.6.1.4.1.33333.2.44.0]','10376','Battery: Output Power','charge.output_power[ outputPower.0]','1m','31d','365d','0','0','','W','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT Description:Output Power Scaling Factor:0.10986328125 Units:W Range:[-10, 5000] Modbus address:0x003a','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e70284aa07924a61add98dc516f0429e','0','2','0'), ('33289','20','get[1.3.6.1.4.1.33333.2.42.0]','10376','Battery: Charge Current','charge.current[batteryCurrent.0]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT Description:Battery Current Scaling Factor:0.00244140625 Units:A Range:[-10, 80] Modbus address:0x001c','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e1646c9847064d53913d9c57d1b59de7','0','2','0'), ('33290','20','get[1.3.6.1.4.1.33333.2.36.0]','10376','Battery: Battery Voltage discovery','battery.voltage.discovery[batteryVoltage.0]','15m','0','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f40795d2c28b4f53ac50399ca6e6f8d6','0','2','0'), ('33291','20','get[1.3.6.1.4.1.33333.2.30.0]','10376','Array: Voltage','array.voltage[arrayVoltage.0]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT Description:Array Voltage Scaling Factor:0.0054931640625 Units:V Range:[-10, 180] Modbus address:0x001b','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','419b9faf88284121a8806c60c8a4550d','0','2','0'), ('33292','20','get[1.3.6.1.4.1.33333.2.35.0]','10376','Array: Sweep Voc','array.sweep_voc[arrayVocLastSweep.0]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT Description:Voc (last sweep) Scaling Factor:0.0054931640625 Units:V Range:[-10, 180.0] Modbus address:0x003e','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ced0f7c4abb6409399a9e05797841497','0','2','0'), ('33293','20','get[1.3.6.1.4.1.33333.2.34.0]','10376','Array: Sweep Vmp','array.sweep_vmp[arrayVmpLastSweep.0]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT Description:Vmp (last sweep) Scaling Factor:0.0054931640625 Units:V Range:[-10, 180.0] Modbus address:0x003d','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2f0bbf8b6d53457283069aaf8e0386ae','0','2','0'), ('33294','20','get[1.3.6.1.4.1.33333.2.49.0]','10376','Temperature: Heatsink','temp.heatsink[heatsinkTemperature.0]','1m','31d','365d','0','0','','C','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR-MPPT Description:HS Temp Scaling Factor:1.0 Units:C Range:[-40, 80] Modbus address:0x0023','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ffed57b626254db6bcc0df6de51d39fa','0','2','0'), ('33296','20','get[1.3.6.1.4.1.33333.2.36.0]','10376','Battery: Voltage{#SINGLETON}','battery.voltage[batteryVoltage.0{#SINGLETON}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: TRISTAR-MPPT Description:Battery voltage Scaling Factor:0.0054931640625 Units:V Range:[-10, 180.0] Modbus address:0x0018','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','763cce63817f471095bdce7a6127b0bf','0','2','0'), ('33297','20','get[1.3.6.1.4.1.33333.8.30.0]','10377','Battery: Battery Voltage discovery','battery.voltage.discovery[batteryVoltage.0]','15m','0','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR Description:Battery voltage Scaling Factor:0.002950042724609375 Units:V Range:[0.0, 80.0] Modbus address:0x0008','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b76ef47ada0c43cfb50c6a80c8ca55e5','0','2','0'), ('33298','20','get[1.3.6.1.4.1.33333.8.45.0]','10377','Status: Control Mode','control.mode[controlMode.0]','1m','31d','365d','0','0','','','','',NULL,'202','','','0','','','','','0',NULL,'MIB: TRISTAR Description:Control Mode Modbus address:0x001A 0: charge 1: loadControl 2: diversion 3: lighting','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0c57da022cf8497e88f788cee1b3a0a6','0','2','0'), ('33299','20','get[1.3.6.1.4.1.33333.8.39.0]','10377','Counter: Amp-hours','counter.charge_amp_hours[ahResettable.0]','1m','31d','365d','0','0','','Ah','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR Description:Ah (Resettable) Scaling Factor:0.1 Units:Ah Range:[0.0, 50000.0] Modbus addresses:H=0x0011 L=0x0012','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','25a576060f6948e59a855462b04c7276','0','2','0'), ('33300','20','get[1.3.6.1.4.1.33333.8.49.0]','10377','Counter: KW-hours','counter.charge_kw_hours[kilowattHours.0]','1m','31d','365d','0','0','','!kWh','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR Description:Kilowatt Hours Scaling Factor:1.0 Units:kWh Range:[0.0, 5000.0] Modbus address:0x001E','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d2351af0b6244044949eba67a7f7b39c','0','2','0'), ('33301','20','get[1.3.6.1.4.1.33333.8.42.0]','10377','Status: Alarms','status.alarms[alarms.0]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR Description:Alarms Modbus addresses:H=0x001D L=0x0017','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','03c3397ac32b47499002b13e0735ec9b','0','2','0'), ('33302','20','get[1.3.6.1.4.1.33333.8.43.0]','10377','Status: Faults','status.faults[faults.0]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR Description:Battery voltage Scaling Factor:0.002950042724609375 Units:V Range:[0.0, 80.0] Modbus address:0x0008','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9d0f4444f98c4ec082d35559e8fe9ac5','0','2','0'), ('33303','20','get[1.3.6.1.2.1.1.3.0]','10377','Status: Uptime (network)','status.net.uptime','1m','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','642eec19ba5d450186590e9f5bba36db','0','2','0'), ('33304','20','get[1.3.6.1.4.1.33333.8.37.0]','10377','Temperature: Battery','temp.battery[batteryTemperature.0]','1m','31d','365d','0','0','','C','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR Description:Battery Temperature Scaling Factor:1.0 Units:deg C Range:[-40, 120] Modbus address:0x000F','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bc729e23973b4d9d97d694d884431e0b','0','2','0'), ('33305','20','get[1.3.6.1.4.1.33333.8.36.0]','10377','Temperature: Heatsink','temp.heatsink[heatsinkTemperature.0]','1m','31d','365d','0','0','','C','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: TRISTAR Description:Heatsink Temperature Scaling Factor:1.0 Units:deg C Range:[-40, 120] Modbus address:0x000E','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a9a009058e99419dbb6cbef5b7797388','0','2','0'), ('33312','20','get[1.3.6.1.4.1.33333.8.30.0]','10377','Battery: Voltage{#SINGLETON}','battery.voltage[batteryVoltage.0{#SINGLETON}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: TRISTAR Description:Battery voltage Scaling Factor:0.002950042724609375 Units:V Range:[0.0, 80.0] Modbus address:0x0008','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e1960caed8c44606bb684e28cdfac3c7','0','2','0'), ('33313','20','get[1.3.6.1.4.1.33333.8.32.0]','10377','Array: Voltage{#SINGLETON}','array.voltage[arrayloadVoltage.0{#SINGLETON}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: TRISTAR Description:Array/Load Voltage Scaling Factor:0.00424652099609375 Units:V Range:[0, 80] Modbus address:0x000A','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f5d120bee1964f10853819d576ddb930','0','2','0'), ('33314','20','get[1.3.6.1.4.1.33333.8.33.0]','10377','Battery: Charge Current{#SINGLETON}','charge.current[chargeCurrent.0{#SINGLETON}]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: TRISTAR Description:Charge Current Scaling Factor:0.002034515380859375 Units:A Range:[0, 60] Modbus address:0x000B','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b5d74de2e96440a5a00a4a4dffffbb26','0','2','0'), ('33315','20','get[1.3.6.1.4.1.33333.8.46.0]','10377','Battery: Charge State{#SINGLETON}','charge.state[controlState.0{#SINGLETON}]','1m','31d','365d','0','0','','','','',NULL,'201','','','0','','','','','2',NULL,'MIB: TRISTAR Description:Control State Modbus address:0x001B','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e08b526bbb484753a11c99011d31d945','0','2','0'), ('33316','20','get[1.3.6.1.4.1.33333.8.38.0]','10377','Battery: Target Voltage{#SINGLETON}','target.voltage[targetVoltage.0{#SINGLETON}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: TRISTAR Description:Target Regulation Voltage Scaling Factor:0.002950042724609375 Units:V Range:[0.0, 80.0] Modbus address:0x0010','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','edd7d01d2523481293f3ac9e8f3c0a00','0','2','0'), ('33317','20','get[1.3.6.1.4.1.33333.8.48.0]','10377','Load: PWM Duty Cycle{#SINGLETON}','diversion.pwm_duty_cycle[pwmDutyCycle.0{#SINGLETON}]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: TRISTAR Description:PWM Duty Cycle Scaling Factor:0.392156862745098 Units:% Range:[0.0, 100.0] Modbus address:0x001C','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','33e6b5a75c1e454cb7b7bc0b1426d1b9','0','2','0'), ('33318','20','get[1.3.6.1.4.1.33333.8.47.0]','10377','Load: State{#SINGLETON}','load.state[loadState.0{#SINGLETON}]','1m','31d','365d','0','0','','','','',NULL,'203','','','0','','','','','2',NULL,'MIB: TRISTAR Description:Load State Modbus address:0x001B 0: Start 1: Normal 2: LvdWarning 3: Lvd 4: Fault 5: Disconnect 6: LvdWarning1 7: OverrideLvd 8: Equalize','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6d42918b9c244f88a23ab1daf2a929ce','0','2','0'), ('33319','20','get[1.3.6.1.4.1.33333.8.34.0]','10377','Load: Current{#SINGLETON}','load.current[loadCurrent.0{#SINGLETON}]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: TRISTAR Description:Load Current Scaling Factor:0.00966400146484375 Units:A Range:[0, 60] Modbus address:0x000C','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b6db019203cc41ca94dcbe54382fdaad','0','2','0'), ('33320','20','get[1.3.6.1.4.1.33333.8.32.0]','10377','Load: Voltage{#SINGLETON}','load.voltage[arrayloadVoltage.0{#SINGLETON}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: TRISTAR Description:Array/Load Voltage Scaling Factor:0.00424652099609375 Units:V Range:[0, 80] Modbus address:0x000A','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f87ddb7d31d748c8917030ede731f37a','0','2','0'), ('33348','20','get[1.3.6.1.4.1.789.1.6.4.7.0]','10378','Failed disks count','fas3220.disk[diskFailedCount]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of disks that are currently broken.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4239eba959f14e0ebc44a0fa7d124042','0','2','0'), ('33349','20','get[1.3.6.1.4.1.789.1.6.4.10.0]','10378','Failed disks message','fas3220.disk[diskFailedMessage]','1m','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'If diskFailedCount is non-zero, this is a string describing the failed disk or disks. Each failed disk is described.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','980e2c347d254c4d88d918b2171679bb','0','2','0'), ('33350','20','get[1.3.6.1.4.1.789.1.1.6.0]','10378','Product firmware version','fas3220.inventory[productFirmwareVersion]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version string for the firmware running on this platform.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7b6d8c8272714343bd420a32c6763c9e','0','2','0'), ('33351','20','get[1.3.6.1.4.1.789.1.1.2.0]','10378','Product version','fas3220.inventory[productVersion]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: NETAPP-MIB Version string for the software running on this platform.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3f0418935b9d40e98d129f280ba5ba6b','0','2','0'), ('33352','20','discovery[{#NODE.NAME},1.3.6.1.4.1.789.1.25.2.1.1]','10378','Cluster metrics discovery','fas3220.cluster.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of Cluster metrics per node','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c999a3f338934982aa4359d9f0a8df30','0','2','0'), ('33353','20','discovery[{#NODE.NAME},1.3.6.1.4.1.789.1.2.1.14.1.1]','10378','CPU discovery','fas3220.cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of CPU metrics per node','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e0b97a8434f94d0ba14023cc434a8926','0','2','0'), ('33354','20','discovery[{#FSNAME},1.3.6.1.4.1.789.1.5.4.1.2,{#FSTYPE},1.3.6.1.4.1.789.1.5.4.1.23,{#VSERVER},1.3.6.1.4.1.789.1.5.4.1.34]','10378','Filesystems discovery','fas3220.fs.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Filesystems discovery with filter.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b6dcacd213ce436aabb6c33d236fc077','0','2','0'), ('33355','20','discovery[{#NODE.NAME},1.3.6.1.4.1.789.1.21.2.1.1,{#PARTNER.NAME},1.3.6.1.4.1.789.1.21.2.1.8]','10378','HA discovery','fas3220.ha.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of high availability metrics per node','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e06a66c956164722a289cb8832341451','0','2','0'), ('33356','20','discovery[{#IFNAME},1.3.6.1.4.1.789.1.22.2.1.2,{#NODE},1.3.6.1.4.1.789.1.22.2.1.1,{#TYPE},1.3.6.1.4.1.789.1.22.2.1.15,{#ROLE},1.3.6.1.4.1.789.1.22.2.1.3,{#IFDESCR},1.3.6.1.4.1.789.1.22.1.2.1.2]','10378','Network ports discovery','fas3220.net.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Network interfaces discovery with filter.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0984cb890ec64f748e6bc5531bf80112','0','2','0'), ('33357','20','get[1.3.6.1.4.1.789.1.25.2.1.19.{#SNMPINDEX}]','10378','Node {#NODE.NAME}: Failed FAN count','fas3220.cluster[nodeEnvFailedFanCount, "{#NODE.NAME}"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of the number of chassis fans that are not operating within the recommended RPM range.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2363873641874c50b70bf170e05ea10e','0','2','0'), ('33358','20','get[1.3.6.1.4.1.789.1.25.2.1.20.{#SNMPINDEX}]','10378','Node {#NODE.NAME}: Failed FAN message','fas3220.cluster[nodeEnvFailedFanMessage, "{#NODE.NAME}"]','1m','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Text message describing current condition of chassis fans. This is useful only if envFailedFanCount is not zero.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ac1d666db8c0495c860a59d98caeb4ab','0','2','0'), ('33359','20','get[1.3.6.1.4.1.789.1.25.2.1.21.{#SNMPINDEX}]','10378','Node {#NODE.NAME}: Degraded power supplies count','fas3220.cluster[nodeEnvFailedPowerSupplyCount, "{#NODE.NAME}"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of the number of power supplies that are in degraded mode.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ad74f96ff33249e1937c2702c4bbce94','0','2','0'), ('33360','20','get[1.3.6.1.4.1.789.1.25.2.1.22.{#SNMPINDEX}]','10378','Node {#NODE.NAME}: Degraded power supplies message','fas3220.cluster[nodeEnvFailedPowerSupplyMessage, "{#NODE.NAME}"]','1m','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Text message describing the state of any power supplies that are currently degraded. This is useful only if envFailedPowerSupplyCount is not zero.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','343e02ff8f9f417292a2bb548db355ee','0','2','0'), ('33361','20','get[1.3.6.1.4.1.789.1.25.2.1.18.{#SNMPINDEX}]','10378','Node {#NODE.NAME}: Over-temperature','fas3220.cluster[nodeEnvOverTemperature, "{#NODE.NAME}"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'An indication of whether the hardware is currently operating outside of its recommended temperature range. The hardware will shutdown if the temperature exceeds critical thresholds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','73853db2e6924c8395aac1655fab24b4','0','2','0'), ('33362','20','get[1.3.6.1.4.1.789.1.25.2.1.11.{#SNMPINDEX}]','10378','Node {#NODE.NAME}: Health','fas3220.cluster[nodeHealth, "{#NODE.NAME}"]','1m','31d','365d','0','3','','','','',NULL,'44','','','0','','','','','2',NULL,'Whether or not the node can communicate with the cluster.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c6663dc780f14fd4bb01a108d0d2c6b0','0','2','0'), ('33363','20','get[1.3.6.1.4.1.789.1.25.2.1.3.{#SNMPINDEX}]','10378','Node {#NODE.NAME}: Location','fas3220.cluster[nodeLocation, "{#NODE.NAME}"]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Node Location. Same as sysLocation for a specific node.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b8c922cbd60e4432822268c2a642fd95','0','2','0'), ('33364','20','get[1.3.6.1.4.1.789.1.25.2.1.4.{#SNMPINDEX}]','10378','Node {#NODE.NAME}: Model','fas3220.cluster[nodeModel, "{#NODE.NAME}"]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Node Model. Same as productModel for a specific node.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','eae21d81e97a47dfa80701fb343294b4','0','2','0'), ('33365','20','get[1.3.6.1.4.1.789.1.25.2.1.17.{#SNMPINDEX}]','10378','Node {#NODE.NAME}: NVRAM battery status','fas3220.cluster[nodeNvramBatteryStatus, "{#NODE.NAME}"]','1m','31d','365d','0','3','','','','',NULL,'206','','','0','','','','','2',NULL,'An indication of the current status of the NVRAM battery or batteries. Batteries which are fully or partially discharged may not fully protect the system during a crash. The end-of-life status values are based on the manufacturer''s recommended life for the batteries. Possible values: ok(1), partiallyDischarged(2), fullyDischarged(3), notPresent(4), nearEndOfLife(5), atEndOfLife(6), unknown(7), overCharged(8), fullyCharged(9).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cd00e7ff616f4b69a94af9e9494b060e','0','2','0'), ('33366','20','get[1.3.6.1.4.1.789.1.25.2.1.5.{#SNMPINDEX}]','10378','Node {#NODE.NAME}: Serial number','fas3220.cluster[nodeSerialNumber, "{#NODE.NAME}"]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Node Serial Number. Same as productSerialNum for a specific node.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4fc5f0cdd87147d59fe8d073e361c2d8','0','2','0'), ('33367','20','get[1.3.6.1.4.1.789.1.25.2.1.7.{#SNMPINDEX}]','10378','Node {#NODE.NAME}: Uptime','fas3220.cluster[nodeUptime, "{#NODE.NAME}"]','1m','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Node uptime. Same as sysUpTime for a specific node.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8ed05a8e28bd4b87b2b5981b45ec9fbe','0','2','0'), ('33368','20','get[1.3.6.1.4.1.789.1.2.1.14.1.4.{#SNMPINDEX}]','10378','Node {#NODE.NAME}: CPU utilization','fas3220.cpu[cDOTCpuBusyTimePerCent, "{#NODE.NAME}"]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The average, over the last minute, of the percentage of time that this processor was not idle.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0cf9871cac314b0fb92710144acf3f66','0','2','0'), ('33369','20','get[1.3.6.1.4.1.789.1.5.4.1.31.{#SNMPINDEX}]','10378','{#VSERVER}{#FSNAME}: Total space available','fas3220.fs[df64AvailKBytes, "{#VSERVER}{#FSNAME}"]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total disk space that is free for use on {#FSNAME}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4f77d54089e34da8bf5b50033e3e2ca3','0','2','0'), ('33370','20','get[1.3.6.1.4.1.789.1.5.4.1.29.{#SNMPINDEX}]','10378','{#VSERVER}{#FSNAME}: Total space','fas3220.fs[df64TotalKBytes, "{#VSERVER}{#FSNAME}"]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total capacity in bytes for {#FSNAME}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','be517380be12421c867ed48e16fe5c4e','0','2','0'), ('33371','20','get[1.3.6.1.4.1.789.1.5.4.1.30.{#SNMPINDEX}]','10378','{#VSERVER}{#FSNAME}: Total space used','fas3220.fs[df64UsedKBytes, "{#VSERVER}{#FSNAME}"]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total disk space that is in use on {#FSNAME}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d4989438446a4d228b83b0b22c11af90','0','2','0'), ('33372','20','get[1.3.6.1.4.1.789.1.5.4.1.38.{#SNMPINDEX}]','10378','{#VSERVER}{#FSNAME}: Saved by compression percents','fas3220.fs[dfCompressSavedPercent, "{#VSERVER}{#FSNAME}"]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Provides the percentage of compression savings in a volume, which is ((compr_saved/used)) * 10(compr_saved + 0). This is only returned for volumes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','74868589894f468fa5daada73c042aca','0','2','0'), ('33373','20','get[1.3.6.1.4.1.789.1.5.4.1.40.{#SNMPINDEX}]','10378','{#VSERVER}{#FSNAME}: Saved by deduplication percents','fas3220.fs[dfDedupeSavedPercent, "{#VSERVER}{#FSNAME}"]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Provides the percentage of deduplication savings in a volume, which is ((dedup_saved/(dedup_saved + used)) * 100). This is only returned for volumes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6fd01f706f8f4088b91cd6aad58a65ce','0','2','0'), ('33374','20','get[1.3.6.1.4.1.789.1.5.4.1.6.{#SNMPINDEX}]','10378','{#VSERVER}{#FSNAME}: Used space percents','fas3220.fs[dfPerCentKBytesCapacity, "{#VSERVER}{#FSNAME}"]','1m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of disk space currently in use on {#FSNAME}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b74fafe10c844feda4e72346b2fe88f6','0','2','0'), ('33375','20','get[1.3.6.1.4.1.789.1.21.2.1.5.{#SNMPINDEX}]','10378','Node {#NODE.NAME}: Cannot takeover cause','fas3220.ha[haCannotTakeoverCause, "{#NODE.NAME}"]','1m','31d','365d','0','3','','','','',NULL,'204','','','0','','','','','2',NULL,'The reason node cannot take over it''s HA partner {#PARTNER.NAME}. Possible states: ok(1), unknownReason(2), disabledByOperator(3), interconnectOffline(4), disabledByPartner(5), takeoverFailed(6), mailboxIsInDegradedState(7), partnermailboxIsInUninitialisedState(8), mailboxVersionMismatch(9), nvramSizeMismatch(10), kernelVersionMismatch(11), partnerIsInBootingStage(12), diskshelfIsTooHot(13), partnerIsPerformingRevert(14), nodeIsPerformingRevert(15), sametimePartnerIsAlsoTryingToTakeUsOver(16), alreadyInTakenoverMode(17), nvramLogUnsynchronized(18), stateofBackupMailboxIsDoubtful(19).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a6d4f2976de841108b53be013376549b','0','2','0'), ('33376','20','get[1.3.6.1.4.1.789.1.21.2.1.3.{#SNMPINDEX}]','10378','Node {#NODE.NAME}: HA settings','fas3220.ha[haSettings, "{#NODE.NAME}"]','1m','31d','365d','0','3','','','','',NULL,'205','','','0','','','','','2',NULL,'High Availability configuration settings. The value notConfigured(1) indicates that the HA is not licensed. The thisNodeDead(5) setting indicates that this node has been takenover.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','70624f45000443999b416d5806ead949','0','2','0'), ('33377','20','get[1.3.6.1.4.1.789.1.22.1.2.1.28.{#IFSNMPINDEX}]','10378','Node {#NODE}: port {#IFNAME} ({#TYPE}): Inbound packets discarded','fas3220.net.if[if64InDiscards, "{#NODE}", "{#IFNAME}"]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets that were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','abbab9f31f7a4e07a2e5f3fcb2150677','0','2','0'), ('33378','20','get[1.3.6.1.4.1.789.1.22.1.2.1.29.{#IFSNMPINDEX}]','10378','Node {#NODE}: port {#IFNAME} ({#TYPE}): Inbound packets with errors','fas3220.net.if[if64InErrors, "{#NODE}", "{#IFNAME}"]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6f8c273e8efa40e3888716c7cad79f3f','0','2','0'), ('33379','20','get[1.3.6.1.4.1.789.1.22.1.2.1.25.{#IFSNMPINDEX}]','10378','Node {#NODE}: port {#IFNAME} ({#TYPE}): Bits received','fas3220.net.if[if64InOctets, "{#NODE}", "{#IFNAME}"]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of octets received on the interface, including framing characters.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6fa2bb39354e4024805a82acf4feab29','0','2','0'), ('33380','20','get[1.3.6.1.4.1.789.1.22.1.2.1.34.{#IFSNMPINDEX}]','10378','Node {#NODE}: port {#IFNAME} ({#TYPE}): Outbound packets discarded','fas3220.net.if[if64OutDiscards, "{#NODE}", "{#IFNAME}"]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets that were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b414bb327e744c4b932263502da396c1','0','2','0'), ('33381','20','get[1.3.6.1.4.1.789.1.22.1.2.1.35.{#IFSNMPINDEX}]','10378','Node {#NODE}: port {#IFNAME} ({#TYPE}): Outbound packets with errors','fas3220.net.if[if64OutErrors, "{#NODE}", "{#IFNAME}"]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets that could not be transmitted because of errors.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','baf565d001c044f8b8b5ea5caf09ea60','0','2','0'), ('33382','20','get[1.3.6.1.4.1.789.1.22.1.2.1.31.{#IFSNMPINDEX}]','10378','Node {#NODE}: port {#IFNAME} ({#TYPE}): Bits sent','fas3220.net.if[if64OutOctets, "{#NODE}", "{#IFNAME}"]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of octets transmitted out of the interface, including framing characters.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cd474bb9b7b741e8a19654f9e2a67890','0','2','0'), ('33383','20','get[1.3.6.1.4.1.789.1.22.2.1.32.{#SNMPINDEX}]','10378','Node {#NODE}: port {#IFNAME} ({#TYPE}): Health degraded reason','fas3220.net.port[netportDegradedReason, "{#NODE}", "{#IFNAME}"]','1m','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The list of reasons why the port is marked as degraded.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fc759bc9f1fd479498157c5ded9d1123','0','2','0'), ('33384','20','get[1.3.6.1.4.1.789.1.22.2.1.30.{#SNMPINDEX}]','10378','Node {#NODE}: port {#IFNAME} ({#TYPE}): Health','fas3220.net.port[netportHealthStatus, "{#NODE}", "{#IFNAME}"]','1m','31d','365d','0','0','','','','',NULL,'207','','','0','','','','','2',NULL,'The health status of the port.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d50375f621464117afa5c469d06aa3a6','0','2','0'), ('33385','20','get[1.3.6.1.4.1.789.1.22.2.1.4.{#SNMPINDEX}]','10378','Node {#NODE}: port {#IFNAME} ({#TYPE}): State','fas3220.net.port[netportLinkState, "{#NODE}", "{#IFNAME}"]','1m','31d','365d','0','3','','','','',NULL,'208','','','0','','','','','2',NULL,'The link-state of the port. Normally it is either UP(2) or DOWN(3).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','13b38a463e7a49058ca6907a9430d49f','0','2','0'), ('33386','20','get[1.3.6.1.4.1.789.1.22.2.1.3.{#SNMPINDEX}]','10378','Node {#NODE}: port {#IFNAME} ({#TYPE}): Role','fas3220.net.port[netportRole, "{#NODE}", "{#IFNAME}"]','1m','31d','365d','0','3','','','','',NULL,'209','','','0','','','','','2',NULL,'Role of the port. A port must have one of the following roles: cluster(1), data(2), mgmt(3), intercluster(4), cluster-mgmt(5) or undef(0). The cluster port is used to communicate to other node(s) in the cluster. The data port services clients'' requests. It is where all the file requests come in. The management port is used by administrator to manage resources within a node. The intercluster port is used to communicate to other cluster. The cluster-mgmt port is used to manage resources within the cluster. The undef role is for the port that has not yet been assigned a role.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ba18b4cebd7547c1bd6f92bd9e0ca791','0','2','0'), ('33387','20','get[1.3.6.1.4.1.789.1.22.2.1.11.{#SNMPINDEX}]','10378','Node {#NODE}: port {#IFNAME} ({#TYPE}): Speed','fas3220.net.port[netportSpeedOper, "{#NODE}", "{#IFNAME}"]','1m','31d','365d','0','3','','','','',NULL,'210','','','0','','','','','2',NULL,'The speed appears on the port. It can be either undef(0), auto(1), ten Mb/s(2), hundred Mb/s(3), one Gb/s(4), or ten Gb/s(5).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7e8816bdb15e4f1ab60c2c1b9706a34f','0','2','0'), ('33388','20','get[1.3.6.1.4.1.789.1.22.2.1.14.{#SNMPINDEX}]','10378','Node {#NODE}: port {#IFNAME} ({#TYPE}): Up by an administrator','fas3220.net.port[netportUpAdmin, "{#NODE}", "{#IFNAME}"]','1m','31d','365d','0','3','','','','',NULL,'211','','','0','','','','','2',NULL,'Indicates whether the port status is set ''UP'' by an administrator.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ea7cd0c80dae43e3bfd871b8ce1c541b','0','2','0'), ('33391','19','','10379','Get computer info','jenkins.computer_info','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$JENKINS.USER}','{$JENKINS.API.TOKEN}','','','0',NULL,'','0','30d','0','',NULL,'','{$JENKINS.URL}/computer/api/json','','','200','1','0','','','0','0','0','0','0','0','0','7ae6f7fae8d4485fb850c84ac00b7ff1','0','2','0'), ('33392','19','','10379','Service ping','jenkins.ping','1m','31d','365d','0','3','','','','',NULL,'215','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','{$JENKINS.URL}/metrics/{$JENKINS.API.KEY}/ping','','','200','1','0','','','0','0','0','0','0','0','0','21cad39b9c914516827b09d04716a71f','0','2','0'), ('33393','19','','10379','Get jobs info','jenkins.job_info','5m','0','0','0','4','','','','',NULL,NULL,'','','1','{$JENKINS.USER}','{$JENKINS.API.TOKEN}','','','0',NULL,'','0','30d','0','',NULL,'','{$JENKINS.URL}/api/json','[{"tree":"jobs[name,description,url,healthReport[score],lastBuild[number,result,duration,timestamp],lastSuccessfulBuild[number,result,duration,timestamp],lastFailedBuild[number,result,duration,timestamp]]"}]','','200','1','0','','','0','0','0','0','0','0','0','dc47555812a0485e9d77da3e5a1c1227','0','2','0'), ('33394','19','','10379','Get service metrics','jenkins.get_metrics','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','{$JENKINS.URL}/metrics/{$JENKINS.API.KEY}/metrics','','','200','1','0','','','0','0','0','0','0','0','0','db4c0de52dca4c8a853edf918b35bbe4','0','2','0'), ('33395','19','','10379','Get healthcheck','jenkins.healthcheck','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','{$JENKINS.URL}/metrics/{$JENKINS.API.KEY}/healthcheck','','','200','1','0','','','0','0','0','0','0','0','0','4be0216b409d46a2a12e2929a9a03295','0','2','0'), ('33465','19','','10379','Computers discovery','jenkins.computers','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$JENKINS.USER}','{$JENKINS.API.TOKEN}','','','1',NULL,'','0','7d','0','',NULL,'','{$JENKINS.URL}/computer/api/json','[{"tree":"computer[description,displayName,monitorData]"}]','','200','1','0','','','0','0','0','0','0','0','0','eb3e35534745476c8b205acb88382c77','0','2','0'), ('33466','19','','10379','Jobs discovery','jenkins.jobs','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$JENKINS.USER}','{$JENKINS.API.TOKEN}','','','1',NULL,'','0','7d','0','',NULL,'','{$JENKINS.URL}/api/json','[{"tree":"jobs[name,description,url]"}]','','200','1','0','','','0','0','0','0','0','0','0','25949e5e452e4fa384ec4aa2088375aa','0','2','0'), ('33491','19','','10380','Get streaming channels','hikvision_cam.get_streaming','1m','0','0','0','4','','','','',NULL,NULL,'','','4','{$USER}','{$PASSWORD}','','','0',NULL,'Used to get the properties of streaming channels for the device','0','30d','0','',NULL,'','http://{$HIKVISION_ISAPI_HOST}:{$HIKVISION_ISAPI_PORT}/ISAPI/Streaming/channels','','','200,401','1','0','','','0','0','0','0','0','0','0','65f89830d9f041f9a1558936dfcffc5f','0','2','0'), ('33492','19','','10380','Get system status','hikvision_cam.get_status','1m','0','0','0','4','','','','',NULL,NULL,'','','4','{$USER}','{$PASSWORD}','','','0',NULL,'It is used to get the status information of the device','0','30d','0','',NULL,'','http://{$HIKVISION_ISAPI_HOST}:{$HIKVISION_ISAPI_PORT}/ISAPI/System/status','','','200,401','1','0','','','0','0','0','0','0','0','0','1ad3e3c9f60043a58f63addc8768c887','0','2','0'), ('33493','19','','10380','Get device info','hikvision_cam.get_info','1m','0','0','0','4','','','','',NULL,NULL,'','','4','{$USER}','{$PASSWORD}','','','0',NULL,'Used to get the device information','0','30d','0','',NULL,'','http://{$HIKVISION_ISAPI_HOST}:{$HIKVISION_ISAPI_PORT}/ISAPI/System/deviceInfo','','','200,401','1','0','','','0','0','0','0','0','0','0','0ddd3af82fb64b75821dc1fab96c16ab','0','2','0'), ('33520','19','','10380','PTZ discovery','hikvision_cam.ptz.discovery','1d','90d','0','0','4','','','','',NULL,NULL,'','','4','{$USER}','{$PASSWORD}','','','1',NULL,'','0','7d','0','',NULL,'','http://{$HIKVISION_ISAPI_HOST}:{$HIKVISION_ISAPI_PORT}/ISAPI/PTZCtrl/channels','','','200,401','1','0','','','0','0','0','0','0','0','0','00647c38d30d44378bdcf573178063ec','0','2','0'), ('33521','19','','10380','Streaming channels discovery','hikvision_cam.streaming.discovery','1d','90d','0','0','4','','','','',NULL,NULL,'','','4','{$USER}','{$PASSWORD}','','','1',NULL,'','0','7d','1','',NULL,'','http://{$HIKVISION_ISAPI_HOST}:{$HIKVISION_ISAPI_PORT}/ISAPI/Streaming/channels','','','200,401','1','0','','','0','0','0','0','0','0','0','0bf00b49acd448ddbd1f4fac7630c40e','0','2','0'), ('33522','19','','10380','Channel "{#PTZ_CHANNEL_ID}": Get PTZ info','hikvision_cam.get_ptz[{#PTZ_CHANNEL_ID}]','1m','0','0','0','4','','','','',NULL,NULL,'','','4','{$USER}','{$PASSWORD}','','','2',NULL,'High precision positioning which is accurate to a bit after the decimal point','0','30d','0','',NULL,'','http://{$HIKVISION_ISAPI_HOST}:{$HIKVISION_ISAPI_PORT}/ISAPI/PTZCtrl/channels/{#PTZ_CHANNEL_ID}/status','','','200,401','1','0','','','0','0','0','0','0','0','0','6799d99ad02743a1b294b80bbed52280','0','2','0'), ('33542','16','','10381','Data region metrics','jmx.discovery[beans,"org.apache:group=DataRegionMetrics,*"]','10m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','1',NULL,'','0','7d','1','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2aa2cf6500b347e083c492aa2eade85a','0','2','0'), ('33543','16','','10381','Local node metrics','jmx.discovery[beans,"org.apache:group=Kernal,name=ClusterLocalNodeMetricsMXBeanImpl,*"]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','1',NULL,'','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','92f16f4d02e149c5ae5b09f1007cead8','0','2','0'), ('33544','16','','10381','Cluster metrics','jmx.discovery[beans,"org.apache:group=Kernal,name=ClusterMetricsMXBeanImpl,*"]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','1',NULL,'','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1b3b0461964a418a962539ec4c17aca6','0','2','0'), ('33545','16','','10381','Ignite kernal metrics','jmx.discovery[beans,"org.apache:group=Kernal,name=IgniteKernal,*"]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','1',NULL,'','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c1513c51c41046c288b9add14feaabdb','0','2','0'), ('33546','16','','10381','TCP Communication SPI metrics','jmx.discovery[beans,"org.apache:group=SPIs,name=TcpCommunicationSpi,*"]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','1',NULL,'','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','afd0c3182f8d4a299a180848eb096b95','0','2','0'), ('33547','16','','10381','TCP discovery SPI','jmx.discovery[beans,"org.apache:group=SPIs,name=TcpDiscoverySpi,*"]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','1',NULL,'','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bab4df33f0bb4b5d892438865b6a97f2','0','2','0'), ('33548','16','','10381','Transaction metrics','jmx.discovery[beans,"org.apache:group=TransactionMetrics,name=TransactionMetricsMxBeanImpl,*"]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','1',NULL,'','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','709e596e106b40869be746dc84214c06','0','2','0'), ('33549','16','','10381','Cache groups',E'jmx.discovery[beans,"org.apache:group=\\"Cache groups\\",*"]','10m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','1',NULL,'','0','7d','1','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aefce82342554933ae1214dcd7ca708b','0','2','0'), ('33550','16','','10381','Thread pool metrics',E'jmx.discovery[beans,"org.apache:group=\\"Thread Pools\\",*"]','10m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','1',NULL,'','0','7d','1','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d532f96029b7415fac925e6fd53100f4','0','2','0'), ('33551','16','','10381','Cache metrics',E'jmx.discovery[beans,"org.apache:name=\\"org.apache.ignite.internal.processors.cache.CacheLocalMetricsMXBeanImpl\\",*"]','10m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','1',NULL,'','0','7d','1','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b050fc87d8a3400282739f03c1a5fefd','0','2','0'), ('33552','16','','10381','Data region {#JMXNAME}: Allocation, rate','jmx["{#JMXOBJ}",AllocationRate]','1m','31d','365d','0','0','','!pps','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Allocation rate (pages per second) averaged across rateTimeInternal.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','56780f0bc58e499bb452e5879961ac9d','0','2','0'), ('33553','16','','10381','Data region {#JMXNAME}: Checkpoint buffer size','jmx["{#JMXOBJ}",CheckpointBufferSize]','1m','31d','365d','0','0','','B','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Total size in bytes for checkpoint buffer.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9b3528eb623c4fdda10228671268bcdb','0','2','0'), ('33554','16','','10381','Data region {#JMXNAME}: Dirty pages','jmx["{#JMXOBJ}",DirtyPages]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Number of pages in memory not yet synchronized with persistent storage.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','21f8fc17522d40cc8723053e8ed8716f','0','2','0'), ('33555','16','','10381','Data region {#JMXNAME}: Eviction, rate','jmx["{#JMXOBJ}",EvictionRate]','1m','31d','365d','0','0','','!pps','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Eviction rate (pages per second).','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8bcc78ee4e984f9c8c07b60e5dd35c42','0','2','0'), ('33556','16','','10381','Data region {#JMXNAME}: Size, max','jmx["{#JMXOBJ}",MaxSize]','1m','31d','365d','0','0','','B','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Maximum memory region size defined by its data region.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7fa689749cd64474af294976e4bc7762','0','2','0'), ('33557','16','','10381','Data region {#JMXNAME}: Offheap size','jmx["{#JMXOBJ}",OffHeapSize]','1m','31d','365d','0','0','','B','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Offheap size in bytes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bb0dd42c5a3c400f95a7084792e7522e','0','2','0'), ('33558','16','','10381','Data region {#JMXNAME}: Offheap used size','jmx["{#JMXOBJ}",OffheapUsedSize]','1m','31d','365d','0','0','','B','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Total used offheap size in bytes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a793c5e41891467fb3ee53722f9fae13','0','2','0'), ('33559','16','','10381','Data region {#JMXNAME}: Pages fill factor','jmx["{#JMXOBJ}",PagesFillFactor]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The percentage of the used space.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b4fb229defdb434b8307d91e2f17f5db','0','2','0'), ('33560','16','','10381','Data region {#JMXNAME}: Pages replace, rate','jmx["{#JMXOBJ}",PagesReplaceRate]','1m','31d','365d','0','0','','!pps','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Rate at which pages in memory are replaced with pages from persistent storage (pages per second).','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4ca77d42a8f44e278b44417d33094535','0','2','0'), ('33561','16','','10381','Data region {#JMXNAME}: Allocated, bytes','jmx["{#JMXOBJ}",TotalAllocatedSize]','1m','31d','365d','0','0','','B','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Total size of memory allocated in bytes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b62d56147b3d43aebd1f3c9eb13a8e05','0','2','0'), ('33562','16','','10381','Data region {#JMXNAME}: Used checkpoint buffer size','jmx["{#JMXOBJ}",UsedCheckpointBufferSize]','1m','31d','365d','0','0','','B','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Used checkpoint buffer size in bytes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','14b02d5526c44f2599e1893b815b1d2b','0','2','0'), ('33563','16','','10381','[{#JMXIGNITEINSTANCENAME}]: Jobs active, current','jmx["{#JMXOBJ}",CurrentActiveJobs]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Number of currently active jobs concurrently executing on the node.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7f8721ab4e6c4b23bd1e948f8c1c4480','0','2','0'), ('33564','16','','10381','[{#JMXIGNITEINSTANCENAME}]: Jobs cancelled, current','jmx["{#JMXOBJ}",CurrentCancelledJobs]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Number of cancelled jobs that are still running.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','13b1867082c340d0a6f317c94376a055','0','2','0'), ('33565','16','','10381','[{#JMXIGNITEINSTANCENAME}]: PME duration, current','jmx["{#JMXOBJ}",CurrentPmeDuration]','1m','31d','365d','0','3','','ms','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Current PME duration in milliseconds.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','832c3683406c460c826522f8b2e3aafa','0','2','0'), ('33566','16','','10381','[{#JMXIGNITEINSTANCENAME}]: Jobs rejected, current','jmx["{#JMXOBJ}",CurrentRejectedJobs]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Number of jobs rejected after more recent collision resolution operation.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6b68ba90e40b4fa0a798dfde64ba8f01','0','2','0'), ('33567','16','','10381','[{#JMXIGNITEINSTANCENAME}]: Threads count, current','jmx["{#JMXOBJ}",CurrentThreadCount]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Current number of live threads.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c459658bf32f4ca5aac6cfe1f8a8cc5b','0','2','0'), ('33568','16','','10381','[{#JMXIGNITEINSTANCENAME}]: Jobs waiting, current','jmx["{#JMXOBJ}",CurrentWaitingJobs]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Number of queued jobs currently waiting to be executed.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e29b01d139bd4d7e8248ccddb2a19baa','0','2','0'), ('33569','16','','10381','[{#JMXIGNITEINSTANCENAME}]: Heap memory used','jmx["{#JMXOBJ}",HeapMemoryUsed]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Current heap size that is used for object allocation.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5f61ae253e4f459ebc403ca69d85a617','0','2','0'), ('33570','16','','10381','[{#JMXIGNITEINSTANCENAME}]: Jobs cancelled, rate','jmx["{#JMXOBJ}",TotalCancelledJobs]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Total number of jobs cancelled by the node per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','923c561a1a504ce399bf6b1892e29a3e','0','2','0'), ('33571','16','','10381','[{#JMXIGNITEINSTANCENAME}]: Jobs executed, rate','jmx["{#JMXOBJ}",TotalExecutedJobs]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Total number of jobs handled by the node per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d6044f18b5e741818ca299ce8b19ccdb','0','2','0'), ('33572','16','','10381','[{#JMXIGNITEINSTANCENAME}]: Jobs rejects, rate','jmx["{#JMXOBJ}",TotalRejectedJobs]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Total number of jobs this node rejects during collision resolution operations since node startup per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','15135ffe1ec74e8c920ee4c70b986904','0','2','0'), ('33573','16','','10381','[{#JMXIGNITEINSTANCENAME}]: Nodes, Active baseline','jmx["{#JMXOBJ}",ActiveBaselineNodes]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The number of nodes that are currently active in the baseline topology.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','238c39ab7d5640abb3a81f0a51acc065','0','2','0'), ('33574','16','','10381','[{#JMXIGNITEINSTANCENAME}]: Nodes, Baseline','jmx["{#JMXOBJ}",TotalBaselineNodes]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Total baseline nodes that are registered in the baseline topology.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4edffa6b8f294d959797a5c6ca4ccc5a','0','2','0'), ('33575','16','','10381','[{#JMXIGNITEINSTANCENAME}]: Nodes, Client','jmx["{#JMXOBJ}",TotalClientNodes]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The number of client nodes in the cluster.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a4116287c8a34359a46eff1217f7418d','0','2','0'), ('33576','16','','10381','[{#JMXIGNITEINSTANCENAME}]: Nodes, total','jmx["{#JMXOBJ}",TotalNodes]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Total number of nodes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','517a320bd6964ec7906bf6b0408d834b','0','2','0'), ('33577','16','','10381','[{#JMXIGNITEINSTANCENAME}]: Nodes, Server','jmx["{#JMXOBJ}",TotalServerNodes]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The number of server nodes in the cluster.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9cfa72ba360840d9b87de9c59b780529','0','2','0'), ('33578','16','','10381','[{#JMXIGNITEINSTANCENAME}]: Version','jmx["{#JMXOBJ}",FullVersion]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Version of Ignite instance.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b9e23036503a4227bfbb21969583120e','0','2','0'), ('33579','16','','10381','[{#JMXIGNITEINSTANCENAME}]: Local node ID','jmx["{#JMXOBJ}",LocalNodeId]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Unique identifier for this node within grid.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cfa6cb5b02634c9d803b7c3a0774a7ce','0','2','0'), ('33580','16','','10381','[{#JMXIGNITEINSTANCENAME}]: Uptime','jmx["{#JMXOBJ}",UpTime]','1m','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Uptime of Ignite instance.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d48d3694467e4153af369475672e4811','0','2','0'), ('33581','16','','10381','[{#JMXIGNITEINSTANCENAME}]: Communication outbound messages queue','jmx["{#JMXOBJ}",OutboundMessagesQueueSize]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Outbound messages queue size.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c6d996a3b2754963a916f44e8e99e828','0','2','0'), ('33582','16','','10381','[{#JMXIGNITEINSTANCENAME}]: Communication messages received, rate','jmx["{#JMXOBJ}",ReceivedMessagesCount]','1m','31d','365d','0','0','','!msg/s','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The number of messages received per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8a25c98dd3374e78ba26cebea1eaaebc','0','2','0'), ('33584','16','','10381','[{#JMXIGNITEINSTANCENAME}]: Communication messages sent, rate','jmx["{#JMXOBJ}",SentMessagesCount]','1m','31d','365d','0','0','','!msg/s','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The number of messages sent per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6eacaf2c8e9e4f53991d547f81731780','0','2','0'), ('33585','16','','10381','[{#JMXIGNITEINSTANCENAME}]: Coordinator','jmx["{#JMXOBJ}",Coordinator]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Current coordinator UUID.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d7a4b267f29b4baab3af479e7b49ae66','0','2','0'), ('33586','16','','10381','[{#JMXIGNITEINSTANCENAME}]: Discovery message worker queue','jmx["{#JMXOBJ}",MessageWorkerQueueSize]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Message worker queue current size.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7b7a7edb2602436c8b53d6f9f4ea2236','0','2','0'), ('33587','16','','10381','[{#JMXIGNITEINSTANCENAME}]: Nodes failed','jmx["{#JMXOBJ}",NodesFailed]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Nodes failed count.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d933d5036b1f41358130c512af1161c6','0','2','0'), ('33588','16','','10381','[{#JMXIGNITEINSTANCENAME}]: Nodes joined','jmx["{#JMXOBJ}",NodesJoined]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Nodes join count.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4464386c72704016a790371e8117896c','0','2','0'), ('33589','16','','10381','[{#JMXIGNITEINSTANCENAME}]: Nodes left','jmx["{#JMXOBJ}",NodesLeft]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Nodes left count.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fda81af6a86948b394b53f1ec505993a','0','2','0'), ('33590','16','','10381','[{#JMXIGNITEINSTANCENAME}]: Discovery reconnect, rate','jmx["{#JMXOBJ}",ReconnectCount]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Number of times node tries to (re)establish connection to another node per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','57aeab81263f45fba8189347d5446045','0','2','0'), ('33591','16','','10381','[{#JMXIGNITEINSTANCENAME}]: TotalProcessedMessages','jmx["{#JMXOBJ}",TotalProcessedMessages]','1m','31d','365d','0','0','','!msg/s','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The number of messages received per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','615e7eb22a2d46ab863628d40bff4d7d','0','2','0'), ('33592','16','','10381','[{#JMXIGNITEINSTANCENAME}]: Discovery messages received, rate','jmx["{#JMXOBJ}",TotalReceivedMessages]','1m','31d','365d','0','0','','!msg/s','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The number of messages processed per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b896207c7fda48ea9265cebfee12f6df','0','2','0'), ('33593','16','','10381','[{#JMXIGNITEINSTANCENAME}]: Locked keys','jmx["{#JMXOBJ}",LockedKeysNumber]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The number of keys locked on the node.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9bdf9d13664b405f9737590323bc4a1c','0','2','0'), ('33594','16','','10381','[{#JMXIGNITEINSTANCENAME}]: Transactions owner, current','jmx["{#JMXOBJ}",OwnerTransactionsNumber]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The number of active transactions for which this node is the initiator.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ac461a17802440a8906ea7471659935a','0','2','0'), ('33595','16','','10381','[{#JMXIGNITEINSTANCENAME}]: Transactions committed, rate','jmx["{#JMXOBJ}",TransactionsCommittedNumber]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The number of transactions which were committed per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3754810fbb1f47fe858880ada9f40921','0','2','0'), ('33596','16','','10381','[{#JMXIGNITEINSTANCENAME}]: Transactions holding lock, current','jmx["{#JMXOBJ}",TransactionsHoldingLockNumber]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The number of active transactions holding at least one key lock.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ff5a1a7f579c430c8f1860d241bd8b2f','0','2','0'), ('33597','16','','10381','[{#JMXIGNITEINSTANCENAME}]: Transactions rolledback, rate','jmx["{#JMXOBJ}",TransactionsRolledBackNumber]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The number of transactions which were rollback per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3de3a27adea84e9cbb2cae812a3bc9c6','0','2','0'), ('33598','16','','10381','Cache group [{#JMXNAME}]: Backups','jmx["{#JMXOBJ}",Backups]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Count of backups configured for cache group.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0014580397654a279b3c8906e457ee74','0','2','0'), ('33599','16','','10381','Cache group [{#JMXNAME}]: Caches','jmx["{#JMXOBJ}",Caches]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'List of caches.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8b5acfc3a3c64714b57381fc0ae6b1a6','0','2','0'), ('33600','16','','10381','Cache group [{#JMXNAME}]: Local node partitions, moving','jmx["{#JMXOBJ}",LocalNodeMovingPartitionsCount]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Count of partitions with state MOVING for this cache group located on this node.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','253059e09010451f94ad0e6b10be7cc5','0','2','0'), ('33601','16','','10381','Cache group [{#JMXNAME}]: Local node partitions, owning','jmx["{#JMXOBJ}",LocalNodeOwningPartitionsCount]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Count of partitions with state OWNING for this cache group located on this node.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','84edf5609ef94d0185a15a606384e609','0','2','0'), ('33602','16','','10381','Cache group [{#JMXNAME}]: Local node entries, renting','jmx["{#JMXOBJ}",LocalNodeRentingEntriesCount]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Count of entries remains to evict in RENTING partitions located on this node for this cache group.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','314499dd6d214bdcbc524f83c6cbaa2b','0','2','0'), ('33603','16','','10381','Cache group [{#JMXNAME}]: Local node partitions, renting','jmx["{#JMXOBJ}",LocalNodeRentingPartitionsCount]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Count of partitions with state RENTING for this cache group located on this node.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','06aff67a70624af899b2f111d7e6c34b','0','2','0'), ('33604','16','','10381','Cache group [{#JMXNAME}]: Partition copies, max','jmx["{#JMXOBJ}",MaximumNumberOfPartitionCopies]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Maximum number of partition copies for all partitions of this cache group.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6888861452b64b9e90ece1d1ab97ab4d','0','2','0'), ('33605','16','','10381','Cache group [{#JMXNAME}]: Partition copies, min','jmx["{#JMXOBJ}",MinimumNumberOfPartitionCopies]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Minimum number of partition copies for all partitions of this cache group.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9910268fcb3a46aca2eeaf581420ca31','0','2','0'), ('33606','16','','10381','Cache group [{#JMXNAME}]: Partitions','jmx["{#JMXOBJ}",Partitions]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Count of partitions for cache group.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','edc59b661b004f9a8687b6a6b0e1dc09','0','2','0'), ('33607','16','','10381','Thread pool [{#JMXNAME}]: Pool size, core','jmx["{#JMXOBJ}",CorePoolSize]','1m','31d','365d','0','3','','!msg','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The core number of threads.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1646bb35234742bb894a5abfd1fbf021','0','2','0'), ('33608','16','','10381','Thread pool [{#JMXNAME}]: Pool size, max','jmx["{#JMXOBJ}",MaximumPoolSize]','1m','31d','365d','0','3','','!msg','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The maximum allowed number of threads.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','959cfe87996b4d6886bb90db2265deef','0','2','0'), ('33609','16','','10381','Thread pool [{#JMXNAME}]: Pool size','jmx["{#JMXOBJ}",PoolSize]','1m','31d','365d','0','3','','!msg','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Current number of threads in the pool.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6c7897c2f2c842988a1e6802eb11adde','0','2','0'), ('33610','16','','10381','Thread pool [{#JMXNAME}]: Queue size','jmx["{#JMXOBJ}",QueueSize]','1m','31d','365d','0','3','','!msg','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Current size of the execution queue.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0b4b22918f374603a2f14efc95c217da','0','2','0'), ('33611','16','','10381','Cache group [{#JMXGROUP}]: Cache gets, rate','jmx["{#JMXOBJ}",CacheGets]','1m','31d','365d','0','0','','ops','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The number of gets to the cache per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','372f156464634c2b98c2ce3bfe9ac2f4','0','2','0'), ('33612','16','','10381','Cache group [{#JMXGROUP}]: Cache hits, pct','jmx["{#JMXOBJ}",CacheHitPercentage]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Percentage of successful hits.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5e633d192b3a472e9a29b4e0a0013ab1','0','2','0'), ('33613','16','','10381','Cache group [{#JMXGROUP}]: Cache misses, pct','jmx["{#JMXOBJ}",CacheMissPercentage]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'Percentage of accesses that failed to find anything.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0d79c416c12748f9a3471003ce4d88fb','0','2','0'), ('33614','16','','10381','Cache group [{#JMXGROUP}]: Cache puts, rate','jmx["{#JMXOBJ}",CachePuts]','1m','31d','365d','0','0','','ops','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The number of puts to the cache per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fb324608d65545c79e71df0978d0d053','0','2','0'), ('33615','16','','10381','Cache group [{#JMXGROUP}]: Cache removals, rate','jmx["{#JMXOBJ}",CacheRemovals]','1m','31d','365d','0','0','','ops','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The number of removals from the cache per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','503f39545fa04af79e8dc85f0550ed6b','0','2','0'), ('33616','16','','10381','Cache group [{#JMXGROUP}]: Cache size','jmx["{#JMXOBJ}",CacheSize]','1m','31d','365d','0','3','','!keys','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The number of non-null values in the cache as a long value.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','182dea03e7d64425aea8c64e1d5714ba','0','2','0'), ('33617','16','','10381','Cache group [{#JMXGROUP}]: Cache transaction commits, rate','jmx["{#JMXOBJ}",CacheTxCommits]','1m','31d','365d','0','0','','!tps','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The number of transaction commits per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','74119c1570c24155b450db6e5c1126cd','0','2','0'), ('33618','16','','10381','Cache group [{#JMXGROUP}]: Cache transaction rollbacks, rate','jmx["{#JMXOBJ}",CacheTxRollbacks]','1m','31d','365d','0','0','','!tps','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The number of transaction rollback per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','34d8a8ac772a48c486bfb101e7129fd8','0','2','0'), ('33619','16','','10381','Cache group [{#JMXGROUP}]: Cache heap entries','jmx["{#JMXOBJ}",HeapEntriesCount]','1m','31d','365d','0','3','','!keys','','',NULL,NULL,'','','0','{$IGNITE.USER}','{$IGNITE.PASSWORD}','','','2',NULL,'The number of entries in heap memory.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cb6b9006d41c46f29ff902a76a27c6f5','0','2','0'), ('33620','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10256','Temperature Discovery System','tempDescr.discovery.system','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with system(3) filter','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4d513f2958ac483383ff803df781bd76','0','2','0'), ('33621','20','get[1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}]','10256','{#SNMPINDEX}: Temperature sensor condition','sensor.temp.condition[cpqHeTemperatureCondition.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'217','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The Temperature sensor condition. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system. The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ac352f7b00d6478daf601d0f7cb508e4','0','2','0'), ('33622','20','get[1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}]','10256','Ambient: Temperature sensor condition','sensor.temp.condition[cpqHeTemperatureCondition.Ambient.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'217','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The Temperature sensor condition. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system. The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','da102e6fc86b49c7bd57c2805ca08675','0','2','0'), ('33623','20','get[1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}]','10256','CPU-{#SNMPINDEX}: Temperature sensor condition','sensor.temp.condition[cpqHeTemperatureCondition.CPU.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'217','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The Temperature sensor condition. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system. The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4cad241ca3bd4382879bebabc4f42201','0','2','0'), ('33624','20','get[1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}]','10256','I/O-{#SNMPINDEX}: Temperature sensor condition','sensor.temp.condition[cpqHeTemperatureCondition."I/O.{#SNMPINDEX}"]','1m','31d','365d','0','3','','','','',NULL,'217','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The Temperature sensor condition. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system. The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','51fbe5f6d6c1481e818eafa7cbe01295','0','2','0'), ('33625','20','get[1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}]','10256','I/O-{#SNMPINDEX}: Temperature','sensor.temp.value[cpqHeTemperatureCelsius."I/O.{#SNMPINDEX}"]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB Temperature readings of testpoint: I/O-{#SNMPINDEX}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5a37a9c96a9748468d10562bd1242aa0','0','2','0'), ('33626','20','get[1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}]','10256','Memory-{#SNMPINDEX}: Temperature sensor condition','sensor.temp.condition[cpqHeTemperatureCondition.Memory.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'217','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The Temperature sensor condition. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system. The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','861d683a933b4eb5989b0f5484a9a93d','0','2','0'), ('33627','20','get[1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}]','10256','PSU-{#SNMPINDEX}: Temperature sensor condition','sensor.temp.condition[cpqHeTemperatureCondition.PSU.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'217','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The Temperature sensor condition. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system. The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','01eea51183834c6a8ed7daf75abe6c87','0','2','0'), ('33628','20','get[1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}]','10256','System-{#SNMPINDEX}: Temperature sensor condition','sensor.temp.condition[cpqHeTemperatureCondition.System.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'217','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The Temperature sensor condition. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system. The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6adae921be5545c995cf24b2b900818c','0','2','0'), ('33629','20','get[1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}]','10256','System-{#SNMPINDEX}: Temperature','sensor.temp.value[cpqHeTemperatureCelsius.System.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB Temperature readings of testpoint: System-{#SNMPINDEX}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aa985d3fb0084e24bd9f3e81c249cae4','0','2','0'), ('33630','21','','10382','Get directory structure','sharepoint.get_dir','{$SHAREPOINT.GET_INTERVAL}','0','0','0','4','','','','',NULL,NULL,'try { const js_start = new Date().getTime(); var params = JSON.parse(value); var result = { status: 0, data: {} }; var req = new HttpRequest(); var out = {}; var queue = []; var node; var obj_iter_by_name; var cpath; var current_folder; var child_folders; var child_files; var obj_iter_file; req.addHeader(''Accept: application/json; odata=verbose''); req.setHttpAuth(HTTPAUTH_NTLM, params.user, params.password); queue.push({ patch: params.root, json: [] }); while (queue.length) { node = queue.pop(); obj_iter_by_name = out; cpath = node.json.slice() current_folder = JSON.parse(req.get(encodeURI(params.url + "/_api/web/GetFolderByServerRelativeUrl(''" + node.patch.replace("''", "''''") + "'')"))); result.status = req.getStatus(); if (result.status != 200) { throw result.status; } cpath.forEach(function (nd) { obj_iter_by_name = obj_iter_by_name[nd] }); obj_iter_by_name[current_folder.d.Name] = { meta: { size: 0, created: Math.round(new Date(current_folder.d.TimeCreated).getTime() / 1000), modified: Math.round(new Date(current_folder.d.TimeLastModified).getTime() / 1000) }, data: {} } child_folders = JSON.parse(req.get(encodeURI(params.url + "/_api/web/GetFolderByServerRelativeUrl(''" + node.patch.replace("''", "''''") + "'')/Folders"))); cpath.push(current_folder.d.Name, "data"); child_folders.d.results.forEach(function (dir) { queue.push({ patch: dir.ServerRelativeUrl, json: cpath }); }); child_files = JSON.parse(req.get(encodeURI(params.url + "/_api/web/GetFolderByServerRelativeUrl(''" + node.patch.replace("''", "''''") + "'')/Files"))); child_files.d.results.forEach(function (file) { obj_iter_by_name[current_folder.d.Name].data[file.Name] = { meta: { size: file.Length, created: Math.round(new Date(file.TimeCreated).getTime() / 1000), modified: Math.round(new Date(file.TimeLastModified).getTime() / 1000) } }; obj_iter_file = out; cpath.forEach(function (nd) { obj_iter_file = obj_iter_file[nd]; if (nd != "data") { obj_iter_file.meta.size += +file.Length; } }); }); } result.data = out; } catch (error) { Zabbix.log(3, "Sharepoint fs scan failed: " + params.url + " Error: " + error); if (!Number.isInteger(error)) result.status = 520; } result.time = new Date().getTime() - js_start; return JSON.stringify(result);','','0','','','','','0',NULL,'Used to get directory structure information','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','71e23c666b84414490589a509b60c488','0','2','0'), ('33631','19','','10382','Health score','sharepoint.health_score','1m','31d','365d','0','3','','','','',NULL,NULL,'','','2','{$SHAREPOINT.USER}','{$SHAREPOINT.PASSWORD}','','','0',NULL,'This item specifies a value between 0 and 10, where 0 represents a low load and a high ability to process requests and 10 represents a high load and that the server is throttling requests to maintain adequate throughput.','0','30d','0','',NULL,'','{$SHAREPOINT.URL}','','','200','1','0','','','1','3','0','0','0','0','0','7b59d767712f49b3bbc17947999ca944','0','2','0'), ('33634','21','','10382','Directory discovery','sharepoint.directory.discovery','{$SHAREPOINT.LLD_INTERVAL}','90d','0','0','4','','','','',NULL,NULL,'try { var params = JSON.parse(value); var result = []; var req = new HttpRequest(); var queue = []; var node; var current_folder; var child_folders; var child_files; req.addHeader(''Accept: application/json; odata=verbose''); req.setHttpAuth(HTTPAUTH_NTLM, params.user, params.password); queue.push({ patch: params.root, json_query: ''$["data"]'' }); while (queue.length) { node = queue.pop(); current_folder = JSON.parse(req.get(encodeURI(params.url + "/_api/web/GetFolderByServerRelativeUrl(''" + node.patch.replace("''", "''''") + "'')"))); result.status = req.getStatus(); if (result.status != 200) { throw result.status; } result.push({ ''{#SHAREPOINT.LLD.NAME}'': current_folder.d.Name, ''{#SHAREPOINT.LLD.TYPE}'': ''FOLDER'', ''{#SHAREPOINT.LLD.FULL_PATH}'': node.patch, ''{#SHAREPOINT.LLD.JSON_PATH}'': node.json_query + ''["'' + current_folder.d.Name + ''"]'', ''{#SHAREPOINT.LLD.SIZE}'': 0, ''{#SHAREPOINT.LLD.CREATED}'': Math.round(new Date(current_folder.d.TimeCreated).getTime() / 1000), ''{#SHAREPOINT.LLD.MODIFIED}'': Math.round(new Date(current_folder.d.TimeLastModified).getTime() / 1000) }); child_folders = JSON.parse(req.get(encodeURI(params.url + "/_api/web/GetFolderByServerRelativeUrl(''" + node.patch.replace("''", "''''") + "'')/Folders"))); child_folders.d.results.forEach(function (dir) { queue.push({ patch: dir.ServerRelativeUrl, json_query: node.json_query + ''["'' + current_folder.d.Name + ''"]["data"]'' }); }); child_files = JSON.parse(req.get(encodeURI(params.url + "/_api/web/GetFolderByServerRelativeUrl(''" + node.patch.replace("''", "''''") + "'')/Files"))); child_files.d.results.forEach(function (file) { result.push({ ''{#SHAREPOINT.LLD.NAME}'': file.Name, ''{#SHAREPOINT.LLD.TYPE}'': ''FILE'', ''{#SHAREPOINT.LLD.FULL_PATH}'': file.ServerRelativeUrl, ''{#SHAREPOINT.LLD.JSON_PATH}'': node.json_query + ''["'' + current_folder.d.Name + ''"]'' + ''["data"]["'' + file.Name + ''"]'', ''{#SHAREPOINT.LLD.SIZE}'': file.Length, ''{#SHAREPOINT.LLD.CREATED}'': Math.round(new Date(file.TimeCreated).getTime() / 1000), ''{#SHAREPOINT.LLD.MODIFIED}'': Math.round(new Date(file.TimeLastModified).getTime() / 1000) }); }); } } catch (error) { Zabbix.log(3, "Sharepoint fs discovery failed: " + params.url + " Error: " + error); return "Sharepoint fs discovery failed: " + params.url + " Error: " + error; } return JSON.stringify(result);','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0fe7e8e5480a42b7903cb7ac9bf931cc','0','2','0'), ('33638','3','','10174','Host memory consumed','vmware.vm.memory.size.consumed[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Amount of host physical memory consumed for backing up guest physical memory pages.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','04a40f805fed4ddfa1590274a996a019','0','2','0'), ('33639','3','','10174','Host memory usage in percent','vmware.vm.memory.usage[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Percentage of host physical memory that has been consumed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e82daa73e03e43b9838d9e414d710e38','0','2','0'), ('33640','3','','10174','CPU latency in percent','vmware.vm.cpu.latency[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Percentage of time the VM is unable to run because it is contending for access to the physical CPU(s).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','31389342688f4b0696a49431923a528f','0','2','0'), ('33641','3','','10174','Uptime of guest OS','vmware.vm.guest.osuptime[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Total time elapsed since the last operating system boot-up (in seconds). Data is collected if Guest OS Add-ons (VMware Tools) are installed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','521a0396514845e3bc5d3dc54ec3d940','0','2','0'), ('33642','3','','10174','Guest memory swapped','vmware.vm.guest.memory.size.swapped[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Amount of guest physical memory that is swapped out to the swap space.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e645130999db470fbbf14a8055c95b23','0','2','0'), ('33643','3','','10174','CPU usage in percent','vmware.vm.cpu.usage.perf[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'CPU usage as a percentage during the interval.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','50606be978814b51b4bae54340965cdc','0','2','0'), ('33644','3','','10174','CPU swap-in latency in percent','vmware.vm.cpu.swapwait[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Percentage of CPU time spent waiting for a swap-in.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','50de05f27f33425cb207a3fdece7ecb1','0','2','0'), ('33645','3','','10174','CPU readiness latency in percent','vmware.vm.cpu.readiness[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Percentage of time that the virtual machine was ready, but was unable to get scheduled to run on the physical CPU.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f4d72109b7ee4e0bb65aab1de85b6b05','0','2','0'), ('33646','3','','10175','Power usage','vmware.hv.power[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1m','31d','365d','0','3','','!W','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Current power usage.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','179a981cf30f4f77869e3b50dc2bc333','0','2','0'), ('33647','3','','10175','Power usage maximum allowed','vmware.hv.power[{$VMWARE.URL},{$VMWARE.HV.UUID},max]','1m','31d','365d','0','3','','!W','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Maximum allowed power usage.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e4116d7c7e234c5ebd5784f42ade1f2e','0','2','0'), ('33648','3','','10175','CPU utilization','vmware.hv.cpu.utilization[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'CPU utilization as a percentage during the interval depends on power management or hyper-threading.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aad168c33cd14f76aa14ab5ca26498ec','0','2','0'), ('33649','3','','10175','CPU usage in percent','vmware.hv.cpu.usage.perf[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'CPU usage as a percentage during the interval.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c4ebd62118464e7a8d1945f80d70f8ae','0','2','0'), ('33650','3','','10174','Network utilization on interface [{#IFBACKINGDEVICE}]/[{#IFDESC}]','vmware.vm.net.if.usage[{$VMWARE.URL},{$VMWARE.VM.UUID},{#IFNAME}]','1m','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware virtual machine network utilization (combined transmit and receive rates) during the interval.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9c3cd13576cc4c0a8972fa188f911e96','0','2','0'), ('33651','3','','10174','Average number of outstanding read requests to the disk [{#DISKDESC}]','vmware.vm.storage.readoio[{$VMWARE.URL},{$VMWARE.VM.UUID},{#DISKNAME}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'Average number of outstanding read requests to the virtual disk during the collection interval.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a4886b1072314819aaf21183949c94bb','0','2','0'), ('33652','3','','10174','Average read latency from the disk [{#DISKDESC}]','vmware.vm.storage.totalreadlatency[{$VMWARE.URL},{$VMWARE.VM.UUID},{#DISKNAME}]','1m','31d','365d','0','3','','!ms','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'The average time a read from the virtual disk takes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','172e4882d39f49d486ab5590163fdd4b','0','2','0'), ('33653','3','','10174','Average write latency to the disk [{#DISKDESC}]','vmware.vm.storage.totalwritelatency[{$VMWARE.URL},{$VMWARE.VM.UUID},{#DISKNAME}]','1m','31d','365d','0','3','','!ms','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'The average time a write to the virtual disk takes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4fe54828be084b15bb92507106756a5f','0','2','0'), ('33654','3','','10174','Average number of outstanding write requests to the disk [{#DISKDESC}]','vmware.vm.storage.writeoio[{$VMWARE.URL},{$VMWARE.VM.UUID},{#DISKNAME}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'Average number of outstanding write requests to the virtual disk during the collection interval.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a74614af101c404eb7ebec10319dca05','0','2','0'), ('33655','3','','10175','Multipath count for datastore [{#DATASTORE}]','vmware.hv.datastore.multipath[{$VMWARE.URL},{$VMWARE.HV.UUID},{#DATASTORE.UUID}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'Number of available datastore paths.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','65e6c165c3674953b2845d4101a9a6bf','0','2','0'), ('33691','20','get[1.3.6.1.4.1.34774.4.1.1.3.0]','10385','Status','huawei.5300.v5[status]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'System running status.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','86d978c810024643829d3192156e9e6c','0','2','0'), ('33692','20','get[1.3.6.1.4.1.34774.4.1.1.5.0]','10385','Capacity total','huawei.5300.v5[totalCapacity]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total capacity of a device.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','04c8d7f53668449ea32c4ed611b71237','0','2','0'), ('33693','20','get[1.3.6.1.4.1.34774.4.1.1.4.0]','10385','Capacity used','huawei.5300.v5[usedCapacity]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Used capacity of a device.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ef77f126052b4f9e9cddafdab20577d1','0','2','0'), ('33694','20','get[1.3.6.1.4.1.34774.4.1.1.6.0]','10385','Version','huawei.5300.v5[version]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The device version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0a2e129d84d14e88bf953f3a9ca76b46','0','2','0'), ('33695','20','discovery[{#ID},1.3.6.1.4.1.34774.4.1.23.5.5.1.1,{#LOCATION},1.3.6.1.4.1.34774.4.1.23.5.5.1.2]','10385','BBU discovery','huawei.5300.bbu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of BBU','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6de9606d1f594546b76e79bbb72a8a56','0','2','0'), ('33696','20','discovery[{#ID},1.3.6.1.4.1.34774.4.1.23.5.2.1.1]','10385','Controllers discovery','huawei.5300.controllers.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of controllers','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c676eae5d7c548e788f7addc2343389f','0','2','0'), ('33697','20','discovery[{#ID},1.3.6.1.4.1.34774.4.1.23.5.1.1.1,{#MODEL},1.3.6.1.4.1.34774.4.1.23.5.1.1.12,{#LOCATION},1.3.6.1.4.1.34774.4.1.23.5.1.1.4]','10385','Disks discovery','huawei.5300.disks.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of disks','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3a0b0a1fcdd9402cb67e93903049b070','0','2','0'), ('33698','20','discovery[{#NAME},1.3.6.1.4.1.34774.4.1.23.5.6.1.2]','10385','Enclosure discovery','huawei.5300.enclosure.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of enclosures','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','21e6235b6b314ce6a6392aafc9a3de07','0','2','0'), ('33699','20','discovery[{#ID},1.3.6.1.4.1.34774.4.1.23.5.4.1.1,{#LOCATION},1.3.6.1.4.1.34774.4.1.23.5.4.1.2]','10385','FANs discovery','huawei.5300.fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of FANs','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ae390e1c100d490ab4e878bac8951744','0','2','0'), ('33700','20','discovery[{#NAME},1.3.6.1.4.1.34774.4.1.19.9.4.1.2]','10385','LUNs discovery','huawei.5300.lun.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of LUNs','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aeb30b2aec4842bfb0a9f946988783a2','0','2','0'), ('33701','20','discovery[{#NODE},1.3.6.1.4.1.34774.4.1.21.3.1.1]','10385','Nodes performance discovery','huawei.5300.nodes.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of nodes performance counters','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6b934c21d8c54adf8b2e6d28e250537b','0','2','0'), ('33702','20','discovery[{#NAME},1.3.6.1.4.1.34774.4.1.23.4.2.1.2,{#THRESHOLD},1.3.6.1.4.1.34774.4.1.23.4.2.1.14]','10385','Storage pools discovery','huawei.5300.pool.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of storage pools','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','746fcf5132a54e0588713e6313d03e02','0','2','0'), ('33703','20','get[1.3.6.1.4.1.34774.4.1.23.5.5.1.3.{#SNMPINDEX}]','10385','BBU {#ID} on {#LOCATION}: Health status','huawei.5300.v5[hwInfoBBUHealthStatus, "{#ID}:{#LOCATION}"]','1m','31d','365d','0','3','','','','',NULL,'220','','','0','','','','','2',NULL,'Health status of a BBU. For details, see definition of Enum Values (HEALTH_STATUS_E). https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e9632c3596954729a8d49039ea787efd','0','2','0'), ('33704','20','get[1.3.6.1.4.1.34774.4.1.23.5.5.1.4.{#SNMPINDEX}]','10385','BBU {#ID} on {#LOCATION}: Running status','huawei.5300.v5[hwInfoBBURunningStatus, "{#ID}:{#LOCATION}"]','1m','31d','365d','0','3','','','','',NULL,'222','','','0','','','','','2',NULL,'Running status of a BBU. For details, see definition of Enum Values (RUNNING_STATUS_E). https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a861b76edde842448f39afd9788fa852','0','2','0'), ('33705','20','get[1.3.6.1.4.1.34774.4.1.23.5.2.1.8.{#SNMPINDEX}]','10385','Controller {#ID}: CPU utilization','huawei.5300.v5[hwInfoControllerCPUUsage, "{#ID}"]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'CPU usage of a controller {#ID}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f9023618aa2b4c23a81c8cc3793bac0d','0','2','0'), ('33706','20','get[1.3.6.1.4.1.34774.4.1.23.5.2.1.2.{#SNMPINDEX}]','10385','Controller {#ID}: Health status','huawei.5300.v5[hwInfoControllerHealthStatus, "{#ID}"]','1m','31d','365d','0','3','','','','',NULL,'220','','','0','','','','','2',NULL,'Controller health status. For details, see definition of Enum Values (HEALTH_STATUS_E). https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','99798c647f2344d2896b644f2bd7e1c0','0','2','0'), ('33707','20','get[1.3.6.1.4.1.34774.4.1.23.5.2.1.9.{#SNMPINDEX}]','10385','Controller {#ID}: Memory utilization','huawei.5300.v5[hwInfoControllerMemoryUsage, "{#ID}"]','1m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Memory usage of a controller {#ID}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','42b61bf322fb495d94802c23f85f22b2','0','2','0'), ('33708','20','get[1.3.6.1.4.1.34774.4.1.23.5.2.1.6.{#SNMPINDEX}]','10385','Controller {#ID}: Role','huawei.5300.v5[hwInfoControllerRole, "{#ID}"]','1m','31d','365d','0','3','','','','',NULL,'219','','','0','','','','','2',NULL,'Controller role.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4797e9608d2445e385ad9db6097feeeb','0','2','0'), ('33709','20','get[1.3.6.1.4.1.34774.4.1.23.5.2.1.3.{#SNMPINDEX}]','10385','Controller {#ID}: Running status','huawei.5300.v5[hwInfoControllerRunningStatus, "{#ID}"]','1m','31d','365d','0','3','','','','',NULL,'222','','','0','','','','','2',NULL,'Controller running status. For details, see definition of Enum Values (RUNNING_STATUS_E). https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b9a0053b16c04cefbdfc320659d79754','0','2','0'), ('33710','20','get[1.3.6.1.4.1.34774.4.1.23.5.1.1.25.{#SNMPINDEX}]','10385','Disk {#MODEL} on {#LOCATION}: Health score','huawei.5300.v5[hwInfoDiskHealthMark, "{#ID}"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Health score of a disk. If the value is 255, indicating invalid.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4952b2d54c3a4bb98e26f8221d2833a8','0','2','0'), ('33711','20','get[1.3.6.1.4.1.34774.4.1.23.5.1.1.2.{#SNMPINDEX}]','10385','Disk {#MODEL} on {#LOCATION}: Health status','huawei.5300.v5[hwInfoDiskHealthStatus, "{#ID}"]','1m','31d','365d','0','3','','','','',NULL,'220','','','0','','','','','2',NULL,'Disk health status. For details, see definition of Enum Values (HEALTH_STATUS_E). https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d30c2d9d18d54af08c18bd35b5664a0d','0','2','0'), ('33712','20','get[1.3.6.1.4.1.34774.4.1.23.5.1.1.3.{#SNMPINDEX}]','10385','Disk {#MODEL} on {#LOCATION}: Running status','huawei.5300.v5[hwInfoDiskRunningStatus, "{#ID}"]','1m','31d','365d','0','3','','','','',NULL,'222','','','0','','','','','2',NULL,'Disk running status. For details, see definition of Enum Values (RUNNING_STATUS_E). https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d5f1c54d524847ebae2015968e772d92','0','2','0'), ('33713','20','get[1.3.6.1.4.1.34774.4.1.23.5.1.1.11.{#SNMPINDEX}]','10385','Disk {#MODEL} on {#LOCATION}: Temperature','huawei.5300.v5[hwInfoDiskTemperature, "{#ID}"]','1m','31d','365d','0','3','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'Disk temperature.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','769abd2f1a8d43cda52c8021c20fe3c4','0','2','0'), ('33714','20','get[1.3.6.1.4.1.34774.4.1.23.5.6.1.4.{#SNMPINDEX}]','10385','Enclosure {#NAME}: Health status','huawei.5300.v5[hwInfoEnclosureHealthStatus, "{#NAME}"]','1m','31d','365d','0','3','','','','',NULL,'220','','','0','','','','','2',NULL,'Enclosure health status. For details, see definition of Enum Values (HEALTH_STATUS_E). https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a2be3a03bccf48a0baa067d8ef83a3b1','0','2','0'), ('33715','20','get[1.3.6.1.4.1.34774.4.1.23.5.6.1.5.{#SNMPINDEX}]','10385','Enclosure {#NAME}: Running status','huawei.5300.v5[hwInfoEnclosureRunningStatus, "{#NAME}"]','1m','31d','365d','0','3','','','','',NULL,'222','','','0','','','','','2',NULL,'Enclosure running status. For details, see definition of Enum Values (RUNNING_STATUS_E). https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b96af65318d64932bc13e8e81155644c','0','2','0'), ('33716','20','get[1.3.6.1.4.1.34774.4.1.23.5.6.1.8.{#SNMPINDEX}]','10385','Enclosure {#NAME}: Temperature','huawei.5300.v5[hwInfoEnclosureTemperature, "{#NAME}"]','1m','31d','365d','0','3','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'Enclosure temperature.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','37fa5a5f2d7d440dbb38781bddf5cd46','0','2','0'), ('33717','20','get[1.3.6.1.4.1.34774.4.1.23.5.4.1.3.{#SNMPINDEX}]','10385','FAN {#ID} on {#LOCATION}: Health status','huawei.5300.v5[hwInfoFanHealthStatus, "{#ID}:{#LOCATION}"]','1m','31d','365d','0','3','','','','',NULL,'220','','','0','','','','','2',NULL,'Health status of a fan. For details, see definition of Enum Values (HEALTH_STATUS_E). https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c75f70a1c6d44a87aec0b27c3d9fbf5e','0','2','0'), ('33718','20','get[1.3.6.1.4.1.34774.4.1.23.5.4.1.4.{#SNMPINDEX}]','10385','FAN {#ID} on {#LOCATION}: Running status','huawei.5300.v5[hwInfoFanRunningStatus, "{#ID}:{#LOCATION}"]','1m','31d','365d','0','3','','','','',NULL,'222','','','0','','','','','2',NULL,'Operating status of a fan. For details, see definition of Enum Values (RUNNING_STATUS_E). https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','800d348ca4394215800c227b421e9bea','0','2','0'), ('33719','20','get[1.3.6.1.4.1.34774.4.1.21.4.1.13.{#SNMPINDEX}]','10385','LUN {#NAME}: Average total I/O latency','huawei.5300.v5[hwPerfLunAverageIOResponseTime, "{#NAME}"]','1m','31d','365d','0','3','','!ms','','',NULL,NULL,'','','0','','','','','2',NULL,'Average I/O latency of the node in milliseconds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d434317e77514a18907a400f68ad773e','0','2','0'), ('33720','20','get[1.3.6.1.4.1.34774.4.1.21.4.1.15.{#SNMPINDEX}]','10385','LUN {#NAME}: Average read I/O latency','huawei.5300.v5[hwPerfLunAverageReadIOLatency, "{#NAME}"]','1m','31d','365d','0','3','','!ms','','',NULL,NULL,'','','0','','','','','2',NULL,'Average read I/O response time in milliseconds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','75e6ce80f06c4b3b86a13de4aadf25d7','0','2','0'), ('33721','20','get[1.3.6.1.4.1.34774.4.1.21.4.1.16.{#SNMPINDEX}]','10385','LUN {#NAME}: Average write I/O latency','huawei.5300.v5[hwPerfLunAverageWriteIOLatency, "{#NAME}"]','1m','31d','365d','0','3','','!ms','','',NULL,NULL,'','','0','','','','','2',NULL,'Average write I/O response time in milliseconds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b639b6cc20524fe1a5c415a6218b5382','0','2','0'), ('33722','20','get[1.3.6.1.4.1.34774.4.1.21.4.1.4.{#SNMPINDEX}]','10385','LUN {#NAME}: Read operations per second','huawei.5300.v5[hwPerfLunReadIOPS, "{#NAME}"]','1m','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'Read IOPS of the node.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6e2c299282f045cca7a07dedd30b5f89','0','2','0'), ('33723','20','get[1.3.6.1.4.1.34774.4.1.21.4.1.7.{#SNMPINDEX}]','10385','LUN {#NAME}: Read traffic per second','huawei.5300.v5[hwPerfLunReadTraffic, "{#NAME}"]','1m','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Current read bandwidth for the LUN.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8e376b38196b4954895b10aefbdf65ba','0','2','0'), ('33724','20','get[1.3.6.1.4.1.34774.4.1.21.4.1.3.{#SNMPINDEX}]','10385','LUN {#NAME}: Total I/O per second','huawei.5300.v5[hwPerfLunTotalIOPS, "{#NAME}"]','1m','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'Current IOPS of the LUN.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4d83d160c92845c9ac0f51f5f0158c3b','0','2','0'), ('33725','20','get[1.3.6.1.4.1.34774.4.1.21.4.1.6.{#SNMPINDEX}]','10385','LUN {#NAME}: Total traffic per second','huawei.5300.v5[hwPerfLunTotalTraffic, "{#NAME}"]','1m','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Current total bandwidth for the LUN.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1bbe8185981349dcb8a867955ff19c2f','0','2','0'), ('33726','20','get[1.3.6.1.4.1.34774.4.1.21.4.1.5.{#SNMPINDEX}]','10385','LUN {#NAME}: Write operations per second','huawei.5300.v5[hwPerfLunWriteIOPS, "{#NAME}"]','1m','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'Write IOPS of the node.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1aed4e060c9743caa13d1ace2cee16f3','0','2','0'), ('33727','20','get[1.3.6.1.4.1.34774.4.1.21.4.1.8.{#SNMPINDEX}]','10385','LUN {#NAME}: Write traffic per second','huawei.5300.v5[hwPerfLunWriteTraffic, "{#NAME}"]','1m','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Current write bandwidth for the LUN.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4a21edb8ea37437f8435565e04c5ce28','0','2','0'), ('33728','20','get[1.3.6.1.4.1.34774.4.1.19.9.4.1.5.{#SNMPINDEX}]','10385','LUN {#NAME}: Capacity','huawei.5300.v5[hwStorageLunCapacity, "{#NAME}"]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Capacity of the LUN.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4c85003e7f7441adb4490efcb03e477e','0','2','0'), ('33729','20','get[1.3.6.1.4.1.34774.4.1.19.9.4.1.11.{#SNMPINDEX}]','10385','LUN {#NAME}: Status','huawei.5300.v5[hwStorageLunStatus, "{#NAME}"]','1m','31d','365d','0','3','','','','',NULL,'221','','','0','','','','','2',NULL,'Status of the LUN.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f613af109f2846c88e845f626743232b','0','2','0'), ('33730','20','get[1.3.6.1.4.1.34774.4.1.21.3.1.2.{#SNMPINDEX}]','10385','Node {#NODE}: CPU utilization','huawei.5300.v5[hwPerfNodeCPUUsage, "{#NODE}"]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'CPU usage of the node {#NODE}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ac917a8a5b364f66a62c580cb6249c02','0','2','0'), ('33731','20','get[1.3.6.1.4.1.34774.4.1.21.3.1.4.{#SNMPINDEX}]','10385','Node {#NODE}: Average I/O latency','huawei.5300.v5[hwPerfNodeDelay, "{#NODE}"]','1m','31d','365d','0','0','','!ms','','',NULL,NULL,'','','0','','','','','2',NULL,'Average I/O latency of the node.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','336022218b44497f84056fce4ed4d2bf','0','2','0'), ('33732','20','get[1.3.6.1.4.1.34774.4.1.21.3.1.6.{#SNMPINDEX}]','10385','Node {#NODE}: Read operations per second','huawei.5300.v5[hwPerfNodeReadIOPS, "{#NODE}"]','1m','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'Read IOPS of the node.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3019a48ac4d34552a00c3344d04ec055','0','2','0'), ('33733','20','get[1.3.6.1.4.1.34774.4.1.21.3.1.9.{#SNMPINDEX}]','10385','Node {#NODE}: Read traffic per second','huawei.5300.v5[hwPerfNodeReadTraffic, "{#NODE}"]','1m','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Read bandwidth for the node.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e0c9807e30cc49c480f4862bf7228da8','0','2','0'), ('33734','20','get[1.3.6.1.4.1.34774.4.1.21.3.1.5.{#SNMPINDEX}]','10385','Node {#NODE}: Total I/O per second','huawei.5300.v5[hwPerfNodeTotalIOPS, "{#NODE}"]','1m','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'Total IOPS of the node.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1c3d8562d32d4412b649738c05350c4d','0','2','0'), ('33735','20','get[1.3.6.1.4.1.34774.4.1.21.3.1.8.{#SNMPINDEX}]','10385','Node {#NODE}: Total traffic per second','huawei.5300.v5[hwPerfNodeTotalTraffic, "{#NODE}"]','1m','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Total bandwidth for the node.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','604ab970767b4a4e80e5e2e29d30f9a1','0','2','0'), ('33736','20','get[1.3.6.1.4.1.34774.4.1.21.3.1.7.{#SNMPINDEX}]','10385','Node {#NODE}: Write operations per second','huawei.5300.v5[hwPerfNodeWriteIOPS, "{#NODE}"]','1m','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'Write IOPS of the node.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bd0c930ef95b4bb6838cac49dd38bf6f','0','2','0'), ('33737','20','get[1.3.6.1.4.1.34774.4.1.21.3.1.7.{#SNMPINDEX}]','10385','Node {#NODE}: Write traffic per second','huawei.5300.v5[hwPerfNodeWriteTraffic, "{#NODE}"]','1m','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Write bandwidth for the node.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4f5105903075422cb6643dca913df933','0','2','0'), ('33738','20','get[1.3.6.1.4.1.34774.4.1.23.4.2.1.9.{#SNMPINDEX}]','10385','Pool {#NAME}: Capacity free','huawei.5300.v5[hwInfoStoragePoolFreeCapacity, "{#NAME}"]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Available capacity of a storage pool.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','07d22960999a4d8392b90280bf8d3389','0','2','0'), ('33739','15','','10385','Pool {#NAME}: Capacity used percentage','huawei.5300.v5[hwInfoStoragePoolFreeCapacityPct, "{#NAME}"]','1m','31d','365d','0','3','','%','','',NULL,NULL,'last(//huawei.5300.v5[hwInfoStoragePoolSubscribedCapacity, "{#NAME}"])/last(//huawei.5300.v5[hwInfoStoragePoolTotalCapacity, "{#NAME}"])*100','','0','','','','','2',NULL,'Used capacity of a storage pool in percents.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a800b047bda64f528ad4d22698efaa7d','0','2','0'), ('33740','20','get[1.3.6.1.4.1.34774.4.1.23.4.2.1.5.{#SNMPINDEX}]','10385','Pool {#NAME}: Health status','huawei.5300.v5[hwInfoStoragePoolHealthStatus, "{#NAME}"]','1m','31d','365d','0','3','','','','',NULL,'220','','','0','','','','','2',NULL,'Health status of a storage pool. For details, see definition of Enum Values (HEALTH_STATUS_E). https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8a8bb086e75b4476af3686e5d28d8cfc','0','2','0'), ('33741','20','get[1.3.6.1.4.1.34774.4.1.23.4.2.1.6.{#SNMPINDEX}]','10385','Pool {#NAME}: Running status','huawei.5300.v5[hwInfoStoragePoolRunningStatus, "{#NAME}"]','1m','31d','365d','0','3','','','','',NULL,'222','','','0','','','','','2',NULL,'Operating status of a storage pool. For details, see definition of Enum Values (RUNNING_STATUS_E). https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a5e886744b82456e8a028f01d458307a','0','2','0'), ('33742','20','get[1.3.6.1.4.1.34774.4.1.23.4.2.1.8.{#SNMPINDEX}]','10385','Pool {#NAME}: Capacity used','huawei.5300.v5[hwInfoStoragePoolSubscribedCapacity, "{#NAME}"]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Used capacity of a storage pool.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8e59b01ae52b403a8e0da860c909faa1','0','2','0'), ('33743','20','get[1.3.6.1.4.1.34774.4.1.23.4.2.1.7.{#SNMPINDEX}]','10385','Pool {#NAME}: Capacity total','huawei.5300.v5[hwInfoStoragePoolTotalCapacity, "{#NAME}"]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total capacity of a storage pool.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e82a9a0946814522a517694df270a400','0','2','0'), ('33747','0','','10300','Healthcheck: alarms in effect in the cluster{#SINGLETON}','web.page.get["{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.CLUSTER_HOST}:{$RABBITMQ.API.PORT}/api/health/checks/alarms{#SINGLETON}"]','1m','31d','365d','0','3','','','','',NULL,'223','','','0','','','','','2',NULL,'It responds with a status code `200 OK` if there are no alarms in effect in the cluster. Otherwise, it responds with a status code `503 Service Unavailable`.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4c93b04164d24eb8b9dbdab652afc7bc','0','2','0'), ('33748','0','','10301','Healthcheck{#SINGLETON}','web.page.get["{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/healthchecks/node{#SINGLETON}"]','1m','31d','365d','0','3','','','','',NULL,'134','','','0','','','','','2',NULL,'It checks whether the RabbitMQ application is running; and whether the channels and queues can be listed successfully; and that no alarms are in effect.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8b959a9d03dc4ae8bed7292973f4fcc4','0','2','0'), ('33749','0','','10301','Healthcheck: expiration date on the certificates{#SINGLETON}','web.page.get["{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/health/checks/certificate-expiration/1/months{#SINGLETON}"]','1m','31d','365d','0','3','','','','',NULL,'134','','','0','','','','','2',NULL,'It checks the expiration date on the certificates for every listener configured to use the Transport Layer Security (TLS). It responds with a status code `200 OK` if all the certificates are valid (have not expired). Otherwise, it responds with a status code `503 Service Unavailable`.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0f1cd729d8f4447db25e0af19eae595d','0','2','0'), ('33750','0','','10301','Healthcheck: local alarms in effect on this node{#SINGLETON}','web.page.get["{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/health/checks/local-alarms{#SINGLETON}"]','1m','31d','365d','0','3','','','','',NULL,'134','','','0','','','','','2',NULL,'It responds with a status code `200 OK` if there are no local alarms in effect on the target node. Otherwise, it responds with a status code `503 Service Unavailable`.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','701449b128cb42cdb971fc608ba9f29b','0','2','0'), ('33751','0','','10301','Healthcheck: classic mirrored queues without synchronized mirrors online{#SINGLETON}','web.page.get["{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/health/checks/node-is-mirror-sync-critical{#SINGLETON}"]','1m','31d','365d','0','3','','','','',NULL,'134','','','0','','','','','2',NULL,'It checks if there are classic mirrored queues without synchronized mirrors online (queues that would potentially lose data if the target node is shut down). It responds with a status code `200 OK` if there are no such classic mirrored queues. Otherwise, it responds with a status code `503 Service Unavailable`.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7a07966d8dde4f2caa9ff95693b86974','0','2','0'), ('33752','0','','10301','Healthcheck: queues with minimum online quorum{#SINGLETON}','web.page.get["{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/health/checks/node-is-quorum-critical{#SINGLETON}"]','1m','31d','365d','0','3','','','','',NULL,'134','','','0','','','','','2',NULL,'It checks if there are quorum queues with minimum online quorum (queues that would lose their quorum and availability if the target node is shut down). It responds with a status code `200 OK` if there are no such quorum queues. Otherwise, it responds with a status code `503 Service Unavailable`.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f6ec1bb1cc4741be852136fac2c63333','0','2','0'), ('33753','0','','10301','Healthcheck: virtual hosts on this node{#SINGLETON}','web.page.get["{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/health/checks/virtual-hosts{#SINGLETON}"]','1m','31d','365d','0','3','','','','',NULL,'134','','','0','','','','','2',NULL,'It responds with It responds with a status code `200 OK` if all virtual hosts are running on the target node. Otherwise it responds with a status code `503 Service Unavailable`.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0d1ad3daf2bb46dba2c9913c1684a0d4','0','2','0'), ('33757','19','','10302','Healthcheck: alarms in effect in the cluster{#SINGLETON}','rabbitmq.healthcheck.alarms[{#SINGLETON}]','1m','31d','365d','0','3','','','','',NULL,'224','','','1','{$RABBITMQ.API.USER}','{$RABBITMQ.API.PASSWORD}','','','2',NULL,'Responds a 200 OK if there are no alarms in effect in the cluster, otherwise responds with a 503 Service Unavailable.','0','30d','0','',NULL,'','{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.CLUSTER_HOST}:{$RABBITMQ.API.PORT}/api/health/checks/alarms','','','200,503,404','1','0','','','1','0','0','0','0','0','0','90db70de99454f7b924d84174a5951fb','0','2','0'), ('33758','19','','10303','Healthcheck{#SINGLETON}','rabbitmq.healthcheck[{#SINGLETON}]','1m','31d','365d','0','3','','','','',NULL,'135','','','1','{$RABBITMQ.API.USER}','{$RABBITMQ.API.PASSWORD}','','','2',NULL,'It checks whether the RabbitMQ application is running; and whether the channels and queues can be listed successfully; and that no alarms are in effect.','0','30d','0','',NULL,'','{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/healthchecks/node','','','200','1','0','','','0','0','0','0','0','0','0','22f9a51fd0ea41148846ecde7dbf4d99','0','2','0'), ('33759','19','','10303','Healthcheck: expiration date on the certificates{#SINGLETON}','rabbitmq.healthcheck.certificate_expiration[{#SINGLETON}]','1m','31d','365d','0','3','','','','',NULL,'135','','','1','{$RABBITMQ.API.USER}','{$RABBITMQ.API.PASSWORD}','','','2',NULL,'It checks the expiration date on the certificates for every listener configured to use the Transport Layer Security (TLS). It responds with a status code `200 OK` if all the certificates are valid (have not expired). Otherwise, it responds with a status code `503 Service Unavailable`.','0','30d','0','',NULL,'','{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/health/checks/certificate-expiration/1/months','','','200,503,404','1','0','','','1','0','0','0','0','0','0','d18cd1fd8cd749e4a00b8186fd93345f','0','2','0'), ('33760','19','','10303','Healthcheck: local alarms in effect on this node{#SINGLETON}','rabbitmq.healthcheck.local_alarms[{#SINGLETON}]','1m','31d','365d','0','3','','','','',NULL,'135','','','1','{$RABBITMQ.API.USER}','{$RABBITMQ.API.PASSWORD}','','','2',NULL,'It responds with a status code `200 OK` if there are no alarms in effect in the cluster. Otherwise, it responds with a status code `503 Service Unavailable`.','0','30d','0','',NULL,'','{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/health/checks/local-alarms','','','200,503,404','1','0','','','1','0','0','0','0','0','0','e1359646453e43cbaf0b4e1b89bdcdeb','0','2','0'), ('33761','19','','10303','Healthcheck: classic mirrored queues without synchronized mirrors online{#SINGLETON}','rabbitmq.healthcheck.mirror_sync[{#SINGLETON}]','1m','31d','365d','0','3','','','','',NULL,'135','','','1','{$RABBITMQ.API.USER}','{$RABBITMQ.API.PASSWORD}','','','2',NULL,'It checks if there are classic mirrored queues without synchronized mirrors online (queues that would potentially lose data if the target node is shut down). It responds with a status code `200 OK` if there are no such classic mirrored queues. Otherwise, it responds with a status code `503 Service Unavailable`.','0','30d','0','',NULL,'','{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/health/checks/node-is-mirror-sync-critical','','','200,503,404','1','0','','','1','0','0','0','0','0','0','9867c266760a48d981caa1f34f2c3238','0','2','0'), ('33762','19','','10303','Healthcheck: queues with minimum online quorum{#SINGLETON}','rabbitmq.healthcheck.quorum[{#SINGLETON}]','1m','31d','365d','0','3','','','','',NULL,'135','','','1','{$RABBITMQ.API.USER}','{$RABBITMQ.API.PASSWORD}','','','2',NULL,'It checks if there are quorum queues with minimum online quorum (queues that would lose their quorum and availability if the target node is shut down). It responds with a status code `200 OK` if there are no such quorum queues. Otherwise, it responds with a status code `503 Service Unavailable`.','0','30d','0','',NULL,'','{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/health/checks/node-is-quorum-critical','','','200,503,404','1','0','','','1','0','0','0','0','0','0','972b6409c80d4ac796e5472b72ce82ae','0','2','0'), ('33763','19','','10303','Healthcheck: virtual hosts on this node{#SINGLETON}','rabbitmq.healthcheck.virtual_hosts[{#SINGLETON}]','1m','31d','365d','0','3','','','','',NULL,'135','','','1','{$RABBITMQ.API.USER}','{$RABBITMQ.API.PASSWORD}','','','2',NULL,'It responds with It responds with a status code `200 OK` if all virtual hosts are running on the target node. Otherwise it responds with a status code `503 Service Unavailable`.','0','30d','0','',NULL,'','{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/health/checks/virtual-hosts','','','200,503,404','1','0','','','1','0','0','0','0','0','0','d701b9acae86464282b308df720a1de2','0','2','0'), ('33764','0','','10386','Get server status','mongodb.server.status["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Returns a database''s state.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fb0cc7d44559406cada9d90a51bc999c','0','2','0'), ('33765','0','','10386','Get Replica Set status','mongodb.rs.status["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Returns the replica set status from the point of view of the member where the method is run.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3b448eff509240faba344f7b325f3e28','0','2','0'), ('33766','0','','10386','Ping','mongodb.ping["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"]','30s','31d','365d','0','3','','','','',NULL,'227','','','0','','','','','0',NULL,'Test if a connection is alive or not.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','350da28ce7ab42f9b96728ec730d4bd6','0','2','0'), ('33767','0','','10386','Get oplog stats','mongodb.oplog.stats["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Returns status of the replica set, using data polled from the oplog.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8e7406e64edd4fe5ba87d4018011c958','0','2','0'), ('33768','0','','10386','Get collections usage stats','mongodb.collections.usage["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Returns usage statistics for each collection.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','46f0a53612de4448ab8e98098375656b','0','2','0'), ('33807','0','','10386','MongoDB version','mongodb.version["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of the MongoDB server.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c5679875dc254ddd833ee40ef4a2b3cf','0','2','0'), ('33808','0','','10386','Collection discovery','mongodb.collections.discovery["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Collect collections metrics. Note, depending on the number of DBs and collections this discovery operation may be expensive. Use filters with macros {$MONGODB.LLD.FILTER.DB.MATCHES}, {$MONGODB.LLD.FILTER.DB.NOT_MATCHES}, {$MONGODB.LLD.FILTER.COLLECTION.MATCHES}, {$MONGODB.LLD.FILTER.COLLECTION.NOT_MATCHES}.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a6398a8ae4fe4891a03bb6041bf71f53','0','2','0'), ('33809','0','','10386','Database discovery','mongodb.db.discovery["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Collect database metrics. Note, depending on the number of DBs this discovery operation may be expensive. Use filters with macros {$MONGODB.LLD.FILTER.DB.MATCHES}, {$MONGODB.LLD.FILTER.DB.NOT_MATCHES}.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a2a57b40d12944ae8ee21c166706b132','0','2','0'), ('33812','0','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Get collection stats {#DBNAME}.{#COLLECTION}','mongodb.collection.stats["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}","{#DBNAME}","{#COLLECTION}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Returns a variety of storage statistics for a given collection.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d43709c548b84ea9b2c3c1b159bf28a3','0','2','0'), ('33813','0','','10386','MongoDB {#DBNAME}: Get db stats {#DBNAME}','mongodb.db.stats["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}","{#DBNAME}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Returns statistics reflecting the database system''s state.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','829536cb5dd448d8a05a30cf6eff8599','0','2','0'), ('33886','0','','10387','Jumbo chunks','mongodb.jumbo_chunks.count["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of ''jumbo'' chunks in the mongo cluster.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','110685e463e141ca800b2638e3532d51','0','2','0'), ('33887','0','','10387','Get server status','mongodb.server.status["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The mongos statistic','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b8c6dadff060447e9718b49fdc796d8d','0','2','0'), ('33888','0','','10387','Ping','mongodb.ping["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"]','30s','31d','365d','0','3','','','','',NULL,'229','','','0','','','','','0',NULL,'Test if a connection is alive or not.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ff979eb9ba4a4420a753913df5431219','0','2','0'), ('33889','0','','10387','Get mongodb.connpool.stats','mongodb.connpool.stats["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Returns current info about connpool.stats.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f34fcc3866b446748b7a8d11311edd82','0','2','0'), ('33920','0','','10387','Config servers discovery','mongodb.cfg.discovery["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery shared cluster config servers.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','eb57a506cc5640a79e6df51179321ba0','0','2','0'), ('33921','0','','10387','Collection discovery','mongodb.collections.discovery["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Collect collections metrics. Note, depending on the number of DBs and collections this discovery operation may be expensive. Use filters with macros {$MONGODB.LLD.FILTER.DB.MATCHES}, {$MONGODB.LLD.FILTER.DB.NOT_MATCHES}, {$MONGODB.LLD.FILTER.COLLECTION.MATCHES}, {$MONGODB.LLD.FILTER.COLLECTION.NOT_MATCHES}.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','61a19fbf4f9f4c2f9ad215b08d41e544','0','2','0'), ('33922','0','','10387','Database discovery','mongodb.db.discovery["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Collect database metrics. Note, depending on the number of DBs this discovery operation may be expensive. Use filters with macros {$MONGODB.LLD.FILTER.DB.MATCHES}, {$MONGODB.LLD.FILTER.DB.NOT_MATCHES}.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','25ece32c5f764461913f605ba3d7736a','0','2','0'), ('33923','0','','10387','Shards discovery','mongodb.sh.discovery["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery shared cluster hosts.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a8bcea1509974c0f9d0051591e92cd5a','0','2','0'), ('33924','0','','10387','MongoDB {#DBNAME}.{#COLLECTION}: Get collection stats {#DBNAME}.{#COLLECTION}','mongodb.collection.stats["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}","{#DBNAME}","{#COLLECTION}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Returns a variety of storage statistics for a given collection.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aa964be0bc5c4318bc92c3192c269d8e','0','2','0'), ('33925','0','','10387','MongoDB {#DBNAME}: Get db stats {#DBNAME}','mongodb.db.stats["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}","{#DBNAME}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Returns statistics reflecting the database system''s state.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7fbc424bca06451d9ed1fe689ea81bf9','0','2','0'), ('33944','3','','10390','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'234','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1a1244d5dcbc4cbcb5edb70b7cd2b3aa','0','2','0'), ('33945','3','','10390','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5804e615ec714a85ab3bf8128f92d0fc','0','2','0'), ('33946','3','','10390','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','02403547a7714c94ba442d09ba91a1be','0','2','0'), ('33947','17','','10390','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'Item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','80fe62cf4b2b4b96a077f23ff40d9baf','0','2','0'), ('33948','20','get[1.3.6.1.2.1.1.4.0]','10390','System contact details','system.contact','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0bcb970099c0429a9254c88d94d3f27d','0','2','0'), ('33949','20','get[1.3.6.1.2.1.1.1.0]','10390','System description','system.descr','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6a1b8a292e9448329b538c0c6c47317b','0','2','0'), ('33950','20','get[1.3.6.1.2.1.47.1.1.1.1.13.1]','10390','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e7b500dbdd044fd2a6213496422d4540','0','2','0'), ('33951','20','get[1.3.6.1.2.1.47.1.1.1.1.11.1]','10390','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7f1f5522eab7406ea8dfce09cb84d39d','0','2','0'), ('33952','20','get[1.3.6.1.2.1.1.6.0]','10390','System location','system.location','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The physical location of this node (e.g., `telephone closet, 3rd floor''). If the location is unknown, the value is the zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cb5e9fc216ca46f885562169ed67a612','0','2','0'), ('33953','20','get[1.3.6.1.2.1.1.5.0]','10390','System name','system.name','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c79c23799ba248e0b35a086a7503646b','0','2','0'), ('33954','20','get[1.3.6.1.2.1.1.2.0]','10390','System object ID','system.objectid','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f4d399a9cb884067a8303799b6ddfca4','0','2','0'), ('33955','20','get[1.3.6.1.2.1.1.1.0]','10390','Operating system','system.sw.os','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bf04928736ed4d3c855d8e0718cdfa1f','0','2','0'), ('33956','20','get[1.3.6.1.2.1.1.3.0]','10390','Uptime (network)','system.net.uptime','1m','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3001dec3d8564a4e83e25e557c6d1336','0','2','0'), ('33957','5','','10390','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'235','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1fe8d0559b794a47a78fccde9156b694','0','2','0'), ('33958','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5]','10390','CPU discovery','cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable , indexed with cpmCPUTotalIndex . This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router, like different CPU chips, group of CPUs, or CPUs in different modules/cards. In case of a single CPU, cpmCPUTotalTable has only one entry.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fd02edfd2bdb43a3b02495722e01b462','0','2','0'), ('33959','20','discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11]','10390','Entity Serial Numbers discovery','entity_sn.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bee10a232bfb498286a73963b6fe1f2a','0','2','0'), ('33960','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.4.1.2]','10390','FAN discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The table of fan status maintained by the environmental monitor.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3c2e82ee5eff4bceafeec77e63120b08','0','2','0'), ('33961','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2]','10390','Memory discovery','memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries. http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bfcf962374c14dc2805b39bf00987f3c','0','2','0'), ('33962','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10390','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2d0c3668e56c4511b6625d6dc7b72015','0','2','0'), ('33963','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2]','10390','EtherLike discovery','net.if.duplex.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','836c2d80023941e6a9c66d7129d0caf2','0','2','0'), ('33964','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.5.1.2]','10390','PSU discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The table of power supply status maintained by the environmental monitor card.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fd7b48d3e3124526918cbe23e6980e4d','0','2','0'), ('33965','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2]','10390','Temperature discovery','temperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status maintained by the environmental monitor.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5d7f7f4b585d4702922efffecd0ea00b','0','2','0'), ('33966','20','get[1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX}]','10390','#{#SNMPINDEX}: CPU utilization','system.cpu.util[{#SNMPINDEX}]','5m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-PROCESS-MIB Object name: cpmCPUTotal5minRev The cpmCPUTotal5minRev MIB object provides a more accurate view of the performance of the router over time than the MIB objects cpmCPUTotal1minRev and cpmCPUTotal5secRev . These MIB objects are not accurate because they look at CPU at one minute and five second intervals, respectively. These MIBs enable you to monitor the trends and plan the capacity of your network. The recommended baseline rising threshold for cpmCPUTotal5minRev is 90 percent. Depending on the platform, some routers that run at 90 percent, for example, 2500s, can exhibit performance degradation versus a high-end router, for example, the 7500 series, which can operate fine. Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','75ac10af8a84469aaf83ead5ada42fc5','0','2','0'), ('33967','20','get[1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX}]','10390','{#ENT_NAME}: Hardware serial number','system.hw.serialnumber[{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB Object name: entPhysicalSerialNum','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b0602fa005c140cd9d123eacd62ced06','0','2','0'), ('33968','20','get[1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX}]','10390','{#SNMPVALUE}: Fan status','sensor.fan.status[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'230','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB Object name: ciscoEnvMonFanState','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','15cc972b704a4f9c9e5a7798df362fa3','0','2','0'), ('33969','20','get[1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX}]','10390','{#SNMPVALUE}: Free memory','vm.memory.free[{#SNMPINDEX}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-MEMORY-POOL-MIB Object name: ciscoMemoryPoolFree Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8eaceca5f390424db56dcc3b006baa54','0','2','0'), ('33970','20','get[1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX}]','10390','{#SNMPVALUE}: Used memory','vm.memory.used[{#SNMPINDEX}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-MEMORY-POOL-MIB Object name: ciscoMemoryPoolUsed Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device. Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','446338a14fcf4ba99e72902821ae9c44','0','2','0'), ('33971','15','','10390','{#SNMPVALUE}: Memory utilization','vm.memory.util[{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[{#SNMPINDEX}])/(last(//vm.memory.free[{#SNMPINDEX}])+last(//vm.memory.used[{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Memory utilization in %','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','000ba7ca09814368aae61f3f08fb740e','0','2','0'), ('33972','20','get[1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}]','10390','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e3c18989a34a434687ffa57423025878','0','2','0'), ('33973','20','get[1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}]','10390','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','20da38b76f1a4b418b6a965cf973b30a','0','2','0'), ('33974','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10390','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e21895be99254fe49cfd654a576da912','0','2','0'), ('33975','20','get[1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}]','10390','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ace9c36c517a47dfa1ece694d6c10883','0','2','0'), ('33976','20','get[1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}]','10390','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6fbeb22aa8384ba5a7d246ef6a749aff','0','2','0'), ('33977','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10390','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','943c994ad06a4193a840e2734465ad01','0','2','0'), ('33978','20','get[1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}]','10390','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n'' then the speed of the interface is somewhere in the range of `n-500,000'' to`n+499,999''. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','66348f674b9143f48ea7ef829c220845','0','2','0'), ('33979','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10390','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'232','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1f73344515564398b4f17ea531285deb','0','2','0'), ('33980','20','get[1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}]','10390','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'233','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f2d27d63c05a479f893f0a8ad9447747','0','2','0'), ('33981','20','get[1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX}]','10390','Interface {#IFNAME}({#IFALIAS}): Duplex status','net.if.duplex[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'231','','','0','','','','','2',NULL,'MIB: EtherLike-MIB Object name: dot3StatsDuplexStatus The current mode of operation of the MAC entity. ''unknown'' indicates that the current duplex mode could not be determined. Management control of the duplex mode is accomplished through the MAU MIB. When an interface does not support autonegotiation, or when autonegotiation is not enabled, the duplex mode is controlled using ifMauDefaultType. When autonegotiation is supported and enabled, duplex mode is controlled using ifMauAutoNegAdvertisedBits. In either case, the currently operating duplex mode is reflected both in this object and in ifMauType. Note that this object provides redundant information with ifMauType. Normally, redundant objects are discouraged. However, in this instance, it allows a management application to determine the duplex status of an interface without having to know every possible value of ifMauType. This was felt to be sufficiently valuable to justify the redundancy. Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','946ab71daeb34f79868c0fb49aea0beb','0','2','0'), ('33982','20','get[1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX}]','10390','{#SNMPVALUE}: Power supply status','sensor.psu.status[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'230','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB Object name: ciscoEnvMonSupplyState','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','330b4d1a9e92485b9997d2a9e0e1079a','0','2','0'), ('33983','20','get[1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX}]','10390','{#SNMPVALUE}: Temperature status','sensor.temp.status[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'230','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB Object name: ciscoEnvMonTemperatureState The current state of the test point being instrumented.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c520d3696a4d44e9a7095837f9457a9d','0','2','0'), ('33984','20','get[1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX}]','10390','{#SNMPVALUE}: Temperature','sensor.temp.value[{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB Object name: ciscoEnvMonTemperatureValue The current measurement of the test point being instrumented.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ad48c4102a784c8c8d22825235710831','0','2','0'), ('33985','3','','10391','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'240','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','84ef605d7c914f62b4497ed6fdaccd8a','0','2','0'), ('33986','3','','10391','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c40980a878c94c3db61f80e206b890ec','0','2','0'), ('33987','3','','10391','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d1c2bc9cee7046c2a17f876dce1f063f','0','2','0'), ('33988','17','','10391','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'Item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','612f59e4d582463bb386046a1d4342da','0','2','0'), ('33989','20','get[1.3.6.1.2.1.1.4.0]','10391','System contact details','system.contact','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','582260ed2f2d4f419651bc526e41b733','0','2','0'), ('33990','20','get[1.3.6.1.2.1.1.1.0]','10391','System description','system.descr','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','956ce9527d604b4493d52815799590ca','0','2','0'), ('33991','20','get[1.3.6.1.2.1.47.1.1.1.1.13.1]','10391','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fb4df28cb44941e5b39348afe421a2ad','0','2','0'), ('33992','20','get[1.3.6.1.2.1.47.1.1.1.1.11.1]','10391','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','664548f83e924a8aaa125579f230d0e9','0','2','0'), ('33993','20','get[1.3.6.1.2.1.1.6.0]','10391','System location','system.location','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The physical location of this node (e.g., `telephone closet, 3rd floor''). If the location is unknown, the value is the zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b6d1ee7b8b3e42e380f6aa44bf39c008','0','2','0'), ('33994','20','get[1.3.6.1.2.1.1.5.0]','10391','System name','system.name','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2f5f5b376c034f439ae19ed24e4d8bc5','0','2','0'), ('33995','20','get[1.3.6.1.2.1.1.2.0]','10391','System object ID','system.objectid','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d791eebac4884924b7f40c08174aef00','0','2','0'), ('33996','20','get[1.3.6.1.2.1.1.1.0]','10391','Operating system','system.sw.os','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2c7c4907dfdd46d18321f80b00152771','0','2','0'), ('33997','20','get[1.3.6.1.2.1.1.3.0]','10391','Uptime (network)','system.net.uptime','1m','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a9070d15765c4acaa856dde8ece57340','0','2','0'), ('33998','5','','10391','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'241','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','92d5d0c598674f20a0228cc66a433e84','0','2','0'), ('33999','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5]','10391','CPU discovery','cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable , indexed with cpmCPUTotalIndex . This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router, like different CPU chips, group of CPUs, or CPUs in different modules/cards. In case of a single CPU, cpmCPUTotalTable has only one entry.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8635e89e60fd4c65a47a6da2bf3c072d','0','2','0'), ('34000','20','discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11]','10391','Entity Serial Numbers discovery','entity_sn.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7a62ebc0c38942fa9f72eebc839be5d7','0','2','0'), ('34001','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.4.1.2]','10391','FAN discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The table of fan status maintained by the environmental monitor.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','235f74f154bc422482f524b9a4c08125','0','2','0'), ('34002','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2]','10391','Memory discovery','memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries. http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','86589a8d54cb4cfc81c38a6eeac05b80','0','2','0'), ('34003','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10391','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2b0dacd3b651413fb674eac430613286','0','2','0'), ('34004','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2]','10391','EtherLike discovery','net.if.duplex.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dbfa0bb2cc7a4a08a50311e37c6bc94b','0','2','0'), ('34005','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.5.1.2]','10391','PSU discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The table of power supply status maintained by the environmental monitor card.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','400dddbb882445af9e7b986bc4529908','0','2','0'), ('34006','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2]','10391','Temperature discovery','temperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status maintained by the environmental monitor.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b4eb58fb8820452d89447b786cee3361','0','2','0'), ('34007','20','get[1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX}]','10391','#{#SNMPINDEX}: CPU utilization','system.cpu.util[{#SNMPINDEX}]','5m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-PROCESS-MIB Object name: cpmCPUTotal5minRev The cpmCPUTotal5minRev MIB object provides a more accurate view of the performance of the router over time than the MIB objects cpmCPUTotal1minRev and cpmCPUTotal5secRev . These MIB objects are not accurate because they look at CPU at one minute and five second intervals, respectively. These MIBs enable you to monitor the trends and plan the capacity of your network. The recommended baseline rising threshold for cpmCPUTotal5minRev is 90 percent. Depending on the platform, some routers that run at 90 percent, for example, 2500s, can exhibit performance degradation versus a high-end router, for example, the 7500 series, which can operate fine. Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','32bac9ece98d497680e84e43d1ac8f8e','0','2','0'), ('34008','20','get[1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX}]','10391','{#ENT_NAME}: Hardware serial number','system.hw.serialnumber[{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB Object name: entPhysicalSerialNum','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ba6a0cf3f63b475d80a59e537302bbaa','0','2','0'), ('34009','20','get[1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX}]','10391','{#SNMPVALUE}: Fan status','sensor.fan.status[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'236','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB Object name: ciscoEnvMonFanState','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d7ae10cf2595493aa6b31c52bbc6220d','0','2','0'), ('34010','20','get[1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX}]','10391','{#SNMPVALUE}: Free memory','vm.memory.free[{#SNMPINDEX}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-MEMORY-POOL-MIB Object name: ciscoMemoryPoolFree Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8aa33136af58484ca1e0ee894dd9b22c','0','2','0'), ('34011','20','get[1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX}]','10391','{#SNMPVALUE}: Used memory','vm.memory.used[{#SNMPINDEX}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-MEMORY-POOL-MIB Object name: ciscoMemoryPoolUsed Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device. Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','73a46e97c57e4fca912e74a7253e21f6','0','2','0'), ('34012','15','','10391','{#SNMPVALUE}: Memory utilization','vm.memory.util[{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[{#SNMPINDEX}])/(last(//vm.memory.free[{#SNMPINDEX}])+last(//vm.memory.used[{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Memory utilization in %','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','50638b5c78584c99978c6b57bec520d4','0','2','0'), ('34013','20','get[1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}]','10391','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','670a337b61b8485da83bff8fb357aa6c','0','2','0'), ('34014','20','get[1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}]','10391','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','677b9af6e45e42c1bc59772453778de2','0','2','0'), ('34015','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10391','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d745a153bdd443afb3b6c690a6cb1834','0','2','0'), ('34016','20','get[1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}]','10391','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e000bdb0549747b98ef9ef824ead399d','0','2','0'), ('34017','20','get[1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}]','10391','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bf863b01e546466e9f7516435fd34631','0','2','0'), ('34018','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10391','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8b9edde24248456f902880625e33e289','0','2','0'), ('34019','20','get[1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}]','10391','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n'' then the speed of the interface is somewhere in the range of `n-500,000'' to`n+499,999''. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fa0715f32e7441958e1d555efe7ccc9f','0','2','0'), ('34020','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10391','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'238','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','94183e5ed20f4f5495162b696097fd70','0','2','0'), ('34021','20','get[1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}]','10391','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'239','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','27b0676374f847ad8330028e62b7b6af','0','2','0'), ('34022','20','get[1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX}]','10391','Interface {#IFNAME}({#IFALIAS}): Duplex status','net.if.duplex[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'237','','','0','','','','','2',NULL,'MIB: EtherLike-MIB Object name: dot3StatsDuplexStatus The current mode of operation of the MAC entity. ''unknown'' indicates that the current duplex mode could not be determined. Management control of the duplex mode is accomplished through the MAU MIB. When an interface does not support autonegotiation, or when autonegotiation is not enabled, the duplex mode is controlled using ifMauDefaultType. When autonegotiation is supported and enabled, duplex mode is controlled using ifMauAutoNegAdvertisedBits. In either case, the currently operating duplex mode is reflected both in this object and in ifMauType. Note that this object provides redundant information with ifMauType. Normally, redundant objects are discouraged. However, in this instance, it allows a management application to determine the duplex status of an interface without having to know every possible value of ifMauType. This was felt to be sufficiently valuable to justify the redundancy. Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a5008d1d42d9472392b456b1d8af2568','0','2','0'), ('34023','20','get[1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX}]','10391','{#SNMPVALUE}: Power supply status','sensor.psu.status[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'236','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB Object name: ciscoEnvMonSupplyState','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','317bb1028c0b46fbac62df30e0ac6653','0','2','0'), ('34024','20','get[1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX}]','10391','{#SNMPVALUE}: Temperature status','sensor.temp.status[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'236','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB Object name: ciscoEnvMonTemperatureState The current state of the test point being instrumented.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','774a9aa6ec954121ae96f7f76f7e3022','0','2','0'), ('34025','20','get[1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX}]','10391','{#SNMPVALUE}: Temperature','sensor.temp.value[{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB Object name: ciscoEnvMonTemperatureValue The current measurement of the test point being instrumented.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','44a96489bbfc4245b8fe0ffee74e0c96','0','2','0'), ('34026','3','','10392','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'246','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','872058629f19424995e696d1354fbe01','0','2','0'), ('34027','3','','10392','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','56b5f81de3c34f2aa9acd399dd212d62','0','2','0'), ('34028','3','','10392','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d34fc050448e4c48b303bf8c75c50060','0','2','0'), ('34029','17','','10392','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'Item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c7a43b6281384161b6e1f28840d55aa1','0','2','0'), ('34030','20','get[1.3.6.1.2.1.1.4.0]','10392','System contact details','system.contact','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7f563d184760420080849d161bf373f6','0','2','0'), ('34031','20','get[1.3.6.1.2.1.1.1.0]','10392','System description','system.descr','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','74af4fbc07284c9eb9d4a913fd5e7b2b','0','2','0'), ('34032','20','get[1.3.6.1.2.1.47.1.1.1.1.13.1]','10392','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a7cf2f68a1c842e081deec4a16410071','0','2','0'), ('34033','20','get[1.3.6.1.2.1.47.1.1.1.1.11.1]','10392','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6d9b2e70dd61424f8f0ffebf89d20853','0','2','0'), ('34034','20','get[1.3.6.1.2.1.1.6.0]','10392','System location','system.location','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The physical location of this node (e.g., `telephone closet, 3rd floor''). If the location is unknown, the value is the zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cc4aa80bbd2d49f9bca23b305399f0fa','0','2','0'), ('34035','20','get[1.3.6.1.2.1.1.5.0]','10392','System name','system.name','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','726fa93646ad429789dcec2fbfabc6ff','0','2','0'), ('34036','20','get[1.3.6.1.2.1.1.2.0]','10392','System object ID','system.objectid','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5e7cd491cf664de0b5046cd011186a0e','0','2','0'), ('34037','20','get[1.3.6.1.2.1.1.1.0]','10392','Operating system','system.sw.os','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','89971d6753ce4d98b68a70bf26f4b99e','0','2','0'), ('34038','20','get[1.3.6.1.2.1.1.3.0]','10392','Uptime (network)','system.net.uptime','1m','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ecc18617c57a44bb96a565f450d569ac','0','2','0'), ('34039','5','','10392','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'247','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0951ddc53a2847b8ba816a5e4de9da2f','0','2','0'), ('34040','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5]','10392','CPU discovery','cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable , indexed with cpmCPUTotalIndex . This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router, like different CPU chips, group of CPUs, or CPUs in different modules/cards. In case of a single CPU, cpmCPUTotalTable has only one entry.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a525aec08c6945fda4cad224232825a9','0','2','0'), ('34041','20','discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11]','10392','Entity Serial Numbers discovery','entity_sn.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','777db6085eed46dbaef83c05049a8d4b','0','2','0'), ('34042','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.4.1.2]','10392','FAN discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The table of fan status maintained by the environmental monitor.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c204b466541d475c959d2613a848f03a','0','2','0'), ('34043','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2]','10392','Memory discovery','memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries. http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bcde2f961af64c0eb27ec663577c60e1','0','2','0'), ('34044','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10392','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ce14cdd4669c4e8bb7b2badbe071f2d9','0','2','0'), ('34045','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2]','10392','EtherLike discovery','net.if.duplex.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d1264fbbd4b547a6874152179ed756d5','0','2','0'), ('34046','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.5.1.2]','10392','PSU discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The table of power supply status maintained by the environmental monitor card.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','742411a65e7f4b5fafc47e861ab8bd23','0','2','0'), ('34047','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2]','10392','Temperature discovery','temperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status maintained by the environmental monitor.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','595c88262f2f48c99d16f22ab7d70aac','0','2','0'), ('34048','20','get[1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX}]','10392','#{#SNMPINDEX}: CPU utilization','system.cpu.util[{#SNMPINDEX}]','5m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-PROCESS-MIB Object name: cpmCPUTotal5minRev The cpmCPUTotal5minRev MIB object provides a more accurate view of the performance of the router over time than the MIB objects cpmCPUTotal1minRev and cpmCPUTotal5secRev . These MIB objects are not accurate because they look at CPU at one minute and five second intervals, respectively. These MIBs enable you to monitor the trends and plan the capacity of your network. The recommended baseline rising threshold for cpmCPUTotal5minRev is 90 percent. Depending on the platform, some routers that run at 90 percent, for example, 2500s, can exhibit performance degradation versus a high-end router, for example, the 7500 series, which can operate fine. Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a912b6f023a64087a99827f9c3cd8ceb','0','2','0'), ('34049','20','get[1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX}]','10392','{#ENT_NAME}: Hardware serial number','system.hw.serialnumber[{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB Object name: entPhysicalSerialNum','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a7b5453459d24368943dd3394fca3d8f','0','2','0'), ('34050','20','get[1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX}]','10392','{#SNMPVALUE}: Fan status','sensor.fan.status[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'242','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB Object name: ciscoEnvMonFanState','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','889b225dd7a84e4a9bce92d7138a6615','0','2','0'), ('34051','20','get[1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX}]','10392','{#SNMPVALUE}: Free memory','vm.memory.free[{#SNMPINDEX}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-MEMORY-POOL-MIB Object name: ciscoMemoryPoolFree Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3c9040a8de7048baaa169b35f596a145','0','2','0'), ('34052','20','get[1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX}]','10392','{#SNMPVALUE}: Used memory','vm.memory.used[{#SNMPINDEX}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-MEMORY-POOL-MIB Object name: ciscoMemoryPoolUsed Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device. Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e48d2527e378472ab060592a6b303484','0','2','0'), ('34053','15','','10392','{#SNMPVALUE}: Memory utilization','vm.memory.util[{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[{#SNMPINDEX}])/(last(//vm.memory.free[{#SNMPINDEX}])+last(//vm.memory.used[{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Memory utilization in %','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c4b89f27f4534408a7fbe72110ce86de','0','2','0'), ('34054','20','get[1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}]','10392','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c8d390c0ef1544a08d6a6974d49f17ad','0','2','0'), ('34055','20','get[1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}]','10392','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','02a607faaaf0494097e25a81d850d646','0','2','0'), ('34056','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10392','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8b26f84549f14a91935b85b133e8b85b','0','2','0'), ('34057','20','get[1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}]','10392','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6afb99d2489a4e4fa6ed329d3b140e99','0','2','0'), ('34058','20','get[1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}]','10392','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b58d6657f5e14788829ff03f04bd1ac9','0','2','0'), ('34059','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10392','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fc23b72b6e0c4b0a9d5c9828f25cc43b','0','2','0'), ('34060','20','get[1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}]','10392','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n'' then the speed of the interface is somewhere in the range of `n-500,000'' to`n+499,999''. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a69f1d2e284a4d468d7226a68560405f','0','2','0'), ('34061','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10392','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'244','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9a2539d5137645cc868d80c6543b2a32','0','2','0'), ('34062','20','get[1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}]','10392','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'245','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f286f2bafa3e4d17a74842fff0a86dcf','0','2','0'), ('34063','20','get[1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX}]','10392','Interface {#IFNAME}({#IFALIAS}): Duplex status','net.if.duplex[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'243','','','0','','','','','2',NULL,'MIB: EtherLike-MIB Object name: dot3StatsDuplexStatus The current mode of operation of the MAC entity. ''unknown'' indicates that the current duplex mode could not be determined. Management control of the duplex mode is accomplished through the MAU MIB. When an interface does not support autonegotiation, or when autonegotiation is not enabled, the duplex mode is controlled using ifMauDefaultType. When autonegotiation is supported and enabled, duplex mode is controlled using ifMauAutoNegAdvertisedBits. In either case, the currently operating duplex mode is reflected both in this object and in ifMauType. Note that this object provides redundant information with ifMauType. Normally, redundant objects are discouraged. However, in this instance, it allows a management application to determine the duplex status of an interface without having to know every possible value of ifMauType. This was felt to be sufficiently valuable to justify the redundancy. Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ab70998b12124fee93168b5e8222512e','0','2','0'), ('34064','20','get[1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX}]','10392','{#SNMPVALUE}: Power supply status','sensor.psu.status[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'242','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB Object name: ciscoEnvMonSupplyState','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a3617fa8711146a0bdddd2e721cedb52','0','2','0'), ('34065','20','get[1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX}]','10392','{#SNMPVALUE}: Temperature status','sensor.temp.status[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'242','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB Object name: ciscoEnvMonTemperatureState The current state of the test point being instrumented.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e1636ece86b1427cad01e7223052b526','0','2','0'), ('34066','20','get[1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX}]','10392','{#SNMPVALUE}: Temperature','sensor.temp.value[{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB Object name: ciscoEnvMonTemperatureValue The current measurement of the test point being instrumented.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','16a4c905660349aaaddf52573916e187','0','2','0'), ('34067','3','','10393','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'252','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d729b3a06df94b6890fe4c62f8d26f60','0','2','0'), ('34068','3','','10393','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3a6fdbfbbf7c4944a24e22e93aabf0e3','0','2','0'), ('34069','3','','10393','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','80efc7d77e314e97953cc75b5ae43e92','0','2','0'), ('34070','17','','10393','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'Item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2c44173959284d7db1d2a745c68fa0a3','0','2','0'), ('34071','20','get[1.3.6.1.2.1.1.4.0]','10393','System contact details','system.contact','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b3ac05facd4349fc8e573525f3fdb239','0','2','0'), ('34072','20','get[1.3.6.1.2.1.1.1.0]','10393','System description','system.descr','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f21c4e4de69342a68ca060a52fe071d6','0','2','0'), ('34073','20','get[1.3.6.1.2.1.47.1.1.1.1.13.1]','10393','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2a0f9c29094f4a72ab66813c931d35ee','0','2','0'), ('34074','20','get[1.3.6.1.2.1.47.1.1.1.1.11.1]','10393','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','487fc626eb5e4629a0585210153ebbd1','0','2','0'), ('34075','20','get[1.3.6.1.2.1.1.6.0]','10393','System location','system.location','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The physical location of this node (e.g., `telephone closet, 3rd floor''). If the location is unknown, the value is the zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','679e63af2b3548c48b278da7356ae8ed','0','2','0'), ('34076','20','get[1.3.6.1.2.1.1.5.0]','10393','System name','system.name','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5d51ca0ffadf4e4599390aa9a4644426','0','2','0'), ('34077','20','get[1.3.6.1.2.1.1.2.0]','10393','System object ID','system.objectid','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2d49036582724a19b5cd5006360be8d2','0','2','0'), ('34078','20','get[1.3.6.1.2.1.1.1.0]','10393','Operating system','system.sw.os','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5852aecfbfbe429097c660d8a1ce47ee','0','2','0'), ('34079','20','get[1.3.6.1.2.1.1.3.0]','10393','Uptime (network)','system.net.uptime','1m','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','54ff117dbac14916aee823e247bff23f','0','2','0'), ('34080','5','','10393','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'253','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','642cee0c23134982adc4dfc486a63843','0','2','0'), ('34081','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5]','10393','CPU discovery','cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable , indexed with cpmCPUTotalIndex . This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router, like different CPU chips, group of CPUs, or CPUs in different modules/cards. In case of a single CPU, cpmCPUTotalTable has only one entry.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a55dd3dac1d74fdea664fbccbce717cc','0','2','0'), ('34082','20','discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11]','10393','Entity Serial Numbers discovery','entity_sn.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7361d8c6f2a34111b478f4d5c1e12d01','0','2','0'), ('34083','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.4.1.2]','10393','FAN discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The table of fan status maintained by the environmental monitor.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a13d58f913b24056bc2f0e770657d1be','0','2','0'), ('34084','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2]','10393','Memory discovery','memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries. http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','637a377b92854de1a0c05f53a2a88851','0','2','0'), ('34085','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10393','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','11a26fe1c76447ba82250c7056c3ff9f','0','2','0'), ('34086','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2]','10393','EtherLike discovery','net.if.duplex.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','51398634ec1742dc95df5907e1042763','0','2','0'), ('34087','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.5.1.2]','10393','PSU discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The table of power supply status maintained by the environmental monitor card.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','60431e4af4764ee694973a0ed13b2898','0','2','0'), ('34088','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2]','10393','Temperature discovery','temperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status maintained by the environmental monitor.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','84a4865dabb8489a9981eb02de238837','0','2','0'), ('34089','20','get[1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX}]','10393','#{#SNMPINDEX}: CPU utilization','system.cpu.util[{#SNMPINDEX}]','5m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-PROCESS-MIB Object name: cpmCPUTotal5minRev The cpmCPUTotal5minRev MIB object provides a more accurate view of the performance of the router over time than the MIB objects cpmCPUTotal1minRev and cpmCPUTotal5secRev . These MIB objects are not accurate because they look at CPU at one minute and five second intervals, respectively. These MIBs enable you to monitor the trends and plan the capacity of your network. The recommended baseline rising threshold for cpmCPUTotal5minRev is 90 percent. Depending on the platform, some routers that run at 90 percent, for example, 2500s, can exhibit performance degradation versus a high-end router, for example, the 7500 series, which can operate fine. Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dfb4e2bee3754f6489ee1b5bff628a4d','0','2','0'), ('34090','20','get[1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX}]','10393','{#ENT_NAME}: Hardware serial number','system.hw.serialnumber[{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB Object name: entPhysicalSerialNum','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fa0ce17966414937ba22b2a0891ca372','0','2','0'), ('34091','20','get[1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX}]','10393','{#SNMPVALUE}: Fan status','sensor.fan.status[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'248','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB Object name: ciscoEnvMonFanState','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aa190606669d43d996bce9c76df97081','0','2','0'), ('34092','20','get[1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX}]','10393','{#SNMPVALUE}: Free memory','vm.memory.free[{#SNMPINDEX}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-MEMORY-POOL-MIB Object name: ciscoMemoryPoolFree Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','44769632224a48dcb4756260910ba785','0','2','0'), ('34093','20','get[1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX}]','10393','{#SNMPVALUE}: Used memory','vm.memory.used[{#SNMPINDEX}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-MEMORY-POOL-MIB Object name: ciscoMemoryPoolUsed Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device. Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0f037e9121254776a84158ce1090ac80','0','2','0'), ('34094','15','','10393','{#SNMPVALUE}: Memory utilization','vm.memory.util[{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[{#SNMPINDEX}])/(last(//vm.memory.free[{#SNMPINDEX}])+last(//vm.memory.used[{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Memory utilization in %','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','926ffaaf890240be8d3632fe60b17c93','0','2','0'), ('34095','20','get[1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}]','10393','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','757501460bb14d65b14cab2249e0f7b6','0','2','0'), ('34096','20','get[1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}]','10393','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4880d42b5c034fbaa07b5ccb3e74a3ae','0','2','0'), ('34097','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10393','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e5e3c7c9d2904b19a7e8f0fe39d881db','0','2','0'), ('34098','20','get[1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}]','10393','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6d0a3f00c7494655b8c67d6f257be372','0','2','0'), ('34099','20','get[1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}]','10393','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ce74da47f48e426a9364f92f58d50693','0','2','0'), ('34100','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10393','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a5efeed06f5f45d18e58517fb39323e8','0','2','0'), ('34101','20','get[1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}]','10393','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n'' then the speed of the interface is somewhere in the range of `n-500,000'' to`n+499,999''. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bc137542c8e14308bec44ac90469e8d0','0','2','0'), ('34102','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10393','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'250','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f13cc69469844cbdad4f2eac0e7f045e','0','2','0'), ('34103','20','get[1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}]','10393','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'251','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7bf551e444994cdaa08f208c10b89860','0','2','0'), ('34104','20','get[1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX}]','10393','Interface {#IFNAME}({#IFALIAS}): Duplex status','net.if.duplex[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'249','','','0','','','','','2',NULL,'MIB: EtherLike-MIB Object name: dot3StatsDuplexStatus The current mode of operation of the MAC entity. ''unknown'' indicates that the current duplex mode could not be determined. Management control of the duplex mode is accomplished through the MAU MIB. When an interface does not support autonegotiation, or when autonegotiation is not enabled, the duplex mode is controlled using ifMauDefaultType. When autonegotiation is supported and enabled, duplex mode is controlled using ifMauAutoNegAdvertisedBits. In either case, the currently operating duplex mode is reflected both in this object and in ifMauType. Note that this object provides redundant information with ifMauType. Normally, redundant objects are discouraged. However, in this instance, it allows a management application to determine the duplex status of an interface without having to know every possible value of ifMauType. This was felt to be sufficiently valuable to justify the redundancy. Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3a3836aa72914f14b1ee8d48be3b2bd1','0','2','0'), ('34105','20','get[1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX}]','10393','{#SNMPVALUE}: Power supply status','sensor.psu.status[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'248','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB Object name: ciscoEnvMonSupplyState','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6ebc2645c84c4eb3acecaae528501cc2','0','2','0'), ('34106','20','get[1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX}]','10393','{#SNMPVALUE}: Temperature status','sensor.temp.status[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'248','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB Object name: ciscoEnvMonTemperatureState The current state of the test point being instrumented.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b60cf661f8c949c4860cea6d0c39e87b','0','2','0'), ('34107','20','get[1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX}]','10393','{#SNMPVALUE}: Temperature','sensor.temp.value[{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB Object name: ciscoEnvMonTemperatureValue The current measurement of the test point being instrumented.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','957a69769a7d4d27930d82feb359b3d5','0','2','0'), ('34108','3','','10394','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'258','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5d096334d7e2455797c9a5a46fecfaec','0','2','0'), ('34109','3','','10394','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a88b7bcaa2174a76b09031993ee48fb4','0','2','0'), ('34110','3','','10394','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','906ca6fa0cf64000bac2efbc0f5dc7f9','0','2','0'), ('34111','17','','10394','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'Item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bc9c48b56cc6405c8256566d4768903a','0','2','0'), ('34112','20','get[1.3.6.1.2.1.1.4.0]','10394','System contact details','system.contact','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','19896943dda74f798241c176b1f4fc4f','0','2','0'), ('34113','20','get[1.3.6.1.2.1.1.1.0]','10394','System description','system.descr','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c4bd78d5e1f442128eddcdf4ea22d4b3','0','2','0'), ('34114','20','get[1.3.6.1.2.1.47.1.1.1.1.13.1]','10394','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','58642d7727964ba48f41bc33cfb6ef37','0','2','0'), ('34115','20','get[1.3.6.1.2.1.47.1.1.1.1.11.1]','10394','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7fa7b4e4803e4eed932c176afed56cd5','0','2','0'), ('34116','20','get[1.3.6.1.2.1.1.6.0]','10394','System location','system.location','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The physical location of this node (e.g., `telephone closet, 3rd floor''). If the location is unknown, the value is the zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','213f54a3c23c40aa8693169efd8c0d82','0','2','0'), ('34117','20','get[1.3.6.1.2.1.1.5.0]','10394','System name','system.name','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7e325f94720f4b29ad83a741a3735fa1','0','2','0'), ('34118','20','get[1.3.6.1.2.1.1.2.0]','10394','System object ID','system.objectid','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2fce50826a7d498abe4ca628021fb9ac','0','2','0'), ('34119','20','get[1.3.6.1.2.1.1.1.0]','10394','Operating system','system.sw.os','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0d55299054304e658dc036f234727c73','0','2','0'), ('34120','20','get[1.3.6.1.2.1.1.3.0]','10394','Uptime (network)','system.net.uptime','1m','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d33f3f14dfff49d88269706ab464e2b9','0','2','0'), ('34121','5','','10394','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'259','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','82c87e2ade594f68abc4861e4d328a16','0','2','0'), ('34122','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5]','10394','CPU discovery','cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable , indexed with cpmCPUTotalIndex . This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router, like different CPU chips, group of CPUs, or CPUs in different modules/cards. In case of a single CPU, cpmCPUTotalTable has only one entry.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f472cb3505b34f14b84bc1ce69f66b29','0','2','0'), ('34123','20','discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11]','10394','Entity Serial Numbers discovery','entity_sn.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7b40466007144e82ba7b6081d9d024ae','0','2','0'), ('34124','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.4.1.2]','10394','FAN discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The table of fan status maintained by the environmental monitor.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4972e929a2e84bc1bf37f8844aa640d2','0','2','0'), ('34125','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2]','10394','Memory discovery','memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries. http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d5c08c7436a44b74b35c4dd5be5c308a','0','2','0'), ('34126','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10394','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c0be105de4db4c0182833e6a7e0fcd01','0','2','0'), ('34127','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2]','10394','EtherLike discovery','net.if.duplex.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','15992a60957c4ef896ece23744da52f1','0','2','0'), ('34128','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.5.1.2]','10394','PSU discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The table of power supply status maintained by the environmental monitor card.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d2658fe23d274233accf16090273118f','0','2','0'), ('34129','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2]','10394','Temperature discovery','temperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status maintained by the environmental monitor.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ab60f4a103254b2c87f260014ecd1a28','0','2','0'), ('34130','20','get[1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX}]','10394','#{#SNMPINDEX}: CPU utilization','system.cpu.util[{#SNMPINDEX}]','5m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-PROCESS-MIB Object name: cpmCPUTotal5minRev The cpmCPUTotal5minRev MIB object provides a more accurate view of the performance of the router over time than the MIB objects cpmCPUTotal1minRev and cpmCPUTotal5secRev . These MIB objects are not accurate because they look at CPU at one minute and five second intervals, respectively. These MIBs enable you to monitor the trends and plan the capacity of your network. The recommended baseline rising threshold for cpmCPUTotal5minRev is 90 percent. Depending on the platform, some routers that run at 90 percent, for example, 2500s, can exhibit performance degradation versus a high-end router, for example, the 7500 series, which can operate fine. Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','71248adcae1247fb8fe96ff83505b72a','0','2','0'), ('34131','20','get[1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX}]','10394','{#ENT_NAME}: Hardware serial number','system.hw.serialnumber[{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB Object name: entPhysicalSerialNum','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c08c86fa7d1a4f16b51a8212eb98826f','0','2','0'), ('34132','20','get[1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX}]','10394','{#SNMPVALUE}: Fan status','sensor.fan.status[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'254','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB Object name: ciscoEnvMonFanState','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6bc5cda2b5fa487d8841f6f9d07899e3','0','2','0'), ('34133','20','get[1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX}]','10394','{#SNMPVALUE}: Free memory','vm.memory.free[{#SNMPINDEX}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-MEMORY-POOL-MIB Object name: ciscoMemoryPoolFree Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3520b5d6482145958337956cb29d5dad','0','2','0'), ('34134','20','get[1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX}]','10394','{#SNMPVALUE}: Used memory','vm.memory.used[{#SNMPINDEX}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-MEMORY-POOL-MIB Object name: ciscoMemoryPoolUsed Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device. Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5317e1db040846728cf05f3b7fe5dcab','0','2','0'), ('34135','15','','10394','{#SNMPVALUE}: Memory utilization','vm.memory.util[{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[{#SNMPINDEX}])/(last(//vm.memory.free[{#SNMPINDEX}])+last(//vm.memory.used[{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Memory utilization in %','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9120f609d03f44c68c5c34177745422c','0','2','0'), ('34136','20','get[1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}]','10394','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','06f850ef11f24e79be813a8b79e25d91','0','2','0'), ('34137','20','get[1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}]','10394','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','216cd11617ce4fcb9551cbada0189919','0','2','0'), ('34138','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10394','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9dfdb09ca395486b9b71f1e3d74b8f5a','0','2','0'), ('34139','20','get[1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}]','10394','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','69fffa684b344774877ccb05e80fa0ab','0','2','0'), ('34140','20','get[1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}]','10394','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ce6a12b2553d456b87738efeb43ca849','0','2','0'), ('34141','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10394','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','eee4285b410f470f82e05c8f0cbc97b5','0','2','0'), ('34142','20','get[1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}]','10394','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n'' then the speed of the interface is somewhere in the range of `n-500,000'' to`n+499,999''. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b95c3c8730434b58a1a03c661c767901','0','2','0'), ('34143','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10394','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'256','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','28cb37005e6c46eaa636b5de0b7b5c8d','0','2','0'), ('34144','20','get[1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}]','10394','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'257','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','73d4de02c2e84a75acd66e33d98f6180','0','2','0'), ('34145','20','get[1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX}]','10394','Interface {#IFNAME}({#IFALIAS}): Duplex status','net.if.duplex[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'255','','','0','','','','','2',NULL,'MIB: EtherLike-MIB Object name: dot3StatsDuplexStatus The current mode of operation of the MAC entity. ''unknown'' indicates that the current duplex mode could not be determined. Management control of the duplex mode is accomplished through the MAU MIB. When an interface does not support autonegotiation, or when autonegotiation is not enabled, the duplex mode is controlled using ifMauDefaultType. When autonegotiation is supported and enabled, duplex mode is controlled using ifMauAutoNegAdvertisedBits. In either case, the currently operating duplex mode is reflected both in this object and in ifMauType. Note that this object provides redundant information with ifMauType. Normally, redundant objects are discouraged. However, in this instance, it allows a management application to determine the duplex status of an interface without having to know every possible value of ifMauType. This was felt to be sufficiently valuable to justify the redundancy. Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','530a9cfa68024c1e8ad6573573c8f2b7','0','2','0'), ('34146','20','get[1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX}]','10394','{#SNMPVALUE}: Power supply status','sensor.psu.status[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'254','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB Object name: ciscoEnvMonSupplyState','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b87fda0166dc4baa9c24124dae6cea5c','0','2','0'), ('34147','20','get[1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX}]','10394','{#SNMPVALUE}: Temperature status','sensor.temp.status[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'254','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB Object name: ciscoEnvMonTemperatureState The current state of the test point being instrumented.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2b2423e625914a4f89b16faaed832bae','0','2','0'), ('34148','20','get[1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX}]','10394','{#SNMPVALUE}: Temperature','sensor.temp.value[{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB Object name: ciscoEnvMonTemperatureValue The current measurement of the test point being instrumented.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','92864c59d4b34a979dc465824c3ef1b2','0','2','0'), ('34149','3','','10251','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'262','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','87480ce035a94f299c4cf4103eaaf066','0','2','0'), ('34150','3','','10251','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','50e85be3969447c58fcfeca5d9a1a9bb','0','2','0'), ('34151','3','','10251','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7567e999d75442379066babdc9b50894','0','2','0'), ('34152','17','','10251','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0cb8aadeb5554583a65c3496cfed2c1b','0','2','0'), ('34153','20','get[1.3.6.1.2.1.1.4.0]','10251','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f62a8b653c3d44d09864a4a4c910aeb1','0','2','0'), ('34154','20','discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2]','10251','CPU utilization','system.cpu.util','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that processors was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c33470549bda45e88ecb8ded7d0b5e87','0','2','0'), ('34155','20','get[1.3.6.1.2.1.1.1.0]','10251','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','64c4f3e890ec4c29be07ba2d06345534','0','2','0'), ('34156','20','get[1.3.6.1.2.1.1.6.0]','10251','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The physical location of this node (e.g., `telephone closet, 3rd floor''). If the location is unknown, the value is the zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e0d2149e1a114f3a971c324673beae2f','0','2','0'), ('34157','20','get[1.3.6.1.2.1.1.5.0]','10251','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f63d1f71a97e45b0ab5716299ef298ea','0','2','0'), ('34158','20','get[1.3.6.1.2.1.1.2.0]','10251','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f1535f45138b472c945e231a9beb9cc5','0','2','0'), ('34159','20','get[1.3.6.1.2.1.1.3.0]','10251','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d7f06d23f6b14677b5183f2cc94fc10d','0','2','0'), ('34160','5','','10251','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'263','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aba117057e824b6789fca847cae9e0fc','0','2','0'), ('34161','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10251','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9e0d4ed074214f22bbbc9c8a5e3b9d0d','0','2','0'), ('34162','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4]','10251','Storage discovery','vfs.fs.discovery[snmp]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f4c83472c88b419da104e4c5a35d6fc9','0','2','0'), ('34163','20','discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4]','10251','Memory discovery','vm.memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with memory filter','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','32a20a1f65d64db3bf17d6d405321253','0','2','0'), ('34164','20','get[1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}]','10251','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8f6e736b5c9c48a68e16122d592534b2','0','2','0'), ('34165','20','get[1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}]','10251','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c625b20266a04a1ba0421b4a64629dcc','0','2','0'), ('34166','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10251','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','262f5aa5582441ecb93fd7df6a59a76d','0','2','0'), ('34167','20','get[1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}]','10251','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b7c510be904e4d06830ae13a16bc9668','0','2','0'), ('34168','20','get[1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}]','10251','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','67b4b6520bbd45fd96d78a5942b54c09','0','2','0'), ('34169','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10251','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8e149281afb742758a00b699a281a584','0','2','0'), ('34170','20','get[1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}]','10251','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n'' then the speed of the interface is somewhere in the range of `n-500,000'' to`n+499,999''. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ddbde55ce98f465a8973d60b1ecb0f8c','0','2','0'), ('34171','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10251','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'260','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6a1429de015640768d2cdd2adc4b09d7','0','2','0'), ('34172','20','get[1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}]','10251','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','31d','0','0','3','','','','',NULL,'261','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7ecba23625b64d94873b938ebbce500b','0','2','0'), ('34173','15','','10251','{#FSNAME}: Space utilization','vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageUsed.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for {#FSNAME}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','84e47981247243bd888a870700da8be3','0','2','0'), ('34174','20','get[1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}]','10251','{#FSNAME}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1a743f5b617f4800b5b2b9672f34693c','0','2','0'), ('34175','20','get[1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}]','10251','{#FSNAME}: Used space','vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','82fadd771c3040c9ba001a9a40a83163','0','2','0'), ('34176','20','get[1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}]','10251','{#MEMNAME}: Total memory','vm.memory.total[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','70918ede8bff4f76be467a806a015b21','0','2','0'), ('34177','20','get[1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}]','10251','{#MEMNAME}: Used memory','vm.memory.used[hrStorageUsed.{#SNMPINDEX}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e661062e7fcb45968ca1e9a1306f4848','0','2','0'), ('34178','15','','10251','{#MEMNAME}: Memory utilization','vm.memory.util[memoryUsedPercentage.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.{#SNMPINDEX}])/last(//vm.memory.total[hrStorageSize.{#SNMPINDEX}])*100','','0','','','','','2',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cedea4befd6a47b8983eff5dee9feed9','0','2','0'), ('34180','20','get[1.3.6.1.4.1.318.1.1.1.4.3.3.0]','10395','Output load','output.load[upsHighPrecOutputLoad]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current UPS load expressed as percentage of rated capacity.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c17c7fd7e6504592869dc14c4a002254','0','2','0'), ('34181','20','get[1.3.6.1.2.1.1.3.0]','10395','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','701fa778bc03444aad94343d0dbe048e','0','2','0'), ('34182','20','get[1.3.6.1.4.1.318.1.1.1.1.2.3.0]','10395','Serial number','system.sn[upsAdvIdentSerialNumber]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB An 8-character string identifying the serial number of the UPS internal microprocessor. This number is set at the factory. NOTE: This number does NOT correspond to the serial number on the rear of the UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1df309508ac9433397f88120b2895451','0','2','0'), ('34183','20','get[1.3.6.1.2.1.1.2.0]','10395','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6780faad9fc9492f9f92915db5161e43','0','2','0'), ('34185','20','get[1.3.6.1.4.1.318.1.1.1.1.1.1.0]','10395','Model','system.model[upsBasicIdentModel]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The UPS model name (e.g. ''APC Smart-UPS 600'').','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6030dbee3cc24dbeb15e4b802e89cbc8','0','2','0'), ('34186','20','get[1.3.6.1.2.1.1.6.0]','10395','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The physical location of this node (e.g., `telephone closet, 3rd floor''). If the location is unknown, the value is the zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','445d7a843340424ab7c09ab001d5865c','0','2','0'), ('34187','20','get[1.3.6.1.2.1.1.1.0]','10395','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ed42f6f2d8c24176b53f38e0a857a129','0','2','0'), ('34188','20','get[1.3.6.1.2.1.1.4.0]','10395','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','299e4e11e0374888877e1dc386409726','0','2','0'), ('34189','17','','10395','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2c52ba1a964a40e1b4a75582ee6ad43b','0','2','0'), ('34190','20','get[1.3.6.1.4.1.318.1.1.1.4.3.1.0]','10395','Output voltage','output.voltage[upsHighPrecOutputVoltage]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The output voltage of the UPS system in VAC.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','37d7eda5664c4ae2b4a126c60a8eb40b','0','2','0'), ('34191','20','get[1.3.6.1.4.1.318.1.1.1.4.1.1.0]','10395','Output status','output.status[upsBasicOutputStatus]','1m','31d','365d','0','3','','','','',NULL,'315','','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current state of the UPS. If the UPS is unable to determine the state of the UPS this variable is set to unknown(1). During self-test most UPSes report onBattery(3) but some that support it will report onBatteryTest(15). To determine self-test status across all UPSes, refer to the upsBasicStateOutputState OID.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0ae99a18a5c24fb0b812353d25459e1f','0','2','0'), ('34192','20','get[1.3.6.1.4.1.318.1.1.1.4.3.4.0]','10395','Output current','output.current[upsHighPrecOutputCurrent]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current in amperes drawn by the load on the UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a332c87a948045beae13f74984245b86','0','2','0'), ('34193','20','get[1.3.6.1.4.1.318.1.1.1.2.2.5.0]','10395','External battery packs count','battery.external_packs_count[upsAdvBatteryNumOfBattPacks]','1h','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The number of external battery packs connected to the UPS. If the UPS does not use smart cells then the agent reports ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','390e33a7623d41d2a8a67752c6d5c733','0','2','0'), ('34194','20','get[1.3.6.1.4.1.318.1.1.1.3.3.1.0]','10395','Input voltage','input.voltage[upsHighPrecInputLineVoltage]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current utility line voltage in VAC.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','de84a2fbbb464023a7b73e01895a9e9d','0','2','0'), ('34195','20','get[1.3.6.1.4.1.318.1.1.1.3.3.4.0]','10395','Input frequency','input.frequency[upsHighPrecInputFrequency]','1m','31d','365d','0','0','','Hz','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current input frequency to the UPS system in Hz.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2c0b565f2b6a44a2a91cc61fd220f056','0','2','0'), ('34196','20','get[1.3.6.1.4.1.318.1.1.1.3.2.5.0]','10395','Input fail cause','input.fail[upsAdvInputLineFailCause]','1m','31d','365d','0','3','','','','',NULL,'266','','','0','','','','','0',NULL,'MIB: PowerNet-MIB The reason for the occurrence of the last transfer to UPS battery power. The variable is set to: - noTransfer(1) -- if there is no transfer yet. - highLineVoltage(2) -- if the transfer to battery is caused by an over voltage greater than the high transfer voltage. - brownout(3) -- if the duration of the outage is greater than five seconds and the line voltage is between 40% of the rated output voltage and the low transfer voltage. - blackout(4) -- if the duration of the outage is greater than five seconds and the line voltage is between 40% of the rated output voltage and ground. - smallMomentarySag(5) -- if the duration of the outage is less than five seconds and the line voltage is between 40% of the rated output voltage and the low transfer voltage. - deepMomentarySag(6) -- if the duration of the outage is less than five seconds and the line voltage is between 40% of the rated output voltage and ground. The variable is set to - smallMomentarySpike(7) -- if the line failure is caused by a rate of change of input voltage less than ten volts per cycle. - largeMomentarySpike(8) -- if the line failure is caused by a rate of change of input voltage greater than ten volts per cycle. - selfTest(9) -- if the UPS was commanded to do a self test. - rateOfVoltageChange(10) -- if the failure is due to the rate of change of the line voltage.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6ce40beab0b44248868652b0ed543afc','0','2','0'), ('34200','20','get[1.3.6.1.4.1.318.1.1.1.2.3.4.0]','10395','Battery voltage','battery.voltage[upsHighPrecBatteryActualVoltage]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The actual battery bus voltage in Volts.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b78d2e9160c74f328b8123ba2031d7bf','0','2','0'), ('34201','20','get[1.3.6.1.4.1.318.1.1.1.2.3.2.0]','10395','Battery temperature','battery.temperature[upsHighPrecBatteryTemperature]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current internal UPS temperature in Celsius. Temperatures below zero read as 0.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7c35a9646eed4e4581edc51d42a9604c','0','2','0'), ('34202','20','get[1.3.6.1.4.1.318.1.1.1.2.1.1.0]','10395','Battery status','battery.status[upsBasicBatteryStatus]','1m','31d','365d','0','3','','','','',NULL,'267','','','0','','','','','0',NULL,'MIB: PowerNet-MIB The status of the UPS batteries. A batteryLow(3) value indicates the UPS will be unable to sustain the current load, and its services will be lost if power is not restored. The amount of run time in reserve at the time of low battery can be configured by the upsAdvConfigLowBatteryRunTime. A batteryInFaultCondition(4)value indicates that a battery installed has an internal error condition.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f4106603e47e40548592d60a7b8b3148','0','2','0'), ('34203','20','get[1.3.6.1.4.1.318.1.1.1.2.2.3.0]','10395','Battery runtime remaining','battery.runtime_remaining[upsAdvBatteryRunTimeRemaining]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The UPS battery run time remaining before battery exhaustion.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f52a3e2ae08c4b2996249c5601b4098d','0','2','0'), ('34204','20','get[1.3.6.1.4.1.318.1.1.1.2.2.4.0]','10395','Battery replace indicator','battery.replace_indicator[upsAdvBatteryReplaceIndicator]','1m','31d','365d','0','3','','','','',NULL,'265','','','0','','','','','0',NULL,'MIB: PowerNet-MIB Indicates whether the UPS batteries need replacement.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','eb74b3671b4d4335ad92bd3b027547b0','0','2','0'), ('34205','20','get[1.3.6.1.4.1.318.1.1.1.2.1.3.0]','10395','Battery last replace date','battery.last_replace_date[upsBasicBatteryLastReplaceDate]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The date when the UPS system''s batteries were last replaced in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value is originally set at the factory. When the UPS batteries are replaced, this value should be reset by the administrator. For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3d69adaa88e64b8084d38c1482815bf2','0','2','0'), ('34206','5','','10395','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'269','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ca3275f69f3c4e7c9c71108451c0b64f','0','2','0'), ('34207','20','discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6]','10395','External bad battery packs discovery','battery.packs.bad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of the number of external defective battery packs.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','52345d2975214002bdd05a24e43484a8','0','2','0'), ('34208','20','discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2]','10395','External battery packs discovery','battery.packs.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f7eb1c82c6694e72b7d28ba4d71d8741','0','2','0'), ('34209','20','discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3]','10395','External sensor port 1 discovery','external.sensor1.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'uioSensorStatusTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','457169b3c43846739614a6ddc7155fda','0','2','0'), ('34210','20','discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3]','10395','External sensor port 2 discovery','external.sensor2.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'uioSensorStatusTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','06a853147fe646659d066fff34f67faa','0','2','0'), ('34211','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1]','10395','Input phases discovery','input.phases.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The input phase identifier. OID upsPhaseInputPhaseIndex.1.1','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','16e8b3b4d38040a7961b1de4c18a4ea9','0','2','0'), ('34212','20','get[1.3.6.1.4.1.318.1.1.1.2.2.6.0]','10395','{#SNMPINDEX}: External battery packs bad','battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}]','15m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The number of external battery packs connected to the UPS that are defective. If the UPS does not use smart cells then the agent reports ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c4dccc96218448d696952f6ea5d1f24b','0','2','0'), ('34213','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX}]','10395','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date','battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The battery cartridge estimated battery replace date.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a168ef9da6504b31a8234b272f1a1a80','0','2','0'), ('34214','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX}]','10395','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health','battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The battery cartridge health. bit 0 Battery lifetime okay bit 1 Battery lifetime near end, order replacement cartridge bit 2 Battery lifetime exceeded, replace battery bit 3 Battery lifetime near end acknowledged, order replacement cartridge bit 4 Battery lifetime exceeded acknowledged, replace battery bit 5 Battery measured lifetime near end, order replacement cartridge bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fd71d1ceaf524aeaac38de5f63d101fd','0','2','0'), ('34215','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX}]','10395','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status','battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The battery cartridge status. bit 0 Disconnected bit 1 Overvoltage bit 2 NeedsReplacement bit 3 OvertemperatureCritical bit 4 Charger bit 5 TemperatureSensor bit 6 BusSoftStart bit 7 OvertemperatureWarning bit 8 GeneralError bit 9 Communication bit 10 DisconnectedFrame bit 11 FirmwareMismatch','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fa05e062413a4c1fba4d35e3006b91f4','0','2','0'), ('34216','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX}]','10395','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature','battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The current internal UPS temperature in Celsius. Temperatures below zero read as 0.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','017347865030426e9dde74e9bcf38c76','0','2','0'), ('34217','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX}]','10395','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number','system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The battery pack serial number.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','354c1d6766d6453caeb382cf7ede7951','0','2','0'), ('34218','20','get[1.3.6.1.4.1.318.1.1.25.1.2.1.7.{#SNMPINDEX}]','10395','{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current humidity reading - a relative humidity percentage. -1 indicates an invalid reading due to either a sensor that doesn''t read humidity or lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ee017a632ee944fe9122e21fa7e7531f','0','2','0'), ('34219','20','get[1.3.6.1.4.1.318.1.1.25.1.2.1.9.{#SNMPINDEX}]','10395','{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'264','','','0','','','','','2',NULL,'MIB: PowerNet-MIB The alarm status of the sensor. Possible values: uioNormal (1), uioWarning (2), uioCritical (3), sensorStatusNotApplicable (4)','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0431cf0a54b449c9b77623b69629920f','0','2','0'), ('34220','20','get[1.3.6.1.4.1.318.1.1.25.1.2.1.6.{#SNMPINDEX}]','10395','{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current temperature reading in Celsius. -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6de4920e4e87418884a82ff8b40a46ab','0','2','0'), ('34221','20','get[1.3.6.1.4.1.318.1.1.25.1.2.2.7.{#SNMPINDEX}]','10395','{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current humidity reading - a relative humidity percentage. -1 indicates an invalid reading due to either a sensor that doesn''t read humidity or lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3417b035a4f14ce3992e10029674de8e','0','2','0'), ('34222','20','get[1.3.6.1.4.1.318.1.1.25.1.2.2.9.{#SNMPINDEX}]','10395','{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'264','','','0','','','','','2',NULL,'MIB: PowerNet-MIB The alarm status of the sensor. Possible values: uioNormal (1), uioWarning (2), uioCritical (3), sensorStatusNotApplicable (4)','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d04af1687eb846d18b57af04ab1b594b','0','2','0'), ('34223','20','get[1.3.6.1.4.1.318.1.1.25.1.2.2.6.{#SNMPINDEX}]','10395','{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current temperature reading in Celsius. -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bbf611aad1454b38ad39fa258239394a','0','2','0'), ('34224','20','get[1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX}]','10395','{#PHASEINDEX}: Phase input current','phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The input current in 0.1 amperes, or -0.1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a1b8277cd1b248348263c233ab05fd4f','0','2','0'), ('34225','20','get[1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX}]','10395','{#PHASEINDEX}: Phase input voltage','phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The input voltage in VAC, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','40c05eaf739540979d11787a694cb8c9','0','2','0'), ('34226','19','','10396','Get chassis','netapp.chassis.get','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$USERNAME}','{$PASSWORD}','','','0',NULL,'','0','30d','0','',NULL,'{$HTTP.AGENT.TIMEOUT}','{$URL}/api/cluster/chassis?fields=id,state','','','200','1','0','','','0','0','0','0','0','0','0','95d822159f2a4c4084ad36b18cd11a1d','0','2','0'), ('34227','15','','10396','Cluster latency, read','netapp.cluster.statistics.latency.read','1m','31d','365d','0','0','','!ms','','',NULL,NULL,'(last(//netapp.cluster.statistics.latency_raw.read) - last(//netapp.cluster.statistics.latency_raw.read,#2)) / (last(//netapp.cluster.statistics.iops_raw.read) - last(//netapp.cluster.statistics.iops_raw.read,#2) + (last(//netapp.cluster.statistics.iops_raw.read) - last(//netapp.cluster.statistics.iops_raw.read,#2) = 0) ) * 0.001','','0','','','','','0',NULL,'The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for read I/O operations.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4b89e603f9cf4b92a85293b1ad15c005','0','2','0'), ('34228','19','','10396','Get SVMs','netapp.svms.get','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$USERNAME}','{$PASSWORD}','','','0',NULL,'','0','30d','0','',NULL,'{$HTTP.AGENT.TIMEOUT}','{$URL}/api/svm/svms?fields=name,state,comment','','','200','1','0','','','0','0','0','0','0','0','0','7a813b7cb05d497fbf77bf11b01757dd','0','2','0'), ('34229','19','','10396','Get FC ports','netapp.ports.fc.get','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$USERNAME}','{$PASSWORD}','','','0',NULL,'','0','30d','0','',NULL,'{$HTTP.AGENT.TIMEOUT}','{$URL}/api/network/fc/ports?fields=name,node.name,description,enabled,fabric.switch_port,state','','','200','1','0','','','0','0','0','0','0','0','0','2a6abfe87cc548bb81fcb217cde4f805','0','2','0'), ('34230','19','','10396','Get ethernet ports','netapp.ports.eth.get','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$USERNAME}','{$PASSWORD}','','','0',NULL,'','0','30d','0','',NULL,'{$HTTP.AGENT.TIMEOUT}','{$URL}/api/network/ethernet/ports?fields=name,type,node.name,broadcast_domain.name,enabled,state,mtu,speed','','','200','1','0','','','0','0','0','0','0','0','0','c677a3caf7a04710bc67b165b4152808','0','2','0'), ('34231','19','','10396','Get nodes','netapp.nodes.get','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$USERNAME}','{$PASSWORD}','','','0',NULL,'','0','30d','0','',NULL,'{$HTTP.AGENT.TIMEOUT}','{$URL}/api/cluster/nodes?fields=*','','','200','1','0','','','0','0','0','0','0','0','0','5c36efc545ba4dcbb0be84da5e8088cc','0','2','0'), ('34232','19','','10396','Get LUNs','netapp.luns.get','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$USERNAME}','{$PASSWORD}','','','0',NULL,'','0','30d','0','',NULL,'{$HTTP.AGENT.TIMEOUT}','{$URL}/api/storage/luns?fields=name,svm.name,space.size,space.used,status.state,status.container_state','','','200','1','0','','','0','0','0','0','0','0','0','c9b6ac2405af48c0899d1536662f752b','0','2','0'), ('34233','19','','10396','Get FRUs','netapp.frus.get','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$USERNAME}','{$PASSWORD}','','','0',NULL,'','0','30d','0','',NULL,'{$HTTP.AGENT.TIMEOUT}','{$URL}/api/cluster/chassis?fields=id,frus.id,frus.state','','','200','1','0','','','0','0','0','0','0','0','0','54163ca73a8c40188048ef5d89ec4927','0','2','0'), ('34234','19','','10396','Get disks','netapp.disks.get','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$USERNAME}','{$PASSWORD}','','','0',NULL,'','0','30d','0','',NULL,'{$HTTP.AGENT.TIMEOUT}','{$URL}/api/storage/disks?fields=state,node.name','','','200','1','0','','','0','0','0','0','0','0','0','c9bf91e0f23c4961aed8ee5b32ff7767','0','2','0'), ('34235','19','','10396','Get cluster','netapp.cluster.get','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$USERNAME}','{$PASSWORD}','','','0',NULL,'','0','30d','0','',NULL,'{$HTTP.AGENT.TIMEOUT}','{$URL}/api/cluster','','','200','1','0','','','0','0','0','0','0','0','0','49490a886b5f4e5c9e8cc121a6ffd713','0','2','0'), ('34236','15','','10396','Cluster latency, write','netapp.cluster.statistics.latency.write','1m','31d','365d','0','0','','!ms','','',NULL,NULL,'(last(//netapp.cluster.statistics.latency_raw.write) - last(//netapp.cluster.statistics.latency_raw.write,#2)) / (last(//netapp.cluster.statistics.iops_raw.write) - last(//netapp.cluster.statistics.iops_raw.write,#2) + (last(//netapp.cluster.statistics.iops_raw.write) - last(//netapp.cluster.statistics.iops_raw.write,#2) = 0) ) * 0.001','','0','','','','','0',NULL,'The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for write I/O operations.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','543ba306d85e41c98d34dab39463dd87','0','2','0'), ('34237','15','','10396','Cluster latency, total','netapp.cluster.statistics.latency.total','1m','31d','365d','0','0','','!ms','','',NULL,NULL,'(last(//netapp.cluster.statistics.latency_raw.total) - last(//netapp.cluster.statistics.latency_raw.total,#2)) / (last(//netapp.cluster.statistics.iops_raw.total) - last(//netapp.cluster.statistics.iops_raw.total,#2) + (last(//netapp.cluster.statistics.iops_raw.total) - last(//netapp.cluster.statistics.iops_raw.total,#2) = 0) ) * 0.001','','0','','','','','0',NULL,'The average latency per I/O operation in milliseconds observed at the storage object. Performance metric aggregated over all types of I/O operations.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2c953f67a7484e389d11ac5ef6b06c44','0','2','0'), ('34238','19','','10396','Get volumes','netapp.volumes.get','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$USERNAME}','{$PASSWORD}','','','0',NULL,'','0','30d','0','',NULL,'{$HTTP.AGENT.TIMEOUT}','{$URL}/api/storage/volumes?fields=name,comment,state,type,svm.name,space.size,space.available,space.used,statistics','','','200','1','0','','','0','0','0','0','0','0','0','fa7fa8daaaa640d494af38614ba12c2e','0','2','0'), ('34239','15','','10396','Cluster latency, other','netapp.cluster.statistics.latency.other','1m','31d','365d','0','0','','!ms','','',NULL,NULL,'(last(//netapp.cluster.statistics.latency_raw.other) - last(//netapp.cluster.statistics.latency_raw.other,#2)) / (last(//netapp.cluster.statistics.iops_raw.other) - last(//netapp.cluster.statistics.iops_raw.other,#2) + (last(//netapp.cluster.statistics.iops_raw.other) - last(//netapp.cluster.statistics.iops_raw.other,#2) = 0) ) * 0.001','','0','','','','','0',NULL,'The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4bd4fe94e9a54fa2b8ab9bdf0475edff','0','2','0'), ('34260','19','','10396','Chassis discovery','netapp.chassis.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$USERNAME}','{$PASSWORD}','','','1',NULL,'','0','7d','0','',NULL,'{$HTTP.AGENT.TIMEOUT}','{$URL}/api/cluster/chassis?fields=id','','','200','1','0','','','0','0','0','0','0','0','0','c5265605c1b5440999b7c0dbff8ce328','0','2','0'), ('34261','19','','10396','Disks discovery','netapp.disks.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$USERNAME}','{$PASSWORD}','','','1',NULL,'','0','7d','0','',NULL,'{$HTTP.AGENT.TIMEOUT}','{$URL}/api/storage/disks?fields=name,node.name','','','200','1','0','','','0','0','0','0','0','0','0','e7c0955f88d342179b96f56e1f35afe2','0','2','0'), ('34263','19','','10396','LUNs discovery','netapp.luns.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$USERNAME}','{$PASSWORD}','','','1',NULL,'','0','7d','0','',NULL,'{$HTTP.AGENT.TIMEOUT}','{$URL}/api/storage/luns?fields=name,svm.name,space.size,space.used,status.state,status.container_state','','','200','1','0','','','0','0','0','0','0','0','0','b75474be384f4d7fa0f625c4cebeef43','0','2','0'), ('34264','19','','10396','Nodes discovery','netapp.nodes.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$USERNAME}','{$PASSWORD}','','','1',NULL,'','0','7d','0','',NULL,'{$HTTP.AGENT.TIMEOUT}','{$URL}/api/cluster/nodes?fields=name','','','200','1','0','','','0','0','0','0','0','0','0','b914c4c37ba446eba7ecdc73a9692885','0','2','0'), ('34265','19','','10396','Ethernet ports discovery','netapp.ports.ether.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$USERNAME}','{$PASSWORD}','','','1',NULL,'','0','7d','0','',NULL,'{$HTTP.AGENT.TIMEOUT}','{$URL}/api/network/ethernet/ports?fields=name,state,node.name','','','200','1','0','','','0','0','0','0','0','0','0','98ed5727ede8490b8479a2194b2c847a','0','2','0'), ('34266','19','','10396','FC ports discovery','netapp.ports.fc.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$USERNAME}','{$PASSWORD}','','','1',NULL,'','0','7d','0','',NULL,'{$HTTP.AGENT.TIMEOUT}','{$URL}/api/network/fc/ports?fields=node.name,name,state','','','200','1','0','','','0','0','0','0','0','0','0','bab3f935c2a04c89b0901f1c19d50558','0','2','0'), ('34267','19','','10396','SVMs discovery','netapp.svms.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$USERNAME}','{$PASSWORD}','','','1',NULL,'','0','7d','0','',NULL,'{$HTTP.AGENT.TIMEOUT}','{$URL}/api/svm/svms?fields=name','','','200','1','0','','','0','0','0','0','0','0','0','b2a5b50d7e3e4592ad9627ae85487554','0','2','0'), ('34268','19','','10396','Volumes discovery','netapp.volumes.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','1','{$USERNAME}','{$PASSWORD}','','','1',NULL,'','0','7d','0','',NULL,'{$HTTP.AGENT.TIMEOUT}','{$URL}/api/storage/volumes?fields=name','','','200','1','0','','','0','0','0','0','0','0','0','3d2001596c2642e7a6ee09d3ac7effb3','0','2','0'), ('34269','15','','10396','{#VOLUMENAME}: Volume latency, other','netapp.volume.statistics.latency.other[{#VOLUMENAME}]','1m','31d','365d','0','0','','!ms','','',NULL,NULL,'(last(//netapp.volume.statistics.latency_raw.other[{#VOLUMENAME}]) - last(//netapp.volume.statistics.latency_raw.other[{#VOLUMENAME}],#2)) / (last(//netapp.volume.statistics.iops_raw.other[{#VOLUMENAME}]) - last(//netapp.volume.statistics.iops_raw.other[{#VOLUMENAME}],#2) + (last(//netapp.volume.statistics.iops_raw.other[{#VOLUMENAME}]) - last(//netapp.volume.statistics.iops_raw.other[{#VOLUMENAME}],#2) = 0) ) * 0.001','','0','','','','','2',NULL,'The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fc21c2c1ff87454ea9fc59af4d0d4693','0','2','0'), ('34270','15','','10396','{#VOLUMENAME}: Volume latency, read','netapp.volume.statistics.latency.read[{#VOLUMENAME}]','1m','31d','365d','0','0','','!ms','','',NULL,NULL,'(last(//netapp.volume.statistics.latency_raw.read[{#VOLUMENAME}]) - last(//netapp.volume.statistics.latency_raw.read[{#VOLUMENAME}],#2)) / (last(//netapp.volume.statistics.iops_raw.read[{#VOLUMENAME}]) - last(//netapp.volume.statistics.iops_raw.read[{#VOLUMENAME}],#2) + (last(//netapp.volume.statistics.iops_raw.read[{#VOLUMENAME}]) - last(//netapp.volume.statistics.iops_raw.read[{#VOLUMENAME}],#2) = 0)) * 0.001','','0','','','','','2',NULL,'The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for read I/O operations.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3e80e6c55bd0497f87d4f4e71f11f0aa','0','2','0'), ('34271','15','','10396','{#VOLUMENAME}: Volume latency, write','netapp.volume.statistics.latency.write[{#VOLUMENAME}]','1m','31d','365d','0','0','','!ms','','',NULL,NULL,'(last(//netapp.volume.statistics.latency_raw.write[{#VOLUMENAME}]) - last(//netapp.volume.statistics.latency_raw.write[{#VOLUMENAME}],#2)) / (last(//netapp.volume.statistics.iops_raw.write[{#VOLUMENAME}]) - last(//netapp.volume.statistics.iops_raw.write[{#VOLUMENAME}],#2) + (last(//netapp.volume.statistics.iops_raw.write[{#VOLUMENAME}]) - last(//netapp.volume.statistics.iops_raw.write[{#VOLUMENAME}],#2) = 0) ) * 0.001','','0','','','','','2',NULL,'The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for write I/O operations.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','eb2b3a3c4807415a8a88d11b19ae7fe6','0','2','0'), ('34272','15','','10396','{#VOLUMENAME}: Volume latency, total','netapp.volume.statistics.latency.total[{#VOLUMENAME}]','1m','31d','365d','0','0','','!ms','','',NULL,NULL,'(last(//netapp.volume.statistics.latency_raw.total[{#VOLUMENAME}]) - last(//netapp.volume.statistics.latency_raw.total[{#VOLUMENAME}],#2)) / (last(//netapp.volume.statistics.iops_raw.total[{#VOLUMENAME}]) - last(//netapp.volume.statistics.iops_raw.total[{#VOLUMENAME}],#2) + (last(//netapp.volume.statistics.iops_raw.total[{#VOLUMENAME}]) - last(//netapp.volume.statistics.iops_raw.total[{#VOLUMENAME}],#2) = 0) ) * 0.001','','0','','','','','2',NULL,'The average latency per I/O operation in milliseconds observed at the storage object. Performance metric aggregated over all types of I/O operations.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ff804a090b064bfeb60183d7d7d2abe1','0','2','0'), ('34316','5','','10047','Utilization of report writer internal processes, in %','zabbix[process,report writer,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the report writer processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9c74858428cb4578b8a9095140b64d52','0','2','0'), ('34317','5','','10047','Utilization of report manager internal processes, in %','zabbix[process,report manager,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the report manager processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3db38f5d250741fd833aec23e09bc52e','0','2','0'), ('34322','11','','10327','Get job status','db.odbc.get[get_job_status,"{$MSSQL.DSN}"]','10m','0','0','0','4','','','','',NULL,NULL,'SELECT sj.name AS job_name, sj.enabled AS enabled, sjs.last_run_outcome AS run_status, sjs.last_outcome_message AS last_run_status_message, sjs.last_run_duration/10000*3600 + sjs.last_run_duration/100%100*60 + sjs.last_run_duration%100 AS run_duration, CASE sjs.last_run_date WHEN 0 THEN NULL ELSE CONVERT( VARCHAR(25), TODATETIMEOFFSET(msdb.dbo.agent_datetime(sjs.last_run_date,sjs.last_run_time), DATEPART(TZoffset, SYSDATETIMEOFFSET())), 126) END AS last_run_date_time, sja.next_scheduled_run_date AS next_run_date_time FROM msdb..sysjobs AS sj LEFT JOIN msdb..sysjobservers AS sjs ON sj.job_id = sjs.job_id LEFT JOIN ( SELECT job.job_id, max(act.session_id) AS s_id, CONVERT( VARCHAR(25), TODATETIMEOFFSET(max(act.next_scheduled_run_date), DATEPART(TZoffset, SYSDATETIMEOFFSET())), 126) AS next_scheduled_run_date FROM msdb..sysjobs AS job LEFT JOIN msdb..sysjobactivity AS act ON act.job_id = job.job_id GROUP BY job.job_id ) AS sja ON sja.job_id = sj.job_id WHERE Enabled = 1','','0','{$MSSQL.USER}','{$MSSQL.PASSWORD}','','','0',NULL,'The item gets the SQL agent job status.','0','30d','0','',NULL,'30s','','','','200','1','0','','','0','0','0','0','0','0','0','cae1f9b034b04357b038212b04cac794','0','2','0'), ('34323','11','','10327','Get last backup','db.odbc.get[get_last_backup,"{$MSSQL.DSN}"]','10m','0','0','0','4','','','','',NULL,NULL,'SELECT bs.database_name as dbname, [type], DATEDIFF(SECOND, bs.backup_finish_date, getdate()) as time_since_last_backup, (DATEDIFF(SECOND, bs.backup_start_date, bs.backup_finish_date)) as duration, db.recovery_model as db_recovery_model FROM msdb.dbo.backupset as bs LEFT JOIN sys.databases as db ON bs.database_name = db.name WHERE bs.database_name not in ( SELECT AGDatabases.database_name AS Databasename FROM sys.dm_hadr_availability_group_states States INNER JOIN master.sys.availability_groups Groups ON States.group_id = Groups.group_id INNER JOIN sys.availability_databases_cluster AGDatabases ON Groups.group_id = AGDatabases.group_id WHERE primary_replica != @@Servername OR primary_replica is NULL ) and db.name is not NULL GROUP BY bs.database_name, backup_finish_date, [type], backup_start_date, db.recovery_model HAVING backup_finish_date = ( SELECT MAX(backup_finish_date) FROM msdb.dbo.backupset WHERE database_name = bs.database_name AND bs.type = [type] ) ORDER BY bs.database_name','','0','{$MSSQL.USER}','{$MSSQL.PASSWORD}','','','0',NULL,'The item gets information about backup processes.','0','30d','0','',NULL,'30s','','','','200','1','0','','','0','0','0','0','0','0','0','9b106ca122fb4b75a761e80f4239f906','0','2','0'), ('34336','19','','10397','Get instance metrics','pd.get_metrics','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get TiDB PD instance metrics.','0','30d','0','',NULL,'','{$PD.URL}:{$PD.PORT}/metrics','','','200','1','0','','','0','0','0','0','0','0','0','3a1fd879a08a445cbf438f3d68078111','0','2','0'), ('34337','19','','10397','Get instance status','pd.get_status','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get TiDB PD instance status info.','0','30d','0','',NULL,'','{$PD.URL}:{$PD.PORT}/pd/api/v1/status','','','200','1','0','','','0','0','0','0','0','0','0','7eb740eed4eb43a0a449e1c1436e582b','0','2','0'), ('34367','19','','10398','Get instance status','tidb.get_status','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get TiDB instance status info.','0','30d','0','',NULL,'','{$TIDB.URL}:{$TIDB.PORT}/status','','','200','1','0','','','0','0','0','0','0','0','0','e95ebe1050b8404f8274e243203fdecc','0','2','0'), ('34368','19','','10398','Get instance metrics','tidb.get_metrics','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get TiDB instance metrics.','0','30d','0','',NULL,'','{$TIDB.URL}:{$TIDB.PORT}/metrics','','','200','1','0','','','0','0','0','0','0','0','0','954f5e433a7c44128d7772b87d493270','0','2','0'), ('34412','19','','10399','Get instance metrics','tikv.get_metrics','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get TiKV instance metrics.','0','30d','0','',NULL,'','{$TIKV.URL}:{$TIKV.PORT}/metrics','','','200','1','0','','','0','0','0','0','0','0','0','418bcc8c0bc440468efe833bef02929d','0','2','0'), ('34451','20','get[1.3.6.1.4.1.318.1.1.1.2.3.1.0]','10400','Battery capacity','battery.capacity[upsHighPrecBatteryCapacity]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The remaining battery capacity expressed as percentage of full capacity.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','70ebcb1dee674a60a1410895d60e8245','0','2','0'), ('34452','20','get[1.3.6.1.4.1.318.1.1.1.4.1.1.0]','10400','Output status','output.status[upsBasicOutputStatus]','1m','31d','365d','0','3','','','','',NULL,'277','','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current state of the UPS. If the UPS is unable to determine the state of the UPS this variable is set to unknown(1). During self-test most UPSes report onBattery(3) but some that support it will report onBatteryTest(15). To determine self-test status across all UPSes, refer to the upsBasicStateOutputState OID.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8a6c9b134ebc4fd19876cf5d50dfc17b','0','2','0'), ('34453','20','get[1.3.6.1.2.1.1.3.0]','10400','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fc207a1df4324fcf99ba1da262527fe3','0','2','0'), ('34454','20','get[1.3.6.1.4.1.318.1.1.1.1.2.3.0]','10400','Serial number','system.sn[upsAdvIdentSerialNumber]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB An 8-character string identifying the serial number of the UPS internal microprocessor. This number is set at the factory. NOTE: This number does NOT correspond to the serial number on the rear of the UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ef25b1e818534420920ff6260fa2932e','0','2','0'), ('34455','20','get[1.3.6.1.2.1.1.2.0]','10400','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5497f3649b9348dca290c55e94f48597','0','2','0'), ('34456','20','get[1.3.6.1.2.1.1.5.0]','10400','System name','system.name[sysName.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d6f2c9770c28487d9fa6af2b63917958','0','2','0'), ('34457','20','get[1.3.6.1.4.1.318.1.1.1.1.1.1.0]','10400','Model','system.model[upsBasicIdentModel]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The UPS model name (e.g. ''APC Smart-UPS 600'').','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','93b6e128e95a4a96bde38ef15d74d510','0','2','0'), ('34458','20','get[1.3.6.1.2.1.1.6.0]','10400','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The physical location of this node (e.g., `telephone closet, 3rd floor''). If the location is unknown, the value is the zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b109475e72e74e76846aa478e9937101','0','2','0'), ('34459','20','get[1.3.6.1.2.1.1.1.0]','10400','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f1df592a2b114677a1beabec33ce01f9','0','2','0'), ('34460','20','get[1.3.6.1.2.1.1.4.0]','10400','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aa5e85ef78504fc080b97342baf6cb35','0','2','0'), ('34461','17','','10400','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7d20aa252c5143c98de837dbd2f0cd53','0','2','0'), ('34462','20','get[1.3.6.1.4.1.318.1.1.1.4.3.1.0]','10400','Output voltage','output.voltage[upsHighPrecOutputVoltage]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The output voltage of the UPS system in VAC.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4ec893da7b8540548d60a91ee7e2df83','0','2','0'), ('34463','20','get[1.3.6.1.4.1.318.1.1.1.4.3.3.0]','10400','Output load','output.load[upsHighPrecOutputLoad]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current UPS load expressed as percentage of rated capacity.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5774ead79e8b4d63a4a31bc091d1c52a','0','2','0'), ('34464','20','get[1.3.6.1.4.1.318.1.1.1.2.2.5.0]','10400','External battery packs count','battery.external_packs_count[upsAdvBatteryNumOfBattPacks]','1h','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The number of external battery packs connected to the UPS. If the UPS does not use smart cells then the agent reports ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2b417eadc988460a89db04efdaca4ffc','0','2','0'), ('34465','20','get[1.3.6.1.4.1.318.1.1.1.4.3.4.0]','10400','Output current','output.current[upsHighPrecOutputCurrent]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current in amperes drawn by the load on the UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a6737781029b422ca7a8bbfa0ed80b56','0','2','0'), ('34466','20','get[1.3.6.1.4.1.318.1.1.1.3.3.1.0]','10400','Input voltage','input.voltage[upsHighPrecInputLineVoltage]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current utility line voltage in VAC.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','89bb663e356c4420bcbe2a9470ae3195','0','2','0'), ('34467','20','get[1.3.6.1.4.1.318.1.1.1.3.3.4.0]','10400','Input frequency','input.frequency[upsHighPrecInputFrequency]','1m','31d','365d','0','0','','Hz','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current input frequency to the UPS system in Hz.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3a64740655ca455ab0280592b5f0055f','0','2','0'), ('34468','20','get[1.3.6.1.4.1.318.1.1.1.3.2.5.0]','10400','Input fail cause','input.fail[upsAdvInputLineFailCause]','1m','31d','365d','0','3','','','','',NULL,'275','','','0','','','','','0',NULL,'MIB: PowerNet-MIB The reason for the occurrence of the last transfer to UPS battery power. The variable is set to: - noTransfer(1) -- if there is no transfer yet. - highLineVoltage(2) -- if the transfer to battery is caused by an over voltage greater than the high transfer voltage. - brownout(3) -- if the duration of the outage is greater than five seconds and the line voltage is between 40% of the rated output voltage and the low transfer voltage. - blackout(4) -- if the duration of the outage is greater than five seconds and the line voltage is between 40% of the rated output voltage and ground. - smallMomentarySag(5) -- if the duration of the outage is less than five seconds and the line voltage is between 40% of the rated output voltage and the low transfer voltage. - deepMomentarySag(6) -- if the duration of the outage is less than five seconds and the line voltage is between 40% of the rated output voltage and ground. The variable is set to - smallMomentarySpike(7) -- if the line failure is caused by a rate of change of input voltage less than ten volts per cycle. - largeMomentarySpike(8) -- if the line failure is caused by a rate of change of input voltage greater than ten volts per cycle. - selfTest(9) -- if the UPS was commanded to do a self test. - rateOfVoltageChange(10) -- if the failure is due to the rate of change of the line voltage.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9069a1c0d9304e7fa5f2df133dbb46cd','0','2','0'), ('34469','20','get[1.3.6.1.4.1.318.1.1.1.2.3.4.0]','10400','Battery voltage','battery.voltage[upsHighPrecBatteryActualVoltage]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The actual battery bus voltage in Volts.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','756f727fe8374aeba9d1afd7bbe77f02','0','2','0'), ('34470','20','get[1.3.6.1.4.1.318.1.1.1.2.3.2.0]','10400','Battery temperature','battery.temperature[upsHighPrecBatteryTemperature]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current internal UPS temperature in Celsius. Temperatures below zero read as 0.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7a0a2b5e702f473fa1144eaf499367b2','0','2','0'), ('34471','20','get[1.3.6.1.4.1.318.1.1.1.2.1.1.0]','10400','Battery status','battery.status[upsBasicBatteryStatus]','1m','31d','365d','0','3','','','','',NULL,'276','','','0','','','','','0',NULL,'MIB: PowerNet-MIB The status of the UPS batteries. A batteryLow(3) value indicates the UPS will be unable to sustain the current load, and its services will be lost if power is not restored. The amount of run time in reserve at the time of low battery can be configured by the upsAdvConfigLowBatteryRunTime. A batteryInFaultCondition(4)value indicates that a battery installed has an internal error condition.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','22a95e447ad74d43a191f368346fde59','0','2','0'), ('34472','20','get[1.3.6.1.4.1.318.1.1.1.2.2.3.0]','10400','Battery runtime remaining','battery.runtime_remaining[upsAdvBatteryRunTimeRemaining]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The UPS battery run time remaining before battery exhaustion.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','89cca909c60745fe824d02aa0d4bc3d7','0','2','0'), ('34473','20','get[1.3.6.1.4.1.318.1.1.1.2.2.4.0]','10400','Battery replace indicator','battery.replace_indicator[upsAdvBatteryReplaceIndicator]','1m','31d','365d','0','3','','','','',NULL,'274','','','0','','','','','0',NULL,'MIB: PowerNet-MIB Indicates whether the UPS batteries need replacement.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b7614652ff6f4e0890f366b8e0831b80','0','2','0'), ('34474','20','get[1.3.6.1.4.1.318.1.1.1.2.1.3.0]','10400','Battery last replace date','battery.last_replace_date[upsBasicBatteryLastReplaceDate]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The date when the UPS system''s batteries were last replaced in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value is originally set at the factory. When the UPS batteries are replaced, this value should be reset by the administrator. For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','98af792142464656b925a452e5ebf1cc','0','2','0'), ('34475','5','','10400','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'278','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','efad5c028c0d4c11b57a19dc04830ea7','0','2','0'), ('34476','20','discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6]','10400','External bad battery packs discovery','battery.packs.bad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of the number of external defective battery packs.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','54a867c14c814e4ab4803c5a59082e44','0','2','0'), ('34477','20','discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2]','10400','External battery packs discovery','battery.packs.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0c8fc55bbe984d919c3b87a096d900d5','0','2','0'), ('34478','20','discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3]','10400','External sensor port 1 discovery','external.sensor1.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'uioSensorStatusTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ffb60da941114174932b219e14892be9','0','2','0'), ('34479','20','discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3]','10400','External sensor port 2 discovery','external.sensor2.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'uioSensorStatusTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','463ed9f01f3a4cf6ba91f2707baded15','0','2','0'), ('34480','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1]','10400','Input phases discovery','input.phases.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The input phase identifier. OID upsPhaseInputPhaseIndex.1.1','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f16f2ab100614ae6bccf66e5a840c7db','0','2','0'), ('34481','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1]','10400','Output phases discovery','output.phases.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','518ca26562f04d7b8e5af9d26317d138','0','2','0'), ('34482','20','get[1.3.6.1.4.1.318.1.1.1.2.2.6.0]','10400','{#SNMPINDEX}: External battery packs bad','battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}]','15m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The number of external battery packs connected to the UPS that are defective. If the UPS does not use smart cells then the agent reports ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2a60e35fabb44c78bd827e22293166d9','0','2','0'), ('34483','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX}]','10400','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date','battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The battery cartridge estimated battery replace date.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a7023eed55484d1d9f0754ccb1ec9f87','0','2','0'), ('34484','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX}]','10400','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health','battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The battery cartridge health. bit 0 Battery lifetime okay bit 1 Battery lifetime near end, order replacement cartridge bit 2 Battery lifetime exceeded, replace battery bit 3 Battery lifetime near end acknowledged, order replacement cartridge bit 4 Battery lifetime exceeded acknowledged, replace battery bit 5 Battery measured lifetime near end, order replacement cartridge bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','41cd82bb312344b7bdb9c7c5aac2eb21','0','2','0'), ('34485','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX}]','10400','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status','battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The status of the UPS batteries. A batteryLow(3) value indicates the UPS will be unable to sustain the current load, and its services will be lost if power is not restored. The amount of run time in reserve at the time of low battery can be configured by the upsAdvConfigLowBatteryRunTime. A batteryInFaultCondition(4)value indicates that a battery installed has an internal error condition.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','241efd4ef6204c58adc04e4e04660845','0','2','0'), ('34486','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX}]','10400','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature','battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The current internal UPS temperature in Celsius. Temperatures below zero read as 0.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a55dd3033a2645aab5592f356043c342','0','2','0'), ('34487','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX}]','10400','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number','system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB An 8-character string identifying the serial number of the UPS internal microprocessor. This number is set at the factory. NOTE: This number does NOT correspond to the serial number on the rear of the UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8ea7d066a5ae4141b4cd0af13d96c40c','0','2','0'), ('34488','20','get[1.3.6.1.4.1.318.1.1.25.1.2.1.7.{#SNMPINDEX}]','10400','{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current humidity reading - a relative humidity percentage. -1 indicates an invalid reading due to either a sensor that doesn''t read humidity or lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f2bcca2221e94e828755a90f98c98495','0','2','0'), ('34489','20','get[1.3.6.1.4.1.318.1.1.25.1.2.1.9.{#SNMPINDEX}]','10400','{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'273','','','0','','','','','2',NULL,'MIB: PowerNet-MIB The alarm status of the sensor. Possible values: uioNormal (1), uioWarning (2), uioCritical (3), sensorStatusNotApplicable (4)','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1a41c120082948bdb6865413bdc09917','0','2','0'), ('34490','20','get[1.3.6.1.4.1.318.1.1.25.1.2.1.6.{#SNMPINDEX}]','10400','{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current temperature reading in Celsius. -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a191d2ff066e4f4ba04aede67cd6876d','0','2','0'), ('34491','20','get[1.3.6.1.4.1.318.1.1.25.1.2.2.7.{#SNMPINDEX}]','10400','{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current humidity reading - a relative humidity percentage. -1 indicates an invalid reading due to either a sensor that doesn''t read humidity or lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e2200965a13541b1a100e4880d8363ff','0','2','0'), ('34492','20','get[1.3.6.1.4.1.318.1.1.25.1.2.2.9.{#SNMPINDEX}]','10400','{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'273','','','0','','','','','2',NULL,'MIB: PowerNet-MIB The alarm status of the sensor. Possible values: uioNormal (1), uioWarning (2), uioCritical (3), sensorStatusNotApplicable (4)','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','492835d959d644d7b95fc480cba5d3dc','0','2','0'), ('34493','20','get[1.3.6.1.4.1.318.1.1.25.1.2.2.6.{#SNMPINDEX}]','10400','{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current temperature reading in Celsius. -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2cf2d697c95845ba8ec61af2ec698f4c','0','2','0'), ('34494','20','get[1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX}]','10400','{#PHASEINDEX}: Phase input current','phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The input current in 0.1 amperes, or -0.1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7c0490500bed4258a8663777cd62e378','0','2','0'), ('34495','20','get[1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX}]','10400','{#PHASEINDEX}: Phase input voltage','phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The input voltage in VAC, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7356945fc0e94026a2ca04d297fdf953','0','2','0'), ('34496','20','get[1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX}]','10400','{#PHASEINDEX}: Phase output current','phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The output current in 0.1 amperes drawn by the load on the UPS, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c3888f41e7f246b1a30d21325f814695','0','2','0'), ('34497','20','get[1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX}]','10400','{#PHASEINDEX}: Phase output load, %','phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The percentage of the UPS load capacity in VA at redundancy @ (n + x) presently being used on this output phase, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3eb001cece8340d59cd0e7f59812f149','0','2','0'), ('34498','20','get[1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX}]','10400','{#PHASEINDEX}: Phase output voltage','phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The output voltage in VAC, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f09e23dcb5b24170b356556a36bb39cc','0','2','0'), ('34499','20','get[1.3.6.1.4.1.318.1.1.1.2.3.1.0]','10401','Battery capacity','battery.capacity[upsHighPrecBatteryCapacity]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The remaining battery capacity expressed as percentage of full capacity.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6933bd19628f4699974d5dc4b1637c53','0','2','0'), ('34500','20','get[1.3.6.1.4.1.318.1.1.1.4.1.1.0]','10401','Output status','output.status[upsBasicOutputStatus]','1m','31d','365d','0','3','','','','',NULL,'283','','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current state of the UPS. If the UPS is unable to determine the state of the UPS this variable is set to unknown(1). During self-test most UPSes report onBattery(3) but some that support it will report onBatteryTest(15). To determine self-test status across all UPSes, refer to the upsBasicStateOutputState OID.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','54d22d1cc362492ebe8695257afc20ec','0','2','0'), ('34501','20','get[1.3.6.1.2.1.1.3.0]','10401','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f077c3558d24471ca807ea24b3f0c5ea','0','2','0'), ('34502','20','get[1.3.6.1.4.1.318.1.1.1.1.2.3.0]','10401','Serial number','system.sn[upsAdvIdentSerialNumber]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB An 8-character string identifying the serial number of the UPS internal microprocessor. This number is set at the factory. NOTE: This number does NOT correspond to the serial number on the rear of the UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4e87619ed81346d497c3c3f548c342b5','0','2','0'), ('34503','20','get[1.3.6.1.2.1.1.2.0]','10401','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5a393860311b4b64ae5a4ce7cd7000dc','0','2','0'), ('34504','20','get[1.3.6.1.2.1.1.5.0]','10401','System name','system.name[sysName.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d9452c921e4946719726b292d8c0cbd6','0','2','0'), ('34505','20','get[1.3.6.1.4.1.318.1.1.1.1.1.1.0]','10401','Model','system.model[upsBasicIdentModel]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The UPS model name (e.g. ''APC Smart-UPS 600'').','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1ba45d867e3d4bb99eeb8c0c320ef127','0','2','0'), ('34506','20','get[1.3.6.1.2.1.1.6.0]','10401','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The physical location of this node (e.g., `telephone closet, 3rd floor''). If the location is unknown, the value is the zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ac995904f95240d9b1f44c27adea5731','0','2','0'), ('34507','20','get[1.3.6.1.2.1.1.1.0]','10401','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e5d72eba4dfb41f8ae73904c936dd64b','0','2','0'), ('34508','20','get[1.3.6.1.2.1.1.4.0]','10401','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','943b146891ac461c92d286704a0864b2','0','2','0'), ('34509','17','','10401','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','94d838cc8cf2438296477c0139a3c152','0','2','0'), ('34510','20','get[1.3.6.1.4.1.318.1.1.1.4.3.1.0]','10401','Output voltage','output.voltage[upsHighPrecOutputVoltage]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The output voltage of the UPS system in VAC.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4e43a6966bf642e19567dcd3763125e7','0','2','0'), ('34511','20','get[1.3.6.1.4.1.318.1.1.1.4.3.3.0]','10401','Output load','output.load[upsHighPrecOutputLoad]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current UPS load expressed as percentage of rated capacity.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','df799c65dbe5437aa941de3e6d386b26','0','2','0'), ('34512','20','get[1.3.6.1.4.1.318.1.1.1.2.2.5.0]','10401','External battery packs count','battery.external_packs_count[upsAdvBatteryNumOfBattPacks]','1h','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The number of external battery packs connected to the UPS. If the UPS does not use smart cells then the agent reports ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8ba1d824fdc548b4bca770f4145f7169','0','2','0'), ('34513','20','get[1.3.6.1.4.1.318.1.1.1.4.3.4.0]','10401','Output current','output.current[upsHighPrecOutputCurrent]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current in amperes drawn by the load on the UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','744d345cd3964baf85f8fefed19f9001','0','2','0'), ('34514','20','get[1.3.6.1.4.1.318.1.1.1.3.3.1.0]','10401','Input voltage','input.voltage[upsHighPrecInputLineVoltage]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current utility line voltage in VAC.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','91a6bc765a954f9e97b855d9dfebd3f7','0','2','0'), ('34515','20','get[1.3.6.1.4.1.318.1.1.1.3.3.4.0]','10401','Input frequency','input.frequency[upsHighPrecInputFrequency]','1m','31d','365d','0','0','','Hz','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current input frequency to the UPS system in Hz.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cfd390d57dbc4046a3a6af384420b697','0','2','0'), ('34516','20','get[1.3.6.1.4.1.318.1.1.1.3.2.5.0]','10401','Input fail cause','input.fail[upsAdvInputLineFailCause]','1m','31d','365d','0','3','','','','',NULL,'281','','','0','','','','','0',NULL,'MIB: PowerNet-MIB The reason for the occurrence of the last transfer to UPS battery power. The variable is set to: - noTransfer(1) -- if there is no transfer yet. - highLineVoltage(2) -- if the transfer to battery is caused by an over voltage greater than the high transfer voltage. - brownout(3) -- if the duration of the outage is greater than five seconds and the line voltage is between 40% of the rated output voltage and the low transfer voltage. - blackout(4) -- if the duration of the outage is greater than five seconds and the line voltage is between 40% of the rated output voltage and ground. - smallMomentarySag(5) -- if the duration of the outage is less than five seconds and the line voltage is between 40% of the rated output voltage and the low transfer voltage. - deepMomentarySag(6) -- if the duration of the outage is less than five seconds and the line voltage is between 40% of the rated output voltage and ground. The variable is set to - smallMomentarySpike(7) -- if the line failure is caused by a rate of change of input voltage less than ten volts per cycle. - largeMomentarySpike(8) -- if the line failure is caused by a rate of change of input voltage greater than ten volts per cycle. - selfTest(9) -- if the UPS was commanded to do a self test. - rateOfVoltageChange(10) -- if the failure is due to the rate of change of the line voltage.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b83275fc1176451dacaa28606edf045a','0','2','0'), ('34517','20','get[1.3.6.1.4.1.318.1.1.1.2.3.4.0]','10401','Battery voltage','battery.voltage[upsHighPrecBatteryActualVoltage]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The actual battery bus voltage in Volts.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','805d95a6f256410ca083f31cc480b88b','0','2','0'), ('34518','20','get[1.3.6.1.4.1.318.1.1.1.2.3.2.0]','10401','Battery temperature','battery.temperature[upsHighPrecBatteryTemperature]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current internal UPS temperature in Celsius. Temperatures below zero read as 0.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bda8df2bbd2a40dc937b2cd5b8017a68','0','2','0'), ('34519','20','get[1.3.6.1.4.1.318.1.1.1.2.1.1.0]','10401','Battery status','battery.status[upsBasicBatteryStatus]','1m','31d','365d','0','3','','','','',NULL,'282','','','0','','','','','0',NULL,'MIB: PowerNet-MIB The status of the UPS batteries. A batteryLow(3) value indicates the UPS will be unable to sustain the current load, and its services will be lost if power is not restored. The amount of run time in reserve at the time of low battery can be configured by the upsAdvConfigLowBatteryRunTime. A batteryInFaultCondition(4)value indicates that a battery installed has an internal error condition.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','078719d0396247bca76d85e1e4c650de','0','2','0'), ('34520','20','get[1.3.6.1.4.1.318.1.1.1.2.2.3.0]','10401','Battery runtime remaining','battery.runtime_remaining[upsAdvBatteryRunTimeRemaining]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The UPS battery run time remaining before battery exhaustion.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','05be71fcb7c1484f876229f48649039e','0','2','0'), ('34521','20','get[1.3.6.1.4.1.318.1.1.1.2.2.4.0]','10401','Battery replace indicator','battery.replace_indicator[upsAdvBatteryReplaceIndicator]','1m','31d','365d','0','3','','','','',NULL,'280','','','0','','','','','0',NULL,'MIB: PowerNet-MIB Indicates whether the UPS batteries need replacement.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4c1107eb93114d9096518dc134e08bdc','0','2','0'), ('34522','20','get[1.3.6.1.4.1.318.1.1.1.2.1.3.0]','10401','Battery last replace date','battery.last_replace_date[upsBasicBatteryLastReplaceDate]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The date when the UPS system''s batteries were last replaced in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value is originally set at the factory. When the UPS batteries are replaced, this value should be reset by the administrator. For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','147e0b7b466e402ba59d73d66801ef1a','0','2','0'), ('34523','5','','10401','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'284','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d679688992124f6c91c3f70bcc341d2d','0','2','0'), ('34524','20','discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6]','10401','External bad battery packs discovery','battery.packs.bad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of the number of external defective battery packs.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','72077c26a51b43a6afea271e70d13004','0','2','0'), ('34525','20','discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2]','10401','External battery packs discovery','battery.packs.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','38aa32616e964db088f4faff12867f1a','0','2','0'), ('34526','20','discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3]','10401','External sensor port 1 discovery','external.sensor1.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'uioSensorStatusTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e428310ecc5f4a53ab7932bcf1247a30','0','2','0'), ('34527','20','discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3]','10401','External sensor port 2 discovery','external.sensor2.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'uioSensorStatusTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','291c45432792490fb3dbccab1a0b9183','0','2','0'), ('34528','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1]','10401','Input phases discovery','input.phases.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The input phase identifier. OID upsPhaseInputPhaseIndex.1.1','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f39e3c1e6b774ada90ca722cb6ca59b4','0','2','0'), ('34529','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1]','10401','Output phases discovery','output.phases.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f56bcd41c5ee4e16b2558563718bf2a6','0','2','0'), ('34530','20','get[1.3.6.1.4.1.318.1.1.1.2.2.6.0]','10401','{#SNMPINDEX}: External battery packs bad','battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}]','15m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The number of external battery packs connected to the UPS that are defective. If the UPS does not use smart cells then the agent reports ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','76ae1be14ab6402e9495bf0dea6243f2','0','2','0'), ('34531','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX}]','10401','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date','battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The battery cartridge estimated battery replace date.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','153ab66e45ae4bc3bbf33324c111ea5e','0','2','0'), ('34532','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX}]','10401','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health','battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The battery cartridge health. bit 0 Battery lifetime okay bit 1 Battery lifetime near end, order replacement cartridge bit 2 Battery lifetime exceeded, replace battery bit 3 Battery lifetime near end acknowledged, order replacement cartridge bit 4 Battery lifetime exceeded acknowledged, replace battery bit 5 Battery measured lifetime near end, order replacement cartridge bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2e3adbdd7c9a4f3f9f151d19e69885bf','0','2','0'), ('34533','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX}]','10401','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status','battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The status of the UPS batteries. A batteryLow(3) value indicates the UPS will be unable to sustain the current load, and its services will be lost if power is not restored. The amount of run time in reserve at the time of low battery can be configured by the upsAdvConfigLowBatteryRunTime. A batteryInFaultCondition(4)value indicates that a battery installed has an internal error condition.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','90e566dbc3184ef8b2ff171630a37c8a','0','2','0'), ('34534','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX}]','10401','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature','battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The current internal UPS temperature in Celsius. Temperatures below zero read as 0.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9277c9b4e065400eb31f2ad965bfa2a5','0','2','0'), ('34535','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX}]','10401','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number','system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB An 8-character string identifying the serial number of the UPS internal microprocessor. This number is set at the factory. NOTE: This number does NOT correspond to the serial number on the rear of the UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','70a45fc5ad1945a89133a4729340bdee','0','2','0'), ('34536','20','get[1.3.6.1.4.1.318.1.1.25.1.2.1.7.{#SNMPINDEX}]','10401','{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current humidity reading - a relative humidity percentage. -1 indicates an invalid reading due to either a sensor that doesn''t read humidity or lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5bc38e9b268047e09d77fc144395b2df','0','2','0'), ('34537','20','get[1.3.6.1.4.1.318.1.1.25.1.2.1.9.{#SNMPINDEX}]','10401','{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'279','','','0','','','','','2',NULL,'MIB: PowerNet-MIB The alarm status of the sensor. Possible values: uioNormal (1), uioWarning (2), uioCritical (3), sensorStatusNotApplicable (4)','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c4bd5c3b0af145448aa2b084738f5149','0','2','0'), ('34538','20','get[1.3.6.1.4.1.318.1.1.25.1.2.1.6.{#SNMPINDEX}]','10401','{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current temperature reading in Celsius. -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','87494b17faf349248ed6cffc4c932a0f','0','2','0'), ('34539','20','get[1.3.6.1.4.1.318.1.1.25.1.2.2.7.{#SNMPINDEX}]','10401','{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current humidity reading - a relative humidity percentage. -1 indicates an invalid reading due to either a sensor that doesn''t read humidity or lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e2cbe8a1fdfe4d368987a8417dc5637b','0','2','0'), ('34540','20','get[1.3.6.1.4.1.318.1.1.25.1.2.2.9.{#SNMPINDEX}]','10401','{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'279','','','0','','','','','2',NULL,'MIB: PowerNet-MIB The alarm status of the sensor. Possible values: uioNormal (1), uioWarning (2), uioCritical (3), sensorStatusNotApplicable (4)','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fc4623c5e962448dbffc98301ddcef4b','0','2','0'), ('34541','20','get[1.3.6.1.4.1.318.1.1.25.1.2.2.6.{#SNMPINDEX}]','10401','{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current temperature reading in Celsius. -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b4e350ad5bb24d7b96091f8b9766cff7','0','2','0'), ('34542','20','get[1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX}]','10401','{#PHASEINDEX}: Phase input current','phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The input current in 0.1 amperes, or -0.1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2be0a7af3cd34723aa5560cd0f86cb44','0','2','0'), ('34543','20','get[1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX}]','10401','{#PHASEINDEX}: Phase input voltage','phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The input voltage in VAC, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dac612b382ce4b93b588e2ba43c01c68','0','2','0'), ('34544','20','get[1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX}]','10401','{#PHASEINDEX}: Phase output current','phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The output current in 0.1 amperes drawn by the load on the UPS, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','193b0c6624a44545b28009ab31463125','0','2','0'), ('34545','20','get[1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX}]','10401','{#PHASEINDEX}: Phase output load, %','phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The percentage of the UPS load capacity in VA at redundancy @ (n + x) presently being used on this output phase, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3af338de874c439daeba535156033317','0','2','0'), ('34546','20','get[1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX}]','10401','{#PHASEINDEX}: Phase output voltage','phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The output voltage in VAC, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a7aecf3b0c2e448b9c09babc79c52380','0','2','0'), ('34547','20','get[1.3.6.1.4.1.318.1.1.1.2.3.1.0]','10402','Battery capacity','battery.capacity[upsHighPrecBatteryCapacity]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The remaining battery capacity expressed as percentage of full capacity.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6e8ed2c349d744a1a07928b32cf574c3','0','2','0'), ('34548','20','get[1.3.6.1.4.1.318.1.1.1.4.1.1.0]','10402','Output status','output.status[upsBasicOutputStatus]','1m','31d','365d','0','3','','','','',NULL,'289','','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current state of the UPS. If the UPS is unable to determine the state of the UPS this variable is set to unknown(1). During self-test most UPSes report onBattery(3) but some that support it will report onBatteryTest(15). To determine self-test status across all UPSes, refer to the upsBasicStateOutputState OID.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','107461ac37984a708acf7f55ae248d67','0','2','0'), ('34549','20','get[1.3.6.1.2.1.1.3.0]','10402','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','39dd6b9b815a4a838a43d2ebf3fcc8f9','0','2','0'), ('34550','20','get[1.3.6.1.4.1.318.1.1.1.1.2.3.0]','10402','Serial number','system.sn[upsAdvIdentSerialNumber]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB An 8-character string identifying the serial number of the UPS internal microprocessor. This number is set at the factory. NOTE: This number does NOT correspond to the serial number on the rear of the UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0c36d0bb59a44db2b80ae4a4ff2d7c1b','0','2','0'), ('34551','20','get[1.3.6.1.2.1.1.2.0]','10402','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f6922cd0f93a4a4288a978ff8336226b','0','2','0'), ('34552','20','get[1.3.6.1.2.1.1.5.0]','10402','System name','system.name[sysName.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1f591627fea54a9ebdd8f10cbf39b9ed','0','2','0'), ('34553','20','get[1.3.6.1.4.1.318.1.1.1.1.1.1.0]','10402','Model','system.model[upsBasicIdentModel]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The UPS model name (e.g. ''APC Smart-UPS 600'').','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','272883d0a1cd4bb585a6ede50336c873','0','2','0'), ('34554','20','get[1.3.6.1.2.1.1.6.0]','10402','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The physical location of this node (e.g., `telephone closet, 3rd floor''). If the location is unknown, the value is the zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a5c6c4c44132439abd0e5fd88e3c90cf','0','2','0'), ('34555','20','get[1.3.6.1.2.1.1.1.0]','10402','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a312df9175ca45528375398f56fa3b3b','0','2','0'), ('34556','20','get[1.3.6.1.2.1.1.4.0]','10402','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fbcbe2cffc8c4bb6b11276cdd03376c3','0','2','0'), ('34557','17','','10402','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','92c2ef138bf148199cdb6d9684b6fa23','0','2','0'), ('34558','20','get[1.3.6.1.4.1.318.1.1.1.4.3.1.0]','10402','Output voltage','output.voltage[upsHighPrecOutputVoltage]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The output voltage of the UPS system in VAC.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ebf71f0afed5460ba4c7f66bb162de9f','0','2','0'), ('34559','20','get[1.3.6.1.4.1.318.1.1.1.4.3.3.0]','10402','Output load','output.load[upsHighPrecOutputLoad]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current UPS load expressed as percentage of rated capacity.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a2613c8d71864594a0c94064d99e059e','0','2','0'), ('34560','20','get[1.3.6.1.4.1.318.1.1.1.2.2.5.0]','10402','External battery packs count','battery.external_packs_count[upsAdvBatteryNumOfBattPacks]','1h','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The number of external battery packs connected to the UPS. If the UPS does not use smart cells then the agent reports ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','86780568c0594469bc7324c68440cbec','0','2','0'), ('34561','20','get[1.3.6.1.4.1.318.1.1.1.4.3.4.0]','10402','Output current','output.current[upsHighPrecOutputCurrent]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current in amperes drawn by the load on the UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a8d017e0fa5d4eca838ad068f0dffcd9','0','2','0'), ('34562','20','get[1.3.6.1.4.1.318.1.1.1.3.3.1.0]','10402','Input voltage','input.voltage[upsHighPrecInputLineVoltage]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current utility line voltage in VAC.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e90dbc034cc447afb4ac1c8ced484882','0','2','0'), ('34563','20','get[1.3.6.1.4.1.318.1.1.1.3.3.4.0]','10402','Input frequency','input.frequency[upsHighPrecInputFrequency]','1m','31d','365d','0','0','','Hz','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current input frequency to the UPS system in Hz.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ab28b72c192e48b5819079bd386ba8ea','0','2','0'), ('34564','20','get[1.3.6.1.4.1.318.1.1.1.3.2.5.0]','10402','Input fail cause','input.fail[upsAdvInputLineFailCause]','1m','31d','365d','0','3','','','','',NULL,'287','','','0','','','','','0',NULL,'MIB: PowerNet-MIB The reason for the occurrence of the last transfer to UPS battery power. The variable is set to: - noTransfer(1) -- if there is no transfer yet. - highLineVoltage(2) -- if the transfer to battery is caused by an over voltage greater than the high transfer voltage. - brownout(3) -- if the duration of the outage is greater than five seconds and the line voltage is between 40% of the rated output voltage and the low transfer voltage. - blackout(4) -- if the duration of the outage is greater than five seconds and the line voltage is between 40% of the rated output voltage and ground. - smallMomentarySag(5) -- if the duration of the outage is less than five seconds and the line voltage is between 40% of the rated output voltage and the low transfer voltage. - deepMomentarySag(6) -- if the duration of the outage is less than five seconds and the line voltage is between 40% of the rated output voltage and ground. The variable is set to - smallMomentarySpike(7) -- if the line failure is caused by a rate of change of input voltage less than ten volts per cycle. - largeMomentarySpike(8) -- if the line failure is caused by a rate of change of input voltage greater than ten volts per cycle. - selfTest(9) -- if the UPS was commanded to do a self test. - rateOfVoltageChange(10) -- if the failure is due to the rate of change of the line voltage.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7b7d6fdeea2e49c9bb74eb301ecca93a','0','2','0'), ('34565','20','get[1.3.6.1.4.1.318.1.1.1.2.3.4.0]','10402','Battery voltage','battery.voltage[upsHighPrecBatteryActualVoltage]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The actual battery bus voltage in Volts.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e478bdaa89674f6792e39ff1a2d9a413','0','2','0'), ('34566','20','get[1.3.6.1.4.1.318.1.1.1.2.3.2.0]','10402','Battery temperature','battery.temperature[upsHighPrecBatteryTemperature]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current internal UPS temperature in Celsius. Temperatures below zero read as 0.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bded43c8a4eb4d1b9cf5403d3f3027cd','0','2','0'), ('34567','20','get[1.3.6.1.4.1.318.1.1.1.2.1.1.0]','10402','Battery status','battery.status[upsBasicBatteryStatus]','1m','31d','365d','0','3','','','','',NULL,'288','','','0','','','','','0',NULL,'MIB: PowerNet-MIB The status of the UPS batteries. A batteryLow(3) value indicates the UPS will be unable to sustain the current load, and its services will be lost if power is not restored. The amount of run time in reserve at the time of low battery can be configured by the upsAdvConfigLowBatteryRunTime. A batteryInFaultCondition(4)value indicates that a battery installed has an internal error condition.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9fa77fdcbd7343ca904c6282efcb7c72','0','2','0'), ('34568','20','get[1.3.6.1.4.1.318.1.1.1.2.2.3.0]','10402','Battery runtime remaining','battery.runtime_remaining[upsAdvBatteryRunTimeRemaining]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The UPS battery run time remaining before battery exhaustion.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d15c36fb66754791b1014f52171efe1c','0','2','0'), ('34569','20','get[1.3.6.1.4.1.318.1.1.1.2.2.4.0]','10402','Battery replace indicator','battery.replace_indicator[upsAdvBatteryReplaceIndicator]','1m','31d','365d','0','3','','','','',NULL,'286','','','0','','','','','0',NULL,'MIB: PowerNet-MIB Indicates whether the UPS batteries need replacement.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b50a17ab043c404990dd088ac9f74078','0','2','0'), ('34570','20','get[1.3.6.1.4.1.318.1.1.1.2.1.3.0]','10402','Battery last replace date','battery.last_replace_date[upsBasicBatteryLastReplaceDate]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The date when the UPS system''s batteries were last replaced in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value is originally set at the factory. When the UPS batteries are replaced, this value should be reset by the administrator. For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1928e58e65a34b188916086bad5b8725','0','2','0'), ('34571','5','','10402','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'290','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','edb39f7236d74c6783e0d4b832e0b94b','0','2','0'), ('34572','20','discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6]','10402','External bad battery packs discovery','battery.packs.bad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of the number of external defective battery packs.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2edf8773186845499a991288d1a7a55b','0','2','0'), ('34573','20','discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2]','10402','External battery packs discovery','battery.packs.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a0d8d681bfb54c1d9792beaf3f708d69','0','2','0'), ('34574','20','discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3]','10402','External sensor port 1 discovery','external.sensor1.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'uioSensorStatusTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','88f5bc98004740fe886f5b1144de2c35','0','2','0'), ('34575','20','discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3]','10402','External sensor port 2 discovery','external.sensor2.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'uioSensorStatusTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c64b5cb02dec4873a2e041359da3cdf7','0','2','0'), ('34576','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1]','10402','Input phases discovery','input.phases.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The input phase identifier. OID upsPhaseInputPhaseIndex.1.1','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ecca1791b7744f30bfcc1018a10cf1fa','0','2','0'), ('34577','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1]','10402','Output phases discovery','output.phases.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c1771434bf6b476280c2f2d15bb52608','0','2','0'), ('34578','20','get[1.3.6.1.4.1.318.1.1.1.2.2.6.0]','10402','{#SNMPINDEX}: External battery packs bad','battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}]','15m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The number of external battery packs connected to the UPS that are defective. If the UPS does not use smart cells then the agent reports ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7ff04c0f873c4c0f9af5aca2bd447cce','0','2','0'), ('34579','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX}]','10402','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date','battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The battery cartridge estimated battery replace date.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','35e7da4783e245a2bfff75f3ae79ff5e','0','2','0'), ('34580','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX}]','10402','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health','battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The battery cartridge health. bit 0 Battery lifetime okay bit 1 Battery lifetime near end, order replacement cartridge bit 2 Battery lifetime exceeded, replace battery bit 3 Battery lifetime near end acknowledged, order replacement cartridge bit 4 Battery lifetime exceeded acknowledged, replace battery bit 5 Battery measured lifetime near end, order replacement cartridge bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b86ac9ee81fe40c8995618c387775270','0','2','0'), ('34581','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX}]','10402','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status','battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The status of the UPS batteries. A batteryLow(3) value indicates the UPS will be unable to sustain the current load, and its services will be lost if power is not restored. The amount of run time in reserve at the time of low battery can be configured by the upsAdvConfigLowBatteryRunTime. A batteryInFaultCondition(4)value indicates that a battery installed has an internal error condition.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','db78c715c220433cb338199d43cb84a0','0','2','0'), ('34582','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX}]','10402','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature','battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The current internal UPS temperature in Celsius. Temperatures below zero read as 0.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bab950aa54ca425db4593049a64cf56f','0','2','0'), ('34583','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX}]','10402','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number','system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB An 8-character string identifying the serial number of the UPS internal microprocessor. This number is set at the factory. NOTE: This number does NOT correspond to the serial number on the rear of the UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d2983b402dfd4435a4790d560da8f6f6','0','2','0'), ('34584','20','get[1.3.6.1.4.1.318.1.1.25.1.2.1.7.{#SNMPINDEX}]','10402','{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current humidity reading - a relative humidity percentage. -1 indicates an invalid reading due to either a sensor that doesn''t read humidity or lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','34e5f00097f4448eadf16071cfa234e9','0','2','0'), ('34585','20','get[1.3.6.1.4.1.318.1.1.25.1.2.1.9.{#SNMPINDEX}]','10402','{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'285','','','0','','','','','2',NULL,'MIB: PowerNet-MIB The alarm status of the sensor. Possible values: uioNormal (1), uioWarning (2), uioCritical (3), sensorStatusNotApplicable (4)','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','04425d6cc153491d9cb710b875f8c9cb','0','2','0'), ('34586','20','get[1.3.6.1.4.1.318.1.1.25.1.2.1.6.{#SNMPINDEX}]','10402','{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current temperature reading in Celsius. -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','29cedff7a5f043caaaa8ff5798b3e925','0','2','0'), ('34587','20','get[1.3.6.1.4.1.318.1.1.25.1.2.2.7.{#SNMPINDEX}]','10402','{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current humidity reading - a relative humidity percentage. -1 indicates an invalid reading due to either a sensor that doesn''t read humidity or lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','445fa35253b942cf8009460ea67701fd','0','2','0'), ('34588','20','get[1.3.6.1.4.1.318.1.1.25.1.2.2.9.{#SNMPINDEX}]','10402','{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'285','','','0','','','','','2',NULL,'MIB: PowerNet-MIB The alarm status of the sensor. Possible values: uioNormal (1), uioWarning (2), uioCritical (3), sensorStatusNotApplicable (4)','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','58a2e39cd7fc4fe1bd825ce6086b4931','0','2','0'), ('34589','20','get[1.3.6.1.4.1.318.1.1.25.1.2.2.6.{#SNMPINDEX}]','10402','{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current temperature reading in Celsius. -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c78cd23b59254174b333514d9c8d28e1','0','2','0'), ('34590','20','get[1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX}]','10402','{#PHASEINDEX}: Phase input current','phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The input current in 0.1 amperes, or -0.1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a8ed43fa8a4543f8ab116c8886511aa3','0','2','0'), ('34591','20','get[1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX}]','10402','{#PHASEINDEX}: Phase input voltage','phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The input voltage in VAC, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','593b355efb0a4e40bd3527c24994da0a','0','2','0'), ('34592','20','get[1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX}]','10402','{#PHASEINDEX}: Phase output current','phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The output current in 0.1 amperes drawn by the load on the UPS, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','582f567d83e84d64862183c3b1e248f8','0','2','0'), ('34593','20','get[1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX}]','10402','{#PHASEINDEX}: Phase output load, %','phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The percentage of the UPS load capacity in VA at redundancy @ (n + x) presently being used on this output phase, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','32c88f722f074fd699d880a603aaa91b','0','2','0'), ('34594','20','get[1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX}]','10402','{#PHASEINDEX}: Phase output voltage','phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The output voltage in VAC, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0502345887e54bbc849a9a4e46a571da','0','2','0'), ('34595','20','get[1.3.6.1.4.1.318.1.1.1.2.3.1.0]','10403','Battery capacity','battery.capacity[upsHighPrecBatteryCapacity]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The remaining battery capacity expressed as percentage of full capacity.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','94c5c76b7e09402bb221827ee1fea5bc','0','2','0'), ('34596','20','get[1.3.6.1.4.1.318.1.1.1.4.1.1.0]','10403','Output status','output.status[upsBasicOutputStatus]','1m','31d','365d','0','3','','','','',NULL,'295','','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current state of the UPS. If the UPS is unable to determine the state of the UPS this variable is set to unknown(1). During self-test most UPSes report onBattery(3) but some that support it will report onBatteryTest(15). To determine self-test status across all UPSes, refer to the upsBasicStateOutputState OID.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3170d441ede24494b9570b6d318cc05f','0','2','0'), ('34597','20','get[1.3.6.1.2.1.1.3.0]','10403','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','336ef2166914449fafa13ab08fe7c7a1','0','2','0'), ('34598','20','get[1.3.6.1.4.1.318.1.1.1.1.2.3.0]','10403','Serial number','system.sn[upsAdvIdentSerialNumber]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB An 8-character string identifying the serial number of the UPS internal microprocessor. This number is set at the factory. NOTE: This number does NOT correspond to the serial number on the rear of the UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','269ce166bb904fa8b11fc2fdf1f67d76','0','2','0'), ('34599','20','get[1.3.6.1.2.1.1.2.0]','10403','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1c00c980ff284fb2bafb8358cc477d13','0','2','0'), ('34600','20','get[1.3.6.1.2.1.1.5.0]','10403','System name','system.name[sysName.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','482bec6573f249abbb721f2ec90def3b','0','2','0'), ('34601','20','get[1.3.6.1.4.1.318.1.1.1.1.1.1.0]','10403','Model','system.model[upsBasicIdentModel]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The UPS model name (e.g. ''APC Smart-UPS 600'').','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','866889bb71e949c18520bf8fefd3e7ea','0','2','0'), ('34602','20','get[1.3.6.1.2.1.1.6.0]','10403','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The physical location of this node (e.g., `telephone closet, 3rd floor''). If the location is unknown, the value is the zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d0351d1bc1dc4f1b853fe64d456b3570','0','2','0'), ('34603','20','get[1.3.6.1.2.1.1.1.0]','10403','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','01302a36cafd421c90d746f785c83f3f','0','2','0'), ('34604','20','get[1.3.6.1.2.1.1.4.0]','10403','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','da60acc731a64257a90512b5c70d1e92','0','2','0'), ('34605','17','','10403','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d08fb7e3fae84d2cbae64ab9771ffcdc','0','2','0'), ('34606','20','get[1.3.6.1.4.1.318.1.1.1.4.3.1.0]','10403','Output voltage','output.voltage[upsHighPrecOutputVoltage]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The output voltage of the UPS system in VAC.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6c7d7d803647478c8f2a79875457110c','0','2','0'), ('34607','20','get[1.3.6.1.4.1.318.1.1.1.4.3.3.0]','10403','Output load','output.load[upsHighPrecOutputLoad]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current UPS load expressed as percentage of rated capacity.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cd7b2c1b12df4fd19f37485aa380b295','0','2','0'), ('34608','20','get[1.3.6.1.4.1.318.1.1.1.2.2.5.0]','10403','External battery packs count','battery.external_packs_count[upsAdvBatteryNumOfBattPacks]','1h','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The number of external battery packs connected to the UPS. If the UPS does not use smart cells then the agent reports ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1a52452353b443d6b965293fda3b16b9','0','2','0'), ('34609','20','get[1.3.6.1.4.1.318.1.1.1.4.3.4.0]','10403','Output current','output.current[upsHighPrecOutputCurrent]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current in amperes drawn by the load on the UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','145d3bf81b00427aad5563a4feb7aea1','0','2','0'), ('34610','20','get[1.3.6.1.4.1.318.1.1.1.3.3.1.0]','10403','Input voltage','input.voltage[upsHighPrecInputLineVoltage]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current utility line voltage in VAC.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d7281586af02462a9a2f511c0a5741eb','0','2','0'), ('34611','20','get[1.3.6.1.4.1.318.1.1.1.3.3.4.0]','10403','Input frequency','input.frequency[upsHighPrecInputFrequency]','1m','31d','365d','0','0','','Hz','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current input frequency to the UPS system in Hz.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0ceb5a6d71f440fcbd2da06b0cc1bbb3','0','2','0'), ('34612','20','get[1.3.6.1.4.1.318.1.1.1.3.2.5.0]','10403','Input fail cause','input.fail[upsAdvInputLineFailCause]','1m','31d','365d','0','3','','','','',NULL,'293','','','0','','','','','0',NULL,'MIB: PowerNet-MIB The reason for the occurrence of the last transfer to UPS battery power. The variable is set to: - noTransfer(1) -- if there is no transfer yet. - highLineVoltage(2) -- if the transfer to battery is caused by an over voltage greater than the high transfer voltage. - brownout(3) -- if the duration of the outage is greater than five seconds and the line voltage is between 40% of the rated output voltage and the low transfer voltage. - blackout(4) -- if the duration of the outage is greater than five seconds and the line voltage is between 40% of the rated output voltage and ground. - smallMomentarySag(5) -- if the duration of the outage is less than five seconds and the line voltage is between 40% of the rated output voltage and the low transfer voltage. - deepMomentarySag(6) -- if the duration of the outage is less than five seconds and the line voltage is between 40% of the rated output voltage and ground. The variable is set to - smallMomentarySpike(7) -- if the line failure is caused by a rate of change of input voltage less than ten volts per cycle. - largeMomentarySpike(8) -- if the line failure is caused by a rate of change of input voltage greater than ten volts per cycle. - selfTest(9) -- if the UPS was commanded to do a self test. - rateOfVoltageChange(10) -- if the failure is due to the rate of change of the line voltage.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0a12f157ae844129a35084b5ab0a8eab','0','2','0'), ('34613','20','get[1.3.6.1.4.1.318.1.1.1.2.3.4.0]','10403','Battery voltage','battery.voltage[upsHighPrecBatteryActualVoltage]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The actual battery bus voltage in Volts.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4b456cb5c0224b31a2f8b4bb40d8203b','0','2','0'), ('34614','20','get[1.3.6.1.4.1.318.1.1.1.2.3.2.0]','10403','Battery temperature','battery.temperature[upsHighPrecBatteryTemperature]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current internal UPS temperature in Celsius. Temperatures below zero read as 0.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c03e15aaf58f4056b88677c44c5d7d87','0','2','0'), ('34615','20','get[1.3.6.1.4.1.318.1.1.1.2.1.1.0]','10403','Battery status','battery.status[upsBasicBatteryStatus]','1m','31d','365d','0','3','','','','',NULL,'294','','','0','','','','','0',NULL,'MIB: PowerNet-MIB The status of the UPS batteries. A batteryLow(3) value indicates the UPS will be unable to sustain the current load, and its services will be lost if power is not restored. The amount of run time in reserve at the time of low battery can be configured by the upsAdvConfigLowBatteryRunTime. A batteryInFaultCondition(4)value indicates that a battery installed has an internal error condition.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a631704123c2498aa8ce973e36c13698','0','2','0'), ('34616','20','get[1.3.6.1.4.1.318.1.1.1.2.2.3.0]','10403','Battery runtime remaining','battery.runtime_remaining[upsAdvBatteryRunTimeRemaining]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The UPS battery run time remaining before battery exhaustion.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f151210b9cd749b2b3e5af2145733c82','0','2','0'), ('34617','20','get[1.3.6.1.4.1.318.1.1.1.2.2.4.0]','10403','Battery replace indicator','battery.replace_indicator[upsAdvBatteryReplaceIndicator]','1m','31d','365d','0','3','','','','',NULL,'292','','','0','','','','','0',NULL,'MIB: PowerNet-MIB Indicates whether the UPS batteries need replacement.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8f4351d23be04a3abee1e6edb746a9ec','0','2','0'), ('34618','20','get[1.3.6.1.4.1.318.1.1.1.2.1.3.0]','10403','Battery last replace date','battery.last_replace_date[upsBasicBatteryLastReplaceDate]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The date when the UPS system''s batteries were last replaced in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value is originally set at the factory. When the UPS batteries are replaced, this value should be reset by the administrator. For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7a887ae254b04b19bac605bb36141767','0','2','0'), ('34619','5','','10403','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'296','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f4f9ebb1e55b41a5a6e470a541e136bc','0','2','0'), ('34620','20','discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6]','10403','External bad battery packs discovery','battery.packs.bad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of the number of external defective battery packs.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','67fa8bb8687b4a36b8d32cda72083966','0','2','0'), ('34621','20','discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2]','10403','External battery packs discovery','battery.packs.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b4a8277fdf6f4e76a641690aaf6e7faa','0','2','0'), ('34622','20','discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3]','10403','External sensor port 1 discovery','external.sensor1.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'uioSensorStatusTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','59467725274d4dba8e839d167cabe693','0','2','0'), ('34623','20','discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3]','10403','External sensor port 2 discovery','external.sensor2.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'uioSensorStatusTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d4b34302c7d74f83a409947f2eed37b0','0','2','0'), ('34624','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1]','10403','Input phases discovery','input.phases.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The input phase identifier. OID upsPhaseInputPhaseIndex.1.1','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','525a204918834dbfa788a3681c2d0527','0','2','0'), ('34625','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1]','10403','Output phases discovery','output.phases.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cbd6b174482c4769887fc1aa2dc2ad5a','0','2','0'), ('34626','20','get[1.3.6.1.4.1.318.1.1.1.2.2.6.0]','10403','{#SNMPINDEX}: External battery packs bad','battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}]','15m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The number of external battery packs connected to the UPS that are defective. If the UPS does not use smart cells then the agent reports ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b144bee7e8464540bbcd8a3c28ce7e9f','0','2','0'), ('34627','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX}]','10403','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date','battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The battery cartridge estimated battery replace date.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9715d1700f5f49ffaf3ff35c666f50cf','0','2','0'), ('34628','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX}]','10403','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health','battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The battery cartridge health. bit 0 Battery lifetime okay bit 1 Battery lifetime near end, order replacement cartridge bit 2 Battery lifetime exceeded, replace battery bit 3 Battery lifetime near end acknowledged, order replacement cartridge bit 4 Battery lifetime exceeded acknowledged, replace battery bit 5 Battery measured lifetime near end, order replacement cartridge bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2e7f6a940840406cb17bb1af20936326','0','2','0'), ('34629','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX}]','10403','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status','battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The status of the UPS batteries. A batteryLow(3) value indicates the UPS will be unable to sustain the current load, and its services will be lost if power is not restored. The amount of run time in reserve at the time of low battery can be configured by the upsAdvConfigLowBatteryRunTime. A batteryInFaultCondition(4)value indicates that a battery installed has an internal error condition.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ad5ce159270e41899665be0a9f9697e1','0','2','0'), ('34630','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX}]','10403','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature','battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The current internal UPS temperature in Celsius. Temperatures below zero read as 0.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1628e49e7f7b468ca2dee87a80321b44','0','2','0'), ('34631','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX}]','10403','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number','system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB An 8-character string identifying the serial number of the UPS internal microprocessor. This number is set at the factory. NOTE: This number does NOT correspond to the serial number on the rear of the UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7c2aec802cfa4b0292e9d1daa94aee05','0','2','0'), ('34632','20','get[1.3.6.1.4.1.318.1.1.25.1.2.1.7.{#SNMPINDEX}]','10403','{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current humidity reading - a relative humidity percentage. -1 indicates an invalid reading due to either a sensor that doesn''t read humidity or lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0336e646ea6247ad8ef4254dff64623e','0','2','0'), ('34633','20','get[1.3.6.1.4.1.318.1.1.25.1.2.1.9.{#SNMPINDEX}]','10403','{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'291','','','0','','','','','2',NULL,'MIB: PowerNet-MIB The alarm status of the sensor. Possible values: uioNormal (1), uioWarning (2), uioCritical (3), sensorStatusNotApplicable (4)','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','137fdf42e0ab476e86e7b0b3bc87d5cc','0','2','0'), ('34634','20','get[1.3.6.1.4.1.318.1.1.25.1.2.1.6.{#SNMPINDEX}]','10403','{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current temperature reading in Celsius. -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b97e3012569840f1bb7da5f5403db6e0','0','2','0'), ('34635','20','get[1.3.6.1.4.1.318.1.1.25.1.2.2.7.{#SNMPINDEX}]','10403','{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current humidity reading - a relative humidity percentage. -1 indicates an invalid reading due to either a sensor that doesn''t read humidity or lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','872bd20f6f5d453490324cd8ea5be7c2','0','2','0'), ('34636','20','get[1.3.6.1.4.1.318.1.1.25.1.2.2.9.{#SNMPINDEX}]','10403','{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'291','','','0','','','','','2',NULL,'MIB: PowerNet-MIB The alarm status of the sensor. Possible values: uioNormal (1), uioWarning (2), uioCritical (3), sensorStatusNotApplicable (4)','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e10189271da445a494d274d99269ab75','0','2','0'), ('34637','20','get[1.3.6.1.4.1.318.1.1.25.1.2.2.6.{#SNMPINDEX}]','10403','{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current temperature reading in Celsius. -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','11cac46ee1834e7c816a2cd9dcc02e82','0','2','0'), ('34638','20','get[1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX}]','10403','{#PHASEINDEX}: Phase input current','phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The input current in 0.1 amperes, or -0.1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fd698a699cd546418802964c6157290e','0','2','0'), ('34639','20','get[1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX}]','10403','{#PHASEINDEX}: Phase input voltage','phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The input voltage in VAC, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1baaad88e9064b92b453fb2c1c7d73d5','0','2','0'), ('34640','20','get[1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX}]','10403','{#PHASEINDEX}: Phase output current','phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The output current in 0.1 amperes drawn by the load on the UPS, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','84ec9adaa7c94f10b55ae9968449d673','0','2','0'), ('34641','20','get[1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX}]','10403','{#PHASEINDEX}: Phase output load, %','phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The percentage of the UPS load capacity in VA at redundancy @ (n + x) presently being used on this output phase, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6d1812674e5646f8acf2ea47acf05a6d','0','2','0'), ('34642','20','get[1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX}]','10403','{#PHASEINDEX}: Phase output voltage','phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The output voltage in VAC, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3c0573d586b24e53aeebb6c44b907bbd','0','2','0'), ('34643','20','get[1.3.6.1.4.1.318.1.1.1.2.3.1.0]','10404','Battery capacity','battery.capacity[upsHighPrecBatteryCapacity]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The remaining battery capacity expressed as percentage of full capacity.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6ac68411ef214cc7aa49d39d58ce3c6a','0','2','0'), ('34644','20','get[1.3.6.1.4.1.318.1.1.1.4.1.1.0]','10404','Output status','output.status[upsBasicOutputStatus]','1m','31d','365d','0','3','','','','',NULL,'301','','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current state of the UPS. If the UPS is unable to determine the state of the UPS this variable is set to unknown(1). During self-test most UPSes report onBattery(3) but some that support it will report onBatteryTest(15). To determine self-test status across all UPSes, refer to the upsBasicStateOutputState OID.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3edf5e7776ae4cc6aebcedcbf4ab8d78','0','2','0'), ('34645','20','get[1.3.6.1.2.1.1.3.0]','10404','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bbcb555846df4169bc7aead77403e8eb','0','2','0'), ('34646','20','get[1.3.6.1.4.1.318.1.1.1.1.2.3.0]','10404','Serial number','system.sn[upsAdvIdentSerialNumber]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB An 8-character string identifying the serial number of the UPS internal microprocessor. This number is set at the factory. NOTE: This number does NOT correspond to the serial number on the rear of the UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9ebb979a5e4a45fd9acf956df034f9be','0','2','0'), ('34647','20','get[1.3.6.1.2.1.1.2.0]','10404','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4e7a9b6aa8dd4371b83bf47f8246cebf','0','2','0'), ('34648','20','get[1.3.6.1.2.1.1.5.0]','10404','System name','system.name[sysName.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e4d9441075954c068b6fd92bbff49cef','0','2','0'), ('34649','20','get[1.3.6.1.4.1.318.1.1.1.1.1.1.0]','10404','Model','system.model[upsBasicIdentModel]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The UPS model name (e.g. ''APC Smart-UPS 600'').','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','320221ba30744ca78b8dce03dccd549b','0','2','0'), ('34650','20','get[1.3.6.1.2.1.1.6.0]','10404','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The physical location of this node (e.g., `telephone closet, 3rd floor''). If the location is unknown, the value is the zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','031b9d385cae4641b9ecfb76c4174262','0','2','0'), ('34651','20','get[1.3.6.1.2.1.1.1.0]','10404','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e0d638ab398f40e8a9555925cd8ba907','0','2','0'), ('34652','20','get[1.3.6.1.2.1.1.4.0]','10404','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','50cc8e7cea0c40948c006623dfa94dae','0','2','0'), ('34653','17','','10404','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d633cd3273e74209a1b0c6b761028e0a','0','2','0'), ('34654','20','get[1.3.6.1.4.1.318.1.1.1.4.3.1.0]','10404','Output voltage','output.voltage[upsHighPrecOutputVoltage]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The output voltage of the UPS system in VAC.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bcb28618699448ea8d9d056bad203a0e','0','2','0'), ('34655','20','get[1.3.6.1.4.1.318.1.1.1.4.3.3.0]','10404','Output load','output.load[upsHighPrecOutputLoad]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current UPS load expressed as percentage of rated capacity.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1d9d7ef724ff41eda4fd536df6af93cb','0','2','0'), ('34656','20','get[1.3.6.1.4.1.318.1.1.1.2.2.5.0]','10404','External battery packs count','battery.external_packs_count[upsAdvBatteryNumOfBattPacks]','1h','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The number of external battery packs connected to the UPS. If the UPS does not use smart cells then the agent reports ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7f3b05afa58142d5b8670c40c196baf8','0','2','0'), ('34657','20','get[1.3.6.1.4.1.318.1.1.1.4.3.4.0]','10404','Output current','output.current[upsHighPrecOutputCurrent]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current in amperes drawn by the load on the UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','861757e4bb1a4dc6ac1c8ef94d973328','0','2','0'), ('34658','20','get[1.3.6.1.4.1.318.1.1.1.3.3.1.0]','10404','Input voltage','input.voltage[upsHighPrecInputLineVoltage]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current utility line voltage in VAC.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e2b5b824c4704293ad68185971e9fb03','0','2','0'), ('34659','20','get[1.3.6.1.4.1.318.1.1.1.3.3.4.0]','10404','Input frequency','input.frequency[upsHighPrecInputFrequency]','1m','31d','365d','0','0','','Hz','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current input frequency to the UPS system in Hz.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','700a78a4ab3c441496ecafc5ddde6a9d','0','2','0'), ('34660','20','get[1.3.6.1.4.1.318.1.1.1.3.2.5.0]','10404','Input fail cause','input.fail[upsAdvInputLineFailCause]','1m','31d','365d','0','3','','','','',NULL,'299','','','0','','','','','0',NULL,'MIB: PowerNet-MIB The reason for the occurrence of the last transfer to UPS battery power. The variable is set to: - noTransfer(1) -- if there is no transfer yet. - highLineVoltage(2) -- if the transfer to battery is caused by an over voltage greater than the high transfer voltage. - brownout(3) -- if the duration of the outage is greater than five seconds and the line voltage is between 40% of the rated output voltage and the low transfer voltage. - blackout(4) -- if the duration of the outage is greater than five seconds and the line voltage is between 40% of the rated output voltage and ground. - smallMomentarySag(5) -- if the duration of the outage is less than five seconds and the line voltage is between 40% of the rated output voltage and the low transfer voltage. - deepMomentarySag(6) -- if the duration of the outage is less than five seconds and the line voltage is between 40% of the rated output voltage and ground. The variable is set to - smallMomentarySpike(7) -- if the line failure is caused by a rate of change of input voltage less than ten volts per cycle. - largeMomentarySpike(8) -- if the line failure is caused by a rate of change of input voltage greater than ten volts per cycle. - selfTest(9) -- if the UPS was commanded to do a self test. - rateOfVoltageChange(10) -- if the failure is due to the rate of change of the line voltage.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4cb80c94f3d14674bc7a3933c7571eac','0','2','0'), ('34661','20','get[1.3.6.1.4.1.318.1.1.1.2.3.4.0]','10404','Battery voltage','battery.voltage[upsHighPrecBatteryActualVoltage]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The actual battery bus voltage in Volts.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8ee98deaf4bf46afb06f694d19757237','0','2','0'), ('34662','20','get[1.3.6.1.4.1.318.1.1.1.2.3.2.0]','10404','Battery temperature','battery.temperature[upsHighPrecBatteryTemperature]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current internal UPS temperature in Celsius. Temperatures below zero read as 0.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','04cd5e06823846b58ad57e2c358f346e','0','2','0'), ('34663','20','get[1.3.6.1.4.1.318.1.1.1.2.1.1.0]','10404','Battery status','battery.status[upsBasicBatteryStatus]','1m','31d','365d','0','3','','','','',NULL,'300','','','0','','','','','0',NULL,'MIB: PowerNet-MIB The status of the UPS batteries. A batteryLow(3) value indicates the UPS will be unable to sustain the current load, and its services will be lost if power is not restored. The amount of run time in reserve at the time of low battery can be configured by the upsAdvConfigLowBatteryRunTime. A batteryInFaultCondition(4)value indicates that a battery installed has an internal error condition.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','047a5a3a957949d288588eb11f36f25e','0','2','0'), ('34664','20','get[1.3.6.1.4.1.318.1.1.1.2.2.3.0]','10404','Battery runtime remaining','battery.runtime_remaining[upsAdvBatteryRunTimeRemaining]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The UPS battery run time remaining before battery exhaustion.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','95749270e6234d6cbd1edb0c5e1118e0','0','2','0'), ('34665','20','get[1.3.6.1.4.1.318.1.1.1.2.2.4.0]','10404','Battery replace indicator','battery.replace_indicator[upsAdvBatteryReplaceIndicator]','1m','31d','365d','0','3','','','','',NULL,'298','','','0','','','','','0',NULL,'MIB: PowerNet-MIB Indicates whether the UPS batteries need replacement.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','44a33eba233e4bd7ac51ca2dcabf2939','0','2','0'), ('34666','20','get[1.3.6.1.4.1.318.1.1.1.2.1.3.0]','10404','Battery last replace date','battery.last_replace_date[upsBasicBatteryLastReplaceDate]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The date when the UPS system''s batteries were last replaced in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value is originally set at the factory. When the UPS batteries are replaced, this value should be reset by the administrator. For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','87b91005f5ff4ba5b0086e25eaa799bd','0','2','0'), ('34667','5','','10404','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'302','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f24fc7ed9ffa4884891a01a0f1565fc4','0','2','0'), ('34668','20','discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6]','10404','External bad battery packs discovery','battery.packs.bad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of the number of external defective battery packs.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9389b159502e4242b02a11104124bae5','0','2','0'), ('34669','20','discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2]','10404','External battery packs discovery','battery.packs.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ec66331f2ae64801a3ef51d6dec5a00f','0','2','0'), ('34670','20','discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3]','10404','External sensor port 1 discovery','external.sensor1.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'uioSensorStatusTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','19379361227740c3bf8bc9852886538d','0','2','0'), ('34671','20','discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3]','10404','External sensor port 2 discovery','external.sensor2.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'uioSensorStatusTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c4df3e0e0eba4585bdd01358f9d7f5d9','0','2','0'), ('34672','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1]','10404','Input phases discovery','input.phases.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The input phase identifier. OID upsPhaseInputPhaseIndex.1.1','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','68610f5b6df44229bcb0ad4b0fa1c3f8','0','2','0'), ('34673','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1]','10404','Output phases discovery','output.phases.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a7b39188df294ec182c3e1f2a2417154','0','2','0'), ('34674','20','get[1.3.6.1.4.1.318.1.1.1.2.2.6.0]','10404','{#SNMPINDEX}: External battery packs bad','battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}]','15m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The number of external battery packs connected to the UPS that are defective. If the UPS does not use smart cells then the agent reports ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','202a5c9f91c64011a915157a07245a6d','0','2','0'), ('34675','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX}]','10404','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date','battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The battery cartridge estimated battery replace date.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8d1574f1c1d442529509580309153564','0','2','0'), ('34676','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX}]','10404','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health','battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The battery cartridge health. bit 0 Battery lifetime okay bit 1 Battery lifetime near end, order replacement cartridge bit 2 Battery lifetime exceeded, replace battery bit 3 Battery lifetime near end acknowledged, order replacement cartridge bit 4 Battery lifetime exceeded acknowledged, replace battery bit 5 Battery measured lifetime near end, order replacement cartridge bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3c829e3adec64fb39334dbacc03a3229','0','2','0'), ('34677','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX}]','10404','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status','battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The status of the UPS batteries. A batteryLow(3) value indicates the UPS will be unable to sustain the current load, and its services will be lost if power is not restored. The amount of run time in reserve at the time of low battery can be configured by the upsAdvConfigLowBatteryRunTime. A batteryInFaultCondition(4)value indicates that a battery installed has an internal error condition.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','15f52cb076cb414fb794113e9981fdde','0','2','0'), ('34678','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX}]','10404','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature','battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The current internal UPS temperature in Celsius. Temperatures below zero read as 0.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e0d8f68302264c1b9420284f3e3a0272','0','2','0'), ('34679','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX}]','10404','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number','system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB An 8-character string identifying the serial number of the UPS internal microprocessor. This number is set at the factory. NOTE: This number does NOT correspond to the serial number on the rear of the UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bca352c952174256b9cfbcffb86fbf90','0','2','0'), ('34680','20','get[1.3.6.1.4.1.318.1.1.25.1.2.1.7.{#SNMPINDEX}]','10404','{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current humidity reading - a relative humidity percentage. -1 indicates an invalid reading due to either a sensor that doesn''t read humidity or lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d9c8acbf3a90411582404c9d5cfa9f70','0','2','0'), ('34681','20','get[1.3.6.1.4.1.318.1.1.25.1.2.1.9.{#SNMPINDEX}]','10404','{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'297','','','0','','','','','2',NULL,'MIB: PowerNet-MIB The alarm status of the sensor. Possible values: uioNormal (1), uioWarning (2), uioCritical (3), sensorStatusNotApplicable (4)','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1a475822bc324bbf8c4aa15c34734270','0','2','0'), ('34682','20','get[1.3.6.1.4.1.318.1.1.25.1.2.1.6.{#SNMPINDEX}]','10404','{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current temperature reading in Celsius. -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6d1005b2b6ad41369174d93b1ebe1959','0','2','0'), ('34683','20','get[1.3.6.1.4.1.318.1.1.25.1.2.2.7.{#SNMPINDEX}]','10404','{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current humidity reading - a relative humidity percentage. -1 indicates an invalid reading due to either a sensor that doesn''t read humidity or lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7d08e2a5df41454f863f5b50a911f819','0','2','0'), ('34684','20','get[1.3.6.1.4.1.318.1.1.25.1.2.2.9.{#SNMPINDEX}]','10404','{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'297','','','0','','','','','2',NULL,'MIB: PowerNet-MIB The alarm status of the sensor. Possible values: uioNormal (1), uioWarning (2), uioCritical (3), sensorStatusNotApplicable (4)','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4774fd152aab49de9064490cf7ec1d0a','0','2','0'), ('34685','20','get[1.3.6.1.4.1.318.1.1.25.1.2.2.6.{#SNMPINDEX}]','10404','{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current temperature reading in Celsius. -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d94425f2025045459af40e8fcb72734e','0','2','0'), ('34686','20','get[1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX}]','10404','{#PHASEINDEX}: Phase input current','phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The input current in 0.1 amperes, or -0.1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d17e9bb868b143dca508c4f79092cd6e','0','2','0'), ('34687','20','get[1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX}]','10404','{#PHASEINDEX}: Phase input voltage','phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The input voltage in VAC, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cf03abf328754a4082017f480051292f','0','2','0'), ('34688','20','get[1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX}]','10404','{#PHASEINDEX}: Phase output current','phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The output current in 0.1 amperes drawn by the load on the UPS, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','638c63c2f4ad4cad8ed71a796d78705b','0','2','0'), ('34689','20','get[1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX}]','10404','{#PHASEINDEX}: Phase output load, %','phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The percentage of the UPS load capacity in VA at redundancy @ (n + x) presently being used on this output phase, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ba4a2ae8abea4e2692b9a43231783648','0','2','0'), ('34690','20','get[1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX}]','10404','{#PHASEINDEX}: Phase output voltage','phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The output voltage in VAC, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4e22c7f6d7e14b20b3720e082042fd4f','0','2','0'), ('34739','20','get[1.3.6.1.4.1.318.1.1.1.2.3.1.0]','10406','Battery capacity','battery.capacity[upsHighPrecBatteryCapacity]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The remaining battery capacity expressed as percentage of full capacity.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c4f4a85105f24292a3b566d0d1bcc090','0','2','0'), ('34740','20','get[1.3.6.1.4.1.318.1.1.1.4.1.1.0]','10406','Output status','output.status[upsBasicOutputStatus]','1m','31d','365d','0','3','','','','',NULL,'313','','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current state of the UPS. If the UPS is unable to determine the state of the UPS this variable is set to unknown(1). During self-test most UPSes report onBattery(3) but some that support it will report onBatteryTest(15). To determine self-test status across all UPSes, refer to the upsBasicStateOutputState OID.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','11c1742beed041999375e5a1ede42546','0','2','0'), ('34741','20','get[1.3.6.1.2.1.1.3.0]','10406','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','320bdbfd8076411bb1dd63fccddec126','0','2','0'), ('34742','20','get[1.3.6.1.4.1.318.1.1.1.1.2.3.0]','10406','Serial number','system.sn[upsAdvIdentSerialNumber]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB An 8-character string identifying the serial number of the UPS internal microprocessor. This number is set at the factory. NOTE: This number does NOT correspond to the serial number on the rear of the UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','63852531159c44f1beca7facd8f93fa2','0','2','0'), ('34743','20','get[1.3.6.1.2.1.1.2.0]','10406','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b59b3801f5584321a1fca9bdb466f191','0','2','0'), ('34744','20','get[1.3.6.1.2.1.1.5.0]','10406','System name','system.name[sysName.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','13c26820947442f581c2234c38c052cc','0','2','0'), ('34745','20','get[1.3.6.1.4.1.318.1.1.1.1.1.1.0]','10406','Model','system.model[upsBasicIdentModel]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The UPS model name (e.g. ''APC Smart-UPS 600'').','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','57f3c4c2aff04eef83b7a7a53fa9f95c','0','2','0'), ('34746','20','get[1.3.6.1.2.1.1.6.0]','10406','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The physical location of this node (e.g., `telephone closet, 3rd floor''). If the location is unknown, the value is the zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','25aa469a757347089191eb8e364d4df9','0','2','0'), ('34747','20','get[1.3.6.1.2.1.1.1.0]','10406','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','13d3c18413a249d492272a7373ebd772','0','2','0'), ('34748','20','get[1.3.6.1.2.1.1.4.0]','10406','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e4995e72f6b442bd9b8c90f09eb54f16','0','2','0'), ('34749','17','','10406','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ae4579b14c424c0492acbfcb5aa5dd67','0','2','0'), ('34750','20','get[1.3.6.1.4.1.318.1.1.1.4.3.1.0]','10406','Output voltage','output.voltage[upsHighPrecOutputVoltage]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The output voltage of the UPS system in VAC.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','07059c625de94e618925249492982fb7','0','2','0'), ('34751','20','get[1.3.6.1.4.1.318.1.1.1.4.3.3.0]','10406','Output load','output.load[upsHighPrecOutputLoad]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current UPS load expressed as percentage of rated capacity.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0413f6ef89894dc6ba51e42f6a963f94','0','2','0'), ('34752','20','get[1.3.6.1.4.1.318.1.1.1.2.2.5.0]','10406','External battery packs count','battery.external_packs_count[upsAdvBatteryNumOfBattPacks]','1h','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The number of external battery packs connected to the UPS. If the UPS does not use smart cells then the agent reports ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7d7c2b962e9843b8a6cf72c04ff1e479','0','2','0'), ('34753','20','get[1.3.6.1.4.1.318.1.1.1.4.3.4.0]','10406','Output current','output.current[upsHighPrecOutputCurrent]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current in amperes drawn by the load on the UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e4d76d857c4e46fd9b0e97405b17988a','0','2','0'), ('34754','20','get[1.3.6.1.4.1.318.1.1.1.3.3.1.0]','10406','Input voltage','input.voltage[upsHighPrecInputLineVoltage]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current utility line voltage in VAC.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c69418651f75413e95645c62fa3fee7f','0','2','0'), ('34755','20','get[1.3.6.1.4.1.318.1.1.1.3.3.4.0]','10406','Input frequency','input.frequency[upsHighPrecInputFrequency]','1m','31d','365d','0','0','','Hz','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current input frequency to the UPS system in Hz.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7574344f67544554804c4c68e39d3d72','0','2','0'), ('34756','20','get[1.3.6.1.4.1.318.1.1.1.3.2.5.0]','10406','Input fail cause','input.fail[upsAdvInputLineFailCause]','1m','31d','365d','0','3','','','','',NULL,'311','','','0','','','','','0',NULL,'MIB: PowerNet-MIB The reason for the occurrence of the last transfer to UPS battery power. The variable is set to: - noTransfer(1) -- if there is no transfer yet. - highLineVoltage(2) -- if the transfer to battery is caused by an over voltage greater than the high transfer voltage. - brownout(3) -- if the duration of the outage is greater than five seconds and the line voltage is between 40% of the rated output voltage and the low transfer voltage. - blackout(4) -- if the duration of the outage is greater than five seconds and the line voltage is between 40% of the rated output voltage and ground. - smallMomentarySag(5) -- if the duration of the outage is less than five seconds and the line voltage is between 40% of the rated output voltage and the low transfer voltage. - deepMomentarySag(6) -- if the duration of the outage is less than five seconds and the line voltage is between 40% of the rated output voltage and ground. The variable is set to - smallMomentarySpike(7) -- if the line failure is caused by a rate of change of input voltage less than ten volts per cycle. - largeMomentarySpike(8) -- if the line failure is caused by a rate of change of input voltage greater than ten volts per cycle. - selfTest(9) -- if the UPS was commanded to do a self test. - rateOfVoltageChange(10) -- if the failure is due to the rate of change of the line voltage.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','07754bb421d0435995abbc49d4597908','0','2','0'), ('34757','20','get[1.3.6.1.4.1.318.1.1.1.2.3.4.0]','10406','Battery voltage','battery.voltage[upsHighPrecBatteryActualVoltage]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The actual battery bus voltage in Volts.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fa8256c826954defa82083ddc742624e','0','2','0'), ('34758','20','get[1.3.6.1.4.1.318.1.1.1.2.3.2.0]','10406','Battery temperature','battery.temperature[upsHighPrecBatteryTemperature]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current internal UPS temperature in Celsius. Temperatures below zero read as 0.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','533041b6831c451cb72991d3fdeca535','0','2','0'), ('34759','20','get[1.3.6.1.4.1.318.1.1.1.2.1.1.0]','10406','Battery status','battery.status[upsBasicBatteryStatus]','1m','31d','365d','0','3','','','','',NULL,'312','','','0','','','','','0',NULL,'MIB: PowerNet-MIB The status of the UPS batteries. A batteryLow(3) value indicates the UPS will be unable to sustain the current load, and its services will be lost if power is not restored. The amount of run time in reserve at the time of low battery can be configured by the upsAdvConfigLowBatteryRunTime. A batteryInFaultCondition(4)value indicates that a battery installed has an internal error condition.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ceed5ddfc9964aabaebb0b97875b1bd9','0','2','0'), ('34760','20','get[1.3.6.1.4.1.318.1.1.1.2.2.3.0]','10406','Battery runtime remaining','battery.runtime_remaining[upsAdvBatteryRunTimeRemaining]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The UPS battery run time remaining before battery exhaustion.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ae8a19896d21405ca99a5bfbd5de1f95','0','2','0'), ('34761','20','get[1.3.6.1.4.1.318.1.1.1.2.2.4.0]','10406','Battery replace indicator','battery.replace_indicator[upsAdvBatteryReplaceIndicator]','1m','31d','365d','0','3','','','','',NULL,'310','','','0','','','','','0',NULL,'MIB: PowerNet-MIB Indicates whether the UPS batteries need replacement.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4cdd4bbff845477194a6d96a31431d23','0','2','0'), ('34762','20','get[1.3.6.1.4.1.318.1.1.1.2.1.3.0]','10406','Battery last replace date','battery.last_replace_date[upsBasicBatteryLastReplaceDate]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The date when the UPS system''s batteries were last replaced in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value is originally set at the factory. When the UPS batteries are replaced, this value should be reset by the administrator. For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','552e030c272d43a0998bc2648f15ae44','0','2','0'), ('34763','5','','10406','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'314','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','567996748402435d80aae37818d4125e','0','2','0'), ('34764','20','discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6]','10406','External bad battery packs discovery','battery.packs.bad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of the number of external defective battery packs.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','912994ce460742ebbb91c89d28d87d73','0','2','0'), ('34765','20','discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2]','10406','External battery packs discovery','battery.packs.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','abfe041a98dc4023b21ec6d9e829a94a','0','2','0'), ('34766','20','discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3]','10406','External sensor port 1 discovery','external.sensor1.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'uioSensorStatusTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','52e5451d8c7a41478ef9dde6a3c16378','0','2','0'), ('34767','20','discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3]','10406','External sensor port 2 discovery','external.sensor2.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'uioSensorStatusTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','39f516180a1b4727907b1e2974111fe1','0','2','0'), ('34768','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1]','10406','Input phases discovery','input.phases.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The input phase identifier. OID upsPhaseInputPhaseIndex.1.1','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','10363e965d97464a9344baa5fa7a2f53','0','2','0'), ('34769','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1]','10406','Output phases discovery','output.phases.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0a3159e22ba640e2840789b63bee2bda','0','2','0'), ('34770','20','get[1.3.6.1.4.1.318.1.1.1.2.2.6.0]','10406','{#SNMPINDEX}: External battery packs bad','battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}]','15m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The number of external battery packs connected to the UPS that are defective. If the UPS does not use smart cells then the agent reports ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e74988ed369b429893ca495a57ae9a52','0','2','0'), ('34771','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX}]','10406','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date','battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The battery cartridge estimated battery replace date.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b3835f9b8e9c41c98a747c37feaedb50','0','2','0'), ('34772','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX}]','10406','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health','battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The battery cartridge health. bit 0 Battery lifetime okay bit 1 Battery lifetime near end, order replacement cartridge bit 2 Battery lifetime exceeded, replace battery bit 3 Battery lifetime near end acknowledged, order replacement cartridge bit 4 Battery lifetime exceeded acknowledged, replace battery bit 5 Battery measured lifetime near end, order replacement cartridge bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','820d8eda050b41a3a9ba2889e290a28a','0','2','0'), ('34773','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX}]','10406','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status','battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The status of the UPS batteries. A batteryLow(3) value indicates the UPS will be unable to sustain the current load, and its services will be lost if power is not restored. The amount of run time in reserve at the time of low battery can be configured by the upsAdvConfigLowBatteryRunTime. A batteryInFaultCondition(4)value indicates that a battery installed has an internal error condition.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cf709f051aa242799cf14ba923d9a0c0','0','2','0'), ('34774','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX}]','10406','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature','battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The current internal UPS temperature in Celsius. Temperatures below zero read as 0.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','99c570ed628343e99ac086167cec51ee','0','2','0'), ('34775','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX}]','10406','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number','system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB An 8-character string identifying the serial number of the UPS internal microprocessor. This number is set at the factory. NOTE: This number does NOT correspond to the serial number on the rear of the UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','597b33ec3d4c4f79bc0acc36edaa6dec','0','2','0'), ('34776','20','get[1.3.6.1.4.1.318.1.1.25.1.2.1.7.{#SNMPINDEX}]','10406','{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current humidity reading - a relative humidity percentage. -1 indicates an invalid reading due to either a sensor that doesn''t read humidity or lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','418b37fbca594f6288eeccdbe272bad7','0','2','0'), ('34777','20','get[1.3.6.1.4.1.318.1.1.25.1.2.1.9.{#SNMPINDEX}]','10406','{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'309','','','0','','','','','2',NULL,'MIB: PowerNet-MIB The alarm status of the sensor. Possible values: uioNormal (1), uioWarning (2), uioCritical (3), sensorStatusNotApplicable (4)','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','53102fe478cf47bd9fbe5240aab7cf65','0','2','0'), ('34778','20','get[1.3.6.1.4.1.318.1.1.25.1.2.1.6.{#SNMPINDEX}]','10406','{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current temperature reading in Celsius. -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0f44bfc0e17b47919e83246046209bbf','0','2','0'), ('34779','20','get[1.3.6.1.4.1.318.1.1.25.1.2.2.7.{#SNMPINDEX}]','10406','{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current humidity reading - a relative humidity percentage. -1 indicates an invalid reading due to either a sensor that doesn''t read humidity or lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2263b22a266a4db091f05522a024a1e4','0','2','0'), ('34780','20','get[1.3.6.1.4.1.318.1.1.25.1.2.2.9.{#SNMPINDEX}]','10406','{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'309','','','0','','','','','2',NULL,'MIB: PowerNet-MIB The alarm status of the sensor. Possible values: uioNormal (1), uioWarning (2), uioCritical (3), sensorStatusNotApplicable (4)','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b7af85f894194cf39c369fcba0401cc5','0','2','0'), ('34781','20','get[1.3.6.1.4.1.318.1.1.25.1.2.2.6.{#SNMPINDEX}]','10406','{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current temperature reading in Celsius. -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','84af771eee61470d9a61cede04718d88','0','2','0'), ('34782','20','get[1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX}]','10406','{#PHASEINDEX}: Phase input current','phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The input current in 0.1 amperes, or -0.1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a275ab18a7064706bf721498ac7c5605','0','2','0'), ('34783','20','get[1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX}]','10406','{#PHASEINDEX}: Phase input voltage','phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The input voltage in VAC, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','113adf39a65548abab2da39aec20c169','0','2','0'), ('34784','20','get[1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX}]','10406','{#PHASEINDEX}: Phase output current','phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The output current in 0.1 amperes drawn by the load on the UPS, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3b625f8ab9f54dca882534d78ee0e584','0','2','0'), ('34785','20','get[1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX}]','10406','{#PHASEINDEX}: Phase output load, %','phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The percentage of the UPS load capacity in VA at redundancy @ (n + x) presently being used on this output phase, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','99357a267db04c8ca9385aaa15116b79','0','2','0'), ('34786','20','get[1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX}]','10406','{#PHASEINDEX}: Phase output voltage','phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The output voltage in VAC, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','13315206a94948a09fbb4a9843d2e149','0','2','0'), ('34787','20','get[1.3.6.1.4.1.318.1.1.1.2.3.1.0]','10395','Battery capacity','battery.capacity[upsHighPrecBatteryCapacity]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The remaining battery capacity expressed as percentage of full capacity.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','96898d48b27946bfa9a623d7d0b028be','0','2','0'), ('34788','20','get[1.3.6.1.2.1.1.5.0]','10395','System name','system.name[sysName.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','45a80892f41b411e8457f99b069b59ee','0','2','0'), ('34789','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1]','10395','Output phases discovery','output.phases.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ba649e1239384e3e8ebe6ae29394aecb','0','2','0'), ('34790','20','get[1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX}]','10395','{#PHASEINDEX}: Phase output current','phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The output current in 0.1 amperes drawn by the load on the UPS, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cfdded918e444958b5c592efae76b96e','0','2','0'), ('34791','20','get[1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX}]','10395','{#PHASEINDEX}: Phase output load, %','phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The percentage of the UPS load capacity in VA at redundancy @ (n + x) presently being used on this output phase, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','262d5cf179e64a2596edd86adc5570e3','0','2','0'), ('34792','20','get[1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX}]','10395','{#PHASEINDEX}: Phase output voltage','phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The output voltage in VAC, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ab38f845f0e448f0b3638f6728cbf5bf','0','2','0'), ('34793','20','get[1.3.6.1.4.1.318.1.1.1.2.3.1.0]','10407','Battery capacity','battery.capacity[upsHighPrecBatteryCapacity]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The remaining battery capacity expressed as percentage of full capacity.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','560d838206844447b8f79fd4500557b2','0','2','0'), ('34794','20','get[1.3.6.1.4.1.318.1.1.1.4.1.1.0]','10407','Output status','output.status[upsBasicOutputStatus]','1m','31d','365d','0','3','','','','',NULL,'320','','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current state of the UPS. If the UPS is unable to determine the state of the UPS this variable is set to unknown(1). During self-test most UPSes report onBattery(3) but some that support it will report onBatteryTest(15). To determine self-test status across all UPSes, refer to the upsBasicStateOutputState OID.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','978a7ee6923c40cd8097afb60c81244f','0','2','0'), ('34795','20','get[1.3.6.1.2.1.1.3.0]','10407','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0810681a8ae74ad8b28ea38119a93f59','0','2','0'), ('34796','20','get[1.3.6.1.4.1.318.1.1.1.1.2.3.0]','10407','Serial number','system.sn[upsAdvIdentSerialNumber]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB An 8-character string identifying the serial number of the UPS internal microprocessor. This number is set at the factory. NOTE: This number does NOT correspond to the serial number on the rear of the UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3f61bd561e7d42fbb55b71df9ea3b5b1','0','2','0'), ('34797','20','get[1.3.6.1.2.1.1.2.0]','10407','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9f858f7eaed545b8a35ac24e858b0826','0','2','0'), ('34798','20','get[1.3.6.1.2.1.1.5.0]','10407','System name','system.name[sysName.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b15628c68d4c4e8ca761ad9fa7e40a1c','0','2','0'), ('34799','20','get[1.3.6.1.4.1.318.1.1.1.1.1.1.0]','10407','Model','system.model[upsBasicIdentModel]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The UPS model name (e.g. ''APC Smart-UPS 600'').','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','64d56d199021432886452fff5a4c6d22','0','2','0'), ('34800','20','get[1.3.6.1.2.1.1.6.0]','10407','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The physical location of this node (e.g., `telephone closet, 3rd floor''). If the location is unknown, the value is the zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6a06715ef4c44534a0ebc45f4e5adb5b','0','2','0'), ('34801','20','get[1.3.6.1.2.1.1.1.0]','10407','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e8c576f27f4c49ef9acd1ba7198ffbb6','0','2','0'), ('34802','20','get[1.3.6.1.2.1.1.4.0]','10407','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8dd800fbbcde431aa421eeb5a33eb798','0','2','0'), ('34803','17','','10407','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','102179b315b548e289df3459bc5860c1','0','2','0'), ('34804','20','get[1.3.6.1.4.1.318.1.1.1.4.3.1.0]','10407','Output voltage','output.voltage[upsHighPrecOutputVoltage]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The output voltage of the UPS system in VAC.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9cf495d14fdf4059b6c35e7857d7a18c','0','2','0'), ('34805','20','get[1.3.6.1.4.1.318.1.1.1.4.3.3.0]','10407','Output load','output.load[upsHighPrecOutputLoad]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current UPS load expressed as percentage of rated capacity.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d27e991fc0f64b4f9704fb8183567e8d','0','2','0'), ('34806','20','get[1.3.6.1.4.1.318.1.1.1.2.2.5.0]','10407','External battery packs count','battery.external_packs_count[upsAdvBatteryNumOfBattPacks]','1h','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The number of external battery packs connected to the UPS. If the UPS does not use smart cells then the agent reports ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3fea9d328d5342b5bae6b643a0b45495','0','2','0'), ('34807','20','get[1.3.6.1.4.1.318.1.1.1.4.3.4.0]','10407','Output current','output.current[upsHighPrecOutputCurrent]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current in amperes drawn by the load on the UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bbb33508be95488680bcb644a44626ef','0','2','0'), ('34808','20','get[1.3.6.1.4.1.318.1.1.1.3.3.1.0]','10407','Input voltage','input.voltage[upsHighPrecInputLineVoltage]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current utility line voltage in VAC.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5764182c547143b3b044ec1adb54c1ce','0','2','0'), ('34809','20','get[1.3.6.1.4.1.318.1.1.1.3.3.4.0]','10407','Input frequency','input.frequency[upsHighPrecInputFrequency]','1m','31d','365d','0','0','','Hz','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current input frequency to the UPS system in Hz.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','05ccf5bd85414ee9b5860c80f6e8323f','0','2','0'), ('34810','20','get[1.3.6.1.4.1.318.1.1.1.3.2.5.0]','10407','Input fail cause','input.fail[upsAdvInputLineFailCause]','1m','31d','365d','0','3','','','','',NULL,'318','','','0','','','','','0',NULL,'MIB: PowerNet-MIB The reason for the occurrence of the last transfer to UPS battery power. The variable is set to: - noTransfer(1) -- if there is no transfer yet. - highLineVoltage(2) -- if the transfer to battery is caused by an over voltage greater than the high transfer voltage. - brownout(3) -- if the duration of the outage is greater than five seconds and the line voltage is between 40% of the rated output voltage and the low transfer voltage. - blackout(4) -- if the duration of the outage is greater than five seconds and the line voltage is between 40% of the rated output voltage and ground. - smallMomentarySag(5) -- if the duration of the outage is less than five seconds and the line voltage is between 40% of the rated output voltage and the low transfer voltage. - deepMomentarySag(6) -- if the duration of the outage is less than five seconds and the line voltage is between 40% of the rated output voltage and ground. The variable is set to - smallMomentarySpike(7) -- if the line failure is caused by a rate of change of input voltage less than ten volts per cycle. - largeMomentarySpike(8) -- if the line failure is caused by a rate of change of input voltage greater than ten volts per cycle. - selfTest(9) -- if the UPS was commanded to do a self test. - rateOfVoltageChange(10) -- if the failure is due to the rate of change of the line voltage.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','13c0d202d19f4b64a52141062c4be6bb','0','2','0'), ('34811','20','get[1.3.6.1.4.1.318.1.1.1.2.3.4.0]','10407','Battery voltage','battery.voltage[upsHighPrecBatteryActualVoltage]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The actual battery bus voltage in Volts.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ab0f5d86a40b421ba136506f7854bbbd','0','2','0'), ('34812','20','get[1.3.6.1.4.1.318.1.1.1.2.3.2.0]','10407','Battery temperature','battery.temperature[upsHighPrecBatteryTemperature]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current internal UPS temperature in Celsius. Temperatures below zero read as 0.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6d581eae836342bb8280eb09d7894533','0','2','0'), ('34813','20','get[1.3.6.1.4.1.318.1.1.1.2.1.1.0]','10407','Battery status','battery.status[upsBasicBatteryStatus]','1m','31d','365d','0','3','','','','',NULL,'319','','','0','','','','','0',NULL,'MIB: PowerNet-MIB The status of the UPS batteries. A batteryLow(3) value indicates the UPS will be unable to sustain the current load, and its services will be lost if power is not restored. The amount of run time in reserve at the time of low battery can be configured by the upsAdvConfigLowBatteryRunTime. A batteryInFaultCondition(4)value indicates that a battery installed has an internal error condition.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c1d818ee115343c8bb41bedb8de7f2bd','0','2','0'), ('34814','20','get[1.3.6.1.4.1.318.1.1.1.2.2.3.0]','10407','Battery runtime remaining','battery.runtime_remaining[upsAdvBatteryRunTimeRemaining]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The UPS battery run time remaining before battery exhaustion.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8340b775b76f4e8aad6d3984c63632e9','0','2','0'), ('34815','20','get[1.3.6.1.4.1.318.1.1.1.2.2.4.0]','10407','Battery replace indicator','battery.replace_indicator[upsAdvBatteryReplaceIndicator]','1m','31d','365d','0','3','','','','',NULL,'317','','','0','','','','','0',NULL,'MIB: PowerNet-MIB Indicates whether the UPS batteries need replacement.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','731d350450f742d880d81ff2be69e67e','0','2','0'), ('34816','20','get[1.3.6.1.4.1.318.1.1.1.2.1.3.0]','10407','Battery last replace date','battery.last_replace_date[upsBasicBatteryLastReplaceDate]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The date when the UPS system''s batteries were last replaced in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value is originally set at the factory. When the UPS batteries are replaced, this value should be reset by the administrator. For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f4bd3a4a637640e29f50ebd36fb510e5','0','2','0'), ('34817','5','','10407','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'321','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9562f60b1cbd4fe08614221e69efd811','0','2','0'), ('34818','20','discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6]','10407','External bad battery packs discovery','battery.packs.bad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of the number of external defective battery packs.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','35a885d8f181416db86f2ffe73a30f7f','0','2','0'), ('34819','20','discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2]','10407','External battery packs discovery','battery.packs.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','168bfbfc58ca46509caf54ae3562f0bc','0','2','0'), ('34820','20','discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3]','10407','External sensor port 1 discovery','external.sensor1.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'uioSensorStatusTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','598521a7c59d425d9deb58c9829e344e','0','2','0'), ('34821','20','discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3]','10407','External sensor port 2 discovery','external.sensor2.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'uioSensorStatusTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','14e6acae826e4e87b68c04beee67a5cb','0','2','0'), ('34822','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1]','10407','Input phases discovery','input.phases.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The input phase identifier. OID upsPhaseInputPhaseIndex.1.1','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b4f271299e9a47bf8543863a7d9be479','0','2','0'), ('34823','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1]','10407','Output phases discovery','output.phases.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4232ad35daa3403da085f1ba6c7af348','0','2','0'), ('34824','20','get[1.3.6.1.4.1.318.1.1.1.2.2.6.0]','10407','{#SNMPINDEX}: External battery packs bad','battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}]','15m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The number of external battery packs connected to the UPS that are defective. If the UPS does not use smart cells then the agent reports ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b0b3bb219c534b40ad07f89ac8c43797','0','2','0'), ('34825','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX}]','10407','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date','battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The battery cartridge estimated battery replace date.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3d2e62971cfb4b0a92b51ece740e1a58','0','2','0'), ('34826','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX}]','10407','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health','battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The battery cartridge health. bit 0 Battery lifetime okay bit 1 Battery lifetime near end, order replacement cartridge bit 2 Battery lifetime exceeded, replace battery bit 3 Battery lifetime near end acknowledged, order replacement cartridge bit 4 Battery lifetime exceeded acknowledged, replace battery bit 5 Battery measured lifetime near end, order replacement cartridge bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b49b4836472f45e3b4947048dcd64cf8','0','2','0'), ('34827','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX}]','10407','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status','battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The status of the UPS batteries. A batteryLow(3) value indicates the UPS will be unable to sustain the current load, and its services will be lost if power is not restored. The amount of run time in reserve at the time of low battery can be configured by the upsAdvConfigLowBatteryRunTime. A batteryInFaultCondition(4)value indicates that a battery installed has an internal error condition.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','df73a5fd0d964c67857178a936c2dc7d','0','2','0'), ('34828','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX}]','10407','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature','battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The current internal UPS temperature in Celsius. Temperatures below zero read as 0.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','18c46e7d50ee4eefb669705d62e2224c','0','2','0'), ('34829','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX}]','10407','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number','system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB An 8-character string identifying the serial number of the UPS internal microprocessor. This number is set at the factory. NOTE: This number does NOT correspond to the serial number on the rear of the UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5fadf217f7444f58ba3dca52bc6cff76','0','2','0'), ('34830','20','get[1.3.6.1.4.1.318.1.1.25.1.2.1.7.{#SNMPINDEX}]','10407','{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current humidity reading - a relative humidity percentage. -1 indicates an invalid reading due to either a sensor that doesn''t read humidity or lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2db30af657574f8f9390002f94b7e249','0','2','0'), ('34831','20','get[1.3.6.1.4.1.318.1.1.25.1.2.1.9.{#SNMPINDEX}]','10407','{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'316','','','0','','','','','2',NULL,'MIB: PowerNet-MIB The alarm status of the sensor. Possible values: uioNormal (1), uioWarning (2), uioCritical (3), sensorStatusNotApplicable (4)','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6182750c55f24110b076d95c2cdbd1fa','0','2','0'), ('34832','20','get[1.3.6.1.4.1.318.1.1.25.1.2.1.6.{#SNMPINDEX}]','10407','{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current temperature reading in Celsius. -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fc394520f4964a86ac93e87da2fc541b','0','2','0'), ('34833','20','get[1.3.6.1.4.1.318.1.1.25.1.2.2.7.{#SNMPINDEX}]','10407','{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current humidity reading - a relative humidity percentage. -1 indicates an invalid reading due to either a sensor that doesn''t read humidity or lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5f5df15d6cc4455083f9fa6932d86656','0','2','0'), ('34834','20','get[1.3.6.1.4.1.318.1.1.25.1.2.2.9.{#SNMPINDEX}]','10407','{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'316','','','0','','','','','2',NULL,'MIB: PowerNet-MIB The alarm status of the sensor. Possible values: uioNormal (1), uioWarning (2), uioCritical (3), sensorStatusNotApplicable (4)','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ecc2e5c49b004027bb9ccd5498e3d169','0','2','0'), ('34835','20','get[1.3.6.1.4.1.318.1.1.25.1.2.2.6.{#SNMPINDEX}]','10407','{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current temperature reading in Celsius. -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f2cd5bb0c8a64b09868ddff9b14e4cbd','0','2','0'), ('34836','20','get[1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX}]','10407','{#PHASEINDEX}: Phase input current','phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The input current in 0.1 amperes, or -0.1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','161257625bc84427be6cfcd86023c2ec','0','2','0'), ('34837','20','get[1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX}]','10407','{#PHASEINDEX}: Phase input voltage','phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The input voltage in VAC, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','080719150b424168999c21ff597e6948','0','2','0'), ('34838','20','get[1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX}]','10407','{#PHASEINDEX}: Phase output current','phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The output current in 0.1 amperes drawn by the load on the UPS, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2834306ba5464ffaa472c0adddc3d829','0','2','0'), ('34839','20','get[1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX}]','10407','{#PHASEINDEX}: Phase output load, %','phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The percentage of the UPS load capacity in VA at redundancy @ (n + x) presently being used on this output phase, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7b0f22672b38492e92c8551c3009baef','0','2','0'), ('34840','20','get[1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX}]','10407','{#PHASEINDEX}: Phase output voltage','phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The output voltage in VAC, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a590ab8671574e119fe3335110fdee49','0','2','0'), ('34841','20','get[1.3.6.1.4.1.318.1.1.1.2.3.1.0]','10408','Battery capacity','battery.capacity[upsHighPrecBatteryCapacity]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The remaining battery capacity expressed as percentage of full capacity.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e8257d78c2e24e3cb152886d39bca4fe','0','2','0'), ('34842','20','get[1.3.6.1.4.1.318.1.1.1.4.1.1.0]','10408','Output status','output.status[upsBasicOutputStatus]','1m','31d','365d','0','3','','','','',NULL,'326','','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current state of the UPS. If the UPS is unable to determine the state of the UPS this variable is set to unknown(1). During self-test most UPSes report onBattery(3) but some that support it will report onBatteryTest(15). To determine self-test status across all UPSes, refer to the upsBasicStateOutputState OID.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7655b8ff3d5e41f0a5409fcfd646933a','0','2','0'), ('34843','20','get[1.3.6.1.2.1.1.3.0]','10408','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b4ca2f993709413b9a00fa1389ec9e3c','0','2','0'), ('34844','20','get[1.3.6.1.4.1.318.1.1.1.1.2.3.0]','10408','Serial number','system.sn[upsAdvIdentSerialNumber]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB An 8-character string identifying the serial number of the UPS internal microprocessor. This number is set at the factory. NOTE: This number does NOT correspond to the serial number on the rear of the UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','64ab7fd8a79448d580ad24ecf488241c','0','2','0'), ('34845','20','get[1.3.6.1.2.1.1.2.0]','10408','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f6bd69ea5df144c996f050ded122521e','0','2','0'), ('34846','20','get[1.3.6.1.2.1.1.5.0]','10408','System name','system.name[sysName.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','155feccece4a4625b98efa206ad5e0b1','0','2','0'), ('34847','20','get[1.3.6.1.4.1.318.1.1.1.1.1.1.0]','10408','Model','system.model[upsBasicIdentModel]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The UPS model name (e.g. ''APC Smart-UPS 600'').','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bd0dc104ded94e4cbba3a8557e642caf','0','2','0'), ('34848','20','get[1.3.6.1.2.1.1.6.0]','10408','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The physical location of this node (e.g., `telephone closet, 3rd floor''). If the location is unknown, the value is the zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','49b8ef5ff3a3400d8f412d4440040461','0','2','0'), ('34849','20','get[1.3.6.1.2.1.1.1.0]','10408','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','251cc61592f543e3929aef3cb46f1b34','0','2','0'), ('34850','20','get[1.3.6.1.2.1.1.4.0]','10408','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2d22b58a5c9f4fedbd03862398113546','0','2','0'), ('34851','17','','10408','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','39dd21c0f2194acaa9fddbdfccde05dd','0','2','0'), ('34852','20','get[1.3.6.1.4.1.318.1.1.1.4.3.1.0]','10408','Output voltage','output.voltage[upsHighPrecOutputVoltage]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The output voltage of the UPS system in VAC.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8d93b482d7c549f593c41abb9380ce2f','0','2','0'), ('34853','20','get[1.3.6.1.4.1.318.1.1.1.4.3.3.0]','10408','Output load','output.load[upsHighPrecOutputLoad]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current UPS load expressed as percentage of rated capacity.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0e5240e578d043609fba4024db8c8df1','0','2','0'), ('34854','20','get[1.3.6.1.4.1.318.1.1.1.2.2.5.0]','10408','External battery packs count','battery.external_packs_count[upsAdvBatteryNumOfBattPacks]','1h','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The number of external battery packs connected to the UPS. If the UPS does not use smart cells then the agent reports ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d26227e3d5754d8493ddaa9c3f5f2b5a','0','2','0'), ('34855','20','get[1.3.6.1.4.1.318.1.1.1.4.3.4.0]','10408','Output current','output.current[upsHighPrecOutputCurrent]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current in amperes drawn by the load on the UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9bcae00165414f4aa15a40bc078aa44d','0','2','0'), ('34856','20','get[1.3.6.1.4.1.318.1.1.1.3.3.1.0]','10408','Input voltage','input.voltage[upsHighPrecInputLineVoltage]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current utility line voltage in VAC.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c658b02eea284fcf8e302c20a2256cf0','0','2','0'), ('34857','20','get[1.3.6.1.4.1.318.1.1.1.3.3.4.0]','10408','Input frequency','input.frequency[upsHighPrecInputFrequency]','1m','31d','365d','0','0','','Hz','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current input frequency to the UPS system in Hz.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e16be6095dc24b48bc541325b1675dd0','0','2','0'), ('34858','20','get[1.3.6.1.4.1.318.1.1.1.3.2.5.0]','10408','Input fail cause','input.fail[upsAdvInputLineFailCause]','1m','31d','365d','0','3','','','','',NULL,'324','','','0','','','','','0',NULL,'MIB: PowerNet-MIB The reason for the occurrence of the last transfer to UPS battery power. The variable is set to: - noTransfer(1) -- if there is no transfer yet. - highLineVoltage(2) -- if the transfer to battery is caused by an over voltage greater than the high transfer voltage. - brownout(3) -- if the duration of the outage is greater than five seconds and the line voltage is between 40% of the rated output voltage and the low transfer voltage. - blackout(4) -- if the duration of the outage is greater than five seconds and the line voltage is between 40% of the rated output voltage and ground. - smallMomentarySag(5) -- if the duration of the outage is less than five seconds and the line voltage is between 40% of the rated output voltage and the low transfer voltage. - deepMomentarySag(6) -- if the duration of the outage is less than five seconds and the line voltage is between 40% of the rated output voltage and ground. The variable is set to - smallMomentarySpike(7) -- if the line failure is caused by a rate of change of input voltage less than ten volts per cycle. - largeMomentarySpike(8) -- if the line failure is caused by a rate of change of input voltage greater than ten volts per cycle. - selfTest(9) -- if the UPS was commanded to do a self test. - rateOfVoltageChange(10) -- if the failure is due to the rate of change of the line voltage.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','439c87539027462c9b8210a056887885','0','2','0'), ('34859','20','get[1.3.6.1.4.1.318.1.1.1.2.3.4.0]','10408','Battery voltage','battery.voltage[upsHighPrecBatteryActualVoltage]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The actual battery bus voltage in Volts.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9ab2309be6cc4eea8697f17e80b015d8','0','2','0'), ('34860','20','get[1.3.6.1.4.1.318.1.1.1.2.3.2.0]','10408','Battery temperature','battery.temperature[upsHighPrecBatteryTemperature]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current internal UPS temperature in Celsius. Temperatures below zero read as 0.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','17ffb34351da46e59d2288cd291a7912','0','2','0'), ('34861','20','get[1.3.6.1.4.1.318.1.1.1.2.1.1.0]','10408','Battery status','battery.status[upsBasicBatteryStatus]','1m','31d','365d','0','3','','','','',NULL,'325','','','0','','','','','0',NULL,'MIB: PowerNet-MIB The status of the UPS batteries. A batteryLow(3) value indicates the UPS will be unable to sustain the current load, and its services will be lost if power is not restored. The amount of run time in reserve at the time of low battery can be configured by the upsAdvConfigLowBatteryRunTime. A batteryInFaultCondition(4)value indicates that a battery installed has an internal error condition.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','322c3b48bcb74fa5829ef41015308d97','0','2','0'), ('34862','20','get[1.3.6.1.4.1.318.1.1.1.2.2.3.0]','10408','Battery runtime remaining','battery.runtime_remaining[upsAdvBatteryRunTimeRemaining]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The UPS battery run time remaining before battery exhaustion.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','80a4e6cf09a147a7b166755aa182fdcd','0','2','0'), ('34863','20','get[1.3.6.1.4.1.318.1.1.1.2.2.4.0]','10408','Battery replace indicator','battery.replace_indicator[upsAdvBatteryReplaceIndicator]','1m','31d','365d','0','3','','','','',NULL,'323','','','0','','','','','0',NULL,'MIB: PowerNet-MIB Indicates whether the UPS batteries need replacement.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','abb901813d91481baef234496ddece33','0','2','0'), ('34864','20','get[1.3.6.1.4.1.318.1.1.1.2.1.3.0]','10408','Battery last replace date','battery.last_replace_date[upsBasicBatteryLastReplaceDate]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The date when the UPS system''s batteries were last replaced in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value is originally set at the factory. When the UPS batteries are replaced, this value should be reset by the administrator. For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','138afef586634623974c1cefd45281e9','0','2','0'), ('34865','5','','10408','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'327','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d69889a19b564ed384fc96e8a70971a5','0','2','0'), ('34866','20','discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6]','10408','External bad battery packs discovery','battery.packs.bad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of the number of external defective battery packs.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','82e8f10c883546ef8196e071fdd8df91','0','2','0'), ('34867','20','discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2]','10408','External battery packs discovery','battery.packs.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b615a0d1ef1e49678daa4de77b47623e','0','2','0'), ('34868','20','discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3]','10408','External sensor port 1 discovery','external.sensor1.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'uioSensorStatusTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3adfddb03546462a9bcfdc5b059a29cc','0','2','0'), ('34869','20','discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3]','10408','External sensor port 2 discovery','external.sensor2.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'uioSensorStatusTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8243825c5bbc42639f8796d1082a4a05','0','2','0'), ('34870','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1]','10408','Input phases discovery','input.phases.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The input phase identifier. OID upsPhaseInputPhaseIndex.1.1','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6d6d6b6a71434315a0bbc38b56d47f49','0','2','0'), ('34871','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1]','10408','Output phases discovery','output.phases.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a2da2392f78b4b5ea97370ef0f276973','0','2','0'), ('34872','20','get[1.3.6.1.4.1.318.1.1.1.2.2.6.0]','10408','{#SNMPINDEX}: External battery packs bad','battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}]','15m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The number of external battery packs connected to the UPS that are defective. If the UPS does not use smart cells then the agent reports ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7b7ef64f2c3f4c0abeff433279903426','0','2','0'), ('34873','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX}]','10408','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date','battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The battery cartridge estimated battery replace date.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','28f43e10b50d4709a6790d2f7d0552c2','0','2','0'), ('34874','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX}]','10408','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health','battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The battery cartridge health. bit 0 Battery lifetime okay bit 1 Battery lifetime near end, order replacement cartridge bit 2 Battery lifetime exceeded, replace battery bit 3 Battery lifetime near end acknowledged, order replacement cartridge bit 4 Battery lifetime exceeded acknowledged, replace battery bit 5 Battery measured lifetime near end, order replacement cartridge bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ebaf443cd74f4be282939032a843dcef','0','2','0'), ('34875','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX}]','10408','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status','battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The status of the UPS batteries. A batteryLow(3) value indicates the UPS will be unable to sustain the current load, and its services will be lost if power is not restored. The amount of run time in reserve at the time of low battery can be configured by the upsAdvConfigLowBatteryRunTime. A batteryInFaultCondition(4)value indicates that a battery installed has an internal error condition.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a415a0d85a1146e6aadfd691fcc5da63','0','2','0'), ('34876','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX}]','10408','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature','battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The current internal UPS temperature in Celsius. Temperatures below zero read as 0.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8d1317fc38034fd78b5cff3b04dce7f1','0','2','0'), ('34877','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX}]','10408','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number','system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB An 8-character string identifying the serial number of the UPS internal microprocessor. This number is set at the factory. NOTE: This number does NOT correspond to the serial number on the rear of the UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2694e29b9287464898684b711040d75a','0','2','0'), ('34878','20','get[1.3.6.1.4.1.318.1.1.25.1.2.1.7.{#SNMPINDEX}]','10408','{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current humidity reading - a relative humidity percentage. -1 indicates an invalid reading due to either a sensor that doesn''t read humidity or lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fe2eb706e52849f79781b746db05e753','0','2','0'), ('34879','20','get[1.3.6.1.4.1.318.1.1.25.1.2.1.9.{#SNMPINDEX}]','10408','{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'322','','','0','','','','','2',NULL,'MIB: PowerNet-MIB The alarm status of the sensor. Possible values: uioNormal (1), uioWarning (2), uioCritical (3), sensorStatusNotApplicable (4)','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e80af415f8384d0fa54c6954594b5794','0','2','0'), ('34880','20','get[1.3.6.1.4.1.318.1.1.25.1.2.1.6.{#SNMPINDEX}]','10408','{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current temperature reading in Celsius. -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c2e3e2ea6df84a609acdc3e05d4ea036','0','2','0'), ('34881','20','get[1.3.6.1.4.1.318.1.1.25.1.2.2.7.{#SNMPINDEX}]','10408','{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current humidity reading - a relative humidity percentage. -1 indicates an invalid reading due to either a sensor that doesn''t read humidity or lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','22227cb4aa284d9392015e3a2fe20912','0','2','0'), ('34882','20','get[1.3.6.1.4.1.318.1.1.25.1.2.2.9.{#SNMPINDEX}]','10408','{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'322','','','0','','','','','2',NULL,'MIB: PowerNet-MIB The alarm status of the sensor. Possible values: uioNormal (1), uioWarning (2), uioCritical (3), sensorStatusNotApplicable (4)','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a140c9eaef4049278bc5f2bfd28d0339','0','2','0'), ('34883','20','get[1.3.6.1.4.1.318.1.1.25.1.2.2.6.{#SNMPINDEX}]','10408','{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current temperature reading in Celsius. -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','69ca20795352489b9efc0a0c0cc1b27f','0','2','0'), ('34884','20','get[1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX}]','10408','{#PHASEINDEX}: Phase input current','phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The input current in 0.1 amperes, or -0.1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','45def82313f74727826a0db8aa18eecc','0','2','0'), ('34885','20','get[1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX}]','10408','{#PHASEINDEX}: Phase input voltage','phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The input voltage in VAC, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e6d933f8a79248539fa9b5ce447813b5','0','2','0'), ('34886','20','get[1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX}]','10408','{#PHASEINDEX}: Phase output current','phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The output current in 0.1 amperes drawn by the load on the UPS, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','16117cb258304fb8bc2660ff4b80cc1c','0','2','0'), ('34887','20','get[1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX}]','10408','{#PHASEINDEX}: Phase output load, %','phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The percentage of the UPS load capacity in VA at redundancy @ (n + x) presently being used on this output phase, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','177f5c2dcfac4bb997f778dcd58ba638','0','2','0'), ('34888','20','get[1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX}]','10408','{#PHASEINDEX}: Phase output voltage','phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The output voltage in VAC, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cc7c08b1bf924507b6d15cd9105926a5','0','2','0'), ('34889','20','get[1.3.6.1.4.1.318.1.1.1.2.3.1.0]','10409','Battery capacity','battery.capacity[upsHighPrecBatteryCapacity]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The remaining battery capacity expressed as percentage of full capacity.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0f45eeef24724e3b89760b04bfd037ae','0','2','0'), ('34890','20','get[1.3.6.1.4.1.318.1.1.1.4.1.1.0]','10409','Output status','output.status[upsBasicOutputStatus]','1m','31d','365d','0','3','','','','',NULL,'332','','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current state of the UPS. If the UPS is unable to determine the state of the UPS this variable is set to unknown(1). During self-test most UPSes report onBattery(3) but some that support it will report onBatteryTest(15). To determine self-test status across all UPSes, refer to the upsBasicStateOutputState OID.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f8e4bcaa71e045e09af82ee739202778','0','2','0'), ('34891','20','get[1.3.6.1.2.1.1.3.0]','10409','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4aac942cab30432d81c4df32e01af5e2','0','2','0'), ('34892','20','get[1.3.6.1.4.1.318.1.1.1.1.2.3.0]','10409','Serial number','system.sn[upsAdvIdentSerialNumber]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB An 8-character string identifying the serial number of the UPS internal microprocessor. This number is set at the factory. NOTE: This number does NOT correspond to the serial number on the rear of the UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0e72609b44094aff8acfa58b63ca97ba','0','2','0'), ('34893','20','get[1.3.6.1.2.1.1.2.0]','10409','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0d3fcfce413a4f6aaaa2390183ab0c82','0','2','0'), ('34894','20','get[1.3.6.1.2.1.1.5.0]','10409','System name','system.name[sysName.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3c521e1e94da4dd2bd71719bf20e14b8','0','2','0'), ('34895','20','get[1.3.6.1.4.1.318.1.1.1.1.1.1.0]','10409','Model','system.model[upsBasicIdentModel]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The UPS model name (e.g. ''APC Smart-UPS 600'').','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5c5b88814e4c4dc9b90ed4a5e49a91ca','0','2','0'), ('34896','20','get[1.3.6.1.2.1.1.6.0]','10409','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The physical location of this node (e.g., `telephone closet, 3rd floor''). If the location is unknown, the value is the zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','be1280a6b2d84393ad001113bf7c80f2','0','2','0'), ('34897','20','get[1.3.6.1.2.1.1.1.0]','10409','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9bca97c1e308421b82f4769151f5177e','0','2','0'), ('34898','20','get[1.3.6.1.2.1.1.4.0]','10409','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1de71b45323b4eb5bc1a38315d56ce58','0','2','0'), ('34899','17','','10409','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c892c7f2ddcd4e15b1d5ab907cd70dcf','0','2','0'), ('34900','20','get[1.3.6.1.4.1.318.1.1.1.4.3.1.0]','10409','Output voltage','output.voltage[upsHighPrecOutputVoltage]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The output voltage of the UPS system in VAC.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e7969358cce84f3eb749b1c43d96c583','0','2','0'), ('34901','20','get[1.3.6.1.4.1.318.1.1.1.4.3.3.0]','10409','Output load','output.load[upsHighPrecOutputLoad]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current UPS load expressed as percentage of rated capacity.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3ac052b6b4e241d9af470b70212ab8d3','0','2','0'), ('34902','20','get[1.3.6.1.4.1.318.1.1.1.2.2.5.0]','10409','External battery packs count','battery.external_packs_count[upsAdvBatteryNumOfBattPacks]','1h','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The number of external battery packs connected to the UPS. If the UPS does not use smart cells then the agent reports ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a40074f9db134bc8bc4bd9800906137d','0','2','0'), ('34903','20','get[1.3.6.1.4.1.318.1.1.1.4.3.4.0]','10409','Output current','output.current[upsHighPrecOutputCurrent]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current in amperes drawn by the load on the UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','71cfc894a29f4bffb1f4199e0010aea0','0','2','0'), ('34904','20','get[1.3.6.1.4.1.318.1.1.1.3.3.1.0]','10409','Input voltage','input.voltage[upsHighPrecInputLineVoltage]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current utility line voltage in VAC.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5478b17ba84c4f12bc1ffa7dfc507ae1','0','2','0'), ('34905','20','get[1.3.6.1.4.1.318.1.1.1.3.3.4.0]','10409','Input frequency','input.frequency[upsHighPrecInputFrequency]','1m','31d','365d','0','0','','Hz','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current input frequency to the UPS system in Hz.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8ab48c798ac94773b37228a8f725efd0','0','2','0'), ('34906','20','get[1.3.6.1.4.1.318.1.1.1.3.2.5.0]','10409','Input fail cause','input.fail[upsAdvInputLineFailCause]','1m','31d','365d','0','3','','','','',NULL,'330','','','0','','','','','0',NULL,'MIB: PowerNet-MIB The reason for the occurrence of the last transfer to UPS battery power. The variable is set to: - noTransfer(1) -- if there is no transfer yet. - highLineVoltage(2) -- if the transfer to battery is caused by an over voltage greater than the high transfer voltage. - brownout(3) -- if the duration of the outage is greater than five seconds and the line voltage is between 40% of the rated output voltage and the low transfer voltage. - blackout(4) -- if the duration of the outage is greater than five seconds and the line voltage is between 40% of the rated output voltage and ground. - smallMomentarySag(5) -- if the duration of the outage is less than five seconds and the line voltage is between 40% of the rated output voltage and the low transfer voltage. - deepMomentarySag(6) -- if the duration of the outage is less than five seconds and the line voltage is between 40% of the rated output voltage and ground. The variable is set to - smallMomentarySpike(7) -- if the line failure is caused by a rate of change of input voltage less than ten volts per cycle. - largeMomentarySpike(8) -- if the line failure is caused by a rate of change of input voltage greater than ten volts per cycle. - selfTest(9) -- if the UPS was commanded to do a self test. - rateOfVoltageChange(10) -- if the failure is due to the rate of change of the line voltage.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','598c1b4cc957455b84c2edcbe844e169','0','2','0'), ('34907','20','get[1.3.6.1.4.1.318.1.1.1.2.3.4.0]','10409','Battery voltage','battery.voltage[upsHighPrecBatteryActualVoltage]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The actual battery bus voltage in Volts.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ae8516a825b94d90b267371934bc452f','0','2','0'), ('34908','20','get[1.3.6.1.4.1.318.1.1.1.2.3.2.0]','10409','Battery temperature','battery.temperature[upsHighPrecBatteryTemperature]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current internal UPS temperature in Celsius. Temperatures below zero read as 0.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','59cc2d65eca142adb00ec80e237b134e','0','2','0'), ('34909','20','get[1.3.6.1.4.1.318.1.1.1.2.1.1.0]','10409','Battery status','battery.status[upsBasicBatteryStatus]','1m','31d','365d','0','3','','','','',NULL,'331','','','0','','','','','0',NULL,'MIB: PowerNet-MIB The status of the UPS batteries. A batteryLow(3) value indicates the UPS will be unable to sustain the current load, and its services will be lost if power is not restored. The amount of run time in reserve at the time of low battery can be configured by the upsAdvConfigLowBatteryRunTime. A batteryInFaultCondition(4)value indicates that a battery installed has an internal error condition.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a5ccdee4e5ff49f183adab8a283e88a0','0','2','0'), ('34910','20','get[1.3.6.1.4.1.318.1.1.1.2.2.3.0]','10409','Battery runtime remaining','battery.runtime_remaining[upsAdvBatteryRunTimeRemaining]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The UPS battery run time remaining before battery exhaustion.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','849b9ffa0c0b4dd59e7c5a544a135fa3','0','2','0'), ('34911','20','get[1.3.6.1.4.1.318.1.1.1.2.2.4.0]','10409','Battery replace indicator','battery.replace_indicator[upsAdvBatteryReplaceIndicator]','1m','31d','365d','0','3','','','','',NULL,'329','','','0','','','','','0',NULL,'MIB: PowerNet-MIB Indicates whether the UPS batteries need replacement.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','810c9cd371c14e44b8670ad3f4e003d5','0','2','0'), ('34912','20','get[1.3.6.1.4.1.318.1.1.1.2.1.3.0]','10409','Battery last replace date','battery.last_replace_date[upsBasicBatteryLastReplaceDate]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The date when the UPS system''s batteries were last replaced in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value is originally set at the factory. When the UPS batteries are replaced, this value should be reset by the administrator. For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c069bb03f58a47b981448a33a1663463','0','2','0'), ('34913','5','','10409','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'333','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','582ff80b2df049b8acf233ad4dbfe1f1','0','2','0'), ('34914','20','discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6]','10409','External bad battery packs discovery','battery.packs.bad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of the number of external defective battery packs.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','eddb568fd0e34398bcee7d39a6f76319','0','2','0'), ('34915','20','discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2]','10409','External battery packs discovery','battery.packs.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0c31de1650b94f8cabef339e2ef009e3','0','2','0'), ('34916','20','discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3]','10409','External sensor port 1 discovery','external.sensor1.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'uioSensorStatusTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','93941e38fd2d4b48bd8b50179692cb56','0','2','0'), ('34917','20','discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3]','10409','External sensor port 2 discovery','external.sensor2.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'uioSensorStatusTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7cd4c33584004a6d811478e8a83e0898','0','2','0'), ('34918','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1]','10409','Input phases discovery','input.phases.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The input phase identifier. OID upsPhaseInputPhaseIndex.1.1','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','88032aa9a832464ca2a077271113e7c9','0','2','0'), ('34919','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1]','10409','Output phases discovery','output.phases.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','262343758e9649a8a6fe2b77631f66df','0','2','0'), ('34920','20','get[1.3.6.1.4.1.318.1.1.1.2.2.6.0]','10409','{#SNMPINDEX}: External battery packs bad','battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}]','15m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The number of external battery packs connected to the UPS that are defective. If the UPS does not use smart cells then the agent reports ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','11c16d0e18a745679bcf8546cb8f0641','0','2','0'), ('34921','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX}]','10409','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date','battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The battery cartridge estimated battery replace date.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6bd2d90f306e4252b5fc44eab860f4ab','0','2','0'), ('34922','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX}]','10409','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health','battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The battery cartridge health. bit 0 Battery lifetime okay bit 1 Battery lifetime near end, order replacement cartridge bit 2 Battery lifetime exceeded, replace battery bit 3 Battery lifetime near end acknowledged, order replacement cartridge bit 4 Battery lifetime exceeded acknowledged, replace battery bit 5 Battery measured lifetime near end, order replacement cartridge bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c4a7061be8f64f398ad0f3c52db29bbd','0','2','0'), ('34923','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX}]','10409','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status','battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The status of the UPS batteries. A batteryLow(3) value indicates the UPS will be unable to sustain the current load, and its services will be lost if power is not restored. The amount of run time in reserve at the time of low battery can be configured by the upsAdvConfigLowBatteryRunTime. A batteryInFaultCondition(4)value indicates that a battery installed has an internal error condition.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8f5b3a61acad491f8ca6860f6201252d','0','2','0'), ('34924','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX}]','10409','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature','battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The current internal UPS temperature in Celsius. Temperatures below zero read as 0.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','346f2ab5b340401880c63a6cb9eec949','0','2','0'), ('34925','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX}]','10409','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number','system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB An 8-character string identifying the serial number of the UPS internal microprocessor. This number is set at the factory. NOTE: This number does NOT correspond to the serial number on the rear of the UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','230fc138d8f64c4f9eeee438d42b519e','0','2','0'), ('34926','20','get[1.3.6.1.4.1.318.1.1.25.1.2.1.7.{#SNMPINDEX}]','10409','{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current humidity reading - a relative humidity percentage. -1 indicates an invalid reading due to either a sensor that doesn''t read humidity or lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','15f23c88f9b24580add63b69fb8a41de','0','2','0'), ('34927','20','get[1.3.6.1.4.1.318.1.1.25.1.2.1.9.{#SNMPINDEX}]','10409','{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'328','','','0','','','','','2',NULL,'MIB: PowerNet-MIB The alarm status of the sensor. Possible values: uioNormal (1), uioWarning (2), uioCritical (3), sensorStatusNotApplicable (4)','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','230f3e596bbc4cb6961eda599da74f5e','0','2','0'), ('34928','20','get[1.3.6.1.4.1.318.1.1.25.1.2.1.6.{#SNMPINDEX}]','10409','{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current temperature reading in Celsius. -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f777176e1d7b4e328209aeeced8e680b','0','2','0'), ('34929','20','get[1.3.6.1.4.1.318.1.1.25.1.2.2.7.{#SNMPINDEX}]','10409','{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current humidity reading - a relative humidity percentage. -1 indicates an invalid reading due to either a sensor that doesn''t read humidity or lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3a933ac0f9b2425d9929ed244a3ce61a','0','2','0'), ('34930','20','get[1.3.6.1.4.1.318.1.1.25.1.2.2.9.{#SNMPINDEX}]','10409','{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'328','','','0','','','','','2',NULL,'MIB: PowerNet-MIB The alarm status of the sensor. Possible values: uioNormal (1), uioWarning (2), uioCritical (3), sensorStatusNotApplicable (4)','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b8a37686d5374b4fa05717987e54c2f6','0','2','0'), ('34931','20','get[1.3.6.1.4.1.318.1.1.25.1.2.2.6.{#SNMPINDEX}]','10409','{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current temperature reading in Celsius. -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','15e3cf28f89043029e722b1813737c6c','0','2','0'), ('34932','20','get[1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX}]','10409','{#PHASEINDEX}: Phase input current','phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The input current in 0.1 amperes, or -0.1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d6afc20571ce43fa9861ef6c1e17d6c8','0','2','0'), ('34933','20','get[1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX}]','10409','{#PHASEINDEX}: Phase input voltage','phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The input voltage in VAC, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6993631adffb41fabc7995bd9158e448','0','2','0'), ('34934','20','get[1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX}]','10409','{#PHASEINDEX}: Phase output current','phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The output current in 0.1 amperes drawn by the load on the UPS, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6bed63601e6b426799b860dc5e2ea8b2','0','2','0'), ('34935','20','get[1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX}]','10409','{#PHASEINDEX}: Phase output load, %','phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The percentage of the UPS load capacity in VA at redundancy @ (n + x) presently being used on this output phase, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5ec8aae1e2b24350b005d0177b164e6b','0','2','0'), ('34936','20','get[1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX}]','10409','{#PHASEINDEX}: Phase output voltage','phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The output voltage in VAC, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3da95223adfc4d638406c6908bba7063','0','2','0'), ('34937','16','','10410','Uptime','jmx["java.lang:type=Runtime","Uptime"]','1m','31d','365d','0','3','','s','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'WildFly server uptime.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aa30358b46024aef8fa2e3ba387c4fb9','0','2','0'), ('34938','16','','10410','Launch type','jmx["jboss.as:management-root=server","launchType"]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'The manner in which the server process was launched. Either "DOMAIN" for a domain mode server launched by a Host Controller, "STANDALONE" for a standalone server launched from the command line, or "EMBEDDED" for a standalone server launched as an embedded part of an application running in the same virtual machine.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5c0653e99ddb4f26ae12ce4d6ce9892c','0','2','0'), ('34939','16','','10410','Name','jmx["jboss.as:management-root=server","name"]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'For standalone mode: The name of this server. If not set, defaults to the runtime value of InetAddress.getLocalHost().getHostName(). For domain mode: The name given to this domain','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5412059106e844ae89f6f84b4da42388','0','2','0'), ('34940','16','','10410','Process type','jmx["jboss.as:management-root=server","processType"]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'The type of process represented by this root resource.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d5e2f5e277874567a5d46196fd032298','0','2','0'), ('34941','16','','10410','Version','jmx["jboss.as:management-root=server","productVersion"]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'The version of the WildFly Core based product release.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f1bb15824f384e21bb9ae1224abd18e0','0','2','0'), ('34942','16','','10410','Deployments discovery','jmx.get[beans,"jboss.as.expr:deployment=*,server-group=*"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','1',NULL,'Discovery deployments metrics.','0','7d','1','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3af697e56771487abee9f62e453fb0c3','0','2','0'), ('34943','16','','10410','Servers discovery','jmx.get[beans,"jboss.as:host=master,server-config=*"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','1',NULL,'Discovery instances in domain.','0','7d','1','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','da7f7dfad0c1440a8980693870364baa','0','2','0'), ('34944','16','','10410','WildFly deployment [{#DEPLOYMENT}]: Enabled','jmx["{#JMXOBJ}",enabled]','1m','31d','365d','0','3','','','','',NULL,'334','','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'Boolean indicating whether the deployment content is currently deployed in the runtime (or should be deployed in the runtime the next time the server starts).','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e6b1bebba5da4ce493ba7edf869c37b3','0','2','0'), ('34945','16','','10410','WildFly deployment [{#DEPLOYMENT}]: Managed','jmx["{#JMXOBJ}",managed]','1m','31d','365d','0','3','','','','',NULL,'334','','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'Indicates if the deployment is managed (aka uses the ContentRepository).','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','45d729721df34ef297109b58027ca4c1','0','2','0'), ('34946','16','','10410','Server {#SERVER}: Autostart','jmx["{#JMXOBJ}",autoStart]','1m','31d','365d','0','3','','','','',NULL,'334','','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'Whether or not this server should be started when the Host Controller starts.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d0938bbf20854315bd5cf17491b0ae1c','0','2','0'), ('34947','16','','10410','Server {#SERVER}: Server group','jmx["{#JMXOBJ}",group]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The name of a server group from the domain model.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bd544e2d41c148f993b84ca7d1aad4a9','0','2','0'), ('34948','16','','10410','Server {#SERVER}: Status','jmx["{#JMXOBJ}",status]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The current status of the server.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','64a8a71b3d254a479ce4e5ea82f566ee','0','2','0'), ('34949','16','','10411','Uptime','jmx["java.lang:type=Runtime","Uptime"]','1m','31d','365d','0','3','','s','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'WildFly server uptime.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9b9fce7f4b4945fea45feaa5b213c186','0','2','0'), ('34950','16','','10411','Transactions: Committed, rate','jmx["jboss.as:subsystem=transactions","numberOfCommittedTransactions"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'The number of committed transactions.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2c157932072e416baed45a2350a3bd66','0','2','0'), ('34951','16','','10411','Transactions: Timed out, rate','jmx["jboss.as:subsystem=transactions","numberOfTimedOutTransactions"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'The number of transactions that have rolled back due to timeout.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','90f1a21c335b42928455d31635bfd11d','0','2','0'), ('34952','16','','10411','Transactions: System rollbacks, rate','jmx["jboss.as:subsystem=transactions","numberOfSystemRollbacks"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'The number of transactions that have been rolled back due to internal system errors.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6ca6b59da5da4d7cb6fbacd2bdd37996','0','2','0'), ('34953','16','','10411','Transactions: ResourceRollbacks, rate','jmx["jboss.as:subsystem=transactions","numberOfResourceRollbacks"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'The number of transactions that rolled back due to resource (participant) failure.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b1f782b6d71b4cc698a3f0d3b9d03a8d','0','2','0'), ('34954','16','','10411','Transactions: Nested, rate','jmx["jboss.as:subsystem=transactions","numberOfNestedTransactions"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'The total number of nested (sub) transactions created.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6ca1501ec2904b7b875d2f9bfa127e10','0','2','0'), ('34955','16','','10411','Transactions: Current','jmx["jboss.as:subsystem=transactions","numberOfInflightTransactions"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'The number of transactions that have begun but not yet terminated.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','50ba79375dbf48c8b86c3d8654576186','0','2','0'), ('34956','16','','10411','Transactions: Heuristics, rate','jmx["jboss.as:subsystem=transactions","numberOfHeuristics"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'The number of transactions which have terminated with heuristic outcomes.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','82958fc3169c42d2bb0c9dc29e341b8f','0','2','0'), ('34957','16','','10411','Transactions: Application rollbacks, rate','jmx["jboss.as:subsystem=transactions","numberOfApplicationRollbacks"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'The number of transactions that have been rolled back by application request. This includes those that timeout, since the timeout behavior is considered an attribute of the application configuration.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','035752468405481a9e0c4c60e662eadc','0','2','0'), ('34958','16','','10411','Launch type','jmx["jboss.as:management-root=server","launchType"]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'The manner in which the server process was launched. Either "DOMAIN" for a domain mode server launched by a Host Controller, "STANDALONE" for a standalone server launched from the command line, or "EMBEDDED" for a standalone server launched as an embedded part of an application running in the same virtual machine.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','daf104c5cafe4879b79fb30fca99c838','0','2','0'), ('34959','16','','10411','Transactions: Aborted, rate','jmx["jboss.as:subsystem=transactions","numberOfAbortedTransactions"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'The number of aborted (i.e. rolledback) transactions per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2986d57975334b0bbf6bd687df457c26','0','2','0'), ('34960','16','','10411','Server controller state','jmx["jboss.as:management-root=server","serverState"]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'The current state of the server controller; either STARTING, RUNNING, RESTART_REQUIRED, RELOAD_REQUIRED or STOPPING.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cd57068c6e18440a8e14c0b4fc5c6c78','0','2','0'), ('34961','16','','10411','Runtime configuration state','jmx["jboss.as:management-root=server","runtimeConfigurationState"]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'The current persistent configuration state, one of starting, ok, reload-required, restart-required, stopping or stopped.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','855c96cf1b3d4ef691f7693ba5f8357f','0','2','0'), ('34962','16','','10411','Version','jmx["jboss.as:management-root=server","productVersion"]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'The version of the WildFly Core based product release.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0238c33ca0f045a7b1376cd5b3048bf0','0','2','0'), ('34963','16','','10411','Process type','jmx["jboss.as:management-root=server","processType"]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'The type of process represented by this root resource.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','98dd8a8de5f240998bebaf28c8d1bbe2','0','2','0'), ('34964','16','','10411','Name','jmx["jboss.as:management-root=server","name"]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'For standalone mode: The name of this server. If not set, defaults to the runtime value of InetAddress.getLocalHost().getHostName(). For domain mode: The name given to this domain.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b3c30ba00ac54677a944cda7ec8536af','0','2','0'), ('34965','16','','10411','Transactions: Total, rate','jmx["jboss.as:subsystem=transactions","numberOfTransactions"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','0',NULL,'The total number of transactions (top-level and nested) created per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a0c40292c62e4d51a96db3e07967b17c','0','2','0'), ('34966','16','','10411','Deployments discovery','jmx.get[beans,"jboss.as.expr:deployment=*"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','1',NULL,'Discovery deployments metrics.','0','7d','1','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9dbbe152925245f8a1f3bf5c32ae49c0','0','2','0'), ('34967','16','','10411','JDBC metrics discovery','jmx.get[beans,"jboss.as:subsystem=datasources,data-source=*,statistics=jdbc"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','1',NULL,'','0','7d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8e3d5fe1a5a348169c15217bd083abf5','0','2','0'), ('34968','16','','10411','Pools metrics discovery','jmx.get[beans,"jboss.as:subsystem=datasources,data-source=*,statistics=pool"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','1',NULL,'','0','7d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f8fd6899dafb4247853bd3ed3fbabd48','0','2','0'), ('34969','16','','10411','Undertow metrics discovery','jmx.get[beans,"jboss.as:subsystem=undertow,server=*,http-listener=*"]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','1',NULL,'','0','7d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0a566b1e160649cdb5fda18d3b157733','0','2','0'), ('34970','16','','10411','Deployment [{#DEPLOYMENT}]: Enabled time','jmx["{#JMXOBJ}",enabledTime]','1m','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'Indicates if the deployment is managed (aka uses the ContentRepository).','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','52d99e3f76b4464fbf47271243682d05','0','2','0'), ('34971','16','','10411','Deployment [{#DEPLOYMENT}]: Enabled','jmx["{#JMXOBJ}",enabled]','1m','31d','365d','0','3','','','','',NULL,'335','','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'Boolean indicating whether the deployment content is currently deployed in the runtime (or should be deployed in the runtime the next time the server starts).','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8942cf5bc803401cac2f4d9ea943f1fe','0','2','0'), ('34972','16','','10411','Deployment [{#DEPLOYMENT}]: Managed','jmx["{#JMXOBJ}",managed]','1m','31d','365d','0','3','','','','',NULL,'335','','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'Indicates if the deployment is managed (aka uses the ContentRepository).','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f633e596ddcc4620a193243c80a6633b','0','2','0'), ('34973','16','','10411','Deployment [{#DEPLOYMENT}]: Persistent','jmx["{#JMXOBJ}",persistent]','1m','31d','365d','0','3','','','','',NULL,'335','','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'Indicates if the deployment is managed (aka uses the ContentRepository).','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','498f0d31a5044b91b4aa8af621011919','0','2','0'), ('34974','16','','10411','Deployment [{#DEPLOYMENT}]: Status','jmx["{#JMXOBJ}",status]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The current runtime status of a deployment. Possible status modes are OK, FAILED, and STOPPED. FAILED indicates a dependency is missing or a service could not start. STOPPED indicates that the deployment was not enabled or was manually stopped.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d5dd67dc20c54ef1921da9c9a068ad29','0','2','0'), ('34975','16','','10411','{#JMX_DATA_SOURCE}: Cache access, rate','jmx["{#JMXOBJ}",PreparedStatementCacheAccessCount]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of times that the statement cache was accessed per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6c0c0f94300148eda82224da1bc73bd1','0','2','0'), ('34976','16','','10411','{#JMX_DATA_SOURCE}: Cache add, rate','jmx["{#JMXOBJ}",PreparedStatementCacheAddCount]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of statements added to the statement cache per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0857fb4d2d2447a0b0dede21bb4b4bd5','0','2','0'), ('34977','16','','10411','{#JMX_DATA_SOURCE}: Cache current size','jmx["{#JMXOBJ}",PreparedStatementCacheCurrentSize]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of prepared and callable statements currently cached in the statement cache.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bf368224ed444311ae1af4098c4bdb1f','0','2','0'), ('34978','16','','10411','{#JMX_DATA_SOURCE}: Cache delete, rate','jmx["{#JMXOBJ}",PreparedStatementCacheDeleteCount]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of statements discarded from the cache per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9c08f05299774a538a52be2c11e62cda','0','2','0'), ('34979','16','','10411','{#JMX_DATA_SOURCE}: Cache hit, rate','jmx["{#JMXOBJ}",PreparedStatementCacheHitCount]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of times that statements from the cache were used per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dbe7bc3d9a8a46c6a84b956f0a9e33be','0','2','0'), ('34980','16','','10411','{#JMX_DATA_SOURCE}: Cache miss, rate','jmx["{#JMXOBJ}",PreparedStatementCacheMissCount]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of times that a statement request could not be satisfied with a statement from the cache per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0e81a30b802941c4bc0e34a10a8d0573','0','2','0'), ('34981','16','','10411','{#JMX_DATA_SOURCE}: Statistics enabled','jmx["{#JMXOBJ}",statisticsEnabled, "JDBC"]','1m','31d','365d','0','3','','','','',NULL,'335','','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'Define whether runtime statistics are enabled or not.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','81dbce02ad4d492ebebd1a205bea1b43','0','2','0'), ('34982','16','','10411','{#JMX_DATA_SOURCE}: Connections: Active','jmx["{#JMXOBJ}",ActiveCount]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of open connections.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','06d61e390b0e403e81b1eaa77815cde2','0','2','0'), ('34983','16','','10411','{#JMX_DATA_SOURCE}: XA: Commit time, avg','jmx["{#JMXOBJ}",XACommitAverageTime]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The average time for a XAResource commit invocation.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c22389aa983a4cdca504e3cc41126f03','0','2','0'), ('34984','16','','10411','{#JMX_DATA_SOURCE}: XA: Start time, avg','jmx["{#JMXOBJ}",XAStartAverageTime]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The average time for a XAResource start invocation.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ab9c32db31d84a46967c1f601f11f610','0','2','0'), ('34985','16','','10411','{#JMX_DATA_SOURCE}: XA: Rollback, rate','jmx["{#JMXOBJ}",XARollbackCount]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of XAResource rollback invocations per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0c0749b041124e1ebb11396344517c01','0','2','0'), ('34986','16','','10411','{#JMX_DATA_SOURCE}: XA: Rollback time, avg','jmx["{#JMXOBJ}",XARollbackAverageTime]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The average time for a XAResource rollback invocation.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bd64f91e953249e993c3c388f3382ff4','0','2','0'), ('34987','16','','10411','{#JMX_DATA_SOURCE}: XA: Recover, rate','jmx["{#JMXOBJ}",XARecoverCount]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of XAResource recover invocations per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d7a3de25f6a74c75b65bc9c83decc1ac','0','2','0'), ('34988','16','','10411','{#JMX_DATA_SOURCE}: XA: Recover time, avg','jmx["{#JMXOBJ}",XARecoverAverageTime]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The average time for a XAResource recover invocation.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','30f0474a666547c39e0d793decd0be57','0','2','0'), ('34989','16','','10411','{#JMX_DATA_SOURCE}: XA: Prepare, rate','jmx["{#JMXOBJ}",XAPrepareCount]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of XAResource prepare invocations per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','96c723883cfa416b9e030e5d42836de3','0','2','0'), ('34990','16','','10411','{#JMX_DATA_SOURCE}: XA: Prepare time, avg','jmx["{#JMXOBJ}",XAPrepareAverageTime]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The average time for a XAResource prepare invocation.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4513aff93c8a404389aaf58b28aab5b1','0','2','0'), ('34991','16','','10411','{#JMX_DATA_SOURCE}: XA: Forget, rate','jmx["{#JMXOBJ}",XAForgetCount]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of XAResource forget invocations per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','685173455b424a5aa5463670c1718314','0','2','0'), ('34992','16','','10411','{#JMX_DATA_SOURCE}: XA: Forget time, avg','jmx["{#JMXOBJ}",XAForgetAverageTime]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The average time for a XAResource forget invocation.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b5028a44fa2b4347abe11177d61567e2','0','2','0'), ('34993','16','','10411','{#JMX_DATA_SOURCE}: XA: End, rate','jmx["{#JMXOBJ}",XAEndCount]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of XAResource end invocations per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c51dd8821ace4724ae965d7ca6f3ebdd','0','2','0'), ('34994','16','','10411','{#JMX_DATA_SOURCE}: XA: End time, avg','jmx["{#JMXOBJ}",XAEndAverageTime]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The average time for a XAResource end invocation.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6f15c885d49e4c1a89bd52b0b4ff0035','0','2','0'), ('34995','16','','10411','{#JMX_DATA_SOURCE}: XA: Commit, rate','jmx["{#JMXOBJ}",XACommitCount]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of XAResource commit invocations per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2510b507e62c4574af32bb0a283995e8','0','2','0'), ('34996','16','','10411','{#JMX_DATA_SOURCE}: Connections: Wait','jmx["{#JMXOBJ}",WaitCount]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of requests that had to wait to obtain a physical connection.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4832c8d39e0d4329af6876c594a3d741','0','2','0'), ('34997','16','','10411','{#JMX_DATA_SOURCE}: Connections: Available','jmx["{#JMXOBJ}",AvailableCount]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The available count.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','64565b71c26b463d8ea83ee5ee18284f','0','2','0'), ('34998','16','','10411','{#JMX_DATA_SOURCE}: Connections: Timed out, rate','jmx["{#JMXOBJ}",TimedOut]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The timed out connections per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','727ff33cec8e4223bc5054c53d0de88b','0','2','0'), ('34999','16','','10411','{#JMX_DATA_SOURCE}: Statistics enabled','jmx["{#JMXOBJ}",statisticsEnabled]','1m','31d','365d','0','0','','','','',NULL,'335','','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'Define whether runtime statistics are enabled or not.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fb9a55168c8a4082a19f846ca10adc85','0','2','0'), ('35000','16','','10411','{#JMX_DATA_SOURCE}: Connections: Used, max','jmx["{#JMXOBJ}",MaxUsedCount]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The maximum number of connections used.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2f3e82a1c2f2472f95e4a85e3b182739','0','2','0'), ('35001','16','','10411','{#JMX_DATA_SOURCE}: Connections: In use','jmx["{#JMXOBJ}",InUseCount]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of physical connections currently in use.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a5eed78c02274f6180eb667091087ce0','0','2','0'), ('35002','16','','10411','{#JMX_DATA_SOURCE}: Connections: Idle','jmx["{#JMXOBJ}",IdleCount]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of physical connections currently idle.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a02eb0060fbb4f598d654d93c286c543','0','2','0'), ('35003','16','','10411','{#JMX_DATA_SOURCE}: Connections: Destroyed, rate','jmx["{#JMXOBJ}",DestroyedCount]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The destroyed count.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','606ed51ce8e549c7af20d7c1c5f78e6e','0','2','0'), ('35004','16','','10411','{#JMX_DATA_SOURCE}: Connections: Created, rate','jmx["{#JMXOBJ}",CreatedCount]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The created per second','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c01eb89708224899a9ac8e90ee79bcca','0','2','0'), ('35005','16','','10411','{#JMX_DATA_SOURCE}: Connections: Blocking failure, rate','jmx["{#JMXOBJ}",BlockingFailureCount]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of failures trying to obtain a physical connection per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ba111d0ad76848c39c54ffc37d04e561','0','2','0'), ('35006','16','','10411','{#JMX_DATA_SOURCE}: Connections: Usage time, avg','jmx["{#JMXOBJ}",AverageUsageTime]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The average time spent using a physical connection','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a76602ba784a4d40a3672a80487c878a','0','2','0'), ('35007','16','','10411','{#JMX_DATA_SOURCE}: Connections: Pool time, avg','jmx["{#JMXOBJ}",AveragePoolTime]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The average time for a physical connection spent in the pool.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c3a313b3d1c34e6b99ae73d5195e7fac','0','2','0'), ('35008','16','','10411','{#JMX_DATA_SOURCE}: Connections: Get time, avg','jmx["{#JMXOBJ}",AverageGetTime]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The average time spent obtaining a physical connection.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','52320ebbe70244e3ad52b0766cd03d8d','0','2','0'), ('35009','16','','10411','{#JMX_DATA_SOURCE}: Connections: Creating time, avg','jmx["{#JMXOBJ}",AverageCreationTime]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The average time spent creating a physical connection.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','788691ba487e422a913d408361f99e4d','0','2','0'), ('35010','16','','10411','{#JMX_DATA_SOURCE}: Blocking time, avg','jmx["{#JMXOBJ}",AverageBlockingTime]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'Average Blocking Time for pool.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','adf534b46aba4f28acea58ea46197edd','0','2','0'), ('35011','16','','10411','{#JMX_DATA_SOURCE}: XA: Start rate','jmx["{#JMXOBJ}",XAStartCount]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of XAResource start invocations per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ef5b00e1dcab4addbc72a0c191e3728b','0','2','0'), ('35012','16','','10411','Listener {#HTTP_LISTENER}: Bytes received, rate','jmx["{#JMXOBJ}",bytesReceived]','1m','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of bytes that have been received by this listener per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dde94dd2df61495582234d709552fe17','0','2','0'), ('35013','16','','10411','Listener {#HTTP_LISTENER}: Bytes sent, rate','jmx["{#JMXOBJ}",bytesSent]','1m','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of bytes that have been sent out on this listener per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','36451d29d7074b8ebdb3f366eeaa84df','0','2','0'), ('35014','16','','10411','Listener {#HTTP_LISTENER}: Errors, rate','jmx["{#JMXOBJ}",errorCount]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of 500 responses that have been sent by this listener per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a34cb42c703a4996ab9a4c7a08e71eeb','0','2','0'), ('35015','16','','10411','Listener {#HTTP_LISTENER}: Requests, rate','jmx["{#JMXOBJ}",requestCount]','1m','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','{$WILDFLY.USER}','{$WILDFLY.PASSWORD}','','','2',NULL,'The number of requests this listener has served per second.','0','30d','0','service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2e7a581b104a4d4a8a0d9235b899635a','0','2','0'), ('35016','20','get[1.3.6.1.4.1.318.1.1.1.2.3.1.0]','10412','Battery capacity','battery.capacity[upsHighPrecBatteryCapacity]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The remaining battery capacity expressed as percentage of full capacity.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f5ca8610803e4aca8c6c3c8f6044ca43','0','2','0'), ('35017','20','get[1.3.6.1.4.1.318.1.1.1.4.1.1.0]','10412','Output status','output.status[upsBasicOutputStatus]','1m','31d','365d','0','3','','','','',NULL,'340','','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current state of the UPS. If the UPS is unable to determine the state of the UPS this variable is set to unknown(1). During self-test most UPSes report onBattery(3) but some that support it will report onBatteryTest(15). To determine self-test status across all UPSes, refer to the upsBasicStateOutputState OID.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c87c096a38284b82bb0fd8c9dfe871ef','0','2','0'), ('35018','20','get[1.3.6.1.2.1.1.3.0]','10412','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1b9e4b13cfcb4680b25dd8974900fc17','0','2','0'), ('35019','20','get[1.3.6.1.4.1.318.1.1.1.1.2.3.0]','10412','Serial number','system.sn[upsAdvIdentSerialNumber]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB An 8-character string identifying the serial number of the UPS internal microprocessor. This number is set at the factory. NOTE: This number does NOT correspond to the serial number on the rear of the UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a3069693d6e545978fb877d767dface5','0','2','0'), ('35020','20','get[1.3.6.1.2.1.1.2.0]','10412','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1782e98504114e7c847b6d127b3a3ae1','0','2','0'), ('35021','20','get[1.3.6.1.2.1.1.5.0]','10412','System name','system.name[sysName.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5778610ee61d472d9dc8c8da94f9e301','0','2','0'), ('35022','20','get[1.3.6.1.4.1.318.1.1.1.1.1.1.0]','10412','Model','system.model[upsBasicIdentModel]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The UPS model name (e.g. ''APC Smart-UPS 600'').','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7e81f54bbbdd41ca8f9e010dbddc485f','0','2','0'), ('35023','20','get[1.3.6.1.2.1.1.6.0]','10412','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The physical location of this node (e.g., `telephone closet, 3rd floor''). If the location is unknown, the value is the zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a57de4a9da144c2aa880253e4e2b46f9','0','2','0'), ('35024','20','get[1.3.6.1.2.1.1.1.0]','10412','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0617c89b47454dbd833fcc2b8d570db8','0','2','0'), ('35025','20','get[1.3.6.1.2.1.1.4.0]','10412','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7485fd42dd2749028a2d67f315888723','0','2','0'), ('35026','17','','10412','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3892c18baef54c598dc78035f5a7540a','0','2','0'), ('35027','20','get[1.3.6.1.4.1.318.1.1.1.4.3.1.0]','10412','Output voltage','output.voltage[upsHighPrecOutputVoltage]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The output voltage of the UPS system in VAC.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','998d1322a2274da19abe10cdcb3c52e0','0','2','0'), ('35028','20','get[1.3.6.1.4.1.318.1.1.1.4.3.3.0]','10412','Output load','output.load[upsHighPrecOutputLoad]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current UPS load expressed as percentage of rated capacity.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5427a9b46ea54920b3fcc7d8ca413e0e','0','2','0'), ('35029','20','get[1.3.6.1.4.1.318.1.1.1.2.2.5.0]','10412','External battery packs count','battery.external_packs_count[upsAdvBatteryNumOfBattPacks]','1h','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The number of external battery packs connected to the UPS. If the UPS does not use smart cells then the agent reports ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7652aff14f644896be902fe18f3bb46a','0','2','0'), ('35030','20','get[1.3.6.1.4.1.318.1.1.1.4.3.4.0]','10412','Output current','output.current[upsHighPrecOutputCurrent]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current in amperes drawn by the load on the UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b0d66c706be8457cbf794171253dd927','0','2','0'), ('35031','20','get[1.3.6.1.4.1.318.1.1.1.3.3.1.0]','10412','Input voltage','input.voltage[upsHighPrecInputLineVoltage]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current utility line voltage in VAC.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','65acc805ec7f4a2883d28f51b32054cc','0','2','0'), ('35032','20','get[1.3.6.1.4.1.318.1.1.1.3.3.4.0]','10412','Input frequency','input.frequency[upsHighPrecInputFrequency]','1m','31d','365d','0','0','','Hz','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current input frequency to the UPS system in Hz.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fb816e1a6ff640d69a5465e78febc03e','0','2','0'), ('35033','20','get[1.3.6.1.4.1.318.1.1.1.3.2.5.0]','10412','Input fail cause','input.fail[upsAdvInputLineFailCause]','1m','31d','365d','0','3','','','','',NULL,'338','','','0','','','','','0',NULL,'MIB: PowerNet-MIB The reason for the occurrence of the last transfer to UPS battery power. The variable is set to: - noTransfer(1) -- if there is no transfer yet. - highLineVoltage(2) -- if the transfer to battery is caused by an over voltage greater than the high transfer voltage. - brownout(3) -- if the duration of the outage is greater than five seconds and the line voltage is between 40% of the rated output voltage and the low transfer voltage. - blackout(4) -- if the duration of the outage is greater than five seconds and the line voltage is between 40% of the rated output voltage and ground. - smallMomentarySag(5) -- if the duration of the outage is less than five seconds and the line voltage is between 40% of the rated output voltage and the low transfer voltage. - deepMomentarySag(6) -- if the duration of the outage is less than five seconds and the line voltage is between 40% of the rated output voltage and ground. The variable is set to - smallMomentarySpike(7) -- if the line failure is caused by a rate of change of input voltage less than ten volts per cycle. - largeMomentarySpike(8) -- if the line failure is caused by a rate of change of input voltage greater than ten volts per cycle. - selfTest(9) -- if the UPS was commanded to do a self test. - rateOfVoltageChange(10) -- if the failure is due to the rate of change of the line voltage.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','09f34437ff2e422bb62d7ba44b05657c','0','2','0'), ('35034','20','get[1.3.6.1.4.1.318.1.1.1.2.3.4.0]','10412','Battery voltage','battery.voltage[upsHighPrecBatteryActualVoltage]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The actual battery bus voltage in Volts.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','560031163d54444cb5ead172e9e238d2','0','2','0'), ('35035','20','get[1.3.6.1.4.1.318.1.1.1.2.3.2.0]','10412','Battery temperature','battery.temperature[upsHighPrecBatteryTemperature]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The current internal UPS temperature in Celsius. Temperatures below zero read as 0.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','48552e466ee54883ae3cbfd5e549ffc5','0','2','0'), ('35036','20','get[1.3.6.1.4.1.318.1.1.1.2.1.1.0]','10412','Battery status','battery.status[upsBasicBatteryStatus]','1m','31d','365d','0','3','','','','',NULL,'339','','','0','','','','','0',NULL,'MIB: PowerNet-MIB The status of the UPS batteries. A batteryLow(3) value indicates the UPS will be unable to sustain the current load, and its services will be lost if power is not restored. The amount of run time in reserve at the time of low battery can be configured by the upsAdvConfigLowBatteryRunTime. A batteryInFaultCondition(4)value indicates that a battery installed has an internal error condition.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aebc8b49a97243038b97855c5d20edb7','0','2','0'), ('35037','20','get[1.3.6.1.4.1.318.1.1.1.2.2.3.0]','10412','Battery runtime remaining','battery.runtime_remaining[upsAdvBatteryRunTimeRemaining]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The UPS battery run time remaining before battery exhaustion.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6aacf5a02a824b9d8b3c2676b126b186','0','2','0'), ('35038','20','get[1.3.6.1.4.1.318.1.1.1.2.2.4.0]','10412','Battery replace indicator','battery.replace_indicator[upsAdvBatteryReplaceIndicator]','1m','31d','365d','0','3','','','','',NULL,'337','','','0','','','','','0',NULL,'MIB: PowerNet-MIB Indicates whether the UPS batteries need replacement.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f4d790f93a1c4e75a7ebd3d89d0d9d90','0','2','0'), ('35039','20','get[1.3.6.1.4.1.318.1.1.1.2.1.3.0]','10412','Battery last replace date','battery.last_replace_date[upsBasicBatteryLastReplaceDate]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: PowerNet-MIB The date when the UPS system''s batteries were last replaced in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value is originally set at the factory. When the UPS batteries are replaced, this value should be reset by the administrator. For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ee059b1bb6ac486c8c5dd29654899d71','0','2','0'), ('35040','5','','10412','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'341','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','63079124c55f479dad013d0c15077577','0','2','0'), ('35041','20','discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6]','10412','External bad battery packs discovery','battery.packs.bad.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of the number of external defective battery packs.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','af4472b543b54699b6e812de51be2419','0','2','0'), ('35042','20','discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2]','10412','External battery packs discovery','battery.packs.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a3716fb0833e4655b63ec4ccc5736950','0','2','0'), ('35043','20','discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3]','10412','External sensor port 1 discovery','external.sensor1.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'uioSensorStatusTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e858b8966abc444a914ef60c1708b835','0','2','0'), ('35044','20','discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3]','10412','External sensor port 2 discovery','external.sensor2.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'uioSensorStatusTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','415a43bfe1d845f88f0ac15e80a0dc14','0','2','0'), ('35045','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1]','10412','Input phases discovery','input.phases.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The input phase identifier. OID upsPhaseInputPhaseIndex.1.1','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5971a05073b84056bf4e30dfa3e2e18e','0','2','0'), ('35046','20','discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1]','10412','Output phases discovery','output.phases.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e4f2cd7e1f004c4abd5be7e5fc28a9eb','0','2','0'), ('35047','20','get[1.3.6.1.4.1.318.1.1.1.2.2.6.0]','10412','{#SNMPINDEX}: External battery packs bad','battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}]','15m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The number of external battery packs connected to the UPS that are defective. If the UPS does not use smart cells then the agent reports ERROR_NO_SUCH_NAME.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a8a07270aac8499391fddfd1b6d517a3','0','2','0'), ('35048','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX}]','10412','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date','battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The battery cartridge estimated battery replace date.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b68c1b0a33bf4d2c94bd46e25a6b5e46','0','2','0'), ('35049','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX}]','10412','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health','battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The battery cartridge health. bit 0 Battery lifetime okay bit 1 Battery lifetime near end, order replacement cartridge bit 2 Battery lifetime exceeded, replace battery bit 3 Battery lifetime near end acknowledged, order replacement cartridge bit 4 Battery lifetime exceeded acknowledged, replace battery bit 5 Battery measured lifetime near end, order replacement cartridge bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8629f478f8e44e079b69914b498ce2f5','0','2','0'), ('35050','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX}]','10412','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status','battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The status of the UPS batteries. A batteryLow(3) value indicates the UPS will be unable to sustain the current load, and its services will be lost if power is not restored. The amount of run time in reserve at the time of low battery can be configured by the upsAdvConfigLowBatteryRunTime. A batteryInFaultCondition(4)value indicates that a battery installed has an internal error condition.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fd2d784d618a4ad883a4afb8a9b94940','0','2','0'), ('35051','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX}]','10412','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature','battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The current internal UPS temperature in Celsius. Temperatures below zero read as 0.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6b20217de8474cc08ca3818784804109','0','2','0'), ('35052','20','get[1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX}]','10412','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number','system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB An 8-character string identifying the serial number of the UPS internal microprocessor. This number is set at the factory. NOTE: This number does NOT correspond to the serial number on the rear of the UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7757bd184a7c4c0bbd442c7a3013f6d9','0','2','0'), ('35053','20','get[1.3.6.1.4.1.318.1.1.25.1.2.1.7.{#SNMPINDEX}]','10412','{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current humidity reading - a relative humidity percentage. -1 indicates an invalid reading due to either a sensor that doesn''t read humidity or lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bddad787e7df427b8b225c9af517c3c1','0','2','0'), ('35054','20','get[1.3.6.1.4.1.318.1.1.25.1.2.1.9.{#SNMPINDEX}]','10412','{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'336','','','0','','','','','2',NULL,'MIB: PowerNet-MIB The alarm status of the sensor. Possible values: uioNormal (1), uioWarning (2), uioCritical (3), sensorStatusNotApplicable (4)','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5cab24d2166244fd9528930edbafa677','0','2','0'), ('35055','20','get[1.3.6.1.4.1.318.1.1.25.1.2.1.6.{#SNMPINDEX}]','10412','{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current temperature reading in Celsius. -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','af55c3c3bc2f45ec9f735de0fb5a4285','0','2','0'), ('35056','20','get[1.3.6.1.4.1.318.1.1.25.1.2.2.7.{#SNMPINDEX}]','10412','{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current humidity reading - a relative humidity percentage. -1 indicates an invalid reading due to either a sensor that doesn''t read humidity or lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4a5c62571e0b4fdaa6c7b85645e06649','0','2','0'), ('35057','20','get[1.3.6.1.4.1.318.1.1.25.1.2.2.9.{#SNMPINDEX}]','10412','{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'336','','','0','','','','','2',NULL,'MIB: PowerNet-MIB The alarm status of the sensor. Possible values: uioNormal (1), uioWarning (2), uioCritical (3), sensorStatusNotApplicable (4)','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e09e9e197d2f4afc83231cb304a26b09','0','2','0'), ('35058','20','get[1.3.6.1.4.1.318.1.1.25.1.2.2.6.{#SNMPINDEX}]','10412','{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}]','1m','31d','365d','0','0','','℃','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The sensor''s current temperature reading in Celsius. -1 indicates an invalid reading due to lost communications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7bc1fa7e114e40ffadd4336a3980e4c2','0','2','0'), ('35059','20','get[1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX}]','10412','{#PHASEINDEX}: Phase input current','phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The input current in 0.1 amperes, or -0.1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','847e044ec924456daf41025d312334bf','0','2','0'), ('35060','20','get[1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX}]','10412','{#PHASEINDEX}: Phase input voltage','phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The input voltage in VAC, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','15de75236e9c44f1bb4bbf4c0425c9c2','0','2','0'), ('35061','20','get[1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX}]','10412','{#PHASEINDEX}: Phase output current','phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The output current in 0.1 amperes drawn by the load on the UPS, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0e4b4159dd0543faa5d93969f8e5753b','0','2','0'), ('35062','20','get[1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX}]','10412','{#PHASEINDEX}: Phase output load, %','phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The percentage of the UPS load capacity in VA at redundancy @ (n + x) presently being used on this output phase, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3d35f771f73545e2806153f33e747bc4','0','2','0'), ('35063','20','get[1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX}]','10412','{#PHASEINDEX}: Phase output voltage','phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: PowerNet-MIB The output voltage in VAC, or -1 if it''s unsupported by this UPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d27c63f29e9b453a9bbdac1c0c8065ae','0','2','0'), ('35064','0','','10413','Get','web.certificate.get[{$CERT.WEBSITE.HOSTNAME},{$CERT.WEBSITE.PORT},{$CERT.WEBSITE.IP}]','15m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Returns the JSON with attributes of a certificate of the requested site.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ec072b3b1c6847b79acac9f18d14df8a','0','2','0'), ('35077','21','','10414','Get data','cloudflare.get','0;m01','0','0','0','4','','','','',NULL,NULL,E'var Cloudflare = { params: {}, setParams: function (params) { [''api_endpoint'', ''token'', ''zone''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } }); Cloudflare.params = params; if (typeof Cloudflare.params.api_endpoint === ''string'') { if (!Cloudflare.params.api_endpoint.endsWith(''/'')) { Cloudflare.params.api_endpoint += ''/''; } } }, request: function (method, query, data) { var response, request = new HttpRequest(), url = Cloudflare.params.api_endpoint + query; request.addHeader(''Content-Type: application/json''); request.addHeader(''Authorization: Bearer '' + Cloudflare.params.token); if (typeof data !== ''undefined'') { data = JSON.stringify(data); } Zabbix.log(4, ''[ Cloudflare ] Sending request: '' + url + ((typeof data === ''string'') ? (''\\n'' + data) : '''')); switch (method) { case ''get'': response = request.get(url, data); break; case ''post'': response = request.post(url, data); break; default: throw ''Unsupported HTTP request method: '' + method; } Zabbix.log(4, ''[ Cloudflare ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from Cloudflare. Check debug log for more information.''; } } if (query === ''graphql/'' && request.getStatus() == 200 && typeof response.errors !== ''undefined'' && Array.isArray(response.errors)) { throw ''Request failed with error "'' + (getField(response, ''errors.0.message'') || ''unknown'') + ''"''; } return { status: request.getStatus(), response: response }; } } function getField(object, field, def) { var names = field.split(''.''); var name = names.shift(); while (typeof name !== ''undefined'') { if (typeof object === undefined || typeof object[name] === ''undefined'') { return def; } object = object[name]; name = names.shift(); } return object; } try { Cloudflare.setParams(JSON.parse(value)); var datetime_end = new Date(), datetime_start = new Date(); datetime_start.setTime(datetime_end.getTime() - 3600000); datetime_start.setMinutes(0, 0, 0); datetime_end.setTime(datetime_start.getTime()); datetime_end.setMinutes(59, 59, 0); var datetime_start_str = datetime_start.toISOString(), datetime_end_str = datetime_end.toISOString(); var data = { "query": "{viewer {zones(filter: {zoneTag: \\"" + Cloudflare.params.zone + "\\"}) {\\ httpRequests1hGroups(limit: 100 filter: {\\ datetime_geq: \\"" + datetime_start_str + "\\", datetime_leq: \\"" + datetime_end_str + "\\"\\ }) {\\ sum{\\ requests \\ cachedRequests \\ encryptedRequests \\ responseStatusMap{ requests edgeResponseStatus } \\ bytes \\ cachedBytes \\ encryptedBytes \\ threats \\ pageViews \\ }\\ uniq{uniques}\\ }\\ }}}", "variables": {} } var result = Cloudflare.request(''post'', ''graphql/'', data), cloudflare = {}, res = getField(result.response, ''data.viewer.zones.0.httpRequests1hGroups.0.sum''); if (typeof res === ''object'') { cloudflare = { requests: { all: res.requests || 0, cached: res.cachedRequests || 0, encrypted: res.encryptedRequests || 0, cache_hit_ratio: 0, success_ratio: 0, others_ratio: 0, response_100: 0, response_200: 0, response_300: 0, response_400: 0, response_500: 0 }, bandwidth: { all: res.bytes || 0, cached: res.cachedBytes || 0, cache_hit_ratio: 0, encrypted: res.encryptedBytes || 0, }, threats: { all: res.threats || 0 }, pageviews: { all: res.pageViews || 0 } } cloudflare.requests.uncached = res.requests - res.cachedRequests; cloudflare.requests.unencrypted = cloudflare.requests.all - cloudflare.requests.encrypted; cloudflare.bandwidth.uncached = cloudflare.bandwidth.all - cloudflare.bandwidth.cached; cloudflare.bandwidth.unencrypted = cloudflare.bandwidth.all - cloudflare.bandwidth.encrypted; if (Array.isArray(res.responseStatusMap)) { res.responseStatusMap.forEach(function (element) { var group = Math.floor((element.edgeResponseStatus / 100)) * 100; cloudflare.requests[''response_'' + group] += element.requests; }); } if (cloudflare.requests.all > 0) { cloudflare.requests.success_ratio = (cloudflare.requests.response_200 / cloudflare.requests.all * 100).toFixed(2); cloudflare.requests.others_ratio = ((cloudflare.requests.all - cloudflare.requests.response_200) / cloudflare.requests.all * 100).toFixed(2); cloudflare.requests.cache_hit_ratio = (cloudflare.requests.cached / cloudflare.requests.all * 100).toFixed(2); } if (cloudflare.bandwidth.all > 0) { cloudflare.bandwidth.cache_hit_ratio = (cloudflare.bandwidth.cached / cloudflare.bandwidth.all * 100).toFixed(2); } res = getField(result.response, ''data.viewer.zones.0.httpRequests1hGroups.0.uniq''); if (typeof res === ''object'') { cloudflare.uniques = { all: res.uniques || 0 } } result = Cloudflare.request(''get'', ''zones/'' + encodeURIComponent(Cloudflare.params.zone) + ''/dns_analytics/report?dimensions=queryName&metrics=queryCount,uncachedCount,staleCount&since='' + encodeURIComponent(datetime_start_str) + ''&until='' + encodeURIComponent(datetime_end_str)); res = getField(result.response, ''result.totals''); if (typeof result.response.result === ''object'') { cloudflare.dns = { query: { all: res.queryCount || 0, uncached: res.uncachedCount || 0, stale: res.staleCount || 0 } } } } return JSON.stringify(cloudflare); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ Cloudflare ] ERROR: '' + error); throw ''Requesting failed: '' + error; }','','0','','','','','0',NULL,'The JSON with result of Cloudflare API request.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9450a68208fd4cb8bde009296d722064','0','2','0'), ('35153','19','','10415','Get connections','nginx.connections','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Returns the statistics of client connections.','0','30d','0','',NULL,'','{$NGINX.API.ENDPOINT}/6/connections/','','','200,404','1','0','','','0','0','0','0','0','0','0','26c121f9c50a4e90b4502e2bd7f42992','0','2','0'), ('35154','19','','10415','Get info','nginx.info','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Return status of the NGINX running instance.','0','30d','0','',NULL,'','{$NGINX.API.ENDPOINT}/6/nginx/','','','200,404','1','0','','','0','0','0','0','0','0','0','d6c37400f8e64d89a698896afa6589de','0','2','0'), ('35155','19','','10415','Get Stream server zones','nginx.stream.server_zones','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Returns the status information for each server zone configured in the "stream" directive.','0','30d','0','',NULL,'','{$NGINX.API.ENDPOINT}/6/stream/server_zones/','','','200,404','1','0','','','0','0','0','0','0','0','0','148a8612964b445ba37e340c9341f49d','0','2','0'), ('35156','19','','10415','Get SSL','nginx.ssl','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Returns the SSL statistics.','0','30d','0','',NULL,'','{$NGINX.API.ENDPOINT}/6/ssl/','','','200,404','1','0','','','0','0','0','0','0','0','0','e0798bb2d16c418781e19880fd78832c','0','2','0'), ('35157','19','','10415','Get resolvers','nginx.resolvers','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Returns the status information for each Resolver zone.','0','30d','0','',NULL,'','{$NGINX.API.ENDPOINT}/6/resolvers/','','','200,404','1','0','','','0','0','0','0','0','0','0','9ea35f4f2ca24187896b7f44fb410d24','0','2','0'), ('35158','19','','10415','Get requests','nginx.requests','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Returns the status of the client''s HTTP requests.','0','30d','0','',NULL,'','{$NGINX.API.ENDPOINT}/6/http/requests/','','','200,404','1','0','','','0','0','0','0','0','0','0','65377fc7308340348199c4c63720a7e1','0','2','0'), ('35159','19','','10415','Get Stream upstreams','nginx.stream.upstreams','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Returns status of each stream upstream server group and its servers.','0','30d','0','',NULL,'','{$NGINX.API.ENDPOINT}/6/stream/upstreams/','','','200,404','1','0','','','0','0','0','0','0','0','0','c48ca144a8414b2db1c35d518ca5a24f','0','2','0'), ('35160','19','','10415','Get HTTP upstreams','nginx.http.upstreams','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Returns the status of each HTTP upstream server group and its servers.','0','30d','0','',NULL,'','{$NGINX.API.ENDPOINT}/6/http/upstreams/','','','200,404','1','0','','','0','0','0','0','0','0','0','4ec5e9b1d17141f49db5d9bf29134a49','0','2','0'), ('35161','19','','10415','Get HTTP location zones','nginx.http.location_zones','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Returns the status information for each HTTP location zone.','0','30d','0','',NULL,'','{$NGINX.API.ENDPOINT}/6/http/location_zones/','','','200,404','1','0','','','0','0','0','0','0','0','0','51c50d69acdb451395736902733673fe','0','2','0'), ('35162','19','','10415','Get HTTP zones','nginx.http.server_zones','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Returns the status information for each HTTP server zone.','0','30d','0','',NULL,'','{$NGINX.API.ENDPOINT}/6/http/server_zones/','','','200,404','1','0','','','0','0','0','0','0','0','0','5b337c675bc14d9ab3ac6d2cf5b82dce','0','2','0'), ('35262','0','','10416','Service units discovery','systemd.unit.discovery[service]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover systemd service units and their details.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0dfbc5994c1e44a6a1a2aa8ecc2f0347','0','1','0'), ('35263','0','','10416','Socket units discovery','systemd.unit.discovery[socket]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover systemd socket units and their details.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5c337762ae7b43a98fcb9dc3102a8467','0','1','0'), ('35264','0','','10416','{#UNIT.NAME}: Get unit info','systemd.unit.get["{#UNIT.NAME}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Returns all properties of a systemd service unit. Unit description: {#UNIT.DESCRIPTION}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bdb94d1182114985a8734de7d5d92380','0','2','0'), ('35265','0','','10416','{#UNIT.NAME}: Get unit info','systemd.unit.get["{#UNIT.NAME}",Socket]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Returns all properties of a systemd socket unit. Unit description: {#UNIT.DESCRIPTION}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','83ffad5a484d48e388ac658511d4b803','0','2','0'), ('35272','5','','10047','Utilization of trigger housekeeper internal processes, in %','zabbix[process,trigger housekeeper,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the trigger housekeeper processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ad2199d0152d4deb8259699ebd1f3da5','0','2','0'), ('35273','5','','10047','Version','zabbix[version]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The version of Zabbix server.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','140cf84640564a60bcd107bebf9ac2e3','0','2','0'), ('35274','5','','10047','Utilization of service manager internal processes, in %','zabbix[process,service manager,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the service manager processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4f6c2b59437c4345b348d78b5d2242db','0','2','0'), ('35280','16','','10417','Data region metrics','jmx.discovery[beans,"org.apache:group=DataRegionMetrics,*"]','10m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','1',NULL,'','0','7d','1','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f8d8a6cd41da496ea6d61793e0ab0d00','0','2','0'), ('35281','16','','10417','Local node metrics','jmx.discovery[beans,"org.apache:group=Kernal,name=ClusterLocalNodeMetricsMXBeanImpl,*"]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','1',NULL,'','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e7ad3e966ed94b91a88d28b785862b2f','0','2','0'), ('35282','16','','10417','Cluster metrics','jmx.discovery[beans,"org.apache:group=Kernal,name=ClusterMetricsMXBeanImpl,*"]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','1',NULL,'','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5b7b9e010a274bb5a52784143dd57628','0','2','0'), ('35283','16','','10417','GridGain kernal metrics','jmx.discovery[beans,"org.apache:group=Kernal,name=IgniteKernal,*"]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','1',NULL,'','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3b81fbcbef204717be1918d3df919174','0','2','0'), ('35284','16','','10417','TCP Communication SPI metrics','jmx.discovery[beans,"org.apache:group=SPIs,name=TcpCommunicationSpi,*"]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','1',NULL,'','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6265d30cd7494809bc94f929968d3c6f','0','2','0'), ('35285','16','','10417','TCP discovery SPI','jmx.discovery[beans,"org.apache:group=SPIs,name=TcpDiscoverySpi,*"]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','1',NULL,'','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5fb38d8148d746d6ae19d4f8c5a33ce8','0','2','0'), ('35286','16','','10417','Transaction metrics','jmx.discovery[beans,"org.apache:group=TransactionMetrics,name=TransactionMetricsMxBeanImpl,*"]','30m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','1',NULL,'','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b0b570121f1646e5baf0b0ff5cc5de2b','0','2','0'), ('35287','16','','10417','Cache groups',E'jmx.discovery[beans,"org.apache:group=\\"Cache groups\\",*"]','10m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','1',NULL,'','0','7d','1','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7e3825aba1ad47c194162122eb050612','0','2','0'), ('35288','16','','10417','Thread pool metrics',E'jmx.discovery[beans,"org.apache:group=\\"Thread Pools\\",*"]','10m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','1',NULL,'','0','7d','1','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3ca6cce698d247daae252430289e7b61','0','2','0'), ('35289','16','','10417','Cache metrics',E'jmx.discovery[beans,"org.apache:name=\\"org.apache.gridgain.internal.processors.cache.CacheLocalMetricsMXBeanImpl\\",*"]','10m','90d','0','0','4','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','1',NULL,'','0','7d','1','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3f3382c27cc449bd86822c245b798056','0','2','0'), ('35290','16','','10417','Data region {#JMXNAME}: Allocation, rate','jmx["{#JMXOBJ}",AllocationRate]','1m','31d','365d','0','0','','!pps','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Allocation rate (pages per second) averaged across rateTimeInternal.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c09b0ea002db4c3d9104a7f51b9921cc','0','2','0'), ('35291','16','','10417','Data region {#JMXNAME}: Checkpoint buffer size','jmx["{#JMXOBJ}",CheckpointBufferSize]','1m','31d','365d','0','0','','B','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Total size in bytes for checkpoint buffer.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3425f6775e9e4a979d876becddec46d2','0','2','0'), ('35292','16','','10417','Data region {#JMXNAME}: Dirty pages','jmx["{#JMXOBJ}",DirtyPages]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Number of pages in memory not yet synchronized with persistent storage.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6e44ce63725a46b486175e34697776ee','0','2','0'), ('35293','16','','10417','Data region {#JMXNAME}: Eviction, rate','jmx["{#JMXOBJ}",EvictionRate]','1m','31d','365d','0','0','','!pps','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Eviction rate (pages per second).','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5396db6809ca44c480f123e1e63430b4','0','2','0'), ('35294','16','','10417','Data region {#JMXNAME}: Size, max','jmx["{#JMXOBJ}",MaxSize]','1m','31d','365d','0','0','','B','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Maximum memory region size defined by its data region.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9f7d683cf3ca47c681eef43e4dd9a471','0','2','0'), ('35295','16','','10417','Data region {#JMXNAME}: Offheap size','jmx["{#JMXOBJ}",OffHeapSize]','1m','31d','365d','0','0','','B','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Offheap size in bytes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','16170e6c8007492984c367892a7393aa','0','2','0'), ('35296','16','','10417','Data region {#JMXNAME}: Offheap used size','jmx["{#JMXOBJ}",OffheapUsedSize]','1m','31d','365d','0','0','','B','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Total used offheap size in bytes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','982c738bdd4f4802917d3f5d63cc489f','0','2','0'), ('35297','16','','10417','Data region {#JMXNAME}: Pages fill factor','jmx["{#JMXOBJ}",PagesFillFactor]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The percentage of the used space.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','03c923d00e5a486faece1f37b3a2863d','0','2','0'), ('35298','16','','10417','Data region {#JMXNAME}: Pages replace, rate','jmx["{#JMXOBJ}",PagesReplaceRate]','1m','31d','365d','0','0','','!pps','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Rate at which pages in memory are replaced with pages from persistent storage (pages per second).','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9094f5992c514be6abaee490b211774e','0','2','0'), ('35299','16','','10417','Data region {#JMXNAME}: Allocated, bytes','jmx["{#JMXOBJ}",TotalAllocatedSize]','1m','31d','365d','0','0','','B','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Total size of memory allocated in bytes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','390107f411e24581a61043000b42152f','0','2','0'), ('35300','16','','10417','Data region {#JMXNAME}: Used checkpoint buffer size','jmx["{#JMXOBJ}",UsedCheckpointBufferSize]','1m','31d','365d','0','0','','B','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Used checkpoint buffer size in bytes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8e0e7a96f0a6424b88829fab78cce2ba','0','2','0'), ('35301','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs active, current','jmx["{#JMXOBJ}",CurrentActiveJobs]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Number of currently active jobs concurrently executing on the node.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f3c7461902934de8a220513a33ad8771','0','2','0'), ('35302','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs cancelled, current','jmx["{#JMXOBJ}",CurrentCancelledJobs]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Number of cancelled jobs that are still running.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c254bc19bccb44de821c51b0882b78b4','0','2','0'), ('35303','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: PME duration, current','jmx["{#JMXOBJ}",CurrentPmeDuration]','1m','31d','365d','0','3','','ms','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Current PME duration in milliseconds.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','63916bbee7604c3e9610f5989bc5bb7a','0','2','0'), ('35304','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs rejected, current','jmx["{#JMXOBJ}",CurrentRejectedJobs]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Number of jobs rejected after more recent collision resolution operation.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','790e8c300f7c4c82b640fb6025bb9eef','0','2','0'), ('35305','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Threads count, current','jmx["{#JMXOBJ}",CurrentThreadCount]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Current number of live threads.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a5c1ece74c914620b9ce70c00c7d5377','0','2','0'), ('35306','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs waiting, current','jmx["{#JMXOBJ}",CurrentWaitingJobs]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Number of queued jobs currently waiting to be executed.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','df386b29e8f74ec9a8f1825cb3094c0e','0','2','0'), ('35307','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Heap memory used','jmx["{#JMXOBJ}",HeapMemoryUsed]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Current heap size that is used for object allocation.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ec0c25c202ff4b1ea47422b51c24d3b4','0','2','0'), ('35308','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs cancelled, rate','jmx["{#JMXOBJ}",TotalCancelledJobs]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Total number of jobs cancelled by the node per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a698da07a1794c479db9948a5ffb4123','0','2','0'), ('35309','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs executed, rate','jmx["{#JMXOBJ}",TotalExecutedJobs]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Total number of jobs handled by the node per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5a60a71ecd2d40af8ca2ca81712c287e','0','2','0'), ('35310','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs rejects, rate','jmx["{#JMXOBJ}",TotalRejectedJobs]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Total number of jobs this node rejects during collision resolution operations since node startup per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7673741944094af9a6bc05bd630fd055','0','2','0'), ('35311','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes, Active baseline','jmx["{#JMXOBJ}",ActiveBaselineNodes]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The number of nodes that are currently active in the baseline topology.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a7eb47fd5db24c198774beacf52fa965','0','2','0'), ('35312','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes, Baseline','jmx["{#JMXOBJ}",TotalBaselineNodes]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Total baseline nodes that are registered in the baseline topology.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','16ca4ca8efa04874902a619bce1f0071','0','2','0'), ('35313','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes, Client','jmx["{#JMXOBJ}",TotalClientNodes]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The number of client nodes in the cluster.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cf66620eeb6b4c9d88c2bd69ed05685a','0','2','0'), ('35314','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes, total','jmx["{#JMXOBJ}",TotalNodes]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Total number of nodes.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d74b4324fb5a446a92e6fcf89162eff5','0','2','0'), ('35315','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes, Server','jmx["{#JMXOBJ}",TotalServerNodes]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The number of server nodes in the cluster.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b64a4ce1266b4806a554967d2fd24fa5','0','2','0'), ('35316','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Version','jmx["{#JMXOBJ}",FullVersion]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Version of GridGain instance.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cbe7305a44754576a8084d606710765f','0','2','0'), ('35317','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Local node ID','jmx["{#JMXOBJ}",LocalNodeId]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Unique identifier for this node within grid.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','18f518b41e804f7cb3eeaaf92fef40e7','0','2','0'), ('35318','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Uptime','jmx["{#JMXOBJ}",UpTime]','1m','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Uptime of GridGain instance.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4b3c99a88fbf4485a3dbf5efa2723ca7','0','2','0'), ('35319','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Communication outbound messages queue','jmx["{#JMXOBJ}",OutboundMessagesQueueSize]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Outbound messages queue size.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','904f0c843b1b434986043a63cb0890e7','0','2','0'), ('35320','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Communication messages received, rate','jmx["{#JMXOBJ}",ReceivedMessagesCount]','1m','31d','365d','0','0','','!msg/s','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The number of messages received per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2a01c4dc23b34df6801be0901bf10ab0','0','2','0'), ('35321','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Communication reconnect rate','jmx["{#JMXOBJ}",ReconnectCount,maxNumbers]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Gets maximum number of reconnect attempts used when establishing connection with remote nodes per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','613114b7abb94bd5bbabc2d1d19975b7','0','2','0'), ('35322','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Communication messages sent, rate','jmx["{#JMXOBJ}",SentMessagesCount]','1m','31d','365d','0','0','','!msg/s','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The number of messages sent per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e015293ddbb540e4b6b59ba6e28ed91e','0','2','0'), ('35323','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Coordinator','jmx["{#JMXOBJ}",Coordinator]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Current coordinator UUID.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3e1086638d954e939907fd2009408048','0','2','0'), ('35324','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Discovery message worker queue','jmx["{#JMXOBJ}",MessageWorkerQueueSize]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Message worker queue current size.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','29d85d09951346c1a7c30acc83f404fc','0','2','0'), ('35325','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes failed','jmx["{#JMXOBJ}",NodesFailed]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Nodes failed count.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0aed9a4269ff4718aa443d1b053fa31b','0','2','0'), ('35326','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes joined','jmx["{#JMXOBJ}",NodesJoined]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Nodes join count.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','43ea840b621e4f2a8643ca38479eb73e','0','2','0'), ('35327','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes left','jmx["{#JMXOBJ}",NodesLeft]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Nodes left count.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0164664362e446209b4399081d807ca7','0','2','0'), ('35328','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Discovery reconnect, rate','jmx["{#JMXOBJ}",ReconnectCount]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Number of times node tries to (re)establish connection to another node per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e03329689c674ea997d55d11e1a0c2be','0','2','0'), ('35329','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: TotalProcessedMessages','jmx["{#JMXOBJ}",TotalProcessedMessages]','1m','31d','365d','0','0','','!msg/s','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The number of messages received per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e344575b799a4f69b79b45ef6590a649','0','2','0'), ('35330','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Discovery messages received, rate','jmx["{#JMXOBJ}",TotalReceivedMessages]','1m','31d','365d','0','0','','!msg/s','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The number of messages processed per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','adcf2c5981004c8da658122cc50a6518','0','2','0'), ('35331','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Locked keys','jmx["{#JMXOBJ}",LockedKeysNumber]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The number of keys locked on the node.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0b03ef7787684ab5abd99af4610adf59','0','2','0'), ('35332','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Transactions owner, current','jmx["{#JMXOBJ}",OwnerTransactionsNumber]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The number of active transactions for which this node is the initiator.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','446cbb708d354b2a9282e973d562527f','0','2','0'), ('35333','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Transactions committed, rate','jmx["{#JMXOBJ}",TransactionsCommittedNumber]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The number of transactions which were committed per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','21971cbf540c48df93fde079ce917a26','0','2','0'), ('35334','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Transactions holding lock, current','jmx["{#JMXOBJ}",TransactionsHoldingLockNumber]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The number of active transactions holding at least one key lock.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d8d3e05c6e7e4874b3149edb74774e6d','0','2','0'), ('35335','16','','10417','GridGain [{#JMXIGNITEINSTANCENAME}]: Transactions rolledback, rate','jmx["{#JMXOBJ}",TransactionsRolledBackNumber]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The number of transactions which were rollback per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2d1def1d4f414ce992cf5a6ff1bc4204','0','2','0'), ('35336','16','','10417','Cache group [{#JMXNAME}]: Backups','jmx["{#JMXOBJ}",Backups]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Count of backups configured for cache group.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d46bf088d33946a69a5b625566558994','0','2','0'), ('35337','16','','10417','Cache group [{#JMXNAME}]: Caches','jmx["{#JMXOBJ}",Caches]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'List of caches.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a535d161527b4821b717f114aaeb8b0b','0','2','0'), ('35338','16','','10417','Cache group [{#JMXNAME}]: Local node partitions, moving','jmx["{#JMXOBJ}",LocalNodeMovingPartitionsCount]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Count of partitions with state MOVING for this cache group located on this node.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0a09c18adfd5477098684c47927f967b','0','2','0'), ('35339','16','','10417','Cache group [{#JMXNAME}]: Local node partitions, owning','jmx["{#JMXOBJ}",LocalNodeOwningPartitionsCount]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Count of partitions with state OWNING for this cache group located on this node.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c2a38de3743549e0850e678d1f91e2de','0','2','0'), ('35340','16','','10417','Cache group [{#JMXNAME}]: Local node entries, renting','jmx["{#JMXOBJ}",LocalNodeRentingEntriesCount]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Count of entries remains to evict in RENTING partitions located on this node for this cache group.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','be9b2cbf210e4e27a5887d77f2dafaad','0','2','0'), ('35341','16','','10417','Cache group [{#JMXNAME}]: Local node partitions, renting','jmx["{#JMXOBJ}",LocalNodeRentingPartitionsCount]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Count of partitions with state RENTING for this cache group located on this node.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','582acb454ffa4b129f5786e814df234f','0','2','0'), ('35342','16','','10417','Cache group [{#JMXNAME}]: Partition copies, max','jmx["{#JMXOBJ}",MaximumNumberOfPartitionCopies]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Maximum number of partition copies for all partitions of this cache group.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e026169754954bbe85afcef2534b4d0e','0','2','0'), ('35343','16','','10417','Cache group [{#JMXNAME}]: Partition copies, min','jmx["{#JMXOBJ}",MinimumNumberOfPartitionCopies]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Minimum number of partition copies for all partitions of this cache group.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b93a9ff86a2048bfbf8743b7a1c5ec06','0','2','0'), ('35344','16','','10417','Cache group [{#JMXNAME}]: Partitions','jmx["{#JMXOBJ}",Partitions]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Count of partitions for cache group.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8dac4ccaad0f4736b2065e2f1200e3ff','0','2','0'), ('35345','16','','10417','Thread pool [{#JMXNAME}]: Pool size, core','jmx["{#JMXOBJ}",CorePoolSize]','1m','31d','365d','0','3','','!msg','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The core number of threads.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7d6ab6a7180c44859b933784fb565212','0','2','0'), ('35346','16','','10417','Thread pool [{#JMXNAME}]: Pool size, max','jmx["{#JMXOBJ}",MaximumPoolSize]','1m','31d','365d','0','3','','!msg','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The maximum allowed number of threads.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3ffebf40ed154a7eb7050e16d30f9f53','0','2','0'), ('35347','16','','10417','Thread pool [{#JMXNAME}]: Pool size','jmx["{#JMXOBJ}",PoolSize]','1m','31d','365d','0','3','','!msg','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Current number of threads in the pool.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1f7f5e0d19f6400fa8803eba2fb14f85','0','2','0'), ('35348','16','','10417','Thread pool [{#JMXNAME}]: Queue size','jmx["{#JMXOBJ}",QueueSize]','1m','31d','365d','0','3','','!msg','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Current size of the execution queue.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c4a5e348590341b29af96b57bf92240b','0','2','0'), ('35349','16','','10417','Cache group [{#JMXGROUP}]: Cache gets, rate','jmx["{#JMXOBJ}",CacheGets]','1m','31d','365d','0','0','','ops','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The number of gets to the cache per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6fb5dee0c7434b279eb21da7d54edacc','0','2','0'), ('35350','16','','10417','Cache group [{#JMXGROUP}]: Cache hits, pct','jmx["{#JMXOBJ}",CacheHitPercentage]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Percentage of successful hits.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','632a331fe886428fa7b2c8845a02b57a','0','2','0'), ('35351','16','','10417','Cache group [{#JMXGROUP}]: Cache misses, pct','jmx["{#JMXOBJ}",CacheMissPercentage]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'Percentage of accesses that failed to find anything.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','843b31df2e4d430082731b44e2653f13','0','2','0'), ('35352','16','','10417','Cache group [{#JMXGROUP}]: Cache puts, rate','jmx["{#JMXOBJ}",CachePuts]','1m','31d','365d','0','0','','ops','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The number of puts to the cache per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','96616d8c2b9c46b0bbd7350679476c36','0','2','0'), ('35353','16','','10417','Cache group [{#JMXGROUP}]: Cache removals, rate','jmx["{#JMXOBJ}",CacheRemovals]','1m','31d','365d','0','0','','ops','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The number of removals from the cache per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','308b3e27d35b439bbb2c1cf96f6d92fe','0','2','0'), ('35354','16','','10417','Cache group [{#JMXGROUP}]: Cache size','jmx["{#JMXOBJ}",CacheSize]','1m','31d','365d','0','3','','!keys','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The number of non-null values in the cache as a long value.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e4886d5b699e432c8e6bb47b23b9c314','0','2','0'), ('35355','16','','10417','Cache group [{#JMXGROUP}]: Cache transaction commits, rate','jmx["{#JMXOBJ}",CacheTxCommits]','1m','31d','365d','0','0','','!tps','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The number of transaction commits per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','304ff6af92c0473aab8216d16509d28f','0','2','0'), ('35356','16','','10417','Cache group [{#JMXGROUP}]: Cache transaction rollbacks, rate','jmx["{#JMXOBJ}",CacheTxRollbacks]','1m','31d','365d','0','0','','!tps','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The number of transaction rollback per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bd5b517d5a384c70a070658bc41734bf','0','2','0'), ('35357','16','','10417','Cache group [{#JMXGROUP}]: Cache heap entries','jmx["{#JMXOBJ}",HeapEntriesCount]','1m','31d','365d','0','3','','!keys','','',NULL,NULL,'','','0','{$GRIDGAIN.USER}','{$GRIDGAIN.PASSWORD}','','','2',NULL,'The number of entries in heap memory.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a0d3a73939564dc39267ccdca06d524b','0','2','0'), ('35358','20','get[1.3.6.1.2.1.1.4.0]','10418','Contact','cisco.asav.contact','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9371a5b8ca3445eaa6516044e60a2ec6','0','2','0'), ('35359','20','get[1.3.6.1.2.1.1.6.0]','10418','Location','cisco.asav.location','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The physical location of this node (e.g., `telephone closet, 3rd floor'').','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2d4a058787a141629a33ab98194055f2','0','2','0'), ('35360','20','get[1.3.6.1.2.1.1.1.0]','10418','System description','cisco.asav.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software. It is mandatory that this only contain printable ASCII characters.','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c2e63e282bcd4fd09a80f1be95c089d4','0','2','0'), ('35361','20','get[1.3.6.1.2.1.1.5.0]','10418','Host name','cisco.asav.name','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB An administratively-assigned name for this managed node. By convention, this is the node''s fully-qualified domain name.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d20d56dccd494060a4bc130f2951a610','0','2','0'), ('35362','20','get[1.3.6.1.2.1.1.3.0]','10418','Uptime','cisco.asav.uptime','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','526b1a118bab4c948af0935197a659f6','0','2','0'), ('35363','5','','10418','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'354','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','33e87e5fe2774f1fabb93553e782aaa0','0','2','0'), ('35364','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.8]','10418','CPU discovery','cisco.asav.cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of cpmCPUTotalTable, a table of CPU monitoring entries.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0469f5b40a77457f9447512ed2e75f5e','0','2','0'), ('35365','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2]','10418','Memory discovery','cisco.asav.memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','072c0dc4527c492592df91115f1621cb','0','2','0'), ('35366','20','discovery[{#CISCO.IF.NAME},1.3.6.1.2.1.31.1.1.1.1,{#CISCO.IF.STATUS.ADMIN},1.3.6.1.2.1.2.2.1.7,{#CISCO.IF.STATUS.OPER},1.3.6.1.2.1.2.2.1.8,{#CISCO.IF.DESC},1.3.6.1.2.1.31.1.1.1.18]','10418','Interface discovery','cisco.asav.net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Network interfaces discovery','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2ced96f9e3ff40de85530b9ef9e4585c','0','2','0'), ('35367','20','discovery[{#CISCO.ASAV.PHYS.DESC},1.3.6.1.2.1.47.1.1.1.1.2,{#CISCO.ASAV.PHYS.CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#CISCO.ASAV.PHYS.NAME},1.3.6.1.2.1.47.1.1.1.1.7]','10418','Physical entry discovery','cisco.asav.physical.entry.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Information about a particular physical entity.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','de837df7c2f84cae86a84c773d7a07dc','0','2','0'), ('35368','20','discovery[{#CISCO.CRAS.USER},1.3.6.1.4.1.9.9.392.1.3.21.1.1,{#CISCO.CRAS.INDEX},1.3.6.1.4.1.9.9.392.1.3.21.1.3]','10418','Session discovery','cisco.asav.session.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Remote access session discovery','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b49543c7150a4e258645b4b076b2454a','0','2','0'), ('35369','20','get[1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX}]','10418','CPU [{#SNMPINDEX}] Utilization','cisco.asav.cpu.util[{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-PROCESS-MIB The overall CPU busy percentage in the last 5 minute period. This object deprecates the object cpmCPUTotal5min and increases the value range to (0..100).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b2a6af9454a34ed3b8fa2e84ae801b69','0','2','0'), ('35370','20','get[1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX}]','10418','{#SNMPVALUE} Free memory','cisco.asav.memory.free[{#SNMPINDEX}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-MEMORY-POOL-MIB Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','983f90966701470fb713fdfae62f1146','0','2','0'), ('35371','20','get[1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX}]','10418','{#SNMPVALUE} Used memory','cisco.asav.memory.used[{#SNMPINDEX}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-MEMORY-POOL-MIB Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device. Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a34b4279d8ac40ec8f2d6577ebaa4280','0','2','0'), ('35372','15','','10418','{#SNMPVALUE} Memory utilization','cisco.asav.memory.util[{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//cisco.asav.memory.used[{#SNMPINDEX}])/(last(//cisco.asav.memory.free[{#SNMPINDEX}])+last(//cisco.asav.memory.used[{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d67342c8a8124b1b89ef5ec36684b2a7','0','2','0'), ('35373','20','get[1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}]','10418','{#CISCO.IF.NAME} Administrative status','cisco.asav.net.if.adminstatus[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'349','','','0','','','','','2',NULL,'MIB: IF-MIB The desired state of the interface. The testing(3) state indicates that no operational packets can be passed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c4be70b6d6934281ba1c78ef056c7d79','0','2','0'), ('35374','20','get[1.3.6.1.2.1.31.1.1.1.18.{#SNMPINDEX}]','10418','{#CISCO.IF.NAME} Interface description','cisco.asav.net.if.descr[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB A textual string containing information about the interface','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','17f768ffe6604c678e15bb2538cb8cc5','0','2','0'), ('35375','20','get[1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}]','10418','{#CISCO.IF.NAME} Link speed','cisco.asav.net.if.highspeed[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in bits per second','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','01c5f157fc6140149dec01f512babadd','0','2','0'), ('35376','20','get[1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX}]','10418','{#CISCO.IF.NAME} Incoming broadcast packets','cisco.asav.net.if.in.broadcastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a broadcast address at this sub-layer.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','263e253c378f4928ad5c5f6fd0ce1cbe','0','2','0'), ('35377','20','get[1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX}]','10418','{#CISCO.IF.NAME} Incoming multicast packets','cisco.asav.net.if.in.multicastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a multicast address at this sub-layer. For a MAC layer protocol, this includes both Group and Functional addresses.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9479f382e7e943e0aa560396d3a4db40','0','2','0'), ('35378','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10418','{#CISCO.IF.NAME} Incoming traffic','cisco.asav.net.if.in.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','443ce01bb9b04e69a936ec8fb9636720','0','2','0'), ('35379','20','get[1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX}]','10418','{#CISCO.IF.NAME} Incoming unicast packets','cisco.asav.net.if.in.ucastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were not addressed to a multicast or broadcast address at this sub-layer','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','900bf66a4a7f411f9d9ce231daa8d8a8','0','2','0'), ('35380','15','','10418','{#CISCO.IF.NAME} Incoming utilization','cisco.asav.net.if.in.util[{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//cisco.asav.net.if.in.traffic[{#SNMPINDEX}]) * (last(//cisco.asav.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//cisco.asav.net.if.highspeed[{#SNMPINDEX}]) + (last(//cisco.asav.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d7564be184564d06abb1f7a718bdf134','0','2','0'), ('35381','20','get[1.3.6.1.2.1.31.1.1.1.1.{#SNMPINDEX}]','10418','{#CISCO.IF.NAME} Interface name','cisco.asav.net.if.name[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-PORT-MIB Descriptive name that identifies this port.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ceb3a35e289043668d0087255de5c79b','0','2','0'), ('35382','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10418','{#CISCO.IF.NAME} Operational status','cisco.asav.net.if.operstatus[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'350','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. The testing(3) state indicates that no operational packets can be passed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8d51a019f3634b079c2115ccb063840c','0','2','0'), ('35383','20','get[1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX}]','10418','{#CISCO.IF.NAME} Outgoing broadcast packets','cisco.asav.net.if.out.broadcastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were addressed to a broadcast address at this sub-layer, including those that were discarded or not sent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8a97ed7804f042c7b6767f72bcf9a504','0','2','0'), ('35384','20','get[1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX}]','10418','{#CISCO.IF.NAME} Outgoing multicast packets','cisco.asav.net.if.out.multicastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were addressed to a multicast address at this sub-layer, including those that were discarded or not sent. For a MAC layer protocol, this includes both Group and Functional addresses.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c0918a1acaa049e786a356c25c7dd654','0','2','0'), ('35385','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10418','{#CISCO.IF.NAME} Outgoing traffic','cisco.asav.net.if.out.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8e9c4d99c0d649e79e2f7f64d91789bf','0','2','0'), ('35386','20','get[1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX}]','10418','{#CISCO.IF.NAME} Outgoing unicast packets','cisco.asav.net.if.out.ucastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were not addressed to a multicast or broadcast address at this sub-layer, including those that were discarded or not sent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1439162918d842ab92f4fca35c32279f','0','2','0'), ('35387','15','','10418','{#CISCO.IF.NAME} Outgoing utilization','cisco.asav.net.if.out.util[{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//cisco.asav.net.if.out.traffic[{#SNMPINDEX}]) * (last(//cisco.asav.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//cisco.asav.net.if.highspeed[{#SNMPINDEX}]) + (last(//cisco.asav.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','559d5ddae7744b19b32993174ef06918','0','2','0'), ('35388','20','get[1.3.6.1.2.1.47.1.1.1.1.5.{#SNMPINDEX}]','10418','{#CISCO.ASAV.PHYS.NAME} Physical class','cisco.asav.phys.class[{#SNMPINDEX}]','1h','31d','365d','0','3','','','','',NULL,'353','','','0','','','','','2',NULL,'MIB: ENTITY-MIB An indication of the general hardware type of the physical entity. An agent should set this object to the standard enumeration value that most accurately indicates the general class of the physical entity, or the primary class if there is more than one entity. If no appropriate standard registration identifier exists for this physical entity, then the value ''other(1)'' is returned. If the value is unknown by this agent, then the value ''unknown(2)'' is returned.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3ac03ebbab6e4868887715f74443011c','0','2','0'), ('35389','20','get[1.3.6.1.2.1.47.1.1.1.1.2.{#SNMPINDEX}]','10418','{#CISCO.ASAV.PHYS.NAME} Physical description','cisco.asav.phys.description[{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB A textual description of physical entity. This object should contain a string that identifies the manufacturer''s name for the physical entity, and should be set to a distinct value for each version or model of the physical entity.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a63fe0420f2e446ca10094fbf04ee4a8','0','2','0'), ('35390','20','get[1.3.6.1.2.1.47.1.1.1.1.8.{#SNMPINDEX}]','10418','{#CISCO.ASAV.PHYS.NAME} Hardware revision','cisco.asav.phys.hw[{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB The vendor-specific hardware revision string for the physical entity. The preferred value is the hardware revision identifier actually printed on the component itself (if present). Note that if revision information is stored internally in a non-printable (e.g., binary) format, then the agent must convert such information to a printable format, in an implementation-specific manner. If no specific hardware revision string is associated with the physical component, or if this information is unknown to the agent, then this object will contain a zero-length string.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','862f2607838647b3b173d113e531c931','0','2','0'), ('35391','20','get[1.3.6.1.2.1.47.1.1.1.1.12.{#SNMPINDEX}]','10418','{#CISCO.ASAV.PHYS.NAME} Manufacturer name','cisco.asav.phys.mfgname[{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB The name of the manufacturer of this physical component. The preferred value is the manufacturer name string actually printed on the component itself (if present). Note that comparisons between instances of the entPhysicalModelName, entPhysicalFirmwareRev, entPhysicalSoftwareRev, and the entPhysicalSerialNum objects, are only meaningful amongst entPhysicalEntries with the same value of entPhysicalMfgName. If the manufacturer name string associated with the physical component is unknown to the agent, then this object will contain a zero-length string.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d64c4765f78847cc8071913c5454f433','0','2','0'), ('35392','20','get[1.3.6.1.2.1.47.1.1.1.1.13.{#SNMPINDEX}]','10418','{#CISCO.ASAV.PHYS.NAME} Model name','cisco.asav.phys.model[{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB The vendor-specific model name identifier string associated with this physical component. The preferred value is the customer-visible part number, which may be printed on the component itself. If the model name string associated with the physical component is unknown to the agent, then this object will contain a zero-length string.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','73739a08da634cd09b857a7512166d7b','0','2','0'), ('35393','20','get[1.3.6.1.2.1.47.1.1.1.1.7.{#SNMPINDEX}]','10418','{#CISCO.ASAV.PHYS.NAME} Physical name','cisco.asav.phys.name[{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB The textual name of the physical entity. The value of this object should be the name of the component as assigned by the local device and should be suitable for use in commands entered at the device''s `console''. This might be a text name (e.g., `console'') or a simple component number (e.g., port or module number, such as `1''), depending on the physical component naming syntax of the device. If there is no local name, or if this object is otherwise not applicable, then this object contains a zero-length string. Note that the value of entPhysicalName for two physical entities will be the same in the event that the console interface does not distinguish between them, e.g., slot-1 and the card in slot-1.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','21da0a63b5344b099ab21932a4a65dc6','0','2','0'), ('35394','20','get[1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX}]','10418','{#CISCO.ASAV.PHYS.NAME} Serial number','cisco.asav.phys.sn[{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB The vendor-specific serial number string for the physical entity. The preferred value is the serial number string actually printed on the component itself (if present). On the first instantiation of an physical entity, the value of entPhysicalSerialNum associated with that entity is set to the correct vendor-assigned serial number, if this information is available to the agent. If a serial number is unknown or non-existent, the entPhysicalSerialNum will be set to a zero-length string instead.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9962cc7467c14221bee66a2f17aba12b','0','2','0'), ('35395','20','get[1.3.6.1.2.1.47.1.1.1.1.10.{#SNMPINDEX}]','10418','{#CISCO.ASAV.PHYS.NAME} Software revision','cisco.asav.phys.sw[{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB The vendor-specific software revision string for the physical entity. Note that if revision information is stored internally in a non-printable (e.g., binary) format, then the agent must convert such information to a printable format, in an implementation-specific manner. If no specific software programs are associated with the physical component, or if this information is unknown to the agent, then this object will contain a zero-length string.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','698a7613f08048b48d7aad4ad5285562','0','2','0'), ('35396','20','get[1.3.6.1.4.1.9.9.392.1.3.21.1.10.{#SNMPINDEX}]','10418','{#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] ISP address','cisco.asav.session.addr.isp[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB The IP address of the peer (client) assigned by the ISP. This is the address of the client device in the public network.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ff7de8cbf36643e3888451757b802873','0','2','0'), ('35397','20','get[1.3.6.1.4.1.9.9.392.1.3.21.1.8.{#SNMPINDEX}]','10418','{#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Local address','cisco.asav.session.addr.local[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB The IP address assigned to the client of this session in the private network assigned by the managed entity.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3071310f4f0e4c14bcf47d07a05568cc','0','2','0'), ('35398','20','get[1.3.6.1.4.1.9.9.392.1.3.21.1.14.{#SNMPINDEX}]','10418','{#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Algorithm validate packets','cisco.asav.session.authen.algorithm[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'347','','','0','','','','','2',NULL,'MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB The algorithm used by this remote access session to to validate packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','47c84fde7b47415d96d461c28da50526','0','2','0'), ('35399','20','get[1.3.6.1.4.1.9.9.392.1.3.21.1.4.{#SNMPINDEX}]','10418','{#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Authenticate method','cisco.asav.session.authen.method[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'352','','','0','','','','','2',NULL,'MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB The method used to authenticate the user prior to establishing the session.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','901b8473e8054e929a55dd3e5d507d5d','0','2','0'), ('35400','20','get[1.3.6.1.4.1.9.9.392.1.3.21.1.5.{#SNMPINDEX}]','10418','{#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Authorize method','cisco.asav.session.author.method[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'352','','','0','','','','','2',NULL,'MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB The method used to authorize the user prior to establishing the session.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','452348005b1c4b7db194afcf3c95473d','0','2','0'), ('35401','20','get[1.3.6.1.4.1.9.9.392.1.3.21.1.6.{#SNMPINDEX}]','10418','{#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Session duration','cisco.asav.session.duration[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB The number of seconds elapsed since this session was established.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c25050519610453baf3e69042fe77cf0','0','2','0'), ('35402','20','get[1.3.6.1.4.1.9.9.392.1.3.21.1.13.{#SNMPINDEX}]','10418','{#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Encryption algorithm','cisco.asav.session.encryption[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'348','','','0','','','','','2',NULL,'MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB The algorithm used by this remote access session to encrypt its payload.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','63ea7737e7534608b60744ec3b82ffae','0','2','0'), ('35403','20','get[1.3.6.1.4.1.9.9.392.1.3.21.1.35.{#SNMPINDEX}]','10418','{#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Incoming traffic','cisco.asav.session.in.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB The rate of octets received by this Remote Access Session. This value is accumulated BEFORE determining whether or not the packet should be decompressed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c7a05da2f7d84743851e7d628d1e9838','0','2','0'), ('35404','20','get[1.3.6.1.4.1.9.9.392.1.3.21.1.36.{#SNMPINDEX}]','10418','{#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Outgoing traffic','cisco.asav.session.out.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB The rate of octets transmitted by this Remote Access Session. This value is accumulated AFTER determining whether or not the packet should be compressed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c71e07de9083472a982a827061496d5a','0','2','0'), ('35405','20','get[1.3.6.1.4.1.9.9.392.1.3.21.1.11.{#SNMPINDEX}]','10418','{#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Session protocol','cisco.asav.session.protocol[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'351','','','0','','','','','2',NULL,'MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB The protocol underlying this remote access session.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','de873aa34ad64f3d91e11d6999950692','0','2','0'), ('35406','20','get[1.3.6.1.2.1.1.4.0]','10419','Contact','bigip.contact','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','907424caaf7c4b11b7a567db84ea1e17','0','2','0'), ('35407','20','get[1.3.6.1.4.1.3375.2.1.1.2.12.3.0]','10419','TCP connections, CLOSE-WAIT/LAST-ACK','bigip.tcp.close_wait','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The number of current TCP connections in CLOSE-WAIT/LAST-ACK.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','78d6c13d575a41a8b160bd4e2c0bea7b','0','2','0'), ('35408','20','get[1.3.6.1.4.1.3375.2.1.6.6.0]','10419','Uptime','bigip.uptime','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The system up time in 1/100 seconds since boot.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','efb83b0cb4864b249ecf61b2f81ec468','0','2','0'), ('35409','20','get[1.3.6.1.4.1.3375.2.1.1.2.13.2.0]','10419','Open UDP connections','bigip.udp.open','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The number of current open UDP connections.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','843e855fb10f4cb0be81953dd8dbb87e','0','2','0'), ('35410','20','get[1.3.6.1.4.1.3375.2.1.1.2.12.5.0]','10419','TCP connections, TIME-WAIT','bigip.tcp.time_wait','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The number of current TCP connections in TIME-WAIT.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bd3982fd369142878ffb9530656556e3','0','2','0'), ('35411','20','get[1.3.6.1.4.1.3375.2.1.1.2.12.2.0]','10419','Open TCP connections','bigip.tcp.open','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The number of current open TCP connections.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b58bae7e2e4f403ba7bce846ccf5228e','0','2','0'), ('35412','20','get[1.3.6.1.4.1.3375.2.1.1.2.12.20.0]','10419','TCP connections, FIN-WAIT-2','bigip.tcp.fin2_wait','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The number of current TCP connections in FIN-WAIT-2.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','69576083e02c486998512c58ab2a6371','0','2','0'), ('35413','20','get[1.3.6.1.4.1.3375.2.1.1.2.12.4.0]','10419','TCP connections, FIN-WAIT-1/CLOSING','bigip.tcp.fin1_wait','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The number of current TCP connections in FIN-WAIT-1/CLOSING.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e28c1bfcd63e4a5c8394680886395669','0','2','0'), ('35414','20','get[1.3.6.1.4.1.3375.2.1.3.3.3.0]','10419','Chassis serial number','bigip.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: F5-BIGIP-SYSTEM-MIB Serial number','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a80409ff52bf4fe183a68ed257279db5','0','2','0'), ('35415','20','get[1.3.6.1.2.1.1.6.0]','10419','Location','bigip.location','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The physical location of this node (e.g., `telephone closet, 3rd floor'').','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8ce387e2d78e42bfa6180b4b22096468','0','2','0'), ('35416','20','get[1.3.6.1.4.1.3375.2.1.4.2.0]','10419','Product version','bigip.product.version','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The product version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b670cf1b43d84b8784acfeaca1f01320','0','2','0'), ('35417','20','get[1.3.6.1.4.1.3375.2.1.4.1.0]','10419','Product name','bigip.product.name','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The product name.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dd91be3044a2465781af744dc45dd06f','0','2','0'), ('35418','20','get[1.3.6.1.4.1.3375.2.1.4.4.0]','10419','Product edition','bigip.product.edition','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The product edition.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5b3c2a650f474a6da05262dc5b3634a9','0','2','0'), ('35419','20','get[1.3.6.1.4.1.3375.2.1.4.5.0]','10419','Product build date','bigip.product.date','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The product build date.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','065a6b42397e40c3874cf4176bd0fa6b','0','2','0'), ('35420','20','get[1.3.6.1.4.1.3375.2.1.4.3.0]','10419','Product build','bigip.product.build','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The product build number.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3d7299dcbfee4b4a8b39bbf8daa4a077','0','2','0'), ('35421','20','get[1.3.6.1.2.1.1.5.0]','10419','Host name','bigip.name','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB An administratively-assigned name for this managed node. By convention, this is the node''s fully-qualified domain name.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','97d896e7b8ed422caf9c4ebf053bb8d9','0','2','0'), ('35422','20','get[1.3.6.1.2.1.1.1.0]','10419','Hardware model name','bigip.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software. It is mandatory that this only contain printable ASCII characters.','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d9bf23e66ae347eb8f6f58867cdc3ca7','0','2','0'), ('35423','5','','10419','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'358','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c91416602a9c451ca0eb959073f65fb0','0','2','0'), ('35424','20','discovery[{#TEMP.INDEX},1.3.6.1.4.1.3375.2.1.3.2.4.2.1.1,{#SLOT.INDEX},1.3.6.1.4.1.3375.2.1.3.2.4.2.1.4,{#TEMP.LOCATION},1.3.6.1.4.1.3375.2.1.3.2.4.2.1.3]','10419','Blade temperature discovery','bigip.blade.temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Containing information of blade temperature of the system','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9368bf7cbf0742e5af8e0b1200200a15','0','2','0'), ('35425','20','discovery[{#VOLT.INDEX},1.3.6.1.4.1.3375.2.1.3.2.5.2.1.1]','10419','Blade voltage discovery','bigip.blade.voltage.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A table containing information of blade voltage of the system.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','099e4de8464e49aca8e0d24b4276c804','0','2','0'), ('35426','20','discovery[{#CERT.NAME},1.3.6.1.4.1.3375.2.1.15.1.2.1.1]','10419','Certificate discovery','bigip.cert.discovery','1d','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A table containing certificate configuration.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dfdcfd160cfe4e798f29576280bf1627','0','2','0'), ('35427','20','discovery[{#FAN.INDEX},1.3.6.1.4.1.3375.2.1.3.2.1.2.1.1]','10419','Chassis fan discovery','bigip.chassis.fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A table containing information of chassis fan status of the system','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1bab90f9f015432c817cabebb98453af','0','2','0'), ('35428','20','discovery[{#POWER.INDEX},1.3.6.1.4.1.3375.2.1.3.2.2.2.1.1]','10419','Chassis power supply discovery','bigip.chassis.power.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A table containing information of chassis power supply status of the system.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ee07355820ae4281ba5c6b4640a9fcc4','0','2','0'), ('35429','20','discovery[{#TEMP.INDEX},1.3.6.1.4.1.3375.2.1.3.2.3.2.1.1]','10419','Chassis temperature discovery','bigip.chassis.temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A table containing information of chassis temperature of the system','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','795b91aa746b43fdb8171cd30aa249ee','0','2','0'), ('35430','20','discovery[{#HOST.ID},1.3.6.1.4.1.3375.2.1.7.5.2.1.1,{#CPU.ID},1.3.6.1.4.1.3375.2.1.7.5.2.1.3]','10419','CPU discovery','bigip.cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A table containing entries of system CPU usage information for a system.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1f27aaedf30243c2a704bf6350490d8c','0','2','0'), ('35431','20','discovery[{#CPU.SENSOR.INDEX},1.3.6.1.4.1.3375.2.1.3.6.2.1.1,{#CPU.SENSOR.SLOT},1.3.6.1.4.1.3375.2.1.3.6.2.1.5,{#CPU.SENSOR.NAME},1.3.6.1.4.1.3375.2.1.3.6.2.1.4]','10419','CPU sensor discovery','bigip.cpu.sensor.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A table containing information of CPU sensor status on the system.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a0bdcabc8c7c4a349a9c4711be33c417','0','2','0'), ('35432','20','discovery[{#PART.NAME},1.3.6.1.4.1.3375.2.1.7.3.2.1.1]','10419','File system discovery','bigip.disktable.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A table containing entries of system disk usage information.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','26027ab56e7841d1b73747935a5e6157','0','2','0'), ('35433','20','discovery[{#HOST.ID},1.3.6.1.4.1.3375.2.1.7.4.2.1.1]','10419','Memory discovery','bigip.memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Containing system statistics information of the memory usage','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8aeb7920d1fe4ba4884f92e45e711228','0','2','0'), ('35434','20','discovery[{#MODULE.NAME},1.3.6.1.4.1.3375.2.1.11.1.2.1.1]','10419','Module discovery','bigip.module.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Resource allocation information about modules on the system','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6fa254ddaea74df1928e3582b34c292d','0','2','0'), ('35435','20','discovery[{#IF.NAME},1.3.6.1.4.1.3375.2.1.2.4.4.3.1.1]','10419','Network interface discovery','bigip.net.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A table containing statistic information of the interfaces on the device.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','053063ca377e4438bfa93d08a07adbe9','0','2','0'), ('35436','20','discovery[{#NODE.NAME},1.3.6.1.4.1.3375.2.2.4.2.3.1.20]','10419','Node discovery','bigip.node.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A table containing statistic information of node addresses.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4e93191505d148e98b915ed38a681a03','0','2','0'), ('35437','20','discovery[{#POOL.NAME},1.3.6.1.4.1.3375.2.2.5.2.3.1.1]','10419','Pool discovery','bigip.pool.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A table containing statistic information of pools.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','45e61df153b94d4bad42503e9221e44c','0','2','0'), ('35438','20','discovery[{#VSERVER.NAME},1.3.6.1.4.1.3375.2.2.10.2.3.1.1]','10419','Virtual server discovery','bigip.virtual_server.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A table containing information of virtual servers.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6bb0a20248ba473b91a9b4a4261229a7','0','2','0'), ('35439','20','get[1.3.6.1.4.1.3375.2.1.3.2.4.2.1.2.{#SNMPINDEX}]','10419','Sensor [{#SLOT.INDEX}:{#TEMP.INDEX}]: Temperature','bigip.blade.temp.value[{#SLOT.INDEX},{#TEMP.INDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB Location: {#TEMP.LOCATION} The blade temperature (in Celsius) of the indexed sensor on the system., This is only supported for the platform where the sensor data is available.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6e0239a64c2c43ee94e225efcf970ef1','0','2','0'), ('35440','20','get[1.3.6.1.4.1.3375.2.1.3.2.5.2.1.3.{#SNMPINDEX}]','10419','Voltage [{#VOLT.INDEX}]: Slot','bigip.blade.voltage.slot[{#VOLT.INDEX}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The chassis slot number, if applicable.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6f7cf365f10440b18a08d63880356401','0','2','0'), ('35441','20','get[1.3.6.1.4.1.3375.2.1.3.2.4.2.1.2.{#SNMPINDEX}]','10419','Voltage [{#VOLT.INDEX}]: Value','bigip.blade.voltage.value[{#VOLT.INDEX}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The blade voltage (in V) of the indexed sensor on the system., This is only supported for the platform where the sensor data is available.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1c0bf38bb0d3473cae285704ccd3ee0b','0','2','0'), ('35442','20','get[1.3.6.1.4.1.3375.2.1.15.1.2.1.5.{#SNMPINDEX}]','10419','Certificate [{#CERT.NAME}]: Expiration date','bigip.cert.expiration.date[{#CERT.NAME}]','12h','31d','0','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The expiration date of the certificate in unix time.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d27c1c13d6984728aebacdcf26777025','0','2','0'), ('35443','20','get[1.3.6.1.4.1.3375.2.1.3.2.1.2.1.3.{#SNMPINDEX}]','10419','FAN [{#FAN.INDEX}]: Speed','bigip.chassis.fan.speed[{#FAN.INDEX}]','5m','31d','365d','0','3','','!rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The actual speed of the indexed chassis fan on the system. This is only supported for the platform where the actual fan speed data is available. ''0'' means fan speed is unavailable while the associated chassis status is good.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','973e0443ecc84630afc327d1917d9e57','0','2','0'), ('35444','20','get[1.3.6.1.4.1.3375.2.1.3.2.1.2.1.2.{#SNMPINDEX}]','10419','FAN [{#FAN.INDEX}]: Status','bigip.chassis.fan.status[{#FAN.INDEX}]','5m','31d','365d','0','3','','','','',NULL,'355','','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The status of the indexed chassis fan on the system., This is only supported for the platform where the sensor data is available. Possible values: 0 - bad, 1 - good, 2 - notpresent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','13b1890ae83547d482c9130ea0ccf876','0','2','0'), ('35445','20','get[1.3.6.1.4.1.3375.2.1.3.2.2.2.1.2.{#SNMPINDEX}]','10419','Power supply [{#POWER.INDEX}]: Status','bigip.chassis.power.status[{#POWER.INDEX}]','5m','31d','365d','0','3','','','','',NULL,'355','','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The status of the indexed power supply on the system., This is only supported for the platform where the sensor data is available. Possible values: 0 - bad, 1 - good, 2 - notpresent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d72e501362eb4e70bb324d42d304b7a8','0','2','0'), ('35446','20','get[1.3.6.1.4.1.3375.2.1.3.2.3.2.1.2.{#SNMPINDEX}]','10419','Sensor [{#TEMP.INDEX}]: Temperature','bigip.chassis.temp.value[{#TEMP.INDEX}]','5m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The chassis temperature (in Celsius) of the indexed sensor on the system., This is only supported for the platform where the sensor data is available.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e49355bacceb473eb9f548d044a9742b','0','2','0'), ('35447','20','get[1.3.6.1.4.1.3375.2.1.7.5.2.1.23.{#SNMPINDEX}]','10419','Host [{#HOST.ID}] CPU{#CPU.ID}: Idle, avg 1m','bigip.cpu.idle.1m[{#HOST.ID},{#CPU.ID}]','5m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The average time spent by the specified processor doing nothing for the associated host in the last one minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7cf45a392cd7465988eb527de7b3ad63','0','2','0'), ('35448','20','get[1.3.6.1.4.1.3375.2.1.7.5.2.1.17.{#SNMPINDEX}]','10419','Host [{#HOST.ID}] CPU{#CPU.ID}: Soft IRQ, avg 5s','bigip.cpu.spftirq.5s[{#HOST.ID},{#CPU.ID}]','5m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The average time spent by the specified processor servicing soft interrupts for the associated host in the last five seconds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8a6c086c524c4f5c93e66f9f453ed767','0','2','0'), ('35449','20','get[1.3.6.1.4.1.3375.2.1.7.5.2.1.28.{#SNMPINDEX}]','10419','Host [{#HOST.ID}] CPU{#CPU.ID}: User, avg 5m','bigip.cpu.user.5m[{#HOST.ID},{#CPU.ID}]','5m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The average time spent by the specified processor in user context for the associated host in the last five minutes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7344ae137ef94f80a99865057c105d96','0','2','0'), ('35450','20','get[1.3.6.1.4.1.3375.2.1.7.5.2.1.20.{#SNMPINDEX}]','10419','Host [{#HOST.ID}] CPU{#CPU.ID}: User, avg 1m','bigip.cpu.user.1m[{#HOST.ID},{#CPU.ID}]','5m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The average time spent by the specified processor in user context for the associated host in the last one minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','beaece1c9eaa41768e7c05993d2f4b3b','0','2','0'), ('35451','20','get[1.3.6.1.4.1.3375.2.1.7.5.2.1.19.{#SNMPINDEX}]','10419','Host [{#HOST.ID}] CPU{#CPU.ID}: Usage ratio, avg 5s','bigip.cpu.usageratio.5s[{#HOST.ID},{#CPU.ID}]','5m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB This is average usage ratio of CPU for the associated host in the last five seconds. It is calculated by (sum of deltas for user, niced, system)/(sum of deltas of user, niced, system, idle, irq, softirq, and iowait), where each delta is the difference for each stat over the last 5-second interval; user:sysMultiHostCpuUser5s; niced:sysMultiHostCpuNiced5s; stolen:sysMultiHostCpuStolen5s; system:sysMultiHostCpuSystem5s; idle:sysMultiHostCpuIdle5s; irq:sysMultiHostCpuIrq5s; iowait:sysMultiHostCpuIowait5s','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e0e3bbd21d3e434c80e7bb1969388b27','0','2','0'), ('35452','20','get[1.3.6.1.4.1.3375.2.1.7.5.2.1.35.{#SNMPINDEX}]','10419','Host [{#HOST.ID}] CPU{#CPU.ID}: Usage ratio, avg 5m','bigip.cpu.usageratio.5m[{#HOST.ID},{#CPU.ID}]','5m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB This is average usage ratio of CPU for the associated host in the last five minutes. It is calculated by (sum of deltas for user, niced, system)/(sum of deltas of user, niced, system, idle, irq, softirq, and iowait), where each delta is the difference for each stat over the last 5-second interval; user:sysMultiHostCpuUser5m; niced:sysMultiHostCpuNiced5m; stolen:sysMultiHostCpuStolen5m; system:sysMultiHostCpuSystem5m; idle:sysMultiHostCpuIdle5m; irq:sysMultiHostCpuIrq5m; iowait:sysMultiHostCpuIowait5m','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','46e78b7f00904778abf5160fff93670a','0','2','0'), ('35453','20','get[1.3.6.1.4.1.3375.2.1.7.5.2.1.27.{#SNMPINDEX}]','10419','Host [{#HOST.ID}] CPU{#CPU.ID}: Usage ratio, avg 1m','bigip.cpu.usageratio.1m[{#HOST.ID},{#CPU.ID}]','5m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB This is average usage ratio of CPU for the associated host in the last one minute. It is calculated by (sum of deltas for user, niced, system)/(sum of deltas of user, niced, system, idle, irq, softirq, and iowait), where each delta is the difference for each stat over the last 5-second interval; user:sysMultiHostCpuUser1m; niced:sysMultiHostCpuNiced1m; stolen:sysMultiHostCpuStolen1m; system:sysMultiHostCpuSystem1m; idle:sysMultiHostCpuIdle1m; irq:sysMultiHostCpuIrq1m; iowait:sysMultiHostCpuIowait1m','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e8f3b63e951d4de0b845647bcdd1524f','0','2','0'), ('35454','20','get[1.3.6.1.4.1.3375.2.1.7.5.2.1.14.{#SNMPINDEX}]','10419','Host [{#HOST.ID}] CPU{#CPU.ID}: System, avg 5s','bigip.cpu.system.5s[{#HOST.ID},{#CPU.ID}]','5m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The average time spent by the specified processor servicing system calls for the associated host in the last five seconds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8b1bd4e936c149cfa44d8cf5d88bee4b','0','2','0'), ('35455','20','get[1.3.6.1.4.1.3375.2.1.7.5.2.1.30.{#SNMPINDEX}]','10419','Host [{#HOST.ID}] CPU{#CPU.ID}: System, avg 5m','bigip.cpu.system.5m[{#HOST.ID},{#CPU.ID}]','5m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The average time spent by the specified processor servicing system calls for the associated host in the last five minutes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9dc919dcc789473db23f989943f9a759','0','2','0'), ('35456','20','get[1.3.6.1.4.1.3375.2.1.7.5.2.1.22.{#SNMPINDEX}]','10419','Host [{#HOST.ID}] CPU{#CPU.ID}: System, avg 1m','bigip.cpu.system.1m[{#HOST.ID},{#CPU.ID}]','5m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The average time spent by the specified processor servicing system calls for the associated host in the last one minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','20a60cec7a50457a9c6c5a5e318b53e2','0','2','0'), ('35457','20','get[1.3.6.1.4.1.3375.2.1.7.5.2.1.39.{#SNMPINDEX}]','10419','Host [{#HOST.ID}] CPU{#CPU.ID}: Stolen, avg 5m','bigip.cpu.stolen.5m[{#HOST.ID},{#CPU.ID}]','5m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The average time ''stolen'' from the specified processor for the associated host in the last five minutes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c229331551284955befbed59fedae445','0','2','0'), ('35458','20','get[1.3.6.1.4.1.3375.2.1.7.5.2.1.37.{#SNMPINDEX}]','10419','Host [{#HOST.ID}] CPU{#CPU.ID}: Stolen, avg 1s)','bigip.cpu.stolen.1s[{#HOST.ID},{#CPU.ID}]','5m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The average time ''stolen'' from the specified processor for the associated host in the last five seconds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','757178b5d85041959609de5d38d93f20','0','2','0'), ('35459','20','get[1.3.6.1.4.1.3375.2.1.7.5.2.1.38.{#SNMPINDEX}]','10419','Host [{#HOST.ID}] CPU{#CPU.ID}: Stolen, avg 1m','bigip.cpu.stolen.1m[{#HOST.ID},{#CPU.ID}]','5m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The average time ''stolen'' from the specified processor for the associated host in the last one minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','62e59d3a63014976a6c052ef259dbbc1','0','2','0'), ('35460','20','get[1.3.6.1.4.1.3375.2.1.7.5.2.1.33.{#SNMPINDEX}]','10419','Host [{#HOST.ID}] CPU{#CPU.ID}: Soft IRQ, avg 5m','bigip.cpu.spftirq.5m[{#HOST.ID},{#CPU.ID}]','5m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The average time spent by the specified processor servicing soft interrupts for the associated host in the last five minutes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','56f459510e444326bba84ab12c4c232c','0','2','0'), ('35461','20','get[1.3.6.1.4.1.3375.2.1.7.5.2.1.31.{#SNMPINDEX}]','10419','Host [{#HOST.ID}] CPU{#CPU.ID}: Idle, avg 5m','bigip.cpu.idle.5m[{#HOST.ID},{#CPU.ID}]','5m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The average time spent by the specified processor doing nothing for the associated host in the last five minutes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','12acd2da83b04353aca2bd3cff842c97','0','2','0'), ('35462','20','get[1.3.6.1.4.1.3375.2.1.7.5.2.1.25.{#SNMPINDEX}]','10419','Host [{#HOST.ID}] CPU{#CPU.ID}: Soft IRQ, avg 1m','bigip.cpu.spftirq.1m[{#HOST.ID},{#CPU.ID}]','5m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The average time spent by the specified processor servicing soft interrupts for the associated host in the last one minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f2b1962e10b04dc28a124b91b7e9a235','0','2','0'), ('35463','20','get[1.3.6.1.4.1.3375.2.1.7.5.2.1.13.{#SNMPINDEX}]','10419','Host [{#HOST.ID}] CPU{#CPU.ID}: Nice, avg 5s','bigip.cpu.nice.5s[{#HOST.ID},{#CPU.ID}]','5m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The average time spent by the specified processor running niced processes for the associated host in the last five seconds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0046e43000b7477ea410970884829e5c','0','2','0'), ('35464','20','get[1.3.6.1.4.1.3375.2.1.7.5.2.1.29.{#SNMPINDEX}]','10419','Host [{#HOST.ID}] CPU{#CPU.ID}: Nice, avg 5m','bigip.cpu.nice.5m[{#HOST.ID},{#CPU.ID}]','5m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The average time spent by the specified processor running niced processes for the associated host in the last five minutes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bf51a4638db443a083ec19b934a6a915','0','2','0'), ('35465','20','get[1.3.6.1.4.1.3375.2.1.7.5.2.1.21.{#SNMPINDEX}]','10419','Host [{#HOST.ID}] CPU{#CPU.ID}: Nice, avg 1m','bigip.cpu.nice.1m[{#HOST.ID},{#CPU.ID}]','5m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The average time spent by the specified processor running niced processes for the associated host in the last one minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b74f502d97f54041a4c129f5993e0967','0','2','0'), ('35466','20','get[1.3.6.1.4.1.3375.2.1.7.5.2.1.16.{#SNMPINDEX}]','10419','Host [{#HOST.ID}] CPU{#CPU.ID}: IRQ, avg 5s','bigip.cpu.irq.5s[{#HOST.ID},{#CPU.ID}]','5m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The average time spent by the specified processor servicing hardware interrupts for the associated host in the last five seconds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7bc53c5f9a7148759d426e8e5fd7f358','0','2','0'), ('35467','20','get[1.3.6.1.4.1.3375.2.1.7.5.2.1.32.{#SNMPINDEX}]','10419','Host [{#HOST.ID}] CPU{#CPU.ID}: IRQ, avg 5m','bigip.cpu.irq.5m[{#HOST.ID},{#CPU.ID}]','5m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The average time spent by the specified processor servicing hardware interrupts for the associated host in the last five minutes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f3d8ac2412ee4f0b88f264e590e278cb','0','2','0'), ('35468','20','get[1.3.6.1.4.1.3375.2.1.7.5.2.1.24.{#SNMPINDEX}]','10419','Host [{#HOST.ID}] CPU{#CPU.ID}: IRQ, avg 1m','bigip.cpu.irq.1m[{#HOST.ID},{#CPU.ID}]','5m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The average time spent by the specified processor servicing hardware interrupts for the associated host in the last one minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9f0f6dabac314744809a60161592a89f','0','2','0'), ('35469','20','get[1.3.6.1.4.1.3375.2.1.7.5.2.1.18.{#SNMPINDEX}]','10419','Host [{#HOST.ID}] CPU{#CPU.ID}: IO wait, avg 5s','bigip.cpu.iowait.5s[{#HOST.ID},{#CPU.ID}]','5m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The average time spent by the specified processor waiting for external I/O to complete for the associated host in the last five seconds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b4715714c727483fb3ca6004a829ac46','0','2','0'), ('35470','20','get[1.3.6.1.4.1.3375.2.1.7.5.2.1.34.{#SNMPINDEX}]','10419','Host [{#HOST.ID}] CPU{#CPU.ID}: IO wait, avg 5m','bigip.cpu.iowait.5m[{#HOST.ID},{#CPU.ID}]','5m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The average time spent by the specified processor waiting for external I/O to complete for the associated host in the last five minutes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6144e3ca25ac4f998559b860d059c385','0','2','0'), ('35471','20','get[1.3.6.1.4.1.3375.2.1.7.5.2.1.26.{#SNMPINDEX}]','10419','Host [{#HOST.ID}] CPU{#CPU.ID}: IO wait, avg 1m','bigip.cpu.iowait.1m[{#HOST.ID},{#CPU.ID}]','5m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The average time spent by the specified processor waiting for external I/O to complete for the associated host in the last one minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','808a6933a1834291b80d0cb072dded09','0','2','0'), ('35472','20','get[1.3.6.1.4.1.3375.2.1.7.5.2.1.15.{#SNMPINDEX}]','10419','Host [{#HOST.ID}] CPU{#CPU.ID}: Idle, avg 5s','bigip.cpu.idle.5s[{#HOST.ID},{#CPU.ID}]','5m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The average time spent by the specified processor doing nothing for the associated host in the last five seconds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dd169e972fe041cca93020b8a942a4d2','0','2','0'), ('35473','20','get[1.3.6.1.4.1.3375.2.1.7.5.2.1.12.{#SNMPINDEX}]','10419','Host [{#HOST.ID}] CPU{#CPU.ID}: User, avg 5s','bigip.cpu.user.5s[{#HOST.ID},{#CPU.ID}]','5m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The average time spent by the specified processor in user context for the associated host in the last five seconds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','61176fa2de794fcf90f1eef2ead10df6','0','2','0'), ('35474','20','get[1.3.6.1.4.1.3375.2.1.3.6.2.1.3.{#SNMPINDEX}]','10419','Sensor [{#CPU.SENSOR.SLOT}:{#CPU.SENSOR.INDEX}]: FAN speed','bigip.cpu.sensor.fan[{#CPU.SENSOR.SLOT},{#CPU.SENSOR.INDEX}]','5m','31d','365d','0','3','','!rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB CPU: {#CPU.SENSOR.NAME} The fan speed (in RPM) of the indexed CPU on the system., This is only supported for the platform where the sensor data is available.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','065993688a2e4b0e8e88998d24193a85','0','2','0'), ('35475','20','get[1.3.6.1.4.1.3375.2.1.3.6.2.1.4.{#SNMPINDEX}]','10419','Sensor [{#CPU.SENSOR.SLOT}:{#CPU.SENSOR.INDEX}]: Name','bigip.cpu.sensor.name[{#CPU.SENSOR.SLOT},{#CPU.SENSOR.INDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB Identifier for the CPU.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','03bd45f8a7004fd3a3d8b361a37547d3','0','2','0'), ('35476','20','get[1.3.6.1.4.1.3375.2.1.3.6.2.1.2.{#SNMPINDEX}]','10419','Sensor [{#CPU.SENSOR.SLOT}:{#CPU.SENSOR.INDEX}]: Temperature','bigip.cpu.sensor.temperature[{#CPU.SENSOR.SLOT},{#CPU.SENSOR.INDEX}]','5m','31d','365d','0','3','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB CPU: {#CPU.SENSOR.NAME} The temperature of the indexed CPU on the system. This is only supported for the platform where the sensor data is available.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1ffd09c7d99843b88e259de3614d003a','0','2','0'), ('35477','20','get[1.3.6.1.4.1.3375.2.1.7.3.2.1.2.{#SNMPINDEX}]','10419','Mount point [{#PART.NAME}]: Block size','bigip.disktable.blocksize[{#PART.NAME}]','1h','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The number of bytes in the specified partition.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4c86e62a1a1a4f3eb990b2f17f6191fd','0','2','0'), ('35478','20','get[1.3.6.1.4.1.3375.2.1.7.3.2.1.4.{#SNMPINDEX}]','10419','Mount point [{#PART.NAME}]: Free blocks','bigip.disktable.freeblocks[{#PART.NAME}]','1h','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The number of free blocks in the specified partition.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8fd4ee3dc199419189daf478ff2dc01d','0','2','0'), ('35479','20','get[1.3.6.1.4.1.3375.2.1.7.3.2.1.6.{#SNMPINDEX}]','10419','Mount point [{#PART.NAME}]: Free nodes','bigip.disktable.freenodes[{#PART.NAME}]','1h','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The number of free file nodes in the specified partition.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5c0724be667946f192a46cc2a0584971','0','2','0'), ('35480','20','get[1.3.6.1.4.1.3375.2.1.7.3.2.1.3.{#SNMPINDEX}]','10419','Mount point [{#PART.NAME}]: Total blocks','bigip.disktable.totalblocks[{#PART.NAME}]','1h','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The number of total blocks in the specified partition.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','50d267f74f9c476fac23884828f5275f','0','2','0'), ('35481','20','get[1.3.6.1.4.1.3375.2.1.7.3.2.1.5.{#SNMPINDEX}]','10419','Mount point [{#PART.NAME}]: Total nodes','bigip.disktable.totalnodes[{#PART.NAME}]','1h','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The number of total file nodes in the specified partition.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','49cd22a896d941a2b55f3ba6e95698b4','0','2','0'), ('35482','20','get[1.3.6.1.4.1.3375.2.1.7.4.2.1.7.{#SNMPINDEX}]','10419','Host [{#HOST.ID}]: Total other non-TMM memory','bigip.memory.total.other[{#HOST.ID}]','5m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The total other non-TMM memory in bytes for the specified host.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','39b39f06ae574927b90dfe9235301788','0','2','0'), ('35483','20','get[1.3.6.1.4.1.3375.2.1.7.4.2.1.9.{#SNMPINDEX}]','10419','Host [{#HOST.ID}]: Total swap','bigip.memory.total.swap[{#HOST.ID}]','1d','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The total swap in bytes for the specified host.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e01e3283d37a4ae09d62fbc679cc4dee','0','2','0'), ('35484','20','get[1.3.6.1.4.1.3375.2.1.7.4.2.1.2.{#SNMPINDEX}]','10419','Host [{#HOST.ID}]: Total memory','bigip.memory.total[{#HOST.ID}]','1d','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The total host memory in bytes for the specified host.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d1ebd77bd2bc4d24b45b32eb6cda6722','0','2','0'), ('35485','20','get[1.3.6.1.4.1.3375.2.1.7.4.2.1.8.{#SNMPINDEX}]','10419','Host [{#HOST.ID}]: Used other non-TMM memory','bigip.memory.used.other[{#HOST.ID}]','5m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The other non-TMM memory in bytes currently in use for the specified host.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6c73ea2e54594a1ab6edbdc6de30f711','0','2','0'), ('35486','20','get[1.3.6.1.4.1.3375.2.1.7.4.2.1.10.{#SNMPINDEX}]','10419','Host [{#HOST.ID}]: Used swap','bigip.memory.used.swap[{#HOST.ID}]','5m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The swap in bytes currently in use for the specified host.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3a9d6f2815644a4f93e008ccacbdb290','0','2','0'), ('35487','20','get[1.3.6.1.4.1.3375.2.1.7.4.2.1.3.{#SNMPINDEX}]','10419','Host [{#HOST.ID}]: Used memory','bigip.memory.used[{#HOST.ID}]','5m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The host memory in bytes currently in use for the specified host.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d5af8fa1079b4c0aa47b98e25a184af3','0','2','0'), ('35488','20','get[1.3.6.1.4.1.3375.2.1.11.1.2.1.4.{#SNMPINDEX}]','10419','Module [{#MODULE.NAME}]: CPU ratio','bigip.module.cpu.ratio[{#MODULE.NAME}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The ratio of CPU to allocate to this module. Only valid if level is ''custom''','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','36a1032bb74145c8ae51dbb54ec988a2','0','2','0'), ('35489','20','get[1.3.6.1.4.1.3375.2.1.11.1.2.1.5.{#SNMPINDEX}]','10419','Module [{#MODULE.NAME}]: Disk ratio','bigip.module.disk.ratio[{#MODULE.NAME}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The ratio of available disk space to allocate to this module. Only valid if level is ''custom''','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','eaeb7bc1225b48689124c373b04fc56f','0','2','0'), ('35490','20','get[1.3.6.1.4.1.3375.2.1.11.1.2.1.3.{#SNMPINDEX}]','10419','Module [{#MODULE.NAME}]: Memory ratio','bigip.module.memory.ratio[{#MODULE.NAME}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The ratio of available memory to allocate. Only valid if level is ''custom''','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b384a7e297f844c89cc40c486e0c69db','0','2','0'), ('35491','20','get[1.3.6.1.4.1.3375.2.1.11.1.2.1.2.{#SNMPINDEX}]','10419','Module [{#MODULE.NAME}]: Provision level','bigip.module.provision.level[{#MODULE.NAME}]','1m','31d','365d','0','3','','','','',NULL,'356','','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The provisioning level indicates how the systems resources are distributed amongst the modules Possible values: 1 - none, 2 - minimum, 3 - nominal, 4 - dedicated, 5 - custom.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','36dbc22d430e477ab2105323ad8b0850','0','2','0'), ('35492','20','get[1.3.6.1.4.1.3375.2.1.2.4.4.3.1.12.{#SNMPINDEX}]','10419','Interface [{#IF.NAME}]: Collisions','bigip.net.collisions[{#IF.NAME}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The number of collisions on the specified interface, incremented by the number of collisions experienced during transmissions of a frame','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','87fd58c620c142a99dc810f13b3d109e','0','2','0'), ('35493','20','get[1.3.6.1.4.1.3375.2.1.2.4.4.3.1.3.{#SNMPINDEX}]','10419','Interface [{#IF.NAME}]: Incoming traffic, rate','bigip.net.in.bytes.rate[{#IF.NAME}]','1m','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The rate of bytes received on this interface.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1ddb57921289497fb2c2e4f047f58c02','0','2','0'), ('35494','20','get[1.3.6.1.4.1.3375.2.1.2.4.4.3.1.10.{#SNMPINDEX}]','10419','Interface [{#IF.NAME}]: Incoming packet drops','bigip.net.in.drops[{#IF.NAME}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The number of packets dropped on ingress for various reasons on the specified interface.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','45342d637fa440f8b73968a14bf39374','0','2','0'), ('35495','20','get[1.3.6.1.4.1.3375.2.1.2.4.4.3.1.8.{#SNMPINDEX}]','10419','Interface [{#IF.NAME}]: Incoming packet error','bigip.net.in.error[{#IF.NAME}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The number of received packets that are either undersized, oversized, or have FCS errors by the specified interface.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5bc37dde99024866a2a5f97fbce15c2f','0','2','0'), ('35496','20','get[1.3.6.1.4.1.3375.2.1.2.4.4.3.1.6.{#SNMPINDEX}]','10419','Interface [{#IF.NAME}]: Incoming multicast packet, rate','bigip.net.in.multicast.rate[{#IF.NAME}]','1m','31d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The rate of multicast packets received on this interface.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8aaff266f1b74a81a3eba46d321eb524','0','2','0'), ('35497','20','get[1.3.6.1.4.1.3375.2.1.2.4.4.3.1.2.{#SNMPINDEX}]','10419','Interface [{#IF.NAME}]: Incoming packet, rate','bigip.net.in.pkts.rate[{#IF.NAME}]','1m','31d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The rate of packets received on this interface.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','40e811829adc4715af4e10d223be3bc5','0','2','0'), ('35498','20','get[1.3.6.1.4.1.3375.2.1.2.4.4.3.1.13.{#SNMPINDEX}]','10419','Interface [{#IF.NAME}]: Incoming QnQ packet, rate','bigip.net.in.qq.rate[{#IF.NAME}]','1m','31d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The rate of double tagged packets received on the specified interface.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','202717aa54194cf882c86640e73b17af','0','2','0'), ('35499','20','get[1.3.6.1.4.1.3375.2.1.2.4.4.3.1.5.{#SNMPINDEX}]','10419','Interface [{#IF.NAME}]: Outgoing traffic, rate','bigip.net.out.bytes.rate[{#IF.NAME}]','1m','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The rate of bytes transmitted out of the specified interface.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c98f48ddf6bc46f39ab9aec6cc249fa4','0','2','0'), ('35500','20','get[1.3.6.1.4.1.3375.2.1.2.4.4.3.1.11.{#SNMPINDEX}]','10419','Interface [{#IF.NAME}]: Outgoing packet drops','bigip.net.out.drops[{#IF.NAME}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The number of packets aged out or with excessive transmission delays due to multiple deferrals on the specified interface.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b19203459ac842e2b96eee75b6754eac','0','2','0'), ('35501','20','get[1.3.6.1.4.1.3375.2.1.2.4.4.3.1.9.{#SNMPINDEX}]','10419','Interface [{#IF.NAME}]: Outgoing packet error','bigip.net.out.error[{#IF.NAME}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The number of excessive collisions, incremented for each frame that experienced 16 collisions during transmission and was aborted on the specified interface.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1496879429724a6daee4b97fa162419b','0','2','0'), ('35502','20','get[1.3.6.1.4.1.3375.2.1.2.4.4.3.1.7.{#SNMPINDEX}]','10419','Interface [{#IF.NAME}]: Outgoing multicast packet, rate','bigip.net.out.multicast.rate[{#IF.NAME}]','1m','31d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The rate of multicast packets transmitted out of the specified interface.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8ecd6a8dd5fa43c8b87a94119aac90b9','0','2','0'), ('35503','20','get[1.3.6.1.4.1.3375.2.1.2.4.4.3.1.4.{#SNMPINDEX}]','10419','Interface [{#IF.NAME}]: Outgoing packet, rate','bigip.net.out.pkts.rate[{#IF.NAME}]','1m','31d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The rate of packets transmitted out of the specified interface.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fd4416466734469b85eec03c8e69185c','0','2','0'), ('35504','20','get[1.3.6.1.4.1.3375.2.1.2.4.4.3.1.14.{#SNMPINDEX}]','10419','Interface [{#IF.NAME}]: Outgoing QnQ packet, rate','bigip.net.out.qq.rate[{#IF.NAME}]','1m','31d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The rate of double tagged packets transmitted out of the specified interface.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a4cb060cc3854aab9715c85174cc4933','0','2','0'), ('35505','20','get[1.3.6.1.4.1.3375.2.1.2.4.4.3.1.15.{#SNMPINDEX}]','10419','Interface [{#IF.NAME}]: Pause state','bigip.net.pause[{#IF.NAME}]','1m','31d','365d','0','3','','','','',NULL,'357','','','0','','','','','2',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The pause state of the specified interface. none - no pause; txrx - pause all data flow; tx - pause outgoing data flow; rx - pause incoming data flow.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','93a1107cb0ea44078f2ac04a7dc9e941','0','2','0'), ('35506','20','get[1.3.6.1.4.1.3375.2.2.4.2.3.1.9.{#SNMPINDEX}]','10419','Node [{#NODE.NAME}]: Current connections','bigip.node.net.conn[{#NODE.NAME}]','5m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB The current connections from server-side to the specified node address.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6292623c4482485f9f866be8b7d39367','0','2','0'), ('35507','20','get[1.3.6.1.4.1.3375.2.2.4.2.3.1.4.{#SNMPINDEX}]','10419','Node [{#NODE.NAME}]: Incoming traffic, rate','bigip.node.net.in.bytes.rate[{#NODE.NAME}]','5m','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB The rate of bytes received by the specified node address from server-side.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9530c81b45c24ddda2440e2589964d28','0','2','0'), ('35508','20','get[1.3.6.1.4.1.3375.2.2.4.2.3.1.3.{#SNMPINDEX}]','10419','Node [{#NODE.NAME}]: Incoming packet, rate','bigip.node.net.in.pkts.rate[{#NODE.NAME}]','5m','31d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB The rate of packets received by the specified node address from server-side.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8e7ae014ea73489b81de960acad301b8','0','2','0'), ('35509','20','get[1.3.6.1.4.1.3375.2.2.4.2.3.1.6.{#SNMPINDEX}]','10419','Node [{#NODE.NAME}]: Outgoing traffic, rate','bigip.node.net.out.bytes.rate[{#NODE.NAME}]','5m','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB The rate of bytes sent to server-side from the specified node address.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','88ec665ad6eb43e88a3625b50e130e82','0','2','0'), ('35510','20','get[1.3.6.1.4.1.3375.2.2.4.2.3.1.5.{#SNMPINDEX}]','10419','Node [{#NODE.NAME}]: Outgoing packet, rate','bigip.node.net.out.pkts.rate[{#NODE.NAME}]','5m','31d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB The rate of packets sent to server-side from the specified node address.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','077bb28cd8a1429fb564786e7d150dbc','0','2','0'), ('35511','20','get[1.3.6.1.4.1.3375.2.2.4.2.3.1.21.{#SNMPINDEX}]','10419','Node [{#NODE.NAME}]: Current sessions','bigip.node.net.sessions[{#NODE.NAME}]','5m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB The number of current sessions going through the specified node address.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5a0278f4cfd04611895207d9b7f3b13c','0','2','0'), ('35512','20','get[1.3.6.1.4.1.3375.2.2.4.2.3.1.22.{#SNMPINDEX}]','10419','Node [{#NODE.NAME}]: Connections hit a rate limit','bigip.node.overlimit[{#NODE.NAME}]','5m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB The last recorded value for the number of connections to the node address when connections hit a rate limit; this calculation is only maintained if rate limiting is configured for the node.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','15129cb2af84466d8c58641854ad0b54','0','2','0'), ('35513','20','get[1.3.6.1.4.1.3375.2.2.4.2.3.1.23.{#SNMPINDEX}]','10419','Node [{#NODE.NAME}]: Duration of exceeding rate limit','bigip.node.overtime[{#NODE.NAME}]','5m','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB Duration of time in seconds the specified node address has exceeded the configured connection rate limit.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6be4c0fd41d6459db5acd6c33461c7f9','0','2','0'), ('35514','20','get[1.3.6.1.4.1.3375.2.2.5.2.3.1.8.{#SNMPINDEX}]','10419','Pool [{#POOL.NAME}]: Current connections','bigip.pool.net.conn[{#POOL.NAME}]','5m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB The current connections from server-side to the specified pool.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0c53c6f3ab9e49b688a8e97252471ded','0','2','0'), ('35515','20','get[1.3.6.1.4.1.3375.2.2.5.2.3.1.3.{#SNMPINDEX}]','10419','Pool [{#POOL.NAME}]: Incoming traffic, rate','bigip.pool.net.in.bytes.rate[{#POOL.NAME}]','5m','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB The rate of bytes received by the specified pool from server-side.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e6daed4f364c463dba542948b2272296','0','2','0'), ('35516','20','get[1.3.6.1.4.1.3375.2.2.5.2.3.1.2.{#SNMPINDEX}]','10419','Pool [{#POOL.NAME}]: Incoming packet, rate','bigip.pool.net.in.pkts.rate[{#POOL.NAME}]','5m','31d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB The rate of packets received by the specified pool from server-side.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b65e8d23fa3b4129936f0f3d7034c8a4','0','2','0'), ('35517','20','get[1.3.6.1.4.1.3375.2.2.5.2.3.1.5.{#SNMPINDEX}]','10419','Pool [{#POOL.NAME}]: Outgoing traffic, rate','bigip.pool.net.out.bytes.rate[{#POOL.NAME}]','5m','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB The rate of bytes sent to server-side from the specified pool.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6c58f56d63e34166b02ad7c31271e2bb','0','2','0'), ('35518','20','get[1.3.6.1.4.1.3375.2.2.5.2.3.1.4.{#SNMPINDEX}]','10419','Pool [{#POOL.NAME}]: Outgoing packet, rate','bigip.pool.net.out.pkts.rate[{#POOL.NAME}]','5m','31d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB The rate of packets sent to server-side from the specified pool.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e432732fc4dd478892c6d4bab3fbd11c','0','2','0'), ('35519','20','get[1.3.6.1.4.1.3375.2.2.5.2.3.1.31.{#SNMPINDEX}]','10419','Pool [{#POOL.NAME}]: Current sessions','bigip.pool.net.sessions[{#POOL.NAME}]','5m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB The number of current sessions going through the specified pool.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','068028e704f049b4b3daae524fe16d27','0','2','0'), ('35520','20','get[1.3.6.1.4.1.3375.2.2.5.2.3.1.19.{#SNMPINDEX}]','10419','Pool [{#POOL.NAME}]: Age of the oldest queue entry','bigip.pool.queue.age[{#POOL.NAME}]','5m','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB Age of the oldest queue entry, max.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6bacc7e284f14aa7804f69c8b2f744d4','0','2','0'), ('35521','20','get[1.3.6.1.4.1.3375.2.2.5.2.3.1.18.{#SNMPINDEX}]','10419','Pool [{#POOL.NAME}]: Queue','bigip.pool.queue[{#POOL.NAME}]','5m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB Number of connections currently in queue, sum.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','44ad195489cd46be87ae8cc029bcb480','0','2','0'), ('35522','20','get[1.3.6.1.4.1.3375.2.2.10.2.3.1.12.{#SNMPINDEX}]','10419','Virtual server [{#VSERVER.NAME}]: Current connections','bigip.vserver.net.conn[{#VSERVER.NAME}]','5m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB The current connections from client-side to the specified virtual server.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','28ecf3f03cad44bda0e6243bb02e2ae4','0','2','0'), ('35523','20','get[1.3.6.1.4.1.3375.2.2.10.2.3.1.7.{#SNMPINDEX}]','10419','Virtual server [{#VSERVER.NAME}]: Incoming traffic, rate','bigip.vserver.net.in.bytes.rate[{#VSERVER.NAME}]','5m','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB The rate of bytes received by the specified virtual server from client-side.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','206503cc777a4156a29f0687d8fb5a7c','0','2','0'), ('35524','20','get[1.3.6.1.4.1.3375.2.2.10.2.3.1.6.{#SNMPINDEX}]','10419','Virtual server [{#VSERVER.NAME}]: Incoming packet, rate','bigip.vserver.net.in.pkts.rate[{#VSERVER.NAME}]','5m','31d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB The rate of packets received by the specified virtual server from client-side.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d8a36a30d99c44ca9b7172a5b66e74d6','0','2','0'), ('35525','20','get[1.3.6.1.4.1.3375.2.2.10.2.3.1.9.{#SNMPINDEX}]','10419','Virtual server [{#VSERVER.NAME}]: Outgoing traffic, rate','bigip.vserver.net.out.bytes.rate[{#VSERVER.NAME}]','5m','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB The rate of bytes sent to client-side from the specified virtual server.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','efeb720fb7e44d068572d59eff947bc6','0','2','0'), ('35526','20','get[1.3.6.1.4.1.3375.2.2.10.2.3.1.8.{#SNMPINDEX}]','10419','Virtual server [{#VSERVER.NAME}]: Outgoing packet, rate','bigip.vserver.net.out.pkts.rate[{#VSERVER.NAME}]','5m','31d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB The rate of packets sent to client-side from the specified virtual server.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bd588ea58eb4420085691046fa0a1e3b','0','2','0'), ('35527','20','get[1.3.6.1.4.1.3375.2.2.10.2.3.1.34.{#SNMPINDEX}]','10419','Virtual server [{#VSERVER.NAME}]: Connections hit a rate limit','bigip.vserver.overlimit[{#VSERVER.NAME}]','5m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB The last recorded value for the number of connections to the virtual server when connections hit a rate limit; this calculation is only maintained if rate limiting is configured for the service.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','01352ac9b6c24f13a6ceebac666026cb','0','2','0'), ('35528','20','get[1.3.6.1.4.1.3375.2.2.10.2.3.1.35.{#SNMPINDEX}]','10419','Virtual server [{#VSERVER.NAME}]: Duration of exceeding rate limit','bigip.vserver.overtime[{#VSERVER.NAME}]','5m','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB Duration of time in seconds the specified virtual server has exceeded the configured connection rate limit.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','baa7718513a54ae4a7bd669f9b652521','0','2','0'), ('35529','20','get[1.3.6.1.4.1.3375.2.2.10.2.3.1.32.{#SNMPINDEX}]','10419','Virtual server [{#VSERVER.NAME}]: Usage ratio, avg 1m','bigip.vserver.usage.1m[{#VSERVER.NAME}]','5m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB The percentage of time Virtual Server was busy over the last 1 minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3e97e22368b84674a9720c3f076503c5','0','2','0'), ('35530','20','get[1.3.6.1.4.1.3375.2.2.10.2.3.1.33.{#SNMPINDEX}]','10419','Virtual server [{#VSERVER.NAME}]: Usage ratio, avg 5m','bigip.vserver.usage.5m[{#VSERVER.NAME}]','5m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB The percentage of time Virtual Server was busy over the last 5 minutes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2c8c5e0e53e34e4ebc84ed9e5a8c4bd9','0','2','0'), ('35531','20','get[1.3.6.1.4.1.3375.2.2.10.2.3.1.31.{#SNMPINDEX}]','10419','Virtual server [{#VSERVER.NAME}]: Usage ratio, avg 5s','bigip.vserver.usage.5s[{#VSERVER.NAME}]','5m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB The percentage of time Virtual Server was busy over the last 5 seconds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d6079ebaebbb40d09386e2b1abcbe987','0','2','0'), ('35532','5','','10420','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'359','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5b6932995b634a5792d3948ba79312e5','0','2','0'), ('35533','20','get[1.3.6.1.2.1.1.4.0]','10420','Contact','zyxel.aam1212.contact','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9b04315c5e9a41eea5f50623c83f21d0','0','2','0'), ('35534','20','get[1.3.6.1.4.1.890.1.5.13.1.1.3.1.4.0.0]','10420','ZyNOS F/W Version','zyxel.aam1212.fwversion','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-IESCOMMON-MIB','17','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6b29fd2b27fe4788bef1e4072430d5bd','0','2','0'), ('35535','20','get[1.3.6.1.2.1.1.6.0]','10420','Location','zyxel.aam1212.location','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The physical location of this node (e.g., `telephone closet, 3rd floor'').','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ea699e392c154a79927a056ff050c59d','0','2','0'), ('35536','20','get[1.3.6.1.2.1.2.2.1.6.1]','10420','MAC address','zyxel.aam1212.mac','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IF-MIB The interface''s address at the protocol layer immediately `below'' the network layer in the protocol stack. For interfaces which do not have such an address (e.g., a serial line), this object should contain an octet string of zero length.','12','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d2cabaa6e083489b8b11e6a349ba1bc9','0','2','0'), ('35537','20','get[1.3.6.1.2.1.1.1.0]','10420','Hardware model name','zyxel.aam1212.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software. It is mandatory that this only contain printable ASCII characters.','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','31840a6849f7437bbb77334128c9e90b','0','2','0'), ('35538','20','get[1.3.6.1.2.1.1.5.0]','10420','Host name','zyxel.aam1212.name','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB An administratively-assigned name for this managed node. By convention, this is the node''s fully-qualified domain name.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','59628c9211c444228b6d8d9ddb30af54','0','2','0'), ('35539','20','get[1.3.6.1.4.1.890.1.5.13.1.1.2.1.3.0]','10420','Hardware serial number','zyxel.aam1212.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-IESCOMMON-MIB Serial number','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','33df8d594d7f4e4aa148927b117f30df','0','2','0'), ('35540','20','get[1.3.6.1.4.1.890.1.5.13.1.1.3.1.8.0.0]','10420','Alarm status','zyxel.aam1212.slot.alarm','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-IESCOMMON-MIB This variable indicates the alarm status of the module. It is a bit map represented a sum, therefore, it can represent multiple defects simultaneously. The moduleNoDefect should be set if and only if no other flag is set. The various bit positions are: 1 moduleNoDefect 2 moduleOverHeat 3 moduleFanRpmLow 4 moduleVoltageLow 5 moduleThermalSensorFailure 6 modulePullOut 7 powerDC48VAFailure 8 powerDC48VBFailure 9 extAlarmInputTrigger 10 moduleDown 11 mscSwitchOverOK 12 networkTopologyChange 13 macSpoof 14 cpuHigh 15 memoryUsageHigh 16 packetBufferUsageHigh 17 loopguardOccurence','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4efb46536e8a43e78cd26ae90bd2ab83','0','2','0'), ('35541','20','get[1.3.6.1.2.1.1.3.0]','10420','Uptime (network)','zyxel.aam1212.net.uptime','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6fe78b9b065243b8bcebf8f6c234f868','0','2','0'), ('35542','20','discovery[{#ZYXEL.IF.NAME},1.3.6.1.2.1.2.2.1.2,{#ZYXEL.IF.LINKSTATUS},1.3.6.1.2.1.2.2.1.8]','10420','ADSL interface discovery','zyxel.aam1212.net.adsl.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c0fa2c901419420eaaa2a64e59fbad29','0','2','0'), ('35543','20','discovery[{#ZYXEL.IF.NAME},1.3.6.1.2.1.2.2.1.2,{#ZYXEL.IF.LINKSTATUS},1.3.6.1.2.1.2.2.1.8]','10420','Ethernet interface discovery','zyxel.aam1212.net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8e327f4a888b417db390148e7a894d10','0','2','0'), ('35544','20','discovery[{#ZYXEL.TEMP.ID},1.3.6.1.4.1.890.1.5.13.1.2.3.1.1,{#ZYXEL.TEMP.THRESH.HIGH},1.3.6.1.4.1.890.1.5.13.1.2.3.1.5]','10420','Temperature discovery','zyxel.aam1212.temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in tempTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4bc61b4441a840a79bbd118a1d3cf66e','0','2','0'), ('35545','20','discovery[{#ZYXEL.VOLT.THRESH.LOW},1.3.6.1.4.1.890.1.5.13.1.2.2.1.6,{#ZYXEL.VOLT.NOMINAL},1.3.6.1.4.1.890.1.5.13.1.2.2.1.5]','10420','Voltage discovery','zyxel.aam1212.volt.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in voltageTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fbb48a267b7646a98246da0357a1ee95','0','2','0'), ('35546','20','get[1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}]','10420','Port {#SNMPINDEX}: Administrative status','zyxel.aam1212.net.adsl.adminstatus[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'360','','','0','','','','','2',NULL,'MIB: IF-MIB The desired state of the interface. The testing(3) state indicates that no operational packets can be passed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8b8e4d329490481983d2a1b0209e18a1','0','2','0'), ('35547','20','get[1.3.6.1.2.1.10.94.1.1.2.1.5.{#SNMPINDEX}]','10420','Port {#SNMPINDEX}: ATUC attenuation','zyxel.aam1212.net.adsl.atuc.atn[{#SNMPINDEX}]','1m','31d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB Measured difference in the total power transmitted by the peer ATU and the total power received by this ATU. The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit - Central), in this case ZYXEL AAM1212-51 / IES-612, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','010b15528a8d498bb8f77db9c548bc8e','0','2','0'), ('35548','20','get[1.3.6.1.2.1.10.94.1.1.2.1.7.{#SNMPINDEX}]','10420','Port {#SNMPINDEX}: ATUC output power','zyxel.aam1212.net.adsl.atuc.outpwr[{#SNMPINDEX}]','1m','31d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB Measured total output power transmitted by this ATU. The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit - Central), in this case ZYXEL AAM1212-51 / IES-612, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','382d9f2f9458423eb887b6fd28697c3a','0','2','0'), ('35549','20','get[1.3.6.1.2.1.10.94.1.1.2.1.4.{#SNMPINDEX}]','10420','Port {#SNMPINDEX}: ATUC noise margin','zyxel.aam1212.net.adsl.atuc.snrmgn[{#SNMPINDEX}]','1m','31d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB Noise Margin as seen by this ATU with respect to its received signal in tenth dB. The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit - Central), in this case ZYXEL AAM1212-51 / IES-612, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a273e455881948a895eb60b453ce8f61','0','2','0'), ('35550','20','get[1.3.6.1.2.1.10.94.1.1.3.1.5.{#SNMPINDEX}]','10420','Port {#SNMPINDEX}: ATUR attenuation','zyxel.aam1212.net.adsl.atur.atn[{#SNMPINDEX}]','1m','31d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB Measured difference in the total power transmitted by the peer ATU and the total power received by this ATU. The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit - Remote), in this case the subscriber''s ADSL modem or router, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3bfa258832dd49cca9ced6d5d78252d1','0','2','0'), ('35551','20','get[1.3.6.1.2.1.10.94.1.1.3.1.7.{#SNMPINDEX}]','10420','Port {#SNMPINDEX}: ATUR output power','zyxel.aam1212.net.adsl.atur.outpwr[{#SNMPINDEX}]','1m','31d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB Measured total output power transmitted by this ATU. The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit - Remote), in this case the subscriber''s ADSL modem or router, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','da2105dce83d4f619b69a9c8e5875bac','0','2','0'), ('35552','20','get[1.3.6.1.2.1.10.94.1.1.3.1.4.{#SNMPINDEX}]','10420','Port {#SNMPINDEX}: ATUR noise margin','zyxel.aam1212.net.adsl.atur.snrmgn[{#SNMPINDEX}]','1m','31d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB Noise Margin as seen by this ATU with respect to its received signal in tenth dB. The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit - Remote), in this case the subscriber''s ADSL modem or router, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e59b98a685874f888557eb3d1c41a828','0','2','0'), ('35553','20','get[1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX}]','10420','Port {#SNMPINDEX}: Incoming traffic','zyxel.aam1212.net.adsl.in.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','70fa53318d354503b44b70696cb8ccd2','0','2','0'), ('35554','20','get[1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX}]','10420','Port {#SNMPINDEX}: Interface name','zyxel.aam1212.net.adsl.name[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB A textual string containing information about the interface','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','53241d402d0f4b4ca826f9712ad1af69','0','2','0'), ('35555','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10420','Port {#SNMPINDEX}: Operational status','zyxel.aam1212.net.adsl.operstatus[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'361','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. The testing(3) state indicates that no operational packets can be passed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','53ff6ee2132a4503890c35919baa2fd8','0','2','0'), ('35556','20','get[1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX}]','10420','Port {#SNMPINDEX}: Outgoing traffic','zyxel.aam1212.net.adsl.out.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','021b85f4efea4be9834e7959ed2471f5','0','2','0'), ('35557','20','get[1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}]','10420','Port {#ZYXEL.IF.NAME}: Administrative status','zyxel.aam1212.net.if.adminstatus[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'360','','','0','','','','','2',NULL,'MIB: IF-MIB The desired state of the interface. The testing(3) state indicates that no operational packets can be passed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d68dd1f83f5f41f4b372cc0a2261f30e','0','2','0'), ('35558','20','get[1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX}]','10420','Port {#ZYXEL.IF.NAME}: Incoming traffic','zyxel.aam1212.net.if.in.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f5dd08da51664f1d82a16b0826cdb9ce','0','2','0'), ('35559','20','get[1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX}]','10420','Port {#ZYXEL.IF.NAME}: Interface name','zyxel.aam1212.net.if.name[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB A textual string containing information about the interface','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e2a630669e924f069b98d11a32737411','0','2','0'), ('35560','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10420','Port {#ZYXEL.IF.NAME}: Operational status','zyxel.aam1212.net.if.operstatus[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'361','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. The testing(3) state indicates that no operational packets can be passed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6232538bf48a4f12a1f85164dc95bcf8','0','2','0'), ('35561','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10420','Port {#ZYXEL.IF.NAME}: Outgoing traffic','zyxel.aam1212.net.if.out.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d69676fc00e64c97afd7da416891b0ef','0','2','0'), ('35562','20','get[1.3.6.1.4.1.890.1.5.13.1.2.3.1.2.{#SNMPINDEX}]','10420','Temperature "{#ZYXEL.TEMP.ID}"','zyxel.aam1212.temp[{#SNMPINDEX}]','1m','31d','365d','0','3','','!°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IESCOMMON-MIB The current temperature measured at this sensor','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','82045c5b71b04c62b7525db28f292ad2','0','2','0'), ('35563','20','get[1.3.6.1.4.1.890.1.5.13.1.2.2.1.2.{#SNMPINDEX}]','10420','Nominal "{#ZYXEL.VOLT.NOMINAL}"','zyxel.aam1212.volt[{#SNMPINDEX}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IESCOMMON-MIB The current voltage reading.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9e73d63d1af2473599e17ab214f03b32','0','2','0'), ('35564','5','','10421','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'362','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','294a49fc36e848cc9f9959624c9a5ab3','0','2','0'), ('35565','20','get[1.3.6.1.2.1.1.4.0]','10421','Contact','zyxel.3500_8pd.contact','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6d513a036f8547219b1120fc4fffff1d','0','2','0'), ('35566','20','get[1.3.6.1.4.1.890.1.5.8.72.12.7.0]','10421','CPU utilization','zyxel.3500_8pd.cpuusage','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-ES3500-8PD-MIB Show device CPU load in %, it''s the snapshot of CPU load when getting the values.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e7fd0f225802477aabbbcbfe5ac4a7f6','0','2','0'), ('35567','20','discovery[{#SNMP.ARRAY},1.3.6.1.4.1.890.1.5.8.72.1]','10421','ZyNOS F/W Version','zyxel.3500_8pd.fwversion','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-ES3500-8PD-MIB','17','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8749f59cbfeb4c43b7753901f3219716','0','2','0'), ('35568','20','get[1.3.6.1.2.1.1.6.0]','10421','Location','zyxel.3500_8pd.location','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The physical location of this node (e.g., `telephone closet, 3rd floor'').','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cbccb45e9d1d4b529cce2d43e6c96a24','0','2','0'), ('35569','20','get[1.3.6.1.2.1.2.2.1.6.1]','10421','MAC address','zyxel.3500_8pd.mac','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IF-MIB The interface''s address at the protocol layer immediately `below'' the network layer in the protocol stack. For interfaces which do not have such an address (e.g., a serial line), this object should contain an octet string of zero length.','12','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1479a543105a4cf2b524bf8d042afd00','0','2','0'), ('35570','20','get[1.3.6.1.2.1.1.1.0]','10421','Hardware model name','zyxel.3500_8pd.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software. It is mandatory that this only contain printable ASCII characters.','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c753caf7686e49968931df18076a5d4f','0','2','0'), ('35571','20','get[1.3.6.1.2.1.1.5.0]','10421','Host name','zyxel.3500_8pd.name','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB An administratively-assigned name for this managed node. By convention, this is the node''s fully-qualified domain name.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2072ac4b4437425a9ef1496b90c64990','0','2','0'), ('35572','20','get[1.3.6.1.4.1.890.1.5.8.72.1.10.0]','10421','Hardware serial number','zyxel.3500_8pd.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-ES3500-8PD-MIB Serial number','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','93a3b8ef959e41fe822abb959f090939','0','2','0'), ('35573','20','get[1.3.6.1.2.1.1.3.0]','10421','Uptime (network)','zyxel.3500_8pd.net.uptime','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bbd24719955740e0acc2316a945dac38','0','2','0'), ('35574','20','discovery[{#ZYXEL.MEMORY.NAME},1.3.6.1.4.1.890.1.5.8.72.124.1.1.2]','10421','Memory pool discovery','zyxel.3500_8pd.memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dfc515bfe86642e784735637bdb6c0a7','0','2','0'), ('35575','20','discovery[{#ZYXEL.IF.NAME},1.3.6.1.4.1.890.1.5.8.72.24.1.1.3,{#ZYXEL.IF.LINKUPTYPE},1.3.6.1.4.1.890.1.5.8.72.24.1.1.5]','10421','Interface discovery','zyxel.3500_8pd.net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c71d57f8ed0b470faae1bfd7033fbcf0','0','2','0'), ('35576','20','discovery[{#ZYXEL.SFP.WARN.MAX},1.3.6.1.4.1.890.1.5.8.72.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},1.3.6.1.4.1.890.1.5.8.72.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},1.3.6.1.4.1.890.1.5.8.72.117.2.1.8]','10421','SFP with DDM discovery','zyxel.3500_8pd.sfp.ddm.discovery','12h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'SFP DDM module discovery.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','21d6664eb56c41b388b4f4709a81d33d','0','2','0'), ('35577','20','discovery[{#ZYXEL.SFP.STATUS},1.3.6.1.4.1.890.1.5.8.72.117.1.1.2]','10421','SFP without DDM discovery','zyxel.3500_8pd.sfp.discovery','12h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'SFP module discovery.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a003b7fdc07b4ac6a063379b892943fa','0','2','0'), ('35578','20','discovery[{#ZYXEL.TEMP.THRESH.HIGH},1.3.6.1.4.1.890.1.5.8.72.9.2.1.5]','10421','Temperature discovery','zyxel.3500_8pd.temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in tempTable. Index of temperature unit. 1:MAC, 2:CPU, 3:PHY','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9c8f5212222a42bcbd42f8d848476804','0','2','0'), ('35579','20','discovery[{#ZYXEL.VOLT.THRESH.LOW},1.3.6.1.4.1.890.1.5.8.72.9.3.1.6,{#ZYXEL.VOLT.NOMINAL},1.3.6.1.4.1.890.1.5.8.72.9.3.1.5]','10421','Voltage discovery','zyxel.3500_8pd.volt.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in voltageTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5cd3ac86665c459cbbee3178fca6560f','0','2','0'), ('35580','20','get[1.3.6.1.4.1.890.1.5.8.72.124.1.1.5.{#SNMPINDEX}]','10421','Memory "{#ZYXEL.MEMORY.NAME}" utilization','zyxel.3500_8pd.memory[{#SNMPINDEX}]','1m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-ES3500-8PD-MIB Utilization of memory pool in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ae5a9303d10a49fba04064bb77b40b61','0','2','0'), ('35581','20','get[1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}]','10421','Port {#SNMPINDEX}: Administrative status','zyxel.3500_8pd.net.if.adminstatus[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'365','','','0','','','','','2',NULL,'MIB: IF-MIB The desired state of the interface. The testing(3) state indicates that no operational packets can be passed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','91a0a38a0f60464cb97c65f375e8fbb7','0','2','0'), ('35582','20','get[1.3.6.1.4.1.890.1.5.8.72.24.1.1.3.{#SNMPINDEX}]','10421','Port {#SNMPINDEX}: Interface description','zyxel.3500_8pd.net.if.name[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-ES3500-8PD-MIB A textual string containing information about the interface','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','018c1028b7904fbea8b1bb0d2fac1621','0','2','0'), ('35583','15','','10421','Port {#SNMPINDEX}: Outgoing utilization','zyxel.3500_8pd.net.if.out.util[{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.3500_8pd.net.if.out.traffic[{#SNMPINDEX}]) * (last(//zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cabb6da9aa3e4ae0ae6938b3f3d47138','0','2','0'), ('35584','20','get[1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX}]','10421','Port {#SNMPINDEX}: Outgoing unicast packages','zyxel.3500_8pd.net.if.out.ucastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were not addressed to a multicast or broadcast address at this sub-layer, including those that were discarded or not sent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','df030eba0fd548d5be224e2fe120373c','0','2','0'), ('35585','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10421','Port {#SNMPINDEX}: Outgoing traffic','zyxel.3500_8pd.net.if.out.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','08cd8a42816040d582d3192a9d8c2fb7','0','2','0'), ('35586','20','get[1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX}]','10421','Port {#SNMPINDEX}: Outgoing multicast packages','zyxel.3500_8pd.net.if.out.multicastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were addressed to a multicast address at this sub-layer, including those that were discarded or not sent. For a MAC layer protocol, this includes both Group and Functional addresses.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','103385b00f6442beab10712ca42d5719','0','2','0'), ('35587','20','get[1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX}]','10421','Port {#SNMPINDEX}: Outgoing broadcast packages','zyxel.3500_8pd.net.if.out.broadcastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were addressed to a broadcast address at this sub-layer, including those that were discarded or not sent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bb4c00143a4f4cc2b445daeffdcf6b57','0','2','0'), ('35588','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10421','Port {#SNMPINDEX}: Operational status','zyxel.3500_8pd.net.if.operstatus[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'366','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. The testing(3) state indicates that no operational packets can be passed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4f75b84c02b4496db2cbedca8df00c04','0','2','0'), ('35589','20','get[1.3.6.1.4.1.890.1.5.8.72.24.1.1.5.{#SNMPINDEX}]','10421','Port {#SNMPINDEX}: Link type','zyxel.3500_8pd.net.if.link_type[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'363','','','0','','','','','2',NULL,'MIB: ZYXEL-ES3500-8PD-MIB Physical connection type','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8c141ab269eb4a8891937a1847312890','0','2','0'), ('35590','20','get[1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX}]','10421','Port {#SNMPINDEX}: Interface name','zyxel.3500_8pd.net.if.descr[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB A textual string containing information about the interface','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1daef38185b14a96b8f0fce757c48677','0','2','0'), ('35591','15','','10421','Port {#SNMPINDEX}: Incoming utilization','zyxel.3500_8pd.net.if.in.util[{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.3500_8pd.net.if.in.traffic[{#SNMPINDEX}]) * (last(//zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f24ad30d48ca427eb3b19d4459cab733','0','2','0'), ('35592','20','get[1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX}]','10421','Port {#SNMPINDEX}: Incoming unicast packages','zyxel.3500_8pd.net.if.in.ucastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were not addressed to a multicast or broadcast address at this sub-layer','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b1c630d6f06748b88d695dfdb734cd19','0','2','0'), ('35593','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10421','Port {#SNMPINDEX}: Incoming traffic','zyxel.3500_8pd.net.if.in.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','34a86d17de7e4725aa6e5893c1e52526','0','2','0'), ('35594','20','get[1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX}]','10421','Port {#SNMPINDEX}: Incoming multicast packages','zyxel.3500_8pd.net.if.in.multicastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a multicast address at this sub-layer. For a MAC layer protocol, this includes both Group and Functional addresses.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0ce5c7ae49284615a41aba4cdd0f565b','0','2','0'), ('35595','20','get[1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX}]','10421','Port {#SNMPINDEX}: Incoming broadcast packages','zyxel.3500_8pd.net.if.in.broadcastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a broadcast address at this sub-layer.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','55cf0d86b8bc4a6fa6806c9f8bce7ee9','0','2','0'), ('35596','20','get[1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}]','10421','Port {#SNMPINDEX}: Link speed','zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in bits per second','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4de0488610054ed9bd869dc48a07174e','0','2','0'), ('35597','20','get[1.3.6.1.4.1.890.1.5.8.72.24.1.1.1.{#SNMPINDEX}]','10421','Port {#SNMPINDEX}: Speed Duplex','zyxel.3500_8pd.net.if.speed_duplex[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'364','','','0','','','','','2',NULL,'MIB: ZYXEL-ES3500-8PD-MIB Transmission mode','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5200e032f5f6438e8326799208072845','0','2','0'), ('35598','20','get[1.3.6.1.4.1.890.1.5.8.72.117.2.1.7.{#SNMPINDEX}]','10421','SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','zyxel.3500_8pd.sfp.ddm[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','365d','0','0','','!{#ZYXEL.SFP.UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-ES3500-8PD-MIB Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3a93aa9a9e2e44318f08c3eff86ce7bb','0','2','0'), ('35599','20','get[1.3.6.1.4.1.890.1.5.8.72.117.1.1.7.{#SNMPINDEX}]','10421','SFP {#SNMPINDEX}: Date code','zyxel.3500_8pd.sfp.datecode[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-ES3500-8PD-MIB Transceiver module vendor''s manufacturing date code.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','12345032490f4d24aeb7bfb07eae59fb','0','2','0'), ('35600','20','get[1.3.6.1.4.1.890.1.5.8.72.117.1.1.4.{#SNMPINDEX}]','10421','SFP {#SNMPINDEX}: Part number','zyxel.3500_8pd.sfp.part[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-ES3500-8PD-MIB Part number provided by transceiver module vendor.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2b30a4497cbd497886c52ae79ad03a01','0','2','0'), ('35601','20','get[1.3.6.1.4.1.890.1.5.8.72.117.1.1.6.{#SNMPINDEX}]','10421','SFP {#SNMPINDEX}: Revision','zyxel.3500_8pd.sfp.revision[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-ES3500-8PD-MIB Revision level for part number provided by transceiver module vendor.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','25aa375ed4a345e6b975bcb238cf530d','0','2','0'), ('35602','20','get[1.3.6.1.4.1.890.1.5.8.72.117.1.1.5.{#SNMPINDEX}]','10421','SFP {#SNMPINDEX}: Serial number','zyxel.3500_8pd.sfp.serialnumber[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-ES3500-8PD-MIB Serial number provided by transceiver module vendor.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3f24d3aa58624ed0ad7a137fc9b1611a','0','2','0'), ('35603','20','get[1.3.6.1.4.1.890.1.5.8.72.117.1.1.2.{#SNMPINDEX}]','10421','SFP {#SNMPINDEX}: Status','zyxel.3500_8pd.sfp.status[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','365d','0','3','','','','',NULL,'367','','','0','','','','','2',NULL,'MIB: ZYXEL-ES3500-8PD-MIB Transceiver module status.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','054942c20bca4459b26e41aca8657e4c','0','2','0'), ('35604','20','get[1.3.6.1.4.1.890.1.5.8.72.117.1.1.8.{#SNMPINDEX}]','10421','SFP {#SNMPINDEX}: Transceiver','zyxel.3500_8pd.sfp.transceiver[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-ES3500-8PD-MIB Transceiver module type names.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7621973ef61b47c9bc034eec3d008957','0','2','0'), ('35605','20','get[1.3.6.1.4.1.890.1.5.8.72.117.1.1.3.{#SNMPINDEX}]','10421','SFP {#SNMPINDEX}: Vendor','zyxel.3500_8pd.sfp.vendor[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-ES3500-8PD-MIB Transceiver module vendor name.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','715feecd140b4e9ca350b41490f7c7f9','0','2','0'), ('35606','20','get[1.3.6.1.4.1.890.1.5.8.72.9.2.1.2.{#SNMPINDEX}]','10421','Temperature "{#ZYXEL.TEMP.ID}"','zyxel.3500_8pd.temp[{#SNMPINDEX}]','1m','31d','365d','0','3','','!°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-ES3500-8PD-MIB The current temperature measured at this sensor','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f884edb984ab42ce8abffed0f66a2347','0','2','0'), ('35607','20','get[1.3.6.1.4.1.890.1.5.8.72.9.3.1.2.{#SNMPINDEX}]','10421','Nominal "{#ZYXEL.VOLT.NOMINAL}"','zyxel.3500_8pd.volt[{#SNMPINDEX}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-ES3500-8PD-MIB The current voltage reading.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','01838a79d7304d838798bd2d6b427936','0','2','0'), ('35608','5','','10422','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'368','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2839fec9602a4162bb0acfb1be89fd57','0','2','0'), ('35609','20','get[1.3.6.1.2.1.1.4.0]','10422','Contact','zyxel.4012f.contact','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','831444715edf4a12baf6a5727ba9276c','0','2','0'), ('35610','20','get[1.3.6.1.4.1.890.1.5.8.20.12.7.0]','10422','CPU utilization','zyxel.4012f.cpuusage','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-GS4012F-MIB Show device CPU load in %, it''s the snapshot of CPU load when getting the values.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e2a6ce044f6d40bebb50927cc70bd593','0','2','0'), ('35611','20','discovery[{#SNMP.ARRAY},1.3.6.1.4.1.890.1.5.8.20.1]','10422','ZyNOS F/W Version','zyxel.4012f.fwversion','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-GS4012F-MIB','17','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','adb85140eb8c4b6489078dc79bd61a87','0','2','0'), ('35612','20','get[1.3.6.1.2.1.1.6.0]','10422','Location','zyxel.4012f.location','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The physical location of this node (e.g., `telephone closet, 3rd floor'').','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f55214647bab4544adb7d9a63e8be69d','0','2','0'), ('35613','20','get[1.3.6.1.2.1.2.2.1.6.1]','10422','MAC address','zyxel.4012f.mac','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IF-MIB The interface''s address at the protocol layer immediately `below'' the network layer in the protocol stack. For interfaces which do not have such an address (e.g., a serial line), this object should contain an octet string of zero length.','12','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','770d70d2ebcb4978b6c6fae0692ab77f','0','2','0'), ('35614','20','get[1.3.6.1.2.1.1.1.0]','10422','Hardware model name','zyxel.4012f.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software. It is mandatory that this only contain printable ASCII characters.','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','25c5e9b3d34f4bb8805e2a6c43934f51','0','2','0'), ('35615','20','get[1.3.6.1.2.1.1.5.0]','10422','Host name','zyxel.4012f.name','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB An administratively-assigned name for this managed node. By convention, this is the node''s fully-qualified domain name.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','38fb81dca1db49bc83343ba197bfe980','0','2','0'), ('35616','20','get[1.3.6.1.4.1.890.1.5.8.20.1.10.0]','10422','Hardware serial number','zyxel.4012f.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-GS4012F-MIB Serial number','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0080e896f1384245887a191d87496fa9','0','2','0'), ('35617','20','get[1.3.6.1.2.1.1.3.0]','10422','Uptime (network)','zyxel.4012f.net.uptime','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1c14e77679fe4ee6b167036d8888867e','0','2','0'), ('35618','20','discovery[{#ZYXEL.FANRPM.THRESH.LOW},1.3.6.1.4.1.890.1.5.8.20.9.1.1.5]','10422','Fan discovery','zyxel.4012f.fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in fanRpmTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','344cd89247db49ba854ab6edb504086d','0','2','0'), ('35619','20','discovery[{#ZYXEL.IF.NAME},1.3.6.1.4.1.890.1.5.8.20.23.1.1.3,{#ZYXEL.IF.LINKUPTYPE},1.3.6.1.4.1.890.1.5.8.20.23.1.1.5]','10422','Interface discovery','zyxel.4012f.net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2f731cdb2e2943fbae17b6858859eb7a','0','2','0'), ('35620','20','discovery[{#ZYXEL.TEMP.THRESH.HIGH},1.3.6.1.4.1.890.1.5.8.20.9.2.1.5]','10422','Temperature discovery','zyxel.4012f.temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in tempTable. Index of temperature unit. 1:MAC, 2:CPU, 3:PHY','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','de7fbcbcaa8a460d8048e7816ccc1a87','0','2','0'), ('35621','20','discovery[{#ZYXEL.VOLT.THRESH.LOW},1.3.6.1.4.1.890.1.5.8.20.9.3.1.6,{#ZYXEL.VOLT.NOMINAL},1.3.6.1.4.1.890.1.5.8.20.9.3.1.5]','10422','Voltage discovery','zyxel.4012f.volt.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in voltageTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','88047112669f4d7eae81c8bb514ddecb','0','2','0'), ('35622','20','get[1.3.6.1.4.1.890.1.5.8.20.9.1.1.2.{#SNMPINDEX}]','10422','Fan #{#SNMPINDEX}','zyxel.4012f.fan[{#SNMPINDEX}]','1m','31d','365d','0','3','','!rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-GS4012F-MIB Current speed in Revolutions Per Minute (RPM) on the fan.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0f7fb278c896436c96fb1b5006ee4e06','0','2','0'), ('35623','20','get[1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}]','10422','Port {#SNMPINDEX}: Administrative status','zyxel.4012f.net.if.adminstatus[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'371','','','0','','','','','2',NULL,'MIB: IF-MIB The desired state of the interface. The testing(3) state indicates that no operational packets can be passed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2b87dc4104704d3891ac061aaa81c629','0','2','0'), ('35624','20','get[1.3.6.1.4.1.890.1.5.8.20.23.1.1.3.{#SNMPINDEX}]','10422','Port {#SNMPINDEX}: Interface description','zyxel.4012f.net.if.name[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-GS4012F-MIB A textual string containing information about the interface','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5c439eae60184abd8ec9b209cda19f8b','0','2','0'), ('35625','15','','10422','Port {#SNMPINDEX}: Outgoing utilization','zyxel.4012f.net.if.out.util[{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.4012f.net.if.out.traffic[{#SNMPINDEX}]) * (last(//zyxel.4012f.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.4012f.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.4012f.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','98fffdb492a149b7b684e3867b113d37','0','2','0'), ('35626','20','get[1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX}]','10422','Port {#SNMPINDEX}: Outgoing unicast packages','zyxel.4012f.net.if.out.ucastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were not addressed to a multicast or broadcast address at this sub-layer, including those that were discarded or not sent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','870c54f85d57473c8b48ed896d5e2b2b','0','2','0'), ('35627','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10422','Port {#SNMPINDEX}: Outgoing traffic','zyxel.4012f.net.if.out.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','69ab1d86cd0347b49e2500a1d8e7e6a8','0','2','0'), ('35628','20','get[1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX}]','10422','Port {#SNMPINDEX}: Outgoing multicast packages','zyxel.4012f.net.if.out.multicastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were addressed to a multicast address at this sub-layer, including those that were discarded or not sent. For a MAC layer protocol, this includes both Group and Functional addresses.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5ac33c29b537409cb6347548290e5ecc','0','2','0'), ('35629','20','get[1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX}]','10422','Port {#SNMPINDEX}: Outgoing broadcast packages','zyxel.4012f.net.if.out.broadcastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were addressed to a broadcast address at this sub-layer, including those that were discarded or not sent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0f3decaec17a4812aac826056cce9e8a','0','2','0'), ('35630','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10422','Port {#SNMPINDEX}: Operational status','zyxel.4012f.net.if.operstatus[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'372','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. The testing(3) state indicates that no operational packets can be passed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','033b0e5b141b437c805b845f2e3f54a0','0','2','0'), ('35631','20','get[1.3.6.1.4.1.890.1.5.8.20.23.1.1.5.{#SNMPINDEX}]','10422','Port {#SNMPINDEX}: Link type','zyxel.4012f.net.if.link_type[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'369','','','0','','','','','2',NULL,'MIB: ZYXEL-GS4012F-MIB Physical connection type','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a63165d407e740c38cab55aefeccbca8','0','2','0'), ('35632','20','get[1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX}]','10422','Port {#SNMPINDEX}: Interface name','zyxel.4012f.net.if.descr[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB A textual string containing information about the interface','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','32abe2903d1c4652a74a44c5154f1451','0','2','0'), ('35633','15','','10422','Port {#SNMPINDEX}: Incoming utilization','zyxel.4012f.net.if.in.util[{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.4012f.net.if.in.traffic[{#SNMPINDEX}]) * (last(//zyxel.4012f.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.4012f.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.4012f.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8c0eca407f47404a86d26c5fb1885f87','0','2','0'), ('35634','20','get[1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX}]','10422','Port {#SNMPINDEX}: Incoming unicast packages','zyxel.4012f.net.if.in.ucastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were not addressed to a multicast or broadcast address at this sub-layer','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4b7a80cf38d44dd9b270dcbc5c44ecfc','0','2','0'), ('35635','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10422','Port {#SNMPINDEX}: Incoming traffic','zyxel.4012f.net.if.in.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7240d04927a742dd93844c1fcc68dba0','0','2','0'), ('35636','20','get[1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX}]','10422','Port {#SNMPINDEX}: Incoming multicast packages','zyxel.4012f.net.if.in.multicastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a multicast address at this sub-layer. For a MAC layer protocol, this includes both Group and Functional addresses.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8dda9a8e70bc44c5acca08284eb94bac','0','2','0'), ('35637','20','get[1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX}]','10422','Port {#SNMPINDEX}: Incoming broadcast packages','zyxel.4012f.net.if.in.broadcastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a broadcast address at this sub-layer.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a71a364726524a6e9d00eb4098fa5faa','0','2','0'), ('35638','20','get[1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}]','10422','Port {#SNMPINDEX}: Link speed','zyxel.4012f.net.if.highspeed[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in bits per second','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','42040f2ca85e4f80bdc4bdc9d0ef5966','0','2','0'), ('35639','20','get[1.3.6.1.4.1.890.1.5.8.20.23.1.1.1.{#SNMPINDEX}]','10422','Port {#SNMPINDEX}: Speed Duplex','zyxel.4012f.net.if.speed_duplex[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'370','','','0','','','','','2',NULL,'MIB: ZYXEL-GS4012F-MIB Transmission mode','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','64037c50f0344d02ae06690e91c7ead8','0','2','0'), ('35640','20','get[1.3.6.1.4.1.890.1.5.8.20.9.2.1.2.{#SNMPINDEX}]','10422','Temperature "{#ZYXEL.TEMP.ID}"','zyxel.4012f.temp[{#SNMPINDEX}]','1m','31d','365d','0','3','','!°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-GS4012F-MIB The current temperature measured at this sensor','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ee82e6f1916a4ce7b5cd77f0249cc2af','0','2','0'), ('35641','20','get[1.3.6.1.4.1.890.1.5.8.20.9.3.1.2.{#SNMPINDEX}]','10422','Nominal "{#ZYXEL.VOLT.NOMINAL}"','zyxel.4012f.volt[{#SNMPINDEX}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-GS4012F-MIB The current voltage reading.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b5cb92c8d63a41158e7072b8ebf33ca1','0','2','0'), ('35642','5','','10423','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'373','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dbaf039727f542a6935223c944fab95d','0','2','0'), ('35643','20','get[1.3.6.1.2.1.1.4.0]','10423','Contact','zyxel.ies500x.contact','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5bc150cfc9b147e68b5d15a750546a3f','0','2','0'), ('35644','20','get[1.3.6.1.2.1.1.6.0]','10423','Location','zyxel.ies500x.location','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The physical location of this node (e.g., `telephone closet, 3rd floor'').','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cd669772d4454a359f1c372dce4a01de','0','2','0'), ('35645','20','get[1.3.6.1.2.1.2.2.1.6.1]','10423','MAC address','zyxel.ies500x.mac','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IF-MIB The interface''s address at the protocol layer immediately `below'' the network layer in the protocol stack. For interfaces which do not have such an address (e.g., a serial line), this object should contain an octet string of zero length.','12','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','591148b198854413aed834874bf8f137','0','2','0'), ('35646','20','get[1.3.6.1.2.1.1.1.0]','10423','Hardware model name','zyxel.ies500x.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software. It is mandatory that this only contain printable ASCII characters.','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aa26dcc1d8c54feaaa70d42c6ff4d1c7','0','2','0'), ('35647','20','get[1.3.6.1.2.1.1.5.0]','10423','Host name','zyxel.ies500x.name','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB An administratively-assigned name for this managed node. By convention, this is the node''s fully-qualified domain name.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ee9da829778e4da69fde78f72b5b0783','0','2','0'), ('35648','20','get[1.3.6.1.2.1.1.3.0]','10423','Uptime (network)','zyxel.ies500x.net.uptime','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','28df2d29a94d429d811dd40ceb510fcf','0','2','0'), ('35649','20','discovery[{#ZYXEL.BUFFERHIGHTHRESH},1.3.6.1.4.1.890.1.5.13.5.11.3.5.1.4]','10423','Packet buffer discovery','zyxel.ies500x.buffer.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A table that contains packet buffer usage information.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2ddba614e41f4014abef703418439e2a','0','2','0'), ('35650','20','discovery[{#ZYXEL.CPU.THRESH.HIGH},1.3.6.1.4.1.890.1.5.13.5.11.3.4.1.4]','10423','CPU discovery','zyxel.ies500x.cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A table that contains CPU utilization information. This table is supported by R1.03 and later versions.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','72237ffed25148bea512b9a977e0bbde','0','2','0'), ('35651','20','discovery[{#ZYXEL.FANRPM.THRESH.HIGH},1.3.6.1.4.1.890.1.5.13.5.11.3.1.1.7,{#ZYXEL.FANRPM.THRESH.LOW},1.3.6.1.4.1.890.1.5.13.5.11.3.1.1.5]','10423','Fan discovery','zyxel.ies500x.fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in fanRpmTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6b75915015194d40b043d69754b0e8e9','0','2','0'), ('35652','20','discovery[{#ZYXEL.MEMORYHIGHTHRESH},1.3.6.1.4.1.890.1.5.13.5.11.3.6.1.4]','10423','Memory discovery','zyxel.ies500x.memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A table that contains memory usage information.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3b33b6eb85b14bfba025b0cd4909fa3e','0','2','0'), ('35653','20','discovery[{#ZYXEL.IF.NAME},1.3.6.1.2.1.31.1.1.1.1,{#ZYXEL.IF.LINKSTATUS},1.3.6.1.2.1.2.2.1.8,{#ZYXEL.IF.DESC},1.3.6.1.2.1.31.1.1.1.18]','10423','ADSL interface discovery','zyxel.ies500x.net.adsl.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f3cb59dc48924203bc34da090f084665','0','2','0'), ('35654','20','discovery[{#ZYXEL.IF.NAME},1.3.6.1.2.1.31.1.1.1.1,{#ZYXEL.IF.LINKSTATUS},1.3.6.1.2.1.2.2.1.8,{#ZYXEL.IF.DESC},1.3.6.1.2.1.31.1.1.1.18]','10423','Ethernet interface discovery','zyxel.ies500x.net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5121e130194244869e45f9f7bda7cd01','0','2','0'), ('35655','20','discovery[{#ZYXEL.SLOTSTATUS},1.3.6.1.4.1.890.1.5.13.5.6.3.1.7,{#ZYXEL.SLOT.ID},1.3.6.1.4.1.890.1.5.13.5.6.3.1.1]','10423','Slot discovery','zyxel.ies500x.slot.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The table which contains the slot information in a chassis.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3edd9015b1794d39819acf0a2fdc35ba','0','2','0'), ('35656','20','discovery[{#ZYXEL.TEMP.THRESH.LOW},1.3.6.1.4.1.890.1.5.13.5.11.3.3.1.7,{#ZYXEL.TEMP.THRESH.HIGH},1.3.6.1.4.1.890.1.5.13.5.11.3.3.1.5]','10423','Temperature discovery','zyxel.ies500x.temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in tempTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c2d924fbfe3b44a58454e6a4392aa6a8','0','2','0'), ('35657','20','discovery[{#ZYXEL.VOLT.THRESH.HIGH},1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.8,{#ZYXEL.VOLT.THRESH.LOW},1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.6,{#ZYXEL.VOLT.NOMINAL},1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.5]','10423','Voltage discovery','zyxel.ies500x.volt.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in voltageTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dbc4a230a0bd408b9847b1507c248062','0','2','0'), ('35658','20','get[1.3.6.1.4.1.890.1.5.13.5.11.3.5.1.2.{#SNMPINDEX}]','10423','Slot {#ZYXEL.SLOT.ID}: Packet buffer utilization','zyxel.ies500x.buffer[{#SNMPINDEX}]','1m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB The packet buffer usage in the past 60 seconds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ac3d27ace5b54f80ad1dd9182d01c0fa','0','2','0'), ('35659','20','get[1.3.6.1.4.1.890.1.5.13.5.11.3.4.1.2.{#SNMPINDEX}]','10423','Slot {#ZYXEL.SLOT.ID}: CPU utilization','zyxel.ies500x.cpu[{#SNMPINDEX}]','1m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB The CPU utilization in the past 60 seconds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','570e8cb266cd4b38819f2091d3981f24','0','2','0'), ('35660','20','get[1.3.6.1.4.1.890.1.5.13.5.11.3.1.1.2.{#SNMPINDEX}]','10423','Fan #{#SNMPINDEX}','zyxel.ies500x.fan[{#SNMPINDEX}]','1m','31d','365d','0','3','','!rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB Current speed in Revolutions Per Minute (RPM) on the fan.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5edaea71cd9e4190912a9d4a916436b3','0','2','0'), ('35661','20','get[1.3.6.1.4.1.890.1.5.13.5.11.3.6.1.2.{#SNMPINDEX}]','10423','Slot {#ZYXEL.SLOT.ID}: Memory utilization','zyxel.ies500x.memory[{#SNMPINDEX}]','1m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB The memory usage in the past 60 seconds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','61d07cbd85734ea6933182cbcb77b6a8','0','2','0'), ('35662','20','get[1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}]','10423','Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Administrative status','zyxel.ies500x.net.adsl.adminstatus[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'376','','','0','','','','','2',NULL,'MIB: IF-MIB The desired state of the interface. The testing(3) state indicates that no operational packets can be passed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','be9de0c5e397414bbef8edd74d0f6500','0','2','0'), ('35663','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10423','Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming traffic','zyxel.ies500x.net.adsl.in.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fff4c400f6774b9ba5e47fbeb214e5ec','0','2','0'), ('35664','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10423','Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing traffic','zyxel.ies500x.net.adsl.out.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','70a1342e17634500ac9c896c66177de6','0','2','0'), ('35665','20','get[1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX}]','10423','Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing multicast packages','zyxel.ies500x.net.adsl.out.multicastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were addressed to a multicast address at this sub-layer, including those that were discarded or not sent. For a MAC layer protocol, this includes both Group and Functional addresses.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','420fa08f36bf487cb0af6dc64f335e7b','0','2','0'), ('35666','20','get[1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX}]','10423','Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing broadcast packages','zyxel.ies500x.net.adsl.out.broadcastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were addressed to a broadcast address at this sub-layer, including those that were discarded or not sent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7eec054602cb4f988999d80b29f25a32','0','2','0'), ('35667','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10423','Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Operational status','zyxel.ies500x.net.adsl.operstatus[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'377','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. The testing(3) state indicates that no operational packets can be passed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','216ad17a0c3348d7a250697f768a6481','0','2','0'), ('35668','20','get[1.3.6.1.2.1.31.1.1.1.1.{#SNMPINDEX}]','10423','Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Interface name','zyxel.ies500x.net.adsl.name[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB A textual string containing information about the interface','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','514910a945e34befa0ecc22ea0b89783','0','2','0'), ('35669','20','get[1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX}]','10423','Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming unicast packages','zyxel.ies500x.net.adsl.in.ucastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were not addressed to a multicast or broadcast address at this sub-layer','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4ffe4823f03b4c738b305f03ae4f1d55','0','2','0'), ('35670','20','get[1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX}]','10423','Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming multicast packages','zyxel.ies500x.net.adsl.in.multicastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a multicast address at this sub-layer. For a MAC layer protocol, this includes both Group and Functional addresses.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','05799441c906425d8f584ead3e9b909b','0','2','0'), ('35671','20','get[1.3.6.1.2.1.10.94.1.1.2.1.5.{#SNMPINDEX}]','10423','Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC attenuation','zyxel.ies500x.net.adsl.atuc.atn[{#SNMPINDEX}]','1m','31d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB Measured difference in the total power transmitted by the peer ATU and the total power received by this ATU. The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit - Central), in this case ZYXEL IES-500x, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3a97021a210442c3bdc461060fbe700b','0','2','0'), ('35672','20','get[1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX}]','10423','Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming broadcast packages','zyxel.ies500x.net.adsl.in.broadcastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a broadcast address at this sub-layer.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3df0ee0298c2445f81e1aca8ee748a50','0','2','0'), ('35673','20','get[1.3.6.1.2.1.31.1.1.1.18.{#SNMPINDEX}]','10423','Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Interface description','zyxel.ies500x.net.adsl.descr[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB A textual string containing information about the interface','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c00cf2ee74c0476f9118594d04e6640d','0','2','0'), ('35674','20','get[1.3.6.1.2.1.10.94.1.1.3.1.4.{#SNMPINDEX}]','10423','Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR noise margin','zyxel.ies500x.net.adsl.atur.snrmgn[{#SNMPINDEX}]','1m','31d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB Noise Margin as seen by this ATU with respect to its received signal in tenth dB. The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit - Remote), in this case the subscriber''s ADSL modem or router, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','691ffcf882c54ebe8d0dfa305d8497e0','0','2','0'), ('35675','20','get[1.3.6.1.2.1.10.94.1.1.3.1.7.{#SNMPINDEX}]','10423','Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR output power','zyxel.ies500x.net.adsl.atur.outpwr[{#SNMPINDEX}]','1m','31d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB Measured total output power transmitted by this ATU. The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit - Remote), in this case the subscriber''s ADSL modem or router, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','91a4b40293d54fe8bc8894303055cba3','0','2','0'), ('35676','20','get[1.3.6.1.2.1.10.94.1.1.3.1.5.{#SNMPINDEX}]','10423','Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR attenuation','zyxel.ies500x.net.adsl.atur.atn[{#SNMPINDEX}]','1m','31d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB Measured difference in the total power transmitted by the peer ATU and the total power received by this ATU. The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit - Remote), in this case the subscriber''s ADSL modem or router, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a664c452a98d4478b4663aa7cca9c19c','0','2','0'), ('35677','20','get[1.3.6.1.2.1.10.94.1.1.2.1.4.{#SNMPINDEX}]','10423','Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC noise margin','zyxel.ies500x.net.adsl.atuc.snrmgn[{#SNMPINDEX}]','1m','31d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB Noise Margin as seen by this ATU with respect to its received signal in tenth dB. The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit - Central), in this case ZYXEL IES-500x, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','540251c3a4024e4289194130853be305','0','2','0'), ('35678','20','get[1.3.6.1.2.1.10.94.1.1.2.1.7.{#SNMPINDEX}]','10423','Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC output power','zyxel.ies500x.net.adsl.atuc.outpwr[{#SNMPINDEX}]','1m','31d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB Measured total output power transmitted by this ATU. The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit - Central), in this case ZYXEL IES-500x, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','62f3eb71d01946a68d799aa6ed1d29a3','0','2','0'), ('35679','20','get[1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX}]','10423','Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing unicast packages','zyxel.ies500x.net.adsl.out.ucastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were not addressed to a multicast or broadcast address at this sub-layer, including those that were discarded or not sent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5c2f168d421e4b81a3d62e415ec8218a','0','2','0'), ('35680','20','get[1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}]','10423','Port {#SNMPINDEX}: Administrative status','zyxel.ies500x.net.if.adminstatus[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'376','','','0','','','','','2',NULL,'MIB: IF-MIB The desired state of the interface. The testing(3) state indicates that no operational packets can be passed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bc53c15035a94ed4a7537f0ab119d738','0','2','0'), ('35681','20','get[1.3.6.1.2.1.31.1.1.1.18.{#SNMPINDEX}]','10423','Port {#SNMPINDEX}: Interface description','zyxel.ies500x.net.if.descr[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB A textual string containing information about the interface','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7bd13f8dd37c417dbbc92abbcbefbdde','0','2','0'), ('35682','20','get[1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}]','10423','Port {#SNMPINDEX}: Link speed','zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in bits per second','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7ab66a4640ee4852ad0e587eb1076f9d','0','2','0'), ('35683','20','get[1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX}]','10423','Port {#SNMPINDEX}: Incoming broadcast packages','zyxel.ies500x.net.if.in.broadcastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a broadcast address at this sub-layer.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0b1508bec31642c381b4bab5b1c394fb','0','2','0'), ('35684','20','get[1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX}]','10423','Port {#SNMPINDEX}: Incoming multicast packages','zyxel.ies500x.net.if.in.multicastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a multicast address at this sub-layer. For a MAC layer protocol, this includes both Group and Functional addresses.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5a77fb99febd45feaadbb4f1c6f58ead','0','2','0'), ('35685','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10423','Port {#SNMPINDEX}: Incoming traffic','zyxel.ies500x.net.if.in.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a4375745658546598b786c43bafb629f','0','2','0'), ('35686','20','get[1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX}]','10423','Port {#SNMPINDEX}: Incoming unicast packages','zyxel.ies500x.net.if.in.ucastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were not addressed to a multicast or broadcast address at this sub-layer','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','eb00c7f533b24a06b3b9b926dc8aff2d','0','2','0'), ('35687','15','','10423','Port {#SNMPINDEX}: Incoming utilization','zyxel.ies500x.net.if.in.util[{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.ies500x.net.if.in.traffic[{#SNMPINDEX}]) * (last(//zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}]) <> 0) /( last(//zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c90cfe865d7a4fdd89970e086b04a9a7','0','2','0'), ('35688','20','get[1.3.6.1.2.1.31.1.1.1.1.{#SNMPINDEX}]','10423','Port {#SNMPINDEX}: Interface name','zyxel.ies500x.net.if.name[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB A textual string containing information about the interface','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bbbd8624e0e24db8b062625a2de1785b','0','2','0'), ('35689','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10423','Port {#SNMPINDEX}: Operational status','zyxel.ies500x.net.if.operstatus[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'377','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. The testing(3) state indicates that no operational packets can be passed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d3e519c9648c4c58a7e55a9c90d8a3c0','0','2','0'), ('35690','20','get[1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX}]','10423','Port {#SNMPINDEX}: Outgoing broadcast packages','zyxel.ies500x.net.if.out.broadcastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were addressed to a broadcast address at this sub-layer, including those that were discarded or not sent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7816c8845baa498a96cc6d0a4049357c','0','2','0'), ('35691','20','get[1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX}]','10423','Port {#SNMPINDEX}: Outgoing multicast packages','zyxel.ies500x.net.if.out.multicastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were addressed to a multicast address at this sub-layer, including those that were discarded or not sent. For a MAC layer protocol, this includes both Group and Functional addresses.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bbd80eaceee848019cfef5e20f0c356a','0','2','0'), ('35692','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10423','Port {#SNMPINDEX}: Outgoing traffic','zyxel.ies500x.net.if.out.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c9f694268c334213a39c09dbadcdd067','0','2','0'), ('35693','20','get[1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX}]','10423','Port {#SNMPINDEX}: Outgoing unicast packages','zyxel.ies500x.net.if.out.ucastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were not addressed to a multicast or broadcast address at this sub-layer, including those that were discarded or not sent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f929a7e5d0b741c4b557715fbc5a7e1f','0','2','0'), ('35694','15','','10423','Port {#SNMPINDEX}: Outgoing utilization','zyxel.ies500x.net.if.out.util[{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.ies500x.net.if.out.traffic[{#SNMPINDEX}]) * (last(//zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}]) <> 0) /( last(//zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','74beae2dcc424702a906aa736e9f9d0f','0','2','0'), ('35695','20','get[1.3.6.1.4.1.890.1.5.13.5.6.3.1.8.{#SNMPINDEX}]','10423','Slot {#ZYXEL.SLOT.ID}: Alarm status','zyxel.ies500x.slot.alarm[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB This variable indicates the alarm status of the module. It is a bit map represented a sum, therefore, it can represent multiple defects simultaneously. The moduleNoDefect should be set if and only if no other flag is set. The various bit positions are: 1 moduleNoDefect 2 moduleOverHeat 3 moduleFanRpmLow 4 moduleVoltageLow 5 moduleThermalSensorFailure 6 modulePullOut 7 powerDC48VAFailure 8 powerDC48VBFailure 9 extAlarmInputTrigger 10 moduleDown 11 mscSwitchOverOK 12 networkTopologyChange 13 macSpoof 14 cpuHigh 15 memoryUsageHigh 16 packetBufferUsageHigh 17 loopguardOccurence','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e3a25e0a2532495291446bd1a6641926','0','2','0'), ('35696','20','get[1.3.6.1.4.1.890.1.5.13.5.6.3.1.6.{#SNMPINDEX}]','10423','Slot {#ZYXEL.SLOT.ID}: DSL modem code version','zyxel.ies500x.slot.cv.ver[{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB The DSL modem code version of the plug-in card.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a58ef41b02d94d16abe294bc26fc0874','0','2','0'), ('35697','20','get[1.3.6.1.4.1.890.1.5.13.5.6.3.1.3.{#SNMPINDEX}]','10423','Slot {#ZYXEL.SLOT.ID}: Description','zyxel.ies500x.slot.desc[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB The descriptions of the plug-in card.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bf65cd99df724b64a4cad64c0681ab27','0','2','0'), ('35698','20','get[1.3.6.1.4.1.890.1.5.13.5.6.3.1.5.{#SNMPINDEX}]','10423','Slot {#ZYXEL.SLOT.ID}: Driver version','zyxel.ies500x.slot.dv.ver[{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB The DSL driver of the plug-in card.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','081fb5758fb6412890a54630d737f239','0','2','0'), ('35699','20','get[1.3.6.1.4.1.890.1.5.13.5.6.3.1.4.{#SNMPINDEX}]','10423','Slot {#ZYXEL.SLOT.ID}: Firmware version','zyxel.ies500x.slot.fw.ver[{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB The firmware version of the plug-in card.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6b3a925397094b00aa31efee03a226fa','0','2','0'), ('35700','20','get[1.3.6.1.4.1.890.1.5.13.5.6.3.1.10.{#SNMPINDEX}]','10423','Slot {#ZYXEL.SLOT.ID}: Hardware version','zyxel.ies500x.slot.hw.ver[{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB The hardware version of the plug-in card.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c16e15224326406ba5f4c58a1c2e3b2c','0','2','0'), ('35701','20','get[1.3.6.1.4.1.890.1.5.13.5.6.3.1.12.{#SNMPINDEX}]','10423','Slot {#ZYXEL.SLOT.ID}: MAC address 1','zyxel.ies500x.slot.mac1[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB The MAC Address of the plug-in card.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','eed64c81e4b54ccd9d7f0e5b86ede083','0','2','0'), ('35702','20','get[1.3.6.1.4.1.890.1.5.13.5.6.3.1.13.{#SNMPINDEX}]','10423','Slot {#ZYXEL.SLOT.ID}: MAC address 2','zyxel.ies500x.slot.mac2[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB The MAC Address of the plug-in card.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d0fdd2a7dcb348b58dd3bea0357f84b3','0','2','0'), ('35703','20','get[1.3.6.1.4.1.890.1.5.13.5.6.3.1.9.{#SNMPINDEX}]','10423','Slot {#ZYXEL.SLOT.ID}: Serial number','zyxel.ies500x.slot.serial[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB The serial number of the plug-in card.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6f9532e9368344ad8f7d35273e14c358','0','2','0'), ('35704','20','get[1.3.6.1.4.1.890.1.5.13.5.6.3.1.7.{#SNMPINDEX}]','10423','Slot {#ZYXEL.SLOT.ID}: Status','zyxel.ies500x.slot.status[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'374','','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB The module state of the plug-in card.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7b8791b7c91e4c14aa56a29617a6fa81','0','2','0'), ('35705','20','get[1.3.6.1.4.1.890.1.5.13.5.6.3.1.2.{#SNMPINDEX}]','10423','Slot {#ZYXEL.SLOT.ID}: Type','zyxel.ies500x.slot.type[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'375','','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB Card type of the plug-in card.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9387847247134f3296e077713407686e','0','2','0'), ('35706','20','get[1.3.6.1.4.1.890.1.5.13.5.6.3.1.11.{#SNMPINDEX}]','10423','Slot {#ZYXEL.SLOT.ID}: Uptime','zyxel.ies500x.slot.uptime[{#SNMPINDEX}]','1m','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB The time (in seconds) since the plug-in card was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','be141094a1ee4b2391bf8684ddca86e6','0','2','0'), ('35707','20','get[1.3.6.1.4.1.890.1.5.13.5.11.3.3.1.2.{#SNMPINDEX}]','10423','Slot {#ZYXEL.SLOT.ID}: Temperature "{#ZYXEL.TEMP.ID}"','zyxel.ies500x.temp[{#SNMPINDEX}]','1m','31d','365d','0','3','','!°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB The current temperature measured at this sensor','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c8f98b46dbc3464eaa390c504198f550','0','2','0'), ('35708','20','get[1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.2.{#SNMPINDEX}]','10423','Slot {#ZYXEL.SLOT.ID}: Nominal "{#ZYXEL.VOLT.NOMINAL}"','zyxel.ies500x.volt[{#SNMPINDEX}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB The current voltage reading.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1b3485d6cc6847639d75d4dbcfda99ea','0','2','0'), ('35709','5','','10424','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'378','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ab61e5047280486885692ba89781c9fd','0','2','0'), ('35710','20','get[1.3.6.1.2.1.1.4.0]','10424','Contact','zyxel.ies6000.contact','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c4856aae926047078d33bc760833ec12','0','2','0'), ('35711','20','get[1.3.6.1.2.1.1.6.0]','10424','Location','zyxel.ies6000.location','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The physical location of this node (e.g., `telephone closet, 3rd floor'').','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','631f2bc2963c4abb8d01b5cca6179d77','0','2','0'), ('35712','20','get[1.3.6.1.2.1.2.2.1.6.1]','10424','MAC address','zyxel.ies6000.mac','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IF-MIB The interface''s address at the protocol layer immediately `below'' the network layer in the protocol stack. For interfaces which do not have such an address (e.g., a serial line), this object should contain an octet string of zero length.','12','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','663131027cc84bd188fb4e5bd240777c','0','2','0'), ('35713','20','get[1.3.6.1.2.1.1.1.0]','10424','Hardware model name','zyxel.ies6000.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software. It is mandatory that this only contain printable ASCII characters.','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a91730326e1c4479bb330110a15ee689','0','2','0'), ('35714','20','get[1.3.6.1.2.1.1.5.0]','10424','Host name','zyxel.ies6000.name','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB An administratively-assigned name for this managed node. By convention, this is the node''s fully-qualified domain name.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2062eb7816e242668936c020e6e1d532','0','2','0'), ('35715','20','get[1.3.6.1.2.1.1.3.0]','10424','Uptime (network)','zyxel.ies6000.net.uptime','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e79a790f3ca54943997f1d0b3e74943d','0','2','0'), ('35716','20','discovery[{#ZYXEL.BUFFERHIGHTHRESH},1.3.6.1.4.1.890.1.5.13.5.11.3.5.1.4]','10424','Packet buffer discovery','zyxel.ies6000.buffer.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A table that contains packet buffer usage information.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6023c8a68b5547dcab838414cbf544ea','0','2','0'), ('35717','20','discovery[{#ZYXEL.CPU.THRESH.HIGH},1.3.6.1.4.1.890.1.5.13.5.11.3.4.1.4]','10424','CPU discovery','zyxel.ies6000.cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A table that contains CPU utilization information. This table is supported by R1.03 and later versions.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1aace4fa8bdc49d28d8785aeadcdc8d4','0','2','0'), ('35718','20','discovery[{#ZYXEL.FANRPM.THRESH.HIGH},1.3.6.1.4.1.890.1.5.13.5.11.3.1.1.7,{#ZYXEL.FANRPM.THRESH.LOW},1.3.6.1.4.1.890.1.5.13.5.11.3.1.1.5]','10424','Fan discovery','zyxel.ies6000.fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in fanRpmTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','abd64129536e4b43b5718adde7979c18','0','2','0'), ('35719','20','discovery[{#ZYXEL.MEMORYHIGHTHRESH},1.3.6.1.4.1.890.1.5.13.5.11.3.6.1.4]','10424','Memory discovery','zyxel.ies6000.memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A table that contains memory usage information.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','691c50d10ae342e0b9825c9d72a4cff9','0','2','0'), ('35720','20','discovery[{#ZYXEL.IF.NAME},1.3.6.1.2.1.31.1.1.1.1,{#ZYXEL.IF.LINKSTATUS},1.3.6.1.2.1.2.2.1.8,{#ZYXEL.IF.DESC},1.3.6.1.2.1.31.1.1.1.18]','10424','ADSL interface discovery','zyxel.ies6000.net.adsl.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cc124fe17126405f82fd61f248fe1abe','0','2','0'), ('35721','20','discovery[{#ZYXEL.IF.NAME},1.3.6.1.2.1.31.1.1.1.1,{#ZYXEL.IF.LINKSTATUS},1.3.6.1.2.1.2.2.1.8,{#ZYXEL.IF.DESC},1.3.6.1.2.1.31.1.1.1.18]','10424','Ethernet interface discovery','zyxel.ies6000.net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8f9073a53cee4e6fb8c36feda5185900','0','2','0'), ('35722','20','discovery[{#ZYXEL.SLOTSTATUS},1.3.6.1.4.1.890.1.5.13.5.6.3.1.7,{#ZYXEL.SLOT.ID},1.3.6.1.4.1.890.1.5.13.5.6.3.1.1]','10424','Slot discovery','zyxel.ies6000.slot.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The table which contains the slot information in a chassis.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','10a176c3da924a95939cd35c0d0be862','0','2','0'), ('35723','20','discovery[{#ZYXEL.TEMP.THRESH.LOW},1.3.6.1.4.1.890.1.5.13.5.11.3.3.1.7,{#ZYXEL.TEMP.THRESH.HIGH},1.3.6.1.4.1.890.1.5.13.5.11.3.3.1.5]','10424','Temperature discovery','zyxel.ies6000.temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in tempTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','65972390ff734a088e984ac6531833c6','0','2','0'), ('35724','20','discovery[{#ZYXEL.VOLT.THRESH.HIGH},1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.8,{#ZYXEL.VOLT.THRESH.LOW},1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.6,{#ZYXEL.VOLT.NOMINAL},1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.5]','10424','Voltage discovery','zyxel.ies6000.volt.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in voltageTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','86ee5ab94e9a49dca526ce6e3d9c95fa','0','2','0'), ('35725','20','get[1.3.6.1.4.1.890.1.5.13.5.11.3.5.1.2.{#SNMPINDEX}]','10424','Slot {#ZYXEL.SLOT.ID}: Packet buffer utilization','zyxel.ies6000.buffer[{#SNMPINDEX}]','1m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB The packet buffer usage in the past 60 seconds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5de9037f3a1444adbcf5bcfbe4618ad6','0','2','0'), ('35726','20','get[1.3.6.1.4.1.890.1.5.13.5.11.3.4.1.2.{#SNMPINDEX}]','10424','Slot {#ZYXEL.SLOT.ID}: CPU utilization','zyxel.ies6000.cpu[{#SNMPINDEX}]','1m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB The CPU utilization in the past 60 seconds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','209b18dabcaa4d6a8870864eec2fc898','0','2','0'), ('35727','20','get[1.3.6.1.4.1.890.1.5.13.5.11.3.1.1.2.{#SNMPINDEX}]','10424','Fan #{#SNMPINDEX}','zyxel.ies6000.fan[{#SNMPINDEX}]','1m','31d','365d','0','3','','!rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB Current speed in Revolutions Per Minute (RPM) on the fan.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cfb5021170ca4365a72e76fca74efd9c','0','2','0'), ('35728','20','get[1.3.6.1.4.1.890.1.5.13.5.11.3.6.1.2.{#SNMPINDEX}]','10424','Slot {#ZYXEL.SLOT.ID}: Memory utilization','zyxel.ies6000.memory[{#SNMPINDEX}]','1m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB The memory usage in the past 60 seconds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','41168b2146274e8d8d93d49e89b0f018','0','2','0'), ('35729','20','get[1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}]','10424','Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Administrative status','zyxel.ies6000.net.adsl.adminstatus[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'381','','','0','','','','','2',NULL,'MIB: IF-MIB The desired state of the interface. The testing(3) state indicates that no operational packets can be passed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d8a6e995233245cd8ac684232add71f0','0','2','0'), ('35730','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10424','Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming traffic','zyxel.ies6000.net.adsl.in.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f689c73f2aae4b4aa1688c584c88a562','0','2','0'), ('35731','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10424','Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing traffic','zyxel.ies6000.net.adsl.out.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','982554d0208a422d94b53a55ca566239','0','2','0'), ('35732','20','get[1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX}]','10424','Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing multicast packages','zyxel.ies6000.net.adsl.out.multicastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were addressed to a multicast address at this sub-layer, including those that were discarded or not sent. For a MAC layer protocol, this includes both Group and Functional addresses.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d2d5d679e4974b3099111cb79506cbab','0','2','0'), ('35733','20','get[1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX}]','10424','Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing broadcast packages','zyxel.ies6000.net.adsl.out.broadcastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were addressed to a broadcast address at this sub-layer, including those that were discarded or not sent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d4911b93b2084ca5b4e1c5a91bbb50af','0','2','0'), ('35734','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10424','Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Operational status','zyxel.ies6000.net.adsl.operstatus[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'382','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. The testing(3) state indicates that no operational packets can be passed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ba66aeea219840929dfbc7b8cb61b2ab','0','2','0'), ('35735','20','get[1.3.6.1.2.1.31.1.1.1.1.{#SNMPINDEX}]','10424','Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Interface name','zyxel.ies6000.net.adsl.name[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB A textual string containing information about the interface','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8d0583741866478cb77f21e4e8e982ec','0','2','0'), ('35736','20','get[1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX}]','10424','Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming unicast packages','zyxel.ies6000.net.adsl.in.ucastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were not addressed to a multicast or broadcast address at this sub-layer','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','26a0ded897e745208787710bca306658','0','2','0'), ('35737','20','get[1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX}]','10424','Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming multicast packages','zyxel.ies6000.net.adsl.in.multicastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a multicast address at this sub-layer. For a MAC layer protocol, this includes both Group and Functional addresses.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','eff728cc8d824bb98a840e07c0c370ed','0','2','0'), ('35738','20','get[1.3.6.1.2.1.10.94.1.1.2.1.5.{#SNMPINDEX}]','10424','Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC attenuation','zyxel.ies6000.net.adsl.atuc.atn[{#SNMPINDEX}]','1m','31d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB Measured difference in the total power transmitted by the peer ATU and the total power received by this ATU. The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit - Central), in this case ZYXEL IES-6000, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dfd46b4bf39140b391bb2a8ab21db668','0','2','0'), ('35739','20','get[1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX}]','10424','Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming broadcast packages','zyxel.ies6000.net.adsl.in.broadcastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a broadcast address at this sub-layer.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fd6e0cff15834d9ea5d5f5f570608abb','0','2','0'), ('35740','20','get[1.3.6.1.2.1.31.1.1.1.18.{#SNMPINDEX}]','10424','Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Interface description','zyxel.ies6000.net.adsl.descr[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB A textual string containing information about the interface','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2349bae6bb864a4f8c6c8d9b0087503f','0','2','0'), ('35741','20','get[1.3.6.1.2.1.10.94.1.1.3.1.4.{#SNMPINDEX}]','10424','Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR noise margin','zyxel.ies6000.net.adsl.atur.snrmgn[{#SNMPINDEX}]','1m','31d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB Noise Margin as seen by this ATU with respect to its received signal in tenth dB. The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit - Remote), in this case the subscriber''s ADSL modem or router, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ad834d61ca834dd987784180211320f7','0','2','0'), ('35742','20','get[1.3.6.1.2.1.10.94.1.1.3.1.7.{#SNMPINDEX}]','10424','Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR output power','zyxel.ies6000.net.adsl.atur.outpwr[{#SNMPINDEX}]','1m','31d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB Measured total output power transmitted by this ATU. The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit - Remote), in this case the subscriber''s ADSL modem or router, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c4d523e2ef9c4d7d901383e19876af80','0','2','0'), ('35743','20','get[1.3.6.1.2.1.10.94.1.1.3.1.5.{#SNMPINDEX}]','10424','Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR attenuation','zyxel.ies6000.net.adsl.atur.atn[{#SNMPINDEX}]','1m','31d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB Measured difference in the total power transmitted by the peer ATU and the total power received by this ATU. The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit - Remote), in this case the subscriber''s ADSL modem or router, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f6d71feb40954a88a2fa5ebe35af25cb','0','2','0'), ('35744','20','get[1.3.6.1.2.1.10.94.1.1.2.1.4.{#SNMPINDEX}]','10424','Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC noise margin','zyxel.ies6000.net.adsl.atuc.snrmgn[{#SNMPINDEX}]','1m','31d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB Noise Margin as seen by this ATU with respect to its received signal in tenth dB. The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit - Central), in this case ZYXEL IES-6000, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','292d33986274498b819ab0b6b3ac3c21','0','2','0'), ('35745','20','get[1.3.6.1.2.1.10.94.1.1.2.1.7.{#SNMPINDEX}]','10424','Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC output power','zyxel.ies6000.net.adsl.atuc.outpwr[{#SNMPINDEX}]','1m','31d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB Measured total output power transmitted by this ATU. The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit - Central), in this case ZYXEL IES-6000, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0b77f799291548de84478dff54742afe','0','2','0'), ('35746','20','get[1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX}]','10424','Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing unicast packages','zyxel.ies6000.net.adsl.out.ucastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were not addressed to a multicast or broadcast address at this sub-layer, including those that were discarded or not sent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','49c3f935e21248b69ea351e1210cc62d','0','2','0'), ('35747','20','get[1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}]','10424','Port {#SNMPINDEX}: Administrative status','zyxel.ies6000.net.if.adminstatus[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'381','','','0','','','','','2',NULL,'MIB: IF-MIB The desired state of the interface. The testing(3) state indicates that no operational packets can be passed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c96f6a48c03f4a92a5a75a6e6d603079','0','2','0'), ('35748','20','get[1.3.6.1.2.1.31.1.1.1.18.{#SNMPINDEX}]','10424','Port {#SNMPINDEX}: Interface description','zyxel.ies6000.net.if.descr[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB A textual string containing information about the interface','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a70d2041768945a6906ab0cbe0f518ae','0','2','0'), ('35749','20','get[1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}]','10424','Port {#SNMPINDEX}: Link speed','zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in bits per second','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cee8836a0e00466fbe72a5de85007a49','0','2','0'), ('35750','20','get[1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX}]','10424','Port {#SNMPINDEX}: Incoming broadcast packages','zyxel.ies6000.net.if.in.broadcastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a broadcast address at this sub-layer.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a37e15f8480e47bf8b8f542e65df0a80','0','2','0'), ('35751','20','get[1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX}]','10424','Port {#SNMPINDEX}: Incoming multicast packages','zyxel.ies6000.net.if.in.multicastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a multicast address at this sub-layer. For a MAC layer protocol, this includes both Group and Functional addresses.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c3c7164096c845b599267186f66aa8ee','0','2','0'), ('35752','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10424','Port {#SNMPINDEX}: Incoming traffic','zyxel.ies6000.net.if.in.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','03aeeb2bb9c9454ebd91714fff1eb713','0','2','0'), ('35753','20','get[1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX}]','10424','Port {#SNMPINDEX}: Incoming unicast packages','zyxel.ies6000.net.if.in.ucastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were not addressed to a multicast or broadcast address at this sub-layer','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c2b9296b58bf4617b86348c82f88b1c2','0','2','0'), ('35754','15','','10424','Port {#SNMPINDEX}: Incoming utilization','zyxel.ies6000.net.if.in.util[{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.ies6000.net.if.in.traffic[{#SNMPINDEX}]) * (last(//zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}]) <> 0) /( last(//zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2dc6ed1aacb84706bccd26c9c4e1e944','0','2','0'), ('35755','20','get[1.3.6.1.2.1.31.1.1.1.1.{#SNMPINDEX}]','10424','Port {#SNMPINDEX}: Interface name','zyxel.ies6000.net.if.name[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB A textual string containing information about the interface','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c4a8c8d0b51d496cbae4089ffee1e531','0','2','0'), ('35756','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10424','Port {#SNMPINDEX}: Operational status','zyxel.ies6000.net.if.operstatus[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'382','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. The testing(3) state indicates that no operational packets can be passed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','00c015d42840420c9878ef84177c8d42','0','2','0'), ('35757','20','get[1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX}]','10424','Port {#SNMPINDEX}: Outgoing broadcast packages','zyxel.ies6000.net.if.out.broadcastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were addressed to a broadcast address at this sub-layer, including those that were discarded or not sent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ff5b7d95366d47c68589c65b4b0dcb15','0','2','0'), ('35758','20','get[1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX}]','10424','Port {#SNMPINDEX}: Outgoing multicast packages','zyxel.ies6000.net.if.out.multicastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were addressed to a multicast address at this sub-layer, including those that were discarded or not sent. For a MAC layer protocol, this includes both Group and Functional addresses.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e88787c50f654d5295d03b55d94810bf','0','2','0'), ('35759','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10424','Port {#SNMPINDEX}: Outgoing traffic','zyxel.ies6000.net.if.out.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ac2959db86d44152b4a87294ee817dd7','0','2','0'), ('35760','20','get[1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX}]','10424','Port {#SNMPINDEX}: Outgoing unicast packages','zyxel.ies6000.net.if.out.ucastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were not addressed to a multicast or broadcast address at this sub-layer, including those that were discarded or not sent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c11fc8f0eacc42e5a6ca2443bdca60ce','0','2','0'), ('35761','15','','10424','Port {#SNMPINDEX}: Outgoing utilization','zyxel.ies6000.net.if.out.util[{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.ies6000.net.if.out.traffic[{#SNMPINDEX}]) * (last(//zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}]) <> 0) /( last(//zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6ef41c7cc0074674b43d583a8fa36868','0','2','0'), ('35762','20','get[1.3.6.1.4.1.890.1.5.13.5.6.3.1.8.{#SNMPINDEX}]','10424','Slot {#ZYXEL.SLOT.ID}: Alarm status','zyxel.ies6000.slot.alarm[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB This variable indicates the alarm status of the module. It is a bit map represented a sum, therefore, it can represent multiple defects simultaneously. The moduleNoDefect should be set if and only if no other flag is set. The various bit positions are: 1 moduleNoDefect 2 moduleOverHeat 3 moduleFanRpmLow 4 moduleVoltageLow 5 moduleThermalSensorFailure 6 modulePullOut 7 powerDC48VAFailure 8 powerDC48VBFailure 9 extAlarmInputTrigger 10 moduleDown 11 mscSwitchOverOK 12 networkTopologyChange 13 macSpoof 14 cpuHigh 15 memoryUsageHigh 16 packetBufferUsageHigh 17 loopguardOccurence','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7be6d40418f94284902c742fef1ada43','0','2','0'), ('35763','20','get[1.3.6.1.4.1.890.1.5.13.5.6.3.1.6.{#SNMPINDEX}]','10424','Slot {#ZYXEL.SLOT.ID}: DSL modem code version','zyxel.ies6000.slot.cv.ver[{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB The DSL modem code version of the plug-in card.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6ce4b55490ed425b8fbc1ad337071730','0','2','0'), ('35764','20','get[1.3.6.1.4.1.890.1.5.13.5.6.3.1.3.{#SNMPINDEX}]','10424','Slot {#ZYXEL.SLOT.ID}: Description','zyxel.ies6000.slot.desc[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB The descriptions of the plug-in card.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','780fdca5ba10495d8ae1dfec6a655d4a','0','2','0'), ('35765','20','get[1.3.6.1.4.1.890.1.5.13.5.6.3.1.5.{#SNMPINDEX}]','10424','Slot {#ZYXEL.SLOT.ID}: Driver version','zyxel.ies6000.slot.dv.ver[{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB The DSL driver of the plug-in card.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a0dc5b9a8968401a832dfd76cda474f1','0','2','0'), ('35766','20','get[1.3.6.1.4.1.890.1.5.13.5.6.3.1.4.{#SNMPINDEX}]','10424','Slot {#ZYXEL.SLOT.ID}: Firmware version','zyxel.ies6000.slot.fw.ver[{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB The firmware version of the plug-in card.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e74a7678743c4739b98160a9cf3d516b','0','2','0'), ('35767','20','get[1.3.6.1.4.1.890.1.5.13.5.6.3.1.10.{#SNMPINDEX}]','10424','Slot {#ZYXEL.SLOT.ID}: Hardware version','zyxel.ies6000.slot.hw.ver[{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB The hardware version of the plug-in card.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','96ee73d987be4576b6b40f21d43ebbac','0','2','0'), ('35768','20','get[1.3.6.1.4.1.890.1.5.13.5.6.3.1.12.{#SNMPINDEX}]','10424','Slot {#ZYXEL.SLOT.ID}: MAC address 1','zyxel.ies6000.slot.mac1[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB The MAC Address of the plug-in card.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aa0c1799930a46d9a658f26bf3549a18','0','2','0'), ('35769','20','get[1.3.6.1.4.1.890.1.5.13.5.6.3.1.13.{#SNMPINDEX}]','10424','Slot {#ZYXEL.SLOT.ID}: MAC address 2','zyxel.ies6000.slot.mac2[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB The MAC Address of the plug-in card.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6fdbc67b2612400c9e8372b310ca496e','0','2','0'), ('35770','20','get[1.3.6.1.4.1.890.1.5.13.5.6.3.1.9.{#SNMPINDEX}]','10424','Slot {#ZYXEL.SLOT.ID}: Serial number','zyxel.ies6000.slot.serial[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB The serial number of the plug-in card.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5edbf1b21ca5436a9522f5dcfe80b61d','0','2','0'), ('35771','20','get[1.3.6.1.4.1.890.1.5.13.5.6.3.1.7.{#SNMPINDEX}]','10424','Slot {#ZYXEL.SLOT.ID}: Status','zyxel.ies6000.slot.status[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'379','','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB The module state of the plug-in card.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5eeedb8e70764975872bd6dc6bc10821','0','2','0'), ('35772','20','get[1.3.6.1.4.1.890.1.5.13.5.6.3.1.2.{#SNMPINDEX}]','10424','Slot {#ZYXEL.SLOT.ID}: Type','zyxel.ies6000.slot.type[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'380','','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB Card type of the plug-in card.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ea78751ce7954aa5b84caf9bdfcfeefd','0','2','0'), ('35773','20','get[1.3.6.1.4.1.890.1.5.13.5.6.3.1.11.{#SNMPINDEX}]','10424','Slot {#ZYXEL.SLOT.ID}: Uptime','zyxel.ies6000.slot.uptime[{#SNMPINDEX}]','1m','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB The time (in seconds) since the plug-in card was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','37de3e96e8d8420192e6aae7a56ff9ef','0','2','0'), ('35774','20','get[1.3.6.1.4.1.890.1.5.13.5.11.3.3.1.2.{#SNMPINDEX}]','10424','Slot {#ZYXEL.SLOT.ID}: Temperature "{#ZYXEL.TEMP.ID}"','zyxel.ies6000.temp[{#SNMPINDEX}]','1m','31d','365d','0','3','','!°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB The current temperature measured at this sensor','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','352f409f553f4805854690b51d83b061','0','2','0'), ('35775','20','get[1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.2.{#SNMPINDEX}]','10424','Slot {#ZYXEL.SLOT.ID}: Nominal "{#ZYXEL.VOLT.NOMINAL}"','zyxel.ies6000.volt[{#SNMPINDEX}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IES5000-MIB The current voltage reading.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','36940f27f78248d48ed8caf34fc15721','0','2','0'), ('35776','5','','10425','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'383','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','03cf90df51e0466c8b31744ce820276f','0','2','0'), ('35777','20','get[1.3.6.1.2.1.1.4.0]','10425','Contact','zyxel.ies1248.contact','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a01b8490f3b94ac5ab500d67171cfe1a','0','2','0'), ('35778','20','get[1.3.6.1.4.1.890.1.5.13.1.1.3.1.4.0.0]','10425','ZyNOS F/W Version','zyxel.ies1248.fwversion','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-IESCOMMON-MIB','17','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','56974ccbede04e9eb966951ac3c88250','0','2','0'), ('35779','20','get[1.3.6.1.2.1.1.6.0]','10425','Location','zyxel.ies1248.location','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The physical location of this node (e.g., `telephone closet, 3rd floor'').','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','600e6a8b9dd549b69f64f1a536bce7de','0','2','0'), ('35780','20','get[1.3.6.1.2.1.2.2.1.6.1]','10425','MAC address','zyxel.ies1248.mac','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IF-MIB The interface''s address at the protocol layer immediately `below'' the network layer in the protocol stack. For interfaces which do not have such an address (e.g., a serial line), this object should contain an octet string of zero length.','12','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ad09c90a951a4c41b935a70f58f5c26a','0','2','0'), ('35781','20','get[1.3.6.1.2.1.1.1.0]','10425','Hardware model name','zyxel.ies1248.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software. It is mandatory that this only contain printable ASCII characters.','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','427ef42e55ca498db16d078ed41e7ad9','0','2','0'), ('35782','20','get[1.3.6.1.2.1.1.5.0]','10425','Host name','zyxel.ies1248.name','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB An administratively-assigned name for this managed node. By convention, this is the node''s fully-qualified domain name.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8c6546b670d4455aa1234c35bb033ac7','0','2','0'), ('35783','20','get[1.3.6.1.4.1.890.1.5.13.1.1.2.1.3.0]','10425','Hardware serial number','zyxel.ies1248.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-IESCOMMON-MIB Serial number','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0d30380bb9a24bd1939d16287d5d0711','0','2','0'), ('35784','20','get[1.3.6.1.4.1.890.1.5.13.1.1.3.1.8.0.0]','10425','Alarm status','zyxel.ies1248.slot.alarm','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-IESCOMMON-MIB This variable indicates the alarm status of the module. It is a bit map represented a sum, therefore, it can represent multiple defects simultaneously. The moduleNoDefect should be set if and only if no other flag is set. The various bit positions are: 1 moduleNoDefect 2 moduleOverHeat 3 moduleFanRpmLow 4 moduleVoltageLow 5 moduleThermalSensorFailure 6 modulePullOut 7 powerDC48VAFailure 8 powerDC48VBFailure 9 extAlarmInputTrigger 10 moduleDown 11 mscSwitchOverOK 12 networkTopologyChange 13 macSpoof 14 cpuHigh 15 memoryUsageHigh 16 packetBufferUsageHigh 17 loopguardOccurence','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bafdca2040ba44be911fd1e5a09f3298','0','2','0'), ('35785','20','get[1.3.6.1.2.1.1.3.0]','10425','Uptime (network)','zyxel.ies1248.net.uptime','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ba41848140394ac29fe9b77e77627f20','0','2','0'), ('35786','20','discovery[{#ZYXEL.FANRPM.THRESH.LOW},1.3.6.1.4.1.890.1.5.13.1.2.1.1.5]','10425','Fan discovery','zyxel.ies1248.fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in fanRpmTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9ffacb42c2fe4abd9e8d10e4b8803fc2','0','2','0'), ('35787','20','discovery[{#ZYXEL.IF.NAME},1.3.6.1.2.1.2.2.1.2,{#ZYXEL.IF.LINKSTATUS},1.3.6.1.2.1.2.2.1.8]','10425','ADSL interface discovery','zyxel.ies1248.net.adsl.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','47dc5ba65f25444c961b7684d65bbc07','0','2','0'), ('35788','20','discovery[{#ZYXEL.IF.NAME},1.3.6.1.2.1.2.2.1.2,{#ZYXEL.IF.LINKSTATUS},1.3.6.1.2.1.2.2.1.8]','10425','Ethernet interface discovery','zyxel.ies1248.net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4b32903336ad4c9e826cfd65a89a8960','0','2','0'), ('35789','20','discovery[{#ZYXEL.TEMP.ID},1.3.6.1.4.1.890.1.5.13.1.2.3.1.1,{#ZYXEL.TEMP.THRESH.HIGH},1.3.6.1.4.1.890.1.5.13.1.2.3.1.5]','10425','Temperature discovery','zyxel.ies1248.temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in tempTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f8e1575174f9414e9ddf1459a420b2d6','0','2','0'), ('35790','20','discovery[{#ZYXEL.VOLT.THRESH.LOW},1.3.6.1.4.1.890.1.5.13.1.2.2.1.6,{#ZYXEL.VOLT.NOMINAL},1.3.6.1.4.1.890.1.5.13.1.2.2.1.5]','10425','Voltage discovery','zyxel.ies1248.volt.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in voltageTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a2df63bd07f24277acf36e7a3854bd81','0','2','0'), ('35791','20','get[1.3.6.1.4.1.890.1.5.13.1.2.1.1.2.{#SNMPINDEX}]','10425','Fan #{#SNMPINDEX}','zyxel.ies1248.fan[{#SNMPINDEX}]','1m','31d','365d','0','3','','!rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IESCOMMON-MIB Current speed in Revolutions Per Minute (RPM) on the fan.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d420958f89f04467b5aa4d41c565160b','0','2','0'), ('35792','20','get[1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}]','10425','Port {#SNMPINDEX}: Administrative status','zyxel.ies1248.net.adsl.adminstatus[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'384','','','0','','','','','2',NULL,'MIB: IF-MIB The desired state of the interface. The testing(3) state indicates that no operational packets can be passed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ca789e47cbfc4ee080a25e7003e92fad','0','2','0'), ('35793','20','get[1.3.6.1.2.1.10.94.1.1.2.1.5.{#SNMPINDEX}]','10425','Port {#SNMPINDEX}: ATUC attenuation','zyxel.ies1248.net.adsl.atuc.atn[{#SNMPINDEX}]','1m','31d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB Measured difference in the total power transmitted by the peer ATU and the total power received by this ATU. The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit - Central), in this case ZYXEL IES1248-51, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7c13234155f343bc90bf1584a7f0fb3f','0','2','0'), ('35794','20','get[1.3.6.1.2.1.10.94.1.1.2.1.7.{#SNMPINDEX}]','10425','Port {#SNMPINDEX}: ATUC output power','zyxel.ies1248.net.adsl.atuc.outpwr[{#SNMPINDEX}]','1m','31d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB Measured total output power transmitted by this ATU. The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit - Central), in this case ZYXEL IES1248-51, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','524bf397c9a640c48716fa20e4c45034','0','2','0'), ('35795','20','get[1.3.6.1.2.1.10.94.1.1.2.1.4.{#SNMPINDEX}]','10425','Port {#SNMPINDEX}: ATUC noise margin','zyxel.ies1248.net.adsl.atuc.snrmgn[{#SNMPINDEX}]','1m','31d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB Noise Margin as seen by this ATU with respect to its received signal in tenth dB. The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit - Central), in this case ZYXEL IES1248-51, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ed1768b17f0f434392c5cbc91ddd5222','0','2','0'), ('35796','20','get[1.3.6.1.2.1.10.94.1.1.3.1.5.{#SNMPINDEX}]','10425','Port {#SNMPINDEX}: ATUR attenuation','zyxel.ies1248.net.adsl.atur.atn[{#SNMPINDEX}]','1m','31d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB Measured difference in the total power transmitted by the peer ATU and the total power received by this ATU. The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit - Remote), in this case the subscriber''s ADSL modem or router, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0dd3a9f10abb4a8a92f627228c9fbb52','0','2','0'), ('35797','20','get[1.3.6.1.2.1.10.94.1.1.3.1.7.{#SNMPINDEX}]','10425','Port {#SNMPINDEX}: ATUR output power','zyxel.ies1248.net.adsl.atur.outpwr[{#SNMPINDEX}]','1m','31d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB Measured total output power transmitted by this ATU. The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit - Remote), in this case the subscriber''s ADSL modem or router, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','54c5b104d96945eca7cf402a2e910f90','0','2','0'), ('35798','20','get[1.3.6.1.2.1.10.94.1.1.3.1.4.{#SNMPINDEX}]','10425','Port {#SNMPINDEX}: ATUR noise margin','zyxel.ies1248.net.adsl.atur.snrmgn[{#SNMPINDEX}]','1m','31d','365d','0','0','','dB','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ADSL-LINE-MIB Noise Margin as seen by this ATU with respect to its received signal in tenth dB. The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit - Remote), in this case the subscriber''s ADSL modem or router, during negotiation/provisioning message interchanges.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9744b18d3eec4bd2954ec7ea29e341fd','0','2','0'), ('35799','20','get[1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX}]','10425','Port {#SNMPINDEX}: Incoming traffic','zyxel.ies1248.net.adsl.in.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b7f622f72f98417cab3954717d311080','0','2','0'), ('35800','20','get[1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX}]','10425','Port {#SNMPINDEX}: Interface name','zyxel.ies1248.net.adsl.name[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB A textual string containing information about the interface','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bff933861d744ee5a3229c2c6b1dc4c0','0','2','0'), ('35801','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10425','Port {#SNMPINDEX}: Operational status','zyxel.ies1248.net.adsl.operstatus[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'385','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. The testing(3) state indicates that no operational packets can be passed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','25c07c59e30e42b191162fa40066c8b8','0','2','0'), ('35802','20','get[1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX}]','10425','Port {#SNMPINDEX}: Outgoing traffic','zyxel.ies1248.net.adsl.out.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6df1c990c9dc49caa151dfc989d055b9','0','2','0'), ('35803','20','get[1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}]','10425','Port {#ZYXEL.IF.NAME}: Administrative status','zyxel.ies1248.net.if.adminstatus[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'384','','','0','','','','','2',NULL,'MIB: IF-MIB The desired state of the interface. The testing(3) state indicates that no operational packets can be passed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8d402a2674084fdb9d26bc5caeafc34f','0','2','0'), ('35804','20','get[1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX}]','10425','Port {#ZYXEL.IF.NAME}: Incoming traffic','zyxel.ies1248.net.if.in.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','de5cf230831840cc985b63ba58d05059','0','2','0'), ('35805','20','get[1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX}]','10425','Port {#SNMPINDEX}: Interface name','zyxel.ies1248.net.if.name[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB A textual string containing information about the interface','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','eeb4236d4ebe4cb396413f13d1fa669b','0','2','0'), ('35806','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10425','Port {#ZYXEL.IF.NAME}: Operational status','zyxel.ies1248.net.if.operstatus[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'385','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. The testing(3) state indicates that no operational packets can be passed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cd0bbc3c587a47e6a2a2307343a377b7','0','2','0'), ('35807','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10425','Port {#ZYXEL.IF.NAME}: Outgoing traffic','zyxel.ies1248.net.if.out.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2e39a01f6315444cb3ae47836945b514','0','2','0'), ('35808','20','get[1.3.6.1.4.1.890.1.5.13.1.2.3.1.2.{#SNMPINDEX}]','10425','Temperature "{#ZYXEL.TEMP.ID}"','zyxel.ies1248.temp[{#SNMPINDEX}]','1m','31d','365d','0','3','','!°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IESCOMMON-MIB The current temperature measured at this sensor','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3049c6b2d6024949bbb240c9104418e6','0','2','0'), ('35809','20','get[1.3.6.1.4.1.890.1.5.13.1.2.2.1.2.{#SNMPINDEX}]','10425','Nominal "{#ZYXEL.VOLT.NOMINAL}"','zyxel.ies1248.volt[{#SNMPINDEX}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-IESCOMMON-MIB The current voltage reading.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','747034dc53c34554ad141a70dd5905f0','0','2','0'), ('35810','5','','10426','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'386','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','836a8ccc430a4ede87906b9f9eef8471','0','2','0'), ('35811','20','get[1.3.6.1.2.1.1.4.0]','10426','Contact','zyxel.3528.contact','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7f947ff733314b23be2cea634a1fba75','0','2','0'), ('35812','20','get[1.3.6.1.4.1.890.1.5.8.51.12.7.0]','10426','CPU utilization','zyxel.3528.cpuusage','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-MES3528-MIB Show device CPU load in %, it''s the snapshot of CPU load when getting the values.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c7bd32a8835842d7b469f2323cc8a308','0','2','0'), ('35813','20','discovery[{#SNMP.ARRAY},1.3.6.1.4.1.890.1.5.8.51.1]','10426','ZyNOS F/W Version','zyxel.3528.fwversion','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-MES3528-MIB','17','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c650e217f92c4e2ca1ec94f391dfe706','0','2','0'), ('35814','20','get[1.3.6.1.2.1.1.6.0]','10426','Location','zyxel.3528.location','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The physical location of this node (e.g., `telephone closet, 3rd floor'').','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','679445d352f14db4b5401efa5661447d','0','2','0'), ('35815','20','get[1.3.6.1.2.1.2.2.1.6.1]','10426','MAC address','zyxel.3528.mac','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IF-MIB The interface''s address at the protocol layer immediately `below'' the network layer in the protocol stack. For interfaces which do not have such an address (e.g., a serial line), this object should contain an octet string of zero length.','12','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1b4f56edba2a486a9c48ccafaa10eb09','0','2','0'), ('35816','20','get[1.3.6.1.2.1.1.1.0]','10426','Hardware model name','zyxel.3528.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software. It is mandatory that this only contain printable ASCII characters.','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','050fbf9b7c544678b79b37572984f698','0','2','0'), ('35817','20','get[1.3.6.1.2.1.1.5.0]','10426','Host name','zyxel.3528.name','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB An administratively-assigned name for this managed node. By convention, this is the node''s fully-qualified domain name.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2411ebd40ee94b6285f4a6abf6127e04','0','2','0'), ('35818','20','get[1.3.6.1.4.1.890.1.5.8.51.1.10.0]','10426','Hardware serial number','zyxel.3528.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-MES3528-MIB Serial number','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ea25cf79e45f40398580afd48e0bb9c8','0','2','0'), ('35819','20','get[1.3.6.1.2.1.1.3.0]','10426','Uptime (network)','zyxel.3528.net.uptime','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','351295fe155543c18930541c20ccac58','0','2','0'), ('35820','20','discovery[{#ZYXEL.IF.NAME},1.3.6.1.4.1.890.1.5.8.51.24.1.1.3,{#ZYXEL.IF.LINKUPTYPE},1.3.6.1.4.1.890.1.5.8.51.24.1.1.5]','10426','Interface discovery','zyxel.3528.net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ebe2a413217c4239805f3f592f551b7c','0','2','0'), ('35821','20','discovery[{#ZYXEL.SFP.WARN.MAX},1.3.6.1.4.1.890.1.5.8.51.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},1.3.6.1.4.1.890.1.5.8.51.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},1.3.6.1.4.1.890.1.5.8.51.117.2.1.8]','10426','SFP with DDM discovery','zyxel.3528.sfp.ddm.discovery','12h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'SFP DDM module discovery.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a4850c41f31a4bdfa3506c2ef3077d88','0','2','0'), ('35822','20','discovery[{#ZYXEL.SFP.STATUS},1.3.6.1.4.1.890.1.5.8.51.117.1.1.2]','10426','SFP without DDM discovery','zyxel.3528.sfp.discovery','12h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'SFP module discovery.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0c1fabd98e134f9dab698bb0794afa93','0','2','0'), ('35823','20','get[1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}]','10426','Port {#SNMPINDEX}: Administrative status','zyxel.3528.net.if.adminstatus[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'389','','','0','','','','','2',NULL,'MIB: IF-MIB The desired state of the interface. The testing(3) state indicates that no operational packets can be passed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6dc0efb31738415a884d15020d9e30a9','0','2','0'), ('35824','20','get[1.3.6.1.4.1.890.1.5.8.51.24.1.1.3.{#SNMPINDEX}]','10426','Port {#SNMPINDEX}: Interface description','zyxel.3528.net.if.name[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3528-MIB A textual string containing information about the interface','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5a30094c57b54d89b1d61a73616e186e','0','2','0'), ('35825','15','','10426','Port {#SNMPINDEX}: Outgoing utilization','zyxel.3528.net.if.out.util[{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.3528.net.if.out.traffic[{#SNMPINDEX}]) * (last(//zyxel.3528.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.3528.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.3528.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3dd1d62e9cdb402b888b7ccbe3cbb182','0','2','0'), ('35826','20','get[1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX}]','10426','Port {#SNMPINDEX}: Outgoing unicast packages','zyxel.3528.net.if.out.ucastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were not addressed to a multicast or broadcast address at this sub-layer, including those that were discarded or not sent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d7b17c5521a94b13b3ef6528fedcf5e0','0','2','0'), ('35827','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10426','Port {#SNMPINDEX}: Outgoing traffic','zyxel.3528.net.if.out.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','63f92516450d4dbcbea481231caf89f6','0','2','0'), ('35828','20','get[1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX}]','10426','Port {#SNMPINDEX}: Outgoing multicast packages','zyxel.3528.net.if.out.multicastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were addressed to a multicast address at this sub-layer, including those that were discarded or not sent. For a MAC layer protocol, this includes both Group and Functional addresses.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9dae4fa8d9c2494aa01478dc9605b066','0','2','0'), ('35829','20','get[1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX}]','10426','Port {#SNMPINDEX}: Outgoing broadcast packages','zyxel.3528.net.if.out.broadcastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were addressed to a broadcast address at this sub-layer, including those that were discarded or not sent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','873ba4c47c1c4525b52d53e6d98e8b6e','0','2','0'), ('35830','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10426','Port {#SNMPINDEX}: Operational status','zyxel.3528.net.if.operstatus[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'390','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. The testing(3) state indicates that no operational packets can be passed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1ed72a56523b48e89b964f6c4afc8800','0','2','0'), ('35831','20','get[1.3.6.1.4.1.890.1.5.8.51.24.1.1.5.{#SNMPINDEX}]','10426','Port {#SNMPINDEX}: Link type','zyxel.3528.net.if.link_type[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'387','','','0','','','','','2',NULL,'MIB: ZYXEL-MES3528-MIB Physical connection type','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9a45866adc3043ad81c7778b4334b317','0','2','0'), ('35832','20','get[1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX}]','10426','Port {#SNMPINDEX}: Interface name','zyxel.3528.net.if.descr[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB A textual string containing information about the interface','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e719364c125048e8a1fb6712e507863b','0','2','0'), ('35833','15','','10426','Port {#SNMPINDEX}: Incoming utilization','zyxel.3528.net.if.in.util[{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.3528.net.if.in.traffic[{#SNMPINDEX}]) * (last(//zyxel.3528.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.3528.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.3528.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c2792996d52045c9ad4c955f6330264e','0','2','0'), ('35834','20','get[1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX}]','10426','Port {#SNMPINDEX}: Incoming unicast packages','zyxel.3528.net.if.in.ucastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were not addressed to a multicast or broadcast address at this sub-layer','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','681460dffc9242fba072eacd503fd190','0','2','0'), ('35835','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10426','Port {#SNMPINDEX}: Incoming traffic','zyxel.3528.net.if.in.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','41f4b8bb9e1c461e8ef834348589e468','0','2','0'), ('35836','20','get[1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX}]','10426','Port {#SNMPINDEX}: Incoming multicast packages','zyxel.3528.net.if.in.multicastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a multicast address at this sub-layer. For a MAC layer protocol, this includes both Group and Functional addresses.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','184f7cfcfe964ea9b2b310a666c77420','0','2','0'), ('35837','20','get[1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX}]','10426','Port {#SNMPINDEX}: Incoming broadcast packages','zyxel.3528.net.if.in.broadcastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a broadcast address at this sub-layer.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9f1720f6286a4b038724563a32f97844','0','2','0'), ('35838','20','get[1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}]','10426','Port {#SNMPINDEX}: Link speed','zyxel.3528.net.if.highspeed[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in bits per second','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b2225fa57c0d468b9b0a40b220d50639','0','2','0'), ('35839','20','get[1.3.6.1.4.1.890.1.5.8.51.24.1.1.1.{#SNMPINDEX}]','10426','Port {#SNMPINDEX}: Speed Duplex','zyxel.3528.net.if.speed_duplex[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'388','','','0','','','','','2',NULL,'MIB: ZYXEL-MES3528-MIB Transmission mode','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','284e41a49397492590bbcf34e1881553','0','2','0'), ('35840','20','get[1.3.6.1.4.1.890.1.5.8.51.117.2.1.7.{#SNMPINDEX}]','10426','SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','zyxel.3528.sfp.ddm[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','365d','0','0','','!{#ZYXEL.SFP.UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3528-MIB Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','732084ce0daf4e8085c43e16982e4aba','0','2','0'), ('35841','20','get[1.3.6.1.4.1.890.1.5.8.51.117.1.1.7.{#SNMPINDEX}]','10426','SFP {#SNMPINDEX}: Date code','zyxel.3528.sfp.datecode[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3528-MIB Transceiver module vendor''s manufacturing date code.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2d09724ecd8147d298ae2a2486921ccb','0','2','0'), ('35842','20','get[1.3.6.1.4.1.890.1.5.8.51.117.1.1.4.{#SNMPINDEX}]','10426','SFP {#SNMPINDEX}: Part number','zyxel.3528.sfp.part[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3528-MIB Part number provided by transceiver module vendor.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9d9e08755fa444efb408d3db30843098','0','2','0'), ('35843','20','get[1.3.6.1.4.1.890.1.5.8.51.117.1.1.6.{#SNMPINDEX}]','10426','SFP {#SNMPINDEX}: Revision','zyxel.3528.sfp.revision[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3528-MIB Revision level for part number provided by transceiver module vendor.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','90952405b1504eabb6e5436eaa179f5a','0','2','0'), ('35844','20','get[1.3.6.1.4.1.890.1.5.8.51.117.1.1.5.{#SNMPINDEX}]','10426','SFP {#SNMPINDEX}: Serial number','zyxel.3528.sfp.serialnumber[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3528-MIB Serial number provided by transceiver module vendor.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','83d084e9a0554e8eae31b0bd38aefe72','0','2','0'), ('35845','20','get[1.3.6.1.4.1.890.1.5.8.51.117.1.1.2.{#SNMPINDEX}]','10426','SFP {#SNMPINDEX}: Status','zyxel.3528.sfp.status[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','365d','0','3','','','','',NULL,'391','','','0','','','','','2',NULL,'MIB: ZYXEL-MES3528-MIB Transceiver module status.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ecbd3db41592408d8e9fe0d1d6078a3f','0','2','0'), ('35846','20','get[1.3.6.1.4.1.890.1.5.8.51.117.1.1.8.{#SNMPINDEX}]','10426','SFP {#SNMPINDEX}: Transceiver','zyxel.3528.sfp.transceiver[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3528-MIB Transceiver module type names.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','049cbbcea720493f9638d08f928710cb','0','2','0'), ('35847','20','get[1.3.6.1.4.1.890.1.5.8.51.117.1.1.3.{#SNMPINDEX}]','10426','SFP {#SNMPINDEX}: Vendor','zyxel.3528.sfp.vendor[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3528-MIB Transceiver module vendor name.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5ece25cae49f47169a335be40dee744a','0','2','0'), ('35848','5','','10427','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'392','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1ec18d9656654a9e9114ba2b5ff965b1','0','2','0'), ('35849','20','get[1.3.6.1.2.1.1.4.0]','10427','Contact','zyxel.3500_10.contact','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','84a1eb118ad2453ca5a5ccca6111516b','0','2','0'), ('35850','20','get[1.3.6.1.4.1.890.1.5.8.80.12.7.0]','10427','CPU utilization','zyxel.3500_10.cpuusage','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-MES3500-10-MIB Show device CPU load in %, it''s the snapshot of CPU load when getting the values.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dd6585221297476885e900c54a820ae7','0','2','0'), ('35851','20','discovery[{#SNMP.ARRAY},1.3.6.1.4.1.890.1.5.8.80.1]','10427','ZyNOS F/W Version','zyxel.3500_10.fwversion','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-MES3500-10-MIB','17','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','144931a31b2a4a52978679a6a029fc8e','0','2','0'), ('35852','20','get[1.3.6.1.2.1.1.6.0]','10427','Location','zyxel.3500_10.location','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The physical location of this node (e.g., `telephone closet, 3rd floor'').','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0005f568cd384734b9f21e846648cd5f','0','2','0'), ('35853','20','get[1.3.6.1.2.1.2.2.1.6.1]','10427','MAC address','zyxel.3500_10.mac','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IF-MIB The interface''s address at the protocol layer immediately `below'' the network layer in the protocol stack. For interfaces which do not have such an address (e.g., a serial line), this object should contain an octet string of zero length.','12','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3bc8285eebad410996c4697022038345','0','2','0'), ('35854','20','get[1.3.6.1.2.1.1.1.0]','10427','Hardware model name','zyxel.3500_10.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software. It is mandatory that this only contain printable ASCII characters.','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b270937507f345f88421cf1825c29917','0','2','0'), ('35855','20','get[1.3.6.1.2.1.1.5.0]','10427','Host name','zyxel.3500_10.name','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB An administratively-assigned name for this managed node. By convention, this is the node''s fully-qualified domain name.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','831783fc67ab49b1be0ae5132fb2d8df','0','2','0'), ('35856','20','get[1.3.6.1.4.1.890.1.5.8.80.1.10.0]','10427','Hardware serial number','zyxel.3500_10.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-MES3500-10-MIB Serial number','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a0d17f11a5624f4e8520ee5e583ad322','0','2','0'), ('35857','20','get[1.3.6.1.2.1.1.3.0]','10427','Uptime (network)','zyxel.3500_10.net.uptime','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d581384242074b07a4c5cd03a562827c','0','2','0'), ('35858','20','discovery[{#ZYXEL.MEMORY.NAME},1.3.6.1.4.1.890.1.5.8.80.124.1.1.2]','10427','Memory pool discovery','zyxel.3500_10.memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ae66d16a5531489580d394e040950ecb','0','2','0'), ('35859','20','discovery[{#ZYXEL.IF.NAME},1.3.6.1.4.1.890.1.5.8.80.24.1.1.3,{#ZYXEL.IF.LINKUPTYPE},1.3.6.1.4.1.890.1.5.8.80.24.1.1.5]','10427','Interface discovery','zyxel.3500_10.net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b8cd74eeb2b94ceeba49157ccb617bb8','0','2','0'), ('35860','20','discovery[{#ZYXEL.SFP.WARN.MAX},1.3.6.1.4.1.890.1.5.8.80.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},1.3.6.1.4.1.890.1.5.8.80.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},1.3.6.1.4.1.890.1.5.8.80.117.2.1.8]','10427','SFP with DDM discovery','zyxel.3500_10.sfp.ddm.discovery','12h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'SFP DDM module discovery.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1c6952a276fa454bb83f64a11424b7ec','0','2','0'), ('35861','20','discovery[{#ZYXEL.SFP.STATUS},1.3.6.1.4.1.890.1.5.8.80.117.1.1.2]','10427','SFP without DDM discovery','zyxel.3500_10.sfp.discovery','12h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'SFP module discovery.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fb3dea0bae0e45b0a9ca4969a7b33843','0','2','0'), ('35862','20','discovery[{#ZYXEL.TEMP.THRESH.HIGH},1.3.6.1.4.1.890.1.5.8.80.9.2.1.5]','10427','Temperature discovery','zyxel.3500_10.temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in tempTable. Index of temperature unit. 1:MAC, 2:CPU, 3:PHY','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','39ef9d256f8847fca6077524f01270c1','0','2','0'), ('35863','20','discovery[{#ZYXEL.VOLT.THRESH.LOW},1.3.6.1.4.1.890.1.5.8.80.9.3.1.6,{#ZYXEL.VOLT.NOMINAL},1.3.6.1.4.1.890.1.5.8.80.9.3.1.5]','10427','Voltage discovery','zyxel.3500_10.volt.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in voltageTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c78ffbc1aa2547a2a5c387ecc68cac1f','0','2','0'), ('35864','20','get[1.3.6.1.4.1.890.1.5.8.80.124.1.1.5.{#SNMPINDEX}]','10427','Memory "{#ZYXEL.MEMORY.NAME}" utilization','zyxel.3500_10.memory[{#SNMPINDEX}]','1m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-10-MIB Utilization of memory pool in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','20c3127430534c049073c43a039fd29d','0','2','0'), ('35865','20','get[1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}]','10427','Port {#SNMPINDEX}: Administrative status','zyxel.3500_10.net.if.adminstatus[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'395','','','0','','','','','2',NULL,'MIB: IF-MIB The desired state of the interface. The testing(3) state indicates that no operational packets can be passed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d300b380e4bc44f89ac7a40083d424ed','0','2','0'), ('35866','20','get[1.3.6.1.4.1.890.1.5.8.80.24.1.1.3.{#SNMPINDEX}]','10427','Port {#SNMPINDEX}: Interface description','zyxel.3500_10.net.if.name[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-10-MIB A textual string containing information about the interface','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4c45f11441f4450e9f310ffb1d999a68','0','2','0'), ('35867','15','','10427','Port {#SNMPINDEX}: Outgoing utilization','zyxel.3500_10.net.if.out.util[{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.3500_10.net.if.out.traffic[{#SNMPINDEX}]) * (last(//zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dffcc1796e8b4a3c84f9d925b3644215','0','2','0'), ('35868','20','get[1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX}]','10427','Port {#SNMPINDEX}: Outgoing unicast packages','zyxel.3500_10.net.if.out.ucastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were not addressed to a multicast or broadcast address at this sub-layer, including those that were discarded or not sent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8888c9da5191443facfec4c865181d18','0','2','0'), ('35869','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10427','Port {#SNMPINDEX}: Outgoing traffic','zyxel.3500_10.net.if.out.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f563a76ec9ae4f62ad1601f1d91549d2','0','2','0'), ('35870','20','get[1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX}]','10427','Port {#SNMPINDEX}: Outgoing multicast packages','zyxel.3500_10.net.if.out.multicastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were addressed to a multicast address at this sub-layer, including those that were discarded or not sent. For a MAC layer protocol, this includes both Group and Functional addresses.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7638a07162bd4668b086f0d07d4a6513','0','2','0'), ('35871','20','get[1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX}]','10427','Port {#SNMPINDEX}: Outgoing broadcast packages','zyxel.3500_10.net.if.out.broadcastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were addressed to a broadcast address at this sub-layer, including those that were discarded or not sent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','521a2ac2ff0c42c282380c45bd12706f','0','2','0'), ('35872','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10427','Port {#SNMPINDEX}: Operational status','zyxel.3500_10.net.if.operstatus[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'396','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. The testing(3) state indicates that no operational packets can be passed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a2269b48020a46c193830f8cc1ef3595','0','2','0'), ('35873','20','get[1.3.6.1.4.1.890.1.5.8.80.24.1.1.5.{#SNMPINDEX}]','10427','Port {#SNMPINDEX}: Link type','zyxel.3500_10.net.if.link_type[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'393','','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-10-MIB Physical connection type','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','66572368d798449baa945b3985156e07','0','2','0'), ('35874','20','get[1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX}]','10427','Port {#SNMPINDEX}: Interface name','zyxel.3500_10.net.if.descr[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB A textual string containing information about the interface','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5a4b1c62b5834ecea8a90b71cb7c5f2e','0','2','0'), ('35875','15','','10427','Port {#SNMPINDEX}: Incoming utilization','zyxel.3500_10.net.if.in.util[{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.3500_10.net.if.in.traffic[{#SNMPINDEX}]) * (last(//zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e4963aa170554edebb356515c04aaafb','0','2','0'), ('35876','20','get[1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX}]','10427','Port {#SNMPINDEX}: Incoming unicast packages','zyxel.3500_10.net.if.in.ucastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were not addressed to a multicast or broadcast address at this sub-layer','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','31e8e47755804816882d2070ecfca130','0','2','0'), ('35877','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10427','Port {#SNMPINDEX}: Incoming traffic','zyxel.3500_10.net.if.in.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b1843c913e6d4f638e43da1c92807a4f','0','2','0'), ('35878','20','get[1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX}]','10427','Port {#SNMPINDEX}: Incoming multicast packages','zyxel.3500_10.net.if.in.multicastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a multicast address at this sub-layer. For a MAC layer protocol, this includes both Group and Functional addresses.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','846dfcfcdd974d1e9f8ec71f54f8933b','0','2','0'), ('35879','20','get[1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX}]','10427','Port {#SNMPINDEX}: Incoming broadcast packages','zyxel.3500_10.net.if.in.broadcastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a broadcast address at this sub-layer.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7c6f62ebe1ec48e080c0edb36cf2304c','0','2','0'), ('35880','20','get[1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}]','10427','Port {#SNMPINDEX}: Link speed','zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in bits per second','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bba418acc01d4732891c775c68bad518','0','2','0'), ('35881','20','get[1.3.6.1.4.1.890.1.5.8.80.24.1.1.1.{#SNMPINDEX}]','10427','Port {#SNMPINDEX}: Speed Duplex','zyxel.3500_10.net.if.speed_duplex[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'394','','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-10-MIB Transmission mode','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a54d1c46a1c842b88854be651c4e4caa','0','2','0'), ('35882','20','get[1.3.6.1.4.1.890.1.5.8.80.117.2.1.7.{#SNMPINDEX}]','10427','SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','zyxel.3500_10.sfp.ddm[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','365d','0','0','','!{#ZYXEL.SFP.UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-10-MIB Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','13ddb64324c4401da5e742a93698e2f6','0','2','0'), ('35883','20','get[1.3.6.1.4.1.890.1.5.8.80.117.1.1.7.{#SNMPINDEX}]','10427','SFP {#SNMPINDEX}: Date code','zyxel.3500_10.sfp.datecode[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-10-MIB Transceiver module vendor''s manufacturing date code.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aab3e0e09bc64de0a2e7322cfb4da68e','0','2','0'), ('35884','20','get[1.3.6.1.4.1.890.1.5.8.80.117.1.1.4.{#SNMPINDEX}]','10427','SFP {#SNMPINDEX}: Part number','zyxel.3500_10.sfp.part[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-10-MIB Part number provided by transceiver module vendor.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2f338f7f29464e0b88ebe7d3ec69050a','0','2','0'), ('35885','20','get[1.3.6.1.4.1.890.1.5.8.80.117.1.1.6.{#SNMPINDEX}]','10427','SFP {#SNMPINDEX}: Revision','zyxel.3500_10.sfp.revision[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-10-MIB Revision level for part number provided by transceiver module vendor.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','53582950f20e474ba4b6f46c42bc3216','0','2','0'), ('35886','20','get[1.3.6.1.4.1.890.1.5.8.80.117.1.1.5.{#SNMPINDEX}]','10427','SFP {#SNMPINDEX}: Serial number','zyxel.3500_10.sfp.serialnumber[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-10-MIB Serial number provided by transceiver module vendor.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cecd4ba3b9014400a2d5d5b1b98f5463','0','2','0'), ('35887','20','get[1.3.6.1.4.1.890.1.5.8.80.117.1.1.2.{#SNMPINDEX}]','10427','SFP {#SNMPINDEX}: Status','zyxel.3500_10.sfp.status[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','365d','0','3','','','','',NULL,'397','','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-10-MIB Transceiver module status.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b09aad7939cb4897bff413ef956bebfe','0','2','0'), ('35888','20','get[1.3.6.1.4.1.890.1.5.8.80.117.1.1.8.{#SNMPINDEX}]','10427','SFP {#SNMPINDEX}: Transceiver','zyxel.3500_10.sfp.transceiver[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-10-MIB Transceiver module type names.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3878fecf990d4cb6aba13225b2bbfa59','0','2','0'), ('35889','20','get[1.3.6.1.4.1.890.1.5.8.80.117.1.1.3.{#SNMPINDEX}]','10427','SFP {#SNMPINDEX}: Vendor','zyxel.3500_10.sfp.vendor[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-10-MIB Transceiver module vendor name.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3c8dfe57cab242c2ade6139e8666e621','0','2','0'), ('35890','20','get[1.3.6.1.4.1.890.1.5.8.80.9.2.1.2.{#SNMPINDEX}]','10427','Temperature "{#ZYXEL.TEMP.ID}"','zyxel.3500_10.temp[{#SNMPINDEX}]','1m','31d','365d','0','3','','!°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-10-MIB The current temperature measured at this sensor','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','60f580a757814d2a9b320b6810a8f65d','0','2','0'), ('35891','20','get[1.3.6.1.4.1.890.1.5.8.80.9.3.1.2.{#SNMPINDEX}]','10427','Nominal "{#ZYXEL.VOLT.NOMINAL}"','zyxel.3500_10.volt[{#SNMPINDEX}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-10-MIB The current voltage reading.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2f842775bf27436ab28278754594e5b9','0','2','0'), ('35892','5','','10428','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'398','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7d30d099448e408bb7be13881e4149ed','0','2','0'), ('35893','20','get[1.3.6.1.2.1.1.4.0]','10428','Contact','zyxel.3500_24.contact','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7e1745e5130f4b7cb2b31814fecd6792','0','2','0'), ('35894','20','get[1.3.6.1.4.1.890.1.5.8.68.12.7.0]','10428','CPU utilization','zyxel.3500_24.cpuusage','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-MES3500-24-MIB Show device CPU load in %, it''s the snapshot of CPU load when getting the values.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','31029f8a8cc541908b8f765b27254ecd','0','2','0'), ('35895','20','discovery[{#SNMP.ARRAY},1.3.6.1.4.1.890.1.5.8.68.1]','10428','ZyNOS F/W Version','zyxel.3500_24.fwversion','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-MES3500-24-MIB','17','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','53e694b360254f2896301e78cf982650','0','2','0'), ('35896','20','get[1.3.6.1.2.1.1.6.0]','10428','Location','zyxel.3500_24.location','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The physical location of this node (e.g., `telephone closet, 3rd floor'').','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5aa2128d8530415f855a0d33b7fb9c7f','0','2','0'), ('35897','20','get[1.3.6.1.2.1.2.2.1.6.1]','10428','MAC address','zyxel.3500_24.mac','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IF-MIB The interface''s address at the protocol layer immediately `below'' the network layer in the protocol stack. For interfaces which do not have such an address (e.g., a serial line), this object should contain an octet string of zero length.','12','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a8209492e29040a3896abf35019e6cdd','0','2','0'), ('35898','20','get[1.3.6.1.2.1.1.1.0]','10428','Hardware model name','zyxel.3500_24.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software. It is mandatory that this only contain printable ASCII characters.','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1820c7b7d903402dab0d7c8fb251f9bc','0','2','0'), ('35899','20','get[1.3.6.1.2.1.1.5.0]','10428','Host name','zyxel.3500_24.name','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB An administratively-assigned name for this managed node. By convention, this is the node''s fully-qualified domain name.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b5fc886ab5b94f929e866d4a2e9c5648','0','2','0'), ('35900','20','get[1.3.6.1.4.1.890.1.5.8.68.1.10.0]','10428','Hardware serial number','zyxel.3500_24.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-MES3500-24-MIB Serial number','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b5243eb2c7664203acb4f5e6bc8da296','0','2','0'), ('35901','20','get[1.3.6.1.2.1.1.3.0]','10428','Uptime (network)','zyxel.3500_24.net.uptime','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','00c831c6cc9d415e91319b6bec15423d','0','2','0'), ('35902','20','discovery[{#ZYXEL.MEMORY.NAME},1.3.6.1.4.1.890.1.5.8.68.124.1.1.2]','10428','Memory pool discovery','zyxel.3500_24.memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','263079e9c77c4539b248a5b62b5f1b0f','0','2','0'), ('35903','20','discovery[{#ZYXEL.IF.NAME},1.3.6.1.4.1.890.1.5.8.68.24.1.1.3,{#ZYXEL.IF.LINKUPTYPE},1.3.6.1.4.1.890.1.5.8.68.24.1.1.5]','10428','Interface discovery','zyxel.3500_24.net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0f57f2a82f764b908fbc8f4d828203c6','0','2','0'), ('35904','20','discovery[{#ZYXEL.SFP.WARN.MAX},1.3.6.1.4.1.890.1.5.8.68.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},1.3.6.1.4.1.890.1.5.8.68.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},1.3.6.1.4.1.890.1.5.8.68.117.2.1.8]','10428','SFP with DDM discovery','zyxel.3500_24.sfp.ddm.discovery','12h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'SFP DDM module discovery.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','302fdabe174e425d9f32d36694453331','0','2','0'), ('35905','20','discovery[{#ZYXEL.SFP.STATUS},1.3.6.1.4.1.890.1.5.8.68.117.1.1.2]','10428','SFP without DDM discovery','zyxel.3500_24.sfp.discovery','12h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'SFP module discovery.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','998d08685c72456b959b47adabf48f3f','0','2','0'), ('35906','20','discovery[{#ZYXEL.TEMP.THRESH.HIGH},1.3.6.1.4.1.890.1.5.8.68.9.2.1.5]','10428','Temperature discovery','zyxel.3500_24.temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in tempTable. Index of temperature unit. 1:MAC, 2:CPU, 3:PHY','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','034f5965d39940d29ac58641f3b01183','0','2','0'), ('35907','20','discovery[{#ZYXEL.VOLT.THRESH.LOW},1.3.6.1.4.1.890.1.5.8.68.9.3.1.6,{#ZYXEL.VOLT.NOMINAL},1.3.6.1.4.1.890.1.5.8.68.9.3.1.5]','10428','Voltage discovery','zyxel.3500_24.volt.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in voltageTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2197368f67d548b7a7c6b0fe5edb5a2d','0','2','0'), ('35908','20','get[1.3.6.1.4.1.890.1.5.8.68.124.1.1.5.{#SNMPINDEX}]','10428','Memory "{#ZYXEL.MEMORY.NAME}" utilization','zyxel.3500_24.memory[{#SNMPINDEX}]','1m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-24-MIB Utilization of memory pool in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b41542121d724e1a82e72687ecce6cf2','0','2','0'), ('35909','20','get[1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}]','10428','Port {#SNMPINDEX}: Administrative status','zyxel.3500_24.net.if.adminstatus[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'401','','','0','','','','','2',NULL,'MIB: IF-MIB The desired state of the interface. The testing(3) state indicates that no operational packets can be passed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8320028ac1ca4ef8b0dce4817281887a','0','2','0'), ('35910','20','get[1.3.6.1.4.1.890.1.5.8.68.24.1.1.3.{#SNMPINDEX}]','10428','Port {#SNMPINDEX}: Interface description','zyxel.3500_24.net.if.name[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-24-MIB A textual string containing information about the interface','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6d860666d83b4886b04bb1ff2ecb19d9','0','2','0'), ('35911','15','','10428','Port {#SNMPINDEX}: Outgoing utilization','zyxel.3500_24.net.if.out.util[{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.3500_24.net.if.out.traffic[{#SNMPINDEX}]) * (last(//zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','40b0f81094014f6cb667c143b5345795','0','2','0'), ('35912','20','get[1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX}]','10428','Port {#SNMPINDEX}: Outgoing unicast packages','zyxel.3500_24.net.if.out.ucastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were not addressed to a multicast or broadcast address at this sub-layer, including those that were discarded or not sent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','08e0d078c5224b0885ea8c03af9328e4','0','2','0'), ('35913','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10428','Port {#SNMPINDEX}: Outgoing traffic','zyxel.3500_24.net.if.out.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d15d6b6ab8af4d5d8501784bb590af08','0','2','0'), ('35914','20','get[1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX}]','10428','Port {#SNMPINDEX}: Outgoing multicast packages','zyxel.3500_24.net.if.out.multicastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were addressed to a multicast address at this sub-layer, including those that were discarded or not sent. For a MAC layer protocol, this includes both Group and Functional addresses.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b13b8fecada34eed8f40ee79e2a12295','0','2','0'), ('35915','20','get[1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX}]','10428','Port {#SNMPINDEX}: Outgoing broadcast packages','zyxel.3500_24.net.if.out.broadcastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were addressed to a broadcast address at this sub-layer, including those that were discarded or not sent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9119a0ba755e426580310376d6a70b5f','0','2','0'), ('35916','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10428','Port {#SNMPINDEX}: Operational status','zyxel.3500_24.net.if.operstatus[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'402','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. The testing(3) state indicates that no operational packets can be passed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','adf6ce16961240a9a7775de2e41df3d1','0','2','0'), ('35917','20','get[1.3.6.1.4.1.890.1.5.8.68.24.1.1.5.{#SNMPINDEX}]','10428','Port {#SNMPINDEX}: Link type','zyxel.3500_24.net.if.link_type[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'399','','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-24-MIB Physical connection type','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','25f6b400af8a40b29bf83ac988bc3cd8','0','2','0'), ('35918','20','get[1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX}]','10428','Port {#SNMPINDEX}: Interface name','zyxel.3500_24.net.if.descr[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB A textual string containing information about the interface','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7309a7b73c2848088c282096c334d541','0','2','0'), ('35919','15','','10428','Port {#SNMPINDEX}: Incoming utilization','zyxel.3500_24.net.if.in.util[{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.3500_24.net.if.in.traffic[{#SNMPINDEX}]) * (last(//zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5051b4a19bad47a8b546fbfb6d5ea85e','0','2','0'), ('35920','20','get[1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX}]','10428','Port {#SNMPINDEX}: Incoming unicast packages','zyxel.3500_24.net.if.in.ucastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were not addressed to a multicast or broadcast address at this sub-layer','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','16df754a1ac94c0588e1b6be5e175ed7','0','2','0'), ('35921','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10428','Port {#SNMPINDEX}: Incoming traffic','zyxel.3500_24.net.if.in.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e759a09d0f504567bd2fc0dd9c0d8395','0','2','0'), ('35922','20','get[1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX}]','10428','Port {#SNMPINDEX}: Incoming multicast packages','zyxel.3500_24.net.if.in.multicastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a multicast address at this sub-layer. For a MAC layer protocol, this includes both Group and Functional addresses.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','22a65221bc194c03909956179180808a','0','2','0'), ('35923','20','get[1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX}]','10428','Port {#SNMPINDEX}: Incoming broadcast packages','zyxel.3500_24.net.if.in.broadcastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a broadcast address at this sub-layer.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f11f5928218a4b619b31b597895a13b2','0','2','0'), ('35924','20','get[1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}]','10428','Port {#SNMPINDEX}: Link speed','zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in bits per second','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','72efe5b4f1584d438739298561b3c8ab','0','2','0'), ('35925','20','get[1.3.6.1.4.1.890.1.5.8.68.24.1.1.1.{#SNMPINDEX}]','10428','Port {#SNMPINDEX}: Speed Duplex','zyxel.3500_24.net.if.speed_duplex[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'400','','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-24-MIB Transmission mode','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a814c27268e648f18ac9c82d5a5f78cb','0','2','0'), ('35926','20','get[1.3.6.1.4.1.890.1.5.8.68.117.2.1.7.{#SNMPINDEX}]','10428','SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','zyxel.3500_24.sfp.ddm[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','365d','0','0','','!{#ZYXEL.SFP.UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-24-MIB Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','096d50d830f144079fe0231bae2528e5','0','2','0'), ('35927','20','get[1.3.6.1.4.1.890.1.5.8.68.117.1.1.7.{#SNMPINDEX}]','10428','SFP {#SNMPINDEX}: Date code','zyxel.3500_24.sfp.datecode[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-24-MIB Transceiver module vendor''s manufacturing date code.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f17e1f42abda43c7974afb415fa1544d','0','2','0'), ('35928','20','get[1.3.6.1.4.1.890.1.5.8.68.117.1.1.4.{#SNMPINDEX}]','10428','SFP {#SNMPINDEX}: Part number','zyxel.3500_24.sfp.part[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-24-MIB Part number provided by transceiver module vendor.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b8b4d20515d748ac9bc77f8223294861','0','2','0'), ('35929','20','get[1.3.6.1.4.1.890.1.5.8.68.117.1.1.6.{#SNMPINDEX}]','10428','SFP {#SNMPINDEX}: Revision','zyxel.3500_24.sfp.revision[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-24-MIB Revision level for part number provided by transceiver module vendor.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','380d4a1f3aa041fea4108c08d7108344','0','2','0'), ('35930','20','get[1.3.6.1.4.1.890.1.5.8.68.117.1.1.5.{#SNMPINDEX}]','10428','SFP {#SNMPINDEX}: Serial number','zyxel.3500_24.sfp.serialnumber[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-24-MIB Serial number provided by transceiver module vendor.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','24dc72b317284f568e962b461bbb33de','0','2','0'), ('35931','20','get[1.3.6.1.4.1.890.1.5.8.68.117.1.1.2.{#SNMPINDEX}]','10428','SFP {#SNMPINDEX}: Status','zyxel.3500_24.sfp.status[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','365d','0','3','','','','',NULL,'403','','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-24-MIB Transceiver module status.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0b8041b750ed4734b70cce707c4782ad','0','2','0'), ('35932','20','get[1.3.6.1.4.1.890.1.5.8.68.117.1.1.8.{#SNMPINDEX}]','10428','SFP {#SNMPINDEX}: Transceiver','zyxel.3500_24.sfp.transceiver[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-24-MIB Transceiver module type names.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cf254d7b5d0d4525b8f871863a1ced2d','0','2','0'), ('35933','20','get[1.3.6.1.4.1.890.1.5.8.68.117.1.1.3.{#SNMPINDEX}]','10428','SFP {#SNMPINDEX}: Vendor','zyxel.3500_24.sfp.vendor[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-24-MIB Transceiver module vendor name.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cda45fc5cf1d44779e1a5eda3f120df2','0','2','0'), ('35934','20','get[1.3.6.1.4.1.890.1.5.8.68.9.2.1.2.{#SNMPINDEX}]','10428','Temperature "{#ZYXEL.TEMP.ID}"','zyxel.3500_24.temp[{#SNMPINDEX}]','1m','31d','365d','0','3','','!°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-24-MIB The current temperature measured at this sensor','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0ab57df406f64806a6ad93660258f08c','0','2','0'), ('35935','20','get[1.3.6.1.4.1.890.1.5.8.68.9.3.1.2.{#SNMPINDEX}]','10428','Nominal "{#ZYXEL.VOLT.NOMINAL}"','zyxel.3500_24.volt[{#SNMPINDEX}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MES3500-24-MIB The current voltage reading.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fc5ca0139747408aa65d960577bd4dbc','0','2','0'), ('35936','5','','10429','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'404','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8777bb95a4b64fd293e96b25febf3915','0','2','0'), ('35937','20','get[1.3.6.1.2.1.1.4.0]','10429','Contact','zyxel.3712.contact','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b93b020818034096a973d8e171a099b2','0','2','0'), ('35938','20','get[1.3.6.1.4.1.890.1.5.8.47.11.7.0]','10429','CPU utilization','zyxel.3712.cpuusage','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-MGS3712F-MIB Show device CPU load in %, it''s the snapshot of CPU load when getting the values.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4d13bad4f29f41b1890fa9e2709dd461','0','2','0'), ('35939','20','discovery[{#SNMP.ARRAY},1.3.6.1.4.1.890.1.5.8.47.1]','10429','ZyNOS F/W Version','zyxel.3712.fwversion','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-MGS3712F-MIB','17','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','efc31527c7af48729c1d5a229b115c55','0','2','0'), ('35940','20','get[1.3.6.1.2.1.1.6.0]','10429','Location','zyxel.3712.location','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The physical location of this node (e.g., `telephone closet, 3rd floor'').','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a52f578cc57448f0a43641c75be89ce9','0','2','0'), ('35941','20','get[1.3.6.1.2.1.2.2.1.6.1]','10429','MAC address','zyxel.3712.mac','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IF-MIB The interface''s address at the protocol layer immediately `below'' the network layer in the protocol stack. For interfaces which do not have such an address (e.g., a serial line), this object should contain an octet string of zero length.','12','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','26236c6667c9411393fb45af2324e318','0','2','0'), ('35942','20','get[1.3.6.1.2.1.1.1.0]','10429','Hardware model name','zyxel.3712.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software. It is mandatory that this only contain printable ASCII characters.','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fc5d5cfb35a14ed597623db67433dcac','0','2','0'), ('35943','20','get[1.3.6.1.2.1.1.5.0]','10429','Host name','zyxel.3712.name','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB An administratively-assigned name for this managed node. By convention, this is the node''s fully-qualified domain name.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','409fb8c9b315474db7602fba18702a1d','0','2','0'), ('35944','20','get[1.3.6.1.4.1.890.1.5.8.47.1.10.0]','10429','Hardware serial number','zyxel.3712.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-MGS3712F-MIB Serial number','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','91afb18daedc403a866302ef943beef7','0','2','0'), ('35945','20','get[1.3.6.1.2.1.1.3.0]','10429','Uptime (network)','zyxel.3712.net.uptime','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','692e0384fcf44ec1ac6df0d8925358e3','0','2','0'), ('35946','20','discovery[{#ZYXEL.FANRPM.THRESH.LOW},1.3.6.1.4.1.890.1.5.8.47.8.1.1.5]','10429','Fan discovery','zyxel.3712.fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in fanRpmTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8402d05803ff481497a5e6f95874e983','0','2','0'), ('35947','20','discovery[{#ZYXEL.IF.NAME},1.3.6.1.4.1.890.1.5.8.47.22.1.1.3,{#ZYXEL.IF.LINKUPTYPE},1.3.6.1.4.1.890.1.5.8.47.22.1.1.5]','10429','Interface discovery','zyxel.3712.net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1568af5125ee4005abc1860e0610f7c4','0','2','0'), ('35948','20','discovery[{#ZYXEL.SFP.WARN.MAX},1.3.6.1.4.1.890.1.5.8.47.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},1.3.6.1.4.1.890.1.5.8.47.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},1.3.6.1.4.1.890.1.5.8.47.117.2.1.8]','10429','SFP with DDM discovery','zyxel.3712.sfp.ddm.discovery','12h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'SFP DDM module discovery.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','65477e8c3f8948aea5f6101b08e307cc','0','2','0'), ('35949','20','discovery[{#ZYXEL.SFP.STATUS},1.3.6.1.4.1.890.1.5.8.47.117.1.1.2]','10429','SFP without DDM discovery','zyxel.3712.sfp.discovery','12h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'SFP module discovery.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e780a6c3b3db45d9b539bba14ca89ef9','0','2','0'), ('35950','20','discovery[{#ZYXEL.TEMP.THRESH.HIGH},1.3.6.1.4.1.890.1.5.8.47.8.2.1.5]','10429','Temperature discovery','zyxel.3712.temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in tempTable. Index of temperature unit. 1:MAC, 2:CPU, 3:PHY','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6a39668b647f49f19591451cc977cc92','0','2','0'), ('35951','20','discovery[{#ZYXEL.VOLT.THRESH.LOW},1.3.6.1.4.1.890.1.5.8.47.8.3.1.6,{#ZYXEL.VOLT.NOMINAL},1.3.6.1.4.1.890.1.5.8.47.8.3.1.5]','10429','Voltage discovery','zyxel.3712.volt.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in voltageTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fdaa0461127c489fac83161e9d388e8f','0','2','0'), ('35952','20','get[1.3.6.1.4.1.890.1.5.8.47.8.1.1.2.{#SNMPINDEX}]','10429','Fan #{#SNMPINDEX}','zyxel.3712.fan[{#SNMPINDEX}]','1m','31d','365d','0','3','','!rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB Current speed in Revolutions Per Minute (RPM) on the fan.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','568dd120eb8b409dbc8c19d5869c6978','0','2','0'), ('35953','20','get[1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}]','10429','Port {#SNMPINDEX}: Administrative status','zyxel.3712.net.if.adminstatus[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'407','','','0','','','','','2',NULL,'MIB: IF-MIB The desired state of the interface. The testing(3) state indicates that no operational packets can be passed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9a97d9e95dba4ba88e08ccbd48acce07','0','2','0'), ('35954','20','get[1.3.6.1.4.1.890.1.5.8.47.22.1.1.3.{#SNMPINDEX}]','10429','Port {#SNMPINDEX}: Interface description','zyxel.3712.net.if.name[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB A textual string containing information about the interface','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2b4c245972454f24b703d4cb29581dfc','0','2','0'), ('35955','15','','10429','Port {#SNMPINDEX}: Outgoing utilization','zyxel.3712.net.if.out.util[{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.3712.net.if.out.traffic[{#SNMPINDEX}]) * (last(//zyxel.3712.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.3712.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.3712.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d8b945fc71534a00ba35867d62bc8703','0','2','0'), ('35956','20','get[1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX}]','10429','Port {#SNMPINDEX}: Outgoing unicast packages','zyxel.3712.net.if.out.ucastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were not addressed to a multicast or broadcast address at this sub-layer, including those that were discarded or not sent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8580f10654ea4020ae08d2917fdb8b17','0','2','0'), ('35957','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10429','Port {#SNMPINDEX}: Outgoing traffic','zyxel.3712.net.if.out.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2e5d50c95f4942e08f54feb989058cd0','0','2','0'), ('35958','20','get[1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX}]','10429','Port {#SNMPINDEX}: Outgoing multicast packages','zyxel.3712.net.if.out.multicastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were addressed to a multicast address at this sub-layer, including those that were discarded or not sent. For a MAC layer protocol, this includes both Group and Functional addresses.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1f6f7e4f23ee4208a5288dd6eaf0aed8','0','2','0'), ('35959','20','get[1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX}]','10429','Port {#SNMPINDEX}: Outgoing broadcast packages','zyxel.3712.net.if.out.broadcastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were addressed to a broadcast address at this sub-layer, including those that were discarded or not sent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a28bbd54c2e54e90b7280f84e964c681','0','2','0'), ('35960','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10429','Port {#SNMPINDEX}: Operational status','zyxel.3712.net.if.operstatus[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'408','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. The testing(3) state indicates that no operational packets can be passed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e12e5d4b36db44c38968652a048f1a26','0','2','0'), ('35961','20','get[1.3.6.1.4.1.890.1.5.8.47.22.1.1.5.{#SNMPINDEX}]','10429','Port {#SNMPINDEX}: Link type','zyxel.3712.net.if.link_type[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'405','','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB Physical connection type','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4a4c54e3736246e1a534afa93303b481','0','2','0'), ('35962','20','get[1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX}]','10429','Port {#SNMPINDEX}: Interface name','zyxel.3712.net.if.descr[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB A textual string containing information about the interface','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f6e2db1bdfd0451a9ca896ade8df790f','0','2','0'), ('35963','15','','10429','Port {#SNMPINDEX}: Incoming utilization','zyxel.3712.net.if.in.util[{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.3712.net.if.in.traffic[{#SNMPINDEX}]) * (last(//zyxel.3712.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.3712.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.3712.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ca42c0b40bf74f03b544b9d0dd678223','0','2','0'), ('35964','20','get[1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX}]','10429','Port {#SNMPINDEX}: Incoming unicast packages','zyxel.3712.net.if.in.ucastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were not addressed to a multicast or broadcast address at this sub-layer','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2555e749de034c2db2c7a800a8785695','0','2','0'), ('35965','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10429','Port {#SNMPINDEX}: Incoming traffic','zyxel.3712.net.if.in.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a9880181229d44e0a60f173820eb5d67','0','2','0'), ('35966','20','get[1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX}]','10429','Port {#SNMPINDEX}: Incoming multicast packages','zyxel.3712.net.if.in.multicastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a multicast address at this sub-layer. For a MAC layer protocol, this includes both Group and Functional addresses.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','83b692f16c7f40899fb802686dccffb5','0','2','0'), ('35967','20','get[1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX}]','10429','Port {#SNMPINDEX}: Incoming broadcast packages','zyxel.3712.net.if.in.broadcastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a broadcast address at this sub-layer.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5c48f1894ae449528d0ef9844c22dee2','0','2','0'), ('35968','20','get[1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}]','10429','Port {#SNMPINDEX}: Link speed','zyxel.3712.net.if.highspeed[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in bits per second','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ae4776dea7aa44e7a403aa8bab391a30','0','2','0'), ('35969','20','get[1.3.6.1.4.1.890.1.5.8.47.22.1.1.1.{#SNMPINDEX}]','10429','Port {#SNMPINDEX}: Speed Duplex','zyxel.3712.net.if.speed_duplex[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'406','','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB Transmission mode','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b8c053a89b32400595d4a0673cfa1e81','0','2','0'), ('35970','20','get[1.3.6.1.4.1.890.1.5.8.47.117.2.1.7.{#SNMPINDEX}]','10429','SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','zyxel.3712.sfp.ddm[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','365d','0','0','','!{#ZYXEL.SFP.UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cd2434237f264fd0aa57a9816eb9cdb1','0','2','0'), ('35971','20','get[1.3.6.1.4.1.890.1.5.8.47.117.1.1.7.{#SNMPINDEX}]','10429','SFP {#SNMPINDEX}: Date code','zyxel.3712.sfp.datecode[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB Transceiver module vendor''s manufacturing date code.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','434d614d231d41c49810342cb3d09797','0','2','0'), ('35972','20','get[1.3.6.1.4.1.890.1.5.8.47.117.1.1.4.{#SNMPINDEX}]','10429','SFP {#SNMPINDEX}: Part number','zyxel.3712.sfp.part[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB Part number provided by transceiver module vendor.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','184be2048cf64e7abf703cb16e1e128b','0','2','0'), ('35973','20','get[1.3.6.1.4.1.890.1.5.8.47.117.1.1.6.{#SNMPINDEX}]','10429','SFP {#SNMPINDEX}: Revision','zyxel.3712.sfp.revision[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB Revision level for part number provided by transceiver module vendor.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','80d2606b4d644993b13f7efd001ed096','0','2','0'), ('35974','20','get[1.3.6.1.4.1.890.1.5.8.47.117.1.1.5.{#SNMPINDEX}]','10429','SFP {#SNMPINDEX}: Serial number','zyxel.3712.sfp.serialnumber[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB Serial number provided by transceiver module vendor.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2d974479665844ae86511d471e190d51','0','2','0'), ('35975','20','get[1.3.6.1.4.1.890.1.5.8.47.117.1.1.2.{#SNMPINDEX}]','10429','SFP {#SNMPINDEX}: Status','zyxel.3712.sfp.status[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','365d','0','3','','','','',NULL,'409','','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB Transceiver module status.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','46e11863a74f481aaea204148fe8b5b7','0','2','0'), ('35976','20','get[1.3.6.1.4.1.890.1.5.8.47.117.1.1.8.{#SNMPINDEX}]','10429','SFP {#SNMPINDEX}: Transceiver','zyxel.3712.sfp.transceiver[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB Transceiver module type names.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e2e07835d3ef431ea6c5559151dee258','0','2','0'), ('35977','20','get[1.3.6.1.4.1.890.1.5.8.47.117.1.1.3.{#SNMPINDEX}]','10429','SFP {#SNMPINDEX}: Vendor','zyxel.3712.sfp.vendor[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB Transceiver module vendor name.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','18f798a7ca0d4ea4a24a58c3bcdb9edd','0','2','0'), ('35978','20','get[1.3.6.1.4.1.890.1.5.8.47.8.2.1.2.{#SNMPINDEX}]','10429','Temperature "{#ZYXEL.TEMP.ID}"','zyxel.3712.temp[{#SNMPINDEX}]','1m','31d','365d','0','3','','!°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB The current temperature measured at this sensor','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e1703024fdee4c6c812e9c0204510705','0','2','0'), ('35979','20','get[1.3.6.1.4.1.890.1.5.8.47.8.3.1.2.{#SNMPINDEX}]','10429','Nominal "{#ZYXEL.VOLT.NOMINAL}"','zyxel.3712.volt[{#SNMPINDEX}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB The current voltage reading.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5ef499ecbada4691a5598d99c2a362eb','0','2','0'), ('35980','5','','10430','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'410','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2bd320c5d71d471e8b68a5f30e1aa5d9','0','2','0'), ('35981','20','get[1.3.6.1.2.1.1.4.0]','10430','Contact','zyxel.3712f.contact','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','71ba1c991114432c9dca4f39b30e7872','0','2','0'), ('35982','20','get[1.3.6.1.4.1.890.1.5.8.48.11.7.0]','10430','CPU utilization','zyxel.3712f.cpuusage','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-MGS3712F-MIB Show device CPU load in %, it''s the snapshot of CPU load when getting the values.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','69432e1306ae46eab178082cb5ed7bc3','0','2','0'), ('35983','20','discovery[{#SNMP.ARRAY},1.3.6.1.4.1.890.1.5.8.48.1]','10430','ZyNOS F/W Version','zyxel.3712f.fwversion','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-MGS3712F-MIB','17','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4ced5f4185284f32b767036ffe41302c','0','2','0'), ('35984','20','get[1.3.6.1.2.1.1.6.0]','10430','Location','zyxel.3712f.location','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The physical location of this node (e.g., `telephone closet, 3rd floor'').','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','98c18ebb978448098922d7930e2ed00b','0','2','0'), ('35985','20','get[1.3.6.1.2.1.2.2.1.6.1]','10430','MAC address','zyxel.3712f.mac','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IF-MIB The interface''s address at the protocol layer immediately `below'' the network layer in the protocol stack. For interfaces which do not have such an address (e.g., a serial line), this object should contain an octet string of zero length.','12','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bfd1233a36e94dfe93cd02ac95a7218e','0','2','0'), ('35986','20','get[1.3.6.1.2.1.1.1.0]','10430','Hardware model name','zyxel.3712f.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software. It is mandatory that this only contain printable ASCII characters.','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e734e8fe661043ac84d55a2497a50cf5','0','2','0'), ('35987','20','get[1.3.6.1.2.1.1.5.0]','10430','Host name','zyxel.3712f.name','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB An administratively-assigned name for this managed node. By convention, this is the node''s fully-qualified domain name.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','026c51d2e28943e98056a934355a0161','0','2','0'), ('35988','20','get[1.3.6.1.4.1.890.1.5.8.48.1.10.0]','10430','Hardware serial number','zyxel.3712f.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-MGS3712F-MIB Serial number','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','97eaf488887c42b89a4e6f6103ceeef6','0','2','0'), ('35989','20','get[1.3.6.1.2.1.1.3.0]','10430','Uptime (network)','zyxel.3712f.net.uptime','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e5e21fdb6dae4dc49038f0801c87a5c6','0','2','0'), ('35990','20','discovery[{#ZYXEL.FANRPM.THRESH.LOW},1.3.6.1.4.1.890.1.5.8.48.8.1.1.5]','10430','Fan discovery','zyxel.3712f.fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in fanRpmTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0f15b0a5b34d4849800ea65b1f5e0916','0','2','0'), ('35991','20','discovery[{#ZYXEL.IF.NAME},1.3.6.1.4.1.890.1.5.8.48.22.1.1.3,{#ZYXEL.IF.LINKUPTYPE},1.3.6.1.4.1.890.1.5.8.48.22.1.1.5]','10430','Interface discovery','zyxel.3712f.net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4e39a7b918fd44a1bd3986380d116e9f','0','2','0'), ('35992','20','discovery[{#ZYXEL.SFP.WARN.MAX},1.3.6.1.4.1.890.1.5.8.48.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},1.3.6.1.4.1.890.1.5.8.48.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},1.3.6.1.4.1.890.1.5.8.48.117.2.1.8]','10430','SFP with DDM discovery','zyxel.3712f.sfp.ddm.discovery','12h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'SFP DDM module discovery.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d48eedbbb8ad448da866d11d6f40ce91','0','2','0'), ('35993','20','discovery[{#ZYXEL.SFP.STATUS},1.3.6.1.4.1.890.1.5.8.48.117.1.1.2]','10430','SFP without DDM discovery','zyxel.3712f.sfp.discovery','12h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'SFP module discovery.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b3d39eb65ab547de92862c93ca9ea2b0','0','2','0'), ('35994','20','discovery[{#ZYXEL.TEMP.THRESH.HIGH},1.3.6.1.4.1.890.1.5.8.48.8.2.1.5]','10430','Temperature discovery','zyxel.3712f.temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in tempTable. Index of temperature unit. 1:MAC, 2:CPU, 3:PHY','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a6e733335bb24801bf006586185ffaff','0','2','0'), ('35995','20','discovery[{#ZYXEL.VOLT.THRESH.LOW},1.3.6.1.4.1.890.1.5.8.48.8.3.1.6,{#ZYXEL.VOLT.NOMINAL},1.3.6.1.4.1.890.1.5.8.48.8.3.1.5]','10430','Voltage discovery','zyxel.3712f.volt.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in voltageTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4ccedd9f504346eda12af79b21362322','0','2','0'), ('35996','20','get[1.3.6.1.4.1.890.1.5.8.48.8.1.1.2.{#SNMPINDEX}]','10430','Fan #{#SNMPINDEX}','zyxel.3712f.fan[{#SNMPINDEX}]','1m','31d','365d','0','3','','!rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB Current speed in Revolutions Per Minute (RPM) on the fan.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','12073ba0a2894561bfa130aeca7c8aba','0','2','0'), ('35997','20','get[1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}]','10430','Port {#SNMPINDEX}: Administrative status','zyxel.3712f.net.if.adminstatus[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'413','','','0','','','','','2',NULL,'MIB: IF-MIB The desired state of the interface. The testing(3) state indicates that no operational packets can be passed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','84b7463fd2ff40f4b854ad5331fbf0da','0','2','0'), ('35998','20','get[1.3.6.1.4.1.890.1.5.8.48.22.1.1.3.{#SNMPINDEX}]','10430','Port {#SNMPINDEX}: Interface description','zyxel.3712f.net.if.name[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB A textual string containing information about the interface','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b0dc3f51f7f544e6ac7c14d4aaf5b7a6','0','2','0'), ('35999','15','','10430','Port {#SNMPINDEX}: Outgoing utilization','zyxel.3712f.net.if.out.util[{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.3712f.net.if.out.traffic[{#SNMPINDEX}]) * (last(//zyxel.3712f.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.3712f.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.3712f.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4ae2370776ea425095a8856ac4a51868','0','2','0'), ('36000','20','get[1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX}]','10430','Port {#SNMPINDEX}: Outgoing unicast packages','zyxel.3712f.net.if.out.ucastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were not addressed to a multicast or broadcast address at this sub-layer, including those that were discarded or not sent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d618cdab510147dba8781669b62535d5','0','2','0'), ('36001','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10430','Port {#SNMPINDEX}: Outgoing traffic','zyxel.3712f.net.if.out.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','44c57404960045998f6b11129c5c9e74','0','2','0'), ('36002','20','get[1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX}]','10430','Port {#SNMPINDEX}: Outgoing multicast packages','zyxel.3712f.net.if.out.multicastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were addressed to a multicast address at this sub-layer, including those that were discarded or not sent. For a MAC layer protocol, this includes both Group and Functional addresses.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9cfa5cdeb08c403ea487107303fb52c9','0','2','0'), ('36003','20','get[1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX}]','10430','Port {#SNMPINDEX}: Outgoing broadcast packages','zyxel.3712f.net.if.out.broadcastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were addressed to a broadcast address at this sub-layer, including those that were discarded or not sent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','759ec75f1155444187f970e3141e219b','0','2','0'), ('36004','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10430','Port {#SNMPINDEX}: Operational status','zyxel.3712f.net.if.operstatus[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'414','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. The testing(3) state indicates that no operational packets can be passed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0c940b9948f043b5a58e59cfd1e3f585','0','2','0'), ('36005','20','get[1.3.6.1.4.1.890.1.5.8.48.22.1.1.5.{#SNMPINDEX}]','10430','Port {#SNMPINDEX}: Link type','zyxel.3712f.net.if.link_type[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'411','','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB Physical connection type','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c173d9fb0e4645f8b1b5cdd70881ea0a','0','2','0'), ('36006','20','get[1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX}]','10430','Port {#SNMPINDEX}: Interface name','zyxel.3712f.net.if.descr[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB A textual string containing information about the interface','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ba54ef4ceafd4445bab7f2365c6c4404','0','2','0'), ('36007','15','','10430','Port {#SNMPINDEX}: Incoming utilization','zyxel.3712f.net.if.in.util[{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.3712f.net.if.in.traffic[{#SNMPINDEX}]) * (last(//zyxel.3712f.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.3712f.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.3712f.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','13f394481ad045ed8db3693be14ed2f1','0','2','0'), ('36008','20','get[1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX}]','10430','Port {#SNMPINDEX}: Incoming unicast packages','zyxel.3712f.net.if.in.ucastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were not addressed to a multicast or broadcast address at this sub-layer','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a1b595cd244340aea0dd9343a36619b6','0','2','0'), ('36009','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10430','Port {#SNMPINDEX}: Incoming traffic','zyxel.3712f.net.if.in.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a4a13a2309d94ea7a6f935796c1f4623','0','2','0'), ('36010','20','get[1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX}]','10430','Port {#SNMPINDEX}: Incoming multicast packages','zyxel.3712f.net.if.in.multicastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a multicast address at this sub-layer. For a MAC layer protocol, this includes both Group and Functional addresses.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b3f54f3b51474b608ae5f4cec6990b1a','0','2','0'), ('36011','20','get[1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX}]','10430','Port {#SNMPINDEX}: Incoming broadcast packages','zyxel.3712f.net.if.in.broadcastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a broadcast address at this sub-layer.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8971f0814f9f4a90a9163b83804665f1','0','2','0'), ('36012','20','get[1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}]','10430','Port {#SNMPINDEX}: Link speed','zyxel.3712f.net.if.highspeed[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in bits per second','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1955d72ae95a4c53922a4a209c48af45','0','2','0'), ('36013','20','get[1.3.6.1.4.1.890.1.5.8.48.22.1.1.1.{#SNMPINDEX}]','10430','Port {#SNMPINDEX}: Speed Duplex','zyxel.3712f.net.if.speed_duplex[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'412','','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB Transmission mode','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9dabada8160e47138c2416002346fc2d','0','2','0'), ('36014','20','get[1.3.6.1.4.1.890.1.5.8.48.117.2.1.7.{#SNMPINDEX}]','10430','SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','zyxel.3712f.sfp.ddm[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','365d','0','0','','!{#ZYXEL.SFP.UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d9accdfbf4e44ef28a191f6c9fd864b1','0','2','0'), ('36015','20','get[1.3.6.1.4.1.890.1.5.8.48.117.1.1.7.{#SNMPINDEX}]','10430','SFP {#SNMPINDEX}: Date code','zyxel.3712f.sfp.datecode[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB Transceiver module vendor''s manufacturing date code.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','430c8c876a974a0f8df8d79222bb7dcd','0','2','0'), ('36016','20','get[1.3.6.1.4.1.890.1.5.8.48.117.1.1.4.{#SNMPINDEX}]','10430','SFP {#SNMPINDEX}: Part number','zyxel.3712f.sfp.part[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB Part number provided by transceiver module vendor.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','519c8737de814a6aabce25ea8ef52c1a','0','2','0'), ('36017','20','get[1.3.6.1.4.1.890.1.5.8.48.117.1.1.6.{#SNMPINDEX}]','10430','SFP {#SNMPINDEX}: Revision','zyxel.3712f.sfp.revision[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB Revision level for part number provided by transceiver module vendor.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ea54a5a49aa4447ba77a28b4b110a77a','0','2','0'), ('36018','20','get[1.3.6.1.4.1.890.1.5.8.48.117.1.1.5.{#SNMPINDEX}]','10430','SFP {#SNMPINDEX}: Serial number','zyxel.3712f.sfp.serialnumber[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB Serial number provided by transceiver module vendor.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bb97e6edd8574888b6892a0d49849406','0','2','0'), ('36019','20','get[1.3.6.1.4.1.890.1.5.8.48.117.1.1.2.{#SNMPINDEX}]','10430','SFP {#SNMPINDEX}: Status','zyxel.3712f.sfp.status[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','365d','0','3','','','','',NULL,'415','','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB Transceiver module status.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b0a81abdecad42788715ad879c2d03fa','0','2','0'), ('36020','20','get[1.3.6.1.4.1.890.1.5.8.48.117.1.1.8.{#SNMPINDEX}]','10430','SFP {#SNMPINDEX}: Transceiver','zyxel.3712f.sfp.transceiver[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB Transceiver module type names.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','db78a10438534c53bc0bc7ce09d784cd','0','2','0'), ('36021','20','get[1.3.6.1.4.1.890.1.5.8.48.117.1.1.3.{#SNMPINDEX}]','10430','SFP {#SNMPINDEX}: Vendor','zyxel.3712f.sfp.vendor[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB Transceiver module vendor name.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','536d22ea7a654bf99b26eeaa8e6761f7','0','2','0'), ('36022','20','get[1.3.6.1.4.1.890.1.5.8.48.8.2.1.2.{#SNMPINDEX}]','10430','Temperature "{#ZYXEL.TEMP.ID}"','zyxel.3712f.temp[{#SNMPINDEX}]','1m','31d','365d','0','3','','!°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB The current temperature measured at this sensor','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','02ba756962cf4ab3b3c90817e4c5f053','0','2','0'), ('36023','20','get[1.3.6.1.4.1.890.1.5.8.48.8.3.1.2.{#SNMPINDEX}]','10430','Nominal "{#ZYXEL.VOLT.NOMINAL}"','zyxel.3712f.volt[{#SNMPINDEX}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-MGS3712F-MIB The current voltage reading.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d1f0e62a6fad4d578c0d524278c7ad3d','0','2','0'), ('36024','5','','10431','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'416','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4b5994ccefe5492b8ee81c88f4871efe','0','2','0'), ('36025','20','get[1.3.6.1.2.1.1.4.0]','10431','Contact','zyxel.3500_24s.contact','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aa2cb34bb8a24ea883d13039175e7955','0','2','0'), ('36026','20','get[1.3.6.1.4.1.890.1.15.3.2.4.0]','10431','CPU utilization','zyxel.3500_24s.cpuusage','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-ES-COMMON Show device CPU load in %, it''s the snapshot of CPU load when getting the values.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6fccaef6a6f84d97b825d46b62955b76','0','2','0'), ('36027','20','get[1.3.6.1.4.1.890.1.15.3.1.6.0]','10431','ZyNOS F/W Version','zyxel.3500_24s.fwversion','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-ES-COMMON','17','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','37410c60fd224987920640313a0b229b','0','2','0'), ('36028','20','get[1.3.6.1.2.1.1.6.0]','10431','Location','zyxel.3500_24s.location','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The physical location of this node (e.g., `telephone closet, 3rd floor'').','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a2ee7e4d0dbc463aa9fc997f14740d0b','0','2','0'), ('36029','20','get[1.3.6.1.2.1.2.2.1.6.1]','10431','MAC address','zyxel.3500_24s.mac','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IF-MIB The interface''s address at the protocol layer immediately `below'' the network layer in the protocol stack. For interfaces which do not have such an address (e.g., a serial line), this object should contain an octet string of zero length.','12','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','082f2005c90d4edebdddedd1ee946793','0','2','0'), ('36030','20','get[1.3.6.1.4.1.890.1.15.3.2.5.0]','10431','Memory utilization','zyxel.3500_24s.memusage','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-ES-COMMON Show device memory usage in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1e8654e4f9ba487f971f5dc4c1fd5c9d','0','2','0'), ('36031','20','get[1.3.6.1.2.1.1.1.0]','10431','Hardware model name','zyxel.3500_24s.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software. It is mandatory that this only contain printable ASCII characters.','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a7d255bd093744ef853335e1b961bef7','0','2','0'), ('36032','20','get[1.3.6.1.2.1.1.5.0]','10431','Host name','zyxel.3500_24s.name','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB An administratively-assigned name for this managed node. By convention, this is the node''s fully-qualified domain name.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9225792a06444aabb120c390c68c2a06','0','2','0'), ('36033','20','get[1.3.6.1.4.1.890.1.15.3.1.12.0]','10431','Hardware serial number','zyxel.3500_24s.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-ES-COMMON Serial number','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a9e8c7ae033b4f7e95aadd663f3656d9','0','2','0'), ('36034','20','get[1.3.6.1.2.1.1.3.0]','10431','Uptime (network)','zyxel.3500_24s.net.uptime','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b3f7ffa22b174e2c8ed8bf0deeb62b42','0','2','0'), ('36035','20','discovery[{#ZYXEL.FANRPM.THRESH.LOW},1.3.6.1.4.1.890.1.15.3.26.1.1.1.6,{#ZYXEL.FAN.DESCRIPTION},1.3.6.1.4.1.890.1.15.3.26.1.1.1.2]','10431','Fan discovery','zyxel.3500_24s.fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in fanRpmTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a76d8952c6424abe926a5b9453bbc75d','0','2','0'), ('36036','20','discovery[{#ZYXEL.IF.NAME},1.3.6.1.4.1.890.1.15.3.61.1.1.1.3,{#ZYXEL.IF.LINKUPTYPE},1.3.6.1.4.1.890.1.15.3.61.2.1.1.2]','10431','Interface discovery','zyxel.3500_24s.net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','75336fa715834ade8a5434520543bf1c','0','2','0'), ('36037','20','discovery[{#ZYXEL.SFP.WARN.MAX},1.3.6.1.4.1.890.1.15.3.84.1.2.1.4,{#ZYXEL.SFP.WARN.MIN},1.3.6.1.4.1.890.1.15.3.84.1.2.1.5,{#ZYXEL.SFP.DESCRIPTION},1.3.6.1.4.1.890.1.15.3.84.1.2.1.7]','10431','SFP with DDM discovery','zyxel.3500_24s.sfp.ddm.discovery','12h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'SFP DDM module discovery.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f90783a6170c4802a1833ae25008b618','0','2','0'), ('36038','20','discovery[{#ZYXEL.SFP.STATUS},1.3.6.1.4.1.890.1.15.3.84.1.1.1.1]','10431','SFP without DDM discovery','zyxel.3500_24s.sfp.discovery','12h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'SFP module discovery.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','98536d7e95c145e6ba5d3a5531c570ce','0','2','0'), ('36039','20','discovery[{#ZYXEL.TEMP.THRESH.HIGH},1.3.6.1.4.1.890.1.15.3.26.1.2.1.6,{#ZYXEL.TEMPDESCRIPTION},1.3.6.1.4.1.890.1.15.3.26.1.2.1.2]','10431','Temperature discovery','zyxel.3500_24s.temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in tempTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','774dd069aeb948569d21396dd8dceea1','0','2','0'), ('36040','20','discovery[{#ZYXEL.VOLT.THRESH.LOW},1.3.6.1.4.1.890.1.15.3.26.1.3.1.7,{#ZYXEL.DESCRIPTION},1.3.6.1.4.1.890.1.15.3.26.1.3.1.2]','10431','Voltage discovery','zyxel.3500_24s.volt.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in voltageTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e8a886916c37490f9ba6b29c57d7331e','0','2','0'), ('36041','20','get[1.3.6.1.4.1.890.1.15.3.26.1.1.1.3.{#SNMPINDEX}]','10431','{#ZYXEL.FAN.DESCRIPTION}','zyxel.3500_24s.fan[{#SNMPINDEX}]','1m','31d','365d','0','3','','!rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-HW-MONITOR-MIB Current speed in Revolutions Per Minute (RPM) on the fan.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4f8bcd1fc9b54f3e94009c5a098ca4e0','0','2','0'), ('36042','20','get[1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}]','10431','Port {#SNMPINDEX}: Administrative status','zyxel.3500_24s.net.if.adminstatus[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'419','','','0','','','','','2',NULL,'MIB: IF-MIB The desired state of the interface. The testing(3) state indicates that no operational packets can be passed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','40967a08563e4f62b56d0f3983a5b76a','0','2','0'), ('36043','20','get[1.3.6.1.4.1.890.1.15.3.61.1.1.1.3.{#SNMPINDEX}]','10431','Port {#SNMPINDEX}: Interface description','zyxel.3500_24s.net.if.name[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-PORT-MIB Descriptive name that identifies this port.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5a6debce6aa6420e8c76f50c24fb541e','0','2','0'), ('36044','15','','10431','Port {#SNMPINDEX}: Outgoing utilization','zyxel.3500_24s.net.if.out.util[{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.3500_24s.net.if.out.traffic[{#SNMPINDEX}]) * (last(//zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','43b466a87757484dae36abe07e946bff','0','2','0'), ('36045','20','get[1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX}]','10431','Port {#SNMPINDEX}: Outgoing unicast packages','zyxel.3500_24s.net.if.out.ucastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were not addressed to a multicast or broadcast address at this sub-layer, including those that were discarded or not sent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8f080d3c0bd045e59d22585878bccbff','0','2','0'), ('36046','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10431','Port {#SNMPINDEX}: Outgoing traffic','zyxel.3500_24s.net.if.out.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','445163f587b24339adc9155bff798f7d','0','2','0'), ('36047','20','get[1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX}]','10431','Port {#SNMPINDEX}: Outgoing multicast packages','zyxel.3500_24s.net.if.out.multicastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were addressed to a multicast address at this sub-layer, including those that were discarded or not sent. For a MAC layer protocol, this includes both Group and Functional addresses.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b229348293cd47b39e826f5be1285928','0','2','0'), ('36048','20','get[1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX}]','10431','Port {#SNMPINDEX}: Outgoing broadcast packages','zyxel.3500_24s.net.if.out.broadcastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were addressed to a broadcast address at this sub-layer, including those that were discarded or not sent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2ca954bd5d90447288da9ac4d75ec976','0','2','0'), ('36049','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10431','Port {#SNMPINDEX}: Operational status','zyxel.3500_24s.net.if.operstatus[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'420','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. The testing(3) state indicates that no operational packets can be passed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','419b897845244642a84a1bd224ec72a6','0','2','0'), ('36050','20','get[1.3.6.1.4.1.890.1.15.3.61.2.1.1.2.{#SNMPINDEX}]','10431','Port {#SNMPINDEX}: Link type','zyxel.3500_24s.net.if.link_type[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'417','','','0','','','','','2',NULL,'MIB: ZYXEL-PORT-MIB The entry shows the linkUp cable type (copper, fiber, xfp or cx4) for the combo ports.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f357ac3f816d4232a2ba6ff571d95773','0','2','0'), ('36051','20','get[1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX}]','10431','Port {#SNMPINDEX}: Interface name','zyxel.3500_24s.net.if.descr[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB A textual string containing information about the interface','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d4f846a781f543539e05bc139e01a462','0','2','0'), ('36052','15','','10431','Port {#SNMPINDEX}: Incoming utilization','zyxel.3500_24s.net.if.in.util[{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.3500_24s.net.if.in.traffic[{#SNMPINDEX}]) * (last(//zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','197cf5fd63d541439b282e154bcd4ef1','0','2','0'), ('36053','20','get[1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX}]','10431','Port {#SNMPINDEX}: Incoming unicast packages','zyxel.3500_24s.net.if.in.ucastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were not addressed to a multicast or broadcast address at this sub-layer','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6e04ed7c0b154deeb1a32150aff18b26','0','2','0'), ('36054','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10431','Port {#SNMPINDEX}: Incoming traffic','zyxel.3500_24s.net.if.in.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6b87de872fa84ec8bc9c1058716617ff','0','2','0'), ('36055','20','get[1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX}]','10431','Port {#SNMPINDEX}: Incoming multicast packages','zyxel.3500_24s.net.if.in.multicastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a multicast address at this sub-layer. For a MAC layer protocol, this includes both Group and Functional addresses.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','18a759f3be5247b282fe7f685ae4d18b','0','2','0'), ('36056','20','get[1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX}]','10431','Port {#SNMPINDEX}: Incoming broadcast packages','zyxel.3500_24s.net.if.in.broadcastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a broadcast address at this sub-layer.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e406bba0c87a4607bc36d4be74ac5abb','0','2','0'), ('36057','20','get[1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}]','10431','Port {#SNMPINDEX}: Link speed','zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in bits per second','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','27ac6ebffd2e47ecb9ebbece3ef3bb68','0','2','0'), ('36058','20','get[1.3.6.1.4.1.890.1.15.3.61.1.1.1.1.{#SNMPINDEX}]','10431','Port {#SNMPINDEX}: Speed Duplex','zyxel.3500_24s.net.if.speed_duplex[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'418','','','0','','','','','2',NULL,'MIB: ZYXEL-PORT-MIB Select The speed and the duplex mode of the Ethernet connection on this port. Selecting Auto (auto-negotiation) allows one port to negotiate with a peer port automatically to obtain the connection speed and duplex mode that both ends support. When auto-negotiation is turned on, a port on the Switch negotiates with the peer automatically to determine the connection speed and duplex mode. If the peer port does not support auto-negotiation or turns off this feature, the Switch determines the connection speed by detecting the signal on the cable and using half duplex mode. Thus requiring you to make sure that the settings of the peer port are the same in order to connect.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ff93002a2b5341a8a287fdc78c7e9c6d','0','2','0'), ('36059','20','get[1.3.6.1.4.1.890.1.15.3.84.1.2.1.6.{#SNMPINDEX}]','10431','SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','zyxel.3500_24s.sfp.ddm[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','365d','0','0','','!{#ZYXEL.SFP.UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-TRANSCEIVER-MIB Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','69d7fcbc7e3242c99737ef98efbac0a7','0','2','0'), ('36060','20','get[1.3.6.1.4.1.890.1.15.3.84.1.1.1.6.{#SNMPINDEX}]','10431','SFP {#SNMPINDEX}: Date code','zyxel.3500_24s.sfp.datecode[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-TRANSCEIVER-MIB Transceiver module vendor''s manufacturing date code.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7232bba1aed34b5aaeb2d4ce3ad8250f','0','2','0'), ('36061','20','get[1.3.6.1.4.1.890.1.15.3.84.1.1.1.3.{#SNMPINDEX}]','10431','SFP {#SNMPINDEX}: Part number','zyxel.3500_24s.sfp.part[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-TRANSCEIVER-MIB Part number provided by transceiver module vendor.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','745310ab6da449aa8150956c076a2223','0','2','0'), ('36062','20','get[1.3.6.1.4.1.890.1.15.3.84.1.1.1.5.{#SNMPINDEX}]','10431','SFP {#SNMPINDEX}: Revision','zyxel.3500_24s.sfp.revision[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-TRANSCEIVER-MIB Revision level for part number provided by transceiver module vendor.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4565c91a0641405ba4e3d853b5db86e5','0','2','0'), ('36063','20','get[1.3.6.1.4.1.890.1.15.3.84.1.1.1.4.{#SNMPINDEX}]','10431','SFP {#SNMPINDEX}: Serial number','zyxel.3500_24s.sfp.serialnumber[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-TRANSCEIVER-MIB Serial number provided by transceiver module vendor.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b0fa1b76a33041bcab473b17b7b74eef','0','2','0'), ('36064','20','get[1.3.6.1.4.1.890.1.15.3.84.1.1.1.1.{#SNMPINDEX}]','10431','SFP {#SNMPINDEX}: Status','zyxel.3500_24s.sfp.status[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','365d','0','3','','','','',NULL,'421','','','0','','','','','2',NULL,'MIB: ZYXEL-TRANSCEIVER-MIB Transceiver module type.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','80aa0e87f7b24dfe9b525be735aa1ec3','0','2','0'), ('36065','20','get[1.3.6.1.4.1.890.1.15.3.84.1.1.1.7.{#SNMPINDEX}]','10431','SFP {#SNMPINDEX}: Transceiver','zyxel.3500_24s.sfp.transceiver[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-TRANSCEIVER-MIB Transceiver module type names.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5175fe53ba2d4bb6a3ad1aa673b67777','0','2','0'), ('36066','20','get[1.3.6.1.4.1.890.1.15.3.84.1.1.1.2.{#SNMPINDEX}]','10431','SFP {#SNMPINDEX}: Vendor','zyxel.3500_24s.sfp.vendor[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-TRANSCEIVER-MIB Transceiver module vendor name.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','17c99b32a9674426807fdf5d469b324a','0','2','0'), ('36067','20','get[1.3.6.1.4.1.890.1.15.3.26.1.2.1.3.{#SNMPINDEX}]','10431','Temperature "{#ZYXEL.TEMPDESCRIPTION}"','zyxel.3500_24s.temp[{#SNMPINDEX}]','1m','31d','365d','0','3','','!°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-HW-MONITOR-MIB The current temperature measured at this sensor','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','64975a8449d7457c84715f27eb5018fc','0','2','0'), ('36068','20','get[1.3.6.1.4.1.890.1.15.3.26.1.3.1.3.{#SNMPINDEX}]','10431','Nominal "{#ZYXEL.DESCRIPTION}"','zyxel.3500_24s.volt[{#SNMPINDEX}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-HW-MONITOR-MIB The current voltage reading.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6134a567c193489aa1ca32d03c0c2c42','0','2','0'), ('36069','5','','10432','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'422','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dd305c07637b49c985aef490fb237359','0','2','0'), ('36070','20','get[1.3.6.1.2.1.1.4.0]','10432','Contact','zyxel.3520_28.contact','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','be1d951beb564638a6102fe4b35fede0','0','2','0'), ('36071','20','get[1.3.6.1.4.1.890.1.15.3.2.4.0]','10432','CPU utilization','zyxel.3520_28.cpuusage','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-ES-COMMON Show device CPU load in %, it''s the snapshot of CPU load when getting the values.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','abdb31aeb0034998b91ab8f9b475409f','0','2','0'), ('36072','20','get[1.3.6.1.4.1.890.1.15.3.1.6.0]','10432','ZyNOS F/W Version','zyxel.3520_28.fwversion','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-ES-COMMON','17','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dd0ab3fa502b43969eec05ffd687450e','0','2','0'), ('36073','20','get[1.3.6.1.2.1.1.6.0]','10432','Location','zyxel.3520_28.location','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The physical location of this node (e.g., `telephone closet, 3rd floor'').','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d9923ed59ef14cbebfe2f6d24c0d8414','0','2','0'), ('36074','20','get[1.3.6.1.2.1.2.2.1.6.1]','10432','MAC address','zyxel.3520_28.mac','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IF-MIB The interface''s address at the protocol layer immediately `below'' the network layer in the protocol stack. For interfaces which do not have such an address (e.g., a serial line), this object should contain an octet string of zero length.','12','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','65116a646d734290926de9444a58ff2d','0','2','0'), ('36075','20','get[1.3.6.1.4.1.890.1.15.3.2.5.0]','10432','Memory utilization','zyxel.3520_28.memusage','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-ES-COMMON Show device memory usage in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','89d6942524f84e6d80d02a80be25ce57','0','2','0'), ('36076','20','get[1.3.6.1.2.1.1.1.0]','10432','Hardware model name','zyxel.3520_28.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software. It is mandatory that this only contain printable ASCII characters.','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2dced10921704f8a9ccaabb2f951af15','0','2','0'), ('36077','20','get[1.3.6.1.2.1.1.5.0]','10432','Host name','zyxel.3520_28.name','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB An administratively-assigned name for this managed node. By convention, this is the node''s fully-qualified domain name.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bccc98beb7ea45d6a7463de339e8877e','0','2','0'), ('36078','20','get[1.3.6.1.4.1.890.1.15.3.1.12.0]','10432','Hardware serial number','zyxel.3520_28.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-ES-COMMON Serial number','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','095d82b3c92340debb324844a6c7f8a8','0','2','0'), ('36079','20','get[1.3.6.1.2.1.1.3.0]','10432','Uptime (network)','zyxel.3520_28.net.uptime','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','78959009721a453c8b8a2c49eb26c90c','0','2','0'), ('36080','20','discovery[{#ZYXEL.FANRPM.THRESH.LOW},1.3.6.1.4.1.890.1.15.3.26.1.1.1.6,{#ZYXEL.FAN.DESCRIPTION},1.3.6.1.4.1.890.1.15.3.26.1.1.1.2]','10432','Fan discovery','zyxel.3520_28.fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in fanRpmTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e56b6958ca184f549d86502ad9aa10bc','0','2','0'), ('36081','20','discovery[{#ZYXEL.IF.NAME},1.3.6.1.4.1.890.1.15.3.61.1.1.1.3,{#ZYXEL.IF.LINKUPTYPE},1.3.6.1.4.1.890.1.15.3.61.2.1.1.2]','10432','Interface discovery','zyxel.3520_28.net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','800ea9596e6f4fa0b59966f9e9e7cf74','0','2','0'), ('36082','20','discovery[{#ZYXEL.SFP.WARN.MAX},1.3.6.1.4.1.890.1.15.3.84.1.2.1.4,{#ZYXEL.SFP.WARN.MIN},1.3.6.1.4.1.890.1.15.3.84.1.2.1.5,{#ZYXEL.SFP.DESCRIPTION},1.3.6.1.4.1.890.1.15.3.84.1.2.1.7]','10432','SFP with DDM discovery','zyxel.3520_28.sfp.ddm.discovery','12h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'SFP DDM module discovery.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c313274b317c42cab5b7dd3c88d0c14b','0','2','0'), ('36083','20','discovery[{#ZYXEL.SFP.STATUS},1.3.6.1.4.1.890.1.15.3.84.1.1.1.1]','10432','SFP without DDM discovery','zyxel.3520_28.sfp.discovery','12h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'SFP module discovery.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f7ab574d01c848f3a46eed870c5099a4','0','2','0'), ('36084','20','discovery[{#ZYXEL.TEMP.THRESH.HIGH},1.3.6.1.4.1.890.1.15.3.26.1.2.1.6,{#ZYXEL.TEMPDESCRIPTION},1.3.6.1.4.1.890.1.15.3.26.1.2.1.2]','10432','Temperature discovery','zyxel.3520_28.temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in tempTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0fa2bd401cc14847a8fd366b895a6a51','0','2','0'), ('36085','20','discovery[{#ZYXEL.VOLT.THRESH.LOW},1.3.6.1.4.1.890.1.15.3.26.1.3.1.7,{#ZYXEL.DESCRIPTION},1.3.6.1.4.1.890.1.15.3.26.1.3.1.2]','10432','Voltage discovery','zyxel.3520_28.volt.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in voltageTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b390ed15aca64c49b654734ef35a9d60','0','2','0'), ('36086','20','get[1.3.6.1.4.1.890.1.15.3.26.1.1.1.3.{#SNMPINDEX}]','10432','{#ZYXEL.FAN.DESCRIPTION}','zyxel.3520_28.fan[{#SNMPINDEX}]','1m','31d','365d','0','3','','!rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-HW-MONITOR-MIB Current speed in Revolutions Per Minute (RPM) on the fan.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dd26e2542d174248af94102230e3b590','0','2','0'), ('36087','20','get[1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}]','10432','Port {#SNMPINDEX}: Administrative status','zyxel.3520_28.net.if.adminstatus[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'425','','','0','','','','','2',NULL,'MIB: IF-MIB The desired state of the interface. The testing(3) state indicates that no operational packets can be passed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','43cf7ba65c39475b9614ed4b95e9b398','0','2','0'), ('36088','20','get[1.3.6.1.4.1.890.1.15.3.61.1.1.1.3.{#SNMPINDEX}]','10432','Port {#SNMPINDEX}: Interface description','zyxel.3520_28.net.if.name[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-PORT-MIB Descriptive name that identifies this port.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f42c5604726d4d21a840418e5668287c','0','2','0'), ('36089','15','','10432','Port {#SNMPINDEX}: Outgoing utilization','zyxel.3520_28.net.if.out.util[{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.3520_28.net.if.out.traffic[{#SNMPINDEX}]) * (last(//zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e2b22f4c39974628a4476120b310a6fb','0','2','0'), ('36090','20','get[1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX}]','10432','Port {#SNMPINDEX}: Outgoing unicast packages','zyxel.3520_28.net.if.out.ucastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were not addressed to a multicast or broadcast address at this sub-layer, including those that were discarded or not sent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','768be526caa345b2b23996016a19e217','0','2','0'), ('36091','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10432','Port {#SNMPINDEX}: Outgoing traffic','zyxel.3520_28.net.if.out.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9a7eb0b7569d4111a33d84d03b5018e4','0','2','0'), ('36092','20','get[1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX}]','10432','Port {#SNMPINDEX}: Outgoing multicast packages','zyxel.3520_28.net.if.out.multicastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were addressed to a multicast address at this sub-layer, including those that were discarded or not sent. For a MAC layer protocol, this includes both Group and Functional addresses.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4227a6eb8cce4dd8ab582ffce2788e6e','0','2','0'), ('36093','20','get[1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX}]','10432','Port {#SNMPINDEX}: Outgoing broadcast packages','zyxel.3520_28.net.if.out.broadcastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were addressed to a broadcast address at this sub-layer, including those that were discarded or not sent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','26f87786719c4192949536c74c146b4d','0','2','0'), ('36094','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10432','Port {#SNMPINDEX}: Operational status','zyxel.3520_28.net.if.operstatus[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'426','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. The testing(3) state indicates that no operational packets can be passed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cfd32eee855647b79c95d6f151f13407','0','2','0'), ('36095','20','get[1.3.6.1.4.1.890.1.15.3.61.2.1.1.2.{#SNMPINDEX}]','10432','Port {#SNMPINDEX}: Link type','zyxel.3520_28.net.if.link_type[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'423','','','0','','','','','2',NULL,'MIB: ZYXEL-PORT-MIB The entry shows the linkUp cable type (copper, fiber, xfp or cx4) for the combo ports.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','15a2c17e0bba4f0d824790c3caa9840f','0','2','0'), ('36096','20','get[1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX}]','10432','Port {#SNMPINDEX}: Interface name','zyxel.3520_28.net.if.descr[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB A textual string containing information about the interface','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','de6bab43bf544489976261919ae52e98','0','2','0'), ('36097','15','','10432','Port {#SNMPINDEX}: Incoming utilization','zyxel.3520_28.net.if.in.util[{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.3520_28.net.if.in.traffic[{#SNMPINDEX}]) * (last(//zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8e060cde0fae44d792080fbc7da5a2a1','0','2','0'), ('36098','20','get[1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX}]','10432','Port {#SNMPINDEX}: Incoming unicast packages','zyxel.3520_28.net.if.in.ucastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were not addressed to a multicast or broadcast address at this sub-layer','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','003eb52b5fe44f509b3c04eef9cc2aa7','0','2','0'), ('36099','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10432','Port {#SNMPINDEX}: Incoming traffic','zyxel.3520_28.net.if.in.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e8c2a3a8ba654311bc90901502983b7a','0','2','0'), ('36100','20','get[1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX}]','10432','Port {#SNMPINDEX}: Incoming multicast packages','zyxel.3520_28.net.if.in.multicastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a multicast address at this sub-layer. For a MAC layer protocol, this includes both Group and Functional addresses.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ddcef9809ee34de5bec1acbdc8abc162','0','2','0'), ('36101','20','get[1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX}]','10432','Port {#SNMPINDEX}: Incoming broadcast packages','zyxel.3520_28.net.if.in.broadcastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a broadcast address at this sub-layer.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','68b987f900c0467ea77a8c8eb661f6d0','0','2','0'), ('36102','20','get[1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}]','10432','Port {#SNMPINDEX}: Link speed','zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in bits per second','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','01f3cc6551bb4703b199e6c996ad48ce','0','2','0'), ('36103','20','get[1.3.6.1.4.1.890.1.15.3.61.1.1.1.1.{#SNMPINDEX}]','10432','Port {#SNMPINDEX}: Speed Duplex','zyxel.3520_28.net.if.speed_duplex[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'424','','','0','','','','','2',NULL,'MIB: ZYXEL-PORT-MIB Select The speed and the duplex mode of the Ethernet connection on this port. Selecting Auto (auto-negotiation) allows one port to negotiate with a peer port automatically to obtain the connection speed and duplex mode that both ends support. When auto-negotiation is turned on, a port on the Switch negotiates with the peer automatically to determine the connection speed and duplex mode. If the peer port does not support auto-negotiation or turns off this feature, the Switch determines the connection speed by detecting the signal on the cable and using half duplex mode. Thus requiring you to make sure that the settings of the peer port are the same in order to connect.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','285f30d057f8438ab0d94367bcd6bdfc','0','2','0'), ('36104','20','get[1.3.6.1.4.1.890.1.15.3.84.1.2.1.6.{#SNMPINDEX}]','10432','SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','zyxel.3520_28.sfp.ddm[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','365d','0','0','','!{#ZYXEL.SFP.UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-TRANSCEIVER-MIB Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f3f9077d771544bfa666f58b6ae59e9c','0','2','0'), ('36105','20','get[1.3.6.1.4.1.890.1.15.3.84.1.1.1.6.{#SNMPINDEX}]','10432','SFP {#SNMPINDEX}: Date code','zyxel.3520_28.sfp.datecode[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-TRANSCEIVER-MIB Transceiver module vendor''s manufacturing date code.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','da89b981488d4a71b1a4c70032669ddc','0','2','0'), ('36106','20','get[1.3.6.1.4.1.890.1.15.3.84.1.1.1.3.{#SNMPINDEX}]','10432','SFP {#SNMPINDEX}: Part number','zyxel.3520_28.sfp.part[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-TRANSCEIVER-MIB Part number provided by transceiver module vendor.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','743a5eaf2c1049d4bf517c7e6f1f350d','0','2','0'), ('36107','20','get[1.3.6.1.4.1.890.1.15.3.84.1.1.1.5.{#SNMPINDEX}]','10432','SFP {#SNMPINDEX}: Revision','zyxel.3520_28.sfp.revision[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-TRANSCEIVER-MIB Revision level for part number provided by transceiver module vendor.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e40f07be73ca4e15acc109f8565f491b','0','2','0'), ('36108','20','get[1.3.6.1.4.1.890.1.15.3.84.1.1.1.4.{#SNMPINDEX}]','10432','SFP {#SNMPINDEX}: Serial number','zyxel.3520_28.sfp.serialnumber[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-TRANSCEIVER-MIB Serial number provided by transceiver module vendor.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','42db7a2affe54f059015adeae188efea','0','2','0'), ('36109','20','get[1.3.6.1.4.1.890.1.15.3.84.1.1.1.1.{#SNMPINDEX}]','10432','SFP {#SNMPINDEX}: Status','zyxel.3520_28.sfp.status[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','365d','0','3','','','','',NULL,'427','','','0','','','','','2',NULL,'MIB: ZYXEL-TRANSCEIVER-MIB Transceiver module type.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8ff52d1298f74fa0a211c80373c25f9b','0','2','0'), ('36110','20','get[1.3.6.1.4.1.890.1.15.3.84.1.1.1.7.{#SNMPINDEX}]','10432','SFP {#SNMPINDEX}: Transceiver','zyxel.3520_28.sfp.transceiver[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-TRANSCEIVER-MIB Transceiver module type names.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b11f1d31e3a04b39b6e9ec40a800a7d5','0','2','0'), ('36111','20','get[1.3.6.1.4.1.890.1.15.3.84.1.1.1.2.{#SNMPINDEX}]','10432','SFP {#SNMPINDEX}: Vendor','zyxel.3520_28.sfp.vendor[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-TRANSCEIVER-MIB Transceiver module vendor name.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2656c166a30d4ee19465c8e9b2986a10','0','2','0'), ('36112','20','get[1.3.6.1.4.1.890.1.15.3.26.1.2.1.3.{#SNMPINDEX}]','10432','Temperature "{#ZYXEL.TEMPDESCRIPTION}"','zyxel.3520_28.temp[{#SNMPINDEX}]','1m','31d','365d','0','3','','!°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-HW-MONITOR-MIB The current temperature measured at this sensor','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bbdae35cdac341ce8f092b693ced4210','0','2','0'), ('36113','20','get[1.3.6.1.4.1.890.1.15.3.26.1.3.1.3.{#SNMPINDEX}]','10432','Nominal "{#ZYXEL.DESCRIPTION}"','zyxel.3520_28.volt[{#SNMPINDEX}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-HW-MONITOR-MIB The current voltage reading.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2b00ed37531f4dfc81aa2669cf227854','0','2','0'), ('36114','5','','10433','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'428','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8b2b855bc92447dda391d251db268dc9','0','2','0'), ('36115','20','get[1.3.6.1.2.1.1.4.0]','10433','Contact','zyxel.4728f.contact','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','23ae05ce4d5c4022a716ed9e8e701ae9','0','2','0'), ('36116','20','get[1.3.6.1.4.1.890.1.5.8.46.12.7.0]','10433','CPU utilization','zyxel.4728f.cpuusage','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-XGS4728F-MIB Show device CPU load in %, it''s the snapshot of CPU load when getting the values.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1cccb7e7616944aa8747508e96f54968','0','2','0'), ('36117','20','discovery[{#SNMP.ARRAY},1.3.6.1.4.1.890.1.5.8.46.1]','10433','ZyNOS F/W Version','zyxel.4728f.fwversion','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-XGS4728F-MIB','17','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','222a051f0b84433faa6f29237b6d1552','0','2','0'), ('36118','20','get[1.3.6.1.2.1.1.6.0]','10433','Location','zyxel.4728f.location','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The physical location of this node (e.g., `telephone closet, 3rd floor'').','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cc5065f635bc486cb90898f842fa8a61','0','2','0'), ('36119','20','get[1.3.6.1.2.1.2.2.1.6.1]','10433','MAC address','zyxel.4728f.mac','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IF-MIB The interface''s address at the protocol layer immediately `below'' the network layer in the protocol stack. For interfaces which do not have such an address (e.g., a serial line), this object should contain an octet string of zero length.','12','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9a646e8e82c844c08754c7e72e161712','0','2','0'), ('36120','20','get[1.3.6.1.2.1.1.1.0]','10433','Hardware model name','zyxel.4728f.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software. It is mandatory that this only contain printable ASCII characters.','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a152c262c465441da0f1924bc7614a23','0','2','0'), ('36121','20','get[1.3.6.1.2.1.1.5.0]','10433','Host name','zyxel.4728f.name','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB An administratively-assigned name for this managed node. By convention, this is the node''s fully-qualified domain name.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','49e365a43809409f8d4636f88e4d64a9','0','2','0'), ('36122','20','get[1.3.6.1.4.1.890.1.5.8.46.1.10.0]','10433','Hardware serial number','zyxel.4728f.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ZYXEL-XGS4728F-MIB Serial number','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','79c80ac11d854edea93a598c4b28ffc0','0','2','0'), ('36123','20','get[1.3.6.1.2.1.1.3.0]','10433','Uptime (network)','zyxel.4728f.net.uptime','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: RFC1213-MIB The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b3302cbfbae64d55a638240ffb368b9c','0','2','0'), ('36124','20','discovery[{#ZYXEL.FANRPM.THRESH.LOW},1.3.6.1.4.1.890.1.5.8.46.9.1.1.5]','10433','Fan discovery','zyxel.4728f.fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in fanRpmTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bc0d797343b240bdbd5765dc2e7821fd','0','2','0'), ('36125','20','discovery[{#ZYXEL.MEMORY.NAME},1.3.6.1.4.1.890.1.5.8.46.124.1.1.2]','10433','Memory pool discovery','zyxel.4728f.memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','06f0e151e2a146028f80e60031d49b48','0','2','0'), ('36126','20','discovery[{#ZYXEL.IF.NAME},1.3.6.1.4.1.890.1.5.8.46.23.1.1.3,{#ZYXEL.IF.LINKUPTYPE},1.3.6.1.4.1.890.1.5.8.46.23.1.1.5]','10433','Interface discovery','zyxel.4728f.net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','75a0f2676e134b6e8ab9e8c11ac17d57','0','2','0'), ('36127','20','discovery[{#ZYXEL.SFP.WARN.MAX},1.3.6.1.4.1.890.1.5.8.46.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},1.3.6.1.4.1.890.1.5.8.46.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},1.3.6.1.4.1.890.1.5.8.46.117.2.1.8]','10433','SFP with DDM discovery','zyxel.4728f.sfp.ddm.discovery','12h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'SFP DDM module discovery.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6e0b5b991865448780e042d98168d72c','0','2','0'), ('36128','20','discovery[{#ZYXEL.SFP.STATUS},1.3.6.1.4.1.890.1.5.8.46.117.1.1.2]','10433','SFP without DDM discovery','zyxel.4728f.sfp.discovery','12h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'SFP module discovery.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f8112c4b07ed4bb1b918f58dbb9ec294','0','2','0'), ('36129','20','discovery[{#ZYXEL.TEMP.THRESH.HIGH},1.3.6.1.4.1.890.1.5.8.46.9.2.1.5]','10433','Temperature discovery','zyxel.4728f.temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in tempTable. Index of temperature unit. 1:MAC, 2:CPU, 3:PHY','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fa0881c21d834db1b421ae727254bff9','0','2','0'), ('36130','20','discovery[{#ZYXEL.VOLT.THRESH.LOW},1.3.6.1.4.1.890.1.5.8.46.9.3.1.6,{#ZYXEL.VOLT.NOMINAL},1.3.6.1.4.1.890.1.5.8.46.9.3.1.5]','10433','Voltage discovery','zyxel.4728f.volt.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'An entry in voltageTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1fa3870c99d6408dbf78c7f2ad87341d','0','2','0'), ('36131','20','get[1.3.6.1.4.1.890.1.5.8.46.9.1.1.2.{#SNMPINDEX}]','10433','Fan #{#SNMPINDEX}','zyxel.4728f.fan[{#SNMPINDEX}]','1m','31d','365d','0','3','','!rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-XGS4728F-MIB Current speed in Revolutions Per Minute (RPM) on the fan.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6ac1481e18bd419d884a556306e57f18','0','2','0'), ('36132','20','get[1.3.6.1.4.1.890.1.5.8.46.124.1.1.5.{#SNMPINDEX}]','10433','Memory "{#ZYXEL.MEMORY.NAME}" utilization','zyxel.4728f.memory[{#SNMPINDEX}]','1m','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-XGS4728F-MIB Utilization of memory pool in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ead18ee81f074ab68e4104345e5b4b2b','0','2','0'), ('36133','20','get[1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}]','10433','Port {#SNMPINDEX}: Administrative status','zyxel.4728f.net.if.adminstatus[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'431','','','0','','','','','2',NULL,'MIB: IF-MIB The desired state of the interface. The testing(3) state indicates that no operational packets can be passed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','36f7fdbfa4164677ad91351be394f050','0','2','0'), ('36134','20','get[1.3.6.1.4.1.890.1.5.8.46.23.1.1.3.{#SNMPINDEX}]','10433','Port {#SNMPINDEX}: Interface description','zyxel.4728f.net.if.name[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-XGS4728F-MIB A textual string containing information about the interface','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8877747043f94216b92ef7f097925d8e','0','2','0'), ('36135','15','','10433','Port {#SNMPINDEX}: Outgoing utilization','zyxel.4728f.net.if.out.util[{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.4728f.net.if.out.traffic[{#SNMPINDEX}]) * (last(//zyxel.4728f.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.4728f.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.4728f.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7941df5f5b884b33bcda9951e4b0158d','0','2','0'), ('36136','20','get[1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX}]','10433','Port {#SNMPINDEX}: Outgoing unicast packages','zyxel.4728f.net.if.out.ucastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were not addressed to a multicast or broadcast address at this sub-layer, including those that were discarded or not sent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ba1b314aacd0449fa0c9730fdb8ee3f9','0','2','0'), ('36137','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10433','Port {#SNMPINDEX}: Outgoing traffic','zyxel.4728f.net.if.out.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4afef8d3601646f1bfc81090b090c11c','0','2','0'), ('36138','20','get[1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX}]','10433','Port {#SNMPINDEX}: Outgoing multicast packages','zyxel.4728f.net.if.out.multicastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were addressed to a multicast address at this sub-layer, including those that were discarded or not sent. For a MAC layer protocol, this includes both Group and Functional addresses.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','67b776b7f51e4b24bad3b616979d7f98','0','2','0'), ('36139','20','get[1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX}]','10433','Port {#SNMPINDEX}: Outgoing broadcast packages','zyxel.4728f.net.if.out.broadcastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were addressed to a broadcast address at this sub-layer, including those that were discarded or not sent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ad7378144b254962aad0a73fb151e097','0','2','0'), ('36140','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10433','Port {#SNMPINDEX}: Operational status','zyxel.4728f.net.if.operstatus[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'432','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. The testing(3) state indicates that no operational packets can be passed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b091be1b0a8f415b82d73b3537cf6187','0','2','0'), ('36141','20','get[1.3.6.1.4.1.890.1.5.8.46.23.1.1.5.{#SNMPINDEX}]','10433','Port {#SNMPINDEX}: Link type','zyxel.4728f.net.if.link_type[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'429','','','0','','','','','2',NULL,'MIB: ZYXEL-XGS4728F-MIB Physical connection type','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','db488317d10e43eea21ecaa74d7a58dc','0','2','0'), ('36142','20','get[1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX}]','10433','Port {#SNMPINDEX}: Interface name','zyxel.4728f.net.if.descr[{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB A textual string containing information about the interface','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dbc94a6eabd64eefbe97f57f8831e834','0','2','0'), ('36143','15','','10433','Port {#SNMPINDEX}: Incoming utilization','zyxel.4728f.net.if.in.util[{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//zyxel.4728f.net.if.in.traffic[{#SNMPINDEX}]) * (last(//zyxel.4728f.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//zyxel.4728f.net.if.highspeed[{#SNMPINDEX}]) + (last(//zyxel.4728f.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100','','0','','','','','2',NULL,'Interface utilization percentage','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','72f7ee1e5099452aa4804d988adfb7a5','0','2','0'), ('36144','20','get[1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX}]','10433','Port {#SNMPINDEX}: Incoming unicast packages','zyxel.4728f.net.if.in.ucastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were not addressed to a multicast or broadcast address at this sub-layer','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c2a8e3985ed1414789b1bfe226de6d37','0','2','0'), ('36145','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10433','Port {#SNMPINDEX}: Incoming traffic','zyxel.4728f.net.if.in.traffic[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','075b04bdaff54a2cafc1b177e59df3be','0','2','0'), ('36146','20','get[1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX}]','10433','Port {#SNMPINDEX}: Incoming multicast packages','zyxel.4728f.net.if.in.multicastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a multicast address at this sub-layer. For a MAC layer protocol, this includes both Group and Functional addresses.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','de7b202e7240422dbdbc40e78689e6fe','0','2','0'), ('36147','20','get[1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX}]','10433','Port {#SNMPINDEX}: Incoming broadcast packages','zyxel.4728f.net.if.in.broadcastpkts[{#SNMPINDEX}]','1m','31d','365d','0','3','','packets/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a broadcast address at this sub-layer.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0105dea3226d46f8868aa07aa3f416a2','0','2','0'), ('36148','20','get[1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}]','10433','Port {#SNMPINDEX}: Link speed','zyxel.4728f.net.if.highspeed[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in bits per second','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','840096d5a418425c851ea7d236b7e34e','0','2','0'), ('36149','20','get[1.3.6.1.4.1.890.1.5.8.46.23.1.1.1.{#SNMPINDEX}]','10433','Port {#SNMPINDEX}: Speed Duplex','zyxel.4728f.net.if.speed_duplex[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'430','','','0','','','','','2',NULL,'MIB: ZYXEL-XGS4728F-MIB Transmission mode','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f56f1c0cf5d34435895ea489eb71b84a','0','2','0'), ('36150','20','get[1.3.6.1.4.1.890.1.5.8.46.117.2.1.7.{#SNMPINDEX}]','10433','SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','zyxel.4728f.sfp.ddm[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','365d','0','0','','!{#ZYXEL.SFP.UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-XGS4728F-MIB Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0071554e36064f7ea40d680a0c310b27','0','2','0'), ('36151','20','get[1.3.6.1.4.1.890.1.5.8.46.117.1.1.7.{#SNMPINDEX}]','10433','SFP {#SNMPINDEX}: Date code','zyxel.4728f.sfp.datecode[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-XGS4728F-MIB Transceiver module vendor''s manufacturing date code.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','59c000d4324d4e8ca07203843bbea7b5','0','2','0'), ('36152','20','get[1.3.6.1.4.1.890.1.5.8.46.117.1.1.4.{#SNMPINDEX}]','10433','SFP {#SNMPINDEX}: Part number','zyxel.4728f.sfp.part[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-XGS4728F-MIB Part number provided by transceiver module vendor.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c585762763604f83a9d14b7df21188ee','0','2','0'), ('36153','20','get[1.3.6.1.4.1.890.1.5.8.46.117.1.1.6.{#SNMPINDEX}]','10433','SFP {#SNMPINDEX}: Revision','zyxel.4728f.sfp.revision[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-XGS4728F-MIB Revision level for part number provided by transceiver module vendor.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','33395170c38043828cedbfbedea959cc','0','2','0'), ('36154','20','get[1.3.6.1.4.1.890.1.5.8.46.117.1.1.5.{#SNMPINDEX}]','10433','SFP {#SNMPINDEX}: Serial number','zyxel.4728f.sfp.serialnumber[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-XGS4728F-MIB Serial number provided by transceiver module vendor.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','175f4200563549a0ae1ebaed18eeb636','0','2','0'), ('36155','20','get[1.3.6.1.4.1.890.1.5.8.46.117.1.1.2.{#SNMPINDEX}]','10433','SFP {#SNMPINDEX}: Status','zyxel.4728f.sfp.status[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','365d','0','3','','','','',NULL,'433','','','0','','','','','2',NULL,'MIB: ZYXEL-XGS4728F-MIB Transceiver module status.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5d3d0c6135924b2088b2f97d30a743cb','0','2','0'), ('36156','20','get[1.3.6.1.4.1.890.1.5.8.46.117.1.1.8.{#SNMPINDEX}]','10433','SFP {#SNMPINDEX}: Transceiver','zyxel.4728f.sfp.transceiver[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-XGS4728F-MIB Transceiver module type names.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b16f7fe769a74ea99aafaa60a97d286c','0','2','0'), ('36157','20','get[1.3.6.1.4.1.890.1.5.8.46.117.1.1.3.{#SNMPINDEX}]','10433','SFP {#SNMPINDEX}: Vendor','zyxel.4728f.sfp.vendor[{#SNMPINDEX}]','{$ZYXEL.LLD.SFP.UPDATE}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-XGS4728F-MIB Transceiver module vendor name.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5abb9b467e934873808b4b49bdd74f5f','0','2','0'), ('36158','20','get[1.3.6.1.4.1.890.1.5.8.46.9.2.1.2.{#SNMPINDEX}]','10433','Temperature "{#ZYXEL.TEMP.ID}"','zyxel.4728f.temp[{#SNMPINDEX}]','1m','31d','365d','0','3','','!°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-XGS4728F-MIB The current temperature measured at this sensor','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','db030cd64cdc471cb5298ceb9973155a','0','2','0'), ('36159','20','get[1.3.6.1.4.1.890.1.5.8.46.9.3.1.2.{#SNMPINDEX}]','10433','Nominal "{#ZYXEL.VOLT.NOMINAL}"','zyxel.4728f.volt[{#SNMPINDEX}]','1m','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ZYXEL-XGS4728F-MIB The current voltage reading.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2999674cc176471887c1878b881b8422','0','2','0'), ('36160','20','get[1.3.6.1.2.1.1.4.0]','10434','System contact details','cisco.ucs.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ad342e11ce9f4f79bf9b0182c3f83488','0','2','0'), ('36161','20','get[1.3.6.1.2.1.1.1.0]','10434','System description','cisco.ucs.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','286fdb0fa49a4b378a6219a5ed76aac4','0','2','0'), ('36162','20','get[1.3.6.1.2.1.1.6.0]','10434','System location','cisco.ucs.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The physical location of this node (e.g., `telephone closet, 3rd floor''). If the location is unknown, the value is the zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','88bd32f8520144858a8ddb03dd200638','0','2','0'), ('36163','20','get[1.3.6.1.2.1.1.5.0]','10434','System name','cisco.ucs.name[sysName.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8bd3a60e4c70450492432c6abfa7b5f9','0','2','0'), ('36164','20','get[1.3.6.1.2.1.1.2.0]','10434','System object ID','cisco.ucs.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining ''what kind of box'' is being managed. For example, if vendor ''Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its ''Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','10d22e53318347658b2418ff33c26e0d','0','2','0'), ('36165','20','get[1.3.6.1.2.1.1.3.0]','10434','Uptime (network)','cisco.ucs.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The time in seconds since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b87e425f1bdf404a8e53ff277c0ff0c0','0','2','0'), ('36166','17','','10434','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5d839f68b6534dc8bd1fb5db7a757f02','0','2','0'), ('36167','5','','10434','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'442','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0926417e279a4e52a7f12587e9422e92','0','2','0'), ('36168','20','discovery[{#DISKARRAY_CACHE_LOCATION},1.3.6.1.4.1.9.9.719.1.45.11.1.2]','10434','Array controller cache discovery','cisco.ucs.array.cache.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Array controllers: CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageControllerTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f44bb3e5a8ad4d0c98df56267700b171','0','2','0'), ('36169','20','discovery[{#DISKARRAY_LOCATION},1.3.6.1.4.1.9.9.719.1.45.1.1.2]','10434','Array controller discovery','cisco.ucs.array.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Array controllers: CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageControllerTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bd1cf5ecd41f4dc49c6e31f32119787b','0','2','0'), ('36170','20','discovery[{#FAN_LOCATION},1.3.6.1.4.1.9.9.719.1.15.12.1.2]','10434','FAN discovery','cisco.ucs.fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c799941bb99a4ce0af2ab50253c40259','0','2','0'), ('36171','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10434','Network interface discovery','cisco.ucs.net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','20b43c2620114a9da4ff4d97b409f53e','0','2','0'), ('36172','20','discovery[{#DISK_LOCATION},1.3.6.1.4.1.9.9.719.1.45.4.1.2]','10434','Physical disk discovery','cisco.ucs.physicalDisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of physical drive entries CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageLocalDiskTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a8794333ae2c4104ac52c6ce421161fd','0','2','0'), ('36173','20','discovery[{#PSU_LOCATION},1.3.6.1.4.1.9.9.719.1.15.56.1.2]','10434','PSU discovery','cisco.ucs.psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8ac363db6f2346bba13b63f75cdabd22','0','2','0'), ('36174','20','discovery[{#SENSOR_LOCATION},1.3.6.1.4.1.9.9.719.1.41.2.1.2]','10434','Temperature CPU discovery','cisco.ucs.temp.cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','90b24337c3304ff6a30428c7d46c26fd','0','2','0'), ('36175','20','discovery[{#SENSOR_LOCATION},1.3.6.1.4.1.9.9.719.1.9.44.1.2]','10434','Temperature discovery','cisco.ucs.temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b99a5c977c32418ea9efded6d507e3b5','0','2','0'), ('36176','20','discovery[{#UNIT_LOCATION},1.3.6.1.4.1.9.9.719.1.9.35.1.2]','10434','Unit discovery','cisco.ucs.unit.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9c5d5ce2f672487db83cf91f22c1a413','0','2','0'), ('36177','20','discovery[{#VDISK_LOCATION},1.3.6.1.4.1.9.9.719.1.45.8.1.2]','10434','Virtual disk discovery','cisco.ucs.virtualDisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageLocalLunTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6d0760c4d29d4113b179b0e5c18f7e3b','0','2','0'), ('36178','20','get[1.3.6.1.4.1.9.9.719.1.45.11.1.9.{#SNMPINDEX}]','10434','{#DISKARRAY_CACHE_LOCATION}: Disk array cache controller battery status','cisco.ucs.hw.diskarray.cache.battery.status[cucsStorageRaidBatteryOperability.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'434','','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4e5214066fbb4c719c7e6abfba47e5f6','0','2','0'), ('36179','20','get[1.3.6.1.4.1.9.9.719.1.45.1.1.5.{#SNMPINDEX}]','10434','{#DISKARRAY_LOCATION}: Disk array controller model','cisco.ucs.hw.diskarray.model[cucsStorageControllerModel.{#SNMPINDEX}]','1d','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5285422113b84c2e8cb00899e0b29493','0','2','0'), ('36180','20','get[1.3.6.1.4.1.9.9.719.1.45.1.1.6.{#SNMPINDEX}]','10434','{#DISKARRAY_LOCATION}: Disk array controller status','cisco.ucs.hw.diskarray.status[cucsStorageControllerOperState.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'434','','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB Cisco UCS storage:RaidBattery:operability managed object property.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a732688d6fa347b597854078dd084935','0','2','0'), ('36181','20','get[1.3.6.1.4.1.9.9.719.1.15.12.1.9.{#SNMPINDEX}]','10434','{#FAN_LOCATION}: Fan status','cisco.ucs.sensor.fan.status[cucsEquipmentFanOperState.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'434','','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-EQUIPMENT-MIB Cisco UCS equipment:Fan:operState managed object property','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5e4aa59c4ec44fc7b97b9659c0d7a5c5','0','2','0'), ('36182','20','get[1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX}]','10434','Interface {#IFNAME}({#IFALIAS}): Interface description','cisco.ucs.if.descr[ifDescr.{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB A textual string containing information about the interface. This string should include the name of the manufacturer, the product name and the version of the interface hardware/software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','361a4c5a4b04432b84f4e6bfcd7775c6','0','2','0'), ('36183','20','get[1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX}]','10434','Interface {#IFNAME}({#IFALIAS}): Broadcast packets received','cisco.ucs.if.in.broadcast[ifHCInBroadcastPkts.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a broadcast address at this sub-layer. This object is a 64-bit version of ifInBroadcastPkts. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','009aeec02b3b46dc93bd52c2f1a4de0a','0','2','0'), ('36184','20','get[1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}]','10434','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','cisco.ucs.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','533b7352983e4adfbd9ca1c0e2e5e4b1','0','2','0'), ('36185','20','get[1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}]','10434','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','cisco.ucs.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','84e21f59350248c185a79dd916587140','0','2','0'), ('36186','20','get[1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX}]','10434','Interface {#IFNAME}({#IFALIAS}): Multicast packets received','cisco.ucs.if.in.multicast[ifHCInMulticastPkts.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a multicast address at this sub-layer. For a MAC layer protocol, this includes both Group and Functional addresses. This object is a 64-bit version of ifInMulticastPkts. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d72b570e01f5479db47628e399932988','0','2','0'), ('36187','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10434','Interface {#IFNAME}({#IFALIAS}): Bits received','cisco.ucs.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','eef7c3f6945a48e886de08a842c08f72','0','2','0'), ('36188','20','get[1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX}]','10434','Interface {#IFNAME}({#IFALIAS}): Broadcast packets sent','cisco.ucs.if.out.broadcast[ifHCOutBroadcastPkts.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were addressed to a broadcast address at this sub-layer, including those that were discarded or not sent. This object is a 64-bit version of ifOutBroadcastPkts. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f682fdf3144145f3998066a77353c4e2','0','2','0'), ('36189','20','get[1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}]','10434','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','cisco.ucs.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b61c1b8a08aa40d696d03ae584230e8e','0','2','0'), ('36190','20','get[1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}]','10434','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','cisco.ucs.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0b9d7feb75674225ac8e6ad0952380ac','0','2','0'), ('36191','20','get[1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX}]','10434','Interface {#IFNAME}({#IFALIAS}): Multicast packets sent','cisco.ucs.if.out.multicast[ifHCOutMulticastPkts.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of packets that higher-level protocols requested be transmitted, and which were addressed to a multicast address at this sub-layer, including those that were discarded or not sent. For a MAC layer protocol, this includes both Group and Functional addresses. This object is a 64-bit version of ifOutMulticastPkts. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3ddc4cca78f14dfc8e6d51efae831ba2','0','2','0'), ('36192','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10434','Interface {#IFNAME}({#IFALIAS}): Bits sent','cisco.ucs.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e48a1926828645c49afec898d01fa81a','0','2','0'), ('36193','20','get[1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}]','10434','Interface {#IFNAME}({#IFALIAS}): Speed','cisco.ucs.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n'' then the speed of the interface is somewhere in the range of `n-500,000'' to`n+499,999''. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','56aa529b14b14f6f8f9a9b5f1a2ba0d8','0','2','0'), ('36194','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10434','Interface {#IFNAME}({#IFALIAS}): Operational status','cisco.ucs.if.status[ifOperStatus.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'440','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','16a4394c6b824bacbc7f074d487fcdfb','0','2','0'), ('36195','20','get[1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}]','10434','Interface {#IFNAME}({#IFALIAS}): Interface type','cisco.ucs.if.type[ifType.{#SNMPINDEX}]','1h','31d','0','0','3','','','','',NULL,'441','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','00b0f0fb6c0b4026b438627edab908fb','0','2','0'), ('36196','20','get[1.3.6.1.4.1.9.9.719.1.45.4.1.17.{#SNMPINDEX}]','10434','{#DISK_LOCATION}: Physical disk media type','cisco.ucs.hw.physicaldisk.media_type[cucsStorageLocalDiskDeviceType.{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,'439','','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB Cisco UCS storage:LocalDisk:deviceType managed object property. Actually returns ''HDD'' or ''SSD''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3a1f21ccf92f43df869f66911ab5c0ea','0','2','0'), ('36197','20','get[1.3.6.1.4.1.9.9.719.1.45.4.1.7.{#SNMPINDEX}]','10434','{#DISK_LOCATION}: Physical disk model name','cisco.ucs.hw.physicaldisk.model[cucsStorageLocalDiskModel.{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB Cisco UCS storage:LocalDisk:model managed object property.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','317d489e9bf94467a228f5bbccb03436','0','2','0'), ('36198','20','get[1.3.6.1.4.1.9.9.719.1.45.4.1.12.{#SNMPINDEX}]','10434','{#DISK_LOCATION}: Physical disk serial number','cisco.ucs.hw.physicaldisk.serialnumber[cucsStorageLocalDiskSerial.{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB Cisco UCS storage:LocalDisk:serial managed object property. Actually returns part number code.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d768239496f2457fbec3a1103e84914d','0','2','0'), ('36199','20','get[1.3.6.1.4.1.9.9.719.1.45.4.1.13.{#SNMPINDEX}]','10434','{#DISK_LOCATION}: Disk size','cisco.ucs.hw.physicaldisk.size[cucsStorageLocalDiskSize.{#SNMPINDEX}]','1h','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB Cisco UCS storage:LocalDisk:size managed object property. In MB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c3c38ffc10fb4d139099c551b3c21728','0','2','0'), ('36200','20','get[1.3.6.1.4.1.9.9.719.1.45.4.1.18.{#SNMPINDEX}]','10434','{#DISK_LOCATION}: Physical disk status','cisco.ucs.hw.physicaldisk.status[cucsStorageLocalDiskDiskState.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'438','','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB Cisco UCS storage:LocalDisk:diskState managed object property.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ad4616916d6644f480a2687dbc56a4a3','0','2','0'), ('36201','20','get[1.3.6.1.4.1.9.9.719.1.15.56.1.7.{#SNMPINDEX}]','10434','{#PSU_LOCATION}: Power supply status','cisco.ucs.sensor.psu.status[cucsEquipmentPsuOperState.{#SNMPINDEX}]','3m','31d','0','0','3','','','','',NULL,'434','','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-EQUIPMENT-MIB Cisco UCS equipment:Psu:operState managed object property','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','88a07d360c42431ba4ef31cbe825dc72','0','2','0'), ('36202','20','get[1.3.6.1.4.1.9.9.719.1.41.2.1.10.{#SNMPINDEX}]','10434','{#SENSOR_LOCATION}: Temperature','cisco.ucs.sensor.temp.value[cucsProcessorEnvStatsTemperature.{#SNMPINDEX}]','3m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-PROCESSOR-MIB Cisco UCS processor:EnvStats:temperature managed object property','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7b822aeed3e24358aace9693e7f03385','0','2','0'), ('36203','20','get[1.3.6.1.4.1.9.9.719.1.9.44.1.13.{#SNMPINDEX}]','10434','{#SENSOR_LOCATION}.IOH: Temperature','cisco.ucs.sensor.temp.value[cucsComputeRackUnitMbTempSltatsIoh1Temp.{#SNMPINDEX}]','3m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB Cisco UCS compute:RackUnitMbTempStats:ioh1Temp managed object property','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d57481cb764a429f928aa6de6837c4ae','0','2','0'), ('36204','20','get[1.3.6.1.4.1.9.9.719.1.9.44.1.4.{#SNMPINDEX}]','10434','{#SENSOR_LOCATION}.Ambient: Temperature','cisco.ucs.sensor.temp.value[cucsComputeRackUnitMbTempStatsAmbientTemp.{#SNMPINDEX}]','3m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB Temperature readings of testpoint: {#SENSOR_LOCATION}.Ambient','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d5e4b5b7e18c4545853c48db018dc127','0','2','0'), ('36205','20','get[1.3.6.1.4.1.9.9.719.1.9.44.1.8.{#SNMPINDEX}]','10434','{#SENSOR_LOCATION}.Front: Temperature','cisco.ucs.sensor.temp.value[cucsComputeRackUnitMbTempStatsFrontTemp.{#SNMPINDEX}]','3m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB Cisco UCS compute:RackUnitMbTempStats:frontTemp managed object property','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9980042de8d74353bf4a386bb0f28d30','0','2','0'), ('36206','20','get[1.3.6.1.4.1.9.9.719.1.9.44.1.21.{#SNMPINDEX}]','10434','{#SENSOR_LOCATION}.Rear: Temperature','cisco.ucs.sensor.temp.value[cucsComputeRackUnitMbTempStatsRearTemp.{#SNMPINDEX}]','3m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB Cisco UCS compute:RackUnitMbTempStats:rearTemp managed object property','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e20bfa52f31f4a1a9f08ba02fe27f90c','0','2','0'), ('36207','20','get[1.3.6.1.4.1.9.9.719.1.9.35.1.32.{#SNMPINDEX}]','10434','{#UNIT_LOCATION}: Hardware model name','cisco.ucs.hw.model[cucsComputeRackUnitModel.{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB Cisco UCS compute:RackUnit:model managed object property','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','41ecc1caac444d2587d51e33057e6d39','0','2','0'), ('36208','20','get[1.3.6.1.4.1.9.9.719.1.9.35.1.47.{#SNMPINDEX}]','10434','{#UNIT_LOCATION}: Hardware serial number','cisco.ucs.hw.serialnumber[cucsComputeRackUnitSerial.{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB Cisco UCS compute:RackUnit:serial managed object property','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ac3217187db3453eb8b9932fce7c79c4','0','2','0'), ('36209','20','get[1.3.6.1.4.1.9.9.719.1.9.35.1.42.{#SNMPINDEX}]','10434','{#UNIT_LOCATION}: Overall system health status','cisco.ucs.status[cucsComputeRackUnitOperState.{#SNMPINDEX}]','30s','31d','0','0','3','','','','',NULL,'436','','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB Cisco UCS compute:RackUnit:operState managed object property','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c6ebb7db809f4c62aae795a8b1c4b740','0','2','0'), ('36210','20','get[1.3.6.1.4.1.9.9.719.1.45.8.1.14.{#SNMPINDEX}]','10434','{#VDISK_LOCATION}: Layout type','cisco.ucs.hw.virtualdisk.layout[cucsStorageLocalLunType.{#SNMPINDEX}]','1h','31d','365d','0','3','','','','',NULL,'437','','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB Cisco UCS storage:LocalLun:type managed object property','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c80f07f350bc472fb73282f5c80e16e3','0','2','0'), ('36211','20','get[1.3.6.1.4.1.9.9.719.1.45.8.1.13.{#SNMPINDEX}]','10434','{#VDISK_LOCATION}: Disk size','cisco.ucs.hw.virtualdisk.size[cucsStorageLocalLunSize.{#SNMPINDEX}]','1h','31d','0','0','3','','B','','',NULL,'437','','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB Cisco UCS storage:LocalLun:size managed object property in MB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','59a403629e8b40d981c2926ead601966','0','2','0'), ('36212','20','get[1.3.6.1.4.1.9.9.719.1.45.8.1.10.{#SNMPINDEX}]','10434','{#VDISK_LOCATION}: Status','cisco.ucs.hw.virtualdisk.status[cucsStorageLocalLunPresence.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,'435','','','0','','','','','2',NULL,'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB Cisco UCS storage:LocalLun:presence managed object property','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','39504e417781414081e1198adef562d4','0','2','0'), ('36213','21','','10435','Get system','dell.server.system.get','1m','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''System'', ''Get system metrics'', params); const requests = [ { ''path'': ''/redfish/v1/Systems/System.Embedded.1'', ''keys'': [ { ''name'': ''model'', ''path'': ''Model'' }, { ''name'': ''serialnumber'', ''path'': ''Oem.Dell.DellSystem.ChassisServiceTag'' }, { ''name'': ''status'', ''path'': ''Status.Health'' } ] }, { ''path'': ''/redfish/v1/Managers/iDRAC.Embedded.1'', ''keys'': { ''name'': ''firmware'', ''path'': ''FirmwareVersion'' } } ]; var buffer = {}; for (var i = 0, requestsCount = requests.length; i < requestsCount; i++) { Object.assign(buffer, dell.extractData(dell.executeRequest(requests[i].path), requests[i].keys)); } return JSON.stringify(buffer);','','0','','','','','0',NULL,'Returns system metrics.','0','30d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','c400cdf744be43859f36ac249cef03d2','0','2','0'), ('36214','3','','10435','Redfish API status','net.tcp.service[https]','1m','31d','365d','0','3','','','','',NULL,'1308','','','0','','','','','0',NULL,'Availability of Redfish API on the server. Possible values: 0 - Unavailable 1 - Available','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','da21527c1a004c67a5e2cd6770aa8637','0','2','0'), ('36255','20','get[1.3.6.1.2.1.1.4.0]','10436','System contact details','dell.server.contact[sysContact]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Name and contact information of the contact person for the node. If not provided, the value is a zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cd86d6203a874b27be4ed91578928dcf','0','2','0'), ('36256','20','get[1.3.6.1.2.1.1.1.0]','10436','System description','dell.server.descr[sysDescr]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d5c65ffddfff45319a3f6ba856b73f6b','0','2','0'), ('36257','20','get[1.3.6.1.4.1.674.10892.5.1.1.8.0]','10436','Firmware version','dell.server.hw.firmware[racFirmwareVersion]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the firmware version of a remote access card.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','00928da92ab7499aba169837b2fffc83','0','2','0'), ('36258','20','get[1.3.6.1.4.1.674.10892.5.1.3.12.0]','10436','Hardware model name','dell.server.hw.model[systemModelName]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the model name of the system.','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','34fd8f0eaae041828cd1743ef55c16f9','0','2','0'), ('36259','20','get[1.3.6.1.4.1.674.10892.5.1.3.2.0]','10436','Hardware serial number','dell.server.hw.serialnumber[systemServiceTag]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the service tag of the system.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f5753d89e11f43fba46959b60601d45c','0','2','0'), ('36260','20','get[1.3.6.1.2.1.1.6.0]','10436','System location','dell.server.location[sysLocation]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The physical location of this node (e.g., ''telephone closet, 3rd floor''). If the location is unknown, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ca9019fd89654c52889a12153150151d','0','2','0'), ('36261','20','get[1.3.6.1.2.1.1.5.0]','10436','System name','dell.server.name[sysName]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node. By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is a zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8b72816906274e1281929a318c44e8c6','0','2','0'), ('36262','20','get[1.3.6.1.2.1.1.2.0]','10436','System object ID','dell.server.objectid[sysObjectID]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the entity as part of the vendor''s SMI enterprises subtree with the prefix 1.3.6.1.4.1 (e.g., a vendor with the identifier 1.3.6.1.4.1.4242 might assign a system object with the OID 1.3.6.1.4.1.4242.1.1).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','18c324fe6e714549bc337c2711795c40','0','2','0'), ('36263','20','get[1.3.6.1.4.1.674.10892.5.2.1.0]','10436','Overall system health status','dell.server.status[globalSystemStatus]','1m','31d','0','0','3','','','','',NULL,'446','','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the overall rollup status of all the components in the system monitored by the remote access card. Includes system, storage, IO devices, iDRAC, CPU, memory, etc.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','341699ea98c64951b1d94d89b5c81362','0','2','0'), ('36264','20','get[1.3.6.1.4.1.674.10892.5.1.3.6.0]','10436','Operating system','dell.server.sw.os[systemOSName]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the name of the operating system that the host is running.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c8d519bdde9a4c3b89976f7b0dab0696','0','2','0'), ('36266','17','','10436','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other `snmptrap` items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','65097a06ef764129bcb0cb7fdd1f0ec8','0','2','0'), ('36267','5','','10436','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'455','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','943b9c35a40c4ca7811212b20b27677d','0','2','0'), ('36295','21','','10437','Get system','dell.server.system.get','1m','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''System'', ''Get system metrics'', params); const requests = [ { ''path'': ''/redfish/v1/Systems/System.Embedded.1'', ''keys'': [ { ''name'': ''model'', ''path'': ''Model'' }, { ''name'': ''serialnumber'', ''path'': ''Oem.Dell.DellSystem.ChassisServiceTag'' }, { ''name'': ''status'', ''path'': ''Status.Health'' } ] }, { ''path'': ''/redfish/v1/Managers/iDRAC.Embedded.1'', ''keys'': { ''name'': ''firmware'', ''path'': ''FirmwareVersion'' } } ]; var buffer = {}; for (var i = 0, requestsCount = requests.length; i < requestsCount; i++) { Object.assign(buffer, dell.extractData(dell.executeRequest(requests[i].path), requests[i].keys)); } return JSON.stringify(buffer);','','0','','','','','0',NULL,'Returns system metrics.','0','30d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','0bf660f3d66a4322acaeee585d258ddc','0','2','0'), ('36296','3','','10437','Redfish API status','net.tcp.service[https]','1m','31d','365d','0','3','','','','',NULL,'1317','','','0','','','','','0',NULL,'Availability of Redfish API on the server. Possible values: 0 - Unavailable 1 - Available','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0ce986507b414619bf8cad6dcf1e61b6','0','2','0'), ('36337','20','get[1.3.6.1.2.1.1.4.0]','10438','System contact details','dell.server.contact[sysContact]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Name and contact information of the contact person for the node. If not provided, the value is a zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bb8eb9194d964824a3c62f0cdd777520','0','2','0'), ('36338','20','get[1.3.6.1.2.1.1.1.0]','10438','System description','dell.server.descr[sysDescr]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d16c384f99a94a22a0a24a01070d95a2','0','2','0'), ('36339','20','get[1.3.6.1.4.1.674.10892.5.1.1.8.0]','10438','Firmware version','dell.server.hw.firmware[racFirmwareVersion]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the firmware version of a remote access card.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ab2437a52da14bd28e54b781d9f1034d','0','2','0'), ('36340','20','get[1.3.6.1.4.1.674.10892.5.1.3.12.0]','10438','Hardware model name','dell.server.hw.model[systemModelName]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the model name of the system.','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','da32b347cedf4f7a906b6a819e08cf16','0','2','0'), ('36341','20','get[1.3.6.1.4.1.674.10892.5.1.3.2.0]','10438','Hardware serial number','dell.server.hw.serialnumber[systemServiceTag]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the service tag of the system.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c18ca70147524b0b95dd239c81495637','0','2','0'), ('36342','20','get[1.3.6.1.2.1.1.6.0]','10438','System location','dell.server.location[sysLocation]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The physical location of this node (e.g., ''telephone closet, 3rd floor''). If the location is unknown, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3a354c53006b44f3993c962c60028c33','0','2','0'), ('36343','20','get[1.3.6.1.2.1.1.5.0]','10438','System name','dell.server.name[sysName]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node. By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is a zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d6962f725c4547ebb939503dae9f24dd','0','2','0'), ('36344','20','get[1.3.6.1.2.1.1.2.0]','10438','System object ID','dell.server.objectid[sysObjectID]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the entity as part of the vendor''s SMI enterprises subtree with the prefix 1.3.6.1.4.1 (e.g., a vendor with the identifier 1.3.6.1.4.1.4242 might assign a system object with the OID 1.3.6.1.4.1.4242.1.1).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','af019e901b1948c68888b90a703b9718','0','2','0'), ('36345','20','get[1.3.6.1.4.1.674.10892.5.2.1.0]','10438','Overall system health status','dell.server.status[globalSystemStatus]','1m','31d','0','0','3','','','','',NULL,'459','','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the overall rollup status of all the components in the system monitored by the remote access card. Includes system, storage, IO devices, iDRAC, CPU, memory, etc.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2e84d73b00bf45c7a143e52bb278c5f1','0','2','0'), ('36346','20','get[1.3.6.1.4.1.674.10892.5.1.3.6.0]','10438','Operating system','dell.server.sw.os[systemOSName]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the name of the operating system that the host is running.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','91ef2785cfa944f286c267ab351d8f33','0','2','0'), ('36348','17','','10438','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other `snmptrap` items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1a90d82b418a416b8aa4575fc6b1e35d','0','2','0'), ('36349','5','','10438','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'468','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f249e299f7c944abbbb8fc824f36b664','0','2','0'), ('36377','21','','10439','Get system','dell.server.system.get','1m','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''System'', ''Get system metrics'', params); const requests = [ { ''path'': ''/redfish/v1/Systems/System.Embedded.1'', ''keys'': [ { ''name'': ''model'', ''path'': ''Model'' }, { ''name'': ''serialnumber'', ''path'': ''Oem.Dell.DellSystem.ChassisServiceTag'' }, { ''name'': ''status'', ''path'': ''Status.Health'' } ] }, { ''path'': ''/redfish/v1/Managers/iDRAC.Embedded.1'', ''keys'': { ''name'': ''firmware'', ''path'': ''FirmwareVersion'' } } ]; var buffer = {}; for (var i = 0, requestsCount = requests.length; i < requestsCount; i++) { Object.assign(buffer, dell.extractData(dell.executeRequest(requests[i].path), requests[i].keys)); } return JSON.stringify(buffer);','','0','','','','','0',NULL,'Returns system metrics.','0','30d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','c25e7040694f4a839b4e32524698c8da','0','2','0'), ('36378','3','','10439','Redfish API status','net.tcp.service[https]','1m','31d','365d','0','3','','','','',NULL,'1347','','','0','','','','','0',NULL,'Availability of Redfish API on the server. Possible values: 0 - Unavailable 1 - Available','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','881a8358b3a049cb9516ec8f2ee20b69','0','2','0'), ('36419','20','get[1.3.6.1.2.1.1.4.0]','10440','System contact details','dell.server.contact[sysContact]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Name and contact information of the contact person for the node. If not provided, the value is a zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ca6fac1eee9f41d88df43b4e870e8e84','0','2','0'), ('36420','20','get[1.3.6.1.2.1.1.1.0]','10440','System description','dell.server.descr[sysDescr]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b738b9531e5049df8c31f1c37868f34f','0','2','0'), ('36421','20','get[1.3.6.1.4.1.674.10892.5.1.1.8.0]','10440','Firmware version','dell.server.hw.firmware[racFirmwareVersion]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the firmware version of a remote access card.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7a4e5160d533407194d63d90f93352bd','0','2','0'), ('36422','20','get[1.3.6.1.4.1.674.10892.5.1.3.12.0]','10440','Hardware model name','dell.server.hw.model[systemModelName]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the model name of the system.','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','70068169a3b74328a803fcd2d69954ee','0','2','0'), ('36423','20','get[1.3.6.1.4.1.674.10892.5.1.3.2.0]','10440','Hardware serial number','dell.server.hw.serialnumber[systemServiceTag]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the service tag of the system.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a3881855713847d286c3acd0de95a416','0','2','0'), ('36424','20','get[1.3.6.1.2.1.1.6.0]','10440','System location','dell.server.location[sysLocation]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The physical location of this node (e.g., ''telephone closet, 3rd floor''). If the location is unknown, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','286a4143fb464b31bb5cd581e7458959','0','2','0'), ('36425','20','get[1.3.6.1.2.1.1.5.0]','10440','System name','dell.server.name[sysName]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node. By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is a zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','eccac199b19143c0b3e275d5dae16729','0','2','0'), ('36426','20','get[1.3.6.1.2.1.1.2.0]','10440','System object ID','dell.server.objectid[sysObjectID]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the entity as part of the vendor''s SMI enterprises subtree with the prefix 1.3.6.1.4.1 (e.g., a vendor with the identifier 1.3.6.1.4.1.4242 might assign a system object with the OID 1.3.6.1.4.1.4242.1.1).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3561ed916061452e8597b8265c7305f3','0','2','0'), ('36427','20','get[1.3.6.1.4.1.674.10892.5.2.1.0]','10440','Overall system health status','dell.server.status[globalSystemStatus]','1m','31d','0','0','3','','','','',NULL,'481','','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the overall rollup status of all the components in the system monitored by the remote access card. Includes system, storage, IO devices, iDRAC, CPU, memory, etc.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3924d9aae3ac44b1b14d9c19204cbe2c','0','2','0'), ('36428','20','get[1.3.6.1.4.1.674.10892.5.1.3.6.0]','10440','Operating system','dell.server.sw.os[systemOSName]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the name of the operating system that the host is running.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','168398f2c797467fb7830dce8a9510b9','0','2','0'), ('36430','17','','10440','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other `snmptrap` items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2f33eafc892b487dba32aa46823eafd4','0','2','0'), ('36431','5','','10440','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'490','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5dd178b40f28436db3c71a1dd50b8ea8','0','2','0'), ('36459','21','','10441','Get system','dell.server.system.get','1m','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''System'', ''Get system metrics'', params); const requests = [ { ''path'': ''/redfish/v1/Systems/System.Embedded.1'', ''keys'': [ { ''name'': ''model'', ''path'': ''Model'' }, { ''name'': ''serialnumber'', ''path'': ''Oem.Dell.DellSystem.ChassisServiceTag'' }, { ''name'': ''status'', ''path'': ''Status.Health'' } ] }, { ''path'': ''/redfish/v1/Managers/iDRAC.Embedded.1'', ''keys'': { ''name'': ''firmware'', ''path'': ''FirmwareVersion'' } } ]; var buffer = {}; for (var i = 0, requestsCount = requests.length; i < requestsCount; i++) { Object.assign(buffer, dell.extractData(dell.executeRequest(requests[i].path), requests[i].keys)); } return JSON.stringify(buffer);','','0','','','','','0',NULL,'Returns system metrics.','0','30d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','18157734e10d4eed82a0f43168daff65','0','2','0'), ('36460','3','','10441','Redfish API status','net.tcp.service[https]','1m','31d','365d','0','3','','','','',NULL,'1356','','','0','','','','','0',NULL,'Availability of Redfish API on the server. Possible values: 0 - Unavailable 1 - Available','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1fe957b97d914400a1814ff8ac1a9fc4','0','2','0'), ('36501','20','get[1.3.6.1.2.1.1.4.0]','10442','System contact details','dell.server.contact[sysContact]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Name and contact information of the contact person for the node. If not provided, the value is a zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','65da5f84a8bb43da8b72ddbe6d757fa8','0','2','0'), ('36502','20','get[1.3.6.1.2.1.1.1.0]','10442','System description','dell.server.descr[sysDescr]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','51c9b68b617c498eb612807734076367','0','2','0'), ('36503','20','get[1.3.6.1.4.1.674.10892.5.1.1.8.0]','10442','Firmware version','dell.server.hw.firmware[racFirmwareVersion]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the firmware version of a remote access card.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','09e33063d84e486fb4964af35916cc25','0','2','0'), ('36504','20','get[1.3.6.1.4.1.674.10892.5.1.3.12.0]','10442','Hardware model name','dell.server.hw.model[systemModelName]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the model name of the system.','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b34415ae1ac84375834612f402d4ea0c','0','2','0'), ('36505','20','get[1.3.6.1.4.1.674.10892.5.1.3.2.0]','10442','Hardware serial number','dell.server.hw.serialnumber[systemServiceTag]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the service tag of the system.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b46ad39d968141259ace337d70744001','0','2','0'), ('36506','20','get[1.3.6.1.2.1.1.6.0]','10442','System location','dell.server.location[sysLocation]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The physical location of this node (e.g., ''telephone closet, 3rd floor''). If the location is unknown, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0445a9767ce34fb7b2be072609504011','0','2','0'), ('36507','20','get[1.3.6.1.2.1.1.5.0]','10442','System name','dell.server.name[sysName]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node. By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is a zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','58be11401c084b0a81ebadbde199133d','0','2','0'), ('36508','20','get[1.3.6.1.2.1.1.2.0]','10442','System object ID','dell.server.objectid[sysObjectID]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the entity as part of the vendor''s SMI enterprises subtree with the prefix 1.3.6.1.4.1 (e.g., a vendor with the identifier 1.3.6.1.4.1.4242 might assign a system object with the OID 1.3.6.1.4.1.4242.1.1).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','808a099b33c6438e8fd91a4f29c41f35','0','2','0'), ('36509','20','get[1.3.6.1.4.1.674.10892.5.2.1.0]','10442','Overall system health status','dell.server.status[globalSystemStatus]','1m','31d','0','0','3','','','','',NULL,'494','','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the overall rollup status of all the components in the system monitored by the remote access card. Includes system, storage, IO devices, iDRAC, CPU, memory, etc.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','42be6e0b9fbe46179597650622a2241a','0','2','0'), ('36510','20','get[1.3.6.1.4.1.674.10892.5.1.3.6.0]','10442','Operating system','dell.server.sw.os[systemOSName]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the name of the operating system that the host is running.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8d967ad6ac2b46c28072f713cd11b59f','0','2','0'), ('36512','17','','10442','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other `snmptrap` items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','074f6d9a11814bb7909d99664192421d','0','2','0'), ('36513','5','','10442','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'503','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b690c870c11c40ecbd162a01e82abbfe','0','2','0'), ('36541','20','get[1.3.6.1.2.1.1.4.0]','10443','System contact details','hp.server.contact[sysContact]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0747f8f3cc624f469324c127577aa9f9','0','2','0'), ('36542','20','get[1.3.6.1.2.1.1.1.0]','10443','System description','hp.server.descr[sysDescr]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cc714f5445be431192dbeb553f0aa5c5','0','2','0'), ('36543','20','get[1.3.6.1.4.1.232.2.2.4.2.0]','10443','Hardware model name','hp.server.hw.model[cpqSiProductName]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CPQSINFO-MIB The machine product name. The name of the machine used in this system.','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bf4baaaa76dc4f39bd39c62742f03e26','0','2','0'), ('36544','20','get[1.3.6.1.4.1.232.2.2.2.1.0]','10443','Hardware serial number','hp.server.hw.serialnumber[cpqSiSysSerialNum]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CPQSINFO-MIB The serial number of the physical system unit. The string will be empty if the system does not report the serial number function.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6d5e2b9ae30b4c43a91cada24c4cc240','0','2','0'), ('36545','20','get[1.3.6.1.2.1.1.6.0]','10443','System location','hp.server.location[sysLocation]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The physical location of this node (e.g., `telephone closet, 3rd floor''). If the location is unknown, the value is the zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b85a86fa36bd484cbd36cd25d2a605f9','0','2','0'), ('36546','20','get[1.3.6.1.2.1.1.5.0]','10443','System name','hp.server.name[sysName]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3df8b71c3f14432e8cd43fbc24f12447','0','2','0'), ('36547','20','get[1.3.6.1.2.1.1.2.0]','10443','System object ID','hp.server.objectid[sysObjectID]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8573488eb0114109bc3c94f2edf00792','0','2','0'), ('36548','20','get[1.3.6.1.4.1.232.6.2.6.1.0]','10443','System temperature status','hp.server.sensor.temp.status[cpqHeThermalCondition]','1m','31d','0','0','3','','','','',NULL,'515','','','0','','','','','0',NULL,'MIB: CPQHLTH-MIB This value specifies the overall condition of the system''s thermal environment. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3891df22d63d4be5a62c8a27ac9d8965','0','2','0'), ('36549','20','get[1.3.6.1.4.1.232.6.1.3.0]','10443','Overall system health status','hp.server.status[cpqHeMibCondition]','1m','31d','0','0','3','','','','',NULL,'515','','','0','','','','','0',NULL,'MIB: CPQHLTH-MIB The overall condition. This object represents the overall status of the server information represented by this MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a8ea3fc6a5914a868be12f21342a9678','0','2','0'), ('36550','20','get[1.3.6.1.2.1.1.3.0]','10443','Uptime (network)','hp.server.net.uptime[sysUpTime]','1m','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','65ec5672f1de4852b1ee52ce57e4f58f','0','2','0'), ('36551','17','','10443','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','37dc9b6453184fe58435d12d422582d9','0','2','0'), ('36552','5','','10443','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'516','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d2e80ecf16bb49af99eb52a45b8c11cf','0','2','0'), ('36553','20','discovery[{#CACHE_STATUS},1.3.6.1.4.1.232.3.2.2.2.1.2,{#CACHE_CNTRL_INDEX},1.3.6.1.4.1.232.3.2.2.2.1.1]','10443','Array controller cache discovery','array.cache.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Array controllers: CPQIDA-MIB::cpqDaAccelTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','79cb6edf94f441eea4b429e8474fa0c9','0','2','0'), ('36554','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.2.1.1.1,{#CNTLR_SLOT},1.3.6.1.4.1.232.3.2.2.1.1.5,{#CNTLR_LOCATION},1.3.6.1.4.1.232.3.2.2.1.1.20]','10443','Array controller discovery','array.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Array controllers: CPQIDA-MIB::cpqDaCntlrTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3e72130010414c7dbc3b7b050df9e577','0','2','0'), ('36555','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.7.1.9]','10443','FAN discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPQHLTH-MIB::cpqHeFltTolFanCondition','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cbcd697782e34a5e87cef72d65229a87','0','2','0'), ('36556','20','discovery[{#ADAPTER_INDEX},1.3.6.1.4.1.232.18.2.3.1.1.1,{#ADAPTER_NAME},1.3.6.1.4.1.232.18.2.3.1.1.39]','10443','Network interface discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPQIDA-MIB::cpqNicIfPhysAdapterTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dbe83d07252743f2bc889ce320730d78','0','2','0'), ('36557','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.5.1.1.5,{#DISK_LOCATION},1.3.6.1.4.1.232.3.2.5.1.1.64]','10443','Physical disk discovery','physicaldisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of physical drive entries CPQIDA-MIB::cpqDaPhyDrvTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4ec2950e764249dc9c091e92dbba4137','0','2','0'), ('36558','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.9.3.1.5,{#CHASSIS_NUM},1.3.6.1.4.1.232.6.2.9.3.1.1,{#BAY_NUM},1.3.6.1.4.1.232.6.2.9.3.1.2]','10443','PSU discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPQHLTH-MIB::cpqHeFltTolPowerSupplyStatus','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5b9a240a6b864513b2b0ac8a4f0a0c07','0','2','0'), ('36559','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10443','Temperature ambient discovery','temp.ambient.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with ambient(11) and 0.1 index filter','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','641f9eebbb134b34960f92037c694802','0','2','0'), ('36560','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10443','Temperature CPU discovery','temp.cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with cpu(6) filter','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aa4918f21cf14e2c94ac155ac3a0b0b4','0','2','0'), ('36561','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10443','Temperature discovery','temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c3b3cfe6aa4c47d0ab66b9a969df85bd','0','2','0'), ('36562','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10443','Temperature I/O discovery','temp.io.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with ioBoard(5) filter','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','be33f30661ba4c3e88ace96906b0a74c','0','2','0'), ('36563','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10443','Temperature memory discovery','temp.memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with memory(7) filter','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d4dc4e4e6fab415baae36e98877205c5','0','2','0'), ('36564','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10443','Temperature PSU discovery','temp.psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with powerSupply(10) filter','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6df0ad42b4c74a19b9bdfc240db626bb','0','2','0'), ('36565','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10443','Temperature system discovery','temp.system.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with system(3) filter','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dfa25ab78aab4cf081e3857f2a40dee4','0','2','0'), ('36566','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.3.1.1.2,{#DISK_NAME},1.3.6.1.4.1.232.3.2.3.1.1.14]','10443','Virtual disk discovery','virtualdisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPQIDA-MIB::cpqDaLogDrvTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','92ab660734234833adfe7108df529c24','0','2','0'), ('36567','20','get[1.3.6.1.4.1.232.3.2.2.2.1.6.{#SNMPINDEX}]','10443','#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery status','hp.server.hw.diskarray.cache.battery.status[cpqDaAccelBattery.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'506','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Cache Module Board Backup Power Status. This monitors the status of each backup power source on the board. The backup power source can only recharge when the system has power applied. The type of backup power source used is indicated by cpqDaAccelBackupPowerSource. The following values are valid: Other (1) Indicates that the instrument agent does not recognize backup power status. You may need to update your software. Ok (2) The backup power source is fully charged. Recharging (3) The array controller has one or more cache module backup power sources that are recharging. Cache module operations such as Battery/Flash Backed Write Cache, Expansion, Extension and Migration are temporarily suspended until the backup power source is fully charged. Cache module operations will automatically resume when charging is complete. Failed (4) The battery pack is below the sufficient voltage level and has not recharged in 36 hours. Your Cache Module board needs to be serviced. Degraded (5) The battery is still operating, however, one of the batteries in the pack has failed to recharge properly. Your Cache Module board should be serviced as soon as possible. NotPresent (6) A backup power source is not present on the cache module board. Some controllers do not have backup power sources. Capacitor Failed (7) The flash backed cache module capacitor is below the sufficient voltage level and has not recharged in 10 minutes. Your Cache Module board needs to be serviced.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0cf60fc04cc243df95145b5e3128b598','0','2','0'), ('36568','20','get[1.3.6.1.4.1.232.3.2.2.2.1.2.{#SNMPINDEX}]','10443','#{#CACHE_CNTRL_INDEX}: Disk array cache controller status','hp.server.hw.diskarray.cache.status[cpqDaAccelStatus.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'507','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Cache Module/Operations Status. This describes the status of the cache module and/or cache operations. Note that for some controller models, a cache module board that physically attaches to the controller or chipset may not be an available option. The status can be: Other (1) Indicates that the instrument agent does not recognize the status of the cache module. You may need to upgrade the instrument agent. Invalid (2) Indicates that a cache module board has not been installed in this system or is present but not configured. Enabled (3) Indicates that cache operations are currently configured and enabled for at least one logical drive. Temporarily Disabled (4) Indicates that cache operations have been temporarily disabled. View the cache module board error code object to determine why the write cache operations have been temporarily disabled. Permanently Disabled (5) Indicates that cache operations have been permanently disabled. View the cache module board error code object to determine why the write cache operations have been disabled. Cache Module Flash Memory Not Attached (6) Indicates that the flash memory component of the flash backed cache module is not attached. This status will be set when the flash memory is not attached and the Supercap is attached. This value is only used on flash backed cache modules that support removable flash memory. Cache Module Degraded Failsafe Speed (7) Indicates that the cache module board is currently degraded and operating at a failsafe speed. View variables cpqDaCacheMemoryDataWidth and cpqDaCacheMemoryTransferRate to obtain the cache module board`s current memory data width and memory transfer rate. Cache Module Critical Failure (8) Indicates that the cache module board has encountered a critical failure. The controller is currently operating in Zero Memory Raid mode. Read Cache Could Not Be Mapped (9) Indicates that the read cache memory in a split cache configuration could not be mapped by the operating system and as a result is not available. This status may be caused by virtual space limitations in certain operating systems and is only applicable to B-Series controllers.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','10e011c0c8cf4571bfdd2ab414c1853b','0','2','0'), ('36569','20','get[1.3.6.1.4.1.232.3.2.2.1.1.2.{#SNMPINDEX}]','10443','{#CNTLR_LOCATION}: Disk array controller model','hp.server.hw.diskarray.model[cpqDaCntlrModel.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'508','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Array Controller Model. The type of controller card.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','be46bc977cdd4a85a364628a21df099d','0','2','0'), ('36570','20','get[1.3.6.1.4.1.232.3.2.2.1.1.6.{#SNMPINDEX}]','10443','{#CNTLR_LOCATION}: Disk array controller status','hp.server.hw.diskarray.status[cpqDaCntlrCondition.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'515','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB This value represents the overall condition of this controller, and any associated logical drives, physical drives, and array accelerators.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d89a3b9bab6c4439a9797ee9208fec26','0','2','0'), ('36571','20','get[1.3.6.1.4.1.232.6.2.6.7.1.9.{#SNMPINDEX}]','10443','Fan {#SNMPINDEX}: Fan status','hp.server.sensor.fan.status[cpqHeFltTolFanCondition.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'515','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The condition of the fan. This value will be one of the following: other(1) Fan status detection is not supported by this system or driver. ok(2) The fan is operating properly. degraded(2) A redundant fan is not operating properly. failed(4) A non-redundant fan is not operating properly.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','02b11840d01245cfbac4e3a5264c713e','0','2','0'), ('36572','20','get[1.3.6.1.4.1.232.18.2.3.1.1.14.{#SNMPINDEX}]','10443','{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Status','hp.server.net.if.status[cpqNicIfPhysAdapterStatus.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'514','','','0','','','','','2',NULL,'MIB: CPQNIC-MIB The physical adapter status. The following values are valid: unknown(1) The instrument agent was not able to determine the status of the adapter. The instrument agent may need to be upgraded. ok(2) The physical adapter is operating properly. generalFailure(3) The physical adapter has failed. linkFailure(4) The physical adapter has lost link. Check the cable connections to this adapter.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1b446f4de8be4eeab2410756739eae6c','0','2','0'), ('36573','20','get[1.3.6.1.4.1.232.3.2.5.1.1.69.{#SNMPINDEX}]','10443','{#DISK_LOCATION}: Physical disk media type','hp.server.hw.physicaldisk.media_type[cpqDaPhyDrvMediaType.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'511','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Drive Array Physical Drive Media Type. The following values are defined: other(1) The instrument agent is unable to determine the physical drive''s media type. rotatingPlatters(2) The physical drive media is composed of rotating platters. solidState(3) The physical drive media is composed of solid state electronics.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6ebfcb4a2bd44407920c47f060ec6307','0','2','0'), ('36574','20','get[1.3.6.1.4.1.232.3.2.5.1.1.3.{#SNMPINDEX}]','10443','{#DISK_LOCATION}: Physical disk model name','hp.server.hw.physicaldisk.model[cpqDaPhyDrvModel.{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Physical Drive Model. This is a text description of the physical drive. The text that appears depends upon who manufactured the drive and the drive type. If a drive fails, note the model to identify the type of drive necessary for replacement. If a model number is not present, you may not have properly initialized the drive array to which the physical drive is attached for monitoring.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6c59eaa90b964ad4b9f5a0511d620e9d','0','2','0'), ('36575','20','get[1.3.6.1.4.1.232.3.2.5.1.1.51.{#SNMPINDEX}]','10443','{#DISK_LOCATION}: Physical disk serial number','hp.server.hw.physicaldisk.serialnumber[cpqDaPhyDrvSerialNum.{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Physical Drive Serial Number. This is the serial number assigned to the physical drive. This value is based upon the serial number as returned by the SCSI inquiry command but may have been modified due to space limitations. This can be used for identification purposes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f4f6e63dd1714c2ca721baebb478f5ab','0','2','0'), ('36576','20','get[1.3.6.1.4.1.232.3.2.5.1.1.45.{#SNMPINDEX}]','10443','{#DISK_LOCATION}: Disk size','hp.server.hw.physicaldisk.size[cpqDaPhyDrvMediaType.{#SNMPINDEX}]','1m','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Physical Drive Size in MB. This is the size of the physical drive in megabytes. This value is calculated using the value 1,048,576 (2^20) as a megabyte. Drive manufacturers sometimes use the number 1,000,000 as a megabyte when giving drive capacities so this value may differ from the advertised size of a drive. This field is only applicable for controllers which support SCSI drives, and therefore is not supported by the IDA or IDA-2 controllers. The field will contain 0xFFFFFFFF if the drive capacity cannot be calculated or if the controller does not support SCSI drives.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dee3a8bb94184bad80d058cb9ac3d324','0','2','0'), ('36577','20','get[1.3.6.1.4.1.232.3.2.5.1.1.57.{#SNMPINDEX}]','10443','{#DISK_LOCATION}: Physical disk S.M.A.R.T. status','hp.server.hw.physicaldisk.smart_status[cpqDaPhyDrvSmartStatus.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'512','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Physical Drive S.M.A.R.T Status. The following values are defined: other(1) The agent is unable to determine if the status of S.M.A.R.T predictive failure monitoring for this drive. ok(2) Indicates the drive is functioning properly. replaceDrive(3) Indicates that the drive has a S.M.A.R.T predictive failure error and should be replaced.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e08b144330824b9f8a9df61f4e4016b4','0','2','0'), ('36578','20','get[1.3.6.1.4.1.232.3.2.5.1.1.6.{#SNMPINDEX}]','10443','{#DISK_LOCATION}: Physical disk status','hp.server.hw.physicaldisk.status[cpqDaPhyDrvStatus.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'513','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Physical Drive Status. This shows the status of the physical drive. The following values are valid for the physical drive status: other (1) Indicates that the instrument agent does not recognize the drive. You may need to upgrade your instrument agent and/or driver software. ok (2) Indicates the drive is functioning properly. failed (3) Indicates that the drive is no longer operating and should be replaced. predictiveFailure(4) Indicates that the drive has a predictive failure error and should be replaced.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d0449cc58efb4258ba71e8d6837cab20','0','2','0'), ('36579','20','get[1.3.6.1.4.1.232.6.2.9.3.1.4.{#SNMPINDEX}]','10443','Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply status','hp.server.sensor.psu.status[cpqHeFltTolPowerSupplyCondition.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'515','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The condition of the power supply. This value will be one of the following: other(1) The status could not be determined or not present. ok(2) The power supply is operating normally. degraded(3) A temperature sensor, fan or other power supply component is outside of normal operating range. failed(4) A power supply component detects a condition that could permanently damage the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c49420a345664c719d9eb02f0ee866c1','0','2','0'), ('36580','20','get[1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}]','10443','Ambient: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.Ambient.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'504','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The Temperature sensor condition. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system. The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6d81b9d2bfff4312810a50d340f8ba17','0','2','0'), ('36581','20','get[1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}]','10443','Ambient: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.Ambient.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB Temperature readings of testpoint: Ambient','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1cfee00e1b4d49528589520036b4bf8d','0','2','0'), ('36582','20','get[1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}]','10443','CPU-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.CPU.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'504','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The Temperature sensor condition. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system. The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0fa15e127d03487cb4fbfaaaacf4fe96','0','2','0'), ('36583','20','get[1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}]','10443','CPU-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.CPU.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB Temperature readings of testpoint: CPU-{#SNMPINDEX}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4f67a2ca1b9d4b179770558df5b8edb7','0','2','0'), ('36584','20','get[1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}]','10443','{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'504','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The Temperature sensor condition. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system. The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4f13e0a5d45e4847931829f9abd30795','0','2','0'), ('36585','20','get[1.3.6.1.4.1.232.6.2.6.8.1.3.{#SNMPINDEX}]','10443','{#SNMPINDEX}: Temperature sensor location','hp.server.sensor.temp.locale[cpqHeTemperatureLocale.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'505','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB This specifies the location of the temperature sensor present in the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c21a7b49d03f4b2e9c532777d4931236','0','2','0'), ('36586','20','get[1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}]','10443','{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB Temperature readings of testpoint: {#SNMPINDEX}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8ac8567f26884cab9d175d9f9934d575','0','2','0'), ('36587','20','get[1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}]','10443','I/O-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition."I/O.{#SNMPINDEX}"]','1m','31d','365d','0','3','','','','',NULL,'504','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The Temperature sensor condition. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system. The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0addee41af6e489fbf2a9747d9cab50e','0','2','0'), ('36588','20','get[1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}]','10443','I/O-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius."I/O.{#SNMPINDEX}"]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB Temperature readings of testpoint: I/O-{#SNMPINDEX}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2fa250ea6f1e472d9e90984d0918c50d','0','2','0'), ('36589','20','get[1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}]','10443','Memory-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.Memory.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'504','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The Temperature sensor condition. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system. The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8468b9ca183e44569f6d467f7d103b11','0','2','0'), ('36590','20','get[1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}]','10443','Memory-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.Memory.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB Temperature readings of testpoint: Memory-{#SNMPINDEX}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7441c5de35fd4ff2b6a20c1896525bd4','0','2','0'), ('36591','20','get[1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}]','10443','PSU-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.PSU.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'504','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The Temperature sensor condition. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system. The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','222d768e05d442ecb12a4cc83100438d','0','2','0'), ('36592','20','get[1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}]','10443','PSU-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.PSU.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB Temperature readings of testpoint: PSU-{#SNMPINDEX}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ca1e5c260caa48368fa299a9dc007512','0','2','0'), ('36593','20','get[1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}]','10443','System-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.System.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'504','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The Temperature sensor condition. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system. The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','10f22e6ea868460c98cc97f24a6c83e4','0','2','0'), ('36594','20','get[1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}]','10443','System-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.System.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB Temperature readings of testpoint: System-{#SNMPINDEX}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e25f6cbbb1d444ff851895b37dfcde5d','0','2','0'), ('36595','20','get[1.3.6.1.4.1.232.3.2.3.1.1.3.{#SNMPINDEX}]','10443','Disk {#SNMPINDEX}({#DISK_NAME}): Layout type','hp.server.hw.virtualdisk.layout[cpqDaLogDrvFaultTol.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'509','','','0','','','','','2',NULL,'Logical Drive Fault Tolerance. This shows the fault tolerance mode of the logical drive.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a468686d8de44b958b26a69b4c8d11ed','0','2','0'), ('36596','20','get[1.3.6.1.4.1.232.3.2.3.1.1.9.{#SNMPINDEX}]','10443','Disk {#SNMPINDEX}({#DISK_NAME}): Disk size','hp.server.hw.virtualdisk.size[cpqDaLogDrvSize.{#SNMPINDEX}]','1m','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Logical Drive Size. This is the size of the logical drive in megabytes. This value is calculated using the value 1,048,576 (2^20) as a megabyte. Drive manufacturers sometimes use the number 1,000,000 as a megabyte when giving drive capacities so this value may differ from the advertised size of a drive.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1e890df502e04b5ba34b3ddc8d9aea57','0','2','0'), ('36597','20','get[1.3.6.1.4.1.232.3.2.3.1.1.4.{#SNMPINDEX}]','10443','Disk {#SNMPINDEX}({#DISK_NAME}): Status','hp.server.hw.virtualdisk.status[cpqDaLogDrvStatus.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'510','','','0','','','','','2',NULL,'Logical Drive Status.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3702a04cf01a4390805535af4f0b8172','0','2','0'), ('36598','20','get[1.3.6.1.2.1.1.4.0]','10444','System contact details','hp.server.contact[sysContact]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1831d0a9399d4e41a0fd1dc392241640','0','2','0'), ('36599','20','get[1.3.6.1.2.1.1.1.0]','10444','System description','hp.server.descr[sysDescr]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','342a1fb4781d4f4fbafa7728f0c54d44','0','2','0'), ('36600','20','get[1.3.6.1.4.1.232.2.2.4.2.0]','10444','Hardware model name','hp.server.hw.model[cpqSiProductName]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CPQSINFO-MIB The machine product name. The name of the machine used in this system.','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1b4a890c4d244ce7920193f2fcd34cd0','0','2','0'), ('36601','20','get[1.3.6.1.4.1.232.2.2.2.1.0]','10444','Hardware serial number','hp.server.hw.serialnumber[cpqSiSysSerialNum]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CPQSINFO-MIB The serial number of the physical system unit. The string will be empty if the system does not report the serial number function.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e0da21845f8b49fd8c4471db20cf7a31','0','2','0'), ('36602','20','get[1.3.6.1.2.1.1.6.0]','10444','System location','hp.server.location[sysLocation]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The physical location of this node (e.g., `telephone closet, 3rd floor''). If the location is unknown, the value is the zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fa3cec21b4a64ba9990bb2adaaba8a00','0','2','0'), ('36603','20','get[1.3.6.1.2.1.1.5.0]','10444','System name','hp.server.name[sysName]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','01bf2613057541b082320fa81b07636f','0','2','0'), ('36604','20','get[1.3.6.1.2.1.1.2.0]','10444','System object ID','hp.server.objectid[sysObjectID]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','abb51a946f5d4ee09895bef2e1df0fa6','0','2','0'), ('36605','20','get[1.3.6.1.4.1.232.6.2.6.1.0]','10444','System temperature status','hp.server.sensor.temp.status[cpqHeThermalCondition]','1m','31d','0','0','3','','','','',NULL,'528','','','0','','','','','0',NULL,'MIB: CPQHLTH-MIB This value specifies the overall condition of the system''s thermal environment. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2a1af5ba5ee643c7b63e5eae10703e9c','0','2','0'), ('36606','20','get[1.3.6.1.4.1.232.6.1.3.0]','10444','Overall system health status','hp.server.status[cpqHeMibCondition]','1m','31d','0','0','3','','','','',NULL,'528','','','0','','','','','0',NULL,'MIB: CPQHLTH-MIB The overall condition. This object represents the overall status of the server information represented by this MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4b05f7e3700440ee81cb38851c561a09','0','2','0'), ('36607','20','get[1.3.6.1.2.1.1.3.0]','10444','Uptime (network)','hp.server.net.uptime[sysUpTime]','1m','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','244691064ba54bf186a44219077fc804','0','2','0'), ('36608','17','','10444','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','356100e223784f398701839a2e74b6ff','0','2','0'), ('36609','5','','10444','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'529','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1924b196b0af4b0ba91519187bf22c78','0','2','0'), ('36610','20','discovery[{#CACHE_STATUS},1.3.6.1.4.1.232.3.2.2.2.1.2,{#CACHE_CNTRL_INDEX},1.3.6.1.4.1.232.3.2.2.2.1.1]','10444','Array controller cache discovery','array.cache.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Array controllers: CPQIDA-MIB::cpqDaAccelTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','89fa0f7fbaf0442dae2994c94cc9ec01','0','2','0'), ('36611','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.2.1.1.1,{#CNTLR_SLOT},1.3.6.1.4.1.232.3.2.2.1.1.5,{#CNTLR_LOCATION},1.3.6.1.4.1.232.3.2.2.1.1.20]','10444','Array controller discovery','array.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Array controllers: CPQIDA-MIB::cpqDaCntlrTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b0ef0784a3e6410c965d421e21cb8570','0','2','0'), ('36612','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.7.1.9]','10444','FAN discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPQHLTH-MIB::cpqHeFltTolFanCondition','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','af4174c63f3d4bf2b0ca523c195b56d8','0','2','0'), ('36613','20','discovery[{#ADAPTER_INDEX},1.3.6.1.4.1.232.18.2.3.1.1.1,{#ADAPTER_NAME},1.3.6.1.4.1.232.18.2.3.1.1.39]','10444','Network interface discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPQIDA-MIB::cpqNicIfPhysAdapterTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','32f1d3333d314ac28bd85b6d5d2a97d0','0','2','0'), ('36614','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.5.1.1.5,{#DISK_LOCATION},1.3.6.1.4.1.232.3.2.5.1.1.64]','10444','Physical disk discovery','physicaldisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of physical drive entries CPQIDA-MIB::cpqDaPhyDrvTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','174f8fc9db6e4484a3f2c5f27def0b13','0','2','0'), ('36615','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.9.3.1.5,{#CHASSIS_NUM},1.3.6.1.4.1.232.6.2.9.3.1.1,{#BAY_NUM},1.3.6.1.4.1.232.6.2.9.3.1.2]','10444','PSU discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPQHLTH-MIB::cpqHeFltTolPowerSupplyStatus','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','569998dd6c56424494154225b295a069','0','2','0'), ('36616','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10444','Temperature ambient discovery','temp.ambient.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with ambient(11) and 0.1 index filter','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5442309de7164104b132c29ab74eeb96','0','2','0'), ('36617','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10444','Temperature CPU discovery','temp.cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with cpu(6) filter','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2478800b0f934fe99ae1f8a3306dec75','0','2','0'), ('36618','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10444','Temperature discovery','temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3112cda4ca9c4e1cb51f9b02d0c08bf8','0','2','0'), ('36619','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10444','Temperature I/O discovery','temp.io.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with ioBoard(5) filter','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d4a7f83a79c54b43b0e862d253893d14','0','2','0'), ('36620','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10444','Temperature memory discovery','temp.memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with memory(7) filter','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3753e9accb0147a5a5a0c85b381c156a','0','2','0'), ('36621','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10444','Temperature PSU discovery','temp.psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with powerSupply(10) filter','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4badf00f164b4490820c1ad090000cf2','0','2','0'), ('36622','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10444','Temperature system discovery','temp.system.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with system(3) filter','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aa477ce470d842e28481360fd01984f8','0','2','0'), ('36623','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.3.1.1.2,{#DISK_NAME},1.3.6.1.4.1.232.3.2.3.1.1.14]','10444','Virtual disk discovery','virtualdisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPQIDA-MIB::cpqDaLogDrvTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d9385990317b4bf6a973fd463697f172','0','2','0'), ('36624','20','get[1.3.6.1.4.1.232.3.2.2.2.1.6.{#SNMPINDEX}]','10444','#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery status','hp.server.hw.diskarray.cache.battery.status[cpqDaAccelBattery.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'519','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Cache Module Board Backup Power Status. This monitors the status of each backup power source on the board. The backup power source can only recharge when the system has power applied. The type of backup power source used is indicated by cpqDaAccelBackupPowerSource. The following values are valid: Other (1) Indicates that the instrument agent does not recognize backup power status. You may need to update your software. Ok (2) The backup power source is fully charged. Recharging (3) The array controller has one or more cache module backup power sources that are recharging. Cache module operations such as Battery/Flash Backed Write Cache, Expansion, Extension and Migration are temporarily suspended until the backup power source is fully charged. Cache module operations will automatically resume when charging is complete. Failed (4) The battery pack is below the sufficient voltage level and has not recharged in 36 hours. Your Cache Module board needs to be serviced. Degraded (5) The battery is still operating, however, one of the batteries in the pack has failed to recharge properly. Your Cache Module board should be serviced as soon as possible. NotPresent (6) A backup power source is not present on the cache module board. Some controllers do not have backup power sources. Capacitor Failed (7) The flash backed cache module capacitor is below the sufficient voltage level and has not recharged in 10 minutes. Your Cache Module board needs to be serviced.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8217a74bab1c4d31bc504d772ec3d98e','0','2','0'), ('36625','20','get[1.3.6.1.4.1.232.3.2.2.2.1.2.{#SNMPINDEX}]','10444','#{#CACHE_CNTRL_INDEX}: Disk array cache controller status','hp.server.hw.diskarray.cache.status[cpqDaAccelStatus.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'520','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Cache Module/Operations Status. This describes the status of the cache module and/or cache operations. Note that for some controller models, a cache module board that physically attaches to the controller or chipset may not be an available option. The status can be: Other (1) Indicates that the instrument agent does not recognize the status of the cache module. You may need to upgrade the instrument agent. Invalid (2) Indicates that a cache module board has not been installed in this system or is present but not configured. Enabled (3) Indicates that cache operations are currently configured and enabled for at least one logical drive. Temporarily Disabled (4) Indicates that cache operations have been temporarily disabled. View the cache module board error code object to determine why the write cache operations have been temporarily disabled. Permanently Disabled (5) Indicates that cache operations have been permanently disabled. View the cache module board error code object to determine why the write cache operations have been disabled. Cache Module Flash Memory Not Attached (6) Indicates that the flash memory component of the flash backed cache module is not attached. This status will be set when the flash memory is not attached and the Supercap is attached. This value is only used on flash backed cache modules that support removable flash memory. Cache Module Degraded Failsafe Speed (7) Indicates that the cache module board is currently degraded and operating at a failsafe speed. View variables cpqDaCacheMemoryDataWidth and cpqDaCacheMemoryTransferRate to obtain the cache module board`s current memory data width and memory transfer rate. Cache Module Critical Failure (8) Indicates that the cache module board has encountered a critical failure. The controller is currently operating in Zero Memory Raid mode. Read Cache Could Not Be Mapped (9) Indicates that the read cache memory in a split cache configuration could not be mapped by the operating system and as a result is not available. This status may be caused by virtual space limitations in certain operating systems and is only applicable to B-Series controllers.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f96da82cf6da49a7a7d0d5240096f4f4','0','2','0'), ('36626','20','get[1.3.6.1.4.1.232.3.2.2.1.1.2.{#SNMPINDEX}]','10444','{#CNTLR_LOCATION}: Disk array controller model','hp.server.hw.diskarray.model[cpqDaCntlrModel.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'521','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Array Controller Model. The type of controller card.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4da3c6124f044cb18ee51874f385309f','0','2','0'), ('36627','20','get[1.3.6.1.4.1.232.3.2.2.1.1.6.{#SNMPINDEX}]','10444','{#CNTLR_LOCATION}: Disk array controller status','hp.server.hw.diskarray.status[cpqDaCntlrCondition.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'528','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB This value represents the overall condition of this controller, and any associated logical drives, physical drives, and array accelerators.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','acf2b673f18f40e292301402994c1f99','0','2','0'), ('36628','20','get[1.3.6.1.4.1.232.6.2.6.7.1.9.{#SNMPINDEX}]','10444','Fan {#SNMPINDEX}: Fan status','hp.server.sensor.fan.status[cpqHeFltTolFanCondition.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'528','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The condition of the fan. This value will be one of the following: other(1) Fan status detection is not supported by this system or driver. ok(2) The fan is operating properly. degraded(2) A redundant fan is not operating properly. failed(4) A non-redundant fan is not operating properly.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c92f5ccc44b3466ea824cef2371e5226','0','2','0'), ('36629','20','get[1.3.6.1.4.1.232.18.2.3.1.1.14.{#SNMPINDEX}]','10444','{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Status','hp.server.net.if.status[cpqNicIfPhysAdapterStatus.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'527','','','0','','','','','2',NULL,'MIB: CPQNIC-MIB The physical adapter status. The following values are valid: unknown(1) The instrument agent was not able to determine the status of the adapter. The instrument agent may need to be upgraded. ok(2) The physical adapter is operating properly. generalFailure(3) The physical adapter has failed. linkFailure(4) The physical adapter has lost link. Check the cable connections to this adapter.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','30d1913dc3484b8596a0a600e68f2e6f','0','2','0'), ('36630','20','get[1.3.6.1.4.1.232.3.2.5.1.1.69.{#SNMPINDEX}]','10444','{#DISK_LOCATION}: Physical disk media type','hp.server.hw.physicaldisk.media_type[cpqDaPhyDrvMediaType.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'524','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Drive Array Physical Drive Media Type. The following values are defined: other(1) The instrument agent is unable to determine the physical drive''s media type. rotatingPlatters(2) The physical drive media is composed of rotating platters. solidState(3) The physical drive media is composed of solid state electronics.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1e7dcaf5ef404bcbadaa2042895fc23c','0','2','0'), ('36631','20','get[1.3.6.1.4.1.232.3.2.5.1.1.3.{#SNMPINDEX}]','10444','{#DISK_LOCATION}: Physical disk model name','hp.server.hw.physicaldisk.model[cpqDaPhyDrvModel.{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Physical Drive Model. This is a text description of the physical drive. The text that appears depends upon who manufactured the drive and the drive type. If a drive fails, note the model to identify the type of drive necessary for replacement. If a model number is not present, you may not have properly initialized the drive array to which the physical drive is attached for monitoring.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8a1551e94dca47d5b90b31d474e01d0f','0','2','0'), ('36632','20','get[1.3.6.1.4.1.232.3.2.5.1.1.51.{#SNMPINDEX}]','10444','{#DISK_LOCATION}: Physical disk serial number','hp.server.hw.physicaldisk.serialnumber[cpqDaPhyDrvSerialNum.{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Physical Drive Serial Number. This is the serial number assigned to the physical drive. This value is based upon the serial number as returned by the SCSI inquiry command but may have been modified due to space limitations. This can be used for identification purposes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4c1f6a97a6314ca4ab1bb6b7210b963c','0','2','0'), ('36633','20','get[1.3.6.1.4.1.232.3.2.5.1.1.45.{#SNMPINDEX}]','10444','{#DISK_LOCATION}: Disk size','hp.server.hw.physicaldisk.size[cpqDaPhyDrvMediaType.{#SNMPINDEX}]','1m','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Physical Drive Size in MB. This is the size of the physical drive in megabytes. This value is calculated using the value 1,048,576 (2^20) as a megabyte. Drive manufacturers sometimes use the number 1,000,000 as a megabyte when giving drive capacities so this value may differ from the advertised size of a drive. This field is only applicable for controllers which support SCSI drives, and therefore is not supported by the IDA or IDA-2 controllers. The field will contain 0xFFFFFFFF if the drive capacity cannot be calculated or if the controller does not support SCSI drives.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e54d9d7984974d28aa7a0ba52aec9362','0','2','0'), ('36634','20','get[1.3.6.1.4.1.232.3.2.5.1.1.57.{#SNMPINDEX}]','10444','{#DISK_LOCATION}: Physical disk S.M.A.R.T. status','hp.server.hw.physicaldisk.smart_status[cpqDaPhyDrvSmartStatus.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'525','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Physical Drive S.M.A.R.T Status. The following values are defined: other(1) The agent is unable to determine if the status of S.M.A.R.T predictive failure monitoring for this drive. ok(2) Indicates the drive is functioning properly. replaceDrive(3) Indicates that the drive has a S.M.A.R.T predictive failure error and should be replaced.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','293938d45e7a4022ac8ae31aaa4ec462','0','2','0'), ('36635','20','get[1.3.6.1.4.1.232.3.2.5.1.1.6.{#SNMPINDEX}]','10444','{#DISK_LOCATION}: Physical disk status','hp.server.hw.physicaldisk.status[cpqDaPhyDrvStatus.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'526','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Physical Drive Status. This shows the status of the physical drive. The following values are valid for the physical drive status: other (1) Indicates that the instrument agent does not recognize the drive. You may need to upgrade your instrument agent and/or driver software. ok (2) Indicates the drive is functioning properly. failed (3) Indicates that the drive is no longer operating and should be replaced. predictiveFailure(4) Indicates that the drive has a predictive failure error and should be replaced.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0b566ca9b2df4a20a053b49a26f7be9a','0','2','0'), ('36636','20','get[1.3.6.1.4.1.232.6.2.9.3.1.4.{#SNMPINDEX}]','10444','Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply status','hp.server.sensor.psu.status[cpqHeFltTolPowerSupplyCondition.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'528','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The condition of the power supply. This value will be one of the following: other(1) The status could not be determined or not present. ok(2) The power supply is operating normally. degraded(3) A temperature sensor, fan or other power supply component is outside of normal operating range. failed(4) A power supply component detects a condition that could permanently damage the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ff3fc376d95c49e1aba66f253d1a12be','0','2','0'), ('36637','20','get[1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}]','10444','Ambient: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.Ambient.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'517','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The Temperature sensor condition. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system. The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','30ed5199c6d24757962c807d8c28cfa5','0','2','0'), ('36638','20','get[1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}]','10444','Ambient: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.Ambient.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB Temperature readings of testpoint: Ambient','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5d5b689724804879b40cc60dc31502b0','0','2','0'), ('36639','20','get[1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}]','10444','CPU-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.CPU.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'517','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The Temperature sensor condition. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system. The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1c8d32dcd5a34b51bf56adb150f84619','0','2','0'), ('36640','20','get[1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}]','10444','CPU-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.CPU.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB Temperature readings of testpoint: CPU-{#SNMPINDEX}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9c764d85eefb4693a8eb0e0a7ee14b44','0','2','0'), ('36641','20','get[1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}]','10444','{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'517','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The Temperature sensor condition. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system. The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9496137d5d614b63a5eee07316c653b2','0','2','0'), ('36642','20','get[1.3.6.1.4.1.232.6.2.6.8.1.3.{#SNMPINDEX}]','10444','{#SNMPINDEX}: Temperature sensor location','hp.server.sensor.temp.locale[cpqHeTemperatureLocale.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'518','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB This specifies the location of the temperature sensor present in the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f9e29891384a4691b3350478720a6035','0','2','0'), ('36643','20','get[1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}]','10444','{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB Temperature readings of testpoint: {#SNMPINDEX}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0958391cde3a43c9a9ad581f61b1dba4','0','2','0'), ('36644','20','get[1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}]','10444','I/O-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition."I/O.{#SNMPINDEX}"]','1m','31d','365d','0','3','','','','',NULL,'517','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The Temperature sensor condition. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system. The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5d432d216c664b35b1ac61ce4161d786','0','2','0'), ('36645','20','get[1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}]','10444','I/O-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius."I/O.{#SNMPINDEX}"]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB Temperature readings of testpoint: I/O-{#SNMPINDEX}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fb07d42fb35f474687e3c294f1766acf','0','2','0'), ('36646','20','get[1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}]','10444','Memory-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.Memory.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'517','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The Temperature sensor condition. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system. The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','01300fcd5a3743a89abebc8995f02b08','0','2','0'), ('36647','20','get[1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}]','10444','Memory-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.Memory.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB Temperature readings of testpoint: Memory-{#SNMPINDEX}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','74f92cc323d74e90b03779f216b69d33','0','2','0'), ('36648','20','get[1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}]','10444','PSU-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.PSU.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'517','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The Temperature sensor condition. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system. The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8ece285778c0465ab222ea6e9a88c694','0','2','0'), ('36649','20','get[1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}]','10444','PSU-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.PSU.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB Temperature readings of testpoint: PSU-{#SNMPINDEX}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','00be792e728e48128eedcb3e1aa1a239','0','2','0'), ('36650','20','get[1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}]','10444','System-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.System.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'517','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The Temperature sensor condition. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system. The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f62552cf4ca64a6e801b127e956205fe','0','2','0'), ('36651','20','get[1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}]','10444','System-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.System.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB Temperature readings of testpoint: System-{#SNMPINDEX}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','468c378de2674fa2b68286f57d5795f2','0','2','0'), ('36652','20','get[1.3.6.1.4.1.232.3.2.3.1.1.3.{#SNMPINDEX}]','10444','Disk {#SNMPINDEX}({#DISK_NAME}): Layout type','hp.server.hw.virtualdisk.layout[cpqDaLogDrvFaultTol.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'522','','','0','','','','','2',NULL,'Logical Drive Fault Tolerance. This shows the fault tolerance mode of the logical drive.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0f455a7e24494f2cba362479f4b27959','0','2','0'), ('36653','20','get[1.3.6.1.4.1.232.3.2.3.1.1.9.{#SNMPINDEX}]','10444','Disk {#SNMPINDEX}({#DISK_NAME}): Disk size','hp.server.hw.virtualdisk.size[cpqDaLogDrvSize.{#SNMPINDEX}]','1m','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Logical Drive Size. This is the size of the logical drive in megabytes. This value is calculated using the value 1,048,576 (2^20) as a megabyte. Drive manufacturers sometimes use the number 1,000,000 as a megabyte when giving drive capacities so this value may differ from the advertised size of a drive.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1c2377f711424a5e9cfb038e136192c9','0','2','0'), ('36654','20','get[1.3.6.1.4.1.232.3.2.3.1.1.4.{#SNMPINDEX}]','10444','Disk {#SNMPINDEX}({#DISK_NAME}): Status','hp.server.hw.virtualdisk.status[cpqDaLogDrvStatus.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'523','','','0','','','','','2',NULL,'Logical Drive Status.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dd28f993fc6c42a6b600246b9714a179','0','2','0'), ('36655','20','get[1.3.6.1.2.1.1.4.0]','10445','System contact details','hp.server.contact[sysContact]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5f90d6150d544b13b659a4023ced96fc','0','2','0'), ('36656','20','get[1.3.6.1.2.1.1.1.0]','10445','System description','hp.server.descr[sysDescr]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2594044e5b6046c3944cc54744f7f133','0','2','0'), ('36657','20','get[1.3.6.1.4.1.232.2.2.4.2.0]','10445','Hardware model name','hp.server.hw.model[cpqSiProductName]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CPQSINFO-MIB The machine product name. The name of the machine used in this system.','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2a807f6dd73e41418df98e294470ed67','0','2','0'), ('36658','20','get[1.3.6.1.4.1.232.2.2.2.1.0]','10445','Hardware serial number','hp.server.hw.serialnumber[cpqSiSysSerialNum]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CPQSINFO-MIB The serial number of the physical system unit. The string will be empty if the system does not report the serial number function.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0aab370a165b42208ddc7e0ae693dabf','0','2','0'), ('36659','20','get[1.3.6.1.2.1.1.6.0]','10445','System location','hp.server.location[sysLocation]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The physical location of this node (e.g., `telephone closet, 3rd floor''). If the location is unknown, the value is the zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','71486d7865174980a004d566e0a9e885','0','2','0'), ('36660','20','get[1.3.6.1.2.1.1.5.0]','10445','System name','hp.server.name[sysName]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2b0f62e1317c4900a7daee824cb360a3','0','2','0'), ('36661','20','get[1.3.6.1.2.1.1.2.0]','10445','System object ID','hp.server.objectid[sysObjectID]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b554640957a04d1fa2fc4bf91a0b81a2','0','2','0'), ('36662','20','get[1.3.6.1.4.1.232.6.2.6.1.0]','10445','System temperature status','hp.server.sensor.temp.status[cpqHeThermalCondition]','1m','31d','0','0','3','','','','',NULL,'541','','','0','','','','','0',NULL,'MIB: CPQHLTH-MIB This value specifies the overall condition of the system''s thermal environment. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2c9f9d96d50442bd99d6c46db6970d3d','0','2','0'), ('36663','20','get[1.3.6.1.4.1.232.6.1.3.0]','10445','Overall system health status','hp.server.status[cpqHeMibCondition]','1m','31d','0','0','3','','','','',NULL,'541','','','0','','','','','0',NULL,'MIB: CPQHLTH-MIB The overall condition. This object represents the overall status of the server information represented by this MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f61796d773b94de6b5177102cfb72005','0','2','0'), ('36664','20','get[1.3.6.1.2.1.1.3.0]','10445','Uptime (network)','hp.server.net.uptime[sysUpTime]','1m','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','361fa26e08284bbd822e17efde9a7856','0','2','0'), ('36665','17','','10445','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','730b5262f94c4643bbcc4feb59b614da','0','2','0'), ('36666','5','','10445','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'542','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cb8fe041c0344b8f807a61a0d53344de','0','2','0'), ('36667','20','discovery[{#CACHE_STATUS},1.3.6.1.4.1.232.3.2.2.2.1.2,{#CACHE_CNTRL_INDEX},1.3.6.1.4.1.232.3.2.2.2.1.1]','10445','Array controller cache discovery','array.cache.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Array controllers: CPQIDA-MIB::cpqDaAccelTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','81158a1ef55449568a453214435d9332','0','2','0'), ('36668','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.2.1.1.1,{#CNTLR_SLOT},1.3.6.1.4.1.232.3.2.2.1.1.5,{#CNTLR_LOCATION},1.3.6.1.4.1.232.3.2.2.1.1.20]','10445','Array controller discovery','array.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Array controllers: CPQIDA-MIB::cpqDaCntlrTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4bcefb33e0f545e0bcdc8fb92c8376c9','0','2','0'), ('36669','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.7.1.9]','10445','FAN discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPQHLTH-MIB::cpqHeFltTolFanCondition','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','42b03d399c8c420ab540fc2736e58a44','0','2','0'), ('36670','20','discovery[{#ADAPTER_INDEX},1.3.6.1.4.1.232.18.2.3.1.1.1,{#ADAPTER_NAME},1.3.6.1.4.1.232.18.2.3.1.1.39]','10445','Network interface discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPQIDA-MIB::cpqNicIfPhysAdapterTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f8ab5448b85f44f09263de1e173760ea','0','2','0'), ('36671','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.5.1.1.5,{#DISK_LOCATION},1.3.6.1.4.1.232.3.2.5.1.1.64]','10445','Physical disk discovery','physicaldisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of physical drive entries CPQIDA-MIB::cpqDaPhyDrvTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','51066791fd384fc49518f507ec925ade','0','2','0'), ('36672','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.9.3.1.5,{#CHASSIS_NUM},1.3.6.1.4.1.232.6.2.9.3.1.1,{#BAY_NUM},1.3.6.1.4.1.232.6.2.9.3.1.2]','10445','PSU discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPQHLTH-MIB::cpqHeFltTolPowerSupplyStatus','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9f4e53ed613049e1a4c23b13e666c849','0','2','0'), ('36673','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10445','Temperature ambient discovery','temp.ambient.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with ambient(11) and 0.1 index filter','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','413a7167b1864ee69250096459e7eac9','0','2','0'), ('36674','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10445','Temperature CPU discovery','temp.cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with cpu(6) filter','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','efad502d9a304457a55b73fc51007b0d','0','2','0'), ('36675','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10445','Temperature discovery','temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','28c47461dfd64df995e72212d6798479','0','2','0'), ('36676','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10445','Temperature I/O discovery','temp.io.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with ioBoard(5) filter','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','37ceae2e5635456695e3c8ed6d91ea60','0','2','0'), ('36677','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10445','Temperature memory discovery','temp.memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with memory(7) filter','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a668aae03dfd4012a71dd70c43e20eb0','0','2','0'), ('36678','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10445','Temperature PSU discovery','temp.psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with powerSupply(10) filter','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b9cda4cedd5f4e43a65126d5a5cef67d','0','2','0'), ('36679','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10445','Temperature system discovery','temp.system.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with system(3) filter','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8402ab901d3744508f46713034ae26fb','0','2','0'), ('36680','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.3.1.1.2,{#DISK_NAME},1.3.6.1.4.1.232.3.2.3.1.1.14]','10445','Virtual disk discovery','virtualdisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPQIDA-MIB::cpqDaLogDrvTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1bd919cfcd3a4225b81997e3d75a0d32','0','2','0'), ('36681','20','get[1.3.6.1.4.1.232.3.2.2.2.1.6.{#SNMPINDEX}]','10445','#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery status','hp.server.hw.diskarray.cache.battery.status[cpqDaAccelBattery.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'532','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Cache Module Board Backup Power Status. This monitors the status of each backup power source on the board. The backup power source can only recharge when the system has power applied. The type of backup power source used is indicated by cpqDaAccelBackupPowerSource. The following values are valid: Other (1) Indicates that the instrument agent does not recognize backup power status. You may need to update your software. Ok (2) The backup power source is fully charged. Recharging (3) The array controller has one or more cache module backup power sources that are recharging. Cache module operations such as Battery/Flash Backed Write Cache, Expansion, Extension and Migration are temporarily suspended until the backup power source is fully charged. Cache module operations will automatically resume when charging is complete. Failed (4) The battery pack is below the sufficient voltage level and has not recharged in 36 hours. Your Cache Module board needs to be serviced. Degraded (5) The battery is still operating, however, one of the batteries in the pack has failed to recharge properly. Your Cache Module board should be serviced as soon as possible. NotPresent (6) A backup power source is not present on the cache module board. Some controllers do not have backup power sources. Capacitor Failed (7) The flash backed cache module capacitor is below the sufficient voltage level and has not recharged in 10 minutes. Your Cache Module board needs to be serviced.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5fd8817af6b24ced8ce04ea092bda5ee','0','2','0'), ('36682','20','get[1.3.6.1.4.1.232.3.2.2.2.1.2.{#SNMPINDEX}]','10445','#{#CACHE_CNTRL_INDEX}: Disk array cache controller status','hp.server.hw.diskarray.cache.status[cpqDaAccelStatus.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'533','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Cache Module/Operations Status. This describes the status of the cache module and/or cache operations. Note that for some controller models, a cache module board that physically attaches to the controller or chipset may not be an available option. The status can be: Other (1) Indicates that the instrument agent does not recognize the status of the cache module. You may need to upgrade the instrument agent. Invalid (2) Indicates that a cache module board has not been installed in this system or is present but not configured. Enabled (3) Indicates that cache operations are currently configured and enabled for at least one logical drive. Temporarily Disabled (4) Indicates that cache operations have been temporarily disabled. View the cache module board error code object to determine why the write cache operations have been temporarily disabled. Permanently Disabled (5) Indicates that cache operations have been permanently disabled. View the cache module board error code object to determine why the write cache operations have been disabled. Cache Module Flash Memory Not Attached (6) Indicates that the flash memory component of the flash backed cache module is not attached. This status will be set when the flash memory is not attached and the Supercap is attached. This value is only used on flash backed cache modules that support removable flash memory. Cache Module Degraded Failsafe Speed (7) Indicates that the cache module board is currently degraded and operating at a failsafe speed. View variables cpqDaCacheMemoryDataWidth and cpqDaCacheMemoryTransferRate to obtain the cache module board`s current memory data width and memory transfer rate. Cache Module Critical Failure (8) Indicates that the cache module board has encountered a critical failure. The controller is currently operating in Zero Memory Raid mode. Read Cache Could Not Be Mapped (9) Indicates that the read cache memory in a split cache configuration could not be mapped by the operating system and as a result is not available. This status may be caused by virtual space limitations in certain operating systems and is only applicable to B-Series controllers.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','28dc0b13c364443c8026e03ad00a33cb','0','2','0'), ('36683','20','get[1.3.6.1.4.1.232.3.2.2.1.1.2.{#SNMPINDEX}]','10445','{#CNTLR_LOCATION}: Disk array controller model','hp.server.hw.diskarray.model[cpqDaCntlrModel.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'534','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Array Controller Model. The type of controller card.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3bf1b9b2574440d88b4c1fde09a89810','0','2','0'), ('36684','20','get[1.3.6.1.4.1.232.3.2.2.1.1.6.{#SNMPINDEX}]','10445','{#CNTLR_LOCATION}: Disk array controller status','hp.server.hw.diskarray.status[cpqDaCntlrCondition.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'541','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB This value represents the overall condition of this controller, and any associated logical drives, physical drives, and array accelerators.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ef99c5df575646f3a4f29b6e1b4761c1','0','2','0'), ('36685','20','get[1.3.6.1.4.1.232.6.2.6.7.1.9.{#SNMPINDEX}]','10445','Fan {#SNMPINDEX}: Fan status','hp.server.sensor.fan.status[cpqHeFltTolFanCondition.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'541','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The condition of the fan. This value will be one of the following: other(1) Fan status detection is not supported by this system or driver. ok(2) The fan is operating properly. degraded(2) A redundant fan is not operating properly. failed(4) A non-redundant fan is not operating properly.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d153662e4a16479a806c8b6b0d247823','0','2','0'), ('36686','20','get[1.3.6.1.4.1.232.18.2.3.1.1.14.{#SNMPINDEX}]','10445','{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Status','hp.server.net.if.status[cpqNicIfPhysAdapterStatus.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'540','','','0','','','','','2',NULL,'MIB: CPQNIC-MIB The physical adapter status. The following values are valid: unknown(1) The instrument agent was not able to determine the status of the adapter. The instrument agent may need to be upgraded. ok(2) The physical adapter is operating properly. generalFailure(3) The physical adapter has failed. linkFailure(4) The physical adapter has lost link. Check the cable connections to this adapter.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3d0b8a8038c848e69559fb3273da7546','0','2','0'), ('36687','20','get[1.3.6.1.4.1.232.3.2.5.1.1.69.{#SNMPINDEX}]','10445','{#DISK_LOCATION}: Physical disk media type','hp.server.hw.physicaldisk.media_type[cpqDaPhyDrvMediaType.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'537','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Drive Array Physical Drive Media Type. The following values are defined: other(1) The instrument agent is unable to determine the physical drive''s media type. rotatingPlatters(2) The physical drive media is composed of rotating platters. solidState(3) The physical drive media is composed of solid state electronics.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0444a75b820a4fa18baa8a846d51202f','0','2','0'), ('36688','20','get[1.3.6.1.4.1.232.3.2.5.1.1.3.{#SNMPINDEX}]','10445','{#DISK_LOCATION}: Physical disk model name','hp.server.hw.physicaldisk.model[cpqDaPhyDrvModel.{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Physical Drive Model. This is a text description of the physical drive. The text that appears depends upon who manufactured the drive and the drive type. If a drive fails, note the model to identify the type of drive necessary for replacement. If a model number is not present, you may not have properly initialized the drive array to which the physical drive is attached for monitoring.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','440f9a6fab244970bd1a9cb8691c6871','0','2','0'), ('36689','20','get[1.3.6.1.4.1.232.3.2.5.1.1.51.{#SNMPINDEX}]','10445','{#DISK_LOCATION}: Physical disk serial number','hp.server.hw.physicaldisk.serialnumber[cpqDaPhyDrvSerialNum.{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Physical Drive Serial Number. This is the serial number assigned to the physical drive. This value is based upon the serial number as returned by the SCSI inquiry command but may have been modified due to space limitations. This can be used for identification purposes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6ec3e18ffc214abaa35bd8d82f8a9bf3','0','2','0'), ('36690','20','get[1.3.6.1.4.1.232.3.2.5.1.1.45.{#SNMPINDEX}]','10445','{#DISK_LOCATION}: Disk size','hp.server.hw.physicaldisk.size[cpqDaPhyDrvMediaType.{#SNMPINDEX}]','1m','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Physical Drive Size in MB. This is the size of the physical drive in megabytes. This value is calculated using the value 1,048,576 (2^20) as a megabyte. Drive manufacturers sometimes use the number 1,000,000 as a megabyte when giving drive capacities so this value may differ from the advertised size of a drive. This field is only applicable for controllers which support SCSI drives, and therefore is not supported by the IDA or IDA-2 controllers. The field will contain 0xFFFFFFFF if the drive capacity cannot be calculated or if the controller does not support SCSI drives.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','96fdb84f875243a0904f5ad4b9f0fc65','0','2','0'), ('36691','20','get[1.3.6.1.4.1.232.3.2.5.1.1.57.{#SNMPINDEX}]','10445','{#DISK_LOCATION}: Physical disk S.M.A.R.T. status','hp.server.hw.physicaldisk.smart_status[cpqDaPhyDrvSmartStatus.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'538','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Physical Drive S.M.A.R.T Status. The following values are defined: other(1) The agent is unable to determine if the status of S.M.A.R.T predictive failure monitoring for this drive. ok(2) Indicates the drive is functioning properly. replaceDrive(3) Indicates that the drive has a S.M.A.R.T predictive failure error and should be replaced.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ac29b3b9ec8d4edca37eaba2207c5585','0','2','0'), ('36692','20','get[1.3.6.1.4.1.232.3.2.5.1.1.6.{#SNMPINDEX}]','10445','{#DISK_LOCATION}: Physical disk status','hp.server.hw.physicaldisk.status[cpqDaPhyDrvStatus.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'539','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Physical Drive Status. This shows the status of the physical drive. The following values are valid for the physical drive status: other (1) Indicates that the instrument agent does not recognize the drive. You may need to upgrade your instrument agent and/or driver software. ok (2) Indicates the drive is functioning properly. failed (3) Indicates that the drive is no longer operating and should be replaced. predictiveFailure(4) Indicates that the drive has a predictive failure error and should be replaced.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cfd49d624f1b4980ac71a115df1cdfdf','0','2','0'), ('36693','20','get[1.3.6.1.4.1.232.6.2.9.3.1.4.{#SNMPINDEX}]','10445','Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply status','hp.server.sensor.psu.status[cpqHeFltTolPowerSupplyCondition.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'541','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The condition of the power supply. This value will be one of the following: other(1) The status could not be determined or not present. ok(2) The power supply is operating normally. degraded(3) A temperature sensor, fan or other power supply component is outside of normal operating range. failed(4) A power supply component detects a condition that could permanently damage the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a9911ac100104b578860a29e8fbed521','0','2','0'), ('36694','20','get[1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}]','10445','Ambient: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.Ambient.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'530','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The Temperature sensor condition. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system. The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6cc334e5558749a2ad78985a3a11bb29','0','2','0'), ('36695','20','get[1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}]','10445','Ambient: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.Ambient.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB Temperature readings of testpoint: Ambient','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6fa0ecd1551f469ba61b9efe1120a164','0','2','0'), ('36696','20','get[1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}]','10445','CPU-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.CPU.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'530','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The Temperature sensor condition. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system. The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2c7dccb9af4a4364924452edba91f6ca','0','2','0'), ('36697','20','get[1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}]','10445','CPU-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.CPU.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB Temperature readings of testpoint: CPU-{#SNMPINDEX}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b137b39eccc24e49a775234076816f17','0','2','0'), ('36698','20','get[1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}]','10445','{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'530','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The Temperature sensor condition. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system. The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','62e9ac33b79c48988946dd79f701aa45','0','2','0'), ('36699','20','get[1.3.6.1.4.1.232.6.2.6.8.1.3.{#SNMPINDEX}]','10445','{#SNMPINDEX}: Temperature sensor location','hp.server.sensor.temp.locale[cpqHeTemperatureLocale.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'531','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB This specifies the location of the temperature sensor present in the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cf6090b148534fd38fd6f9d769a4ac0f','0','2','0'), ('36700','20','get[1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}]','10445','{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB Temperature readings of testpoint: {#SNMPINDEX}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cad2c5d64bf84f18ab1e0037579c1d1c','0','2','0'), ('36701','20','get[1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}]','10445','I/O-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition."I/O.{#SNMPINDEX}"]','1m','31d','365d','0','3','','','','',NULL,'530','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The Temperature sensor condition. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system. The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e0e31534c41a4bf69eea5bab3f5831fd','0','2','0'), ('36702','20','get[1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}]','10445','I/O-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius."I/O.{#SNMPINDEX}"]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB Temperature readings of testpoint: I/O-{#SNMPINDEX}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d6403c935b8e44a2baa2805898b85696','0','2','0'), ('36703','20','get[1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}]','10445','Memory-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.Memory.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'530','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The Temperature sensor condition. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system. The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','09dc4ba365a64b5d8585e7c00380dd53','0','2','0'), ('36704','20','get[1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}]','10445','Memory-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.Memory.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB Temperature readings of testpoint: Memory-{#SNMPINDEX}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','01dd0a5b92fe4071b43d20f52d4f4b52','0','2','0'), ('36705','20','get[1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}]','10445','PSU-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.PSU.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'530','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The Temperature sensor condition. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system. The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cf425ae8caed4061960b71daec7ba273','0','2','0'), ('36706','20','get[1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}]','10445','PSU-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.PSU.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB Temperature readings of testpoint: PSU-{#SNMPINDEX}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','96b82f3f3ff8415ca613a87edc83c34b','0','2','0'), ('36707','20','get[1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}]','10445','System-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.System.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'530','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The Temperature sensor condition. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system. The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4ce80892fad4497aadff5c2adc9c44b2','0','2','0'), ('36708','20','get[1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}]','10445','System-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.System.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB Temperature readings of testpoint: System-{#SNMPINDEX}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','477b63282a034574b3e395fcd54b02c0','0','2','0'), ('36709','20','get[1.3.6.1.4.1.232.3.2.3.1.1.3.{#SNMPINDEX}]','10445','Disk {#SNMPINDEX}({#DISK_NAME}): Layout type','hp.server.hw.virtualdisk.layout[cpqDaLogDrvFaultTol.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'535','','','0','','','','','2',NULL,'Logical Drive Fault Tolerance. This shows the fault tolerance mode of the logical drive.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1635da24ff484926900f086afde33448','0','2','0'), ('36710','20','get[1.3.6.1.4.1.232.3.2.3.1.1.9.{#SNMPINDEX}]','10445','Disk {#SNMPINDEX}({#DISK_NAME}): Disk size','hp.server.hw.virtualdisk.size[cpqDaLogDrvSize.{#SNMPINDEX}]','1m','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Logical Drive Size. This is the size of the logical drive in megabytes. This value is calculated using the value 1,048,576 (2^20) as a megabyte. Drive manufacturers sometimes use the number 1,000,000 as a megabyte when giving drive capacities so this value may differ from the advertised size of a drive.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','91f0d0cacf1b4dc7a25168be320c5281','0','2','0'), ('36711','20','get[1.3.6.1.4.1.232.3.2.3.1.1.4.{#SNMPINDEX}]','10445','Disk {#SNMPINDEX}({#DISK_NAME}): Status','hp.server.hw.virtualdisk.status[cpqDaLogDrvStatus.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'536','','','0','','','','','2',NULL,'Logical Drive Status.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3e7826d4fb834aa9853955d348ece29b','0','2','0'), ('36712','20','get[1.3.6.1.2.1.1.4.0]','10446','System contact details','hp.server.contact[sysContact]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','19ed955aeefa493883a151ddb550b8ff','0','2','0'), ('36713','20','get[1.3.6.1.2.1.1.1.0]','10446','System description','hp.server.descr[sysDescr]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7b9fc7a143c74d1b812d14413c1f53b0','0','2','0'), ('36714','20','get[1.3.6.1.4.1.232.2.2.4.2.0]','10446','Hardware model name','hp.server.hw.model[cpqSiProductName]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CPQSINFO-MIB The machine product name. The name of the machine used in this system.','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d2cad986747643658bee67492d90d106','0','2','0'), ('36715','20','get[1.3.6.1.4.1.232.2.2.2.1.0]','10446','Hardware serial number','hp.server.hw.serialnumber[cpqSiSysSerialNum]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CPQSINFO-MIB The serial number of the physical system unit. The string will be empty if the system does not report the serial number function.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6cdacf190c584227b822fee9c112b849','0','2','0'), ('36716','20','get[1.3.6.1.2.1.1.6.0]','10446','System location','hp.server.location[sysLocation]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The physical location of this node (e.g., `telephone closet, 3rd floor''). If the location is unknown, the value is the zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','622dd9bef33b4db7bf5899a6f6ccb7b3','0','2','0'), ('36717','20','get[1.3.6.1.2.1.1.5.0]','10446','System name','hp.server.name[sysName]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2726dcd682d340b681f5dfa8d1e3ef07','0','2','0'), ('36718','20','get[1.3.6.1.2.1.1.2.0]','10446','System object ID','hp.server.objectid[sysObjectID]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1394f5cfccb64c53abd8cff0f095906f','0','2','0'), ('36719','20','get[1.3.6.1.4.1.232.6.2.6.1.0]','10446','System temperature status','hp.server.sensor.temp.status[cpqHeThermalCondition]','1m','31d','0','0','3','','','','',NULL,'554','','','0','','','','','0',NULL,'MIB: CPQHLTH-MIB This value specifies the overall condition of the system''s thermal environment. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','09930c5b67d44de49bedfe7465697d40','0','2','0'), ('36720','20','get[1.3.6.1.4.1.232.6.1.3.0]','10446','Overall system health status','hp.server.status[cpqHeMibCondition]','1m','31d','0','0','3','','','','',NULL,'554','','','0','','','','','0',NULL,'MIB: CPQHLTH-MIB The overall condition. This object represents the overall status of the server information represented by this MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e980a83b24bd4bdb9d2b7369d41c9aea','0','2','0'), ('36721','20','get[1.3.6.1.2.1.1.3.0]','10446','Uptime (network)','hp.server.net.uptime[sysUpTime]','1m','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5576766f3a004fd3894ff22da515aedc','0','2','0'), ('36722','17','','10446','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1170728f4f534d19acfa001d1b00dcc4','0','2','0'), ('36723','5','','10446','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'555','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','53bf83d6a797436da2d1d8498410a113','0','2','0'), ('36724','20','discovery[{#CACHE_STATUS},1.3.6.1.4.1.232.3.2.2.2.1.2,{#CACHE_CNTRL_INDEX},1.3.6.1.4.1.232.3.2.2.2.1.1]','10446','Array controller cache discovery','array.cache.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Array controllers: CPQIDA-MIB::cpqDaAccelTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','43aa549fc1584a68a9d86375aa491b41','0','2','0'), ('36725','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.2.1.1.1,{#CNTLR_SLOT},1.3.6.1.4.1.232.3.2.2.1.1.5,{#CNTLR_LOCATION},1.3.6.1.4.1.232.3.2.2.1.1.20]','10446','Array controller discovery','array.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Array controllers: CPQIDA-MIB::cpqDaCntlrTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b35b69931e57486dbb40116512fd1242','0','2','0'), ('36726','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.7.1.9]','10446','FAN discovery','fan.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPQHLTH-MIB::cpqHeFltTolFanCondition','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','850b34fb782e463a9a0fe75336c166f7','0','2','0'), ('36727','20','discovery[{#ADAPTER_INDEX},1.3.6.1.4.1.232.18.2.3.1.1.1,{#ADAPTER_NAME},1.3.6.1.4.1.232.18.2.3.1.1.39]','10446','Network interface discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPQIDA-MIB::cpqNicIfPhysAdapterTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','647156a1894340a88bd6eb08c9ee60b6','0','2','0'), ('36728','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.5.1.1.5,{#DISK_LOCATION},1.3.6.1.4.1.232.3.2.5.1.1.64]','10446','Physical disk discovery','physicaldisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of physical drive entries CPQIDA-MIB::cpqDaPhyDrvTable.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b4c4a7f18ef44003acbccfc274f76a2d','0','2','0'), ('36729','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.9.3.1.5,{#CHASSIS_NUM},1.3.6.1.4.1.232.6.2.9.3.1.1,{#BAY_NUM},1.3.6.1.4.1.232.6.2.9.3.1.2]','10446','PSU discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPQHLTH-MIB::cpqHeFltTolPowerSupplyStatus','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8e0a11054b46479c9124d03c89967618','0','2','0'), ('36730','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10446','Temperature ambient discovery','temp.ambient.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with ambient(11) and 0.1 index filter','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','718aebe90d154170b6d05d5fc97ac024','0','2','0'), ('36731','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10446','Temperature CPU discovery','temp.cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with cpu(6) filter','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','79e388de30c64430ac9f15f94cf8fec2','0','2','0'), ('36732','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10446','Temperature discovery','temp.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ee9de30ee97842fe801118cb42b92ab9','0','2','0'), ('36733','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10446','Temperature I/O discovery','temp.io.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with ioBoard(5) filter','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','725c3cf3a398494faf3f330fb25a146c','0','2','0'), ('36734','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10446','Temperature memory discovery','temp.memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with memory(7) filter','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','353c1660698744608f0e67b4cd27f0b3','0','2','0'), ('36735','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10446','Temperature PSU discovery','temp.psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with powerSupply(10) filter','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e34420d2583145feafb4d89d010e067f','0','2','0'), ('36736','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3]','10446','Temperature system discovery','temp.system.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with system(3) filter','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','043c4fa05fcb4bf7917cf56c2513fbdd','0','2','0'), ('36737','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.3.1.1.2,{#DISK_NAME},1.3.6.1.4.1.232.3.2.3.1.1.14]','10446','Virtual disk discovery','virtualdisk.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPQIDA-MIB::cpqDaLogDrvTable','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2fa5e2604e5649cca3f04c759dfe2321','0','2','0'), ('36738','20','get[1.3.6.1.4.1.232.3.2.2.2.1.6.{#SNMPINDEX}]','10446','#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery status','hp.server.hw.diskarray.cache.battery.status[cpqDaAccelBattery.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'545','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Cache Module Board Backup Power Status. This monitors the status of each backup power source on the board. The backup power source can only recharge when the system has power applied. The type of backup power source used is indicated by cpqDaAccelBackupPowerSource. The following values are valid: Other (1) Indicates that the instrument agent does not recognize backup power status. You may need to update your software. Ok (2) The backup power source is fully charged. Recharging (3) The array controller has one or more cache module backup power sources that are recharging. Cache module operations such as Battery/Flash Backed Write Cache, Expansion, Extension and Migration are temporarily suspended until the backup power source is fully charged. Cache module operations will automatically resume when charging is complete. Failed (4) The battery pack is below the sufficient voltage level and has not recharged in 36 hours. Your Cache Module board needs to be serviced. Degraded (5) The battery is still operating, however, one of the batteries in the pack has failed to recharge properly. Your Cache Module board should be serviced as soon as possible. NotPresent (6) A backup power source is not present on the cache module board. Some controllers do not have backup power sources. Capacitor Failed (7) The flash backed cache module capacitor is below the sufficient voltage level and has not recharged in 10 minutes. Your Cache Module board needs to be serviced.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','11c4de648fe041c288ca7bcf062df6e4','0','2','0'), ('36739','20','get[1.3.6.1.4.1.232.3.2.2.2.1.2.{#SNMPINDEX}]','10446','#{#CACHE_CNTRL_INDEX}: Disk array cache controller status','hp.server.hw.diskarray.cache.status[cpqDaAccelStatus.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'546','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Cache Module/Operations Status. This describes the status of the cache module and/or cache operations. Note that for some controller models, a cache module board that physically attaches to the controller or chipset may not be an available option. The status can be: Other (1) Indicates that the instrument agent does not recognize the status of the cache module. You may need to upgrade the instrument agent. Invalid (2) Indicates that a cache module board has not been installed in this system or is present but not configured. Enabled (3) Indicates that cache operations are currently configured and enabled for at least one logical drive. Temporarily Disabled (4) Indicates that cache operations have been temporarily disabled. View the cache module board error code object to determine why the write cache operations have been temporarily disabled. Permanently Disabled (5) Indicates that cache operations have been permanently disabled. View the cache module board error code object to determine why the write cache operations have been disabled. Cache Module Flash Memory Not Attached (6) Indicates that the flash memory component of the flash backed cache module is not attached. This status will be set when the flash memory is not attached and the Supercap is attached. This value is only used on flash backed cache modules that support removable flash memory. Cache Module Degraded Failsafe Speed (7) Indicates that the cache module board is currently degraded and operating at a failsafe speed. View variables cpqDaCacheMemoryDataWidth and cpqDaCacheMemoryTransferRate to obtain the cache module board`s current memory data width and memory transfer rate. Cache Module Critical Failure (8) Indicates that the cache module board has encountered a critical failure. The controller is currently operating in Zero Memory Raid mode. Read Cache Could Not Be Mapped (9) Indicates that the read cache memory in a split cache configuration could not be mapped by the operating system and as a result is not available. This status may be caused by virtual space limitations in certain operating systems and is only applicable to B-Series controllers.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','941ef3a8d3994186b16a1a82aed3649b','0','2','0'), ('36740','20','get[1.3.6.1.4.1.232.3.2.2.1.1.2.{#SNMPINDEX}]','10446','{#CNTLR_LOCATION}: Disk array controller model','hp.server.hw.diskarray.model[cpqDaCntlrModel.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'547','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Array Controller Model. The type of controller card.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','db28dbd324304d07b20de5055d158c82','0','2','0'), ('36741','20','get[1.3.6.1.4.1.232.3.2.2.1.1.6.{#SNMPINDEX}]','10446','{#CNTLR_LOCATION}: Disk array controller status','hp.server.hw.diskarray.status[cpqDaCntlrCondition.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'554','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB This value represents the overall condition of this controller, and any associated logical drives, physical drives, and array accelerators.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','114e43daf33d4842aa435031aca2bf22','0','2','0'), ('36742','20','get[1.3.6.1.4.1.232.6.2.6.7.1.9.{#SNMPINDEX}]','10446','Fan {#SNMPINDEX}: Fan status','hp.server.sensor.fan.status[cpqHeFltTolFanCondition.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'554','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The condition of the fan. This value will be one of the following: other(1) Fan status detection is not supported by this system or driver. ok(2) The fan is operating properly. degraded(2) A redundant fan is not operating properly. failed(4) A non-redundant fan is not operating properly.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f33c7ee5675f4f35ae6e781c693e03c4','0','2','0'), ('36743','20','get[1.3.6.1.4.1.232.18.2.3.1.1.14.{#SNMPINDEX}]','10446','{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Status','hp.server.net.if.status[cpqNicIfPhysAdapterStatus.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'553','','','0','','','','','2',NULL,'MIB: CPQNIC-MIB The physical adapter status. The following values are valid: unknown(1) The instrument agent was not able to determine the status of the adapter. The instrument agent may need to be upgraded. ok(2) The physical adapter is operating properly. generalFailure(3) The physical adapter has failed. linkFailure(4) The physical adapter has lost link. Check the cable connections to this adapter.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2b3d5fc665744319b247261f301ec5e9','0','2','0'), ('36744','20','get[1.3.6.1.4.1.232.3.2.5.1.1.69.{#SNMPINDEX}]','10446','{#DISK_LOCATION}: Physical disk media type','hp.server.hw.physicaldisk.media_type[cpqDaPhyDrvMediaType.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'550','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Drive Array Physical Drive Media Type. The following values are defined: other(1) The instrument agent is unable to determine the physical drive''s media type. rotatingPlatters(2) The physical drive media is composed of rotating platters. solidState(3) The physical drive media is composed of solid state electronics.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d5b6315a3faf471baa20b7a0a0d6691b','0','2','0'), ('36745','20','get[1.3.6.1.4.1.232.3.2.5.1.1.3.{#SNMPINDEX}]','10446','{#DISK_LOCATION}: Physical disk model name','hp.server.hw.physicaldisk.model[cpqDaPhyDrvModel.{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Physical Drive Model. This is a text description of the physical drive. The text that appears depends upon who manufactured the drive and the drive type. If a drive fails, note the model to identify the type of drive necessary for replacement. If a model number is not present, you may not have properly initialized the drive array to which the physical drive is attached for monitoring.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8d04fc4ffec947c5ad53d037c038ed1d','0','2','0'), ('36746','20','get[1.3.6.1.4.1.232.3.2.5.1.1.51.{#SNMPINDEX}]','10446','{#DISK_LOCATION}: Physical disk serial number','hp.server.hw.physicaldisk.serialnumber[cpqDaPhyDrvSerialNum.{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Physical Drive Serial Number. This is the serial number assigned to the physical drive. This value is based upon the serial number as returned by the SCSI inquiry command but may have been modified due to space limitations. This can be used for identification purposes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aa090bf031f444508eae9c853cac1109','0','2','0'), ('36747','20','get[1.3.6.1.4.1.232.3.2.5.1.1.45.{#SNMPINDEX}]','10446','{#DISK_LOCATION}: Disk size','hp.server.hw.physicaldisk.size[cpqDaPhyDrvMediaType.{#SNMPINDEX}]','1m','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Physical Drive Size in MB. This is the size of the physical drive in megabytes. This value is calculated using the value 1,048,576 (2^20) as a megabyte. Drive manufacturers sometimes use the number 1,000,000 as a megabyte when giving drive capacities so this value may differ from the advertised size of a drive. This field is only applicable for controllers which support SCSI drives, and therefore is not supported by the IDA or IDA-2 controllers. The field will contain 0xFFFFFFFF if the drive capacity cannot be calculated or if the controller does not support SCSI drives.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3c4c4e680bb943c3a172e0e3e049aa8b','0','2','0'), ('36748','20','get[1.3.6.1.4.1.232.3.2.5.1.1.57.{#SNMPINDEX}]','10446','{#DISK_LOCATION}: Physical disk S.M.A.R.T. status','hp.server.hw.physicaldisk.smart_status[cpqDaPhyDrvSmartStatus.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'551','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Physical Drive S.M.A.R.T Status. The following values are defined: other(1) The agent is unable to determine if the status of S.M.A.R.T predictive failure monitoring for this drive. ok(2) Indicates the drive is functioning properly. replaceDrive(3) Indicates that the drive has a S.M.A.R.T predictive failure error and should be replaced.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d4b7c6cb7c3d4c46a92028e80b564bf5','0','2','0'), ('36749','20','get[1.3.6.1.4.1.232.3.2.5.1.1.6.{#SNMPINDEX}]','10446','{#DISK_LOCATION}: Physical disk status','hp.server.hw.physicaldisk.status[cpqDaPhyDrvStatus.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'552','','','0','','','','','2',NULL,'MIB: CPQIDA-MIB Physical Drive Status. This shows the status of the physical drive. The following values are valid for the physical drive status: other (1) Indicates that the instrument agent does not recognize the drive. You may need to upgrade your instrument agent and/or driver software. ok (2) Indicates the drive is functioning properly. failed (3) Indicates that the drive is no longer operating and should be replaced. predictiveFailure(4) Indicates that the drive has a predictive failure error and should be replaced.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','609c79d9a89e46778bc7c419a31db26b','0','2','0'), ('36750','20','get[1.3.6.1.4.1.232.6.2.9.3.1.4.{#SNMPINDEX}]','10446','Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply status','hp.server.sensor.psu.status[cpqHeFltTolPowerSupplyCondition.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'554','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The condition of the power supply. This value will be one of the following: other(1) The status could not be determined or not present. ok(2) The power supply is operating normally. degraded(3) A temperature sensor, fan or other power supply component is outside of normal operating range. failed(4) A power supply component detects a condition that could permanently damage the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a86478d1584640f784e984ff90768cfa','0','2','0'), ('36751','20','get[1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}]','10446','Ambient: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.Ambient.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'543','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The Temperature sensor condition. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system. The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8d413e8e6aa54c2a94c3c59fd5190ced','0','2','0'), ('36752','20','get[1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}]','10446','Ambient: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.Ambient.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB Temperature readings of testpoint: Ambient','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','29afae6dceac4eadbd7a0d67029e602c','0','2','0'), ('36753','20','get[1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}]','10446','CPU-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.CPU.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'543','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The Temperature sensor condition. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system. The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9d6e722dc01649199a8891d663b37f00','0','2','0'), ('36754','20','get[1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}]','10446','CPU-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.CPU.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB Temperature readings of testpoint: CPU-{#SNMPINDEX}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5bafde0dc89d483786cff3b1121fca55','0','2','0'), ('36755','20','get[1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}]','10446','{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'543','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The Temperature sensor condition. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system. The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d3a32885e1c24b3688d768236d930dab','0','2','0'), ('36756','20','get[1.3.6.1.4.1.232.6.2.6.8.1.3.{#SNMPINDEX}]','10446','{#SNMPINDEX}: Temperature sensor location','hp.server.sensor.temp.locale[cpqHeTemperatureLocale.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'544','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB This specifies the location of the temperature sensor present in the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cd6b1ba3a2174a879a00507ce843acaa','0','2','0'), ('36757','20','get[1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}]','10446','{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB Temperature readings of testpoint: {#SNMPINDEX}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1a9d8b9409e243c9b25ff434271d0049','0','2','0'), ('36758','20','get[1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}]','10446','I/O-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition."I/O.{#SNMPINDEX}"]','1m','31d','365d','0','3','','','','',NULL,'543','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The Temperature sensor condition. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system. The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','893efbae4cfa49dbae9fb6707e142cc1','0','2','0'), ('36759','20','get[1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}]','10446','I/O-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius."I/O.{#SNMPINDEX}"]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB Temperature readings of testpoint: I/O-{#SNMPINDEX}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','155afcc02e0443539683c193792c1770','0','2','0'), ('36760','20','get[1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}]','10446','Memory-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.Memory.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'543','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The Temperature sensor condition. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system. The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','af4c1659d5ca4c07978baea386694989','0','2','0'), ('36761','20','get[1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}]','10446','Memory-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.Memory.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB Temperature readings of testpoint: Memory-{#SNMPINDEX}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','400b357139a945c38cf222c5c1ce25cd','0','2','0'), ('36762','20','get[1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}]','10446','PSU-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.PSU.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'543','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The Temperature sensor condition. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system. The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d1552a2c2238453aa1d376482aaf2d1b','0','2','0'), ('36763','20','get[1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}]','10446','PSU-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.PSU.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB Temperature readings of testpoint: PSU-{#SNMPINDEX}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','146bf385738444bfb7faa60b073865f5','0','2','0'), ('36764','20','get[1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX}]','10446','System-{#SNMPINDEX}: Temperature sensor condition','hp.server.sensor.temp.condition[cpqHeTemperatureCondition.System.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'543','','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB The Temperature sensor condition. This value will be one of the following: other(1) Temperature could not be determined. ok(2) The temperature sensor is within normal operating range. degraded(3) The temperature sensor is outside of normal operating range. failed(4) The temperature sensor detects a condition that could permanently damage the system. The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7b7b07d52c144d23901ad9f636fca521','0','2','0'), ('36765','20','get[1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX}]','10446','System-{#SNMPINDEX}: Temperature','hp.server.sensor.temp.value[cpqHeTemperatureCelsius.System.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CPQHLTH-MIB Temperature readings of testpoint: System-{#SNMPINDEX}','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','33793b349df841c1aa46fada307e4427','0','2','0'), ('36766','20','get[1.3.6.1.4.1.232.3.2.3.1.1.3.{#SNMPINDEX}]','10446','Disk {#SNMPINDEX}({#DISK_NAME}): Layout type','hp.server.hw.virtualdisk.layout[cpqDaLogDrvFaultTol.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'548','','','0','','','','','2',NULL,'Logical Drive Fault Tolerance. This shows the fault tolerance mode of the logical drive.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a77031074aed4314b5b825c565f0ed67','0','2','0'), ('36767','20','get[1.3.6.1.4.1.232.3.2.3.1.1.9.{#SNMPINDEX}]','10446','Disk {#SNMPINDEX}({#DISK_NAME}): Disk size','hp.server.hw.virtualdisk.size[cpqDaLogDrvSize.{#SNMPINDEX}]','1m','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Logical Drive Size. This is the size of the logical drive in megabytes. This value is calculated using the value 1,048,576 (2^20) as a megabyte. Drive manufacturers sometimes use the number 1,000,000 as a megabyte when giving drive capacities so this value may differ from the advertised size of a drive.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','33e1ea62016846b5ab97263605c4dcc5','0','2','0'), ('36768','20','get[1.3.6.1.4.1.232.3.2.3.1.1.4.{#SNMPINDEX}]','10446','Disk {#SNMPINDEX}({#DISK_NAME}): Status','hp.server.hw.virtualdisk.status[cpqDaLogDrvStatus.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'549','','','0','','','','','2',NULL,'Logical Drive Status.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','783532d2de814096ac0ce9b36c5d2552','0','2','0'), ('36772','19','','10447','Get builds','travis.get_builds','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Getting builds using Travis API.','0','30d','0','',NULL,'','https://{$TRAVIS.API.URL}/builds','[{"limit":"0"}]','','200','1','0','','Travis-API-Version: 3 Authorization: token {$TRAVIS.API.TOKEN}','0','0','0','0','0','0','0','08466cd6902441299856cba3ce601510','0','2','0'), ('36773','19','','10447','Get health','travis.get_health','1m','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Getting home JSON using Travis API.','0','30d','0','',NULL,'','https://{$TRAVIS.API.URL}/','','','200','1','0','','Travis-API-Version: 3 Authorization: token {$TRAVIS.API.TOKEN}','0','0','0','0','0','0','0','997172d503c54798800d01c613aca92a','0','2','0'), ('36774','19','','10447','Get jobs','travis.get_jobs','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Getting jobs using Travis API.','0','30d','0','',NULL,'','https://{$TRAVIS.API.URL}/jobs','','','200','1','0','','Travis-API-Version: 3 Authorization: token {$TRAVIS.API.TOKEN}','0','0','0','0','0','0','0','5a01061d1f3d48f8ad0beb4d32e2168d','0','2','0'), ('36775','19','','10447','Get repos','travis.get_repos','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Getting repos using Travis API.','0','30d','0','',NULL,'','https://{$TRAVIS.API.URL}/repos','[{"limit":"0"}]','','200','1','0','','Travis-API-Version: 3 Authorization: token {$TRAVIS.API.TOKEN}','0','0','0','0','0','0','0','5212bfa6de6c4a17b98a80012f617eea','0','2','0'), ('36782','15','','10447','Repo [{#SLUG}]: Builds passed, %','travis.repo.builds.passed.pct[{#SLUG}]','1m','31d','365d','0','3','','%','','',NULL,NULL,'last(//travis.repo.builds.passed[{#SLUG}])/last(//travis.repo.builds.total[{#SLUG}])*100','','0','','','','','2',NULL,'Percent of passed builds in {#SLUG} repo.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0d2f2c7b23284836ad52b4ddc98dcfc8','0','2','0'), ('36783','19','','10447','Repo [{#SLUG}]: Get builds','travis.repo.get_builds[{#SLUG}]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Getting builds of {#SLUG} using Travis API.','0','30d','0','',NULL,'','https://{$TRAVIS.API.URL}/repo/{#ID}/builds','[{"limit":"50"}]','','200','1','0','','Travis-API-Version: 3 Authorization: token {$TRAVIS.API.TOKEN}','0','0','0','0','0','0','0','ed33292bc0924b9c85cb54443d5aa999','0','2','0'), ('36784','19','','10447','Repo [{#SLUG}]: Get caches','travis.repo.get_caches[{#SLUG}]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Getting caches of {#SLUG} using Travis API.','0','30d','0','',NULL,'','https://{$TRAVIS.API.URL}/repo/{#ID}/caches','[{"limit":"50"}]','','200','1','0','','Travis-API-Version: 3 Authorization: token {$TRAVIS.API.TOKEN}','0','0','0','0','0','0','0','2e0c047997624373a50001b8399b3d7c','0','2','0'), ('36795','19','','10448','Get instance metrics','influx.get_metrics','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','{$INFLUXDB.URL}/metrics','','','200','1','0','','','0','0','0','0','0','0','0','286bb866060e47948c02408ebc841f1f','0','2','0'), ('36796','19','','10448','Instance status','influx.healthcheck','1m','31d','365d','0','3','','','','',NULL,'556','','','0','','','','','0',NULL,'Get the health of an instance.','0','30d','0','',NULL,'','{$INFLUXDB.URL}/health','','','200','1','0','','','0','0','0','0','0','0','0','f8f514943c9040d7b41f14db92ca6c91','0','2','0'), ('36813','19','','10448','Organizations discovery','influxdb.orgs.discovery','10m','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of organizations metrics.','0','7d','1','',NULL,'','{$INFLUXDB.URL}/api/v2/orgs','','','200','1','0','','Content-type: application/json Authorization: Token {$INFLUXDB.API.TOKEN}','0','0','0','0','0','0','0','41766fd081804c399c3a7e70dd1fbf03','0','2','0'), ('36822','20','get[1.3.6.1.4.1.3375.2.1.14.1.1.0]','10419','Sync Status','bigip.syncstatus','1m','31d','365d','0','3','','','','',NULL,'560','','','0','','','','','0',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The sync status ID on the system. unknown - the device is disconnected from the device group; syncing - the device is joining the device group or has requested changes from device group or inconsistent with the group; needManualSync - changes have been made on the device not syncd to the device group; inSync - the device is consistent with the device group; syncFailed - the device is inconsistent with the device group, requires user intervention; syncDisconnected - the device is not connected to any peers; standalone - the device is in a standalone configuration; awaitingInitialSync - the device is waiting for initial sync; incompatibleVersion - the device''s version is incompatible with rest of the devices in the device group; partialSync - some but not all devices successfully received the last sync.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','46bf5611d32340fdb9129966cca2c5da','0','2','0'), ('36823','20','get[1.3.6.1.4.1.3375.2.1.14.3.1.0]','10419','Failover status','bigip.failover','1m','31d','365d','0','3','','','','',NULL,'559','','','0','','','','','0',NULL,'MIB: F5-BIGIP-SYSTEM-MIB The failover status ID on the system. unknown - the failover status of the device is unknown; offline - the device is offline; forcedOffline - the device is forced offline; standby - the device is standby; active - the device is active.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0f7ecc11f860443582eb6dbe64b2bbb6','0','2','0'), ('36824','20','get[1.3.6.1.4.1.3375.2.2.5.5.2.1.2.{#SNMPINDEX}]','10419','Pool [{#POOL.NAME}]: Status available','bigip.pool.available[{#POOL.NAME}]','5m','31d','365d','0','3','','','','',NULL,'558','','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB none(0), green(1), tyellow(2), tred(3), tblue(4), tgrey(5)','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a2668f5ffc604a61953cb87f0afe4e6f','0','2','0'), ('36825','20','get[1.3.6.1.4.1.3375.2.2.5.5.2.1.3.{#SNMPINDEX}]','10419','Pool [{#POOL.NAME}]: Status enabled','bigip.pool.enabled[{#POOL.NAME}]','5m','31d','365d','0','3','','','','',NULL,'557','','','0','','','','','2',NULL,'MIB: F5-BIGIP-LOCAL-MIB The activity status of the specified pool, as specified by the user. none(0), enabled(1), disabled(2), disabledbyparent(3)','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','391d21a1a44d49d4beb219b726e0f55e','0','2','0'), ('36847','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10449','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4367659d4f49400aa0a4674c74ad00b8','0','2','0'), ('36848','20','get[1.3.6.1.2.1.1.1.0]','10449','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3d375341d2a140679973c46fe7281dd5','0','2','0'), ('36849','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10449','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b1233463a69346b68d538f1c43aa467d','0','2','0'), ('36850','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10449','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f9d30c789f16452d89ee417a2aee11f1','0','2','0'), ('36851','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10449','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5546cedfd50648d2a893b6ea59fd7453','0','2','0'), ('36852','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10449','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5a78d97bd5f14a6b97873a3abe41db20','0','2','0'), ('36853','15','','10449','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dc5f8ec0557c4e9980f2224e150e89e7','0','2','0'), ('36877','15','','10449','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','30dd1b502cac45538f16b4d985966d55','0','2','0'), ('36901','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10450','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cdf7d11d3d47482ca5dad14596256025','0','2','0'), ('36902','20','get[1.3.6.1.2.1.1.1.0]','10450','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ad2df2ad5b4d4bac8da4a24e2c082ad1','0','2','0'), ('36903','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10450','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d55015e95d2e4eebb72168b5311f7512','0','2','0'), ('36904','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10450','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6004aeb9600c42b5a74155f06cdf8af0','0','2','0'), ('36905','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10450','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cef294e9c4874526a093935ac3f093b6','0','2','0'), ('36906','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10450','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3b3a0def1cf740f496bbd345de5ed605','0','2','0'), ('36907','15','','10450','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d7dadc80881a4d3c9be8f1b660232c03','0','2','0'), ('36931','15','','10450','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','43f8b0a75131483cb6dd5e800fb400b4','0','2','0'), ('36955','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10451','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','701b0e5e1b0d4f6199836c12bbeb23fb','0','2','0'), ('36956','20','get[1.3.6.1.2.1.1.1.0]','10451','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3172eba914574fd894cd4ab3c1295ed7','0','2','0'), ('36957','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10451','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c5ade5b11ba84948ba84c0f975c6cbbe','0','2','0'), ('36958','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10451','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6f1cabbfe9b84535b77ba2d7b32706fc','0','2','0'), ('36959','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10451','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aef1126fc6354f5083ce2b35d03aaa3c','0','2','0'), ('36960','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10451','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f3f71753cbe14516929027f5f7c39380','0','2','0'), ('36961','15','','10451','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bde1da2443a3415296281c5259bc0b10','0','2','0'), ('36985','15','','10451','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0e374b652a644f1f8db14960e0bd9457','0','2','0'), ('37009','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10452','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','929df02b3b7a462f949c948d655d2f77','0','2','0'), ('37010','20','get[1.3.6.1.2.1.1.1.0]','10452','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9e85d395c80b4db8868d5bccf64edfaa','0','2','0'), ('37011','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10452','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','14b7fb61e1e64fbd900fd376ee087a40','0','2','0'), ('37012','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10452','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6cd07fdee09249c092abbee25f526c9a','0','2','0'), ('37013','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10452','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e6db19f9ea46407dac1744adc4caa945','0','2','0'), ('37014','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10452','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d05360006eb148a6a66f157513bfe26f','0','2','0'), ('37015','15','','10452','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1ccd49102df74a0da7bc068ef3e6c81c','0','2','0'), ('37039','15','','10452','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fa8acc788ee34826ab8f593c40aa4129','0','2','0'), ('37063','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10453','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9bb0cd6e869b4e00800c2893b4cf43bf','0','2','0'), ('37064','20','get[1.3.6.1.2.1.1.1.0]','10453','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6d2bed107e30443ea44f3c3cd61f7cf5','0','2','0'), ('37065','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10453','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','460078d3884e4927818a3015dc36ec17','0','2','0'), ('37066','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10453','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c71d909522214671afd2b636aa54a06d','0','2','0'), ('37067','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10453','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1077bedb2f1b48509ec5a4f299aac7cf','0','2','0'), ('37068','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10453','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b24d15e975cd4423a4ef27008ee5fda1','0','2','0'), ('37069','15','','10453','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3ea0ffecf896435284e268758203272d','0','2','0'), ('37093','15','','10453','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9976d1dea8234a8c9baccac8cde90796','0','2','0'), ('37117','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10454','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3b45bf2cd74b496e8882ef8421f3075f','0','2','0'), ('37118','20','get[1.3.6.1.2.1.1.1.0]','10454','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','11cf922dd6534e9faad83972f43021f0','0','2','0'), ('37119','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10454','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','87694d7f0a6742c5922fc3f1d3c4c950','0','2','0'), ('37120','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10454','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4118b55b18df44798e3593e7c4ab1dd7','0','2','0'), ('37121','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10454','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9c918b9f51a14b5aabe9bf662d459a45','0','2','0'), ('37122','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10454','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4664580c7f80415a8813dfac83c3f616','0','2','0'), ('37123','15','','10454','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','635ee2092ff64314910c0612fc33ee6c','0','2','0'), ('37147','15','','10454','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1eb7fcbc95d34a108cf8deb3dce47784','0','2','0'), ('37171','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10455','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9316b737e8174862b0ce60ad10dca68b','0','2','0'), ('37172','20','get[1.3.6.1.2.1.1.1.0]','10455','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c758cdb68e854cedbb9fc53d361c878b','0','2','0'), ('37173','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10455','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b04e3b3b91294e3b9a5968e475166473','0','2','0'), ('37174','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10455','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d0d399bd9e7e4aca86de1b4aa23cfa0c','0','2','0'), ('37175','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10455','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8be77fd4f4704108aedd5ab35a212172','0','2','0'), ('37176','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10455','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b8102bbf381c4a6e9d759e3ae3902616','0','2','0'), ('37177','15','','10455','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','383e2e5544ef439199784bcf81cced10','0','2','0'), ('37201','15','','10455','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ea30a631843d404c8eac9fe189ef0d74','0','2','0'), ('37225','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10456','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a808f02d217e4b338fbd5d8f52474d7d','0','2','0'), ('37226','20','get[1.3.6.1.2.1.1.1.0]','10456','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','721918724f3f47189db3d73a51eed73e','0','2','0'), ('37227','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10456','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','028dcc2c59f34754b646c0a07e6e4709','0','2','0'), ('37228','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10456','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5f186d66075841689596629ffecd1d45','0','2','0'), ('37229','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10456','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','19a2d0e30b0c4123899147a6230863cf','0','2','0'), ('37230','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10456','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8b64d82e4b7b46a28cc88b1fc6c772d8','0','2','0'), ('37231','15','','10456','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a1a1e9109bb24cefb67b397dc94d3ed9','0','2','0'), ('37255','15','','10456','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','95b91a8569934b29b89d500cd3673d03','0','2','0'), ('37279','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10457','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e565515e2bfe469db344bd78bdfcba74','0','2','0'), ('37280','20','get[1.3.6.1.2.1.1.1.0]','10457','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2ef71aac4f8b462cb4103327331c359c','0','2','0'), ('37281','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10457','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5d766873d7ee41ddad6d90199c1e8a38','0','2','0'), ('37282','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10457','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','56f7e706b7f84fdf827f5a14fb3bdc7c','0','2','0'), ('37283','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10457','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','818712f7986b40e8a3ce3994f43199ea','0','2','0'), ('37284','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10457','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0b3849a88cf9436284dea73e86f70405','0','2','0'), ('37285','15','','10457','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','deb60e7c19b74431aed7b6c26fb7616b','0','2','0'), ('37309','15','','10457','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dbb260b0d9334f60a27e59536c05873c','0','2','0'), ('37333','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10458','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e06462712e7c45f296fa8dc0c53871d0','0','2','0'), ('37334','20','get[1.3.6.1.2.1.1.1.0]','10458','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b1a6e11a8ba64f9e9270db35847b3421','0','2','0'), ('37335','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10458','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0fa99ad0d0744f24ab49ad9be423b3d4','0','2','0'), ('37336','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10458','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','00ed6d0e4cd84395a74a5015e3440877','0','2','0'), ('37337','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10458','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f7c0ee962f1c4fab9262181dd9dee211','0','2','0'), ('37338','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10458','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d3c3ff16e7dd4d2e811e72cb0279a827','0','2','0'), ('37339','15','','10458','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ee81aaa76f1d40a898ba48e0dde79d13','0','2','0'), ('37363','15','','10458','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0b5ebfdb1d72421dbaf381bf1dd609ca','0','2','0'), ('37387','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10459','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b74cbfd6dbc84c0c916402c81fb11fe9','0','2','0'), ('37388','20','get[1.3.6.1.2.1.1.1.0]','10459','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3c8159ac8de24685be689387f69e0e20','0','2','0'), ('37389','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10459','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cc917e510e004211be5fc624b071fc95','0','2','0'), ('37390','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10459','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4776598588384d30ac472ec39df3ef25','0','2','0'), ('37391','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10459','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0260f825e71e419da953e2f6285318bc','0','2','0'), ('37392','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10459','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','49b860cd17af4bed904651fbe620d533','0','2','0'), ('37393','15','','10459','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4a339ee32bc047a790562e1d17c4f733','0','2','0'), ('37417','15','','10459','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6a9a5fa133dd4b1c9e4fb2f21a5ec905','0','2','0'), ('37441','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10460','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9f94a0e5d26b401d84ca8a58b8121f2e','0','2','0'), ('37442','20','get[1.3.6.1.2.1.1.1.0]','10460','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','be05eb6603df4b2b974319c0b90dd543','0','2','0'), ('37443','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10460','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c147284d49cb43b3950a28de281cf4a0','0','2','0'), ('37444','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10460','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1da1f71f2dfd4c9ca450217a07068872','0','2','0'), ('37445','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10460','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4b1df0f8bebc443398bdb240a7a30db5','0','2','0'), ('37446','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10460','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','370e2a4ed66f4cc8ba31abdcff08598f','0','2','0'), ('37447','15','','10460','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8fef22e8a7e0484b8e4ca48b66b322a1','0','2','0'), ('37471','15','','10460','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c84b3754fea94a91972a12d024a7ea34','0','2','0'), ('37495','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10461','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1a2326a0d3884a679d05e4430f24f9cd','0','2','0'), ('37496','20','get[1.3.6.1.2.1.1.1.0]','10461','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2c11a09561a447949a86bbb75b9b7b08','0','2','0'), ('37497','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10461','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8d750b95502a462dbca47ff6aacd24da','0','2','0'), ('37498','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10461','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4f4d1445451a41758afc06ba2a287805','0','2','0'), ('37499','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10461','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','af7785e1221c4c458a333189d70208a2','0','2','0'), ('37500','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10461','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ecb4ad0744b04ad9a9e650012e394e6b','0','2','0'), ('37501','15','','10461','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2a8f4c7d1c52496093779c4a70e01668','0','2','0'), ('37525','15','','10461','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c958dc4fb8b54d6c809b69478f92a991','0','2','0'), ('37549','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10462','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','af43dfeeeb7c4f2ea7636e3409e70f1f','0','2','0'), ('37550','20','get[1.3.6.1.2.1.1.1.0]','10462','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','74bfb7d4834a499a8946c8275012ee76','0','2','0'), ('37551','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10462','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','13fa6f235afa4f968f9de61b0727dced','0','2','0'), ('37552','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10462','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b6e1b6013d3b41c68b4a0cc85bb539d6','0','2','0'), ('37553','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10462','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','53c2b19776d14395832025f398d613eb','0','2','0'), ('37554','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10462','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','644de67163d14fe384128d7a89780d09','0','2','0'), ('37555','15','','10462','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9b69a0a71c2a410783d8275a732b800a','0','2','0'), ('37579','15','','10462','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e12df58e65b94ae7b63f56f745d85857','0','2','0'), ('37603','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10463','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5c3719bbbd424403b78d73824fdb45aa','0','2','0'), ('37604','20','get[1.3.6.1.2.1.1.1.0]','10463','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','35142b0597a348838f0f77cf7c11266f','0','2','0'), ('37605','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10463','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0a2b5f7921d74498bb1761e5bb773dec','0','2','0'), ('37606','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10463','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c98293d0ebe844d390474d48a937d0fc','0','2','0'), ('37607','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10463','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','545eb326fcd94bbcafd561824f1759db','0','2','0'), ('37608','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10463','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8a6c7605ff3d45c092dff46fdc9fa1f8','0','2','0'), ('37609','15','','10463','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8b8c952075db4ac6884cb0b352a75496','0','2','0'), ('37633','15','','10463','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b40d1fecfb4d45318642012a60debe15','0','2','0'), ('37657','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10464','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','23de7a030b324ae2bee4fa96d6a724da','0','2','0'), ('37658','20','get[1.3.6.1.2.1.1.1.0]','10464','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c41bb4d7171b44aca3656092aa2b12b8','0','2','0'), ('37659','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10464','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','de134343b324455c9e17396c75aac869','0','2','0'), ('37660','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10464','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','709a68530d314d448fbf9f9339af594f','0','2','0'), ('37661','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10464','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d80810c2936846d9b037f5e9d00eb6f6','0','2','0'), ('37662','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10464','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','82807a05026644379df67c28026b9696','0','2','0'), ('37663','15','','10464','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7bfd8141f2d34548a16f73ff7bb665eb','0','2','0'), ('37687','15','','10464','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','edc44941d5e449b4ba5400e3c614861d','0','2','0'), ('37711','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10465','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2fc0c608418046d0bbfc371f5f8d8c22','0','2','0'), ('37712','20','get[1.3.6.1.2.1.1.1.0]','10465','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6a3ca4bce4da4e8eb6a15a2dcf51bce1','0','2','0'), ('37713','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10465','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','589cacbe509547bf944f7c8e3a518c7d','0','2','0'), ('37714','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10465','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','31fb56c30de1477bbe69306c2b9e3d69','0','2','0'), ('37715','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10465','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cb66968d87fe41a2ad4c5cb769849be4','0','2','0'), ('37716','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10465','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','62b4597135824686b5de3cd51fcd46f4','0','2','0'), ('37717','15','','10465','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','414bec3767eb49c39bd67a135f60ba02','0','2','0'), ('37741','15','','10465','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','929ef695efdf4e60a2e47cc0be74e69c','0','2','0'), ('37765','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10466','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','86226852333f4573b461e7283ae93c8a','0','2','0'), ('37766','20','get[1.3.6.1.2.1.1.1.0]','10466','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cf0cd44044154f0097685ac4da1e0f6b','0','2','0'), ('37767','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10466','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3ec9f238ffa643c28011036ece349c2e','0','2','0'), ('37768','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10466','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8ebce52c1fe045ef9e774aefb3359667','0','2','0'), ('37769','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10466','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1ca1d02815cb46dba0b2b27de86cd1d4','0','2','0'), ('37770','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10466','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','891105963e744b8283682a5e4520347b','0','2','0'), ('37771','15','','10466','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b78b6b52884148f6b925e99b418f1838','0','2','0'), ('37795','15','','10466','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','be9283a19af84ddb9cb2c9475d4a7170','0','2','0'), ('37819','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10467','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a90c400056634a4b8e1befa2b5868e1c','0','2','0'), ('37820','20','get[1.3.6.1.2.1.1.1.0]','10467','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d1a55ccf0dd640439c149672d9f86c11','0','2','0'), ('37821','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10467','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4ab55ba9cf82449a8b683ded8c691a11','0','2','0'), ('37822','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10467','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dcb3f5f1561543959e170e62e61f1457','0','2','0'), ('37823','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10467','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4cf79d752ffe4eeeb80db78bd1f39813','0','2','0'), ('37824','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10467','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4682ebaf961d4782b7447de52646dfd4','0','2','0'), ('37825','15','','10467','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','805237bf56894386acfc37c7f38ad907','0','2','0'), ('37849','15','','10467','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','32902345efc2483d86aa7dfd2d02d6c0','0','2','0'), ('37873','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10468','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a66560b690d544ef8fc657812a602157','0','2','0'), ('37874','20','get[1.3.6.1.2.1.1.1.0]','10468','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c8239bb961ee453da2885a8abef9be34','0','2','0'), ('37875','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10468','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','df405f764813407eb03d6f7a6308c5cc','0','2','0'), ('37876','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10468','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','55775fa17c604dddb86c7644556830e6','0','2','0'), ('37877','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10468','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','14aff8f369f9440aac2110a4a52e7eb5','0','2','0'), ('37878','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10468','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cbe45fbc0f9e4b1a94966ccb859463ae','0','2','0'), ('37879','15','','10468','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','03626c0f7cf24394b47f24a1af36dcd0','0','2','0'), ('37903','15','','10468','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e7e62890c210420882a04af7dd07cde9','0','2','0'), ('37927','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10469','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7befae11c37c415c821465a2b923d901','0','2','0'), ('37928','20','get[1.3.6.1.2.1.1.1.0]','10469','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f533de2af2824b30a43995499f5ec467','0','2','0'), ('37929','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10469','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4cb71c3fa0aa4ca8aa4c2c03a017a28a','0','2','0'), ('37930','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10469','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1e0024446d5f4696919f3a246dda3868','0','2','0'), ('37931','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10469','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','06bdef85cb3849819a6fa43dfcdf7ba1','0','2','0'), ('37932','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10469','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','05b7592dca7744e39bbea87e73b6062c','0','2','0'), ('37933','15','','10469','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f39b87bfab3347b1bc016a35aa58f1be','0','2','0'), ('37957','15','','10469','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ac51787aeada4d6596deee43a66818e8','0','2','0'), ('37981','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10470','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d2ae97a860254ce8935a939ad715d583','0','2','0'), ('37982','20','get[1.3.6.1.2.1.1.1.0]','10470','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bad88a688384478b841c24f935d5c3a1','0','2','0'), ('37983','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10470','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dd694bbf5faf4c7a8a30d5ffd817b678','0','2','0'), ('37984','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10470','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2906c09ebcc34c908a6ab8530804b67f','0','2','0'), ('37985','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10470','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6417f5bc08084fa29f2dab421c5093fd','0','2','0'), ('37986','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10470','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','01618781ca974f5e8b1bf58b65092038','0','2','0'), ('37987','15','','10470','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ffee597574084c638b668fb11a735962','0','2','0'), ('38011','15','','10470','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d710a862bf0043aca18a6c961320ecba','0','2','0'), ('38035','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10471','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8da4bc75729549f8ba60c5edd47f1419','0','2','0'), ('38036','20','get[1.3.6.1.2.1.1.1.0]','10471','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','05352d9bfb6d48b682c4d5e23ff28daf','0','2','0'), ('38037','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10471','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','19bfda7a644b462880226d790eebd154','0','2','0'), ('38038','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10471','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aca36fae2c2f4856a8cacf7348a31b54','0','2','0'), ('38039','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10471','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2ee29a6f60eb45fdb1193283ed54e7bc','0','2','0'), ('38040','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10471','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aef42cabe6cb4c8dbb0c6cea532c6a3f','0','2','0'), ('38041','15','','10471','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0012d55c993c43f4b620e282a9799cd8','0','2','0'), ('38065','15','','10471','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ea8ea45343ad4b86bc67c631326b2b9d','0','2','0'), ('38089','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10472','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b6b5e17543b54d32a6efac05a346717b','0','2','0'), ('38090','20','get[1.3.6.1.2.1.1.1.0]','10472','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','da7d1bace5b84ec59f2a669c090c3b1f','0','2','0'), ('38091','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10472','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','903370300c154ba09796eaca48f5e54f','0','2','0'), ('38092','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10472','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','823e2b2060f64bed86d2a99d5e1487c5','0','2','0'), ('38093','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10472','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ef5f00c33dea46b59b756eda8bb62f26','0','2','0'), ('38094','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10472','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','da09619f39da49d59cf0125b45d567a6','0','2','0'), ('38095','15','','10472','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ec6c40e7c02c49efbb7116bc6917b42b','0','2','0'), ('38119','15','','10472','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','48fa37490d794fafaa3585510b4ebda9','0','2','0'), ('38143','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10473','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8ac79dd0cff146c9ae018a8ba626f9e7','0','2','0'), ('38144','20','get[1.3.6.1.2.1.1.1.0]','10473','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8b6f433b2de14edcb0efb036c562b090','0','2','0'), ('38145','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10473','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','484e12b0d4a24d19b9edfd300cfef958','0','2','0'), ('38146','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10473','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9c810b41d48243668158812fdfdea4f7','0','2','0'), ('38147','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10473','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b34dda68e02640f88df173b7eeab267f','0','2','0'), ('38148','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10473','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','561afbad2b3d4d20a3fbe9753abd8623','0','2','0'), ('38149','15','','10473','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f605ea1480d947b3bad4d1592c215643','0','2','0'), ('38173','15','','10473','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','418e091863284108b3db341b7d897430','0','2','0'), ('38197','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10474','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a4b55762b7ad446fa5c213883b8eebd2','0','2','0'), ('38198','20','get[1.3.6.1.2.1.1.1.0]','10474','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f5c605a329274039883a04e6993d1e22','0','2','0'), ('38199','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10474','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1d0da69b54a24b938cc1e9b37163dca3','0','2','0'), ('38200','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10474','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8fe83ecd500341999fc23e74d61dcf6b','0','2','0'), ('38201','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10474','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f79fd8f841404f88aa130513c8264e27','0','2','0'), ('38202','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10474','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','05cfdd5f009843a3a2b80939fb6f773d','0','2','0'), ('38203','15','','10474','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','26765cfd258e46d18c3d085c170c1004','0','2','0'), ('38227','15','','10474','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b069c0bfdd034fa39baf37234ca93052','0','2','0'), ('38251','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10475','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1b876d8c8ea3422a82e4b571853bee64','0','2','0'), ('38252','20','get[1.3.6.1.2.1.1.1.0]','10475','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ecb890a4585f47989973617ca4fcce42','0','2','0'), ('38253','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10475','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c283b3b41d074d9596145d97f33d132b','0','2','0'), ('38254','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10475','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f2e20d27ca50462c88220e91f24b11c8','0','2','0'), ('38255','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10475','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9c917c649b6e4a849283c5cd8c9f3c93','0','2','0'), ('38256','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10475','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','357a2467154c4dd283f76b9cdbdff62e','0','2','0'), ('38257','15','','10475','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e5e85e7c2e0440cb90dcff96deffd559','0','2','0'), ('38281','15','','10475','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e2ce3e31898447259ad7631d70f8f192','0','2','0'), ('38305','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10476','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e24fe19f052f4901aeb9feab8199e461','0','2','0'), ('38306','20','get[1.3.6.1.2.1.1.1.0]','10476','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f054bfb710c14307ade4081fb441e840','0','2','0'), ('38307','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10476','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','941a740a1dcc40cf88dd56039f26cf92','0','2','0'), ('38308','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10476','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','73fd8a7f00b2442c8d5bfab913d8eff9','0','2','0'), ('38309','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10476','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','011ea07e21a24cd1a4b42149ffe128db','0','2','0'), ('38310','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10476','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','902a71cc5c094a62a2a7f735d07643cf','0','2','0'), ('38311','15','','10476','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4ae4d4e6fe0d4bf290f96e1d430f2655','0','2','0'), ('38335','15','','10476','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b2f996b4a5e842d3b3b3ec3813faf82f','0','2','0'), ('38359','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10477','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','397dce267b79414fb563dc2f184d2930','0','2','0'), ('38360','20','get[1.3.6.1.2.1.1.1.0]','10477','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cc3d781f3ba64faa9914d34a4d450fd6','0','2','0'), ('38361','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10477','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d611ea9fbcff489e9175dcb6f0ffe2d1','0','2','0'), ('38362','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10477','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4257226c6b90413baaa7a2b8beeb3c01','0','2','0'), ('38363','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10477','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b319b01c532f453aa0b39c6cac9c06e8','0','2','0'), ('38364','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10477','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7522d72e76254a60b59fc2c67590701a','0','2','0'), ('38365','15','','10477','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4b9d180956ca4f17abc9c232856f1a78','0','2','0'), ('38389','15','','10477','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','00bc5ff9329240978654621ee37af739','0','2','0'), ('38413','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10478','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ac47dac361224d288e4455e9a689d690','0','2','0'), ('38414','20','get[1.3.6.1.2.1.1.1.0]','10478','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','01ef36b50b394e4bb9670abd48a05369','0','2','0'), ('38415','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10478','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2321d2d106f6432a9de5b5a633315e5e','0','2','0'), ('38416','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10478','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ae9626b78f3e4e89842fb82592e2f520','0','2','0'), ('38417','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10478','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4972cad8ac8f44d8a3d01278d602b21d','0','2','0'), ('38418','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10478','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a66e0f5458094b13bbdb7c9193b334e5','0','2','0'), ('38419','15','','10478','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5c095d3737054b68a32f491e34f4ab32','0','2','0'), ('38443','15','','10478','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4844d14f11a24be48f31ae5084e803d9','0','2','0'), ('38467','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10479','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c7582351ce394433b50aef17cc01b5b2','0','2','0'), ('38468','20','get[1.3.6.1.2.1.1.1.0]','10479','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9e5fac593cf94a9d973ba8b604e1dfd2','0','2','0'), ('38469','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10479','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f5531013912c4ed68e6b0b4d89165803','0','2','0'), ('38470','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10479','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','86323c3d935642f980f158e5868f35e0','0','2','0'), ('38471','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10479','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3ab4fc5c9fba4e098977500051a8ac98','0','2','0'), ('38472','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10479','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','df10ebd3cfa44fe6838889ff81e8cab0','0','2','0'), ('38473','15','','10479','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','132ff52c4648491c9743bcf11b680236','0','2','0'), ('38497','15','','10479','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c5b9a5819b1f4c34acb71d9cc12b7ef1','0','2','0'), ('38521','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10480','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','079bddb94e6d427b9b4232ba4da15b53','0','2','0'), ('38522','20','get[1.3.6.1.2.1.1.1.0]','10480','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c787c308e66348c2a2041c612ef70513','0','2','0'), ('38523','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10480','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','87b44381d4154c34bb1de1d8e56bc0f9','0','2','0'), ('38524','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10480','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3a8bf0dd575f4718a87c007408f98a80','0','2','0'), ('38525','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10480','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f5291559b3da497ba0cb9d7d36f531aa','0','2','0'), ('38526','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10480','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','40578c7f19bd4d2b9045abb2ccdd247f','0','2','0'), ('38527','15','','10480','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f076a1ed65f340579771f6f9c6f5d724','0','2','0'), ('38551','15','','10480','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','42dca57a2239444484284cb7cd999af2','0','2','0'), ('38575','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10481','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0647d4e175d8467ca7f7579f92c56b82','0','2','0'), ('38576','20','get[1.3.6.1.2.1.1.1.0]','10481','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1237d193c49a4110bce86971e3c142f1','0','2','0'), ('38577','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10481','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2e56609d113d4e7ab304ac20c4debb97','0','2','0'), ('38578','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10481','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3013805399d449c9ac4469b1310504db','0','2','0'), ('38579','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10481','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2d7199ec103340b280154f08de8699f6','0','2','0'), ('38580','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10481','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','54c72d743ada42dcaa0c39e9493517f8','0','2','0'), ('38581','15','','10481','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9aa6bb105738415e8971772cdb9273cc','0','2','0'), ('38605','15','','10481','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0ec6cd6ed5d142d6a17a3637f2884a0f','0','2','0'), ('38629','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10482','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f44c0f3952034baab2a7051ef835ad6a','0','2','0'), ('38630','20','get[1.3.6.1.2.1.1.1.0]','10482','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d1826b39b0004104bb5e81b3c6a5e944','0','2','0'), ('38631','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10482','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ddd2fc89869f4feca6141ed16d6cfe1c','0','2','0'), ('38632','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10482','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2e106a43efd24438adb62bec628e2176','0','2','0'), ('38633','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10482','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3067b57e3dd841959b11a972903b8f35','0','2','0'), ('38634','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10482','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','981a289b960f4df19cc0e2728618bb3e','0','2','0'), ('38635','15','','10482','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','477247613d5546bc95b4d2b7e1695743','0','2','0'), ('38659','15','','10482','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ec15b56d865b4ce8a2f09a6358c88f84','0','2','0'), ('38683','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10483','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fea2d45d484c40d5bbd0a63bbcf32f38','0','2','0'), ('38684','20','get[1.3.6.1.2.1.1.1.0]','10483','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','21aa5025c29a45d4ac5961d07f03f5ca','0','2','0'), ('38685','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10483','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e2160944535143e5a9768b9dc1041bb9','0','2','0'), ('38686','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10483','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c1b8a435332a4608a833703409c3844e','0','2','0'), ('38687','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10483','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0f96c2050b2d407d9355406ff3ba57da','0','2','0'), ('38688','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10483','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a4ba4c5b3c2e48b08231bd8f1ca9acf1','0','2','0'), ('38689','15','','10483','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0b6a0a9ba8c5454594c7b6dff8b32963','0','2','0'), ('38713','15','','10483','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fbca4c6a7a9e4dbbb44319976eaccbbc','0','2','0'), ('38737','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10484','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3442b390250b480f887e1311b369c54e','0','2','0'), ('38738','20','get[1.3.6.1.2.1.1.1.0]','10484','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3f580252fdf44bd4a1172a73ea1b681f','0','2','0'), ('38739','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10484','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','737a739207f142e292cbce0d6f7208d5','0','2','0'), ('38740','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10484','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b9fc7b36a3394404be56c55176b20e39','0','2','0'), ('38741','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10484','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','73ce1c102e3a4d4885438c16eff34ddf','0','2','0'), ('38742','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10484','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9e2ee7cca26b49d3990b832eda44ee2a','0','2','0'), ('38743','15','','10484','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7b1572625e04447eb308be35061921f2','0','2','0'), ('38767','15','','10484','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5b2a71ca1ecc4b24a42415100fcfe2fd','0','2','0'), ('38791','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10485','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1dfd38ddc91a4e70980734a4cfcc38e0','0','2','0'), ('38792','20','get[1.3.6.1.2.1.1.1.0]','10485','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e85420056601495aa0b7da67042a941a','0','2','0'), ('38793','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10485','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4b177e4109404eebaa6674b8fc36953b','0','2','0'), ('38794','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10485','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','54cf84706fad45a2af8d42f928108c4d','0','2','0'), ('38795','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10485','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','21c6ba2b92674bec82e2d438bcfc9bc0','0','2','0'), ('38796','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10485','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','23d7f8ca24e44c41a92fefa63b41e176','0','2','0'), ('38797','15','','10485','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3008075b5b134c3db792e591ae7ca316','0','2','0'), ('38821','15','','10485','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5a365ef0ba0d42f390d0810dc0165187','0','2','0'), ('38845','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10486','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','df95ed3cd37c4460bf643d9c1ec30cae','0','2','0'), ('38846','20','get[1.3.6.1.2.1.1.1.0]','10486','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5e688e8e57d84ec79f78cad69914ea96','0','2','0'), ('38847','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10486','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a4028eb828784fef80489e16e3d78659','0','2','0'), ('38848','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10486','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7c089e6fa1464c92ae25265351e46c61','0','2','0'), ('38849','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10486','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','796e3dc988dd43ff8a7ea11a8eeac257','0','2','0'), ('38850','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10486','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','456b72f5cd6d4a64871345d150068244','0','2','0'), ('38851','15','','10486','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5e68cf8cdbed4517a7b6828be1cc4aab','0','2','0'), ('38875','15','','10486','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','56ed6da227c44c3399700f2bb4eb936a','0','2','0'), ('38899','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10487','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fce13abb920940cdb20cdf70f2e94d90','0','2','0'), ('38900','20','get[1.3.6.1.2.1.1.1.0]','10487','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','45bdf887a0a3433cbb77a9ce792f2fec','0','2','0'), ('38901','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10487','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2f862ca4d6854c9bb56c46303cb5fd0a','0','2','0'), ('38902','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10487','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','71a6d0a5cfd94c14b97af236ce4fc1c9','0','2','0'), ('38903','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10487','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','54b4475f0bfb4c02b1f4fc68d4288bb7','0','2','0'), ('38904','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10487','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2e60d597dcc94824bea105b5e51e5d06','0','2','0'), ('38905','15','','10487','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','700227d0426b44ee87a5f33ef5b5b29e','0','2','0'), ('38929','15','','10487','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ce053243825b43e1818962addf49751c','0','2','0'), ('38953','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10488','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cb60ed419a0e4d43bd63fda86f86c12a','0','2','0'), ('38954','20','get[1.3.6.1.2.1.1.1.0]','10488','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ba01d10fe2254462b4c2eabaa6cf9d6c','0','2','0'), ('38955','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10488','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fc5c04dc408f47708d69d04e51f25d7c','0','2','0'), ('38956','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10488','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6bc59bf95f73427eaea0c59598d0deb3','0','2','0'), ('38957','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10488','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4b0e4a132da94cd4b20e1f4ab4428405','0','2','0'), ('38958','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10488','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','501e0023828440498faed0e1214efe1c','0','2','0'), ('38959','15','','10488','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3ddbf0f659724782a930dd42154eb64a','0','2','0'), ('38983','15','','10488','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e6dd665216134d83aca954fd64d5446b','0','2','0'), ('39007','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10489','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ed51e55b8fa64c5599399fc93d81d329','0','2','0'), ('39008','20','get[1.3.6.1.2.1.1.1.0]','10489','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','692ccc1f29fe4f15ae7ca0bee54bf6b6','0','2','0'), ('39009','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10489','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0645ecb1a28040d9b89af280ca3093ea','0','2','0'), ('39010','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10489','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','551f25631a13497b924c1b285b93ee5f','0','2','0'), ('39011','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10489','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c077abb2ecc84c88b2173bff8e9ab9aa','0','2','0'), ('39012','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10489','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4029907022564beeb405c065ae4febff','0','2','0'), ('39013','15','','10489','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5521e149584846118dcb280496b3aca4','0','2','0'), ('39037','15','','10489','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fbeab8db403d458b96fcd8084bd98f60','0','2','0'), ('39061','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10490','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','df5bf48843cd4981bf719769b3194a3d','0','2','0'), ('39062','20','get[1.3.6.1.2.1.1.1.0]','10490','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','50100a89b236431d9ba7e4f2352fa2b9','0','2','0'), ('39063','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10490','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','65a753ce87934f75aa719e3e59f76dbd','0','2','0'), ('39064','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10490','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b5a74fe98a7948a9b189953b457b2975','0','2','0'), ('39065','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10490','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','806938d083e848b4b84b2c222c4f4d2e','0','2','0'), ('39066','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10490','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0d4cc61a9f8c44f385606bc8394eaeb4','0','2','0'), ('39067','15','','10490','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','836ba120a51d4c659c034e3a94003c0f','0','2','0'), ('39091','15','','10490','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4616b7a26c5d4646abe4d8d87f988ae9','0','2','0'), ('39115','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10491','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1f05547dfa4146bd837288c6cfb0b0e4','0','2','0'), ('39116','20','get[1.3.6.1.2.1.1.1.0]','10491','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','286376d7fb9e4fa9a608d7494b500f4f','0','2','0'), ('39117','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10491','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ad481c4efe304683ac539107a121b10a','0','2','0'), ('39118','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10491','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','111bd5c32550427682bb0e683754fda9','0','2','0'), ('39119','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10491','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1b352f84778349c78422b9d4c648d05b','0','2','0'), ('39120','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10491','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f3f37d9595244448ab98704c49678800','0','2','0'), ('39121','15','','10491','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','10858c87568841f688e9b0b7e43811dd','0','2','0'), ('39145','15','','10491','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ed6f9d957ccc4a85a638b239082d0013','0','2','0'), ('39169','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10492','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','354b56e7cce646c8b143434af11ebd1a','0','2','0'), ('39170','20','get[1.3.6.1.2.1.1.1.0]','10492','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3da25a0046ac4f2c9ec35d3ac9db9ae7','0','2','0'), ('39171','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10492','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a935a058a7644773b40d0cfbaae218e2','0','2','0'), ('39172','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10492','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','14e1297549d74f48be28bdfe70746600','0','2','0'), ('39173','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10492','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b0a11ac957ff4b91b2d032ca2e97fd86','0','2','0'), ('39174','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10492','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3702de756584423b93730807b797a1db','0','2','0'), ('39175','15','','10492','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5e58d0e859a94279b4e52aa4b16d3702','0','2','0'), ('39199','15','','10492','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','164b2f394aa3470faa18ba70e42b458f','0','2','0'), ('39223','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10493','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e98ee47f44a24acab59bf6d10a1f6612','0','2','0'), ('39224','20','get[1.3.6.1.2.1.1.1.0]','10493','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','176f7b3c6e4848c79f0f0f99021c644f','0','2','0'), ('39225','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10493','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fffcae15a44d4165af9f293a4dfc3134','0','2','0'), ('39226','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10493','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a46b0c33e93840e182208a099e6206df','0','2','0'), ('39227','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10493','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4255253ed78749d597385af02b95c8fe','0','2','0'), ('39228','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10493','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fb1cd4666b1d4ee48141c77a7b9f07db','0','2','0'), ('39229','15','','10493','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','430682c60e8644baa65bcfa66dcd1b37','0','2','0'), ('39253','15','','10493','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4f25df9f57b443e5acd933712e07c480','0','2','0'), ('39277','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10494','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2031dfc697c244c59e036a0b166772e2','0','2','0'), ('39278','20','get[1.3.6.1.2.1.1.1.0]','10494','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6b8b9d12f8d449a5be35d89d8c68719d','0','2','0'), ('39279','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10494','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','20e6d99fff5943ff85c2beedb0b292f3','0','2','0'), ('39280','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10494','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2b704d1b595b4fe5aec1f855ff6574ea','0','2','0'), ('39281','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10494','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aa54b9f3cf6746b897c07e7f3eac3c1f','0','2','0'), ('39282','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10494','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b5a826e18b2941aeb1f3e091928225e0','0','2','0'), ('39283','15','','10494','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','767414861593473896fb39004ea488d4','0','2','0'), ('39307','15','','10494','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d268756d1e3b4557ace5aac8491e1fc8','0','2','0'), ('39331','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10495','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f9085ebffffa4e2abca0aa7c0e50599f','0','2','0'), ('39332','20','get[1.3.6.1.2.1.1.1.0]','10495','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3d8a9da605f74a9089b49def0f6a4bff','0','2','0'), ('39333','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10495','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e35a6c46c241466a9d96f1017bf3b467','0','2','0'), ('39334','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10495','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c25789ed5a2e40b090016c759c5a96cc','0','2','0'), ('39335','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10495','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c45124bc11da4ebebf0dc1a9cd7c261e','0','2','0'), ('39336','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10495','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','45ec9416e047428b8c535f95985bb61d','0','2','0'), ('39337','15','','10495','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d7aa64e64e534b1e9dbd65dd2bdda819','0','2','0'), ('39361','15','','10495','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','97ddda9d5c8542f8b5f905e4bb9d7479','0','2','0'), ('39385','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10496','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3521c975bbb443b1b66ec32ea561745f','0','2','0'), ('39386','20','get[1.3.6.1.2.1.1.1.0]','10496','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6178d9f5c5e947fe8e3fb774cc5a373a','0','2','0'), ('39387','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10496','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c449cc37420643ee8493419bde54aac6','0','2','0'), ('39388','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10496','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','65da6e280942476e842effb8a08e2c6f','0','2','0'), ('39389','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10496','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b4ce328c64a2471e98a1f608028797d5','0','2','0'), ('39390','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10496','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9a7746065ea84c8da33740d3552c7073','0','2','0'), ('39391','15','','10496','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d294f3fa005b4c90a82fbc3fd5037fb7','0','2','0'), ('39415','15','','10496','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a6bdcbcf646d4735a4698ce3636ea7a1','0','2','0'), ('39439','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10497','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dd3b07cbd6d74fec88e1d371846b48a4','0','2','0'), ('39440','20','get[1.3.6.1.2.1.1.1.0]','10497','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ea51e70e43e24056b25309ce0fa8f9d8','0','2','0'), ('39441','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10497','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a577dbe3cfde4294ab93e0ab114c24c7','0','2','0'), ('39442','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10497','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','34a57dc1a4f54f7ea156fa5c7b5f61de','0','2','0'), ('39443','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10497','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4d8039dcceb344dcb4de5c4895a4e199','0','2','0'), ('39444','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10497','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','664555ffcf5e48039bdcf98bf79247ef','0','2','0'), ('39445','15','','10497','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8aa0e7e65d12468e9fdf4e2faebd3450','0','2','0'), ('39469','15','','10497','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6cddae4271784cc5bb19102f2f8f44a0','0','2','0'), ('39493','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10498','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c15fe701615f41809cdb9440e308339c','0','2','0'), ('39494','20','get[1.3.6.1.2.1.1.1.0]','10498','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','10cecca7315d4732badc194787d6e58f','0','2','0'), ('39495','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10498','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ab2590092f894a1c97787d5edb470b65','0','2','0'), ('39496','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10498','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0c40e8e1ccca4418b9bfc22a84c08b4e','0','2','0'), ('39497','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10498','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','93743e909ba5414294005084cb83fc93','0','2','0'), ('39498','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10498','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','039d0c2fe2224a57b77def7dd4dd2cfd','0','2','0'), ('39499','15','','10498','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bdb11b0d08184bd188276b7559286e65','0','2','0'), ('39523','15','','10498','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','836926c431cb48a9ab94ad752243a60a','0','2','0'), ('39547','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10499','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7154ef6b0f0b4d4a99fdf1d7ec8b2262','0','2','0'), ('39548','20','get[1.3.6.1.2.1.1.1.0]','10499','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0e326a00dadf46928949a2270a4e7619','0','2','0'), ('39549','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10499','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','17dd769754ca4559b53b191baa8ac571','0','2','0'), ('39550','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10499','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7df965b410944b07a5effd80fc3e5514','0','2','0'), ('39551','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10499','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3698fb3739a8435da6e40f4c2245b78e','0','2','0'), ('39552','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10499','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b15a14a08a06417a9ca3586754a3c968','0','2','0'), ('39553','15','','10499','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ac044f3cfc33483db97ef1daecaafd6e','0','2','0'), ('39577','15','','10499','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4110589dc6ee47bdaf23dade490edffb','0','2','0'), ('39601','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10500','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c3a06a34c55c42c89d9158ac8e735564','0','2','0'), ('39602','20','get[1.3.6.1.2.1.1.1.0]','10500','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','350020213bbd4ca59fad42e8347abd67','0','2','0'), ('39603','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10500','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3540413716f141329c4ffadb402a051d','0','2','0'), ('39604','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10500','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d8413ee1e46846fabbc3f7239d74df02','0','2','0'), ('39605','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10500','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d80ed64a5916414091a72caf33d650ee','0','2','0'), ('39606','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10500','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bd680110f05848aaa2754da8d00f60e4','0','2','0'), ('39607','15','','10500','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1a8c279dc19c4944804d27e0e6f7b5b3','0','2','0'), ('39631','15','','10500','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e97a95f91dc24615ac510da4e1e13c60','0','2','0'), ('39655','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10501','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','166760a906dd4377a9b548a4809da3fd','0','2','0'), ('39656','20','get[1.3.6.1.2.1.1.1.0]','10501','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fd26be143fce4e5bb10c61899b518eb2','0','2','0'), ('39657','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10501','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','17f7aa01b647470382387fa9698bb80d','0','2','0'), ('39658','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10501','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6f2ceb1729884e39a364207defb39b96','0','2','0'), ('39659','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10501','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','efdb24ce66d8410cae4a932160c12bf2','0','2','0'), ('39660','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10501','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3d359d909fef46ec96fd6f66a7be6d3b','0','2','0'), ('39661','15','','10501','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ca6584d0bc71410bb93a7c295e6993b3','0','2','0'), ('39685','15','','10501','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8a5e4dbb9a194daa918c30f2a12d8b95','0','2','0'), ('39709','20','get[1.3.6.1.4.1.14988.1.1.7.4.0]','10502','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Current firmware version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bece431938dc48d79221aae1c14bb118','0','2','0'), ('39710','20','get[1.3.6.1.2.1.1.1.0]','10502','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d25a80f7bc97479690fcb07d44462606','0','2','0'), ('39711','20','get[1.3.6.1.4.1.14988.1.1.7.3.0]','10502','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB RouterBOARD serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e9b1a9ee39334a7e986ca5fa85baea41','0','2','0'), ('39712','20','get[1.3.6.1.4.1.14988.1.1.4.4.0]','10502','Operating system','system.sw.os[mtxrLicVersion.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: MIKROTIK-MIB Software version.','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8a2568f84b394419b6f8ede2872dc3f1','0','2','0'), ('39713','20','get[1.3.6.1.2.1.25.2.3.1.5.65536]','10502','Total memory','vm.memory.total[hrStorageSize.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2a897066661b413fb7d0f6ae795a8b78','0','2','0'), ('39714','20','get[1.3.6.1.2.1.25.2.3.1.6.65536]','10502','Used memory','vm.memory.used[hrStorageUsed.Memory]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','194e39cf188e40ba88b4c1f41b01b0c9','0','2','0'), ('39715','15','','10502','Memory utilization','vm.memory.util[memoryUsedPercentage.Memory]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.Memory])/last(//vm.memory.total[hrStorageSize.Memory])*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0d8527333e0a4f509b9fe0699577b081','0','2','0'), ('39739','15','','10502','Disk-{#SNMPINDEX}: Space utilization','vfs.fs.pused[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageSize.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for Disk-{#SNMPINDEX}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','926e106ebed847cb8179f1672be567b9','0','2','0'), ('39742','19','','10503','System properties','velocloud.system.properties','6h','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'System properties of VMware SD-WAN.','0','30d','0','',NULL,'','https://{$VELOCLOUD.URL}/portal/rest/systemProperty/getSystemProperties','','{ "normalize": true }','200','1','0','','Content-Type: application/json Authorization: Token {$VELOCLOUD.TOKEN}','0','1','0','0','0','0','0','1206789df5b44af7ba1c5416662344dd','0','2','0'), ('39743','21','','10503','Get data','velocloud.get','1m','0','0','0','4','','','','',NULL,NULL,'var params = JSON.parse(value); var request = new HttpRequest(); request.addHeader(''Content-Type: application/json''); request.addHeader(''Authorization: Token '' + params.token); var response, error_msg = '''', enterprises = [], edges = [], links = [], gateways = [], version = []; function getHttpData(url, body) { response = request.post(url, body); Zabbix.log(4, ''[ SD-WAN API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from SD-WAN API. Check debug log for more information.''; } } if (request.getStatus() !== 200) { if (response.error && response.error.message) { throw response.error.message; } else { throw ''Failed to receive data: invalid response status code.''; } } if (typeof (response) !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object.''; } return response; }; try { if (params.token === ''{'' + ''$VELOCLOUD.TOKEN}'') { throw ''Please change {'' + ''$VELOCLOUD.TOKEN} macro with the proper value.''; } if (params.url.indexOf(''http://'') === -1 && params.url.indexOf(''https://'') === -1) { params.url = ''https://'' + params.url; } if (!params.url.endsWith(''/'')) { params.url += ''/''; } enterprises = getHttpData(params.url + ''portal/rest/monitoring/getAggregates'', ''{}'').enterprises; if (!Array.isArray(enterprises)) { throw ''Cannot process edges: enterprises is not an array.''; } links = getHttpData(params.url + ''portal/rest/monitoring/getAggregateEdgeLinkMetrics'', ''{}''); gateways = getHttpData(params.url + ''portal/rest/network/getNetworkGateways'', JSON.stringify({ with: [''site''] })); version = getHttpData(params.url + ''portal/rest/system/getVersionInfo'', ''{}''); for (var i in enterprises) { responseEdges = getHttpData(params.url + ''portal/rest/enterprise/getEnterpriseEdges'', JSON.stringify({ enterpriseId: enterprises[i].id, with: [''site''] })); edges = edges.concat(responseEdges); } } catch (error) { error_msg = error; }; return JSON.stringify({ ''enterprises'': enterprises, ''edges'': edges, ''links'': links, ''gateways'': gateways, ''info'': version, ''error'': error_msg.toString() });','','0','','','','','0',NULL,'The JSON with result of Velocloud API requests.','0','30d','0','',NULL,'10s','','','','200','1','0','','','0','0','0','0','0','0','0','3d96f6e755934bc8a4ee7300a165adae','0','2','0'), ('39804','5','','10047','Zabbix stats cluster','zabbix[cluster,discovery,nodes]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The master item of Zabbix cluster statistics.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f9d60d6dcbe14cd4aaec08aec6ca1856','0','2','0'), ('39822','5','','10047','Utilization of ODBC poller data collector processes, in %','zabbix[process,odbc poller,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the ODBC poller processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f8d593ff5690419f8679a5b8303f3a66','0','2','0'), ('39826','5','','10048','Utilization of ODBC poller data collector processes, in %','zabbix[process,odbc poller,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the ODBC poller processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','06bdbdcfdbc04c24ad387b256e430801','0','2','0'), ('39827','19','','10504','Get API instance metrics','kubernetes.api.get_metrics','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get raw metrics from API instance /metrics endpoint.','0','30d','0','',NULL,'15s','{$KUBE.API.SERVER.URL}','','','200','1','0','','Authorization: Bearer {$KUBE.API.TOKEN}','0','0','0','0','0','0','0','e4e3c570a55a48689c145c4a2310c597','0','2','0'), ('39861','15','','10504','["{#VERB}"] Requests, p90','kubernetes.api.request_duration_seconds_p90["{#VERB}"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.api.request_duration_seconds_bucket[*,"{#VERB}"],5m,90)','','0','','','','','2',NULL,'90 percentile of response latency distribution in seconds for each verb.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','1','12d65aff584e459586284967e570fc0a','0','2','0'), ('39862','15','','10504','["{#VERB}"] Requests, p50','kubernetes.api.request_duration_seconds_p50["{#VERB}"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.api.request_duration_seconds_bucket[*,"{#VERB}"],5m,50)','','0','','','','','2',NULL,'50 percentile of response latency distribution in seconds for each verb.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','1','a4f39bb87ef248edbb578c0c89baba46','0','2','0'), ('39863','15','','10504','["{#VERB}"] Requests, p95','kubernetes.api.request_duration_seconds_p95["{#VERB}"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.api.request_duration_seconds_bucket[*,"{#VERB}"],5m,95)','','0','','','','','2',NULL,'95 percentile of response latency distribution in seconds for each verb.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','1','3e900f1e4cab4edba4d068f1b6759428','0','2','0'), ('39864','15','','10504','["{#VERB}"] Requests, p99','kubernetes.api.request_duration_seconds_p99["{#VERB}"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.api.request_duration_seconds_bucket[*,"{#VERB}"],5m,99)','','0','','','','','2',NULL,'99 percentile of response latency distribution in seconds for each verb.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','1','a34c3c5f5f844c46a4d3f148cacd3fd3','0','2','0'), ('39876','19','','10505','Kubernetes Controller: Get Controller metrics','kubernetes.controller.get_metrics','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get raw metrics from Controller instance /metrics endpoint.','0','30d','0','',NULL,'15s','{$KUBE.CONTROLLER.SERVER.URL}','','','200','1','0','','Authorization: Bearer {$KUBE.API.TOKEN}','0','0','0','0','0','0','0','c684929ea8444a6aa24f1fb80812a6eb','0','2','0'), ('39890','15','','10505','["{#NAME}"]: Workqueue queue duration, p90','kubernetes.controller.workqueue_queue_duration_seconds_p90["{#NAME}"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.controller.queue_duration_seconds_bucket[*,"{#NAME}"],5m,90)','','0','','','','','2',NULL,'90 percentile of how long in seconds an item stays in workqueue before being requested, by queue.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','1','9f976d181b7f4776a271e683d9efd396','0','2','0'), ('39891','15','','10505','["{#NAME}"]: Workqueue queue duration, 50p','kubernetes.controller.workqueue_queue_duration_seconds_p50["{#NAME}"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.controller.queue_duration_seconds_bucket[*,"{#NAME}"],5m,50)','','0','','','','','2',NULL,'50 percentile of how long in seconds an item stays in workqueue before being requested. If there are no requests for 5 minute, item value will be discarded.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','1','0657d0741d5649a2b0ad87c2f39dc243','0','2','0'), ('39892','15','','10505','["{#NAME}"]: Workqueue queue duration, p95','kubernetes.controller.workqueue_queue_duration_seconds_p95["{#NAME}"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.controller.queue_duration_seconds_bucket[*,"{#NAME}"],5m,95)','','0','','','','','2',NULL,'95 percentile of how long in seconds an item stays in workqueue before being requested, by queue.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','1','ce4b9daa161742ffb6fec0790c1dc689','0','2','0'), ('39893','15','','10505','["{#NAME}"]: Workqueue queue duration, p99','kubernetes.controller.workqueue_queue_duration_seconds_p99["{#NAME}"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.controller.queue_duration_seconds_bucket[*,"{#NAME}"],5m,99)','','0','','','','','2',NULL,'99 percentile of how long in seconds an item stays in workqueue before being requested, by queue.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','1','61d5f616cc474ae3adfcbd1a15fdd607','0','2','0'), ('39894','15','','10505','["{#NAME}"]: Workqueue work duration, 50p','kubernetes.controller.workqueue_work_duration_seconds_p50["{#NAME}"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.controller.duration_seconds_bucket[*,"{#NAME}"],5m,50)','','0','','','','','2',NULL,'50 percentiles of how long in seconds processing an item from workqueue takes, by queue.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','1','68efc8bc4fec458384e21b7b19db696c','0','2','0'), ('39895','15','','10505','["{#NAME}"]: Workqueue work duration, p90','kubernetes.controller.workqueue_work_duration_seconds_p90["{#NAME}"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.controller.duration_seconds_bucket[*,"{#NAME}"],5m,90)','','0','','','','','2',NULL,'90 percentile of how long in seconds processing an item from workqueue takes, by queue.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','1','ff4f4b222dfd47f69b96513fed4393f5','0','2','0'), ('39896','15','','10505','["{#NAME}"]: Workqueue work duration, p95','kubernetes.controller.workqueue_work_duration_seconds_p95["{#NAME}"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.controller.duration_seconds_bucket[*,"{#NAME}"],5m,95)','','0','','','','','2',NULL,'95 percentile of how long in seconds processing an item from workqueue takes, by queue.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','1','34a688601a404d63aea3a774a9f5970a','0','2','0'), ('39897','15','','10505','["{#NAME}"]: Workqueue work duration, p99','kubernetes.controller.workqueue_work_duration_seconds_p99["{#NAME}"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.controller.duration_seconds_bucket[*,"{#NAME}"],5m,99)','','0','','','','','2',NULL,'99 percentile of how long in seconds processing an item from workqueue takes, by queue.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','1','e5b4ea49906e4a12b01757854a5766a4','0','2','0'), ('39905','19','','10506','Get cadvisor metrics','kube.cadvisor.metrics','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collecting raw Kubelet metrics from /metrics/cadvisor endpoint.','0','30d','0','',NULL,'10s','{$KUBE.KUBELET.URL}{$KUBE.KUBELET.CADVISOR.ENDPOINT}','','','200, 403','1','0','','Authorization: Bearer {$KUBE.API.TOKEN}','0','0','0','0','0','0','0','1f94bbb521cb41dfa093e1408efbb15a','0','2','0'), ('39906','19','','10506','Get kubelet metrics','kube.kubelet.metrics','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collecting raw Kubelet metrics from /metrics endpoint.','0','30d','0','',NULL,'10s','{$KUBE.KUBELET.URL}{$KUBE.KUBELET.METRIC.ENDPOINT}','','','200, 403','1','0','','Authorization: Bearer {$KUBE.API.TOKEN}','0','0','0','0','0','0','0','c71fc79a77104ef4a0d6b89d5f7b7bad','0','2','0'), ('39907','19','','10506','Get pods','kube.pods','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collecting raw Kubelet metrics from /pods endpoint.','0','30d','0','',NULL,'10s','{$KUBE.KUBELET.URL}{$KUBE.KUBELET.PODS.ENDPOINT}','','','200, 403','1','0','','Authorization: Bearer {$KUBE.API.TOKEN}','0','0','0','0','0','0','0','7c8cc6c3ed8e412eb69e7ab8e2fe7e12','0','2','0'), ('39921','15','','10506','[{#OP_TYPE}] Operations, p50','kube.kublet.runtime_ops_duration_seconds_p50["{#OP_TYPE}"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kube.kublet.runtime_ops_duration_seconds_bucket[*,"{#OP_TYPE}"],5m,50)','','0','','','','','2',NULL,'50 percentile of operation latency distribution in seconds for each verb.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','1','3d9545d396b24ef6b87eb730ad93cda7','0','2','0'), ('39922','15','','10506','[{#OP_TYPE}] Operations, p90','kube.kublet.runtime_ops_duration_seconds_p90["{#OP_TYPE}"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kube.kublet.runtime_ops_duration_seconds_bucket[*,"{#OP_TYPE}"],5m,90)','','0','','','','','2',NULL,'90 percentile of operation latency distribution in seconds for each verb.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','1','039a47a0b20741e79701fecb924e6a08','0','2','0'), ('39923','15','','10506','[{#OP_TYPE}] Operations, p95','kube.kublet.runtime_ops_duration_seconds_p95["{#OP_TYPE}"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kube.kublet.runtime_ops_duration_seconds_bucket[*,"{#OP_TYPE}"],5m,95)','','0','','','','','2',NULL,'95 percentile of operation latency distribution in seconds for each verb.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','1','e846265636ac433ba2bce034aca1e394','0','2','0'), ('39924','15','','10506','[{#OP_TYPE}] Operations, p99','kube.kublet.runtime_ops_duration_seconds_p99["{#OP_TYPE}"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kube.kublet.runtime_ops_duration_seconds_bucket[*,"{#OP_TYPE}"],5m,99)','','0','','','','','2',NULL,'99 percentile of operation latency distribution in seconds for each verb.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','1','68f17a6132dd48deb3825efd2b83b6ce','0','2','0'), ('39937','21','','10507','Get nodes','kube.nodes','0;s00','0','0','0','4','','','','',NULL,NULL,E'var Kube = { params: {}, pods_limit: 1000, setParams: function (params) { [''api_token'', ''api_url''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } }); [''endpoint_name'', ''pod_filter_labels'', ''pod_filter_annotations'', ''node_filter_labels'', ''node_filter_annotations''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'') { throw ''Parameter can be empty but not removed: "'' + field + ''".''; } }); Kube.params = params; if (typeof Kube.params.api_url === ''string'' && !Kube.params.api_url.endsWith(''/'')) { Kube.params.api_url += ''/''; } }, apiRequest: function (query) { var request = new HttpRequest(), response, url = encodeURI(Kube.params.api_url + query); if (typeof Kube.params.http_proxy !== ''undefined'' && Kube.params.http_proxy !== '''') { request.setProxy(Kube.params.http_proxy); } request.addHeader(''Content-Type: application/json''); request.addHeader(''Authorization: Bearer '' + Kube.params.api_token); if (Kube.params.http_proxy) { Zabbix.log(4, ''[ Kubernetes ] Using http proxy: '' + Kube.params.http_proxy); } response = request.get(url); Zabbix.log(4, ''[ Kubernetes ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from Kubernetes API. Check debug log for more information.''; } return response; }, parseFilters: function (csv) { if (!csv) return []; var filters = []; const filterCapture = /([!\\w\\-\\.\\/]+)\\s*:\\s*(.*)/; const onComma = /\\s*,\\s*/; csv.split(onComma).forEach(function (kv) { var match = kv.match(filterCapture); if (!match) { Zabbix.log(3, ''Cannot parse filter from: "'' + kv + ''"''); return; } filters.push({ key: match[1], expression: match[2] }); }); return filters; }, filter: function (name, data, filters) { if (typeof data !== ''object'') { return true; } return filters.every(function (filter) { const filter_key = filter.key.startsWith(''!'') ? filter.key.substring(1) : filter.key; if (!(filter_key in data)) { return true; } const isExcludingFilter = filter.key.startsWith(''!''); const isMatchForFilter = new RegExp(filter.expression).test(data[filter_key]); if ((isExcludingFilter && isMatchForFilter) || (!isExcludingFilter && !isMatchForFilter)) { Zabbix.log(4, ''[ Kubernetes ] Discarded "'' + name + ''" by filter "'' + filter.key + '': '' + filter.expression + ''"''); return false; } return true; }); }, getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getNodes: function () { var result = Kube.apiRequest(''api/v1/nodes''), output = [], filterNodeLabels = Kube.parseFilters(Kube.params.node_filter_labels), filterNodeAnnotations = Kube.parseFilters(Kube.params.node_filter_annotations); if (typeof result !== ''object'' || typeof result.items === ''undefined'') { throw ''Cannot get nodes from Kubernetes API. Check debug log for more information.''; } result.items.forEach(function (filternode) { if (Kube.filter(Kube.getField(filternode, ''metadata.name''), Kube.getField(filternode, ''metadata.labels''), filterNodeLabels) && Kube.filter(Kube.getField(filternode, ''metadata.name''), Kube.getField(filternode, ''metadata.annotations''), filterNodeAnnotations)) { Zabbix.log(4, ''[ Kubernetes ] Filtered node "'' + filternode.metadata.name + ''"''); output.push({ filternode }); } }); return output; }, getPods: function () { var result = [], continue_token, Pods = []; while (continue_token !== '''') { var data = Kube.apiRequest(''api/v1/pods?limit='' + Kube.pods_limit + ((typeof continue_token !== ''undefined'') ? ''&continue='' + continue_token : '''')); if (typeof data !== ''object'' || typeof data.items === ''undefined'') { throw ''Cannot get pods from Kubernetes API. Check debug log for more information.''; }; result.push.apply(result, data.items); continue_token = data.metadata.continue || ''''; } result.forEach(function (pod) { var containers = { limits: { cpu: 0, memory: 0 }, requests: { cpu: 0, memory: 0 }, restartCount: 0 }, containerStatuses = [{ restartCount: 0 }]; if (typeof pod.status.hostIP === ''object'' || typeof pod.status.hostIP === ''undefined'') { pod.status.hostIP = ''none''; }; Kube.getField(pod, ''spec.containers'').forEach(function (container) { var limits = container.resources.limits, requests = container.resources.requests; if (typeof limits !== ''undefined'') { containers.limits.cpu += Fmt.cpuFormat(limits.cpu); containers.limits.memory += Fmt.memoryFormat(limits.memory); } if (typeof requests !== ''undefined'') { containers.requests.cpu += Fmt.cpuFormat(requests.cpu); containers.requests.memory += Fmt.memoryFormat(requests.memory); } }); if (typeof pod.status.containerStatuses !== ''object'' || typeof pod.status.containerStatuses === ''undefined'') { pod.status.containerStatuses = containerStatuses; }; pod.status.containerStatuses.forEach(function (container) { containers.restartCount += container.restartCount; }); Pods.push({ ''name'': pod.metadata.name, ''nodeIP'': pod.status.hostIP, ''namespace'': pod.metadata.namespace, ''labels'': pod.metadata.labels, ''annotations'': pod.metadata.annotations, ''phase'': pod.status.phase, ''conditions'': pod.status.conditions, ''startTime'': pod.status.startTime, ''containers'': containers, ''hostname'': ''none'' }) }); return Pods; }, getEndpointIPs: function () { var endpoints = Kube.apiRequest(''api/v1/endpoints''), endpointIPs = []; if (typeof endpoints !== ''object'' || typeof endpoints.items === ''undefined'') { throw ''Cannot get endpoints from Kubernetes API. Check debug log for more information.''; }; endpoints.items.forEach(function (ep) { if (Kube.getField(ep, ''metadata.name'') !== Kube.params.endpoint_name) { return; } if (!Array.isArray(ep.subsets)) { return; } endpointIPs = ep.subsets; }); return endpointIPs; } }, Fmt = { factors: { Ki: 1024, K: 1000, Mi: 1024 ** 2, M: 1000 ** 2, Gi: 1024 ** 3, G: 1000 ** 3, Ti: 1024 ** 4, T: 1000 ** 4, }, cpuFormat: function (cpu) { if (typeof cpu === ''undefined'') { return 0; } if (cpu.indexOf(''m'') > -1) { return parseInt(cpu) / 1000; } return parseInt(cpu); }, memoryFormat: function (mem) { if (typeof mem === ''undefined'') { return 0; } var pair, factor; if (pair = mem.match(/(\\d+)(\\w*)/)) { if (factor = Fmt.factors[pair[2]]) { return parseInt(pair[1]) * factor; } return mem; } return parseInt(mem); } } try { Kube.setParams(JSON.parse(value)); var nodes = Kube.getNodes(), pods = Kube.getPods(), Pods = [], hostname = Kube.params.api_url.match(/https?:\\/\\/([\\w.-]+|\\[[a-f0-9:]+\\]|[^a-zA-Z:]+)(?::\\d+)?/), filterPodLabels = Kube.parseFilters(Kube.params.pod_filter_labels), filterPodAnnotations = Kube.parseFilters(Kube.params.pod_filter_annotations), endpointIPs = Kube.getEndpointIPs(); if (typeof hostname[1] === ''undefined'') { Zabbix.log(4, ''[ Kubernetes ] Received incorrect Kubernetes API url: '' + api_url + ''. Expected format: ://:''); throw ''Cannot get hostname from Kubernetes API url. Check debug log for more information.''; }; for (idx in nodes) { var nodePodsCount = 0, endpointpod = [], roles = []; Object.keys(nodes[idx].filternode.metadata.labels).forEach(function (label) { var splitLabel = label.match(/^node-role.kubernetes.io\\/([\\w\\.-]+)/); if (splitLabel) { roles.push(splitLabel[1]); } }); var internalIPs = Kube.getField(nodes[idx].filternode, ''status.addresses'').filter(function (addr) { return addr.type === ''InternalIP''; }); var internalIP = internalIPs.length && internalIPs[0].address; var Hostname = Kube.getField(nodes[idx].filternode, ''status.addresses'').filter(function (addr) { return addr.type === ''Hostname''; }); var Hostname = Hostname.length && Hostname[0].address; pods.forEach(function (pod) { if (pod.nodeIP !== internalIP) { return; } nodePodsCount++; pod.hostname = Hostname; Pods = pods.filter(function (f) { return (f.hostname !== ''none'' || f.phase === ''Pending'') && ( Kube.filter(f.name, f.labels, filterPodLabels) && Kube.filter(f.name, f.annotations, filterPodAnnotations) ); } ) }); endpointIPs.forEach(function (agent) { for (k in Kube.getField(agent, ''addresses'')) { if (Kube.getField(agent.addresses[k], ''ip'') === internalIP) { endpointpod = Kube.getField(agent.addresses[k], ''targetRef.name'') } for (k in agent.notReadyAddresses) { if (agent.notReadyAddresses[k].ip === internalIP) { endpointpod = ''notReadyAddresses'' } } } }); delete nodes[idx].filternode.metadata.managedFields; delete nodes[idx].filternode.status.images; nodes[idx].filternode.status.capacity.cpu = Fmt.cpuFormat(nodes[idx].filternode.status.capacity.cpu); nodes[idx].filternode.status.capacity.memory = Fmt.memoryFormat(nodes[idx].filternode.status.capacity.memory); nodes[idx].filternode.status.allocatable.cpu = Fmt.cpuFormat(nodes[idx].filternode.status.allocatable.cpu); nodes[idx].filternode.status.allocatable.memory = Fmt.memoryFormat(nodes[idx].filternode.status.allocatable.memory); nodes[idx].filternode.status.podsCount = nodePodsCount; nodes[idx].filternode.status.roles = roles.join('', ''); nodes[idx].filternode.status.agent = endpointpod; nodes[idx].filternode.internalIP = internalIP; nodes[idx].filternode.clusterhostname = hostname[1]; } return JSON.stringify({ nodes, Pods }); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ Kubernetes ] ERROR: '' + error); return JSON.stringify({ error: error }); }','','0','','','','','0',NULL,'Collecting and processing cluster nodes data via Kubernetes API.','0','30d','0','',NULL,'10s','','','','200','1','0','','','0','0','0','0','0','0','0','70dab03a327a4dc0ab9fe8031052584d','0','2','0'), ('39978','19','','10509','Get Scheduler metrics','kubernetes.scheduler.get_metrics','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get raw metrics from Scheduler instance /metrics endpoint.','0','30d','0','',NULL,'15s','{$KUBE.SCHEDULER.SERVER.URL}','','','200','1','0','','Authorization: Bearer {$KUBE.API.TOKEN}','0','0','0','0','0','0','0','2534eacdaf9b44d68388b366da40af59','0','2','0'), ('40003','15','','10509','["{#RESULT}"]: e2e scheduling, p90','kubernetes.scheduler.e2e_scheduling_p90["{#RESULT}"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.scheduler.e2e_scheduling_bucket[*,"{#RESULT}"],5m,90)','','0','','','','','2',NULL,'90 percentile of e2e scheduling latency.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','1','01edd56cd1c94d4b80589d91349e4be5','0','2','0'), ('40004','15','','10509','["{#RESULT}"]: e2e scheduling, p50','kubernetes.scheduler.e2e_scheduling_p50["{#RESULT}"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.scheduler.e2e_scheduling_bucket[*,"{#RESULT}"],5m,50)','','0','','','','','2',NULL,'50 percentile of e2e scheduling latency.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','1','b8fd5b4454484f4298e2c2b1e5c832c5','0','2','0'), ('40005','15','','10509','["{#RESULT}"]: e2e scheduling, p95','kubernetes.scheduler.e2e_scheduling_p95["{#RESULT}"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.scheduler.e2e_scheduling_bucket[*,"{#RESULT}"],5m,95)','','0','','','','','2',NULL,'95 percentile of e2e scheduling latency.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','1','706fc27da4d34a4e9189c566c7aa96ff','0','2','0'), ('40006','15','','10509','["{#RESULT}"]: e2e scheduling, p99','kubernetes.scheduler.e2e_scheduling_p99["{#RESULT}"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.scheduler.e2e_scheduling_bucket[*,"{#RESULT}"],5m,99)','','0','','','','','2',NULL,'95 percentile of e2e scheduling latency.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','1','829627aeab764590b3a17e6b10c56709','0','2','0'), ('40010','19','','10510','Get component statuses','kube.componentstatuses','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'10s','{$KUBE.API.URL}{$KUBE.API.COMPONENTSTATUSES.ENDPOINT}','','','200, 403','1','0','','Authorization: Bearer {$KUBE.API.TOKEN}','0','0','0','0','0','0','0','41c79d9286734cc3b0e3aa5ef729e5fe','0','2','0'), ('40011','21','','10510','Control plane LLD','kube.control_plane.lld','1m','0','0','0','4','','','','',NULL,NULL,E'var Kube = { params: {}, setParams: function (params) { [''api_token'', ''api_url'', ''api_server_scheme'', ''api_server_port'', ''controller_scheme'', ''controller_port'', ''scheduler_scheme'', ''scheduler_port'', ''control_plane_taint''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } }); Kube.params = params; if (typeof Kube.params.api_url === ''string'' && !Kube.params.api_url.endsWith(''/'')) { Kube.params.api_url += ''/''; } }, apiRequest: function (query) { var request = new HttpRequest(), response, url = encodeURI(Kube.params.api_url + query); if (typeof Kube.params.http_proxy !== ''undefined'' && Kube.params.http_proxy !== '''') { request.setProxy(Kube.params.http_proxy); } request.addHeader(''Content-Type: application/json''); request.addHeader(''Authorization: Bearer '' + Kube.params.api_token); Zabbix.log(4, ''[ Kubernetes ] Sending request: '' + url); if (Kube.params.http_proxy) { Zabbix.log(4, ''[ Kubernetes ] Using http proxy: '' + Kube.params.http_proxy); } response = request.get(url); Zabbix.log(4, ''[ Kubernetes ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from Kubernetes API. Check debug log for more information.''; } return response; }, getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getNodes: function () { var result = Kube.apiRequest(''api/v1/nodes?labelSelector='' + Kube.params.control_plane_taint); if (typeof result !== ''object'' || typeof result.items === ''undefined'') { throw ''Cannot get control plane nodes from Kubernetes API. Check debug log for more information.''; }; var nodes = result.items, IPv4 = /(?:\\d{1,3}\\.){3}\\d{1,3}/, controlPlaneNodes = [], hostname = Kube.params.api_url.match(/https?:\\/\\/([\\w.-]+|\\[[a-f0-9:]+\\]|[^a-zA-Z:]+)(?::\\d+)?/); if (typeof hostname[1] === ''undefined'') { Zabbix.log(4, ''[ Kubernetes ] Received incorrect Kubernetes API url: '' + api_url + ''. Expected format: ://:''); throw ''Cannot get hostname from Kubernetes API url. Check debug log for more information.''; }; controlPlaneNodes = nodes.map(function (node) { var internalIPs = Kube.getField(node, ''status.addresses'').filter(function (addr) { return addr.type === ''InternalIP''; }); var internalIP = internalIPs.length && internalIPs[0].address; return { ''{#NAME}'': Kube.getField(node, ''metadata.name''), ''{#IP}'': internalIP, ''{#KUBE.API.SERVER.URL}'': Kube.params.api_server_scheme + ''://'' + (IPv4.test(internalIP) ? internalIP : ''['' + internalIP + '']'') + '':'' + Kube.params.api_server_port + ''/metrics'', ''{#KUBE.CONTROLLER.SERVER.URL}'': Kube.params.controller_scheme + ''://'' + (IPv4.test(internalIP) ? internalIP : ''['' + internalIP + '']'') + '':'' + Kube.params.controller_port + ''/metrics'', ''{#KUBE.SCHEDULER.SERVER.URL}'': Kube.params.scheduler_scheme + ''://'' + (IPv4.test(internalIP) ? internalIP : ''['' + internalIP + '']'') + '':'' + Kube.params.scheduler_port + ''/metrics'', ''{#COMPONENT.API}'': ''API'', ''{#COMPONENT.CONTROLLER}'': ''Controller manager'', ''{#COMPONENT.SCHEDULER}'': ''Scheduler'', ''{#CLUSTER_HOSTNAME}'': hostname[1] }; }); return JSON.stringify(controlPlaneNodes); } }; try { Kube.setParams(JSON.parse(value)); return Kube.getNodes(); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ Kubernetes ] ERROR: '' + error); return JSON.stringify({ error: error }); }','','0','','','','','0',NULL,'Generation of data for Control plane discovery rules.','0','30d','0','',NULL,'10s','','','','200','1','0','','','0','0','0','0','0','0','0','e40b126a0cf64ce6bfed3b3de1d4dfa8','0','2','0'), ('40012','19','','10510','Get livez','kube.livez','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'10s','{$KUBE.API.URL}{$KUBE.API.LIVEZ.ENDPOINT}?verbose','','','200, 403','1','0','','Authorization: Bearer {$KUBE.API.TOKEN}','0','0','0','0','0','0','0','d731fb05f0284921ab3548ba631f019c','0','2','0'), ('40013','19','','10510','Get readyz','kube.readyz','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'10s','{$KUBE.API.URL}{$KUBE.API.READYZ.ENDPOINT}?verbose','','','200, 403','1','0','','Authorization: Bearer {$KUBE.API.TOKEN}','0','0','0','0','0','0','0','3a5eaef4e8134dfb9f2935f98a8b88f7','0','2','0'), ('40014','21','','10510','Get state metrics','kube.state.metrics','1m','0','0','0','4','','','','',NULL,NULL,E'var Kube = { params: {}, setParams: function (params) { [''api_url'', ''api_token'', ''state_endpoint_name''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } }); Kube.params = params; if (typeof Kube.params.api_url === ''string'' && !Kube.params.api_url.endsWith(''/'')) { Kube.params.api_url += ''/''; } }, apiRequest: function (query) { var request = new HttpRequest(), response, url = encodeURI(Kube.params.api_url + query); if (typeof Kube.params.http_proxy !== ''undefined'' && Kube.params.http_proxy !== '''') { request.setProxy(Kube.params.http_proxy); } request.addHeader(''Content-Type: application/json''); request.addHeader(''Authorization: Bearer '' + Kube.params.api_token); Zabbix.log(4, ''[ Kubernetes ] Sending request: '' + url); if (Kube.params.http_proxy) { Zabbix.log(4, ''[ Kubernetes ] Using http proxy: '' + Kube.params.http_proxy); } response = request.get(url); Zabbix.log(4, ''[ Kubernetes ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from Kubernetes API. Check debug log for more information.''; } return response; }, getEndpoint: function (ep) { if (typeof ep.subsets[0].addresses !== ''undefined'') { var scheme, addr, port; ep.subsets.forEach(function (subset) { var lp = subset.ports.filter(function (port) { if (port.name !== ''http'' && port.name !== ''https'' && port.name !== ''https-main'') { return false; } scheme = port.name.match(/https?/); return true; }) if (lp.length) { port = lp[0].port addr = subset.addresses[0].ip } }) return { scheme: scheme || ''http'', address: addr || ep.subsets[0].addresses[0].ip, port: port || 8080 } } }, getMetricsEndpoint: function () { var result = Kube.apiRequest(''api/v1/endpoints''), endpoint = []; if (typeof result !== ''object'' || typeof result.items === ''undefined'') { throw ''Cannot get endpoints from Kubernetes API. Check debug log for more information.''; }; result.items.forEach(function (ep) { if (ep.metadata.name === Kube.params.state_endpoint_name && Array.isArray(ep.subsets)) { endpoint.push(Kube.getEndpoint(ep)); } if (typeof Kube.params.openshift_endpoint_name !== ''undefined'' && Kube.params.openshift_endpoint_name !== '''' && ep.metadata.name === Kube.params.openshift_endpoint_name && Array.isArray(ep.subsets)) { endpoint.push(Kube.getEndpoint(ep)); } }); if (endpoint.length === 0) { throw ''Cannot get state metrics endpoints from Kubernetes API. Check debug log for more information.''; } return endpoint; }, getStateMetrics: function () { var metrics_endpoint = Kube.getMetricsEndpoint(), IPv4 = /(?:\\d{1,3}\\.){3}\\d{1,3}/, result = '''', request = new HttpRequest(); request.addHeader(''Content-Type: application/json''); request.addHeader(''Authorization: Bearer '' + Kube.params.api_token); if (typeof Kube.params.http_proxy !== ''undefined'' && Kube.params.http_proxy !== '''') { request.setProxy(Kube.params.http_proxy); Zabbix.log(4, ''[ Kubernetes ] Using http proxy: '' + Kube.params.http_proxy); } metrics_endpoint.forEach(function (endpoint) { var url = endpoint.scheme + ''://'' + (IPv4.test(endpoint.address) ? endpoint.address : ''['' + endpoint.address + '']'') + '':'' + endpoint.port + ''/metrics''; Zabbix.log(4, ''[ Kubernetes ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ Kubernetes ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } if (response === null) { throw ''Failed to get state metrics. Check debug log for more information.''; } result += response + ''\\n''; } ); return result; } }; try { Kube.setParams(JSON.parse(value)); var stateMetrics = Kube.getStateMetrics(); return stateMetrics; } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ Kubernetes ] ERROR: '' + error); return JSON.stringify({ error: error }); }','','0','','','','','0',NULL,'Collecting Kubernetes metrics from kube-state-metrics.','0','30d','0','',NULL,'10s','','','','200','1','0','','','0','0','0','0','0','0','0','66e69f9970ce478f8f0ff13f26b248e3','0','2','0'), ('40015','21','','10510','Node LLD','kube.node.lld','1m','0','0','0','4','','','','',NULL,NULL,E'var Kube = { params: {}, setParams: function (params) { [''api_url'', ''api_token'', ''kubelet_scheme'', ''kubelet_port''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } }); [''node_filter_labels'', ''node_filter_annotations''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'') { throw ''Parameter can be empty but not removed: "'' + field + ''".''; } }); Kube.params = params; if (typeof Kube.params.api_url === ''string'' && !Kube.params.api_url.endsWith(''/'')) { Kube.params.api_url += ''/''; } }, apiRequest: function (query) { var request = new HttpRequest(), response, url = encodeURI(Kube.params.api_url + query); if (typeof Kube.params.http_proxy !== ''undefined'' && Kube.params.http_proxy !== '''') { request.setProxy(Kube.params.http_proxy); } request.addHeader(''Content-Type: application/json''); request.addHeader(''Authorization: Bearer '' + Kube.params.api_token); Zabbix.log(4, ''[ Kubernetes ] Sending request: '' + url); if (Kube.params.http_proxy) { Zabbix.log(4, ''[ Kubernetes ] Using http proxy: '' + Kube.params.http_proxy); } response = request.get(url); Zabbix.log(4, ''[ Kubernetes ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from Kubernetes API. Check debug log for more information.''; } return response; }, parseFilters: function (csv) { if (!csv) return []; var filters = []; const filterCapture = /([!\\w\\-\\.\\/]+)\\s*:\\s*(.*)/; const onComma = /\\s*,\\s*/; csv.split(onComma).forEach(function (kv) { var match = kv.match(filterCapture); if (!match) { Zabbix.log(3, ''Cannot parse filter from: "'' + kv + ''"''); return; } filters.push({ key: match[1], expression: match[2] }); }); return filters; }, filter: function (name, data, filters) { if (typeof data !== ''object'') { return true; } return filters.every(function (filter) { const filter_key = filter.key.startsWith(''!'') ? filter.key.substring(1) : filter.key; if (!(filter_key in data)) { return true; } const isExcludingFilter = filter.key.startsWith(''!''); const isMatchForFilter = new RegExp(filter.expression).test(data[filter_key]); if ((isExcludingFilter && isMatchForFilter) || (!isExcludingFilter && !isMatchForFilter)) { Zabbix.log(4, ''[ Kubernetes ] Discarded "'' + name + ''" by filter "'' + filter.key + '': '' + filter.expression + ''"''); return false; } return true; }); }, getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getNodes: function () { var result = Kube.apiRequest(''api/v1/nodes''); if (typeof result !== ''object'' || typeof result.items === ''undefined'') { throw ''Cannot get nodes from Kubernetes API. Check debug log for more information.''; }; var nodes = result.items, IPv4 = /(?:\\d{1,3}\\.){3}\\d{1,3}/, kubeNodes = [], hostname = Kube.params.api_url.match(/https?:\\/\\/([\\w.-]+|\\[[a-f0-9:]+\\]|[^a-zA-Z:]+)(?::\\d+)?/), filterNodeLabels = Kube.parseFilters(Kube.params.node_filter_labels), filterNodeAnnotations = Kube.parseFilters(Kube.params.node_filter_annotations); if (typeof hostname[1] === ''undefined'') { Zabbix.log(4, ''[ Kubernetes ] Received incorrect Kubernetes API url: '' + api_url + ''. Expected format: ://:''); throw ''Cannot get hostname from Kubernetes API url. Check debug log for more information.''; }; kubeNodes = nodes.map(function (node) { if (Kube.filter(Kube.getField(node, ''metadata.name''), Kube.getField(node, ''metadata.labels''), filterNodeLabels) && Kube.filter(Kube.getField(node, ''metadata.name''), Kube.getField(node, ''metadata.annotations''), filterNodeAnnotations)) { Zabbix.log(4, ''[ Kubernetes ] Filtered node "'' + node.metadata.name + ''"''); var internalIPs = Kube.getField(node, ''status.addresses'').filter(function (addr) { return addr.type === ''InternalIP''; }); var internalIP = internalIPs.length && internalIPs[0].address; return { ''{#NAME}'': node.metadata.name, ''{#IP}'': internalIP, ''{#KUBE.KUBELET.URL}'': Kube.params.kubelet_scheme + ''://'' + (IPv4.test(internalIP) ? internalIP : ''['' + internalIP + '']'') + '':'' + Kube.params.kubelet_port, ''{#COMPONENT}'': ''Kubelet'', ''{#CLUSTER_HOSTNAME}'': hostname[1] }; } }); return JSON.stringify(kubeNodes); }, }; try { Kube.setParams(JSON.parse(value)); return Kube.getNodes(); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ Kubernetes ] ERROR: '' + error); return JSON.stringify({ error: error }); }','','0','','','','','0',NULL,'Generation of data for Kubelet discovery rules.','0','30d','0','',NULL,'10s','','','','200','1','0','','','0','0','0','0','0','0','0','aae78585c668466da5d0ab8d8b899828','0','2','0'), ('40128','20','get[1.3.6.1.4.1.12325.1.200.1.1.1.0]','10515','Packet filter running status','pfsense.pf.status','1m','31d','365d','0','3','','','','',NULL,'575','','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB True if packet filter is currently enabled.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','600896282920468baf2e47ab75ee9b31','0','2','0'), ('40129','20','get[1.3.6.1.4.1.12325.1.200.1.11.1.0]','10515','Firewall rules count','pfsense.rules.count','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB The number of labeled filter rules on this system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6d0cf4a1a284453991e12daf921fed9a','0','2','0'), ('40130','20','get[1.3.6.1.4.1.12325.1.200.1.4.1.0]','10515','Source tracking table current','pfsense.source.tracking.table.count','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB Number of entries in the source tracking table.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c13b50c508e04851baf09c1c865241fc','0','2','0'), ('40131','20','get[1.3.6.1.4.1.12325.1.200.1.5.2.0]','10515','Source tracking table limit','pfsense.source.tracking.table.limit','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB Maximum number of ''sticky-address'' or ''source-track'' rules in the ruleset.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','58e12f73fd4243a89d62bbdc7e307cf9','0','2','0'), ('40132','15','','10515','Source tracking table utilization in %','pfsense.source.tracking.table.pused','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//pfsense.source.tracking.table.count) * 100 / last(//pfsense.source.tracking.table.limit)','','0','','','','','0',NULL,'Utilization of source tracking table in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8fb3a344b39241bbb3bf78092fa17ec8','0','2','0'), ('40133','20','get[1.3.6.1.4.1.12325.1.200.1.3.1.0]','10515','States table current','pfsense.state.table.count','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB Number of entries in the state table.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f0eab94d244b46c29363b630850ed709','0','2','0'), ('40134','20','get[1.3.6.1.4.1.12325.1.200.1.5.1.0]','10515','States table limit','pfsense.state.table.limit','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB Maximum number of ''keep state'' rules in the ruleset.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8500a1db240b48d7bca514371a89c641','0','2','0'), ('40135','15','','10515','States table utilization in %','pfsense.state.table.pused','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//pfsense.state.table.count) * 100 / last(//pfsense.state.table.limit)','','0','','','','','0',NULL,'Utilization of state table in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5e96cadaafca4e51ad62dba4fec5220a','0','2','0'), ('40136','5','','10515','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'576','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','585c88310a704e119aa5fc7f7f9c3804','0','2','0'), ('40181','5','','10048','Version','zabbix[version]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The version of Zabbix proxy.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4d38d6d107714c96ae2ed2af44fddb60','0','2','0'), ('40182','5','','10048','Values waiting to be sent','zabbix[proxy_history]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of values in the proxy history table waiting to be sent to the server.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3b66d42ec1fa4dc7a41750aacf6e68f3','0','2','0'), ('40183','5','','10048','Required VPS','zabbix[requiredperformance]','1m','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The required performance of a proxy (the number of values that need to be collected per second).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ef820395239d4a108980fe53017a89fc','0','2','0'), ('40184','5','','10048','Uptime','zabbix[uptime]','1m','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'Uptime of the Zabbix proxy process in seconds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ef920914bc00432ea4d4007d09e081df','0','2','0'), ('40478','3','','10207','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'581','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','832b1a2e21904591bc42d5cda9f3df14','0','2','0'), ('40479','20','get[1.3.6.1.2.1.1.2.0]','10207','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f0df5a577f5c46689578302df065a3d6','0','2','0'), ('40480','20','get[1.3.6.1.2.1.1.3.0]','10207','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e80e3dfbf1a447be87f1b6853c66555b','0','2','0'), ('40481','20','get[1.3.6.1.2.1.1.5.0]','10207','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0b1d37d4950d40c79433f47dea9677d4','0','2','0'), ('40482','3','','10207','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','959946f1885c4e7fbde7ab7200c60858','0','2','0'), ('40483','20','get[1.3.6.1.2.1.1.6.0]','10207','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','597b68e7ddb8482280122de489424041','0','2','0'), ('40484','20','get[1.3.6.1.2.1.1.1.0]','10207','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','757c85110dc34eb88265832aba8e7fbf','0','2','0'), ('40485','20','get[1.3.6.1.2.1.1.4.0]','10207','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0471357a58ff437e835e02175d6e6ca1','0','2','0'), ('40486','17','','10207','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8f5bdb3fde9142a9892db396c040f8dd','0','2','0'), ('40487','3','','10207','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7f858a8bc36746be89b2e36608cbb643','0','2','0'), ('40488','5','','10207','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'582','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cbcc156906774a109dd3d0cf09c512e9','0','2','0'), ('40489','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10207','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0caa510db5f54ee5a57c9a40c9d20140','0','2','0'), ('40490','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2]','10207','EtherLike-MIB Discovery','net.if.duplex.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','078d4ad71e014260aa173288492e7f5d','0','2','0'), ('40491','20','get[1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}]','10207','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cc997c10a3a94fb183bc793367d8da43','0','2','0'), ('40492','20','get[1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}]','10207','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ddabc629599f43f494b67225ccaef4cd','0','2','0'), ('40493','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10207','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cc041e8f15eb48c098871bfa91c9edef','0','2','0'), ('40494','20','get[1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}]','10207','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','abdd315e75154954a8d8323a35d42029','0','2','0'), ('40495','20','get[1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}]','10207','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','91b4d7e0133049049efa24835e00b061','0','2','0'), ('40496','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10207','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','be432b00cdc044c0a1190e31aecc2b2c','0','2','0'), ('40497','20','get[1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}]','10207','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n'' then the speed of the interface is somewhere in the range of `n-500,000'' to`n+499,999''. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','67971f7787444822b9ee370a3cc2d3ec','0','2','0'), ('40498','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10207','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'579','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','92ac574cd0354d9fa886cfcf0f2f048d','0','2','0'), ('40499','20','get[1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}]','10207','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','31d','0','0','3','','','','',NULL,'580','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','201dd2baef0647f58fbcec0205cce318','0','2','0'), ('40500','20','get[1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX}]','10207','Interface {#IFNAME}({#IFALIAS}): Duplex status','net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'578','','','0','','','','','2',NULL,'MIB: EtherLike-MIB The current mode of operation of the MAC entity. ''unknown'' indicates that the current duplex mode could not be determined. Management control of the duplex mode is accomplished through the MAU MIB. When an interface does not support autonegotiation, or when autonegotiation is not enabled, the duplex mode is controlled using ifMauDefaultType. When autonegotiation is supported and enabled, duplex mode is controlled using ifMauAutoNegAdvertisedBits. In either case, the currently operating duplex mode is reflected both in this object and in ifMauType. Note that this object provides redundant information with ifMauType. Normally, redundant objects are discouraged. However, in this instance, it allows a management application to determine the duplex status of an interface without having to know every possible value of ifMauType. This was felt to be sufficiently valuable to justify the redundancy. Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f4d62611a75244c29766118b8856d976','0','2','0'), ('40501','3','','10254','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'586','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ace97814969841e9a3e2d8ac6b83aae7','0','2','0'), ('40502','3','','10254','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','643a2c6f8d724bd392dd97bada7d24c2','0','2','0'), ('40503','3','','10254','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e731e59672be40fa8ae7aced60ed3efc','0','2','0'), ('40504','17','','10254','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e2d2516fb77f4e4faf13a69705d6af77','0','2','0'), ('40505','20','get[1.3.6.1.2.1.1.4.0]','10254','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','48446cefda57477eb19dfc6db23a5ee1','0','2','0'), ('40506','20','discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2]','10254','CPU utilization','system.cpu.util','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that processors was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fde390cc8671441194fb274209a8c190','0','2','0'), ('40507','20','get[1.3.6.1.2.1.1.1.0]','10254','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','861f3aef96e64cf0a68e0fc81693f118','0','2','0'), ('40508','20','get[1.3.6.1.2.1.1.6.0]','10254','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','55418095abea4f109476530af23e2829','0','2','0'), ('40509','20','get[1.3.6.1.2.1.1.5.0]','10254','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d4538fc49f554fb6a1514cd9487a7291','0','2','0'), ('40510','20','get[1.3.6.1.2.1.1.2.0]','10254','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8f2e8b5fa0464e4d964253f361d1e033','0','2','0'), ('40511','20','get[1.3.6.1.2.1.1.3.0]','10254','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ed9ad1ae7fba4073bb80307dbd6849cd','0','2','0'), ('40512','5','','10254','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'587','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f57ed8cec3144effa6ffb2a4f604ab0b','0','2','0'), ('40513','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10254','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9b75135925654cedbd5a270b67e68d51','0','2','0'), ('40514','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2]','10254','EtherLike-MIB Discovery','net.if.duplex.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4906974da5ab45cd9f7996d6d295165a','0','2','0'), ('40515','20','discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4]','10254','Storage discovery','vfs.fs.discovery[snmp]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','77e7bb250b714e8ea3fff7ec1f3ac2c3','0','2','0'), ('40516','20','discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4]','10254','Memory discovery','vm.memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with memory filter','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','58bc77f12c17410bbba1cefb5e5fac3d','0','2','0'), ('40517','20','get[1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}]','10254','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5be3410cbb6e4c439198aa8f532c7d4f','0','2','0'), ('40518','20','get[1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}]','10254','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','32217efa18d74fef8d467eb1ffdffe77','0','2','0'), ('40519','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10254','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bb496495e10d4ba9b4e111df5f4c212c','0','2','0'), ('40520','20','get[1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}]','10254','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','84763d17b876499d9a7a67f93b21a2a7','0','2','0'), ('40521','20','get[1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}]','10254','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','825e8d8d1528498ba11caa0152daa3f9','0','2','0'), ('40522','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10254','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9f54178529434f248bbba6eed46df8ac','0','2','0'), ('40523','20','get[1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}]','10254','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n'' then the speed of the interface is somewhere in the range of `n-500,000'' to`n+499,999''. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','77a0e72b17bf4f04a813b224fba88156','0','2','0'), ('40524','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10254','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'584','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','57006254d61a411296021ee32924cce7','0','2','0'), ('40525','20','get[1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}]','10254','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','31d','0','0','3','','','','',NULL,'585','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9ccd7ecb83bf4ff387b8541d807e6a69','0','2','0'), ('40526','20','get[1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX}]','10254','Interface {#IFNAME}({#IFALIAS}): Duplex status','net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'583','','','0','','','','','2',NULL,'MIB: EtherLike-MIB The current mode of operation of the MAC entity. ''unknown'' indicates that the current duplex mode could not be determined. Management control of the duplex mode is accomplished through the MAU MIB. When an interface does not support autonegotiation, or when autonegotiation is not enabled, the duplex mode is controlled using ifMauDefaultType. When autonegotiation is supported and enabled, duplex mode is controlled using ifMauAutoNegAdvertisedBits. In either case, the currently operating duplex mode is reflected both in this object and in ifMauType. Note that this object provides redundant information with ifMauType. Normally, redundant objects are discouraged. However, in this instance, it allows a management application to determine the duplex status of an interface without having to know every possible value of ifMauType. This was felt to be sufficiently valuable to justify the redundancy. Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','065e407dcf1248d2827d0b199b271921','0','2','0'), ('40527','15','','10254','{#FSNAME}: Space utilization','vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vfs.fs.used[hrStorageUsed.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The space utilization expressed in % for {#FSNAME}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','676989796c6847ecb76732acce13126a','0','2','0'), ('40528','20','get[1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}]','10254','{#FSNAME}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','22bf8f2fc376489a9b3f65414fb10f47','0','2','0'), ('40529','20','get[1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}]','10254','{#FSNAME}: Used space','vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','967fce12f9b34723a5984d2f4c2a74f3','0','2','0'), ('40530','20','get[1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}]','10254','{#MEMNAME}: Total memory','vm.memory.total[hrStorageSize.{#SNMPINDEX}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','321107495a2d4f4cb2b9aea7bd62a238','0','2','0'), ('40531','20','get[1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}]','10254','{#MEMNAME}: Used memory','vm.memory.used[hrStorageUsed.{#SNMPINDEX}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','520fa8a8954e4992ba18d6d2c1f18259','0','2','0'), ('40532','15','','10254','{#MEMNAME}: Memory utilization','vm.memory.util[memoryUsedPercentage.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[hrStorageUsed.{#SNMPINDEX}])/last(//vm.memory.total[hrStorageSize.{#SNMPINDEX}])*100','','0','','','','','2',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d85df76fd2b7409c84f77459bf037f0e','0','2','0'), ('40533','3','','10208','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'590','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','79adbe7d5d8f4dd6a172bfc3e2d8b23d','0','2','0'), ('40534','3','','10208','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4ae37446cb1e4a2d95f55a41dd295bdf','0','2','0'), ('40535','3','','10208','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4c8f61f10759487087d5942756f478b2','0','2','0'), ('40536','17','','10208','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c7e6790a311c4b4582093cd28341306a','0','2','0'), ('40537','20','get[1.3.6.1.2.1.1.4.0]','10208','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','62ae879ca6ab46aebc8655534acbba06','0','2','0'), ('40538','20','get[1.3.6.1.2.1.1.1.0]','10208','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8340ccd92ba940b497375aba810394a4','0','2','0'), ('40539','20','get[1.3.6.1.2.1.1.6.0]','10208','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','88c5304ddeca47779b76d9806b1edc68','0','2','0'), ('40540','20','get[1.3.6.1.2.1.1.5.0]','10208','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d8d912cb5c924f6587c83f08aa0c8ae1','0','2','0'), ('40541','20','get[1.3.6.1.2.1.1.2.0]','10208','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','939c63320b8e4199b87cc4759011da3c','0','2','0'), ('40542','20','get[1.3.6.1.2.1.1.3.0]','10208','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','237a5614cb634773853f6d5f42096773','0','2','0'), ('40543','5','','10208','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'591','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','00b66dbea9464b55bbab004e0eb57c7b','0','2','0'), ('40544','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10208','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','58ece372fefb4881ace97a40c5fb09c2','0','2','0'), ('40545','20','get[1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}]','10208','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a780105f84584ba48acef58f573b5728','0','2','0'), ('40546','20','get[1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}]','10208','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','04b7026dd1704074b9a18e154d10ef7f','0','2','0'), ('40547','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10208','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','efe5a3957efd4d989809db22ad9cff9d','0','2','0'), ('40548','20','get[1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}]','10208','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a087793253314286a0bfab36a27898bd','0','2','0'), ('40549','20','get[1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}]','10208','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','67d8b40449a24ad28e31ef0363d8b76d','0','2','0'), ('40550','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10208','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3c557f4086bc455eb6185878e50b72d9','0','2','0'), ('40551','20','get[1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}]','10208','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n'' then the speed of the interface is somewhere in the range of `n-500,000'' to`n+499,999''. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','de0920aa56b740ab89118016cdacbc5e','0','2','0'), ('40552','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10208','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'588','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1e9a9d3ea4d24922b8c4b7acc20a3c4f','0','2','0'), ('40553','20','get[1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}]','10208','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','31d','0','0','3','','','','',NULL,'589','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','391fe664d0e44ed99b2b966c647e1e55','0','2','0'), ('40554','3','','10210','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'594','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b77f1a0ffd4c4b6d870eda4b573b4d13','0','2','0'), ('40555','3','','10210','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6e20f516917f40bca4a53ed015e065d2','0','2','0'), ('40556','3','','10210','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c2888004f9e84640a088f891f8b0703d','0','2','0'), ('40557','17','','10210','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2d0b064b0fd74361ac1c32cdea2c1123','0','2','0'), ('40558','20','get[1.3.6.1.2.1.1.4.0]','10210','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d0561cc5be67434088c1e591a577d7e3','0','2','0'), ('40559','20','get[1.3.6.1.4.1.1991.1.1.2.1.52.0]','10210','CPU utilization','system.cpu.util[snAgGblCpuUtil1MinAvg.0]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FOUNDRY-SN-AGENT-MIB The statistics collection of 1 minute CPU utilization.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2083ecbada4344b4b26dba0145694d7e','0','2','0'), ('40560','20','get[1.3.6.1.2.1.1.1.0]','10210','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9f49220f80c04e2e98ecf3ec5fa53c2e','0','2','0'), ('40561','20','get[1.3.6.1.2.1.1.6.0]','10210','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3accd01dca984406990051338ce3f269','0','2','0'), ('40562','20','get[1.3.6.1.2.1.1.5.0]','10210','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0d27ffcf928949188fbe1994b6b4dcbb','0','2','0'), ('40563','20','get[1.3.6.1.2.1.1.2.0]','10210','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','702517f6c1024b3c8860a63c9cd57367','0','2','0'), ('40564','20','get[1.3.6.1.2.1.1.3.0]','10210','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3a534079085747b0916da05afdfafba0','0','2','0'), ('40565','20','get[1.3.6.1.4.1.1991.1.1.2.1.53.0]','10210','Memory utilization','vm.memory.util[snAgGblDynMemUtil.0]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FOUNDRY-SN-AGENT-MIB The system dynamic memory utilization, in unit of percentage. Deprecated: Refer to snAgSystemDRAMUtil. For NI platforms, refer to snAgentBrdMemoryUtil100thPercent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1e1b82a4271d4e159315e74547bea34e','0','2','0'), ('40566','5','','10210','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'595','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b782df60263e4302b83f66e920ac217f','0','2','0'), ('40567','3','','10211','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'598','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','df3428a8cf5a449e9ffec28d846a3062','0','2','0'), ('40568','3','','10211','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3e97bfa40e1547b5be3f72f9675dfc62','0','2','0'), ('40569','3','','10211','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','79ca1e3ac22742d28e08c722dad1e254','0','2','0'), ('40570','17','','10211','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','584f0625be1c40e69294dce25fc9ead6','0','2','0'), ('40571','20','get[1.3.6.1.2.1.1.4.0]','10211','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b973c42ae6da4707893b21f20d09ecd3','0','2','0'), ('40572','20','get[1.3.6.1.4.1.1991.1.1.2.1.52.0]','10211','CPU utilization','system.cpu.util[snAgGblCpuUtil1MinAvg.0]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FOUNDRY-SN-AGENT-MIB The statistics collection of 1 minute CPU utilization.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bfb60806299f4388bb5bfafd2c0329be','0','2','0'), ('40573','20','get[1.3.6.1.2.1.1.1.0]','10211','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','11f6230e5f2945aab338c958f38ce9d3','0','2','0'), ('40574','20','get[1.3.6.1.2.1.1.6.0]','10211','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','99be144849104b3cad296b2f21355e93','0','2','0'), ('40575','20','get[1.3.6.1.2.1.1.5.0]','10211','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7af427adf5ad451894ae1e6af72c1890','0','2','0'), ('40576','20','get[1.3.6.1.2.1.1.2.0]','10211','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','886dd0ed732c49118f012a402b4a5f45','0','2','0'), ('40577','20','get[1.3.6.1.2.1.1.3.0]','10211','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c32cf75496ce40e5b3d06a049fa3205d','0','2','0'), ('40578','20','get[1.3.6.1.4.1.1991.1.1.2.1.53.0]','10211','Memory utilization','vm.memory.util[snAgGblDynMemUtil.0]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FOUNDRY-SN-AGENT-MIB The system dynamic memory utilization, in unit of percentage. Deprecated: Refer to snAgSystemDRAMUtil. For NI platforms, refer to snAgentBrdMemoryUtil100thPercent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','631268898edf40908c9d1dd75ed4eef8','0','2','0'), ('40579','5','','10211','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'599','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a25878004da548e9824321fe0f55955e','0','2','0'), ('40580','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10210','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1b7d06dba8fb4869812e95417c05ec25','0','2','0'), ('40581','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10211','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3a38811553e5456f9d3cc842c5bd3809','0','2','0'), ('40582','20','get[1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}]','10210','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c01ebcc6ef2a4af3bc1a541a8e7ea348','0','2','0'), ('40583','20','get[1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}]','10210','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','de91b80675624e889349e90fef603e9f','0','2','0'), ('40584','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10210','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2b169ba2d5a44d85ae78b32261cd6852','0','2','0'), ('40585','20','get[1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}]','10210','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','eb286f99f6f1495bbff1f888dfdbfad6','0','2','0'), ('40586','20','get[1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}]','10210','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1e16a6f28fe3455b9c37c8d842102ace','0','2','0'), ('40587','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10210','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','24fb27f79bfc4cde8081ffe55cf945c5','0','2','0'), ('40588','20','get[1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}]','10210','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n'' then the speed of the interface is somewhere in the range of `n-500,000'' to`n+499,999''. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2cff6fcf8aaa486aa0b7d26d71a928f1','0','2','0'), ('40589','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10210','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'592','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','23402859e08647d8bdb39ca8f39daf3b','0','2','0'), ('40590','20','get[1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}]','10210','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','31d','0','0','3','','','','',NULL,'593','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9657eee8f64d4bbe934cfb03f047caa7','0','2','0'), ('40591','20','get[1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}]','10211','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d8691667a3b641b68de53ad50928216e','0','2','0'), ('40592','20','get[1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}]','10211','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c73aaba921794ec3bd0b8783047dca07','0','2','0'), ('40593','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10211','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3cc7e079ba25461c887fc976664311ba','0','2','0'), ('40594','20','get[1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}]','10211','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d310f098ff6f4704b974028707c0350b','0','2','0'), ('40595','20','get[1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}]','10211','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3628163a8ecc43e98b81b91e9f6b51a0','0','2','0'), ('40596','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10211','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','05eab5a457df403d89e76f7fc20689e4','0','2','0'), ('40597','20','get[1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}]','10211','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n'' then the speed of the interface is somewhere in the range of `n-500,000'' to`n+499,999''. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','65b44b69e0524cec94c36469987e2fec','0','2','0'), ('40598','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10211','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'596','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cdba234cfd6f475d8a67528a677b79a0','0','2','0'), ('40599','20','get[1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}]','10211','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','31d','0','0','3','','','','',NULL,'597','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4c8df33c9eb748bd90ea7053c5aa11ce','0','2','0'), ('40600','3','','10220','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'601','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bf6d81068770410a929c127d8e7d76c1','0','2','0'), ('40601','3','','10220','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2af7b5f79fc44d7d992b0bf6277c12bb','0','2','0'), ('40602','3','','10220','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1afa1e8ca21c430598845806bbf0e7a2','0','2','0'), ('40603','17','','10220','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','53eb0288c9e54490942cedd4ce5f376e','0','2','0'), ('40604','20','get[1.3.6.1.2.1.1.4.0]','10220','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bba5be8b3fa54bfbb354b7a2c20fd353','0','2','0'), ('40605','20','get[1.3.6.1.4.1.9.2.1.58]','10220','CPU utilization','system.cpu.util[avgBusy5]','5m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: OLD-CISCO-CPU-MIB 5 minute exponentially-decayed moving average of the CPU busy percentage. Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','693b0c779f574d869f47b44c4b3ecd58','0','2','0'), ('40606','20','get[1.3.6.1.2.1.1.1.0]','10220','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','495b26e876a04819a02cf22eaba04e0b','0','2','0'), ('40607','20','get[1.3.6.1.2.1.47.1.1.1.1.13.1]','10220','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b5121a382d0245f0906bba4530a82ac4','0','2','0'), ('40608','20','get[1.3.6.1.2.1.47.1.1.1.1.11.1]','10220','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5934a35b54464f66ab19152ca393b882','0','2','0'), ('40609','20','get[1.3.6.1.2.1.1.6.0]','10220','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','30df666e80bd4875ac761306781061da','0','2','0'), ('40610','20','get[1.3.6.1.2.1.1.5.0]','10220','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2e55e75a7baa4195b012e750bac90dcb','0','2','0'), ('40611','20','get[1.3.6.1.2.1.1.2.0]','10220','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cc6e5a6e4f604b639815d9397264c6af','0','2','0'), ('40612','20','get[1.3.6.1.2.1.1.1.0]','10220','Operating system','system.sw.os[sysDescr.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','70ef7ce7561640b7bc6b5d30235c0ecc','0','2','0'), ('40613','20','get[1.3.6.1.2.1.1.3.0]','10220','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7ecd28b73c0f43a98c3a58467b1cbdc7','0','2','0'), ('40614','5','','10220','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'602','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5a156e9ca10c49bbb87cf3de1b686cff','0','2','0'), ('40615','3','','10218','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'607','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f0a3f0b82e32488aa22929fe035825cb','0','2','0'), ('40616','3','','10218','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0c081f94e6094ad29e1fbc2a3424bedb','0','2','0'), ('40617','3','','10218','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dab9ef1df04d403faa4910bf51559035','0','2','0'), ('40618','17','','10218','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8684622dc8d446f0b17ba7687d47b09d','0','2','0'), ('40619','20','get[1.3.6.1.2.1.1.4.0]','10218','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','622767f4dbab49039c63990e4fc58eaa','0','2','0'), ('40620','20','get[1.3.6.1.2.1.1.1.0]','10218','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ae8e0ecf937c4a9492fe67cc5cd07d6f','0','2','0'), ('40621','20','get[1.3.6.1.2.1.47.1.1.1.1.13.1]','10218','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a8062a554b8d447f81f7b9ef3229c7e9','0','2','0'), ('40622','20','get[1.3.6.1.2.1.47.1.1.1.1.11.1]','10218','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','223fd2fe9699419c824ae310f1c8a631','0','2','0'), ('40623','20','get[1.3.6.1.2.1.1.6.0]','10218','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','361ca9979352405a9dfb9bc13e542a2f','0','2','0'), ('40624','20','get[1.3.6.1.2.1.1.5.0]','10218','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2ddace242ffe487a8641e035cf04dcdd','0','2','0'), ('40625','20','get[1.3.6.1.2.1.1.2.0]','10218','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','290d095f8fbc4cd1aa5ed3d304434f4b','0','2','0'), ('40626','20','get[1.3.6.1.2.1.1.1.0]','10218','Operating system','system.sw.os[sysDescr.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5fe7bc2d46a748d3ace7d1dd0de8127b','0','2','0'), ('40627','20','get[1.3.6.1.2.1.1.3.0]','10218','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fe1dbb23a8794ce9ae3f6c37e63082f8','0','2','0'), ('40628','5','','10218','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'608','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cf9bd75166704b2f93446ece0c2d0fab','0','2','0'), ('40629','3','','10253','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'612','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a94e2b40f0e14bdfb70e66127f8d946b','0','2','0'), ('40630','3','','10253','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','39baf182f6724813a951b25f6ff5aab4','0','2','0'), ('40631','3','','10253','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','85748657f67e45189256e7704c6e7a9c','0','2','0'), ('40632','17','','10253','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0f50837172ad475d9d5a27c95be19ab2','0','2','0'), ('40633','20','get[1.3.6.1.2.1.1.4.0]','10253','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','22406c415a0a4f6bbd9d44707631f42c','0','2','0'), ('40634','20','get[1.3.6.1.2.1.1.1.0]','10253','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5a37d2e4f308475c932a6bb856d0ffb4','0','2','0'), ('40635','20','get[1.3.6.1.2.1.47.1.1.1.1.13.1]','10253','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','12b69d0a3b844906a950bcedcbb8b9b8','0','2','0'), ('40636','20','get[1.3.6.1.2.1.47.1.1.1.1.11.1]','10253','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','991021da67c84f96a76154078c45f3be','0','2','0'), ('40637','20','get[1.3.6.1.2.1.1.6.0]','10253','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d8ed796e88f3478ea72d95ddcc68f9ed','0','2','0'), ('40638','20','get[1.3.6.1.2.1.1.5.0]','10253','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a26d3babf5674a5e9d9afff94518e6c6','0','2','0'), ('40639','20','get[1.3.6.1.2.1.1.2.0]','10253','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','da41d408448d4b1aa323e0046ff97598','0','2','0'), ('40640','20','get[1.3.6.1.2.1.1.1.0]','10253','Operating system','system.sw.os[sysDescr.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cf4af497970a415aa45aa66b2ba48115','0','2','0'), ('40641','20','get[1.3.6.1.2.1.1.3.0]','10253','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','182fd7bfd7b74331b9f3cf8f4a7646cb','0','2','0'), ('40642','5','','10253','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'613','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','92fa54c5c28b4244b0d22c9041064d15','0','2','0'), ('40667','15','','10220','{#SNMPVALUE}: Memory utilization','vm.memory.util[vm.memory.util.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}])/(last(//vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}])+last(//vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9a03c1b1c6ae42e5ab1886c172b2e3ac','0','2','0'), ('40676','15','','10218','{#SNMPVALUE}: Memory utilization','vm.memory.util[vm.memory.util.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}])/(last(//vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}])+last(//vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5407d019461f45b895663de105d75298','0','2','0'), ('40695','15','','10253','{#SNMPVALUE}: Memory utilization','vm.memory.util[vm.memory.util.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}])/(last(//vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}])+last(//vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fb17d61634254c108d98ea28f5c5fb54','0','2','0'), ('40708','3','','10221','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'617','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3853e6ef8cbf4e59a64422659f66bbb7','0','2','0'), ('40709','3','','10221','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ef0432ffcf0546bf82177193866861cf','0','2','0'), ('40710','3','','10221','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9b56a2a725bf4632bc28c6a5d0c3d64b','0','2','0'), ('40711','17','','10221','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ba8178338b0e41ac97b0265f98b90770','0','2','0'), ('40712','20','get[1.3.6.1.2.1.1.4.0]','10221','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d4df70f2c5f04ad2b7f1b4e8ab9a9993','0','2','0'), ('40713','20','get[1.3.6.1.2.1.1.1.0]','10221','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','804476e771374e22b8767f90f271654a','0','2','0'), ('40714','20','get[1.3.6.1.2.1.1.6.0]','10221','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f3d1970fc4404b4fa50a855433681105','0','2','0'), ('40715','20','get[1.3.6.1.2.1.1.5.0]','10221','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a36cccdaf24c4e82801ebb44eaa5e25a','0','2','0'), ('40716','20','get[1.3.6.1.2.1.1.2.0]','10221','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','651059497914431f827ad82a982e139b','0','2','0'), ('40717','20','get[1.3.6.1.2.1.1.3.0]','10221','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','26a0a117545f4b17986f0b48996fec47','0','2','0'), ('40718','5','','10221','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'618','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7ce4f98cdc6741bbb03f6e2ea03432c4','0','2','0'), ('40719','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10221','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','620805730ede4c7281a1c736fcfeb130','0','2','0'), ('40720','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2]','10221','EtherLike-MIB Discovery','net.if.duplex.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6782ece35ded46b08a4f45a9743b1ff5','0','2','0'), ('40721','20','get[1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}]','10221','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2130b9e384b14fd7909d421c7756284a','0','2','0'), ('40722','20','get[1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}]','10221','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5a61f0168e034e8baf6794cf5cc5ce70','0','2','0'), ('40723','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10221','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','19e183dbf814471e885f2fef4b84e759','0','2','0'), ('40724','20','get[1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}]','10221','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','26135962ebd246ce82b3d101e7eb92a4','0','2','0'), ('40725','20','get[1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}]','10221','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e3b1efbafa204424b0a61cf877ad168b','0','2','0'), ('40726','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10221','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6994853a31054989b1e0fc25420f88b1','0','2','0'), ('40727','20','get[1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}]','10221','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n'' then the speed of the interface is somewhere in the range of `n-500,000'' to`n+499,999''. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cd36f7b9176349d1a5b69c7eef672986','0','2','0'), ('40728','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10221','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'615','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cf571531ada84121a94e1084070560c0','0','2','0'), ('40729','20','get[1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}]','10221','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','31d','0','0','3','','','','',NULL,'616','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ec1b53ae24ff443083ab691e1826734f','0','2','0'), ('40730','20','get[1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX}]','10221','Interface {#IFNAME}({#IFALIAS}): Duplex status','net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'614','','','0','','','','','2',NULL,'MIB: EtherLike-MIB The current mode of operation of the MAC entity. ''unknown'' indicates that the current duplex mode could not be determined. Management control of the duplex mode is accomplished through the MAU MIB. When an interface does not support autonegotiation, or when autonegotiation is not enabled, the duplex mode is controlled using ifMauDefaultType. When autonegotiation is supported and enabled, duplex mode is controlled using ifMauAutoNegAdvertisedBits. In either case, the currently operating duplex mode is reflected both in this object and in ifMauType. Note that this object provides redundant information with ifMauType. Normally, redundant objects are discouraged. However, in this instance, it allows a management application to determine the duplex status of an interface without having to know every possible value of ifMauType. This was felt to be sufficiently valuable to justify the redundancy. Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','200797ecab6f416191d2ef0c836da4f5','0','2','0'), ('40731','3','','10222','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'621','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','caa6811dace14784abd7136ddfbcec8b','0','2','0'), ('40732','3','','10222','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d18c1a0dbab64f238e82025d2c27b392','0','2','0'), ('40733','3','','10222','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','117fec4f68ad4782a0b0407bc465a31b','0','2','0'), ('40734','17','','10222','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2a3acf94555d457d8837c6e75abbbf34','0','2','0'), ('40735','20','get[1.3.6.1.2.1.1.4.0]','10222','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aba1f89a56504dde9d0d6a60bafa9552','0','2','0'), ('40736','20','get[1.3.6.1.2.1.1.1.0]','10222','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','26752257ad0f4bc58f678c247524c4cc','0','2','0'), ('40737','20','get[1.3.6.1.2.1.1.6.0]','10222','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','64e931125c274e788b2f68dcb21725d8','0','2','0'), ('40738','20','get[1.3.6.1.2.1.1.5.0]','10222','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fcf0be13144245568817543cfc47c006','0','2','0'), ('40739','20','get[1.3.6.1.2.1.1.2.0]','10222','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f50184058d4549a1be9bae19c0743a84','0','2','0'), ('40740','20','get[1.3.6.1.2.1.1.3.0]','10222','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fb250daeb7e643f4b2f78ede9e26b8ec','0','2','0'), ('40741','5','','10222','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'622','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4ca2130529464dc9ba9355a915c7e539','0','2','0'), ('40742','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10222','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dfac422a3258458da066517e1e52588b','0','2','0'), ('40743','20','get[1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}]','10222','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7a62806cac634abcae4e62077eff9dfe','0','2','0'), ('40744','20','get[1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}]','10222','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','afc0471bfc314108b01544fac5acd62e','0','2','0'), ('40745','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10222','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ad7d24d91cb94c44849ecb6452f8015d','0','2','0'), ('40746','20','get[1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}]','10222','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','42fd86abfb7542ef98d1aa38a2b2296a','0','2','0'), ('40747','20','get[1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}]','10222','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','85c4804fcef04f8d8dc5d85c0e304144','0','2','0'), ('40748','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10222','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','663d3019261746c8893449dbc68facca','0','2','0'), ('40749','20','get[1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}]','10222','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n'' then the speed of the interface is somewhere in the range of `n-500,000'' to`n+499,999''. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aa85e35f21e2466798b15f98ac95837c','0','2','0'), ('40750','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10222','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'619','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bca43e91bec842b6b0c29b9ce55eb1a2','0','2','0'), ('40751','20','get[1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}]','10222','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','31d','0','0','3','','','','',NULL,'620','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fb1305c657c34021adbc6e260d880495','0','2','0'), ('40752','3','','10223','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'626','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','09fada9334444d18b149b2fa0e39ac76','0','2','0'), ('40753','3','','10223','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1c2d54095100404c8e03b179f5df1761','0','2','0'), ('40754','3','','10223','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3f66e84f94254655add99a1152225df7','0','2','0'), ('40755','17','','10223','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c7c836a53c134dcda931ef9dba401f35','0','2','0'), ('40756','20','get[1.3.6.1.2.1.1.4.0]','10223','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','29ee9181892b49a081299688f8c47798','0','2','0'), ('40757','20','get[1.3.6.1.2.1.1.1.0]','10223','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','188e1d65459f40a48c3bc0f444024a00','0','2','0'), ('40758','20','get[1.3.6.1.2.1.1.6.0]','10223','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','22473cfba211477ab8fbbb52c814de0d','0','2','0'), ('40759','20','get[1.3.6.1.2.1.1.5.0]','10223','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','38d68b0f6cd4445b966ead7e7301ae86','0','2','0'), ('40760','20','get[1.3.6.1.2.1.1.2.0]','10223','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5697ce18530b44f5a7e342344ecfe89a','0','2','0'), ('40761','20','get[1.3.6.1.2.1.1.3.0]','10223','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5ca0653d792d42d1aebba51b36d5cf31','0','2','0'), ('40762','5','','10223','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'627','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','459f95874d194c7da40752f0336034be','0','2','0'), ('40763','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10223','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','86c7d09fe6bc4a93b634230290bcf851','0','2','0'), ('40764','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2]','10223','EtherLike-MIB Discovery','net.if.duplex.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','eb78fe16041440cb95d98ae01d53007d','0','2','0'), ('40765','20','get[1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}]','10223','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c0ce842d655a4bbba3759c557d8fba27','0','2','0'), ('40766','20','get[1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}]','10223','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','05ac64b0b74e4e048bbf86c077f23d40','0','2','0'), ('40767','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10223','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b80ca5f6547b42cba3b873fe58448988','0','2','0'), ('40768','20','get[1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}]','10223','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b2eafe0414924c82879bf9f389e7936f','0','2','0'), ('40769','20','get[1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}]','10223','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','151f1946a56d4ce7b7fe30d2e92f97ef','0','2','0'), ('40770','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10223','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e9ff8b57e89c4dc787f35ea8dd9c3040','0','2','0'), ('40771','20','get[1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}]','10223','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n'' then the speed of the interface is somewhere in the range of `n-500,000'' to`n+499,999''. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fd5324614a554b20bead9a9300c3b800','0','2','0'), ('40772','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10223','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'624','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b3f4568fbaed497aaf2ebcbfc1a385a6','0','2','0'), ('40773','20','get[1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}]','10223','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','31d','0','0','3','','','','',NULL,'625','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2c8eadb9d69f4adb833f01bed8e18531','0','2','0'), ('40774','20','get[1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX}]','10223','Interface {#IFNAME}({#IFALIAS}): Duplex status','net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'623','','','0','','','','','2',NULL,'MIB: EtherLike-MIB The current mode of operation of the MAC entity. ''unknown'' indicates that the current duplex mode could not be determined. Management control of the duplex mode is accomplished through the MAU MIB. When an interface does not support autonegotiation, or when autonegotiation is not enabled, the duplex mode is controlled using ifMauDefaultType. When autonegotiation is supported and enabled, duplex mode is controlled using ifMauAutoNegAdvertisedBits. In either case, the currently operating duplex mode is reflected both in this object and in ifMauType. Note that this object provides redundant information with ifMauType. Normally, redundant objects are discouraged. However, in this instance, it allows a management application to determine the duplex status of an interface without having to know every possible value of ifMauType. This was felt to be sufficiently valuable to justify the redundancy. Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','986a658678e2465997ad152317f6cf34','0','2','0'), ('40775','3','','10224','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'631','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ba27dc4ef9bf4c639b224b4e4881073e','0','2','0'), ('40776','20','get[1.3.6.1.2.1.1.3.0]','10224','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','92f8e91c4d2c423984cb14440bc83328','0','2','0'), ('40777','20','get[1.3.6.1.2.1.1.2.0]','10224','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','041115a5c3f44c8c9a9e1e0c7bc7203e','0','2','0'), ('40778','20','get[1.3.6.1.2.1.1.5.0]','10224','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7345ee5a5db545a9a5bb90ab5626a2aa','0','2','0'), ('40779','20','get[1.3.6.1.2.1.1.6.0]','10224','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d8c7f5611f544299a95eedc0c80cedb5','0','2','0'), ('40780','3','','10224','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bd39116401f249008d21e4109a34c6c7','0','2','0'), ('40781','20','get[1.3.6.1.2.1.1.1.0]','10224','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e23764de0cda451d959e73ca0ea211ae','0','2','0'), ('40782','20','get[1.3.6.1.2.1.1.4.0]','10224','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aa2eb0947ea34b2bbb739d6025d914ea','0','2','0'), ('40783','17','','10224','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','da2bc25bb40642feaaff04b1cd5f85a0','0','2','0'), ('40784','3','','10224','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c59f57d99c7045b6920e26c8c1b58e52','0','2','0'), ('40785','5','','10224','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'632','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','62a022d402c24da29c1aa7cb0eb64244','0','2','0'), ('40786','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10224','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ddc38e480b404039807079963eb247f9','0','2','0'), ('40787','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2]','10224','EtherLike-MIB Discovery','net.if.duplex.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','63835abf440b4d6b879bfe0ba5cfa576','0','2','0'), ('40788','20','get[1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}]','10224','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f3a186e0c65e43139a7934a0536fe288','0','2','0'), ('40789','20','get[1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}]','10224','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','26f5e3bec06048c598d76c47b3260813','0','2','0'), ('40790','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10224','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2ec7bfa7073e471bb2f7941bff97f2fd','0','2','0'), ('40791','20','get[1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}]','10224','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4dac28ac2be748d5a2bba7bf92550c2b','0','2','0'), ('40792','20','get[1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}]','10224','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2ed84c7b80eb4c94b02c91154f1f9736','0','2','0'), ('40793','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10224','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e40f4821891c45318a732b1aae222382','0','2','0'), ('40794','20','get[1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}]','10224','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n'' then the speed of the interface is somewhere in the range of `n-500,000'' to`n+499,999''. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5014332a57b8479fa0638f275e2e0992','0','2','0'), ('40795','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10224','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'629','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','058b94a177e646829c37a96c83829aa1','0','2','0'), ('40796','20','get[1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}]','10224','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','31d','0','0','3','','','','',NULL,'630','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e6e5a562e7ce418aaecff58b4aef7b3e','0','2','0'), ('40797','20','get[1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX}]','10224','Interface {#IFNAME}({#IFALIAS}): Duplex status','net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'628','','','0','','','','','2',NULL,'MIB: EtherLike-MIB The current mode of operation of the MAC entity. ''unknown'' indicates that the current duplex mode could not be determined. Management control of the duplex mode is accomplished through the MAU MIB. When an interface does not support autonegotiation, or when autonegotiation is not enabled, the duplex mode is controlled using ifMauDefaultType. When autonegotiation is supported and enabled, duplex mode is controlled using ifMauAutoNegAdvertisedBits. In either case, the currently operating duplex mode is reflected both in this object and in ifMauType. Note that this object provides redundant information with ifMauType. Normally, redundant objects are discouraged. However, in this instance, it allows a management application to determine the duplex status of an interface without having to know every possible value of ifMauType. This was felt to be sufficiently valuable to justify the redundancy. Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b2ca0759c8b1406aa2b664d2716026b9','0','2','0'), ('40798','3','','10226','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'636','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8818ba559e364390a8f5881a9b3ab5c7','0','2','0'), ('40799','3','','10226','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','06c6f4c60f9b4db0afa2886ad70507af','0','2','0'), ('40800','3','','10226','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','29f84e5b82b748a5b08475dd45ade97a','0','2','0'), ('40801','17','','10226','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4dad4c7dc007426ebb4b36439b64a55b','0','2','0'), ('40802','20','get[1.3.6.1.2.1.1.4.0]','10226','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','300812c78b9d4aeb82940d97ccee1d9e','0','2','0'), ('40803','20','get[1.3.6.1.2.1.1.1.0]','10226','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c4996515da9e41728fb94c5134489e7b','0','2','0'), ('40804','20','get[1.3.6.1.2.1.1.6.0]','10226','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9bf103c35b284fc7ba9f7b4968006cd9','0','2','0'), ('40805','20','get[1.3.6.1.2.1.1.5.0]','10226','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','adb55c04903d4c37a9ccecc78ac877d5','0','2','0'), ('40806','20','get[1.3.6.1.2.1.1.2.0]','10226','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9d2e3e58dc4543d3b5df8ded3c2a4d90','0','2','0'), ('40807','20','get[1.3.6.1.2.1.1.3.0]','10226','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9b2549a4c09a4b0d9112aed011b03583','0','2','0'), ('40808','5','','10226','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'637','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','28e7a457abdf42c3a647642b3c4964e0','0','2','0'), ('40809','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10226','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','12e011a176284ab4807c2285768b0470','0','2','0'), ('40810','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2]','10226','EtherLike-MIB Discovery','net.if.duplex.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f6784e45dac14c91bea4ffb14d4793e9','0','2','0'), ('40811','20','get[1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}]','10226','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7f259420bb944d5397ffee61c72629d1','0','2','0'), ('40812','20','get[1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}]','10226','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bf2f604e912f4d15999a7931eea58d93','0','2','0'), ('40813','20','get[1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX}]','10226','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifInOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface,including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and another times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','34a3f71da7fb4896be8bda4b8840577d','0','2','0'), ('40814','20','get[1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}]','10226','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b7cb1f80962a46fe97ce1af186530eb3','0','2','0'), ('40815','20','get[1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}]','10226','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f51311b11b53440f9256ef01ed14ddf0','0','2','0'), ('40816','20','get[1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX}]','10226','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifOutOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2097ef34441343f291ce2bf160ba280f','0','2','0'), ('40817','20','get[1.3.6.1.2.1.2.2.1.5.{#SNMPINDEX}]','10226','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifSpeed.{#SNMPINDEX}]','5m','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in bits per second. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. If the bandwidth of the interface is greater than the maximum value reportable by this object then this object should report its maximum value (4,294,967,295) and ifHighSpeed must be used to report the interface''s speed. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5a9cd6719c794d16bb53ab5c422cc619','0','2','0'), ('40818','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10226','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'634','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6808335d9cbf44f0ba21fc6a1f146ae7','0','2','0'), ('40819','20','get[1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}]','10226','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','31d','0','0','3','','','','',NULL,'635','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','251413125851440a81acaeab7b1632d5','0','2','0'), ('40820','20','get[1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX}]','10226','Interface {#IFNAME}({#IFALIAS}): Duplex status','net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'633','','','0','','','','','2',NULL,'MIB: EtherLike-MIB The current mode of operation of the MAC entity. ''unknown'' indicates that the current duplex mode could not be determined. Management control of the duplex mode is accomplished through the MAU MIB. When an interface does not support autonegotiation, or when autonegotiation is not enabled, the duplex mode is controlled using ifMauDefaultType. When autonegotiation is supported and enabled, duplex mode is controlled using ifMauAutoNegAdvertisedBits. In either case, the currently operating duplex mode is reflected both in this object and in ifMauType. Note that this object provides redundant information with ifMauType. Normally, redundant objects are discouraged. However, in this instance, it allows a management application to determine the duplex status of an interface without having to know every possible value of ifMauType. This was felt to be sufficiently valuable to justify the redundancy. Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a61d1e3f2aec496b81e1d6769995a633','0','2','0'), ('40821','3','','10227','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'641','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fbefc108101b48e298a01037d5b3db50','0','2','0'), ('40822','3','','10227','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','49b86b6d17394b859b02ea79c6d28b30','0','2','0'), ('40823','3','','10227','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1560f8f1509040a783e4149845ce38a3','0','2','0'), ('40824','17','','10227','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fa164b01a218494dab454126b4f561a9','0','2','0'), ('40825','20','get[1.3.6.1.2.1.1.4.0]','10227','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6f340c49d4364b8096a49c3fa52e2745','0','2','0'), ('40826','20','get[1.3.6.1.2.1.1.1.0]','10227','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','85e404c0181143f28b1187acb08cfa04','0','2','0'), ('40827','20','get[1.3.6.1.2.1.1.6.0]','10227','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3e4feed03de941c98e88e17b3e81b5e4','0','2','0'), ('40828','20','get[1.3.6.1.2.1.1.5.0]','10227','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b57179ad3e5f41f5805e93ff9e68d631','0','2','0'), ('40829','20','get[1.3.6.1.2.1.1.2.0]','10227','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','72139a34e0cf4357b86a52cf8430ee8c','0','2','0'), ('40830','20','get[1.3.6.1.2.1.1.3.0]','10227','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ac039d3041cc439eb1c3184ed78554d0','0','2','0'), ('40831','5','','10227','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'642','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c407deea6e0f41b18d84ccbe7fcbca63','0','2','0'), ('40832','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10227','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ef05164a28be4a37950e7edc17dd389b','0','2','0'), ('40833','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2]','10227','EtherLike-MIB Discovery','net.if.duplex.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','21d413e388294d288edc95d98eb27980','0','2','0'), ('40834','20','get[1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}]','10227','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','22cd0f5dd18b4d68ba2695a681819c45','0','2','0'), ('40835','20','get[1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}]','10227','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','442bc76f9f4441f6b3c7ff60b9359e2b','0','2','0'), ('40836','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10227','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ac12b0e85f3b49239838c6625d62d8a9','0','2','0'), ('40837','20','get[1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}]','10227','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ed6e19e8821349f380a3c0d4fdd2f4e0','0','2','0'), ('40838','20','get[1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}]','10227','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d077353aafbb43678bed7dba795923ce','0','2','0'), ('40839','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10227','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e76bb270115240d8b0fdb17b1b010418','0','2','0'), ('40840','20','get[1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}]','10227','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n'' then the speed of the interface is somewhere in the range of `n-500,000'' to`n+499,999''. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','61b52d6ce511476a8baeaf302476e831','0','2','0'), ('40841','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10227','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'639','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4391767dc38e4f4fbc1cd2dc186beb82','0','2','0'), ('40842','20','get[1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}]','10227','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','31d','0','0','3','','','','',NULL,'640','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2733e5694b544bb98ff981b2ed8371ec','0','2','0'), ('40843','20','get[1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX}]','10227','Interface {#IFNAME}({#IFALIAS}): Duplex status','net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'638','','','0','','','','','2',NULL,'MIB: EtherLike-MIB The current mode of operation of the MAC entity. ''unknown'' indicates that the current duplex mode could not be determined. Management control of the duplex mode is accomplished through the MAU MIB. When an interface does not support autonegotiation, or when autonegotiation is not enabled, the duplex mode is controlled using ifMauDefaultType. When autonegotiation is supported and enabled, duplex mode is controlled using ifMauAutoNegAdvertisedBits. In either case, the currently operating duplex mode is reflected both in this object and in ifMauType. Note that this object provides redundant information with ifMauType. Normally, redundant objects are discouraged. However, in this instance, it allows a management application to determine the duplex status of an interface without having to know every possible value of ifMauType. This was felt to be sufficiently valuable to justify the redundancy. Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ee270fb1f0c54a5c91c581ee28c7a066','0','2','0'), ('40844','3','','10250','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'646','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','eb35864dcdc142d1a136e47fabe5f017','0','2','0'), ('40845','3','','10250','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','722e38d7a1bd433192616664cc2824f8','0','2','0'), ('40846','3','','10250','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','93f693245d3848afb6c89881cede42c1','0','2','0'), ('40847','17','','10250','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b7530ee6104342319b0cad986a3a4daf','0','2','0'), ('40848','20','get[1.3.6.1.2.1.1.4.0]','10250','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1397f0fc832e47daa39308585f260152','0','2','0'), ('40849','20','get[1.3.6.1.2.1.1.1.0]','10250','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','31211351783648bc9c727205c0273a4b','0','2','0'), ('40850','20','get[1.3.6.1.2.1.1.6.0]','10250','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ad2dc1149eb546309657928b944c49fb','0','2','0'), ('40851','20','get[1.3.6.1.2.1.1.5.0]','10250','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ba7fd7afad3f4b76bdfedc8c6c3a24ac','0','2','0'), ('40852','20','get[1.3.6.1.2.1.1.2.0]','10250','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','74fd9c1bd546497aa20b9af09b951e98','0','2','0'), ('40853','20','get[1.3.6.1.2.1.1.3.0]','10250','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','02e67b092ccf478ba13537ba6471f3fd','0','2','0'), ('40854','5','','10250','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'647','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','af855c1e75304c26b11a86c2a86f08f2','0','2','0'), ('40855','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10250','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dd018320e4b2466786840efdcd4a9fd9','0','2','0'), ('40856','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2]','10250','EtherLike-MIB Discovery','net.if.duplex.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','92a9d50fd9894af486dfcee142db1d61','0','2','0'), ('40857','20','get[1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}]','10250','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a8a1540bbbe74cb2a268ec9e9ca4ce05','0','2','0'), ('40858','20','get[1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}]','10250','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','93e0dfe819ba4e7593a55fb3e25493da','0','2','0'), ('40859','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10250','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','97b4ae057fcb43eebc64cea1830354b5','0','2','0'), ('40860','20','get[1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}]','10250','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1cc76ff8008c443a8c6f65fd7f44c465','0','2','0'), ('40861','20','get[1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}]','10250','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5cd2334dd4c544f9b0a506a143cfb79a','0','2','0'), ('40862','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10250','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','59f3f55d93024c02b234561bb0cfe5a6','0','2','0'), ('40863','20','get[1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}]','10250','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n'' then the speed of the interface is somewhere in the range of `n-500,000'' to`n+499,999''. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','46b37fed488f4028ad8937ddb9edacad','0','2','0'), ('40864','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10250','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'644','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6b0829277ef74410aa8d39a07d4336a5','0','2','0'), ('40865','20','get[1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}]','10250','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','31d','0','0','3','','','','',NULL,'645','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','60791f5d3f864b5ca4f08de9540b8fca','0','2','0'), ('40866','20','get[1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX}]','10250','Interface {#IFNAME}({#IFALIAS}): Duplex status','net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'643','','','0','','','','','2',NULL,'MIB: EtherLike-MIB The current mode of operation of the MAC entity. ''unknown'' indicates that the current duplex mode could not be determined. Management control of the duplex mode is accomplished through the MAU MIB. When an interface does not support autonegotiation, or when autonegotiation is not enabled, the duplex mode is controlled using ifMauDefaultType. When autonegotiation is supported and enabled, duplex mode is controlled using ifMauAutoNegAdvertisedBits. In either case, the currently operating duplex mode is reflected both in this object and in ifMauType. Note that this object provides redundant information with ifMauType. Normally, redundant objects are discouraged. However, in this instance, it allows a management application to determine the duplex status of an interface without having to know every possible value of ifMauType. This was felt to be sufficiently valuable to justify the redundancy. Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','837e3fa435894249ad3fb599e3afdb1e','0','2','0'), ('40867','3','','10229','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'651','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1cd98c8030f14fbca6abee35eb87e45b','0','2','0'), ('40868','3','','10229','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ee1ee4ce3b3a4545bd407ecc3e428049','0','2','0'), ('40869','3','','10229','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4f3bda2c7ab84a418bde7602cf0d608d','0','2','0'), ('40870','17','','10229','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','023b4403df464029a1493c53a0122d6f','0','2','0'), ('40871','20','get[1.3.6.1.2.1.1.4.0]','10229','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9aba5f7df03b4904869e0043dc73b9ae','0','2','0'), ('40872','20','get[1.3.6.1.2.1.1.1.0]','10229','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','034cdbc177c346e0b49791250b8bf66d','0','2','0'), ('40873','20','get[1.3.6.1.2.1.1.6.0]','10229','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','78041d1a10ed4cb6b89a77bc1478b009','0','2','0'), ('40874','20','get[1.3.6.1.2.1.1.5.0]','10229','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3fad2aa468c2492a89b28bdbffd00c6c','0','2','0'), ('40875','20','get[1.3.6.1.2.1.1.2.0]','10229','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a5e66466550f44a4b1d2137c751e9009','0','2','0'), ('40876','20','get[1.3.6.1.2.1.1.3.0]','10229','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e9dd0d849aaa499da9e2ef9e21ccd50e','0','2','0'), ('40877','5','','10229','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'652','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','291fbe54d7c845bb9ec5b080be084612','0','2','0'), ('40878','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10229','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','840dc40761294dc294cdd909318a7053','0','2','0'), ('40879','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2]','10229','EtherLike-MIB Discovery','net.if.duplex.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3d5bfd91c42b4656bf5843484ca2e016','0','2','0'), ('40880','20','get[1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}]','10229','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e5972a8dce67488cb6119c4f49d59a12','0','2','0'), ('40881','20','get[1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}]','10229','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d21e9fec64c54fd19605f8a8ba230211','0','2','0'), ('40882','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10229','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e5323fadbfbe4773ab450312a2c29164','0','2','0'), ('40883','20','get[1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}]','10229','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c5bc13495caf4a208b21bcd0a515a19d','0','2','0'), ('40884','20','get[1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}]','10229','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9291e8cfc58a4c029ff339bae4892faf','0','2','0'), ('40885','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10229','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','998389bdf381441e92ddd597272002fa','0','2','0'), ('40886','20','get[1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}]','10229','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n'' then the speed of the interface is somewhere in the range of `n-500,000'' to`n+499,999''. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c45208952a8f43e7a4ac90dbc9bf2eac','0','2','0'), ('40887','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10229','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'649','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1659d815112945478585fceef9318e68','0','2','0'), ('40888','20','get[1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}]','10229','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','31d','0','0','3','','','','',NULL,'650','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f6135b96b3584060b3a605312748edf4','0','2','0'), ('40889','20','get[1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX}]','10229','Interface {#IFNAME}({#IFALIAS}): Duplex status','net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'648','','','0','','','','','2',NULL,'MIB: EtherLike-MIB The current mode of operation of the MAC entity. ''unknown'' indicates that the current duplex mode could not be determined. Management control of the duplex mode is accomplished through the MAU MIB. When an interface does not support autonegotiation, or when autonegotiation is not enabled, the duplex mode is controlled using ifMauDefaultType. When autonegotiation is supported and enabled, duplex mode is controlled using ifMauAutoNegAdvertisedBits. In either case, the currently operating duplex mode is reflected both in this object and in ifMauType. Note that this object provides redundant information with ifMauType. Normally, redundant objects are discouraged. However, in this instance, it allows a management application to determine the duplex status of an interface without having to know every possible value of ifMauType. This was felt to be sufficiently valuable to justify the redundancy. Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','75c0d230a0ff43c2b0d40a071d058c72','0','2','0'), ('40890','3','','10230','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'655','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','45c9681958504f3b8b161a2c7c728dbb','0','2','0'), ('40891','3','','10230','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','81af3843a1e44469affca02640f22b77','0','2','0'), ('40892','3','','10230','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','771d21b9c40b426d97eff54c6ac5227e','0','2','0'), ('40893','17','','10230','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5bb2ef0f72244294bcc469710a0a1225','0','2','0'), ('40894','20','get[1.3.6.1.2.1.1.4.0]','10230','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8570bf70c217434cb40b9efa74d7e070','0','2','0'), ('40895','20','get[1.3.6.1.2.1.1.1.0]','10230','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1c17fbf4b11b45f087668eefa9438341','0','2','0'), ('40896','20','get[1.3.6.1.2.1.1.6.0]','10230','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d1ee46aa709d43919ae3727e4d55af42','0','2','0'), ('40897','20','get[1.3.6.1.2.1.1.5.0]','10230','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7f06f097558d4ef3801207031e660756','0','2','0'), ('40898','20','get[1.3.6.1.2.1.1.2.0]','10230','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c4c4e044967a432a829ca88d8dcd8c2e','0','2','0'), ('40899','20','get[1.3.6.1.2.1.1.3.0]','10230','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','db4c4bc058b147a293b12f8737e42a53','0','2','0'), ('40900','5','','10230','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'656','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a182c41cf58b465895ff677ca96e5b65','0','2','0'), ('40901','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10230','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','10fcb5ff857448bf88ebfb02d1bea505','0','2','0'), ('40902','20','get[1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}]','10230','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f099609537764e45bf023b07f983c6cc','0','2','0'), ('40903','20','get[1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}]','10230','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8a6b75dab396460b85b2b0a5c545a163','0','2','0'), ('40904','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10230','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ab73df14ab8d4d00994d0fad4abe0cf2','0','2','0'), ('40905','20','get[1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}]','10230','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7edbc6d440c94857818fed946ee74ef0','0','2','0'), ('40906','20','get[1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}]','10230','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ae4ac83054d344d6be098d4c70c9cbf7','0','2','0'), ('40907','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10230','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','88f432e3c475431c8295497d68ec904b','0','2','0'), ('40908','20','get[1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}]','10230','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n'' then the speed of the interface is somewhere in the range of `n-500,000'' to`n+499,999''. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ae55937ae3084131b58263805ba6d3ad','0','2','0'), ('40909','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10230','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'653','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a0818a565e9e4ac69312a04b69de9c95','0','2','0'), ('40910','20','get[1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}]','10230','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','31d','0','0','3','','','','',NULL,'654','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f979174f556c4906825d9373f60f22ab','0','2','0'), ('40911','3','','10231','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'660','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e5cf73357ca349818155522325a7c6bc','0','2','0'), ('40912','3','','10231','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3a1c4412bb9340169827209df2554a50','0','2','0'), ('40913','3','','10231','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ad350f912d2f4ead90aacdefa245cdf3','0','2','0'), ('40914','17','','10231','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e5470bc511a5499e9b8dc8bf4de8f054','0','2','0'), ('40915','20','get[1.3.6.1.2.1.1.4.0]','10231','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b8583eaf0353493ba18e751c9355dfa7','0','2','0'), ('40916','20','get[1.3.6.1.2.1.1.1.0]','10231','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ca8d30d561184ff4bf1b4ef07feb7302','0','2','0'), ('40917','20','get[1.3.6.1.2.1.1.6.0]','10231','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7a0062fa788c4abdbeb83df30276a0fd','0','2','0'), ('40918','20','get[1.3.6.1.2.1.1.5.0]','10231','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','87d8d5844b044be1a2a3261f98116fb0','0','2','0'), ('40919','20','get[1.3.6.1.2.1.1.2.0]','10231','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ebfd8c6f87d3401197bb8d9835206878','0','2','0'), ('40920','20','get[1.3.6.1.2.1.1.3.0]','10231','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bd29b0df96ac4b93bbd0746257d3601d','0','2','0'), ('40921','5','','10231','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'661','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','80ff69518e07493aac6059e1009d9a9f','0','2','0'), ('40922','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10231','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8ec2a60b8bfe43e7b9227042da1cf2ac','0','2','0'), ('40923','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2]','10231','EtherLike-MIB Discovery','net.if.duplex.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f4446053584f49fcb1375a3a4ba537e9','0','2','0'), ('40924','20','get[1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}]','10231','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3ccc2d240a264ac59388dfcabbd0d794','0','2','0'), ('40925','20','get[1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}]','10231','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3d94079eddb141ceac3b6a134168e422','0','2','0'), ('40926','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10231','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0cde648550284243a078965f165a069a','0','2','0'), ('40927','20','get[1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}]','10231','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d440b154c6194043a657fca8c4ed3179','0','2','0'), ('40928','20','get[1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}]','10231','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e9ed9d3d6b8b4340b7f1e22ca066a61d','0','2','0'), ('40929','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10231','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9c2bd3364f984af498b7bedbccc23c77','0','2','0'), ('40930','20','get[1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}]','10231','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n'' then the speed of the interface is somewhere in the range of `n-500,000'' to`n+499,999''. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','339529dba51f4ae5abe508a2461e0e71','0','2','0'), ('40931','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10231','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'658','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','51cda26d008e458790fd722a95072814','0','2','0'), ('40932','20','get[1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}]','10231','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','31d','0','0','3','','','','',NULL,'659','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','68dd9241092f4f2994d6e5d53cec96b7','0','2','0'), ('40933','20','get[1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX}]','10231','Interface {#IFNAME}({#IFALIAS}): Duplex status','net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'657','','','0','','','','','2',NULL,'MIB: EtherLike-MIB The current mode of operation of the MAC entity. ''unknown'' indicates that the current duplex mode could not be determined. Management control of the duplex mode is accomplished through the MAU MIB. When an interface does not support autonegotiation, or when autonegotiation is not enabled, the duplex mode is controlled using ifMauDefaultType. When autonegotiation is supported and enabled, duplex mode is controlled using ifMauAutoNegAdvertisedBits. In either case, the currently operating duplex mode is reflected both in this object and in ifMauType. Note that this object provides redundant information with ifMauType. Normally, redundant objects are discouraged. However, in this instance, it allows a management application to determine the duplex status of an interface without having to know every possible value of ifMauType. This was felt to be sufficiently valuable to justify the redundancy. Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bbe031a739e9406bb89c028a24535dc5','0','2','0'), ('40934','3','','10449','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'664','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3614c3929ad5439f9829fd07e83d2d04','0','2','0'), ('40935','20','get[1.3.6.1.2.1.1.5.0]','10449','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a72a6424b8a24277a952d0d2e3974ad3','0','2','0'), ('40936','20','get[1.3.6.1.2.1.1.3.0]','10449','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','04b76355c37041569f60b8d36d279f31','0','2','0'), ('40937','20','get[1.3.6.1.2.1.1.2.0]','10449','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','79d95aec65934350b59a52e4af4b0fd7','0','2','0'), ('40938','20','get[1.3.6.1.2.1.1.6.0]','10449','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8d35083324f245fda442d6c2183a2007','0','2','0'), ('40939','3','','10449','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7d018eef194b4734a67537b410d083d1','0','2','0'), ('40940','20','get[1.3.6.1.2.1.1.1.0]','10449','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','42f88903cca745a8a54fed6355d72a86','0','2','0'), ('40941','20','get[1.3.6.1.2.1.1.4.0]','10449','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','45de6d3b762042f1beba38b42a5ce271','0','2','0'), ('40942','17','','10449','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f5aa15bcdd8a41449014241122f42ed5','0','2','0'), ('40943','3','','10449','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','55b40d51d6694cf5b2da626587afe20e','0','2','0'), ('40944','5','','10449','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'665','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7bbae2f760b2437a92e27abc5f0c4c7a','0','2','0'), ('40955','3','','10450','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'668','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','41881ff47c664642a6e9e9776eb17295','0','2','0'), ('40956','20','get[1.3.6.1.2.1.1.5.0]','10450','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8a59a79c33ce484888308a171b5dd507','0','2','0'), ('40957','20','get[1.3.6.1.2.1.1.3.0]','10450','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bd0d3629dc4445968d42642640cee4ef','0','2','0'), ('40958','20','get[1.3.6.1.2.1.1.2.0]','10450','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','66afc3c4f48e4e008c323c46afd38b21','0','2','0'), ('40959','20','get[1.3.6.1.2.1.1.6.0]','10450','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0fc01029ea6c491690c76be5b4a1a10f','0','2','0'), ('40960','3','','10450','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','17ef5c841e254cf399f05b4a1ebfbddd','0','2','0'), ('40961','20','get[1.3.6.1.2.1.1.1.0]','10450','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0bba1b52c87d47119974e30e373423c6','0','2','0'), ('40962','20','get[1.3.6.1.2.1.1.4.0]','10450','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2c510a601eb34626bdcc105dc6e88083','0','2','0'), ('40963','17','','10450','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ad29673a93724660bbf7f34cc8b9b103','0','2','0'), ('40964','3','','10450','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b85868ac7f9646f9b8a672ca0a047dd9','0','2','0'), ('40965','5','','10450','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'669','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d2a7924b19e14fb5a0adea4664cddb52','0','2','0'), ('40976','3','','10451','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'672','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','70022c25c1ed4af49c878af7f2c5b73c','0','2','0'), ('40977','20','get[1.3.6.1.2.1.1.5.0]','10451','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','651753ff590d41a7b7478ca98ec9b0d9','0','2','0'), ('40978','20','get[1.3.6.1.2.1.1.3.0]','10451','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8fd10918d51640619279d5874e06e20b','0','2','0'), ('40979','20','get[1.3.6.1.2.1.1.2.0]','10451','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','744a4d413ff74ffea13e0d6a0813eeee','0','2','0'), ('40980','20','get[1.3.6.1.2.1.1.6.0]','10451','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bb4e80a9dfaf4165abac4fa360e77bf3','0','2','0'), ('40981','3','','10451','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f22e586a94424cb18483170ffa9f8b33','0','2','0'), ('40982','20','get[1.3.6.1.2.1.1.1.0]','10451','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4d011e0751664b31b216329a1963afc2','0','2','0'), ('40983','20','get[1.3.6.1.2.1.1.4.0]','10451','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4f5b003c74924567972b75b3c240c16c','0','2','0'), ('40984','17','','10451','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7b02fde229c24c99a5ce8f9073717855','0','2','0'), ('40985','3','','10451','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cf38efbab9c84551bb15f0544fb57838','0','2','0'), ('40986','5','','10451','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'673','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','22fd5ba91f1d4297b07e4be7f420735a','0','2','0'), ('40997','3','','10452','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'676','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fa447fdbf6e7440381f73a55e244405c','0','2','0'), ('40998','20','get[1.3.6.1.2.1.1.5.0]','10452','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8891f56528a34481838f9a8303412b0d','0','2','0'), ('40999','20','get[1.3.6.1.2.1.1.3.0]','10452','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4d42c5c9972445889de6e09abfdbc847','0','2','0'), ('41000','20','get[1.3.6.1.2.1.1.2.0]','10452','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f91f4184edee42bbbd45dc23668946f2','0','2','0'), ('41001','20','get[1.3.6.1.2.1.1.6.0]','10452','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','252fc6ffddbf403a91e0bf1f558526d6','0','2','0'), ('41002','3','','10452','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7d502a4b55224f3b8b4323c568d34535','0','2','0'), ('41003','20','get[1.3.6.1.2.1.1.1.0]','10452','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dfc51b19b72544d998a5c5ef6ca1c21e','0','2','0'), ('41004','20','get[1.3.6.1.2.1.1.4.0]','10452','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4f4699712b2547c68ce6f5cc0523c0d5','0','2','0'), ('41005','17','','10452','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3b3bc4be23664c91b61f835f5eb601ac','0','2','0'), ('41006','3','','10452','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5631c72ae88f4755822b993d42dd2c02','0','2','0'), ('41007','5','','10452','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'677','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7ddd377d90e34afe92e33df8be63b759','0','2','0'), ('41018','3','','10453','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'680','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','452c7c9d9aa64d71a41f74949ab0a233','0','2','0'), ('41019','20','get[1.3.6.1.2.1.1.5.0]','10453','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','05d02e7166c74b87ab67e2c76e9fa6dc','0','2','0'), ('41020','20','get[1.3.6.1.2.1.1.3.0]','10453','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ab98bfc1746743feb6ab0d4a21c1a3bf','0','2','0'), ('41021','20','get[1.3.6.1.2.1.1.2.0]','10453','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7fb0ffa57e5446e5912350700638e7a5','0','2','0'), ('41022','20','get[1.3.6.1.2.1.1.6.0]','10453','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','87a5ef8c320c46f2a8936e64e53b2c2e','0','2','0'), ('41023','3','','10453','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','84123d3f0fac4b178b3bb1cb878553e8','0','2','0'), ('41024','20','get[1.3.6.1.2.1.1.1.0]','10453','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','03977b99f6fd4723bc29ce6790deca0b','0','2','0'), ('41025','20','get[1.3.6.1.2.1.1.4.0]','10453','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','601f9df762134a84aa5e2509a58f0309','0','2','0'), ('41026','17','','10453','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dcace506d88d437893b1b9fce0eaee89','0','2','0'), ('41027','3','','10453','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','be0dd1d97e0b4f14b0283899821795a3','0','2','0'), ('41028','5','','10453','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'681','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3fe54510eaa1418aba59a833bf93b5dd','0','2','0'), ('41039','3','','10454','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'684','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','42a75eedbb7e41209bdf0b77b410981e','0','2','0'), ('41040','20','get[1.3.6.1.2.1.1.5.0]','10454','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0f635b37975e45a88116436b46f76486','0','2','0'), ('41041','20','get[1.3.6.1.2.1.1.3.0]','10454','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c9d27f7a8a2a40699e0b013c5badcbc0','0','2','0'), ('41042','20','get[1.3.6.1.2.1.1.2.0]','10454','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a55661d0520a4a3686938402b9a39ecf','0','2','0'), ('41043','20','get[1.3.6.1.2.1.1.6.0]','10454','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','34303c8ce03c4b59bca308055c7d3506','0','2','0'), ('41044','3','','10454','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','29036393918345269f36aa4daba59823','0','2','0'), ('41045','20','get[1.3.6.1.2.1.1.1.0]','10454','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','267ee9321d50436f8c5a3ab6c1bbbfec','0','2','0'), ('41046','20','get[1.3.6.1.2.1.1.4.0]','10454','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b6a9d9049fef46c69ae2508892060a43','0','2','0'), ('41047','17','','10454','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7e58aff2b1704d99a73ecc607fbf286d','0','2','0'), ('41048','3','','10454','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ac362f04138e40b0b2611a66101cb6d7','0','2','0'), ('41049','5','','10454','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'685','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','048e394bc01149b4976b0bde0e5cfa62','0','2','0'), ('41060','3','','10455','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'688','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','32e1e322b3b34c7d9dc1cf7cac89f223','0','2','0'), ('41061','20','get[1.3.6.1.2.1.1.5.0]','10455','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9e21e99f85ec464cba6473f4c0d15e96','0','2','0'), ('41062','20','get[1.3.6.1.2.1.1.3.0]','10455','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cbb288d0de7c4732b74ff812698cccbc','0','2','0'), ('41063','20','get[1.3.6.1.2.1.1.2.0]','10455','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f48f704473374e1991267a007809ec00','0','2','0'), ('41064','20','get[1.3.6.1.2.1.1.6.0]','10455','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b5fbca72e7724e689c5563877e3beef1','0','2','0'), ('41065','3','','10455','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c0abc057afc84b459e0b5cfe43abbd03','0','2','0'), ('41066','20','get[1.3.6.1.2.1.1.1.0]','10455','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b9348f8739fc4296a19a92de49f261fc','0','2','0'), ('41067','20','get[1.3.6.1.2.1.1.4.0]','10455','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ffb768eca167467b910da993f38f3ca7','0','2','0'), ('41068','17','','10455','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9a30d3659344407ab31a3997e75e2c8a','0','2','0'), ('41069','3','','10455','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5302099600ae4973810fe71d21ab4533','0','2','0'), ('41070','5','','10455','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'689','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4c0d4bc7872847248c4659bf7f29dee1','0','2','0'), ('41081','3','','10456','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'692','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ee528734341c4cf8815442ca2762ad56','0','2','0'), ('41082','20','get[1.3.6.1.2.1.1.5.0]','10456','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','18bbaa17cf224712944aa4ccfd3c56f8','0','2','0'), ('41083','20','get[1.3.6.1.2.1.1.3.0]','10456','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','34d40f56c17541ddb276e773d0e39737','0','2','0'), ('41084','20','get[1.3.6.1.2.1.1.2.0]','10456','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a21804a0cb5549ea8f8b447802600aaa','0','2','0'), ('41085','20','get[1.3.6.1.2.1.1.6.0]','10456','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','966c104811674f4cbae586a8b5356247','0','2','0'), ('41086','3','','10456','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','20177d9560fd41518274117a8573fcbf','0','2','0'), ('41087','20','get[1.3.6.1.2.1.1.1.0]','10456','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1e0feae3c04e4736bf7a4485e36be60e','0','2','0'), ('41088','20','get[1.3.6.1.2.1.1.4.0]','10456','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1e20df1ba4f740768c5d167928b52a91','0','2','0'), ('41089','17','','10456','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5fc1581406334366ba038c350335c7af','0','2','0'), ('41090','3','','10456','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','47ded308c77c4cbba98051665f09a378','0','2','0'), ('41091','5','','10456','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'693','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f77c57fb2dca4391ba2d741ef636b0cd','0','2','0'), ('41102','3','','10457','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'696','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d7b2d9c7f8dc4b7a8ff57b129af585b2','0','2','0'), ('41103','20','get[1.3.6.1.2.1.1.5.0]','10457','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','74e4c3fb1719453faa539e5c4c03e725','0','2','0'), ('41104','20','get[1.3.6.1.2.1.1.3.0]','10457','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','95869b7593644ccebab3fc2bb81f493c','0','2','0'), ('41105','20','get[1.3.6.1.2.1.1.2.0]','10457','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9a33a5e56bcf422fa357fdb664a93d03','0','2','0'), ('41106','20','get[1.3.6.1.2.1.1.6.0]','10457','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b4c93df60aca48ffa7b7f67b58918b5f','0','2','0'), ('41107','3','','10457','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d6a55e92ef1f49669df5641093aefbdd','0','2','0'), ('41108','20','get[1.3.6.1.2.1.1.1.0]','10457','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9264b3ce82d648fbb209fd11a0d7069c','0','2','0'), ('41109','20','get[1.3.6.1.2.1.1.4.0]','10457','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','451ed0953b82410797051f377fda6e5b','0','2','0'), ('41110','17','','10457','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','972afbe794124caa8fd35b44856c4b73','0','2','0'), ('41111','3','','10457','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b784087e681644f68b96f4d7a041e57e','0','2','0'), ('41112','5','','10457','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'697','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6fe6e7afa7bd42269e6b7e49661d1c3f','0','2','0'), ('41123','3','','10458','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'700','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','244e7111eefb48c98b1410eb53690989','0','2','0'), ('41124','20','get[1.3.6.1.2.1.1.5.0]','10458','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','09fdf7b507614abe811670bb36c20aec','0','2','0'), ('41125','20','get[1.3.6.1.2.1.1.3.0]','10458','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f57e6a6b360b4844be4c125c44f4b799','0','2','0'), ('41126','20','get[1.3.6.1.2.1.1.2.0]','10458','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','241278e60289451ba100834fcb41b04b','0','2','0'), ('41127','20','get[1.3.6.1.2.1.1.6.0]','10458','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4d85307924e84fe8ab5cecb8ee8afead','0','2','0'), ('41128','3','','10458','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','30907fe670ce46ad957b199bc58534bf','0','2','0'), ('41129','20','get[1.3.6.1.2.1.1.1.0]','10458','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b022eea34d6d4e46b403e3e6eb1df42e','0','2','0'), ('41130','20','get[1.3.6.1.2.1.1.4.0]','10458','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8bd0bba343264b6fa43c1c99d39f4bdc','0','2','0'), ('41131','17','','10458','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7215e2ee187f45439e367c0ee9b78fd8','0','2','0'), ('41132','3','','10458','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','20d51d89f4604f6f8f56f1de7dcbb5cf','0','2','0'), ('41133','5','','10458','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'701','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7a54976f73f14c0cacff759a406806a9','0','2','0'), ('41144','3','','10459','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'704','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fe29736edd494d61ac4339ed5234bbdf','0','2','0'), ('41145','20','get[1.3.6.1.2.1.1.5.0]','10459','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','234bbf0b94ae4efe9e0708ef7748a592','0','2','0'), ('41146','20','get[1.3.6.1.2.1.1.3.0]','10459','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','15665fae5ef043d2b39863ae3148f5da','0','2','0'), ('41147','20','get[1.3.6.1.2.1.1.2.0]','10459','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a947ad3c3e634a4185ed7e4d80ac2b11','0','2','0'), ('41148','20','get[1.3.6.1.2.1.1.6.0]','10459','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cfbb37cb51c94191a8812b4fc18846c9','0','2','0'), ('41149','3','','10459','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dcda1847f1324215ace997f21e2c9136','0','2','0'), ('41150','20','get[1.3.6.1.2.1.1.1.0]','10459','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e2610c67fd0546d0a4f6d44515c38bfa','0','2','0'), ('41151','20','get[1.3.6.1.2.1.1.4.0]','10459','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','77a875ad0d3348618ad166e13df8859c','0','2','0'), ('41152','17','','10459','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bd102e739e6d4ec183d94d8965f9c0da','0','2','0'), ('41153','3','','10459','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5505dcdce64f4d4bafc65250fdc44d55','0','2','0'), ('41154','5','','10459','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'705','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b7d3a7a170bc417190109ee6316f14e2','0','2','0'), ('41165','3','','10460','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'708','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9d1eadf8cb614f7db24af010754ecea5','0','2','0'), ('41166','20','get[1.3.6.1.2.1.1.5.0]','10460','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a1cfc4a89a29405790c8004648397c16','0','2','0'), ('41167','20','get[1.3.6.1.2.1.1.3.0]','10460','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','acec0fba9acb475298c23815478e1232','0','2','0'), ('41168','20','get[1.3.6.1.2.1.1.2.0]','10460','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','68aaafe3efc449c1b718af4da8675d76','0','2','0'), ('41169','20','get[1.3.6.1.2.1.1.6.0]','10460','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fc1ac08bab0c482f85f7666c9f932863','0','2','0'), ('41170','3','','10460','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','747a11088cdb4336acde1a3db6b6fb0a','0','2','0'), ('41171','20','get[1.3.6.1.2.1.1.1.0]','10460','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','14a7067e6be141af97af075439c741a0','0','2','0'), ('41172','20','get[1.3.6.1.2.1.1.4.0]','10460','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','07ed423ecd90404da796326fdf88d59f','0','2','0'), ('41173','17','','10460','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','03477df2c6a54edbb33043e0ad372aca','0','2','0'), ('41174','3','','10460','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5511b24404044a999a4e63b5742fba69','0','2','0'), ('41175','5','','10460','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'709','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','37dad400826443b9a70df99c46cadb7b','0','2','0'), ('41186','3','','10461','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'712','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','805fba01bb75425d98471a62dfe2aec2','0','2','0'), ('41187','20','get[1.3.6.1.2.1.1.5.0]','10461','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b8600abc5e0a47ab821b656b2b781654','0','2','0'), ('41188','20','get[1.3.6.1.2.1.1.3.0]','10461','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6d23ba015bfa40a180851bd0a8e4ead7','0','2','0'), ('41189','20','get[1.3.6.1.2.1.1.2.0]','10461','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','eb2be7f070704027a3bc190da2937f5a','0','2','0'), ('41190','20','get[1.3.6.1.2.1.1.6.0]','10461','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4578904cc2cd43af9f537ceef6307403','0','2','0'), ('41191','3','','10461','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0855d5a498274c078e8d2725b613f491','0','2','0'), ('41192','20','get[1.3.6.1.2.1.1.1.0]','10461','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a4366a2506b64e07984fe3a3e1f1ecb6','0','2','0'), ('41193','20','get[1.3.6.1.2.1.1.4.0]','10461','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','47b25b5beacc4890b8e3218ec26482a9','0','2','0'), ('41194','17','','10461','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ceb8ab85069b4c7ca7c6517cf0c5b9d5','0','2','0'), ('41195','3','','10461','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','58c2d3109593425ca65b1da7b93de738','0','2','0'), ('41196','5','','10461','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'713','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','506984ef2c14483cbfa7ab7e126cd258','0','2','0'), ('41207','3','','10462','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'716','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9cb91d0e91ad4ea0980915a55042a92c','0','2','0'), ('41208','20','get[1.3.6.1.2.1.1.5.0]','10462','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c549da27ab6741619d96c0473b6e5e81','0','2','0'), ('41209','20','get[1.3.6.1.2.1.1.3.0]','10462','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dd1816fc79704e6687bb841d729695c7','0','2','0'), ('41210','20','get[1.3.6.1.2.1.1.2.0]','10462','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8204bf9e17794dc1994d657baaafa62d','0','2','0'), ('41211','20','get[1.3.6.1.2.1.1.6.0]','10462','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8d7d12e82d0141e7919135d93e955d02','0','2','0'), ('41212','3','','10462','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7871185930284f9eb03c359baf2cd703','0','2','0'), ('41213','20','get[1.3.6.1.2.1.1.1.0]','10462','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d2c1cba3782e48e8a416e6bf5126de26','0','2','0'), ('41214','20','get[1.3.6.1.2.1.1.4.0]','10462','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','787629e255a043ec89a9235792af48e8','0','2','0'), ('41215','17','','10462','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3d716d3580c24e49834f8b7927a62f18','0','2','0'), ('41216','3','','10462','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','701c51a923e940b288bc486df8bcb896','0','2','0'), ('41217','5','','10462','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'717','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','62a7b8240f65452db1b62ebd3e608328','0','2','0'), ('41228','3','','10463','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'720','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','850f48b6cbe44d419363a581abb968f8','0','2','0'), ('41229','20','get[1.3.6.1.2.1.1.5.0]','10463','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bd417ca6edeb4e7bbf446b8a3d003e7a','0','2','0'), ('41230','20','get[1.3.6.1.2.1.1.3.0]','10463','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','479d3825a16b4060a06b3bba21515a9c','0','2','0'), ('41231','20','get[1.3.6.1.2.1.1.2.0]','10463','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3fadb391f77d44d099b0f1f7b51f8062','0','2','0'), ('41232','20','get[1.3.6.1.2.1.1.6.0]','10463','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dee2119103e640eab76243f6ff769c77','0','2','0'), ('41233','3','','10463','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6ab02f2204e94d9fa90e905c70312544','0','2','0'), ('41234','20','get[1.3.6.1.2.1.1.1.0]','10463','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7f69a36c9c86495bb84eb1e4768520bb','0','2','0'), ('41235','20','get[1.3.6.1.2.1.1.4.0]','10463','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a0396c448a24457583dcb11a7847731c','0','2','0'), ('41236','17','','10463','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9bad59edc7f9432988cf286b5497a7e4','0','2','0'), ('41237','3','','10463','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fb7fad1847eb4df9a2c26f60f61afa5c','0','2','0'), ('41238','5','','10463','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'721','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','769ce4d237c043a2a86af0a66ff06a1a','0','2','0'), ('41249','3','','10464','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'724','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8a3ff0b65daf4c47999b0f9877339b47','0','2','0'), ('41250','20','get[1.3.6.1.2.1.1.5.0]','10464','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c1bebf0a8a444b84a94f2edf0a631a4f','0','2','0'), ('41251','20','get[1.3.6.1.2.1.1.3.0]','10464','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','66bffe7a0b8041b1aca4609cfebaa924','0','2','0'), ('41252','20','get[1.3.6.1.2.1.1.2.0]','10464','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4ccdb09d16244ab990eb187ed7c06248','0','2','0'), ('41253','20','get[1.3.6.1.2.1.1.6.0]','10464','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c911a3f7ceb740719933b255aa78a86e','0','2','0'), ('41254','3','','10464','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','710be8da30564d90816b724c4aa409f4','0','2','0'), ('41255','20','get[1.3.6.1.2.1.1.1.0]','10464','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','419bf63514994b58abba6586d4241c72','0','2','0'), ('41256','20','get[1.3.6.1.2.1.1.4.0]','10464','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','52453d3272f04c1b90334407a44ed110','0','2','0'), ('41257','17','','10464','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fd5785cc745a4c23b36e7b88920cb677','0','2','0'), ('41258','3','','10464','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9a37178d9a534fbca0c71e7f6387b718','0','2','0'), ('41259','5','','10464','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'725','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3d39d94dbe8b42f9a2dd6d726f04e6fb','0','2','0'), ('41270','3','','10465','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'728','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','743501d05f1540d681f8112a805f1a0d','0','2','0'), ('41271','20','get[1.3.6.1.2.1.1.5.0]','10465','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6edc651f2acd4a718b1802aec08cad0f','0','2','0'), ('41272','20','get[1.3.6.1.2.1.1.3.0]','10465','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3afb18b2452e45778ce5cdaa20bf58b8','0','2','0'), ('41273','20','get[1.3.6.1.2.1.1.2.0]','10465','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','590c0449f2fe40999ac2d758bfa60058','0','2','0'), ('41274','20','get[1.3.6.1.2.1.1.6.0]','10465','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e0e2d52ad8cd41dd92a97669e89c5fc6','0','2','0'), ('41275','3','','10465','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','21ee91bb65fc4b6bbb83c1e35558b7d1','0','2','0'), ('41276','20','get[1.3.6.1.2.1.1.1.0]','10465','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c6403a32598e400db8084d77083d1621','0','2','0'), ('41277','20','get[1.3.6.1.2.1.1.4.0]','10465','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','adabeec14fdb405495907ef6771a11a1','0','2','0'), ('41278','17','','10465','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2dff60db5ff640839ebfddbc68c72243','0','2','0'), ('41279','3','','10465','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f13323a6a0e84d2c865f4bf2d5e59f79','0','2','0'), ('41280','5','','10465','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'729','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','752fd8bdeaed449484add53bf1cfbcd7','0','2','0'), ('41291','3','','10466','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'732','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f32e2f3c5177420098c4d49d41efff73','0','2','0'), ('41292','20','get[1.3.6.1.2.1.1.5.0]','10466','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1a852e5ecb4745e4aaf6d819c8614c0c','0','2','0'), ('41293','20','get[1.3.6.1.2.1.1.3.0]','10466','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a8f78c05de534873a8cb2250c528387b','0','2','0'), ('41294','20','get[1.3.6.1.2.1.1.2.0]','10466','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1f4839491fae42fd96d63f960486dc02','0','2','0'), ('41295','20','get[1.3.6.1.2.1.1.6.0]','10466','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c8656758df544bccae950414c2adb969','0','2','0'), ('41296','3','','10466','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e23f070baecf4e85bfd4b919a313363f','0','2','0'), ('41297','20','get[1.3.6.1.2.1.1.1.0]','10466','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','87adae25334a4965a6d03f5c611d8359','0','2','0'), ('41298','20','get[1.3.6.1.2.1.1.4.0]','10466','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2fed3da1b4d646cfab6e0249e2cb9c6c','0','2','0'), ('41299','17','','10466','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ddc1215a46464ed6b5e379d243816bc4','0','2','0'), ('41300','3','','10466','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','19cb2bfb6b5a4aa48f38a6346ad1832f','0','2','0'), ('41301','5','','10466','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'733','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6ff75377e11348e7be6e65301ba29aaa','0','2','0'), ('41312','3','','10467','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'736','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','84648b17d61b4faebfd5861a0fd1afe6','0','2','0'), ('41313','20','get[1.3.6.1.2.1.1.5.0]','10467','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','83cb30ef232d46f79f01c47ae7477270','0','2','0'), ('41314','20','get[1.3.6.1.2.1.1.3.0]','10467','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2b284f4d96704b71920bc8b3beac050c','0','2','0'), ('41315','20','get[1.3.6.1.2.1.1.2.0]','10467','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1c220049b4b94d08b35e03fde9111ded','0','2','0'), ('41316','20','get[1.3.6.1.2.1.1.6.0]','10467','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1e385c4c4f7145d1a7973fe1f7dcc1ed','0','2','0'), ('41317','3','','10467','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','896f08cd051e41a8bbb0f63fd1a23bb8','0','2','0'), ('41318','20','get[1.3.6.1.2.1.1.1.0]','10467','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','14055a3a922f43c083ec97dcb8899085','0','2','0'), ('41319','20','get[1.3.6.1.2.1.1.4.0]','10467','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','44e64e9c36ce40d7b2a2138dab8030ee','0','2','0'), ('41320','17','','10467','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','035cd00faa4b48d69b8ba9d93d5adb1a','0','2','0'), ('41321','3','','10467','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','209d4503520a4a61a183f7f1c303a801','0','2','0'), ('41322','5','','10467','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'737','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3616f93a2ed449e38d95722f4e318497','0','2','0'), ('41333','3','','10468','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'740','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1b8d0df3c9a2401488a12c5d051de0a4','0','2','0'), ('41334','20','get[1.3.6.1.2.1.1.5.0]','10468','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0a4d7bb40fbb49c48d210e763b3f2426','0','2','0'), ('41335','20','get[1.3.6.1.2.1.1.3.0]','10468','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0c36805ca5cd40d099060ee447cb85db','0','2','0'), ('41336','20','get[1.3.6.1.2.1.1.2.0]','10468','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a307185251ec4bb7a2fafc41fabf7eee','0','2','0'), ('41337','20','get[1.3.6.1.2.1.1.6.0]','10468','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0f0dfeaaac954d2fbc3a6b20dc756c59','0','2','0'), ('41338','3','','10468','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3b909ebca73b4baa9364db355d5e59d7','0','2','0'), ('41339','20','get[1.3.6.1.2.1.1.1.0]','10468','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6b823352365a4b4da3437839445f7373','0','2','0'), ('41340','20','get[1.3.6.1.2.1.1.4.0]','10468','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','46ec5face2a247c68467116594f4ed53','0','2','0'), ('41341','17','','10468','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2c3c5ede40d241669525c556c59faa95','0','2','0'), ('41342','3','','10468','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','29d7a47ae93d4911991c092032c1ee9b','0','2','0'), ('41343','5','','10468','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'741','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1620fd9982ed4e27a2e4bfcff915765e','0','2','0'), ('41354','3','','10469','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'744','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ba6ae11c71a94ea6858663030b8ce445','0','2','0'), ('41355','20','get[1.3.6.1.2.1.1.5.0]','10469','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4c1fbb2ffa0246f7be58fd4d82f6009e','0','2','0'), ('41356','20','get[1.3.6.1.2.1.1.3.0]','10469','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7bd86e80b5154212bc883dc5bd15cad7','0','2','0'), ('41357','20','get[1.3.6.1.2.1.1.2.0]','10469','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2d1e9c027c0e40faa7ba792de117eafb','0','2','0'), ('41358','20','get[1.3.6.1.2.1.1.6.0]','10469','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','50d138e88427408a858322b2a3d31d78','0','2','0'), ('41359','3','','10469','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cf937bb3e6524714a037c79e3fd09982','0','2','0'), ('41360','20','get[1.3.6.1.2.1.1.1.0]','10469','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c0f09ce0c4d7454dab1474a606de48a0','0','2','0'), ('41361','20','get[1.3.6.1.2.1.1.4.0]','10469','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','03af1591f3af444781a6a3e058de7dd6','0','2','0'), ('41362','17','','10469','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a018cf2626764f17853a526f5b6d574e','0','2','0'), ('41363','3','','10469','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f5b621e08b5e41949dde460f61ef5458','0','2','0'), ('41364','5','','10469','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'745','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3687b61660ab43ba9abd8be56f5de6aa','0','2','0'), ('41375','3','','10470','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'748','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','41e58aa91bc74509aad190e0c07a7afe','0','2','0'), ('41376','20','get[1.3.6.1.2.1.1.5.0]','10470','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','50e9e01258084593a5c0e55d5c3ea50b','0','2','0'), ('41377','20','get[1.3.6.1.2.1.1.3.0]','10470','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','61ada578e2654f2b9773e86ac7f9f5a7','0','2','0'), ('41378','20','get[1.3.6.1.2.1.1.2.0]','10470','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5a20282446cc4ec797860f33e6767712','0','2','0'), ('41379','20','get[1.3.6.1.2.1.1.6.0]','10470','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','10d7ca748c1c4363a7d0ea997de8bbb7','0','2','0'), ('41380','3','','10470','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','97c6159702a5412c87ee2d42602a4ead','0','2','0'), ('41381','20','get[1.3.6.1.2.1.1.1.0]','10470','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','23d51bb62dd24ddbb8d8332ddd62aac7','0','2','0'), ('41382','20','get[1.3.6.1.2.1.1.4.0]','10470','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8e0533aa1f3e48ce8b5a6a2ad388cf32','0','2','0'), ('41383','17','','10470','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','18144ae33c344636a8c8f496f9d31769','0','2','0'), ('41384','3','','10470','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fd7a6cdbb0b94c7d9d9584873427027d','0','2','0'), ('41385','5','','10470','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'749','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2dc35ca9c25146eb9d5955bdb338fbf4','0','2','0'), ('41396','3','','10471','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'752','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7e700116048d4392a71946764268fce8','0','2','0'), ('41397','20','get[1.3.6.1.2.1.1.5.0]','10471','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','72e38e1011654a3eb413f133169b3811','0','2','0'), ('41398','20','get[1.3.6.1.2.1.1.3.0]','10471','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','edbcea616a6d459898cae926963e9ee4','0','2','0'), ('41399','20','get[1.3.6.1.2.1.1.2.0]','10471','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b5c8153787384711ae6fde2c1d9cd45c','0','2','0'), ('41400','20','get[1.3.6.1.2.1.1.6.0]','10471','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0e41c468f5db44bcab6f8e1a078e5309','0','2','0'), ('41401','3','','10471','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5408eda422114912937f6810b5746f71','0','2','0'), ('41402','20','get[1.3.6.1.2.1.1.1.0]','10471','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aff391166f0d4e13b3d047143446c9ff','0','2','0'), ('41403','20','get[1.3.6.1.2.1.1.4.0]','10471','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','417db3f4da664196a5cd40b3f7d65caa','0','2','0'), ('41404','17','','10471','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','75bbba08fdf14ff190d0ea4f9e23d3bd','0','2','0'), ('41405','3','','10471','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5ec629ad1b1a44ceb3b138d84eb2d99d','0','2','0'), ('41406','5','','10471','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'753','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ea1305a4dbf94c848271814a5c3d08c4','0','2','0'), ('41417','3','','10472','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'756','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cb5c19012cfd413fb280ccf6f2754f65','0','2','0'), ('41418','20','get[1.3.6.1.2.1.1.5.0]','10472','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1db5d107bd1f4395b1e746ee9a345f21','0','2','0'), ('41419','20','get[1.3.6.1.2.1.1.3.0]','10472','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','83a1109159ca4513ba278a3c290d10b9','0','2','0'), ('41420','20','get[1.3.6.1.2.1.1.2.0]','10472','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b1b6c41064924674b43851832fbb7b10','0','2','0'), ('41421','20','get[1.3.6.1.2.1.1.6.0]','10472','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a8e5af6ef52d457098ff5a9cd10a30da','0','2','0'), ('41422','3','','10472','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','877d543f8a0040a7bf6b48c734f9622f','0','2','0'), ('41423','20','get[1.3.6.1.2.1.1.1.0]','10472','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','743f06984d5549d2832c55914d3cbc5e','0','2','0'), ('41424','20','get[1.3.6.1.2.1.1.4.0]','10472','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ee5e1ba0c8d94747a0da617ba01fd998','0','2','0'), ('41425','17','','10472','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','237fc861aa3b4a33ac6b1b4aee3f05b0','0','2','0'), ('41426','3','','10472','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','689a05d4bdec404abea16439908b9b22','0','2','0'), ('41427','5','','10472','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'757','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8161db2e10c84693961e742fda8a7fa2','0','2','0'), ('41438','3','','10473','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'760','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','794bf23a9839416bae6c2d04489eeaf3','0','2','0'), ('41439','20','get[1.3.6.1.2.1.1.5.0]','10473','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','37b571d2c80e484d826ab688768d2036','0','2','0'), ('41440','20','get[1.3.6.1.2.1.1.3.0]','10473','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d2fbbaae58704270b5fc8d04bca76209','0','2','0'), ('41441','20','get[1.3.6.1.2.1.1.2.0]','10473','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b2c67ce1f337481e9ffe6a1f3c467c8c','0','2','0'), ('41442','20','get[1.3.6.1.2.1.1.6.0]','10473','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8a856d5811924020a98ce56910cb52af','0','2','0'), ('41443','3','','10473','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e563c3cb4a254b70a6f034fc81c2f672','0','2','0'), ('41444','20','get[1.3.6.1.2.1.1.1.0]','10473','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d668a2c3ee2b49629f4520b3627e5cc1','0','2','0'), ('41445','20','get[1.3.6.1.2.1.1.4.0]','10473','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e170bed368914833917c81d70fea7e1c','0','2','0'), ('41446','17','','10473','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','88f1d48a273f4400930efd1086b61b64','0','2','0'), ('41447','3','','10473','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a3a45a21356644f7bccced62a2d8ce3b','0','2','0'), ('41448','5','','10473','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'761','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','641ccd0e5ec8454bb0bc62d3e8362cc2','0','2','0'), ('41459','3','','10474','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'764','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9afb4d3954164976aad193e27dcc08b7','0','2','0'), ('41460','20','get[1.3.6.1.2.1.1.5.0]','10474','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','53e45ee656db47afabc6ad18d3f61c37','0','2','0'), ('41461','20','get[1.3.6.1.2.1.1.3.0]','10474','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','54d630b4d80e4ac0a9942630a80b14d8','0','2','0'), ('41462','20','get[1.3.6.1.2.1.1.2.0]','10474','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b6aacb1fd6b8413f837f2cb3b1977a22','0','2','0'), ('41463','20','get[1.3.6.1.2.1.1.6.0]','10474','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4445d982dc354baf8c7649ab9250b3f9','0','2','0'), ('41464','3','','10474','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ead664e6adfc4911854075c0c173ea88','0','2','0'), ('41465','20','get[1.3.6.1.2.1.1.1.0]','10474','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1a35e1108dbd47b4bd818668e5523aec','0','2','0'), ('41466','20','get[1.3.6.1.2.1.1.4.0]','10474','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','714588b12797482192a786a131dab9f6','0','2','0'), ('41467','17','','10474','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a3e60d1ff0444f0485f3b41100f21c15','0','2','0'), ('41468','3','','10474','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','95ca4a96e93d4d8cb4d1d9d97b711231','0','2','0'), ('41469','5','','10474','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'765','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bd170bcf34104168884e123da7ed93da','0','2','0'), ('41480','3','','10475','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'768','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1d202d0a1c0d45d09a995ef741176869','0','2','0'), ('41481','20','get[1.3.6.1.2.1.1.5.0]','10475','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7731343e3a584e4cba4241f6114f1b12','0','2','0'), ('41482','20','get[1.3.6.1.2.1.1.3.0]','10475','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','38d674115439443a848b43c72e71a345','0','2','0'), ('41483','20','get[1.3.6.1.2.1.1.2.0]','10475','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fa9788e34ffe4107bf7b1d72008af5e6','0','2','0'), ('41484','20','get[1.3.6.1.2.1.1.6.0]','10475','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8539d2a032e741b1845d6423772600ec','0','2','0'), ('41485','3','','10475','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ec3285050dd44b47b648f9c61ab8c9e4','0','2','0'), ('41486','20','get[1.3.6.1.2.1.1.1.0]','10475','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1caa3bcecbf441d4bdea4e1adcfd399d','0','2','0'), ('41487','20','get[1.3.6.1.2.1.1.4.0]','10475','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bb4b0528c6c946b49f5b7a8da8cbabe0','0','2','0'), ('41488','17','','10475','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6460447c65a6427cafd53e618d5d7bc1','0','2','0'), ('41489','3','','10475','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b71903a18c4246238d7e9a8e99904794','0','2','0'), ('41490','5','','10475','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'769','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4087946c74884ef085a79fe174495646','0','2','0'), ('41501','3','','10476','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'772','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','24ab31dd7fd44ed5a5fd22e02fca0a11','0','2','0'), ('41502','20','get[1.3.6.1.2.1.1.5.0]','10476','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','139496c157af4e12b28ca337ca60c7fa','0','2','0'), ('41503','20','get[1.3.6.1.2.1.1.3.0]','10476','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3137916543634345a5688f631657fa30','0','2','0'), ('41504','20','get[1.3.6.1.2.1.1.2.0]','10476','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','78f353c258764fa69637afe7f8ab440b','0','2','0'), ('41505','20','get[1.3.6.1.2.1.1.6.0]','10476','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cd48a08f2b4a4dd3961488a00424fcce','0','2','0'), ('41506','3','','10476','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','80ab3090289a481da72c0d93764eb18a','0','2','0'), ('41507','20','get[1.3.6.1.2.1.1.1.0]','10476','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d0db3ce8a567414a96bbe5b02b1967dd','0','2','0'), ('41508','20','get[1.3.6.1.2.1.1.4.0]','10476','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9ad920cf294a4fcbaa78ea4f01385588','0','2','0'), ('41509','17','','10476','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','197098286a9b4b6bac5bd79a4f0eb522','0','2','0'), ('41510','3','','10476','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','15552636da9a40b6b2bec461798f3c0d','0','2','0'), ('41511','5','','10476','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'773','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e01e3b3a9db44d2db55ae6d289d963c4','0','2','0'), ('41522','3','','10477','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'776','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','394f2cd81cc747009c16e0fa7c7febc1','0','2','0'), ('41523','20','get[1.3.6.1.2.1.1.5.0]','10477','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2f54cf3f5bfd41d29b46887c8de02df3','0','2','0'), ('41524','20','get[1.3.6.1.2.1.1.3.0]','10477','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bce151f2eece481ab9ff10bd492ec514','0','2','0'), ('41525','20','get[1.3.6.1.2.1.1.2.0]','10477','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','45d0902fc8764108983d75f51a7c13ca','0','2','0'), ('41526','20','get[1.3.6.1.2.1.1.6.0]','10477','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','49a731f14f3b4bae8f16eb6a7a5d3b7a','0','2','0'), ('41527','3','','10477','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','513874d2dce848fca9d5be0f8a698a27','0','2','0'), ('41528','20','get[1.3.6.1.2.1.1.1.0]','10477','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','38a1523e8ce54611842e76fd4f614c15','0','2','0'), ('41529','20','get[1.3.6.1.2.1.1.4.0]','10477','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d83e355ae790441594a2ca6d5ec37de0','0','2','0'), ('41530','17','','10477','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','93d399db31b64d36bfe87a1f99195663','0','2','0'), ('41531','3','','10477','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5261e46912184a41a32c3d309cd8554c','0','2','0'), ('41532','5','','10477','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'777','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7c119d5bedb542f288fe4a04dc629b94','0','2','0'), ('41543','3','','10478','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'780','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8075b9b02fb14be1888ed2a64775f7eb','0','2','0'), ('41544','20','get[1.3.6.1.2.1.1.5.0]','10478','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','52a05ea08b8640f784861b5b2b75dfa8','0','2','0'), ('41545','20','get[1.3.6.1.2.1.1.3.0]','10478','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','848026e8f903413d8faecf0233d69a8e','0','2','0'), ('41546','20','get[1.3.6.1.2.1.1.2.0]','10478','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','06a2d329ae384c8fb773719c34593d0f','0','2','0'), ('41547','20','get[1.3.6.1.2.1.1.6.0]','10478','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dd009a8b6f2d409c89cd5f5c60bea1b8','0','2','0'), ('41548','3','','10478','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','581804928209426ab53c232419f0d201','0','2','0'), ('41549','20','get[1.3.6.1.2.1.1.1.0]','10478','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4d3eab41a8c845a7bfbe5dbb3b6fd45b','0','2','0'), ('41550','20','get[1.3.6.1.2.1.1.4.0]','10478','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a79df3796e4b4f5183a8ee38d554843f','0','2','0'), ('41551','17','','10478','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0f21accc1a4247e9951b6c0d8b9a49af','0','2','0'), ('41552','3','','10478','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','919171c77ef34d96b071d04c279d467f','0','2','0'), ('41553','5','','10478','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'781','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e77993cb5e6f4b71a7fb71cd85ea548a','0','2','0'), ('41564','3','','10479','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'784','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b919a35c522a4e578e4141f3c418d516','0','2','0'), ('41565','20','get[1.3.6.1.2.1.1.5.0]','10479','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','05efe5444887488cad6e765f29c8872a','0','2','0'), ('41566','20','get[1.3.6.1.2.1.1.3.0]','10479','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bc75baec3ea248e5a287b00906e18775','0','2','0'), ('41567','20','get[1.3.6.1.2.1.1.2.0]','10479','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2cdbeb7f0c09494996884bcfd5d97df0','0','2','0'), ('41568','20','get[1.3.6.1.2.1.1.6.0]','10479','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6ee460010096474e9a574efba9f5a321','0','2','0'), ('41569','3','','10479','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8173ce900a384eb6be5941be7ab89b15','0','2','0'), ('41570','20','get[1.3.6.1.2.1.1.1.0]','10479','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b8f058b9f1cb493798fb971c1d06f0d8','0','2','0'), ('41571','20','get[1.3.6.1.2.1.1.4.0]','10479','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','44ae86def1564418a90f4c4a4c0b9e85','0','2','0'), ('41572','17','','10479','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b5d724ef958b4716b09dcbda5ae0ced7','0','2','0'), ('41573','3','','10479','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ad7aa85d14834683b63b43cf48222259','0','2','0'), ('41574','5','','10479','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'785','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5534d6b602624c7a99c70c3b75e4478b','0','2','0'), ('41585','3','','10480','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'788','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c5cc6ac52ea14002b65acbddf9f48045','0','2','0'), ('41586','20','get[1.3.6.1.2.1.1.5.0]','10480','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','59b1e8b64a30407b9e503f94c4b13b8a','0','2','0'), ('41587','20','get[1.3.6.1.2.1.1.3.0]','10480','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c952f3c5768d4bdfa671ffb047968fd6','0','2','0'), ('41588','20','get[1.3.6.1.2.1.1.2.0]','10480','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6f192955e5c64c958f6c7a0564a51d0a','0','2','0'), ('41589','20','get[1.3.6.1.2.1.1.6.0]','10480','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2e0fbbb7dc1d42a199b04261af201a07','0','2','0'), ('41590','3','','10480','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','99b96d870f9e473f82d753e73e5a0662','0','2','0'), ('41591','20','get[1.3.6.1.2.1.1.1.0]','10480','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','98e095b208874cadb7de6380a0b28166','0','2','0'), ('41592','20','get[1.3.6.1.2.1.1.4.0]','10480','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6e1f3e5e1fd2426eb057cd3e6d857826','0','2','0'), ('41593','17','','10480','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d933122252654a9f9f9c6eb8a62f2de0','0','2','0'), ('41594','3','','10480','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','02d39b670ab94ee2a915c2b33aae5b47','0','2','0'), ('41595','5','','10480','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'789','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ac42b3af7d964b16a44b8553e09b5e4e','0','2','0'), ('41606','3','','10481','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'792','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bbdbcca7ead1408f93dda57b8dfab21e','0','2','0'), ('41607','20','get[1.3.6.1.2.1.1.5.0]','10481','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','967b9b8b943d4fb79ff7075d6bb1e31a','0','2','0'), ('41608','20','get[1.3.6.1.2.1.1.3.0]','10481','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','35e0a5603e7c43609c0405135dbaa957','0','2','0'), ('41609','20','get[1.3.6.1.2.1.1.2.0]','10481','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','277a7aa61ce241c089dc5367e9a5e0c3','0','2','0'), ('41610','20','get[1.3.6.1.2.1.1.6.0]','10481','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','72ed8c2083474e38823957e17ca41971','0','2','0'), ('41611','3','','10481','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4d2850a0021b47f581630fdfbba20ea2','0','2','0'), ('41612','20','get[1.3.6.1.2.1.1.1.0]','10481','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bc3fea02652d4c5d82c2179313cc8987','0','2','0'), ('41613','20','get[1.3.6.1.2.1.1.4.0]','10481','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6c3eb8d3da7d437eb04be7c3782c9322','0','2','0'), ('41614','17','','10481','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c9683aa4310744b7889c2e5f8ca7d967','0','2','0'), ('41615','3','','10481','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8c4bc8d2cbcc4433bb59db4137f9ae9d','0','2','0'), ('41616','5','','10481','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'793','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0604fe933a364f40bf3f964f2ba7f6d7','0','2','0'), ('41627','3','','10482','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'796','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3034f0f82fb140fa944491b4627e8187','0','2','0'), ('41628','20','get[1.3.6.1.2.1.1.5.0]','10482','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','84a2ef84a1614afba525253263fcdea4','0','2','0'), ('41629','20','get[1.3.6.1.2.1.1.3.0]','10482','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fea0f7388a314d939626739b0ddf5186','0','2','0'), ('41630','20','get[1.3.6.1.2.1.1.2.0]','10482','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','58d2b5fae1fa41149eed29d761d7e3f7','0','2','0'), ('41631','20','get[1.3.6.1.2.1.1.6.0]','10482','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','85358d92f1ce45c6adb0eb8fa269f8c6','0','2','0'), ('41632','3','','10482','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7b58dc12021b466a9d4d66eb12cfa15d','0','2','0'), ('41633','20','get[1.3.6.1.2.1.1.1.0]','10482','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9dcc1a8373424d52be6e79ec2e1d2ce5','0','2','0'), ('41634','20','get[1.3.6.1.2.1.1.4.0]','10482','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','369c73ea224941c7acc8519bb4a561f1','0','2','0'), ('41635','17','','10482','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d2a55d810c9e484fa230d90b7a5d78a2','0','2','0'), ('41636','3','','10482','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e6054de71dfe487f81f652af7105b63c','0','2','0'), ('41637','5','','10482','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'797','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','642ca5d699a248cb9a354c1a4b0aaed7','0','2','0'), ('41648','3','','10483','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'800','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a370113cc46d4415bea51cefdeb21891','0','2','0'), ('41649','20','get[1.3.6.1.2.1.1.5.0]','10483','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','85d210e692744fbb94d8a794bbc2034a','0','2','0'), ('41650','20','get[1.3.6.1.2.1.1.3.0]','10483','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7e01891bd9194635931778fba9b45fd0','0','2','0'), ('41651','20','get[1.3.6.1.2.1.1.2.0]','10483','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b95e62bdc53a40a9b4bfc4b023a34067','0','2','0'), ('41652','20','get[1.3.6.1.2.1.1.6.0]','10483','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a7ceef9763e24dd890f5d4bc0a4074d3','0','2','0'), ('41653','3','','10483','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6573dd2d23f4490f85d5fffe19e388da','0','2','0'), ('41654','20','get[1.3.6.1.2.1.1.1.0]','10483','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0bee0b14582d47b091304be4fb9b8ba1','0','2','0'), ('41655','20','get[1.3.6.1.2.1.1.4.0]','10483','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','45e9507c2cf1476784a4797dd380e048','0','2','0'), ('41656','17','','10483','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9578f10764514cd68325646e82d44697','0','2','0'), ('41657','3','','10483','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','09e3d93e5dd542ab8436b5b712f77e48','0','2','0'), ('41658','5','','10483','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'801','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7e0d82664c024f0fbeefb38cd4f91bec','0','2','0'), ('41669','3','','10484','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'804','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5300868a14bb4d54a2699577337da83a','0','2','0'), ('41670','20','get[1.3.6.1.2.1.1.5.0]','10484','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fb2143870ae849f38d6349bf97678506','0','2','0'), ('41671','20','get[1.3.6.1.2.1.1.3.0]','10484','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f16dcd469ae44e0bb1a3bf5cd7745172','0','2','0'), ('41672','20','get[1.3.6.1.2.1.1.2.0]','10484','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6521da361f8c4d1383256b2297cbf637','0','2','0'), ('41673','20','get[1.3.6.1.2.1.1.6.0]','10484','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','245703e1e1ec43fd9a4cd2aa687e8062','0','2','0'), ('41674','3','','10484','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e2e270cb27ab438da77094dbeed276c5','0','2','0'), ('41675','20','get[1.3.6.1.2.1.1.1.0]','10484','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','915a3a0b5beb4b04b9cf2cf452625e4b','0','2','0'), ('41676','20','get[1.3.6.1.2.1.1.4.0]','10484','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','628cf911c63948b3acc96071099ee33a','0','2','0'), ('41677','17','','10484','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','82a936c79d154070a261078bff07cd50','0','2','0'), ('41678','3','','10484','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e0d6d460bcd34360a627851069e354ef','0','2','0'), ('41679','5','','10484','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'805','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d8be2555490b4eb68a8b8c7ea20eacb8','0','2','0'), ('41690','3','','10485','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'808','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','62d449bc199943da94effce92d24e522','0','2','0'), ('41691','20','get[1.3.6.1.2.1.1.5.0]','10485','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','02354807e4ca4a049866fe8f793007ff','0','2','0'), ('41692','20','get[1.3.6.1.2.1.1.3.0]','10485','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','72507c577f1748078be97e4e9080b6c9','0','2','0'), ('41693','20','get[1.3.6.1.2.1.1.2.0]','10485','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7eb0b2b9722f4f2c8d0ce0adc189b2f9','0','2','0'), ('41694','20','get[1.3.6.1.2.1.1.6.0]','10485','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','50bcd5f286db4540a6070fb7815b47f5','0','2','0'), ('41695','3','','10485','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','71dc309a3c174cac8d4e5d97fb385252','0','2','0'), ('41696','20','get[1.3.6.1.2.1.1.1.0]','10485','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cd5897cf9ef2423fbcc9ef483e556677','0','2','0'), ('41697','20','get[1.3.6.1.2.1.1.4.0]','10485','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d843cbacd73648d79c3f002ad7d2510b','0','2','0'), ('41698','17','','10485','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fa9062eeb9eb4ea5878c8da04bf728fe','0','2','0'), ('41699','3','','10485','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8084778076a444728f47b436237aa265','0','2','0'), ('41700','5','','10485','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'809','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7a7f3e558ca84e6ebd3279ec7ddaf6ab','0','2','0'), ('41711','3','','10486','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'812','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','213f42d5e99e42a8a75dffbc4116e152','0','2','0'), ('41712','20','get[1.3.6.1.2.1.1.5.0]','10486','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','788f52304f4c480c9e32b7f089279f66','0','2','0'), ('41713','20','get[1.3.6.1.2.1.1.3.0]','10486','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b7517cd5156c4693865edc871df8f7c5','0','2','0'), ('41714','20','get[1.3.6.1.2.1.1.2.0]','10486','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','61c2671ecc0b4fbcb40866ebc30f5ffe','0','2','0'), ('41715','20','get[1.3.6.1.2.1.1.6.0]','10486','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1f119c891ad74776b71c6858adcb67e3','0','2','0'), ('41716','3','','10486','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bc20ba68642a441c90bac530b8847386','0','2','0'), ('41717','20','get[1.3.6.1.2.1.1.1.0]','10486','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9ae03f4d4bcf424e936430198f0762f3','0','2','0'), ('41718','20','get[1.3.6.1.2.1.1.4.0]','10486','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','38753c1261dd42fd8500e843985fdea3','0','2','0'), ('41719','17','','10486','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','92854c9aff57441b9754ba9aabb4ade7','0','2','0'), ('41720','3','','10486','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5c929e46faef4f0c8ee90fe5a34e9092','0','2','0'), ('41721','5','','10486','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'813','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e4f4e0c0df9343a483a186f54d59caaf','0','2','0'), ('41732','3','','10487','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'816','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d232978e9c9649e89d9a18bfac551b9b','0','2','0'), ('41733','20','get[1.3.6.1.2.1.1.5.0]','10487','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','96a7343422ae4c16a0dc8636965209b7','0','2','0'), ('41734','20','get[1.3.6.1.2.1.1.3.0]','10487','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a86251203418473f805f71c7661bcd5b','0','2','0'), ('41735','20','get[1.3.6.1.2.1.1.2.0]','10487','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c806691d31554b558ce6b940725269ba','0','2','0'), ('41736','20','get[1.3.6.1.2.1.1.6.0]','10487','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cb46cc279c9d4622931cc4dd4536d076','0','2','0'), ('41737','3','','10487','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','74855f44b9ab4d008bcef0c81a1bf9b2','0','2','0'), ('41738','20','get[1.3.6.1.2.1.1.1.0]','10487','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bcda47c141cc4b71a80ba54ad8e195df','0','2','0'), ('41739','20','get[1.3.6.1.2.1.1.4.0]','10487','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','70ead6c2139a4ac1a9a52d127920bfda','0','2','0'), ('41740','17','','10487','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ca7ea780520d42788007c25b181ecf6e','0','2','0'), ('41741','3','','10487','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8ff37956cfc544029ac3cbe2c2076156','0','2','0'), ('41742','5','','10487','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'817','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','011c6ec5f5df442890da5b669efbe5dc','0','2','0'), ('41753','3','','10488','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'820','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2bdbc3203fcb4db1a5473c4afedaa619','0','2','0'), ('41754','20','get[1.3.6.1.2.1.1.5.0]','10488','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f5f63d603edf48febfbde03d7d223f1e','0','2','0'), ('41755','20','get[1.3.6.1.2.1.1.3.0]','10488','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f97078f111d54ab7b091f59870baa4a5','0','2','0'), ('41756','20','get[1.3.6.1.2.1.1.2.0]','10488','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ff6a6d61e4f24bc5a0832562ea3b13e0','0','2','0'), ('41757','20','get[1.3.6.1.2.1.1.6.0]','10488','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cdca0920185f4aaf95ee88b13982ba50','0','2','0'), ('41758','3','','10488','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7a77bc7a86684b7e965c0ec344435336','0','2','0'), ('41759','20','get[1.3.6.1.2.1.1.1.0]','10488','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','23382e5a72fa4769832c7fa5ee357153','0','2','0'), ('41760','20','get[1.3.6.1.2.1.1.4.0]','10488','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','de67cf0e735944ba9380730d88b86d06','0','2','0'), ('41761','17','','10488','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c5f15688308f44528a7ed495fce07a94','0','2','0'), ('41762','3','','10488','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','17bd0b5a70754d7eba3c4428ac9b58db','0','2','0'), ('41763','5','','10488','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'821','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2c0f53dbcfa447aea2e9550d502cb111','0','2','0'), ('41774','3','','10489','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'824','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a7fc5ad5ffb14a6185e288617294aa98','0','2','0'), ('41775','20','get[1.3.6.1.2.1.1.5.0]','10489','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e68119b9b48e4a49a4ff3ce41b8bf613','0','2','0'), ('41776','20','get[1.3.6.1.2.1.1.3.0]','10489','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','56f939dcf88843fda2fe4b062cca2d6a','0','2','0'), ('41777','20','get[1.3.6.1.2.1.1.2.0]','10489','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','08476c93ef374c8baba1e6f80c5544cf','0','2','0'), ('41778','20','get[1.3.6.1.2.1.1.6.0]','10489','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','59b84e78871849fd8e2da3608c4fd45f','0','2','0'), ('41779','3','','10489','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','783ce77b38434492a9944dc5b3531a35','0','2','0'), ('41780','20','get[1.3.6.1.2.1.1.1.0]','10489','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','042947145fd142f3a1f6ae86826480eb','0','2','0'), ('41781','20','get[1.3.6.1.2.1.1.4.0]','10489','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','30bc4fcfe70a45ceb6b3a8b945779e31','0','2','0'), ('41782','17','','10489','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','397dd775fe6d4046aa91dfca36d3be96','0','2','0'), ('41783','3','','10489','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bc7299499e2847eeb8d4e9ebcbc2519a','0','2','0'), ('41784','5','','10489','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'825','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','33e8ea0575174bc69002753a5e5d90bd','0','2','0'), ('41795','3','','10490','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'828','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','deea3cfb1f7442edbc4e715ca73395e8','0','2','0'), ('41796','20','get[1.3.6.1.2.1.1.5.0]','10490','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d3e819d5e0dc403fb4b9dafd1ddc59d5','0','2','0'), ('41797','20','get[1.3.6.1.2.1.1.3.0]','10490','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f0b0b111aac440189f71bb1b2830ded3','0','2','0'), ('41798','20','get[1.3.6.1.2.1.1.2.0]','10490','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','530490cf5862413b8e7896aa8c0cb627','0','2','0'), ('41799','20','get[1.3.6.1.2.1.1.6.0]','10490','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d5c52de296b04ceab2cfd1a87ccffc6b','0','2','0'), ('41800','3','','10490','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','468b063753fd4bca861646312909abf7','0','2','0'), ('41801','20','get[1.3.6.1.2.1.1.1.0]','10490','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e35b5c62cfa241fdad672ee8b7303044','0','2','0'), ('41802','20','get[1.3.6.1.2.1.1.4.0]','10490','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e8656127772b4835b2b102d972b29de8','0','2','0'), ('41803','17','','10490','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cc100edb014b4ff8b119ffe683403396','0','2','0'), ('41804','3','','10490','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fe030b0a6cb447a1b1c2fe5f96b2bffa','0','2','0'), ('41805','5','','10490','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'829','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9a70b1387ea14502aadcf05f636e7a5c','0','2','0'), ('41816','3','','10491','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'832','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7915232f946d4a9ea2c441899d063f8d','0','2','0'), ('41817','20','get[1.3.6.1.2.1.1.5.0]','10491','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','73459a4cdf8a45a1a480102cfe5119c1','0','2','0'), ('41818','20','get[1.3.6.1.2.1.1.3.0]','10491','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d379b98f901444368311a7c22c51cbcd','0','2','0'), ('41819','20','get[1.3.6.1.2.1.1.2.0]','10491','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c2a7d5ecda21446bbd55cec32ab3f50e','0','2','0'), ('41820','20','get[1.3.6.1.2.1.1.6.0]','10491','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','37b6610ae0bf4989b1431182dcd239c1','0','2','0'), ('41821','3','','10491','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e2ad26afb3674a63a5ffb68ccfa84ccc','0','2','0'), ('41822','20','get[1.3.6.1.2.1.1.1.0]','10491','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6b3f14b033914ef58797c15a751fe086','0','2','0'), ('41823','20','get[1.3.6.1.2.1.1.4.0]','10491','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9b93b930cf354451b2613f410db63b55','0','2','0'), ('41824','17','','10491','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4b22a7465109474db7a86274de0b519e','0','2','0'), ('41825','3','','10491','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0338080fdaee47d09df04fd70a56889b','0','2','0'), ('41826','5','','10491','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'833','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6814429f90bb417a9af42b7be081b777','0','2','0'), ('41837','3','','10492','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'836','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8b3077a1ea304d48acee2089f8dab717','0','2','0'), ('41838','20','get[1.3.6.1.2.1.1.5.0]','10492','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cd0923c4fed2454f9ba10ae12a237c4a','0','2','0'), ('41839','20','get[1.3.6.1.2.1.1.3.0]','10492','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','473bcbf0aece42b5bf03ac5d9655060f','0','2','0'), ('41840','20','get[1.3.6.1.2.1.1.2.0]','10492','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9dbc5959f5c94484ad27fff82ff1e4a2','0','2','0'), ('41841','20','get[1.3.6.1.2.1.1.6.0]','10492','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8ad2b0e46d544272a2a2a79251830ecd','0','2','0'), ('41842','3','','10492','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cd14c56b398f4e51bc250dbb266d8792','0','2','0'), ('41843','20','get[1.3.6.1.2.1.1.1.0]','10492','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6323e16160534164a046730cb95f8dd4','0','2','0'), ('41844','20','get[1.3.6.1.2.1.1.4.0]','10492','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','69517cfdea8e4602bc7b56f5975e8d64','0','2','0'), ('41845','17','','10492','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b820cdaeb0724fb3b5eb635e7705ee5c','0','2','0'), ('41846','3','','10492','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','183a44fa82d74603a4673f8a213e221f','0','2','0'), ('41847','5','','10492','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'837','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','471ac0649f454c6ab2d386ef593486a9','0','2','0'), ('41858','3','','10493','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'840','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','27bc040d774a492f9ea7661b11931756','0','2','0'), ('41859','20','get[1.3.6.1.2.1.1.5.0]','10493','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5ee60303a3f44dccb8e2636c61ea882b','0','2','0'), ('41860','20','get[1.3.6.1.2.1.1.3.0]','10493','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','349e048d1dc04ae49c6e616a4f4499c7','0','2','0'), ('41861','20','get[1.3.6.1.2.1.1.2.0]','10493','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9757a0d30651457a97860d475e1ce892','0','2','0'), ('41862','20','get[1.3.6.1.2.1.1.6.0]','10493','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7045e4f4ab0244969d7ab6ada0f2d3cc','0','2','0'), ('41863','3','','10493','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a77a1ed1ff254715bc2b3aa4774add63','0','2','0'), ('41864','20','get[1.3.6.1.2.1.1.1.0]','10493','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1aa8ba6aacfd4c358600c68c5b22455e','0','2','0'), ('41865','20','get[1.3.6.1.2.1.1.4.0]','10493','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','db3e28ce72d5488c9d81b4daeaabe9f9','0','2','0'), ('41866','17','','10493','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ad62b571c1c4444881787a040cf03b2b','0','2','0'), ('41867','3','','10493','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','02eacfbcc4c14ac48aba36c142974c46','0','2','0'), ('41868','5','','10493','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'841','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6fc9f1fc908241ff9484e15802f1e4ae','0','2','0'), ('41879','3','','10494','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'844','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ef5bb0f6f7794a899e9158375a100eac','0','2','0'), ('41880','20','get[1.3.6.1.2.1.1.5.0]','10494','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f592e2f6cdde465a85c89944de669418','0','2','0'), ('41881','20','get[1.3.6.1.2.1.1.3.0]','10494','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fadb61328389434c888cb8bfd6e964ed','0','2','0'), ('41882','20','get[1.3.6.1.2.1.1.2.0]','10494','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9977da08f1374d1c82e92332bbcc199e','0','2','0'), ('41883','20','get[1.3.6.1.2.1.1.6.0]','10494','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ba4d97d2010f4d3498fc71e4b10a0941','0','2','0'), ('41884','3','','10494','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3341d9f675074db882fac927d722eaa1','0','2','0'), ('41885','20','get[1.3.6.1.2.1.1.1.0]','10494','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','27c30b2dbe0048ecbd5b1236ac04b542','0','2','0'), ('41886','20','get[1.3.6.1.2.1.1.4.0]','10494','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3d3a73fd1c05477ab6a8bc5bd4a451d9','0','2','0'), ('41887','17','','10494','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','01d49dbd697343eb95913424eb783ca2','0','2','0'), ('41888','3','','10494','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dfaf20182fa7415d84a70157ef7d3a63','0','2','0'), ('41889','5','','10494','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'845','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f6a6763b5b344669ab6b605d3d4707f7','0','2','0'), ('41900','3','','10495','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'848','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ab72f64db4304a2db7c6c2d1ec8eebb4','0','2','0'), ('41901','20','get[1.3.6.1.2.1.1.5.0]','10495','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5577c25fe0ab4decb44fdf31ffd6b345','0','2','0'), ('41902','20','get[1.3.6.1.2.1.1.3.0]','10495','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','44cb15bcd76e4bdba7a5c8f91211226c','0','2','0'), ('41903','20','get[1.3.6.1.2.1.1.2.0]','10495','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','645d1046c0f64a079e97f57f5bb03aad','0','2','0'), ('41904','20','get[1.3.6.1.2.1.1.6.0]','10495','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ece69e2a6d174678a770c6cc05d20b45','0','2','0'), ('41905','3','','10495','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dc2b92f5ee3148828d66f17679873755','0','2','0'), ('41906','20','get[1.3.6.1.2.1.1.1.0]','10495','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','eba52f0801c74394afce9b85132f4a0a','0','2','0'), ('41907','20','get[1.3.6.1.2.1.1.4.0]','10495','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','02174f3b849a4fe490d79273ad9b4d1d','0','2','0'), ('41908','17','','10495','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d661c8c6e6b847d49d722ce1938efee8','0','2','0'), ('41909','3','','10495','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b0933870b3424664ab150192ca5e790f','0','2','0'), ('41910','5','','10495','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'849','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','58e51b1aac7f4433b8f7160d044bc8c4','0','2','0'), ('41921','3','','10496','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'852','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','517295fd0fa14eac945a1f999e25d306','0','2','0'), ('41922','20','get[1.3.6.1.2.1.1.5.0]','10496','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','47326c2cd58242e18397d522df49ad76','0','2','0'), ('41923','20','get[1.3.6.1.2.1.1.3.0]','10496','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','88c412ccc0944b96be165b4de91e5ee9','0','2','0'), ('41924','20','get[1.3.6.1.2.1.1.2.0]','10496','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e4807c61ed6841eb8b96a0e058343b42','0','2','0'), ('41925','20','get[1.3.6.1.2.1.1.6.0]','10496','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','433dfca6d6fd4b4b903c48a3cf862052','0','2','0'), ('41926','3','','10496','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','71383adcc92c44d3866c0c8592c3e99c','0','2','0'), ('41927','20','get[1.3.6.1.2.1.1.1.0]','10496','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','27f4de9554c44842a118ed22da40897f','0','2','0'), ('41928','20','get[1.3.6.1.2.1.1.4.0]','10496','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a1f09e41ce824318be6b2852c82d5ea2','0','2','0'), ('41929','17','','10496','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','977608b526c843f2aca7dcd9a18d9334','0','2','0'), ('41930','3','','10496','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ed501823d99341b88d17ecd8b0b83fc4','0','2','0'), ('41931','5','','10496','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'853','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','18941d2b2b45432f9114b7ff69844ec1','0','2','0'), ('41942','3','','10497','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'856','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','085e72fc9fde405faaeaf097b29e12a8','0','2','0'), ('41943','20','get[1.3.6.1.2.1.1.5.0]','10497','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','819e7be322cb41728e01c9c91ae925f5','0','2','0'), ('41944','20','get[1.3.6.1.2.1.1.3.0]','10497','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','25aaf430db3d4a19a9b0f7c082e904bc','0','2','0'), ('41945','20','get[1.3.6.1.2.1.1.2.0]','10497','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1bde09547e21422ab7e17cdc0503aa53','0','2','0'), ('41946','20','get[1.3.6.1.2.1.1.6.0]','10497','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','db89a699f89f45648f7e10476fbb1ba7','0','2','0'), ('41947','3','','10497','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c0bffcb2d515415db279b20fcdf3c2ad','0','2','0'), ('41948','20','get[1.3.6.1.2.1.1.1.0]','10497','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3f9b8a4a60074fd7b08f15db63e95447','0','2','0'), ('41949','20','get[1.3.6.1.2.1.1.4.0]','10497','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6185cb0ed5824d55ab7a3115e34fcd3e','0','2','0'), ('41950','17','','10497','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7c5a4f5306ae4fa6bb4f428c68eccc5c','0','2','0'), ('41951','3','','10497','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9b58686f36c6431f8c5d7f990403a823','0','2','0'), ('41952','5','','10497','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'857','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','57f802d3cb784200bb047ccd947d34b0','0','2','0'), ('41963','3','','10498','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'860','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8a48b3331df141bda0f3d9cca2b678f2','0','2','0'), ('41964','20','get[1.3.6.1.2.1.1.5.0]','10498','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e6f61d8243514cdebac021b5124fce8c','0','2','0'), ('41965','20','get[1.3.6.1.2.1.1.3.0]','10498','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f7bd0ce4612c46c8a07239b5fe19231a','0','2','0'), ('41966','20','get[1.3.6.1.2.1.1.2.0]','10498','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2736a10a1fc446eb8b9f448e894b14fe','0','2','0'), ('41967','20','get[1.3.6.1.2.1.1.6.0]','10498','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3812d629520d45c58ec3603a4eeca72e','0','2','0'), ('41968','3','','10498','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b781c132adc34334b27b9e7762c4b7d6','0','2','0'), ('41969','20','get[1.3.6.1.2.1.1.1.0]','10498','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8cb003746f8a47a09a21eadb327de4f9','0','2','0'), ('41970','20','get[1.3.6.1.2.1.1.4.0]','10498','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','81a3cea5e62e41ecbecbfa1c3bd821e2','0','2','0'), ('41971','17','','10498','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','324dbec2e7bf49f999411dfb25372701','0','2','0'), ('41972','3','','10498','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f1fb3fc2def948559f1db70e4581bbdd','0','2','0'), ('41973','5','','10498','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'861','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1d892561e2ca48a3a6d8e2aec6ff7505','0','2','0'), ('41984','3','','10499','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'864','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c481552e81c040cc902c5a02e8971ba5','0','2','0'), ('41985','20','get[1.3.6.1.2.1.1.5.0]','10499','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','860ffeeac47c434c8890fef9c13f5105','0','2','0'), ('41986','20','get[1.3.6.1.2.1.1.3.0]','10499','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2d1af72cb5174acfaaf50992b2aeb25e','0','2','0'), ('41987','20','get[1.3.6.1.2.1.1.2.0]','10499','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6d82211969d74fb7b33f1e9d90c83902','0','2','0'), ('41988','20','get[1.3.6.1.2.1.1.6.0]','10499','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a6d38cac0dcc4bb085e6d7dc9536407d','0','2','0'), ('41989','3','','10499','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0b2a45e80039439ca76648ff3eff0515','0','2','0'), ('41990','20','get[1.3.6.1.2.1.1.1.0]','10499','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cd8bd2a11d164a9eafc6771bb80eb449','0','2','0'), ('41991','20','get[1.3.6.1.2.1.1.4.0]','10499','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','65095df07cf849789fe6d78cbc9e2712','0','2','0'), ('41992','17','','10499','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d44db2b3812246e09860a63d42512382','0','2','0'), ('41993','3','','10499','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bee8dc9f001443c38134e692b933aa89','0','2','0'), ('41994','5','','10499','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'865','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c814df3020694764834105ce89cb5232','0','2','0'), ('42005','3','','10500','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'868','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cd22f3bc12c642e1b8bcd708b7ae68a2','0','2','0'), ('42006','20','get[1.3.6.1.2.1.1.5.0]','10500','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8fa41471e9b44d138848ab7ecfb7d354','0','2','0'), ('42007','20','get[1.3.6.1.2.1.1.3.0]','10500','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3ad913927c424bc9b2ab09365921f41a','0','2','0'), ('42008','20','get[1.3.6.1.2.1.1.2.0]','10500','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6320b2b82e3c42f993a053be2ed60a5d','0','2','0'), ('42009','20','get[1.3.6.1.2.1.1.6.0]','10500','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','225a0364e38845b489a9dc94055790ac','0','2','0'), ('42010','3','','10500','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4f918b392de8452b943c71ef69f17fad','0','2','0'), ('42011','20','get[1.3.6.1.2.1.1.1.0]','10500','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2d7c4a734e3b4980b02166caa994d939','0','2','0'), ('42012','20','get[1.3.6.1.2.1.1.4.0]','10500','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','84a4224286024f56a09301195b6efa72','0','2','0'), ('42013','17','','10500','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ba5410ba09354d87a3f3941d3b45b013','0','2','0'), ('42014','3','','10500','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7deb2be6b623485fb0e6bbf88a02dbf7','0','2','0'), ('42015','5','','10500','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'869','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6ee24adf573947e29e23436f45a47e08','0','2','0'), ('42026','3','','10501','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'872','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1456a122964042f48b033f5c31dd8376','0','2','0'), ('42027','20','get[1.3.6.1.2.1.1.5.0]','10501','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3b9de782051549bea9f39dd6ceb6b946','0','2','0'), ('42028','20','get[1.3.6.1.2.1.1.3.0]','10501','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ddbd6f5ee0094e5ca2f62aa07fe71fd5','0','2','0'), ('42029','20','get[1.3.6.1.2.1.1.2.0]','10501','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6455af8d14904fcf892a03989a0b8a37','0','2','0'), ('42030','20','get[1.3.6.1.2.1.1.6.0]','10501','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c92d6baa96784a30a17e785e6214e3e3','0','2','0'), ('42031','3','','10501','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5571d787631e48e782de334341fabb8f','0','2','0'), ('42032','20','get[1.3.6.1.2.1.1.1.0]','10501','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4d6158d361f943af9dd63ef425e5cf28','0','2','0'), ('42033','20','get[1.3.6.1.2.1.1.4.0]','10501','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','64eb10d744834f2697951abf073d5149','0','2','0'), ('42034','17','','10501','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c18df4381e984a599904b4fcf19d2f70','0','2','0'), ('42035','3','','10501','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d39e275bb89745caa0a6b27ac88c58fe','0','2','0'), ('42036','5','','10501','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'873','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','84fc11c2d18449cb8b903b6a8ac05959','0','2','0'), ('42047','3','','10502','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'876','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9a6ed6ec60a74ffd9142d21489ac8470','0','2','0'), ('42048','20','get[1.3.6.1.2.1.1.5.0]','10502','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2258348183a64037bdad1af1a0af29b3','0','2','0'), ('42049','20','get[1.3.6.1.2.1.1.3.0]','10502','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4116de1f7bcb4902adcc14a449d58b80','0','2','0'), ('42050','20','get[1.3.6.1.2.1.1.2.0]','10502','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','90919bb372954e0eb87fae49ed98ca70','0','2','0'), ('42051','20','get[1.3.6.1.2.1.1.6.0]','10502','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f3af39a93b684b99880bfbd50b146ec5','0','2','0'), ('42052','3','','10502','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9ad8e2e7b1ee488f9470836f8cd8f4b6','0','2','0'), ('42053','20','get[1.3.6.1.2.1.1.1.0]','10502','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','449b88f9f0bb423d89def3227b1d9e38','0','2','0'), ('42054','20','get[1.3.6.1.2.1.1.4.0]','10502','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e9f5b25afb7e44918e19df044c71d238','0','2','0'), ('42055','17','','10502','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','886163a11a0d4dd4922fc4fda700ddcf','0','2','0'), ('42056','3','','10502','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9a3155664a4d4f5797733f66939bc506','0','2','0'), ('42057','5','','10502','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'877','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8aa3e5e4cb8440998922015c32994cd2','0','2','0'), ('42068','3','','10233','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'880','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cba2e98b8ea14ff0a03dee515337ac7d','0','2','0'), ('42069','20','get[1.3.6.1.2.1.1.5.0]','10233','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2d99a01f7c0d4ca38f3bc9a5f8db3ab7','0','2','0'), ('42070','20','get[1.3.6.1.2.1.1.3.0]','10233','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ff6fea946fb143e3b8b151eafb403952','0','2','0'), ('42071','20','get[1.3.6.1.2.1.1.2.0]','10233','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9d8a27d216f146ae88479e8e6bcbd301','0','2','0'), ('42072','20','get[1.3.6.1.2.1.1.6.0]','10233','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9766fcd2e7b64865a6ef60f3ab27002f','0','2','0'), ('42073','3','','10233','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','81b47dcd39864dd6812344bd0dc34963','0','2','0'), ('42074','20','get[1.3.6.1.2.1.1.1.0]','10233','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','763d10f3cf344cd488db9c156c893d18','0','2','0'), ('42075','20','get[1.3.6.1.2.1.1.4.0]','10233','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9d2b98385edb49979abcde5481560253','0','2','0'), ('42076','17','','10233','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','540698a8c58d4a659e2c2ecdd5cb76e0','0','2','0'), ('42077','3','','10233','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3bb0c6c8aad64f21a11dc58c6be2eeaf','0','2','0'), ('42078','5','','10233','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'881','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','754f890d63c042f6976a1ad25c317574','0','2','0'), ('42089','3','','10234','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'884','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a3d05c4b2b2e40ba8cd29255012f5582','0','2','0'), ('42090','20','get[1.3.6.1.2.1.1.5.0]','10234','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','53b0dbb74854494eb834804a1f0afbe7','0','2','0'), ('42091','20','get[1.3.6.1.2.1.1.3.0]','10234','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6538a853fd47460585dbc2b4853ea65b','0','2','0'), ('42092','20','get[1.3.6.1.2.1.1.2.0]','10234','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8d5bfc785de5459c967659306d66b7e5','0','2','0'), ('42093','20','get[1.3.6.1.2.1.1.6.0]','10234','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','eeeceba5d9dd43de856ada8b5460f3d5','0','2','0'), ('42094','3','','10234','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4c2b7fe079ba45f6b150d9aeda4b8ab1','0','2','0'), ('42095','20','get[1.3.6.1.2.1.1.1.0]','10234','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','59c81fd37e334a0ba60b1256d3730624','0','2','0'), ('42096','20','get[1.3.6.1.2.1.1.4.0]','10234','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','44a19d5435e8476dafa2e52b481b9c75','0','2','0'), ('42097','17','','10234','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6f2e3553d7874f81b184b1b25a3d9ac6','0','2','0'), ('42098','3','','10234','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f6d11b8498e04df9bcf392aee2aacde3','0','2','0'), ('42099','5','','10234','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'885','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','755ae00add264d2ba735b45f7dc5ca23','0','2','0'), ('42100','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10234','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d37bcb60aa354c55b363e33c5ec3af9d','0','2','0'), ('42101','20','get[1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}]','10234','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','832ec51626724ebdb03b8d6134b6f786','0','2','0'), ('42102','20','get[1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}]','10234','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','50f169f55fb949aebf4233b702f2edb9','0','2','0'), ('42103','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10234','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','055c64e171144b119b2e0b2c427e1c77','0','2','0'), ('42104','20','get[1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}]','10234','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','036b6e8533044a0a8c5101f0dbc38c2f','0','2','0'), ('42105','20','get[1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}]','10234','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6ec1a97308a74aea8b68a1854d6692eb','0','2','0'), ('42106','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10234','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','36d9193337164198a0fcb76bc3d9adcf','0','2','0'), ('42107','20','get[1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}]','10234','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n'' then the speed of the interface is somewhere in the range of `n-500,000'' to`n+499,999''. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f5f25ce6e6604f0b9b2d685d664c7469','0','2','0'), ('42108','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10234','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'882','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','96d56a8cb6024d5d9841b7ac817e5aab','0','2','0'), ('42109','20','get[1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}]','10234','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','31d','0','0','3','','','','',NULL,'883','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2baed21110ca4e50af898442668bdd8b','0','2','0'), ('42110','3','','10235','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'889','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','89d60f525bd04be28cc4267d0224cdb6','0','2','0'), ('42111','20','get[1.3.6.1.2.1.1.3.0]','10235','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0123f7f4eab541a786130af4fbb2a534','0','2','0'), ('42112','20','get[1.3.6.1.2.1.1.2.0]','10235','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','237a5f0537a549b3a63ed7f81d0b6122','0','2','0'), ('42113','20','get[1.3.6.1.2.1.1.5.0]','10235','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aa2a90f772154d0e9354d496afae9939','0','2','0'), ('42114','20','get[1.3.6.1.2.1.1.6.0]','10235','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','de9a507ae83247398a4708fff2889862','0','2','0'), ('42115','3','','10235','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8f355d66881c47b5be8097dbd1f950d1','0','2','0'), ('42116','20','get[1.3.6.1.2.1.1.1.0]','10235','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3701b10845d449a3b1a5d67a7d743ca4','0','2','0'), ('42117','20','get[1.3.6.1.2.1.1.4.0]','10235','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b821576134ff4185a3e11b35763b7d1d','0','2','0'), ('42118','17','','10235','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','568c2b550b944dd084ec4e4486e7ec72','0','2','0'), ('42119','3','','10235','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6138402da32a40259bb26f217be2df59','0','2','0'), ('42120','5','','10235','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'890','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3e44eea15b2a4b2c994fb3372c538466','0','2','0'), ('42121','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10235','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','868afe31f18b401f9af17050f7b4f797','0','2','0'), ('42122','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2]','10235','EtherLike-MIB Discovery','net.if.duplex.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c646f18c6ab34ff285f5de376fbe3dd3','0','2','0'), ('42123','20','get[1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}]','10235','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','468b2fe6bbdc4e7e8c41b3c1eff79c50','0','2','0'), ('42124','20','get[1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}]','10235','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7834edab485241e1bf065c0b314fcfc7','0','2','0'), ('42125','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10235','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f6d6b81658db4ba1b4edc2bf245816ce','0','2','0'), ('42126','20','get[1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}]','10235','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1d1e8f319cf84bc4813e07b4d1637e83','0','2','0'), ('42127','20','get[1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}]','10235','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','69fddbf678284814ba8ec7f68314be5c','0','2','0'), ('42128','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10235','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dfc2d7184bd84c6592072857fc2abc48','0','2','0'), ('42129','20','get[1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}]','10235','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','5m','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n'' then the speed of the interface is somewhere in the range of `n-500,000'' to`n+499,999''. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1aade0dd9063467e9fd1841b84e710f5','0','2','0'), ('42130','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10235','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'887','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','37fffae80d9243d0863909fdae8683a2','0','2','0'), ('42131','20','get[1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}]','10235','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','31d','0','0','3','','','','',NULL,'888','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','950d69eedab445a09d53f002a499d25c','0','2','0'), ('42132','20','get[1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX}]','10235','Interface {#IFNAME}({#IFALIAS}): Duplex status','net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'886','','','0','','','','','2',NULL,'MIB: EtherLike-MIB The current mode of operation of the MAC entity. ''unknown'' indicates that the current duplex mode could not be determined. Management control of the duplex mode is accomplished through the MAU MIB. When an interface does not support autonegotiation, or when autonegotiation is not enabled, the duplex mode is controlled using ifMauDefaultType. When autonegotiation is supported and enabled, duplex mode is controlled using ifMauAutoNegAdvertisedBits. In either case, the currently operating duplex mode is reflected both in this object and in ifMauType. Note that this object provides redundant information with ifMauType. Normally, redundant objects are discouraged. However, in this instance, it allows a management application to determine the duplex status of an interface without having to know every possible value of ifMauType. This was felt to be sufficiently valuable to justify the redundancy. Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a1fa545a0ca74492b635d37e94785d39','0','2','0'), ('42133','3','','10236','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'893','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e9f5ba061b7e41e7bac26aeec105f4da','0','2','0'), ('42134','3','','10236','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','71567de591174a64aafd48aebae0b4f4','0','2','0'), ('42135','3','','10236','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dde3ad74c18847f4a91bee29b20a6364','0','2','0'), ('42136','17','','10236','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','707bcd801726449d9a7d3de0fa650c0a','0','2','0'), ('42137','20','get[1.3.6.1.2.1.1.4.0]','10236','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2b293fd8a3e346f9be437ae539dca3c3','0','2','0'), ('42138','20','get[1.3.6.1.2.1.1.1.0]','10236','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4727c07daa0c413aa4bbc293198f9cde','0','2','0'), ('42139','20','get[1.3.6.1.2.1.1.6.0]','10236','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3cfe39b7d7f9401190de46aa86a04686','0','2','0'), ('42140','20','get[1.3.6.1.2.1.1.5.0]','10236','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','72bc86c14222404cad76bc04836d11eb','0','2','0'), ('42141','20','get[1.3.6.1.2.1.1.2.0]','10236','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','78034b7a1d964b199f6a12c43821c27e','0','2','0'), ('42142','20','get[1.3.6.1.2.1.1.3.0]','10236','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cb63d68e6d0143049534225d1d69da12','0','2','0'), ('42143','5','','10236','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'894','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b6cd5b22d8014aa18fdb7735d77cc84c','0','2','0'), ('42154','3','','10237','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'897','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','473f39f191164f578539e842f18bfe65','0','2','0'), ('42155','20','get[1.3.6.1.2.1.1.5.0]','10237','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5994fe565b1d437f8e9f1d0d8ec83104','0','2','0'), ('42156','20','get[1.3.6.1.2.1.1.3.0]','10237','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','de270e3ac6874ca59a236a040d82c099','0','2','0'), ('42157','20','get[1.3.6.1.2.1.1.2.0]','10237','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2fbfe02459724f089b5bcd31ff6245d9','0','2','0'), ('42158','20','get[1.3.6.1.2.1.1.6.0]','10237','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','eabbdf5343fb42bfa3e5f13bc51ad66d','0','2','0'), ('42159','3','','10237','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','11297d0102734139aa4fa81eefad9839','0','2','0'), ('42160','20','get[1.3.6.1.2.1.1.1.0]','10237','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a05d416bcdde44929f091c4cde2e6537','0','2','0'), ('42161','20','get[1.3.6.1.2.1.1.4.0]','10237','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','362b533375e544d9804eba534e5f4935','0','2','0'), ('42162','17','','10237','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','11edabc72e4a4d69a0dc9c36458fbfbc','0','2','0'), ('42163','3','','10237','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d8416e68bab94a568b8fbc67927ae739','0','2','0'), ('42164','5','','10237','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'898','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0aad82f9addd45efa20253da000ec699','0','2','0'), ('42165','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10237','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','441118e6712e4f6bae4c9cab7be8d0a2','0','2','0'), ('42166','20','get[1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}]','10237','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e97fb75ee1254ea092a9fb51b1bac108','0','2','0'), ('42167','20','get[1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}]','10237','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cec2d0f88b494cb8b49a8e234108cbbb','0','2','0'), ('42168','20','get[1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX}]','10237','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifInOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface,including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and another times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0610c78c5be54df29ef6833758331896','0','2','0'), ('42169','20','get[1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}]','10237','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9a129fa67db34b4fa6af29e4c0936f09','0','2','0'), ('42170','20','get[1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}]','10237','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','016c8fc0a0524df3b5fa9a7d6a28fb94','0','2','0'), ('42171','20','get[1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX}]','10237','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifOutOctets.{#SNMPINDEX}]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','84be5259caec44cfb5963e8d31c27e71','0','2','0'), ('42172','20','get[1.3.6.1.2.1.2.2.1.5.{#SNMPINDEX}]','10237','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifSpeed.{#SNMPINDEX}]','5m','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in bits per second. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. If the bandwidth of the interface is greater than the maximum value reportable by this object then this object should report its maximum value (4,294,967,295) and ifHighSpeed must be used to report the interface''s speed. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','570b2d64c79748ac9c8350fa68933de5','0','2','0'), ('42173','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10237','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','1m','31d','0','0','3','','','','',NULL,'895','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ec9624acd1d940e49f6cb996551ec66b','0','2','0'), ('42174','20','get[1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}]','10237','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','1h','31d','0','0','3','','','','',NULL,'896','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','435d93d378d646c388ddccb22bb43dc9','0','2','0'), ('42175','0','','10076','Host name of Zabbix agent running','agent.hostname','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4c80c15f5741464882aa238f27bec1bd','0','2','0'), ('42176','0','','10076','Zabbix agent ping','agent.ping','1m','31d','365d','0','3','','','','',NULL,'900','','','0','','','','','0',NULL,'The agent always returns "1" for this item. May be used in combination with `nodata()` for the availability check.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','05849e0fb6504d339f2aebe159427bec','0','2','0'), ('42177','0','','10076','Version of Zabbix agent running','agent.version','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fe4731720ba64eebbf125929e499209b','0','2','0'), ('42178','5','','10076','Zabbix agent availability','zabbix[host,agent,available]','1m','31d','365d','0','3','','','','',NULL,'899','','','0','','','','','0',NULL,'Used for monitoring the availability status of the agent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','304a3e9bb7594c83b027a32c34aeab28','0','2','0'), ('42179','0','','10075','Host name of Zabbix agent running','agent.hostname','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','74bc1a15ef314d5f9b26332531885c0d','0','2','0'), ('42180','0','','10075','Zabbix agent ping','agent.ping','1m','31d','365d','0','3','','','','',NULL,'902','','','0','','','','','0',NULL,'The agent always returns "1" for this item. May be used in combination with `nodata()` for the availability check.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','da59d099f7614653b37b8eaaa518ebd2','0','2','0'), ('42181','0','','10075','Version of Zabbix agent running','agent.version','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e2b84269401e41acb973bc29666b9e7a','0','2','0'), ('42182','5','','10075','Zabbix agent availability','zabbix[host,agent,available]','1m','31d','365d','0','3','','','','',NULL,'901','','','0','','','','','0',NULL,'Used for monitoring the availability status of the agent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cbfaa94dc7bc4606a792aaf357054075','0','2','0'), ('42183','0','','10077','Host name of Zabbix agent running','agent.hostname','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','27949a6910304d39b3d2a68c90525581','0','2','0'), ('42184','0','','10077','Zabbix agent ping','agent.ping','1m','31d','365d','0','3','','','','',NULL,'904','','','0','','','','','0',NULL,'The agent always returns "1" for this item. May be used in combination with `nodata()` for the availability check.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','98507eac4f70420698dc234c2a6e3198','0','2','0'), ('42185','0','','10077','Version of Zabbix agent running','agent.version','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3f456ce86b284b089f545d8c72c64405','0','2','0'), ('42186','5','','10077','Zabbix agent availability','zabbix[host,agent,available]','1m','31d','365d','0','3','','','','',NULL,'903','','','0','','','','','0',NULL,'Used for monitoring the availability status of the agent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5b0a1ce4ca4a441484eea38724eaf24d','0','2','0'), ('42187','0','','10001','Host name of Zabbix agent running','agent.hostname','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','df561a0cece94760a78704edf7da7326','0','2','0'), ('42188','0','','10001','Free swap space','system.swap.size[,free]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The free space of the swap volume/file expressed in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','160b82c121b147cbbf18c34dbb01d3ce','0','2','0'), ('42189','0','','10001','CPU system time','system.cpu.util[,system]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has spent running the kernel and its processes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d93097ed5ce74d35b6041ef2b5ba18e8','0','2','0'), ('42190','0','','10001','CPU user time','system.cpu.util[,user]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has spent running users'' processes that are not niced.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','57f9e2e34fab41e18e2bc93e786c92c6','0','2','0'), ('42191','0','','10001','System name','system.hostname','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The host name of the system.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','207341f390134e37ad431e2823666eb9','0','2','0'), ('42192','0','','10001','System local time','system.localtime','1m','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'The local system time of the host.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6072902361404672a444841c786875e6','0','2','0'), ('42193','0','','10001','Operating system architecture','system.sw.arch','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The architecture of the operating system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fd21580a151246b0a340bf924c326aa8','0','2','0'), ('42194','0','','10001','Operating system','system.sw.os','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5e4c3d14634843e9b7b182e8fc08efbe','0','2','0'), ('42195','0','','10001','Number of installed packages','system.sw.packages.get','1h','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','58818005e76d46dda14d6592f601ab00','0','2','0'), ('42196','0','','10001','Free swap space in %','system.swap.size[,pfree]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The free space of the swap volume/file expressed in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ca423242172f4b20ba47c26f4a61aee7','0','2','0'), ('42197','0','','10001','Zabbix agent ping','agent.ping','1m','31d','365d','0','3','','','','',NULL,'908','','','0','','','','','0',NULL,'The agent always returns "1" for this item. May be used in combination with `nodata()` for the availability check.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f94f9f4699e94c369e6c98b2a2f485ce','0','2','0'), ('42198','0','','10001','Total swap space','system.swap.size[,total]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total space of the swap volume/file expressed in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','102c81b5523c4be0b4beae3cb88ebde1','0','2','0'), ('42199','0','','10001','System description','system.uname','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The information as normally returned by `uname -a`.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fc6898682f904c57ba28bcb3748b237f','0','2','0'), ('42200','0','','10001','System uptime','system.uptime','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The system uptime expressed in the following format: "N days, hh:mm:ss".','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8537f6c6ac6b438c80caf227946df891','0','2','0'), ('42201','0','','10001','Number of logged in users','system.users.num','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of users who are currently logged in.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','88056b3d2e424d5aba7cabcd4b043c9e','0','2','0'), ('42202','0','','10001','Checksum of /etc/passwd','vfs.file.cksum[/etc/passwd,sha256]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3b93d3590df24a46b29f6eb06f5e2446','0','2','0'), ('42203','0','','10001','Available memory','vm.memory.size[available]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The available memory: - in Linux = free + buffers + cache; - on other platforms calculation may vary. See also Appendixes in Zabbix Documentation about parameters of the `vm.memory.size` item.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e811e6e2ae84461294e121f12e767b40','0','2','0'), ('42204','0','','10001','Available memory in %','vm.memory.size[pavailable]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The available memory as percentage of the total. See also Appendixes in Zabbix Documentation about parameters of the `vm.memory.size` item.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','20779a4c43374e5f9bea2584e93b85ef','0','2','0'), ('42205','0','','10001','Total memory','vm.memory.size[total]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total memory expressed in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d5c3541a7c0949ce812df1beb0732941','0','2','0'), ('42206','0','','10001','CPU steal time','system.cpu.util[,steal]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of "stolen" CPU from this virtual machine by the hypervisor for other tasks, such as running another virtual machine.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3161dbd18e874e69b729c8e903cf7390','0','2','0'), ('42207','0','','10001','CPU softirq time','system.cpu.util[,softirq]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has been servicing software interrupts.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a949a36004a449c58bef0cdc9d3fafd6','0','2','0'), ('42208','0','','10001','CPU nice time','system.cpu.util[,nice]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has spent running users'' processes that have been niced.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8ee6e54c86ba44ab88bb9e83c632c1ed','0','2','0'), ('42209','0','','10001','Load average (1m avg)','system.cpu.load[all,avg1]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Calculated as the system CPU load divided by the number of CPU cores.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','48528aa936a04c8189375a6eae4033da','0','2','0'), ('42210','0','','10001','Version of Zabbix agent running','agent.version','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','27c42cf180b44632b5d9b8b5788165b3','0','2','0'), ('42211','0','','10001','Maximum number of open file descriptors','kernel.maxfiles','1h','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'May be increased by using the `sysctl` utility or modifying the file `/etc/sysctl.conf`.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ef386d03ff2c42ffa236acd5215ad547','0','2','0'), ('42212','0','','10001','Maximum number of processes','kernel.maxproc','1h','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'May be increased by using the `sysctl` utility or modifying the file `/etc/sysctl.conf`.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','678d70c041954ac8982fb5118b49f6e7','0','2','0'), ('42213','0','','10001','Number of processes','proc.num','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ab7d0471092544a6a950184d1bac906d','0','2','0'), ('42214','0','','10001','Number of running processes','proc.num[,,run]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b2637293884d40108f41b11767dd5be0','0','2','0'), ('42215','0','','10001','System boot time','system.boottime','15m','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','27cb0f66bb624146acfdd81b58f108a3','0','2','0'), ('42216','0','','10001','Interrupts per second','system.cpu.intr','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of interrupts processed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5d186a46867b4eaaafd6396d3239dd3b','0','2','0'), ('42217','0','','10001','Load average (5m avg)','system.cpu.load[all,avg5]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Calculated as the system CPU load divided by the number of CPU cores.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','953beb580df8418cb88b667b9dd37259','0','2','0'), ('42218','0','','10001','CPU iowait time','system.cpu.util[,iowait]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has been waiting for I/O to complete.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5df67d9162cc437585990cc8708be894','0','2','0'), ('42219','0','','10001','Load average (15m avg)','system.cpu.load[all,avg15]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Calculated as the system CPU load divided by the number of CPU cores.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5716000e38e24dae8ead4ed98ede024b','0','2','0'), ('42220','0','','10001','Number of CPUs','system.cpu.num','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f72e115544eb4079b09fec8c3539241c','0','2','0'), ('42221','0','','10001','Context switches per second','system.cpu.switches','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The combined rate at which all processors on the computer are switched from one thread to another.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','73e85aa10a704fc7950d2d077f0c54ee','0','2','0'), ('42222','0','','10001','CPU guest time','system.cpu.util[,guest]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time spent on running a virtual CPU for a guest operating system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','69b187838fb74f319e47c2ff4f99ef54','0','2','0'), ('42223','0','','10001','CPU guest nice time','system.cpu.util[,guest_nice]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time spent on running a niced guest (a virtual CPU for guest operating systems under the control of the Linux kernel).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a2b07497f2f343a99d26ad77e65bb54f','0','2','0'), ('42224','0','','10001','CPU idle time','system.cpu.util[,idle]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has spent doing nothing.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7aad6d159baa4a24901847144f0d231b','0','2','0'), ('42225','0','','10001','CPU interrupt time','system.cpu.util[,interrupt]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has spent servicing hardware interrupts.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cc4bc7693ae84f9bb18cee38d0814195','0','2','0'), ('42226','5','','10001','Zabbix agent availability','zabbix[host,agent,available]','1m','31d','365d','0','3','','','','',NULL,'907','','','0','','','','','0',NULL,'Used for monitoring the availability status of the agent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ca48c53be1bf46ae9dd2707158a55139','0','2','0'), ('42271','0','','10001','Network interface discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The discovery of network interfaces.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','acfdea9c46ef48c68e6636f43b8f96a2','0','2','0'), ('42272','0','','10001','Block devices discovery','vfs.dev.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2bbdc79f082d4c618e01bec625e9c90a','0','2','0'), ('42277','0','','10001','Interface {#IFNAME}: Inbound packets discarded','net.if.in["{#IFNAME}",dropped]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4d66608e190e4be7a438ea5d0d26e353','0','2','0'), ('42278','0','','10001','Interface {#IFNAME}: Inbound packets with errors','net.if.in["{#IFNAME}",errors]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ed79960ca91f4e2ca45fed014a02c50b','0','2','0'), ('42279','0','','10001','Interface {#IFNAME}: Bits received','net.if.in["{#IFNAME}"]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c9941a1f8d904309b581cae5ccc1660c','0','2','0'), ('42280','0','','10001','Interface {#IFNAME}: Outbound packets discarded','net.if.out["{#IFNAME}",dropped]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0795a375a41d46a2b5c89547061cec8e','0','2','0'), ('42281','0','','10001','Interface {#IFNAME}: Outbound packets with errors','net.if.out["{#IFNAME}",errors]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f8e8bbc069414e928a5da9817f4599a5','0','2','0'), ('42282','0','','10001','Interface {#IFNAME}: Bits sent','net.if.out["{#IFNAME}"]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','82897d99b0114c67b0f5b449c768c8e7','0','2','0'), ('42283','0','','10001','Interface {#IFNAME}: Operational status','vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"]','1m','31d','0','0','3','','','','',NULL,'905','','','0','','','','','2',NULL,'Reference: https://www.kernel.org/doc/Documentation/networking/operstates.txt','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3efd24ad36b04eb995cfeab82721c2fe','0','2','0'), ('42284','0','','10001','Interface {#IFNAME}: Interface type','vfs.file.contents["/sys/class/net/{#IFNAME}/type"]','1h','31d','0','0','3','','','','',NULL,'906','','','0','','','','','2',NULL,'It indicates the interface protocol type as a decimal value. See `include/uapi/linux/if_arp.h` for all possible values. Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d537e74070c74e4385ad241e8514dd3a','0','2','0'), ('42285','15','','10001','{#DEVNAME}: Disk read request avg waiting time (r_await)','vfs.dev.read.await[{#DEVNAME}]','1m','31d','365d','0','0','','!ms','','',NULL,NULL,'(last(//vfs.dev.read.time.rate[{#DEVNAME}])/(last(//vfs.dev.read.rate[{#DEVNAME}])+(last(//vfs.dev.read.rate[{#DEVNAME}])=0)))*1000*(last(//vfs.dev.read.rate[{#DEVNAME}]) > 0)','','0','','','','','2',NULL,'This formula contains two Boolean expressions that evaluate to 1 or 0 in order to set the calculated metric to zero and to avoid the exception - division by zero.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9600208af80e4a6abe55bb5a2240ea8e','0','2','0'), ('42286','15','','10001','{#DEVNAME}: Disk write request avg waiting time (w_await)','vfs.dev.write.await[{#DEVNAME}]','1m','31d','365d','0','0','','!ms','','',NULL,NULL,'(last(//vfs.dev.write.time.rate[{#DEVNAME}])/(last(//vfs.dev.write.rate[{#DEVNAME}])+(last(//vfs.dev.write.rate[{#DEVNAME}])=0)))*1000*(last(//vfs.dev.write.rate[{#DEVNAME}]) > 0)','','0','','','','','2',NULL,'This formula contains two Boolean expressions that evaluate to 1 or 0 in order to set the calculated metric to zero and to avoid the exception - division by zero.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5907708cf4854d48ae3ebf8f0bc41eef','0','2','0'), ('42287','0','','10001','{#DEVNAME}: Get stats','vfs.file.contents[/sys/block/{#DEVNAME}/stat]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The contents of get `/sys/block/{#DEVNAME}/stat` to get the disk statistics.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8309fd01a5864ad68866717d0fe67080','0','2','0'), ('42319','7','','10343','Host name of Zabbix agent running','agent.hostname','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a31cfdf92de04535adb957e0c72f54bd','0','2','0'), ('42320','7','','10343','Free swap space','system.swap.size[,free]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The free space of the swap volume/file expressed in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f08e1de57cbd4b08b9fd3294d0d95906','0','2','0'), ('42321','7','','10343','CPU system time','system.cpu.util[,system]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has spent running the kernel and its processes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','75622323ae4447e8a21a04ef191fdc2d','0','2','0'), ('42322','7','','10343','CPU user time','system.cpu.util[,user]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has spent running users'' processes that are not niced.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c74b64926aae4a8e8c2299d8bfe2e188','0','2','0'), ('42323','7','','10343','System name','system.hostname','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The host name of the system.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fdf4eb1b98d04b229a1c9a3c0b5837ba','0','2','0'), ('42324','7','','10343','System local time','system.localtime','1m','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'The local system time of the host.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c8fa467600ab48ce8cec353bab6c3a54','0','2','0'), ('42325','7','','10343','Operating system architecture','system.sw.arch','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The architecture of the operating system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','627cbcb2432a4aeda6e90363d9b0c1db','0','2','0'), ('42326','7','','10343','Operating system','system.sw.os','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d8c633f2fd1947028079a5939835dcd8','0','2','0'), ('42327','7','','10343','Number of installed packages','system.sw.packages.get','1h','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','16b1e5ab950040ef8c29139e0649d622','0','2','0'), ('42328','7','','10343','Free swap space in %','system.swap.size[,pfree]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The free space of the swap volume/file expressed in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','56b8f84d22264b92b70a6ab0c3c70f19','0','2','0'), ('42329','7','','10343','CPU softirq time','system.cpu.util[,softirq]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has been servicing software interrupts.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2ff77e25f0fe45238c64a6532735cdd5','0','2','0'), ('42330','7','','10343','Total swap space','system.swap.size[,total]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total space of the swap volume/file expressed in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3a9fb924ab1d47168ffcab9d237d808a','0','2','0'), ('42331','7','','10343','System description','system.uname','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The information as normally returned by `uname -a`.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d3d73dcc92b34511971eddf956dc4c0f','0','2','0'), ('42332','7','','10343','System uptime','system.uptime','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The system uptime expressed in the following format: "N days, hh:mm:ss".','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','51bdea745e0547ad92a74fefaea54e39','0','2','0'), ('42333','7','','10343','Number of logged in users','system.users.num','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of users who are currently logged in.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4ea1cfb5813a422b98caebcd870959ef','0','2','0'), ('42334','7','','10343','Checksum of /etc/passwd','vfs.file.cksum[/etc/passwd,sha256]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','87f35de24ba74a8d8f70430c8da85261','0','2','0'), ('42335','7','','10343','Available memory','vm.memory.size[available]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The available memory: - in Linux = free + buffers + cache; - on other platforms calculation may vary. See also Appendixes in Zabbix Documentation about parameters of the `vm.memory.size` item.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5bf94ec3debc459fa3e13449199052ee','0','2','0'), ('42336','7','','10343','Available memory in %','vm.memory.size[pavailable]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The available memory as percentage of the total. See also Appendixes in Zabbix Documentation about parameters of the `vm.memory.size` item.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','99efd95a41b34457a2ec0d8c96324e7c','0','2','0'), ('42337','7','','10343','Total memory','vm.memory.size[total]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total memory expressed in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','013fe8b15c86442eadc10763706ec594','0','2','0'), ('42338','7','','10343','CPU steal time','system.cpu.util[,steal]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of "stolen" CPU from this virtual machine by the hypervisor for other tasks, such as running another virtual machine.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','434c154ba392476f9ad8a94968840e19','0','2','0'), ('42339','7','','10343','CPU nice time','system.cpu.util[,nice]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has spent running users'' processes that have been niced.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d965fa68eea3454e83179116c5483322','0','2','0'), ('42340','7','','10343','Zabbix agent ping','agent.ping','1m','31d','365d','0','3','','','','',NULL,'912','','','0','','','','','0',NULL,'The agent always returns "1" for this item. May be used in combination with `nodata()` for the availability check.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7c266646bfa843dabfe4ba5a3fd9026e','0','2','0'), ('42341','7','','10343','Load average (1m avg)','system.cpu.load[all,avg1]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Calculated as the system CPU load divided by the number of CPU cores.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c692df07acc44b4ea1f4f88cd4ee64eb','0','2','0'), ('42342','7','','10343','Version of Zabbix agent running','agent.version','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','91dbe302bd8e4954b91e9ce3a795b4eb','0','2','0'), ('42343','7','','10343','Maximum number of open file descriptors','kernel.maxfiles','1h','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'May be increased by using the `sysctl` utility or modifying the file `/etc/sysctl.conf`.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','66ed2ffc888c40c6b80dcc259c087d08','0','2','0'), ('42344','7','','10343','Maximum number of processes','kernel.maxproc','1h','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'May be increased by using the `sysctl` utility or modifying the file `/etc/sysctl.conf`.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d60cc4367893424d9671b1f05ba83599','0','2','0'), ('42345','7','','10343','Number of processes','proc.num','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ccb6fdbe1267475780e978c0c5de986c','0','2','0'), ('42346','7','','10343','Number of running processes','proc.num[,,run]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','436bf5615731425a97fdcdbaac5f4000','0','2','0'), ('42347','7','','10343','System boot time','system.boottime','15m','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','42bb6cbed08a4884a99328b38e4c1654','0','2','0'), ('42348','7','','10343','Interrupts per second','system.cpu.intr','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of interrupts processed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0a2218b9d9124c7284962f84bdefaab8','0','2','0'), ('42349','7','','10343','Load average (5m avg)','system.cpu.load[all,avg5]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Calculated as the system CPU load divided by the number of CPU cores.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','18862acd219e4259a9b9665c32550fa5','0','2','0'), ('42350','7','','10343','CPU iowait time','system.cpu.util[,iowait]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has been waiting for I/O to complete.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4859bb1b6e21469a917aa56fbfbe1698','0','2','0'), ('42351','7','','10343','Load average (15m avg)','system.cpu.load[all,avg15]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Calculated as the system CPU load divided by the number of CPU cores.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','61040b6d85df4a2087e562f0216e723d','0','2','0'), ('42352','7','','10343','Number of CPUs','system.cpu.num','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6e98a6a53c1a44c09b5e3c19971b834c','0','2','0'), ('42353','7','','10343','Context switches per second','system.cpu.switches','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The combined rate at which all processors on the computer are switched from one thread to another.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','47e3a1d3955d4bccb07a0e32f768273d','0','2','0'), ('42354','7','','10343','CPU guest time','system.cpu.util[,guest]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time spent on running a virtual CPU for a guest operating system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4ef463cc12da45e6b5a97cee93fd5ba0','0','2','0'), ('42355','7','','10343','CPU guest nice time','system.cpu.util[,guest_nice]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time spent on running a niced guest (a virtual CPU for guest operating systems under the control of the Linux kernel).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0cb7f1c9774241968208724ab56f4d86','0','2','0'), ('42356','7','','10343','CPU idle time','system.cpu.util[,idle]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has spent doing nothing.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8a20c7edef6d449e8771ff57cebb87d8','0','2','0'), ('42357','7','','10343','CPU interrupt time','system.cpu.util[,interrupt]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has spent servicing hardware interrupts.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9329b55874bb4de7a52f941f382ba9ce','0','2','0'), ('42360','7','','10343','Network interface discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The discovery of network interfaces.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0b47631fb1334f78a7fe5207194a5476','0','2','0'), ('42361','7','','10343','Block devices discovery','vfs.dev.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ff825e7028c24138a7ea6625353a1790','0','2','0'), ('42363','7','','10343','Interface {#IFNAME}: Inbound packets discarded','net.if.in["{#IFNAME}",dropped]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f1a4f18b78754e669d1ddc593765f2e4','0','2','0'), ('42364','7','','10343','Interface {#IFNAME}: Inbound packets with errors','net.if.in["{#IFNAME}",errors]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f0eb218780ce44128117d73d65d412a9','0','2','0'), ('42365','7','','10343','Interface {#IFNAME}: Bits received','net.if.in["{#IFNAME}"]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','37dd13afa2b84b0e906a80016b9b2bf5','0','2','0'), ('42366','7','','10343','Interface {#IFNAME}: Outbound packets discarded','net.if.out["{#IFNAME}",dropped]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','12a56bb72eef43648293ce1d6c8f9c42','0','2','0'), ('42367','7','','10343','Interface {#IFNAME}: Outbound packets with errors','net.if.out["{#IFNAME}",errors]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','90362d020e82429d87b0b1688355831d','0','2','0'), ('42368','7','','10343','Interface {#IFNAME}: Bits sent','net.if.out["{#IFNAME}"]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','63616a66fb5e4fd7a725c5186b47e516','0','2','0'), ('42369','7','','10343','Interface {#IFNAME}: Operational status','vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"]','1m','31d','0','0','3','','','','',NULL,'909','','','0','','','','','2',NULL,'Reference: https://www.kernel.org/doc/Documentation/networking/operstates.txt','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','83b33479fd774915b100b69c527519c8','0','2','0'), ('42370','7','','10343','Interface {#IFNAME}: Interface type','vfs.file.contents["/sys/class/net/{#IFNAME}/type"]','1h','31d','0','0','3','','','','',NULL,'910','','','0','','','','','2',NULL,'It indicates the interface protocol type as a decimal value. See `include/uapi/linux/if_arp.h` for all possible values. Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e675114e23414b9dbc2d19d00f32bc70','0','2','0'), ('42371','15','','10343','{#DEVNAME}: Disk read request avg waiting time (r_await)','vfs.dev.read.await[{#DEVNAME}]','1m','31d','365d','0','0','','!ms','','',NULL,NULL,'(last(//vfs.dev.read.time.rate[{#DEVNAME}])/(last(//vfs.dev.read.rate[{#DEVNAME}])+(last(//vfs.dev.read.rate[{#DEVNAME}])=0)))*1000*(last(//vfs.dev.read.rate[{#DEVNAME}]) > 0)','','0','','','','','2',NULL,'This formula contains two Boolean expressions that evaluate to 1 or 0 in order to set the calculated metric to zero and to avoid the exception - division by zero.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1b3559f0d90948f0a72c2fdfdc80930b','0','2','0'), ('42372','15','','10343','{#DEVNAME}: Disk write request avg waiting time (w_await)','vfs.dev.write.await[{#DEVNAME}]','1m','31d','365d','0','0','','!ms','','',NULL,NULL,'(last(//vfs.dev.write.time.rate[{#DEVNAME}])/(last(//vfs.dev.write.rate[{#DEVNAME}])+(last(//vfs.dev.write.rate[{#DEVNAME}])=0)))*1000*(last(//vfs.dev.write.rate[{#DEVNAME}]) > 0)','','0','','','','','2',NULL,'This formula contains two Boolean expressions that evaluate to 1 or 0 in order to set the calculated metric to zero and to avoid the exception - division by zero.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8422c37735774134996be62580e7bf0f','0','2','0'), ('42373','7','','10343','{#DEVNAME}: Get stats','vfs.file.contents[/sys/block/{#DEVNAME}/stat]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The contents of get `/sys/block/{#DEVNAME}/stat` to get the disk statistics.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','39877664726f4886aa88f3d1592bbcb1','0','2','0'), ('42384','3','','10248','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'916','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','28f98683b9af4558813287cfa151719b','0','2','0'), ('42385','20','get[1.3.6.1.2.1.1.2.0]','10248','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5b17833c4646423d8fd4115fa19d2ffe','0','2','0'), ('42386','15','','10248','Memory utilization','vm.memory.util[snmp]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vm.memory.total[memTotalReal.0])-(last(//vm.memory.free[memAvailReal.0])+last(//vm.memory.buffers[memBuffer.0])+last(//vm.memory.cached[memCached.0])))/last(//vm.memory.total[memTotalReal.0])*100','','0','','','','','0',NULL,'Please note that memory utilization is a rough estimate, since memory available is calculated as free+buffers+cached, which is not 100% accurate, but the best we can get using SNMP.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','640d893d48d44f2ebe2c9e9bb0158f76','0','2','0'), ('42387','20','get[1.3.6.1.4.1.2021.4.5.0]','10248','Total memory','vm.memory.total[memTotalReal.0]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB Total memory expressed in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','de35484e53b24894aa050f15e1941106','0','2','0'), ('42388','20','get[1.3.6.1.4.1.2021.4.6.0]','10248','Free memory','vm.memory.free[memAvailReal.0]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fc3fb5310e8f4af7a093b9df9eede403','0','2','0'), ('42389','20','get[1.3.6.1.4.1.2021.4.15.0]','10248','Memory (cached)','vm.memory.cached[memCached.0]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB Memory used by the page cache and slabs (Cached and Slab in /proc/meminfo).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d5e0a99bfd9844108c3d26d53d1a3d0c','0','2','0'), ('42390','20','get[1.3.6.1.4.1.2021.4.14.0]','10248','Memory (buffers)','vm.memory.buffers[memBuffer.0]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB Memory used by kernel buffers (Buffers in /proc/meminfo).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c071dae605b64cce886df7d2865e77e0','0','2','0'), ('42391','15','','10248','Available memory','vm.memory.available[snmp]','1m','31d','365d','0','3','','B','','',NULL,NULL,'last(//vm.memory.free[memAvailReal.0])+last(//vm.memory.buffers[memBuffer.0])+last(//vm.memory.cached[memCached.0])','','0','','','','','0',NULL,'Please note that memory utilization is a rough estimate, since memory available is calculated as free+buffers+cached, which is not 100% accurate, but the best we can get using SNMP.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ad8a3857e8b04dffbc0c052a0d36fe08','0','2','0'), ('42392','20','get[1.3.6.1.2.1.1.3.0]','10248','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d3fba18851db4be08df04ab85536bb14','0','2','0'), ('42393','20','get[1.3.6.1.4.1.2021.4.3.0]','10248','Total swap space','system.swap.total[memTotalSwap.0]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB The total amount of swap space configured for this host.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7db5193027794961840c228c6280fe5b','0','2','0'), ('42394','15','','10248','Free swap space in %','system.swap.pfree[snmp]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//system.swap.free[memAvailSwap.0])/last(//system.swap.total[memTotalSwap.0])*100','','0','','','','','0',NULL,'The free space of the swap volume/file expressed in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','52ae3f1d7b3d4b669b40f0fddbb0e326','0','2','0'), ('42395','20','get[1.3.6.1.4.1.2021.4.4.0]','10248','Free swap space','system.swap.free[memAvailSwap.0]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB The amount of swap space currently unused or available.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a8ad10709a6e457187f58695de20b027','0','2','0'), ('42396','20','get[1.3.6.1.2.1.1.5.0]','10248','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3ee68ecd1edc4f5d9cddefa78f8d502e','0','2','0'), ('42397','3','','10248','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bc5a3fbab2834f8bb012325071c5b2e0','0','2','0'), ('42398','20','get[1.3.6.1.2.1.1.6.0]','10248','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9f2b3de3245e4ffea5aefc636e0f3da1','0','2','0'), ('42399','20','get[1.3.6.1.2.1.1.1.0]','10248','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','abd4d4b7097644478329b578dfa7bf09','0','2','0'), ('42400','20','get[1.3.6.1.4.1.2021.11.60.0]','10248','Context switches per second','system.cpu.switches[ssRawContexts.0]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The combined rate at which all processors on the computer are switched from one thread to another.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e10a890dc6724cbda96f7c40c49cd730','0','2','0'), ('42405','20','get[1.3.6.1.4.1.2021.11.59.0]','10248','Interrupts per second','system.cpu.intr[ssRawInterrupts.0]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of interrupts processed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fdb0807c4a9a452f8a3cbab01a4ddb2e','0','2','0'), ('42406','20','get[1.3.6.1.2.1.1.4.0]','10248','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e45c4b2df4a640a1a36154cb2b717e9d','0','2','0'), ('42407','17','','10248','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','85a597b741bb4e6e8fa9806e8737caf4','0','2','0'), ('42408','3','','10248','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b1e02fd733c14d71935e24fbe8786d40','0','2','0'), ('42409','5','','10248','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'917','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','03491bb9b98f4267bf1ff56cc226d819','0','2','0'), ('42443','0','','10079','Host name of Zabbix agent running','agent.hostname','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','96c93b959e884934808b4d3c3b2f93d6','0','2','0'), ('42444','0','','10079','Zabbix agent ping','agent.ping','1m','31d','365d','0','3','','','','',NULL,'919','','','0','','','','','0',NULL,'The agent always returns "1" for this item. May be used in combination with `nodata()` for the availability check.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3e70e8cc76bb4099a3a6b96f5669f059','0','2','0'), ('42445','0','','10079','Version of Zabbix agent running','agent.version','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','32e67f37a30c4fb28db9119d9e26a996','0','2','0'), ('42446','5','','10079','Zabbix agent availability','zabbix[host,agent,available]','1m','31d','365d','0','3','','','','',NULL,'918','','','0','','','','','0',NULL,'Used for monitoring the availability status of the agent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d00cf9691f6c446fa35dab03b2201aa4','0','2','0'), ('42447','0','','10074','Host name of Zabbix agent running','agent.hostname','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','390a1b2080e842f3985b0076509cc550','0','2','0'), ('42448','0','','10074','Zabbix agent ping','agent.ping','1m','31d','365d','0','3','','','','',NULL,'921','','','0','','','','','0',NULL,'The agent always returns "1" for this item. May be used in combination with `nodata()` for the availability check.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','99dbf8825c0d4e1f9ae433bcb786d7c7','0','2','0'), ('42449','0','','10074','Version of Zabbix agent running','agent.version','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c65db5a2b42c46dc90cf4891ad1ecc83','0','2','0'), ('42450','5','','10074','Zabbix agent availability','zabbix[host,agent,available]','1m','31d','365d','0','3','','','','',NULL,'920','','','0','','','','','0',NULL,'Used for monitoring the availability status of the agent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7ab36f1fcf0244229effa26f16889a36','0','2','0'), ('42451','0','','10078','Host name of Zabbix agent running','agent.hostname','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0a64ce48b94b4886af4bd97beab5f93d','0','2','0'), ('42452','0','','10078','Zabbix agent ping','agent.ping','1m','31d','365d','0','3','','','','',NULL,'923','','','0','','','','','0',NULL,'The agent always returns "1" for this item. May be used in combination with `nodata()` for the availability check.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d708ce58ad214d19a740824512e8be6a','0','2','0'), ('42453','0','','10078','Version of Zabbix agent running','agent.version','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','633a1d74569f4f61892dabf7e0acf6c1','0','2','0'), ('42454','5','','10078','Zabbix agent availability','zabbix[host,agent,available]','1m','31d','365d','0','3','','','','',NULL,'922','','','0','','','','','0',NULL,'Used for monitoring agent availability status','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','46dc8d0138314f41962dc357d1e4af20','0','2','0'), ('42455','0','','10081','Host name of Zabbix agent running','agent.hostname','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','af550a1bfe74428eb24492d8af3b405e','0','2','0'), ('42456','0','','10081','Zabbix agent ping','agent.ping','1m','31d','365d','0','3','','','','',NULL,'928','','','0','','','','','0',NULL,'The agent always returns "1" for this item. May be used in combination with `nodata()` for the availability check.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f81e2ce0d1104f9aaf1fc49284ed0ed4','0','2','0'), ('42457','0','','10081','Number of cores','wmi.get[root/cimv2,"Select NumberOfLogicalProcessors from Win32_ComputerSystem"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of logical processors available on the computer.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','83c8c6f15b524a2fb04fc90d04d3e8a2','0','2','0'), ('42458','0','','10081','Windows: Network interfaces WMI get',E'wmi.getall[root\\cimv2,"select Name,Description,NetConnectionID,Speed,AdapterTypeId,NetConnectionStatus,GUID from win32_networkadapter where PhysicalAdapter=True and NetConnectionStatus>0"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Raw data of `win32_networkadapter.`','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','08b70a5b80fd435ba393e3deb3ca5adb','0','2','0'), ('42459','15','','10081','Memory utilization','vm.memory.util','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.size[used]) / last(//vm.memory.size[total]) * 100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3b1e4ecaa04a46e9b0aee956918f0713','0','2','0'), ('42460','0','','10081','Used memory','vm.memory.size[used]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Used memory in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1cbf45e11dab453797fe291639aa0c01','0','2','0'), ('42461','0','','10081','Total memory','vm.memory.size[total]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total memory expressed in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','09e9a345a0f445b1a65685911f5eb9b0','0','2','0'), ('42462','0','','10081','Uptime','system.uptime','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The system uptime expressed in the following format: "N days, hh:mm:ss".','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','12503fbf4400488e9b5ff0488f164cb6','0','2','0'), ('42463','0','','10081','System description','system.uname','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'System description of the host.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b103a2c22fe344f886e9dc9f4e4a65ec','0','2','0'), ('42464','0','','10081','Total swap space','system.swap.size[,total]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total space of the swap volume/file expressed in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f981835baf04494eaff2f33f159e0ab5','0','2','0'), ('42465','15','','10081','Free swap space','system.swap.free','1m','31d','365d','0','3','','B','','',NULL,NULL,E'last(//system.swap.size[,total]) - last(//system.swap.size[,total]) / 100 * last(//perf_counter_en["\\Paging file(_Total)\\% Usage"])','','0','','','','','0',NULL,'The free space of the swap volume/file expressed in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','11cac38334544e5cbb028cfd473cb39e','0','2','0'), ('42466','0','','10081','Operating system architecture','system.sw.arch','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The architecture of the operating system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7e8b3476db6d4322a10cd1a28cbdb7ea','0','2','0'), ('42467','0','','10081','System local time','system.localtime','1m','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'The local system time of the host.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','94c4dfe23e2e4c6e995a3a715941a8eb','0','2','0'), ('42468','0','','10081','System name','system.hostname','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The host name of the system.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cb056886ce72426e833a0445f9263906','0','2','0'), ('42469','0','','10081','CPU utilization','system.cpu.util','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'CPU utilization expressed in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c2ed8e2efab04564b6c70ee8ad14730f','0','2','0'), ('42470','0','','10081','Number of processes','proc.num[]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of processes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b305029532f84daf93c8da2d181ac3a1','0','2','0'), ('42471','0','','10081','Number of threads',E'perf_counter_en["\\System\\Threads"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of threads used by all running processes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','630b7b2af6274936ab80b1dd774113e5','0','2','0'), ('42472','0','','10081','CPU queue length',E'perf_counter_en["\\System\\Processor Queue Length"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The Processor Queue Length shows the number of threads that are observed as delayed in the processor Ready Queue and are waiting to be executed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','002af28df72f4a788c88bc022d88c6dd','0','2','0'), ('42473','0','','10081','Context switches per second',E'perf_counter_en["\\System\\Context Switches/sec"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,E'Context Switches/sec is the combined rate at which all processors on the computer are switched from one thread to another. Context switches occur when a running thread voluntarily relinquishes the processor, is preempted by a higher priority ready thread, or switches between user-mode and privileged (kernel) mode to use an Executive or subsystem service. It is the sum of Thread\\\\Context Switches/sec for all threads running on all processors in the computer and is measured in numbers of switches. There are context switch counters on the System and Thread objects. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2322a85bfc1049a3b5c892d83b5d5054','0','2','0'), ('42474','0','','10081','CPU user time',E'perf_counter_en["\\Processor Information(_total)\\% User Time"]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The processor information `% User Time` counter shows the percent of time that the processor(s) is spent executing in User mode.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','575912d512624143b564ca0fbfd0bb8f','0','2','0'), ('42475','0','','10081','CPU privileged time',E'perf_counter_en["\\Processor Information(_total)\\% Privileged Time"]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The processor information `% Privileged Time` counter shows the percent of time that the processor is spent executing in Kernel (or Privileged) mode. Privileged mode includes services interrupts inside Interrupt Service Routines (ISRs), executing Deferred Procedure Calls (DPCs), Device Driver calls and other kernel-mode functions of the Windows Operating System.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','37448f05afe340a3891d05528c9d1adc','0','2','0'), ('42476','0','','10081','CPU interrupt time',E'perf_counter_en["\\Processor Information(_total)\\% Interrupt Time"]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The processor information `% Interrupt Time` counter indicates how much time the processor spends handling hardware interrupts during sample intervals. It reflects the activity of devices like the system clock, mouse, disk drivers, and network cards. A value above 20% suggests possible hardware issues.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e403552481b04ebdba2e8a019f114f20','0','2','0'), ('42477','0','','10081','CPU DPC time',E'perf_counter_en["\\Processor Information(_total)\\% DPC Time"]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Processor DPC time is the time that a single processor spent receiving and servicing deferred procedure calls (DPCs). DPCs are interrupts that run at a lower priority than standard interrupts. `% DPC Time` is a component of `% Privileged Time` because DPCs are executed in privileged mode. If a high `% DPC Time` is sustained, there may be a processor bottleneck or an application or hardware related issue that can significantly diminish overall system performance.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ee1f116fdab34969a6e6f5e1c25fc3d2','0','2','0'), ('42478','0','','10081','Used swap space in %',E'perf_counter_en["\\Paging file(_Total)\\% Usage"]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The used space of swap volume/file in percent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b99a722d267d455fad3c07c53302b20f','0','2','0'), ('42479','0','','10081','Memory pool non-paged',E'perf_counter_en["\\Memory\\Pool Nonpaged Bytes"]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'This measures the size, in bytes, of the non-paged pool. This is an area of system memory for objects that cannot be written to disk but instead must remain in physical memory as long as they are allocated. There is a possible memory leak if the value is greater than 175MB (or 100MB with the /3GB switch). Consequently, Event ID 2019 is recorded in the system event log.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fb822cb2a17948208a61bd6661c496df','0','2','0'), ('42480','0','','10081','Memory pages per second',E'perf_counter_en["\\Memory\\Pages/sec"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This measures the rate at which pages are read from or written to disk to resolve hard page faults. If the value is greater than 1,000, as a result of excessive paging, there may be a memory leak.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','287163bc5b0441c4bf51489432a278eb','0','2','0'), ('42481','0','','10081','Memory page faults per second',E'perf_counter_en["\\Memory\\Page Faults/sec"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Page Faults/sec is the average number of pages faulted per second. It is measured in number of pages faulted per second because only one page is faulted in each fault operation, hence this is also equal to the number of page fault operations. This counter includes both hard faults (those that require disk access) and soft faults (where the faulted page is found elsewhere in physical memory.) Most processors can handle large numbers of soft faults without significant consequence. However, hard faults, which require disk access, can cause significant delays.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6c41d254585a4d7b81a0c5766a8913c1','0','2','0'), ('42482','0','','10081','Free system page table entries',E'perf_counter_en["\\Memory\\Free System Page Table Entries"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This indicates the number of page table entries not currently in use by the system. If the number is less than 5,000, there may be a memory leak or you running out of memory.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2ea74fafb9334de095adcb47cced578d','0','2','0'), ('42483','0','','10081','Cache bytes',E'perf_counter_en["\\Memory\\Cache Bytes"]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,E'Cache Bytes is the sum of the Memory\\\\System Cache Resident Bytes, Memory\\\\System Driver Resident Bytes, Memory\\\\System Code Resident Bytes, and Memory\\\\Pool Paged Resident Bytes counters. This counter displays the last observed value only; it is not an average.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5219a246de0641a89685a961cdd08c0b','0','2','0'), ('42484','0','','10081','Version of Zabbix agent running','agent.version','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5707443d739d4689bde192e75ff4bd0f','0','2','0'), ('42485','5','','10081','Zabbix agent availability','zabbix[host,agent,available]','1m','31d','365d','0','3','','','','',NULL,'927','','','0','','','','','0',NULL,'Used for monitoring the availability status of the agent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3dcb0f79342b4ded97cdec0794472266','0','2','0'), ('42488','0','','10081','Physical disks discovery','perf_instance_en.discovery[PhysicalDisk]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of installed physical disks.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8f155ebc6fd045b3b7548010af1a73c7','0','2','0'), ('42489','0','','10081','Windows services discovery','service.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for the discovery of Windows services of different types as defined in the template''s macros.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cabcad5c3520448f8e1bf222be348b81','0','2','0'), ('42491','0','','10081','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in["{#IFGUID}",dropped]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of incoming packets dropped on the network interface.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8a7bb1e8afd24d32a65fa2116ba439ce','0','2','0'), ('42492','0','','10081','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in["{#IFGUID}",errors]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of incoming packets with errors on the network interface.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6e1f3dfb91024095a20870ee94d01822','0','2','0'), ('42493','0','','10081','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in["{#IFGUID}"]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Incoming traffic on the network interface.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','82accc942f5747a2b399484466625051','0','2','0'), ('42494','0','','10081','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out["{#IFGUID}",dropped]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of outgoing packets dropped on the network interface.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9ddb9aaf863a45c0affbd90e4a6fa393','0','2','0'), ('42495','0','','10081','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out["{#IFGUID}",errors]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of outgoing packets with errors on the network interface.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','38c8a1aa95b343e39e23e7b508521dad','0','2','0'), ('42496','0','','10081','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out["{#IFGUID}"]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Outgoing traffic on the network interface.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3b090da19af842189bb6fa56d49ceec3','0','2','0'), ('42497','0','','10081','{#DEVNAME}: Disk utilization by idle time',E'perf_counter_en["\\PhysicalDisk({#DEVNAME})\\% Idle Time",60]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests based on idle time.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','821f46bbf9d7432e9ea0d5f93a868269','0','2','0'), ('42498','0','','10081','{#DEVNAME}: Average disk read queue length',E'perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Avg. Disk Read Queue Length",60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Average disk read queue, the number of requests outstanding on the disk at the time the performance data is collected.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','77e33448596a498ba211d23a1977e9ca','0','2','0'), ('42499','0','','10081','{#DEVNAME}: Disk read request avg waiting time',E'perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Avg. Disk sec/Read",60]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The average time for read requests issued to the device to be served. This includes the time spent by the requests in queue and the time spent servicing them.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7d91ed70bc3b4ef2a7991b3a5ba3bde4','0','2','0'), ('42500','0','','10081','{#DEVNAME}: Disk write request avg waiting time',E'perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Avg. Disk sec/Write",60]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The average time for write requests issued to the device to be served. This includes the time spent by the requests in queue and the time spent servicing them.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','898784d050664f8eaf197ebebc16077e','0','2','0'), ('42501','0','','10081','{#DEVNAME}: Average disk write queue length',E'perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Avg. Disk Write Queue Length",60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Average disk write queue, the number of requests outstanding on the disk at the time the performance data is collected.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','71a2c065efaa437fb7296972f516bd82','0','2','0'), ('42502','0','','10081','{#DEVNAME}: Disk average queue size (avgqu-sz)',E'perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Current Disk Queue Length",60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current average disk queue; the number of requests outstanding on the disk while the performance data is being collected.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b49884669dbf43cc95ea3d27fb23698c','0','2','0'), ('42503','0','','10081','{#DEVNAME}: Disk read rate',E'perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Disk Reads/sec",60]','1m','31d','365d','0','0','','!r/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of read operations on the disk.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','390c6e4f2c134ae2939810892eefd6f7','0','2','0'), ('42504','0','','10081','{#DEVNAME}: Disk write rate',E'perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Disk Writes/sec",60]','1m','31d','365d','0','0','','!w/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of write operations on the disk.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6353d621a9c4415c94247208fc996075','0','2','0'), ('42505','0','','10081','State of service "{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME})','service.info["{#SERVICE.NAME}",state]','1m','31d','365d','0','3','','','','',NULL,'926','','','0','','','','','2',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dd5a027d75fc4ff1a3bb6e69c0d8d592','0','2','0'), ('42512','7','','10351','Host name of Zabbix agent running','agent.hostname','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','042ce35b908748c8bdd322f818c52c85','0','2','0'), ('42513','7','','10351','Number of processes','proc.num[]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of processes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5229689338ae4a559d3c94a98032131e','0','2','0'), ('42514','7','','10351','Windows: Network interfaces WMI get',E'wmi.getall[root\\cimv2,"select Name,Description,NetConnectionID,Speed,AdapterTypeId,NetConnectionStatus,GUID from win32_networkadapter where PhysicalAdapter=True and NetConnectionStatus>0"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Raw data of `win32_networkadapter.`','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c35940d1a12e4b96b7114ac8dbbfcec4','0','2','0'), ('42515','15','','10351','Memory utilization','vm.memory.util','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.size[used]) / last(//vm.memory.size[total]) * 100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9b62965a4670472b8c672dc1021bb8fd','0','2','0'), ('42516','7','','10351','Used memory','vm.memory.size[used]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Used memory in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f85ec8917f084c7d9b6bc36e186d74d6','0','2','0'), ('42517','7','','10351','Total memory','vm.memory.size[total]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total memory expressed in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','83185781999742268a7742695c5d3ee3','0','2','0'), ('42518','7','','10351','Uptime','system.uptime','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The system uptime expressed in the following format: "N days, hh:mm:ss".','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','695053710ea14cc48692b5cb260d0dfb','0','2','0'), ('42519','7','','10351','System description','system.uname','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'System description of the host.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8fa1259420ad486ab6e2520c9b047073','0','2','0'), ('42520','7','','10351','Total swap space','system.swap.size[,total]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total space of the swap volume/file expressed in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b5af29f7b8ee451895b49c0444e929f4','0','2','0'), ('42521','15','','10351','Free swap space','system.swap.free','1m','31d','365d','0','3','','B','','',NULL,NULL,E'last(//system.swap.size[,total]) - last(//system.swap.size[,total]) / 100 * last(//perf_counter_en["\\Paging file(_Total)\\% Usage"])','','0','','','','','0',NULL,'The free space of the swap volume/file expressed in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9d6f14cc540846ab98052bf741a4247b','0','2','0'), ('42522','7','','10351','Operating system architecture','system.sw.arch','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The architecture of the operating system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','16a7ae509f0c4f9d8631efae88fe6324','0','2','0'), ('42523','7','','10351','System local time','system.localtime','1m','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'The local system time of the host.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','89f928affba54c4a8dc7abead09cac68','0','2','0'), ('42524','7','','10351','System name','system.hostname','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The host name of the system.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5d99b356e30444a0b99e597506f35a69','0','2','0'), ('42525','7','','10351','CPU utilization','system.cpu.util','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'CPU utilization expressed in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0f3ffe45092d461a91a1296cd6cfb19f','0','2','0'), ('42526','7','','10351','Number of threads',E'perf_counter_en["\\System\\Threads"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of threads used by all running processes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c738b97ec0dc49f380ed0e4a27ae9bb6','0','2','0'), ('42527','7','','10351','Zabbix agent ping','agent.ping','1m','31d','365d','0','3','','','','',NULL,'933','','','0','','','','','0',NULL,'The agent always returns "1" for this item. May be used in combination with `nodata()` for the availability check.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bd8864ac5450401b9ad479c1ee455805','0','2','0'), ('42528','7','','10351','CPU queue length',E'perf_counter_en["\\System\\Processor Queue Length"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The Processor Queue Length shows the number of threads that are observed as delayed in the processor Ready Queue and are waiting to be executed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c1da358e5c8f40279c703d93896aa571','0','2','0'), ('42529','7','','10351','Context switches per second',E'perf_counter_en["\\System\\Context Switches/sec"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,E'Context Switches/sec is the combined rate at which all processors on the computer are switched from one thread to another. Context switches occur when a running thread voluntarily relinquishes the processor, is preempted by a higher priority ready thread, or switches between user-mode and privileged (kernel) mode to use an Executive or subsystem service. It is the sum of Thread\\\\Context Switches/sec for all threads running on all processors in the computer and is measured in numbers of switches. There are context switch counters on the System and Thread objects. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f23957a6fb9a44a3a7010b19b16e77b5','0','2','0'), ('42530','7','','10351','CPU user time',E'perf_counter_en["\\Processor Information(_total)\\% User Time"]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The processor information `% User Time` counter shows the percent of time that the processor(s) is spent executing in User mode.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','954a81efad4c4791bee052194b900268','0','2','0'), ('42531','7','','10351','CPU privileged time',E'perf_counter_en["\\Processor Information(_total)\\% Privileged Time"]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The processor information `% Privileged Time` counter shows the percent of time that the processor is spent executing in Kernel (or Privileged) mode. Privileged mode includes services interrupts inside Interrupt Service Routines (ISRs), executing Deferred Procedure Calls (DPCs), Device Driver calls and other kernel-mode functions of the Windows Operating System.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0747e92e52cc4a6a9b83c6f94889bff1','0','2','0'), ('42532','7','','10351','CPU interrupt time',E'perf_counter_en["\\Processor Information(_total)\\% Interrupt Time"]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The processor information `% Interrupt Time` counter indicates how much time the processor spends handling hardware interrupts during sample intervals. It reflects the activity of devices like the system clock, mouse, disk drivers, and network cards. A value above 20% suggests possible hardware issues.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','32a32b9fea5d49989668a96bc52db87b','0','2','0'), ('42533','7','','10351','CPU DPC time',E'perf_counter_en["\\Processor Information(_total)\\% DPC Time"]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Processor DPC time is the time that a single processor spent receiving and servicing deferred procedure calls (DPCs). DPCs are interrupts that run at a lower priority than standard interrupts. `% DPC Time` is a component of `% Privileged Time` because DPCs are executed in privileged mode. If a high `% DPC Time` is sustained, there may be a processor bottleneck or an application or hardware related issue that can significantly diminish overall system performance.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','553249b52ca7492c87386d051ec53db9','0','2','0'), ('42534','7','','10351','Used swap space in %',E'perf_counter_en["\\Paging file(_Total)\\% Usage"]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The used space of swap volume/file in percent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4f7b86eff6c84193a2f9187fff578416','0','2','0'), ('42535','7','','10351','Memory pool non-paged',E'perf_counter_en["\\Memory\\Pool Nonpaged Bytes"]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'This measures the size, in bytes, of the non-paged pool. This is an area of system memory for objects that cannot be written to disk but instead must remain in physical memory as long as they are allocated. There is a possible memory leak if the value is greater than 175MB (or 100MB with the /3GB switch). Consequently, Event ID 2019 is recorded in the system event log.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3af0a0717da747849c2b5a2ebfa61a2c','0','2','0'), ('42536','7','','10351','Memory pages per second',E'perf_counter_en["\\Memory\\Pages/sec"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This measures the rate at which pages are read from or written to disk to resolve hard page faults. If the value is greater than 1,000, as a result of excessive paging, there may be a memory leak.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','920faa3a434d46d48f99395e16ef04ec','0','2','0'), ('42537','7','','10351','Memory page faults per second',E'perf_counter_en["\\Memory\\Page Faults/sec"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Page Faults/sec is the average number of pages faulted per second. It is measured in number of pages faulted per second because only one page is faulted in each fault operation, hence this is also equal to the number of page fault operations. This counter includes both hard faults (those that require disk access) and soft faults (where the faulted page is found elsewhere in physical memory.) Most processors can handle large numbers of soft faults without significant consequence. However, hard faults, which require disk access, can cause significant delays.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','19ec57305ba34ed890e2e4c8a500a214','0','2','0'), ('42538','7','','10351','Free system page table entries',E'perf_counter_en["\\Memory\\Free System Page Table Entries"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This indicates the number of page table entries not currently in use by the system. If the number is less than 5,000, there may be a memory leak or you running out of memory.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','71bb18af403248c7818d16444a2eec06','0','2','0'), ('42539','7','','10351','Cache bytes',E'perf_counter_en["\\Memory\\Cache Bytes"]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,E'Cache Bytes is the sum of the Memory\\\\System Cache Resident Bytes, Memory\\\\System Driver Resident Bytes, Memory\\\\System Code Resident Bytes, and Memory\\\\Pool Paged Resident Bytes counters. This counter displays the last observed value only; it is not an average.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','20dceb831b1a4d63af7635656239c495','0','2','0'), ('42540','7','','10351','Version of Zabbix agent running','agent.version','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','41cec8b443a94efc9ebca6f66c46ad8a','0','2','0'), ('42541','7','','10351','Number of cores','wmi.get[root/cimv2,"Select NumberOfLogicalProcessors from Win32_ComputerSystem"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of logical processors available on the computer.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3dcf69f6637f496ca0406e0ed403f03c','0','2','0'), ('42544','7','','10351','Physical disks discovery','perf_instance_en.discovery[PhysicalDisk]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of installed physical disks.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b2a9c04e3e0846ab89d5dbc39d273567','0','2','0'), ('42545','7','','10351','Windows services discovery','service.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for the discovery of Windows services of different types as defined in the template''s macros.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dbde6e6c7c13436b9bd20230f1d309ed','0','2','0'), ('42547','7','','10351','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in["{#IFGUID}",dropped]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of incoming packets dropped on the network interface.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','344f0ce5ba5244cb90cc08db556e6f9c','0','2','0'), ('42548','7','','10351','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in["{#IFGUID}",errors]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of incoming packets with errors on the network interface.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a2461163f9b44b678008e3d5fd96a168','0','2','0'), ('42549','7','','10351','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in["{#IFGUID}"]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Incoming traffic on the network interface.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a8f69dac86d646b194f9b204f22aeb3b','0','2','0'), ('42550','7','','10351','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out["{#IFGUID}",dropped]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of outgoing packets dropped on the network interface.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','46d947876b844223bb500f29cbf82273','0','2','0'), ('42551','7','','10351','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out["{#IFGUID}",errors]','3m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of outgoing packets with errors on the network interface.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1f5854d4ad5d4b65b63e5ca9ffa5007c','0','2','0'), ('42552','7','','10351','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out["{#IFGUID}"]','3m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Outgoing traffic on the network interface.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1adceed263804e089108bb2cc1aa51e1','0','2','0'), ('42553','7','','10351','{#DEVNAME}: Disk utilization by idle time',E'perf_counter_en["\\PhysicalDisk({#DEVNAME})\\% Idle Time",60]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests based on idle time.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','714bbd069d34400895df413fe4627543','0','2','0'), ('42554','7','','10351','{#DEVNAME}: Average disk read queue length',E'perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Avg. Disk Read Queue Length",60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Average disk read queue, the number of requests outstanding on the disk at the time the performance data is collected.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','abdcdffc92114fda93d4893c772cf14a','0','2','0'), ('42555','7','','10351','{#DEVNAME}: Disk read request avg waiting time',E'perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Avg. Disk sec/Read",60]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The average time for read requests issued to the device to be served. This includes the time spent by the requests in queue and the time spent servicing them.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','208b3a3868844e85a7e3e5f3940d744d','0','2','0'), ('42556','7','','10351','{#DEVNAME}: Disk write request avg waiting time',E'perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Avg. Disk sec/Write",60]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The average time for write requests issued to the device to be served. This includes the time spent by the requests in queue and the time spent servicing them.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6a162aca790c48a7bd726d54494d67e9','0','2','0'), ('42557','7','','10351','{#DEVNAME}: Average disk write queue length',E'perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Avg. Disk Write Queue Length",60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Average disk write queue, the number of requests outstanding on the disk at the time the performance data is collected.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ba3a369741544f6c88a476a4f2d30ab2','0','2','0'), ('42558','7','','10351','{#DEVNAME}: Disk average queue size (avgqu-sz)',E'perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Current Disk Queue Length",60]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current average disk queue; the number of requests outstanding on the disk while the performance data is being collected.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','24d15f53439148919e11d5811f25adf1','0','2','0'), ('42559','7','','10351','{#DEVNAME}: Disk read rate',E'perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Disk Reads/sec",60]','1m','31d','365d','0','0','','!r/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of read operations on the disk.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c1424c1c2fe647a8baf3357c34ae261e','0','2','0'), ('42560','7','','10351','{#DEVNAME}: Disk write rate',E'perf_counter_en["\\PhysicalDisk({#DEVNAME})\\Disk Writes/sec",60]','1m','31d','365d','0','0','','!w/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of write operations on the disk.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4d10e563bbd1402daa1c9c8516095aa8','0','2','0'), ('42561','7','','10351','State of service "{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME})','service.info["{#SERVICE.NAME}",state]','1m','31d','365d','0','3','','','','',NULL,'931','','','0','','','','','2',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d6379e85f1974734abbe60fef1a6ca1d','0','2','0'), ('42568','3','','10249','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'936','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d751b3ead8cd4509a3f87c9bb4c89f00','0','2','0'), ('42569','3','','10249','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9e311b1e5e8841da85c5ec6145d9c75f','0','2','0'), ('42570','3','','10249','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fba6328e6e6240f28c1b901a9c2fc376','0','2','0'), ('42571','17','','10249','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b75c480b7ec648a5b2762b20fc5c2ed8','0','2','0'), ('42572','20','get[1.3.6.1.2.1.1.4.0]','10249','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dd26c7a0a46240279bb907b8a1253029','0','2','0'), ('42573','20','discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2]','10249','CPU utilization','system.cpu.util','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that processors was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','16a592f6b9f64403999f92d677f1cd2e','0','2','0'), ('42574','20','get[1.3.6.1.2.1.1.1.0]','10249','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e95e030765e84abfa5a51194e81ac719','0','2','0'), ('42575','20','get[1.3.6.1.2.1.1.6.0]','10249','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d19b9bfdfe7344a28eaf69a1b7961adb','0','2','0'), ('42576','20','get[1.3.6.1.2.1.1.5.0]','10249','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9feb2f561b3d4356bc6ef2cac955a495','0','2','0'), ('42577','20','get[1.3.6.1.2.1.1.2.0]','10249','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c9e67b57c15747e8ab4f67e24837ce49','0','2','0'), ('42578','20','get[1.3.6.1.2.1.1.3.0]','10249','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','af7f47f4cf884282bbd9d296ba61b1c2','0','2','0'), ('42579','5','','10249','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'937','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4863042ade2143a0b34e1fc9403742b0','0','2','0'), ('42598','3','','10385','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'938','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','030530f5193246f4b983ec802030e49b','0','2','0'), ('42599','3','','10385','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c82fa3f20c7443e4849ea8e8aec1e49d','0','2','0'), ('42600','3','','10385','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0a95c43c70e54ad49f073fee69a2452d','0','2','0'), ('42601','17','','10385','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2ec396a7adf64637ae453d7f26cd5b20','0','2','0'), ('42602','20','get[1.3.6.1.2.1.1.4.0]','10385','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e98719af84414ef5ab3dd788c7d2d72f','0','2','0'), ('42603','20','get[1.3.6.1.2.1.1.1.0]','10385','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cf59fb53834d4b14bdb0251e66c5143f','0','2','0'), ('42604','20','get[1.3.6.1.2.1.1.6.0]','10385','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fed7a954ea614cb086b901b2e6957621','0','2','0'), ('42605','20','get[1.3.6.1.2.1.1.5.0]','10385','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','354fe7cd2632425b9f937e8714d79798','0','2','0'), ('42606','20','get[1.3.6.1.2.1.1.2.0]','10385','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bf571c06cc264eca89d68f0b0b7559f7','0','2','0'), ('42607','20','get[1.3.6.1.2.1.1.3.0]','10385','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f14eaa207ac9480995d2a2a10bea1467','0','2','0'), ('42608','5','','10385','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'939','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','197767da1b3c4c4f8f3c59ab3c3fc5b8','0','2','0'), ('42609','3','','10378','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'44','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','62c6bb1b70ee4ece865b562e298cafb0','0','2','0'), ('42610','3','','10378','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f7c934ef77d04c00bdec19f8e3950d85','0','2','0'), ('42611','3','','10378','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','72f8c27991b7440ba186f6eb037605cf','0','2','0'), ('42612','17','','10378','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4380826947fc4df6a341fe074f42da6a','0','2','0'), ('42613','20','get[1.3.6.1.2.1.1.4.0]','10378','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','045800cfeaf6448ab9a9e97f8b5172c1','0','2','0'), ('42614','20','get[1.3.6.1.2.1.1.1.0]','10378','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c12c6668d9564855b227dee42a9d86f8','0','2','0'), ('42615','20','get[1.3.6.1.2.1.1.6.0]','10378','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f46b736cdb7f44fcacf33d272d905db8','0','2','0'), ('42616','20','get[1.3.6.1.2.1.1.5.0]','10378','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','65c5b2a3742c4c6d8a04c63bb96b46c6','0','2','0'), ('42617','20','get[1.3.6.1.2.1.1.2.0]','10378','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2d9d7b390c774a188a07dbb5bb4a583e','0','2','0'), ('42618','20','get[1.3.6.1.2.1.1.3.0]','10378','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','564b458cee7a4a2bb2b4f4777bead32d','0','2','0'), ('42619','5','','10378','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'940','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fff713712c44477aa081445d9962c002','0','2','0'), ('42620','3','','10304','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'941','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','250be2514e9246e08058a403bf674cf6','0','2','0'), ('42621','3','','10304','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c7eaba8c2b7d4b4aa14081957252e33e','0','2','0'), ('42622','3','','10304','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','88b4a6cc507748e19f08d0ffc9a15368','0','2','0'), ('42623','17','','10304','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','00b0172971e34784836d03e76b3480bd','0','2','0'), ('42624','20','get[1.3.6.1.2.1.1.4.0]','10304','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','50df0ad347d94cffb871256c6340af11','0','2','0'), ('42625','20','get[1.3.6.1.2.1.1.1.0]','10304','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','235302070dc54f148b92027967a6ff2f','0','2','0'), ('42626','20','get[1.3.6.1.2.1.1.6.0]','10304','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7ba9b86064ad432a9e6d1922ca29edda','0','2','0'), ('42627','20','get[1.3.6.1.2.1.1.5.0]','10304','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4674d8adc39343f7b46d21cae2ec1310','0','2','0'), ('42628','20','get[1.3.6.1.2.1.1.2.0]','10304','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','05fe3cb6d2004e7ea2d37742fc2549d3','0','2','0'), ('42629','20','get[1.3.6.1.2.1.1.3.0]','10304','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1b0551aa2d184c8d923788b5d159ed7c','0','2','0'), ('42630','5','','10304','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'942','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b80f6a30ad124a1ea863f2fdb868ba6f','0','2','0'), ('42634','17','','10255','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other `snmptrap` items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7e7e65916304419a8b5c43c9c08a20fc','0','2','0'), ('42641','5','','10255','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'944','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2e3b11fcdd2146018676621143fd297b','0','2','0'), ('42642','3','','10256','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'945','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5abff4175d1640b9b633c4d9184bd243','0','2','0'), ('42643','3','','10256','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1db2fcdd357e4d15a989c0511bbed8bd','0','2','0'), ('42644','3','','10256','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8be612f43d1d40ce9efd3c36d18e6a20','0','2','0'), ('42645','17','','10256','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0107bcd0d6b840c4a64061ee83e69f11','0','2','0'), ('42646','20','get[1.3.6.1.2.1.1.4.0]','10256','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2203e586148a418f9e2f06b38c340b53','0','2','0'), ('42647','20','get[1.3.6.1.2.1.1.1.0]','10256','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','03ff0b6d9c7a483eaae565d90473d291','0','2','0'), ('42648','20','get[1.3.6.1.2.1.1.6.0]','10256','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','84ed489ba1be43738be79f8a71b60381','0','2','0'), ('42649','20','get[1.3.6.1.2.1.1.5.0]','10256','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','88baf9f1da184fc78a49b064f0b4de85','0','2','0'), ('42650','20','get[1.3.6.1.2.1.1.2.0]','10256','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d02b8e2d5c7a4afabc2fbadc8674288c','0','2','0'), ('42651','20','get[1.3.6.1.2.1.1.3.0]','10256','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','05166eb015534cae9798f9266d3d0a6b','0','2','0'), ('42652','5','','10256','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'946','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e5ebd75f34f24502b3cdc2a707fb24c5','0','2','0'), ('42653','3','','10258','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'947','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','303807b2799f4f7cace3d781e9ed1715','0','2','0'), ('42654','3','','10258','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4af423253e1b4960825b49041d9c8feb','0','2','0'), ('42655','3','','10258','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b1659e3298fb447f8ee93e8bab98a22d','0','2','0'), ('42656','17','','10258','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e0a1cdb1df4d408087a8ed3d473ce1fe','0','2','0'), ('42657','20','get[1.3.6.1.2.1.1.4.0]','10258','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6686560b390540b593a2d3bb3289ea41','0','2','0'), ('42658','20','get[1.3.6.1.2.1.1.1.0]','10258','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','905c91ce799849dfb56b800c93849826','0','2','0'), ('42659','20','get[1.3.6.1.2.1.1.6.0]','10258','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','589def06a1b74a7f8ada7cc4576aa9eb','0','2','0'), ('42660','20','get[1.3.6.1.2.1.1.5.0]','10258','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','596ce9f7e6b848e4869cd195996c7114','0','2','0'), ('42661','20','get[1.3.6.1.2.1.1.2.0]','10258','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ad8eada79b464821a14759f32f6d7f2a','0','2','0'), ('42662','20','get[1.3.6.1.2.1.1.3.0]','10258','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','97cd7cf6a9a545788a2f709bacb925ed','0','2','0'), ('42663','5','','10258','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'948','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','59d2bec423a84ca186d5785ddea5270b','0','2','0'), ('42664','3','','10259','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'949','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7c60cd8613094b95bfd0ad45d04bc0e8','0','2','0'), ('42665','3','','10259','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4a8bd0d13bab4666aaf4c53b7722ec74','0','2','0'), ('42666','3','','10259','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','feb1b9189b904b42b17ac4e1db49806e','0','2','0'), ('42667','17','','10259','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cadc501d69624baa8ad292c2c8f6fd52','0','2','0'), ('42668','20','get[1.3.6.1.2.1.1.4.0]','10259','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ccba865de57a41718b53ff1f82b2ca87','0','2','0'), ('42669','20','get[1.3.6.1.2.1.1.1.0]','10259','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','70f51b4370c64c2bab2c811359ef690b','0','2','0'), ('42670','20','get[1.3.6.1.2.1.1.6.0]','10259','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','52169be1d3924c638476a290590066f3','0','2','0'), ('42671','20','get[1.3.6.1.2.1.1.5.0]','10259','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','afa2acff36034dccb96a1946e7039f39','0','2','0'), ('42672','20','get[1.3.6.1.2.1.1.2.0]','10259','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a0c0d3ee729b4a159719271232024b45','0','2','0'), ('42673','20','get[1.3.6.1.2.1.1.3.0]','10259','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cc33c0e22893432280d642c75020a222','0','2','0'), ('42674','5','','10259','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'950','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e205f1aa96a448a2955e988fa8528600','0','2','0'), ('42679','0','','10001','Interface {#IFNAME}: Speed','vfs.file.contents["/sys/class/net/{#IFNAME}/speed"]','5m','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'It indicates the latest or current speed value of the interface. The value is an integer representing the link speed expressed in bits/sec. This attribute is only valid for the interfaces that implement the ethtool `get_link_ksettings` method (mostly Ethernet). Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f4c456e1f9ef4adbbd11f1ee17fa4d76','0','2','0'), ('42682','7','','10343','Interface {#IFNAME}: Speed','vfs.file.contents["/sys/class/net/{#IFNAME}/speed"]','5m','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'It indicates the latest or current speed value of the interface. The value is an integer representing the link speed expressed in bits/sec. This attribute is only valid for the interfaces that implement the ethtool `get_link_ksettings` method (mostly Ethernet). Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','86dd61015ecc43428803b309bdfa9691','0','2','0'), ('42684','16','','10169','Garbage collector discovery','jmx.discovery["beans","java.lang:name=*,type=GarbageCollector"]','4h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','1',NULL,'Garbage collectors metrics discovery.','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7e0c60c6b1b34b5c99fa446076f35c28','0','2','0'), ('42685','16','','10169','Memory pool discovery','jmx.discovery["beans","java.lang:name=*,type=MemoryPool"]','4h','90d','0','0','4','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','1',NULL,'Memory pools metrics discovery.','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b5dfe8bb0a754289a716092ad305ceed','0','2','0'), ('42686','16','','10169','GarbageCollector: {#JMXNAME} number of collections per second','jmx["java.lang:name={#JMXNAME},type=GarbageCollector","CollectionCount"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','2',NULL,'Displays the total number of collections that have occurred per second.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','61ad48ae9013481184d33222c7660bef','0','2','0'), ('42687','16','','10169','GarbageCollector: {#JMXNAME} accumulated time spent in collection','jmx["java.lang:name={#JMXNAME},type=GarbageCollector","CollectionTime"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','2',NULL,'Displays the approximate accumulated collection elapsed time, in seconds.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8e3db2efbe714f918ece15216fae628b','0','2','0'), ('42688','16','','10169','Memory pool: {#JMXNAME} committed','jmx["java.lang:name={#JMXNAME},type=MemoryPool","Usage.committed"]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','2',NULL,'Current memory allocated.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8b3da0f9b0b64b58b25ffed71a679ed0','0','2','0'), ('42689','16','','10169','Memory pool: {#JMXNAME} maximum size','jmx["java.lang:name={#JMXNAME},type=MemoryPool","Usage.max"]','1m','31d','365d','0','0','','B','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','2',NULL,'Maximum amount of memory that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f8504be0098b41a6b789c67f88f1c861','0','2','0'), ('42690','16','','10169','Memory pool: {#JMXNAME} used','jmx["java.lang:name={#JMXNAME},type=MemoryPool","Usage.used"]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','2',NULL,'Current memory usage.','0','30d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','74f11991286a474b838898036ebb82e5','0','2','0'), ('42692','15','','10509','Binding duration, p90','kubernetes.scheduler.binding_duration_p90[{#SINGLETON}]','1m','31d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.scheduler.binding_duration[*],5m,90)','','0','','','','','2',NULL,'90 percentile of binding latency in seconds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','1','19ba0e215a9f4e13b3079fcdaf124cc5','0','2','0'), ('42693','15','','10509','Binding duration, p50','kubernetes.scheduler.binding_duration_p50[{#SINGLETON}]','1m','31d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.scheduler.binding_duration[*],5m,50)','','0','','','','','2',NULL,'50 percentile of binding latency in seconds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','1','5f40c030c1964ff7ab7786cee97bee81','0','2','0'), ('42694','15','','10509','Binding duration, p95','kubernetes.scheduler.binding_duration_p95[{#SINGLETON}]','1m','31d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.scheduler.binding_duration[*],5m,95)','','0','','','','','2',NULL,'99 percentile of binding latency in seconds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','1','b24d657a1568437fac77535a80d63bc3','0','2','0'), ('42695','15','','10509','Binding duration, p99','kubernetes.scheduler.binding_duration_p99[{#SINGLETON}]','1m','31d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.scheduler.binding_duration[*],5m,99)','','0','','','','','2',NULL,'95 percentile of binding latency in seconds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','1','258d5d4b6534488a92ba29185e3ca56f','0','2','0'), ('42696','15','','10509','Scheduling algorithm duration, p90','kubernetes.scheduler.scheduling_algorithm_duration_p90[{#SINGLETON}]','1m','31d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.scheduler.scheduling_algorithm_duration[*],5m,90)','','0','','','','','2',NULL,'90 percentile of scheduling algorithm latency in seconds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','1','2368f2c98f3641bdbd030d94ca53a4dd','0','2','0'), ('42697','15','','10509','Scheduling algorithm duration, p50','kubernetes.scheduler.scheduling_algorithm_duration_p50[{#SINGLETON}]','1m','31d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.scheduler.scheduling_algorithm_duration[*],5m,50)','','0','','','','','2',NULL,'50 percentile of scheduling algorithm latency in seconds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','1','3df35ee6e86a424f89f51bb74cb40b9d','0','2','0'), ('42698','15','','10509','Scheduling algorithm duration, p95','kubernetes.scheduler.scheduling_algorithm_duration_p95[{#SINGLETON}]','1m','31d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.scheduler.scheduling_algorithm_duration[*],5m,95)','','0','','','','','2',NULL,'95 percentile of scheduling algorithm latency in seconds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','1','6ca6a2480c4343a8b9a4e6598ec86501','0','2','0'), ('42699','15','','10509','Scheduling algorithm duration, p99','kubernetes.scheduler.scheduling_algorithm_duration_p99[{#SINGLETON}]','1m','31d','365d','0','0','','s','','',NULL,NULL,'bucket_percentile(//kubernetes.scheduler.scheduling_algorithm_duration[*],5m,99)','','0','','','','','2',NULL,'99 percentile of scheduling algorithm latency in seconds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','1','955f0989372c4f9d82ad364b09f5efea','0','2','0'), ('42724','21','','10516','Get data','openweathermap.get.data','10m','0','0','0','4','','','','',NULL,NULL,E'var params = JSON.parse(value), request = new HttpRequest(), data = [], error_msg = [], measurement, temp_unit, wind_unit, errors_only = [], error_locations = [], unique_errors, new_error_msg; function getHttpData(query) { url = params.api_endpoint + query + ''&appid='' + params.apikey + ''&units='' + params.units + ''&lang='' + params.lang; response = request.get(url); Zabbix.log(4, ''[ Openweathermap ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response.''; } } if (request.getStatus() !== 200) { if (response.error && response.error.message) { throw response.error.message; } else { throw ''Failed to receive data. Invalid response status code: '' + request.getStatus(); } } return response; } switch (params.units) { case ''metric'': measurement = ''metric''; temp_unit = ''C''; wind_unit = ''meter/sec''; break; case ''imperial'': measurement = ''imperial''; temp_unit = ''F''; wind_unit = ''miles/hour''; break; default: measurement = ''standard''; temp_unit = ''K''; wind_unit = ''meter/sec''; } locations = params.location.split(''|''); for (var i in locations) { try { if (/^[0-9]+$/g.test(locations[i])) { result = getHttpData(''id='' + locations[i]); } else if (/^.*,[\\w]+$/g.test(locations[i])) { result = getHttpData(''zip='' + locations[i]); } else if (/^(\\-)?[0-9]{1,2}(\\.[0-9]+)?,(\\-)?[0-9]{1,2}(\\.[0-9]+)?/g.test(locations[i])) { coordinates = locations[i].split('',''); result = getHttpData(''lat='' + coordinates[0] + ''&lon='' + coordinates[1]); } else { result = getHttpData(''q='' + encodeURIComponent(locations[i])); } if (!data.filter(function (location) { return location.id === result.id; }).length) { result.measurement = measurement; result.temp_unit = temp_unit; result.wind_unit = wind_unit; data.push(result); } } catch (error) { errors = {}; errors.location = locations[i]; errors.error = error.toString(); error_msg.push(errors); errors_only.push(error.toString()); } } if (error_msg.length === 0) { return JSON.stringify({ ''data'': data, ''errors'': error_msg.toString() }); } else { unique_errors = errors_only.filter(function (value, index, self) { return self.indexOf(value) == index; }); if (unique_errors.length === 1) { for (var j in error_msg) { error_locations.push(error_msg[j].location); } new_error_msg = ''Failed to retrieve data for the following locations: '' + error_locations + ''. '' + unique_errors[0]; return JSON.stringify({ ''data'': data, ''errors'': new_error_msg }); } else { return JSON.stringify({ ''data'': data, ''errors'': error_msg }); } }','','0','','','','','0',NULL,'JSON array with result of OpenWeatherMap API requests.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7db240f752294b2eb86537d6c06cac5e','0','2','0'), ('42738','21','','10517','API service status','proxmox.api.available','5m','31d','365d','0','3','','','','',NULL,'954','try { var params = JSON.parse(value); var req = new HttpRequest(); req.addHeader(''Authorization: PVEAPIToken='' + params.token + ''='' + params.secret); req.get(encodeURI(''https://'' + params.url + '':'' + params.port + ''/api2/json/version'')); } catch (error) { Zabbix.log(3, "Proxmox API failed: " + params.url + " Error: " + error); if (!Number.isInteger(error)) return 520; } return req.getStatus();','','0','','','','','0',NULL,'Get API service status.','0','30d','0','',NULL,'10s','','','','200','1','0','','','0','0','0','0','0','0','0','75f8f8c507774f529ade4bc4255f5fd2','0','2','0'), ('42739','19','','10517','Get cluster resources','proxmox.cluster.resources','5m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Resources index.','0','30d','0','',NULL,'','https://{$PVE.URL.HOST}:{$PVE.URL.PORT}/api2/json/cluster/resources','','','200','1','0','','Authorization: PVEAPIToken={$PVE.TOKEN.ID}={$PVE.TOKEN.SECRET}','0','0','0','0','0','0','0','4fe4fa1323cd481f8aff3bfb716eeae2','0','2','0'), ('42740','19','','10517','Get cluster status','proxmox.cluster.status','5m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get cluster status information.','0','30d','0','',NULL,'','https://{$PVE.URL.HOST}:{$PVE.URL.PORT}/api2/json/cluster/status','','','200','1','0','','Authorization: PVEAPIToken={$PVE.TOKEN.ID}={$PVE.TOKEN.SECRET}','0','0','0','0','0','0','0','6e6a5046b8154bafad375813ca210e1f','0','2','0'), ('42746','19','','10517','LXC [{#NODE.NAME}/{#LXC.NAME}]: Get data','proxmox.lxc.get.data[{#LXC.ID}]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get LXC status data.','0','30d','0','',NULL,'','https://{$PVE.URL.HOST}:{$PVE.URL.PORT}/api2/json/nodes/{#NODE.NAME}/{#LXC.ID}/status/current','','','200','1','0','','Authorization: PVEAPIToken={$PVE.TOKEN.ID}={$PVE.TOKEN.SECRET}','0','0','0','0','0','0','0','58efec1a4bb94bfab59d5985d036811e','0','2','0'), ('42747','19','','10517','Node [{#NODE.NAME}]: Time','proxmox.node.time[{#NODE.NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Read server time and time zone settings.','0','30d','0','',NULL,'','https://{$PVE.URL.HOST}:{$PVE.URL.PORT}/api2/json/nodes/{#NODE.NAME}/time','','','200','1','0','','Authorization: PVEAPIToken={$PVE.TOKEN.ID}={$PVE.TOKEN.SECRET}','0','0','0','0','0','0','0','c0c03653a0af426b8f61c77cabab38a4','0','2','0'), ('42748','19','','10517','Node [{#NODE.NAME}]: Status','proxmox.node.status[{#NODE.NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Read node status.','0','30d','0','',NULL,'','https://{$PVE.URL.HOST}:{$PVE.URL.PORT}/api2/json/nodes/{#NODE.NAME}/status','','','200','1','0','','Authorization: PVEAPIToken={$PVE.TOKEN.ID}={$PVE.TOKEN.SECRET}','0','0','0','0','0','0','0','c1ea4d4f83114c9b96fe81069602f060','0','2','0'), ('42749','19','','10517','Node [{#NODE.NAME}]: RRD statistics','proxmox.node.rrd[{#NODE.NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Read node RRD statistics.','0','30d','0','',NULL,'','https://{$PVE.URL.HOST}:{$PVE.URL.PORT}/api2/json/nodes/{#NODE.NAME}/rrddata','[{"timeframe":"hour"},{"cf":"AVERAGE"}]','','200','1','0','','Authorization: PVEAPIToken={$PVE.TOKEN.ID}={$PVE.TOKEN.SECRET}','0','0','0','0','0','0','0','fa2a60a98fd4445eadff4398ae6872bd','0','2','0'), ('42750','19','','10517','VM [{#NODE.NAME}/{#QEMU.NAME}]: Get data','proxmox.qemu.get.data[{#QEMU.ID}]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get VM status data.','0','30d','0','',NULL,'','https://{$PVE.URL.HOST}:{$PVE.URL.PORT}/api2/json/nodes/{#NODE.NAME}/{#QEMU.ID}/status/current','','','200','1','0','','Authorization: PVEAPIToken={$PVE.TOKEN.ID}={$PVE.TOKEN.SECRET}','0','0','0','0','0','0','0','a3562f2f48834a88842da612fb6f464c','0','2','0'), ('42792','3','','10518','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'959','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bbebf1aafe8149a7825ffb976d20fd5c','0','2','0'), ('42805','15','','10518','Available memory','vm.memory.available','1m','31d','365d','0','3','','B','','',NULL,NULL,'last(//vm.memory.free)+last(//vm.memory.buffers)+last(//vm.memory.cached)','','0','','','','','0',NULL,'Please note that memory utilization is a rough estimate, since memory available is calculated as free+buffers+cached, which is not 100% accurate, but the best we can get using SNMP.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','43901b6beb7f4f559464775863d19976','0','2','0'), ('42806','20','get[1.3.6.1.4.1.2021.4.14.0]','10518','Memory (buffers)','vm.memory.buffers','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB The total amount of real or virtual memory currently allocated for use as memory buffers.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3b6007f808e04eefafe236737773ce7f','0','2','0'), ('42807','20','get[1.3.6.1.4.1.2021.4.15.0]','10518','Memory (cached)','vm.memory.cached','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB The total amount of real or virtual memory currently allocated for use as cached memory.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ab4c02a4c1fc4ef69a31e9b83a1a9263','0','2','0'), ('42808','20','get[1.3.6.1.4.1.2021.4.6.0]','10518','Free memory','vm.memory.free','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB The amount of real/physical memory currently unused or available.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d55491912c814481b0931e836838e9b0','0','2','0'), ('42809','20','get[1.3.6.1.4.1.2021.4.5.0]','10518','Total memory','vm.memory.total','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB The total memory expressed in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e3802f02a4364e6bb37fb7fe780c4137','0','2','0'), ('42810','15','','10518','Memory utilization','vm.memory.util','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//vm.memory.total)-(last(//vm.memory.free)+last(//vm.memory.buffers)+last(//vm.memory.cached)))/last(//vm.memory.total)*100','','0','','','','','0',NULL,'Please note that memory utilization is a rough estimate, since memory available is calculated as free+buffers+cached, which is not 100% accurate, but the best we can get using SNMP.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c70fad7e758e480fbae726a677a29ead','0','2','0'), ('42813','3','','10518','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','43b3e4ddfeb34a1abba953cd7503ce2c','0','2','0'), ('42815','3','','10518','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','006c38011abf42f69ef5d9238a356faf','0','2','0'), ('42817','20','get[1.3.6.1.4.1.2021.11.59.0]','10518','Interrupts per second','system.cpu.intr','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB Number of interrupts processed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b41b8db2212848db83a6a0d9369fecdd','0','2','0'), ('42822','20','get[1.3.6.1.4.1.2021.11.60.0]','10518','Context switches per second','system.cpu.switches','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB Number of context switches.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c8740f4489c04eedb072869e27f68a60','0','2','0'), ('42825','20','get[1.3.6.1.2.1.1.5.0]','10518','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','46b98d1ef62d49a0bb22687dc119acf0','0','2','0'), ('42827','20','get[1.3.6.1.4.1.2021.4.4.0]','10518','Free swap space','system.swap.free','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB The amount of swap space currently unused or available.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e61f086a8a3942569e6c7f67b24e8f86','0','2','0'), ('42828','15','','10518','Free swap space in %','system.swap.pfree','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//system.swap.free)/last(//system.swap.total)*100','','0','','','','','0',NULL,'The free space of the swap volume/file expressed in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2a075af85eed44c8adba2cb7bc657b40','0','2','0'), ('42829','20','get[1.3.6.1.4.1.2021.4.3.0]','10518','Total swap space','system.swap.total','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB The total amount of swap space configured for this host.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b0fc3cd77ed348bb955fc98d8636ab76','0','2','0'), ('42833','5','','10518','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'960','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fcbcc100655d478bbf868ffc2a0302d8','0','2','0'), ('42858','15','','10518','Dataset [{#DATASET_NAME}]: Usage in %','truenas.dataset.pused[{#DATASET_NAME}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//truenas.dataset.used[{#DATASET_NAME}]) * 100 / last(//truenas.dataset.size.total[{#DATASET_NAME}])','','0','','','','','2',NULL,'The used size of the dataset in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fd6b3a3ebfb041b3a9026fb1b4370ec7','0','2','0'), ('42863','15','','10518','Pool [{#POOLNAME}]: Usage in %','truenas.zpool.pused[{#POOLNAME}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//truenas.zpool.used[{#POOLNAME}]) * 100 / last(//truenas.zpool.size.total[{#POOLNAME}])','','0','','','','','2',NULL,'The used size of the storage pool in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5f972063f958463ab132b8d478092bd8','0','2','0'), ('42877','3','','10175','Get sensors','vmware.hv.sensors.get[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Master item for sensor data.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3c9d6ffb53624758ad888bf70f69218c','0','2','0'), ('42880','0','','10329','Get queries','pgsql.queries["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}","{$PG.QUERY_ETIME.MAX.WARN}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect all metrics by query execution time.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','01123126fcd54adc84c3bbfa227d9c0c','0','2','0'), ('42930','3','','10519','Service ping','net.tcp.service["{$COCKROACHDB.API.SCHEME}","{$COCKROACHDB.API.HOST}","{$COCKROACHDB.API.PORT}"]','1m','31d','365d','0','3','','','','',NULL,'963','','','0','','','','','0',NULL,'Check if HTTP/HTTPS service accepts TCP connections.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','00afa7b32af9499c89e939c96e0e29d1','0','2','0'), ('42931','19','','10519','Get health','cockroachdb.get_health','1m','31d','365d','0','3','','','','',NULL,'961','','','0','','','','','0',NULL,'Get node /health endpoint','0','30d','0','',NULL,'15s','{$COCKROACHDB.API.SCHEME}://{$COCKROACHDB.API.HOST}:{$COCKROACHDB.API.PORT}/health','','','200,500','1','0','','','1','0','0','0','0','0','0','a8cd030e869b4d788126ee5fa35d3403','0','2','0'), ('42932','19','','10519','Get readiness','cockroachdb.get_readiness','1m','31d','365d','0','3','','','','',NULL,'962','','','0','','','','','0',NULL,'Get node /health?ready=1 endpoint','0','30d','0','',NULL,'15s','{$COCKROACHDB.API.SCHEME}://{$COCKROACHDB.API.HOST}:{$COCKROACHDB.API.PORT}/health?ready=1','','','200,503','1','0','','','1','0','0','0','0','0','0','3e5e18e02b1b4f8d8f17c2e7d993169c','0','2','0'), ('42933','19','','10519','Get metrics','cockroachdb.get_metrics','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get raw metrics from the Prometheus endpoint.','0','30d','0','',NULL,'15s','{$COCKROACHDB.API.SCHEME}://{$COCKROACHDB.API.HOST}:{$COCKROACHDB.API.PORT}/_status/vars','','','200','1','0','','','0','0','0','0','0','0','0','926415babea74e2f951a0420bbdf1d8d','0','2','0'), ('42987','15','','10519','Storage [{#STORE}]: Capacity available in %','cockroachdb.storage.capacity.[{#STORE},available_percent]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//cockroachdb.storage.capacity.[{#STORE},available]) / last(//cockroachdb.storage.capacity.[{#STORE},total]) * 100','','0','','','','','2',NULL,'Available storage capacity in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bb07359b779d4e4080593a02c18dc8c1','0','2','0'), ('42988','15','','10519','Storage [{#STORE}]: RocksDB cache hit ratio','cockroachdb.rocksdb.cache.[{#STORE},hit_ratio]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//cockroachdb.rocksdb.cache.hits.[{#STORE},rate]) / (last(//cockroachdb.rocksdb.cache.hits.[{#STORE},rate]) + last(//cockroachdb.rocksdb.cache.misses.[{#STORE},rate])) * 100','','0','','','','','2',NULL,'Block cache hit ratio in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cafdf6248d114787b2a3f9647a4afea9','0','2','0'), ('43018','19','','10520','Get node metrics','envoy.get_metrics','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get server metrics.','0','30d','0','',NULL,'','{$ENVOY.URL}{$ENVOY.METRICS.PATH}','','','200','1','0','','','0','0','0','0','0','0','0','c6baf4c4e99f4516a23f87c089252a82','0','2','0'), ('43050','15','','10520','Cluster ["{#CLUSTER_NAME}"]: Membership, unhealthy','envoy.cluster.membership_unhealthy["{#CLUSTER_NAME}"]','1m','31d','365d','0','3','','','','',NULL,NULL,'last(//envoy.cluster.membership_total["{#CLUSTER_NAME}"]) - last(//envoy.cluster.membership_healthy["{#CLUSTER_NAME}"])','','0','','','','','2',NULL,'Current cluster unhealthy.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d453ade473ae4beaab06afa117814a1b','0','2','0'), ('43077','5','','10361','Active agent availability','zabbix[host,active_agent,available]','1m','31d','365d','0','3','','','','',NULL,'967','','','0','','','','','0',NULL,'Availability of active checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - unknown 1 - available 2 - not available','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b20b5df8198e4cdc8b584061f6815d5d','0','2','0'), ('43078','5','','10326','Active agent availability','zabbix[host,active_agent,available]','1m','31d','365d','0','3','','','','',NULL,'968','','','0','','','','','0',NULL,'Availability of active checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - unknown 1 - available 2 - not available','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bfe53ca77e2046d6bb9ece5250e227f1','0','2','0'), ('43079','5','','10343','Active agent availability','zabbix[host,active_agent,available]','1m','31d','365d','0','3','','','','',NULL,'969','','','0','','','','','0',NULL,'Availability of active checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - unknown 1 - available 2 - not available','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','090fb1a5698e4e7080abf379b377b6f5','0','2','0'), ('43080','5','','10351','Active agent availability','zabbix[host,active_agent,available]','1m','31d','365d','0','3','','','','',NULL,'970','','','0','','','','','0',NULL,'Availability of active checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - unknown 1 - available 2 - not available','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1ac6ebdb5c98415b94cb44da5feeac7f','0','2','0'), ('43081','21','','10521','Get local services','consul.get_local_services','1m','0','0','0','4','','','','',NULL,NULL,'var Consul = { setParams: function (params) { [''api_endpoint'', ''token''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } }); Consul.params = params; if (typeof Consul.params.api_endpoint === ''string'' && !Consul.params.api_endpoint.endsWith(''/'')) { Consul.params.api_endpoint += ''/''; } }, request: function (query) { var response, request = new HttpRequest(), url = Consul.params.api_endpoint + query; request.addHeader(''Content-Type: application/json''); request.addHeader(''X-Consul-Token: '' + Consul.params.token); Zabbix.log(4, ''[ Consul ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ Consul ] Received response with status code '' + request.getStatus() + '': '' + response); if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from Consul Agent API.''; } } return { status: request.getStatus(), response: response }; }, getServices: function () { var result = Consul.request(''v1/agent/services''), services = []; if (typeof result.response !== ''object'' || result.status != 200) { throw ''Cannot get service list from Consul Agent API.''; } Object.keys(result.response).forEach(function (service) { services.push(result.response[service][''ID'']); }); return services; }, getServiceStats: function (service_id) { var result = Consul.request(''v1/agent/health/service/id/'' + service_id); if (typeof result.response !== ''object'' || [200, 429, 503].indexOf(result.status) === -1) { throw ''Cannot get service info from Consul Agent API.''; } return result.response; } } try { Consul.setParams(JSON.parse(value)); var services = Consul.getServices(), result = []; services.forEach(function (service) { var service_stats = Consul.getServiceStats(service); result.push({ ''id'': service, ''name'': service_stats[''Service''][''Service''], ''status'': service_stats[''AggregatedStatus''], ''checks'': service_stats[''Checks''], ''namespace'': typeof service_stats[''Service''][''Namespace''] === ''undefined'' ? ''None'' : service_stats[''Service''][''Namespace''] }); }); return JSON.stringify(result); } catch (error) { error += ((String(error).endsWith(''.'')) ? '''' : ''.''); Zabbix.log(3, ''[ Consul ] ERROR: '' + error); return JSON.stringify({error: error + '' Check debug log for more information.''}); }','','0','','','','','0',NULL,'Get all the services that are registered with the local agent and their status.','0','30d','0','',NULL,'15s','','','','200','1','0','','','0','0','0','0','0','0','0','2b3cbe778f1c4d858e43320b8c25960d','0','2','0'), ('43082','19','','10521','Get node info','consul.get_node_info','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get configuration and member information of the local agent.','0','30d','0','',NULL,'15s','{$CONSUL.NODE.API.URL}/v1/agent/self','','','200','1','0','','X-Consul-Token: {$CONSUL.TOKEN}','0','0','0','0','0','0','0','7e2689de8d78499fb52d718989b7ec8b','0','2','0'), ('43083','19','','10521','Get instance metrics','consul.get_metrics','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get raw metrics from Consul instance /metrics endpoint.','0','30d','0','',NULL,'15s','{$CONSUL.NODE.API.URL}/v1/agent/metrics?format=prometheus','','','200','1','0','','X-Consul-Token: {$CONSUL.TOKEN}','0','0','0','0','0','0','0','c0e199969c19444fb68fd8497fcab047','0','2','0'), ('43156','19','','10522','Get services','consul.get_catalog_services','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Catalog of services registered in a given datacenter.','0','30d','0','',NULL,'15s','{$CONSUL.CLUSTER.URL}/v1/catalog/services','','','200','1','0','','X-Consul-Token: {$CONSUL.TOKEN} X-Consul-Namespace: {$CONSUL.NAMESPACE}','0','0','0','0','0','0','0','fd087c72bb7842c6b84b0b70788506b0','0','2','0'), ('43157','19','','10522','Get nodes Serf health status','consul.get_cluster_serf','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get Serf Health Status for all agents in cluster.','0','30d','0','',NULL,'15s','{$CONSUL.CLUSTER.URL}/v1/health/state/any?filter=CheckID==serfHealth','','','200','1','0','','X-Consul-Token: {$CONSUL.TOKEN} X-Consul-Namespace: {$CONSUL.NAMESPACE}','0','0','0','0','0','0','0','cad23435cc454f01b47034bd8427931d','0','2','0'), ('43158','19','','10522','Cluster leader','consul.get_leader','1m','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Current leader address.','0','30d','0','',NULL,'15s','{$CONSUL.CLUSTER.URL}/v1/status/leader','','','200','1','0','','X-Consul-Token: {$CONSUL.TOKEN}','0','0','0','0','0','0','0','e52fcc1af52e4df5b18118355260a8d6','0','2','0'), ('43159','19','','10522','Get nodes','consul.get_nodes','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Catalog of nodes registered in a given datacenter.','0','30d','0','',NULL,'15s','{$CONSUL.CLUSTER.URL}/v1/catalog/nodes','','','200','1','0','','X-Consul-Token: {$CONSUL.TOKEN}','0','0','0','0','0','0','0','859451004516499e9636d96cde023d21','0','2','0'), ('43160','19','','10522','Nodes: peers','consul.get_peers','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of Raft peers for the datacenter in which the agent is running.','0','30d','0','',NULL,'15s','{$CONSUL.CLUSTER.URL}/v1/status/peers','','','200','1','0','','X-Consul-Token: {$CONSUL.TOKEN}','0','0','0','0','0','0','0','2400f78a5ada4a59b63fc049b6e3b3bf','0','2','0'), ('43168','19','','10522','["{#SERVICE_NAME}"]: Get raw service state','consul.get_service_stats["{#SERVICE_NAME}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Retrieve service instances providing the service indicated on the path.','0','30d','0','',NULL,'15s','{$CONSUL.CLUSTER.URL}/v1/health/service/{#SERVICE_NAME}','','','200, 429, 503','1','0','','X-Consul-Token: {$CONSUL.TOKEN} X-Consul-Namespace: {$CONSUL.NAMESPACE}','0','0','0','0','0','0','0','38576dd458a94259ab273204ffe9aebd','0','2','0'), ('43174','21','','10524','Get data','hpe.msa.get.data','1m','0','0','0','4','','','','',NULL,NULL,'var params = JSON.parse(value), fields = [''username'', ''password'', ''base_url''], methods = [ ''system'', ''controllers'', ''controller-statistics'', ''frus'', ''disk-groups'', ''disk-group-statistics'', ''disks'', ''enclosures'', ''fans'', ''pools'', ''ports'', ''power-supplies'', ''volumes'', ''volume-statistics'' ], data_tmp = {}, result_tmp = {}, session_key, data = {}; fields.forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } }); if (!params.base_url.endsWith(''/'')) { params.base_url += ''/''; } var response, request = new HttpRequest(); request.addHeader(''datatype: xml''); auth_string = md5(params.username + ''_'' + params.password); response = request.get(params.base_url + ''api/login/'' + auth_string); if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Authentication request has failed with status code '' + request.getStatus() + '': '' + response; } if (response !== null) { try { session_key = XML.query(response, ''/RESPONSE/OBJECT/PROPERTY[@name="response"]/text()''); return_code = XML.query(response, ''/RESPONSE/OBJECT/PROPERTY[@name="return-code"]/text()''); } catch (error) { throw ''Failed to parse authentication response received from device API.''; } } if (return_code != ''1'') { throw ''Authentication failed.''; } else if (session_key === '''') { throw ''Failed to retrieve session key from authentication response.''; } request.clearHeader(); request.addHeader(''sessionKey: '' + session_key); request.addHeader(''datatype: api-embed''); data.errors = []; methods.forEach(function (method) { response = request.get(params.base_url + ''api/show/'' + method); method_error = ''''; if (request.getStatus() < 200 || request.getStatus() >= 300) { method_error = ''Method: '' + method + ''. Request has failed with status code '' + request.getStatus() + '': '' + response; data.errors.push(method_error); return; } if (response !== null) { try { result_tmp = JSON.parse(XML.toJson(response)); data[method] = []; result_tmp.RESPONSE.OBJECT.forEach(function (object) { var data_tmp = {}; if (object[''@basetype''] !== ''status'' && object[''@basetype''] !== ''enclosure-sku'') { object.PROPERTY.forEach(function (property) { name = property[''@name'']; value = property[''#text''] || ''''; data_tmp[name] = value; }); if (method == ''controller-statistics'') { data_tmp[''durable-id''] = data_tmp[''durable-id''].toLowerCase(); } data[method].push(data_tmp); } }); } catch (error) { method_error = ''Method: '' + method + ''. Failed to parse response received from device API.''; } } else { method_error = ''Method: '' + method + ''. No data received by request.''; } if (method_error.length > 0) { data.errors.push(method_error); } }); if (data.errors.length == 0) { data.errors = ''''; } response = request.get(params.base_url + ''api/exit''); if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Logout request failed with status code '' + request.getStatus() + '': '' + response; } return JSON.stringify(data);','','0','','','','','0',NULL,'The JSON with result of API requests.','0','30d','0','',NULL,'{$HPE.MSA.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','e07e09dbcdd44f509a06343c9a53a455','0','2','0'), ('43175','3','','10524','Service ping','net.tcp.service["{$HPE.MSA.API.SCHEME}","{$HPE.MSA.API.HOST}","{$HPE.MSA.API.PORT}"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Check if HTTP/HTTPS service accepts TCP connections.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d1242f5aede14008ae6896123bb944a5','0','2','0'), ('43194','15','','10524','Disk group [{#NAME}]: Space utilization','hpe.msa.disks.groups.space["{#NAME}",util]','1m','31d','365d','0','0','','%','','',NULL,NULL,'100-last(//hpe.msa.disks.groups.space["{#NAME}",free])/last(//hpe.msa.disks.groups.space["{#NAME}",total])*100','','0','','','','','2',NULL,'The space utilization percentage in the disk group.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','760b63c8140544dd8af0de8fd873c8cb','0','2','0'), ('43195','15','','10524','Pool [{#NAME}]: Space utilization','hpe.msa.pools.space["{#NAME}",util]','1m','31d','365d','0','0','','%','','',NULL,NULL,'100-last(//hpe.msa.pools.space["{#NAME}",free])/last(//hpe.msa.pools.space["{#NAME}",total])*100','','0','','','','','2',NULL,'The space utilization percentage in the pool.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cc361d77ac8046fc833db41fbd5d2cd3','0','2','0'), ('43281','21','','10525','Get data','hpe.msa.get.data','1m','0','0','0','4','','','','',NULL,NULL,'var params = JSON.parse(value), fields = [''username'', ''password'', ''base_url''], methods = [ ''system'', ''controllers'', ''controller-statistics'', ''frus'', ''disk-groups'', ''disk-group-statistics'', ''disks'', ''enclosures'', ''fans'', ''pools'', ''ports'', ''power-supplies'', ''volumes'', ''volume-statistics'' ], result = {}, data = {}; fields.forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } }); if (!params.base_url.endsWith(''/'')) { params.base_url += ''/''; } var response, request = new HttpRequest(); request.addHeader(''datatype: json''); auth_string = sha256(params.username + ''_'' + params.password); response = request.get(params.base_url + ''api/login/'' + auth_string); if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Authentication request has failed with status code '' + request.getStatus() + '': '' + response; } if (response !== null) { try { auth_data = JSON.parse(response); } catch (error) { throw ''Failed to parse authentication response received from device API.''; } } session_key = auth_data[''status''][0][''response'']; request.addHeader(''sessionKey: '' + session_key); data.errors = []; methods.forEach(function (method) { response = request.get(params.base_url + ''api/show/'' + method); method_error = ''''; if (request.getStatus() < 200 || request.getStatus() >= 300) { method_error = ''Method: '' + method + ''. Request has failed with status code '' + request.getStatus() + '': '' + response; data.errors.push(method_error); return; } if (response !== null) { try { result = JSON.parse(response); switch (method) { case ''controller-statistics'': var stats_array = result[''controller-statistics''] || []; for (var i = 0; i < stats_array.length; i++) { result[''controller-statistics''][i][''durable-id''] = result[''controller-statistics''][i][''durable-id''].toLowerCase(); } data[method] = result[method]; break; case ''frus'': data[method] = result[''enclosure-fru'']; break; case ''disks'': data[method] = result[''drives'']; break; case ''fans'': data[method] = result[''fan'']; break; case ''ports'': data[method] = result[''port'']; break; default: data[method] = result[method]; } } catch (error) { method_error = ''Method: '' + method + ''. Failed to parse response received from device API.''; } } else { method_error = ''Method: '' + method + ''. No data received by request.''; } if (method_error.length > 0) { data.errors.push(method_error); } }); if (data.errors.length == 0) { data.errors = ''''; } return JSON.stringify(data);','','0','','','','','0',NULL,'The JSON with result of API requests.','0','30d','0','',NULL,'{$HPE.MSA.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','bafec666b170480f941fe25cb3cf903d','0','2','0'), ('43282','3','','10525','Service ping','net.tcp.service["{$HPE.MSA.API.SCHEME}","{$HPE.MSA.API.HOST}","{$HPE.MSA.API.PORT}"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Check if HTTP/HTTPS service accepts TCP connections.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3831060089ff497993088472e922df38','0','2','0'), ('43301','15','','10525','Disk [{#DURABLE.ID}]: Space total','hpe.msa.disks.space["{#DURABLE.ID}",total]','1h','31d','365d','0','3','','B','','',NULL,NULL,'last(//hpe.msa.disks.blocks["{#DURABLE.ID}",size])*last(//hpe.msa.disks.blocks["{#DURABLE.ID}",total])','','0','','','','','2',NULL,'Total size of the disk.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6c20cf4e84b0427fbe797fc209d78785','0','2','0'), ('43302','15','','10525','Disk group [{#NAME}]: Space utilization','hpe.msa.disks.groups.space["{#NAME}",util]','1m','31d','365d','0','0','','%','','',NULL,NULL,'100-last(//hpe.msa.disks.groups.space["{#NAME}",free])/last(//hpe.msa.disks.groups.space["{#NAME}",total])*100','','0','','','','','2',NULL,'The space utilization percentage in the disk group.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2a9c7f901f494b8bb7d2c74cd7c3030c','0','2','0'), ('43303','15','','10525','Disk group [{#NAME}]: Space total','hpe.msa.disks.groups.space["{#NAME}",total]','1m','31d','365d','0','3','','B','','',NULL,NULL,'last(//hpe.msa.disks.groups.blocks["{#NAME}",size])*last(//hpe.msa.disks.groups.blocks["{#NAME}",total])','','0','','','','','2',NULL,'The capacity of the disk group.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fb3dd5308c97446693932206be17ace3','0','2','0'), ('43304','15','','10525','Disk group [{#NAME}]: Space free','hpe.msa.disks.groups.space["{#NAME}",free]','1m','31d','365d','0','3','','B','','',NULL,NULL,'last(//hpe.msa.disks.groups.blocks["{#NAME}",size])*last(//hpe.msa.disks.groups.blocks["{#NAME}",free])','','0','','','','','2',NULL,'The free space in the disk group.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b0d49d3da6b14b9cb8eeb95a3665a26e','0','2','0'), ('43305','15','','10525','Pool [{#NAME}]: Space free','hpe.msa.pools.space["{#NAME}",free]','1m','31d','365d','0','3','','B','','',NULL,NULL,'last(//hpe.msa.pools.blocks["{#NAME}",size])*last(//hpe.msa.pools.blocks["{#NAME}",available])','','0','','','','','2',NULL,'The free space in the pool.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d99eeba76b354e73b0118b46402d93bf','0','2','0'), ('43306','15','','10525','Pool [{#NAME}]: Space total','hpe.msa.pools.space["{#NAME}",total]','1m','31d','365d','0','3','','B','','',NULL,NULL,'last(//hpe.msa.pools.blocks["{#NAME}",size])*last(//hpe.msa.pools.blocks["{#NAME}",total])','','0','','','','','2',NULL,'The capacity of the pool.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9fce545fbe724da28a13b8ca8759c37d','0','2','0'), ('43307','15','','10525','Pool [{#NAME}]: Space utilization','hpe.msa.pools.space["{#NAME}",util]','1m','31d','365d','0','0','','%','','',NULL,NULL,'100-last(//hpe.msa.pools.space["{#NAME}",free])/last(//hpe.msa.pools.space["{#NAME}",total])*100','','0','','','','','2',NULL,'The space utilization percentage in the pool.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ad9bdb342a494d82a36e42e75a3bbf3e','0','2','0'), ('43308','15','','10525','Volume [{#NAME}]: Space total','hpe.msa.volumes.space["{#NAME}",total]','1m','31d','365d','0','3','','B','','',NULL,NULL,'last(//hpe.msa.volumes.blocks["{#NAME}",size])*last(//hpe.msa.volumes.blocks["{#NAME}",total])','','0','','','','','2',NULL,'The capacity of the volume.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','eb09d8791bb84c8aadf5cdcac3d76413','0','2','0'), ('43309','15','','10525','Volume [{#NAME}]: Space allocated','hpe.msa.volumes.space["{#NAME}",allocated]','1m','31d','365d','0','3','','B','','',NULL,NULL,'last(//hpe.msa.volumes.blocks["{#NAME}",size])*last(//hpe.msa.volumes.blocks["{#NAME}",allocated])','','0','','','','','2',NULL,'The amount of space currently allocated to the volume.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','860855a80c554e0685d4d4125342b547','0','2','0'), ('43398','3','','10526','Service ping','net.tcp.service["{$HPE.PRIMERA.API.SCHEME}","{$HPE.PRIMERA.API.HOST}","{$HPE.PRIMERA.API.PORT}"]','1m','31d','365d','0','3','','','','',NULL,'1005','','','0','','','','','0',NULL,'Checks if the service is running and accepting TCP connections.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a0b4fdee38a64c5f82fd051ea74a7b2d','0','2','0'), ('43399','21','','10526','Get data','hpe.primera.get.data','1m','0','0','0','4','','','','',NULL,NULL,E'var Primera = { params: {}, session_key: null, setParams: function (params) { [''username'', ''password'', ''base_url''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); Primera.params = params; if (typeof Primera.params.base_url === ''string'' && !Primera.params.base_url.endsWith(''/'')) { Primera.params.base_url += ''/''; } }, login: function () { if (Primera.session_key !== null) { return; } var response, request = new HttpRequest(); request.addHeader(''Content-Type: application/json''); response = request.post(Primera.params.base_url + ''api/v1/credentials'', JSON.stringify({ ''user'': Primera.params.username, ''password'': Primera.params.password })); if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Auth request failed with status code '' + request.getStatus() + '': '' + response; } if (response !== null) { try { auth_data = JSON.parse(response); } catch (error) { throw ''Failed to parse auth response received from device API.''; } } else { throw ''No data received by auth request.'' } if (''key'' in auth_data) { Primera.session_key = auth_data[''key'']; } else { throw ''Auth response does not contain session key.'' } }, logout: function () { if (Primera.session_key !== null) { (new HttpRequest()).delete(Primera.params.base_url + ''api/v1/credentials/'' + Primera.session_key); } }, requestData: function (method) { if (Primera.session_key === null) { return; } request = new HttpRequest(); request.addHeader(''X-HP3PAR-WSAPI-SessionKey: '' + Primera.session_key); raw_data = request.get(Primera.params.base_url + ''api/v1/'' + method); if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } if (raw_data !== null) { try { return JSON.parse(raw_data); } catch (error) { throw ''Failed to parse response received from device API.''; } } else { throw ''No data received by '' + method + '' request.''; } } }; var methods = [''disks'', ''cpgs'', ''hosts'', ''ports'', ''system'', ''tasks'', ''volumes''], data = {}; data[''errors''] = {}; try { Primera.setParams(JSON.parse(value)); try { Primera.login(); } catch (error) { data.errors.auth = error.toString(); } if (!(''auth'' in data.errors)) { for (var i in methods) { try { if (methods[i] === ''tasks'') { var result = [], tmp_tasks = {}; tasks = Primera.requestData(methods[i]); tasks.members.forEach(function (task) { tmp_tasks[task.name] = task; }); for (var task in tmp_tasks) { result.push(tmp_tasks[task]); } data[methods[i]] = result; } else { data[methods[i]] = Primera.requestData(methods[i]); } } catch (error) { data.errors[methods[i]] = error.toString(); } } } } catch (error) { data.errors.params = error.toString(); } try { Primera.logout(); } catch (error) { } if (Object.keys(data.errors).length !== 0) { errors = ''Failed to receive data:''; for (var error in data.errors) { errors += ''\\n'' + error + '' : '' + data.errors[error]; } data.errors = errors; } else { data.errors = ''''; } return JSON.stringify(data);','','0','','','','','0',NULL,'The JSON with result of WSAPI requests.','0','30d','0','',NULL,'{$HPE.PRIMERA.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','530e20083da8423e9d30c8342f1b7da3','0','2','0'), ('43497','21','','10527','Get metrics data','aws.ec2.get_metrics','0s;m/5','0','0','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, request_period: 600, metadata: ''http://169.254.169.254/latest/'', getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''GET'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload), ''''), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''region'', ''instance_id''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, prepareRecursive: function (prefix, param) { var result = {}; if (typeof param === ''object'') { if (Array.isArray(param)) { param.forEach(function (value, index) { var nested = AWS.prepareRecursive(prefix + ''.member.'' + (index + 1), value); Object.keys(nested).forEach(function (key) { result[key] = nested[key]; }); }); } else { Object.keys(param).forEach(function (k) { var nested = AWS.prepareRecursive(prefix + ''.'' + k, param[k]); Object.keys(nested).forEach(function (key) { result[key] = nested[key]; }); }); } } else { result[prefix] = param; } return result; }, renderPayload: function (period, instance_id) { var metrics_list = [ ''StatusCheckFailed:Count'', ''StatusCheckFailed_Instance:Count'', ''StatusCheckFailed_System:Count'', ''CPUUtilization:Percent'', ''NetworkIn:Bytes'', ''NetworkOut:Bytes'', ''NetworkPacketsIn:Count'', ''NetworkPacketsOut:Count'', ''DiskReadOps:Count'', ''DiskWriteOps:Count'', ''DiskReadBytes:Bytes'', ''DiskWriteBytes:Bytes'', ''MetadataNoToken:Count'', ''CPUCreditUsage:Count'', ''CPUCreditBalance:Count'', ''CPUSurplusCreditBalance:Count'', ''CPUSurplusCreditsCharged:Count'', ''EBSReadOps:Count'', ''EBSWriteOps:Count'', ''EBSReadBytes:Bytes'', ''EBSWriteBytes:Bytes'', ''EBSIOBalance %:Percent'', ''EBSByteBalance %:Percent'' ]; var metric_payload = []; metrics_list.forEach(function (metric) { var parts = metric.split('':'', 2); var name = parts[0].replace(/[^a-zA-Z0-9]/g, ''''); metric_payload.push({ ''Id'': name.charAt(0).toLowerCase() + name.slice(1), ''MetricStat'': { ''Metric'': { ''MetricName'': parts[0], ''Namespace'': ''AWS/EC2'', ''Dimensions'': [ { ''Name'': ''InstanceId'', ''Value'': instance_id } ] }, ''Period'': period, ''Stat'': ''Average'', ''Unit'': parts[1] } }); }); return metric_payload; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, request: function (method, region, service, params, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''), host = service + ''.'' + region + ''.amazonaws.com'', canonical_uri = ''/'', canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date'', canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + (AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken)); } Zabbix.log(4, ''[ AWS EC2 ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ AWS EC2 ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { try { response = JSON.parse(XML.toJson(response)); } catch (error) { throw ''Failed to parse response received from AWS CloudWatch API. Check debug log for more information.''; } } return response; }, getMetricsData: function () { var timestamp = new Date().getTime(), end_time = new Date(timestamp).toISOString().replace(/\\.\\d+Z/, ''Z''), start_time = new Date(timestamp - AWS.request_period * 1000).toISOString().replace(/\\.\\d+Z/, ''Z''), payload = AWS.prepareRecursive(''MetricDataQueries'', AWS.renderPayload(AWS.request_period, AWS.params.instance_id)); payload[''Action''] = ''GetMetricData''; payload[''Version''] = ''2010-08-01''; payload[''StartTime''] = start_time; payload[''EndTime''] = end_time; payload[''ScanBy''] = ''TimestampDescending''; result = AWS.request(''GET'', AWS.params.region, ''monitoring'', AWS.prepareParams(payload)); if (typeof result !== ''object'' || typeof result.GetMetricDataResponse !== ''object'' || typeof result.GetMetricDataResponse.GetMetricDataResult !== ''object'' || typeof result.GetMetricDataResponse.GetMetricDataResult.MetricDataResults !== ''object'') { throw ''Cannot get metrics data from AWS CloudWatch API. Check debug log for more information.''; } return result.GetMetricDataResponse.GetMetricDataResult.MetricDataResults; } }; try { AWS.setParams(JSON.parse(value)); return JSON.stringify(AWS.getMetricsData()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS EC2 ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'Get instance metrics. Full metrics list related to EC2: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/viewing_metrics_with_cloudwatch.html','0','30d','0','',NULL,'15s','','','','200','1','0','','','0','0','0','0','0','0','0','63ab011505f24885b843a9ac48b36a84','0','2','0'), ('43498','21','','10527','Get volumes data','aws.ec2.get_volumes','5m','0','0','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, request_period: 600, metadata: ''http://169.254.169.254/latest/'', getField: function (data, path, val) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || data === null || typeof data[step] === ''undefined'') { if (typeof val === ''undefined'') { throw ''Required field was not found: '' + path; } return val } data = data[step]; } return data; }, getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''GET'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload), ''''), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''region'', ''instance_id''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, request: function (method, region, service, params, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''), host = service + ''.'' + region + ''.amazonaws.com'', canonical_uri = ''/'', canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date'', canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + (AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken)); } Zabbix.log(4, ''[ AWS EBS ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ AWS EBS ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { try { response = JSON.parse(XML.toJson(response)); } catch (error) { throw ''Failed to parse response received from AWS CloudWatch API. Check debug log for more information.''; } } return response; }, getVolumesData: function () { var payload = { ''Action'': ''DescribeVolumes'', ''Version'': ''2016-11-15'', ''Filter.1.Name'': ''attachment.instance-id'', ''Filter.1.Value'': AWS.params.instance_id, ''MaxResults'': 100 }, value = [], volumes_list = []; while (payload.NextToken !== '''') { var result = AWS.getField(AWS.request(''GET'', AWS.params.region, ''ec2'', AWS.prepareParams(payload)), ''DescribeVolumesResponse''), volumes_set = AWS.getField(result, ''volumeSet''), volumes = AWS.getField(volumes_set, ''item'', value); volumes_list.push(Array.isArray(volumes) ? volumes : [volumes]); payload.NextToken = result.nextToken || ''''; } var flattenedData = volumes_list.reduce(function (acc, val) { return acc.concat(val); }, []); return flattenedData; } }; try { AWS.setParams(JSON.parse(value)); return JSON.stringify(AWS.getVolumesData()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS EBS ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'Get volumes attached to instance. DescribeVolumes API method: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeVolumes.html','0','30d','0','',NULL,'15s','','','','200','1','0','','','0','0','0','0','0','0','0','9ec4650b564c41bca9893eca279a8cc7','0','2','0'), ('43499','21','','10527','Get instance alarms data','aws.ec2.get_alarms','0s;m/1','0','0','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, metadata: ''http://169.254.169.254/latest/'', getField: function (data, path, val) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || data === null || typeof data[step] === ''undefined'') { if (typeof val === ''undefined'') { throw ''Required field was not found: '' + path; } return val } data = data[step]; } return data; }, getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''GET'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload), ''''), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''region'', ''instance_id''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, request: function (method, region, service, params, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''), host = service + ''.'' + region + ''.amazonaws.com'', canonical_uri = ''/'', canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date'', canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + (AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken)); } Zabbix.log(4, ''[ AWS EC2 ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ AWS EC2 ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { try { response = JSON.parse(XML.toJson(response)); } catch (error) { throw ''Failed to parse response received from AWS CloudWatch API. Check debug log for more information.''; } } return response; }, getVolumes: function () { var payload = { ''Action'': ''DescribeVolumes'', ''Version'': ''2016-11-15'', ''MaxResults'': 100, ''Filter.1.Name'': ''attachment.instance-id'', ''Filter.1.Value'': AWS.params.instance_id }, value = [], volumes = [], volumes_list = []; while (payload.NextToken !== '''') { var result = AWS.getField(AWS.request(''GET'', AWS.params.region, ''ec2'', AWS.prepareParams(payload)), ''DescribeVolumesResponse''); payload.NextToken = result.nextToken || ''''; volumes = AWS.getField(result, ''volumeSet.item'', value); volumes_list.push(Array.isArray(volumes) ? volumes : [volumes]) } var flattenedData = volumes_list.reduce(function (acc, val) { return acc.concat(val); }, []); return flattenedData; }, getAlarms: function () { var payload = { ''Action'': ''DescribeAlarms'', ''Version'': ''2010-08-01'', ''MaxRecords'': 100 }, result = [], volumes = AWS.getVolumes() while (payload.NextToken !== '''') { var alarms = AWS.getField(AWS.request(''GET'', AWS.params.region, ''monitoring'', AWS.prepareParams(payload)), ''DescribeAlarmsResponse.DescribeAlarmsResult''); payload.NextToken = alarms.NextToken || ''''; alarms_list = AWS.getField(alarms, ''MetricAlarms''); if (!Array.isArray(alarms_list)) alarms_list = [alarms_list]; alarms_list.forEach(function (alarm) { var dimensions = alarm.Dimensions; if (Array.isArray(alarm.Metrics)) { alarm.Metrics.forEach(function (metric) { if (typeof metric.MetricStat === ''object'' && metric.MetricStat !== null && typeof metric.MetricStat.Metric === ''object'' && metric.MetricStat.Metric !== null && Array.isArray(metric.MetricStat.Metric.Dimensions)) { dimensions = dimensions.concat(metric.MetricStat.Metric.Dimensions); } }); } for (var i in dimensions) { if (dimensions[i].Name === ''InstanceId'' && dimensions[i].Value === AWS.params.instance_id) { result.push(alarm); break; } if (dimensions[i].Name === ''VolumeId'' && volumes.indexOf(dimensions[i].Value)) { result.push(alarm); break; } } }); } return result; } } try { AWS.setParams(JSON.parse(value)); return JSON.stringify(AWS.getAlarms()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS EC2 ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'DescribeAlarms API method: https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_DescribeAlarms.html','0','30d','0','',NULL,'15s','','','','200','1','0','','','0','0','0','0','0','0','0','4e0b2ed29500487092148b14245839d4','0','2','0'), ('43528','21','','10527','[{#VOLUME_ID}]: Get metrics','aws.ec2.get_ebs_metrics["{#VOLUME_ID}"]','0s;m/5','0','0','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, request_period: 600, metadata: ''http://169.254.169.254/latest/'', getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''GET'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload), ''''), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''region'', ''volume_id''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, prepareRecursive: function (prefix, param) { var result = {}; if (typeof param === ''object'') { if (Array.isArray(param)) { param.forEach(function (value, index) { var nested = AWS.prepareRecursive(prefix + ''.member.'' + (index + 1), value); Object.keys(nested).forEach(function (key) { result[key] = nested[key]; }); }); } else { Object.keys(param).forEach(function (k) { var nested = AWS.prepareRecursive(prefix + ''.'' + k, param[k]); Object.keys(nested).forEach(function (key) { result[key] = nested[key]; }); }); } } else { result[prefix] = param; } return result; }, renderPayload: function (period, volume_id) { var metrics_list = [ ''VolumeReadBytes:Bytes'', ''VolumeWriteBytes:Bytes'', ''VolumeReadOps:Count'', ''VolumeWriteOps:Count'', ''VolumeTotalReadTime:Seconds'', ''VolumeTotalWriteTime:Seconds'', ''VolumeIdleTime:Seconds'', ''VolumeQueueLength:Count'', ''VolumeThroughputPercentage:Percent'', ''VolumeConsumedReadWriteOps:Count'', ''BurstBalance:Percent'' ]; var metric_payload = []; metrics_list.forEach(function (metric) { var parts = metric.split('':'', 2); var name = parts[0].replace(/[^a-zA-Z0-9]/g, ''''); metric_payload.push({ ''Id'': name.charAt(0).toLowerCase() + name.slice(1), ''MetricStat'': { ''Metric'': { ''MetricName'': parts[0], ''Namespace'': ''AWS/EBS'', ''Dimensions'': [ { ''Name'': ''VolumeId'', ''Value'': volume_id } ] }, ''Period'': period, ''Stat'': ''Average'', ''Unit'': parts[1] } }); }); return metric_payload; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, request: function (method, region, service, params, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''), host = service + ''.'' + region + ''.amazonaws.com'', canonical_uri = ''/'', canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date'', canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + (AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken)); } Zabbix.log(4, ''[ AWS EBS ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ AWS EBS ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from AWS CloudWatch API. Check debug log for more information.''; } } return response; }, getMetricsData: function () { var timestamp = new Date().getTime(), end_time = new Date(timestamp).toISOString().replace(/\\.\\d+Z/, ''Z''), start_time = new Date(timestamp - AWS.request_period * 1000).toISOString().replace(/\\.\\d+Z/, ''Z''), payload = AWS.prepareRecursive(''MetricDataQueries'', AWS.renderPayload(AWS.request_period, AWS.params.volume_id)); payload[''Action''] = ''GetMetricData''; payload[''Version''] = ''2010-08-01''; payload[''StartTime''] = start_time; payload[''EndTime''] = end_time; payload[''ScanBy''] = ''TimestampDescending''; result = AWS.request(''GET'', AWS.params.region, ''monitoring'', AWS.prepareParams(payload)); if (typeof result !== ''object'' || typeof result.GetMetricDataResponse !== ''object'' || typeof result.GetMetricDataResponse.GetMetricDataResult !== ''object'' || typeof result.GetMetricDataResponse.GetMetricDataResult.MetricDataResults !== ''object'') { throw ''Cannot get metrics data from AWS CloudWatch API. Check debug log for more information.''; } return result.GetMetricDataResponse.GetMetricDataResult.MetricDataResults; } }; try { AWS.setParams(JSON.parse(value)); return JSON.stringify(AWS.getMetricsData()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS EBS ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','2',NULL,'Get metrics of EBS volume. Full metrics list related to EBS: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using_cloudwatch_ebs.html','0','30d','0','',NULL,'15s','','','','200','1','0','','','0','0','0','0','0','0','0','8b3b008f7f65408fbd49e46186b01cfb','0','2','0'), ('43548','20','get[1.3.6.1.4.1.12325.1.200.1.11.1.0]','10528','Firewall rules count','opnsense.rules.count','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB The number of labeled filter rules on this system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','289cece23b5d4f17ba50d0373db4ed33','0','2','0'), ('43549','15','','10528','States table utilization in %','opnsense.state.table.pused','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//opnsense.state.table.count) * 100 / last(//opnsense.state.table.limit)','','0','','','','','0',NULL,'Utilization of state table in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','17a0f633e2a14e63b0282b785a66c62a','0','2','0'), ('43550','20','get[1.3.6.1.4.1.12325.1.200.1.5.1.0]','10528','States table limit','opnsense.state.table.limit','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB Maximum number of ''keep state'' rules in the ruleset.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3bd8ea1e2cb44b4cb0f7d16a9339b9e4','0','2','0'), ('43551','20','get[1.3.6.1.4.1.12325.1.200.1.3.1.0]','10528','States table current','opnsense.state.table.count','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB Number of entries in the state table.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1c399a2204bc44d4a9b1a4017840fd75','0','2','0'), ('43552','15','','10528','Source tracking table utilization in %','opnsense.source.tracking.table.pused','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//opnsense.source.tracking.table.count) * 100 / last(//opnsense.source.tracking.table.limit)','','0','','','','','0',NULL,'Utilization of source tracking table in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1452fc4e67564233b12dc892fde1959a','0','2','0'), ('43553','20','get[1.3.6.1.4.1.12325.1.200.1.5.2.0]','10528','Source tracking table limit','opnsense.source.tracking.table.limit','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB Maximum number of ''sticky-address'' or ''source-track'' rules in the ruleset.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a9b848d5c2254efdaf74ff48ce4003c4','0','2','0'), ('43554','20','get[1.3.6.1.4.1.12325.1.200.1.4.1.0]','10528','Source tracking table current','opnsense.source.tracking.table.count','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB Number of entries in the source tracking table.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6e40ddbf15a54b0e8ae2d1c52d5c2eba','0','2','0'), ('43555','20','get[1.3.6.1.4.1.12325.1.200.1.1.1.0]','10528','Packet filter running status','opnsense.pf.status','1m','31d','365d','0','3','','','','',NULL,'1019','','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB True if packet filter is currently enabled.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f2b82b136ea943909a7b6317bf8b7785','0','2','0'), ('43564','5','','10528','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'1020','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','00f2e8aa55754a7b9063afc1d7749d85','0','2','0'), ('43592','21','','10529','Get metrics data','aws.rds.get_metrics','0s;m/5','0','0','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, request_period: 600, metadata: ''http://169.254.169.254/latest/'', getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''POST'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload), ''''), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''region'', ''db_instance_id''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, renderMetricQuery: function (period, db_instance_id) { var metrics_list = [ ''AbortedClients:Count'', ''ActiveTransactions:Count/Second'', ''AuroraBinlogReplicaLag:Seconds'', ''AuroraReplicaLag:Milliseconds'', ''AuroraReplicaLagMaximum:Milliseconds'', ''AuroraReplicaLagMinimum:Milliseconds'', ''BacktrackWindowActual:Count'', ''BacktrackWindowAlert:Count'', ''BinLogDiskUsage:Bytes'', ''BlockedTransactions:Count/Second'', ''BufferCacheHitRatio:Percent'', ''CheckpointLag:Seconds'', ''CommitLatency:Milliseconds'', ''CommitThroughput:Count/Second'', ''CPUCreditBalance:Count'', ''CPUCreditUsage:Count'', ''CPUUtilization:Percent'', ''DatabaseConnections:Count'', ''DDLLatency:Milliseconds'', ''DDLThroughput:Count/Second'', ''Deadlocks:Count/Second'', ''DeleteLatency:Milliseconds'', ''DeleteThroughput:Count/Second'', ''DiskQueueDepth:Count'', ''DMLLatency:Milliseconds'', ''DMLThroughput:Count/Second'', ''EBSByteBalance%:Percent'', ''EBSIOBalance%:Percent'', ''EngineUptime:Seconds'', ''FailedSQLServerAgentJobsCount:Count/Second'', ''FreeableMemory:Bytes'', ''FreeLocalStorage:Bytes'', ''InsertLatency:Milliseconds'', ''InsertThroughput:Count/Second'', ''LoginFailures:Count/Second'', ''MaximumUsedTransactionIDs:Count'', ''NetworkReceiveThroughput:Bytes/Second'', ''NetworkThroughput:Bytes/Second'', ''NetworkTransmitThroughput:Bytes/Second'', ''NumBinaryLogFiles:Count'', ''Queries:Count/Second'', ''RDSToAuroraPostgreSQLReplicaLag:Seconds'', ''ReadIOPS:Count/Second'', ''ReadLatency:Seconds'', ''ReadLatencyLocalStorage:Seconds'', ''ReadThroughput:Bytes/Second'', ''ReadThroughputLocalStorage:Bytes/Second'', ''ReplicationSlotDiskUsage:Bytes'', ''ResultSetCacheHitRatio:Percent'', ''RollbackSegmentHistoryListLength:Count'', ''RowLockTime:Milliseconds'', ''SelectLatency:Milliseconds'', ''SelectThroughput:Count/Second'', ''StorageNetworkReceiveThroughput:Bytes/Second'', ''StorageNetworkThroughput:Bytes/Second'', ''StorageNetworkTransmitThroughput:Bytes/Second'', ''SumBinaryLogSize:Bytes'', ''SwapUsage:Bytes'', ''TransactionLogsDiskUsage:Bytes'', ''UpdateLatency:Milliseconds'', ''UpdateThroughput:Count/Second'', ''WriteIOPS:Count/Second'', ''WriteLatency:Seconds'', ''WriteThroughput:Bytes/Second'', ''BurstBalance:Percent'', ''FreeStorageSpace:Bytes'', ''OldestReplicationSlotLag:Bytes'', ''ReplicaLag:Seconds'', ''TransactionLogsGeneration:Bytes/Second'' ]; var metric_payload = []; metrics_list.forEach(function (metric) { var parts = metric.split('':'', 2); var name = parts[0].replace(/[^a-zA-Z0-9]/g, ''''); metric_payload.push({ ''Id'': name.charAt(0).toLowerCase() + name.slice(1), ''MetricStat'': { ''Metric'': { ''MetricName'': parts[0], ''Namespace'': ''AWS/RDS'', ''Dimensions'': [ { ''Name'': ''DBInstanceIdentifier'', ''Value'': db_instance_id } ] }, ''Period'': period, ''Stat'': ''Average'', ''Unit'': parts[1] } }); }); return metric_payload; }, request: function (method, region, service, params, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } else { data = JSON.stringify(data); } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''), host = service + ''.'' + region + ''.amazonaws.com'', canonical_uri = ''/'', canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date'', canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''X-Amz-Target: GraniteServiceVersion20100801.GetMetricData''); request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + (AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken)); } Zabbix.log(4, ''[ AWS RDS ] Sending request: '' + url); response = request.post(url, data); Zabbix.log(4, ''[ AWS RDS ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { try { response = JSON.parse(XML.toJson(response)); } catch (error) { throw ''Failed to parse response received from AWS CloudWatch API. Check debug log for more information.''; } } return response; }, getMetricsData: function () { var payload = {}, end_time = Math.floor((new Date().getTime()) / 1000), start_time = end_time - AWS.request_period; payload[''StartTime''] = start_time; payload[''EndTime''] = end_time; payload[''ScanBy''] = ''TimestampDescending''; payload[''MetricDataQueries''] = AWS.renderMetricQuery(AWS.request_period, AWS.params.db_instance_id); result = AWS.request(''POST'', AWS.params.region, ''monitoring'', '''', payload); if (typeof result !== ''object'' || typeof result.MetricDataResults !== ''object'') { throw ''Cannot get metrics data from AWS CloudWatch API. Check debug log for more information.''; } return result.MetricDataResults; } }; try { AWS.setParams(JSON.parse(value)); return JSON.stringify(AWS.getMetricsData()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS RDS ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'Get instance metrics. Full metrics list related to RDS: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-metrics.html Full metrics list related to Amazon Aurora: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.AuroraMySQL.Monitoring.Metrics.html#Aurora.AuroraMySQL.Monitoring.Metrics.instances','0','30d','0','',NULL,'15s','','','','200','1','0','','','0','0','0','0','0','0','0','b22171fe7de44ac3952468ceb0c1a9b0','0','2','0'), ('43593','21','','10529','Get instance info','aws.rds.get_instance_info','5m','0','0','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, request_period: 600, metadata: ''http://169.254.169.254/latest/'', getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''GET'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload), ''''), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''region'', ''db_instance_id''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, request: function (method, region, service, params, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''), host = service + ''.'' + region + ''.amazonaws.com'', canonical_uri = ''/'', canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date'', canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + (AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken)); } Zabbix.log(4, ''[ AWS RDS ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ AWS RDS ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { try { response = JSON.parse(XML.toJson(response)); } catch (error) { throw ''Failed to parse response received from AWS RDS API. Check debug log for more information.''; } } return response; }, getInstanceData: function () { var payload = {}; payload[''Action''] = ''DescribeDBInstances'', payload[''Version''] = ''2014-10-31'', payload[''DBInstanceIdentifier''] = AWS.params.db_instance_id; result = AWS.request(''GET'', AWS.params.region, ''rds'', AWS.prepareParams(payload)); if (typeof result !== ''object'' || typeof result.DescribeDBInstancesResponse !== ''object'' || typeof result.DescribeDBInstancesResponse.DescribeDBInstancesResult !== ''object'' || typeof result.DescribeDBInstancesResponse.DescribeDBInstancesResult.DBInstances !== ''object'') { throw ''Cannot get metrics data from AWS RDS API. Check debug log for more information.''; } return result.DescribeDBInstancesResponse.DescribeDBInstancesResult.DBInstances; } }; try { AWS.setParams(JSON.parse(value)); return JSON.stringify(AWS.getInstanceData()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS RDS ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'Get instance info. DescribeDBInstances API method: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeDBInstances.html','0','30d','0','',NULL,'15s','','','','200','1','0','','','0','0','0','0','0','0','0','85ac4a5313994e0f94fe6480d3c85193','0','2','0'), ('43594','21','','10529','Get instance events data','aws.rds.get_events','0s;m/10','0','0','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, metadata: ''http://169.254.169.254/latest/'', getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''GET'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload), ''''), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''region'', ''db_instance_id''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, request: function (method, region, service, params, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''), host = service + ''.'' + region + ''.amazonaws.com'', canonical_uri = ''/'', canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date'', canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + (AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken)); } Zabbix.log(4, ''[ AWS RDS ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ AWS RDS ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { try { response = JSON.parse(XML.toJson(response)); } catch (error) { throw ''Failed to parse response received from AWS RDS API. Check debug log for more information.''; } } return response; }, getEvents: function () { var payload = { ''Action'': ''DescribeEvents'', ''Version'': ''2014-09-01'', ''MaxRecords'': 100, ''Duration'': 30, ''SourceType'': ''db-instance'', ''SourceIdentifier'': AWS.params.db_instance_id }, result = []; while (payload.nextToken !== '''') { var events = AWS.getField(AWS.request(''GET'', AWS.params.region, ''rds'', AWS.prepareParams(payload)), ''DescribeEventsResponse.DescribeEventsResult''); events_list = AWS.getField(events, ''Events''); if (!Array.isArray(events_list)) events_list = [events_list]; events_list.forEach(function (event) { event.EventCategories = event.EventCategories.toString(); result.push(event); }); payload.nextToken = events.nextToken || ''''; }; return result; } }; try { AWS.setParams(JSON.parse(value)); return JSON.stringify(AWS.getEvents()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS RDS ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'DescribeEvents API method: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeEvents.html','0','30d','0','',NULL,'15s','','','','200','1','0','','','0','0','0','0','0','0','0','f0d1041fa09d4ba38c9d0b39c4b76b0b','0','2','0'), ('43595','21','','10529','Get instance alarms data','aws.rds.get_alarms','0s;m/1','0','0','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, metadata: ''http://169.254.169.254/latest/'', getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''GET'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload), ''''), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''region'', ''db_instance_id''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, request: function (method, region, service, params, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''), host = service + ''.'' + region + ''.amazonaws.com'', canonical_uri = ''/'', canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date'', canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + (AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken)); } Zabbix.log(4, ''[ AWS RDS ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ AWS RDS ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { try { response = JSON.parse(XML.toJson(response)); } catch (error) { throw ''Failed to parse response received from AWS CloudWatch API. Check debug log for more information.''; } } return response; }, getAlarms: function () { var payload = { ''Action'': ''DescribeAlarms'', ''Version'': ''2010-08-01'', ''MaxRecords'': 100 }, result = []; while (payload.NextToken !== '''') { var alarms = AWS.getField(AWS.request(''GET'', AWS.params.region, ''monitoring'', AWS.prepareParams(payload)), ''DescribeAlarmsResponse.DescribeAlarmsResult''); payload.NextToken = alarms.NextToken || ''''; alarms_list = AWS.getField(alarms, ''MetricAlarms''); if (!Array.isArray(alarms_list)) alarms_list = [alarms_list]; alarms_list.forEach(function (alarm) { var dimensions = alarm.Dimensions; if (Array.isArray(alarm.Metrics)) { alarm.Metrics.forEach(function (metric) { if (typeof metric.MetricStat === ''object'' && metric.MetricStat !== null && typeof metric.MetricStat.Metric === ''object'' && metric.MetricStat.Metric !== null && Array.isArray(metric.MetricStat.Metric.Dimensions)) { dimensions = dimensions.concat(metric.MetricStat.Metric.Dimensions); } }); } for (var i in dimensions) { if (dimensions[i].Name === ''DBInstanceIdentifier'' && dimensions[i].Value === AWS.params.db_instance_id) { result.push(alarm); break; } } }); } return result; } }; try { AWS.setParams(JSON.parse(value)); return JSON.stringify(AWS.getAlarms()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS RDS ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'DescribeAlarms API method: https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_DescribeAlarms.html','0','30d','0','',NULL,'15s','','','','200','1','0','','','0','0','0','0','0','0','0','a2f85e777eae4fe789446de21136c510','0','2','0'), ('43684','21','','10530','Get metrics data','aws.s3.get_metrics','0s;h/8','0','0','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, request_period: 2 * 86400, metadata: ''http://169.254.169.254/latest/'', getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''credentials'', ''GET'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload)), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''bucket_name'', ''request_region''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, renderMetricQuery: function (period, bucket_name) { var metrics_list = [ ''BucketSizeBytes:Bytes:Average:StandardStorage'', ''NumberOfObjects:Count:Average:AllStorageTypes'', ]; var metric_payload = []; metrics_list.forEach(function (metric, index) { var parts = metric.split('':'', 4); metric_payload.push({ ''Id'': ''m'' + index, ''MetricStat'': { ''Metric'': { ''MetricName'': parts[0], ''Namespace'': ''AWS/S3'', ''Dimensions'': [ { ''Name'': ''BucketName'', ''Value'': bucket_name }, { ''Name'': ''StorageType'', ''Value'': parts[3] } ] }, ''Period'': period, ''Stat'': parts[2], ''Unit'': parts[1] } }); }); return metric_payload; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, request: function (get, method, region, service, params, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } else { data = JSON.stringify(data) } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''); if (get === ''metrics'' || get === ''credentials'') { host = service + ''.'' + region + ''.amazonaws.com''; } else { host = AWS.params.bucket_name + ''.'' + service + ''.'' + region + ''.amazonaws.com''; } if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { token = AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken; var canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'' + ''x-amz-security-token:'' + token + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date;x-amz-security-token''; } else { var canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date''; } var canonical_uri = ''/''; switch (get) { case ''location'': canonical_uri = ''/'' + AWS.params.bucket_name; canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data); break; case ''metrics'': canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data); break; case ''filter_id'': case ''credentials'': canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data); break; default: throw ''Error: Invalid option "get" for request function''; } var credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''x-amz-content-sha256:'' + sha256(data)); request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + token); } switch (get) { case ''location'': case ''filter_id'': case ''credentials'': url = ''https://'' + host + canonical_uri + ''?'' + params; Zabbix.log(4, ''[ AWS S3 ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ AWS S3 ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } break; case ''metrics'': url = ''https://'' + host + ''/''; Zabbix.log(4, ''[ AWS S3 ] Sending request: '' + url); request.addHeader(''X-Amz-Target: GraniteServiceVersion20100801.GetMetricData''); response = request.post(url, data); Zabbix.log(4, ''[ AWS S3 ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } break; default: throw ''Error: Invalid option "get" for request function''; } try { response = JSON.parse(response); } catch (error) { try { response = JSON.parse(XML.toJson(response)); } catch (error) { throw ''Failed to parse response received from AWS CloudWatch API. Check debug log for more information.''; } } return response; }, getBucketLocation: function (bucket_name) { var payload = {}; payload[''location''] = ''''; result = AWS.request(''location'', ''GET'', AWS.params.request_region, ''s3'', AWS.prepareParams(payload), '''', bucket_name); if (typeof result !== ''object'' || result.hasOwnProperty(''LocationConstraint'') === false ) { throw ''Cannot get buckets region location data from AWS S3 API. Check debug log for more information.''; } return result.LocationConstraint !== null ? result.LocationConstraint : ''us-east-1''; }, getBucketFilterId: function (region) { var payload = {}; payload[''metrics''] = ''''; data = AWS.getField(AWS.request(''filter_id'', ''GET'', region, ''s3'', AWS.prepareParams(payload), ''''), ''ListMetricsConfigurationsResult''); if (typeof data === ''object'' && data.hasOwnProperty(''MetricsConfiguration'') === true) { if (!Array.isArray(data.MetricsConfiguration)) data.MetricsConfiguration = [data.MetricsConfiguration] data.MetricsConfiguration.forEach(function (item) { item.region = region; }); } else { data.MetricsConfiguration = [''To view request metrics, create a filter''] } return data.MetricsConfiguration; }, getMetricsData: function (region) { var payload = {}, end_time = Math.floor((new Date().getTime()) / 1000), start_time = end_time - AWS.request_period; payload[''StartTime''] = start_time; payload[''EndTime''] = end_time; payload[''ScanBy''] = ''TimestampDescending''; payload[''MetricDataQueries''] = AWS.renderMetricQuery(43200, AWS.params.bucket_name); return AWS.getField(AWS.request(''metrics'', ''POST'', region, ''monitoring'', '''', payload), ''MetricDataResults''); } }; try { AWS.setParams(JSON.parse(value)); var region = AWS.getBucketLocation(AWS.params.bucket_name), metrics = AWS.getMetricsData(region), filter_id = AWS.getBucketFilterId(region); return JSON.stringify({ metrics, filter_id }); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS S3 ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'Get bucket metrics. Full metrics list related to S3: https://docs.aws.amazon.com/AmazonS3/latest/userguide/metrics-dimensions.html','0','30d','0','',NULL,'15s','','','','200','1','0','','','0','0','0','0','0','0','0','598e9dc563334ad6b1d72245a6f8679f','0','2','0'), ('43685','21','','10530','Get alarms data','aws.s3.get_alarms','0s;m/1','0','0','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, metadata: ''http://169.254.169.254/latest/'', getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''alarms'', ''GET'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload)), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''bucket_name'', ''request_region''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, request: function (get, method, region, service, params, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''); if (get === ''alarms'') { host = service + ''.'' + region + ''.amazonaws.com''; } else { host = AWS.params.bucket_name + ''.'' + service + ''.'' + region + ''.amazonaws.com''; } if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { token = AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken; var canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'' + ''x-amz-security-token:'' + token + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date;x-amz-security-token''; } else { var canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date''; } if (get === ''location'') { canonical_uri = ''/'' + AWS.params.bucket_name; } else { canonical_uri = ''/''; } var canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''x-amz-content-sha256:'' + sha256(data)); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + token); } Zabbix.log(4, ''[ AWS S3 ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ AWS S3 ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { try { response = JSON.parse(XML.toJson(response)); } catch (error) { throw ''Failed to parse response received from AWS CloudWatch API. Check debug log for more information.''; } } return response; }, getBucketLocation: function () { var payload = {}; payload[''location''] = ''''; result = AWS.request(''location'', ''GET'', AWS.params.request_region, ''s3'', AWS.prepareParams(payload)); if (typeof result !== ''object'' || result.hasOwnProperty(''LocationConstraint'') === false ) { throw ''Cannot get buckets region location data from AWS S3 API. Check debug log for more information.''; } return result.LocationConstraint !== null ? result.LocationConstraint : ''us-east-1''; }, getAlarms: function (region) { var payload = { ''Action'': ''DescribeAlarms'', ''Version'': ''2010-08-01'', ''MaxRecords'': 100 }, result = []; while (payload.NextToken !== '''') { var alarms = AWS.getField(AWS.request(''alarms'', ''GET'', region, ''monitoring'', AWS.prepareParams(payload)), ''DescribeAlarmsResponse.DescribeAlarmsResult''); payload.NextToken = alarms.NextToken || ''''; alarms_list = AWS.getField(alarms, ''MetricAlarms''); if (!Array.isArray(alarms_list)) alarms_list = [alarms_list]; alarms_list.forEach(function (alarm) { var dimensions = alarm.Dimensions; if (Array.isArray(alarm.Metrics)) { alarm.Metrics.forEach(function (metric) { if (typeof metric.MetricStat === ''object'' && metric.MetricStat !== null && typeof metric.MetricStat.Metric === ''object'' && metric.MetricStat.Metric !== null && Array.isArray(metric.MetricStat.Metric.Dimensions)) { dimensions = dimensions.concat(metric.MetricStat.Metric.Dimensions); } }); } for (var i in dimensions) { if (dimensions[i].Name === ''BucketName'' && dimensions[i].Value === AWS.params.bucket_name) { result.push(alarm); break; } } }); } return result; } }; try { AWS.setParams(JSON.parse(value)); var region = AWS.getBucketLocation(); return JSON.stringify(AWS.getAlarms(region)); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS S3 ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'Get alarms data. DescribeAlarms API method: https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_DescribeAlarms.html','0','30d','0','',NULL,'15s','','','','200','1','0','','','0','0','0','0','0','0','0','6da0ea7130e64a7fb8ae32ee02290cbf','0','2','0'), ('43714','21','','10531','Get resources','azure.get.resources','10m','0','0','0','4','','','','',NULL,NULL,E'var Azure = { params: {}, token: null, setParams: function (params) { [''app_id'', ''password'', ''tenant_id'', ''subscription_id''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); Azure.params = params; }, request: function (url, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var response, request = new HttpRequest(); if (typeof Azure.params.proxy !== ''undefined'' && Azure.params.proxy !== '''') { request.setProxy(Azure.params.proxy); } if (Azure.token) { request.addHeader(''Accept: application/json''); request.addHeader(''Authorization: Bearer '' + Azure.token); } Zabbix.log(4, ''[ Azure ] Sending request: '' + url); if (data !== '''') { request.addHeader(''Content-Type: application/x-www-form-urlencoded''); response = request.post(url, data); } else { response = request.get(url); } Zabbix.log(4, ''[ Azure ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200 || response === null) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { return JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API.''; } }, nextlink: function (data) { next_data = data; while (''nextLink'' in next_data) { next_data = Azure.request(next_data.nextLink); next_data.value.forEach(function (value) { data.value.push(value); }); } return data; } }; var result, data = {}, types = [ {"method": "Microsoft.Compute/virtualMachines", "version": "2022-03-01"}, {"method": "Microsoft.DBforMySQL/flexibleServers", "version": "2021-05-01"}, {"method": "Microsoft.DBforMySQL/servers", "version": "2017-12-01"}, {"method": "Microsoft.DBforPostgreSQL/flexibleServers", "version": "2021-06-01"}, {"method": "Microsoft.DBforPostgreSQL/servers", "version": "2017-12-01"}, {"method": "Microsoft.Sql/servers", "version": "2022-05-01-preview"}, {"method": "Microsoft.DocumentDB/databaseAccounts", "version": "2022-11-15-preview"}, {"method": "Microsoft.Compute/virtualMachineScaleSets", "version": "2024-03-01"}, {"method": "Microsoft.Sql/managedInstances", "version": "2024-05-01-preview"}, {"method": "Microsoft.DataProtection/backupVaults", "version": "2025-01-01"}, {"method": "Microsoft.RecoveryServices/vaults", "version": "2025-02-28-preview"} ]; data[''errors''] = {}, data[''resources''] = {}; data.resources.value = []; try { Azure.setParams(JSON.parse(value)); try { result = Azure.request( ''https://login.microsoftonline.com/'' + encodeURIComponent(Azure.params.tenant_id) + ''/oauth2/token'', ''grant_type=client_credentials&resource='' + encodeURIComponent(''https://management.azure.com/'') + ''&client_id='' + encodeURIComponent(Azure.params.app_id) + ''&client_secret='' + encodeURIComponent(Azure.params.password) ); if (''access_token'' in result) { Azure.token = result[''access_token'']; } else { throw ''Auth response does not contain access token.''; } } catch (error) { data.errors.auth = error.toString(); } if (!(''auth'' in data.errors)) { try { for (var i in types) { if (types[i].method === "Microsoft.Sql/servers") { mssql_servers = Azure.request(''https://management.azure.com/subscriptions/'' + encodeURIComponent(Azure.params.subscription_id) + ''/providers/'' + types[i].method + ''?api-version='' + types[i].version); if (''nextLink'' in mssql_servers) { mssql_servers = Azure.nextlink(mssql_servers); } if (''value'' in mssql_servers && mssql_servers.value.length > 0) { for (j in mssql_servers.value) { mssql_dbs = Azure.request(''https://management.azure.com'' + mssql_servers.value[j].id + ''/databases?api-version='' + types[i].version); if (''nextLink'' in mssql_dbs) { mssql_dbs = Azure.nextlink(mssql_dbs); } mssql_dbs.value.forEach(function (value) { raw_data.value.push(value); }); } } } else { raw_data = Azure.request(''https://management.azure.com/subscriptions/'' + encodeURIComponent(Azure.params.subscription_id) + ''/providers/'' + types[i].method + ''?api-version='' + types[i].version); if (''nextLink'' in raw_data) { raw_data = Azure.nextlink(raw_data); } } raw_data.value.forEach(function (value) { value.resourceGroup = value.id.split("/")[4]; data.resources.value.push(value); }); } } catch (error) { data.errors.resources = error.toString(); } } } catch (error) { data.errors.params = error.toString(); } if (Object.keys(data.errors).length !== 0) { errors = ''Failed to receive data:''; for (var error in data.errors) { errors += ''\\n'' + error + '' : '' + data.errors[error]; } data.errors = errors; } else { data.errors = ''''; } return JSON.stringify(data);','','0','','','','','0',NULL,'The result of API requests is expressed in the JSON.','0','30d','0','',NULL,'{$AZURE.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','fb6abf3631b240b08357ea9ce9ba89a4','0','2','0'), ('43715','21','','10532','Get data','azure.vm.data.get','1m','0','0','0','4','','','','',NULL,NULL,E'var Azure = { params: {}, token: null, setParams: function (params) { [''app_id'', ''password'', ''tenant_id'', ''subscription_id'', ''resource_id''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); Azure.params = params; }, login: function () { var response, login = new HttpRequest(); if (typeof Azure.params.proxy !== ''undefined'' && Azure.params.proxy !== '''') { login.setProxy(Azure.params.proxy); } login.addHeader(''Content-Type: application/x-www-form-urlencoded''); response = login.post( ''https://login.microsoftonline.com/'' + encodeURIComponent(Azure.params.tenant_id) + ''/oauth2/token'', ''grant_type=client_credentials&resource='' + encodeURIComponent(''https://management.azure.com/'') + ''&client_id='' + encodeURIComponent(Azure.params.app_id) + ''&client_secret='' + encodeURIComponent(Azure.params.password) ); if (login.getStatus() !== 200) { throw ''Login failed with status code '' + login.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse login session response.''; } if (!response.hasOwnProperty(''access_token'')) { throw ''Authentication response does not contain access token.''; } Azure.token = response[''access_token'']; }, request: function (url) { var response, request = new HttpRequest(); if (typeof Azure.params.proxy !== ''undefined'' && Azure.params.proxy !== '''') { request.setProxy(Azure.params.proxy); } if (!Azure.token) { throw ''Request does not contain access token.''; } request.addHeader(''Content-Type: application/json''); request.addHeader(''Authorization: Bearer '' + Azure.token); Zabbix.log(4, ''[ AzureVM ] request url: '' + url); response = request.get(url); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { return JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API.''; } }, getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getMetricsData: function () { var data = {}, metric_endpoints = { ''main_and_premium_metrics'': ''/providers/Microsoft.Insights/metrics?metricnames='' + encodeURIComponent(''Percentage CPU,CPU Credits Remaining,CPU Credits Consumed,VmAvailabilityMetric,Available Memory Bytes,Network In Total,Network Out Total,Inbound Flows,Outbound Flows,Inbound Flows Maximum Creation Rate,Outbound Flows Maximum Creation Rate,Premium Data Disk Cache Read Hit,Premium Data Disk Cache Read Miss,Premium OS Disk Cache Read Hit,Premium OS Disk Cache Read Miss,VM Cached Bandwidth Consumed Percentage,VM Cached IOPS Consumed Percentage,VM Uncached Bandwidth Consumed Percentage,VM Uncached IOPS Consumed Percentage'') + ''&api-version=2024-02-01×pan=PT1M'', ''disks_metrics'': ''/providers/Microsoft.Insights/metrics?metricnames='' + encodeURIComponent(''Disk Read Bytes,Disk Write Bytes,Disk Read Operations/Sec,Disk Write Operations/Sec,Data Disk Latency,Data Disk Read Bytes/sec,Data Disk Write Bytes/sec,Data Disk Read Operations/Sec,Data Disk Write Operations/Sec,Data Disk Queue Depth,Data Disk Bandwidth Consumed Percentage,Data Disk IOPS Consumed Percentage,Data Disk Target Bandwidth,Data Disk Target IOPS,Data Disk Max Burst Bandwidth,Data Disk Max Burst IOPS,Data Disk Used Burst BPS Credits Percentage,Data Disk Used Burst IO Credits Percentage'') + ''&api-version=2024-02-01×pan=PT1M'', ''os_disk_metrics'': ''/providers/Microsoft.Insights/metrics?metricnames='' + encodeURIComponent(''OS Disk Latency,OS Disk Read Bytes/sec,OS Disk Write Bytes/sec,OS Disk Read Operations/Sec,OS Disk Write Operations/Sec,OS Disk Queue Depth,OS Disk Bandwidth Consumed Percentage,OS Disk IOPS Consumed Percentage,OS Disk Target Bandwidth,OS Disk Target IOPS,OS Disk Max Burst Bandwidth,OS Disk Max Burst IOPS,OS Disk Used Burst BPS Credits Percentage,OS Disk Used Burst IO Credits Percentage,Temp Disk Latency,Temp Disk Read Bytes/sec,Temp Disk Write Bytes/sec,Temp Disk Read Operations/Sec,Temp Disk Write Operations/Sec,Temp Disk Queue Depth'') + ''&api-version=2024-02-01×pan=PT1M'' }; data.metrics = {}; Object.keys(metric_endpoints).forEach(function (field) { metrics = Azure.getField(Azure.request(''https://management.azure.com'' + Azure.params.resource_id + metric_endpoints[field]), ''value''); for (k in metrics) { key = Azure.getField(metrics[k], ''name.value'').replace(/(\\s|\\/)+/g, ''''); if (metrics[k].timeseries.length === 0) { metrics[k].timeseries.push({ ''data'': [''nodata''] }) } data.metrics[key] = Azure.getField(metrics[k], ''timeseries.0.data.0''); } }); data.health = Azure.getField(Azure.request(''https://management.azure.com'' + Azure.params.resource_id + ''/providers/Microsoft.ResourceHealth/availabilityStatuses?api-version=2020-05-01''), ''value.0.properties''); return data } }; try { Azure.setParams(JSON.parse(value)); Azure.login(); return JSON.stringify(Azure.getMetricsData()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AzureVM ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'The result of API requests is expressed in the JSON.','0','30d','0','',NULL,'{$AZURE.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','cff54514d795495da8bc1152e02631aa','0','2','0'), ('43770','20','get[1.3.6.1.2.1.25.1.1.0]','10207','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3ea3106277c64428950b4a5b6c4aedd0','0','2','0'), ('43771','20','get[1.3.6.1.2.1.25.1.1.0]','10254','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5bf4c90019ae41688336f83bcbb481bb','0','2','0'), ('43772','20','get[1.3.6.1.2.1.25.1.1.0]','10208','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a988240abba8442da83fdbcb789d0138','0','2','0'), ('43773','20','get[1.3.6.1.2.1.25.1.1.0]','10210','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','78b57ca2787948cb8b92604f2a0fdccc','0','2','0'), ('43774','20','get[1.3.6.1.2.1.25.1.1.0]','10211','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','09265047c03b4c7397d0b526d47e5a8e','0','2','0'), ('43775','20','get[1.3.6.1.2.1.25.1.1.0]','10390','Uptime (hardware)','system.hw.uptime','1m','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','64e59aaf9a4c4dd28e591c96075c183b','0','2','0'), ('43776','20','get[1.3.6.1.2.1.25.1.1.0]','10391','Uptime (hardware)','system.hw.uptime','1m','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','24df0110b0d541118d6609c3f3922fe5','0','2','0'), ('43777','20','get[1.3.6.1.2.1.25.1.1.0]','10392','Uptime (hardware)','system.hw.uptime','1m','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6fd05b29760a4b10bf9b1125e8747cd1','0','2','0'), ('43778','20','get[1.3.6.1.2.1.25.1.1.0]','10393','Uptime (hardware)','system.hw.uptime','1m','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b81c8fccadb94cd4bd7c798906d881ef','0','2','0'), ('43779','20','get[1.3.6.1.2.1.25.1.1.0]','10394','Uptime (hardware)','system.hw.uptime','1m','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f00b81685e5d41f49561b62d710e247f','0','2','0'), ('43780','20','get[1.3.6.1.2.1.25.1.1.0]','10220','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','732ccfd809b44d7fa923c54e6577851d','0','2','0'), ('43781','20','get[1.3.6.1.2.1.25.1.1.0]','10218','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f2173cd0262d4a60b5e134e00fed78e6','0','2','0'), ('43782','20','get[1.3.6.1.2.1.25.1.1.0]','10253','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','927d85dbb82f4b9a9edf4fb6194e7427','0','2','0'), ('43783','20','get[1.3.6.1.2.1.25.1.1.0]','10221','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5297253edb09463e8fdb6f1905e4f494','0','2','0'), ('43784','20','get[1.3.6.1.2.1.25.1.1.0]','10222','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','68631d04f4a94b83901bad116fe68198','0','2','0'), ('43785','20','get[1.3.6.1.2.1.25.1.1.0]','10223','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e4706d07b0824ccb8f4ee7ccec10a388','0','2','0'), ('43786','20','get[1.3.6.1.2.1.25.1.1.0]','10224','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9e9db5d7fe5f4f4e8fc6581813699c1e','0','2','0'), ('43787','20','get[1.3.6.1.2.1.25.1.1.0]','10226','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','76f954f8d7fd41109919ccbbb6151164','0','2','0'), ('43788','20','get[1.3.6.1.2.1.25.1.1.0]','10227','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b476c099f8f64aa89cd5f61fc8b47dfa','0','2','0'), ('43789','20','get[1.3.6.1.2.1.25.1.1.0]','10250','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a0659dadbef14fb1ac9be45d47388aa2','0','2','0'), ('43790','20','get[1.3.6.1.2.1.25.1.1.0]','10229','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','202c91a61d644285a0d74d88ae1b1a79','0','2','0'), ('43791','20','get[1.3.6.1.2.1.25.1.1.0]','10230','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f0fece305afd4ef9b7e9e6e9dd297e21','0','2','0'), ('43792','20','get[1.3.6.1.2.1.25.1.1.0]','10231','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','833dd7b3b4e94dc89b4e7098cec3fce2','0','2','0'), ('43793','20','get[1.3.6.1.2.1.25.1.1.0]','10251','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f867fb976e0b49a895129865e95096c2','0','2','0'), ('43794','20','get[1.3.6.1.2.1.25.1.1.0]','10449','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','da2967c30d774681af4b7007bfbd01c5','0','2','0'), ('43795','20','get[1.3.6.1.2.1.25.1.1.0]','10450','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','87ed039a5c7d4d5f8e6459ad8f5bfa0f','0','2','0'), ('43796','20','get[1.3.6.1.2.1.25.1.1.0]','10451','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','466b42bafcaf4a9a891a1d554cfd688c','0','2','0'), ('43797','20','get[1.3.6.1.2.1.25.1.1.0]','10452','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6625f426dcc949559a35ddfb3aed43d3','0','2','0'), ('43798','20','get[1.3.6.1.2.1.25.1.1.0]','10453','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','094dba661554421087ef6454e6e899f6','0','2','0'), ('43799','20','get[1.3.6.1.2.1.25.1.1.0]','10454','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7f1bc41c42fc410881b45972129ccf15','0','2','0'), ('43800','20','get[1.3.6.1.2.1.25.1.1.0]','10455','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e8aeeb3ddfe6405ba5c02cbcf50681f4','0','2','0'), ('43801','20','get[1.3.6.1.2.1.25.1.1.0]','10456','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6ba9b468dd2143a4a816c4bec1cee079','0','2','0'), ('43802','20','get[1.3.6.1.2.1.25.1.1.0]','10457','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','af308a3e3ff14620a683f09d935887a7','0','2','0'), ('43803','20','get[1.3.6.1.2.1.25.1.1.0]','10458','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c86226f9db8e4eda9216c0e5f96bf826','0','2','0'), ('43804','20','get[1.3.6.1.2.1.25.1.1.0]','10459','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7b849a56812d4ceda43c4c3c96c09911','0','2','0'), ('43805','20','get[1.3.6.1.2.1.25.1.1.0]','10460','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b4d7b0ae4b874f41afc1d2bb18444f59','0','2','0'), ('43806','20','get[1.3.6.1.2.1.25.1.1.0]','10461','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cb05d9fcd5f04045b38b2653aa3f054f','0','2','0'), ('43807','20','get[1.3.6.1.2.1.25.1.1.0]','10462','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d2825ec79526468bae315bcf4271c3bf','0','2','0'), ('43808','20','get[1.3.6.1.2.1.25.1.1.0]','10463','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','730caedb1aba4e2bb914a9ac5e45bee0','0','2','0'), ('43809','20','get[1.3.6.1.2.1.25.1.1.0]','10464','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','41c7402ad2354e5e8e5395b3e86d291c','0','2','0'), ('43810','20','get[1.3.6.1.2.1.25.1.1.0]','10465','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d226673194c84ee7968632b06060d905','0','2','0'), ('43811','20','get[1.3.6.1.2.1.25.1.1.0]','10466','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','76f9415c139b4c78bb5e77e094ced5e4','0','2','0'), ('43812','20','get[1.3.6.1.2.1.25.1.1.0]','10467','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','43da9de2e9b949ea9844ac7e8991aa51','0','2','0'), ('43813','20','get[1.3.6.1.2.1.25.1.1.0]','10468','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6e5f3a092d7f44f98f9f72ec7b65a412','0','2','0'), ('43814','20','get[1.3.6.1.2.1.25.1.1.0]','10469','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','59bd59afea7c430ab9b87036d6f68d80','0','2','0'), ('43815','20','get[1.3.6.1.2.1.25.1.1.0]','10470','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c36c9dba589944d4bc4253019663831e','0','2','0'), ('43816','20','get[1.3.6.1.2.1.25.1.1.0]','10471','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9a3c0d8062f9470faeb350b3f025dc93','0','2','0'), ('43817','20','get[1.3.6.1.2.1.25.1.1.0]','10472','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bccedf8a6d434ee19ef03ae4b15db6e6','0','2','0'), ('43818','20','get[1.3.6.1.2.1.25.1.1.0]','10473','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7052c7bbeffe4dbbbbc08f70c8d2679f','0','2','0'), ('43819','20','get[1.3.6.1.2.1.25.1.1.0]','10474','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','093f8cdde4514b3cb81233a59eec8277','0','2','0'), ('43820','20','get[1.3.6.1.2.1.25.1.1.0]','10475','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2521a17fcdb048c3ac5b3e425eb48ad6','0','2','0'), ('43821','20','get[1.3.6.1.2.1.25.1.1.0]','10476','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b2fa99d8602342358690da734fc553a5','0','2','0'), ('43822','20','get[1.3.6.1.2.1.25.1.1.0]','10477','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7b93e987a3e442e39e2f822a0c271678','0','2','0'), ('43823','20','get[1.3.6.1.2.1.25.1.1.0]','10478','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','90e82de3b7b043269947a13acaf0eae3','0','2','0'), ('43824','20','get[1.3.6.1.2.1.25.1.1.0]','10479','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','96f11f9c23434a68b82d075f85af3c31','0','2','0'), ('43825','20','get[1.3.6.1.2.1.25.1.1.0]','10480','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1634bc47137b4de9942b33ca99eb4541','0','2','0'), ('43826','20','get[1.3.6.1.2.1.25.1.1.0]','10481','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e589fb99827e4e8197f6ecb8872b4f10','0','2','0'), ('43827','20','get[1.3.6.1.2.1.25.1.1.0]','10482','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','218903c6b9c04999ab58583dfc22d42d','0','2','0'), ('43828','20','get[1.3.6.1.2.1.25.1.1.0]','10483','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','424081b2ac3f453f84c7c0cf0d6270e5','0','2','0'), ('43829','20','get[1.3.6.1.2.1.25.1.1.0]','10484','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','31874dc23f0046f98c978300e74ced72','0','2','0'), ('43830','20','get[1.3.6.1.2.1.25.1.1.0]','10485','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d88eae8b609e42d68219e2b6d68422d1','0','2','0'), ('43831','20','get[1.3.6.1.2.1.25.1.1.0]','10486','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c8f1e09b30a84047ac6a98bcc70b15a7','0','2','0'), ('43832','20','get[1.3.6.1.2.1.25.1.1.0]','10487','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','96372468281d4b0e866a3aa4db1839be','0','2','0'), ('43833','20','get[1.3.6.1.2.1.25.1.1.0]','10488','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','68f23663d1da4e12b259bc6f2689de9b','0','2','0'), ('43834','20','get[1.3.6.1.2.1.25.1.1.0]','10489','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','806003915aa24c368a822a424f123d45','0','2','0'), ('43835','20','get[1.3.6.1.2.1.25.1.1.0]','10490','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4cb64b20e3c84697b744db08b605c5b0','0','2','0'), ('43836','20','get[1.3.6.1.2.1.25.1.1.0]','10491','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','012230315f3548d9948d1ad7ddc8d005','0','2','0'), ('43837','20','get[1.3.6.1.2.1.25.1.1.0]','10492','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','074b83202e714d7d9bf63bf331f4f284','0','2','0'), ('43838','20','get[1.3.6.1.2.1.25.1.1.0]','10493','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','437fe5b12b2d478fb69c1047b6421d96','0','2','0'), ('43839','20','get[1.3.6.1.2.1.25.1.1.0]','10494','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f5f8ed93998a4b5799d1f6b2e1984006','0','2','0'), ('43840','20','get[1.3.6.1.2.1.25.1.1.0]','10495','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b2fb7a55ee1b4030b4f621e73a730749','0','2','0'), ('43841','20','get[1.3.6.1.2.1.25.1.1.0]','10496','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','971d14b46bad442499d7aea95c067dc7','0','2','0'), ('43842','20','get[1.3.6.1.2.1.25.1.1.0]','10497','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','42eee310a68844deb422d5ff3a715efa','0','2','0'), ('43843','20','get[1.3.6.1.2.1.25.1.1.0]','10498','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','691b2eadbe314570841aafbe2ad2afb1','0','2','0'), ('43844','20','get[1.3.6.1.2.1.25.1.1.0]','10499','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','32d6b1147607490287da049b08140f0b','0','2','0'), ('43845','20','get[1.3.6.1.2.1.25.1.1.0]','10500','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c30a010e7f134bc88fc47708d02a0a31','0','2','0'), ('43846','20','get[1.3.6.1.2.1.25.1.1.0]','10501','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f0ff722acc544222bac0a51456515570','0','2','0'), ('43847','20','get[1.3.6.1.2.1.25.1.1.0]','10502','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','850f16c89c1a44c585852784dc32bb1b','0','2','0'), ('43848','20','get[1.3.6.1.2.1.25.1.1.0]','10233','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','94f4af679dba4d3e9047ebcf8c1bc419','0','2','0'), ('43849','20','get[1.3.6.1.2.1.25.1.1.0]','10371','Status: Uptime (hardware)','status.hw.uptime','1m','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','712a9b442bec4e89acf4ee5d5bf26fb8','0','2','0'), ('43850','20','get[1.3.6.1.2.1.25.1.1.0]','10372','Status: Uptime (hardware)','status.hw.uptime','1m','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2c9f864ac33b4c2d992459c6519d045a','0','2','0'), ('43851','20','get[1.3.6.1.2.1.25.1.1.0]','10373','Status: Uptime (hardware)','status.hw.uptime','1m','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','76a660b88bb74e90971bdaec703d3c17','0','2','0'), ('43852','20','get[1.3.6.1.2.1.25.1.1.0]','10374','Status: Uptime (hardware)','status.hw.uptime','1m','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d1e50f16fab54a8e97372b52cebae18d','0','2','0'), ('43853','20','get[1.3.6.1.2.1.25.1.1.0]','10375','Status: Uptime (hardware)','status.hw.uptime','1m','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d61bd2d5717740518867bfbf734914c9','0','2','0'), ('43854','20','get[1.3.6.1.2.1.25.1.1.0]','10376','Status: Uptime (hardware)','status.hw.uptime','1m','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5e2aebe0ce2044588636be62cde6b6a3','0','2','0'), ('43855','20','get[1.3.6.1.2.1.25.1.1.0]','10377','Status: Uptime (hardware)','status.hw.uptime','1m','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6903297e21e14aa8b5eed4eb0f7e1e01','0','2','0'), ('43856','20','get[1.3.6.1.2.1.25.1.1.0]','10234','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d0e66c64c0b2449a9c5ffbbdaf176963','0','2','0'), ('43857','20','get[1.3.6.1.2.1.25.1.1.0]','10235','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','94671639676f476f8b7c37a884d32ed0','0','2','0'), ('43858','20','get[1.3.6.1.2.1.25.1.1.0]','10236','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','964e73aa4e534b50bd1d93e137ca41f1','0','2','0'), ('43859','20','get[1.3.6.1.2.1.25.1.1.0]','10237','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0d47c914219e4da0a7d67631d8171244','0','2','0'), ('43860','20','get[1.3.6.1.2.1.25.1.1.0]','10420','Uptime (hardware)','zyxel.aam1212.hw.uptime','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5197238bef51468c80e6a4180babee5b','0','2','0'), ('43861','20','get[1.3.6.1.2.1.25.1.1.0]','10421','Uptime (hardware)','zyxel.3500_8pd.hw.uptime','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ef45d91672ea43c3aa24cbc21f37d391','0','2','0'), ('43862','20','get[1.3.6.1.2.1.25.1.1.0]','10422','Uptime (hardware)','zyxel.4012f.hw.uptime','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1f979fc1f31c4766949cfc343d3c231a','0','2','0'), ('43863','20','get[1.3.6.1.2.1.25.1.1.0]','10423','Uptime (hardware)','zyxel.ies500x.hw.uptime','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5fa56229a8854d62bb6c516da873d63b','0','2','0'), ('43864','20','get[1.3.6.1.2.1.25.1.1.0]','10424','Uptime (hardware)','zyxel.ies6000.hw.uptime','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','006a65489cfc4231acad12cdb501a55c','0','2','0'), ('43865','20','get[1.3.6.1.2.1.25.1.1.0]','10425','Uptime (hardware)','zyxel.ies1248.hw.uptime','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4b55d1aaee3b441bab6edaaf738065e4','0','2','0'), ('43866','20','get[1.3.6.1.2.1.25.1.1.0]','10426','Uptime (hardware)','zyxel.3528.hw.uptime','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9293989c2bd14bc4a12cdd40a9c7f229','0','2','0'), ('43867','20','get[1.3.6.1.2.1.25.1.1.0]','10427','Uptime (hardware)','zyxel.3500_10.hw.uptime','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d0d33209ea1249e588f2e81807ae6403','0','2','0'), ('43868','20','get[1.3.6.1.2.1.25.1.1.0]','10428','Uptime (hardware)','zyxel.3500_24.hw.uptime','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fb480642cad3440a8637d871add07b8f','0','2','0'), ('43869','20','get[1.3.6.1.2.1.25.1.1.0]','10429','Uptime (hardware)','zyxel.3712.hw.uptime','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','801ba0a2d20f440d822eb042146b8d16','0','2','0'), ('43870','20','get[1.3.6.1.2.1.25.1.1.0]','10430','Uptime (hardware)','zyxel.3712f.hw.uptime','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','29bc66a7a2c949549fc2e4c6fa841ab0','0','2','0'), ('43871','20','get[1.3.6.1.2.1.25.1.1.0]','10431','Uptime (hardware)','zyxel.3500_24s.hw.uptime','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','feff31efc5b04b14bf19ec256a6660fb','0','2','0'), ('43872','20','get[1.3.6.1.2.1.25.1.1.0]','10432','Uptime (hardware)','zyxel.3520_28.hw.uptime','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8f050b29d1eb43e4a150383c9edd2467','0','2','0'), ('43873','20','get[1.3.6.1.2.1.25.1.1.0]','10433','Uptime (hardware)','zyxel.4728f.hw.uptime','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','17bdc70663744ede94d7b94602eb881c','0','2','0'), ('43874','20','get[1.3.6.1.2.1.25.1.1.0]','10248','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d1a9af129dbb4fed8e67efcca383aeae','0','2','0'), ('43875','20','get[1.3.6.1.2.1.25.1.1.0]','10249','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','422d9e4a985347959d5ef07278a6a12c','0','2','0'), ('43876','20','get[1.3.6.1.2.1.25.1.1.0]','10400','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b73fb48b4da84a53b7a4b7e81d6037aa','0','2','0'), ('43877','20','get[1.3.6.1.2.1.25.1.1.0]','10401','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4dbad4f0de7f47fd996fd4b8de048d46','0','2','0'), ('43878','20','get[1.3.6.1.2.1.25.1.1.0]','10402','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ed6ad4e7036548c09b9a61d875aca9e1','0','2','0'), ('43879','20','get[1.3.6.1.2.1.25.1.1.0]','10403','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','60bef30ff568425eb5e4c5e6dc861e79','0','2','0'), ('43880','20','get[1.3.6.1.2.1.25.1.1.0]','10404','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4def354a520e42d78d67b2e8b1cd8eb4','0','2','0'), ('43881','20','get[1.3.6.1.2.1.25.1.1.0]','10412','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9d1f4a038ee447639a07f3549ad68840','0','2','0'), ('43882','20','get[1.3.6.1.2.1.25.1.1.0]','10406','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4e8b6d6a5aa24159b048d1cf28e9418a','0','2','0'), ('43883','20','get[1.3.6.1.2.1.25.1.1.0]','10395','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b3d5eea37f934efdac4885bcadc73b9b','0','2','0'), ('43884','20','get[1.3.6.1.2.1.25.1.1.0]','10407','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e5a92d45430b4bd6bdef42870141d141','0','2','0'), ('43885','20','get[1.3.6.1.2.1.25.1.1.0]','10408','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b3021bc8a0324d4d9683f676131bf136','0','2','0'), ('43886','20','get[1.3.6.1.2.1.25.1.1.0]','10409','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c7522be948bd4f97a47d59cf1e281c56','0','2','0'), ('43887','20','get[1.3.6.1.2.1.25.1.1.0]','10385','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f54aca2b926e4d4d980f980acb0aefac','0','2','0'), ('43888','20','get[1.3.6.1.2.1.25.1.1.0]','10378','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','76483f37faf8485b922640a6ef8bb672','0','2','0'), ('43889','20','get[1.3.6.1.2.1.25.1.1.0]','10434','Uptime (hardware)','cisco.ucs.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5af56ed99d09489aafc2d08d4bd4903a','0','2','0'), ('43890','20','get[1.3.6.1.2.1.25.1.1.0]','10304','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a6d61b21f9f044a6912759e02787cb3f','0','2','0'), ('43896','20','get[1.3.6.1.2.1.25.1.1.0]','10443','Uptime (hardware)','hp.server.hw.uptime[hrSystemUptime]','1m','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','22f0b65d03d44ae0be7133eb19ecc920','0','2','0'), ('43897','20','get[1.3.6.1.2.1.25.1.1.0]','10444','Uptime (hardware)','hp.server.hw.uptime[hrSystemUptime]','1m','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5cd1e01b10f3482e9ec5907bd2e55c26','0','2','0'), ('43898','20','get[1.3.6.1.2.1.25.1.1.0]','10445','Uptime (hardware)','hp.server.hw.uptime[hrSystemUptime]','1m','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8026a919077f4373adf774a18beb95eb','0','2','0'), ('43899','20','get[1.3.6.1.2.1.25.1.1.0]','10446','Uptime (hardware)','hp.server.hw.uptime[hrSystemUptime]','1m','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','437a251079a44869ba9b11b2184d85e7','0','2','0'), ('43900','20','get[1.3.6.1.2.1.25.1.1.0]','10256','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','02e21fa19e814d529ae24f89e3bbf947','0','2','0'), ('43901','21','','10534','Get data','hpe.synergy.get.data','1m','0','0','0','4','','','','',NULL,NULL,E'var Synergy = { params: {}, session_id: null, api_version: null, setParams: function (params) { [''username'', ''password'', ''base_url'', ''login_domain''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); Synergy.params = params; if (typeof Synergy.params.base_url === ''string'' && !Synergy.params.base_url.endsWith(''/'')) { Synergy.params.base_url += ''/''; } }, checkVersion: function () { if (Synergy.api_version !== null) { return; } var response, request = new HttpRequest(); request.addHeader(''Content-Type: application/json''); response = request.get(Synergy.params.base_url + ''rest/version''); if (request.getStatus() !== 200) { throw ''Get version request failed with status code '' + request.getStatus() + '': '' + response; } if (response !== null) { try { version_data = JSON.parse(response); } catch (error) { throw ''Failed to parse get version response received from device API.''; } } else { throw ''No data received by get version request.''; } if (''currentVersion'' in version_data && ''minimumVersion'' in version_data) { if (version_data[''minimumVersion''] <= 1200 && version_data[''currentVersion''] >= 1200) { Synergy.api_version = 1200; } else { throw ''API version is not supported.''; } } else { throw ''Get version response does not contain version.''; } }, login: function () { if (Synergy.session_id !== null || Synergy.api_version === null) { return; } var response, request = new HttpRequest(); request.addHeader(''Content-Type: application/json''); request.addHeader(''X-API-Version: '' + Synergy.api_version); response = request.post(Synergy.params.base_url + ''rest/login-sessions'', JSON.stringify({ ''userName'': Synergy.params.username, ''password'': Synergy.params.password, ''authLoginDomain'': Synergy.params.login_domain, ''loginMsgAck'': ''true'' })); if (request.getStatus() !== 200) { throw ''Auth request failed with status code '' + request.getStatus() + '': '' + response; } if (response !== null) { try { auth_data = JSON.parse(response); } catch (error) { throw ''Failed to parse auth response received from device API.''; } } else { throw ''No data received by auth request.''; } if (''sessionID'' in auth_data) { Synergy.session_id = auth_data[''sessionID'']; } else { throw ''Auth response does not contain session ID.''; } }, logout: function () { if (Synergy.session_id !== null && Synergy.api_version !== null) { var response, request = new HttpRequest(); request.addHeader(''Content-Type: application/json''); request.addHeader(''X-API-Version: '' + Synergy.api_version); request.addHeader(''Auth: '' + Synergy.session_id); response = request.delete(Synergy.params.base_url + ''rest/login-sessions''); } }, requestData: function (method) { if (Synergy.session_id === null || Synergy.api_version === null) { return; } request = new HttpRequest(); request.addHeader(''Auth: '' + Synergy.session_id); request.addHeader(''X-API-Version: '' + Synergy.api_version); raw_data = request.get(Synergy.params.base_url + ''rest/'' + method); if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Request failed with status code '' + request.getStatus() + '': '' + raw_data; } if (raw_data !== null) { try { return JSON.parse(raw_data); } catch (error) { throw ''Failed to parse response received from device API.''; } } else { throw ''No data received by '' + method + '' request.''; } } }; var methods = [''datacenters'', ''enclosures'', ''ethernet-networks'', ''fabrics'', ''fc-networks'', ''hypervisor-managers'', ''interconnects'', ''logical-enclosures'', ''racks'', ''server-hardware'', ''storage-pools'', ''storage-systems'', ''storage-volumes'', ''uplink-sets''], data = {}; data[''errors''] = {}; try { Synergy.setParams(JSON.parse(value)); try { Synergy.checkVersion(); } catch (error) { data.errors.version = error.toString(); } try { Synergy.login(); } catch (error) { data.errors.auth = error.toString(); } if (!(''auth'' in data.errors) && !(''version'' in data.errors)) { for (var i in methods) { try { if (methods[i] === ''enclosures'') { var bays = [''applianceBays'', ''crossBars'', ''deviceBays'', ''fanBays'', ''partitions'', ''powerSupplyBays'', ''managerBays'']; enclosures = Synergy.requestData(methods[i]); enclosures.members.forEach(function (enclosure) { enclosure_name = enclosure.name; for (var j in bays) { bay = enclosure[bays[j]]; bay.forEach(function (b) { b.enclosureName = enclosure_name; enclosures.members[bays[j[b]]] = b; }); } }); data[methods[i]] = enclosures; } else { data[methods[i]] = Synergy.requestData(methods[i]); } } catch (error) { data.errors[methods[i]] = error.toString(); } } } } catch (error) { data.errors.params = error.toString(); } try { Synergy.logout(); } catch (error) { } if (Object.keys(data.errors).length !== 0) { errors = ''Failed to receive data:''; for (var error in data.errors) { errors += ''\\n'' + error + '' : '' + data.errors[error]; } data.errors = errors; } else { data.errors = ''''; } return JSON.stringify(data);','','0','','','','','0',NULL,'The JSON with the result from requests to API.','0','30d','0','',NULL,'{$HPE.SYNERGY.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','2f9816e8a60149f4aafdf7ffb0632224','0','2','0'), ('43902','3','','10534','Service ping','net.tcp.service["{$HPE.SYNERGY.API.SCHEME}","{$HPE.SYNERGY.API.HOST}","{$HPE.SYNERGY.API.PORT}"]','1m','31d','365d','0','3','','','','',NULL,'1042','','','0','','','','','0',NULL,'Checks if the service is running and accepting the TCP connections.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','86da94cecaa1424e9a22479d556d7b12','0','2','0'), ('44050','20','get[1.3.6.1.2.1.25.1.1.0]','10258','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','81e5ed7d945d40f780eb9bd872ea1832','0','2','0'), ('44051','20','get[1.3.6.1.2.1.25.1.1.0]','10259','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8b0320157a0144a0b2f1d7df7cbbe08a','0','2','0'), ('44052','21','','10535','EC2 instances discovery','aws.ec2.discovery','12h','90d','0','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, metadata: ''http://169.254.169.254/latest/'', getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''GET'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload)), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''describe_region'', ''region_match'', ''region_not_match''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, request: function (method, region, service, params, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''), canonical_uri = ''/'', host = service + ''.'' + region + ''.amazonaws.com'', canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date'', canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''x-amz-content-sha256:'' + sha256(data)); request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + (AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken)); } Zabbix.log(4, ''[ AWS EC2 ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ AWS EC2 ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { try { response = JSON.parse(XML.toJson(response)); } catch (error) { throw ''Failed to parse response received from AWS API. Check debug log for more information.''; } } return response; }, tagToNameInstances: function (instance) { try { var tags = AWS.getField(instance, ''tagSet.item''), instanceName = AWS.getField(instance, ''instanceId''); if (!Array.isArray(tags)) tags = [tags] tags.forEach( function (tag) { if (String(AWS.getField(tag, ''key'')) === ''Name'') { instanceName = AWS.getField(tag, ''value''); } } ); return instanceName; } catch (error) { return AWS.getField(instance, ''instanceId''); } }, listRegions: function () { var payload = { ''Action'': ''DescribeRegions'', ''Version'': ''2016-11-15'' }; regions = AWS.getField(AWS.request(''GET'', AWS.params.describe_region, ''ec2'', AWS.prepareParams(payload)), ''DescribeRegionsResponse.regionInfo.item''); if (!Array.isArray(regions)) regions = [regions] return regions }, listInstances: function () { var lld_array = [], regions = AWS.listRegions(), payload = { ''Action'': ''DescribeInstances'', ''Version'': ''2016-11-15'' }; regions.forEach(function (region) { var region_name = AWS.getField(region, ''regionName''); if (region_name.match(AWS.params.region_match) === null || region_name.match(AWS.params.region_not_match) !== null) return; result = AWS.request(''GET'', region_name, ''ec2'', AWS.prepareParams(payload), ''''); if (typeof result !== ''object'' || typeof result.DescribeInstancesResponse !== ''object'' || typeof result.DescribeInstancesResponse.reservationSet !== ''object'') { throw ''Cannot get EC2 instance list from AWS API. Check debug log for more information.''; } if (result.DescribeInstancesResponse.reservationSet === null) return []; if (typeof result.DescribeInstancesResponse.reservationSet.item !== ''object'') throw ''Cannot get EC2 instance list from AWS API. Check debug log for more information.''; var reservation = result.DescribeInstancesResponse.reservationSet.item if (!Array.isArray(reservation)) reservation = [reservation] reservation.forEach(function (res_item) { var instances = AWS.getField(res_item, ''instancesSet.item'') if (!Array.isArray(instances)) instances = [instances] instances.forEach(function (instance) { if (AWS.getField(instance, ''instanceState.name'') === ''terminated'') return; lld_array.push( { instanceId: AWS.getField(instance, ''instanceId''), instanceName: AWS.tagToNameInstances(instance), instanceRegion: region_name } ) }); }); }); return lld_array; } }; try { AWS.setParams(JSON.parse(value)); return JSON.stringify(AWS.listInstances()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS EC2 ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','1',NULL,'Get EC2 instances.','0','7d','1','',NULL,'{$AWS.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','c651911bad9244ad9c8d2dad5b0d70e4','0','2','0'), ('44053','21','','10535','RDS instances discovery','aws.rds.discovery','12h','90d','0','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, metadata: ''http://169.254.169.254/latest/'', getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''GET'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload)), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''describe_region'', ''region_match'', ''region_not_match''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, request: function (method, region, service, params, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''), canonical_uri = ''/'', host = service + ''.'' + region + ''.amazonaws.com'', canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date'', canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''x-amz-content-sha256:'' + sha256(data)); request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + (AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken)); } Zabbix.log(4, ''[ AWS RDS ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ AWS RDS ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { try { response = JSON.parse(XML.toJson(response)); } catch (error) { throw ''Failed to parse response received from AWS API. Check debug log for more information.''; } } return response; }, listRegions: function () { var payload = { ''Action'': ''DescribeRegions'', ''Version'': ''2016-11-15'' }; regions = AWS.getField(AWS.request(''GET'', AWS.params.describe_region, ''ec2'', AWS.prepareParams(payload)), ''DescribeRegionsResponse.regionInfo.item''); if (!Array.isArray(regions)) regions = [regions] return regions }, listInstances: function () { var lld_array = [], regions = AWS.listRegions(), payload = { ''Action'': ''DescribeDBInstances'', ''Version'': ''2014-10-31'' }; regions.forEach(function (region) { var region_name = AWS.getField(region, ''regionName''); if (region_name.match(AWS.params.region_match) === null || region_name.match(AWS.params.region_not_match) !== null) return; result = AWS.request(''GET'', region_name, ''rds'', AWS.prepareParams(payload)); databases = AWS.getField(result, ''DescribeDBInstancesResponse.DescribeDBInstancesResult.DBInstances'') if (!Array.isArray(databases)) databases = [databases] databases.forEach(function (db) { lld_array.push( { DBInstanceIdentifier: AWS.getField(db, ''DBInstanceIdentifier''), instanceRegion: region_name } ) }); }); return lld_array; } }; try { AWS.setParams(JSON.parse(value)); return JSON.stringify(AWS.listInstances()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS RDS ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','1',NULL,'Get RDS instances.','0','7d','1','',NULL,'{$AWS.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','c1127e674b7548b2802cd8771f3a4768','0','2','0'), ('44054','21','','10535','S3 buckets discovery','aws.s3.discovery','12h','90d','0','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, metadata: ''http://169.254.169.254/latest/'', getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''GET'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload)), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''request_region''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, request: function (method, region, service, params, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''), canonical_uri = ''/'', host = service + ''.'' + region + ''.amazonaws.com''; if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { token = AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken; var canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'' + ''x-amz-security-token:'' + token + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date;x-amz-security-token''; } else { var canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date''; } var canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''x-amz-content-sha256:'' + sha256(data)); request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + token); } Zabbix.log(4, ''[ AWS S3 ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ AWS S3 ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { try { response = JSON.parse(XML.toJson(response)); } catch (error) { throw ''Failed to parse response received from AWS API. Check debug log for more information.''; } } return response; }, listBuckets: function () { var payload = { ''Action'': ''ListBuckets'', ''Version'': ''2006-03-01'' }; var result = AWS.getField(AWS.request(''GET'', AWS.params.request_region, ''s3'', AWS.prepareParams(payload)), ''ListAllMyBucketsResult.Buckets''); if (result === null) { return []; } result = AWS.getField(result, ''Bucket''); return Array.isArray(result) ? result : [result]; } }; try { AWS.setParams(JSON.parse(value)); return JSON.stringify(AWS.listBuckets()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS S3 ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','1',NULL,'Get S3 bucket instances.','0','7d','1','',NULL,'{$AWS.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','ab6a97a108fb4dbc9fd1e07378721ffe','0','2','0'), ('44055','5','','10047','Zabbix proxies stats','zabbix[proxy,discovery]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The master item of Zabbix proxies'' statistics.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6fb9d6a8d3f84c679e7af4b9ef437239','0','2','0'), ('44161','21','','10539','Get data','azure.db.mysql.data.get','1m','0','0','0','4','','','','',NULL,NULL,E'var AzureDB = { params: {}, token: null, setParams: function (params) { [''app_id'', ''password'', ''tenant_id'', ''subscription_id'', ''resource_id''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); AzureDB.params = params; }, request: function (url, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var response, request = new HttpRequest(); if (typeof AzureDB.params.proxy !== ''undefined'' && AzureDB.params.proxy !== '''') { request.setProxy(AzureDB.params.proxy); } if (AzureDB.token) { request.addHeader(''Accept: application/json''); request.addHeader(''Authorization: Bearer '' + AzureDB.token); } Zabbix.log(4, ''[ Azure ] Sending request: '' + url); if (data !== '''') { request.addHeader(''Content-Type: application/x-www-form-urlencoded''); response = request.post(url, data); } else { response = request.get(url); } Zabbix.log(4, ''[ Azure ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200 || response === null) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { return JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API.''; } } }; var metrics = [ ''cpu_percent'', ''memory_percent'', ''network_bytes_egress'', ''network_bytes_ingress'', ''active_connections'', ''total_connections'', ''aborted_connections'', ''Queries'', ''io_consumption_percent'', ''storage_percent'', ''storage_used'', ''storage_limit'', ''backup_storage_used'', ''replication_lag'', ''cpu_credits_remaining'', ''cpu_credits_consumed'' ], prepared_metrics = [], data = {}; data[''errors''] = {}; data[''metrics''] = {}; try { AzureDB.setParams(JSON.parse(value)); try { result = AzureDB.request( ''https://login.microsoftonline.com/'' + encodeURIComponent(AzureDB.params.tenant_id) + ''/oauth2/token'', ''grant_type=client_credentials&resource='' + encodeURIComponent(''https://management.azure.com/'') + ''&client_id='' + encodeURIComponent(AzureDB.params.app_id) + ''&client_secret='' + encodeURIComponent(AzureDB.params.password) ); if (''access_token'' in result) { AzureDB.token = result[''access_token'']; } else { throw ''Auth response does not contain access token.''; } } catch (error) { data.errors.auth = error.toString(); } if (!(''auth'' in data.errors)) { try { health = AzureDB.request(''https://management.azure.com'' + AzureDB.params.resource_id + ''/providers/Microsoft.ResourceHealth/availabilityStatuses?api-version=2020-05-01''); if (''value'' in health && Array.isArray(health.value) && health.value.length > 0 && ''properties'' in health.value[0] && typeof health.value[0].properties === ''object'') { data.health = health.value[0].properties; } } catch (error) { data.errors.health = error.toString(); } for (var i = 0; i < metrics.length; i += 20) { var chunk = metrics.slice(i, i + 20); prepared_metrics.push( chunk.map(function (element) { return encodeURIComponent(element); }).join('','') ); } start_date = new Date((new Date().getTime()) - 300000).toISOString().replace(/\\.\\d+/, ''''); end_date = new Date().toISOString().replace(/\\.\\d+/, ''''); for (var j in prepared_metrics) { try { metrics_data = AzureDB.request(''https://management.azure.com'' + AzureDB.params.resource_id + ''/providers/Microsoft.Insights/metrics?metricnames='' + prepared_metrics[j] + ''×pan='' + encodeURIComponent(start_date) + ''/'' + encodeURIComponent(end_date) + ''&api-version=2021-05-01''); if (''value'' in metrics_data && Array.isArray(metrics_data.value) && metrics_data.value.length > 0) { for (k in metrics_data.value) { if (''name'' in metrics_data.value[k] && typeof metrics_data.value[k].name === ''object'' && ''value'' in metrics_data.value[k].name && typeof metrics_data.value[k].name.value === ''string'' && ''timeseries'' in metrics_data.value[k] && Array.isArray(metrics_data.value[k].timeseries) && metrics_data.value[k].timeseries.length > 0 && ''data'' in metrics_data.value[k].timeseries[0] && Array.isArray(metrics_data.value[k].timeseries[0].data) && metrics_data.value[k].timeseries[0].data.length > 0) { data.metrics[metrics_data.value[k].name.value.replace(/(\\s|\\/)+/g, '''')] = metrics_data.value[k].timeseries[0].data[metrics_data.value[k].timeseries[0].data.length - 1]; } } } } catch (error) { data.errors[prepared_metrics[j]] = error.toString(); } } } } catch (error) { data.errors.params = error.toString(); } if (Object.keys(data.errors).length !== 0) { errors = ''Failed to receive data:''; for (var error in data.errors) { errors += ''\\n'' + error + '' : '' + data.errors[error]; } data.errors = errors; } else { data.errors = ''''; } return JSON.stringify(data);','','0','','','','','0',NULL,'The result of API requests is expressed in the JSON.','0','30d','0','',NULL,'{$AZURE.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','de712334db1440309fa68f9252d4f9bc','0','2','0'), ('44162','21','','10540','Get data','azure.db.mysql.data.get','1m','0','0','0','4','','','','',NULL,NULL,E'var AzureDB = { params: {}, token: null, setParams: function (params) { [''app_id'', ''password'', ''tenant_id'', ''subscription_id'', ''resource_id''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); AzureDB.params = params; }, request: function (url, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var response, request = new HttpRequest(); if (typeof AzureDB.params.proxy !== ''undefined'' && AzureDB.params.proxy !== '''') { request.setProxy(AzureDB.params.proxy); } if (AzureDB.token) { request.addHeader(''Accept: application/json''); request.addHeader(''Authorization: Bearer '' + AzureDB.token); } Zabbix.log(4, ''[ Azure ] Sending request: '' + url); if (data !== '''') { request.addHeader(''Content-Type: application/x-www-form-urlencoded''); response = request.post(url, data); } else { response = request.get(url); } Zabbix.log(4, ''[ Azure ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200 || response === null) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { return JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API.''; } } }; var metrics = [ ''cpu_percent'', ''memory_percent'', ''io_consumption_percent'', ''storage_percent'', ''storage_used'', ''storage_limit'', ''serverlog_storage_percent'', ''serverlog_storage_usage'', ''serverlog_storage_limit'', ''active_connections'', ''connections_failed'', ''seconds_behind_master'', ''backup_storage_used'', ''network_bytes_egress'', ''network_bytes_ingress'' ], prepared_metrics = [], data = {}; data[''errors''] = {}; data[''metrics''] = {}; try { AzureDB.setParams(JSON.parse(value)); try { result = AzureDB.request( ''https://login.microsoftonline.com/'' + encodeURIComponent(AzureDB.params.tenant_id) + ''/oauth2/token'', ''grant_type=client_credentials&resource='' + encodeURIComponent(''https://management.azure.com/'') + ''&client_id='' + encodeURIComponent(AzureDB.params.app_id) + ''&client_secret='' + encodeURIComponent(AzureDB.params.password) ); if (''access_token'' in result) { AzureDB.token = result[''access_token'']; } else { throw ''Auth response does not contain access token.''; } } catch (error) { data.errors.auth = error.toString(); } if (!(''auth'' in data.errors)) { try { health = AzureDB.request(''https://management.azure.com'' + AzureDB.params.resource_id + ''/providers/Microsoft.ResourceHealth/availabilityStatuses?api-version=2020-05-01''); if (''value'' in health && Array.isArray(health.value) && health.value.length > 0 && ''properties'' in health.value[0] && typeof health.value[0].properties === ''object'') { data.health = health.value[0].properties; } } catch (error) { data.errors.health = error.toString(); } for (var i = 0; i < metrics.length; i += 20) { var chunk = metrics.slice(i, i + 20); prepared_metrics.push( chunk.map(function (element) { return encodeURIComponent(element); }).join('','') ); } start_date = new Date((new Date().getTime()) - 300000).toISOString().replace(/\\.\\d+/, ''''); end_date = new Date().toISOString().replace(/\\.\\d+/, ''''); for (var j in prepared_metrics) { try { metrics_data = AzureDB.request(''https://management.azure.com'' + AzureDB.params.resource_id + ''/providers/Microsoft.Insights/metrics?metricnames='' + prepared_metrics[j] + ''×pan='' + encodeURIComponent(start_date) + ''/'' + encodeURIComponent(end_date) + ''&api-version=2021-05-01''); if (''value'' in metrics_data && Array.isArray(metrics_data.value) && metrics_data.value.length > 0) { for (k in metrics_data.value) { if (''name'' in metrics_data.value[k] && typeof metrics_data.value[k].name === ''object'' && ''value'' in metrics_data.value[k].name && typeof metrics_data.value[k].name.value === ''string'' && ''timeseries'' in metrics_data.value[k] && Array.isArray(metrics_data.value[k].timeseries) && metrics_data.value[k].timeseries.length > 0 && ''data'' in metrics_data.value[k].timeseries[0] && Array.isArray(metrics_data.value[k].timeseries[0].data) && metrics_data.value[k].timeseries[0].data.length > 0) { data.metrics[metrics_data.value[k].name.value.replace(/(\\s|\\/)+/g, '''')] = metrics_data.value[k].timeseries[0].data[metrics_data.value[k].timeseries[0].data.length - 1]; } } } } catch (error) { data.errors[prepared_metrics[j]] = error.toString(); } } } } catch (error) { data.errors.params = error.toString(); } if (Object.keys(data.errors).length !== 0) { errors = ''Failed to receive data:''; for (var error in data.errors) { errors += ''\\n'' + error + '' : '' + data.errors[error]; } data.errors = errors; } else { data.errors = ''''; } return JSON.stringify(data);','','0','','','','','0',NULL,'The result of API requests is expressed in the JSON.','0','30d','0','',NULL,'{$AZURE.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','cd62d92ef0384ea9acf0cae71c88ebc6','0','2','0'), ('44248','21','','10543','Get data','azure.db.pgsql.data.get','1m','0','0','0','4','','','','',NULL,NULL,E'var AzureDB = { params: {}, token: null, setParams: function (params) { [''app_id'', ''password'', ''tenant_id'', ''subscription_id'', ''resource_id''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); AzureDB.params = params; }, request: function (url, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var response, request = new HttpRequest(); if (typeof AzureDB.params.proxy !== ''undefined'' && AzureDB.params.proxy !== '''') { request.setProxy(AzureDB.params.proxy); } if (AzureDB.token) { request.addHeader(''Accept: application/json''); request.addHeader(''Authorization: Bearer '' + AzureDB.token); } Zabbix.log(4, ''[ Azure ] Sending request: '' + url); if (data !== '''') { request.addHeader(''Content-Type: application/x-www-form-urlencoded''); response = request.post(url, data); } else { response = request.get(url); } Zabbix.log(4, ''[ Azure ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200 || response === null) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { return JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API.''; } } }; var metrics = [ ''cpu_percent'', ''memory_percent'', ''iops'', ''disk_queue_depth'', ''read_throughput'', ''write_throughput'', ''read_iops'', ''write_iops'', ''network_bytes_egress'', ''network_bytes_ingress'', ''active_connections'', ''connections_failed'', ''connections_succeeded'', ''storage_percent'', ''storage_used'', ''storage_free'', ''txlogs_storage_used'', ''backup_storage_used'', ''maximum_used_transactionIDs'', ''cpu_credits_remaining'', ''cpu_credits_consumed'' ], prepared_metrics = [], data = {}; data[''errors''] = {}; data[''metrics''] = {}; try { AzureDB.setParams(JSON.parse(value)); try { result = AzureDB.request( ''https://login.microsoftonline.com/'' + encodeURIComponent(AzureDB.params.tenant_id) + ''/oauth2/token'', ''grant_type=client_credentials&resource='' + encodeURIComponent(''https://management.azure.com/'') + ''&client_id='' + encodeURIComponent(AzureDB.params.app_id) + ''&client_secret='' + encodeURIComponent(AzureDB.params.password) ); if (''access_token'' in result) { AzureDB.token = result[''access_token'']; } else { throw ''Auth response does not contain access token.''; } } catch (error) { data.errors.auth = error.toString(); } if (!(''auth'' in data.errors)) { try { health = AzureDB.request(''https://management.azure.com'' + AzureDB.params.resource_id + ''/providers/Microsoft.ResourceHealth/availabilityStatuses?api-version=2020-05-01''); if (''value'' in health && Array.isArray(health.value) && health.value.length > 0 && ''properties'' in health.value[0] && typeof health.value[0].properties === ''object'') { data.health = health.value[0].properties; } } catch (error) { data.errors.health = error.toString(); } for (var i = 0; i < metrics.length; i += 20) { var chunk = metrics.slice(i, i + 20); prepared_metrics.push( chunk.map(function (element) { return encodeURIComponent(element); }).join('','') ); } start_date = new Date((new Date().getTime()) - 600000).toISOString().replace(/\\.\\d+/, ''''); end_date = new Date().toISOString().replace(/\\.\\d+/, ''''); for (var j in prepared_metrics) { try { metrics_data = AzureDB.request(''https://management.azure.com'' + AzureDB.params.resource_id + ''/providers/Microsoft.Insights/metrics?metricnames='' + prepared_metrics[j] + ''×pan='' + encodeURIComponent(start_date) + ''/'' + encodeURIComponent(end_date) + ''&api-version=2021-05-01''); if (''value'' in metrics_data && Array.isArray(metrics_data.value) && metrics_data.value.length > 0) { for (k in metrics_data.value) { if (''name'' in metrics_data.value[k] && typeof metrics_data.value[k].name === ''object'' && ''value'' in metrics_data.value[k].name && typeof metrics_data.value[k].name.value === ''string'' && ''timeseries'' in metrics_data.value[k] && Array.isArray(metrics_data.value[k].timeseries) && metrics_data.value[k].timeseries.length > 0 && ''data'' in metrics_data.value[k].timeseries[0] && Array.isArray(metrics_data.value[k].timeseries[0].data) && metrics_data.value[k].timeseries[0].data.length > 0) { if (metrics_data.value[k].name.value === ''disk_queue_depth'' || metrics_data.value[k].name.value === ''read_throughput'' || metrics_data.value[k].name.value === ''write_throughput'' || metrics_data.value[k].name.value === ''read_iops'' || metrics_data.value[k].name.value === ''write_iops'') { data.metrics[metrics_data.value[k].name.value.replace(/(\\s|\\/)+/g, '''')] = metrics_data.value[k].timeseries[0].data[metrics_data.value[k].timeseries[0].data.length - 6]; } else { data.metrics[metrics_data.value[k].name.value.replace(/(\\s|\\/)+/g, '''')] = metrics_data.value[k].timeseries[0].data[metrics_data.value[k].timeseries[0].data.length - 1]; } } } } } catch (error) { data.errors[prepared_metrics[j]] = error.toString(); } } } } catch (error) { data.errors.params = error.toString(); } if (Object.keys(data.errors).length !== 0) { errors = ''Failed to receive data:''; for (var error in data.errors) { errors += ''\\n'' + error + '' : '' + data.errors[error]; } data.errors = errors; } else { data.errors = ''''; } return JSON.stringify(data);','','0','','','','','0',NULL,'The result of API requests is expressed in the JSON.','0','30d','0','',NULL,'{$AZURE.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','1792c0566e8a438dad5e299d8f5b9094','0','2','0'), ('44249','21','','10544','Get data','azure.db.pgsql.data.get','1m','0','0','0','4','','','','',NULL,NULL,E'var AzureDB = { params: {}, token: null, setParams: function (params) { [''app_id'', ''password'', ''tenant_id'', ''subscription_id'', ''resource_id''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); AzureDB.params = params; }, request: function (url, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var response, request = new HttpRequest(); if (typeof AzureDB.params.proxy !== ''undefined'' && AzureDB.params.proxy !== '''') { request.setProxy(AzureDB.params.proxy); } if (AzureDB.token) { request.addHeader(''Accept: application/json''); request.addHeader(''Authorization: Bearer '' + AzureDB.token); } Zabbix.log(4, ''[ Azure ] Sending request: '' + url); if (data !== '''') { request.addHeader(''Content-Type: application/x-www-form-urlencoded''); response = request.post(url, data); } else { response = request.get(url); } Zabbix.log(4, ''[ Azure ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200 || response === null) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { return JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API.''; } } }; var metrics = [ ''cpu_percent'', ''memory_percent'', ''io_consumption_percent'', ''storage_percent'', ''storage_used'', ''storage_limit'', ''serverlog_storage_percent'', ''serverlog_storage_usage'', ''serverlog_storage_limit'', ''active_connections'', ''connections_failed'', ''backup_storage_used'', ''network_bytes_egress'', ''network_bytes_ingress'', ''pg_replica_log_delay_in_seconds'', ''pg_replica_log_delay_in_bytes'' ], prepared_metrics = [], data = {}; data[''errors''] = {}; data[''metrics''] = {}; try { AzureDB.setParams(JSON.parse(value)); try { result = AzureDB.request( ''https://login.microsoftonline.com/'' + encodeURIComponent(AzureDB.params.tenant_id) + ''/oauth2/token'', ''grant_type=client_credentials&resource='' + encodeURIComponent(''https://management.azure.com/'') + ''&client_id='' + encodeURIComponent(AzureDB.params.app_id) + ''&client_secret='' + encodeURIComponent(AzureDB.params.password) ); if (''access_token'' in result) { AzureDB.token = result[''access_token'']; } else { throw ''Auth response does not contain access token.''; } } catch (error) { data.errors.auth = error.toString(); } if (!(''auth'' in data.errors)) { try { health = AzureDB.request(''https://management.azure.com'' + AzureDB.params.resource_id + ''/providers/Microsoft.ResourceHealth/availabilityStatuses?api-version=2020-05-01''); if (''value'' in health && Array.isArray(health.value) && health.value.length > 0 && ''properties'' in health.value[0] && typeof health.value[0].properties === ''object'') { data.health = health.value[0].properties; } } catch (error) { data.errors.health = error.toString(); } for (var i = 0; i < metrics.length; i += 20) { var chunk = metrics.slice(i, i + 20); prepared_metrics.push( chunk.map(function (element) { return encodeURIComponent(element); }).join('','') ); } start_date = new Date((new Date().getTime()) - 300000).toISOString().replace(/\\.\\d+/, ''''); end_date = new Date().toISOString().replace(/\\.\\d+/, ''''); for (var j in prepared_metrics) { try { metrics_data = AzureDB.request(''https://management.azure.com'' + AzureDB.params.resource_id + ''/providers/Microsoft.Insights/metrics?metricnames='' + prepared_metrics[j] + ''×pan='' + encodeURIComponent(start_date) + ''/'' + encodeURIComponent(end_date) + ''&api-version=2021-05-01''); if (''value'' in metrics_data && Array.isArray(metrics_data.value) && metrics_data.value.length > 0) { for (k in metrics_data.value) { if (''name'' in metrics_data.value[k] && typeof metrics_data.value[k].name === ''object'' && ''value'' in metrics_data.value[k].name && typeof metrics_data.value[k].name.value === ''string'' && ''timeseries'' in metrics_data.value[k] && Array.isArray(metrics_data.value[k].timeseries) && metrics_data.value[k].timeseries.length > 0 && ''data'' in metrics_data.value[k].timeseries[0] && Array.isArray(metrics_data.value[k].timeseries[0].data) && metrics_data.value[k].timeseries[0].data.length > 0) { data.metrics[metrics_data.value[k].name.value.replace(/(\\s|\\/)+/g, '''')] = metrics_data.value[k].timeseries[0].data[metrics_data.value[k].timeseries[0].data.length - 1]; } } } } catch (error) { data.errors[prepared_metrics[j]] = error.toString(); } } } } catch (error) { data.errors.params = error.toString(); } if (Object.keys(data.errors).length !== 0) { errors = ''Failed to receive data:''; for (var error in data.errors) { errors += ''\\n'' + error + '' : '' + data.errors[error]; } data.errors = errors; } else { data.errors = ''''; } return JSON.stringify(data);','','0','','','','','0',NULL,'The result of API requests is expressed in the JSON.','0','30d','0','',NULL,'{$AZURE.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','e47d863822e64e6292bfa3e684bc2839','0','2','0'), ('44294','21','','10546','Get data','meraki.get.data','1h','0','0','0','4','','','','',NULL,NULL,E'var params = JSON.parse(value); var r_match = ''{$MERAKI.ORGANIZATION.NAME.MATCHES}''; var r_not_match = ''{$MERAKI.ORGANIZATION.NAME.NOT_MATCHES}''; var request = new HttpRequest(); request.addHeader(''X-Cisco-Meraki-API-Key:'' + params.token); request.addHeader(''User-Agent: ZabbixServer/1.2 Zabbix''); var response, error_msg = '''', organizations = [], devices = []; function getHttpData(url) { var startTime = new Date().getTime(); var maxWait = 1 * 60 * 60 * 1000; var waitFor = 1000; while (true) { response = request.get(url); Zabbix.log(4, ''[ Meraki API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); var status = request.getStatus(); if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from Meraki API. Check debug log for more information.''; } } if (status === 429 && response && response.errors && Array.isArray(response.errors) && response.errors.indexOf("API rate limit exceeded for organization") !== -1) { var now = new Date().getTime(); var headers = request.getHeaders(false); if (''Retry-After'' in headers) { var retryAfter = headers[''Retry-After'']; Zabbix.log(4, ''[ Meraki API ] API rate limit exceeded. Retrying after '' + retryAfter + '' seconds.''); waitFor = parseInt(retryAfter) * 1000; } else { Zabbix.log(4, ''[ Meraki API ] API rate limit exceeded. No Retry-After header. Retrying after 1 second.''); } if (now - startTime + waitFor > maxWait) { throw ''Failed to receive data: API rate limit exceeded and retry timeout reached.''; } Zabbix.sleep(waitFor); continue; } if (status !== 200) { if (response.errors) { throw response.errors.join('', ''); } else { throw ''Failed to receive data: invalid response status code.''; } } if (typeof (response) !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object.''; } return response; } }; try { if (params.token === ''{'' + ''$MERAKI.TOKEN}'') { throw ''Please change {'' + ''$MERAKI.TOKEN} macro to the proper value.''; } if (params.url.indexOf(''http://'') === -1 && params.url.indexOf(''https://'') === -1) { params.url = ''https://'' + params.url; } if (!params.url.endsWith(''/'')) { params.url += ''/''; } if (typeof params.httpproxy !== ''undefined'' && params.httpproxy !== '''') { request.setProxy(params.httpproxy); } organizations = getHttpData(params.url + ''organizations''); organizations = organizations.filter(function (x) { return new RegExp(r_match).test(x.name) & !new RegExp(r_not_match).test(x.name); }); if (Array.isArray(organizations) && organizations.length > 0) { for (i in organizations) { if (''id'' in organizations[i] && ''name'' in organizations[i]) { try { organization_devices = getHttpData(params.url + ''organizations/'' + encodeURIComponent(organizations[i].id) + ''/devices/availabilities''); if (Array.isArray(organization_devices) && organization_devices.length > 0) { for (j in organization_devices) { organization_devices[j].organizationId = organizations[i].id; organization_devices[j].organizationName = organizations[i].name; if (!organization_devices[j].name) { organization_devices[j].name = organization_devices[j].serial; } devices.push(organization_devices[j]); } } } catch (error) { error_msg += organizations[i].name + " organization''s devices retrieval error: " + error + ''\\n''; } } else { error_msg += ''There is no ID or organization name in the API response.''; } } } } catch (error) { error_msg += ''Organizations data retrieval error: '' + error; } return JSON.stringify({ organizations: organizations, devices: devices, error: error_msg.toString() });','','0','','','','','0',NULL,'Item for gathering all the organizations and devices from Meraki API.','0','30d','0','',NULL,'{$MERAKI.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','d1a5f3c79a604bae98c314d2aed64ff4','0','2','0'), ('44295','21','','10547','Get device data','meraki.get.device','{$MERAKI.UPLINK.LL.TIMESPAN}','0','0','0','4','','','','',NULL,NULL,'var params = JSON.parse(value); var request = new HttpRequest(); request.addHeader(''X-Cisco-Meraki-API-Key:'' + params.token); request.addHeader(''User-Agent: ZabbixServer/1.2 Zabbix''); var response, error_msg = '''', device = [], uplinksLL = [], timespan; function isFloat(n) { n = parseFloat(n); return Number(n) === n && n % 1 !== 0; }; function checkNumber(string) { if (typeof string !== "string" || isNaN(string) || isFloat(string)) { throw ''Incorrect "timespan" parameter given: '' + string + '' Must be an unsigned number''; } return string; }; function getHttpData(url) { var startTime = new Date().getTime(); var maxWait = (parseInt(timespan, 10) - 10) * 1000; var waitFor = 1000; while (true) { response = request.get(url); Zabbix.log(4, ''[ Meraki API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); var status = request.getStatus(); if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from Meraki API. Check debug log for more information.''; } } if (status === 429 && response && response.errors && Array.isArray(response.errors) && response.errors.indexOf("API rate limit exceeded for organization") !== -1) { var now = new Date().getTime(); var headers = request.getHeaders(false); if (''Retry-After'' in headers) { var retryAfter = headers[''Retry-After'']; Zabbix.log(4, ''[ Meraki API ] API rate limit exceeded. Retrying after '' + retryAfter + '' seconds.''); waitFor = parseInt(retryAfter) * 1000; } else { Zabbix.log(4, ''[ Meraki API ] API rate limit exceeded. No Retry-After header. Retrying after 1 second.''); } if (now - startTime + waitFor > maxWait) { throw ''Failed to receive data: API rate limit exceeded and retry timeout reached.''; } Zabbix.sleep(waitFor); continue; } if (status !== 200) { if (response.errors) { throw response.errors.join('', ''); } else { throw ''Failed to receive data: invalid response status code.''; } } if (typeof (response) !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object.''; } return response; } }; try { if (params.token === ''{'' + ''$MERAKI.TOKEN}'') { throw ''Please change {'' + ''$MERAKI.TOKEN} macro to the proper value.''; } if (params.url.indexOf(''http://'') === -1 && params.url.indexOf(''https://'') === -1) { params.url = ''https://'' + params.url; } if (!params.url.endsWith(''/'')) { params.url += ''/''; } if (typeof params.httpproxy !== ''undefined'' && params.httpproxy !== '''') { request.setProxy(params.httpproxy); } timespan = checkNumber(''{$MERAKI.UPLINK.LL.TIMESPAN}''); if (timespan > 86400 || timespan < 1) { throw ''Incorrect "timespan" parameter given: '' + timespan + '' Must be between 1 and 86400 seconds.''; } uplinksLL = getHttpData(params.url + ''organizations/'' + encodeURIComponent(params.organizationId) + ''/devices/uplinksLossAndLatency?timespan='' + timespan); if (uplinksLL.length > 0) { uplinksLL = uplinksLL.filter(function (device) { return device.serial == params.serial; }); } } catch (error) { error_msg = error; }; return JSON.stringify({ ''uplinksLL'': uplinksLL, ''error'': error_msg.toString() });','','0','','','','','0',NULL,'Item for gathering device data from Meraki API.','0','30d','0','',NULL,'{$MERAKI.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','e4963b68cdde453f91767ff9e3a31d16','0','2','0'), ('44296','21','','10548','Get list of adaptive policy aggregate statistics','meraki.get.adaptive.policy','20m','0','0','0','4','','','','',NULL,NULL,'var params = JSON.parse(value); var request = new HttpRequest(); request.addHeader(''X-Cisco-Meraki-API-Key:'' + params.token); request.addHeader(''User-Agent: ZabbixServer/1.2 Zabbix''); var response, error_msg = '''', result = []; function getHttpData(url) { var startTime = new Date().getTime(); var maxWait = 10 * 60 * 1000; while (true) { response = request.get(url); Zabbix.log(4, ''[ Meraki API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); var status = request.getStatus(); if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from Meraki API. Check debug log for more information.''; } } if (status === 429 && response && response.errors && Array.isArray(response.errors) && response.errors.indexOf("API rate limit exceeded for organization") !== -1) { var now = new Date().getTime(); if (now - startTime + 1000 > maxWait) { throw ''Failed to receive data: API rate limit exceeded and retry timeout reached.''; } Zabbix.sleep(1000); continue; } if (status !== 200) { if (response.errors) { throw response.errors.join('', ''); } else { throw ''Failed to receive data: invalid response status code.''; } } if (typeof (response) !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object.''; } return response; } }; try { if (params.token === ''{'' + ''$MERAKI.TOKEN}'') { throw ''Please change {'' + ''$MERAKI.TOKEN} macro to the proper value.''; } if (params.url.indexOf(''http://'') === -1 && params.url.indexOf(''https://'') === -1) { params.url = ''https://'' + params.url; } if (!params.url.endsWith(''/'')) { params.url += ''/''; } if (typeof params.httpproxy !== ''undefined'' && params.httpproxy !== '''') { request.setProxy(params.httpproxy); } result = getHttpData(params.url + ''organizations/'' + encodeURIComponent(params.organizationId) + ''/adaptivePolicy/overview''); } catch (error) { error_msg = error; }; return JSON.stringify({ ''data'': result, ''error'': error_msg.toString() });','','0','','','','','0',NULL,'Item for gathering adaptive policy aggregate statistics for the organization.','0','30d','0','',NULL,'{$MERAKI.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','25f8f61ddf964f39b39cc38b23b017b9','0','2','0'), ('44297','21','','10548','Get list of configuration changes','meraki.get.configuration.changes','{$MERAKI.CONFIG.CHANGE.TIMESPAN}','0','0','0','4','','','','',NULL,NULL,'var params = JSON.parse(value); var request = new HttpRequest(); request.addHeader(''X-Cisco-Meraki-API-Key:'' + params.token); request.addHeader(''User-Agent: ZabbixServer/1.2 Zabbix''); var response, error_msg = '''', result = [], timespan; function isFloat(n) { n = parseFloat(n); return Number(n) === n && n % 1 !== 0; }; function checkNumber(string) { if (typeof string !== "string" || isNaN(string) || isFloat(string)) { throw ''Incorrect "timespan" parameter given: '' + string + '' Must be an unsigned number''; } return string; }; function getHttpData(url) { var startTime = new Date().getTime(); var maxWait = parseInt(timespan, 10) * 1000; var waitFor = 1000; while (true) { response = request.get(url); Zabbix.log(4, ''[ Meraki API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); var status = request.getStatus(); if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from Meraki API. Check debug log for more information.''; } } if (status === 429 && response && response.errors && Array.isArray(response.errors) && response.errors.indexOf("API rate limit exceeded for organization") !== -1) { var now = new Date().getTime(); var headers = request.getHeaders(false); if (''Retry-After'' in headers) { var retryAfter = headers[''Retry-After'']; Zabbix.log(4, ''[ Meraki API ] API rate limit exceeded. Retrying after '' + retryAfter + '' seconds.''); waitFor = parseInt(retryAfter) * 1000; } else { Zabbix.log(4, ''[ Meraki API ] API rate limit exceeded. No Retry-After header. Retrying after 1 second.''); } if (now - startTime + waitFor > maxWait) { throw ''Failed to receive data: API rate limit exceeded and retry timeout reached.''; } Zabbix.sleep(waitFor); continue; } if (status !== 200) { if (response.errors) { throw response.errors.join('', ''); } else { throw ''Failed to receive data: invalid response status code.''; } } if (typeof (response) !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object.''; } return response; } }; try { if (params.token === ''{'' + ''$MERAKI.TOKEN}'') { throw ''Please change {'' + ''$MERAKI.TOKEN} macro to the proper value.''; } if (params.url.indexOf(''http://'') === -1 && params.url.indexOf(''https://'') === -1) { params.url = ''https://'' + params.url; } if (!params.url.endsWith(''/'')) { params.url += ''/''; } if (typeof params.httpproxy !== ''undefined'' && params.httpproxy !== '''') { request.setProxy(params.httpproxy); } timespan = checkNumber(''{$MERAKI.CONFIG.CHANGE.TIMESPAN}''); if (timespan > 86400 || timespan < 1) { throw ''Incorrect "timespan" parameter given: '' + timespan + '' Must be between 1 and 86400 seconds.''; } result = getHttpData(params.url + ''organizations/'' + encodeURIComponent(params.organizationId) + ''/configurationChanges?timespan='' + timespan); } catch (error) { error_msg = error; }; return JSON.stringify({ ''data'': result, ''error'': error_msg.toString() });','','0','','','','','0',NULL,'Item for gathering all the configuration changes for the organization. Gathering once per 20m by default.','0','30d','0','',NULL,'{$MERAKI.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','f2a65bce3adf4511a3f37ed4caa66b3d','0','2','0'), ('44298','21','','10548','Get data','meraki.get.data','12h','0','0','0','4','','','','',NULL,NULL,'var params = JSON.parse(value); var request = new HttpRequest(); request.addHeader(''X-Cisco-Meraki-API-Key:'' + params.token); request.addHeader(''User-Agent: ZabbixServer/1.2 Zabbix''); var response, error_msg = '''', licenseStates = [], samlSSO = [], samlRoles = [], adminAccount = [], loginSecurity = []; function getHttpData(url) { var startTime = new Date().getTime(); var maxWait = 1 * 60 * 60 * 1000; var waitFor = 1000; while (true) { response = request.get(url); Zabbix.log(4, ''[ Meraki API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); var status = request.getStatus(); if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from Meraki API. Check debug log for more information.''; } } if (status === 429 && response && response.errors && Array.isArray(response.errors) && response.errors.indexOf("API rate limit exceeded for organization") !== -1) { var now = new Date().getTime(); var headers = request.getHeaders(false); if (''Retry-After'' in headers) { var retryAfter = headers[''Retry-After'']; Zabbix.log(4, ''[ Meraki API ] API rate limit exceeded. Retrying after '' + retryAfter + '' seconds.''); waitFor = parseInt(retryAfter) * 1000; } else { Zabbix.log(4, ''[ Meraki API ] API rate limit exceeded. No Retry-After header. Retrying after 1 second.''); } if (now - startTime + waitFor > maxWait) { throw ''Failed to receive data: API rate limit exceeded and retry timeout reached.''; } Zabbix.sleep(waitFor); continue; } if (status !== 200) { if (response.errors) { throw response.errors.join('', ''); } else { throw ''Failed to receive data: invalid response status code.''; } } if (typeof (response) !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object.''; } return response; } }; try { if (params.token === ''{'' + ''$MERAKI.TOKEN}'') { throw ''Please change {'' + ''$MERAKI.TOKEN} macro to the proper value.''; } if (params.url.indexOf(''http://'') === -1 && params.url.indexOf(''https://'') === -1) { params.url = ''https://'' + params.url; } if (!params.url.endsWith(''/'')) { params.url += ''/''; } if (typeof params.httpproxy !== ''undefined'' && params.httpproxy !== '''') { request.setProxy(params.httpproxy); } licenseStates = getHttpData(params.url + ''organizations/'' + encodeURIComponent(params.organizationId) + ''/licenses/overview''); samlSSO = getHttpData(params.url + ''organizations/'' + encodeURIComponent(params.organizationId) + ''/saml''); samlRoles = getHttpData(params.url + ''organizations/'' + encodeURIComponent(params.organizationId) + ''/samlRoles''); adminAccount = getHttpData(params.url + ''organizations/'' + encodeURIComponent(params.organizationId) + ''/admins''); loginSecurity = getHttpData(params.url + ''organizations/'' + encodeURIComponent(params.organizationId) + ''/loginSecurity''); } catch (error) { error_msg = error; }; return JSON.stringify({ ''licenseStates'': licenseStates, ''samlSSO'': samlSSO, ''samlRoles'': samlRoles, ''adminAccount'': adminAccount, ''loginSecurity'': loginSecurity, ''error'': error_msg.toString() });','','0','','','','','0',NULL,'Item for gathering data for the organization.','0','30d','0','',NULL,'{$MERAKI.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','3306da0ec0d749829db2f5f42e4e7876','0','2','0'), ('44299','21','','10548','Get list of the networks','meraki.get.networks','3m','0','0','0','4','','','','',NULL,NULL,'var params = JSON.parse(value); var request = new HttpRequest(); request.addHeader(''X-Cisco-Meraki-API-Key:'' + params.token); request.addHeader(''User-Agent: ZabbixServer/1.2 Zabbix''); var response, error_msg = '''', networks = [], uplinks = []; function getHttpData(url) { var startTime = new Date().getTime(); var maxWait = 1 * 60 * 1000; var waitFor = 1000; while (true) { response = request.get(url); Zabbix.log(4, ''[ Meraki API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); var status = request.getStatus(); if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from Meraki API. Check debug log for more information.''; } } if (status === 429 && response && response.errors && Array.isArray(response.errors) && response.errors.indexOf("API rate limit exceeded for organization") !== -1) { var now = new Date().getTime(); var headers = request.getHeaders(false); if (''Retry-After'' in headers) { var retryAfter = headers[''Retry-After'']; Zabbix.log(4, ''[ Meraki API ] API rate limit exceeded. Retrying after '' + retryAfter + '' seconds.''); waitFor = parseInt(retryAfter) * 1000; } else { Zabbix.log(4, ''[ Meraki API ] API rate limit exceeded. No Retry-After header. Retrying after 1 second.''); } if (now - startTime + waitFor > maxWait) { throw ''Failed to receive data: API rate limit exceeded and retry timeout reached.''; } Zabbix.sleep(waitFor); continue; } if (status !== 200) { if (response.errors) { throw response.errors.join('', ''); } else { throw ''Failed to receive data: invalid response status code.''; } } if (typeof (response) !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object.''; } return response; } }; try { if (params.token === ''{'' + ''$MERAKI.TOKEN}'') { throw ''Please change {'' + ''$MERAKI.TOKEN} macro to the proper value.''; } if (params.url.indexOf(''http://'') === -1 && params.url.indexOf(''https://'') === -1) { params.url = ''https://'' + params.url; } if (!params.url.endsWith(''/'')) { params.url += ''/''; } if (typeof params.httpproxy !== ''undefined'' && params.httpproxy !== '''') { request.setProxy(params.httpproxy); } networks = getHttpData(params.url + ''organizations/'' + encodeURIComponent(params.organizationId) + ''/networks''); responseUplinks = getHttpData(params.url + ''organizations/'' + encodeURIComponent(params.organizationId) + ''/appliance/uplink/statuses''); if (typeof responseUplinks !== ''undefined'' && Array.isArray(responseUplinks)) { for (var i in responseUplinks) { if (''networkId'' in responseUplinks[i] && typeof networks !== ''undefined'' && Array.isArray(networks)) { network = networks.filter(function (x) { return x.id == responseUplinks[i].networkId; }); } if (typeof responseUplinks[i].uplinks !== ''undefined'' && Array.isArray(responseUplinks[i].uplinks)) { for (var p in responseUplinks[i].uplinks) { if (typeof network[0].name !== ''undefined'') { responseUplinks[i].uplinks[p].networkName = network[0].name; } if (typeof network[0].timeZone !== ''undefined'') { responseUplinks[i].uplinks[p].timeZone = network[0].timeZone; } if (''highAvailability'' in responseUplinks[i] && ''role'' in responseUplinks[i].highAvailability) { responseUplinks[i].uplinks[p].role = responseUplinks[i].highAvailability.role; } if (''serial'' in responseUplinks[i]) { responseUplinks[i].uplinks[p].serial = responseUplinks[i].serial; } uplinks.push(responseUplinks[i].uplinks[p]); } } } } } catch (error) { error_msg = error; }; return JSON.stringify({ ''uplinks'': uplinks, ''networks'': networks, ''error'': error_msg.toString() });','','0','','','','','0',NULL,'Item for gathering all the networks of organization from Meraki API.','0','30d','0','',NULL,'{$MERAKI.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','efe8853443d44eed8daeecee5ab9e481','0','2','0'), ('44300','21','','10548','Get list of the VPN stats','meraki.get.vpn.stats','{$MERAKI.VPN.STATS.TIMESPAN}','0','0','0','4','','','','',NULL,NULL,'var params = JSON.parse(value); var request = new HttpRequest(); request.addHeader(''X-Cisco-Meraki-API-Key:'' + params.token); request.addHeader(''User-Agent: ZabbixServer/1.2 Zabbix''); var response, error_msg = '''', vpnStats = [], vpnStatuses = [], result = []; function isFloat(n) { n = parseFloat(n); return Number(n) === n && n % 1 !== 0; }; function checkNumber(string) { if (typeof string !== "string" || isNaN(string) || isFloat(string)) { throw ''Incorrect "timespan" parameter given: '' + string + '' Must be an unsigned number''; } return string; }; function getHttpData(url) { var startTime = new Date().getTime(); var maxWait = parseInt(timespan, 10) * 1000; var waitFor = 1000; while (true) { response = request.get(url); Zabbix.log(4, ''[ Meraki API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); var status = request.getStatus(); if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from Meraki API. Check debug log for more information.''; } } if (status === 429 && response && response.errors && Array.isArray(response.errors) && response.errors.indexOf("API rate limit exceeded for organization") !== -1) { var now = new Date().getTime(); var headers = request.getHeaders(false); if (''Retry-After'' in headers) { var retryAfter = headers[''Retry-After'']; Zabbix.log(4, ''[ Meraki API ] API rate limit exceeded. Retrying after '' + retryAfter + '' seconds.''); waitFor = parseInt(retryAfter) * 1000; } else { Zabbix.log(4, ''[ Meraki API ] API rate limit exceeded. No Retry-After header. Retrying after 1 second.''); } if (now - startTime + waitFor > maxWait) { throw ''Failed to receive data: API rate limit exceeded and retry timeout reached.''; } Zabbix.sleep(waitFor); continue; } if (status !== 200) { if (response.errors) { throw response.errors.join('', ''); } else { throw ''Failed to receive data: invalid response status code.''; } } if (typeof (response) !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object.''; } return response; } }; try { if (params.token === ''{'' + ''$MERAKI.TOKEN}'') { throw ''Please change {'' + ''$MERAKI.TOKEN} macro to the proper value.''; } if (params.url.indexOf(''http://'') === -1 && params.url.indexOf(''https://'') === -1) { params.url = ''https://'' + params.url; } if (!params.url.endsWith(''/'')) { params.url += ''/''; } if (typeof params.httpproxy !== ''undefined'' && params.httpproxy !== '''') { request.setProxy(params.httpproxy); } timespan = checkNumber(''{$MERAKI.VPN.STATS.TIMESPAN}''); if (timespan > 86400 || timespan < 1) { throw ''Incorrect "timespan" parameter given: '' + timespan + '' Must be between 1 and 86400 seconds.''; } vpnStats = getHttpData(params.url + ''organizations/'' + encodeURIComponent(params.organizationId) + ''/appliance/vpn/stats?timespan='' + timespan); for (i in vpnStats) { if (typeof vpnStats[i].merakiVpnPeers !== ''undefined'' && Array.isArray(vpnStats[i].merakiVpnPeers)) { for (u in vpnStats[i].merakiVpnPeers) { if (typeof vpnStats[i].merakiVpnPeers[u].latencySummaries !== ''undefined'' && Array.isArray(vpnStats[i].merakiVpnPeers[u].latencySummaries)) { vpn_stats = vpnStats[i].merakiVpnPeers[u].latencySummaries.map(function (x) { lps = vpnStats[i].merakiVpnPeers[u].lossPercentageSummaries.filter(function (y) { return y.senderUplink == x.senderUplink && y.receiverUplink == x.receiverUplink; }); js = vpnStats[i].merakiVpnPeers[u].jitterSummaries.filter(function (y) { return y.senderUplink == x.senderUplink && y.receiverUplink == x.receiverUplink; }); ms = vpnStats[i].merakiVpnPeers[u].mosSummaries.filter(function (y) { return y.senderUplink == x.senderUplink && y.receiverUplink == x.receiverUplink; }); Object.assign(x, lps[0], js[0], ms[0]); if (''networkId'' in vpnStats[i]) { x.networkId = vpnStats[i].networkId; } if (''networkName'' in vpnStats[i]) { x.networkName = vpnStats[i].networkName; } if (''networkId'' in vpnStats[i].merakiVpnPeers[u]) { x.peerNetworkId = vpnStats[i].merakiVpnPeers[u].networkId; } if (''networkName'' in vpnStats[i].merakiVpnPeers[u]) { x.peerNetworkName = vpnStats[i].merakiVpnPeers[u].networkName; } return x; }); result = result.concat(vpn_stats); } } } } vpnStatuses = getHttpData(params.url + ''organizations/'' + encodeURIComponent(params.organizationId) + ''/appliance/vpn/statuses''); } catch (error) { error_msg = error; }; return JSON.stringify({ ''vpnStats'': result, ''vpnStatuses'': vpnStatuses, ''error'': error_msg.toString() });','','0','','','','','0',NULL,'Item for gathering all the VPN stats of the organization.','0','30d','0','',NULL,'{$MERAKI.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','bb653e6dba3f489494a7143b74fe8f4f','0','2','0'), ('44335','0','','10264','Get processes summary','proc.get[{$APACHE.PROCESS.NAME.PARAMETER},,,summary]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The aggregated data of summary metrics for all processes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','99b1a38ed45b4212974b0bea72b076d2','0','2','0'), ('44337','0','','10264','CPU utilization','proc.cpu.util[{#APACHE.NAME}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of the CPU utilization by a process {#APACHE.NAME}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b73280fb0af64c7899abfc74cc074b13','0','2','0'), ('44343','0','','10266','Get processes summary','proc.get[{$NGINX.PROCESS.NAME.PARAMETER},,,summary]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The aggregated data of summary metrics for all processes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d43b4b99b6084076a4feb1fde51ecc40','0','2','0'), ('44345','0','','10266','CPU utilization','proc.cpu.util[{#NGINX.NAME}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of the CPU utilization by a process {#NGINX.NAME}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','84c95c1955bf4ccaa12a060a9acdb478','0','2','0'), ('44351','0','','10330','Get processes summary','proc.get[{$PHP_FPM.PROCESS.NAME.PARAMETER},,,summary]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The aggregated data of summary metrics for all processes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','71ea0957d99a4d48b18e73a21494c849','0','2','0'), ('44353','0','','10330','CPU utilization','proc.cpu.util[{#PHP_FPM.NAME}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of the CPU utilization by a process `{#PHP_FPM.NAME}`.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a709eaae52ad4128a129c618db6525d2','0','2','0'), ('44359','0','','10301','Get processes summary','proc.get[{$RABBITMQ.PROCESS.NAME.PARAMETER},,,summary]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The aggregated data of summary metrics for all processes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8201cc537b124d9292fcf692922ee0ad','0','2','0'), ('44361','0','','10301','CPU utilization','proc.cpu.util[{#RABBITMQ.NAME}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of the CPU utilization by a process {#RABBITMQ.NAME}.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0b195bf594c44b1f869b4a7671f61453','0','2','0'), ('44381','3','','10551','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'1066','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8eff7e6fc12c45f6b98a4fb89c44f03d','0','2','0'), ('44382','3','','10551','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cb04f67d7ea04894a9f143a7d27db09a','0','2','0'), ('44383','3','','10551','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','be862a0f8625484ebccb8a4e5255b683','0','2','0'), ('44384','17','','10551','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all the SNMP traps unmatched by the other snmptrap items.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','027bb218006e46238392afbb12d96ec6','0','2','0'), ('44385','20','get[1.3.6.1.2.1.1.4.0]','10551','System contact details','system.contact','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB. The textual identification of the contact person for the managed node (or: this node), together with the contact information of this person. If no contact information is known, the value is a zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','566c78f548bc4d1c9157b4a3f41f083b','0','2','0'), ('44386','20','get[1.3.6.1.2.1.1.1.0]','10551','System description','system.descr','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB. The textual description of the entity. This value should include the full name and version identification number of the system''s hardware type, software operating-system, and the networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bc245084de0047aaa7bc62234970e827','0','2','0'), ('44387','20','get[1.3.6.1.2.1.47.1.1.1.1.13.149]','10551','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB.','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','34022f907faa4a3e8a02c5e5f5c8c43a','0','2','0'), ('44388','20','get[1.3.6.1.2.1.47.1.1.1.1.11.149]','10551','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9d42a842c591489bb984faad26cd7e63','0','2','0'), ('44389','20','get[1.3.6.1.2.1.1.6.0]','10551','System location','system.location','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB. The physical location of this node (e.g., telephone closet, the third floor). If the location is unknown, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5f109dce62c942f794fecaf7038d691e','0','2','0'), ('44390','20','get[1.3.6.1.2.1.1.5.0]','10551','System name','system.name','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB. The administratively-assigned name for this node. By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is a zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','31ff1ef55d69461bbc5b4416c7a040be','0','2','0'), ('44391','20','get[1.3.6.1.2.1.1.2.0]','10551','System object ID','system.objectid','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB. The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprise''s subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining "what kind of box" is being managed. For example, if the vendor "Flintstones, Inc." was assigned the subtree 1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its "Fred Router".','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a60cce9cf0464d6292d6b7934e9cfcd6','0','2','0'), ('44392','20','get[1.3.6.1.4.1.9.9.25.1.1.1.2.5]','10551','Operating system','system.sw.os','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CISCO-IMAGE-MIB','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e02a0a8de70547e4895b395b616919dd','0','2','0'), ('44393','20','get[1.3.6.1.6.3.10.2.1.3.0]','10551','Uptime (snmp)','system.uptime','1m','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMP-FRAMEWORK-MIB::snmpEngineTime. The number of seconds since the value of the `snmpEngineBoots` object has had a last change. When incrementing this object''s value would cause it to exceed its maximum, the `snmpEngineBoots` is incremented as if a re-initialization had occurred, and this object''s value consequently reverts to zero.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','83405503b84d4af292e6846ccbd8a877','0','2','0'), ('44394','5','','10551','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'1067','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','edb1d93d5fda47928dcb62223ada8b16','0','2','0'), ('44395','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.2]','10551','CPU discovery','cpu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'You must use CISCO-PROCESS-MIB and its object `cpmCPUTotal5minRev` from the table called `cpmCPUTotalTable`, and indexed with `cpmCPUTotalPhysicalIndex`. The table `cpmCPUTotalTable` allows CISCO-PROCESS-MIB to keep the CPU statistics for different physical entities in the router, such as different CPU chips, a group of CPUs, or CPUs in different modules/cards. In the case of a single CPU, the `cpmCPUTotalTable` has only one entry.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d1d6b8c10e83484e82e37b58c7004d9e','0','2','0'), ('44396','20','discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11]','10551','Entity serial numbers discovery','entity_sn.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The discovery of serial numbers of the entities from ENTITY-MIB.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b0c97bd2037f405ba2b183456d01973e','0','2','0'), ('44397','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.47.1.1.1.1.7]','10551','Fan status discovery','fan.status.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The discovery of metrics for the fan''s status from ENTITY-MIB and CISCO-ENTITY-FRU-CONTROL-MIB.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a323e6f090e043058e2e932ed2456cba','0','2','0'), ('44398','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.221.1.1.1.1.3]','10551','Memory discovery','memory.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The discovery of `ciscoMemoryPoolTable` - the table that contains monitoring entries of the memory pool. For more details see "How to Get Free and Largest Block of Contiguous Memory Using SNMP": http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2714f855584347329b2f175a85198f80','0','2','0'), ('44399','20','discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]','10551','Network interfaces discovery','net.if.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The discovery of interfaces from IF-MIB.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cd6bc93993e44b61aca57f0486e61756','0','2','0'), ('44400','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2]','10551','EtherLike discovery','net.if.duplex.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The discovery of interfaces from IF-MIB and EtherLike-MIB. The interfaces that have up (1) operational status are discovered.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','73133517383046b58c8039363a907fe4','0','2','0'), ('44401','20','discovery[{#SNMPVALUE},1.3.6.1.2.1.47.1.1.1.1.7]','10551','PSU discovery','psu.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The discovery of power supplies from ENTITY-MIB and CISCO-ENTITY-FRU-CONTROL-MIB.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8a6f70d8eaa94e1dbd45f199c231d770','0','2','0'), ('44402','20','discovery[{#SENSOR_TYPE},1.3.6.1.4.1.9.9.91.1.1.1.1.1,{#SENSOR_SCALE},1.3.6.1.4.1.9.9.91.1.1.1.1.2,{#SNMPVALUE},1.3.6.1.2.1.47.1.1.1.1.7]','10551','Temperature sensors discovery','temperature.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The discovery of temperature sensors from CISCO-ENTITY-SENSOR-MIB and ENTITY-MIB. The sensors that have celsius (8) `entSensorType` are discovered. The scale of gathered values is taken from the `entSensorScale` and applied in item preprocessing.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bb7d48018f8044ec9bb4fd20d6c52106','0','2','0'), ('44403','20','get[1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX}]','10551','#{#SNMPINDEX}: CPU utilization','system.cpu.util[{#SNMPINDEX}]','5m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-PROCESS-MIB The object name: `cpmCPUTotal5minRev` The MIB object `cpmCPUTotal5minRev` provides a more accurate view of the performance of the router over time than the MIB objects `cpmCPUTotal1minRev` and `cpmCPUTotal5secRev`. These MIB objects are not accurate because they look at the CPU with an interval of one minute and five seconds, respectively. These MIBs enable to monitor the trends and plan the capacity of your network. The recommended baseline rising threshold for the `cpmCPUTotal5minRev` is 90 percent. Depending on the platform, some routers that run at 90 percent, for example, 2500 series can exhibit performance degradation versus a high-end router, for example, the 7500 series, which can operate fine.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0196f6b4431b4823860b89c712b2e5a8','0','2','0'), ('44404','20','get[1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX}]','10551','{#ENT_NAME}: Hardware serial number','system.hw.serialnumber[{#SNMPINDEX}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB. The object name: `entPhysicalSerialNum`. The vendor-specific serial number string for the physical entity. The preferred value is the serial number string actually printed on the component itself (if present).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','873d648619bf45168d8008ea32596838','0','2','0'), ('44405','20','get[1.3.6.1.4.1.9.9.117.1.4.1.1.1.{#SNMPINDEX}]','10551','{#SNMPVALUE}: Fan operational status','sensor.fan.status[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'1060','','','0','','','','','2',NULL,'MIB: CISCO-ENTITY-FRU-CONTROL-MIB. The object name: `cefcFanTrayOperStatus`. The operational state of the fan or a fan tray. Possible values: - unknown (1) - unknown; - up (2) - powered on; - down (3) - powered down; - warning (4) - partial failure; needs replacement as soon as possible.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','16047f29242444f284e81f6b87a22c50','0','2','0'), ('44406','20','get[1.3.6.1.4.1.9.9.221.1.1.1.1.8.{#SNMPINDEX}]','10551','{#SNMPVALUE}: Free memory','vm.memory.free[{#SNMPINDEX}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-ENHANCED-MEMPOOL-MIB. The object name: `cempMemPoolFree`. It indicates the number of bytes from the memory pool that are currently unused on the physical entity.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','566a28e0151f4e54a8dd7fceae39ffab','0','2','0'), ('44407','20','get[1.3.6.1.4.1.9.9.221.1.1.1.1.7.{#SNMPINDEX}]','10551','{#SNMPVALUE}: Used memory','vm.memory.used[{#SNMPINDEX}]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-ENHANCED-MEMPOOL-MIB. The object name: `cempMemPoolUsed`. It indicates the number of bytes from the memory pool that are currently in use by applications on the physical entity.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e1d336ee79b6448ea9d6a28107314a42','0','2','0'), ('44408','15','','10551','{#SNMPVALUE}: Memory utilization','vm.memory.util[{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used[{#SNMPINDEX}])/(last(//vm.memory.free[{#SNMPINDEX}])+last(//vm.memory.used[{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'The memory utilization expressed in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a56f71ab5bc64aa8884dc540baefe91a','0','2','0'), ('44409','20','get[1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX}]','10551','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB. The number of inbound packets, which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be the necessity to free up the buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of the ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ad58c092ed604092a06ba518779c3294','0','2','0'), ('44410','20','get[1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX}]','10551','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB. For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of the ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cbf3ec76d241416caf812eccdf91ec1b','0','2','0'), ('44411','20','get[1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}]','10551','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB. The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of the ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7bce2682f482489c8c27aafc9ddcb205','0','2','0'), ('44412','20','get[1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX}]','10551','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB. The number of outbound packets, which were chosen to be discarded, even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of the ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4751c9b0380d465799b013906e404e14','0','2','0'), ('44413','20','get[1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX}]','10551','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB. For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of the ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','36185d5b8239434ba2c85706cd890148','0','2','0'), ('44414','20','get[1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}]','10551','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB. The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of the ifOutOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of the ifCounterDiscontinuityTime.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','669337baef364a46bc8ad34bd4c97494','0','2','0'), ('44415','20','get[1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}]','10551','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[{#SNMPINDEX}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB. An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of "n", then the speed of the interface is somewhere in the range from n-500,000 to n+499,999. For the interfaces, which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer, which has no concept of bandwidth, this object should be zero.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2d7507061f1e49debfbbd78e5e666a13','0','2','0'), ('44416','20','get[1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}]','10551','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'1064','','','0','','','','','2',NULL,'MIB: IF-MIB. The current operational state of the interface: - The testing (3) state indicates that no operational packet scan be passed. - If ifAdminStatus is down (2), then ifOperStatus should be down (2). - If ifAdminStatus is changed to up (1), then ifOperStatus should change to up (1), provided the interface is ready to transmit and receive network traffic. - It should change to dormant (5) if the interface is waiting for external actions, such as a serial line waiting for an incoming connection. - It should remain in the down (2) state if and only when there is a fault that prevents it from going to the up (1) state. - It should remain in the notPresent (6) state if the interface has missing components (typically, hardware).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','07cf5068d5584affa0b35aea5f63e17c','0','2','0'), ('44417','20','get[1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX}]','10551','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'1065','','','0','','','','','2',NULL,'MIB: IF-MIB. The type of an interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA) through updating the syntax of the IANAifType textual convention.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f2353404b957494683ade2d0c0a24e05','0','2','0'), ('44418','20','get[1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX}]','10551','Interface {#IFNAME}({#IFALIAS}): Duplex status','net.if.duplex[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'1063','','','0','','','','','2',NULL,'MIB: EtherLike-MIB. The object name: dot3StatsDuplexStatus. The current mode of operation of the MAC entity ''unknown'' indicates that the current duplex mode could not be determined. The management control of the duplex mode is accomplished through the MAU MIB. When the interface does not support autonegotiation, or when autonegotiation is not enabled, the duplex mode is controlled using ifMauDefaultType. When autonegotiation is supported and enabled, duplex mode is controlled using ifMauAutoNegAdvertisedBits. In either case, the currently operating duplex mode is reflected in both: in this object and in ifMauType. Note that this object provides redundant information with ifMauType. Normally, redundant objects are discouraged. However, in this instance, it allows the management application to determine the duplex status of an interface without having to know every possible value of ifMauType. This was felt to be sufficiently valuable to justify the redundancy. For the reference see: [IEEE 802.3 Std.], 30.3.1.1.32, aDuplexStatus.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','17792bed5be34b21a4c8a4069374d7f7','0','2','0'), ('44419','20','get[1.3.6.1.4.1.9.9.117.1.1.2.1.2.{#SNMPINDEX}]','10551','{#SNMPVALUE}: Power supply status','sensor.psu.status[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'1061','','','0','','','','','2',NULL,'MIB: CISCO-ENTITY-FRU-CONTROL-MIB. The object name: cefcFRUPowerOperStatus. The Operational field-replaceable unit (FRU) Status types. The valid values are: - offEnvOther (1): FRU is powered off because of a problem not listed below; - on (2): FRU is powered on; - offAdmin (3): administratively off; - offDenied (4): FRU is powered off because available system power is insufficient; - offEnvPower (5): FRU is powered off because of a power problem in the FRU. For example, the FRU''s power translation (DC-DC converter) or distribution failed; - offEnvTemp (6): FRU is powered off because of temperature problem; - offEnvFan (7): FRU is powered off because of fan problems; - failed (8): FRU is in failed state; - onButFanFail (9): FRU is on but fan has failed; - offCooling (10): FRU is powered off because of the system''s insufficient cooling capacity; - offConnectorRating (11): FRU is powered off because of the system''s connector rating exceeded; - onButInlinePowerFail (12): The FRU is on but no inline power is being delivered as the data/inline power component of the FRU has failed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8a083945d7e244099095b022169de86c','0','2','0'), ('44420','20','get[1.3.6.1.4.1.9.9.91.1.1.1.1.5.{#SNMPINDEX}]','10551','{#SNMPVALUE}: Temperature sensor status','sensor.temp.status[{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'1062','','','0','','','','','2',NULL,'MIB: CISCO-ENTITY-SENSOR-MIB. The object name: entSensorStatus. This variable indicates the present operational status of the sensor. Possible values: - ok (1): means the agent can read the sensor value; - unavailable (2): means that the agent presently can not report the sensor value; - nonoperational (3) means that the agent believes the sensor is broken. The sensor could have a hard failure (e.g., disconnected wire), or a soft failure (e.g., out-of-range, jittery, or wildly fluctuating readings).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d4e13b5e26164a2ca240bfb93fdd9b77','0','2','0'), ('44421','20','get[1.3.6.1.4.1.9.9.91.1.1.1.1.4.{#SNMPINDEX}]','10551','{#SNMPVALUE}: Temperature','sensor.temp.value[{#SNMPINDEX}]','1m','31d','365d','0','0','','!°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-ENTITY-SENSOR-MIB. The object name: entSensorValue. This variable reports the most recent measurement seen by the sensor.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','87bb149a7c464318be942011b678a704','0','2','0'), ('44427','0','','10076','Get filesystems','vfs.fs.get','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The `vfs.fs.get` key acquires raw information set about the filesystems. Later to be extracted by preprocessing in dependent items.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','95e14453e9ee4b6ea036fab09bf2b194','0','2','0'), ('44430','0','','10075','Get filesystems','vfs.fs.get','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The `vfs.fs.get` key acquires raw information set about the filesystems. Later to be extracted by preprocessing in dependent items.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9695b40b38f74bb3bb5d127af1ba13ce','0','2','0'), ('44433','0','','10077','Get filesystems','vfs.fs.get','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The `vfs.fs.get` key acquires raw information set about the filesystems. Later to be extracted by preprocessing in dependent items.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','05adecd1fb3e4c85b826dfdd601fa444','0','2','0'), ('44436','0','','10001','Get filesystems','vfs.fs.get','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The `vfs.fs.get` key acquires raw information set about the filesystems. Later to be extracted by preprocessing in dependent items.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','868440292732425c8f9df52882822c82','0','2','0'), ('44442','7','','10343','Get filesystems','vfs.fs.get','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The `vfs.fs.get` key acquires raw information set about the filesystems. Later to be extracted by preprocessing in dependent items.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6c1de983421846c9acef8f465ff2f196','0','2','0'), ('44445','0','','10079','Get filesystems','vfs.fs.get','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The `vfs.fs.get` key acquires raw information set about the filesystems. Later to be extracted by preprocessing in dependent items.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bf99f88e47a64ecab98de4f3cfe6592f','0','2','0'), ('44447','0','','10074','Get filesystems','vfs.fs.get','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The `vfs.fs.get` key acquires raw information set about the filesystems. Later to be extracted by preprocessing in dependent items.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b5de01cf628b48cb899a8ad2a02a3b62','0','2','0'), ('44450','0','','10078','Get filesystems','vfs.fs.get','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The `vfs.fs.get` key acquires raw information set about the filesystems. Later to be extracted by preprocessing in dependent items.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','897f991e6f8f433bbd52a958f4f54c08','0','2','0'), ('44453','0','','10081','Get filesystems','vfs.fs.get','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The `vfs.fs.get` key acquires raw information set about the filesystems. Later to be extracted by preprocessing in dependent items.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f59d6794a6b94e93aced78a688507677','0','2','0'), ('44455','7','','10351','Get filesystems','vfs.fs.get','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The `vfs.fs.get` key acquires raw information set about the filesystems. Later to be extracted by preprocessing in dependent items.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','60a17a94a9ad4e4192547d0a6a1e1d25','0','2','0'), ('44457','19','','10552','Get Control-M servers','controlm.servers','10m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Gets a list of servers.','0','30d','0','',NULL,'','{$API.URI.ENDPOINT}/config/servers','','','200','1','0','','x-api-key: {$API.TOKEN}','0','0','0','0','0','0','0','7d9ed576aeb045798b78414c89f3e597','0','2','0'), ('44458','19','','10552','Get SLA services','controlm.services','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Gets all the SLA active services.','0','30d','0','',NULL,'','{$API.URI.ENDPOINT}/run/services/sla','','','200','1','0','','x-api-key: {$API.TOKEN}','0','0','0','0','0','0','0','2bd2c27b8dc74656a00f6d2006399388','0','2','0'), ('44459','19','','10553','Get agents','controlm.agents','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Gets agents for the server.','0','30d','0','',NULL,'','{$API.URI.ENDPOINT}/config/server/{$SERVER.NAME}/agents','','','200','1','0','','x-api-key: {$API.TOKEN}','0','0','0','0','0','0','0','94e45567531543119d6e36b4463684c7','0','2','0'), ('44460','19','','10553','Get jobs','controlm.jobs','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Gets the status of jobs.','0','30d','0','',NULL,'','{$API.URI.ENDPOINT}/run/jobs/status','[{"ctm":"{$SERVER.NAME}"}]','','200','1','0','','x-api-key: {$API.TOKEN}','0','0','0','0','0','0','0','1f60be3e3fe543d697047ffcad7b0a7f','0','2','0'), ('44461','19','','10553','Get Control-M server stats','controlm.server.stats','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Gets the statistics of the server.','0','30d','0','',NULL,'','{$API.URI.ENDPOINT}/config/servers','','','200','1','0','','x-api-key: {$API.TOKEN}','0','0','0','0','0','0','0','67ca527f452b43aab2e3171e49f96194','0','2','0'), ('44494','21','','10555','Get metrics','veeam.get.metrics','5m','0','0','0','4','','','','',NULL,NULL,E'var Veeam = { params: {}, token: '''', setParams: function (params) { [''api_endpoint'', ''user'', ''password'', ''created_after''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); Veeam.params = params; if (typeof Veeam.params.api_endpoint === ''string'' && !Veeam.params.api_endpoint.endsWith(''/'')) { Veeam.params.api_endpoint += ''/''; } if (Veeam.params.created_after >= 365 || Veeam.params.created_after <= 1) { throw ''Incorrect "created_after" parameter given: '' + Veeam.params.created_after + ''\\nMust be between 1 and 365 days.''; } }, login: function () { var resp, login = new HttpRequest(); if (typeof Veeam.params.http_proxy !== ''undefined'' && Veeam.params.http_proxy !== '''') { login.setProxy(Veeam.params.http_proxy); } login.addHeader(''Content-Type: application/x-www-form-urlencoded''); login.addHeader(''x-api-version: 1.0-rev2''); resp = login.post(Veeam.params.api_endpoint + ''api/oauth2/token'', ''grant_type=password&username='' + encodeURIComponent(Veeam.params.user) + ''&password='' + encodeURIComponent(Veeam.params.password)); if (login.getStatus() !== 200 || resp === null) { throw ''Login failed with status code '' + login.getStatus() + '': '' + resp; } try { resp = JSON.parse(resp); } catch (error) { throw ''Failed to parse authentication token for the logon session.''; } if (!resp.hasOwnProperty(''access_token'')) { throw ''Auth response does not contain access token.''; } Veeam.token = resp[''access_token'']; }, request: function (url) { var response, request = new HttpRequest(); if (typeof Veeam.params.http_proxy !== ''undefined'' && Veeam.params.http_proxy !== '''') { request.setProxy(Veeam.params.http_proxy); } if (Veeam.token) { request.addHeader(''Authorization: Bearer '' + Veeam.token); request.addHeader(''x-api-version: 1.0-rev2''); response = request.get(url); } if (request.getStatus() !== 200 || response === null) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { return JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API.''; } }, getMetricsData: function () { var data = {}; ms = 86400000; start_date = new Date((new Date().getTime()) - ms * Veeam.params.created_after).toISOString().replace(/\\.\\d+/, ''''); endpoints = { ''proxies'': ''api/v1/backupInfrastructure/proxies'', ''managedServers'': ''api/v1/backupInfrastructure/managedServers'', ''repositories_states'': ''api/v1/backupInfrastructure/repositories/states'', ''jobs_states'': ''api/v1/jobs/states'', ''sessions'': ''api/v1/sessions?createdAfterFilter='' + encodeURIComponent(start_date) }; Object.keys(endpoints).forEach(function (key) { data[key] = Veeam.request(Veeam.params.api_endpoint + endpoints[key]); }); return data; } }; try { Veeam.setParams(JSON.parse(value)); Veeam.login(); return JSON.stringify(Veeam.getMetricsData()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ VEEAM ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'The result of API requests is expressed in the JSON.','0','30d','0','',NULL,'{$VEEAM.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','f8ef587e6d204e7da6e27e56b1131ca4','0','2','0'), ('44516','21','','10556','Get metrics','veeam.manager.get.metrics','5m','0','0','0','4','','','','',NULL,NULL,'var Veeam = { params: {}, setParams: function (params) { [''api_endpoint'', ''user'', ''password''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); Veeam.params = params; if (typeof Veeam.params.api_endpoint === ''string'' && !Veeam.params.api_endpoint.endsWith(''/'')) { Veeam.params.api_endpoint += ''/''; } }, request: function (url) { var response, request = new HttpRequest(); if (typeof Veeam.params.http_proxy !== ''undefined'' && Veeam.params.http_proxy !== '''') { request.setProxy(Veeam.params.http_proxy); } request.addHeader(''Accept: application/json''); request.addHeader(''Authorization: Basic '' + btoa(Veeam.params.user + '':'' + Veeam.params.password)); request.post(Veeam.params.api_endpoint + ''api/sessionMngr''); response = request.get(url); if (request.getStatus() !== 200 || response === null) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { return JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API.''; } }, getMetricsData: function() { var data = {}; endpoints = { ''backupFiles'': ''api/backupFiles'', }; reports_summary = Veeam.request(Veeam.params.api_endpoint + ''api/reports/summary'') if (typeof reports_summary !== ''object'' || reports_summary.hasOwnProperty(''Links'') === false) throw ''Failed response parse. Check debug log for more information.''; reports_summary.Links.forEach(function (field) { data[field.Name] = Veeam.request(field.Href) }) Object.keys(endpoints).forEach(function (key) { data[key] = Veeam.request(Veeam.params.api_endpoint + endpoints[key]); if (typeof data[key] !== ''object'' || data[key].hasOwnProperty(''Refs'') === false) throw ''Failed response parse. Check debug log for more information.''; data[key].Refs.forEach(function (field) { data[field.Name] = Veeam.request(field.Href) }) }) return data; } }; try { Veeam.setParams(JSON.parse(value)); return JSON.stringify(Veeam.getMetricsData()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ VEEAM MANAGER ] ERROR: '' + error); return JSON.stringify({''error'': error}); }','','0','','','','','0',NULL,'The result of API requests is expressed in the JSON.','0','30d','0','',NULL,'{$VEEAM.MANAGER.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','525a61ff4fb747efab6ac58d1ac8b7c4','0','2','0'), ('44530','21','','10557','Get data','azure.db.mssql.data.get','1m','0','0','0','4','','','','',NULL,NULL,E'var AzureDB = { params: {}, token: null, setParams: function (params) { [''app_id'', ''password'', ''tenant_id'', ''subscription_id'', ''resource_id''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); AzureDB.params = params; }, request: function (url, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var response, request = new HttpRequest(); if (typeof AzureDB.params.proxy !== ''undefined'' && AzureDB.params.proxy !== '''') { request.setProxy(AzureDB.params.proxy); } if (AzureDB.token) { request.addHeader(''Accept: application/json''); request.addHeader(''Authorization: Bearer '' + AzureDB.token); } Zabbix.log(4, ''[ Azure ] Sending request: '' + url); if (data !== '''') { request.addHeader(''Content-Type: application/x-www-form-urlencoded''); response = request.post(url, data); } else { response = request.get(url); } Zabbix.log(4, ''[ Azure ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200 || response === null) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { return JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API.''; } } }; var metrics = [ ''cpu_percent'', ''physical_data_read_percent'', ''log_write_percent'', ''storage'', ''connection_successful'', ''connection_failed'', ''blocked_by_firewall'', ''deadlock'', ''storage_percent'', ''xtp_storage_percent'', ''workers_percent'', ''sessions_percent'', ''sessions_count'', ''cpu_limit'', ''cpu_used'', ''sqlserver_process_core_percent'', ''sqlserver_process_memory_percent'', ''tempdb_data_size'', ''tempdb_log_size'', ''tempdb_log_used_percent'', ''allocated_data_storage'' ], day_metrics = ''full_backup_size_bytes,diff_backup_size_bytes,log_backup_size_bytes'', prepared_metrics = [], data = {}; data[''errors''] = {}; data[''metrics''] = {}; try { AzureDB.setParams(JSON.parse(value)); try { result = AzureDB.request( ''https://login.microsoftonline.com/'' + encodeURIComponent(AzureDB.params.tenant_id) + ''/oauth2/token'', ''grant_type=client_credentials&resource='' + encodeURIComponent(''https://management.azure.com/'') + ''&client_id='' + encodeURIComponent(AzureDB.params.app_id) + ''&client_secret='' + encodeURIComponent(AzureDB.params.password) ); if (''access_token'' in result) { AzureDB.token = result[''access_token'']; } else { throw ''Auth response does not contain access token.''; } } catch (error) { data.errors.auth = error.toString(); } if (!(''auth'' in data.errors)) { try { health = AzureDB.request(''https://management.azure.com'' + AzureDB.params.resource_id + ''/providers/Microsoft.ResourceHealth/availabilityStatuses?api-version=2020-05-01''); if (''value'' in health && Array.isArray(health.value) && health.value.length > 0 && ''properties'' in health.value[0] && typeof health.value[0].properties === ''object'') { data.health = health.value[0].properties; } } catch (error) { data.errors.health = error.toString(); } for (var i = 0; i < metrics.length; i += 20) { var chunk = metrics.slice(i, i + 20); prepared_metrics.push( chunk.map(function (element) { return encodeURIComponent(element); }).join('','') ); } start_date = new Date((new Date().getTime()) - 300000).toISOString().replace(/\\.\\d+/, ''''); end_date = new Date().toISOString().replace(/\\.\\d+/, ''''); for (var j in prepared_metrics) { try { metrics_data = AzureDB.request(''https://management.azure.com'' + AzureDB.params.resource_id + ''/providers/Microsoft.Insights/metrics?metricnames='' + prepared_metrics[j] + ''×pan='' + encodeURIComponent(start_date) + ''/'' + encodeURIComponent(end_date) + ''&api-version=2021-05-01''); if (''value'' in metrics_data && Array.isArray(metrics_data.value) && metrics_data.value.length > 0) { for (k in metrics_data.value) { if (''name'' in metrics_data.value[k] && typeof metrics_data.value[k].name === ''object'' && ''value'' in metrics_data.value[k].name && typeof metrics_data.value[k].name.value === ''string'' && ''timeseries'' in metrics_data.value[k] && Array.isArray(metrics_data.value[k].timeseries) && metrics_data.value[k].timeseries.length > 0 && ''data'' in metrics_data.value[k].timeseries[0] && Array.isArray(metrics_data.value[k].timeseries[0].data) && metrics_data.value[k].timeseries[0].data.length > 0) { data.metrics[metrics_data.value[k].name.value.replace(/(\\s|\\/)+/g, '''')] = metrics_data.value[k].timeseries[0].data[metrics_data.value[k].timeseries[0].data.length - 1]; } } } } catch (error) { data.errors[prepared_metrics[j]] = error.toString(); } } start_date = new Date((new Date().getTime()) - 86400000).toISOString().replace(/\\.\\d+/, ''''); end_date = new Date().toISOString().replace(/\\.\\d+/, ''''); try { metrics_data = AzureDB.request(''https://management.azure.com'' + AzureDB.params.resource_id + ''/providers/Microsoft.Insights/metrics?metricnames='' + day_metrics + ''×pan='' + encodeURIComponent(start_date) + ''/'' + encodeURIComponent(end_date) + ''&api-version=2021-05-01''); if (''value'' in metrics_data && Array.isArray(metrics_data.value) && metrics_data.value.length > 0) { for (l in metrics_data.value) { if (''name'' in metrics_data.value[l] && typeof metrics_data.value[l].name === ''object'' && ''value'' in metrics_data.value[l].name && typeof metrics_data.value[l].name.value === ''string'' && ''timeseries'' in metrics_data.value[l] && Array.isArray(metrics_data.value[l].timeseries) && metrics_data.value[l].timeseries.length > 0 && ''data'' in metrics_data.value[l].timeseries[0] && Array.isArray(metrics_data.value[l].timeseries[0].data) && metrics_data.value[l].timeseries[0].data.length > 0) { data.metrics[metrics_data.value[l].name.value.replace(/(\\s|\\/)+/g, '''')] = metrics_data.value[l].timeseries[0].data[metrics_data.value[l].timeseries[0].data.length - 1]; } } } } catch (error) { data.errors[day_metrics] = error.toString(); } } } catch (error) { data.errors.params = error.toString(); } if (Object.keys(data.errors).length !== 0) { errors = ''Failed to receive data:''; for (var error in data.errors) { errors += ''\\n'' + error + '' : '' + data.errors[error]; } data.errors = errors; } else { data.errors = ''''; } return JSON.stringify(data);','','0','','','','','0',NULL,'The result of API requests is expressed in the JSON.','0','30d','0','',NULL,'{$AZURE.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','741cc1ec6a824e429f06b3d12a8a7082','0','2','0'), ('44531','21','','10558','Get data','azure.db.mssql.data.get','1m','0','0','0','4','','','','',NULL,NULL,E'var AzureDB = { params: {}, token: null, setParams: function (params) { [''app_id'', ''password'', ''tenant_id'', ''subscription_id'', ''resource_id''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); AzureDB.params = params; }, request: function (url, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var response, request = new HttpRequest(); if (typeof AzureDB.params.proxy !== ''undefined'' && AzureDB.params.proxy !== '''') { request.setProxy(AzureDB.params.proxy); } if (AzureDB.token) { request.addHeader(''Accept: application/json''); request.addHeader(''Authorization: Bearer '' + AzureDB.token); } Zabbix.log(4, ''[ Azure ] Sending request: '' + url); if (data !== '''') { request.addHeader(''Content-Type: application/x-www-form-urlencoded''); response = request.post(url, data); } else { response = request.get(url); } Zabbix.log(4, ''[ Azure ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200 || response === null) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { return JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API.''; } } }; var metrics = [ ''cpu_percent'', ''physical_data_read_percent'', ''log_write_percent'', ''storage'', ''connection_successful'', ''connection_failed'', ''blocked_by_firewall'', ''deadlock'', ''storage_percent'', ''xtp_storage_percent'', ''workers_percent'', ''sessions_percent'', ''cpu_limit'', ''cpu_used'', ''sqlserver_process_core_percent'', ''sqlserver_process_memory_percent'', ''tempdb_data_size'', ''tempdb_log_size'', ''tempdb_log_used_percent'', ''app_cpu_billed'', ''app_cpu_percent'', ''app_memory_percent'', ''allocated_data_storage'' ], prepared_metrics = [], data = {}; data[''errors''] = {}; data[''metrics''] = {}; try { AzureDB.setParams(JSON.parse(value)); try { result = AzureDB.request( ''https://login.microsoftonline.com/'' + encodeURIComponent(AzureDB.params.tenant_id) + ''/oauth2/token'', ''grant_type=client_credentials&resource='' + encodeURIComponent(''https://management.azure.com/'') + ''&client_id='' + encodeURIComponent(AzureDB.params.app_id) + ''&client_secret='' + encodeURIComponent(AzureDB.params.password) ); if (''access_token'' in result) { AzureDB.token = result[''access_token'']; } else { throw ''Auth response does not contain access token.''; } } catch (error) { data.errors.auth = error.toString(); } if (!(''auth'' in data.errors)) { try { health = AzureDB.request(''https://management.azure.com'' + AzureDB.params.resource_id + ''/providers/Microsoft.ResourceHealth/availabilityStatuses?api-version=2020-05-01''); if (''value'' in health && Array.isArray(health.value) && health.value.length > 0 && ''properties'' in health.value[0] && typeof health.value[0].properties === ''object'') { data.health = health.value[0].properties; } } catch (error) { data.errors.health = error.toString(); } for (var i = 0; i < metrics.length; i += 20) { var chunk = metrics.slice(i, i + 20); prepared_metrics.push( chunk.map(function (element) { return encodeURIComponent(element); }).join('','') ); } start_date = new Date((new Date().getTime()) - 300000).toISOString().replace(/\\.\\d+/, ''''); end_date = new Date().toISOString().replace(/\\.\\d+/, ''''); for (var j in prepared_metrics) { try { metrics_data = AzureDB.request(''https://management.azure.com'' + AzureDB.params.resource_id + ''/providers/Microsoft.Insights/metrics?metricnames='' + prepared_metrics[j] + ''×pan='' + encodeURIComponent(start_date) + ''/'' + encodeURIComponent(end_date) + ''&api-version=2021-05-01''); if (''value'' in metrics_data && Array.isArray(metrics_data.value) && metrics_data.value.length > 0) { for (k in metrics_data.value) { if (''name'' in metrics_data.value[k] && typeof metrics_data.value[k].name === ''object'' && ''value'' in metrics_data.value[k].name && typeof metrics_data.value[k].name.value === ''string'' && ''timeseries'' in metrics_data.value[k] && Array.isArray(metrics_data.value[k].timeseries) && metrics_data.value[k].timeseries.length > 0 && ''data'' in metrics_data.value[k].timeseries[0] && Array.isArray(metrics_data.value[k].timeseries[0].data) && metrics_data.value[k].timeseries[0].data.length > 0) { data.metrics[metrics_data.value[k].name.value.replace(/(\\s|\\/)+/g, '''')] = metrics_data.value[k].timeseries[0].data[metrics_data.value[k].timeseries[0].data.length - 1]; } } } } catch (error) { data.errors[prepared_metrics[j]] = error.toString(); } } } } catch (error) { data.errors.params = error.toString(); } if (Object.keys(data.errors).length !== 0) { errors = ''Failed to receive data:''; for (var error in data.errors) { errors += ''\\n'' + error + '' : '' + data.errors[error]; } data.errors = errors; } else { data.errors = ''''; } return JSON.stringify(data);','','0','','','','','0',NULL,'The result of API requests is expressed in the JSON.','0','30d','0','',NULL,'{$AZURE.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','e1c668773b974deeaf64c0d51d1cb02d','0','2','0'), ('44586','0','','10335','Archivelog ''{#DEST_NAME}'': Get archive log info','oracle.archive.info["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}","{#DEST_NAME}"]','5m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Gets the archive log statistics.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1ad93880e4314d68b9e1aa4e00f03b6e','0','2','0'), ('44587','0','','10335','Database ''{#DBNAME}'': Get CDB and No-CDB info','oracle.cdb.info["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}","{#DBNAME}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Gets the information about the CDB and non-CDB database on an instance.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1bad65e85d8b482d9cd83b1d202f8d8c','0','2','0'), ('44588','0','','10335','ASM ''{#DGNAME}'': Get ASM stats','oracle.diskgroups.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}","{#DGNAME}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Gets the ASM disk group statistics.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cb703b07fc514ce5aedc561896bcd53f','0','2','0'), ('44589','0','','10335','Database ''{#DBNAME}'': Get PDB info','oracle.pdb.info["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}","{#CON_ID}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Gets the information about the PDB database on an instance.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ca4452418d2641bd87fa75e946c2bf98','0','2','0'), ('44590','0','','10335','''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Get tablespaces stats','oracle.ts.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}","{#TABLESPACE}","{#CONTENTS}","{#CON_ID}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Gets the statistics of the tablespace.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','97ac4acedcde465b8d004a8ac476dd99','0','2','0'), ('44609','11','','10328','Archivelog ''{#DEST_NAME}'': Get archive log info','db.odbc.get[get_archivelog_{#DEST_NAME}_stat,,"Driver={$ORACLE.DRIVER};DBQ=//{$ORACLE.HOST}:{$ORACLE.PORT}/{$ORACLE.SERVICE};"]','5m','0','0','0','4','','','','',NULL,NULL,'SELECT d.dest_name, DECODE (d.status, ''VALID'',3, ''DEFERRED'', 2, ''ERROR'', 1, 0) AS status, d.log_sequence, d.error FROM v$archive_dest d , v$database db WHERE d.dest_name = ''{#DEST_NAME}'' AND d.status != ''INACTIVE'' AND db.log_mode = ''ARCHIVELOG'';','','0','{$ORACLE.USER}','{$ORACLE.PASSWORD}','','','2',NULL,'Gets the archive log statistics.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1a6e01f90dca47459975632c14ce5a39','0','2','0'), ('44610','11','','10328','ASM ''{#DGNAME}'': Get ASM stats','db.odbc.get[get_asm_{#DGNAME}_stat,,"Driver={$ORACLE.DRIVER};DBQ=//{$ORACLE.HOST}:{$ORACLE.PORT}/{$ORACLE.SERVICE};"]','1m','0','0','0','4','','','','',NULL,NULL,'SELECT name AS dgname, ROUND(total_mb / DECODE(TYPE, ''NORMAL'', 2, ''HIGH'', 3, ''EXTERN'', 1)*1024*1024) AS size_byte, ROUND(usable_file_mb*1024*1024 ) AS free_size_byte, ROUND(100-(usable_file_mb /(total_mb / DECODE(TYPE, ''NORMAL'', 2, ''HIGH'', 3, ''EXTERN'', 1)))* 100, 2) AS used_percent FROM v$asm_diskgroup_stat WHERE name = ''{#DGNAME}'';','','0','{$ORACLE.USER}','{$ORACLE.PASSWORD}','','','2',NULL,'Gets the ASM disk group statistics.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','63fad55a2ced487aa30017b33bf1692e','0','2','0'), ('44611','11','','10328','Database ''{#DBNAME}'': Get CDB and No-CDB info','db.odbc.get[get_cdb_{#DBNAME}_info,,"Driver={$ORACLE.DRIVER};DBQ=//{$ORACLE.HOST}:{$ORACLE.PORT}/{$ORACLE.SERVICE};"]','1m','0','0','0','4','','','','',NULL,NULL,'SELECT name as DBNAME, DECODE(open_mode, ''MOUNTED'', 1, ''READ ONLY'', 2, ''READ WRITE'', 3, ''READ ONLY WITH APPLY'', 4, ''MIGRATE'', 5, 0) AS open_mode, DECODE(database_role, ''SNAPSHOT STANDBY'', 1, ''LOGICAL STANDBY'', 2, ''PHYSICAL STANDBY'', 3, ''PRIMARY'', 4, ''FAR SYNC'', 5, 0) AS ROLE, DECODE(force_logging, ''YES'',1,''NO'',0,0) AS force_logging, DECODE(log_mode, ''MANUAL'',2 ,''ARCHIVELOG'',1,''NOARCHIVELOG'',0,0) AS log_mode FROM v$database WHERE name = ''{#DBNAME}'';','','0','{$ORACLE.USER}','{$ORACLE.PASSWORD}','','','2',NULL,'Gets the information about the CDB and non-CDB database on an instance.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5de7c786988d49d0b50f28d2d622db62','0','2','0'), ('44612','11','','10328','Database ''{#DBNAME}'': Get PDB info','db.odbc.get[get_pdb_{#CON_ID}_info,,"Driver={$ORACLE.DRIVER};DBQ=//{$ORACLE.HOST}:{$ORACLE.PORT}/{$ORACLE.SERVICE};"]','1m','0','0','0','4','','','','',NULL,NULL,'SELECT name as DBNAME, DECODE(open_mode, ''MOUNTED'', 1, ''READ ONLY'', 2, ''READ WRITE'', 3, ''READ ONLY WITH APPLY'', 4, ''MIGRATE'', 5, 0) AS open_mode FROM v$pdbs WHERE CON_ID = ''{#CON_ID}'';','','0','{$ORACLE.USER}','{$ORACLE.PASSWORD}','','','2',NULL,'Gets the information about the PDB database on an instance.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cedcebd0b7ce474c9681022fcc75df1c','0','2','0'), ('44613','11','','10328','''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Get tablespaces stats','db.odbc.get[get_{#CON_ID}_tablespace_{#TABLESPACE}_stats,,"Driver={$ORACLE.DRIVER};DBQ=//{$ORACLE.HOST}:{$ORACLE.PORT}/{$ORACLE.SERVICE};"]','1m','0','0','0','4','','','','',NULL,NULL,'SELECT df.CON_NAME, df.TABLESPACE_NAME AS TABLESPACE, df.CONTENTS AS TYPE, NVL(SUM(df.BYTES), 0) AS FILE_BYTES, NVL(SUM(df.MAX_BYTES), 0) AS MAX_BYTES, NVL(SUM(f.FREE), 0) AS FREE_BYTES, NVL(SUM(df.BYTES) - SUM(f.FREE), 0) AS USED_BYTES, ROUND(CASE SUM(df.MAX_BYTES) WHEN 0 THEN 0 ELSE (SUM(df.BYTES) / SUM(df.MAX_BYTES) * 100) END, 2) AS USED_PCT_MAX, ROUND(CASE SUM(df.BYTES) WHEN 0 THEN 0 ELSE (NVL(SUM(df.BYTES) - SUM(f.FREE), 0)) / SUM(df.BYTES) * 100 END, 2) AS USED_FILE_PCT, ROUND(CASE SUM(df.MAX_BYTES) WHEN 0 THEN 0 ELSE NVL(SUM(df.BYTES) - SUM(f.FREE), 0) / SUM(df.MAX_BYTES) * 100 END, 2) AS USED_FROM_MAX_PCT, CASE df.STATUS WHEN ''ONLINE'' THEN 1 WHEN ''OFFLINE'' THEN 2 WHEN ''READ ONLY'' THEN 3 ELSE 0 END AS STATUS FROM (SELECT ct.CON$NAME AS CON_NAME, cdf.FILE_ID, ct.CONTENTS, ct.STATUS, cdf.FILE_NAME, cdf.TABLESPACE_NAME, TRUNC(cdf.BYTES) AS BYTES, TRUNC(GREATEST(cdf.BYTES, cdf.MAXBYTES)) AS MAX_BYTES FROM CDB_DATA_FILES cdf, CDB_TABLESPACES ct WHERE cdf.TABLESPACE_NAME = ct.TABLESPACE_NAME AND cdf.CON_ID = ct.CON_ID AND (ct.CON_ID = ''{#CON_ID}'' or (ct.CON$NAME is null and ct.CON_ID = 0)) AND cdf.TABLESPACE_NAME = ''{#TABLESPACE}'' AND ct.CONTENTS = ''{#CONTENTS}'') df, (SELECT TRUNC(SUM(BYTES)) AS FREE, FILE_ID FROM CDB_FREE_SPACE GROUP BY FILE_ID) f WHERE df.FILE_ID = f.FILE_ID (+) GROUP BY df.CON_NAME, df.TABLESPACE_NAME, df.CONTENTS, df.STATUS UNION ALL SELECT Y.CON_NAME, Y.NAME AS TABLESPACE, Y.CONTENTS AS TYPE, NVL(SUM(Y.BYTES), 0) AS FILE_BYTES, NVL(SUM(Y.MAX_BYTES), 0) AS MAX_BYTES, NVL(MAX(NVL(Y.FREE_BYTES, 0)), 0) AS FREE_BYTES, NVL(SUM(Y.BYTES) - MAX(Y.FREE_BYTES), 0) AS USED_BYTES, ROUND(CASE SUM(Y.MAX_BYTES) WHEN 0 THEN 0 ELSE (SUM(Y.BYTES) / SUM(Y.MAX_BYTES) * 100) END, 2) AS USED_PCT_MAX, ROUND(CASE SUM(Y.BYTES) WHEN 0 THEN 0 ELSE (NVL(SUM(Y.BYTES) - MAX(Y.FREE_BYTES), 0)) / SUM(Y.BYTES) * 100 END, 2) AS USED_FILE_PCT, ROUND(CASE SUM(Y.MAX_BYTES) WHEN 0 THEN 0 ELSE (NVL(SUM(Y.BYTES) - MAX(Y.FREE_BYTES), 0)) / SUM(Y.MAX_BYTES) * 100 END, 2) AS USED_FROM_MAX_PCT, CASE Y.STATUS WHEN ''ONLINE'' THEN 1 WHEN ''OFFLINE'' THEN 2 WHEN ''READ ONLY'' THEN 3 ELSE 0 END AS STATUS FROM (SELECT ct.CON$NAME AS CON_NAME, ctf.TABLESPACE_NAME AS NAME, ct.CONTENTS, ctf.STATUS AS STATUS, ctf.BYTES AS BYTES, (SELECT ((f.TOTAL_BLOCKS - s.TOT_USED_BLOCKS) * vp.VALUE) FROM (SELECT CON_ID, TABLESPACE_NAME, SUM(USED_BLOCKS) TOT_USED_BLOCKS FROM V$SORT_SEGMENT WHERE TABLESPACE_NAME != ''DUMMY'' GROUP BY CON_ID, TABLESPACE_NAME) s, (SELECT CON_ID, TABLESPACE_NAME, SUM(BLOCKS) TOTAL_BLOCKS FROM CDB_TEMP_FILES WHERE TABLESPACE_NAME != ''DUMMY'' GROUP BY CON_ID, TABLESPACE_NAME) f, (SELECT VALUE FROM V$PARAMETER WHERE NAME = ''db_block_size'') vp WHERE f.TABLESPACE_NAME = s.TABLESPACE_NAME AND f.TABLESPACE_NAME = ctf.TABLESPACE_NAME AND f.CON_ID = s.CON_ID AND f.CON_ID = ct.CON_ID) AS FREE_BYTES, CASE WHEN ctf.MAXBYTES = 0 THEN ctf.BYTES ELSE ctf.MAXBYTES END AS MAX_BYTES FROM CDB_TEMP_FILES ctf, CDB_TABLESPACES ct WHERE ctf.TABLESPACE_NAME = ct.TABLESPACE_NAME AND ctf.CON_ID = ct.CON_ID AND (ct.CON_ID = ''{#CON_ID}'' or (ct.CON$NAME is null and ct.CON_ID = 0)) AND ctf.TABLESPACE_NAME = ''{#TABLESPACE}'' AND ct.CONTENTS = ''{#CONTENTS}'') Y GROUP BY Y.CON_NAME, Y.NAME, Y.CONTENTS, Y.STATUS;','','0','{$ORACLE.USER}','{$ORACLE.PASSWORD}','','','2',NULL,'Gets the statistics of the tablespace.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','972be2e777e44c539d0ddd7918b79e88','0','2','0'), ('44634','0','','10081','Operating system','system.sw.os','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c86dd0a8dbba468696cc09a9f9575769','0','2','0'), ('44635','7','','10351','Operating system','system.sw.os','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5159e7263d7a42e499380b70e9d6490a','0','2','0'), ('44642','0','','10560','Get process summary','proc.get[,,,summary]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The summary of data metrics for all processes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','803390429cf949d3b8439dd5dd71c706','0','2','0'), ('44653','0','','10561','Host name of Zabbix agent running','agent.hostname','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f46c6142cf434df1b6abe9334bf6c84c','0','2','0'), ('44654','0','','10561','Zabbix agent ping','agent.ping','1m','31d','365d','0','3','','','','',NULL,'1077','','','0','','','','','0',NULL,'The agent always returns "1" for this item. May be used in combination with `nodata()` for the availability check.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','37a952edc12f47d6ac6f3ca04eb41326','0','2','0'), ('44655','0','','10561','Version of Zabbix agent running','agent.version','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3a6af03a083b4366bd1d4c6ccf06ca88','0','2','0'), ('44656','5','','10561','Zabbix agent availability','zabbix[host,agent,available]','1m','31d','365d','0','3','','','','',NULL,'1076','','','0','','','','','0',NULL,'Used for monitoring the availability status of the agent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','49708b126e3844b898d2625f77c0030c','0','2','0'), ('44657','7','','10562','Host name of Zabbix agent running','agent.hostname','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ca27c17d8ca34643a7db8b99d2cc3025','0','2','0'), ('44658','7','','10562','Zabbix agent ping','agent.ping','1m','31d','365d','0','3','','','','',NULL,'1079','','','0','','','','','0',NULL,'The agent always returns "1" for this item. May be used in combination with `nodata()` for the availability check.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0f86ec6cde2249f7946c678f9fd2665a','0','2','0'), ('44659','7','','10562','Version of Zabbix agent running','agent.version','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','41fb0f76fa1d464f8ab67f744fc29e8b','0','2','0'), ('44660','5','','10562','Active agent availability','zabbix[host,active_agent,available]','1m','31d','365d','0','3','','','','',NULL,'1078','','','0','','','','','0',NULL,'Availability of active checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - unknown 1 - available 2 - not available','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0fd83c56dce244738607cd6585a6acb3','0','2','0'), ('44661','3','','10563','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'1080','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0db3c804c6174c018071e15cbc8c56ae','0','2','0'), ('44662','3','','10563','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5d306c51188e496ba19b75b99e28cc7b','0','2','0'), ('44663','3','','10563','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9ad39c8c6ede46e6953aa6f9466eaf69','0','2','0'), ('44664','17','','10563','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2cda26906f254e13985cecdbb7901d1a','0','2','0'), ('44665','20','get[1.3.6.1.2.1.1.4.0]','10563','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','62da59c7aae54df7976f327119fe7cc2','0','2','0'), ('44666','20','get[1.3.6.1.2.1.1.1.0]','10563','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','29a3e5277de94386a5985fcf38a09364','0','2','0'), ('44667','20','get[1.3.6.1.2.1.25.1.1.0]','10563','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b12afb0277494024b1638ce620c4f2d4','0','2','0'), ('44668','20','get[1.3.6.1.2.1.1.6.0]','10563','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','02b453f44c014f2bb1054e801058b381','0','2','0'), ('44669','20','get[1.3.6.1.2.1.1.5.0]','10563','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3996a3a8d927473aa07c47e63a09b865','0','2','0'), ('44670','20','get[1.3.6.1.2.1.1.3.0]','10563','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','000b97abddcd44bfb57e0eeb1b77f69e','0','2','0'), ('44671','20','get[1.3.6.1.2.1.1.2.0]','10563','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9dbcc5a1cd7240c896e2ea718f9ccb35','0','2','0'), ('44672','5','','10563','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'1081','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3e8c2d440441416b9ccec7dd90e21503','0','2','0'), ('44673','3','','10564','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'1082','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','db5a94f6cea14deba957202b2f014469','0','2','0'), ('44674','3','','10564','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','04b21adaf422473a88df2c52786474ed','0','2','0'), ('44675','3','','10564','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a79e33e5fd264725b934f603fa071555','0','2','0'), ('44676','0','','10565','Disk discovery','smart.disk.discovery[{$SMART.DISK.DISCOVERY.TYPE}]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery SMART disks.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4575af2717ec4bf78645edb84a966c84','0','2','0'), ('44677','0','','10565','[{#NAME}]: Get disk attributes','smart.disk.get[{#PATH},"{#RAIDTYPE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','805e1d6f91e741ac93e87bd7d62860d5','0','2','0'), ('44697','7','','10566','Disk discovery','smart.disk.discovery[{$SMART.DISK.DISCOVERY.TYPE}]','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery SMART disks.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0a56a348d4a446938beae1eae5ec8993','0','2','0'), ('44698','7','','10566','[{#NAME}]: Get disk attributes','smart.disk.get[{#PATH},"{#RAIDTYPE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b26489a8ba12495dbb9687ef52ab1396','0','2','0'), ('44785','5','','10047','Connector queue','zabbix[connector_queue]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of values enqueued in the connector queue.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1a185ce77d4e4dd49be5b9ded51c1460','0','2','0'), ('44786','5','','10047','Utilization of connector manager internal processes, in %','zabbix[process,connector manager,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the connector manager processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2fcfd911ae8647149bad91c883abf41d','0','2','0'), ('44787','5','','10047','Utilization of connector worker internal processes, in %','zabbix[process,connector worker,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the connector worker processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1c8c3b3045384a39af8baa9e40f2b487','0','2','0'), ('44795','21','','10531','Get storage accounts','azure.get.storage.acc','10m','0','0','0','4','','','','',NULL,NULL,'var Azure = { params: {}, token: '''', setParams: function (params) { [''app_id'', ''password'', ''tenant_id'', ''subscription_id''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); Azure.params = params; }, login: function () { var response, login = new HttpRequest(); if (typeof Azure.params.proxy !== ''undefined'' && Azure.params.proxy !== '''') { login.setProxy(Azure.params.proxy); } login.addHeader(''Content-Type: application/x-www-form-urlencoded''); response = login.post( ''https://login.microsoftonline.com/'' + encodeURIComponent(Azure.params.tenant_id) + ''/oauth2/token'', ''grant_type=client_credentials&resource='' + encodeURIComponent(''https://management.azure.com/'') + ''&client_id='' + encodeURIComponent(Azure.params.app_id) + ''&client_secret='' + encodeURIComponent(Azure.params.password) ); if (login.getStatus() !== 200) { throw ''Login failed with status code '' + login.getStatus() + '': '' + response; } try { response = JSON.parse(response); if (!response.hasOwnProperty(''access_token'')) { throw null; } } catch (error) { throw ''Authentication response does not contain access token.''; } Azure.token = response[''access_token'']; }, request: function (url) { var response, request = new HttpRequest(); if (typeof Azure.params.proxy !== ''undefined'' && Azure.params.proxy !== '''') { request.setProxy(Azure.params.proxy); } if (!Azure.token) { throw ''Request does not contain access token.''; } request.addHeader(''Accept: application/json''); request.addHeader(''Authorization: Bearer '' + Azure.token); response = request.get(url); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { return JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API.''; } }, getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getMetricsData: function () { var metric = Azure.request(''https://management.azure.com/subscriptions/'' + encodeURIComponent(Azure.params.subscription_id) + ''/providers/Microsoft.Storage/storageAccounts?api-version=2021-05-01''), data = []; if (!metric.hasOwnProperty(''value'')) { throw ''Failed getting required field. Check debug log for more information.''; } for (k in metric.value) { id = Azure.getField(metric.value[k], ''id''); json = {}; input = id.split(''/''); for (var i = 1; i < input.length; i += 2) { json[input[i]] = input[i + 1]; } data.push({ ''name'': Azure.getField(metric.value[k], ''name''), ''id'': id, ''resourceGroup'': Azure.getField(json, ''resourceGroups''), ''location'': Azure.getField(metric.value[k], ''location''), ''token'': Azure.token }); } return data; } }; try { Azure.setParams(JSON.parse(value)); Azure.login(); return JSON.stringify(Azure.getMetricsData()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ Azure ] ERROR: '' + error); return JSON.stringify({''error'': error}); }','','0','','','','','0',NULL,'The result of API requests is expressed in the JSON.','0','30d','0','',NULL,'{$AZURE.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','91b2290d65b949ad9ea801763c35cf40','0','2','0'), ('44796','21','','10568','Get data','azure.cosmosdb.data.get','1m','0','0','0','4','','','','',NULL,NULL,E'var AzureCosmosDB = { params: {}, token: null, setParams: function (params) { [''app_id'', ''password'', ''tenant_id'', ''subscription_id'', ''resource_id''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); AzureCosmosDB.params = params; }, login: function () { var response, login = new HttpRequest(); if (typeof AzureCosmosDB.params.proxy !== ''undefined'' && AzureCosmosDB.params.proxy !== '''') { login.setProxy(AzureCosmosDB.params.proxy); } login.addHeader(''Content-Type: application/x-www-form-urlencoded''); response = login.post( ''https://login.microsoftonline.com/'' + encodeURIComponent(AzureCosmosDB.params.tenant_id) + ''/oauth2/token'', ''grant_type=client_credentials&resource='' + encodeURIComponent(''https://management.azure.com/'') + ''&client_id='' + encodeURIComponent(AzureCosmosDB.params.app_id) + ''&client_secret='' + encodeURIComponent(AzureCosmosDB.params.password) ); if (login.getStatus() !== 200) { throw ''Login failed with status code '' + login.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse login session response.''; } if (!response.hasOwnProperty(''access_token'')) { throw ''Authentication response does not contain access token.''; } AzureCosmosDB.token = response[''access_token'']; }, request: function (url) { var response, request = new HttpRequest(); if (typeof AzureCosmosDB.params.proxy !== ''undefined'' && AzureCosmosDB.params.proxy !== '''') { request.setProxy(AzureCosmosDB.params.proxy); } if (!AzureCosmosDB.token) { throw ''Request does not contain access token.''; } request.addHeader(''Accept: application/json''); request.addHeader(''Authorization: Bearer '' + AzureCosmosDB.token); Zabbix.log(4, ''[ AzureCosmosDB ] request url: '' + url); response = request.get(url); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { return JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API.''; } }, getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getMetricsData: function () { var data = {}; start_date = new Date((new Date().getTime()) - 600000).toISOString().replace(/\\.\\d+/, ''''); end_date = new Date(new Date().getTime()).toISOString().replace(/\\.\\d+/, ''''); endpoints = { ''availability'': ''/providers/Microsoft.Insights/metrics?metricnames=ServiceAvailability&api-version=2021-05-01&interval=PT1H×pan='' + encodeURIComponent(start_date) + ''/'' + encodeURIComponent(end_date), ''requests'': ''/providers/Microsoft.Insights/metrics?metricnames=DataUsage,IndexUsage,DocumentQuota,AvailableStorage,DocumentCount,NormalizedRUConsumption,PhysicalPartitionThroughputInfo,PhysicalPartitionSizeInfo,AutoscaleMaxThroughput,ProvisionedThroughput,TotalRequests,TotalRequestUnits,MetadataRequests,MongoRequests,MongoRequestCharge,ServerSideLatency,ServerSideLatencyGateway,ServerSideLatencyDirect,ReplicationLatency&api-version=2021-05-01×pan='' + encodeURIComponent(start_date) + ''/'' + encodeURIComponent(end_date), }; Object.keys(endpoints).forEach(function (field) { data[field] = {}; try { metrics = AzureCosmosDB.request(''https://management.azure.com'' + AzureCosmosDB.params.resource_id + endpoints[field]); if (!metrics.hasOwnProperty(''value'')) { throw ''Failed getting required field. Check debug log for more information.''; } for (k in metrics.value) { key = AzureCosmosDB.getField(metrics.value[k], ''name.value'') if (metrics.value[k].timeseries.length === 0) { metrics.value[k].timeseries.push({ ''data'': [''nodata''] }) } data[field][key] = AzureCosmosDB.getField(metrics.value[k], ''timeseries.0.data.0''); } } catch (error) { data.error = error.toString(); } }); return data } }; try { AzureCosmosDB.setParams(JSON.parse(value)); AzureCosmosDB.login(); return JSON.stringify(AzureCosmosDB.getMetricsData()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AzureCosmosDB ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'The result of API requests is expressed in the JSON.','0','30d','0','',NULL,'{$AZURE.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','647faea1597c4da6a3cd78694be8e77e','0','2','0'), ('44820','21','','10531','Storage account [{#NAME}]: Get data','azure.get.storage.acc[{#NAME}]','1m','0','0','0','4','','','','',NULL,NULL,E'var AzureStorage = { params: {}, setParams: function (params) { [''token'', ''id''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); AzureStorage.params = params; }, request: function (url) { var response, request = new HttpRequest(); if (typeof AzureStorage.params.proxy !== ''undefined'' && AzureStorage.params.proxy !== '''') { request.setProxy(AzureStorage.params.proxy); } request.addHeader(''Accept: application/json''); request.addHeader(''Authorization: Bearer '' + AzureStorage.params.token); Zabbix.log(4, ''[ Azure ] Sending request: '' + url); response = request.get(url); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { return JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API.''; } }, getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path + '' input data: '' + JSON.stringify(data); } data = data[step]; } return data; }, getMetricsData: function () { var data = {}; start_date = new Date((new Date().getTime()) - 4200000).toISOString().replace(/\\.\\d+/, ''''); end_date = new Date((new Date().getTime()) - 600000).toISOString().replace(/\\.\\d+/, ''''); endpoints = { ''tableServices'': ''/tableServices/default/providers/Microsoft.Insights/metrics?metricnames=TableCapacity,TableCount,TableEntityCount,Transactions,Ingress,Egress,SuccessServerLatency,SuccessE2ELatency,Availability&api-version=2021-05-01&interval=PT1H×pan='' + encodeURIComponent(start_date) + ''/'' + encodeURIComponent(end_date), ''blobServices'': ''/blobServices/default/providers/Microsoft.Insights/metrics?metricnames=BlobCapacity,BlobCount,ContainerCount,IndexCapacity,Transactions,Ingress,Egress,SuccessServerLatency,SuccessE2ELatency,Availability&api-version=2021-05-01&interval=PT1H×pan='' + encodeURIComponent(start_date) + ''/'' + encodeURIComponent(end_date), ''fileServices'': ''/fileServices/default/providers/Microsoft.Insights/metrics?metricnames=FileCapacity,FileCount,FileShareCount,FileShareSnapshotCount,FileShareSnapshotSize,FileShareCapacityQuota,Transactions,Ingress,Egress,SuccessServerLatency,SuccessE2ELatency,Availability&api-version=2021-05-01&interval=PT1H×pan='' + encodeURIComponent(start_date) + ''/'' + encodeURIComponent(end_date), ''storageAccount'': ''/providers/Microsoft.Insights/metrics?metricnames=UsedCapacity,Transactions,Ingress,Egress,SuccessServerLatency,SuccessE2ELatency,Availability&api-version=2021-05-01&interval=PT1H×pan='' + encodeURIComponent(start_date) + ''/'' + encodeURIComponent(end_date), ''queueServices'': ''/queueServices/default/providers/Microsoft.Insights/metrics?metricnames=QueueCapacity,QueueCount,QueueMessageCount,Transactions,Ingress,Egress,SuccessServerLatency,SuccessE2ELatency,Availability&api-version=2021-05-01&interval=PT1H×pan='' + encodeURIComponent(start_date) + ''/'' + encodeURIComponent(end_date) }; Object.keys(endpoints).forEach(function (field) { data[field] = {}; metrics = AzureStorage.request(''https://management.azure.com'' + AzureStorage.params.id + endpoints[field]); if (!metrics.hasOwnProperty(''value'')) { throw ''Failed getting required field. Check debug log for more information.''; } for (k in metrics.value) { key = AzureStorage.getField(metrics.value[k], ''name.value'') if (metrics.value[k].timeseries.length === 0) { metrics.value[k].timeseries.push({ ''data'': [''nodata''] }) } data[field][key] = AzureStorage.getField(metrics.value[k], ''timeseries.0.data.0''); } }); return data } }; try { AzureStorage.setParams(JSON.parse(value)); return JSON.stringify(AzureStorage.getMetricsData()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ Azure ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','2',NULL,'The HTTP API endpoint that returns storage metrics with the name `[{#NAME}]`.','0','30d','0','',NULL,'{$AZURE.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','3361508a601748f5aca339f952430889','0','2','0'), ('44866','21','','10570','Authorization','gcp.authorization','{$GCP.AUTH.FREQUENCY}','0','0','0','4','','','','',NULL,NULL,E'var auth_url = ''https://oauth2.googleapis.com/token'', issued = Math.floor(new Date().getTime() / 1000), expires = issued + 3600, endpoint = ''https://www.googleapis.com/auth/'', scopes = [''cloud-platform.read-only'', ''monitoring'', ''compute.readonly'', ''sqlservice.admin''], scope = scopes.map(function (path) { return endpoint + path; }).join('' ''); function base64url(source) { encodedSource = btoa(source); encodedSource = encodedSource.replace(/=+$/, ''''); encodedSource = encodedSource.replace(/\\+/g, ''-''); encodedSource = encodedSource.replace(/\\//g, ''_''); return encodedSource; } function fromHex(hex) { var utf8array = []; if (hex.length % 2) throw ''Invalid length of a hex string!''; for (var i = 0; i < hex.length; i += 2) { utf8array.push(parseInt(hex.substr(i, 2), 16)); } return new Uint8Array(utf8array); } function encodeJWT(headers, payload, secret) { unsignedToken = base64url(JSON.stringify(headers)) + ''.'' + base64url(JSON.stringify(payload)); jwt = unsignedToken + ''.'' + base64url(fromHex(sign(''sha256'', secret, unsignedToken))); return jwt; } function exchangeJwtForAccessToken(signed_jwt) { var request = new HttpRequest(), params = { grant_type: ''urn:ietf:params:oauth:grant-type:jwt-bearer'', assertion: signed_jwt } if (typeof script_params.proxy !== ''undefined'' && script_params.proxy !== '''') { request.setProxy(script_params.proxy); }; var response = request.post(auth_url, JSON.stringify(params)); Zabbix.log(4, ''[ GCP API ] [ '' + auth_url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from GCP API. Check debug log for more information.''; } } if (typeof response !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object. Check debug log for more information.''; } if (request.getStatus() !== 200) { if (typeof (response.error && response.error.message) !== ''undefined'') { throw response.error.message; } else { throw ''Failed to receive data: invalid response status code. Check debug log for more information.''; } } if (typeof response.access_token !== ''undefined'') { return response.access_token; } else { throw ''No access token in the JWT exchange request.''; } } function checkParams(params) { [''pkey_id'', ''private_key'', ''email''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); return params; } var script_params = checkParams(JSON.parse(value)), headers = { alg: ''RS256'', kid: script_params.pkey_id, typ: ''JWT'' }, payload = { iss: script_params.email, sub: script_params.email, aud: auth_url, iat: issued, exp: expires, scope: scope }; try { jwt = encodeJWT(headers, payload, script_params.private_key); token = exchangeJwtForAccessToken(jwt); return token; } catch (err) { return JSON.stringify({ error: err }); }','','0','','','','','0',NULL,'Google Cloud Platform REST authorization with service account authentication parameters and temporary-generated RSA-based JWT-token usage. The necessary scopes are pre-defined. Returns a signed authorization token with 1 hour lifetime; it is required only once, and is used for all the dependent script items. Check the template documentation for the details.','0','30d','0','',NULL,'{$GCP.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','5cc3faa82f404b38b513958f323f3d7d','0','2','0'), ('44867','19','','10571','Instance state','gcp.cloudsql.mssql.inst.state','1m','31d','365d','0','3','','','','',NULL,'1087','','','0','','','','','0',NULL,'GCP Cloud SQL MSSQL Current instance state.','0','30d','0','',NULL,'{$GCP.DATA.TIMEOUT}','https://monitoring.googleapis.com/v3/projects/{$GCP.PROJECT.ID}/timeSeries:query','','{"query":"cloudsql.googleapis.com/database/state | within 5m | filter database_id = ''{$GCP.PROJECT.ID}:{HOST.NAME}''"}','','1','0','','Content-Type: application/json Authorization: Bearer {$GCP.AUTH.TOKEN}','0','1','0','0','0','0','0','556c96cf1bf342f99c69dc47813f221e','0','2','0'), ('44868','21','','10571','Resources get','gcp.cloudsql.mssql.resources.get','{$GCP.TIME.WINDOW}','0','0','0','4','','','','',NULL,NULL,E'var base_path = ''cloudsql.googleapis.com/database/sqlserver/transactions/'', arr = [], base_paths = [ ''deadlock_count'', ''lock_wait_count'', ''lock_wait_time'' ]; function getField(data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field "'' + path + ''" is not present in data received.''; } data = data[step]; } return data; } function checkParams(params) { [''project_id'', ''time_window'', ''database_id'', ''token''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); if (!params.time_window.match(/^[0-9]+(m|h)$/)) { throw ''Incorrect update interval for parameter time_window. Valid ranges 1m-23h.''; } return params; } function getHttpData(url, token, body) { var request = new HttpRequest(); if (typeof params.proxy !== ''undefined'' && params.proxy !== '''') { request.setProxy(params.proxy); }; request.addHeader(''Authorization: Bearer '' + token); request.addHeader(''Content-Type: application/json''); var response = request.post(url, JSON.stringify(body)); Zabbix.log(4, ''[ GCP API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from GCP API. Check debug log for more information.''; } } if (typeof response !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object. Check debug log for more information.''; } if (request.getStatus() !== 200) { if (typeof (response.error && response.error.message) !== ''undefined'') { throw response.error.message; } else { throw ''Failed to receive data: invalid response status code. Check debug log for more information.''; } } return response; }; var params = checkParams(JSON.parse(value)), j_filter = '' | within '' + params.time_window + " | filter database_id = ''" + params.database_id + "''" + '' | join'', url = ''https://monitoring.googleapis.com/v3/projects/'' + params.project_id + ''/timeSeries:query'', raw = getHttpData(url, params.token, { query: ''{'' + base_paths.map(function (path) { return base_path + path; }).join('';'') + ''}'' + j_filter }), metrics = getField(raw, ''timeSeriesDescriptor.pointDescriptors''), time_series = getField(raw, ''timeSeriesData''); for (t in time_series) { data = { resource: getField(time_series[t], ''labelValues.3.stringValue''), metrics: {} }; for (i in metrics) { re = /(^t_\\d+\\.value(_|\\.))/g; data[''metrics''][getField(metrics[i], ''key'').replace(re, '''')] = getField(time_series[t], ''pointData.0.values.'' + i + ''.int64Value''); } arr.push(data); } return JSON.stringify(arr);','','0','','','','','0',NULL,'MSSQL resources data in raw format.','0','30d','0','',NULL,'{$GCP.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','7ee117702e1f40faadd901faa9d333ff','0','2','0'), ('44869','21','','10571','Metrics get','gcp.cloudsql.mssql.metrics.get','{$GCP.TIME.WINDOW}','0','0','0','4','','','','',NULL,NULL,E'var base_path = ''cloudsql.googleapis.com/database/'', mssql_path = ''cloudsql.googleapis.com/database/sqlserver/'', obj = {}, base_paths = [ ''cpu/reserved_cores'', ''cpu/usage_time'', ''cpu/utilization'', ''disk/read_ops_count'', ''disk/write_ops_count'', ''memory/quota'', ''memory/total_usage'', ''memory/usage'', ''network/connections'', ''network/received_bytes_count'', ''network/sent_bytes_count | map ignore [destination]'' ].map(function (path) { return base_path + path; }), mssql_paths = [ ''connections/connection_reset_count'', ''connections/login_attempt_count'', ''connections/logout_count'', ''connections/processes_blocked'', ''memory/buffer_cache_hit_ratio'', ''memory/checkpoint_page_count'', ''memory/lazy_write_count'', ''memory/memory_grants_pending'', ''memory/page_life_expectancy'', ''memory/free_list_stall_count'', ''transactions/batch_request_count'', ''transactions/forwarded_record_count'', ''transactions/full_scan_count'', ''transactions/page_split_count'', ''transactions/probe_scan_count'', ''transactions/sql_compilation_count'', ''transactions/sql_recompilation_count'' ].map(function (path) { return mssql_path + path; }).concat( [''disk/bytes_used'', ''disk/utilization'', ''disk/quota''].map(function (path) { return base_path + path; })), value_types = [''int64Value'', ''doubleValue'', ''stringValue'', ''boolValue'']; function getField(data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field "'' + path + ''" is not present in data received.''; } data = data[step]; } return data; } function getFieldBool(data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { return false; } data = data[step]; } return true; } function checkParams(params) { [''project_id'', ''time_window'', ''database_id'', ''token'', ''audited''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); if (!params.time_window.match(/^[0-9]+(m|h)$/)) { throw ''Incorrect update interval for parameter time_window. Valid ranges 1m-23h.''; } if (params.audited !== ''true'' && params.audited !== ''false'') { throw ''Incorrect audit definition type. Valid definitions: true/false''; } return params; } function getHttpData(url, token, body) { var request = new HttpRequest(); if (typeof params.proxy !== ''undefined'' && params.proxy !== '''') { request.setProxy(params.proxy); }; request.addHeader(''Authorization: Bearer '' + token); request.addHeader(''Content-Type: application/json''); var response = request.post(url, JSON.stringify(body)); Zabbix.log(4, ''[ GCP API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from GCP API. Check debug log for more information.''; } } if (typeof response !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object. Check debug log for more information.''; } if (request.getStatus() !== 200) { if (typeof (response.error && response.error.message) !== ''undefined'') { throw response.error.message; } else { throw ''Failed to receive data: invalid response status code. Check debug log for more information.''; } } return response; }; function rawMap(raw, prefix) { var keys = getField(raw, ''timeSeriesDescriptor.pointDescriptors''), values = getField(raw, ''timeSeriesData.0.pointData.0.values''), re = /(^t_\\d+\\.value\\.)/g; for (i in keys) { var key = getField(keys[i], ''key'').replace(re, ''''); for (v in value_types) { if (typeof values[i][value_types[v]] !== ''undefined'') { if (prefix) { obj[prefix + key] = values[i][value_types[v]]; } else { obj[key] = values[i][value_types[v]]; } } } } return obj; } function singleMetrics(tsd) { var result = {}; for (t in tsd) { for (v in value_types) { if (getFieldBool(tsd[t], ''pointData.0.values.0.'' + [value_types[v]])) { result[''mssql_'' + getField(tsd[t], ''labelValues.3.stringValue'').toLowerCase()] = tsd[t].pointData[0].values[0][value_types[v]]; break; } } } return result; } var params = checkParams(JSON.parse(value)); if (params.audited === ''true'') { base_paths.push(mssql_path + ''audits_size''); }; var filter = '' | within '' + params.time_window + " | filter database_id = ''" + params.database_id + "''", j_filter = filter + '' | join'', url = ''https://monitoring.googleapis.com/v3/projects/'' + params.project_id + ''/timeSeries:query'', queries = [ { name: ''base_'', data: { query: ''{'' + base_paths.join('';'') + ''}'' + j_filter } }, { name: ''mssql_'', data: { query: ''{'' + mssql_paths.join('';'') + ''}'' + j_filter } } ]; for (q in queries) { raw = getHttpData(url, params.token, queries[q].data); obj = Object.assign(obj, rawMap(raw, queries[q].name)); } obj.base_ram_pused = Math.floor(getField(obj, ''base_usage'') / getField(obj, ''base_quota'') * 100); var single_queries = [ { query: mssql_path + ''memory/page_operation_count'' + filter } ]; if (params.audited === ''true'') { single_queries.push({ query: mssql_path + ''audits_upload_count'' + filter }); } for (q in single_queries) { raw = getHttpData(url, params.token, single_queries[q]); Object.assign(obj, singleMetrics(getField(raw, ''timeSeriesData''))); } return JSON.stringify(obj);','','0','','','','','0',NULL,'MSSQL metrics data in raw format.','0','30d','0','',NULL,'{$GCP.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','6de08b07cecc47a88bde22de5d1b4e5a','0','2','0'), ('44870','21','','10571','Schedulers get','gcp.cloudsql.mssql.schedulers.get','{$GCP.TIME.WINDOW}','0','0','0','4','','','','',NULL,NULL,E'var base_path = ''cloudsql.googleapis.com/database/sqlserver/schedulers/'', arr = [], base_paths = [''active_workers'', ''current_tasks'', ''current_workers'', ''pending_disk_io'', ''runnable_tasks'', ''work_queue'']; function getField(data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field "'' + path + ''" is not present in data received.''; } data = data[step]; } return data; } function checkParams(params) { [''project_id'', ''time_window'', ''database_id'', ''token''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); if (!params.time_window.match(/^[0-9]+(m|h)$/)) { throw ''Incorrect update interval for parameter time_window. Valid ranges 1m-23h.''; } return params; } function getHttpData(url, token, body) { var request = new HttpRequest(); if (typeof params.proxy !== ''undefined'' && params.proxy !== '''') { request.setProxy(params.proxy); }; request.addHeader(''Authorization: Bearer '' + token); request.addHeader(''Content-Type: application/json''); var response = request.post(url, JSON.stringify(body)); Zabbix.log(4, ''[ GCP API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from GCP API. Check debug log for more information.''; } } if (typeof response !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object. Check debug log for more information.''; } if (request.getStatus() !== 200) { if (typeof (response.error && response.error.message) !== ''undefined'') { throw response.error.message; } else { throw ''Failed to receive data: invalid response status code. Check debug log for more information.''; } } return response; }; var params = checkParams(JSON.parse(value)), j_filter = '' | within '' + params.time_window + " | filter database_id = ''" + params.database_id + "''" + '' | join'', url = ''https://monitoring.googleapis.com/v3/projects/'' + params.project_id + ''/timeSeries:query'', raw = getHttpData(url, params.token, { query: ''{'' + base_paths.map(function (path) { return base_path + path; }).join('';'') + ''}'' + j_filter }), metrics = getField(raw, ''timeSeriesDescriptor.pointDescriptors''), time_series = getField(raw, ''timeSeriesData''); for (t in time_series) { data = { scheduler: getField(time_series[t], ''labelValues.3.stringValue''), metrics: {} }; for (i in metrics) { re = /(^t_\\d+\\.value(_|\\.))/g; data[''metrics''][getField(metrics[i], ''key'').replace(re, '''')] = getField(time_series[t], ''pointData.0.values.'' + i + ''.int64Value''); } arr.push(data); } return JSON.stringify(arr);','','0','','','','','0',NULL,'MSSQL schedulers data in raw format.','0','30d','0','',NULL,'{$GCP.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','3c14882329b94b8e88ca5d85e21bb7c8','0','2','0'), ('44871','21','','10571','Databases get','gcp.cloudsql.mssql.db.get','{$GCP.TIME.WINDOW}','0','0','0','4','','','','',NULL,NULL,E'var base_path = ''cloudsql.googleapis.com/database/sqlserver/transactions/'', arr = [], base_paths = [ ''log_bytes_flushed_count'', ''transaction_count'' ]; function getField(data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field "'' + path + ''" is not present in data received.''; } data = data[step]; } return data; } function checkParams(params) { [''project_id'', ''time_window'', ''database_id'', ''token''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); if (!params.time_window.match(/^[0-9]+(m|h)$/)) { throw ''Incorrect update interval for parameter time_window. Valid ranges 1m-23h.''; } return params; } function getHttpData(url, token, body) { var request = new HttpRequest(); if (typeof params.proxy !== ''undefined'' && params.proxy !== '''') { request.setProxy(params.proxy); }; request.addHeader(''Authorization: Bearer '' + token); request.addHeader(''Content-Type: application/json''); var response = request.post(url, JSON.stringify(body)); Zabbix.log(4, ''[ GCP API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from GCP API. Check debug log for more information.''; } } if (typeof response !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object. Check debug log for more information.''; } if (request.getStatus() !== 200) { if (typeof (response.error && response.error.message) !== ''undefined'') { throw response.error.message; } else { throw ''Failed to receive data: invalid response status code. Check debug log for more information.''; } } return response; }; var params = checkParams(JSON.parse(value)), j_filter = '' | within '' + params.time_window + " | filter database_id = ''" + params.database_id + "''" + '' | join'', url = ''https://monitoring.googleapis.com/v3/projects/'' + params.project_id + ''/timeSeries:query'', raw = getHttpData(url, params.token, { query: ''{'' + base_paths.map(function (path) { return base_path + path; }).join('';'') + ''}'' + j_filter }), metrics = getField(raw, ''timeSeriesDescriptor.pointDescriptors''), time_series = getField(raw, ''timeSeriesData''); for (t in time_series) { data = { database: getField(time_series[t], ''labelValues.3.stringValue''), metrics: {} }; for (i in metrics) { re = /(^t_\\d+\\.value(_|\\.))/g; data[''metrics''][getField(metrics[i], ''key'').replace(re, '''')] = getField(time_series[t], ''pointData.0.values.'' + i + ''.int64Value''); } arr.push(data); } return JSON.stringify(arr);','','0','','','','','0',NULL,'MSSQL databases data in raw format.','0','30d','0','',NULL,'{$GCP.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','ecdd1774ef744bcb93e8e4094e29772f','0','2','0'), ('44872','19','','10571','DB engine state','gcp.cloudsql.mssql.db.state','1m','31d','365d','0','3','','','','',NULL,'1086','','','0','','','','','0',NULL,'GCP Cloud SQL MSSQL DB Engine State.','0','30d','0','',NULL,'{$GCP.DATA.TIMEOUT}','https://monitoring.googleapis.com/v3/projects/{$GCP.PROJECT.ID}/timeSeries:query','','{"query":"cloudsql.googleapis.com/database/up | within 5m | filter database_id = ''{$GCP.PROJECT.ID}:{HOST.NAME}''"}','','1','0','','Content-Type: application/json Authorization: Bearer {$GCP.AUTH.TOKEN}','0','1','0','0','0','0','0','9806c645a10a4e1d8fbb39eb1d3ac993','0','2','0'), ('44873','21','','10572','Replica metrics get','gcp.cloudsql.mssql.repl.metrics.get','{$GCP.TIME.WINDOW}','0','0','0','4','','','','',NULL,NULL,E'var base_path = ''cloudsql.googleapis.com/database/sqlserver/replication/'', obj = {}, base_paths = [ ''bytes_sent_to_replica_count | map ignore [replica_name]'', ''resent_message_count | map ignore [replica_name]'', ''log_apply_pending_queue'', ''log_bytes_received_count'', ''recovery_queue'', ''redone_bytes_count'' ]; function getField(data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field "'' + path + ''" is not present in data received.''; } data = data[step]; } return data; } function checkParams(params) { [''project_id'', ''time_window'', ''database_id'', ''token''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); if (!params.time_window.match(/^[0-9]+(m|h)$/)) { throw ''Incorrect update interval for parameter time_window. Valid ranges 1m-23h.''; } return params; } function getHttpData(url, token, body) { var request = new HttpRequest(); if (typeof params.proxy !== ''undefined'' && params.proxy !== '''') { request.setProxy(params.proxy); }; request.addHeader(''Authorization: Bearer '' + token); request.addHeader(''Content-Type: application/json''); var response = request.post(url, JSON.stringify(body)); Zabbix.log(4, ''[ GCP API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from GCP API. Check debug log for more information.''; } } if (typeof response !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object. Check debug log for more information.''; } if (request.getStatus() !== 200) { if (typeof (response.error && response.error.message) !== ''undefined'') { throw response.error.message; } else { throw ''Failed to receive data: invalid response status code. Check debug log for more information.''; } } return response; }; var params = checkParams(JSON.parse(value)), filter = '' | within '' + params.time_window + " | filter database_id = ''" + params.database_id + "''", j_filter = filter + '' | join'', url = ''https://monitoring.googleapis.com/v3/projects/'' + params.project_id + ''/timeSeries:query'', base_raw = getHttpData(url, params.token, { query: ''{'' + base_paths.map(function (path) { return base_path + path; }).join('';'') + ''}'' + j_filter }), keys = getField(base_raw, ''timeSeriesDescriptor.pointDescriptors''), values = getField(base_raw, ''timeSeriesData.0.pointData.0.values''), re = /(^t_\\d+\\.value\\.)/g; for (i in keys) { var value_types = [''int64Value'', ''doubleValue'', ''stringValue'', ''boolValue'']; for (v in value_types) { if (typeof values[i][value_types[v]] !== ''undefined'') { obj[getField(keys[i], ''key'').replace(re, '''')] = values[i][value_types[v]]; } } } return JSON.stringify(obj);','','0','','','','','0',NULL,'MSSQL replica metrics data in raw format.','0','30d','0','',NULL,'{$GCP.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','f0d4c711863f4ca9ad76b0099a66a86d','0','2','0'), ('44874','19','','10573','Instance state','gcp.cloudsql.mysql.inst.state','1m','31d','365d','0','3','','','','',NULL,'1089','','','0','','','','','0',NULL,'GCP Cloud SQL MySQL Current instance state.','0','30d','0','',NULL,'{$GCP.DATA.TIMEOUT}','https://monitoring.googleapis.com/v3/projects/{$GCP.PROJECT.ID}/timeSeries:query','','{"query":"cloudsql.googleapis.com/database/state | within 5m | filter database_id = ''{$GCP.PROJECT.ID}:{HOST.NAME}''"}','','1','0','','Content-Type: application/json Authorization: Bearer {$GCP.AUTH.TOKEN}','0','1','0','0','0','0','0','71559008ad444772b0b1212f715980ed','0','2','0'), ('44875','19','','10573','DB engine state','gcp.cloudsql.mysql.db.state','1m','31d','365d','0','3','','','','',NULL,'1088','','','0','','','','','0',NULL,'GCP Cloud SQL MySQL DB Engine State.','0','30d','0','',NULL,'{$GCP.DATA.TIMEOUT}','https://monitoring.googleapis.com/v3/projects/{$GCP.PROJECT.ID}/timeSeries:query','','{"query":"cloudsql.googleapis.com/database/up | within 5m | filter database_id = ''{$GCP.PROJECT.ID}:{HOST.NAME}''"}','','1','0','','Content-Type: application/json Authorization: Bearer {$GCP.AUTH.TOKEN}','0','1','0','0','0','0','0','948dac37023c4efcaf5f830ba5d4fafe','0','2','0'), ('44876','21','','10573','Metrics get','gcp.cloudsql.mysql.metrics.get','{$GCP.TIME.WINDOW}','0','0','0','4','','','','',NULL,NULL,E'var base_path = ''cloudsql.googleapis.com/database/'', mysql_path = ''cloudsql.googleapis.com/database/mysql/'', obj = {}, base_paths = [ ''cpu/reserved_cores'', ''cpu/usage_time'', ''cpu/utilization'', ''disk/read_ops_count'', ''disk/write_ops_count'', ''memory/quota'', ''memory/total_usage'', ''memory/usage'', ''network/connections'', ''network/received_bytes_count'', ''network/sent_bytes_count | map ignore [destination]'' ].map(function (path) { return base_path + path; }), mysql_paths = [ ''innodb_buffer_pool_pages_dirty'', ''innodb_buffer_pool_pages_free'', ''innodb_buffer_pool_pages_total'', ''innodb_data_fsyncs'', ''innodb_os_log_fsyncs'', ''innodb_pages_read'', ''innodb_pages_written'', ''queries'', ''questions'', ''received_bytes_count'', ''sent_bytes_count'', ''open_tables'', ''open_table_definitions'' ].map(function (path) { return mysql_path + path; }).concat( [''disk/bytes_used'', ''disk/utilization'', ''disk/quota''].map(function (path) { return base_path + path; })); function getField(data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field "'' + path + ''" is not present in data received.''; } data = data[step]; } return data; } function checkParams(params) { [''project_id'', ''time_window'', ''database_id'', ''token''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); if (!params.time_window.match(/^[0-9]+(m|h)$/)) { throw ''Incorrect update interval for parameter time_window. Valid ranges 1m-23h.''; } return params; } function getHttpData(url, token, body) { var request = new HttpRequest(); if (typeof params.proxy !== ''undefined'' && params.proxy !== '''') { request.setProxy(params.proxy); }; request.addHeader(''Authorization: Bearer '' + token); request.addHeader(''Content-Type: application/json''); var response = request.post(url, JSON.stringify(body)); Zabbix.log(4, ''[ GCP API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from GCP API. Check debug log for more information.''; } } if (typeof response !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object. Check debug log for more information.''; } if (request.getStatus() !== 200) { if (typeof (response.error && response.error.message) !== ''undefined'') { throw response.error.message; } else { throw ''Failed to receive data: invalid response status code. Check debug log for more information.''; } } return response; }; function rawMap(raw, prefix) { var keys = getField(raw, ''timeSeriesDescriptor.pointDescriptors''), values = getField(raw, ''timeSeriesData.0.pointData.0.values''), re = /(^t_\\d+\\.value\\.)/g; for (i in keys) { var key = getField(keys[i], ''key'').replace(re, ''''), value_types = [''int64Value'', ''doubleValue'', ''stringValue'', ''boolValue'']; for (v in value_types) { if (typeof values[i][value_types[v]] !== ''undefined'') { if (prefix) { obj[prefix + key] = values[i][value_types[v]]; } else { obj[key] = values[i][value_types[v]]; } } } } return obj; } var params = checkParams(JSON.parse(value)), j_filter = '' | within '' + params.time_window + " | filter database_id = ''" + params.database_id + "''" + '' | join'', url = ''https://monitoring.googleapis.com/v3/projects/'' + params.project_id + ''/timeSeries:query'', queries = [ { name: ''base_'', data: { query: ''{'' + base_paths.join('';'') + ''}'' + j_filter } }, { name: ''mysql_'', data: { query: ''{'' + mysql_paths.join('';'') + ''}'' + j_filter } } ]; for (q in queries) { raw = getHttpData(url, params.token, queries[q].data); obj = Object.assign(obj, rawMap(raw, queries[q].name)); } obj.base_ram_pused = Math.floor(getField(obj, ''base_usage'') / getField(obj, ''base_quota'') * 100); return JSON.stringify(obj);','','0','','','','','0',NULL,'MySQL metrics in raw format.','0','30d','0','',NULL,'{$GCP.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','682484eaf1db4a239c69566a5cd492e2','0','2','0'), ('44877','21','','10574','Replica metrics get','gcp.cloudsql.mysql.repl.metrics.get','{$GCP.TIME.WINDOW}','0','0','0','4','','','','',NULL,NULL,E'var base_path = ''cloudsql.googleapis.com/database/replication/'', mysql_path = ''cloudsql.googleapis.com/database/mysql/replication/'', raw_metrics, obj = {}, base_paths = [''network_lag'', ''replica_lag''].map(function (path) { return base_path + path; }), mysql_paths = [ ''last_io_errno'', ''last_sql_errno'', ''slave_io_running'', ''slave_sql_running''].map(function (path) { return mysql_path + path; }).concat( [''network_lag'', ''replica_lag''].map(function (path) { return base_path + path; })); function getField(data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field "'' + path + ''" is not present in data received.''; } data = data[step]; } return data; } function checkParams(params) { [''project_id'', ''time_window'', ''database_id'', ''token''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); if (!params.time_window.match(/^[0-9]+(m|h)$/)) { throw ''Incorrect update interval for parameter time_window. Valid ranges 1m-23h.''; } return params; } function getHttpData(url, token, body) { var request = new HttpRequest(); if (typeof params.proxy !== ''undefined'' && params.proxy !== '''') { request.setProxy(params.proxy); }; request.addHeader(''Authorization: Bearer '' + token); request.addHeader(''Content-Type: application/json''); var response = request.post(url, JSON.stringify(body)); Zabbix.log(4, ''[ GCP API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from GCP API. Check debug log for more information.''; } } if (typeof response !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object. Check debug log for more information.''; } if (request.getStatus() !== 200) { if (typeof (response.error && response.error.message) !== ''undefined'') { throw response.error.message; } else { throw ''Failed to receive data: invalid response status code. Check debug log for more information.''; } } return response; }; var params = checkParams(JSON.parse(value)), filter = '' | within '' + params.time_window + " | filter database_id = ''" + params.database_id + "''", j_filter = filter + '' | join'', url = ''https://monitoring.googleapis.com/v3/projects/'' + params.project_id + ''/timeSeries:query'', metric_raw = getHttpData(url, params.token, { query: ''{'' + mysql_paths.join('';'') + ''}'' + j_filter }), metric_keys = getField(metric_raw, ''timeSeriesDescriptor.pointDescriptors''), metric_values = getField(metric_raw, ''timeSeriesData.0.pointData.0.values''), re = /(^t_\\d+\\.value\\.)/g; for (i in metric_keys) { var value_types = [''int64Value'', ''doubleValue'', ''stringValue'', ''boolValue'']; for (v in value_types) { if (typeof metric_values[i][value_types[v]] !== ''undefined'') { obj[getField(metric_keys[i], ''key'').replace(re, "")] = metric_values[i][value_types[v]]; } } } var state_raw = getHttpData(url, params.token, { query: base_path + ''state'' + filter }), state_keys = getField(state_raw, ''timeSeriesDescriptor.pointDescriptors''), state_tsd = getField(state_raw, ''timeSeriesData''); for (i in state_keys) { var state_key = getField(state_keys[i], ''key'').replace(/value\\./g, ''''); obj[state_key] = ''undefined''; for (t in state_tsd) { if (getField(state_tsd[t], ''pointData.0.values.'' + i + ''.boolValue'') == true) { obj[state_key] = getField(state_tsd[t], ''labelValues.3.stringValue''); break; } } } return JSON.stringify(obj);','','0','','','','','0',NULL,'MySQL replication metrics data in raw format.','0','30d','0','',NULL,'{$GCP.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','470200d2cca348bb8a670a2be3a270e3','0','2','0'), ('44878','21','','10575','Metrics get','gcp.cloudsql.pgsql.metrics.get','{$GCP.TIME.WINDOW}','0','0','0','4','','','','',NULL,NULL,E'var base_path = ''cloudsql.googleapis.com/database/'', pgsql_path = ''cloudsql.googleapis.com/database/postgresql/'', obj = {}, value_types = [''int64Value'', ''doubleValue'', ''stringValue'', ''boolValue'']; function getField(data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field "'' + path + ''" is not present in data received.''; } data = data[step]; } return data; } function checkParams(params) { [''project_id'', ''time_window'', ''database_id'', ''token''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); if (!params.time_window.match(/^[0-9]+(m|h)$/)) { throw ''Incorrect update interval for parameter time_window. Valid ranges 1m-23h.''; } return params; } function getHttpData(url, token, body) { var request = new HttpRequest(); if (typeof params.proxy !== ''undefined'' && params.proxy !== '''') { request.setProxy(params.proxy); }; request.addHeader(''Authorization: Bearer '' + token); request.addHeader(''Content-Type: application/json''); var response = request.post(url, JSON.stringify(body)); Zabbix.log(4, ''[ GCP API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from GCP API. Check debug log for more information.''; } } if (typeof response !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object. Check debug log for more information.''; } if (request.getStatus() !== 200) { if (typeof (response.error && response.error.message) !== ''undefined'') { throw response.error.message; } else { throw ''Failed to receive data: invalid response status code. Check debug log for more information.''; } } return response; }; function rawMap(raw, prefix) { var keys = getField(raw, ''timeSeriesDescriptor.pointDescriptors''), values = getField(raw, ''timeSeriesData.0.pointData.0.values''), re = /(^t_\\d+\\.value(_|\\.)|_sum$)/g; for (i in keys) { var key = getField(keys[i], ''key'').replace(re, ''''); for (v in value_types) { if (typeof values[i][value_types[v]] !== ''undefined'') { if (prefix) { obj[prefix + key] = values[i][value_types[v]]; } else { obj[key] = values[i][value_types[v]]; } } } } return obj; } function singleMetrics(tsd) { result = {}; for (t in tsd) { for (v in value_types) { if (typeof tsd[t].pointData[0].values[0][value_types[v]] !== ''undefined'') { result[''pgsql_'' + getField(tsd[t], ''labelValues.3.stringValue'').toLowerCase()] = tsd[t].pointData[0].values[0][value_types[v]]; } } } return result; } var params = checkParams(JSON.parse(value)), filter = '' | within '' + params.time_window + " | filter database_id = ''" + params.database_id + "''", j_filter = filter + '' | join'', url = ''https://monitoring.googleapis.com/v3/projects/'' + params.project_id + ''/timeSeries:query'', base_paths = [ ''cpu/reserved_cores'', ''cpu/usage_time'', ''cpu/utilization'', ''disk/read_ops_count'', ''disk/write_ops_count'', ''memory/quota'', ''memory/total_usage'', ''memory/usage'', ''network/received_bytes_count'', ''network/sent_bytes_count | map ignore [destination]'' ].map(function (path) { return base_path + path; }), pgsql_paths = [ ''transaction_id_utilization '' + filter, ''temp_bytes_written_count'' + filter + '' | sum'', ''temp_files_written_count'' + filter + '' | sum'', ''num_backends'' + filter + '' | sum'' ].map(function (path) { return pgsql_path + path; }).concat( [''disk/bytes_used'', ''disk/utilization'', ''disk/quota''].map(function (path) { return base_path + path; })), queries = [ { name: ''base_'', data: { query: ''{'' + base_paths.join('';'') + ''}'' + j_filter } }, { name: ''pgsql_'', data: { query: ''{'' + pgsql_paths.join('';'') + ''}'' + ''| within '' + params.time_window + ''| join'' } } ]; for (q in queries) { raw = getHttpData(url, params.token, queries[q].data); obj = Object.assign(obj, rawMap(raw, queries[q].name)); } obj.base_ram_pused = Math.floor((getField(obj, ''base_usage'') / getField(obj, ''base_quota'')) * 100); var single_paths = [''transaction_id_count'', ''vacuum/oldest_transaction_age''], single_queries = single_paths.map(function (path) { return { query: pgsql_path + path + filter }; }); for (q in single_queries) { raw = getHttpData(url, params.token, single_queries[q]); Object.assign(obj, singleMetrics(getField(raw, ''timeSeriesData''))); } return JSON.stringify(obj);','','0','','','','','0',NULL,'PostgreSQL metrics data in raw format.','0','30d','0','',NULL,'{$GCP.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','9bf09a42ddd64f7eabf6bbc011eda689','0','2','0'), ('44879','19','','10575','DB engine state','gcp.cloudsql.pgsql.db.state','1m','31d','365d','0','3','','','','',NULL,'1092','','','0','','','','','0',NULL,'GCP Cloud SQL PostgreSQL DB Engine State.','0','30d','0','',NULL,'{$GCP.DATA.TIMEOUT}','https://monitoring.googleapis.com/v3/projects/{$GCP.PROJECT.ID}/timeSeries:query','','{"query":"cloudsql.googleapis.com/database/up | within 5m | filter database_id = ''{$GCP.PROJECT.ID}:{HOST.NAME}''"}','','1','0','','Content-Type: application/json Authorization: Bearer {$GCP.AUTH.TOKEN}','0','1','0','0','0','0','0','27ad9640bf734dd49548c19241cc4838','0','2','0'), ('44880','19','','10575','Instance state','gcp.cloudsql.pgsql.inst.state','1m','31d','365d','0','3','','','','',NULL,'1093','','','0','','','','','0',NULL,'GCP Cloud SQL PostgreSQL Current instance state.','0','30d','0','',NULL,'{$GCP.DATA.TIMEOUT}','https://monitoring.googleapis.com/v3/projects/{$GCP.PROJECT.ID}/timeSeries:query','','{"query":"cloudsql.googleapis.com/database/state | within 5m | filter database_id = ''{$GCP.PROJECT.ID}:{HOST.NAME}''"}','','1','0','','Content-Type: application/json Authorization: Bearer {$GCP.AUTH.TOKEN}','0','1','0','0','0','0','0','88fd41960538460ebfd2ed9194677cd1','0','2','0'), ('44881','21','','10576','Replica metrics get','gcp.cloudsql.pgsql.repl.metrics.get','{$GCP.TIME.WINDOW}','0','0','0','4','','','','',NULL,NULL,E'var base_path = ''cloudsql.googleapis.com/database/replication/'', pgsql_path = ''cloudsql.googleapis.com/database/postgresql/replication/'', obj = {}, base_paths = [''network_lag'', ''replica_lag'', ''log_archive_failure_count'', ''log_archive_success_count'']; function getField(data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field "'' + path + ''" is not present in data received.''; } data = data[step]; } return data; } function checkParams(params) { [''project_id'', ''time_window'', ''database_id'', ''token''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); if (!params.time_window.match(/^[0-9]+(m|h)$/)) { throw ''Incorrect update interval for parameter time_window. Valid ranges 1m-23h.''; } return params; } function getHttpData(url, token, body) { var request = new HttpRequest(); if (typeof params.proxy !== ''undefined'' && params.proxy !== '''') { request.setProxy(params.proxy); }; request.addHeader(''Authorization: Bearer '' + token); request.addHeader(''Content-Type: application/json''); var response = request.post(url, JSON.stringify(body)); if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from GCP API. Check debug log for more information.''; } } if (typeof response !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object. Check debug log for more information.''; } if (request.getStatus() !== 200) { if (typeof (response.error && response.error.message) !== ''undefined'') { throw response.error.message; } else { throw ''Failed to receive data: invalid response status code. Check debug log for more information.''; } } return response; }; var params = checkParams(JSON.parse(value)), filter = '' | within '' + params.time_window + " | filter database_id = ''" + params.database_id + "''", j_filter = filter + '' | join'', url = ''https://monitoring.googleapis.com/v3/projects/'' + params.project_id + ''/timeSeries:query'', metric_raw = getHttpData(url, params.token, { query: ''{'' + base_paths.map(function (path) { return base_path + path; }).join('';'') + ''}'' + j_filter }), metric_keys = getField(metric_raw, ''timeSeriesDescriptor.pointDescriptors''), metric_values = getField(metric_raw, ''timeSeriesData.0.pointData.0.values''), re = /(^t_\\d+\\.value\\.)/g; for (i in metric_keys) { var value_types = [''int64Value'', ''doubleValue'', ''stringValue'', ''boolValue'']; for (v in value_types) { if (typeof metric_values[i][value_types[v]] !== ''undefined'') { obj[getField(metric_keys[i], ''key'').replace(re, '''')] = metric_values[i][value_types[v]]; } } } var state_raw = getHttpData(url, params.token, { query: base_path + ''state'' + filter }), state_keys = getField(state_raw, ''timeSeriesDescriptor.pointDescriptors''), state_tsd = getField(state_raw, ''timeSeriesData''); for (i in state_keys) { var state_key = getField(state_keys[i], ''key'').replace(/value\\./g, ''''); obj[state_key] = ''undefined''; for (t in state_tsd) { if (getField(state_tsd[t], ''pointData.0.values.'' + i + ''.boolValue'') == true) { obj[state_key] = getField(state_tsd[t], ''labelValues.3.stringValue''); break; } } } var lag_raw = getHttpData(url, params.token, { query: pgsql_path + ''replica_byte_lag'' + ''| within '' + params.time_window + " | filter replica_name = ''" + params.database_id + "''" }), lag_tsd = getField(lag_raw, ''timeSeriesData''); for (t in lag_tsd) { obj[getField(lag_tsd[t], ''labelValues.3.stringValue'')] = getField(lag_tsd[t], ''pointData.0.values.0.int64Value''); } return JSON.stringify(obj);','','0','','','','','0',NULL,'PostgreSQL replica metrics data in raw format.','0','30d','0','',NULL,'{$GCP.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','cb9c5aff913e4deeb29dfa1a20b5ff04','0','2','0'), ('44882','21','','10577','Metrics get','gcp.gce.metrics.get','{$GCP.TIME.WINDOW}','0','0','0','4','','','','',NULL,NULL,E'var base_path = ''compute.googleapis.com/'', value_types = [''int64Value'', ''doubleValue'', ''stringValue'', ''boolValue''], re = /(^t_\\d+\\.value\\.)/g, obj = {}, base_paths = [ ''instance/uptime_total'', ''firewall/dropped_packets_count'', ''firewall/dropped_bytes_count'', ''instance/cpu/guest_visible_vcpus'', ''instance/cpu/reserved_cores'', ''instance/cpu/usage_time'', ''instance/cpu/utilization'', ''mirroring/mirrored_bytes_count'', ''mirroring/mirrored_packets_count'' ], e2_paths = [ ''instance/cpu/scheduler_wait_time'', ''instance/memory/balloon/ram_size'', ''instance/memory/balloon/ram_used'', ''instance/memory/balloon/swap_in_bytes_count'', ''instance/memory/balloon/swap_out_bytes_count'', ], net_paths = [ ''instance/network/received_packets_count'', ''instance/network/received_bytes_count'', ''instance/network/sent_bytes_count'', ''instance/network/sent_packets_count'' ], integrity_paths = [ ''instance/integrity/late_boot_validation_status'', ''instance/integrity/early_boot_validation_status'' ]; function getField(data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field "'' + path + ''" is not present in data received.''; } data = data[step]; } return data; } function getFieldBool(data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { return false; } data = data[step]; } return true; } function queryMap(array, path, filter) { var query_params = ''{'' + array.map(function (element) { return path + element; }).join('';'') + ''}''; return { query: query_params + filter } } function checkParams(params) { [''project_id'', ''time_window'', ''instance_id'', ''token'', ''machine_type'', ''integrity''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''' || params[field].match(/^\\{\\$.*\\}$/)) { throw ''Required param is not set: '' + field + ''.''; } }); if (!params.time_window.match(/^[0-9]+(m|h)$/)) { throw ''Incorrect update interval for parameter time_window. Valid ranges 1m-23h.''; } if (params.integrity !== ''true'' && params.integrity !== ''false'') { throw ''Incorrect integrity state definition type. Valid definitions: true/false''; } return params; } function getHttpData(url, token, body) { var request = new HttpRequest(); if (typeof params.proxy !== ''undefined'' && params.proxy !== '''') { request.setProxy(params.proxy); }; request.addHeader(''Authorization: Bearer '' + token); request.addHeader(''Content-Type: application/json''); var response = request.post(url, JSON.stringify(body)); Zabbix.log(4, ''[ GCP API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from GCP API. Check debug log for more information.''; } } if (typeof response !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object. Check debug log for more information.''; } if (request.getStatus() !== 200) { if (typeof (response.error && response.error.message) !== ''undefined'') { throw response.error.message; } else { throw ''Failed to receive data: invalid response status code. Check debug log for more information.''; } } return response; }; function nestedMap(raw) { var ids = getField(raw, ''timeSeriesDescriptor.pointDescriptors''), ltsd = getField(raw, ''timeSeriesData''), result = {}; for (i in ids) { var id = getField(ids[i], ''key'').replace(re, ''''); result[id] = {}; for (t in ltsd) { for (v in value_types) { if (getFieldBool(ltsd[t], ''pointData.0.values.'' + [i] + ''.'' + [value_types[v]])) { [''stringValue'', ''boolValue''].forEach(function (type) { if (getFieldBool(ltsd[t], ''labelValues.4.'' + [type])) { result[id][ltsd[t].labelValues[4][type]] = ltsd[t].pointData[0].values[i][value_types[v]]; } }); } } } } return result; } var params = checkParams(JSON.parse(value)); if (params.machine_type.match(/e2.*/)) { base_paths = base_paths.concat(e2_paths); } var filter = '' | within '' + params.time_window + " | filter instance_id = ''" + params.instance_id + "''", j_filter = filter + '' | join'', url = ''https://monitoring.googleapis.com/v3/projects/'' + params.project_id + ''/timeSeries:query'', raw = getHttpData(url, params.token, queryMap(base_paths, base_path, j_filter)), keys = getField(raw, ''timeSeriesDescriptor.pointDescriptors''), values = getField(raw, ''timeSeriesData.0.pointData.0.values''); for (i in keys) { for (v in value_types) { if (typeof values[i][value_types[v]] !== ''undefined'') { obj[getField(keys[i], ''key'').replace(re, '''')] = values[i][value_types[v]]; } } } if (params.machine_type.match(/e2.*/)) { obj.ram_pused = Math.floor((getField(obj, ''ram_used'') / getField(obj, ''ram_size'')) * 100); } var mirr_raw = getHttpData(url, params.token, { query: base_path + ''mirroring/dropped_packets_count'' + filter }), tsd = getField(mirr_raw, ''timeSeriesData''); for (t in tsd) { for (v in value_types) { if (getFieldBool(tsd[t], ''pointData.0.values.0.'' + [value_types[v]])) { obj[getField(tsd[t], ''labelValues.3.stringValue'')] = getField(tsd[t], ''pointData.0.values.0.'' + [value_types[v]]); } } } var net_metrics = getHttpData(url, params.token, queryMap(net_paths, base_path, j_filter)); Object.assign(obj, nestedMap(net_metrics)); if (params.integrity === ''true'') { integrity_metrics = getHttpData(url, params.token, queryMap(integrity_paths, base_path, j_filter)); var keys = getField(integrity_metrics, ''timeSeriesDescriptor.pointDescriptors''), tsd = getField(integrity_metrics, ''timeSeriesData''); for (i in keys) { var key = getField(keys[i], ''key'').replace(re, ''''); obj[key] = ''undefined''; for (t in tsd) { if (getField(tsd[t], ''pointData.0.values.'' + i + ''.int64Value'') == 1) { obj[key] = getField(tsd[t], ''labelValues.4.stringValue''); break; } } } } return JSON.stringify(obj);','','0','','','','','0',NULL,'GCP Compute Engine metrics get in raw format.','0','30d','0','',NULL,'{$GCP.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','723fbff060ab41a39322bc0d6d8b1f84','0','2','0'), ('44883','21','','10577','Disks get','gcp.gce.disks.get','{$GCP.TIME.WINDOW}','0','0','0','4','','','','',NULL,NULL,E'var base_path = ''compute.googleapis.com/instance/disk/'', base_paths = [''read_ops_count'', ''read_bytes_count'', ''write_bytes_count'', ''write_ops_count'']; function checkParams(params) { [''project_id'', ''time_window'', ''instance_id'', ''token''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); if (!params.time_window.match(/^[0-9]+(m|h)$/)) { throw ''Incorrect update interval for parameter time_window. Valid ranges 1m-23h.''; } return params; } function getField(data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field "'' + path + ''" is not present in data received.''; } data = data[step]; } return data; } function getHttpData(url, token, body) { var request = new HttpRequest(); if (typeof params.proxy !== ''undefined'' && params.proxy !== '''') { request.setProxy(params.proxy); }; request.addHeader(''Authorization: Bearer '' + token); request.addHeader(''Content-Type: application/json''); var response = request.post(url, JSON.stringify(body)); Zabbix.log(4, ''[ GCP API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from GCP API. Check debug log for more information.''; } } if (typeof response !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object. Check debug log for more information.''; } if (request.getStatus() !== 200) { if (typeof (response.error && response.error.message) !== ''undefined'') { throw response.error.message; } else { throw ''Failed to receive data: invalid response status code. Check debug log for more information.''; } } return response; }; var params = checkParams(JSON.parse(value)), j_filter = '' | within '' + params.time_window + " | filter instance_id = ''" + params.instance_id + "''" + '' | join'', url = ''https://monitoring.googleapis.com/v3/projects/'' + params.project_id + ''/timeSeries:query'', raw = getHttpData(url, params.token, { query: ''{'' + base_paths.map(function (path) { return base_path + path; }).join('';'') + ''}'' + j_filter }), metrics = getField(raw, ''timeSeriesDescriptor.pointDescriptors''), time_series = getField(raw, ''timeSeriesData''), arr = []; for (t in time_series) { data = { disk_name: getField(time_series[t], ''labelValues.3.stringValue''), device_type: getField(time_series[t], ''labelValues.4.stringValue''), storage_type: getField(time_series[t], ''labelValues.6.stringValue''), metrics: {} }; for (i in metrics) { re = /(^t_\\d+\\.value(_|\\.))/g; data[''metrics''][getField(metrics[i], ''key'').replace(re, '''')] = getField(time_series[t], ''pointData.0.values.'' + i + ''.int64Value''); } arr.push(data); } return JSON.stringify(arr);','','0','','','','','0',NULL,'Disk entities and metrics related to a particular instance.','0','30d','0','',NULL,'{$GCP.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','4bdd3662247749a69bb59e6643ba7b9a','0','2','0'), ('44884','19','','10577','Instance state','gcp.gce.instance.state','1m','31d','365d','0','3','','','','',NULL,'1095','','','0','','','','','0',NULL,'GCP Compute Engine instance state.','0','30d','0','',NULL,'{$GCP.DATA.TIMEOUT}','https://compute.googleapis.com/compute/v1/projects/{$GCP.PROJECT.ID}/zones/{$GCE.INSTANCE.ZONE}/instances/{HOST.NAME}','','','','1','0','','Content-Type: application/json Authorization: Bearer {$GCP.AUTH.TOKEN}','0','0','0','0','0','0','0','3f82955d43694b25b1e96c9b8f4f6ffb','0','2','0'), ('45042','19','','10575','GCP Cloud SQL PostgreSQL: Databases discovery','gcp.cloudsql.pgsql.db.discovery','1h','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Databases discovery for the particular PostgreSQL instance.','0','7d','1','',NULL,'{$GCP.DATA.TIMEOUT}','https://sqladmin.googleapis.com/sql/v1beta4/projects/{$GCP.PROJECT.ID}/instances/{HOST.NAME}/databases','','','200','1','0','','Content-Type: application/json Authorization: Bearer {$GCP.AUTH.TOKEN}','0','0','0','0','0','0','0','090d05a647384858a8b9efe5502c0a76','0','2','0'), ('45044','21','','10575','Database [{#PGSQL.DB.NAME}]: Metrics raw','gcp.cloudsql.pgsql.db.metrics.get[{#PGSQL.DB.NAME}]','{$GCP.TIME.WINDOW}','0','0','0','4','','','','',NULL,NULL,E'var base_path = ''cloudsql.googleapis.com/database/postgresql/'', obj = {}; function checkParams(params) { [''project_id'', ''time_window'', ''database_id'', ''token''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); if (!params.time_window.match(/^[0-9]+(m|h)$/)) { throw ''Incorrect update interval for parameter time_window. Valid ranges 1m-23h.''; } return params; } function getField(data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field "'' + path + ''" is not present in data received.''; } data = data[step]; } return data; } function getHttpData(url, token, body) { var request = new HttpRequest(); if (typeof params.proxy !== ''undefined'' && params.proxy !== '''') { request.setProxy(params.proxy); }; request.addHeader(''Authorization: Bearer '' + token); request.addHeader(''Content-Type: application/json''); var response = request.post(url, JSON.stringify(body)); Zabbix.log(4, ''[ GCP API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from GCP API. Check debug log for more information.''; } } if (typeof response !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object. Check debug log for more information.''; } if (request.getStatus() !== 200) { if (typeof (response.error && response.error.message) !== ''undefined'') { throw response.error.message; } else { throw ''Failed to receive data: invalid response status code. Check debug log for more information.''; } } return response; }; function singleMetrics(tsd) { var result = {}; for (i in tsd) { result[getField(tsd[i], ''labelValues.4.stringValue'')] = getField(tsd[i], ''pointData.0.values.0.int64Value''); } return result; } var params = checkParams(JSON.parse(value)), filter = '' | within '' + params.time_window + " | filter database_id =''" + params.database_id + "''" + " | filter database =''" + params.database_name + "''", j_filter = filter + '' | join'', url = ''https://monitoring.googleapis.com/v3/projects/'' + params.project_id + ''/timeSeries:query'', common_paths = [''deadlock_count'', ''tuples_returned_count'', ''tuples_fetched_count''], common_raw = getHttpData(url, params.token, { query: ''{'' + common_paths.map(function (path) { return base_path + path; }).join('';'') + ''}'' + j_filter }), keys = getField(common_raw, ''timeSeriesDescriptor.pointDescriptors''), values = getField(common_raw, ''timeSeriesData.0.pointData.0.values''), re = /(^t_\\d+\\.value\\.)/g; for (i in keys) { var value_types = [''int64Value'', ''doubleValue'', ''stringValue'', ''boolValue'']; for (v in value_types) { if (typeof values[i][value_types[v]] !== ''undefined'') { obj[getField(keys[i], ''key'').replace(re, '''')] = values[i][value_types[v]]; } } } var single_paths = [''transaction_count'', ''blocks_read_count'', ''tuples_processed_count'', ''tuple_size''], single_queries = single_paths.map(function (path) { return { query: base_path + path + filter }; }); for (q in single_queries) { raw = getHttpData(url, params.token, single_queries[q]); obj = Object.assign(obj, singleMetrics(getField(raw, ''timeSeriesData''))); } return JSON.stringify(obj);','','0','','','','','2',NULL,'PostgreSQL metrics in raw format.','0','30d','0','',NULL,'{$GCP.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','7a1df30ae0c443839fe625142aea61b2','0','2','0'), ('45080','19','','10323','Get databases info','clickhouse.databases','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get information about databases.','0','30d','0','',NULL,'','{$CLICKHOUSE.SCHEME}://{$CLICKHOUSE.HOST}:{$CLICKHOUSE.PORT}/','[{"query":"select database, sum(bytes) as bytes, count(distinct table) as tables, sum(rows) as rows from system.parts where active = 1 group by database format JSON"}]','','200','1','0','','X-ClickHouse-User: {$CLICKHOUSE.USER} X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}','0','0','0','0','0','0','0','b2341064c7624848bfcac198d3b5ffa9','0','2','0'), ('45128','20','walk[1.3.6.1.4.1.9.9.48.1.1.1.2,1.3.6.1.4.1.9.9.48.1.1.1.5,1.3.6.1.4.1.9.9.48.1.1.1.6]','10218','Cisco IOS: SNMP walk memory','vm.memory.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CISCO-MEMORY-POOL-MIB Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries. http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ed5f0ebd013644adbad71e8b93d481de','0','2','0'), ('45129','20','walk[1.3.6.1.2.1.47.1.1.1.1.5,1.3.6.1.2.1.47.1.1.1.1.7,1.3.6.1.2.1.47.1.1.1.1.11]','10218','Cisco IOS: SNMP walk entity serial numbers','system.hw.serialnumber.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB Entity Serial Numbers Discovery.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1c8c82e3502c46d9b7603812d02ce27b','0','2','0'), ('45130','20','walk[1.3.6.1.4.1.9.9.109.1.1.1.1.5,1.3.6.1.4.1.9.9.109.1.1.1.1.8]','10218','Cisco IOS: SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable, indexed with cpmCPUTotalIndex. This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router, like different CPU chips, group of CPUs, or CPUs in different modules/cards. In case of a single CPU, cpmCPUTotalTable has only one entry.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3208aa4fb7c14623bc5129018172e3b9','0','2','0'), ('45131','20','walk[1.3.6.1.4.1.9.9.13.1.3.1.2,1.3.6.1.4.1.9.9.13.1.3.1.3,1.3.6.1.4.1.9.9.13.1.3.1.6]','10218','Cisco IOS: SNMP walk temperature sensors','sensor.temp.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status maintained by the environmental monitor.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e64d32fe956f481eb6a3899f8c1e09d9','0','2','0'), ('45132','20','walk[1.3.6.1.4.1.9.9.13.1.5.1.2,1.3.6.1.4.1.9.9.13.1.5.1.3]','10218','Cisco IOS: SNMP walk PSUs','sensor.psu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The table of power supply status maintained by the environmental monitor card.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0a44183c252e4160837cfd960f755097','0','2','0'), ('45133','20','walk[1.3.6.1.4.1.9.9.13.1.4.1.2,1.3.6.1.4.1.9.9.13.1.4.1.3]','10218','Cisco IOS: SNMP walk fans','sensor.fans.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering system fans.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7eb9bdaf14274e1a99c0ff2ac17f0723','0','2','0'), ('45134','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10218','Cisco IOS: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','58168a9cd5464229a9cbb3fb0c978e85','0','2','0'), ('45135','20','walk[1.3.6.1.2.1.10.7.2.1.19,1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2]','10218','Cisco IOS: SNMP walk EtherLike-MIB interfaces','net.if.duplex.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with `up(1)` Operational Status are discovered.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a8734672a10d41c2ba7c1f00171bb93e','0','2','0'), ('45136','20','walk[1.3.6.1.4.1.9.9.48.1.1.1.2,1.3.6.1.4.1.9.9.48.1.1.1.5,1.3.6.1.4.1.9.9.48.1.1.1.6]','10220','Cisco IOS: SNMP walk memory','vm.memory.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CISCO-MEMORY-POOL-MIB Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries. http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','011212452fb0421aa913ceee4f59d17b','0','2','0'), ('45137','20','walk[1.3.6.1.2.1.47.1.1.1.1.5,1.3.6.1.2.1.47.1.1.1.1.7,1.3.6.1.2.1.47.1.1.1.1.11]','10220','Cisco IOS: SNMP walk entity serial numbers','system.hw.serialnumber.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB Entity Serial Numbers Discovery.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3b92777596e2442991618e5feb47567c','0','2','0'), ('45138','20','walk[1.3.6.1.4.1.9.9.13.1.3.1.2,1.3.6.1.4.1.9.9.13.1.3.1.3,1.3.6.1.4.1.9.9.13.1.3.1.6]','10220','Cisco IOS: SNMP walk temperature sensors','sensor.temp.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status maintained by the environmental monitor.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9620c1de761246e1806fda680ede7bba','0','2','0'), ('45139','20','walk[1.3.6.1.4.1.9.9.13.1.5.1.2,1.3.6.1.4.1.9.9.13.1.5.1.3]','10220','Cisco IOS: SNMP walk PSUs','sensor.psu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The table of power supply status maintained by the environmental monitor card.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cdb1b03725624ea18071a197b7e7f21e','0','2','0'), ('45140','20','walk[1.3.6.1.4.1.9.9.13.1.4.1.2,1.3.6.1.4.1.9.9.13.1.4.1.3]','10220','Cisco IOS: SNMP walk fans','sensor.fans.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering system fans.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c5cabdb91f004235b481de453db637c6','0','2','0'), ('45141','20','walk[1.3.6.1.4.1.9.9.48.1.1.1.2,1.3.6.1.4.1.9.9.48.1.1.1.5,1.3.6.1.4.1.9.9.48.1.1.1.6]','10253','Cisco IOS: SNMP walk memory','vm.memory.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CISCO-MEMORY-POOL-MIB Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries. http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fe26641865204720a592be13d4793c99','0','2','0'), ('45142','20','walk[1.3.6.1.2.1.47.1.1.1.1.5,1.3.6.1.2.1.47.1.1.1.1.7,1.3.6.1.2.1.47.1.1.1.1.11]','10253','Cisco IOS: SNMP walk entity serial numbers','system.hw.serialnumber.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB Entity Serial Numbers Discovery.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','79968a2e878c45c290f79902e9e1cf37','0','2','0'), ('45143','20','walk[1.3.6.1.4.1.9.9.109.1.1.1.1.5]','10253','Cisco IOS: SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable, indexed with cpmCPUTotalIndex. This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router, like different CPU chips, group of CPUs, or CPUs in different modules/cards. In case of a single CPU, cpmCPUTotalTable has only one entry.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d188b4d086734f438c3752bb3d9b1971','0','2','0'), ('45144','20','walk[1.3.6.1.4.1.9.9.13.1.3.1.2,1.3.6.1.4.1.9.9.13.1.3.1.3,1.3.6.1.4.1.9.9.13.1.3.1.6]','10253','Cisco IOS: SNMP walk temperature sensors','sensor.temp.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status maintained by the environmental monitor.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7568839f76854edca01234fb707e1558','0','2','0'), ('45145','20','walk[1.3.6.1.4.1.9.9.13.1.5.1.2,1.3.6.1.4.1.9.9.13.1.5.1.3]','10253','Cisco IOS: SNMP walk PSUs','sensor.psu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The table of power supply status maintained by the environmental monitor card.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2c7987c8fb2748978fd9f3f84b5c96d5','0','2','0'), ('45146','20','walk[1.3.6.1.4.1.9.9.13.1.4.1.2,1.3.6.1.4.1.9.9.13.1.4.1.3]','10253','Cisco IOS: SNMP walk fans','sensor.fans.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering system fans.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fa5166db7ce14744817cf098c4be46f7','0','2','0'), ('45147','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10253','Cisco IOS: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cb44245cd4224bbdaa8c5546ad483848','0','2','0'), ('45148','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10449','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f40d0ccfccd748128775c7bb3f4d9177','0','2','0'), ('45149','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10449','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fe052ca02fe84ec99dfe01443be4ddf0','0','2','0'), ('45152','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10449','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a3790b7f9524491ea12c8fae01ec0121','0','2','0'), ('45153','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10449','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f553b00ae11b448cb29889e1efc171f0','0','2','0'), ('45154','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10450','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8b1edf5ca04f4a409ac64670e9cc47d5','0','2','0'), ('45155','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10450','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9499128c1774463bab250708d911a318','0','2','0'), ('45158','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10450','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0609a92c671e4d23a17cda1c2f61999d','0','2','0'), ('45159','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10450','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','026dd9264a97421f91194ddc2cea5d6c','0','2','0'), ('45160','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10451','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','263db67af47d40bc9d63639383284fff','0','2','0'), ('45161','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10451','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3ea40037cf5048cbbbd791ebf754c473','0','2','0'), ('45164','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10451','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8450323925164aa8a98411b526de8178','0','2','0'), ('45165','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10451','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a5e69b0ccb2a498ba287245bf8914985','0','2','0'), ('45166','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10452','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','89c237c439e146af9ff1e84f70330b6c','0','2','0'), ('45167','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10452','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','00bc8fe0f076428bb92c8c5cbe2de8b1','0','2','0'), ('45170','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10452','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3da4c495d5d0420abeb9612840241097','0','2','0'), ('45171','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10452','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d00e09c5cf7145b59c0c3ee462b5ec10','0','2','0'), ('45172','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10453','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f3db6fc2fa544ee8b7603024016784f3','0','2','0'), ('45173','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10453','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','601c6b5e9f224b8f861bf05a3e2ac0dd','0','2','0'), ('45176','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10453','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ba6810f58e114c5abcb0ff9c1e105d53','0','2','0'), ('45177','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10453','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9c2738cd8cde4634bf406c3fd3da5181','0','2','0'), ('45178','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10454','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ae6075aa924446c8a73be7af098aed96','0','2','0'), ('45179','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10454','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0371d3a8d3ba4977b118a1d2c8a37c71','0','2','0'), ('45182','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10454','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6f7af549a539443eb2ea18383157e818','0','2','0'), ('45183','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10454','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','940603fe2a43458584566823954d7106','0','2','0'), ('45184','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10455','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','757ab436c2aa4500a6800ec367cdd109','0','2','0'), ('45185','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10455','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9dff6be2d3694e84aacf544f3e859790','0','2','0'), ('45188','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10455','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','409c178fb90841ffb1f2825c4eb01140','0','2','0'), ('45189','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10455','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2848d2045f9c4a76ac49bee199f622d7','0','2','0'), ('45190','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10456','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1fcdd40fa482412bbd5045c0b453c662','0','2','0'), ('45191','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10456','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','53bc8450cca74b67bde3405684dd26a9','0','2','0'), ('45194','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10456','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a2e6607f1e83434bb1ae4d14727613f1','0','2','0'), ('45195','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10456','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9838b7f90f4242c9abf16e39b7a7da81','0','2','0'), ('45196','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10457','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','be26aef4d3d54c5289ecbddd5cf65d49','0','2','0'), ('45197','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10457','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1cd91800dd174e29a159df144a897586','0','2','0'), ('45200','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10457','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b3cda334d0ed432781c81d0330f6c449','0','2','0'), ('45201','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10457','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','462a235c5c604d689f2d50bf880d5dee','0','2','0'), ('45202','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10458','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d35b717a39b44521b4cf3c9f66d090cc','0','2','0'), ('45203','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10458','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','84ba58953f8e4ee7ad5c8a3278253136','0','2','0'), ('45206','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10458','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2d2521940a8b421496c046de602748ad','0','2','0'), ('45207','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10458','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e4642df48e6e46ae878f8bbee74bfe1d','0','2','0'), ('45208','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10459','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9d427efe6eda4905a4ea8838807a3aec','0','2','0'), ('45209','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10459','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9a83fbe37f80430f986267edf2a52d4f','0','2','0'), ('45212','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10459','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d11712ab5740403f8ce5172310ce6f46','0','2','0'), ('45213','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10459','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c94d1e5e789f4521bca649ff8106b4ab','0','2','0'), ('45214','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10460','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','040616eaf53849ecbc02a4c7dea5ebd1','0','2','0'), ('45215','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10460','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bfb0d94318e1416ba02a6d691a72e5a9','0','2','0'), ('45218','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10460','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6704e6cb375f4c1fa6ba5dd0d7cc48b7','0','2','0'), ('45219','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10460','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7eea07e69bb74773b4741a220560dc21','0','2','0'), ('45220','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10461','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fa0703e764af4de88dd966d296da4cea','0','2','0'), ('45221','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10461','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f2572809e413471fa91f33189f575dc4','0','2','0'), ('45224','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10461','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','20bfa7ce2793454a9c6215dc31c1c3a2','0','2','0'), ('45225','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10461','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bdb027dba5ee41ad9213b392a20b42f2','0','2','0'), ('45226','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10462','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1ae38813c9984ddd8aae451c727200b3','0','2','0'), ('45227','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10462','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e8edfe1c42b048e69048164c04f24c99','0','2','0'), ('45230','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10462','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6cf5e50c19624d41bf53759f0dc10b4b','0','2','0'), ('45231','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10462','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0d99f44d8cd946c080edf97cdd666c4e','0','2','0'), ('45232','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10463','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3d10f1085341451cba47f63b06a4a06f','0','2','0'), ('45233','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10463','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d012ab84c8d6422cb087607c6d840358','0','2','0'), ('45236','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10463','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b78240b0045d4816a6df23d650063d5e','0','2','0'), ('45237','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10463','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7a119a4a9a8c4da0972b5ce82723d645','0','2','0'), ('45238','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10464','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e70529cb6c5745a688ab44cf3bf4fd79','0','2','0'), ('45239','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10464','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d449d74135b2411bada1c4f861fc471c','0','2','0'), ('45242','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10464','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4776694f7d35412e9269dcda24a9a884','0','2','0'), ('45243','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10464','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6eea8e195ed24eefa9cb2c11df07683b','0','2','0'), ('45244','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10465','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e4aa12d55f344d8e8a2f78ebb2242db8','0','2','0'), ('45245','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10465','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b448f8cfabf640ae9f61470baf2dbab1','0','2','0'), ('45248','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10465','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c0063fa878ba4844b1a81eec31be3a8e','0','2','0'), ('45249','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10465','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5ec4870e9f7c43c3878cf05e1f4dbf09','0','2','0'), ('45250','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10466','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','37778f9029cd486fbeedd2db776d7d8f','0','2','0'), ('45251','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10466','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cd348b7d795641c8ba04fa4eab0f312d','0','2','0'), ('45254','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10466','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','633c28cb77e345edb42366280afe8b03','0','2','0'), ('45255','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10466','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','beda6c376a0e46ee8558a0084690eeb4','0','2','0'), ('45256','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10467','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1ad2255031b94fd8a344a9436f2154af','0','2','0'), ('45257','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10467','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b555f355a97e4a1998ebb08df62c380e','0','2','0'), ('45260','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10467','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8c82a88fd1e84ebc8b364e25cd454b43','0','2','0'), ('45261','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10467','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f5e5336f6421402b8c5b2ea6df651c21','0','2','0'), ('45262','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10468','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bf66ea54f8874cc89bb11a4a3c325d1f','0','2','0'), ('45263','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10468','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','be3ad72bd2164a5cba49bc9423c97595','0','2','0'), ('45266','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10468','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e5776492fa6f4d71a1897a7cfa6b6917','0','2','0'), ('45267','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10468','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','150711267ef340699fe081bb23e7331f','0','2','0'), ('45268','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10469','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4b74f8ee93c742649c4b0b663338befa','0','2','0'), ('45269','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10469','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d3a059306c60489dbf7a7417f3a1e072','0','2','0'), ('45272','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10469','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8f509a71c40348ba9502fd6eeb795589','0','2','0'), ('45273','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10469','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1b6cbc7e31c0454c901e424757751474','0','2','0'), ('45274','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10470','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','27b2bb60cd234327bd82b0016d723e32','0','2','0'), ('45275','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10470','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c56b7dd474b64fb59d5088340e0de6c0','0','2','0'), ('45278','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10470','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f4110ec0e7474808a9d0111fe64a9bc8','0','2','0'), ('45279','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10470','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8b36357da06d4185815f5cd6f62bac4a','0','2','0'), ('45280','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10471','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2529412985f84e19a5516eff963a8498','0','2','0'), ('45281','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10471','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3760283279a4405fa74cd33f352731e6','0','2','0'), ('45284','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10471','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3fb9a05330114b8bacbe7f172a782063','0','2','0'), ('45285','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10471','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fddaf4522c1f4d18af49e3bccbc63ee3','0','2','0'), ('45286','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10472','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7ec72049975a4c9d8597414e898055ab','0','2','0'), ('45287','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10472','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9b4fcab963ff43adb954043ac7e310a0','0','2','0'), ('45290','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10472','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a352e9a765d441a1ab10e6966fb27dfd','0','2','0'), ('45291','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10472','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','124fa909031144c5b26c91c2f5cb71a1','0','2','0'), ('45292','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10473','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','31743a0c3cb14763a68b81cc715f6658','0','2','0'), ('45293','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10473','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d26a15dbe3bf4358adbc8c423c4387fc','0','2','0'), ('45296','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10473','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ac29915d449346a48c951d4b784e3c5f','0','2','0'), ('45297','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10473','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','27e581ee8e544c2598c03060bb77c087','0','2','0'), ('45298','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10474','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','93c10a76cad8418b874104acf355874c','0','2','0'), ('45299','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10474','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5a818c4ca96d4de5ae22a08f05005619','0','2','0'), ('45302','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10474','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0701e676a22f4ef894e4180f4ef3e2e4','0','2','0'), ('45303','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10474','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','352106c95d3f42b39c90b3eb69832ec0','0','2','0'), ('45304','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10475','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d9dad10e76a949bd8447e97f6b566ba8','0','2','0'), ('45305','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10475','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2e69894166ce430f8a7bf30e51948684','0','2','0'), ('45308','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10475','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1e02843c30d241f8bcf0dd63715fda44','0','2','0'), ('45309','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10475','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7c6d299419b845b99644d879daa6b0e1','0','2','0'), ('45310','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10476','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','85468f79d320417ea0f0e28087c75565','0','2','0'), ('45311','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10476','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','778d3453ddb84b53ac3598bf8ae78286','0','2','0'), ('45314','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10476','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0ca8eb8ed89a4e1eb5f4b40050a3fa7a','0','2','0'), ('45315','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10476','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9ef56761ca344a9a8774ad109bc00834','0','2','0'), ('45316','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10477','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e1fc1f83c9754629ba9c77af9edcaabe','0','2','0'), ('45317','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10477','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','eae8e0a3cf144efc8decc672413bf511','0','2','0'), ('45320','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10477','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c5ff7db372af4f2b92dfe19d45ee1b9d','0','2','0'), ('45321','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10477','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9aa7461f98fa4a5db662b35466b0b102','0','2','0'), ('45322','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10478','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0a7e39d9bd554b578f41eb1c03b14523','0','2','0'), ('45323','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10478','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','56d7791a6ba84e47b5042a035cf9a1ee','0','2','0'), ('45326','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10478','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2b5526a8b35c4733bbb79606d7818749','0','2','0'), ('45327','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10478','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','afec8f57e23f42b2837fb036952f649c','0','2','0'), ('45328','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10479','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c1e35414044f415fae94d45754fb5c8f','0','2','0'), ('45329','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10479','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','42b758a3d32b46499e2242fb083896f5','0','2','0'), ('45332','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10479','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d09dfb0d4a7141d797d8f48b97564953','0','2','0'), ('45333','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10479','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','65e7c0f418a94507a124ae74e9ba302b','0','2','0'), ('45334','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10480','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b0efa7e7c390457b860529cd06839d09','0','2','0'), ('45335','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10480','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','eace29d74902498794e0b471d478e42b','0','2','0'), ('45338','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10480','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5c2f6f54f1b7498fa4c038a6cd8e1f26','0','2','0'), ('45339','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10480','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cc31d87a9f76429d9063aa89c1e99229','0','2','0'), ('45340','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10481','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','32ee0bad03f64031b06626fd4ad22991','0','2','0'), ('45341','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10481','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cf0b87d2fca34aa0b99d58251f438c27','0','2','0'), ('45344','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10481','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2f44c6ec36f442b490cac1231bbad884','0','2','0'), ('45345','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10481','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3416ecf2fd304658b724b3c0f5de202e','0','2','0'), ('45346','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10482','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d86496cfc8444af2aabc000e6a80b689','0','2','0'), ('45347','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10482','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1cd88ad46ac74b3cb6da7702f7eade1b','0','2','0'), ('45350','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10482','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b0ae9aa61be043309a13e2675ba8fc3d','0','2','0'), ('45351','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10482','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','315cf9b2115041108a9c509650b4934d','0','2','0'), ('45352','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10483','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c0b8af43957d41bd8b69e6512f6b6a6a','0','2','0'), ('45353','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10483','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2f7865bcd7ec419bbf6598b2e8e41c39','0','2','0'), ('45356','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10483','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0402d2260bea47fba074bd90e441dd88','0','2','0'), ('45357','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10483','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','63022c75670f4965bf5f9ffe2ae5ce98','0','2','0'), ('45358','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10484','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','37a9d23461a8465a848d0adebbb5e5e1','0','2','0'), ('45359','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10484','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','09408704f52d4a8abd39fc674319a385','0','2','0'), ('45362','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10484','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8fabcdd6078443f1b27add9103ac8e73','0','2','0'), ('45363','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10484','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','392f67c076ea43bd8fb2e356e0b11ebb','0','2','0'), ('45364','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10485','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2c92b96aea704a1f9d2140e1a69a6e52','0','2','0'), ('45365','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10485','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ff529ff6cb624b9092ab5d06ddfeb6a9','0','2','0'), ('45368','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10485','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','22988243945244b0a8170aa3e50f904e','0','2','0'), ('45369','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10485','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ee7ed053257048ffa7edae3b2b0a100f','0','2','0'), ('45370','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10486','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6ff6648e94ea41198a454e9fe2c95c83','0','2','0'), ('45371','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10486','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','29d5c318ee4b4a76bed39f0caa1a4ed1','0','2','0'), ('45374','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10486','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','05b58973c1d446fb9093253f30c3478e','0','2','0'), ('45375','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10486','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2e4c6db52cf54c12afcc627a746c56c1','0','2','0'), ('45376','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10487','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d170f05138c34010b66e2bf13a40685d','0','2','0'), ('45377','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10487','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6f7e1d9451304f0788a95297eca8c5a5','0','2','0'), ('45380','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10487','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5f06a59ecc054d609afee34922983993','0','2','0'), ('45381','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10487','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','90beada4eaac4ebe87cceb3b07e4ef54','0','2','0'), ('45382','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10488','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f55f9ec7c2c1456295be98b7e47b3b02','0','2','0'), ('45383','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10488','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','150579efc2dd48c28f7cbc1d2186fa8b','0','2','0'), ('45386','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10488','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','77f78108b48c4d81a922bd23f233466f','0','2','0'), ('45387','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10488','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','77509cb42fce4c169c6057f146a8b79a','0','2','0'), ('45388','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10489','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c654378ae0234392b1526df325125b0a','0','2','0'), ('45389','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10489','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dd634cc1e804449b90693bf1925dc3d4','0','2','0'), ('45392','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10489','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3d2748be91c24dc69202b9fed8ecd8b8','0','2','0'), ('45393','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10489','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aec4de5980224cb8b4f7e573866ea86d','0','2','0'), ('45394','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10490','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ad95f1d123f54de3a2b06dfa32e25eed','0','2','0'), ('45395','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10490','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ed241d40ab044cb3ade0c7b4b504cade','0','2','0'), ('45398','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10490','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','44d98891c0a04a8680fe30331f0e44ac','0','2','0'), ('45399','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10490','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2999403c64bb45cfb237d11fa8392562','0','2','0'), ('45400','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10491','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','376db50b5a4e41cc9e6a2d6e0034639c','0','2','0'), ('45401','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10491','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','50b5f8dc5e3042cdac11d97d7cce14bd','0','2','0'), ('45404','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10491','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','debb90a64e164da098f27fe0a44fd18e','0','2','0'), ('45405','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10491','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8f59fcb385c5452f93b3d893522a9917','0','2','0'), ('45406','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10492','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0d3a2f07ab8643668864e90203bdaaa1','0','2','0'), ('45407','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10492','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4ee3bbf180a749d6ab35bed974677b8d','0','2','0'), ('45410','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10492','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3724f2b9d41d4cb7952734a3f96393a8','0','2','0'), ('45411','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10492','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9d86b3b5ece7456fb4baa3b557bed1c1','0','2','0'), ('45412','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10493','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a1747b98b45d40d8beb2be1806180a86','0','2','0'), ('45413','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10493','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d95cb59429ac4d50845abefc5b0d4a6b','0','2','0'), ('45416','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10493','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6ac6276902234fe085ae6fa3afe94c16','0','2','0'), ('45417','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10493','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bcbea364e6264d6a81052e19fb308de9','0','2','0'), ('45418','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10494','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5350a6c911424c839afe59812e0be1e0','0','2','0'), ('45419','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10494','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6b4efaf2db754ab3a228fa8eaae62c82','0','2','0'), ('45422','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10494','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7960fa31620c466b83b333a2045b5763','0','2','0'), ('45423','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10494','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','82e17ef7dc8e4a0eab8cbd22a5debb8b','0','2','0'), ('45424','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10495','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a40f18da3905480aa83619354feb63d3','0','2','0'), ('45425','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10495','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','78849e4286984e72ab462795c2f29b03','0','2','0'), ('45428','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10495','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','02b9eb47a0a646ea88c4d8afaa24afd7','0','2','0'), ('45429','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10495','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','15263d03b5bc40eda79495ba51042d7f','0','2','0'), ('45430','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10496','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8756dffb1a514c7c8395783689c774e7','0','2','0'), ('45431','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10496','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9244bd8596854d6eb586cd7686ec25e6','0','2','0'), ('45434','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10496','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1b22814a8b02449391c1aae1d1f25ceb','0','2','0'), ('45435','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10496','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e5abe1d4af994d86a2aeebf97ebca324','0','2','0'), ('45436','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10497','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','64d260bc3e5240309575d88c93ea8cdf','0','2','0'), ('45437','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10497','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f2d1ab4e84554749ae28567b4031e6fd','0','2','0'), ('45440','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10497','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c08c6737b99140caa73d2a81cc86f9e9','0','2','0'), ('45441','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10497','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','75214946ec7b4b0bbc8e86f9e83b7f7c','0','2','0'), ('45442','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10498','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5d66a2c3f54543908039c46cdd3e4f76','0','2','0'), ('45443','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10498','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e1120e04fc1344bebf89ec883fdd0e00','0','2','0'), ('45446','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10498','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b3383829ce684182b78dabfa908c00c2','0','2','0'), ('45447','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10498','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','934a7b99f99844ea8fac5c4c3b799898','0','2','0'), ('45448','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10499','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f65b50872b6c4ad59943002667e2fadf','0','2','0'), ('45449','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10499','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','92ff237e1b074d35b47e029168cd9f14','0','2','0'), ('45452','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10499','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e470f22a8f114567a98d50b0b440dfcd','0','2','0'), ('45453','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10499','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d3667df2f5684e479c579c48f84c8015','0','2','0'), ('45454','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10500','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cf99345bee674cd3bced77141bb267c3','0','2','0'), ('45455','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10500','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0d8544ddbb6947bbb005cec3304317a1','0','2','0'), ('45458','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10500','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','616f1ecdc8fa4f9fbdb4a967ef3148d5','0','2','0'), ('45459','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10500','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','94e1ebf58d8d43ba95ab7e6264887dfb','0','2','0'), ('45460','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10501','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','731f08c5f7004052a54842a51b04da2f','0','2','0'), ('45461','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10501','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2eb45102f7ef4abc9ee58548ea98c774','0','2','0'), ('45464','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10501','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c300402ec1054fea9d51f561ed0a9540','0','2','0'), ('45465','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10501','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2fbbb3ab2ea24c79b2d17d626eb9d9e4','0','2','0'), ('45466','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10502','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7b4cbeded8984cb881e5502258af4fe4','0','2','0'), ('45467','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10502','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fc274078fc4f4a70b85572e1ebabb681','0','2','0'), ('45470','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10502','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b1acc89ec5a44933aee32f7fce4bef74','0','2','0'), ('45471','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10502','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a7a673b6f0cd4d588828028caba5d8c7','0','2','0'), ('45472','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10233','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering mounted filesystems.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2af6a2f85926468ab8242e4f5c6fb096','0','2','0'), ('45473','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.2.1.25.3.3.1.2]','10233','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2f9bb0334ae74e22b3ff917dec5fa924','0','2','0'), ('45476','20','walk[1.3.6.1.4.1.14988.1.1.14.1.1.2,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.7,1.3.6.1.4.1.14988.1.1.16.1.1.2,1.3.6.1.4.1.14988.1.1.16.1.1.4,1.3.6.1.4.1.14988.1.1.16.1.1.3,1.3.6.1.4.1.14988.1.1.16.1.1.7,1.3.6.1.4.1.14988.1.1.1.3.1.4,1.3.6.1.4.1.14988.1.1.1.3.1.8,1.3.6.1.4.1.14988.1.1.1.3.1.9,1.3.6.1.4.1.14988.1.1.1.3.1.6,1.3.6.1.4.1.14988.1.1.1.3.1.11,1.3.6.1.4.1.14988.1.1.1.7.1.5,1.3.6.1.4.1.14988.1.1.1.7.1.4,1.3.6.1.4.1.14988.1.1.1.7.1.2,1.3.6.1.4.1.14988.1.1.1.7.1.3]','10233','SNMP walk wireless interfaces','net.if.wireless.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a23fdffc346b4adb833924d9975542c2','0','2','0'), ('45477','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10233','Mikrotik: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3eaa90d933914ba18663ebf21c4675bb','0','2','0'), ('45478','20','walk[1.3.6.1.4.1.11863.6.4.1.2.1.1.1,1.3.6.1.4.1.11863.6.4.1.2.1.1.2]','10236','SNMP walk memory','vm.memory.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering TPLINK-SYSMONITOR-MIB::tpSysMonitorMemoryTable, displays the memory utilization of all UNITs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4ac2fe58877e4a8ab1dedb38fe41ef3e','0','2','0'), ('45479','20','walk[1.3.6.1.4.1.11863.6.4.1.1.1.1.1,1.3.6.1.4.1.11863.6.4.1.1.1.1.3]','10236','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering TPLINK-SYSMONITOR-MIB::tpSysMonitorCpuTable, displays the CPU utilization of all UNITs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ae66a99ae15d4fe98e513745978c2ce4','0','2','0'), ('45480','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.10,1.3.6.1.2.1.2.2.1.16,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.2.2.1.5]','10236','TP-LINK: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0cf11e0dfd3b47f1a0a5d8f011e6517b','0','2','0'), ('45481','20','walk[1.3.6.1.4.1.2021.9.1.1,1.3.6.1.4.1.2021.9.1.2,1.3.6.1.4.1.2021.9.1.3,1.3.6.1.4.1.2021.9.1.10,1.3.6.1.4.1.2021.9.1.11,1.3.6.1.4.1.2021.9.1.12,1.3.6.1.4.1.2021.9.1.13,1.3.6.1.4.1.2021.9.1.14,1.3.6.1.4.1.2021.9.1.15,1.3.6.1.4.1.2021.9.1.16]','10248','SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB Snmp walk through dskEntry table. Collected data used in filesystem lld and dependent item prototypes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8ad72047f03a452f9698254fe6b4ffd2','0','2','0'), ('45482','20','walk[1.3.6.1.4.1.2021.13.15.1.1.2,1.3.6.1.4.1.2021.13.15.1.1.5,1.3.6.1.4.1.2021.13.15.1.1.6,1.3.6.1.4.1.2021.13.15.1.1.9]','10248','SNMP walk block devices','vfs.dev.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Block devices are discovered from UCD-DISKIO-MIB::diskIOTable (http://net-snmp.sourceforge.net/docs/mibs/ucdDiskIOMIB.html#diskIOTable).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','94c5ede90a50467989a4559e51c0bcef','0','2','0'), ('45483','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.4.1.2021.11.53.0,1.3.6.1.4.1.2021.11.52.0,1.3.6.1.4.1.2021.11.50.0,1.3.6.1.4.1.2021.11.64.0,1.3.6.1.4.1.2021.11.61.0,1.3.6.1.4.1.2021.11.51.0,1.3.6.1.4.1.2021.11.54.0,1.3.6.1.4.1.2021.11.56.0,1.3.6.1.4.1.2021.11.65.0,1.3.6.1.4.1.2021.11.66.0]','10248','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fb2a968ed48f4c6287da2b06bc3b95f3','0','2','0'), ('45484','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10248','Linux: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','661b9bbeb1f146da9c0d9bfa8e5f26d5','0','2','0'), ('45485','20','walk[1.3.6.1.2.1.10.7.2.1.19,1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2]','10248','Linux: SNMP walk EtherLike-MIB interfaces','net.if.duplex.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with `up(1)` Operational Status are discovered.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','da392895de1c447eb5d3f1f950360639','0','2','0'), ('45486','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.10,1.3.6.1.2.1.2.2.1.16,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.31.1.1.1.15,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20]','10249','Windows: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','649fb89829c04fe9bec44e942aeb2b42','0','2','0'), ('45487','20','walk[1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.4,1.3.6.1.2.1.25.2.3.1.6,1.3.6.1.2.1.25.2.3.1.5]','10249','Windows: SNMP walk mounted filesystems','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'HOST-RESOURCES-MIB::hrStorage discovery.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bab2a178a60c4dddae8f11f8be344339','0','2','0'), ('45488','5','','10048','Discovery queue','zabbix[discovery_queue]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of values enqueued in the discovery queue.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ca8a1cafec6e44a4b31f9ec5a6ed00cb','0','2','0'), ('45489','5','','10048','Utilization of discovery manager internal processes, in %','zabbix[process,discovery manager,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the discovery manager processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','930bf9db6c754a17ab5026961d6369ba','0','2','0'), ('45490','5','','10048','Utilization of discovery worker internal processes, in %','zabbix[process,discovery worker,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the discovery worker processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','eeee7e927a854b61b166a13b8eb98f28','0','2','0'), ('45494','5','','10047','Discovery queue','zabbix[discovery_queue]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of values enqueued in the discovery queue.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8e02b4a9afbb4ae994f2210aac8aab83','0','2','0'), ('45495','5','','10047','Utilization of discovery manager internal processes, in %','zabbix[process,discovery manager,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the discovery manager processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0a06a1b172c14e068cfc4ecee1511ffc','0','2','0'), ('45496','5','','10047','Utilization of discovery worker internal processes, in %','zabbix[process,discovery worker,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the discovery worker processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a88bad7225d3417da697220615252226','0','2','0'), ('45511','5','','10048','Utilization of agent poller data collector processes, in %','zabbix[process,agent poller,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the agent poller processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','998df832cf58436ea7707331338d5f3b','0','2','0'), ('45512','5','','10048','Utilization of http agent poller data collector processes, in %','zabbix[process,http agent poller,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the http agent poller processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','584c5ee90cff40e2befc38061ce8e7e7','0','2','0'), ('45515','5','','10047','Utilization of agent poller data collector processes, in %','zabbix[process,agent poller,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the agent poller processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','47f983079b064558976fb3cf5d50d742','0','2','0'), ('45516','5','','10047','Utilization of http agent poller data collector processes, in %','zabbix[process,http agent poller,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the http agent poller processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','71934ae835034df5b9ce97eeb859b96b','0','2','0'), ('45521','21','','10582','Get daily costs','aws.get.daily.costs','0s;h/6','0','0','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, metadata: ''http://169.254.169.254/latest/'', getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''POST'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload), ''''), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''region''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); today = new Date(); AWS.params.end_date = today.toDateString(); today.setDate(today.getDate() - 1); AWS.params.start_time = today.toDateString(); }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, request: function (method, region, service, params, data, target) { if (typeof data === ''undefined'' || data === null) { data = ''''; } else { data = JSON.stringify(data); } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''), canonical_uri = ''/'', host = service + ''.'' + region + ''.amazonaws.com'', canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date'', canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''x-amz-content-sha256:'' + sha256(data)); request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/x-amz-json-1.1''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''X-Amz-Target: '' + target); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + (AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken)); } Zabbix.log(4, ''[ AWS Billing ] Sending request: '' + url); response = request.post(url, data); Zabbix.log(4, ''[ AWS Billing ] Received response with the status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with the status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse the response received from AWS API. Check debug log for more information.''; } return response; }, getCostAndUsage: function () { var body_raw_cost = { ''TimePeriod'': { ''Start'': AWS.params.start_time, ''End'': AWS.params.end_date }, ''Granularity'': ''DAILY'', ''GroupBy'': [ { ''Type'': ''DIMENSION'', ''Key'': ''SERVICE'' } ], ''Metrics'': [''BlendedCost''] }; return AWS.getField(AWS.request(''POST'', AWS.params.region, ''ce'', '''', body_raw_cost, ''AWSInsightsIndexService.GetCostAndUsage''), ''ResultsByTime''); } }; try { AWS.setParams(JSON.parse(value)); return JSON.stringify(AWS.getCostAndUsage()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS Billing ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'Get raw data on the daily costs by service.','0','30d','0','',NULL,'15s','','','','200','1','0','','','0','0','0','0','0','0','0','5bfda2617dfc43edbe524a5c44b39f18','0','2','0'), ('45522','21','','10582','Get monthly costs','aws.get.monthly.costs','0s;h9','0','0','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, metadata: ''http://169.254.169.254/latest/'', getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''POST'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload), ''''), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''region'', ''month''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); today = new Date(); AWS.params.end_date = today.toDateString(); month = today.getMonth(); today.setMonth(month - params.month); AWS.params.start_time = new Date(today.getFullYear(), today.getMonth()).toDateString(); }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, request: function (method, region, service, params, data, target) { if (typeof data === ''undefined'' || data === null) { data = ''''; } else { data = JSON.stringify(data); } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''), canonical_uri = ''/'', host = service + ''.'' + region + ''.amazonaws.com'', canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date'', canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''x-amz-content-sha256:'' + sha256(data)); request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/x-amz-json-1.1''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''X-Amz-Target: '' + target); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + (AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken)); } Zabbix.log(4, ''[ AWS Billing ] Sending request: '' + url); response = request.post(url, data); Zabbix.log(4, ''[ AWS Billing ] Received response with the status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with the status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse the response received from AWS API. Check debug log for more information.''; } return response; }, getCostMonth: function () { var body_raw_cost = { ''TimePeriod'': { ''Start'': AWS.params.start_time, ''End'': AWS.params.end_date }, ''Granularity'': ''MONTHLY'', ''Metrics'': [''BlendedCost''] }; result = AWS.getField(AWS.request(''POST'', AWS.params.region, ''ce'', '''', body_raw_cost, ''AWSInsightsIndexService.GetCostAndUsage''), ''ResultsByTime''); return result.map(function (data) { return { ''amount'': AWS.getField(data, ''Total.BlendedCost.Amount''), ''unit'': AWS.getField(data, ''Total.BlendedCost.Unit''), ''month'': AWS.getField(data, ''TimePeriod.Start'').slice(0, 7) }; }); }, getCostMonthService: function () { var body_raw_cost = { ''TimePeriod'': { ''Start'': AWS.params.start_time, ''End'': AWS.params.end_date }, ''GroupBy'': [ { ''Type'': ''DIMENSION'', ''Key'': ''SERVICE'' } ], ''Granularity'': ''MONTHLY'', ''Metrics'': [''BlendedCost''] }; MetricData = AWS.getField(AWS.request(''POST'', AWS.params.region, ''ce'', '''', body_raw_cost, ''AWSInsightsIndexService.GetCostAndUsage''), ''ResultsByTime''); var services = []; MetricData.forEach(function (data) { month = AWS.getField(data, ''TimePeriod.Start'').slice(0, 7); groups = AWS.getField(data, ''Groups''); groups.forEach(function (group) { group.month = month; services.push(group); }) }); return services; } }; try { AWS.setParams(JSON.parse(value)); monthly_costs = AWS.getCostMonth(); monthly_service_costs = AWS.getCostMonthService(); return JSON.stringify({ monthly_costs, monthly_service_costs }); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS Billing ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'Get raw data on the monthly costs by service.','0','30d','0','',NULL,'15s','','','','200','1','0','','','0','0','0','0','0','0','0','7139ce562d3c439e9686ad5b17ed0f1c','0','2','0'), ('45529','21','','10583','Get alarms data','aws.ecs.get_alarms','0s;m/1','0','0','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, metadata: ''http://169.254.169.254/latest/'', getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''GET'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload), ''''), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''region'', ''cluster_name''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, request: function (method, region, service, params, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''), host = service + ''.'' + region + ''.amazonaws.com'', canonical_uri = ''/'', canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date'', canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + (AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken)); } Zabbix.log(4, ''[ AWS ECS ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ AWS ECS ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { try { response = JSON.parse(XML.toJson(response)); } catch (error) { throw ''Failed to parse response received from AWS CloudWatch API. Check debug log for more information.''; } } return response; }, getAlarms: function () { var payload = { ''Action'': ''DescribeAlarms'', ''Version'': ''2010-08-01'', ''MaxRecords'': 100 }, result = []; while (payload.NextToken !== '''') { var alarms = AWS.getField(AWS.request(''GET'', AWS.params.region, ''monitoring'', AWS.prepareParams(payload)), ''DescribeAlarmsResponse.DescribeAlarmsResult''); payload.NextToken = alarms.NextToken || ''''; alarms_list = AWS.getField(alarms, ''MetricAlarms''); if (!Array.isArray(alarms_list)) alarms_list = [alarms_list]; alarms_list.forEach(function (alarm) { var dimensions = alarm.Dimensions; Zabbix.log(4, ''[ AWS ECS ] dimensions: '' + JSON.stringify(dimensions)); if (Array.isArray(alarm.Metrics)) { alarm.Metrics.forEach(function (metric) { if (typeof metric.MetricStat === ''object'' && metric.MetricStat !== null && typeof metric.MetricStat.Metric === ''object'' && metric.MetricStat.Metric !== null && Array.isArray(metric.MetricStat.Metric.Dimensions)) { dimensions = dimensions.concat(metric.MetricStat.Metric.Dimensions); } }); } for (var i in dimensions) { if (dimensions[i].Name === ''ClusterName'' && dimensions[i].Value === AWS.params.cluster_name) { result.push(alarm); break; } } }); } return result; } } try { AWS.setParams(JSON.parse(value)); return JSON.stringify(AWS.getAlarms()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS ECS ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'Get alarms data. DescribeAlarms API method: https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_DescribeAlarms.html','0','30d','0','',NULL,'15s','','','','200','1','0','','','0','0','0','0','0','0','0','9aefed8b23ee41a7941e41f33fc95ebe','0','2','0'), ('45530','21','','10583','Get cluster services','aws.ecs.get_cluster_services','5m','0','0','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, metadata: ''http://169.254.169.254/latest/'', getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''GET'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload)), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''region'', ''cluster_name''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); }, getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, request: function (method, region, service, params, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''), canonical_uri = ''/'', host = service + ''.'' + region + ''.amazonaws.com'', canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date'', canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''x-amz-content-sha256:'' + sha256(data)); request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/x-www-form-urlencoded''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + (AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken)); } Zabbix.log(4, ''[ AWS ECS ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ AWS ECS ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { try { response = JSON.parse(XML.toJson(response)); } catch (error) { throw ''Failed to parse response received from AWS CloudWatch API. Check debug log for more information.''; } } return response; }, listServices: function () { var payload = { ''Action'': ''ListServices'', ''Version'': ''2014-11-13'', ''maxResults'': 100, ''cluster'': AWS.params.cluster_name }, services = []; while (payload.nextToken !== '''') { var services_list = AWS.getField(AWS.request(''GET'', AWS.params.region, ''ecs'', AWS.prepareParams(payload)), ''ListServicesResponse.ListServicesResult''); payload.nextToken = services_list.nextToken || ''''; services_arns = AWS.getField(services_list, ''serviceArns''); for (k in services_arns) { id = services_arns[k]; json = {}; input = id.split(AWS.params.cluster_name + ''/''); for (var i = 1; i < input.length; i += 2) { json[input[i]] = input[i + 1]; } services.push({ ''service_name'': input[1], }); } }; if (Array.isArray(services)) return services; else return [services]; } }; try { AWS.setParams(JSON.parse(value)); return JSON.stringify(AWS.listServices()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS ECS ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'Get cluster services. Full metrics list related to ECS: https://docs.aws.amazon.com/AmazonECS/latest/userguide/metrics-dimensions.html','0','30d','0','',NULL,'15s','','','','200','1','0','','','0','0','0','0','0','0','0','fa8f1dc24615438e98cbad686d40eaf7','0','2','0'), ('45531','21','','10583','Get cluster metrics','aws.ecs.get_metrics','0s;m/1','0','0','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, request_period: 600, metadata: ''http://169.254.169.254/latest/'', getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''GET'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload), ''''), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''region'', ''cluster_name''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); }, getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, prepareRecursive: function (prefix, param) { var result = {}; if (typeof param === ''object'') { if (Array.isArray(param)) { param.forEach(function (value, index) { var nested = AWS.prepareRecursive(prefix + ''.member.'' + (index + 1), value); Object.keys(nested).forEach(function (key) { result[key] = nested[key]; }); }); } else { Object.keys(param).forEach(function (k) { var nested = AWS.prepareRecursive(prefix + ''.'' + k, param[k]); Object.keys(nested).forEach(function (key) { result[key] = nested[key]; }); }); } } else { result[prefix] = param; } return result; }, renderPayload: function (period, cluster_name) { var metrics_list = [ ''ContainerInstanceCount:Count'', ''ServiceCount:Count'', ''CpuReserved:None'', ''CpuUtilized:None'', ''MemoryReserved:Megabytes'', ''MemoryUtilized:Megabytes'', ''NetworkRxBytes:Bytes/Second'', ''NetworkTxBytes:Bytes/Second'', ''StorageReadBytes:Bytes'', ''StorageWriteBytes:Bytes'', ''TaskCount:Count'' ]; var metric_payload = []; metrics_list.forEach(function (metric) { var parts = metric.split('':'', 2); var name = parts[0].replace(/[^a-zA-Z0-9]/g, ''''); metric_payload.push({ ''Id'': name.charAt(0).toLowerCase() + name.slice(1), ''MetricStat'': { ''Metric'': { ''MetricName'': parts[0], ''Namespace'': ''ECS/ContainerInsights'', ''Dimensions'': [ { ''Name'': ''ClusterName'', ''Value'': cluster_name } ] }, ''Period'': period, ''Stat'': ''Average'', ''Unit'': parts[1] } }); }); return metric_payload; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, request: function (method, region, service, params, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''), host = service + ''.'' + region + ''.amazonaws.com'', canonical_uri = ''/'', canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date'', canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + (AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken)); } Zabbix.log(4, ''[ AWS ECS ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ AWS ECS ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { try { response = JSON.parse(XML.toJson(response)); } catch (error) { throw ''Failed to parse response received from AWS CloudWatch API. Check debug log for more information.''; } } return response; }, getMetricsData: function () { var timestamp = new Date().getTime(), MetricData = [], CPUUtilization, MemoryUtilization, DiskUtilization, obj = {}, metrics = [''CpuReserved'', ''CpuUtilized'', ''MemoryReserved'', ''MemoryUtilized''], end_time = new Date(timestamp).toISOString().replace(/\\.\\d+Z/, ''Z''), start_time = new Date(timestamp - AWS.request_period * 1000).toISOString().replace(/\\.\\d+Z/, ''Z''), payload = AWS.prepareRecursive(''MetricDataQueries'', AWS.renderPayload(AWS.request_period, AWS.params.cluster_name)); payload[''Action''] = ''GetMetricData''; payload[''Version''] = ''2010-08-01''; payload[''StartTime''] = start_time; payload[''EndTime''] = end_time; payload[''ScanBy''] = ''TimestampDescending''; result = AWS.request(''GET'', AWS.params.region, ''monitoring'', AWS.prepareParams(payload)); MetricData = AWS.getField(result, ''GetMetricDataResponse.GetMetricDataResult.MetricDataResults'') MetricData.forEach(function (id) { for (i in metrics) { if (AWS.getField(id, ''Label'') === metrics[i]) { obj[metrics[i]] = AWS.getField(id, ''Values''); } } }); CPUUtilization = Math.abs(obj.CpuUtilized * 100 / obj.CpuReserved); MemoryUtilization = Math.abs(obj.MemoryUtilized * 100 / obj.MemoryReserved); return ({ MetricData, MemoryUtilization, CPUUtilization, DiskUtilization }); } }; try { AWS.setParams(JSON.parse(value)); return JSON.stringify(AWS.getMetricsData()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS ECS ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'Get cluster metrics. Full metrics list related to ECS: https://docs.aws.amazon.com/AmazonECS/latest/userguide/metrics-dimensions.html','0','30d','0','',NULL,'15s','','','','200','1','0','','','0','0','0','0','0','0','0','f45389a638c645f8905dc69d6cafb8b3','0','2','0'), ('45544','21','','10583','[{#AWS.ECS.SERVICE.NAME}]: Get metrics','aws.ecs.services.get_metrics["{#AWS.ECS.SERVICE.NAME}"]','0s;m/5','0','0','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, request_period: 600, metadata: ''http://169.254.169.254/latest/'', getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''GET'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload), ''''), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''region'', ''cluster_name'', ''service_name''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); }, getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, prepareRecursive: function (prefix, param) { var result = {}; if (typeof param === ''object'') { if (Array.isArray(param)) { param.forEach(function (value, index) { var nested = AWS.prepareRecursive(prefix + ''.member.'' + (index + 1), value); Object.keys(nested).forEach(function (key) { result[key] = nested[key]; }); }); } else { Object.keys(param).forEach(function (k) { var nested = AWS.prepareRecursive(prefix + ''.'' + k, param[k]); Object.keys(nested).forEach(function (key) { result[key] = nested[key]; }); }); } } else { result[prefix] = param; } return result; }, renderPayload: function (period, cluster_name, service_name) { var metrics_list = [ ''CpuReserved:None:ECS/ContainerInsights'', ''CpuUtilized:None:ECS/ContainerInsights'', ''CPUUtilization:Percent:AWS/ECS'', ''MemoryUtilization:Percent:AWS/ECS'', ''MemoryReserved:Megabytes:ECS/ContainerInsights'', ''MemoryUtilized:Megabytes:ECS/ContainerInsights'', ''NetworkRxBytes:Bytes/Second:ECS/ContainerInsights'', ''NetworkTxBytes:Bytes/Second:ECS/ContainerInsights'', ''StorageReadBytes:Bytes:ECS/ContainerInsights'', ''StorageWriteBytes:Bytes:ECS/ContainerInsights'', ''DeploymentCount:Count:ECS/ContainerInsights'', ''TaskSetCount:Count:ECS/ContainerInsights'', ''DesiredTaskCount:Count:ECS/ContainerInsights'', ''PendingTaskCount:Count:ECS/ContainerInsights'', ''RunningTaskCount:Count:ECS/ContainerInsights'', ''EphemeralStorageReserved:Gigabytes:ECS/ContainerInsights'', ''EphemeralStorageUtilized:Gigabytes:ECS/ContainerInsights'' ]; var metric_payload = []; metrics_list.forEach(function (metric) { var parts = metric.split('':'', 3); var name = parts[0].replace(/[^a-zA-Z0-9]/g, ''''); metric_payload.push({ ''Id'': name.charAt(0).toLowerCase() + name.slice(1), ''MetricStat'': { ''Metric'': { ''MetricName'': parts[0], ''Namespace'': parts[2], ''Dimensions'': [ { ''Name'': ''ClusterName'', ''Value'': cluster_name } , { ''Name'': ''ServiceName'', ''Value'': service_name } ] }, ''Period'': period, ''Stat'': ''Average'', ''Unit'': parts[1] } }); }); return metric_payload; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, request: function (method, region, service, params, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''), host = service + ''.'' + region + ''.amazonaws.com'', canonical_uri = ''/'', canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date'', canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + (AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken)); } Zabbix.log(4, ''[ AWS ECS ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ AWS ECS ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { try { response = JSON.parse(XML.toJson(response)); } catch (error) { throw ''Failed to parse response received from AWS CloudWatch API. Check debug log for more information.''; } } return response; }, getMetricsData: function () { var timestamp = new Date().getTime(), end_time = new Date(timestamp).toISOString().replace(/\\.\\d+Z/, ''Z''), start_time = new Date(timestamp - AWS.request_period * 1000).toISOString().replace(/\\.\\d+Z/, ''Z''), payload = AWS.prepareRecursive(''MetricDataQueries'', AWS.renderPayload(AWS.request_period, AWS.params.cluster_name, AWS.params.service_name)); payload[''Action''] = ''GetMetricData''; payload[''Version''] = ''2010-08-01''; payload[''StartTime''] = start_time; payload[''EndTime''] = end_time; payload[''ScanBy''] = ''TimestampDescending''; result = AWS.request(''GET'', AWS.params.region, ''monitoring'', AWS.prepareParams(payload)); MetricData = AWS.getField(result, ''GetMetricDataResponse.GetMetricDataResult.MetricDataResults'') return MetricData; } }; try { AWS.setParams(JSON.parse(value)); return JSON.stringify(AWS.getMetricsData()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS ECS ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','2',NULL,'Get metrics of ESC services. Full metrics list related to ECS : https://docs.aws.amazon.com/ecs/index.html','0','30d','0','',NULL,'15s','','','','200','1','0','','','0','0','0','0','0','0','0','d12aae43f0f3446d96e2141a0bf303b8','0','2','0'), ('45559','21','','10584','Get alarms data','aws.ecs.get_alarms','0s;m/1','0','0','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, metadata: ''http://169.254.169.254/latest/'', getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''GET'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload), ''''), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''region'', ''cluster_name''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, request: function (method, region, service, params, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''), host = service + ''.'' + region + ''.amazonaws.com'', canonical_uri = ''/'', canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date'', canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + (AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken)); } Zabbix.log(4, ''[ AWS ECS ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ AWS ECS ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { try { response = JSON.parse(XML.toJson(response)); } catch (error) { throw ''Failed to parse response received from AWS CloudWatch API. Check debug log for more information.''; } } return response; }, getAlarms: function () { var payload = { ''Action'': ''DescribeAlarms'', ''Version'': ''2010-08-01'', ''MaxRecords'': 100 }, result = []; while (payload.NextToken !== '''') { var alarms = AWS.getField(AWS.request(''GET'', AWS.params.region, ''monitoring'', AWS.prepareParams(payload)), ''DescribeAlarmsResponse.DescribeAlarmsResult''); payload.NextToken = alarms.NextToken || ''''; alarms_list = AWS.getField(alarms, ''MetricAlarms''); if (!Array.isArray(alarms_list)) alarms_list = [alarms_list]; alarms_list.forEach(function (alarm) { var dimensions = alarm.Dimensions; Zabbix.log(4, ''[ AWS ECS ] dimensions: '' + JSON.stringify(dimensions)); if (Array.isArray(alarm.Metrics)) { alarm.Metrics.forEach(function (metric) { if (typeof metric.MetricStat === ''object'' && metric.MetricStat !== null && typeof metric.MetricStat.Metric === ''object'' && metric.MetricStat.Metric !== null && Array.isArray(metric.MetricStat.Metric.Dimensions)) { dimensions = dimensions.concat(metric.MetricStat.Metric.Dimensions); } }); } for (var i in dimensions) { if (dimensions[i].Name === ''ClusterName'' && dimensions[i].Value === AWS.params.cluster_name) { result.push(alarm); break; } } }); } return result; } } try { AWS.setParams(JSON.parse(value)); return JSON.stringify(AWS.getAlarms()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS ECS ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'Get alarms data. DescribeAlarms API method: https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_DescribeAlarms.html','0','30d','0','',NULL,'15s','','','','200','1','0','','','0','0','0','0','0','0','0','ee28426c92874a99b998198a5539599d','0','2','0'), ('45560','21','','10584','Get cluster services','aws.ecs.get_cluster_services','5m','0','0','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, metadata: ''http://169.254.169.254/latest/'', getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''GET'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload)), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''region'', ''cluster_name''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); }, getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, request: function (method, region, service, params, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''), canonical_uri = ''/'', host = service + ''.'' + region + ''.amazonaws.com'', canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date'', canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''x-amz-content-sha256:'' + sha256(data)); request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/x-www-form-urlencoded''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + (AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken)); } Zabbix.log(4, ''[ AWS ECS ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ AWS ECS ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { try { response = JSON.parse(XML.toJson(response)); } catch (error) { throw ''Failed to parse response received from AWS CloudWatch API. Check debug log for more information.''; } } return response; }, listServices: function () { var payload = { ''Action'': ''ListServices'', ''Version'': ''2014-11-13'', ''maxResults'': 100, ''cluster'': AWS.params.cluster_name }, services = []; while (payload.nextToken !== '''') { var services_list = AWS.getField(AWS.request(''GET'', AWS.params.region, ''ecs'', AWS.prepareParams(payload)), ''ListServicesResponse.ListServicesResult''); payload.nextToken = services_list.nextToken || ''''; services_arns = AWS.getField(services_list, ''serviceArns''); for (k in services_arns) { id = services_arns[k]; json = {}; input = id.split(AWS.params.cluster_name + ''/''); for (var i = 1; i < input.length; i += 2) { json[input[i]] = input[i + 1]; } services.push({ ''service_name'': input[1], }); } }; if (Array.isArray(services)) return services; else return [services]; } }; try { AWS.setParams(JSON.parse(value)); return JSON.stringify(AWS.listServices()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS ECS ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'Get cluster services. Full metrics list related to ECS: https://docs.aws.amazon.com/AmazonECS/latest/userguide/metrics-dimensions.html','0','30d','0','',NULL,'15s','','','','200','1','0','','','0','0','0','0','0','0','0','9818272bc51e4848bba7b2863dda9424','0','2','0'), ('45561','21','','10584','Get cluster metrics','aws.ecs.get_metrics','0s;m/1','0','0','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, request_period: 600, metadata: ''http://169.254.169.254/latest/'', getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''GET'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload), ''''), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''region'', ''cluster_name''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); }, getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, prepareRecursive: function (prefix, param) { var result = {}; if (typeof param === ''object'') { if (Array.isArray(param)) { param.forEach(function (value, index) { var nested = AWS.prepareRecursive(prefix + ''.member.'' + (index + 1), value); Object.keys(nested).forEach(function (key) { result[key] = nested[key]; }); }); } else { Object.keys(param).forEach(function (k) { var nested = AWS.prepareRecursive(prefix + ''.'' + k, param[k]); Object.keys(nested).forEach(function (key) { result[key] = nested[key]; }); }); } } else { result[prefix] = param; } return result; }, renderPayload: function (period, cluster_name) { var metrics_list = [ ''ContainerInstanceCount:Count'', ''ServiceCount:Count'', ''CpuReserved:None'', ''CpuUtilized:None'', ''MemoryReserved:Megabytes'', ''MemoryUtilized:Megabytes'', ''NetworkRxBytes:Bytes/Second'', ''NetworkTxBytes:Bytes/Second'', ''StorageReadBytes:Bytes'', ''StorageWriteBytes:Bytes'', ''TaskCount:Count'', ''EphemeralStorageReserved:Gigabytes'', ''EphemeralStorageUtilized:Gigabytes'' ]; var metric_payload = []; metrics_list.forEach(function (metric) { var parts = metric.split('':'', 2); var name = parts[0].replace(/[^a-zA-Z0-9]/g, ''''); metric_payload.push({ ''Id'': name.charAt(0).toLowerCase() + name.slice(1), ''MetricStat'': { ''Metric'': { ''MetricName'': parts[0], ''Namespace'': ''ECS/ContainerInsights'', ''Dimensions'': [ { ''Name'': ''ClusterName'', ''Value'': cluster_name } ] }, ''Period'': period, ''Stat'': ''Average'', ''Unit'': parts[1] } }); }); return metric_payload; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, request: function (method, region, service, params, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''), host = service + ''.'' + region + ''.amazonaws.com'', canonical_uri = ''/'', canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date'', canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + (AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken)); } Zabbix.log(4, ''[ AWS ECS ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ AWS ECS ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { try { response = JSON.parse(XML.toJson(response)); } catch (error) { throw ''Failed to parse response received from AWS CloudWatch API. Check debug log for more information.''; } } return response; }, getMetricsData: function () { var timestamp = new Date().getTime(), MetricData = [], CPUUtilization, MemoryUtilization, DiskUtilization, obj = {}, metrics = [''CpuReserved'', ''CpuUtilized'', ''MemoryReserved'', ''MemoryUtilized'', ''EphemeralStorageReserved'', ''EphemeralStorageUtilized''], end_time = new Date(timestamp).toISOString().replace(/\\.\\d+Z/, ''Z''), start_time = new Date(timestamp - AWS.request_period * 1000).toISOString().replace(/\\.\\d+Z/, ''Z''), payload = AWS.prepareRecursive(''MetricDataQueries'', AWS.renderPayload(AWS.request_period, AWS.params.cluster_name)); payload[''Action''] = ''GetMetricData''; payload[''Version''] = ''2010-08-01''; payload[''StartTime''] = start_time; payload[''EndTime''] = end_time; payload[''ScanBy''] = ''TimestampDescending''; result = AWS.request(''GET'', AWS.params.region, ''monitoring'', AWS.prepareParams(payload)); MetricData = AWS.getField(result, ''GetMetricDataResponse.GetMetricDataResult.MetricDataResults'') MetricData.forEach(function (id) { for (i in metrics) { if (AWS.getField(id, ''Label'') === metrics[i]) { obj[metrics[i]] = AWS.getField(id, ''Values''); } } }); CPUUtilization = Math.abs(obj.CpuUtilized * 100 / obj.CpuReserved); MemoryUtilization = Math.abs(obj.MemoryUtilized * 100 / obj.MemoryReserved); DiskUtilization = Math.abs(obj.EphemeralStorageUtilized * 100 / obj.EphemeralStorageReserved); return ({ MetricData, MemoryUtilization, CPUUtilization, DiskUtilization }); } }; try { AWS.setParams(JSON.parse(value)); return JSON.stringify(AWS.getMetricsData()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS ECS ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'Get cluster metrics. Full metrics list related to ECS: https://docs.aws.amazon.com/AmazonECS/latest/userguide/metrics-dimensions.html','0','30d','0','',NULL,'15s','','','','200','1','0','','','0','0','0','0','0','0','0','01f1a371b56e4945b604cd8b396c85f5','0','2','0'), ('45576','21','','10584','[{#AWS.ECS.SERVICE.NAME}]: Get metrics','aws.ecs.services.get_metrics["{#AWS.ECS.SERVICE.NAME}"]','0s;m/5','0','0','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, request_period: 600, metadata: ''http://169.254.169.254/latest/'', getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''GET'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload), ''''), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''region'', ''cluster_name'', ''service_name''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); }, getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, prepareRecursive: function (prefix, param) { var result = {}; if (typeof param === ''object'') { if (Array.isArray(param)) { param.forEach(function (value, index) { var nested = AWS.prepareRecursive(prefix + ''.member.'' + (index + 1), value); Object.keys(nested).forEach(function (key) { result[key] = nested[key]; }); }); } else { Object.keys(param).forEach(function (k) { var nested = AWS.prepareRecursive(prefix + ''.'' + k, param[k]); Object.keys(nested).forEach(function (key) { result[key] = nested[key]; }); }); } } else { result[prefix] = param; } return result; }, renderPayload: function (period, cluster_name, service_name) { var metrics_list = [ ''CpuReserved:None:ECS/ContainerInsights'', ''CpuUtilized:None:ECS/ContainerInsights'', ''CPUUtilization:Percent:AWS/ECS'', ''MemoryUtilization:Percent:AWS/ECS'', ''MemoryReserved:Megabytes:ECS/ContainerInsights'', ''MemoryUtilized:Megabytes:ECS/ContainerInsights'', ''NetworkRxBytes:Bytes/Second:ECS/ContainerInsights'', ''NetworkTxBytes:Bytes/Second:ECS/ContainerInsights'', ''StorageReadBytes:Bytes:ECS/ContainerInsights'', ''StorageWriteBytes:Bytes:ECS/ContainerInsights'', ''DeploymentCount:Count:ECS/ContainerInsights'', ''TaskSetCount:Count:ECS/ContainerInsights'', ''DesiredTaskCount:Count:ECS/ContainerInsights'', ''PendingTaskCount:Count:ECS/ContainerInsights'', ''RunningTaskCount:Count:ECS/ContainerInsights'', ''EphemeralStorageReserved:Gigabytes:ECS/ContainerInsights'', ''EphemeralStorageUtilized:Gigabytes:ECS/ContainerInsights'' ]; var metric_payload = []; metrics_list.forEach(function (metric) { var parts = metric.split('':'', 3); var name = parts[0].replace(/[^a-zA-Z0-9]/g, ''''); metric_payload.push({ ''Id'': name.charAt(0).toLowerCase() + name.slice(1), ''MetricStat'': { ''Metric'': { ''MetricName'': parts[0], ''Namespace'': parts[2], ''Dimensions'': [ { ''Name'': ''ClusterName'', ''Value'': cluster_name } , { ''Name'': ''ServiceName'', ''Value'': service_name } ] }, ''Period'': period, ''Stat'': ''Average'', ''Unit'': parts[1] } }); }); return metric_payload; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, request: function (method, region, service, params, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''), host = service + ''.'' + region + ''.amazonaws.com'', canonical_uri = ''/'', canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date'', canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + (AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken)); } Zabbix.log(4, ''[ AWS ECS ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ AWS ECS ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { try { response = JSON.parse(XML.toJson(response)); } catch (error) { throw ''Failed to parse response received from AWS CloudWatch API. Check debug log for more information.''; } } return response; }, getMetricsData: function () { var timestamp = new Date().getTime(), end_time = new Date(timestamp).toISOString().replace(/\\.\\d+Z/, ''Z''), start_time = new Date(timestamp - AWS.request_period * 1000).toISOString().replace(/\\.\\d+Z/, ''Z''), payload = AWS.prepareRecursive(''MetricDataQueries'', AWS.renderPayload(AWS.request_period, AWS.params.cluster_name, AWS.params.service_name)); payload[''Action''] = ''GetMetricData''; payload[''Version''] = ''2010-08-01''; payload[''StartTime''] = start_time; payload[''EndTime''] = end_time; payload[''ScanBy''] = ''TimestampDescending''; result = AWS.request(''GET'', AWS.params.region, ''monitoring'', AWS.prepareParams(payload)); MetricData = AWS.getField(result, ''GetMetricDataResponse.GetMetricDataResult.MetricDataResults'') return MetricData; } }; try { AWS.setParams(JSON.parse(value)); return JSON.stringify(AWS.getMetricsData()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS ECS ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','2',NULL,'Get metrics of ESC services. Full metrics list related to ECS : https://docs.aws.amazon.com/ecs/index.html','0','30d','0','',NULL,'15s','','','','200','1','0','','','0','0','0','0','0','0','0','0f80f5477ed04dbfbcb241c06854a6ff','0','2','0'), ('45595','21','','10535','ECS clusters discovery','aws.ecs.discovery','12h','90d','365d','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, metadata: ''http://169.254.169.254/latest/'', getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''GET'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload)), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''describe_region'', ''region_match'', ''region_not_match''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); }, getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, request: function (method, region, service, params, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''), canonical_uri = ''/'', host = service + ''.'' + region + ''.amazonaws.com'', canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date'', canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''x-amz-content-sha256:'' + sha256(data)); request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/x-www-form-urlencoded''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + (AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken)); } Zabbix.log(4, ''[ AWS ECS ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ AWS ECS ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { try { response = JSON.parse(XML.toJson(response)); } catch (error) { throw ''Failed to parse response received from AWS API. Check debug log for more information.''; } } return response; }, listRegions: function () { var payload = { ''Action'': ''DescribeRegions'', ''Version'': ''2016-11-15'' }; regions = AWS.getField(AWS.request(''GET'', AWS.params.describe_region, ''ec2'', AWS.prepareParams(payload)), ''DescribeRegionsResponse.regionInfo.item''); if (!Array.isArray(regions)) regions = [regions] return regions }, listClusters: function () { var data = [], regions = AWS.listRegions(), result, ECSClusters, payload = { ''Action'': ''ListClusters'', ''Version'': ''2014-11-13'' }; regions.forEach(function (region) { var region_name = AWS.getField(region, ''regionName''); if (region_name.match(AWS.params.region_match) === null || region_name.match(AWS.params.region_not_match) !== null) return; result = AWS.request(''GET'', region_name, ''ecs'', AWS.prepareParams(payload)); ECSClusters = AWS.getField(result, ''ListClustersResponse.ListClustersResult.clusterArns'') for (k in ECSClusters) { clusters = ECSClusters[k]; json = {}; input = clusters.split(''/''); for (var i = 1; i < input.length; i += 2) { json[input[i]] = input[i + 1]; } data.push({ ''clusters_name'': input[1], ''region'': region_name }); } }); return data; }, decribeClusters: function (cluster_name, region_name) { var payload = { ''Action'': ''DescribeClusters'', ''Version'': ''2014-11-13'', ''clusters.clusterName'': cluster_name, ''include.statistics'': ''STATISTICS'' }; result = AWS.request(''GET'', region_name, ''ecs'', AWS.prepareParams(payload)); return result; } }; try { AWS.setParams(JSON.parse(value)); var clusters = AWS.listClusters(), infrastructure = [], metrics = [''runningEC2TasksCount'', ''pendingEC2TasksCount'', ''activeEC2ServiceCount'', ''drainingEC2ServiceCount''], ECSClusters = [], DescribeClusters = []; DescribeClusters = clusters.map(function (cluster) { ECSClusters = AWS.getField(AWS.decribeClusters(cluster.clusters_name, cluster.region), ''DescribeClustersResponse.DescribeClustersResult.clusters'') for (k in ECSClusters) { var ECS2 = 0; statistic = AWS.getField(ECSClusters[k], ''statistics''); statistic.forEach(function (id) { for (i in metrics) { if (AWS.getField(id, ''name'') === metrics[i]) { ECS2 += Number(AWS.getField(id, ''value'')); } } }) infrastructure = (ECS2 > 0) ? ''use_ecs2'' : ''serverless''; return { ''clusterName'': ECSClusters[k].clusterName, ''status'': ECSClusters[k].status, ''infrastructure'': infrastructure, ''region'': cluster.region } } }) return JSON.stringify(DescribeClusters); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS ECS ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','1',NULL,'Get ECS clusters.','0','7d','1','',NULL,'{$AWS.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','44b68894d68c45ec9a5ea787c975ae16','0','2','0'), ('45596','21','','10586','Get access token and service catalog','openstack.identity.auth','{$OPENSTACK.AUTH.INTERVAL}','0','0','0','4','','','','',NULL,NULL,' const request_path = ''/v3/auth/tokens''; function checkParams(params) { [''api_url'', ''app_cred_id'', ''app_cred_secret''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); return params; } function getHttpData(url, params, app_cred_id, app_cred_secret) { const request = new HttpRequest(); request.addHeader(''Content-Type: application/json''); const request_body = { "auth": { "identity": { "methods": [ "application_credential" ], "application_credential": { "id": app_cred_id, "secret": app_cred_secret } } } }; if (params[''http_proxy'']) { request.setProxy(params[''http_proxy'']) Zabbix.log(4, ''[ Openstack Nova API ] Using http proxy: '' + params[''http_proxy'']); } const response = request.post(url, JSON.stringify(request_body)); Zabbix.log(4, ''[ Openstack Identity API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 201) { if (typeof (response.error && response.error.message) !== ''undefined'') { throw response.error.message; } else { throw ''Failed to receive data: invalid response status code. Check debug log for more information.''; } } return {''request'': request, ''response'': response}; } function parseHttpData(http_data) { var token; const headers = http_data[''request''].getHeaders(true); if (typeof headers === "object") { if (headers !== null) { try { token = headers["X-Subject-Token"][0]; } catch (error) { throw ''Failed to parse response received from OpenStack Identity API. Check debug log for more information.''; } } else { throw ''Response object is empty. Check debug log for more information.''; } } else { throw ''Cannot process response data: received data is not an object. Check debug log for more information.''; } const supported_services = [''nova'']; var ret = []; const data = JSON.parse(http_data[''response'']); if (data[''token''][''catalog'']) { const service_catalog = data[''token''][''catalog'']; } else { throw ''Cannot find service catalog in HTTP response.'' } service_catalog.forEach(function (service) { if (supported_services.indexOf(service.name) > -1) { service.endpoints.forEach(function (endpoint) { if (endpoint.interface === ''public'') { ret.push({ ''service_name'': service.name[0].toUpperCase() + service.name.slice(1), ''service_url'': endpoint.url, ''token'': token }); } }) } }); return JSON.stringify(ret); } const params = checkParams(JSON.parse(value)), url = params.api_url, auth_cred_id = params.app_cred_id, auth_cred_secret = params.app_cred_secret; const httpData = getHttpData(url + request_path, params, auth_cred_id, auth_cred_secret); return parseHttpData(httpData);','','0','','','','','0',NULL,'Authorizes user on the OpenStack Identity service and gets the service catalog.','0','30d','0','',NULL,'10s','','','','200','1','0','','','0','0','0','0','0','0','0','0518d08edbf2480abf15f4ef0e7a251a','0','2','0'), ('45597','19','','10587','Get availability zones','openstack.nova.availability_zone.get','{$OPENSTACK.NOVA.INTERVAL.AVAILABILITY_ZONE}','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Gets a list of availability zones and its data.','0','30d','0','',NULL,'10s','{$OPENSTACK.NOVA.SERVICE.URL}/os-availability-zone/detail','','','200','1','0','{$OPENSTACK.HTTP.PROXY}','X-Auth-Token: {$OPENSTACK.TOKEN}','0','0','0','0','0','0','0','87d263a6f797439c8c7699d96f4305fb','0','2','0'), ('45598','19','','10587','Get hypervisors','openstack.nova.hypervisors.get','{$OPENSTACK.NOVA.INTERVAL.HYPERVISOR}','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Gets a list of hypervisors and its data.','0','30d','0','',NULL,'10s','{$OPENSTACK.NOVA.SERVICE.URL}/os-hypervisors/detail','','','200','1','0','{$OPENSTACK.HTTP.PROXY}','X-Auth-Token: {$OPENSTACK.TOKEN}','0','0','0','0','0','0','0','c4297b412ad54bae85a1219e2d988bcb','0','2','0'), ('45599','19','','10587','Get absolute limits','openstack.nova.limits.get','{$OPENSTACK.NOVA.INTERVAL.LIMITS}','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Gets absolute limits for the project.','0','30d','0','',NULL,'10s','{$OPENSTACK.NOVA.SERVICE.URL}/limits','','','200','1','0','{$OPENSTACK.HTTP.PROXY}','X-Auth-Token: {$OPENSTACK.TOKEN}','0','0','0','0','0','0','0','02698d2fcd2949868013dedb311b8db3','0','2','0'), ('45600','15','','10587','Instances count, free','openstack.nova.limits.instances.free','{$OPENSTACK.NOVA.INTERVAL.LIMITS}','31d','365d','0','3','','','','',NULL,NULL,'last(//openstack.nova.limits.instances.max)-last(//openstack.nova.limits.instances.current)','','0','','','','','0',NULL,'Number of available servers for each tenant.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','29898c0cb13d4ccebc3da95c082da29b','0','2','0'), ('45601','15','','10587','RAM usage, free','openstack.nova.limits.ram.free','{$OPENSTACK.NOVA.INTERVAL.LIMITS}','31d','365d','0','3','','b','','',NULL,NULL,'last(//openstack.nova.limits.ram.max)-last(//openstack.nova.limits.ram.current)','','0','','','','','0',NULL,'Amount of available server RAM.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bdc1492bbb5c4bcd844eaa6f6e76c1ff','0','2','0'), ('45602','15','','10587','vCPUs usage, free','openstack.nova.limits.vcpu.free','{$OPENSTACK.NOVA.INTERVAL.LIMITS}','31d','365d','0','3','','','','',NULL,NULL,'last(//openstack.nova.limits.vcpu.max)-last(//openstack.nova.limits.vcpu.current)','','0','','','','','0',NULL,'Number of available server cores for each tenant.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','97d3b897722d4910aea8e4c3c5f6c9a9','0','2','0'), ('45603','19','','10587','Get servers','openstack.nova.servers.get','{$OPENSTACK.NOVA.INTERVAL.SERVERS}','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Gets a list of servers.','0','30d','0','',NULL,'10s','{$OPENSTACK.NOVA.SERVICE.URL}/servers','','','200','1','0','{$OPENSTACK.HTTP.PROXY}','X-Auth-Token: {$OPENSTACK.TOKEN}','0','0','0','0','0','0','0','85d746d8b6cf404f95eeb7903c2e66e0','0','2','0'), ('45604','19','','10587','Get compute services','openstack.nova.services.get','{$OPENSTACK.NOVA.INTERVAL.SERVICES}','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Gets a list of compute services and its data.','0','30d','0','',NULL,'10s','{$OPENSTACK.NOVA.SERVICE.URL}/os-services','','','200','1','0','{$OPENSTACK.HTTP.PROXY}','X-Auth-Token: {$OPENSTACK.TOKEN}','0','0','0','0','0','0','0','3db93b6116ad416eb10da851cce385a1','0','2','0'), ('45605','21','','10587','Get tenants','openstack.nova.tenant.get','{$OPENSTACK.NOVA.INTERVAL.TENANTS}','0','0','0','4','','','','',NULL,NULL,' const request_path = ''/os-simple-tenant-usage''; function checkParams(params) { [''api_url'', ''api_token'', ''period''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } if (field === ''period'') { const supported_values = [''y'', ''m'', ''w'', ''d''] if (supported_values.indexOf(params[field]) === -1) { throw ''Tenant period not correctly set. Expected one of "y", "m", "w", "d"; received: '' + field + ''.''; } } }); return params; } function buildUrl(url, period) { const current_date = new Date(); var datetime_formatted = '''' switch (period) { case ''y'': datetime_formatted = current_date.getFullYear() + ''-'' + ''1-'' + ''1T'' + ''00:00:00'' break; case ''m'': datetime_formatted = current_date.getFullYear() + ''-'' + (current_date.getMonth() + 1) + ''-'' + ''1T'' + ''00:00:00'' break; case ''w'': const first_date_of_week = current_date.getDate() - current_date.getDay() + 1 datetime_formatted = current_date.getFullYear() + ''-'' + (current_date.getMonth() + 1) + ''-'' + first_date_of_week + ''T'' + ''00:00:00'' break; case ''d'': datetime_formatted = current_date.getFullYear() + ''-'' + (current_date.getMonth() + 1) + ''-'' + current_date.getDate() + ''T'' + ''00:00:00'' break; } return url + request_path + ''?'' + ''start='' + encodeURIComponent(datetime_formatted) } function getHttpData(url, params, api_token) { const request = new HttpRequest(); request.addHeader(''Content-Type: application/json''); request.addHeader(''X-Auth-Token: '' + api_token); if (params[''http_proxy'']) { request.setProxy(params[''http_proxy'']) Zabbix.log(4, ''[ Openstack Nova API ] Using http proxy: '' + params[''http_proxy'']); } const response = request.get(url, JSON.stringify(params)); Zabbix.log(4, ''[ Openstack Nova API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { if (typeof (response.error && response.error.message) !== ''undefined'') { throw response.error.message; } else { throw ''Failed to receive data: invalid response status code ( '' + request.getStatus() + '' ). Check debug log for more information.''; } } return response; } const params = checkParams(JSON.parse(value)), url = params.api_url, token = params.api_token, period = params.period; return getHttpData(buildUrl(url, period), params, token);','','0','','','','','0',NULL,'Gets a list of tenants and its data.','0','30d','0','',NULL,'10s','','','','200','1','0','','','0','0','0','0','0','0','0','c258e567922c4f71a4dee9c0d6b88b1e','0','2','0'), ('45618','19','','10587','Server [{#SERVER_ID}]:[{#SERVER_NAME}]: Status','openstack.nova.server.status.get[{#SERVER_ID}]','{$OPENSTACK.NOVA.INTERVAL.SERVERS}','31d','365d','0','3','','','','',NULL,'1106','','','0','','','','','2',NULL,'Server status.','0','30d','0','',NULL,'10s','{$OPENSTACK.NOVA.SERVICE.URL}/servers/{#SERVER_ID}','','','200','1','0','{$OPENSTACK.HTTP.PROXY}','X-Auth-Token: {$OPENSTACK.TOKEN}','0','0','0','0','0','0','0','84fd4be0c5f84744ac6bd93d4d4e8f0e','0','2','0'), ('45635','11','','10589','Get archive','db.odbc.select[pgsql.archive,,"Database={$PG.DATABASE};{$PG.CONNSTRING.ODBC}"]','1m','0','0','0','4','','','','',NULL,NULL,'WITH values AS ( SELECT 4096/(ceil(pg_settings.setting::numeric/1024/1024))::int AS segment_parts_count, setting::bigint AS segment_size, (''x'' || substring(pg_stat_archiver.last_archived_wal from 9 for 8))::bit(32)::int AS last_wal_div, (''x'' || substring(pg_stat_archiver.last_archived_wal from 17 for 8))::bit(32)::int AS last_wal_mod, CASE WHEN pg_is_in_recovery() THEN NULL ELSE (''x'' || substring(pg_walfile_name(pg_current_wal_lsn()) from 9 for 8))::bit(32)::int END AS current_wal_div, CASE WHEN pg_is_in_recovery() THEN NULL ELSE (''x'' || substring(pg_walfile_name(pg_current_wal_lsn()) from 17 for 8))::bit(32)::int END AS current_wal_mod FROM pg_settings, pg_stat_archiver WHERE pg_settings.name = ''wal_segment_size'') SELECT json_build_object( ''archived_count'', (SELECT archived_count FROM pg_stat_archiver), ''failed_count'', (SELECT failed_count FROM pg_stat_archiver), ''count_files'', (SELECT greatest(coalesce((segment_parts_count - last_wal_mod) + ((current_wal_div - last_wal_div - 1) * segment_parts_count) + current_wal_mod - 1, 0), 0) FROM values), ''size_files'', (SELECT greatest(coalesce(((segment_parts_count - last_wal_mod) + ((current_wal_div - last_wal_div - 1) * segment_parts_count) + current_wal_mod - 1) * segment_size, 0), 0) FROM values) ) AS result','','0','{$PG.USER}','{$PG.PASSWORD}','','','0',NULL,'Collect archive status metrics.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9440208c49134347809eff39109c644f','0','2','0'), ('45636','11','','10589','Replication: Lag in bytes','db.odbc.select[pgsql.replication.lag.b,,"Database={$PG.DATABASE};{$PG.CONNSTRING.ODBC}"]','1m','31d','365d','0','3','','B','','',NULL,NULL,'SELECT CASE WHEN NOT pg_is_in_recovery() OR pg_last_wal_receive_lsn() = pg_last_wal_replay_lsn() THEN 0 ELSE COALESCE(EXTRACT(EPOCH FROM now() - pg_last_xact_replay_timestamp())::integer, 0) END AS lag','','0','{$PG.USER}','{$PG.PASSWORD}','','','0',NULL,'Replication lag with master, in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','669d87ebf9324d6eaa26c3cb44efc850','0','2','0'), ('45637','11','','10589','Count of autovacuum workers','db.odbc.select[pgsql.autovacuum.count,,"Database={$PG.DATABASE};{$PG.CONNSTRING.ODBC}"]','1m','31d','365d','0','0','','','','',NULL,NULL,'SELECT count(*) FROM pg_catalog.pg_stat_activity WHERE backend_type = ''autovacuum worker'' AND state <> ''idle'' AND pid <> pg_catalog.pg_backend_pid()','','0','{$PG.USER}','{$PG.PASSWORD}','','','0',NULL,'Number of autovacuum workers.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dd79edeb2d65420fb58d587e411c440f','0','2','0'), ('45638','15','','10589','Cache hit ratio, %','pgsql.cache.hit','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//pgsql.dbstat.sum.blks_hit.rate) * 100 / (last(//pgsql.dbstat.sum.blks_hit.rate) + last(//pgsql.dbstat.sum.blks_read.rate))','','0','','','','','0',NULL,'Cache hit ratio.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6444043a810b4b2f89740c1c794a47c0','0','2','0'), ('45639','11','','10589','Get WAL','db.odbc.select[pgsql.wal.stat,,"Database={$PG.DATABASE};{$PG.CONNSTRING.ODBC}"]','5m','0','0','0','4','','','','',NULL,NULL,'SELECT row_to_json(T) FROM ( SELECT CASE WHEN pg_is_in_recovery() THEN 0 ELSE pg_wal_lsn_diff(pg_current_wal_lsn(),''0/00000000'') END AS WRITE, CASE WHEN NOT pg_is_in_recovery() THEN 0 ELSE pg_wal_lsn_diff(pg_last_wal_receive_lsn(),''0/00000000'') END AS RECEIVE, count(*) FROM pg_ls_waldir() AS COUNT ) T','','0','{$PG.USER}','{$PG.PASSWORD}','','','0',NULL,'Collect write-ahead log (WAL) metrics.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8af13c6154744e9596a0f96dfbf09d8b','0','2','0'), ('45640','11','','10589','Uptime','db.odbc.select[pgsql.uptime,,"Database={$PG.DATABASE};{$PG.CONNSTRING.ODBC}"]','1m','31d','365d','0','0','','uptime','','',NULL,NULL,'SELECT date_part(''epoch'', now() - pg_postmaster_start_time())','','0','{$PG.USER}','{$PG.PASSWORD}','','','0',NULL,'Time since the server started.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','817c494132044fff88ea4c9fcaacb60a','0','2','0'), ('45641','11','','10589','Replication: Status','db.odbc.select[pgsql.replication.status,,"Database={$PG.DATABASE};{$PG.CONNSTRING.ODBC}"]','1m','31d','365d','0','3','','','','',NULL,'1109','SELECT CASE WHEN NOT pg_is_in_recovery() THEN 2 ELSE (SELECT count(*) FROM pg_stat_wal_receiver) END AS repl_status','','0','{$PG.USER}','{$PG.PASSWORD}','','','0',NULL,'Replication status: 0 — streaming is down, 1 — streaming is up, 2 — master mode.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6cc8c748f6174d3dba9aa9b39570b006','0','2','0'), ('45642','11','','10589','Replication: Recovery role','db.odbc.select[pgsql.replication.recovery_role,,"Database={$PG.DATABASE};{$PG.CONNSTRING.ODBC}"]','1m','31d','365d','0','3','','','','',NULL,'1108','SELECT pg_is_in_recovery()::int','','0','{$PG.USER}','{$PG.PASSWORD}','','','0',NULL,'Replication role: 1 — recovery is still in progress (standby mode), 0 — master mode.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f8205cdd902a4a688b5bcb7f65d8e41d','0','2','0'), ('45643','11','','10589','Replication: Lag in seconds','db.odbc.select[pgsql.replication.lag.sec,,"Database={$PG.DATABASE};{$PG.CONNSTRING.ODBC}"]','1m','31d','365d','0','3','','s','','',NULL,NULL,'SELECT CASE WHEN NOT pg_is_in_recovery() OR pg_last_wal_receive_lsn() = pg_last_wal_replay_lsn() THEN 0 ELSE COALESCE(EXTRACT(EPOCH FROM now() - pg_last_xact_replay_timestamp())::integer, 0) END AS lag','','0','{$PG.USER}','{$PG.PASSWORD}','','','0',NULL,'Replication lag with master, in seconds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bb87b83d35784d3ea5be2263fa3722b0','0','2','0'), ('45644','11','','10589','Get replication','db.odbc.select[pgsql.replication.process,,"Database={$PG.DATABASE};{$PG.CONNSTRING.ODBC}"]','1m','0','0','0','4','','','','',NULL,NULL,'SELECT json_object_agg(application_name, row_to_json(T)) FROM ( SELECT application_name, EXTRACT(epoch FROM COALESCE(flush_lag,''0''::interval)) AS flush_lag, EXTRACT(epoch FROM COALESCE(replay_lag,''0''::interval)) AS replay_lag, EXTRACT(epoch FROM COALESCE(write_lag, ''0''::interval)) AS write_lag FROM pg_stat_replication ) T','','0','{$PG.USER}','{$PG.PASSWORD}','','','0',NULL,'Collect metrics from the pg_stat_replication, which contains information about the WAL sender process, showing statistics about replication to that sender''s connected standby server.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3f2b5c02a6be40d4837205f68aaacabb','0','2','0'), ('45645','11','','10589','Replication: Standby count','db.odbc.select[pgsql.replication.count,,"Database={$PG.DATABASE};{$PG.CONNSTRING.ODBC}"]','1m','31d','365d','0','3','','','','',NULL,NULL,'SELECT count(*) FROM pg_stat_replication','','0','{$PG.USER}','{$PG.PASSWORD}','','','0',NULL,'Number of standby servers.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d156db3cb35049a88179060583961156','0','2','0'), ('45646','11','','10589','Ping','db.odbc.select[pgsql.ping,,"Database={$PG.DATABASE};{$PG.CONNSTRING.ODBC}"]','1m','31d','365d','0','3','','','','',NULL,'1110','SELECT 1','','0','{$PG.USER}','{$PG.PASSWORD}','','','0',NULL,'Used to test a connection to see if it is alive. It is set to 0 if the query is unsuccessful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3c16a3c2db7641c2b6958649d7b4809e','0','2','0'), ('45647','11','','10589','Age of oldest xid','db.odbc.select[pgsql.oldest.xid,,"Database={$PG.DATABASE};{$PG.CONNSTRING.ODBC}"]','1m','31d','365d','0','0','','','','',NULL,NULL,'SELECT greatest(max(age(backend_xmin)), max(age(backend_xid))) FROM pg_catalog.pg_stat_activity','','0','{$PG.USER}','{$PG.PASSWORD}','','','0',NULL,'Age of oldest xid.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','266a9b5c1e604d97ac5a74ccdb598c97','0','2','0'), ('45648','11','','10589','Get locks','db.odbc.select[pgsql.locks,,"Database={$PG.DATABASE};{$PG.CONNSTRING.ODBC}"]','1m','0','0','0','4','','','','',NULL,NULL,'WITH T AS (SELECT db.datname dbname, lower(replace(Q.mode, ''Lock'', '''')) AS MODE, coalesce(T.qty, 0) val FROM pg_database db JOIN ( VALUES (''AccessShareLock'') ,(''RowShareLock'') ,(''RowExclusiveLock'') ,(''ShareUpdateExclusiveLock'') ,(''ShareLock'') ,(''ShareRowExclusiveLock'') ,(''ExclusiveLock'') ,(''AccessExclusiveLock'')) Q(MODE) ON TRUE NATURAL LEFT JOIN (SELECT datname, MODE, count(MODE) qty FROM pg_locks lc RIGHT JOIN pg_database db ON db.oid = lc.database GROUP BY 1, 2) T WHERE NOT db.datistemplate ORDER BY 1, 2) SELECT json_object_agg(dbname, row_to_json(T2)) FROM (SELECT dbname, sum(val) AS total, sum(CASE WHEN MODE = ''accessexclusive'' THEN val END) AS accessexclusive, sum(CASE WHEN MODE = ''accessshare'' THEN val END) AS accessshare, sum(CASE WHEN MODE = ''exclusive'' THEN val END) AS EXCLUSIVE, sum(CASE WHEN MODE = ''rowexclusive'' THEN val END) AS rowexclusive, sum(CASE WHEN MODE = ''rowshare'' THEN val END) AS rowshare, sum(CASE WHEN MODE = ''share'' THEN val END) AS SHARE, sum(CASE WHEN MODE = ''sharerowexclusive'' THEN val END) AS sharerowexclusive, sum(CASE WHEN MODE = ''shareupdateexclusive'' THEN val END) AS shareupdateexclusive FROM T GROUP BY dbname) T2','','0','{$PG.USER}','{$PG.PASSWORD}','','','0',NULL,'Collect all metrics from pg_locks per database: https://www.postgresql.org/docs/current/explicit-locking.html#LOCKING-TABLES','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','efa015e294684fdeb711a0fde1256cf9','0','2','0'), ('45649','11','','10589','Get dbstat sum','db.odbc.select[pgsql.dbstat.sum,,"Database={$PG.DATABASE};{$PG.CONNSTRING.ODBC}"]','1m','0','0','0','4','','','','',NULL,NULL,'SELECT row_to_json(T) FROM ( SELECT sum(numbackends) AS numbackends, sum(xact_commit) AS xact_commit, sum(xact_rollback) AS xact_rollback, sum(blks_read) AS blks_read, sum(blks_hit) AS blks_hit, sum(tup_returned) AS tup_returned, sum(tup_fetched) AS tup_fetched, sum(tup_inserted) AS tup_inserted, sum(tup_updated) AS tup_updated, sum(tup_deleted) AS tup_deleted, sum(conflicts) AS conflicts, sum(temp_files) AS temp_files, sum(temp_bytes) AS temp_bytes, sum(deadlocks) AS deadlocks, sum(blk_read_time) AS blk_read_time, sum(blk_write_time) AS blk_write_time FROM pg_stat_database) T','','0','{$PG.USER}','{$PG.PASSWORD}','','','0',NULL,'Collect all metrics from pg_stat_database as sums for all databases: https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-DATABASE-VIEW','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6ea1a17fad8b4ef3aba8b49a0922a77d','0','2','0'), ('45650','11','','10589','Get dbstat','db.odbc.select[pgsql.dbstat,,"Database={$PG.DATABASE};{$PG.CONNSTRING.ODBC}"]','1m','0','0','0','4','','','','',NULL,NULL,'SELECT json_object_agg(coalesce (datname,''null''), row_to_json(T)) FROM ( SELECT datname, numbackends AS numbackends, xact_commit AS xact_commit, xact_rollback AS xact_rollback, blks_read AS blks_read, blks_hit AS blks_hit, tup_returned AS tup_returned, tup_fetched AS tup_fetched, tup_inserted AS tup_inserted, tup_updated AS tup_updated, tup_deleted AS tup_deleted, conflicts AS conflicts, temp_files AS temp_files, temp_bytes AS temp_bytes, deadlocks AS deadlocks, blk_read_time AS blk_read_time, blk_write_time AS blk_write_time FROM pg_catalog.pg_stat_database WHERE datname IS NOT NULL) T;','','0','{$PG.USER}','{$PG.PASSWORD}','','','0',NULL,'Collect all metrics from pg_stat_database per database: https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-DATABASE-VIEW','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0f93764d56574a288467ad16dce11a17','0','2','0'), ('45651','11','','10589','Get queries','db.odbc.select[pgsql.queries,,"Database={$PG.DATABASE};{$PG.CONNSTRING.ODBC}"]','1m','0','0','0','4','','','','',NULL,NULL,E'WITH T AS (SELECT db.datname, coalesce(T.query_time_max, 0) query_time_max, coalesce(T.tx_time_max, 0) tx_time_max, coalesce(T.mro_time_max, 0) mro_time_max, coalesce(T.query_time_sum, 0) query_time_sum, coalesce(T.tx_time_sum, 0) tx_time_sum, coalesce(T.mro_time_sum, 0) mro_time_sum, coalesce(T.query_slow_count, 0) query_slow_count, coalesce(T.tx_slow_count, 0) tx_slow_count, coalesce(T.mro_slow_count, 0) mro_slow_count FROM pg_database db NATURAL LEFT JOIN ( SELECT datname, extract(epoch FROM now())::integer ts, coalesce(max(extract(''epoch'' FROM (clock_timestamp() - query_start))::integer * (state NOT IN (''idle'', ''idle in transaction'', ''idle in transaction (aborted)'') AND query !~* E''^(\\\\s*(--[^\\\\n]*\\\\n|/\\\\*.*\\\\*/|\\\\n))*(autovacuum|VACUUM|ANALYZE|REINDEX|CLUSTER|CREATE|ALTER|TRUNCATE|DROP)'')::integer), 0) query_time_max, coalesce(max(extract(''epoch'' FROM (clock_timestamp() - query_start))::integer * (state NOT IN (''idle'') AND query !~* E''^(\\\\s*(--[^\\\\n]*\\\\n|/\\\\*.*\\\\*/|\\\\n))*(autovacuum|VACUUM|ANALYZE|REINDEX|CLUSTER|CREATE|ALTER|TRUNCATE|DROP)'')::integer), 0) tx_time_max, coalesce(max(extract(''epoch'' FROM (clock_timestamp() - query_start))::integer * (state NOT IN (''idle'') AND query ~* E''^(\\\\s*(--[^\\\\n]*\\\\n|/\\\\*.*\\\\*/|\\\\n))*(autovacuum|VACUUM|ANALYZE|REINDEX|CLUSTER|CREATE|ALTER|TRUNCATE|DROP)'')::integer), 0) mro_time_max, coalesce(sum(extract(''epoch'' FROM (clock_timestamp() - query_start))::integer * (state NOT IN (''idle'', ''idle in transaction'', ''idle in transaction (aborted)'') AND query !~* E''^(\\\\s*(--[^\\\\n]*\\\\n|/\\\\*.*\\\\*/|\\\\n))*(autovacuum|VACUUM|ANALYZE|REINDEX|CLUSTER|CREATE|ALTER|TRUNCATE|DROP)'')::integer), 0) query_time_sum, coalesce(sum(extract(''epoch'' FROM (clock_timestamp() - query_start))::integer * (state NOT IN (''idle'') AND query !~* E''^(\\\\s*(--[^\\\\n]*\\\\n|/\\\\*.*\\\\*/|\\\\n))*(autovacuum|VACUUM|ANALYZE|REINDEX|CLUSTER|CREATE|ALTER|TRUNCATE|DROP)'')::integer), 0) tx_time_sum, coalesce(sum(extract(''epoch'' FROM (clock_timestamp() - query_start))::integer * (state NOT IN (''idle'') AND query ~* E''^(\\\\s*(--[^\\\\n]*\\\\n|/\\\\*.*\\\\*/|\\\\n))*(autovacuum|VACUUM|ANALYZE|REINDEX|CLUSTER|CREATE|ALTER|TRUNCATE|DROP)'')::integer), 0) mro_time_sum, coalesce(sum((extract(''epoch'' FROM (clock_timestamp() - query_start)) > {$PG.QUERY_ETIME.MAX.WARN})::integer * (state NOT IN (''idle'', ''idle in transaction'', ''idle in transaction (aborted)'') AND query !~* E''^(\\\\s*(--[^\\\\n]*\\\\n|/\\\\*.*\\\\*/|\\\\n))*(autovacuum|VACUUM|ANALYZE|REINDEX|CLUSTER|CREATE|ALTER|TRUNCATE|DROP)'')::integer), 0) query_slow_count, coalesce(sum((extract(''epoch'' FROM (clock_timestamp() - query_start)) > {$PG.QUERY_ETIME.MAX.WARN})::integer * (state NOT IN (''idle'') AND query !~* E''^(\\\\s*(--[^\\\\n]*\\\\n|/\\\\*.*\\\\*/|\\\\n))*(autovacuum|VACUUM|ANALYZE|REINDEX|CLUSTER|CREATE|ALTER|TRUNCATE|DROP)'')::integer), 0) tx_slow_count, coalesce(sum((extract(''epoch'' FROM (clock_timestamp() - query_start)) > {$PG.QUERY_ETIME.MAX.WARN})::integer * (state NOT IN (''idle'') AND query ~* E''^(\\\\s*(--[^\\\\n]*\\\\n|/\\\\*.*\\\\*/|\\\\n))*(autovacuum|VACUUM|ANALYZE|REINDEX|CLUSTER|CREATE|ALTER|TRUNCATE|DROP)'')::integer), 0) mro_slow_count FROM pg_stat_activity WHERE pid <> pg_backend_pid() GROUP BY 1) T WHERE NOT db.datistemplate ) SELECT json_object_agg(datname, row_to_json(T)) FROM T','','0','{$PG.USER}','{$PG.PASSWORD}','','','0',NULL,'Collect all metrics by query execution time.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ee6b3f64e07d4acd875dbd83dccd51d0','0','2','0'), ('45653','11','','10589','Get connections sum','db.odbc.select[pgsql.connections.sum,,"Database={$PG.DATABASE};{$PG.CONNSTRING.ODBC}"]','1m','0','0','0','4','','','','',NULL,NULL,'SELECT row_to_json(T) FROM ( SELECT sum(CASE WHEN state = ''active'' THEN 1 ELSE 0 END) AS active, sum(CASE WHEN state = ''idle'' THEN 1 ELSE 0 END) AS idle, sum(CASE WHEN state = ''idle in transaction'' THEN 1 ELSE 0 END) AS idle_in_transaction, sum(CASE WHEN state = ''idle in transaction (aborted)'' THEN 1 ELSE 0 END) AS idle_in_transaction_aborted, sum(CASE WHEN state = ''fastpath function call'' THEN 1 ELSE 0 END) AS fastpath_function_call, sum(CASE WHEN state = ''disabled'' THEN 1 ELSE 0 END) AS disabled, count(*) AS total, count(*)*100/(SELECT current_setting(''max_connections'')::int) AS total_pct, sum(CASE WHEN wait_event IS NOT NULL THEN 1 ELSE 0 END) AS waiting, (SELECT count(*) FROM pg_prepared_xacts) AS prepared FROM pg_stat_activity WHERE datid IS NOT NULL AND state IS NOT NULL) T','','0','{$PG.USER}','{$PG.PASSWORD}','','','0',NULL,'Collect all metrics from pg_stat_activity: https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-ACTIVITY-VIEW','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1d267b6aed064d03b4f464b27c1e897e','0','2','0'), ('45697','11','','10589','Database discovery','db.odbc.select[pgsql.db.discovery,,"Database={$PG.DATABASE};{$PG.CONNSTRING.ODBC}"]','1h','90d','365d','0','4','','','','',NULL,NULL,E'WITH T AS ( SELECT datname AS "{#DBNAME}" FROM pg_database WHERE NOT datistemplate AND datallowconn AND datname != ''postgres'' ) SELECT ''{"data":''|| regexp_replace(coalesce(json_agg(T), ''[]''::json)::text, E''[\\\\n\\\\r\\\\s]+'', '''', ''g'') || ''}'' FROM T','','0','{$PG.USER}','{$PG.PASSWORD}','','','1',NULL,'Discovers databases (DB) in the database management system (DBMS), except: - templates; - default "postgres" DB; - DBs that do not allow connections.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1c51decca55847a8adba4260f53e0acf','0','2','0'), ('45698','11','','10589','Replication discovery','db.odbc.select[pgsql.replication.process.discovery,,"Database={$PG.DATABASE};{$PG.CONNSTRING.ODBC}"]','15m','90d','365d','0','4','','','','',NULL,NULL,'SELECT json_build_object(''data'',COALESCE(json_agg(json_build_object(''{#APPLICATION_NAME}'',application_name)), ''[]'')) FROM pg_stat_replication','','0','{$PG.USER}','{$PG.PASSWORD}','','','1',NULL,'Discovers replication lag metrics.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','46a6f3cdfff244a28cb712c4186afc7f','0','2','0'), ('45699','11','','10589','DB [{#DBNAME}]: Database age','db.odbc.select[pgsql.db.age,,"Database={#DBNAME};{$PG.CONNSTRING.ODBC}"]','10m','31d','365d','0','3','','','','',NULL,NULL,'SELECT age(datfrozenxid) FROM pg_catalog.pg_database WHERE datname = ''{#DBNAME}''','','0','{$PG.USER}','{$PG.PASSWORD}','','','2',NULL,'Database age.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','98b74e578a3e48f3990bc16eb0217a17','0','2','0'), ('45700','11','','10589','DB [{#DBNAME}]: Bloating tables','db.odbc.select[pgsql.db.bloating_tables,,"Database={#DBNAME};{$PG.CONNSTRING.ODBC}"]','1m','31d','365d','0','3','','','','',NULL,NULL,'SELECT count(*) FROM pg_catalog.pg_stat_all_tables WHERE (n_dead_tup/(n_live_tup+n_dead_tup)::float8) > 0.2 AND (n_live_tup+n_dead_tup) > 50','','0','{$PG.USER}','{$PG.PASSWORD}','','','2',NULL,'Number of bloating tables.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cb7067b756bc4b3eb5be2ee2361df6f8','0','2','0'), ('45701','11','','10589','DB [{#DBNAME}]: Database size','db.odbc.select[pgsql.db.size,,"Database={#DBNAME};{$PG.CONNSTRING.ODBC}"]','5m','31d','365d','0','3','','B','','',NULL,NULL,'SELECT pg_database_size(current_database())','','0','{$PG.USER}','{$PG.PASSWORD}','','','2',NULL,'Database size.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f6bc4dd7f66a4a399a16230b6a7a8f2d','0','2','0'), ('45743','21','','10590','Authentication','sd_wan.authentication','{$SDWAN.AUTH.FREQUENCY}','0','0','0','4','','','','',NULL,NULL,E'var params = JSON.parse(value), request = new HttpRequest(), cookies = [], token = "", error_msg = ""; function authenticate(url) { var payload = ''j_username='' + encodeURIComponent(params.username) + ''&j_password='' + encodeURIComponent(params.password); request.addHeader(''Content-Type'', ''application/x-www-form-urlencoded''); response = request.post(url, payload); Zabbix.log(4, ''[ SD-WAN API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Failed to receive data: invalid response status code.''; } if (response !== null && response != "") { throw ''Authentication failed.''; } var headers = request.getHeaders(); for (key in headers) { if (key.toLowerCase() == ''set-cookie'') { var entries = headers[key].split('',''); for (idx in entries) { var value = entries[idx].split('';'')[0]; cookies.push(value); } } } }; function getToken(url) { response = request.get(url); Zabbix.log(4, ''[ SD-WAN API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Failed to receive data: invalid response status code.''; } var headers = request.getHeaders(); for (key in headers) { if (key.toLowerCase() == ''content-type'' && headers[key] != ''application/json'') { throw ''Something went wrong while getting the authentication token. Check debug log for more information.''; } } return response; }; try { [''username'', ''password'', ''url''].forEach(function (field) { var macro = ''{$SDWAN.API.'' + field.toUpperCase() + ''}''; if (params[field] === macro || params[field] === '''') { throw ''Please change '' + macro + '' macro to the proper value.''; } if (typeof params[field] === ''undefined'') { throw ''Please set \\'''' + field + ''\\'' script input parameter to '' + macro + '' macro value.''; } }); if (params.url.indexOf(''http://'') === -1 && params.url.indexOf(''https://'') === -1) { params.url = ''https://'' + params.url; } if (!params.url.endsWith(''/'')) { params.url += ''/''; } if (typeof params.http_proxy !== ''undefined'' && params.http_proxy !== ''{'' + ''$SDWAN.HTTP_PROXY}'' && params.http_proxy !== '''') { request.setProxy(params.http_proxy); } authenticate(params.url + ''j_security_check''); token = getToken(params.url + ''dataservice/client/token''); } catch (err) { error_msg = err; }; return JSON.stringify({ ''cookie'': cookies.join(''; ''), ''token'': token, ''error'': error_msg.toString() });','','0','','','','','0',NULL,'Cisco SD-WAN authentication with service account parameters and temporary-generated token usage. Returns an authentication token and session id; it is required only once and is used for all dependent script items. A session will expire after 30 minutes of inactivity or after 24 hours, which is the total lifespan of a session. Check the template documentation for the details.','0','30d','0','',NULL,'{$SDWAN.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','5aa5a643a3cf42148454507da22aeb17','0','2','0'), ('45744','15','','10591','Memory utilization','sd_wan.device.memory.util','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//sd_wan.device.memory.used)/last(//sd_wan.device.memory.total)*100','','0','','','','','0',NULL,'Calculated percentage of the memory used, in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8b8551ab8a8c4586b2a1bc02bcc7ca60','0','2','0'), ('45745','21','','10591','Get routes data','sd_wan.get.routes','{$SDWAN.ROUTES.FREQUENCY}','0','0','0','4','','','','',NULL,NULL,E'var params = JSON.parse(value), request = new HttpRequest(), result = { "data": [], "error": "" }, error_msg = ""; function getHttpData(url, data, token, cookie) { request.addHeader(''Cookie: '' + cookie); request.addHeader(''Content-Type: application/json''); request.addHeader(''X-XSRF-TOKEN: '' + token); if (typeof data !== ''undefined'') { data = JSON.stringify(data); } response = request.post(url, data); Zabbix.log(4, ''[ Cisco SD-WAN ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Failed to receive data: invalid response status code.''; } if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from Cisco SD-WAN API. Check debug log for more information.''; } } if (typeof (response) !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object.''; } return response; }; try { [''auth.token'', ''auth.cookie'', ''api.url'', ''device_id''].forEach(function (field) { var macro = ''{$SDWAN.'' + field.toUpperCase() + ''}''; var key = field.split(''.'').slice(-1); if (params[key] === macro || params[key] === '''') { throw ''Please change '' + macro + '' macro to the proper value.''; } if (typeof params[key] === ''undefined'') { throw ''Please set \\'''' + key + ''\\'' script input parameter to '' + macro + '' macro value.''; } }); if (params.url.indexOf(''http://'') === -1 && params.url.indexOf(''https://'') === -1) { params.url = ''https://'' + params.url; } if (!params.url.endsWith(''/'')) { params.url += ''/''; } if (typeof params.http_proxy !== ''undefined'' && params.http_proxy !== ''{'' + ''$SDWAN.HTTP_PROXY}'' && params.http_proxy !== '''') { request.setProxy(params.http_proxy); } if (!params.interval.endsWith(''h'')) { throw ''The value of {'' + ''$SDWAN.ROUTES.INTERVAL} must be expressed in hours.''; } else { try { params.interval = Number(params.interval.replace(''h'', '''')); } catch (error) { throw ''Please change {'' + ''$SDWAN.ROUTES.INTERVAL} macro to the proper value.''; } } var req_data = { "query": { "condition": "AND", "rules": [ { "value": [ String(params.interval) ], "field": "entry_time", "type": "date", "operator": "last_n_hours" }, { "value": [ params.device_id ], "field": "vdevice_name", "type": "string", "operator": "in" } ] }, "aggregation": { "field": [ { "property": "local_color", "order": "asc", "sequence": 1 }, { "property": "remote_color", "order": "asc", "sequence": 1 } ], "metrics": [ { "property": "loss_percentage", "type": "avg" }, { "property": "latency", "type": "avg" }, { "property": "jitter", "type": "avg" } ] } }; var routes = getHttpData( params.url + ''dataservice/statistics/approute/aggregation'', req_data, params.token, params.cookie ); if (Array.isArray(routes.data)) { result["data"] = routes.data; } else { throw ''Failed to parse response received from Cisco SD-WAN API. Check debug log for more information.''; } } catch (error) { error_msg = error.toString(); error_msg += (error_msg.endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ Cisco SD-WAN ] ERROR: '' + error_msg); }; result.error = error_msg; return JSON.stringify(result);','','0','','','','','0',NULL,'Item for gathering device routes from Cisco SD-WAN API.','0','30d','0','',NULL,'{$SDWAN.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','d9ae4a103ae74932a57ad495f2829b62','0','2','0'), ('45746','21','','10591','Get interfaces data','sd_wan.get.interfaces','1m','0','0','0','4','','','','',NULL,NULL,E'var params = JSON.parse(value), request = new HttpRequest(), result = { "data": [], "error": "" }, error_msg = ""; function getHttpData(url, token, cookie) { request.addHeader(''Cookie: '' + cookie); request.addHeader(''X-XSRF-TOKEN: '' + token); response = request.get(url); Zabbix.log(4, ''[ Cisco SD-WAN ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Failed to receive data: invalid response status code.''; } if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from Cisco SD-WAN API. Check debug log for more information.''; } } if (typeof (response) !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object.''; } return response; }; try { [''auth.token'', ''auth.cookie'', ''api.url'', ''device_id''].forEach(function (field) { var macro = ''{$SDWAN.'' + field.toUpperCase() + ''}''; var key = field.split(''.'').slice(-1); if (params[key] === macro || params[key] === '''') { throw ''Please change '' + macro + '' macro to the proper value.''; } if (typeof params[key] === ''undefined'') { throw ''Please set \\'''' + key + ''\\'' script input parameter to '' + macro + '' macro value.''; } }); if (params.url.indexOf(''http://'') === -1 && params.url.indexOf(''https://'') === -1) { params.url = ''https://'' + params.url; } if (!params.url.endsWith(''/'')) { params.url += ''/''; } if (typeof params.http_proxy !== ''undefined'' && params.http_proxy !== ''{'' + ''$SDWAN.HTTP_PROXY}'' && params.http_proxy !== '''') { request.setProxy(params.http_proxy); } var interface_list = getHttpData( params.url + ''dataservice/device/interface?deviceId='' + encodeURIComponent(params.device_id), params.token, params.cookie ); if (Array.isArray(interface_list.data) && interface_list.data.length > 0) { var interfaces = {}; interface_list.data.forEach(function (if_item) { var if_key = if_item[''vdevice-name''] + ''_'' + if_item.ifname + ''_'' + if_item.ifindex; interfaces[if_key] = (typeof interfaces[if_key] !== ''undefined'') ? interfaces[if_key] : {}; if (typeof if_item[''af-type''] !== ''undefined'') { if (if_item[''af-type''].includes(''ipv6'')) { Object.keys(if_item).sort().forEach(function (key) { if (key.match(/([tr]x-)/g)) { interfaces[if_key][''ipv6-'' + key] = if_item[key]; } }); } else { interfaces[if_key] = if_item; } } else { interfaces[if_key] = if_item; } }); Object.keys(interfaces).forEach(function (key) { result.data.push(interfaces[key]); }); } else { throw ''Failed to parse response received from Cisco SD-WAN API. Check debug log for more information.''; } } catch (error) { error_msg = error.toString(); error_msg += (error_msg.endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ Cisco SD-WAN ] ERROR: '' + error_msg); }; result.error = error_msg; return JSON.stringify(result);','','0','','','','','0',NULL,'Item for gathering device interfaces from Cisco SD-WAN API.','0','30d','0','',NULL,'{$SDWAN.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','694fb02640314fcab6cb2352fe4378ea','0','2','0'), ('45747','21','','10591','Get device data','sd_wan.get.device','1m','0','0','0','4','','','','',NULL,NULL,E'var params = JSON.parse(value), request = new HttpRequest(), device_info = {}, error_msg = ""; function getHttpData(url, token, cookie) { request.addHeader(''Cookie: '' + cookie); request.addHeader(''X-XSRF-TOKEN: '' + token); response = request.get(url); Zabbix.log(4, ''[ Cisco SD-WAN ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Failed to receive data: invalid response status code.''; } if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from Cisco SD-WAN API. Check debug log for more information.''; } } if (typeof (response) !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object.''; } return response; }; try { [''auth.token'', ''auth.cookie'', ''api.url'', ''device_id''].forEach(function (field) { var macro = ''{$SDWAN.'' + field.toUpperCase() + ''}''; var key = field.split(''.'').slice(-1); if (params[key] === macro || params[key] === '''') { throw ''Please change '' + macro + '' macro to the proper value.''; } if (typeof params[key] === ''undefined'') { throw ''Please set \\'''' + key + ''\\'' script input parameter to '' + macro + '' macro value.''; } }); if (params.url.indexOf(''http://'') === -1 && params.url.indexOf(''https://'') === -1) { params.url = ''https://'' + params.url; } if (!params.url.endsWith(''/'')) { params.url += ''/''; } if (typeof params.http_proxy !== ''undefined'' && params.http_proxy !== ''{'' + ''$SDWAN.HTTP_PROXY}'' && params.http_proxy !== '''') { request.setProxy(params.http_proxy); } device_info = getHttpData( params.url + ''dataservice/device?deviceId='' + encodeURIComponent(params.device_id), params.token, params.cookie ); if (Array.isArray(device_info.data) && device_info.data.length > 0) { device_info = device_info.data[0]; } else { throw ''Failed to parse response received from Cisco SD-WAN API. Check debug log for more information.''; } var system_info = getHttpData( params.url + ''dataservice/device/system/status?deviceId='' + params.device_id, params.token, params.cookie ); if (Array.isArray(system_info.data) && system_info.data.length > 0) { device_info = Object.assign(device_info, system_info.data[0]); } else { throw ''Failed to parse response received from Cisco SD-WAN API. Check debug log for more information.''; } } catch (error) { error_msg = error.toString(); error_msg += (error_msg.endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ Cisco SD-WAN ] ERROR: '' + error_msg); }; device_info.error = error_msg; return JSON.stringify(device_info);','','0','','','','','0',NULL,'Item for gathering device data from Cisco SD-WAN API.','0','30d','0','',NULL,'{$SDWAN.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','7a4cc11f131e4f7f9511ac19dbfb82f4','0','2','0'), ('45818','19','','10593','Get projects','mantisbt.get.projects','1h','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get projects from Mantis BT.','0','30d','0','',NULL,'30s','{$MANTIS.URL}/api/rest/projects/','','','200','1','0','{$MANTIS.HTTP.PROXY}','Authorization: {$MANTIS.TOKEN}','0','0','0','0','0','0','0','bf1b74b98d5b4311afeb721059c01da9','0','2','0'), ('45820','19','','10593','Project [{#NAME}]: Get issues','mantisbt.get.issues[{#NAME}]','20m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Getting project issues.','0','30d','0','',NULL,'30s','{$MANTIS.URL}/api/rest/issues?project_id={#ID}&page_size=0','','','200','1','0','{$MANTIS.HTTP.PROXY}','Authorization: {$MANTIS.TOKEN}','0','0','0','0','0','0','0','f0064281917741aaa9b8e808509077e1','0','2','0'), ('45852','19','','10594','Nomad clients get','nomad.client.nodes.get','1h','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Nomad clients data in raw format.','0','30d','0','',NULL,'{$NOMAD.DATA.TIMEOUT}','{$NOMAD.ENDPOINT.API.URL}/v1/nodes','[{"os":"true"}]','','','1','0','{$NOMAD.HTTP.PROXY}','X-Nomad-Token: {$NOMAD.TOKEN}','2','0','1','0','0','0','0','99d8cd0768094bef93995e4baa475186','0','2','0'), ('45853','21','','10594','Nomad servers get','nomad.server.nodes.get','1h','0','0','0','4','','','','',NULL,NULL,'var Nomad = { setParams: function (params) { [''api_endpoint''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } }); Nomad.params = params; if (typeof Nomad.params.api_endpoint === ''string'' && !Nomad.params.api_endpoint.endsWith(''/'')) { Nomad.params.api_endpoint += ''/''; } }, request: function (query) { var response, request = new HttpRequest(), url = Nomad.params.api_endpoint + query; request.addHeader(''Content-Type: application/json''); request.addHeader(''X-Nomad-Token: '' + Nomad.params.token); if (Nomad.params.http_proxy) { request.setProxy(Nomad.params.http_proxy) Zabbix.log(4, ''[ Nomad ] Using http proxy: '' + Nomad.params.http_proxy); } Zabbix.log(4, ''[ Nomad ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ Nomad ] Received response with status code '' + request.getStatus() + '': '' + response); if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from Nomad agent API.''; } } return { status: request.getStatus(), response: response }; }, getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getIds: function () { var result = this.request(''v1/operator/raft/configuration''); if (typeof result.response !== ''object'' || result.status != 200) { throw ''Cannot get servers list from Nomad agent API.''; } return this.getField(result, ''response.Servers'') .map(function (srv) { return srv[''ID'']; }); }, getServers: function () { var ids = this.getIds(); result = Nomad.request(''v1/agent/members''); if (typeof result.response !== ''object'' || result.status != 200) { throw ''Cannot get servers list from Nomad agent API.''; } return this.getField(result,''response.Members'').filter(function (s) { return ids.indexOf(s.Tags.id) >= 0; }); }, }; try { Nomad.setParams(JSON.parse(value)); var servers = Nomad.getServers(); return JSON.stringify(servers); } catch (error) { error += ((String(error).endsWith(''.'')) ? '''' : ''.''); Zabbix.log(3, ''[ Nomad ] ERROR: '' + error); return JSON.stringify({ error: error + '' Check debug log for more information.'' }); }','','0','','','','','0',NULL,'Nomad servers data in raw format.','0','30d','0','',NULL,'{$NOMAD.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','254354aa21764751bf7e1961e37de7ae','0','2','0'), ('45854','3','','10595','Service [rpc] state','net.tcp.service[tcp,,{$NOMAD.CLIENT.RPC.PORT}]','1m','31d','365d','0','3','','','','',NULL,'1120','','','0','','','','','0',NULL,'Current [rpc] service state.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f98bd789c9f7409aac2e1902776ddc21','0','2','0'), ('45855','3','','10595','Service [serf] state','net.tcp.service[tcp,,{$NOMAD.CLIENT.SERF.PORT}]','1m','31d','365d','0','3','','','','',NULL,'1120','','','0','','','','','0',NULL,'Current [serf] service state.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','00b39edd70cc42daa565879494f15f38','0','2','0'), ('45856','19','','10595','Node info get','nomad.client.node.info.get','1h','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Node info data in raw format.','0','30d','0','',NULL,'{$NOMAD.DATA.TIMEOUT}','{$NOMAD.CLIENT.API.SCHEME}://{HOST.IP}:{$NOMAD.CLIENT.API.PORT}/v1/nodes',E'[{"filter":"ID == \\"{HOST.HOST}\\""}]','','','1','0','{$NOMAD.HTTP.PROXY}','X-Nomad-Token: {$NOMAD.TOKEN}','2','0','1','0','0','0','0','36eb68c80b194a4591208cf210fb6d6e','0','2','0'), ('45857','19','','10595','Allocated jobs get','nomad.client.job.allocs.get','1h','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Allocated jobs data in raw format.','0','30d','0','',NULL,'{$NOMAD.DATA.TIMEOUT}','{$NOMAD.CLIENT.API.SCHEME}://{HOST.IP}:{$NOMAD.CLIENT.API.PORT}/v1/allocations',E'[{"reverse":"true"},{"task_states":"false"},{"filter":"NodeID == \\"{HOST.HOST}\\" and DesiredStatus == \\"run\\" and ClientStatus == \\"running\\""}]','','','1','0','{$NOMAD.HTTP.PROXY}','X-Nomad-Token: {$NOMAD.TOKEN}','2','0','1','0','0','0','0','9948608c5b3a4dad9d1b433483296427','0','2','0'), ('45858','19','','10595','Telemetry get','nomad.client.data.get','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Telemetry data in raw format.','0','30d','0','',NULL,'{$NOMAD.DATA.TIMEOUT}','{$NOMAD.CLIENT.API.SCHEME}://{HOST.IP}:{$NOMAD.CLIENT.API.PORT}/v1/metrics','[{"format":"prometheus"}]','','','1','0','{$NOMAD.HTTP.PROXY}','X-Nomad-Token: {$NOMAD.TOKEN}','2','0','1','0','0','0','0','fe07fd88f3e14273b3f0b135aab26236','0','2','0'), ('45859','3','','10596','Service [rpc] state','net.tcp.service[tcp,,{$NOMAD.SERVER.RPC.PORT}]','1m','31d','365d','0','3','','','','',NULL,'1123','','','0','','','','','0',NULL,'Current [rpc] service state.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c5903e91262b4877be8c7e8f304b2862','0','2','0'), ('45860','19','','10596','Telemetry get','nomad.server.data.get','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Telemetry data in raw format.','0','30d','0','',NULL,'{$NOMAD.DATA.TIMEOUT}','{$NOMAD.SERVER.API.SCHEME}://{HOST.IP}:{$NOMAD.SERVER.API.PORT}/v1/metrics','[{"format":"prometheus"}]','','','1','0','{$NOMAD.HTTP.PROXY}','X-Nomad-Token: {$NOMAD.TOKEN}','2','0','1','0','0','0','0','b7ba2f4a56b04de298fde77cbf5afb6a','0','2','0'), ('45861','3','','10596','Service [serf] state','net.tcp.service[tcp,,{$NOMAD.SERVER.SERF.PORT}]','1m','31d','365d','0','3','','','','',NULL,'1123','','','0','','','','','0',NULL,'Current [serf] service state.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9eecc3ee79f04448991c83ac93459597','0','2','0'), ('45862','19','','10596','Internal stats get','nomad.server.stats.get','1h','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Internal stats data in raw format.','0','30d','0','',NULL,'{$NOMAD.DATA.TIMEOUT}','{$NOMAD.SERVER.API.SCHEME}://{HOST.IP}:{$NOMAD.SERVER.API.PORT}/v1/agent/self',E'[{"filter":"ID == \\"{HOST.HOST}\\""}]','','','1','0','{$NOMAD.HTTP.PROXY}','X-Nomad-Token: {$NOMAD.TOKEN}','2','0','1','0','0','0','0','f8d3a680e6f94250ab0a1ef8169889e3','0','2','0'), ('46045','5','','10048','Utilization of snmp poller data collector processes, in %','zabbix[process,snmp poller,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the snmp poller processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','96b04e9605e04b26a280bc62da92879b','0','2','0'), ('46047','5','','10047','Utilization of snmp poller data collector processes, in %','zabbix[process,snmp poller,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the snmp poller processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aa5db45e74834355a80566316017d6d4','0','2','0'), ('46050','19','','10599','Get access token','acronis.cpc.account_manager.get_token','{$ACRONIS.CPC.AUTH.INTERVAL}','0','0','0','4','','','','',NULL,NULL,'','','1','{$ACRONIS.CPC.AUTH.CLIENT.ID}','{$ACRONIS.CPC.AUTH.SECRET}','','','0',NULL,'Authorizes API user and receives access token.','0','30d','0','',NULL,'15s','{$ACRONIS.CPC.DATACENTER.URL}{$ACRONIS.CPC.PATH.ACCOUNT.MANAGEMENT}/idp/token','','grant_type=client_credentials','','1','0','{$ACRONIS.CPC.HTTP.PROXY}','Content-Type: application/x-www-form-urlencoded X-Application-Secret: 5619386d-de56-49ec-8508-f5c399d3b9bd','0','1','0','0','0','0','0','bce642c2c6e743ccb618c96f6ca533da','0','2','0'), ('46051','19','','10600','Get customers','acronis.cpc.customers.get','5m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Fetches all customers.','0','30d','0','',NULL,'15s','{$ACRONIS.CPC.DATACENTER.URL}{$ACRONIS.CPC.PATH.ACCOUNT.MANAGEMENT}/tenants','[{"subtree_root_id":"{$ACRONIS.CPC.MSP.TENANT.UUID}"}]','','','1','0','{$ACRONIS.CPC.HTTP.PROXY}','Accept: application/json Authorization: Bearer {$ACRONIS.CPC.ACCESS_TOKEN} X-Application-Secret: 5619386d-de56-49ec-8508-f5c399d3b9bd','0','0','0','0','0','0','0','77f25dbbd477458a88f1850701dccc69','0','2','0'), ('46052','19','','10600','Get alerts','acronis.cpc.alerts.get','5m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Fetches all alerts.','0','30d','0','',NULL,'15s','{$ACRONIS.CPC.DATACENTER.URL}{$ACRONIS.CPC.PATH.ALERTS}/alerts','','','','1','0','{$ACRONIS.CPC.HTTP.PROXY}','Accept: application/json Authorization: Bearer {$ACRONIS.CPC.ACCESS_TOKEN} X-Application-Secret: 5619386d-de56-49ec-8508-f5c399d3b9bd','0','0','0','0','0','0','0','dba9a02767be47819f7012f316723fff','0','2','0'), ('46053','19','','10600','Get devices','acronis.cpc.devices.get','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Fetches all devices.','0','30d','0','',NULL,'15s','{$ACRONIS.CPC.DATACENTER.URL}{$ACRONIS.CPC.PATH.RESOURCE.MANAGEMENT}/resources','[{"type":"{$ACRONIS.CPC.DEVICE.RESOURCE.TYPE}"}]','','','1','0','{$ACRONIS.CPC.HTTP.PROXY}','Accept: application/json Authorization: Bearer {$ACRONIS.CPC.ACCESS_TOKEN} X-Application-Secret: 5619386d-de56-49ec-8508-f5c399d3b9bd','0','0','0','0','0','0','0','81b3d23d30964b88aeb3a0911ba0e487','0','2','0'), ('46054','21','','10600','Register integration','acronis.cpc.register.integration','24h','0','0','0','3','','','','',NULL,NULL,' const request_path = ''/api/integration_management/v2/status''; const app_id = ''5619386d-de56-49ec-8508-f5c399d3b9bd''; function checkParams(params) { [''api_url'', ''api_token'', ''tenant_uuid''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); return params; } function getHttpData(url, register, params, api_token, tenant_uuid) { const request = new HttpRequest(); request.addHeader(''Content-Type: application/json''); request.addHeader(''Authorization: Bearer '' + api_token); request.addHeader(''X-Application-Secret: '' + app_id); if (params[''http_proxy'']) { request.setProxy(params[''http_proxy'']); Zabbix.log(4, ''[ ACRONIS CYBER PROTECT CLOUD API ] Using http proxy: '' + params[''http_proxy'']); } if (!register) { const response = request.get(url + ''?tenantID='' + encodeURIComponent(tenant_uuid)); Zabbix.log(4, ''[ ACRONIS CYBER PROTECT CLOUD API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { if (typeof (response.error && response.error.message) !== ''undefined'') { throw response.error.message; } else { throw ''Failed to receive data: invalid response status code. Check debug log for more information.''; } } return response; } else { const request_body = { "application_id": app_id, "module": { "name": "Zabbix integration with Acronis Cyber Protect Cloud", "version": "1.0.0" }, "vendor_system": { "name": "Product integrated with Acronis", "version": "23.07" }, "events": [ { "category": "activation", "action": "activated integration", "activation_event": true } ] }; const response = request.post(url + ''?tenantID='' + encodeURIComponent(tenant_uuid), JSON.stringify(request_body)); Zabbix.log(4, ''[ ACRONIS CYBER PROTECT CLOUD API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 204) { if (typeof (response.error && response.error.message) !== ''undefined'') { throw response.error.message; } else { throw ''Failed to receive data: invalid response status code. Check debug log for more information.''; } } return 1; } } function parseGetStatusData(http_response) { const data = JSON.parse(http_response); if (data[''items'']) { data[''items''].forEach(function (app) { if (app[''application_id''] && app[''application_id''] === app_id) { return app[''active'']; } }); return false; } else { throw ''Unexpected data structure in HTTP response.''; } } const params = checkParams(JSON.parse(value)), url = params.api_url, api_token = params.api_token, tenant_uuid = params.tenant_uuid; const current_activation_status = parseGetStatusData(getHttpData(url + request_path, false, params, api_token, tenant_uuid)); if (!current_activation_status) { return getHttpData(url + request_path, true, params, api_token, tenant_uuid); } else { return 0; }','','0','','','','','0',NULL,'Registers integration on Acronis services.','0','30d','0','',NULL,'30s','','','','200','1','0','','','0','0','0','0','0','0','0','3697d34ebbb74b90aa7318321ecc27e5','0','2','0'), ('46064','19','','10600','Device [{#NAME}]:[{#ID}]: Raw data resources status','acronis.cpc.device.res.status.raw[{#NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Gets statuses for device resources.','0','30d','0','',NULL,'15s','{$ACRONIS.CPC.DATACENTER.URL}{$ACRONIS.CPC.PATH.RESOURCE.MANAGEMENT}/resource_statuses','[{"resource_id":"{#ID}"},{"include_attributes":"true"}]','','','1','0','{$ACRONIS.CPC.HTTP.PROXY}','Accept: application/json Authorization: Bearer {$ACRONIS.CPC.ACCESS_TOKEN} X-Application-Secret: 5619386d-de56-49ec-8508-f5c399d3b9bd','0','0','0','0','0','0','0','20d93972ca2f47af96aed7ee9aa642af','0','2','0'), ('46085','19','','10602','Get server information','nextcloud.serverinfo.get_data','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$NEXTCLOUD.USER.NAME}','{$NEXTCLOUD.USER.PASSWORD}','','','0',NULL,'This item provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc. https://github.com/nextcloud/serverinfo','0','30d','0','',NULL,'10s','{$NEXTCLOUD.SCHEMA}://{$NEXTCLOUD.ADDRESS}/ocs/v2.php/apps/serverinfo/api/v1/info','','','200,401','1','0','{$NEXTCLOUD.PROXY}','OCS-APIRequest: true','0','0','0','0','0','0','0','8a7fb4062f484de4a8579ebb83b297a2','0','2','0'), ('46116','19','','10602','Nextcloud: User discovery','nextcloud.user.discovery','1h','90d','365d','0','4','','','','',NULL,NULL,'','','1','{$NEXTCLOUD.USER.NAME}','{$NEXTCLOUD.USER.PASSWORD}','','','1',NULL,'User discovery.','0','1d','1','',NULL,'10s','{$NEXTCLOUD.SCHEMA}://{$NEXTCLOUD.ADDRESS}/ocs/v1.php/cloud/users?format=json','','','200','1','0','{$NEXTCLOUD.PROXY}','OCS-APIRequest: true','0','0','0','0','0','0','0','477477630aa14dd8b3940f7b95697893','0','2','0'), ('46117','19','','10602','User "{#NEXTCLOUD.USER}": Get data','nextcloud.user.get_data[{#NEXTCLOUD.USER}]','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$NEXTCLOUD.USER.NAME}','{$NEXTCLOUD.USER.PASSWORD}','','','2',NULL,'Get common information about user','0','30d','0','',NULL,'10s','{$NEXTCLOUD.SCHEMA}://{$NEXTCLOUD.ADDRESS}/ocs/v1.php/cloud/users/{#NEXTCLOUD.USER}','','','200,401','1','0','{$NEXTCLOUD.PROXY}','OCS-APIRequest: true','0','0','0','0','0','0','0','78b3e2a8e7844b0ea5929dbecd8a2ed7','0','2','0'), ('46129','17','','10518','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','12720ac373444e33961d97f9903eac0e','0','2','0'), ('46130','0','','10329','Version','pgsql.version["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'PostgreSQL version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','523528aad175455fbd1daba161365651','0','2','0'), ('46131','11','','10589','Version','db.odbc.select[pgsql.version,,"Database={$PG.DATABASE};{$PG.CONNSTRING.ODBC}"]','15m','31d','0','0','1','','','','',NULL,NULL,'SELECT version()','','0','{$PG.USER}','{$PG.PASSWORD}','','','0',NULL,'PostgreSQL version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4bfb0c1697f043d9acf640b84cc8d945','0','2','0'), ('46132','3','','10603','Check port availability','net.tcp.service["{$FGATE.SCHEME}","{$FGATE.API.FQDN}","{$FGATE.API.PORT}"]','1m','31d','365d','0','3','','','','',NULL,'1136','','','0','','','','','0',NULL,'','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','27d30f93ff7c49d89537c43bad5f9453','0','2','0'), ('46133','19','','10603','Get firmware info','fgate.firmware.get_data','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Item for gathering device firmware info from FortiGate API.','0','30d','0','',NULL,'{$FGATE.DATA.TIMEOUT}','{$FGATE.SCHEME}://{$FGATE.API.FQDN}:{$FGATE.API.PORT}/api/v2/monitor/system/firmware','','','200','1','0','{$FGATE.HTTP.PROXY}','Accept: application/json Authorization: Bearer {$FGATE.API.TOKEN}','0','0','0','0','0','0','0','bc2ac899ea284703a6a8753ac5abc7c6','0','2','0'), ('46134','19','','10603','Get system info','fgate.system.get_data','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Item for gathering device system info from FortiGate API.','0','30d','0','',NULL,'{$FGATE.DATA.TIMEOUT}','{$FGATE.SCHEME}://{$FGATE.API.FQDN}:{$FGATE.API.PORT}/api/v2/monitor/web-ui/state','','','200','1','0','{$FGATE.HTTP.PROXY}','Accept: application/json Authorization: Bearer {$FGATE.API.TOKEN}','0','0','0','0','0','0','0','a6b831300e7048fbad4502973d0318e7','0','2','0'), ('46135','21','','10603','Get service licenses','fgate.service.get_data','1m','0','0','0','4','','','','',NULL,NULL,'var params = JSON.parse(value), request = new HttpRequest(), result = {"data": {}, "lld": [], "error": ""}, api_url = "", error_msg = ""; function getHttpData(url) { request.addHeader(''Accept: application/json''); request.addHeader(''Authorization: Bearer '' + params.token); response = request.get(url); Zabbix.log(4, ''[ FortiGate ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Failed to receive data: invalid response status code. Check debug log for more information.''; } if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from FortiGate API. Check debug log for more information.''; } } if (typeof response !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object.''; } if ((typeof response.status !== ''undefined'' && response.status != ''success'') || typeof response.results === ''undefined'') { var uri = ''/'' + response.path + ''/'' + response.name + ((typeof response.action !== ''undefined'') ? ''?action='' + response.action : ""); throw ''Failed to parse response received from '' + uri + ''. Check debug log for more information.''; } return response; }; function capitalize(word, idx) { return upAcronymCase(word.charAt(idx).toUpperCase() + word.slice(idx+1)); } function upAcronymCase(word) { if (word.length < 4) { return word.toUpperCase() } return word; } function prepareServiceName(key) { var result = []; key.split(''_'').forEach(function (w) { var forti_idx = w.indexOf(''forti''); w = upAcronymCase(w); if (forti_idx !== -1) w = ''Forti'' + capitalize(w, forti_idx + 5); else w = capitalize(w, 0) result.push(w); }); return result.join('' ''); }; try { [''scheme'', ''api.token'', ''api.fqdn'', ''api.port''].forEach(function (field) { var macro = ''{$FGATE.'' + field.toUpperCase() + ''}''; var key = field.split(''.'').pop(); if (params[key] === macro || params[key] === '''') { throw ''Please change '' + macro + '' macro to the proper value.''; } if (typeof params[key] === ''undefined'') { throw ''Please set "'' + key + ''" script input parameter to '' + macro + '' macro value.''; } }); api_url = params.scheme + ''://'' + params.fqdn + '':'' + params.port; if (typeof params.http_proxy !== ''undefined'' && params.http_proxy !== ''{'' + ''$FGATE.HTTP.PROXY}'' && params.http_proxy !== '''') { request.setProxy(params.http_proxy); } var licence_list = getHttpData( api_url + ''/api/v2/monitor/license/status'' ); result.data = licence_list.results; Object.keys(licence_list.results).forEach(function (key) { var resource = licence_list.results[key]; if (typeof resource.status !== ''undefined'' && typeof resource.type !== ''undefined'') { result.lld.push({ "key": key, "name": prepareServiceName(key), "status": resource.status, "type": resource.type, }); } }); } catch (error) { error_msg = error.toString(); error_msg += error_msg.endsWith(''.'') ? '''' : ''.''; Zabbix.log(3, ''[ FortiGate ] ERROR: '' + error_msg); }; result.error = error_msg; return JSON.stringify(result);','','0','','','','','0',NULL,'Item for gathering information about service licenses from FortiGate API.','0','30d','0','',NULL,'{$FGATE.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','90a78cff28d54a1b9b955e9dc94d48c7','0','2','0'), ('46136','21','','10603','Get SD-WAN data','fgate.sdwan.get_data','1m','0','0','0','4','','','','',NULL,NULL,'var params = JSON.parse(value), request = new HttpRequest(), result = {"data": {}, "error": ""}, api_url = "", health_members = [], health_checks = [], members = {}, error_msg = ""; function getHttpData(url) { request.addHeader(''Accept: application/json''); request.addHeader(''Authorization: Bearer '' + params.token); response = request.get(url); Zabbix.log(4, ''[ FortiGate ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Failed to receive data: invalid response status code. Check debug log for more information.''; } if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from FortiGate API. Check debug log for more information.''; } } if (typeof response !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object.''; } if ((typeof response.status !== ''undefined'' && response.status != ''success'') || typeof response.results === ''undefined'') { var uri = ''/'' + response.path + ''/'' + response.name + ((typeof response.action !== ''undefined'') ? ''?action='' + response.action : ""); throw ''Failed to parse response received from '' + uri + ''. Check debug log for more information.''; } return response; }; try { [''scheme'', ''api.token'', ''api.fqdn'', ''api.port''].forEach(function (field) { var macro = ''{$FGATE.'' + field.toUpperCase() + ''}''; var key = field.split(''.'').pop(); if (params[key] === macro || params[key] === '''') { throw ''Please change '' + macro + '' macro to the proper value.''; } if (typeof params[key] === ''undefined'') { throw ''Please set "'' + key + ''" script input parameter to '' + macro + '' macro value.''; } }); if (typeof params.http_proxy !== ''undefined'' && params.http_proxy !== ''{'' + ''$FGATE.HTTP.PROXY}'' && params.http_proxy !== '''') { request.setProxy(params.http_proxy); } api_url = params.scheme + ''://'' + params.fqdn + '':'' + params.port; var sdwan_member_data = getHttpData( api_url + ''/api/v2/monitor/virtual-wan/members'' ); var sdwan_health_data = getHttpData( api_url + ''/api/v2/monitor/virtual-wan/health-check'' ); var sdwan_list = getHttpData( api_url + ''/api/v2/cmdb/system/sdwan'' ); sdwan_list.results[''health-check''].forEach(function (item) { health_checks[item.q_origin_key] = item.members.length; item.members.forEach(function (m) { health_members.push({ ''member_id'': m.q_origin_key, ''health_id'': item.q_origin_key, ''health_name'': item.name, }); }); }); sdwan_list.results.members.forEach(function (item) { members[item.q_origin_key] = item; }); result.data = { ''member_lld'': sdwan_list.results.members.filter(function (v) { if (v.interface.length > 0) { return v; } }).map(function (v) { if (typeof v.interface !== ''undefined'' && typeof sdwan_member_data.results[v.interface] !== ''undefined'') { Object.assign(v, sdwan_member_data.results[v.interface]); } return v; }), ''health_lld'': health_members.map(function (m) { var item = {}; if (typeof members[String(m.member_id)] !== ''undefined'') { [''interface'', ''status''].forEach(function (k) { item[k] = members[String(m.member_id)][k]; }); Object.assign(item, m); }; return item; }).filter(function (v) { if (v.interface.length > 0) { return v; } }), ''health_data'': sdwan_list.results[''health-check''].filter(function (v) { if (typeof health_checks[String(v.q_origin_key)] !== ''undefined'' && health_checks[String(v.q_origin_key)] > 0) { return v; } }).map(function (v) { delete v.members; if (typeof v.name !== ''undefined'' && typeof sdwan_health_data.results[v.name] !== ''undefined'') { Object.assign(v, sdwan_health_data.results[v.name]); } return v; }) } } catch (error) { error_msg = error.toString(); error_msg += error_msg.endsWith(''.'') ? '''' : ''.''; Zabbix.log(3, ''[ FortiGate ] ERROR: '' + error_msg); }; result.error = error_msg; return JSON.stringify(result);','','0','','','','','0',NULL,'Item for gathering SD-WAN information from FortiGate API.','0','30d','0','',NULL,'{$FGATE.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','01814568a3bc4774a37957ff3d8c5e09','0','2','0'), ('46137','21','','10603','Get resources data','fgate.resources.get_data','1m','0','0','0','4','','','','',NULL,NULL,'var params = JSON.parse(value), request = new HttpRequest(), result = {"data": {}, "error": ""}, api_url = "", error_msg = ""; function getHttpData(url) { request.addHeader(''Accept: application/json''); request.addHeader(''Authorization: Bearer '' + params.token); response = request.get(url); Zabbix.log(4, ''[ FortiGate ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Failed to receive data: invalid response status code. Check debug log for more information.''; } if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from FortiGate API. Check debug log for more information.''; } } if (typeof response !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object.''; } if ((typeof response.status !== ''undefined'' && response.status != ''success'') || typeof response.results === ''undefined'') { var uri = ''/'' + response.path + ''/'' + response.name + ((typeof response.action !== ''undefined'') ? ''?action='' + response.action : ""); throw ''Failed to parse response received from '' + uri + ''. Check debug log for more information.''; } return response; }; try { [''scheme'', ''api.token'', ''api.fqdn'', ''api.port''].forEach(function (field) { var macro = ''{$FGATE.'' + field.toUpperCase() + ''}''; var key = field.split(''.'').pop(); if (params[key] === macro || params[key] === '''') { throw ''Please change '' + macro + '' macro to the proper value.''; } if (typeof params[key] === ''undefined'') { throw ''Please set "'' + key + ''" script input parameter to '' + macro + '' macro value.''; } }); if (typeof params.http_proxy !== ''undefined'' && params.http_proxy !== ''{'' + ''$FGATE.HTTP.PROXY}'' && params.http_proxy !== '''') { request.setProxy(params.http_proxy); } api_url = params.scheme + ''://'' + params.fqdn + '':'' + params.port; var resource_list = getHttpData( api_url + ''/api/v2/monitor/system/resource/usage?interval=1-min'' ); var disk_info = getHttpData( api_url + ''/api/v2/monitor/log/current-disk-usage'' ); if (typeof resource_list.results !== ''undefined'' && typeof resource_list.results === ''object'') { Object.keys(resource_list.results).forEach(function (key) { var resource = resource_list.results[key]; if (resource.length > 0) { result.data[key] = resource[0].current; } }); } else { throw ''Failed to parse response received from FortiGate API. Check debug log for more information.''; } Object.keys(disk_info.results).forEach(function (key) { result.data[''disk_'' + key.split(''_'')[0]] = disk_info.results[key]; }); } catch (error) { error_msg = error.toString(); error_msg += error_msg.endsWith(''.'') ? '''' : ''.''; Zabbix.log(3, ''[ FortiGate ] ERROR: '' + error_msg); }; result.error = error_msg; return JSON.stringify(result);','','0','','','','','0',NULL,'Item for gathering device resource data from FortiGate API.','0','30d','0','',NULL,'{$FGATE.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','06199d6a96f2414b976d357cd2c95cb6','0','2','0'), ('46138','21','','10603','Get interfaces data','fgate.netif.get_data','1m','0','0','0','4','','','','',NULL,NULL,'var params = JSON.parse(value), request = new HttpRequest(), result = {"data": {}, "error": ""}, api_url = "", interfaces = {}, error_msg = ""; function getHttpData(url) { request.addHeader(''Accept: application/json''); request.addHeader(''Authorization: Bearer '' + params.token); response = request.get(url); Zabbix.log(4, ''[ FortiGate ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Failed to receive data: invalid response status code. Check debug log for more information.''; } if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from FortiGate API. Check debug log for more information.''; } } if (typeof response !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object.''; } if ((typeof response.status !== ''undefined'' && response.status != ''success'') || typeof response.results === ''undefined'') { var uri = ''/'' + response.path + ''/'' + response.name + ((typeof response.action !== ''undefined'') ? ''?action='' + response.action : ""); throw ''Failed to parse response received from '' + uri + ''. Check debug log for more information.''; } return response; }; try { [''scheme'', ''api.token'', ''api.fqdn'', ''api.port''].forEach(function (field) { var macro = ''{$FGATE.'' + field.toUpperCase() + ''}''; var key = field.split(''.'').pop(); if (params[key] === macro || params[key] === '''') { throw ''Please change '' + macro + '' macro to the proper value.''; } if (typeof params[key] === ''undefined'') { throw ''Please set "'' + key + ''" script input parameter to '' + macro + '' macro value.''; } }); if (typeof params.http_proxy !== ''undefined'' && params.http_proxy !== ''{'' + ''$FGATE.HTTP.PROXY}'' && params.http_proxy !== '''') { request.setProxy(params.http_proxy); } api_url = params.scheme + ''://'' + params.fqdn + '':'' + params.port; var netif_data = getHttpData( api_url + ''/api/v2/monitor/system/interface'' ); var netif_list = getHttpData( api_url + ''/api/v2/cmdb/system/interface'' ); result.data = netif_list.results.map(function (v) { var item = {}; [''q_origin_key'', ''name'', ''mode'', ''type'', ''description''].forEach(function (k) { item[k] = v[k]; }); if (typeof item.q_origin_key !== ''undefined'' && typeof netif_data.results[String(item.q_origin_key)] !== ''undefined'') { Object.assign(item, netif_data.results[String(item.q_origin_key)]); } if (typeof item.alias !== ''undefined'') { item.alias = item.alias.slice(1,-1); } else { item.alias = ''''; } if (typeof item.link === ''undefined'') { item.link = false; } if (typeof item.id === ''undefined'') { item.id = item.q_origin_key; } return item; }); } catch (error) { error_msg = error.toString(); error_msg += error_msg.endsWith(''.'') ? '''' : ''.''; Zabbix.log(3, ''[ FortiGate ] ERROR: '' + error_msg); }; result.error = error_msg; return JSON.stringify(result);','','0','','','','','0',NULL,'Item for gathering network interfaces info from FortiGate API.','0','30d','0','',NULL,'{$FGATE.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','3bf84b70672d4fbca282ce1bf970581d','0','2','0'), ('46139','21','','10603','Get firewall data','fgate.fwp.get_data','1m','0','0','0','4','','','','',NULL,NULL,'var params = JSON.parse(value), request = new HttpRequest(), result = { "data": {}, "error": "" }, api_url = "", policies = {}, error_msg = ""; function getHttpData(url) { request.addHeader(''Accept: application/json''); request.addHeader(''Authorization: Bearer '' + params.token); response = request.get(url); Zabbix.log(4, ''[ FortiGate ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Failed to receive data: invalid response status code. Check debug log for more information.''; } if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from FortiGate API. Check debug log for more information.''; } } if (typeof response !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object.''; } if ((typeof response.status !== ''undefined'' && response.status != ''success'') || typeof response.results === ''undefined'') { var uri = ''/'' + response.path + ''/'' + response.name + ((typeof response.action !== ''undefined'') ? ''?action='' + response.action : ""); throw ''Failed to parse response received from '' + uri + ''. Check debug log for more information.''; } return response; }; try { [''scheme'', ''api.token'', ''api.fqdn'', ''api.port''].forEach(function (field) { var macro = ''{$FGATE.'' + field.toUpperCase() + ''}''; var key = field.split(''.'').pop(); if (params[key] === macro || params[key] === '''') { throw ''Please change '' + macro + '' macro to the proper value.''; } if (typeof params[key] === ''undefined'') { throw ''Please set "'' + key + ''" script input parameter to '' + macro + '' macro value.''; } }); if (typeof params.http_proxy !== ''undefined'' && params.http_proxy !== ''{'' + ''$FGATE.HTTP.PROXY}'' && params.http_proxy !== '''') { request.setProxy(params.http_proxy); } api_url = params.scheme + ''://'' + params.fqdn + '':'' + params.port; var firewall_data = getHttpData( api_url + ''/api/v2/monitor/firewall/policy'' ); var firewall_list = getHttpData( api_url + ''/api/v2/cmdb/firewall/policy'' ); firewall_list.results.forEach(function (v) { var item = {}; [''q_origin_key'', ''status'', ''name'', ''uuid'', ''action'', ''ip-version-type'', ''label''].forEach(function (k) { item[k] = v[k]; }); policies[v.policyid] = item; }); result.data = firewall_data.results.map(function (v) { if (typeof v.policyid !== ''undefined'' && typeof policies[String(v.policyid)] !== ''undefined'') { Object.assign(v, policies[String(v.policyid)]); } return v; }).filter(function (v) { if (typeof v.name !== ''undefined'') { return v; } }); } catch (error) { error_msg = error.toString(); error_msg += error_msg.endsWith(''.'') ? '''' : ''.''; Zabbix.log(3, ''[ FortiGate ] ERROR: '' + error_msg); }; result.error = error_msg; return JSON.stringify(result);','','0','','','','','0',NULL,'Item for gathering firewall policies info from FortiGate API.','0','30d','0','',NULL,'{$FGATE.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','a7f8a7da176040ab8a43618e14944e42','0','2','0'), ('46212','3','','10604','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'1140','','','0','','','','','0',NULL,'Host accessibility by ICMP. 0 - ICMP ping failed. 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5686859d4317437c9c23160b987a3468','0','2','0'), ('46213','20','get[1.3.6.1.2.1.1.5.0]','10604','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for the node (the node''s fully-qualified domain name). If not provided, the value is a zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','07256dfb73794eaea91c9c622e617200','0','2','0'), ('46214','20','get[1.3.6.1.4.1.12356.101.4.1.4.0]','10604','Memory utilization','vm.memory.util[memoryUsedPercentage.0]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Current memory utilization (percentage).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','29a7ec8007ef44b0b473f1c16be11059','0','2','0'), ('46215','15','','10604','Used memory','vm.memory.used[fgSysMemUsage.0]','1m','31d','365d','0','0','','B','','',NULL,NULL,'(last(//vm.memory.total[fgSysMemCapacity.0])*last(//vm.memory.util[memoryUsedPercentage.0]))/100','','0','','','','','0',NULL,'MIB: FORTINET-FORTIGATE-MIB Physical memory (RAM) used calculated based on memory utilization percentage.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','15fb0d4185f04b4fb8e2efc6d0ef514c','0','2','0'), ('46216','20','get[1.3.6.1.4.1.12356.101.4.1.5.0]','10604','Total memory','vm.memory.total[fgSysMemCapacity.0]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FORTINET-FORTIGATE-MIB Total physical memory (RAM) installed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5ccef71de6944c91bf7d1e330782b542','0','2','0'), ('46217','15','','10604','Available memory','vm.memory.available[fgSysMemFree.0]','1m','31d','365d','0','3','','B','','',NULL,NULL,'last(//vm.memory.total[fgSysMemCapacity.0])-last(//vm.memory.used[fgSysMemUsage.0])','','0','','','','','0',NULL,'Total memory available for utilization.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bbc42709b2d2467e8fd7963309c6090a','0','2','0'), ('46218','20','get[1.3.6.1.4.1.12356.101.4.1.6.0]','10604','Used disk space','vfs.fs.used[fgSysDiskUsage.0]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Current hard disk usage.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3a96f25d233e49039eb03b78fc8fd509','0','2','0'), ('46219','20','get[1.3.6.1.4.1.12356.101.4.1.7.0]','10604','Total disk space','vfs.fs.total[fgSysDiskCapacity.0]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total hard disk capacity.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','84318818c417403bbfadff759f87e4f4','0','2','0'), ('46220','15','','10604','Free disk percentage','vfs.fs.pfree','1m','31d','365d','0','0','','%','','',NULL,NULL,'100-(last(//vfs.fs.used[fgSysDiskUsage.0])/last(//vfs.fs.total[fgSysDiskCapacity.0])*100)','','0','','','','','0',NULL,'Free disk space, expressed in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b7001a7fd88040fe8a11512df1d9ec07','0','2','0'), ('46221','15','','10604','Free disk space','vfs.fs.free','1m','31d','365d','0','3','','B','','',NULL,NULL,'last(//vfs.fs.total[fgSysDiskCapacity.0])-last(//vfs.fs.used[fgSysDiskUsage.0])','','0','','','','','0',NULL,'Free hard disk capacity.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c702bedf91d74cd8b2346ea0abca37c5','0','2','0'), ('46222','20','get[1.3.6.1.4.1.12356.101.4.1.20.0]','10604','System uptime','system.uptime[fgSysUpTime.0]','1m','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FORTINET-FORTIGATE-MIB Time since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6b85f5f1738b46acb17157d8fbf60ecf','0','2','0'), ('46223','20','get[1.3.6.1.2.1.1.2.0]','10604','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the entity as part of the vendor''s SMI enterprises subtree with the prefix 1.3.6.1.4.1 (e.g., a vendor with the identifier 1.3.6.1.4.1.4242 might assign a system object with the OID 1.3.6.1.4.1.4242.1.1).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','53aee5ecb43b4fe29a2e172f48577fa5','0','2','0'), ('46224','20','get[1.3.6.1.2.1.1.6.0]','10604','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8adf6927a2ba4c26b31a1a527cfd33f7','0','2','0'), ('46225','3','','10604','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','60ba9ecc198840a3a92ef3221e21a97e','0','2','0'), ('46226','20','get[1.3.6.1.2.1.47.1.1.1.1.11.1]','10604','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB Serial number of the device.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4ad23a8963e64a7da8b064463631a2f9','0','2','0'), ('46227','20','get[1.3.6.1.2.1.47.1.2.1.1.2.1]','10604','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ENTITY-MIB Model of the device.','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d1cde0e8780a455db0f7aec7b6b3bc7a','0','2','0'), ('46228','20','get[1.3.6.1.4.1.12356.101.4.1.1.0]','10604','Firmware version','system.hw.firmware','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FORTINET-FORTIGATE-MIB Firmware version of the device.','16','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','277fdc82a6d04e53a0da7bb29d087de7','0','2','0'), ('46229','20','get[1.3.6.1.2.1.1.1.0]','10604','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c2a2247eaddf4908b731ef0c42627d47','0','2','0'), ('46230','20','get[1.3.6.1.4.1.12356.101.4.1.3.0]','10604','CPU utilization','system.cpu.util[fgSysCpuUsage.0]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FORTINET-FORTIGATE-MIB CPU utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e6c36e1b4fac4242a3c3ddd4a5483dde','0','2','0'), ('46231','20','get[1.3.6.1.4.1.12356.101.4.4.1.0]','10604','Number of CPUs','system.cpu.num','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FORTINET-FORTIGATE-MIB Number of processors.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c728a8f64cff450ebc445d9abc03486d','0','2','0'), ('46232','20','get[1.3.6.1.2.1.1.4.0]','10604','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Name and contact information of the contact person for the node. If not provided, the value is a zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cc57314e0cd143c79654e53d16f341ca','0','2','0'), ('46233','17','','10604','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'Used for collecting all SNMP traps unmatched by other `snmptrap` items.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b00ecb6f04a04f579ce0a8e6a1c0984e','0','2','0'), ('46234','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10604','SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Used for discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','abd3f407b66946dab2b05f7ec8a2daf2','0','2','0'), ('46235','3','','10604','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c5c3cde736544304a76c5fe1774c1fc7','0','2','0'), ('46236','5','','10604','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'1141','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3e37679441344327bf86ae38cd62f580','0','2','0'), ('46249','21','','10548','Get list licenses','meraki.get.list.licenses','12h','0','0','0','4','','','','',NULL,NULL,'var params = JSON.parse(value); var request = new HttpRequest(); request.addHeader(''X-Cisco-Meraki-API-Key:'' + params.token); request.addHeader(''User-Agent: ZabbixServer/1.2 Zabbix''); var response, error_msg = '''', organization_devices = [], licenses = []; function getField(data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }; function getHttpData(url) { var startTime = new Date().getTime(); var maxWait = 1 * 60 * 60 * 1000; var waitFor = 1000; while (true) { response = request.get(url); Zabbix.log(4, ''[ Meraki API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); var status = request.getStatus(); if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from Meraki API. Check debug log for more information.''; } } if (status === 429 && response && response.errors && Array.isArray(response.errors) && response.errors.indexOf("API rate limit exceeded for organization") !== -1) { var now = new Date().getTime(); var headers = request.getHeaders(false); if (''Retry-After'' in headers) { var retryAfter = headers[''Retry-After'']; Zabbix.log(4, ''[ Meraki API ] API rate limit exceeded. Retrying after '' + retryAfter + '' seconds.''); waitFor = parseInt(retryAfter) * 1000; } else { Zabbix.log(4, ''[ Meraki API ] API rate limit exceeded. No Retry-After header. Retrying after 1 second.''); } if (now - startTime + waitFor > maxWait) { throw ''Failed to receive data: API rate limit exceeded and retry timeout reached.''; } Zabbix.sleep(waitFor); continue; } if (status !== 200) { if (response.errors) { throw response.errors.join('', ''); } else { throw ''Failed to receive data: invalid response status code.''; } } if (typeof (response) !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object.''; } return response; } }; try { if (params.token === ''{'' + ''$MERAKI.TOKEN}'') { throw ''Please change {'' + ''$MERAKI.TOKEN} macro to the proper value.''; } if (params.url.indexOf(''http://'') === -1 && params.url.indexOf(''https://'') === -1) { params.url = ''https://'' + params.url; } if (!params.url.endsWith(''/'')) { params.url += ''/''; } if (typeof params.httpproxy !== ''undefined'' && params.httpproxy !== '''') { request.setProxy(params.httpproxy); } licenses = getHttpData(params.url + ''organizations/'' + encodeURIComponent(params.organizationId) + ''/licenses''); organization_devices = getHttpData(params.url + ''organizations/'' + encodeURIComponent(params.organizationId) + ''/devices/statuses''); licenses.forEach(function (license) { license.deviceName = getField(license, ''deviceSerial''); for (i in organization_devices) { if (getField(license, ''deviceSerial'') === getField(organization_devices[i], ''serial'')) { device_name = getField(organization_devices[i], ''name''); if (!device_name) { device_name = getField(organization_devices[i], ''serial''); } license.deviceName = device_name; } } }); } catch (error) { error_msg = error; }; return JSON.stringify({ ''licenses'': licenses, ''error'': error_msg.toString() });','','0','','','','','0',NULL,'Return list of the licenses for the organization.','0','30d','0','',NULL,'{$MERAKI.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','8ea56a7338f040fcbb9016da892dec90','0','2','0'), ('46308','5','','10048','Proxy memory buffer, % used','zabbix[proxy_buffer,buffer,pused]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix proxy memory buffer usage statistics. Percentage of used proxy memory buffer. Proxy memory buffer is used to store the new historical data and upload from it without accessing database.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e60cdba498a94c19955696f40d5e1b32','0','2','0'), ('46309','5','','10048','Proxy buffer, state changes','zabbix[proxy_buffer,state,changes]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of state changes between disk/memory buffer modes since proxy start.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1f5fbc277a574ce7a418439695f124ca','0','2','0'), ('46310','5','','10048','Proxy buffer, state','zabbix[proxy_buffer,state,current]','1m','31d','365d','0','3','','','','',NULL,'1145','','','0','','','','','0',NULL,'The current working state of proxy buffer where the new data is being stored. Possible values: 0 - disk (also returned when memory buffer is disabled); 1 - memory.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c970e56eda504a4d89b051439dda9787','0','2','0'), ('46314','5','','10047','Number of values synchronized with the database per second','zabbix[vps,written]','1m','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'Average quantity of values written to the database, recalculated once per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0f61de4dcc1b469a94dd024e1b932936','0','2','0'), ('46319','21','','10605','Get data','hpe.ilo.get_data','{$ILO.INTERVAL}','0','0','0','4','','','','',NULL,NULL,'var ilo = { params: {}, session_token: "", session_url: "", setParams: function (params) { [''ilo_url'', ''user'', ''password''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required parameter is not set: "'' + field + ''".''; } }); ilo.params = params; if (typeof ilo.params.ilo_url === ''string'' && !ilo.params.ilo_url.endsWith(''/'')) { ilo.params.ilo_url += ''/''; } }, apiAuth: function () { var request = new HttpRequest(), response, headers, url = encodeURI(ilo.params.ilo_url + ''redfish/v1/SessionService/Sessions/''), auth_data = { UserName: ilo.params.user, Password: ilo.params.password }; request.addHeader(''Content-Type: application/json''); request.addHeader(''Authorization: Basic '' + btoa(ilo.params.user + '':'' + ilo.params.password)); if (typeof ilo.params.http_proxy !== ''undefined'' && ilo.params.http_proxy !== '''') { request.setProxy(ilo.params.http_proxy); Zabbix.log(4, ''[ HPE iLO ] Using HTTP proxy: '' + ilo.params.http_proxy); } Zabbix.log(4, ''[ HPE iLO ] Sending request: '' + url); response = request.post(url, JSON.stringify(auth_data)); Zabbix.log(4, ''[ HPE iLO ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() != 201) { throw ''Authentication failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse auth response received from API. Check debug log for more information.''; } try { headers = request.getHeaders(); } catch (error) { throw ''Failed to parse auth headers received from API. Check debug log for more information.''; } try { ilo.session_token = headers[''X-Auth-Token'']; ilo.session_url = headers[''Location'']; } catch (error) { throw ''Failed to retrieve auth token or session URL from API. Check debug log for more information.''; } delete request; }, apiLogout: function () { var request = new HttpRequest(), response, url = encodeURI(ilo.session_url); request.addHeader(''X-Auth-Token: '' + ilo.session_token); if (typeof ilo.params.http_proxy !== ''undefined'' && ilo.params.http_proxy !== '''') { request.setProxy(ilo.params.http_proxy); Zabbix.log(4, ''[ HPE iLO ] Using HTTP proxy: '' + ilo.params.http_proxy); } Zabbix.log(4, ''[ HPE iLO ] Sending request: '' + url); response = request.delete(url); Zabbix.log(4, ''[ HPE iLO ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() != 200) { throw ''Deleting of session failed with status code '' + request.getStatus() + '': '' + response; } delete request; }, apiRequest: function (query) { var request = new HttpRequest(), response, url = encodeURI(ilo.params.ilo_url + query); if (typeof ilo.params.http_proxy !== ''undefined'' && ilo.params.http_proxy !== '''') { request.setProxy(ilo.params.http_proxy); Zabbix.log(4, ''[ HPE iLO ] Using HTTP proxy: '' + ilo.params.http_proxy); } request.addHeader(''X-Auth-Token: '' + ilo.session_token); Zabbix.log(4, ''[ HPE iLO ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ HPE iLO ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API. Check debug log for more information.''; } delete request; return response; }, checkArray: function (array) { return typeof array !== ''undefined'' && Array.isArray(array) && array.length > 0 ? true : false; } }; try { ilo.setParams(JSON.parse(value)); ilo.apiAuth(); var systems = [], storages = [], controllers = [], drives = [], volumes = [], chassis = [], fans = [], sensors = [], psu = [], managers = []; var get_systems = ilo.apiRequest(''redfish/v1/Systems?$expand=.''); if (ilo.checkArray(get_systems.Members)) { for (i in get_systems.Members) { if (''Id'' in get_systems.Members[i]) { if (get_systems.Members[i].HostName === null) { get_systems.Members[i].HostName = get_systems.Members[i].Id; } systems.push(get_systems.Members[i]); var system_storages = ilo.apiRequest(''redfish/v1/Systems/'' + get_systems.Members[i].Id + ''/Storage?$expand=.''); if (ilo.checkArray(system_storages.Members)) { for (j in system_storages.Members) { system_storages.Members[j].systemHostname = get_systems.Members[i].HostName; system_storages.Members[j].systemType = get_systems.Members[i].SystemType; system_storages.Members[j].systemId = get_systems.Members[i].Id; storages.push(system_storages.Members[j]); if (''Id'' in system_storages.Members[j]) { var storage_controllers = ilo.apiRequest(''redfish/v1/Systems/'' + get_systems.Members[i].Id + ''/Storage/'' + system_storages.Members[j].Id + ''/Controllers?$expand=.''); if (ilo.checkArray(storage_controllers.Members)) { for (k in storage_controllers.Members) { storage_controllers.Members[k].systemHostname = get_systems.Members[i].HostName; storage_controllers.Members[k].systemType = get_systems.Members[i].SystemType; storage_controllers.Members[k].systemId = get_systems.Members[i].Id; storage_controllers.Members[k].storageId = system_storages.Members[j].Id; controllers.push(storage_controllers.Members[k]); } } var storage_drives = ilo.apiRequest(''redfish/v1/Systems/'' + get_systems.Members[i].Id + ''/Storage/'' + system_storages.Members[j].Id + ''?$expand=.''); if (ilo.checkArray(storage_drives.Drives)) { for (k in storage_drives.Drives) { storage_drives.Drives[k].systemHostname = get_systems.Members[i].HostName; storage_drives.Drives[k].systemType = get_systems.Members[i].SystemType; storage_drives.Drives[k].systemId = get_systems.Members[i].Id; storage_drives.Drives[k].storageId = system_storages.Members[j].Id; drives.push(storage_drives.Drives[k]); } } if (''Volumes'' in system_storages.Members[j]) { var storage_volumes = ilo.apiRequest(''redfish/v1/Systems/'' + get_systems.Members[i].Id + ''/Storage/'' + system_storages.Members[j].Id + ''/Volumes?$expand=.''); if (ilo.checkArray(storage_volumes.Members)) { for (k in storage_volumes.Members) { storage_volumes.Members[k].systemHostname = get_systems.Members[i].HostName; storage_volumes.Members[k].systemType = get_systems.Members[i].SystemType; storage_volumes.Members[k].systemId = get_systems.Members[i].Id; storage_volumes.Members[k].storageId = system_storages.Members[j].Id; volumes.push(storage_volumes.Members[k]); } } } } } } } } } var get_chassis = ilo.apiRequest(''redfish/v1/Chassis?$expand=.''); if (ilo.checkArray(get_chassis.Members)) { for (i in get_chassis.Members) { if (''Id'' in get_chassis.Members[i]) { chassis.push(get_chassis.Members[i]); chassis_thermal = ilo.apiRequest(''redfish/v1/Chassis/'' + get_chassis.Members[i].Id + ''/Thermal/''); if (ilo.checkArray(chassis_thermal.Fans)) { for (j in chassis_thermal.Fans) { chassis_thermal.Fans[j].chassisId = get_chassis.Members[i].Id; fans.push(chassis_thermal.Fans[j]); } } if (ilo.checkArray(chassis_thermal.Temperatures)) { for (j in chassis_thermal.Temperatures) { chassis_thermal.Temperatures[j].chassisId = get_chassis.Members[i].Id; sensors.push(chassis_thermal.Temperatures[j]); } } chassis_power = ilo.apiRequest(''redfish/v1/Chassis/'' + get_chassis.Members[i].Id + ''/Power/''); if (ilo.checkArray(chassis_power.PowerSupplies)) { for (j in chassis_power.PowerSupplies) { chassis_power.PowerSupplies[j].chassisId = get_chassis.Members[i].Id; psu.push(chassis_power.PowerSupplies[j]); } } } } } var get_managers = ilo.apiRequest(''redfish/v1/Managers?$expand=.''); if (ilo.checkArray(get_managers.Members)) { for (i in get_managers.Members) { if (''Id'' in get_managers.Members[i]) { managers.push(get_managers.Members[i]); } } } ilo.apiLogout(); return JSON.stringify({ ''systems'': systems, ''storages'': storages, ''controllers'': controllers, ''drives'': drives, ''volumes'': volumes, ''chassis'': chassis, ''fans'': fans, ''sensors'': sensors, ''psu'': psu, ''managers'': managers }); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ HPE iLO ] ERROR: '' + error); return JSON.stringify({ error: error }); }','','0','','','','','0',NULL,'The JSON with the result of API requests.','0','30d','0','',NULL,'{$ILO.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','3c2d368291294faa98c01a27f36ad805','0','2','0'), ('46374','21','','10530','Filter [{#AWS.S3.FILTER.ID.NAME}]: Get request metrics','aws.s3.get_metrics["{#AWS.S3.FILTER.ID.NAME}"]','{$AWS.S3.UPDATE.INTERVAL}','0','0','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, metadata: ''http://169.254.169.254/latest/'', getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, isFloat: function (n) { n = parseFloat(n); return Number(n) === n && n % 1 !== 0; }, checkNumber: function checkNumber(string) { if (typeof string !== "string" || isNaN(string) || AWS.isFloat(string)) { throw ''Incorrect "timespan" parameter given: '' + string + '' Must be an unsigned number''; } return string; }, getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''POST'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload), ''''), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''region'', ''bucket_name'', ''filter_id''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); updateInterval = AWS.checkNumber(''{$AWS.S3.UPDATE.INTERVAL}''); if (updateInterval > 86400 || updateInterval < 1) { throw ''Incorrect "update interval" parameter given: '' + updateInterval + '' Must be between 1 and 86400 seconds.''; } }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, renderMetricQuery: function (period, bucket_name, filter_id) { var metrics_list = [ ''AllRequests:Count:Sum'', ''GetRequests:Count:Sum'', ''PutRequests:Count:Sum'', ''DeleteRequests:Count:Sum'', ''HeadRequests:Count:Sum'', ''PostRequests:Count:Sum'', ''SelectRequests:Count:Sum'', ''SelectBytesScanned:Bytes:Average'', ''SelectBytesReturned:Bytes:Average'', ''ListRequests:Count:Sum'', ''BytesDownloaded:Bytes:Average'', ''BytesUploaded:Bytes:Average'', ''4xxErrors:Count:Average'', ''5xxErrors:Count:Average'', ''TotalRequestLatency:Milliseconds:p90'', ''FirstByteLatency:Milliseconds:p90'', ''ReplicationLatency:Seconds:Average'', ''BytesPendingReplication:Bytes:Average'', ''OperationsPendingReplication:Count:Average'', ]; var metric_payload = []; metrics_list.forEach(function (metric, index) { var parts = metric.split('':'', 3); metric_payload.push({ ''Id'': ''m'' + index, ''MetricStat'': { ''Metric'': { ''MetricName'': parts[0], ''Namespace'': ''AWS/S3'', ''Dimensions'': [ { ''Name'': ''BucketName'', ''Value'': bucket_name }, { ''Name'': ''FilterId'', ''Value'': filter_id } ] }, ''Period'': period, ''Stat'': parts[2], ''Unit'': parts[1] } }); }); return metric_payload; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, request: function (method, region, service, params, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } else { data = JSON.stringify(data) } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''), host = service + ''.'' + region + ''.amazonaws.com'', canonical_uri = ''/''; if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { token = AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken; var canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'' + ''x-amz-security-token:'' + token + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date;x-amz-security-token''; } else { var canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date''; } var canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''X-Amz-Target: GraniteServiceVersion20100801.GetMetricData'') request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + token); } Zabbix.log(4, ''[ AWS S3 ] Sending request: '' + url); response = request.post(url, data); Zabbix.log(4, ''[ AWS S3 ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { try { response = JSON.parse(XML.toJson(response)); } catch (error) { throw ''Failed to parse response received from AWS CloudWatch API. Check debug log for more information.''; } } return response; }, getMetricsData: function () { var payload = {}, end_time = Math.floor((new Date().getTime()) / 1000), start_time = end_time - updateInterval; payload[''StartTime''] = start_time; payload[''EndTime''] = end_time; payload[''ScanBy''] = ''TimestampDescending''; payload[''MetricDataQueries''] = AWS.renderMetricQuery(60, AWS.params.bucket_name, AWS.params.filter_id); result = AWS.request(''POST'', AWS.params.region, ''monitoring'', '''', payload); if (typeof result !== ''object'' || typeof result.MetricDataResults !== ''object'') { throw ''Cannot get metrics data from AWS CloudWatch API. Check debug log for more information.''; } return result.MetricDataResults; } }; try { AWS.setParams(JSON.parse(value)); return JSON.stringify(AWS.getMetricsData()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS S3 ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','2',NULL,'Get bucket request metrics filter: ''{#AWS.S3.FILTER.ID.NAME}''. Full metrics list related to S3: https://docs.aws.amazon.com/AmazonS3/latest/userguide/metrics-dimensions.html','0','30d','0','',NULL,'15s','','','','200','1','0','','','0','0','0','0','0','0','0','eabbd51547cb4a0484182d42601728c3','0','2','0'), ('46396','21','','10606','Get daily costs','azure.get.daily.costs','0s;h/5m/30','0','0','0','4','','','','',NULL,NULL,E'var AzureCost = { params: {}, token: null, setParams: function (params) { [''app_id'', ''password'', ''tenant_id'', ''subscription_id''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); AzureCost.params = params; }, login: function () { var response, login = new HttpRequest(); if (typeof AzureCost.params.proxy !== ''undefined'' && AzureCost.params.proxy !== '''') { login.setProxy(AzureCost.params.proxy); } login.addHeader(''Content-Type: application/x-www-form-urlencoded''); response = login.post( ''https://login.microsoftonline.com/'' + encodeURIComponent(AzureCost.params.tenant_id) + ''/oauth2/token'', ''grant_type=client_credentials&resource='' + encodeURIComponent(''https://management.azure.com/'') + ''&client_id='' + encodeURIComponent(AzureCost.params.app_id) + ''&client_secret='' + encodeURIComponent(AzureCost.params.password) ); if (login.getStatus() !== 200) { throw ''Login failed with status code '' + login.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse login session response.''; } if (!response.hasOwnProperty(''access_token'')) { throw ''Authentication response does not contain access token.''; } AzureCost.token = response[''access_token'']; }, request: function (url, body) { if (typeof body === ''undefined'' || body === null) { body = ''''; } var response, headers, regex = /-retry-after":"(\\d+)"/, ratelimit, request = new HttpRequest(); if (typeof AzureCost.params.proxy !== ''undefined'' && AzureCost.params.proxy !== '''') { request.setProxy(AzureCost.params.proxy); } if (!AzureCost.token) { throw ''Request does not contain access token.''; } request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Authorization: Bearer '' + AzureCost.token); Zabbix.log(4, ''[ AzureCost ] request url: '' + url); response = request.post(url, body); headers = JSON.stringify(request.getHeaders()); if (headers.match(regex) !== null && request.getStatus() === 429) { ratelimit = headers.match(regex)[1]; Zabbix.log(4, ''[ AzureCost ] Microsoft Cost Management have rate limit requests per 1 minute, retrying after '' + ratelimit + '' seconds''); Zabbix.sleep(ratelimit * 1010); response = request.post(url, body); } if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { return JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API.''; } }, getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getCost: function () { var metricData = {}, today = new Date(), start_date = new Date(today); start_date.setDate(today.getDate() - 1); bodyRawCost = { type: ''Usage'', ''timeframe'': ''Custom'', ''timePeriod'': { ''from'': start_date, ''to'': start_date }, dataset: { granularity: ''Daily'', aggregation: { totalCost: { name: ''PreTaxCost'', function: ''Sum'' } }, grouping: [ { type: ''Dimension'', name: ''Meter'', }, { type: ''Dimension'', name: ''MeterSubcategory'', }, { type: ''Dimension'', name: ''ResourceGroup'', }, { type: ''Dimension'', name: ''ServiceName'', }, { type: ''Dimension'', name: ''ResourceLocation'', } ] } }; metricData = AzureCost.request(''https://management.azure.com/subscriptions/'' + AzureCost.params.subscription_id + ''/providers/Microsoft.CostManagement/query?api-version=2023-11-01'', JSON.stringify(bodyRawCost)); var columns = AzureCost.getField(metricData, ''properties.columns''); return transformedData = { data: AzureCost.getField(metricData, ''properties.rows'').map(function (row) { rowData = {}; columns.forEach(function (column, i) { columnName = columns[i].name; columnType = columns[i].type; cellValue = row[i]; rowData[columnName] = column.type === "Number" ? cellValue.toString() : cellValue; }); rowData.UsageDate = rowData.UsageDate.replace(/(\\d{4})(\\d{2})(\\d{2})/, "$1-$2-$3"); return rowData; }) }; } }; try { AzureCost.setParams(JSON.parse(value)); AzureCost.login(); return JSON.stringify(AzureCost.getCost()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AzureCost ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'The result of API requests is expressed in the JSON.','0','30d','0','',NULL,'{$AZURE.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','f50c96da86654a25b937756cc7f7010e','0','2','0'), ('46397','21','','10606','Get monthly costs','azure.get.monthly.costs','0s;h/12','0','0','0','4','','','','',NULL,NULL,E'var AzureCost = { params: {}, token: null, setParams: function (params) { [''app_id'', ''password'', ''tenant_id'', ''subscription_id'', ''month''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); AzureCost.params = params; today = new Date(); AzureCost.params.end_date = today.toISOString(); month = today.getMonth(); today.setMonth(month - params.month); AzureCost.params.start_time = new Date(today.getFullYear(), today.getMonth()).toISOString(); }, login: function () { var response, login = new HttpRequest(); if (typeof AzureCost.params.proxy !== ''undefined'' && AzureCost.params.proxy !== '''') { login.setProxy(AzureCost.params.proxy); } login.addHeader(''Content-Type: application/x-www-form-urlencoded''); response = login.post( ''https://login.microsoftonline.com/'' + encodeURIComponent(AzureCost.params.tenant_id) + ''/oauth2/token'', ''grant_type=client_credentials&resource='' + encodeURIComponent(''https://management.azure.com/'') + ''&client_id='' + encodeURIComponent(AzureCost.params.app_id) + ''&client_secret='' + encodeURIComponent(AzureCost.params.password) ); if (login.getStatus() !== 200) { throw ''Login failed with status code '' + login.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse login session response.''; } if (!response.hasOwnProperty(''access_token'')) { throw ''Authentication response does not contain access token.''; } AzureCost.token = response[''access_token'']; }, request: function (url, body) { if (typeof body === ''undefined'' || body === null) { body = ''''; } var response, headers, regex = /-retry-after":"(\\d+)"/, ratelimit, request = new HttpRequest(); if (typeof AzureCost.params.proxy !== ''undefined'' && AzureCost.params.proxy !== '''') { request.setProxy(AzureCost.params.proxy); } if (!AzureCost.token) { throw ''Request does not contain access token.''; } request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Authorization: Bearer '' + AzureCost.token); Zabbix.log(4, ''[ AzureCost ] request url: '' + url); response = request.post(url, body); headers = JSON.stringify(request.getHeaders()); if (headers.match(regex) !== null && request.getStatus() === 429) { ratelimit = headers.match(regex)[1]; Zabbix.log(4, ''[ AzureCost ] Microsoft Cost Management have rate limit requests per 1 minute, retrying after '' + ratelimit + '' seconds''); Zabbix.sleep(ratelimit * 1010); response = request.post(url, body); } if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { return JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API.''; } }, getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getCost: function (grouping) { var metricData = {}, bodyRawCost = { type: ''Usage'', timeframe: ''Custom'', timePeriod: { from: AzureCost.params.start_time, to: AzureCost.params.end_date }, dataset: { aggregation: { totalCost: { name: ''PreTaxCost'', function: ''Sum'' } }, grouping: [ { type: ''Dimension'', name: ''BillingMonth'' }, { type: ''Dimension'', name: grouping }, ] } }; metricData = AzureCost.request(''https://management.azure.com/subscriptions/'' + AzureCost.params.subscription_id + ''/providers/Microsoft.CostManagement/query?api-version=2023-11-01'', JSON.stringify(bodyRawCost)); var columns = AzureCost.getField(metricData, ''properties.columns''); return transformedData = { data: AzureCost.getField(metricData, ''properties.rows'').map(function (row) { rowData = {}; columns.forEach(function (column, i) { columnName = columns[i].name; cellValue = row[i]; rowData[columnName] = column.type === "Number" ? cellValue.toString() : cellValue; }); rowData.BillingMonth = rowData.BillingMonth.slice(0, 7); return rowData; }) }; } }; try { AzureCost.setParams(JSON.parse(value)); AzureCost.login(); serviceCost = AzureCost.getCost(''ServiceName''); resourceGroupCost = AzureCost.getCost(''ResourceGroup''); resourceLocationCost = AzureCost.getCost(''ResourceLocation''); monthCost = AzureCost.getCost(''SubscriptionId''); return JSON.stringify({ resourceGroupCost, resourceLocationCost, serviceCost, monthCost }); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AzureCost ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'The result of API requests is expressed in the JSON.','0','30d','0','',NULL,'{$AZURE.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','bbf6a0b136464d76a535ca016dcb8ae1','0','2','0'), ('46408','11','','10327','Get availability groups','db.odbc.get[get_availability_group,"{$MSSQL.DSN}"]','1m','0','0','0','4','','','','',NULL,NULL,'SELECT ag.name as group_name, ISNULL(ags.primary_recovery_health, 2) as primary_recovery_health, ISNULL(ags.primary_replica, ''Unknown'') as primary_replica, ISNULL( ags.secondary_recovery_health, 2 ) as secondary_recovery_health, ags.synchronization_health as synchronization_health FROM sys.dm_hadr_availability_group_states ags JOIN sys.availability_groups ag ON ag.group_id = ags.group_id','','0','{$MSSQL.USER}','{$MSSQL.PASSWORD}','','','0',NULL,'The item gets availability group states - name, primary and secondary health, synchronization health.','0','30d','0','',NULL,'30s','','','','200','1','0','','','0','0','0','0','0','0','0','f495898e37c94bfda4ce387f7129b996','0','2','0'), ('46409','11','','10327','Get database','db.odbc.get[get_database,"{$MSSQL.DSN}"]','1h','0','0','0','4','','','','',NULL,NULL,'SELECT name as dbname, recovery_model FROM sys.databases','','0','{$MSSQL.USER}','{$MSSQL.PASSWORD}','','','0',NULL,'Getting databases - database name and recovery model.','0','30d','0','',NULL,'30s','','','','200','1','0','','','0','0','0','0','0','0','0','9c902b33ed254e1892e44218a67876d3','0','2','0'), ('46410','11','','10327','Get DB mirroring','db.odbc.get[get_db_mirroring,"{$MSSQL.DSN}"]','1m','0','0','0','4','','','','',NULL,NULL,'SELECT ISNULL(m.mirroring_role, 0) as mirroring_role, ISNULL(m.mirroring_role_sequence, 0) as mirroring_role_sequence, ISNULL(m.mirroring_state, 7) as mirroring_state, ISNULL(m.mirroring_witness_state, 3) as mirroring_witness_state, ISNULL(m.mirroring_safety_level, 3) as mirroring_safety_level, db_name(m.database_id) as dbname FROM sys.database_mirroring as m WHERE m.mirroring_state_desc IS NOT NULL','','0','{$MSSQL.USER}','{$MSSQL.PASSWORD}','','','0',NULL,'Getting DB mirroring.','0','30d','0','',NULL,'30s','','','','200','1','0','','','0','0','0','0','0','0','0','9948ac27a2f84ba5a74ee0860d934f4e','0','2','0'), ('46411','11','','10327','Get local DB','db.odbc.get[get_local_db,"{$MSSQL.DSN}"]','1m','0','0','0','4','','','','',NULL,NULL,'SELECT ag.name AS group_name, drs.database_state as database_state, drs.is_suspended as is_suspended, drs.synchronization_health as synchronization_health, arcs.replica_server_name AS replica_name, db_name(drs.database_id) AS dbname, drs.is_local FROM sys.dm_hadr_database_replica_states drs JOIN sys.dm_hadr_availability_replica_cluster_states arcs ON arcs.replica_id = drs.replica_id JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id WHERE drs.is_local = 1','','0','{$MSSQL.USER}','{$MSSQL.PASSWORD}','','','0',NULL,'Getting the states of the local availability database.','0','30d','0','',NULL,'30s','','','','200','1','0','','','0','0','0','0','0','0','0','3960ea4dc0054ee099d5bca005535e6b','0','2','0'), ('46412','11','','10327','Get non-local DB','db.odbc.get[get_non_local_db,"{$MSSQL.DSN}"]','1m','0','0','0','4','','','','',NULL,NULL,'SELECT ag.name AS group_name, ISNULL(drs.log_send_queue_size, 0) as log_send_queue_size, ISNULL(drs.redo_queue_size, 0) as redo_queue_size, arcs.replica_server_name AS replica_name, db_name(drs.database_id) AS dbname, drs.is_local FROM sys.dm_hadr_database_replica_states drs JOIN sys.dm_hadr_availability_replica_cluster_states arcs ON arcs.replica_id = drs.replica_id JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id WHERE drs.is_local = 0','','0','{$MSSQL.USER}','{$MSSQL.PASSWORD}','','','0',NULL,'Getting the non-local availability database.','0','30d','0','',NULL,'30s','','','','200','1','0','','','0','0','0','0','0','0','0','e4480bba876d472294920020734eadf5','0','2','0'), ('46413','11','','10327','Get quorum','db.odbc.get[get_quorum,"{$MSSQL.DSN}"]','1m','0','0','0','4','','','','',NULL,NULL,'SELECT quorum_type, quorum_state, cluster_name FROM sys.dm_hadr_cluster','','0','{$MSSQL.USER}','{$MSSQL.PASSWORD}','','','0',NULL,'Getting quorum - cluster name, type, and state.','0','30d','0','',NULL,'10s','','','','200','1','0','','','0','0','0','0','0','0','0','3fcb3b84bdee42428bedc39fcc582c9e','0','2','0'), ('46414','11','','10327','Get quorum member','db.odbc.get[get_quorum_member,"{$MSSQL.DSN}"]','1m','0','0','0','4','','','','',NULL,NULL,'SELECT a.member_name, a.member_type, a.member_state, a.number_of_quorum_votes, b.cluster_name FROM sys.dm_hadr_cluster_members a CROSS JOIN sys.dm_hadr_cluster b','','0','{$MSSQL.USER}','{$MSSQL.PASSWORD}','','','0',NULL,'Getting quorum members - member name, type, state, and number of quorum votes.','0','30d','0','',NULL,'10s','','','','200','1','0','','','0','0','0','0','0','0','0','69a31cdfbf9b4099bf89adb26e8b9f06','0','2','0'), ('46415','11','','10327','Get replica','db.odbc.get[get_replica,"{$MSSQL.DSN}"]','1m','0','0','0','4','','','','',NULL,NULL,'SELECT ars.connected_state as connected_state, ars.is_local as is_local, arcs.join_state as join_state, ISNULL(ars.operational_state, 6) as operational_state, ISNULL(ars.recovery_health, 2) as recovery_health, ars.role as role, ars.synchronization_health as synchronization_health, ag.name as group_name, arcs.replica_server_name as replica_name FROM sys.dm_hadr_availability_replica_cluster_states as arcs JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id','','0','{$MSSQL.USER}','{$MSSQL.PASSWORD}','','','0',NULL,'Getting the database replica.','0','30d','0','',NULL,'30s','','','','200','1','0','','','0','0','0','0','0','0','0','7a82483c605d4e8eb67c2576069cf8a9','0','2','0'), ('46450','21','','10547','Get status','meraki.device.get.status','{$MERAKI.GET.STATUS.INTERVAL}','0','0','0','4','','','','',NULL,NULL,E'var params = JSON.parse(value); var request = new HttpRequest(); request.addHeader(''X-Cisco-Meraki-API-Key:'' + params.token); request.addHeader(''User-Agent: ZabbixServer/1.2 Zabbix''); function parseTime(timeString) { var match = timeString.match(/^(\\d+)([h|m|s])$/); if (match) { var value = parseInt(match[1], 10); var unit = match[2]; switch (unit) { case ''h'': return value * 3600; case ''m'': return value * 60; case ''s'': return value; default: return 0; } } return 0; }; var response, error_msg = '''', response = [], timespan; function getHttpData(url) { var startTime = new Date().getTime(); var maxWait = parseInt(timespan, 10) * 1000; var waitFor = 1000; while (true) { response = request.get(url); Zabbix.log(4, ''[ Meraki API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); var status = request.getStatus(); if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from Meraki API. Check debug log for more information.''; } } if (status === 429 && response && response.errors && Array.isArray(response.errors) && response.errors.indexOf("API rate limit exceeded for organization") !== -1) { var now = new Date().getTime(); var headers = request.getHeaders(false); if (''Retry-After'' in headers) { var retryAfter = headers[''Retry-After'']; Zabbix.log(4, ''[ Meraki API ] API rate limit exceeded. Retrying after '' + retryAfter + '' seconds.''); waitFor = parseInt(retryAfter) * 1000; } else { Zabbix.log(4, ''[ Meraki API ] API rate limit exceeded. No Retry-After header. Retrying after 1 second.''); } if (now - startTime + waitFor > maxWait) { throw ''Failed to receive data: API rate limit exceeded and retry timeout reached.''; } Zabbix.sleep(waitFor); continue; } if (status !== 200) { if (response.errors) { throw response.errors.join('', ''); } else { throw ''Failed to receive data: invalid response status code.''; } } if (typeof (response) !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object.''; } return response; } }; try { if (params.token === ''{'' + ''$MERAKI.TOKEN}'') { throw ''Please change {'' + ''$MERAKI.TOKEN} macro to the proper value.''; } if (params.url.indexOf(''http://'') === -1 && params.url.indexOf(''https://'') === -1) { params.url = ''https://'' + params.url; } if (!params.url.endsWith(''/'')) { params.url += ''/''; } if (typeof params.httpproxy !== ''undefined'' && params.httpproxy !== '''') { request.setProxy(params.httpproxy); } timespan = parseTime(''{$MERAKI.GET.STATUS.INTERVAL}''); response = getHttpData(params.url + ''organizations/'' + encodeURIComponent(params.organizationId) + ''/devices/availabilities?serials[]='' + encodeURIComponent(params.serial)); if (Array.isArray(response) & response.length > 0) { response = response[0] } } catch (error) { error_msg = error; }; return JSON.stringify({ ''data'': response, ''error'': error_msg.toString() });','','0','','','','','0',NULL,'Item for gathering device status from Meraki API.','0','30d','0','',NULL,'{$MERAKI.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','0c97a8fcad764133b4e7c35d0134665c','0','2','0'), ('46451','21','','10607','Get ELB ALB alarms data','aws.elb.alb.get_alarms','0s;m/1','0','0','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, metadata: ''http://169.254.169.254/latest/'', getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''GET'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload), ''''), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''region'', ''arn'', ''loadbalancer_name''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, request: function (method, region, service, params, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''), host = service + ''.'' + region + ''.amazonaws.com'', canonical_uri = ''/'', canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date'', canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + (AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken)); } Zabbix.log(4, ''[ AWS ELB ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ AWS ELB ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { try { response = JSON.parse(XML.toJson(response)); } catch (error) { throw ''Failed to parse response received from AWS CloudWatch API. Check debug log for more information.''; } } return response; }, getAlarms: function () { var payload = { ''Action'': ''DescribeAlarms'', ''Version'': ''2010-08-01'', ''MaxRecords'': 100 }, result = []; while (payload.NextToken !== '''') { var alarms = AWS.getField(AWS.request(''GET'', AWS.params.region, ''monitoring'', AWS.prepareParams(payload)), ''DescribeAlarmsResponse.DescribeAlarmsResult''); payload.NextToken = alarms.NextToken || ''''; alarms_list = AWS.getField(alarms, ''MetricAlarms''); regex = /loadbalancer\\/(.+)$/; if (!Array.isArray(alarms_list)) alarms_list = [alarms_list]; alarms_list.forEach(function (alarm) { var dimensions = alarm.Dimensions; if (Array.isArray(alarm.Metrics)) { alarm.Metrics.forEach(function (metric) { if (typeof metric.MetricStat === ''object'' && metric.MetricStat !== null && typeof metric.MetricStat.Metric === ''object'' && metric.MetricStat.Metric !== null && Array.isArray(metric.MetricStat.Metric.Dimensions)) { dimensions = dimensions.concat(metric.MetricStat.Metric.Dimensions); } }); } for (var i in dimensions) { if ((dimensions[i].Name === ''LoadBalancer'' && dimensions[i].Value === AWS.params.arn.match(regex)[1]) || (dimensions[i].Name === ''LoadBalancerName'' && dimensions[i].Value === AWS.params.loadbalancer_name)) { result.push(alarm); break; } } }); } return result; } }; try { AWS.setParams(JSON.parse(value)); return JSON.stringify(AWS.getAlarms()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS ELB Alarms ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'`DescribeAlarms` API method: https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_DescribeAlarms.html','0','30d','0','',NULL,'{$AWS.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','059b7697baba46b2a7f138a1011a0e0c','0','2','0'), ('46452','21','','10607','Get metrics data','aws.elb.alb.get_metrics','0s;m/1','0','0','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, metadata: ''http://169.254.169.254/latest/'', request_period: 60, getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''POST'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload), ''''), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''region'', ''arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, renderMetricQuery: function (period, arn) { var metrics_list = [ ''ActiveConnectionCount:Sum'', ''ClientTLSNegotiationErrorCount:Sum'', ''ConsumedLCUs:Sum'', ''DesyncMitigationMode_NonCompliant_Request_Count:Sum'', ''HTTP_Fixed_Response_Count:Sum'', ''HTTP_Redirect_Count:Sum'', ''HTTP_Redirect_Url_Limit_Exceeded_Count:Sum'', ''HTTPCode_ELB_3XX_Count:Sum'', ''HTTPCode_ELB_4XX_Count:Sum'', ''HTTPCode_ELB_5XX_Count:Sum'', ''HTTPCode_ELB_500_Count:Sum'', ''HTTPCode_ELB_502_Count:Sum'', ''HTTPCode_ELB_503_Count:Sum'', ''HTTPCode_ELB_504_Count:Sum'', ''NewConnectionCount:Sum'', ''ProcessedBytes:Sum'', ''RejectedConnectionCount:Sum'', ''RequestCount:Sum'', ''RuleEvaluations:Sum'', ''TargetResponseTime:Average'', ''TargetTLSNegotiationErrorCount:Sum'', ''TargetConnectionErrorCount:Sum'', ''ELBAuthError:Sum'', ''ELBAuthFailure:Sum'', ''ELBAuthLatency:Sum'', ''ELBAuthSuccess:Sum'', ''ELBAuthUserClaimsSizeExceeded:Sum'', ], regex = /loadbalancer\\/(.+)$/; var metric_payload = []; metrics_list.forEach(function (metric, index) { var parts = metric.split('':'', 2); metric_payload.push({ ''Id'': ''m'' + index, ''MetricStat'': { ''Metric'': { ''MetricName'': parts[0], ''Namespace'': ''AWS/ApplicationELB'', ''Dimensions'': [ { ''Name'': ''LoadBalancer'', ''Value'': arn.match(regex)[1], } ] }, ''Period'': period, ''Stat'': parts[1], } }); }); return metric_payload; }, request: function (method, region, service, params, data) { if (typeof data === ''undefined'' || data === null) { data = JSON.stringify([]); } else { data = JSON.stringify(data) } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''), canonical_uri = ''/'', host = service + ''.'' + region + ''.amazonaws.com'', canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date'', canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''x-amz-content-sha256:'' + sha256(data)); request.addHeader(''X-Amz-Target: GraniteServiceVersion20100801.GetMetricData'') request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + (AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken)); } Zabbix.log(4, ''[ AWS ELB ] Sending request: '' + url); response = request.post(url, data); Zabbix.log(4, ''[ AWS ELB ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } return JSON.parse(response); }, getMetricsData: function () { var end_time = Math.floor((new Date().getTime()) / 1000), start_time = end_time - AWS.request_period * 60; payload = { ''StartTime'': start_time, ''EndTime'': end_time, ''ScanBy'': ''TimestampDescending'', ''MetricDataQueries'': AWS.renderMetricQuery(AWS.request_period, AWS.params.arn) }; return AWS.getField(AWS.request(''POST'', AWS.params.region, ''monitoring'', '''', payload), ''MetricDataResults''); } }; try { AWS.setParams(JSON.parse(value)); return JSON.stringify(AWS.getMetricsData()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS ELB Get metrics] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'Get ELB Application Load Balancer metrics. Full metrics list related to Application Load Balancer: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/load-balancer-cloudwatch-metrics.html','0','30d','0','',NULL,'{$AWS.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','c7b4e867ff8246058d931ca76d18d4e7','0','2','0'), ('46453','21','','10607','Get target groups','aws.elb.alb.get_target_groups','0s;m/30','0','0','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, metadata: ''http://169.254.169.254/latest/'', getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''GET'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload), ''''), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''region'', ''arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, request: function (method, region, service, params, data) { if (typeof data === ''undefined'' || data === null) { data = JSON.stringify([]); } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''), canonical_uri = ''/'', host = service + ''.'' + region + ''.amazonaws.com'', canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date'', canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''x-amz-content-sha256:'' + sha256(data)); request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + (AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken)); } Zabbix.log(4, ''[ AWS ELB ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ AWS ELB ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } return JSON.parse(response); }, listTargetGroups: function () { var lld_array = [], regex = /targetgroup\\/(.+)$/, payload = { ''Action'': ''DescribeTargetGroups'', ''LoadBalancerArn'': AWS.params.arn, ''Version'': ''2015-12-01'' }; targets = AWS.getField(AWS.request(''GET'', AWS.params.region, ''elasticloadbalancing'', AWS.prepareParams(payload), ''''), ''DescribeTargetGroupsResponse.DescribeTargetGroupsResult.TargetGroups''); if (!Array.isArray(targets)) targets = [targets] targets.forEach(function (targets) { lld_array.push( { target_name: AWS.getField(targets, ''TargetGroupName''), target_arn: AWS.getField(targets, ''TargetGroupArn'').match(regex)[0], type: AWS.getField(targets, ''TargetType''), protocol: AWS.getField(targets, ''Protocol'') } ) }); return lld_array; } }; try { AWS.setParams(JSON.parse(value)); return JSON.stringify(AWS.listTargetGroups()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS ELB Target groups ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'Get ELB target group. `DescribeTargetGroups` API method: https://docs.aws.amazon.com/elasticloadbalancing/latest/APIReference/API_DescribeTargetGroups.html','0','30d','0','',NULL,'{$AWS.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','9b118d348b934146bab54e2df582e2b0','0','2','0'), ('46485','21','','10607','[{#AWS.ELB.TARGET.GROUP.NAME}]: Get metrics','aws.elb.alb.target_groups.get_metrics["{#AWS.ELB.TARGET.GROUP.NAME}"]','0s;m/5','0','0','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, metadata: ''http://169.254.169.254/latest/'', request_period: 60, getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''POST'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload), ''''), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''region'', ''arn'', ''target_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, renderMetricQuery: function (period, arn, target_arn) { var metrics_list = [ ''HTTPCode_Target_2XX_Count:Sum'', ''HTTPCode_Target_3XX_Count:Sum'', ''HTTPCode_Target_4XX_Count:Sum'', ''HTTPCode_Target_5XX_Count:Sum'', ''HealthyHostCount:Average'', ''UnHealthyHostCount:Average'', ''HealthyStateRouting:Sum'', ''UnhealthyStateRouting:Sum'', ''UnhealthyRoutingRequestCount:Sum'', ''HealthyStateDNS:Sum'', ''UnhealthyStateDNS:Sum'', ''RequestCountPerTarget:Sum'', ''MitigatedHostCount:Average'', ''AnomalousHostCount:Average'', ], regex = /loadbalancer\\/(.+)$/; var metric_payload = []; metrics_list.forEach(function (metric, index) { var parts = metric.split('':'', 2); metric_payload.push({ ''Id'': ''m'' + index, ''MetricStat'': { ''Metric'': { ''MetricName'': parts[0], ''Namespace'': ''AWS/ApplicationELB'', ''Dimensions'': [ { ''Name'': ''LoadBalancer'', ''Value'': arn.match(regex)[1], }, { ''Name'': ''TargetGroup'', ''Value'': target_arn } ] }, ''Period'': period, ''Stat'': parts[1], } }); }); return metric_payload; }, request: function (method, region, service, params, data) { if (typeof data === ''undefined'' || data === null) { data = JSON.stringify([]); } else { data = JSON.stringify(data) } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''), canonical_uri = ''/'', host = service + ''.'' + region + ''.amazonaws.com'', canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date'', canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''x-amz-content-sha256:'' + sha256(data)); request.addHeader(''X-Amz-Target: GraniteServiceVersion20100801.GetMetricData'') request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + (AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken)); } Zabbix.log(4, ''[ AWS ELB ] Sending request: '' + url); response = request.post(url, data); Zabbix.log(4, ''[ AWS ELB ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } return JSON.parse(response); }, getMetricsData: function () { var end_time = Math.floor((new Date().getTime()) / 1000), start_time = end_time - AWS.request_period * 60; payload = { ''StartTime'': start_time, ''EndTime'': end_time, ''ScanBy'': ''TimestampDescending'', ''MetricDataQueries'': AWS.renderMetricQuery(AWS.request_period, AWS.params.arn, AWS.params.target_arn) }; return AWS.getField(AWS.request(''POST'', AWS.params.region, ''monitoring'', '''', payload), ''MetricDataResults''); } }; try { AWS.setParams(JSON.parse(value)); return JSON.stringify(AWS.getMetricsData()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS ELB Get targets group metrics] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','2',NULL,'Get the metrics of the ELB target group `{#AWS.ELB.TARGET.GROUP.NAME}`. Full list of metrics related to AWS ELB here: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/load-balancer-cloudwatch-metrics.html#user-authentication-metric-table','0','30d','0','',NULL,'{$AWS.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','306971d2e8fb441d8ae4a658b26304c3','0','2','0'), ('46503','21','','10535','ELB load balancers discovery','aws.elb.discovery','12h','31d','365d','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, metadata: ''http://169.254.169.254/latest/'', getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''GET'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload)), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''describe_region'', ''region_match'', ''region_not_match''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, request: function (method, region, service, params, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''), canonical_uri = ''/'', host = service + ''.'' + region + ''.amazonaws.com'', canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date'', canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''x-amz-content-sha256:'' + sha256(data)); request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + (AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken)); } Zabbix.log(4, ''[ AWS ELB ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ AWS ELB ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { try { response = JSON.parse(XML.toJson(response)); } catch (error) { throw ''Failed to parse response received from AWS API. Check debug log for more information.''; } } return response; }, listRegions: function () { var payload = { ''Action'': ''DescribeRegions'', ''Version'': ''2016-11-15'' }; regions = AWS.getField(AWS.request(''GET'', AWS.params.describe_region, ''ec2'', AWS.prepareParams(payload)), ''DescribeRegionsResponse.regionInfo.item''); if (!Array.isArray(regions)) regions = [regions] return regions }, listLoadBalancers: function () { var lld_array = [], regions = AWS.listRegions(), payload = { ''Action'': ''DescribeLoadBalancers'', ''Version'': ''2015-12-01'' }; regions.forEach(function (region) { var region_name = AWS.getField(region, ''regionName''); if (region_name.match(AWS.params.region_match) === null || region_name.match(AWS.params.region_not_match) !== null) return; elb = AWS.getField(AWS.request(''GET'', region_name, ''elasticloadbalancing'', AWS.prepareParams(payload)), ''DescribeLoadBalancersResponse.DescribeLoadBalancersResult.LoadBalancers''); if (!Array.isArray(elb)) elb = [elb] elb.forEach(function (elb) { lld_array.push( { name: AWS.getField(elb, ''LoadBalancerName''), arn: AWS.getField(elb, ''LoadBalancerArn''), type: AWS.getField(elb, ''Type''), state: AWS.getField(elb, ''State.Code''), dns_name: AWS.getField(elb, ''DNSName''), region: region_name } ) }); }); return lld_array; } }; try { AWS.setParams(JSON.parse(value)); return JSON.stringify(AWS.listLoadBalancers()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS ELB ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','1',NULL,'Get ELB load balancers.','0','7d','1','',NULL,'{$AWS.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','e7ac860c53bf403f9aee8cdd4b099c05','0','2','0'), ('46504','0','','10609','Get availability groups','mssql.availability.group.get["{$MSSQL.URI}","{$MSSQL.USER}","{$MSSQL.PASSWORD}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The item gets availability group states - name, primary and secondary health, synchronization health.','0','30d','0','',NULL,'30s','','','','200','1','0','','','0','0','0','0','0','0','0','71ade3c11bcd4f4691c5fa1c3fa6ded1','0','2','0'), ('46505','15','','10609','Average latch wait time','mssql.average_latch_wait_time','0;m0-59s3','31d','365d','0','0','','ms','','',NULL,NULL,'(last(//mssql.average_latch_wait_time_raw) - last(//mssql.average_latch_wait_time_raw,#2)) / (last(//mssql.average_latch_wait_time_base) - last(//mssql.average_latch_wait_time_base,#2) + (last(//mssql.average_latch_wait_time_base) - last(//mssql.average_latch_wait_time_base,#2)=0))','','0','','','','','0',NULL,'Average latch wait time (in milliseconds) for latch requests that had to wait.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8c5e2250dcc4405d95cc33167be33bb2','0','2','0'), ('46506','15','','10609','Total average wait time','mssql.average_wait_time','0;m0-59s3','31d','365d','0','0','','ms','','',NULL,NULL,'(last(//mssql.average_wait_time_raw) - last(//mssql.average_wait_time_raw,#2)) / (last(//mssql.average_wait_time_base) - last(//mssql.average_wait_time_base,#2) + (last(//mssql.average_wait_time_base) - last(//mssql.average_wait_time_base,#2)=0))','','0','','','','','0',NULL,'The average wait time, in milliseconds, for each lock request that had to wait.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3ba031d33d9147f786ee6fb6fddafaed','0','2','0'), ('46507','0','','10609','Get database','mssql.db.get["{$MSSQL.URI}","{$MSSQL.USER}","{$MSSQL.PASSWORD}"]','1h','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Getting databases - database name and recovery model.','0','30d','0','',NULL,'30s','','','','200','1','0','','','0','0','0','0','0','0','0','6c942840048b463e9439f327adceb767','0','2','0'), ('46508','0','','10609','Get job status','mssql.job.status.get["{$MSSQL.URI}","{$MSSQL.USER}","{$MSSQL.PASSWORD}"]','10m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The item gets the SQL agent job status.','0','30d','0','',NULL,'30s','','','','200','1','0','','','0','0','0','0','0','0','0','e36f8695b4f74178a19bb88afad586b8','0','2','0'), ('46509','0','','10609','Get last backup','mssql.last.backup.get["{$MSSQL.URI}","{$MSSQL.USER}","{$MSSQL.PASSWORD}"]','10m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The item gets information about backup processes.','0','30d','0','',NULL,'30s','','','','200','1','0','','','0','0','0','0','0','0','0','a394835aeddd46a18327f25747e3564d','0','2','0'), ('46510','0','','10609','Get local DB','mssql.local.db.get["{$MSSQL.URI}","{$MSSQL.USER}","{$MSSQL.PASSWORD}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Getting the states of the local availability database.','0','30d','0','',NULL,'30s','','','','200','1','0','','','0','0','0','0','0','0','0','f049c16678ad4daa83e55ab6c3a99fbc','0','2','0'), ('46511','0','','10609','Get DB mirroring','mssql.mirroring.get["{$MSSQL.URI}","{$MSSQL.USER}","{$MSSQL.PASSWORD}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Getting DB mirroring.','0','30d','0','',NULL,'30s','','','','200','1','0','','','0','0','0','0','0','0','0','fb51801472fc4ca7beed49c2586ba1cb','0','2','0'), ('46512','0','','10609','Get non-local DB','mssql.nonlocal.db.get["{$MSSQL.URI}","{$MSSQL.USER}","{$MSSQL.PASSWORD}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Getting the non-local availability database.','0','30d','0','',NULL,'30s','','','','200','1','0','','','0','0','0','0','0','0','0','8730198507594f4aa38d45bf00e65a38','0','2','0'), ('46513','15','','10609','Percent of ad hoc queries running','mssql.percent_of_adhoc_queries','0;m0-59s3','31d','365d','0','0','','%','','',NULL,NULL,'last(//mssql.sql_compilations_sec.rate) * 100 / (last(//mssql.batch_requests_sec.rate) + (last(//mssql.batch_requests_sec.rate)=0))','','0','','','','','0',NULL,'The ratio of SQL compilations per second to batch requests per second, in percent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2064cd9f8e7646fa8fb329ca287fedd2','0','2','0'), ('46514','15','','10609','Percent of Recompiled Transact-SQL Objects','mssql.percent_recompilations_to_compilations','0;m0-59s3','31d','365d','0','0','','%','','',NULL,NULL,'last(//mssql.sql_recompilations_sec.rate) * 100 / (last(//mssql.sql_compilations_sec.rate) + (last(//mssql.sql_compilations_sec.rate)=0))','','0','','','','','0',NULL,'The ratio of SQL re-compilations per second to SQL compilations per second, in percent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','98b0754f231c4160bcd2daafeef64fe0','0','2','0'), ('46515','0','','10609','Get performance counters','mssql.perfcounter.get["{$MSSQL.URI}","{$MSSQL.USER}","{$MSSQL.PASSWORD}"]','0;m0-59','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The item gets server global status information.','0','30d','0','',NULL,'30s','','','','200','1','0','','','0','0','0','0','0','0','0','2128f1e7d0fa46e2bdb8b06f5c07c436','0','2','0'), ('46516','0','','10609','Get quorum','mssql.quorum.get["{$MSSQL.URI}","{$MSSQL.USER}","{$MSSQL.PASSWORD}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Getting quorum - cluster name, type, and state.','0','30d','0','',NULL,'10s','','','','200','1','0','','','0','0','0','0','0','0','0','432178b4071e46758c421f6d9b75f4cd','0','2','0'), ('46517','0','','10609','Get quorum member','mssql.quorum.member.get["{$MSSQL.URI}","{$MSSQL.USER}","{$MSSQL.PASSWORD}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Getting quorum members - member name, type, state, and number of quorum votes.','0','30d','0','',NULL,'10s','','','','200','1','0','','','0','0','0','0','0','0','0','7343a6e34956475db3e79f7cfa905baa','0','2','0'), ('46518','0','','10609','Get replica','mssql.replica.get["{$MSSQL.URI}","{$MSSQL.USER}","{$MSSQL.PASSWORD}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Getting the database replica.','0','30d','0','',NULL,'30s','','','','200','1','0','','','0','0','0','0','0','0','0','77deceae02df4e2280f42ae7b7b16f76','0','2','0'), ('46519','15','','10609','Full scans to Index searches ratio','mssql.scan_to_search','0;m0-59s3','31d','365d','0','0','','','','',NULL,NULL,'last(//mssql.full_scans_sec.rate) / (last(//mssql.index_searches_sec.rate) + (last(//mssql.index_searches_sec.rate)=0))','','0','','','','','0',NULL,'The ratio of full scans per second to index searches per second. The threshold recommendation is strictly for OLTP workloads.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5dda9c1a17fa43ada4a6857e62148f1a','0','2','0'), ('46520','0','','10609','Version','mssql.version["{$MSSQL.URI}","{$MSSQL.USER}","{$MSSQL.PASSWORD}"]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MSSQL Server version.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','624ea81f4a7c43659f291a2fc7913778','0','2','0'), ('46521','3','','10609','Service''s TCP port state','net.tcp.service[tcp,{$MSSQL.HOST},{$MSSQL.PORT}]','30s','31d','365d','0','3','','','','',NULL,'1177','','','0','','','','','0',NULL,'Test the availability of MSSQL Server on a TCP port.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7fc4f1f9c3df45269972e617ce81f4b2','0','2','0'), ('46659','21','','10610','Get cluster','yugabytedb.clusters.get','1h','0','0','0','4','','','','',NULL,NULL,'var YugabyteDB = { params: {}, clusters: [], error_msg: '''', setParams: function (params) { [''account_id'', ''project_id'', ''token''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); YugabyteDB.params = params; }, request: function (url, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var response, request = new HttpRequest(); if (typeof YugabyteDB.params.proxy !== ''undefined'' && YugabyteDB.params.proxy !== '''') { request.setProxy(YugabyteDB.params.proxy); } if (YugabyteDB.params.token) { request.addHeader(''Accept: application/json''); request.addHeader(''Authorization: Bearer '' + YugabyteDB.params.token); } Zabbix.log(4, ''[ YugabyteDB ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ YugabyteDB ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200 || response === null) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { return JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API:'' + error; } } }; try { YugabyteDB.setParams(JSON.parse(value)); clusters = YugabyteDB.request( ''https://cloud.yugabyte.com/api/public/v1/accounts/'' + YugabyteDB.params.account_id + ''/projects/'' + YugabyteDB.params.project_id + ''/clusters'' ) YugabyteDB.clusters = clusters.data; } catch (error) { Zabbix.log(3, ''[ YugabyteDB ] ERROR: '' + error); YugabyteDB.error_msg = ''Failed to get data from API:'' + error; } return JSON.stringify({''clusters'': YugabyteDB.clusters, ''error'': YugabyteDB.error_msg});','','0','','','','','0',NULL,'Get raw data about clusters.','0','30d','0','',NULL,'10s','','','','200','1','0','','','0','0','0','0','0','0','0','25196b29de6c45c18485f2aefe306818','0','2','0'), ('46660','15','','10611','YSQL connections utilization','yugabytedb.cluster.connection.utilization','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//yugabytedb.cluster.connection.count)/last(//yugabytedb.cluster.connection.limit))*100','','0','','','','','0',NULL,'Cumulative number of connections to the YSQL backend for all nodes, expressed in percent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a7c388d2e66b48469e47a55cbb6ec614','0','2','0'), ('46661','15','','10611','Disk space utilization','yugabytedb.cluster.disk.utilization','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//yugabytedb.cluster.disk.usage)/last(//yugabytedb.cluster.disk.provisioned))*100','','0','','','','','0',NULL,'Shows the percentage of disk space used by the cluster.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b2de999838914ca2bfc2c4fdfd22db74','0','2','0'), ('46662','21','','10611','Get cluster','yugabytedb.cluster.get','10m','0','0','0','4','','','','',NULL,NULL,'var YugabyteDB = { params: {}, clusters: [], error_msg: '''', setParams: function (params) { [''account_id'', ''project_id'', ''token'', ''cluster_id''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); YugabyteDB.params = params; }, request: function (url, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var response, request = new HttpRequest(); if (typeof YugabyteDB.params.proxy !== ''undefined'' && YugabyteDB.params.proxy !== '''') { request.setProxy(YugabyteDB.params.proxy); } if (YugabyteDB.params.token) { request.addHeader(''Accept: application/json''); request.addHeader(''Authorization: Bearer '' + YugabyteDB.params.token); } Zabbix.log(4, ''[ YugabyteDB ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ YugabyteDB ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200 || response === null) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { return JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API:'' + error; } } }; try { YugabyteDB.setParams(JSON.parse(value)); cluster = YugabyteDB.request( ''https://cloud.yugabyte.com/api/public/v1/accounts/'' + YugabyteDB.params.account_id + ''/projects/'' + YugabyteDB.params.project_id + ''/clusters/'' + YugabyteDB.params.cluster_id ) YugabyteDB.clusters = cluster.data; } catch (error) { Zabbix.log(3, ''[ YugabyteDB ] ERROR: '' + error); YugabyteDB.error_msg = ''Failed to get data from API:'' + error; } return JSON.stringify({''data'': YugabyteDB.clusters, ''error'': YugabyteDB.error_msg});','','0','','','','','0',NULL,'Get raw data about clusters.','0','30d','0','',NULL,'10s','','','','200','1','0','','','0','0','0','0','0','0','0','d8f71197e0e147fea4de2a17d4b1ad81','0','2','0'), ('46663','15','','10611','Memory utilization','yugabytedb.cluster.memory.utilization','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//yugabytedb.cluster.memory.usage)/last(//yugabytedb.cluster.memory.total))*100','','0','','','','','0',NULL,'Shows the amount of RAM used on the cluster, expressed in percent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','18e6de024a7a4ae48901f455dbd0a373','0','2','0'), ('46664','21','','10611','Get cluster metrics','yugabytedb.cluster.metric.get','1m','0','0','0','4','','','','',NULL,NULL,'var YugabyteDB = { params: {}, metrics: {}, error_msg: '''', setParams: function (params) { [''account_id'', ''project_id'', ''token'', ''cluster_id''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); YugabyteDB.params = params; }, request: function (url, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var response, request = new HttpRequest(); if (typeof YugabyteDB.params.proxy !== ''undefined'' && YugabyteDB.params.proxy !== '''') { request.setProxy(YugabyteDB.params.proxy); } if (YugabyteDB.params.token) { request.addHeader(''Accept: application/json''); request.addHeader(''Authorization: Bearer '' + YugabyteDB.params.token); } Zabbix.log(4, ''[ YugabyteDB ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ YugabyteDB ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200 || response === null) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { return JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API:'' + error; } }, get_last_values: function (values) { var max_timestamp = 0; var last_value = 0; for (e in values) { if (values[e][0] > max_timestamp) { max_timestamp = values[e][0]; last_value = values[e][1]; }; }; return last_value; }, get_start_time: function() { return Math.floor(Date.now() / 1000 - 300); } }; metrics = [ "CPU_USAGE", "DISK_USAGE_GB", "PROVISIONED_DISK_SPACE_GB", "READ_OPS_PER_SEC", "WRITE_OPS_PER_SEC", "AVERAGE_READ_LATENCY_MS", "AVERAGE_WRITE_LATENCY_MS", "YSQL_CONNECTION_LIMIT", "AVERAGE_YSQL_CONNECTION_COUNT", "NODE_CLOCK_SKEW", "DISK_BYTES_READ_MB_PER_SEC", "DISK_BYTES_WRITTEN_MB_PER_SEC", "FOLLOWER_LAG_MS", "MEMORY_TOTAL_GB", "MEMORY_USAGE_GB", "NETWORK_RECEIVE_BYTES_MB_PER_SEC", "NETWORK_TRANSMIT_BYTES_MB_PER_SEC", "NETWORK_RECEIVE_ERRORS_PER_SEC", "NETWORK_TRANSMIT_ERRORS_PER_SEC", "MASTER_UP_STATUS", "TSERVER_UP_STATUS", "YSQL_MAX_CONNECTION_COUNT" ] try { YugabyteDB.setParams(JSON.parse(value)); var size = 6 for (var i = 0; i < Math.ceil(metrics.length/size); i++) { var values = YugabyteDB.request( ''https://cloud.yugabyte.com/api/public/v1/accounts/'' + YugabyteDB.params.account_id + ''/projects/'' + YugabyteDB.params.project_id + ''/clusters/'' + YugabyteDB.params.cluster_id + ''/metrics?metrics='' + metrics.slice((i * size), (i * size) + size).join(''%2C'') + ''&start_time='' + YugabyteDB.get_start_time() ); values.data.forEach(function (e) { YugabyteDB.metrics[e.name] = YugabyteDB.get_last_values(e.values) }); }; } catch (error) { Zabbix.log(3, ''[ YugabyteDB ] ERROR: '' + error); error_msg = ''Failed to get data from API:'' + error; } return JSON.stringify({''metrics'': YugabyteDB.metrics, ''error'': YugabyteDB.error_msg});','','0','','','','','0',NULL,'Getting metrics for the cluster.','0','30d','0','',NULL,'5s','','','','200','1','0','','','0','0','0','0','0','0','0','9c51b3d15ac448388e23c74d4e5bba3a','0','2','0'), ('46665','21','','10611','Get cluster query statistic','yugabytedb.cluster.query.statistic.get','1m','0','0','0','4','','','','',NULL,NULL,'var YugabyteDB = { params: {}, metrics: {}, error_msg: '''', setParams: function (params) { [''account_id'', ''project_id'', ''token'', ''cluster_id''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); YugabyteDB.params = params; }, request: function (url, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var response, request = new HttpRequest(); if (typeof YugabyteDB.params.proxy !== ''undefined'' && YugabyteDB.params.proxy !== '''') { request.setProxy(YugabyteDB.params.proxy); } if (YugabyteDB.params.token) { request.addHeader(''Accept: application/json''); request.addHeader(''Authorization: Bearer '' + YugabyteDB.params.token); } Zabbix.log(4, ''[ YugabyteDB ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ YugabyteDB ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200 || response === null) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { return JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API:'' + error; } }, get_last_values: function (values) { var max_timestamp = 0; var last_value = 0; for (e in values) { if (values[e][0] > max_timestamp) { max_timestamp = values[e][0]; last_value = values[e][1]; }; }; return last_value; }, get_start_time: function() { return Math.floor(Date.now() / 1000 - 300); } }; metrics = [ "YSQL_SELECT_OPS_PER_SEC", "YSQL_DELETE_OPS_PER_SEC", "YSQL_INSERT_OPS_PER_SEC", "YSQL_UPDATE_OPS_PER_SEC", "YSQL_OTHER_OPS_PER_SEC", "YSQL_TRANSACTION_OPS_PER_SEC", "YSQL_SELECT_LATENCY_MS", "YSQL_DELETE_LATENCY_MS", "YSQL_INSERT_LATENCY_MS", "YSQL_UPDATE_LATENCY_MS", "YSQL_OTHER_LATENCY_MS", "YSQL_TRANSACTION_LATENCY_MS", "YCQL_SELECT_OPS_PER_SEC", "YCQL_DELETE_OPS_PER_SEC", "YCQL_INSERT_OPS_PER_SEC", "YCQL_OTHER_OPS_PER_SEC", "YCQL_UPDATE_OPS_PER_SEC", "YCQL_TRANSACTION_OPS_PER_SEC", "YCQL_SELECT_LATENCY_MS", "YCQL_DELETE_LATENCY_MS", "YCQL_INSERT_LATENCY_MS", "YCQL_OTHER_LATENCY_MS", "YCQL_UPDATE_LATENCY_MS", "YCQL_TRANSACTION_LATENCY_MS" ] try { YugabyteDB.setParams(JSON.parse(value)); var size = 6 for (var i = 0; i < Math.ceil(metrics.length/size); i++) { var values = YugabyteDB.request( ''https://cloud.yugabyte.com/api/public/v1/accounts/'' + YugabyteDB.params.account_id + ''/projects/'' + YugabyteDB.params.project_id + ''/clusters/'' + YugabyteDB.params.cluster_id + ''/metrics?metrics='' + metrics.slice((i * size), (i * size) + size).join(''%2C'') + ''&start_time='' + YugabyteDB.get_start_time() ); values.data.forEach(function (e) { YugabyteDB.metrics[e.name] = YugabyteDB.get_last_values(e.values) }); }; } catch (error) { Zabbix.log(3, ''[ YugabyteDB ] ERROR: '' + error); error_msg = ''Failed to get data from API:'' + error; return JSON.stringify({''error'': error_msg}); } return JSON.stringify({''metrics'': YugabyteDB.metrics, ''error'': YugabyteDB.error_msg});','','0','','','','','0',NULL,'Getting SQL statistics for the cluster.','0','30d','0','',NULL,'5s','','','','200','1','0','','','0','0','0','0','0','0','0','5497290f85d44d2c95ca0be3d2b030a3','0','2','0'), ('46666','21','','10611','Get keyspace','yugabytedb.keyspace.get','10m','0','0','0','4','','','','',NULL,NULL,'var YugabyteDB = { params: {}, keyspaces: {}, error_msg: '''', setParams: function (params) { [''account_id'', ''project_id'', ''token''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); YugabyteDB.params = params; }, request: function (url, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var response, request = new HttpRequest(); if (typeof YugabyteDB.params.proxy !== ''undefined'' && YugabyteDB.params.proxy !== '''') { request.setProxy(YugabyteDB.params.proxy); } if (YugabyteDB.params.token) { request.addHeader(''Accept: application/json''); request.addHeader(''Authorization: Bearer '' + YugabyteDB.params.token); } Zabbix.log(4, ''[ YugabyteDB ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ YugabyteDB ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200 || response === null) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { return JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API:'' + error; } }, get_keyspace: function (tables) { var table_info = {}; var result = []; for (var table in tables[''data'']) { var table_name = tables[''data''][table][''keyspace'']; if (typeof table_info[table_name] !== ''undefined'') { table_info[table_name][''size_bytes''] += tables[''data''][table][''size_bytes''] table_info[table_name][''wal_size_bytes''] += tables[''data''][table][''wal_size_bytes''] } else { table_info[table_name] = { ''keyspace_name'': table_name, ''size_bytes'': tables[''data''][table][''size_bytes''], ''wal_size_bytes'': tables[''data''][table][''wal_size_bytes''], ''type'': tables[''data''][table][''type'']} } } for (keyspace in table_info) { result.push(table_info[keyspace]) } return result; } }; try { YugabyteDB.setParams(JSON.parse(value)); var tables = YugabyteDB.request( ''https://cloud.yugabyte.com/api/public/v1/accounts/'' + YugabyteDB.params.account_id + ''/projects/'' + YugabyteDB.params.project_id + ''/clusters/'' + YugabyteDB.params.cluster_id + ''/tables'' ) YugabyteDB.keyspaces = YugabyteDB.get_keyspace(tables); } catch (error) { Zabbix.log(3, ''[ YugabyteDB ] ERROR: '' + error); error_msg = ''Failed to get data from API:'' + error; } return JSON.stringify({''keyspaces'': YugabyteDB.keyspaces, ''error'': YugabyteDB.error_msg});','','0','','','','','0',NULL,'Get raw data about keyspaces.','0','30d','0','',NULL,'10s','','','','200','1','0','','','0','0','0','0','0','0','0','88c3b743cbe24ea9a0046dc0854a36be','0','2','0'), ('46667','21','','10611','Get node','yugabytedb.node.get','10m','0','0','0','4','','','','',NULL,NULL,'var YugabyteDB = { params: {}, nodes: {}, error_msg: '''', setParams: function (params) { [''account_id'', ''project_id'', ''token''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); YugabyteDB.params = params; }, request: function (url, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var response, request = new HttpRequest(); if (typeof YugabyteDB.params.proxy !== ''undefined'' && YugabyteDB.params.proxy !== '''') { request.setProxy(YugabyteDB.params.proxy); } if (YugabyteDB.params.token) { request.addHeader(''Accept: application/json''); request.addHeader(''Authorization: Bearer '' + YugabyteDB.params.token); } Zabbix.log(4, ''[ YugabyteDB ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ YugabyteDB ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200 || response === null) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { return JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API:'' + error; } } }; try { YugabyteDB.setParams(JSON.parse(value)); var node = YugabyteDB.request( ''https://cloud.yugabyte.com/api/public/v1/accounts/'' + YugabyteDB.params.account_id + ''/projects/'' + YugabyteDB.params.project_id + ''/clusters/'' + YugabyteDB.params.cluster_id + ''/nodes'' ) YugabyteDB.nodes = node.data; } catch (error) { Zabbix.log(3, ''[ YugabyteDB ] ERROR: '' + error); error_msg = ''Failed to get data from API:'' + error; } return JSON.stringify({''nodes'': YugabyteDB.nodes, ''error'': YugabyteDB.error_msg});','','0','','','','','0',NULL,'Get raw data about nodes.','0','30d','0','',NULL,'10s','','','','200','1','0','','','0','0','0','0','0','0','0','734486b27ba64138bae356c7b14c8dbc','0','2','0'), ('46726','15','','10611','YugabyteDB Node [{#NODE.NAME}]: Disk IOPS utilization','yugabytedb.node.iops.utilization[{#NODE.NAME}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'((last(//yugabytedb.node.read.ops[{#NODE.NAME}]) + last(//yugabytedb.node.write.ops[{#NODE.NAME}]))/last(//yugabytedb.node.iops.limit[{#NODE.NAME}]))*100','','0','','','','','2',NULL,'Shows the utilization of provisioned IOPS.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','27e087e59b0f425584f57fda13398ea0','0','2','0'), ('46746','3','','10613','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'1189','','','0','','','','','0',NULL,'Host accessibility by ICMP. 0 - ICMP ping fails. 1 - ICMP ping successful.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','737cc32022044218bd0599bc9be1c6cf','0','2','0'), ('46747','3','','10613','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of lost packets.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','584837895d324e5bbcbce686ec894fb4','0','2','0'), ('46748','3','','10613','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'ICMP ping response time (in seconds).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','85013b32538f445d87955582857f2942','0','2','0'), ('46749','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10613','SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Used for discovering interfaces from IF-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a81c01a9acfe49eabea71a3106bf43b8','0','2','0'), ('46750','20','discovery[{#SNMPVALUE},1.3.6.1.4.1.2620.500.9000.1.2]','10613','Remote Access users','remote.users.number','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CHECKPOINT-MIB Number of remote access users.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d50cbc1930c24647b1f5a7921c9c3b06','0','2','0'), ('46751','20','walk[1.3.6.1.4.1.2620.1.6.7.8.2.1.2,1.3.6.1.4.1.2620.1.6.7.8.2.1.3,1.3.6.1.4.1.2620.1.6.7.8.2.1.4,1.3.6.1.4.1.2620.1.6.7.8.2.1.6]','10613','SNMP walk fan sensors','sensor.fan.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Used for discovering fan sensors from CHECKPOINT-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b943e400640e46498ba7ecf2ea3510dd','0','2','0'), ('46752','20','walk[1.3.6.1.4.1.2620.1.6.7.9.1.1.1,1.3.6.1.4.1.2620.1.6.7.9.1.1.2]','10613','SNMP walk PSU sensors','sensor.psu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Used for discovering power supply sensors from CHECKPOINT-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','76167bb41de149d6a4b4af4ba68e1460','0','2','0'), ('46753','20','walk[1.3.6.1.4.1.2620.1.6.7.8.1.1.2,1.3.6.1.4.1.2620.1.6.7.8.1.1.3]','10613','SNMP walk temperature sensors','sensor.temp.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Used for discovering temperature sensors from CHECKPOINT-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d5122dad11df4f6790d49d46614c3ea2','0','2','0'), ('46754','20','walk[1.3.6.1.4.1.2620.1.6.7.8.3.1.2,1.3.6.1.4.1.2620.1.6.7.8.3.1.3]','10613','SNMP walk voltage sensors','sensor.volt.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Used for discovering voltage sensors from CHECKPOINT-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','620126ff805d48aea5b7cac6d5ab4084','0','2','0'), ('46755','17','','10613','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'Used to collect all SNMP traps unmatched by other `snmptrap` items.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e04735bdbc4f453692902c0bc6596f3b','0','2','0'), ('46756','20','walk[1.3.6.1.4.1.2620.1.6.18.1.1.4,1.3.6.1.4.1.2620.1.6.18.1.1.5,1.3.6.1.4.1.2620.1.6.18.1.1.6,1.3.6.1.4.1.2620.1.6.18.1.1.8,1.3.6.1.4.1.2620.1.6.18.1.1.9,1.3.6.1.4.1.2620.1.6.18.1.1.10]','10613','SNMP walk svn features','svn.feature.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Used for discovering software blades and features from CHECKPOINT-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','847084d2b72a4c9688a4375a12fd7ea0','0','2','0'), ('46757','20','get[1.3.6.1.2.1.1.4.0]','10613','System contact details','system.contact','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Name and contact information of the contact person for the node. If not provided, the value is a zero-length string.','23','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','499ee4e8eb2f481295625592ee215610','0','2','0'), ('46758','20','get[1.3.6.1.4.1.2620.1.6.7.2.3.0]','10613','CPU idle time','system.cpu.idle','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CHECKPOINT-MIB Average time the CPU has spent doing nothing.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','07162e1ca0c44dc5979b17c258b34052','0','2','0'), ('46759','20','get[1.3.6.1.4.1.2620.1.6.7.2.6.0]','10613','CPU interrupts per second','system.cpu.intr','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CHECKPOINT-MIB Number of interrupts processed per second.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5acef2ff22464f2c816bf1ab5ed8c66f','0','2','0'), ('46763','20','get[1.3.6.1.4.1.2620.1.6.7.2.7.0]','10613','Number of CPUs','system.cpu.num','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CHECKPOINT-MIB Number of processors.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b42cc71d0b5143108b2314ab1fb1ceff','0','2','0'), ('46764','20','get[1.3.6.1.4.1.2021.11.60.0]','10613','Context switches per second','system.cpu.switches','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB Number of context switches per second.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ada3e8eb30bc4c4f863fca6e46dc1cd5','0','2','0'), ('46765','20','get[1.3.6.1.4.1.2620.1.6.7.2.2.0]','10613','CPU system time','system.cpu.system','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CHECKPOINT-MIB Average time the CPU has spent running the kernel and its processes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bf0a80a981d248bdb2e4567ee8c084b3','0','2','0'), ('46766','20','get[1.3.6.1.4.1.2620.1.6.7.2.1.0]','10613','CPU user time','system.cpu.user','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CHECKPOINT-MIB Average time the CPU has spent running user processes that are not niced.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7a8a46d486404a5184a7fdba0832c50f','0','2','0'), ('46767','20','get[1.3.6.1.4.1.2620.1.6.7.2.4.0]','10613','CPU utilization','system.cpu.util','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CHECKPOINT-MIB CPU utilization per core in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','db554f92ee6a4ab297b75839c019a7fe','0','2','0'), ('46768','20','walk[1.3.6.1.4.1.2620.1.6.7.5.1.1,1.3.6.1.4.1.2620.1.6.7.5.1.2,1.3.6.1.4.1.2620.1.6.7.5.1.3,1.3.6.1.4.1.2620.1.6.7.5.1.4,1.3.6.1.4.1.2620.1.6.7.5.1.5]','10613','SNMP walk CPU','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Used for discovering CPU from CHECKPOINT-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3628aac1e934408489153062d078e2e7','0','2','0'), ('46769','20','get[1.3.6.1.2.1.1.1.0]','10613','System description','system.descr','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Full name and version identification of the system''s hardware type, software operating system, and networking software.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a7ad79b572ab4e678011aa8ee810cd75','0','2','0'), ('46770','20','get[1.3.6.1.4.1.2620.1.6.16.9.0]','10613','Appliance manufacturer','system.hw.manufacturer','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CHECKPOINT-MIB Appliance manufacturer.','31','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8385b6ee11b340f888676d013531a4d5','0','2','0'), ('46771','20','get[1.3.6.1.4.1.2620.1.6.16.7.0]','10613','Appliance product name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CHECKPOINT-MIB Appliance product name.','29','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b461939fa04348f19c4f03ce3fd211b8','0','2','0'), ('46772','20','get[1.3.6.1.4.1.2620.1.6.16.3.0]','10613','Appliance serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CHECKPOINT-MIB Appliance serial number.','8','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','adb0bce1162a4e8990f4d299d8554d29','0','2','0'), ('46773','20','get[1.3.6.1.2.1.1.6.0]','10613','System location','system.location','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','df1681db47dc40b987f7be51e640974e','0','2','0'), ('46774','20','get[1.3.6.1.2.1.1.5.0]','10613','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for the node (the node''s fully-qualified domain name). If not provided, the value is a zero-length string.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a18c50a7b53e49c09de5fa39d9a70a14','0','2','0'), ('46775','20','get[1.3.6.1.2.1.1.2.0]','10613','System object ID','system.objectid','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the entity as part of the vendor''s SMI enterprises subtree with the prefix 1.3.6.1.4.1 (e.g., a vendor with the identifier 1.3.6.1.4.1.4242 might assign a system object with the OID 1.3.6.1.4.1.4242.1.1).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bd2f23c23fff46b5b43e8283f1683927','0','2','0'), ('46776','20','get[1.3.6.1.2.1.25.1.1.0]','10613','System uptime','system.uptime','1m','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-V2-MIB Time since the network management portion of the system was last re-initialized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b05995de7faf4d408b467c1024f2a438','0','2','0'), ('46777','20','walk[1.3.6.1.4.1.2620.1.6.7.6.1.2,1.3.6.1.4.1.2620.1.6.7.6.1.3,1.3.6.1.4.1.2620.1.6.7.6.1.4,1.3.6.1.4.1.2620.1.6.7.6.1.5,1.3.6.1.4.1.2620.1.6.7.6.1.6,1.3.6.1.4.1.2620.1.6.7.6.1.7]','10613','SNMP walk disks','vfs.fs.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Used for discovering storage disks from CHECKPOINT-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d66ff3625ea74b5493a37d7b5e231c66','0','2','0'), ('46778','20','get[1.3.6.1.4.1.2620.1.6.7.4.4.0]','10613','Active memory','vm.memory.active','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CHECKPOINT-MIB Active real memory (memory used by applications that is not cached to the disk) in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9c5fbaca93854ad3941cb95e159b0ee1','0','2','0'), ('46779','20','get[1.3.6.1.4.1.2620.1.6.7.4.5.0]','10613','Free memory','vm.memory.free','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CHECKPOINT-MIB Free memory available for applications in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0a55ee1b84cb490494e27a4543db7691','0','2','0'), ('46780','20','get[1.3.6.1.4.1.2620.1.6.7.4.3.0]','10613','Total memory','vm.memory.total','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CHECKPOINT-MIB Total real memory in bytes. Memory used by applications.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','517445d996d148bcb34d7898dca55df6','0','2','0'), ('46781','15','','10613','Used memory','vm.memory.used','1m','31d','365d','0','3','','B','','',NULL,NULL,'last(//vm.memory.total) - last(//vm.memory.free)','','0','','','','','0',NULL,'Used real memory calculated by total real memory and free real memory in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8846be280ae14ee8a1af1be65bef1996','0','2','0'), ('46782','15','','10613','Memory utilization','vm.memory.util','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//vm.memory.used)/last(//vm.memory.total)*100','','0','','','','','0',NULL,'Memory utilization in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6bb39f4c24f14cc6a90db2ce1492dbea','0','2','0'), ('46783','20','get[1.3.6.1.4.1.2620.1.2.5.4.6.0]','10613','Decrypted packets per second','vpn.packets.decrypted','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CHECKPOINT-MIB Number of decrypted packets per second.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0eac75ac03af43d596b84cee15a8ddb4','0','2','0'), ('46784','20','get[1.3.6.1.4.1.2620.1.2.5.4.5.0]','10613','Encrypted packets per second','vpn.packets.encrypted','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: CHECKPOINT-MIB Number of encrypted packets per second.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5d2b872c90774b868d5ce086fabe5cb2','0','2','0'), ('46785','20','walk[1.3.6.1.4.1.2620.500.9002.1.1,1.3.6.1.4.1.2620.500.9002.1.2,1.3.6.1.4.1.2620.500.9002.1.3,1.3.6.1.4.1.2620.500.9002.1.4,1.3.6.1.4.1.2620.500.9002.1.6,1.3.6.1.4.1.2620.500.9002.1.7,1.3.6.1.4.1.2620.500.9002.1.8,1.3.6.1.4.1.2620.500.9002.1.9,1.3.6.1.4.1.2620.500.9002.1.10,1.3.6.1.4.1.2620.500.9002.1.11]','10613','SNMP walk VPN tunnels','vpn.tunnel.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Used for discovering VPN tunnels from CHECKPOINT-MIB.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','eb15e618aff347b3ba986a2c02deb6bd','0','2','0'), ('46786','5','','10613','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'1195','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to the availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','843f5f01701e4d79b3e899134f87632d','0','2','0'), ('46789','20','discovery[{#FW.STATE},1.3.6.1.4.1.2620.1.1.1]','10613','Firewall discovery','fw.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'This discovery will create a set of firewall metrics from CHECKPOINT-MIB if the firewall is installed.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5fa6a636f36f44069f83885bc2767e85','0','2','0'), ('46797','20','get[1.3.6.1.4.1.2620.1.1.25.6.{#SNMPINDEX}]','10613','Check Point Firewall: Accepted packets per second{#SINGLETON}','fw.accepted[fwAccepted.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CHECKPOINT-MIB Number of accepted packets per second.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ff64891849684cc88ae5414c0bc1b0bb','0','2','0'), ('46798','20','get[1.3.6.1.4.1.2620.1.1.25.4.{#SNMPINDEX}]','10613','Check Point Firewall: Peak concurrent connections{#SINGLETON}','fw.conn.num.peak[fwPeakNumConn.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CHECKPOINT-MIB Peak number of concurrent connections since last reboot.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a26ba0c4eec04fb99160b15a8ff40cee','0','2','0'), ('46799','20','get[1.3.6.1.4.1.2620.1.1.25.3.{#SNMPINDEX}]','10613','Check Point Firewall: Concurrent connections{#SINGLETON}','fw.conn.num[fwNumConn.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CHECKPOINT-MIB Number of concurrent IPv6 and IPv4 connections.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3cf7583bcf2a43f4b7598689b6d8825d','0','2','0'), ('46800','20','get[1.3.6.1.4.1.2620.1.1.25.16.{#SNMPINDEX}]','10613','Check Point Firewall: Dropped packets per second{#SINGLETON}','fw.dropped[fwDropped.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CHECKPOINT-MIB Number of dropped packets per second.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b35e258430f04d7b96f70f0df97040ef','0','2','0'), ('46801','20','get[1.3.6.1.4.1.2620.1.1.3.{#SNMPINDEX}]','10613','Check Point Firewall: Firewall filter install time{#SINGLETON}','fw.filter.installed[fwFilterDate.{#SNMPINDEX}]','1m','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CHECKPOINT-MIB Last install time of the firewall filter.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8dc145b5354940c88089df72ce59557e','0','2','0'), ('46802','20','get[1.3.6.1.4.1.2620.1.1.2.{#SNMPINDEX}]','10613','Check Point Firewall: Firewall filter name{#SINGLETON}','fw.filter.name[fwFilterName.{#SNMPINDEX}]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CHECKPOINT-MIB Name of the firewall filter.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7c0837980dca4bdda426c5b22bae21e2','0','2','0'), ('46803','20','get[1.3.6.1.4.1.2620.1.1.25.13.{#SNMPINDEX}]','10613','Check Point Firewall: Logged packets per second{#SINGLETON}','fw.logged[fwLogged.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CHECKPOINT-MIB Number of logged packets per second.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','03ec2d7d252d458fac388d915467af42','0','2','0'), ('46804','20','get[1.3.6.1.4.1.2620.1.1.25.14.{#SNMPINDEX}]','10613','Check Point Firewall: Rejected packets per second{#SINGLETON}','fw.rejected[fwRejected.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CHECKPOINT-MIB Number of rejected packets per second.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8ff79fb5ec1844ff9a502a81ec306f8b','0','2','0'), ('46805','20','get[1.3.6.1.4.1.2620.1.1.12.{#SNMPINDEX}]','10613','Check Point Firewall: SIC Trust State{#SINGLETON}','fw.sic.trust.state[fwSICTrustState.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,'1185','','','0','','','','','2',NULL,'MIB: CHECKPOINT-MIB Firewall SIC Trust State.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','85d1ffccfcf44f41965efa37cbc21c61','0','2','0'), ('46806','20','get[1.3.6.1.4.1.2620.1.1.25.26.{#SNMPINDEX}]','10613','Check Point Firewall: Utilized drops number per second{#SINGLETON}','fw.utilized.drops[fwFullyUtilizedDrops.{#SNMPINDEX}]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CHECKPOINT-MIB Number of dropped packets per second due to instance being fully utilized.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','589e8b27a2174380a8fee1080bd36471','0','2','0'), ('46807','20','discovery[{#MAJOR},1.3.6.1.4.1.2620.1.1.22,{#MINOR},1.3.6.1.4.1.2620.1.1.23]','10613','Check Point Firewall: Firewall version{#SINGLETON}','fw.version[fwVersion.{#SNMPINDEX}]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CHECKPOINT-MIB Current version of the firewall.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f752805cc45647f290f32085edbb6843','0','2','0'), ('46845','21','','10614','Get frequent metrics','oci.aut.db.metrics.frequent.get','1m','0','0','0','4','','','','',NULL,NULL,E'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function OCI(service, action, params) { this.zabbixLogPrefix = ''[ OCI ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.hash = function (string) { return sha256(string); }; this.sign = function (string) { return sign(''sha256'', params[''private_key''], string); }; this.encode = function (hash) { const hexArr = hash.match(/.{1,2}/g); var uInt8Array = new Uint8Array(hexArr.length); hexArr.forEach(function (hex, idx) { uInt8Array[idx] = parseInt(hex, 16); }); return btoa(uInt8Array); }; this.getDate = function () { const weekdayShortList = [''Sun'', ''Mon'', ''Tue'', ''Wed'', ''Thu'', ''Fri'', ''Sat'']; const monthShortList = [''jan'', ''feb'', ''mar'', ''apr'', ''may'', ''jun'', ''jul'', ''aug'', ''sep'', ''oct'', ''nov'', ''dec'']; const today = new Date(); return weekdayShortList[today.getUTCDay()] + '', '' + today.getUTCDate() + '' '' + monthShortList[today.getUTCMonth()] + '' '' + today.getUTCFullYear() + '' '' + today.getUTCHours() + '':'' + today.getUTCMinutes() + '':'' + today.getUTCSeconds() + '' GMT''; }; this.executeRequest = function (httpMethod, apiPath, apiParams, mql, namespace) { var headers = ''(request-target) date host''; const contentTypeHeader = ''content-type: application/json''; const dateHeader = ''date: '' + this.getDate(); const hostHeader = ''host: '' + params[''api_host'']; const requestTarget = ''(request-target): '' + httpMethod + '' '' + apiPath + apiParams; var signingString = requestTarget + ''\\n'' + dateHeader + ''\\n'' + hostHeader; var reqHeaders = [contentTypeHeader, dateHeader]; if (httpMethod === ''post'') { var body = JSON.stringify({ ''namespace'': namespace, ''query'': mql }); headers = headers + '' x-content-sha256 content-type content-length''; const bodyHeader = ''x-content-sha256: '' + this.encode(this.hash(body)); const bodyLengthHeader = ''content-length: '' + body.length; signingString = signingString + ''\\n'' + bodyHeader + ''\\n'' + contentTypeHeader + ''\\n'' + bodyLengthHeader; reqHeaders.push(bodyHeader, bodyLengthHeader); } const signature = this.encode(this.sign(signingString)); reqHeaders.push(''Authorization: Signature version="1",keyId="'' + params[''tenancy_ocid''] + ''/'' + params[''user_ocid''] + ''/'' + params[''fingerprint''] + ''",algorithm="rsa-sha256",headers="'' + headers + ''",signature="'' + signature + ''"''); for (var header = 0, headerLength = reqHeaders.length; header < headerLength; header++) { this.request.addHeader(reqHeaders[header]); } if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } if (httpMethod === ''post'') { var apiRateLimitExceeded = false; do { const response = this.request.post(''https://'' + params[''api_host''] + apiPath + apiParams, body); try { if (JSON.parse(response)[''code''] === ''TooManyRequests'') { apiRateLimitExceeded = true; Zabbix.sleep(1000); } else { apiRateLimitExceeded = false; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the response: '' + JSON.stringify(response)); throw ''Could not parse the response. See logs for more information.''; } } while (apiRateLimitExceeded); } else { const response = this.request.get(''https://'' + params[''api_host''] + apiPath + apiParams); } this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (httpMethod, data, keys, compartment) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } if (typeof keys == ''object'') { var returnBuffer = []; for (var dataObj = 0, dataLength = data.length; dataObj < dataLength; dataObj++) { var objectBuffer = {}; for (var key = 0, keysLength = keys.length; key < keysLength; key++) { if (data[dataObj][keys[key]] || data[dataObj][keys[key]] == null) { objectBuffer[keys[key].match(/^[a-z]+$|[A-Z][a-z]+$/)[0].toLowerCase()] = data[dataObj][keys[key]]; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Received an unexpected JSON object. Could not get value for key "'' + keys[key] + ''" in JSON: '' + JSON.stringify(data[dataObj])); throw ''Received an unexpected JSON object. See logs for more information.''; } } if (typeof compartment != ''undefined'' && compartment != '''') objectBuffer[''compartment''] = compartment; returnBuffer.push(objectBuffer); } return returnBuffer; } try { if (httpMethod === ''get'') { return data[keys]; } else { if (data.length === 0) { return 0; } data = data[0][keys]; return data[data.length - 1][''value'']; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not find key "'' + keys + ''" in JSON: '' + JSON.stringify(data)); throw ''Could not find required key in JSON object. See logs for more information.''; } }; } function buildMql(id, metrics, defaultStatistic, resourceType) { resourceType = resourceType === '''' || resourceType === undefined ? ''resourceId'' : resourceType; this.query = ''['' + params[''req_interval''] + ''m]{'' + resourceType + ''='' + id + ''}.''; for (var i = 0, metricsLength = metrics.length; i < metricsLength; i++) { const metric = ((Array.isArray(metrics[i]) ? metrics[i] : [metrics[i], defaultStatistic])); metrics[i] = [metric[0], this.query + metric[1]]; } } const params = JSON.parse(value); validateZabbixParams([''tenancy_ocid'', ''user_ocid'', ''private_key'', ''fingerprint'', ''api_host'', ''db_id'', ''http_status_code'', ''req_interval'', ''compartment_id''], params); var oci = new OCI(''Autonomous DB'', ''Get metrics '' + params[''req_interval''] + ''m'', params); const metrics = [ [''CpuTime'', ''mean''], [''CpuUtilization'', ''mean''], [''CurrentLogons'', ''count''], ''DBBlockChanges'', [''DBTime'', ''mean''], ''ExecuteCount'', ''FailedConnections'', [''FailedLogons'', ''mean''], ''HardParseCount'', ''LogicalReads'', ''ParseCount'', ''ParseFailureCount'', ''PhysicalReads'', ''PhysicalReadTotalBytes'', ''PhysicalWrites'', ''PhysicalWriteTotalBytes'', ''QueuedStatements'', ''RedoGenerated'', [''RunningStatements'', ''mean''], ''Sessions'', ''SQLNetBytesFromClient'', ''SQLNetBytesFromDBLink'', ''SQLNetBytesToClient'', ''SQLNetBytesToDBLink'', ''TransactionCount'', ''UserCalls'', ''UserCommits'', ''UserRollbacks'', [''WaitTime'', ''mean''] ]; buildMql(params[''db_id''], metrics, ''sum''); var result = {}; for (var i = 0, metricsLength = metrics.length; i < metricsLength; i++) { result[metrics[i][0]] = oci.extractData(''post'', oci.executeRequest(''post'', ''/20180401/metrics/actions/summarizeMetricsData'', ''?compartmentId='' + encodeURIComponent(params[''compartment_id'']), metrics[i][0] + metrics[i][1] + ''()'', ''oci_autonomous_database''), ''aggregatedDatapoints''); } return JSON.stringify(result);','','0','','','','','0',NULL,'Gets all metrics related to the database that have a collection frequency of 1 minute.','0','7d','0','',NULL,'30s','','','','200','1','0','','','0','0','0','0','0','0','0','6104537179324cb48d82e05d64f3a19f','0','2','0'), ('46846','21','','10614','Get database stats','oci.aut.db.metrics.stats','5m','0','0','0','4','','','','',NULL,NULL,E'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function OCI(service, action, params) { this.zabbixLogPrefix = ''[ OCI ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.hash = function (string) { return sha256(string); }; this.sign = function (string) { return sign(''sha256'', params[''private_key''], string); }; this.encode = function (hash) { const hexArr = hash.match(/.{1,2}/g); var uInt8Array = new Uint8Array(hexArr.length); hexArr.forEach(function (hex, idx) { uInt8Array[idx] = parseInt(hex, 16); }); return btoa(uInt8Array); }; this.getDate = function () { const weekdayShortList = [''Sun'', ''Mon'', ''Tue'', ''Wed'', ''Thu'', ''Fri'', ''Sat'']; const monthShortList = [''jan'', ''feb'', ''mar'', ''apr'', ''may'', ''jun'', ''jul'', ''aug'', ''sep'', ''oct'', ''nov'', ''dec'']; const today = new Date(); return weekdayShortList[today.getUTCDay()] + '', '' + today.getUTCDate() + '' '' + monthShortList[today.getUTCMonth()] + '' '' + today.getUTCFullYear() + '' '' + today.getUTCHours() + '':'' + today.getUTCMinutes() + '':'' + today.getUTCSeconds() + '' GMT''; }; this.executeRequest = function (httpMethod, apiPath, apiParams, mql, namespace) { var headers = ''(request-target) date host''; const contentTypeHeader = ''content-type: application/json''; const dateHeader = ''date: '' + this.getDate(); const hostHeader = ''host: '' + params[''api_host'']; const requestTarget = ''(request-target): '' + httpMethod + '' '' + apiPath + apiParams; var signingString = requestTarget + ''\\n'' + dateHeader + ''\\n'' + hostHeader; var reqHeaders = [contentTypeHeader, dateHeader]; if (httpMethod === ''post'') { var body = JSON.stringify({ ''namespace'': namespace, ''query'': mql }); headers = headers + '' x-content-sha256 content-type content-length''; const bodyHeader = ''x-content-sha256: '' + this.encode(this.hash(body)); const bodyLengthHeader = ''content-length: '' + body.length; signingString = signingString + ''\\n'' + bodyHeader + ''\\n'' + contentTypeHeader + ''\\n'' + bodyLengthHeader; reqHeaders.push(bodyHeader, bodyLengthHeader); } const signature = this.encode(this.sign(signingString)); reqHeaders.push(''Authorization: Signature version="1",keyId="'' + params[''tenancy_ocid''] + ''/'' + params[''user_ocid''] + ''/'' + params[''fingerprint''] + ''",algorithm="rsa-sha256",headers="'' + headers + ''",signature="'' + signature + ''"''); for (var header = 0, headerLength = reqHeaders.length; header < headerLength; header++) { this.request.addHeader(reqHeaders[header]); } if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } if (httpMethod === ''post'') { var apiRateLimitExceeded = false; do { const response = this.request.post(''https://'' + params[''api_host''] + apiPath + apiParams, body); try { if (JSON.parse(response)[''code''] === ''TooManyRequests'') { apiRateLimitExceeded = true; Zabbix.sleep(1000); } else { apiRateLimitExceeded = false; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the response: '' + JSON.stringify(response)); throw ''Could not parse the response. See logs for more information.''; } } while (apiRateLimitExceeded); } else { const response = this.request.get(''https://'' + params[''api_host''] + apiPath + apiParams); } this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (httpMethod, data, keys, compartment) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } if (typeof keys == ''object'') { var returnBuffer = []; for (var dataObj = 0, dataLength = data.length; dataObj < dataLength; dataObj++) { var objectBuffer = {}; for (var key = 0, keysLength = keys.length; key < keysLength; key++) { if (data[dataObj][keys[key]] || data[dataObj][keys[key]] == null) { objectBuffer[keys[key].match(/^[a-z]+$|[A-Z][a-z]+$/)[0].toLowerCase()] = data[dataObj][keys[key]]; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Received an unexpected JSON object. Could not get value for key "'' + keys[key] + ''" in JSON: '' + JSON.stringify(data[dataObj])); throw ''Received an unexpected JSON object. See logs for more information.''; } } if (typeof compartment != ''undefined'' && compartment != '''') objectBuffer[''compartment''] = compartment; returnBuffer.push(objectBuffer); } return returnBuffer; } try { if (httpMethod === ''get'') { return data[keys]; } else { if (data.length === 0) { return 0; } data = data[0][keys]; return data[data.length - 1][''value'']; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not find key "'' + keys + ''" in JSON: '' + JSON.stringify(data)); throw ''Could not find required key in JSON object. See logs for more information.''; } }; } function buildMql(id, metrics, defaultStatistic, resourceType) { resourceType = resourceType === '''' || resourceType === undefined ? ''resourceId'' : resourceType; this.query = ''['' + params[''req_interval''] + ''m]{'' + resourceType + ''='' + id + ''}.''; for (var i = 0, metricsLength = metrics.length; i < metricsLength; i++) { const metric = ((Array.isArray(metrics[i]) ? metrics[i] : [metrics[i], defaultStatistic])); metrics[i] = [metric[0], this.query + metric[1]]; } } const params = JSON.parse(value); validateZabbixParams([''tenancy_ocid'', ''user_ocid'', ''private_key'', ''fingerprint'', ''api_host'', ''db_id'', ''http_status_code'', ''req_interval'', ''compartment_id''], params); var oci = new OCI(''Autonomous DB'', ''Get metrics '' + params[''req_interval''] + ''m'', params); const metrics = [ [''DatabaseAvailability'', ''last''], ''ConnectionLatency'', ''QueryLatency'' ]; buildMql(params[''db_id''], metrics, ''max''); var result = {}; for (var i = 0, metricsLength = metrics.length; i < metricsLength; i++) { result[metrics[i][0]] = oci.extractData(''post'', oci.executeRequest(''post'', ''/20180401/metrics/actions/summarizeMetricsData'', ''?compartmentId='' + encodeURIComponent(params[''compartment_id'']), metrics[i][0] + metrics[i][1] + ''()'', ''oci_autonomous_database''), ''aggregatedDatapoints''); } return JSON.stringify(result);','','0','','','','','0',NULL,'Gets all metrics related to specific database that have a collection frequency of 5 minutes.','0','7d','0','',NULL,'30s','','','','200','1','0','','','0','0','0','0','0','0','0','87a25240776a4b8a9a17ac053b69fd99','0','2','0'), ('46847','21','','10614','Get storage stats','oci.aut.db.metrics.storage.stats','60m','0','0','0','4','','','','',NULL,NULL,E'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function OCI(service, action, params) { this.zabbixLogPrefix = ''[ OCI ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.hash = function (string) { return sha256(string); }; this.sign = function (string) { return sign(''sha256'', params[''private_key''], string); }; this.encode = function (hash) { const hexArr = hash.match(/.{1,2}/g); var uInt8Array = new Uint8Array(hexArr.length); hexArr.forEach(function (hex, idx) { uInt8Array[idx] = parseInt(hex, 16); }); return btoa(uInt8Array); }; this.getDate = function () { const weekdayShortList = [''Sun'', ''Mon'', ''Tue'', ''Wed'', ''Thu'', ''Fri'', ''Sat'']; const monthShortList = [''jan'', ''feb'', ''mar'', ''apr'', ''may'', ''jun'', ''jul'', ''aug'', ''sep'', ''oct'', ''nov'', ''dec'']; const today = new Date(); return weekdayShortList[today.getUTCDay()] + '', '' + today.getUTCDate() + '' '' + monthShortList[today.getUTCMonth()] + '' '' + today.getUTCFullYear() + '' '' + today.getUTCHours() + '':'' + today.getUTCMinutes() + '':'' + today.getUTCSeconds() + '' GMT''; }; this.executeRequest = function (httpMethod, apiPath, apiParams, mql, namespace) { var headers = ''(request-target) date host''; const contentTypeHeader = ''content-type: application/json''; const dateHeader = ''date: '' + this.getDate(); const hostHeader = ''host: '' + params[''api_host'']; const requestTarget = ''(request-target): '' + httpMethod + '' '' + apiPath + apiParams; var signingString = requestTarget + ''\\n'' + dateHeader + ''\\n'' + hostHeader; var reqHeaders = [contentTypeHeader, dateHeader]; if (httpMethod === ''post'') { var body = JSON.stringify({ ''namespace'': namespace, ''query'': mql }); headers = headers + '' x-content-sha256 content-type content-length''; const bodyHeader = ''x-content-sha256: '' + this.encode(this.hash(body)); const bodyLengthHeader = ''content-length: '' + body.length; signingString = signingString + ''\\n'' + bodyHeader + ''\\n'' + contentTypeHeader + ''\\n'' + bodyLengthHeader; reqHeaders.push(bodyHeader, bodyLengthHeader); } const signature = this.encode(this.sign(signingString)); reqHeaders.push(''Authorization: Signature version="1",keyId="'' + params[''tenancy_ocid''] + ''/'' + params[''user_ocid''] + ''/'' + params[''fingerprint''] + ''",algorithm="rsa-sha256",headers="'' + headers + ''",signature="'' + signature + ''"''); for (var header = 0, headerLength = reqHeaders.length; header < headerLength; header++) { this.request.addHeader(reqHeaders[header]); } if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } if (httpMethod === ''post'') { var apiRateLimitExceeded = false; do { const response = this.request.post(''https://'' + params[''api_host''] + apiPath + apiParams, body); try { if (JSON.parse(response)[''code''] === ''TooManyRequests'') { apiRateLimitExceeded = true; Zabbix.sleep(1000); } else { apiRateLimitExceeded = false; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the response: '' + JSON.stringify(response)); throw ''Could not parse the response. See logs for more information.''; } } while (apiRateLimitExceeded); } else { const response = this.request.get(''https://'' + params[''api_host''] + apiPath + apiParams); } this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (httpMethod, data, keys, compartment) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } if (typeof keys == ''object'') { var returnBuffer = []; for (var dataObj = 0, dataLength = data.length; dataObj < dataLength; dataObj++) { var objectBuffer = {}; for (var key = 0, keysLength = keys.length; key < keysLength; key++) { if (data[dataObj][keys[key]] || data[dataObj][keys[key]] == null) { objectBuffer[keys[key].match(/^[a-z]+$|[A-Z][a-z]+$/)[0].toLowerCase()] = data[dataObj][keys[key]]; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Received an unexpected JSON object. Could not get value for key "'' + keys[key] + ''" in JSON: '' + JSON.stringify(data[dataObj])); throw ''Received an unexpected JSON object. See logs for more information.''; } } if (typeof compartment != ''undefined'' && compartment != '''') objectBuffer[''compartment''] = compartment; returnBuffer.push(objectBuffer); } return returnBuffer; } try { if (httpMethod === ''get'') { return data[keys]; } else { if (data.length === 0) { return 0; } data = data[0][keys]; return data[data.length - 1][''value'']; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not find key "'' + keys + ''" in JSON: '' + JSON.stringify(data)); throw ''Could not find required key in JSON object. See logs for more information.''; } }; } function buildMql(id, metrics, defaultStatistic, resourceType) { resourceType = resourceType === '''' || resourceType === undefined ? ''resourceId'' : resourceType; this.query = ''['' + params[''req_interval''] + ''m]{'' + resourceType + ''='' + id + ''}.''; for (var i = 0, metricsLength = metrics.length; i < metricsLength; i++) { const metric = ((Array.isArray(metrics[i]) ? metrics[i] : [metrics[i], defaultStatistic])); metrics[i] = [metric[0], this.query + metric[1]]; } } const params = JSON.parse(value); validateZabbixParams([''tenancy_ocid'', ''user_ocid'', ''private_key'', ''fingerprint'', ''api_host'', ''db_id'', ''http_status_code'', ''req_interval'', ''compartment_id''], params); var oci = new OCI(''Autonomous DB'', ''Get metrics '' + params[''req_interval''] + ''m'', params); const metrics = [ ''StorageAllocated'', ''StorageMax'', ''StorageUsed'', [''StorageUtilization'', ''mean''] ]; buildMql(params[''db_id''], metrics, ''max''); var result = {}; for (var i = 0, metricsLength = metrics.length; i < metricsLength; i++) { result[metrics[i][0]] = oci.extractData(''post'', oci.executeRequest(''post'', ''/20180401/metrics/actions/summarizeMetricsData'', ''?compartmentId='' + encodeURIComponent(params[''compartment_id'']), metrics[i][0] + metrics[i][1] + ''()'', ''oci_autonomous_database''), ''aggregatedDatapoints''); } return JSON.stringify(result);','','0','','','','','0',NULL,'Gets all storage metrics related to a specific database that have a collection frequency of 60 minutes.','0','7d','0','',NULL,'30s','','','','200','1','0','','','0','0','0','0','0','0','0','cb2936c594e4450096559b3023f6aa4f','0','2','0'), ('46848','21','','10614','State','oci.aut.db.state','1m','31d','365d','0','3','','','','',NULL,'1196',E'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function OCI(service, action, params) { this.zabbixLogPrefix = ''[ OCI ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.hash = function (string) { return sha256(string); }; this.sign = function (string) { return sign(''sha256'', params[''private_key''], string); }; this.encode = function (hash) { const hexArr = hash.match(/.{1,2}/g); var uInt8Array = new Uint8Array(hexArr.length); hexArr.forEach(function (hex, idx) { uInt8Array[idx] = parseInt(hex, 16); }); return btoa(uInt8Array); }; this.getDate = function () { const weekdayShortList = [''Sun'', ''Mon'', ''Tue'', ''Wed'', ''Thu'', ''Fri'', ''Sat'']; const monthShortList = [''jan'', ''feb'', ''mar'', ''apr'', ''may'', ''jun'', ''jul'', ''aug'', ''sep'', ''oct'', ''nov'', ''dec'']; const today = new Date(); return weekdayShortList[today.getUTCDay()] + '', '' + today.getUTCDate() + '' '' + monthShortList[today.getUTCMonth()] + '' '' + today.getUTCFullYear() + '' '' + today.getUTCHours() + '':'' + today.getUTCMinutes() + '':'' + today.getUTCSeconds() + '' GMT''; }; this.executeRequest = function (httpMethod, apiPath, apiParams, mql, namespace) { var headers = ''(request-target) date host''; const contentTypeHeader = ''content-type: application/json''; const dateHeader = ''date: '' + this.getDate(); const hostHeader = ''host: '' + params[''api_host'']; const requestTarget = ''(request-target): '' + httpMethod + '' '' + apiPath + apiParams; var signingString = requestTarget + ''\\n'' + dateHeader + ''\\n'' + hostHeader; var reqHeaders = [contentTypeHeader, dateHeader]; if (httpMethod === ''post'') { var body = JSON.stringify({ ''namespace'': namespace, ''query'': mql }); headers = headers + '' x-content-sha256 content-type content-length''; const bodyHeader = ''x-content-sha256: '' + this.encode(this.hash(body)); const bodyLengthHeader = ''content-length: '' + body.length; signingString = signingString + ''\\n'' + bodyHeader + ''\\n'' + contentTypeHeader + ''\\n'' + bodyLengthHeader; reqHeaders.push(bodyHeader, bodyLengthHeader); } const signature = this.encode(this.sign(signingString)); reqHeaders.push(''Authorization: Signature version="1",keyId="'' + params[''tenancy_ocid''] + ''/'' + params[''user_ocid''] + ''/'' + params[''fingerprint''] + ''",algorithm="rsa-sha256",headers="'' + headers + ''",signature="'' + signature + ''"''); for (var header = 0, headerLength = reqHeaders.length; header < headerLength; header++) { this.request.addHeader(reqHeaders[header]); } if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } if (httpMethod === ''post'') { var apiRateLimitExceeded = false; do { const response = this.request.post(''https://'' + params[''api_host''] + apiPath + apiParams, body); try { if (JSON.parse(response)[''code''] === ''TooManyRequests'') { apiRateLimitExceeded = true; Zabbix.sleep(1000); } else { apiRateLimitExceeded = false; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the response: '' + JSON.stringify(response)); throw ''Could not parse the response. See logs for more information.''; } } while (apiRateLimitExceeded); } else { const response = this.request.get(''https://'' + params[''api_host''] + apiPath + apiParams); } this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (httpMethod, data, keys, compartment) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } if (typeof keys == ''object'') { var returnBuffer = []; for (var dataObj = 0, dataLength = data.length; dataObj < dataLength; dataObj++) { var objectBuffer = {}; for (var key = 0, keysLength = keys.length; key < keysLength; key++) { if (data[dataObj][keys[key]] || data[dataObj][keys[key]] == null) { objectBuffer[keys[key].match(/^[a-z]+$|[A-Z][a-z]+$/)[0].toLowerCase()] = data[dataObj][keys[key]]; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Received an unexpected JSON object. Could not get value for key "'' + keys[key] + ''" in JSON: '' + JSON.stringify(data[dataObj])); throw ''Received an unexpected JSON object. See logs for more information.''; } } if (typeof compartment != ''undefined'' && compartment != '''') objectBuffer[''compartment''] = compartment; returnBuffer.push(objectBuffer); } return returnBuffer; } try { if (httpMethod === ''get'') { return data[keys]; } else { if (data.length === 0) { return 0; } data = data[0][keys]; return data[data.length - 1][''value'']; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not find key "'' + keys + ''" in JSON: '' + JSON.stringify(data)); throw ''Could not find required key in JSON object. See logs for more information.''; } }; } const params = JSON.parse(value); validateZabbixParams([''tenancy_ocid'', ''user_ocid'', ''private_key'', ''fingerprint'', ''api_host'', ''db_id'', ''http_status_code''], params); var oci = new OCI(''Autonomous DB'', ''Get state'', params); return oci.extractData(''get'', oci.executeRequest(''get'', ''/20160918/autonomousDatabases/'' + encodeURIComponent(params[''db_id'']), ''''), ''lifecycleState'');','','0','','','','','0',NULL,'Gets the autonomous database state.','0','7d','0','',NULL,'10s','','','','200','1','0','','','0','0','0','0','0','0','0','48d69be6970c41fcb110f18e18ff6387','0','2','0'), ('46849','21','','10615','Get metrics','oci.block.volume.metrics.get','1m','0','0','0','4','','','','',NULL,NULL,E'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function OCI(service, action, params) { this.zabbixLogPrefix = ''[ OCI ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.hash = function (string) { return sha256(string); }; this.sign = function (string) { return sign(''sha256'', params[''private_key''], string); }; this.encode = function (hash) { const hexArr = hash.match(/.{1,2}/g); var uInt8Array = new Uint8Array(hexArr.length); hexArr.forEach(function (hex, idx) { uInt8Array[idx] = parseInt(hex, 16); }); return btoa(uInt8Array); }; this.getDate = function () { const weekdayShortList = [''Sun'', ''Mon'', ''Tue'', ''Wed'', ''Thu'', ''Fri'', ''Sat'']; const monthShortList = [''jan'', ''feb'', ''mar'', ''apr'', ''may'', ''jun'', ''jul'', ''aug'', ''sep'', ''oct'', ''nov'', ''dec'']; const today = new Date(); return weekdayShortList[today.getUTCDay()] + '', '' + today.getUTCDate() + '' '' + monthShortList[today.getUTCMonth()] + '' '' + today.getUTCFullYear() + '' '' + today.getUTCHours() + '':'' + today.getUTCMinutes() + '':'' + today.getUTCSeconds() + '' GMT''; }; this.executeRequest = function (httpMethod, apiPath, apiParams, mql, namespace) { var headers = ''(request-target) date host''; const contentTypeHeader = ''content-type: application/json''; const dateHeader = ''date: '' + this.getDate(); const hostHeader = ''host: '' + params[''api_host'']; const requestTarget = ''(request-target): '' + httpMethod + '' '' + apiPath + apiParams; var signingString = requestTarget + ''\\n'' + dateHeader + ''\\n'' + hostHeader; var reqHeaders = [contentTypeHeader, dateHeader]; if (httpMethod === ''post'') { var body = JSON.stringify({ ''namespace'': namespace, ''query'': mql }); headers = headers + '' x-content-sha256 content-type content-length''; const bodyHeader = ''x-content-sha256: '' + this.encode(this.hash(body)); const bodyLengthHeader = ''content-length: '' + body.length; signingString = signingString + ''\\n'' + bodyHeader + ''\\n'' + contentTypeHeader + ''\\n'' + bodyLengthHeader; reqHeaders.push(bodyHeader, bodyLengthHeader); } const signature = this.encode(this.sign(signingString)); reqHeaders.push(''Authorization: Signature version="1",keyId="'' + params[''tenancy_ocid''] + ''/'' + params[''user_ocid''] + ''/'' + params[''fingerprint''] + ''",algorithm="rsa-sha256",headers="'' + headers + ''",signature="'' + signature + ''"''); for (var header = 0, headerLength = reqHeaders.length; header < headerLength; header++) { this.request.addHeader(reqHeaders[header]); } if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } if (httpMethod === ''post'') { var apiRateLimitExceeded = false; do { const response = this.request.post(''https://'' + params[''api_host''] + apiPath + apiParams, body); try { if (JSON.parse(response)[''code''] === ''TooManyRequests'') { apiRateLimitExceeded = true; Zabbix.sleep(1000); } else { apiRateLimitExceeded = false; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the response: '' + JSON.stringify(response)); throw ''Could not parse the response. See logs for more information.''; } } while (apiRateLimitExceeded); } else { const response = this.request.get(''https://'' + params[''api_host''] + apiPath + apiParams); } this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (httpMethod, data, keys, compartment) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } if (typeof keys == ''object'') { var returnBuffer = []; for (var dataObj = 0, dataLength = data.length; dataObj < dataLength; dataObj++) { var objectBuffer = {}; for (var key = 0, keysLength = keys.length; key < keysLength; key++) { if (data[dataObj][keys[key]] || data[dataObj][keys[key]] == null) { objectBuffer[keys[key].match(/^[a-z]+$|[A-Z][a-z]+$/)[0].toLowerCase()] = data[dataObj][keys[key]]; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Received an unexpected JSON object. Could not get value for key "'' + keys[key] + ''" in JSON: '' + JSON.stringify(data[dataObj])); throw ''Received an unexpected JSON object. See logs for more information.''; } } if (typeof compartment != ''undefined'' && compartment != '''') objectBuffer[''compartment''] = compartment; returnBuffer.push(objectBuffer); } return returnBuffer; } try { if (httpMethod === ''get'') { return data[keys]; } else { if (data.length === 0) { return 0; } data = data[0][keys]; return data[data.length - 1][''value'']; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not find key "'' + keys + ''" in JSON: '' + JSON.stringify(data)); throw ''Could not find required key in JSON object. See logs for more information.''; } }; } function buildMql(id, metrics, defaultStatistic, resourceType) { resourceType = resourceType === '''' || resourceType === undefined ? ''resourceId'' : resourceType; this.query = ''['' + params[''req_interval''] + ''m]{'' + resourceType + ''='' + id + ''}.''; for (var i = 0, metricsLength = metrics.length; i < metricsLength; i++) { const metric = ((Array.isArray(metrics[i]) ? metrics[i] : [metrics[i], defaultStatistic])); metrics[i] = [metric[0], this.query + metric[1]]; } } const params = JSON.parse(value); validateZabbixParams([''tenancy_ocid'', ''user_ocid'', ''private_key'', ''fingerprint'', ''api_host'', ''volume_id'', ''http_status_code'', ''req_interval'', ''compartment_id''], params); var oci = new OCI(''Block volume'', ''Get metrics'', params); const metrics = [ ''VolumeReadThroughput'', ''VolumeWriteThroughput'', ''VolumeReadOps'', ''VolumeWriteOps'', [''VolumeThrottledIOs'', ''sum''], ''VolumeGuaranteedVPUsPerGB'', ''VolumeGuaranteedIOPS'', ''VolumeGuaranteedThroughput'' ]; buildMql(params[''volume_id''], metrics, ''mean''); var result = {}; for (var i = 0, metricsLength = metrics.length; i < metricsLength; i++) { result[metrics[i][0]] = oci.extractData(''post'', oci.executeRequest(''post'', ''/20180401/metrics/actions/summarizeMetricsData'', ''?compartmentId='' + encodeURIComponent(params[''compartment_id'']), metrics[i][0] + metrics[i][1] + ''()'', ''oci_blockstore''), ''aggregatedDatapoints''); } return JSON.stringify(result);','','0','','','','','0',NULL,'Gets block volume metrics.','0','7d','0','',NULL,'30s','','','','200','1','0','','','0','0','0','0','0','0','0','5c1d0fd1686e4c74b33dbe12956d7b7c','0','2','0'), ('46850','21','','10615','State','oci.block.volume.state','1m','31d','365d','0','3','','','','',NULL,'1198',E'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function OCI(service, action, params) { this.zabbixLogPrefix = ''[ OCI ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.hash = function (string) { return sha256(string); }; this.sign = function (string) { return sign(''sha256'', params[''private_key''], string); }; this.encode = function (hash) { const hexArr = hash.match(/.{1,2}/g); var uInt8Array = new Uint8Array(hexArr.length); hexArr.forEach(function (hex, idx) { uInt8Array[idx] = parseInt(hex, 16); }); return btoa(uInt8Array); }; this.getDate = function () { const weekdayShortList = [''Sun'', ''Mon'', ''Tue'', ''Wed'', ''Thu'', ''Fri'', ''Sat'']; const monthShortList = [''jan'', ''feb'', ''mar'', ''apr'', ''may'', ''jun'', ''jul'', ''aug'', ''sep'', ''oct'', ''nov'', ''dec'']; const today = new Date(); return weekdayShortList[today.getUTCDay()] + '', '' + today.getUTCDate() + '' '' + monthShortList[today.getUTCMonth()] + '' '' + today.getUTCFullYear() + '' '' + today.getUTCHours() + '':'' + today.getUTCMinutes() + '':'' + today.getUTCSeconds() + '' GMT''; }; this.executeRequest = function (httpMethod, apiPath, apiParams, mql, namespace) { var headers = ''(request-target) date host''; const contentTypeHeader = ''content-type: application/json''; const dateHeader = ''date: '' + this.getDate(); const hostHeader = ''host: '' + params[''api_host'']; const requestTarget = ''(request-target): '' + httpMethod + '' '' + apiPath + apiParams; var signingString = requestTarget + ''\\n'' + dateHeader + ''\\n'' + hostHeader; var reqHeaders = [contentTypeHeader, dateHeader]; if (httpMethod === ''post'') { var body = JSON.stringify({ ''namespace'': namespace, ''query'': mql }); headers = headers + '' x-content-sha256 content-type content-length''; const bodyHeader = ''x-content-sha256: '' + this.encode(this.hash(body)); const bodyLengthHeader = ''content-length: '' + body.length; signingString = signingString + ''\\n'' + bodyHeader + ''\\n'' + contentTypeHeader + ''\\n'' + bodyLengthHeader; reqHeaders.push(bodyHeader, bodyLengthHeader); } const signature = this.encode(this.sign(signingString)); reqHeaders.push(''Authorization: Signature version="1",keyId="'' + params[''tenancy_ocid''] + ''/'' + params[''user_ocid''] + ''/'' + params[''fingerprint''] + ''",algorithm="rsa-sha256",headers="'' + headers + ''",signature="'' + signature + ''"''); for (var header = 0, headerLength = reqHeaders.length; header < headerLength; header++) { this.request.addHeader(reqHeaders[header]); } if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } if (httpMethod === ''post'') { var apiRateLimitExceeded = false; do { const response = this.request.post(''https://'' + params[''api_host''] + apiPath + apiParams, body); try { if (JSON.parse(response)[''code''] === ''TooManyRequests'') { apiRateLimitExceeded = true; Zabbix.sleep(1000); } else { apiRateLimitExceeded = false; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the response: '' + JSON.stringify(response)); throw ''Could not parse the response. See logs for more information.''; } } while (apiRateLimitExceeded); } else { const response = this.request.get(''https://'' + params[''api_host''] + apiPath + apiParams); } this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (httpMethod, data, keys, compartment) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } if (typeof keys == ''object'') { var returnBuffer = []; for (var dataObj = 0, dataLength = data.length; dataObj < dataLength; dataObj++) { var objectBuffer = {}; for (var key = 0, keysLength = keys.length; key < keysLength; key++) { if (data[dataObj][keys[key]] || data[dataObj][keys[key]] == null) { objectBuffer[keys[key].match(/^[a-z]+$|[A-Z][a-z]+$/)[0].toLowerCase()] = data[dataObj][keys[key]]; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Received an unexpected JSON object. Could not get value for key "'' + keys[key] + ''" in JSON: '' + JSON.stringify(data[dataObj])); throw ''Received an unexpected JSON object. See logs for more information.''; } } if (typeof compartment != ''undefined'' && compartment != '''') objectBuffer[''compartment''] = compartment; returnBuffer.push(objectBuffer); } return returnBuffer; } try { if (httpMethod === ''get'') { return data[keys]; } else { if (data.length === 0) { return 0; } data = data[0][keys]; return data[data.length - 1][''value'']; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not find key "'' + keys + ''" in JSON: '' + JSON.stringify(data)); throw ''Could not find required key in JSON object. See logs for more information.''; } }; } const params = JSON.parse(value); validateZabbixParams([''tenancy_ocid'', ''user_ocid'', ''private_key'', ''fingerprint'', ''api_host'', ''volume_id'', ''http_status_code''], params); var oci = new OCI(''Block volume'', ''Get volume state'', params); return oci.extractData(''get'', oci.executeRequest(''get'', ''/20160918/volumes/'' + encodeURIComponent(params[''volume_id'']), ''''), ''lifecycleState'');','','0','','','','','0',NULL,'Gets the block volume state.','0','7d','0','',NULL,'10s','','','','200','1','0','','','0','0','0','0','0','0','0','4fdab3067ada41219c8208862e7c8b14','0','2','0'), ('46851','21','','10616','Get metrics','oci.boot.volume.metrics.get','1m','0','0','0','4','','','','',NULL,NULL,E'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function OCI(service, action, params) { this.zabbixLogPrefix = ''[ OCI ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.hash = function (string) { return sha256(string); }; this.sign = function (string) { return sign(''sha256'', params[''private_key''], string); }; this.encode = function (hash) { const hexArr = hash.match(/.{1,2}/g); var uInt8Array = new Uint8Array(hexArr.length); hexArr.forEach(function (hex, idx) { uInt8Array[idx] = parseInt(hex, 16); }); return btoa(uInt8Array); }; this.getDate = function () { const weekdayShortList = [''Sun'', ''Mon'', ''Tue'', ''Wed'', ''Thu'', ''Fri'', ''Sat'']; const monthShortList = [''jan'', ''feb'', ''mar'', ''apr'', ''may'', ''jun'', ''jul'', ''aug'', ''sep'', ''oct'', ''nov'', ''dec'']; const today = new Date(); return weekdayShortList[today.getUTCDay()] + '', '' + today.getUTCDate() + '' '' + monthShortList[today.getUTCMonth()] + '' '' + today.getUTCFullYear() + '' '' + today.getUTCHours() + '':'' + today.getUTCMinutes() + '':'' + today.getUTCSeconds() + '' GMT''; }; this.executeRequest = function (httpMethod, apiPath, apiParams, mql, namespace) { var headers = ''(request-target) date host''; const contentTypeHeader = ''content-type: application/json''; const dateHeader = ''date: '' + this.getDate(); const hostHeader = ''host: '' + params[''api_host'']; const requestTarget = ''(request-target): '' + httpMethod + '' '' + apiPath + apiParams; var signingString = requestTarget + ''\\n'' + dateHeader + ''\\n'' + hostHeader; var reqHeaders = [contentTypeHeader, dateHeader]; if (httpMethod === ''post'') { var body = JSON.stringify({ ''namespace'': namespace, ''query'': mql }); headers = headers + '' x-content-sha256 content-type content-length''; const bodyHeader = ''x-content-sha256: '' + this.encode(this.hash(body)); const bodyLengthHeader = ''content-length: '' + body.length; signingString = signingString + ''\\n'' + bodyHeader + ''\\n'' + contentTypeHeader + ''\\n'' + bodyLengthHeader; reqHeaders.push(bodyHeader, bodyLengthHeader); } const signature = this.encode(this.sign(signingString)); reqHeaders.push(''Authorization: Signature version="1",keyId="'' + params[''tenancy_ocid''] + ''/'' + params[''user_ocid''] + ''/'' + params[''fingerprint''] + ''",algorithm="rsa-sha256",headers="'' + headers + ''",signature="'' + signature + ''"''); for (var header = 0, headerLength = reqHeaders.length; header < headerLength; header++) { this.request.addHeader(reqHeaders[header]); } if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } if (httpMethod === ''post'') { var apiRateLimitExceeded = false; do { const response = this.request.post(''https://'' + params[''api_host''] + apiPath + apiParams, body); try { if (JSON.parse(response)[''code''] === ''TooManyRequests'') { apiRateLimitExceeded = true; Zabbix.sleep(1000); } else { apiRateLimitExceeded = false; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the response: '' + JSON.stringify(response)); throw ''Could not parse the response. See logs for more information.''; } } while (apiRateLimitExceeded); } else { const response = this.request.get(''https://'' + params[''api_host''] + apiPath + apiParams); } this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (httpMethod, data, keys, compartment) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } if (typeof keys == ''object'') { var returnBuffer = []; for (var dataObj = 0, dataLength = data.length; dataObj < dataLength; dataObj++) { var objectBuffer = {}; for (var key = 0, keysLength = keys.length; key < keysLength; key++) { if (data[dataObj][keys[key]] || data[dataObj][keys[key]] == null) { objectBuffer[keys[key].match(/^[a-z]+$|[A-Z][a-z]+$/)[0].toLowerCase()] = data[dataObj][keys[key]]; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Received an unexpected JSON object. Could not get value for key "'' + keys[key] + ''" in JSON: '' + JSON.stringify(data[dataObj])); throw ''Received an unexpected JSON object. See logs for more information.''; } } if (typeof compartment != ''undefined'' && compartment != '''') objectBuffer[''compartment''] = compartment; returnBuffer.push(objectBuffer); } return returnBuffer; } try { if (httpMethod === ''get'') { return data[keys]; } else { if (data.length === 0) { return 0; } data = data[0][keys]; return data[data.length - 1][''value'']; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not find key "'' + keys + ''" in JSON: '' + JSON.stringify(data)); throw ''Could not find required key in JSON object. See logs for more information.''; } }; } function buildMql(id, metrics, defaultStatistic, resourceType) { resourceType = resourceType === '''' || resourceType === undefined ? ''resourceId'' : resourceType; this.query = ''['' + params[''req_interval''] + ''m]{'' + resourceType + ''='' + id + ''}.''; for (var i = 0, metricsLength = metrics.length; i < metricsLength; i++) { const metric = ((Array.isArray(metrics[i]) ? metrics[i] : [metrics[i], defaultStatistic])); metrics[i] = [metric[0], this.query + metric[1]]; } } const params = JSON.parse(value); validateZabbixParams([''tenancy_ocid'', ''user_ocid'', ''private_key'', ''fingerprint'', ''api_host'', ''volume_id'', ''http_status_code'', ''req_interval'', ''compartment_id''], params); var oci = new OCI(''Boot volume'', ''Get metrics'', params); const metrics = [ ''VolumeReadThroughput'', ''VolumeWriteThroughput'', ''VolumeReadOps'', ''VolumeWriteOps'', [''VolumeThrottledIOs'', ''sum''], ''VolumeGuaranteedVPUsPerGB'', ''VolumeGuaranteedIOPS'', ''VolumeGuaranteedThroughput'' ]; buildMql(params[''volume_id''], metrics, ''mean''); var result = {}; for (var i = 0, metricsLength = metrics.length; i < metricsLength; i++) { result[metrics[i][0]] = oci.extractData(''post'', oci.executeRequest(''post'', ''/20180401/metrics/actions/summarizeMetricsData'', ''?compartmentId='' + encodeURIComponent(params[''compartment_id'']), metrics[i][0] + metrics[i][1] + ''()'', ''oci_blockstore''), ''aggregatedDatapoints''); } return JSON.stringify(result);','','0','','','','','0',NULL,'Gets boot volume metrics.','0','7d','0','',NULL,'30s','','','','200','1','0','','','0','0','0','0','0','0','0','388e89b8e68149438d714237e785ccde','0','2','0'), ('46852','21','','10616','State','oci.boot.volume.state','1m','31d','365d','0','3','','','','',NULL,'1199',E'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function OCI(service, action, params) { this.zabbixLogPrefix = ''[ OCI ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.hash = function (string) { return sha256(string); }; this.sign = function (string) { return sign(''sha256'', params[''private_key''], string); }; this.encode = function (hash) { const hexArr = hash.match(/.{1,2}/g); var uInt8Array = new Uint8Array(hexArr.length); hexArr.forEach(function (hex, idx) { uInt8Array[idx] = parseInt(hex, 16); }); return btoa(uInt8Array); }; this.getDate = function () { const weekdayShortList = [''Sun'', ''Mon'', ''Tue'', ''Wed'', ''Thu'', ''Fri'', ''Sat'']; const monthShortList = [''jan'', ''feb'', ''mar'', ''apr'', ''may'', ''jun'', ''jul'', ''aug'', ''sep'', ''oct'', ''nov'', ''dec'']; const today = new Date(); return weekdayShortList[today.getUTCDay()] + '', '' + today.getUTCDate() + '' '' + monthShortList[today.getUTCMonth()] + '' '' + today.getUTCFullYear() + '' '' + today.getUTCHours() + '':'' + today.getUTCMinutes() + '':'' + today.getUTCSeconds() + '' GMT''; }; this.executeRequest = function (httpMethod, apiPath, apiParams, mql, namespace) { var headers = ''(request-target) date host''; const contentTypeHeader = ''content-type: application/json''; const dateHeader = ''date: '' + this.getDate(); const hostHeader = ''host: '' + params[''api_host'']; const requestTarget = ''(request-target): '' + httpMethod + '' '' + apiPath + apiParams; var signingString = requestTarget + ''\\n'' + dateHeader + ''\\n'' + hostHeader; var reqHeaders = [contentTypeHeader, dateHeader]; if (httpMethod === ''post'') { var body = JSON.stringify({ ''namespace'': namespace, ''query'': mql }); headers = headers + '' x-content-sha256 content-type content-length''; const bodyHeader = ''x-content-sha256: '' + this.encode(this.hash(body)); const bodyLengthHeader = ''content-length: '' + body.length; signingString = signingString + ''\\n'' + bodyHeader + ''\\n'' + contentTypeHeader + ''\\n'' + bodyLengthHeader; reqHeaders.push(bodyHeader, bodyLengthHeader); } const signature = this.encode(this.sign(signingString)); reqHeaders.push(''Authorization: Signature version="1",keyId="'' + params[''tenancy_ocid''] + ''/'' + params[''user_ocid''] + ''/'' + params[''fingerprint''] + ''",algorithm="rsa-sha256",headers="'' + headers + ''",signature="'' + signature + ''"''); for (var header = 0, headerLength = reqHeaders.length; header < headerLength; header++) { this.request.addHeader(reqHeaders[header]); } if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } if (httpMethod === ''post'') { var apiRateLimitExceeded = false; do { const response = this.request.post(''https://'' + params[''api_host''] + apiPath + apiParams, body); try { if (JSON.parse(response)[''code''] === ''TooManyRequests'') { apiRateLimitExceeded = true; Zabbix.sleep(1000); } else { apiRateLimitExceeded = false; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the response: '' + JSON.stringify(response)); throw ''Could not parse the response. See logs for more information.''; } } while (apiRateLimitExceeded); } else { const response = this.request.get(''https://'' + params[''api_host''] + apiPath + apiParams); } this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (httpMethod, data, keys, compartment) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } if (typeof keys == ''object'') { var returnBuffer = []; for (var dataObj = 0, dataLength = data.length; dataObj < dataLength; dataObj++) { var objectBuffer = {}; for (var key = 0, keysLength = keys.length; key < keysLength; key++) { if (data[dataObj][keys[key]] || data[dataObj][keys[key]] == null) { objectBuffer[keys[key].match(/^[a-z]+$|[A-Z][a-z]+$/)[0].toLowerCase()] = data[dataObj][keys[key]]; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Received an unexpected JSON object. Could not get value for key "'' + keys[key] + ''" in JSON: '' + JSON.stringify(data[dataObj])); throw ''Received an unexpected JSON object. See logs for more information.''; } } if (typeof compartment != ''undefined'' && compartment != '''') objectBuffer[''compartment''] = compartment; returnBuffer.push(objectBuffer); } return returnBuffer; } try { if (httpMethod === ''get'') { return data[keys]; } else { if (data.length === 0) { return 0; } data = data[0][keys]; return data[data.length - 1][''value'']; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not find key "'' + keys + ''" in JSON: '' + JSON.stringify(data)); throw ''Could not find required key in JSON object. See logs for more information.''; } }; } const params = JSON.parse(value); validateZabbixParams([''tenancy_ocid'', ''user_ocid'', ''private_key'', ''fingerprint'', ''api_host'', ''volume_id'', ''http_status_code''], params); var oci = new OCI(''Boot volume'', ''Get volume state'', params); return oci.extractData(''get'', oci.executeRequest(''get'', ''/20160918/bootVolumes/'' + encodeURIComponent(params[''volume_id'']), ''''), ''lifecycleState'');','','0','','','','','0',NULL,'Gets the boot volume state.','0','7d','0','',NULL,'10s','','','','200','1','0','','','0','0','0','0','0','0','0','3f0e4bed1fd14293b40b23595f01ebb1','0','2','0'), ('46853','21','','10618','Get instance availability','oci.compute.availability.get','5m','31d','365d','0','3','','','','',NULL,'1200',E'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function OCI(service, action, params) { this.zabbixLogPrefix = ''[ OCI ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.hash = function (string) { return sha256(string); }; this.sign = function (string) { return sign(''sha256'', params[''private_key''], string); }; this.encode = function (hash) { const hexArr = hash.match(/.{1,2}/g); var uInt8Array = new Uint8Array(hexArr.length); hexArr.forEach(function (hex, idx) { uInt8Array[idx] = parseInt(hex, 16); }); return btoa(uInt8Array); }; this.getDate = function () { const weekdayShortList = [''Sun'', ''Mon'', ''Tue'', ''Wed'', ''Thu'', ''Fri'', ''Sat'']; const monthShortList = [''jan'', ''feb'', ''mar'', ''apr'', ''may'', ''jun'', ''jul'', ''aug'', ''sep'', ''oct'', ''nov'', ''dec'']; const today = new Date(); return weekdayShortList[today.getUTCDay()] + '', '' + today.getUTCDate() + '' '' + monthShortList[today.getUTCMonth()] + '' '' + today.getUTCFullYear() + '' '' + today.getUTCHours() + '':'' + today.getUTCMinutes() + '':'' + today.getUTCSeconds() + '' GMT''; }; this.executeRequest = function (httpMethod, apiPath, apiParams, mql, namespace) { var headers = ''(request-target) date host''; const contentTypeHeader = ''content-type: application/json''; const dateHeader = ''date: '' + this.getDate(); const hostHeader = ''host: '' + params[''api_host'']; const requestTarget = ''(request-target): '' + httpMethod + '' '' + apiPath + apiParams; var signingString = requestTarget + ''\\n'' + dateHeader + ''\\n'' + hostHeader; var reqHeaders = [contentTypeHeader, dateHeader]; if (httpMethod === ''post'') { var body = JSON.stringify({ ''namespace'': namespace, ''query'': mql }); headers = headers + '' x-content-sha256 content-type content-length''; const bodyHeader = ''x-content-sha256: '' + this.encode(this.hash(body)); const bodyLengthHeader = ''content-length: '' + body.length; signingString = signingString + ''\\n'' + bodyHeader + ''\\n'' + contentTypeHeader + ''\\n'' + bodyLengthHeader; reqHeaders.push(bodyHeader, bodyLengthHeader); } const signature = this.encode(this.sign(signingString)); reqHeaders.push(''Authorization: Signature version="1",keyId="'' + params[''tenancy_ocid''] + ''/'' + params[''user_ocid''] + ''/'' + params[''fingerprint''] + ''",algorithm="rsa-sha256",headers="'' + headers + ''",signature="'' + signature + ''"''); for (var header = 0, headerLength = reqHeaders.length; header < headerLength; header++) { this.request.addHeader(reqHeaders[header]); } if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } if (httpMethod === ''post'') { var apiRateLimitExceeded = false; do { const response = this.request.post(''https://'' + params[''api_host''] + apiPath + apiParams, body); try { if (JSON.parse(response)[''code''] === ''TooManyRequests'') { apiRateLimitExceeded = true; Zabbix.sleep(1000); } else { apiRateLimitExceeded = false; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the response: '' + JSON.stringify(response)); throw ''Could not parse the response. See logs for more information.''; } } while (apiRateLimitExceeded); } else { const response = this.request.get(''https://'' + params[''api_host''] + apiPath + apiParams); } this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (httpMethod, data, keys, compartment) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } if (typeof keys == ''object'') { var returnBuffer = []; for (var dataObj = 0, dataLength = data.length; dataObj < dataLength; dataObj++) { var objectBuffer = {}; for (var key = 0, keysLength = keys.length; key < keysLength; key++) { if (data[dataObj][keys[key]] || data[dataObj][keys[key]] == null) { objectBuffer[keys[key].match(/^[a-z]+$|[A-Z][a-z]+$/)[0].toLowerCase()] = data[dataObj][keys[key]]; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Received an unexpected JSON object. Could not get value for key "'' + keys[key] + ''" in JSON: '' + JSON.stringify(data[dataObj])); throw ''Received an unexpected JSON object. See logs for more information.''; } } if (typeof compartment != ''undefined'' && compartment != '''') objectBuffer[''compartment''] = compartment; returnBuffer.push(objectBuffer); } return returnBuffer; } try { if (httpMethod === ''get'') { return data[keys]; } else { if (data.length === 0) { return 0; } data = data[0][keys]; return data[data.length - 1][''value'']; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not find key "'' + keys + ''" in JSON: '' + JSON.stringify(data)); throw ''Could not find required key in JSON object. See logs for more information.''; } }; } const params = JSON.parse(value); validateZabbixParams([''tenancy_ocid'', ''user_ocid'', ''private_key'', ''fingerprint'', ''api_host'', ''instance_id'', ''http_status_code'', ''req_interval'', ''compartment_id''], params); var oci = new OCI(''Compute'', ''Get health'', params); const mql = ''InstanceAccessibilityStatus['' + params[''req_interval''] + ''m]{resourceId='' + params[''instance_id''] + ''}.max()''; return JSON.stringify(oci.extractData(''post'', oci.executeRequest(''post'', ''/20180401/metrics/actions/summarizeMetricsData'', ''?compartmentId='' + encodeURIComponent(params[''compartment_id'']), mql, ''oci_compute_instance_health''), ''aggregatedDatapoints''));','','0','','','','','0',NULL,'The accessibility status of a virtual machine instance. A value of "1" indicates that the instance is unresponsive due to an issue with the infrastructure or the instance itself. A value of "0" indicates that an accessibility issue has not been detected. If the instance is stopped, then the metric does not have a value.','0','7d','0','',NULL,'10s','','','','200','1','0','','','0','0','0','0','0','0','0','657ad1d54de4454696573418f5f17f11','0','2','0'), ('46854','21','','10618','Get compute metrics','oci.compute.metrics.get','1m','0','0','0','4','','','','',NULL,NULL,E'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function OCI(service, action, params) { this.zabbixLogPrefix = ''[ OCI ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.hash = function (string) { return sha256(string); }; this.sign = function (string) { return sign(''sha256'', params[''private_key''], string); }; this.encode = function (hash) { const hexArr = hash.match(/.{1,2}/g); var uInt8Array = new Uint8Array(hexArr.length); hexArr.forEach(function (hex, idx) { uInt8Array[idx] = parseInt(hex, 16); }); return btoa(uInt8Array); }; this.getDate = function () { const weekdayShortList = [''Sun'', ''Mon'', ''Tue'', ''Wed'', ''Thu'', ''Fri'', ''Sat'']; const monthShortList = [''jan'', ''feb'', ''mar'', ''apr'', ''may'', ''jun'', ''jul'', ''aug'', ''sep'', ''oct'', ''nov'', ''dec'']; const today = new Date(); return weekdayShortList[today.getUTCDay()] + '', '' + today.getUTCDate() + '' '' + monthShortList[today.getUTCMonth()] + '' '' + today.getUTCFullYear() + '' '' + today.getUTCHours() + '':'' + today.getUTCMinutes() + '':'' + today.getUTCSeconds() + '' GMT''; }; this.executeRequest = function (httpMethod, apiPath, apiParams, mql, namespace) { var headers = ''(request-target) date host''; const contentTypeHeader = ''content-type: application/json''; const dateHeader = ''date: '' + this.getDate(); const hostHeader = ''host: '' + params[''api_host'']; const requestTarget = ''(request-target): '' + httpMethod + '' '' + apiPath + apiParams; var signingString = requestTarget + ''\\n'' + dateHeader + ''\\n'' + hostHeader; var reqHeaders = [contentTypeHeader, dateHeader]; if (httpMethod === ''post'') { var body = JSON.stringify({ ''namespace'': namespace, ''query'': mql }); headers = headers + '' x-content-sha256 content-type content-length''; const bodyHeader = ''x-content-sha256: '' + this.encode(this.hash(body)); const bodyLengthHeader = ''content-length: '' + body.length; signingString = signingString + ''\\n'' + bodyHeader + ''\\n'' + contentTypeHeader + ''\\n'' + bodyLengthHeader; reqHeaders.push(bodyHeader, bodyLengthHeader); } const signature = this.encode(this.sign(signingString)); reqHeaders.push(''Authorization: Signature version="1",keyId="'' + params[''tenancy_ocid''] + ''/'' + params[''user_ocid''] + ''/'' + params[''fingerprint''] + ''",algorithm="rsa-sha256",headers="'' + headers + ''",signature="'' + signature + ''"''); for (var header = 0, headerLength = reqHeaders.length; header < headerLength; header++) { this.request.addHeader(reqHeaders[header]); } if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } if (httpMethod === ''post'') { var apiRateLimitExceeded = false; do { const response = this.request.post(''https://'' + params[''api_host''] + apiPath + apiParams, body); try { if (JSON.parse(response)[''code''] === ''TooManyRequests'') { apiRateLimitExceeded = true; Zabbix.sleep(1000); } else { apiRateLimitExceeded = false; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the response: '' + JSON.stringify(response)); throw ''Could not parse the response. See logs for more information.''; } } while (apiRateLimitExceeded); } else { const response = this.request.get(''https://'' + params[''api_host''] + apiPath + apiParams); } this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (httpMethod, data, keys, compartment) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } if (typeof keys == ''object'') { var returnBuffer = []; for (var dataObj = 0, dataLength = data.length; dataObj < dataLength; dataObj++) { var objectBuffer = {}; for (var key = 0, keysLength = keys.length; key < keysLength; key++) { if (data[dataObj][keys[key]] || data[dataObj][keys[key]] == null) { objectBuffer[keys[key].match(/^[a-z]+$|[A-Z][a-z]+$/)[0].toLowerCase()] = data[dataObj][keys[key]]; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Received an unexpected JSON object. Could not get value for key "'' + keys[key] + ''" in JSON: '' + JSON.stringify(data[dataObj])); throw ''Received an unexpected JSON object. See logs for more information.''; } } if (typeof compartment != ''undefined'' && compartment != '''') objectBuffer[''compartment''] = compartment; returnBuffer.push(objectBuffer); } return returnBuffer; } try { if (httpMethod === ''get'') { return data[keys]; } else { if (data.length === 0) { return 0; } data = data[0][keys]; return data[data.length - 1][''value'']; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not find key "'' + keys + ''" in JSON: '' + JSON.stringify(data)); throw ''Could not find required key in JSON object. See logs for more information.''; } }; } function buildMql(id, metrics, defaultStatistic, resourceType) { resourceType = resourceType === '''' || resourceType === undefined ? ''resourceId'' : resourceType; this.query = ''['' + params[''req_interval''] + ''m]{'' + resourceType + ''='' + id + ''}.''; for (var i = 0, metricsLength = metrics.length; i < metricsLength; i++) { const metric = ((Array.isArray(metrics[i]) ? metrics[i] : [metrics[i], defaultStatistic])); metrics[i] = [metric[0], this.query + metric[1]]; } } const params = JSON.parse(value); validateZabbixParams([''tenancy_ocid'', ''user_ocid'', ''private_key'', ''fingerprint'', ''api_host'', ''instance_id'', ''http_status_code'', ''req_interval'', ''compartment_id''], params); var oci = new OCI(''Compute'', ''Get metrics'', params); const metrics = [ [''CpuUtilization'', ''mean''], [''MemoryUtilization'', ''mean''], [''LoadAverage'', ''mean''], [''MemoryAllocationStalls'', ''mean''], ''DiskBytesRead'', ''DiskBytesWritten'', ''DiskIopsRead'', ''DiskIopsWritten'', ''NetworksBytesIn'', ''NetworksBytesOut'' ]; buildMql(params[''instance_id''], metrics, ''rate''); var result = {}; for (var i = 0, metricsLength = metrics.length; i < metricsLength; i++) { result[metrics[i][0]] = oci.extractData(''post'', oci.executeRequest(''post'', ''/20180401/metrics/actions/summarizeMetricsData'', ''?compartmentId='' + encodeURIComponent(params[''compartment_id'']), metrics[i][0] + metrics[i][1] + ''()'', ''oci_computeagent''), ''aggregatedDatapoints''); } return JSON.stringify(result);','','0','','','','','0',NULL,'Gets compute instance metrics.','0','7d','0','',NULL,'30s','','','','200','1','0','','','0','0','0','0','0','0','0','65ff665a67374bb082f260ca473dfb1b','0','2','0'), ('46855','21','','10618','State','oci.compute.state.get','1m','31d','365d','0','3','','','','',NULL,'1201',E'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function OCI(service, action, params) { this.zabbixLogPrefix = ''[ OCI ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.hash = function (string) { return sha256(string); }; this.sign = function (string) { return sign(''sha256'', params[''private_key''], string); }; this.encode = function (hash) { const hexArr = hash.match(/.{1,2}/g); var uInt8Array = new Uint8Array(hexArr.length); hexArr.forEach(function (hex, idx) { uInt8Array[idx] = parseInt(hex, 16); }); return btoa(uInt8Array); }; this.getDate = function () { const weekdayShortList = [''Sun'', ''Mon'', ''Tue'', ''Wed'', ''Thu'', ''Fri'', ''Sat'']; const monthShortList = [''jan'', ''feb'', ''mar'', ''apr'', ''may'', ''jun'', ''jul'', ''aug'', ''sep'', ''oct'', ''nov'', ''dec'']; const today = new Date(); return weekdayShortList[today.getUTCDay()] + '', '' + today.getUTCDate() + '' '' + monthShortList[today.getUTCMonth()] + '' '' + today.getUTCFullYear() + '' '' + today.getUTCHours() + '':'' + today.getUTCMinutes() + '':'' + today.getUTCSeconds() + '' GMT''; }; this.executeRequest = function (httpMethod, apiPath, apiParams, mql, namespace) { var headers = ''(request-target) date host''; const contentTypeHeader = ''content-type: application/json''; const dateHeader = ''date: '' + this.getDate(); const hostHeader = ''host: '' + params[''api_host'']; const requestTarget = ''(request-target): '' + httpMethod + '' '' + apiPath + apiParams; var signingString = requestTarget + ''\\n'' + dateHeader + ''\\n'' + hostHeader; var reqHeaders = [contentTypeHeader, dateHeader]; if (httpMethod === ''post'') { var body = JSON.stringify({ ''namespace'': namespace, ''query'': mql }); headers = headers + '' x-content-sha256 content-type content-length''; const bodyHeader = ''x-content-sha256: '' + this.encode(this.hash(body)); const bodyLengthHeader = ''content-length: '' + body.length; signingString = signingString + ''\\n'' + bodyHeader + ''\\n'' + contentTypeHeader + ''\\n'' + bodyLengthHeader; reqHeaders.push(bodyHeader, bodyLengthHeader); } const signature = this.encode(this.sign(signingString)); reqHeaders.push(''Authorization: Signature version="1",keyId="'' + params[''tenancy_ocid''] + ''/'' + params[''user_ocid''] + ''/'' + params[''fingerprint''] + ''",algorithm="rsa-sha256",headers="'' + headers + ''",signature="'' + signature + ''"''); for (var header = 0, headerLength = reqHeaders.length; header < headerLength; header++) { this.request.addHeader(reqHeaders[header]); } if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } if (httpMethod === ''post'') { var apiRateLimitExceeded = false; do { const response = this.request.post(''https://'' + params[''api_host''] + apiPath + apiParams, body); try { if (JSON.parse(response)[''code''] === ''TooManyRequests'') { apiRateLimitExceeded = true; Zabbix.sleep(1000); } else { apiRateLimitExceeded = false; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the response: '' + JSON.stringify(response)); throw ''Could not parse the response. See logs for more information.''; } } while (apiRateLimitExceeded); } else { const response = this.request.get(''https://'' + params[''api_host''] + apiPath + apiParams); } this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (httpMethod, data, keys, compartment) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } if (typeof keys == ''object'') { var returnBuffer = []; for (var dataObj = 0, dataLength = data.length; dataObj < dataLength; dataObj++) { var objectBuffer = {}; for (var key = 0, keysLength = keys.length; key < keysLength; key++) { if (data[dataObj][keys[key]] || data[dataObj][keys[key]] == null) { objectBuffer[keys[key].match(/^[a-z]+$|[A-Z][a-z]+$/)[0].toLowerCase()] = data[dataObj][keys[key]]; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Received an unexpected JSON object. Could not get value for key "'' + keys[key] + ''" in JSON: '' + JSON.stringify(data[dataObj])); throw ''Received an unexpected JSON object. See logs for more information.''; } } if (typeof compartment != ''undefined'' && compartment != '''') objectBuffer[''compartment''] = compartment; returnBuffer.push(objectBuffer); } return returnBuffer; } try { if (httpMethod === ''get'') { return data[keys]; } else { if (data.length === 0) { return 0; } data = data[0][keys]; return data[data.length - 1][''value'']; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not find key "'' + keys + ''" in JSON: '' + JSON.stringify(data)); throw ''Could not find required key in JSON object. See logs for more information.''; } }; } const params = JSON.parse(value); validateZabbixParams([''tenancy_ocid'', ''user_ocid'', ''private_key'', ''fingerprint'', ''api_host'', ''instance_id'', ''http_status_code''], params); var oci = new OCI(''Compute'', ''Get state'', params); return oci.extractData(''get'', oci.executeRequest(''get'', ''/20160918/instances/'' + encodeURIComponent(params[''instance_id'']), ''''), ''lifecycleState'');','','0','','','','','0',NULL,'The current state of the instance.','0','7d','0','',NULL,'10s','','','','200','1','0','','','0','0','0','0','0','0','0','3c4a11c3c8fe40fca36635e2a6882816','0','2','0'), ('46856','21','','10618','Get VNICs','oci.compute.vnic.get','1m','0','0','0','4','','','','',NULL,NULL,E'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function OCI(service, action, params) { this.zabbixLogPrefix = ''[ OCI ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.hash = function (string) { return sha256(string); }; this.sign = function (string) { return sign(''sha256'', params[''private_key''], string); }; this.encode = function (hash) { const hexArr = hash.match(/.{1,2}/g); var uInt8Array = new Uint8Array(hexArr.length); hexArr.forEach(function (hex, idx) { uInt8Array[idx] = parseInt(hex, 16); }); return btoa(uInt8Array); }; this.getDate = function () { const weekdayShortList = [''Sun'', ''Mon'', ''Tue'', ''Wed'', ''Thu'', ''Fri'', ''Sat'']; const monthShortList = [''jan'', ''feb'', ''mar'', ''apr'', ''may'', ''jun'', ''jul'', ''aug'', ''sep'', ''oct'', ''nov'', ''dec'']; const today = new Date(); return weekdayShortList[today.getUTCDay()] + '', '' + today.getUTCDate() + '' '' + monthShortList[today.getUTCMonth()] + '' '' + today.getUTCFullYear() + '' '' + today.getUTCHours() + '':'' + today.getUTCMinutes() + '':'' + today.getUTCSeconds() + '' GMT''; }; this.executeRequest = function (httpMethod, apiPath, apiParams, mql, namespace) { var headers = ''(request-target) date host''; const contentTypeHeader = ''content-type: application/json''; const dateHeader = ''date: '' + this.getDate(); const hostHeader = ''host: '' + params[''api_host'']; const requestTarget = ''(request-target): '' + httpMethod + '' '' + apiPath + apiParams; var signingString = requestTarget + ''\\n'' + dateHeader + ''\\n'' + hostHeader; var reqHeaders = [contentTypeHeader, dateHeader]; if (httpMethod === ''post'') { var body = JSON.stringify({ ''namespace'': namespace, ''query'': mql }); headers = headers + '' x-content-sha256 content-type content-length''; const bodyHeader = ''x-content-sha256: '' + this.encode(this.hash(body)); const bodyLengthHeader = ''content-length: '' + body.length; signingString = signingString + ''\\n'' + bodyHeader + ''\\n'' + contentTypeHeader + ''\\n'' + bodyLengthHeader; reqHeaders.push(bodyHeader, bodyLengthHeader); } const signature = this.encode(this.sign(signingString)); reqHeaders.push(''Authorization: Signature version="1",keyId="'' + params[''tenancy_ocid''] + ''/'' + params[''user_ocid''] + ''/'' + params[''fingerprint''] + ''",algorithm="rsa-sha256",headers="'' + headers + ''",signature="'' + signature + ''"''); for (var header = 0, headerLength = reqHeaders.length; header < headerLength; header++) { this.request.addHeader(reqHeaders[header]); } if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } if (httpMethod === ''post'') { var apiRateLimitExceeded = false; do { const response = this.request.post(''https://'' + params[''api_host''] + apiPath + apiParams, body); try { if (JSON.parse(response)[''code''] === ''TooManyRequests'') { apiRateLimitExceeded = true; Zabbix.sleep(1000); } else { apiRateLimitExceeded = false; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the response: '' + JSON.stringify(response)); throw ''Could not parse the response. See logs for more information.''; } } while (apiRateLimitExceeded); } else { const response = this.request.get(''https://'' + params[''api_host''] + apiPath + apiParams); } this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (httpMethod, data, keys, compartment) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } if (typeof keys == ''object'') { var returnBuffer = []; for (var dataObj = 0, dataLength = data.length; dataObj < dataLength; dataObj++) { var objectBuffer = {}; for (var key = 0, keysLength = keys.length; key < keysLength; key++) { if (data[dataObj][keys[key]] || data[dataObj][keys[key]] == null) { objectBuffer[keys[key].match(/^[a-z]+$|[A-Z][a-z]+$/)[0].toLowerCase()] = data[dataObj][keys[key]]; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Received an unexpected JSON object. Could not get value for key "'' + keys[key] + ''" in JSON: '' + JSON.stringify(data[dataObj])); throw ''Received an unexpected JSON object. See logs for more information.''; } } if (typeof compartment != ''undefined'' && compartment != '''') objectBuffer[''compartment''] = compartment; returnBuffer.push(objectBuffer); } return returnBuffer; } try { if (httpMethod === ''get'') { return data[keys]; } else { if (data.length === 0) { return 0; } data = data[0][keys]; return data[data.length - 1][''value'']; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not find key "'' + keys + ''" in JSON: '' + JSON.stringify(data)); throw ''Could not find required key in JSON object. See logs for more information.''; } }; } const params = JSON.parse(value); validateZabbixParams([''tenancy_ocid'', ''user_ocid'', ''private_key'', ''fingerprint'', ''api_host'', ''instance_id'', ''availability_domain'', ''http_status_code'', ''compartment_id''], params); var oci = new OCI(''Compute'', ''Get VNICs'', params); return JSON.stringify(oci.extractData(''get'', oci.executeRequest(''get'', ''/20160918/vnicAttachments'', ''?compartmentId='' + encodeURIComponent(params[''compartment_id'']) + ''&availabilityDomain='' + encodeURIComponent(params[''availability_domain'']) + ''&instanceId='' + encodeURIComponent(params[''instance_id''])), [''vnicId'', ''displayName'', ''lifecycleState'']));','','0','','','','','0',NULL,'Gets information about all virtual network interface cards attached to the instance.','0','7d','0','',NULL,'30s','','','','200','1','0','','','0','0','0','0','0','0','0','c0e74098afb14984af6355ac0711662e','0','2','0'), ('46857','21','','10619','Get VCN state','oci.vcn.state.get','5m','31d','365d','0','3','','','','',NULL,'1204',E'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function OCI(service, action, params) { this.zabbixLogPrefix = ''[ OCI ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.hash = function (string) { return sha256(string); }; this.sign = function (string) { return sign(''sha256'', params[''private_key''], string); }; this.encode = function (hash) { const hexArr = hash.match(/.{1,2}/g); var uInt8Array = new Uint8Array(hexArr.length); hexArr.forEach(function (hex, idx) { uInt8Array[idx] = parseInt(hex, 16); }); return btoa(uInt8Array); }; this.getDate = function () { const weekdayShortList = [''Sun'', ''Mon'', ''Tue'', ''Wed'', ''Thu'', ''Fri'', ''Sat'']; const monthShortList = [''jan'', ''feb'', ''mar'', ''apr'', ''may'', ''jun'', ''jul'', ''aug'', ''sep'', ''oct'', ''nov'', ''dec'']; const today = new Date(); return weekdayShortList[today.getUTCDay()] + '', '' + today.getUTCDate() + '' '' + monthShortList[today.getUTCMonth()] + '' '' + today.getUTCFullYear() + '' '' + today.getUTCHours() + '':'' + today.getUTCMinutes() + '':'' + today.getUTCSeconds() + '' GMT''; }; this.executeRequest = function (httpMethod, apiPath, apiParams, mql, namespace) { var headers = ''(request-target) date host''; const contentTypeHeader = ''content-type: application/json''; const dateHeader = ''date: '' + this.getDate(); const hostHeader = ''host: '' + params[''api_host'']; const requestTarget = ''(request-target): '' + httpMethod + '' '' + apiPath + apiParams; var signingString = requestTarget + ''\\n'' + dateHeader + ''\\n'' + hostHeader; var reqHeaders = [contentTypeHeader, dateHeader]; if (httpMethod === ''post'') { var body = JSON.stringify({ ''namespace'': namespace, ''query'': mql }); headers = headers + '' x-content-sha256 content-type content-length''; const bodyHeader = ''x-content-sha256: '' + this.encode(this.hash(body)); const bodyLengthHeader = ''content-length: '' + body.length; signingString = signingString + ''\\n'' + bodyHeader + ''\\n'' + contentTypeHeader + ''\\n'' + bodyLengthHeader; reqHeaders.push(bodyHeader, bodyLengthHeader); } const signature = this.encode(this.sign(signingString)); reqHeaders.push(''Authorization: Signature version="1",keyId="'' + params[''tenancy_ocid''] + ''/'' + params[''user_ocid''] + ''/'' + params[''fingerprint''] + ''",algorithm="rsa-sha256",headers="'' + headers + ''",signature="'' + signature + ''"''); for (var header = 0, headerLength = reqHeaders.length; header < headerLength; header++) { this.request.addHeader(reqHeaders[header]); } if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } if (httpMethod === ''post'') { var apiRateLimitExceeded = false; do { const response = this.request.post(''https://'' + params[''api_host''] + apiPath + apiParams, body); try { if (JSON.parse(response)[''code''] === ''TooManyRequests'') { apiRateLimitExceeded = true; Zabbix.sleep(1000); } else { apiRateLimitExceeded = false; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the response: '' + JSON.stringify(response)); throw ''Could not parse the response. See logs for more information.''; } } while (apiRateLimitExceeded); } else { const response = this.request.get(''https://'' + params[''api_host''] + apiPath + apiParams); } this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (httpMethod, data, keys, compartment) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } if (typeof keys == ''object'') { var returnBuffer = []; for (var dataObj = 0, dataLength = data.length; dataObj < dataLength; dataObj++) { var objectBuffer = {}; for (var key = 0, keysLength = keys.length; key < keysLength; key++) { if (data[dataObj][keys[key]] || data[dataObj][keys[key]] == null) { objectBuffer[keys[key].match(/^[a-z]+$|[A-Z][a-z]+$/)[0].toLowerCase()] = data[dataObj][keys[key]]; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Received an unexpected JSON object. Could not get value for key "'' + keys[key] + ''" in JSON: '' + JSON.stringify(data[dataObj])); throw ''Received an unexpected JSON object. See logs for more information.''; } } if (typeof compartment != ''undefined'' && compartment != '''') objectBuffer[''compartment''] = compartment; returnBuffer.push(objectBuffer); } return returnBuffer; } try { if (httpMethod === ''get'') { return data[keys]; } else { if (data.length === 0) { return 0; } data = data[0][keys]; return data[data.length - 1][''value'']; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not find key "'' + keys + ''" in JSON: '' + JSON.stringify(data)); throw ''Could not find required key in JSON object. See logs for more information.''; } }; } const params = JSON.parse(value); validateZabbixParams([''tenancy_ocid'', ''user_ocid'', ''private_key'', ''fingerprint'', ''api_host'', ''vcn_id'', ''http_status_code''], params); var oci = new OCI(''VCN'', ''Get VCN status'', params); return JSON.stringify(oci.extractData(''get'', oci.executeRequest(''get'', ''/20160918/vcns/'' + encodeURIComponent(params[''vcn_id'']), ''''), ''lifecycleState''));','','0','','','','','0',NULL,'State of the virtual cloud network.','0','7d','0','',NULL,'10s','','','','200','1','0','','','0','0','0','0','0','0','0','7b2fdfb034ba4657a731ab11ffa175f6','0','2','0'), ('46858','21','','10619','Get subnets','oci.vcn.subnets.get','5m','0','0','0','4','','','','',NULL,NULL,E'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function OCI(service, action, params) { this.zabbixLogPrefix = ''[ OCI ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.hash = function (string) { return sha256(string); }; this.sign = function (string) { return sign(''sha256'', params[''private_key''], string); }; this.encode = function (hash) { const hexArr = hash.match(/.{1,2}/g); var uInt8Array = new Uint8Array(hexArr.length); hexArr.forEach(function (hex, idx) { uInt8Array[idx] = parseInt(hex, 16); }); return btoa(uInt8Array); }; this.getDate = function () { const weekdayShortList = [''Sun'', ''Mon'', ''Tue'', ''Wed'', ''Thu'', ''Fri'', ''Sat'']; const monthShortList = [''jan'', ''feb'', ''mar'', ''apr'', ''may'', ''jun'', ''jul'', ''aug'', ''sep'', ''oct'', ''nov'', ''dec'']; const today = new Date(); return weekdayShortList[today.getUTCDay()] + '', '' + today.getUTCDate() + '' '' + monthShortList[today.getUTCMonth()] + '' '' + today.getUTCFullYear() + '' '' + today.getUTCHours() + '':'' + today.getUTCMinutes() + '':'' + today.getUTCSeconds() + '' GMT''; }; this.executeRequest = function (httpMethod, apiPath, apiParams, mql, namespace) { var headers = ''(request-target) date host''; const contentTypeHeader = ''content-type: application/json''; const dateHeader = ''date: '' + this.getDate(); const hostHeader = ''host: '' + params[''api_host'']; const requestTarget = ''(request-target): '' + httpMethod + '' '' + apiPath + apiParams; var signingString = requestTarget + ''\\n'' + dateHeader + ''\\n'' + hostHeader; var reqHeaders = [contentTypeHeader, dateHeader]; if (httpMethod === ''post'') { var body = JSON.stringify({ ''namespace'': namespace, ''query'': mql }); headers = headers + '' x-content-sha256 content-type content-length''; const bodyHeader = ''x-content-sha256: '' + this.encode(this.hash(body)); const bodyLengthHeader = ''content-length: '' + body.length; signingString = signingString + ''\\n'' + bodyHeader + ''\\n'' + contentTypeHeader + ''\\n'' + bodyLengthHeader; reqHeaders.push(bodyHeader, bodyLengthHeader); } const signature = this.encode(this.sign(signingString)); reqHeaders.push(''Authorization: Signature version="1",keyId="'' + params[''tenancy_ocid''] + ''/'' + params[''user_ocid''] + ''/'' + params[''fingerprint''] + ''",algorithm="rsa-sha256",headers="'' + headers + ''",signature="'' + signature + ''"''); for (var header = 0, headerLength = reqHeaders.length; header < headerLength; header++) { this.request.addHeader(reqHeaders[header]); } if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } if (httpMethod === ''post'') { var apiRateLimitExceeded = false; do { const response = this.request.post(''https://'' + params[''api_host''] + apiPath + apiParams, body); try { if (JSON.parse(response)[''code''] === ''TooManyRequests'') { apiRateLimitExceeded = true; Zabbix.sleep(1000); } else { apiRateLimitExceeded = false; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the response: '' + JSON.stringify(response)); throw ''Could not parse the response. See logs for more information.''; } } while (apiRateLimitExceeded); } else { const response = this.request.get(''https://'' + params[''api_host''] + apiPath + apiParams); } this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (httpMethod, data, keys, compartment) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } if (typeof keys == ''object'') { var returnBuffer = []; for (var dataObj = 0, dataLength = data.length; dataObj < dataLength; dataObj++) { var objectBuffer = {}; for (var key = 0, keysLength = keys.length; key < keysLength; key++) { if (data[dataObj][keys[key]] || data[dataObj][keys[key]] == null) { objectBuffer[keys[key].match(/^[a-z]+$|[A-Z][a-z]+$/)[0].toLowerCase()] = data[dataObj][keys[key]]; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Received an unexpected JSON object. Could not get value for key "'' + keys[key] + ''" in JSON: '' + JSON.stringify(data[dataObj])); throw ''Received an unexpected JSON object. See logs for more information.''; } } if (typeof compartment != ''undefined'' && compartment != '''') objectBuffer[''compartment''] = compartment; returnBuffer.push(objectBuffer); } return returnBuffer; } try { if (httpMethod === ''get'') { return data[keys]; } else { if (data.length === 0) { return 0; } data = data[0][keys]; return data[data.length - 1][''value'']; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not find key "'' + keys + ''" in JSON: '' + JSON.stringify(data)); throw ''Could not find required key in JSON object. See logs for more information.''; } }; } const params = JSON.parse(value); validateZabbixParams([''tenancy_ocid'', ''user_ocid'', ''private_key'', ''fingerprint'', ''api_host'', ''vcn_id'', ''http_status_code'', ''compartment_id''], params); var oci = new OCI(''VCN'', ''Get subnets'', params); return JSON.stringify(oci.extractData(''get'', oci.executeRequest(''get'', ''/20160918/subnets'', ''?compartmentId='' + encodeURIComponent(params[''compartment_id'']) + ''&vcnId='' + encodeURIComponent(params[''vcn_id''])), [''id'', ''displayName'', ''lifecycleState'', ''freeformTags'']));','','0','','','','','0',NULL,'Get data about subnets linked to the particular VCN.','0','7d','0','',NULL,'30s','','','','200','1','0','','','0','0','0','0','0','0','0','83236aeedf5e4ba39f0425c21f745690','0','2','0'), ('46859','21','','10620','Get frequent metrics','oci.obj.storage.metrics.frequent.get','1m','0','0','0','4','','','','',NULL,NULL,E'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function OCI(service, action, params) { this.zabbixLogPrefix = ''[ OCI ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.hash = function (string) { return sha256(string); }; this.sign = function (string) { return sign(''sha256'', params[''private_key''], string); }; this.encode = function (hash) { const hexArr = hash.match(/.{1,2}/g); var uInt8Array = new Uint8Array(hexArr.length); hexArr.forEach(function (hex, idx) { uInt8Array[idx] = parseInt(hex, 16); }); return btoa(uInt8Array); }; this.getDate = function () { const weekdayShortList = [''Sun'', ''Mon'', ''Tue'', ''Wed'', ''Thu'', ''Fri'', ''Sat'']; const monthShortList = [''jan'', ''feb'', ''mar'', ''apr'', ''may'', ''jun'', ''jul'', ''aug'', ''sep'', ''oct'', ''nov'', ''dec'']; const today = new Date(); return weekdayShortList[today.getUTCDay()] + '', '' + today.getUTCDate() + '' '' + monthShortList[today.getUTCMonth()] + '' '' + today.getUTCFullYear() + '' '' + today.getUTCHours() + '':'' + today.getUTCMinutes() + '':'' + today.getUTCSeconds() + '' GMT''; }; this.executeRequest = function (httpMethod, apiPath, apiParams, mql, namespace) { var headers = ''(request-target) date host''; const contentTypeHeader = ''content-type: application/json''; const dateHeader = ''date: '' + this.getDate(); const hostHeader = ''host: '' + params[''api_host'']; const requestTarget = ''(request-target): '' + httpMethod + '' '' + apiPath + apiParams; var signingString = requestTarget + ''\\n'' + dateHeader + ''\\n'' + hostHeader; var reqHeaders = [contentTypeHeader, dateHeader]; if (httpMethod === ''post'') { var body = JSON.stringify({ ''namespace'': namespace, ''query'': mql }); headers = headers + '' x-content-sha256 content-type content-length''; const bodyHeader = ''x-content-sha256: '' + this.encode(this.hash(body)); const bodyLengthHeader = ''content-length: '' + body.length; signingString = signingString + ''\\n'' + bodyHeader + ''\\n'' + contentTypeHeader + ''\\n'' + bodyLengthHeader; reqHeaders.push(bodyHeader, bodyLengthHeader); } const signature = this.encode(this.sign(signingString)); reqHeaders.push(''Authorization: Signature version="1",keyId="'' + params[''tenancy_ocid''] + ''/'' + params[''user_ocid''] + ''/'' + params[''fingerprint''] + ''",algorithm="rsa-sha256",headers="'' + headers + ''",signature="'' + signature + ''"''); for (var header = 0, headerLength = reqHeaders.length; header < headerLength; header++) { this.request.addHeader(reqHeaders[header]); } if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } if (httpMethod === ''post'') { var apiRateLimitExceeded = false; do { const response = this.request.post(''https://'' + params[''api_host''] + apiPath + apiParams, body); try { if (JSON.parse(response)[''code''] === ''TooManyRequests'') { apiRateLimitExceeded = true; Zabbix.sleep(1000); } else { apiRateLimitExceeded = false; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the response: '' + JSON.stringify(response)); throw ''Could not parse the response. See logs for more information.''; } } while (apiRateLimitExceeded); } else { const response = this.request.get(''https://'' + params[''api_host''] + apiPath + apiParams); } this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (httpMethod, data, keys, compartment) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } if (typeof keys == ''object'') { var returnBuffer = []; for (var dataObj = 0, dataLength = data.length; dataObj < dataLength; dataObj++) { var objectBuffer = {}; for (var key = 0, keysLength = keys.length; key < keysLength; key++) { if (data[dataObj][keys[key]] || data[dataObj][keys[key]] == null) { objectBuffer[keys[key].match(/^[a-z]+$|[A-Z][a-z]+$/)[0].toLowerCase()] = data[dataObj][keys[key]]; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Received an unexpected JSON object. Could not get value for key "'' + keys[key] + ''" in JSON: '' + JSON.stringify(data[dataObj])); throw ''Received an unexpected JSON object. See logs for more information.''; } } if (typeof compartment != ''undefined'' && compartment != '''') objectBuffer[''compartment''] = compartment; returnBuffer.push(objectBuffer); } return returnBuffer; } try { if (httpMethod === ''get'') { return data[keys]; } else { if (data.length === 0) { return 0; } data = data[0][keys]; return data[data.length - 1][''value'']; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not find key "'' + keys + ''" in JSON: '' + JSON.stringify(data)); throw ''Could not find required key in JSON object. See logs for more information.''; } }; } function buildMql(id, metrics, defaultStatistic, resourceType) { resourceType = resourceType === '''' || resourceType === undefined ? ''resourceId'' : resourceType; this.query = ''['' + params[''req_interval''] + ''m]{'' + resourceType + ''='' + id + ''}.''; for (var i = 0, metricsLength = metrics.length; i < metricsLength; i++) { const metric = ((Array.isArray(metrics[i]) ? metrics[i] : [metrics[i], defaultStatistic])); metrics[i] = [metric[0], this.query + metric[1]]; } } const params = JSON.parse(value); validateZabbixParams([''tenancy_ocid'', ''user_ocid'', ''private_key'', ''fingerprint'', ''api_host'', ''bucket_name'', ''http_status_code'', ''req_interval'', ''compartment_id''], params); var oci = new OCI(''Object storage'', ''Get metrics '' + params[''req_interval''] + ''m'', params); const metrics = [ ''AllRequests'', ''ClientErrors'', ''FirstByteLatency'', ''PostRequests'', ''PutRequests'', ''TotalRequestLatency'' ]; buildMql(params[''bucket_name''], metrics, ''mean'', ''resourceDisplayName''); var result = {}; for (var i = 0, metricsLength = metrics.length; i < metricsLength; i++) { result[metrics[i][0]] = oci.extractData(''post'', oci.executeRequest(''post'', ''/20180401/metrics/actions/summarizeMetricsData'', ''?compartmentId='' + encodeURIComponent(params[''compartment_id'']), metrics[i][0] + metrics[i][1] + ''()'', ''oci_objectstorage''), ''aggregatedDatapoints''); } return JSON.stringify(result);','','0','','','','','0',NULL,'Gets all metrics related to a specific bucket that have frequent update time (100 milliseconds).','0','7d','0','',NULL,'30s','','','','200','1','0','','','0','0','0','0','0','0','0','5463c35f2c48408997532001025989fa','0','2','0'), ('46860','21','','10620','Get hourly metrics','oci.obj.storage.metrics.hourly.get','1h','0','0','0','4','','','','',NULL,NULL,E'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function OCI(service, action, params) { this.zabbixLogPrefix = ''[ OCI ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.hash = function (string) { return sha256(string); }; this.sign = function (string) { return sign(''sha256'', params[''private_key''], string); }; this.encode = function (hash) { const hexArr = hash.match(/.{1,2}/g); var uInt8Array = new Uint8Array(hexArr.length); hexArr.forEach(function (hex, idx) { uInt8Array[idx] = parseInt(hex, 16); }); return btoa(uInt8Array); }; this.getDate = function () { const weekdayShortList = [''Sun'', ''Mon'', ''Tue'', ''Wed'', ''Thu'', ''Fri'', ''Sat'']; const monthShortList = [''jan'', ''feb'', ''mar'', ''apr'', ''may'', ''jun'', ''jul'', ''aug'', ''sep'', ''oct'', ''nov'', ''dec'']; const today = new Date(); return weekdayShortList[today.getUTCDay()] + '', '' + today.getUTCDate() + '' '' + monthShortList[today.getUTCMonth()] + '' '' + today.getUTCFullYear() + '' '' + today.getUTCHours() + '':'' + today.getUTCMinutes() + '':'' + today.getUTCSeconds() + '' GMT''; }; this.executeRequest = function (httpMethod, apiPath, apiParams, mql, namespace) { var headers = ''(request-target) date host''; const contentTypeHeader = ''content-type: application/json''; const dateHeader = ''date: '' + this.getDate(); const hostHeader = ''host: '' + params[''api_host'']; const requestTarget = ''(request-target): '' + httpMethod + '' '' + apiPath + apiParams; var signingString = requestTarget + ''\\n'' + dateHeader + ''\\n'' + hostHeader; var reqHeaders = [contentTypeHeader, dateHeader]; if (httpMethod === ''post'') { var body = JSON.stringify({ ''namespace'': namespace, ''query'': mql }); headers = headers + '' x-content-sha256 content-type content-length''; const bodyHeader = ''x-content-sha256: '' + this.encode(this.hash(body)); const bodyLengthHeader = ''content-length: '' + body.length; signingString = signingString + ''\\n'' + bodyHeader + ''\\n'' + contentTypeHeader + ''\\n'' + bodyLengthHeader; reqHeaders.push(bodyHeader, bodyLengthHeader); } const signature = this.encode(this.sign(signingString)); reqHeaders.push(''Authorization: Signature version="1",keyId="'' + params[''tenancy_ocid''] + ''/'' + params[''user_ocid''] + ''/'' + params[''fingerprint''] + ''",algorithm="rsa-sha256",headers="'' + headers + ''",signature="'' + signature + ''"''); for (var header = 0, headerLength = reqHeaders.length; header < headerLength; header++) { this.request.addHeader(reqHeaders[header]); } if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } if (httpMethod === ''post'') { var apiRateLimitExceeded = false; do { const response = this.request.post(''https://'' + params[''api_host''] + apiPath + apiParams, body); try { if (JSON.parse(response)[''code''] === ''TooManyRequests'') { apiRateLimitExceeded = true; Zabbix.sleep(1000); } else { apiRateLimitExceeded = false; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the response: '' + JSON.stringify(response)); throw ''Could not parse the response. See logs for more information.''; } } while (apiRateLimitExceeded); } else { const response = this.request.get(''https://'' + params[''api_host''] + apiPath + apiParams); } this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (httpMethod, data, keys, compartment) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } if (typeof keys == ''object'') { var returnBuffer = []; for (var dataObj = 0, dataLength = data.length; dataObj < dataLength; dataObj++) { var objectBuffer = {}; for (var key = 0, keysLength = keys.length; key < keysLength; key++) { if (data[dataObj][keys[key]] || data[dataObj][keys[key]] == null) { objectBuffer[keys[key].match(/^[a-z]+$|[A-Z][a-z]+$/)[0].toLowerCase()] = data[dataObj][keys[key]]; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Received an unexpected JSON object. Could not get value for key "'' + keys[key] + ''" in JSON: '' + JSON.stringify(data[dataObj])); throw ''Received an unexpected JSON object. See logs for more information.''; } } if (typeof compartment != ''undefined'' && compartment != '''') objectBuffer[''compartment''] = compartment; returnBuffer.push(objectBuffer); } return returnBuffer; } try { if (httpMethod === ''get'') { return data[keys]; } else { if (data.length === 0) { return 0; } data = data[0][keys]; return data[data.length - 1][''value'']; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not find key "'' + keys + ''" in JSON: '' + JSON.stringify(data)); throw ''Could not find required key in JSON object. See logs for more information.''; } }; } function buildMql(id, metrics, defaultStatistic, resourceType) { resourceType = resourceType === '''' || resourceType === undefined ? ''resourceId'' : resourceType; this.query = ''['' + params[''req_interval''] + ''m]{'' + resourceType + ''='' + id + ''}.''; for (var i = 0, metricsLength = metrics.length; i < metricsLength; i++) { const metric = ((Array.isArray(metrics[i]) ? metrics[i] : [metrics[i], defaultStatistic])); metrics[i] = [metric[0], this.query + metric[1]]; } } const params = JSON.parse(value); validateZabbixParams([''tenancy_ocid'', ''user_ocid'', ''private_key'', ''fingerprint'', ''api_host'', ''bucket_name'', ''http_status_code'', ''req_interval'', ''compartment_id''], params); var oci = new OCI(''Object storage'', ''Get metrics '' + params[''req_interval''] + ''m'', params); const metrics = [ ''ObjectCount'', ''StoredBytes'', ''UncommittedParts'' ]; buildMql(params[''bucket_name''], metrics, ''mean'', ''resourceDisplayName'') var result = {}; for (var i = 0, metricsLength = metrics.length; i < metricsLength; i++) { result[metrics[i][0]] = oci.extractData(''post'', oci.executeRequest(''post'', ''/20180401/metrics/actions/summarizeMetricsData'', ''?compartmentId='' + encodeURIComponent(params[''compartment_id'']), metrics[i][0] + metrics[i][1] + ''()'', ''oci_objectstorage''), ''aggregatedDatapoints''); } return JSON.stringify(result);','','0','','','','','0',NULL,'Gets all metrics related to specific bucket that have update time of 1 hour.','0','7d','0','',NULL,'30s','','','','200','1','0','','','0','0','0','0','0','0','0','4a12f1c73e8f40be9136a095ad147775','0','2','0'), ('46861','21','','10620','Get enabled object lifecycle management','oci.obj.storage.metrics.olm.get','3h','31d','365d','0','3','','','','',NULL,NULL,E'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function OCI(service, action, params) { this.zabbixLogPrefix = ''[ OCI ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.hash = function (string) { return sha256(string); }; this.sign = function (string) { return sign(''sha256'', params[''private_key''], string); }; this.encode = function (hash) { const hexArr = hash.match(/.{1,2}/g); var uInt8Array = new Uint8Array(hexArr.length); hexArr.forEach(function (hex, idx) { uInt8Array[idx] = parseInt(hex, 16); }); return btoa(uInt8Array); }; this.getDate = function () { const weekdayShortList = [''Sun'', ''Mon'', ''Tue'', ''Wed'', ''Thu'', ''Fri'', ''Sat'']; const monthShortList = [''jan'', ''feb'', ''mar'', ''apr'', ''may'', ''jun'', ''jul'', ''aug'', ''sep'', ''oct'', ''nov'', ''dec'']; const today = new Date(); return weekdayShortList[today.getUTCDay()] + '', '' + today.getUTCDate() + '' '' + monthShortList[today.getUTCMonth()] + '' '' + today.getUTCFullYear() + '' '' + today.getUTCHours() + '':'' + today.getUTCMinutes() + '':'' + today.getUTCSeconds() + '' GMT''; }; this.executeRequest = function (httpMethod, apiPath, apiParams, mql, namespace) { var headers = ''(request-target) date host''; const contentTypeHeader = ''content-type: application/json''; const dateHeader = ''date: '' + this.getDate(); const hostHeader = ''host: '' + params[''api_host'']; const requestTarget = ''(request-target): '' + httpMethod + '' '' + apiPath + apiParams; var signingString = requestTarget + ''\\n'' + dateHeader + ''\\n'' + hostHeader; var reqHeaders = [contentTypeHeader, dateHeader]; if (httpMethod === ''post'') { var body = JSON.stringify({ ''namespace'': namespace, ''query'': mql }); headers = headers + '' x-content-sha256 content-type content-length''; const bodyHeader = ''x-content-sha256: '' + this.encode(this.hash(body)); const bodyLengthHeader = ''content-length: '' + body.length; signingString = signingString + ''\\n'' + bodyHeader + ''\\n'' + contentTypeHeader + ''\\n'' + bodyLengthHeader; reqHeaders.push(bodyHeader, bodyLengthHeader); } const signature = this.encode(this.sign(signingString)); reqHeaders.push(''Authorization: Signature version="1",keyId="'' + params[''tenancy_ocid''] + ''/'' + params[''user_ocid''] + ''/'' + params[''fingerprint''] + ''",algorithm="rsa-sha256",headers="'' + headers + ''",signature="'' + signature + ''"''); for (var header = 0, headerLength = reqHeaders.length; header < headerLength; header++) { this.request.addHeader(reqHeaders[header]); } if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } if (httpMethod === ''post'') { var apiRateLimitExceeded = false; do { const response = this.request.post(''https://'' + params[''api_host''] + apiPath + apiParams, body); try { if (JSON.parse(response)[''code''] === ''TooManyRequests'') { apiRateLimitExceeded = true; Zabbix.sleep(1000); } else { apiRateLimitExceeded = false; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the response: '' + JSON.stringify(response)); throw ''Could not parse the response. See logs for more information.''; } } while (apiRateLimitExceeded); } else { const response = this.request.get(''https://'' + params[''api_host''] + apiPath + apiParams); } this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (httpMethod, data, keys, compartment) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } if (typeof keys == ''object'') { var returnBuffer = []; for (var dataObj = 0, dataLength = data.length; dataObj < dataLength; dataObj++) { var objectBuffer = {}; for (var key = 0, keysLength = keys.length; key < keysLength; key++) { if (data[dataObj][keys[key]] || data[dataObj][keys[key]] == null) { objectBuffer[keys[key].match(/^[a-z]+$|[A-Z][a-z]+$/)[0].toLowerCase()] = data[dataObj][keys[key]]; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Received an unexpected JSON object. Could not get value for key "'' + keys[key] + ''" in JSON: '' + JSON.stringify(data[dataObj])); throw ''Received an unexpected JSON object. See logs for more information.''; } } if (typeof compartment != ''undefined'' && compartment != '''') objectBuffer[''compartment''] = compartment; returnBuffer.push(objectBuffer); } return returnBuffer; } try { if (httpMethod === ''get'') { return data[keys]; } else { if (data.length === 0) { return 0; } data = data[0][keys]; return data[data.length - 1][''value'']; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not find key "'' + keys + ''" in JSON: '' + JSON.stringify(data)); throw ''Could not find required key in JSON object. See logs for more information.''; } }; } const params = JSON.parse(value); validateZabbixParams([''tenancy_ocid'', ''user_ocid'', ''private_key'', ''fingerprint'', ''api_host'', ''bucket_name'', ''http_status_code'', ''req_interval'', ''compartment_id''], params); var oci = new OCI(''Object storage'', ''Get metrics '' + params[''req_interval''] + ''m'', params); const mql = ''EnabledOLM['' + params[''req_interval''] + ''m]{resourceDisplayName='' + params[''bucket_name''] + ''}.mean()''; return JSON.stringify(oci.extractData(''post'', oci.executeRequest(''post'', ''/20180401/metrics/actions/summarizeMetricsData'', ''?compartmentId='' + encodeURIComponent(params[''compartment_id'']), mql, ''oci_objectstorage''), ''aggregatedDatapoints''));','','0','','','','','0',NULL,'Indicates whether a bucket has any executable Object Lifecycle Management policies configured. `EnabledOLM` emits: 1 - if policies are configured 0 - if no policies are configured','0','7d','0','',NULL,'10s','','','','200','1','0','','','0','0','0','0','0','0','0','5bb5ba3011e94e43bb1fdc79668c9537','0','2','0'), ('46933','21','','10617','Block volumes discovery','oci.block.volumes.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,E'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function prepareCompartments(compartments, tenancy) { if (typeof compartments === ''undefined'' || compartments === '''') { return [tenancy]; } else { return compartments.split('','') } } function OCI(service, action, params) { this.zabbixLogPrefix = ''[ OCI ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.hash = function (string) { return sha256(string); }; this.sign = function (string) { return sign(''sha256'', params[''private_key''], string); }; this.encode = function (hash) { const hexArr = hash.match(/.{1,2}/g); var uInt8Array = new Uint8Array(hexArr.length); hexArr.forEach(function (hex, idx) { uInt8Array[idx] = parseInt(hex, 16); }); return btoa(uInt8Array); }; this.getDate = function () { const weekdayShortList = [''Sun'', ''Mon'', ''Tue'', ''Wed'', ''Thu'', ''Fri'', ''Sat'']; const monthShortList = [''jan'', ''feb'', ''mar'', ''apr'', ''may'', ''jun'', ''jul'', ''aug'', ''sep'', ''oct'', ''nov'', ''dec'']; const today = new Date(); return weekdayShortList[today.getUTCDay()] + '', '' + today.getUTCDate() + '' '' + monthShortList[today.getUTCMonth()] + '' '' + today.getUTCFullYear() + '' '' + today.getUTCHours() + '':'' + today.getUTCMinutes() + '':'' + today.getUTCSeconds() + '' GMT''; }; this.executeRequest = function (httpMethod, apiPath, apiParams, mql, namespace) { var headers = ''(request-target) date host''; const contentTypeHeader = ''content-type: application/json''; const dateHeader = ''date: '' + this.getDate(); const hostHeader = ''host: '' + params[''api_host'']; const requestTarget = ''(request-target): '' + httpMethod + '' '' + apiPath + apiParams; var signingString = requestTarget + ''\\n'' + dateHeader + ''\\n'' + hostHeader; var reqHeaders = [contentTypeHeader, dateHeader]; if (httpMethod === ''post'') { var body = JSON.stringify({ ''namespace'': namespace, ''query'': mql }); headers = headers + '' x-content-sha256 content-type content-length''; const bodyHeader = ''x-content-sha256: '' + this.encode(this.hash(body)); const bodyLengthHeader = ''content-length: '' + body.length; signingString = signingString + ''\\n'' + bodyHeader + ''\\n'' + contentTypeHeader + ''\\n'' + bodyLengthHeader; reqHeaders.push(bodyHeader, bodyLengthHeader); } const signature = this.encode(this.sign(signingString)); reqHeaders.push(''Authorization: Signature version="1",keyId="'' + params[''tenancy_ocid''] + ''/'' + params[''user_ocid''] + ''/'' + params[''fingerprint''] + ''",algorithm="rsa-sha256",headers="'' + headers + ''",signature="'' + signature + ''"''); for (var header = 0, headerLength = reqHeaders.length; header < headerLength; header++) { this.request.addHeader(reqHeaders[header]); } if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } if (httpMethod === ''post'') { var apiRateLimitExceeded = false; do { const response = this.request.post(''https://'' + params[''api_host''] + apiPath + apiParams, body); try { if (JSON.parse(response)[''code''] === ''TooManyRequests'') { apiRateLimitExceeded = true; Zabbix.sleep(1000); } else { apiRateLimitExceeded = false; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the response: '' + JSON.stringify(response)); throw ''Could not parse the response. See logs for more information.''; } } while (apiRateLimitExceeded); } else { const response = this.request.get(''https://'' + params[''api_host''] + apiPath + apiParams); } this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (httpMethod, data, keys, compartment) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } if (typeof keys == ''object'') { var returnBuffer = []; for (var dataObj = 0, dataLength = data.length; dataObj < dataLength; dataObj++) { var objectBuffer = {}; for (var key = 0, keysLength = keys.length; key < keysLength; key++) { if (data[dataObj][keys[key]] || data[dataObj][keys[key]] == null) { objectBuffer[keys[key].match(/^[a-z]+$|[A-Z][a-z]+$/)[0].toLowerCase()] = data[dataObj][keys[key]]; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Received an unexpected JSON object. Could not get value for key "'' + keys[key] + ''" in JSON: '' + JSON.stringify(data[dataObj])); throw ''Received an unexpected JSON object. See logs for more information.''; } } if (typeof compartment != ''undefined'' && compartment != '''') objectBuffer[''compartment''] = compartment; returnBuffer.push(objectBuffer); } return returnBuffer; } try { if (httpMethod === ''get'') { return data[keys]; } else { if (data.length === 0) { return 0; } data = data[0][keys]; return data[data.length - 1][''value'']; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not find key "'' + keys + ''" in JSON: '' + JSON.stringify(data)); throw ''Could not find required key in JSON object. See logs for more information.''; } }; } const params = JSON.parse(value); validateZabbixParams([''tenancy_ocid'', ''user_ocid'', ''private_key'', ''fingerprint'', ''api_host'', ''http_status_code''], params); var oci = new OCI(''Block volume'', ''Get volumes'', params); var compartments = prepareCompartments(params[''compartment_ocid''], params[''tenancy_ocid'']); var buffer = []; compartments.forEach(function (compartment) { Array.prototype.push.apply(buffer, oci.extractData(''get'', oci.executeRequest(''get'', ''/20160918/volumes'', ''?compartmentId='' + encodeURIComponent(compartment)), [''id'', ''displayName'', ''lifecycleState'', ''freeformTags''], compartment)); }) return JSON.stringify(buffer);','','0','','','','','1',NULL,'Discover block volumes.','0','7d','1','',NULL,'10s','','','','200','1','0','','','0','0','0','0','0','0','0','72fa6dfedfd8497298c5930f48594e72','0','2','0'), ('46934','21','','10617','Boot volumes discovery','oci.boot.volumes.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,E'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function prepareCompartments(compartments, tenancy) { if (typeof compartments === ''undefined'' || compartments === '''') { return [tenancy]; } else { return compartments.split('','') } } function OCI(service, action, params) { this.zabbixLogPrefix = ''[ OCI ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.hash = function (string) { return sha256(string); }; this.sign = function (string) { return sign(''sha256'', params[''private_key''], string); }; this.encode = function (hash) { const hexArr = hash.match(/.{1,2}/g); var uInt8Array = new Uint8Array(hexArr.length); hexArr.forEach(function (hex, idx) { uInt8Array[idx] = parseInt(hex, 16); }); return btoa(uInt8Array); }; this.getDate = function () { const weekdayShortList = [''Sun'', ''Mon'', ''Tue'', ''Wed'', ''Thu'', ''Fri'', ''Sat'']; const monthShortList = [''jan'', ''feb'', ''mar'', ''apr'', ''may'', ''jun'', ''jul'', ''aug'', ''sep'', ''oct'', ''nov'', ''dec'']; const today = new Date(); return weekdayShortList[today.getUTCDay()] + '', '' + today.getUTCDate() + '' '' + monthShortList[today.getUTCMonth()] + '' '' + today.getUTCFullYear() + '' '' + today.getUTCHours() + '':'' + today.getUTCMinutes() + '':'' + today.getUTCSeconds() + '' GMT''; }; this.executeRequest = function (httpMethod, apiPath, apiParams, mql, namespace) { var headers = ''(request-target) date host''; const contentTypeHeader = ''content-type: application/json''; const dateHeader = ''date: '' + this.getDate(); const hostHeader = ''host: '' + params[''api_host'']; const requestTarget = ''(request-target): '' + httpMethod + '' '' + apiPath + apiParams; var signingString = requestTarget + ''\\n'' + dateHeader + ''\\n'' + hostHeader; var reqHeaders = [contentTypeHeader, dateHeader]; if (httpMethod === ''post'') { var body = JSON.stringify({ ''namespace'': namespace, ''query'': mql }); headers = headers + '' x-content-sha256 content-type content-length''; const bodyHeader = ''x-content-sha256: '' + this.encode(this.hash(body)); const bodyLengthHeader = ''content-length: '' + body.length; signingString = signingString + ''\\n'' + bodyHeader + ''\\n'' + contentTypeHeader + ''\\n'' + bodyLengthHeader; reqHeaders.push(bodyHeader, bodyLengthHeader); } const signature = this.encode(this.sign(signingString)); reqHeaders.push(''Authorization: Signature version="1",keyId="'' + params[''tenancy_ocid''] + ''/'' + params[''user_ocid''] + ''/'' + params[''fingerprint''] + ''",algorithm="rsa-sha256",headers="'' + headers + ''",signature="'' + signature + ''"''); for (var header = 0, headerLength = reqHeaders.length; header < headerLength; header++) { this.request.addHeader(reqHeaders[header]); } if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } if (httpMethod === ''post'') { var apiRateLimitExceeded = false; do { const response = this.request.post(''https://'' + params[''api_host''] + apiPath + apiParams, body); try { if (JSON.parse(response)[''code''] === ''TooManyRequests'') { apiRateLimitExceeded = true; Zabbix.sleep(1000); } else { apiRateLimitExceeded = false; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the response: '' + JSON.stringify(response)); throw ''Could not parse the response. See logs for more information.''; } } while (apiRateLimitExceeded); } else { const response = this.request.get(''https://'' + params[''api_host''] + apiPath + apiParams); } this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (httpMethod, data, keys, compartment) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } if (typeof keys == ''object'') { var returnBuffer = []; for (var dataObj = 0, dataLength = data.length; dataObj < dataLength; dataObj++) { var objectBuffer = {}; for (var key = 0, keysLength = keys.length; key < keysLength; key++) { if (data[dataObj][keys[key]] || data[dataObj][keys[key]] == null) { objectBuffer[keys[key].match(/^[a-z]+$|[A-Z][a-z]+$/)[0].toLowerCase()] = data[dataObj][keys[key]]; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Received an unexpected JSON object. Could not get value for key "'' + keys[key] + ''" in JSON: '' + JSON.stringify(data[dataObj])); throw ''Received an unexpected JSON object. See logs for more information.''; } } if (typeof compartment != ''undefined'' && compartment != '''') objectBuffer[''compartment''] = compartment; returnBuffer.push(objectBuffer); } return returnBuffer; } try { if (httpMethod === ''get'') { return data[keys]; } else { if (data.length === 0) { return 0; } data = data[0][keys]; return data[data.length - 1][''value'']; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not find key "'' + keys + ''" in JSON: '' + JSON.stringify(data)); throw ''Could not find required key in JSON object. See logs for more information.''; } }; } const params = JSON.parse(value); validateZabbixParams([''tenancy_ocid'', ''user_ocid'', ''private_key'', ''fingerprint'', ''api_host'', ''http_status_code''], params); var oci = new OCI(''Boot volume'', ''Get volumes'', params); var compartments = prepareCompartments(params[''compartment_ocid''], params[''tenancy_ocid'']); var buffer = []; compartments.forEach(function (compartment) { Array.prototype.push.apply(buffer, oci.extractData(''get'', oci.executeRequest(''get'', ''/20160918/bootVolumes'', ''?compartmentId='' + encodeURIComponent(compartment)), [''id'', ''displayName'', ''lifecycleState'', ''freeformTags''], compartment)); }) return JSON.stringify(buffer);','','0','','','','','1',NULL,'Discover boot volumes.','0','7d','1','',NULL,'10s','','','','200','1','0','','','0','0','0','0','0','0','0','90982afdf2f9430bb1c5a3755d8e6c6d','0','2','0'), ('46935','21','','10617','Compute instances discovery','oci.compute.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,E'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function prepareCompartments(compartments, tenancy) { if (typeof compartments === ''undefined'' || compartments === '''') { return [tenancy]; } else { return compartments.split('','') } } function OCI(service, action, params) { this.zabbixLogPrefix = ''[ OCI ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.hash = function (string) { return sha256(string); }; this.sign = function (string) { return sign(''sha256'', params[''private_key''], string); }; this.encode = function (hash) { const hexArr = hash.match(/.{1,2}/g); var uInt8Array = new Uint8Array(hexArr.length); hexArr.forEach(function (hex, idx) { uInt8Array[idx] = parseInt(hex, 16); }); return btoa(uInt8Array); }; this.getDate = function () { const weekdayShortList = [''Sun'', ''Mon'', ''Tue'', ''Wed'', ''Thu'', ''Fri'', ''Sat'']; const monthShortList = [''jan'', ''feb'', ''mar'', ''apr'', ''may'', ''jun'', ''jul'', ''aug'', ''sep'', ''oct'', ''nov'', ''dec'']; const today = new Date(); return weekdayShortList[today.getUTCDay()] + '', '' + today.getUTCDate() + '' '' + monthShortList[today.getUTCMonth()] + '' '' + today.getUTCFullYear() + '' '' + today.getUTCHours() + '':'' + today.getUTCMinutes() + '':'' + today.getUTCSeconds() + '' GMT''; }; this.executeRequest = function (httpMethod, apiPath, apiParams, mql, namespace) { var headers = ''(request-target) date host''; const contentTypeHeader = ''content-type: application/json''; const dateHeader = ''date: '' + this.getDate(); const hostHeader = ''host: '' + params[''api_host'']; const requestTarget = ''(request-target): '' + httpMethod + '' '' + apiPath + apiParams; var signingString = requestTarget + ''\\n'' + dateHeader + ''\\n'' + hostHeader; var reqHeaders = [contentTypeHeader, dateHeader]; if (httpMethod === ''post'') { var body = JSON.stringify({ ''namespace'': namespace, ''query'': mql }); headers = headers + '' x-content-sha256 content-type content-length''; const bodyHeader = ''x-content-sha256: '' + this.encode(this.hash(body)); const bodyLengthHeader = ''content-length: '' + body.length; signingString = signingString + ''\\n'' + bodyHeader + ''\\n'' + contentTypeHeader + ''\\n'' + bodyLengthHeader; reqHeaders.push(bodyHeader, bodyLengthHeader); } const signature = this.encode(this.sign(signingString)); reqHeaders.push(''Authorization: Signature version="1",keyId="'' + params[''tenancy_ocid''] + ''/'' + params[''user_ocid''] + ''/'' + params[''fingerprint''] + ''",algorithm="rsa-sha256",headers="'' + headers + ''",signature="'' + signature + ''"''); for (var header = 0, headerLength = reqHeaders.length; header < headerLength; header++) { this.request.addHeader(reqHeaders[header]); } if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } if (httpMethod === ''post'') { var apiRateLimitExceeded = false; do { const response = this.request.post(''https://'' + params[''api_host''] + apiPath + apiParams, body); try { if (JSON.parse(response)[''code''] === ''TooManyRequests'') { apiRateLimitExceeded = true; Zabbix.sleep(1000); } else { apiRateLimitExceeded = false; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the response: '' + JSON.stringify(response)); throw ''Could not parse the response. See logs for more information.''; } } while (apiRateLimitExceeded); } else { const response = this.request.get(''https://'' + params[''api_host''] + apiPath + apiParams); } this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (httpMethod, data, keys, compartment) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } if (typeof keys == ''object'') { var returnBuffer = []; for (var dataObj = 0, dataLength = data.length; dataObj < dataLength; dataObj++) { var objectBuffer = {}; for (var key = 0, keysLength = keys.length; key < keysLength; key++) { if (data[dataObj][keys[key]] || data[dataObj][keys[key]] == null) { objectBuffer[keys[key].match(/^[a-z]+$|[A-Z][a-z]+$/)[0].toLowerCase()] = data[dataObj][keys[key]]; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Received an unexpected JSON object. Could not get value for key "'' + keys[key] + ''" in JSON: '' + JSON.stringify(data[dataObj])); throw ''Received an unexpected JSON object. See logs for more information.''; } } if (typeof compartment != ''undefined'' && compartment != '''') objectBuffer[''compartment''] = compartment; returnBuffer.push(objectBuffer); } return returnBuffer; } try { if (httpMethod === ''get'') { return data[keys]; } else { if (data.length === 0) { return 0; } data = data[0][keys]; return data[data.length - 1][''value'']; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not find key "'' + keys + ''" in JSON: '' + JSON.stringify(data)); throw ''Could not find required key in JSON object. See logs for more information.''; } }; } const params = JSON.parse(value); validateZabbixParams([''tenancy_ocid'', ''user_ocid'', ''private_key'', ''fingerprint'', ''api_host'', ''http_status_code''], params); var oci = new OCI(''Compute'', ''Get instances'', params); var compartments = prepareCompartments(params[''compartment_ocid''], params[''tenancy_ocid'']); var buffer = []; compartments.forEach(function (compartment) { Array.prototype.push.apply(buffer, oci.extractData(''get'', oci.executeRequest(''get'', ''/20160918/instances'', ''?compartmentId='' + encodeURIComponent(compartment)), [''id'', ''displayName'', ''lifecycleState'', ''freeformTags'', ''availabilityDomain''], compartment)); }) return JSON.stringify(buffer);','','0','','','','','1',NULL,'Discover compute instances.','0','7d','1','',NULL,'10s','','','','200','1','0','','','0','0','0','0','0','0','0','ea4bbd0e9737406693aa0051cf861115','0','2','0'), ('46936','21','','10617','Autonomous database discovery','oci.object.autonomous.db.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,E'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function prepareCompartments(compartments, tenancy) { if (typeof compartments === ''undefined'' || compartments === '''') { return [tenancy]; } else { return compartments.split('','') } } function OCI(service, action, params) { this.zabbixLogPrefix = ''[ OCI ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.hash = function (string) { return sha256(string); }; this.sign = function (string) { return sign(''sha256'', params[''private_key''], string); }; this.encode = function (hash) { const hexArr = hash.match(/.{1,2}/g); var uInt8Array = new Uint8Array(hexArr.length); hexArr.forEach(function (hex, idx) { uInt8Array[idx] = parseInt(hex, 16); }); return btoa(uInt8Array); }; this.getDate = function () { const weekdayShortList = [''Sun'', ''Mon'', ''Tue'', ''Wed'', ''Thu'', ''Fri'', ''Sat'']; const monthShortList = [''jan'', ''feb'', ''mar'', ''apr'', ''may'', ''jun'', ''jul'', ''aug'', ''sep'', ''oct'', ''nov'', ''dec'']; const today = new Date(); return weekdayShortList[today.getUTCDay()] + '', '' + today.getUTCDate() + '' '' + monthShortList[today.getUTCMonth()] + '' '' + today.getUTCFullYear() + '' '' + today.getUTCHours() + '':'' + today.getUTCMinutes() + '':'' + today.getUTCSeconds() + '' GMT''; }; this.executeRequest = function (httpMethod, apiPath, apiParams, mql, namespace) { var headers = ''(request-target) date host''; const contentTypeHeader = ''content-type: application/json''; const dateHeader = ''date: '' + this.getDate(); const hostHeader = ''host: '' + params[''api_host'']; const requestTarget = ''(request-target): '' + httpMethod + '' '' + apiPath + apiParams; var signingString = requestTarget + ''\\n'' + dateHeader + ''\\n'' + hostHeader; var reqHeaders = [contentTypeHeader, dateHeader]; if (httpMethod === ''post'') { var body = JSON.stringify({ ''namespace'': namespace, ''query'': mql }); headers = headers + '' x-content-sha256 content-type content-length''; const bodyHeader = ''x-content-sha256: '' + this.encode(this.hash(body)); const bodyLengthHeader = ''content-length: '' + body.length; signingString = signingString + ''\\n'' + bodyHeader + ''\\n'' + contentTypeHeader + ''\\n'' + bodyLengthHeader; reqHeaders.push(bodyHeader, bodyLengthHeader); } const signature = this.encode(this.sign(signingString)); reqHeaders.push(''Authorization: Signature version="1",keyId="'' + params[''tenancy_ocid''] + ''/'' + params[''user_ocid''] + ''/'' + params[''fingerprint''] + ''",algorithm="rsa-sha256",headers="'' + headers + ''",signature="'' + signature + ''"''); for (var header = 0, headerLength = reqHeaders.length; header < headerLength; header++) { this.request.addHeader(reqHeaders[header]); } if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } if (httpMethod === ''post'') { var apiRateLimitExceeded = false; do { const response = this.request.post(''https://'' + params[''api_host''] + apiPath + apiParams, body); try { if (JSON.parse(response)[''code''] === ''TooManyRequests'') { apiRateLimitExceeded = true; Zabbix.sleep(1000); } else { apiRateLimitExceeded = false; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the response: '' + JSON.stringify(response)); throw ''Could not parse the response. See logs for more information.''; } } while (apiRateLimitExceeded); } else { const response = this.request.get(''https://'' + params[''api_host''] + apiPath + apiParams); } this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (httpMethod, data, keys, compartment) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } if (typeof keys == ''object'') { var returnBuffer = []; for (var dataObj = 0, dataLength = data.length; dataObj < dataLength; dataObj++) { var objectBuffer = {}; for (var key = 0, keysLength = keys.length; key < keysLength; key++) { if (data[dataObj][keys[key]] || data[dataObj][keys[key]] == null) { objectBuffer[keys[key].match(/^[a-z]+$|[A-Z][a-z]+$/)[0].toLowerCase()] = data[dataObj][keys[key]]; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Received an unexpected JSON object. Could not get value for key "'' + keys[key] + ''" in JSON: '' + JSON.stringify(data[dataObj])); throw ''Received an unexpected JSON object. See logs for more information.''; } } if (typeof compartment != ''undefined'' && compartment != '''') objectBuffer[''compartment''] = compartment; returnBuffer.push(objectBuffer); } return returnBuffer; } try { if (httpMethod === ''get'') { return data[keys]; } else { if (data.length === 0) { return 0; } data = data[0][keys]; return data[data.length - 1][''value'']; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not find key "'' + keys + ''" in JSON: '' + JSON.stringify(data)); throw ''Could not find required key in JSON object. See logs for more information.''; } }; } const params = JSON.parse(value); validateZabbixParams([''tenancy_ocid'', ''user_ocid'', ''private_key'', ''fingerprint'', ''api_host'', ''http_status_code''], params); var oci = new OCI(''Autonomous DB'', ''Get DBs'', params); var compartments = prepareCompartments(params[''compartment_ocid''], params[''tenancy_ocid'']); var buffer = []; compartments.forEach(function (compartment) { Array.prototype.push.apply(buffer, oci.extractData(''get'', oci.executeRequest(''get'', ''/20160918/autonomousDatabases'', ''?compartmentId='' + encodeURIComponent(compartment)), [''id'', ''dbName'', ''lifecycleState'', ''freeformTags''], compartment)); }) return JSON.stringify(buffer);','','0','','','','','1',NULL,'Discover autonomous databases.','0','7d','1','',NULL,'10s','','','','200','1','0','','','0','0','0','0','0','0','0','c69611c5b86043b28c8ce2bc0627b377','0','2','0'), ('46937','21','','10617','Object storage discovery','oci.object.storage.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,E'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function prepareCompartments(compartments, tenancy) { if (typeof compartments === ''undefined'' || compartments === '''') { return [tenancy]; } else { return compartments.split('','') } } function OCI(service, action, params) { this.zabbixLogPrefix = ''[ OCI ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.hash = function (string) { return sha256(string); }; this.sign = function (string) { return sign(''sha256'', params[''private_key''], string); }; this.encode = function (hash) { const hexArr = hash.match(/.{1,2}/g); var uInt8Array = new Uint8Array(hexArr.length); hexArr.forEach(function (hex, idx) { uInt8Array[idx] = parseInt(hex, 16); }); return btoa(uInt8Array); }; this.getDate = function () { const weekdayShortList = [''Sun'', ''Mon'', ''Tue'', ''Wed'', ''Thu'', ''Fri'', ''Sat'']; const monthShortList = [''jan'', ''feb'', ''mar'', ''apr'', ''may'', ''jun'', ''jul'', ''aug'', ''sep'', ''oct'', ''nov'', ''dec'']; const today = new Date(); return weekdayShortList[today.getUTCDay()] + '', '' + today.getUTCDate() + '' '' + monthShortList[today.getUTCMonth()] + '' '' + today.getUTCFullYear() + '' '' + today.getUTCHours() + '':'' + today.getUTCMinutes() + '':'' + today.getUTCSeconds() + '' GMT''; }; this.executeRequest = function (httpMethod, apiPath, apiParams, mql, namespace) { var headers = ''(request-target) date host''; const contentTypeHeader = ''content-type: application/json''; const dateHeader = ''date: '' + this.getDate(); const hostHeader = ''host: '' + params[''api_host'']; const requestTarget = ''(request-target): '' + httpMethod + '' '' + apiPath + apiParams; var signingString = requestTarget + ''\\n'' + dateHeader + ''\\n'' + hostHeader; var reqHeaders = [contentTypeHeader, dateHeader]; if (httpMethod === ''post'') { var body = JSON.stringify({ ''namespace'': namespace, ''query'': mql }); headers = headers + '' x-content-sha256 content-type content-length''; const bodyHeader = ''x-content-sha256: '' + this.encode(this.hash(body)); const bodyLengthHeader = ''content-length: '' + body.length; signingString = signingString + ''\\n'' + bodyHeader + ''\\n'' + contentTypeHeader + ''\\n'' + bodyLengthHeader; reqHeaders.push(bodyHeader, bodyLengthHeader); } const signature = this.encode(this.sign(signingString)); reqHeaders.push(''Authorization: Signature version="1",keyId="'' + params[''tenancy_ocid''] + ''/'' + params[''user_ocid''] + ''/'' + params[''fingerprint''] + ''",algorithm="rsa-sha256",headers="'' + headers + ''",signature="'' + signature + ''"''); for (var header = 0, headerLength = reqHeaders.length; header < headerLength; header++) { this.request.addHeader(reqHeaders[header]); } if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } if (httpMethod === ''post'') { var apiRateLimitExceeded = false; do { const response = this.request.post(''https://'' + params[''api_host''] + apiPath + apiParams, body); try { if (JSON.parse(response)[''code''] === ''TooManyRequests'') { apiRateLimitExceeded = true; Zabbix.sleep(1000); } else { apiRateLimitExceeded = false; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the response: '' + JSON.stringify(response)); throw ''Could not parse the response. See logs for more information.''; } } while (apiRateLimitExceeded); } else { const response = this.request.get(''https://'' + params[''api_host''] + apiPath + apiParams); } this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (httpMethod, data, keys, compartment) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } if (typeof keys == ''object'') { var returnBuffer = []; for (var dataObj = 0, dataLength = data.length; dataObj < dataLength; dataObj++) { var objectBuffer = {}; for (var key = 0, keysLength = keys.length; key < keysLength; key++) { if (data[dataObj][keys[key]] || data[dataObj][keys[key]] == null) { objectBuffer[keys[key].match(/^[a-z]+$|[A-Z][a-z]+$/)[0].toLowerCase()] = data[dataObj][keys[key]]; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Received an unexpected JSON object. Could not get value for key "'' + keys[key] + ''" in JSON: '' + JSON.stringify(data[dataObj])); throw ''Received an unexpected JSON object. See logs for more information.''; } } if (typeof compartment != ''undefined'' && compartment != '''') objectBuffer[''compartment''] = compartment; returnBuffer.push(objectBuffer); } return returnBuffer; } try { if (httpMethod === ''get'') { return data[keys]; } else { if (data.length === 0) { return 0; } data = data[0][keys]; return data[data.length - 1][''value'']; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not find key "'' + keys + ''" in JSON: '' + JSON.stringify(data)); throw ''Could not find required key in JSON object. See logs for more information.''; } }; } const params = JSON.parse(value); validateZabbixParams([''tenancy_ocid'', ''user_ocid'', ''private_key'', ''fingerprint'', ''api_host'', ''http_status_code''], params); var oci = new OCI(''Object storage'', ''Get buckets'', params); var compartments = prepareCompartments(params[''compartment_ocid''], params[''tenancy_ocid'']); const namespace = JSON.parse(oci.executeRequest(''get'', ''/n'', '''')); var buffer = []; compartments.forEach(function (compartment) { Array.prototype.push.apply(buffer, oci.extractData(''get'', oci.executeRequest(''get'', ''/n/'' + encodeURIComponent(namespace) + ''/b/'', ''?compartmentId='' + encodeURIComponent(compartment) + ''&fields=tags''), [''name'', ''freeformTags''], compartment)); }) return JSON.stringify(buffer);','','0','','','','','1',NULL,'Discover object storage.','0','7d','1','',NULL,'10s','','','','200','1','0','','','0','0','0','0','0','0','0','e1949f127af04efeb8c192f23e45b58a','0','2','0'), ('46938','21','','10617','Virtual cloud networks discovery','oci.vcn.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,E'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function prepareCompartments(compartments, tenancy) { if (typeof compartments === ''undefined'' || compartments === '''') { return [tenancy]; } else { return compartments.split('','') } } function OCI(service, action, params) { this.zabbixLogPrefix = ''[ OCI ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.hash = function (string) { return sha256(string); }; this.sign = function (string) { return sign(''sha256'', params[''private_key''], string); }; this.encode = function (hash) { const hexArr = hash.match(/.{1,2}/g); var uInt8Array = new Uint8Array(hexArr.length); hexArr.forEach(function (hex, idx) { uInt8Array[idx] = parseInt(hex, 16); }); return btoa(uInt8Array); }; this.getDate = function () { const weekdayShortList = [''Sun'', ''Mon'', ''Tue'', ''Wed'', ''Thu'', ''Fri'', ''Sat'']; const monthShortList = [''jan'', ''feb'', ''mar'', ''apr'', ''may'', ''jun'', ''jul'', ''aug'', ''sep'', ''oct'', ''nov'', ''dec'']; const today = new Date(); return weekdayShortList[today.getUTCDay()] + '', '' + today.getUTCDate() + '' '' + monthShortList[today.getUTCMonth()] + '' '' + today.getUTCFullYear() + '' '' + today.getUTCHours() + '':'' + today.getUTCMinutes() + '':'' + today.getUTCSeconds() + '' GMT''; }; this.executeRequest = function (httpMethod, apiPath, apiParams, mql, namespace) { var headers = ''(request-target) date host''; const contentTypeHeader = ''content-type: application/json''; const dateHeader = ''date: '' + this.getDate(); const hostHeader = ''host: '' + params[''api_host'']; const requestTarget = ''(request-target): '' + httpMethod + '' '' + apiPath + apiParams; var signingString = requestTarget + ''\\n'' + dateHeader + ''\\n'' + hostHeader; var reqHeaders = [contentTypeHeader, dateHeader]; if (httpMethod === ''post'') { var body = JSON.stringify({ ''namespace'': namespace, ''query'': mql }); headers = headers + '' x-content-sha256 content-type content-length''; const bodyHeader = ''x-content-sha256: '' + this.encode(this.hash(body)); const bodyLengthHeader = ''content-length: '' + body.length; signingString = signingString + ''\\n'' + bodyHeader + ''\\n'' + contentTypeHeader + ''\\n'' + bodyLengthHeader; reqHeaders.push(bodyHeader, bodyLengthHeader); } const signature = this.encode(this.sign(signingString)); reqHeaders.push(''Authorization: Signature version="1",keyId="'' + params[''tenancy_ocid''] + ''/'' + params[''user_ocid''] + ''/'' + params[''fingerprint''] + ''",algorithm="rsa-sha256",headers="'' + headers + ''",signature="'' + signature + ''"''); for (var header = 0, headerLength = reqHeaders.length; header < headerLength; header++) { this.request.addHeader(reqHeaders[header]); } if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } if (httpMethod === ''post'') { var apiRateLimitExceeded = false; do { const response = this.request.post(''https://'' + params[''api_host''] + apiPath + apiParams, body); try { if (JSON.parse(response)[''code''] === ''TooManyRequests'') { apiRateLimitExceeded = true; Zabbix.sleep(1000); } else { apiRateLimitExceeded = false; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the response: '' + JSON.stringify(response)); throw ''Could not parse the response. See logs for more information.''; } } while (apiRateLimitExceeded); } else { const response = this.request.get(''https://'' + params[''api_host''] + apiPath + apiParams); } this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (httpMethod, data, keys, compartment) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } if (typeof keys == ''object'') { var returnBuffer = []; for (var dataObj = 0, dataLength = data.length; dataObj < dataLength; dataObj++) { var objectBuffer = {}; for (var key = 0, keysLength = keys.length; key < keysLength; key++) { if (data[dataObj][keys[key]] || data[dataObj][keys[key]] == null) { objectBuffer[keys[key].match(/^[a-z]+$|[A-Z][a-z]+$/)[0].toLowerCase()] = data[dataObj][keys[key]]; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Received an unexpected JSON object. Could not get value for key "'' + keys[key] + ''" in JSON: '' + JSON.stringify(data[dataObj])); throw ''Received an unexpected JSON object. See logs for more information.''; } } if (typeof compartment != ''undefined'' && compartment != '''') objectBuffer[''compartment''] = compartment; returnBuffer.push(objectBuffer); } return returnBuffer; } try { if (httpMethod === ''get'') { return data[keys]; } else { if (data.length === 0) { return 0; } data = data[0][keys]; return data[data.length - 1][''value'']; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not find key "'' + keys + ''" in JSON: '' + JSON.stringify(data)); throw ''Could not find required key in JSON object. See logs for more information.''; } }; } const params = JSON.parse(value); validateZabbixParams([''tenancy_ocid'', ''user_ocid'', ''private_key'', ''fingerprint'', ''api_host'', ''http_status_code''], params); var oci = new OCI(''VCN'', ''Get VCNs'', params); var compartments = prepareCompartments(params[''compartment_ocid''], params[''tenancy_ocid'']); var buffer = []; compartments.forEach(function (compartment) { Array.prototype.push.apply(buffer, oci.extractData(''get'', oci.executeRequest(''get'', ''/20160918/vcns'', ''?compartmentId='' + encodeURIComponent(compartment)), [''id'', ''displayName'', ''lifecycleState'', ''freeformTags''], compartment)); }) return JSON.stringify(buffer);','','0','','','','','1',NULL,'Discover virtual cloud networks (VCNs).','0','7d','1','',NULL,'10s','','','','200','1','0','','','0','0','0','0','0','0','0','378d760173924bf48fbc25c74a520a8b','0','2','0'), ('46941','21','','10618','VNIC [{#NAME}]: Get metrics','oci.compute.vnic.metrics.get[{#ID}]','1m','0','0','0','4','','','','',NULL,NULL,E'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function OCI(service, action, params) { this.zabbixLogPrefix = ''[ OCI ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.hash = function (string) { return sha256(string); }; this.sign = function (string) { return sign(''sha256'', params[''private_key''], string); }; this.encode = function (hash) { const hexArr = hash.match(/.{1,2}/g); var uInt8Array = new Uint8Array(hexArr.length); hexArr.forEach(function (hex, idx) { uInt8Array[idx] = parseInt(hex, 16); }); return btoa(uInt8Array); }; this.getDate = function () { const weekdayShortList = [''Sun'', ''Mon'', ''Tue'', ''Wed'', ''Thu'', ''Fri'', ''Sat'']; const monthShortList = [''jan'', ''feb'', ''mar'', ''apr'', ''may'', ''jun'', ''jul'', ''aug'', ''sep'', ''oct'', ''nov'', ''dec'']; const today = new Date(); return weekdayShortList[today.getUTCDay()] + '', '' + today.getUTCDate() + '' '' + monthShortList[today.getUTCMonth()] + '' '' + today.getUTCFullYear() + '' '' + today.getUTCHours() + '':'' + today.getUTCMinutes() + '':'' + today.getUTCSeconds() + '' GMT''; }; this.executeRequest = function (httpMethod, apiPath, apiParams, mql, namespace) { var headers = ''(request-target) date host''; const contentTypeHeader = ''content-type: application/json''; const dateHeader = ''date: '' + this.getDate(); const hostHeader = ''host: '' + params[''api_host'']; const requestTarget = ''(request-target): '' + httpMethod + '' '' + apiPath + apiParams; var signingString = requestTarget + ''\\n'' + dateHeader + ''\\n'' + hostHeader; var reqHeaders = [contentTypeHeader, dateHeader]; if (httpMethod === ''post'') { var body = JSON.stringify({ ''namespace'': namespace, ''query'': mql }); headers = headers + '' x-content-sha256 content-type content-length''; const bodyHeader = ''x-content-sha256: '' + this.encode(this.hash(body)); const bodyLengthHeader = ''content-length: '' + body.length; signingString = signingString + ''\\n'' + bodyHeader + ''\\n'' + contentTypeHeader + ''\\n'' + bodyLengthHeader; reqHeaders.push(bodyHeader, bodyLengthHeader); } const signature = this.encode(this.sign(signingString)); reqHeaders.push(''Authorization: Signature version="1",keyId="'' + params[''tenancy_ocid''] + ''/'' + params[''user_ocid''] + ''/'' + params[''fingerprint''] + ''",algorithm="rsa-sha256",headers="'' + headers + ''",signature="'' + signature + ''"''); for (var header = 0, headerLength = reqHeaders.length; header < headerLength; header++) { this.request.addHeader(reqHeaders[header]); } if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } if (httpMethod === ''post'') { var apiRateLimitExceeded = false; do { const response = this.request.post(''https://'' + params[''api_host''] + apiPath + apiParams, body); try { if (JSON.parse(response)[''code''] === ''TooManyRequests'') { apiRateLimitExceeded = true; Zabbix.sleep(1000); } else { apiRateLimitExceeded = false; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the response: '' + JSON.stringify(response)); throw ''Could not parse the response. See logs for more information.''; } } while (apiRateLimitExceeded); } else { const response = this.request.get(''https://'' + params[''api_host''] + apiPath + apiParams); } this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (httpMethod, data, keys, compartment) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } if (typeof keys == ''object'') { var returnBuffer = []; for (var dataObj = 0, dataLength = data.length; dataObj < dataLength; dataObj++) { var objectBuffer = {}; for (var key = 0, keysLength = keys.length; key < keysLength; key++) { if (data[dataObj][keys[key]] || data[dataObj][keys[key]] == null) { objectBuffer[keys[key].match(/^[a-z]+$|[A-Z][a-z]+$/)[0].toLowerCase()] = data[dataObj][keys[key]]; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Received an unexpected JSON object. Could not get value for key "'' + keys[key] + ''" in JSON: '' + JSON.stringify(data[dataObj])); throw ''Received an unexpected JSON object. See logs for more information.''; } } if (typeof compartment != ''undefined'' && compartment != '''') objectBuffer[''compartment''] = compartment; returnBuffer.push(objectBuffer); } return returnBuffer; } try { if (httpMethod === ''get'') { return data[keys]; } else { if (data.length === 0) { return 0; } data = data[0][keys]; return data[data.length - 1][''value'']; } } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not find key "'' + keys + ''" in JSON: '' + JSON.stringify(data)); throw ''Could not find required key in JSON object. See logs for more information.''; } }; } function buildMql(id, metrics, defaultStatistic, resourceType) { resourceType = resourceType === '''' || resourceType === undefined ? ''resourceId'' : resourceType; this.query = ''['' + params[''req_interval''] + ''m]{'' + resourceType + ''='' + id + ''}.''; for (var i = 0, metricsLength = metrics.length; i < metricsLength; i++) { const metric = ((Array.isArray(metrics[i]) ? metrics[i] : [metrics[i], defaultStatistic])); metrics[i] = [metric[0], this.query + metric[1]]; } } const params = JSON.parse(value); validateZabbixParams([''tenancy_ocid'', ''user_ocid'', ''private_key'', ''fingerprint'', ''api_host'', ''vnic_id'', ''http_status_code'', ''req_interval'', ''compartment_id''], params); var oci = new OCI(''Compute - VNIC'', ''Get metrics'', params); const metrics = [ ''VnicEgressDropsSecurityList'', ''VnicIngressDropsSecurityList'', ''VnicFromNetworkBytes'', ''VnicFromNetworkPackets'', ''VnicToNetworkBytes'', ''VnicToNetworkPackets'', ''VnicIngressDropsThrottle'', ''VnicEgressDropsThrottle'', ''VnicIngressDropsConntrackFull'', ''VnicEgressDropsConntrackFull'', ''VnicConntrackUtilPercent'', [''VnicConntrackIsFull'', ''last''], ''SmartnicBufferDropsFromNetwork'', ''SmartnicBufferDropsFromHost'' ]; buildMql(params[''vnic_id''], metrics, ''sum''); var result = {}; for (var i = 0, metricsLength = metrics.length; i < metricsLength; i++) { result[metrics[i][0]] = oci.extractData(''post'', oci.executeRequest(''post'', ''/20180401/metrics/actions/summarizeMetricsData'', ''?compartmentId='' + encodeURIComponent(params[''compartment_id'']), metrics[i][0] + metrics[i][1] + ''()'', ''oci_vcn''), ''aggregatedDatapoints''); } return JSON.stringify(result);','','0','','','','','2',NULL,'Gets virtual network interface card metrics.','0','7d','0','',NULL,'30s','','','','200','1','0','','','0','0','0','0','0','0','0','eb79782153524452ba4ba8506fb207a5','0','2','0'), ('46958','11','','10317','Get database','db.odbc.get[get_database,"{$MYSQL.DSN}"]','1h','0','0','0','4','','','','',NULL,NULL,'show databases','','0','{$MYSQL.USER}','{$MYSQL.PASSWORD}','','','0',NULL,'Used for scanning databases in DBMS.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','70491bf6b6af401c9dfb10c0cbfddee1','0','2','0'), ('46959','11','','10317','Get replication','db.odbc.get[get_replication,"{$MYSQL.DSN}"]','1m','0','0','0','4','','','','',NULL,NULL,'show slave status','','0','{$MYSQL.USER}','{$MYSQL.PASSWORD}','','','0',NULL,'Gets replication status information.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e389af9f1d134e028e3b637544c8a265','0','2','0'), ('46960','11','','10328','Get archive log','db.odbc.get[get_archivelog,,"Driver={$ORACLE.DRIVER};DBQ=//{$ORACLE.HOST}:{$ORACLE.PORT}/{$ORACLE.SERVICE};"]','1h','0','0','0','4','','','','',NULL,NULL,'SELECT d.dest_name FROM v$archive_dest d , v$database db WHERE d.status != ''INACTIVE'' AND db.log_mode = ''ARCHIVELOG'';','','0','{$ORACLE.USER}','{$ORACLE.PASSWORD}','','','0',NULL,'Gets the destinations of the log archive.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','76591a03cf684d30ae15eca8519ce1dd','0','2','0'), ('46961','11','','10328','Get ASM disk groups','db.odbc.get[get_asm,,"Driver={$ORACLE.DRIVER};DBQ=//{$ORACLE.HOST}:{$ORACLE.PORT}/{$ORACLE.SERVICE};"]','1h','0','0','0','4','','','','',NULL,NULL,'SELECT name AS dgname FROM v$asm_diskgroup;','','0','{$ORACLE.USER}','{$ORACLE.PASSWORD}','','','0',NULL,'Gets the ASM disk groups.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','10f3da9afb674ff18956aa99229de8dd','0','2','0'), ('46962','11','','10328','Get database','db.odbc.get[get_db,,"Driver={$ORACLE.DRIVER};DBQ=//{$ORACLE.HOST}:{$ORACLE.PORT}/{$ORACLE.SERVICE};"]','1h','0','0','0','4','','','','',NULL,NULL,'SELECT name as DBNAME, DECODE(CDB, ''YES'', ''CDB'', ''No-CDB'') AS TYPE FROM V$DATABASE;','','0','{$ORACLE.USER}','{$ORACLE.PASSWORD}','','','0',NULL,'Gets the databases in the database management system (DBMS).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7ca479f46bb2435f9f9cb62d404fa37c','0','2','0'), ('46963','11','','10328','Get PDB','db.odbc.get[get_pdb,,"Driver={$ORACLE.DRIVER};DBQ=//{$ORACLE.HOST}:{$ORACLE.PORT}/{$ORACLE.SERVICE};"]','1h','0','0','0','4','','','','',NULL,NULL,'SELECT CON_ID, name as DBNAME FROM V$PDBS;','','0','{$ORACLE.USER}','{$ORACLE.PASSWORD}','','','0',NULL,'Gets the pluggable database (PDB) in DBMS.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','de5aa291b7da4733ad26d517e8ff55cf','0','2','0'), ('46964','11','','10328','Get tablespace','db.odbc.get[get_tablespace,,"Driver={$ORACLE.DRIVER};DBQ=//{$ORACLE.HOST}:{$ORACLE.PORT}/{$ORACLE.SERVICE};"]','1h','0','0','0','4','','','','',NULL,NULL,'SELECT CON_ID, NVL(CON$NAME, ''DB'') CON_NAME, TABLESPACE_NAME TABLESPACE, CONTENTS FROM CDB_TABLESPACES;','','0','{$ORACLE.USER}','{$ORACLE.PASSWORD}','','','0',NULL,'Gets tablespaces in DBMS.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2310462a8936465c8a62d8586ab0ba65','0','2','0'), ('46965','20','get[1.3.6.1.4.1.12356.101.13.1.5.0]','10604','HA config sync','ha.auto.sync[fgHaAutoSync.0]','1h','31d','365d','0','3','','','','',NULL,'1206','','','0','','','','','0',NULL,'MIB: FORTINET-FORTIGATE-MIB Configuration of an automatic configuration synchronization (enabled or disabled).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ea59bff13fd44c37aa5bd711146fe3d9','0','2','0'), ('46966','20','get[1.3.6.1.4.1.12356.101.13.1.2.0]','10604','HA cluster group ID','ha.cluster.group_id[fgHaGroupId.0]','1h','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FORTINET-FORTIGATE-MIB HA cluster group ID device is configured for.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dbc47cff3e60401d9a52f590e1ed6281','0','2','0'), ('46967','20','get[1.3.6.1.4.1.12356.101.13.1.7.0]','10604','HA cluster group name','ha.cluster.group_name[fgHaGroupName.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FORTINET-FORTIGATE-MIB HA cluster group name.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4e2b57a68243445e87ca0e23277bafd6','0','2','0'), ('46968','20','get[1.3.6.1.4.1.12356.101.13.1.4.0]','10604','HA cluster primary override','ha.cluster.override[fgHaOverride.0]','1h','31d','365d','0','3','','','','',NULL,'1206','','','0','','','','','0',NULL,'MIB: FORTINET-FORTIGATE-MIB Status of the primary override flag.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b6bdf8c8d09140ffa4087d0204a0711d','0','2','0'), ('46969','20','get[1.3.6.1.4.1.12356.101.13.1.3.0]','10604','HA cluster priority','ha.cluster.priority[fgHaPriority.0]','1h','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FORTINET-FORTIGATE-MIB HA clustering priority of the device (default = 128).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3f1d2dfb8fd74e80aedb6fa0b7ff7215','0','2','0'), ('46970','20','walk[1.3.6.1.4.1.12356.101.13.2.1.1]','10604','SNMP walk HA members','ha.members.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Used for discovering HA members from FORTINET-FORTIGATE-MIB.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ff27aa75a1d84aa5a472fbf114f8dec0','0','2','0'), ('46971','20','get[1.3.6.1.4.1.12356.101.13.1.1.0]','10604','HA mode','ha.mode[fgHaSystemMode.0]','1h','31d','0','0','3','','','','',NULL,'1208','','','0','','','','','0',NULL,'MIB: FORTINET-FORTIGATE-MIB High-availability mode (Standalone, A-A or A-P).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3d9bb1ddb4924d5ba4dc75fb4103cc10','0','2','0'), ('46972','20','get[1.3.6.1.4.1.12356.101.13.1.6.0]','10604','HA load-balancing schedule','ha.schedule[fgHaSchedule.0]','1h','31d','365d','0','3','','','','',NULL,'1205','','','0','','','','','0',NULL,'MIB: FORTINET-FORTIGATE-MIB Load-balancing schedule of cluster (in A-A mode).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bd3dc8fdcb8e41569f1f81b2624e1462','0','2','0'), ('46973','20','walk[1.3.6.1.4.1.12356.101.4.3.2.1]','10604','SNMP walk hardware sensors','hw.sensor.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Used for discovering hardware sensors from FORTINET-FORTIGATE-MIB.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bb422f92e3ad4eafb9f43f0167a250ee','0','2','0'), ('46974','20','get[1.3.6.1.4.1.12356.101.9.2.1.1.2.1]','10604','Blocked intrusions','ips.blocked[fgIpsIntrusionsBlocked.0]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FORTINET-FORTIGATE-MIB Number of intrusions blocked per second.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','04f58b6b63b945a08a27799bee741702','0','2','0'), ('46975','20','get[1.3.6.1.4.1.12356.101.4.2.2.0]','10604','IPS database version','ips.database.version[fgSysVersionIps.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FORTINET-FORTIGATE-MIB IPS signature database version installed on the device.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9a42006208224b94a64ecc13437516b6','0','2','0'), ('46976','20','get[1.3.6.1.4.1.12356.101.9.2.1.1.9.1]','10604','Detected anomaly based intrusions','ips.detected.anomaly[fgIpsAnomalyDetections.0]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FORTINET-FORTIGATE-MIB Number of intrusions detected as anomalies per second.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','afa9709de4c34d0c82aaf87c5b4f4572','0','2','0'), ('46977','20','get[1.3.6.1.4.1.12356.101.9.2.1.1.3.1]','10604','Detected critical intrusions','ips.detected.crit[fgIpsCritSevDetections.0]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FORTINET-FORTIGATE-MIB Number of critical severity intrusions detected per second.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','20ceeb0c520d454bba3d032d10a5db11','0','2','0'), ('46978','20','get[1.3.6.1.4.1.12356.101.9.2.1.1.4.1]','10604','Detected high intrusions','ips.detected.high[fgIpsHighSevDetections.0]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FORTINET-FORTIGATE-MIB Number of high severity intrusions detected per second.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','badcc4a4fe3d4b219a2c67cda182ff4c','0','2','0'), ('46979','20','get[1.3.6.1.4.1.12356.101.9.2.1.1.7.1]','10604','Detected info intrusions','ips.detected.info[fgIpsInfoSevDetections.0]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FORTINET-FORTIGATE-MIB Number of info severity intrusions detected per second.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f570cf723b904be593a99a8338e577de','0','2','0'), ('46980','20','get[1.3.6.1.4.1.12356.101.9.2.1.1.6.1]','10604','Detected low intrusions','ips.detected.low[fgIpsLowSevDetections.0]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FORTINET-FORTIGATE-MIB Number of low severity intrusions detected per second.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5edd46eba610442888acf0c8bdcde2c1','0','2','0'), ('46981','20','get[1.3.6.1.4.1.12356.101.9.2.1.1.5.1]','10604','Detected medium intrusions','ips.detected.med[fgIpsMedSevDetections.0]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FORTINET-FORTIGATE-MIB Number of medium severity intrusions detected per second.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0e4f211aa2b6492fa461e2bc5af1723f','0','2','0'), ('46982','20','get[1.3.6.1.4.1.12356.101.9.2.1.1.8.1]','10604','Detected signature based intrusions','ips.detected.sign[fgIpsSignatureDetections.0]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FORTINET-FORTIGATE-MIB Number of intrusions detected by signature per second.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bf7ab7c7fdfd42a28e15545904baa6dc','0','2','0'), ('46983','20','get[1.3.6.1.4.1.12356.101.9.2.1.1.1.1]','10604','Total detected intrusions','ips.detected.total[fgIpsIntrusionsDetected.0]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FORTINET-FORTIGATE-MIB Total number of intrusions detected per second.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f35dea442cbe4578a221571b2dbd676f','0','2','0'), ('46984','20','get[1.3.6.1.4.1.12356.101.4.1.8.0]','10604','IPv4 Active sessions','net.ipv4.sessions[fgSysSesCount.0]','5m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FORTINET-FORTIGATE-MIB Number of active sessions on the device.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ba89be1a4a01484f955fc6d740d1c736','0','2','0'), ('46985','20','walk[1.3.6.1.4.1.12356.101.4.9.2.1]','10604','SNMP walk SD-WAN health-checks','sdwan_health.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Used for discovering SD-WAN health-checks from FORTINET-FORTIGATE-MIB.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','de401c1befce453bb9de93cb154026d4','0','2','0'), ('46986','20','walk[1.3.6.1.4.1.12356.101.4.4.2.1]','10604','SNMP walk CPU','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Used for discovering CPU from FORTINET-FORTIGATE-MIB.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','47d06309bad546b0b303c0c602c76415','0','2','0'), ('46987','20','walk[1.3.6.1.4.1.12356.101.3.2.1.1]','10604','SNMP walk virtual domain','vdom.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Used for discovering virtual domains from FORTINET-FORTIGATE-MIB.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','14d4584977a74e0791bf063652bf4c39','0','2','0'), ('46988','20','get[1.3.6.1.4.1.12356.101.12.2.3.1.1.1]','10604','SSL VPN state','vpn.ssl.state[fgVpnSslState.0]','1m','31d','365d','0','3','','','','',NULL,'1211','','','0','','','','','0',NULL,'MIB: FORTINET-FORTIGATE-MIB Used to determine whether SSL-VPN is enabled on this virtual domain.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','08bf282b9b3c4e78b139f3f6fe3bcd97','0','2','0'), ('46989','20','get[1.3.6.1.4.1.12356.101.12.1.1.0]','10604','Active IPsec VPN tunnels','vpn.tunnel.active[fgVpnTunnelUpCount.0]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FORTINET-FORTIGATE-MIB Number of IPsec VPN tunnels with at least one SA.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1699dd171a1f41d5896ac766477033ca','0','2','0'), ('46990','20','walk[1.3.6.1.4.1.12356.101.12.2.2.1.3,1.3.6.1.4.1.12356.101.12.2.2.1.20]','10604','SNMP walk VPN tunnels','vpn.tunnel.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Used for discovering VPN tunnels from FORTINET-FORTIGATE-MIB.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','349a383498cd42729940d1b9e5176e3e','0','2','0'), ('46991','20','get[1.3.6.1.4.1.12356.101.12.2.3.1.2.1]','10604','Active SSL VPN users','vpn.users.count[fgVpnSslStatsLoginUsers.0]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FORTINET-FORTIGATE-MIB Current number of users logged in through SSL-VPN tunnels in the virtual domain.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c9a78b70b0f54fdc92d5efbfd38a32c5','0','2','0'), ('46992','20','walk[1.3.6.1.4.1.12356.101.14.4.3.1]','10604','SNMP walk wireless AP','wireless.ap.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Used for discovering wireless access points from FORTINET-FORTIGATE-MIB.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5135b14791f844e4b1e1cdef4817a5d2','0','2','0'), ('47069','21','','10627','Get ELB NLB alarms data','aws.elb.nlb.get_alarms','0s;m/1','0','0','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, metadata: ''http://169.254.169.254/latest/'', getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''GET'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload), ''''), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''region'', ''arn'', ''loadbalancer_name''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, request: function (method, region, service, params, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''), host = service + ''.'' + region + ''.amazonaws.com'', canonical_uri = ''/'', canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date'', canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + (AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken)); } Zabbix.log(4, ''[ AWS ELB ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ AWS ELB ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { try { response = JSON.parse(XML.toJson(response)); } catch (error) { throw ''Failed to parse response received from AWS CloudWatch API. Check debug log for more information.''; } } return response; }, getAlarms: function () { var payload = { ''Action'': ''DescribeAlarms'', ''Version'': ''2010-08-01'', ''MaxRecords'': 100 }, result = []; while (payload.NextToken !== '''') { var alarms = AWS.getField(AWS.request(''GET'', AWS.params.region, ''monitoring'', AWS.prepareParams(payload)), ''DescribeAlarmsResponse.DescribeAlarmsResult''); payload.NextToken = alarms.NextToken || ''''; alarms_list = AWS.getField(alarms, ''MetricAlarms''); regex = /loadbalancer\\/(.+)$/; if (!Array.isArray(alarms_list)) alarms_list = [alarms_list]; alarms_list.forEach(function (alarm) { var dimensions = alarm.Dimensions; if (Array.isArray(alarm.Metrics)) { alarm.Metrics.forEach(function (metric) { if (typeof metric.MetricStat === ''object'' && metric.MetricStat !== null && typeof metric.MetricStat.Metric === ''object'' && metric.MetricStat.Metric !== null && Array.isArray(metric.MetricStat.Metric.Dimensions)) { dimensions = dimensions.concat(metric.MetricStat.Metric.Dimensions); } }); } for (var i in dimensions) { if ((dimensions[i].Name === ''LoadBalancer'' && dimensions[i].Value === AWS.params.arn.match(regex)[1]) || (dimensions[i].Name === ''LoadBalancerName'' && dimensions[i].Value === AWS.params.loadbalancer_name)) { result.push(alarm); break; } } }); } return result; } }; try { AWS.setParams(JSON.parse(value)); return JSON.stringify(AWS.getAlarms()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS ELB Alarms ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'`DescribeAlarms` API method: https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_DescribeAlarms.html','0','7d','0','',NULL,'{$AWS.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','6d74c1a68ea9476dadc39b785f333d5d','0','2','0'), ('47070','21','','10627','Get metrics data','aws.elb.nlb.get_metrics','0s;m/1','0','0','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, metadata: ''http://169.254.169.254/latest/'', request_period: 60, getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''POST'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload), ''''), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''region'', ''arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, renderMetricQuery: function (period, arn) { var metrics_list = [ ''ActiveFlowCount:Average'', ''ActiveFlowCount_TCP:Average'', ''ActiveFlowCount_TLS:Average'', ''ActiveFlowCount_UDP:Average'', ''ClientTLSNegotiationErrorCount:Sum'', ''ConsumedLCUs:Sum'', ''ConsumedLCUs_TCP:Sum'', ''ConsumedLCUs_TLS:Sum'', ''ConsumedLCUs_UDP:Sum'', ''NewFlowCount:Sum'', ''NewFlowCount_TCP:Sum'', ''NewFlowCount_TLS:Sum'', ''NewFlowCount_UDP:Sum'', ''PeakPacketsPerSecond:Maximum'', ''PortAllocationErrorCount:Sum'', ''SecurityGroupBlockedFlowCount_Inbound_ICMP:Sum'', ''SecurityGroupBlockedFlowCount_Inbound_TCP:Sum'', ''SecurityGroupBlockedFlowCount_Inbound_UDP:Sum'', ''SecurityGroupBlockedFlowCount_Outbound_ICMP:Sum'', ''SecurityGroupBlockedFlowCount_Outbound_TCP:Sum'', ''SecurityGroupBlockedFlowCount_Outbound_UDP:Sum'', ''ProcessedBytes:Sum'', ''ProcessedBytes_TCP:Sum'', ''ProcessedBytes_TLS:Sum'', ''ProcessedBytes_UDP:Sum'', ''ProcessedPackets:Sum'', ''TargetTLSNegotiationErrorCount:Sum'', ''TCP_Client_Reset_Count:Sum'', ''TCP_ELB_Reset_Count:Sum'', ''TCP_Target_Reset_Count:Sum'', ''UnhealthyRoutingFlowCount:Sum'' ], regex = /loadbalancer\\/(.+)$/; var metric_payload = []; metrics_list.forEach(function (metric, index) { var parts = metric.split('':'', 2); metric_payload.push({ ''Id'': ''m'' + index, ''MetricStat'': { ''Metric'': { ''MetricName'': parts[0], ''Namespace'': ''AWS/NetworkELB'', ''Dimensions'': [ { ''Name'': ''LoadBalancer'', ''Value'': arn.match(regex)[1], } ] }, ''Period'': period, ''Stat'': parts[1], } }); }); return metric_payload; }, request: function (method, region, service, params, data) { if (typeof data === ''undefined'' || data === null) { data = JSON.stringify([]); } else { data = JSON.stringify(data) } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''), canonical_uri = ''/'', host = service + ''.'' + region + ''.amazonaws.com'', canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date'', canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''x-amz-content-sha256:'' + sha256(data)); request.addHeader(''X-Amz-Target: GraniteServiceVersion20100801.GetMetricData'') request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + (AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken)); } Zabbix.log(4, ''[ AWS ELB ] Sending request: '' + url); response = request.post(url, data); Zabbix.log(4, ''[ AWS ELB ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } return JSON.parse(response); }, getMetricsData: function () { var end_time = Math.floor((new Date().getTime()) / 1000), start_time = end_time - AWS.request_period * 60; payload = { ''StartTime'': start_time, ''EndTime'': end_time, ''ScanBy'': ''TimestampDescending'', ''MetricDataQueries'': AWS.renderMetricQuery(AWS.request_period, AWS.params.arn) }; return AWS.getField(AWS.request(''POST'', AWS.params.region, ''monitoring'', '''', payload), ''MetricDataResults''); } }; try { AWS.setParams(JSON.parse(value)); return JSON.stringify(AWS.getMetricsData()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS ELB Get metrics] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'Get ELB Network Load Balancer metrics. Full metrics list related to Network Load Balancer: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/load-balancer-cloudwatch-metrics.html','0','7d','0','',NULL,'{$AWS.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','76d374302b29430c8fe5813656ffd928','0','2','0'), ('47071','21','','10627','Get target groups','aws.elb.nlb.get_target_groups','0s;m/30','0','0','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, metadata: ''http://169.254.169.254/latest/'', getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''GET'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload), ''''), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''region'', ''arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, request: function (method, region, service, params, data) { if (typeof data === ''undefined'' || data === null) { data = JSON.stringify([]); } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''), canonical_uri = ''/'', host = service + ''.'' + region + ''.amazonaws.com'', canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date'', canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''x-amz-content-sha256:'' + sha256(data)); request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + (AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken)); } Zabbix.log(4, ''[ AWS ELB ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ AWS ELB ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } return JSON.parse(response); }, listTargetGroups: function () { var lld_array = [], regex = /targetgroup\\/(.+)$/, payload = { ''Action'': ''DescribeTargetGroups'', ''LoadBalancerArn'': AWS.params.arn, ''Version'': ''2015-12-01'' }; targets = AWS.getField(AWS.request(''GET'', AWS.params.region, ''elasticloadbalancing'', AWS.prepareParams(payload), ''''), ''DescribeTargetGroupsResponse.DescribeTargetGroupsResult.TargetGroups''); if (!Array.isArray(targets)) targets = [targets] targets.forEach(function (targets) { lld_array.push( { target_name: AWS.getField(targets, ''TargetGroupName''), target_arn: AWS.getField(targets, ''TargetGroupArn'').match(regex)[0], type: AWS.getField(targets, ''TargetType''), protocol: AWS.getField(targets, ''Protocol'') } ) }); return lld_array; } }; try { AWS.setParams(JSON.parse(value)); return JSON.stringify(AWS.listTargetGroups()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS ELB Target groups ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'Get ELB target group. `DescribeTargetGroups` API method: https://docs.aws.amazon.com/elasticloadbalancing/latest/APIReference/API_DescribeTargetGroups.html','0','7d','0','',NULL,'{$AWS.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','d80c238267744bc9b46de217acd93842','0','2','0'), ('47107','21','','10627','[{#AWS.ELB.TARGET.GROUP.NAME}]: Get metrics','aws.elb.nlb.target_groups.get_metrics["{#AWS.ELB.TARGET.GROUP.NAME}"]','0s;m/5','0','0','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, metadata: ''http://169.254.169.254/latest/'', request_period: 60, getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''POST'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload), ''''), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''region'', ''arn'', ''target_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, renderMetricQuery: function (period, arn, target_arn) { var metrics_list = [ ''HealthyHostCount:Minimum'', ''UnHealthyHostCount:Maximum'' ], regex = /loadbalancer\\/(.+)$/; var metric_payload = []; metrics_list.forEach(function (metric, index) { var parts = metric.split('':'', 2); metric_payload.push({ ''Id'': ''m'' + index, ''MetricStat'': { ''Metric'': { ''MetricName'': parts[0], ''Namespace'': ''AWS/NetworkELB'', ''Dimensions'': [ { ''Name'': ''LoadBalancer'', ''Value'': arn.match(regex)[1], }, { ''Name'': ''TargetGroup'', ''Value'': target_arn } ] }, ''Period'': period, ''Stat'': parts[1], } }); }); return metric_payload; }, request: function (method, region, service, params, data) { if (typeof data === ''undefined'' || data === null) { data = JSON.stringify([]); } else { data = JSON.stringify(data) } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''), canonical_uri = ''/'', host = service + ''.'' + region + ''.amazonaws.com'', canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date'', canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''x-amz-content-sha256:'' + sha256(data)); request.addHeader(''X-Amz-Target: GraniteServiceVersion20100801.GetMetricData'') request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + (AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken)); } Zabbix.log(4, ''[ AWS ELB ] Sending request: '' + url); response = request.post(url, data); Zabbix.log(4, ''[ AWS ELB ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } return JSON.parse(response); }, getMetricsData: function () { var end_time = Math.floor((new Date().getTime()) / 1000), start_time = end_time - AWS.request_period * 60; payload = { ''StartTime'': start_time, ''EndTime'': end_time, ''ScanBy'': ''TimestampDescending'', ''MetricDataQueries'': AWS.renderMetricQuery(AWS.request_period, AWS.params.arn, AWS.params.target_arn) }; return AWS.getField(AWS.request(''POST'', AWS.params.region, ''monitoring'', '''', payload), ''MetricDataResults''); } }; try { AWS.setParams(JSON.parse(value)); return JSON.stringify(AWS.getMetricsData()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS ELB Get targets group metrics] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','2',NULL,'Get the metrics of the ELB target group `{#AWS.ELB.TARGET.GROUP.NAME}`. Full list of metrics related to AWS ELB here: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/load-balancer-cloudwatch-metrics.html#user-authentication-metric-table','0','7d','0','',NULL,'{$AWS.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','9438a03b48bd4617a2363f83f758f107','0','2','0'), ('47131','22','','10628','Website {$WEBSITE.DOMAIN} Get data','website.get.data','{$WEBSITE.GET.DATA.INTERVAL}','0','0','0','4','','','','',NULL,NULL,'const Website = { params: {}, setParams(params) { [''scheme'', ''domain'',''width'', ''height''].forEach(function (field) { if (typeof params !== ''object'' || !params[field]) { throw new Error(''Required param is not set: '' + field + ''.''); } }); this.params = params; }, getOptions(browser) { switch ((browser || '''').trim().toLowerCase()) { case ''firefox'': return Browser.firefoxOptions(); case ''safari'': return Browser.safariOptions(); case ''edge'': return Browser.edgeOptions(); default: return Browser.chromeOptions(); } }, getPerformance() { const browser = new Browser(Website.getOptions(Website.params.browser)); const url = Website.params.scheme + ''://'' + Website.params.domain + ''/'' + Website.params.path const screenshot = ''''; browser.setScreenSize(Number(Website.params.width), Number(Website.params.height)) browser.navigate(url); browser.collectPerfEntries(); screenshot = browser.getScreenshot(); const result = browser.getResult(); result.screenshot = screenshot; return JSON.stringify(result); } }; try { Website.setParams(JSON.parse(value)); return Website.getPerformance(); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ Website get metrics] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'Returns the JSON with performance counters of the requested website.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b5d5b396dfdc4fc99e4c2d0216728027','0','2','0'), ('47158','16','','10629','License: Users: Get','jmx.discovery[attributes,"com.atlassian.jira:type=jira.license"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'License data for the discovery rule.','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','27334384618d4b2f91d700b188463a56','0','2','0'), ('47159','16','','10629','DB: Connections: Limit','jmx["com.atlassian.jira:name=BasicDataSource,connectionpool=connections",MaxTotal]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'Total allowed database connection count.','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','11a89b91831b4b5d899bff63ba935cbb','0','2','0'), ('47160','16','','10629','DB: Connections: Active','jmx["com.atlassian.jira:name=BasicDataSource,connectionpool=connections",NumActive]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'Active database connection count.','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f064dbd8781848c09184fb83a3a46097','0','2','0'), ('47161','16','','10629','DB: Reads',E'jmx["com.atlassian.jira:type=db.reads",invocation\\.count]','1m','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'Database read operations from Jira per second. Units: rps - read operations per second.','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2928e1e3b68940938a0b107eb5d72b95','0','2','0'), ('47162','16','','10629','DB: Writes',E'jmx["com.atlassian.jira:type=db.writes",invocation\\.count]','1m','31d','365d','0','0','','wps','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'Database write operations from Jira per second. Units: wps - write operations per second.','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ad5c16fa48864dc6b625a23f95ecf07a','0','2','0'), ('47163','16','','10629','Entity: Attachments','jmx["com.atlassian.jira:type=entity.attachments.total",Value]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'The number of attachments.','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','942556b043734986a2c5e261e97d5b1c','0','2','0'), ('47164','16','','10629','Entity: Components','jmx["com.atlassian.jira:type=entity.components.total",Value]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'The number of components.','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7aa003c53cb14555a88ee02e804ca45f','0','2','0'), ('47165','16','','10629','Entity: Custom fields','jmx["com.atlassian.jira:type=entity.customfields.total",Value]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'The number of custom fields.','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8ddf2cb59bb44d8a8fe7f2ca9e44ad20','0','2','0'), ('47166','16','','10629','Entity: Filters','jmx["com.atlassian.jira:type=entity.filters.total",Value]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'The number of filters.','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2c8d303953ed44b6815129a6a77ee5c6','0','2','0'), ('47167','16','','10629','Entity: Issues','jmx["com.atlassian.jira:type=entity.issues.total",Value]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'The number of issues.','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5d9a669481ab448eb5c9e0b64f3517b0','0','2','0'), ('47168','16','','10629','Entity: Versions created','jmx["com.atlassian.jira:type=entity.versions.total",Value]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'The number of versions created.','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b6a8a8ed8a9242858560b0743cc955aa','0','2','0'), ('47169','16','','10629','Issue: Created per minute','jmx["com.atlassian.jira:type=issue.created.count",Value]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'Issues created per minute.','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2152f7eb0bff4c9888e131634b770673','0','2','0'), ('47170','16','','10629','Issue: Search per minute','jmx["com.atlassian.jira:type=issue.search.count",Value]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'Issue searches performed per minute.','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','25fdfd0e3dce4d95ac2cdaed41ba5fb6','0','2','0'), ('47171','16','','10629','Issue: Updates per minute','jmx["com.atlassian.jira:type=issue.updated.count",Value]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'Issue updates performed per minute.','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','060d5f5ccf3a4ab197e4b95d9eb88b17','0','2','0'), ('47172','16','','10629','DB: Connections: Failed per minute','jmx["com.atlassian.jira:type=metrics,category00=db,category01=connection,category02=failures,name=counter",Count]','0;m0-59','31d','365d','0','0','','fpm','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'The count of database connection failures registered in one minute. Units: fpm - fails per minute.','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bb565c20d5ad4cf1a94aea5966ec12fa','0','2','0'), ('47173','16','','10629','DB: Connections: Latency','jmx["com.atlassian.jira:type=metrics,category00=db,category01=connection,category02=latency,name=value",Value]','1m','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'The latest measure of latency when querying the database.','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8fb52b3e150a4f5fb84e8b527aaaf5a5','0','2','0'), ('47174','16','','10629','DB: Pool: Connections: Active','jmx["com.atlassian.jira:type=metrics,category00=db,category01=connection,category02=pool,category03=numActive,name=value",Value]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'Active connection count of the database pool.','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2d22d7c78abe40b8a82fb70a8d1091d1','0','2','0'), ('47175','16','','10629','DB: Pool: Connections: Idle','jmx["com.atlassian.jira:type=metrics,category00=db,category01=connection,category02=pool,category03=numIdle,name=value",Value]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'Idle connection count of the database pool.','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c18d258cdb8f420e8cb18a9e6e7c2bf8','0','2','0'), ('47176','16','','10629','DB: Connections: State','jmx["com.atlassian.jira:type=metrics,category00=db,category01=connection,category02=state,name=value",Value]','1m','31d','365d','0','3','','','','',NULL,'1221','','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'The state of the database connection.','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fc7870021dc04bf499db8834be67987e','0','2','0'), ('47177','16','','10629','HTTP: Pool: Connections: Active','jmx["com.atlassian.jira:type=metrics,category00=http,category01=connection,category02=pool,category03=numActive,name=value",Value]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'The latest measure of the number of active connections in the HTTP connection pool.','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','25d810c7fd5e4116a8e2323b7a2537a0','0','2','0'), ('47178','16','','10629','HTTP: Pool: Connections: Idle','jmx["com.atlassian.jira:type=metrics,category00=http,category01=connection,category02=pool,category03=numIdle,name=value",Value]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'The latest measure of the number of idle connections in the HTTP connection pool.','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b244d220b7e24d48913f4e8e1b490732','0','2','0'), ('47179','16','','10629','HTTP: Sessions: Active','jmx["com.atlassian.jira:type=metrics,category00=http,category01=connection,category02=sessions,category03=active,name=value",Value]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'The latest measure of the number of active user sessions.','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','195bc0648f6445bbbe205a5869383c68','0','2','0'), ('47180','16','','10629','HTTP: Requests per minute','jmx["com.atlassian.jira:type=metrics,category00=http,category01=requests,name=value",Value]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'The latest measure of the total number of HTTP requests per minute.','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0d5a76f579284baf9eaa47180ed2c3fa','0','2','0'), ('47181','16','','10629','Mail: Queue: Processing state','jmx["com.atlassian.jira:type=metrics,category00=mail,category01=queue,category02=jobRunning,name=value",Value]','1m','31d','365d','0','0','','','','',NULL,'1223','','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'The latest indicator of the state of a mail queue job.','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7029cc0f375740c79790b410b92579a1','0','2','0'), ('47182','16','','10629','Mail: Sent per minute','jmx["com.atlassian.jira:type=metrics,category00=mail,category01=queue,category02=numEmailsSentPerMin,name=value",Value]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'The latest measure of the number of emails sent by the SMTP server per minute.','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','27f65a6cc7a147c2a95d3348db0cc9eb','0','2','0'), ('47183','16','','10629','Mail: Queue: Error','jmx["com.atlassian.jira:type=metrics,category00=mail,category01=queue,category02=numErrors,name=value",Value]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'The latest measure of the number of items in an error mail queue.','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ec7e12f99490496c814e9000108ec8c9','0','2','0'), ('47184','16','','10629','Mail: Queue','jmx["com.atlassian.jira:type=metrics,category00=mail,category01=queue,category02=numItems,name=value",Value]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'The latest measure of the number of items in a mail queue.','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','67789113243b4689af58e42d0a127878','0','2','0'), ('47185','16','','10629','Mail: Processed per minute','jmx["com.atlassian.jira:type=metrics,category00=mail,category01=queue,category02=numItemsProcessedPerMin,name=value",Value]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'The latest measure of the number of items processed by a mail queue per minute.','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3d311c2e46af4c98b11f5f1a50b5318e','0','2','0'), ('47186','16','','10629','Quicksearch: Concurrent searches','jmx["com.atlassian.jira:type=quicksearch.concurrent.search",Value]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','0',NULL,'The number of concurrent searches that are being performed in real-time by using the quick search.','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6a81cf33cc834115b352324a18355368','0','2','0'), ('47187','16','','10629','Storage discovery','jmx.discovery[beans,"com.atlassian.jira:type=metrics,category00=home,category01=*,category02=write,category03=latency,*,name=value"]','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','1',NULL,'Discovery of the Jira storage metrics.','0','7d','1','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6b671426094e4268b48f51eb97ddd8bf','0','2','0'), ('47188','16','','10629','Indexing latency discovery','jmx.discovery[beans,"com.atlassian.jira:type=metrics,category00=indexing,name=*"]','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','1',NULL,'Discovery of the Jira indexing metrics.','0','7d','1','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','886f8b2c518d4f3bb3d4441e29bf13fc','0','2','0'), ('47189','16','','10629','Issue latency discovery','jmx.discovery[beans,"com.atlassian.jira:type=metrics,category00=issue,name=*"]','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','1',NULL,'Discovery of the Jira issue latency metrics.','0','7d','1','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','70db70727f824102b769a652713432ad','0','2','0'), ('47190','16','','10629','Mail server discovery','jmx.discovery[beans,"com.atlassian.jira:type=metrics,category00=mail,category01=*,category02=connection,category03=state,name=*"]','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','1',NULL,'Discovery of the Jira connected mail servers.','0','7d','1','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2bd3e8ce78f84ccba599137b0e0ab6a0','0','2','0'), ('47192','16','','10629','Storage [{#JMXCATEGORY01}]: Latency','jmx["{#JMXOBJ}",Value]','15m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','2',NULL,'The median latency of writing a small file (~30 bytes) to `{#JMXCATEGORY01}`.','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','933c9c8b11e848f88775ee9b54f8d292','0','2','0'), ('47193','16','','10629','Indexing [{#JMXNAME}]: Latency','jmx["com.atlassian.jira:type=metrics,category00=indexing,name={#JMXNAME}",Mean]','15m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','2',NULL,'Average time spent on indexing operations.','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2b02e3232de34ae9803f80ac94ade79c','0','2','0'), ('47194','16','','10629','Issue [{#JMXNAME}]: Latency','jmx["{#JMXOBJ}",Mean]','15m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','2',NULL,'Average time spent on issue `{#JMXNAME}` operations.','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','da6d68fa14f24f58bcbe1157b9818321','0','2','0'), ('47195','16','','10629','Mail [{#JMXCATEGORY01},{#JMXNAME}]: Connection state','jmx["{#JMXOBJ}",Connected]','1m','31d','365d','0','3','','','','',NULL,'1221','','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','2',NULL,'Shows connection state of Jira to discovered mail server: `{#JMXCATEGORY01}-{#JMXNAME}`','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5281bee6b829433a875c0e026d805206','0','2','0'), ('47196','16','','10629','Mail [{#JMXCATEGORY01},{#JMXNAME}]: Failures per minute','jmx["{#JMXOBJ}",TotalFailures]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$JMX.USER}','{$JMX.PASSWORD}','','','2',NULL,'Count of failed connections to discovered mail server `{#JMXCATEGORY01}-{#JMXNAME}` per minute','0','7d','0','service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','949854436d6542f9a859a65cec20572d','0','2','0'), ('47199','5','','10048','Utilization of browser poller data collector processes, in %','zabbix[process,browser poller,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the browser poller processes have been busy for the last minute.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3ec67d79691b432c8a357fedfec77e6d','0','2','0'), ('47200','5','','10048','Utilization of internal poller data collector processes, in %','zabbix[process,internal poller,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the internal poller processes have been busy for the last minute.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a1278ad64af9401a834cd09b0c2f5766','0','2','0'), ('47203','5','','10047','Utilization of browser poller data collector processes, in %','zabbix[process,browser poller,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the browser poller processes have been busy for the last minute.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dd20332db0c64a63a82378c1e8b2685c','0','2','0'), ('47204','5','','10047','Utilization of configuration syncer worker internal processes, in %','zabbix[process,configuration syncer worker,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the configuration syncer worker processes have been busy for the last minute.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dfb04028770e4e3e8a154304b82284ba','0','2','0'), ('47205','5','','10047','Utilization of internal poller data collector processes, in %','zabbix[process,internal poller,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the internal poller processes have been busy for the last minute.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','912dd7b55d244aa9bbc3af17ba168b13','0','2','0'), ('47206','5','','10047','Utilization of proxy group manager internal processes, in %','zabbix[process,proxy group manager,avg,busy]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the proxy group manager processes have been busy for the last minute.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','306334d48ce6427d93ca8fbe292b8a11','0','2','0'), ('47215','21','','10630','Get data','azure.scaleset.data.get','1m','0','0','0','4','','','','',NULL,NULL,E'var Azure = { params: {}, token: null, setParams: function (params) { [''app_id'', ''password'', ''tenant_id'', ''subscription_id'', ''resource_id''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); Azure.params = params; }, login: function () { var response, login = new HttpRequest(); if (typeof Azure.params.proxy !== ''undefined'' && Azure.params.proxy !== '''') { login.setProxy(Azure.params.proxy); } login.addHeader(''Content-Type: application/x-www-form-urlencoded''); response = login.post( ''https://login.microsoftonline.com/'' + encodeURIComponent(Azure.params.tenant_id) + ''/oauth2/token'', ''grant_type=client_credentials&resource='' + encodeURIComponent(''https://management.azure.com/'') + ''&client_id='' + encodeURIComponent(Azure.params.app_id) + ''&client_secret='' + encodeURIComponent(Azure.params.password) ); if (login.getStatus() !== 200) { throw ''Login failed with status code '' + login.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse login session response.''; } if (!response.hasOwnProperty(''access_token'')) { throw ''Authentication response does not contain access token.''; } Azure.token = response[''access_token'']; }, request: function (url) { var response, request = new HttpRequest(); if (typeof Azure.params.proxy !== ''undefined'' && Azure.params.proxy !== '''') { request.setProxy(Azure.params.proxy); } if (!Azure.token) { throw ''Request does not contain access token.''; } request.addHeader(''Content-Type: application/json''); request.addHeader(''Authorization: Bearer '' + Azure.token); Zabbix.log(4, ''[ AzureVMSS ] request url: '' + url); response = request.get(url); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { return JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API.''; } }, getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getMetricsData: function () { var data = {}, metric_endpoints = { ''main_metrics'': ''/providers/Microsoft.Insights/metrics?metricnames='' + encodeURIComponent(''Available Memory Bytes,CPU Credits Consumed,CPU Credits Remaining,Percentage CPU,Inbound Flows,Inbound Flows Maximum Creation Rate,Network In,Network In Total,Network Out,Network Out Total,Outbound Flows,Outbound Flows Maximum Creation Rate,VmAvailabilityMetric'') + ''&api-version=2021-05-01×pan=PT1M'', ''disks_metrics'': ''/providers/Microsoft.Insights/metrics?metricnames='' + encodeURIComponent(''Data Disk Bandwidth Consumed Percentage,Data Disk IOPS Consumed Percentage,Data Disk Max Burst Bandwidth,Data Disk Max Burst IOPS,Data Disk Queue Depth,Data Disk Read Bytes/sec,Data Disk Read Operations/Sec,Data Disk Target Bandwidth,Data Disk Target IOPS,Data Disk Used Burst BPS Credits Percentage,Data Disk Used Burst IO Credits Percentage,Data Disk Write Bytes/sec,Data Disk Write Operations/Sec,Disk Read Bytes,Disk Read Operations/Sec,Disk Write Bytes,Disk Write Operations/Sec'') + ''&api-version=2021-05-01×pan=PT1M'', ''os_disk_metrics'': ''/providers/Microsoft.Insights/metrics?metricnames='' + encodeURIComponent(''OS Disk Bandwidth Consumed Percentage,OS Disk IOPS Consumed Percentage,OS Disk Max Burst Bandwidth,OS Disk Max Burst IOPS,OS Disk Queue Depth,OS Disk Read Bytes/sec,OS Disk Read Operations/Sec,OS Disk Target Bandwidth,OS Disk Target IOPS,OS Disk Used Burst BPS Credits Percentage,OS Disk Used Burst IO Credits Percentage,OS Disk Write Bytes/sec,OS Disk Write Operations/Sec'') + ''&api-version=2021-05-01×pan=PT1M'', ''premium_and_vm_metrics'': ''/providers/Microsoft.Insights/metrics?metricnames='' + encodeURIComponent(''Premium Data Disk Cache Read Hit,Premium Data Disk Cache Read Miss,Premium OS Disk Cache Read Hit,Premium OS Disk Cache Read Miss,VM Cached Bandwidth Consumed Percentage,VM Cached IOPS Consumed Percentage,VM Local Used Burst BPS Credits Percentage,VM Local Used Burst IO Credits Percentage,VM Remote Used Burst BPS Credits Percentage,VM Remote Used Burst IO Credits Percentage,VM Uncached Bandwidth Consumed Percentage,VM Uncached IOPS Consumed Percentage'') + ''&api-version=2021-05-01×pan=PT1M'' }; data.metrics = {}; Object.keys(metric_endpoints).forEach(function (field) { metrics = Azure.getField(Azure.request(''https://management.azure.com'' + Azure.params.resource_id + metric_endpoints[field]), ''value''); for (k in metrics) { key = Azure.getField(metrics[k], ''name.value'').replace(/(\\s|\\/)+/g, ''''); if (metrics[k].timeseries.length === 0) { metrics[k].timeseries.push({ ''data'': [''nodata''] }) } data.metrics[key] = Azure.getField(metrics[k], ''timeseries.0.data.0''); } }); data.capacity = Azure.getField(Azure.request(''https://management.azure.com'' + Azure.params.resource_id + ''?api-version=2024-03-01''), ''sku.capacity''); data.health = Azure.getField(Azure.request(''https://management.azure.com'' + Azure.params.resource_id + ''/providers/Microsoft.ResourceHealth/availabilityStatuses?api-version=2020-05-01''), ''value.0.properties''); return data } }; try { Azure.setParams(JSON.parse(value)); Azure.login(); return JSON.stringify(Azure.getMetricsData()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AzureVMSS ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'Gathers data of the virtual machine scale set.','0','7d','0','',NULL,'{$AZURE.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','f783d047862144f2baed76bb281cec5b','0','2','0'), ('47282','21','','10632','Get Lambda alarms data','aws.lambda.get_alarms','0s;m/1','0','0','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, metadata: ''http://169.254.169.254/latest/'', getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''GET'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload), ''''), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''region'', ''name''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, request: function (method, region, service, params, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''), host = service + ''.'' + region + ''.amazonaws.com'', canonical_uri = ''/'', canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date'', canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + (AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken)); } Zabbix.log(4, ''[ AWS Lambda Alarms ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ AWS Lambda Alarms ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { try { response = JSON.parse(XML.toJson(response)); } catch (error) { throw ''Failed to parse response received from AWS CloudWatch API. Check debug log for more information.''; } } return response; }, getAlarms: function () { var payload = { ''Action'': ''DescribeAlarms'', ''Version'': ''2010-08-01'', ''MaxRecords'': 100 }, result = []; while (payload.NextToken !== '''') { var alarms = AWS.getField(AWS.request(''GET'', AWS.params.region, ''monitoring'', AWS.prepareParams(payload)), ''DescribeAlarmsResponse.DescribeAlarmsResult''); payload.NextToken = alarms.NextToken || ''''; alarms_list = AWS.getField(alarms, ''MetricAlarms''); if (!Array.isArray(alarms_list)) alarms_list = [alarms_list]; alarms_list.forEach(function (alarm) { var dimensions = alarm.Dimensions; if (Array.isArray(alarm.Metrics)) { alarm.Metrics.forEach(function (metric) { if (typeof metric.MetricStat === ''object'' && metric.MetricStat !== null && typeof metric.MetricStat.Metric === ''object'' && metric.MetricStat.Metric !== null && Array.isArray(metric.MetricStat.Metric.Dimensions)) { dimensions = dimensions.concat(metric.MetricStat.Metric.Dimensions); } }); } for (var i in dimensions) { if (dimensions[i].Name === ''FunctionName'' && dimensions[i].Value === AWS.params.name) { result.push(alarm); break; } } }); } return result; } }; try { AWS.setParams(JSON.parse(value)); return JSON.stringify(AWS.getAlarms()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS Lambda Alarms ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'`DescribeAlarms` API method: https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_DescribeAlarms.html','0','7d','0','',NULL,'{$AWS.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','c80b25e889004287b6131c00000a3ad7','0','2','0'), ('47283','21','','10632','Get metrics data','aws.lambda.get_metrics','0s;m/1','0','0','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, metadata: ''http://169.254.169.254/latest/'', request_period: 60, getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''POST'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload), ''''), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''region'', ''name''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, renderMetricQuery: function (period, name) { var metrics_list = [ ''AsyncEventsReceived:Average'', ''AsyncEventAge:Average'', ''AsyncEventsDropped:Average'', ''ConcurrentExecutions:Average'', ''UnreservedConcurrentExecutions:Sum'', ''Invocations:Sum'', ''Errors:Sum'', ''Throttles:Sum'', ''Duration:Average'' ]; var metric_payload = []; metrics_list.forEach(function (metric, index) { var parts = metric.split('':'', 2); metric_payload.push({ ''Id'': ''m'' + index, ''MetricStat'': { ''Metric'': { ''MetricName'': parts[0], ''Namespace'': ''AWS/Lambda'', ''Dimensions'': [ { ''Name'': ''FunctionName'', ''Value'': name, } ] }, ''Period'': period, ''Stat'': parts[1], } }); }); return metric_payload; }, request: function (method, region, service, params, data) { if (typeof data === ''undefined'' || data === null) { data = JSON.stringify([]); } else { data = JSON.stringify(data) } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''), canonical_uri = ''/'', host = service + ''.'' + region + ''.amazonaws.com'', canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date'', canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''x-amz-content-sha256:'' + sha256(data)); request.addHeader(''X-Amz-Target: GraniteServiceVersion20100801.GetMetricData'') request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + (AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken)); } Zabbix.log(4, ''[ AWS Lambda Get metrics ] Sending request: '' + url); response = request.post(url, data); Zabbix.log(4, ''[ AWS Lambda Get metrics ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } return JSON.parse(response); }, getMetricsData: function () { var end_time = Math.floor((new Date().getTime()) / 1000), start_time = end_time - AWS.request_period * 60; payload = { ''StartTime'': start_time, ''EndTime'': end_time, ''ScanBy'': ''TimestampDescending'', ''MetricDataQueries'': AWS.renderMetricQuery(AWS.request_period, AWS.params.name) }; return AWS.getField(AWS.request(''POST'', AWS.params.region, ''monitoring'', '''', payload), ''MetricDataResults''); } }; try { AWS.setParams(JSON.parse(value)); return JSON.stringify(AWS.getMetricsData()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS Lambda Get metrics ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'Get Lambda function metrics. Full metrics list related to the Lambda function: https://docs.aws.amazon.com/lambda/latest/dg/monitoring-metrics.html','0','7d','0','',NULL,'{$AWS.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','24c4972d090f4e72abc473752aac27d8','0','2','0'), ('47300','21','','10535','Lambda discovery','aws.lambda.discovery','12h','31d','365d','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, metadata: ''http://169.254.169.254/latest/'', getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''GET'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload), '''', ''''), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''describe_region'', ''region_match'', ''region_not_match''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, request: function (method, region, service, params, data, uri) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''), canonical_uri = ''/'' + uri, host = service + ''.'' + region + ''.amazonaws.com'', canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date'', canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''x-amz-content-sha256:'' + sha256(data)); request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + (AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken)); } Zabbix.log(4, ''[ AWS Lambda ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ AWS Lambda ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { try { response = JSON.parse(XML.toJson(response)); } catch (error) { throw ''Failed to parse response received from AWS API. Check debug log for more information.''; } } return response; }, listRegions: function () { var payload = { ''Action'': ''DescribeRegions'', ''Version'': ''2016-11-15'' }; regions = AWS.getField(AWS.request(''GET'', AWS.params.describe_region, ''ec2'', AWS.prepareParams(payload), '''', ''''), ''DescribeRegionsResponse.regionInfo.item''); if (!Array.isArray(regions)) regions = [regions] return regions }, listFunctions: function () { var lldArray = [], regions = AWS.listRegions(); payload = { ''FunctionVersion'': ''ALL'', ''MaxItems'': ''10000'' }; regions.forEach(function (region) { var region_name = AWS.getField(region, ''regionName''); if (region_name.match(AWS.params.region_match) === null || region_name.match(AWS.params.region_not_match) !== null) return; lambdaFunction = AWS.getField(AWS.request(''GET'', region_name, ''lambda'', AWS.prepareParams(payload), '''', ''2015-03-31/functions''), ''Functions''); if (!Array.isArray(lambdaFunction)) lambdaFunction = [lambdaFunction] lambdaFunction.forEach(function (lambdaFunction) { lldArray.push( { name: AWS.getField(lambdaFunction, ''FunctionName''), arn: AWS.getField(lambdaFunction, ''FunctionArn''), runtime: AWS.getField(lambdaFunction, ''Runtime''), version: AWS.getField(lambdaFunction, ''Version''), region: region_name } ) }); }); return lldArray; } }; try { AWS.setParams(JSON.parse(value)); return JSON.stringify(AWS.listFunctions()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS Lambda ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','1',NULL,'Get Lambda functions.','0','7d','1','',NULL,'{$AWS.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','691d96408dbc4c5c9235932cdbe70648','0','2','0'), ('47301','21','','10634','Get branches','github.repo.branches.get','{$GITHUB.INTERVAL:"get_branches"}','0','0','0','4','','','','',NULL,NULL,E'var github = { params: {}, setParams: function (params, required) { required = required || []; required.concat([''api_url'', ''user_agent'', ''api_version'', ''repo_owner'', ''repo_name'', ''pagination_required'', ''api_token'']).forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required parameter is not set: "'' + field + ''".''; } }); github.params = params; if (typeof github.params.api_url === ''string'' && !github.params.api_url.endsWith(''/'')) { github.params.api_url += ''/''; } }, apiRequest: function (url, pagination_required) { const next_pattern = /<([^>]+)>;\\s*rel="next"/i; var request = new HttpRequest(), response, headers, final_data = { headers: {}, data: [] }; pagination_required = (typeof pagination_required !== ''undefined'') ? pagination_required : ''true''; request.addHeader(''User-Agent: '' + github.params.user_agent); request.addHeader(''Accept: application/vnd.github+json''); request.addHeader(''X-GitHub-Api-Version: '' + github.params.api_version); request.addHeader(''Authorization: Bearer '' + github.params.api_token); if (typeof github.params.http_proxy !== ''undefined'' && github.params.http_proxy !== '''') { request.setProxy(github.params.http_proxy); Zabbix.log(4, ''[ GitHub Repo ] Using HTTP proxy: '' + github.params.http_proxy); } while (url) { Zabbix.log(4, ''[ GitHub Repo ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ GitHub Repo ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API. Check debug log for more information.''; } var parsed_data = github.parseData(response); final_data.data = final_data.data.concat(parsed_data); headers = request.getHeaders(); url = ((headers.link || '''').match(next_pattern) || [])[1]; if (pagination_required === ''false'') { url = ''''; } } final_data.headers = request.getHeaders(); delete request; return final_data; }, parseData: function (response_data) { if (!response_data) { return []; } const normalization_required = "total_count" in response_data && !("url" in response_data); if (!normalization_required) return response_data; delete response_data.incomplete_results; delete response_data.repository_selection; delete response_data.total_count; const namespaceKey = Object.keys(response_data)[0]; response_data = response_data[namespaceKey]; return response_data; }, itemsCount: function (response_data) { const last_page_number = /<[^>]+page=(\\d+)>;\\s*rel="last"/i; if (response_data.headers.link){ return response_data.headers.link.match(last_page_number)[1]; } return response_data.data.length; } } try { github.setParams(JSON.parse(value), [''api_query'']); var result = github.apiRequest(github.params.api_url + github.params.api_query + ''?'' + github.params.query_params || '''', github.params.pagination_required); return JSON.stringify(result); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ GitHub Repo ] ERROR: '' + error); return JSON.stringify({ error: error }); }','','0','','','','','0',NULL,'Get the repository branches. Information about endpoint: https://docs.github.com/en/rest/branches/branches?apiVersion=2022-11-28#list-branches','0','7d','0','',NULL,'{$GITHUB.TIMEOUT:"get_branches"}','','','','200','1','0','','','0','0','0','0','0','0','0','e348ae4bd2c04b5c88df2f5cb422eb61','0','2','0'), ('47302','21','','10634','Get issue count','github.repo.issues.get','{$GITHUB.INTERVAL:"get_issues_count"}','0','0','0','4','','','','',NULL,NULL,E'var github = { params: {}, setParams: function (params, required) { required = required || []; required.concat([''api_url'', ''user_agent'', ''api_version'', ''repo_owner'', ''repo_name'', ''pagination_required'', ''api_token'']).forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required parameter is not set: "'' + field + ''".''; } }); github.params = params; if (typeof github.params.api_url === ''string'' && !github.params.api_url.endsWith(''/'')) { github.params.api_url += ''/''; } }, apiRequest: function (url, pagination_required) { const next_pattern = /<([^>]+)>;\\s*rel="next"/i; var request = new HttpRequest(), response, headers, final_data = { headers: {}, data: [] }; pagination_required = (typeof pagination_required !== ''undefined'') ? pagination_required : ''true''; request.addHeader(''User-Agent: '' + github.params.user_agent); request.addHeader(''Accept: application/vnd.github+json''); request.addHeader(''X-GitHub-Api-Version: '' + github.params.api_version); request.addHeader(''Authorization: Bearer '' + github.params.api_token); if (typeof github.params.http_proxy !== ''undefined'' && github.params.http_proxy !== '''') { request.setProxy(github.params.http_proxy); Zabbix.log(4, ''[ GitHub Repo ] Using HTTP proxy: '' + github.params.http_proxy); } while (url) { Zabbix.log(4, ''[ GitHub Repo ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ GitHub Repo ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API. Check debug log for more information.''; } var parsed_data = github.parseData(response); final_data.data = final_data.data.concat(parsed_data); headers = request.getHeaders(); url = ((headers.link || '''').match(next_pattern) || [])[1]; if (pagination_required === ''false'') { url = ''''; } } final_data.headers = request.getHeaders(); delete request; return final_data; }, parseData: function (response_data) { if (!response_data) { return []; } const normalization_required = "total_count" in response_data && !("url" in response_data); if (!normalization_required) return response_data; delete response_data.incomplete_results; delete response_data.repository_selection; delete response_data.total_count; const namespaceKey = Object.keys(response_data)[0]; response_data = response_data[namespaceKey]; return response_data; }, itemsCount: function (response_data) { const last_page_number = /<[^>]+page=(\\d+)>;\\s*rel="last"/i; if (response_data.headers.link){ return response_data.headers.link.match(last_page_number)[1]; } return response_data.data.length; } } try { github.setParams(JSON.parse(value)); var issues_count, issues_count_result = { issues: { total: 0, open: 0, closed: 0 }, pr: { total: 0, open: 0, closed: 0 } }; issues_count = github.apiRequest(github.params.api_url + ''repos/'' + github.params.repo_owner + ''/'' + github.params.repo_name + ''/pulls?state=all&per_page=1'', github.params.pagination_required); issues_count_result.pr.total = github.itemsCount(issues_count); issues_count = github.apiRequest(github.params.api_url + ''repos/'' + github.params.repo_owner + ''/'' + github.params.repo_name + ''/pulls?state=open&per_page=1'', github.params.pagination_required); issues_count_result.pr.open = github.itemsCount(issues_count); issues_count_result.pr.closed = issues_count_result.pr.total - issues_count_result.pr.open; issues_count = github.apiRequest(github.params.api_url + ''repos/'' + github.params.repo_owner + ''/'' + github.params.repo_name + ''/issues?state=all&per_page=1'', github.params.pagination_required); issues_count_result.issues.total = github.itemsCount(issues_count) - issues_count_result.pr.total; issues_count = github.apiRequest(github.params.api_url + ''repos/'' + github.params.repo_owner + ''/'' + github.params.repo_name + ''/issues?state=open&per_page=1'', github.params.pagination_required); issues_count_result.issues.open = github.itemsCount(issues_count) - issues_count_result.pr.open; issues_count_result.issues.closed = issues_count_result.issues.total - issues_count_result.issues.open; return JSON.stringify(issues_count_result); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ GitHub Repo ] ERROR: '' + error); return JSON.stringify({ error: error }); }','','0','','','','','0',NULL,'Get the count of issues and pull requests in the repository (total, open, closed). Information about endpoint for issues: https://docs.github.com/en/rest/issues/issues?apiVersion=2022-11-28#list-repository-issues Information about endpoint for pull requests: https://docs.github.com/en/rest/pulls/pulls?apiVersion=2022-11-28#list-pull-requests','0','7d','0','',NULL,'{$GITHUB.TIMEOUT:"get_issues_count"}','','','','200','1','0','','','0','0','0','0','0','0','0','f88f02dc593844a89eb601e833a1a19c','0','2','0'), ('47303','21','','10634','Number of releases','github.repo.releases.count','{$GITHUB.INTERVAL:"get_releases_count"}','31d','365d','0','3','','','','',NULL,NULL,E'var github = { params: {}, setParams: function (params, required) { required = required || []; required.concat([''api_url'', ''user_agent'', ''api_version'', ''repo_owner'', ''repo_name'', ''pagination_required'', ''api_token'']).forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required parameter is not set: "'' + field + ''".''; } }); github.params = params; if (typeof github.params.api_url === ''string'' && !github.params.api_url.endsWith(''/'')) { github.params.api_url += ''/''; } }, apiRequest: function (url, pagination_required) { const next_pattern = /<([^>]+)>;\\s*rel="next"/i; var request = new HttpRequest(), response, headers, final_data = { headers: {}, data: [] }; pagination_required = (typeof pagination_required !== ''undefined'') ? pagination_required : ''true''; request.addHeader(''User-Agent: '' + github.params.user_agent); request.addHeader(''Accept: application/vnd.github+json''); request.addHeader(''X-GitHub-Api-Version: '' + github.params.api_version); request.addHeader(''Authorization: Bearer '' + github.params.api_token); if (typeof github.params.http_proxy !== ''undefined'' && github.params.http_proxy !== '''') { request.setProxy(github.params.http_proxy); Zabbix.log(4, ''[ GitHub Repo ] Using HTTP proxy: '' + github.params.http_proxy); } while (url) { Zabbix.log(4, ''[ GitHub Repo ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ GitHub Repo ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API. Check debug log for more information.''; } var parsed_data = github.parseData(response); final_data.data = final_data.data.concat(parsed_data); headers = request.getHeaders(); url = ((headers.link || '''').match(next_pattern) || [])[1]; if (pagination_required === ''false'') { url = ''''; } } final_data.headers = request.getHeaders(); delete request; return final_data; }, parseData: function (response_data) { if (!response_data) { return []; } const normalization_required = "total_count" in response_data && !("url" in response_data); if (!normalization_required) return response_data; delete response_data.incomplete_results; delete response_data.repository_selection; delete response_data.total_count; const namespaceKey = Object.keys(response_data)[0]; response_data = response_data[namespaceKey]; return response_data; }, itemsCount: function (response_data) { const last_page_number = /<[^>]+page=(\\d+)>;\\s*rel="last"/i; if (response_data.headers.link){ return response_data.headers.link.match(last_page_number)[1]; } return response_data.data.length; } } try { github.setParams(JSON.parse(value), [''api_query'']); var result = github.apiRequest(github.params.api_url + github.params.api_query + ''?'' + github.params.query_params || '''', github.params.pagination_required); return github.itemsCount(result); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ GitHub Repo ] ERROR: '' + error); return JSON.stringify({ error: error }); }','','0','','','','','0',NULL,'The number of releases in the repository. Note that this number also includes draft releases. Information about endpoint: https://docs.github.com/en/rest/releases/releases?apiVersion=2022-11-28#list-releases','0','7d','0','',NULL,'{$GITHUB.TIMEOUT:"get_releases_count"}','','','','200','1','0','','','0','0','0','0','0','0','0','0098bfc3ed5c4181a7dcd1eceb8e7251','0','2','0'), ('47304','21','','10634','Get repository','github.repo.repository.get','{$GITHUB.INTERVAL:"get_repo"}','0','0','0','4','','','','',NULL,NULL,E'var github = { params: {}, setParams: function (params, required) { required = required || []; required.concat([''api_url'', ''user_agent'', ''api_version'', ''repo_owner'', ''repo_name'', ''pagination_required'', ''api_token'']).forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required parameter is not set: "'' + field + ''".''; } }); github.params = params; if (typeof github.params.api_url === ''string'' && !github.params.api_url.endsWith(''/'')) { github.params.api_url += ''/''; } }, apiRequest: function (url, pagination_required) { const next_pattern = /<([^>]+)>;\\s*rel="next"/i; var request = new HttpRequest(), response, headers, final_data = { headers: {}, data: [] }; pagination_required = (typeof pagination_required !== ''undefined'') ? pagination_required : ''true''; request.addHeader(''User-Agent: '' + github.params.user_agent); request.addHeader(''Accept: application/vnd.github+json''); request.addHeader(''X-GitHub-Api-Version: '' + github.params.api_version); request.addHeader(''Authorization: Bearer '' + github.params.api_token); if (typeof github.params.http_proxy !== ''undefined'' && github.params.http_proxy !== '''') { request.setProxy(github.params.http_proxy); Zabbix.log(4, ''[ GitHub Repo ] Using HTTP proxy: '' + github.params.http_proxy); } while (url) { Zabbix.log(4, ''[ GitHub Repo ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ GitHub Repo ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API. Check debug log for more information.''; } var parsed_data = github.parseData(response); final_data.data = final_data.data.concat(parsed_data); headers = request.getHeaders(); url = ((headers.link || '''').match(next_pattern) || [])[1]; if (pagination_required === ''false'') { url = ''''; } } final_data.headers = request.getHeaders(); delete request; return final_data; }, parseData: function (response_data) { if (!response_data) { return []; } const normalization_required = "total_count" in response_data && !("url" in response_data); if (!normalization_required) return response_data; delete response_data.incomplete_results; delete response_data.repository_selection; delete response_data.total_count; const namespaceKey = Object.keys(response_data)[0]; response_data = response_data[namespaceKey]; return response_data; }, itemsCount: function (response_data) { const last_page_number = /<[^>]+page=(\\d+)>;\\s*rel="last"/i; if (response_data.headers.link){ return response_data.headers.link.match(last_page_number)[1]; } return response_data.data.length; } } try { github.setParams(JSON.parse(value), [''api_query'']); var repo_data = github.apiRequest(github.params.api_url + github.params.api_query); if (repo_data.data[0].fork === false) { var repo_community_profile = github.apiRequest(github.params.api_url + github.params.api_query + ''/community/profile''); repo_data.data[0].zbx_community_profile = repo_community_profile.data[0]; } return JSON.stringify(repo_data); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ GitHub Repo ] ERROR: '' + error); return JSON.stringify({ error: error }); }','','0','','','','','0',NULL,'Get the general repository information. If the repository is not a fork, the community profile metrics are also retrieved. Information about endpoint: https://docs.github.com/en/rest/repos/repos?apiVersion=2022-11-28#get-a-repository Information about community profile metrics: https://docs.github.com/en/rest/metrics/community?apiVersion=2022-11-28#get-community-profile-metrics','0','7d','0','',NULL,'{$GITHUB.TIMEOUT:"get_repo"}','','','','200','1','0','','','0','0','0','0','0','0','0','37e94a93bf924d84bb6609eec47ff081','0','2','0'), ('47305','21','','10634','Get self-hosted runners','github.repo.runners.get','{$GITHUB.INTERVAL:"get_runners"}','0','0','0','4','','','','',NULL,NULL,E'var github = { params: {}, setParams: function (params, required) { required = required || []; required.concat([''api_url'', ''user_agent'', ''api_version'', ''repo_owner'', ''repo_name'', ''pagination_required'', ''api_token'']).forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required parameter is not set: "'' + field + ''".''; } }); github.params = params; if (typeof github.params.api_url === ''string'' && !github.params.api_url.endsWith(''/'')) { github.params.api_url += ''/''; } }, apiRequest: function (url, pagination_required) { const next_pattern = /<([^>]+)>;\\s*rel="next"/i; var request = new HttpRequest(), response, headers, final_data = { headers: {}, data: [] }; pagination_required = (typeof pagination_required !== ''undefined'') ? pagination_required : ''true''; request.addHeader(''User-Agent: '' + github.params.user_agent); request.addHeader(''Accept: application/vnd.github+json''); request.addHeader(''X-GitHub-Api-Version: '' + github.params.api_version); request.addHeader(''Authorization: Bearer '' + github.params.api_token); if (typeof github.params.http_proxy !== ''undefined'' && github.params.http_proxy !== '''') { request.setProxy(github.params.http_proxy); Zabbix.log(4, ''[ GitHub Repo ] Using HTTP proxy: '' + github.params.http_proxy); } while (url) { Zabbix.log(4, ''[ GitHub Repo ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ GitHub Repo ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API. Check debug log for more information.''; } var parsed_data = github.parseData(response); final_data.data = final_data.data.concat(parsed_data); headers = request.getHeaders(); url = ((headers.link || '''').match(next_pattern) || [])[1]; if (pagination_required === ''false'') { url = ''''; } } final_data.headers = request.getHeaders(); delete request; return final_data; }, parseData: function (response_data) { if (!response_data) { return []; } const normalization_required = "total_count" in response_data && !("url" in response_data); if (!normalization_required) return response_data; delete response_data.incomplete_results; delete response_data.repository_selection; delete response_data.total_count; const namespaceKey = Object.keys(response_data)[0]; response_data = response_data[namespaceKey]; return response_data; }, itemsCount: function (response_data) { const last_page_number = /<[^>]+page=(\\d+)>;\\s*rel="last"/i; if (response_data.headers.link){ return response_data.headers.link.match(last_page_number)[1]; } return response_data.data.length; } } try { github.setParams(JSON.parse(value), [''api_query'']); var result = github.apiRequest(github.params.api_url + github.params.api_query + ''?'' + github.params.query_params || '''', github.params.pagination_required); return JSON.stringify(result); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ GitHub Repo ] ERROR: '' + error); return JSON.stringify({ error: error }); }','','0','','','','','0',NULL,'Get the self-hosted runners of the repository. Note that admin access to the repository is required to use this endpoint: https://docs.github.com/en/rest/actions/self-hosted-runners?apiVersion=2022-11-28#list-self-hosted-runners-for-a-repository','0','7d','0','',NULL,'{$GITHUB.TIMEOUT:"get_runners"}','','','','200','1','0','','','0','0','0','0','0','0','0','a0ca909d3c734d859594771985a5c302','0','2','0'), ('47306','21','','10634','Number of tags','github.repo.tags.count','{$GITHUB.INTERVAL:"get_tags_count"}','31d','365d','0','3','','','','',NULL,NULL,E'var github = { params: {}, setParams: function (params, required) { required = required || []; required.concat([''api_url'', ''user_agent'', ''api_version'', ''repo_owner'', ''repo_name'', ''pagination_required'', ''api_token'']).forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required parameter is not set: "'' + field + ''".''; } }); github.params = params; if (typeof github.params.api_url === ''string'' && !github.params.api_url.endsWith(''/'')) { github.params.api_url += ''/''; } }, apiRequest: function (url, pagination_required) { const next_pattern = /<([^>]+)>;\\s*rel="next"/i; var request = new HttpRequest(), response, headers, final_data = { headers: {}, data: [] }; pagination_required = (typeof pagination_required !== ''undefined'') ? pagination_required : ''true''; request.addHeader(''User-Agent: '' + github.params.user_agent); request.addHeader(''Accept: application/vnd.github+json''); request.addHeader(''X-GitHub-Api-Version: '' + github.params.api_version); request.addHeader(''Authorization: Bearer '' + github.params.api_token); if (typeof github.params.http_proxy !== ''undefined'' && github.params.http_proxy !== '''') { request.setProxy(github.params.http_proxy); Zabbix.log(4, ''[ GitHub Repo ] Using HTTP proxy: '' + github.params.http_proxy); } while (url) { Zabbix.log(4, ''[ GitHub Repo ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ GitHub Repo ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API. Check debug log for more information.''; } var parsed_data = github.parseData(response); final_data.data = final_data.data.concat(parsed_data); headers = request.getHeaders(); url = ((headers.link || '''').match(next_pattern) || [])[1]; if (pagination_required === ''false'') { url = ''''; } } final_data.headers = request.getHeaders(); delete request; return final_data; }, parseData: function (response_data) { if (!response_data) { return []; } const normalization_required = "total_count" in response_data && !("url" in response_data); if (!normalization_required) return response_data; delete response_data.incomplete_results; delete response_data.repository_selection; delete response_data.total_count; const namespaceKey = Object.keys(response_data)[0]; response_data = response_data[namespaceKey]; return response_data; }, itemsCount: function (response_data) { const last_page_number = /<[^>]+page=(\\d+)>;\\s*rel="last"/i; if (response_data.headers.link){ return response_data.headers.link.match(last_page_number)[1]; } return response_data.data.length; } } try { github.setParams(JSON.parse(value), [''api_query'']); var result = github.apiRequest(github.params.api_url + github.params.api_query + ''?'' + github.params.query_params || '''', github.params.pagination_required); return github.itemsCount(result); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ GitHub Repo ] ERROR: '' + error); return JSON.stringify({ error: error }); }','','0','','','','','0',NULL,'The number of tags in the repository. Information about endpoint: https://docs.github.com/en/rest/repos/repos?apiVersion=2022-11-28#list-repository-tags','0','7d','0','',NULL,'{$GITHUB.TIMEOUT:"get_tags_count"}','','','','200','1','0','','','0','0','0','0','0','0','0','49d81fc72a6a455ebee7304592056930','0','2','0'), ('47307','21','','10634','Get workflows','github.repo.workflows.get','{$GITHUB.INTERVAL:"get_workflows"}','0','0','0','4','','','','',NULL,NULL,E'var github = { params: {}, setParams: function (params, required) { required = required || []; required.concat([''api_url'', ''user_agent'', ''api_version'', ''repo_owner'', ''repo_name'', ''pagination_required'', ''api_token'']).forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required parameter is not set: "'' + field + ''".''; } }); github.params = params; if (typeof github.params.api_url === ''string'' && !github.params.api_url.endsWith(''/'')) { github.params.api_url += ''/''; } }, apiRequest: function (url, pagination_required) { const next_pattern = /<([^>]+)>;\\s*rel="next"/i; var request = new HttpRequest(), response, headers, final_data = { headers: {}, data: [] }; pagination_required = (typeof pagination_required !== ''undefined'') ? pagination_required : ''true''; request.addHeader(''User-Agent: '' + github.params.user_agent); request.addHeader(''Accept: application/vnd.github+json''); request.addHeader(''X-GitHub-Api-Version: '' + github.params.api_version); request.addHeader(''Authorization: Bearer '' + github.params.api_token); if (typeof github.params.http_proxy !== ''undefined'' && github.params.http_proxy !== '''') { request.setProxy(github.params.http_proxy); Zabbix.log(4, ''[ GitHub Repo ] Using HTTP proxy: '' + github.params.http_proxy); } while (url) { Zabbix.log(4, ''[ GitHub Repo ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ GitHub Repo ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API. Check debug log for more information.''; } var parsed_data = github.parseData(response); final_data.data = final_data.data.concat(parsed_data); headers = request.getHeaders(); url = ((headers.link || '''').match(next_pattern) || [])[1]; if (pagination_required === ''false'') { url = ''''; } } final_data.headers = request.getHeaders(); delete request; return final_data; }, parseData: function (response_data) { if (!response_data) { return []; } const normalization_required = "total_count" in response_data && !("url" in response_data); if (!normalization_required) return response_data; delete response_data.incomplete_results; delete response_data.repository_selection; delete response_data.total_count; const namespaceKey = Object.keys(response_data)[0]; response_data = response_data[namespaceKey]; return response_data; }, itemsCount: function (response_data) { const last_page_number = /<[^>]+page=(\\d+)>;\\s*rel="last"/i; if (response_data.headers.link){ return response_data.headers.link.match(last_page_number)[1]; } return response_data.data.length; } } try { github.setParams(JSON.parse(value), [''api_query'']); var repo_data = github.apiRequest(github.params.api_url + github.params.api_query); if (repo_data.data[0].fork === false) { var repo_community_profile = github.apiRequest(github.params.api_url + github.params.api_query + ''/community/profile''); repo_data.data[0].zbx_community_profile = repo_community_profile.data[0]; } return JSON.stringify(repo_data); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ GitHub Repo ] ERROR: '' + error); return JSON.stringify({ error: error }); }','','0','','','','','0',NULL,'Get the repository workflows. Information about endpoint: https://docs.github.com/en/rest/actions/workflows?apiVersion=2022-11-28#list-repository-workflows','0','7d','0','',NULL,'{$GITHUB.TIMEOUT:"get_workflows"}','','','','200','1','0','','','0','0','0','0','0','0','0','d45dbcb0493d4258ac2cdba10648b3b3','0','2','0'), ('47328','21','','10634','Branch [{#BRANCH_NAME}]: Number of commits','github.repo.branches.commits.total[{#BRANCH_NAME}]','{$GITHUB.INTERVAL:"get_commits_count:{#BRANCH_NAME}"}','31d','365d','0','3','','','','',NULL,NULL,E'var github = { params: {}, setParams: function (params, required) { required = required || []; required.concat([''api_url'', ''user_agent'', ''api_version'', ''repo_owner'', ''repo_name'', ''pagination_required'', ''api_token'']).forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required parameter is not set: "'' + field + ''".''; } }); github.params = params; if (typeof github.params.api_url === ''string'' && !github.params.api_url.endsWith(''/'')) { github.params.api_url += ''/''; } }, apiRequest: function (url, pagination_required) { const next_pattern = /<([^>]+)>;\\s*rel="next"/i; var request = new HttpRequest(), response, headers, final_data = { headers: {}, data: [] }; pagination_required = (typeof pagination_required !== ''undefined'') ? pagination_required : ''true''; request.addHeader(''User-Agent: '' + github.params.user_agent); request.addHeader(''Accept: application/vnd.github+json''); request.addHeader(''X-GitHub-Api-Version: '' + github.params.api_version); request.addHeader(''Authorization: Bearer '' + github.params.api_token); if (typeof github.params.http_proxy !== ''undefined'' && github.params.http_proxy !== '''') { request.setProxy(github.params.http_proxy); Zabbix.log(4, ''[ GitHub Repo ] Using HTTP proxy: '' + github.params.http_proxy); } while (url) { Zabbix.log(4, ''[ GitHub Repo ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ GitHub Repo ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API. Check debug log for more information.''; } var parsed_data = github.parseData(response); final_data.data = final_data.data.concat(parsed_data); headers = request.getHeaders(); url = ((headers.link || '''').match(next_pattern) || [])[1]; if (pagination_required === ''false'') { url = ''''; } } final_data.headers = request.getHeaders(); delete request; return final_data; }, parseData: function (response_data) { if (!response_data) { return []; } const normalization_required = "total_count" in response_data && !("url" in response_data); if (!normalization_required) return response_data; delete response_data.incomplete_results; delete response_data.repository_selection; delete response_data.total_count; const namespaceKey = Object.keys(response_data)[0]; response_data = response_data[namespaceKey]; return response_data; }, itemsCount: function (response_data) { const last_page_number = /<[^>]+page=(\\d+)>;\\s*rel="last"/i; if (response_data.headers.link){ return response_data.headers.link.match(last_page_number)[1]; } return response_data.data.length; } } try { github.setParams(JSON.parse(value), [''api_query'']); var result = github.apiRequest(github.params.api_url + github.params.api_query + ''?'' + github.params.query_params || '''', github.params.pagination_required); return github.itemsCount(result); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ GitHub Repo ] ERROR: '' + error); return JSON.stringify({ error: error }); }','','0','','','','','2',NULL,'Get the number of commits in the branch. Information about endpoint: https://docs.github.com/en/rest/commits/commits?apiVersion=2022-11-28#list-commits','0','7d','0','',NULL,'{$GITHUB.TIMEOUT:"get_commits_count:{#BRANCH_NAME}"}','','','','200','1','0','','','0','0','0','0','0','0','0','927ef4806cc4460a8882c204a9e94817','0','2','0'), ('47329','21','','10634','Workflow [{#WORKFLOW_NAME}]: Get last run','github.repo.workflows.last_run.get[{#WORKFLOW_NAME}]','{$GITHUB.INTERVAL:"get_last_run:{#WORKFLOW_NAME}"}','0','0','0','4','','','','',NULL,NULL,E'var github = { params: {}, setParams: function (params, required) { required = required || []; required.concat([''api_url'', ''user_agent'', ''api_version'', ''repo_owner'', ''repo_name'', ''pagination_required'', ''api_token'']).forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required parameter is not set: "'' + field + ''".''; } }); github.params = params; if (typeof github.params.api_url === ''string'' && !github.params.api_url.endsWith(''/'')) { github.params.api_url += ''/''; } }, apiRequest: function (url, pagination_required) { const next_pattern = /<([^>]+)>;\\s*rel="next"/i; var request = new HttpRequest(), response, headers, final_data = { headers: {}, data: [] }; pagination_required = (typeof pagination_required !== ''undefined'') ? pagination_required : ''true''; request.addHeader(''User-Agent: '' + github.params.user_agent); request.addHeader(''Accept: application/vnd.github+json''); request.addHeader(''X-GitHub-Api-Version: '' + github.params.api_version); request.addHeader(''Authorization: Bearer '' + github.params.api_token); if (typeof github.params.http_proxy !== ''undefined'' && github.params.http_proxy !== '''') { request.setProxy(github.params.http_proxy); Zabbix.log(4, ''[ GitHub Repo ] Using HTTP proxy: '' + github.params.http_proxy); } while (url) { Zabbix.log(4, ''[ GitHub Repo ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ GitHub Repo ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API. Check debug log for more information.''; } var parsed_data = github.parseData(response); final_data.data = final_data.data.concat(parsed_data); headers = request.getHeaders(); url = ((headers.link || '''').match(next_pattern) || [])[1]; if (pagination_required === ''false'') { url = ''''; } } final_data.headers = request.getHeaders(); delete request; return final_data; }, parseData: function (response_data) { if (!response_data) { return []; } const normalization_required = "total_count" in response_data && !("url" in response_data); if (!normalization_required) return response_data; delete response_data.incomplete_results; delete response_data.repository_selection; delete response_data.total_count; const namespaceKey = Object.keys(response_data)[0]; response_data = response_data[namespaceKey]; return response_data; }, itemsCount: function (response_data) { const last_page_number = /<[^>]+page=(\\d+)>;\\s*rel="last"/i; if (response_data.headers.link){ return response_data.headers.link.match(last_page_number)[1]; } return response_data.data.length; } } try { github.setParams(JSON.parse(value), [''api_query'']); var result = github.apiRequest(github.params.api_url + github.params.api_query + ''?'' + github.params.query_params || '''', github.params.pagination_required); return JSON.stringify(result); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ GitHub Repo ] ERROR: '' + error); return JSON.stringify({ error: error }); }','','0','','','','','2',NULL,'Get the data about the last workflow run. Information about endpoint: https://docs.github.com/en/rest/actions/workflow-runs?apiVersion=2022-11-28#list-workflow-runs-for-a-workflow','0','7d','0','',NULL,'{$GITHUB.TIMEOUT:"get_last_run:{#WORKFLOW_NAME}"}','','','','200','1','0','','','0','0','0','0','0','0','0','32311fa69236401388321fad4ae183d6','0','2','0'), ('47338','21','','10635','Apps: Get reports','ms365.apps.reports.get','6h','0','0','0','4','','','','',NULL,NULL,E'const ms365 = { params: {}, token: null, setParams: function (params) { [''app_id'', ''password'', ''tenant_id''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); ms365.params = params; }, login: function () { const response = new HttpRequest(), login = new HttpRequest(); if (typeof ms365.params.http_proxy !== ''undefined'' && ms365.params.http_proxy !== '''') { login.setProxy(ms365.params.http_proxy); Zabbix.log(4, ''[ Microsoft 365 ] Using HTTP proxy: '' + ms365.params.http_proxy); } login.addHeader(''Content-Type: application/x-www-form-urlencoded''); response = login.post( ''https://login.microsoftonline.com/'' + encodeURIComponent(ms365.params.tenant_id) + ''/oauth2/v2.0/token'', ''grant_type=client_credentials&scope=https://graph.microsoft.com/.default&client_id='' + encodeURIComponent(ms365.params.app_id) + ''&client_secret='' + encodeURIComponent(ms365.params.password) ); if (login.getStatus() < 200 || login.getStatus() >= 300) { throw ''Login failed with status code '' + login.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse login session response.''; } if (!response.hasOwnProperty(''access_token'')) { throw ''Authentication response does not contain access token.''; } ms365.token = response[''access_token'']; }, request: function (url) { const response = new HttpRequest(), request = new HttpRequest(); if (typeof ms365.params.http_proxy !== ''undefined'' && ms365.params.http_proxy !== '''') { request.setProxy(ms365.params.http_proxy); Zabbix.log(4, ''[ Microsoft 365 ] Using HTTP proxy: '' + ms365.params.http_proxy); } if (!ms365.token) { throw ''Request does not contain access token.''; } request.addHeader(''Content-Type: application/json''); request.addHeader(''Authorization: Bearer '' + ms365.token); Zabbix.log(4, ''[ Microsoft 365 ] Request url: '' + url); response = request.get(url); Zabbix.log(4, ''[ Microsoft 365 ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { return JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API.''; } }, getField: function (data, path) { const steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return ms365.nullToZero(data); }, nullToZero: function (data) { Object.keys(data).forEach(function (key) { if (data[key] === null) { data[key] = 0; } else if (typeof data[key] === ''object'') { ms365.nullToZero(data[key]); } }); return data; }, getMetricsData: function (endpoints) { const data = {}; data.metrics = {}; endpoints.forEach(function (field) { link = ''https://graph.microsoft.com/beta/reports/'' + field + ''(period=\\''D7\\'')?$format=application/json''; answer = ms365.getField(ms365.request(link), ''value''); data.metrics[field] = answer; }); return data; }, getServiceData: function () { var data = {}, link = ''https://graph.microsoft.com/beta/admin/serviceAnnouncement/healthOverviews/''; data.services = ms365.request(link); return data; } }; endpoints = [ ''getOffice365ActiveUserCounts'', ''getOffice365ServicesUserCounts'', ''getM365AppUserCounts'', ''getM365AppPlatformUserCounts'' ]; try { ms365.setParams(JSON.parse(value)); ms365.login(); return JSON.stringify(ms365.getMetricsData(endpoints)); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ Microsoft 365 ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'Accumulated data from the Microsoft Graph API "reports" endpoints. More information: https://learn.microsoft.com/en-us/graph/api/resources/report?view=graph-rest-beta','0','7d','0','',NULL,'{$MS365.API.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','f694dc8e49084d3a961c7124cb712c43','0','2','0'), ('47339','21','','10635','OneDrive: Get reports','ms365.onedrive.reports.get','6h','0','0','0','4','','','','',NULL,NULL,E'const ms365 = { params: {}, token: null, setParams: function (params) { [''app_id'', ''password'', ''tenant_id''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); ms365.params = params; }, login: function () { const response = new HttpRequest(), login = new HttpRequest(); if (typeof ms365.params.http_proxy !== ''undefined'' && ms365.params.http_proxy !== '''') { login.setProxy(ms365.params.http_proxy); Zabbix.log(4, ''[ Microsoft 365 ] Using HTTP proxy: '' + ms365.params.http_proxy); } login.addHeader(''Content-Type: application/x-www-form-urlencoded''); response = login.post( ''https://login.microsoftonline.com/'' + encodeURIComponent(ms365.params.tenant_id) + ''/oauth2/v2.0/token'', ''grant_type=client_credentials&scope=https://graph.microsoft.com/.default&client_id='' + encodeURIComponent(ms365.params.app_id) + ''&client_secret='' + encodeURIComponent(ms365.params.password) ); if (login.getStatus() < 200 || login.getStatus() >= 300) { throw ''Login failed with status code '' + login.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse login session response.''; } if (!response.hasOwnProperty(''access_token'')) { throw ''Authentication response does not contain access token.''; } ms365.token = response[''access_token'']; }, request: function (url) { const response = new HttpRequest(), request = new HttpRequest(); if (typeof ms365.params.http_proxy !== ''undefined'' && ms365.params.http_proxy !== '''') { request.setProxy(ms365.params.http_proxy); Zabbix.log(4, ''[ Microsoft 365 ] Using HTTP proxy: '' + ms365.params.http_proxy); } if (!ms365.token) { throw ''Request does not contain access token.''; } request.addHeader(''Content-Type: application/json''); request.addHeader(''Authorization: Bearer '' + ms365.token); Zabbix.log(4, ''[ Microsoft 365 ] Request url: '' + url); response = request.get(url); Zabbix.log(4, ''[ Microsoft 365 ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { return JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API.''; } }, getField: function (data, path) { const steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return ms365.nullToZero(data); }, nullToZero: function (data) { Object.keys(data).forEach(function (key) { if (data[key] === null) { data[key] = 0; } else if (typeof data[key] === ''object'') { ms365.nullToZero(data[key]); } }); return data; }, getMetricsData: function (endpoints) { const data = {}; data.metrics = {}; endpoints.forEach(function (field) { link = ''https://graph.microsoft.com/beta/reports/'' + field + ''(period=\\''D7\\'')?$format=application/json''; answer = ms365.getField(ms365.request(link), ''value''); data.metrics[field] = answer; }); return data; }, getServiceData: function () { var data = {}, link = ''https://graph.microsoft.com/beta/admin/serviceAnnouncement/healthOverviews/''; data.services = ms365.request(link); return data; } }; const endpoints = [ ''getOneDriveActivityUserCounts'', ''getOneDriveActivityFileCounts'', ''getOneDriveUsageAccountCounts'', ''getOneDriveUsageFileCounts'', ''getOneDriveUsageStorage'' ]; try { ms365.setParams(JSON.parse(value)); ms365.login(); return JSON.stringify(ms365.getMetricsData(endpoints)); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ Microsoft 365 ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'Accumulated data from the Microsoft Graph API "reports" endpoints. More information: https://learn.microsoft.com/en-us/graph/api/resources/report?view=graph-rest-beta','0','7d','0','',NULL,'{$MS365.API.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','31b78185119446f397404ae7abf05684','0','2','0'), ('47340','21','','10635','Outlook: Get reports','ms365.outlook.reports.get','6h','0','0','0','4','','','','',NULL,NULL,E'const ms365 = { params: {}, token: null, setParams: function (params) { [''app_id'', ''password'', ''tenant_id''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); ms365.params = params; }, login: function () { const response = new HttpRequest(), login = new HttpRequest(); if (typeof ms365.params.http_proxy !== ''undefined'' && ms365.params.http_proxy !== '''') { login.setProxy(ms365.params.http_proxy); Zabbix.log(4, ''[ Microsoft 365 ] Using HTTP proxy: '' + ms365.params.http_proxy); } login.addHeader(''Content-Type: application/x-www-form-urlencoded''); response = login.post( ''https://login.microsoftonline.com/'' + encodeURIComponent(ms365.params.tenant_id) + ''/oauth2/v2.0/token'', ''grant_type=client_credentials&scope=https://graph.microsoft.com/.default&client_id='' + encodeURIComponent(ms365.params.app_id) + ''&client_secret='' + encodeURIComponent(ms365.params.password) ); if (login.getStatus() < 200 || login.getStatus() >= 300) { throw ''Login failed with status code '' + login.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse login session response.''; } if (!response.hasOwnProperty(''access_token'')) { throw ''Authentication response does not contain access token.''; } ms365.token = response[''access_token'']; }, request: function (url) { const response = new HttpRequest(), request = new HttpRequest(); if (typeof ms365.params.http_proxy !== ''undefined'' && ms365.params.http_proxy !== '''') { request.setProxy(ms365.params.http_proxy); Zabbix.log(4, ''[ Microsoft 365 ] Using HTTP proxy: '' + ms365.params.http_proxy); } if (!ms365.token) { throw ''Request does not contain access token.''; } request.addHeader(''Content-Type: application/json''); request.addHeader(''Authorization: Bearer '' + ms365.token); Zabbix.log(4, ''[ Microsoft 365 ] Request url: '' + url); response = request.get(url); Zabbix.log(4, ''[ Microsoft 365 ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { return JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API.''; } }, getField: function (data, path) { const steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return ms365.nullToZero(data); }, nullToZero: function (data) { Object.keys(data).forEach(function (key) { if (data[key] === null) { data[key] = 0; } else if (typeof data[key] === ''object'') { ms365.nullToZero(data[key]); } }); return data; }, getMetricsData: function (endpoints) { const data = {}; data.metrics = {}; endpoints.forEach(function (field) { link = ''https://graph.microsoft.com/beta/reports/'' + field + ''(period=\\''D7\\'')?$format=application/json''; answer = ms365.getField(ms365.request(link), ''value''); data.metrics[field] = answer; }); return data; }, getServiceData: function () { var data = {}, link = ''https://graph.microsoft.com/beta/admin/serviceAnnouncement/healthOverviews/''; data.services = ms365.request(link); return data; } }; endpoints = [ ''getEmailActivityCounts'', ''getEmailActivityUserCounts'', ''getEmailAppUsageUserCounts'', ''getMailboxUsageMailboxCounts'', ''getMailboxUsageStorage'' ]; try { ms365.setParams(JSON.parse(value)); ms365.login(); return JSON.stringify(ms365.getMetricsData(endpoints)); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ Microsoft 365 ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'Accumulated data from the Microsoft Graph API "reports" endpoints. More information: https://learn.microsoft.com/en-us/graph/api/resources/report?view=graph-rest-beta','0','7d','0','',NULL,'{$MS365.API.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','4e4d78bd44db421a908288031489c3d4','0','2','0'), ('47341','21','','10635','Services: Get services','ms365.services.get','6h','0','0','0','4','','','','',NULL,NULL,E'const ms365 = { params: {}, token: null, setParams: function (params) { [''app_id'', ''password'', ''tenant_id''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); ms365.params = params; }, login: function () { const response = new HttpRequest(), login = new HttpRequest(); if (typeof ms365.params.http_proxy !== ''undefined'' && ms365.params.http_proxy !== '''') { login.setProxy(ms365.params.http_proxy); Zabbix.log(4, ''[ Microsoft 365 ] Using HTTP proxy: '' + ms365.params.http_proxy); } login.addHeader(''Content-Type: application/x-www-form-urlencoded''); response = login.post( ''https://login.microsoftonline.com/'' + encodeURIComponent(ms365.params.tenant_id) + ''/oauth2/v2.0/token'', ''grant_type=client_credentials&scope=https://graph.microsoft.com/.default&client_id='' + encodeURIComponent(ms365.params.app_id) + ''&client_secret='' + encodeURIComponent(ms365.params.password) ); if (login.getStatus() < 200 || login.getStatus() >= 300) { throw ''Login failed with status code '' + login.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse login session response.''; } if (!response.hasOwnProperty(''access_token'')) { throw ''Authentication response does not contain access token.''; } ms365.token = response[''access_token'']; }, request: function (url) { const response = new HttpRequest(), request = new HttpRequest(); if (typeof ms365.params.http_proxy !== ''undefined'' && ms365.params.http_proxy !== '''') { request.setProxy(ms365.params.http_proxy); Zabbix.log(4, ''[ Microsoft 365 ] Using HTTP proxy: '' + ms365.params.http_proxy); } if (!ms365.token) { throw ''Request does not contain access token.''; } request.addHeader(''Content-Type: application/json''); request.addHeader(''Authorization: Bearer '' + ms365.token); Zabbix.log(4, ''[ Microsoft 365 ] Request url: '' + url); response = request.get(url); Zabbix.log(4, ''[ Microsoft 365 ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { return JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API.''; } }, getField: function (data, path) { const steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return ms365.nullToZero(data); }, nullToZero: function (data) { Object.keys(data).forEach(function (key) { if (data[key] === null) { data[key] = 0; } else if (typeof data[key] === ''object'') { ms365.nullToZero(data[key]); } }); return data; }, getMetricsData: function (endpoints) { const data = {}; data.metrics = {}; endpoints.forEach(function (field) { link = ''https://graph.microsoft.com/beta/reports/'' + field + ''(period=\\''D7\\'')?$format=application/json''; answer = ms365.getField(ms365.request(link), ''value''); data.metrics[field] = answer; }); return data; }, getServiceData: function () { var data = {}, link = ''https://graph.microsoft.com/beta/admin/serviceAnnouncement/healthOverviews/''; data.services = ms365.request(link); return data; } }; try { ms365.setParams(JSON.parse(value)); ms365.login(); return JSON.stringify(ms365.getServiceData()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ Microsoft 365 ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'The list of Microsoft cloud services and their health statuses subscribed by a tenant. More information: https://learn.microsoft.com/en-us/graph/api/servicehealth-get?view=graph-rest-beta&tabs=http','0','7d','0','',NULL,'{$MS365.API.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','53c72fa948454b998f612c4d099dd440','0','2','0'), ('47342','21','','10635','SharePoint: Get reports','ms365.sharepoint.reports.get','6h','0','0','0','4','','','','',NULL,NULL,E'const ms365 = { params: {}, token: null, setParams: function (params) { [''app_id'', ''password'', ''tenant_id''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); ms365.params = params; }, login: function () { const response = new HttpRequest(), login = new HttpRequest(); if (typeof ms365.params.http_proxy !== ''undefined'' && ms365.params.http_proxy !== '''') { login.setProxy(ms365.params.http_proxy); Zabbix.log(4, ''[ Microsoft 365 ] Using HTTP proxy: '' + ms365.params.http_proxy); } login.addHeader(''Content-Type: application/x-www-form-urlencoded''); response = login.post( ''https://login.microsoftonline.com/'' + encodeURIComponent(ms365.params.tenant_id) + ''/oauth2/v2.0/token'', ''grant_type=client_credentials&scope=https://graph.microsoft.com/.default&client_id='' + encodeURIComponent(ms365.params.app_id) + ''&client_secret='' + encodeURIComponent(ms365.params.password) ); if (login.getStatus() < 200 || login.getStatus() >= 300) { throw ''Login failed with status code '' + login.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse login session response.''; } if (!response.hasOwnProperty(''access_token'')) { throw ''Authentication response does not contain access token.''; } ms365.token = response[''access_token'']; }, request: function (url) { const response = new HttpRequest(), request = new HttpRequest(); if (typeof ms365.params.http_proxy !== ''undefined'' && ms365.params.http_proxy !== '''') { request.setProxy(ms365.params.http_proxy); Zabbix.log(4, ''[ Microsoft 365 ] Using HTTP proxy: '' + ms365.params.http_proxy); } if (!ms365.token) { throw ''Request does not contain access token.''; } request.addHeader(''Content-Type: application/json''); request.addHeader(''Authorization: Bearer '' + ms365.token); Zabbix.log(4, ''[ Microsoft 365 ] Request url: '' + url); response = request.get(url); Zabbix.log(4, ''[ Microsoft 365 ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { return JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API.''; } }, getField: function (data, path) { const steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return ms365.nullToZero(data); }, nullToZero: function (data) { Object.keys(data).forEach(function (key) { if (data[key] === null) { data[key] = 0; } else if (typeof data[key] === ''object'') { ms365.nullToZero(data[key]); } }); return data; }, getMetricsData: function (endpoints) { const data = {}; data.metrics = {}; endpoints.forEach(function (field) { link = ''https://graph.microsoft.com/beta/reports/'' + field + ''(period=\\''D7\\'')?$format=application/json''; answer = ms365.getField(ms365.request(link), ''value''); data.metrics[field] = answer; }); return data; }, getServiceData: function () { var data = {}, link = ''https://graph.microsoft.com/beta/admin/serviceAnnouncement/healthOverviews/''; data.services = ms365.request(link); return data; } }; endpoints = [ ''getSharePointActivityFileCounts'', ''getSharePointActivityUserCounts'', ''getSharePointActivityPages'', ''getSharePointSiteUsageFileCounts'', ''getSharePointSiteUsageSiteCounts'', ''getSharePointSiteUsageStorage'', ''getSharePointSiteUsagePages'' ]; try { ms365.setParams(JSON.parse(value)); ms365.login(); return JSON.stringify(ms365.getMetricsData(endpoints)); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ Microsoft 365 ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'Accumulated data from the Microsoft Graph API "reports" endpoints. More information: https://learn.microsoft.com/en-us/graph/api/resources/report?view=graph-rest-beta','0','7d','0','',NULL,'{$MS365.API.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','fd2cb544cfd744c1a94a1d32243978e6','0','2','0'), ('47343','21','','10635','Teams: Get reports','ms365.teams.reports.get','6h','0','0','0','4','','','','',NULL,NULL,E'const ms365 = { params: {}, token: null, setParams: function (params) { [''app_id'', ''password'', ''tenant_id''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); ms365.params = params; }, login: function () { const response = new HttpRequest(), login = new HttpRequest(); if (typeof ms365.params.http_proxy !== ''undefined'' && ms365.params.http_proxy !== '''') { login.setProxy(ms365.params.http_proxy); Zabbix.log(4, ''[ Microsoft 365 ] Using HTTP proxy: '' + ms365.params.http_proxy); } login.addHeader(''Content-Type: application/x-www-form-urlencoded''); response = login.post( ''https://login.microsoftonline.com/'' + encodeURIComponent(ms365.params.tenant_id) + ''/oauth2/v2.0/token'', ''grant_type=client_credentials&scope=https://graph.microsoft.com/.default&client_id='' + encodeURIComponent(ms365.params.app_id) + ''&client_secret='' + encodeURIComponent(ms365.params.password) ); if (login.getStatus() < 200 || login.getStatus() >= 300) { throw ''Login failed with status code '' + login.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse login session response.''; } if (!response.hasOwnProperty(''access_token'')) { throw ''Authentication response does not contain access token.''; } ms365.token = response[''access_token'']; }, request: function (url) { const response = new HttpRequest(), request = new HttpRequest(); if (typeof ms365.params.http_proxy !== ''undefined'' && ms365.params.http_proxy !== '''') { request.setProxy(ms365.params.http_proxy); Zabbix.log(4, ''[ Microsoft 365 ] Using HTTP proxy: '' + ms365.params.http_proxy); } if (!ms365.token) { throw ''Request does not contain access token.''; } request.addHeader(''Content-Type: application/json''); request.addHeader(''Authorization: Bearer '' + ms365.token); Zabbix.log(4, ''[ Microsoft 365 ] Request url: '' + url); response = request.get(url); Zabbix.log(4, ''[ Microsoft 365 ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { return JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API.''; } }, getField: function (data, path) { const steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return ms365.nullToZero(data); }, nullToZero: function (data) { Object.keys(data).forEach(function (key) { if (data[key] === null) { data[key] = 0; } else if (typeof data[key] === ''object'') { ms365.nullToZero(data[key]); } }); return data; }, getMetricsData: function (endpoints) { const data = {}; data.metrics = {}; endpoints.forEach(function (field) { link = ''https://graph.microsoft.com/beta/reports/'' + field + ''(period=\\''D7\\'')?$format=application/json''; answer = ms365.getField(ms365.request(link), ''value''); data.metrics[field] = answer; }); return data; }, getServiceData: function () { var data = {}, link = ''https://graph.microsoft.com/beta/admin/serviceAnnouncement/healthOverviews/''; data.services = ms365.request(link); return data; } }; endpoints = [ ''getTeamsDeviceUsageDistributionUserCounts'', ''getTeamsDeviceUsageDistributionTotalUserCounts'', ''getTeamsUserActivityTotalDistributionCounts'', ''getTeamsUserActivityDistributionUserCounts'', ''getTeamsUserActivityDistributionTotalUserCounts'', ''getTeamsTeamActivityDistributionCounts'' ]; try { ms365.setParams(JSON.parse(value)); ms365.login(); return JSON.stringify(ms365.getMetricsData(endpoints)); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ Microsoft 365 ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'Accumulated data from the Microsoft Graph API "reports" endpoints. More information: https://learn.microsoft.com/en-us/graph/api/resources/report?view=graph-rest-beta','0','7d','0','',NULL,'{$MS365.API.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','a77e654c05ec44ed991a36c6b1df472f','0','2','0'), ('47515','3','','10173','Get alarms','vmware.alarms.get[{$VMWARE.URL}]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Get alarm status.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5a0c711cae454f0e92a492dd1718101f','0','2','0'), ('47516','21','','10173','Get Overall Health VC State','vmware.health.get','1m','0','0','0','4','','','','',NULL,NULL,'var Vcenter = { params: {}, vmware_api_session_id: '''', health_status: '''', error_msg: '''', setParams: function (params) { [''url'', ''username'', ''password''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); if (params[''url''].endsWith(''/'')) { params[''url''] = params[''url''].slice(0,-1); } params[''url''] = params[''url''].replace(''/sdk'',''''); Vcenter.params = params; }, isGtOrEqVersion: function (first_version, second_version) { var first = first_version.split(''.'').map(Number), second = second_version.split(''.'').map(Number); if (first.length > second.length) { const max_componens_length = first.length } else { const max_componens_length = second.length } var num_components = first.length; while (num_components < max_componens_length) { first.push(0); num_components = num_components +1; } var num_components = second.length; while (num_components < max_componens_length) { second.push(0); num_components = num_components +1; } if (first[0] > second[0] || (first[0] === second[0] && first[1] > second[1]) || (first[0] === second[0] && first[1] === second[1] && first[2] >= second[2])) { return true; } return false; }, login: function () { var response, request = new HttpRequest(); request.setHttpAuth(HTTPAUTH_BASIC, Vcenter.params.username, Vcenter.params.password); request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); response = request.post(Vcenter.params.url + ''/api/session'', ''''); if (request.getStatus() >= 200 && request.getStatus() < 300 && (!JSON.parse(response).error)) { Vcenter.vmware_api_session_id = Vcenter.removeQuotes(response); return true; } response = request.post(Vcenter.params.url + ''/rest/com/vmware/cis/session'', ''''); if (request.getStatus() >= 200 && request.getStatus() < 300) { Vcenter.vmware_api_session_id = JSON.parse(response).value; return true; } return false; }, logout: function () { path = ''/rest/com/vmware/cis/session''; if (Vcenter.vmware_api_version && Vcenter.isGtOrEqVersion(Vcenter.vmware_api_version, ''7.0.2'')) { path = ''/api/session''; } Vcenter.request(Vcenter.params.url + path, ''delete''); }, get_version: function () { path = ''/rest/appliance/system/version''; try { Vcenter.vmware_api_version = Vcenter.request(Vcenter.params.url + path, ''get'').version; return true; } catch (error) { return false; } }, removeQuotes: function (str){ if (str.startsWith(''"'') && str.endsWith(''"'')) { return str.slice(1, -1); } return str; }, getHealthStatus: function () { path = ''/api/appliance/health/system''; if (!Vcenter.isGtOrEqVersion(Vcenter.vmware_api_version, ''7.0.2'')) { path = ''/rest/appliance/health/system''; } result = Vcenter.removeQuotes(Vcenter.request(Vcenter.params.url + path, ''get'')); const idx = [ ''green'', ''yellow'', ''orange'', ''red'', ''gray'' ].indexOf(result.toLowerCase()); Vcenter.health_status = idx !== -1 ? idx : 5; }, request: function (url, method) { var response, request = new HttpRequest(); if (typeof Vcenter.params.proxy !== ''undefined'' && Vcenter.params.proxy !== '''') { request.setProxy(Vcenter.params.proxy); } request.setHttpAuth(HTTPAUTH_NONE); request.addHeader("Cookie: vmware-api-session-id=" + Vcenter.vmware_api_session_id); Zabbix.log(4, ''[ VMware vCenter ] Sending request: '' + url); switch (method) { case ''get'': response = request.get(url); break; case ''post'': response = request.post(url); break; case ''delete'': response = request.delete(url); break; default: throw ''Unsupported HTTP request method: '' + method; } Zabbix.log(4, ''[ VMware vCenter ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Cannot connect to VMware vCenter. Check debug log for more information.''; } if (method !== ''delete'' && JSON.parse(response).value) { return JSON.parse(response).value; } else { return response; } } }; try { Vcenter.setParams(JSON.parse(value)); if (Vcenter.login() && Vcenter.get_version() && Vcenter.isGtOrEqVersion(Vcenter.vmware_api_version, ''6.5.0'')) { Vcenter.getHealthStatus(); } else { Vcenter.health_status = 6; } if (Vcenter.vmware_api_session_id) { Vcenter.logout(); } } catch (error) { Zabbix.log(3, ''[ VMware vCenter ] ERROR: '' + error); Vcenter.error_msg = ''Failed to get data from API:'' + error; } return JSON.stringify({''health'': Vcenter.health_status, ''error'': Vcenter.error_msg});','','0','','','','','0',NULL,'Gets overall health of the system. This item works only with VMware vCenter versions above 6.5.','0','7d','0','',NULL,'10','','','','200','1','0','','','0','0','0','0','0','0','0','889333d3225147e1b1604119050a121f','0','2','0'), ('47517','3','','10174','Snapshot consolidation needed','vmware.vm.consolidationneeded[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','31d','365d','0','3','','','','',NULL,'1231','','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Displays whether snapshot consolidation is needed or not. One of the following: - True; - False.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','20332e3c1ea54266a02ad500bc9ec1ca','0','2','0'), ('47518','3','','10174','Get snapshots','vmware.vm.snapshot.get[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1h','0','0','0','4','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Snapshots of the guest VM.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','550350d76aa346c49ef828418ebc53be','0','2','0'), ('47519','3','','10174','VM state','vmware.vm.state[{$VMWARE.URL},{$VMWARE.VM.UUID}]','1m','31d','365d','0','3','','','','',NULL,'1233','','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'VMware virtual machine state. One of the following: - Not running; - Resetting; - Running; - Shutting down; - Standby; - Unknown.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2e68d5709d4f46b49b62d37a890e4193','0','2','0'), ('47520','3','','10174','VMware Tools status','vmware.vm.tools[{$VMWARE.URL},{$VMWARE.VM.UUID},status]','1m','31d','365d','0','3','','','','',NULL,'1232','','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Monitoring of VMware Tools. One of the following: - Guest tools executing scripts: VMware Tools is starting. - Guest tools not running: VMware Tools is not running. - Guest tools running: VMware Tools is running.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6089b7822620423aa2b2e66066d33217','0','2','0'), ('47521','3','','10174','VMware Tools version','vmware.vm.tools[{$VMWARE.URL},{$VMWARE.VM.UUID},version]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Monitoring of the VMware Tools version.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3870a0d8bfd1474db6e096a1a9a246b3','0','2','0'), ('47522','3','','10175','Connection state','vmware.hv.connectionstate[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1m','31d','365d','0','3','','','','',NULL,'1234','','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'VMware hypervisor connection state. One of the following: - Connected; - Disconnected; - Not responding.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0e9fd4e6d6e446f08afe7b4b9431bc62','0','2','0'), ('47523','3','','10175','Number of broadcasts received','vmware.hv.network.in[{$VMWARE.URL},{$VMWARE.HV.UUID},broadcast]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'VMware hypervisor network input statistics (broadcasts).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8f935e9718294cd4a67d02f4723a1713','0','2','0'), ('47524','3','','10175','Number of dropped received packets','vmware.hv.network.in[{$VMWARE.URL},{$VMWARE.HV.UUID},dropped]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'VMware hypervisor network input statistics (packets dropped).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','720c58685828440bacda845bfd848d6a','0','2','0'), ('47525','3','','10175','Number of errors received','vmware.hv.network.in[{$VMWARE.URL},{$VMWARE.HV.UUID},errors]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'VMware hypervisor network input statistics (errors).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0084eb8fd76241b8938bb1dad5a3f160','0','2','0'), ('47526','3','','10175','Number of broadcasts transmitted','vmware.hv.network.out[{$VMWARE.URL},{$VMWARE.HV.UUID},broadcast]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'VMware hypervisor network output statistics (broadcasts).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','16496c407daa43b9863c05416b294992','0','2','0'), ('47527','3','','10175','Number of dropped transmitted packets','vmware.hv.network.out[{$VMWARE.URL},{$VMWARE.HV.UUID},dropped]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'VMware hypervisor network output statistics (packets dropped).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f001256bbfc34cc0898c5eaef422973e','0','2','0'), ('47528','3','','10175','Number of errors transmitted','vmware.hv.network.out[{$VMWARE.URL},{$VMWARE.HV.UUID},errors]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'VMware hypervisor network output statistics (errors).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5f549d8708f24160b04a4a74db29042a','0','2','0'), ('47534','3','','10175','Network interface discovery','vmware.hv.net.if.discovery[{$VMWARE.URL},{$VMWARE.HV.UUID}]','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','1',NULL,'Discovery of VMware hypervisor network interfaces.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cabe1fbdd4e04ef396afaa5dfd1a3423','0','2','0'), ('47536','3','','10173','Average read IOPS of the datastore [{#DATASTORE}]','vmware.datastore.read[{$VMWARE.URL},{#DATASTORE.UUID},rps]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'IOPS for a read operation from the datastore (milliseconds).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','54c2631edeb04ef39701ad3bf03be1af','0','2','0'), ('47537','3','','10173','Average write IOPS of the datastore [{#DATASTORE}]','vmware.datastore.write[{$VMWARE.URL},{#DATASTORE.UUID},rps]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'IOPS for a write operation to the datastore (milliseconds).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0026edd933404faf992d08628c9ab364','0','2','0'), ('47538','3','','10175','Average read IOPS of the datastore [{#DATASTORE}]','vmware.hv.datastore.read[{$VMWARE.URL},{$VMWARE.HV.UUID},{#DATASTORE.UUID},rps]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'Average IOPS for a read operation from the datastore.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1d7761e9ad0c48c1a3f6b1b48290c16b','0','2','0'), ('47539','3','','10175','Average write IOPS of the datastore [{#DATASTORE}]','vmware.hv.datastore.write[{$VMWARE.URL},{$VMWARE.HV.UUID},{#DATASTORE.UUID},rps]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'Average IOPS for a write operation to the datastore (milliseconds).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4514c4ccf00142e48b243f69dee0b533','0','2','0'), ('47540','3','','10175','[{#IFNAME}] network interface speed','vmware.hv.network.linkspeed[{$VMWARE.URL},{$VMWARE.HV.UUID},{#IFNAME}]','1m','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware hypervisor network interface speed.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','706acba4535e4135b824d53763868a5f','0','2','0'), ('47541','3','','10175','Serial number','vmware.hv.hw.serialnumber[{$VMWARE.URL},{#VMWARE.HV.UUID}]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'VMware hypervisor serial number.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fcd12a13f97848b78b610e86a24417b2','0','2','0'), ('47543','3','','10366','Get alarms','vmware.alarms.get[{$VMWARE.URL}]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'Get alarm status.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b9e3684632314721aed3119df6a06976','0','2','0'), ('47544','21','','10366','Get Overall Health VC State','vmware.health.get','1m','0','0','0','4','','','','',NULL,NULL,'var Vcenter = { params: {}, vmware_api_session_id: '''', health_status: '''', error_msg: '''', setParams: function (params) { [''url'', ''username'', ''password''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); if (params[''url''].endsWith(''/'')) { params[''url''] = params[''url''].slice(0,-1); } params[''url''] = params[''url''].replace(''/sdk'',''''); Vcenter.params = params; }, isGtOrEqVersion: function (first_version, second_version) { var first = first_version.split(''.'').map(Number), second = second_version.split(''.'').map(Number); if (first.length > second.length) { const max_componens_length = first.length } else { const max_componens_length = second.length } var num_components = first.length; while (num_components < max_componens_length) { first.push(0); num_components = num_components +1; } var num_components = second.length; while (num_components < max_componens_length) { second.push(0); num_components = num_components +1; } if (first[0] > second[0] || (first[0] === second[0] && first[1] > second[1]) || (first[0] === second[0] && first[1] === second[1] && first[2] >= second[2])) { return true; } return false; }, login: function () { var response, request = new HttpRequest(); request.setHttpAuth(HTTPAUTH_BASIC, Vcenter.params.username, Vcenter.params.password); request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); response = request.post(Vcenter.params.url + ''/api/session'', ''''); if (request.getStatus() >= 200 && request.getStatus() < 300 && (!JSON.parse(response).error)) { Vcenter.vmware_api_session_id = Vcenter.removeQuotes(response); return true; } response = request.post(Vcenter.params.url + ''/rest/com/vmware/cis/session'', ''''); if (request.getStatus() >= 200 && request.getStatus() < 300) { Vcenter.vmware_api_session_id = JSON.parse(response).value; return true; } return false; }, logout: function () { path = ''/rest/com/vmware/cis/session''; if (Vcenter.vmware_api_version && Vcenter.isGtOrEqVersion(Vcenter.vmware_api_version, ''7.0.2'')) { path = ''/api/session''; } Vcenter.request(Vcenter.params.url + path, ''delete''); }, get_version: function () { path = ''/rest/appliance/system/version''; try { Vcenter.vmware_api_version = Vcenter.request(Vcenter.params.url + path, ''get'').version; return true; } catch (error) { return false; } }, removeQuotes: function (str){ if (str.startsWith(''"'') && str.endsWith(''"'')) { return str.slice(1, -1); } return str; }, getHealthStatus: function () { path = ''/api/appliance/health/system''; if (!Vcenter.isGtOrEqVersion(Vcenter.vmware_api_version, ''7.0.2'')) { path = ''/rest/appliance/health/system''; } result = Vcenter.removeQuotes(Vcenter.request(Vcenter.params.url + path, ''get'')); const idx = [ ''green'', ''yellow'', ''orange'', ''red'', ''gray'' ].indexOf(result.toLowerCase()); Vcenter.health_status = idx !== -1 ? idx : 5; }, request: function (url, method) { var response, request = new HttpRequest(); if (typeof Vcenter.params.proxy !== ''undefined'' && Vcenter.params.proxy !== '''') { request.setProxy(Vcenter.params.proxy); } request.setHttpAuth(HTTPAUTH_NONE); request.addHeader("Cookie: vmware-api-session-id=" + Vcenter.vmware_api_session_id); Zabbix.log(4, ''[ VMware vCenter ] Sending request: '' + url); switch (method) { case ''get'': response = request.get(url); break; case ''post'': response = request.post(url); break; case ''delete'': response = request.delete(url); break; default: throw ''Unsupported HTTP request method: '' + method; } Zabbix.log(4, ''[ VMware vCenter ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Cannot connect to VMware vCenter. Check debug log for more information.''; } if (method !== ''delete'' && JSON.parse(response).value) { return JSON.parse(response).value; } else { return response; } } }; try { Vcenter.setParams(JSON.parse(value)); if (Vcenter.login() && Vcenter.get_version() && Vcenter.isGtOrEqVersion(Vcenter.vmware_api_version, ''6.5.0'')) { Vcenter.getHealthStatus(); } else { Vcenter.health_status = 6; } if (Vcenter.vmware_api_session_id) { Vcenter.logout(); } } catch (error) { Zabbix.log(3, ''[ VMware vCenter ] ERROR: '' + error); Vcenter.error_msg = ''Failed to get data from API:'' + error; } return JSON.stringify({''health'': Vcenter.health_status, ''error'': Vcenter.error_msg});','','0','','','','','0',NULL,'Gets overall health of the system. This item works only with VMware vCenter versions above 6.5.','0','7d','0','',NULL,'10','','','','200','1','0','','','0','0','0','0','0','0','0','7445c01436234092ad5d093d872b0682','0','2','0'), ('47548','3','','10366','Average read IOPS of the datastore [{#DATASTORE}]','vmware.datastore.read[{$VMWARE.URL},{#DATASTORE.UUID},rps]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'IOPS for a read operation from the datastore (milliseconds).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c2687322c7914ec3b5519b73f1723aeb','0','2','0'), ('47549','3','','10366','Average write IOPS of the datastore [{#DATASTORE}]','vmware.datastore.write[{$VMWARE.URL},{#DATASTORE.UUID},rps]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','2',NULL,'IOPS for a write operation to the datastore (milliseconds).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a72c4a6247be4f968c1740de556732bd','0','2','0'), ('47551','5','','10047','Zabbix proxy groups stats','zabbix[proxy group,discovery]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The master item of Zabbix proxy groups'' statistics.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','efba7193b9aa48c385e98c9babfaa689','0','2','0'), ('47569','20','walk[1.3.6.1.4.1.34774.4.1.23.5.5.1.1,1.3.6.1.4.1.34774.4.1.23.5.5.1.2,1.3.6.1.4.1.34774.4.1.23.5.5.1.3,1.3.6.1.4.1.34774.4.1.23.5.5.1.4]','10636','BBU SNMP walk','huawei.dorado.bbu.snmp.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovery of device backup battery units.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b1b27fc308a643c080ca461aa43ac155','0','2','0'), ('47570','20','get[1.3.6.1.4.1.34774.4.1.1.5.0]','10636','Capacity total','huawei.dorado.capacity.total','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total capacity of a device.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5966b59ae96c4044a2c53d84728aa385','0','2','0'), ('47571','20','get[1.3.6.1.4.1.34774.4.1.1.4.0]','10636','Capacity used','huawei.dorado.capacity.used','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Used capacity of a device.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0bb56fda578e44b28dfaca63e37c6026','0','2','0'), ('47572','20','walk[1.3.6.1.4.1.34774.4.1.23.5.2.1.1,1.3.6.1.4.1.34774.4.1.23.5.2.1.8,1.3.6.1.4.1.34774.4.1.23.5.2.1.9,1.3.6.1.4.1.34774.4.1.23.5.2.1.2,1.3.6.1.4.1.34774.4.1.23.5.2.1.3,1.3.6.1.4.1.34774.4.1.23.5.2.1.6]','10636','Controller SNMP walk','huawei.dorado.controller.snmp.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovery of device controllers.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','251875b1bf7f4aea800eebdf826c92cc','0','2','0'), ('47573','20','walk[1.3.6.1.4.1.34774.4.1.23.5.1.1.1,1.3.6.1.4.1.34774.4.1.23.5.1.1.12,1.3.6.1.4.1.34774.4.1.23.5.1.1.4,1.3.6.1.4.1.34774.4.1.23.5.1.1.2,1.3.6.1.4.1.34774.4.1.23.5.1.1.3,1.3.6.1.4.1.34774.4.1.23.5.1.1.11]','10636','Disk SNMP walk','huawei.dorado.disk.snmp.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovery of device disks.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','502c0446b3ac4c7c91fb81076e8fded0','0','2','0'), ('47574','20','walk[1.3.6.1.4.1.34774.4.1.23.5.6.1.2,1.3.6.1.4.1.34774.4.1.23.5.6.1.4,1.3.6.1.4.1.34774.4.1.23.5.6.1.5,1.3.6.1.4.1.34774.4.1.23.5.6.1.8]','10636','Enclosure SNMP walk','huawei.dorado.enclosure.snmp.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovery of device enclosures.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dc3f094725ff4794844687d4037ea2c2','0','2','0'), ('47575','20','walk[1.3.6.1.4.1.34774.4.1.23.5.4.1.1,1.3.6.1.4.1.34774.4.1.23.5.4.1.2,1.3.6.1.4.1.34774.4.1.23.5.4.1.3,1.3.6.1.4.1.34774.4.1.23.5.4.1.4]','10636','Fan SNMP walk','huawei.dorado.fan.snmp.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovery of device fans.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fe922a88992f49f9a6bf4ed080c880d7','0','2','0'), ('47576','20','walk[1.3.6.1.4.1.34774.4.1.19.9.4.1.2,1.3.6.1.4.1.34774.4.1.19.9.4.1.11,1.3.6.1.4.1.34774.4.1.21.4.1.13,1.3.6.1.4.1.34774.4.1.21.4.1.15,1.3.6.1.4.1.34774.4.1.21.4.1.16,1.3.6.1.4.1.34774.4.1.21.4.1.3,1.3.6.1.4.1.34774.4.1.21.4.1.4,1.3.6.1.4.1.34774.4.1.21.4.1.5,1.3.6.1.4.1.34774.4.1.21.4.1.6,1.3.6.1.4.1.34774.4.1.21.4.1.7,1.3.6.1.4.1.34774.4.1.21.4.1.8,1.3.6.1.4.1.34774.4.1.19.9.4.1.5]','10636','LUN SNMP walk','huawei.dorado.lun.snmp.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovery of device logical unit numbers.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','269a95fbb3ce4f1eb9dc684777875d87','0','2','0'), ('47577','20','walk[1.3.6.1.4.1.34774.4.1.21.3.1.1,1.3.6.1.4.1.34774.4.1.21.3.1.2,1.3.6.1.4.1.34774.4.1.21.3.1.5,1.3.6.1.4.1.34774.4.1.21.3.1.6,1.3.6.1.4.1.34774.4.1.21.3.1.7,1.3.6.1.4.1.34774.4.1.21.3.1.8,1.3.6.1.4.1.34774.4.1.21.3.1.9,1.3.6.1.4.1.34774.4.1.21.3.1.10,1.3.6.1.4.1.34774.4.1.21.3.1.4]','10636','Node SNMP walk','huawei.dorado.node.snmp.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovery of device nodes.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2170d4e5ca684e579dd511e59e5e9828','0','2','0'), ('47578','20','walk[1.3.6.1.4.1.34774.4.1.23.4.2.1.2,1.3.6.1.4.1.34774.4.1.23.4.2.1.14,1.3.6.1.4.1.34774.4.1.23.4.2.1.5,1.3.6.1.4.1.34774.4.1.23.4.2.1.6,1.3.6.1.4.1.34774.4.1.23.4.2.1.7,1.3.6.1.4.1.34774.4.1.23.4.2.1.9,1.3.6.1.4.1.34774.4.1.23.4.2.1.27]','10636','Storage pool SNMP walk','huawei.dorado.pool.snmp.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovery of device storage pools.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5daf9372f493406c818b27f5149dcff3','0','2','0'), ('47579','20','get[1.3.6.1.4.1.34774.4.1.1.3.0]','10636','Status','huawei.dorado.status','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'System status.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4ad5a10227d74eaaaaf3678a6884b67d','0','2','0'), ('47580','20','get[1.3.6.1.4.1.34774.4.1.1.6.0]','10636','Version','huawei.dorado.version','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The device version.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3ed972a612394bf285f816debcd8e89a','0','2','0'), ('47581','3','','10636','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'1242','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','590714e7fb3f4d468c19385146f76433','0','2','0'), ('47582','3','','10636','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3bcc87c0fee74e64be9b66cc9080008e','0','2','0'), ('47583','3','','10636','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','137b8177ba0b4949a895be9dde23400c','0','2','0'), ('47584','17','','10636','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2959893b639d457abb18a2b7e9abda23','0','2','0'), ('47585','20','get[1.3.6.1.2.1.1.4.0]','10636','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f80391019ebb4b18beb7a987c3a20830','0','2','0'), ('47586','20','get[1.3.6.1.2.1.1.1.0]','10636','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e7ddfe4774ad4ed7959d2e2200b50e8f','0','2','0'), ('47587','20','get[1.3.6.1.2.1.25.1.1.0]','10636','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','35b225e3dff343b0a0b82b8239d6bea3','0','2','0'), ('47588','20','get[1.3.6.1.2.1.1.6.0]','10636','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f0fa4b45ea2b41d0b0f40630680fb532','0','2','0'), ('47589','20','get[1.3.6.1.2.1.1.5.0]','10636','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','494d880ba7be4d9fb641b148597f805d','0','2','0'), ('47590','20','get[1.3.6.1.2.1.1.3.0]','10636','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4371c836612f4456a6ce191af79a23a2','0','2','0'), ('47591','20','get[1.3.6.1.2.1.1.2.0]','10636','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','634f6b6a4e724c158ba4726f063a1684','0','2','0'), ('47592','5','','10636','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'1243','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6816cad193a64edcbcf3f09d736eab9b','0','2','0'), ('47638','7','','10637','Service response time','net.tcp.service.perf[http,"{$APACHE.STATUS.HOST}","{$APACHE.STATUS.PORT}"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3ac09d338f0847288eda20732bf5aa10','0','2','0'), ('47639','7','','10637','Service ping','net.tcp.service[http,"{$APACHE.STATUS.HOST}","{$APACHE.STATUS.PORT}"]','1m','31d','365d','0','3','','','','',NULL,'1244','','','0','','','','','0',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e4252071d0864fd5bf7c60c4d6e4915d','0','2','0'), ('47640','7','','10637','Get processes summary','proc.get[{$APACHE.PROCESS.NAME.PARAMETER},,,summary]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The aggregated data of summary metrics for all processes.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','37f15f5a28364399aa66aad31d0acc08','0','2','0'), ('47641','7','','10637','Get status','web.page.get["{$APACHE.STATUS.SCHEME}://{$APACHE.STATUS.HOST}:{$APACHE.STATUS.PORT}/{$APACHE.STATUS.PATH}"]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Getting data from a machine-readable version of the Apache status page. For more information see Apache Module [mod_status](https://httpd.apache.org/docs/current/mod/mod_status.html).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d103e519e5044dfd982d535a0981bc84','0','2','0'), ('47663','7','','10637','CPU utilization','proc.cpu.util[{#APACHE.NAME}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of the CPU utilization by a process {#APACHE.NAME}.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b1e48077179f4e439e2d3c3b918c9a03','0','2','0'), ('47675','7','','10638','Get','web.certificate.get[{$CERT.WEBSITE.HOSTNAME},{$CERT.WEBSITE.PORT},{$CERT.WEBSITE.IP}]','15m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Returns the JSON with attributes of a certificate of the requested site.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cfc056393df34d3ab8f66f1d1bfc7c0b','0','2','0'), ('47688','7','','10639','Service response time','net.tcp.service.perf[http,"{$NGINX.STUB_STATUS.HOST}","{$NGINX.STUB_STATUS.PORT}"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','09762f260f544f57afa5157c6bc632a3','0','2','0'), ('47689','7','','10639','Service status','net.tcp.service[http,"{$NGINX.STUB_STATUS.HOST}","{$NGINX.STUB_STATUS.PORT}"]','1m','31d','365d','0','3','','','','',NULL,'1245','','','0','','','','','0',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b68e4123d7c9483c9f77bc9c27fd0e7c','0','2','0'), ('47690','7','','10639','Get processes summary','proc.get[{$NGINX.PROCESS.NAME.PARAMETER},,,summary]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The aggregated data of summary metrics for all processes.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','94bb17445cf14e909fede8b7060c0211','0','2','0'), ('47691','7','','10639','Get stub status page','web.page.get["{$NGINX.STUB_STATUS.HOST}","{$NGINX.STUB_STATUS.PATH}","{$NGINX.STUB_STATUS.PORT}"]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The following status information is provided: `Active connections` - the current number of active client connections including waiting connections. `Accepted` - the total number of accepted client connections. `Handled` - the total number of handled connections. Generally, the parameter value is the same as for the accepted connections, unless some resource limits have been reached (for example, the `worker_connections` limit). `Requests` - the total number of client requests. `Reading` - the current number of connections where Nginx is reading the request header. `Writing` - the current number of connections where Nginx is writing a response back to the client. `Waiting` - the current number of idle client connections waiting for a request. See also [Module ngx_http_stub_status_module](https://nginx.org/en/docs/http/ngx_http_stub_status_module.html).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','04ed4f82a84b4a81aa8d1682e7a70b5f','0','2','0'), ('47703','7','','10639','CPU utilization','proc.cpu.util[{#NGINX.NAME}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of the CPU utilization by a process {#NGINX.NAME}.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6045ce9aba4747f2a6a1475fc3f8b428','0','2','0'), ('47709','21','','10640','Get alert','nutanix.cluster.alert.get','1m','0','0','0','4','','','','',NULL,NULL,'var Nutanix = { params: {}, setParams: function (requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); Nutanix.params = allParams; }, request: function (url) { var request = new HttpRequest(); if (typeof Nutanix.params.proxy !== ''undefined'' && Nutanix.params.proxy !== '''') { request.setProxy(Nutanix.params.proxy); } request.setHttpAuth(HTTPAUTH_BASIC, Nutanix.params.username, Nutanix.params.password); Zabbix.log(4, ''[ Nutanix ] Sending request: '' + url); const response = request.get(url); Zabbix.log(4, ''[ Nutanix ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from Nutanix PRISM API. Check debug log for more information.''; } return response; }, deduplicateAlerts: function (full_data) { const severity_mapping = [ ''kinfo'', ''kwarning'', ''kcritical'' ] var output_data = {}; for (var entity in full_data.entities) { if (Nutanix.params.api_method === ''clusters'') { if (result.entities[entity].node_uuid.split(''-'').length == 5) continue; } var severity = severity_mapping.indexOf(full_data.entities[entity].severity.toLowerCase()), message = full_data.entities[entity].message, title = full_data.entities[entity].alert_title; full_data.entities[entity].context_types.forEach(function(context, index) { message = message.replace(''{'' + context + ''}'', full_data.entities[entity].context_values[index]); title = title.replace(''{'' + context + ''}'', full_data.entities[entity].context_values[index]); }); key = md5(title + message); if (key in output_data) { if (full_data.entities[entity].created_time_stamp_in_usecs > output_data[key].created) { output_data[key].created = full_data.entities[entity].created_time_stamp_in_usecs; output_data[key].severity = severity !== -1 ? severity : 3; output_data[key].state = full_data.entities[entity].resolved ? 0 : 1; output_data[key].message = full_data.entities[entity].detailed_message != '''' ? full_data.entities[entity].detailed_message : message; output_data[key].last_id = full_data.entities[entity].id; } output_data[key].count += 1; } else { output_data[key] = { "name": title + '' - '' + message, "title": title != '''' ? title : message, "created": full_data.entities[entity].created_time_stamp_in_usecs, "severity": severity !== -1 ? severity : 3, "state": full_data.entities[entity].resolved ? 0 : 1, "message": full_data.entities[entity].detailed_message != '''' ? full_data.entities[entity].detailed_message : message, "last_id": full_data.entities[entity].id, "count": 1 } } } return output_data; }, cleanUnsupported: function (full_stat) { var output_stat = {}; for (var element in full_stat) { if (full_stat[element] !== ''-1'') { output_stat[element] = full_stat[element]; } }; return output_stat; } }; try { const params = JSON.parse(value); Nutanix.setParams([''endpoint_host'', ''endpoint_port'', ''username'', ''password'', ''auth_type'', ''api_method'', ''target_uuid''], params); const url = ''https://'' + Nutanix.params.endpoint_host + '':'' + Nutanix.params.endpoint_port + ''/PrismGateway/services/rest/v2.0/'' + Nutanix.params.api_method + ''/'' + Nutanix.params.target_uuid + ''/alerts'', result = Nutanix.request(url); return JSON.stringify(Nutanix.deduplicateAlerts(result)); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(4, ''[ Nutanix ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'Get data about alerts.','0','7d','0','',NULL,'{$NUTANIX.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','3761d4da912749c7a84f11a5cfbcf761','0','2','0'), ('47710','21','','10640','Get metric','nutanix.cluster.metric.get','1m','0','0','0','4','','','','',NULL,NULL,'var Nutanix = { params: {}, setParams: function (requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); Nutanix.params = allParams; }, request: function (url) { var request = new HttpRequest(); if (typeof Nutanix.params.proxy !== ''undefined'' && Nutanix.params.proxy !== '''') { request.setProxy(Nutanix.params.proxy); } request.setHttpAuth(HTTPAUTH_BASIC, Nutanix.params.username, Nutanix.params.password); Zabbix.log(4, ''[ Nutanix ] Sending request: '' + url); const response = request.get(url); Zabbix.log(4, ''[ Nutanix ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from Nutanix PRISM API. Check debug log for more information.''; } return response; }, deduplicateAlerts: function (full_data) { const severity_mapping = [ ''kinfo'', ''kwarning'', ''kcritical'' ] var output_data = {}; for (var entity in full_data.entities) { if (Nutanix.params.api_method === ''clusters'') { if (result.entities[entity].node_uuid.split(''-'').length == 5) continue; } var severity = severity_mapping.indexOf(full_data.entities[entity].severity.toLowerCase()), message = full_data.entities[entity].message, title = full_data.entities[entity].alert_title; full_data.entities[entity].context_types.forEach(function(context, index) { message = message.replace(''{'' + context + ''}'', full_data.entities[entity].context_values[index]); title = title.replace(''{'' + context + ''}'', full_data.entities[entity].context_values[index]); }); key = md5(title + message); if (key in output_data) { if (full_data.entities[entity].created_time_stamp_in_usecs > output_data[key].created) { output_data[key].created = full_data.entities[entity].created_time_stamp_in_usecs; output_data[key].severity = severity !== -1 ? severity : 3; output_data[key].state = full_data.entities[entity].resolved ? 0 : 1; output_data[key].message = full_data.entities[entity].detailed_message != '''' ? full_data.entities[entity].detailed_message : message; output_data[key].last_id = full_data.entities[entity].id; } output_data[key].count += 1; } else { output_data[key] = { "name": title + '' - '' + message, "title": title != '''' ? title : message, "created": full_data.entities[entity].created_time_stamp_in_usecs, "severity": severity !== -1 ? severity : 3, "state": full_data.entities[entity].resolved ? 0 : 1, "message": full_data.entities[entity].detailed_message != '''' ? full_data.entities[entity].detailed_message : message, "last_id": full_data.entities[entity].id, "count": 1 } } } return output_data; }, cleanUnsupported: function (full_stat) { var output_stat = {}; for (var element in full_stat) { if (full_stat[element] !== ''-1'') { output_stat[element] = full_stat[element]; } }; return output_stat; } }; try { const params = JSON.parse(value); Nutanix.setParams([''endpoint_host'', ''endpoint_port'', ''username'', ''password'', ''auth_type'', ''api_method'', ''target_uuid''], params); const url = ''https://'' + Nutanix.params.endpoint_host + '':'' + Nutanix.params.endpoint_port + ''/PrismGateway/services/rest/v2.0/'' + Nutanix.params.api_method + ''/'' + Nutanix.params.target_uuid; var result = Nutanix.request(url); result.stats = Nutanix.cleanUnsupported(result.stats); return JSON.stringify(result); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(4, ''[ Nutanix ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'Get data about basic metrics.','0','7d','0','',NULL,'{$NUTANIX.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','95a5fd893da84a7098cba12ffa1743ca','0','2','0'), ('47711','21','','10641','Get alert','nutanix.host.alert.get','1m','0','0','0','4','','','','',NULL,NULL,'var Nutanix = { params: {}, setParams: function (requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); Nutanix.params = allParams; }, request: function (url) { var request = new HttpRequest(); if (typeof Nutanix.params.proxy !== ''undefined'' && Nutanix.params.proxy !== '''') { request.setProxy(Nutanix.params.proxy); } request.setHttpAuth(HTTPAUTH_BASIC, Nutanix.params.username, Nutanix.params.password); Zabbix.log(4, ''[ Nutanix ] Sending request: '' + url); const response = request.get(url); Zabbix.log(4, ''[ Nutanix ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from Nutanix PRISM API. Check debug log for more information.''; } return response; }, deduplicateAlerts: function (full_data) { const severity_mapping = [ ''kinfo'', ''kwarning'', ''kcritical'' ] var output_data = {}; for (var entity in full_data.entities) { if (Nutanix.params.api_method === ''clusters'') { if (result.entities[entity].node_uuid.split(''-'').length == 5) continue; } var severity = severity_mapping.indexOf(full_data.entities[entity].severity.toLowerCase()), message = full_data.entities[entity].message, title = full_data.entities[entity].alert_title; full_data.entities[entity].context_types.forEach(function(context, index) { message = message.replace(''{'' + context + ''}'', full_data.entities[entity].context_values[index]); title = title.replace(''{'' + context + ''}'', full_data.entities[entity].context_values[index]); }); key = md5(title + message); if (key in output_data) { if (full_data.entities[entity].created_time_stamp_in_usecs > output_data[key].created) { output_data[key].created = full_data.entities[entity].created_time_stamp_in_usecs; output_data[key].severity = severity !== -1 ? severity : 3; output_data[key].state = full_data.entities[entity].resolved ? 0 : 1; output_data[key].message = full_data.entities[entity].detailed_message != '''' ? full_data.entities[entity].detailed_message : message; output_data[key].last_id = full_data.entities[entity].id; } output_data[key].count += 1; } else { output_data[key] = { "name": title + '' - '' + message, "title": title != '''' ? title : message, "created": full_data.entities[entity].created_time_stamp_in_usecs, "severity": severity !== -1 ? severity : 3, "state": full_data.entities[entity].resolved ? 0 : 1, "message": full_data.entities[entity].detailed_message != '''' ? full_data.entities[entity].detailed_message : message, "last_id": full_data.entities[entity].id, "count": 1 } } } return output_data; }, cleanUnsupported: function (full_stat) { var output_stat = {}; for (var element in full_stat) { if (full_stat[element] !== ''-1'') { output_stat[element] = full_stat[element]; } }; return output_stat; } }; try { const params = JSON.parse(value); Nutanix.setParams([''endpoint_host'', ''endpoint_port'', ''username'', ''password'', ''auth_type'', ''api_method'', ''target_uuid''], params); const url = ''https://'' + Nutanix.params.endpoint_host + '':'' + Nutanix.params.endpoint_port + ''/PrismGateway/services/rest/v2.0/'' + Nutanix.params.api_method + ''/'' + Nutanix.params.target_uuid + ''/alerts'', result = Nutanix.request(url); return JSON.stringify(Nutanix.deduplicateAlerts(result)); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(4, ''[ Nutanix ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'Get data about alerts.','0','7d','0','',NULL,'{$NUTANIX.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','48c5f1f6ea454fd69756268cd613129e','0','2','0'), ('47712','21','','10641','Get disk','nutanix.host.disk.get','1m','0','0','0','4','','','','',NULL,NULL,'var Nutanix = { params: {}, setParams: function (requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); Nutanix.params = allParams; }, request: function (url) { var request = new HttpRequest(); if (typeof Nutanix.params.proxy !== ''undefined'' && Nutanix.params.proxy !== '''') { request.setProxy(Nutanix.params.proxy); } request.setHttpAuth(HTTPAUTH_BASIC, Nutanix.params.username, Nutanix.params.password); Zabbix.log(4, ''[ Nutanix ] Sending request: '' + url); const response = request.get(url); Zabbix.log(4, ''[ Nutanix ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from Nutanix PRISM API. Check debug log for more information.''; } return response; }, deduplicateAlerts: function (full_data) { const severity_mapping = [ ''kinfo'', ''kwarning'', ''kcritical'' ] var output_data = {}; for (var entity in full_data.entities) { if (Nutanix.params.api_method === ''clusters'') { if (result.entities[entity].node_uuid.split(''-'').length == 5) continue; } var severity = severity_mapping.indexOf(full_data.entities[entity].severity.toLowerCase()), message = full_data.entities[entity].message, title = full_data.entities[entity].alert_title; full_data.entities[entity].context_types.forEach(function(context, index) { message = message.replace(''{'' + context + ''}'', full_data.entities[entity].context_values[index]); title = title.replace(''{'' + context + ''}'', full_data.entities[entity].context_values[index]); }); key = md5(title + message); if (key in output_data) { if (full_data.entities[entity].created_time_stamp_in_usecs > output_data[key].created) { output_data[key].created = full_data.entities[entity].created_time_stamp_in_usecs; output_data[key].severity = severity !== -1 ? severity : 3; output_data[key].state = full_data.entities[entity].resolved ? 0 : 1; output_data[key].message = full_data.entities[entity].detailed_message != '''' ? full_data.entities[entity].detailed_message : message; output_data[key].last_id = full_data.entities[entity].id; } output_data[key].count += 1; } else { output_data[key] = { "name": title + '' - '' + message, "title": title != '''' ? title : message, "created": full_data.entities[entity].created_time_stamp_in_usecs, "severity": severity !== -1 ? severity : 3, "state": full_data.entities[entity].resolved ? 0 : 1, "message": full_data.entities[entity].detailed_message != '''' ? full_data.entities[entity].detailed_message : message, "last_id": full_data.entities[entity].id, "count": 1 } } } return output_data; }, cleanUnsupported: function (full_stat) { var output_stat = {}; for (var element in full_stat) { if (full_stat[element] !== ''-1'') { output_stat[element] = full_stat[element]; } }; return output_stat; } }; try { const params = JSON.parse(value); Nutanix.setParams([''endpoint_host'', ''endpoint_port'', ''username'', ''password'', ''auth_type'', ''api_method'', ''target_uuid''], params); const url = ''https://'' + Nutanix.params.endpoint_host + '':'' + Nutanix.params.endpoint_port + ''/PrismGateway/services/rest/v2.0/'' + Nutanix.params.api_method + ''?search_attribute_list=node_uuid&search_string='' + Nutanix.params.target_uuid, result = Nutanix.request(url); var output_data = {}; for (var entity in result.entities) { output_data[result.entities[entity].id] = result.entities[entity] } return JSON.stringify(output_data); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(4, ''[ Nutanix ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'Get data about installed disks.','0','7d','0','',NULL,'{$NUTANIX.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','a3a11c42c9da4eecb0aefa20792d4514','0','2','0'), ('47713','21','','10641','Get metric','nutanix.host.metric.get','1m','0','0','0','4','','','','',NULL,NULL,'var Nutanix = { params: {}, setParams: function (requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); Nutanix.params = allParams; }, request: function (url) { var request = new HttpRequest(); if (typeof Nutanix.params.proxy !== ''undefined'' && Nutanix.params.proxy !== '''') { request.setProxy(Nutanix.params.proxy); } request.setHttpAuth(HTTPAUTH_BASIC, Nutanix.params.username, Nutanix.params.password); Zabbix.log(4, ''[ Nutanix ] Sending request: '' + url); const response = request.get(url); Zabbix.log(4, ''[ Nutanix ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from Nutanix PRISM API. Check debug log for more information.''; } return response; }, deduplicateAlerts: function (full_data) { const severity_mapping = [ ''kinfo'', ''kwarning'', ''kcritical'' ] var output_data = {}; for (var entity in full_data.entities) { if (Nutanix.params.api_method === ''clusters'') { if (result.entities[entity].node_uuid.split(''-'').length == 5) continue; } var severity = severity_mapping.indexOf(full_data.entities[entity].severity.toLowerCase()), message = full_data.entities[entity].message, title = full_data.entities[entity].alert_title; full_data.entities[entity].context_types.forEach(function(context, index) { message = message.replace(''{'' + context + ''}'', full_data.entities[entity].context_values[index]); title = title.replace(''{'' + context + ''}'', full_data.entities[entity].context_values[index]); }); key = md5(title + message); if (key in output_data) { if (full_data.entities[entity].created_time_stamp_in_usecs > output_data[key].created) { output_data[key].created = full_data.entities[entity].created_time_stamp_in_usecs; output_data[key].severity = severity !== -1 ? severity : 3; output_data[key].state = full_data.entities[entity].resolved ? 0 : 1; output_data[key].message = full_data.entities[entity].detailed_message != '''' ? full_data.entities[entity].detailed_message : message; output_data[key].last_id = full_data.entities[entity].id; } output_data[key].count += 1; } else { output_data[key] = { "name": title + '' - '' + message, "title": title != '''' ? title : message, "created": full_data.entities[entity].created_time_stamp_in_usecs, "severity": severity !== -1 ? severity : 3, "state": full_data.entities[entity].resolved ? 0 : 1, "message": full_data.entities[entity].detailed_message != '''' ? full_data.entities[entity].detailed_message : message, "last_id": full_data.entities[entity].id, "count": 1 } } } return output_data; }, cleanUnsupported: function (full_stat) { var output_stat = {}; for (var element in full_stat) { if (full_stat[element] !== ''-1'') { output_stat[element] = full_stat[element]; } }; return output_stat; } }; try { const params = JSON.parse(value); Nutanix.setParams([''endpoint_host'', ''endpoint_port'', ''username'', ''password'', ''auth_type'', ''api_method'', ''target_uuid''], params); const url = ''https://'' + Nutanix.params.endpoint_host + '':'' + Nutanix.params.endpoint_port + ''/PrismGateway/services/rest/v2.0/'' + Nutanix.params.api_method + ''/'' + Nutanix.params.target_uuid; var result = Nutanix.request(url); result.stats = Nutanix.cleanUnsupported(result.stats); return JSON.stringify(result); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(4, ''[ Nutanix ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'Get data about basic metrics.','0','7d','0','',NULL,'{$NUTANIX.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','30b4da75a8f54b5385310b43fa6a2a7a','0','2','0'), ('47714','21','','10642','Get cluster','nutanix.cluster.get','10m','0','0','0','4','','','','',NULL,NULL,'var Nutanix = { params: {}, setParams: function (requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); Nutanix.params = allParams; }, request: function (url) { var request = new HttpRequest(); if (typeof Nutanix.params.proxy !== ''undefined'' && Nutanix.params.proxy !== '''') { request.setProxy(Nutanix.params.proxy); } request.setHttpAuth(HTTPAUTH_BASIC, Nutanix.params.username, Nutanix.params.password); Zabbix.log(4, ''[ Nutanix ] Sending request: '' + url); const response = request.get(url); Zabbix.log(4, ''[ Nutanix ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from Nutanix PRISM API. Check debug log for more information.''; } return response; }, deduplicateAlerts: function (full_data) { const severity_mapping = [ ''kinfo'', ''kwarning'', ''kcritical'' ] var output_data = {}; for (var entity in full_data.entities) { if (Nutanix.params.api_method === ''clusters'') { if (result.entities[entity].node_uuid.split(''-'').length == 5) continue; } var severity = severity_mapping.indexOf(full_data.entities[entity].severity.toLowerCase()), message = full_data.entities[entity].message, title = full_data.entities[entity].alert_title; full_data.entities[entity].context_types.forEach(function(context, index) { message = message.replace(''{'' + context + ''}'', full_data.entities[entity].context_values[index]); title = title.replace(''{'' + context + ''}'', full_data.entities[entity].context_values[index]); }); key = md5(title + message); if (key in output_data) { if (full_data.entities[entity].created_time_stamp_in_usecs > output_data[key].created) { output_data[key].created = full_data.entities[entity].created_time_stamp_in_usecs; output_data[key].severity = severity !== -1 ? severity : 3; output_data[key].state = full_data.entities[entity].resolved ? 0 : 1; output_data[key].message = full_data.entities[entity].detailed_message != '''' ? full_data.entities[entity].detailed_message : message; output_data[key].last_id = full_data.entities[entity].id; } output_data[key].count += 1; } else { output_data[key] = { "name": title + '' - '' + message, "title": title != '''' ? title : message, "created": full_data.entities[entity].created_time_stamp_in_usecs, "severity": severity !== -1 ? severity : 3, "state": full_data.entities[entity].resolved ? 0 : 1, "message": full_data.entities[entity].detailed_message != '''' ? full_data.entities[entity].detailed_message : message, "last_id": full_data.entities[entity].id, "count": 1 } } } return output_data; }, cleanUnsupported: function (full_stat) { var output_stat = {}; for (var element in full_stat) { if (full_stat[element] !== ''-1'') { output_stat[element] = full_stat[element]; } }; return output_stat; } }; try { const params = JSON.parse(value); Nutanix.setParams([''endpoint_host'', ''endpoint_port'', ''username'', ''password'', ''auth_type'', ''api_method''], params); const url = ''https://'' + Nutanix.params.endpoint_host + '':'' + Nutanix.params.endpoint_port + ''/PrismGateway/services/rest/v2.0/'' + Nutanix.params.api_method, result = Nutanix.request(url); return JSON.stringify(result); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(4, ''[ Nutanix ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'Get the available clusters.','0','7d','0','',NULL,'10s','','','','200','1','0','','','0','0','0','0','0','0','0','0c073836f90a4072be7acfc5d1a96b9e','0','2','0'), ('47715','21','','10642','Get host','nutanix.host.get','10m','0','0','0','4','','','','',NULL,NULL,'var Nutanix = { params: {}, setParams: function (requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); Nutanix.params = allParams; }, request: function (url) { var request = new HttpRequest(); if (typeof Nutanix.params.proxy !== ''undefined'' && Nutanix.params.proxy !== '''') { request.setProxy(Nutanix.params.proxy); } request.setHttpAuth(HTTPAUTH_BASIC, Nutanix.params.username, Nutanix.params.password); Zabbix.log(4, ''[ Nutanix ] Sending request: '' + url); const response = request.get(url); Zabbix.log(4, ''[ Nutanix ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from Nutanix PRISM API. Check debug log for more information.''; } return response; }, deduplicateAlerts: function (full_data) { const severity_mapping = [ ''kinfo'', ''kwarning'', ''kcritical'' ] var output_data = {}; for (var entity in full_data.entities) { if (Nutanix.params.api_method === ''clusters'') { if (result.entities[entity].node_uuid.split(''-'').length == 5) continue; } var severity = severity_mapping.indexOf(full_data.entities[entity].severity.toLowerCase()), message = full_data.entities[entity].message, title = full_data.entities[entity].alert_title; full_data.entities[entity].context_types.forEach(function(context, index) { message = message.replace(''{'' + context + ''}'', full_data.entities[entity].context_values[index]); title = title.replace(''{'' + context + ''}'', full_data.entities[entity].context_values[index]); }); key = md5(title + message); if (key in output_data) { if (full_data.entities[entity].created_time_stamp_in_usecs > output_data[key].created) { output_data[key].created = full_data.entities[entity].created_time_stamp_in_usecs; output_data[key].severity = severity !== -1 ? severity : 3; output_data[key].state = full_data.entities[entity].resolved ? 0 : 1; output_data[key].message = full_data.entities[entity].detailed_message != '''' ? full_data.entities[entity].detailed_message : message; output_data[key].last_id = full_data.entities[entity].id; } output_data[key].count += 1; } else { output_data[key] = { "name": title + '' - '' + message, "title": title != '''' ? title : message, "created": full_data.entities[entity].created_time_stamp_in_usecs, "severity": severity !== -1 ? severity : 3, "state": full_data.entities[entity].resolved ? 0 : 1, "message": full_data.entities[entity].detailed_message != '''' ? full_data.entities[entity].detailed_message : message, "last_id": full_data.entities[entity].id, "count": 1 } } } return output_data; }, cleanUnsupported: function (full_stat) { var output_stat = {}; for (var element in full_stat) { if (full_stat[element] !== ''-1'') { output_stat[element] = full_stat[element]; } }; return output_stat; } }; try { const params = JSON.parse(value); Nutanix.setParams([''endpoint_host'', ''endpoint_port'', ''username'', ''password'', ''auth_type'', ''api_method''], params); const url = ''https://'' + Nutanix.params.endpoint_host + '':'' + Nutanix.params.endpoint_port + ''/PrismGateway/services/rest/v2.0/'' + Nutanix.params.api_method, result = Nutanix.request(url); return JSON.stringify(result); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(4, ''[ Nutanix ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'Get the available hosts.','0','7d','0','',NULL,'10s','','','','200','1','0','','','0','0','0','0','0','0','0','06ce8fe78e9642cfb2064ad2aa25b50e','0','2','0'), ('47716','21','','10642','Get storage container','nutanix.storage.container.get','10m','0','0','0','4','','','','',NULL,NULL,'var Nutanix = { params: {}, setParams: function (requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); Nutanix.params = allParams; }, request: function (url) { var request = new HttpRequest(); if (typeof Nutanix.params.proxy !== ''undefined'' && Nutanix.params.proxy !== '''') { request.setProxy(Nutanix.params.proxy); } request.setHttpAuth(HTTPAUTH_BASIC, Nutanix.params.username, Nutanix.params.password); Zabbix.log(4, ''[ Nutanix ] Sending request: '' + url); const response = request.get(url); Zabbix.log(4, ''[ Nutanix ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() < 200 || request.getStatus() >= 300) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from Nutanix PRISM API. Check debug log for more information.''; } return response; }, deduplicateAlerts: function (full_data) { const severity_mapping = [ ''kinfo'', ''kwarning'', ''kcritical'' ] var output_data = {}; for (var entity in full_data.entities) { if (Nutanix.params.api_method === ''clusters'') { if (result.entities[entity].node_uuid.split(''-'').length == 5) continue; } var severity = severity_mapping.indexOf(full_data.entities[entity].severity.toLowerCase()), message = full_data.entities[entity].message, title = full_data.entities[entity].alert_title; full_data.entities[entity].context_types.forEach(function(context, index) { message = message.replace(''{'' + context + ''}'', full_data.entities[entity].context_values[index]); title = title.replace(''{'' + context + ''}'', full_data.entities[entity].context_values[index]); }); key = md5(title + message); if (key in output_data) { if (full_data.entities[entity].created_time_stamp_in_usecs > output_data[key].created) { output_data[key].created = full_data.entities[entity].created_time_stamp_in_usecs; output_data[key].severity = severity !== -1 ? severity : 3; output_data[key].state = full_data.entities[entity].resolved ? 0 : 1; output_data[key].message = full_data.entities[entity].detailed_message != '''' ? full_data.entities[entity].detailed_message : message; output_data[key].last_id = full_data.entities[entity].id; } output_data[key].count += 1; } else { output_data[key] = { "name": title + '' - '' + message, "title": title != '''' ? title : message, "created": full_data.entities[entity].created_time_stamp_in_usecs, "severity": severity !== -1 ? severity : 3, "state": full_data.entities[entity].resolved ? 0 : 1, "message": full_data.entities[entity].detailed_message != '''' ? full_data.entities[entity].detailed_message : message, "last_id": full_data.entities[entity].id, "count": 1 } } } return output_data; }, cleanUnsupported: function (full_stat) { var output_stat = {}; for (var element in full_stat) { if (full_stat[element] !== ''-1'') { output_stat[element] = full_stat[element]; } }; return output_stat; } }; try { const params = JSON.parse(value); Nutanix.setParams([''endpoint_host'', ''endpoint_port'', ''username'', ''password'', ''auth_type'', ''api_method''], params); const url = ''https://'' + Nutanix.params.endpoint_host + '':'' + Nutanix.params.endpoint_port + ''/PrismGateway/services/rest/v2.0/'' + Nutanix.params.api_method, result = Nutanix.request(url); var output_data = {}; for (var entity in result.entities) { output_data[result.entities[entity].storage_container_uuid] = result.entities[entity] } return JSON.stringify(output_data); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(4, ''[ Nutanix ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'Get the available storage containers.','0','7d','0','',NULL,'10s','','','','200','1','0','','','0','0','0','0','0','0','0','10cd43e73f1146cf8eb4bffd33978344','0','2','0'), ('47958','15','','10645','Queue usage','php-fpm.listen_queue_usage','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//php-fpm.listen_queue)/(last(//php-fpm.listen_queue_len)+(last(//php-fpm.listen_queue_len)=0))*100','','0','','','','','0',NULL,'The utilization of the queue.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bea3630fd88448228cd3e6b5808bac5f','0','2','0'), ('47959','7','','10645','Get processes summary','proc.get[{$PHP_FPM.PROCESS.NAME.PARAMETER},,,summary]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The aggregated data of summary metrics for all processes.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2e72b191ec3b481f800e100e69a85691','0','2','0'), ('47960','7','','10645','php-fpm_ping','web.page.get["{$PHP_FPM.HOST}","{$PHP_FPM.PING.PAGE}","{$PHP_FPM.PORT}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ca300d24e4434dd8bc5e86ea859eb9f6','0','2','0'), ('47961','7','','10645','Get status page','web.page.get["{$PHP_FPM.HOST}","{$PHP_FPM.STATUS.PAGE}?json","{$PHP_FPM.PORT}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','de356fd730494b27a701cb900cd5c9b1','0','2','0'), ('47979','7','','10645','CPU utilization','proc.cpu.util[{#PHP_FPM.NAME}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of the CPU utilization by a process `{#PHP_FPM.NAME}`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','65c8bd5634d84552b401c15237b74de8','0','2','0'), ('47987','15','','10646','Buffer pool efficiency','mysql.buffer_pool_efficiency','1m','31d','365d','0','0','','%','','',NULL,NULL,'100 - (last(//mysql.innodb_buffer_pool_reads) / ( last(//mysql.innodb_buffer_pool_read_requests) + ( last(//mysql.innodb_buffer_pool_read_requests) = 0 ) ) * 100 * ( last(//mysql.innodb_buffer_pool_read_requests) > 0 ))','','0','','','','','0',NULL,'The item shows how effectively the buffer pool is serving reads.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','82d31eef03914d4abde2448691d89a7a','0','2','0'), ('47988','15','','10646','Buffer pool utilization','mysql.buffer_pool_utilization','1m','31d','365d','0','0','','%','','',NULL,NULL,'( last(//mysql.innodb_buffer_pool_pages_total) - last(//mysql.innodb_buffer_pool_pages_free) ) / ( last(//mysql.innodb_buffer_pool_pages_total) + ( last(//mysql.innodb_buffer_pool_pages_total) = 0 ) ) * 100 * ( last(//mysql.innodb_buffer_pool_pages_total) > 0 )','','0','','','','','0',NULL,'Ratio of used to total pages in the buffer pool.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9fa2d2ebecaa4ff4bf2ec01a68cdf2a2','0','2','0'), ('47989','7','','10646','Get status variables','mysql.get_status_variables["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Gets server global status information.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b942938fd6564e3cbcc37c11f59b2bed','0','2','0'), ('47990','15','','10646','Calculated value of innodb_log_file_size','mysql.innodb_log_file_size','1m','31d','365d','0','0','','','','',NULL,NULL,'(last(//mysql.innodb_os_log_written) - last(//mysql.innodb_os_log_written,#1:now-1h)) / {$MYSQL.INNODB_LOG_FILES}','','0','','','','','0',NULL,'`Innodb_log_file_size` is calculated as: (`innodb_os_log_written`-`innodb_os_log_written`(time shift -1h))/`{$MYSQL.INNODB_LOG_FILES}`. `Innodb_log_file_size` is the size in bytes of the each InnoDB redo log file in the log group. The combined size can be no more than 512 GB. Larger values mean less disk I/O due to less flushing checkpoint activity, but also slower recovery from a crash.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c9e2183fde7d4fff96bd837c362c43e6','0','2','0'), ('47991','7','','10646','Status','mysql.ping["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"]','1m','31d','365d','0','3','','','','',NULL,'1259','','','0','','','','','0',NULL,'MySQL server status.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','338507e500574423915f798234c7f239','0','2','0'), ('47992','7','','10646','Version','mysql.version["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MySQL server version.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','674df57b5295448c89a7265902cc94ec','0','2','0'), ('48035','7','','10646','Database discovery','mysql.db.discovery["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"]','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning databases in DBMS.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1d8d7069e0064521b52b388e0c6bc0a7','0','2','0'), ('48037','7','','10646','Replication discovery','mysql.replication.discovery["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"]','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'If "show slave status" returns Master_Host, "Replication: *" items are created.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aaf6d2423fb34bef850be2d1be3fc36a','0','2','0'), ('48038','7','','10646','Size of database {#DATABASE}','mysql.db.size["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}","{#DATABASE}"]','5m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Database size.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f69eb8da26de4abb92cec75161e703f3','0','2','0'), ('48039','7','','10646','Replication Slave status {#MASTER_HOST}','mysql.replication.get_slave_status["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}","{#MASTER_HOST}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The item gets status information on the essential parameters of the slave threads.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6284876731214fb8bf51f09dd40cf5fe','0','2','0'), ('48049','15','','10647','Buffer pool efficiency','mysql.buffer_pool_efficiency','1m','31d','365d','0','0','','%','','',NULL,NULL,'100 - (last(//mysql.innodb_buffer_pool_reads) / ( last(//mysql.innodb_buffer_pool_read_requests) + ( last(//mysql.innodb_buffer_pool_read_requests) = 0 ) ) * 100 * ( last(//mysql.innodb_buffer_pool_read_requests) > 0 ))','','0','','','','','0',NULL,'The item shows how effectively the buffer pool is serving reads.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6179105b341e41e892398649eec227bb','0','2','0'), ('48050','15','','10647','Buffer pool utilization','mysql.buffer_pool_utilization','1m','31d','365d','0','0','','%','','',NULL,NULL,'( last(//mysql.innodb_buffer_pool_pages_total) - last(//mysql.innodb_buffer_pool_pages_free) ) / ( last(//mysql.innodb_buffer_pool_pages_total) + ( last(//mysql.innodb_buffer_pool_pages_total) = 0 ) ) * 100 * ( last(//mysql.innodb_buffer_pool_pages_total) > 0 )','','0','','','','','0',NULL,'Ratio of used to total pages in the buffer pool.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','427ee34312ca4fb595b71db9a350b1fc','0','2','0'), ('48051','7','','10647','Get status variables','mysql.get_status_variables["{$MYSQL.HOST}","{$MYSQL.PORT}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Gets server global status information.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','202cc1174b7f4b63a8c90bdc54ec2bb2','0','2','0'), ('48052','15','','10647','Calculated value of innodb_log_file_size','mysql.innodb_log_file_size','1m','31d','365d','0','0','','','','',NULL,NULL,'(last(//mysql.innodb_os_log_written) - last(//mysql.innodb_os_log_written,#1:now-1h)) / {$MYSQL.INNODB_LOG_FILES}','','0','','','','','0',NULL,'`Innodb_log_file_size` is calculated as: (`innodb_os_log_written`-`innodb_os_log_written`(time shift -1h))/`{$MYSQL.INNODB_LOG_FILES}`. `Innodb_log_file_size` is the size in bytes of the each InnoDB redo log file in the log group. The combined size can be no more than 512 GB. Larger values mean less disk I/O due to less flushing checkpoint activity, but also slower recovery from a crash.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8ce62d571e854df187d201bd4a7ccce1','0','2','0'), ('48053','7','','10647','Status','mysql.ping["{$MYSQL.HOST}","{$MYSQL.PORT}"]','1m','31d','365d','0','3','','','','',NULL,'1260','','','0','','','','','0',NULL,'MySQL server status.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ca43acd282a8435884b33af454b207fb','0','2','0'), ('48054','7','','10647','Version','mysql.version["{$MYSQL.HOST}","{$MYSQL.PORT}"]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MySQL server version.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2071500ce5ac486fa322fbab8acac046','0','2','0'), ('48097','7','','10647','Database discovery','mysql.db.discovery["{$MYSQL.HOST}","{$MYSQL.PORT}"]','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning databases in DBMS.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5f6d9b9473494b6d8a9bd0f75211ffac','0','2','0'), ('48099','7','','10647','Replication discovery','mysql.replication.discovery["{$MYSQL.HOST}","{$MYSQL.PORT}"]','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'If "show slave status" returns Master_Host, "Replication: *" items are created.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','af8c7f2a0fe7405194887397ee722e47','0','2','0'), ('48100','7','','10647','Size of database {#DBNAME}','mysql.dbsize["{$MYSQL.HOST}","{$MYSQL.PORT}","{#DBNAME}"]','5m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Database size.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','def6d1e8f3584454b70fb11d99cb30d0','0','2','0'), ('48101','7','','10647','Replication Slave status {#MASTER_HOST}','mysql.slave_status["{$MYSQL.HOST}","{$MYSQL.PORT}","{#MASTER_HOST}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The item gets status information on the essential parameters of the slave threads.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2a9a2449f0b945afb2b16a1f744ffaef','0','2','0'), ('48111','7','','10648','Get archive','pgsql.archive["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect archive status metrics.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','218b03c8bfb84b07ae0ec9ba0932fff3','0','2','0'), ('48112','7','','10648','Count of autovacuum workers','pgsql.autovacuum.count["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of autovacuum workers.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bc14c8544eed47ce9510a803be5708d7','0','2','0'), ('48113','7','','10648','Get bgwriter','pgsql.bgwriter["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect all metrics from pg_stat_bgwriter: https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-BGWRITER-VIEW','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8d0dd45f06974d6b8be9cc11404ac1c3','0','2','0'), ('48114','15','','10648','Cache hit ratio, %','pgsql.cache.hit','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//pgsql.dbstat.sum.blks_hit.rate) * 100 / (last(//pgsql.dbstat.sum.blks_hit.rate) + last(//pgsql.dbstat.sum.blks_read.rate))','','0','','','','','0',NULL,'Cache hit ratio.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7b701ad8f20a44958956a6cbfd4e5da2','0','2','0'), ('48115','7','','10648','Get connections sum','pgsql.connections["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect all metrics from pg_stat_activity: https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-ACTIVITY-VIEW','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','52d9d2342b9c40a2b279dcbe4bcff023','0','2','0'), ('48116','7','','10648','Custom queries','pgsql.custom.query["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}",""]','1m','1h','0','1','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Execute custom queries from file *.sql (check for option Plugins.Postgres.CustomQueriesPath at agent configuration).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','defcba230619484db1a7d6faace8b33d','0','2','0'), ('48117','7','','10648','Get dbstat sum','pgsql.dbstat.sum["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect all metrics from pg_stat_database as sums for all databases: https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-DATABASE-VIEW','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8d84c4ec8d05427f9da4b9a1904a0af4','0','2','0'), ('48118','7','','10648','Get dbstat','pgsql.dbstat["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect all metrics from pg_stat_database per database: https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-DATABASE-VIEW','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e36f2b3e33e2435d9b95472a7844a1a4','0','2','0'), ('48119','7','','10648','Get locks','pgsql.locks["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect all metrics from pg_locks per database: https://www.postgresql.org/docs/current/explicit-locking.html#LOCKING-TABLES','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','df19db910015411996e25ea5b48f0742','0','2','0'), ('48120','7','','10648','Age of oldest xid','pgsql.oldest.xid["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Age of oldest xid.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1a32b0308496460b83ad2698edb21420','0','2','0'), ('48121','7','','10648','Ping','pgsql.ping["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','31d','365d','0','3','','','','',NULL,'1264','','','0','','','','','0',NULL,'Used to test a connection to see if it is alive. It is set to 0 if the query is unsuccessful.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','52edd592df6f49df9bf46b5e93689a1a','0','2','0'), ('48122','7','','10648','Get queries','pgsql.queries["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}","{$PG.QUERY_ETIME.MAX.WARN}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect all metrics by query execution time.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','060c0efaf60944538bf5fb6ca2828dc6','0','2','0'), ('48123','7','','10648','Replication: Standby count','pgsql.replication.count["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of standby servers.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f15d0758764c4bd6b607335d9d57b76b','0','2','0'), ('48124','7','','10648','Replication: Lag in bytes','pgsql.replication.lag.b["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Replication lag with master, in bytes.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a3297ef8198145848d4e3b16b7b8eb8b','0','2','0'), ('48125','7','','10648','Replication: Lag in seconds','pgsql.replication.lag.sec["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Replication lag with master, in seconds.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','142e93b332e24ecfbd50465bb4af91e7','0','2','0'), ('48126','7','','10648','Get replication','pgsql.replication.process["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect metrics from the pg_stat_replication, which contains information about the WAL sender process, showing statistics about replication to that sender''s connected standby server.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aa03fb9cabd8459ea5f5efb90c9e1051','0','2','0'), ('48127','7','','10648','Replication: Recovery role','pgsql.replication.recovery_role["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','31d','365d','0','3','','','','',NULL,'1262','','','0','','','','','0',NULL,'Replication role: 1 — recovery is still in progress (standby mode), 0 — master mode.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','226bcc226ffc487ba90d998a03692404','0','2','0'), ('48128','7','','10648','Replication: Status','pgsql.replication.status["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','31d','365d','0','3','','','','',NULL,'1263','','','0','','','','','0',NULL,'Replication status: 0 — streaming is down, 1 — streaming is up, 2 — master mode.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ef2ac5eaf73c40e09af41bba03b4fac8','0','2','0'), ('48129','7','','10648','Uptime','pgsql.uptime["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','31d','365d','0','0','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'Time since the server started.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','46b53fcf97a74619a03c2490fe9b71ea','0','2','0'), ('48130','7','','10648','Version','pgsql.version["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'PostgreSQL version.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7a96feee8118450e83e994be87bc5eea','0','2','0'), ('48131','7','','10648','Get WAL','pgsql.wal.stat["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','5m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect write-ahead log (WAL) metrics.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cb2a0f990a39411e9d3c7d95cc7504ee','0','2','0'), ('48176','7','','10648','Database discovery','pgsql.db.discovery["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers databases (DB) in the database management system (DBMS), except: - templates; - DBs that do not allow connections.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c5a95125be304bbeba407ce926ad7816','0','2','0'), ('48177','7','','10648','Replication discovery','pgsql.replication.process.discovery["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','15m','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers replication lag metrics.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','92ba6c1b038a454d8d8d40399d0967d8','0','2','0'), ('48178','7','','10648','DB [{#DBNAME}]: Database age','pgsql.db.age["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{#DBNAME}"]','10m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Database age.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7df48c3384b14356903c38b3b0e1c435','0','2','0'), ('48179','7','','10648','DB [{#DBNAME}]: Bloating tables','pgsql.db.bloating_tables["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{#DBNAME}"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bloating tables.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cd5516d8ea994a9e86aff2081d611176','0','2','0'), ('48180','7','','10648','DB [{#DBNAME}]: Database size','pgsql.db.size["{$PG.CONNSTRING.AGENT2}","{$PG.USER}","{$PG.PASSWORD}","{#DBNAME}"]','5m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Database size.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f2d58306483d4bb4a215e245f133b4ad','0','2','0'), ('48223','7','','10649','Get bgwriter','pgsql.bgwriter["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect all metrics from pg_stat_bgwriter: https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-BGWRITER-VIEW','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','08043026cea14053a0addd4bdb7b7b8d','0','2','0'), ('48224','7','','10649','Cache hit ratio, %','pgsql.cache.hit["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Cache hit ratio.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','934e6647557f41cba46532a5a5c5d2ea','0','2','0'), ('48225','7','','10649','Config hash','pgsql.config.hash["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','15m','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'PostgreSQL configuration hash.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2d028578428949da8fa05d1f62f9f615','0','2','0'), ('48226','7','','10649','Get connections sum','pgsql.connections.sum["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect all metrics from pg_stat_activity: https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-ACTIVITY-VIEW','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','13cce1cb170f4c9db977cb49fc603f79','0','2','0'), ('48227','7','','10649','Get dbstat','pgsql.dbstat["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect all metrics from pg_stat_database per database: https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-DATABASE-VIEW','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bea2e947b16b4a3dac660e664a505904','0','2','0'), ('48228','7','','10649','Get locks','pgsql.locks["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect all metrics from pg_locks per database: https://www.postgresql.org/docs/current/explicit-locking.html#LOCKING-TABLES','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e5adbe1c2fc74943926cf45ff5efbff3','0','2','0'), ('48229','7','','10649','Ping time','pgsql.ping.time["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Used to get the `SELECT 1` query execution time.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2ab77e9548014233b0945bdeb9c134bd','0','2','0'), ('48230','7','','10649','Ping','pgsql.ping["{$PG.HOST}","{$PG.PORT}"]','1m','31d','365d','0','3','','','','',NULL,'1267','','','0','','','','','0',NULL,'Used to test a connection to see if it is alive. It is set to 0 if the instance doesn''t accept the connections.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','058b3cd8308b4692a5cb3e89a47886bd','0','2','0'), ('48231','7','','10649','Get queries','pgsql.queries["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}","{$PG.QUERY_ETIME.MAX.WARN}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect all metrics by query execution time.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2a4de36d7b434260b264a63ab444a430','0','2','0'), ('48232','7','','10649','Replication: Standby count','pgsql.replication.count["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of standby servers.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','401331b4eab0439ca954551bce2f0c2e','0','2','0'), ('48233','7','','10649','Replication: Lag in seconds','pgsql.replication.lag.sec["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Replication lag with master, in seconds.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2005dff88ab64458b3970a40e5bf0aff','0','2','0'), ('48234','7','','10649','Replication: Recovery role','pgsql.replication.recovery_role["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','31d','365d','0','3','','','','',NULL,'1265','','','0','','','','','0',NULL,'Replication role: 1 — recovery is still in progress (standby mode), 0 — master mode.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','808f71865b934ac68512a3d6fa8b4aab','0','2','0'), ('48235','7','','10649','Replication: Status','pgsql.replication.status["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','31d','365d','0','3','','','','',NULL,'1266','','','0','','','','','0',NULL,'Replication status: 0 — streaming is down, 1 — streaming is up, 2 — master mode.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5c4061c4081d41fa86741a296378d031','0','2','0'), ('48236','7','','10649','Get transactions','pgsql.transactions["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect metrics by transaction execution time.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b22ed1707bd84c4faa010803b2c594fa','0','2','0'), ('48237','7','','10649','Uptime','pgsql.uptime["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1m','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'Time since the server started.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d310b47d3e38466a980494fb0f9dfb01','0','2','0'), ('48238','7','','10649','Version','pgsql.version["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'PostgreSQL version.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9798496e21914a8cbdee1cd85decf3e8','0','2','0'), ('48239','7','','10649','Get WAL','pgsql.wal.stat["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','5m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collect write-ahead log (WAL) metrics.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9ca8653ea8304b5392d1c39111381751','0','2','0'), ('48263','7','','10649','Database discovery','pgsql.discovery.db["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}"]','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers databases (DB) in the database management system (DBMS), except: - templates; - default "postgres" DB; - DBs that do not allow connections.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d9625ea888804a8b82d395e1e002c6cd','0','2','0'), ('48264','7','','10649','DB [{#DBNAME}]: Database size','pgsql.db.size["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}","{#DBNAME}"]','15m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Database size.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f8d430b69f4f4f2aa04e2906cc4ab3cd','0','2','0'), ('48265','7','','10649','DB [{#DBNAME}]: Get frozen XID','pgsql.frozenxid["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{#DBNAME}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2e0e02f98b3c45d195f93e1ed8ec343d','0','2','0'), ('48266','7','','10649','DB [{#DBNAME}]: Get scans','pgsql.scans["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{#DBNAME}"]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of scans done for table/index in this database.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8ee891f2e0ae4c74a24ebffc67380f01','0','2','0'), ('48296','3','','10650','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'1278','','','0','','','','','0',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2af50dac1b3245a9b6c350c1096209b6','0','2','0'), ('48297','3','','10650','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','250e30e7298444df8208e15c6a32a1c5','0','2','0'), ('48298','3','','10650','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8b40a9b8da8546e2a0b593e7dbb72537','0','2','0'), ('48299','20','walk[ 1.3.6.1.4.1.2636.5.1.1.2.1.1.1.3, 1.3.6.1.4.1.2636.5.1.1.2.4.1.1.1, 1.3.6.1.4.1.2636.5.1.1.2.6.2.1.2, 1.3.6.1.4.1.2636.5.1.1.2.6.2.1.7, 1.3.6.1.4.1.2636.5.1.1.2.6.2.1.8, 1.3.6.1.4.1.2636.5.1.1.2.6.2.1.10, 1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2, 1.3.6.1.4.1.2636.5.1.1.2.1.1.1.11, 1.3.6.1.4.1.2636.5.1.1.2.1.1.1.14, 1.3.6.1.4.1.2636.5.1.1.2.1.1.1.13]','10650','SNMP walk BGP Peer','juniper.mx.bgp.peer.data.snmp.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning `BGP4-V2-MIB-JUNIPER::jnxBgpM2PeerData` for BGP Peer Data.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0335221808684100bd1e062a730a909d','0','2','0'), ('48300','20','walk[ 1.3.6.1.4.1.2636.5.1.1.2.6.2.1.1, 1.3.6.1.4.1.2636.5.1.1.2.6.2.1.2, 1.3.6.1.4.1.2636.5.1.1.2.6.2.1.7, 1.3.6.1.4.1.2636.5.1.1.2.6.2.1.8, 1.3.6.1.4.1.2636.5.1.1.2.6.2.1.9, 1.3.6.1.4.1.2636.5.1.1.2.6.2.1.10, 1.3.6.1.4.1.2636.5.1.1.2.6.2.1.11]','10650','SNMP walk BGP Prefix Counters','juniper.mx.bgp.prefix.counters.snmp.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning `BGP4-V2-MIB-JUNIPER::jnxBgpM2PrefixCountersTable` for Prefix Counters.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a6bab1f7b7bd45cf9dcfbb309957cf91','0','2','0'), ('48301','20','walk[1.3.6.1.4.1.2636.3.60.1.2.1.1.1, 1.3.6.1.4.1.2636.3.60.1.2.1.1.2, 1.3.6.1.4.1.2636.3.60.1.2.1.1.4, 1.3.6.1.4.1.2636.3.60.1.2.1.1.6, 1.3.6.1.4.1.2636.3.60.1.2.1.1.8, 1.3.6.1.4.1.2636.3.60.1.2.1.1.9, 1.3.6.1.4.1.2636.3.60.1.1.1.1.8, 1.3.6.1.4.1.2636.3.60.1.1.1.1.30, 1.3.6.1.2.1.2.2.1.8, 1.3.6.1.2.1.2.2.1.7, 1.3.6.1.2.1.31.1.1.1.18, 1.3.6.1.2.1.31.1.1.1.1, 1.3.6.1.2.1.2.2.1.2, 1.3.6.1.2.1.2.2.1.3]','10650','SNMP walk Multi-lane digital optical monitoring','juniper.mx.dom.snmp.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning `JUNIPER-DOM-MIB::jnxDomModuleLaneTable` for multi-lane digital optical monitoring.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9d7d94b8c0d046d2a1a6426e89128719','0','2','0'), ('48302','20','walk[1.3.6.1.2.1.10.7.2.1.19,1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2]','10650','SNMP walk EtherLike-MIB interfaces','juniper.mx.net.if.duplex.snmp.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovery of interfaces from IF-MIB and EtherLike-MIB. Interfaces with operational status `up(1)` are discovered.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7ddc368f670e40d1b5770e0a4428ce45','0','2','0'), ('48303','20','walk[1.3.6.1.2.1.2.2.1.8, 1.3.6.1.2.1.2.2.1.2, 1.3.6.1.2.1.2.2.1.3, 1.3.6.1.2.1.2.2.1.7, 1.3.6.1.2.1.2.2.1.13, 1.3.6.1.2.1.2.2.1.14, 1.3.6.1.2.1.2.2.1.19, 1.3.6.1.2.1.2.2.1.20, 1.3.6.1.2.1.31.1.1.1.1, 1.3.6.1.2.1.31.1.1.1.6, 1.3.6.1.2.1.31.1.1.1.10, 1.3.6.1.2.1.31.1.1.1.15, 1.3.6.1.2.1.31.1.1.1.18]','10650','SNMP walk Network interfaces','juniper.mx.net.if.snmp.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovery of interfaces from IF-MIB.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b11839f1bddd4781b23111511db1615a','0','2','0'), ('48304','20','walk[1.3.6.1.4.1.2636.3.1.13.1.5, 1.3.6.1.4.1.2636.3.1.13.1.7, 1.3.6.1.4.1.2636.3.1.13.1.8, 1.3.6.1.4.1.2636.3.1.13.1.5.2, 1.3.6.1.4.1.2636.3.1.13.1.5.4, 1.3.6.1.4.1.2636.3.1.13.1.6.4, 1.3.6.1.4.1.2636.3.1.13.1.6.2, 1.3.6.1.4.1.2636.3.1.13.1.11]','10650','SNMP walk Operating Table','juniper.mx.operating.snmp.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning `JUNIPER-MIB::jnxOperatingTable` for CPU, Memory, Temperature, and Fans.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f42152e7c0504aa4bfa611725f365afc','0','2','0'), ('48305','20','walk[ 1.3.6.1.2.1.14.10.1.1, 1.3.6.1.2.1.14.10.1.3, 1.3.6.1.2.1.14.10.1.5, 1.3.6.1.2.1.14.10.1.6, 1.3.6.1.2.1.14.10.1.7, 1.3.6.1.2.1.14.10.1.11]','10650','SNMP walk OSPF Neighbors','juniper.mx.ospf.nbr.snmp.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning `OSPF-MIB::ospfNbrTable` for OSPF Neighbors.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','80f06a9c2725450e9b5a16377b2cf7af','0','2','0'), ('48306','20','walk[ 1.3.6.1.4.1.2636.5.4.1.1.9.1.5, 1.3.6.1.4.1.2636.5.4.1.1.9.1.7, 1.3.6.1.4.1.2636.5.4.1.1.9.1.8, 1.3.6.1.4.1.2636.5.4.1.1.9.1.9, 1.3.6.1.4.1.2636.5.4.1.1.9.1.11]','10650','SNMP walk OSPFv3 Neighbors','juniper.mx.ospfv3.nbr.snmp.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning `OSPFV3-MIB-JUNIPER::jnxOspfv3NbrTable` for OSPFv3 Neighbors.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4f3115a33a6a43b6bf0ab2be3eeec995','0','2','0'), ('48307','20','walk[1.3.6.1.4.1.2636.3.1.14.1.5, 1.3.6.1.4.1.2636.3.1.14.1.6, 1.3.6.1.4.1.2636.3.1.14.1.10, 1.3.6.1.4.1.2636.3.1.14.1.16, 1.3.6.1.4.1.2636.3.1.14.1.7]','10650','SNMP walk Redundancy Table','juniper.mx.redundancy.table.snmp.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning `JUNIPER-MIB::jnxRedundancyTable` for Router Redundancy.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d72814c5b9c64f4e843a04137b99dad6','0','2','0'), ('48308','20','get[1.3.6.1.2.1.1.4.0]','10650','System contact details','juniper.mx.system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Name and contact information of the contact person for the node. If not provided, the value is a zero-length string.','23','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b9b7da53c32a4b48958c313ed45870b1','0','2','0'), ('48309','20','get[1.3.6.1.2.1.1.1.0]','10650','System description','juniper.mx.system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating system, and networking software.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','092dbc3c0da648449e69047d3f83b2ba','0','2','0'), ('48310','20','get[1.3.6.1.4.1.2636.3.1.2.0]','10650','Hardware model name','juniper.mx.system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: JUNIPER-MIB The name, model, or detailed description of the device, indicating which product it represents, for example, `M40`.','29','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e101a0bd30ae45f6bff0b2b8c914f95b','0','2','0'), ('48311','20','get[1.3.6.1.4.1.2636.3.1.3.0]','10650','Hardware serial number','juniper.mx.system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: JUNIPER-MIB The serial number of this subject, blank if unknown or unavailable.','8','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7fbc5fa8ef084cf585d5a617812b2d70','0','2','0'), ('48312','20','get[1.3.6.1.2.1.25.1.1.0]','10650','Uptime (hardware)','juniper.mx.system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from `sysUpTime` in the SNMPv2-MIB [RFC1907] because `sysUpTime` is the uptime of the network management portion of the system.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c2bcb74f5afe4659af6a614ea98dbf51','0','2','0'), ('48313','20','get[1.3.6.1.2.1.1.6.0]','10650','System location','juniper.mx.system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ef6895d078204d17b7f3ba142c2075bf','0','2','0'), ('48314','20','get[1.3.6.1.2.1.1.5.0]','10650','System name','juniper.mx.system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node. By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is a zero-length string.','3','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1a80dba9043e43edb4c073f397e471c9','0','2','0'), ('48315','20','get[1.3.6.1.2.1.1.3.0]','10650','Uptime (network)','juniper.mx.system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','33b048b47db542d6bc304a0048e4b743','0','2','0'), ('48316','20','get[1.3.6.1.2.1.1.2.0]','10650','System object ID','juniper.mx.system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the entity as part of the vendor''s SMI enterprises subtree with the prefix 1.3.6.1.4.1 (e.g., a vendor with the identifier 1.3.6.1.4.1.4242 might assign a system object with the OID 1.3.6.1.4.1.4242.1.1).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','832ad6d2465e4c20813c194114d2655b','0','2','0'), ('48317','20','get[1.3.6.1.2.1.1.1.0]','10650','Operating system','juniper.mx.system.sw.os[sysDescr.0]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB','5','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8f743934b3364cadbef2f178cc5aabb1','0','2','0'), ('48318','17','','10650','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other `snmptrap` items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d2d0f8b19fc3474880ce2decd2880ce8','0','2','0'), ('48319','5','','10650','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'1279','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8223b49a0d1f4467a5f79e423a4bf862','0','2','0'), ('48368','21','','10651','Get data','azure.sql_inst.data.get','1m','0','0','0','4','','','','',NULL,NULL,E'var Azure = { params: {}, token: null, setParams: function (params) { [''app_id'', ''password'', ''tenant_id'', ''subscription_id'', ''resource_id''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); Azure.params = params; }, login: function () { var response, login = new HttpRequest(); if (typeof Azure.params.proxy !== ''undefined'' && Azure.params.proxy !== '''') { login.setProxy(Azure.params.proxy); } login.addHeader(''Content-Type: application/x-www-form-urlencoded''); response = login.post( ''https://login.microsoftonline.com/'' + encodeURIComponent(Azure.params.tenant_id) + ''/oauth2/token'', ''grant_type=client_credentials&resource='' + encodeURIComponent(''https://management.azure.com/'') + ''&client_id='' + encodeURIComponent(Azure.params.app_id) + ''&client_secret='' + encodeURIComponent(Azure.params.password) ); if (login.getStatus() !== 200) { throw ''Login failed with status code '' + login.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse login session response.''; } if (!response.hasOwnProperty(''access_token'')) { throw ''Authentication response does not contain access token.''; } Azure.token = response[''access_token'']; }, request: function (url) { var response, request = new HttpRequest(); if (typeof Azure.params.proxy !== ''undefined'' && Azure.params.proxy !== '''') { request.setProxy(Azure.params.proxy); } if (!Azure.token) { throw ''Request does not contain access token.''; } request.addHeader(''Content-Type: application/json''); request.addHeader(''Authorization: Bearer '' + Azure.token); Zabbix.log(4, ''[ Azure SQL instance ] request url: '' + url); response = request.get(url); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { return JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API.''; } }, getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getMetricsData: function () { var data = {}, metric_endpoints = { ''main_metrics'': ''/providers/Microsoft.Insights/metrics?metricnames='' + encodeURIComponent(''virtual_core_count,avg_cpu_percent,reserved_storage_mb,storage_space_used_mb,io_requests,io_bytes_read,io_bytes_written'') + ''&api-version=2021-05-01×pan=PT5M'', }; data.metrics = {}; Object.keys(metric_endpoints).forEach(function (field) { metrics = Azure.getField(Azure.request(''https://management.azure.com'' + Azure.params.resource_id + metric_endpoints[field]), ''value''); for (k in metrics) { key = Azure.getField(metrics[k], ''name.value'').replace(/(\\s|\\/)+/g, ''''); if (metrics[k].timeseries.length === 0) { metrics[k].timeseries.push({ ''data'': [''nodata''] }) } values = Azure.getField(metrics[k], ''timeseries.0.data''); for (var i = values.length - 1; i >= 0; i--) { if (typeof (values[i].average) !== ''undefined'') { data.metrics[key] = values[i]; break; } } } }); data.health = Azure.getField(Azure.request(''https://management.azure.com'' + Azure.params.resource_id + ''/providers/Microsoft.ResourceHealth/availabilityStatuses?api-version=2020-05-01''), ''value.0.properties''); data.instance = Azure.request(''https://management.azure.com'' + Azure.params.resource_id + ''?api-version=2024-05-01-preview''); return data } }; try { Azure.setParams(JSON.parse(value)); Azure.login(); return JSON.stringify(Azure.getMetricsData()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ Azure SQL instance ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'Gathers data of the Azure SQL managed instance.','0','7d','0','',NULL,'{$AZURE.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','4dc91ae07bd048128a34da5b7ba090e8','0','2','0'), ('48369','15','','10651','Storage space utilization','azure.sql_inst.storage.utilization','1m','31d','365d','0','3','','%','','',NULL,NULL,'last(//azure.sql_inst.storage.used) * 100 / last(//azure.sql_inst.storage.reserved)','','0','','','','','0',NULL,'Managed instance storage space utilization, in percent.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b3ea1180eb174fb38656c9696fa9d9a7','0','2','0'), ('48384','19','','10653','Get device certificate','pan.pa440.certificate.device.get','1h','0','0','0','4','','','','',NULL,NULL,'','','1','{$PAN.PA440.USER}','{$PAN.PA440.PASSWORD}','','','0',NULL,'Get the information about the device certificate. Note that superuser privileges are required to obtain the device certificate data.','0','7d','0','',NULL,'{$PAN.PA440.TIMEOUT}','{$PAN.PA440.API.URL}',E'[{"type":"op"},{"cmd":"<\\/status><\\/device-certificate><\\/show>"}]','','','1','0','{$PAN.PA440.HTTP_PROXY}','','0','0','0','0','0','0','0','4bdcedebb6dd4fd4951a13c52749b89d','0','2','0'), ('48385','19','','10653','Get certificates','pan.pa440.certificate.get','1h','0','0','0','4','','','','',NULL,NULL,'','','1','{$PAN.PA440.USER}','{$PAN.PA440.PASSWORD}','','','0',NULL,'Get the information about the certificates on the device.','0','7d','0','',NULL,'{$PAN.PA440.TIMEOUT}','{$PAN.PA440.API.URL}',E'[{"type":"config"},{"action":"get"},{"xpath":"\\/config\\/shared\\/certificate"}]','','','1','0','{$PAN.PA440.HTTP_PROXY}','','0','0','0','0','0','0','0','0d8d933aff9a4523aa784722616aa40f','0','2','0'), ('48386','19','','10653','Get system environmentals','pan.pa440.environmentals.get','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$PAN.PA440.USER}','{$PAN.PA440.PASSWORD}','','','0',NULL,'Get the system environment state information.','0','7d','0','',NULL,'{$PAN.PA440.TIMEOUT}','{$PAN.PA440.API.URL}',E'[{"type":"op"},{"cmd":"<\\/environmentals><\\/system><\\/show>"}]','','','1','0','{$PAN.PA440.HTTP_PROXY}','','0','0','0','0','0','0','0','d971daee3e2340a981b0c079adf3abdc','0','2','0'), ('48387','19','','10653','Get HA info','pan.pa440.ha.get','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$PAN.PA440.USER}','{$PAN.PA440.PASSWORD}','','','0',NULL,'Get the high availability information.','0','7d','0','',NULL,'{$PAN.PA440.TIMEOUT}','{$PAN.PA440.API.URL}',E'[{"type":"op"},{"cmd":"<\\/all><\\/high-availability><\\/show>"}]','','','1','0','{$PAN.PA440.HTTP_PROXY}','','0','0','0','0','0','0','0','81e26d3d45fb4cf9a085ecaf980dfc76','0','2','0'), ('48388','19','','10653','Get licenses','pan.pa440.licenses.get','1h','0','0','0','4','','','','',NULL,NULL,'','','1','{$PAN.PA440.USER}','{$PAN.PA440.PASSWORD}','','','0',NULL,'Get the information about installed licenses.','0','7d','0','',NULL,'{$PAN.PA440.TIMEOUT}','{$PAN.PA440.API.URL}',E'[{"type":"op"},{"cmd":"<\\/info><\\/license><\\/request>"}]','','','1','0','{$PAN.PA440.HTTP_PROXY}','','0','0','0','0','0','0','0','296fb66ceb8d45e0aa923bf7227711b5','0','2','0'), ('48389','19','','10653','Get OSPF neighbors','pan.pa440.ospf.neighbors.get','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$PAN.PA440.USER}','{$PAN.PA440.PASSWORD}','','','0',NULL,'Get the OSPF neighbor information.','0','7d','0','',NULL,'{$PAN.PA440.TIMEOUT}','{$PAN.PA440.API.URL}',E'[{"type":"op"},{"cmd":"<\\/neighbor><\\/ospf><\\/protocol><\\/routing><\\/show>"}]','','','1','0','{$PAN.PA440.HTTP_PROXY}','','0','0','0','0','0','0','0','2c88e39db8634c5baa03e9e6bd974e52','0','2','0'), ('48390','19','','10653','Get OSPFv3 neighbors','pan.pa440.ospfv3.neighbors.get','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$PAN.PA440.USER}','{$PAN.PA440.PASSWORD}','','','0',NULL,'Get the OSPFv3 neighbor information.','0','7d','0','',NULL,'{$PAN.PA440.TIMEOUT}','{$PAN.PA440.API.URL}',E'[{"type":"op"},{"cmd":"<\\/neighbor><\\/ospfv3><\\/protocol><\\/routing><\\/show>"}]','','','1','0','{$PAN.PA440.HTTP_PROXY}','','0','0','0','0','0','0','0','b4dda8f48f734b9bae0a1c55bd2faf45','0','2','0'), ('48391','19','','10653','Get session info','pan.pa440.session_info.get','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$PAN.PA440.USER}','{$PAN.PA440.PASSWORD}','','','0',NULL,'Get the information about sessions.','0','7d','0','',NULL,'{$PAN.PA440.TIMEOUT}','{$PAN.PA440.API.URL}',E'[{"type":"op"},{"cmd":"<\\/info><\\/session><\\/show>"}]','','','1','0','{$PAN.PA440.HTTP_PROXY}','','0','0','0','0','0','0','0','f3defb28d70a4a0f9ebd036d65e1fda2','0','2','0'), ('48392','19','','10653','Get system info','pan.pa440.system_info.get','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$PAN.PA440.USER}','{$PAN.PA440.PASSWORD}','','','0',NULL,'Get the general system information.','0','7d','0','',NULL,'{$PAN.PA440.TIMEOUT}','{$PAN.PA440.API.URL}',E'[{"type":"op"},{"cmd":"<\\/info><\\/system><\\/show>"}]','','','1','0','{$PAN.PA440.HTTP_PROXY}','','0','0','0','0','0','0','0','5133c9b5e7284141ba1da1d1d1c726f8','0','2','0'), ('48393','19','','10653','Get system state','pan.pa440.system_state.get','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$PAN.PA440.USER}','{$PAN.PA440.PASSWORD}','','','0',NULL,'Get the system state information. Used with a filter to retrieve CPU utilization metrics.','0','7d','0','',NULL,'{$PAN.PA440.TIMEOUT}','{$PAN.PA440.API.URL}',E'[{"type":"op"},{"cmd":"sys.monitor.s1.*.exports<\\/filter><\\/state><\\/system><\\/show>"}]','','','1','0','{$PAN.PA440.HTTP_PROXY}','','0','0','0','0','0','0','0','7bbaec54328a472e99c47edca0aa13c0','0','2','0'), ('48422','19','','10653','BGP peer discovery','pan.pa440.bgp.peer.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','1','{$PAN.PA440.USER}','{$PAN.PA440.PASSWORD}','','','1',NULL,'Discovers BGP peers.','0','7d','1','',NULL,'{$PAN.PA440.TIMEOUT}','{$PAN.PA440.API.URL}',E'[{"type":"op"},{"cmd":"<\\/peer><\\/bgp><\\/protocol><\\/routing><\\/show>"}]','','','1','0','{$PAN.PA440.HTTP_PROXY}','','0','0','0','0','0','0','0','94f62f452c3947f688e99fcea7f07b04','0','2','0'), ('48427','19','','10653','Hardware network interface discovery','pan.pa440.if.hw.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','1','{$PAN.PA440.USER}','{$PAN.PA440.PASSWORD}','','','1',NULL,'Discovers hardware network interfaces.','0','7d','1','',NULL,'{$PAN.PA440.TIMEOUT}','{$PAN.PA440.API.URL}',E'[{"type":"op"},{"cmd":"hardware<\\/interface><\\/show>"}]','','','1','0','{$PAN.PA440.HTTP_PROXY}','','0','0','0','0','0','0','0','77eb005985d24e8bbe2ca56ea7c82f86','0','2','0'), ('48428','19','','10653','Logical network interface discovery','pan.pa440.if.sw.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','1','{$PAN.PA440.USER}','{$PAN.PA440.PASSWORD}','','','1',NULL,'Discovers logical network interfaces.','0','7d','1','',NULL,'{$PAN.PA440.TIMEOUT}','{$PAN.PA440.API.URL}',E'[{"type":"op"},{"cmd":"logical<\\/interface><\\/show>"}]','','','1','0','{$PAN.PA440.HTTP_PROXY}','','0','0','0','0','0','0','0','0328c545f98e4e2e90648b5990d365c7','0','2','0'), ('48432','19','','10653','BGP peer [{#PEER}]: Get data','pan.pa440.bgp.peer.get[{#PEERGROUP}, {#PEERADDR}, {#PEER}]','1m','0','0','0','4','','','','',NULL,NULL,'','','1','{$PAN.PA440.USER}','{$PAN.PA440.PASSWORD}','','','2',NULL,'Get the information about the peer.','0','7d','0','',NULL,'{$PAN.PA440.TIMEOUT}','{$PAN.PA440.API.URL}',E'[{"type":"op"},{"cmd":"{#PEER}<\\/peer-name><\\/peer><\\/bgp><\\/protocol><\\/routing><\\/show>"}]','','','1','0','{$PAN.PA440.HTTP_PROXY}','','0','0','0','0','0','0','0','8cb01b4d3dbe403bae338af458c38b7b','0','2','0'), ('48433','19','','10653','Interface [{#IFNAME}]: Get data','pan.pa440.if.hw.get[{#IFNAME}]','3m','0','0','0','4','','','','',NULL,NULL,'','','1','{$PAN.PA440.USER}','{$PAN.PA440.PASSWORD}','','','2',NULL,'Get the interface statistics.','0','7d','0','',NULL,'{$PAN.PA440.TIMEOUT}','{$PAN.PA440.API.URL}',E'[{"type":"op"},{"cmd":"{#IFNAME}<\\/interface><\\/show>"}]','','','1','0','{$PAN.PA440.HTTP_PROXY}','','0','0','0','0','0','0','0','19bcb77f16e44adbae1abd384b7c8105','0','2','0'), ('48434','19','','10653','VSYS [{#VSYS}]: Interface [{#IFNAME}]: Get data','pan.pa440.if.sw.get[{#VSYS}, {#IFNAME}]','3m','0','0','0','4','','','','',NULL,NULL,'','','1','{$PAN.PA440.USER}','{$PAN.PA440.PASSWORD}','','','2',NULL,'Get the interface statistics.','0','7d','0','',NULL,'{$PAN.PA440.TIMEOUT}','{$PAN.PA440.API.URL}',E'[{"type":"op"},{"cmd":"{#IFNAME}<\\/interface><\\/show>"}]','','','1','0','{$PAN.PA440.HTTP_PROXY}','','0','0','0','0','0','0','0','b7bc2017a9f240c793d526612738e0f8','0','2','0'), ('48461','21','','10654','Get array controller resources','dell.server.array.resources.get','1m','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Controller'', ''Discovery'', params); const controllers = dell.extractData(dell.executeRequest(''/redfish/v1/Systems/System.Embedded.1/Storage?$expand=.($levels=1)''), ''Members''); var arrControllerKeys = [ { ''name'': ''id'', ''path'': ''Id'' }, { ''name'': ''name'', ''path'': ''Name'' }, { ''name'': ''health'', ''path'': ''Status.Health'' }, { ''name'': ''slot'', ''path'': ''Oem.Dell.DellController.PCISlot'' } ]; var battControllerKeys = [ { ''name'': ''id'', ''path'': ''Oem.Dell.DellControllerBattery.Id'' }, { ''name'': ''name'', ''path'': ''Oem.Dell.DellControllerBattery.Name'' }, { ''name'': ''status'', ''path'': ''Oem.Dell.DellControllerBattery.PrimaryStatus'' } ]; if (!Array.isArray(controllers)) { throw ''Unexpected type for controllers.''; } var buffer = { ''arrayControllers'': [], ''batteryControllers'': [] }; controllers.forEach(function (controller) { if (controller[''Id''].search(''RAID'') > -1) { buffer[''arrayControllers''].push(dell.extractData(controller, arrControllerKeys, true)); buffer[''batteryControllers''].push(dell.extractData(controller, battControllerKeys, true)); } }); return JSON.stringify(buffer);','','0','','','','','0',NULL,'Returns array controller resources.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','0aa82279099d4599acd24f1cf4eccc40','0','2','0'), ('48462','21','','10654','Get disks','dell.server.disks.get','1h','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Disk'', ''Discovery'', params); const disks = dell.extractData(dell.executeRequest(''/redfish/v1/Systems/System.Embedded.1/Storage''), ''Members''); var keys = [ { ''name'': ''path'', ''path'': ''@odata.id'' }, { ''name'': ''name'', ''path'': ''Name'' } ]; if (!Array.isArray(disks)) { throw ''Unexpected type for disks.''; } var buffer = { ''physicalDisks'': [], ''virtualDisks'': [] }; disks.forEach(function (disk) { var requests = [{ ''usage'': ''physicalDisks'', ''path'': '''', ''target'': ''Drives'' }, { ''usage'': ''virtualDisks'', ''path'': ''/Volumes'', ''target'': ''Members'' }]; requests.forEach(function (request) { const disks = dell.extractData(dell.executeRequest(disk[''@odata.id''] + request[''path'']), request[''target'']); if (!Array.isArray(disks) || disks.length <= 0) { return; } disks.forEach(function (drive) { buffer[request[''usage'']].push(dell.extractData(dell.executeRequest(drive[''@odata.id'']), keys)); }); }); }); return JSON.stringify(buffer);','','0','','','','','0',NULL,'Returns storage resources.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','7aa73c13af5a43b6b956362d7e9f2742','0','2','0'), ('48463','21','','10654','Get network interfaces','dell.server.net.iface.get','1h','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Network Interface'', ''Discovery'', params); const netAdapters = dell.extractData(dell.executeRequest(''/redfish/v1/Chassis/System.Embedded.1/NetworkAdapters''), ''Members''); var keys = [ { ''name'': ''path'', ''path'': ''@odata.id'' }, { ''name'': ''id'', ''path'': ''Id'' } ]; if (!Array.isArray(netAdapters)) { throw ''Unexpected type for network adapters.''; } var buffer = []; netAdapters.forEach(function (netAdapter) { const netPorts = dell.extractData(dell.executeRequest(netAdapter["@odata.id"] + ''/NetworkPorts''), ''Members''); if (!Array.isArray(netPorts)) { return; } netPorts.forEach(function (netPort) { buffer.push(dell.extractData(dell.executeRequest(netPort["@odata.id"]), keys)); }) }); return JSON.stringify(buffer);','','0','','','','','0',NULL,'Returns network interfaces.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','02e6c6db566f42aaab92e0fbc634e37c','0','2','0'), ('48464','21','','10654','Get sensors','dell.server.sensors.get','1m','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } function formatPSU(psuObj) { var foundPowerSupplies = [], buffer = []; psuObj.forEach(function (obj) { const psuName = obj[''name''].split('' '')[0]; if (foundPowerSupplies.indexOf(psuName) === -1) { foundPowerSupplies.push(psuName); buffer.push({ ''name'': psuName, [obj[''type''].toLowerCase()]: {''reading'': obj[''reading''], ''health'': obj[''health'']} }); } else { buffer.forEach(function (bufferObj) { if (bufferObj[''name''] === psuName) { bufferObj[obj[''type''].toLowerCase()] = {''reading'': obj[''reading''], ''health'': obj[''health'']}; return; } }); } }) return buffer; }; function formatTemp(tempObj) { tempObj.forEach(function (obj) { obj.name = obj.name.split('' '').slice(0, -1).join('' ''); }); return tempObj; } function formatSysBoard(sysObj) { const remove = [''System'', ''Board'', ''Usage'']; sysObj.forEach(function (obj) { var buffer = []; obj[''name''].split('' '').forEach(function (word) { var match = false; remove.forEach(function (removeWord) { if (removeWord === word) { match = true; } }); if (!match) { buffer.push(word); } }); if (buffer.length > 0) { obj[''name''] = buffer.join('' ''); } }); return sysObj; } const params = JSON.parse(value); validateZabbixParams([''url'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Sensor'', ''Discovery'', params); const sensors = dell.extractData(dell.executeRequest(''/redfish/v1/Chassis/System.Embedded.1/Sensors?$expand=.($levels=1)''), ''Members''); if (!Array.isArray(sensors)) { throw ''Unexpected type for sensors.''; } const keys = [ { ''name'': ''id'', ''path'': ''Id'' }, { ''name'': ''name'', ''path'': ''Name'' }, { ''name'': ''context'', ''path'': ''PhysicalContext'' }, { ''name'': ''reading'', ''path'': ''Reading'' }, { ''name'': ''type'', ''path'': ''ReadingType'' }, { ''name'': ''health'', ''path'': ''Status.Health'' } ]; var buffer = { ''fan'': [], ''psu'': [], ''temperature'': [], ''sysBoard'': [] }; sensors.forEach(function (sensor) { if (sensor[''Name''].substring(0, 2) === ''PS'' && sensor[''PhysicalContext''] === ''PowerSupply'') { buffer[''psu''].push(dell.extractData(sensor, keys, true)); } else if (sensor[''ReadingType''] === ''Temperature'') { buffer[''temperature''].push(dell.extractData(sensor, keys, true)); } else if (sensor[''Name''].includes(''Fan'') && sensor[''ReadingType''] === ''Rotational'') { buffer[''fan''].push(dell.extractData(sensor, keys, true)); } else if (sensor[''Name''].includes(''System Board'') && sensor[''ReadingType''] === ''Percent'') { buffer[''sysBoard''].push(dell.extractData(sensor, keys, true)); } }); buffer[''psu''] = formatPSU(buffer[''psu'']); buffer[''temperature''] = formatTemp(buffer[''temperature'']); buffer[''sysBoard''] = formatSysBoard(buffer[''sysBoard'']); return JSON.stringify(buffer);','','0','','','','','0',NULL,'Returns sensors.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','228fc2bc5dc94052bb1eba79756e040f','0','2','0'), ('48465','21','','10654','Get system','dell.server.system.get','1m','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''System'', ''Get system metrics'', params); const requests = [ { ''path'': ''/redfish/v1/Systems/System.Embedded.1'', ''keys'': [ { ''name'': ''model'', ''path'': ''Model'' }, { ''name'': ''serialnumber'', ''path'': ''Oem.Dell.DellSystem.ChassisServiceTag'' }, { ''name'': ''status'', ''path'': ''Status.Health'' } ] }, { ''path'': ''/redfish/v1/Managers/iDRAC.Embedded.1'', ''keys'': { ''name'': ''firmware'', ''path'': ''FirmwareVersion'' } } ]; var buffer = {}; for (var i = 0, requestsCount = requests.length; i < requestsCount; i++) { Object.assign(buffer, dell.extractData(dell.executeRequest(requests[i].path), requests[i].keys)); } return JSON.stringify(buffer);','','0','','','','','0',NULL,'Returns system metrics.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','c264044dde3241089e003ea431cf98f2','0','2','0'), ('48466','3','','10654','Redfish API status','net.tcp.service[https]','1m','31d','365d','0','3','','','','',NULL,'1287','','','0','','','','','0',NULL,'Availability of Redfish API on the server. Possible values: 0 - Unavailable 1 - Available','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9ba8445ce392429a81191dbaffbaa919','0','2','0'), ('48483','21','','10654','Interface [{#IFNAME}]: Get interface','dell.server.net.if.get[{#IFNAME}]','1m','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''path'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Network Interface'', ''Get metrics'', params); const keys = [ { ''name'': ''linkStatus'', ''path'': ''LinkStatus'' }, { ''name'': ''health'', ''path'': ''Status.Health'' }, { ''name'': ''state'', ''path'': ''Status.State'' }, { ''name'': ''linkSpeed'', ''path'': ''CurrentLinkSpeedMbps'' } ]; return JSON.stringify(dell.extractData(dell.executeRequest(params.path), keys));','','0','','','','','2',NULL,'Returns the metrics of a network interface.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','c644bf0a447c4067bb4106860d98f813','0','2','0'), ('48484','21','','10654','Physical disk [{#DISK_NAME}]: Get disk','dell.server.hw.physicaldisk.get[{#DISK_NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''path'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Disk'', ''Get physical disk metrics'', params); const keys = [ { ''name'': ''health'', ''path'': ''Status.Health'' }, { ''name'': ''sn'', ''path'': ''SerialNumber'' }, { ''name'': ''model'', ''path'': ''Model'' }, { ''name'': ''mediaType'', ''path'': ''MediaType'' }, { ''name'': ''capacity'', ''path'': ''CapacityBytes'' } ]; return JSON.stringify(dell.extractData(dell.executeRequest(params.path), keys));','','0','','','','','2',NULL,'Returns the metrics of a physical disk.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','d1e4d411743040d3892769aa63e18b7f','0','2','0'), ('48485','21','','10654','Virtual disk [{#DISK_NAME}]: Get disk','dell.server.hw.virtualdisk.get[{#DISK_NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''path'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Disk'', ''Get virtual disk metrics'', params); const keys = [ { ''name'': ''health'', ''path'': ''Status.Health'' }, { ''name'': ''capacity'', ''path'': ''CapacityBytes'' }, { ''name'': ''status'', ''path'': ''Status.State'' }, { ''name'': ''raidStatus'', ''path'': ''Oem.Dell.DellVirtualDisk.RaidStatus'' }, { ''name'': ''readCachePolicy'', ''path'': ''Oem.Dell.DellVirtualDisk.ReadCachePolicy'' }, { ''name'': ''writeCachePolicy'', ''path'': ''Oem.Dell.DellVirtualDisk.WriteCachePolicy'' } ]; return JSON.stringify(dell.extractData(dell.executeRequest(params.path), keys));','','0','','','','','2',NULL,'Returns the metrics of a virtual disk.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','2d70a9fc34e84fb4b57025fa47eabde8','0','2','0'), ('48514','20','walk[1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38,1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.79,1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2]','10655','SNMP walk RAID controllers table','dell.server.array.controller.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of RAID Controllers Table `IDRAC-MIB-SMIv2::controllerTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','28e0c3b6ff414e8ea580a5efedd6d966','0','2','0'), ('48515','20','walk[1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.1,1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4,1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.21]','10655','SNMP walk Battery table','dell.server.battery.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of RAID Controllers Table `IDRAC-MIB-SMIv2::batteryTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4c75b80b0f224d02a835794592bb1df9','0','2','0'), ('48516','20','get[1.3.6.1.4.1.674.10892.5.4.300.50.1.8.1.1]','10655','BIOS version','dell.server.bios.version','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the version name of the system BIOS.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','10c7c6dfa9d645d19595f143cbeafb18','0','2','0'), ('48517','20','get[1.3.6.1.2.1.1.4.0]','10655','System contact details','dell.server.contact[sysContact]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Name and contact information of the contact person for the node. If not provided, the value is a zero-length string.','23','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','543172398a8a46238b3b2d6e2e176db9','0','2','0'), ('48518','20','walk[1.3.6.1.4.1.674.10892.5.4.1100.30.1.26,1.3.6.1.4.1.674.10892.5.4.1100.32.1.5.1,1.3.6.1.4.1.674.10892.5.4.1100.32.1.6.1]','10655','SNMP walk Processor device tables','dell.server.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Processor Device Status Table `IDRAC-MIB-SMIv2::processorDeviceTable` and `IDRAC-MIB-SMIv2::processorDeviceStatusTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a92165c0788f4073b773a3ccc00d8e33','0','2','0'), ('48519','20','get[1.3.6.1.2.1.1.1.0]','10655','System description','dell.server.descr[sysDescr]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating system, and networking software.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ed8c53e78cf1430895f819a1c79f1881','0','2','0'), ('48520','20','walk[1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.1,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.2,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.24,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.31,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.6,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.7,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.35,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.11]','10655','SNMP walk Physical disk table','dell.server.disk.physical.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Physical Disk Table `IDRAC-MIB-SMIv2::physicalDiskTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bfe85965ad6847b5913fc71ecd6b837d','0','2','0'), ('48521','20','walk[1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.1,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.2,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.13,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.30,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.11,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.10,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4]','10655','SNMP walk Virtual disk table','dell.server.disk.virtual.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Virtual Disk Table `IDRAC-MIB-SMIv2::virtualDiskTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b5c22682042045c9972cd6779d31dabd','0','2','0'), ('48522','20','walk[1.3.6.1.4.1.674.10892.5.4.700.12.1.5,1.3.6.1.4.1.674.10892.5.4.700.12.1.8,1.3.6.1.4.1.674.10892.5.4.700.12.1.7,1.3.6.1.4.1.674.10892.5.4.700.12.1.6]','10655','SNMP walk Cooling device table','dell.server.fan.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Cooling Device Table `IDRAC-MIB-SMIv2::coolingDeviceTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bd6d36c7568f43e884654e8f7cbb4606','0','2','0'), ('48523','20','get[1.3.6.1.4.1.674.10892.5.1.1.8.0]','10655','Firmware version','dell.server.hw.firmware[racFirmwareVersion]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the firmware version of a remote access card.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0523d1c71ec648d3b7f72152bcdd3980','0','2','0'), ('48524','20','get[1.3.6.1.4.1.674.10892.5.1.3.12.0]','10655','Hardware model name','dell.server.hw.model[systemModelName]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the model name of the system.','29','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3f474f2cc921445392d4153b4070c581','0','2','0'), ('48525','20','get[1.3.6.1.4.1.674.10892.5.1.3.2.0]','10655','Hardware serial number','dell.server.hw.serialnumber[systemServiceTag]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the service tag of the system.','8','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cd1220099942408eab14e854a9f556fe','0','2','0'), ('48526','20','get[1.3.6.1.4.1.674.10892.5.2.5.0]','10655','Uptime (hardware)','dell.server.hw.uptime[systemPowerUpTime]','1m','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the power-up time of the system in seconds.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','86f3503ad4ce4210a9d367536075c78d','0','2','0'), ('48527','20','get[1.3.6.1.2.1.1.6.0]','10655','System location','dell.server.location[sysLocation]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The physical location of this node (e.g., ''telephone closet, 3rd floor''). If the location is unknown, the value is a zero-length string.','24','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','94dacb3e9ce94c8abe29f5a1f3ed7414','0','2','0'), ('48528','15','','10655','Memory, total size','dell.server.memory.size.total','1m','31d','365d','0','3','','B','','',NULL,NULL,'sum(last_foreach(//dell.server.memory.size[*]))','','0','','','','','0',NULL,'Total memory amount on the device.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aa5060ea16f54e348d0093600bc1369b','0','2','0'), ('48529','20','walk[1.3.6.1.4.1.674.10892.5.4.1100.50.1.8.1,1.3.6.1.4.1.674.10892.5.4.1100.50.1.5.1,1.3.6.1.4.1.674.10892.5.4.1100.50.1.14.1]','10655','SNMP walk Memory device table','dell.server.memory.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Memory Device Table `IDRAC-MIB-SMIv2::memoryDeviceTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','65592c126dd242e7b7fd9b574ed63281','0','2','0'), ('48530','20','get[1.3.6.1.2.1.1.5.0]','10655','System name','dell.server.name[sysName]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node. By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is a zero-length string.','3','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','feddc0222dab4e89a6caa661b67020a7','0','2','0'), ('48531','20','walk[1.3.6.1.4.1.674.10892.5.4.1100.90.1.4.1,1.3.6.1.4.1.674.10892.5.4.1100.90.1.30.1,1.3.6.1.4.1.674.10892.5.4.1100.90.1.3.1, 1.3.6.1.4.1.674.10892.5.4.1100.90.1.15.1]','10655','SNMP walk Network device table','dell.server.net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Network Device Table `IDRAC-MIB-SMIv2::networkDeviceTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8d872ee881154af284dc295c0bb2a933','0','2','0'), ('48532','20','get[1.3.6.1.6.3.10.2.1.3.0]','10655','Uptime (network)','dell.server.net.uptime[snmpEngineTime]','1m','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMP-FRAMEWORK-MIB The number of seconds since the value of the snmpEngineBoots object last changed.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','62a708d5e13b4d8fbf3d12b77164e2a0','0','2','0'), ('48533','20','get[1.3.6.1.2.1.1.2.0]','10655','System object ID','dell.server.objectid[sysObjectID]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the entity as part of the vendor''s SMI enterprises subtree with the prefix 1.3.6.1.4.1 (e.g., a vendor with the identifier 1.3.6.1.4.1.4242 might assign a system object with the OID 1.3.6.1.4.1.4242.1.1).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','443fb640977a492f83cba1b7fb9454fe','0','2','0'), ('48534','20','walk[1.3.6.1.4.1.674.10892.5.4.600.12.1.5,1.3.6.1.4.1.674.10892.5.4.600.12.1.8]','10655','SNMP walk Power supply table','dell.server.psu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Power Supply Table `IDRAC-MIB-SMIv2::powerSupplyTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5b1a6a7a7adb4c32b66ae22e698b174f','0','2','0'), ('48535','20','walk[1.3.6.1.4.1.674.10892.5.4.700.20.1.1,1.3.6.1.4.1.674.10892.5.4.700.20.1.8,1.3.6.1.4.1.674.10892.5.4.700.20.1.6,1.3.6.1.4.1.674.10892.5.4.700.20.1.5]','10655','SNMP walk Temperature sensor table','dell.server.sensor.temp.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Temperature Probe Table `IDRAC-MIB-SMIv2::temperatureProbeTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7e66e28304e24ddcaf79426b32070cb3','0','2','0'), ('48536','20','get[1.3.6.1.4.1.674.10892.5.2.1.0]','10655','Overall system health status','dell.server.status[globalSystemStatus]','1m','31d','0','0','3','','','','',NULL,'1296','','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the overall rollup status of all the components in the system monitored by the remote access card. Includes system, storage, IO devices, iDRAC, CPU, memory, etc.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4acbcd1baf9e456a9d3e30d33282858a','0','2','0'), ('48537','20','get[1.3.6.1.4.1.674.10892.5.1.3.6.0]','10655','Operating system','dell.server.sw.os[systemOSName]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the name of the operating system that the host is running.','5','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','069326e2f88d4ef9bbed30e94d08af5d','0','2','0'), ('48538','20','walk[1.3.6.1.4.1.674.10892.5.4.600.50.1.7.1,1.3.6.1.4.1.674.10892.5.4.600.50.1.5.1]','10655','SNMP walk System battery table','dell.server.system.battery.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of System Battery Table `IDRAC-MIB-SMIv2::systemBatteryTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0918a2a56c6542629acc5cfa7f4c5255','0','2','0'), ('48539','20','walk[1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1,1.3.6.1.4.1.674.10892.5.4.600.20.1.6.1,1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1,1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1]','10655','SNMP walk Voltage probe table','dell.server.voltage.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Voltage Probe Table `IDRAC-MIB-SMIv2::voltageProbeTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','31ca246b873248439deb225f56d9c16b','0','2','0'), ('48540','17','','10655','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other `snmptrap` items','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9beb49cb322d48cfa061fc206b679a3e','0','2','0'), ('48541','5','','10655','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'1306','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3847459063014aafae40a59263c6cd21','0','2','0'), ('48583','21','','10435','Get array controller resources','dell.server.array.resources.get','1m','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Controller'', ''Discovery'', params); const controllers = dell.extractData(dell.executeRequest(''/redfish/v1/Systems/System.Embedded.1/Storage?$expand=.($levels=1)''), ''Members''); var arrControllerKeys = [ { ''name'': ''id'', ''path'': ''Id'' }, { ''name'': ''name'', ''path'': ''Name'' }, { ''name'': ''health'', ''path'': ''Status.Health'' }, { ''name'': ''slot'', ''path'': ''Oem.Dell.DellController.PCISlot'' } ]; var battControllerKeys = [ { ''name'': ''id'', ''path'': ''Oem.Dell.DellControllerBattery.Id'' }, { ''name'': ''name'', ''path'': ''Oem.Dell.DellControllerBattery.Name'' }, { ''name'': ''status'', ''path'': ''Oem.Dell.DellControllerBattery.PrimaryStatus'' } ]; if (!Array.isArray(controllers)) { throw ''Unexpected type for controllers.''; } var buffer = { ''arrayControllers'': [], ''batteryControllers'': [] }; controllers.forEach(function (controller) { if (controller[''Id''].search(''RAID'') > -1) { buffer[''arrayControllers''].push(dell.extractData(controller, arrControllerKeys, true)); buffer[''batteryControllers''].push(dell.extractData(controller, battControllerKeys, true)); } }); return JSON.stringify(buffer);','','0','','','','','0',NULL,'Returns array controller resources.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','f422ccc6fd194d59b49632f0a876bdbf','0','2','0'), ('48584','21','','10435','Get disks','dell.server.disks.get','1h','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Disk'', ''Discovery'', params); const disks = dell.extractData(dell.executeRequest(''/redfish/v1/Systems/System.Embedded.1/Storage''), ''Members''); var keys = [ { ''name'': ''path'', ''path'': ''@odata.id'' }, { ''name'': ''name'', ''path'': ''Name'' } ]; if (!Array.isArray(disks)) { throw ''Unexpected type for disks.''; } var buffer = { ''physicalDisks'': [], ''virtualDisks'': [] }; disks.forEach(function (disk) { var requests = [{ ''usage'': ''physicalDisks'', ''path'': '''', ''target'': ''Drives'' }, { ''usage'': ''virtualDisks'', ''path'': ''/Volumes'', ''target'': ''Members'' }]; requests.forEach(function (request) { const disks = dell.extractData(dell.executeRequest(disk[''@odata.id''] + request[''path'']), request[''target'']); if (!Array.isArray(disks) || disks.length <= 0) { return; } disks.forEach(function (drive) { buffer[request[''usage'']].push(dell.extractData(dell.executeRequest(drive[''@odata.id'']), keys)); }); }); }); return JSON.stringify(buffer);','','0','','','','','0',NULL,'Returns storage resources.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','3cdb6b1e166247ddbc08a1bfbacb3197','0','2','0'), ('48585','21','','10435','Get network interfaces','dell.server.net.iface.get','1h','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Network Interface'', ''Discovery'', params); const netAdapters = dell.extractData(dell.executeRequest(''/redfish/v1/Chassis/System.Embedded.1/NetworkAdapters''), ''Members''); var keys = [ { ''name'': ''path'', ''path'': ''@odata.id'' }, { ''name'': ''id'', ''path'': ''Id'' } ]; if (!Array.isArray(netAdapters)) { throw ''Unexpected type for network adapters.''; } var buffer = []; netAdapters.forEach(function (netAdapter) { const netPorts = dell.extractData(dell.executeRequest(netAdapter["@odata.id"] + ''/NetworkPorts''), ''Members''); if (!Array.isArray(netPorts)) { return; } netPorts.forEach(function (netPort) { buffer.push(dell.extractData(dell.executeRequest(netPort["@odata.id"]), keys)); }) }); return JSON.stringify(buffer);','','0','','','','','0',NULL,'Returns network interfaces.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','c5520628f22f4a9ebd1e158b6a89b1a5','0','2','0'), ('48586','21','','10435','Get sensors','dell.server.sensors.get','1m','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } function formatPSU(psuObj) { var foundPowerSupplies = [], buffer = []; psuObj.forEach(function (obj) { const psuName = obj[''name''].split('' '')[0]; if (foundPowerSupplies.indexOf(psuName) === -1) { foundPowerSupplies.push(psuName); buffer.push({ ''name'': psuName, [obj[''type''].toLowerCase()]: {''reading'': obj[''reading''], ''health'': obj[''health'']} }); } else { buffer.forEach(function (bufferObj) { if (bufferObj[''name''] === psuName) { bufferObj[obj[''type''].toLowerCase()] = {''reading'': obj[''reading''], ''health'': obj[''health'']}; return; } }); } }) return buffer; }; function formatTemp(tempObj) { tempObj.forEach(function (obj) { obj.name = obj.name.split('' '').slice(0, -1).join('' ''); }); return tempObj; } function formatSysBoard(sysObj) { const remove = [''System'', ''Board'', ''Usage'']; sysObj.forEach(function (obj) { var buffer = []; obj[''name''].split('' '').forEach(function (word) { var match = false; remove.forEach(function (removeWord) { if (removeWord === word) { match = true; } }); if (!match) { buffer.push(word); } }); if (buffer.length > 0) { obj[''name''] = buffer.join('' ''); } }); return sysObj; } const params = JSON.parse(value); validateZabbixParams([''url'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Sensor'', ''Discovery'', params); const sensors = dell.extractData(dell.executeRequest(''/redfish/v1/Chassis/System.Embedded.1/Sensors?$expand=.($levels=1)''), ''Members''); if (!Array.isArray(sensors)) { throw ''Unexpected type for sensors.''; } const keys = [ { ''name'': ''id'', ''path'': ''Id'' }, { ''name'': ''name'', ''path'': ''Name'' }, { ''name'': ''context'', ''path'': ''PhysicalContext'' }, { ''name'': ''reading'', ''path'': ''Reading'' }, { ''name'': ''type'', ''path'': ''ReadingType'' }, { ''name'': ''health'', ''path'': ''Status.Health'' } ]; var buffer = { ''fan'': [], ''psu'': [], ''temperature'': [], ''sysBoard'': [] }; sensors.forEach(function (sensor) { if (sensor[''Name''].substring(0, 2) === ''PS'' && sensor[''PhysicalContext''] === ''PowerSupply'') { buffer[''psu''].push(dell.extractData(sensor, keys, true)); } else if (sensor[''ReadingType''] === ''Temperature'') { buffer[''temperature''].push(dell.extractData(sensor, keys, true)); } else if (sensor[''Name''].includes(''Fan'') && sensor[''ReadingType''] === ''Rotational'') { buffer[''fan''].push(dell.extractData(sensor, keys, true)); } else if (sensor[''Name''].includes(''System Board'') && sensor[''ReadingType''] === ''Percent'') { buffer[''sysBoard''].push(dell.extractData(sensor, keys, true)); } }); buffer[''psu''] = formatPSU(buffer[''psu'']); buffer[''temperature''] = formatTemp(buffer[''temperature'']); buffer[''sysBoard''] = formatSysBoard(buffer[''sysBoard'']); return JSON.stringify(buffer);','','0','','','','','0',NULL,'Returns sensors.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','ab6d8e8ed72f4b64b30a3f1d11a0d4d6','0','2','0'), ('48599','21','','10435','Interface [{#IFNAME}]: Get interface','dell.server.net.if.get[{#IFNAME}]','1m','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''path'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Network Interface'', ''Get metrics'', params); const keys = [ { ''name'': ''linkStatus'', ''path'': ''LinkStatus'' }, { ''name'': ''health'', ''path'': ''Status.Health'' }, { ''name'': ''state'', ''path'': ''Status.State'' }, { ''name'': ''linkSpeed'', ''path'': ''CurrentLinkSpeedMbps'' } ]; return JSON.stringify(dell.extractData(dell.executeRequest(params.path), keys));','','0','','','','','2',NULL,'Returns the metrics of a network interface.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','83f2022ae915408e8b8e6318e6f7b57b','0','2','0'), ('48600','21','','10435','Physical disk [{#DISK_NAME}]: Get disk','dell.server.hw.physicaldisk.get[{#DISK_NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''path'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Disk'', ''Get physical disk metrics'', params); const keys = [ { ''name'': ''health'', ''path'': ''Status.Health'' }, { ''name'': ''sn'', ''path'': ''SerialNumber'' }, { ''name'': ''model'', ''path'': ''Model'' }, { ''name'': ''mediaType'', ''path'': ''MediaType'' }, { ''name'': ''capacity'', ''path'': ''CapacityBytes'' } ]; return JSON.stringify(dell.extractData(dell.executeRequest(params.path), keys));','','0','','','','','2',NULL,'Returns the metrics of a physical disk.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','8e8a8788befb4d779e2a99165b05d529','0','2','0'), ('48601','21','','10435','Virtual disk [{#DISK_NAME}]: Get disk','dell.server.hw.virtualdisk.get[{#DISK_NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''path'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Disk'', ''Get virtual disk metrics'', params); const keys = [ { ''name'': ''health'', ''path'': ''Status.Health'' }, { ''name'': ''capacity'', ''path'': ''CapacityBytes'' }, { ''name'': ''status'', ''path'': ''Status.State'' }, { ''name'': ''raidStatus'', ''path'': ''Oem.Dell.DellVirtualDisk.RaidStatus'' }, { ''name'': ''readCachePolicy'', ''path'': ''Oem.Dell.DellVirtualDisk.ReadCachePolicy'' }, { ''name'': ''writeCachePolicy'', ''path'': ''Oem.Dell.DellVirtualDisk.WriteCachePolicy'' } ]; return JSON.stringify(dell.extractData(dell.executeRequest(params.path), keys));','','0','','','','','2',NULL,'Returns the metrics of a virtual disk.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','2d40df5f9ef14013a45f48bad2d5e133','0','2','0'), ('48630','20','walk[1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38,1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.79,1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2]','10436','SNMP walk RAID controllers table','dell.server.array.controller.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of RAID Controllers Table `IDRAC-MIB-SMIv2::controllerTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','93c5649909334a61ba0414fe7e0063a3','0','2','0'), ('48631','20','walk[1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.1,1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4,1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.21]','10436','SNMP walk Battery table','dell.server.battery.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of RAID Controllers Table `IDRAC-MIB-SMIv2::batteryTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','34a1321bf79841a2a600b11e12d3cef1','0','2','0'), ('48632','20','get[1.3.6.1.4.1.674.10892.5.4.300.50.1.8.1.1]','10436','BIOS version','dell.server.bios.version','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the version name of the system BIOS.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5e8cd7ff8b5b4ac796147f72087ea925','0','2','0'), ('48633','20','walk[1.3.6.1.4.1.674.10892.5.4.1100.30.1.26,1.3.6.1.4.1.674.10892.5.4.1100.32.1.5.1,1.3.6.1.4.1.674.10892.5.4.1100.32.1.6.1]','10436','SNMP walk Processor device tables','dell.server.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Processor Device Status Table `IDRAC-MIB-SMIv2::processorDeviceTable` and `IDRAC-MIB-SMIv2::processorDeviceStatusTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4f2fabba628e45ab9dc8627e32e9a35a','0','2','0'), ('48634','20','walk[1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.1,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.2,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.24,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.31,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.6,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.7,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.35,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.11]','10436','SNMP walk Physical disk table','dell.server.disk.physical.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Physical Disk Table `IDRAC-MIB-SMIv2::physicalDiskTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9773c82f46a6485992049843de57de3e','0','2','0'), ('48635','20','walk[1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.1,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.2,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.13,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.30,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.11,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.10,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4]','10436','SNMP walk Virtual disk table','dell.server.disk.virtual.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Virtual Disk Table `IDRAC-MIB-SMIv2::virtualDiskTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bf3b1c74945f40549ddd4688250846e1','0','2','0'), ('48636','20','walk[1.3.6.1.4.1.674.10892.5.4.700.12.1.5,1.3.6.1.4.1.674.10892.5.4.700.12.1.8,1.3.6.1.4.1.674.10892.5.4.700.12.1.7,1.3.6.1.4.1.674.10892.5.4.700.12.1.6]','10436','SNMP walk Cooling device table','dell.server.fan.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Cooling Device Table `IDRAC-MIB-SMIv2::coolingDeviceTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5e06ce9f690c4671bf0fbf38aa6e3b89','0','2','0'), ('48637','20','get[1.3.6.1.4.1.674.10892.5.2.5.0]','10436','Uptime (hardware)','dell.server.hw.uptime[systemPowerUpTime]','1m','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the power-up time of the system in seconds.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3240487059234b49bb822113c1964693','0','2','0'), ('48638','15','','10436','Memory, total size','dell.server.memory.size.total','1m','31d','365d','0','3','','B','','',NULL,NULL,'sum(last_foreach(//dell.server.memory.size[*]))','','0','','','','','0',NULL,'Total memory amount on the device.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','beac13b3dfa04b0a9edf1a01e559021e','0','2','0'), ('48639','20','walk[1.3.6.1.4.1.674.10892.5.4.1100.50.1.8.1,1.3.6.1.4.1.674.10892.5.4.1100.50.1.5.1,1.3.6.1.4.1.674.10892.5.4.1100.50.1.14.1]','10436','SNMP walk Memory device table','dell.server.memory.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Memory Device Table `IDRAC-MIB-SMIv2::memoryDeviceTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','84267fb8555d48398b661bce37be8a74','0','2','0'), ('48640','20','walk[1.3.6.1.4.1.674.10892.5.4.1100.90.1.4.1,1.3.6.1.4.1.674.10892.5.4.1100.90.1.30.1,1.3.6.1.4.1.674.10892.5.4.1100.90.1.3.1, 1.3.6.1.4.1.674.10892.5.4.1100.90.1.15.1]','10436','SNMP walk Network device table','dell.server.net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Network Device Table `IDRAC-MIB-SMIv2::networkDeviceTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2d273acf4bb646d7a3ca9602d7b529af','0','2','0'), ('48641','20','get[1.3.6.1.6.3.10.2.1.3.0]','10436','Uptime (network)','dell.server.net.uptime[snmpEngineTime]','1m','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMP-FRAMEWORK-MIB The number of seconds since the value of the snmpEngineBoots object last changed.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','767944c5d9e0470580f813948d9dbe96','0','2','0'), ('48642','20','walk[1.3.6.1.4.1.674.10892.5.4.600.12.1.5,1.3.6.1.4.1.674.10892.5.4.600.12.1.8]','10436','SNMP walk Power supply table','dell.server.psu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Power Supply Table `IDRAC-MIB-SMIv2::powerSupplyTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a5b4a818eeb04e1fb072b3b8e76441f3','0','2','0'), ('48643','20','walk[1.3.6.1.4.1.674.10892.5.4.700.20.1.1,1.3.6.1.4.1.674.10892.5.4.700.20.1.8,1.3.6.1.4.1.674.10892.5.4.700.20.1.6,1.3.6.1.4.1.674.10892.5.4.700.20.1.5]','10436','SNMP walk Temperature sensor table','dell.server.sensor.temp.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Temperature Probe Table `IDRAC-MIB-SMIv2::temperatureProbeTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6f407f3ff09f48179075f54eb26604db','0','2','0'), ('48644','20','walk[1.3.6.1.4.1.674.10892.5.4.600.50.1.7.1,1.3.6.1.4.1.674.10892.5.4.600.50.1.5.1]','10436','SNMP walk System battery table','dell.server.system.battery.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of System Battery Table `IDRAC-MIB-SMIv2::systemBatteryTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8cb0cacb3ca144d2b917ea457ef3ba24','0','2','0'), ('48645','20','walk[1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1,1.3.6.1.4.1.674.10892.5.4.600.20.1.6.1,1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1,1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1]','10436','SNMP walk Voltage probe table','dell.server.voltage.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Voltage Probe Table `IDRAC-MIB-SMIv2::voltageProbeTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5f7dc7b0c23c40e4b8442ae1223d70d5','0','2','0'), ('48666','21','','10437','Get array controller resources','dell.server.array.resources.get','1m','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Controller'', ''Discovery'', params); const controllers = dell.extractData(dell.executeRequest(''/redfish/v1/Systems/System.Embedded.1/Storage?$expand=.($levels=1)''), ''Members''); var arrControllerKeys = [ { ''name'': ''id'', ''path'': ''Id'' }, { ''name'': ''name'', ''path'': ''Name'' }, { ''name'': ''health'', ''path'': ''Status.Health'' }, { ''name'': ''slot'', ''path'': ''Oem.Dell.DellController.PCISlot'' } ]; var battControllerKeys = [ { ''name'': ''id'', ''path'': ''Oem.Dell.DellControllerBattery.Id'' }, { ''name'': ''name'', ''path'': ''Oem.Dell.DellControllerBattery.Name'' }, { ''name'': ''status'', ''path'': ''Oem.Dell.DellControllerBattery.PrimaryStatus'' } ]; if (!Array.isArray(controllers)) { throw ''Unexpected type for controllers.''; } var buffer = { ''arrayControllers'': [], ''batteryControllers'': [] }; controllers.forEach(function (controller) { if (controller[''Id''].search(''RAID'') > -1) { buffer[''arrayControllers''].push(dell.extractData(controller, arrControllerKeys, true)); buffer[''batteryControllers''].push(dell.extractData(controller, battControllerKeys, true)); } }); return JSON.stringify(buffer);','','0','','','','','0',NULL,'Returns array controller resources.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','d913e585d3834b86a552e5cc7fe717fc','0','2','0'), ('48667','21','','10437','Get disks','dell.server.disks.get','1h','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Disk'', ''Discovery'', params); const disks = dell.extractData(dell.executeRequest(''/redfish/v1/Systems/System.Embedded.1/Storage''), ''Members''); var keys = [ { ''name'': ''path'', ''path'': ''@odata.id'' }, { ''name'': ''name'', ''path'': ''Name'' } ]; if (!Array.isArray(disks)) { throw ''Unexpected type for disks.''; } var buffer = { ''physicalDisks'': [], ''virtualDisks'': [] }; disks.forEach(function (disk) { var requests = [{ ''usage'': ''physicalDisks'', ''path'': '''', ''target'': ''Drives'' }, { ''usage'': ''virtualDisks'', ''path'': ''/Volumes'', ''target'': ''Members'' }]; requests.forEach(function (request) { const disks = dell.extractData(dell.executeRequest(disk[''@odata.id''] + request[''path'']), request[''target'']); if (!Array.isArray(disks) || disks.length <= 0) { return; } disks.forEach(function (drive) { buffer[request[''usage'']].push(dell.extractData(dell.executeRequest(drive[''@odata.id'']), keys)); }); }); }); return JSON.stringify(buffer);','','0','','','','','0',NULL,'Returns storage resources.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','6d340455b52d45fcadc83a1dc9361544','0','2','0'), ('48668','21','','10437','Get network interfaces','dell.server.net.iface.get','1h','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Network Interface'', ''Discovery'', params); const netAdapters = dell.extractData(dell.executeRequest(''/redfish/v1/Chassis/System.Embedded.1/NetworkAdapters''), ''Members''); var keys = [ { ''name'': ''path'', ''path'': ''@odata.id'' }, { ''name'': ''id'', ''path'': ''Id'' } ]; if (!Array.isArray(netAdapters)) { throw ''Unexpected type for network adapters.''; } var buffer = []; netAdapters.forEach(function (netAdapter) { const netPorts = dell.extractData(dell.executeRequest(netAdapter["@odata.id"] + ''/NetworkPorts''), ''Members''); if (!Array.isArray(netPorts)) { return; } netPorts.forEach(function (netPort) { buffer.push(dell.extractData(dell.executeRequest(netPort["@odata.id"]), keys)); }) }); return JSON.stringify(buffer);','','0','','','','','0',NULL,'Returns network interfaces.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','405e79c2477e41de8af49785c57bbeb4','0','2','0'), ('48669','21','','10437','Get sensors','dell.server.sensors.get','1m','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } function formatPSU(psuObj) { var foundPowerSupplies = [], buffer = []; psuObj.forEach(function (obj) { const psuName = obj[''name''].split('' '')[0]; if (foundPowerSupplies.indexOf(psuName) === -1) { foundPowerSupplies.push(psuName); buffer.push({ ''name'': psuName, [obj[''type''].toLowerCase()]: {''reading'': obj[''reading''], ''health'': obj[''health'']} }); } else { buffer.forEach(function (bufferObj) { if (bufferObj[''name''] === psuName) { bufferObj[obj[''type''].toLowerCase()] = {''reading'': obj[''reading''], ''health'': obj[''health'']}; return; } }); } }) return buffer; }; function formatTemp(tempObj) { tempObj.forEach(function (obj) { obj.name = obj.name.split('' '').slice(0, -1).join('' ''); }); return tempObj; } function formatSysBoard(sysObj) { const remove = [''System'', ''Board'', ''Usage'']; sysObj.forEach(function (obj) { var buffer = []; obj[''name''].split('' '').forEach(function (word) { var match = false; remove.forEach(function (removeWord) { if (removeWord === word) { match = true; } }); if (!match) { buffer.push(word); } }); if (buffer.length > 0) { obj[''name''] = buffer.join('' ''); } }); return sysObj; } const params = JSON.parse(value); validateZabbixParams([''url'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Sensor'', ''Discovery'', params); const sensors = dell.extractData(dell.executeRequest(''/redfish/v1/Chassis/System.Embedded.1/Sensors?$expand=.($levels=1)''), ''Members''); if (!Array.isArray(sensors)) { throw ''Unexpected type for sensors.''; } const keys = [ { ''name'': ''id'', ''path'': ''Id'' }, { ''name'': ''name'', ''path'': ''Name'' }, { ''name'': ''context'', ''path'': ''PhysicalContext'' }, { ''name'': ''reading'', ''path'': ''Reading'' }, { ''name'': ''type'', ''path'': ''ReadingType'' }, { ''name'': ''health'', ''path'': ''Status.Health'' } ]; var buffer = { ''fan'': [], ''psu'': [], ''temperature'': [], ''sysBoard'': [] }; sensors.forEach(function (sensor) { if (sensor[''Name''].substring(0, 2) === ''PS'' && sensor[''PhysicalContext''] === ''PowerSupply'') { buffer[''psu''].push(dell.extractData(sensor, keys, true)); } else if (sensor[''ReadingType''] === ''Temperature'') { buffer[''temperature''].push(dell.extractData(sensor, keys, true)); } else if (sensor[''Name''].includes(''Fan'') && sensor[''ReadingType''] === ''Rotational'') { buffer[''fan''].push(dell.extractData(sensor, keys, true)); } else if (sensor[''Name''].includes(''System Board'') && sensor[''ReadingType''] === ''Percent'') { buffer[''sysBoard''].push(dell.extractData(sensor, keys, true)); } }); buffer[''psu''] = formatPSU(buffer[''psu'']); buffer[''temperature''] = formatTemp(buffer[''temperature'']); buffer[''sysBoard''] = formatSysBoard(buffer[''sysBoard'']); return JSON.stringify(buffer);','','0','','','','','0',NULL,'Returns sensors.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','ccd47edb739c47418bdf17141cd60112','0','2','0'), ('48682','21','','10437','Interface [{#IFNAME}]: Get interface','dell.server.net.if.get[{#IFNAME}]','1m','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''path'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Network Interface'', ''Get metrics'', params); const keys = [ { ''name'': ''linkStatus'', ''path'': ''LinkStatus'' }, { ''name'': ''health'', ''path'': ''Status.Health'' }, { ''name'': ''state'', ''path'': ''Status.State'' }, { ''name'': ''linkSpeed'', ''path'': ''CurrentLinkSpeedMbps'' } ]; return JSON.stringify(dell.extractData(dell.executeRequest(params.path), keys));','','0','','','','','2',NULL,'Returns the metrics of a network interface.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','9c0d896957234a5b99d8f35074a07d7b','0','2','0'), ('48683','21','','10437','Physical disk [{#DISK_NAME}]: Get disk','dell.server.hw.physicaldisk.get[{#DISK_NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''path'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Disk'', ''Get physical disk metrics'', params); const keys = [ { ''name'': ''health'', ''path'': ''Status.Health'' }, { ''name'': ''sn'', ''path'': ''SerialNumber'' }, { ''name'': ''model'', ''path'': ''Model'' }, { ''name'': ''mediaType'', ''path'': ''MediaType'' }, { ''name'': ''capacity'', ''path'': ''CapacityBytes'' } ]; return JSON.stringify(dell.extractData(dell.executeRequest(params.path), keys));','','0','','','','','2',NULL,'Returns the metrics of a physical disk.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','84314bd54ce0457f873b6ada5c40cd0d','0','2','0'), ('48684','21','','10437','Virtual disk [{#DISK_NAME}]: Get disk','dell.server.hw.virtualdisk.get[{#DISK_NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''path'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Disk'', ''Get virtual disk metrics'', params); const keys = [ { ''name'': ''health'', ''path'': ''Status.Health'' }, { ''name'': ''capacity'', ''path'': ''CapacityBytes'' }, { ''name'': ''status'', ''path'': ''Status.State'' }, { ''name'': ''raidStatus'', ''path'': ''Oem.Dell.DellVirtualDisk.RaidStatus'' }, { ''name'': ''readCachePolicy'', ''path'': ''Oem.Dell.DellVirtualDisk.ReadCachePolicy'' }, { ''name'': ''writeCachePolicy'', ''path'': ''Oem.Dell.DellVirtualDisk.WriteCachePolicy'' } ]; return JSON.stringify(dell.extractData(dell.executeRequest(params.path), keys));','','0','','','','','2',NULL,'Returns the metrics of a virtual disk.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','bb156d13a6514151ad9673a91e8463ef','0','2','0'), ('48713','20','walk[1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38,1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.79,1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2]','10438','SNMP walk RAID controllers table','dell.server.array.controller.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of RAID Controllers Table `IDRAC-MIB-SMIv2::controllerTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f956a1ccd0f14b1b88c1d98e6850cd7b','0','2','0'), ('48714','20','walk[1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.1,1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4,1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.21]','10438','SNMP walk Battery table','dell.server.battery.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of RAID Controllers Table `IDRAC-MIB-SMIv2::batteryTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ab2744fa308e4a51be4617b7ded321a0','0','2','0'), ('48715','20','get[1.3.6.1.4.1.674.10892.5.4.300.50.1.8.1.1]','10438','BIOS version','dell.server.bios.version','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the version name of the system BIOS.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3e3a215ef84946619beb4cc769ef7573','0','2','0'), ('48716','20','walk[1.3.6.1.4.1.674.10892.5.4.1100.30.1.26,1.3.6.1.4.1.674.10892.5.4.1100.32.1.5.1,1.3.6.1.4.1.674.10892.5.4.1100.32.1.6.1]','10438','SNMP walk Processor device tables','dell.server.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Processor Device Status Table `IDRAC-MIB-SMIv2::processorDeviceTable` and `IDRAC-MIB-SMIv2::processorDeviceStatusTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0612a426ef21465085614e790fa4e886','0','2','0'), ('48717','20','walk[1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.1,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.2,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.24,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.31,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.6,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.7,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.35,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.11]','10438','SNMP walk Physical disk table','dell.server.disk.physical.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Physical Disk Table `IDRAC-MIB-SMIv2::physicalDiskTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d3ab597f3148403f801b32f9faa71e34','0','2','0'), ('48718','20','walk[1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.1,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.2,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.13,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.30,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.11,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.10,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4]','10438','SNMP walk Virtual disk table','dell.server.disk.virtual.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Virtual Disk Table `IDRAC-MIB-SMIv2::virtualDiskTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0f11e52e20ca4dd2a0723ba0a86eda20','0','2','0'), ('48719','20','walk[1.3.6.1.4.1.674.10892.5.4.700.12.1.5,1.3.6.1.4.1.674.10892.5.4.700.12.1.8,1.3.6.1.4.1.674.10892.5.4.700.12.1.7,1.3.6.1.4.1.674.10892.5.4.700.12.1.6]','10438','SNMP walk Cooling device table','dell.server.fan.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Cooling Device Table `IDRAC-MIB-SMIv2::coolingDeviceTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f5b95355db804ca2a1f050b45174faa5','0','2','0'), ('48720','20','get[1.3.6.1.4.1.674.10892.5.2.5.0]','10438','Uptime (hardware)','dell.server.hw.uptime[systemPowerUpTime]','1m','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the power-up time of the system in seconds.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','330f4c339c95443fb87640d2d807e4d9','0','2','0'), ('48721','15','','10438','Memory, total size','dell.server.memory.size.total','1m','31d','365d','0','3','','B','','',NULL,NULL,'sum(last_foreach(//dell.server.memory.size[*]))','','0','','','','','0',NULL,'Total memory amount on the device.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','78d9d2f87bd743e4b55cc8e9ca64fd1e','0','2','0'), ('48722','20','walk[1.3.6.1.4.1.674.10892.5.4.1100.50.1.8.1,1.3.6.1.4.1.674.10892.5.4.1100.50.1.5.1,1.3.6.1.4.1.674.10892.5.4.1100.50.1.14.1]','10438','SNMP walk Memory device table','dell.server.memory.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Memory Device Table `IDRAC-MIB-SMIv2::memoryDeviceTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','68deb350a71341e19dc6740d327af700','0','2','0'), ('48723','20','walk[1.3.6.1.4.1.674.10892.5.4.1100.90.1.4.1,1.3.6.1.4.1.674.10892.5.4.1100.90.1.30.1,1.3.6.1.4.1.674.10892.5.4.1100.90.1.3.1, 1.3.6.1.4.1.674.10892.5.4.1100.90.1.15.1]','10438','SNMP walk Network device table','dell.server.net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Network Device Table `IDRAC-MIB-SMIv2::networkDeviceTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','25dc5f538e5b4b108e9fcc6866cbbdf4','0','2','0'), ('48724','20','get[1.3.6.1.6.3.10.2.1.3.0]','10438','Uptime (network)','dell.server.net.uptime[snmpEngineTime]','1m','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMP-FRAMEWORK-MIB The number of seconds since the value of the snmpEngineBoots object last changed.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c0953b2a7dc24b03b098b6ae66af77df','0','2','0'), ('48725','20','walk[1.3.6.1.4.1.674.10892.5.4.600.12.1.5,1.3.6.1.4.1.674.10892.5.4.600.12.1.8]','10438','SNMP walk Power supply table','dell.server.psu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Power Supply Table `IDRAC-MIB-SMIv2::powerSupplyTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a9c00a61d4284fe581d097739dcc3f86','0','2','0'), ('48726','20','walk[1.3.6.1.4.1.674.10892.5.4.700.20.1.1,1.3.6.1.4.1.674.10892.5.4.700.20.1.8,1.3.6.1.4.1.674.10892.5.4.700.20.1.6,1.3.6.1.4.1.674.10892.5.4.700.20.1.5]','10438','SNMP walk Temperature sensor table','dell.server.sensor.temp.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Temperature Probe Table `IDRAC-MIB-SMIv2::temperatureProbeTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1acb2a2c55b349278c46e2d4f12b446b','0','2','0'), ('48727','20','walk[1.3.6.1.4.1.674.10892.5.4.600.50.1.7.1,1.3.6.1.4.1.674.10892.5.4.600.50.1.5.1]','10438','SNMP walk System battery table','dell.server.system.battery.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of System Battery Table `IDRAC-MIB-SMIv2::systemBatteryTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e3e8a5715afe4109b5c157ccf33e8a85','0','2','0'), ('48728','20','walk[1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1,1.3.6.1.4.1.674.10892.5.4.600.20.1.6.1,1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1,1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1]','10438','SNMP walk Voltage probe table','dell.server.voltage.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Voltage Probe Table `IDRAC-MIB-SMIv2::voltageProbeTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','71732127775d4675b73bea0d7b941b60','0','2','0'), ('48749','21','','10656','Get array controller resources','dell.server.array.resources.get','1m','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Controller'', ''Discovery'', params); const controllers = dell.extractData(dell.executeRequest(''/redfish/v1/Systems/System.Embedded.1/Storage?$expand=.($levels=1)''), ''Members''); var arrControllerKeys = [ { ''name'': ''id'', ''path'': ''Id'' }, { ''name'': ''name'', ''path'': ''Name'' }, { ''name'': ''health'', ''path'': ''Status.Health'' }, { ''name'': ''slot'', ''path'': ''Oem.Dell.DellController.PCISlot'' } ]; var battControllerKeys = [ { ''name'': ''id'', ''path'': ''Oem.Dell.DellControllerBattery.Id'' }, { ''name'': ''name'', ''path'': ''Oem.Dell.DellControllerBattery.Name'' }, { ''name'': ''status'', ''path'': ''Oem.Dell.DellControllerBattery.PrimaryStatus'' } ]; if (!Array.isArray(controllers)) { throw ''Unexpected type for controllers.''; } var buffer = { ''arrayControllers'': [], ''batteryControllers'': [] }; controllers.forEach(function (controller) { if (controller[''Id''].search(''RAID'') > -1) { buffer[''arrayControllers''].push(dell.extractData(controller, arrControllerKeys, true)); buffer[''batteryControllers''].push(dell.extractData(controller, battControllerKeys, true)); } }); return JSON.stringify(buffer);','','0','','','','','0',NULL,'Returns array controller resources.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','5758eff4369d494981404a54f84306e4','0','2','0'), ('48750','21','','10656','Get disks','dell.server.disks.get','1h','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Disk'', ''Discovery'', params); const disks = dell.extractData(dell.executeRequest(''/redfish/v1/Systems/System.Embedded.1/Storage''), ''Members''); var keys = [ { ''name'': ''path'', ''path'': ''@odata.id'' }, { ''name'': ''name'', ''path'': ''Name'' } ]; if (!Array.isArray(disks)) { throw ''Unexpected type for disks.''; } var buffer = { ''physicalDisks'': [], ''virtualDisks'': [] }; disks.forEach(function (disk) { var requests = [{ ''usage'': ''physicalDisks'', ''path'': '''', ''target'': ''Drives'' }, { ''usage'': ''virtualDisks'', ''path'': ''/Volumes'', ''target'': ''Members'' }]; requests.forEach(function (request) { const disks = dell.extractData(dell.executeRequest(disk[''@odata.id''] + request[''path'']), request[''target'']); if (!Array.isArray(disks) || disks.length <= 0) { return; } disks.forEach(function (drive) { buffer[request[''usage'']].push(dell.extractData(dell.executeRequest(drive[''@odata.id'']), keys)); }); }); }); return JSON.stringify(buffer);','','0','','','','','0',NULL,'Returns storage resources.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','fed600a0b427471685abbdf145e7536d','0','2','0'), ('48751','21','','10656','Get network interfaces','dell.server.net.iface.get','1h','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Network Interface'', ''Discovery'', params); const netAdapters = dell.extractData(dell.executeRequest(''/redfish/v1/Chassis/System.Embedded.1/NetworkAdapters''), ''Members''); var keys = [ { ''name'': ''path'', ''path'': ''@odata.id'' }, { ''name'': ''id'', ''path'': ''Id'' } ]; if (!Array.isArray(netAdapters)) { throw ''Unexpected type for network adapters.''; } var buffer = []; netAdapters.forEach(function (netAdapter) { const netPorts = dell.extractData(dell.executeRequest(netAdapter["@odata.id"] + ''/NetworkPorts''), ''Members''); if (!Array.isArray(netPorts)) { return; } netPorts.forEach(function (netPort) { buffer.push(dell.extractData(dell.executeRequest(netPort["@odata.id"]), keys)); }) }); return JSON.stringify(buffer);','','0','','','','','0',NULL,'Returns network interfaces.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','36bb12f18137442aaad4b5c7d0aaa713','0','2','0'), ('48752','21','','10656','Get sensors','dell.server.sensors.get','1m','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } function formatPSU(psuObj) { var foundPowerSupplies = [], buffer = []; psuObj.forEach(function (obj) { const psuName = obj[''name''].split('' '')[0]; if (foundPowerSupplies.indexOf(psuName) === -1) { foundPowerSupplies.push(psuName); buffer.push({ ''name'': psuName, [obj[''type''].toLowerCase()]: {''reading'': obj[''reading''], ''health'': obj[''health'']} }); } else { buffer.forEach(function (bufferObj) { if (bufferObj[''name''] === psuName) { bufferObj[obj[''type''].toLowerCase()] = {''reading'': obj[''reading''], ''health'': obj[''health'']}; return; } }); } }) return buffer; }; function formatTemp(tempObj) { tempObj.forEach(function (obj) { obj.name = obj.name.split('' '').slice(0, -1).join('' ''); }); return tempObj; } function formatSysBoard(sysObj) { const remove = [''System'', ''Board'', ''Usage'']; sysObj.forEach(function (obj) { var buffer = []; obj[''name''].split('' '').forEach(function (word) { var match = false; remove.forEach(function (removeWord) { if (removeWord === word) { match = true; } }); if (!match) { buffer.push(word); } }); if (buffer.length > 0) { obj[''name''] = buffer.join('' ''); } }); return sysObj; } const params = JSON.parse(value); validateZabbixParams([''url'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Sensor'', ''Discovery'', params); const sensors = dell.extractData(dell.executeRequest(''/redfish/v1/Chassis/System.Embedded.1/Sensors?$expand=.($levels=1)''), ''Members''); if (!Array.isArray(sensors)) { throw ''Unexpected type for sensors.''; } const keys = [ { ''name'': ''id'', ''path'': ''Id'' }, { ''name'': ''name'', ''path'': ''Name'' }, { ''name'': ''context'', ''path'': ''PhysicalContext'' }, { ''name'': ''reading'', ''path'': ''Reading'' }, { ''name'': ''type'', ''path'': ''ReadingType'' }, { ''name'': ''health'', ''path'': ''Status.Health'' } ]; var buffer = { ''fan'': [], ''psu'': [], ''temperature'': [], ''sysBoard'': [] }; sensors.forEach(function (sensor) { if (sensor[''Name''].substring(0, 2) === ''PS'' && sensor[''PhysicalContext''] === ''PowerSupply'') { buffer[''psu''].push(dell.extractData(sensor, keys, true)); } else if (sensor[''ReadingType''] === ''Temperature'') { buffer[''temperature''].push(dell.extractData(sensor, keys, true)); } else if (sensor[''Name''].includes(''Fan'') && sensor[''ReadingType''] === ''Rotational'') { buffer[''fan''].push(dell.extractData(sensor, keys, true)); } else if (sensor[''Name''].includes(''System Board'') && sensor[''ReadingType''] === ''Percent'') { buffer[''sysBoard''].push(dell.extractData(sensor, keys, true)); } }); buffer[''psu''] = formatPSU(buffer[''psu'']); buffer[''temperature''] = formatTemp(buffer[''temperature'']); buffer[''sysBoard''] = formatSysBoard(buffer[''sysBoard'']); return JSON.stringify(buffer);','','0','','','','','0',NULL,'Returns sensors.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','4cf208355d724de39347889314e2df1d','0','2','0'), ('48753','21','','10656','Get system','dell.server.system.get','1m','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''System'', ''Get system metrics'', params); const requests = [ { ''path'': ''/redfish/v1/Systems/System.Embedded.1'', ''keys'': [ { ''name'': ''model'', ''path'': ''Model'' }, { ''name'': ''serialnumber'', ''path'': ''Oem.Dell.DellSystem.ChassisServiceTag'' }, { ''name'': ''status'', ''path'': ''Status.Health'' } ] }, { ''path'': ''/redfish/v1/Managers/iDRAC.Embedded.1'', ''keys'': { ''name'': ''firmware'', ''path'': ''FirmwareVersion'' } } ]; var buffer = {}; for (var i = 0, requestsCount = requests.length; i < requestsCount; i++) { Object.assign(buffer, dell.extractData(dell.executeRequest(requests[i].path), requests[i].keys)); } return JSON.stringify(buffer);','','0','','','','','0',NULL,'Returns system metrics.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','b9acc3a3d4d74a19911fce16f8a3a8d5','0','2','0'), ('48754','3','','10656','Redfish API status','net.tcp.service[https]','1m','31d','365d','0','3','','','','',NULL,'1326','','','0','','','','','0',NULL,'Availability of Redfish API on the server. Possible values: 0 - Unavailable 1 - Available','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cb5fc3e47c5444fcaff32a351bb1a392','0','2','0'), ('48771','21','','10656','Interface [{#IFNAME}]: Get interface','dell.server.net.if.get[{#IFNAME}]','1m','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''path'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Network Interface'', ''Get metrics'', params); const keys = [ { ''name'': ''linkStatus'', ''path'': ''LinkStatus'' }, { ''name'': ''health'', ''path'': ''Status.Health'' }, { ''name'': ''state'', ''path'': ''Status.State'' }, { ''name'': ''linkSpeed'', ''path'': ''CurrentLinkSpeedMbps'' } ]; return JSON.stringify(dell.extractData(dell.executeRequest(params.path), keys));','','0','','','','','2',NULL,'Returns the metrics of a network interface.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','97302beadb364298a72fc90525435812','0','2','0'), ('48772','21','','10656','Physical disk [{#DISK_NAME}]: Get disk','dell.server.hw.physicaldisk.get[{#DISK_NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''path'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Disk'', ''Get physical disk metrics'', params); const keys = [ { ''name'': ''health'', ''path'': ''Status.Health'' }, { ''name'': ''sn'', ''path'': ''SerialNumber'' }, { ''name'': ''model'', ''path'': ''Model'' }, { ''name'': ''mediaType'', ''path'': ''MediaType'' }, { ''name'': ''capacity'', ''path'': ''CapacityBytes'' } ]; return JSON.stringify(dell.extractData(dell.executeRequest(params.path), keys));','','0','','','','','2',NULL,'Returns the metrics of a physical disk.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','235afcffe8b14b32aa67bdb7fc6333cb','0','2','0'), ('48773','21','','10656','Virtual disk [{#DISK_NAME}]: Get disk','dell.server.hw.virtualdisk.get[{#DISK_NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''path'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Disk'', ''Get virtual disk metrics'', params); const keys = [ { ''name'': ''health'', ''path'': ''Status.Health'' }, { ''name'': ''capacity'', ''path'': ''CapacityBytes'' }, { ''name'': ''status'', ''path'': ''Status.State'' }, { ''name'': ''raidStatus'', ''path'': ''Oem.Dell.DellVirtualDisk.RaidStatus'' }, { ''name'': ''readCachePolicy'', ''path'': ''Oem.Dell.DellVirtualDisk.ReadCachePolicy'' }, { ''name'': ''writeCachePolicy'', ''path'': ''Oem.Dell.DellVirtualDisk.WriteCachePolicy'' } ]; return JSON.stringify(dell.extractData(dell.executeRequest(params.path), keys));','','0','','','','','2',NULL,'Returns the metrics of a virtual disk.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','0270423f8d1f45699457660f9bd7a1c1','0','2','0'), ('48802','20','walk[1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38,1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.79,1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2]','10657','SNMP walk RAID controllers table','dell.server.array.controller.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of RAID Controllers Table `IDRAC-MIB-SMIv2::controllerTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','afe5a32aaab74acc94199a87c8eb893f','0','2','0'), ('48803','20','walk[1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.1,1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4,1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.21]','10657','SNMP walk Battery table','dell.server.battery.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of RAID Controllers Table `IDRAC-MIB-SMIv2::batteryTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2058910ac68046bcbbe3c541d8493cc6','0','2','0'), ('48804','20','get[1.3.6.1.4.1.674.10892.5.4.300.50.1.8.1.1]','10657','BIOS version','dell.server.bios.version','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the version name of the system BIOS.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8369cb7f9e9040eda117ed54acae56ef','0','2','0'), ('48805','20','get[1.3.6.1.2.1.1.4.0]','10657','System contact details','dell.server.contact[sysContact]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Name and contact information of the contact person for the node. If not provided, the value is a zero-length string.','23','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1ed40c90dc2a4c329467fcd8796e4826','0','2','0'), ('48806','20','walk[1.3.6.1.4.1.674.10892.5.4.1100.30.1.26,1.3.6.1.4.1.674.10892.5.4.1100.32.1.5.1,1.3.6.1.4.1.674.10892.5.4.1100.32.1.6.1]','10657','SNMP walk Processor device tables','dell.server.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Processor Device Status Table `IDRAC-MIB-SMIv2::processorDeviceTable` and `IDRAC-MIB-SMIv2::processorDeviceStatusTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5eb47d9d420446cba50d5bdf8ce94ea2','0','2','0'), ('48807','20','get[1.3.6.1.2.1.1.1.0]','10657','System description','dell.server.descr[sysDescr]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating system, and networking software.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6bfce5ab91884d75a8771a6648ab90b5','0','2','0'), ('48808','20','walk[1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.1,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.2,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.24,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.31,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.6,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.7,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.35,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.11]','10657','SNMP walk Physical disk table','dell.server.disk.physical.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Physical Disk Table `IDRAC-MIB-SMIv2::physicalDiskTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','35400811500f4b7fb3444aebfc8a9bb3','0','2','0'), ('48809','20','walk[1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.1,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.2,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.13,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.30,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.11,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.10,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4]','10657','SNMP walk Virtual disk table','dell.server.disk.virtual.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Virtual Disk Table `IDRAC-MIB-SMIv2::virtualDiskTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f2762c4ec5a0488492d312c07d82890f','0','2','0'), ('48810','20','walk[1.3.6.1.4.1.674.10892.5.4.700.12.1.5,1.3.6.1.4.1.674.10892.5.4.700.12.1.8,1.3.6.1.4.1.674.10892.5.4.700.12.1.7,1.3.6.1.4.1.674.10892.5.4.700.12.1.6]','10657','SNMP walk Cooling device table','dell.server.fan.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Cooling Device Table `IDRAC-MIB-SMIv2::coolingDeviceTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bbedf912ec7a4b01b6c4c1f6646fe691','0','2','0'), ('48811','20','get[1.3.6.1.4.1.674.10892.5.1.1.8.0]','10657','Firmware version','dell.server.hw.firmware[racFirmwareVersion]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the firmware version of a remote access card.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0433d7f60efb429399493383314f7256','0','2','0'), ('48812','20','get[1.3.6.1.4.1.674.10892.5.1.3.12.0]','10657','Hardware model name','dell.server.hw.model[systemModelName]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the model name of the system.','29','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','79dc78b6decf4b8b9769ae834da84513','0','2','0'), ('48813','20','get[1.3.6.1.4.1.674.10892.5.1.3.2.0]','10657','Hardware serial number','dell.server.hw.serialnumber[systemServiceTag]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the service tag of the system.','8','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bb3b2abb63c84a97ba62a04b943236a9','0','2','0'), ('48814','20','get[1.3.6.1.4.1.674.10892.5.2.5.0]','10657','Uptime (hardware)','dell.server.hw.uptime[systemPowerUpTime]','1m','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the power-up time of the system in seconds.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','578b9267e58d462abb36c0e68fd32dbc','0','2','0'), ('48815','20','get[1.3.6.1.2.1.1.6.0]','10657','System location','dell.server.location[sysLocation]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The physical location of this node (e.g., ''telephone closet, 3rd floor''). If the location is unknown, the value is a zero-length string.','24','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f09996db69fe484283e45a3117b4d5f0','0','2','0'), ('48816','15','','10657','Memory, total size','dell.server.memory.size.total','1m','31d','365d','0','3','','B','','',NULL,NULL,'sum(last_foreach(//dell.server.memory.size[*]))','','0','','','','','0',NULL,'Total memory amount on the device.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','37f3d96deb39494e95513361d0ea8183','0','2','0'), ('48817','20','walk[1.3.6.1.4.1.674.10892.5.4.1100.50.1.8.1,1.3.6.1.4.1.674.10892.5.4.1100.50.1.5.1,1.3.6.1.4.1.674.10892.5.4.1100.50.1.14.1]','10657','SNMP walk Memory device table','dell.server.memory.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Memory Device Table `IDRAC-MIB-SMIv2::memoryDeviceTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3f9159df646b4036a754969f454b0ce8','0','2','0'), ('48818','20','get[1.3.6.1.2.1.1.5.0]','10657','System name','dell.server.name[sysName]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node. By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is a zero-length string.','3','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','09195963d6e74bab98f9cea1adbfbd25','0','2','0'), ('48819','20','walk[1.3.6.1.4.1.674.10892.5.4.1100.90.1.4.1,1.3.6.1.4.1.674.10892.5.4.1100.90.1.30.1,1.3.6.1.4.1.674.10892.5.4.1100.90.1.3.1, 1.3.6.1.4.1.674.10892.5.4.1100.90.1.15.1]','10657','SNMP walk Network device table','dell.server.net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Network Device Table `IDRAC-MIB-SMIv2::networkDeviceTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8a9d37b55a7149ce8ac0428e5021ee12','0','2','0'), ('48820','20','get[1.3.6.1.6.3.10.2.1.3.0]','10657','Uptime (network)','dell.server.net.uptime[snmpEngineTime]','1m','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMP-FRAMEWORK-MIB The number of seconds since the value of the snmpEngineBoots object last changed.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8515f86587ab43a0af94b90a06998ba5','0','2','0'), ('48821','20','get[1.3.6.1.2.1.1.2.0]','10657','System object ID','dell.server.objectid[sysObjectID]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the entity as part of the vendor''s SMI enterprises subtree with the prefix 1.3.6.1.4.1 (e.g., a vendor with the identifier 1.3.6.1.4.1.4242 might assign a system object with the OID 1.3.6.1.4.1.4242.1.1).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d8abb2af15ad42f2ae3d76df569e1ae0','0','2','0'), ('48822','20','walk[1.3.6.1.4.1.674.10892.5.4.600.12.1.5,1.3.6.1.4.1.674.10892.5.4.600.12.1.8]','10657','SNMP walk Power supply table','dell.server.psu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Power Supply Table `IDRAC-MIB-SMIv2::powerSupplyTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','82ab16270c5d4748bc212b69774b8ddc','0','2','0'), ('48823','20','walk[1.3.6.1.4.1.674.10892.5.4.700.20.1.1,1.3.6.1.4.1.674.10892.5.4.700.20.1.8,1.3.6.1.4.1.674.10892.5.4.700.20.1.6,1.3.6.1.4.1.674.10892.5.4.700.20.1.5]','10657','SNMP walk Temperature sensor table','dell.server.sensor.temp.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Temperature Probe Table `IDRAC-MIB-SMIv2::temperatureProbeTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ad64ca5196504b48afb43a0954396579','0','2','0'), ('48824','20','get[1.3.6.1.4.1.674.10892.5.2.1.0]','10657','Overall system health status','dell.server.status[globalSystemStatus]','1m','31d','0','0','3','','','','',NULL,'1335','','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the overall rollup status of all the components in the system monitored by the remote access card. Includes system, storage, IO devices, iDRAC, CPU, memory, etc.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','24bf18434f2145fe91b6bf6ccf3a5c5d','0','2','0'), ('48825','20','get[1.3.6.1.4.1.674.10892.5.1.3.6.0]','10657','Operating system','dell.server.sw.os[systemOSName]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the name of the operating system that the host is running.','5','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','abed403c12404de3b6df8335324eddf3','0','2','0'), ('48826','20','walk[1.3.6.1.4.1.674.10892.5.4.600.50.1.7.1,1.3.6.1.4.1.674.10892.5.4.600.50.1.5.1]','10657','SNMP walk System battery table','dell.server.system.battery.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of System Battery Table `IDRAC-MIB-SMIv2::systemBatteryTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','391180d5461c4f448724b22cacc12036','0','2','0'), ('48827','20','walk[1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1,1.3.6.1.4.1.674.10892.5.4.600.20.1.6.1,1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1,1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1]','10657','SNMP walk Voltage probe table','dell.server.voltage.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Voltage Probe Table `IDRAC-MIB-SMIv2::voltageProbeTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0dc203875c6541e48f8418c4806461dd','0','2','0'), ('48828','17','','10657','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other `snmptrap` items','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','575229ede65e4639a4113ef078ed33d2','0','2','0'), ('48829','5','','10657','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'1345','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c164ae420f1a49d2a205ecbe2eb1d892','0','2','0'), ('48871','21','','10439','Get array controller resources','dell.server.array.resources.get','1m','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Controller'', ''Discovery'', params); const controllers = dell.extractData(dell.executeRequest(''/redfish/v1/Systems/System.Embedded.1/Storage?$expand=.($levels=1)''), ''Members''); var arrControllerKeys = [ { ''name'': ''id'', ''path'': ''Id'' }, { ''name'': ''name'', ''path'': ''Name'' }, { ''name'': ''health'', ''path'': ''Status.Health'' }, { ''name'': ''slot'', ''path'': ''Oem.Dell.DellController.PCISlot'' } ]; var battControllerKeys = [ { ''name'': ''id'', ''path'': ''Oem.Dell.DellControllerBattery.Id'' }, { ''name'': ''name'', ''path'': ''Oem.Dell.DellControllerBattery.Name'' }, { ''name'': ''status'', ''path'': ''Oem.Dell.DellControllerBattery.PrimaryStatus'' } ]; if (!Array.isArray(controllers)) { throw ''Unexpected type for controllers.''; } var buffer = { ''arrayControllers'': [], ''batteryControllers'': [] }; controllers.forEach(function (controller) { if (controller[''Id''].search(''RAID'') > -1) { buffer[''arrayControllers''].push(dell.extractData(controller, arrControllerKeys, true)); buffer[''batteryControllers''].push(dell.extractData(controller, battControllerKeys, true)); } }); return JSON.stringify(buffer);','','0','','','','','0',NULL,'Returns array controller resources.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','68a232da5e184d23ac524ee2d424fef7','0','2','0'), ('48872','21','','10439','Get disks','dell.server.disks.get','1h','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Disk'', ''Discovery'', params); const disks = dell.extractData(dell.executeRequest(''/redfish/v1/Systems/System.Embedded.1/Storage''), ''Members''); var keys = [ { ''name'': ''path'', ''path'': ''@odata.id'' }, { ''name'': ''name'', ''path'': ''Name'' } ]; if (!Array.isArray(disks)) { throw ''Unexpected type for disks.''; } var buffer = { ''physicalDisks'': [], ''virtualDisks'': [] }; disks.forEach(function (disk) { var requests = [{ ''usage'': ''physicalDisks'', ''path'': '''', ''target'': ''Drives'' }, { ''usage'': ''virtualDisks'', ''path'': ''/Volumes'', ''target'': ''Members'' }]; requests.forEach(function (request) { const disks = dell.extractData(dell.executeRequest(disk[''@odata.id''] + request[''path'']), request[''target'']); if (!Array.isArray(disks) || disks.length <= 0) { return; } disks.forEach(function (drive) { buffer[request[''usage'']].push(dell.extractData(dell.executeRequest(drive[''@odata.id'']), keys)); }); }); }); return JSON.stringify(buffer);','','0','','','','','0',NULL,'Returns storage resources.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','029cf7dfa7734c4a86292d2b3b3b907b','0','2','0'), ('48873','21','','10439','Get network interfaces','dell.server.net.iface.get','1h','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Network Interface'', ''Discovery'', params); const netAdapters = dell.extractData(dell.executeRequest(''/redfish/v1/Chassis/System.Embedded.1/NetworkAdapters''), ''Members''); var keys = [ { ''name'': ''path'', ''path'': ''@odata.id'' }, { ''name'': ''id'', ''path'': ''Id'' } ]; if (!Array.isArray(netAdapters)) { throw ''Unexpected type for network adapters.''; } var buffer = []; netAdapters.forEach(function (netAdapter) { const netPorts = dell.extractData(dell.executeRequest(netAdapter["@odata.id"] + ''/NetworkPorts''), ''Members''); if (!Array.isArray(netPorts)) { return; } netPorts.forEach(function (netPort) { buffer.push(dell.extractData(dell.executeRequest(netPort["@odata.id"]), keys)); }) }); return JSON.stringify(buffer);','','0','','','','','0',NULL,'Returns network interfaces.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','2bade51081c74bfdbb282713a50dbf68','0','2','0'), ('48874','21','','10439','Get sensors','dell.server.sensors.get','1m','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } function formatPSU(psuObj) { var foundPowerSupplies = [], buffer = []; psuObj.forEach(function (obj) { const psuName = obj[''name''].split('' '')[0]; if (foundPowerSupplies.indexOf(psuName) === -1) { foundPowerSupplies.push(psuName); buffer.push({ ''name'': psuName, [obj[''type''].toLowerCase()]: {''reading'': obj[''reading''], ''health'': obj[''health'']} }); } else { buffer.forEach(function (bufferObj) { if (bufferObj[''name''] === psuName) { bufferObj[obj[''type''].toLowerCase()] = {''reading'': obj[''reading''], ''health'': obj[''health'']}; return; } }); } }) return buffer; }; function formatTemp(tempObj) { tempObj.forEach(function (obj) { obj.name = obj.name.split('' '').slice(0, -1).join('' ''); }); return tempObj; } function formatSysBoard(sysObj) { const remove = [''System'', ''Board'', ''Usage'']; sysObj.forEach(function (obj) { var buffer = []; obj[''name''].split('' '').forEach(function (word) { var match = false; remove.forEach(function (removeWord) { if (removeWord === word) { match = true; } }); if (!match) { buffer.push(word); } }); if (buffer.length > 0) { obj[''name''] = buffer.join('' ''); } }); return sysObj; } const params = JSON.parse(value); validateZabbixParams([''url'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Sensor'', ''Discovery'', params); const sensors = dell.extractData(dell.executeRequest(''/redfish/v1/Chassis/System.Embedded.1/Sensors?$expand=.($levels=1)''), ''Members''); if (!Array.isArray(sensors)) { throw ''Unexpected type for sensors.''; } const keys = [ { ''name'': ''id'', ''path'': ''Id'' }, { ''name'': ''name'', ''path'': ''Name'' }, { ''name'': ''context'', ''path'': ''PhysicalContext'' }, { ''name'': ''reading'', ''path'': ''Reading'' }, { ''name'': ''type'', ''path'': ''ReadingType'' }, { ''name'': ''health'', ''path'': ''Status.Health'' } ]; var buffer = { ''fan'': [], ''psu'': [], ''temperature'': [], ''sysBoard'': [] }; sensors.forEach(function (sensor) { if (sensor[''Name''].substring(0, 2) === ''PS'' && sensor[''PhysicalContext''] === ''PowerSupply'') { buffer[''psu''].push(dell.extractData(sensor, keys, true)); } else if (sensor[''ReadingType''] === ''Temperature'') { buffer[''temperature''].push(dell.extractData(sensor, keys, true)); } else if (sensor[''Name''].includes(''Fan'') && sensor[''ReadingType''] === ''Rotational'') { buffer[''fan''].push(dell.extractData(sensor, keys, true)); } else if (sensor[''Name''].includes(''System Board'') && sensor[''ReadingType''] === ''Percent'') { buffer[''sysBoard''].push(dell.extractData(sensor, keys, true)); } }); buffer[''psu''] = formatPSU(buffer[''psu'']); buffer[''temperature''] = formatTemp(buffer[''temperature'']); buffer[''sysBoard''] = formatSysBoard(buffer[''sysBoard'']); return JSON.stringify(buffer);','','0','','','','','0',NULL,'Returns sensors.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','f455a0b7c198414db84fb679fba47330','0','2','0'), ('48887','21','','10439','Interface [{#IFNAME}]: Get interface','dell.server.net.if.get[{#IFNAME}]','1m','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''path'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Network Interface'', ''Get metrics'', params); const keys = [ { ''name'': ''linkStatus'', ''path'': ''LinkStatus'' }, { ''name'': ''health'', ''path'': ''Status.Health'' }, { ''name'': ''state'', ''path'': ''Status.State'' }, { ''name'': ''linkSpeed'', ''path'': ''CurrentLinkSpeedMbps'' } ]; return JSON.stringify(dell.extractData(dell.executeRequest(params.path), keys));','','0','','','','','2',NULL,'Returns the metrics of a network interface.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','8c317b576a2246ea9b0f25ca81bdb06b','0','2','0'), ('48888','21','','10439','Physical disk [{#DISK_NAME}]: Get disk','dell.server.hw.physicaldisk.get[{#DISK_NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''path'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Disk'', ''Get physical disk metrics'', params); const keys = [ { ''name'': ''health'', ''path'': ''Status.Health'' }, { ''name'': ''sn'', ''path'': ''SerialNumber'' }, { ''name'': ''model'', ''path'': ''Model'' }, { ''name'': ''mediaType'', ''path'': ''MediaType'' }, { ''name'': ''capacity'', ''path'': ''CapacityBytes'' } ]; return JSON.stringify(dell.extractData(dell.executeRequest(params.path), keys));','','0','','','','','2',NULL,'Returns the metrics of a physical disk.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','670b05a9f8e847ea9830d34361c3f0e2','0','2','0'), ('48889','21','','10439','Virtual disk [{#DISK_NAME}]: Get disk','dell.server.hw.virtualdisk.get[{#DISK_NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''path'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Disk'', ''Get virtual disk metrics'', params); const keys = [ { ''name'': ''health'', ''path'': ''Status.Health'' }, { ''name'': ''capacity'', ''path'': ''CapacityBytes'' }, { ''name'': ''status'', ''path'': ''Status.State'' }, { ''name'': ''raidStatus'', ''path'': ''Oem.Dell.DellVirtualDisk.RaidStatus'' }, { ''name'': ''readCachePolicy'', ''path'': ''Oem.Dell.DellVirtualDisk.ReadCachePolicy'' }, { ''name'': ''writeCachePolicy'', ''path'': ''Oem.Dell.DellVirtualDisk.WriteCachePolicy'' } ]; return JSON.stringify(dell.extractData(dell.executeRequest(params.path), keys));','','0','','','','','2',NULL,'Returns the metrics of a virtual disk.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','7e81a110ef36478b86cec8ff56700755','0','2','0'), ('48918','20','walk[1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38,1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.79,1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2]','10440','SNMP walk RAID controllers table','dell.server.array.controller.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of RAID Controllers Table `IDRAC-MIB-SMIv2::controllerTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c3bd795316314dbf9cf1c21751358ba8','0','2','0'), ('48919','20','walk[1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.1,1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4,1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.21]','10440','SNMP walk Battery table','dell.server.battery.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of RAID Controllers Table `IDRAC-MIB-SMIv2::batteryTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0d7f8134d9934125b0bde2e0392479e8','0','2','0'), ('48920','20','get[1.3.6.1.4.1.674.10892.5.4.300.50.1.8.1.1]','10440','BIOS version','dell.server.bios.version','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the version name of the system BIOS.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cf0d3ec990d94f949157ea9c22ba37b0','0','2','0'), ('48921','20','walk[1.3.6.1.4.1.674.10892.5.4.1100.30.1.26,1.3.6.1.4.1.674.10892.5.4.1100.32.1.5.1,1.3.6.1.4.1.674.10892.5.4.1100.32.1.6.1]','10440','SNMP walk Processor device tables','dell.server.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Processor Device Status Table `IDRAC-MIB-SMIv2::processorDeviceTable` and `IDRAC-MIB-SMIv2::processorDeviceStatusTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f146e9f2165d441a9a68091f750f20c0','0','2','0'), ('48922','20','walk[1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.1,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.2,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.24,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.31,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.6,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.7,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.35,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.11]','10440','SNMP walk Physical disk table','dell.server.disk.physical.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Physical Disk Table `IDRAC-MIB-SMIv2::physicalDiskTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','63fa498031104fa8a418570334efe139','0','2','0'), ('48923','20','walk[1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.1,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.2,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.13,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.30,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.11,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.10,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4]','10440','SNMP walk Virtual disk table','dell.server.disk.virtual.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Virtual Disk Table `IDRAC-MIB-SMIv2::virtualDiskTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1c500e036b534567a62d1c9a2f912f43','0','2','0'), ('48924','20','walk[1.3.6.1.4.1.674.10892.5.4.700.12.1.5,1.3.6.1.4.1.674.10892.5.4.700.12.1.8,1.3.6.1.4.1.674.10892.5.4.700.12.1.7,1.3.6.1.4.1.674.10892.5.4.700.12.1.6]','10440','SNMP walk Cooling device table','dell.server.fan.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Cooling Device Table `IDRAC-MIB-SMIv2::coolingDeviceTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','00d4d1232f13434eb7ff10eb025da6c3','0','2','0'), ('48925','20','get[1.3.6.1.4.1.674.10892.5.2.5.0]','10440','Uptime (hardware)','dell.server.hw.uptime[systemPowerUpTime]','1m','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the power-up time of the system in seconds.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2308ce0f18f249258d3b05a5d08e6a83','0','2','0'), ('48926','15','','10440','Memory, total size','dell.server.memory.size.total','1m','31d','365d','0','3','','B','','',NULL,NULL,'sum(last_foreach(//dell.server.memory.size[*]))','','0','','','','','0',NULL,'Total memory amount on the device.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','190388551b5144c49a4afefe0347cdc0','0','2','0'), ('48927','20','walk[1.3.6.1.4.1.674.10892.5.4.1100.50.1.8.1,1.3.6.1.4.1.674.10892.5.4.1100.50.1.5.1,1.3.6.1.4.1.674.10892.5.4.1100.50.1.14.1]','10440','SNMP walk Memory device table','dell.server.memory.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Memory Device Table `IDRAC-MIB-SMIv2::memoryDeviceTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6c3ef6e5744649d7ba41df2748c349d8','0','2','0'), ('48928','20','walk[1.3.6.1.4.1.674.10892.5.4.1100.90.1.4.1,1.3.6.1.4.1.674.10892.5.4.1100.90.1.30.1,1.3.6.1.4.1.674.10892.5.4.1100.90.1.3.1, 1.3.6.1.4.1.674.10892.5.4.1100.90.1.15.1]','10440','SNMP walk Network device table','dell.server.net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Network Device Table `IDRAC-MIB-SMIv2::networkDeviceTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','868e51dcc9114c7991a1be641a0b634d','0','2','0'), ('48929','20','get[1.3.6.1.6.3.10.2.1.3.0]','10440','Uptime (network)','dell.server.net.uptime[snmpEngineTime]','1m','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMP-FRAMEWORK-MIB The number of seconds since the value of the snmpEngineBoots object last changed.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','55193d35960a410abf32f903b3b04406','0','2','0'), ('48930','20','walk[1.3.6.1.4.1.674.10892.5.4.600.12.1.5,1.3.6.1.4.1.674.10892.5.4.600.12.1.8]','10440','SNMP walk Power supply table','dell.server.psu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Power Supply Table `IDRAC-MIB-SMIv2::powerSupplyTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','08921851e08f41859daf5cfe748eaff6','0','2','0'), ('48931','20','walk[1.3.6.1.4.1.674.10892.5.4.700.20.1.1,1.3.6.1.4.1.674.10892.5.4.700.20.1.8,1.3.6.1.4.1.674.10892.5.4.700.20.1.6,1.3.6.1.4.1.674.10892.5.4.700.20.1.5]','10440','SNMP walk Temperature sensor table','dell.server.sensor.temp.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Temperature Probe Table `IDRAC-MIB-SMIv2::temperatureProbeTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','148a893a9b1540619793d3608ff9fa29','0','2','0'), ('48932','20','walk[1.3.6.1.4.1.674.10892.5.4.600.50.1.7.1,1.3.6.1.4.1.674.10892.5.4.600.50.1.5.1]','10440','SNMP walk System battery table','dell.server.system.battery.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of System Battery Table `IDRAC-MIB-SMIv2::systemBatteryTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','35bc6ebfbb5f48ac93941d91b197dec0','0','2','0'), ('48933','20','walk[1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1,1.3.6.1.4.1.674.10892.5.4.600.20.1.6.1,1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1,1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1]','10440','SNMP walk Voltage probe table','dell.server.voltage.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Voltage Probe Table `IDRAC-MIB-SMIv2::voltageProbeTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','89a3a5f1edff45cba03191752f4c5935','0','2','0'), ('48954','21','','10441','Get array controller resources','dell.server.array.resources.get','1m','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Controller'', ''Discovery'', params); const controllers = dell.extractData(dell.executeRequest(''/redfish/v1/Systems/System.Embedded.1/Storage?$expand=.($levels=1)''), ''Members''); var arrControllerKeys = [ { ''name'': ''id'', ''path'': ''Id'' }, { ''name'': ''name'', ''path'': ''Name'' }, { ''name'': ''health'', ''path'': ''Status.Health'' }, { ''name'': ''slot'', ''path'': ''Oem.Dell.DellController.PCISlot'' } ]; var battControllerKeys = [ { ''name'': ''id'', ''path'': ''Oem.Dell.DellControllerBattery.Id'' }, { ''name'': ''name'', ''path'': ''Oem.Dell.DellControllerBattery.Name'' }, { ''name'': ''status'', ''path'': ''Oem.Dell.DellControllerBattery.PrimaryStatus'' } ]; if (!Array.isArray(controllers)) { throw ''Unexpected type for controllers.''; } var buffer = { ''arrayControllers'': [], ''batteryControllers'': [] }; controllers.forEach(function (controller) { if (controller[''Id''].search(''RAID'') > -1) { buffer[''arrayControllers''].push(dell.extractData(controller, arrControllerKeys, true)); buffer[''batteryControllers''].push(dell.extractData(controller, battControllerKeys, true)); } }); return JSON.stringify(buffer);','','0','','','','','0',NULL,'Returns array controller resources.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','7c99c4ba6e3643e5b4672aeb3ecbaa20','0','2','0'), ('48955','21','','10441','Get disks','dell.server.disks.get','1h','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Disk'', ''Discovery'', params); const disks = dell.extractData(dell.executeRequest(''/redfish/v1/Systems/System.Embedded.1/Storage''), ''Members''); var keys = [ { ''name'': ''path'', ''path'': ''@odata.id'' }, { ''name'': ''name'', ''path'': ''Name'' } ]; if (!Array.isArray(disks)) { throw ''Unexpected type for disks.''; } var buffer = { ''physicalDisks'': [], ''virtualDisks'': [] }; disks.forEach(function (disk) { var requests = [{ ''usage'': ''physicalDisks'', ''path'': '''', ''target'': ''Drives'' }, { ''usage'': ''virtualDisks'', ''path'': ''/Volumes'', ''target'': ''Members'' }]; requests.forEach(function (request) { const disks = dell.extractData(dell.executeRequest(disk[''@odata.id''] + request[''path'']), request[''target'']); if (!Array.isArray(disks) || disks.length <= 0) { return; } disks.forEach(function (drive) { buffer[request[''usage'']].push(dell.extractData(dell.executeRequest(drive[''@odata.id'']), keys)); }); }); }); return JSON.stringify(buffer);','','0','','','','','0',NULL,'Returns storage resources.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','4f6df395e903468481990c9d2e6e9a21','0','2','0'), ('48956','21','','10441','Get network interfaces','dell.server.net.iface.get','1h','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Network Interface'', ''Discovery'', params); const netAdapters = dell.extractData(dell.executeRequest(''/redfish/v1/Chassis/System.Embedded.1/NetworkAdapters''), ''Members''); var keys = [ { ''name'': ''path'', ''path'': ''@odata.id'' }, { ''name'': ''id'', ''path'': ''Id'' } ]; if (!Array.isArray(netAdapters)) { throw ''Unexpected type for network adapters.''; } var buffer = []; netAdapters.forEach(function (netAdapter) { const netPorts = dell.extractData(dell.executeRequest(netAdapter["@odata.id"] + ''/NetworkPorts''), ''Members''); if (!Array.isArray(netPorts)) { return; } netPorts.forEach(function (netPort) { buffer.push(dell.extractData(dell.executeRequest(netPort["@odata.id"]), keys)); }) }); return JSON.stringify(buffer);','','0','','','','','0',NULL,'Returns network interfaces.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','d09bd1c6bccf422286031a7081d2d130','0','2','0'), ('48957','21','','10441','Get sensors','dell.server.sensors.get','1m','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } function formatPSU(psuObj) { var foundPowerSupplies = [], buffer = []; psuObj.forEach(function (obj) { const psuName = obj[''name''].split('' '')[0]; if (foundPowerSupplies.indexOf(psuName) === -1) { foundPowerSupplies.push(psuName); buffer.push({ ''name'': psuName, [obj[''type''].toLowerCase()]: {''reading'': obj[''reading''], ''health'': obj[''health'']} }); } else { buffer.forEach(function (bufferObj) { if (bufferObj[''name''] === psuName) { bufferObj[obj[''type''].toLowerCase()] = {''reading'': obj[''reading''], ''health'': obj[''health'']}; return; } }); } }) return buffer; }; function formatTemp(tempObj) { tempObj.forEach(function (obj) { obj.name = obj.name.split('' '').slice(0, -1).join('' ''); }); return tempObj; } function formatSysBoard(sysObj) { const remove = [''System'', ''Board'', ''Usage'']; sysObj.forEach(function (obj) { var buffer = []; obj[''name''].split('' '').forEach(function (word) { var match = false; remove.forEach(function (removeWord) { if (removeWord === word) { match = true; } }); if (!match) { buffer.push(word); } }); if (buffer.length > 0) { obj[''name''] = buffer.join('' ''); } }); return sysObj; } const params = JSON.parse(value); validateZabbixParams([''url'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Sensor'', ''Discovery'', params); const sensors = dell.extractData(dell.executeRequest(''/redfish/v1/Chassis/System.Embedded.1/Sensors?$expand=.($levels=1)''), ''Members''); if (!Array.isArray(sensors)) { throw ''Unexpected type for sensors.''; } const keys = [ { ''name'': ''id'', ''path'': ''Id'' }, { ''name'': ''name'', ''path'': ''Name'' }, { ''name'': ''context'', ''path'': ''PhysicalContext'' }, { ''name'': ''reading'', ''path'': ''Reading'' }, { ''name'': ''type'', ''path'': ''ReadingType'' }, { ''name'': ''health'', ''path'': ''Status.Health'' } ]; var buffer = { ''fan'': [], ''psu'': [], ''temperature'': [], ''sysBoard'': [] }; sensors.forEach(function (sensor) { if (sensor[''Name''].substring(0, 2) === ''PS'' && sensor[''PhysicalContext''] === ''PowerSupply'') { buffer[''psu''].push(dell.extractData(sensor, keys, true)); } else if (sensor[''ReadingType''] === ''Temperature'') { buffer[''temperature''].push(dell.extractData(sensor, keys, true)); } else if (sensor[''Name''].includes(''Fan'') && sensor[''ReadingType''] === ''Rotational'') { buffer[''fan''].push(dell.extractData(sensor, keys, true)); } else if (sensor[''Name''].includes(''System Board'') && sensor[''ReadingType''] === ''Percent'') { buffer[''sysBoard''].push(dell.extractData(sensor, keys, true)); } }); buffer[''psu''] = formatPSU(buffer[''psu'']); buffer[''temperature''] = formatTemp(buffer[''temperature'']); buffer[''sysBoard''] = formatSysBoard(buffer[''sysBoard'']); return JSON.stringify(buffer);','','0','','','','','0',NULL,'Returns sensors.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','860871bf033f443183bed66919fc86e3','0','2','0'), ('48970','21','','10441','Interface [{#IFNAME}]: Get interface','dell.server.net.if.get[{#IFNAME}]','1m','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''path'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Network Interface'', ''Get metrics'', params); const keys = [ { ''name'': ''linkStatus'', ''path'': ''LinkStatus'' }, { ''name'': ''health'', ''path'': ''Status.Health'' }, { ''name'': ''state'', ''path'': ''Status.State'' }, { ''name'': ''linkSpeed'', ''path'': ''CurrentLinkSpeedMbps'' } ]; return JSON.stringify(dell.extractData(dell.executeRequest(params.path), keys));','','0','','','','','2',NULL,'Returns the metrics of a network interface.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','6a8491b2246f48869bf8a608a2b012d6','0','2','0'), ('48971','21','','10441','Physical disk [{#DISK_NAME}]: Get disk','dell.server.hw.physicaldisk.get[{#DISK_NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''path'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Disk'', ''Get physical disk metrics'', params); const keys = [ { ''name'': ''health'', ''path'': ''Status.Health'' }, { ''name'': ''sn'', ''path'': ''SerialNumber'' }, { ''name'': ''model'', ''path'': ''Model'' }, { ''name'': ''mediaType'', ''path'': ''MediaType'' }, { ''name'': ''capacity'', ''path'': ''CapacityBytes'' } ]; return JSON.stringify(dell.extractData(dell.executeRequest(params.path), keys));','','0','','','','','2',NULL,'Returns the metrics of a physical disk.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','9ca9eeea67734f1c9a9ae548ac515b22','0','2','0'), ('48972','21','','10441','Virtual disk [{#DISK_NAME}]: Get disk','dell.server.hw.virtualdisk.get[{#DISK_NAME}]','1m','0','0','0','4','','','','',NULL,NULL,'function validateZabbixParams(requiredParams, allParams) { requiredParams.forEach(function (field) { if (typeof allParams !== ''object'' || typeof allParams[field] === ''undefined'' || allParams[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); } function Dell(service, action, params) { this.zabbixLogPrefix = ''[ DELL ] [ '' + service + '' ] [ '' + action + '' ]''; this.request = new HttpRequest(); this.executeRequest = function (apiPath) { this.request.addHeader(''Authorization: Basic '' + btoa(params[''user''] + '':'' + params[''password''])); if (params[''http_proxy'']) { this.request.setProxy(params[''http_proxy'']); Zabbix.log(4, this.zabbixLogPrefix + '' Using http proxy: '' + params[''http_proxy'']); } const response = this.request.get(params[''url''] + apiPath); this.request.clearHeader(); if (this.request.getStatus() === parseInt(params[''http_status_code''])) { return response; } else { Zabbix.log(3, this.zabbixLogPrefix + '' Unexpected HTTP response code: '' + this.request.getStatus()); throw ''Unexpected HTTP response code: '' + this.request.getStatus(); } }; this.extractData = function (data, keys, skipParse) { if (!skipParse) { try { data = JSON.parse(data); } catch (error) { Zabbix.log(3, this.zabbixLogPrefix + '' Could not parse the received JSON object: '' + data); throw ''Could not parse received JSON object. See logs for more information.''; } } if (Array.isArray(keys)) { var returnBuffer = {}; for (keyIdx = 0, keysLength = keys.length; keyIdx < keysLength; keyIdx++) { if (keys[keyIdx][''path''] === ''@odata.id'') { returnBuffer[keys[keyIdx][''name'']] = data[keys[keyIdx][''path'']]; } else { returnBuffer[keys[keyIdx][''name'']] = this.parseJSON(data, keys[keyIdx][''path''].split(''.'')); } } return returnBuffer; } else if (typeof keys === ''object'') { return { [keys[''name'']]: this.parseJSON(data, keys[''path''].split(''.'')) }; } else if (typeof keys === ''string'') { return this.parseJSON(data, keys.split(''.'')); } else { throw ''Unexpected key type''; } }; this.parseJSON = function (data, jsonPath) { for (var i = 0, args = jsonPath.length; i < args; i++) { data = data[jsonPath[i]]; } return data; } } const params = JSON.parse(value); validateZabbixParams([''url'', ''path'', ''user'', ''password'', ''http_status_code''], params); var dell = new Dell(''Disk'', ''Get virtual disk metrics'', params); const keys = [ { ''name'': ''health'', ''path'': ''Status.Health'' }, { ''name'': ''capacity'', ''path'': ''CapacityBytes'' }, { ''name'': ''status'', ''path'': ''Status.State'' }, { ''name'': ''raidStatus'', ''path'': ''Oem.Dell.DellVirtualDisk.RaidStatus'' }, { ''name'': ''readCachePolicy'', ''path'': ''Oem.Dell.DellVirtualDisk.ReadCachePolicy'' }, { ''name'': ''writeCachePolicy'', ''path'': ''Oem.Dell.DellVirtualDisk.WriteCachePolicy'' } ]; return JSON.stringify(dell.extractData(dell.executeRequest(params.path), keys));','','0','','','','','2',NULL,'Returns the metrics of a virtual disk.','0','7d','0','',NULL,'{$DELL.HTTP.REQUEST.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','6852216c27c54b5dabf567a15d8467a5','0','2','0'), ('49001','20','walk[1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38,1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.79,1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2]','10442','SNMP walk RAID controllers table','dell.server.array.controller.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of RAID Controllers Table `IDRAC-MIB-SMIv2::controllerTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7f08a9bf1d5540f0b05040d16d67d87a','0','2','0'), ('49002','20','walk[1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.1,1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4,1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.21]','10442','SNMP walk Battery table','dell.server.battery.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of RAID Controllers Table `IDRAC-MIB-SMIv2::batteryTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','39d26209dd3242c5ad90380b566c01aa','0','2','0'), ('49003','20','get[1.3.6.1.4.1.674.10892.5.4.300.50.1.8.1.1]','10442','BIOS version','dell.server.bios.version','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the version name of the system BIOS.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','077c58fdb06c4191bf8f194b4c9108e7','0','2','0'), ('49004','20','walk[1.3.6.1.4.1.674.10892.5.4.1100.30.1.26,1.3.6.1.4.1.674.10892.5.4.1100.32.1.5.1,1.3.6.1.4.1.674.10892.5.4.1100.32.1.6.1]','10442','SNMP walk Processor device tables','dell.server.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Processor Device Status Table `IDRAC-MIB-SMIv2::processorDeviceTable` and `IDRAC-MIB-SMIv2::processorDeviceStatusTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','94bcc2449dfa4bb59fd778ba96e3abdf','0','2','0'), ('49005','20','walk[1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.1,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.2,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.24,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.31,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.6,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.7,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.35,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.11]','10442','SNMP walk Physical disk table','dell.server.disk.physical.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Physical Disk Table `IDRAC-MIB-SMIv2::physicalDiskTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c888185c08f84b059fdbf7ff0fa8eb6a','0','2','0'), ('49006','20','walk[1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.1,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.2,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.13,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.30,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.11,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.10,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4]','10442','SNMP walk Virtual disk table','dell.server.disk.virtual.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Virtual Disk Table `IDRAC-MIB-SMIv2::virtualDiskTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f141e6e279fe4b3db65bbfe7e559389b','0','2','0'), ('49007','20','walk[1.3.6.1.4.1.674.10892.5.4.700.12.1.5,1.3.6.1.4.1.674.10892.5.4.700.12.1.8,1.3.6.1.4.1.674.10892.5.4.700.12.1.7,1.3.6.1.4.1.674.10892.5.4.700.12.1.6]','10442','SNMP walk Cooling device table','dell.server.fan.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Cooling Device Table `IDRAC-MIB-SMIv2::coolingDeviceTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d7e317cd293c4d8fa39f4283b79de6e4','0','2','0'), ('49008','20','get[1.3.6.1.4.1.674.10892.5.2.5.0]','10442','Uptime (hardware)','dell.server.hw.uptime[systemPowerUpTime]','1m','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the power-up time of the system in seconds.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','afa223e9d16b41deaac482b8328ba0e4','0','2','0'), ('49009','15','','10442','Memory, total size','dell.server.memory.size.total','1m','31d','365d','0','3','','B','','',NULL,NULL,'sum(last_foreach(//dell.server.memory.size[*]))','','0','','','','','0',NULL,'Total memory amount on the device.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c84cc87d95664f66a674eefec258841a','0','2','0'), ('49010','20','walk[1.3.6.1.4.1.674.10892.5.4.1100.50.1.8.1,1.3.6.1.4.1.674.10892.5.4.1100.50.1.5.1,1.3.6.1.4.1.674.10892.5.4.1100.50.1.14.1]','10442','SNMP walk Memory device table','dell.server.memory.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Memory Device Table `IDRAC-MIB-SMIv2::memoryDeviceTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6ad434d7873f4c9e846ebaefa3e3640c','0','2','0'), ('49011','20','walk[1.3.6.1.4.1.674.10892.5.4.1100.90.1.4.1,1.3.6.1.4.1.674.10892.5.4.1100.90.1.30.1,1.3.6.1.4.1.674.10892.5.4.1100.90.1.3.1, 1.3.6.1.4.1.674.10892.5.4.1100.90.1.15.1]','10442','SNMP walk Network device table','dell.server.net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Network Device Table `IDRAC-MIB-SMIv2::networkDeviceTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','73802978c64b4d978b6e06ede9f5d760','0','2','0'), ('49012','20','get[1.3.6.1.6.3.10.2.1.3.0]','10442','Uptime (network)','dell.server.net.uptime[snmpEngineTime]','1m','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMP-FRAMEWORK-MIB The number of seconds since the value of the snmpEngineBoots object last changed.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','49473f26fedb459c9642704bae33adb1','0','2','0'), ('49013','20','walk[1.3.6.1.4.1.674.10892.5.4.600.12.1.5,1.3.6.1.4.1.674.10892.5.4.600.12.1.8]','10442','SNMP walk Power supply table','dell.server.psu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Power Supply Table `IDRAC-MIB-SMIv2::powerSupplyTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0b013a35762f4bdab3ffeec58176779a','0','2','0'), ('49014','20','walk[1.3.6.1.4.1.674.10892.5.4.700.20.1.1,1.3.6.1.4.1.674.10892.5.4.700.20.1.8,1.3.6.1.4.1.674.10892.5.4.700.20.1.6,1.3.6.1.4.1.674.10892.5.4.700.20.1.5]','10442','SNMP walk Temperature sensor table','dell.server.sensor.temp.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Temperature Probe Table `IDRAC-MIB-SMIv2::temperatureProbeTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c2ab8a025fb34e878f7bbea9db51dbea','0','2','0'), ('49015','20','walk[1.3.6.1.4.1.674.10892.5.4.600.50.1.7.1,1.3.6.1.4.1.674.10892.5.4.600.50.1.5.1]','10442','SNMP walk System battery table','dell.server.system.battery.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of System Battery Table `IDRAC-MIB-SMIv2::systemBatteryTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f1068ce5a40b45ba9388e17f6dce3b79','0','2','0'), ('49016','20','walk[1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1,1.3.6.1.4.1.674.10892.5.4.600.20.1.6.1,1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1,1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1]','10442','SNMP walk Voltage probe table','dell.server.voltage.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Voltage Probe Table `IDRAC-MIB-SMIv2::voltageProbeTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b5c04f5439244a87991b2b053b5f8f9b','0','2','0'), ('49037','20','walk[1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38,1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.79,1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2]','10255','SNMP walk RAID controllers table','dell.server.array.controller.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of RAID Controllers Table `IDRAC-MIB-SMIv2::controllerTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3d6ef68b4a914089ab4356ab33a3f3d7','0','2','0'), ('49038','20','walk[1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.1,1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4,1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.21]','10255','SNMP walk Battery table','dell.server.battery.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of RAID Controllers Table `IDRAC-MIB-SMIv2::batteryTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d1e52200ed744019b87a91d25beef034','0','2','0'), ('49039','20','get[1.3.6.1.4.1.674.10892.5.4.300.50.1.8.1.1]','10255','BIOS version','dell.server.bios.version','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the version name of the system BIOS.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1c9a75cfdbf94f3a8a4fdbef2914506c','0','2','0'), ('49040','20','get[1.3.6.1.2.1.1.4.0]','10255','System contact details','dell.server.contact[sysContact]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Name and contact information of the contact person for the node. If not provided, the value is a zero-length string.','23','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d0b46eadaeb04edbb9cfc27637397c91','0','2','0'), ('49041','20','walk[1.3.6.1.4.1.674.10892.5.4.1100.30.1.26,1.3.6.1.4.1.674.10892.5.4.1100.32.1.5.1,1.3.6.1.4.1.674.10892.5.4.1100.32.1.6.1]','10255','SNMP walk Processor device tables','dell.server.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Processor Device Status Table `IDRAC-MIB-SMIv2::processorDeviceTable` and `IDRAC-MIB-SMIv2::processorDeviceStatusTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3adaaa4482b24de29aa4f2fdf8bd46ca','0','2','0'), ('49042','20','get[1.3.6.1.2.1.1.1.0]','10255','System description','dell.server.descr[sysDescr]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating system, and networking software.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9ef776ba14ab4eb7aed993711832cf4e','0','2','0'), ('49043','20','walk[1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.1,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.2,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.24,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.31,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.6,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.7,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.35,1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.11]','10255','SNMP walk Physical disk table','dell.server.disk.physical.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Physical Disk Table `IDRAC-MIB-SMIv2::physicalDiskTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c005a65a9d3447d981260c6410546954','0','2','0'), ('49044','20','walk[1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.1,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.2,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.13,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.30,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.11,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.10,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6,1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4]','10255','SNMP walk Virtual disk table','dell.server.disk.virtual.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Virtual Disk Table `IDRAC-MIB-SMIv2::virtualDiskTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','719c2e0c5b664180af1af80125c588aa','0','2','0'), ('49045','20','walk[1.3.6.1.4.1.674.10892.5.4.700.12.1.5,1.3.6.1.4.1.674.10892.5.4.700.12.1.8,1.3.6.1.4.1.674.10892.5.4.700.12.1.7,1.3.6.1.4.1.674.10892.5.4.700.12.1.6]','10255','SNMP walk Cooling device table','dell.server.fan.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Cooling Device Table `IDRAC-MIB-SMIv2::coolingDeviceTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8687491307cd4aae8882781a223169c0','0','2','0'), ('49046','20','get[1.3.6.1.4.1.674.10892.5.1.1.8.0]','10255','Firmware version','dell.server.hw.firmware[racFirmwareVersion]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the firmware version of a remote access card.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ea7ba9945a13407d9d9cba8b34ec480f','0','2','0'), ('49047','20','get[1.3.6.1.4.1.674.10892.5.1.3.12.0]','10255','Hardware model name','dell.server.hw.model[systemModelName]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the model name of the system.','29','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7cd756be916e4173a653ea424d8d5232','0','2','0'), ('49048','20','get[1.3.6.1.4.1.674.10892.5.1.3.2.0]','10255','Hardware serial number','dell.server.hw.serialnumber[systemServiceTag]','1m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the service tag of the system.','8','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d0b2ed5ce8e84a06ad1081ade25da16a','0','2','0'), ('49049','20','get[1.3.6.1.4.1.674.10892.5.2.5.0]','10255','Uptime (hardware)','dell.server.hw.uptime[systemPowerUpTime]','1m','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the power-up time of the system in seconds.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','78cf22c146e4432594d844c592c25d76','0','2','0'), ('49050','20','get[1.3.6.1.2.1.1.6.0]','10255','System location','dell.server.location[sysLocation]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The physical location of this node (e.g., ''telephone closet, 3rd floor''). If the location is unknown, the value is a zero-length string.','24','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','97044f584e954ae9b3d57abf0ced73eb','0','2','0'), ('49051','15','','10255','Memory, total size','dell.server.memory.size.total','1m','31d','365d','0','3','','B','','',NULL,NULL,'sum(last_foreach(//dell.server.memory.size[*]))','','0','','','','','0',NULL,'Total memory amount on the device.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','94191a9ec1584435974cb3c8e2d65f99','0','2','0'), ('49052','20','walk[1.3.6.1.4.1.674.10892.5.4.1100.50.1.8.1,1.3.6.1.4.1.674.10892.5.4.1100.50.1.5.1,1.3.6.1.4.1.674.10892.5.4.1100.50.1.14.1]','10255','SNMP walk Memory device table','dell.server.memory.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Memory Device Table `IDRAC-MIB-SMIv2::memoryDeviceTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7ead89af65ce480593edef80919ac1d5','0','2','0'), ('49053','20','get[1.3.6.1.2.1.1.5.0]','10255','System name','dell.server.name[sysName]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node. By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is a zero-length string.','3','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9032ffe4b0314a47a2f3241b38156592','0','2','0'), ('49054','20','walk[1.3.6.1.4.1.674.10892.5.4.1100.90.1.4.1,1.3.6.1.4.1.674.10892.5.4.1100.90.1.30.1,1.3.6.1.4.1.674.10892.5.4.1100.90.1.3.1, 1.3.6.1.4.1.674.10892.5.4.1100.90.1.15.1]','10255','SNMP walk Network device table','dell.server.net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Network Device Table `IDRAC-MIB-SMIv2::networkDeviceTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4b7969bd9b1441d7b7ddabaa786a31b7','0','2','0'), ('49055','20','get[1.3.6.1.6.3.10.2.1.3.0]','10255','Uptime (network)','dell.server.net.uptime[snmpEngineTime]','1m','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMP-FRAMEWORK-MIB The number of seconds since the value of the snmpEngineBoots object last changed.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','11d66130f1d04acfb439ef65dec31ea4','0','2','0'), ('49056','20','get[1.3.6.1.2.1.1.2.0]','10255','System object ID','dell.server.objectid[sysObjectID]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the entity as part of the vendor''s SMI enterprises subtree with the prefix 1.3.6.1.4.1 (e.g., a vendor with the identifier 1.3.6.1.4.1.4242 might assign a system object with the OID 1.3.6.1.4.1.4242.1.1).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3930a7fa88de48beac130cedfe8dc0f7','0','2','0'), ('49057','20','walk[1.3.6.1.4.1.674.10892.5.4.600.12.1.5,1.3.6.1.4.1.674.10892.5.4.600.12.1.8]','10255','SNMP walk Power supply table','dell.server.psu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Power Supply Table `IDRAC-MIB-SMIv2::powerSupplyTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9a76516aba9543348b160d366a0f7f80','0','2','0'), ('49058','20','walk[1.3.6.1.4.1.674.10892.5.4.700.20.1.1,1.3.6.1.4.1.674.10892.5.4.700.20.1.8,1.3.6.1.4.1.674.10892.5.4.700.20.1.6,1.3.6.1.4.1.674.10892.5.4.700.20.1.5]','10255','SNMP walk Temperature sensor table','dell.server.sensor.temp.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Temperature Probe Table `IDRAC-MIB-SMIv2::temperatureProbeTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','34707e1be349441aa74cb91926d4b5d6','0','2','0'), ('49059','20','get[1.3.6.1.4.1.674.10892.5.2.1.0]','10255','Overall system health status','dell.server.status[globalSystemStatus]','1m','31d','0','0','3','','','','',NULL,'107','','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the overall rollup status of all the components in the system monitored by the remote access card. Includes system, storage, IO devices, iDRAC, CPU, memory, etc.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6164d49ba01c4fe895bed48ee3489edc','0','2','0'), ('49060','20','get[1.3.6.1.4.1.674.10892.5.1.3.6.0]','10255','Operating system','dell.server.sw.os[systemOSName]','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the name of the operating system that the host is running.','5','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3c93c8909ad14324947beda64c02f386','0','2','0'), ('49061','20','walk[1.3.6.1.4.1.674.10892.5.4.600.50.1.7.1,1.3.6.1.4.1.674.10892.5.4.600.50.1.5.1]','10255','SNMP walk System battery table','dell.server.system.battery.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of System Battery Table `IDRAC-MIB-SMIv2::systemBatteryTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7edbcc5d45a44fbaaafcc7417d7ff26b','0','2','0'), ('49062','20','walk[1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1,1.3.6.1.4.1.674.10892.5.4.600.20.1.6.1,1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1,1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1]','10255','SNMP walk Voltage probe table','dell.server.voltage.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Scanning of Voltage Probe Table `IDRAC-MIB-SMIv2::voltageProbeTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1cd3315e2739438ba245345057112a0e','0','2','0'), ('49100','5','','10048','Zabbix proxy check','zabbix[triggers]','1m','31d','0','0','3','','','','',NULL,'1368','','','0','','','','','0',NULL,'Flag indicating whether it is a proxy or not.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7a5c163672d1422aa663c2606d1166e5','0','2','0'), ('49101','0','','10658','Queue over 10 minutes','zabbix.stats[{$ZABBIX.PROXY.ADDRESS},{$ZABBIX.PROXY.PORT},queue,10m]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of monitored items in the queue that are delayed by at least 10 minutes.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d4da5073f23d47c1adc55b30117bb1e0','0','2','0'), ('49102','0','','10658','Queue','zabbix.stats[{$ZABBIX.PROXY.ADDRESS},{$ZABBIX.PROXY.PORT},queue]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of monitored items in the queue that are delayed by at least 6 seconds.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b05149cb78b44bc08ccd72b58a34aded','0','2','0'), ('49103','0','','10658','Zabbix stats','zabbix.stats[{$ZABBIX.PROXY.ADDRESS},{$ZABBIX.PROXY.PORT}]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The master item of Zabbix proxy statistics.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','32495fbb4c6642378a5871323b11cb08','0','2','0'), ('49104','7','','10659','Queue over 10 minutes','zabbix.stats[{$ZABBIX.PROXY.ADDRESS},{$ZABBIX.PROXY.PORT},queue,10m]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of monitored items in the queue that are delayed by at least 10 minutes.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','38016356b0c2422baeaaf83add1c07dd','0','2','0'), ('49105','7','','10659','Queue','zabbix.stats[{$ZABBIX.PROXY.ADDRESS},{$ZABBIX.PROXY.PORT},queue]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of monitored items in the queue that are delayed by at least 6 seconds.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','35c77ed090df4bb58f29a50db9584325','0','2','0'), ('49106','7','','10659','Zabbix stats','zabbix.stats[{$ZABBIX.PROXY.ADDRESS},{$ZABBIX.PROXY.PORT}]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The master item of Zabbix proxy statistics.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ca89ec32d7ac45aba86a319cdb4f3b0d','0','2','0'), ('49202','5','','10047','Zabbix server check','zabbix[triggers]','1m','31d','0','0','3','','','','',NULL,'1374','','','0','','','','','0',NULL,'Flag indicating whether it is a server or not.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9a2d6f239ea642b9b231801db68638b5','0','2','0'), ('49203','0','','10660','Queue over 10 minutes','zabbix.stats[{$ZABBIX.SERVER.ADDRESS},{$ZABBIX.SERVER.PORT},queue,10m]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of monitored items in the queue that are delayed by at least 10 minutes.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f3871d3395204212bffd236d80d208f7','0','2','0'), ('49204','0','','10660','Queue','zabbix.stats[{$ZABBIX.SERVER.ADDRESS},{$ZABBIX.SERVER.PORT},queue]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of monitored items in the queue that are delayed by at least 6 seconds.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e03e82b05bb140e7ae52be6d1d1ef869','0','2','0'), ('49205','0','','10660','Zabbix stats','zabbix.stats[{$ZABBIX.SERVER.ADDRESS},{$ZABBIX.SERVER.PORT}]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The master item of Zabbix server statistics.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7084c5c4b6cd4bf6a0b2ab23f171e5de','0','2','0'), ('49206','7','','10661','Queue over 10 minutes','zabbix.stats[{$ZABBIX.SERVER.ADDRESS},{$ZABBIX.SERVER.PORT},queue,10m]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of monitored items in the queue that are delayed by at least 10 minutes.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','99be4e08ef924b49a3237bc4970e61c2','0','2','0'), ('49207','7','','10661','Queue','zabbix.stats[{$ZABBIX.SERVER.ADDRESS},{$ZABBIX.SERVER.PORT},queue]','1m','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of monitored items in the queue that are delayed by at least 6 seconds.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ef3a71dd5daf4c8cbfa75ed66ef7dee7','0','2','0'), ('49208','7','','10661','Zabbix stats','zabbix.stats[{$ZABBIX.SERVER.ADDRESS},{$ZABBIX.SERVER.PORT}]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The master item of Zabbix server statistics.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6bc7fdba3ff846cb87f916b05e303572','0','2','0'), ('49387','21','','10662','Get data','azure.db.mssql.data.get','1m','0','0','0','4','','','','',NULL,NULL,E'var Azure = { params: {}, token: null, setParams: function (params) { [''app_id'', ''password'', ''tenant_id'', ''subscription_id'', ''resource_id''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); Azure.params = params; }, login: function () { var response, login = new HttpRequest(); if (typeof Azure.params.proxy !== ''undefined'' && Azure.params.proxy !== '''') { login.setProxy(Azure.params.proxy); } login.addHeader(''Content-Type: application/x-www-form-urlencoded''); response = login.post( ''https://login.microsoftonline.com/'' + encodeURIComponent(Azure.params.tenant_id) + ''/oauth2/token'', ''grant_type=client_credentials&resource='' + encodeURIComponent(''https://management.azure.com/'') + ''&client_id='' + encodeURIComponent(Azure.params.app_id) + ''&client_secret='' + encodeURIComponent(Azure.params.password) ); if (login.getStatus() !== 200) { throw ''Login failed with status code '' + login.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse login session response.''; } if (!response.hasOwnProperty(''access_token'')) { throw ''Authentication response does not contain access token.''; } Azure.token = response[''access_token'']; }, request: function (url) { var response, request = new HttpRequest(); if (typeof Azure.params.proxy !== ''undefined'' && Azure.params.proxy !== '''') { request.setProxy(Azure.params.proxy); } if (!Azure.token) { throw ''Request does not contain access token.''; } request.addHeader(''Content-Type: application/json''); request.addHeader(''Authorization: Bearer '' + Azure.token); Zabbix.log(4, ''[ Azure DTU DB ] request url: '' + url); response = request.get(url); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { return JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API.''; } }, getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getMetricsData: function () { var data = {}, metric_endpoints = { ''metrics_main'': ''/providers/Microsoft.Insights/metrics?metricnames='' + encodeURIComponent(''allocated_data_storage,availability,blocked_by_firewall,connection_failed,connection_successful,cpu_percent,deadlock,dtu_consumption_percent,dtu_limit,dtu_used,log_write_percent,physical_data_read_percent,sessions_count,sessions_percent,sql_instance_cpu_percent,sql_instance_memory_percent,storage,storage_percent'') + ''&api-version=2021-05-01×pan=PT5M'', ''metrics_secondary'': ''/providers/Microsoft.Insights/metrics?metricnames='' + encodeURIComponent(''tempdb_data_size,tempdb_log_size,tempdb_log_used_percent,workers_percent,xtp_storage_percent'') + ''&api-version=2021-05-01×pan=PT5M'', }; data.metrics = {}; Object.keys(metric_endpoints).forEach(function (field) { metrics = Azure.getField(Azure.request(''https://management.azure.com'' + Azure.params.resource_id + metric_endpoints[field]), ''value''); for (k in metrics) { key = Azure.getField(metrics[k], ''name.value'').replace(/(\\s|\\/)+/g, ''''); if (metrics[k].timeseries.length === 0) { metrics[k].timeseries.push({ ''data'': [''nodata''] }) } values = Azure.getField(metrics[k], ''timeseries.0.data''); for (var i = values.length - 1; i >= 0; i--) { dataseriesKeys = Object.keys(values[i]); aggregation = dataseriesKeys[1]; if (typeof (values[i][aggregation]) !== ''undefined'') { data.metrics[key] = values[i]; break; } } } }); data.health = Azure.getField(Azure.request(''https://management.azure.com'' + Azure.params.resource_id + ''/providers/Microsoft.ResourceHealth/availabilityStatuses?api-version=2020-05-01''), ''value.0.properties''); return data } }; try { Azure.setParams(JSON.parse(value)); Azure.login(); return JSON.stringify(Azure.getMetricsData()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ Azure DTU DB ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'The result of API requests is expressed in JSON format.','0','7d','0','',NULL,'{$AZURE.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','4349f68c08a548d19d9ce58e66557ce5','0','2','0'), ('49416','20','get[1.3.6.1.4.1.10002.1.1.1.4.2.1.3.1]','10237','Load average (1m avg)','system.cpu.load.avg1[loadValue.1]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FROGFOOT-RESOURCES-MIB 1 minute load average of processor load.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3e092597f217443498eeb8a409f814e4','0','2','0'), ('49417','20','get[1.3.6.1.4.1.10002.1.1.1.4.2.1.3.3]','10237','Load average (15m avg)','system.cpu.load.avg15[loadValue.3]','1m','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FROGFOOT-RESOURCES-MIB 15 minute load average of processor load.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e0911150058e43f4b0f26df2d00e57c7','0','2','0'), ('49418','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10449','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f3b3f73ab8ad4138b4acb0f3ff7aa732','0','2','0'), ('49419','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10449','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bea5c8de3a354405a60f417e7c3f9852','0','2','0'), ('49420','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10449','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f52a2b2e6f6045119473176e6680fb67','0','2','0'), ('49421','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10449','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b2ac80947a314b8590500aed1ba15b34','0','2','0'), ('49422','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10450','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','12abe276614d445d9e958122c5608f9c','0','2','0'), ('49423','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10450','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','28fc52f85b454d24bf7e99f971f0bac4','0','2','0'), ('49424','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10450','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d1d55d21b8ca40d88221086d66b919e7','0','2','0'), ('49425','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10450','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6d1b24e94e8840c884c1cac3e8842eea','0','2','0'), ('49426','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10451','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c53b0d6476944defadfb0746ccae7ae6','0','2','0'), ('49427','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10451','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b6389e2689eb439183ad1a25590f421d','0','2','0'), ('49428','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10451','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','494a81d5b48047e0bce42dd126f573cb','0','2','0'), ('49429','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10451','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','311bd2dea3ea4db896d92ba8a82429bf','0','2','0'), ('49430','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10452','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','902597a2a07e40e59035f62cf623fd9b','0','2','0'), ('49431','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10452','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aeb7b829ab72424f96c53ac8d5788dfe','0','2','0'), ('49432','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10452','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f0e80b87c6874ed8acea53ff369c9f61','0','2','0'), ('49433','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10452','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c6d9685ed59d4d719205cea9e750cae3','0','2','0'), ('49434','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10453','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','53f14b1963614f2e8061c840c384f401','0','2','0'), ('49435','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10453','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7d321af0e12c4149a2c61e22326d4074','0','2','0'), ('49436','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10453','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','107afb2b34884a5d968d820be0ad4ceb','0','2','0'), ('49437','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10453','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','48385fb97a77406bbf7f6da6f76c02fc','0','2','0'), ('49438','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10454','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','657a8813b0784c7b9034b320f9d90a7f','0','2','0'), ('49439','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10454','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fa20d2b065454093b058086c5936dff3','0','2','0'), ('49440','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10454','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','814160afbb4f4a5e9b3c8c2add8aeddb','0','2','0'), ('49441','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10454','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3c392ed2b8194b9ebdc88a3865f3c03f','0','2','0'), ('49442','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10455','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f2726d5b184f49b38b7911c4357a7a13','0','2','0'), ('49443','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10455','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','99d9e2e9d49241158e7e6a4b582be953','0','2','0'), ('49444','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10455','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6edefebb1b15445f80742f9d3d3e7f02','0','2','0'), ('49445','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10455','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','651743f22cbb4fb58233a5af65bb66f3','0','2','0'), ('49446','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10456','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','43bfef9ab73c4111a6781bc0a6ed4831','0','2','0'), ('49447','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10456','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a5a949d4fee442ffa2feb45f703396dd','0','2','0'), ('49448','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10456','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5a085632c4b54eb5a6ce87d2634f722c','0','2','0'), ('49449','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10456','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','efe26a08e5244aba9529e2a19512b022','0','2','0'), ('49450','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10457','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d86c3660acfb4595946453fce47eb8df','0','2','0'), ('49451','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10457','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','db9785c59e4b4b1e922fd5a6ded18ae6','0','2','0'), ('49452','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10457','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d46e25089d8144d1b56062cc2d3e9059','0','2','0'), ('49453','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10457','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1798378de4a34ef39db1c9b22a1131e8','0','2','0'), ('49454','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10458','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4a85e5aaa45a4a289323e0438e6f5f09','0','2','0'), ('49455','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10458','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4cc4ce99e8c2450aa6a74075306f1b13','0','2','0'), ('49456','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10458','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d4687d0ffe8d4ac39d027fc8e9647c0d','0','2','0'), ('49457','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10458','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7765ee205fe64485a341109b2173e85f','0','2','0'), ('49458','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10459','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b1f40fbc259f44db830072b49a5825ad','0','2','0'), ('49459','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10459','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f65e9753464a4521bb8a537daab08a5b','0','2','0'), ('49460','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10459','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','69c3af5ff75f4a6296f6cecd8c8259ba','0','2','0'), ('49461','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10459','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','44c8106b4f174854962a97a5fe3fc3c8','0','2','0'), ('49462','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10460','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d135fc6382b74d1dac9287de6140adda','0','2','0'), ('49463','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10460','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','db3d7ea3f60f4e4fa53156f9ae87b651','0','2','0'), ('49464','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10460','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0da61f3ed2b64dd0b261e56e55e52e29','0','2','0'), ('49465','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10460','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6e122ae0407044ad9359fd2ce74b5897','0','2','0'), ('49466','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10461','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a3099e04128b4ff7abbd6ac772306bc5','0','2','0'), ('49467','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10461','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','255e1f84524643ea8d827ad0492d5a73','0','2','0'), ('49468','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10461','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4dcd1df8ddf147c7b6dfd406ab6b6a6d','0','2','0'), ('49469','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10461','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','461a7262a99f43cf99856fec3482dab7','0','2','0'), ('49470','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10462','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0c527e54de0f40d28c01d597cee2b37c','0','2','0'), ('49471','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10462','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5afeb3e22aa4479ba0f2cfde3e39155a','0','2','0'), ('49472','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10462','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e65a3b598bd64bbfaf434ec1549d0ef6','0','2','0'), ('49473','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10462','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ca23bb18b5df4e9f9f447b27ff453c1a','0','2','0'), ('49474','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10463','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b3042bcb96014348a57d25cd12829795','0','2','0'), ('49475','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10463','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fc23fc78ca3145798b76216070acb4d5','0','2','0'), ('49476','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10463','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f720cbe0adb243c5b66f303bda66dc5c','0','2','0'), ('49477','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10463','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e78b76cc8a864070b275f1e82d5a0cd0','0','2','0'), ('49478','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10464','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','50423572f0824002b674a005262086bb','0','2','0'), ('49479','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10464','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','715783a411ee47bb9cca13c7ef7b5938','0','2','0'), ('49480','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10464','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0e27fff5b5264b7dbaf9b3bd6babebeb','0','2','0'), ('49481','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10464','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','078f3735ac0d4403b539c27a77284658','0','2','0'), ('49482','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10465','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4001b2da26774319b5e8754eccb9ace6','0','2','0'), ('49483','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10465','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fd1e16940eef4715906c2f8241df141e','0','2','0'), ('49484','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10465','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e998ed1fcfc7498a873448c59d912f48','0','2','0'), ('49485','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10465','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b9b599a6f7d746959af746bf348c3c45','0','2','0'), ('49486','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10466','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dde29665f66f4a74bda66ffe6896b8e8','0','2','0'), ('49487','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10466','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1b64317c196f4a31b8c7dfd614b285a7','0','2','0'), ('49488','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10466','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f3302ebef61b469898e0f37ac3607723','0','2','0'), ('49489','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10466','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','412e6077aaed46bebb182343f1b97023','0','2','0'), ('49490','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10467','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1805474bc45841be9203aa4431c6e5f6','0','2','0'), ('49491','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10467','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','13c315f3af5747deb5590a52d979f2df','0','2','0'), ('49492','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10467','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c1d7c3be659d46b79a6122a3b07053d1','0','2','0'), ('49493','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10467','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6915ae48936a4ce084412df12c92b80f','0','2','0'), ('49494','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10468','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8afd22083a1343cf81d947e42516583e','0','2','0'), ('49495','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10468','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','24e13986d6224173bec425a3ca2562fa','0','2','0'), ('49496','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10468','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','165ef578bc8144c79e3bb23cf9aece72','0','2','0'), ('49497','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10468','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9909cd00a6a24e7693bcee846e806bd2','0','2','0'), ('49498','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10469','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0ea5fe1af3f14c258407cdcf5c8492cd','0','2','0'), ('49499','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10469','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0b6e7345eb5d48ce88d577f1023a7479','0','2','0'), ('49500','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10469','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','99d748b7c76e4ea493784fd62348cc55','0','2','0'), ('49501','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10469','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1e429d1a498044d3b95d2a73db924f77','0','2','0'), ('49502','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10470','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d7dee0d21034492e80cd52070f242131','0','2','0'), ('49503','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10470','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','33b7e69a7e3b44548c14b5d290518d23','0','2','0'), ('49504','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10470','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','48068386e2fa47afbac7f41fd8c36a72','0','2','0'), ('49505','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10470','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2ba207937e5146adaa5e02903ae70b8b','0','2','0'), ('49506','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10471','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','69bb93aca6c140959ad2ddd484a774e7','0','2','0'), ('49507','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10471','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2298f69eb20647468f92dfee2740d653','0','2','0'), ('49508','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10471','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','987908255779438fa44009e8cc021daf','0','2','0'), ('49509','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10471','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b22c36030deb4143a6843bfeb3ea1ebe','0','2','0'), ('49510','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10472','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9c0018fd8715414887115820c3094146','0','2','0'), ('49511','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10472','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','732470e573084fd6b7d27d99189004ba','0','2','0'), ('49512','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10472','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f3670784a4e34fb6b9ed84c4c43998ed','0','2','0'), ('49513','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10472','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ce36e933fd9146c29d9d46ebfef95489','0','2','0'), ('49514','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10473','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3b40ad0d38434b10a190ed2563b7ebee','0','2','0'), ('49515','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10473','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b606e130e79e4664892e94f25bbdb7ee','0','2','0'), ('49516','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10473','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','50d3a1b778cc4981b069dffe98a21ba2','0','2','0'), ('49517','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10473','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','32fa64de0bb44217907a3f8ca6683036','0','2','0'), ('49518','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10474','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','318eae7c977a44f9b24891376cefc129','0','2','0'), ('49519','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10474','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4376a8c9a1d94d9da621d66f41546644','0','2','0'), ('49520','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10474','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ee1b96c22a8d4d87bbd8cdd28ff75859','0','2','0'), ('49521','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10474','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4ee4e5b2384e48bd86df5e6f26d37e84','0','2','0'), ('49522','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10475','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b3f51cd4147748e197e79c4497a26d3b','0','2','0'), ('49523','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10475','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3d3d5ab7c4d54019bdf8030ed47bad6a','0','2','0'), ('49524','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10475','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ef785b02dd6742b797ec65468c385499','0','2','0'), ('49525','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10475','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4b18f19aca9e44d6bad22909cb335657','0','2','0'), ('49526','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10476','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ddf965753be54765afd2ce23a0895ba7','0','2','0'), ('49527','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10476','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aa5a9445830441ee9795763529df49ae','0','2','0'), ('49528','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10476','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5235b45eb9be42748cd9740626734961','0','2','0'), ('49529','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10476','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','454aab3736a24babaa379f7526a41e5d','0','2','0'), ('49530','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10477','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','84b79932cea04e7fa9dc64fe119a2825','0','2','0'), ('49531','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10477','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2ed1bdac264e4d05b1873e69c17cc288','0','2','0'), ('49532','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10477','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','13f73255283f4f6b923edae51f98f5f6','0','2','0'), ('49533','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10477','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1d1fbc3838c341cc9b874721a824deef','0','2','0'), ('49534','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10478','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8fa3b36e1d7943c7b1d7b9a75c65d087','0','2','0'), ('49535','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10478','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','be5b2f204fa545d4b581201dfbf57335','0','2','0'), ('49536','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10478','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','39a398bdbb564bb7b9b120b36e01115c','0','2','0'), ('49537','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10478','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a3c4ebcac6134235a5f51ad0a825acae','0','2','0'), ('49538','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10479','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b2e8ea00836544f78a33586ba8b92b45','0','2','0'), ('49539','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10479','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4b3d7a1cf06e4fa184403f3796c3ed13','0','2','0'), ('49540','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10479','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f77d01ca88eb4851951df2a481208bca','0','2','0'), ('49541','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10479','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0cb6b32ae5a84259ab847d0cc802f16c','0','2','0'), ('49542','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10480','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ba436d334f7648db8a7b792418232fde','0','2','0'), ('49543','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10480','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bd5ed76fb50d44e0925cf59b9f7b33b2','0','2','0'), ('49544','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10480','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8c341838dcb7463caa565c5b50b131bd','0','2','0'), ('49545','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10480','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3bcaff90977a4c68812498d86efdb0c4','0','2','0'), ('49546','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10481','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','19ae76cf5af647a4ab5e3dd32f9e4509','0','2','0'), ('49547','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10481','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','46b03489e77c4100b49aa05c9e860879','0','2','0'), ('49548','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10481','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b91e83c420b14d32a65bb19bca8ec5fe','0','2','0'), ('49549','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10481','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','02b57d8b31cf4a618daa8021b8c926b6','0','2','0'), ('49550','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10482','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2376b53a6f4045fcacbd6d6c0d78d0bc','0','2','0'), ('49551','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10482','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a221763ac5874a0ab8b9c76aa10809e6','0','2','0'), ('49552','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10482','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c602a12c83ca48ff84c875d818528a87','0','2','0'), ('49553','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10482','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','02fed23773644b0ea25f5363cf732b45','0','2','0'), ('49554','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10483','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3bcc104afb9a4ca29c0fe55a88484b08','0','2','0'), ('49555','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10483','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7add1dd4dfd84661b86fcf3f932e3ffb','0','2','0'), ('49556','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10483','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f8fe2949e8b247289e731d52c57abf4d','0','2','0'), ('49557','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10483','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ce006f12a6d342539ee9f2f20ff987aa','0','2','0'), ('49558','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10484','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','978810fe8ed54f719c1b3816f539d0c9','0','2','0'), ('49559','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10484','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7d8c3e389a3d44c1999028b92464a607','0','2','0'), ('49560','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10484','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fe90df42e8654cbdb521ecec3d428444','0','2','0'), ('49561','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10484','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5674848e4bc44f81942d8fd5a1d08397','0','2','0'), ('49562','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10485','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9274cb0e9be74c7fa259dd5575fb3c96','0','2','0'), ('49563','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10485','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d1f11d8c8a4e42a9b77fe3c263c43d00','0','2','0'), ('49564','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10485','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3a8df6e05ca442c0888c58afe63cae06','0','2','0'), ('49565','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10485','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b6d115a3a9d84dfbbf6800b35a8988d5','0','2','0'), ('49566','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10486','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3872a0f5d79e4e8a97af4e82d1221407','0','2','0'), ('49567','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10486','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5ac26b1da21e436fa20f5234304acc75','0','2','0'), ('49568','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10486','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f053aa3feb9047cc9c50da0e861ce16a','0','2','0'), ('49569','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10486','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ae93311998d34ec9bd1ce91b895d758d','0','2','0'), ('49570','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10487','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','09873df4de564b1395b88c417a923b11','0','2','0'), ('49571','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10487','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','65646365a9fe475fa4aaa70dfd653fb9','0','2','0'), ('49572','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10487','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5b12bb4397794b308985b4a866b0f517','0','2','0'), ('49573','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10487','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','69a55949c8df47d0894f6bdd2247c728','0','2','0'), ('49574','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10488','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0f5f2641521c4f4094bfc3d113df6232','0','2','0'), ('49575','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10488','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','05b63a97b9f248098a9ab7c586f8a866','0','2','0'), ('49576','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10488','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','45f9905f21b34ac88e8a707b2280171a','0','2','0'), ('49577','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10488','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','249a48a839cc4961a8949ee8323a6202','0','2','0'), ('49578','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10489','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e738626cc9af4c9ba47f18ede6d6ffa3','0','2','0'), ('49579','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10489','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6a9998434d8b4a93a7fba87eaf642600','0','2','0'), ('49580','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10489','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0f06d2c64a2f4b6690736e3f74ea8e59','0','2','0'), ('49581','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10489','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','53d76ef4e9224a63bd30e3d1fc89542f','0','2','0'), ('49582','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10490','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6ccb140a18804e2a955f89063f3d1fba','0','2','0'), ('49583','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10490','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e0d8cd7456724c0690548859ea217994','0','2','0'), ('49584','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10490','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cff4aeb5cf4b4349858983fca3deb508','0','2','0'), ('49585','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10490','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','77bba6eb9e9f4c7dafd8ecb0d895aa4d','0','2','0'), ('49586','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10491','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','16f1d8ca6a654816ae56e2cd00016ba1','0','2','0'), ('49587','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10491','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','12053fcb928a4b788734ea4010de08fd','0','2','0'), ('49588','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10491','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','57e73f67141a42ec92a04c3d9d394907','0','2','0'), ('49589','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10491','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6fcfd9b1a6324b23a5705a7118874be2','0','2','0'), ('49590','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10492','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b63bd0e852a7431cbff672703f5fa68f','0','2','0'), ('49591','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10492','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9d802db2738d4e0cb7bac8cd574b4283','0','2','0'), ('49592','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10492','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fd85963c79484ab2964e7cbce4cd666e','0','2','0'), ('49593','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10492','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','00ec9a3110f54225b1cf7ef17119b63f','0','2','0'), ('49594','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10493','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f31ffac30e7e40b7bd113a17862810ef','0','2','0'), ('49595','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10493','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a273bbb0f2744f229f08f83002f9ef09','0','2','0'), ('49596','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10493','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6d84a0c0f8904b4db46a4f185c4438d6','0','2','0'), ('49597','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10493','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b0106d75e8484aea9c4431ff319a35c3','0','2','0'), ('49598','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10494','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c2630a4fef56441895dde6e8dbf415b6','0','2','0'), ('49599','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10494','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8e19febc9ea54bdfbe8dd05538f03d41','0','2','0'), ('49600','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10494','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d84c08e7bfde4fff825120e5e2431575','0','2','0'), ('49601','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10494','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','63a9a283529a47c1921b9e91925783f5','0','2','0'), ('49602','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10495','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9abd143a230545b5912e56ebdeff5fad','0','2','0'), ('49603','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10495','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','399c977682b54f21a2de66c620e30f13','0','2','0'), ('49604','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10495','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','69b35a7a4e60483c9bf69367b6151d06','0','2','0'), ('49605','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10495','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bbd42a0a59854a0cb8e8661a43308585','0','2','0'), ('49606','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10496','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9a9de341ab9042ba93a59bc755a67d07','0','2','0'), ('49607','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10496','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','361b9a2d66864d14806c8ef41ddf958a','0','2','0'), ('49608','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10496','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','544db32c591a4ed1ab8113212de6e920','0','2','0'), ('49609','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10496','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','edd3813705ad49cf84ee609e51c0b04e','0','2','0'), ('49610','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10497','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f328cfadd7c149c98d8e6694ff8a1d16','0','2','0'), ('49611','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10497','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7f462b2b67494acc8e968a38ae2949e7','0','2','0'), ('49612','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10497','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7c007188eb6b465c8b56f415ac1a8efc','0','2','0'), ('49613','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10497','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','219015883daa4871be424d46c4af4126','0','2','0'), ('49614','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10498','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','89af9490b6c74ab8ae81630c171e4326','0','2','0'), ('49615','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10498','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','132954d3fced48d9a272be2f748c915d','0','2','0'), ('49616','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10498','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e7b3d6ee055c4aad8697c7fe6b46321f','0','2','0'), ('49617','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10498','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','caff962e717e4d2f93d2c67a59316aa6','0','2','0'), ('49618','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10499','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ce444de5ad9944b3bfb8dffb26e0314a','0','2','0'), ('49619','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10499','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6da7e4227e054a3ca41950f208cd8c01','0','2','0'), ('49620','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10499','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','401bd6a8a97643d5888157488dd9a4b6','0','2','0'), ('49621','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10499','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','82aeb0418e3445bd92a6626e75d25b7a','0','2','0'), ('49622','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10500','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8575e3af9dc841c489d0d72cf3880da1','0','2','0'), ('49623','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10500','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fe69d484c5734fc88eb7cb9d8e79288e','0','2','0'), ('49624','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10500','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8fc500e6a2b743cf9c948b099839dc8a','0','2','0'), ('49625','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10500','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','511cdf90845747b5bfc43c46c245aec5','0','2','0'), ('49626','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10501','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bbef794582294a2ea1321ac233a4af43','0','2','0'), ('49627','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10501','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6db4d343f263423aa2429e64efbef34b','0','2','0'), ('49628','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10501','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','351f9998f3a24e21a18570d9aa782734','0','2','0'), ('49629','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10501','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9ea80b6d187a4117aea55f07c782f336','0','2','0'), ('49630','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10502','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d37741d8f523452381e8400eb0ac11cb','0','2','0'), ('49631','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10502','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ebc661ab6f4d48da8294d4199172dc1a','0','2','0'), ('49632','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10502','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e6290dc78db8453c94c22eee0940fc01','0','2','0'), ('49633','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10502','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f1f656e272c8469b98bda73e0cc6a861','0','2','0'), ('49634','20','walk[1.3.6.1.4.1.14988.1.1.3.11]','10233','Temperature CPU discovery','mtxrHlProcessorTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlProcessorTemperature Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9a4ae5c2a50d4414ab0eed2c70bcd9c3','0','2','0'), ('49635','20','walk[1.3.6.1.4.1.14988.1.1.3.10]','10233','Temperature sensor discovery','mtxrHlTemperature.discovery','1h','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrHlTemperature Since temperature sensor is not available on all Mikrotik hardware, this is done to avoid unsupported items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9c6a401a70ec4dba92bd9e270fe7dc79','0','2','0'), ('49636','20','get[1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX}]','10233','CPU: Temperature','sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ad101c676b5243eca67eb68d879f5212','0','2','0'), ('49637','20','get[1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX}]','10233','Device: Temperature','sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}]','1m','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrHlTemperature Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..). Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2bfb758ca6264401902524b32e04f472','0','2','0'), ('49638','21','','10663','Authentication','purestorage.flasharray.auth','1m','0','0','0','4','','','','',NULL,NULL,E'var params = JSON.parse(value), request = new HttpRequest(), cookies = [], error_msg = ''''; function getToken(url, data) { var token = null; var response = request.post(url, JSON.stringify(data)); Zabbix.log(4, ''[ Pure Storage API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Failed to receive data: invalid response status code.''; } if (response !== null) { try { token = JSON.parse(response).api_token; } catch (error) { throw ''Failed to get the API token from Pure Storage API. Check debug log for more information.''; } } if (token === null || typeof token !== ''string'') { throw ''Something went wrong while getting the API token. Check debug log for more information.''; } return token; }; function createSession(url, data) { var cookies = []; response = request.post(url, JSON.stringify(data)); Zabbix.log(4, ''[ Pure Storage API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Failed to receive data: invalid response status code.''; } if (response !== null) { try { username = JSON.parse(response).username; } catch (error) { throw ''Failed to parse response received from Pure Storage API. Check debug log for more information.''; } } else { throw ''Authentication failed.''; } var headers = request.getHeaders(); for (key in headers) { if (key.toLowerCase() == ''set-cookie'') { var entries = headers[key].split('',''); for (idx in entries) { var value = entries[idx].split('';'')[0]; cookies.push(value); } } } return cookies; }; try { [''url'', ''token'', ''username'', ''password'', ''version''].forEach(function (field) { var macro = ''{$PURE.FLASHARRAY.API.'' + field.toUpperCase() + ''}''; if (typeof params[field] === ''undefined'' || params[field] === macro) { throw ''Please set \\'''' + field + ''\\'' script input parameter to the proper '' + macro + '' macro value.''; } }); [''url'', ''version''].forEach(function (field) { if (typeof params[field] == '''') { throw ''Please set \\'''' + field + ''\\'' script input parameter to the proper value.''; } }); if (params.token == '''' & params.username == '''' & params.password == '''') { throw ''To perform authentication, either a token or a username and password must be specified.''; } if (params.url.indexOf(''http://'') === -1 && params.url.indexOf(''https://'') === -1) { params.url = ''https://'' + params.url + (!params.url.endsWith(''/'') ? ''/'' : '''');; } if (typeof params.http_proxy !== ''undefined'' && params.http_proxy !== ''{'' + ''$PURE.FLASHARRAY.HTTP_PROXY}'' && params.http_proxy !== '''') { request.setProxy(params.http_proxy); } request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); if (params.token === '''') { if (params.username === '''' || params.password === '''') { throw ''Username or password is not specified.''; } params.token = getToken( params.url + ''api/'' + params.version + ''/auth/apitoken'', {''username'': params.username,''password'': params.password} ); } cookies = createSession( params.url + ''api/'' + params.version + ''/auth/session'', {''api_token'': params.token} ); } catch (err) { error_msg = err; }; return JSON.stringify({ ''cookie'': cookies.join(''; ''), ''error'': error_msg.toString() });','','0','','','','','0',NULL,'Pure Storage FlashArray authentication with username and password or API token usage. Returns a session ID that is required only once and is used for all dependent script items. A session will expire after 30 minutes. Check the template documentation for details.','0','7d','0','',NULL,'{$PURE.FLASHARRAY.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','37b7fc4e8af740639a009049acdaf229','0','2','0'), ('49639','21','','10664','Authentication','purestorage.flasharray.auth','1m','0','0','0','4','','','','',NULL,NULL,E'var params = JSON.parse(value), request = new HttpRequest(), token = '''', error_msg = ''''; function login(url) { var token = ''''; response = request.post(url); Zabbix.log(4, ''[ Pure Storage API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Failed to receive data: invalid response status code.''; } if (response !== null) { try { username = JSON.parse(response).username; } catch (error) { throw ''Failed to parse response received from Pure Storage API. Check debug log for more information.''; } } else { throw ''Authentication failed.''; } var headers = request.getHeaders(); for (key in headers) { if (key.toLowerCase() == ''x-auth-token'') { token = headers[key]; } } return token; }; try { [''url'', ''token'', ''version''].forEach(function (field) { var macro = ''{$PURE.FLASHARRAY.API.'' + field.toUpperCase() + ''}''; if (typeof params[field] === ''undefined'' || params[field] === macro) { throw ''Please set \\'''' + field + ''\\'' script input parameter to the proper '' + macro + '' macro value.''; } }); [''url'', ''version''].forEach(function (field) { if (typeof params[field] == '''') { throw ''Please set \\'''' + field + ''\\'' script input parameter to the proper value.''; } }); if (params.url.indexOf(''http://'') === -1 && params.url.indexOf(''https://'') === -1) { params.url = ''https://'' + params.url + (!params.url.endsWith(''/'') ? ''/'' : '''');; } if (typeof params.http_proxy !== ''undefined'' && params.http_proxy !== ''{'' + ''$PURE.FLASHARRAY.HTTP_PROXY}'' && params.http_proxy !== '''') { request.setProxy(params.http_proxy); } request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''api-token: '' + params.token); token = login( params.url + ''api/'' + params.version + ''/login'' ); } catch (err) { error_msg = err; }; return JSON.stringify({ ''token'': token, ''error'': error_msg.toString() });','','0','','','','','0',NULL,'Pure Storage FlashArray authentication with API token usage. Returns a session token; it is required only once and is used for all dependent script items. A session will expire after 30 minutes. Check the template documentation for the details.','0','7d','0','',NULL,'{$PURE.FLASHARRAY.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','bf9a63ef87674ff4a3ec07f7637435cb','0','2','0'), ('49865','21','','10665','Get data','azure.vault.data.get','1m','0','0','0','4','','','','',NULL,NULL,E'var Azure = { params: {}, token: null, setParams: function (params) { [''app_id'', ''password'', ''tenant_id'', ''subscription_id'', ''resource_id'', ''period''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: '' + field + ''.''; } }); Azure.params = params; }, login: function () { var response, login = new HttpRequest(); if (typeof Azure.params.proxy !== ''undefined'' && Azure.params.proxy !== '''') { login.setProxy(Azure.params.proxy); } login.addHeader(''Content-Type: application/x-www-form-urlencoded''); response = login.post( ''https://login.microsoftonline.com/'' + encodeURIComponent(Azure.params.tenant_id) + ''/oauth2/token'', ''grant_type=client_credentials&resource='' + encodeURIComponent(''https://management.azure.com/'') + ''&client_id='' + encodeURIComponent(Azure.params.app_id) + ''&client_secret='' + encodeURIComponent(Azure.params.password) ); if (login.getStatus() !== 200) { throw ''Login failed with status code '' + login.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse login session response.''; } if (!response.hasOwnProperty(''access_token'')) { throw ''Authentication response does not contain access token.''; } Azure.token = response[''access_token'']; }, request: function (url) { var response, request = new HttpRequest(); if (typeof Azure.params.proxy !== ''undefined'' && Azure.params.proxy !== '''') { request.setProxy(Azure.params.proxy); } if (!Azure.token) { throw ''Request does not contain access token.''; } request.addHeader(''Content-Type: application/json''); request.addHeader(''Authorization: Bearer '' + Azure.token); Zabbix.log(4, ''[ Azure Vault ] request url: '' + url); response = request.get(url); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { return JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API.''; } }, getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getMetricsData: function () { var data = {}, end_date = new Date(), start_date = new Date(); function formatDate(date) { var year = date.getFullYear(), month = (date.getMonth() + 1), day = date.getDate(), hours = date.getHours(), minutes = date.getMinutes(), seconds = date.getSeconds(), ampm = hours >= 12 ? ''PM'' : ''AM''; hours = hours % 12 || 12; month = month < 10 ? ''0'' + month : month; day = day < 10 ? ''0'' + day : day; hours = hours < 10 ? ''0'' + hours : hours; minutes = minutes < 10 ? ''0'' + minutes : minutes; seconds = seconds < 10 ? ''0'' + seconds : seconds; formatted_date = year + ''-'' + month + ''-'' + day + '' '' + hours + '':'' + minutes + '':'' + seconds + '' '' + ampm; return formatted_date }; start_date.setDate(start_date.getDate() - Azure.params.period); end_date = encodeURIComponent(''\\'''' + formatDate(end_date) + ''\\''''); start_date = encodeURIComponent(''\\'''' + formatDate(start_date) + ''\\''''); date_filter = ''&$filter='' + encodeURIComponent(''startTime eq '') + start_date + encodeURIComponent('' and endTime eq '') + end_date; data.health = Azure.getField(Azure.request(''https://management.azure.com'' + Azure.params.resource_id + ''/providers/Microsoft.ResourceHealth/availabilityStatuses?api-version=2020-05-01''), ''value.0.properties''); data.jobs = Azure.getField(Azure.request(''https://management.azure.com'' + Azure.params.resource_id + ''/backupjobs?api-version=2025-01-01'' + date_filter), ''value''); return data } }; try { Azure.setParams(JSON.parse(value)); Azure.login(); return JSON.stringify(Azure.getMetricsData()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ Azure Vault ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'Gathers data of the Azure vault.','0','7d','0','',NULL,'{$AZURE.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','57d191150c06423daa1674d09c846dc7','0','2','0'), ('49882','11','','10589','Version (numeric)','db.odbc.select[pgsql.version.num,,"Database={$PG.DATABASE};{$PG.CONNSTRING.ODBC}"]','15m','31d','0','0','3','','','','',NULL,NULL,'SELECT current_setting(''server_version_num'')','','0','{$PG.USER}','{$PG.PASSWORD}','','','0',NULL,'Reports the version number of the server as an integer.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0b76450dd17d47a1829f51960dcb1374','0','2','0'), ('49886','11','','10589','Get bgwriter{#SINGLETON}','db.odbc.select[pgsql.bgwriter.above_17{#SINGLETON},,"Database={$PG.DATABASE};{$PG.CONNSTRING.ODBC}"]','1m','0','0','0','4','','','','',NULL,NULL,'SELECT row_to_json(T) FROM ( SELECT psc.num_timed AS checkpoints_timed, psc.num_requested AS checkpoints_req, psc.write_time AS checkpoint_write_time, psc.sync_time AS checkpoint_sync_time, psc.buffers_written AS buffers_checkpoint, psb.buffers_clean AS buffers_clean, psb.maxwritten_clean AS maxwritten_clean, psb.buffers_alloc AS buffers_alloc FROM pg_stat_checkpointer AS psc, pg_stat_bgwriter AS psb ) T','','0','{$PG.USER}','{$PG.PASSWORD}','','','2',NULL,'Collect all metrics from pg_stat_bgwriter: https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-BGWRITER-VIEW','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','46c4d56f21b24f4face87858445e7b5e','0','2','0'), ('49887','11','','10589','Get bgwriter{#SINGLETON}','db.odbc.select[pgsql.bgwriter.below_17{#SINGLETON},,"Database={$PG.DATABASE};{$PG.CONNSTRING.ODBC}"]','1m','0','0','0','4','','','','',NULL,NULL,'SELECT row_to_json(T) FROM ( SELECT checkpoints_timed, checkpoints_req, checkpoint_write_time, checkpoint_sync_time, buffers_checkpoint AS buffers_checkpoint, buffers_clean AS buffers_clean, maxwritten_clean, buffers_backend AS buffers_backend, buffers_backend_fsync, buffers_alloc AS buffers_alloc FROM pg_stat_bgwriter) T','','0','{$PG.USER}','{$PG.PASSWORD}','','','2',NULL,'Collect all metrics from pg_stat_bgwriter: https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-BGWRITER-VIEW','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','777e615655634c8bae2e13cef153314b','0','2','0'), ('49906','5','','10047','Zabbix preprocessing','zabbix[preprocessing]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The master item of Zabbix server''s preprocessing statistics.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5d253eac13394305a85d6c01a4a0774e','0','2','0'), ('49913','20','walk[1.3.6.1.4.1.12325.1.200.1.8.2]','10528','SNMP walk pf network interfaces','net.if.pf.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB SNMP walk through pfInterfacesIfTable. The collected data used in network interfaces LLD for dependent item prototypes.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','daf50788784c439b9775d4d377c17fe9','0','2','0'), ('49914','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10528','SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','da65fe5665114ca997894a781aa8a962','0','2','0'), ('49915','20','walk[1.3.6.1.4.1.12325.1.200.1.2]','10528','SNMP walk pf counters','opnsense.pf_counters.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB SNMP walk through pfCounter. The collected data used in dependent pf counter items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6898f6b638234788b9ac07818d40f800','0','2','0'), ('49916','20','walk[1.3.6.1.2.1.25.4.2.1.2,1.3.6.1.2.1.25.4.2.1.7]','10528','SNMP walk software','opnsense.sw.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB SNMP walk through hrSWRunTable. The collected data used in dependent service status items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b7582f10abf44e3aa4555b3d03de9c86','0','2','0'), ('49917','20','walk[1.3.6.1.4.1.12325.1.200.1.8.2]','10515','SNMP walk pf network interfaces','net.if.pf.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB SNMP walk through pfInterfacesIfTable. The collected data used in network interfaces LLD for dependent item prototypes.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d6c5fbb55a764f9dbe4fd4ad0f76517b','0','2','0'), ('49918','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10515','SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','17910f8996e5430e9491ff34a881013e','0','2','0'), ('49919','20','walk[1.3.6.1.4.1.12325.1.200.1.2]','10515','SNMP walk pf counters','pfsense.pf_counters.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB SNMP walk through pfCounter. The collected data used in dependent pf counter items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','32f632670d8742f28c18251fc59184a0','0','2','0'), ('49920','20','walk[1.3.6.1.2.1.25.4.2.1.2,1.3.6.1.2.1.25.4.2.1.7]','10515','SNMP walk software','pfsense.sw.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB SNMP walk through hrSWRunTable. The collected data used in dependent service status items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5f426d3f9ac94ffa978bae0e8f6a3e71','0','2','0'), ('49921','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10518','TrueNAS CORE: SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovering interfaces from IF-MIB.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4324124b621348e6bf51b808e33089dd','0','2','0'), ('49922','20','get[1.3.6.1.2.1.1.4.0]','10518','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0d1336b92a9347d58fab43e008ecc11b','0','2','0'), ('49923','20','walk[1.3.6.1.4.1.2021.10.1.2,1.3.6.1.4.1.2021.10.1.3]','10518','SNMP walk CPU load averages','system.cpu.load.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB SNMP walk through laTable. The collected data used in dependent CPU load average items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a34ec7a56e5c4b7eb9ecc1bb029735a2','0','2','0'), ('49924','20','walk[1.3.6.1.2.1.25.3.3.1.1,1.3.6.1.4.1.2021.11.11.0,1.3.6.1.4.1.2021.11.50.0,1.3.6.1.4.1.2021.11.51.0,1.3.6.1.4.1.2021.11.52.0,1.3.6.1.4.1.2021.11.54.0,1.3.6.1.4.1.2021.11.56.0]','10518','SNMP walk system CPUs','system.cpu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Discovering system CPUs.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e6d239830cf743b3adbaad91da793fd6','0','2','0'), ('49925','20','get[1.3.6.1.2.1.1.1.0]','10518','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d6ac8d84482244b88e4d2dbc676ea3d4','0','2','0'), ('49926','20','get[1.3.6.1.2.1.25.1.1.0]','10518','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dc3e8cb20837479f8aad2d1948ac8875','0','2','0'), ('49927','20','get[1.3.6.1.2.1.1.6.0]','10518','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','75c8390f14364962bd92df0c087e765a','0','2','0'), ('49928','20','get[1.3.6.1.2.1.1.3.0]','10518','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f21ada8be3c94f9d8e4c75f411f8b85a','0','2','0'), ('49929','20','get[1.3.6.1.2.1.1.2.0]','10518','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','79abfa4a6842499da1f03805de93c49f','0','2','0'), ('49930','20','walk[1.3.6.1.4.1.50536.3.1.2,1.3.6.1.4.1.50536.3.1.3]','10518','SNMP walk disk temperatures','truenas.disk.temp.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB SNMP walk through hddTempTable. The collected data used in disk temperature LLD and dependent item prototypes.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8111f8ada49c4559b4773cd32ca3226d','0','2','0'), ('49931','20','walk[1.3.6.1.4.1.50536.1.4,1.3.6.1.4.1.50536.1.5]','10518','SNMP walk ARC L2ARC','truenas.zfs.arc_l2arc.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB SNMP walk through arc and l2arc. The collected data used in dependent ARC and L2ARC items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','629537d839cb44d68ed3f1693abdb2ef','0','2','0'), ('49932','20','walk[1.3.6.1.4.1.50536.1.2.1.1.2,1.3.6.1.4.1.50536.1.2.1.1.3,1.3.6.1.4.1.50536.1.2.1.1.4,1.3.6.1.4.1.50536.1.2.1.1.5,1.3.6.1.4.1.50536.1.2.1.1.6]','10518','SNMP walk ZFS datasets','truenas.zfs.dataset.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB SNMP walk through datasetTable. The collected data used in ZFS dataset LLD and dependent item prototypes.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','97ca4111c54d43baaf779b293f392037','0','2','0'), ('49933','20','walk[1.3.6.1.4.1.50536.1.1.1.1.2,1.3.6.1.4.1.50536.1.1.1.1.3,1.3.6.1.4.1.50536.1.1.1.1.4,1.3.6.1.4.1.50536.1.1.1.1.5,1.3.6.1.4.1.50536.1.1.1.1.6,1.3.6.1.4.1.50536.1.1.1.1.7,1.3.6.1.4.1.50536.1.1.1.1.8,1.3.6.1.4.1.50536.1.1.1.1.9,1.3.6.1.4.1.50536.1.1.1.1.10,1.3.6.1.4.1.50536.1.1.1.1.11]','10518','SNMP walk ZFS pools','truenas.zfs.pools.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB SNMP walk through zpoolTable. The collected data used in ZFS pool LLD and dependent item prototypes.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','73abc73aa39d4dc0a372c274fbea3fa1','0','2','0'), ('49934','20','walk[1.3.6.1.4.1.50536.1.6]','10518','SNMP walk ZIL','truenas.zfs.zil.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB SNMP walk through zil. The collected data used in dependent ZIL items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ffa31756524a4c679f8a059002b43173','0','2','0'), ('49935','20','walk[1.3.6.1.4.1.50536.1.3.1.1.2,1.3.6.1.4.1.50536.1.3.1.1.3,1.3.6.1.4.1.50536.1.3.1.1.4,1.3.6.1.4.1.50536.1.3.1.1.5,1.3.6.1.4.1.50536.1.3.1.1.6]','10518','SNMP walk ZFS volumes','truenas.zfs.zvols.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB SNMP walk through zvolTable. The collected data used in ZFS volume LLD and dependent item prototypes.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b695ddba4fd14b8f85e0c5a9f567e32b','0','2','0'), ('49936','20','walk[1.3.6.1.4.1.2021.13.15.1.1.2,1.3.6.1.4.1.2021.13.15.1.1.5,1.3.6.1.4.1.2021.13.15.1.1.6,1.3.6.1.4.1.2021.13.15.1.1.9]','10518','SNMP walk block devices','vfs.dev.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-DISKIO-MIB SNMP walk through diskIOTable. The collected data used in filesystem LLD and dependent item prototypes.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','845cd344b76f4836b472fca60e5426d1','0','2','0'), ('49946','3','','10174','Boot time','vmware.vm.property[{$VMWARE.URL},{$VMWARE.VM.UUID},runtime.bootTime]','1m','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','{$VMWARE.USERNAME}','{$VMWARE.PASSWORD}','','','0',NULL,'System boot time.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','deb129a3dcb04008a8fbdc64c6f11c7f','0','2','0'), ('49947','20','walk[1.3.6.1.4.1.2021.10.1.2,1.3.6.1.4.1.2021.10.1.3]','10613','SNMP walk CPU load averages','system.cpu.load.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB SNMP walk through laTable. The collected data used in dependent CPU load average items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','071848dc74fb481e9f20d3ab63b99f9a','0','2','0'), ('49948','19','','10667','Get token','cisco.ftd.token.get','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Requests an access token using the `password` grant type (username and password).','0','7d','0','',NULL,'{$CISCO.FTD.DATA.TIMEOUT}','{$CISCO.FTD.API.URL}/fdm/token','','{ "grant_type": "password", "username": "{$CISCO.FTD.API.USERNAME}", "password": "{$CISCO.FTD.API.PASSWORD}" }','200','1','0','{$CISCO.FTD.HTTP_PROXY}','Content-Type: application/json Accept: application/json','0','1','0','0','0','0','0','fe265c79580b4da99b9a83f23739fae5','0','2','0'), ('50002','21','','10547','Get inventory data','meraki.get.inventory','{$MERAKI.GET.INVENTORY.INTERVAL}','0','0','0','4','','','','',NULL,NULL,E'var params = JSON.parse(value); var request = new HttpRequest(); request.addHeader(''X-Cisco-Meraki-API-Key:'' + params.token); request.addHeader(''User-Agent: ZabbixServer/1.2 Zabbix''); function parseTime(timeString) { var match = timeString.match(/^(\\d+)([h|m|s])$/); if (match) { var value = parseInt(match[1], 10); var unit = match[2]; switch (unit) { case ''h'': return value * 3600; case ''m'': return value * 60; case ''s'': return value; default: return 0; } } return 0; }; var response, error_msg = '''', deviceInfo = [], timespan; function getHttpData(url) { var startTime = new Date().getTime(); var maxWait = parseInt(timespan, 10) * 1000; var waitFor = 1000; while (true) { response = request.get(url); Zabbix.log(4, ''[ Meraki API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); var status = request.getStatus(); if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from Meraki API. Check debug log for more information.''; } } if (status === 429 && response && response.errors && Array.isArray(response.errors) && response.errors.indexOf("API rate limit exceeded for organization") !== -1) { var now = new Date().getTime(); var headers = request.getHeaders(false); if (''Retry-After'' in headers) { var retryAfter = headers[''Retry-After'']; Zabbix.log(4, ''[ Meraki API ] API rate limit exceeded. Retrying after '' + retryAfter + '' seconds.''); waitFor = parseInt(retryAfter) * 1000; } else { Zabbix.log(4, ''[ Meraki API ] API rate limit exceeded. No Retry-After header. Retrying after 1 second.''); } if (now - startTime + waitFor > maxWait) { throw ''Failed to receive data: API rate limit exceeded and retry timeout reached.''; } Zabbix.sleep(waitFor); continue; } if (status !== 200) { if (response.errors) { throw response.errors.join('', ''); } else { throw ''Failed to receive data: invalid response status code.''; } } if (typeof (response) !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object.''; } return response; } }; try { if (params.token === ''{'' + ''$MERAKI.TOKEN}'') { throw ''Please change {'' + ''$MERAKI.TOKEN} macro to the proper value.''; } if (params.url.indexOf(''http://'') === -1 && params.url.indexOf(''https://'') === -1) { params.url = ''https://'' + params.url; } if (!params.url.endsWith(''/'')) { params.url += ''/''; } if (typeof params.httpproxy !== ''undefined'' && params.httpproxy !== '''') { request.setProxy(params.httpproxy); } timespan = parseTime(''{$MERAKI.GET.INVENTORY.INTERVAL}''); deviceInfo = getHttpData(params.url + ''organizations/'' + encodeURIComponent(params.organizationId) + ''/devices?serial='' + encodeURIComponent(params.serial)); deviceInfo = (deviceInfo && Array.isArray(deviceInfo) && deviceInfo.length > 0) ? deviceInfo[0] : []; deviceInfo[''ip''] = (typeof deviceInfo.lanIp !== ''undefined'') ? deviceInfo[''lanIp''] : deviceInfo[''wan1Ip'']; } catch (error) { error_msg = error; }; return JSON.stringify({ ''deviceInfo'': deviceInfo, ''error'': error_msg.toString() });','','0','','','','','0',NULL,'Item for gathering device inventory data from Meraki API.','0','7d','0','',NULL,'{$MERAKI.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','ae461bc520a840d9b0f0847011f52bce','0','2','0'), ('50013','20','walk[1.3.6.1.4.1.2021.10.1.2,1.3.6.1.4.1.2021.10.1.3]','10248','SNMP walk CPU load averages','system.cpu.load.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB SNMP walk through laTable. The collected data used in dependent CPU load average items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','063a77f98871429e81d46691bf61c09f','0','2','0'), ('50016','21','','10668','Get data','aws.backup_vault.data.get','1m','0','0','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, metadata: ''http://169.254.169.254/latest/'', getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''GET'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload)), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''region'', ''vault''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, request: function (method, canonical_uri, region, service, params, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''), host = service + ''.'' + region + ''.amazonaws.com'', canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date'', canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''x-amz-content-sha256:'' + sha256(data)); request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + (AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken)); } Zabbix.log(4, ''[ AWS Backup vault ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ AWS Backup vault ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { try { response = JSON.parse(XML.toJson(response)); } catch (error) { throw ''Failed to parse response received from AWS API. Check debug log for more information.''; } } return response; }, getVaultData: function () { var result = AWS.request(''GET'', ''/backup-vaults/'' + AWS.params.vault, AWS.params.region, ''backup'', ''''); if (typeof result !== ''object'') { throw ''Cannot get backup vault list from AWS API. Check debug log for more information.''; } if (result === null) { return []; } return result; } }; try { AWS.setParams(JSON.parse(value)); return JSON.stringify(AWS.getVaultData()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS Backup vault ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'Retrieve AWS backup vault metrics. More information here: https://docs.aws.amazon.com/aws-backup/latest/devguide/API_BackupVaultListMember.html','0','7d','0','',NULL,'{$AWS.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','0a02ff6671484ce4bf32c128aa337f14','0','2','0'), ('50017','21','','10668','Get jobs','aws.backup_vault.job.get','1m','0','0','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, metadata: ''http://169.254.169.254/latest/'', getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''GET'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload)), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''region'', ''vault'', ''period''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, request: function (method, canonical_uri, region, service, params, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''), host = service + ''.'' + region + ''.amazonaws.com'', canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date'', canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''x-amz-content-sha256:'' + sha256(data)); request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + (AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken)); } Zabbix.log(4, ''[ AWS Backup vault ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ AWS Backup vault ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { try { response = JSON.parse(XML.toJson(response)); } catch (error) { throw ''Failed to parse response received from AWS API. Check debug log for more information.''; } } return response; }, listJobs: function () { var lld_array = [], job_types = [ ''backup-job'', ''copy-job'', ''restore-job'' ], created_after = Date.now() / 1000 - AWS.params.period * 86400 payload = { ''backupVaultName'': AWS.params.vault, ''createdAfter'': created_after }; job_types.forEach(function (job_type) { while (payload.nextToken !== null) { var result = AWS.request(''GET'', ''/'' + job_type + ''s'', AWS.params.region, ''backup'', AWS.prepareParams(payload)); payload.nextToken = result.NextToken; if (typeof result !== ''object'') { throw ''Cannot get job list from AWS API. Check debug log for more information.''; } switch (job_type) { case ''backup-job'': { if (typeof result.BackupJobs !== ''object'') { throw ''Cannot get backup job list from AWS API. Check debug log for more information.''; } result.BackupJobs.forEach(function (job) { lld_array.push({ job_id: AWS.getField(job, ''BackupJobId''), job_type: job_type, resource_type: AWS.getField(job, ''ResourceType''), resource_name: AWS.getField(job, ''ResourceName''), job_state: AWS.getField(job, ''State''), job_size: AWS.getField(job, ''BackupSizeInBytes'') }); }); break; } case ''copy-job'': { if (typeof result.CopyJobs !== ''object'') { throw ''Cannot get copy job list from AWS API. Check debug log for more information.''; } result.CopyJobs.forEach(function (job) { lld_array.push({ job_id: AWS.getField(job, ''CopyJobId''), job_type: job_type, resource_type: AWS.getField(job, ''ResourceType''), resource_name: AWS.getField(job, ''ResourceName''), job_state: AWS.getField(job, ''State''), job_size: AWS.getField(job, ''BackupSizeInBytes'') }); }); break; } case ''restore-job'': { if (typeof result.RestoreJobs !== ''object'') { throw ''Cannot get restore job list from AWS API. Check debug log for more information.''; } result.RestoreJobs.forEach(function (job) { lld_array.push({ job_id: AWS.getField(job, ''RestoreJobId''), job_type: job_type, resource_type: AWS.getField(job, ''ResourceType''), resource_name: null, job_state: AWS.getField(job, ''Status''), job_size: AWS.getField(job, ''BackupSizeInBytes'') }); }); break; } } }; delete payload.nextToken; }) return lld_array; } }; try { AWS.setParams(JSON.parse(value)); return JSON.stringify(AWS.listJobs()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS Backup vault ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','0',NULL,'Get a list of jobs in the vault.','0','7d','0','',NULL,'{$AWS.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','81d17a83dddf4a4292428ae0644d83ca','0','2','0'), ('50037','21','','10535','Backup vault discovery','aws.backup_vault.discovery','12h','31d','365d','0','4','','','','',NULL,NULL,E'var AWS = { params: {}, metadata: ''http://169.254.169.254/latest/'', getField: function (data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; }, getRoleBaseCredentials: function () { AWS.params[''auth_type''] = ''role_base''; var request = new HttpRequest(); if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''X-aws-ec2-metadata-token-ttl-seconds: 21600''); var token = request.put(AWS.metadata + ''api/token''); if (request.getStatus() !== 200 || token === null || token === '''') { throw ''Error getting IMDSv2 session token.''; } request.addHeader(''X-aws-ec2-metadata-token: '' + token); var IamRoleName = request.get(AWS.metadata + ''meta-data/iam/security-credentials''); if (request.getStatus() !== 200 || IamRoleName === null || IamRoleName === '''') { throw ''Error getting security credentials from instance metadata. Role not found.''; } credentials = request.get(AWS.metadata + ''meta-data/iam/security-credentials/'' + encodeURI(IamRoleName)); if (request.getStatus() !== 200 || credentials === null || credentials === '''') { throw ''Error getting security credentials from instance metadata.''; } try { credentials = JSON.parse(credentials); } catch (error) { throw ''Failed to parse response received from instance metadata. Check debug log for more information.''; } [''AccessKeyId'', ''SecretAccessKey'', ''Token''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); }, setParams: function (params) { AWS.params[''proxy''] = params.proxy; switch (AWS.getField(params, ''auth_type'')) { case ''role_base'': AWS.getRoleBaseCredentials(); break; case ''assume_role'': if (typeof params.metadata_auth === ''undefined'' || params.metadata_auth === '''' || (params.metadata_auth !== ''true'' && params.metadata_auth !== ''false'')) { throw ''Required param metadata_auth for assume_role is not set or has invalid value: "'' + params.metadata_auth + ''". Expected "true" or "false".''; } if (params.metadata_auth === ''true'') { AWS.getRoleBaseCredentials(); AWS.params[''SessionToken''] = AWS.params[''Token'']; AWS.params[''auth_type''] = ''assume_role_metadata''; [''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } if (params.metadata_auth === ''false'') { AWS.params[''auth_type''] = ''assume_role''; [''AccessKeyId'', ''SecretAccessKey'', ''sts_region'', ''role_arn''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } const role_arn_regex = /role\\/(.+)$/; const match = AWS.params.role_arn.match(role_arn_regex); if (!match) { throw ''Invalid role ARN format.''; } const payload = { ''Action'': ''AssumeRole'', ''Version'': ''2011-06-15'', ''RoleArn'': AWS.params.role_arn, ''RoleSessionName'': match[1] + ''Session'', }; credentials = AWS.getField(AWS.request(''GET'', AWS.params.sts_region, ''sts'', AWS.prepareParams(payload)), ''AssumeRoleResponse.AssumeRoleResult.Credentials''); [''AccessKeyId'', ''SecretAccessKey'', ''SessionToken''].forEach(function (field) { if (typeof credentials !== ''object'' || typeof credentials[field] === ''undefined'' || credentials[field] === '''') { throw ''Required credentials are not set: "'' + field + ''".''; }; AWS.params[field] = credentials[field]; }); break; default: AWS.params[''auth_type''] = ''access_key''; [''AccessKeyId'', ''SecretAccessKey''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); } [''describe_region'', ''region_match'', ''region_not_match''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Required param is not set: "'' + field + ''".''; } AWS.params[field] = params[field]; }); }, sign: function (key, message) { var hex = hmac(''sha256'', key, message); if ((hex.length % 2) === 1) { throw ''Invalid length of a hex string!''; } var result = new Int8Array(hex.length / 2); for (var i = 0, b = 0; i < hex.length; i += 2, b++) { result[b] = parseInt(hex.substring(i, i + 2), 16); } return result; }, prepareParams: function (params) { var result = []; Object.keys(params).sort().forEach(function (key) { if (typeof params[key] !== ''object'') { result.push(key + ''='' + encodeURIComponent(params[key])); } else { result.push(prepareObject(key, params[key])); } }); return result.join(''&''); }, request: function (method, canonical_uri, region, service, params, data) { if (typeof data === ''undefined'' || data === null) { data = ''''; } var amzdate = (new Date()).toISOString().replace(/\\.\\d+Z/, ''Z'').replace(/[-:]/g, ''''), date = amzdate.replace(/T\\d+Z/, ''''), host = service + ''.'' + region + ''.amazonaws.com'', canonical_headers = ''content-encoding:amz-1.0\\n'' + ''host:'' + host + ''\\n'' + ''x-amz-date:'' + amzdate + ''\\n'', signed_headers = ''content-encoding;host;x-amz-date'', canonical_request = method + ''\\n'' + canonical_uri + ''\\n'' + params + ''\\n'' + canonical_headers + ''\\n'' + signed_headers + ''\\n'' + sha256(data), credential_scope = date + ''/'' + region + ''/'' + service + ''/'' + ''aws4_request'', request_string = ''AWS4-HMAC-SHA256'' + ''\\n'' + amzdate + ''\\n'' + credential_scope + ''\\n'' + sha256(canonical_request), key = AWS.sign(''AWS4'' + AWS.params.SecretAccessKey, date), key = AWS.sign(key, region), key = AWS.sign(key, service), key = AWS.sign(key, ''aws4_request''), request = new HttpRequest(), url = ''https://'' + host + canonical_uri + ''?'' + params; if (typeof AWS.params.proxy !== ''undefined'' && AWS.params.proxy !== '''') { request.setProxy(AWS.params.proxy); } request.addHeader(''x-amz-date: '' + amzdate); request.addHeader(''x-amz-content-sha256:'' + sha256(data)); request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Content-Encoding: amz-1.0''); request.addHeader(''Authorization: '' + ''AWS4-HMAC-SHA256 Credential='' + AWS.params.AccessKeyId + ''/'' + credential_scope + '', '' + ''SignedHeaders='' + signed_headers + '', '' + ''Signature='' + hmac(''sha256'', key, request_string)); if (AWS.params.auth_type === ''role_base'' || AWS.params.auth_type === ''assume_role_metadata'' || (AWS.params.auth_type === ''assume_role'' & !params.includes(''AssumeRole''))) { request.addHeader(''X-Amz-Security-Token: '' + (AWS.params.auth_type === ''role_base'' ? AWS.params.Token : AWS.params.SessionToken)); } Zabbix.log(4, ''[ AWS Backup vault ] Sending request: '' + url); response = request.get(url); Zabbix.log(4, ''[ AWS Backup vault ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { response = JSON.parse(response); } catch (error) { try { response = JSON.parse(XML.toJson(response)); } catch (error) { throw ''Failed to parse response received from AWS API. Check debug log for more information.''; } } return response; }, listRegions: function () { var payload = { ''Action'': ''DescribeRegions'', ''Version'': ''2016-11-15'' }; regions = AWS.getField(AWS.request(''GET'', ''/'', AWS.params.describe_region, ''ec2'', AWS.prepareParams(payload)), ''DescribeRegionsResponse.regionInfo.item''); if (!Array.isArray(regions)) { regions = [regions] } return regions }, listVaults: function () { var lld_array = [], regions = AWS.listRegions(), payload = {}; regions.forEach(function (region) { var region_name = AWS.getField(region, ''regionName''); if (region_name.match(AWS.params.region_match) === null || region_name.match(AWS.params.region_not_match) !== null) { return; } while (payload.nextToken !== null) { var result = AWS.request(''GET'', ''/backup-vaults'', region_name, ''backup'', AWS.prepareParams(payload)); payload.nextToken = result.NextToken; if (typeof result !== ''object'' || typeof result.BackupVaultList !== ''object'') { throw ''Cannot get backup vault list from AWS API. Check debug log for more information.''; } if (result.BackupVaultList === null) { return []; } result.BackupVaultList.forEach(function (vault) { vault.region = region_name; lld_array.push(vault); }); }; delete payload.nextToken; }); return lld_array; } }; try { AWS.setParams(JSON.parse(value)); return JSON.stringify(AWS.listVaults()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ AWS Backup vault ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','','0','','','','','1',NULL,'Get backup vaults.','0','7d','1','',NULL,'{$AWS.DATA.TIMEOUT}','','','','200','1','0','','','0','0','0','0','0','0','0','8c687b699ea2421ea51534c9b80c7db7','0','2','0'), ('50039','20','walk[1.3.6.1.2.1.14.2]','10670','SNMP walk OSPF area','aruba.ospf.area.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: OSPF-MIB Used for discovering OSPF areas.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6b7cf5c2b6a244cfa6a01d8585611ad7','0','2','0'), ('50040','20','walk[1.3.6.1.2.1.14.7]','10670','SNMP walk OSPF interface','aruba.ospf.interface.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: OSPF-MIB Used for discovering OSPF interfaces.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2f5f922cafab488db3fd467efffcb6ad','0','2','0'), ('50041','20','walk[1.3.6.1.2.1.14.10]','10670','SNMP walk OSPF neighbor','aruba.ospf.neighbor.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: OSPF-MIB Used for discovering OSPF neighbors.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f4c3dcd0c3784198b84b67d083082d72','0','2','0'), ('50042','20','walk[1.3.6.1.4.1.47196.4.1.1.3.11.5.1]','10670','SNMP walk system FAN','aruba.system.fan.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ARUBAWIRED-FAN-MIB Used for discovering system fans.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8e1a8ba4ebf548df9be813330391521e','0','2','0'), ('50043','20','walk[1.3.6.1.4.1.47196.4.1.1.3.11.2.1]','10670','SNMP walk system PSU','aruba.system.psu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ARUBAWIRED-POWERSUPPLY-MIB Used for discovering the system power supply.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','25500be700d94f86afe100a6d9307b1b','0','2','0'), ('50044','20','walk[1.3.6.1.4.1.47196.4.1.1.3.22.1.0.1]','10670','SNMP walk system resource','aruba.system.resource.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ARUBAWIRED-SYSTEMINFO-MIB Used for discovering system resources.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8cf7561f82e945b2aa1a2186860de5fe','0','2','0'), ('50045','20','walk[1.3.6.1.4.1.47196.4.1.1.3.11.3.1]','10670','SNMP walk system temperature sensor','aruba.system.sensor.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: ARUBAWIRED-TEMPSENSOR-MIB Used for discovering system temperature sensors.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cf87723cdd604bd5a4fa6877e40f4c8b','0','2','0'), ('50046','3','','10670','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'1429','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a057be0738754d97ab70d107b090026a','0','2','0'), ('50047','3','','10670','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8f135c5e470b48848324c30b8b87c6ef','0','2','0'), ('50048','3','','10670','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'ICMP ping response time (in seconds).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3f7f876cf30e4023bf5d34c2521f457b','0','2','0'), ('50049','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.2.2.1.10,1.3.6.1.2.1.2.2.1.16,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.2.2.1.5]','10670','SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Used for discovering interfaces from IF-MIB.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','09347a20e46544c3a0b9cd448fc408fe','0','2','0'), ('50050','17','','10670','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','14c8d0d25dab4465843c627b1272f827','0','2','0'), ('50051','20','get[1.3.6.1.2.1.1.4.0]','10670','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5a43110974e649bdaa3c9e9401cdb118','0','2','0'), ('50052','20','get[1.3.6.1.2.1.1.1.0]','10670','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5f4d750bd8f54eeda5c7a36b54ef6c89','0','2','0'), ('50053','20','get[1.3.6.1.2.1.25.1.1.0]','10670','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d9f75b965fac43998839f385a95e08cd','0','2','0'), ('50054','20','get[1.3.6.1.2.1.1.6.0]','10670','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3fb049944092439babf4b85b7ef51e9d','0','2','0'), ('50055','20','get[1.3.6.1.2.1.1.5.0]','10670','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9f9dd3970d0d490891fce31da2fd2ab9','0','2','0'), ('50056','20','get[1.3.6.1.2.1.1.3.0]','10670','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','771ba8701cc84be69d82aa8ff55f4474','0','2','0'), ('50057','20','get[1.3.6.1.2.1.1.2.0]','10670','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cfedf58e272d484da917d32a10696600','0','2','0'), ('50058','5','','10670','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'1430','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c2b65af0f2184d699389688a3bd624c6','0','2','0'), ('50112','20','get[1.3.6.1.4.1.6141.2.60.12.1.11.9.0]','10671','CPU utilization','ciena.cpu.utilization','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: WWP-LEOS-SYSTEM-CONFIG-MIB CPU utilization over 60 seconds.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','df073cbb8335403b826eb05b70c8571e','0','2','0'), ('50113','20','get[1.3.6.1.4.1.6141.2.60.12.1.13.4.0]','10671','Memory available','ciena.memory.available','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: WWP-LEOS-SYSTEM-CONFIG-MIB Available memory in bytes.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5f452c7b72e54d59b20118fe2384a071','0','2','0'), ('50114','20','get[1.3.6.1.4.1.6141.2.60.12.1.13.1.0]','10671','Memory used','ciena.memory.used','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: WWP-LEOS-SYSTEM-CONFIG-MIB Used memory in bytes.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4a1490cfe12c41239a2979163f6d1d75','0','2','0'), ('50115','15','','10671','Memory utilization','ciena.memory.utilization','1m','31d','365d','0','0','','%','','',NULL,NULL,'last(//ciena.memory.used) * 100 / (last(//ciena.memory.used) + last(//ciena.memory.available))','','0','','','','','0',NULL,'Memory utilization, in percent.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a1c72b2649f04169b757ca1be27ae328','0','2','0'), ('50116','3','','10671','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'1433','','','0','','','','','0',NULL,'The host accessibility by ICMP ping. 0 - ICMP ping fails; 1 - ICMP ping successful.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6cc4a72569f64f79ae10e552c2fdbd58','0','2','0'), ('50117','3','','10671','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of lost packets.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a123346e709b42fe87e646af285cf8d5','0','2','0'), ('50118','3','','10671','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The ICMP ping response time (in seconds).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','500280a0bfe7466e9bd8528b6483ab4e','0','2','0'), ('50119','20','walk[1.3.6.1.2.1.2.2.1.8,1.3.6.1.2.1.2.2.1.7,1.3.6.1.2.1.31.1.1.1.18,1.3.6.1.2.1.31.1.1.1.1,1.3.6.1.2.1.2.2.1.2,1.3.6.1.2.1.2.2.1.3,1.3.6.1.2.1.31.1.1.1.6,1.3.6.1.2.1.31.1.1.1.10,1.3.6.1.2.1.2.2.1.14,1.3.6.1.2.1.2.2.1.20,1.3.6.1.2.1.2.2.1.19,1.3.6.1.2.1.2.2.1.13,1.3.6.1.2.1.31.1.1.1.15]','10671','SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Used for discovering interfaces from IF-MIB.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5c3f8f0ae5ed4226916d0edb195535fc','0','2','0'), ('50120','17','','10671','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other snmptrap items','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e0fb173352d7443581cc68e90cbc7cb1','0','2','0'), ('50121','20','get[1.3.6.1.2.1.1.4.0]','10671','System contact details','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.','23','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8ad77109e14d4a7b900d179ec1b96438','0','2','0'), ('50122','20','get[1.3.6.1.2.1.1.1.0]','10671','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB A textual description of the entity. This value should include the full name and version identification of the system''s hardware type, software operating-system, and networking software.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5ad8efff2bb8429ab122b97e834cce38','0','2','0'), ('50123','20','walk[1.3.6.1.4.1.6141.2.60.11.1.1.4.1.1]','10671','SNMP walk fan','system.fan.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: WWP-LEOS-CHASSIS-MIB Used for discovering system fans.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1d76443bc2ef47e3abc99bbc3ddeb92d','0','2','0'), ('50124','20','get[1.3.6.1.4.1.6141.2.60.1.1.1.2.1.7.1]','10671','Hardware model name','system.hw.model','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: WWP-LEOS-BLADE-MIB Model name of the hardware.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','487b6faac2b94edbb7109b35b6cffe48','0','2','0'), ('50125','20','get[1.3.6.1.4.1.6141.2.60.1.1.1.2.1.2.1]','10671','Hardware serial number','system.hw.serialnumber','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: WWP-LEOS-BLADE-MIB The serial number of the product.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','349aa5e2814644499e1391ffd5e2ffdf','0','2','0'), ('50126','20','get[1.3.6.1.2.1.25.1.1.0]','10671','Uptime (hardware)','system.hw.uptime[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8fd398744d9c4f72b4e1c81d866d2932','0','2','0'), ('50127','20','get[1.3.6.1.4.1.6141.2.60.1.1.1.2.1.3.1]','10671','Hardware version (revision)','system.hw.version','1h','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: WWP-LEOS-BLADE-MIB The hardware version of the product.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0cdb06e8f6ac4b33a47bdce499465efa','0','2','0'), ('50128','20','get[1.3.6.1.2.1.1.6.0]','10671','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Physical location of the node (e.g., `equipment room`, `3rd floor`). If not provided, the value is a zero-length string.','24','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','06e7d638c8094542bf7773abadc0c2b4','0','2','0'), ('50129','20','get[1.3.6.1.2.1.1.5.0]','10671','System name','system.name','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB An administratively-assigned name for this managed node.By convention, this is the node''s fully-qualified domain name. If the name is unknown, the value is the zero-length string.','3','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','cb271362beb143ec866e7cb0d58a27ca','0','2','0'), ('50130','20','get[1.3.6.1.2.1.1.3.0]','10671','Uptime (network)','system.net.uptime[sysUpTime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ae5500f046e04d16b3f6a44f4ccdcf7d','0','2','0'), ('50131','20','get[1.3.6.1.2.1.1.2.0]','10671','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB The vendor''s authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box'' is being managed. For example, if vendor`Flintstones, Inc.'' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router''.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','206707cf6c124a63a8dd231acb7f2995','0','2','0'), ('50132','20','walk[1.3.6.1.4.1.6141.2.60.11.1.1.3.1.1]','10671','SNMP walk PSU','system.psu.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: WWP-LEOS-CHASSIS-MIB Used for discovering the system power supply.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6ff62d92f45f48bdbd901276795b0bbc','0','2','0'), ('50133','20','walk[1.3.6.1.4.1.6141.2.60.11.1.1.5.1.1]','10671','SNMP walk temperature sensors','system.temperature.sensor.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: WWP-LEOS-CHASSIS-MIB Used for discovering system temperature sensors.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e06e318827b048b7970f6107adc3b68d','0','2','0'), ('50134','5','','10671','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'1436','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3b910a6ecf254672a5fd216e51348705','0','2','0'), ('50178','5','','10048','Zabbix preprocessing','zabbix[preprocessing]','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The master item of Zabbix server''s preprocessing statistics.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','04c6d40c682d49c996f0ec986fb6b73d','0','2','0'), ('50210','20','walk[1.3.6.1.2.1.25.3.2.1.2, 1.3.6.1.2.1.25.3.2.1.3, 1.3.6.1.2.1.25.3.2.1.5, 1.3.6.1.2.1.25.3.3.1.2]','10672','SNMP walk host devices','devices.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Scanning `HOST-RESOURCES-MIB::hrDeviceTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e61652a7ede744b886289e3b30c50078','0','2','0'), ('50211','3','','10672','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'1441','','','0','','','','','0',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9cd55fc0774c4f2fbf6e7c68736b3758','0','2','0'), ('50212','3','','10672','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c23f857d5a784a2eb38bfd4c3b74886e','0','2','0'), ('50213','3','','10672','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3c7668cbcf6f41ffab596e9598a511ad','0','2','0'), ('50214','20','walk[1.3.6.1.2.1.2.2.1.2, 1.3.6.1.2.1.2.2.1.3, 1.3.6.1.2.1.2.2.1.7, 1.3.6.1.2.1.2.2.1.8, 1.3.6.1.2.1.2.2.1.13, 1.3.6.1.2.1.2.2.1.14, 1.3.6.1.2.1.2.2.1.19, 1.3.6.1.2.1.2.2.1.20, 1.3.6.1.2.1.31.1.1.1.1, 1.3.6.1.2.1.31.1.1.1.6, 1.3.6.1.2.1.31.1.1.1.10, 1.3.6.1.2.1.31.1.1.1.15, 1.3.6.1.2.1.31.1.1.1.18]','10672','SNMP walk network interfaces','net.if.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: IF-MIB Scanning `IF-MIB::ifTable` and `IF-MIB::ifXTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','180899a053a14a40897ad12d588fb9cf','0','2','0'), ('50215','17','','10672','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','hh:mm:sszyyyy/MM/dd',NULL,NULL,'','','0','','','','','0',NULL,'The item is used to collect all SNMP traps unmatched by other `snmptrap` items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c140911664a54b09b7bb46770128a613','0','2','0'), ('50216','20','walk[1.3.6.1.2.1.25.2.3.1.2, 1.3.6.1.2.1.25.2.3.1.3, 1.3.6.1.2.1.25.2.3.1.5, 1.3.6.1.2.1.25.2.3.1.6]','10672','SNMP walk storage','storage.walk','1m','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Scanning `HOST-RESOURCES-MIB::hrStorageTable`.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','13a09af7f2b74335a3bf94c05a5ae0d7','0','2','0'), ('50217','20','get[1.3.6.1.2.1.1.4.0]','10672','System contact','system.contact[sysContact.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB System contact details.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c4b99f49ebff4f5aaf035e5c6566a45f','0','2','0'), ('50218','20','get[1.3.6.1.2.1.1.1.0]','10672','System description','system.descr[sysDescr.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB System description.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5fd7949bead24697bdfb88fdb3953be8','0','2','0'), ('50219','20','get[1.3.6.1.2.1.1.6.0]','10672','System location','system.location[sysLocation.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB System contact details.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b54bd244a7d64bc98343ad93d515f3de','0','2','0'), ('50220','20','get[1.3.6.1.4.1.2021.4.14.0]','10672','Memory (buffers)','system.memory.buffers[memBuffer.0]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB The total amount of real or virtual memory currently allocated for use as memory buffers.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1f5d87c99d0245f7a98e4c855f0d6052','0','2','0'), ('50221','20','get[1.3.6.1.4.1.2021.4.15.0]','10672','Memory (cached)','system.memory.cached[memCached.0]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB The total amount of real or virtual memory currently allocated for use as cached memory.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d9f5d6d581254c2998a087e7ec8e5829','0','2','0'), ('50222','20','get[1.3.6.1.4.1.2021.4.6.0]','10672','Free memory','system.memory.free[memAvailReal.0]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB The amount of real/physical memory currently unused or available.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','9f7482d89ecd40a4904db6c11624ced3','0','2','0'), ('50223','20','get[1.3.6.1.4.1.2021.4.5.0]','10672','Total memory','system.memory.total[memTotalReal.0]','1m','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB The total amount of real/physical memory installed on this host.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','aac219c55e614915baac6e382945b231','0','2','0'), ('50224','15','','10672','Memory utilization, %','system.memory.util','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//system.memory.total[memTotalReal.0]) - (last(//system.memory.free[memAvailReal.0]) + last(//system.memory.buffers[memBuffer.0]) + last(//system.memory.cached[memCached.0]))) / last(//system.memory.total[memTotalReal.0]) * 100','','0','','','','','0',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5713761897054b199b11516654b8d3f5','0','2','0'), ('50225','20','get[1.3.6.1.2.1.1.5.0]','10672','System name','system.name[sysName.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB System name.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','24e4f749136e43d39df31ffac86adc31','0','2','0'), ('50226','20','get[1.3.6.1.2.1.1.2.0]','10672','System object ID','system.objectid[sysObjectID.0]','15m','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: SNMPv2-MIB System object ID.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','64bfceeb04de48c99749ded0d63cd39d','0','2','0'), ('50227','20','get[1.3.6.1.2.1.25.1.1.0]','10672','Uptime (hardware)','system.uptime.hardware[hrSystemUptime.0]','30s','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The amount of time since this host was last initialized. Note that this is different from `sysUpTime` in the SNMPv2-MIB [RFC1907] because `sysUpTime` is the uptime of the network management portion of the system.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b8654c54a80f42778237a3c4eff8d3bd','0','2','0'), ('50228','20','get[1.3.6.1.2.1.1.3.0]','10672','Uptime (network)','system.uptime.network[sysUpTimeInstance]','1m','31d','365d','0','0','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: DISMAN-EVENT-MIB Time (in hundredths of a second) since the network management portion of the system was last re-initialized.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','539e2a396aae4d2bafbc6f7b9b8822d4','0','2','0'), ('50229','5','','10672','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'1438','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','39a6adfd468e45309efe3b0eb7e18202','0','2','0'), ('50233','15','','10672','Storage [{#STORAGE_NAME}]: Storage utilization, %','storage.size.percent[hrStorageUsed.{#SNMPINDEX}]','1m','31d','365d','0','0','','%','','',NULL,NULL,'(last(//storage.used[hrStorageUsed.{#SNMPINDEX}]) / last(//storage.size[hrStorageSize.{#SNMPINDEX}])) * 100','','0','','','','','2',NULL,'','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','1ee68cea0fed47da831652d3de011532','0','2','0'), ('50247','20','get[1.3.6.1.4.1.11256.1.12.1.23.0]','10673','ASQ TCP connection count','asq.alarm.stateful.tcp[snsASQStatsStatefulTcpConn.0]','{$SNS.SNMP.INTERVAL}','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: STORMSHIELD-ASQ-STATS-MIB ASQ stateful TCP connection count.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3b54cafc125347c1987be674fd38d01c','0','2','0'), ('50248','20','get[1.3.6.1.4.1.11256.1.12.1.33.0]','10673','ASQ UDP connection count','asq.alarm.stateful.udp[snsASQStatsStatefulUdpConn.0]','{$SNS.SNMP.INTERVAL}','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: STORMSHIELD-ASQ-STATS-MIB ASQ stateful UDP connection count.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','8ecf661fe8904c41a03ea2153ae10622','0','2','0'), ('50249','20','get[1.3.6.1.4.1.11256.1.12.1.12.0]','10673','ASQ major alarm count','asq.alarm.stateful[snsASQStatsStatefulMajorAlarm.0]','{$SNS.SNMP.INTERVAL}','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: STORMSHIELD-ASQ-STATS-MIB ASQ major alarm count.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d5045cd3a7714e8088b7cdc5dbf55a36','0','2','0'), ('50250','20','get[1.3.6.1.4.1.11256.1.12.1.11.0]','10673','ASQ minor alarm count','asq.alarm.stateful[snsASQStatsStatefulMinorAlarm.0]','{$SNS.SNMP.INTERVAL}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: STORMSHIELD-ASQ-STATS-MIB ASQ minor alarm count.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','6c18d83d5cdf463c94f587295b416291','0','2','0'), ('50251','20','get[1.3.6.1.4.1.11256.1.11.6.0]','10673','HA: Faulty HA links','ha.links.faulty[snsNbFaultyHALinks.0]','{$SNS.SNMP.INTERVAL}','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: STORMSHIELD-HA-MIB Number of faulty HA links.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fc06ecf1f0f74692a43bdf15b569ffcd','0','2','0'), ('50252','20','get[1.3.6.1.4.1.11256.1.11.3.0]','10673','HA: Active firewalls','ha.node.active[snsNbActiveNode.0]','{$SNS.SNMP.INTERVAL}','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: STORMSHIELD-HA-MIB Number of active firewalls.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0e0ce46444494ec08d2217ca8cf4f304','0','2','0'), ('50253','20','get[1.3.6.1.4.1.11256.1.11.1.0]','10673','HA: Firewalls in the cluster','ha.node.count[snsNbNode.0]','{$SNS.SNMP.INTERVAL}','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: STORMSHIELD-HA-MIB Number of firewalls in the HA cluster.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','95e8d34b1bc9469f8eaa82c86b6be35a','0','2','0'), ('50254','20','get[1.3.6.1.4.1.11256.1.11.2.0]','10673','HA: Firewalls not replying','ha.node.dead[snsNbDeadNode.0]','{$SNS.SNMP.INTERVAL}','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: STORMSHIELD-HA-MIB Number of firewalls registered in the HA cluster but not replying.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','a9a90c5a38914dfbbd07441a0e5ee711','0','2','0'), ('50255','20','get[1.3.6.1.4.1.11256.1.11.8.0]','10673','HA: Synchronization status','ha.sync.status[snsHASyncStatus.0]','{$SNS.SNMP.INTERVAL}','31d','365d','0','3','','','','',NULL,'1447','','','0','','','','','0',NULL,'MIB: STORMSHIELD-HA-MIB Firewall configuration synchronization status: 1: Synced, 0: Not synced, -1: Unknown/Error.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','dd16514bb5114dd5bee0686bd23f107c','0','2','0'), ('50256','15','','10673','Available memory','host.memory.available','1m','31d','365d','0','0','','B','','',NULL,NULL,'(last(//host.memory.buffer[memBuffer.0]))+(last(//host.memory.cached[memCached.0]))+(last(//host.memory.free[memAvailReal.0]))','','0','','','','','0',NULL,'Available memory in bytes (Available = Free + Cached + Buffer).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','34d96118f6a64fb2aa9a5a042e00ad7c','0','2','0'), ('50257','20','get[1.3.6.1.4.1.2021.4.14.0]','10673','Buffer memory','host.memory.buffer[memBuffer.0]','{$SNS.SNMP.INTERVAL}','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB Buffer memory in bytes.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b2b597c8671b450c807423a9982efdb1','0','2','0'), ('50258','20','get[1.3.6.1.4.1.2021.4.15.0]','10673','Cached memory','host.memory.cached[memCached.0]','{$SNS.SNMP.INTERVAL}','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB Cached memory in bytes.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','81305b3e1e1340c1b22b8d15d7c0771f','0','2','0'), ('50259','20','get[1.3.6.1.4.1.2021.4.6.0]','10673','Free memory','host.memory.free[memAvailReal.0]','{$SNS.SNMP.INTERVAL}','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB Free memory in bytes.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','98722552df3840e4947f102c0df6b46e','0','2','0'), ('50260','20','get[1.3.6.1.4.1.2021.4.5.0]','10673','Total memory','host.memory.total[memTotalReal.0]','{$SNS.SNMP.INTERVAL}','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB Total physical memory (RAM) installed in bytes.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','d3c0c7c5bc54493398327d0d6b5f546a','0','2','0'), ('50261','15','','10673','Used memory','host.memory.used','1m','31d','365d','0','0','','B','','',NULL,NULL,'(last(//host.memory.total[memTotalReal.0]))-(last(//host.memory.available))','','0','','','','','0',NULL,'Used memory in bytes.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5a51165096db494ba71c909aa04528be','0','2','0'), ('50262','15','','10673','Memory utilization','host.memory.utilization','1m','31d','365d','0','3','','%','','',NULL,NULL,'(last(//host.memory.used)/last(//host.memory.total[memTotalReal.0]))*100','','0','','','','','0',NULL,'Memory utilization in %.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','c5cab917e3834f4691b8961bc8d7156d','0','2','0'), ('50263','3','','10673','ICMP ping','icmpping','1m','31d','365d','0','3','','','','',NULL,'1443','','','0','','','','','0',NULL,'Host accessibility by ICMP. 0 - ICMP ping failed. 1 - ICMP ping successful.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3d1ab35757d446a3931e8104089e014d','0','2','0'), ('50264','3','','10673','ICMP loss','icmppingloss','1m','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of lost packets.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f2aabf4cde2d4f109e2de2b7c2db3db8','0','2','0'), ('50265','3','','10673','ICMP response time','icmppingsec','1m','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'ICMP ping response time (in seconds).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','67b9296c12284844844ac2da201946d3','0','2','0'), ('50266','20','get[1.3.6.1.4.1.11256.1.13.1.1.0]','10673','VPN: Incoming policies','ipsec.policies.in[snsIPSECStatsSPDIn.0]','{$SNS.SNMP.INTERVAL}','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: STORMSHIELD-IPSEC-STATS-MIB Number of incoming security policies.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','ef452e74af2e470bb5f5eea1b6180567','0','2','0'), ('50267','20','get[1.3.6.1.4.1.11256.1.13.1.2.0]','10673','VPN: Outgoing policies','ipsec.policies.out[snsIPSECStatsSPDOut.0]','{$SNS.SNMP.INTERVAL}','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: STORMSHIELD-IPSEC-STATS-MIB Number of outgoing security policies.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','0ca1adf24df84b67bfa7324885ccf3e4','0','2','0'), ('50268','20','get[1.3.6.1.4.1.11256.1.8.1.1.3.1]','10673','Active filtering policy name','policy.filter[snsPolicySlotName]','{$SNS.SNMP.INTERVAL}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: STORMSHIELD-POLICY-MIB Active filtering policy name.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e220854737454a1e80f0bfbb1064cfc4','0','2','0'), ('50269','20','get[1.3.6.1.4.1.11256.1.8.1.1.3.2]','10673','Active IPsec policy name','policy.ipsec[snsPolicySlotNameIPsec]','{$SNS.SNMP.INTERVAL}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: STORMSHIELD-POLICY-MIB Active IPsec policy name.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','7c2bc4cbe7384538bb15a479a2b73151','0','2','0'), ('50270','20','get[1.3.6.1.4.1.11256.1.0.1.0]','10673','Model','property.hardware.model[snsModel.0]','{$SNS.SNMP.INTERVAL}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: STORMSHIELD-PROPERTY-MIB Firewall model.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e4c3c5803ec2484e92abd589798b5c69','0','2','0'), ('50271','20','get[1.3.6.1.4.1.11256.1.18.4.0]','10673','System name','property.hardware.name[snsSystemName.0]','{$SNS.SNMP.INTERVAL}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: STORMSHIELD-PROPERTY-MIB Stormshield Firewall system name.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','079208ed1d684585863ab7f142b6e70d','0','2','0'), ('50272','20','get[1.3.6.1.4.1.11256.1.18.16.0]','10673','System node name','property.hardware.node_name[snsSystemNodeName.0]','{$SNS.SNMP.INTERVAL}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: STORMSHIELD-PROPERTY-MIB Stormshield Firewall system node name.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2ff5ef13ef154f56b4ab1b964afe17b7','0','2','0'), ('50273','20','get[1.3.6.1.4.1.11256.1.0.3.0]','10673','Serial number','property.hardware.serial[snsSerialNumber.0]','{$SNS.SNMP.INTERVAL}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: STORMSHIELD-PROPERTY-MIB Stormshield Firewall serial number.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','437da1f0d02849569ef252800b95ff53','0','2','0'), ('50274','20','get[1.3.6.1.4.1.11256.1.0.2.0]','10673','Version','property.hardware.version[snsVersion.0]','{$SNS.SNMP.INTERVAL}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: STORMSHIELD-PROPERTY-MIB Stormshield Firewall version.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e80718fcb8534828abc87998911931cd','0','2','0'), ('50275','17','','10673','SNMP traps (fallback)','snmptrap.fallback','0','31d','0','0','2','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Used for collecting all SNMP traps unmatched by other `snmptrap` items.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2582b2562a514db782e2eaf71c81ac93','0','2','0'), ('50276','20','walk[1.3.6.1.4.1.11256.1.10.7.1]','10673','SNMP walk CPU temperature','sns.cpu.temp.walk','{$SNS.SNMP.INTERVAL}','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Used for discovering CPU temperature from the Stormshield MIB.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','af3ce032c24e4f55b86e98ad2a5e7726','0','2','0'), ('50277','20','walk[1.3.6.1.2.1.25.3.3.1]','10673','SNMP walk CPU usage','sns.cpu.usage.walk','{$SNS.SNMP.INTERVAL}','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Used for discovering CPU usage from the HOST-RESOURCES-MIB.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','95ccc4d528f74321bafa41b5e575b458','0','2','0'), ('50278','20','walk[1.3.6.1.4.1.11256.1.10.5.1]','10673','SNMP walk disk','sns.disk.walk','{$SNS.SNMP.INTERVAL}','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Used for discovering disks from the Stormshield MIB.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','deab9f5bf0ee4e3bbfc9a3238d1aa04a','0','2','0'), ('50279','20','walk[1.3.6.1.4.1.11256.1.10.9.1]','10673','SNMP walk fan','sns.fan.walk','{$SNS.SNMP.INTERVAL}','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Used for discovering fans from the Stormshield MIB.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4fe3286ec83043818baada4d5db6b264','0','2','0'), ('50280','20','walk[1.3.6.1.4.1.11256.1.11.7.1]','10673','SNMP walk HA members','sns.ha.members.walk','{$SNS.SNMP.INTERVAL}','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Used for discovering HA members from the Stormshield MIB.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','f54b159bee384956ab4f92af6f5ce947','0','2','0'), ('50281','20','walk[1.3.6.1.4.1.11256.1.16.2.1]','10673','SNMP walk health','sns.health.walk','{$SNS.SNMP.INTERVAL}','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Used for discovering health status from the Stormshield MIB.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e7492893d8ff4bf7981a3fe6ee4f8ddc','0','2','0'), ('50282','20','walk[1.3.6.1.4.1.11256.1.10.10.1]','10673','SNMP walk memory','sns.memory.util.walk','{$SNS.SNMP.INTERVAL}','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Used for discovering system memory utilization from the STORMSHIELD-SYSTEM-MONITOR-MIB.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','4ee4c13cd9fa482faecf88f67eed0dc2','0','2','0'), ('50283','20','walk[1.3.6.1.4.1.11256.1.4.1.1]','10673','SNMP walk network interfaces','sns.net.if.walk','{$SNS.SNMP.INTERVAL}','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Used for discovering network interfaces from the Stormshield MIB.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','70868b549569460b8e293a2c20123779','0','2','0'), ('50284','20','walk[1.3.6.1.4.1.11256.1.10.6.1]','10673','SNMP walk power supply','sns.psu.walk','{$SNS.SNMP.INTERVAL}','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Used for discovering the power supply from the Stormshield MIB.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','df01ada741ee489cad6282fce353b660','0','2','0'), ('50285','20','walk[1.3.6.1.2.1.25.2.3.1.2,1.3.6.1.2.1.25.2.3.1.3,1.3.6.1.2.1.25.2.3.1.5,1.3.6.1.2.1.25.2.3.1.6]','10673','SNMP walk storage','sns.storage.walk','{$SNS.SNMP.INTERVAL}','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Used for discovering storage from the HOST-RESOURCES-MIB.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','2296efb070324644bd699e1d1f96c262','0','2','0'), ('50286','20','walk[1.3.6.1.4.1.11256.1.9.1.1]','10673','SNMP walk autoupdate','sns.update.auto.walk','{$SNS.SNMP.INTERVAL}','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Used for discovering updates from the Stormshield MIB.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','5d468c2d00d84fb39ba8f03e6c89c7a5','0','2','0'), ('50287','20','get[1.3.6.1.4.1.11256.1.10.1.0]','10673','Date','system.date[snsDate.0]','{$SNS.SNMP.INTERVAL}','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: STORMSHIELD-SYSTEM-MONITOR-MIB Stormshield Firewall current date (%Y-%m-%d %T).','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','921c52d6d3884b10bdd3f3fa73c392d8','0','2','0'), ('50288','20','get[1.3.6.1.4.1.11256.1.10.2.0]','10673','Uptime','system.hardware.uptime[snsUptime.0]','{$SNS.SNMP.INTERVAL}','31d','365d','0','0','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: STORMSHIELD-SYSTEM-MONITOR-MIB Stormshield Firewall uptime.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','e48ced68e7584aeaacde9995d8d0c634','0','2','0'), ('50289','20','get[1.3.6.1.4.1.11256.1.13.2.4.0]','10673','VPN: Number of dead VPN tunnels','vpn.tunnel.dead[snsIPSECStatsSADDead.0]','{$SNS.SNMP.INTERVAL}','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: STORMSHIELD-IPSEC-STATS-MIB Number of dead security associations.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','b079600b3bbe455c9b64ac1a474a4c9a','0','2','0'), ('50290','20','get[1.3.6.1.4.1.11256.1.13.2.3.0]','10673','VPN: Number of dying VPN tunnels','vpn.tunnel.dying[snsIPSECStatsSADDying.0]','{$SNS.SNMP.INTERVAL}','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: STORMSHIELD-IPSEC-STATS-MIB Number of security associations at end of life.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','277fd3430bff4ee79d61a2b87609d075','0','2','0'), ('50291','20','get[1.3.6.1.4.1.11256.1.13.2.2.0]','10673','VPN: Number of mature VPN tunnels','vpn.tunnel.mature[snsIPSECStatsSADMature.0]','{$SNS.SNMP.INTERVAL}','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: STORMSHIELD-IPSEC-STATS-MIB Number of established security associations.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','bd0aa23c91f74d8f98a479c106bc37c4','0','2','0'), ('50292','5','','10673','SNMP agent availability','zabbix[host,snmp,available]','1m','31d','365d','0','3','','','','',NULL,'1442','','','0','','','','','0',NULL,'Availability of SNMP checks on the host. The value of this item corresponds to the availability icons in the host list. Possible values: 0 - not available 1 - available 2 - unknown.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','fdbf9cb6403846d98c6f9c3bd51a5c47','0','2','0'), ('50312','15','','10673','Storage [{#STORAGE_DESCR}]: Utilization','host.storage.utilization[.{#SNMPINDEX}]','1m','31d','365d','0','3','','%','','',NULL,NULL,'(last(//host.storage.used[hrStorageUseddata.{#SNMPINDEX}])/last(//host.storage.size[hrStorageSizedata.{#SNMPINDEX}]))*100','','0','','','','','2',NULL,'Memory utilization in %.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','3f24a44e6b194774af99b1570e9043b3','0','2','0'); INSERT INTO items (itemid,type,snmp_oid,hostid,name,key_,delay,history,trends,status,value_type,trapper_hosts,units,formula,logtimefmt,templateid,valuemapid,params,ipmi_sensor,authtype,username,password,publickey,privatekey,flags,interfaceid,description,inventory_link,lifetime,evaltype,jmx_endpoint,master_itemid,timeout,url,query_fields,posts,status_codes,follow_redirects,post_type,http_proxy,headers,retrieve_mode,request_method,output_format,verify_peer,verify_host,allow_traps,discover,uuid,lifetime_type,enabled_lifetime_type,enabled_lifetime) VALUES ('22867','18','','10074','Mounted filesystem discovery','vfs.fs.dependent.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The discovery of mounted filesystems with different types.','0','7d','1','','44447','','','','','200','1','0','','','0','0','0','0','0','0','0','feb02c707aa64b91a3b340aa5ef23de9','0','2','0'), ('22907','18','','10075','Mounted filesystem discovery','vfs.fs.dependent.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The discovery of mounted filesystems with different types.','0','7d','1','','44430','','','','','200','1','0','','','0','0','0','0','0','0','0','4fd60a606c6343e9a7d7808d1d1f6008','0','2','0'), ('22947','18','','10076','Mounted filesystem discovery','vfs.fs.dependent.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The discovery of mounted filesystems with different types.','0','7d','1','','44427','','','','','200','1','0','','','0','0','0','0','0','0','0','4a0b17decdf1449d9463cf00720a843d','0','2','0'), ('22987','18','','10077','Mounted filesystem discovery','vfs.fs.dependent.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The discovery of mounted filesystems with different types.','0','7d','1','','44433','','','','','200','1','0','','','0','0','0','0','0','0','0','883b3a5efab34685b9e6c9a84a6bec84','0','2','0'), ('23027','18','','10078','Mounted filesystem discovery','vfs.fs.dependent.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The discovery of mounted filesystems with different types.','0','7d','1','','44450','','','','','200','1','0','','','0','0','0','0','0','0','0','3abf31160b404cf095daca79f2a03188','0','2','0'), ('23067','18','','10079','Mounted filesystem discovery','vfs.fs.dependent.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The discovery of mounted filesystems with different types. Note that the option to exclude dmg software images from discovery is available only with Zabbix agents 6.4 and higher.','0','7d','1','','44445','','','','','200','1','0','','','0','0','0','0','0','0','0','c537fbe006d7434dab08add1dcf87537','0','2','0'), ('27901','18','','10233','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45473','','','','','200','1','0','','','0','0','0','0','0','0','0','fb2a399dbdb54484a9f58ae2437c32fb','0','2','0'), ('27903','18','','10233','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45472','','','','','200','1','0','','','0','0','0','0','0','0','0','6bb65981928d40378a95ee74aff82cc5','0','2','0'), ('27904','18','','10233','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45473','','','','','200','1','0','','','0','0','0','0','0','0','0','560173245c8245128bc7071b8201fe12','0','2','0'), ('27907','18','','10233','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45472','','','','','200','1','0','','','0','0','0','0','0','0','0','64747345083e4b38b0e963ccd0b8271b','0','2','0'), ('27908','18','','10233','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45472','','','','','200','1','0','','','0','0','0','0','0','0','0','35034472b281453bbfbcf65b5d60dd7e','0','2','0'), ('28001','18','','10236','CPU Discovery','cpu.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering TPLINK-SYSMONITOR-MIB::tpSysMonitorCpuTable, displays the CPU utilization of all UNITs.','0','7d','0','','45479','','','','','200','1','0','','','0','0','0','0','0','0','0','5325de505855448a8c785066374ba201','0','2','0'), ('28002','18','','10236','Memory Discovery','memory.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering TPLINK-SYSMONITOR-MIB::tpSysMonitorMemoryTable, displays the memory utilization of all UNITs.','0','7d','0','','45478','','','','','200','1','0','','','0','0','0','0','0','0','0','7a3144453fc644b3bd42dec4ba843bef','0','2','0'), ('28003','18','','10236','#{#SNMPVALUE}: CPU utilization','system.cpu.util[tpSysMonitorCpu1Minute.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: TPLINK-SYSMONITOR-MIB Displays the CPU utilization in 1 minute. Reference: http://www.tp-link.com/faq-1330.html','0','30d','0','','45479','','','','','200','1','0','','','0','0','0','0','0','0','0','84929a905e144746b047a20bbfb7ae40','0','2','0'), ('28248','18','','10047','Preprocessing queue','zabbix[preprocessing_queue]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of values enqueued in the preprocessing queue.','0','30d','0','','49906','','','','','200','1','0','','','0','0','0','0','0','0','0','97485f6c9efb443caa54b44c15fdbfeb','0','2','0'), ('28306','18','','10254','Temperature discovery','temp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'ENTITY-SENSORS-MIB::EntitySensorDataType discovery with temperature filter','0','7d','1','','33181','','','','','200','1','0','','','0','0','0','0','0','0','0','50d834b15d7f4755b1ff89ddba90fa4d','0','2','0'), ('28307','18','','10254','Fan discovery','fan.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'ENTITY-SENSORS-MIB::EntitySensorDataType discovery with rpm filter','0','7d','2','','33181','','','','','200','1','0','','','0','0','0','0','0','0','0','c78a9f82601847338d687ed01577e958','0','2','0'), ('28348','18','','10255','PSU discovery','psu.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'PSU discovery.','0','7d','0','','49057','','','','','200','1','0','','','0','0','0','0','0','0','0','3b12e8ba10224c88beb37095667b43ef','0','2','0'), ('28349','18','','10255','Fan discovery','fan.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Fan discovery.','0','7d','0','','49045','','','','','200','1','0','','','0','0','0','0','0','0','0','65ac153aa776405893283dfc8903d7a5','0','2','0'), ('28350','18','','10255','Physical disk discovery','physicaldisk.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Physical disk discovery.','0','7d','0','','49043','','','','','200','1','0','','','0','0','0','0','0','0','0','1656c264e78a46bc8371f458f506ce47','0','2','0'), ('28351','18','','10255','Virtual disk discovery','virtualdisk.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Virtual disk discovery.','0','7d','0','','49044','','','','','200','1','0','','','0','0','0','0','0','0','0','92889d639cca4213a4840b2b2226df50','0','2','0'), ('28542','18','','10261','History index cache, % used','wcache.index.pused','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The percentage of used history index buffer. The history index cache is used to index values stored in the history cache.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','b1add70210a44b668f06cc3e062173ad','0','2','0'), ('28543','18','','10261','Configuration cache, % used','rcache.buffer.pused','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The availability statistics of Zabbix configuration cache. The percentage of used data buffer.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','750964513e1d44d7b138980d6cac2188','0','2','0'), ('28544','18','','10261','Value cache, % used','vcache.buffer.pused','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The availability statistics of Zabbix value cache. The percentage of used data buffer.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','9f9d8d1fcd08498698e37b5889502b47','0','2','0'), ('28545','18','','10261','Value cache hits','vcache.cache.hits','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The effectiveness statistics of Zabbix value cache. The number of cache hits (history values taken from the cache).','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','9bd0079126974bf2a61f552de2cdf880','0','2','0'), ('28546','18','','10261','Value cache misses','vcache.cache.misses','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The effectiveness statistics of Zabbix value cache. The number of cache misses (history values taken from the database).','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','e8c372778d4e434e98d3fba5ea603a50','0','2','0'), ('28547','18','','10261','Value cache operating mode','vcache.cache.mode','0','31d','365d','0','3','','!vps','','',NULL,'56','','','0','','','','','0',NULL,'The operating mode of the value cache.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','1a1daeb7267f4ed4bf75c70699d487b6','0','2','0'), ('28548','18','','10261','VMware cache, % used','vmware.buffer.pused','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The availability statistics of Zabbix vmware cache. The percentage of used data buffer.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','9e2b2133916e4ce29ed4e9ca07c74123','0','2','0'), ('28549','18','','10261','History write cache, % used','wcache.history.pused','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The percentage of used history buffer. The history cache is used to store item values. A high number indicates database performance problems.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','98f47a07e2ba4294a9eb2aa1df2ba9f3','0','2','0'), ('28550','18','','10261','Number of processed values per second','wcache.values','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The total number of values processed by Zabbix server or Zabbix proxy, except unsupported items.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','34fe014843974248a98a45596ce43e1a','0','2','0'), ('28551','18','','10261','Trend write cache, % used','wcache.trend.pused','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The percentage of used trend buffer. The trend cache stores the aggregate of all items that have received data for the current hour.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','1f79208bb2ec4e4eb26e6e1b95c3635e','0','2','0'), ('28552','18','','10261','Utilization of unreachable poller data collector processes, in %','process.unreachable_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the unreachable poller processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','8d43954f6b9843009353c560a4f84157','0','2','0'), ('28553','18','','10261','Number of processed numeric (float) values per second','wcache.values.float','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed numeric (float) values.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','206f4fcb1e6d4e468a172e330f56b8aa','0','2','0'), ('28554','18','','10261','Number of processed log values per second','wcache.values.log','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed log values.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','e2f3dc320d54446b80862eabe6fa0be5','0','2','0'), ('28555','18','','10261','Number of processed not supported values per second','wcache.values.not_supported','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of times the item processing resulted in an item becoming unsupported or remaining in that state.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','82e088caf6e14c1cab700ad7fcc96263','0','2','0'), ('28556','18','','10261','Number of processed character values per second','wcache.values.str','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed character values.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','99415cd1920a4e7f8b99f3c71e7eba97','0','2','0'), ('28557','18','','10261','Number of processed text values per second','wcache.values.text','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed text values.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','7172378f31a44a36a095a2c2afed763b','0','2','0'), ('28558','18','','10261','Number of processed numeric (unsigned) values per second','wcache.values.uint','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed numeric (unsigned) values.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','7865ba7a928945f4a148acf623b72537','0','2','0'), ('28559','18','','10261','Utilization of vmware collector data collector processes, in %','process.vmware_collector.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the vmware collector processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','9f02a181362b42b882d869353fae93ce','0','2','0'), ('28560','18','','10261','Preprocessing queue','preprocessing_queue','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of values enqueued in the preprocessing queue.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','9881f258f69d459195b5a19c56c523a8','0','2','0'), ('28561','18','','10261','Utilization of alerter internal processes, in %','process.alerter.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the alerter processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','d8071d9c280c468cb70b19be50c756a5','0','2','0'), ('28562','18','','10261','Utilization of ipmi manager internal processes, in %','process.ipmi_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the ipmi manager processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','52a05106bc5e4e05b04142827f394662','0','2','0'), ('28563','18','','10261','Utilization of alert manager internal processes, in %','process.alert_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the alert manager processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','14347f8309934849a2ac13974e4b66d1','0','2','0'), ('28564','18','','10261','Utilization of configuration syncer internal processes, in %','process.configuration_syncer.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the configuration syncer processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','439e81aed41e4fd7ba7f2e4a97ca1a91','0','2','0'), ('28566','18','','10261','Utilization of escalator internal processes, in %','process.escalator.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the escalator processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','d8110a23217142b9b10f2eda00a96f39','0','2','0'), ('28567','18','','10261','Utilization of history syncer internal processes, in %','process.history_syncer.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the history syncer processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','2b651866c6f04880888a770e9a08a167','0','2','0'), ('28568','18','','10261','Utilization of housekeeper internal processes, in %','process.housekeeper.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the housekeeper processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','8eb5b40740a349fbb14ed39dd840fc85','0','2','0'), ('28569','18','','10261','Utilization of http poller data collector processes, in %','process.http_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the http poller processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','02371dc53214403dbf34ff9e970408ef','0','2','0'), ('28570','18','','10261','Utilization of icmp pinger data collector processes, in %','process.icmp_pinger.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the icmp pinger processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','3a2dfedfac164b69a01105137eefd5e9','0','2','0'), ('28571','18','','10261','Utilization of ipmi poller data collector processes, in %','process.ipmi_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the ipmi poller processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','849f8b11cc984c758c4947fe256e3310','0','2','0'), ('28572','18','','10261','Utilization of timer internal processes, in %','process.timer.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the timer processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','105eae2d56d34d91b540f93009a575aa','0','2','0'), ('28573','18','','10261','Utilization of java poller data collector processes, in %','process.java_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the java poller processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','e55654715f8143c597c858d7eb522e31','0','2','0'), ('28574','18','','10261','Utilization of poller data collector processes, in %','process.poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the poller processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','61df12fa054b46f4b50596807dbc90c3','0','2','0'), ('28575','18','','10261','Utilization of preprocessing manager internal processes, in %','process.preprocessing_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the preprocessing manager processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','42e9efb8e5e54b26b84372dc53e823b3','0','2','0'), ('28576','18','','10261','Utilization of preprocessing worker internal processes, in %','process.preprocessing_worker.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the preprocessing worker processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','90bd4b46d63845b98a2c430aac157ea5','0','2','0'), ('28577','18','','10261','Utilization of proxy poller data collector processes, in %','process.proxy_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the proxy poller processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','4c5eb5acc8a447afa47d732988dafbd9','0','2','0'), ('28578','18','','10261','Utilization of self-monitoring internal processes, in %','process.self-monitoring.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the self-monitoring processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','044bb995bcae42568979fd958383fc60','0','2','0'), ('28579','18','','10261','Utilization of snmp trapper data collector processes, in %','process.snmp_trapper.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the snmp trapper processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','643036d74a10414f94dc357efbbd42b2','0','2','0'), ('28580','18','','10261','Utilization of task manager internal processes, in %','process.task_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the task manager processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','7fad0515db154228b5baabb51d647a9f','0','2','0'), ('28581','18','','10261','Utilization of trapper data collector processes, in %','process.trapper.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the trapper processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','9c90b3a087e1495caa17a00bebb70145','0','2','0'), ('28582','18','','10261','Utilization of LLD manager internal processes, in %','process.lld_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the LLD manager processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','b8504e03317649399dabfffc2758d77c','0','2','0'), ('28583','18','','10261','Utilization of LLD worker internal processes, in %','process.lld_worker.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the LLD worker processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','c4d708a59d314de6814f4936ec6b0a99','0','2','0'), ('28584','18','','10261','LLD queue','lld_queue','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of values enqueued in the low-level discovery processing queue.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','adcf44e5179644b0bee34103d3d3688e','0','2','0'), ('28588','18','','10262','Utilization of vmware collector data collector processes, in %','process.vmware_collector.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the vmware collector processes have been busy for the last minute.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','54d7e2578b594022ad406b40c9dd57fe','0','2','0'), ('28589','18','','10262','Number of processed numeric (unsigned) values per second','wcache.values.uint','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed numeric (unsigned) values.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','c53f480b861249c4a1ca12571faa4487','0','2','0'), ('28590','18','','10262','Number of processed text values per second','wcache.values.text','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed text values.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','35b053f8ce89430b989387eb3075b582','0','2','0'), ('28591','18','','10262','Number of processed character values per second','wcache.values.str','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed character values.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','334584cfea704011b8ae70436e47e2ff','0','2','0'), ('28592','18','','10262','Number of processed not supported values per second','wcache.values.not_supported','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of times the item processing resulted in an item becoming unsupported or remaining in that state.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','927b1387d969466eba000855837887c7','0','2','0'), ('28593','18','','10262','Number of processed log values per second','wcache.values.log','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed log values.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','b20b00f97a424b8e9c69ebb749a94d65','0','2','0'), ('28594','18','','10262','Number of processed numeric (float) values per second','wcache.values.float','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed numeric (float) values.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','f20ff449693a479895b7f3b450b93787','0','2','0'), ('28595','18','','10262','Number of processed values per second','wcache.values','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The total number of values processed by Zabbix server or Zabbix proxy, except unsupported items.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','0238a93001a3438988b9b5cc4cbcc68e','0','2','0'), ('28596','18','','10262','History index cache, % used','wcache.index.pused','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The percentage of used history index buffer. The history index cache is used to index values stored in the history cache.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','a907ff2d6d8e4389b116eb3ec01dacfe','0','2','0'), ('28597','18','','10262','History write cache, % used','wcache.history.pused','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The percentage of used history buffer. The history cache is used to store item values. A high number indicates database performance problems.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','2abf18f2a9c9412ca81d615f45d4ca5f','0','2','0'), ('28598','18','','10262','VMware cache, % used','vmware.buffer.pused','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The availability statistics of Zabbix vmware cache. The percentage of used data buffer.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','7e6ffd55fe6842219f6e0d3c81ffa309','0','2','0'), ('28599','18','','10262','Configuration cache, % used','rcache.buffer.pused','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The availability statistics of Zabbix configuration cache. The percentage of used data buffer.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','72dd891d7ced4cefb7de988dadf81f3b','0','2','0'), ('28600','18','','10262','Utilization of configuration syncer internal processes, in %','process.configuration_syncer.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the configuration syncer processes have been busy for the last minute.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','457a086236ab40eda5c9758eabacb73d','0','2','0'), ('28601','18','','10262','Utilization of data sender internal processes, in %','process.data_sender.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the data sender processes have been busy for the last minute.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','ff9c1cb7fb234ad2b793c4f296b79834','0','2','0'), ('28602','18','','10262','Utilization of trapper data collector processes, in %','process.trapper.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the trapper processes have been busy for the last minute.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','d37a6ebb128d4221a34c8d78736ea90b','0','2','0'), ('28603','18','','10262','Utilization of task manager internal processes, in %','process.task_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the task manager processes have been busy for the last minute.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','48ab13daaf0541bdbf317226c753472c','0','2','0'), ('28604','18','','10262','Utilization of snmp trapper data collector processes, in %','process.snmp_trapper.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the snmp trapper processes have been busy for the last minute.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','3c06aed8f9ca4790b23132498e32701f','0','2','0'), ('28605','18','','10262','Utilization of self-monitoring internal processes, in %','process.self-monitoring.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the self-monitoring processes have been busy for the last minute.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','fbfe2a05b2914c9d8b1b39aa7320aaf3','0','2','0'), ('28606','18','','10262','Utilization of poller data collector processes, in %','process.poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the poller processes have been busy for the last minute.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','e44b8cc43d5c49c5a81ed33c5cc44c82','0','2','0'), ('28607','18','','10262','Utilization of java poller data collector processes, in %','process.java_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the java poller processes have been busy for the last minute.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','c37b027a671449dca92cfbf1b15e711f','0','2','0'), ('28608','18','','10262','Utilization of ipmi poller data collector processes, in %','process.ipmi_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the ipmi poller processes have been busy for the last minute.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','c4ff983246e7450f96af03da274df151','0','2','0'), ('28609','18','','10262','Utilization of ipmi manager internal processes, in %','process.ipmi_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the ipmi manager processes have been busy for the last minute.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','fb560cce51714f9c8b5164f7587930e5','0','2','0'), ('28610','18','','10262','Utilization of icmp pinger data collector processes, in %','process.icmp_pinger.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the icmp pinger processes have been busy for the last minute.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','f03927fd354a490e95521e5922a19ad3','0','2','0'), ('28611','18','','10262','Utilization of http poller data collector processes, in %','process.http_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the http poller processes have been busy for the last minute.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','4f335477bd654368a7870dc5cd21e114','0','2','0'), ('28612','18','','10262','Utilization of housekeeper internal processes, in %','process.housekeeper.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the housekeeper processes have been busy for the last minute.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','50c3587febc14c118ca2868c24e42770','0','2','0'), ('28613','18','','10262','Utilization of history syncer internal processes, in %','process.history_syncer.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the history syncer processes have been busy for the last minute.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','c710e445710b4d98bd4ebcd5770c7d5a','0','2','0'), ('28616','18','','10262','Utilization of unreachable poller data collector processes, in %','process.unreachable_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the unreachable poller processes have been busy for the last minute.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','a0c56d8570eb4cb39e119fc61d7092d1','0','2','0'), ('28617','18','','10048','Preprocessing queue','zabbix[preprocessing_queue]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of values enqueued in the preprocessing queue.','0','30d','0','','50178','','','','','200','1','0','','','0','0','0','0','0','0','0','0230306272c24858b49243ef1c61e2ec','0','2','0'), ('28778','18','','10265','Workers starting up','apache.workers.starting','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of workers in starting state.','0','30d','0','','28775','','','','','200','1','0','','','0','0','0','0','0','0','0','ae21ea113e8840349aff81ab582d92b4','0','2','0'), ('28779','18','','10265','Workers slot with no current process','apache.workers.slot','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of slots with no current process.','0','30d','0','','28775','','','','','200','1','0','','','0','0','0','0','0','0','0','1c90055e02a244fc8d18e73b23daa0f1','0','2','0'), ('28780','18','','10265','Workers sending reply','apache.workers.sending','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of workers in sending state.','0','30d','0','','28775','','','','','200','1','0','','','0','0','0','0','0','0','0','379ac66397b94463ad17b24fbd20c615','0','2','0'), ('28781','18','','10265','Workers reading request','apache.workers.reading','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of workers in reading state.','0','30d','0','','28775','','','','','200','1','0','','','0','0','0','0','0','0','0','78b0bd7d8bec49549fc003d460af9177','0','2','0'), ('28782','18','','10265','Workers logging','apache.workers.logging','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of workers in logging state.','0','30d','0','','28775','','','','','200','1','0','','','0','0','0','0','0','0','0','7fc0002a279b4541af569a03c1aca2ac','0','2','0'), ('28783','18','','10265','Workers keepalive (read)','apache.workers.keepalive','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of workers in `keepalive` state.','0','30d','0','','28775','','','','','200','1','0','','','0','0','0','0','0','0','0','cb81a6a77395444283bc5e065fcbfc2e','0','2','0'), ('28784','18','','10265','Workers idle cleanup','apache.workers.cleanup','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of workers in cleanup state.','0','30d','0','','28775','','','','','200','1','0','','','0','0','0','0','0','0','0','f74ffb92e30e48958b5b82f7dfbe5147','0','2','0'), ('28785','18','','10265','Workers finishing','apache.workers.finishing','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of workers in finishing state.','0','30d','0','','28775','','','','','200','1','0','','','0','0','0','0','0','0','0','fcf771f2a9b64a81a37db679f0494ed3','0','2','0'), ('28786','18','','10265','Workers closing connection','apache.workers.closing','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of workers in closing state.','0','30d','0','','28775','','','','','200','1','0','','','0','0','0','0','0','0','0','d664bee9a330480bbaee7273b871a8d3','0','2','0'), ('28787','18','','10265','Workers DNS lookup','apache.workers.dnslookup','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of workers in `dnslookup` state.','0','30d','0','','28775','','','','','200','1','0','','','0','0','0','0','0','0','0','a6fb3444585749be998ec840cd8e4511','0','2','0'), ('28788','18','','10265','Total workers idle','apache.workers_total.idle','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of idle worker threads/processes.','0','30d','0','','28775','','','','','200','1','0','','','0','0','0','0','0','0','0','b1b1c86a12964ae2813c63481e464ec7','0','2','0'), ('28789','18','','10265','Total workers busy','apache.workers_total.busy','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of busy worker threads/processes.','0','30d','0','','28775','','','','','200','1','0','','','0','0','0','0','0','0','0','1752b9bcf7b34abbaf105f5261638271','0','2','0'), ('28790','18','','10265','Version','apache.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The Apache service version.','0','30d','0','','28775','','','','','200','1','0','','','0','0','0','0','0','0','0','fe0de2eb1478482f99b38c13bd20564c','0','2','0'), ('28791','18','','10265','Uptime','apache.uptime','0','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The service uptime expressed in seconds.','0','30d','0','','28775','','','','','200','1','0','','','0','0','0','0','0','0','0','3dd8ba505d584b028c7ac08d8b959eb3','0','2','0'), ('28792','18','','10265','Total requests','apache.requests','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of the Apache server accesses.','0','30d','0','','28775','','','','','200','1','0','','','0','0','0','0','0','0','0','5fb5101de70a43fab50d55f418462255','0','2','0'), ('28793','18','','10265','Requests per second','apache.requests.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'It is calculated as a rate of change for the "Total requests" statistics. `ReqPerSec` is not used, as it counts the average since the last Apache server start.','0','30d','0','','28775','','','','','200','1','0','','','0','0','0','0','0','0','0','ee15f4958040459da53251cc3561ed39','0','2','0'), ('28794','18','','10265','Bytes per second','apache.bytes.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'It is calculated as a rate of change for total bytes statistics. `BytesPerSec` is not used, as it counts the average since the last Apache server start.','0','30d','0','','28775','','','','','200','1','0','','','0','0','0','0','0','0','0','b36010be10874cf188eeacc81f2c366f','0','2','0'), ('28795','18','','10265','Total bytes','apache.bytes','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total bytes served.','0','30d','0','','28775','','','','','200','1','0','','','0','0','0','0','0','0','0','b9fe6f0bbe174e9f81af84a3bc0b0e7c','0','2','0'), ('28796','18','','10265','Workers waiting for connection','apache.workers.waiting','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of workers in waiting state.','0','30d','0','','28775','','','','','200','1','0','','','0','0','0','0','0','0','0','be1a05a6eab84b64ac4d51c966ea91e8','0','2','0'), ('28797','18','','10265','Event MPM discovery','apache.mpm.event.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The discovery of additional metrics if the event Multi-Processing Module (MPM) is used. For more details see [Apache MPM event](https://httpd.apache.org/docs/current/mod/event.html).','0','7d','0','','28775','','','','','200','1','0','','','0','0','0','0','0','0','0','eee8abd3174d426092e8bca9b3ba982e','0','2','0'), ('28798','18','','10265','Connections async closing','apache.connections[async_closing{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of asynchronous connections in closing state (applicable only to the event MPM).','0','30d','0','','28775','','','','','200','1','0','','','0','0','0','0','0','0','0','062d7c941f0c468d8b63fa76ae0610f6','0','2','0'), ('28799','18','','10265','Connections async keepalive','apache.connections[async_keep_alive{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of asynchronous connections in keepalive state (applicable only to the event MPM).','0','30d','0','','28775','','','','','200','1','0','','','0','0','0','0','0','0','0','6cb8b255ad8343a48e622912bc298366','0','2','0'), ('28800','18','','10265','Connections async writing','apache.connections[async_writing{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of asynchronous connections in writing state (applicable only to the event MPM).','0','30d','0','','28775','','','','','200','1','0','','','0','0','0','0','0','0','0','997b3452aac24ad6afbad775d649c727','0','2','0'), ('28801','18','','10265','Connections total','apache.connections[total{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of total connections.','0','30d','0','','28775','','','','','200','1','0','','','0','0','0','0','0','0','0','31cb044eed904ca19150921fe36f3285','0','2','0'), ('28802','18','','10265','Bytes per request','apache.bytes[per_request{#SINGLETON}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The average number of client requests per second.','0','30d','0','','28775','','','','','200','1','0','','','0','0','0','0','0','0','0','f52700379f9a4ee8b378a2eb9caea070','0','2','0'), ('28803','18','','10265','Number of async processes','apache.process[num{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of asynchronous processes.','0','30d','0','','28775','','','','','200','1','0','','','0','0','0','0','0','0','0','34555340f3ad4b878504df188f54a9c9','0','2','0'), ('28811','18','','10266','Connections waiting','nginx.connections.waiting','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of idle client connections waiting for a request.','0','30d','0','','28804','','','','','200','1','0','','','0','0','0','0','0','0','0','d6cfa828ba344ffe948d8d985b849316','0','2','0'), ('28812','18','','10266','Connections writing','nginx.connections.writing','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of connections where Nginx is writing a response back to the client.','0','30d','0','','28804','','','','','200','1','0','','','0','0','0','0','0','0','0','c038a572f73f4a418ddcc5aeb8b0a547','0','2','0'), ('28813','18','','10266','Connections active','nginx.connections.active','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of active client connections including waiting connections.','0','30d','0','','28804','','','','','200','1','0','','','0','0','0','0','0','0','0','436f2dc87cda418eb8f19ed6910c7bd0','0','2','0'), ('28814','18','','10266','Connections reading','nginx.connections.reading','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of connections where Nginx is reading the request header.','0','30d','0','','28804','','','','','200','1','0','','','0','0','0','0','0','0','0','f5925c78389143c7924432483a5c716c','0','2','0'), ('28815','18','','10266','Connections handled per second','nginx.connections.handled.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of handled connections. Generally, the parameter value is the same as for the accepted connections, unless some resource limits have been reached (for example, the `worker_connections limit`).','0','30d','0','','28804','','','','','200','1','0','','','0','0','0','0','0','0','0','06191636a7104e1bb40d197493b80958','0','2','0'), ('28816','18','','10266','Connections dropped per second','nginx.connections.dropped.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of dropped client connections.','0','30d','0','','28804','','','','','200','1','0','','','0','0','0','0','0','0','0','4027e6db5e024aff98056faa2d4b43cd','0','2','0'), ('28817','18','','10266','Connections accepted per second','nginx.connections.accepted.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of accepted client connections.','0','30d','0','','28804','','','','','200','1','0','','','0','0','0','0','0','0','0','9e2be446ac79491c8be1bcd789392066','0','2','0'), ('28818','18','','10266','Requests per second','nginx.requests.total.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of client requests.','0','30d','0','','28804','','','','','200','1','0','','','0','0','0','0','0','0','0','2600a696278f490f86cadd8c8836f269','0','2','0'), ('28819','18','','10266','Requests total','nginx.requests.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of client requests.','0','30d','0','','28804','','','','','200','1','0','','','0','0','0','0','0','0','0','b28444fb9b834d03a72036882c80b921','0','2','0'), ('28820','18','','10266','Version','nginx.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','28804','','','','','200','1','0','','','0','0','0','0','0','0','0','3dcc81006977478f92be6dd040d66eb5','0','2','0'), ('28824','18','','10267','Requests total','nginx.requests.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of client requests.','0','30d','0','','28821','','','','','200','1','0','','','0','0','0','0','0','0','0','071b3d77324740a59045be19da231d76','0','2','0'), ('28825','18','','10267','Requests per second','nginx.requests.total.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of client requests.','0','30d','0','','28821','','','','','200','1','0','','','0','0','0','0','0','0','0','81b17056ec664f9f926a74ee390ab9c1','0','2','0'), ('28826','18','','10267','Connections accepted per second','nginx.connections.accepted.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of accepted client connections.','0','30d','0','','28821','','','','','200','1','0','','','0','0','0','0','0','0','0','e054b58ebbbe4b45961ba697b468ab9e','0','2','0'), ('28827','18','','10267','Connections dropped per second','nginx.connections.dropped.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of dropped client connections.','0','30d','0','','28821','','','','','200','1','0','','','0','0','0','0','0','0','0','eecc0e887a744627be7f3b01cec6d46e','0','2','0'), ('28828','18','','10267','Connections handled per second','nginx.connections.handled.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of handled connections. Generally, the parameter value is the same as for the accepted connections, unless some resource limits have been reached (for example, the `worker_connections limit`).','0','30d','0','','28821','','','','','200','1','0','','','0','0','0','0','0','0','0','a53cf4f2d2ad4a84a70ff57df6299adc','0','2','0'), ('28829','18','','10267','Connections active','nginx.connections.active','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of active client connections including waiting connections.','0','30d','0','','28821','','','','','200','1','0','','','0','0','0','0','0','0','0','2e4b049ab60947d9a05165f67388e531','0','2','0'), ('28830','18','','10267','Connections reading','nginx.connections.reading','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of connections where Nginx is reading the request header.','0','30d','0','','28821','','','','','200','1','0','','','0','0','0','0','0','0','0','73493cbf8508419a8fed3abff8cc5851','0','2','0'), ('28831','18','','10267','Connections waiting','nginx.connections.waiting','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of idle client connections waiting for a request.','0','30d','0','','28821','','','','','200','1','0','','','0','0','0','0','0','0','0','cf393814511a48b498da8aab94d7ca00','0','2','0'), ('28832','18','','10267','Connections writing','nginx.connections.writing','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of connections where Nginx is writing a response back to the client.','0','30d','0','','28821','','','','','200','1','0','','','0','0','0','0','0','0','0','b0d63efb16984042945fe42e192f7d4e','0','2','0'), ('28833','18','','10267','Version','nginx.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','28821','','','','','200','1','0','','','0','0','0','0','0','0','0','716b627d6d894ac2af3ae8c4aeaa8c0c','0','2','0'), ('29398','18','','10285','System local time','system.localtime[node_exporter]','0','31d','365d','0','0','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'The local system time of the host.','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','9fcb3dd70dc244f2b2ff86560b37ec7e','0','2','0'), ('29399','18','','10285','CPU steal time','system.cpu.steal[node_exporter]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of "stolen" CPU from this virtual machine by the hypervisor for other tasks, such as running another virtual machine.','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','2ee5885c4de646c0926f0c1a48890e68','0','2','0'), ('29400','18','','10285','Free swap space','system.swap.free[node_exporter]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The free space of the swap volume/file expressed in bytes.','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','ccc3c4d69fef412aa53c6a7320ef44fb','0','2','0'), ('29401','18','','10285','Total swap space','system.swap.total[node_exporter]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total space of the swap volume/file expressed in bytes.','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','d0c1ef0a679546d780df30a02a27df44','0','2','0'), ('29402','18','','10285','Available memory','vm.memory.available[node_exporter]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The available memory: - in Linux - available = free + buffers + cache; - on other platforms calculation may vary. See also Appendixes in Zabbix Documentation about parameters of the `vm.memory.size` item.','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','70a75efafbc84cbebd1bb262ec797523','0','2','0'), ('29403','18','','10285','Total memory','vm.memory.total[node_exporter]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total memory expressed in bytes.','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','e3ad296f16084e9caa923b449d8c725f','0','2','0'), ('29404','18','','10285','System boot time','system.boottime[node_exporter]','0','31d','365d','0','0','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','75afcb39d2d7496e9490cd14f1431600','0','2','0'), ('29405','18','','10285','Context switches per second','system.cpu.switches[node_exporter]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The combined rate at which all processors on the computer are switched from one thread to another.','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','b873e0d178d144fca3597d617fc119e7','0','2','0'), ('29406','18','','10285','Interrupts per second','system.cpu.intr[node_exporter]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of interrupts processed.','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','76206cf435fd4a979dbbf74807b532de','0','2','0'), ('29407','18','','10285','CPU guest nice time','system.cpu.guest_nice[node_exporter]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time spent on running a niced guest (a virtual CPU for guest operating systems under the control of the Linux kernel).','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','759809ee6c9e43cf8ff44f987221a90e','0','2','0'), ('29408','18','','10285','CPU guest time','system.cpu.guest[node_exporter]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time spent on running a virtual CPU for a guest operating system.','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','a732c4df8af047fbb874e1fb363b5e9e','0','2','0'), ('29409','18','','10285','CPU interrupt time','system.cpu.interrupt[node_exporter]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has spent servicing hardware interrupts.','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','4d3f64c79c684d55bcde14ca5bf3022a','0','2','0'), ('29410','18','','10285','CPU iowait time','system.cpu.iowait[node_exporter]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has been waiting for I/O to complete.','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','6a727e148a2c4956bcfb6de0a3486c2d','0','2','0'), ('29411','18','','10285','CPU nice time','system.cpu.nice[node_exporter]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has spent running users'' processes that have been niced.','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','86de794832794f57ba428cca31031005','0','2','0'), ('29412','18','','10285','CPU softirq time','system.cpu.softirq[node_exporter]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has spent servicing software interrupts.','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','cf3cd5840b91477d8e9254820896b978','0','2','0'), ('29413','18','','10285','CPU user time','system.cpu.user[node_exporter]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has spent running users'' processes that are not niced.','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','832698e707d14bad8171ca71a2533350','0','2','0'), ('29414','18','','10285','System name','system.name[node_exporter]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The host name of the system.','3','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','c70cfa2ad5754089935883c5b3172656','0','2','0'), ('29415','18','','10285','Version of node_exporter running','agent.version[node_exporter]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','9a60d1e53caa4049a33aa52f3f55ad75','0','2','0'), ('29416','18','','10285','CPU idle time','system.cpu.idle[node_exporter]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has spent doing nothing.','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','7bb99c606c6b497aaef279663b60829b','0','2','0'), ('29417','18','','10285','Number of CPUs','system.cpu.num[node_exporter]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','d7db65cfeaac4541bd98d06dc35f89e2','0','2','0'), ('29418','18','','10285','Load average (15m avg)','system.cpu.load.avg15[node_exporter]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Calculated as the system CPU load divided by the number of CPU cores.','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','35fb0319c599403bbea0e616c9066e27','0','2','0'), ('29419','18','','10285','Load average (5m avg)','system.cpu.load.avg5[node_exporter]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Calculated as the system CPU load divided by the number of CPU cores.','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','7fc62b26b9ff43429632f1985dc07851','0','2','0'), ('29420','18','','10285','Load average (1m avg)','system.cpu.load.avg1[node_exporter]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Calculated as the system CPU load divided by the number of CPU cores.','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','78fb393fe3d64cd7bf79be5427715add','0','2','0'), ('29421','18','','10285','System uptime','system.uptime[node_exporter]','0','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The system uptime expressed in the following format: "N days, hh:mm:ss".','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','7eeabdb6bf44483bab91faaab8bb24d5','0','2','0'), ('29422','18','','10285','Operating system architecture','system.sw.arch[node_exporter]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','ce4bb6c485cc4b739dce31b631634790','0','2','0'), ('29423','18','','10285','Number of open file descriptors','fd.open[node_exporter]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','d3631bd7effc4cd1bc45c991b3c3038f','0','2','0'), ('29424','18','','10285','Maximum number of open file descriptors','kernel.maxfiles[node_exporter]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'May be increased by using `sysctl` utility or modifying the file `/etc/sysctl.conf`.','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','a8b78e776e1d4011bbcb6dd54e32b40b','0','2','0'), ('29425','18','','10285','System description','system.descr[node_exporter]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Labeled system information as provided by the uname system call.','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','c47995760ef3458eb6237e434ef4eef8','0','2','0'), ('29426','18','','10285','CPU system time','system.cpu.system[node_exporter]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Time the CPU has spent running the kernel and its processes.','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','e296be976c5944b19a7178304ed6140c','0','2','0'), ('29429','18','','10285','Network interface discovery','net.if.discovery[node_exporter]','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of network interfaces. Requires node_exporter v0.18 and up.','0','7d','1','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','91531a7a68564860976096df6899fe88','0','2','0'), ('29430','18','','10285','Mounted filesystem discovery','vfs.fs.discovery[node_exporter]','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of file systems of different types.','0','7d','1','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','85d047920c1342b992fa1905eb489a44','0','2','0'), ('29431','18','','10285','Block devices discovery','vfs.dev.discovery[node_exporter]','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','920f367e232945b8992d0f32e6f9324d','0','2','0'), ('29432','18','','10285','FS [{#FSNAME}]: Space: Used','vfs.fs.used[node_exporter,"{#FSNAME}"]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Used storage expressed in bytes. Reserved space is not counted in.','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','89e559a7ff364dd78b638454896692c5','0','2','0'), ('29433','18','','10285','FS [{#FSNAME}]: Space: Used, in %','vfs.fs.pused[node_exporter,"{#FSNAME}"]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Calculated as the percentage of currently used space compared to the maximum available space.','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','89afe41bb0d74c579a9cff8b036d30dc','0','2','0'), ('29436','18','','10285','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[node_exporter,"{#IFNAME}"]','0','31d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','eea37c3779994ac5b35bb3b125429340','0','2','0'), ('29437','18','','10285','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[node_exporter,"{#IFNAME}"]','0','31d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','ddc4111fefec473e8d8b079f6eb50c05','0','2','0'), ('29438','18','','10285','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[node_exporter"{#IFNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','4ffe74b94eb14a4ea61c0df790d0920f','0','2','0'), ('29439','18','','10285','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[node_exporter,"{#IFNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','f6b39f743bb6438d876236ae651f68ee','0','2','0'), ('29440','18','','10285','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[node_exporter,"{#IFNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','ee28aff27b4f40eaa8e903ce3fab8555','0','2','0'), ('29441','18','','10285','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[node_exporter,"{#IFNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','aec995b7fe724823bdb41f134594b648','0','2','0'), ('29442','18','','10285','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[node_exporter,"{#IFNAME}"]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Sets value to "0" if metric is missing in `node_exporter` output.','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','51f9a39ad6d940ae914cd0a350d83dab','0','2','0'), ('29443','18','','10285','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[node_exporter,"{#IFNAME}"]','0','31d','0','0','3','','','','',NULL,'128','','','0','','','','','2',NULL,'node_network_protocol_type protocol_type value of /sys/class/net/.','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','ce9cfd9880c44aaea18cfa2ab2fdf0e1','0','2','0'), ('29444','18','','10285','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[node_exporter,"{#IFNAME}"]','0','31d','0','0','3','','','','',NULL,'64','','','0','','','','','2',NULL,'Reference: https://www.kernel.org/doc/Documentation/networking/operstates.txt','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','4097f76d86cd417db586c5973e1da90b','0','2','0'), ('29445','18','','10285','FS [{#FSNAME}]: Space: Available','vfs.fs.free[node_exporter,"{#FSNAME}"]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Available storage space expressed in bytes.','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','3a3edb8bf5a74a63baa27c64d1a44493','0','2','0'), ('29446','18','','10285','FS [{#FSNAME}]: Space: Total','vfs.fs.total[node_exporter,"{#FSNAME}"]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total space expressed in bytes.','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','acb3d42ae23b48cbacd0e99c27697798','0','2','0'), ('29447','18','','10285','FS [{#FSNAME}]: Inodes: Free, in %','vfs.fs.inode.pfree[node_exporter,"{#FSNAME}"]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Free metadata space expressed as a percentage.','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','ee1dad3677214561baafa6d930358ee0','0','2','0'), ('29448','18','','10285','{#DEVNAME}: Disk read rate','vfs.dev.read.rate[node_exporter,"{#DEVNAME}"]','0','31d','365d','0','0','','!r/s','','',NULL,NULL,'','','0','','','','','2',NULL,'r/s. The number (after merges) of read requests completed per second for the device.','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','dcd6f61ffb2f491ba78845514654a8cf','0','2','0'), ('29449','18','','10285','{#DEVNAME}: Disk write rate','vfs.dev.write.rate[node_exporter,"{#DEVNAME}"]','0','31d','365d','0','0','','!w/s','','',NULL,NULL,'','','0','','','','','2',NULL,'w/s. The number (after merges) of write requests completed per second for the device.','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','806ba0a56fab4b5094008c98bb817e2b','0','2','0'), ('29450','18','','10285','{#DEVNAME}: Disk read time (rate)','vfs.dev.read.time.rate[node_exporter,"{#DEVNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of total read time counter. Used in `r_await` calculation.','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','73940f30ea2b4b88b0047e54b773b747','0','2','0'), ('29451','18','','10285','{#DEVNAME}: Disk write time (rate)','vfs.dev.write.time.rate[node_exporter,"{#DEVNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of total write time counter. Used in `w_await` calculation.','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','601cc30457934b7f8f050b2cea13ccea','0','2','0'), ('29452','18','','10285','{#DEVNAME}: Disk average queue size (avgqu-sz)','vfs.dev.queue_size[node_exporter,"{#DEVNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current average disk queue; the number of requests outstanding on the disk while the performance data is being collected.','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','0a0949bcdf754fbe82e772ffbd69b5ba','0','2','0'), ('29453','18','','10285','{#DEVNAME}: Disk utilization','vfs.dev.util[node_exporter,"{#DEVNAME}"]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'This item is the percentage of elapsed time during which the selected disk drive was busy while servicing read or write requests.','0','30d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','d087a0525500450c9a307ff21f58482a','0','2','0'), ('29687','18','','10301','Memory used','rabbitmq.node.mem_used','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The memory usage expressed in bytes.','0','30d','0','','29654','','','','','200','1','0','','','0','0','0','0','0','0','0','d6a01ec409a6449986c5c0a81ffaf914','0','2','0'), ('29688','18','','10301','Disk free alarm','rabbitmq.node.disk_free_alarm','0','31d','365d','0','3','','','','',NULL,'136','','','0','','','','','0',NULL,'It checks whether the node has a disk alarm or not.','0','30d','0','','29654','','','','','200','1','0','','','0','0','0','0','0','0','0','d8de1eb13f024ce99388fc4bb68d6ad0','0','2','0'), ('29691','18','','10301','Used file descriptors','rabbitmq.node.fd_used','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The descriptors of the used file.','0','30d','0','','29654','','','','','200','1','0','','','0','0','0','0','0','0','0','09aeab86c69846eb82d27c2f82f46d2b','0','2','0'), ('29692','18','','10301','Uptime','rabbitmq.node.uptime','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Uptime expressed in milliseconds.','0','30d','0','','29654','','','','','200','1','0','','','0','0','0','0','0','0','0','a28b6c8cca5544b79c2d9946c1978c7e','0','2','0'), ('29693','18','','10301','Memory alarm','rabbitmq.node.mem_alarm','0','31d','365d','0','3','','','','',NULL,'136','','','0','','','','','0',NULL,'It checks whether the host has a memory alarm or not.','0','30d','0','','29654','','','','','200','1','0','','','0','0','0','0','0','0','0','e059b278ba384133a72dc723c2b2c40b','0','2','0'), ('29694','18','','10301','Memory limit','rabbitmq.node.mem_limit','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The memory usage with high watermark properties expressed in bytes.','0','30d','0','','29654','','','','','200','1','0','','','0','0','0','0','0','0','0','54bd4a47d635444e8e2e955325dbb976','0','2','0'), ('29695','18','','10301','Is running','rabbitmq.node.running','0','31d','365d','0','3','','','','',NULL,'17','','','0','','','','','0',NULL,'It "sees" whether the node is running or not.','0','30d','0','','29654','','','','','200','1','0','','','0','0','0','0','0','0','0','087fcb3992ef4e35bacd4b6e69ef93d3','0','2','0'), ('29696','18','','10301','Number of network partitions','rabbitmq.node.partitions','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of network partitions, which this node "sees".','0','30d','0','','29654','','','','','200','1','0','','','0','0','0','0','0','0','0','5e8c1ed0b073461eb14477edac3c756a','0','2','0'), ('29697','18','','10301','Sockets available','rabbitmq.node.sockets_total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The file descriptors available for use as sockets.','0','30d','0','','29654','','','','','200','1','0','','','0','0','0','0','0','0','0','3aa508520f224150a05a7ebb64d22c5e','0','2','0'), ('29698','18','','10301','Free disk space','rabbitmq.node.disk_free','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The current free disk space.','0','30d','0','','29654','','','','','200','1','0','','','0','0','0','0','0','0','0','7dad79be93bd46bba7a2540b38080b06','0','2','0'), ('29699','18','','10301','Runtime run queue','rabbitmq.node.run_queue','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The average number of Erlang processes waiting to run.','0','30d','0','','29654','','','','','200','1','0','','','0','0','0','0','0','0','0','1ae6f429e99d4ddaa54aa6adab6b8100','0','2','0'), ('29700','18','','10301','Disk free limit','rabbitmq.node.disk_free_limit','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The free space limit of a disk expressed in bytes.','0','30d','0','','29654','','','','','200','1','0','','','0','0','0','0','0','0','0','4e62b476bd11497f9190d1f720f22f75','0','2','0'), ('29701','18','','10301','Sockets used','rabbitmq.node.sockets_used','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of file descriptors used as sockets.','0','30d','0','','29654','','','','','200','1','0','','','0','0','0','0','0','0','0','de2cbe02ff6c47d78b6c7105709f4805','0','2','0'), ('29703','18','','10301','Queues discovery','rabbitmq.queues.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The metrics for an individual queue.','0','7d','1','','29661','','','','','200','1','0','','','0','0','0','0','0','0','0','d1d32fc6ae1f445a98144a31214ca825','0','2','0'), ('29746','18','','10302','Messages returned redeliver','rabbitmq.overview.messages.redeliver','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of subset of messages in the `deliver_get`, which had the `redelivered` flag set.','0','30d','0','','29738','','','','','200','1','0','','','0','0','0','0','0','0','0','6c0d428069a84443affba5b1a7f886bc','0','2','0'), ('29747','18','','10302','Messages returned unroutable per second','rabbitmq.overview.messages.return_unroutable.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of messages (per second) returned to a publisher as unroutable.','0','30d','0','','29738','','','','','200','1','0','','','0','0','0','0','0','0','0','e2983b5d27294b92b658070e0ef0a2ca','0','2','0'), ('29748','18','','10302','Messages returned unroutable','rabbitmq.overview.messages.return_unroutable','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of messages returned to a publisher as unroutable.','0','30d','0','','29738','','','','','200','1','0','','','0','0','0','0','0','0','0','70ab0718b7784a8280c99b6af21d909a','0','2','0'), ('29749','18','','10302','Messages publish_out per second','rabbitmq.overview.messages.publish_out.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of messages (per second) published from this overview into queues.','0','30d','0','','29738','','','','','200','1','0','','','0','0','0','0','0','0','0','c1a7ca5a475449b4b4d916693acd515b','0','2','0'), ('29750','18','','10302','Messages publish_out','rabbitmq.overview.messages.publish_out','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of messages published from this overview into queues.','0','30d','0','','29738','','','','','200','1','0','','','0','0','0','0','0','0','0','8d5523cd5120462f903af9b67e2abb10','0','2','0'), ('29751','18','','10302','Messages publish_in per second','rabbitmq.overview.messages.publish_in.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of messages (per second) published from the channels into this overview.','0','30d','0','','29738','','','','','200','1','0','','','0','0','0','0','0','0','0','8078d1269b0f4650b2a2c8d0f7de8bfd','0','2','0'), ('29752','18','','10302','Messages publish_in','rabbitmq.overview.messages.publish_in','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of messages published from the channels into this overview.','0','30d','0','','29738','','','','','200','1','0','','','0','0','0','0','0','0','0','ebe18f0f04fe4c098283cfeab6ebb716','0','2','0'), ('29753','18','','10302','Messages published per second','rabbitmq.overview.messages.publish.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of messages published per second.','0','30d','0','','29738','','','','','200','1','0','','','0','0','0','0','0','0','0','e386d202d87c442c94ea6151af8f1c45','0','2','0'), ('29754','18','','10302','Messages published','rabbitmq.overview.messages.publish','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of published messages.','0','30d','0','','29738','','','','','200','1','0','','','0','0','0','0','0','0','0','af401642e23241f38b453ce65439a3fb','0','2','0'), ('29755','18','','10302','Messages delivered per second','rabbitmq.overview.messages.deliver_get.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of the sum of messages (per second) delivered to consumers: in acknowledgement mode and in no-acknowledgement mode; delivered to consumers in response to the `basic.get`: in acknowledgement mode and in no-acknowledgement mode.','0','30d','0','','29738','','','','','200','1','0','','','0','0','0','0','0','0','0','483b3ccd192a4f7a8142da5fc3303d63','0','2','0'), ('29756','18','','10302','Messages delivered','rabbitmq.overview.messages.deliver_get','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The sum of messages delivered to consumers: in acknowledgement mode and in no-acknowledgement mode; delivered to consumers in response to the `basic.get`: in acknowledgement mode and in no-acknowledgement mode.','0','30d','0','','29738','','','','','200','1','0','','','0','0','0','0','0','0','0','fa4dcdd9a76c47fb8b3e0e238077f591','0','2','0'), ('29757','18','','10302','Messages confirmed per second','rabbitmq.overview.messages.confirm.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of messages confirmed per second.','0','30d','0','','29738','','','','','200','1','0','','','0','0','0','0','0','0','0','302caaded1ec40a984c13c3eab6f7509','0','2','0'), ('29758','18','','10302','Messages confirmed','rabbitmq.overview.messages.confirm','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of confirmed messages.','0','30d','0','','29738','','','','','200','1','0','','','0','0','0','0','0','0','0','5f2ae9a4ca0643c6b3d3e7b1ed36f3e4','0','2','0'), ('29759','18','','10302','Messages acknowledged per second','rabbitmq.overview.messages.ack.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of messages (per second) delivered to clients and acknowledged.','0','30d','0','','29738','','','','','200','1','0','','','0','0','0','0','0','0','0','b7c9ca566af64e62bc450752d5cd7777','0','2','0'), ('29760','18','','10302','Messages acknowledged','rabbitmq.overview.messages.ack','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of messages delivered to clients and acknowledged.','0','30d','0','','29738','','','','','200','1','0','','','0','0','0','0','0','0','0','94ffc83030e84d93a2bcafc9fc1b307b','0','2','0'), ('29761','18','','10302','Messages unacknowledged','rabbitmq.overview.queue_totals.messages.unacknowledged','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unacknowledged messages.','0','30d','0','','29738','','','','','200','1','0','','','0','0','0','0','0','0','0','3403648d6b964edd8c390e2c175b068a','0','2','0'), ('29762','18','','10302','Messages ready for delivery','rabbitmq.overview.queue_totals.messages.ready','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of messages ready for delivery.','0','30d','0','','29738','','','','','200','1','0','','','0','0','0','0','0','0','0','7c7e5c4111ff464b913a43b59fcb2e9b','0','2','0'), ('29763','18','','10302','Messages total','rabbitmq.overview.queue_totals.messages','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of messages (ready, plus unacknowledged).','0','30d','0','','29738','','','','','200','1','0','','','0','0','0','0','0','0','0','c9bc0b0a61be4412bfc31cb725bbe837','0','2','0'), ('29764','18','','10302','Exchanges total','rabbitmq.overview.object_totals.exchanges','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of exchanges.','0','30d','0','','29738','','','','','200','1','0','','','0','0','0','0','0','0','0','1b98a03a243c4b698faa93228cb9cfb0','0','2','0'), ('29765','18','','10302','Consumers total','rabbitmq.overview.object_totals.consumers','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of consumers.','0','30d','0','','29738','','','','','200','1','0','','','0','0','0','0','0','0','0','4b02b27b8091430eb80e6451935848d8','0','2','0'), ('29766','18','','10302','Queues total','rabbitmq.overview.object_totals.queues','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of queues.','0','30d','0','','29738','','','','','200','1','0','','','0','0','0','0','0','0','0','011491d6f5954cf3bf37ee45a62a4d86','0','2','0'), ('29767','18','','10302','Channels total','rabbitmq.overview.object_totals.channels','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of channels.','0','30d','0','','29738','','','','','200','1','0','','','0','0','0','0','0','0','0','787ea966afd741b99bbdce665aebf15a','0','2','0'), ('29768','18','','10302','Connections total','rabbitmq.overview.object_totals.connections','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of connections.','0','30d','0','','29738','','','','','200','1','0','','','0','0','0','0','0','0','0','3b488cdb79ac4b95abe55ddec9f74dd1','0','2','0'), ('29769','18','','10302','Messages returned redeliver per second','rabbitmq.overview.messages.redeliver.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of subset of messages (per second) in the `deliver_get`, which had the `redelivered` flag set.','0','30d','0','','29738','','','','','200','1','0','','','0','0','0','0','0','0','0','7d239c3cb6604521b1291bce0dbdf10c','0','2','0'), ('29771','18','','10303','Number of network partitions','rabbitmq.node.partitions','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of network partitions, which this node "sees".','0','30d','0','','29741','','','','','200','1','0','','','0','0','0','0','0','0','0','ac9282c012bd4249a096a462d21dcf62','0','2','0'), ('29772','18','','10303','Uptime','rabbitmq.node.uptime','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Uptime expressed in milliseconds.','0','30d','0','','29741','','','','','200','1','0','','','0','0','0','0','0','0','0','65a2fd59ddfe413b9259c547338f3351','0','2','0'), ('29773','18','','10303','Disk free alarm','rabbitmq.node.disk_free_alarm','0','31d','365d','0','3','','','','',NULL,'137','','','0','','','','','0',NULL,'It checks whether the node has a disk alarm or not.','0','30d','0','','29741','','','','','200','1','0','','','0','0','0','0','0','0','0','38099990b854421ca39f178b9c9be016','0','2','0'), ('29774','18','','10303','Memory alarm','rabbitmq.node.mem_alarm','0','31d','365d','0','3','','','','',NULL,'137','','','0','','','','','0',NULL,'It checks whether the host has a memory alarm or not.','0','30d','0','','29741','','','','','200','1','0','','','0','0','0','0','0','0','0','70ec112fc828476e96a469e0f94fc415','0','2','0'), ('29775','18','','10303','Is running','rabbitmq.node.running','0','31d','365d','0','3','','','','',NULL,'18','','','0','','','','','0',NULL,'It "sees" whether the node is running or not.','0','30d','0','','29741','','','','','200','1','0','','','0','0','0','0','0','0','0','5f819282c32b49039a2dae56b9be23cd','0','2','0'), ('29776','18','','10303','Sockets used','rabbitmq.node.sockets_used','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of file descriptors used as sockets.','0','30d','0','','29741','','','','','200','1','0','','','0','0','0','0','0','0','0','31455694c0994c9d9eaa8af048e88e95','0','2','0'), ('29777','18','','10303','Sockets available','rabbitmq.node.sockets_total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The file descriptors available for use as sockets.','0','30d','0','','29741','','','','','200','1','0','','','0','0','0','0','0','0','0','16f4f6a6d8f14980a6edcc2d84b0cd8d','0','2','0'), ('29779','18','','10303','Runtime run queue','rabbitmq.node.run_queue','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The average number of Erlang processes waiting to run.','0','30d','0','','29741','','','','','200','1','0','','','0','0','0','0','0','0','0','ddc906d9a969401ebf520490e62f4086','0','2','0'), ('29780','18','','10303','Memory used','rabbitmq.node.mem_used','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The memory usage expressed in bytes.','0','30d','0','','29741','','','','','200','1','0','','','0','0','0','0','0','0','0','9e4f2c0cb6604364ab0a2b4def7466e2','0','2','0'), ('29781','18','','10303','Disk free limit','rabbitmq.node.disk_free_limit','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The free space limit of a disk expressed in bytes.','0','30d','0','','29741','','','','','200','1','0','','','0','0','0','0','0','0','0','ce9f4b99c77545fb8acd596d72725898','0','2','0'), ('29782','18','','10303','Free disk space','rabbitmq.node.disk_free','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The current free disk space.','0','30d','0','','29741','','','','','200','1','0','','','0','0','0','0','0','0','0','8cb8f380645f4d7f8250b110acd47d1c','0','2','0'), ('29783','18','','10303','Used file descriptors','rabbitmq.node.fd_used','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The descriptors of the used file.','0','30d','0','','29741','','','','','200','1','0','','','0','0','0','0','0','0','0','fae24c176bd34b81b0f578883c5c2760','0','2','0'), ('29784','18','','10303','Memory limit','rabbitmq.node.mem_limit','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The memory usage with high watermark properties expressed in bytes.','0','30d','0','','29741','','','','','200','1','0','','','0','0','0','0','0','0','0','2445b494bf0648248b333d6f0afd95a2','0','2','0'), ('29785','18','','10302','Exchanges discovery','rabbitmq.exchanges.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The metrics for an individual exchange.','0','7d','1','','29739','','','','','200','1','0','','','0','0','0','0','0','0','0','689cf8096c0c49099e2b56c5b639d3c6','0','2','0'), ('29786','18','','10303','Queues discovery','rabbitmq.queues.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The metrics for an individual queue.','0','7d','1','','29745','','','','','200','1','0','','','0','0','0','0','0','0','0','cc1d85b6045b44b38f588cd9a4c6c62d','0','2','0'), ('29821','18','','10261','Utilization of alert syncer internal processes, in %','process.alert_syncer.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the alert syncer processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','236699e6400c4ae3a20868c79fd35027','0','2','0'), ('30000','18','','10300','Messages returned redeliver','rabbitmq.overview.messages.redeliver','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of subset of messages in the `deliver_get`, which had the `redelivered` flag set.','0','30d','0','','29998','','','','','200','1','0','','','0','0','0','0','0','0','0','650d6a94e381477299c62cfb2a2252cf','0','2','0'), ('30001','18','','10300','Messages returned unroutable per second','rabbitmq.overview.messages.return_unroutable.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of messages (per second) returned to a publisher as unroutable.','0','30d','0','','29998','','','','','200','1','0','','','0','0','0','0','0','0','0','72267cce69cf490ea626ff3ae17b6362','0','2','0'), ('30002','18','','10300','Messages returned unroutable','rabbitmq.overview.messages.return_unroutable','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of messages returned to a publisher as unroutable.','0','30d','0','','29998','','','','','200','1','0','','','0','0','0','0','0','0','0','e3faec09ae0a4d7aa8aab50d71de7bb3','0','2','0'), ('30003','18','','10300','Messages publish_out per second','rabbitmq.overview.messages.publish_out.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of messages (per second) published from this overview into queues.','0','30d','0','','29998','','','','','200','1','0','','','0','0','0','0','0','0','0','05e4c745be95412995749c352ec0f925','0','2','0'), ('30004','18','','10300','Messages publish_out','rabbitmq.overview.messages.publish_out','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of messages published from this overview into queues.','0','30d','0','','29998','','','','','200','1','0','','','0','0','0','0','0','0','0','23dcb85dd9bc4fefb1a9682956181c2e','0','2','0'), ('30005','18','','10300','Messages publish_in per second','rabbitmq.overview.messages.publish_in.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of messages (per second) published from the channels into this overview.','0','30d','0','','29998','','','','','200','1','0','','','0','0','0','0','0','0','0','db511bf1cd6c465f8fe1ae6b5fa08660','0','2','0'), ('30006','18','','10300','Messages publish_in','rabbitmq.overview.messages.publish_in','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of messages published from the channels into this overview.','0','30d','0','','29998','','','','','200','1','0','','','0','0','0','0','0','0','0','bb068ac7c6094fb8a59cd1a003e88c39','0','2','0'), ('30007','18','','10300','Messages published per second','rabbitmq.overview.messages.publish.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of messages published per second.','0','30d','0','','29998','','','','','200','1','0','','','0','0','0','0','0','0','0','cfadadb681474c7eb0512d1f4d223ff6','0','2','0'), ('30008','18','','10300','Messages published','rabbitmq.overview.messages.publish','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of published messages.','0','30d','0','','29998','','','','','200','1','0','','','0','0','0','0','0','0','0','4215bdf87f0e426f85bd79434a0fb0bb','0','2','0'), ('30009','18','','10300','Messages delivered per second','rabbitmq.overview.messages.deliver_get.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of the sum of messages (per second) delivered to consumers: in acknowledgement mode and in no-acknowledgement mode; delivered to consumers in response to the `basic.get`: in acknowledgement mode and in no-acknowledgement mode.','0','30d','0','','29998','','','','','200','1','0','','','0','0','0','0','0','0','0','c00a84c8676544dcbdd74fec13881063','0','2','0'), ('30010','18','','10300','Messages delivered','rabbitmq.overview.messages.deliver_get','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The sum of messages delivered to consumers: in acknowledgement mode and in no-acknowledgement mode; delivered to consumers in response to the `basic.get`: in acknowledgement mode and in no-acknowledgement mode.','0','30d','0','','29998','','','','','200','1','0','','','0','0','0','0','0','0','0','004da545af4a4f61bd2167281bb9a02b','0','2','0'), ('30011','18','','10300','Messages confirmed per second','rabbitmq.overview.messages.confirm.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of messages confirmed per second.','0','30d','0','','29998','','','','','200','1','0','','','0','0','0','0','0','0','0','bc85a070e1e9451b953d85bb519ed63d','0','2','0'), ('30012','18','','10300','Messages confirmed','rabbitmq.overview.messages.confirm','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of confirmed messages.','0','30d','0','','29998','','','','','200','1','0','','','0','0','0','0','0','0','0','45cf9b5cf5cd4b13b0e140383233799f','0','2','0'), ('30013','18','','10300','Messages acknowledged per second','rabbitmq.overview.messages.ack.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of messages (per second) delivered to clients and acknowledged.','0','30d','0','','29998','','','','','200','1','0','','','0','0','0','0','0','0','0','f78fabbd7e3f44dc81b1cf9c90b26f2e','0','2','0'), ('30014','18','','10300','Messages acknowledged','rabbitmq.overview.messages.ack','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of messages delivered to clients and acknowledged.','0','30d','0','','29998','','','','','200','1','0','','','0','0','0','0','0','0','0','31908a8287be442681a0ded564977ff2','0','2','0'), ('30015','18','','10300','Messages unacknowledged','rabbitmq.overview.queue_totals.messages.unacknowledged','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unacknowledged messages.','0','30d','0','','29998','','','','','200','1','0','','','0','0','0','0','0','0','0','6cf09ed9d244464288c8050b10622e3a','0','2','0'), ('30016','18','','10300','Messages ready for delivery','rabbitmq.overview.queue_totals.messages.ready','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of messages ready for delivery.','0','30d','0','','29998','','','','','200','1','0','','','0','0','0','0','0','0','0','efaabe175e5f4fffa8a810ea35753475','0','2','0'), ('30017','18','','10300','Messages total','rabbitmq.overview.queue_totals.messages','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of messages (ready, plus unacknowledged).','0','30d','0','','29998','','','','','200','1','0','','','0','0','0','0','0','0','0','c98b2b3dd2bd4fec9e7c571bc631167b','0','2','0'), ('30018','18','','10300','Exchanges total','rabbitmq.overview.object_totals.exchanges','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of exchanges.','0','30d','0','','29998','','','','','200','1','0','','','0','0','0','0','0','0','0','be0b952e5d08409aa2c65fe143a9193c','0','2','0'), ('30019','18','','10300','Consumers total','rabbitmq.overview.object_totals.consumers','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of consumers.','0','30d','0','','29998','','','','','200','1','0','','','0','0','0','0','0','0','0','c39007dbd4374bee943d61b7e90c0f01','0','2','0'), ('30020','18','','10300','Queues total','rabbitmq.overview.object_totals.queues','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of queues.','0','30d','0','','29998','','','','','200','1','0','','','0','0','0','0','0','0','0','d7c86b4921f54924af1b72cd2493da1c','0','2','0'), ('30021','18','','10300','Channels total','rabbitmq.overview.object_totals.channels','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of channels.','0','30d','0','','29998','','','','','200','1','0','','','0','0','0','0','0','0','0','2b03117e863348ee84d94acfe877ef7f','0','2','0'), ('30022','18','','10300','Connections total','rabbitmq.overview.object_totals.connections','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of connections.','0','30d','0','','29998','','','','','200','1','0','','','0','0','0','0','0','0','0','b3cdd6739a964447b524df4fdd726434','0','2','0'), ('30023','18','','10300','Messages returned redeliver per second','rabbitmq.overview.messages.redeliver.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate of subset of messages (per second) in the `deliver_get`, which had the `redelivered` flag set.','0','30d','0','','29998','','','','','200','1','0','','','0','0','0','0','0','0','0','6d7eb8880bca4c6e92f65f8a32911599','0','2','0'), ('30024','18','','10301','Management plugin version','rabbitmq.node.overview.management_version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The version of the management plugin in use.','0','30d','0','','29653','','','','','200','1','0','','','0','0','0','0','0','0','0','db91f84a5ad7412c959fbfe4e3b6df88','0','2','0'), ('30025','18','','10301','RabbitMQ version','rabbitmq.node.overview.rabbitmq_version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The version of the RabbitMQ on the node, which processed this request.','0','30d','0','','29653','','','','','200','1','0','','','0','0','0','0','0','0','0','52a0be5049ee40748761d301a644315b','0','2','0'), ('30026','18','','10300','Exchanges discovery','rabbitmq.exchanges.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The metrics for an individual exchange.','0','7d','1','','29999','','','','','200','1','0','','','0','0','0','0','0','0','0','e28b4491721d4dbf8eded86a5caeabc2','0','2','0'), ('30044','18','','10303','Management plugin version','rabbitmq.node.overview.management_version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The version of the management plugin in use.','0','30d','0','','30043','','','','','200','1','0','','','0','0','0','0','0','0','0','129026dd49124ff2ba4f0bcc7f1fa9de','0','2','0'), ('30045','18','','10303','RabbitMQ version','rabbitmq.node.overview.rabbitmq_version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The version of the RabbitMQ on the node, which processed this request.','0','30d','0','','30043','','','','','200','1','0','','','0','0','0','0','0','0','0','d63d8001d5134e2590d3e7ca8b62958c','0','2','0'), ('30131','18','','10236','#{#SNMPVALUE}: Memory utilization','vm.memory.util[tpSysMonitorMemoryUtilization.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: TPLINK-SYSMONITOR-MIB Displays the memory utilization. Reference: http://www.tp-link.com/faq-1330.html','0','30d','0','','45478','','','','','200','1','0','','','0','0','0','0','0','0','0','5800682fc8f8439eb404707f995ec9a6','0','2','0'), ('30191','18','','10308','Uptime','haproxy.uptime','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30190','','','','','200','1','0','','','0','0','0','0','0','0','0','29381f1e0bdc4628a82ef1b7724f2e6f','0','2','0'), ('30192','18','','10308','Version','haproxy.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30190','','','','','200','1','0','','','0','0','0','0','0','0','0','e930e70fb1b44d9cbe673f35133c6e77','0','2','0'), ('30234','18','','10309','Uptime','haproxy.uptime','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30231','','','','','200','1','0','','','0','0','0','0','0','0','0','06a33ebaed3148889c19eba2de859d70','0','2','0'), ('30235','18','','10309','Version','haproxy.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30231','','','','','200','1','0','','','0','0','0','0','0','0','0','a2cd747feaaf4c278972ac7adbd9015a','0','2','0'), ('30311','18','','10310','Cluster enabled','redis.cluster.enabled','0','31d','365d','0','3','','','','',NULL,'144','','','0','','','','','0',NULL,'Indicate Redis cluster is enabled','0','30d','0','','30276','','','','','200','1','0','','','0','0','0','0','0','0','0','74f9fe26bdaf4a7bb86214bd7d500363','0','2','0'), ('30312','18','','10310','Max clients','redis.config.maxclients','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Max number of connected clients at the same time. Once the limit is reached Redis will close all the new connections sending an error "max number of clients reached".','0','30d','0','','30275','','','','','200','1','0','','','0','0','0','0','0','0','0','066486e3be25406185e624611eeb167a','0','2','0'), ('30436','18','','10316','InnoDB buffer pool reads','mysql.innodb_buffer_pool_reads','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of logical reads that InnoDB could not satisfy from the buffer pool and had to read directly from the disk.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','7738a4480f69427a96d46a9ca5b38d77','0','2','0'), ('30437','18','','10316','InnoDB buffer pool reads per second','mysql.innodb_buffer_pool_reads.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of logical reads per second that InnoDB could not satisfy from the buffer pool and had to read directly from the disk.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','1704fe0bf8de4882a6a16ebd75c4c3bf','0','2','0'), ('30438','18','','10316','InnoDB row lock time','mysql.innodb_row_lock_time','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The total time spent in acquiring row locks for InnoDB tables, in milliseconds.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','3811018fdfaf4d92a5b8ff5d631d0047','0','2','0'), ('30439','18','','10316','InnoDB row lock time max','mysql.innodb_row_lock_time_max','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum time to acquire a row lock for InnoDB tables, in milliseconds.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','579c1ad7680349a3b6a25dd12322fc14','0','2','0'), ('30440','18','','10316','InnoDB row lock waits','mysql.innodb_row_lock_waits','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times operations on InnoDB tables had to wait for a row lock.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','a4618dd9ed1d4ff19f34bc82f41dbbbb','0','2','0'), ('30441','18','','10316','Max used connections','mysql.max_used_connections','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum number of connections that have been in use simultaneously since the server start.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','e207dc3c0fe84928a36e643594d8cee5','0','2','0'), ('30442','18','','10316','Queries per second','mysql.queries.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of statements executed by the server. This variable includes statements executed within stored programs, unlike the `Questions` variable.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','c11b8c8ec3e843cea63f6cc1d8309ccd','0','2','0'), ('30443','18','','10316','InnoDB buffer pool read requests','mysql.innodb_buffer_pool_read_requests','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of logical read requests.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','598dcdb7eeec42c78484be70c814cd8a','0','2','0'), ('30444','18','','10316','Questions per second','mysql.questions.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the `Queries` variable.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','cd7c5c4e262f4a73975d46d06ed903f9','0','2','0'), ('30445','18','','10316','Slow queries per second','mysql.slow_queries.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of queries that have taken more than `long_query_time` seconds.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','a1cfc616f23648e9946f408c7146df0a','0','2','0'), ('30446','18','','10316','Threads cached','mysql.threads_cached','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of threads in the thread cache.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','a9ce1d75a97d4740876fad7b5d569211','0','2','0'), ('30447','18','','10316','Threads connected','mysql.threads_connected','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of currently open connections.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','a0079f5ffbdc40cc89b35a8b6170c32b','0','2','0'), ('30449','18','','10316','Threads running','mysql.threads_running','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of threads that are not sleeping.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','255c00a984ba462e84ba46a7430f21c9','0','2','0'), ('30450','18','','10316','Uptime','mysql.uptime','0','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of seconds that the server has been up.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','6ffa704603014f0f9f765590955fb01c','0','2','0'), ('30451','18','','10316','InnoDB buffer pool read requests per second','mysql.innodb_buffer_pool_read_requests.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of logical read requests per second.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','3ed432f4e0c949debaed9d60c5d13810','0','2','0'), ('30452','18','','10316','InnoDB buffer pool pages total','mysql.innodb_buffer_pool_pages_total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total size of the InnoDB buffer pool, in pages.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','efb2450fe30c4ec78b954a35595b7ac7','0','2','0'), ('30453','18','','10316','Bytes received','mysql.bytes_received.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes received from all clients.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','56512a1e89d34826ad261ab27119e80d','0','2','0'), ('30454','18','','10316','Connection errors max connections per second','mysql.connection_errors_max_connections.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of refused connections due to the `max_connections` limit being reached.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','3cbc55fc7b764a61baceb11e98fd454c','0','2','0'), ('30455','18','','10316','Bytes sent','mysql.bytes_sent.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes sent to all clients.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','c4cea16e3dbe4d328d9a50e113f3b904','0','2','0'), ('30456','18','','10316','Command Delete per second','mysql.com_delete.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The `Com_delete` counter variable indicates the number of times the `DELETE` statement has been executed.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','24ab8f0bd32a45f591c676ef839876df','0','2','0'), ('30457','18','','10316','Command Insert per second','mysql.com_insert.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The `Com_insert` counter variable indicates the number of times the `INSERT` statement has been executed.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','e48c67c893e5494fb00ea31222bd2caf','0','2','0'), ('30458','18','','10316','Command Select per second','mysql.com_select.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The `Com_select` counter variable indicates the number of times the `SELECT` statement has been executed.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','718c3af61f2645e8ab7d3496d6639c79','0','2','0'), ('30459','18','','10316','Command Update per second','mysql.com_update.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The `Com_update` counter variable indicates the number of times the `UPDATE` statement has been executed.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','e2c3ea26dd34472c9e5f0e48a67da6dd','0','2','0'), ('30460','18','','10316','Connection errors accept per second','mysql.connection_errors_accept.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors that occurred during calls to `accept()` on the listening port.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','dc963a1250ab453cb090af0154d745c3','0','2','0'), ('30461','18','','10316','Connection errors internal per second','mysql.connection_errors_internal.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of refused connections due to internal server errors, for example, out of memory errors, or failed thread starts.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','4cff4caf382f4f00b534651212132bd2','0','2','0'), ('30462','18','','10316','Connection errors peer address per second','mysql.connection_errors_peer_address.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors while searching for the connecting client''s IP address.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','e577b4b6c553401bbb831b7278dbbcb7','0','2','0'), ('30463','18','','10316','InnoDB buffer pool pages free','mysql.innodb_buffer_pool_pages_free','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total size of the InnoDB buffer pool, in pages.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','a9b965a07b504fa1b4e90acae0156221','0','2','0'), ('30464','18','','10316','Connection errors select per second','mysql.connection_errors_select.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors during calls to `select()` or `poll()` on the listening port. The client would not necessarily have been rejected in these cases.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','228aaf5333ce4958aa3a07e0898add63','0','2','0'), ('30465','18','','10316','Connection errors tcpwrap per second','mysql.connection_errors_tcpwrap.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connections the libwrap library has refused.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','a7632124b2b648bfa80a2e8a0381f4d2','0','2','0'), ('30466','18','','10316','Connections per second','mysql.connections.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connection attempts (successful or not) to the MySQL server.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','bcf8a21aacc54a79a958604b278f9617','0','2','0'), ('30470','18','','10316','Aborted connections per second','mysql.aborted_connects.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of failed attempts to connect to the MySQL server.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','d33a03e48f6d45dca04a505bab07a860','0','2','0'), ('30471','18','','10316','Aborted clients per second','mysql.aborted_clients.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connections that were aborted because the client died without closing the connection properly.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','b463e01655bf4dec81d5208f7a75766b','0','2','0'), ('30476','18','','10316','Replication Seconds Behind Master {#MASTER_HOST}','mysql.seconds_behind_master["{#MASTER_HOST}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of seconds that the slave SQL thread is behind processing the master binary log. A high number (or an increasing one) can indicate that the slave is unable to handle events from the master in a timely fashion.','0','30d','0','','30475','','','','','200','1','0','','','0','0','0','0','0','0','0','48555d71074f4cd4a61dca6187c8b29a','0','2','0'), ('30477','18','','10316','Replication Slave IO Running {#MASTER_HOST}','mysql.slave_io_running["{#MASTER_HOST}"]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Whether the I/O thread for reading the master''s binary log is running. Normally, you want this to be Yes unless you have not yet started replication or have explicitly stopped it with STOP SLAVE.','0','30d','0','','30475','','','','','200','1','0','','','0','0','0','0','0','0','0','1c075f4785604d92a33a868e213070d8','0','2','0'), ('30478','18','','10316','Replication Slave SQL Running {#MASTER_HOST}','mysql.slave_sql_running["{#MASTER_HOST}"]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Whether the SQL thread for executing events in the relay log is running. As with the I/O thread, this should normally be Yes.','0','30d','0','','30475','','','','','200','1','0','','','0','0','0','0','0','0','0','967c6fd13cc04562a9fea174bd90b8c4','0','2','0'), ('30484','18','','10317','InnoDB row lock waits','mysql.innodb_row_lock_waits','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times operations on InnoDB tables had to wait for a row lock.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','17c4270927a74d8388da8c25d9065556','0','2','0'), ('30485','18','','10317','InnoDB buffer pool read requests','mysql.innodb_buffer_pool_read_requests','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of logical read requests.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','0a1775a7de33464e9ce8134950527021','0','2','0'), ('30486','18','','10317','InnoDB buffer pool read requests per second','mysql.innodb_buffer_pool_read_requests.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of logical read requests per second.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','98684abf32e642bd8784e68e64357dc9','0','2','0'), ('30487','18','','10317','InnoDB buffer pool reads','mysql.innodb_buffer_pool_reads','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of logical reads that InnoDB could not satisfy from the buffer pool and had to read directly from the disk.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','441b718148974e289db93299f869feba','0','2','0'), ('30488','18','','10317','InnoDB buffer pool reads per second','mysql.innodb_buffer_pool_reads.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of logical reads per second that InnoDB could not satisfy from the buffer pool and had to read directly from the disk.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','22ae5946fc2548cf8eee39a57ce8512b','0','2','0'), ('30489','18','','10317','InnoDB row lock time','mysql.innodb_row_lock_time','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The total time spent in acquiring row locks for InnoDB tables, in milliseconds.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','a62951afcfbd44e595a4d294b24056e5','0','2','0'), ('30490','18','','10317','InnoDB row lock time max','mysql.innodb_row_lock_time_max','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum time to acquire a row lock for InnoDB tables, in milliseconds.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','22277695b7154c019a76ca730e68e833','0','2','0'), ('30491','18','','10317','Queries per second','mysql.queries.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of statements executed by the server. This variable includes statements executed within stored programs, unlike the `Questions` variable.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','2f0ced88c4524455bf790b3bc6512d04','0','2','0'), ('30492','18','','10317','Max used connections','mysql.max_used_connections','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum number of connections that have been in use simultaneously since the server start.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','6106ebf4cae842c1a5acc2f13518de4f','0','2','0'), ('30493','18','','10317','InnoDB buffer pool pages free','mysql.innodb_buffer_pool_pages_free','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total size of the InnoDB buffer pool, in pages.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','e31f66bbc32b404c92debc4d9367162d','0','2','0'), ('30494','18','','10317','Questions per second','mysql.questions.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the `Queries` variable.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','8d0fc2eb0be94d68966e09fca88e8deb','0','2','0'), ('30495','18','','10317','Slow queries per second','mysql.slow_queries.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of queries that have taken more than `long_query_time` seconds.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','b0227399437f4219b65ab1511d5e67c6','0','2','0'), ('30496','18','','10317','Threads cached','mysql.threads_cached','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of threads in the thread cache.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','b675fd71138a4845965309dc5d6428d9','0','2','0'), ('30497','18','','10317','Threads connected','mysql.threads_connected','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of currently open connections.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','af56c636c8b94e4f9976d0d6cf60fcbb','0','2','0'), ('30499','18','','10317','Threads running','mysql.threads_running','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of threads that are not sleeping.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','c41afa83f6a94efda34d7b41c95c89ac','0','2','0'), ('30500','18','','10317','InnoDB buffer pool pages total','mysql.innodb_buffer_pool_pages_total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total size of the InnoDB buffer pool, in pages.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','41019c084618404db183326c215d71f6','0','2','0'), ('30503','18','','10317','Command Select per second','mysql.com_select.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The `Com_select` counter variable indicates the number of times the `SELECT` statement has been executed.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','31e6372d1249442ab3ebdd993f397e26','0','2','0'), ('30504','18','','10317','Aborted clients per second','mysql.aborted_clients.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connections that were aborted because the client died without closing the connection properly.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','73235748ba4742c0aa3c4f29509a162d','0','2','0'), ('30505','18','','10317','Aborted connections per second','mysql.aborted_connects.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of failed attempts to connect to the MySQL server.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','b6185e79abd744f78ce579a83381ba87','0','2','0'), ('30506','18','','10317','Bytes received','mysql.bytes_received.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes received from all clients.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','f05d592e6ae74e64bc54c649418761a6','0','2','0'), ('30507','18','','10317','Bytes sent','mysql.bytes_sent.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes sent to all clients.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','ce737bc186f24014a70c75da2386986d','0','2','0'), ('30508','18','','10317','Command Delete per second','mysql.com_delete.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The `Com_delete` counter variable indicates the number of times the `DELETE` statement has been executed.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','a43ec23dad9345a5a1b0ff8bda12ed77','0','2','0'), ('30509','18','','10317','Command Insert per second','mysql.com_insert.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The `Com_insert` counter variable indicates the number of times the `INSERT` statement has been executed.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','cd924e3b51074b3baf642a7aa1eeb474','0','2','0'), ('30510','18','','10317','Command Update per second','mysql.com_update.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The `Com_update` counter variable indicates the number of times the `UPDATE` statement has been executed.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','0f5f638777284093bcdc5f2dacc8e951','0','2','0'), ('30512','18','','10317','Connection errors accept per second','mysql.connection_errors_accept.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors that occurred during calls to `accept()` on the listening port.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','4b67e0e6291b4e0c841334ac052d7253','0','2','0'), ('30513','18','','10317','Connection errors internal per second','mysql.connection_errors_internal.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of refused connections due to internal server errors, for example, out of memory errors, or failed thread starts.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','76ad3a39e89e44daad08cc00174d4918','0','2','0'), ('30514','18','','10317','Connection errors max connections per second','mysql.connection_errors_max_connections.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of refused connections due to the `max_connections` limit being reached.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','83dfb916c7674e1fbd300be444241e25','0','2','0'), ('30515','18','','10317','Connection errors peer address per second','mysql.connection_errors_peer_address.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors while searching for the connecting client''s IP address.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','9be4cb9e209344d0869a56082d16ec53','0','2','0'), ('30516','18','','10317','Connection errors select per second','mysql.connection_errors_select.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors during calls to `select()` or `poll()` on the listening port. The client would not necessarily have been rejected in these cases.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','e50b9fea89cc440abc0155dc25346f05','0','2','0'), ('30517','18','','10317','Connection errors tcpwrap per second','mysql.connection_errors_tcpwrap.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connections the libwrap library has refused.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','a82a7ada012141c6bdff63bc8d615786','0','2','0'), ('30518','18','','10317','Connections per second','mysql.connections.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connection attempts (successful or not) to the MySQL server.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','fad5f4e1885341d1958f653afb85ff07','0','2','0'), ('30519','18','','10317','Uptime','mysql.uptime','0','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of seconds that the server has been up.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','8fbad224ebdf46e7b25a0be015f21972','0','2','0'), ('30520','18','','10317','Database discovery','mysql.database.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for the discovery of the databases.','0','7d','1','','46958','','','','','200','1','0','','','0','0','0','0','0','0','0','0987fb6afdae4587bc32864fa42728f2','0','2','0'), ('30521','18','','10317','Replication discovery','mysql.replication.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of the replication.','0','7d','0','','46959','','','','','200','1','0','','','0','0','0','0','0','0','0','d0a235c0267c48e28bc6ecb99fb2380d','0','2','0'), ('30523','18','','10317','Replication Slave status {#MASTER_HOST}','mysql.slave_status["{#MASTER_HOST}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Gets status information on the essential parameters of the slave threads.','0','30d','0','','46959','','','','','200','1','0','','','0','0','0','0','0','0','0','d88f65c4bee84e74bb6e00061ab27f0c','0','2','0'), ('30532','18','','10318','Architecture','docker.architecture','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30529','','','','','200','1','0','','','0','0','0','0','0','0','0','1d77b27beba04822a67bdedac22ec522','0','2','0'), ('30533','18','','10318','Live restore enabled','docker.live_restore.enabled','0','31d','365d','0','3','','','','',NULL,'147','','','0','','','','','0',NULL,'','0','30d','0','','30529','','','','','200','1','0','','','0','0','0','0','0','0','0','671cd65ddae046f5ba9b0f83241976ac','0','2','0'), ('30534','18','','10318','Logging driver','docker.logging_driver','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30529','','','','','200','1','0','','','0','0','0','0','0','0','0','be0cb2d07d12497b8b411e094fed6087','0','2','0'), ('30535','18','','10318','Memory limit enabled','docker.mem_limit.enabled','0','31d','365d','0','3','','','','',NULL,'147','','','0','','','','','0',NULL,'','0','30d','0','','30529','','','','','200','1','0','','','0','0','0','0','0','0','0','b08c91f28e094c4faa3e004d3fb3057d','0','2','0'), ('30536','18','','10318','Memory total','docker.mem.total','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30529','','','','','200','1','0','','','0','0','0','0','0','0','0','e0da86d370a049e3a2d6a82e49ea1f37','0','2','0'), ('30537','18','','10318','Name','docker.name','0','1h','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30529','','','','','200','1','0','','','0','0','0','0','0','0','0','812a6b9902a44dd7a803c7218555afe7','0','2','0'), ('30538','18','','10318','NCPU','docker.ncpu','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30529','','','','','200','1','0','','','0','0','0','0','0','0','0','5e4999067e6948f893dc465f8e5a2b5f','0','2','0'), ('30539','18','','10318','Nfd','docker.nfd','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of used File Descriptors.','0','30d','0','','30529','','','','','200','1','0','','','0','0','0','0','0','0','0','ce025599e68d447f9a1f5c076502e2f2','0','2','0'), ('30540','18','','10318','NEvents listener','docker.nevents_listener','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30529','','','','','200','1','0','','','0','0','0','0','0','0','0','f64919a3a5dc4f429f2992eb7ae5223c','0','2','0'), ('30541','18','','10318','Kernel version','docker.kernel_version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30529','','','','','200','1','0','','','0','0','0','0','0','0','0','d645713e25c74686a47cf859725e655f','0','2','0'), ('30542','18','','10318','OomKill disabled','docker.oomkill.disabled','0','31d','365d','0','3','','','','',NULL,'147','','','0','','','','','0',NULL,'','0','30d','0','','30529','','','','','200','1','0','','','0','0','0','0','0','0','0','e164279251ce471abaae599bf1885bbb','0','2','0'), ('30543','18','','10318','Operating system','docker.operating_system','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30529','','','','','200','1','0','','','0','0','0','0','0','0','0','78a5af9aa6a741d4ac976d0949414b68','0','2','0'), ('30544','18','','10318','OS type','docker.os_type','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30529','','','','','200','1','0','','','0','0','0','0','0','0','0','3acc93aa0fe64696a5560adcb3dd5acc','0','2','0'), ('30545','18','','10318','Pids limit enabled','docker.pids_limit.enabled','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30529','','','','','200','1','0','','','0','0','0','0','0','0','0','58ecaf4ae7f04316b6bf019cabadfd3e','0','2','0'), ('30546','18','','10318','Docker root dir','docker.root_dir','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30529','','','','','200','1','0','','','0','0','0','0','0','0','0','864eae0a62374f729143d6efc4f1655a','0','2','0'), ('30547','18','','10318','Server version','docker.server_version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30529','','','','','200','1','0','','','0','0','0','0','0','0','0','a7e5441fe4d64848a7c5e374ea99ad54','0','2','0'), ('30548','18','','10318','Swap limit enabled','docker.swap_limit.enabled','0','31d','365d','0','3','','','','',NULL,'147','','','0','','','','','0',NULL,'','0','30d','0','','30529','','','','','200','1','0','','','0','0','0','0','0','0','0','fcbe64ee979a4787a4b0f06836b258bd','0','2','0'), ('30549','18','','10318','Layers size','docker.layers_size','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30527','','','','','200','1','0','','','0','0','0','0','0','0','0','2f512e64ba414e86806f19c0be803a3e','0','2','0'), ('30550','18','','10318','IPv4 Forwarding enabled','docker.ipv4_forwarding.enabled','0','31d','365d','0','3','','','','',NULL,'147','','','0','','','','','0',NULL,'','0','30d','0','','30529','','','','','200','1','0','','','0','0','0','0','0','0','0','3545c86b7db9494c94dcda09386ac827','0','2','0'), ('30551','18','','10318','Kernel memory enabled','docker.kernel_mem.enabled','0','31d','365d','0','3','','','','',NULL,'147','','','0','','','','','0',NULL,'','0','30d','0','','30529','','','','','200','1','0','','','0','0','0','0','0','0','0','cb1e486a170b4d668a77d0918f22e51c','0','2','0'), ('30552','18','','10318','CPU Set enabled','docker.cpu_set.enabled','0','31d','365d','0','3','','','','',NULL,'147','','','0','','','','','0',NULL,'https://docs.docker.com/config/containers/resource_constraints/#configure-the-default-cfs-scheduler','0','30d','0','','30529','','','','','200','1','0','','','0','0','0','0','0','0','0','ceddc2b06f4a4cb4acec3dc74c02ce3f','0','2','0'), ('30553','18','','10318','Containers size','docker.containers_size','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30527','','','','','200','1','0','','','0','0','0','0','0','0','0','4d116791a88d4d4e8dd4a9013f9bc39f','0','2','0'), ('30554','18','','10318','Containers paused','docker.containers.paused','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of containers paused on this host.','0','30d','0','','30529','','','','','200','1','0','','','0','0','0','0','0','0','0','75f55b1f18c54af6ad0b3045cb230bd3','0','2','0'), ('30555','18','','10318','Containers running','docker.containers.running','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of containers running on this host.','0','30d','0','','30529','','','','','200','1','0','','','0','0','0','0','0','0','0','976bf10901404fd290b6628af437e8e4','0','2','0'), ('30556','18','','10318','Containers stopped','docker.containers.stopped','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of containers stopped on this host.','0','30d','0','','30529','','','','','200','1','0','','','0','0','0','0','0','0','0','40179a84ffd14742b9df87f48a2eaa90','0','2','0'), ('30557','18','','10318','Containers total','docker.containers.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of containers on this host.','0','30d','0','','30529','','','','','200','1','0','','','0','0','0','0','0','0','0','cacbbf17fd0144c79ecdcbf9e3ef9290','0','2','0'), ('30558','18','','10318','CPU CFS Period enabled','docker.cpu_cfs_period.enabled','0','31d','365d','0','3','','','','',NULL,'147','','','0','','','','','0',NULL,'https://docs.docker.com/config/containers/resource_constraints/#configure-the-default-cfs-scheduler','0','30d','0','','30529','','','','','200','1','0','','','0','0','0','0','0','0','0','fcf42585b871488f91a92d04b0cc748d','0','2','0'), ('30559','18','','10318','CPU CFS Quota enabled','docker.cpu_cfs_quota.enabled','0','31d','365d','0','3','','','','',NULL,'147','','','0','','','','','0',NULL,'https://docs.docker.com/config/containers/resource_constraints/#configure-the-default-cfs-scheduler','0','30d','0','','30529','','','','','200','1','0','','','0','0','0','0','0','0','0','54d3fa0099f24f75a6a414b7caf1b85a','0','2','0'), ('30560','18','','10318','CPU Shares enabled','docker.cpu_shares.enabled','0','31d','365d','0','3','','','','',NULL,'147','','','0','','','','','0',NULL,'https://docs.docker.com/config/containers/resource_constraints/#configure-the-default-cfs-scheduler','0','30d','0','','30529','','','','','200','1','0','','','0','0','0','0','0','0','0','2ad923020baf48c5a43f6c875ad45561','0','2','0'), ('30561','18','','10318','Kernel memory TCP enabled','docker.kernel_mem_tcp.enabled','0','31d','365d','0','3','','','','',NULL,'147','','','0','','','','','0',NULL,'','0','30d','0','','30529','','','','','200','1','0','','','0','0','0','0','0','0','0','77a61a63d6ed4583a0c39ce377b11d4f','0','2','0'), ('30562','18','','10318','Debug enabled','docker.debug.enabled','0','31d','365d','0','3','','','','',NULL,'147','','','0','','','','','0',NULL,'','0','30d','0','','30529','','','','','200','1','0','','','0','0','0','0','0','0','0','0a258c42f6aa4eeeb355fec491710764','0','2','0'), ('30563','18','','10318','Default runtime','docker.default_runtime','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30529','','','','','200','1','0','','','0','0','0','0','0','0','0','edb61f5ce3504f57bf32ddf2e50e4e3d','0','2','0'), ('30564','18','','10318','Storage driver','docker.driver','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Docker storage driver. https://docs.docker.com/storage/storagedriver/','0','30d','0','','30529','','','','','200','1','0','','','0','0','0','0','0','0','0','1ce2471ca651487288ad1aef9286da5f','0','2','0'), ('30565','18','','10318','Goroutines','docker.goroutines','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of goroutines.','0','30d','0','','30529','','','','','200','1','0','','','0','0','0','0','0','0','0','14a7686d3bd74533aa8406297d419dfd','0','2','0'), ('30566','18','','10318','Images size','docker.images_size','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30527','','','','','200','1','0','','','0','0','0','0','0','0','0','bf4f531b727c47f0aa30de14d4b41b49','0','2','0'), ('30567','18','','10318','Images available','docker.images.top_level','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of top-level images.','0','30d','0','','30531','','','','','200','1','0','','','0','0','0','0','0','0','0','ab4a4d92e4c04ff685b687cf14414b06','0','2','0'), ('30568','18','','10318','Images total','docker.images.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of images with intermediate image layers.','0','30d','0','','30529','','','','','200','1','0','','','0','0','0','0','0','0','0','d83337b0ea2c4f16be4b5b9c3a48755b','0','2','0'), ('30569','18','','10318','Cgroup driver','docker.cgroup_driver','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30529','','','','','200','1','0','','','0','0','0','0','0','0','0','32c441b73b90400fa0e6972798ae1f4c','0','2','0'), ('30570','18','','10318','Volumes size','docker.volumes_size','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30527','','','','','200','1','0','','','0','0','0','0','0','0','0','6c81479dba77465ebcd335a5f3d08e19','0','2','0'), ('30575','18','','10318','Container {#NAME}: Online CPUs','docker.container_stats.online_cpus["{#NAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30573','','','','','200','1','0','','','0','0','0','0','0','0','0','a5999dfeccca44ca8679ef71876da773','0','2','0'), ('30576','18','','10318','Container {#NAME}: Memory commit bytes','docker.container_stats.memory.commit_bytes["{#NAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30573','','','','','200','1','0','','','0','0','0','0','0','0','0','bd57aed03daa47e68acc4dc38a1697b7','0','2','0'), ('30577','18','','10318','Container {#NAME}: Memory commit peak bytes','docker.container_stats.memory.commit_peak_bytes["{#NAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30573','','','','','200','1','0','','','0','0','0','0','0','0','0','1e110d4d78e74ca8b12a1923f73543f1','0','2','0'), ('30578','18','','10318','Container {#NAME}: Memory maximum usage','docker.container_stats.memory.max_usage["{#NAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30573','','','','','200','1','0','','','0','0','0','0','0','0','0','b463f79d6c0644a394c3c0ba8f1d29d1','0','2','0'), ('30579','18','','10318','Container {#NAME}: Memory private working set','docker.container_stats.memory.private_working_set["{#NAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30573','','','','','200','1','0','','','0','0','0','0','0','0','0','763c8878d2c74d069567cbcd1d53544c','0','2','0'), ('30580','18','','10318','Container {#NAME}: Memory usage','docker.container_stats.memory.usage["{#NAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30573','','','','','200','1','0','','','0','0','0','0','0','0','0','6f39422b278b4a4398bfbd993f247fd0','0','2','0'), ('30581','18','','10318','Container {#NAME}: Created','docker.container_info.created["{#NAME}"]','0','31d','365d','0','3','','unixtime','','',NULL,'1084','','','0','','','','','2',NULL,'','0','30d','0','','30574','','','','','200','1','0','','','0','0','0','0','0','0','0','2c5d0902f43343ef85a9067cf3d59cfd','0','2','0'), ('30582','18','','10318','Container {#NAME}: CPU total usage per second','docker.container_stats.cpu_usage.total.rate["{#NAME}"]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30573','','','','','200','1','0','','','0','0','0','0','0','0','0','2c21d9b3968c43e68231ddc5b2d05808','0','2','0'), ('30583','18','','10318','Container {#NAME}: Networks bytes received per second','docker.networks.rx_bytes["{#NAME}"]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30573','','','','','200','1','0','','','0','0','0','0','0','0','0','4ab3f13ab7714367b971eada3f01c611','0','2','0'), ('30584','18','','10318','Container {#NAME}: Networks incoming packets dropped per second','docker.networks.rx_dropped["{#NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30573','','','','','200','1','0','','','0','0','0','0','0','0','0','cf4517565e3f4fc49e7d6d411302a732','0','2','0'), ('30585','18','','10318','Container {#NAME}: Networks errors received per second','docker.networks.rx_errors["{#NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30573','','','','','200','1','0','','','0','0','0','0','0','0','0','9d139e59dc1b46d39832ca668d5a6ce1','0','2','0'), ('30586','18','','10318','Container {#NAME}: Networks packets received per second','docker.networks.rx_packets["{#NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30573','','','','','200','1','0','','','0','0','0','0','0','0','0','13fb8c2c3843481492af82c3308e1257','0','2','0'), ('30587','18','','10318','Container {#NAME}: Networks bytes sent per second','docker.networks.tx_bytes["{#NAME}"]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30573','','','','','200','1','0','','','0','0','0','0','0','0','0','da4bf99b26e540fdafc0ee99d50e1c6c','0','2','0'), ('30588','18','','10318','Container {#NAME}: Networks outgoing packets dropped per second','docker.networks.tx_dropped["{#NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30573','','','','','200','1','0','','','0','0','0','0','0','0','0','1f4d7848ecfd44ae958cc1bd64d61078','0','2','0'), ('30589','18','','10318','Container {#NAME}: Networks errors sent per second','docker.networks.tx_errors["{#NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30573','','','','','200','1','0','','','0','0','0','0','0','0','0','bc7273bd3a7d4c9d9d6d6b3a019af947','0','2','0'), ('30590','18','','10318','Container {#NAME}: CPU usermode usage per second','docker.container_stats.cpu_usage.user.rate["{#NAME}"]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30573','','','','','200','1','0','','','0','0','0','0','0','0','0','801467fe7cbe48b8b05c5005680b934a','0','2','0'), ('30591','18','','10318','Container {#NAME}: Throttling periods','docker.container_stats.cpu_usage.throttling_periods["{#NAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of periods with throttling active.','0','30d','0','','30573','','','','','200','1','0','','','0','0','0','0','0','0','0','151f2f36bfb2429b8c8e500067489694','0','2','0'), ('30592','18','','10318','Container {#NAME}: Finished at','docker.container_info.finished["{#NAME}"]','0','31d','365d','0','0','','unixtime','','',NULL,'1084','','','0','','','','','2',NULL,'Time at which the container last terminated.','0','30d','0','','30574','','','','','200','1','0','','','0','0','0','0','0','0','0','1c481ac2b05e4b53b85b7fd37a39bc4a','0','2','0'), ('30593','18','','10318','Container {#NAME}: OOMKilled','docker.container_info.state.oomkilled["{#NAME}"]','0','31d','365d','0','3','','','','',NULL,'147','','','0','','','','','2',NULL,'','0','30d','0','','30574','','','','','200','1','0','','','0','0','0','0','0','0','0','69381dd6116f4b0d9d957dd1e768748b','0','2','0'), ('30594','18','','10318','Container {#NAME}: Image','docker.container_info.image["{#NAME}"]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30528','','','','','200','1','0','','','0','0','0','0','0','0','0','ee9da156a6134760af1762236d08e566','0','2','0'), ('30595','18','','10318','Container {#NAME}: Restart count','docker.container_info.restart_count["{#NAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30574','','','','','200','1','0','','','0','0','0','0','0','0','0','72de0e4e056a4d3799d61cb3ac19a306','0','2','0'), ('30596','18','','10318','Container {#NAME}: Started at','docker.container_info.started["{#NAME}"]','0','31d','365d','0','0','','unixtime','','',NULL,'1084','','','0','','','','','2',NULL,'','0','30d','0','','30574','','','','','200','1','0','','','0','0','0','0','0','0','0','0b6ce9bd73244e79bc9c4e00f56c2465','0','2','0'), ('30597','18','','10318','Container {#NAME}: Dead','docker.container_info.state.dead["{#NAME}"]','0','31d','365d','0','3','','','','',NULL,'147','','','0','','','','','2',NULL,'','0','30d','0','','30574','','','','','200','1','0','','','0','0','0','0','0','0','0','fd9d315125fb40738c00bab16c145255','0','2','0'), ('30598','18','','10318','Container {#NAME}: Error','docker.container_info.state.error["{#NAME}"]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30574','','','','','200','1','0','','','0','0','0','0','0','0','0','be3eed62681045aaa667a417a7383a58','0','2','0'), ('30599','18','','10318','Container {#NAME}: Exit code','docker.container_info.state.exitcode["{#NAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30574','','','','','200','1','0','','','0','0','0','0','0','0','0','65d5ac15043446658cd8e0d326b1bf04','0','2','0'), ('30600','18','','10318','Container {#NAME}: Paused','docker.container_info.state.paused["{#NAME}"]','0','31d','365d','0','3','','','','',NULL,'147','','','0','','','','','2',NULL,'','0','30d','0','','30574','','','','','200','1','0','','','0','0','0','0','0','0','0','000375ca6899443cac7e02e1239d879e','0','2','0'), ('30601','18','','10318','Container {#NAME}: Throttled time','docker.container_stats.cpu_usage.throttled_time["{#NAME}"]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Aggregate time the container was throttled for in nanoseconds.','0','30d','0','','30573','','','','','200','1','0','','','0','0','0','0','0','0','0','ff834b708f764ce6b08fcfbc1dfacb60','0','2','0'), ('30602','18','','10318','Container {#NAME}: Pid','docker.container_info.state.pid["{#NAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30574','','','','','200','1','0','','','0','0','0','0','0','0','0','15dffc2d2aeb4a15954b624c7c273155','0','2','0'), ('30603','18','','10318','Container {#NAME}: Restarting','docker.container_info.state.restarting["{#NAME}"]','0','31d','365d','0','3','','','','',NULL,'147','','','0','','','','','2',NULL,'','0','30d','0','','30574','','','','','200','1','0','','','0','0','0','0','0','0','0','38829fadf7f246c99c9776945022fac1','0','2','0'), ('30604','18','','10318','Container {#NAME}: Running','docker.container_info.state.running["{#NAME}"]','0','31d','365d','0','3','','','','',NULL,'147','','','0','','','','','2',NULL,'','0','30d','0','','30574','','','','','200','1','0','','','0','0','0','0','0','0','0','6d8d5a7523f64968b72f4861e9ae867a','0','2','0'), ('30605','18','','10318','Container {#NAME}: Status','docker.container_info.state.status["{#NAME}"]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30574','','','','','200','1','0','','','0','0','0','0','0','0','0','c7f1d81836d54a528184c7d4be60b792','0','2','0'), ('30606','18','','10318','Container {#NAME}: CPU kernelmode usage per second','docker.container_stats.cpu_usage.kernel.rate["{#NAME}"]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30573','','','','','200','1','0','','','0','0','0','0','0','0','0','92510799a44b4b93921d7b4d308ef10d','0','2','0'), ('30607','18','','10318','Container {#NAME}: Throttled periods','docker.container_stats.cpu_usage.throttled_periods["{#NAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of periods when the container hits its throttling limit.','0','30d','0','','30573','','','','','200','1','0','','','0','0','0','0','0','0','0','4c71c95c86d2433da78b0cd3ba5d56fa','0','2','0'), ('30608','18','','10318','Container {#NAME}: Networks packets sent per second','docker.networks.tx_packets["{#NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30573','','','','','200','1','0','','','0','0','0','0','0','0','0','9191bd95da9a4ee9a7315d20de23c977','0','2','0'), ('30609','18','','10318','Image {#NAME}: Created','docker.image.created["{#ID}"]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30531','','','','','200','1','0','','','0','0','0','0','0','0','0','63b19204b1d0459b9969234a719dab93','0','2','0'), ('30610','18','','10318','Image {#NAME}: Size','docker.image.size["{#ID}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30531','','','','','200','1','0','','','0','0','0','0','0','0','0','4eb812ba952e417185f6ac499d6cb85a','0','2','0'), ('30613','18','','10319','Commands: FLUSH per second','memcached.commands.flush.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The flush_all command invalidates all items in the database. This operation incurs a performance penalty and shouldn''t take place in production, so check your debug scripts.','0','30d','0','','30612','','','','','200','1','0','','','0','0','0','0','0','0','0','2c9d2fd0c59249c999cb315243ae994e','0','2','0'), ('30614','18','','10319','Bytes used','memcached.stats.bytes','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Current number of bytes used to store items.','0','30d','0','','30612','','','','','200','1','0','','','0','0','0','0','0','0','0','ce294455f98a4c8c98a4ec70abb2b996','0','2','0'), ('30615','18','','10319','Uptime','memcached.uptime','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of seconds since Memcached server start','0','30d','0','','30612','','','','','200','1','0','','','0','0','0','0','0','0','0','4e90d731c49447cf9bb6a72cb9675586','0','2','0'), ('30616','18','','10319','New items per second','memcached.stats.total_items.rate','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of new items stored per second.','0','30d','0','','30612','','','','','200','1','0','','','0','0','0','0','0','0','0','6bbc3deb32f947b2bc966c15f6e76726','0','2','0'), ('30617','18','','10319','Threads','memcached.stats.threads','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of worker threads requested','0','30d','0','','30612','','','','','200','1','0','','','0','0','0','0','0','0','0','7c28164178fc493c9f202df0c7103bb5','0','2','0'), ('30618','18','','10319','Misses per second','memcached.stats.misses.rate','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of missed GET requests (items requested but not found) per second.','0','30d','0','','30612','','','','','200','1','0','','','0','0','0','0','0','0','0','3988a6c751814573869ed3533039faac','0','2','0'), ('30619','18','','10319','Hits per second','memcached.stats.hits.rate','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of successful GET requests (items requested and found) per second.','0','30d','0','','30612','','','','','200','1','0','','','0','0','0','0','0','0','0','07acbb8eb36049258ca414d9e314ed79','0','2','0'), ('30620','18','','10319','Evictions per second','memcached.stats.evictions.rate','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'"An eviction is when an item that still has time to live is removed from the cache because a brand new item needs to be allocated. The item is selected with a pseudo-LRU mechanism. A high number of evictions coupled with a low hit rate means your application is setting a large number of keys that are never used again."','0','30d','0','','30612','','','','','200','1','0','','','0','0','0','0','0','0','0','ce47a49ce6af46b7bc9757ed1b5cd02e','0','2','0'), ('30621','18','','10319','Current number of items stored','memcached.stats.curr_items','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Current number of items stored by this instance.','0','30d','0','','30612','','','','','200','1','0','','','0','0','0','0','0','0','0','efc05c70a56d4be4a6ad59fa1c2915a3','0','2','0'), ('30622','18','','10319','Written bytes per second','memcached.stats.bytes_written.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The network''s read rate per second in B/sec','0','30d','0','','30612','','','','','200','1','0','','','0','0','0','0','0','0','0','e81a3fa33a124cdfba36e40d1be6edd8','0','2','0'), ('30623','18','','10319','Read bytes per second','memcached.stats.bytes_read.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The network''s read rate per second in B/sec','0','30d','0','','30612','','','','','200','1','0','','','0','0','0','0','0','0','0','7977b28169a9411d98549d0c85ffb78b','0','2','0'), ('30624','18','','10319','Process id','memcached.process_id','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'PID of the server process','0','30d','0','','30612','','','','','200','1','0','','','0','0','0','0','0','0','0','7ecd604d8f1143d6b3cf02c4d0ef22dc','0','2','0'), ('30625','18','','10319','Commands: GET per second','memcached.commands.get.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of GET requests received by server per second.','0','30d','0','','30612','','','','','200','1','0','','','0','0','0','0','0','0','0','1f636f46889e41cda9abf80df4ae53a7','0','2','0'), ('30626','18','','10319','CPU user','memcached.cpu.user','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'User CPU consumed by the Memcached server','0','30d','0','','30612','','','','','200','1','0','','','0','0','0','0','0','0','0','d7b2094d846243e59a092dc42bbe30c3','0','2','0'), ('30627','18','','10319','CPU sys','memcached.cpu.sys','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'System CPU consumed by the Memcached server','0','30d','0','','30612','','','','','200','1','0','','','0','0','0','0','0','0','0','f67cae24aa3d4b56b00ef7a3e3a45432','0','2','0'), ('30628','18','','10319','Throttled connections','memcached.connections.throttled.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times a client connection was throttled. When sending GETs in batch mode and the connection contains too many requests (limited by -R parameter) the connection might be throttled to prevent starvation.','0','30d','0','','30612','','','','','200','1','0','','','0','0','0','0','0','0','0','891b3347dac6440caef69c9dd7ec0a18','0','2','0'), ('30629','18','','10319','Connection structures','memcached.connections.structures','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connection structures allocated by the server','0','30d','0','','30612','','','','','200','1','0','','','0','0','0','0','0','0','0','8c224388b06b417fbf89dd25631b10ad','0','2','0'), ('30630','18','','10319','New connections per second','memcached.connections.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connections opened per second','0','30d','0','','30612','','','','','200','1','0','','','0','0','0','0','0','0','0','7ecc849f54be41dcbc6c037d89a6c240','0','2','0'), ('30631','18','','10319','Queued connections per second','memcached.connections.queued.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times that memcached has hit its connections limit and disabled its listener','0','30d','0','','30612','','','','','200','1','0','','','0','0','0','0','0','0','0','166f2d677f0d4d31bdd5313fa7755d56','0','2','0'), ('30632','18','','10319','Max connections','memcached.connections.max','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Max number of concurrent connections','0','30d','0','','30612','','','','','200','1','0','','','0','0','0','0','0','0','0','2d9fee94ab6e458b953bf6f4808e9300','0','2','0'), ('30633','18','','10319','Open connections','memcached.connections.current','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of clients presently connected','0','30d','0','','30612','','','','','200','1','0','','','0','0','0','0','0','0','0','4ac11cc6469346aa88ad804c8af749a8','0','2','0'), ('30634','18','','10319','Maximum number of bytes','memcached.config.limit_maxbytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum number of bytes allowed in cache. You can adjust this setting via a config file or the command line while starting your Memcached server.','0','30d','0','','30612','','','','','200','1','0','','','0','0','0','0','0','0','0','d19885f5dc5b4afaa68ae180c60117ca','0','2','0'), ('30635','18','','10319','Commands: SET per second','memcached.commands.set.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of SET requests received by server per second.','0','30d','0','','30612','','','','','200','1','0','','','0','0','0','0','0','0','0','82988c3b793841c4b99a7cbf18f9ac5f','0','2','0'), ('30636','18','','10319','Memcached version','memcached.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of the Memcached server','0','30d','0','','30612','','','','','200','1','0','','','0','0','0','0','0','0','0','64986809298145ebbf8f6ded1c41f2df','0','2','0'), ('30642','18','','10320','InnoDB buffer pool reads','mysql.innodb_buffer_pool_reads','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of logical reads that InnoDB could not satisfy from the buffer pool and had to read directly from the disk.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','2b017cf20cb5412fa4e39dc9b4469930','0','2','0'), ('30643','18','','10320','InnoDB buffer pool reads per second','mysql.innodb_buffer_pool_reads.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of logical reads per second that InnoDB could not satisfy from the buffer pool and had to read directly from the disk.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','0f2b813c8d6740d783504055dcd9a9dc','0','2','0'), ('30644','18','','10320','InnoDB row lock time','mysql.innodb_row_lock_time','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The total time spent in acquiring row locks for InnoDB tables, in milliseconds.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','60cbafe89a294f6fb24e3b9efe241bf5','0','2','0'), ('30645','18','','10320','InnoDB row lock time max','mysql.innodb_row_lock_time_max','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum time to acquire a row lock for InnoDB tables, in milliseconds.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','3827ee01c4434ff09555b4dba63bac47','0','2','0'), ('30646','18','','10320','InnoDB row lock waits','mysql.innodb_row_lock_waits','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times operations on InnoDB tables had to wait for a row lock.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','4a849f57a32847ffb41a0e8a7e7735ce','0','2','0'), ('30647','18','','10320','Max used connections','mysql.max_used_connections','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum number of connections that have been in use simultaneously since the server start.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','afd9c494cc584ddd833298820d7beace','0','2','0'), ('30648','18','','10320','Queries per second','mysql.queries.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of statements executed by the server. This variable includes statements executed within stored programs, unlike the `Questions` variable.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','345b2dd64d4041c7849aafc82cc63580','0','2','0'), ('30649','18','','10320','InnoDB buffer pool read requests','mysql.innodb_buffer_pool_read_requests','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of logical read requests.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','ab450aaa081d4a8d9db5dfd327d3b439','0','2','0'), ('30650','18','','10320','Questions per second','mysql.questions.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the `Queries` variable.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','73bc839df32e4d598f589a4a5440925e','0','2','0'), ('30651','18','','10320','Slow queries per second','mysql.slow_queries.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of queries that have taken more than `long_query_time` seconds.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','0492b7b8c8464d0596c24dc877ba41e0','0','2','0'), ('30652','18','','10320','Threads cached','mysql.threads_cached','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of threads in the thread cache.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','de0edc0ab52b488681a597ba6bda3e9e','0','2','0'), ('30653','18','','10320','Threads connected','mysql.threads_connected','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of currently open connections.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','6cd93969a80b4f738cd734764011b324','0','2','0'), ('30655','18','','10320','Threads running','mysql.threads_running','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of threads that are not sleeping.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','c4258eb3d8db4f30bc29dc531c5276a2','0','2','0'), ('30656','18','','10320','Uptime','mysql.uptime','0','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of seconds that the server has been up.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','1f3a71e74d8e42a1b539d67b4fc18531','0','2','0'), ('30657','18','','10320','InnoDB buffer pool read requests per second','mysql.innodb_buffer_pool_read_requests.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of logical read requests per second.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','dbf5bd4d705744bcb185e5044ff219e9','0','2','0'), ('30658','18','','10320','InnoDB buffer pool pages total','mysql.innodb_buffer_pool_pages_total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total size of the InnoDB buffer pool, in pages.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','14a8ea7cda164240bc7360454b4cd690','0','2','0'), ('30659','18','','10320','Bytes received','mysql.bytes_received.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes received from all clients.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','1501b3b4d2b143378d162bd88ab70504','0','2','0'), ('30660','18','','10320','Connection errors max connections per second','mysql.connection_errors_max_connections.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of refused connections due to the `max_connections` limit being reached.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','1ad00e1a8a984254bec89c75a2d57ea0','0','2','0'), ('30661','18','','10320','Bytes sent','mysql.bytes_sent.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes sent to all clients.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','0af5a1b506ef4f348a11757cea440a05','0','2','0'), ('30662','18','','10320','Command Delete per second','mysql.com_delete.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The `Com_delete` counter variable indicates the number of times the `DELETE` statement has been executed.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','0ebaced7ea3a4d9d9091128a8b0f6c49','0','2','0'), ('30663','18','','10320','Command Insert per second','mysql.com_insert.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The `Com_insert` counter variable indicates the number of times the `INSERT` statement has been executed.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','cc5aeff5d46c43259b7a8d0ca3296e8a','0','2','0'), ('30664','18','','10320','Command Select per second','mysql.com_select.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The `Com_select` counter variable indicates the number of times the `SELECT` statement has been executed.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','e50d21a5d6764626a1eb3eb9f15dbc61','0','2','0'), ('30665','18','','10320','Command Update per second','mysql.com_update.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The `Com_update` counter variable indicates the number of times the `UPDATE` statement has been executed.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','6ce28af307b54a75817536105a14d80b','0','2','0'), ('30666','18','','10320','Connection errors accept per second','mysql.connection_errors_accept.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors that occurred during calls to `accept()` on the listening port.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','dd9a33e71dd8468a9e4f2e25d3028a88','0','2','0'), ('30667','18','','10320','Connection errors internal per second','mysql.connection_errors_internal.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of refused connections due to internal server errors, for example, out of memory errors, or failed thread starts.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','12627c45088c4ed6a69c743ddf12e42e','0','2','0'), ('30668','18','','10320','Connection errors peer address per second','mysql.connection_errors_peer_address.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors while searching for the connecting client''s IP address.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','fbabb9b53f754cf6be0f657e90897bd9','0','2','0'), ('30669','18','','10320','InnoDB buffer pool pages free','mysql.innodb_buffer_pool_pages_free','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total size of the InnoDB buffer pool, in pages.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','51ab15a1c63348e48e6a75ed4e0ab5e3','0','2','0'), ('30670','18','','10320','Connection errors select per second','mysql.connection_errors_select.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors during calls to `select()` or `poll()` on the listening port. The client would not necessarily have been rejected in these cases.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','48a2a6533ca4412d86e9f85fd748ad3b','0','2','0'), ('30671','18','','10320','Connection errors tcpwrap per second','mysql.connection_errors_tcpwrap.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connections the libwrap library has refused.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','6a32e65b2e1a43bbaf718a0962271efe','0','2','0'), ('30672','18','','10320','Connections per second','mysql.connections.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connection attempts (successful or not) to the MySQL server.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','aeb1cc1b7c1d47acb8788e3751bd0e6f','0','2','0'), ('30676','18','','10320','Aborted connections per second','mysql.aborted_connects.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of failed attempts to connect to the MySQL server.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','77a407bb911f4b938c32de289da83383','0','2','0'), ('30677','18','','10320','Aborted clients per second','mysql.aborted_clients.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connections that were aborted because the client died without closing the connection properly.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','8a7b77d4e96a4a2d93f63eb8ca3c979b','0','2','0'), ('30682','18','','10320','Replication Seconds Behind Master {#MASTER_HOST}','mysql.replication.seconds_behind_master["{#MASTER_HOST}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of seconds that the slave SQL thread is behind processing the master binary log. A high number (or an increasing one) can indicate that the slave is unable to handle events from the master in a timely fashion.','0','30d','0','','30681','','','','','200','1','0','','','0','0','0','0','0','0','0','bdbd657020b24a14a771a29a8a945a2b','0','2','0'), ('30683','18','','10320','Replication Slave IO Running {#MASTER_HOST}','mysql.replication.slave_io_running["{#MASTER_HOST}"]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Whether the I/O thread for reading the master''s binary log is running. Normally, you want this to be Yes unless you have not yet started a replication or have explicitly stopped it with STOP SLAVE.','0','30d','0','','30681','','','','','200','1','0','','','0','0','0','0','0','0','0','2a5eb9d62cd046138d7564aa22b9ca33','0','2','0'), ('30684','18','','10320','Replication Slave SQL Running {#MASTER_HOST}','mysql.replication.slave_sql_running["{#MASTER_HOST}"]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Whether the SQL thread for executing events in the relay log is running. As with the I/O thread, this should normally be Yes.','0','30d','0','','30681','','','','','200','1','0','','','0','0','0','0','0','0','0','4fbb3cb164064694b37924dfcbaf2271','0','2','0'), ('30686','18','','10321','Discrete sensors discovery','ipmi.discrete.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of the discrete IPMI sensors.','0','7d','1','','30685','','','','','200','1','0','','','0','0','0','0','0','0','0','d0a3bd3c62d7438d8acde8ff0a9bb4db','0','2','0'), ('30687','18','','10321','Threshold sensors discovery','ipmi.sensors.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of the threshold IPMI sensors.','0','7d','1','','30685','','','','','200','1','0','','','0','0','0','0','0','0','0','bd5ceb5412d3462d90fa857b2d214788','0','2','0'), ('30688','18','','10321','{#SENSOR_ID}','ipmi.state_text[{#SENSOR_ID}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'It is a state of the discrete IPMI sensor.','0','30d','0','','30685','','','','','200','1','0','','','0','0','0','0','0','0','0','6ce86fa51c614f94b2250e14af8d9385','0','2','0'), ('30689','18','','10321','{#SENSOR_ID}, {#SENSOR_UNIT}','ipmi.value[{#SENSOR_ID}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'It is a state of the threshold IPMI sensor.','0','30d','0','','30685','','','','','200','1','0','','','0','0','0','0','0','0','0','77e8c8c6e2444667b5da698c802dbae0','0','2','0'), ('30695','18','','10322','Number of non-deleted documents','es.indices.docs.count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of non-deleted documents across all primary shards assigned to the selected nodes. This number is based on the documents in Lucene segments and may include the documents from nested fields.','0','30d','0','','30691','','','','','200','1','0','','','0','0','0','0','0','0','0','25cb1e0203334efd96d3e626f81b4670','0','2','0'), ('30696','18','','10322','Cluster uptime','es.nodes.jvm.max_uptime','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Uptime duration in seconds since JVM has last started.','0','30d','0','','30691','','','','','200','1','0','','','0','0','0','0','0','0','0','2dcf54f21cbd4af9a7931e3a2522685c','0','2','0'), ('30697','18','','10322','Total size of all file stores','es.nodes.fs.total_in_bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total size in bytes of all file stores across all selected nodes.','0','30d','0','','30691','','','','','200','1','0','','','0','0','0','0','0','0','0','b8c3c5d8866d4a6b9c6847b5c8da0631','0','2','0'), ('30698','18','','10322','Total available size to JVM in all file stores','es.nodes.fs.available_in_bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of bytes available to JVM in the file stores across all selected nodes. Depending on OS or process-level restrictions, this number may be less than nodes.fs.free_in_byes. This is the actual amount of free disk space the selected Elasticsearch nodes can use.','0','30d','0','','30691','','','','','200','1','0','','','0','0','0','0','0','0','0','c3ea99e5897b4663a3239d0edd66f1f0','0','2','0'), ('30699','18','','10322','Nodes with the master role','es.nodes.count.master','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of selected nodes with the master role.','0','30d','0','','30691','','','','','200','1','0','','','0','0','0','0','0','0','0','e7b36f37b86845339a306dacf874164a','0','2','0'), ('30700','18','','10322','Nodes with the ingest role','es.nodes.count.ingest','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of selected nodes with the ingest role.','0','30d','0','','30691','','','','','200','1','0','','','0','0','0','0','0','0','0','613ab3469f234e278af99d61e57b46bd','0','2','0'), ('30701','18','','10322','Nodes with the data role','es.nodes.count.data','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of selected nodes with the data role.','0','30d','0','','30691','','','','','200','1','0','','','0','0','0','0','0','0','0','54f51a653e014290aa3f91deaca44e47','0','2','0'), ('30702','18','','10322','Delayed unassigned shards','es.cluster.delayed_unassigned_shards','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of shards whose allocation has been delayed by the timeout settings.','0','30d','0','','30694','','','','','200','1','0','','','0','0','0','0','0','0','0','f3531c005c7f477b9916b4bf1ad273c2','0','2','0'), ('30703','18','','10322','Indices with shards assigned to nodes','es.indices.count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of indices with shards assigned to the selected nodes.','0','30d','0','','30691','','','','','200','1','0','','','0','0','0','0','0','0','0','db2f3161eaff4eb0b25d4191b423c733','0','2','0'), ('30704','18','','10322','Task max waiting in queue','es.cluster.task_max_waiting_in_queue','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The time expressed in seconds since the earliest initiated task is waiting for being performed.','0','30d','0','','30694','','','','','200','1','0','','','0','0','0','0','0','0','0','2295e2ba3d4949feb3519ac85ba6ff86','0','2','0'), ('30705','18','','10322','Cluster health status','es.cluster.status','0','31d','365d','0','3','','','','',NULL,'148','','','0','','','','','0',NULL,'Health status of the cluster, based on the state of its primary and replica shards. Statuses are: green All shards are assigned. yellow All primary shards are assigned, but one or more replica shards are unassigned. If a node in the cluster fails, some data could be unavailable until that node is repaired. red One or more primary shards are unassigned, so some data is unavailable. This can occur briefly during cluster startup as primary shards are assigned.','0','30d','0','','30694','','','','','200','1','0','','','0','0','0','0','0','0','0','b9568a6370dc40efae45ac1e0b719dd7','0','2','0'), ('30706','18','','10322','Number of relocating shards','es.cluster.relocating_shards','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of shards that are under relocation.','0','30d','0','','30694','','','','','200','1','0','','','0','0','0','0','0','0','0','981818f43a3c4b36b36e4b3c4e3468e9','0','2','0'), ('30707','18','','10322','Number of pending tasks','es.cluster.number_of_pending_tasks','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of cluster-level changes that have not yet been executed.','0','30d','0','','30694','','','','','200','1','0','','','0','0','0','0','0','0','0','2c84eea7f4a642f8892cb7f50febb562','0','2','0'), ('30708','18','','10322','Number of nodes','es.cluster.number_of_nodes','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of nodes within the cluster.','0','30d','0','','30694','','','','','200','1','0','','','0','0','0','0','0','0','0','4ec7496b441643f39df3e25c0225e6ec','0','2','0'), ('30709','18','','10322','Number of data nodes','es.cluster.number_of_data_nodes','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of nodes that are dedicated to data nodes.','0','30d','0','','30694','','','','','200','1','0','','','0','0','0','0','0','0','0','7d3c87e2fcae49438a14380f7d5faa81','0','2','0'), ('30710','18','','10322','Number of initializing shards','es.cluster.initializing_shards','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of shards that are under initialization.','0','30d','0','','30694','','','','','200','1','0','','','0','0','0','0','0','0','0','e0b684d5992a496981cf6fb9bb85be62','0','2','0'), ('30711','18','','10322','Inactive shards percentage','es.cluster.inactive_shards_percent_as_number','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The ratio of inactive shards in the cluster expressed as a percentage.','0','30d','0','','30694','','','','','200','1','0','','','0','0','0','0','0','0','0','500a763b9bfd4044b2d3bc95d3a0586c','0','2','0'), ('30712','18','','10322','Number of unassigned shards','es.cluster.unassigned_shards','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of shards that are not allocated.','0','30d','0','','30694','','','','','200','1','0','','','0','0','0','0','0','0','0','85e82cba1e5c479caede2a94c58239be','0','2','0'), ('30831','18','','10323','Write syscalls in fly','clickhouse.write','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of write (write, pwrite, io_getevents, etc.) syscalls in fly','0','30d','0','','30826','','','','','200','1','0','','','0','0','0','0','0','0','0','5bac794c8c7e438c924cd16b708dc281','0','2','0'), ('30832','18','','10323','Total replication tasks in queue','clickhouse.replicas.sum.queue.size','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of replication tasks in queue','0','30d','0','','30824','','','','','200','1','0','','','0','0','0','0','0','0','0','5d2a35daf81a49888e3dfab916fab8be','0','2','0'), ('30833','18','','10323','New queries per second','clickhouse.query.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of queries to be interpreted and potentially executed. Does not include queries that failed to parse or were rejected due to AST size limits, quota limits or limits on the number of simultaneously running queries. May include internal queries initiated by ClickHouse itself. Does not count subqueries.','0','30d','0','','30825','','','','','200','1','0','','','0','0','0','0','0','0','0','0fb342f6a494443c8389f79439e94791','0','2','0'), ('30834','18','','10323','Read syscalls in fly','clickhouse.read','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of read (read, pread, io_getevents, etc.) syscalls in fly','0','30d','0','','30826','','','','','200','1','0','','','0','0','0','0','0','0','0','fb671accbbaa4bd58a107dc3661419af','0','2','0'), ('30835','18','','10323','Read bytes per second','clickhouse.read_bytes.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes (the number of bytes before decompression) read from compressed sources (files, network).','0','30d','0','','30825','','','','','200','1','0','','','0','0','0','0','0','0','0','eb4c47501d9c4cdf9e55347ccc9a38bd','0','2','0'), ('30836','18','','10323','ZooKeeper wait time','clickhouse.zookeeper.wait.time','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time spent in waiting for ZooKeeper operations.','0','30d','0','','30825','','','','','200','1','0','','','0','0','0','0','0','0','0','b9fbc2f76b9c4de3b196ffc82ec10209','0','2','0'), ('30837','18','','10323','Replication lag across all tables','clickhouse.replicas.max.absolute.delay','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum replica queue delay relative to current time','0','30d','0','','30824','','','','','200','1','0','','','0','0','0','0','0','0','0','78ed9728eb634df1807c64637c862f9a','0','2','0'), ('30838','18','','10323','Total number read-only Replicas','clickhouse.replicas.readonly.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of Replicated tables that are currently in readonly state due to re-initialization after ZooKeeper session loss or due to startup without ZooKeeper configured.','0','30d','0','','30826','','','','','200','1','0','','','0','0','0','0','0','0','0','dd61675348374d2ea06cdde144fe4e26','0','2','0'), ('30839','18','','10323','Revision','clickhouse.revision','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Revision of the server.','0','30d','0','','30826','','','','','200','1','0','','','0','0','0','0','0','0','0','572036e5b2c74197bd61afc753f6e759','0','2','0'), ('30841','18','','10323','New SELECT queries per second','clickhouse.select_query.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of SELECT queries to be interpreted and potentially executed. Does not include queries that failed to parse or were rejected due to AST size limits, quota limits or limits on the number of simultaneously running queries. May include internal queries initiated by ClickHouse itself. Does not count subqueries.','0','30d','0','','30825','','','','','200','1','0','','','0','0','0','0','0','0','0','f89f3e27ca4f4e109ae6fe6b74dcc2ca','0','2','0'), ('30842','18','','10323','ZooKeeper user exceptions per second','clickhouse.zookeeper.user_exceptions.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of ZooKeeper exceptions caused by no znodes, bad version, node exists, node empty and no children for ephemeral.','0','30d','0','','30825','','','','','200','1','0','','','0','0','0','0','0','0','0','4931797c1034488fb9a2fc01e22b599c','0','2','0'), ('30843','18','','10323','ZooKeeper sessions','clickhouse.zookeeper.session','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of sessions (connections) to ZooKeeper. Should be no more than one.','0','30d','0','','30826','','','','','200','1','0','','','0','0','0','0','0','0','0','3e344ea728a54bc38b4098e7f6e2d087','0','2','0'), ('30844','18','','10323','ZooKeeper requests','clickhouse.zookeeper.request','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of requests to ZooKeeper in progress.','0','30d','0','','30826','','','','','200','1','0','','','0','0','0','0','0','0','0','071fb0471b8e40c3a5bb79c694cecce0','0','2','0'), ('30845','18','','10323','ZooKeeper hardware exceptions per second','clickhouse.zookeeper.hw_exceptions.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of ZooKeeper exceptions caused by session moved/expired, connection loss, marshalling error, operation timed out and invalid zhandle state.','0','30d','0','','30825','','','','','200','1','0','','','0','0','0','0','0','0','0','f8e6a866d8c745d39ed124f19afe8041','0','2','0'), ('30846','18','','10323','Uptime','clickhouse.uptime','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of seconds since ClickHouse server start','0','30d','0','','30824','','','','','200','1','0','','','0','0','0','0','0','0','0','99b894b181b44a4f8ef10280b881b273','0','2','0'), ('30847','18','','10323','Current running queries','clickhouse.query.current','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of executing queries','0','30d','0','','30826','','','','','200','1','0','','','0','0','0','0','0','0','0','071ae233708b417b97cfeced5021c139','0','2','0'), ('30848','18','','10323','Current distribute connections','clickhouse.connections.distribute','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connections to remote servers sending data that was INSERTed into Distributed tables.','0','30d','0','','30826','','','','','200','1','0','','','0','0','0','0','0','0','0','595446e408b844519e8db1ea91543134','0','2','0'), ('30849','18','','10323','Current HTTP connections','clickhouse.connections.http','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connections to HTTP server.','0','30d','0','','30826','','','','','200','1','0','','','0','0','0','0','0','0','0','d2d72a607672442b957228f0bea8dcca','0','2','0'), ('30850','18','','10323','Allocated bytes','clickhouse.jemalloc.allocated','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of bytes allocated by the application.','0','30d','0','','30824','','','','','200','1','0','','','0','0','0','0','0','0','0','04c970694a6f40c89e4d3b53f27b7530','0','2','0'), ('30851','18','','10323','Current Interserver connections','clickhouse.connections.interserver','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connections from other replicas to fetch parts.','0','30d','0','','30826','','','','','200','1','0','','','0','0','0','0','0','0','0','0829591332244c75a219f3b811ebf9ce','0','2','0'), ('30852','18','','10323','Current MySQL connections','clickhouse.connections.mysql','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connections to MySQL server.','0','30d','0','','30826','','','','','200','1','0','','','0','0','0','0','0','0','0','88d4855d22604d79927d40c0d3b106c5','0','2','0'), ('30853','18','','10323','Current TCP connections','clickhouse.connections.tcp','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connections to TCP server (clients with native interface).','0','30d','0','','30826','','','','','200','1','0','','','0','0','0','0','0','0','0','11786fff830d4d79b914a22c5f85da7f','0','2','0'), ('30854','18','','10323','Current distributed files to insert','clickhouse.distributed.files','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of pending files to process for asynchronous insertion into Distributed tables. Number of files for every shard is summed.','0','30d','0','','30826','','','','','200','1','0','','','0','0','0','0','0','0','0','b7bbca72bbd14b20930e60c3c1cdcb8e','0','2','0'), ('30855','18','','10323','Distributed connection fail with retry per second','clickhouse.distributed.files.fail.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Connection failures after all retries in replicated DB connection pool','0','30d','0','','30825','','','','','200','1','0','','','0','0','0','0','0','0','0','e056f8519dec4c8dace036bf993a6d47','0','2','0'), ('30856','18','','10323','Distributed connection fail with retry per second','clickhouse.distributed.files.retry.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Connection retries in replicated DB connection pool','0','30d','0','','30825','','','','','200','1','0','','','0','0','0','0','0','0','0','3859c5ee6f25419f9da7e7899c9a71af','0','2','0'), ('30857','18','','10323','New INSERT queries per second','clickhouse.insert_query.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of INSERT queries to be interpreted and potentially executed. Does not include queries that failed to parse or were rejected due to AST size limits, quota limits or limits on the number of simultaneously running queries. May include internal queries initiated by ClickHouse itself. Does not count subqueries.','0','30d','0','','30825','','','','','200','1','0','','','0','0','0','0','0','0','0','410f7ee66ee84e3eb27940312ddf23d2','0','2','0'), ('30858','18','','10323','Delayed insert queries','clickhouse.insert.delay','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of INSERT queries that are throttled due to high number of active data parts for partition in a MergeTree table.','0','30d','0','','30826','','','','','200','1','0','','','0','0','0','0','0','0','0','81130b88e0b04b9ea677a80b6fd6ce22','0','2','0'), ('30859','18','','10323','Inserted bytes per second','clickhouse.inserted_bytes.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of uncompressed bytes inserted in all tables.','0','30d','0','','30825','','','','','200','1','0','','','0','0','0','0','0','0','0','e2477dd38510489c8ea7509e9a37cb50','0','2','0'), ('30860','18','','10323','Inserted rows per second','clickhouse.inserted_rows.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of rows inserted in all tables.','0','30d','0','','30825','','','','','200','1','0','','','0','0','0','0','0','0','0','e09cfd7db8be48a485bda8c5f033d210','0','2','0'), ('30861','18','','10323','Mapped memory','clickhouse.jemalloc.mapped','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of bytes in active extents mapped by the allocator.','0','30d','0','','30824','','','','','200','1','0','','','0','0','0','0','0','0','0','7aa71031aec74fbb9a2ec126076705a2','0','2','0'), ('30862','18','','10323','Network errors per second','clickhouse.network.error.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Network errors (timeouts and connection failures) during query execution, background pool tasks and DNS cache update.','0','30d','0','','30825','','','','','200','1','0','','','0','0','0','0','0','0','0','83061f56dce24364906cae761419b148','0','2','0'), ('30863','18','','10323','Resident memory','clickhouse.jemalloc.resident','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum number of bytes in physically resident data pages mapped by the allocator, comprising all pages dedicated to allocator metadata, pages backing active allocations, and unused dirty pages.','0','30d','0','','30824','','','','','200','1','0','','','0','0','0','0','0','0','0','32cc450854e94c6a9adbdde3c76b94d7','0','2','0'), ('30864','18','','10323','Max count of parts per partition across all tables','clickhouse.max.part.count.for.partition','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Clickhouse MergeTree table engine split each INSERT query to partitions (PARTITION BY expression) and add one or more PARTS per INSERT inside each partition, after that background merge process run.','0','30d','0','','30824','','','','','200','1','0','','','0','0','0','0','0','0','0','c99265c296f14189aaf65bf68b7d5037','0','2','0'), ('30865','18','','10323','Memory used for queries','clickhouse.memory.tracking','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total amount of memory (bytes) allocated in currently executing queries.','0','30d','0','','30826','','','','','200','1','0','','','0','0','0','0','0','0','0','a4344162643142c9be3b09439b466a5d','0','2','0'), ('30866','18','','10323','Memory used for background merges','clickhouse.memory.tracking.background','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total amount of memory (bytes) allocated in background processing pool (that is dedicated for background merges, mutations and fetches). Note that this value may include a drift when the memory was allocated in a context of background processing pool and freed in other context or vice-versa. This happens naturally due to caches for tables indexes and doesn''t indicate memory leaks.','0','30d','0','','30826','','','','','200','1','0','','','0','0','0','0','0','0','0','921670c46d9a4e5b85f2049d64298ab4','0','2','0'), ('30867','18','','10323','Memory used for background moves','clickhouse.memory.tracking.background.moves','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total amount of memory (bytes) allocated in background processing pool (that is dedicated for background moves). Note that this value may include a drift when the memory was allocated in a context of background processing pool and freed in other context or vice-versa. This happens naturally due to caches for tables indexes and doesn''t indicate memory leaks.','0','30d','0','','30826','','','','','200','1','0','','','0','0','0','0','0','0','0','f881ea3cb2a2434d9cfac0d0896279f5','0','2','0'), ('30868','18','','10323','Memory used for merges','clickhouse.memory.tracking.merges','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total amount of memory (bytes) allocated for background merges. Included in MemoryTrackingInBackgroundProcessingPool. Note that this value may include a drift when the memory was allocated in a context of background processing pool and freed in other context or vice-versa. This happens naturally due to caches for tables indexes and doesn''t indicate memory leaks.','0','30d','0','','30826','','','','','200','1','0','','','0','0','0','0','0','0','0','3cd23448136c4ea8892483b1fbacec82','0','2','0'), ('30869','18','','10323','Memory used for background schedule pool','clickhouse.memory.tracking.schedule.pool','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total amount of memory (bytes) allocated in background schedule pool (that is dedicated for bookkeeping tasks of Replicated tables).','0','30d','0','','30826','','','','','200','1','0','','','0','0','0','0','0','0','0','1f4641ef040546e0afcccc818f4d3471','0','2','0'), ('30870','18','','10323','Uncompressed bytes merged per second','clickhouse.merge_bytes.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Uncompressed bytes that were read for background merges','0','30d','0','','30825','','','','','200','1','0','','','0','0','0','0','0','0','0','50e33e8fc1904870bdc6d7f13d16943d','0','2','0'), ('30871','18','','10323','Merged rows per second','clickhouse.merge_rows.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Rows read for background merges.','0','30d','0','','30825','','','','','200','1','0','','','0','0','0','0','0','0','0','a2afbf66601344bdb5ab72a7374bbe8b','0','2','0'), ('30872','18','','10323','Current running merges','clickhouse.merge.current','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of executing background merges','0','30d','0','','30826','','','','','200','1','0','','','0','0','0','0','0','0','0','5e98b9c4f1ee42238f363d76354ef537','0','2','0'), ('30873','18','','10323','ZooKeeper watches','clickhouse.zookeeper.watch','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of watches (e.g., event subscriptions) in ZooKeeper.','0','30d','0','','30826','','','','','200','1','0','','','0','0','0','0','0','0','0','696aa071a9b24b29acbce2f1b5c49da3','0','2','0'), ('30874','18','','10323','Dictionaries','clickhouse.dictionaries.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Info about dictionaries','0','7d','1','','30830','','','','','200','1','0','','','0','0','0','0','0','0','0','add428c918e34dc9aeb58f946f16cbd2','0','2','0'), ('30875','18','','10323','Replicas','clickhouse.replicas.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Info about replicas','0','7d','1','','30823','','','','','200','1','0','','','0','0','0','0','0','0','0','ddb7c8c688264a5a8907fbdd6974d395','0','2','0'), ('30876','18','','10323','Tables','clickhouse.tables.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Info about tables','0','7d','1','','30828','','','','','200','1','0','','','0','0','0','0','0','0','0','a82f8d0f0a4b493dab0c2133b90113cc','0','2','0'), ('30897','18','','10264','Workers reading request','apache.workers.reading','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of workers in reading state.','0','30d','0','','30896','','','','','200','1','0','','','0','0','0','0','0','0','0','6c38147f9f3449a194f36a6e6d828865','0','2','0'), ('30898','18','','10264','Workers waiting for connection','apache.workers.waiting','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of workers in waiting state.','0','30d','0','','30896','','','','','200','1','0','','','0','0','0','0','0','0','0','ec87e89ee9304acd8c7a76e863cb4443','0','2','0'), ('30899','18','','10264','Workers starting up','apache.workers.starting','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of workers in starting state.','0','30d','0','','30896','','','','','200','1','0','','','0','0','0','0','0','0','0','441c797164bf4c8da8112d78240abc43','0','2','0'), ('30900','18','','10264','Workers slot with no current process','apache.workers.slot','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of slots with no current process.','0','30d','0','','30896','','','','','200','1','0','','','0','0','0','0','0','0','0','60cf954a40594cf69afdd1bf0319c031','0','2','0'), ('30901','18','','10264','Workers sending reply','apache.workers.sending','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of workers in sending state.','0','30d','0','','30896','','','','','200','1','0','','','0','0','0','0','0','0','0','47856ac3b68644e0861b593d3083d35b','0','2','0'), ('30902','18','','10264','Total bytes','apache.bytes','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total bytes served.','0','30d','0','','30896','','','','','200','1','0','','','0','0','0','0','0','0','0','2d3ebb059bd944ee8a7b95e2c60b08f0','0','2','0'), ('30903','18','','10264','Bytes per second','apache.bytes.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'It is calculated as a rate of change for total bytes statistics. `BytesPerSec` is not used, as it counts the average since the last Apache server start.','0','30d','0','','30896','','','','','200','1','0','','','0','0','0','0','0','0','0','be97c53d82f846cdbc2d0ec640435b6f','0','2','0'), ('30904','18','','10264','Workers keepalive (read)','apache.workers.keepalive','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of workers in `keepalive` state.','0','30d','0','','30896','','','','','200','1','0','','','0','0','0','0','0','0','0','2a02413c0e9144b4a70b8a5a71d680e0','0','2','0'), ('30905','18','','10264','Workers finishing','apache.workers.finishing','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of workers in finishing state.','0','30d','0','','30896','','','','','200','1','0','','','0','0','0','0','0','0','0','fd383c9ace4647deb9d3e3882554b8d0','0','2','0'), ('30906','18','','10264','Workers DNS lookup','apache.workers.dnslookup','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of workers in `dnslookup` state.','0','30d','0','','30896','','','','','200','1','0','','','0','0','0','0','0','0','0','6a961707e7084d8ebc09f572b15ef1fd','0','2','0'), ('30907','18','','10264','Workers closing connection','apache.workers.closing','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of workers in closing state.','0','30d','0','','30896','','','','','200','1','0','','','0','0','0','0','0','0','0','ebd391702cbd432ab458578a3cb45361','0','2','0'), ('30908','18','','10264','Workers idle cleanup','apache.workers.cleanup','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of workers in cleanup state.','0','30d','0','','30896','','','','','200','1','0','','','0','0','0','0','0','0','0','35f48761ec6d451bbb8b0d80cd0ccd91','0','2','0'), ('30909','18','','10264','Total workers idle','apache.workers_total.idle','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of idle worker threads/processes.','0','30d','0','','30896','','','','','200','1','0','','','0','0','0','0','0','0','0','6955f78c203b435987b5ab75a1114867','0','2','0'), ('30910','18','','10264','Total workers busy','apache.workers_total.busy','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of busy worker threads/processes.','0','30d','0','','30896','','','','','200','1','0','','','0','0','0','0','0','0','0','b52addb50ccb415fb63eaf67076991c1','0','2','0'), ('30911','18','','10264','Version','apache.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The Apache service version.','0','30d','0','','30896','','','','','200','1','0','','','0','0','0','0','0','0','0','78a611c2b15c4ae8949257b6fdf922f1','0','2','0'), ('30912','18','','10264','Uptime','apache.uptime','0','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The service uptime expressed in seconds.','0','30d','0','','30896','','','','','200','1','0','','','0','0','0','0','0','0','0','5a4bd2d6c2874d888ec4c82409e1c711','0','2','0'), ('30913','18','','10264','Requests per second','apache.requests.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'It is calculated as a rate of change for the "Total requests" statistics. `ReqPerSec` is not used, as it counts the average since the last Apache server start.','0','30d','0','','30896','','','','','200','1','0','','','0','0','0','0','0','0','0','7e1e674a23d24fafa31b76a048fe9fd0','0','2','0'), ('30914','18','','10264','Total requests','apache.requests','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of the Apache server accesses.','0','30d','0','','30896','','','','','200','1','0','','','0','0','0','0','0','0','0','5919f29c692b468fb5642e83f408c2e5','0','2','0'), ('30915','18','','10264','Workers logging','apache.workers.logging','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of workers in logging state.','0','30d','0','','30896','','','','','200','1','0','','','0','0','0','0','0','0','0','ed71fb2ec75f4537a2937293add75274','0','2','0'), ('30916','18','','10264','Event MPM discovery','apache.mpm.event.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The discovery of additional metrics if the event Multi-Processing Module (MPM) is used. For more details see [Apache MPM event](https://httpd.apache.org/docs/current/mod/event.html).','0','7d','0','','30896','','','','','200','1','0','','','0','0','0','0','0','0','0','36a82bdda7754c51a05da3bb0b65b83e','0','2','0'), ('30917','18','','10264','Bytes per request','apache.bytes[per_request{#SINGLETON}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The average number of client requests per second.','0','30d','0','','30896','','','','','200','1','0','','','0','0','0','0','0','0','0','99df2ff5970b4497887371bcd16d5ada','0','2','0'), ('30918','18','','10264','Connections async closing','apache.connections[async_closing{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of asynchronous connections in closing state (applicable only to the event MPM).','0','30d','0','','30896','','','','','200','1','0','','','0','0','0','0','0','0','0','2e0692f36b924b52ab7b2ff7788b641d','0','2','0'), ('30919','18','','10264','Connections async keepalive','apache.connections[async_keep_alive{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of asynchronous connections in keepalive state (applicable only to the event MPM).','0','30d','0','','30896','','','','','200','1','0','','','0','0','0','0','0','0','0','33d3fec8f45c493097bab986d5ea1e55','0','2','0'), ('30920','18','','10264','Connections async writing','apache.connections[async_writing{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of asynchronous connections in writing state (applicable only to the event MPM).','0','30d','0','','30896','','','','','200','1','0','','','0','0','0','0','0','0','0','9ad0e5c49e7c4b939eb7977a5158953f','0','2','0'), ('30921','18','','10264','Connections total','apache.connections[total{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of total connections.','0','30d','0','','30896','','','','','200','1','0','','','0','0','0','0','0','0','0','0fbfbfae187040c790bb4d68f9e2fae5','0','2','0'), ('30922','18','','10264','Number of async processes','apache.process[num{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of asynchronous processes.','0','30d','0','','30896','','','','','200','1','0','','','0','0','0','0','0','0','0','778a1bfeaa1b474ba529e6c0a55a9949','0','2','0'), ('30927','18','','10324','Open file descriptors','etcd.open.fds','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of open file descriptors.','0','30d','0','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','d5099d4cdb3044ba95935c2aea2b6352','0','2','0'), ('30928','18','','10324','Proposals applied per second','etcd.proposals.applied.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of consensus proposals applied.','0','30d','0','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','a2927b1e85af41cab9c28b1b79c229ea','0','2','0'), ('30929','18','','10324','Proposals committed per second','etcd.proposals.committed.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of consensus proposals committed.','0','30d','0','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','e829f3df055e42dfbce5f27eb7ca487c','0','2','0'), ('30930','18','','10324','Proposals failed per second','etcd.proposals.failed.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of failed proposals seen.','0','30d','0','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','6b45b99526394a219d31b5c22cb98c85','0','2','0'), ('30931','18','','10324','Proposals pending','etcd.proposals.pending','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of pending proposals to commit.','0','30d','0','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','1c506ff69e7b4564a6d95fd35b1a11fd','0','2','0'), ('30932','18','','10324','PUT per second','etcd.put.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of puts seen by this member per second.','0','30d','0','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','bd7398507c274bfab53339380df16761','0','2','0'), ('30933','18','','10324','Range per second','etcd.range.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of ranges seen by this member per second.','0','30d','0','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','b744c07f3290467b96b21ea38ad5d497','0','2','0'), ('30934','18','','10324','Reads per second','etcd.reads.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of read actions by `get/getRecursive`, local to this member.','0','30d','0','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','88c91b36eca94fd2b357a67d171dc621','0','2','0'), ('30935','18','','10324','Client gRPC received bytes per second','etcd.network.grpc.received.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of bytes received from gRPC clients per second.','0','30d','0','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','d016b8674ebd4251943f2e94b22f5ff2','0','2','0'), ('30936','18','','10324','Resident memory','etcd.res.bytes','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The size of resident memory expressed in bytes.','0','30d','0','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','4b881e32094e4f478c5d0849cb5d07a7','0','2','0'), ('30937','18','','10324','Server version','etcd.server.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The version of the `etcd server`.','0','30d','0','','30926','','','','','200','1','0','','','0','0','0','0','0','0','0','dee9ed8897cf4d3582957707ea09cdf8','0','2','0'), ('30938','18','','10324','Transaction per second','etcd.txn.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of transactions seen by this member per second.','0','30d','0','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','b14c787c716146e990bc388d277a2803','0','2','0'), ('30939','18','','10324','Uptime','etcd.uptime','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'`Etcd` server uptime.','0','30d','0','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','98ec9085d621446aa462efc86cf93905','0','2','0'), ('30940','18','','10324','Virtual memory','etcd.virtual.bytes','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The size of virtual memory expressed in bytes.','0','30d','0','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','c35810b8b7bc4a62970b5293fb2d8fb2','0','2','0'), ('30941','18','','10324','Writes per second','etcd.writes.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of writes (e.g., `set/compareAndDelete`) seen by this member.','0','30d','0','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','16c041fc189248bfaaa5826ffaf38459','0','2','0'), ('30942','18','','10324','Client gRPC sent bytes per second','etcd.network.grpc.sent.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of bytes sent from gRPC clients per second.','0','30d','0','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','e50d2d088c6448dbb3ecaeebc3b2b8f1','0','2','0'), ('30943','18','','10324','Cluster version','etcd.cluster.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The version of the `etcd cluster`.','0','30d','0','','30926','','','','','200','1','0','','','0','0','0','0','0','0','0','32a59c8e93e141d6a471266df6dbfbd3','0','2','0'), ('30944','18','','10324','Maximum open file descriptors','etcd.max.fds','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The Maximum number of open file descriptors.','0','30d','0','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','348e15d2ec3a4bb88e2ca371f96c2f00','0','2','0'), ('30945','18','','10324','Server has a leader','etcd.has.leader','0','31d','365d','0','3','','','','',NULL,'151','','','0','','','','','0',NULL,'It defines - whether or not a leader exists: 1 - it exists; 0 - it does not.','0','30d','0','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','e03575f4c472410eb6fbcf731ac6aab2','0','2','0'), ('30946','18','','10324','DB size','etcd.db.size','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total size of the underlying database.','0','30d','0','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','bfa5bd42637642808802f7b2485a0c4d','0','2','0'), ('30947','18','','10324','Deletes per second','etcd.delete.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of deletes seen by this member per second.','0','30d','0','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','a5bc7ffb090641ab92f537b38b6055e5','0','2','0'), ('30948','18','','10324','Pending events','etcd.events.sent.rate','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of pending events to be sent.','0','30d','0','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','183843bd93f84dc887a03fb638b2d323','0','2','0'), ('30949','18','','10324','RPCs received per second','etcd.grpc.received.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of RPC stream messages received on the server.','0','30d','0','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','d23baf75628043e193ba0a607e1b4215','0','2','0'), ('30950','18','','10324','RPCs sent per second','etcd.grpc.sent.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of gRPC stream messages sent by the server.','0','30d','0','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','eda81182710e47e1b5f2f21bb05b4775','0','2','0'), ('30951','18','','10324','RPCs started per second','etcd.grpc.started.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of RPCs started on the server.','0','30d','0','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','bf59a130b20d480d93eb9330750e8e28','0','2','0'), ('30952','18','','10324','HTTP 4XX','etcd.http.requests.4xx.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of handled failures of requests (non-watches), by the method (`GET/PUT` etc.), and the code `4XX`.','0','30d','0','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','923a408dd4514e808b6e2137a94f8140','0','2','0'), ('30953','18','','10324','CPU','etcd.cpu.util','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The total user and system CPU time spent in seconds.','0','30d','0','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','04b0fa552b7d4267b4c5b67ee82ef5f1','0','2','0'), ('30954','18','','10324','HTTP 5XX','etcd.http.requests.5xx.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of handled failures of requests (non-watches), by the method (`GET/PUT` etc.), and the code `5XX`.','0','30d','0','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','c0f27d4bfba344079a31ce8c10b22683','0','2','0'), ('30955','18','','10324','HTTP requests received','etcd.http.requests.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of requests received into the system (successfully parsed and `authd`).','0','30d','0','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','2a19db1c58ee4a509061fcb1b557c1a3','0','2','0'), ('30956','18','','10324','Server is a leader','etcd.is.leader','0','31d','365d','0','3','','','','',NULL,'151','','','0','','','','','0',NULL,'It defines - whether or not this member is a leader: 1 - it is; 0 - otherwise.','0','30d','0','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','b3760811472440baad6a338f481ba13a','0','2','0'), ('30957','18','','10324','Keys compacted per second','etcd.keys.compacted.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of DB keys compacted per second.','0','30d','0','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','ecd1ae9c038f4fc2b720ad562ced0191','0','2','0'), ('30958','18','','10324','Keys expired per second','etcd.keys.expired.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of expired keys per second.','0','30d','0','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','a3f910efb0a04cc494c07b8703f9d2ec','0','2','0'), ('30959','18','','10324','Keys total','etcd.keys.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of keys.','0','30d','0','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','fbda737014544cf1bcf544a48aa6e48b','0','2','0'), ('30960','18','','10324','Leader changes','etcd.leader.changes','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of leader changes the member has seen since its start.','0','30d','0','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','e45ba61d99b8432b86f5797a2cfdb416','0','2','0'), ('30961','18','','10324','gRPC codes discovery','etcd.grpc_code.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','5e6121383e5d4f3eb1150a2068a4633b','0','2','0'), ('30962','18','','10324','Peers discovery','etcd.peer.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','b7b527ee30b84a569afcd1f85b705810','0','2','0'), ('30963','18','','10324','RPCs completed with code {#GRPC.CODE}','etcd.grpc.handled.rate[{#GRPC.CODE}]','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of RPCs completed on the server with grpc_code {#GRPC.CODE}.','0','30d','0','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','7d316cbec2ce4718ac133d90b7a89585','0','2','0'), ('30964','18','','10324','Etcd peer {#ETCD.PEER}: Bytes received','etcd.bytes.received.rate[{#ETCD.PEER}]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of bytes received from a peer with the ID `{#ETCD.PEER}`.','0','30d','0','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','4129aa7b8acf4ca3b5476461fe5275c9','0','2','0'), ('30965','18','','10324','Etcd peer {#ETCD.PEER}: Bytes sent','etcd.bytes.sent.rate[{#ETCD.PEER}]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of bytes sent to a peer with the ID `{#ETCD.PEER}`.','0','30d','0','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','8f5fecbabe474baaab40df46879401af','0','2','0'), ('30966','18','','10324','Etcd peer {#ETCD.PEER}: Receive failures','etcd.received.fail.rate[{#ETCD.PEER}]','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of received failures from a peer with the ID `{#ETCD.PEER}`.','0','30d','0','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','2521ccfc16fc43069001883b85aa0243','0','2','0'), ('30967','18','','10324','Etcd peer {#ETCD.PEER}: Send failures','etcd.sent.fail.rate[{#ETCD.PEER}]','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of sent failures from a peer with the ID `{#ETCD.PEER}`.','0','30d','0','','30925','','','','','200','1','0','','','0','0','0','0','0','0','0','5756f1a16e5c42b79f6d6225c5382599','0','2','0'), ('31052','18','','10262','Version','version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The version of Zabbix proxy.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','ba19f24c2e234ac89a12a4a7aceeff93','0','2','0'), ('31053','18','','10261','Version','version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The version of Zabbix server.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','f0eab81aaf464b809ea4d487548e57c6','0','2','0'), ('31079','18','','10327','Total transactions number','mssql.transactions','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of currently active transactions of all types.','0','30d','0','','31055','','','','','200','1','0','','','0','0','0','0','0','0','0','273b373d8b41411fafcfd1e93bb8ce2c','0','2','0'), ('31082','18','','10327','Uptime','mssql.uptime','0','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MSSQL Server uptime in the format "N days, hh:mm:ss".','0','30d','0','','31055','','','','','200','1','0','','','0','0','0','0','0','0','0','27449e795c0a4e4e90c9ee6b6bf3df90','0','2','0'), ('31085','18','','10327','Version','mssql.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MSSQL Server version.','0','30d','0','','31055','','','','','200','1','0','','','0','0','0','0','0','0','0','7013504d4a6c4b40a0aab11dab15d107','0','2','0'), ('31123','18','','10327','Database discovery','mssql.database.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning databases in DBMS.','0','7d','1','','46409','','','','','200','1','0','','','0','0','0','0','0','0','0','2e38ea24c9bf4a5480df0816b7c659b3','0','2','0'), ('31168','18','','10316','Threads created per second','mysql.threads_created.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of threads created to handle connections. If the value of `Threads_created` is large, you may want to increase the `thread_cache_size` value. The cache miss rate can be calculated as `Threads_created`/`Connections`.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','06976fcb42ab4a33b0056a864ecd31e7','0','2','0'), ('31169','18','','10316','Created tmp tables on disk per second','mysql.created_tmp_disk_tables.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of internal on-disk temporary tables created by the server while executing statements.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','52335a039571454ebaccc9ab103200a3','0','2','0'), ('31170','18','','10316','Created tmp files on disk per second','mysql.created_tmp_files.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'How many temporary files `mysqld` has created.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','d1dd183666d44010a5054f2e1cc328de','0','2','0'), ('31171','18','','10316','Created tmp tables on memory per second','mysql.created_tmp_tables.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of internal temporary tables created by the server while executing statements.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','c9a94c3145a643ef8ceec33f63b85ae9','0','2','0'), ('31172','18','','10320','Threads created per second','mysql.threads_created.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of threads created to handle connections. If the value of `Threads_created` is large, you may want to increase the `thread_cache_size` value. The cache miss rate can be calculated as `Threads_created`/`Connections`.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','eaab0b45e023459fa5c1e8b76e860431','0','2','0'), ('31173','18','','10320','Created tmp tables on disk per second','mysql.created_tmp_disk_tables.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of internal on-disk temporary tables created by the server while executing statements.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','aaf0c77bf1b647e09633db28480ddfd7','0','2','0'), ('31174','18','','10320','Created tmp files on disk per second','mysql.created_tmp_files.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'How many temporary files `mysqld` has created.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','970c9a50e7304c4eb81c46f4456c3350','0','2','0'), ('31175','18','','10320','Created tmp tables on memory per second','mysql.created_tmp_tables.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of internal temporary tables created by the server while executing statements.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','fef23a9c80e84d87803f3540277ade1e','0','2','0'), ('31176','18','','10317','Threads created per second','mysql.threads_created.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of threads created to handle connections. If the value of `Threads_created` is large, you may want to increase the `thread_cache_size` value. The cache miss rate can be calculated as `Threads_created`/`Connections`.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','8a50d5788f8a449b994dbe76536076a2','0','2','0'), ('31177','18','','10317','Created tmp tables on disk per second','mysql.created_tmp_disk_tables.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of internal on-disk temporary tables created by the server while executing statements.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','84d748ab80444e10bdb60bcfbdfa850a','0','2','0'), ('31178','18','','10317','Created tmp tables on memory per second','mysql.created_tmp_tables.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of internal temporary tables created by the server while executing statements.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','95fa4f4f1db44b2bb65889da246c03b5','0','2','0'), ('31179','18','','10317','Created tmp files on disk per second','mysql.created_tmp_files.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'How many temporary files `mysqld` has created.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','c5f2ae1ef46e4f65842ab4a31625906a','0','2','0'), ('31189','18','','10328','Version','oracle.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The Oracle Server version.','0','30d','0','','31188','','','','','200','1','0','','','0','0','0','0','0','0','0','45143cb0d0284608bf48897885a91bbb','0','2','0'), ('31190','18','','10328','Sessions lock rate','oracle.session_lock_rate','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of locked sessions. Locks are mechanisms that prevent destructive interaction between transactions accessing the same resource - either user objects, such as tables and rows or system objects not visible to users, such as shared data structures in memory and data dictionary rows.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','64361f8862e8482d86a8bdd71c709142','0','2','0'), ('31191','18','','10328','Physical writes per second','oracle.physical_writes_rate','0','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Writes per second.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','d20f81d99e6647479abcc9ffcbc208fc','0','2','0'), ('31192','18','','10328','Number of processes','oracle.processes_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of user processes.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','533ae91bb94e4077870aa362a8cea7e5','0','2','0'), ('31193','18','','10328','Processes limit','oracle.processes_limit','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum number of user processes.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','721c04b5f3ba42d0ae7acceb5876c360','0','2','0'), ('31194','18','','10328','Redo logs available to switch','oracle.redo_logs_available','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of inactive/unused redo logs available for log switching.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','65064008eef54657b7b7f2beeba70b0a','0','2','0'), ('31195','18','','10328','Rows per sort','oracle.rows_per_sort','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The average number of rows per sort for all types of sorts performed.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','ab298981f26a4ec6849e1155ce35ee76','0','2','0'), ('31196','18','','10328','SQL service response time','oracle.service_response_time','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The Structured Query Language (SQL) service response time expressed in seconds.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','ddbdd3d7d40d42b9b9711470516a5aec','0','2','0'), ('31197','18','','10328','Active background sessions','oracle.session_active_background','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active background sessions.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','e269a27f3c3f47ae86fef231da2a6fce','0','2','0'), ('31198','18','','10328','Active user sessions','oracle.session_active_user','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active user sessions.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','6e8defc1e3e2485784d8bef6e2b988c7','0','2','0'), ('31199','18','','10328','Sessions concurrency','oracle.session_concurrency_rate','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of concurrency. Concurrency is a database behavior when different transactions request to change the same resource. In the case of modifying data transactions, it sequentially temporarily blocks the right to change the data, and the rest of the transactions wait for access. When the access to a resource is locked for a long time, the concurrency grows (like the transaction queue), often leaving an extremely negative impact on performance. A high contention value does not indicate the root cause of the problem, but is a signal to search for it.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','a3f2b314a6354d238d6604afa2333ae6','0','2','0'), ('31200','18','','10328','Session count','oracle.session_count','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The session count.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','3459ae7c82454882a9655db8a83120fd','0','2','0'), ('31201','18','','10328','Inactive user sessions','oracle.session_inactive_user','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of inactive user sessions.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','5abf01d0bad442e7817752ae01dfc2d2','0','2','0'), ('31202','18','','10328','Sessions limit','oracle.session_limit','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The user and system sessions.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','ebc142a0784041d2bbe982c4d766b98f','0','2','0'), ('31203','18','','10328','Sessions locked over {$ORACLE.SESSION.LOCK.MAX.TIME}s','oracle.session_long_time_locked','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of the prolongedly locked sessions. (You can change the duration of the maximum session lock in seconds for a query using the `{$ORACLE.SESSION.LOCK.MAX.TIME}` macro. Default = 600 s).','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','a9669cb6290b4a158e7f02c1f079b6f9','0','2','0'), ('31204','18','','10328','User rollbacks per second','oracle.user_rollbacks_rate','0','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of times that users manually issued the `ROLLBACK` statement or an error occurred during the users'' transactions.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','3455378f6ecf4ecb93a69d2387e4a57d','0','2','0'), ('31205','18','','10328','SGA, buffer cache','oracle.sga_buffer_cache','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The size of standard block cache.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','94fe3a129f08415bb7e02a862bd9e8a8','0','2','0'), ('31206','18','','10328','Physical writes bytes per second','oracle.physical_write_bytes_rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Write bytes per second.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','e2e21384fbae431a88f1eef610b0307b','0','2','0'), ('31207','18','','10328','SGA, java pool','oracle.sga_java_pool','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The memory is allocated from the Java pool.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','614066ff91e144dbae58b4920c1db932','0','2','0'), ('31208','18','','10328','SGA, large pool','oracle.sga_large_pool','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The memory is allocated from a large pool.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','0f726310d4a8426188658f7c093c3989','0','2','0'), ('31209','18','','10328','SGA, log buffer','oracle.sga_log_buffer','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of bytes allocated for the redo log buffer.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','03e9cea3887447349c9116b89b1be026','0','2','0'), ('31210','18','','10328','SGA, shared pool','oracle.sga_shared_pool','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The memory is allocated from a shared pool.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','eb4c2f63ef8449d99794e5fdb7fed7bf','0','2','0'), ('31211','18','','10328','Shared pool free %','oracle.shared_pool_free','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Free memory of a shared pool expressed in %.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','b14b0126cf64436ea206ec151984cd95','0','2','0'), ('31212','18','','10328','Total sorts per user call','oracle.sorts_per_user_call','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total sorts per user call.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','8b3e958d76d14ef7a6869634106f1277','0','2','0'), ('31213','18','','10328','Temp space used','oracle.temp_space_used','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Used temporary space.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','fc2cff59b0804989989179e1dbc338b5','0','2','0'), ('31214','18','','10328','PGA, Total allocated','oracle.total_pga_allocated','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The current amount of the PGA memory allocated by the instance. The Oracle Database attempts to keep this number below the value of the `PGA_AGGREGATE_TARGET` initialization parameter. However, it is possible for the PGA allocated to exceed that value by a small percentage and for a short period of time when the work area workload is increasing very rapidly or when `PGA_AGGREGATE_TARGET` is set to a small value.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','085c097ab3b34f07b262caf80703b469','0','2','0'), ('31215','18','','10328','PGA, Total freeable','oracle.total_pga_freeable','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of bytes of the PGA memory in all processes that could be freed back to the OS.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','c2c18a0a502d4fbe91db25d29ae57d45','0','2','0'), ('31216','18','','10328','PGA, Total inuse','oracle.total_pga_used','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of Program Global Area (PGA) memory currently consumed by work areas. This number can be used to determine how much memory is consumed by other consumers of the PGA memory (for example, PL/SQL or Java).','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','e0e88ce92ece4ca0b776f09dc4ec5039','0','2','0'), ('31217','18','','10328','Uptime','oracle.uptime','0','31d','0','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The Oracle instance uptime expressed in seconds.','0','30d','0','','31188','','','','','200','1','0','','','0','0','0','0','0','0','0','3c817d2b45fc471aa86771ce1739de6f','0','2','0'), ('31218','18','','10328','User ''{$ORACLE.USER}'' expire password','oracle.user_expire_password','0','31d','365d','0','0','','days','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of days before the Zabbix account password expires.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','ad275dbbe8af483b93d37e416c3f1fd2','0','2','0'), ('31219','18','','10328','SGA, fixed','oracle.sga_fixed','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The fixed System Global Area (SGA) is an internal housekeeping area.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','062fbd601d6f41208e364c80f1d08b1e','0','2','0'), ('31220','18','','10328','Physical reads bytes per second','oracle.physical_read_bytes_rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Read bytes per second.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','2f305e09eafd4f7a9360f138be20a631','0','2','0'), ('31221','18','','10328','Physical reads per second','oracle.physical_reads_rate','0','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Reads per second.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','001bf0d526cb455386f5a63e6bb8f410','0','2','0'), ('31222','18','','10328','Enqueue timeouts per second','oracle.enqueue_timeouts_rate','0','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Enqueue timeouts per second.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','46e0598b703a412e96a3b18e2248e754','0','2','0'), ('31223','18','','10328','Active parallel sessions','oracle.active_parallel_sessions','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active parallel sessions.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','6b6ce717919e45df93015a8f65337055','0','2','0'), ('31224','18','','10328','Active serial sessions','oracle.active_serial_sessions','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active serial sessions.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','928b095ffe57404eb6863b06b466524d','0','2','0'), ('31225','18','','10328','Average active sessions','oracle.active_sessions','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The average number of active sessions at a point in time that are either working or waiting.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','70633c6c4e27410dabcf035dd583f820','0','2','0'), ('31226','18','','10328','Archiver state','oracle.archiver_state','0','31d','365d','0','3','','','','',NULL,'174','','','0','','','','','0',NULL,'The status of automatic archiving.','0','30d','0','','31188','','','','','200','1','0','','','0','0','0','0','0','0','0','eb9f4179a87249fc9df9989f58502a12','0','2','0'), ('31227','18','','10328','Buffer cache hit ratio','oracle.buffer_cache_hit_ratio','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The ratio of buffer cache hits ((LogRead - PhyRead)/LogRead).','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','836e01f5247a468dbf1866a744979376','0','2','0'), ('31228','18','','10328','Global cache blocks corrupted','oracle.cache_blocks_corrupt','0','31d','365d','0','3','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of blocks that encountered corruption or checksum failure during the interconnect.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','dedafce88267427a8f0b51d74de28c58','0','2','0'), ('31229','18','','10328','Global cache blocks lost','oracle.cache_blocks_lost','0','31d','365d','0','3','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of lost global cache blocks.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','d0d0dbbf1869487d957e60d03e8e3512','0','2','0'), ('31230','18','','10328','Cursor cache hit ratio','oracle.cursor_cache_hit_ratio','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The ratio of cursor cache hits (CursorCacheHit/SoftParse).','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','50ea6f52e01c44e5b9039add026faaa2','0','2','0'), ('31231','18','','10328','Database CPU time ratio','oracle.database_cpu_time_ratio','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The ratio calculated by dividing the total CPU (used by the database) by the Oracle time model statistic DB time.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','82228fbb70bf4660aa64bdde2f57686d','0','2','0'), ('31232','18','','10328','Database wait time ratio','oracle.database_wait_time_ratio','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Wait time - the time that the server process spends waiting for available shared resources to be released by other server processes such as latches, locks, data buffers, etc.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','877272b0b9424d279b1efaa6536eb19b','0','2','0'), ('31233','18','','10328','Datafiles count','oracle.db_files_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of datafiles.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','751fe010337e40a5a12fc24d327ffcee','0','2','0'), ('31234','18','','10328','Datafiles limit','oracle.db_files_limit','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum allowable number of datafiles.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','a0e263bf207042058b5d9d2e735e05eb','0','2','0'), ('31235','18','','10328','Disk sort per second','oracle.disk_sorts','0','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of sorts going to disk per second.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','22d9cccf44924f99aaf444c80b3beab9','0','2','0'), ('31236','18','','10328','FRA, Number of files','oracle.fra_number_of_files','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of files in the FRA.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','beca246cadb44e48a20bc8809624a6f4','0','2','0'), ('31237','18','','10328','PGA, Aggregate target parameter','oracle.pga_target','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The current value of the `PGA_AGGREGATE_TARGET` initialization parameter. If this parameter is not set, then its value is "0" and automatic management of the PGA memory is disabled.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','1f532b6599f34db285b60a8879638d75','0','2','0'), ('31238','18','','10328','FRA, Number of restore points','oracle.fra_restore_point','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of restore points in the FRA.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','61eb041ea3b349df88cb3495b383fbe4','0','2','0'), ('31239','18','','10328','FRA, Space limit','oracle.fra_space_limit','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum amount of disk space (in bytes) that the database can use for the Fast Recovery Area (FRA).','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','375e094a1a024a19b8e69e4f362c0163','0','2','0'), ('31240','18','','10328','FRA, Space reclaimable','oracle.fra_space_reclaimable','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total amount of disk space (in bytes) that can be created by deleting obsolete, redundant, and other low-priority files from the FRA.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','4028e389cc9e4b24946657f1ded1ba47','0','2','0'), ('31241','18','','10328','FRA, Used space','oracle.fra_space_used','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of disk space (in bytes) used by FRA files created in the current and all the previous FRAs.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','40b03e917c3c4c0385536336e48affcb','0','2','0'), ('31242','18','','10328','FRA, Usable space in %','oracle.fra_usable_pct','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of space usable in the FRA.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','b29c93eecf9d4d1b8c5de1ce9721801f','0','2','0'), ('31243','18','','10328','GC CR block received per second','oracle.gc_cr_block_received_rate','0','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The global cache (GC) and the consistent read (CR) block received per second.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','3243beb0fe70425f8d71938a52f765ae','0','2','0'), ('31244','18','','10328','Instance hostname','oracle.instance_hostname','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The name of the host machine.','0','30d','0','','31188','','','','','200','1','0','','','0','0','0','0','0','0','0','3da27d558e034236a42b3b94bfa13159','0','2','0'), ('31245','18','','10328','Instance name','oracle.instance_name','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The name of the instance.','0','30d','0','','31188','','','','','200','1','0','','','0','0','0','0','0','0','0','4e5df3339a2940c6b3cdad6f5b65234b','0','2','0'), ('31246','18','','10328','Instance status','oracle.instance_status','0','31d','365d','0','3','','','','',NULL,'170','','','0','','','','','0',NULL,'The status of the instance.','0','30d','0','','31188','','','','','200','1','0','','','0','0','0','0','0','0','0','632a953eead74114bdaf640bbf5929a5','0','2','0'), ('31247','18','','10328','Instance role','oracle.instance.role','0','31d','365d','0','3','','','','',NULL,'172','','','0','','','','','0',NULL,'Indicates whether the instance is an active instance or an inactive secondary instance.','0','30d','0','','31188','','','','','200','1','0','','','0','0','0','0','0','0','0','cc3c9200deed42e5a8e187e82c123009','0','2','0'), ('31248','18','','10328','Library cache hit ratio','oracle.library_cache_hit_ratio','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The ratio of library cache hits (Hits/Pins).','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','9a3084287a354fb0b0eb5de377a6de92','0','2','0'), ('31249','18','','10328','Logons per second','oracle.logons_rate','0','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of logon attempts.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','ac44884b2518485eae4bc7caf46799a8','0','2','0'), ('31250','18','','10328','Long table scans per second','oracle.long_table_scans_rate','0','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of long table scans per second. A table is considered long if it is not cached and if its high water mark is greater than five blocks.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','f7691a5d7ef74a4d99cac61835052fba','0','2','0'), ('31251','18','','10328','PGA, Global memory bound','oracle.pga_global_bound','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum size of a work area executed in automatic mode.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','786188c7719048cb863450f98ab921ac','0','2','0'), ('31252','18','','10328','Memory sorts ratio','oracle.memory_sorts_ratio','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of sorts (from `ORDER BY` clauses or index building) that are done to disk vs. in-memory.','0','30d','0','','31185','','','','','200','1','0','','','0','0','0','0','0','0','0','49445baea18640ea844f869c51aee565','0','2','0'), ('31253','18','','10328','Archive log discovery','oracle.archivelog.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for the discovery of the log archive.','0','7d','0','','46960','','','','','200','1','0','','','0','0','0','0','0','0','0','a527b14b1cee4115be5c5e9387af821b','0','2','0'), ('31254','18','','10328','ASM disk groups discovery','oracle.asm.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for discovering the ASM disk groups.','0','7d','0','','46961','','','','','200','1','0','','','0','0','0','0','0','0','0','c40708b755c7464bb064b7bffc584381','0','2','0'), ('31255','18','','10328','Database discovery','oracle.db.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for database discovery.','0','7d','1','','46962','','','','','200','1','0','','','0','0','0','0','0','0','0','0f65936b86314c269b7720a9ff3f1c14','0','2','0'), ('31256','18','','10328','PDB discovery','oracle.pdb.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for the discovery of the pluggable database (PDB).','0','7d','1','','46963','','','','','200','1','0','','','0','0','0','0','0','0','0','2611e69f735a42b190852589658dd591','0','2','0'), ('31257','18','','10328','Tablespace discovery','oracle.tablespace.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for the discovery of tablespaces in DBMS.','0','7d','1','','46964','','','','','200','1','0','','','0','0','0','0','0','0','0','c8de553c98f64e59b40bf927f6447ad1','0','2','0'), ('31291','18','','10329','Dbstat: Rows fetched per second','pgsql.dbstat.sum.tup_fetched.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of rows fetched by queries per second.','0','30d','0','','31277','','','','','200','1','0','','','0','0','0','0','0','0','0','4eb6cc273484453bab1233de085363f5','0','2','0'), ('31292','18','','10329','Dbstat: Backends connected','pgsql.dbstat.sum.numbackends','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connected backends.','0','30d','0','','31277','','','','','200','1','0','','','0','0','0','0','0','0','0','c61f60e6f7d24ffe99db480f6bbd9613','0','2','0'), ('31293','18','','10329','Dbstat: Deadlocks per second','pgsql.dbstat.sum.deadlocks.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of deadlocks detected per second.','0','30d','0','','31277','','','','','200','1','0','','','0','0','0','0','0','0','0','e5d3838e5cf84be9ae83cacf22dc99af','0','2','0'), ('31294','18','','10329','Dbstat: Number temp bytes per second','pgsql.dbstat.sum.temp_bytes.rate','0','31d','365d','0','0','','b','','',NULL,NULL,'','','0','','','','','0',NULL,'Total amount of data written per second to temporary files by queries.','0','30d','0','','31277','','','','','200','1','0','','','0','0','0','0','0','0','0','96cb6b388b2c480ead1568293dd81e70','0','2','0'), ('31295','18','','10329','Dbstat: Number temp files per second','pgsql.dbstat.sum.temp_files.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of temporary files created by queries per second.','0','30d','0','','31277','','','','','200','1','0','','','0','0','0','0','0','0','0','bea47c8a95074ad3997aff64fcfcf49b','0','2','0'), ('31296','18','','10329','Dbstat: Rows deleted per second','pgsql.dbstat.sum.tup_deleted.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of rows deleted by queries per second.','0','30d','0','','31277','','','','','200','1','0','','','0','0','0','0','0','0','0','731f4adac9d34eaaaa1f8d5080fdf6ce','0','2','0'), ('31297','18','','10329','Archive: Count of archived files','pgsql.archive.count_archived_files','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of archived files.','0','30d','0','','31289','','','','','200','1','0','','','0','0','0','0','0','0','0','04b1c83463f247b0a42f17c5d0a9ce14','0','2','0'), ('31298','18','','10329','Dbstat: Rows inserted per second','pgsql.dbstat.sum.tup_inserted.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of rows inserted by queries per second.','0','30d','0','','31277','','','','','200','1','0','','','0','0','0','0','0','0','0','ae250ffa30c94df187c2010011e794aa','0','2','0'), ('31299','18','','10329','Dbstat: Rows returned per second','pgsql.dbstat.sum.tup_returned.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of rows returned by queries per second.','0','30d','0','','31277','','','','','200','1','0','','','0','0','0','0','0','0','0','3253ed1c96db4a84974e62b85d80bc0f','0','2','0'), ('31300','18','','10329','Dbstat: Rows updated per second','pgsql.dbstat.sum.tup_updated.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of rows updated by queries per second.','0','30d','0','','31277','','','','','200','1','0','','','0','0','0','0','0','0','0','13feadafa00a4bd293fcf1a98ddf1f39','0','2','0'), ('31301','18','','10329','Dbstat: Committed transactions per second','pgsql.dbstat.sum.xact_commit.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of transactions that have been committed per second.','0','30d','0','','31277','','','','','200','1','0','','','0','0','0','0','0','0','0','bc8a3b29a6684b7f8a70a54b962f0e7e','0','2','0'), ('31302','18','','10329','Dbstat: Roll backed transactions per second','pgsql.dbstat.sum.xact_rollback.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of transactions that have been rolled back per second.','0','30d','0','','31277','','','','','200','1','0','','','0','0','0','0','0','0','0','8aedfe3e385b447eb75b85f92301665a','0','2','0'), ('31303','18','','10329','Dbstat: Checksum failures per second','pgsql.dbstat.sum.checksum_failures.rate','0','31d','365d','0','0','','','','',NULL,'1097','','','0','','','','','0',NULL,'Number of data page checksum failures per second detected (or on a shared object), or NULL if data checksums are not enabled. This metric is available since PostgreSQL 12.','0','30d','0','','31277','','','','','200','1','0','','','0','0','0','0','0','0','0','1b98b9c95b32424baa68c354496ed2de','0','2','0'), ('31304','18','','10329','WAL: Segments count','pgsql.wal.count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of WAL segments.','0','30d','0','','31290','','','','','200','1','0','','','0','0','0','0','0','0','0','6d5aa6213cf248749cbffdea9aff694f','0','2','0'), ('31305','18','','10329','Dbstat: Conflicts per second','pgsql.dbstat.sum.conflicts.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of queries canceled per second due to conflicts with recovery (conflicts occur only on standby servers; see pg_stat_database_conflicts for details).','0','30d','0','','31277','','','','','200','1','0','','','0','0','0','0','0','0','0','0106dfc55ace4dacaff00ce2c98de2ea','0','2','0'), ('31306','18','','10329','Dbstat: Blocks write time','pgsql.dbstat.sum.blk_write_time','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time spent writing data file blocks by backends.','0','30d','0','','31277','','','','','200','1','0','','','0','0','0','0','0','0','0','fba3b51d644c4c16ac71b3eda1be1701','0','2','0'), ('31307','18','','10329','Dbstat: Disk blocks read per second','pgsql.dbstat.sum.blks_read.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of disk blocks read per second.','0','30d','0','','31277','','','','','200','1','0','','','0','0','0','0','0','0','0','4dc3f2c23dfd4dfebe024a5c2d4409ae','0','2','0'), ('31309','18','','10329','Archive: Count of failed attempts to archive files','pgsql.archive.failed_trying_to_archive','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of failed attempts to archive files.','0','30d','0','','31289','','','','','200','1','0','','','0','0','0','0','0','0','0','b60523c62afc4813aeb64cf9598fb7bd','0','2','0'), ('31310','18','','10329','Archive: Size of files need to archive','pgsql.archive.size_files_to_archive','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Size of files to archive.','0','30d','0','','31289','','','','','200','1','0','','','0','0','0','0','0','0','0','285f434f79864d24a4e66d5a49c539e9','0','2','0'), ('31311','18','','10329','Bgwriter: Buffers allocated per second','pgsql.bgwriter.buffers_alloc.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of buffers allocated per second.','0','30d','0','','31274','','','','','200','1','0','','','0','0','0','0','0','0','0','c49f777ae0db48879bc946989bfc36f6','0','2','0'), ('31312','18','','10329','Bgwriter: Times a backend executed its own fsync per second','pgsql.bgwriter.buffers_backend_fsync.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times a backend had to execute its own fsync call per second (normally the background writer handles those even when the backend does its own write). Available in PostgreSQL versions prior to 17.','0','30d','0','','31274','','','','','200','1','0','','','0','0','0','0','0','0','0','6e5990d8a0854efd83b3e6a57aa2c2f9','0','2','0'), ('31313','18','','10329','Bgwriter: Buffers written directly by a backend per second','pgsql.bgwriter.buffers_backend.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of buffers written directly by a backend per second. Available in PostgreSQL versions prior to 17.','0','30d','0','','31274','','','','','200','1','0','','','0','0','0','0','0','0','0','1624e89567824e0493492a3dcc979788','0','2','0'), ('31314','18','','10329','Checkpoint: Buffers written during checkpoints per second','pgsql.bgwriter.buffers_checkpoint.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of buffers written during checkpoints per second.','0','30d','0','','31274','','','','','200','1','0','','','0','0','0','0','0','0','0','3bf0496d313f4dfea67c95010be54372','0','2','0'), ('31315','18','','10329','Checkpoint: Buffers written by the background writer per second','pgsql.bgwriter.buffers_clean.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of buffers written by the background writer per second.','0','30d','0','','31274','','','','','200','1','0','','','0','0','0','0','0','0','0','65f4aeedbc7d40ed9a14e0dbd8024c4b','0','2','0'), ('31316','18','','10329','Checkpoint: Checkpoint write time per second','pgsql.bgwriter.checkpoint_write_time.rate','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Total amount of time per second that has been spent in the portion of checkpoint processing where files are written to disk.','0','30d','0','','31274','','','','','200','1','0','','','0','0','0','0','0','0','0','26839587c46043caa2991e973962b954','0','2','0'), ('31317','18','','10329','Checkpoint: Requested per second','pgsql.bgwriter.checkpoints_req.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of requested checkpoints that have been performed per second.','0','30d','0','','31274','','','','','200','1','0','','','0','0','0','0','0','0','0','23fcb5ee8c19436b827001114961eb16','0','2','0'), ('31318','18','','10329','Checkpoint: Scheduled per second','pgsql.bgwriter.checkpoints_timed.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of scheduled checkpoints that have been performed per second.','0','30d','0','','31274','','','','','200','1','0','','','0','0','0','0','0','0','0','9c578a8e072940728cc00d94f52cec8d','0','2','0'), ('31319','18','','10329','Bgwriter: Number of bgwriter cleaning scan stopped per second','pgsql.bgwriter.maxwritten_clean.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times the background writer stopped a cleaning scan because it had written too many buffers per second.','0','30d','0','','31274','','','','','200','1','0','','','0','0','0','0','0','0','0','b83939ecfb094a7e9eb42cd9a7e2695c','0','2','0'), ('31320','18','','10329','Connections sum: Active','pgsql.connections.sum.active','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections executing a query.','0','30d','0','','31276','','','','','200','1','0','','','0','0','0','0','0','0','0','2ea55460f0d34063ae4ab65b74ec852c','0','2','0'), ('31321','18','','10329','Dbstat: Hit blocks read per second','pgsql.dbstat.sum.blks_hit.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times per second disk blocks were found already in the buffer cache','0','30d','0','','31277','','','','','200','1','0','','','0','0','0','0','0','0','0','5c6de0fe332043bfb35c999b10893e4c','0','2','0'), ('31322','18','','10329','Connections sum: Disabled','pgsql.connections.sum.disabled','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of disabled connections.','0','30d','0','','31276','','','','','200','1','0','','','0','0','0','0','0','0','0','69f14028e98b48d489fbd7345c2213dd','0','2','0'), ('31323','18','','10329','Connections sum: Fastpath function call','pgsql.connections.sum.fastpath_function_call','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections executing a fast-path function.','0','30d','0','','31276','','','','','200','1','0','','','0','0','0','0','0','0','0','62a2401041724b4888bf058035dc6a0c','0','2','0'), ('31324','18','','10329','Connections sum: Idle','pgsql.connections.sum.idle','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections waiting for a new client command.','0','30d','0','','31276','','','','','200','1','0','','','0','0','0','0','0','0','0','fc3b357cc8a24c4aad60784d1bfb7e18','0','2','0'), ('31325','18','','10329','Connections sum: Idle in transaction','pgsql.connections.sum.idle_in_transaction','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections in a transaction state but not executing a query.','0','30d','0','','31276','','','','','200','1','0','','','0','0','0','0','0','0','0','b900a8123dfa48e0ac8fd4b92ae8678d','0','2','0'), ('31326','18','','10329','Connections sum: Idle in transaction (aborted)','pgsql.connections.sum.idle_in_transaction_aborted','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections in a transaction state but not executing a query, and where one of the statements in the transaction caused an error.','0','30d','0','','31276','','','','','200','1','0','','','0','0','0','0','0','0','0','99b0a3e14af44924b0319a0a9f6c16c7','0','2','0'), ('31327','18','','10329','Connections sum: Prepared','pgsql.connections.sum.prepared','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of prepared transactions: https://www.postgresql.org/docs/current/sql-prepare-transaction.html','0','30d','0','','31276','','','','','200','1','0','','','0','0','0','0','0','0','0','194c41f88e9e44879a70033913dd41d3','0','2','0'), ('31328','18','','10329','Connections sum: Total','pgsql.connections.sum.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections.','0','30d','0','','31276','','','','','200','1','0','','','0','0','0','0','0','0','0','1ec042e5853b430d9d7982c53c3fcf14','0','2','0'), ('31329','18','','10329','Connections sum: Total, %','pgsql.connections.sum.total_pct','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections, in percentage.','0','30d','0','','31276','','','','','200','1','0','','','0','0','0','0','0','0','0','101149dd68994084a1cdab82c9d064f0','0','2','0'), ('31330','18','','10329','Connections sum: Waiting','pgsql.connections.sum.waiting','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of waiting connections: https://www.postgresql.org/docs/current/monitoring-stats.html#WAIT-EVENT-TABLE','0','30d','0','','31276','','','','','200','1','0','','','0','0','0','0','0','0','0','f2c298008b914434b96da85a985e4a54','0','2','0'), ('31331','18','','10329','Dbstat: Blocks read time','pgsql.dbstat.sum.blk_read_time','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time spent reading data file blocks by backends.','0','30d','0','','31277','','','','','200','1','0','','','0','0','0','0','0','0','0','619211cc2afa4a159f36abf1a17d5476','0','2','0'), ('31332','18','','10329','Archive: Count of files in archive_status need to archive','pgsql.archive.count_files_to_archive','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of files to archive.','0','30d','0','','31289','','','','','200','1','0','','','0','0','0','0','0','0','0','729208d50ef64e50b0bb342899e211c2','0','2','0'), ('31333','18','','10329','WAL: Bytes written','pgsql.wal.write','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'WAL write, in bytes.','0','30d','0','','31290','','','','','200','1','0','','','0','0','0','0','0','0','0','95f67516be544daf9ad8a1cad2e46114','0','2','0'), ('31558','18','','10233','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45476','','','','','200','1','0','','','0','0','0','0','0','0','0','5eada6e6837648859ccb440525281698','0','2','0'), ('31559','18','','10233','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45476','','','','','200','1','0','','','0','0','0','0','0','0','0','644433b2a1fa4b38916e2ae4bf74c28d','0','2','0'), ('31561','18','','10233','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45476','','','','','200','1','0','','','0','0','0','0','0','0','0','db129187106741d88fc14774a1a5652d','0','2','0'), ('31562','18','','10233','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45476','','','','','200','1','0','','','0','0','0','0','0','0','0','a9ca50960dd043038808f3572d1fb281','0','2','0'), ('31563','18','','10233','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45476','','','','','200','1','0','','','0','0','0','0','0','0','0','9f5c294b30d24e5084e8953173bf886e','0','2','0'), ('31564','18','','10233','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45476','','','','','200','1','0','','','0','0','0','0','0','0','0','6140d7fe8011400cb827339f8f6f9cdf','0','2','0'), ('31565','18','','10233','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45476','','','','','200','1','0','','','0','0','0','0','0','0','0','45fc6875a91d47debb4e39d93e5b8186','0','2','0'), ('31566','18','','10233','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45476','','','','','200','1','0','','','0','0','0','0','0','0','0','5dc0caa311304e6a96c620b10f52f267','0','2','0'), ('31567','18','','10233','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45476','','','','','200','1','0','','','0','0','0','0','0','0','0','7df773f57c234d219f5a75e11844f5e0','0','2','0'), ('31568','18','','10233','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45476','','','','','200','1','0','','','0','0','0','0','0','0','0','0db356f16542489586aacdecb029f691','0','2','0'), ('31569','18','','10233','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45476','','','','','200','1','0','','','0','0','0','0','0','0','0','e2212bb46d804d6687a2fe992f867b9d','0','2','0'), ('31577','18','','10330','Slow requests','php-fpm.slow_requests','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of requests that has exceeded your `request_slowlog_timeout` value.','0','30d','0','','31570','','','','','200','1','0','','','0','0','0','0','0','0','0','4d17b6d89ac94d0880eac6962ebf7347','0','2','0'), ('31578','18','','10330','Version','php-fpm.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current version of the PHP. You can get it from the HTTP-Header "X-Powered-By"; it may not work if you have changed the default HTTP-headers.','0','30d','0','','31571','','','','','200','1','0','','','0','0','0','0','0','0','0','b53e2e356317468f9d6d3272eb755650','0','2','0'), ('31579','18','','10330','Uptime','php-fpm.uptime','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'It indicates how long has this pool been running.','0','30d','0','','31570','','','','','200','1','0','','','0','0','0','0','0','0','0','2a19b306712a47999e70d3ec30e39b05','0','2','0'), ('31580','18','','10330','Start time','php-fpm.start_time','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'The time when this pool was started.','0','30d','0','','31570','','','','','200','1','0','','','0','0','0','0','0','0','0','4e4d6eda8fbb4dd2ba7f48fba5723473','0','2','0'), ('31581','18','','10330','Accepted connections per second','php-fpm.conn_accepted.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of accepted requests per second.','0','30d','0','','31570','','','','','200','1','0','','','0','0','0','0','0','0','0','9ae9e2a8003a48a7a482ef6d6ae9886c','0','2','0'), ('31582','18','','10330','Processes, total','php-fpm.processes_total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of server processes currently running.','0','30d','0','','31570','','','','','200','1','0','','','0','0','0','0','0','0','0','a79af6cf38ec45518055c64aa7f1f5a2','0','2','0'), ('31583','18','','10330','Listen queue','php-fpm.listen_queue','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of connections that have been initiated but not yet accepted.','0','30d','0','','31570','','','','','200','1','0','','','0','0','0','0','0','0','0','edc6b68194fe499facfb6b22425ff0d4','0','2','0'), ('31584','18','','10330','Processes, idle','php-fpm.processes_idle','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of idle processes.','0','30d','0','','31570','','','','','200','1','0','','','0','0','0','0','0','0','0','11cfd028325242a58d61d9e83aee640b','0','2','0'), ('31585','18','','10330','Processes, active','php-fpm.processes_active','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of active processes.','0','30d','0','','31570','','','','','200','1','0','','','0','0','0','0','0','0','0','8ebee5fc8c854a96b34ed743e3dd0154','0','2','0'), ('31586','18','','10330','Process manager','php-fpm.process_manager','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The method used by the process manager to control the number of child processes for this pool.','0','30d','0','','31570','','','','','200','1','0','','','0','0','0','0','0','0','0','5ab12fc9f4ef49e5bbf7b2c6a840879e','0','2','0'), ('31587','18','','10330','Ping','php-fpm.ping','0','31d','365d','0','3','','','','',NULL,'34','','','0','','','','','0',NULL,'','0','30d','0','','31571','','','','','200','1','0','','','0','0','0','0','0','0','0','250f346008984a95829dba08d0f95838','0','2','0'), ('31588','18','','10330','Pool name','php-fpm.name','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The name of the current pool.','0','30d','0','','31570','','','','','200','1','0','','','0','0','0','0','0','0','0','830e04be30f04e50ac0fa4783ecdc677','0','2','0'), ('31589','18','','10330','Max children reached','php-fpm.max_children','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of times that `pm.max_children` has been reached since the PHP-FPM pool was started.','0','30d','0','','31570','','','','','200','1','0','','','0','0','0','0','0','0','0','e9d49669cf58492a9d5ef7ff997e1a40','0','2','0'), ('31590','18','','10330','Listen queue, max','php-fpm.listen_queue_max','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum number of requests in the queue of pending connections since this FPM pool was started.','0','30d','0','','31570','','','','','200','1','0','','','0','0','0','0','0','0','0','de0a543bee5a46c88085b2aba2f4976f','0','2','0'), ('31591','18','','10330','Listen queue, len','php-fpm.listen_queue_len','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The size of the socket queue of pending connections.','0','30d','0','','31570','','','','','200','1','0','','','0','0','0','0','0','0','0','aff9f072b06a4b56afb0e0f44b2c83a4','0','2','0'), ('31592','18','','10330','Processes, max active','php-fpm.processes_max_active','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The highest value of "active processes" since the PHP-FPM server was started.','0','30d','0','','31570','','','','','200','1','0','','','0','0','0','0','0','0','0','3858218f90684bb19cbe27fc9aedf404','0','2','0'), ('31596','18','','10331','Accepted connections per second','php-fpm.conn_accepted.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of accepted requests per second.','0','30d','0','','31594','','','','','200','1','0','','','0','0','0','0','0','0','0','a03bc5c2dc824b8f970ca1d2b7b4637f','0','2','0'), ('31597','18','','10331','Processes, idle','php-fpm.processes_idle','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of idle processes.','0','30d','0','','31594','','','','','200','1','0','','','0','0','0','0','0','0','0','79402b0cac4d4a409b39db4bf71557d2','0','2','0'), ('31598','18','','10331','Uptime','php-fpm.uptime','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'It indicates how long has this pool been running.','0','30d','0','','31594','','','','','200','1','0','','','0','0','0','0','0','0','0','093024c740b946a0bd6637ba9e3e0dad','0','2','0'), ('31599','18','','10331','Start time','php-fpm.start_time','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'The time when this pool was started.','0','30d','0','','31594','','','','','200','1','0','','','0','0','0','0','0','0','0','9a625629fc0a4222acfefa0409ec1c72','0','2','0'), ('31600','18','','10331','Slow requests','php-fpm.slow_requests','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of requests that has exceeded your `request_slowlog_timeout` value.','0','30d','0','','31594','','','','','200','1','0','','','0','0','0','0','0','0','0','0dd9e388e2584e0090ed65bab39183f9','0','2','0'), ('31601','18','','10331','Processes, total','php-fpm.processes_total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of server processes currently running.','0','30d','0','','31594','','','','','200','1','0','','','0','0','0','0','0','0','0','e69faadd7a9d457e8f56d283871b946a','0','2','0'), ('31602','18','','10331','Processes, max active','php-fpm.processes_max_active','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The highest value of "active processes" since the PHP-FPM server was started.','0','30d','0','','31594','','','','','200','1','0','','','0','0','0','0','0','0','0','9632f44f9b2648f299e9f61a39daf92f','0','2','0'), ('31603','18','','10331','Ping','php-fpm.ping','0','31d','365d','0','3','','','','',NULL,'35','','','0','','','','','0',NULL,'','0','30d','0','','31595','','','','','200','1','0','','','0','0','0','0','0','0','0','6a090c078ace46bd958b42225c63f5ca','0','2','0'), ('31604','18','','10331','Processes, active','php-fpm.processes_active','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of active processes.','0','30d','0','','31594','','','','','200','1','0','','','0','0','0','0','0','0','0','923243cbb4b647389a38b4788aad3141','0','2','0'), ('31605','18','','10331','Process manager','php-fpm.process_manager','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The method used by the process manager to control the number of child processes for this pool.','0','30d','0','','31594','','','','','200','1','0','','','0','0','0','0','0','0','0','084848b2d6bd4b8a88424b1ec9055b0f','0','2','0'), ('31606','18','','10331','Pool name','php-fpm.name','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The name of the current pool.','0','30d','0','','31594','','','','','200','1','0','','','0','0','0','0','0','0','0','226939bd485a4381a5c0a6d4511acbc3','0','2','0'), ('31607','18','','10331','Max children reached','php-fpm.max_children','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of times that `pm.max_children` has been reached since the PHP-FPM pool was started.','0','30d','0','','31594','','','','','200','1','0','','','0','0','0','0','0','0','0','dcb11355c5ae4c6ab5f1326aa1c7bbd6','0','2','0'), ('31608','18','','10331','Listen queue, max','php-fpm.listen_queue_max','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum number of requests in the queue of pending connections since this FPM pool was started.','0','30d','0','','31594','','','','','200','1','0','','','0','0','0','0','0','0','0','a8829ff906e847c2b97a32b1ded60523','0','2','0'), ('31609','18','','10331','Listen queue, len','php-fpm.listen_queue_len','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The size of the socket queue of pending connections.','0','30d','0','','31594','','','','','200','1','0','','','0','0','0','0','0','0','0','56876a76bd3a4c6c90b033c19a59f6d1','0','2','0'), ('31610','18','','10331','Listen queue','php-fpm.listen_queue','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of connections that have been initiated but not yet accepted.','0','30d','0','','31594','','','','','200','1','0','','','0','0','0','0','0','0','0','cf2fe31db5084bc5b363ef7d0d691c25','0','2','0'), ('31611','18','','10331','Version','php-fpm.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current version of the PHP. You can get it from the HTTP-Header "X-Powered-By"; it may not work if you have changed the default HTTP-headers.','0','30d','0','','31595','','','','','200','1','0','','','0','0','0','0','0','0','0','d49adb58e8bb4453911270e5dce1e03e','0','2','0'), ('31701','18','','10335','Active user sessions','oracle.session_active_user','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active user sessions.','0','30d','0','','31698','','','','','200','1','0','','','0','0','0','0','0','0','0','a7ef5969fff545968d7c133bc67baaac','0','2','0'), ('31702','18','','10335','Rows per sort','oracle.rows_per_sort','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The average number of rows per sort for all types of sorts performed.','0','30d','0','','31691','','','','','200','1','0','','','0','0','0','0','0','0','0','e8aca0dfd1d74d3b9b042d3ed3070e42','0','2','0'), ('31703','18','','10335','Active background sessions','oracle.session_active_background','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active background sessions.','0','30d','0','','31698','','','','','200','1','0','','','0','0','0','0','0','0','0','89811a05632c478d97165f629dadd5b9','0','2','0'), ('31704','18','','10335','Sessions concurrency','oracle.session_concurrency_rate','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of concurrency. Concurrency is a database behavior when different transactions request to change the same resource. In the case of modifying data transactions, it sequentially temporarily blocks the right to change the data, and the rest of the transactions wait for access. When the access to a resource is locked for a long time, the concurrency grows (like the transaction queue), often leaving an extremely negative impact on performance. A high contention value does not indicate the root cause of the problem, but is a signal to search for it.','0','30d','0','','31698','','','','','200','1','0','','','0','0','0','0','0','0','0','d91119f30b95418bab67f929737e6bf8','0','2','0'), ('31705','18','','10335','Session count','oracle.session_count','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The session count.','0','30d','0','','31698','','','','','200','1','0','','','0','0','0','0','0','0','0','cfd7559ac25e4c0a837048e675f4d995','0','2','0'), ('31706','18','','10335','Inactive user sessions','oracle.session_inactive_user','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of inactive user sessions.','0','30d','0','','31698','','','','','200','1','0','','','0','0','0','0','0','0','0','2222705798fd464492c6f692dd9a0392','0','2','0'), ('31707','18','','10335','SQL service response time','oracle.service_response_time','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The Structured Query Language (SQL) service response time expressed in seconds.','0','30d','0','','31691','','','','','200','1','0','','','0','0','0','0','0','0','0','0458d6dd9bde4f2aa51319e3c23f5eae','0','2','0'), ('31708','18','','10335','Sessions limit','oracle.session_limit','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The user and system sessions.','0','30d','0','','31693','','','','','200','1','0','','','0','0','0','0','0','0','0','381c97858785442389cd6ab74d0ee285','0','2','0'), ('31709','18','','10335','Sessions lock rate','oracle.session_lock_rate','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of locked sessions. Locks are mechanisms that prevent destructive interaction between transactions accessing the same resource - either user objects, such as tables and rows or system objects not visible to users, such as shared data structures in memory and data dictionary rows.','0','30d','0','','31698','','','','','200','1','0','','','0','0','0','0','0','0','0','c1717acc82784151b5afc6ad08ce3145','0','2','0'), ('31710','18','','10335','Processes limit','oracle.processes_limit','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum number of user processes.','0','30d','0','','31693','','','','','200','1','0','','','0','0','0','0','0','0','0','cdb59700d4a24fb3bea9d2b63d5d7938','0','2','0'), ('31711','18','','10335','Active parallel sessions','oracle.active_parallel_sessions','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active parallel sessions.','0','30d','0','','31691','','','','','200','1','0','','','0','0','0','0','0','0','0','9d24ae0f86d54b73a35d9c15d4e082cb','0','2','0'), ('31712','18','','10335','Sessions locked over {$ORACLE.SESSION.LOCK.MAX.TIME}s','oracle.session_long_time_locked','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of the prolongedly locked sessions. (You can change the duration of the maximum session lock in seconds for a query using the `{$ORACLE.SESSION.LOCK.MAX.TIME}` macro. Default = 600 s).','0','30d','0','','31698','','','','','200','1','0','','','0','0','0','0','0','0','0','c279df21264642369d65a6c72a11698d','0','2','0'), ('31713','18','','10335','SGA, buffer cache','oracle.sga_buffer_cache','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The size of standard block cache.','0','30d','0','','31688','','','','','200','1','0','','','0','0','0','0','0','0','0','7ad06a6ccb834c5c95f30c319a48446c','0','2','0'), ('31714','18','','10335','SGA, fixed','oracle.sga_fixed','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The fixed System Global Area (SGA) is an internal housekeeping area.','0','30d','0','','31688','','','','','200','1','0','','','0','0','0','0','0','0','0','39dc67c29cce4742acf832949dc57760','0','2','0'), ('31715','18','','10335','SGA, java pool','oracle.sga_java_pool','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The memory is allocated from the Java pool.','0','30d','0','','31688','','','','','200','1','0','','','0','0','0','0','0','0','0','562c02f282974020add8f98e9865fb9d','0','2','0'), ('31716','18','','10335','SGA, log buffer','oracle.sga_log_buffer','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of bytes allocated for the redo log buffer.','0','30d','0','','31688','','','','','200','1','0','','','0','0','0','0','0','0','0','77c17fc1056745c4949b3476c3b920d4','0','2','0'), ('31717','18','','10335','SGA, shared pool','oracle.sga_shared_pool','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The memory is allocated from a shared pool.','0','30d','0','','31688','','','','','200','1','0','','','0','0','0','0','0','0','0','b64f3cad53814e989c576d3ce51bf42d','0','2','0'), ('31718','18','','10335','Shared pool free %','oracle.shared_pool_free','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Free memory of a shared pool expressed in %.','0','30d','0','','31691','','','','','200','1','0','','','0','0','0','0','0','0','0','517c7b3bbf8d40988e6a8289319eaec9','0','2','0'), ('31719','18','','10335','Total sorts per user call','oracle.sorts_per_user_call','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total sorts per user call.','0','30d','0','','31691','','','','','200','1','0','','','0','0','0','0','0','0','0','28c7030b02714d5ea402fe6f2a3d769a','0','2','0'), ('31720','18','','10335','Temp space used','oracle.temp_space_used','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Used temporary space.','0','30d','0','','31691','','','','','200','1','0','','','0','0','0','0','0','0','0','48f54a0324a64e80aaf22d5cd26798cd','0','2','0'), ('31721','18','','10335','PGA, Total allocated','oracle.total_pga_allocated','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The current amount of the PGA memory allocated by the instance. The Oracle Database attempts to keep this number below the value of the `PGA_AGGREGATE_TARGET` initialization parameter. However, it is possible for the PGA allocated to exceed that value by a small percentage and for a short period of time when the work area workload is increasing very rapidly or when `PGA_AGGREGATE_TARGET` is set to a small value.','0','30d','0','','31694','','','','','200','1','0','','','0','0','0','0','0','0','0','1a4efb793cff4224b0ae02272be2fe85','0','2','0'), ('31722','18','','10335','PGA, Total freeable','oracle.total_pga_freeable','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of bytes of the PGA memory in all processes that could be freed back to the OS.','0','30d','0','','31694','','','','','200','1','0','','','0','0','0','0','0','0','0','264b73d153694b52a47ac0219a8de66c','0','2','0'), ('31723','18','','10335','PGA, Total inuse','oracle.total_pga_used','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of Program Global Area (PGA) memory currently consumed by work areas. This number can be used to determine how much memory is consumed by other consumers of the PGA memory (for example, PL/SQL or Java).','0','30d','0','','31694','','','','','200','1','0','','','0','0','0','0','0','0','0','3f3083748a4f42998b135b1b4f88d11a','0','2','0'), ('31724','18','','10335','Uptime','oracle.uptime','0','31d','0','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The Oracle instance uptime expressed in seconds.','0','30d','0','','31692','','','','','200','1','0','','','0','0','0','0','0','0','0','4f1a9efea8594486b226307a52e35474','0','2','0'), ('31725','18','','10335','User rollbacks per second','oracle.user_rollbacks_rate','0','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of times that users manually issued the `ROLLBACK` statement or an error occurred during the users'' transactions.','0','30d','0','','31691','','','','','200','1','0','','','0','0','0','0','0','0','0','cec9a53d637e42c79e2a838588ceeaca','0','2','0'), ('31726','18','','10335','SGA, large pool','oracle.sga_large_pool','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The memory is allocated from a large pool.','0','30d','0','','31688','','','','','200','1','0','','','0','0','0','0','0','0','0','35e3346e273a46339e7b5d3721584d3a','0','2','0'), ('31727','18','','10335','Physical reads bytes per second','oracle.physical_read_bytes_rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Read bytes per second.','0','30d','0','','31691','','','','','200','1','0','','','0','0','0','0','0','0','0','92bf88b7b07048b785ca37d9b97cd78b','0','2','0'), ('31728','18','','10335','Physical writes per second','oracle.physical_writes_rate','0','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Writes per second.','0','30d','0','','31691','','','','','200','1','0','','','0','0','0','0','0','0','0','b71df51181c1464486ced05c95bdc938','0','2','0'), ('31729','18','','10335','FRA, Space reclaimable','oracle.fra_space_reclaimable','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total amount of disk space (in bytes) that can be created by deleting obsolete, redundant, and other low-priority files from the FRA.','0','30d','0','','31686','','','','','200','1','0','','','0','0','0','0','0','0','0','92d7abac10dc47a7bec1bd420a41c78c','0','2','0'), ('31730','18','','10335','Average active sessions','oracle.active_sessions','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The average number of active sessions at a point in time that are either working or waiting.','0','30d','0','','31691','','','','','200','1','0','','','0','0','0','0','0','0','0','9763dd0b223540e4820fd3b8f3281ec3','0','2','0'), ('31731','18','','10335','Archiver state','oracle.archiver_state','0','31d','365d','0','3','','','','',NULL,'175','','','0','','','','','0',NULL,'The status of automatic archiving.','0','30d','0','','31692','','','','','200','1','0','','','0','0','0','0','0','0','0','a5533a1c354a4c8dbfec39c9b0637ba2','0','2','0'), ('31732','18','','10335','Buffer cache hit ratio','oracle.buffer_cache_hit_ratio','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The ratio of buffer cache hits ((LogRead - PhyRead)/LogRead).','0','30d','0','','31691','','','','','200','1','0','','','0','0','0','0','0','0','0','a5f5251364a44a90a66bb2096f53a48a','0','2','0'), ('31733','18','','10335','Global cache blocks corrupted','oracle.cache_blocks_corrupt','0','31d','365d','0','3','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of blocks that encountered corruption or checksum failure during the interconnect.','0','30d','0','','31691','','','','','200','1','0','','','0','0','0','0','0','0','0','1483e7a312154438a9b09d0b696568f0','0','2','0'), ('31734','18','','10335','Global cache blocks lost','oracle.cache_blocks_lost','0','31d','365d','0','3','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of lost global cache blocks.','0','30d','0','','31691','','','','','200','1','0','','','0','0','0','0','0','0','0','3589d4b2b9114f9cabb027f85f5349ab','0','2','0'), ('31735','18','','10335','Cursor cache hit ratio','oracle.cursor_cache_hit_ratio','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The ratio of cursor cache hits (CursorCacheHit/SoftParse).','0','30d','0','','31691','','','','','200','1','0','','','0','0','0','0','0','0','0','fd1ea13484984d0baffc45ea02a33a7c','0','2','0'), ('31736','18','','10335','Database CPU time ratio','oracle.database_cpu_time_ratio','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The ratio calculated by dividing the total CPU (used by the database) by the Oracle time model statistic DB time.','0','30d','0','','31691','','','','','200','1','0','','','0','0','0','0','0','0','0','9fd6475d1b824c74b2b3dad1db4f494a','0','2','0'), ('31737','18','','10335','Database wait time ratio','oracle.database_wait_time_ratio','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Wait time - the time that the server process spends waiting for available shared resources to be released by other server processes such as latches, locks, data buffers, etc.','0','30d','0','','31691','','','','','200','1','0','','','0','0','0','0','0','0','0','9fc7f2e986cd4c97ad8778f06dd04822','0','2','0'), ('31738','18','','10335','Datafiles limit','oracle.db_files_limit','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum allowable number of datafiles.','0','30d','0','','31693','','','','','200','1','0','','','0','0','0','0','0','0','0','cdd3d4f1baea4f2ea122e058704d43e9','0','2','0'), ('31739','18','','10335','Disk sort per second','oracle.disk_sorts','0','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of sorts going to disk per second.','0','30d','0','','31691','','','','','200','1','0','','','0','0','0','0','0','0','0','9692f4f771844438a3f9224455c504b6','0','2','0'), ('31740','18','','10335','Enqueue timeouts per second','oracle.enqueue_timeouts_rate','0','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Enqueue timeouts per second.','0','30d','0','','31691','','','','','200','1','0','','','0','0','0','0','0','0','0','7dc5745f2a124119b058d23195ba5058','0','2','0'), ('31741','18','','10335','FRA, Number of files','oracle.fra_number_of_files','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of files in the FRA.','0','30d','0','','31686','','','','','200','1','0','','','0','0','0','0','0','0','0','5e09413cb3a14a3a87e2ead6b838ce1f','0','2','0'), ('31742','18','','10335','FRA, Number of restore points','oracle.fra_restore_point','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of restore points in the FRA.','0','30d','0','','31686','','','','','200','1','0','','','0','0','0','0','0','0','0','68f50e7513d642f789a27dfce03ca1b8','0','2','0'), ('31743','18','','10335','FRA, Space limit','oracle.fra_space_limit','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum amount of disk space (in bytes) that the database can use for the Fast Recovery Area (FRA).','0','30d','0','','31686','','','','','200','1','0','','','0','0','0','0','0','0','0','f7f16828d46a4054a30a22e955542d6a','0','2','0'), ('31744','18','','10335','FRA, Used space','oracle.fra_space_used','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of disk space (in bytes) used by FRA files created in the current and all the previous FRAs.','0','30d','0','','31686','','','','','200','1','0','','','0','0','0','0','0','0','0','1e02a10018124f4db85ef9822a605b61','0','2','0'), ('31745','18','','10335','Physical writes bytes per second','oracle.physical_write_bytes_rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Write bytes per second.','0','30d','0','','31691','','','','','200','1','0','','','0','0','0','0','0','0','0','e34abb4139fe43ae8b27edbe6ad12c8d','0','2','0'), ('31746','18','','10335','FRA, Usable space in %','oracle.fra_usable_pct','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of space usable in the FRA.','0','30d','0','','31686','','','','','200','1','0','','','0','0','0','0','0','0','0','887c56e1b9f1415db5def1e1f502a6ae','0','2','0'), ('31747','18','','10335','GC CR block received per second','oracle.gc_cr_block_received_rate','0','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The global cache (GC) and the consistent read (CR) block received per second.','0','30d','0','','31691','','','','','200','1','0','','','0','0','0','0','0','0','0','e8725c1d79e34fbc8331677fe3d4459e','0','2','0'), ('31748','18','','10335','Instance hostname','oracle.instance_hostname','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The name of the host machine.','0','30d','0','','31692','','','','','200','1','0','','','0','0','0','0','0','0','0','cd0e2c8f164443588ad19647506c0eea','0','2','0'), ('31749','18','','10335','Instance name','oracle.instance_name','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The name of the instance.','0','30d','0','','31692','','','','','200','1','0','','','0','0','0','0','0','0','0','0cc90c2554a7412eafe42c33dd1e9ede','0','2','0'), ('31750','18','','10335','Instance status','oracle.instance_status','0','31d','365d','0','3','','','','',NULL,'171','','','0','','','','','0',NULL,'The status of the instance.','0','30d','0','','31692','','','','','200','1','0','','','0','0','0','0','0','0','0','f51053d243ef41089b5e635fd1abb5f3','0','2','0'), ('31751','18','','10335','Instance role','oracle.instance.role','0','31d','365d','0','3','','','','',NULL,'173','','','0','','','','','0',NULL,'Indicates whether the instance is an active instance or an inactive secondary instance.','0','30d','0','','31692','','','','','200','1','0','','','0','0','0','0','0','0','0','021a98326c8f402693e4fba9fb3c25de','0','2','0'), ('31752','18','','10335','Library cache hit ratio','oracle.library_cache_hit_ratio','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The ratio of library cache hits (Hits/Pins).','0','30d','0','','31691','','','','','200','1','0','','','0','0','0','0','0','0','0','b2551269bf4541dfae378b9e48d1f5da','0','2','0'), ('31753','18','','10335','Logons per second','oracle.logons_rate','0','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of logon attempts.','0','30d','0','','31691','','','','','200','1','0','','','0','0','0','0','0','0','0','13a938f495ee464a8ed3f2575cd191b9','0','2','0'), ('31754','18','','10335','Long table scans per second','oracle.long_table_scans_rate','0','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of long table scans per second. A table is considered long if it is not cached and if its high water mark is greater than five blocks.','0','30d','0','','31691','','','','','200','1','0','','','0','0','0','0','0','0','0','440f42943ebc436fb75bd5d8397fe876','0','2','0'), ('31755','18','','10335','Memory sorts ratio','oracle.memory_sorts_ratio','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of sorts (from `ORDER BY` clauses or index building) that are done to disk vs. in-memory.','0','30d','0','','31691','','','','','200','1','0','','','0','0','0','0','0','0','0','4769432ae04641758daabd5b27deaa01','0','2','0'), ('31756','18','','10335','PGA, Global memory bound','oracle.pga_global_bound','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum size of a work area executed in automatic mode.','0','30d','0','','31694','','','','','200','1','0','','','0','0','0','0','0','0','0','749a1281ba84475193897a3362f6f873','0','2','0'), ('31757','18','','10335','PGA, Aggregate target parameter','oracle.pga_target','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The current value of the `PGA_AGGREGATE_TARGET` initialization parameter. If this parameter is not set, then its value is "0" and automatic management of the PGA memory is disabled.','0','30d','0','','31694','','','','','200','1','0','','','0','0','0','0','0','0','0','2b5797f046434125b65daf31121fdd81','0','2','0'), ('31758','18','','10335','Active serial sessions','oracle.active_serial_sessions','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active serial sessions.','0','30d','0','','31691','','','','','200','1','0','','','0','0','0','0','0','0','0','7e4eb79b9b674c5ba57e790fae0fb410','0','2','0'), ('31759','18','','10335','Physical reads per second','oracle.physical_reads_rate','0','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Reads per second.','0','30d','0','','31691','','','','','200','1','0','','','0','0','0','0','0','0','0','e96ff6a018dc4553b9ad7f2dc87f4d99','0','2','0'), ('31785','18','','10336','SIP peers','asterisk.sip.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of SIP peers.','0','30d','0','','31784','','','','','200','1','0','','','0','0','0','0','0','0','0','fb78998a342942ac942a7e1632b98208','0','2','0'), ('31786','18','','10336','Version','asterisk.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Service version','0','30d','0','','31784','','','','','200','1','0','','','0','0','0','0','0','0','0','8ed124c5d61541c0ab1dcc3491fb05c6','0','2','0'), ('31787','18','','10336','Uptime after reload','asterisk.uptime_reload','0','31d','365d','0','0','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'System uptime after a config reload in ''N days, hh:mm:ss'' format.','0','30d','0','','31784','','','','','200','1','0','','','0','0','0','0','0','0','0','86e23b5b9fd64e6e840588d25921fcbf','0','2','0'), ('31788','18','','10336','Uptime','asterisk.uptime','0','31d','365d','0','0','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The system uptime expressed in the following format: "N days, hh:mm:ss".','0','30d','0','','31784','','','','','200','1','0','','','0','0','0','0','0','0','0','8395ab5b70a7433eb508c513995988bb','0','2','0'), ('31789','18','','10336','Total queues','asterisk.total_queues','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of configured queues.','0','30d','0','','31784','','','','','200','1','0','','','0','0','0','0','0','0','0','9c64cb54c2c541c1862558dcf8c6e3a3','0','2','0'), ('31790','18','','10336','SIP unmonitored online','asterisk.sip.unmonitored_online','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unmonitored online SIP peers.','0','30d','0','','31784','','','','','200','1','0','','','0','0','0','0','0','0','0','1cd5fb5232ca4f4398f85d959ac11b2c','0','2','0'), ('31791','18','','10336','SIP unmonitored offline','asterisk.sip.unmonitored_offline','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unmonitored offline SIP peers.','0','30d','0','','31784','','','','','200','1','0','','','0','0','0','0','0','0','0','ae21f8c13063402d9eece400a18c6167','0','2','0'), ('31792','18','','10336','Active calls','asterisk.active_calls','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active calls at the moment.','0','30d','0','','31784','','','','','200','1','0','','','0','0','0','0','0','0','0','72d074f6bb214ef9884d8cc4b1530ad3','0','2','0'), ('31793','18','','10336','SIP monitored online','asterisk.sip.monitored_online','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of monitored online SIP peers.','0','30d','0','','31784','','','','','200','1','0','','','0','0','0','0','0','0','0','23744b0a04b54637a7dbe1c7f8f5200f','0','2','0'), ('31794','18','','10336','Active channels','asterisk.active_channels','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active channels at the moment.','0','30d','0','','31784','','','','','200','1','0','','','0','0','0','0','0','0','0','bb9ac1ac188b43239456477e13ae555f','0','2','0'), ('31795','18','','10336','PJSIP unavailable endpoints','asterisk.pjsip.unavailable','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unavailable PJSIP peers.','0','30d','0','','31784','','','','','200','1','0','','','0','0','0','0','0','0','0','5c10fe1a4bfb4628be20137d0f1ec725','0','2','0'), ('31796','18','','10336','PJSIP endpoints','asterisk.pjsip.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of PJSIP peers.','0','30d','0','','31784','','','','','200','1','0','','','0','0','0','0','0','0','0','fdc888cb355a4b738be8a77354a7ce76','0','2','0'), ('31797','18','','10336','IAX unmonitored peers','asterisk.iax.unmonitored','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unmonitored IAX peers.','0','30d','0','','31784','','','','','200','1','0','','','0','0','0','0','0','0','0','cf5c07c1a09b4a10af21292b876fcb20','0','2','0'), ('31798','18','','10336','IAX peers','asterisk.iax.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of IAX peers.','0','30d','0','','31784','','','','','200','1','0','','','0','0','0','0','0','0','0','ccb62e9b41da4f20b4ab19e4eecd598b','0','2','0'), ('31799','18','','10336','IAX offline peers','asterisk.iax.offline','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of offline IAX peers.','0','30d','0','','31784','','','','','200','1','0','','','0','0','0','0','0','0','0','0798cf46d82041e6a7091698c7693ec5','0','2','0'), ('31800','18','','10336','Calls processed per second','asterisk.calls_processed.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of calls processed per second.','0','30d','0','','31784','','','','','200','1','0','','','0','0','0','0','0','0','0','196af875a190438abd8de5a6803a550f','0','2','0'), ('31801','18','','10336','Calls processed','asterisk.calls_processed','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of calls processed after the last service restart.','0','30d','0','','31784','','','','','200','1','0','','','0','0','0','0','0','0','0','ccfc2a8a5880430196e2c874b66370ca','0','2','0'), ('31802','18','','10336','SIP monitored offline','asterisk.sip.monitored_offline','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of monitored offline SIP peers.','0','30d','0','','31784','','','','','200','1','0','','','0','0','0','0','0','0','0','fb08ec8d143a41a097f8652c8261bad8','0','2','0'), ('31803','18','','10336','IAX peers discovery','asterisk.iax_peers.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','','31784','','','','','200','1','0','','','0','0','0','0','0','0','0','3e7facc25a344cec8e384e8a9f8b372a','0','2','0'), ('31804','18','','10336','PJSIP endpoints discovery','asterisk.pjsip_endpoints.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','','31784','','','','','200','1','0','','','0','0','0','0','0','0','0','1a123ca04c7544bfa823a39b8a9fe84c','0','2','0'), ('31805','18','','10336','Queues discovery','asterisk.queues.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','','31784','','','','','200','1','0','','','0','0','0','0','0','0','0','5a936a95d62f4b50a4f3db112a3e041f','0','2','0'), ('31806','18','','10336','SIP peers discovery','asterisk.sip_peers.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','','31784','','','','','200','1','0','','','0','0','0','0','0','0','0','675fc5b11cb1482db0c539dfb9100e75','0','2','0'), ('32122','18','','10353','Number of OSDs in state: UP','ceph.num_osd_up','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of the online storage daemons in a Ceph cluster.','0','30d','0','','32119','','','','','200','1','0','','','0','0','0','0','0','0','0','d2d5caaad2914fb1ba07343956edb5b8','0','2','0'), ('32123','18','','10353','Number of Placement Groups in Undersized state','ceph.pg_states.undersized','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of Placement Groups in an undersized state.','0','30d','0','','32119','','','','','200','1','0','','','0','0','0','0','0','0','0','4998e4542ed746f08f82ecf53b553c36','0','2','0'), ('32124','18','','10353','Number of Placement Groups in Clean state','ceph.pg_states.clean','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of Placement Groups in a clean state.','0','30d','0','','32119','','','','','200','1','0','','','0','0','0','0','0','0','0','b1af2b88fe424723b97c9aa4eee12d83','0','2','0'), ('32125','18','','10353','Number of Placement Groups in degraded state','ceph.pg_states.degraded','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of Placement Groups in a degraded state.','0','30d','0','','32119','','','','','200','1','0','','','0','0','0','0','0','0','0','f8acf8f66fbc401799d3515eb3e2ea43','0','2','0'), ('32126','18','','10353','Number of Placement Groups in inconsistent state','ceph.pg_states.inconsistent','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of Placement Groups in an inconsistent state.','0','30d','0','','32119','','','','','200','1','0','','','0','0','0','0','0','0','0','79e056b9e3af40eabab0f927fb326491','0','2','0'), ('32127','18','','10353','Number of Placement Groups in Peering state','ceph.pg_states.peering','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of Placement Groups in a peering state.','0','30d','0','','32119','','','','','200','1','0','','','0','0','0','0','0','0','0','9ddef3d2e7df43eda7d2835ceac19d32','0','2','0'), ('32128','18','','10353','Number of Placement Groups in recovering state','ceph.pg_states.recovering','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of Placement Groups in a recovering state.','0','30d','0','','32119','','','','','200','1','0','','','0','0','0','0','0','0','0','573461fc94e84f96b8ae6f6d89916424','0','2','0'), ('32129','18','','10353','Number of Placement Groups in recovery_wait state','ceph.pg_states.recovery_wait','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of Placement Groups in a *recovery_wait* state.','0','30d','0','','32119','','','','','200','1','0','','','0','0','0','0','0','0','0','c150a9414fee40acaa65d532fd110c4e','0','2','0'), ('32130','18','','10353','Number of Placement Groups in remapped state','ceph.pg_states.remapped','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of Placement Groups in a remapped state.','0','30d','0','','32119','','','','','200','1','0','','','0','0','0','0','0','0','0','bac3270faf854267a466eaa6a4acad91','0','2','0'), ('32131','18','','10353','Number of Placement Groups in Scrubbing state','ceph.pg_states.scrubbing','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of Placement Groups in a scrubbing state.','0','30d','0','','32119','','','','','200','1','0','','','0','0','0','0','0','0','0','8a0117845436492d951e96b46eb67e1c','0','2','0'), ('32132','18','','10353','Number of Placement Groups in Unknown state','ceph.pg_states.unknown','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of Placement Groups in an unknown state.','0','30d','0','','32119','','','','','200','1','0','','','0','0','0','0','0','0','0','c922613c5ffb4f689c01f13143633ec3','0','2','0'), ('32133','18','','10353','Number of Placement Groups in backfill_wait state','ceph.pg_states.backfill_wait','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of Placement Groups in a *backfill_wait* state.','0','30d','0','','32119','','','','','200','1','0','','','0','0','0','0','0','0','0','ada3f638ee2e48eeb8889526898aed2f','0','2','0'), ('32134','18','','10353','Number of OSDs','ceph.num_osd','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of the known storage daemons in a Ceph cluster.','0','30d','0','','32119','','','','','200','1','0','','','0','0','0','0','0','0','0','09d7a872f35349c6ba7d4a678bf71652','0','2','0'), ('32135','18','','10353','Ceph Read bandwidth','ceph.rd_bytes.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The global read bytes per second.','0','30d','0','','32117','','','','','200','1','0','','','0','0','0','0','0','0','0','89d7df2ebfbc4aa88b4ff4de44dc4b8b','0','2','0'), ('32136','18','','10353','Ceph Read operations per sec','ceph.rd_ops.rate','0','31d','365d','0','0','','ops','','',NULL,NULL,'','','0','','','','','0',NULL,'The global read operations per second.','0','30d','0','','32117','','','','','200','1','0','','','0','0','0','0','0','0','0','8a35a37de63746498291993d4f3fc1cc','0','2','0'), ('32137','18','','10353','Number of Monitors','ceph.num_mon','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of Monitors configured in a Ceph cluster.','0','30d','0','','32119','','','','','200','1','0','','','0','0','0','0','0','0','0','5d5276504d6c41eebe8e18846edcff45','0','2','0'), ('32138','18','','10353','Total bytes available','ceph.total_avail_bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total bytes available in a Ceph cluster.','0','30d','0','','32117','','','','','200','1','0','','','0','0','0','0','0','0','0','5e400c932acf4ad498e17daca0ad4943','0','2','0'), ('32139','18','','10353','Total bytes','ceph.total_bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total (RAW) capacity of a Ceph cluster in bytes.','0','30d','0','','32117','','','','','200','1','0','','','0','0','0','0','0','0','0','c4b1a31efb5f47518cc5dd6082f3a42b','0','2','0'), ('32140','18','','10353','Total number of objects','ceph.total_objects','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of objects in a Ceph cluster.','0','30d','0','','32117','','','','','200','1','0','','','0','0','0','0','0','0','0','d3910275462b43dba1fa8022a398ed1c','0','2','0'), ('32141','18','','10353','Total bytes used','ceph.total_used_bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total bytes used in a Ceph cluster.','0','30d','0','','32117','','','','','200','1','0','','','0','0','0','0','0','0','0','6ad8e289eef349ab8ebfd4cc92a35c18','0','2','0'), ('32142','18','','10353','Ceph Write bandwidth','ceph.wr_bytes.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The global write bytes per second.','0','30d','0','','32117','','','','','200','1','0','','','0','0','0','0','0','0','0','51e100668e5344d29afd50dc9b9eabc9','0','2','0'), ('32143','18','','10353','Number of Placement Groups in Backfilling state','ceph.pg_states.backfilling','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of Placement Groups in a backfill state.','0','30d','0','','32119','','','','','200','1','0','','','0','0','0','0','0','0','0','1471a13aaadc48c7a265835abcb93a03','0','2','0'), ('32144','18','','10353','Number of Placement Groups in backfill_toofull state','ceph.pg_states.backfill_toofull','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of Placement Groups in a *backfill_toofull state*.','0','30d','0','','32119','','','','','200','1','0','','','0','0','0','0','0','0','0','3b44c79e03d4402ba442331593dbdfa3','0','2','0'), ('32145','18','','10353','Number of Placement Groups','ceph.num_pg','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of Placement Groups in a Ceph cluster.','0','30d','0','','32119','','','','','200','1','0','','','0','0','0','0','0','0','0','46ea920b0951408daa5d678f298b1097','0','2','0'), ('32146','18','','10353','Ceph OSD Apply latency Min','ceph.osd_latency_apply.min','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'The minimum apply latency of OSDs.','0','30d','0','','32121','','','','','200','1','0','','','0','0','0','0','0','0','0','d45ad876b0a04345be347af54211aa69','0','2','0'), ('32147','18','','10353','Number of Placement Groups in Temporary state','ceph.num_pg_temp','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of Placement Groups in a *pg_temp* state','0','30d','0','','32118','','','','','200','1','0','','','0','0','0','0','0','0','0','97fbecc8ee824e658dd95d8115fec5e9','0','2','0'), ('32148','18','','10353','Number of Pools','ceph.num_pools','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of pools in a Ceph cluster.','0','30d','0','','32117','','','','','200','1','0','','','0','0','0','0','0','0','0','b0e36ff76db049ab870fa26c29e5e69c','0','2','0'), ('32149','18','','10353','Ceph backfill full ratio','ceph.osd_backfillfull_ratio','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The backfill full ratio setting of the Ceph cluster as configured on OSDMap.','0','30d','0','','32118','','','','','200','1','0','','','0','0','0','0','0','0','0','0d6cffa1f06748738431524667ea8db0','0','2','0'), ('32150','18','','10353','Ceph OSD avg fill','ceph.osd_fill.avg','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average fill of OSDs.','0','30d','0','','32121','','','','','200','1','0','','','0','0','0','0','0','0','0','52c5efe132b8404f8fc4ac995c3d5c2c','0','2','0'), ('32151','18','','10353','Ceph OSD max fill','ceph.osd_fill.max','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of the most filled OSD.','0','30d','0','','32121','','','','','200','1','0','','','0','0','0','0','0','0','0','453cebeed3214153ba4e3a5b224c063d','0','2','0'), ('32152','18','','10353','Ceph OSD min fill','ceph.osd_fill.min','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage fill of the minimum filled OSD.','0','30d','0','','32121','','','','','200','1','0','','','0','0','0','0','0','0','0','f6efbd37e8104272be131d686a700808','0','2','0'), ('32153','18','','10353','Ceph full ratio','ceph.osd_full_ratio','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The full ratio setting of the Ceph cluster as configured on OSDMap.','0','30d','0','','32118','','','','','200','1','0','','','0','0','0','0','0','0','0','532891a1d8934211a016524b136cfb1e','0','2','0'), ('32154','18','','10353','Ceph OSD Apply latency Avg','ceph.osd_latency_apply.avg','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'The average apply latency of OSDs.','0','30d','0','','32121','','','','','200','1','0','','','0','0','0','0','0','0','0','074c0881384446ea90e99d355afe4f4f','0','2','0'), ('32155','18','','10353','Ceph OSD Apply latency Max','ceph.osd_latency_apply.max','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum apply latency of OSDs.','0','30d','0','','32121','','','','','200','1','0','','','0','0','0','0','0','0','0','ef0a76f0c16147d1a280e00e66d3806f','0','2','0'), ('32156','18','','10353','Ceph OSD Commit latency Avg','ceph.osd_latency_commit.avg','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'The average commit latency of OSDs.','0','30d','0','','32121','','','','','200','1','0','','','0','0','0','0','0','0','0','52e1b146c36e4c2e82acf36f1c7d12eb','0','2','0'), ('32157','18','','10353','Number of Placement Groups in Active state','ceph.pg_states.active','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of Placement Groups in an active state.','0','30d','0','','32119','','','','','200','1','0','','','0','0','0','0','0','0','0','9b073153d7474b0abfccb1844d0e6981','0','2','0'), ('32158','18','','10353','Ceph OSD Commit latency Max','ceph.osd_latency_commit.max','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum commit latency of OSDs.','0','30d','0','','32121','','','','','200','1','0','','','0','0','0','0','0','0','0','3027a1dbdd8e4f9bbef8927b92eb8e77','0','2','0'), ('32159','18','','10353','Ceph OSD Commit latency Min','ceph.osd_latency_commit.min','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'The minimum commit latency of OSDs.','0','30d','0','','32121','','','','','200','1','0','','','0','0','0','0','0','0','0','b9900b84c22843dab4ad335b9642e040','0','2','0'), ('32160','18','','10353','Ceph nearfull ratio','ceph.osd_nearfull_ratio','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The near full ratio setting of the Ceph cluster as configured on OSDMap.','0','30d','0','','32118','','','','','200','1','0','','','0','0','0','0','0','0','0','477d94bd838d4273a556537de36bb1f6','0','2','0'), ('32161','18','','10353','Ceph OSD avg PGs','ceph.osd_pgs.avg','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The average amount of Placement Groups on OSDs.','0','30d','0','','32121','','','','','200','1','0','','','0','0','0','0','0','0','0','27ea5688271347bca429d91ace62d4e2','0','2','0'), ('32162','18','','10353','Ceph OSD max PGs','ceph.osd_pgs.max','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum amount of Placement Groups on OSDs.','0','30d','0','','32121','','','','','200','1','0','','','0','0','0','0','0','0','0','4174d7d3190e47ccb55b1e50da4cedc5','0','2','0'), ('32163','18','','10353','Ceph OSD min PGs','ceph.osd_pgs.min','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The minimum amount of Placement Groups on OSDs.','0','30d','0','','32121','','','','','200','1','0','','','0','0','0','0','0','0','0','47f56243cd1c430fae217d1a0cbc4a99','0','2','0'), ('32164','18','','10353','Number of OSDs in state: IN','ceph.num_osd_in','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of the participating storage daemons in a Ceph cluster.','0','30d','0','','32119','','','','','200','1','0','','','0','0','0','0','0','0','0','795939e16e70475381e917b213bf6f70','0','2','0'), ('32165','18','','10353','Minimum Mon release version','ceph.min_mon_release_name','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'min_mon_release_name','0','30d','0','','32119','','','','','200','1','0','','','0','0','0','0','0','0','0','45c9df734d424e6a8d3fea99c4a66246','0','2','0'), ('32166','18','','10353','Overall cluster status','ceph.overall_status','0','31d','365d','0','3','','','','',NULL,'184','','','0','','','','','0',NULL,'The overall Ceph cluster status, eg 0 - HEALTH_OK, 1 - HEALTH_WARN or 2 - HEALTH_ERR.','0','30d','0','','32119','','','','','200','1','0','','','0','0','0','0','0','0','0','4023ca309692470eab2651f69d49419a','0','2','0'), ('32167','18','','10353','Ceph Write operations per sec','ceph.wr_ops.rate','0','31d','365d','0','0','','ops','','',NULL,NULL,'','','0','','','','','0',NULL,'The global write operations per second.','0','30d','0','','32117','','','','','200','1','0','','','0','0','0','0','0','0','0','0a7203defa7147f7b975b404e6706b60','0','2','0'), ('32170','18','','10353','[osd.{#OSDNAME}] OSD fill','ceph.osd[{#OSDNAME},fill]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32121','','','','','200','1','0','','','0','0','0','0','0','0','0','4f7a72a5c4c14b9da63ddbae9e2ebf5f','0','2','0'), ('32171','18','','10353','[osd.{#OSDNAME}] OSD in','ceph.osd[{#OSDNAME},in]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32118','','','','','200','1','0','','','0','0','0','0','0','0','0','fc2518ca8b9341d8befc6f9b1cbd4b79','0','2','0'), ('32172','18','','10353','[osd.{#OSDNAME}] OSD latency apply','ceph.osd[{#OSDNAME},latency_apply]','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The time taken to flush an update to disks.','0','30d','0','','32121','','','','','200','1','0','','','0','0','0','0','0','0','0','2eb6a0d999d14906a4737ed32834ccc7','0','2','0'), ('32173','18','','10353','[osd.{#OSDNAME}] OSD latency commit','ceph.osd[{#OSDNAME},latency_commit]','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The time taken to commit an operation to the journal.','0','30d','0','','32121','','','','','200','1','0','','','0','0','0','0','0','0','0','14f392b369504f10b7e068522ac4a086','0','2','0'), ('32174','18','','10353','[osd.{#OSDNAME}] OSD PGs','ceph.osd[{#OSDNAME},num_pgs]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32121','','','','','200','1','0','','','0','0','0','0','0','0','0','63234342c0bd49e6b1f8737bf595851f','0','2','0'), ('32175','18','','10353','[osd.{#OSDNAME}] OSD up','ceph.osd[{#OSDNAME},up]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32118','','','','','200','1','0','','','0','0','0','0','0','0','0','12c20b2fbf10466bba7e1097c014e968','0','2','0'), ('32381','18','','10357','Transactions: Max idle transaction time','pgsql.transactions.idle','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Current max idle transaction time.','0','30d','0','','32376','','','','','200','1','0','','','0','0','0','0','0','0','0','4c89121d71a14c15b6169417ea69d0a3','0','2','0'), ('32382','18','','10357','Transactions: Max active transaction time','pgsql.transactions.active','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Current max active transaction time.','0','30d','0','','32376','','','','','200','1','0','','','0','0','0','0','0','0','0','4883717865c84c19b48d46f009317de2','0','2','0'), ('32383','18','','10357','Transactions: Max prepared transaction time','pgsql.transactions.prepared','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Current max prepared transaction time.','0','30d','0','','32376','','','','','200','1','0','','','0','0','0','0','0','0','0','0ee43ddd9da246d19097107b45e4c8e8','0','2','0'), ('32384','18','','10357','Transactions: Max waiting transaction time','pgsql.transactions.waiting','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Current max waiting transaction time.','0','30d','0','','32376','','','','','200','1','0','','','0','0','0','0','0','0','0','da341b2011714a1f994ecbe96bd52155','0','2','0'), ('32385','18','','10357','WAL: Segments count','pgsql.wal.count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of WAL segments.','0','30d','0','','32379','','','','','200','1','0','','','0','0','0','0','0','0','0','5385ec7d39514039a641d18cba335ddc','0','2','0'), ('32386','18','','10357','Bgwriter: Buffers allocated per second','pgsql.bgwriter.buffers_alloc.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of buffers allocated per second.','0','30d','0','','32375','','','','','200','1','0','','','0','0','0','0','0','0','0','d17c6c15154d40d1afa5b1eafb2ed93e','0','2','0'), ('32387','18','','10357','Bgwriter: Buffers written directly by a backend per second','pgsql.bgwriter.buffers_backend.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of buffers written directly by a backend per second. Available in PostgreSQL versions prior to 17.','0','30d','0','','32375','','','','','200','1','0','','','0','0','0','0','0','0','0','2c3ee691d4a54fb6b566739a3a648df4','0','2','0'), ('32388','18','','10357','Checkpoint: Checkpoint write time per second','pgsql.bgwriter.checkpoint_write_time.rate','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Total amount of time per second that has been spent in the portion of checkpoint processing where files are written to disk.','0','30d','0','','32375','','','','','200','1','0','','','0','0','0','0','0','0','0','b5e5f463978c46dd9401963f48ea72eb','0','2','0'), ('32389','18','','10357','Bgwriter: Times a backend executed its own fsync per second','pgsql.bgwriter.buffers_backend_fsync.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times a backend had to execute its own fsync call per second (normally the background writer handles those even when the backend does its own write). Available in PostgreSQL versions prior to 17.','0','30d','0','','32375','','','','','200','1','0','','','0','0','0','0','0','0','0','77e1eb202a6346ce9df0f1bb2c078688','0','2','0'), ('32390','18','','10357','Checkpoint: Buffers written during checkpoints per second','pgsql.bgwriter.buffers_checkpoint.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of buffers written during checkpoints per second.','0','30d','0','','32375','','','','','200','1','0','','','0','0','0','0','0','0','0','e29d26a48d0143579bf3acc6655cd659','0','2','0'), ('32391','18','','10357','Checkpoint: Buffers written by the background writer per second','pgsql.bgwriter.buffers_clean.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of buffers written by the background writer per second.','0','30d','0','','32375','','','','','200','1','0','','','0','0','0','0','0','0','0','5151183461a54d2bbfaad04b8cab3798','0','2','0'), ('32392','18','','10357','Checkpoint: Requested per second','pgsql.bgwriter.checkpoints_req.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of requested checkpoints that have been performed per second.','0','30d','0','','32375','','','','','200','1','0','','','0','0','0','0','0','0','0','ff290c0602b9447e87240c1ecf467050','0','2','0'), ('32393','18','','10357','Checkpoint: Scheduled per second','pgsql.bgwriter.checkpoints_timed.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of scheduled checkpoints that have been performed per second.','0','30d','0','','32375','','','','','200','1','0','','','0','0','0','0','0','0','0','a5271230be8b431cb96580180e099b98','0','2','0'), ('32394','18','','10357','Checkpoint: Checkpoint sync time per second','pgsql.bgwriter.checkpoint_sync_time.rate','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Total amount of time per second that has been spent in the portion of checkpoint processing where files are synchronized to disk.','0','30d','0','','32375','','','','','200','1','0','','','0','0','0','0','0','0','0','782d2368763b48ad8663aa9fb75c3326','0','2','0'), ('32395','18','','10357','Bgwriter: Number of bgwriter cleaning scan stopped per second','pgsql.bgwriter.maxwritten_clean.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times the background writer stopped a cleaning scan because it had written too many buffers per second.','0','30d','0','','32375','','','','','200','1','0','','','0','0','0','0','0','0','0','f273c71f92bf4ac0b6ec5a0a88d1239c','0','2','0'), ('32396','18','','10357','Connections sum: Waiting','pgsql.connections.sum.waiting','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of waiting connections: https://www.postgresql.org/docs/current/monitoring-stats.html#WAIT-EVENT-TABLE','0','30d','0','','32364','','','','','200','1','0','','','0','0','0','0','0','0','0','fadd1333189c4ed29db57cf2acd158d0','0','2','0'), ('32397','18','','10357','Connections sum: Active','pgsql.connections.sum.active','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections executing a query.','0','30d','0','','32364','','','','','200','1','0','','','0','0','0','0','0','0','0','c78116d3acf24e6990ed27ba8008728c','0','2','0'), ('32398','18','','10357','Connections sum: Idle','pgsql.connections.sum.idle','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections waiting for a new client command.','0','30d','0','','32364','','','','','200','1','0','','','0','0','0','0','0','0','0','be6eb6ecbfad420b889c58d1f1550b23','0','2','0'), ('32399','18','','10357','Connections sum: Idle in transaction','pgsql.connections.sum.idle_in_transaction','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections in a transaction state but not executing a query.','0','30d','0','','32364','','','','','200','1','0','','','0','0','0','0','0','0','0','6471d014722c4072ae045df4c69578e3','0','2','0'), ('32400','18','','10357','Connections sum: Prepared','pgsql.connections.sum.prepared','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of prepared transactions: https://www.postgresql.org/docs/current/sql-prepare-transaction.html','0','30d','0','','32364','','','','','200','1','0','','','0','0','0','0','0','0','0','197cc14f55db485b891614c7b7ee2a51','0','2','0'), ('32401','18','','10357','Connections sum: Total','pgsql.connections.sum.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections.','0','30d','0','','32364','','','','','200','1','0','','','0','0','0','0','0','0','0','24d23377c7cd4cc5b63f98a261c2501c','0','2','0'), ('32402','18','','10357','Connections sum: Total, %','pgsql.connections.sum.total_pct','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections, in percentage.','0','30d','0','','32364','','','','','200','1','0','','','0','0','0','0','0','0','0','488050d9aa8e4c2ea5b3e991ec5ddacc','0','2','0'), ('32403','18','','10357','WAL: Bytes written','pgsql.wal.write','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'WAL write, in bytes.','0','30d','0','','32379','','','','','200','1','0','','','0','0','0','0','0','0','0','5cc9c67621cc46e0a42b1eb79bda83b3','0','2','0'), ('32409','18','','10357','DB [{#DBNAME}]: Num of locks total','pgsql.locks.total["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of locks in this database.','0','30d','0','','32365','','','','','200','1','0','','','0','0','0','0','0','0','0','3d0acf4b45fc4a72bb2a214222f93f2a','0','2','0'), ('32410','18','','10357','DB [{#DBNAME}]: Sequential scans per second','pgsql.scans.seq.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of sequential scans in this database per second.','0','30d','0','','32407','','','','','200','1','0','','','0','0','0','0','0','0','0','f07396ca9d224e1b819f22efe6c4259d','0','2','0'), ('32411','18','','10357','DB [{#DBNAME}]: Index scans per second','pgsql.scans.idx.rate["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of index scans in the database per second.','0','30d','0','','32407','','','','','200','1','0','','','0','0','0','0','0','0','0','cafcc00cce824c33a321da0e9ecc7f6e','0','2','0'), ('32424','18','','10357','DB [{#DBNAME}]: Frozen XID before autovacuum, %','pgsql.frozenxid.prc_before_av["{#DBNAME}"]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Preventing Transaction ID Wraparound Failures: https://www.postgresql.org/docs/current/routine-vacuuming.html#VACUUM-FOR-WRAPAROUND','0','30d','0','','32406','','','','','200','1','0','','','0','0','0','0','0','0','0','df9dd9bac2a54f1085b29fb22b394a1f','0','2','0'), ('32434','18','','10357','DB [{#DBNAME}]: Frozen XID before stop, %','pgsql.frozenxid.prc_before_stop["{#DBNAME}"]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Preventing Transaction ID Wraparound Failures: https://www.postgresql.org/docs/current/routine-vacuuming.html#VACUUM-FOR-WRAPAROUND','0','30d','0','','32406','','','','','200','1','0','','','0','0','0','0','0','0','0','44ddd66ea37449cb8fab6979b98dfd3c','0','2','0'), ('32435','18','','10233','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45476','','','','','200','1','0','','','0','0','0','0','0','0','0','017797e68eae49afaa864dd57757bbd8','0','2','0'), ('32436','18','','10233','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45476','','','','','200','1','0','','','0','0','0','0','0','0','0','25cf4b11ade848fb9947ef85c59da65a','0','2','0'), ('32437','18','','10233','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45476','','','','','200','1','0','','','0','0','0','0','0','0','0','467f6179fa7d43c2a23333330c1ceac1','0','2','0'), ('32438','18','','10233','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45476','','','','','200','1','0','','','0','0','0','0','0','0','0','0994d40dab10493c96c4f79d0cc5e619','0','2','0'), ('32439','18','','10233','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45476','','','','','200','1','0','','','0','0','0','0','0','0','0','1c5a284353964175b4541c78fea7d07d','0','2','0'), ('32464','18','','10359','Sensors discovery','aranet.sensor.discovery','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Discovery for Aranet Cloud sensors','0','30d','0','','32463','','','','','200','1','0','','','0','0','0','0','0','0','0','92fb73948fa74de8a6a219397b77b570','0','2','0'), ('32486','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.battery.voltage["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','31d','365d','0','0','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','','','','','200','1','0','','','0','0','0','0','0','0','0','b5fca30b1433461f82ea7fe5c72687ef','0','2','0'), ('32487','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.co2["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','31d','365d','0','0','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','','','','','200','1','0','','','0','0','0','0','0','0','0','5057bec2a8d0446cb3515f1771e30d41','0','2','0'), ('32488','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.current["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','31d','365d','0','0','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','','','','','200','1','0','','','0','0','0','0','0','0','0','68434a6b6881497b8f7892b00044e3e7','0','2','0'), ('32489','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.diff_pressure["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','31d','365d','0','0','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','','','','','200','1','0','','','0','0','0','0','0','0','0','d02fa9c559af492d8f23503c6c0e6b67','0','2','0'), ('32490','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.distance["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','31d','365d','0','0','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','','','','','200','1','0','','','0','0','0','0','0','0','0','4a2dd84d9be34e39b4b8e0c03199ebec','0','2','0'), ('32491','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.humidity["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','31d','365d','0','0','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','','','','','200','1','0','','','0','0','0','0','0','0','0','b0b25cd929fe493e8db07b19f64e623a','0','2','0'), ('32492','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.illuminance["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','31d','365d','0','0','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','','','','','200','1','0','','','0','0','0','0','0','0','0','0617cbdf99844d82a469bf600c94bcfa','0','2','0'), ('32493','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.last_update["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','31d','365d','0','3','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','','','','','200','1','0','','','0','0','0','0','0','0','0','296198c168694dc0bd0af5d1cc07cc0e','0','2','0'), ('32494','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.ph["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','','','','','200','1','0','','','0','0','0','0','0','0','0','ad6f3af944a04305a196ff60bdae078f','0','2','0'), ('32495','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.pore_electric_cond["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','31d','365d','0','0','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','','','','','200','1','0','','','0','0','0','0','0','0','0','4610a3ef84e54ddeb778e4f1c9e7ab8a','0','2','0'), ('32496','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.ppfd["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','31d','365d','0','0','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','','','','','200','1','0','','','0','0','0','0','0','0','0','7f41b6f57a024e4fa632268bec66fdd3','0','2','0'), ('32497','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.pressure["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','31d','365d','0','0','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','','','','','200','1','0','','','0','0','0','0','0','0','0','3534343a6f78415e94b52f791a1a419a','0','2','0'), ('32498','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.pulses["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','31d','365d','0','0','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','','','','','200','1','0','','','0','0','0','0','0','0','0','471e5f773216407e819c840161562d1e','0','2','0'), ('32499','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.pulses_cumulative["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','31d','365d','0','0','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','','','','','200','1','0','','','0','0','0','0','0','0','0','da698f1bec144ab8aa8d960669c385d5','0','2','0'), ('32500','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.rssi["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','31d','365d','0','0','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','','','','','200','1','0','','','0','0','0','0','0','0','0','eefb5804ec224d26a3050246907c35aa','0','2','0'), ('32501','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.soil_dielectric_perm["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','31d','365d','0','0','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','','','','','200','1','0','','','0','0','0','0','0','0','0','53b7bb6bab76432f95599917e61a3ea7','0','2','0'), ('32502','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.soil_electric_cond["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','31d','365d','0','0','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','','','','','200','1','0','','','0','0','0','0','0','0','0','2f73f57b147c4d3498bd46a4048e2418','0','2','0'), ('32503','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.temp["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','31d','365d','0','0','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','','','','','200','1','0','','','0','0','0','0','0','0','0','86a562af26184359ac7d2287c6bd87c6','0','2','0'), ('32504','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.voltage["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','31d','365d','0','0','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','','','','','200','1','0','','','0','0','0','0','0','0','0','461f54e7c7ce4658b8acc83be8d6906c','0','2','0'), ('32505','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.volumetric.water.content["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','31d','365d','0','0','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','','','','','200','1','0','','','0','0','0','0','0','0','0','8a03e78d9f4145b58c55d04189b90423','0','2','0'), ('32506','18','','10359','{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','aranet.weight["{#GATEWAY_ID}", "{#SENSOR_ID}"]','0','31d','365d','0','0','','{#UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32463','','','','','200','1','0','','','0','0','0','0','0','0','0','6eb5e840b089469ca644a20bcb7739d4','0','2','0'), ('32507','18','','10353','[{#POOLNAME}] Pool Used','ceph.pool["{#POOLNAME}",bytes_used]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total bytes used in a pool.','0','30d','0','','32117','','','','','200','1','0','','','0','0','0','0','0','0','0','1090dc09ce79458e9471863fcb973460','0','2','0'), ('32508','18','','10353','[{#POOLNAME}] Max available','ceph.pool["{#POOLNAME}",max_avail]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The maximum available space in the given pool.','0','30d','0','','32117','','','','','200','1','0','','','0','0','0','0','0','0','0','4e49ce8a11084dd287f89b076cc70535','0','2','0'), ('32509','18','','10353','[{#POOLNAME}] Pool objects','ceph.pool["{#POOLNAME}",objects]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of objects in the pool.','0','30d','0','','32117','','','','','200','1','0','','','0','0','0','0','0','0','0','5c7bd85f9d944215acaced87b0eb216f','0','2','0'), ('32510','18','','10353','[{#POOLNAME}] Pool Percent Used','ceph.pool["{#POOLNAME}",percent_used]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of the storage used per pool.','0','30d','0','','32117','','','','','200','1','0','','','0','0','0','0','0','0','0','eda166ae6c4c46cf8c01c2b928f07ec5','0','2','0'), ('32511','18','','10353','[{#POOLNAME}] Pool Read bandwidth','ceph.pool["{#POOLNAME}",rd_bytes.rate]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The read rate per pool (bytes per second).','0','30d','0','','32117','','','','','200','1','0','','','0','0','0','0','0','0','0','5311f1a539284c5483458e1820496be3','0','2','0'), ('32512','18','','10353','[{#POOLNAME}] Pool Read operations','ceph.pool["{#POOLNAME}",rd_ops.rate]','0','31d','365d','0','0','','ops','','',NULL,NULL,'','','0','','','','','2',NULL,'The read rate per pool (operations per second).','0','30d','0','','32117','','','','','200','1','0','','','0','0','0','0','0','0','0','76871b86d66d4307a83e813a8d9fc1b0','0','2','0'), ('32513','18','','10353','[{#POOLNAME}] Pool RAW Used','ceph.pool["{#POOLNAME}",stored_raw]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Bytes used in pool including the copies made.','0','30d','0','','32117','','','','','200','1','0','','','0','0','0','0','0','0','0','4c053bbaaf6946bcaf5288cc154d6fdd','0','2','0'), ('32514','18','','10353','[{#POOLNAME}] Pool Write bandwidth','ceph.pool["{#POOLNAME}",wr_bytes.rate]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The write rate per pool (bytes per second).','0','30d','0','','32117','','','','','200','1','0','','','0','0','0','0','0','0','0','955353da182243e29d326b3b2807286a','0','2','0'), ('32515','18','','10353','[{#POOLNAME}] Pool Write operations','ceph.pool["{#POOLNAME}",wr_ops.rate]','0','31d','365d','0','0','','ops','','',NULL,NULL,'','','0','','','','','2',NULL,'The write rate per pool (operations per second).','0','30d','0','','32117','','','','','200','1','0','','','0','0','0','0','0','0','0','acb3081d772444dab060a055fb3f4304','0','2','0'), ('32579','18','','10362','Ruby: File descriptors, max','gitlab.ruby.process_max_fds','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum number of open file descriptors per process.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','91ed44c1738745119e892eadb88b417f','0','2','0'), ('32580','18','','10362','Redis: Client requests rate, cache','gitlab.redis.client_requests.cache.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of Redis client requests per second. (Instance: cache)','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','7dcc638e1c174dd5975f85551211a3ba','0','2','0'), ('32581','18','','10362','Redis: Client requests rate, queues','gitlab.redis.client_requests.queues.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of Redis client requests per second. (Instance: queues)','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','f613303925db46958d181c379e22f942','0','2','0'), ('32582','18','','10362','Redis: Client requests rate, shared_state','gitlab.redis.client_requests.shared_state.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of Redis client requests per second. (Instance: shared_state)','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','3ae46654b46e4c769a7308879bc64890','0','2','0'), ('32583','18','','10362','Ruby: File descriptors opened, avg','gitlab.ruby.file_descriptors.avg','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Average number of opened file descriptors.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','950d48c3b5034e769b2bf6a7110ece02','0','2','0'), ('32584','18','','10362','Ruby: File descriptors opened, max','gitlab.ruby.file_descriptors.max','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum number of opened file descriptors.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','67ed35c3f5f444b2b10fb462838758ac','0','2','0'), ('32585','18','','10362','Ruby: File descriptors opened, min','gitlab.ruby.file_descriptors.min','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Minimum number of opened file descriptors.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','b1576e2b47bd448293c3e88885bfc87e','0','2','0'), ('32586','18','','10362','Ruby: CPU usage per second','gitlab.ruby.process_cpu_seconds.rate','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Average CPU time util in seconds.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','98feff3bfe0d4a9ea88733ae8fef8769','0','2','0'), ('32587','18','','10362','Ruby: RSS memory, avg','gitlab.ruby.process_resident_memory_bytes.avg','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Average RSS Memory usage in bytes.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','8de84a159b864ed791c07835aa0ec39a','0','2','0'), ('32588','18','','10362','Redis: Client exceptions rate, queues','gitlab.redis.client_exceptions.queues.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of Redis client exceptions per second. (Instance: queues)','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','0bff591252dc4cc497527afb1f7d96b2','0','2','0'), ('32589','18','','10362','Ruby: RSS memory, max','gitlab.ruby.process_resident_memory_bytes.max','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum RSS Memory usage in bytes.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','27285f7d3c344d68b7945edde3cb8ecf','0','2','0'), ('32590','18','','10362','Ruby: RSS memory, min','gitlab.ruby.process_resident_memory_bytes.min','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Minimum RSS Memory usage in bytes.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','0cf8d21bcb8d4fb7880784dc82ba8229','0','2','0'), ('32591','18','','10362','Ruby: First process start time','gitlab.ruby.process_start_time_seconds.first','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'Minimum UNIX timestamp of ruby processes start time.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','68267621a5e14494bf57225e71e05ff4','0','2','0'), ('32592','18','','10362','Ruby: Last process start time','gitlab.ruby.process_start_time_seconds.last','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum UNIX timestamp ruby processes start time.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','be88084e9b544af68f78c013caf6b59a','0','2','0'), ('32593','18','','10362','Ruby: Running_threads','gitlab.ruby.threads_running','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of running Ruby threads.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','f23849bd9716444f8bf65d3964e3be15','0','2','0'), ('32594','18','','10362','User CAPTCHA logins, total','gitlab.successful_login_captcha_total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Counter of successful CAPTCHA attempts during login.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','56af56ccc23d44bcb636871229fbcde2','0','2','0'), ('32595','18','','10362','Transactions per second','gitlab.transactions.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Transactions per second (gitlab_transaction_* metrics).','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','95deb1dc93d34935930b154d1222c8a4','0','2','0'), ('32596','18','','10362','Upload file does not exist','gitlab.upload_file_does_not_exist','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times an upload record could not find its file.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','d1a346edc81d487da115105333e8992d','0','2','0'), ('32597','18','','10362','Redis: client exceptions rate, shared_state','gitlab.redis.client_exceptions.shared_state.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of Redis client exceptions per second. (Instance: shared_state)','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','800b429ea1d044e6a685bc51706f8547','0','2','0'), ('32598','18','','10362','Cache: Misses rate, total','gitlab.cache.misses_total.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The cache read miss count.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','43a26551b0a6460cac3c43138ec5fd33','0','2','0'), ('32599','18','','10362','Redis: Client exceptions rate, cache','gitlab.redis.client_exceptions.cache.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of Redis client exceptions per second. (Instance: cache)','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','173b8d5e108f471fbf4c1267dcb9cc37','0','2','0'), ('32600','18','','10362','User CAPTCHA logins failed, total','gitlab.failed_login_captcha_total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Counter of failed CAPTCHA attempts during login.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','3e409938aba24445a11012bcbf8aa113','0','2','0'), ('32601','18','','10362','Database: Connection pool, busy','gitlab.database.connection_pool_busy','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Connections to the main database in use where the owner is still alive.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','2d46dc855ca741839cfe1a19e0dc892f','0','2','0'), ('32602','18','','10362','Database: Connection pool, current','gitlab.database.connection_pool_connections','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Current connections to the main database in the pool.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','6ee7a1d3ab20463d83602b751381d821','0','2','0'), ('32603','18','','10362','Database: Connection pool, dead','gitlab.database.connection_pool_dead','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Connections to the main database in use where the owner is not alive.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','561a1f54c98d4a2b828fe644961404be','0','2','0'), ('32604','18','','10362','Database: Connection pool, idle','gitlab.database.connection_pool_idle','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Connections to the main database not in use.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','3a0b5c8de88b41fa9ebf6f3fca63833e','0','2','0'), ('32605','18','','10362','Database: Connection pool, size','gitlab.database.connection_pool_size','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total connection to the main database pool capacity.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','fd1458232de34981a9a00be820e123f1','0','2','0'), ('32606','18','','10362','Database: Connection pool, waiting','gitlab.database.connection_pool_waiting','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Threads currently waiting on this queue.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','501a2f646ced4207a32a24e900310440','0','2','0'), ('32607','18','','10362','Version','gitlab.deployments.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of the GitLab instance.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','71a5f82d11914b12a86008bfd488fb1e','0','2','0'), ('32608','18','','10362','HTTP requests rate, 4xx','gitlab.http.requests.4xx.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of handle failures of requests with code 4XX.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','3ff4d9793af94d339ca225aaf9200554','0','2','0'), ('32609','18','','10362','Cache: Operations rate, total','gitlab.cache.operations_total.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of cache operations.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','9c507412d4544a37bdad49ba47c48302','0','2','0'), ('32610','18','','10362','HTTP requests rate, 5xx','gitlab.http.requests.5xx.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of handle failures of requests with HTTP-code 5xx.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','d0fa18012d6a4b0ba6620b0ef6cb9aef','0','2','0'), ('32611','18','','10362','HTTP requests rate, total','gitlab.http.requests.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of requests received into the system.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','2d739e4bedb24b50ab6adfdfdeb39da9','0','2','0'), ('32612','18','','10362','Pipelines: Auto DevOps pipelines, total','gitlab.pipeline.auto_devops_completed.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Counter of completed Auto DevOps pipelines.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','7ef7142babfd4bc2b5b25be541c0511f','0','2','0'), ('32613','18','','10362','Pipelines: Auto DevOps pipelines, failed','gitlab.pipeline.auto_devops_completed_total.failed','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Counter of completed Auto DevOps pipelines with status "failed".','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','0ffa0a5c108644508252a03469e4f394','0','2','0'), ('32614','18','','10362','Pipelines: Created, total','gitlab.pipeline.created_total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Counter of pipelines created.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','f4265a3167a245c4998958106f6ee265','0','2','0'), ('32615','18','','10362','Pipelines: CI/CD creation duration','gitlab.pipeline.pipeline_creation','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The sum of the time in seconds it takes to create a CI/CD pipeline.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','23cb22f8f81e461c86f72a92cdfde7a5','0','2','0'), ('32616','18','','10362','Pipelines: Pipelines: CI/CD creation count','gitlab.pipeline.pipeline_creation.count','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of the time it takes to create a CI/CD pipeline.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','91c3acbb82524244a1ac400587641ffa','0','2','0'), ('32617','18','','10362','Pipelines: Processing events, total','gitlab.pipeline.processing_events_total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total amount of pipeline processing events.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','c80453c338814951a9e97d9f37e7d68f','0','2','0'), ('32618','18','','10362','User logins, total','gitlab.user_session_logins_total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Counter of how many users have logged in since GitLab was started or restarted.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','62c9c5a8886e431bb04c40a8045fe207','0','2','0'), ('32621','18','','10362','Active connections','gitlab.puma.active_connections[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of puma threads processing a request.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','6b6ebfe9326247c8a57fb8c96125bcee','0','2','0'), ('32622','18','','10362','Idle threads','gitlab.puma.idle_threads[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of spawned puma threads which are not processing a request.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','14194f273b4e47d98cfdcbefff64cc68','0','2','0'), ('32623','18','','10362','Killer terminations, total','gitlab.puma.killer_terminations_total[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of workers terminated by PumaWorkerKiller.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','33a1be2938e24ce2a3fb650efa4f98d6','0','2','0'), ('32624','18','','10362','Max threads','gitlab.puma.max_threads[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The maximum number of puma worker threads.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','7d93438afd73422d90b03e78b1c0f998','0','2','0'), ('32625','18','','10362','Pool capacity','gitlab.puma.pool_capacity[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of requests the puma worker is capable of taking right now.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','fe381c99c2464e95bac63da2df994b8a','0','2','0'), ('32626','18','','10362','Queued connections','gitlab.puma.queued_connections[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of connections in that puma worker''s "todo" set waiting for a worker thread.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','8c375d8323f9459a8b2a6254b7afed5b','0','2','0'), ('32627','18','','10362','Running threads','gitlab.puma.running[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of running puma threads.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','02b27e8a68884f399a8359ed6967d614','0','2','0'), ('32628','18','','10362','Running workers','gitlab.puma.running_workers[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of booted puma workers.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','b43e4275dd64427bb6eb4890c556c513','0','2','0'), ('32629','18','','10362','Stale workers','gitlab.puma.stale_workers[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of old puma workers.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','0169db2581ba48579edc911cad4b41d7','0','2','0'), ('32630','18','','10362','Workers','gitlab.puma.workers[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of puma workers.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','19e0149a6de846c7a39b305037469ecb','0','2','0'), ('32631','18','','10362','Unicorn: Active connections','gitlab.unicorn.active_connections[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of active Unicorn connections.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','7461ee7fad7f4597825644b80cce2ec2','0','2','0'), ('32632','18','','10362','Unicorn: Queued connections','gitlab.unicorn.queued_connections[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of queued Unicorn connections.','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','31e0f545c6c6428c8f9f46426cb97ca7','0','2','0'), ('32633','18','','10362','Unicorn: Workers','gitlab.unicorn.unicorn_workers[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of Unicorn workers','0','30d','0','','32578','','','','','200','1','0','','','0','0','0','0','0','0','0','44a12fd548b742069cae53a78f7f8ab0','0','2','0'), ('32647','18','','10363','ResourceManager: Uptime','hadoop.resourcemanager.uptime','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','32639','','','','','200','1','0','','','0','0','0','0','0','0','0','4e74ca69a84d441e95e2c20afd25fada','0','2','0'), ('32667','18','','10363','NameNode: Uptime','hadoop.namenode.uptime','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','32641','','','','','200','1','0','','','0','0','0','0','0','0','0','7e8769eb77304b6f9c6e1d5bbd420fd0','0','2','0'), ('32673','18','','10363','{#HOSTNAME}: Used','hadoop.datanode.dfs_used[{#HOSTNAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Used disk space.','0','30d','0','','32670','','','','','200','1','0','','','0','0','0','0','0','0','0','14904ca75991456784d2082c14b7ec88','0','2','0'), ('32674','18','','10363','{#HOSTNAME}: JVM Garbage collection time','hadoop.datanode.jvm.gc_time[{#HOSTNAME}]','0','31d','365d','0','3','','!ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The JVM garbage collection time in milliseconds.','0','30d','0','','32670','','','','','200','1','0','','','0','0','0','0','0','0','0','01bc20e53e314089a55b270961062c00','0','2','0'), ('32675','18','','10363','{#HOSTNAME}: JVM Heap usage','hadoop.datanode.jvm.mem_heap_used[{#HOSTNAME}]','0','31d','365d','0','0','','!MB','','',NULL,NULL,'','','0','','','','','2',NULL,'The JVM heap usage in MBytes.','0','30d','0','','32670','','','','','200','1','0','','','0','0','0','0','0','0','0','4cae9eef95f24810a6607de5348b7b54','0','2','0'), ('32676','18','','10363','{#HOSTNAME}: JVM Threads','hadoop.datanode.jvm.threads[{#HOSTNAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of JVM threads.','0','30d','0','','32670','','','','','200','1','0','','','0','0','0','0','0','0','0','dc30742dba2e4e5d99ca237615ffaef3','0','2','0'), ('32677','18','','10363','{#HOSTNAME}: Number of failed volumes','hadoop.datanode.numfailedvolumes[{#HOSTNAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of failed storage volumes.','0','30d','0','','32670','','','','','200','1','0','','','0','0','0','0','0','0','0','57c00b46aef94c018806cdae43adfab5','0','2','0'), ('32679','18','','10363','{#HOSTNAME}: Remaining','hadoop.datanode.remaining[{#HOSTNAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Remaining disk space.','0','30d','0','','32670','','','','','200','1','0','','','0','0','0','0','0','0','0','5a46ec3c89eb40d4ad57cec2080c66f8','0','2','0'), ('32680','18','','10363','{#HOSTNAME}: Uptime','hadoop.datanode.uptime[{#HOSTNAME}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32670','','','','','200','1','0','','','0','0','0','0','0','0','0','2ac19ff8ee7f480f9974be56ab06eaaf','0','2','0'), ('32683','18','','10363','{#HOSTNAME}: Container launch avg duration','hadoop.nodemanager.container_launch_duration_avg[{#HOSTNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32671','','','','','200','1','0','','','0','0','0','0','0','0','0','e8d0ea2c96b643f899e370ab73c5c262','0','2','0'), ('32684','18','','10363','{#HOSTNAME}: JVM Garbage collection time','hadoop.nodemanager.jvm.gc_time[{#HOSTNAME}]','0','31d','365d','0','3','','!ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The JVM garbage collection time in milliseconds.','0','30d','0','','32671','','','','','200','1','0','','','0','0','0','0','0','0','0','82e289c999a246a6bd1feb85349d0348','0','2','0'), ('32685','18','','10363','{#HOSTNAME}: JVM Heap usage','hadoop.nodemanager.jvm.mem_heap_used[{#HOSTNAME}]','0','31d','365d','0','0','','!MB','','',NULL,NULL,'','','0','','','','','2',NULL,'The JVM heap usage in MBytes.','0','30d','0','','32671','','','','','200','1','0','','','0','0','0','0','0','0','0','4032f0a266c44b34896e8179bbed2419','0','2','0'), ('32686','18','','10363','{#HOSTNAME}: JVM Threads','hadoop.nodemanager.jvm.threads[{#HOSTNAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of JVM threads.','0','30d','0','','32671','','','','','200','1','0','','','0','0','0','0','0','0','0','d7485913b2db4e31a8f02f63f8c18913','0','2','0'), ('32688','18','','10363','{#HOSTNAME}: RPC queue & processing time','hadoop.nodemanager.rpc_processing_time_avg[{#HOSTNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Average time spent on processing RPC requests.','0','30d','0','','32671','','','','','200','1','0','','','0','0','0','0','0','0','0','01a5bcdbfc1c4a84a471738998aed372','0','2','0'), ('32690','18','','10363','{#HOSTNAME}: Uptime','hadoop.nodemanager.uptime[{#HOSTNAME}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32671','','','','','200','1','0','','','0','0','0','0','0','0','0','f8f6799130d34848a7dfb65815939c48','0','2','0'), ('32784','18','','10365','Standby','vault.health.standby','0','31d','365d','0','3','','','','',NULL,'191','','','0','','','','','0',NULL,'Standby status.','0','30d','0','','32781','','','','','200','1','0','','','0','0','0','0','0','0','0','0641c979cf774d97a9bc52dbaffe8a0f','0','2','0'), ('32785','18','','10365','Disaster Recovery replication','vault.health.replication_dr_mode','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Disaster recovery replication mode https://www.vaultproject.io/docs/enterprise/replication','0','30d','0','','32781','','','','','200','1','0','','','0','0','0','0','0','0','0','488a43102a304f7ab4d2586088a2fded','0','2','0'), ('32786','18','','10365','Is leader','vault.leader.is_self','0','31d','365d','0','3','','','','',NULL,'191','','','0','','','','','0',NULL,'Leader status.','0','30d','0','','32780','','','','','200','1','0','','','0','0','0','0','0','0','0','ea6a7f625c144dc6beff71d3a19004ab','0','2','0'), ('32787','18','','10365','HA enabled','vault.leader.ha_enabled','0','31d','365d','0','3','','','','',NULL,'191','','','0','','','','','0',NULL,'HA enabled status.','0','30d','0','','32780','','','','','200','1','0','','','0','0','0','0','0','0','0','77da3cf43b0d4a449399f3de6d5e8477','0','2','0'), ('32788','18','','10365','Version','vault.health.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Server version.','0','30d','0','','32781','','','','','200','1','0','','','0','0','0','0','0','0','0','e7e79cc09faa409dbe3fa74e1db4cb5f','0','2','0'), ('32789','18','','10365','Sealed','vault.health.sealed','0','31d','365d','0','3','','','','',NULL,'191','','','0','','','','','0',NULL,'Seal status.','0','30d','0','','32781','','','','','200','1','0','','','0','0','0','0','0','0','0','e6d2183bb8b14fa3a647d5cea1f56d4c','0','2','0'), ('32790','18','','10365','Performance replication','vault.health.replication_performance_mode','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Performance replication mode https://www.vaultproject.io/docs/enterprise/replication','0','30d','0','','32781','','','','','200','1','0','','','0','0','0','0','0','0','0','509982bde325478a9d77f99c256f1068','0','2','0'), ('32791','18','','10365','Initialized','vault.health.initialized','0','31d','365d','0','3','','','','',NULL,'191','','','0','','','','','0',NULL,'Initialization status.','0','30d','0','','32781','','','','','200','1','0','','','0','0','0','0','0','0','0','05c46e931d29415f9a6a32f4dadd1eed','0','2','0'), ('32792','18','','10365','Performance standby','vault.health.performance_standby','0','31d','365d','0','3','','','','',NULL,'191','','','0','','','','','0',NULL,'Performance standby status.','0','30d','0','','32781','','','','','200','1','0','','','0','0','0','0','0','0','0','75a3c56f1bb24646927cf9b490471cae','0','2','0'), ('32793','18','','10365','Healthcheck','vault.health.check','0','31d','365d','0','3','','','','',NULL,'42','','','0','','','','','0',NULL,'Vault healthcheck.','0','30d','0','','32781','','','','','200','1','0','','','0','0','0','0','0','0','0','df395f64c8fc45d2a9442bb655474b4a','0','2','0'), ('32794','18','','10365','Get metrics error','vault.get_metrics.error','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get metrics error.','0','30d','0','','32782','','','','','200','1','0','','','0','0','0','0','0','0','0','cf264b78e4c44d49a81eac141a86d011','0','2','0'), ('32795','18','','10365','Clear metrics','vault.clear_metrics','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','32782','','','','','200','1','0','','','0','0','0','0','0','0','0','9607f909cfed4515bed2e0ea16749e0d','0','2','0'), ('32869','18','','10365','Token metrics discovery','vault.tokens.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Tokens metrics discovery.','0','7d','0','','32783','','','','','200','1','0','','','0','0','0','0','0','0','0','d580dee4c0bc4a0db91c9c5af70965af','0','2','0'), ('32871','18','','10365','Token [{#TOKEN_NAME}] error','vault.token_via_accessor.error["{#ACCESSOR}"]','0','31d','0','0','1','','','','',NULL,'191','','','0','','','','','2',NULL,'Token lookup error text.','0','30d','0','','32783','','','','','200','1','0','','','0','0','0','0','0','0','0','9a9359e74c3a48b1bbada84d772e665a','0','2','0'), ('32872','18','','10365','Token [{#TOKEN_NAME}] has TTL','vault.token_via_accessor.has_ttl["{#ACCESSOR}"]','0','31d','365d','0','3','','','','',NULL,'191','','','0','','','','','2',NULL,'The Token has TTL.','0','30d','0','','32783','','','','','200','1','0','','','0','0','0','0','0','0','0','caa3f9ca96b14b929dd75238602fead9','0','2','0'), ('32873','18','','10365','Token [{#TOKEN_NAME}] TTL','vault.token_via_accessor.ttl["{#ACCESSOR}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The TTL period of the token.','0','30d','0','','32783','','','','','200','1','0','','','0','0','0','0','0','0','0','0f872d9d811c44f6a9a9f8f5089ca0a1','0','2','0'), ('32965','18','','10369','Approximate data size','zookeeper.approximate_data_size','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Data tree size in bytes.The size includes the znode path and its value.','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','c7e7e728371a45ef81c35929a713ab4a','0','2','0'), ('32966','18','','10369','Outstanding requests','zookeeper.outstanding_requests','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of queued requests when the server is under load and is receiving more sustained requests than it can process.','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','88ede9687323440183d665d38938212e','0','2','0'), ('32967','18','','10369','Latency, max','zookeeper.max_latency','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum amount of time it takes for the server to respond to a client request.','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','185f5c3fdfde43afa55ed4c38c0878dc','0','2','0'), ('32968','18','','10369','Latency, min','zookeeper.min_latency','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'The minimum amount of time it takes for the server to respond to a client request.','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','a4b3d6d9cfb14454b83475b89fe44e06','0','2','0'), ('32969','18','','10369','Alive connections','zookeeper.num_alive_connections','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of active clients connected to a zookeeper server.','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','86ba6a7967e8462cb6ff4be126e21a44','0','2','0'), ('32970','18','','10369','File descriptors, open','zookeeper.open_file_descriptor_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of file descriptors that a zookeeper server has open.','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','e441c926d2f947708b39d7615520405d','0','2','0'), ('32971','18','','10369','Packets received per sec','zookeeper.packets_received.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of zookeeper packets received by a server per second.','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','3295ed3fdb504014b351eba81bf55ccf','0','2','0'), ('32972','18','','10369','Looking per sec','zookeeper.looking_count.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Rate of transitions into looking state.','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','8a784676586d4b719a0b5c1327a0645f','0','2','0'), ('32973','18','','10369','Packets sent per sec','zookeeper.packets_sent','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of zookeeper packets sent from a server per second.','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','ecef658cb34247e2838e0f7313dba0bf','0','2','0'), ('32974','18','','10369','Revalidate per sec','zookeeper.revalidate_count.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Rate of revalidations.','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','8295b8c4c1f44ba48987f36b54b43ab8','0','2','0'), ('32975','18','','10369','Server mode','zookeeper.server_state','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Mode of the server. In an ensemble, this may either be leader or follower. Otherwise, it is standalone','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','44a1f40fb3604fcda9fedc4beeb87baf','0','2','0'), ('32976','18','','10369','Snap syncs per sec','zookeeper.snap_count.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of snap syncs performed per second','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','d143981fdaee4c51bcbb773579be25f0','0','2','0'), ('32977','18','','10369','Uptime','zookeeper.uptime','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Uptime that a peer has been in a table leading/following/observing state.','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','cea535cfb32940f29aee3c17734e8c51','0','2','0'), ('32978','18','','10369','Version','zookeeper.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of Zookeeper server.','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','86a65edd19e14fa9aea1ff40220f895c','0','2','0'), ('32979','18','','10369','Watch count','zookeeper.watch_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of watches currently set on the local ZooKeeper process.','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','5cbc4414c19146ff87e15f21c77808c9','0','2','0'), ('32980','18','','10369','File descriptors, max','zookeeper.max_file_descriptor_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum number of file descriptors that a zookeeper server can open.','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','350a5b566e054e8390bb43ce0b2916c6','0','2','0'), ('32981','18','','10369','Global sessions','zookeeper.global_sessions','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of global sessions.','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','0f8e7ac6f753483d86744b2ab6aa28dd','0','2','0'), ('32982','18','','10369','Local sessions','zookeeper.local_sessions','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of local sessions.','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','72519325755b4c27931c674756313ebb','0','2','0'), ('32983','18','','10369','Election time, avg','zookeeper.avg_election_time','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'Time between entering and leaving election.','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','260f60267bda40099f323292d7f0b8fd','0','2','0'), ('32984','18','','10369','Ephemeral nodes count','zookeeper.ephemerals_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of ephemeral nodes that a zookeeper server has in its data tree.','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','1a581bf18a364868b6eb47bbafcaa105','0','2','0'), ('32985','18','','10369','Diff syncs per sec','zookeeper.diff_count.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of diff syncs performed per second','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','3e8e3bc9910e4c3c898e1371790a35f0','0','2','0'), ('32986','18','','10369','Revalidate connections per sec','zookeeper.connection_revalidate_count.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Rate of connection revalidations.','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','1498099b44d3424093f7cea55cb256e8','0','2','0'), ('32987','18','','10369','Rejected connections per sec','zookeeper.connection_rejected.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Rate of connection rejected.','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','640195274cda47ed83faa4f0c6529818','0','2','0'), ('32988','18','','10369','Drop connections per sec','zookeeper.connection_drop_count.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Rate of connection drops.','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','1c0ff2c8d4844ed4b815f2a793dd6e7b','0','2','0'), ('32989','18','','10369','Commit per sec','zookeeper.commit_count.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of commits performed per second','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','10b17f0682c44e2391b8ee191ed355c1','0','2','0'), ('32990','18','','10369','Snapshot writes','zookeeper.cnt_snapshottime','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of performed snapshot writes.','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','159bf1c1f29846a582e201c143239182','0','2','0'), ('32991','18','','10369','Fsync','zookeeper.cnt_fsynctime','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of performed fsyncs.','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','01d490987f954950b7ce3a107aefa200','0','2','0'), ('32992','18','','10369','Elections','zookeeper.cnt_election_time','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of elections happened.','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','b9a97ebbaf7d416998e24553cee3559c','0','2','0'), ('32993','18','','10369','Bytes received per sec','zookeeper.bytes_received_count.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes received per second.','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','f227c61a498f47f6ba1862a741da3789','0','2','0'), ('32994','18','','10369','Snapshot write time, avg','zookeeper.avg_snapshottime','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'Average time to write a snapshot.','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','6195a64eb23341f0964d8d9ffbf9e624','0','2','0'), ('32995','18','','10369','Latency, avg','zookeeper.avg_latency','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'The average amount of time it takes for the server to respond to a client request.','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','243ea1e324d5464a88c8847e721cd38b','0','2','0'), ('32996','18','','10369','Fsync time, avg','zookeeper.avg_fsynctime','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'Time to fsync transaction log.','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','28aa45a47df64503a9553a05794f512a','0','2','0'), ('32997','18','','10369','Znode count','zookeeper.znode_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of znodes in the ZooKeeper namespace (the data)','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','07925b71e3fe421eac9b338fc23713d0','0','2','0'), ('32999','18','','10369','Leader metrics discovery','zookeeper.metrics.leader','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Additional metrics for leader node','0','7d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','70e9fabfdfe446edae67a340f648612f','0','2','0'), ('33006','18','','10369','Learners{#SINGLETON}','zookeeper.learners[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of learners.','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','3a9b38e228a0438eae354cfc885b81ab','0','2','0'), ('33007','18','','10369','Pending syncs{#SINGLETON}','zookeeper.pending_syncs[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of pending syncs to carry out to ZooKeeper ensemble followers.','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','c6ae1476b69f43108f843508a02343a7','0','2','0'), ('33008','18','','10369','Quorum size{#SINGLETON}','zookeeper.quorum_size[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','d5297a5598e94ef5acb1f6affdf51eee','0','2','0'), ('33009','18','','10369','Synced followers{#SINGLETON}','zookeeper.synced_followers[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of synced followers reported when a node server_state is leader.','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','406d13a8d38a47498e939a118ec0329a','0','2','0'), ('33010','18','','10369','Synced non-voting follower{#SINGLETON}','zookeeper.synced_non_voting_followers[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of synced voting followers reported when a node server_state is leader.','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','71c9de2ed85d4a5fb2306b24b9ca67d3','0','2','0'), ('33011','18','','10369','Synced observers{#SINGLETON}','zookeeper.synced_observers[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of synced observers.','0','30d','0','','32963','','','','','200','1','0','','','0','0','0','0','0','0','0','299da1a6343b47a4a25efe2d8581965e','0','2','0'), ('33012','18','','10262','Utilization of availability manager internal processes, in %','process.availability_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the availability manager processes have been busy for the last minute.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','189d41565cdf4f459468c43d1b1d0961','0','2','0'), ('33014','18','','10261','Trend function cache, % of unique requests','tcache.pitems','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The effectiveness statistics of the Zabbix trend function cache. The percentage of cached items calculated from the sum of the cached items plus requests. A low percentage most likely means that the cache size can be reduced.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','1625b3470fbf4bd7aa5b7051e328b37c','0','2','0'), ('33015','18','','10261','Trend function cache, % of misses','tcache.pmisses','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The effectiveness statistics of the Zabbix trend function cache. The percentage of cache misses.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','2c8bf95e97dd48679e34591c72626c90','0','2','0'), ('33016','18','','10261','Utilization of availability manager internal processes, in %','process.availability_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the availability manager processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','44ae7bbbca5346a4926bf1208e00deb8','0','2','0'), ('33017','18','','10261','Utilization of history poller internal processes, in %','process.history_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the history poller processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','edefe2732df14bc3933b8e1ff65fbd21','0','2','0'), ('33127','18','','10316','Innodb buffer pool wait free','mysql.innodb_buffer_pool_wait_free','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times InnoDB waited for a free page before reading or creating a page. Normally, writes to the InnoDB buffer pool happen in the background. When no clean pages are available, dirty pages are flushed first in order to free some up. This counts the numbers of wait for this operation to finish. If this value is not small, look at the increasing `innodb_buffer_pool_size`.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','61db0feae0b440c087177f4312eb6b7a','0','2','0'), ('33128','18','','10316','Innodb number open files','mysql.innodb_num_open_files','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of open files held by InnoDB. InnoDB only.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','2eacd8c07f7148acaaa9b8f8602720ae','0','2','0'), ('33129','18','','10316','Innodb log written','mysql.innodb_os_log_written','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes written to the InnoDB log.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','29d3513668ad4bdea28d947d2f983dd2','0','2','0'), ('33130','18','','10316','Open tables','mysql.open_tables','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of tables that are open.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','3dd5ffb7c1cc45a487c5c7cabfa90ca6','0','2','0'), ('33131','18','','10316','Open table definitions','mysql.open_table_definitions','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of cached table definitions.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','fe572969a6754248b10a35a5c0afedf3','0','2','0'), ('33132','18','','10316','Binlog cache disk use','mysql.binlog_cache_disk_use','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of transactions that used a temporary disk cache because they could not fit in the regular binary log cache, being larger than `binlog_cache_size`.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','75b9c78d76334927a3fc2a4d1322ecc2','0','2','0'), ('33133','18','','10316','MariaDB discovery','mysql.extra_metric.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for additional metrics if MariaDB is used.','0','7d','0','','30431','','','','','200','1','0','','','0','0','0','0','0','0','0','bc28468760e14d069ef7b47858846a50','0','2','0'), ('33134','18','','10316','Binlog commits','mysql.binlog_commits[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of transactions committed to the binary log.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','7743cdbaf71c491189ac1a927409e998','0','2','0'), ('33135','18','','10316','Binlog group commits','mysql.binlog_group_commits[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of group commits done to the binary log.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','c897f8f0fb1c4e409dd95305fd221e01','0','2','0'), ('33136','18','','10316','Master GTID wait count','mysql.master_gtid_wait_count[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of times `MASTER_GTID_WAIT` called.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','749e72ebd1014f7faee352e23ac3dfdd','0','2','0'), ('33137','18','','10316','Master GTID wait timeouts','mysql.master_gtid_wait_timeouts[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of timeouts occurring in `MASTER_GTID_WAIT`.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','4a4537b0db5b43119af910d0ba421035','0','2','0'), ('33138','18','','10316','Master GTID wait time','mysql.master_gtid_wait_time[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of time spent in `MASTER_GTID_WAIT`.','0','30d','0','','30433','','','','','200','1','0','','','0','0','0','0','0','0','0','c1e95abc88cf486a9226bf760254f797','0','2','0'), ('33139','18','','10316','Replication Slave SQL Running State {#MASTER_HOST}','mysql.slave_sql_running_state["{#MASTER_HOST}"]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'This shows the state of the SQL driver threads.','0','30d','0','','30475','','','','','200','1','0','','','0','0','0','0','0','0','0','27e807d840d4474484c2e1f896726b6b','0','2','0'), ('33141','18','','10320','Innodb buffer pool wait free','mysql.innodb_buffer_pool_wait_free','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times InnoDB waited for a free page before reading or creating a page. Normally, writes to the InnoDB buffer pool happen in the background. When no clean pages are available, dirty pages are flushed first in order to free some up. This counts the numbers of wait for this operation to finish. If this value is not small, look at the increasing `innodb_buffer_pool_size`.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','3ab113998cec43da9bb702f5894d7b24','0','2','0'), ('33142','18','','10320','Innodb number open files','mysql.innodb_num_open_files','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of open files held by InnoDB. InnoDB only.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','2c1cba2399ab4b349e9751252c000b95','0','2','0'), ('33143','18','','10320','Innodb log written','mysql.innodb_os_log_written','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes written to the InnoDB log.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','6a4c63c40fb042868d2f23c86a0601a5','0','2','0'), ('33144','18','','10320','Open tables','mysql.open_tables','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of tables that are open.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','e766adca92fa47299b79e75d263437cc','0','2','0'), ('33145','18','','10320','Open table definitions','mysql.open_table_definitions','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of cached table definitions.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','26f839251a444e9abf83d4710718962a','0','2','0'), ('33146','18','','10320','Binlog cache disk use','mysql.binlog_cache_disk_use','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of transactions that used a temporary disk cache because they could not fit in the regular binary log cache, being larger than `binlog_cache_size`.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','06338fe53a014be095f3807d58b9ed5b','0','2','0'), ('33147','18','','10320','MariaDB discovery','mysql.extra_metric.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for additional metrics if MariaDB is used.','0','7d','0','','30637','','','','','200','1','0','','','0','0','0','0','0','0','0','15035186d4d54962bc6b82ebbaea8784','0','2','0'), ('33148','18','','10320','Binlog commits','mysql.binlog_commits[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of transactions committed to the binary log.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','c7ff129277134d86923dfb10e6d67928','0','2','0'), ('33149','18','','10320','Binlog group commits','mysql.binlog_group_commits[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of group commits done to the binary log.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','07b27817a20244d68f2609c43aea1dea','0','2','0'), ('33150','18','','10320','Master GTID wait count','mysql.master_gtid_wait_count[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of times `MASTER_GTID_WAIT` called.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','152c4219a8d14812a813a250c6f17071','0','2','0'), ('33151','18','','10320','Master GTID wait timeouts','mysql.master_gtid_wait_timeouts[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of timeouts occurring in `MASTER_GTID_WAIT`.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','3f13ee12a3db4933804c103ebfb170c9','0','2','0'), ('33152','18','','10320','Master GTID wait time','mysql.master_gtid_wait_time[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of time spent in `MASTER_GTID_WAIT`.','0','30d','0','','30639','','','','','200','1','0','','','0','0','0','0','0','0','0','6ed43548a190425a83fce15b84b3ec87','0','2','0'), ('33153','18','','10320','Replication Slave SQL Running State {#MASTER_HOST}','mysql.replication.slave_sql_running_state["{#MASTER_HOST}"]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'This shows the state of the SQL driver threads.','0','30d','0','','30681','','','','','200','1','0','','','0','0','0','0','0','0','0','bb79eaa9fc0d45e7b323a34d0c3f03cf','0','2','0'), ('33155','18','','10317','Innodb buffer pool wait free','mysql.innodb_buffer_pool_wait_free','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times InnoDB waited for a free page before reading or creating a page. Normally, writes to the InnoDB buffer pool happen in the background. When no clean pages are available, dirty pages are flushed first in order to free some up. This counts the numbers of wait for this operation to finish. If this value is not small, look at the increasing `innodb_buffer_pool_size`.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','4e829cbb3cc2485dac2757867badd0f4','0','2','0'), ('33156','18','','10317','Innodb number open files','mysql.innodb_num_open_files','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of open files held by InnoDB. InnoDB only.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','79218a1068394ce69dfc6eeb626e83bc','0','2','0'), ('33157','18','','10317','Innodb log written','mysql.innodb_os_log_written','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes written to the InnoDB log.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','fc561c5392bb43a4842977bdf4b882a8','0','2','0'), ('33158','18','','10317','Open tables','mysql.open_tables','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of tables that are open.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','85e17b6b196e4916838e0318992fe33c','0','2','0'), ('33159','18','','10317','Open table definitions','mysql.open_table_definitions','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of cached table definitions.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','c23ce7b2689745728465c5b405d7b3ba','0','2','0'), ('33160','18','','10317','Binlog cache disk use','mysql.binlog_cache_disk_use','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of transactions that used a temporary disk cache because they could not fit in the regular binary log cache, being larger than `binlog_cache_size`.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','9db77e72fd9d404a8e1fd4e72c92d75c','0','2','0'), ('33161','18','','10317','MariaDB discovery','mysql.extra_metric.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for additional metrics if MariaDB is used.','0','7d','0','','30480','','','','','200','1','0','','','0','0','0','0','0','0','0','ad12522557df499e9a78b8b3c07733dd','0','2','0'), ('33163','18','','10317','Binlog commits','mysql.binlog_commits[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of transactions committed to the binary log.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','eb8713584314461488b8769f1081d48d','0','2','0'), ('33164','18','','10317','Binlog group commits','mysql.binlog_group_commits[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of group commits done to the binary log.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','cbb7c1fadd934420b47950f52751795f','0','2','0'), ('33165','18','','10317','Master GTID wait count','mysql.master_gtid_wait_count[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of times `MASTER_GTID_WAIT` called.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','278488a9c0f543f6815a24592766d9bb','0','2','0'), ('33166','18','','10317','Master GTID wait timeouts','mysql.master_gtid_wait_timeouts[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of timeouts occurring in `MASTER_GTID_WAIT`.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','93ad282dc3b24dba9f0351b0d0a59d39','0','2','0'), ('33167','18','','10317','Master GTID wait time','mysql.master_gtid_wait_time[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of time spent in `MASTER_GTID_WAIT`.','0','30d','0','','30479','','','','','200','1','0','','','0','0','0','0','0','0','0','fd8bf7e639af4d3291030cdb9dd37bc9','0','2','0'), ('33176','18','','10329','Checkpoint: Checkpoint sync time per second','pgsql.bgwriter.checkpoint_sync_time.rate','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Total amount of time per second that has been spent in the portion of checkpoint processing where files are synchronized to disk.','0','30d','0','','31274','','','','','200','1','0','','','0','0','0','0','0','0','0','b94507037a584b9391f610e59dd34e6c','0','2','0'), ('33182','18','','10254','Voltage discovery','voltage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'ENTITY-SENSORS-MIB::EntitySensorDataType discovery with volts filter','0','7d','2','','33181','','','','','200','1','0','','','0','0','0','0','0','0','0','3002dbe2caa042dcb2beb058b25500f8','0','2','0'), ('33205','18','','10371','Battery voltage discovery','battery.voltage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for battery voltage triggers','0','7d','0','','33201','','','','','200','1','0','','','0','0','0','0','0','0','0','1a21c30663c74c23b60e6ad72e228681','0','2','0'), ('33225','18','','10372','Battery voltage discovery','battery.voltage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for battery voltage triggers','0','7d','0','','33216','','','','','200','1','0','','','0','0','0','0','0','0','0','17148797def9484ba26b0afdcc44bfd5','0','2','0'), ('33248','18','','10373','Battery voltage discovery','battery.voltage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for battery voltage triggers','0','7d','0','','33244','','','','','200','1','0','','','0','0','0','0','0','0','0','81b324d81e6549d59cbf14163181fb48','0','2','0'), ('33257','18','','10374','Battery voltage discovery','battery.voltage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for battery voltage triggers','0','7d','0','','33250','','','','','200','1','0','','','0','0','0','0','0','0','0','c43e02a5d94343e2b54cba50b3388826','0','2','0'), ('33276','18','','10375','Battery voltage discovery','battery.voltage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for battery voltage triggers','0','7d','0','','33271','','','','','200','1','0','','','0','0','0','0','0','0','0','7ba9493b38174751b448419b0b03312e','0','2','0'), ('33295','18','','10376','Battery voltage discovery','battery.voltage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for battery voltage triggers','0','7d','0','','33290','','','','','200','1','0','','','0','0','0','0','0','0','0','5c8910a7991240a9b586d0d87ef00d5d','0','2','0'), ('33306','18','','10377','Battery voltage discovery','battery.voltage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for battery voltage triggers','0','7d','0','','33297','','','','','200','1','0','','','0','0','0','0','0','0','0','0e06c296579f4b6aa40d69ebb62742b4','0','2','0'), ('33307','18','','10377','Charge mode discovery','controlmode.charge.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for device in charge mode','0','1h','0','','33298','','','','','200','1','0','','','0','0','0','0','0','0','0','58a500192e61490f97f33d5b5f6e972f','0','2','0'), ('33308','18','','10377','Charge + Diversion mode discovery','controlmode.charge_diversion.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for device in charge and diversion modes','0','1h','0','','33298','','','','','200','1','0','','','0','0','0','0','0','0','0','02fbfa1dd59a4b9c87bb81da81312f54','0','2','0'), ('33309','18','','10377','Diversion mode discovery','controlmode.diversion.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for device in diversion mode','0','1h','0','','33298','','','','','200','1','0','','','0','0','0','0','0','0','0','8c345c0134fe4d90af83292e557d7309','0','2','0'), ('33310','18','','10377','Load mode discovery','controlmode.load.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for device in load mode','0','1h','0','','33298','','','','','200','1','0','','','0','0','0','0','0','0','0','54bfd7f730e64af89f937e9b1b6e4d79','0','2','0'), ('33311','18','','10377','Load + Diversion mode discovery','controlmode.load_diversion.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for device in load and diversion modes','0','1h','0','','33298','','','','','200','1','0','','','0','0','0','0','0','0','0','2e2e01f5c1db4224a97162382c77832c','0','2','0'), ('33389','18','','10336','PJSIP available endpoints','asterisk.pjsip.available','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of available PJSIP peers.','0','30d','0','','31784','','','','','200','1','0','','','0','0','0','0','0','0','0','cc07f186104842aabec3d26dcd4322d2','0','2','0'), ('33390','18','','10336','IAX online peers','asterisk.iax.online','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of online IAX peers.','0','30d','0','','31784','','','','','200','1','0','','','0','0','0','0','0','0','0','bf741f5560734530be352341071c5984','0','2','0'), ('33409','18','','10379','Plugins check','jenkins.plugins','0','31d','365d','0','3','','','','',NULL,'214','','','0','','','','','0',NULL,'Returns FAIL if any of the Jenkins plugins failed to start.','0','30d','0','','33395','','','','','200','1','0','','','0','0','0','0','0','0','0','81609d18d2004fe28f9cb096cdb03995','0','2','0'), ('33413','18','','10379','Thread deadlock check message','jenkins.thread_deadlock.message','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The message of thread deadlock health check.','0','30d','0','','33395','','','','','200','1','0','','','0','0','0','0','0','0','0','64f62df61b6b4f4c9963e09b827850e1','0','2','0'), ('33414','18','','10379','Thread deadlock check','jenkins.thread_deadlock','0','31d','365d','0','3','','','','',NULL,'214','','','0','','','','','0',NULL,'Returns FAIL if there are any deadlocked threads in the Jenkins master JVM.','0','30d','0','','33395','','','','','200','1','0','','','0','0','0','0','0','0','0','39f474c3c6f841af9b14113df04bf078','0','2','0'), ('33415','18','','10379','Temporary space check message','jenkins.temporary_space.message','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The message will reference the first node which fails this check. There may be other nodes that fail the check, but this health check is designed to fail fast.','0','30d','0','','33395','','','','','200','1','0','','','0','0','0','0','0','0','0','d884c3a9662e48eeaf6c9ba50641a2cb','0','2','0'), ('33416','18','','10379','Temporary space check','jenkins.temporary_space','0','31d','365d','0','3','','','','',NULL,'214','','','0','','','','','0',NULL,'Returns FAIL if any of the Jenkins temporary space monitors are reporting the temporary space as less than the configured threshold.','0','30d','0','','33395','','','','','200','1','0','','','0','0','0','0','0','0','0','ea80ab8045a44f96a5cb2736c009258f','0','2','0'), ('33426','18','','10379','Plugins check message','jenkins.plugins.message','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The message of plugins health check.','0','30d','0','','33395','','','','','200','1','0','','','0','0','0','0','0','0','0','d678faf0377a4024a930adcdb1c2db2f','0','2','0'), ('33439','18','','10379','HTTP active requests, rate','jenkins.http.active_requests.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of currently active requests against the Jenkins master Web UI.','0','30d','0','','33394','','','','','200','1','0','','','0','0','0','0','0','0','0','d9677f596dae43e4984838061fe19d45','0','2','0'), ('33443','18','','10379','Disk space check message','jenkins.disk_space.message','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The message will reference the first node which fails this check. There may be other nodes that fail the check, but this health check is designed to fail fast.','0','30d','0','','33395','','','','','200','1','0','','','0','0','0','0','0','0','0','8095797fe6ef478db4a8acb60e1dcc54','0','2','0'), ('33444','18','','10379','Disk space check','jenkins.disk_space','0','31d','365d','0','3','','','','',NULL,'214','','','0','','','','','0',NULL,'Returns FAIL if any of the Jenkins disk space monitors are reporting the disk space as less than the configured threshold.','0','30d','0','','33395','','','','','200','1','0','','','0','0','0','0','0','0','0','0b3cf1992122407795eef5ab9474101d','0','2','0'), ('33494','18','','10380','Boot loader released date','hikvision_cam.boot_released_date','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','33493','','','','','200','1','0','','','0','0','0','0','0','0','0','e889b3a7e6044f0284081f9d6427b416','0','2','0'), ('33495','18','','10380','Telecontrol ID','hikvision_cam.telecontrol_id','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','33493','','','','','200','1','0','','','0','0','0','0','0','0','0','8678cee9999b45f1975f9639c8c197af','0','2','0'), ('33496','18','','10380','System contact','hikvision_cam.system_contact','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','23','30d','0','','33493','','','','','200','1','0','','','0','0','0','0','0','0','0','d29814c630f94d5cabdc350d8b161b5b','0','2','0'), ('33497','18','','10380','Supported video loss','hikvision_cam.support_video_loss','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','33493','','','','','200','1','0','','','0','0','0','0','0','0','0','03d220eb782346269de6b0867ed3acd3','0','2','0'), ('33498','18','','10380','Supported beep','hikvision_cam.support_beep','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','33493','','','','','200','1','0','','','0','0','0','0','0','0','0','72ffbe3d976b437ab5df06b32a5c4b12','0','2','0'), ('33499','18','','10380','Serial number','hikvision_cam.serial_number','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','8','30d','0','','33493','','','','','200','1','0','','','0','0','0','0','0','0','0','b6715593c52a4255ae6a4f68c3de6b6d','0','2','0'), ('33500','18','','10380','Model','hikvision_cam.model','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','29','30d','0','','33493','','','','','200','1','0','','','0','0','0','0','0','0','0','b295689d34934401b0eda407edaee426','0','2','0'), ('33501','18','','10380','Memory utilization','hikvision_cam.memory.usage','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Memory utilization in %','0','30d','0','','33492','','','','','200','1','0','','','0','0','0','0','0','0','0','d1d026c6240c493387374b756b04452f','0','2','0'), ('33502','18','','10380','MACaddress','hikvision_cam.mac_address','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','12','30d','0','','33493','','','','','200','1','0','','','0','0','0','0','0','0','0','da9ec53ecc6b4c25b6539666eb9f6544','0','2','0'), ('33503','18','','10380','Hardware version','hikvision_cam.hardware_version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','33493','','','','','200','1','0','','','0','0','0','0','0','0','0','03aecf4021c2402bb415798ef339b914','0','2','0'), ('33504','18','','10380','Get streaming channels: Login status','hikvision_cam.get_streaming.login_status','0','31d','365d','0','3','','','','',NULL,'216','','','0','','','','','0',NULL,'','0','30d','0','','33491','','','','','200','1','0','','','0','0','0','0','0','0','0','c90527e1a2a948b5a5f678ec0d981954','0','2','0'), ('33505','18','','10380','Get system status: Login status','hikvision_cam.get_status.login_status','0','31d','365d','0','3','','','','',NULL,'216','','','0','','','','','0',NULL,'','0','30d','0','','33492','','','','','200','1','0','','','0','0','0','0','0','0','0','ebca4ac32e2e4bfd8bf3cdae155a4ee6','0','2','0'), ('33506','18','','10380','Get device info: Login status','hikvision_cam.get_info.login_status','0','31d','365d','0','3','','','','',NULL,'216','','','0','','','','','0',NULL,'','0','30d','0','','33493','','','','','200','1','0','','','0','0','0','0','0','0','0','d0fc2ebf4ae140b68546e2425321f797','0','2','0'), ('33507','18','','10380','Boot loader version','hikvision_cam.boot_version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','22','30d','0','','33493','','','','','200','1','0','','','0','0','0','0','0','0','0','61c6f0073e604a449d8f724d762cfb7f','0','2','0'), ('33508','18','','10380','Firmware version','hikvision_cam.firmware_version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','18','30d','0','','33493','','','','','200','1','0','','','0','0','0','0','0','0','0','eafe1a75a24c479cb5bf116be2272375','0','2','0'), ('33509','18','','10380','Firmware released date','hikvision_cam.firmware_released_date','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','19','30d','0','','33493','','','','','200','1','0','','','0','0','0','0','0','0','0','ac6ee4d15c584709a7bdf2b89048aacc','0','2','0'), ('33510','18','','10380','Encoder version','hikvision_cam.encoder_version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','20','30d','0','','33493','','','','','200','1','0','','','0','0','0','0','0','0','0','4798d54b70ee445293c12b3a8038b8c8','0','2','0'), ('33511','18','','10380','Encoder released date','hikvision_cam.encoder_released_date','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','21','30d','0','','33493','','','','','200','1','0','','','0','0','0','0','0','0','0','66ee550f4838455e9500561d790a76d1','0','2','0'), ('33512','18','','10380','Device type','hikvision_cam.device_type','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','1','30d','0','','33493','','','','','200','1','0','','','0','0','0','0','0','0','0','84d86e688a31402a82798f9e2ff04ab8','0','2','0'), ('33513','18','','10380','Device name','hikvision_cam.device_name','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','3','30d','0','','33493','','','','','200','1','0','','','0','0','0','0','0','0','0','278a04c86c22419886aa64fad8e05c9e','0','2','0'), ('33514','18','','10380','Device location','hikvision_cam.device_location','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','24','30d','0','','33493','','','','','200','1','0','','','0','0','0','0','0','0','0','f4e6f9d05fea4489a9eaa47effe66ceb','0','2','0'), ('33515','18','','10380','Device ID','hikvision_cam.device_id','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','33493','','','','','200','1','0','','','0','0','0','0','0','0','0','4abc7dcef6ec4b97bd1350d2e93f58d4','0','2','0'), ('33516','18','','10380','Device description','hikvision_cam.device_description','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','27','30d','0','','33493','','','','','200','1','0','','','0','0','0','0','0','0','0','42b0f3ae08cf4730a52ea2ddda6f5bae','0','2','0'), ('33517','18','','10380','Current device time','hikvision_cam.current_device_time','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','33492','','','','','200','1','0','','','0','0','0','0','0','0','0','7e65f407b515429caf415820dd633b0e','0','2','0'), ('33518','18','','10380','CPU utilization','hikvision_cam.cpu.util','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'CPU utilization in %','0','30d','0','','33492','','','','','200','1','0','','','0','0','0','0','0','0','0','247a70ed0cc543d69183a6a793cd9978','0','2','0'), ('33519','18','','10380','Uptime','hikvision_cam.uptime','0','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The system uptime expressed in the following format: "N days, hh:mm:ss".','0','30d','0','','33492','','','','','200','1','0','','','0','0','0','0','0','0','0','4e680a5e347948fe8118b58c2c62d55f','0','2','0'), ('33523','18','','10380','Channel "{#PTZ_CHANNEL_ID}": Get PTZ info: Channel "{#PTZ_CHANNEL_ID}": Login status','hikvision_cam.get_ptz.login_status[{#PTZ_CHANNEL_ID}]','0','31d','365d','0','3','','','','',NULL,'216','','','0','','','','','2',NULL,'','0','30d','0','','33522','','','','','200','1','0','','','0','0','0','0','0','0','0','bb3be316a5fc4b25bd15c903909b7746','0','2','0'), ('33524','18','','10380','Channel "{#PTZ_CHANNEL_ID}": Absolute zoom','hikvision_cam.ptz.absolute_zoom[{#PTZ_CHANNEL_ID}]','0','31d','365d','0','0','','!x','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33522','','','','','200','1','0','','','0','0','0','0','0','0','0','16225fb78f414308829d035cd32f8468','0','2','0'), ('33525','18','','10380','Channel "{#PTZ_CHANNEL_ID}": Azimuth','hikvision_cam.ptz.azimuth[{#PTZ_CHANNEL_ID}]','0','31d','365d','0','0','','!°','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33522','','','','','200','1','0','','','0','0','0','0','0','0','0','6282376b25a9462e84b748d011f2fbf6','0','2','0'), ('33526','18','','10380','Channel "{#PTZ_CHANNEL_ID}": Elevation','hikvision_cam.ptz.elevation[{#PTZ_CHANNEL_ID}]','0','31d','365d','0','0','','!°','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33522','','','','','200','1','0','','','0','0','0','0','0','0','0','da148a9826724869a58d286a07edc036','0','2','0'), ('33527','18','','10380','Channel "{#CHANNEL_ID}": Constant bitRate','hikvision_cam.constant_bit_rate[{#CHANNEL_ID}]','0','31d','365d','0','3','','!kbit/s','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33491','','','','','200','1','0','','','0','0','0','0','0','0','0','90ef1dd6e3d04ce8ab84731377c07ea6','0','2','0'), ('33528','18','','10380','Channel "{#CHANNEL_ID}": Fixed quality','hikvision_cam.fixed_quality[{#CHANNEL_ID}]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33491','','','','','200','1','0','','','0','0','0','0','0','0','0','b992569a9db346ac85886fe7a5e55074','0','2','0'), ('33529','18','','10380','Channel "{#CHANNEL_ID}": GovLength','hikvision_cam.gov_length[{#CHANNEL_ID}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33491','','','','','200','1','0','','','0','0','0','0','0','0','0','7343f2206cfd4942976b5dca214a7558','0','2','0'), ('33530','18','','10380','Channel "{#CHANNEL_ID}": H264Profile','hikvision_cam.h264Profile[{#CHANNEL_ID}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33491','','','','','200','1','0','','','0','0','0','0','0','0','0','ef1df8955ab84efab5ae9be340715431','0','2','0'), ('33531','18','','10380','Channel "{#CHANNEL_ID}": Key frame interval','hikvision_cam.key_frame_interval[{#CHANNEL_ID}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33491','','','','','200','1','0','','','0','0','0','0','0','0','0','ce45290377cc402bacda95ea8a136946','0','2','0'), ('33532','18','','10380','Channel "{#CHANNEL_ID}": Frame rate (max)','hikvision_cam.max_frame_rate[{#CHANNEL_ID}]','0','31d','365d','0','3','','!fps','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33491','','','','','200','1','0','','','0','0','0','0','0','0','0','4d621b75e2ef432a9cab88b61718125d','0','2','0'), ('33533','18','','10380','Channel "{#CHANNEL_ID}": Smoothing','hikvision_cam.smoothing[{#CHANNEL_ID}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33491','','','','','200','1','0','','','0','0','0','0','0','0','0','12f1fadb9d364e6b96ab01b468c94891','0','2','0'), ('33534','18','','10380','Channel "{#CHANNEL_ID}": Snapshot image type','hikvision_cam.snap_shot_image_type[{#CHANNEL_ID}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33491','','','','','200','1','0','','','0','0','0','0','0','0','0','1854ab4fd6f14adf90c0ddb42712a4ef','0','2','0'), ('33535','18','','10380','Channel "{#CHANNEL_ID}": VBR lower','hikvision_cam.vbr_lower_cap[{#CHANNEL_ID}]','0','31d','365d','0','3','','!kbit/s','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33491','','','','','200','1','0','','','0','0','0','0','0','0','0','d1523faa362842ef9313ffc15a6d5e8c','0','2','0'), ('33536','18','','10380','Channel "{#CHANNEL_ID}": VBR upper','hikvision_cam.vbr_upper_cap[{#CHANNEL_ID}]','0','31d','365d','0','3','','!kbit/s','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33491','','','','','200','1','0','','','0','0','0','0','0','0','0','725669dc6bfd4871a3133ab7fcd4c571','0','2','0'), ('33537','18','','10380','Channel "{#CHANNEL_ID}": Video codec type','hikvision_cam.video_codec_type[{#CHANNEL_ID}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33491','','','','','200','1','0','','','0','0','0','0','0','0','0','96ef96886e9244f08cf245f4253839b2','0','2','0'), ('33538','18','','10380','Channel "{#CHANNEL_ID}": Video quality control type','hikvision_cam.video_quality_control_type[{#CHANNEL_ID}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33491','','','','','200','1','0','','','0','0','0','0','0','0','0','59e8f0440ec04306a0c79cc8c9a5c91f','0','2','0'), ('33539','18','','10380','Channel "{#CHANNEL_ID}": Resolution height','hikvision_cam.video_resolution_height[{#CHANNEL_ID}]','0','31d','365d','0','3','','!px','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33491','','','','','200','1','0','','','0','0','0','0','0','0','0','18f5eed445154a42828cea423db9ebec','0','2','0'), ('33540','18','','10380','Channel "{#CHANNEL_ID}": Resolution width','hikvision_cam.video_resolution_width[{#CHANNEL_ID}]','0','31d','365d','0','3','','!px','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33491','','','','','200','1','0','','','0','0','0','0','0','0','0','13f343a9c3804846a31867e942602199','0','2','0'), ('33541','18','','10380','Channel "{#CHANNEL_ID}": Video scan type','hikvision_cam.video_scan_type[{#CHANNEL_ID}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','33491','','','','','200','1','0','','','0','0','0','0','0','0','0','2ccd4b38faf046b88a0983249ca0c4f6','0','2','0'), ('33632','18','','10382','Get directory structure: Status','sharepoint.get_dir.status','0','31d','365d','0','3','','','','',NULL,'218','','','0','','','','','0',NULL,'HTTP response (status) code. Indicates whether the HTTP request was successfully completed. Additional information is available in the server log file.','0','30d','0','','33630','','','','','200','1','0','','','0','0','0','0','0','0','0','cd47c3d00ce545b0a557e0e68c89d53e','0','2','0'), ('33633','18','','10382','Get directory structure: Exec time','sharepoint.get_dir.time','0','31d','365d','0','3','','!ms','','',NULL,NULL,'','','0','','','','','0',NULL,'The time taken to execute the script for obtaining the data structure (in ms). Less is better.','0','30d','0','','33630','','','','','200','1','0','','','0','0','0','0','0','0','0','b2daa471665541168b2a394b9b226d73','0','2','0'), ('33635','18','','10382','Created ({#SHAREPOINT.LLD.FULL_PATH})','sharepoint.created["{#SHAREPOINT.LLD.FULL_PATH}"]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Date of creation: {#SHAREPOINT.LLD.FULL_PATH}','0','30d','0','','33630','','','','','200','1','0','','','0','0','0','0','0','0','0','337493ed37424be98abd4c0550279a0b','0','2','0'), ('33636','18','','10382','Modified ({#SHAREPOINT.LLD.FULL_PATH})','sharepoint.modified["{#SHAREPOINT.LLD.FULL_PATH}"]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Date of change: {#SHAREPOINT.LLD.FULL_PATH}','0','30d','0','','33630','','','','','200','1','0','','','0','0','0','0','0','0','0','b230bfba317e4d2eb2c6a816bd357d71','0','2','0'), ('33637','18','','10382','Size ({#SHAREPOINT.LLD.FULL_PATH})','sharepoint.size["{#SHAREPOINT.LLD.FULL_PATH}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Size of: {#SHAREPOINT.LLD.FULL_PATH}','0','30d','0','','33630','','','','','200','1','0','','','0','0','0','0','0','0','0','68c3d2d2b33a494ab85ca6b883398fbb','0','2','0'), ('33744','18','','10300','Health Check 3.8.10+ discovery','rabbitmq.healthcheck.v3810.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Specific metrics for the versions: up to and including 3.8.10.','0','7d','0','','29998','','','','','200','1','0','','','0','0','0','0','0','0','0','406836367f45425fbd181a20dc3d08d7','0','2','0'), ('33745','18','','10301','Health Check 3.8.9- discovery','rabbitmq.healthcheck.v389.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Specific metrics for the versions: up to and including 3.8.4.','0','7d','0','','29653','','','','','200','1','0','','','0','0','0','0','0','0','0','04ef7d13809c45009553815f60ef5ba8','0','2','0'), ('33746','18','','10301','Health Check 3.8.10+ discovery','rabbitmq.healthcheck.v3810.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Specific metrics for the versions: up to and including 3.8.10.','0','7d','0','','29653','','','','','200','1','0','','','0','0','0','0','0','0','0','3c0021a3e57142eb806deb5b47b6700a','0','2','0'), ('33754','18','','10302','Health Check 3.8.10+ discovery','rabbitmq.healthcheck.v3810.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Specific metrics for the versions: up to and including 3.8.10.','0','7d','0','','29738','','','','','200','1','0','','','0','0','0','0','0','0','0','8655f85b65cc4eb0a0470db45ca1c963','0','2','0'), ('33755','18','','10303','Health Check 3.8.9- discovery','rabbitmq.healthcheck.v389.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Specific metrics for the versions: up to and including 3.8.4.','0','7d','0','','30043','','','','','200','1','0','','','0','0','0','0','0','0','0','fd10dbe5b1ba407dbb52632ecd713ccf','0','2','0'), ('33756','18','','10303','Health Check 3.8.10+ discovery','rabbitmq.healthcheck.v3810.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Specific metrics for the versions: up to and including 3.8.10.','0','7d','0','','30043','','','','','200','1','0','','','0','0','0','0','0','0','0','ab89d103c015400fbbeecaaf9bf01400','0','2','0'), ('33769','18','','10386','Document: deleted, rate','mongod.document.deleted.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of documents deleted per second.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','bfd58d9efaf54e038f96458f68fd48af','0','2','0'), ('33770','18','','10386','Requests, rate','mongodb.network.numRequests.rate','0','31d','365d','0','0','','!Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of distinct requests that the server has received per second','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','73aba89f9012437eb3ed843ccbe63c06','0','2','0'), ('33771','18','','10386','Memory: mapped with journal','mongodb.mem.mapped_with_journal','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of mapped memory, including the memory used for journaling.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','7a10ad84604246679104111e83fa762e','0','2','0'), ('33772','18','','10386','Memory: resident','mongodb.mem.resident','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Amount of memory currently used by the database process.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','2248b869cfca42bd95140451c0974f8c','0','2','0'), ('33773','18','','10386','Memory: virtual','mongodb.mem.virtual','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Amount of virtual memory used by the mongod process.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','561ea7508e44443cb692b7dfe8ed3bdc','0','2','0'), ('33774','18','','10386','Cursor: open no timeout','mongodb.metrics.cursor.open.no_timeout','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of open cursors with the option DBQuery.Option.noTimeout set to prevent timeout after a period of inactivity.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','9c79163da0b44e39a704969ab1d6280b','0','2','0'), ('33775','18','','10386','Bytes in, rate','mongodb.network.bytes_in.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of bytes that the server has received over network connections initiated by clients or other mongod/mongos instances per second.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','ba0502f80a044670993bdb63587cd282','0','2','0'), ('33776','18','','10386','Bytes out, rate','mongodb.network.bytes_out.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of bytes that the server has sent over network connections initiated by clients or other mongod/mongos instances per second.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','0545114b39a649ef9a4b75da500031fb','0','2','0'), ('33777','18','','10386','Operations: delete, rate','mongodb.opcounters.delete.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of delete operations the mongod instance per second.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','540f30705ced49da89a16f80828e8775','0','2','0'), ('33778','18','','10386','Operations: command, rate','mongodb.opcounters.command.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of commands issued to the database the mongod instance per second. Counts all commands except the write commands: insert, update, and delete.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','532a1f4a64624434986f54b9ac2d2e3a','0','2','0'), ('33779','18','','10386','Architecture','mongodb.mem.bits','0','31d','365d','0','3','','bit','','',NULL,NULL,'','','0','','','','','0',NULL,'A number, either 64 or 32, that indicates whether the MongoDB instance is compiled for 64-bit or 32-bit architecture.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','4d0b20f4eeca4418bb08e7e2905cc68c','0','2','0'), ('33780','18','','10386','Operations: getmore, rate','mongodb.opcounters.getmore.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of "getmore" operations since the mongod instance per second. This counter can be high even if the query count is low. Secondary nodes send getMore operations as part of the replication process.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','229345df70c240b5ab113b358fb738d9','0','2','0'), ('33781','18','','10386','Operations: insert, rate','mongodb.opcounters.insert.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of insert operations received since the mongod instance per second.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','4236ad60fcef48f793ac6da4cccdb029','0','2','0'), ('33782','18','','10386','Operations: query, rate','mongodb.opcounters.query.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of queries received the mongod instance per second.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','b0f7def2c62047bba0db77d18f1df920','0','2','0'), ('33783','18','','10386','Operations: update, rate','mongodb.opcounters.update.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of update operations the mongod instance per second.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','019ed179e4e1407db799e01920280e02','0','2','0'), ('33784','18','','10386','Uptime','mongodb.uptime','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of seconds that the mongod process has been active.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','2d1bf92792014ed8a3f8d8b13907fc7d','0','2','0'), ('33785','18','','10386','Memory: mapped','mongodb.mem.mapped','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Amount of mapped memory by the database.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','c88392536a334f9a9c907be28090424c','0','2','0'), ('33786','18','','10386','Cursor: timed out, rate','mongodb.cursor.timed_out.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of cursors that time out, per second.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','b30b4c7b6d88467bbde22db411660d6b','0','2','0'), ('33787','18','','10386','Document: inserted, rate','mongod.document.inserted.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of documents inserted per second.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','5ecc078aeda04e3ca34ed42d966cdf40','0','2','0'), ('33788','18','','10386','Asserts: user, rate','mongodb.asserts.user.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of "user asserts" that have occurred per second. These are errors that user may generate, such as out of disk space or duplicate key.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','a7dfd56310d44d7dac1f3c02fa5fbc79','0','2','0'), ('33789','18','','10386','Document: returned, rate','mongod.document.returned.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of documents returned by queries per second.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','56fc9870503645069a9d937ac21ab7c2','0','2','0'), ('33790','18','','10386','Document: updated, rate','mongod.document.updated.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of documents updated per second.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','d21a95f1862b4c17b5a4ed83a67ffb1b','0','2','0'), ('33791','18','','10386','Active clients: readers','mongodb.active_clients.readers','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of the active client connections performing read operations.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','d5ec0427c5ca49119f6e94211b0297bf','0','2','0'), ('33792','18','','10386','Active clients: total','mongodb.active_clients.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of internal client connections to the database including system threads as well as queued readers and writers.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','1c2dc0b60eb44d259e02accf2531b389','0','2','0'), ('33793','18','','10386','Active clients: writers','mongodb.active_clients.writers','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active client connections performing write operations.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','9c5512c83e1844c5b4fdb675336edbf6','0','2','0'), ('33794','18','','10386','Asserts: message, rate','mongodb.asserts.msg.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of message assertions raised per second. Check the log file for more information about these messages.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','5e6fa5d1c9fc48ada6c0bc5c8d1d3ec4','0','2','0'), ('33795','18','','10386','Asserts: regular, rate','mongodb.asserts.regular.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of regular assertions raised per second. Check the log file for more information about these messages.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','32d5177badac49eda8ce1f47c851ebf2','0','2','0'), ('33796','18','','10386','Asserts: rollovers, rate','mongodb.asserts.rollovers.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times that the rollover counters roll over per second. The counters rollover to zero every 2^30 assertions.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','67f2ef15386a47b6b88fc95dd7fe1be6','0','2','0'), ('33797','18','','10386','Asserts: warning, rate','mongodb.asserts.warning.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of warnings raised per second.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','41638aa2b3374e56ad00ef9113e1ea61','0','2','0'), ('33798','18','','10386','Cursor: open total','mongodb.cursor.open.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of cursors that MongoDB is maintaining for clients.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','f23bf716eced4ba5948b06c24c780904','0','2','0'), ('33799','18','','10386','Connections, active','mongodb.connections.active','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active client connections to the server. Active client connections refers to client connections that currently have operations in progress. Available starting in 4.0.7, 0 for older versions.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','6ce4b63c962646ef91e4a705a42f36de','0','2','0'), ('33800','18','','10386','Connections, available','mongodb.connections.available','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unused incoming connections available.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','3b53fa8cf9cb4d1a9ff364cd5d8ae724','0','2','0'), ('33801','18','','10386','Connections, current','mongodb.connections.current','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of incoming connections from clients to the database server. This number includes the current shell session.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','c4d86707cd124d9db195ca6afd636e71','0','2','0'), ('33802','18','','10386','New connections, rate','mongodb.connections.rate','0','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Rate of all incoming connections created to the server.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','37fd836b53fa4db88aeb0faeeccc2856','0','2','0'), ('33803','18','','10386','Current queue: readers','mongodb.current_queue.readers','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of operations that are currently queued and waiting for the read lock. A consistently small read-queue, particularly of shorter operations, should cause no concern.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','0f04a5b3b0e5415185e01ecf75f426ec','0','2','0'), ('33804','18','','10386','Current queue: total','mongodb.current_queue.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of operations queued waiting for the lock.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','47ecaffb9638429eb308572b7d7beb5a','0','2','0'), ('33805','18','','10386','Current queue: writers','mongodb.current_queue.writers','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of operations that are currently queued and waiting for the write lock. A consistently small write-queue, particularly of shorter operations, is no cause for concern.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','e68ff1592a5648fc8b5475054c327ac6','0','2','0'), ('33806','18','','10386','Cursor: open pinned','mongodb.cursor.open.pinned','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of pinned open cursors.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','1d2c068feba240d6b934b65249d1b5ea','0','2','0'), ('33810','18','','10386','Replication discovery','mongodb.rs.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Collect metrics by Zabbix agent if it exists.','0','7d','0','','33765','','','','','200','1','0','','','0','0','0','0','0','0','0','eaa4b8fc535143f887673834987ce7be','0','2','0'), ('33811','18','','10386','WiredTiger metrics','mongodb.wired_tiger.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Collect metrics of WiredTiger Storage Engine if it exists.','0','7d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','9b37bb1d3e244a95ac5702bcf3ab19a9','0','2','0'), ('33814','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Objects, avg size','mongodb.collection.avg_obj_size["{#DBNAME}","{#COLLECTION}"]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size of the average object in the collection in bytes.','0','30d','0','','33812','','','','','200','1','0','','','0','0','0','0','0','0','0','fbcfeba93bce4f3fa965176b9b3208b0','0','2','0'), ('33815','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Operations: remove, ms/s','mongodb.collection.ops.remove.ms["{#DBNAME}","{#COLLECTION}"]','0','31d','365d','0','0','','ms/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Fraction of time (ms/s) the mongod has spent to operations.','0','30d','0','','33768','','','','','200','1','0','','','0','0','0','0','0','0','0','a46f2c1c973d4eef8d9a7b1150702c74','0','2','0'), ('33816','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Write lock, ms/s','mongodb.collection.write_lock.ms["{#DBNAME}","{#COLLECTION}"]','0','31d','365d','0','0','','ms/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Fraction of time (ms/s) the mongod has spent to operations.','0','30d','0','','33768','','','','','200','1','0','','','0','0','0','0','0','0','0','a4c46912b5e643be8565f2b0d32c62a9','0','2','0'), ('33817','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Storage size','mongodb.collection.storage_size["{#DBNAME}","{#COLLECTION}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total storage space allocated to this collection for document storage.','0','30d','0','','33812','','','','','200','1','0','','','0','0','0','0','0','0','0','a2f095952fa44ed3a199b098c5fbee7a','0','2','0'), ('33818','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Size','mongodb.collection.size["{#DBNAME}","{#COLLECTION}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total size in bytes of the data in the collection plus the size of every indexes on the mongodb.collection.','0','30d','0','','33812','','','','','200','1','0','','','0','0','0','0','0','0','0','e5e471e100834da5a2e9dddaaa453227','0','2','0'), ('33819','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Read lock, rate','mongodb.collection.read_lock.rate["{#DBNAME}","{#COLLECTION}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of operations per second.','0','30d','0','','33768','','','','','200','1','0','','','0','0','0','0','0','0','0','9d2d62a252054e428d9b8863a2128ad8','0','2','0'), ('33820','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Read lock, ms/s','mongodb.collection.read_lock.ms["{#DBNAME}","{#COLLECTION}"]','0','31d','365d','0','0','','ms/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Fraction of time (ms/s) the mongod has spent to operations.','0','30d','0','','33768','','','','','200','1','0','','','0','0','0','0','0','0','0','4d575525f749436ea4ea9098c3b164ba','0','2','0'), ('33821','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Operations: update, rate','mongodb.collection.ops.update.rate["{#DBNAME}","{#COLLECTION}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of operations per second.','0','30d','0','','33768','','','','','200','1','0','','','0','0','0','0','0','0','0','8d75aa686d0d4f3f93089b8b089f1d3c','0','2','0'), ('33822','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Operations: update, ms/s','mongodb.collection.ops.update.ms["{#DBNAME}","{#COLLECTION}"]','0','31d','365d','0','0','','ms/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Fraction of time (ms/s) the mongod has spent to operations.','0','30d','0','','33768','','','','','200','1','0','','','0','0','0','0','0','0','0','89b6f13894d64bdcbe0d0ec41568051a','0','2','0'), ('33823','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Operations: total, rate','mongodb.collection.ops.total.rate["{#DBNAME}","{#COLLECTION}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of operations per second.','0','30d','0','','33768','','','','','200','1','0','','','0','0','0','0','0','0','0','1ca4ae9dcf494efdbf85d635d49d4de8','0','2','0'), ('33824','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Operations: total, ms/s','mongodb.collection.ops.total.ms["{#DBNAME}","{#COLLECTION}"]','0','31d','365d','0','0','','ms/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Fraction of time (ms/s) the mongod has spent to operations.','0','30d','0','','33768','','','','','200','1','0','','','0','0','0','0','0','0','0','67eaf64e851a45afbd69303ad0256077','0','2','0'), ('33825','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Operations: remove, rate','mongodb.collection.ops.remove.rate["{#DBNAME}","{#COLLECTION}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of operations per second.','0','30d','0','','33768','','','','','200','1','0','','','0','0','0','0','0','0','0','89b74a8511b84f4bb8cab94fc5471632','0','2','0'), ('33826','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Operations: queries, rate','mongodb.collection.ops.queries.rate["{#DBNAME}","{#COLLECTION}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of operations per second.','0','30d','0','','33768','','','','','200','1','0','','','0','0','0','0','0','0','0','41b1f661ceab494f81e7a4b943a07020','0','2','0'), ('33827','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Capped','mongodb.collection.capped["{#DBNAME}","{#COLLECTION}"]','0','31d','365d','0','3','','','','',NULL,'225','','','0','','','','','2',NULL,'Whether or not the collection is capped.','0','30d','0','','33812','','','','','200','1','0','','','0','0','0','0','0','0','0','ee5d3cefe6584900b400a4f598c84c1b','0','2','0'), ('33828','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Operations: queries, ms/s','mongodb.collection.ops.queries.ms["{#DBNAME}","{#COLLECTION}"]','0','31d','365d','0','0','','ms/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Fraction of time (ms/s) the mongod has spent to operations.','0','30d','0','','33768','','','','','200','1','0','','','0','0','0','0','0','0','0','77de05da93b34432a7c2442fc01ca624','0','2','0'), ('33829','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Operations: insert, rate','mongodb.collection.ops.insert.rate["{#DBNAME}","{#COLLECTION}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of operations per second.','0','30d','0','','33768','','','','','200','1','0','','','0','0','0','0','0','0','0','c824a6a997ef4308b47cdc4118799f33','0','2','0'), ('33830','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Operations: insert, ms/s','mongodb.collection.ops.insert.ms["{#DBNAME}","{#COLLECTION}"]','0','31d','365d','0','0','','ms/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Fraction of time (ms/s) the mongod has spent to operations.','0','30d','0','','33768','','','','','200','1','0','','','0','0','0','0','0','0','0','812f76c720fe47ba9fd8764c349c4a36','0','2','0'), ('33831','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Operations: getmore, rate','mongodb.collection.ops.getmore.rate["{#DBNAME}","{#COLLECTION}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of operations per second.','0','30d','0','','33768','','','','','200','1','0','','','0','0','0','0','0','0','0','760a0a70a2674ad7acd9d551865693ef','0','2','0'), ('33832','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Operations: getmore, ms/s','mongodb.collection.ops.getmore.ms["{#DBNAME}","{#COLLECTION}"]','0','31d','365d','0','0','','ms/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Fraction of time (ms/s) the mongod has spent to operations.','0','30d','0','','33768','','','','','200','1','0','','','0','0','0','0','0','0','0','6375b055efe84cdaa0a42c4b9981dde7','0','2','0'), ('33833','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Operations: commands, rate','mongodb.collection.ops.commands.rate["{#DBNAME}","{#COLLECTION}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of operations per second.','0','30d','0','','33768','','','','','200','1','0','','','0','0','0','0','0','0','0','b6d89c096fec4194bbe834e026f33178','0','2','0'), ('33834','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Operations: commands, ms/s','mongodb.collection.ops.commands.ms["{#DBNAME}","{#COLLECTION}"]','0','31d','365d','0','0','','ms/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Fraction of time (ms/s) the mongod has spent to operations.','0','30d','0','','33768','','','','','200','1','0','','','0','0','0','0','0','0','0','a4d05a4ee48b4ce2aa4fbebd240b8c4c','0','2','0'), ('33835','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Indexes','mongodb.collection.nindexes["{#DBNAME}","{#COLLECTION}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of indices on the collection.','0','30d','0','','33812','','','','','200','1','0','','','0','0','0','0','0','0','0','b8ebe075b01248179d93c5d174286d2f','0','2','0'), ('33836','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Capped: max size','mongodb.collection.max_size["{#DBNAME}","{#COLLECTION}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Maximum size of a capped collection in bytes.','0','30d','0','','33812','','','','','200','1','0','','','0','0','0','0','0','0','0','8c0fe89cfa9f40e3bb04c92c417757df','0','2','0'), ('33837','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Capped: max number','mongodb.collection.max_number["{#DBNAME}","{#COLLECTION}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Maximum number of documents that may be present in a capped collection.','0','30d','0','','33812','','','','','200','1','0','','','0','0','0','0','0','0','0','0ab52dbdcb424d759f6f717d8197cb30','0','2','0'), ('33838','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Objects, count','mongodb.collection.count["{#DBNAME}","{#COLLECTION}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of objects in the collection.','0','30d','0','','33812','','','','','200','1','0','','','0','0','0','0','0','0','0','5fc5b90792054b09a651b5d41328ca56','0','2','0'), ('33839','18','','10386','MongoDB {#DBNAME}.{#COLLECTION}: Write lock, rate','mongodb.collection.write_lock.rate["{#DBNAME}","{#COLLECTION}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of operations per second.','0','30d','0','','33768','','','','','200','1','0','','','0','0','0','0','0','0','0','ef83d379681241eaadd8be8de755a2bd','0','2','0'), ('33840','18','','10386','MongoDB {#DBNAME}: Collections','mongodb.db.collections["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Contains a count of the number of collections in that database.','0','30d','0','','33813','','','','','200','1','0','','','0','0','0','0','0','0','0','cbb85c1a212a49a1bbdd9336f4a8fe68','0','2','0'), ('33841','18','','10386','MongoDB {#DBNAME}: Size, data','mongodb.db.data_size["{#DBNAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total size of the data held in this database including the padding factor.','0','30d','0','','33813','','','','','200','1','0','','','0','0','0','0','0','0','0','a9d502096d664f6da44a6ab82f8b7d36','0','2','0'), ('33842','18','','10386','MongoDB {#DBNAME}: Extents','mongodb.db.extents["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Contains a count of the number of extents in the database across all collections.','0','30d','0','','33813','','','','','200','1','0','','','0','0','0','0','0','0','0','c5f4ae6a260e4c10aae0d51441fcbbf7','0','2','0'), ('33843','18','','10386','MongoDB {#DBNAME}: Size, file','mongodb.db.file_size["{#DBNAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total size of the data held in this database including the padding factor (only available with the mmapv1 storage engine).','0','30d','0','','33813','','','','','200','1','0','','','0','0','0','0','0','0','0','cecffb75221440ac957fda5d676d7714','0','2','0'), ('33844','18','','10386','MongoDB {#DBNAME}: Size, index','mongodb.db.index_size["{#DBNAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total size of all indexes created on this database.','0','30d','0','','33813','','','','','200','1','0','','','0','0','0','0','0','0','0','9567515baf7b46a0a685717839f4a48f','0','2','0'), ('33845','18','','10386','MongoDB {#DBNAME}: Objects, count','mongodb.db.objects["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of objects (documents) in the database across all collections.','0','30d','0','','33813','','','','','200','1','0','','','0','0','0','0','0','0','0','cd5ecd2eafc640319aa2f049db2cf582','0','2','0'), ('33846','18','','10386','MongoDB {#DBNAME}: Objects, avg size','mongodb.db.size["{#DBNAME}"]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The average size of each document in bytes.','0','30d','0','','33813','','','','','200','1','0','','','0','0','0','0','0','0','0','cadce6df66ec4872bd6b517233f77bfc','0','2','0'), ('33847','18','','10386','MongoDB {#DBNAME}: Size, storage','mongodb.db.storage_size["{#DBNAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total amount of space allocated to collections in this database for document storage.','0','30d','0','','33813','','','','','200','1','0','','','0','0','0','0','0','0','0','197a1d1f5d14413da8fe6c93bfdcf4f3','0','2','0'), ('33848','18','','10386','Apply batches, ms/s','mongodb.rs.apply.batches.ms.rate[{#RS_NAME}]','0','31d','365d','0','0','','ms/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Fraction of time (ms/s) the mongod has spent applying operations from the oplog.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','aed5de1374ea427185d478e87b7f1449','0','2','0'), ('33849','18','','10386','Network readers created, rate','mongodb.rs.network.readers.rate[{#RS_NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of oplog query processes created per second.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','7f9d03a683764e32a35b9c1d4da5ddab','0','2','0'), ('33850','18','','10386','Unhealthy replicas','mongodb.rs.unhealthy[{#RS_NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The replicated nodes in current ReplicaSet with member health value = 0.','0','30d','0','','33765','','','','','200','1','0','','','0','0','0','0','0','0','1','4b81b6e4ce1644689e5d8a4490650e6b','0','2','0'), ('33851','18','','10386','Number of replicas','mongodb.rs.total_nodes[{#RS_NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of replicated nodes in current ReplicaSet.','0','30d','0','','33765','','','','','200','1','0','','','0','0','0','0','0','0','1','211d5f6768c044f8ac959724160d3ddc','0','2','0'), ('33852','18','','10386','Node state','mongodb.rs.state[{#RS_NAME}]','0','31d','365d','0','3','','','','',NULL,'226','','','0','','','','','2',NULL,'An integer between 0 and 10 that represents the replica state of the current member.','0','30d','0','','33765','','','','','200','1','0','','','0','0','0','0','0','0','0','49e786da687a4b36a17bf617026e3c83','0','2','0'), ('33853','18','','10386','Preload indexes, rate','mongodb.rs.preload.indexes.rate[{#RS_NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of index entries loaded by members before updating documents as part of the pre-fetch stage of replication.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','ce37bf73939041ab869e4b2faaaedae3','0','2','0'), ('33854','18','','10386','Preload indexes, ms/s','mongodb.rs.preload.indexes.ms.rate[{#RS_NAME}]','0','31d','365d','0','0','','ms/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Fraction of time (ms/s) spent loading documents as part of the pre-fetch stage of replication.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','c78b8e62a12b466ea6f1de84d0e9080a','0','2','0'), ('33855','18','','10386','Preload docs, rate','mongodb.rs.preload.docs.rate[{#RS_NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of documents loaded per second during the pre-fetch stage of replication.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','a364941cb8da416a84c0ca897a04c8f9','0','2','0'), ('33856','18','','10386','Preload docs, ms/s','mongodb.rs.preload.docs.ms.rate[{#RS_NAME}]','0','31d','365d','0','0','','ms/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Fraction of time (ms/s) spent loading documents as part of the pre-fetch stage of replication.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','f759273556f5427196c86e822dc7aa95','0','2','0'), ('33857','18','','10386','MongoDB {#RS_NAME}: Oplog time diff','mongodb.rs.oplog.timediff[{#RS_NAME}]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Oplog window: difference between the first and last operation in the oplog. Only present if there are entries in the oplog.','0','30d','0','','33767','','','','','200','1','0','','','0','0','0','0','0','0','0','341410549bfd46058a9cb289b3254639','0','2','0'), ('33858','18','','10386','Network ops, rate','mongodb.rs.network.ops.rate[{#RS_NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of operations read from the replication source per second.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','d2b3075c9728473a9dc8a0585ce43cfd','0','2','0'), ('33859','18','','10386','Apply batches, rate','mongodb.rs.apply.batches.rate[{#RS_NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of batches applied across all databases per second.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','a460d4356895439d9cf9143b38a18213','0','2','0'), ('33860','18','','10386','Network getmores, rate','mongodb.rs.network.getmores.rate[{#RS_NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of getmore operations per second.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','86d9ddbfc35447c7889bef826bab016f','0','2','0'), ('33861','18','','10386','Network getmores, ms/s','mongodb.rs.network.getmores.ms.rate[{#RS_NAME}]','0','31d','365d','0','0','','ms/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Fraction of time (ms/s) required to collect data from getmore operations.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','68b7ac3fee984352bab02b07e0823f51','0','2','0'), ('33862','18','','10386','Network bytes, rate','mongodb.rs.network.bytes.rate[{#RS_NAME}]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Amount of data read from the replication sync source per second.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','be060c8d3fec46d5832f8047d3512903','0','2','0'), ('33863','18','','10386','Replication lag','mongodb.rs.lag[{#RS_NAME}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Delay between a write operation on the primary and its copy to a secondary.','0','30d','0','','33765','','','','','200','1','0','','','0','0','0','0','0','0','0','6f07d080d01d45dfa5383640c76175c5','0','2','0'), ('33864','18','','10386','Buffer, size','mongodb.rs.buffer.size[{#RS_NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Current size of the contents of the oplog buffer.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','fd9b7ea20e1e4e91b7a3c75d5416efe8','0','2','0'), ('33865','18','','10386','Buffer, max size','mongodb.rs.buffer.max_size[{#RS_NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Maximum size of the buffer.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','0a7522edb2a647989627de85f7e61319','0','2','0'), ('33866','18','','10386','Buffer','mongodb.rs.buffer.count[{#RS_NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of operations in the oplog buffer.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','8d8b0046f9fd409891d3d225f8a462ff','0','2','0'), ('33867','18','','10386','Apply ops, rate','mongodb.rs.apply.rate[{#RS_NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of oplog operations applied per second.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','48970eb366f144b4b9ed3f72fbd983a7','0','2','0'), ('33868','18','','10386','Number of unhealthy replicas','mongodb.rs.unhealthy_count[{#RS_NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of replicated nodes with member health value = 0.','0','30d','0','','33765','','','','','200','1','0','','','0','0','0','0','0','0','1','b8d4a32cfa9f4b4fb5177e3389d15a5a','0','2','0'), ('33869','18','','10386','WiredTiger cache: bytes','mongodb.wired_tiger.cache.bytes_in_cache[{#SINGLETON}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Size of the data currently in cache.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','918e705019734ca7a200a7c4422c6bab','0','2','0'), ('33870','18','','10386','WiredTiger cache: tracked dirty bytes in the cache','mongodb.wired_tiger.cache.tracked_dirty_bytes[{#SINGLETON}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Size of the dirty data in the cache.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','85706ecdaa0e4c789a6542cbde35e80a','0','2','0'), ('33871','18','','10386','WiredTiger concurrent transactions: write, out','mongodb.wired_tiger.concurrent_transactions.write.out[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of write tickets (concurrent transactions) in use.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','b997757256e441dca58758192126ac44','0','2','0'), ('33872','18','','10386','WiredTiger concurrent transactions: write, available','mongodb.wired_tiger.concurrent_transactions.write.available[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of available write tickets (concurrent transactions) remaining.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','cb36bdd5ce0442cca03e46436f82c6a2','0','2','0'), ('33873','18','','10386','WiredTiger concurrent transactions: read, total tickets','mongodb.wired_tiger.concurrent_transactions.read.totalTickets[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of read tickets (concurrent transactions) available.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','46c67d017c5040f691695fcd7645c224','0','2','0'), ('33874','18','','10386','WiredTiger concurrent transactions: read, out','mongodb.wired_tiger.concurrent_transactions.read.out[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of read tickets (concurrent transactions) in use.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','b9415bf5203840209e149a6be4b110a1','0','2','0'), ('33875','18','','10386','WiredTiger concurrent transactions: read, available','mongodb.wired_tiger.concurrent_transactions.read.available[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of available read tickets (concurrent transactions) remaining.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','b1a9800865db4ac8959bbdc4b2ab39ee','0','2','0'), ('33876','18','','10386','WiredTiger cache: unmodified pages evicted','mongodb.wired_tiger.cache.unmodified_pages_evicted[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of pages, that were not modified, evicted from the cache.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','7993e04be54b4dc0b663a105b7b9a3c4','0','2','0'), ('33877','18','','10386','WiredTiger cache: in-memory page splits','mongodb.wired_tiger.cache.splits[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'In-memory page splits.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','851100dc722b4e74883fa469e062a2e2','0','2','0'), ('33878','18','','10386','WiredTiger cache: bytes, max','mongodb.wired_tiger.cache.maximum_bytes_configured[{#SINGLETON}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Maximum cache size.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','20edd994c8b04e35bea96e6eacd33611','0','2','0'), ('33879','18','','10386','WiredTiger cache: pages written from cache','mongodb.wired_tiger.cache.pages_written[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of pages written from the cache.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','0aa52db6d7684a2496fb0599139cd142','0','2','0'), ('33880','18','','10386','WiredTiger cache: pages read into cache','mongodb.wired_tiger.cache.pages_read[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of pages read into the cache.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','c01890f434b14e998e2aea7d61d600e5','0','2','0'), ('33881','18','','10386','WiredTiger cache: pages held in cache','mongodb.wired_tiger.cache.pages_in_cache[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of pages currently held in the cache.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','547ccf6f4c7f4629831e39f72cbcfb70','0','2','0'), ('33882','18','','10386','WiredTiger cache: pages evicted by application threads, rate','mongodb.wired_tiger.cache.pages_evicted_threads.rate[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of page evicted by application threads per second.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','634060250f474f269aed1df61f709ca7','0','2','0'), ('33883','18','','10386','WiredTiger cache: modified pages evicted','mongodb.wired_tiger.cache.modified_pages_evicted[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of pages, that have been modified, evicted from the cache.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','692685a9f3d9461daa88fdfcb0771e05','0','2','0'), ('33884','18','','10386','WiredTiger cache: max page size at eviction','mongodb.wired_tiger.cache.max_page_size_eviction[{#SINGLETON}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Maximum page size at eviction.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','4e07f3e517bf41c1b42661d3bbd5237e','0','2','0'), ('33885','18','','10386','WiredTiger concurrent transactions: write, total tickets','mongodb.wired_tiger.concurrent_transactions.write.totalTickets[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of write tickets (concurrent transactions) available.','0','30d','0','','33764','','','','','200','1','0','','','0','0','0','0','0','0','0','e9eb61954ab6462d9dbcf9206467b076','0','2','0'), ('33891','18','','10387','Operations: command','mongodb.opcounters.command.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of commands issued to the database per second. Counts all commands except the write commands: insert, update, and delete.','0','30d','0','','33887','','','','','200','1','0','','','0','0','0','0','0','0','0','b98fb6d98b9a4282ba0b2d9770722035','0','2','0'), ('33892','18','','10387','Bytes in, rate','mongodb.network.bytes_in.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of bytes that the server has received over network connections initiated by clients or other mongod/mongos instances per second.','0','30d','0','','33887','','','','','200','1','0','','','0','0','0','0','0','0','0','59481dcb9b5a487985297e2f41f72dd1','0','2','0'), ('33893','18','','10387','Bytes out, rate','mongodb.network.bytes_out.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of bytes that the server has sent over network connections initiated by clients or other mongod/mongos instances per second.','0','30d','0','','33887','','','','','200','1','0','','','0','0','0','0','0','0','0','13cba18ba344440bba4371585fd8e4c0','0','2','0'), ('33894','18','','10387','Requests, rate','mongodb.network.numRequests.rate','0','31d','365d','0','0','','!Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of distinct requests that the server has received per second.','0','30d','0','','33887','','','','','200','1','0','','','0','0','0','0','0','0','0','eb821875b59c4bf8bc98f9afec146e88','0','2','0'), ('33895','18','','10387','Operations: getmore, rate','mongodb.opcounters.getmore.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of "getmore" operations the mongos per second. This counter can be high even if the query count is low. Secondary nodes send getMore operations as part of the replication process.','0','30d','0','','33887','','','','','200','1','0','','','0','0','0','0','0','0','0','165d5a180ed541ba9a19916134962368','0','2','0'), ('33896','18','','10387','Operations: delete','mongodb.opcounters.delete.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of delete operations the mongos instance per second.','0','30d','0','','33887','','','','','200','1','0','','','0','0','0','0','0','0','0','f4e917e9cdd3439abbe6ea7b9a9034b7','0','2','0'), ('33897','18','','10387','Memory: virtual','mongodb.mem.virtual','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Amount of virtual memory used by the mongos process.','0','30d','0','','33887','','','','','200','1','0','','','0','0','0','0','0','0','0','2c5548ae9c614efb81e58a2e4ec3d3e4','0','2','0'), ('33898','18','','10387','Operations: insert, rate','mongodb.opcounters.insert.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of insert operations received the mongos instance per second.','0','30d','0','','33887','','','','','200','1','0','','','0','0','0','0','0','0','0','021a00004efe434a9b2f316c0d25c175','0','2','0'), ('33899','18','','10387','Operations: query, rate','mongodb.opcounters.query.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of queries received the mongos instance per second.','0','30d','0','','33887','','','','','200','1','0','','','0','0','0','0','0','0','0','0866b3b6bc1748a98e8bfd9308152304','0','2','0'), ('33900','18','','10387','Operations: update, rate','mongodb.opcounters.update.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of update operations the mongos instance per second.','0','30d','0','','33887','','','','','200','1','0','','','0','0','0','0','0','0','0','329e6d41de1c47dba8f3f9d287c93eda','0','2','0'), ('33901','18','','10387','Uptime','mongodb.uptime','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of seconds since the Mongos server start.','0','30d','0','','33887','','','','','200','1','0','','','0','0','0','0','0','0','0','e88da2ca6ccc4fdfa256fa51e050792d','0','2','0'), ('33902','18','','10387','Cursor: open no timeout','mongodb.metrics.cursor.open.no_timeout','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of open cursors with the option DBQuery.Option.noTimeout set to prevent timeout after a period of inactivity.','0','30d','0','','33887','','','','','200','1','0','','','0','0','0','0','0','0','0','16925e0ca40747d1818e512962d31a83','0','2','0'), ('33903','18','','10387','Architecture','mongodb.mem.bits','0','31d','365d','0','3','','bit','','',NULL,NULL,'','','0','','','','','0',NULL,'A number, either 64 or 32, that indicates whether the MongoDB instance is compiled for 64-bit or 32-bit architecture.','0','30d','0','','33887','','','','','200','1','0','','','0','0','0','0','0','0','0','df2423ff36e24357809c7a7211144898','0','2','0'), ('33904','18','','10387','Memory: resident','mongodb.mem.resident','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Amount of memory currently used by the database process.','0','30d','0','','33887','','','','','200','1','0','','','0','0','0','0','0','0','0','f6a06e0d7cf84cc1a40d8d2dcde7b01a','0','2','0'), ('33905','18','','10387','Connections, active','mongodb.connections.active','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active client connections to the server. Active client connections refers to client connections that currently have operations in progress. Available starting in 4.0.7, 0 for older versions.','0','30d','0','','33887','','','','','200','1','0','','','0','0','0','0','0','0','0','fccb23cdee01483cabe6ef14a532664b','0','2','0'), ('33906','18','','10387','Last seen configserver','mongodb.last_seen_config_server','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'The latest optime of the CSRS primary that the mongos has seen.','0','30d','0','','33887','','','','','200','1','0','','','0','0','0','0','0','0','0','fa28a98992e74cdf8c54b4faa01de89a','0','2','0'), ('33907','18','','10387','Cursor: timed out, rate','mongodb.cursor.timed_out.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of cursors that time out, per second.','0','30d','0','','33887','','','','','200','1','0','','','0','0','0','0','0','0','0','5d3a3c724a6a45fb99a0af5330bf9cf2','0','2','0'), ('33908','18','','10387','Cursor: open total','mongodb.cursor.open.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of cursors that MongoDB is maintaining for clients.','0','30d','0','','33887','','','','','200','1','0','','','0','0','0','0','0','0','0','45bfa997dab9498e8e3851de750e21a2','0','2','0'), ('33909','18','','10387','Cursor: open pinned','mongodb.cursor.open.pinned','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of pinned open cursors.','0','30d','0','','33887','','','','','200','1','0','','','0','0','0','0','0','0','0','22ca0c06006b49009f25fcd829f1b5bf','0','2','0'), ('33910','18','','10387','Connection pool: scoped','mongodb.connection_pool.scoped','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of active and stored outgoing scoped synchronous connections from the current mongos instance to other members of the sharded cluster.','0','30d','0','','33889','','','','','200','1','0','','','0','0','0','0','0','0','0','55dbfe5d52c44954b9e5669a043f10b4','0','2','0'), ('33911','18','','10387','Connection pool: refreshing','mongodb.connection_pool.refreshing','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Reports the total number of outgoing connections from the current mongos instance to other members of the sharded cluster that are currently being refreshed.','0','30d','0','','33889','','','','','200','1','0','','','0','0','0','0','0','0','0','22c66363ffae4ae2b436a26b8ecca3ab','0','2','0'), ('33912','18','','10387','Connection pool: in use','mongodb.connection_pool.in_use','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Reports the total number of outgoing connections from the current mongos instance to other members of the sharded cluster set that are currently in use.','0','30d','0','','33889','','','','','200','1','0','','','0','0','0','0','0','0','0','9394a15a25e342688335b7d83db25b2d','0','2','0'), ('33913','18','','10387','Connection pool: created, rate','mongodb.connection_pool.created.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of outgoing connections created per second by the current mongos instance to other members of the sharded cluster.','0','30d','0','','33889','','','','','200','1','0','','','0','0','0','0','0','0','0','9b9d601d2d5c4d8da5d97c2785d8e0fa','0','2','0'), ('33914','18','','10387','Connection pool: client connections','mongodb.connection_pool.client','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active and stored outgoing synchronous connections from the current mongos instance to other members of the sharded cluster.','0','30d','0','','33889','','','','','200','1','0','','','0','0','0','0','0','0','0','58522550e8bc4f479681d961ba789b92','0','2','0'), ('33915','18','','10387','Connection pool: available','mongodb.connection_pool.available','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of available outgoing connections from the current mongos instance to other members of the sharded cluster.','0','30d','0','','33889','','','','','200','1','0','','','0','0','0','0','0','0','0','281e5a1a19dc402a992331252b27ee63','0','2','0'), ('33916','18','','10387','New connections, rate','mongodb.connections.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'"Rate of all incoming connections created to the server."','0','30d','0','','33887','','','','','200','1','0','','','0','0','0','0','0','0','0','18ed07f0efb54f55970483d15613d320','0','2','0'), ('33917','18','','10387','Connections, current','mongodb.connections.current','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of incoming connections from clients to the database server. This number includes the current shell session.','0','30d','0','','33887','','','','','200','1','0','','','0','0','0','0','0','0','0','087d1a405b7a456692a52b0d20c43eb3','0','2','0'), ('33918','18','','10387','Connections, available','mongodb.connections.available','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'"The number of unused incoming connections available."','0','30d','0','','33887','','','','','200','1','0','','','0','0','0','0','0','0','0','1f881cbd515d462eb5839fe4e1e21ee1','0','2','0'), ('33919','18','','10387','Mongos version','mongodb.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of the Mongos server','0','30d','0','','33887','','','','','200','1','0','','','0','0','0','0','0','0','0','dda1722d6e6b4189978fd44ace0f8f86','0','2','0'), ('33926','18','','10387','MongoDB {#DBNAME}.{#COLLECTION}: Objects, avg size','mongodb.collection.avg_obj_size["{#DBNAME}","{#COLLECTION}"]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size of the average object in the collection in bytes.','0','30d','0','','33924','','','','','200','1','0','','','0','0','0','0','0','0','0','253af5ef7858482fbeaa0c06c033b47a','0','2','0'), ('33927','18','','10387','MongoDB {#DBNAME}.{#COLLECTION}: Capped','mongodb.collection.capped["{#DBNAME}","{#COLLECTION}"]','0','31d','0','0','1','','','','',NULL,'228','','','0','','','','','2',NULL,'Whether or not the collection is capped.','0','30d','0','','33924','','','','','200','1','0','','','0','0','0','0','0','0','0','59465dc6e9384c7baf1a6239a6c66f0e','0','2','0'), ('33928','18','','10387','MongoDB {#DBNAME}.{#COLLECTION}: Objects, count','mongodb.collection.count["{#DBNAME}","{#COLLECTION}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of objects in the collection.','0','30d','0','','33924','','','','','200','1','0','','','0','0','0','0','0','0','0','03b8eb71502a4805902f7a5856e7c7b6','0','2','0'), ('33929','18','','10387','MongoDB {#DBNAME}.{#COLLECTION}: Capped, max number','mongodb.collection.max["{#DBNAME}","{#COLLECTION}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Maximum number of documents in a capped collection.','0','30d','0','','33924','','','','','200','1','0','','','0','0','0','0','0','0','0','2a78fa441bef4523bd0fee4934fc7b55','0','2','0'), ('33930','18','','10387','MongoDB {#DBNAME}.{#COLLECTION}: Capped, max size','mongodb.collection.max_size["{#DBNAME}","{#COLLECTION}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Maximum size of a capped collection in bytes.','0','30d','0','','33924','','','','','200','1','0','','','0','0','0','0','0','0','0','294985df777b42e0a56a229366bbac5d','0','2','0'), ('33931','18','','10387','MongoDB {#DBNAME}.{#COLLECTION}: Indexes','mongodb.collection.nindexes["{#DBNAME}","{#COLLECTION}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of indices on the collection.','0','30d','0','','33924','','','','','200','1','0','','','0','0','0','0','0','0','0','8da7cc960e8d42ccb3efe065fff5f0e9','0','2','0'), ('33932','18','','10387','MongoDB {#DBNAME}.{#COLLECTION}: Size','mongodb.collection.size["{#DBNAME}","{#COLLECTION}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total size in bytes of the data in the collection plus the size of every indexes on the mongodb.collection.','0','30d','0','','33924','','','','','200','1','0','','','0','0','0','0','0','0','0','191a21d9a1b94b238009e31433dbaa38','0','2','0'), ('33933','18','','10387','MongoDB {#DBNAME}.{#COLLECTION}: Storage size','mongodb.collection.storage_size["{#DBNAME}","{#COLLECTION}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total storage space allocated to this collection for document storage.','0','30d','0','','33924','','','','','200','1','0','','','0','0','0','0','0','0','0','ef82b9f814cd4917b3714e73d7ac87ac','0','2','0'), ('33934','18','','10387','MongoDB {#DBNAME}: Size, data','mongodb.db.data_size["{#DBNAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total size of the data held in this database including the padding factor.','0','30d','0','','33925','','','','','200','1','0','','','0','0','0','0','0','0','0','6dea9a371b94402aad9f8c6d7fcc5761','0','2','0'), ('33935','18','','10387','MongoDB {#DBNAME}: Extents','mongodb.db.extents["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Contains a count of the number of extents in the database across all collections.','0','30d','0','','33925','','','','','200','1','0','','','0','0','0','0','0','0','0','98c9e25c24b146aeaec4953913bb720a','0','2','0'), ('33936','18','','10387','MongoDB {#DBNAME}: Size, file','mongodb.db.file_size["{#DBNAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total size of the data held in this database including the padding factor (only available with the mmapv1 storage engine).','0','30d','0','','33925','','','','','200','1','0','','','0','0','0','0','0','0','0','cfb3598af7f14911965d548ea815cb33','0','2','0'), ('33937','18','','10387','MongoDB {#DBNAME}: Size, index','mongodb.db.index_size["{#DBNAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total size of all indexes created on this database.','0','30d','0','','33925','','','','','200','1','0','','','0','0','0','0','0','0','0','1716a51105f2415eb179a43022656e4a','0','2','0'), ('33938','18','','10387','MongoDB {#DBNAME}: Objects, count','mongodb.db.objects["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of objects (documents) in the database across all collections.','0','30d','0','','33925','','','','','200','1','0','','','0','0','0','0','0','0','0','f28f2df7b1e64aea99b20ca8deda2a25','0','2','0'), ('33939','18','','10387','MongoDB {#DBNAME}: Objects, avg size','mongodb.db.size["{#DBNAME}"]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The average size of each document in bytes.','0','30d','0','','33925','','','','','200','1','0','','','0','0','0','0','0','0','0','ed3076f82f494b6e953a9a5a3199df06','0','2','0'), ('33940','18','','10387','MongoDB {#DBNAME}: Size, storage','mongodb.db.storage_size["{#DBNAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total amount of space allocated to collections in this database for document storage.','0','30d','0','','33925','','','','','200','1','0','','','0','0','0','0','0','0','0','ae54fbae851b4b5a949611420fbc8ce0','0','2','0'), ('34240','18','','10396','Cluster status','netapp.cluster.status','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The status of the cluster: ok, error, partial_no_data, partial_no_response, partial_other_error, negative_delta, backfilled_data, inconsistent_delta_time, inconsistent_old_data.','0','30d','0','','34235','','','','','200','1','0','','','0','0','0','0','0','0','0','5029bccf54f542b1a2dc760067ddabe3','0','2','0'), ('34241','18','','10396','Cluster location','netapp.cluster.location','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The location of the cluster.','0','30d','0','','34235','','','','','200','1','0','','','0','0','0','0','0','0','0','2c98b9d6353a4b1f9c0a794681788c22','0','2','0'), ('34242','18','','10396','Cluster name','netapp.cluster.name','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The name of the cluster.','0','30d','0','','34235','','','','','200','1','0','','','0','0','0','0','0','0','0','a052583b18b44ed9b8df1c1eca375113','0','2','0'), ('34243','18','','10396','Cluster IOPS, other rate','netapp.cluster.statistics.iops.other.rate','0','31d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of I/O operations observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on.','0','30d','0','','34235','','','','','200','1','0','','','0','0','0','0','0','0','0','63c3ea4634024fb88841cee7e64c964b','0','2','0'), ('34244','18','','10396','Cluster IOPS, read rate','netapp.cluster.statistics.iops.read.rate','0','31d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of I/O operations observed at the storage object. Performance metric for read I/O operations.','0','30d','0','','34235','','','','','200','1','0','','','0','0','0','0','0','0','0','5f38f233c9c0446e8bb9e60229294cdf','0','2','0'), ('34245','18','','10396','Cluster IOPS, total rate','netapp.cluster.statistics.iops.total.rate','0','31d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of I/O operations observed at the storage object. Performance metric aggregated over all types of I/O operations.','0','30d','0','','34235','','','','','200','1','0','','','0','0','0','0','0','0','0','8380db1dbf2a4c2e95eff184d3a61fde','0','2','0'), ('34246','18','','10396','Cluster IOPS, write rate','netapp.cluster.statistics.iops.write.rate','0','31d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of I/O operations observed at the storage object. Performance metric for write I/O operations.','0','30d','0','','34235','','','','','200','1','0','','','0','0','0','0','0','0','0','65a4b938010045ef9735a7d9f6239ccd','0','2','0'), ('34247','18','','10396','Cluster IOPS raw, other','netapp.cluster.statistics.iops_raw.other','0','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of I/O operations observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on.','0','30d','0','','34235','','','','','200','1','0','','','0','0','0','0','0','0','0','77253d87ce8242afa45a3c79ab96a91e','0','2','0'), ('34248','18','','10396','Cluster software version','netapp.cluster.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This returns the cluster version information. When the cluster has more than one node, the cluster version is equivalent to the lowest of generation, major, and minor versions on all nodes.','0','30d','0','','34235','','','','','200','1','0','','','0','0','0','0','0','0','0','cd56dc70e28f4a3382f2f1b08a4fa584','0','2','0'), ('34249','18','','10396','Cluster throughput, write rate','netapp.cluster.statistics.throughput.write.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Throughput bytes observed at the storage object. Performance metric for write I/O operations.','0','30d','0','','34235','','','','','200','1','0','','','0','0','0','0','0','0','0','c06c118d3fbe48b78db12e43232d6d97','0','2','0'), ('34250','18','','10396','Cluster IOPS raw, write','netapp.cluster.statistics.iops_raw.write','0','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of I/O operations observed at the storage object. Performance metric for write I/O operations.','0','30d','0','','34235','','','','','200','1','0','','','0','0','0','0','0','0','0','92640d6a2d044100a59c5d180d43fbce','0','2','0'), ('34251','18','','10396','Cluster throughput, total rate','netapp.cluster.statistics.throughput.total.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Throughput bytes observed at the storage object. Performance metric aggregated over all types of I/O operations.','0','30d','0','','34235','','','','','200','1','0','','','0','0','0','0','0','0','0','e894ad01c2d74edfb8f954198979070c','0','2','0'), ('34252','18','','10396','Cluster throughput, read rate','netapp.cluster.statistics.throughput.read.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Throughput bytes observed at the storage object. Performance metric for read I/O operations.','0','30d','0','','34235','','','','','200','1','0','','','0','0','0','0','0','0','0','a1fad2e35b8f4c1da450b953d3952263','0','2','0'), ('34253','18','','10396','Cluster throughput, other rate','netapp.cluster.statistics.throughput.other.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Throughput bytes observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on.','0','30d','0','','34235','','','','','200','1','0','','','0','0','0','0','0','0','0','61acb5f1435f4452a789c44bfd105da3','0','2','0'), ('34254','18','','10396','Cluster latency raw, write','netapp.cluster.statistics.latency_raw.write','0','31d','365d','0','3','','!mcs','','',NULL,NULL,'','','0','','','','','0',NULL,'The raw latency in microseconds observed at the storage object. This can be divided by the raw IOPS value to calculate the average latency per I/O operation. Performance metric for write I/O operations.','0','30d','0','','34235','','','','','200','1','0','','','0','0','0','0','0','0','0','fb73702348d3468cad5312af772eaeb9','0','2','0'), ('34255','18','','10396','Cluster latency raw, total','netapp.cluster.statistics.latency_raw.total','0','31d','365d','0','3','','!mcs','','',NULL,NULL,'','','0','','','','','0',NULL,'The raw latency in microseconds observed at the storage object. This can be divided by the raw IOPS value to calculate the average latency per I/O operation. Performance metric aggregated over all types of I/O operations.','0','30d','0','','34235','','','','','200','1','0','','','0','0','0','0','0','0','0','78253f625b7e468898f6dd48c9707ad3','0','2','0'), ('34256','18','','10396','Cluster IOPS raw, read','netapp.cluster.statistics.iops_raw.read','0','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of I/O operations observed at the storage object. Performance metric for read I/O operations.','0','30d','0','','34235','','','','','200','1','0','','','0','0','0','0','0','0','0','14262390978b45729fa3ac593cf21a69','0','2','0'), ('34257','18','','10396','Cluster latency raw, other','netapp.cluster.statistics.latency_raw.other','0','31d','365d','0','3','','!mcs','','',NULL,NULL,'','','0','','','','','0',NULL,'The raw latency in microseconds observed at the storage object. This can be divided by the raw IOPS value to calculate the average latency per I/O operation. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on.','0','30d','0','','34235','','','','','200','1','0','','','0','0','0','0','0','0','0','acd5b961c4d843589514771fa9a0aaa3','0','2','0'), ('34258','18','','10396','Cluster IOPS raw, total','netapp.cluster.statistics.iops_raw.total','0','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of I/O operations observed at the storage object. Performance metric aggregated over all types of I/O operations.','0','30d','0','','34235','','','','','200','1','0','','','0','0','0','0','0','0','0','7a0407b68348478f9bc56bf0629f59d2','0','2','0'), ('34259','18','','10396','Cluster latency raw, read','netapp.cluster.statistics.latency_raw.read','0','31d','365d','0','3','','!mcs','','',NULL,NULL,'','','0','','','','','0',NULL,'The raw latency in microseconds observed at the storage object. This can be divided by the raw IOPS value to calculate the average latency per I/O operation. Performance metric for read I/O operations.','0','30d','0','','34235','','','','','200','1','0','','','0','0','0','0','0','0','0','3e81e918028d412eaa2cb27718ae3b98','0','2','0'), ('34262','18','','10396','FRUs discovery','netapp.frus.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','','34233','','','','','200','1','0','','','0','0','0','0','0','0','0','1ae3dea03a464096819de8a206b0780e','0','2','0'), ('34273','18','','10396','{#ID}: State','netapp.chassis.state[{#ID}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The chassis state: ok, error.','0','30d','0','','34226','','','','','200','1','0','','','0','0','0','0','0','0','0','7e6b1e1d5b484080b8f31929a78e44e7','0','2','0'), ('34274','18','','10396','{#DISKNAME}: State','netapp.disk.state[{#NODENAME},{#DISKNAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The state of the disk. Possible values: broken, copy, maintenance, partner, pending, present, reconstructing, removed, spare, unfail, zeroing','0','30d','0','','34234','','','','','200','1','0','','','0','0','0','0','0','0','0','f170a3d8e98048ce91bf10f1ebcd2611','0','2','0'), ('34275','18','','10396','{#FRUID}: State','netapp.chassis.fru.state[{#CHASSISID},{#FRUID}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The FRU state: ok, error.','0','30d','0','','34233','','','','','200','1','0','','','0','0','0','0','0','0','0','643c9e0a8869464bacae0ff6161afe36','0','2','0'), ('34276','18','','10396','{#LUNNAME}: Space size','netapp.lun.space.size[{#SVMNAME},{#LUNNAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total provisioned size of the LUN.','0','30d','0','','34232','','','','','200','1','0','','','0','0','0','0','0','0','0','05dfdbc0cacb4f1fa458180e4b4fe35c','0','2','0'), ('34277','18','','10396','{#LUNNAME}: Space used','netapp.lun.space.used[{#SVMNAME},{#LUNNAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of space consumed by the main data stream of the LUN.','0','30d','0','','34232','','','','','200','1','0','','','0','0','0','0','0','0','0','e12b5d04f3264ee2b602d459fb64c6ee','0','2','0'), ('34278','18','','10396','{#LUNNAME}: Container state','netapp.lun.status.container_state[{#SVMNAME},{#LUNNAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The state of the volume and aggregate that contain the LUN: online, aggregate_offline, volume_offline. LUNs are only available when their containers are available.','0','30d','0','','34232','','','','','200','1','0','','','0','0','0','0','0','0','0','701fdb0345874ea39afc3362faa2f5a4','0','2','0'), ('34279','18','','10396','{#LUNNAME}: State','netapp.lun.status.state[{#SVMNAME},{#LUNNAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The state of the LUN. Normal states for a LUN are online and offline. Other states indicate errors. Possible values: foreign_lun_error, nvfail, offline, online, space_error.','0','30d','0','','34232','','','','','200','1','0','','','0','0','0','0','0','0','0','ae15b98b9de2472e8c56ddb2a13d7981','0','2','0'), ('34280','18','','10396','{#NODENAME}: Software version','netapp.node.version[{#NODENAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'This returns the cluster version information. When the cluster has more than one node, the cluster version is equivalent to the lowest of generation, major, and minor versions on all nodes.','0','30d','0','','34231','','','','','200','1','0','','','0','0','0','0','0','0','0','23474d549a4c4e80b2e89c12a909dc0c','0','2','0'), ('34281','18','','10396','{#NODENAME}: Controller over temperature','netapp.nodes.controller.over_temperature[{#NODENAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Specifies whether the hardware is currently operating outside of its recommended temperature range. The hardware shuts down if the temperature exceeds critical thresholds. Possible values: over, normal','0','30d','0','','34231','','','','','200','1','0','','','0','0','0','0','0','0','0','416e2a3d707d4a5389c90566b588bf7f','0','2','0'), ('34282','18','','10396','{#NODENAME}: Location','netapp.nodes.location[{#NODENAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The location of the node.','0','30d','0','','34231','','','','','200','1','0','','','0','0','0','0','0','0','0','f554158202d347388304751c8bdf7515','0','2','0'), ('34283','18','','10396','{#NODENAME}: Membership','netapp.nodes.membership[{#NODENAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Possible values: available - If a node is available, this means it is detected on the internal cluster network and can be added to the cluster. Nodes that have a membership of “available” are not returned when a GET request is called when the cluster exists. A query on the “membership” property for available must be provided to scan for nodes on the cluster network. Nodes that have a membership of “available” are returned automatically before a cluster is created. joining - Joining nodes are in the process of being added to the cluster. The node may be progressing through the steps to become a member or might have failed. The job to add the node or create the cluster provides details on the current progress of the node. member - Nodes that are members have successfully joined the cluster.','0','30d','0','','34231','','','','','200','1','0','','','0','0','0','0','0','0','0','be634e1ba1ea454fbc6c7c8224909187','0','2','0'), ('34284','18','','10396','{#NODENAME}: State','netapp.nodes.state[{#NODENAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'State of the node: up - Node is up and operational. booting - Node is booting up. down - Node has stopped or is dumping core. taken_over - Node has been taken over by its HA partner and is not yet waiting for giveback. waiting_for_giveback - Node has been taken over by its HA partner and is waiting for the HA partner to giveback disks. degraded - Node has one or more critical services offline. unknown - Node or its HA partner cannot be contacted and there is no information on the node''s state.','0','30d','0','','34231','','','','','200','1','0','','','0','0','0','0','0','0','0','5b3b6fab8fe54f3585c1a270caad2b3e','0','2','0'), ('34285','18','','10396','{#NODENAME}: Uptime','netapp.nodes.uptime[{#NODENAME}]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The total time, in seconds, that the node has been up.','0','30d','0','','34231','','','','','200','1','0','','','0','0','0','0','0','0','0','56e0b6df4dbd456880c2481bec40b41e','0','2','0'), ('34286','18','','10396','{#ETHPORTNAME}: State','netapp.port.eth.state[{#NODENAME},{#ETHPORTNAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The operational state of the port. Possible values: up, down.','0','30d','0','','34230','','','','','200','1','0','','','0','0','0','0','0','0','0','dda2086a96f844c7b5a8002549fe6bf5','0','2','0'), ('34287','18','','10396','{#FCPORTNAME}: Description','netapp.port.fc.description[{#NODENAME},{#FCPORTNAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'A description of the FC port.','0','30d','0','','34229','','','','','200','1','0','','','0','0','0','0','0','0','0','b4358be015104524811f011ddf0fb1a1','0','2','0'), ('34288','18','','10396','{#FCPORTNAME}: State','netapp.port.fc.state[{#NODENAME},{#FCPORTNAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The operational state of the FC port. Possible values: startup - The port is booting up. link_not_connected - The port has finished initialization, but a link with the fabric is not established. online - The port is initialized and a link with the fabric has been established. link_disconnected - The link was present at one point on this port but is currently not established. offlined_by_user - The port is administratively disabled. offlined_by_system - The port is set to offline by the system. This happens when the port encounters too many errors. node_offline - The state information for the port cannot be retrieved. The node is offline or inaccessible.','0','30d','0','','34229','','','','','200','1','0','','','0','0','0','0','0','0','0','e939576d865041dd8f4af24bb7811117','0','2','0'), ('34289','18','','10396','{#SVMNAME}: Comment','netapp.svm.comment[{#SVMNAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The comment for the SVM.','0','30d','0','','34228','','','','','200','1','0','','','0','0','0','0','0','0','0','e7fab9c64c5348158418a02b1139eb68','0','2','0'), ('34290','18','','10396','{#SVMNAME}: State','netapp.svm.state[{#SVMNAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'SVM state: starting, running, stopping, stopped, deleting.','0','30d','0','','34228','','','','','200','1','0','','','0','0','0','0','0','0','0','6534f78b5b6c4e61b8ee0ab05bcc6fa3','0','2','0'), ('34291','18','','10396','{#VOLUMENAME}: SVM name','netapp.volume.svm_name[{#VOLUMENAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The volume belongs this SVM.','0','30d','0','','34238','','','','','200','1','0','','','0','0','0','0','0','0','0','1b48c3ecd33f4acd88b57f5c76c2892c','0','2','0'), ('34292','18','','10396','{#VOLUMENAME}: Volume throughput, write rate','netapp.volume.statistics.throughput.write.rate[{#VOLUMENAME}]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Throughput bytes observed at the storage object. Performance metric for write I/O operations.','0','30d','0','','34238','','','','','200','1','0','','','0','0','0','0','0','0','0','9d1cf308b4de4b88a632eee0b5a90267','0','2','0'), ('34293','18','','10396','{#VOLUMENAME}: Volume throughput, total rate','netapp.volume.statistics.throughput.total.rate[{#VOLUMENAME}]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Throughput bytes observed at the storage object. Performance metric aggregated over all types of I/O operations.','0','30d','0','','34238','','','','','200','1','0','','','0','0','0','0','0','0','0','9218d4e861244353bc779fc2dfd561b9','0','2','0'), ('34294','18','','10396','{#VOLUMENAME}: Volume throughput, read rate','netapp.volume.statistics.throughput.read.rate[{#VOLUMENAME}]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Throughput bytes observed at the storage object. Performance metric for read I/O operations.','0','30d','0','','34238','','','','','200','1','0','','','0','0','0','0','0','0','0','fcbef2bcc3004ba6b1f122f00419fc2c','0','2','0'), ('34295','18','','10396','{#VOLUMENAME}: Volume throughput, other rate','netapp.volume.statistics.throughput.other.rate[{#VOLUMENAME}]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Throughput bytes observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on.','0','30d','0','','34238','','','','','200','1','0','','','0','0','0','0','0','0','0','f23b393e033a4285b7f5b8742b0be669','0','2','0'), ('34296','18','','10396','{#VOLUMENAME}: Volume latency raw, write','netapp.volume.statistics.latency_raw.write[{#VOLUMENAME}]','0','31d','365d','0','3','','!mcs','','',NULL,NULL,'','','0','','','','','2',NULL,'The raw latency in microseconds observed at the storage object. Performance metric for write I/O operations.','0','30d','0','','34238','','','','','200','1','0','','','0','0','0','0','0','0','0','a6c653c4a6164de9971b22e7a28c40d9','0','2','0'), ('34297','18','','10396','{#VOLUMENAME}: Volume latency raw, total','netapp.volume.statistics.latency_raw.total[{#VOLUMENAME}]','0','31d','365d','0','3','','!mcs','','',NULL,NULL,'','','0','','','','','2',NULL,'The raw latency in microseconds observed at the storage object. Performance metric aggregated over all types of I/O operations.','0','30d','0','','34238','','','','','200','1','0','','','0','0','0','0','0','0','0','48479110a92b4b3094e72882ec9d4812','0','2','0'), ('34298','18','','10396','{#VOLUMENAME}: Volume latency raw, read','netapp.volume.statistics.latency_raw.read[{#VOLUMENAME}]','0','31d','365d','0','3','','!mcs','','',NULL,NULL,'','','0','','','','','2',NULL,'The raw latency in microseconds observed at the storage object. Performance metric for read I/O operations.','0','30d','0','','34238','','','','','200','1','0','','','0','0','0','0','0','0','0','0923b8b2933e4b309a4b751eea06353a','0','2','0'), ('34299','18','','10396','{#VOLUMENAME}: Volume latency raw, other','netapp.volume.statistics.latency_raw.other[{#VOLUMENAME}]','0','31d','365d','0','3','','!mcs','','',NULL,NULL,'','','0','','','','','2',NULL,'The raw latency in microseconds observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on.','0','30d','0','','34238','','','','','200','1','0','','','0','0','0','0','0','0','0','4fdf1c23cad2453aa00710289fde1460','0','2','0'), ('34300','18','','10396','{#VOLUMENAME}: Comment','netapp.volume.comment[{#VOLUMENAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'A comment for the volume.','0','30d','0','','34238','','','','','200','1','0','','','0','0','0','0','0','0','0','7218a035d00b47faae1d47955de4f61f','0','2','0'), ('34301','18','','10396','{#VOLUMENAME}: Available size','netapp.volume.space_available[{#VOLUMENAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The available space, in bytes.','0','30d','0','','34238','','','','','200','1','0','','','0','0','0','0','0','0','0','63c67432c4dd48f3a9b2736b1d8eda60','0','2','0'), ('34302','18','','10396','{#VOLUMENAME}: Volume IOPS raw, write','netapp.volume.statistics.iops_raw.write[{#VOLUMENAME}]','0','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of I/O operations observed at the storage object. Performance metric for write I/O operations.','0','30d','0','','34238','','','','','200','1','0','','','0','0','0','0','0','0','0','77329ceefeef490e98f7d23689765c87','0','2','0'), ('34303','18','','10396','{#VOLUMENAME}: Volume IOPS raw, total','netapp.volume.statistics.iops_raw.total[{#VOLUMENAME}]','0','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of I/O operations observed at the storage object. Performance metric aggregated over all types of I/O operations.','0','30d','0','','34238','','','','','200','1','0','','','0','0','0','0','0','0','0','5964ea1edbb74fa4a7c04a79ef776ff3','0','2','0'), ('34304','18','','10396','{#VOLUMENAME}: Volume IOPS raw, read','netapp.volume.statistics.iops_raw.read[{#VOLUMENAME}]','0','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of I/O operations observed at the storage object. Performance metric for read I/O operations.','0','30d','0','','34238','','','','','200','1','0','','','0','0','0','0','0','0','0','01ee6910b06e42e294e2c80229cc960e','0','2','0'), ('34305','18','','10396','{#VOLUMENAME}: Volume IOPS raw, other','netapp.volume.statistics.iops_raw.other[{#VOLUMENAME}]','0','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of I/O operations observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on.','0','30d','0','','34238','','','','','200','1','0','','','0','0','0','0','0','0','0','64a56ed125f249308d0f525aa0a3e56d','0','2','0'), ('34306','18','','10396','{#VOLUMENAME}: Volume IOPS, write rate','netapp.volume.statistics.iops.write.rate[{#VOLUMENAME}]','0','31d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of I/O operations observed at the storage object. Performance metric for write I/O operations.','0','30d','0','','34238','','','','','200','1','0','','','0','0','0','0','0','0','0','ffe8787aeaa2414e82a925ab0dbfb9aa','0','2','0'), ('34307','18','','10396','{#VOLUMENAME}: Volume IOPS, total rate','netapp.volume.statistics.iops.total.rate[{#VOLUMENAME}]','0','31d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of I/O operations observed at the storage object. Performance metric aggregated over all types of I/O operations.','0','30d','0','','34238','','','','','200','1','0','','','0','0','0','0','0','0','0','b767b6185c744ddc8061bef36d16581d','0','2','0'), ('34308','18','','10396','{#VOLUMENAME}: Volume IOPS, read rate','netapp.volume.statistics.iops.read.rate[{#VOLUMENAME}]','0','31d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of I/O operations observed at the storage object. Performance metric for read I/O operations.','0','30d','0','','34238','','','','','200','1','0','','','0','0','0','0','0','0','0','ae3142dae1294a16a4cdd0ef153f7cfb','0','2','0'), ('34309','18','','10396','{#VOLUMENAME}: Volume IOPS, other rate','netapp.volume.statistics.iops.other.rate[{#VOLUMENAME}]','0','31d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of I/O operations observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on.','0','30d','0','','34238','','','','','200','1','0','','','0','0','0','0','0','0','0','cb4cfb0ce84f405ebfbf2e4a64c12ca2','0','2','0'), ('34310','18','','10396','{#VOLUMENAME}: State','netapp.volume.state[{#VOLUMENAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Volume state. A volume can only be brought online if it is offline. Taking a volume offline removes its junction path. The ''mixed'' state applies to FlexGroup volumes only and cannot be specified as a target state. An ''error'' state implies that the volume is not in a state to serve data.','0','30d','0','','34238','','','','','200','1','0','','','0','0','0','0','0','0','0','fa2ae9b23fce43a49efa9c66369cce27','0','2','0'), ('34311','18','','10396','{#VOLUMENAME}: Used size','netapp.volume.space_used[{#VOLUMENAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The virtual space used (includes volume reserves) before storage efficiency, in bytes.','0','30d','0','','34238','','','','','200','1','0','','','0','0','0','0','0','0','0','0166239c8d4a4e42ba2f9b3b530143a8','0','2','0'), ('34312','18','','10396','{#VOLUMENAME}: Space size','netapp.volume.space_size[{#VOLUMENAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total provisioned size. The default size is equal to the minimum size of 20MB, in bytes.','0','30d','0','','34238','','','','','200','1','0','','','0','0','0','0','0','0','0','b17602cccbb84012b6cb8edd8bd80374','0','2','0'), ('34313','18','','10396','{#VOLUMENAME}: Type','netapp.volume.type[{#VOLUMENAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Type of the volume. rw - read-write volume. dp - data-protection volume. ls - load-sharing dp volume.','0','30d','0','','34238','','','','','200','1','0','','','0','0','0','0','0','0','0','540405e59a93446cbbe71b05206a50be','0','2','0'), ('34314','18','','10261','Utilization of report manager internal processes, in %','process.report_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the report manager processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','032c86725d7d479e8e0a8cf0ea14b349','0','2','0'), ('34315','18','','10261','Utilization of report writer internal processes, in %','process.report_writer.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the report writer processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','0a91377a6d5a460aa716164b201db6c0','0','2','0'), ('34320','18','','10323','ZooKeeper exceptions per second','clickhouse.zookeeper.exceptions.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of ZooKeeper exceptions that does not belong to user/hardware exceptions.','0','30d','0','','30825','','','','','200','1','0','','','0','0','0','0','0','0','0','381805a8145a48c2a1f2586996b66a94','0','2','0'), ('34321','18','','10387','Configserver heartbeat','mongodb.config_server_heartbeat','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Difference between the latest optime of the CSRS primary that the mongos has seen and cluster time.','0','30d','0','','33887','','','','','200','1','0','','','0','0','0','0','0','0','0','78db5504896649198605e140abb942be','0','2','0'), ('34324','18','','10327','Job discovery','mssql.job.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning jobs in DBMS.','0','7d','1','','34322','','','','','200','1','0','','','0','0','0','0','0','0','0','6d972c575a944d49badfc2e6a614f686','0','2','0'), ('34338','18','','10397','gRPC Commands total, rate','pd.grpc_command.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which gRPC commands are completed.','0','30d','0','','34336','','','','','200','1','0','','','0','0','0','0','0','0','0','101266930d0747748bf3cbd9259e2818','0','2','0'), ('34339','18','','10397','Status','pd.status','0','31d','0','0','1','','','','',NULL,'271','','','0','','','','','0',NULL,'Status of PD instance.','0','30d','0','','34337','','','','','200','1','0','','','0','0','0','0','0','0','0','c18f702f68bf4fed94a598daffdada8a','0','2','0'), ('34340','18','','10397','Uptime','pd.uptime','0','31d','365d','0','0','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The runtime of each PD instance.','0','30d','0','','34337','','','','','200','1','0','','','0','0','0','0','0','0','0','0b71c8a5104b46ebbeabe0d708b6676e','0','2','0'), ('34341','18','','10397','Version','pd.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of the PD instance.','0','30d','0','','34337','','','','','200','1','0','','','0','0','0','0','0','0','0','c7e8e9bf01d04e5db25bd8eaafff3b80','0','2','0'), ('34369','18','','10398','CPU','tidb.cpu.util','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Total user and system CPU usage ratio.','0','30d','0','','34368','','','','','200','1','0','','','0','0','0','0','0','0','0','f6c68d3961e04d5185ab38c12fa25532','0','2','0'), ('34371','18','','10398','Uptime','tidb.uptime','0','31d','365d','0','0','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The runtime of each TiDB instance.','0','30d','0','','34368','','','','','200','1','0','','','0','0','0','0','0','0','0','20c0fffd66c84a16bb4d8f7882c896bc','0','2','0'), ('34376','18','','10398','Server panic, rate','tidb.tidb_server_panic_total.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of panics occurred in TiDB per second.','0','30d','0','','34368','','','','','200','1','0','','','0','0','0','0','0','0','0','f1e2436ced3c456a85650e0622715777','0','2','0'), ('34377','18','','10398','Server critical error, rate','tidb.tidb_server_critical_error_total.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of critical errors occurred in TiDB per second.','0','30d','0','','34368','','','','','200','1','0','','','0','0','0','0','0','0','0','73992d4be61e443eafcc03aaa1bbf4a5','0','2','0'), ('34378','18','','10398','Server connections','tidb.tidb_server_connections','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The connection number of current TiDB instance.','0','30d','0','','34368','','','','','200','1','0','','','0','0','0','0','0','0','0','b5db09e71f2341b8ac1b9e48cbdefc82','0','2','0'), ('34379','18','','10398','Status','tidb.status','0','31d','0','0','1','','','','',NULL,'272','','','0','','','','','0',NULL,'Status of PD instance.','0','30d','0','','34367','','','','','200','1','0','','','0','0','0','0','0','0','0','ed86585a496b4b438c521c4765d76b11','0','2','0'), ('34381','18','','10398','Schema lease "outdate" errors , rate','tidb.session_schema_lease_error.outdate.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of schema lease errors per second. "outdate" errors means that the schema cannot be updated, which is a more serious error and triggers an alert.','0','30d','0','','34368','','','','','200','1','0','','','0','0','0','0','0','0','0','fe35df7cc7de4b0b8d616b042da99d69','0','2','0'), ('34382','18','','10398','Schema lease "change" errors, rate','tidb.session_schema_lease_error.change.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of schema lease errors per second. "change" means that the schema has changed','0','30d','0','','34368','','','','','200','1','0','','','0','0','0','0','0','0','0','84824ff459b74679b33e34a1f1e8cc69','0','2','0'), ('34385','18','','10398','DDL waiting jobs','tidb.ddl_waiting_jobs','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of TiDB operations that resolve locks per second. When TiDB''s read or write request encounters a lock, it tries to resolve the lock.','0','30d','0','','34368','','','','','200','1','0','','','0','0','0','0','0','0','0','e1da33fc95ab46bcbe6bc6a68154d172','0','2','0'), ('34386','18','','10398','RSS memory usage','tidb.rss_bytes','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Resident memory size in bytes.','0','30d','0','','34368','','','','','200','1','0','','','0','0','0','0','0','0','0','fbee374d0fda4679a693ccccc26e5713','0','2','0'), ('34387','18','','10398','Open file descriptors','tidb.process_open_fds','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of open file descriptors.','0','30d','0','','34368','','','','','200','1','0','','','0','0','0','0','0','0','0','04b3d6bf810c449db1e4b79be6b263a9','0','2','0'), ('34388','18','','10398','Open file descriptors, max','tidb.process_max_fds','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum number of open file descriptors.','0','30d','0','','34368','','','','','200','1','0','','','0','0','0','0','0','0','0','ad8764623b8e46238efc0a94f0766a5b','0','2','0'), ('34389','18','','10398','PD TSO requests, rate','tidb.pd_tso_request.rate','0','31d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of TSO requests that TiDB obtains from PD per second.','0','30d','0','','34368','','','','','200','1','0','','','0','0','0','0','0','0','0','2bde50849f5541c3ac8aa5b26f5b8b52','0','2','0'), ('34390','18','','10398','PD TSO commands, rate','tidb.pd_tso_cmd.rate','0','31d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of TSO commands that TiDB obtains from PD per second.','0','30d','0','','34368','','','','','200','1','0','','','0','0','0','0','0','0','0','dce76be0ccbe44969bb09ad29d599790','0','2','0'), ('34391','18','','10398','Time jump back, rate','tidb.monitor_time_jump_back.rate','0','31d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of times that the operating system rewinds every second.','0','30d','0','','34368','','','','','200','1','0','','','0','0','0','0','0','0','0','d3ef55b9fd8b4a2aa1cbbc48f15203cb','0','2','0'), ('34392','18','','10398','Keep alive, rate','tidb.monitor_keep_alive.rate','0','31d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of times that the metrics are refreshed on TiDB instance per minute.','0','30d','0','','34368','','','','','200','1','0','','','0','0','0','0','0','0','0','104c09cb47f640fb804c136a09aa3bd2','0','2','0'), ('34393','18','','10398','Heap memory usage','tidb.heap_bytes','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of heap bytes that are in use.','0','30d','0','','34368','','','','','200','1','0','','','0','0','0','0','0','0','0','78e60bd44e3e4a4a859705c94ef94420','0','2','0'), ('34394','18','','10398','Goroutine count','tidb.goroutines','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of Goroutines on TiDB instance.','0','30d','0','','34368','','','','','200','1','0','','','0','0','0','0','0','0','0','14cf8296365048a59fd42f03966b1e1e','0','2','0'), ('34395','18','','10398','Failed Query, rate','tidb.execute_error.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of error occurred when executing SQL statements per second (such as syntax errors and primary key conflicts).','0','30d','0','','34368','','','','','200','1','0','','','0','0','0','0','0','0','0','8fffe502bd2f42368e60d2110f1c3319','0','2','0'), ('34396','18','','10398','Load schema total, rate','tidb.domain_load_schema.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics of the schemas that TiDB obtains from TiKV per second.','0','30d','0','','34368','','','','','200','1','0','','','0','0','0','0','0','0','0','b0e960ddac4d43a3860e8a06dfe09e03','0','2','0'), ('34397','18','','10398','Load schema failed, rate','tidb.domain_load_schema.failed.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of failures to reload the latest schema information in TiDB per second.','0','30d','0','','34368','','','','','200','1','0','','','0','0','0','0','0','0','0','0fe0c1dee67e469d9d38193ef7b040ec','0','2','0'), ('34398','18','','10398','Version','tidb.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of the TiDB instance.','0','30d','0','','34367','','','','','200','1','0','','','0','0','0','0','0','0','0','65fa2b077073467387b39bef035b0644','0','2','0'), ('34413','18','','10399','Scheduler: High priority commands total, rate','tikv.commands_pri.high.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total count of high priority commands per second.','0','30d','0','','34412','','','','','200','1','0','','','0','0','0','0','0','0','0','449a7ba908884db3af4ec8ccc0d7ea43','0','2','0'), ('34414','18','','10399','Regions, count','tikv.region_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of regions collected in TiKV instance.','0','30d','0','','34412','','','','','200','1','0','','','0','0','0','0','0','0','0','e6137dd87faa496497b23cadaa37dca9','0','2','0'), ('34417','18','','10399','Storage: commands total, rate','tikv.storage_command.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of commands received per second.','0','30d','0','','34412','','','','','200','1','0','','','0','0','0','0','0','0','0','ce31318a420d40668e62a47fe19d3d40','0','2','0'), ('34418','18','','10399','Snapshot: Sending','tikv.snapshot.sending','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total amount of raftstore snapshot traffic.','0','30d','0','','34412','','','','','200','1','0','','','0','0','0','0','0','0','0','0ae6a2024ed3488498e22bc542d27619','0','2','0'), ('34419','18','','10399','Snapshot: Receiving','tikv.snapshot.receiving','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total amount of raftstore snapshot traffic.','0','30d','0','','34412','','','','','200','1','0','','','0','0','0','0','0','0','0','58559be859d64887a1b919e36aa1e336','0','2','0'), ('34420','18','','10399','Snapshot: Applying','tikv.snapshot.applying','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total amount of raftstore snapshot traffic.','0','30d','0','','34412','','','','','200','1','0','','','0','0','0','0','0','0','0','0a2d0a119bcd406aadfc5c014186c5d3','0','2','0'), ('34421','18','','10399','Scheduler: Busy, rate','tikv.scheduler_too_busy.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total count of too busy schedulers per second.','0','30d','0','','34412','','','','','200','1','0','','','0','0','0','0','0','0','0','8f5c9d2b9eca4a489d764420ee06e4b6','0','2','0'), ('34422','18','','10399','Snapshot: Pending tasks','tikv.worker_pending_task','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of tasks currently running by the worker or pending.','0','30d','0','','34412','','','','','200','1','0','','','0','0','0','0','0','0','0','8b7c2dc8c60e491db76cafd2d0e1234b','0','2','0'), ('34424','18','','10399','RSS memory usage','tikv.rss_bytes','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Resident memory size in bytes.','0','30d','0','','34412','','','','','200','1','0','','','0','0','0','0','0','0','0','1c480fa23eaa42bcb367bb5afdcb65b9','0','2','0'), ('34425','18','','10399','Regions, leader','tikv.region_leader','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of leaders in TiKV instance.','0','30d','0','','34412','','','','','200','1','0','','','0','0','0','0','0','0','0','2ab7643435794ec6b5a2c3eb1dd7e913','0','2','0'), ('34427','18','','10399','Scheduler: Low priority commands total, rate','tikv.commands_pri.low.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total count of low priority commands per second.','0','30d','0','','34412','','','','','200','1','0','','','0','0','0','0','0','0','0','b5ce79ee79804e76bb7b91e17915159c','0','2','0'), ('34428','18','','10399','Total query errors, rate','tikv.grpc_msg_fail.rate','0','31d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of gRPC message handling failure per second.','0','30d','0','','34412','','','','','200','1','0','','','0','0','0','0','0','0','0','c68db41c184d44d98445cc66489ef39c','0','2','0'), ('34430','18','','10399','Store size','tikv.engine_size','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The storage size of TiKV instance.','0','30d','0','','34412','','','','','200','1','0','','','0','0','0','0','0','0','0','f79d5daea61842b18e39c7289657ddf5','0','2','0'), ('34431','18','','10399','Bytes write','tikv.engine_flow_bytes.write','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The total bytes of write in TiKV instance.','0','30d','0','','34412','','','','','200','1','0','','','0','0','0','0','0','0','0','0d44c3c9a7f34905b0404ae39a3bc881','0','2','0'), ('34432','18','','10399','Bytes read','tikv.engine_flow_bytes.read','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The total bytes of read in TiKV instance.','0','30d','0','','34412','','','','','200','1','0','','','0','0','0','0','0','0','0','4558a5a11c304584bf24a7c3d2eace23','0','2','0'), ('34433','18','','10399','CPU util','tikv.cpu.util','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The CPU usage ratio on TiKV instance.','0','30d','0','','34412','','','','','200','1','0','','','0','0','0','0','0','0','0','a76665b7a9924f8cbd4a455bc248d790','0','2','0'), ('34434','18','','10399','Coprocessor: Response size, rate','tikv.coprocessor_response_bytes.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The total size of coprocessor response per second.','0','30d','0','','34412','','','','','200','1','0','','','0','0','0','0','0','0','0','5567ebf02fb6441dbb6672e1bc77b3ab','0','2','0'), ('34435','18','','10399','Coprocessor: RocksDB ops, rate','tikv.coprocessor_rocksdb_perf.rate','0','31d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of RocksDB internal operations from PerfContext per second.','0','30d','0','','34412','','','','','200','1','0','','','0','0','0','0','0','0','0','237f6ba2973e472d8c20de1d61b4695c','0','2','0'), ('34436','18','','10399','Coprocessor: Errors, rate','tikv.coprocessor_request_error.rate','0','31d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of push down request error per second.','0','30d','0','','34412','','','','','200','1','0','','','0','0','0','0','0','0','0','d6185382a1974b9194e68bea4f14eb75','0','2','0'), ('34438','18','','10399','Scheduler: Normal priority commands total, rate','tikv.commands_pri.normal.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total count of normal priority commands per second.','0','30d','0','','34412','','','','','200','1','0','','','0','0','0','0','0','0','0','df3fa02457ac47168fad251727b300ff','0','2','0'), ('34439','18','','10399','Uptime','tikv.uptime','0','31d','365d','0','0','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The runtime of each TiKV instance.','0','30d','0','','34412','','','','','200','1','0','','','0','0','0','0','0','0','0','f2632dbd773140398a7d61608d85f392','0','2','0'), ('35065','18','','10413','Subject alternative name','cert.alternative_names','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The subject alternative name extension allows identities to be bound to the subject of the certificate. These identities may be included in addition to or in place of the identity in the subject field of the certificate. Defined options include an Internet electronic mail address, a DNS name, an IP address, and a Uniform Resource Identifier (URI).','0','30d','0','','35064','','','','','200','1','0','','','0','0','0','0','0','0','0','42068372fbce4c12a4f3193fc490d4ec','0','2','0'), ('35066','18','','10413','Issuer','cert.issuer','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The field identifies the entity that has signed and issued the certificate.','0','30d','0','','35064','','','','','200','1','0','','','0','0','0','0','0','0','0','946e205aaa84433a8bf1fe46b9362acd','0','2','0'), ('35067','18','','10413','Last validation status','cert.message','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Last check result message.','0','30d','0','','35064','','','','','200','1','0','','','0','0','0','0','0','0','0','f124443debb447a792beb8265d2918ee','0','2','0'), ('35068','18','','10413','Expires on','cert.not_after','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'The date on which the certificate validity period ends.','0','30d','0','','35064','','','','','200','1','0','','','0','0','0','0','0','0','0','e34bffac86ef41e2865fe8410c2d0aa0','0','2','0'), ('35069','18','','10413','Valid from','cert.not_before','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'The date on which the certificate validity period begins.','0','30d','0','','35064','','','','','200','1','0','','','0','0','0','0','0','0','0','c3ba835b28db4f1486ae4be87c3fe55f','0','2','0'), ('35070','18','','10413','Public key algorithm','cert.public_key_algorithm','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The digital signature algorithm is used to verify the signature of a certificate.','0','30d','0','','35064','','','','','200','1','0','','','0','0','0','0','0','0','0','08b47b376f0f4f999bd1110696465fd9','0','2','0'), ('35071','18','','10413','Serial number','cert.serial_number','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The serial number is a positive integer assigned by the CA to each certificate. It is unique for each certificate issued by a given CA. Non-conforming CAs may issue certificates with serial numbers that are negative or zero.','0','30d','0','','35064','','','','','200','1','0','','','0','0','0','0','0','0','0','d7d4e592cc6741fcba9c21b5195b8544','0','2','0'), ('35072','18','','10413','Fingerprint','cert.sha1_fingerprint','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The Certificate Signature (SHA1 Fingerprint or Thumbprint) is the hash of the entire certificate in DER form.','0','30d','0','','35064','','','','','200','1','0','','','0','0','0','0','0','0','0','848cd98e80764f61bbe526316c70da11','0','2','0'), ('35073','18','','10413','Signature algorithm','cert.signature_algorithm','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The algorithm identifier for the algorithm used by the CA to sign the certificate.','0','30d','0','','35064','','','','','200','1','0','','','0','0','0','0','0','0','0','67d4cb73b1e74c5f9e63423e9bbdd3a6','0','2','0'), ('35074','18','','10413','Subject','cert.subject','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The field identifies the entity associated with the public key stored in the subject public key field.','0','30d','0','','35064','','','','','200','1','0','','','0','0','0','0','0','0','0','b44c554d025446c6b1761a5fde250f9f','0','2','0'), ('35075','18','','10413','Validation result','cert.validation','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The certificate validation result. Possible values: valid/invalid/valid-but-self-signed','0','30d','0','','35064','','','','','200','1','0','','','0','0','0','0','0','0','0','4fc3c39291ea4e3aa6ee04fcec4e1a8d','0','2','0'), ('35076','18','','10413','Version','cert.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The version of the encoded certificate.','0','30d','0','','35064','','','','','200','1','0','','','0','0','0','0','0','0','0','a8b04dfe285d47e39c9d360ea43fcdbe','0','2','0'), ('35078','18','','10414','Total bandwidth','cloudflare.bandwidth.all','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The volume of all data.','0','30d','0','','35077','','','','','200','1','0','','','0','0','0','0','0','0','0','2be79391779a4cd395723e62694262e8','0','2','0'), ('35079','18','','10414','Non-2xx responses ratio','cloudflare.requests.others_ratio','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The ratio of the amount requests with non-2xx response codes to all requests in percentage.','0','30d','0','','35077','','','','','200','1','0','','','0','0','0','0','0','0','0','228912bdae724d70b1abe79510b69082','0','2','0'), ('35080','18','','10414','Total threats','cloudflare.threats.all','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of all threats.','0','30d','0','','35077','','','','','200','1','0','','','0','0','0','0','0','0','0','328051a78529494e943edda567aa0e24','0','2','0'), ('35081','18','','10414','Uncached requests','cloudflare.requests.uncached','0','31d','365d','0','3','','req','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of uncached requests.','0','30d','0','','35077','','','','','200','1','0','','','0','0','0','0','0','0','0','7907f68e795b40fca1bd520556ea1fff','0','2','0'), ('35082','18','','10414','2xx responses ratio','cloudflare.requests.success_ratio','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The ratio of the amount requests with 2xx response codes to all requests in percentage.','0','30d','0','','35077','','','','','200','1','0','','','0','0','0','0','0','0','0','6100ff50001543ae83e84ab2c47260f3','0','2','0'), ('35083','18','','10414','Unencrypted requests','cloudflare.requests.ssl.unencrypted','0','31d','365d','0','3','','req','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unencrypted requests.','0','30d','0','','35077','','','','','200','1','0','','','0','0','0','0','0','0','0','acbbc431dfc3431583123380edb6da38','0','2','0'), ('35084','18','','10414','SSL encrypted requests','cloudflare.requests.ssl.encrypted','0','31d','365d','0','3','','req','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of encrypted requests.','0','30d','0','','35077','','','','','200','1','0','','','0','0','0','0','0','0','0','d39fcd4fdc594257bea91de0890d326b','0','2','0'), ('35085','18','','10414','Response codes 5xx','cloudflare.requests.response_500','0','31d','365d','0','3','','req','','',NULL,NULL,'','','0','','','','','0',NULL,'The number requests with 5xx response codes.','0','30d','0','','35077','','','','','200','1','0','','','0','0','0','0','0','0','0','714ef2cbecbe4a93b20988a0bc6863a7','0','2','0'), ('35086','18','','10414','Response codes 4xx','cloudflare.requests.response_400','0','31d','365d','0','3','','req','','',NULL,NULL,'','','0','','','','','0',NULL,'The number requests with 4xx response codes.','0','30d','0','','35077','','','','','200','1','0','','','0','0','0','0','0','0','0','b3510ec2adc74e10824365012c13250f','0','2','0'), ('35087','18','','10414','Response codes 3xx','cloudflare.requests.response_300','0','31d','365d','0','3','','req','','',NULL,NULL,'','','0','','','','','0',NULL,'The number requests with 3xx response codes.','0','30d','0','','35077','','','','','200','1','0','','','0','0','0','0','0','0','0','2caff86e7ca5400889f3b2bd4b6ba986','0','2','0'), ('35088','18','','10414','Response codes 2xx','cloudflare.requests.response_200','0','31d','365d','0','3','','req','','',NULL,NULL,'','','0','','','','','0',NULL,'The number requests with 2xx response codes.','0','30d','0','','35077','','','','','200','1','0','','','0','0','0','0','0','0','0','3ade3e726d314382a3e841b3d5cb5834','0','2','0'), ('35089','18','','10414','Response codes 1xx','cloudflare.requests.response_100','0','31d','365d','0','3','','req','','',NULL,NULL,'','','0','','','','','0',NULL,'The number requests with 1xx response codes.','0','30d','0','','35077','','','','','200','1','0','','','0','0','0','0','0','0','0','0f427419265a4ef09f052a03c539125d','0','2','0'), ('35090','18','','10414','Cache hit ratio % over time','cloudflare.requests.cache_hit_ratio','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The ratio of the amount cached requests to all requests in percentage.','0','30d','0','','35077','','','','','200','1','0','','','0','0','0','0','0','0','0','e1c2a1280d25439f8020b3ebc451d892','0','2','0'), ('35091','18','','10414','Cached bandwidth','cloudflare.bandwidth.cached','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The volume of cached data.','0','30d','0','','35077','','','','','200','1','0','','','0','0','0','0','0','0','0','7f5900d6c707405789624f84f502b042','0','2','0'), ('35092','18','','10414','Cached requests','cloudflare.requests.cached','0','31d','365d','0','3','','req','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','35077','','','','','200','1','0','','','0','0','0','0','0','0','0','cc9d651cdec94afeb12ead87b3c3e8f3','0','2','0'), ('35093','18','','10414','Total requests','cloudflare.requests.all','0','31d','365d','0','3','','req','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of all requests.','0','30d','0','','35077','','','','','200','1','0','','','0','0','0','0','0','0','0','d4a7431b1f6a4d3ab11551a36c98fbf7','0','2','0'), ('35094','18','','10414','Total page views','cloudflare.pageviews.all','0','31d','365d','0','3','','pg','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of all pageviews.','0','30d','0','','35077','','','','','200','1','0','','','0','0','0','0','0','0','0','71efacd9f1dc46a7aa29876c8bf7906c','0','2','0'), ('35095','18','','10414','Uncached DNS queries','cloudflare.dns.query.uncached','0','31d','365d','0','3','','conn','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of uncached DNS queries.','0','30d','0','','35077','','','','','200','1','0','','','0','0','0','0','0','0','0','4aeb289b631a402390a833e3c5227d38','0','2','0'), ('35096','18','','10414','Stale DNS queries','cloudflare.dns.query.stale','0','31d','365d','0','3','','conn','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of stale DNS queries.','0','30d','0','','35077','','','','','200','1','0','','','0','0','0','0','0','0','0','4612a834ef054740ba5fea529a08e220','0','2','0'), ('35097','18','','10414','DNS queries','cloudflare.dns.query.all','0','31d','365d','0','3','','conn','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of all DNS queries.','0','30d','0','','35077','','','','','200','1','0','','','0','0','0','0','0','0','0','6eff62f2786d42a7925bd516a1c2a958','0','2','0'), ('35098','18','','10414','Uncached bandwidth','cloudflare.bandwidth.uncached','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The volume of uncached data.','0','30d','0','','35077','','','','','200','1','0','','','0','0','0','0','0','0','0','96e88a64df014997b8c675cbc4bb97a1','0','2','0'), ('35099','18','','10414','Unencrypted bandwidth','cloudflare.bandwidth.ssl.unencrypted','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The volume of unencrypted data.','0','30d','0','','35077','','','','','200','1','0','','','0','0','0','0','0','0','0','4637d88e62204f9d8fb9fc0f179c5319','0','2','0'), ('35100','18','','10414','SSL encrypted bandwidth','cloudflare.bandwidth.ssl.encrypted','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The volume of encrypted data.','0','30d','0','','35077','','','','','200','1','0','','','0','0','0','0','0','0','0','901db6b121c7473485c91b0f27e7cf50','0','2','0'), ('35101','18','','10414','Cache hit ratio of bandwidth','cloudflare.bandwidth.cache_hit_ratio','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The ratio of the amount cached bandwidth to the bandwidth in percentage.','0','30d','0','','35077','','','','','200','1','0','','','0','0','0','0','0','0','0','c5ab8cc281ff4f75bd4ada79d2c0d1e8','0','2','0'), ('35102','18','','10414','Unique visitors','cloudflare.uniques.all','0','31d','365d','0','3','','conn','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of all visitors IPs.','0','30d','0','','35077','','','','','200','1','0','','','0','0','0','0','0','0','0','d1a2ec213b084701805f3f974af25a21','0','2','0'), ('35103','18','','10308','Get nodes','haproxy.get.nodes','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Array for LLD rules.','0','30d','0','','30189','','','','','200','1','0','','','0','0','0','0','0','0','0','ca85e2fda99b42a4ad2b373211a6b07d','0','2','0'), ('35128','18','','10309','Get nodes','haproxy.get.nodes','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Array for LLD rules.','0','30d','0','','30230','','','','','200','1','0','','','0','0','0','0','0','0','0','6af51d085a2f41f983bc3b20c6f4cc22','0','2','0'), ('35163','18','','10415','Connections idle','nginx.connections.idle','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of idle client connections.','0','30d','0','','35153','','','','','200','1','0','','','0','0','0','0','0','0','0','0c0e5a2ba5f643e09d07e34d724aff9a','0','2','0'), ('35164','18','','10415','Connections active','nginx.connections.active','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of active client connections.','0','30d','0','','35153','','','','','200','1','0','','','0','0','0','0','0','0','0','a0fd403c29e4452a9be0aecb650ab063','0','2','0'), ('35165','18','','10415','SSL session reuses, rate','nginx.ssl.session_reuses.rate','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of session reuses during SSL handshake per second.','0','30d','0','','35156','','','','','200','1','0','','','0','0','0','0','0','0','0','98ec8bec834a42caba8d260d939beb0e','0','2','0'), ('35166','18','','10415','SSL handshakes failed, rate','nginx.ssl.handshakes_failed.rate','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of failed SSL handshakes per second.','0','30d','0','','35156','','','','','200','1','0','','','0','0','0','0','0','0','0','77fcc55ced2045e099b37580f7ef6d5b','0','2','0'), ('35167','18','','10415','SSL handshakes, rate','nginx.ssl.handshakes.rate','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of successful SSL handshakes per second.','0','30d','0','','35156','','','','','200','1','0','','','0','0','0','0','0','0','0','09c7ab8555d046a69a96889185650dfe','0','2','0'), ('35168','18','','10415','Connections dropped','nginx.connections.dropped','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of dropped client connections.','0','30d','0','','35153','','','','','200','1','0','','','0','0','0','0','0','0','0','06395827019542b7bd381d42beb76b10','0','2','0'), ('35169','18','','10415','Requests current','nginx.requests.current','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of client requests.','0','30d','0','','35158','','','','','200','1','0','','','0','0','0','0','0','0','0','630c4f81f9f44397a156e2d4e5d21af8','0','2','0'), ('35170','18','','10415','Requests total, rate','nginx.requests.total.rate','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of client requests per second.','0','30d','0','','35158','','','','','200','1','0','','','0','0','0','0','0','0','0','8130bfb659a94641b97a1abcdb9a4f66','0','2','0'), ('35171','18','','10415','Version','nginx.info.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A version number of NGINX.','0','30d','0','','35154','','','','','200','1','0','','','0','0','0','0','0','0','0','89059effd28641e08e2002c807784bcb','0','2','0'), ('35172','18','','10415','Connections accepted, rate','nginx.connections.accepted.rate','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of accepted client connections per second.','0','30d','0','','35153','','','','','200','1','0','','','0','0','0','0','0','0','0','1734b26ca856405e8c08f222944cadc3','0','2','0'), ('35173','18','','10415','Generation','nginx.info.generation','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of configuration reloads.','0','30d','0','','35154','','','','','200','1','0','','','0','0','0','0','0','0','0','9baff3e318d84cd78c6a8ec6ae294de5','0','2','0'), ('35174','18','','10415','Get info error','nginx.info.error','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The description of NGINX errors.','0','30d','0','','35154','','','','','200','1','0','','','0','0','0','0','0','0','0','14c417b374ef4674bb374979135f8617','0','2','0'), ('35175','18','','10415','Address','nginx.info.address','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The address of the server that accepted status request.','0','30d','0','','35154','','','','','200','1','0','','','0','0','0','0','0','0','0','178f9f0c2ae74a6bbf1ae6965021ccde','0','2','0'), ('35176','18','','10415','Uptime','nginx.info.uptime','0','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The server uptime.','0','30d','0','','35154','','','','','200','1','0','','','0','0','0','0','0','0','0','1baceaa7af4d45e487a448670e213c94','0','2','0'), ('35177','18','','10415','HTTP location zones discovery','nginx.http.location_zones.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','','35161','','','','','200','1','0','','','0','0','0','0','0','0','0','33fdb45a55544c628c0106ed193ebc0b','0','2','0'), ('35178','18','','10415','HTTP server zones discovery','nginx.http.server_zones.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','','35162','','','','','200','1','0','','','0','0','0','0','0','0','0','85ad3fc40daa45b7a2fe00d570c5626c','0','2','0'), ('35179','18','','10415','HTTP upstream peers discovery','nginx.http.upstream.peers.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','','35160','','','','','200','1','0','','','0','0','0','0','0','0','0','007e9b12e7164f629d90a6f377333dc8','0','2','0'), ('35180','18','','10415','HTTP upstreams discovery','nginx.http.upstreams.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','','35160','','','','','200','1','0','','','0','0','0','0','0','0','0','0cdb09e9004540239fd49eab09e3f324','0','2','0'), ('35181','18','','10415','Resolvers discovery','nginx.resolvers.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','','35157','','','','','200','1','0','','','0','0','0','0','0','0','0','1f75b67c7c4044dfa8727cc7363e86d0','0','2','0'), ('35182','18','','10415','Stream server zones discovery','nginx.stream.server_zones.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','','35155','','','','','200','1','0','','','0','0','0','0','0','0','0','bdc6582408be488997720ef8a4d1108e','0','2','0'), ('35183','18','','10415','Stream upstream peers discovery','nginx.stream.upstream.peers.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','','35159','','','','','200','1','0','','','0','0','0','0','0','0','0','435f8bc40dd244aabb7daee4be7d54e5','0','2','0'), ('35184','18','','10415','Stream upstreams discovery','nginx.stream.upstreams.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','','35159','','','','','200','1','0','','','0','0','0','0','0','0','0','8a8f9d8b47f84bd98a5315ae30944240','0','2','0'), ('35266','18','','10416','{#UNIT.NAME}: Active state','systemd.service.active_state["{#UNIT.NAME}"]','0','31d','365d','0','3','','','','',NULL,'344','','','0','','','','','2',NULL,'State value that reflects whether the unit is currently active or not. The following states are currently defined: "active", "reloading", "inactive", "failed", "activating", and "deactivating".','0','30d','0','','35264','','','','','200','1','0','','','0','0','0','0','0','0','0','78587e9b16b5431bbccd2855998171fa','0','2','0'), ('35267','18','','10416','{#UNIT.NAME}: Load state','systemd.service.load_state["{#UNIT.NAME}"]','0','31d','365d','0','3','','','','',NULL,'346','','','0','','','','','2',NULL,'State value that reflects whether the configuration file of this unit has been loaded. The following states are currently defined: "loaded", "error", and "masked".','0','30d','0','','35264','','','','','200','1','0','','','0','0','0','0','0','0','0','bed610e6ce33494b817eb787e34e18c2','0','2','0'), ('35268','18','','10416','{#UNIT.NAME}: Unit file state','systemd.service.unitfile_state["{#UNIT.NAME}"]','0','31d','365d','0','3','','','','',NULL,'345','','','0','','','','','2',NULL,'Encodes the install state of the unit file of FragmentPath. It currently knows the following states: "enabled", "enabled-runtime", "linked", "linked-runtime", "masked", "masked-runtime", "static", "disabled", and "invalid".','0','30d','0','','35264','','','','','200','1','0','','','0','0','0','0','0','0','0','f1174eb5abf74e028a75ab9bb8eec649','0','2','0'), ('35269','18','','10416','{#UNIT.NAME}: Active time','systemd.service.uptime["{#UNIT.NAME}"]','0','31d','365d','0','0','','uptime','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of seconds since unit entered the active state.','0','30d','0','','35264','','','','','200','1','0','','','0','0','0','0','0','0','0','a35992b54d944a389c1bb44748a37fdb','0','2','0'), ('35270','18','','10416','{#UNIT.NAME}: Connections accepted per sec','systemd.socket.conn_accepted.rate["{#UNIT.NAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of accepted socket connections (NAccepted) per second.','0','30d','0','','35265','','','','','200','1','0','','','0','0','0','0','0','0','0','462ee6b9e70146c8ab6a917c182f3ce7','0','2','0'), ('35271','18','','10416','{#UNIT.NAME}: Connections connected','systemd.socket.conn_count["{#UNIT.NAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current number of socket connections (NConnections).','0','30d','0','','35265','','','','','200','1','0','','','0','0','0','0','0','0','0','258a899aba9546db956b8e235738bd89','0','2','0'), ('35278','18','','10261','Utilization of trigger housekeeper internal processes, in %','process.trigger_housekeeper.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the trigger housekeeper processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','56dca0db33264d4b9c8fd769fbdff7b5','0','2','0'), ('35279','18','','10261','Utilization of service manager internal processes, in %','process.service_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the service manager processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','99da1d8bd47447d282542d40c1edea00','0','2','0'), ('36215','18','','10435','Firmware version','dell.server.hw.firmware','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This attribute defines the firmware version of a remote access card.','0','30d','0','','36213','','','','','200','1','0','','','0','0','0','0','0','0','0','926ce571ca7e4021bbcb0864c2dd00ae','0','2','0'), ('36216','18','','10435','Hardware model name','dell.server.hw.model','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This attribute defines the model name of the system.','29','30d','0','','36213','','','','','200','1','0','','','0','0','0','0','0','0','0','6e469760ab3c43e5a94613e798e227d1','0','2','0'), ('36217','18','','10435','Hardware serial number','dell.server.hw.serialnumber','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This attribute defines the service tag of the system.','8','30d','0','','36213','','','','','200','1','0','','','0','0','0','0','0','0','0','24a9370f57cc494ab2bd63c503df88bc','0','2','0'), ('36218','18','','10435','Overall system health status','dell.server.status','0','31d','0','0','3','','','','',NULL,'1309','','','0','','','','','0',NULL,'This attribute defines the overall rollup status of all the components in the system monitored by the remote access card. Includes system, storage, IO devices, iDRAC, CPU, memory, etc.','0','30d','0','','36213','','','','','200','1','0','','','0','0','0','0','0','0','0','836ad85fee674a1ca7c6d147d0e5c0c7','0','2','0'), ('36269','18','','10436','Array controller discovery','array.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Array controller discovery.','0','7d','0','','48630','','','','','200','1','0','','','0','0','0','0','0','0','0','b61fe289fe88450db55f03c632e8a26f','0','2','0'), ('36270','18','','10436','Fan discovery','fan.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Fan discovery.','0','7d','0','','48636','','','','','200','1','0','','','0','0','0','0','0','0','0','c0c2f9b115f04ebe8b709032f8c97669','0','2','0'), ('36271','18','','10436','Physical disk discovery','physicaldisk.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Physical disk discovery.','0','7d','0','','48634','','','','','200','1','0','','','0','0','0','0','0','0','0','ed21036b0df047f5924df6ed4fd53b62','0','2','0'), ('36272','18','','10436','PSU discovery','psu.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'PSU discovery.','0','7d','0','','48642','','','','','200','1','0','','','0','0','0','0','0','0','0','166c453303e843bbadc62963b725da95','0','2','0'), ('36273','18','','10436','Temperature discovery','temp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Temperature sensor discovery.','0','7d','0','','48643','','','','','200','1','0','','','0','0','0','0','0','0','0','8e29bd2cab71430b8306394b6f629ac2','0','2','0'), ('36274','18','','10436','Virtual disk discovery','virtualdisk.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Virtual disk discovery.','0','7d','0','','48635','','','','','200','1','0','','','0','0','0','0','0','0','0','4332291ca425477387bed6abccaaefd3','0','2','0'), ('36276','18','','10436','Controller [{#CNTLR_NAME}]: Model','dell.server.hw.diskarray.model[controllerName.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The controller''s name as represented in Storage Management.','0','30d','0','','48630','','','','','200','1','0','','','0','0','0','0','0','0','0','0f565dd530fa4a0bb93b642c8ee19b0f','0','2','0'), ('36277','18','','10436','Controller [{#CNTLR_NAME}]: Status','dell.server.hw.diskarray.status[controllerComponentStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'446','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The status of the controller itself without the propagation of any contained component status. Possible values: 1: Other 2: Unknown 3: OK 4: Non-critical 5: Critical 6: Non-recoverable','0','30d','0','','48630','','','','','200','1','0','','','0','0','0','0','0','0','0','69ed8def6e2c4025abcc565217064600','0','2','0'), ('36280','18','','10436','Physical disk [{#DISK_NAME}]: Media type','dell.server.hw.physicaldisk.media_type[physicalDiskMediaType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'448','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The media type of the physical disk. Possible Values: 1: The media type could not be determined. 2: Hard Disk Drive (HDD). 3: Solid State Drive (SSD).','0','30d','0','','48634','','','','','200','1','0','','','0','0','0','0','0','0','0','6830d155acf647fd990822137efa9d02','0','2','0'), ('36281','18','','10436','Physical disk [{#DISK_NAME}]: Model name','dell.server.hw.physicaldisk.model[physicalDiskProductID.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The model number of the physical disk.','0','30d','0','','48634','','','','','200','1','0','','','0','0','0','0','0','0','0','3cae98ed317a43e7920d4ae9106fe9cd','0','2','0'), ('36282','18','','10436','Physical disk [{#DISK_NAME}]: Serial number','dell.server.hw.physicaldisk.serialnumber[physicalDiskSerialNo.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The physical disk''s unique identification number from the manufacturer.','0','30d','0','','48634','','','','','200','1','0','','','0','0','0','0','0','0','0','27f4105ce0c24d9f8509f71b59ce8714','0','2','0'), ('36283','18','','10436','Physical disk [{#DISK_NAME}]: Size','dell.server.hw.physicaldisk.size[physicalDiskCapacityInMB.{#SNMPINDEX}]','0','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The size of the physical disk in megabytes.','0','30d','0','','48634','','','','','200','1','0','','','0','0','0','0','0','0','0','20d406f393fc4a6b9963569d24a02106','0','2','0'), ('36284','18','','10436','Physical disk [{#DISK_NAME}]: S.M.A.R.T. Status','dell.server.hw.physicaldisk.smart_status[physicalDiskSmartAlertIndication.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'445','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 Indicates whether the physical disk has received a predictive failure alert.','0','30d','0','','48634','','','','','200','1','0','','','0','0','0','0','0','0','0','aa58b1d10ae8498a9f6ca736e083ec91','0','2','0'), ('36285','18','','10436','Physical disk [{#DISK_NAME}]: Status','dell.server.hw.physicaldisk.status[physicalDiskComponentStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'447','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The status of the physical disk itself without the propagation of any contained component status. Possible values: 1: Other 2: Unknown 3: OK 4: Non-critical 5: Critical 6: Non-recoverable','0','30d','0','','48634','','','','','200','1','0','','','0','0','0','0','0','0','0','551bee86234a4c99a6c7c5ac7db89f37','0','2','0'), ('36286','18','','10436','Power supply [{#PSU_DESCR}]: State','dell.server.sensor.psu.status[powerSupplyStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'446','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the status of the power supply.','0','30d','0','','48642','','','','','200','1','0','','','0','0','0','0','0','0','0','43fe09a202994622bbef420c9b018d49','0','2','0'), ('36287','18','','10436','Probe [{#SENSOR_LOCALE}]: Status','dell.server.sensor.temp.status[temperatureProbeStatus.{#SNMPINDEX}]','0','31d','0','0','0','','','','',NULL,'449','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the probe status of the temperature probe. Possible values: other(1), -- probe status is not one of the following: unknown(2), -- probe status is unknown (not known or monitored) ok(3), -- probe is reporting a value within the thresholds nonCriticalUpper(4), -- probe has crossed the upper noncritical threshold criticalUpper(5), -- probe has crossed the upper critical threshold nonRecoverableUpper(6), -- probe has crossed the upper non-recoverable threshold nonCriticalLower(7), -- probe has crossed the lower noncritical threshold criticalLower(8), -- probe has crossed the lower critical threshold nonRecoverableLower(9), -- probe has crossed the lower non-recoverable threshold failed(10) -- probe is not functional','0','30d','0','','48643','','','','','200','1','0','','','0','0','0','0','0','0','0','8933cb6596154baca790294c37d0a3b9','0','2','0'), ('36288','18','','10436','Probe [{#SENSOR_LOCALE}]: Value','dell.server.sensor.temp.value[temperatureProbeReading.{#SNMPINDEX}]','0','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the reading for a temperature probe of type other than `temperatureProbeTypeIsDiscrete`. When the value for `temperatureProbeType` is other than `temperatureProbeTypeIsDiscrete`, the value returned for this attribute is the temperature that the probe is reading in Centigrade. When the value for `temperatureProbeType` is `temperatureProbeTypeIsDiscrete`, a value is not returned for this attribute.','0','30d','0','','48643','','','','','200','1','0','','','0','0','0','0','0','0','0','9c03b7da06874b69a43943de63912d82','0','2','0'), ('36289','18','','10436','Virtual disk [{#DISK_NAME}]: Layout type','dell.server.hw.virtualdisk.layout[virtualDiskLayout.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'450','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The virtual disk''s RAID type. Possible values: 1: Not one of the following 2: RAID-0 3: RAID-1 4: RAID-5 5: RAID-6 6: RAID-10 7: RAID-50 8: RAID-60 9: Concatenated RAID 1 10: Concatenated RAID 5','0','30d','0','','48635','','','','','200','1','0','','','0','0','0','0','0','0','0','6f63f8bbeba44c3a85a874f6e2796b26','0','2','0'), ('36291','18','','10436','Virtual disk [{#DISK_NAME}]: Size','dell.server.hw.virtualdisk.size[virtualDiskSizeInMB.{#SNMPINDEX}]','0','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The size of the virtual disk in megabytes.','0','30d','0','','48635','','','','','200','1','0','','','0','0','0','0','0','0','0','f52835c258ea4b2ab16ab91fa14f2cd9','0','2','0'), ('36292','18','','10436','Virtual disk [{#DISK_NAME}]: Operational state','dell.server.hw.virtualdisk.state[virtualDiskOperationalState.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'451','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The state of the virtual disk when there are progressive operations ongoing. Possible values: 1: There is no active operation running. 2: The virtual disk configuration has changed. The physical disks included in the virtual disk are being modified to support the new configuration. 3: A Consistency Check (CC) is being performed on the virtual disk. 4: The virtual disk is being initialized. 5: BackGround Initialization (BGI) is being performed on the virtual disk.','0','30d','0','','48635','','','','','200','1','0','','','0','0','0','0','0','0','0','100faa8a115f4f34a61938fc9fe2b056','0','2','0'), ('36293','18','','10436','Virtual disk [{#DISK_NAME}]: Status','dell.server.hw.virtualdisk.status[virtualDiskState.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'453','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The current state of this virtual disk (which includes any member physical disks.) Possible states: 1: The current state could not be determined. 2: The virtual disk is operating normally or optimally. 3: The virtual disk has encountered a failure. Data on the disk is lost or is about to be lost. 4: The virtual disk encountered a failure with one or all of the constituent redundant physical disks. The data on the virtual disk might no longer be fault tolerant.','0','30d','0','','48635','','','','','200','1','0','','','0','0','0','0','0','0','0','9f49cd360dc849d19abe10cd5cf94a10','0','2','0'), ('36297','18','','10437','Firmware version','dell.server.hw.firmware','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This attribute defines the firmware version of a remote access card.','0','30d','0','','36295','','','','','200','1','0','','','0','0','0','0','0','0','0','aa1def487bd54496aaf8372cb76b2077','0','2','0'), ('36298','18','','10437','Hardware model name','dell.server.hw.model','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This attribute defines the model name of the system.','29','30d','0','','36295','','','','','200','1','0','','','0','0','0','0','0','0','0','6790e2fb624b4dbc9382f32f9403a9b9','0','2','0'), ('36299','18','','10437','Hardware serial number','dell.server.hw.serialnumber','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This attribute defines the service tag of the system.','8','30d','0','','36295','','','','','200','1','0','','','0','0','0','0','0','0','0','ac9560837ada4906b898518f3f61d84e','0','2','0'), ('36300','18','','10437','Overall system health status','dell.server.status','0','31d','0','0','3','','','','',NULL,'1318','','','0','','','','','0',NULL,'This attribute defines the overall rollup status of all the components in the system monitored by the remote access card. Includes system, storage, IO devices, iDRAC, CPU, memory, etc.','0','30d','0','','36295','','','','','200','1','0','','','0','0','0','0','0','0','0','d4cf468d146b46e9aa2245c5f7136aaa','0','2','0'), ('36351','18','','10438','Array controller discovery','array.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Array controller discovery.','0','7d','0','','48713','','','','','200','1','0','','','0','0','0','0','0','0','0','dccb5d8d2a7747709446943ad676adb3','0','2','0'), ('36352','18','','10438','Fan discovery','fan.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Fan discovery.','0','7d','0','','48719','','','','','200','1','0','','','0','0','0','0','0','0','0','7b6e0ea3ca9847318e9e2ac7dacb70e6','0','2','0'), ('36353','18','','10438','Physical disk discovery','physicaldisk.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Physical disk discovery.','0','7d','0','','48717','','','','','200','1','0','','','0','0','0','0','0','0','0','732e223af8f94d6d894da0054c53fceb','0','2','0'), ('36354','18','','10438','PSU discovery','psu.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'PSU discovery.','0','7d','0','','48725','','','','','200','1','0','','','0','0','0','0','0','0','0','ceb2f7f14cd546c6af57ead8f9016c66','0','2','0'), ('36355','18','','10438','Temperature discovery','temp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Temperature sensor discovery.','0','7d','0','','48726','','','','','200','1','0','','','0','0','0','0','0','0','0','b7562decf05249758d75961f54fdb497','0','2','0'), ('36356','18','','10438','Virtual disk discovery','virtualdisk.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Virtual disk discovery.','0','7d','0','','48718','','','','','200','1','0','','','0','0','0','0','0','0','0','9c289d95dd7148238790b2359cf7c2f9','0','2','0'), ('36358','18','','10438','Controller [{#CNTLR_NAME}]: Model','dell.server.hw.diskarray.model[controllerName.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The controller''s name as represented in Storage Management.','0','30d','0','','48713','','','','','200','1','0','','','0','0','0','0','0','0','0','c4661a1ee2804c51a232f4fb8fca715d','0','2','0'), ('36359','18','','10438','Controller [{#CNTLR_NAME}]: Status','dell.server.hw.diskarray.status[controllerComponentStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'459','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The status of the controller itself without the propagation of any contained component status. Possible values: 1: Other 2: Unknown 3: OK 4: Non-critical 5: Critical 6: Non-recoverable','0','30d','0','','48713','','','','','200','1','0','','','0','0','0','0','0','0','0','77c20c4aef9143dd882bbc4baba53d9a','0','2','0'), ('36362','18','','10438','Physical disk [{#DISK_NAME}]: Media type','dell.server.hw.physicaldisk.media_type[physicalDiskMediaType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'461','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The media type of the physical disk. Possible Values: 1: The media type could not be determined. 2: Hard Disk Drive (HDD). 3: Solid State Drive (SSD).','0','30d','0','','48717','','','','','200','1','0','','','0','0','0','0','0','0','0','611125e175c746bbbbdf01806afed47f','0','2','0'), ('36363','18','','10438','Physical disk [{#DISK_NAME}]: Model name','dell.server.hw.physicaldisk.model[physicalDiskProductID.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The model number of the physical disk.','0','30d','0','','48717','','','','','200','1','0','','','0','0','0','0','0','0','0','b34f13ad1ec74d81915944ad95424b81','0','2','0'), ('36364','18','','10438','Physical disk [{#DISK_NAME}]: Serial number','dell.server.hw.physicaldisk.serialnumber[physicalDiskSerialNo.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The physical disk''s unique identification number from the manufacturer.','0','30d','0','','48717','','','','','200','1','0','','','0','0','0','0','0','0','0','06d3917a220f4e478f8f98331d308fd2','0','2','0'), ('36365','18','','10438','Physical disk [{#DISK_NAME}]: Size','dell.server.hw.physicaldisk.size[physicalDiskCapacityInMB.{#SNMPINDEX}]','0','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The size of the physical disk in megabytes.','0','30d','0','','48717','','','','','200','1','0','','','0','0','0','0','0','0','0','66033914b4234e80abd5ff0125035078','0','2','0'), ('36366','18','','10438','Physical disk [{#DISK_NAME}]: S.M.A.R.T. Status','dell.server.hw.physicaldisk.smart_status[physicalDiskSmartAlertIndication.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'458','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 Indicates whether the physical disk has received a predictive failure alert.','0','30d','0','','48717','','','','','200','1','0','','','0','0','0','0','0','0','0','9f97e7dd51cd47d5966ac5d052e19766','0','2','0'), ('36367','18','','10438','Physical disk [{#DISK_NAME}]: Status','dell.server.hw.physicaldisk.status[physicalDiskComponentStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'460','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The status of the physical disk itself without the propagation of any contained component status. Possible values: 1: Other 2: Unknown 3: OK 4: Non-critical 5: Critical 6: Non-recoverable','0','30d','0','','48717','','','','','200','1','0','','','0','0','0','0','0','0','0','9d2326c1e4f844f1a1328046ab57765d','0','2','0'), ('36368','18','','10438','Power supply [{#PSU_DESCR}]: State','dell.server.sensor.psu.status[powerSupplyStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'459','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the status of the power supply.','0','30d','0','','48725','','','','','200','1','0','','','0','0','0','0','0','0','0','d1aa5fd364984c8ab42fd6a808d93bcc','0','2','0'), ('36369','18','','10438','Probe [{#SENSOR_LOCALE}]: Status','dell.server.sensor.temp.status[temperatureProbeStatus.{#SNMPINDEX}]','0','31d','0','0','0','','','','',NULL,'462','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the probe status of the temperature probe. Possible values: other(1), -- probe status is not one of the following: unknown(2), -- probe status is unknown (not known or monitored) ok(3), -- probe is reporting a value within the thresholds nonCriticalUpper(4), -- probe has crossed the upper noncritical threshold criticalUpper(5), -- probe has crossed the upper critical threshold nonRecoverableUpper(6), -- probe has crossed the upper non-recoverable threshold nonCriticalLower(7), -- probe has crossed the lower noncritical threshold criticalLower(8), -- probe has crossed the lower critical threshold nonRecoverableLower(9), -- probe has crossed the lower non-recoverable threshold failed(10) -- probe is not functional','0','30d','0','','48726','','','','','200','1','0','','','0','0','0','0','0','0','0','43a2b5c2f47349cc8a9d194b5e7947d8','0','2','0'), ('36370','18','','10438','Probe [{#SENSOR_LOCALE}]: Value','dell.server.sensor.temp.value[temperatureProbeReading.{#SNMPINDEX}]','0','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the reading for a temperature probe of type other than `temperatureProbeTypeIsDiscrete`. When the value for `temperatureProbeType` is other than `temperatureProbeTypeIsDiscrete`, the value returned for this attribute is the temperature that the probe is reading in Centigrade. When the value for `temperatureProbeType` is `temperatureProbeTypeIsDiscrete`, a value is not returned for this attribute.','0','30d','0','','48726','','','','','200','1','0','','','0','0','0','0','0','0','0','c0b6aee515624a6eacd801af4100aade','0','2','0'), ('36371','18','','10438','Virtual disk [{#DISK_NAME}]: Layout type','dell.server.hw.virtualdisk.layout[virtualDiskLayout.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'463','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The virtual disk''s RAID type. Possible values: 1: Not one of the following 2: RAID-0 3: RAID-1 4: RAID-5 5: RAID-6 6: RAID-10 7: RAID-50 8: RAID-60 9: Concatenated RAID 1 10: Concatenated RAID 5','0','30d','0','','48718','','','','','200','1','0','','','0','0','0','0','0','0','0','e191fd1c7e0348c5ae09c4d83b743388','0','2','0'), ('36373','18','','10438','Virtual disk [{#DISK_NAME}]: Size','dell.server.hw.virtualdisk.size[virtualDiskSizeInMB.{#SNMPINDEX}]','0','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The size of the virtual disk in megabytes.','0','30d','0','','48718','','','','','200','1','0','','','0','0','0','0','0','0','0','b769de369b154b20995d5b9240992d55','0','2','0'), ('36374','18','','10438','Virtual disk [{#DISK_NAME}]: Operational state','dell.server.hw.virtualdisk.state[virtualDiskOperationalState.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'464','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The state of the virtual disk when there are progressive operations ongoing. Possible values: 1: There is no active operation running. 2: The virtual disk configuration has changed. The physical disks included in the virtual disk are being modified to support the new configuration. 3: A Consistency Check (CC) is being performed on the virtual disk. 4: The virtual disk is being initialized. 5: BackGround Initialization (BGI) is being performed on the virtual disk.','0','30d','0','','48718','','','','','200','1','0','','','0','0','0','0','0','0','0','465200ccf7f249069b2835feb974fb89','0','2','0'), ('36375','18','','10438','Virtual disk [{#DISK_NAME}]: Status','dell.server.hw.virtualdisk.status[virtualDiskState.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'466','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The current state of this virtual disk (which includes any member physical disks.) Possible states: 1: The current state could not be determined. 2: The virtual disk is operating normally or optimally. 3: The virtual disk has encountered a failure. Data on the disk is lost or is about to be lost. 4: The virtual disk encountered a failure with one or all of the constituent redundant physical disks. The data on the virtual disk might no longer be fault tolerant.','0','30d','0','','48718','','','','','200','1','0','','','0','0','0','0','0','0','0','22df6ae9ce6f46198b646d9a240248f2','0','2','0'), ('36379','18','','10439','Firmware version','dell.server.hw.firmware','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This attribute defines the firmware version of a remote access card.','0','30d','0','','36377','','','','','200','1','0','','','0','0','0','0','0','0','0','f6ecf0d86c9f4464a83f1b6dd5a8e070','0','2','0'), ('36380','18','','10439','Hardware model name','dell.server.hw.model','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This attribute defines the model name of the system.','29','30d','0','','36377','','','','','200','1','0','','','0','0','0','0','0','0','0','9d5f0c838c7540ce815d21cd227894b1','0','2','0'), ('36381','18','','10439','Hardware serial number','dell.server.hw.serialnumber','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This attribute defines the service tag of the system.','8','30d','0','','36377','','','','','200','1','0','','','0','0','0','0','0','0','0','6e7cbcd6ae3e40b39784142f3a10ede8','0','2','0'), ('36382','18','','10439','Overall system health status','dell.server.status','0','31d','0','0','3','','','','',NULL,'1348','','','0','','','','','0',NULL,'This attribute defines the overall rollup status of all the components in the system monitored by the remote access card. Includes system, storage, IO devices, iDRAC, CPU, memory, etc.','0','30d','0','','36377','','','','','200','1','0','','','0','0','0','0','0','0','0','e1dd57a6fb9f4b47aa715d68aaac7e63','0','2','0'), ('36433','18','','10440','Array controller discovery','array.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Array controller discovery.','0','7d','0','','48918','','','','','200','1','0','','','0','0','0','0','0','0','0','dd11819fb5e34d60bd8d9c7b658a79ac','0','2','0'), ('36434','18','','10440','Fan discovery','fan.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Fan discovery.','0','7d','0','','48924','','','','','200','1','0','','','0','0','0','0','0','0','0','9b755a619c074bd1a99737f1fbf97708','0','2','0'), ('36435','18','','10440','Physical disk discovery','physicaldisk.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Physical disk discovery.','0','7d','0','','48922','','','','','200','1','0','','','0','0','0','0','0','0','0','df58f76c952a4dbf9556490168bd39de','0','2','0'), ('36436','18','','10440','PSU discovery','psu.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'PSU discovery.','0','7d','0','','48930','','','','','200','1','0','','','0','0','0','0','0','0','0','1f4854fdfc9b4c1683a9c3b023373a83','0','2','0'), ('36437','18','','10440','Temperature discovery','temp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Temperature sensor discovery.','0','7d','0','','48931','','','','','200','1','0','','','0','0','0','0','0','0','0','43c9a9c046b943e7aa257a86540aae22','0','2','0'), ('36438','18','','10440','Virtual disk discovery','virtualdisk.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Virtual disk discovery.','0','7d','0','','48923','','','','','200','1','0','','','0','0','0','0','0','0','0','871e0b2895a141aab83c71eb0cb181a8','0','2','0'), ('36440','18','','10440','Controller [{#CNTLR_NAME}]: Model','dell.server.hw.diskarray.model[controllerName.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The controller''s name as represented in Storage Management.','0','30d','0','','48918','','','','','200','1','0','','','0','0','0','0','0','0','0','259703858717407585f403d886114af5','0','2','0'), ('36441','18','','10440','Controller [{#CNTLR_NAME}]: Status','dell.server.hw.diskarray.status[controllerComponentStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'481','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The status of the controller itself without the propagation of any contained component status. Possible values: 1: Other 2: Unknown 3: OK 4: Non-critical 5: Critical 6: Non-recoverable','0','30d','0','','48918','','','','','200','1','0','','','0','0','0','0','0','0','0','1aed396b98904eb49c2a4089841dac10','0','2','0'), ('36444','18','','10440','Physical disk [{#DISK_NAME}]: Media type','dell.server.hw.physicaldisk.media_type[physicalDiskMediaType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'483','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The media type of the physical disk. Possible Values: 1: The media type could not be determined. 2: Hard Disk Drive (HDD). 3: Solid State Drive (SSD).','0','30d','0','','48922','','','','','200','1','0','','','0','0','0','0','0','0','0','0d6e0fed749445afbe8a4e392e12abbe','0','2','0'), ('36445','18','','10440','Physical disk [{#DISK_NAME}]: Model name','dell.server.hw.physicaldisk.model[physicalDiskProductID.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The model number of the physical disk.','0','30d','0','','48922','','','','','200','1','0','','','0','0','0','0','0','0','0','6138dd1248e24a3d979947046e161a16','0','2','0'), ('36446','18','','10440','Physical disk [{#DISK_NAME}]: Serial number','dell.server.hw.physicaldisk.serialnumber[physicalDiskSerialNo.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The physical disk''s unique identification number from the manufacturer.','0','30d','0','','48922','','','','','200','1','0','','','0','0','0','0','0','0','0','838834fd85bb4abc888963e3d6633ac9','0','2','0'), ('36447','18','','10440','Physical disk [{#DISK_NAME}]: Size','dell.server.hw.physicaldisk.size[physicalDiskCapacityInMB.{#SNMPINDEX}]','0','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The size of the physical disk in megabytes.','0','30d','0','','48922','','','','','200','1','0','','','0','0','0','0','0','0','0','43e78bf47b4d424b82ee69c5114fb002','0','2','0'), ('36448','18','','10440','Physical disk [{#DISK_NAME}]: S.M.A.R.T. Status','dell.server.hw.physicaldisk.smart_status[physicalDiskSmartAlertIndication.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'480','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 Indicates whether the physical disk has received a predictive failure alert.','0','30d','0','','48922','','','','','200','1','0','','','0','0','0','0','0','0','0','d5a1505bdab14808a818c3337010cdce','0','2','0'), ('36449','18','','10440','Physical disk [{#DISK_NAME}]: Status','dell.server.hw.physicaldisk.status[physicalDiskComponentStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'482','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The status of the physical disk itself without the propagation of any contained component status. Possible values: 1: Other 2: Unknown 3: OK 4: Non-critical 5: Critical 6: Non-recoverable','0','30d','0','','48922','','','','','200','1','0','','','0','0','0','0','0','0','0','71d28a0808384915bf1f08bb8cdad3f6','0','2','0'), ('36450','18','','10440','Power supply [{#PSU_DESCR}]: State','dell.server.sensor.psu.status[powerSupplyStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'481','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the status of the power supply.','0','30d','0','','48930','','','','','200','1','0','','','0','0','0','0','0','0','0','fa618cb76eeb4f3495fe6dfa5f516104','0','2','0'), ('36451','18','','10440','Probe [{#SENSOR_LOCALE}]: Status','dell.server.sensor.temp.status[temperatureProbeStatus.{#SNMPINDEX}]','0','31d','0','0','0','','','','',NULL,'484','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the probe status of the temperature probe. Possible values: other(1), -- probe status is not one of the following: unknown(2), -- probe status is unknown (not known or monitored) ok(3), -- probe is reporting a value within the thresholds nonCriticalUpper(4), -- probe has crossed the upper noncritical threshold criticalUpper(5), -- probe has crossed the upper critical threshold nonRecoverableUpper(6), -- probe has crossed the upper non-recoverable threshold nonCriticalLower(7), -- probe has crossed the lower noncritical threshold criticalLower(8), -- probe has crossed the lower critical threshold nonRecoverableLower(9), -- probe has crossed the lower non-recoverable threshold failed(10) -- probe is not functional','0','30d','0','','48931','','','','','200','1','0','','','0','0','0','0','0','0','0','24139838c42248f3b9d7f8244daacc0e','0','2','0'), ('36452','18','','10440','Probe [{#SENSOR_LOCALE}]: Value','dell.server.sensor.temp.value[temperatureProbeReading.{#SNMPINDEX}]','0','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the reading for a temperature probe of type other than `temperatureProbeTypeIsDiscrete`. When the value for `temperatureProbeType` is other than `temperatureProbeTypeIsDiscrete`, the value returned for this attribute is the temperature that the probe is reading in Centigrade. When the value for `temperatureProbeType` is `temperatureProbeTypeIsDiscrete`, a value is not returned for this attribute.','0','30d','0','','48931','','','','','200','1','0','','','0','0','0','0','0','0','0','ef279c5ff8694f28916f6bd0d9615089','0','2','0'), ('36453','18','','10440','Virtual disk [{#DISK_NAME}]: Layout type','dell.server.hw.virtualdisk.layout[virtualDiskLayout.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'485','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The virtual disk''s RAID type. Possible values: 1: Not one of the following 2: RAID-0 3: RAID-1 4: RAID-5 5: RAID-6 6: RAID-10 7: RAID-50 8: RAID-60 9: Concatenated RAID 1 10: Concatenated RAID 5','0','30d','0','','48923','','','','','200','1','0','','','0','0','0','0','0','0','0','57e6784821914279a1fe8d11f20ad66b','0','2','0'), ('36455','18','','10440','Virtual disk [{#DISK_NAME}]: Size','dell.server.hw.virtualdisk.size[virtualDiskSizeInMB.{#SNMPINDEX}]','0','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The size of the virtual disk in megabytes.','0','30d','0','','48923','','','','','200','1','0','','','0','0','0','0','0','0','0','56a908b58aff4639b0b6a53911619746','0','2','0'), ('36456','18','','10440','Virtual disk [{#DISK_NAME}]: Operational state','dell.server.hw.virtualdisk.state[virtualDiskOperationalState.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'486','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The state of the virtual disk when there are progressive operations ongoing. Possible values: 1: There is no active operation running. 2: The virtual disk configuration has changed. The physical disks included in the virtual disk are being modified to support the new configuration. 3: A Consistency Check (CC) is being performed on the virtual disk. 4: The virtual disk is being initialized. 5: BackGround Initialization (BGI) is being performed on the virtual disk.','0','30d','0','','48923','','','','','200','1','0','','','0','0','0','0','0','0','0','cba60a18965843dba5bdadfdabfb1b83','0','2','0'), ('36457','18','','10440','Virtual disk [{#DISK_NAME}]: Status','dell.server.hw.virtualdisk.status[virtualDiskState.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'488','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The current state of this virtual disk (which includes any member physical disks.) Possible states: 1: The current state could not be determined. 2: The virtual disk is operating normally or optimally. 3: The virtual disk has encountered a failure. Data on the disk is lost or is about to be lost. 4: The virtual disk encountered a failure with one or all of the constituent redundant physical disks. The data on the virtual disk might no longer be fault tolerant.','0','30d','0','','48923','','','','','200','1','0','','','0','0','0','0','0','0','0','7daf3f6a7af6490688d9800b6542590f','0','2','0'), ('36461','18','','10441','Firmware version','dell.server.hw.firmware','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This attribute defines the firmware version of a remote access card.','0','30d','0','','36459','','','','','200','1','0','','','0','0','0','0','0','0','0','b4b70f1a69fe4dc1a572d580f22134ba','0','2','0'), ('36462','18','','10441','Hardware model name','dell.server.hw.model','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This attribute defines the model name of the system.','29','30d','0','','36459','','','','','200','1','0','','','0','0','0','0','0','0','0','6369c5e1188949c8a63ea401352dea33','0','2','0'), ('36463','18','','10441','Hardware serial number','dell.server.hw.serialnumber','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This attribute defines the service tag of the system.','8','30d','0','','36459','','','','','200','1','0','','','0','0','0','0','0','0','0','93d7f62989bf4009a366dd3db3b57622','0','2','0'), ('36464','18','','10441','Overall system health status','dell.server.status','0','31d','0','0','3','','','','',NULL,'1357','','','0','','','','','0',NULL,'This attribute defines the overall rollup status of all the components in the system monitored by the remote access card. Includes system, storage, IO devices, iDRAC, CPU, memory, etc.','0','30d','0','','36459','','','','','200','1','0','','','0','0','0','0','0','0','0','d6a5a581ee9b455990cce4532243f9bc','0','2','0'), ('36515','18','','10442','Array controller discovery','array.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Array controller discovery.','0','7d','0','','49001','','','','','200','1','0','','','0','0','0','0','0','0','0','23349a5dacb34beda5c745461fd2b2a9','0','2','0'), ('36516','18','','10442','Fan discovery','fan.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Fan discovery.','0','7d','0','','49007','','','','','200','1','0','','','0','0','0','0','0','0','0','91a882b4c4fe48ac9224fdfb811bcf71','0','2','0'), ('36517','18','','10442','Physical disk discovery','physicaldisk.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Physical disk discovery.','0','7d','0','','49005','','','','','200','1','0','','','0','0','0','0','0','0','0','d9c26b4a06bc45acb742315896b358da','0','2','0'), ('36518','18','','10442','PSU discovery','psu.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'PSU discovery.','0','7d','0','','49013','','','','','200','1','0','','','0','0','0','0','0','0','0','d95e02ed8c204fe1b4edf5a3d3ad3847','0','2','0'), ('36519','18','','10442','Temperature discovery','temp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Temperature sensor discovery.','0','7d','0','','49014','','','','','200','1','0','','','0','0','0','0','0','0','0','e9897a4e0d9d41e38e1cfd198f94d2de','0','2','0'), ('36520','18','','10442','Virtual disk discovery','virtualdisk.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Virtual disk discovery.','0','7d','0','','49006','','','','','200','1','0','','','0','0','0','0','0','0','0','9e2d2bc270704e8eb646b55a7f4e377e','0','2','0'), ('36522','18','','10442','Controller [{#CNTLR_NAME}]: Model','dell.server.hw.diskarray.model[controllerName.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The controller''s name as represented in Storage Management.','0','30d','0','','49001','','','','','200','1','0','','','0','0','0','0','0','0','0','9afa1fe4ec6343db9abdb7b1a6c57b10','0','2','0'), ('36523','18','','10442','Controller [{#CNTLR_NAME}]: Status','dell.server.hw.diskarray.status[controllerComponentStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'494','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The status of the controller itself without the propagation of any contained component status. Possible values: 1: Other 2: Unknown 3: OK 4: Non-critical 5: Critical 6: Non-recoverable','0','30d','0','','49001','','','','','200','1','0','','','0','0','0','0','0','0','0','3af6572ca94d49da8b6c59185ddeb744','0','2','0'), ('36526','18','','10442','Physical disk [{#DISK_NAME}]: Media type','dell.server.hw.physicaldisk.media_type[physicalDiskMediaType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'496','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The media type of the physical disk. Possible Values: 1: The media type could not be determined. 2: Hard Disk Drive (HDD). 3: Solid State Drive (SSD).','0','30d','0','','49005','','','','','200','1','0','','','0','0','0','0','0','0','0','be048b1285ba4a21a14e5f79727c2b91','0','2','0'), ('36527','18','','10442','Physical disk [{#DISK_NAME}]: Model name','dell.server.hw.physicaldisk.model[physicalDiskProductID.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The model number of the physical disk.','0','30d','0','','49005','','','','','200','1','0','','','0','0','0','0','0','0','0','79fa0faedeb743c1a9f9c0ea0d454935','0','2','0'), ('36528','18','','10442','Physical disk [{#DISK_NAME}]: Serial number','dell.server.hw.physicaldisk.serialnumber[physicalDiskSerialNo.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The physical disk''s unique identification number from the manufacturer.','0','30d','0','','49005','','','','','200','1','0','','','0','0','0','0','0','0','0','b2668345145f4d638dbb364afbdfb9f8','0','2','0'), ('36529','18','','10442','Physical disk [{#DISK_NAME}]: Size','dell.server.hw.physicaldisk.size[physicalDiskCapacityInMB.{#SNMPINDEX}]','0','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The size of the physical disk in megabytes.','0','30d','0','','49005','','','','','200','1','0','','','0','0','0','0','0','0','0','6e50bc2fa3ee4ceeb8fe044a7d83f836','0','2','0'), ('36530','18','','10442','Physical disk [{#DISK_NAME}]: S.M.A.R.T. Status','dell.server.hw.physicaldisk.smart_status[physicalDiskSmartAlertIndication.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'493','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 Indicates whether the physical disk has received a predictive failure alert.','0','30d','0','','49005','','','','','200','1','0','','','0','0','0','0','0','0','0','3a2cd6a4c4ea4a3ab4ccbd555ee17f5b','0','2','0'), ('36531','18','','10442','Physical disk [{#DISK_NAME}]: Status','dell.server.hw.physicaldisk.status[physicalDiskComponentStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'495','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The status of the physical disk itself without the propagation of any contained component status. Possible values: 1: Other 2: Unknown 3: OK 4: Non-critical 5: Critical 6: Non-recoverable','0','30d','0','','49005','','','','','200','1','0','','','0','0','0','0','0','0','0','fbb5d836a0c344e0929bb406cf9721ee','0','2','0'), ('36532','18','','10442','Power supply [{#PSU_DESCR}]: State','dell.server.sensor.psu.status[powerSupplyStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'494','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the status of the power supply.','0','30d','0','','49013','','','','','200','1','0','','','0','0','0','0','0','0','0','fe99911125c54800be75e332c150356b','0','2','0'), ('36533','18','','10442','Probe [{#SENSOR_LOCALE}]: Status','dell.server.sensor.temp.status[temperatureProbeStatus.{#SNMPINDEX}]','0','31d','0','0','0','','','','',NULL,'497','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the probe status of the temperature probe. Possible values: other(1), -- probe status is not one of the following: unknown(2), -- probe status is unknown (not known or monitored) ok(3), -- probe is reporting a value within the thresholds nonCriticalUpper(4), -- probe has crossed the upper noncritical threshold criticalUpper(5), -- probe has crossed the upper critical threshold nonRecoverableUpper(6), -- probe has crossed the upper non-recoverable threshold nonCriticalLower(7), -- probe has crossed the lower noncritical threshold criticalLower(8), -- probe has crossed the lower critical threshold nonRecoverableLower(9), -- probe has crossed the lower non-recoverable threshold failed(10) -- probe is not functional','0','30d','0','','49014','','','','','200','1','0','','','0','0','0','0','0','0','0','c76c966651f940a5ac664c75c88ca689','0','2','0'), ('36534','18','','10442','Probe [{#SENSOR_LOCALE}]: Value','dell.server.sensor.temp.value[temperatureProbeReading.{#SNMPINDEX}]','0','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the reading for a temperature probe of type other than `temperatureProbeTypeIsDiscrete`. When the value for `temperatureProbeType` is other than `temperatureProbeTypeIsDiscrete`, the value returned for this attribute is the temperature that the probe is reading in Centigrade. When the value for `temperatureProbeType` is `temperatureProbeTypeIsDiscrete`, a value is not returned for this attribute.','0','30d','0','','49014','','','','','200','1','0','','','0','0','0','0','0','0','0','e498e0b6adca49048b27fcde07880661','0','2','0'), ('36535','18','','10442','Virtual disk [{#DISK_NAME}]: Layout type','dell.server.hw.virtualdisk.layout[virtualDiskLayout.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'498','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The virtual disk''s RAID type. Possible values: 1: Not one of the following 2: RAID-0 3: RAID-1 4: RAID-5 5: RAID-6 6: RAID-10 7: RAID-50 8: RAID-60 9: Concatenated RAID 1 10: Concatenated RAID 5','0','30d','0','','49006','','','','','200','1','0','','','0','0','0','0','0','0','0','27bb804aa7df49ddbc410b268db63218','0','2','0'), ('36537','18','','10442','Virtual disk [{#DISK_NAME}]: Size','dell.server.hw.virtualdisk.size[virtualDiskSizeInMB.{#SNMPINDEX}]','0','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The size of the virtual disk in megabytes.','0','30d','0','','49006','','','','','200','1','0','','','0','0','0','0','0','0','0','e4868bd552d34f79823d3c7518babad8','0','2','0'), ('36538','18','','10442','Virtual disk [{#DISK_NAME}]: Operational state','dell.server.hw.virtualdisk.state[virtualDiskOperationalState.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'499','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The state of the virtual disk when there are progressive operations ongoing. Possible values: 1: There is no active operation running. 2: The virtual disk configuration has changed. The physical disks included in the virtual disk are being modified to support the new configuration. 3: A Consistency Check (CC) is being performed on the virtual disk. 4: The virtual disk is being initialized. 5: BackGround Initialization (BGI) is being performed on the virtual disk.','0','30d','0','','49006','','','','','200','1','0','','','0','0','0','0','0','0','0','cf12e14b376940189873430fdfa64c49','0','2','0'), ('36539','18','','10442','Virtual disk [{#DISK_NAME}]: Status','dell.server.hw.virtualdisk.status[virtualDiskState.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'501','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The current state of this virtual disk (which includes any member physical disks.) Possible states: 1: The current state could not be determined. 2: The virtual disk is operating normally or optimally. 3: The virtual disk has encountered a failure. Data on the disk is lost or is about to be lost. 4: The virtual disk encountered a failure with one or all of the constituent redundant physical disks. The data on the virtual disk might no longer be fault tolerant.','0','30d','0','','49006','','','','','200','1','0','','','0','0','0','0','0','0','0','344be656d8d84bbca28853d240f5953f','0','2','0'), ('36769','18','','10336','SIP trunks active channels','asterisk.sip.active_channels','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of SIP trunks active channels.','0','30d','0','','31784','','','','','200','1','0','','','0','0','0','0','0','0','0','2df0dca89a744e86b4f5a2cec673d427','0','2','0'), ('36770','18','','10336','PJSIP trunks active channels','asterisk.pjsip.active_channels','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of PJSIP trunks active channels.','0','30d','0','','31784','','','','','200','1','0','','','0','0','0','0','0','0','0','5ae6135a49764db7b496f5d2378ddd77','0','2','0'), ('36771','18','','10336','IAX trunks active channels','asterisk.iax.active_channels','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of IAX trunks active channels.','0','30d','0','','31784','','','','','200','1','0','','','0','0','0','0','0','0','0','d9900a1f096a4b89a2aa4af89f30b2cc','0','2','0'), ('36776','18','','10447','Builds duration','travis.builds.duration','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Sum of all builds durations in all repos.','0','30d','0','','36772','','','','','200','1','0','','','0','0','0','0','0','0','0','dbdaf09ff13742b988bd0356923f625f','0','2','0'), ('36777','18','','10447','Builds','travis.builds.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total count of builds in all repos.','0','30d','0','','36772','','','','','200','1','0','','','0','0','0','0','0','0','0','e0d31827266f4d1599cb687d15d42747','0','2','0'), ('36778','18','','10447','Jobs active','travis.jobs.active','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Active jobs in all repos.','0','30d','0','','36774','','','','','200','1','0','','','0','0','0','0','0','0','0','81504a37965b402bad9b71507c4a8926','0','2','0'), ('36779','18','','10447','Jobs in queue','travis.jobs.queue','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Jobs in queue in all repos.','0','30d','0','','36774','','','','','200','1','0','','','0','0','0','0','0','0','0','a1045b05877941bfba97e086ef33234c','0','2','0'), ('36780','18','','10447','Jobs passed','travis.jobs.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total count of passed jobs in all repos.','0','30d','0','','36774','','','','','200','1','0','','','0','0','0','0','0','0','0','421a1a1a886c46188047914d5149c075','0','2','0'), ('36781','18','','10447','Repos metrics discovery','travis.repos.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Metrics for Repos statistics.','0','7d','0','','36775','','','','','200','1','0','','','0','0','0','0','0','0','0','0bd67f5bd26f4dbbbda7e2d36efac649','0','2','0'), ('36785','18','','10447','Repo [{#SLUG}]: Builds failed','travis.repo.builds.failed[{#SLUG}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of all failed builds in {#SLUG} repo.','0','30d','0','','36783','','','','','200','1','0','','','0','0','0','0','0','0','0','3ff94b65151e4378b3ef46d049aff1f7','0','2','0'), ('36786','18','','10447','Repo [{#SLUG}]: Builds passed','travis.repo.builds.passed[{#SLUG}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of all passed builds in {#SLUG} repo.','0','30d','0','','36783','','','','','200','1','0','','','0','0','0','0','0','0','0','1b2143c3e6934e0fae5589b4bb0063b5','0','2','0'), ('36787','18','','10447','Repo [{#SLUG}]: Builds total','travis.repo.builds.total[{#SLUG}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of total builds in {#SLUG} repo.','0','30d','0','','36783','','','','','200','1','0','','','0','0','0','0','0','0','0','d67070c3c7b44c5b8849a315f5f97c8b','0','2','0'), ('36788','18','','10447','Repo [{#SLUG}]: Cache files','travis.repo.caches.files[{#SLUG}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of cache files in {#SLUG} repo.','0','30d','0','','36784','','','','','200','1','0','','','0','0','0','0','0','0','0','5fa0c9393f224efa8d6b42c3a0f12319','0','2','0'), ('36789','18','','10447','Repo [{#SLUG}]: Cache size','travis.repo.caches.size[{#SLUG}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total size of cache files in {#SLUG} repo.','0','30d','0','','36784','','','','','200','1','0','','','0','0','0','0','0','0','0','6fe5a61db38e4a2da25314a18cf10a8e','0','2','0'), ('36790','18','','10447','Repo [{#SLUG}]: Description','travis.repo.description[{#SLUG}]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Description of Travis repo (git project description).','0','30d','0','','36775','','','','','200','1','0','','','0','0','0','0','0','0','0','2705ff3b0b51434ba0469362aa91c67d','0','2','0'), ('36791','18','','10447','Repo [{#SLUG}]: Last build duration','travis.repo.last_build.duration[{#SLUG}]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Last build duration in {#SLUG} repo.','0','30d','0','','36783','','','','','200','1','0','','','0','0','0','0','0','0','0','7391c532acf649259be018cbf499b565','0','2','0'), ('36792','18','','10447','Repo [{#SLUG}]: Last build id','travis.repo.last_build.id[{#SLUG}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Last build id in {#SLUG} repo.','0','30d','0','','36783','','','','','200','1','0','','','0','0','0','0','0','0','0','fbcb7b4001b949889fc85f2499684aae','0','2','0'), ('36793','18','','10447','Repo [{#SLUG}]: Last build number','travis.repo.last_build.number[{#SLUG}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Last build number in {#SLUG} repo.','0','30d','0','','36783','','','','','200','1','0','','','0','0','0','0','0','0','0','d9dbe9ffeafa46569fce1ca5ba4897cf','0','2','0'), ('36794','18','','10447','Repo [{#SLUG}]: Last build state','travis.repo.last_build.state[{#SLUG}]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Last build state in {#SLUG} repo.','0','30d','0','','36783','','','','','200','1','0','','','0','0','0','0','0','0','0','a081582913ca40ee93a6e5fb326c5c64','0','2','0'), ('36797','18','','10448','Users, total','influxdb.users.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of total users on the server.','0','30d','0','','36795','','','','','200','1','0','','','0','0','0','0','0','0','0','86357d43721f4e6aa6b1dd7e63dd2f47','0','2','0'), ('36798','18','','10448','Uptime','influxdb.uptime','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'InfluxDB process uptime in seconds.','0','30d','0','','36795','','','','','200','1','0','','','0','0','0','0','0','0','0','8699e951b7944659993422334a4cddc0','0','2','0'), ('36799','18','','10448','Tokens, total','influxdb.tokens.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of total tokens on the server.','0','30d','0','','36795','','','','','200','1','0','','','0','0','0','0','0','0','0','079c1eee7d93484b9126598b23921e9d','0','2','0'), ('36800','18','','10448','Telegraf plugins, total','influxdb.telegraf_plugins.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of individual telegraf plugins configured.','0','30d','0','','36795','','','','','200','1','0','','','0','0','0','0','0','0','0','23bad615af024a2e9f06d4541cf6f910','0','2','0'), ('36801','18','','10448','Telegrafs, total','influxdb.telegrafs.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of total telegraf configurations on the server.','0','30d','0','','36795','','','','','200','1','0','','','0','0','0','0','0','0','0','94d98714ecce4847be0bdb7b8802f1ec','0','2','0'), ('36802','18','','10448','Workers busy, pct','influxdb.task_executor_workers_busy.pct','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percent of total available workers that are currently busy.','0','30d','0','','36795','','','','','200','1','0','','','0','0','0','0','0','0','0','25595754557d49fca7c671df3f6a898c','0','2','0'), ('36803','18','','10448','Workers currently running','influxdb.task_executor_runs_active.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of workers currently running tasks.','0','30d','0','','36795','','','','','200','1','0','','','0','0','0','0','0','0','0','c3f147a2afb3438d8bacbb41fac6b1d0','0','2','0'), ('36804','18','','10448','Task runs successful, rate','influxdb.task_executor_complete.successful.rate','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of runs successful completed across all tasks.','0','30d','0','','36795','','','','','200','1','0','','','0','0','0','0','0','0','0','a0183b6d934c4612b358c027c75eda6e','0','2','0'), ('36805','18','','10448','Task runs failed, rate','influxdb.task_executor_complete.failed.rate','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of failure runs across all tasks.','0','30d','0','','36795','','','','','200','1','0','','','0','0','0','0','0','0','0','f77894d5ede9481381a268670bc88766','0','2','0'), ('36806','18','','10448','Scrapers, total','influxdb.scrapers.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of total scrapers on the server.','0','30d','0','','36795','','','','','200','1','0','','','0','0','0','0','0','0','0','e05aa2c424c140afa3794878ed2c3baa','0','2','0'), ('36807','18','','10448','Organizations, total','influxdb.organizations.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of total organizations on the server.','0','30d','0','','36795','','','','','200','1','0','','','0','0','0','0','0','0','0','915f00d9dc9847bb8bc8007d034bb80d','0','2','0'), ('36808','18','','10448','Dashboards, total','influxdb.dashboards.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of total dashboards on the server.','0','30d','0','','36795','','','','','200','1','0','','','0','0','0','0','0','0','0','1c5931f514804a95ac4bfba3ec4a7d82','0','2','0'), ('36809','18','','10448','Buckets, total','influxdb.buckets.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of total buckets on the server.','0','30d','0','','36795','','','','','200','1','0','','','0','0','0','0','0','0','0','5d5e26ee272a4af6ac979e69a83de74d','0','2','0'), ('36810','18','','10448','Boltdb writes, rate','influxdb.boltdb_writes.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of boltdb writes per second.','0','30d','0','','36795','','','','','200','1','0','','','0','0','0','0','0','0','0','7bd505a8abb944c2bed17f8e4e5a8c84','0','2','0'), ('36811','18','','10448','Boltdb reads, rate','influxdb.boltdb_reads.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of boltdb reads per second.','0','30d','0','','36795','','','','','200','1','0','','','0','0','0','0','0','0','0','56b1a9f2eb454a9b96a0e0a73d5439cf','0','2','0'), ('36812','18','','10448','Version','influxdb.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of the InfluxDB instance.','0','30d','0','','36795','','','','','200','1','0','','','0','0','0','0','0','0','0','d31e0d0823af4f6c999cae3d49b3815b','0','2','0'), ('36814','18','','10448','[{#ORG_NAME}] Query response bytes, failed','influxdb.org.http_query_response_bytes.failed.rate["{#ORG_NAME}"]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of bytes returned with status not 200 per second.','0','30d','0','','36795','','','','','200','1','0','','','0','0','0','0','0','0','0','c84ae278bd7c4387873bc8bbf6d8ba8f','0','2','0'), ('36815','18','','10448','[{#ORG_NAME}] Query response bytes, success','influxdb.org.http_query_response_bytes.success.rate["{#ORG_NAME}"]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of bytes returned with status 200 per second.','0','30d','0','','36795','','','','','200','1','0','','','0','0','0','0','0','0','0','fb13e133cf054e8783ba6bf5deaf1686','0','2','0'), ('36816','18','','10448','[{#ORG_NAME}] Query requests, failed','influxdb.org.query_request.failed.rate["{#ORG_NAME}"]','0','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of query requests with status not 200 per second.','0','30d','0','','36795','','','','','200','1','0','','','0','0','0','0','0','0','0','9688861c4268455193772389a957264f','0','2','0'), ('36817','18','','10448','[{#ORG_NAME}] Query requests, success','influxdb.org.query_request.success.rate["{#ORG_NAME}"]','0','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of query requests with status 200 per second.','0','30d','0','','36795','','','','','200','1','0','','','0','0','0','0','0','0','0','da53d3185ba744c38fc264993c72b1b9','0','2','0'), ('36818','18','','10448','[{#ORG_NAME}] Query requests bytes, failed','influxdb.org.query_request_bytes.failed.rate["{#ORG_NAME}"]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of bytes received with status not 200 per second.','0','30d','0','','36795','','','','','200','1','0','','','0','0','0','0','0','0','0','4f8dbb16f7a842678e4fb4343c88b560','0','2','0'), ('36819','18','','10448','[{#ORG_NAME}] Query requests bytes, success','influxdb.org.query_request_bytes.success.rate["{#ORG_NAME}"]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of bytes received with status 200 per second.','0','30d','0','','36795','','','','','200','1','0','','','0','0','0','0','0','0','0','6bbeb22e5c9b46a2bf480dcf41b4eb0e','0','2','0'), ('36854','18','','10449','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45149','','','','','200','1','0','','','0','0','0','0','0','0','0','b5d7f793a40449af9342a0751d606c04','0','2','0'), ('36857','18','','10449','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45152','','','','','200','1','0','','','0','0','0','0','0','0','0','d7d28fbb900742f58ba741a7b2810656','0','2','0'), ('36858','18','','10449','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45152','','','','','200','1','0','','','0','0','0','0','0','0','0','2f9915f91c984f56af4f9505c52aea9a','0','2','0'), ('36859','18','','10449','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45152','','','','','200','1','0','','','0','0','0','0','0','0','0','8bb2e43eaeae433381360f436151ca96','0','2','0'), ('36860','18','','10449','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45148','','','','','200','1','0','','','0','0','0','0','0','0','0','d8ff7af06d6d4fe39d7ab93eb803978a','0','2','0'), ('36861','18','','10449','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45149','','','','','200','1','0','','','0','0','0','0','0','0','0','39223b273e314bf88eccfa23d2bdf520','0','2','0'), ('36864','18','','10449','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45152','','','','','200','1','0','','','0','0','0','0','0','0','0','89139aaa90244af89be5b13e31e568db','0','2','0'), ('36865','18','','10449','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45152','','','','','200','1','0','','','0','0','0','0','0','0','0','5f60c2de483e4aae8fbedc50798f3bb9','0','2','0'), ('36866','18','','10449','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45152','','','','','200','1','0','','','0','0','0','0','0','0','0','df09bd33847c4cf9931b68c49fa0cc2e','0','2','0'), ('36867','18','','10449','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45152','','','','','200','1','0','','','0','0','0','0','0','0','0','10459f3a756e48f991bbddf9e466f5bb','0','2','0'), ('36868','18','','10449','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45152','','','','','200','1','0','','','0','0','0','0','0','0','0','0bfd56d26ed04702904b7846f9d27d89','0','2','0'), ('36869','18','','10449','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45152','','','','','200','1','0','','','0','0','0','0','0','0','0','e9b16dbe554948ffac6a124c2545e8ed','0','2','0'), ('36870','18','','10449','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45152','','','','','200','1','0','','','0','0','0','0','0','0','0','ec6db43c1009423db17a9db20c193801','0','2','0'), ('36871','18','','10449','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45152','','','','','200','1','0','','','0','0','0','0','0','0','0','f6b5c40031a9451d93e0c1a53c60d90e','0','2','0'), ('36872','18','','10449','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45152','','','','','200','1','0','','','0','0','0','0','0','0','0','4fe579127b3249b08c210c8b3f767f7a','0','2','0'), ('36873','18','','10449','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45152','','','','','200','1','0','','','0','0','0','0','0','0','0','2ae0d22024c74c80ba6be1549fa4f17e','0','2','0'), ('36874','18','','10449','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45152','','','','','200','1','0','','','0','0','0','0','0','0','0','9e85e8cd51f0489d8aaefdc31ccbffd4','0','2','0'), ('36875','18','','10449','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45152','','','','','200','1','0','','','0','0','0','0','0','0','0','2844bdd0d5094a38a88f756e1fed71ad','0','2','0'), ('36876','18','','10449','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45152','','','','','200','1','0','','','0','0','0','0','0','0','0','16791055befb41f3b12dabf4aa0c6540','0','2','0'), ('36878','18','','10449','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45148','','','','','200','1','0','','','0','0','0','0','0','0','0','565b745c23864f1797a2cb3a11eedf7f','0','2','0'), ('36879','18','','10449','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45148','','','','','200','1','0','','','0','0','0','0','0','0','0','8cfa6b214639494fa8db1cb673f45e1d','0','2','0'), ('36908','18','','10450','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45155','','','','','200','1','0','','','0','0','0','0','0','0','0','3d3038d06ddb4fc282940f4a76e4ec85','0','2','0'), ('36911','18','','10450','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45158','','','','','200','1','0','','','0','0','0','0','0','0','0','873a002d903f440b8861dfae848d9bc9','0','2','0'), ('36912','18','','10450','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45158','','','','','200','1','0','','','0','0','0','0','0','0','0','805d0b67d5e14d1abf2e1d3426c98691','0','2','0'), ('36913','18','','10450','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45158','','','','','200','1','0','','','0','0','0','0','0','0','0','43f128e426044f5b82419ad75ca6e17c','0','2','0'), ('36914','18','','10450','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45154','','','','','200','1','0','','','0','0','0','0','0','0','0','11edf7c91daf4377ae12c38f16066d3a','0','2','0'), ('36915','18','','10450','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45155','','','','','200','1','0','','','0','0','0','0','0','0','0','58dbd69b7c9446169824fd5ef009cb89','0','2','0'), ('36918','18','','10450','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45158','','','','','200','1','0','','','0','0','0','0','0','0','0','9cd95e5678be442b8e7377f513c97888','0','2','0'), ('36919','18','','10450','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45158','','','','','200','1','0','','','0','0','0','0','0','0','0','bb6f2eb38a2c4aee968332eefcca5f7a','0','2','0'), ('36920','18','','10450','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45158','','','','','200','1','0','','','0','0','0','0','0','0','0','59124b030d4f498094eb01952c42b1da','0','2','0'), ('36921','18','','10450','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45158','','','','','200','1','0','','','0','0','0','0','0','0','0','79f14b61c0044e7a92745288c7cf0159','0','2','0'), ('36922','18','','10450','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45158','','','','','200','1','0','','','0','0','0','0','0','0','0','ab6c29dc1dc6416a95480dd0114283e4','0','2','0'), ('36923','18','','10450','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45158','','','','','200','1','0','','','0','0','0','0','0','0','0','06452635ff154445b04377dd42ea3f0d','0','2','0'), ('36924','18','','10450','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45158','','','','','200','1','0','','','0','0','0','0','0','0','0','ee7e17722ffa4a71ba337b9cb2b8d05e','0','2','0'), ('36925','18','','10450','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45158','','','','','200','1','0','','','0','0','0','0','0','0','0','06295e345bb948d196a22baa485ecedd','0','2','0'), ('36926','18','','10450','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45158','','','','','200','1','0','','','0','0','0','0','0','0','0','7d9df48a9bd74cbc8be35a78dded0701','0','2','0'), ('36927','18','','10450','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45158','','','','','200','1','0','','','0','0','0','0','0','0','0','4f7a3606547d46ad86820784f2c59d64','0','2','0'), ('36928','18','','10450','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45158','','','','','200','1','0','','','0','0','0','0','0','0','0','a3d138d7663b43ddbf11b71377f33e19','0','2','0'), ('36929','18','','10450','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45158','','','','','200','1','0','','','0','0','0','0','0','0','0','0939fc0eddef42698e6bb505159c5a4e','0','2','0'), ('36930','18','','10450','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45158','','','','','200','1','0','','','0','0','0','0','0','0','0','6aa454cc8cac42b79045c71393b88130','0','2','0'), ('36932','18','','10450','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45154','','','','','200','1','0','','','0','0','0','0','0','0','0','9fc01e7f1027439cbf1d0e35e0c7d353','0','2','0'), ('36933','18','','10450','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45154','','','','','200','1','0','','','0','0','0','0','0','0','0','58593e0ecf5c42f79340a7da5f1c1e86','0','2','0'), ('36962','18','','10451','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45161','','','','','200','1','0','','','0','0','0','0','0','0','0','e6521ab9c51647ccaac14af8d146eb7f','0','2','0'), ('36965','18','','10451','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45164','','','','','200','1','0','','','0','0','0','0','0','0','0','182d09c6f9764ffc9481f0930039dd95','0','2','0'), ('36966','18','','10451','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45164','','','','','200','1','0','','','0','0','0','0','0','0','0','a244eb79522f47a6983a9a346fbc947a','0','2','0'), ('36967','18','','10451','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45164','','','','','200','1','0','','','0','0','0','0','0','0','0','ed8c46d319f742cb90cf948822cff340','0','2','0'), ('36968','18','','10451','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45160','','','','','200','1','0','','','0','0','0','0','0','0','0','2dd57c81d5e645a2a321d0519522310b','0','2','0'), ('36969','18','','10451','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45161','','','','','200','1','0','','','0','0','0','0','0','0','0','97a47249871c4977bb68762cbc0c7b7d','0','2','0'), ('36972','18','','10451','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45164','','','','','200','1','0','','','0','0','0','0','0','0','0','a330dd93ef5b478480de6ab2be32e887','0','2','0'), ('36973','18','','10451','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45164','','','','','200','1','0','','','0','0','0','0','0','0','0','f99cdf9843ab4b67a2160e29ed5ab333','0','2','0'), ('36974','18','','10451','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45164','','','','','200','1','0','','','0','0','0','0','0','0','0','055aeb31cf1e4964b5e55e5caf090acd','0','2','0'), ('36975','18','','10451','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45164','','','','','200','1','0','','','0','0','0','0','0','0','0','ac8523f8566a43a5afd01dd074f24a6d','0','2','0'), ('36976','18','','10451','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45164','','','','','200','1','0','','','0','0','0','0','0','0','0','7e359ae7be7f4c56bf8495c9fca6f4d2','0','2','0'), ('36977','18','','10451','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45164','','','','','200','1','0','','','0','0','0','0','0','0','0','9b04a4945910475c945ac92a1558ee41','0','2','0'), ('36978','18','','10451','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45164','','','','','200','1','0','','','0','0','0','0','0','0','0','1c06ee28e2b242f1b6449340b9250c4c','0','2','0'), ('36979','18','','10451','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45164','','','','','200','1','0','','','0','0','0','0','0','0','0','67d9b1ca3e80411691981c86dc571373','0','2','0'), ('36980','18','','10451','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45164','','','','','200','1','0','','','0','0','0','0','0','0','0','ce995698b4ec4af18a3687eb9212c6ee','0','2','0'), ('36981','18','','10451','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45164','','','','','200','1','0','','','0','0','0','0','0','0','0','cc2e1021e5b34fd59ad7c4f83f765d44','0','2','0'), ('36982','18','','10451','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45164','','','','','200','1','0','','','0','0','0','0','0','0','0','8980ce3faa3f4c45963255029ced713d','0','2','0'), ('36983','18','','10451','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45164','','','','','200','1','0','','','0','0','0','0','0','0','0','49f612f570814c809330e4d940a85ddf','0','2','0'), ('36984','18','','10451','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45164','','','','','200','1','0','','','0','0','0','0','0','0','0','64617cafa0e74284ba3662e6ee4cee0b','0','2','0'), ('36986','18','','10451','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45160','','','','','200','1','0','','','0','0','0','0','0','0','0','4d9c4d471c7e4919b9a8d801e514a7db','0','2','0'), ('36987','18','','10451','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45160','','','','','200','1','0','','','0','0','0','0','0','0','0','1471eee2cfc8486da6b20358954a512e','0','2','0'), ('37016','18','','10452','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45167','','','','','200','1','0','','','0','0','0','0','0','0','0','9edfde07815b4a03895c24f7703fbe9e','0','2','0'), ('37019','18','','10452','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45170','','','','','200','1','0','','','0','0','0','0','0','0','0','e4dddf65df514c03993ef70372bbdb78','0','2','0'), ('37020','18','','10452','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45170','','','','','200','1','0','','','0','0','0','0','0','0','0','adb864eee4b744328d91e8f9339bc79c','0','2','0'), ('37021','18','','10452','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45170','','','','','200','1','0','','','0','0','0','0','0','0','0','7a5ef1da8c6d4d569a6d01bb76d4700e','0','2','0'), ('37022','18','','10452','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45166','','','','','200','1','0','','','0','0','0','0','0','0','0','ed6a12f9caca4aa2875e2dfd28ae73e2','0','2','0'), ('37023','18','','10452','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45167','','','','','200','1','0','','','0','0','0','0','0','0','0','8fa7a6a3038e4dbfaa9d82a83e8e990e','0','2','0'), ('37026','18','','10452','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45170','','','','','200','1','0','','','0','0','0','0','0','0','0','13ed66b5078249179ebbb076461e4358','0','2','0'), ('37027','18','','10452','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45170','','','','','200','1','0','','','0','0','0','0','0','0','0','8d84ea1e90a0441ca84c4d0922a6489b','0','2','0'), ('37028','18','','10452','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45170','','','','','200','1','0','','','0','0','0','0','0','0','0','a5e73872ef424a6082f408e3217502eb','0','2','0'), ('37029','18','','10452','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45170','','','','','200','1','0','','','0','0','0','0','0','0','0','eaaceff4c42949ff86c7557ba5f994dc','0','2','0'), ('37030','18','','10452','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45170','','','','','200','1','0','','','0','0','0','0','0','0','0','a715384f98d44f609be86fccb780a6e4','0','2','0'), ('37031','18','','10452','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45170','','','','','200','1','0','','','0','0','0','0','0','0','0','b3ae9d00db964983a878382f52b3a171','0','2','0'), ('37032','18','','10452','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45170','','','','','200','1','0','','','0','0','0','0','0','0','0','85e91fc9812543228e069b97f1fcce30','0','2','0'), ('37033','18','','10452','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45170','','','','','200','1','0','','','0','0','0','0','0','0','0','78d7ad1a885e46a3a94a7d9014addf60','0','2','0'), ('37034','18','','10452','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45170','','','','','200','1','0','','','0','0','0','0','0','0','0','7cc3ec557e144b4e83038c29a9d3bddd','0','2','0'), ('37035','18','','10452','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45170','','','','','200','1','0','','','0','0','0','0','0','0','0','76a32e833625423eb441305aacbfe13b','0','2','0'), ('37036','18','','10452','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45170','','','','','200','1','0','','','0','0','0','0','0','0','0','5803d60c0a96463f9768627847b306aa','0','2','0'), ('37037','18','','10452','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45170','','','','','200','1','0','','','0','0','0','0','0','0','0','4697cee2b20944d49e31c3727c67db66','0','2','0'), ('37038','18','','10452','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45170','','','','','200','1','0','','','0','0','0','0','0','0','0','a504100b84894c01890a70c6fbbecb97','0','2','0'), ('37040','18','','10452','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45166','','','','','200','1','0','','','0','0','0','0','0','0','0','99dbbdae777d4910939c2993a70f6892','0','2','0'), ('37041','18','','10452','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45166','','','','','200','1','0','','','0','0','0','0','0','0','0','7ce857423f0b4eb188bf07434449e600','0','2','0'), ('37070','18','','10453','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45173','','','','','200','1','0','','','0','0','0','0','0','0','0','574e87197ce64d3ba47b7f99ee1bf45d','0','2','0'), ('37073','18','','10453','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45176','','','','','200','1','0','','','0','0','0','0','0','0','0','6c3a1517e3ab441db0bb102f9efe3aed','0','2','0'), ('37074','18','','10453','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45176','','','','','200','1','0','','','0','0','0','0','0','0','0','274527cab9a440f4b7ec6b65998338ec','0','2','0'), ('37075','18','','10453','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45176','','','','','200','1','0','','','0','0','0','0','0','0','0','3d3ffa19c93e4d6aaaf63178cf2c3728','0','2','0'), ('37076','18','','10453','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45172','','','','','200','1','0','','','0','0','0','0','0','0','0','8c4d698df0b044018e22d6ae97e3ffeb','0','2','0'), ('37077','18','','10453','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45173','','','','','200','1','0','','','0','0','0','0','0','0','0','363e697a888342a2974be7d51728b144','0','2','0'), ('37080','18','','10453','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45176','','','','','200','1','0','','','0','0','0','0','0','0','0','9aec7b05f5be4b03b5627b38eac0a8e1','0','2','0'), ('37081','18','','10453','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45176','','','','','200','1','0','','','0','0','0','0','0','0','0','f752e73907bb485391661bde8301c894','0','2','0'), ('37082','18','','10453','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45176','','','','','200','1','0','','','0','0','0','0','0','0','0','7a0c2eafe0e0464788dea620cdb16cb0','0','2','0'), ('37083','18','','10453','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45176','','','','','200','1','0','','','0','0','0','0','0','0','0','9b02e4b2f89349ec9b364f023d0f999a','0','2','0'), ('37084','18','','10453','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45176','','','','','200','1','0','','','0','0','0','0','0','0','0','53b3902bab07498f9db3fb888a023392','0','2','0'), ('37085','18','','10453','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45176','','','','','200','1','0','','','0','0','0','0','0','0','0','045edf92e0084089961529eb7d5b1baf','0','2','0'), ('37086','18','','10453','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45176','','','','','200','1','0','','','0','0','0','0','0','0','0','a351cfdfce4a474fa08282338accc213','0','2','0'), ('37087','18','','10453','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45176','','','','','200','1','0','','','0','0','0','0','0','0','0','d0447954c1214428841537404b2ca7fd','0','2','0'), ('37088','18','','10453','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45176','','','','','200','1','0','','','0','0','0','0','0','0','0','0fe201eb562b4080bdef34e6fe43ae30','0','2','0'), ('37089','18','','10453','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45176','','','','','200','1','0','','','0','0','0','0','0','0','0','51f998a0c59846178819f51a3ee1b72b','0','2','0'), ('37090','18','','10453','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45176','','','','','200','1','0','','','0','0','0','0','0','0','0','9ed7d527871e428282ac08c5c4b94ad4','0','2','0'), ('37091','18','','10453','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45176','','','','','200','1','0','','','0','0','0','0','0','0','0','7cdfe024544f494f9cc241ace013be76','0','2','0'), ('37092','18','','10453','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45176','','','','','200','1','0','','','0','0','0','0','0','0','0','f7655d3d40d742f5abec39dfc753dbc2','0','2','0'), ('37094','18','','10453','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45172','','','','','200','1','0','','','0','0','0','0','0','0','0','31b78c198bf54971b7d523341538ac55','0','2','0'), ('37095','18','','10453','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45172','','','','','200','1','0','','','0','0','0','0','0','0','0','0774ba4162ca42e68b7ad37e76e9ef7b','0','2','0'), ('37124','18','','10454','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45179','','','','','200','1','0','','','0','0','0','0','0','0','0','d00d9cce234d4d75ac0035da246aad00','0','2','0'), ('37127','18','','10454','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45182','','','','','200','1','0','','','0','0','0','0','0','0','0','1022bfe65683409f92d390a005250d35','0','2','0'), ('37128','18','','10454','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45182','','','','','200','1','0','','','0','0','0','0','0','0','0','7b29429668f84059956e617b64d58373','0','2','0'), ('37129','18','','10454','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45182','','','','','200','1','0','','','0','0','0','0','0','0','0','04c6bcdd1e634c129707b0b39c86cc8c','0','2','0'), ('37130','18','','10454','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45178','','','','','200','1','0','','','0','0','0','0','0','0','0','da85811fdfe24a82b4d7a13a243893ba','0','2','0'), ('37131','18','','10454','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45179','','','','','200','1','0','','','0','0','0','0','0','0','0','b1099ed1cd3742ffaaa1a5aae3cd27aa','0','2','0'), ('37134','18','','10454','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45182','','','','','200','1','0','','','0','0','0','0','0','0','0','1c4f1f6d7a374db0a15411a7ba8b300c','0','2','0'), ('37135','18','','10454','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45182','','','','','200','1','0','','','0','0','0','0','0','0','0','060e1a17f8244cf48f55605e9977bf36','0','2','0'), ('37136','18','','10454','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45182','','','','','200','1','0','','','0','0','0','0','0','0','0','66389bb0e1a846f8a26567d0d9e182fe','0','2','0'), ('37137','18','','10454','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45182','','','','','200','1','0','','','0','0','0','0','0','0','0','b6f955df3ab04d85baf81d60ad41eb4c','0','2','0'), ('37138','18','','10454','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45182','','','','','200','1','0','','','0','0','0','0','0','0','0','77422704136d4a80908a28fe79c7242f','0','2','0'), ('37139','18','','10454','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45182','','','','','200','1','0','','','0','0','0','0','0','0','0','a026d85a54c04205833a36b39d5f0b73','0','2','0'), ('37140','18','','10454','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45182','','','','','200','1','0','','','0','0','0','0','0','0','0','b5e956501870483fb045df1655751b69','0','2','0'), ('37141','18','','10454','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45182','','','','','200','1','0','','','0','0','0','0','0','0','0','e2a923c0d22e4872acc473e3783ccdb6','0','2','0'), ('37142','18','','10454','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45182','','','','','200','1','0','','','0','0','0','0','0','0','0','8017849385a648df8f45e35a8a1a080a','0','2','0'), ('37143','18','','10454','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45182','','','','','200','1','0','','','0','0','0','0','0','0','0','88aa7fca3e0b4e778674da7ece8cf4dc','0','2','0'), ('37144','18','','10454','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45182','','','','','200','1','0','','','0','0','0','0','0','0','0','5edccab248474bf6beb3132626be1675','0','2','0'), ('37145','18','','10454','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45182','','','','','200','1','0','','','0','0','0','0','0','0','0','13f3f91149694ed8bd33067fa82979d8','0','2','0'), ('37146','18','','10454','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45182','','','','','200','1','0','','','0','0','0','0','0','0','0','b244af1db2374fbb865c735e81a56ae8','0','2','0'), ('37148','18','','10454','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45178','','','','','200','1','0','','','0','0','0','0','0','0','0','24a12296bd844160b4d34988be84f368','0','2','0'), ('37149','18','','10454','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45178','','','','','200','1','0','','','0','0','0','0','0','0','0','159cecb702d2450e9e868c108903e360','0','2','0'), ('37178','18','','10455','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45185','','','','','200','1','0','','','0','0','0','0','0','0','0','e3e28fe259aa4a43b30e5b919d44afcd','0','2','0'), ('37181','18','','10455','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45188','','','','','200','1','0','','','0','0','0','0','0','0','0','be0f695c529c4eb299ec52cf35894748','0','2','0'), ('37182','18','','10455','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45188','','','','','200','1','0','','','0','0','0','0','0','0','0','1a244ce7f50e465bbea8774ce17a334c','0','2','0'), ('37183','18','','10455','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45188','','','','','200','1','0','','','0','0','0','0','0','0','0','12c3d78774c74147a6117369b96b4256','0','2','0'), ('37184','18','','10455','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45184','','','','','200','1','0','','','0','0','0','0','0','0','0','a32b1f9c2e3049e7bcd3af65c4b107f6','0','2','0'), ('37185','18','','10455','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45185','','','','','200','1','0','','','0','0','0','0','0','0','0','5e2e23eecdb64096bd797eec839e8c3d','0','2','0'), ('37188','18','','10455','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45188','','','','','200','1','0','','','0','0','0','0','0','0','0','4356a26c242f4a3a9f4d8f6db98d21f8','0','2','0'), ('37189','18','','10455','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45188','','','','','200','1','0','','','0','0','0','0','0','0','0','34bf54ed6a5f4e53986f359d544c30cb','0','2','0'), ('37190','18','','10455','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45188','','','','','200','1','0','','','0','0','0','0','0','0','0','3823c35804ca433c8bcb5911f72bcea1','0','2','0'), ('37191','18','','10455','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45188','','','','','200','1','0','','','0','0','0','0','0','0','0','b978cd0e8ea54e76ac2306550880c3bb','0','2','0'), ('37192','18','','10455','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45188','','','','','200','1','0','','','0','0','0','0','0','0','0','df991a11507f4a29ae4b9d49ff210a25','0','2','0'), ('37193','18','','10455','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45188','','','','','200','1','0','','','0','0','0','0','0','0','0','50e5ff8d2fcd40969e84bfeb4337a3f3','0','2','0'), ('37194','18','','10455','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45188','','','','','200','1','0','','','0','0','0','0','0','0','0','e618a4a331f744a4b3803197d49560af','0','2','0'), ('37195','18','','10455','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45188','','','','','200','1','0','','','0','0','0','0','0','0','0','16cdd7e0531a4e589f6a80516afa05f4','0','2','0'), ('37196','18','','10455','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45188','','','','','200','1','0','','','0','0','0','0','0','0','0','b8c258ea4d8d43e2a76563cd67e310ae','0','2','0'), ('37197','18','','10455','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45188','','','','','200','1','0','','','0','0','0','0','0','0','0','529e53e857584a1b9f9baa4ffbe711b4','0','2','0'), ('37198','18','','10455','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45188','','','','','200','1','0','','','0','0','0','0','0','0','0','f9436b34ccd54749adcf2ce4250306fa','0','2','0'), ('37199','18','','10455','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45188','','','','','200','1','0','','','0','0','0','0','0','0','0','e230eabed9c346ea953cfd1d74e7539d','0','2','0'), ('37200','18','','10455','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45188','','','','','200','1','0','','','0','0','0','0','0','0','0','2c38689dacdb426b93a933693e6aa400','0','2','0'), ('37202','18','','10455','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45184','','','','','200','1','0','','','0','0','0','0','0','0','0','9186466c7a374a9d9a243bec3e00efdc','0','2','0'), ('37203','18','','10455','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45184','','','','','200','1','0','','','0','0','0','0','0','0','0','9bdbfc448dcb4d3fbfff2fc1a78b938d','0','2','0'), ('37232','18','','10456','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45191','','','','','200','1','0','','','0','0','0','0','0','0','0','c10d4bba94a54260853ce18bb4a1dbac','0','2','0'), ('37235','18','','10456','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45194','','','','','200','1','0','','','0','0','0','0','0','0','0','abc09b388f484f10aa5d7e7203bdbbcf','0','2','0'), ('37236','18','','10456','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45194','','','','','200','1','0','','','0','0','0','0','0','0','0','474fc7c380b74f11b366fc548b4e2fbf','0','2','0'), ('37237','18','','10456','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45194','','','','','200','1','0','','','0','0','0','0','0','0','0','543247e3c8a74ebcb21aec300625eceb','0','2','0'), ('37238','18','','10456','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45190','','','','','200','1','0','','','0','0','0','0','0','0','0','f6f52142e7464eaa829cab9823eff606','0','2','0'), ('37239','18','','10456','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45191','','','','','200','1','0','','','0','0','0','0','0','0','0','d7d582f52ddd4c14ad45bbcf98e7cce3','0','2','0'), ('37242','18','','10456','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45194','','','','','200','1','0','','','0','0','0','0','0','0','0','2923109d73144954a1da93508c2ae589','0','2','0'), ('37243','18','','10456','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45194','','','','','200','1','0','','','0','0','0','0','0','0','0','0d85d562ee204270becddfe118253dcd','0','2','0'), ('37244','18','','10456','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45194','','','','','200','1','0','','','0','0','0','0','0','0','0','67ef3c61b30048fda4139fbc29cb7abc','0','2','0'), ('37245','18','','10456','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45194','','','','','200','1','0','','','0','0','0','0','0','0','0','afc1517dbedf49c089eacf2467392963','0','2','0'), ('37246','18','','10456','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45194','','','','','200','1','0','','','0','0','0','0','0','0','0','f86eddbb80e04ed594c87c16bd4d0bba','0','2','0'), ('37247','18','','10456','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45194','','','','','200','1','0','','','0','0','0','0','0','0','0','105399b0d5d84b9094b7eb75603d75b3','0','2','0'), ('37248','18','','10456','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45194','','','','','200','1','0','','','0','0','0','0','0','0','0','8d0b0fca17b343dab54abe2b3f4b49f9','0','2','0'), ('37249','18','','10456','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45194','','','','','200','1','0','','','0','0','0','0','0','0','0','e17ac687194544698dee18404081a7d9','0','2','0'), ('37250','18','','10456','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45194','','','','','200','1','0','','','0','0','0','0','0','0','0','7d942107cdaf4ff58c9ad7a1a21f260d','0','2','0'), ('37251','18','','10456','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45194','','','','','200','1','0','','','0','0','0','0','0','0','0','54047484e062468ebbca526199a823ac','0','2','0'), ('37252','18','','10456','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45194','','','','','200','1','0','','','0','0','0','0','0','0','0','7ffae69ac5c644efa17ba9db8e3d16bd','0','2','0'), ('37253','18','','10456','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45194','','','','','200','1','0','','','0','0','0','0','0','0','0','03fdd1fb023d4e109e1a69bd01e1b588','0','2','0'), ('37254','18','','10456','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45194','','','','','200','1','0','','','0','0','0','0','0','0','0','139d2b1d8a0946f5b3febab4e9fd0587','0','2','0'), ('37256','18','','10456','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45190','','','','','200','1','0','','','0','0','0','0','0','0','0','79e5b2ee35d648d3b3a5f4988f3e7592','0','2','0'), ('37257','18','','10456','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45190','','','','','200','1','0','','','0','0','0','0','0','0','0','6bce04e7abea4d16bb901d81e618f186','0','2','0'), ('37286','18','','10457','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45197','','','','','200','1','0','','','0','0','0','0','0','0','0','c58edbe489db4e26a93a75c58c88a1f3','0','2','0'), ('37289','18','','10457','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45200','','','','','200','1','0','','','0','0','0','0','0','0','0','ccebe51b33a6459b99847e6a379f6037','0','2','0'), ('37290','18','','10457','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45200','','','','','200','1','0','','','0','0','0','0','0','0','0','364c87891bd34038a38c3339e6367c60','0','2','0'), ('37291','18','','10457','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45200','','','','','200','1','0','','','0','0','0','0','0','0','0','6130a63b523a4d5780cc7c6187e25092','0','2','0'), ('37292','18','','10457','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45196','','','','','200','1','0','','','0','0','0','0','0','0','0','df12abb1cede4e059dd54454550f2501','0','2','0'), ('37293','18','','10457','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45197','','','','','200','1','0','','','0','0','0','0','0','0','0','76610d269fa74931b5942475c179e840','0','2','0'), ('37296','18','','10457','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45200','','','','','200','1','0','','','0','0','0','0','0','0','0','774a4dd9c60a441b8bcac9a771f89a3d','0','2','0'), ('37297','18','','10457','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45200','','','','','200','1','0','','','0','0','0','0','0','0','0','1ee273ffb87749a897d5de628694eef2','0','2','0'), ('37298','18','','10457','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45200','','','','','200','1','0','','','0','0','0','0','0','0','0','c35c822a0f3f4dd3bd80beb1d9bbdd05','0','2','0'), ('37299','18','','10457','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45200','','','','','200','1','0','','','0','0','0','0','0','0','0','676b0104a7d94496a139ddd470bf7b2a','0','2','0'), ('37300','18','','10457','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45200','','','','','200','1','0','','','0','0','0','0','0','0','0','98d33e0d19a7401293471c0c26f8657e','0','2','0'), ('37301','18','','10457','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45200','','','','','200','1','0','','','0','0','0','0','0','0','0','acf03c7db037477c99bfa298ff11c976','0','2','0'), ('37302','18','','10457','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45200','','','','','200','1','0','','','0','0','0','0','0','0','0','37c8c5e1dfaf4b7c841a21c2519bc699','0','2','0'), ('37303','18','','10457','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45200','','','','','200','1','0','','','0','0','0','0','0','0','0','ca04a3369ba347ffaf2c67825bd2d200','0','2','0'), ('37304','18','','10457','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45200','','','','','200','1','0','','','0','0','0','0','0','0','0','5e7de2ae51d5463e835eb73b9f07186e','0','2','0'), ('37305','18','','10457','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45200','','','','','200','1','0','','','0','0','0','0','0','0','0','220f9e350c134b59bbaa38142996274b','0','2','0'), ('37306','18','','10457','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45200','','','','','200','1','0','','','0','0','0','0','0','0','0','4d2b9aaebdb1460dba179e2139802b66','0','2','0'), ('37307','18','','10457','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45200','','','','','200','1','0','','','0','0','0','0','0','0','0','0447138203d9420287fe3317148ffdd7','0','2','0'), ('37308','18','','10457','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45200','','','','','200','1','0','','','0','0','0','0','0','0','0','c00fb1e73f1b495c8994bbaf3d6d4d50','0','2','0'), ('37310','18','','10457','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45196','','','','','200','1','0','','','0','0','0','0','0','0','0','175c5f77af65445fb21d0d876fcb3983','0','2','0'), ('37311','18','','10457','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45196','','','','','200','1','0','','','0','0','0','0','0','0','0','827812e4bfef4bc5aa61630a8965d56f','0','2','0'), ('37340','18','','10458','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45203','','','','','200','1','0','','','0','0','0','0','0','0','0','1abbf37ece7c40ca93bb925c7bd27d89','0','2','0'), ('37343','18','','10458','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45206','','','','','200','1','0','','','0','0','0','0','0','0','0','750de67c2b6043a3a317ece3f2d182a5','0','2','0'), ('37344','18','','10458','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45206','','','','','200','1','0','','','0','0','0','0','0','0','0','81214dcd098f44d4aa3c3e33a8f23e0b','0','2','0'), ('37345','18','','10458','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45206','','','','','200','1','0','','','0','0','0','0','0','0','0','ded0e3b9a1c84f84aa7fb6e05f0afded','0','2','0'), ('37346','18','','10458','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45202','','','','','200','1','0','','','0','0','0','0','0','0','0','036680a2cc2e4c568a221b6456821b47','0','2','0'), ('37347','18','','10458','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45203','','','','','200','1','0','','','0','0','0','0','0','0','0','df4993b4508b4f4bba6a328323e8cc0a','0','2','0'), ('37350','18','','10458','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45206','','','','','200','1','0','','','0','0','0','0','0','0','0','f4ba5f4c17d2408b80f6962782d3527b','0','2','0'), ('37351','18','','10458','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45206','','','','','200','1','0','','','0','0','0','0','0','0','0','676d18905c9b43c4ad36b45c90bc6248','0','2','0'), ('37352','18','','10458','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45206','','','','','200','1','0','','','0','0','0','0','0','0','0','af72ce8fb6344e6ebb946ea81453b276','0','2','0'), ('37353','18','','10458','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45206','','','','','200','1','0','','','0','0','0','0','0','0','0','a78be7de743d49d8b9fa9070d32e4db9','0','2','0'), ('37354','18','','10458','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45206','','','','','200','1','0','','','0','0','0','0','0','0','0','d9b11f3313d24adcbe7146ec9df681fe','0','2','0'), ('37355','18','','10458','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45206','','','','','200','1','0','','','0','0','0','0','0','0','0','7e24b5bc03d74b1aa2ee0c9e4c56ac89','0','2','0'), ('37356','18','','10458','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45206','','','','','200','1','0','','','0','0','0','0','0','0','0','80fa9dbbb386432d9c534cbc86de36f7','0','2','0'), ('37357','18','','10458','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45206','','','','','200','1','0','','','0','0','0','0','0','0','0','d258ab237f1f4e79a31778d42ef14447','0','2','0'), ('37358','18','','10458','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45206','','','','','200','1','0','','','0','0','0','0','0','0','0','0b7cd68c901d46fea18594cb7b1df015','0','2','0'), ('37359','18','','10458','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45206','','','','','200','1','0','','','0','0','0','0','0','0','0','572e7a2adba6465986872543912bc2b8','0','2','0'), ('37360','18','','10458','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45206','','','','','200','1','0','','','0','0','0','0','0','0','0','29efa5a1a2fe4076a2a178374a52ada1','0','2','0'), ('37361','18','','10458','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45206','','','','','200','1','0','','','0','0','0','0','0','0','0','c5a823ac8d684b8fb386090e3f48eaeb','0','2','0'), ('37362','18','','10458','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45206','','','','','200','1','0','','','0','0','0','0','0','0','0','f8d680f85dae470296e8c25e692a3a0f','0','2','0'), ('37364','18','','10458','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45202','','','','','200','1','0','','','0','0','0','0','0','0','0','47623ca42a2c4b80b9140d4672329d26','0','2','0'), ('37365','18','','10458','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45202','','','','','200','1','0','','','0','0','0','0','0','0','0','cf424ebd271a4cda9ce1f69a3c735dfb','0','2','0'), ('37394','18','','10459','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45209','','','','','200','1','0','','','0','0','0','0','0','0','0','fac0b2a001034a888731ce9ff4d0a0b1','0','2','0'), ('37397','18','','10459','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45212','','','','','200','1','0','','','0','0','0','0','0','0','0','33669092f8b542fea3911e23337feb2f','0','2','0'), ('37398','18','','10459','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45212','','','','','200','1','0','','','0','0','0','0','0','0','0','ac44d8d2afa445aa9684549d0d951a3a','0','2','0'), ('37399','18','','10459','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45212','','','','','200','1','0','','','0','0','0','0','0','0','0','f072c431d2e24b84bfd3eba28cebd3fc','0','2','0'), ('37400','18','','10459','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45208','','','','','200','1','0','','','0','0','0','0','0','0','0','a03cd6a56cd540dea337b63f8ca5a1a1','0','2','0'), ('37401','18','','10459','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45209','','','','','200','1','0','','','0','0','0','0','0','0','0','76c25cbcbd7a415e821917887b552440','0','2','0'), ('37404','18','','10459','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45212','','','','','200','1','0','','','0','0','0','0','0','0','0','338524bc1bdf414686576671882b5f68','0','2','0'), ('37405','18','','10459','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45212','','','','','200','1','0','','','0','0','0','0','0','0','0','2fd85f6131924caeb2e73a630c7970e5','0','2','0'), ('37406','18','','10459','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45212','','','','','200','1','0','','','0','0','0','0','0','0','0','e2133a97d7c4406e9b708c31b1ad691f','0','2','0'), ('37407','18','','10459','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45212','','','','','200','1','0','','','0','0','0','0','0','0','0','f52a4a4442894479bfd0f9acf9b92945','0','2','0'), ('37408','18','','10459','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45212','','','','','200','1','0','','','0','0','0','0','0','0','0','deed4c15fd03467ba270ef2476dbdd44','0','2','0'), ('37409','18','','10459','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45212','','','','','200','1','0','','','0','0','0','0','0','0','0','85cdb71f2f184c73baef88358c86fc27','0','2','0'), ('37410','18','','10459','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45212','','','','','200','1','0','','','0','0','0','0','0','0','0','e77874f460dc4a8580c63076388af10c','0','2','0'), ('37411','18','','10459','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45212','','','','','200','1','0','','','0','0','0','0','0','0','0','7d033a3bf8644f3aa7f66dddd6d45f44','0','2','0'), ('37412','18','','10459','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45212','','','','','200','1','0','','','0','0','0','0','0','0','0','1f70e9c256b64e698affb2216d124d24','0','2','0'), ('37413','18','','10459','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45212','','','','','200','1','0','','','0','0','0','0','0','0','0','cac2679f249c41cab8047a266b63f685','0','2','0'), ('37414','18','','10459','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45212','','','','','200','1','0','','','0','0','0','0','0','0','0','ef0f673527f4462e9728ef06b73d9e99','0','2','0'), ('37415','18','','10459','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45212','','','','','200','1','0','','','0','0','0','0','0','0','0','455d7ff186ae4990a1d60a8c3c165344','0','2','0'), ('37416','18','','10459','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45212','','','','','200','1','0','','','0','0','0','0','0','0','0','2e9d6f80bfa445beb64b4d5b17125800','0','2','0'), ('37418','18','','10459','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45208','','','','','200','1','0','','','0','0','0','0','0','0','0','8b2f31738f90436b984801b4cef65b66','0','2','0'), ('37419','18','','10459','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45208','','','','','200','1','0','','','0','0','0','0','0','0','0','dbc682e6a824455db742449efb76b4cf','0','2','0'), ('37448','18','','10460','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45215','','','','','200','1','0','','','0','0','0','0','0','0','0','d006aef2136542aab3e97092fff6ba09','0','2','0'), ('37451','18','','10460','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45218','','','','','200','1','0','','','0','0','0','0','0','0','0','d7d673db00e445b98ed9109f51f4a16e','0','2','0'), ('37452','18','','10460','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45218','','','','','200','1','0','','','0','0','0','0','0','0','0','99450e2d4e3c4dfb8e1b7c28430cdebf','0','2','0'), ('37453','18','','10460','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45218','','','','','200','1','0','','','0','0','0','0','0','0','0','f69f464b8b59471f808b43772e1f5f4e','0','2','0'), ('37454','18','','10460','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45214','','','','','200','1','0','','','0','0','0','0','0','0','0','2d71376139af4ae9a723edde527f5373','0','2','0'), ('37455','18','','10460','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45215','','','','','200','1','0','','','0','0','0','0','0','0','0','76e284355196457393427df6475672c4','0','2','0'), ('37458','18','','10460','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45218','','','','','200','1','0','','','0','0','0','0','0','0','0','93cb7e4e0fd2443d9c1c3ae472200980','0','2','0'), ('37459','18','','10460','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45218','','','','','200','1','0','','','0','0','0','0','0','0','0','32087595f17c44d9b94d7762ef427ba5','0','2','0'), ('37460','18','','10460','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45218','','','','','200','1','0','','','0','0','0','0','0','0','0','5a65177ee82a417f924cffbc6a92b593','0','2','0'), ('37461','18','','10460','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45218','','','','','200','1','0','','','0','0','0','0','0','0','0','c42347e1e0e046b68f557ce011be1886','0','2','0'), ('37462','18','','10460','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45218','','','','','200','1','0','','','0','0','0','0','0','0','0','7be1291f79874e29aee64798671a6c80','0','2','0'), ('37463','18','','10460','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45218','','','','','200','1','0','','','0','0','0','0','0','0','0','7ed23e95f7144fddb4f7c5797ea462b9','0','2','0'), ('37464','18','','10460','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45218','','','','','200','1','0','','','0','0','0','0','0','0','0','7d94a281ff544e5bbabd0d41f3672174','0','2','0'), ('37465','18','','10460','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45218','','','','','200','1','0','','','0','0','0','0','0','0','0','e184a832057f43b6bdacd2b6f3cb0c0a','0','2','0'), ('37466','18','','10460','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45218','','','','','200','1','0','','','0','0','0','0','0','0','0','8c7307d75f5345dfb389cfad66cb88aa','0','2','0'), ('37467','18','','10460','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45218','','','','','200','1','0','','','0','0','0','0','0','0','0','8012ad63d0e24bf0bfddc428389384de','0','2','0'), ('37468','18','','10460','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45218','','','','','200','1','0','','','0','0','0','0','0','0','0','e6e8db7c216d41fcbfd28845c541255d','0','2','0'), ('37469','18','','10460','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45218','','','','','200','1','0','','','0','0','0','0','0','0','0','e272eecff3f343eab7b6641e6429c47a','0','2','0'), ('37470','18','','10460','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45218','','','','','200','1','0','','','0','0','0','0','0','0','0','024d36a1f48f4976848bdfff2ee18fba','0','2','0'), ('37472','18','','10460','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45214','','','','','200','1','0','','','0','0','0','0','0','0','0','2b54aec93faf4db280732db48075ff49','0','2','0'), ('37473','18','','10460','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45214','','','','','200','1','0','','','0','0','0','0','0','0','0','d02b3ec6c2d3489da7c29e85996d1a7c','0','2','0'), ('37502','18','','10461','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45221','','','','','200','1','0','','','0','0','0','0','0','0','0','6ac6410ae08249bf9c726821804aa003','0','2','0'), ('37505','18','','10461','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45224','','','','','200','1','0','','','0','0','0','0','0','0','0','bd83bc1bdaf54b2595e8199219a6fa48','0','2','0'), ('37506','18','','10461','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45224','','','','','200','1','0','','','0','0','0','0','0','0','0','2319b534a79449108a419e8c866e66bd','0','2','0'), ('37507','18','','10461','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45224','','','','','200','1','0','','','0','0','0','0','0','0','0','032c67a20a064ca180eb0f23a43a67ea','0','2','0'), ('37508','18','','10461','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45220','','','','','200','1','0','','','0','0','0','0','0','0','0','6378383173b54dd4add56b5b8b3a6e49','0','2','0'), ('37509','18','','10461','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45221','','','','','200','1','0','','','0','0','0','0','0','0','0','bb72b4f6a895437a9eaf0d36a3ad5b68','0','2','0'), ('37512','18','','10461','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45224','','','','','200','1','0','','','0','0','0','0','0','0','0','018eedc3f8c1435e9fad6581baaf6870','0','2','0'), ('37513','18','','10461','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45224','','','','','200','1','0','','','0','0','0','0','0','0','0','9bb9bc5e259d40c0aca83914d08385d9','0','2','0'), ('37514','18','','10461','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45224','','','','','200','1','0','','','0','0','0','0','0','0','0','9ef5ed92e2e84b309dd05b862646970e','0','2','0'), ('37515','18','','10461','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45224','','','','','200','1','0','','','0','0','0','0','0','0','0','44f45954c01d4aa4bec812cb70bdedc4','0','2','0'), ('37516','18','','10461','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45224','','','','','200','1','0','','','0','0','0','0','0','0','0','5f92245ccdad4191980caa0b44b24a56','0','2','0'), ('37517','18','','10461','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45224','','','','','200','1','0','','','0','0','0','0','0','0','0','71fbf20e2ec8495c920df331edd59f11','0','2','0'), ('37518','18','','10461','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45224','','','','','200','1','0','','','0','0','0','0','0','0','0','59b84a7a0419432fb0651a86e437c88a','0','2','0'), ('37519','18','','10461','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45224','','','','','200','1','0','','','0','0','0','0','0','0','0','62208faa28fa42bb8444408f054b1a90','0','2','0'), ('37520','18','','10461','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45224','','','','','200','1','0','','','0','0','0','0','0','0','0','f1966c50faf640539d3c3bbad1202b4a','0','2','0'), ('37521','18','','10461','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45224','','','','','200','1','0','','','0','0','0','0','0','0','0','8af73d5a781a4bcea86ef627eecc90b6','0','2','0'), ('37522','18','','10461','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45224','','','','','200','1','0','','','0','0','0','0','0','0','0','7c86d11f26724fbc820aefb5c8a5f036','0','2','0'), ('37523','18','','10461','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45224','','','','','200','1','0','','','0','0','0','0','0','0','0','e8bc0e639cc342eda083157fe6a0e187','0','2','0'), ('37524','18','','10461','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45224','','','','','200','1','0','','','0','0','0','0','0','0','0','ae5b708b4a044e81ac6f5be93762fed9','0','2','0'), ('37526','18','','10461','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45220','','','','','200','1','0','','','0','0','0','0','0','0','0','341aa7a1559c4af48c2a8b5446930f2f','0','2','0'), ('37527','18','','10461','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45220','','','','','200','1','0','','','0','0','0','0','0','0','0','d0e6479c9b004f8b95fe47f197779b82','0','2','0'), ('37556','18','','10462','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45227','','','','','200','1','0','','','0','0','0','0','0','0','0','b65b318fff444191b92f52c023bdee21','0','2','0'), ('37559','18','','10462','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45230','','','','','200','1','0','','','0','0','0','0','0','0','0','1040b8ec32f947d4bfce2fba18d7caae','0','2','0'), ('37560','18','','10462','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45230','','','','','200','1','0','','','0','0','0','0','0','0','0','64ab5419005745f68eb2d06b0e48c6ac','0','2','0'), ('37561','18','','10462','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45230','','','','','200','1','0','','','0','0','0','0','0','0','0','f02ad98b3cb94232b322c4b66683e4b7','0','2','0'), ('37562','18','','10462','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45226','','','','','200','1','0','','','0','0','0','0','0','0','0','8c2a6cde808244e3b99408f942095c5b','0','2','0'), ('37563','18','','10462','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45227','','','','','200','1','0','','','0','0','0','0','0','0','0','abec452fb1d54a13819afa0449a6c91d','0','2','0'), ('37566','18','','10462','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45230','','','','','200','1','0','','','0','0','0','0','0','0','0','ced1ce9c4d494243810034ddad5cb1bd','0','2','0'), ('37567','18','','10462','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45230','','','','','200','1','0','','','0','0','0','0','0','0','0','b6cf57437c7043a584ebb8376d658ef4','0','2','0'), ('37568','18','','10462','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45230','','','','','200','1','0','','','0','0','0','0','0','0','0','a68c39fc6e4248d9b6b073a67f58f4ac','0','2','0'), ('37569','18','','10462','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45230','','','','','200','1','0','','','0','0','0','0','0','0','0','46d0b195b09e4def9ecce5f0d306add9','0','2','0'), ('37570','18','','10462','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45230','','','','','200','1','0','','','0','0','0','0','0','0','0','c0a00ab0bfa543988d32114409df5dc5','0','2','0'), ('37571','18','','10462','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45230','','','','','200','1','0','','','0','0','0','0','0','0','0','5d4556364513438399429334cc12f3d6','0','2','0'), ('37572','18','','10462','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45230','','','','','200','1','0','','','0','0','0','0','0','0','0','689e40655841450b9b8c91595a26774a','0','2','0'), ('37573','18','','10462','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45230','','','','','200','1','0','','','0','0','0','0','0','0','0','bac9f6f2692348348abdc29cc4ead952','0','2','0'), ('37574','18','','10462','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45230','','','','','200','1','0','','','0','0','0','0','0','0','0','eb067e2b305642599ad39cacac524902','0','2','0'), ('37575','18','','10462','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45230','','','','','200','1','0','','','0','0','0','0','0','0','0','3ee889778c50431ead46cafe033b6945','0','2','0'), ('37576','18','','10462','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45230','','','','','200','1','0','','','0','0','0','0','0','0','0','7666985eaeca4e78b03e8097acb39ca5','0','2','0'), ('37577','18','','10462','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45230','','','','','200','1','0','','','0','0','0','0','0','0','0','6717ff0736644482be60d2dc2a6b6f1a','0','2','0'), ('37578','18','','10462','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45230','','','','','200','1','0','','','0','0','0','0','0','0','0','175056db73b443acbc16e9943cb83660','0','2','0'), ('37580','18','','10462','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45226','','','','','200','1','0','','','0','0','0','0','0','0','0','e1fe51aa353d4808bce466924ccfc280','0','2','0'), ('37581','18','','10462','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45226','','','','','200','1','0','','','0','0','0','0','0','0','0','6169a9872cde47b7888e6e2c3b8f90cd','0','2','0'), ('37610','18','','10463','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45233','','','','','200','1','0','','','0','0','0','0','0','0','0','58462afd23c44a788d49469d4ba5f5b4','0','2','0'), ('37613','18','','10463','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45236','','','','','200','1','0','','','0','0','0','0','0','0','0','2b33d07e9e4049feb9344a226d019e5c','0','2','0'), ('37614','18','','10463','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45236','','','','','200','1','0','','','0','0','0','0','0','0','0','813fcc3573204df59efc2f4c83a14402','0','2','0'), ('37615','18','','10463','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45236','','','','','200','1','0','','','0','0','0','0','0','0','0','3e5cfaec61a145a3b6dd2236da486408','0','2','0'), ('37616','18','','10463','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45232','','','','','200','1','0','','','0','0','0','0','0','0','0','0b14bb3471344128b65c76460c69edcb','0','2','0'), ('37617','18','','10463','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45233','','','','','200','1','0','','','0','0','0','0','0','0','0','d44241dbf0384aaa85346f42720497a4','0','2','0'), ('37620','18','','10463','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45236','','','','','200','1','0','','','0','0','0','0','0','0','0','678ca89bd7f7423e8e2d8d6dd21f7992','0','2','0'), ('37621','18','','10463','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45236','','','','','200','1','0','','','0','0','0','0','0','0','0','aae34986ae5f4641891454a28570a71c','0','2','0'), ('37622','18','','10463','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45236','','','','','200','1','0','','','0','0','0','0','0','0','0','6b3e94493e3d4e2fa5a02850646131f2','0','2','0'), ('37623','18','','10463','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45236','','','','','200','1','0','','','0','0','0','0','0','0','0','7e0266ca1918400abb2acfb74cb1208f','0','2','0'), ('37624','18','','10463','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45236','','','','','200','1','0','','','0','0','0','0','0','0','0','5062d6176d4c4ede829fb7679e093e56','0','2','0'), ('37625','18','','10463','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45236','','','','','200','1','0','','','0','0','0','0','0','0','0','57f9dfd940c84045a71a0d3032ec408b','0','2','0'), ('37626','18','','10463','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45236','','','','','200','1','0','','','0','0','0','0','0','0','0','7219178010374790b7d121431223a50c','0','2','0'), ('37627','18','','10463','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45236','','','','','200','1','0','','','0','0','0','0','0','0','0','423a6fa257f14693b5669a663fbaa184','0','2','0'), ('37628','18','','10463','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45236','','','','','200','1','0','','','0','0','0','0','0','0','0','5deabb9273f74a60bc5d869c8a744060','0','2','0'), ('37629','18','','10463','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45236','','','','','200','1','0','','','0','0','0','0','0','0','0','8685d4c133e146d19389698719a19d6e','0','2','0'), ('37630','18','','10463','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45236','','','','','200','1','0','','','0','0','0','0','0','0','0','54a475089c49498ea96d0e063b37f678','0','2','0'), ('37631','18','','10463','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45236','','','','','200','1','0','','','0','0','0','0','0','0','0','e69f18d991704f349e551e0f4024e685','0','2','0'), ('37632','18','','10463','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45236','','','','','200','1','0','','','0','0','0','0','0','0','0','787f088f58794997b39d55864ffcf25a','0','2','0'), ('37634','18','','10463','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45232','','','','','200','1','0','','','0','0','0','0','0','0','0','a659baef4d94473caa9cfe962d04ffd9','0','2','0'), ('37635','18','','10463','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45232','','','','','200','1','0','','','0','0','0','0','0','0','0','f0584dd985664955b7513c97cce54f83','0','2','0'), ('37664','18','','10464','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45239','','','','','200','1','0','','','0','0','0','0','0','0','0','1a85ac0568c2458f90a90cb7a0642370','0','2','0'), ('37667','18','','10464','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45242','','','','','200','1','0','','','0','0','0','0','0','0','0','4ec79e9f9a65495eae664a3b8a503978','0','2','0'), ('37668','18','','10464','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45242','','','','','200','1','0','','','0','0','0','0','0','0','0','67a4605912ca4fc0a37325b87e637600','0','2','0'), ('37669','18','','10464','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45242','','','','','200','1','0','','','0','0','0','0','0','0','0','5ace2ebfb2734287abf9d361fedfb4f3','0','2','0'), ('37670','18','','10464','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45238','','','','','200','1','0','','','0','0','0','0','0','0','0','1c4b3868273546bb8d2a95f30cc9d1ed','0','2','0'), ('37671','18','','10464','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45239','','','','','200','1','0','','','0','0','0','0','0','0','0','768094b0e66b42beb95b8f67003b1650','0','2','0'), ('37674','18','','10464','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45242','','','','','200','1','0','','','0','0','0','0','0','0','0','5993db957ee9482d8145eb73f9e47d4f','0','2','0'), ('37675','18','','10464','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45242','','','','','200','1','0','','','0','0','0','0','0','0','0','ccfcd108155b4d359388311b7d74c988','0','2','0'), ('37676','18','','10464','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45242','','','','','200','1','0','','','0','0','0','0','0','0','0','9e9296bb427c42828eede79f5ec62c1a','0','2','0'), ('37677','18','','10464','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45242','','','','','200','1','0','','','0','0','0','0','0','0','0','53fd3660ee2b45eeadb7300962bb1ac4','0','2','0'), ('37678','18','','10464','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45242','','','','','200','1','0','','','0','0','0','0','0','0','0','1cd0e51853ff4209a21912f6ea9bd1b6','0','2','0'), ('37679','18','','10464','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45242','','','','','200','1','0','','','0','0','0','0','0','0','0','73bcd9521b2e4a13898d1dab0632e76e','0','2','0'), ('37680','18','','10464','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45242','','','','','200','1','0','','','0','0','0','0','0','0','0','332f17f8800145088ea65fbd56bcc355','0','2','0'), ('37681','18','','10464','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45242','','','','','200','1','0','','','0','0','0','0','0','0','0','5d3d6f97506b4fc3a5cef2c6a03cdbaf','0','2','0'), ('37682','18','','10464','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45242','','','','','200','1','0','','','0','0','0','0','0','0','0','f74d9c3ed71c45bb910f08bcb0fb3eda','0','2','0'), ('37683','18','','10464','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45242','','','','','200','1','0','','','0','0','0','0','0','0','0','22afbe0ad8394eb4a37788884df98278','0','2','0'), ('37684','18','','10464','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45242','','','','','200','1','0','','','0','0','0','0','0','0','0','d171d2cc8f774581ac7bb39ec8749bcd','0','2','0'), ('37685','18','','10464','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45242','','','','','200','1','0','','','0','0','0','0','0','0','0','2527a7e7306640dc83a0c810a9ff248c','0','2','0'), ('37686','18','','10464','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45242','','','','','200','1','0','','','0','0','0','0','0','0','0','a1f9dec23d75439b9d47670c93881360','0','2','0'), ('37688','18','','10464','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45238','','','','','200','1','0','','','0','0','0','0','0','0','0','1fe1c3ed7e1d413e9c5717f7bc511845','0','2','0'), ('37689','18','','10464','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45238','','','','','200','1','0','','','0','0','0','0','0','0','0','bffab5765d194dd6a8f74b5b40f2ec8f','0','2','0'), ('37718','18','','10465','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45245','','','','','200','1','0','','','0','0','0','0','0','0','0','6d574937fd7e47c8ba7da4fc7df2b812','0','2','0'), ('37721','18','','10465','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45248','','','','','200','1','0','','','0','0','0','0','0','0','0','6da207d2ffa84756a676fa7e7bd19e40','0','2','0'), ('37722','18','','10465','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45248','','','','','200','1','0','','','0','0','0','0','0','0','0','e6a361bc321a401dbcc3a362799d450a','0','2','0'), ('37723','18','','10465','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45248','','','','','200','1','0','','','0','0','0','0','0','0','0','a2e92faea0da45b59a9dd254440c875b','0','2','0'), ('37724','18','','10465','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45244','','','','','200','1','0','','','0','0','0','0','0','0','0','6b80e43f0d004ab4baeb51a772d91457','0','2','0'), ('37725','18','','10465','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45245','','','','','200','1','0','','','0','0','0','0','0','0','0','bbf74ce8d13f4b3eb6e3a949f9fc95fc','0','2','0'), ('37728','18','','10465','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45248','','','','','200','1','0','','','0','0','0','0','0','0','0','28a57925dbcf410287cc33e680208531','0','2','0'), ('37729','18','','10465','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45248','','','','','200','1','0','','','0','0','0','0','0','0','0','bf05683ec6bd4882af965c5671bca4c8','0','2','0'), ('37730','18','','10465','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45248','','','','','200','1','0','','','0','0','0','0','0','0','0','39b0a1c4d5134fb7a2a6bd114278a773','0','2','0'), ('37731','18','','10465','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45248','','','','','200','1','0','','','0','0','0','0','0','0','0','250f123915b94618b4af6aa4166f6e9a','0','2','0'), ('37732','18','','10465','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45248','','','','','200','1','0','','','0','0','0','0','0','0','0','cbaec92328d34e08a4c168961cfc8833','0','2','0'), ('37733','18','','10465','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45248','','','','','200','1','0','','','0','0','0','0','0','0','0','ede61f7e21cc41e2abe7e8931aef6b95','0','2','0'), ('37734','18','','10465','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45248','','','','','200','1','0','','','0','0','0','0','0','0','0','3ce1884489f4482a887756abf92248e5','0','2','0'), ('37735','18','','10465','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45248','','','','','200','1','0','','','0','0','0','0','0','0','0','56bdd3739b874e8db259ac6e4736affb','0','2','0'), ('37736','18','','10465','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45248','','','','','200','1','0','','','0','0','0','0','0','0','0','f952b47d2a4e4f2991db17dd89e79f24','0','2','0'), ('37737','18','','10465','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45248','','','','','200','1','0','','','0','0','0','0','0','0','0','dfcc5d5ab4584fd48ea22b5f5e00e8c6','0','2','0'), ('37738','18','','10465','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45248','','','','','200','1','0','','','0','0','0','0','0','0','0','6509bb0c5e044c0580398ca99b768b75','0','2','0'), ('37739','18','','10465','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45248','','','','','200','1','0','','','0','0','0','0','0','0','0','8661f6e91dbf4d9a93785f07157eec93','0','2','0'), ('37740','18','','10465','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45248','','','','','200','1','0','','','0','0','0','0','0','0','0','ec83a91a8b284f3a9137c8c4cf36a9c3','0','2','0'), ('37742','18','','10465','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45244','','','','','200','1','0','','','0','0','0','0','0','0','0','1c12733c14eb45a8bb36b3fcb8ef7ce7','0','2','0'), ('37743','18','','10465','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45244','','','','','200','1','0','','','0','0','0','0','0','0','0','6202b55760514c64832b9df48828c344','0','2','0'), ('37772','18','','10466','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45251','','','','','200','1','0','','','0','0','0','0','0','0','0','17aca6820fbf4ae3b7c0bbd36ae191a5','0','2','0'), ('37775','18','','10466','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45254','','','','','200','1','0','','','0','0','0','0','0','0','0','708e4d3595004248a8acece9641eb4d6','0','2','0'), ('37776','18','','10466','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45254','','','','','200','1','0','','','0','0','0','0','0','0','0','05c6b3cfcb15488d801fcfbd2df1d68c','0','2','0'), ('37777','18','','10466','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45254','','','','','200','1','0','','','0','0','0','0','0','0','0','9e73e76f915e447191c77ffa452d3a38','0','2','0'), ('37778','18','','10466','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45250','','','','','200','1','0','','','0','0','0','0','0','0','0','2d496a1a38a14321bf35adf43537dce4','0','2','0'), ('37779','18','','10466','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45251','','','','','200','1','0','','','0','0','0','0','0','0','0','0617289aa301456381283c8d42ca6edb','0','2','0'), ('37782','18','','10466','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45254','','','','','200','1','0','','','0','0','0','0','0','0','0','7e39549bb6e34cefbd03c9f789ff5f83','0','2','0'), ('37783','18','','10466','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45254','','','','','200','1','0','','','0','0','0','0','0','0','0','7486c89623e34e8a84d51df4ea38347a','0','2','0'), ('37784','18','','10466','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45254','','','','','200','1','0','','','0','0','0','0','0','0','0','8b1a41af48da46e5a0c37e78a68127df','0','2','0'), ('37785','18','','10466','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45254','','','','','200','1','0','','','0','0','0','0','0','0','0','0c18873c93914367a7aa54156964e0f8','0','2','0'), ('37786','18','','10466','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45254','','','','','200','1','0','','','0','0','0','0','0','0','0','b306260935274f8b93476cce0f740da6','0','2','0'), ('37787','18','','10466','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45254','','','','','200','1','0','','','0','0','0','0','0','0','0','fb5bb87dd9ec4ffd8ac9745dd7e5e698','0','2','0'), ('37788','18','','10466','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45254','','','','','200','1','0','','','0','0','0','0','0','0','0','a0576fd0cfbc47d3a48d651dfed2cf7f','0','2','0'), ('37789','18','','10466','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45254','','','','','200','1','0','','','0','0','0','0','0','0','0','29464ad001e944e2a007e9b6aedf07ca','0','2','0'), ('37790','18','','10466','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45254','','','','','200','1','0','','','0','0','0','0','0','0','0','9f93a69ba465474b8ff554e9017de788','0','2','0'), ('37791','18','','10466','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45254','','','','','200','1','0','','','0','0','0','0','0','0','0','aa139caf38304d84b98a905b2d1f246a','0','2','0'), ('37792','18','','10466','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45254','','','','','200','1','0','','','0','0','0','0','0','0','0','e5b5cdbce91946e38b4d194c3bc645c1','0','2','0'), ('37793','18','','10466','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45254','','','','','200','1','0','','','0','0','0','0','0','0','0','847ad6413af94fe89bf6d4f78a1fc449','0','2','0'), ('37794','18','','10466','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45254','','','','','200','1','0','','','0','0','0','0','0','0','0','3cc43df83ca24a50b44e8b6d899d29ff','0','2','0'), ('37796','18','','10466','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45250','','','','','200','1','0','','','0','0','0','0','0','0','0','ad99f629e6e94c8abad0215c9a914907','0','2','0'), ('37797','18','','10466','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45250','','','','','200','1','0','','','0','0','0','0','0','0','0','9c2accea5a7a488ab6ebc3dd31f3e797','0','2','0'), ('37826','18','','10467','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45257','','','','','200','1','0','','','0','0','0','0','0','0','0','dcc0b3e7e4304c27b9156deb1fb56781','0','2','0'), ('37829','18','','10467','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45260','','','','','200','1','0','','','0','0','0','0','0','0','0','87ca6cf207f147bc926d521530449c81','0','2','0'), ('37830','18','','10467','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45260','','','','','200','1','0','','','0','0','0','0','0','0','0','5db9feb9d197453aaafd348c3d525f3c','0','2','0'), ('37831','18','','10467','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45260','','','','','200','1','0','','','0','0','0','0','0','0','0','26e3b6942ca64f0ca17080a7149d695c','0','2','0'), ('37832','18','','10467','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45256','','','','','200','1','0','','','0','0','0','0','0','0','0','94d8fa584eef4573acc2861060902fc1','0','2','0'), ('37833','18','','10467','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45257','','','','','200','1','0','','','0','0','0','0','0','0','0','d6a562ef91ef4c608232e2d0f98dfcd9','0','2','0'), ('37836','18','','10467','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45260','','','','','200','1','0','','','0','0','0','0','0','0','0','ae2ffeed2a7749dba00ab3a2b65d4091','0','2','0'), ('37837','18','','10467','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45260','','','','','200','1','0','','','0','0','0','0','0','0','0','9e1d91dcc55b43b9a9a33a50e08f7037','0','2','0'), ('37838','18','','10467','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45260','','','','','200','1','0','','','0','0','0','0','0','0','0','45cb37b6dcb64115b7fc021359f5e2e1','0','2','0'), ('37839','18','','10467','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45260','','','','','200','1','0','','','0','0','0','0','0','0','0','da44c19b868a41058a5c91792e4153b0','0','2','0'), ('37840','18','','10467','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45260','','','','','200','1','0','','','0','0','0','0','0','0','0','f07162a9b65f4b8ba99e9ad37ea78141','0','2','0'), ('37841','18','','10467','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45260','','','','','200','1','0','','','0','0','0','0','0','0','0','c57390f8e3764add926431b9b6351ea0','0','2','0'), ('37842','18','','10467','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45260','','','','','200','1','0','','','0','0','0','0','0','0','0','4723a555cf1e4c179e9af54cd8c7ca10','0','2','0'), ('37843','18','','10467','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45260','','','','','200','1','0','','','0','0','0','0','0','0','0','0004683dd9e84d3b92bb5f6b5304bb9b','0','2','0'), ('37844','18','','10467','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45260','','','','','200','1','0','','','0','0','0','0','0','0','0','b4e81fbbecf2479798c604c3514b25d9','0','2','0'), ('37845','18','','10467','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45260','','','','','200','1','0','','','0','0','0','0','0','0','0','bc35de18a55042b2a090d3bdaa87029c','0','2','0'), ('37846','18','','10467','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45260','','','','','200','1','0','','','0','0','0','0','0','0','0','b06f561f915f43c198d4fd011ea676f0','0','2','0'), ('37847','18','','10467','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45260','','','','','200','1','0','','','0','0','0','0','0','0','0','f14009a9bae64d0ba293f710149ca764','0','2','0'), ('37848','18','','10467','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45260','','','','','200','1','0','','','0','0','0','0','0','0','0','62ae5c6fc3504346b37b997798bd635e','0','2','0'), ('37850','18','','10467','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45256','','','','','200','1','0','','','0','0','0','0','0','0','0','afec00d5d90c4386b2d32c03f22a6374','0','2','0'), ('37851','18','','10467','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45256','','','','','200','1','0','','','0','0','0','0','0','0','0','b3bb874134804e9f8370a774867715bd','0','2','0'), ('37880','18','','10468','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45263','','','','','200','1','0','','','0','0','0','0','0','0','0','3c978b9c2e4c4c01b7ec7ce7af02f27a','0','2','0'), ('37883','18','','10468','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45266','','','','','200','1','0','','','0','0','0','0','0','0','0','9acd8e04d272467c8c1cd0452068bf93','0','2','0'), ('37884','18','','10468','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45266','','','','','200','1','0','','','0','0','0','0','0','0','0','fe6101d8772d482e999e0351c40ccbd1','0','2','0'), ('37885','18','','10468','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45266','','','','','200','1','0','','','0','0','0','0','0','0','0','2b6a52cd5f1b4786a6176b4ea11887fb','0','2','0'), ('37886','18','','10468','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45262','','','','','200','1','0','','','0','0','0','0','0','0','0','fc051342ffd646fd86702f89ad9da14b','0','2','0'), ('37887','18','','10468','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45263','','','','','200','1','0','','','0','0','0','0','0','0','0','521d764377654b93816ee70e8c80fc0a','0','2','0'), ('37890','18','','10468','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45266','','','','','200','1','0','','','0','0','0','0','0','0','0','f07ac80125fe425bb87aeb409ae198db','0','2','0'), ('37891','18','','10468','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45266','','','','','200','1','0','','','0','0','0','0','0','0','0','a418c6b3e88f45a398daf2c0fc529d13','0','2','0'), ('37892','18','','10468','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45266','','','','','200','1','0','','','0','0','0','0','0','0','0','e0659a14e4c14779a02bc4bd5fa2b8cf','0','2','0'), ('37893','18','','10468','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45266','','','','','200','1','0','','','0','0','0','0','0','0','0','2fe3fa0e2ec84a098add91a09ff9332d','0','2','0'), ('37894','18','','10468','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45266','','','','','200','1','0','','','0','0','0','0','0','0','0','918507201ca94b3284d3ea0790e5dfcb','0','2','0'), ('37895','18','','10468','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45266','','','','','200','1','0','','','0','0','0','0','0','0','0','2cac58114b934cd4bf6738db973f04e7','0','2','0'), ('37896','18','','10468','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45266','','','','','200','1','0','','','0','0','0','0','0','0','0','eb1304a13add439b8a0eba33f0be85bd','0','2','0'), ('37897','18','','10468','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45266','','','','','200','1','0','','','0','0','0','0','0','0','0','9135865a5f6341449f661b2effe38c19','0','2','0'), ('37898','18','','10468','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45266','','','','','200','1','0','','','0','0','0','0','0','0','0','10ca39f536ec49e081e0edc5c0b2972f','0','2','0'), ('37899','18','','10468','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45266','','','','','200','1','0','','','0','0','0','0','0','0','0','a736f4197c594f10b144ca1775111d1d','0','2','0'), ('37900','18','','10468','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45266','','','','','200','1','0','','','0','0','0','0','0','0','0','17646c7e68fa4733a8ecccd3321513c5','0','2','0'), ('37901','18','','10468','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45266','','','','','200','1','0','','','0','0','0','0','0','0','0','3c0beda9dfe0447f953a3be51fba7e48','0','2','0'), ('37902','18','','10468','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45266','','','','','200','1','0','','','0','0','0','0','0','0','0','d327bafe453345468ed568b30c3c0ca5','0','2','0'), ('37904','18','','10468','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45262','','','','','200','1','0','','','0','0','0','0','0','0','0','9bcda8136943432eaedfa8ed80dd48e7','0','2','0'), ('37905','18','','10468','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45262','','','','','200','1','0','','','0','0','0','0','0','0','0','19b70b4990ca4813a0237a5bd6b8915b','0','2','0'), ('37934','18','','10469','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45269','','','','','200','1','0','','','0','0','0','0','0','0','0','9f244f13f1c346feb1852908e347a9ce','0','2','0'), ('37937','18','','10469','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45272','','','','','200','1','0','','','0','0','0','0','0','0','0','e3d529ed5a1b4d89b156e1a2bdd73905','0','2','0'), ('37938','18','','10469','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45272','','','','','200','1','0','','','0','0','0','0','0','0','0','174a070e450a4b6a851e6f774cea0496','0','2','0'), ('37939','18','','10469','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45272','','','','','200','1','0','','','0','0','0','0','0','0','0','009b58f603c74f66a5341db132e489ba','0','2','0'), ('37940','18','','10469','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45268','','','','','200','1','0','','','0','0','0','0','0','0','0','a52c622d98b643dfb67459f5b6b63e3d','0','2','0'), ('37941','18','','10469','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45269','','','','','200','1','0','','','0','0','0','0','0','0','0','67bd6121ef4946ac9e73fc3974eb72ed','0','2','0'), ('37944','18','','10469','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45272','','','','','200','1','0','','','0','0','0','0','0','0','0','41ac19f7e4d2423e8211517127be3e4e','0','2','0'), ('37945','18','','10469','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45272','','','','','200','1','0','','','0','0','0','0','0','0','0','fdffd7bb090b4acc85692c0fa113aed6','0','2','0'), ('37946','18','','10469','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45272','','','','','200','1','0','','','0','0','0','0','0','0','0','c8b7cde011cf45efbfbdb54a99f7afb9','0','2','0'), ('37947','18','','10469','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45272','','','','','200','1','0','','','0','0','0','0','0','0','0','ce8dc75d99944f88afc937e1025f4bcc','0','2','0'), ('37948','18','','10469','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45272','','','','','200','1','0','','','0','0','0','0','0','0','0','0b0aa41ec369423ba346cf6c9f7c9075','0','2','0'), ('37949','18','','10469','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45272','','','','','200','1','0','','','0','0','0','0','0','0','0','40aa76b4a7e74961a20a6891e5084fa6','0','2','0'), ('37950','18','','10469','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45272','','','','','200','1','0','','','0','0','0','0','0','0','0','34e0b4d61e954c5598df74624eec7de4','0','2','0'), ('37951','18','','10469','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45272','','','','','200','1','0','','','0','0','0','0','0','0','0','4484896071184e62992201bf6590ed4f','0','2','0'), ('37952','18','','10469','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45272','','','','','200','1','0','','','0','0','0','0','0','0','0','2fadfc227fbb418f9d0bccf1af2a871c','0','2','0'), ('37953','18','','10469','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45272','','','','','200','1','0','','','0','0','0','0','0','0','0','9ad3feaeee5f4663b598e95e18fd81e2','0','2','0'), ('37954','18','','10469','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45272','','','','','200','1','0','','','0','0','0','0','0','0','0','2938eec3c8dd4dcf931d52d64191a68d','0','2','0'), ('37955','18','','10469','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45272','','','','','200','1','0','','','0','0','0','0','0','0','0','43db9c3fcc074d4d8c9d041ed0d40ade','0','2','0'), ('37956','18','','10469','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45272','','','','','200','1','0','','','0','0','0','0','0','0','0','231504212d1a4f688a35b77014e9ef20','0','2','0'), ('37958','18','','10469','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45268','','','','','200','1','0','','','0','0','0','0','0','0','0','8b12975b2d1f4c03adce5fd9aaacd8e2','0','2','0'), ('37959','18','','10469','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45268','','','','','200','1','0','','','0','0','0','0','0','0','0','4445602fc420442db98c58cd28d68b46','0','2','0'), ('37988','18','','10470','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45275','','','','','200','1','0','','','0','0','0','0','0','0','0','43a205f5dd7d4874a68c1a9930f43260','0','2','0'), ('37991','18','','10470','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45278','','','','','200','1','0','','','0','0','0','0','0','0','0','3824e4d95d2d47ea858f7885d3fadbb8','0','2','0'), ('37992','18','','10470','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45278','','','','','200','1','0','','','0','0','0','0','0','0','0','d4d7077e3d1c45de8320982d2d2757f7','0','2','0'), ('37993','18','','10470','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45278','','','','','200','1','0','','','0','0','0','0','0','0','0','ca977ba6126442d2b4fe511ccf78c021','0','2','0'), ('37994','18','','10470','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45274','','','','','200','1','0','','','0','0','0','0','0','0','0','9164b9995cf2443189314c8177353070','0','2','0'), ('37995','18','','10470','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45275','','','','','200','1','0','','','0','0','0','0','0','0','0','c510805ee348445b851bc93e95daf8f6','0','2','0'), ('37998','18','','10470','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45278','','','','','200','1','0','','','0','0','0','0','0','0','0','161f4066cd2d4cc393afad6bac50dcc5','0','2','0'), ('37999','18','','10470','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45278','','','','','200','1','0','','','0','0','0','0','0','0','0','3728775b43bb4fd9927cc83b31441e73','0','2','0'), ('38000','18','','10470','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45278','','','','','200','1','0','','','0','0','0','0','0','0','0','25aeaf59b6a446428d81743da8fad36f','0','2','0'), ('38001','18','','10470','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45278','','','','','200','1','0','','','0','0','0','0','0','0','0','5696d89760ef4e168e79a68c9503a752','0','2','0'), ('38002','18','','10470','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45278','','','','','200','1','0','','','0','0','0','0','0','0','0','a5b2a6adc309482f8f4ae0ac696b6188','0','2','0'), ('38003','18','','10470','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45278','','','','','200','1','0','','','0','0','0','0','0','0','0','1f5889a3511e423eba944249026cade2','0','2','0'), ('38004','18','','10470','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45278','','','','','200','1','0','','','0','0','0','0','0','0','0','116c9e2164244af7ac233192cc2c0fa8','0','2','0'), ('38005','18','','10470','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45278','','','','','200','1','0','','','0','0','0','0','0','0','0','7f66614630514280a2e4694f601527e1','0','2','0'), ('38006','18','','10470','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45278','','','','','200','1','0','','','0','0','0','0','0','0','0','6a1710f2a57546bbb825fa30dff7dfc6','0','2','0'), ('38007','18','','10470','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45278','','','','','200','1','0','','','0','0','0','0','0','0','0','fa5d5e176fd540299ef75d4a9693ed09','0','2','0'), ('38008','18','','10470','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45278','','','','','200','1','0','','','0','0','0','0','0','0','0','1bdcdd568543421e8e5cbd953698bbd2','0','2','0'), ('38009','18','','10470','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45278','','','','','200','1','0','','','0','0','0','0','0','0','0','8ea83d2c84144a209c0ed5592207027c','0','2','0'), ('38010','18','','10470','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45278','','','','','200','1','0','','','0','0','0','0','0','0','0','8525fbb691d4494b8e03eb7b1b4a7ecd','0','2','0'), ('38012','18','','10470','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45274','','','','','200','1','0','','','0','0','0','0','0','0','0','20ca55174f764308933c395b1f8c25b6','0','2','0'), ('38013','18','','10470','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45274','','','','','200','1','0','','','0','0','0','0','0','0','0','b1293070b58b4859b3cc730a08e24f1c','0','2','0'), ('38042','18','','10471','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45281','','','','','200','1','0','','','0','0','0','0','0','0','0','55e1dad7a38743f2ba0ba1546a55638d','0','2','0'), ('38045','18','','10471','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45284','','','','','200','1','0','','','0','0','0','0','0','0','0','94742faea5cb4922af607bcf66494c75','0','2','0'), ('38046','18','','10471','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45284','','','','','200','1','0','','','0','0','0','0','0','0','0','4c8b8a486e7348c383f28ffcb4db6182','0','2','0'), ('38047','18','','10471','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45284','','','','','200','1','0','','','0','0','0','0','0','0','0','c256b93e9a9d4c25a4c347ebd4ce87a0','0','2','0'), ('38048','18','','10471','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45280','','','','','200','1','0','','','0','0','0','0','0','0','0','d4eb86620709480a93c863cc4080ceef','0','2','0'), ('38049','18','','10471','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45281','','','','','200','1','0','','','0','0','0','0','0','0','0','602f38f90f3545adbc070d035539ec8d','0','2','0'), ('38052','18','','10471','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45284','','','','','200','1','0','','','0','0','0','0','0','0','0','fda8316e54e2457492d19ad3f0fdefba','0','2','0'), ('38053','18','','10471','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45284','','','','','200','1','0','','','0','0','0','0','0','0','0','9b636bb8baa54fec808391d5387affb1','0','2','0'), ('38054','18','','10471','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45284','','','','','200','1','0','','','0','0','0','0','0','0','0','ce63b34ac4ed4e98af2e9cf165fd4edd','0','2','0'), ('38055','18','','10471','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45284','','','','','200','1','0','','','0','0','0','0','0','0','0','2879b1fddfa3422d81f3d54bf10eeba9','0','2','0'), ('38056','18','','10471','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45284','','','','','200','1','0','','','0','0','0','0','0','0','0','cc0acc56261542178aef0227e886a582','0','2','0'), ('38057','18','','10471','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45284','','','','','200','1','0','','','0','0','0','0','0','0','0','a29816c787c3404f8e2c2492b3c97fc3','0','2','0'), ('38058','18','','10471','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45284','','','','','200','1','0','','','0','0','0','0','0','0','0','da4acf2e97e44415951f9a22042e7722','0','2','0'), ('38059','18','','10471','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45284','','','','','200','1','0','','','0','0','0','0','0','0','0','b6a61875bfbb47ad9e1ffc93f11f533a','0','2','0'), ('38060','18','','10471','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45284','','','','','200','1','0','','','0','0','0','0','0','0','0','7c62e6580f44467e9d1ceaef77394a5e','0','2','0'), ('38061','18','','10471','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45284','','','','','200','1','0','','','0','0','0','0','0','0','0','da4b16ed30de474dac4a260b8d813f69','0','2','0'), ('38062','18','','10471','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45284','','','','','200','1','0','','','0','0','0','0','0','0','0','ae5c0adc6b05408ca1cf362d4c01eafe','0','2','0'), ('38063','18','','10471','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45284','','','','','200','1','0','','','0','0','0','0','0','0','0','321b92fdbbde4c5c91ca04c28861fe11','0','2','0'), ('38064','18','','10471','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45284','','','','','200','1','0','','','0','0','0','0','0','0','0','da85b9260e374c58946d337686158519','0','2','0'), ('38066','18','','10471','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45280','','','','','200','1','0','','','0','0','0','0','0','0','0','bf9374d0427c4e5493752ee648ee5bb1','0','2','0'), ('38067','18','','10471','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45280','','','','','200','1','0','','','0','0','0','0','0','0','0','b8a263e710ad4864bd7406e637b44c21','0','2','0'), ('38096','18','','10472','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45287','','','','','200','1','0','','','0','0','0','0','0','0','0','4f4f6561dbaa4b89a77461a91339d552','0','2','0'), ('38099','18','','10472','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45290','','','','','200','1','0','','','0','0','0','0','0','0','0','846190a30b804bfda47b31796819f8fb','0','2','0'), ('38100','18','','10472','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45290','','','','','200','1','0','','','0','0','0','0','0','0','0','18f56223df0a415fb99869ba8a8ee514','0','2','0'), ('38101','18','','10472','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45290','','','','','200','1','0','','','0','0','0','0','0','0','0','c475a511980841b49b7615b93c873eae','0','2','0'), ('38102','18','','10472','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45286','','','','','200','1','0','','','0','0','0','0','0','0','0','77cfcc80cb8d407ca178ba7b9e50f182','0','2','0'), ('38103','18','','10472','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45287','','','','','200','1','0','','','0','0','0','0','0','0','0','d2396df3e96d472289886c54bbb6fca2','0','2','0'), ('38106','18','','10472','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45290','','','','','200','1','0','','','0','0','0','0','0','0','0','222211769ab340509fba69d8f354029b','0','2','0'), ('38107','18','','10472','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45290','','','','','200','1','0','','','0','0','0','0','0','0','0','f6c1350d1a694bae98bf59d862ac8f59','0','2','0'), ('38108','18','','10472','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45290','','','','','200','1','0','','','0','0','0','0','0','0','0','7242abcbe9314f23ac5512edbf4c39a1','0','2','0'), ('38109','18','','10472','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45290','','','','','200','1','0','','','0','0','0','0','0','0','0','fc2d8f9f26da4e4abb625394e66b194a','0','2','0'), ('38110','18','','10472','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45290','','','','','200','1','0','','','0','0','0','0','0','0','0','36b565d6f34a47b29a859ca50a0b557e','0','2','0'), ('38111','18','','10472','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45290','','','','','200','1','0','','','0','0','0','0','0','0','0','f4c638ed14314c8790e34b9e32ee6f17','0','2','0'), ('38112','18','','10472','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45290','','','','','200','1','0','','','0','0','0','0','0','0','0','2986ecfb1d7641289cd1aca79e1f206f','0','2','0'), ('38113','18','','10472','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45290','','','','','200','1','0','','','0','0','0','0','0','0','0','f2ceea0e555440808c983d61d4cd620e','0','2','0'), ('38114','18','','10472','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45290','','','','','200','1','0','','','0','0','0','0','0','0','0','3f8622b3bd154ec5b2bf8fc75e35183f','0','2','0'), ('38115','18','','10472','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45290','','','','','200','1','0','','','0','0','0','0','0','0','0','8337fdf60e9b45c2b4c1a155d5b2603d','0','2','0'), ('38116','18','','10472','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45290','','','','','200','1','0','','','0','0','0','0','0','0','0','6ecceab4ba1345708fa806542ce85051','0','2','0'), ('38117','18','','10472','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45290','','','','','200','1','0','','','0','0','0','0','0','0','0','9da88d1a5d3649f0ac023319f529026d','0','2','0'), ('38118','18','','10472','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45290','','','','','200','1','0','','','0','0','0','0','0','0','0','2c0ffadf84784e20af33236fbe6aa763','0','2','0'), ('38120','18','','10472','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45286','','','','','200','1','0','','','0','0','0','0','0','0','0','306d4dbbacd949b58631f178937c667e','0','2','0'), ('38121','18','','10472','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45286','','','','','200','1','0','','','0','0','0','0','0','0','0','29c812f5a94f49a5a28690af05553bbf','0','2','0'), ('38150','18','','10473','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45293','','','','','200','1','0','','','0','0','0','0','0','0','0','315ea6f2b17e4bb5a019394e8cd50a59','0','2','0'), ('38153','18','','10473','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45296','','','','','200','1','0','','','0','0','0','0','0','0','0','d7a8644f9af749afa7194b9bda688f74','0','2','0'), ('38154','18','','10473','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45296','','','','','200','1','0','','','0','0','0','0','0','0','0','5039dfabeb7c493c8f8fdc0e448f921d','0','2','0'), ('38155','18','','10473','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45296','','','','','200','1','0','','','0','0','0','0','0','0','0','cc00fd051776439cb2267611af6d9b9b','0','2','0'), ('38156','18','','10473','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45292','','','','','200','1','0','','','0','0','0','0','0','0','0','2117133adbd14de6beb78907eec23c77','0','2','0'), ('38157','18','','10473','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45293','','','','','200','1','0','','','0','0','0','0','0','0','0','aa3298d983b8462b86d3dde1e34130a5','0','2','0'), ('38160','18','','10473','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45296','','','','','200','1','0','','','0','0','0','0','0','0','0','85213524f70d47a98dd3067ad69bef9f','0','2','0'), ('38161','18','','10473','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45296','','','','','200','1','0','','','0','0','0','0','0','0','0','b51fb106f4724770b841a0f604655d2e','0','2','0'), ('38162','18','','10473','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45296','','','','','200','1','0','','','0','0','0','0','0','0','0','b7520a6b109a421b8d2c051751c62aae','0','2','0'), ('38163','18','','10473','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45296','','','','','200','1','0','','','0','0','0','0','0','0','0','eb86d792431b41b0ad214e5ddf37cafe','0','2','0'), ('38164','18','','10473','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45296','','','','','200','1','0','','','0','0','0','0','0','0','0','ba279749a9a34c31b54c21c2ece7a277','0','2','0'), ('38165','18','','10473','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45296','','','','','200','1','0','','','0','0','0','0','0','0','0','96176e87857f422fae7e82eb10b75037','0','2','0'), ('38166','18','','10473','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45296','','','','','200','1','0','','','0','0','0','0','0','0','0','6dc6a1f0f3254cd89cc643796480e820','0','2','0'), ('38167','18','','10473','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45296','','','','','200','1','0','','','0','0','0','0','0','0','0','8ef96b8baa8b4e1187479213a46aca29','0','2','0'), ('38168','18','','10473','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45296','','','','','200','1','0','','','0','0','0','0','0','0','0','8dd35e2eedf545399834152eba4ac03a','0','2','0'), ('38169','18','','10473','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45296','','','','','200','1','0','','','0','0','0','0','0','0','0','23dd58dbfcc841fd893869ecc3d8af41','0','2','0'), ('38170','18','','10473','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45296','','','','','200','1','0','','','0','0','0','0','0','0','0','b73c3270404e4dd3a25bf128a6cc0ef2','0','2','0'), ('38171','18','','10473','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45296','','','','','200','1','0','','','0','0','0','0','0','0','0','fe0b8b2c15ef45b7b61a97e2624d40f8','0','2','0'), ('38172','18','','10473','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45296','','','','','200','1','0','','','0','0','0','0','0','0','0','f5080d802e114edea1a74513cad65043','0','2','0'), ('38174','18','','10473','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45292','','','','','200','1','0','','','0','0','0','0','0','0','0','0fde6656cbcb41839171e972e6fea8ac','0','2','0'), ('38175','18','','10473','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45292','','','','','200','1','0','','','0','0','0','0','0','0','0','a73e8eeae6044e6098e55abc93010a29','0','2','0'), ('38204','18','','10474','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45299','','','','','200','1','0','','','0','0','0','0','0','0','0','06ffa927f56746138f8bb938b1875c51','0','2','0'), ('38207','18','','10474','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45302','','','','','200','1','0','','','0','0','0','0','0','0','0','bcf3a43092af4746bd6260c0fbc0961e','0','2','0'), ('38208','18','','10474','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45302','','','','','200','1','0','','','0','0','0','0','0','0','0','e9ac830b1f3a41c19739f09a1d89e2e7','0','2','0'), ('38209','18','','10474','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45302','','','','','200','1','0','','','0','0','0','0','0','0','0','054261dc7c2141c3b176c8692f1d9709','0','2','0'), ('38210','18','','10474','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45298','','','','','200','1','0','','','0','0','0','0','0','0','0','8f1b9e4dcc914aaf945ca40f78f48d87','0','2','0'), ('38211','18','','10474','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45299','','','','','200','1','0','','','0','0','0','0','0','0','0','f9f2d060eebe444f893916e756f10d41','0','2','0'), ('38214','18','','10474','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45302','','','','','200','1','0','','','0','0','0','0','0','0','0','98abf29563eb46bfabe324973333e806','0','2','0'), ('38215','18','','10474','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45302','','','','','200','1','0','','','0','0','0','0','0','0','0','c9ffc4c45804499aa820715d6d939448','0','2','0'), ('38216','18','','10474','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45302','','','','','200','1','0','','','0','0','0','0','0','0','0','26a591c37a114fd8bdcc16a7144aa92c','0','2','0'), ('38217','18','','10474','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45302','','','','','200','1','0','','','0','0','0','0','0','0','0','cc7ca6b56a1f46ce9ed350511a8b2f17','0','2','0'), ('38218','18','','10474','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45302','','','','','200','1','0','','','0','0','0','0','0','0','0','5258a6d10fc14c66b721df917aaf13b0','0','2','0'), ('38219','18','','10474','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45302','','','','','200','1','0','','','0','0','0','0','0','0','0','d41f53d1a100475699f3afa9ec75eb14','0','2','0'), ('38220','18','','10474','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45302','','','','','200','1','0','','','0','0','0','0','0','0','0','ab3b88358f934afb9f9f3d9be2d32ded','0','2','0'), ('38221','18','','10474','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45302','','','','','200','1','0','','','0','0','0','0','0','0','0','02bd9f30327d4061809dc2a6ec76d152','0','2','0'), ('38222','18','','10474','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45302','','','','','200','1','0','','','0','0','0','0','0','0','0','d4b928ebdc964a86a6e10b054d73bf1b','0','2','0'), ('38223','18','','10474','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45302','','','','','200','1','0','','','0','0','0','0','0','0','0','65a5879884a944e9925c54f312c61dc5','0','2','0'), ('38224','18','','10474','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45302','','','','','200','1','0','','','0','0','0','0','0','0','0','0807ecb116b24ff09018962be0d0e457','0','2','0'), ('38225','18','','10474','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45302','','','','','200','1','0','','','0','0','0','0','0','0','0','27e9f662777645aa902981947c954800','0','2','0'), ('38226','18','','10474','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45302','','','','','200','1','0','','','0','0','0','0','0','0','0','679353503cb74edc85886f48b34d1f7d','0','2','0'), ('38228','18','','10474','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45298','','','','','200','1','0','','','0','0','0','0','0','0','0','f2329eab56e1412b89b33f7e4a39fe29','0','2','0'), ('38229','18','','10474','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45298','','','','','200','1','0','','','0','0','0','0','0','0','0','ffd4528f23d14c55ad0cc37e96c0037d','0','2','0'), ('38258','18','','10475','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45305','','','','','200','1','0','','','0','0','0','0','0','0','0','06aae70f34df4409af34ca144482a0eb','0','2','0'), ('38261','18','','10475','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45308','','','','','200','1','0','','','0','0','0','0','0','0','0','b50ab71d8aea456cb6f9c9248d4f7dbf','0','2','0'), ('38262','18','','10475','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45308','','','','','200','1','0','','','0','0','0','0','0','0','0','8a86e70394b14aca90cbd379f6aba7a3','0','2','0'), ('38263','18','','10475','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45308','','','','','200','1','0','','','0','0','0','0','0','0','0','2ea30a7ef6064f93967dc2c6e33eeb3a','0','2','0'), ('38264','18','','10475','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45304','','','','','200','1','0','','','0','0','0','0','0','0','0','840e6b4e7d664308b2ce4912effc36f7','0','2','0'), ('38265','18','','10475','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45305','','','','','200','1','0','','','0','0','0','0','0','0','0','400249b05da24140970579ae8d488406','0','2','0'), ('38268','18','','10475','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45308','','','','','200','1','0','','','0','0','0','0','0','0','0','5630a05024904a749c7b01d6ae94d783','0','2','0'), ('38269','18','','10475','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45308','','','','','200','1','0','','','0','0','0','0','0','0','0','4c8305bf9bdf40a8bade711fe408f825','0','2','0'), ('38270','18','','10475','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45308','','','','','200','1','0','','','0','0','0','0','0','0','0','bdca12c838c045d487053f390a6d8722','0','2','0'), ('38271','18','','10475','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45308','','','','','200','1','0','','','0','0','0','0','0','0','0','9d3604bde08943debef2b5e7c794c902','0','2','0'), ('38272','18','','10475','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45308','','','','','200','1','0','','','0','0','0','0','0','0','0','5e600d097e8b42c283fac75c41b4f032','0','2','0'), ('38273','18','','10475','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45308','','','','','200','1','0','','','0','0','0','0','0','0','0','1ba331166f2443f1940863a41904f241','0','2','0'), ('38274','18','','10475','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45308','','','','','200','1','0','','','0','0','0','0','0','0','0','c5dd9be7abc0465c8fbacf67f1ad5267','0','2','0'), ('38275','18','','10475','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45308','','','','','200','1','0','','','0','0','0','0','0','0','0','02aa0fbddbd34a9db73896ea41e35045','0','2','0'), ('38276','18','','10475','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45308','','','','','200','1','0','','','0','0','0','0','0','0','0','5a3e0dbe67f74cad870becbb1363a577','0','2','0'), ('38277','18','','10475','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45308','','','','','200','1','0','','','0','0','0','0','0','0','0','89bafc75794a491f87f97f7eb5a5c499','0','2','0'), ('38278','18','','10475','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45308','','','','','200','1','0','','','0','0','0','0','0','0','0','8ab55cb0548f41c0ad2a98bd409be417','0','2','0'), ('38279','18','','10475','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45308','','','','','200','1','0','','','0','0','0','0','0','0','0','f95630ccf4364ac995854d22918a0dbf','0','2','0'), ('38280','18','','10475','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45308','','','','','200','1','0','','','0','0','0','0','0','0','0','5f9ad684c36e4050beb3e6fd5851ec30','0','2','0'), ('38282','18','','10475','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45304','','','','','200','1','0','','','0','0','0','0','0','0','0','fec4bc35fb504363b8dac0473735b1d9','0','2','0'), ('38283','18','','10475','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45304','','','','','200','1','0','','','0','0','0','0','0','0','0','d4cc931928874bed96935faa743aaff2','0','2','0'), ('38312','18','','10476','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45311','','','','','200','1','0','','','0','0','0','0','0','0','0','506fab7cb3c045f890437a7e959f2171','0','2','0'), ('38315','18','','10476','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45314','','','','','200','1','0','','','0','0','0','0','0','0','0','714fc311cc2a46659cb42859cb196902','0','2','0'), ('38316','18','','10476','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45314','','','','','200','1','0','','','0','0','0','0','0','0','0','e35084133a5e4693aea5f84b96a6480a','0','2','0'), ('38317','18','','10476','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45314','','','','','200','1','0','','','0','0','0','0','0','0','0','1512667e82b743f09392103d73374861','0','2','0'), ('38318','18','','10476','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45310','','','','','200','1','0','','','0','0','0','0','0','0','0','5222de6258624467a0b0245312047307','0','2','0'), ('38319','18','','10476','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45311','','','','','200','1','0','','','0','0','0','0','0','0','0','f5b155d37a2148e694ab5815b3738894','0','2','0'), ('38322','18','','10476','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45314','','','','','200','1','0','','','0','0','0','0','0','0','0','69c1e3a5f4694ee59207ea3c56d3f643','0','2','0'), ('38323','18','','10476','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45314','','','','','200','1','0','','','0','0','0','0','0','0','0','bfceb2b2627a467ba9a3916b3c34d27f','0','2','0'), ('38324','18','','10476','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45314','','','','','200','1','0','','','0','0','0','0','0','0','0','7284e5a86c6e43c485e8c7b9ec633cad','0','2','0'), ('38325','18','','10476','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45314','','','','','200','1','0','','','0','0','0','0','0','0','0','8309561fc4f14ccdb69da3728c4fb0eb','0','2','0'), ('38326','18','','10476','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45314','','','','','200','1','0','','','0','0','0','0','0','0','0','56f594fa8595463886e857977c172eb3','0','2','0'), ('38327','18','','10476','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45314','','','','','200','1','0','','','0','0','0','0','0','0','0','48bba64f95304974819ef7a15bbbce85','0','2','0'), ('38328','18','','10476','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45314','','','','','200','1','0','','','0','0','0','0','0','0','0','401390a283de4ec29bfb1c0c99820a7e','0','2','0'), ('38329','18','','10476','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45314','','','','','200','1','0','','','0','0','0','0','0','0','0','b67454e3882d4c16bb51094017775630','0','2','0'), ('38330','18','','10476','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45314','','','','','200','1','0','','','0','0','0','0','0','0','0','db3274433926415b97f8e34a9f04a9ac','0','2','0'), ('38331','18','','10476','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45314','','','','','200','1','0','','','0','0','0','0','0','0','0','92e6fbfd1cf843fbb26a62aed1360214','0','2','0'), ('38332','18','','10476','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45314','','','','','200','1','0','','','0','0','0','0','0','0','0','c1d0e3150e5a4ad39f39cebe0a381aaa','0','2','0'), ('38333','18','','10476','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45314','','','','','200','1','0','','','0','0','0','0','0','0','0','c176e70d536e42c9aa62f4952e166c9b','0','2','0'), ('38334','18','','10476','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45314','','','','','200','1','0','','','0','0','0','0','0','0','0','df1e4f1603d14e07b5308d5fd5eb55b0','0','2','0'), ('38336','18','','10476','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45310','','','','','200','1','0','','','0','0','0','0','0','0','0','8303806786424c7499d013d4a55d4b6a','0','2','0'), ('38337','18','','10476','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45310','','','','','200','1','0','','','0','0','0','0','0','0','0','f9361907c6b944a0b282fc8ecabe050f','0','2','0'), ('38366','18','','10477','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45317','','','','','200','1','0','','','0','0','0','0','0','0','0','95a34c80dcd848e3b5ccad0f57a06532','0','2','0'), ('38369','18','','10477','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45320','','','','','200','1','0','','','0','0','0','0','0','0','0','1250fe89b2b645adb6d8a444e286c34a','0','2','0'), ('38370','18','','10477','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45320','','','','','200','1','0','','','0','0','0','0','0','0','0','e8d513955f9b4f819c408cf3aac35ec1','0','2','0'), ('38371','18','','10477','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45320','','','','','200','1','0','','','0','0','0','0','0','0','0','829a233a44aa4cd2880732ad863d2d27','0','2','0'), ('38372','18','','10477','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45316','','','','','200','1','0','','','0','0','0','0','0','0','0','0cad2cd6715f44d6a912a63cdc15926b','0','2','0'), ('38373','18','','10477','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45317','','','','','200','1','0','','','0','0','0','0','0','0','0','a1d0f17280d543bb825830f808dad88a','0','2','0'), ('38376','18','','10477','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45320','','','','','200','1','0','','','0','0','0','0','0','0','0','65bd1f9096914fa5952a842f869376e3','0','2','0'), ('38377','18','','10477','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45320','','','','','200','1','0','','','0','0','0','0','0','0','0','da6ebd895cb7465d964de43bb1f97125','0','2','0'), ('38378','18','','10477','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45320','','','','','200','1','0','','','0','0','0','0','0','0','0','817d4b9c195c4b74a986dee3f509d56f','0','2','0'), ('38379','18','','10477','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45320','','','','','200','1','0','','','0','0','0','0','0','0','0','3031a59f08914941ae9f7fc8f494b132','0','2','0'), ('38380','18','','10477','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45320','','','','','200','1','0','','','0','0','0','0','0','0','0','22665dbacc9d48d985d7ca4e463319b5','0','2','0'), ('38381','18','','10477','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45320','','','','','200','1','0','','','0','0','0','0','0','0','0','18664eb3c8dd4e768f9de382ee8bba85','0','2','0'), ('38382','18','','10477','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45320','','','','','200','1','0','','','0','0','0','0','0','0','0','a6badb125d8d412a8d9142882ab4b956','0','2','0'), ('38383','18','','10477','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45320','','','','','200','1','0','','','0','0','0','0','0','0','0','bb2ad51473f04db188bd4e335591b94b','0','2','0'), ('38384','18','','10477','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45320','','','','','200','1','0','','','0','0','0','0','0','0','0','8afb3efbe69e4541bc74760ab4ba3130','0','2','0'), ('38385','18','','10477','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45320','','','','','200','1','0','','','0','0','0','0','0','0','0','b2a8832875e14a0f9639de640f260e92','0','2','0'), ('38386','18','','10477','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45320','','','','','200','1','0','','','0','0','0','0','0','0','0','7e4ba0da31a24287b12f07940f449131','0','2','0'), ('38387','18','','10477','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45320','','','','','200','1','0','','','0','0','0','0','0','0','0','30511ea997e740d2a6313005e7f56a71','0','2','0'), ('38388','18','','10477','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45320','','','','','200','1','0','','','0','0','0','0','0','0','0','01e691a3d2fb401484af4e768cab09b7','0','2','0'), ('38390','18','','10477','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45316','','','','','200','1','0','','','0','0','0','0','0','0','0','435c8ca87deb4fbfad0df451c9b3dc57','0','2','0'), ('38391','18','','10477','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45316','','','','','200','1','0','','','0','0','0','0','0','0','0','5c7b4cf01d2d4b8f9cb5022a54b4593d','0','2','0'), ('38420','18','','10478','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45323','','','','','200','1','0','','','0','0','0','0','0','0','0','a67f85c892114c60bf0daac055b2a8b4','0','2','0'), ('38423','18','','10478','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45326','','','','','200','1','0','','','0','0','0','0','0','0','0','92d612ae6ba74d01a369713b27732da4','0','2','0'), ('38424','18','','10478','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45326','','','','','200','1','0','','','0','0','0','0','0','0','0','479f5860d57c4a89869b03c98cb17e0d','0','2','0'), ('38425','18','','10478','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45326','','','','','200','1','0','','','0','0','0','0','0','0','0','6177e332ddf1464a843560c8aaef03f8','0','2','0'), ('38426','18','','10478','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45322','','','','','200','1','0','','','0','0','0','0','0','0','0','9d5a922b41df4c9ba2e6c806aaa86ea5','0','2','0'), ('38427','18','','10478','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45323','','','','','200','1','0','','','0','0','0','0','0','0','0','4869b0ebcc9a4b7aa230dea7fecdc772','0','2','0'), ('38430','18','','10478','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45326','','','','','200','1','0','','','0','0','0','0','0','0','0','2461a98399364aabb2774f0330a09f38','0','2','0'), ('38431','18','','10478','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45326','','','','','200','1','0','','','0','0','0','0','0','0','0','932b36d99dea4cc6b41daef5b452adb2','0','2','0'), ('38432','18','','10478','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45326','','','','','200','1','0','','','0','0','0','0','0','0','0','e2d2db403dce4b8e980dce441399c31c','0','2','0'), ('38433','18','','10478','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45326','','','','','200','1','0','','','0','0','0','0','0','0','0','18d7874870c74f9e93bafba284a038d2','0','2','0'), ('38434','18','','10478','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45326','','','','','200','1','0','','','0','0','0','0','0','0','0','bd884aa372ad4c29bc0431068a6d665b','0','2','0'), ('38435','18','','10478','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45326','','','','','200','1','0','','','0','0','0','0','0','0','0','57f41aedeaf947c7b2b99e11a8f5f6a9','0','2','0'), ('38436','18','','10478','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45326','','','','','200','1','0','','','0','0','0','0','0','0','0','46026e2ec35649f181707026f49055a3','0','2','0'), ('38437','18','','10478','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45326','','','','','200','1','0','','','0','0','0','0','0','0','0','885b452398fd4131a80ae84b484018ac','0','2','0'), ('38438','18','','10478','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45326','','','','','200','1','0','','','0','0','0','0','0','0','0','b685866be093464f96fc8731e6cb24a6','0','2','0'), ('38439','18','','10478','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45326','','','','','200','1','0','','','0','0','0','0','0','0','0','39cd37fd8f5b49d0ada87b665a3af974','0','2','0'), ('38440','18','','10478','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45326','','','','','200','1','0','','','0','0','0','0','0','0','0','4249cd712d244445a4d69affa771b387','0','2','0'), ('38441','18','','10478','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45326','','','','','200','1','0','','','0','0','0','0','0','0','0','78346d4d85e045bdb151fb51108d81ed','0','2','0'), ('38442','18','','10478','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45326','','','','','200','1','0','','','0','0','0','0','0','0','0','f836d1e069cc40fa9e31fd12456a9155','0','2','0'), ('38444','18','','10478','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45322','','','','','200','1','0','','','0','0','0','0','0','0','0','0496f8a356b14caa8a06ec4be8b04e65','0','2','0'), ('38445','18','','10478','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45322','','','','','200','1','0','','','0','0','0','0','0','0','0','7805deb172f0405ca211e47bb49eb557','0','2','0'), ('38474','18','','10479','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45329','','','','','200','1','0','','','0','0','0','0','0','0','0','fc9d85ea9e364ae58f4bd34dc702bd29','0','2','0'), ('38477','18','','10479','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45332','','','','','200','1','0','','','0','0','0','0','0','0','0','7040fb77df5b4300bc9084b76b901940','0','2','0'), ('38478','18','','10479','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45332','','','','','200','1','0','','','0','0','0','0','0','0','0','740cd4e70898478caef811525702e0eb','0','2','0'), ('38479','18','','10479','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45332','','','','','200','1','0','','','0','0','0','0','0','0','0','6059d2ecbecd480b85d1c4e94eb65059','0','2','0'), ('38480','18','','10479','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45328','','','','','200','1','0','','','0','0','0','0','0','0','0','9eb6e527f56c445f8ca77717742472a7','0','2','0'), ('38481','18','','10479','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45329','','','','','200','1','0','','','0','0','0','0','0','0','0','afc355f3e1ed467ea0103f8bbcd426e0','0','2','0'), ('38484','18','','10479','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45332','','','','','200','1','0','','','0','0','0','0','0','0','0','12c180e262234293a6f1546424797d21','0','2','0'), ('38485','18','','10479','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45332','','','','','200','1','0','','','0','0','0','0','0','0','0','cfb4d7bc97054f2fa76d9b945f65f151','0','2','0'), ('38486','18','','10479','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45332','','','','','200','1','0','','','0','0','0','0','0','0','0','8d134db6ad6342308926fa1de66a1f42','0','2','0'), ('38487','18','','10479','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45332','','','','','200','1','0','','','0','0','0','0','0','0','0','de1b466fd287481cacebcbea3339d984','0','2','0'), ('38488','18','','10479','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45332','','','','','200','1','0','','','0','0','0','0','0','0','0','da1b743f2888401394de67c74e54aa72','0','2','0'), ('38489','18','','10479','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45332','','','','','200','1','0','','','0','0','0','0','0','0','0','9132dd54ff2f44cc8ddcb152c892ee06','0','2','0'), ('38490','18','','10479','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45332','','','','','200','1','0','','','0','0','0','0','0','0','0','867d40ce9bf44892b0f70f8465f727b0','0','2','0'), ('38491','18','','10479','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45332','','','','','200','1','0','','','0','0','0','0','0','0','0','f16dcddcb1344f3db732c7e794bd5bad','0','2','0'), ('38492','18','','10479','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45332','','','','','200','1','0','','','0','0','0','0','0','0','0','cfe19d4825d14a91975023848a7464d8','0','2','0'), ('38493','18','','10479','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45332','','','','','200','1','0','','','0','0','0','0','0','0','0','b9d03050f7234ec48d380fc686ea35c7','0','2','0'), ('38494','18','','10479','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45332','','','','','200','1','0','','','0','0','0','0','0','0','0','71332c155c18442ab89d0f3bf49a11e3','0','2','0'), ('38495','18','','10479','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45332','','','','','200','1','0','','','0','0','0','0','0','0','0','706ba145d130418995b4e61b19df3a6d','0','2','0'), ('38496','18','','10479','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45332','','','','','200','1','0','','','0','0','0','0','0','0','0','a852223b28574abc9d76dc0053699209','0','2','0'), ('38498','18','','10479','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45328','','','','','200','1','0','','','0','0','0','0','0','0','0','acd377f6db0f4a7eab0c1289309b69ad','0','2','0'), ('38499','18','','10479','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45328','','','','','200','1','0','','','0','0','0','0','0','0','0','7a66d6925e3d48c6aae02daaf1051860','0','2','0'), ('38528','18','','10480','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45335','','','','','200','1','0','','','0','0','0','0','0','0','0','169cb8a2290645ef8b19b1fb559471cd','0','2','0'), ('38531','18','','10480','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45338','','','','','200','1','0','','','0','0','0','0','0','0','0','7ff8e43421a3408d99e3cf038cd1d32c','0','2','0'), ('38532','18','','10480','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45338','','','','','200','1','0','','','0','0','0','0','0','0','0','8dccf29262d64d02aa9ec070a113e9c5','0','2','0'), ('38533','18','','10480','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45338','','','','','200','1','0','','','0','0','0','0','0','0','0','03b7a6369c624c169416d85d6bdd8bd3','0','2','0'), ('38534','18','','10480','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45334','','','','','200','1','0','','','0','0','0','0','0','0','0','4f9aab06d404429095f58719a45169df','0','2','0'), ('38535','18','','10480','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45335','','','','','200','1','0','','','0','0','0','0','0','0','0','9056ec8b1cf84e4c972b77897908e8af','0','2','0'), ('38538','18','','10480','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45338','','','','','200','1','0','','','0','0','0','0','0','0','0','74dbe99ea3f84e25b5c9b675615d6234','0','2','0'), ('38539','18','','10480','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45338','','','','','200','1','0','','','0','0','0','0','0','0','0','6044310bd6814fcea1bfc496fdb4e1cd','0','2','0'), ('38540','18','','10480','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45338','','','','','200','1','0','','','0','0','0','0','0','0','0','a34aaedb745d46c3b60a53ba3f4619fd','0','2','0'), ('38541','18','','10480','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45338','','','','','200','1','0','','','0','0','0','0','0','0','0','777ea9e79ab24c9b9cc524317c5d7a3e','0','2','0'), ('38542','18','','10480','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45338','','','','','200','1','0','','','0','0','0','0','0','0','0','7da2dfc825894d23830e461da773d2a8','0','2','0'), ('38543','18','','10480','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45338','','','','','200','1','0','','','0','0','0','0','0','0','0','02f7b1b3fb6f4a66bc4b02dedc2e08dd','0','2','0'), ('38544','18','','10480','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45338','','','','','200','1','0','','','0','0','0','0','0','0','0','59a008e602744b87a435d43ffcbd7270','0','2','0'), ('38545','18','','10480','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45338','','','','','200','1','0','','','0','0','0','0','0','0','0','41d0a02df0d6474895eb69c559da7d86','0','2','0'), ('38546','18','','10480','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45338','','','','','200','1','0','','','0','0','0','0','0','0','0','479ac2c04b3144ababdeddb75a0437f8','0','2','0'), ('38547','18','','10480','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45338','','','','','200','1','0','','','0','0','0','0','0','0','0','e7fabf081a154b6bb345bdf08bb655ca','0','2','0'), ('38548','18','','10480','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45338','','','','','200','1','0','','','0','0','0','0','0','0','0','54de59401d8b40f3b6446780d13a89f8','0','2','0'), ('38549','18','','10480','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45338','','','','','200','1','0','','','0','0','0','0','0','0','0','d32f654355f64421aeae49b6fbedd976','0','2','0'), ('38550','18','','10480','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45338','','','','','200','1','0','','','0','0','0','0','0','0','0','b5341b9ed36045ce951f455232b74983','0','2','0'), ('38552','18','','10480','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45334','','','','','200','1','0','','','0','0','0','0','0','0','0','1065889d15ad41cea31648c789a72035','0','2','0'), ('38553','18','','10480','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45334','','','','','200','1','0','','','0','0','0','0','0','0','0','8eb65066ede74a32968a87485801775a','0','2','0'), ('38582','18','','10481','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45341','','','','','200','1','0','','','0','0','0','0','0','0','0','25d6d157fcd943fb9f0c56077cd77c9b','0','2','0'), ('38585','18','','10481','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45344','','','','','200','1','0','','','0','0','0','0','0','0','0','11214845bb78433d85ffbc220a53384a','0','2','0'), ('38586','18','','10481','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45344','','','','','200','1','0','','','0','0','0','0','0','0','0','132311b3514a496b9668605a9b37e22a','0','2','0'), ('38587','18','','10481','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45344','','','','','200','1','0','','','0','0','0','0','0','0','0','54e807c66d9e42089ace3bae82bce367','0','2','0'), ('38588','18','','10481','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45340','','','','','200','1','0','','','0','0','0','0','0','0','0','708837461f69453cac8eeddac2ed95ff','0','2','0'), ('38589','18','','10481','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45341','','','','','200','1','0','','','0','0','0','0','0','0','0','bca98eb13b794c299f72820136883671','0','2','0'), ('38592','18','','10481','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45344','','','','','200','1','0','','','0','0','0','0','0','0','0','2ff135f602264e0199f6cc0e622a9cf3','0','2','0'), ('38593','18','','10481','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45344','','','','','200','1','0','','','0','0','0','0','0','0','0','668dc62196eb4aae90a39ca3dc039b07','0','2','0'), ('38594','18','','10481','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45344','','','','','200','1','0','','','0','0','0','0','0','0','0','2d38d81dfcf24505962a0f6b03c7734d','0','2','0'), ('38595','18','','10481','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45344','','','','','200','1','0','','','0','0','0','0','0','0','0','191ddb89d1bb47a3bed0dc8b22eb2234','0','2','0'), ('38596','18','','10481','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45344','','','','','200','1','0','','','0','0','0','0','0','0','0','7caf1b16bfb34b83ad1883f5270bea00','0','2','0'), ('38597','18','','10481','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45344','','','','','200','1','0','','','0','0','0','0','0','0','0','1bd56573eac644f7b76ec3dd1099e6ea','0','2','0'), ('38598','18','','10481','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45344','','','','','200','1','0','','','0','0','0','0','0','0','0','729b8bf1472c4ddda72ccb601740ccbb','0','2','0'), ('38599','18','','10481','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45344','','','','','200','1','0','','','0','0','0','0','0','0','0','fcd60ae4386a4eb2bac72c7544d915df','0','2','0'), ('38600','18','','10481','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45344','','','','','200','1','0','','','0','0','0','0','0','0','0','9089bdc9a64a41f9b4b69b241ae27b5b','0','2','0'), ('38601','18','','10481','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45344','','','','','200','1','0','','','0','0','0','0','0','0','0','de6f8a579d4e4ccd858e5f017c787653','0','2','0'), ('38602','18','','10481','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45344','','','','','200','1','0','','','0','0','0','0','0','0','0','790cae75cd274f279c221854015e2ba0','0','2','0'), ('38603','18','','10481','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45344','','','','','200','1','0','','','0','0','0','0','0','0','0','ab549ccfcdb7413a913ed6fe33430cc8','0','2','0'), ('38604','18','','10481','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45344','','','','','200','1','0','','','0','0','0','0','0','0','0','e773a8468b604062b7838b19039a21c4','0','2','0'), ('38606','18','','10481','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45340','','','','','200','1','0','','','0','0','0','0','0','0','0','d581f883c370430ba37c89a43a7ffab6','0','2','0'), ('38607','18','','10481','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45340','','','','','200','1','0','','','0','0','0','0','0','0','0','e36052b8960b4107a1222cda719dfb35','0','2','0'), ('38636','18','','10482','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45347','','','','','200','1','0','','','0','0','0','0','0','0','0','c3b780f997184c4582d1f78ab246ee5b','0','2','0'), ('38639','18','','10482','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45350','','','','','200','1','0','','','0','0','0','0','0','0','0','4fede59bf19241c6a0b730ca22a41a95','0','2','0'), ('38640','18','','10482','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45350','','','','','200','1','0','','','0','0','0','0','0','0','0','ce069decd92a49b1b9e119214db8b454','0','2','0'), ('38641','18','','10482','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45350','','','','','200','1','0','','','0','0','0','0','0','0','0','53309eb8dfcb4772a0adb0c81cb4f155','0','2','0'), ('38642','18','','10482','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45346','','','','','200','1','0','','','0','0','0','0','0','0','0','008a264a38134966870cf3834e5843c0','0','2','0'), ('38643','18','','10482','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45347','','','','','200','1','0','','','0','0','0','0','0','0','0','f97d176c12434b40acf7c78ba16281c3','0','2','0'), ('38646','18','','10482','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45350','','','','','200','1','0','','','0','0','0','0','0','0','0','e29ee4177ba844ad81f1a806c6fe6249','0','2','0'), ('38647','18','','10482','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45350','','','','','200','1','0','','','0','0','0','0','0','0','0','c091457e6f3c40afa1ccc9bf925d3051','0','2','0'), ('38648','18','','10482','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45350','','','','','200','1','0','','','0','0','0','0','0','0','0','9e7ace2975934b8ba3e30af079be073d','0','2','0'), ('38649','18','','10482','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45350','','','','','200','1','0','','','0','0','0','0','0','0','0','6b58214098e54179b47c797dc6ef24d9','0','2','0'), ('38650','18','','10482','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45350','','','','','200','1','0','','','0','0','0','0','0','0','0','d11505d36324428ab52aaeebdd745e3b','0','2','0'), ('38651','18','','10482','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45350','','','','','200','1','0','','','0','0','0','0','0','0','0','04eae1230e61488d8dff502aa879182d','0','2','0'), ('38652','18','','10482','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45350','','','','','200','1','0','','','0','0','0','0','0','0','0','4eb4222707b14888b9385a8d39711a52','0','2','0'), ('38653','18','','10482','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45350','','','','','200','1','0','','','0','0','0','0','0','0','0','0cfca6cd2419475d94a3f6ca8dfdfe90','0','2','0'), ('38654','18','','10482','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45350','','','','','200','1','0','','','0','0','0','0','0','0','0','956eb6d3e03143edb7b1c23e5a081842','0','2','0'), ('38655','18','','10482','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45350','','','','','200','1','0','','','0','0','0','0','0','0','0','37fc95a13ea043b7ada13a147e2ab280','0','2','0'), ('38656','18','','10482','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45350','','','','','200','1','0','','','0','0','0','0','0','0','0','3c0821c1de9d43e58780de3729fb27c4','0','2','0'), ('38657','18','','10482','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45350','','','','','200','1','0','','','0','0','0','0','0','0','0','6fd532b46b944a7d8b8f188f9d0b11d1','0','2','0'), ('38658','18','','10482','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45350','','','','','200','1','0','','','0','0','0','0','0','0','0','38a6aba4e8df4833926424670f198be4','0','2','0'), ('38660','18','','10482','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45346','','','','','200','1','0','','','0','0','0','0','0','0','0','1107dc2e53fa47d6ab9678e50b824d7f','0','2','0'), ('38661','18','','10482','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45346','','','','','200','1','0','','','0','0','0','0','0','0','0','da751c6f6d0d4c1ea7615f96f0213113','0','2','0'), ('38690','18','','10483','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45353','','','','','200','1','0','','','0','0','0','0','0','0','0','430a8cab45af4c24b72972d6373fccd9','0','2','0'), ('38693','18','','10483','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45356','','','','','200','1','0','','','0','0','0','0','0','0','0','fe42e32d477d4718bf37ff36ff630bb7','0','2','0'), ('38694','18','','10483','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45356','','','','','200','1','0','','','0','0','0','0','0','0','0','9dab50003a824e0faddea18cf89e88b2','0','2','0'), ('38695','18','','10483','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45356','','','','','200','1','0','','','0','0','0','0','0','0','0','1d8f0b4f75a044a0a5d8547471514346','0','2','0'), ('38696','18','','10483','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45352','','','','','200','1','0','','','0','0','0','0','0','0','0','8a9272779331436896db3a69fac40bb7','0','2','0'), ('38697','18','','10483','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45353','','','','','200','1','0','','','0','0','0','0','0','0','0','c11b3e4201f24576bd2947f464af430d','0','2','0'), ('38700','18','','10483','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45356','','','','','200','1','0','','','0','0','0','0','0','0','0','a56f2452a3a4404a8fad38827100fce4','0','2','0'), ('38701','18','','10483','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45356','','','','','200','1','0','','','0','0','0','0','0','0','0','4d1753721a72454f8681ca87affad3a9','0','2','0'), ('38702','18','','10483','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45356','','','','','200','1','0','','','0','0','0','0','0','0','0','ea0e06c8297147bc9afb9c878f757efe','0','2','0'), ('38703','18','','10483','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45356','','','','','200','1','0','','','0','0','0','0','0','0','0','6c9e70511a6c400a968eee3119cb32a3','0','2','0'), ('38704','18','','10483','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45356','','','','','200','1','0','','','0','0','0','0','0','0','0','0cd27b4eb0ac4eed88c3804848186016','0','2','0'), ('38705','18','','10483','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45356','','','','','200','1','0','','','0','0','0','0','0','0','0','1d48037aa1f844d49029ed722defe80e','0','2','0'), ('38706','18','','10483','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45356','','','','','200','1','0','','','0','0','0','0','0','0','0','554c6d88b86641a1a9fc6d1bde08eeb9','0','2','0'), ('38707','18','','10483','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45356','','','','','200','1','0','','','0','0','0','0','0','0','0','44f03138eed845a693b071a9d7171c68','0','2','0'), ('38708','18','','10483','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45356','','','','','200','1','0','','','0','0','0','0','0','0','0','41192738c7564ca0ad454ab525046438','0','2','0'), ('38709','18','','10483','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45356','','','','','200','1','0','','','0','0','0','0','0','0','0','8ed53c72c98940a79c5eb8c840c884f3','0','2','0'), ('38710','18','','10483','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45356','','','','','200','1','0','','','0','0','0','0','0','0','0','a23cdf72497c47769a089496d4b06773','0','2','0'), ('38711','18','','10483','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45356','','','','','200','1','0','','','0','0','0','0','0','0','0','94a9518972d041a4b82e9237311c6ff4','0','2','0'), ('38712','18','','10483','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45356','','','','','200','1','0','','','0','0','0','0','0','0','0','c88218013c5242dc934d0d92775f27e3','0','2','0'), ('38714','18','','10483','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45352','','','','','200','1','0','','','0','0','0','0','0','0','0','0b10047762544ca4b56a3fa543257cfd','0','2','0'), ('38715','18','','10483','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45352','','','','','200','1','0','','','0','0','0','0','0','0','0','149563c5cf7e42a18f3aaed2cc32c6bd','0','2','0'), ('38744','18','','10484','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45359','','','','','200','1','0','','','0','0','0','0','0','0','0','4d7e84f0ed08471d8ec0717c93d410dc','0','2','0'), ('38747','18','','10484','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45362','','','','','200','1','0','','','0','0','0','0','0','0','0','95cfcb66e6fb440d99b960637adfca93','0','2','0'), ('38748','18','','10484','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45362','','','','','200','1','0','','','0','0','0','0','0','0','0','cd991f115dfa4aed82ca363bea78c951','0','2','0'), ('38749','18','','10484','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45362','','','','','200','1','0','','','0','0','0','0','0','0','0','cbd4c9b8a0f64ea394f9d2d542aa25ef','0','2','0'), ('38750','18','','10484','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45358','','','','','200','1','0','','','0','0','0','0','0','0','0','731d669f787c45609df243f28ba610a3','0','2','0'), ('38751','18','','10484','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45359','','','','','200','1','0','','','0','0','0','0','0','0','0','bd42dc92c6b3407a909e979aff0e70a5','0','2','0'), ('38754','18','','10484','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45362','','','','','200','1','0','','','0','0','0','0','0','0','0','c69a7cf907b940bda9881ffc4a13c6f9','0','2','0'), ('38755','18','','10484','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45362','','','','','200','1','0','','','0','0','0','0','0','0','0','9f0442c4c061485080d0f8ff5f7c831f','0','2','0'), ('38756','18','','10484','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45362','','','','','200','1','0','','','0','0','0','0','0','0','0','7eda5e5f336a4366801c4cf98cf13520','0','2','0'), ('38757','18','','10484','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45362','','','','','200','1','0','','','0','0','0','0','0','0','0','79d3b5dad8af46c7972b28b208a439f6','0','2','0'), ('38758','18','','10484','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45362','','','','','200','1','0','','','0','0','0','0','0','0','0','c8379a61cf50439ca8fcf6e7bd9e1882','0','2','0'), ('38759','18','','10484','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45362','','','','','200','1','0','','','0','0','0','0','0','0','0','f1f871ee559e4cebb1fd1f535a38e01d','0','2','0'), ('38760','18','','10484','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45362','','','','','200','1','0','','','0','0','0','0','0','0','0','0d04c1ee59454dc2a6207ef39dfbcc1b','0','2','0'), ('38761','18','','10484','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45362','','','','','200','1','0','','','0','0','0','0','0','0','0','e0f09269707249ff95ccf4024c907f2f','0','2','0'), ('38762','18','','10484','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45362','','','','','200','1','0','','','0','0','0','0','0','0','0','3df5076b23ef4e05aa6bf24be663f6f0','0','2','0'), ('38763','18','','10484','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45362','','','','','200','1','0','','','0','0','0','0','0','0','0','0e75174bf57445c3852ef11b342b2892','0','2','0'), ('38764','18','','10484','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45362','','','','','200','1','0','','','0','0','0','0','0','0','0','774b0b02798a40fd95127ad17e182a03','0','2','0'), ('38765','18','','10484','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45362','','','','','200','1','0','','','0','0','0','0','0','0','0','fffdd563250347e4b489c9fa4d61bc87','0','2','0'), ('38766','18','','10484','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45362','','','','','200','1','0','','','0','0','0','0','0','0','0','3c94839027f64bddbc6b3d5abd0cc0bf','0','2','0'), ('38768','18','','10484','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45358','','','','','200','1','0','','','0','0','0','0','0','0','0','89ebfc327e5b4b63ae6571bd671489d9','0','2','0'), ('38769','18','','10484','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45358','','','','','200','1','0','','','0','0','0','0','0','0','0','94c3ff07a2aa4e1f9e7a5fcd35ae0d33','0','2','0'), ('38798','18','','10485','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45365','','','','','200','1','0','','','0','0','0','0','0','0','0','b8d5bf8f5a274ef68254b5ba1bf2e06e','0','2','0'), ('38801','18','','10485','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45368','','','','','200','1','0','','','0','0','0','0','0','0','0','f2ae9156eac7461183251fe44606a804','0','2','0'), ('38802','18','','10485','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45368','','','','','200','1','0','','','0','0','0','0','0','0','0','e3027e0691a94961bd3955fdaeb10344','0','2','0'), ('38803','18','','10485','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45368','','','','','200','1','0','','','0','0','0','0','0','0','0','ed8e11b608b84f5a803e37c11d22253c','0','2','0'), ('38804','18','','10485','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45364','','','','','200','1','0','','','0','0','0','0','0','0','0','18663281a59f4b2190affab16310ce72','0','2','0'), ('38805','18','','10485','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45365','','','','','200','1','0','','','0','0','0','0','0','0','0','e8f42ba36969459bae7a4fbbbf9acd17','0','2','0'), ('38808','18','','10485','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45368','','','','','200','1','0','','','0','0','0','0','0','0','0','84c75bb385dc4a3fb17713eb169ef8e1','0','2','0'), ('38809','18','','10485','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45368','','','','','200','1','0','','','0','0','0','0','0','0','0','575cdf6fe364405d8f5815d6f511f551','0','2','0'), ('38810','18','','10485','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45368','','','','','200','1','0','','','0','0','0','0','0','0','0','91fd8a8ecde749a8a689da2014049c76','0','2','0'), ('38811','18','','10485','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45368','','','','','200','1','0','','','0','0','0','0','0','0','0','46641f0183c24377a291635a57fb5b15','0','2','0'), ('38812','18','','10485','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45368','','','','','200','1','0','','','0','0','0','0','0','0','0','d1424ea6d6bb405dbcc828a7cd331fc2','0','2','0'), ('38813','18','','10485','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45368','','','','','200','1','0','','','0','0','0','0','0','0','0','7a0f50f929db4a38985261b221885ea2','0','2','0'), ('38814','18','','10485','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45368','','','','','200','1','0','','','0','0','0','0','0','0','0','e2113b513f02404c81ae0a924d51596d','0','2','0'), ('38815','18','','10485','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45368','','','','','200','1','0','','','0','0','0','0','0','0','0','18cb28a2ab264dc1acbb998f94a505ec','0','2','0'), ('38816','18','','10485','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45368','','','','','200','1','0','','','0','0','0','0','0','0','0','ff5d2e77f98e444690506781950f0421','0','2','0'), ('38817','18','','10485','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45368','','','','','200','1','0','','','0','0','0','0','0','0','0','85baf735bf374522aa03368ef023bd31','0','2','0'), ('38818','18','','10485','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45368','','','','','200','1','0','','','0','0','0','0','0','0','0','b931d7192a004ec9bd0986617bf7d61e','0','2','0'), ('38819','18','','10485','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45368','','','','','200','1','0','','','0','0','0','0','0','0','0','d09039bc2f7f4f8b8ba5263c5e44bde1','0','2','0'), ('38820','18','','10485','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45368','','','','','200','1','0','','','0','0','0','0','0','0','0','6939f8f2f12342ca8ef18c87ed5e78d0','0','2','0'), ('38822','18','','10485','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45364','','','','','200','1','0','','','0','0','0','0','0','0','0','ca68df704e444123a01895d9256b1f97','0','2','0'), ('38823','18','','10485','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45364','','','','','200','1','0','','','0','0','0','0','0','0','0','32c7e5e885304b859f223bc0575c92e1','0','2','0'), ('38852','18','','10486','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45371','','','','','200','1','0','','','0','0','0','0','0','0','0','670bb575294046a48f794a2dc778a5da','0','2','0'), ('38855','18','','10486','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45374','','','','','200','1','0','','','0','0','0','0','0','0','0','70b4d26ec96d45e781afeebe746ba1e7','0','2','0'), ('38856','18','','10486','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45374','','','','','200','1','0','','','0','0','0','0','0','0','0','b3809e90799748f5ba6f8215b17c80df','0','2','0'), ('38857','18','','10486','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45374','','','','','200','1','0','','','0','0','0','0','0','0','0','bae34f809a49486193684d22232e315a','0','2','0'), ('38858','18','','10486','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45370','','','','','200','1','0','','','0','0','0','0','0','0','0','6c508160b0494f7da7b44c6952db5042','0','2','0'), ('38859','18','','10486','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45371','','','','','200','1','0','','','0','0','0','0','0','0','0','9d2d64319d2d42d1be4381adce895a62','0','2','0'), ('38862','18','','10486','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45374','','','','','200','1','0','','','0','0','0','0','0','0','0','cb24ba6daff44ede865706f777e49558','0','2','0'), ('38863','18','','10486','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45374','','','','','200','1','0','','','0','0','0','0','0','0','0','b93fca52bea34a168af7374f8d2c04ee','0','2','0'), ('38864','18','','10486','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45374','','','','','200','1','0','','','0','0','0','0','0','0','0','67cae98893f642d2b0c4bdf11db1a30b','0','2','0'), ('38865','18','','10486','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45374','','','','','200','1','0','','','0','0','0','0','0','0','0','6c149338df7843e6bd195558d9d12ee8','0','2','0'), ('38866','18','','10486','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45374','','','','','200','1','0','','','0','0','0','0','0','0','0','20ddae019a2c469ea1ae211e09d87b5d','0','2','0'), ('38867','18','','10486','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45374','','','','','200','1','0','','','0','0','0','0','0','0','0','e6fdab57c4ac4d7db29e020ca2be465a','0','2','0'), ('38868','18','','10486','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45374','','','','','200','1','0','','','0','0','0','0','0','0','0','9a9a7b48404b47b1bca12b6aace8a025','0','2','0'), ('38869','18','','10486','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45374','','','','','200','1','0','','','0','0','0','0','0','0','0','70d5dd712b5b4993bf050410fccd1794','0','2','0'), ('38870','18','','10486','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45374','','','','','200','1','0','','','0','0','0','0','0','0','0','99ae41fb9ba84763884d3eb02f70de96','0','2','0'), ('38871','18','','10486','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45374','','','','','200','1','0','','','0','0','0','0','0','0','0','2ee6fbfd5e584b1485a9e2aa23e41945','0','2','0'), ('38872','18','','10486','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45374','','','','','200','1','0','','','0','0','0','0','0','0','0','ed5ba3fc1d4142f5a42dd75e57bf5583','0','2','0'), ('38873','18','','10486','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45374','','','','','200','1','0','','','0','0','0','0','0','0','0','fbb5e46eab824ff894528a54702ac824','0','2','0'), ('38874','18','','10486','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45374','','','','','200','1','0','','','0','0','0','0','0','0','0','c0b897b0fee1406fa0fe6a5d50debd27','0','2','0'), ('38876','18','','10486','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45370','','','','','200','1','0','','','0','0','0','0','0','0','0','40724614055e428db71f41bd19d4924a','0','2','0'), ('38877','18','','10486','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45370','','','','','200','1','0','','','0','0','0','0','0','0','0','350d841e1f99454283606a8af07f20d8','0','2','0'), ('38906','18','','10487','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45377','','','','','200','1','0','','','0','0','0','0','0','0','0','e909a37161a04c1794f5f27f817ef870','0','2','0'), ('38909','18','','10487','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45380','','','','','200','1','0','','','0','0','0','0','0','0','0','057ce43acaf24b6a970d0a6368c16092','0','2','0'), ('38910','18','','10487','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45380','','','','','200','1','0','','','0','0','0','0','0','0','0','0f19e3b4d64c4ae6acedd0fbd2094942','0','2','0'), ('38911','18','','10487','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45380','','','','','200','1','0','','','0','0','0','0','0','0','0','e8d6873c8ba344398cefa2b7cf0510ba','0','2','0'), ('38912','18','','10487','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45376','','','','','200','1','0','','','0','0','0','0','0','0','0','983c946b09b9488690b43ccdaf3969b5','0','2','0'), ('38913','18','','10487','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45377','','','','','200','1','0','','','0','0','0','0','0','0','0','bb419ac3a71446909b89fea0503fe8b8','0','2','0'), ('38916','18','','10487','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45380','','','','','200','1','0','','','0','0','0','0','0','0','0','7c28d5b873c241d598e84dead4674d62','0','2','0'), ('38917','18','','10487','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45380','','','','','200','1','0','','','0','0','0','0','0','0','0','b638cb8d9d014947ae1937b3fae245c8','0','2','0'), ('38918','18','','10487','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45380','','','','','200','1','0','','','0','0','0','0','0','0','0','e7e5263b25a34b2fa176101cbb3d79c6','0','2','0'), ('38919','18','','10487','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45380','','','','','200','1','0','','','0','0','0','0','0','0','0','1b3914c1eb1d4e53b38dc9d16670b61f','0','2','0'), ('38920','18','','10487','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45380','','','','','200','1','0','','','0','0','0','0','0','0','0','bd7e6ea3407e4f798b978589ea6b8613','0','2','0'), ('38921','18','','10487','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45380','','','','','200','1','0','','','0','0','0','0','0','0','0','589dcc0883b94ab59cd9d549242aa01d','0','2','0'), ('38922','18','','10487','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45380','','','','','200','1','0','','','0','0','0','0','0','0','0','b7013da0523b4257ad6cf10919d2e446','0','2','0'), ('38923','18','','10487','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45380','','','','','200','1','0','','','0','0','0','0','0','0','0','1cfeb4f0b1c84205b20c007d52a20fdb','0','2','0'), ('38924','18','','10487','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45380','','','','','200','1','0','','','0','0','0','0','0','0','0','d79f7c775cdb48f39909b6ca7e4ef9d3','0','2','0'), ('38925','18','','10487','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45380','','','','','200','1','0','','','0','0','0','0','0','0','0','b0ec2ef595354dabadd0d8d4936ab73c','0','2','0'), ('38926','18','','10487','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45380','','','','','200','1','0','','','0','0','0','0','0','0','0','c24334458fd446c9b9b72f10c10df63b','0','2','0'), ('38927','18','','10487','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45380','','','','','200','1','0','','','0','0','0','0','0','0','0','9d1fa283c578496b8dc757b277af72a4','0','2','0'), ('38928','18','','10487','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45380','','','','','200','1','0','','','0','0','0','0','0','0','0','2f13b2d5685640fc8290692c26261144','0','2','0'), ('38930','18','','10487','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45376','','','','','200','1','0','','','0','0','0','0','0','0','0','c999deba04d846b38c31642447806540','0','2','0'), ('38931','18','','10487','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45376','','','','','200','1','0','','','0','0','0','0','0','0','0','b64d80a23f57425385d5fb8e36c015ad','0','2','0'), ('38960','18','','10488','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45383','','','','','200','1','0','','','0','0','0','0','0','0','0','822fd977341648b0a79966a714e58257','0','2','0'), ('38963','18','','10488','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45386','','','','','200','1','0','','','0','0','0','0','0','0','0','c08a3dd904394cf29846630497e87d5a','0','2','0'), ('38964','18','','10488','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45386','','','','','200','1','0','','','0','0','0','0','0','0','0','41277234ea344cb5b42cbb9b4862e1f5','0','2','0'), ('38965','18','','10488','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45386','','','','','200','1','0','','','0','0','0','0','0','0','0','8b4de033e601487eb8a97e5cdbb3ac88','0','2','0'), ('38966','18','','10488','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45382','','','','','200','1','0','','','0','0','0','0','0','0','0','d1f10311b85e4bf3b2c146cdbf888df2','0','2','0'), ('38967','18','','10488','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45383','','','','','200','1','0','','','0','0','0','0','0','0','0','070b9699eebe4938b06a464f33bd3154','0','2','0'), ('38970','18','','10488','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45386','','','','','200','1','0','','','0','0','0','0','0','0','0','886f5cb0ec0544519ab2c3e69cea369a','0','2','0'), ('38971','18','','10488','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45386','','','','','200','1','0','','','0','0','0','0','0','0','0','4e4ca30922404b0ea9dd78e47b26385a','0','2','0'), ('38972','18','','10488','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45386','','','','','200','1','0','','','0','0','0','0','0','0','0','b006482c393f4f0790f25497b5da6c31','0','2','0'), ('38973','18','','10488','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45386','','','','','200','1','0','','','0','0','0','0','0','0','0','55bb3ead60744b758a12b42c021d0e85','0','2','0'), ('38974','18','','10488','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45386','','','','','200','1','0','','','0','0','0','0','0','0','0','138416a8fbbb450b86ab031adb8dcf00','0','2','0'), ('38975','18','','10488','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45386','','','','','200','1','0','','','0','0','0','0','0','0','0','e70a0e3c001f47bf93fa7458d8a30bf8','0','2','0'), ('38976','18','','10488','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45386','','','','','200','1','0','','','0','0','0','0','0','0','0','3555a29c614e4927b577349e0ba3efc5','0','2','0'), ('38977','18','','10488','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45386','','','','','200','1','0','','','0','0','0','0','0','0','0','1f07e24ab5e446cabd93af0936878ca6','0','2','0'), ('38978','18','','10488','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45386','','','','','200','1','0','','','0','0','0','0','0','0','0','c48101c768414fb09a948bd237086107','0','2','0'), ('38979','18','','10488','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45386','','','','','200','1','0','','','0','0','0','0','0','0','0','243a3f623bba44c88f1ba3223a6de970','0','2','0'), ('38980','18','','10488','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45386','','','','','200','1','0','','','0','0','0','0','0','0','0','b1af2acef4104aa5bff253add659c027','0','2','0'), ('38981','18','','10488','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45386','','','','','200','1','0','','','0','0','0','0','0','0','0','09b1511e2cd34810a2468ac47e36560e','0','2','0'), ('38982','18','','10488','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45386','','','','','200','1','0','','','0','0','0','0','0','0','0','846f7fb0449542b8b4081a98eebe3dd1','0','2','0'), ('38984','18','','10488','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45382','','','','','200','1','0','','','0','0','0','0','0','0','0','a71336fb643e4c85b67e3fb18244df4b','0','2','0'), ('38985','18','','10488','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45382','','','','','200','1','0','','','0','0','0','0','0','0','0','669704d6f48f429eb4a872d8937dd00a','0','2','0'), ('39014','18','','10489','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45389','','','','','200','1','0','','','0','0','0','0','0','0','0','4de6b86871874118b83ed7cfd31f3113','0','2','0'), ('39017','18','','10489','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45392','','','','','200','1','0','','','0','0','0','0','0','0','0','53adc733f3c34ddd943e5ccb41d1b536','0','2','0'), ('39018','18','','10489','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45392','','','','','200','1','0','','','0','0','0','0','0','0','0','65ce926cc8bb4e55859204eb287c640b','0','2','0'), ('39019','18','','10489','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45392','','','','','200','1','0','','','0','0','0','0','0','0','0','9ab6be8cd3f44b7ba6df32589b844e77','0','2','0'), ('39020','18','','10489','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45388','','','','','200','1','0','','','0','0','0','0','0','0','0','162e5f08fbcc4ad88fdb633731bd942a','0','2','0'), ('39021','18','','10489','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45389','','','','','200','1','0','','','0','0','0','0','0','0','0','4dcba527c8de49eb90a9cc58e881202e','0','2','0'), ('39024','18','','10489','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45392','','','','','200','1','0','','','0','0','0','0','0','0','0','23c7a946500a420a87ead3d7c923f176','0','2','0'), ('39025','18','','10489','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45392','','','','','200','1','0','','','0','0','0','0','0','0','0','93254f62b3e74acaa3c5839b9f844363','0','2','0'), ('39026','18','','10489','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45392','','','','','200','1','0','','','0','0','0','0','0','0','0','67eb22e623174b06a24460985521d3d4','0','2','0'), ('39027','18','','10489','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45392','','','','','200','1','0','','','0','0','0','0','0','0','0','dda3ef44c9204c46a8affb68aeeec803','0','2','0'), ('39028','18','','10489','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45392','','','','','200','1','0','','','0','0','0','0','0','0','0','bb7c28ff27104b0a8aa8f7052f71dd32','0','2','0'), ('39029','18','','10489','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45392','','','','','200','1','0','','','0','0','0','0','0','0','0','437edde63aa74619a3f4531039c1e73d','0','2','0'), ('39030','18','','10489','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45392','','','','','200','1','0','','','0','0','0','0','0','0','0','091618c93d8a405a94d4147d18d985d7','0','2','0'), ('39031','18','','10489','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45392','','','','','200','1','0','','','0','0','0','0','0','0','0','af82a882030b45ca90805a13bf4390f5','0','2','0'), ('39032','18','','10489','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45392','','','','','200','1','0','','','0','0','0','0','0','0','0','616f6787b7e8427aa727711c115afbed','0','2','0'), ('39033','18','','10489','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45392','','','','','200','1','0','','','0','0','0','0','0','0','0','29efb756bbc44a2bbd772633279cd754','0','2','0'), ('39034','18','','10489','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45392','','','','','200','1','0','','','0','0','0','0','0','0','0','0921eb633d6d44f2add1031cbc5ae2fa','0','2','0'), ('39035','18','','10489','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45392','','','','','200','1','0','','','0','0','0','0','0','0','0','a7a9c42aa3054035b9190a38f3456e44','0','2','0'), ('39036','18','','10489','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45392','','','','','200','1','0','','','0','0','0','0','0','0','0','23b17acfff4246208f744864e5af2108','0','2','0'), ('39038','18','','10489','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45388','','','','','200','1','0','','','0','0','0','0','0','0','0','ad4d9e4a1a5341fa841eecdd84acf8b8','0','2','0'), ('39039','18','','10489','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45388','','','','','200','1','0','','','0','0','0','0','0','0','0','fa6b2e7962e84b53ad0f7909984e6bca','0','2','0'), ('39068','18','','10490','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45395','','','','','200','1','0','','','0','0','0','0','0','0','0','f83ea9e9a0e646f5a9b8c7e1e0290512','0','2','0'), ('39071','18','','10490','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45398','','','','','200','1','0','','','0','0','0','0','0','0','0','4176400783ec41aca75e6edb5a2e7950','0','2','0'), ('39072','18','','10490','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45398','','','','','200','1','0','','','0','0','0','0','0','0','0','5d0bb62dda9747f4bf10059b0b318088','0','2','0'), ('39073','18','','10490','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45398','','','','','200','1','0','','','0','0','0','0','0','0','0','faa2bf517e6e46aaa8aebdc4571007b7','0','2','0'), ('39074','18','','10490','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45394','','','','','200','1','0','','','0','0','0','0','0','0','0','16ccb0c6d72f49e991f2034b06e7ad26','0','2','0'), ('39075','18','','10490','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45395','','','','','200','1','0','','','0','0','0','0','0','0','0','11a2162c7c734d0d935ca5b5e03b0b1f','0','2','0'), ('39078','18','','10490','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45398','','','','','200','1','0','','','0','0','0','0','0','0','0','a9d05b694288494c8a67065fae149b7e','0','2','0'), ('39079','18','','10490','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45398','','','','','200','1','0','','','0','0','0','0','0','0','0','0da46f1b48e34e8d866bdcee4c4f318e','0','2','0'), ('39080','18','','10490','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45398','','','','','200','1','0','','','0','0','0','0','0','0','0','9960c89e7efd40ea8df4da693350156b','0','2','0'), ('39081','18','','10490','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45398','','','','','200','1','0','','','0','0','0','0','0','0','0','8c703fdcb8fa4ce8978034d004c723fa','0','2','0'), ('39082','18','','10490','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45398','','','','','200','1','0','','','0','0','0','0','0','0','0','82b095474acf43708ed38960e819bac1','0','2','0'), ('39083','18','','10490','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45398','','','','','200','1','0','','','0','0','0','0','0','0','0','e493d9b31000454ab5322d128fc017dd','0','2','0'), ('39084','18','','10490','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45398','','','','','200','1','0','','','0','0','0','0','0','0','0','78e165faa8e84eb5a5b5e33de95667fb','0','2','0'), ('39085','18','','10490','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45398','','','','','200','1','0','','','0','0','0','0','0','0','0','3091e881221f4ac79337ee723e18bdae','0','2','0'), ('39086','18','','10490','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45398','','','','','200','1','0','','','0','0','0','0','0','0','0','00ffa0a22f24402ca0b28fcd8deb539a','0','2','0'), ('39087','18','','10490','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45398','','','','','200','1','0','','','0','0','0','0','0','0','0','895e3f8cb6774b13a2e51cbc10f2ddbb','0','2','0'), ('39088','18','','10490','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45398','','','','','200','1','0','','','0','0','0','0','0','0','0','dfe08b76e5794a918047afdeecd30244','0','2','0'), ('39089','18','','10490','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45398','','','','','200','1','0','','','0','0','0','0','0','0','0','fa59c976b98c4074a04183d569cc9c19','0','2','0'), ('39090','18','','10490','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45398','','','','','200','1','0','','','0','0','0','0','0','0','0','22ec1aa3f660417e9b99f341553ff158','0','2','0'), ('39092','18','','10490','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45394','','','','','200','1','0','','','0','0','0','0','0','0','0','c227791696414ebf9167558b1e2933f5','0','2','0'), ('39093','18','','10490','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45394','','','','','200','1','0','','','0','0','0','0','0','0','0','dd45e3173ac148caa583f5e39aa12889','0','2','0'), ('39122','18','','10491','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45401','','','','','200','1','0','','','0','0','0','0','0','0','0','3c377424bbb24740bebe49250a6770f5','0','2','0'), ('39125','18','','10491','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45404','','','','','200','1','0','','','0','0','0','0','0','0','0','407a0b73cfc041e3a338d9e8fe637fe9','0','2','0'), ('39126','18','','10491','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45404','','','','','200','1','0','','','0','0','0','0','0','0','0','9ce0b88fb735494aa3854a64f2c84f4d','0','2','0'), ('39127','18','','10491','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45404','','','','','200','1','0','','','0','0','0','0','0','0','0','cb2ad2c7ab5c4399b70031fd7c31f772','0','2','0'), ('39128','18','','10491','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45400','','','','','200','1','0','','','0','0','0','0','0','0','0','49c4ca48be2543ec9aab27b52c4a4f8b','0','2','0'), ('39129','18','','10491','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45401','','','','','200','1','0','','','0','0','0','0','0','0','0','3285f355316a4c1d9171f8cacd8f4928','0','2','0'), ('39132','18','','10491','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45404','','','','','200','1','0','','','0','0','0','0','0','0','0','166695395ca44bfab7cdacb6737a2c29','0','2','0'), ('39133','18','','10491','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45404','','','','','200','1','0','','','0','0','0','0','0','0','0','8f6aea26ce3744298233fa751137b0b0','0','2','0'), ('39134','18','','10491','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45404','','','','','200','1','0','','','0','0','0','0','0','0','0','37c41907076142bfb5a8884f959960f0','0','2','0'), ('39135','18','','10491','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45404','','','','','200','1','0','','','0','0','0','0','0','0','0','e019cd1da3644f5592ccdb904f8eda47','0','2','0'), ('39136','18','','10491','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45404','','','','','200','1','0','','','0','0','0','0','0','0','0','6cae369274a844128a5e524c2e453416','0','2','0'), ('39137','18','','10491','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45404','','','','','200','1','0','','','0','0','0','0','0','0','0','3e08aa7a5e9743b8bcc416a0e94c0310','0','2','0'), ('39138','18','','10491','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45404','','','','','200','1','0','','','0','0','0','0','0','0','0','fb4354c77ff94515954a4a4b537ac235','0','2','0'), ('39139','18','','10491','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45404','','','','','200','1','0','','','0','0','0','0','0','0','0','5c90dc649ab14bbfb174af66aa5cfb2b','0','2','0'), ('39140','18','','10491','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45404','','','','','200','1','0','','','0','0','0','0','0','0','0','5eae6da3d4684988abad5add9da275fd','0','2','0'), ('39141','18','','10491','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45404','','','','','200','1','0','','','0','0','0','0','0','0','0','2dd6648a8d9941b587b5fd248562c6e7','0','2','0'), ('39142','18','','10491','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45404','','','','','200','1','0','','','0','0','0','0','0','0','0','88092d9350254ce1ac44524b33f502b8','0','2','0'), ('39143','18','','10491','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45404','','','','','200','1','0','','','0','0','0','0','0','0','0','5cd10bfcae974f26865be0847bd481b1','0','2','0'), ('39144','18','','10491','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45404','','','','','200','1','0','','','0','0','0','0','0','0','0','05bba59e89ff4812a11393bc88e357ae','0','2','0'), ('39146','18','','10491','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45400','','','','','200','1','0','','','0','0','0','0','0','0','0','7d835648f2f64bf1a1615e9e70822ccd','0','2','0'), ('39147','18','','10491','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45400','','','','','200','1','0','','','0','0','0','0','0','0','0','f078344e85614978973618685d022859','0','2','0'), ('39176','18','','10492','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45407','','','','','200','1','0','','','0','0','0','0','0','0','0','261714f543bc43bbbbc2784aee405593','0','2','0'), ('39179','18','','10492','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45410','','','','','200','1','0','','','0','0','0','0','0','0','0','2f495a17418a47bfb48d7df1128eddd2','0','2','0'), ('39180','18','','10492','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45410','','','','','200','1','0','','','0','0','0','0','0','0','0','ab13751dc03e482db3d9f98c74fb1e40','0','2','0'), ('39181','18','','10492','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45410','','','','','200','1','0','','','0','0','0','0','0','0','0','4a884bea9c754839befbf0faf07e39a8','0','2','0'), ('39182','18','','10492','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45406','','','','','200','1','0','','','0','0','0','0','0','0','0','16d488e47b614bcca12af8f2493f8a0b','0','2','0'), ('39183','18','','10492','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45407','','','','','200','1','0','','','0','0','0','0','0','0','0','051141b1443a4312bade08bfa68d97c8','0','2','0'), ('39186','18','','10492','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45410','','','','','200','1','0','','','0','0','0','0','0','0','0','9e1b7a12b16a4e0a868a34e81b37187e','0','2','0'), ('39187','18','','10492','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45410','','','','','200','1','0','','','0','0','0','0','0','0','0','20c47d65290648a49f68a723111b6d20','0','2','0'), ('39188','18','','10492','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45410','','','','','200','1','0','','','0','0','0','0','0','0','0','4f03ff31d0654285828e4a78c960bc5e','0','2','0'), ('39189','18','','10492','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45410','','','','','200','1','0','','','0','0','0','0','0','0','0','5cc7f564912c4827aedb940f59e574dd','0','2','0'), ('39190','18','','10492','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45410','','','','','200','1','0','','','0','0','0','0','0','0','0','97f2d5c9a53b425fb490305bbdecb1d8','0','2','0'), ('39191','18','','10492','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45410','','','','','200','1','0','','','0','0','0','0','0','0','0','935ca7fa58e94bc2b4783676f57f1788','0','2','0'), ('39192','18','','10492','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45410','','','','','200','1','0','','','0','0','0','0','0','0','0','b0c6132fffb04ab3a4d392f35d2d418d','0','2','0'), ('39193','18','','10492','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45410','','','','','200','1','0','','','0','0','0','0','0','0','0','c7e6451019bd4780bb2ffa717c98ddfd','0','2','0'), ('39194','18','','10492','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45410','','','','','200','1','0','','','0','0','0','0','0','0','0','4783ff6618d74aabab4a998467091b59','0','2','0'), ('39195','18','','10492','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45410','','','','','200','1','0','','','0','0','0','0','0','0','0','bae785059d8b4d5ca3c29a0c64e52858','0','2','0'), ('39196','18','','10492','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45410','','','','','200','1','0','','','0','0','0','0','0','0','0','a01aec216aff475ab47c0d1ca9ebb6ac','0','2','0'), ('39197','18','','10492','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45410','','','','','200','1','0','','','0','0','0','0','0','0','0','5a6c2c39fd3e444eae67e221721463c0','0','2','0'), ('39198','18','','10492','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45410','','','','','200','1','0','','','0','0','0','0','0','0','0','859f9073a0b94928816ad037283b5e0b','0','2','0'), ('39200','18','','10492','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45406','','','','','200','1','0','','','0','0','0','0','0','0','0','4f634d0afb6542e0b27347ba8555d92b','0','2','0'), ('39201','18','','10492','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45406','','','','','200','1','0','','','0','0','0','0','0','0','0','5f55ba87f4084a4693c3c7f8818b5d6b','0','2','0'), ('39230','18','','10493','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45413','','','','','200','1','0','','','0','0','0','0','0','0','0','70b02231b6874b13a6f4f32808c7d7a9','0','2','0'), ('39233','18','','10493','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45416','','','','','200','1','0','','','0','0','0','0','0','0','0','3de8323ff508430eac61e3f1104d72d5','0','2','0'), ('39234','18','','10493','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45416','','','','','200','1','0','','','0','0','0','0','0','0','0','cb00ced4d3d04160a4074cf74455e7ca','0','2','0'), ('39235','18','','10493','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45416','','','','','200','1','0','','','0','0','0','0','0','0','0','9cbb1cad26b745ad9d18f4666a6380f7','0','2','0'), ('39236','18','','10493','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45412','','','','','200','1','0','','','0','0','0','0','0','0','0','dd1c96b4ca6a4dffb18c17227ccbe0f6','0','2','0'), ('39237','18','','10493','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45413','','','','','200','1','0','','','0','0','0','0','0','0','0','54c47bf1d9d64e9c8f45f8d9cfc135a6','0','2','0'), ('39240','18','','10493','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45416','','','','','200','1','0','','','0','0','0','0','0','0','0','5d3a719d567647c0914c7f5a742282c9','0','2','0'), ('39241','18','','10493','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45416','','','','','200','1','0','','','0','0','0','0','0','0','0','5d1bd43223bf41a699abb04ec1f6bf66','0','2','0'), ('39242','18','','10493','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45416','','','','','200','1','0','','','0','0','0','0','0','0','0','840ffc4306d843e6ba23b57fe736de14','0','2','0'), ('39243','18','','10493','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45416','','','','','200','1','0','','','0','0','0','0','0','0','0','ab9d6abcd72b46dc9fadd9bd638084a8','0','2','0'), ('39244','18','','10493','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45416','','','','','200','1','0','','','0','0','0','0','0','0','0','e88ae445d283419da86347c21756ac8d','0','2','0'), ('39245','18','','10493','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45416','','','','','200','1','0','','','0','0','0','0','0','0','0','389996b0d06b403da09ea7ad26d2058b','0','2','0'), ('39246','18','','10493','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45416','','','','','200','1','0','','','0','0','0','0','0','0','0','4126c7d4e1bc442ab3d64decbaf5bc2b','0','2','0'), ('39247','18','','10493','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45416','','','','','200','1','0','','','0','0','0','0','0','0','0','8b46ce31662e4784901bb62d8d427db6','0','2','0'), ('39248','18','','10493','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45416','','','','','200','1','0','','','0','0','0','0','0','0','0','da476e57bb0545ea9c5586dd359a8016','0','2','0'), ('39249','18','','10493','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45416','','','','','200','1','0','','','0','0','0','0','0','0','0','ca4f60a9add646869fbed2d3a9c669e4','0','2','0'), ('39250','18','','10493','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45416','','','','','200','1','0','','','0','0','0','0','0','0','0','47ad66f9b9be48a2b28bc1c294bc088e','0','2','0'), ('39251','18','','10493','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45416','','','','','200','1','0','','','0','0','0','0','0','0','0','3dd8fd21a42f493e81d42799c395f25b','0','2','0'), ('39252','18','','10493','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45416','','','','','200','1','0','','','0','0','0','0','0','0','0','1fe7cef52ef1453a97a7f23292cf7f6c','0','2','0'), ('39254','18','','10493','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45412','','','','','200','1','0','','','0','0','0','0','0','0','0','2fd43d9ea33a480286e331118e10bc11','0','2','0'), ('39255','18','','10493','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45412','','','','','200','1','0','','','0','0','0','0','0','0','0','c3d7e0d1fed74855897397a27938b090','0','2','0'), ('39284','18','','10494','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45419','','','','','200','1','0','','','0','0','0','0','0','0','0','b68414c0aaaf439cbf0c1c48bbd7203a','0','2','0'), ('39287','18','','10494','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45422','','','','','200','1','0','','','0','0','0','0','0','0','0','1fe627df6dea431593ca811a29049908','0','2','0'), ('39288','18','','10494','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45422','','','','','200','1','0','','','0','0','0','0','0','0','0','568c8d68683744a091aa4c40ea902e5d','0','2','0'), ('39289','18','','10494','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45422','','','','','200','1','0','','','0','0','0','0','0','0','0','f6efd53d717a49dc9b9e96cc6a670181','0','2','0'), ('39290','18','','10494','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45418','','','','','200','1','0','','','0','0','0','0','0','0','0','110e21a587044f2486479bd583cb21e1','0','2','0'), ('39291','18','','10494','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45419','','','','','200','1','0','','','0','0','0','0','0','0','0','e8aa4a6608c64edba3aa8a5dd4008350','0','2','0'), ('39294','18','','10494','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45422','','','','','200','1','0','','','0','0','0','0','0','0','0','7eec5f18909443408ac504689dd3035b','0','2','0'), ('39295','18','','10494','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45422','','','','','200','1','0','','','0','0','0','0','0','0','0','cad3593fb06346f7b8e5d293c570dc32','0','2','0'), ('39296','18','','10494','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45422','','','','','200','1','0','','','0','0','0','0','0','0','0','bbd99dc8983d44e2956f81592def392c','0','2','0'), ('39297','18','','10494','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45422','','','','','200','1','0','','','0','0','0','0','0','0','0','a7b2478c97854e1b8eab67bb0da603f1','0','2','0'), ('39298','18','','10494','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45422','','','','','200','1','0','','','0','0','0','0','0','0','0','ab249acfd6fd4e4384b08caa78975a27','0','2','0'), ('39299','18','','10494','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45422','','','','','200','1','0','','','0','0','0','0','0','0','0','6a4a5b09f98c48aca9f95166549411cd','0','2','0'), ('39300','18','','10494','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45422','','','','','200','1','0','','','0','0','0','0','0','0','0','803e24bc996e4ad69242c12b62040f19','0','2','0'), ('39301','18','','10494','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45422','','','','','200','1','0','','','0','0','0','0','0','0','0','4c6a4b99a41248a28779e5c3ed5f195f','0','2','0'), ('39302','18','','10494','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45422','','','','','200','1','0','','','0','0','0','0','0','0','0','1442e5f206ed4fa99f9a0b711da2e40d','0','2','0'), ('39303','18','','10494','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45422','','','','','200','1','0','','','0','0','0','0','0','0','0','4cfce086b7904dbf859af6049c31e1bf','0','2','0'), ('39304','18','','10494','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45422','','','','','200','1','0','','','0','0','0','0','0','0','0','b0f8d38a88534138a571429d09d2a728','0','2','0'), ('39305','18','','10494','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45422','','','','','200','1','0','','','0','0','0','0','0','0','0','da3f58e212c44b5aa39475a65038595c','0','2','0'), ('39306','18','','10494','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45422','','','','','200','1','0','','','0','0','0','0','0','0','0','aaf43960f1554a9986d09de5d19238b7','0','2','0'), ('39308','18','','10494','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45418','','','','','200','1','0','','','0','0','0','0','0','0','0','303a899d2a19448dab031c6265a5ebdd','0','2','0'), ('39309','18','','10494','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45418','','','','','200','1','0','','','0','0','0','0','0','0','0','cd0f312fa6044c639abb345c6297ab6b','0','2','0'), ('39338','18','','10495','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45425','','','','','200','1','0','','','0','0','0','0','0','0','0','2a630c50c8bc4b5d895accbe43af54f8','0','2','0'), ('39341','18','','10495','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45428','','','','','200','1','0','','','0','0','0','0','0','0','0','76bb411f762949169d70dc5f69ce43f7','0','2','0'), ('39342','18','','10495','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45428','','','','','200','1','0','','','0','0','0','0','0','0','0','814d31895b51492db101ebb5c184ce03','0','2','0'), ('39343','18','','10495','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45428','','','','','200','1','0','','','0','0','0','0','0','0','0','63b0a6b344984f679f06c11089b6bedc','0','2','0'), ('39344','18','','10495','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45424','','','','','200','1','0','','','0','0','0','0','0','0','0','567a3273ef3e464c8f5d995c3af5ff21','0','2','0'), ('39345','18','','10495','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45425','','','','','200','1','0','','','0','0','0','0','0','0','0','3cc001fddd7848d29d829479fbb74279','0','2','0'), ('39348','18','','10495','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45428','','','','','200','1','0','','','0','0','0','0','0','0','0','ad25c7037c8246558c996ebca60f97ad','0','2','0'), ('39349','18','','10495','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45428','','','','','200','1','0','','','0','0','0','0','0','0','0','7424d9ceb77b4a06a935b44f7c1ba568','0','2','0'), ('39350','18','','10495','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45428','','','','','200','1','0','','','0','0','0','0','0','0','0','f3a86df3351f4dd080031a9c821f5252','0','2','0'), ('39351','18','','10495','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45428','','','','','200','1','0','','','0','0','0','0','0','0','0','e551b72d1cd04297a9c9ea0e64e29255','0','2','0'), ('39352','18','','10495','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45428','','','','','200','1','0','','','0','0','0','0','0','0','0','21ca9e298c2b4e469eac9de27d00f3e1','0','2','0'), ('39353','18','','10495','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45428','','','','','200','1','0','','','0','0','0','0','0','0','0','4bf8c167c8f743bc8a5f0adf32d546fb','0','2','0'), ('39354','18','','10495','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45428','','','','','200','1','0','','','0','0','0','0','0','0','0','f9953f3ff399439eb71e80f410ebb4a2','0','2','0'), ('39355','18','','10495','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45428','','','','','200','1','0','','','0','0','0','0','0','0','0','be0690e2061e46709c35b4d1645eb4f6','0','2','0'), ('39356','18','','10495','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45428','','','','','200','1','0','','','0','0','0','0','0','0','0','27f4310379d14bf7bb6b30eebfabf2cc','0','2','0'), ('39357','18','','10495','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45428','','','','','200','1','0','','','0','0','0','0','0','0','0','a75ecbdb067e4b8e89fca2c467689822','0','2','0'), ('39358','18','','10495','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45428','','','','','200','1','0','','','0','0','0','0','0','0','0','dfa45dda12b448109f9cc04003c63812','0','2','0'), ('39359','18','','10495','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45428','','','','','200','1','0','','','0','0','0','0','0','0','0','65fdd09f484a4923bf5a379a9e5d5a8f','0','2','0'), ('39360','18','','10495','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45428','','','','','200','1','0','','','0','0','0','0','0','0','0','f49f8079f71948858ae1b158b6aa186f','0','2','0'), ('39362','18','','10495','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45424','','','','','200','1','0','','','0','0','0','0','0','0','0','868c3c9fe3c54e3193f3e0b6329828db','0','2','0'), ('39363','18','','10495','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45424','','','','','200','1','0','','','0','0','0','0','0','0','0','e75b2f65357c40e487b9b9f3387fcb0a','0','2','0'), ('39392','18','','10496','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45431','','','','','200','1','0','','','0','0','0','0','0','0','0','9311078329d04ea5a752806a0ee89918','0','2','0'), ('39395','18','','10496','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45434','','','','','200','1','0','','','0','0','0','0','0','0','0','2dd64ba5c59643f78d472e2281870390','0','2','0'), ('39396','18','','10496','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45434','','','','','200','1','0','','','0','0','0','0','0','0','0','63dc090d3529456e9e9a2eb19c288165','0','2','0'), ('39397','18','','10496','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45434','','','','','200','1','0','','','0','0','0','0','0','0','0','ba0e7757c7b645c98b67fda025e7c1d6','0','2','0'), ('39398','18','','10496','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45430','','','','','200','1','0','','','0','0','0','0','0','0','0','e626b00e480f4ff8a059be7e85934bf8','0','2','0'), ('39399','18','','10496','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45431','','','','','200','1','0','','','0','0','0','0','0','0','0','81d1874fd7d14f04b5c8511f34156869','0','2','0'), ('39402','18','','10496','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45434','','','','','200','1','0','','','0','0','0','0','0','0','0','eaeb2ee093644c169dffd897c7563704','0','2','0'), ('39403','18','','10496','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45434','','','','','200','1','0','','','0','0','0','0','0','0','0','0a022c73ee604112a46dac1d80312b35','0','2','0'), ('39404','18','','10496','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45434','','','','','200','1','0','','','0','0','0','0','0','0','0','d51b890123044db4bbbbbb2bf8255f11','0','2','0'), ('39405','18','','10496','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45434','','','','','200','1','0','','','0','0','0','0','0','0','0','6a60892c64f44ba39ac4db3ea3b06a76','0','2','0'), ('39406','18','','10496','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45434','','','','','200','1','0','','','0','0','0','0','0','0','0','4c2272fcee0445d9bc1214c1ba3816bf','0','2','0'), ('39407','18','','10496','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45434','','','','','200','1','0','','','0','0','0','0','0','0','0','38db6983c1044493ba02a2ca204ed981','0','2','0'), ('39408','18','','10496','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45434','','','','','200','1','0','','','0','0','0','0','0','0','0','58ba2fb7ac314593924d11dfddf96dcc','0','2','0'), ('39409','18','','10496','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45434','','','','','200','1','0','','','0','0','0','0','0','0','0','e6b23b9175eb4a97bce37e07d33891d0','0','2','0'), ('39410','18','','10496','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45434','','','','','200','1','0','','','0','0','0','0','0','0','0','b80ecc7de8714f48831cf1c6bb1870b9','0','2','0'), ('39411','18','','10496','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45434','','','','','200','1','0','','','0','0','0','0','0','0','0','8c1c9f22250c470caa565a55c70bf108','0','2','0'), ('39412','18','','10496','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45434','','','','','200','1','0','','','0','0','0','0','0','0','0','6be247ddc3a94489b25bee5595e7efea','0','2','0'), ('39413','18','','10496','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45434','','','','','200','1','0','','','0','0','0','0','0','0','0','1ea73c7d20834a168ebb4a5afca21e32','0','2','0'), ('39414','18','','10496','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45434','','','','','200','1','0','','','0','0','0','0','0','0','0','767c4c5614ff4802b8447079b31bbd42','0','2','0'), ('39416','18','','10496','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45430','','','','','200','1','0','','','0','0','0','0','0','0','0','05023f80d98c4234830e56c2c42059f7','0','2','0'), ('39417','18','','10496','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45430','','','','','200','1','0','','','0','0','0','0','0','0','0','f6dd161551a0414ca51e4f7c5b1de616','0','2','0'), ('39446','18','','10497','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45437','','','','','200','1','0','','','0','0','0','0','0','0','0','455bfeb9d0b14c77a43129d489e3140b','0','2','0'), ('39449','18','','10497','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45440','','','','','200','1','0','','','0','0','0','0','0','0','0','9bab04f1de2b4bb59ee2f5116b67829e','0','2','0'), ('39450','18','','10497','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45440','','','','','200','1','0','','','0','0','0','0','0','0','0','0e917c0aa21343248fe29278d61b961a','0','2','0'), ('39451','18','','10497','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45440','','','','','200','1','0','','','0','0','0','0','0','0','0','edb9c0ee0f4e4de2819919ddb2a88a99','0','2','0'), ('39452','18','','10497','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45436','','','','','200','1','0','','','0','0','0','0','0','0','0','63c54ef0b1a54c2a9cce978a5923d83f','0','2','0'), ('39453','18','','10497','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45437','','','','','200','1','0','','','0','0','0','0','0','0','0','e0fd55cedc7340f2a453865f02f3a668','0','2','0'), ('39456','18','','10497','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45440','','','','','200','1','0','','','0','0','0','0','0','0','0','88a280a7905449e793add1d1217f92f9','0','2','0'), ('39457','18','','10497','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45440','','','','','200','1','0','','','0','0','0','0','0','0','0','b04b0c8358f84225bd33ba0a4494bc91','0','2','0'), ('39458','18','','10497','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45440','','','','','200','1','0','','','0','0','0','0','0','0','0','9600e46ee74e48b48d169399b2dda431','0','2','0'), ('39459','18','','10497','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45440','','','','','200','1','0','','','0','0','0','0','0','0','0','67466da7befe41a9a0a6d84b6c2508d2','0','2','0'), ('39460','18','','10497','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45440','','','','','200','1','0','','','0','0','0','0','0','0','0','6e320401044041cda2c048b4af73fb8e','0','2','0'), ('39461','18','','10497','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45440','','','','','200','1','0','','','0','0','0','0','0','0','0','ad811b6b140844e59dd6ac2618e1b9bb','0','2','0'), ('39462','18','','10497','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45440','','','','','200','1','0','','','0','0','0','0','0','0','0','9e3847a985c14de59faf61670478b6bf','0','2','0'), ('39463','18','','10497','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45440','','','','','200','1','0','','','0','0','0','0','0','0','0','51174e5e7d41479fab6b9077ef5d40d9','0','2','0'), ('39464','18','','10497','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45440','','','','','200','1','0','','','0','0','0','0','0','0','0','bd2ece0be43f48b1a390d6f44c796f4a','0','2','0'), ('39465','18','','10497','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45440','','','','','200','1','0','','','0','0','0','0','0','0','0','b867fd906472452ba9c503fe7f82f680','0','2','0'), ('39466','18','','10497','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45440','','','','','200','1','0','','','0','0','0','0','0','0','0','e96e64d9fe5944b4b5bb1324fb2845b0','0','2','0'), ('39467','18','','10497','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45440','','','','','200','1','0','','','0','0','0','0','0','0','0','720d95d0ef294d019fc91b2ed2debb14','0','2','0'), ('39468','18','','10497','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45440','','','','','200','1','0','','','0','0','0','0','0','0','0','4d8828d7d008441fa7497dbc88d6d065','0','2','0'), ('39470','18','','10497','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45436','','','','','200','1','0','','','0','0','0','0','0','0','0','abea1d8e522a48fcb35d3b05b41cd576','0','2','0'), ('39471','18','','10497','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45436','','','','','200','1','0','','','0','0','0','0','0','0','0','ed5fce36f7904eb7bf5929b90fd5b535','0','2','0'), ('39500','18','','10498','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45443','','','','','200','1','0','','','0','0','0','0','0','0','0','9c7a81a8e2654d58acf463a00cce14f5','0','2','0'), ('39503','18','','10498','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45446','','','','','200','1','0','','','0','0','0','0','0','0','0','78120670dc214ff5833e8b65c830b9bf','0','2','0'), ('39504','18','','10498','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45446','','','','','200','1','0','','','0','0','0','0','0','0','0','39954b6664a74494a1af7de587704e43','0','2','0'), ('39505','18','','10498','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45446','','','','','200','1','0','','','0','0','0','0','0','0','0','c2d5d79d5dc14876ae9951c8813804cb','0','2','0'), ('39506','18','','10498','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45442','','','','','200','1','0','','','0','0','0','0','0','0','0','e89f36e5fdfd4ff0a22370dd45a900be','0','2','0'), ('39507','18','','10498','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45443','','','','','200','1','0','','','0','0','0','0','0','0','0','a9c3336d847a44e6b6e652e6acc6844b','0','2','0'), ('39510','18','','10498','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45446','','','','','200','1','0','','','0','0','0','0','0','0','0','53d319fb092540c490a945a1918b04a8','0','2','0'), ('39511','18','','10498','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45446','','','','','200','1','0','','','0','0','0','0','0','0','0','1da2986f9f9542b58781f141c95a268b','0','2','0'), ('39512','18','','10498','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45446','','','','','200','1','0','','','0','0','0','0','0','0','0','889d3fa6f6fb416bb66be28fbe59ea1e','0','2','0'), ('39513','18','','10498','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45446','','','','','200','1','0','','','0','0','0','0','0','0','0','4291982f94354c16812ffa4522e74a9b','0','2','0'), ('39514','18','','10498','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45446','','','','','200','1','0','','','0','0','0','0','0','0','0','522e6177173542d7b83e109447765c7a','0','2','0'), ('39515','18','','10498','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45446','','','','','200','1','0','','','0','0','0','0','0','0','0','01984514830c48d7a8b716700181bd19','0','2','0'), ('39516','18','','10498','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45446','','','','','200','1','0','','','0','0','0','0','0','0','0','40ba0370ec1b4432814c654bc65558fb','0','2','0'), ('39517','18','','10498','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45446','','','','','200','1','0','','','0','0','0','0','0','0','0','9984f8a346b1452d8ccac4e471ff6a18','0','2','0'), ('39518','18','','10498','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45446','','','','','200','1','0','','','0','0','0','0','0','0','0','21f387d4d01d47bc98852aee0cbc3e03','0','2','0'), ('39519','18','','10498','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45446','','','','','200','1','0','','','0','0','0','0','0','0','0','84066dd7587748e1908b38eae4029121','0','2','0'), ('39520','18','','10498','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45446','','','','','200','1','0','','','0','0','0','0','0','0','0','7dd11163c97f4d31b46b7fade589b135','0','2','0'), ('39521','18','','10498','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45446','','','','','200','1','0','','','0','0','0','0','0','0','0','84248b4499ec4b3399905bbb2a7d9e76','0','2','0'), ('39522','18','','10498','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45446','','','','','200','1','0','','','0','0','0','0','0','0','0','8a7f54f2f8b747bba0de16dd53750679','0','2','0'), ('39524','18','','10498','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45442','','','','','200','1','0','','','0','0','0','0','0','0','0','4e63d5682c0147f3a314ab6def8043b7','0','2','0'), ('39525','18','','10498','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45442','','','','','200','1','0','','','0','0','0','0','0','0','0','2c8d3e482b6a453e8f46ea59ea75445f','0','2','0'), ('39554','18','','10499','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45449','','','','','200','1','0','','','0','0','0','0','0','0','0','8bdd4763b58b4bb5ae2cd68f28a7d5aa','0','2','0'), ('39557','18','','10499','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45452','','','','','200','1','0','','','0','0','0','0','0','0','0','485845b1ea494e12a042e6e55f8758bb','0','2','0'), ('39558','18','','10499','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45452','','','','','200','1','0','','','0','0','0','0','0','0','0','e6c42eb8ef5b4827852b41e577924d82','0','2','0'), ('39559','18','','10499','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45452','','','','','200','1','0','','','0','0','0','0','0','0','0','f26774cbab2949f69b634eb8b5821e58','0','2','0'), ('39560','18','','10499','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45448','','','','','200','1','0','','','0','0','0','0','0','0','0','6bac0ef3a12748a5b63a7bbe39dc0a13','0','2','0'), ('39561','18','','10499','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45449','','','','','200','1','0','','','0','0','0','0','0','0','0','cf88e868bd54481e8992495620b76886','0','2','0'), ('39564','18','','10499','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45452','','','','','200','1','0','','','0','0','0','0','0','0','0','156f0fb44c0d43dba742edfd66ad7144','0','2','0'), ('39565','18','','10499','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45452','','','','','200','1','0','','','0','0','0','0','0','0','0','379ec65a6b9f4136950b21a9d90cc547','0','2','0'), ('39566','18','','10499','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45452','','','','','200','1','0','','','0','0','0','0','0','0','0','f4de2c971a664990a8c6bafc42c089fd','0','2','0'), ('39567','18','','10499','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45452','','','','','200','1','0','','','0','0','0','0','0','0','0','de256c8eb72a457d81fb33f192320037','0','2','0'), ('39568','18','','10499','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45452','','','','','200','1','0','','','0','0','0','0','0','0','0','dd0be192693f476e97455b7e05f85aee','0','2','0'), ('39569','18','','10499','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45452','','','','','200','1','0','','','0','0','0','0','0','0','0','85ae5fc4ef5e404ebd0ffcb14a14d8b7','0','2','0'), ('39570','18','','10499','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45452','','','','','200','1','0','','','0','0','0','0','0','0','0','2412519dbd114cb3b8a16dcb8c11d087','0','2','0'), ('39571','18','','10499','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45452','','','','','200','1','0','','','0','0','0','0','0','0','0','01abec24a89f4112991dfb272512a716','0','2','0'), ('39572','18','','10499','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45452','','','','','200','1','0','','','0','0','0','0','0','0','0','de7416fa19824a9abf3223dc2dc77c26','0','2','0'), ('39573','18','','10499','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45452','','','','','200','1','0','','','0','0','0','0','0','0','0','ead6f31f7dd74d019223d242513eaef9','0','2','0'), ('39574','18','','10499','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45452','','','','','200','1','0','','','0','0','0','0','0','0','0','e704ea4180ed4e33ba1aee5402e01101','0','2','0'), ('39575','18','','10499','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45452','','','','','200','1','0','','','0','0','0','0','0','0','0','aba46c2b5c614cc7873d2edaeb1d3493','0','2','0'), ('39576','18','','10499','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45452','','','','','200','1','0','','','0','0','0','0','0','0','0','17a2738e73924bb9928eedd098f3ba7c','0','2','0'), ('39578','18','','10499','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45448','','','','','200','1','0','','','0','0','0','0','0','0','0','8e9bb2413bd142d194d0563590441797','0','2','0'), ('39579','18','','10499','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45448','','','','','200','1','0','','','0','0','0','0','0','0','0','5021e0a0f78b4d6f80965efb0975fe04','0','2','0'), ('39608','18','','10500','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45455','','','','','200','1','0','','','0','0','0','0','0','0','0','41c63da374c3490ca27e7bc3298f269d','0','2','0'), ('39611','18','','10500','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45458','','','','','200','1','0','','','0','0','0','0','0','0','0','325f04ecd27949d6a5c486850e7d189c','0','2','0'), ('39612','18','','10500','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45458','','','','','200','1','0','','','0','0','0','0','0','0','0','aef802a72bea446781b9456246984457','0','2','0'), ('39613','18','','10500','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45458','','','','','200','1','0','','','0','0','0','0','0','0','0','802b868d392d4f65bb47178566fc113c','0','2','0'), ('39614','18','','10500','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45454','','','','','200','1','0','','','0','0','0','0','0','0','0','f72f57ef12e84957aea8cd402b3061c2','0','2','0'), ('39615','18','','10500','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45455','','','','','200','1','0','','','0','0','0','0','0','0','0','d28ec3c6c00741eda325a53cb7e45e4d','0','2','0'), ('39618','18','','10500','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45458','','','','','200','1','0','','','0','0','0','0','0','0','0','b615320ad07f48ecbf8cae0fed33a492','0','2','0'), ('39619','18','','10500','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45458','','','','','200','1','0','','','0','0','0','0','0','0','0','f4f48561aad24599886457011a6a4995','0','2','0'), ('39620','18','','10500','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45458','','','','','200','1','0','','','0','0','0','0','0','0','0','f492fe605f56443d98b136a4d6d81d70','0','2','0'), ('39621','18','','10500','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45458','','','','','200','1','0','','','0','0','0','0','0','0','0','32b98a463dc74c11b4e1695970fca8fc','0','2','0'), ('39622','18','','10500','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45458','','','','','200','1','0','','','0','0','0','0','0','0','0','c501d4366af34a3a8e30b6e224c3fafa','0','2','0'), ('39623','18','','10500','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45458','','','','','200','1','0','','','0','0','0','0','0','0','0','b723d3bf59c047039fc23568f445aa98','0','2','0'), ('39624','18','','10500','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45458','','','','','200','1','0','','','0','0','0','0','0','0','0','9ba87c338496445dbc1fb2019a07941e','0','2','0'), ('39625','18','','10500','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45458','','','','','200','1','0','','','0','0','0','0','0','0','0','3d1256ace78141cc94a8b36ddcd5578c','0','2','0'), ('39626','18','','10500','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45458','','','','','200','1','0','','','0','0','0','0','0','0','0','c9c7f1e0788845398a415a6e649e3818','0','2','0'), ('39627','18','','10500','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45458','','','','','200','1','0','','','0','0','0','0','0','0','0','ccaff01089e04fad846522db993649db','0','2','0'), ('39628','18','','10500','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45458','','','','','200','1','0','','','0','0','0','0','0','0','0','26b0c07f668e43718e6fea333f68fc63','0','2','0'), ('39629','18','','10500','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45458','','','','','200','1','0','','','0','0','0','0','0','0','0','8ea5913e43c740b19c28647eef54c3ae','0','2','0'), ('39630','18','','10500','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45458','','','','','200','1','0','','','0','0','0','0','0','0','0','3ddfb23ff23c44ee9d9690374f82d028','0','2','0'), ('39632','18','','10500','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45454','','','','','200','1','0','','','0','0','0','0','0','0','0','a1838a262c5446d798d1ca6f5b9237c1','0','2','0'), ('39633','18','','10500','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45454','','','','','200','1','0','','','0','0','0','0','0','0','0','517b5e46327f48e9b3db685167a77d13','0','2','0'), ('39662','18','','10501','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45461','','','','','200','1','0','','','0','0','0','0','0','0','0','c8e3efbae6ae49a19192b5df2ee9fea8','0','2','0'), ('39665','18','','10501','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45464','','','','','200','1','0','','','0','0','0','0','0','0','0','b26cd292bf634d3e9c7cbf96fae9a9c1','0','2','0'), ('39666','18','','10501','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45464','','','','','200','1','0','','','0','0','0','0','0','0','0','ddb15a63887e4581b375f8462a645c14','0','2','0'), ('39667','18','','10501','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45464','','','','','200','1','0','','','0','0','0','0','0','0','0','a0b2f2d19eda41f78501d076da56be98','0','2','0'), ('39668','18','','10501','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45460','','','','','200','1','0','','','0','0','0','0','0','0','0','af98fd7de06d4f48920cbdb96f0b6165','0','2','0'), ('39669','18','','10501','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45461','','','','','200','1','0','','','0','0','0','0','0','0','0','53ba83109bb34b21a689cba89cd80ee2','0','2','0'), ('39672','18','','10501','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45464','','','','','200','1','0','','','0','0','0','0','0','0','0','a204035a215842089680883e013f6162','0','2','0'), ('39673','18','','10501','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45464','','','','','200','1','0','','','0','0','0','0','0','0','0','c6fb1da5c6d642579285caf0712e870c','0','2','0'), ('39674','18','','10501','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45464','','','','','200','1','0','','','0','0','0','0','0','0','0','766550d88a2b46ee905b611dd2b740f8','0','2','0'), ('39675','18','','10501','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45464','','','','','200','1','0','','','0','0','0','0','0','0','0','a5af3f3c24fa4804b7ce63e7fb377f64','0','2','0'), ('39676','18','','10501','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45464','','','','','200','1','0','','','0','0','0','0','0','0','0','b7a7dab289b04d1baada39071b8dfeed','0','2','0'), ('39677','18','','10501','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45464','','','','','200','1','0','','','0','0','0','0','0','0','0','7b987144335b4ba58231327e9686bfef','0','2','0'), ('39678','18','','10501','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45464','','','','','200','1','0','','','0','0','0','0','0','0','0','fa450c03ad6f4628915bfe5148d3f159','0','2','0'), ('39679','18','','10501','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45464','','','','','200','1','0','','','0','0','0','0','0','0','0','bba6280d021147ae98ba429ad2c58f80','0','2','0'), ('39680','18','','10501','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45464','','','','','200','1','0','','','0','0','0','0','0','0','0','c46c846e04784177b8cfb1efb8678391','0','2','0'), ('39681','18','','10501','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45464','','','','','200','1','0','','','0','0','0','0','0','0','0','624a0f31d0214e968545a64d7bf14184','0','2','0'), ('39682','18','','10501','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45464','','','','','200','1','0','','','0','0','0','0','0','0','0','493ac987474b4d59969765d1ac7e9053','0','2','0'), ('39683','18','','10501','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45464','','','','','200','1','0','','','0','0','0','0','0','0','0','d16e8308541043209d509d8c7f1d502c','0','2','0'), ('39684','18','','10501','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45464','','','','','200','1','0','','','0','0','0','0','0','0','0','f8da5dbe8a684455b7e384372ede531b','0','2','0'), ('39686','18','','10501','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45460','','','','','200','1','0','','','0','0','0','0','0','0','0','45a98099bb5443f192d997c0207503b7','0','2','0'), ('39687','18','','10501','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45460','','','','','200','1','0','','','0','0','0','0','0','0','0','c823bfe0913b4316b28079aecac9c5f1','0','2','0'), ('39716','18','','10502','CPU discovery','hrProcessorLoad.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrProcessorTable discovery.','0','7d','0','','45467','','','','','200','1','0','','','0','0','0','0','0','0','0','583f23a35ad84a808a6029b7a46b24fc','0','2','0'), ('39719','18','','10502','LTE modem discovery','mtxrLTEModem.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrLTEModemInterfaceIndex.','0','7d','1','','45470','','','','','200','1','0','','','0','0','0','0','0','0','0','e161530a74ca473993b1be2cd03a45a8','0','2','0'), ('39720','18','','10502','AP channel discovery','mtxrWlAp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlAp.','0','7d','1','','45470','','','','','200','1','0','','','0','0','0','0','0','0','0','01c811631d98499d83c296f34ce36aee','0','2','0'), ('39721','18','','10502','CAPsMAN AP channel discovery','mtxrWlCMChannel.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'MIKROTIK-MIB::mtxrWlCMChannel.','0','7d','1','','45470','','','','','200','1','0','','','0','0','0','0','0','0','0','de8845213cb14554aa0306b19c997e47','0','2','0'), ('39722','18','','10502','Storage discovery','storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','2','','45466','','','','','200','1','0','','','0','0','0','0','0','0','0','ffe565a9cbb24c5ba7112a5db9d43231','0','2','0'), ('39723','18','','10502','#{#SNMPINDEX}: CPU utilization','system.cpu.util[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary.','0','30d','0','','45467','','','','','200','1','0','','','0','0','0','0','0','0','0','5a0fdf4fa043461dabd6d581ce58a8a4','0','2','0'), ('39726','18','','10502','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRP Reference Signal Received Power.','0','30d','0','','45470','','','','','200','1','0','','','0','0','0','0','0','0','0','534301e9868e4cd0b71d6556164b3d70','0','2','0'), ('39727','18','','10502','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSRQ Reference Signal Received Quality.','0','30d','0','','45470','','','','','200','1','0','','','0','0','0','0','0','0','0','6b7494b2ddac49d9b72e31a1c18fc9e1','0','2','0'), ('39728','18','','10502','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalRSSI Received Signal Strength Indicator.','0','30d','0','','45470','','','','','200','1','0','','','0','0','0','0','0','0','0','ce8f8d1d78bd451f962cb25130f829ce','0','2','0'), ('39729','18','','10502','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}]','0','31d','365d','0','0','','db','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio.','0','30d','0','','45470','','','','','200','1','0','','','0','0','0','0','0','0','0','ac1f673cad3d4e45a870b09a4d33a1fa','0','2','0'), ('39730','18','','10502','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApAuthClientCount Number of authentication clients.','0','30d','0','','45470','','','','','200','1','0','','','0','0','0','0','0','0','0','c046aa8719a44d598328182e56d3162c','0','2','0'), ('39731','18','','10502','Interface {#IFNAME}({#IFALIAS}): AP band','ssid.band[mtxrWlApBand.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApBand','0','30d','0','','45470','','','','','200','1','0','','','0','0','0','0','0','0','0','fe51564fb48a4434875eb376ec52fd60','0','2','0'), ('39732','18','','10502','Interface {#IFNAME}({#IFALIAS}): SSID','ssid.name[mtxrWlApSsid.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApSsid Service Set Identifier.','0','30d','0','','45470','','','','','200','1','0','','','0','0','0','0','0','0','0','a8688972d13f4757b027c4f257193ff8','0','2','0'), ('39733','18','','10502','Interface {#IFNAME}({#IFALIAS}): AP noise floor','ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApNoiseFloor','0','30d','0','','45470','','','','','200','1','0','','','0','0','0','0','0','0','0','10dd0b3680c04bde89d521fd8c705887','0','2','0'), ('39734','18','','10502','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlApClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45470','','','','','200','1','0','','','0','0','0','0','0','0','0','1a6dd112444a4c64a556dda3833fd6d2','0','2','0'), ('39735','18','','10502','Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMAuthClientCount Number of authentication clients.','0','30d','0','','45470','','','','','200','1','0','','','0','0','0','0','0','0','0','c130a29f18a146d483cde32122880e23','0','2','0'), ('39736','18','','10502','Interface {#IFNAME}({#IFALIAS}): AP channel','ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMChannel','0','30d','0','','45470','','','','','200','1','0','','','0','0','0','0','0','0','0','b80079f3815c438bb45a76febc53d531','0','2','0'), ('39737','18','','10502','Interface {#IFNAME}({#IFALIAS}): AP registered clients','ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMRegClientCount Client established connection to AP, but didn''t finish all authentication procedures for full connection.','0','30d','0','','45470','','','','','200','1','0','','','0','0','0','0','0','0','0','1dc8656481a2470c92e97bef53f17d41','0','2','0'), ('39738','18','','10502','Interface {#IFNAME}({#IFALIAS}): AP state','ssid.state[mtxrWlCMState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: MIKROTIK-MIB mtxrWlCMState Wireless interface state.','0','30d','0','','45470','','','','','200','1','0','','','0','0','0','0','0','0','0','489322ce283c434684d4f59829c257d2','0','2','0'), ('39740','18','','10502','Disk-{#SNMPINDEX}: Total space','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','45466','','','','','200','1','0','','','0','0','0','0','0','0','0','e308837cc63741b7af3175521c7a66ec','0','2','0'), ('39741','18','','10502','Disk-{#SNMPINDEX}: Used space','vfs.fs.used[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','45466','','','','','200','1','0','','','0','0','0','0','0','0','0','36d4268675794bfcba1ca0b2a586770d','0','2','0'), ('39744','18','','10503','Clear data','velocloud.get.clear_metrics','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Clear metrics for data without errors.','0','30d','0','','39743','','','','','200','1','0','','','0','0','0','0','0','0','0','9df4ba5324d94d0fb54d3231311016a6','0','2','0'), ('39745','18','','10503','Get data collection errors','velocloud.get.error','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Errors of aggregate script item.','0','30d','0','','39743','','','','','200','1','0','','','0','0','0','0','0','0','0','8a54309d8abc4fc7816b168329243de4','0','2','0'), ('39803','18','','10318','Container {#NAME}: CPU percent usage','docker.container_stats.cpu_pct_usage["{#NAME}"]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30573','','','','','200','1','0','','','0','0','0','0','0','0','0','d54b82d76c7b44ca8995486e4bf46298','0','2','0'), ('39806','18','','10047','High availability cluster node discovery','zabbix.nodes.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'LLD rule with item and trigger prototypes for node discovery.','0','7d','0','','39804','','','','','200','1','0','','','0','0','0','0','0','0','0','32bf5c3b8f1f4d10b26806ae0d2adb25','0','2','0'), ('39816','18','','10261','High availability cluster node discovery','zabbix.nodes.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'LLD rule with item and trigger prototypes for node discovery.','0','7d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','0557f879881a4d558410444737ae3738','0','2','0'), ('39821','18','','10329','WAL: Bytes received','pgsql.wal.receive','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'WAL receive, in bytes.','0','30d','0','','31290','','','','','200','1','0','','','0','0','0','0','0','0','0','0e58a74b8a2d47d28f596196405b22b5','0','2','0'), ('39824','18','','10261','Utilization of ODBC poller data collector processes, in %','process.odbc_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the ODBC poller processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','8a21a0281ae24e0788edc8c9b875a421','0','2','0'), ('39825','18','','10262','Utilization of ODBC poller data collector processes, in %','process.odbc_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the ODBC poller processes have been busy for the last minute.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','7c0d7d097e004d0db25eab55ceb6b87c','0','2','0'), ('39829','18','','10504','Request terminations, rate','kubernetes.api.apiserver_request_terminations','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of requests which apiserver terminated in self-defense per second.','0','30d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','28944ee2c0a3478e84612cd5650f3cd5','0','2','0'), ('39830','18','','10504','gRPCs messages sent, rate','kubernetes.api.grpc_client_msg_sent.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of gRPC stream messages sent per second.','0','30d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','353559f3b9684647a74bd429d80731b9','0','2','0'), ('39831','18','','10504','HTTP requests: 4xx, rate','kubernetes.api.rest_client_requests_total_400.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of HTTP requests with 4xx status code per second.','0','30d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','f11b87e0bc5a41ff956391b6cb7115c5','0','2','0'), ('39832','18','','10504','HTTP requests: 3xx, rate','kubernetes.api.rest_client_requests_total_300.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of HTTP requests with 3xx status code per second.','0','30d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','450607dda045428fb6d4a96ca8888c19','0','2','0'), ('39833','18','','10504','HTTP requests: 2xx, rate','kubernetes.api.rest_client_requests_total_200.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of HTTP requests with 2xx status code per second.','0','30d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','3f15d60ef7cb4a068424d5835d04a817','0','2','0'), ('39834','18','','10504','Virtual memory, bytes','kubernetes.api.process_virtual_memory_bytes','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Virtual memory size in bytes.','0','30d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','010a983426c9407eb4b6bf7822b411ce','0','2','0'), ('39835','18','','10504','Resident memory, bytes','kubernetes.api.process_resident_memory_bytes','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Resident memory size in bytes.','0','30d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','53fd5211b6da47d3b3fc87ab8a2d0c33','0','2','0'), ('39836','18','','10504','Fds open','kubernetes.api.open_fds','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of open file descriptors.','0','30d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','41f802305a234b1ab9fb0e89d1e40290','0','2','0'), ('39837','18','','10504','Fds max','kubernetes.api.max_fds','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum allowed open file descriptors.','0','30d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','187702b1c3a24d07aaf9cc07fa359095','0','2','0'), ('39838','18','','10504','gRPCs client started, rate','kubernetes.api.grpc_client_started.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of RPCs started per second.','0','30d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','0850afe759684950be79135ed4f32c79','0','2','0'), ('39839','18','','10504','Go threads','kubernetes.api.go_threads','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of OS threads created.','0','30d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','2022d65c2f7a4f07bc1cba435a2be1e9','0','2','0'), ('39840','18','','10504','gRPCs messages received, rate','kubernetes.api.grpc_client_msg_received.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of gRPC stream messages received per second.','0','30d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','837c546cb3bc400ab7a62a672792f88b','0','2','0'), ('39841','18','','10504','API server requests: 0','kubernetes.api.apiserver_request_total_0.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Counter of apiserver requests broken out for each HTTP response code.','0','30d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','1ac74141a4b241b196bc47d0dee37a2c','0','2','0'), ('39842','18','','10504','Goroutines','kubernetes.api.go_goroutines','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of goroutines that currently exist.','0','30d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','79db985ac8f645999fe8aa73b4073bfb','0','2','0'), ('39843','18','','10504','CPU','kubernetes.api.cpu.util','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Total user and system CPU usage ratio.','0','30d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','de87284b8bd644398e4a88a064e206bb','0','2','0'), ('39844','18','','10504','Audit events, total','kubernetes.api.audit_event_total','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Accumulated number audit events generated and sent to the audit backend.','0','30d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','54723f57a20a47a698fbf47cbec0f7a1','0','2','0'), ('39845','18','','10504','TLS handshake errors, rate','kubernetes.api.apiserver_tls_handshake_errors_total.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of requests dropped with ''TLS handshake error from'' error per second.','0','30d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','5bd8b2deaf1142369ba67afc7a41ab11','0','2','0'), ('39846','18','','10504','API server requests: 5xx, rate','kubernetes.api.apiserver_request_total_500.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Counter of apiserver requests broken out for each HTTP response code.','0','30d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','1c24d58b28bc423e868a965d689cf146','0','2','0'), ('39847','18','','10504','API server requests: 4xx, rate','kubernetes.api.apiserver_request_total_400.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Counter of apiserver requests broken out for each HTTP response code.','0','30d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','1f72779899f94620bc55870f5e2c2ca0','0','2','0'), ('39848','18','','10504','API server requests: 3xx, rate','kubernetes.api.apiserver_request_total_300.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Counter of apiserver requests broken out for each HTTP response code.','0','30d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','453852b621ca4a7cbc4d80e5327c80da','0','2','0'), ('39849','18','','10504','API server requests: 2xx, rate','kubernetes.api.apiserver_request_total_200.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Counter of apiserver requests broken out for each HTTP response code.','0','30d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','d7f8363e1bc5424f89c7386fcbe6fb06','0','2','0'), ('39850','18','','10504','HTTP requests: 5xx, rate','kubernetes.api.rest_client_requests_total_500.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of HTTP requests with 5xx status code per second.','0','30d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','2588c2332fea48f8bae414e8b7c42184','0','2','0'), ('39851','18','','10504','Watchers metrics discovery','kubernetes.api.apiserver_registered_watchers.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery watchers by kind.','0','7d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','22c5e2a84d9542c1905d0c20f4ca6700','0','2','0'), ('39852','18','','10504','Authentication requests discovery','kubernetes.api.authenticated_user_requests.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery authentication attempts by name.','0','7d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','45ad0dd7331d4b9391d26b78838b0433','0','2','0'), ('39853','18','','10504','Authentication attempts discovery','kubernetes.api.authentication_attempts.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery authentication attempts by result.','0','7d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','ca23c310c71f4e88891ceae883527389','0','2','0'), ('39855','18','','10504','Etcd objects metrics discovery','kubernetes.api.etcd_object_counts.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery etcd objects by resource.','0','7d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','8dcd7c95a9364efdb2fe64c651360ad4','0','2','0'), ('39856','18','','10504','gRPC completed requests discovery','kubernetes.api.grpc_client_handled.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery grpc completed requests by grpc code.','0','7d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','099e6ff46075457cba6b669a5880ceef','0','2','0'), ('39857','18','','10504','Requests inflight discovery','kubernetes.api.inflight_requests.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery requests inflight by kind.','0','7d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','948e1d84d44642a78f59c92271a21a68','0','2','0'), ('39858','18','','10504','Long-running requests','kubernetes.api.longrunning_gauge.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of long-running requests by verb, resource and scope.','0','7d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','7cd3ef5e2c874db18088b3531c944b25','0','2','0'), ('39859','18','','10504','Request duration histogram','kubernetes.api.requests_bucket.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery raw data and percentile items of request duration.','0','7d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','7c5ffdbafc5e4e349cc62ed0d0c0f20f','0','2','0'), ('39860','18','','10504','Workqueue metrics discovery','kubernetes.api.workqueue.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery workqueue metrics by name.','0','7d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','d015cafd6e9f4707bb78125ff17cc679','0','2','0'), ('39865','18','','10504','Watchers: {#KIND}','kubernetes.api.apiserver_registered_watchers["{#KIND}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of currently registered watchers for a given resource.','0','30d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','09d0815f893c42c1b95721f7f908940a','0','2','0'), ('39866','18','','10504','Authenticated requests: {#NAME}, rate','kubernetes.api.authenticated_user_requests.rate["{#NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Counter of authenticated requests broken out by username per second.','0','30d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','6950d30d0b1d4162acee45f184453fbd','0','2','0'), ('39867','18','','10504','Authentication attempts: {#RESULT}, rate','kubernetes.api.authentication_attempts.rate["{#RESULT}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Authentication attempts by result per second.','0','30d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','d9ddaa016a7c4ca381fbe857959dd0fd','0','2','0'), ('39869','18','','10504','etcd objects: {#RESOURCE}','kubernetes.api.etcd_object_counts["{#RESOURCE}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of stored objects at the time of last check split by kind.','0','30d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','75c15b57189d4cbeb6ed6397fc377e2a','0','2','0'), ('39870','18','','10504','gRPCs completed: {#GRPC_CODE}, rate','kubernetes.api.grpc_client_handled_total.rate["{#GRPC_CODE}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of RPCs completed by the client regardless of success or failure per second.','0','30d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','690dc00ad92d44d0b9bc7db58c07bd8f','0','2','0'), ('39871','18','','10504','Requests current: {#KIND}','kubernetes.api.current_inflight_requests["{#KIND}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Maximal number of currently used inflight request limit of this apiserver per request kind in last second.','0','30d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','5076679154cc464ebab0b678f65c8853','0','2','0'), ('39872','18','','10504','Long-running ["{#VERB}"] requests ["{#RESOURCE}"]: {#SCOPE}','kubernetes.api.longrunning_gauge["{#RESOURCE}","{#SCOPE}","{#VERB}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Gauge of all active long-running apiserver requests broken out by verb, resource and scope. Not all requests are tracked this way.','0','30d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','feee53d3fc69401ba359ecd97788e552','0','2','0'), ('39873','18','','10504','["{#VERB}"] Requests bucket: {#LE}','kubernetes.api.request_duration_seconds_bucket[{#LE},"{#VERB}"]','0','1h','0','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Response latency distribution in seconds for each verb.','0','30d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','1','5135a1bc92514c79965edea9d7d2a47e','0','2','0'), ('39874','18','','10504','["{#NAME}"] Workqueue adds total, rate','kubernetes.api.workqueue_adds_total.rate["{#NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of adds handled by workqueue per second.','0','30d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','cf58e773a5684eafa74b56ed43490148','0','2','0'), ('39875','18','','10504','["{#NAME}"] Workqueue depth','kubernetes.api.workqueue_depth["{#NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current depth of workqueue.','0','30d','0','','39827','','','','','200','1','0','','','0','0','0','0','0','0','0','4fe45ff01cdf4bdf85e74a52d2d3b917','0','2','0'), ('39877','18','','10505','REST Client requests: 2xx, rate','kubernetes.controller.client_http_requests_200.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of HTTP requests with 2xx status code per second.','0','30d','0','','39876','','','','','200','1','0','','','0','0','0','0','0','0','0','774693b22f844424a93f6a56001c8cba','0','2','0'), ('39878','18','','10505','REST Client requests: 3xx, rate','kubernetes.controller.client_http_requests_300.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of HTTP requests with 3xx status code per second.','0','30d','0','','39876','','','','','200','1','0','','','0','0','0','0','0','0','0','ace0d156101b481d9f53c3f48e84bd38','0','2','0'), ('39879','18','','10505','REST Client requests: 4xx, rate','kubernetes.controller.client_http_requests_400.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of HTTP requests with 4xx status code per second.','0','30d','0','','39876','','','','','200','1','0','','','0','0','0','0','0','0','0','c6b67e4330184ca98281773c69925d98','0','2','0'), ('39880','18','','10505','REST Client requests: 5xx, rate','kubernetes.controller.client_http_requests_500.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of HTTP requests with 5xx status code per second.','0','30d','0','','39876','','','','','200','1','0','','','0','0','0','0','0','0','0','ac6397e9f62749199f857e6c859daa59','0','2','0'), ('39881','18','','10505','CPU','kubernetes.controller.cpu.util','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Total user and system CPU usage ratio.','0','30d','0','','39876','','','','','200','1','0','','','0','0','0','0','0','0','0','6bde8365469f47359fcc5716207b8870','0','2','0'), ('39882','18','','10505','Goroutines','kubernetes.controller.go_goroutines','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of goroutines that currently exist.','0','30d','0','','39876','','','','','200','1','0','','','0','0','0','0','0','0','0','8e4f98354c89410ebad42af485e3f710','0','2','0'), ('39883','18','','10505','Go threads','kubernetes.controller.go_threads','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of OS threads created.','0','30d','0','','39876','','','','','200','1','0','','','0','0','0','0','0','0','0','f30ba3d8679b4ffd86a20427892da228','0','2','0'), ('39884','18','','10505','Leader election status','kubernetes.controller.leader_election_master_status','0','31d','365d','0','0','','','','',NULL,'567','','','0','','','','','0',NULL,'Gauge of if the reporting system is master of the relevant lease, 0 indicates backup, 1 indicates master.','0','30d','0','','39876','','','','','200','1','0','','','0','0','0','0','0','0','0','b9ef0724331f4f9da830c470b8e2fea1','0','2','0'), ('39885','18','','10505','Fds max','kubernetes.controller.max_fds','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum allowed open file descriptors.','0','30d','0','','39876','','','','','200','1','0','','','0','0','0','0','0','0','0','5bb0657b329c44e6a7a6dd169551205b','0','2','0'), ('39886','18','','10505','Fds open','kubernetes.controller.open_fds','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of open file descriptors.','0','30d','0','','39876','','','','','200','1','0','','','0','0','0','0','0','0','0','43698df9a76c410792f0fdb9d41ee42c','0','2','0'), ('39887','18','','10505','Resident memory, bytes','kubernetes.controller.process_resident_memory_bytes','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Resident memory size in bytes.','0','30d','0','','39876','','','','','200','1','0','','','0','0','0','0','0','0','0','7497f4f8d1d8422dad301d9d25b42150','0','2','0'), ('39888','18','','10505','Virtual memory, bytes','kubernetes.controller.process_virtual_memory_bytes','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Virtual memory size in bytes.','0','30d','0','','39876','','','','','200','1','0','','','0','0','0','0','0','0','0','884a7a4de05548ffbdf14629bbe5d181','0','2','0'), ('39889','18','','10505','Workqueue metrics discovery','kubernetes.controller.workqueue.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','','39876','','','','','200','1','0','','','0','0','0','0','0','0','0','3117060c51564c2e897e3194821b137f','0','2','0'), ('39898','18','','10505','["{#NAME}"]: Workqueue duration seconds bucket, {#LE}','kubernetes.controller.duration_seconds_bucket[{#LE},"{#NAME}"]','0','1h','0','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'How long in seconds processing an item from workqueue takes.','0','30d','0','','39876','','','','','200','1','0','','','0','0','0','0','0','0','1','70277a128a254462ad0bf7a023738ba0','0','2','0'), ('39899','18','','10505','["{#NAME}"]: Queue duration seconds bucket, {#LE}','kubernetes.controller.queue_duration_seconds_bucket[{#LE},"{#NAME}"]','0','1h','0','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'How long in seconds an item stays in workqueue before being requested.','0','30d','0','','39876','','','','','200','1','0','','','0','0','0','0','0','0','1','8357905c82ea42b98d686eee2d9c35f6','0','2','0'), ('39900','18','','10505','["{#NAME}"]: Workqueue adds total, rate','kubernetes.controller.workqueue_adds_total["{#NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of adds handled by workqueue per second.','0','30d','0','','39876','','','','','200','1','0','','','0','0','0','0','0','0','1','940dc936417849c7aed7ae824883fdaf','0','2','0'), ('39901','18','','10505','["{#NAME}"]: Workqueue depth','kubernetes.controller.workqueue_depth["{#NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current depth of workqueue.','0','30d','0','','39876','','','','','200','1','0','','','0','0','0','0','0','0','1','7edfab667cdf41908bd551c0a25e4adc','0','2','0'), ('39902','18','','10505','["{#NAME}"]: Workqueue longest running processor, sec','kubernetes.controller.workqueue_longest_running_processor_seconds["{#NAME}"]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'How many seconds has the longest running processor for workqueue been running.','0','30d','0','','39876','','','','','200','1','0','','','0','0','0','0','0','0','1','9a510f3b3d3547c1817b72e38340ccd2','0','2','0'), ('39903','18','','10505','["{#NAME}"]: Workqueue retries, rate','kubernetes.controller.workqueue_retries_total["{#NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of retries handled by workqueue per second.','0','30d','0','','39876','','','','','200','1','0','','','0','0','0','0','0','0','1','a4e25b0e8cd340d48e098b89ffcdd49a','0','2','0'), ('39904','18','','10505','["{#NAME}"]: Workqueue unfinished work, sec','kubernetes.controller.workqueue_unfinished_work_seconds["{#NAME}"]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'How many seconds of work has done that is in progress and hasn''t been observed by work_duration. Large values indicate stuck threads. One can deduce the number of stuck threads by observing the rate at which this increases.','0','30d','0','','39876','','','','','200','1','0','','','0','0','0','0','0','0','1','e230e1573f4042b088a8a4b2e3998d43','0','2','0'), ('39908','18','','10506','Containers restarts','kube.kubelet.containers.restarts','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of times the container has been restarted.','0','30d','0','','39907','','','','','200','1','0','','','0','0','0','0','0','0','0','bc395860d45b45cb89401fc7e50bc015','0','2','0'), ('39909','18','','10506','Containers started','kube.kubelet.containers.started','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of started containers.','0','30d','0','','39907','','','','','200','1','0','','','0','0','0','0','0','0','0','e524234eea87438d9ee2a1db9f24cfbb','0','2','0'), ('39910','18','','10506','CPU cores, total','kube.kubelet.cpu.cores','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of cores in this machine (available until kubernetes v1.18).','0','30d','0','','39905','','','','','200','1','0','','','0','0','0','0','0','0','0','cff44957e9a54d5d887d4f92b3e4da72','0','2','0'), ('39911','18','','10506','Machine memory, bytes','kube.kubelet.machine.memory','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Resident memory size in bytes.','0','30d','0','','39906','','','','','200','1','0','','','0','0','0','0','0','0','0','6735723da30d41dcb7bd46c954b2998f','0','2','0'), ('39912','18','','10506','Pods running','kube.kubelet.pods.running','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of running pods.','0','30d','0','','39907','','','','','200','1','0','','','0','0','0','0','0','0','0','46635d3fee04488caa4b07de7709f71e','0','2','0'), ('39913','18','','10506','File descriptors, max','kube.kubelet.process_max_fds','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum number of open file descriptors.','0','30d','0','','39906','','','','','200','1','0','','','0','0','0','0','0','0','0','d1388216cb384ff08c984919572b0ffb','0','2','0'), ('39914','18','','10506','File descriptors, open','kube.kubelet.process_open_fds','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of open file descriptors.','0','30d','0','','39906','','','','','200','1','0','','','0','0','0','0','0','0','0','dc3a6371dcb34ae5b65cbf5224d4712c','0','2','0'), ('39915','18','','10506','Virtual memory, bytes','kube.kubelet.virtual.memory','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Virtual memory size in bytes.','0','30d','0','','39906','','','','','200','1','0','','','0','0','0','0','0','0','0','c382b67cf7e947fbb9c29e86446ffac5','0','2','0'), ('39916','18','','10506','Containers last state terminated','kube.kublet.containers.terminated','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of containers that were previously terminated.','0','30d','0','','39907','','','','','200','1','0','','','0','0','0','0','0','0','0','11da04549bd840b0a8d5c70ff0d2b46f','0','2','0'), ('39917','18','','10506','Container memory discovery','kube.kubelet.container.memory.cache.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','0','0','','39905','','','','','200','1','0','','','0','0','0','0','0','0','0','5f70768ebe62429a96e17576dd767382','0','2','0'), ('39918','18','','10506','Pods discovery','kube.kubelet.pods.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','0','0','','39907','','','','','200','1','0','','','0','0','0','0','0','0','0','b98223fcf0ee4a558035ed23de0d2616','0','2','0'), ('39919','18','','10506','REST client requests discovery','kube.kubelet.rest.requests.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','','39906','','','','','200','1','0','','','0','0','0','0','0','0','0','cb42f71e6bfb4661861e3601e31eeaa6','0','2','0'), ('39920','18','','10506','Runtime operations discovery','kube.kubelet.runtime_operations_bucket.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','','39906','','','','','200','1','0','','','0','0','0','0','0','0','0','6feb0006bb364a8f9295495c92741c16','0','2','0'), ('39925','18','','10506','Namespace [{#NAMESPACE}] Pod [{#POD}] Container [{#CONTAINER}]: Memory page cache','kube.kubelet.container.memory.cache["{#CONTAINER}", "{#NAMESPACE}", "{#POD}"]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bytes of page cache memory.','0','30d','0','','39905','','','','','200','1','0','','','0','0','0','0','0','0','0','8f8b1df2a801475a92604544b2019b2e','0','2','0'), ('39926','18','','10506','Namespace [{#NAMESPACE}] Pod [{#POD}] Container [{#CONTAINER}]: Memory max usage','kube.kubelet.container.memory.max_usage["{#CONTAINER}", "{#NAMESPACE}", "{#POD}"]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Maximum memory usage recorded in bytes.','0','30d','0','','39905','','','','','200','1','0','','','0','0','0','0','0','0','0','6dcf948e79b94f3f96677a7948d2dfd4','0','2','0'), ('39927','18','','10506','Namespace [{#NAMESPACE}] Pod [{#POD}] Container [{#CONTAINER}]: RSS','kube.kubelet.container.memory.rss["{#CONTAINER}", "{#NAMESPACE}", "{#POD}"]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Size of RSS in bytes.','0','30d','0','','39905','','','','','200','1','0','','','0','0','0','0','0','0','0','47d35c31a52643c1b587efcec57f9dff','0','2','0'), ('39928','18','','10506','Namespace [{#NAMESPACE}] Pod [{#POD}] Container [{#CONTAINER}]: Swap','kube.kubelet.container.memory.swap["{#CONTAINER}", "{#NAMESPACE}", "{#POD}"]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Container swap usage in bytes.','0','30d','0','','39905','','','','','200','1','0','','','0','0','0','0','0','0','0','2cf31296f67947ec85f576773352a25b','0','2','0'), ('39929','18','','10506','Namespace [{#NAMESPACE}] Pod [{#POD}] Container [{#CONTAINER}]: Usage','kube.kubelet.container.memory.usage["{#CONTAINER}", "{#NAMESPACE}", "{#POD}"]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Current memory usage in bytes, including all memory regardless of when it was accessed.','0','30d','0','','39905','','','','','200','1','0','','','0','0','0','0','0','0','0','146d17ecec7149efb20878d7e0466eeb','0','2','0'), ('39930','18','','10506','Namespace [{#NAMESPACE}] Pod [{#POD}] Container [{#CONTAINER}]: Working set','kube.kubelet.container.memory.working_set["{#CONTAINER}", "{#NAMESPACE}", "{#POD}"]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Current working set in bytes.','0','30d','0','','39905','','','','','200','1','0','','','0','0','0','0','0','0','0','d3a24d207c6d4201a5e7235f246e0c59','0','2','0'), ('39931','18','','10506','Namespace [{#NAMESPACE}] Pod [{#NAME}] CPU: Load average, 10s','kube.pod.container_cpu_load_average_10s[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Pods cpu load average over the last 10 seconds.','0','30d','0','','39905','','','','','200','1','0','','','0','0','0','0','0','0','0','41e8f027979a462983789f1f45a9e332','0','2','0'), ('39932','18','','10506','Namespace [{#NAMESPACE}] Pod [{#NAME}] CPU: System seconds, total','kube.pod.container_cpu_system_seconds_total[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'System cpu time consumed. It is calculated from the cumulative value using the `Change per second` preprocessing step.','0','30d','0','','39905','','','','','200','1','0','','','0','0','0','0','0','0','0','434c913e7547435bb74c922f81f3ff7a','0','2','0'), ('39933','18','','10506','Namespace [{#NAMESPACE}] Pod [{#NAME}] CPU: User seconds, total','kube.pod.container_cpu_user_seconds_total[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'User cpu time consumed. It is calculated from the cumulative value using the `Change per second` preprocessing step.','0','30d','0','','39905','','','','','200','1','0','','','0','0','0','0','0','0','0','e0b1c1edcc3c4738a71b46712a085ed0','0','2','0'), ('39934','18','','10506','Host [{#HOST}] Request method [{#METHOD}] Code:[{#CODE}]','kube.kubelet.rest.requests["{#CODE}", "{#HOST}", "{#METHOD}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of HTTP requests, partitioned by status code, method, and host.','0','30d','0','','39906','','','','','200','1','0','','','0','0','0','0','0','0','0','c569ce73bfb44098be3ceb8d016e3d24','0','2','0'), ('39935','18','','10506','[{#OP_TYPE}] Runtime operations bucket: {#LE}','kube.kublet.runtime_ops_duration_seconds_bucket[{#LE},"{#OP_TYPE}"]','0','1h','0','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Duration in seconds of runtime operations. Broken down by operation type.','0','30d','0','','39906','','','','','200','1','0','','','0','0','0','0','0','0','1','13de106611a347e0907dda9ff52f3a20','0','2','0'), ('39936','18','','10506','[{#OP_TYPE}] Runtime operations total, rate','kube.kublet.runtime_ops_total.rate["{#OP_TYPE}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Cumulative number of runtime operations by operation type.','0','30d','0','','39906','','','','','200','1','0','','','0','0','0','0','0','0','1','736abc78366e44b69234caf56abe8a4a','0','2','0'), ('39938','18','','10507','Get nodes check','kube.nodes.check','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data collection check.','0','30d','0','','39937','','','','','200','1','0','','','0','0','0','0','0','0','0','f78df5e88780418b894017086f8d9641','0','2','0'), ('39942','18','','10507','Pod discovery','kube.pod.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','0','1','','39937','','','','','200','1','0','','','0','0','0','0','0','0','0','b9dd5b50208e415da509f61ec73451c1','0','2','0'), ('39986','18','','10509','REST Client requests: 5xx, rate','kubernetes.scheduler.client_http_requests_500.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of HTTP requests with 5xx status code per second.','0','30d','0','','39978','','','','','200','1','0','','','0','0','0','0','0','0','0','d94fce6ae59b4735b93e1ccfb9084dc2','0','2','0'), ('39987','18','','10509','CPU','kubernetes.scheduler.cpu.util','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Total user and system CPU usage ratio.','0','30d','0','','39978','','','','','200','1','0','','','0','0','0','0','0','0','0','b1d79dbb773d47668476a12ca8ee3d08','0','2','0'), ('39988','18','','10509','REST Client requests: 4xx, rate','kubernetes.scheduler.client_http_requests_400.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of HTTP requests with 4xx status code per second.','0','30d','0','','39978','','','','','200','1','0','','','0','0','0','0','0','0','0','84e09cb3134b492b983649bc29da11ee','0','2','0'), ('39989','18','','10509','Goroutines','kubernetes.scheduler.go_goroutines','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of goroutines that currently exist.','0','30d','0','','39978','','','','','200','1','0','','','0','0','0','0','0','0','0','a21ec7ee8a76449f99199777d35cdd03','0','2','0'), ('39990','18','','10509','REST Client requests: 3xx, rate','kubernetes.scheduler.client_http_requests_300.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of HTTP requests with 3xx status code per second.','0','30d','0','','39978','','','','','200','1','0','','','0','0','0','0','0','0','0','b790f8c9a6b44f54837a6b3cb1dcec41','0','2','0'), ('39991','18','','10509','Fds max','kubernetes.scheduler.max_fds','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum allowed open file descriptors.','0','30d','0','','39978','','','','','200','1','0','','','0','0','0','0','0','0','0','11471cff0d664bdb906cf54821af9710','0','2','0'), ('39992','18','','10509','Fds open','kubernetes.scheduler.open_fds','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of open file descriptors.','0','30d','0','','39978','','','','','200','1','0','','','0','0','0','0','0','0','0','2aa6fb05cb3e4f33a05ebf331be1ed54','0','2','0'), ('39993','18','','10509','Resident memory, bytes','kubernetes.scheduler.process_resident_memory_bytes','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Resident memory size in bytes.','0','30d','0','','39978','','','','','200','1','0','','','0','0','0','0','0','0','0','f8272f957dc447f19876395994050edd','0','2','0'), ('39994','18','','10509','Virtual memory, bytes','kubernetes.scheduler.process_virtual_memory_bytes','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Virtual memory size in bytes.','0','30d','0','','39978','','','','','200','1','0','','','0','0','0','0','0','0','0','0319ccb3efb94aeba6181c1f34cc999a','0','2','0'), ('39995','18','','10509','Schedule attempts: error','kubernetes.scheduler.scheduler_schedule_attempts.error.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of attempts to schedule pods with result "error" per second.','0','30d','0','','39978','','','','','200','1','0','','','0','0','0','0','0','0','0','f198d7705dd34d52b57a31aa8b5a423a','0','2','0'), ('39996','18','','10509','Schedule attempts: scheduled','kubernetes.scheduler.scheduler_schedule_attempts.scheduled.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of attempts to schedule pods with result "scheduled" per second.','0','30d','0','','39978','','','','','200','1','0','','','0','0','0','0','0','0','0','d5c901849f134b40b077c50e02415fff','0','2','0'), ('39997','18','','10509','Schedule attempts: unschedulable','kubernetes.scheduler.scheduler_schedule_attempts.unschedulable.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of attempts to schedule pods with result "unschedulable" per second.','0','30d','0','','39978','','','','','200','1','0','','','0','0','0','0','0','0','0','5736a89200684c709c22f9fb3711bb83','0','2','0'), ('39998','18','','10509','REST Client requests: 2xx, rate','kubernetes.scheduler.client_http_requests_200.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of HTTP requests with 2xx status code per second.','0','30d','0','','39978','','','','','200','1','0','','','0','0','0','0','0','0','0','87e91f23320043549457a5b2ab8ddf74','0','2','0'), ('39999','18','','10509','Go threads','kubernetes.scheduler.go_threads','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of OS threads created.','0','30d','0','','39978','','','','','200','1','0','','','0','0','0','0','0','0','0','d7493f23748f440b8cae127e6ff70bb7','0','2','0'), ('40000','18','','10509','e2e scheduling histogram','kubernetes.controller.e2e_scheduling.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery raw data and percentile items of e2e scheduling latency.','0','7d','0','','39978','','','','','200','1','0','','','0','0','0','0','0','0','0','0dacff4b5ab841569642350388f4e534','0','2','0'), ('40001','18','','10509','Binding histogram','kubernetes.scheduler.binding.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery raw data of binding latency.','0','7d','0','','39978','','','','','200','1','0','','','0','0','0','0','0','0','0','8cfc88eb0f6b4ae09d93bd9fc275659d','0','2','0'), ('40002','18','','10509','Scheduling algorithm histogram','kubernetes.scheduler.scheduling_algorithm.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery raw data of scheduling algorithm latency.','0','7d','0','','39978','','','','','200','1','0','','','0','0','0','0','0','0','0','5d4a17f09a7e4ad3b4ac72c30bac5e7d','0','2','0'), ('40007','18','','10509','["{#RESULT}"]: e2e scheduling seconds bucket, {#LE}','kubernetes.scheduler.e2e_scheduling_bucket[{#LE},"{#RESULT}"]','0','1h','0','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'E2e scheduling latency in seconds (scheduling algorithm + binding)','0','30d','0','','39978','','','','','200','1','0','','','0','0','0','0','0','0','1','eaeb8c321626466bbf7c08008a82b9c8','0','2','0'), ('40008','18','','10509','Binding duration bucket, {#LE}','kubernetes.scheduler.binding_duration[{#LE}]','0','1h','0','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Binding latency in seconds.','0','30d','0','','39978','','','','','200','1','0','','','0','0','0','0','0','0','1','17a3d7122cd844ea905059020532907b','0','2','0'), ('40009','18','','10509','Scheduling algorithm duration bucket, {#LE}','kubernetes.scheduler.scheduling_algorithm_duration[{#LE}]','0','1h','0','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Scheduling algorithm latency in seconds.','0','30d','0','','39978','','','','','200','1','0','','','0','0','0','0','0','0','1','c794f7fbd7494bb69d9c51140c443236','0','2','0'), ('40016','18','','10510','Deployment count','kube.deployment.count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of deployments.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','483fc2c315264ae5963d34a45f80156e','0','2','0'), ('40017','18','','10510','Namespace count','kube.namespace.count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of namespaces.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','d266edd6dda34e15888b572569a1f301','0','2','0'), ('40018','18','','10510','Node count','kube.node.count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of nodes.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','968e1dcaf76645aebd4979b9ad4eca9e','0','2','0'), ('40019','18','','10510','Service count','kube.service.count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of services.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','262b0114fed14fec91d50589e97307a7','0','2','0'), ('40020','18','','10510','StatefulSet count','kube.statefulset.count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of statefulsets.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','3940412bea334e139a72b223197582eb','0','2','0'), ('40021','18','','10510','API servers discovery','kube.api_servers.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','','40011','','','','','200','1','0','','','0','0','0','0','0','0','0','dbfd8959361f4cdd973ed552eb18eb86','0','2','0'), ('40022','18','','10510','Component statuses discovery','kube.componentstatuses.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','','40010','','','','','200','1','0','','','0','0','0','0','0','0','0','920b56d5e9234da6b60717763e206736','0','2','0'), ('40023','18','','10510','Controller manager nodes discovery','kube.controller_manager.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','','40011','','','','','200','1','0','','','0','0','0','0','0','0','0','08463c66bce845e7acff0d91785e0982','0','2','0'), ('40024','18','','10510','Daemonset discovery','kube.daemonset.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','0','1','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','907dd8e2792e4e1591a99e4cdf65b0f0','0','2','0'), ('40025','18','','10510','Deployment discovery','kube.deployment.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','0','1','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','461770e4762f498e86f3f1c931fe27a9','0','2','0'), ('40026','18','','10510','Endpoint discovery','kube.endpoint.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','0','1','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','671a0dd7f6e54c6893094fa4360d3dd4','0','2','0'), ('40027','18','','10510','Livez discovery','kube.livez.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','','40012','','','','','200','1','0','','','0','0','0','0','0','0','0','438e963e02a749b5a2cc487b9fd5db05','0','2','0'), ('40028','18','','10510','Node discovery','kube.node.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','9d161120d2be48d1abb6e56107057874','0','2','0'), ('40029','18','','10510','Pod discovery','kube.pod.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','0','1','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','d88889ab64804c4389d3755ea49b80d6','0','2','0'), ('40030','18','','10510','PVC discovery','kube.pvc.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','0','1','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','4143b2f294ac45a5ab570a94a626fca6','0','2','0'), ('40031','18','','10510','Readyz discovery','kube.readyz.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','','40013','','','','','200','1','0','','','0','0','0','0','0','0','0','ee274767c42345e3a501f43e81a3364a','0','2','0'), ('40032','18','','10510','ReplicaSet discovery','kube.replicaset.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','0','1','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','6244f250f6cd411080221843ad1c59f2','0','2','0'), ('40033','18','','10510','Scheduler servers nodes discovery','kube.scheduler.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','','40011','','','','','200','1','0','','','0','0','0','0','0','0','0','f732cbb0e71e4ab896c973e355d7a6a4','0','2','0'), ('40034','18','','10510','StatefulSet discovery','kube.statefulset.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','0','1','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','37812660877243e9bdbc0ffc7815578c','0','2','0'), ('40035','18','','10510','Kubelet discovery','kube.kubelet.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','','40015','','','','','200','1','0','','','0','0','0','0','0','0','0','11ca82627209443a96693e443d6391c1','0','2','0'), ('40036','18','','10510','Component [{#NAME}]: Healthy','kube.componentstatuses.healthy[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Cluster component healthy.','0','30d','0','','40010','','','','','200','1','0','','','0','0','0','0','0','0','0','766e311f05f646d18eaaaa9ea9afa691','0','2','0'), ('40037','18','','10510','Namespace [{#NAMESPACE}] Daemonset [{#NAME}]: Desired','kube.daemonset.desired[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of nodes that should be running the daemon pod.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','61a295b5e2ec4e1f91984a74d0695c1b','0','2','0'), ('40038','18','','10510','Namespace [{#NAMESPACE}] Daemonset [{#NAME}]: Misscheduled','kube.daemonset.misscheduled[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of nodes that run a daemon pod but are not supposed to.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','5393cb9b29e442198967cdd2a040d673','0','2','0'), ('40039','18','','10510','Namespace [{#NAMESPACE}] Daemonset [{#NAME}]: Ready','kube.daemonset.ready[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of nodes that should be running the daemon pod and have one or more running and ready.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','193ccc0290514c4594193a8bcfd60312','0','2','0'), ('40040','18','','10510','Namespace [{#NAMESPACE}] Daemonset [{#NAME}]: Scheduled','kube.daemonset.scheduled[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of nodes that run at least one daemon pod and are supposed to.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','5727ade78d394d8da1ae46b5d35b5f54','0','2','0'), ('40041','18','','10510','Namespace [{#NAMESPACE}] Daemonset [{#NAME}]: Updated number scheduled','kube.daemonset.updated[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of nodes that are running updated daemon pod.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','d7c1ebe9e42942719dae731a2c440208','0','2','0'), ('40042','18','','10510','Namespace [{#NAMESPACE}] Deployment [{#NAME}]: Replicas','kube.deployment.replicas[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of replicas per deployment.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','943c67dc814e4b06a57fbc4ef609686a','0','2','0'), ('40043','18','','10510','Namespace [{#NAMESPACE}] Deployment [{#NAME}]: Replicas available','kube.deployment.replicas_available[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of available replicas per deployment.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','23d730bdea7f444eb5f2ee8bf5987379','0','2','0'), ('40044','18','','10510','Namespace [{#NAMESPACE}] Deployment [{#NAME}]: Replicas desired','kube.deployment.replicas_desired[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of desired pods for a deployment.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','b79fe110f4d64a94bb78d7f1e9b175e7','0','2','0'), ('40045','18','','10510','Namespace [{#NAMESPACE}] Deployment [{#NAME}]: Replicas unavailable','kube.deployment.replicas_unavailable[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of unavailable replicas per deployment.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','891537523f98425c8bb1566f984b535a','0','2','0'), ('40046','18','','10510','Namespace [{#NAMESPACE}] Deployment [{#NAME}]: Replicas updated','kube.deployment.replicas_updated[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of updated replicas per deployment.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','241480bc5e90426abbf5d2792cd846cd','0','2','0'), ('40047','18','','10510','Namespace [{#NAMESPACE}] Deployment [{#NAME}]: Rollingupdate max unavailable','kube.deployment.rollingupdate.max_unavailable[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Maximum number of unavailable replicas during a rolling update of a deployment.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','2651b21facca4bd88929079f4372da37','0','2','0'), ('40048','18','','10510','Namespace [{#NAMESPACE}] Deployment [{#NAME}]: Paused','kube.deployment.spec_paused[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Whether the deployment is paused and will not be processed by the deployment controller.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','edc5635267b146d2b0a986e5820227ac','0','2','0'), ('40049','18','','10510','Namespace [{#NAMESPACE}] Endpoint [{#NAME}]: Address available','kube.endpoint.address_available[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of addresses available in endpoint.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','d587eb7186dd425ead2c9554825ba20a','0','2','0'), ('40050','18','','10510','Namespace [{#NAMESPACE}] Endpoint [{#NAME}]: Address not ready','kube.endpoint.address_not_ready[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of addresses not ready in endpoint.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','91fc21c37e144890858137f7f5c38135','0','2','0'), ('40051','18','','10510','Namespace [{#NAMESPACE}] Endpoint [{#NAME}]: Age','kube.endpoint.age[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Endpoint age (number of seconds since creation).','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','f6c2a426e0154c34b2bcb98eeeb88a0d','0','2','0'), ('40052','18','','10510','Livez [{#NAME}]: Healthcheck','kube.livez.healthcheck[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Result of livez healthcheck for component.','0','30d','0','','40012','','','','','200','1','0','','','0','0','0','0','0','0','0','93548d985c1542a891bfc74f2d42d59a','0','2','0'), ('40053','18','','10510','Node [{#NAME}]: CPU allocatable','kube.node.cpu_allocatable[{#NAME}]','0','31d','365d','0','0','','cpu','','',NULL,NULL,'','','0','','','','','2',NULL,'The CPU resources of a node that are available for scheduling.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','4f994219cbe94dfe8d96af1ad5018212','0','2','0'), ('40054','18','','10510','Node [{#NAME}]: CPU capacity','kube.node.cpu_capacity[{#NAME}]','0','31d','365d','0','0','','cpu','','',NULL,NULL,'','','0','','','','','2',NULL,'The capacity for CPU resources of a node.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','5d3ad3e1b2a547aea65b557ff2765ef7','0','2','0'), ('40055','18','','10510','Node [{#NAME}]: Memory allocatable','kube.node.memory_allocatable[{#NAME}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The memory resources of a node that are available for scheduling.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','0247f7ba014443a0b13a4fdd3e191062','0','2','0'), ('40056','18','','10510','Node [{#NAME}]: Memory capacity','kube.node.memory_capacity[{#NAME}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The capacity for memory resources of a node.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','3336028952b14e2ab3dae55659156ea3','0','2','0'), ('40057','18','','10510','Node [{#NAME}]: Pods allocatable','kube.node.pods_allocatable[{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The pods resources of a node that are available for scheduling.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','049eb92c52a24c9887d7120f2a7e106c','0','2','0'), ('40058','18','','10510','Node [{#NAME}]: Pods capacity','kube.node.pods_capacity[{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The capacity for pods resources of a node.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','163edc95ec7d41f29099b94409916d82','0','2','0'), ('40059','18','','10510','Namespace [{#NAMESPACE}] Pod [{#NAME}]: Containers CPU limits','kube.pod.containers.limits.cpu[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The limit on CPU cores to be used by a container.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','3a145b38d57f4164a7a9ef0dd15c530a','0','2','0'), ('40060','18','','10510','Namespace [{#NAMESPACE}] Pod [{#NAME}] Phase: Failed','kube.pod.phase.failed[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Pod is in failed state.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','dedbaa4308624b6b982a7e6b62f92d3f','0','2','0'), ('40061','18','','10510','Namespace [{#NAMESPACE}] Pod [{#NAME}]: Scheduled','kube.pod.scheduled[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Describes the status of the scheduling process for the pod.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','0f858209a4b344de80b1382710c6f153','0','2','0'), ('40062','18','','10510','Namespace [{#NAMESPACE}] Pod [{#NAME}]: Ready','kube.pod.ready[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Describes whether the pod is ready to serve requests.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','d946bc58d5a44aa9936b09c825a51f59','0','2','0'), ('40063','18','','10510','Namespace [{#NAMESPACE}] Pod [{#NAME}] Phase: Unknown','kube.pod.phase.unknown[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Pod is in unknown state.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','9303dab482754a7b991b3ba4afef96e7','0','2','0'), ('40064','18','','10510','Namespace [{#NAMESPACE}] Pod [{#NAME}] Phase: Succeeded','kube.pod.phase.succeeded[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Pod is in succeeded state.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','8a9451a6466f4c64b31377d850841578','0','2','0'), ('40065','18','','10510','Namespace [{#NAMESPACE}] Pod [{#NAME}] Phase: Running','kube.pod.phase.running[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Pod is in unknown state.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','59168479f1e246bf8da46606f3ce2a5e','0','2','0'), ('40066','18','','10510','Namespace [{#NAMESPACE}] Pod [{#NAME}] Phase: Pending','kube.pod.phase.pending[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Pod is in pending state.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','fa3759bb7873453b9842f3e459403163','0','2','0'), ('40067','18','','10510','Namespace [{#NAMESPACE}] Pod [{#NAME}]: Containers waiting','kube.pod.containers_waiting[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Describes whether the container is currently in waiting state.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','01d80d5f171f4af2b3b1da70679e87ba','0','2','0'), ('40068','18','','10510','Namespace [{#NAMESPACE}] Pod [{#NAME}]: Containers memory limits','kube.pod.containers.limits.memory[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The limit on memory to be used by a container.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','e1dd38e6fb484610891aef057a58daf0','0','2','0'), ('40069','18','','10510','Namespace [{#NAMESPACE}] Pod [{#NAME}]: Containers terminated','kube.pod.containers_terminated[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Describes whether the container is currently in terminated state.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','50785c1c96894866973ebf8491e3c320','0','2','0'), ('40070','18','','10510','Namespace [{#NAMESPACE}] Pod [{#NAME}]: Containers running','kube.pod.containers_running[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Describes whether the container is currently in running state.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','b96149f7a44d4a49903421fbc38c0101','0','2','0'), ('40071','18','','10510','Namespace [{#NAMESPACE}] Pod [{#NAME}]: Containers restarts','kube.pod.containers_restarts[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of container restarts.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','fbc8f3a91ec9429ca4c6d70c07480dcc','0','2','0'), ('40072','18','','10510','Namespace [{#NAMESPACE}] Pod [{#NAME}]: Containers ready','kube.pod.containers_ready[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Describes whether the containers readiness check succeeded.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','1719bf9d1a1c443dbddcefb91483a77c','0','2','0'), ('40073','18','','10510','Namespace [{#NAMESPACE}] Pod [{#NAME}]: Containers memory requests','kube.pod.containers.requests.memory[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of requested memory bytes by a container.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','27379c192d0841a5adb2c2e4ae937263','0','2','0'), ('40074','18','','10510','Namespace [{#NAMESPACE}] Pod [{#NAME}]: Containers CPU requests','kube.pod.containers.requests.cpu[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of requested CPU cores by a container.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','8465ea15f3974476924cb66df5a63e0c','0','2','0'), ('40075','18','','10510','Namespace [{#NAMESPACE}] Pod [{#NAME}]: Unschedulable','kube.pod.unschedulable[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Describes the unschedulable status for the pod.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','93ba93d04ec34b5193252f19a33f5d59','0','2','0'), ('40076','18','','10510','Namespace [{#NAMESPACE}] PVC [{#NAME}] Requested storage','kube.pvc.requested.storage[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The capacity of storage requested by the persistent volume claim.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','9187144531f145398bfbe7281290533d','0','2','0'), ('40085','18','','10510','Readyz [{#NAME}]: Healthcheck','kube.readyz.healthcheck[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Result of readyz healthcheck for component.','0','30d','0','','40013','','','','','200','1','0','','','0','0','0','0','0','0','0','c0693fb2709e4b01a35ca433edb84db7','0','2','0'), ('40086','18','','10510','Namespace [{#NAMESPACE}] ReplicaSet [{#NAME}]: Fully labeled replicas','kube.replicaset.fully_labeled_replicas[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of fully labeled replicas per ReplicaSet.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','928536dae27c4e3497627b9f5642a7a8','0','2','0'), ('40087','18','','10510','Namespace [{#NAMESPACE}] ReplicaSet [{#NAME}]: Ready','kube.replicaset.ready[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of ready replicas per ReplicaSet.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','4e911e4b71c342dba2227ed7ef360190','0','2','0'), ('40088','18','','10510','Namespace [{#NAMESPACE}] ReplicaSet [{#NAME}]: Replicas','kube.replicaset.replicas[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of replicas per ReplicaSet.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','545c8486dcc9409c93c6efee0f4b2ad6','0','2','0'), ('40089','18','','10510','Namespace [{#NAMESPACE}] ReplicaSet [{#NAME}]: Desired replicas','kube.replicaset.replicas_desired[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of desired pods for a ReplicaSet.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','30aea656c8a5470ea4566333077628b3','0','2','0'), ('40090','18','','10510','Namespace [{#NAMESPACE}] StatefulSet [{#NAME}]: Replicas','kube.statefulset.replicas[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of replicas per StatefulSet.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','9cc34425228f44868f3cd46450d557ca','0','2','0'), ('40091','18','','10510','Namespace [{#NAMESPACE}] StatefulSet [{#NAME}]: Current replicas','kube.statefulset.replicas_current[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of current replicas per StatefulSet.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','33e5a534b35f40c6ad7fef53212ef970','0','2','0'), ('40092','18','','10510','Namespace [{#NAMESPACE}] StatefulSet [{#NAME}]: Desired replicas','kube.statefulset.replicas_desired[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of desired pods for a StatefulSet.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','3fee3afc8b924b13ae24ab4b5e793acf','0','2','0'), ('40093','18','','10510','Namespace [{#NAMESPACE}] StatefulSet [{#NAME}]: Ready replicas','kube.statefulset.replicas_ready[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of ready replicas per StatefulSet.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','b35c1cebd902484998f383585ce29b76','0','2','0'), ('40094','18','','10510','Namespace [{#NAMESPACE}] StatefulSet [{#NAME}]: Updated replicas','kube.statefulset.replicas_updated[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of updated replicas per StatefulSet.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','b00b1cfed30e4b90b9754d543e72d7aa','0','2','0'), ('40117','18','','10515','Normalized packets','pfsense.packets.normalize','0','31d','365d','0','0','','pps','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB True if the packet was logged with the specified packet filter reason code. The known codes are: match, bad-offset, fragment, short, normalize, and memory.','0','30d','0','','49919','','','','','200','1','0','','','0','0','0','0','0','0','0','82360caa98ca4f209499db3c55b0c330','0','2','0'), ('40119','18','','10515','DHCP server status','pfsense.dhcpd.status','0','31d','365d','0','3','','','','',NULL,'573','','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The status of DHCP server process.','0','30d','0','','49920','','','','','200','1','0','','','0','0','0','0','0','0','0','a2a331bc385344a1877a45f3887b7d91','0','2','0'), ('40120','18','','10515','DNS server status','pfsense.dns.status','0','31d','365d','0','3','','','','',NULL,'573','','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The status of DNS server process.','0','30d','0','','49920','','','','','200','1','0','','','0','0','0','0','0','0','0','6a03330a20354f76b8496b9a8eac0c0a','0','2','0'), ('40121','18','','10515','State of nginx process','pfsense.nginx.status','0','31d','365d','0','3','','','','',NULL,'573','','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The status of nginx process.','0','30d','0','','49920','','','','','200','1','0','','','0','0','0','0','0','0','0','18a8140ca46a47e0b4a3612be5338ada','0','2','0'), ('40122','18','','10515','Packets with bad offset','pfsense.packets.bad.offset','0','31d','365d','0','0','','pps','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB True if the packet was logged with the specified packet filter reason code. The known codes are: match, bad-offset, fragment, short, normalize, and memory.','0','30d','0','','49919','','','','','200','1','0','','','0','0','0','0','0','0','0','3739cb57166343e3955d00fa31d55bd3','0','2','0'), ('40123','18','','10515','Fragmented packets','pfsense.packets.fragment','0','31d','365d','0','0','','pps','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB True if the packet was logged with the specified packet filter reason code. The known codes are: match, bad-offset, fragment, short, normalize, and memory.','0','30d','0','','49919','','','','','200','1','0','','','0','0','0','0','0','0','0','519dbf4fa71b48e8b70c1260caffea14','0','2','0'), ('40124','18','','10515','Packets matched a filter rule','pfsense.packets.match','0','31d','365d','0','0','','pps','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB True if the packet was logged with the specified packet filter reason code. The known codes are: match, bad-offset, fragment, short, normalize, and memory.','0','30d','0','','49919','','','','','200','1','0','','','0','0','0','0','0','0','0','d4a0686adfa7421ea472e64d94bee70b','0','2','0'), ('40125','18','','10515','Packets dropped due to memory limitation','pfsense.packets.mem.drop','0','31d','365d','0','0','','pps','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB True if the packet was logged with the specified packet filter reason code. The known codes are: match, bad-offset, fragment, short, normalize, and memory.','0','30d','0','','49919','','','','','200','1','0','','','0','0','0','0','0','0','0','ca30df62467645b6a04f791bf22d7b91','0','2','0'), ('40126','18','','10515','Short packets','pfsense.packets.short','0','31d','365d','0','0','','pps','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB True if the packet was logged with the specified packet filter reason code. The known codes are: match, bad-offset, fragment, short, normalize, and memory.','0','30d','0','','49919','','','','','200','1','0','','','0','0','0','0','0','0','0','cf4fbeeb1a6a4d9dbb69adf90b54de3a','0','2','0'), ('40138','18','','10515','Network interfaces discovery','pfsense.net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','49918','','','','','200','1','0','','','0','0','0','0','0','0','0','441ad463ea5544f89cb56b0b8f7763f9','0','2','0'), ('40147','18','','10515','Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 traffic blocked','net.if.in.block.v4.bps[{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB IPv4 bits per second blocked coming in on this interface.','0','30d','0','','49917','','','','','200','1','0','','','0','0','0','0','0','0','0','b20cd75f9b8543c894862003121893c1','0','2','0'), ('40148','18','','10515','Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 packets blocked','net.if.out.block.v6.pps[{#SNMPINDEX}]','0','31d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB The number of IPv6 packets blocked going out on this interface.','0','30d','0','','49917','','','','','200','1','0','','','0','0','0','0','0','0','0','41a658c922614223b5473eb4e01a3336','0','2','0'), ('40149','18','','10515','Interface [{#IFNAME}({#IFALIAS})]: Operational status','net.if.status[{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'571','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','49918','','','','','200','1','0','','','0','0','0','0','0','0','0','2af41422c46141fba0432818b076bca3','0','2','0'), ('40150','18','','10515','Interface [{#IFNAME}({#IFALIAS})]: Speed','net.if.speed[{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n'' then the speed of the interface is somewhere in the range of `n-500,000'' to`n+499,999''. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','49918','','','','','200','1','0','','','0','0','0','0','0','0','0','eb2f06d673094e10bab8e1d774b26997','0','2','0'), ('40151','18','','10515','Interface [{#IFNAME}({#IFALIAS})]: Rules references count','net.if.rules.refs[{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB The number of rules referencing this interface.','0','30d','0','','49917','','','','','200','1','0','','','0','0','0','0','0','0','0','ecde40c612da452599e2e7b2f1979e83','0','2','0'), ('40152','18','','10515','Interface [{#IFNAME}({#IFALIAS})]: Bits sent','net.if.out[{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','49918','','','','','200','1','0','','','0','0','0','0','0','0','0','afd513d29ecc4360ab0baf0a7ae3bb53','0','2','0'), ('40153','18','','10515','Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 packets passed','net.if.out.pass.v6.pps[{#SNMPINDEX}]','0','31d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB The number of IPv6 packets passed going out on this interface.','0','30d','0','','49917','','','','','200','1','0','','','0','0','0','0','0','0','0','a5ba6a1a6dbf4788b77eee825f85eed1','0','2','0'), ('40154','18','','10515','Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 traffic passed','net.if.out.pass.v6.bps[{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB IPv6 bits per second passed going out on this interface.','0','30d','0','','49917','','','','','200','1','0','','','0','0','0','0','0','0','0','3b472db1999640c3a0ef0c75ddae7940','0','2','0'), ('40155','18','','10515','Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 packets passed','net.if.out.pass.v4.pps[{#SNMPINDEX}]','0','31d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB The number of IPv4 packets passed going out on this interface.','0','30d','0','','49917','','','','','200','1','0','','','0','0','0','0','0','0','0','e073f3fd38ed4aeaba85dfa5b74cc066','0','2','0'), ('40156','18','','10515','Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 traffic passed','net.if.out.pass.v4.bps[{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB IPv4 bits per second passed going out on this interface.','0','30d','0','','49917','','','','','200','1','0','','','0','0','0','0','0','0','0','29e2a5d7299b4419bbb29a98c068d46f','0','2','0'), ('40157','18','','10515','Interface [{#IFNAME}({#IFALIAS})]: Outbound packets with errors','net.if.out.errors[{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','49918','','','','','200','1','0','','','0','0','0','0','0','0','0','72d053e5bf3b4330a99382b8a2efcdf7','0','2','0'), ('40158','18','','10515','Interface [{#IFNAME}({#IFALIAS})]: Outbound packets discarded','net.if.out.discards[{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','49918','','','','','200','1','0','','','0','0','0','0','0','0','0','feb327e6f99e41c3a0194d1578a46e50','0','2','0'), ('40159','18','','10515','Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 traffic blocked','net.if.out.block.v6.bps[{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB IPv6 bits per second blocked going out on this interface.','0','30d','0','','49917','','','','','200','1','0','','','0','0','0','0','0','0','0','c81392868fe04ba5bd82dcffa3065e73','0','2','0'), ('40160','18','','10515','Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 packets blocked','net.if.in.block.v4.pps[{#SNMPINDEX}]','0','31d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB The number of IPv4 packets blocked coming in on this interface.','0','30d','0','','49917','','','','','200','1','0','','','0','0','0','0','0','0','0','850a471b36de4bcebf9d8831f52953de','0','2','0'), ('40161','18','','10515','Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 packets blocked','net.if.out.block.v4.pps[{#SNMPINDEX}]','0','31d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB The number of IPv4 packets blocked going out on this interface.','0','30d','0','','49917','','','','','200','1','0','','','0','0','0','0','0','0','0','03c616505a6746ffa8027efd95aad00d','0','2','0'), ('40162','18','','10515','Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 traffic blocked','net.if.out.block.v4.bps[{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB IPv4 bits per second blocked going out on this interface.','0','30d','0','','49917','','','','','200','1','0','','','0','0','0','0','0','0','0','b9c94af7fae9462a9659261366c03e4f','0','2','0'), ('40163','18','','10515','Interface [{#IFNAME}({#IFALIAS})]: Bits received','net.if.in[{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','49918','','','','','200','1','0','','','0','0','0','0','0','0','0','4fefa40765144566a5c507ef19f884d6','0','2','0'), ('40164','18','','10515','Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 packets passed','net.if.in.pass.v6.pps[{#SNMPINDEX}]','0','31d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB The number of IPv6 packets passed coming in on this interface.','0','30d','0','','49917','','','','','200','1','0','','','0','0','0','0','0','0','0','5eb85cf165424dde93e028468c310593','0','2','0'), ('40165','18','','10515','Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 traffic passed','net.if.in.pass.v6.bps[{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB IPv6 bits per second passed coming in on this interface.','0','30d','0','','49917','','','','','200','1','0','','','0','0','0','0','0','0','0','1ed0a16478074997a3254fd1025a438d','0','2','0'), ('40166','18','','10515','Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 packets passed','net.if.in.pass.v4.pps[{#SNMPINDEX}]','0','31d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB The number of IPv4 packets passed coming in on this interface.','0','30d','0','','49917','','','','','200','1','0','','','0','0','0','0','0','0','0','a895016cc42341729beb3ec41e30e1dc','0','2','0'), ('40167','18','','10515','Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 traffic passed','net.if.in.pass.v4.bps[{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB IPv4 bits per second passed coming in on this interface.','0','30d','0','','49917','','','','','200','1','0','','','0','0','0','0','0','0','0','fcda9fb8fff14106940543836177e3e3','0','2','0'), ('40168','18','','10515','Interface [{#IFNAME}({#IFALIAS})]: Inbound packets with errors','net.if.in.errors[{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','49918','','','','','200','1','0','','','0','0','0','0','0','0','0','4915f853f848404988ce7ae3a22e7991','0','2','0'), ('40169','18','','10515','Interface [{#IFNAME}({#IFALIAS})]: Inbound packets discarded','net.if.in.discards[{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','49918','','','','','200','1','0','','','0','0','0','0','0','0','0','eea8bd3342824bed8b4e3768c069e8b3','0','2','0'), ('40170','18','','10515','Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 packets blocked','net.if.in.block.v6.pps[{#SNMPINDEX}]','0','31d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB The number of IPv6 packets blocked coming in on this interface.','0','30d','0','','49917','','','','','200','1','0','','','0','0','0','0','0','0','0','2582b09afee14e658c9c9c8b845818b9','0','2','0'), ('40171','18','','10515','Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 traffic blocked','net.if.in.block.v6.bps[{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB IPv6 bits per second blocked coming in on this interface.','0','30d','0','','49917','','','','','200','1','0','','','0','0','0','0','0','0','0','96de779174c8486d97269a43f0d4a8f4','0','2','0'), ('40172','18','','10515','Interface [{#IFNAME}({#IFALIAS})]: Interface type','net.if.type[{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'572','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','49918','','','','','200','1','0','','','0','0','0','0','0','0','0','86f6e925d8a64e31a44b5338c92b31ec','0','2','0'), ('40185','18','','10262','Required VPS','requiredperformance','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The required performance of a proxy (the number of values that need to be collected per second).','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','0df481994c454884b6be2e2132248af7','0','2','0'), ('40186','18','','10262','Uptime','uptime','0','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'Uptime of the Zabbix proxy process in seconds.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','28d87aef584644e9a3adcde33966b4e1','0','2','0'), ('40187','18','','10262','Preprocessing queue','preprocessing_queue','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of values enqueued in the preprocessing queue.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','e6654e9406b74b28909dc166b2805125','0','2','0'), ('40188','18','','10262','Utilization of preprocessing manager internal processes, in %','process.preprocessing_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the preprocessing manager processes have been busy for the last minute.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','c4746528d75a41898a7ded21701de019','0','2','0'), ('40189','18','','10262','Utilization of preprocessing worker internal processes, in %','process.preprocessing_worker.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the preprocessing worker processes have been busy for the last minute.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','5b10c9859c3443459b5e993015ae68fc','0','2','0'), ('40643','18','','10220','Entity Serial Numbers Discovery','entity_sn.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','','45137','','','','','200','1','0','','','0','0','0','0','0','0','0','fbeef9c16d9d45b7a5c50f530a697f76','0','2','0'), ('40644','18','','10220','FAN Discovery','fan.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The table of fan status maintained by the environmental monitor.','0','7d','0','','45140','','','','','200','1','0','','','0','0','0','0','0','0','0','109cd000cd044e4096bf98dbf57b72d1','0','2','0'), ('40645','18','','10220','Memory Discovery','memory.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries. http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','7d','0','','45136','','','','','200','1','0','','','0','0','0','0','0','0','0','727adcf658d141ff9e45744107a58c38','0','2','0'), ('40646','18','','10220','PSU Discovery','psu.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The table of power supply status maintained by the environmental monitor card.','0','7d','0','','45139','','','','','200','1','0','','','0','0','0','0','0','0','0','5e67e9c84ac54dea866893207a42d3e3','0','2','0'), ('40647','18','','10220','Temperature Discovery','temperature.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status maintained by the environmental monitor.','0','7d','0','','45138','','','','','200','1','0','','','0','0','0','0','0','0','0','73d10f48886443248f7d2d9167fcfee5','0','2','0'), ('40648','18','','10218','CPU Discovery','cpu.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable, indexed with cpmCPUTotalIndex. This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router, like different CPU chips, group of CPUs, or CPUs in different modules/cards. In case of a single CPU, cpmCPUTotalTable has only one entry.','0','7d','0','','45130','','','','','200','1','0','','','0','0','0','0','0','0','0','f7404c15a9dc497b8e67ab014ca43890','0','2','0'), ('40649','18','','10218','Entity Serial Numbers Discovery','entity_sn.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','','45129','','','','','200','1','0','','','0','0','0','0','0','0','0','e8c57e436eed4958a0a83c7afd6a07e3','0','2','0'), ('40650','18','','10218','FAN Discovery','fan.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The table of fan status maintained by the environmental monitor.','0','7d','0','','45133','','','','','200','1','0','','','0','0','0','0','0','0','0','98eebfb8ed28460c8e5982af61f18931','0','2','0'), ('40651','18','','10218','Memory Discovery','memory.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries. http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','7d','0','','45128','','','','','200','1','0','','','0','0','0','0','0','0','0','d7144482448b4bb5b4f59f18365ecb04','0','2','0'), ('40652','18','','10218','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45134','','','','','200','1','0','','','0','0','0','0','0','0','0','b416fb001e46464f847578a50451164b','0','2','0'), ('40653','18','','10218','EtherLike-MIB Discovery','net.if.duplex.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with `up(1)` Operational Status are discovered.','0','7d','1','','45135','','','','','200','1','0','','','0','0','0','0','0','0','0','d79d3a6026bd4d1f877fc164a3eb7f84','0','2','0'), ('40654','18','','10218','PSU Discovery','psu.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The table of power supply status maintained by the environmental monitor card.','0','7d','0','','45132','','','','','200','1','0','','','0','0','0','0','0','0','0','4ffaea3ee50c424baa1080586d92ba2f','0','2','0'), ('40655','18','','10218','Temperature Discovery','temperature.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status maintained by the environmental monitor.','0','7d','0','','45131','','','','','200','1','0','','','0','0','0','0','0','0','0','2751c1ff3f334145971aa400440631fe','0','2','0'), ('40656','18','','10253','CPU Discovery','cpu.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable, indexed with cpmCPUTotalIndex. This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router, like different CPU chips, group of CPUs, or CPUs in different modules/cards. In case of a single CPU, cpmCPUTotalTable has only one entry.','0','7d','0','','45143','','','','','200','1','0','','','0','0','0','0','0','0','0','1d8d76707b1049cabfda668257c257b6','0','2','0'), ('40657','18','','10253','Entity Serial Numbers Discovery','entity_sn.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','','45142','','','','','200','1','0','','','0','0','0','0','0','0','0','afafbf551dc242e8a85dbb12ba1aa067','0','2','0'), ('40658','18','','10253','FAN Discovery','fan.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The table of fan status maintained by the environmental monitor.','0','7d','0','','45146','','','','','200','1','0','','','0','0','0','0','0','0','0','0906581023f54a0b95102288e8ed4714','0','2','0'), ('40659','18','','10253','Memory Discovery','memory.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries. http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','7d','0','','45141','','','','','200','1','0','','','0','0','0','0','0','0','0','4831ae0d8acc47e7bb9c3a4a94678472','0','2','0'), ('40660','18','','10253','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45147','','','','','200','1','0','','','0','0','0','0','0','0','0','328da4bee6ea49aa8809cdbb74744263','0','2','0'), ('40661','18','','10253','PSU Discovery','psu.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The table of power supply status maintained by the environmental monitor card.','0','7d','0','','45145','','','','','200','1','0','','','0','0','0','0','0','0','0','09264b1af69a4a4595ba2e4539106d6f','0','2','0'), ('40662','18','','10253','Temperature Discovery','temperature.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status maintained by the environmental monitor.','0','7d','0','','45144','','','','','200','1','0','','','0','0','0','0','0','0','0','eb482b3a03b74dc494632be0728f953b','0','2','0'), ('40663','18','','10220','{#ENT_NAME}: Hardware serial number','system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB','0','30d','0','','45137','','','','','200','1','0','','','0','0','0','0','0','0','0','1993495d289d407e85c24f4986819ab8','0','2','0'), ('40664','18','','10220','{#SENSOR_INFO}: Fan status','sensor.fan.status[ciscoEnvMonFanState.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'600','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB','0','30d','0','','45140','','','','','200','1','0','','','0','0','0','0','0','0','0','7008cccccf2647918bce95bb0a6193df','0','2','0'), ('40665','18','','10220','{#SNMPVALUE}: Free memory','vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-MEMORY-POOL-MIB Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','','45136','','','','','200','1','0','','','0','0','0','0','0','0','0','e0df9d6e31384da4af18ab191e467814','0','2','0'), ('40666','18','','10220','{#SNMPVALUE}: Used memory','vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-MEMORY-POOL-MIB Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device. Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','','45136','','','','','200','1','0','','','0','0','0','0','0','0','0','25471f4acc4348bf978792fcfaff6acc','0','2','0'), ('40668','18','','10220','{#SENSOR_INFO}: Power supply status','sensor.psu.status[ciscoEnvMonSupplyState.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'600','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB','0','30d','0','','45139','','','','','200','1','0','','','0','0','0','0','0','0','0','d05d99a68e3540d09d64b8bab5d63004','0','2','0'), ('40669','18','','10220','{#SNMPVALUE}: Temperature status','sensor.temp.status[ciscoEnvMonTemperatureState.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'600','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB The current state of the test point being instrumented.','0','30d','0','','45138','','','','','200','1','0','','','0','0','0','0','0','0','0','a12075ae5b834eeeb742fed6f7afc39d','0','2','0'), ('40670','18','','10220','{#SNMPVALUE}: Temperature','sensor.temp.value[ciscoEnvMonTemperatureValue.{#SNMPINDEX}]','0','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB The current measurement of the test point being instrumented.','0','30d','0','','45138','','','','','200','1','0','','','0','0','0','0','0','0','0','ea0d56dd49104257ba6c14ce3bdb753a','0','2','0'), ('40671','18','','10218','#{#SNMPINDEX}: CPU utilization','system.cpu.util[cpmCPUTotal5minRev.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-PROCESS-MIB The cpmCPUTotal5minRev MIB object provides a more accurate view of the performance of the router over time than the MIB objects cpmCPUTotal1minRev and cpmCPUTotal5secRev . These MIB objects are not accurate because they look at CPU at one minute and five second intervals, respectively. These MIBs enable you to monitor the trends and plan the capacity of your network. The recommended baseline rising threshold for cpmCPUTotal5minRev is 90 percent. Depending on the platform, some routers that run at 90 percent, for example, 2500s, can exhibit performance degradation versus a high-end router, for example, the 7500 series, which can operate fine. Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html','0','30d','0','','45130','','','','','200','1','0','','','0','0','0','0','0','0','0','b124144899bd4149a6257440574d4341','0','2','0'), ('40672','18','','10218','{#ENT_NAME}: Hardware serial number','system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB','0','30d','0','','45129','','','','','200','1','0','','','0','0','0','0','0','0','0','e86b198ba7b7451482dfb8ab07553abf','0','2','0'), ('40673','18','','10218','{#SENSOR_INFO}: Fan status','sensor.fan.status[ciscoEnvMonFanState.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'603','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB','0','30d','0','','45133','','','','','200','1','0','','','0','0','0','0','0','0','0','d7188ce8f18442d882c585ef044de2cf','0','2','0'), ('40674','18','','10218','{#SNMPVALUE}: Free memory','vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-MEMORY-POOL-MIB Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','','45128','','','','','200','1','0','','','0','0','0','0','0','0','0','b05c256436e14f72a3dea21d48b98a9c','0','2','0'), ('40675','18','','10218','{#SNMPVALUE}: Used memory','vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-MEMORY-POOL-MIB Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device. Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','','45128','','','','','200','1','0','','','0','0','0','0','0','0','0','58e8eeb2ddf74c6e86e02845f0d38784','0','2','0'), ('40677','18','','10218','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45134','','','','','200','1','0','','','0','0','0','0','0','0','0','6d4b70db5618436f8d5096098d94ad39','0','2','0'), ('40678','18','','10218','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45134','','','','','200','1','0','','','0','0','0','0','0','0','0','1cdd9e77a6f9420da700b903e2fc0966','0','2','0'), ('40679','18','','10218','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45134','','','','','200','1','0','','','0','0','0','0','0','0','0','22cb1c9d188c4274a4f9ac815832fc21','0','2','0'), ('40680','18','','10218','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45134','','','','','200','1','0','','','0','0','0','0','0','0','0','75182ac83419420194cf34c4e5f92a62','0','2','0'), ('40681','18','','10218','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45134','','','','','200','1','0','','','0','0','0','0','0','0','0','c31a98b3b9784cd699b5d0dadbc3dc4a','0','2','0'), ('40682','18','','10218','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45134','','','','','200','1','0','','','0','0','0','0','0','0','0','973dbf88a72d4f5897bb199b5d41941a','0','2','0'), ('40683','18','','10218','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45134','','','','','200','1','0','','','0','0','0','0','0','0','0','e24cccb1e89446268b30830ac01d59f8','0','2','0'), ('40684','18','','10218','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'605','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45134','','','','','200','1','0','','','0','0','0','0','0','0','0','6ecd6a8ec5fa487c836adb69e72915e7','0','2','0'), ('40685','18','','10218','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'606','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45134','','','','','200','1','0','','','0','0','0','0','0','0','0','51e3b46e009944d594fd4bdadeac83aa','0','2','0'), ('40686','18','','10218','Interface {#IFNAME}({#IFALIAS}): Duplex status','net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'604','','','0','','','','','2',NULL,'MIB: EtherLike-MIB The current mode of operation of the MAC entity. `unknown` indicates that the current duplex mode could not be determined. Management control of the duplex mode is accomplished through the MAU MIB. When an interface does not support autonegotiation or when autonegotiation is not enabled, the duplex mode is controlled using `ifMauDefaultType`. When autonegotiation is supported and enabled, duplex mode is controlled using `ifMauAutoNegAdvertisedBits`. In either case, the currently operating duplex mode in reflected both in this object and in `ifMauType`. Note that this object provides redundant information with `ifMauType`. Normally, redundant objects are discouraged. However, in this instance, it allows a management application to determine the duplex status of an interface without having to know every possible value of `ifMauType`. This was felt to be sufficiently valuable to justify the redundancy. Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.','0','30d','0','','45135','','','','','200','1','0','','','0','0','0','0','0','0','0','338e81aa226b41dd956bc1f9d10c0a87','0','2','0'), ('40687','18','','10218','{#SENSOR_INFO}: Power supply status','sensor.psu.status[ciscoEnvMonSupplyState.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'603','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB','0','30d','0','','45132','','','','','200','1','0','','','0','0','0','0','0','0','0','22ac9f6f30eb4f4b9d009db4adba7f29','0','2','0'), ('40688','18','','10218','{#SNMPVALUE}: Temperature status','sensor.temp.status[ciscoEnvMonTemperatureState.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'603','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB The current state of the test point being instrumented.','0','30d','0','','45131','','','','','200','1','0','','','0','0','0','0','0','0','0','7985d9ceeaeb4a4f8e39e02730e91d29','0','2','0'), ('40689','18','','10218','{#SNMPVALUE}: Temperature','sensor.temp.value[ciscoEnvMonTemperatureValue.{#SNMPINDEX}]','0','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB The current measurement of the test point being instrumented.','0','30d','0','','45131','','','','','200','1','0','','','0','0','0','0','0','0','0','c1fb8e8099ed496a9af8d3e36d6d3c8b','0','2','0'), ('40690','18','','10253','{#SNMPVALUE}: CPU utilization','system.cpu.util[cpmCPUTotal5min.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-PROCESS-MIB The overall CPU busy percentage in the last 5 minute period. This object deprecates the avgBusy5 object from the OLD-CISCO-SYSTEM-MIB. This object is deprecated by cpmCPUTotal5minRev which has the changed range of value (0..100). Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html','0','30d','0','','45143','','','','','200','1','0','','','0','0','0','0','0','0','0','2f6285386ed54cd99d7aaf41e6f3e891','0','2','0'), ('40691','18','','10253','{#ENT_NAME}: Hardware serial number','system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ENTITY-MIB','0','30d','0','','45142','','','','','200','1','0','','','0','0','0','0','0','0','0','88f4929957f5485f974bdc1bafde68d7','0','2','0'), ('40692','18','','10253','{#SENSOR_INFO}: Fan status','sensor.fan.status[ciscoEnvMonFanState.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'609','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB','0','30d','0','','45146','','','','','200','1','0','','','0','0','0','0','0','0','0','b1e82af988c14dce81fcbd549fe4ece6','0','2','0'), ('40693','18','','10253','{#SNMPVALUE}: Free memory','vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-MEMORY-POOL-MIB Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','','45141','','','','','200','1','0','','','0','0','0','0','0','0','0','e9876af72ead4cc7814f8c54801de7ee','0','2','0'), ('40694','18','','10253','{#SNMPVALUE}: Used memory','vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-MEMORY-POOL-MIB Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device. Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html','0','30d','0','','45141','','','','','200','1','0','','','0','0','0','0','0','0','0','260d3d59256040fd808d5d4c6a549d07','0','2','0'), ('40696','18','','10253','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45147','','','','','200','1','0','','','0','0','0','0','0','0','0','db98684d85c644f28190544d534c1b09','0','2','0'), ('40697','18','','10253','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45147','','','','','200','1','0','','','0','0','0','0','0','0','0','a2c7793712e549cbad6e37da30754b58','0','2','0'), ('40698','18','','10253','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45147','','','','','200','1','0','','','0','0','0','0','0','0','0','a77450c8292a483b86e72156af6e7ec7','0','2','0'), ('40699','18','','10253','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45147','','','','','200','1','0','','','0','0','0','0','0','0','0','33e86cf0c2374d0d932a8e3c9b6ebf1a','0','2','0'), ('40700','18','','10253','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45147','','','','','200','1','0','','','0','0','0','0','0','0','0','6960110871dd40f89f344ab90cdb03f9','0','2','0'), ('40701','18','','10253','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45147','','','','','200','1','0','','','0','0','0','0','0','0','0','fe427d3bbef7420880906cc52c07c706','0','2','0'), ('40702','18','','10253','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45147','','','','','200','1','0','','','0','0','0','0','0','0','0','c03404b9c68749b3bef5de34a8815cce','0','2','0'), ('40703','18','','10253','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'610','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45147','','','','','200','1','0','','','0','0','0','0','0','0','0','ec072a91a34244d5ba434f592e9cb72d','0','2','0'), ('40704','18','','10253','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'611','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45147','','','','','200','1','0','','','0','0','0','0','0','0','0','6dec04a0c0fc453ebc103e28daea731d','0','2','0'), ('40705','18','','10253','{#SENSOR_INFO}: Power supply status','sensor.psu.status[ciscoEnvMonSupplyState.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'609','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB','0','30d','0','','45145','','','','','200','1','0','','','0','0','0','0','0','0','0','86973dc8030e463fb51b075e161ae8a3','0','2','0'), ('40706','18','','10253','{#SNMPVALUE}: Temperature status','sensor.temp.status[ciscoEnvMonTemperatureState.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'609','','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB The current state of the test point being instrumented.','0','30d','0','','45144','','','','','200','1','0','','','0','0','0','0','0','0','0','14f46d8210164b6596dc6bf0c343db3b','0','2','0'), ('40707','18','','10253','{#SNMPVALUE}: Temperature','sensor.temp.value[ciscoEnvMonTemperatureValue.{#SNMPINDEX}]','0','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CISCO-ENVMON-MIB The current measurement of the test point being instrumented.','0','30d','0','','45144','','','','','200','1','0','','','0','0','0','0','0','0','0','7c68ab13b881467e863b28776c0da571','0','2','0'), ('40945','18','','10449','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45153','','','','','200','1','0','','','0','0','0','0','0','0','0','afd7c5604cbc4142903dcc6dce8d5653','0','2','0'), ('40946','18','','10449','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45153','','','','','200','1','0','','','0','0','0','0','0','0','0','088e163cea204bdf81c29b7dd9aa6cce','0','2','0'), ('40947','18','','10449','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45153','','','','','200','1','0','','','0','0','0','0','0','0','0','ff3b483497b84ff081d5ab28104e4579','0','2','0'), ('40948','18','','10449','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45153','','','','','200','1','0','','','0','0','0','0','0','0','0','33618d8ffb5c4d07a2b290e4c75073c9','0','2','0'), ('40949','18','','10449','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45153','','','','','200','1','0','','','0','0','0','0','0','0','0','17633027e7b84b1bbbeae76d53167713','0','2','0'), ('40950','18','','10449','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45153','','','','','200','1','0','','','0','0','0','0','0','0','0','5c532fd7877a413eaa528137b67d6857','0','2','0'), ('40951','18','','10449','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45153','','','','','200','1','0','','','0','0','0','0','0','0','0','524fc8bdd17e4eb99184829300e5c056','0','2','0'), ('40952','18','','10449','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45153','','','','','200','1','0','','','0','0','0','0','0','0','0','534bf0300941479d9e468d418014d098','0','2','0'), ('40953','18','','10449','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'662','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45153','','','','','200','1','0','','','0','0','0','0','0','0','0','f1d0b7bbd5824ab7959be1230a4c0beb','0','2','0'), ('40954','18','','10449','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'663','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45153','','','','','200','1','0','','','0','0','0','0','0','0','0','71d2a42612124a3eaa61a3baee1d4691','0','2','0'), ('40966','18','','10450','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45159','','','','','200','1','0','','','0','0','0','0','0','0','0','f4df6cb6afce4d0298e1f97f8d0a7ad5','0','2','0'), ('40967','18','','10450','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45159','','','','','200','1','0','','','0','0','0','0','0','0','0','083ce77f9fcf4e4e8cd32ba1fcb97c37','0','2','0'), ('40968','18','','10450','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45159','','','','','200','1','0','','','0','0','0','0','0','0','0','0e6b356f0adf473bbaf9dd06c5841a4f','0','2','0'), ('40969','18','','10450','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45159','','','','','200','1','0','','','0','0','0','0','0','0','0','2c09bbd51b8e4831918ae3af18d3afff','0','2','0'), ('40970','18','','10450','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45159','','','','','200','1','0','','','0','0','0','0','0','0','0','9f02418a4efd4b8984b5a8077f66a90a','0','2','0'), ('40971','18','','10450','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45159','','','','','200','1','0','','','0','0','0','0','0','0','0','2dbfd918f1e84062a20551658c7c334a','0','2','0'), ('40972','18','','10450','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45159','','','','','200','1','0','','','0','0','0','0','0','0','0','18048b87397d48c5bd49bed17255cff4','0','2','0'), ('40973','18','','10450','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45159','','','','','200','1','0','','','0','0','0','0','0','0','0','844a0876ea2f435dbf9f0642659102b2','0','2','0'), ('40974','18','','10450','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'666','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45159','','','','','200','1','0','','','0','0','0','0','0','0','0','6665aecef4f844b68f71ef27fd5011dc','0','2','0'), ('40975','18','','10450','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'667','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45159','','','','','200','1','0','','','0','0','0','0','0','0','0','ff6673977cc44e7f9aa883baaf9186cc','0','2','0'), ('40987','18','','10451','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45165','','','','','200','1','0','','','0','0','0','0','0','0','0','4a6d05e315d3402989b53df2ce59ab8c','0','2','0'), ('40988','18','','10451','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45165','','','','','200','1','0','','','0','0','0','0','0','0','0','512bdfa8d1344722b8b1d08c12e1383e','0','2','0'), ('40989','18','','10451','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45165','','','','','200','1','0','','','0','0','0','0','0','0','0','e00497ab2965474e9c5d3ab7ea6589f9','0','2','0'), ('40990','18','','10451','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45165','','','','','200','1','0','','','0','0','0','0','0','0','0','8624f7dd1e2742b1a721d0c62d005afe','0','2','0'), ('40991','18','','10451','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45165','','','','','200','1','0','','','0','0','0','0','0','0','0','530649dcb53f4069b1ab1d0cca8e26a1','0','2','0'), ('40992','18','','10451','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45165','','','','','200','1','0','','','0','0','0','0','0','0','0','2dfd48d9417c4bf8b9ec6b272a245b9e','0','2','0'), ('40993','18','','10451','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45165','','','','','200','1','0','','','0','0','0','0','0','0','0','cef1258beb714f1c9d81e48de7c5deed','0','2','0'), ('40994','18','','10451','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45165','','','','','200','1','0','','','0','0','0','0','0','0','0','567ebfed5b574f7a93949373e03ecfa9','0','2','0'), ('40995','18','','10451','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'670','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45165','','','','','200','1','0','','','0','0','0','0','0','0','0','8086dade1d974203ad8e4dcfccc48014','0','2','0'), ('40996','18','','10451','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'671','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45165','','','','','200','1','0','','','0','0','0','0','0','0','0','24ae5851f6d84bc0aeeac124e8a3b35f','0','2','0'), ('41008','18','','10452','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45171','','','','','200','1','0','','','0','0','0','0','0','0','0','d93cca84ed0f4fbb9209d4d9880e9945','0','2','0'), ('41009','18','','10452','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45171','','','','','200','1','0','','','0','0','0','0','0','0','0','b8bbf89906084f53998d9785d6c0cd95','0','2','0'), ('41010','18','','10452','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45171','','','','','200','1','0','','','0','0','0','0','0','0','0','94ce6be8cec6430490a50a19fdabb154','0','2','0'), ('41011','18','','10452','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45171','','','','','200','1','0','','','0','0','0','0','0','0','0','d16cbebb823e4ed9a55f0c3a9be66f84','0','2','0'), ('41012','18','','10452','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45171','','','','','200','1','0','','','0','0','0','0','0','0','0','984ed6174e284d87a4fad9a73c6c9b7c','0','2','0'), ('41013','18','','10452','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45171','','','','','200','1','0','','','0','0','0','0','0','0','0','c5d4c6d3b6ce41a4911315e774ba8395','0','2','0'), ('41014','18','','10452','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45171','','','','','200','1','0','','','0','0','0','0','0','0','0','ab7fe09d3aa6427ebaae6b6c0de1d47f','0','2','0'), ('41015','18','','10452','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45171','','','','','200','1','0','','','0','0','0','0','0','0','0','573c2c167a554e6c9be9616e3a041732','0','2','0'), ('41016','18','','10452','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'674','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45171','','','','','200','1','0','','','0','0','0','0','0','0','0','872a74bdeab845d8829d7adfeab9ceb5','0','2','0'), ('41017','18','','10452','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'675','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45171','','','','','200','1','0','','','0','0','0','0','0','0','0','c5adf6b317794b3da1227d20410ecdd3','0','2','0'), ('41029','18','','10453','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45177','','','','','200','1','0','','','0','0','0','0','0','0','0','3833c90d67194b87b5c914a3a6164be2','0','2','0'), ('41030','18','','10453','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45177','','','','','200','1','0','','','0','0','0','0','0','0','0','ec2329aab27946d48b49cef91e28303f','0','2','0'), ('41031','18','','10453','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45177','','','','','200','1','0','','','0','0','0','0','0','0','0','bd4691f3e0774477b33708bfdb35a4c3','0','2','0'), ('41032','18','','10453','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45177','','','','','200','1','0','','','0','0','0','0','0','0','0','3f2f73c8d6824027802fead0f090fdbb','0','2','0'), ('41033','18','','10453','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45177','','','','','200','1','0','','','0','0','0','0','0','0','0','0164020946ce4198aed52d97fa39cf80','0','2','0'), ('41034','18','','10453','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45177','','','','','200','1','0','','','0','0','0','0','0','0','0','0482022b45794bc590837d3b4f8ed757','0','2','0'), ('41035','18','','10453','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45177','','','','','200','1','0','','','0','0','0','0','0','0','0','2be5cdf9d1674b8c871ae93c6315b29b','0','2','0'), ('41036','18','','10453','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45177','','','','','200','1','0','','','0','0','0','0','0','0','0','6aca8bc6ff7c45cea816f076aa70f9ba','0','2','0'), ('41037','18','','10453','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'678','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45177','','','','','200','1','0','','','0','0','0','0','0','0','0','f86b184949024d6d89b8425fe706259b','0','2','0'), ('41038','18','','10453','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'679','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45177','','','','','200','1','0','','','0','0','0','0','0','0','0','a0e4472622824516a9c176f99015d55f','0','2','0'), ('41050','18','','10454','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45183','','','','','200','1','0','','','0','0','0','0','0','0','0','b788130afb324d5c9f034d67b40c68f9','0','2','0'), ('41051','18','','10454','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45183','','','','','200','1','0','','','0','0','0','0','0','0','0','4657c8bb29004084aa03a4e612aa4167','0','2','0'), ('41052','18','','10454','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45183','','','','','200','1','0','','','0','0','0','0','0','0','0','8bf7bea2c4504ac688a8b340a015bfa9','0','2','0'), ('41053','18','','10454','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45183','','','','','200','1','0','','','0','0','0','0','0','0','0','96c5ae0259c8477699a793e2bfa4989c','0','2','0'), ('41054','18','','10454','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45183','','','','','200','1','0','','','0','0','0','0','0','0','0','7abf14afbffe4398ad0c61509cac0524','0','2','0'), ('41055','18','','10454','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45183','','','','','200','1','0','','','0','0','0','0','0','0','0','ed5d74e331f14e44b96ec39a25f9c975','0','2','0'), ('41056','18','','10454','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45183','','','','','200','1','0','','','0','0','0','0','0','0','0','cf89dbbd5501476d98a5aae1bab4f2d7','0','2','0'), ('41057','18','','10454','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45183','','','','','200','1','0','','','0','0','0','0','0','0','0','a0d069ef6c7449d79c1d1629ba507ddf','0','2','0'), ('41058','18','','10454','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'682','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45183','','','','','200','1','0','','','0','0','0','0','0','0','0','111f84c9c695410eb1a5296ff2309cb7','0','2','0'), ('41059','18','','10454','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'683','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45183','','','','','200','1','0','','','0','0','0','0','0','0','0','069253500b244569b6c20bcd9b436873','0','2','0'), ('41071','18','','10455','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45189','','','','','200','1','0','','','0','0','0','0','0','0','0','60bd54d856ff48cebdcc36cae159f05e','0','2','0'), ('41072','18','','10455','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45189','','','','','200','1','0','','','0','0','0','0','0','0','0','e974d85fe4124c52b24d9ff8b8d30e1f','0','2','0'), ('41073','18','','10455','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45189','','','','','200','1','0','','','0','0','0','0','0','0','0','8193ad4c190f465da3cca3f5bc0ca2d9','0','2','0'), ('41074','18','','10455','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45189','','','','','200','1','0','','','0','0','0','0','0','0','0','2957eff649ec42d98e9426242a7ea875','0','2','0'), ('41075','18','','10455','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45189','','','','','200','1','0','','','0','0','0','0','0','0','0','123f16658e504451add404e15acefc47','0','2','0'), ('41076','18','','10455','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45189','','','','','200','1','0','','','0','0','0','0','0','0','0','8306c1a20a964b90b145160a246ff8a6','0','2','0'), ('41077','18','','10455','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45189','','','','','200','1','0','','','0','0','0','0','0','0','0','ce76a9441b314208b097c132894cebd7','0','2','0'), ('41078','18','','10455','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45189','','','','','200','1','0','','','0','0','0','0','0','0','0','13b5a00bc3a747df9c21bf123b78362f','0','2','0'), ('41079','18','','10455','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'686','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45189','','','','','200','1','0','','','0','0','0','0','0','0','0','87f30fec9a0c43bd9f96712448c585b3','0','2','0'), ('41080','18','','10455','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'687','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45189','','','','','200','1','0','','','0','0','0','0','0','0','0','9c36325c00124757a18cb91d5860e7b6','0','2','0'), ('41092','18','','10456','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45195','','','','','200','1','0','','','0','0','0','0','0','0','0','f684ba95e12942a28e9c152670ea1a4c','0','2','0'), ('41093','18','','10456','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45195','','','','','200','1','0','','','0','0','0','0','0','0','0','00901669a3b34b90bbc7df4fb135b998','0','2','0'), ('41094','18','','10456','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45195','','','','','200','1','0','','','0','0','0','0','0','0','0','08d326dcf526411c948211b415f67992','0','2','0'), ('41095','18','','10456','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45195','','','','','200','1','0','','','0','0','0','0','0','0','0','f5ec52a22acb4156aae1d804bbae2668','0','2','0'), ('41096','18','','10456','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45195','','','','','200','1','0','','','0','0','0','0','0','0','0','af396e21711f419ba854d78ea6dc5244','0','2','0'), ('41097','18','','10456','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45195','','','','','200','1','0','','','0','0','0','0','0','0','0','1a961ca305f748a99e807efeacbef3be','0','2','0'), ('41098','18','','10456','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45195','','','','','200','1','0','','','0','0','0','0','0','0','0','9a9671c5bc574aff993c898453496781','0','2','0'), ('41099','18','','10456','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45195','','','','','200','1','0','','','0','0','0','0','0','0','0','d313a2ecd18d4230bd5b0e77c230be85','0','2','0'), ('41100','18','','10456','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'690','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45195','','','','','200','1','0','','','0','0','0','0','0','0','0','f24cb71bbf454cd492149aae3ce492b9','0','2','0'), ('41101','18','','10456','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'691','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45195','','','','','200','1','0','','','0','0','0','0','0','0','0','b41c85b4504a4a5e9ef546096ac45c11','0','2','0'), ('41113','18','','10457','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45201','','','','','200','1','0','','','0','0','0','0','0','0','0','943ddeb0de9f457cac2a0f4eccc7a3d3','0','2','0'), ('41114','18','','10457','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45201','','','','','200','1','0','','','0','0','0','0','0','0','0','f499f2a08c364fe6b7ba7c2edbeaa25a','0','2','0'), ('41115','18','','10457','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45201','','','','','200','1','0','','','0','0','0','0','0','0','0','1468bc68752741b2b58f1d26ec4957d5','0','2','0'), ('41116','18','','10457','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45201','','','','','200','1','0','','','0','0','0','0','0','0','0','4fdb243ad3714135bb1a04ca12ec42ef','0','2','0'), ('41117','18','','10457','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45201','','','','','200','1','0','','','0','0','0','0','0','0','0','d5e1c2875beb42d9a1b5b876ee4e1d7b','0','2','0'), ('41118','18','','10457','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45201','','','','','200','1','0','','','0','0','0','0','0','0','0','23e1145639f54a509fc4b629af9bfe9a','0','2','0'), ('41119','18','','10457','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45201','','','','','200','1','0','','','0','0','0','0','0','0','0','c41739be871e4044b8218ff1cc289ea4','0','2','0'), ('41120','18','','10457','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45201','','','','','200','1','0','','','0','0','0','0','0','0','0','f9db52be572643c3ac04ef113aa84262','0','2','0'), ('41121','18','','10457','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'694','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45201','','','','','200','1','0','','','0','0','0','0','0','0','0','0f8614d6d02840e1868ffd4540048daf','0','2','0'), ('41122','18','','10457','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'695','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45201','','','','','200','1','0','','','0','0','0','0','0','0','0','934e91a1cbee404fb99411147351230b','0','2','0'), ('41134','18','','10458','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45207','','','','','200','1','0','','','0','0','0','0','0','0','0','f8ba0c9d18ef405bbf1619f98028ee80','0','2','0'), ('41135','18','','10458','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45207','','','','','200','1','0','','','0','0','0','0','0','0','0','149ca6424d7241db8153ddb52ef1426c','0','2','0'), ('41136','18','','10458','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45207','','','','','200','1','0','','','0','0','0','0','0','0','0','fd1cebcc629b4b559603b9520a97f30a','0','2','0'), ('41137','18','','10458','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45207','','','','','200','1','0','','','0','0','0','0','0','0','0','8d07a2c675194a8c84c854a5717f2ab0','0','2','0'), ('41138','18','','10458','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45207','','','','','200','1','0','','','0','0','0','0','0','0','0','209f0a2d63174582bc660dc4d9c4410d','0','2','0'), ('41139','18','','10458','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45207','','','','','200','1','0','','','0','0','0','0','0','0','0','d1cd8ebe0db54c26af2f4d1695b74144','0','2','0'), ('41140','18','','10458','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45207','','','','','200','1','0','','','0','0','0','0','0','0','0','c56972bb674c448496cdd99039a75480','0','2','0'), ('41141','18','','10458','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45207','','','','','200','1','0','','','0','0','0','0','0','0','0','a1526abe61a3440cbdda84ae6bbf0dc5','0','2','0'), ('41142','18','','10458','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'698','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45207','','','','','200','1','0','','','0','0','0','0','0','0','0','335473458efe48e1b5a93e2f365d489b','0','2','0'), ('41143','18','','10458','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'699','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45207','','','','','200','1','0','','','0','0','0','0','0','0','0','192cfe0188a045f8ac9e903bc605f80f','0','2','0'), ('41155','18','','10459','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45213','','','','','200','1','0','','','0','0','0','0','0','0','0','69a5667ce42d4c33a358f85ef695fae4','0','2','0'), ('41156','18','','10459','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45213','','','','','200','1','0','','','0','0','0','0','0','0','0','c830e4e275b64bbcadcdcfdc299ea555','0','2','0'), ('41157','18','','10459','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45213','','','','','200','1','0','','','0','0','0','0','0','0','0','6ceda965a17f40f48cab26b697b66f13','0','2','0'), ('41158','18','','10459','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45213','','','','','200','1','0','','','0','0','0','0','0','0','0','24b6d9edd4f14d75954581c5f9396c4f','0','2','0'), ('41159','18','','10459','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45213','','','','','200','1','0','','','0','0','0','0','0','0','0','36a4bc21b0ed46bcb025388dad56ac51','0','2','0'), ('41160','18','','10459','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45213','','','','','200','1','0','','','0','0','0','0','0','0','0','655955f36c4849a796bb01f7a9a305f1','0','2','0'), ('41161','18','','10459','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45213','','','','','200','1','0','','','0','0','0','0','0','0','0','d85d1c9656fc4f54ad77d127b0d544d3','0','2','0'), ('41162','18','','10459','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45213','','','','','200','1','0','','','0','0','0','0','0','0','0','85e2e5686cd24b7a9d32a2718609493b','0','2','0'), ('41163','18','','10459','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'702','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45213','','','','','200','1','0','','','0','0','0','0','0','0','0','d0c19009d4c748a68122136f942b33b2','0','2','0'), ('41164','18','','10459','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'703','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45213','','','','','200','1','0','','','0','0','0','0','0','0','0','31d0a94b3f284ea699ce740276c5174c','0','2','0'), ('41176','18','','10460','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45219','','','','','200','1','0','','','0','0','0','0','0','0','0','975657e824c94bf3a8360291daa1ee16','0','2','0'), ('41177','18','','10460','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45219','','','','','200','1','0','','','0','0','0','0','0','0','0','44c508b767ae44ea8257326f7d6077da','0','2','0'), ('41178','18','','10460','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45219','','','','','200','1','0','','','0','0','0','0','0','0','0','410f18fab2a34f30b9bde48c53b0758c','0','2','0'), ('41179','18','','10460','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45219','','','','','200','1','0','','','0','0','0','0','0','0','0','d813c68f3b974dae80d2bb8060b4916a','0','2','0'), ('41180','18','','10460','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45219','','','','','200','1','0','','','0','0','0','0','0','0','0','f0b88262b4ea40cc86b98dab09a0c8e5','0','2','0'), ('41181','18','','10460','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45219','','','','','200','1','0','','','0','0','0','0','0','0','0','4bf81a1abe324c48b907e9f3f67152f2','0','2','0'), ('41182','18','','10460','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45219','','','','','200','1','0','','','0','0','0','0','0','0','0','cd35bca00aaf4e4bbb577c4945dfb4cf','0','2','0'), ('41183','18','','10460','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45219','','','','','200','1','0','','','0','0','0','0','0','0','0','b5642292e0064832b40a09cbec0027c5','0','2','0'), ('41184','18','','10460','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'706','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45219','','','','','200','1','0','','','0','0','0','0','0','0','0','274f221a50894d67ae7c8fa8f969811a','0','2','0'), ('41185','18','','10460','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'707','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45219','','','','','200','1','0','','','0','0','0','0','0','0','0','50a691ac0639468ca1fadf2223da3319','0','2','0'), ('41197','18','','10461','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45225','','','','','200','1','0','','','0','0','0','0','0','0','0','845b1efc219e45f0a5b5cc9da4cd4473','0','2','0'), ('41198','18','','10461','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45225','','','','','200','1','0','','','0','0','0','0','0','0','0','37f61cae4f334011a5bb3e71a0d7e9cc','0','2','0'), ('41199','18','','10461','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45225','','','','','200','1','0','','','0','0','0','0','0','0','0','a6dea41689604e7f9b3c0415b255da53','0','2','0'), ('41200','18','','10461','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45225','','','','','200','1','0','','','0','0','0','0','0','0','0','f7da909ba9a24f4fbfead2636b0a15c5','0','2','0'), ('41201','18','','10461','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45225','','','','','200','1','0','','','0','0','0','0','0','0','0','9b5bf23911b747e39229d905dd6e6fe8','0','2','0'), ('41202','18','','10461','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45225','','','','','200','1','0','','','0','0','0','0','0','0','0','d2257baa2950456daf6c75cfaf7529c2','0','2','0'), ('41203','18','','10461','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45225','','','','','200','1','0','','','0','0','0','0','0','0','0','81e957d3ac6f40d78d17541ae25664e0','0','2','0'), ('41204','18','','10461','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45225','','','','','200','1','0','','','0','0','0','0','0','0','0','bbb3fc3e3b7f401db406767070b02ee6','0','2','0'), ('41205','18','','10461','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'710','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45225','','','','','200','1','0','','','0','0','0','0','0','0','0','6b4baafc654841238c65f6d08742a441','0','2','0'), ('41206','18','','10461','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'711','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45225','','','','','200','1','0','','','0','0','0','0','0','0','0','9d878d01c9b94756b778524b1792bfb6','0','2','0'), ('41218','18','','10462','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45231','','','','','200','1','0','','','0','0','0','0','0','0','0','cc608b1f528d4098b8393eba8dd997d7','0','2','0'), ('41219','18','','10462','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45231','','','','','200','1','0','','','0','0','0','0','0','0','0','eb8ba9ef1cd842abafac43e6878edebf','0','2','0'), ('41220','18','','10462','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45231','','','','','200','1','0','','','0','0','0','0','0','0','0','2af6f068b36a4a4dbaef7a545ea9ef87','0','2','0'), ('41221','18','','10462','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45231','','','','','200','1','0','','','0','0','0','0','0','0','0','82e97f30fe794772873c93e45fa93e3c','0','2','0'), ('41222','18','','10462','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45231','','','','','200','1','0','','','0','0','0','0','0','0','0','49e742f27d8c43eba3bdaf661a2af64a','0','2','0'), ('41223','18','','10462','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45231','','','','','200','1','0','','','0','0','0','0','0','0','0','2aeed3cfe655422289358c5baede343a','0','2','0'), ('41224','18','','10462','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45231','','','','','200','1','0','','','0','0','0','0','0','0','0','9447ff7e4baa430f8447ebaf910e5714','0','2','0'), ('41225','18','','10462','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45231','','','','','200','1','0','','','0','0','0','0','0','0','0','f85bd6cedc754e45ba653247a94dae89','0','2','0'), ('41226','18','','10462','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'714','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45231','','','','','200','1','0','','','0','0','0','0','0','0','0','71eaf25c58ed46b8bbe72b7b6e41510d','0','2','0'), ('41227','18','','10462','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'715','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45231','','','','','200','1','0','','','0','0','0','0','0','0','0','0f12f613a5a648ef8309af58cb69805e','0','2','0'), ('41239','18','','10463','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45237','','','','','200','1','0','','','0','0','0','0','0','0','0','a667d9273ccf46a5a9fafb58c10adf6c','0','2','0'), ('41240','18','','10463','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45237','','','','','200','1','0','','','0','0','0','0','0','0','0','9811386d3e94401c95520c93fde75b46','0','2','0'), ('41241','18','','10463','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45237','','','','','200','1','0','','','0','0','0','0','0','0','0','8845d896a14f4db68cee5c8d4b9e612a','0','2','0'), ('41242','18','','10463','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45237','','','','','200','1','0','','','0','0','0','0','0','0','0','421c2c5345114a2686e880fb995c159d','0','2','0'), ('41243','18','','10463','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45237','','','','','200','1','0','','','0','0','0','0','0','0','0','7b0e671970444dca8e1386ec7f0ca0eb','0','2','0'), ('41244','18','','10463','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45237','','','','','200','1','0','','','0','0','0','0','0','0','0','65118ff16f3649c1bab06b5620b278ea','0','2','0'), ('41245','18','','10463','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45237','','','','','200','1','0','','','0','0','0','0','0','0','0','92a754f7ae904787ae8f2fcd4bd0112b','0','2','0'), ('41246','18','','10463','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45237','','','','','200','1','0','','','0','0','0','0','0','0','0','3426adc2f7224e9ea037be081146df32','0','2','0'), ('41247','18','','10463','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'718','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45237','','','','','200','1','0','','','0','0','0','0','0','0','0','37a01e7bb0e24177961220d810df16a2','0','2','0'), ('41248','18','','10463','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'719','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45237','','','','','200','1','0','','','0','0','0','0','0','0','0','90e74ae087de40efb7fe19e06b70a5d0','0','2','0'), ('41260','18','','10464','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45243','','','','','200','1','0','','','0','0','0','0','0','0','0','c2479dd8eab044e3b5f141a0f993a24c','0','2','0'), ('41261','18','','10464','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45243','','','','','200','1','0','','','0','0','0','0','0','0','0','5cefc809031745debdad7316afafb304','0','2','0'), ('41262','18','','10464','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45243','','','','','200','1','0','','','0','0','0','0','0','0','0','3b0097d2131f4081a6f80d5d91c5db71','0','2','0'), ('41263','18','','10464','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45243','','','','','200','1','0','','','0','0','0','0','0','0','0','ec9f44208eae4baf84b8efeac18d4218','0','2','0'), ('41264','18','','10464','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45243','','','','','200','1','0','','','0','0','0','0','0','0','0','b1c8a69233b94c898b8f5af80a29b182','0','2','0'), ('41265','18','','10464','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45243','','','','','200','1','0','','','0','0','0','0','0','0','0','da9968a76a9c43d3bbf6ecbe786797e2','0','2','0'), ('41266','18','','10464','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45243','','','','','200','1','0','','','0','0','0','0','0','0','0','e356fde53c964f17a4b0794102bf76e6','0','2','0'), ('41267','18','','10464','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45243','','','','','200','1','0','','','0','0','0','0','0','0','0','d32f4d57b4f34b1696480ba583812e69','0','2','0'), ('41268','18','','10464','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'722','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45243','','','','','200','1','0','','','0','0','0','0','0','0','0','68e8bd9d8a56444a95cb7215518e4c2c','0','2','0'), ('41269','18','','10464','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'723','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45243','','','','','200','1','0','','','0','0','0','0','0','0','0','835bd6ca78b143af833d267e408f9862','0','2','0'), ('41281','18','','10465','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45249','','','','','200','1','0','','','0','0','0','0','0','0','0','0f943d18ef9148798fe783d3aadb9047','0','2','0'), ('41282','18','','10465','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45249','','','','','200','1','0','','','0','0','0','0','0','0','0','6d300fabf1494f4a8f454eba95dfecf9','0','2','0'), ('41283','18','','10465','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45249','','','','','200','1','0','','','0','0','0','0','0','0','0','d14d2c8908d64ce0b3adb45fc8c4a210','0','2','0'), ('41284','18','','10465','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45249','','','','','200','1','0','','','0','0','0','0','0','0','0','0621b5bff79843ea9579eac665a352bc','0','2','0'), ('41285','18','','10465','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45249','','','','','200','1','0','','','0','0','0','0','0','0','0','d4d79ba39825445b8cb59e76bb67250e','0','2','0'), ('41286','18','','10465','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45249','','','','','200','1','0','','','0','0','0','0','0','0','0','0558424847e9412889bf0d009e0002c7','0','2','0'), ('41287','18','','10465','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45249','','','','','200','1','0','','','0','0','0','0','0','0','0','56ba20c1f5ba4ea58dca9dafd83c8352','0','2','0'), ('41288','18','','10465','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45249','','','','','200','1','0','','','0','0','0','0','0','0','0','906c4b98ecff4caf874d44d362a62a07','0','2','0'), ('41289','18','','10465','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'726','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45249','','','','','200','1','0','','','0','0','0','0','0','0','0','e2d06c66e8574b5ca0083ecdb8e5b050','0','2','0'), ('41290','18','','10465','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'727','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45249','','','','','200','1','0','','','0','0','0','0','0','0','0','ff460a89977d4935a59a193d08d31f4a','0','2','0'), ('41302','18','','10466','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45255','','','','','200','1','0','','','0','0','0','0','0','0','0','162858d4c89c44008f4c8c4226cf598d','0','2','0'), ('41303','18','','10466','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45255','','','','','200','1','0','','','0','0','0','0','0','0','0','b0142c0f46e04546be8383863c1255ba','0','2','0'), ('41304','18','','10466','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45255','','','','','200','1','0','','','0','0','0','0','0','0','0','01791b11bba547abb88d2d607c88903d','0','2','0'), ('41305','18','','10466','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45255','','','','','200','1','0','','','0','0','0','0','0','0','0','8e9f42386005498ba508ba72570a6b26','0','2','0'), ('41306','18','','10466','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45255','','','','','200','1','0','','','0','0','0','0','0','0','0','e3e1bd9a9c3c43fcba1e8177ad653682','0','2','0'), ('41307','18','','10466','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45255','','','','','200','1','0','','','0','0','0','0','0','0','0','653e8d4bfcb147989e5a5a5d49b3bca8','0','2','0'), ('41308','18','','10466','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45255','','','','','200','1','0','','','0','0','0','0','0','0','0','6d516f24cbc24bd48656a3a7713c2c0a','0','2','0'), ('41309','18','','10466','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45255','','','','','200','1','0','','','0','0','0','0','0','0','0','ff25d8ade4ef44b6888a26aac9d54344','0','2','0'), ('41310','18','','10466','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'730','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45255','','','','','200','1','0','','','0','0','0','0','0','0','0','15679b8403054515af9c4ad21081cf2e','0','2','0'), ('41311','18','','10466','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'731','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45255','','','','','200','1','0','','','0','0','0','0','0','0','0','08ff8dd9165b43519b633c4d276fc2e8','0','2','0'), ('41323','18','','10467','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45261','','','','','200','1','0','','','0','0','0','0','0','0','0','341d0f810f7b47e4ac81a7bf25716179','0','2','0'), ('41324','18','','10467','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45261','','','','','200','1','0','','','0','0','0','0','0','0','0','f00173a7cd3546a68064f348b99dbb78','0','2','0'), ('41325','18','','10467','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45261','','','','','200','1','0','','','0','0','0','0','0','0','0','d758573510064110bdd2b4319476d909','0','2','0'), ('41326','18','','10467','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45261','','','','','200','1','0','','','0','0','0','0','0','0','0','405b8cbc415a4d63a9ce1d925d89c233','0','2','0'), ('41327','18','','10467','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45261','','','','','200','1','0','','','0','0','0','0','0','0','0','0afa40c2bcd24f09b4ab9943cf383198','0','2','0'), ('41328','18','','10467','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45261','','','','','200','1','0','','','0','0','0','0','0','0','0','dac4dcac3a8244448aa9c41a369dac2f','0','2','0'), ('41329','18','','10467','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45261','','','','','200','1','0','','','0','0','0','0','0','0','0','7063424dec694e81900014d9e0281d13','0','2','0'), ('41330','18','','10467','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45261','','','','','200','1','0','','','0','0','0','0','0','0','0','7b50701968654f54815b9952a224ae5b','0','2','0'), ('41331','18','','10467','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'734','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45261','','','','','200','1','0','','','0','0','0','0','0','0','0','f7ea1a7b96cd4095b1bb71b023a55a5d','0','2','0'), ('41332','18','','10467','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'735','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45261','','','','','200','1','0','','','0','0','0','0','0','0','0','c45e431a237d44ad9942c388d8399016','0','2','0'), ('41344','18','','10468','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45267','','','','','200','1','0','','','0','0','0','0','0','0','0','b761c3efd08042499f1a87cd73ee0cd1','0','2','0'), ('41345','18','','10468','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45267','','','','','200','1','0','','','0','0','0','0','0','0','0','cc86ba34ec6c42f486c4146cc37ea63d','0','2','0'), ('41346','18','','10468','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45267','','','','','200','1','0','','','0','0','0','0','0','0','0','81c3d7ef1c7f414e8f19d8f4f8937e1b','0','2','0'), ('41347','18','','10468','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45267','','','','','200','1','0','','','0','0','0','0','0','0','0','5f99d418a9d94f2d97656fa59604404c','0','2','0'), ('41348','18','','10468','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45267','','','','','200','1','0','','','0','0','0','0','0','0','0','6a99973eda6a4005b28ff986e800b123','0','2','0'), ('41349','18','','10468','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45267','','','','','200','1','0','','','0','0','0','0','0','0','0','e7f43353462e418188c3c00379138466','0','2','0'), ('41350','18','','10468','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45267','','','','','200','1','0','','','0','0','0','0','0','0','0','fa23f5e5fbf847c2b1d6b5eb38e05a59','0','2','0'), ('41351','18','','10468','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45267','','','','','200','1','0','','','0','0','0','0','0','0','0','5cfd077fd3484986a6888b6e2be6e5fa','0','2','0'), ('41352','18','','10468','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'738','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45267','','','','','200','1','0','','','0','0','0','0','0','0','0','fef3726d05b346db9adb9f0b8e1f65e2','0','2','0'), ('41353','18','','10468','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'739','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45267','','','','','200','1','0','','','0','0','0','0','0','0','0','12cba2c25cab458f8792bcb7226cf714','0','2','0'), ('41365','18','','10469','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45273','','','','','200','1','0','','','0','0','0','0','0','0','0','fde8e6bf22cd489c8f0b0fb2ae359e98','0','2','0'), ('41366','18','','10469','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45273','','','','','200','1','0','','','0','0','0','0','0','0','0','5e8a27d5081342b5b925d45db77a7bc1','0','2','0'), ('41367','18','','10469','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45273','','','','','200','1','0','','','0','0','0','0','0','0','0','70a39d1297ea4264be096468bbd41d64','0','2','0'), ('41368','18','','10469','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45273','','','','','200','1','0','','','0','0','0','0','0','0','0','b2e76644e59e40f79ef1c93922d5e8d1','0','2','0'), ('41369','18','','10469','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45273','','','','','200','1','0','','','0','0','0','0','0','0','0','35321b8973694e488f903eb9e4168939','0','2','0'), ('41370','18','','10469','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45273','','','','','200','1','0','','','0','0','0','0','0','0','0','3f7ded53a81d4dcc81250c8bc9a1da97','0','2','0'), ('41371','18','','10469','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45273','','','','','200','1','0','','','0','0','0','0','0','0','0','17dc051e60bc41839e255b38353ef49f','0','2','0'), ('41372','18','','10469','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45273','','','','','200','1','0','','','0','0','0','0','0','0','0','9cbf512a2f0e4bfa86f2df14393c10de','0','2','0'), ('41373','18','','10469','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'742','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45273','','','','','200','1','0','','','0','0','0','0','0','0','0','291a3c4e906040d782ccdd15058a8fa1','0','2','0'), ('41374','18','','10469','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'743','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45273','','','','','200','1','0','','','0','0','0','0','0','0','0','f422f3fce9fb4413b3f1e6d2885959f6','0','2','0'), ('41386','18','','10470','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45279','','','','','200','1','0','','','0','0','0','0','0','0','0','fd942651e7e0407682c5d092280413fb','0','2','0'), ('41387','18','','10470','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45279','','','','','200','1','0','','','0','0','0','0','0','0','0','7e8d09a331534bb8b18aba0d846b4b92','0','2','0'), ('41388','18','','10470','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45279','','','','','200','1','0','','','0','0','0','0','0','0','0','f18e8d58775a476a9e267ea510046b3b','0','2','0'), ('41389','18','','10470','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45279','','','','','200','1','0','','','0','0','0','0','0','0','0','7c9a00d1ccc64ac2bbb299a2ef3f9f7b','0','2','0'), ('41390','18','','10470','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45279','','','','','200','1','0','','','0','0','0','0','0','0','0','e7e15324c7884bafa830004c30c398ad','0','2','0'), ('41391','18','','10470','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45279','','','','','200','1','0','','','0','0','0','0','0','0','0','7f752c82bf234f30b70a7ce19879963f','0','2','0'), ('41392','18','','10470','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45279','','','','','200','1','0','','','0','0','0','0','0','0','0','d49de2ae77484870876f463f208ff1bb','0','2','0'), ('41393','18','','10470','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45279','','','','','200','1','0','','','0','0','0','0','0','0','0','bb086f35ade448f5938f169ad6eaba94','0','2','0'), ('41394','18','','10470','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'746','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45279','','','','','200','1','0','','','0','0','0','0','0','0','0','7a270cb32f7541678c6a6b3e32f6fba9','0','2','0'), ('41395','18','','10470','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'747','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45279','','','','','200','1','0','','','0','0','0','0','0','0','0','dc8c468874464b2cad3435bc59b7f3e2','0','2','0'), ('41407','18','','10471','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45285','','','','','200','1','0','','','0','0','0','0','0','0','0','b14afecca0b944cf9c8e6330ae80c530','0','2','0'), ('41408','18','','10471','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45285','','','','','200','1','0','','','0','0','0','0','0','0','0','55617d4e8b80468d89a4e187419a7952','0','2','0'), ('41409','18','','10471','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45285','','','','','200','1','0','','','0','0','0','0','0','0','0','47237970af2d45208906b87fbc1f9339','0','2','0'), ('41410','18','','10471','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45285','','','','','200','1','0','','','0','0','0','0','0','0','0','50caf27cd8ff4a349a888741a301e776','0','2','0'), ('41411','18','','10471','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45285','','','','','200','1','0','','','0','0','0','0','0','0','0','22c2413e4100432ea8dc0e8816b31ba4','0','2','0'), ('41412','18','','10471','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45285','','','','','200','1','0','','','0','0','0','0','0','0','0','6859685be5784fe3a3adc209d4b69b6e','0','2','0'), ('41413','18','','10471','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45285','','','','','200','1','0','','','0','0','0','0','0','0','0','e3836dded4c84b218af72d2358e9c228','0','2','0'), ('41414','18','','10471','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45285','','','','','200','1','0','','','0','0','0','0','0','0','0','25815a4b39e147e6be4cc7db9f79090d','0','2','0'), ('41415','18','','10471','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'750','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45285','','','','','200','1','0','','','0','0','0','0','0','0','0','5193b82dafc14ef6905af63cc99ee7cf','0','2','0'), ('41416','18','','10471','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'751','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45285','','','','','200','1','0','','','0','0','0','0','0','0','0','17651e8aa6134c77868ee1c74a626209','0','2','0'), ('41428','18','','10472','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45291','','','','','200','1','0','','','0','0','0','0','0','0','0','a7da0c4a802f426293c53be9de92c2bd','0','2','0'), ('41429','18','','10472','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45291','','','','','200','1','0','','','0','0','0','0','0','0','0','e95e0022cb4842158e13bbbe639c897d','0','2','0'), ('41430','18','','10472','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45291','','','','','200','1','0','','','0','0','0','0','0','0','0','70d09c8adda84e20a2f88543d061bae1','0','2','0'), ('41431','18','','10472','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45291','','','','','200','1','0','','','0','0','0','0','0','0','0','4dfaf66c7f4e4120a74f0c7732dc4607','0','2','0'), ('41432','18','','10472','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45291','','','','','200','1','0','','','0','0','0','0','0','0','0','9de9d790a7b7413d9d5c846105f08e9c','0','2','0'), ('41433','18','','10472','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45291','','','','','200','1','0','','','0','0','0','0','0','0','0','c99856d2f78e4de893717c70b4a5d71d','0','2','0'), ('41434','18','','10472','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45291','','','','','200','1','0','','','0','0','0','0','0','0','0','658a5d7e0c9d49af99c8c1851d79660b','0','2','0'), ('41435','18','','10472','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45291','','','','','200','1','0','','','0','0','0','0','0','0','0','30a84a0c28f84167aa4d59d456571071','0','2','0'), ('41436','18','','10472','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'754','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45291','','','','','200','1','0','','','0','0','0','0','0','0','0','affe22bbc74b43ff8dc58e83d6a79f9c','0','2','0'), ('41437','18','','10472','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'755','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45291','','','','','200','1','0','','','0','0','0','0','0','0','0','ebcc896ec938477b830def5aceb7f211','0','2','0'), ('41449','18','','10473','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45297','','','','','200','1','0','','','0','0','0','0','0','0','0','83044efa2ab24bec9b9cba167429c1fe','0','2','0'), ('41450','18','','10473','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45297','','','','','200','1','0','','','0','0','0','0','0','0','0','7f6edc44bbc94228befed84190c70fdb','0','2','0'), ('41451','18','','10473','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45297','','','','','200','1','0','','','0','0','0','0','0','0','0','4080212fd8264ec99caa6559f69d4a81','0','2','0'), ('41452','18','','10473','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45297','','','','','200','1','0','','','0','0','0','0','0','0','0','68b31566f60a4336a03893e01f72f32c','0','2','0'), ('41453','18','','10473','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45297','','','','','200','1','0','','','0','0','0','0','0','0','0','17cadd22893c4266abe046e89925c570','0','2','0'), ('41454','18','','10473','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45297','','','','','200','1','0','','','0','0','0','0','0','0','0','9ac86d8e79a74ec6ba6223e379a409cc','0','2','0'), ('41455','18','','10473','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45297','','','','','200','1','0','','','0','0','0','0','0','0','0','4cae0453843645d4bc52f613f1622d28','0','2','0'), ('41456','18','','10473','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45297','','','','','200','1','0','','','0','0','0','0','0','0','0','e84f616abb4e4e9ca5a278bf6f446508','0','2','0'), ('41457','18','','10473','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'758','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45297','','','','','200','1','0','','','0','0','0','0','0','0','0','f3537d0d3dfd4cb1aff00930115f927d','0','2','0'), ('41458','18','','10473','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'759','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45297','','','','','200','1','0','','','0','0','0','0','0','0','0','a0c424489d3640d68027bd4e0f1a6a5f','0','2','0'), ('41470','18','','10474','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45303','','','','','200','1','0','','','0','0','0','0','0','0','0','402036489b6644478c97aee607bbbad2','0','2','0'), ('41471','18','','10474','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45303','','','','','200','1','0','','','0','0','0','0','0','0','0','f76b6bc13f1b4473b763ee08ae88f124','0','2','0'), ('41472','18','','10474','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45303','','','','','200','1','0','','','0','0','0','0','0','0','0','c3765b5414de494bbbe33e866896540b','0','2','0'), ('41473','18','','10474','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45303','','','','','200','1','0','','','0','0','0','0','0','0','0','2beecb8e00e847ca8c9362c8a46d1d45','0','2','0'), ('41474','18','','10474','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45303','','','','','200','1','0','','','0','0','0','0','0','0','0','b76bd53b81f14ca2805bc5e602c31a3d','0','2','0'), ('41475','18','','10474','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45303','','','','','200','1','0','','','0','0','0','0','0','0','0','adcc570a20814513b751b714f78e9671','0','2','0'), ('41476','18','','10474','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45303','','','','','200','1','0','','','0','0','0','0','0','0','0','3eaffea1148549a8bea62b833b973af7','0','2','0'), ('41477','18','','10474','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45303','','','','','200','1','0','','','0','0','0','0','0','0','0','a794f88cabf1479e99322684a617814a','0','2','0'), ('41478','18','','10474','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'762','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45303','','','','','200','1','0','','','0','0','0','0','0','0','0','e85098b6a7f94975afb3c5089eff9018','0','2','0'), ('41479','18','','10474','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'763','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45303','','','','','200','1','0','','','0','0','0','0','0','0','0','d82342898fec45c69092e1cc925292cf','0','2','0'), ('41491','18','','10475','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45309','','','','','200','1','0','','','0','0','0','0','0','0','0','a7df21169dd443bcae6bb4c346303978','0','2','0'), ('41492','18','','10475','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45309','','','','','200','1','0','','','0','0','0','0','0','0','0','3cc53291a325471892d06fa2b36dd272','0','2','0'), ('41493','18','','10475','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45309','','','','','200','1','0','','','0','0','0','0','0','0','0','3bd86398a02c4356ad9067fcd1c1c730','0','2','0'), ('41494','18','','10475','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45309','','','','','200','1','0','','','0','0','0','0','0','0','0','a4f73343bffa45baa82d1b6d8dfaf831','0','2','0'), ('41495','18','','10475','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45309','','','','','200','1','0','','','0','0','0','0','0','0','0','e44d0375cae641418ccda6e57a932035','0','2','0'), ('41496','18','','10475','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45309','','','','','200','1','0','','','0','0','0','0','0','0','0','7503b03c728f4f1e804e7af9eda7b040','0','2','0'), ('41497','18','','10475','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45309','','','','','200','1','0','','','0','0','0','0','0','0','0','171c12b008354e6aab1ec60320a8425a','0','2','0'), ('41498','18','','10475','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45309','','','','','200','1','0','','','0','0','0','0','0','0','0','d2dc748e268d42ffbe47775201a26e8c','0','2','0'), ('41499','18','','10475','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'766','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45309','','','','','200','1','0','','','0','0','0','0','0','0','0','5e4c53dcbfd34740af71944828ca7450','0','2','0'), ('41500','18','','10475','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'767','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45309','','','','','200','1','0','','','0','0','0','0','0','0','0','ec088a3b0bac441294cb5cefffb87818','0','2','0'), ('41512','18','','10476','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45315','','','','','200','1','0','','','0','0','0','0','0','0','0','71ccfba5cc2d432e9414023d0f75b8db','0','2','0'), ('41513','18','','10476','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45315','','','','','200','1','0','','','0','0','0','0','0','0','0','c5601b788d6f4671a40185e744fb6bb1','0','2','0'), ('41514','18','','10476','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45315','','','','','200','1','0','','','0','0','0','0','0','0','0','5b408d3188a04d30a5897746bd27feb8','0','2','0'), ('41515','18','','10476','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45315','','','','','200','1','0','','','0','0','0','0','0','0','0','28c8d1007d794e2c90f3303ed05bfba9','0','2','0'), ('41516','18','','10476','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45315','','','','','200','1','0','','','0','0','0','0','0','0','0','2529b37765ea41d8a780f20e37e49add','0','2','0'), ('41517','18','','10476','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45315','','','','','200','1','0','','','0','0','0','0','0','0','0','95533937102b46f4bc862f326b555913','0','2','0'), ('41518','18','','10476','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45315','','','','','200','1','0','','','0','0','0','0','0','0','0','7cf5ce8e6ade4a0dbbe5491cbc50797a','0','2','0'), ('41519','18','','10476','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45315','','','','','200','1','0','','','0','0','0','0','0','0','0','484b2b4b18724db8a2e718a24546686a','0','2','0'), ('41520','18','','10476','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'770','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45315','','','','','200','1','0','','','0','0','0','0','0','0','0','ba7998aa6ff34a4d828aa37aba12f55a','0','2','0'), ('41521','18','','10476','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'771','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45315','','','','','200','1','0','','','0','0','0','0','0','0','0','5f0fc074d5144155a8bc67208bdb24ea','0','2','0'), ('41533','18','','10477','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45321','','','','','200','1','0','','','0','0','0','0','0','0','0','71bd3db236e245299334bf7b03e3b7da','0','2','0'), ('41534','18','','10477','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45321','','','','','200','1','0','','','0','0','0','0','0','0','0','4ef7919acd4a45ed93214a6a940c8f39','0','2','0'), ('41535','18','','10477','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45321','','','','','200','1','0','','','0','0','0','0','0','0','0','f28824308896450f8e9b2842dd103db6','0','2','0'), ('41536','18','','10477','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45321','','','','','200','1','0','','','0','0','0','0','0','0','0','ae10194c5e7f465b902f0cb20f7b8776','0','2','0'), ('41537','18','','10477','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45321','','','','','200','1','0','','','0','0','0','0','0','0','0','b07c109994db4a5eaa065589c54edcc1','0','2','0'), ('41538','18','','10477','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45321','','','','','200','1','0','','','0','0','0','0','0','0','0','90b82a51bd104a79804213b1b566fb5a','0','2','0'), ('41539','18','','10477','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45321','','','','','200','1','0','','','0','0','0','0','0','0','0','65dfa7a917a24279823f3c5bac76c1d9','0','2','0'), ('41540','18','','10477','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45321','','','','','200','1','0','','','0','0','0','0','0','0','0','b19861fbf90c474c99f644c6880cf813','0','2','0'), ('41541','18','','10477','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'774','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45321','','','','','200','1','0','','','0','0','0','0','0','0','0','cf3c4275cfe1466ab07d672031bac4af','0','2','0'), ('41542','18','','10477','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'775','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45321','','','','','200','1','0','','','0','0','0','0','0','0','0','91c1bbf2dd264ee3a0f741d4398cf02a','0','2','0'), ('41554','18','','10478','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45327','','','','','200','1','0','','','0','0','0','0','0','0','0','127a96854d2b41e98054deefcb4ae611','0','2','0'), ('41555','18','','10478','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45327','','','','','200','1','0','','','0','0','0','0','0','0','0','9f1f78e4cd2649fcbfb579019b899cac','0','2','0'), ('41556','18','','10478','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45327','','','','','200','1','0','','','0','0','0','0','0','0','0','e460dc068df843b186d0deb849b6dcc3','0','2','0'), ('41557','18','','10478','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45327','','','','','200','1','0','','','0','0','0','0','0','0','0','c1a647eb08494764b278d2d37c2ff95b','0','2','0'), ('41558','18','','10478','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45327','','','','','200','1','0','','','0','0','0','0','0','0','0','ec3b763a78cd4fe2bd32270d8d6dd13f','0','2','0'), ('41559','18','','10478','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45327','','','','','200','1','0','','','0','0','0','0','0','0','0','c51489ce84b74371bea2a5c366a2dc5d','0','2','0'), ('41560','18','','10478','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45327','','','','','200','1','0','','','0','0','0','0','0','0','0','397ab9b47b9c47b19238e468f5258c1d','0','2','0'), ('41561','18','','10478','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45327','','','','','200','1','0','','','0','0','0','0','0','0','0','9f6c72493ee74c208834fedd93e4b593','0','2','0'), ('41562','18','','10478','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'778','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45327','','','','','200','1','0','','','0','0','0','0','0','0','0','30a4494efd164dad8df7975cf4f67d0a','0','2','0'), ('41563','18','','10478','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'779','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45327','','','','','200','1','0','','','0','0','0','0','0','0','0','f6163d52349d48938752e4a46595026b','0','2','0'), ('41575','18','','10479','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45333','','','','','200','1','0','','','0','0','0','0','0','0','0','32198eb34e2c4b0583718f70453c07af','0','2','0'), ('41576','18','','10479','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45333','','','','','200','1','0','','','0','0','0','0','0','0','0','da796620bb934064a801a476bdb6f12f','0','2','0'), ('41577','18','','10479','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45333','','','','','200','1','0','','','0','0','0','0','0','0','0','df4b1fb0cd1c496f899f72a71912a0e8','0','2','0'), ('41578','18','','10479','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45333','','','','','200','1','0','','','0','0','0','0','0','0','0','9c94e7fea09a4564a8badee716956faf','0','2','0'), ('41579','18','','10479','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45333','','','','','200','1','0','','','0','0','0','0','0','0','0','20f2f1af873a4a669cb3a26c04dc9ffb','0','2','0'), ('41580','18','','10479','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45333','','','','','200','1','0','','','0','0','0','0','0','0','0','951aabf89c3f40fab81974e3b7f05a3f','0','2','0'), ('41581','18','','10479','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45333','','','','','200','1','0','','','0','0','0','0','0','0','0','240c2875c51a4ed9b417e86a2d00ef58','0','2','0'), ('41582','18','','10479','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45333','','','','','200','1','0','','','0','0','0','0','0','0','0','9a5ce33805674092ab3040890f753ca6','0','2','0'), ('41583','18','','10479','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'782','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45333','','','','','200','1','0','','','0','0','0','0','0','0','0','d13d7eaba7314f4a8b387b373cca5c6f','0','2','0'), ('41584','18','','10479','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'783','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45333','','','','','200','1','0','','','0','0','0','0','0','0','0','66553455009c4044bbd0cd4c259bd3b4','0','2','0'), ('41596','18','','10480','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45339','','','','','200','1','0','','','0','0','0','0','0','0','0','2f7a46aee66e4dbf997ac51362f2bb55','0','2','0'), ('41597','18','','10480','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45339','','','','','200','1','0','','','0','0','0','0','0','0','0','23ea1788a4334a2b8ec9b4980bbccc9d','0','2','0'), ('41598','18','','10480','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45339','','','','','200','1','0','','','0','0','0','0','0','0','0','c802ca6e2ecc4d149b877eca9a01190e','0','2','0'), ('41599','18','','10480','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45339','','','','','200','1','0','','','0','0','0','0','0','0','0','dfcec8edd17a4865b75df11c0929ce68','0','2','0'), ('41600','18','','10480','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45339','','','','','200','1','0','','','0','0','0','0','0','0','0','01c46647d3e34f04bef49464f3ecee7a','0','2','0'), ('41601','18','','10480','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45339','','','','','200','1','0','','','0','0','0','0','0','0','0','89b2e0e05b51489881bd3999cff7460e','0','2','0'), ('41602','18','','10480','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45339','','','','','200','1','0','','','0','0','0','0','0','0','0','0e299540733d41f7a31fca8c834d4a64','0','2','0'), ('41603','18','','10480','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45339','','','','','200','1','0','','','0','0','0','0','0','0','0','031c50df657944dd86e736d2747a3d6e','0','2','0'), ('41604','18','','10480','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'786','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45339','','','','','200','1','0','','','0','0','0','0','0','0','0','3d0785af532942398bbc7c71f1c902ad','0','2','0'), ('41605','18','','10480','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'787','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45339','','','','','200','1','0','','','0','0','0','0','0','0','0','d3f08b8e8b5f440a9ce30440b96ee2cc','0','2','0'), ('41617','18','','10481','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45345','','','','','200','1','0','','','0','0','0','0','0','0','0','066b2690d6234e2cb2bffd715f4ec4b9','0','2','0'), ('41618','18','','10481','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45345','','','','','200','1','0','','','0','0','0','0','0','0','0','ee0d3007bb9d4f8b8d83a052f98620a1','0','2','0'), ('41619','18','','10481','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45345','','','','','200','1','0','','','0','0','0','0','0','0','0','f3d75b29bee14d779c94707322dd682a','0','2','0'), ('41620','18','','10481','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45345','','','','','200','1','0','','','0','0','0','0','0','0','0','a4e9ed82f52043378d6304178c3e3f78','0','2','0'), ('41621','18','','10481','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45345','','','','','200','1','0','','','0','0','0','0','0','0','0','37cc5408843b4a35b3817b099fd1e420','0','2','0'), ('41622','18','','10481','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45345','','','','','200','1','0','','','0','0','0','0','0','0','0','e8f7113e11d34e7bb15ba4ab5e2691f6','0','2','0'), ('41623','18','','10481','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45345','','','','','200','1','0','','','0','0','0','0','0','0','0','97827ffc7fae4320a9c1553d4c0490b8','0','2','0'), ('41624','18','','10481','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45345','','','','','200','1','0','','','0','0','0','0','0','0','0','c8c2482534994abaa5d0cf23ad5cb62f','0','2','0'), ('41625','18','','10481','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'790','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45345','','','','','200','1','0','','','0','0','0','0','0','0','0','17bc03edd5fd42a0844e9105109c14e4','0','2','0'), ('41626','18','','10481','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'791','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45345','','','','','200','1','0','','','0','0','0','0','0','0','0','6246d2dd236d4ebe820cf85d690e847d','0','2','0'), ('41638','18','','10482','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45351','','','','','200','1','0','','','0','0','0','0','0','0','0','e637baa779224aca9006590a39346f00','0','2','0'), ('41639','18','','10482','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45351','','','','','200','1','0','','','0','0','0','0','0','0','0','7332bcbd5eca49f3a5365d86264f1028','0','2','0'), ('41640','18','','10482','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45351','','','','','200','1','0','','','0','0','0','0','0','0','0','cb7b2f212cba40ad80cca243b05c3bc0','0','2','0'), ('41641','18','','10482','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45351','','','','','200','1','0','','','0','0','0','0','0','0','0','8b0d5ae995c546779eedfe926e2063ad','0','2','0'), ('41642','18','','10482','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45351','','','','','200','1','0','','','0','0','0','0','0','0','0','b47a007b7bff429b91347a937cbefa45','0','2','0'), ('41643','18','','10482','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45351','','','','','200','1','0','','','0','0','0','0','0','0','0','5358ca10aa794e298fd4e8571abe654d','0','2','0'), ('41644','18','','10482','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45351','','','','','200','1','0','','','0','0','0','0','0','0','0','6e9189d7a23d4b5eb08e6b9a36a6a740','0','2','0'), ('41645','18','','10482','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45351','','','','','200','1','0','','','0','0','0','0','0','0','0','0faeb4dc5e144f9794519f37a1ca26e6','0','2','0'), ('41646','18','','10482','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'794','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45351','','','','','200','1','0','','','0','0','0','0','0','0','0','10a37f86af134370838f58c09edd4e58','0','2','0'), ('41647','18','','10482','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'795','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45351','','','','','200','1','0','','','0','0','0','0','0','0','0','908cd9a188eb480fa50e90bb17e99575','0','2','0'), ('41659','18','','10483','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45357','','','','','200','1','0','','','0','0','0','0','0','0','0','ee778a5b20f6482d87d473212b740cf5','0','2','0'), ('41660','18','','10483','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45357','','','','','200','1','0','','','0','0','0','0','0','0','0','6dedda7d9d7e4debb9fbd1dbf3249e8e','0','2','0'), ('41661','18','','10483','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45357','','','','','200','1','0','','','0','0','0','0','0','0','0','4ee2f3a994dc4cbdb733a0c949775b2b','0','2','0'), ('41662','18','','10483','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45357','','','','','200','1','0','','','0','0','0','0','0','0','0','f6498742503a431e94f84271b58d5dcf','0','2','0'), ('41663','18','','10483','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45357','','','','','200','1','0','','','0','0','0','0','0','0','0','6e7823dd59b84368afc4cfa354c740a0','0','2','0'), ('41664','18','','10483','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45357','','','','','200','1','0','','','0','0','0','0','0','0','0','e2c2d9926c384963b950578e6cc11b8f','0','2','0'), ('41665','18','','10483','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45357','','','','','200','1','0','','','0','0','0','0','0','0','0','87badc6ee6b74dc5807a6879d0803754','0','2','0'), ('41666','18','','10483','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45357','','','','','200','1','0','','','0','0','0','0','0','0','0','fe56f8b25da34c9da8b0506357f4f3d8','0','2','0'), ('41667','18','','10483','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'798','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45357','','','','','200','1','0','','','0','0','0','0','0','0','0','d9ef7b596d2c4b02a0b499deef12ded9','0','2','0'), ('41668','18','','10483','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'799','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45357','','','','','200','1','0','','','0','0','0','0','0','0','0','85384a663bdb4dabb33a941c52e90843','0','2','0'), ('41680','18','','10484','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45363','','','','','200','1','0','','','0','0','0','0','0','0','0','60b595ded1d14e9885d8d34fcf3efa6f','0','2','0'), ('41681','18','','10484','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45363','','','','','200','1','0','','','0','0','0','0','0','0','0','d80f7f3e0752494f95ef13381433e687','0','2','0'), ('41682','18','','10484','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45363','','','','','200','1','0','','','0','0','0','0','0','0','0','25c32c5de7be49f6a2f3144ed8e17122','0','2','0'), ('41683','18','','10484','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45363','','','','','200','1','0','','','0','0','0','0','0','0','0','21369947f18c4f019cde51713440cddf','0','2','0'), ('41684','18','','10484','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45363','','','','','200','1','0','','','0','0','0','0','0','0','0','79b84574a2b04137aad734b482ac5847','0','2','0'), ('41685','18','','10484','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45363','','','','','200','1','0','','','0','0','0','0','0','0','0','c4dc8fc4c8aa41a288b3b5335f9ff546','0','2','0'), ('41686','18','','10484','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45363','','','','','200','1','0','','','0','0','0','0','0','0','0','6c578490506b46a8b801d6fe294ce194','0','2','0'), ('41687','18','','10484','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45363','','','','','200','1','0','','','0','0','0','0','0','0','0','395fd1b9e5834ffb93594140f5a0ef09','0','2','0'), ('41688','18','','10484','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'802','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45363','','','','','200','1','0','','','0','0','0','0','0','0','0','04c3ebee2ed24e64b3b8c3f347908913','0','2','0'), ('41689','18','','10484','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'803','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45363','','','','','200','1','0','','','0','0','0','0','0','0','0','ebdbf3ee4cdd4e7c84d5aeb2cfeba519','0','2','0'), ('41701','18','','10485','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45369','','','','','200','1','0','','','0','0','0','0','0','0','0','611b4a16aeea48fdb0aac0a14f390f00','0','2','0'), ('41702','18','','10485','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45369','','','','','200','1','0','','','0','0','0','0','0','0','0','a723cc7880ab4c25b83379ef569fb939','0','2','0'), ('41703','18','','10485','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45369','','','','','200','1','0','','','0','0','0','0','0','0','0','b341e196860b4b388bfb2ee5c10d6494','0','2','0'), ('41704','18','','10485','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45369','','','','','200','1','0','','','0','0','0','0','0','0','0','27eca86b5b7b43cdb5363a5d93939922','0','2','0'), ('41705','18','','10485','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45369','','','','','200','1','0','','','0','0','0','0','0','0','0','976a674793c640448cf897084b641b0a','0','2','0'), ('41706','18','','10485','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45369','','','','','200','1','0','','','0','0','0','0','0','0','0','78e7ff29409042a0b792c8eca8d18aea','0','2','0'), ('41707','18','','10485','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45369','','','','','200','1','0','','','0','0','0','0','0','0','0','5a6b30537bf34d249ed55b477414172e','0','2','0'), ('41708','18','','10485','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45369','','','','','200','1','0','','','0','0','0','0','0','0','0','45c1a8fd813d4341bf2c0346aa6af0cf','0','2','0'), ('41709','18','','10485','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'806','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45369','','','','','200','1','0','','','0','0','0','0','0','0','0','090b099f4b894d91bd12a8ea9cdf92a2','0','2','0'), ('41710','18','','10485','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'807','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45369','','','','','200','1','0','','','0','0','0','0','0','0','0','9613cbdf5e204ea98955cc0f63edd137','0','2','0'), ('41722','18','','10486','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45375','','','','','200','1','0','','','0','0','0','0','0','0','0','65c99a07936d4b19a2dbd2694b116184','0','2','0'), ('41723','18','','10486','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45375','','','','','200','1','0','','','0','0','0','0','0','0','0','c2df69bb6ae143d78b11a5ab58b0aab9','0','2','0'), ('41724','18','','10486','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45375','','','','','200','1','0','','','0','0','0','0','0','0','0','bf32bcb3bdc74f14a1764799cf8e0d8d','0','2','0'), ('41725','18','','10486','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45375','','','','','200','1','0','','','0','0','0','0','0','0','0','cabd4bf8a6194e7382099e3ea9b5ec9e','0','2','0'), ('41726','18','','10486','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45375','','','','','200','1','0','','','0','0','0','0','0','0','0','06c282bad0f548ad8d0f9d574ded79f0','0','2','0'), ('41727','18','','10486','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45375','','','','','200','1','0','','','0','0','0','0','0','0','0','1b4edb82855a423c88ba3d15da04fb73','0','2','0'), ('41728','18','','10486','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45375','','','','','200','1','0','','','0','0','0','0','0','0','0','59208d42b7bf44889d415d7faee1f1e0','0','2','0'), ('41729','18','','10486','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45375','','','','','200','1','0','','','0','0','0','0','0','0','0','5c85ca41d6bb4f5e8f2b7ee576aa7d45','0','2','0'), ('41730','18','','10486','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'810','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45375','','','','','200','1','0','','','0','0','0','0','0','0','0','f9f0e97c0ad446c2ae7839352993c51c','0','2','0'), ('41731','18','','10486','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'811','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45375','','','','','200','1','0','','','0','0','0','0','0','0','0','9666b77845214d02af4fd8a9561e51dc','0','2','0'), ('41743','18','','10487','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45381','','','','','200','1','0','','','0','0','0','0','0','0','0','b115d18980cb4523a6d9a1541a279588','0','2','0'), ('41744','18','','10487','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45381','','','','','200','1','0','','','0','0','0','0','0','0','0','49750186b18247479dd05ba4ac45d406','0','2','0'), ('41745','18','','10487','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45381','','','','','200','1','0','','','0','0','0','0','0','0','0','bb2665aff8fa4f709dd619c759a6d854','0','2','0'), ('41746','18','','10487','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45381','','','','','200','1','0','','','0','0','0','0','0','0','0','5d456ea5d19840f395e0daffe4eab09d','0','2','0'), ('41747','18','','10487','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45381','','','','','200','1','0','','','0','0','0','0','0','0','0','9daf559ebf0d4156b5668c71b796c0f0','0','2','0'), ('41748','18','','10487','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45381','','','','','200','1','0','','','0','0','0','0','0','0','0','18f9e0bd4d614ac09ccef19d220352bd','0','2','0'), ('41749','18','','10487','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45381','','','','','200','1','0','','','0','0','0','0','0','0','0','b3425f3b387047d09641cceb422677bb','0','2','0'), ('41750','18','','10487','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45381','','','','','200','1','0','','','0','0','0','0','0','0','0','4b7aa43124084e32a7af56128a6b7969','0','2','0'), ('41751','18','','10487','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'814','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45381','','','','','200','1','0','','','0','0','0','0','0','0','0','950a0a505f0748098d67fd9408728508','0','2','0'), ('41752','18','','10487','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'815','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45381','','','','','200','1','0','','','0','0','0','0','0','0','0','311017c930b940a38ce0959f5c145916','0','2','0'), ('41764','18','','10488','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45387','','','','','200','1','0','','','0','0','0','0','0','0','0','f984abdb831647d4aff155d0b24ae954','0','2','0'), ('41765','18','','10488','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45387','','','','','200','1','0','','','0','0','0','0','0','0','0','944e76b770c84d7791cbcca1a679ee3a','0','2','0'), ('41766','18','','10488','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45387','','','','','200','1','0','','','0','0','0','0','0','0','0','04bbdf422aa04d68a9ee43add64517d2','0','2','0'), ('41767','18','','10488','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45387','','','','','200','1','0','','','0','0','0','0','0','0','0','2c87ca86d3af453db42ab47399e4e578','0','2','0'), ('41768','18','','10488','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45387','','','','','200','1','0','','','0','0','0','0','0','0','0','c3ce7b6ff39b4e2da36a180b1012ede2','0','2','0'), ('41769','18','','10488','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45387','','','','','200','1','0','','','0','0','0','0','0','0','0','0afe36d6d0a348cab7e370b9d3692ef8','0','2','0'), ('41770','18','','10488','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45387','','','','','200','1','0','','','0','0','0','0','0','0','0','2beebac52d2042868aeac37131890501','0','2','0'), ('41771','18','','10488','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45387','','','','','200','1','0','','','0','0','0','0','0','0','0','e2033425d53e4448947f0f89a751520e','0','2','0'), ('41772','18','','10488','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'818','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45387','','','','','200','1','0','','','0','0','0','0','0','0','0','33498ba5cdb2475dadc64a13bfdda78f','0','2','0'), ('41773','18','','10488','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'819','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45387','','','','','200','1','0','','','0','0','0','0','0','0','0','0e7454246fda4867b3dab1c7151ea085','0','2','0'), ('41785','18','','10489','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45393','','','','','200','1','0','','','0','0','0','0','0','0','0','fee6ff9551144a1c9888afccc73cddc2','0','2','0'), ('41786','18','','10489','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45393','','','','','200','1','0','','','0','0','0','0','0','0','0','296295e0f95c4302a6b96216f8a3011e','0','2','0'), ('41787','18','','10489','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45393','','','','','200','1','0','','','0','0','0','0','0','0','0','59ec7c3ac8304d2885623ab64bad205e','0','2','0'), ('41788','18','','10489','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45393','','','','','200','1','0','','','0','0','0','0','0','0','0','6590c395369244baa3a145197fb929b7','0','2','0'), ('41789','18','','10489','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45393','','','','','200','1','0','','','0','0','0','0','0','0','0','49ca22d9508740af9de2712bed15d185','0','2','0'), ('41790','18','','10489','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45393','','','','','200','1','0','','','0','0','0','0','0','0','0','dd61dfacc7dd4fd8afaf6825aedb699a','0','2','0'), ('41791','18','','10489','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45393','','','','','200','1','0','','','0','0','0','0','0','0','0','976e391051da4a33a1ff3b85b9ff3639','0','2','0'), ('41792','18','','10489','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45393','','','','','200','1','0','','','0','0','0','0','0','0','0','eaf35c9b8212444ca1736f6fd4e36b0d','0','2','0'), ('41793','18','','10489','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'822','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45393','','','','','200','1','0','','','0','0','0','0','0','0','0','f91919c8c9d049b0ae2d6a4d459f7d98','0','2','0'), ('41794','18','','10489','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'823','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45393','','','','','200','1','0','','','0','0','0','0','0','0','0','dcfbfcdc02664c59b73711a01eb00e35','0','2','0'), ('41806','18','','10490','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45399','','','','','200','1','0','','','0','0','0','0','0','0','0','5450b5a9f856449ba52b6185e4e005cd','0','2','0'), ('41807','18','','10490','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45399','','','','','200','1','0','','','0','0','0','0','0','0','0','b0690345e9d643669eab19da5436c1e9','0','2','0'), ('41808','18','','10490','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45399','','','','','200','1','0','','','0','0','0','0','0','0','0','be752ed58d3e4bcbb575f5aa77bc573f','0','2','0'), ('41809','18','','10490','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45399','','','','','200','1','0','','','0','0','0','0','0','0','0','de703efe12a147ccab5ed87dca174293','0','2','0'), ('41810','18','','10490','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45399','','','','','200','1','0','','','0','0','0','0','0','0','0','15a9c5f7e9b3403986182e9f63a557f6','0','2','0'), ('41811','18','','10490','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45399','','','','','200','1','0','','','0','0','0','0','0','0','0','fc09d50cbadb46c499fe153bd9f4b4aa','0','2','0'), ('41812','18','','10490','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45399','','','','','200','1','0','','','0','0','0','0','0','0','0','fd545abd5b7146dd823d2bd2f1339054','0','2','0'), ('41813','18','','10490','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45399','','','','','200','1','0','','','0','0','0','0','0','0','0','8beaa10b22194fcda348ae031d0e2284','0','2','0'), ('41814','18','','10490','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'826','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45399','','','','','200','1','0','','','0','0','0','0','0','0','0','bac4bcf127634d06b90c6d2b7c0469a1','0','2','0'), ('41815','18','','10490','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'827','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45399','','','','','200','1','0','','','0','0','0','0','0','0','0','96fe507b89234141ad615998fbf581d2','0','2','0'), ('41827','18','','10491','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45405','','','','','200','1','0','','','0','0','0','0','0','0','0','442498a0dc4a407caa7fc547d9f4b83c','0','2','0'), ('41828','18','','10491','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45405','','','','','200','1','0','','','0','0','0','0','0','0','0','9c1a70e71c0a4004b287185e65525f23','0','2','0'), ('41829','18','','10491','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45405','','','','','200','1','0','','','0','0','0','0','0','0','0','a7d6baba939c4d659e040dbc1684a282','0','2','0'), ('41830','18','','10491','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45405','','','','','200','1','0','','','0','0','0','0','0','0','0','8aa1645a0e904d67b7ad817b2da6bfa0','0','2','0'), ('41831','18','','10491','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45405','','','','','200','1','0','','','0','0','0','0','0','0','0','c51737e07a6c4a1cb54bba98fc411e03','0','2','0'), ('41832','18','','10491','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45405','','','','','200','1','0','','','0','0','0','0','0','0','0','7d3ab5988cba43c69df4f64542aca0ec','0','2','0'), ('41833','18','','10491','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45405','','','','','200','1','0','','','0','0','0','0','0','0','0','d6e87ac1ef4d4d4cbba229c420dfd5d6','0','2','0'), ('41834','18','','10491','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45405','','','','','200','1','0','','','0','0','0','0','0','0','0','bb37147d244f4d548da1aa607c7f4396','0','2','0'), ('41835','18','','10491','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'830','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45405','','','','','200','1','0','','','0','0','0','0','0','0','0','78b80a419eba483bbf6f6ad12095f53b','0','2','0'), ('41836','18','','10491','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'831','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45405','','','','','200','1','0','','','0','0','0','0','0','0','0','a8cc24b0c22a4cddbc05524288bb8862','0','2','0'), ('41848','18','','10492','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45411','','','','','200','1','0','','','0','0','0','0','0','0','0','439bb27734ca4edd91edeca7d97271f6','0','2','0'), ('41849','18','','10492','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45411','','','','','200','1','0','','','0','0','0','0','0','0','0','b0e6bc0f708942feaa910179e25a61a9','0','2','0'), ('41850','18','','10492','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45411','','','','','200','1','0','','','0','0','0','0','0','0','0','0a874ea342fc4339b03eb852558d7fb7','0','2','0'), ('41851','18','','10492','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45411','','','','','200','1','0','','','0','0','0','0','0','0','0','b846f52186964673ab6addfd6cb89d77','0','2','0'), ('41852','18','','10492','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45411','','','','','200','1','0','','','0','0','0','0','0','0','0','a0ef0375118b4c6d930041c049949f10','0','2','0'), ('41853','18','','10492','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45411','','','','','200','1','0','','','0','0','0','0','0','0','0','6c8d6d0caa5a48fba3f6896b69c39688','0','2','0'), ('41854','18','','10492','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45411','','','','','200','1','0','','','0','0','0','0','0','0','0','52322d25a33542f9bdaab07df875c610','0','2','0'), ('41855','18','','10492','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45411','','','','','200','1','0','','','0','0','0','0','0','0','0','60577a786d9c4ffab235e9d9dca2b443','0','2','0'), ('41856','18','','10492','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'834','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45411','','','','','200','1','0','','','0','0','0','0','0','0','0','fa2bc982f1384ea7af181876f61ab031','0','2','0'), ('41857','18','','10492','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'835','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45411','','','','','200','1','0','','','0','0','0','0','0','0','0','c2a7039babd34c22a123b7d6473cd6e3','0','2','0'), ('41869','18','','10493','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45417','','','','','200','1','0','','','0','0','0','0','0','0','0','a75de8a9798243ee8f0b8629f54e3259','0','2','0'), ('41870','18','','10493','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45417','','','','','200','1','0','','','0','0','0','0','0','0','0','7fd32545717c44d7b4b117e53b64acc1','0','2','0'), ('41871','18','','10493','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45417','','','','','200','1','0','','','0','0','0','0','0','0','0','9a2c81dbd79e46bbb3c48d070420a99f','0','2','0'), ('41872','18','','10493','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45417','','','','','200','1','0','','','0','0','0','0','0','0','0','4e6f08a3ea114a6292ac778f3e85891d','0','2','0'), ('41873','18','','10493','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45417','','','','','200','1','0','','','0','0','0','0','0','0','0','4f918f4895f74e17bc60ce81e922a41d','0','2','0'), ('41874','18','','10493','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45417','','','','','200','1','0','','','0','0','0','0','0','0','0','aab55962d3c34894a1803e4c8fbf54b2','0','2','0'), ('41875','18','','10493','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45417','','','','','200','1','0','','','0','0','0','0','0','0','0','838819ed65ce4b38a5f5a603aceac7a5','0','2','0'), ('41876','18','','10493','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45417','','','','','200','1','0','','','0','0','0','0','0','0','0','4550a521700f4184a1abb5c56680d745','0','2','0'), ('41877','18','','10493','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'838','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45417','','','','','200','1','0','','','0','0','0','0','0','0','0','bc1f11185a9740799bf47205d918e90c','0','2','0'), ('41878','18','','10493','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'839','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45417','','','','','200','1','0','','','0','0','0','0','0','0','0','322bbc3e779041f9a2c1d776168c44e4','0','2','0'), ('41890','18','','10494','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45423','','','','','200','1','0','','','0','0','0','0','0','0','0','e91f8259895343b7924c4d44f71aad82','0','2','0'), ('41891','18','','10494','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45423','','','','','200','1','0','','','0','0','0','0','0','0','0','fe34a8167761431598cb66871b8ccc0d','0','2','0'), ('41892','18','','10494','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45423','','','','','200','1','0','','','0','0','0','0','0','0','0','4d23dbb885804af4b402edb00fa2b853','0','2','0'), ('41893','18','','10494','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45423','','','','','200','1','0','','','0','0','0','0','0','0','0','197ab3671e5b4b8f804627691a331d85','0','2','0'), ('41894','18','','10494','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45423','','','','','200','1','0','','','0','0','0','0','0','0','0','4c0104ac14af4ebca549b82e59dbf135','0','2','0'), ('41895','18','','10494','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45423','','','','','200','1','0','','','0','0','0','0','0','0','0','dfc294dd052d49a0ba964294ded0f433','0','2','0'), ('41896','18','','10494','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45423','','','','','200','1','0','','','0','0','0','0','0','0','0','b051145f6cff4725a3e2a1f90414261b','0','2','0'), ('41897','18','','10494','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45423','','','','','200','1','0','','','0','0','0','0','0','0','0','ff597532ec2b4a81a0344c3bc16214f1','0','2','0'), ('41898','18','','10494','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'842','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45423','','','','','200','1','0','','','0','0','0','0','0','0','0','eaa27aca2b754db99c80b0a5c9f92227','0','2','0'), ('41899','18','','10494','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'843','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45423','','','','','200','1','0','','','0','0','0','0','0','0','0','4ae74d12983d42b7bff4dd5c72e9502a','0','2','0'), ('41911','18','','10495','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45429','','','','','200','1','0','','','0','0','0','0','0','0','0','477f5879c64a43f58a3a769781cdc5bf','0','2','0'), ('41912','18','','10495','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45429','','','','','200','1','0','','','0','0','0','0','0','0','0','ea5abf52a338464aa4c73f18ea4ebe23','0','2','0'), ('41913','18','','10495','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45429','','','','','200','1','0','','','0','0','0','0','0','0','0','bdf2c149889b48b9a1837d2e9d3d9fee','0','2','0'), ('41914','18','','10495','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45429','','','','','200','1','0','','','0','0','0','0','0','0','0','ca60ce8dcd674a608e0517d2e647f273','0','2','0'), ('41915','18','','10495','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45429','','','','','200','1','0','','','0','0','0','0','0','0','0','9cb988645c5d49eb9b598904907d0ab3','0','2','0'), ('41916','18','','10495','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45429','','','','','200','1','0','','','0','0','0','0','0','0','0','99b8a1cf6c36400b849aa84f4a71f098','0','2','0'), ('41917','18','','10495','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45429','','','','','200','1','0','','','0','0','0','0','0','0','0','94bd65da101541eb87cf17c49b3fdd88','0','2','0'), ('41918','18','','10495','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45429','','','','','200','1','0','','','0','0','0','0','0','0','0','b8584ff473de4f20b4ab1e1b0c435251','0','2','0'), ('41919','18','','10495','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'846','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45429','','','','','200','1','0','','','0','0','0','0','0','0','0','55435c135d5341eb89d37185c894c557','0','2','0'), ('41920','18','','10495','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'847','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45429','','','','','200','1','0','','','0','0','0','0','0','0','0','caede69c454b46db9a46c7a42b994cf1','0','2','0'), ('41932','18','','10496','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45435','','','','','200','1','0','','','0','0','0','0','0','0','0','69471c3749694f3083a04ff02e396f34','0','2','0'), ('41933','18','','10496','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45435','','','','','200','1','0','','','0','0','0','0','0','0','0','530ea86406af41409432376096f66287','0','2','0'), ('41934','18','','10496','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45435','','','','','200','1','0','','','0','0','0','0','0','0','0','369c88f8e6fc48498f42feb7480a51b3','0','2','0'), ('41935','18','','10496','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45435','','','','','200','1','0','','','0','0','0','0','0','0','0','d646ae15a461418aa8e8da230c5782eb','0','2','0'), ('41936','18','','10496','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45435','','','','','200','1','0','','','0','0','0','0','0','0','0','3e6a5520bc15470da4ac5a4c8a294728','0','2','0'), ('41937','18','','10496','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45435','','','','','200','1','0','','','0','0','0','0','0','0','0','340ea8c167bf44479c564e46a515fad0','0','2','0'), ('41938','18','','10496','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45435','','','','','200','1','0','','','0','0','0','0','0','0','0','a63fbf01f29b46c19f6c8af8711e18f4','0','2','0'), ('41939','18','','10496','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45435','','','','','200','1','0','','','0','0','0','0','0','0','0','a4bf8af96225494886df5fe116af2ada','0','2','0'), ('41940','18','','10496','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'850','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45435','','','','','200','1','0','','','0','0','0','0','0','0','0','31f8c6c9170b490586ff13e88d33ef53','0','2','0'), ('41941','18','','10496','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'851','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45435','','','','','200','1','0','','','0','0','0','0','0','0','0','76233c986f8e4e0d9c7262e5a20f3576','0','2','0'), ('41953','18','','10497','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45441','','','','','200','1','0','','','0','0','0','0','0','0','0','d9f19a854ae14b56a35f87eca75b3b9e','0','2','0'), ('41954','18','','10497','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45441','','','','','200','1','0','','','0','0','0','0','0','0','0','f68ea90e6b774e0db583fa311f66c91f','0','2','0'), ('41955','18','','10497','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45441','','','','','200','1','0','','','0','0','0','0','0','0','0','8e30986c6563461ab42925fe30db21ab','0','2','0'), ('41956','18','','10497','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45441','','','','','200','1','0','','','0','0','0','0','0','0','0','c38dc98405b14309b3c81df08cccfdea','0','2','0'), ('41957','18','','10497','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45441','','','','','200','1','0','','','0','0','0','0','0','0','0','396930e89bcc4a1c94df333b75e43799','0','2','0'), ('41958','18','','10497','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45441','','','','','200','1','0','','','0','0','0','0','0','0','0','8a08acc839f94e22ba0f24d6c469e137','0','2','0'), ('41959','18','','10497','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45441','','','','','200','1','0','','','0','0','0','0','0','0','0','0a85e89b937842659b588a51b1593e09','0','2','0'), ('41960','18','','10497','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45441','','','','','200','1','0','','','0','0','0','0','0','0','0','141fc60bd89646a1a3d4dbdff9689037','0','2','0'), ('41961','18','','10497','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'854','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45441','','','','','200','1','0','','','0','0','0','0','0','0','0','c21517a23e5f4042b55a9b9171357525','0','2','0'), ('41962','18','','10497','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'855','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45441','','','','','200','1','0','','','0','0','0','0','0','0','0','2117c921d1b747c1953ee0e54619b338','0','2','0'), ('41974','18','','10498','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45447','','','','','200','1','0','','','0','0','0','0','0','0','0','1eede533e5224a8d92c3a2a3d069a00c','0','2','0'), ('41975','18','','10498','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45447','','','','','200','1','0','','','0','0','0','0','0','0','0','292b067b92524af1b183b9d26455d092','0','2','0'), ('41976','18','','10498','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45447','','','','','200','1','0','','','0','0','0','0','0','0','0','67a0721ca54d47b2b1971fb81ab6a195','0','2','0'), ('41977','18','','10498','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45447','','','','','200','1','0','','','0','0','0','0','0','0','0','330bc494646c49a1acc43f134e9dea59','0','2','0'), ('41978','18','','10498','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45447','','','','','200','1','0','','','0','0','0','0','0','0','0','b2bc232de2be40e9b18322bbfe9bd339','0','2','0'), ('41979','18','','10498','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45447','','','','','200','1','0','','','0','0','0','0','0','0','0','419eb76aa4bd4e6dbf47cbaee0e3b6a5','0','2','0'), ('41980','18','','10498','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45447','','','','','200','1','0','','','0','0','0','0','0','0','0','d599db57d24745aba77ae60faef325c8','0','2','0'), ('41981','18','','10498','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45447','','','','','200','1','0','','','0','0','0','0','0','0','0','84970927eb194b00ab4b5aa8093b5709','0','2','0'), ('41982','18','','10498','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'858','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45447','','','','','200','1','0','','','0','0','0','0','0','0','0','cd76e4940cbf4582b3e6f1c7a0ec28fc','0','2','0'), ('41983','18','','10498','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'859','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45447','','','','','200','1','0','','','0','0','0','0','0','0','0','3c0b9f206c9744d381903da1877e207f','0','2','0'), ('41995','18','','10499','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45453','','','','','200','1','0','','','0','0','0','0','0','0','0','4c29001a422d4c93829f613674c760ab','0','2','0'), ('41996','18','','10499','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45453','','','','','200','1','0','','','0','0','0','0','0','0','0','0dbfe46640fc42a9abaabd7272404cec','0','2','0'), ('41997','18','','10499','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45453','','','','','200','1','0','','','0','0','0','0','0','0','0','32e0d3493c2142389f5dffecb9720551','0','2','0'), ('41998','18','','10499','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45453','','','','','200','1','0','','','0','0','0','0','0','0','0','45ebaba72cb643c98340640f40129113','0','2','0'), ('41999','18','','10499','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45453','','','','','200','1','0','','','0','0','0','0','0','0','0','13c44a7c91ed4781aa390cf0fe45224a','0','2','0'), ('42000','18','','10499','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45453','','','','','200','1','0','','','0','0','0','0','0','0','0','b20fe4196472445e9cbb73152e819f5b','0','2','0'), ('42001','18','','10499','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45453','','','','','200','1','0','','','0','0','0','0','0','0','0','e55c393989a1461e8a3e05733164a273','0','2','0'), ('42002','18','','10499','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45453','','','','','200','1','0','','','0','0','0','0','0','0','0','0e5816801ead429688acc6c4e6387c9d','0','2','0'), ('42003','18','','10499','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'862','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45453','','','','','200','1','0','','','0','0','0','0','0','0','0','f8c119662e5a460588e15558e83be9d3','0','2','0'), ('42004','18','','10499','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'863','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45453','','','','','200','1','0','','','0','0','0','0','0','0','0','c08335ca5dae457b8d0139df59e96057','0','2','0'), ('42016','18','','10500','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45459','','','','','200','1','0','','','0','0','0','0','0','0','0','62392f64c22b47d8bb2cf4fcb1c24682','0','2','0'), ('42017','18','','10500','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45459','','','','','200','1','0','','','0','0','0','0','0','0','0','8b99bd7b719940428af4af9f3a43ae72','0','2','0'), ('42018','18','','10500','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45459','','','','','200','1','0','','','0','0','0','0','0','0','0','67bbe49205f6440398bfc5f28df04c3f','0','2','0'), ('42019','18','','10500','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45459','','','','','200','1','0','','','0','0','0','0','0','0','0','9df47891dc1540f98068c1734a2bab0e','0','2','0'), ('42020','18','','10500','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45459','','','','','200','1','0','','','0','0','0','0','0','0','0','e8e937775f794e7ca7e78e8e5cc1e555','0','2','0'), ('42021','18','','10500','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45459','','','','','200','1','0','','','0','0','0','0','0','0','0','88e9b94950084ffcbae95936b9af3c66','0','2','0'), ('42022','18','','10500','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45459','','','','','200','1','0','','','0','0','0','0','0','0','0','5b3a4925f5c54ae78c46eee45e81588e','0','2','0'), ('42023','18','','10500','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45459','','','','','200','1','0','','','0','0','0','0','0','0','0','faca9de83a1c4309972af08848b0480d','0','2','0'), ('42024','18','','10500','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'866','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45459','','','','','200','1','0','','','0','0','0','0','0','0','0','9e73b53e463f479fbdaaf17433530cf2','0','2','0'), ('42025','18','','10500','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'867','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45459','','','','','200','1','0','','','0','0','0','0','0','0','0','b1e65d5043c84e7b9a9185cd0ea36074','0','2','0'), ('42037','18','','10501','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45465','','','','','200','1','0','','','0','0','0','0','0','0','0','7296321823c4439ba324965a820221a6','0','2','0'), ('42038','18','','10501','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45465','','','','','200','1','0','','','0','0','0','0','0','0','0','3cd3522e656b49ee890bb5b89a9cd36c','0','2','0'), ('42039','18','','10501','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45465','','','','','200','1','0','','','0','0','0','0','0','0','0','b5a661b631e94afcbe6f1e7e941bd089','0','2','0'), ('42040','18','','10501','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45465','','','','','200','1','0','','','0','0','0','0','0','0','0','10bedeb24a414598984a8c83730ae718','0','2','0'), ('42041','18','','10501','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45465','','','','','200','1','0','','','0','0','0','0','0','0','0','b8fd82530c854f54b87e8263dc7be4d8','0','2','0'), ('42042','18','','10501','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45465','','','','','200','1','0','','','0','0','0','0','0','0','0','8368e3d0f297470f9948681ad83c4a77','0','2','0'), ('42043','18','','10501','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45465','','','','','200','1','0','','','0','0','0','0','0','0','0','2fb86f95aaf04867b219646000a5b851','0','2','0'), ('42044','18','','10501','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45465','','','','','200','1','0','','','0','0','0','0','0','0','0','a8d1a185804a49e68c2584373770b33e','0','2','0'), ('42045','18','','10501','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'870','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45465','','','','','200','1','0','','','0','0','0','0','0','0','0','112b5660056246e58af76fef04b44c7f','0','2','0'), ('42046','18','','10501','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'871','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45465','','','','','200','1','0','','','0','0','0','0','0','0','0','577f83588c44447c9c6e79ec334b29f3','0','2','0'), ('42058','18','','10502','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45471','','','','','200','1','0','','','0','0','0','0','0','0','0','0e526afef3484016aaf73752c4931fa9','0','2','0'), ('42059','18','','10502','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45471','','','','','200','1','0','','','0','0','0','0','0','0','0','86c29ff24d8a48ac9006749e37a8da67','0','2','0'), ('42060','18','','10502','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45471','','','','','200','1','0','','','0','0','0','0','0','0','0','03412734b2614e8a92a9e8b45c6422bd','0','2','0'), ('42061','18','','10502','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45471','','','','','200','1','0','','','0','0','0','0','0','0','0','48c2f9a47a074a40b20db214de37d830','0','2','0'), ('42062','18','','10502','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45471','','','','','200','1','0','','','0','0','0','0','0','0','0','ca3d79c0bc594979bbc44fe5c729afd0','0','2','0'), ('42063','18','','10502','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45471','','','','','200','1','0','','','0','0','0','0','0','0','0','abea3c44fdc2424db5ccf5d388e492f6','0','2','0'), ('42064','18','','10502','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45471','','','','','200','1','0','','','0','0','0','0','0','0','0','9ff32d3dcc7b4edbbc5f5603fbd4272d','0','2','0'), ('42065','18','','10502','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45471','','','','','200','1','0','','','0','0','0','0','0','0','0','6ad90d1c5e15433599a516dd88c85ff7','0','2','0'), ('42066','18','','10502','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'874','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45471','','','','','200','1','0','','','0','0','0','0','0','0','0','e9d5d234876e47e9a36779c2e1e247e4','0','2','0'), ('42067','18','','10502','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'875','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45471','','','','','200','1','0','','','0','0','0','0','0','0','0','63912ec5f0be48ad966c2a0b0605a9fc','0','2','0'), ('42079','18','','10233','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45477','','','','','200','1','0','','','0','0','0','0','0','0','0','39f9ac305fe2497498916dc709b9a097','0','2','0'), ('42080','18','','10233','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45477','','','','','200','1','0','','','0','0','0','0','0','0','0','2048a885fd67433786f6c3f650962a71','0','2','0'), ('42081','18','','10233','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45477','','','','','200','1','0','','','0','0','0','0','0','0','0','32e41ced890a4b349a5167269450efa6','0','2','0'), ('42082','18','','10233','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45477','','','','','200','1','0','','','0','0','0','0','0','0','0','10806818bfa34f2c94ab9a42720e7e41','0','2','0'), ('42083','18','','10233','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45477','','','','','200','1','0','','','0','0','0','0','0','0','0','e899752523044d2c830e9cd48ba2cb72','0','2','0'), ('42084','18','','10233','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45477','','','','','200','1','0','','','0','0','0','0','0','0','0','d3fd9bb2202e441282a6008dbf27cc5b','0','2','0'), ('42085','18','','10233','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45477','','','','','200','1','0','','','0','0','0','0','0','0','0','af78d9ecefd445c5840bf09e1b3ef438','0','2','0'), ('42086','18','','10233','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45477','','','','','200','1','0','','','0','0','0','0','0','0','0','16c880544cb741fb90c5ba2823225bb0','0','2','0'), ('42087','18','','10233','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'878','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45477','','','','','200','1','0','','','0','0','0','0','0','0','0','3fd63f1049924a5491b9080702bc5fdb','0','2','0'), ('42088','18','','10233','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'879','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45477','','','','','200','1','0','','','0','0','0','0','0','0','0','5fb27bdadc9848118bc64a720ff6dea0','0','2','0'), ('42144','18','','10236','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45480','','','','','200','1','0','','','0','0','0','0','0','0','0','eec7aaed43e14fbca8c07cdc68d8b683','0','2','0'), ('42145','18','','10236','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45480','','','','','200','1','0','','','0','0','0','0','0','0','0','27f1c9ccfc744b5eb215d032fbbe2ff8','0','2','0'), ('42146','18','','10236','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45480','','','','','200','1','0','','','0','0','0','0','0','0','0','738de59c4df9435d8076751a33098685','0','2','0'), ('42147','18','','10236','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface,including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and another times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45480','','','','','200','1','0','','','0','0','0','0','0','0','0','a9393bc9e68c4c27b01320f776c037cb','0','2','0'), ('42148','18','','10236','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45480','','','','','200','1','0','','','0','0','0','0','0','0','0','86798974d9f143bf81e5fa40ac792835','0','2','0'), ('42149','18','','10236','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45480','','','','','200','1','0','','','0','0','0','0','0','0','0','aa20e57e43bd4252b232e9f18ab73391','0','2','0'), ('42150','18','','10236','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45480','','','','','200','1','0','','','0','0','0','0','0','0','0','694efd29271f4109a3008cd3404c2d54','0','2','0'), ('42151','18','','10236','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in bits per second. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. If the bandwidth of the interface is greater than the maximum value reportable by this object then this object should report its maximum value (4,294,967,295) and ifHighSpeed must be used to report the interface''s speed. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45480','','','','','200','1','0','','','0','0','0','0','0','0','0','b06b4597959c44d6b998b506257e0f7f','0','2','0'), ('42152','18','','10236','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'891','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45480','','','','','200','1','0','','','0','0','0','0','0','0','0','25c78dd4d9ff466980d06912c8ca79db','0','2','0'), ('42153','18','','10236','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'892','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45480','','','','','200','1','0','','','0','0','0','0','0','0','0','7d5f2f31ef3f49809e1011fed5347942','0','2','0'), ('42267','18','','10001','CPU utilization','system.cpu.util','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'CPU utilization expressed in %.','0','30d','0','','42224','','','','','200','1','0','','','0','0','0','0','0','0','0','ca4235ec7607469cb0124a6253d3c489','0','2','0'), ('42268','18','','10001','Memory utilization','vm.memory.utilization','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of used memory is calculated as `100-pavailable`.','0','30d','0','','42204','','','','','200','1','0','','','0','0','0','0','0','0','0','403cebed115441369e94d35d070ca7b8','0','2','0'), ('42273','18','','10001','Mounted filesystem discovery','vfs.fs.dependent.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The discovery of mounted filesystems with different types.','0','7d','1','','44436','','','','','200','1','0','','','0','0','0','0','0','0','0','7d090603037e4defb34ef74021d3adcd','0','2','0'), ('42307','18','','10001','{#DEVNAME}: Disk average queue size (avgqu-sz)','vfs.dev.queue_size[{#DEVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current average disk queue; the number of requests outstanding on the disk while the performance data is being collected.','0','30d','0','','42287','','','','','200','1','0','','','0','0','0','0','0','0','0','5e29abb8d56044f69426ed3594f8ac9f','0','2','0'), ('42308','18','','10001','{#DEVNAME}: Disk read rate','vfs.dev.read.rate[{#DEVNAME}]','0','31d','365d','0','0','','!r/s','','',NULL,NULL,'','','0','','','','','2',NULL,'r/s (read operations per second) - the number (after merges) of read requests completed per second for the device.','0','30d','0','','42287','','','','','200','1','0','','','0','0','0','0','0','0','0','f4b982d8e7ee47adb34d74d817db43a6','0','2','0'), ('42309','18','','10001','{#DEVNAME}: Disk read time (rate)','vfs.dev.read.time.rate[{#DEVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The rate of total read time counter; used in `r_await` calculation.','0','30d','0','','42287','','','','','200','1','0','','','0','0','0','0','0','0','0','877a3e892d9e489f98f2f16ea05bfdc2','0','2','0'), ('42310','18','','10001','{#DEVNAME}: Disk utilization','vfs.dev.util[{#DEVNAME}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of elapsed time during which the selected disk drive was busy while servicing read or write requests.','0','30d','0','','42287','','','','','200','1','0','','','0','0','0','0','0','0','0','4a3ee3166ee748e1855a2b02d44e9d62','0','2','0'), ('42311','18','','10001','{#DEVNAME}: Disk write rate','vfs.dev.write.rate[{#DEVNAME}]','0','31d','365d','0','0','','!w/s','','',NULL,NULL,'','','0','','','','','2',NULL,'w/s (write operations per second) - the number (after merges) of write requests completed per second for the device.','0','30d','0','','42287','','','','','200','1','0','','','0','0','0','0','0','0','0','c4eb904dfddd4b0f8cdee4b2c477e213','0','2','0'), ('42312','18','','10001','{#DEVNAME}: Disk write time (rate)','vfs.dev.write.time.rate[{#DEVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The rate of total write time counter; used in `w_await` calculation.','0','30d','0','','42287','','','','','200','1','0','','','0','0','0','0','0','0','0','e828495863304b219e24965f7b91e963','0','2','0'), ('42358','18','','10343','CPU utilization','system.cpu.util','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'CPU utilization expressed in %.','0','30d','0','','42356','','','','','200','1','0','','','0','0','0','0','0','0','0','9cb786aec7de4f749f33c6e5adfbaf75','0','2','0'), ('42359','18','','10343','Memory utilization','vm.memory.utilization','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of used memory is calculated as `100-pavailable`.','0','30d','0','','42336','','','','','200','1','0','','','0','0','0','0','0','0','0','07e60e812d32443ba8e8b0eb27166b98','0','2','0'), ('42362','18','','10343','Mounted filesystem discovery','vfs.fs.dependent.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The discovery of mounted filesystems with different types.','0','7d','1','','44442','','','','','200','1','0','','','0','0','0','0','0','0','0','5c9b5dbed44c4af0957ff9316f8fb761','0','2','0'), ('42378','18','','10343','{#DEVNAME}: Disk average queue size (avgqu-sz)','vfs.dev.queue_size[{#DEVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current average disk queue; the number of requests outstanding on the disk while the performance data is being collected.','0','30d','0','','42373','','','','','200','1','0','','','0','0','0','0','0','0','0','9a0448cf8a184d52a7872df410f25d6b','0','2','0'), ('42379','18','','10343','{#DEVNAME}: Disk read rate','vfs.dev.read.rate[{#DEVNAME}]','0','31d','365d','0','0','','!r/s','','',NULL,NULL,'','','0','','','','','2',NULL,'r/s (read operations per second) - the number (after merges) of read requests completed per second for the device.','0','30d','0','','42373','','','','','200','1','0','','','0','0','0','0','0','0','0','3bb5f84b2e954c28843fa1fb3898c034','0','2','0'), ('42380','18','','10343','{#DEVNAME}: Disk read time (rate)','vfs.dev.read.time.rate[{#DEVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The rate of total read time counter; used in `r_await` calculation.','0','30d','0','','42373','','','','','200','1','0','','','0','0','0','0','0','0','0','df02934521b54864b2538b764c5d549b','0','2','0'), ('42381','18','','10343','{#DEVNAME}: Disk utilization','vfs.dev.util[{#DEVNAME}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of elapsed time during which the selected disk drive was busy while servicing read or write requests.','0','30d','0','','42373','','','','','200','1','0','','','0','0','0','0','0','0','0','72546bd5eefb4ac7a0b2992a25e5f0c5','0','2','0'), ('42382','18','','10343','{#DEVNAME}: Disk write rate','vfs.dev.write.rate[{#DEVNAME}]','0','31d','365d','0','0','','!w/s','','',NULL,NULL,'','','0','','','','','2',NULL,'w/s (write operations per second) - the number (after merges) of write requests completed per second for the device.','0','30d','0','','42373','','','','','200','1','0','','','0','0','0','0','0','0','0','4ba78909402d4bb8ab32f12c679ea3db','0','2','0'), ('42383','18','','10343','{#DEVNAME}: Disk write time (rate)','vfs.dev.write.time.rate[{#DEVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The rate of total write time counter; used in `w_await` calculation.','0','30d','0','','42373','','','','','200','1','0','','','0','0','0','0','0','0','0','7717dd9841004fa08b35b0e9f42bffaf','0','2','0'), ('42401','18','','10248','Number of CPUs','system.cpu.num[snmp]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count the number of CPU cores by counting number of cores discovered in hrProcessorTable using LLD.','0','30d','0','','45483','','','','','200','1','0','','','0','0','0','0','0','0','0','f835f2d2e65c4efc8934a61870d907ca','0','2','0'), ('42402','18','','10248','Load average (15m avg)','system.cpu.load.avg15[laLoad.3]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB','0','30d','0','','50013','','','','','200','1','0','','','0','0','0','0','0','0','0','0a5c406d4e434dbba248a18318f6a869','0','2','0'), ('42403','18','','10248','Load average (5m avg)','system.cpu.load.avg5[laLoad.2]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB','0','30d','0','','50013','','','','','200','1','0','','','0','0','0','0','0','0','0','e0c8a351d59f42b78e6db4a0c50aa5d2','0','2','0'), ('42404','18','','10248','Load average (1m avg)','system.cpu.load.avg1[laLoad.1]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB','0','30d','0','','50013','','','','','200','1','0','','','0','0','0','0','0','0','0','eeaba506dee342518660c03d422faa2a','0','2','0'), ('42411','18','','10248','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45484','','','','','200','1','0','','','0','0','0','0','0','0','0','c29a7bbfba3441b1b155e68cbe44a685','0','2','0'), ('42412','18','','10248','EtherLike-MIB Discovery','net.if.duplex.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with `up(1)` Operational Status are discovered.','0','7d','1','','45485','','','','','200','1','0','','','0','0','0','0','0','0','0','3943b515dcfc4321be0e15eb99eb0077','0','2','0'), ('42413','18','','10248','Block devices discovery','vfs.dev.discovery[snmp]','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Block devices are discovered from UCD-DISKIO-MIB::diskIOTable (http://net-snmp.sourceforge.net/docs/mibs/ucdDiskIOMIB.html#diskIOTable)','0','7d','1','','45482','','','','','200','1','0','','','0','0','0','0','0','0','0','57792d6e2b4e40a8a285848525bec38d','0','2','0'), ('42414','18','','10248','Mounted filesystem discovery','vfs.fs.discovery[snmp]','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'UCD-SNMP-MIB::dskEntry table discovery with storage filter','0','7d','1','','45481','','','','','200','1','0','','','0','0','0','0','0','0','0','0ba976a284574157b2b51f103a324d43','0','2','0'), ('42415','18','','10248','CPU guest time','system.cpu.guest[ssCpuRawGuest.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB Time spent on running a virtual CPU for a guest operating system.','0','30d','0','','45483','','','','','200','1','0','','','0','0','0','0','0','0','0','528c02f7e0414cb5a97def6702fceb2a','0','2','0'), ('42416','18','','10248','CPU guest nice time','system.cpu.guest_nice[ssCpuRawGuestNice.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB Time spent on running a niced guest (a virtual CPU for guest operating systems under the control of the Linux kernel).','0','30d','0','','45483','','','','','200','1','0','','','0','0','0','0','0','0','0','ce514c83afb345b2b0f3b85d6ec89dc3','0','2','0'), ('42417','18','','10248','CPU idle time','system.cpu.idle[ssCpuRawIdle.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB Time the CPU has spent doing nothing.','0','30d','0','','45483','','','','','200','1','0','','','0','0','0','0','0','0','0','394bffd2086545af806f4ad990f853a1','0','2','0'), ('42418','18','','10248','CPU interrupt time','system.cpu.interrupt[ssCpuRawInterrupt.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB Time the CPU has spent servicing hardware interrupts.','0','30d','0','','45483','','','','','200','1','0','','','0','0','0','0','0','0','0','88e9044abe71483a8670b572517ff4ad','0','2','0'), ('42419','18','','10248','CPU iowait time','system.cpu.iowait[ssCpuRawWait.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB Time the CPU has been waiting for I/O to complete.','0','30d','0','','45483','','','','','200','1','0','','','0','0','0','0','0','0','0','87d1467c79cc4a3d8e5caf3b35de7e17','0','2','0'), ('42420','18','','10248','CPU nice time','system.cpu.nice[ssCpuRawNice.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB Time the CPU has spent running users'' processes that have been niced.','0','30d','0','','45483','','','','','200','1','0','','','0','0','0','0','0','0','0','d35896698d2a459fb682eb170e7005de','0','2','0'), ('42421','18','','10248','CPU softirq time','system.cpu.softirq[ssCpuRawSoftIRQ.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB Time the CPU has been servicing software interrupts.','0','30d','0','','45483','','','','','200','1','0','','','0','0','0','0','0','0','0','b48b79d7c2464bd996776477e55ce724','0','2','0'), ('42422','18','','10248','CPU steal time','system.cpu.steal[ssCpuRawSteal.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB The amount of "stolen" CPU from this virtual machine by the hypervisor for other tasks, such as running another virtual machine.','0','30d','0','','45483','','','','','200','1','0','','','0','0','0','0','0','0','0','f0e15f783b434cc49c97681e15def25c','0','2','0'), ('42423','18','','10248','CPU system time','system.cpu.system[ssCpuRawSystem.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB Time the CPU has spent running the kernel and its processes.','0','30d','0','','45483','','','','','200','1','0','','','0','0','0','0','0','0','0','9f063ab6a217459e9e1ae95cc77071ff','0','2','0'), ('42424','18','','10248','CPU user time','system.cpu.user[ssCpuRawUser.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB Time the CPU has spent running users'' processes that are not niced.','0','30d','0','','45483','','','','','200','1','0','','','0','0','0','0','0','0','0','e07c1afe5f8c4db0bae364933df3e571','0','2','0'), ('42425','18','','10248','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45484','','','','','200','1','0','','','0','0','0','0','0','0','0','772ca56d1df84c33847fb3de9a2fa048','0','2','0'), ('42426','18','','10248','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45484','','','','','200','1','0','','','0','0','0','0','0','0','0','23d5c37a8a66495c81babc76085dd0d0','0','2','0'), ('42427','18','','10248','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45484','','','','','200','1','0','','','0','0','0','0','0','0','0','229e36fe673e43c0a69f942c086fea97','0','2','0'), ('42428','18','','10248','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45484','','','','','200','1','0','','','0','0','0','0','0','0','0','bbaad86407a349ed81b3b329e0754cdb','0','2','0'), ('42429','18','','10248','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45484','','','','','200','1','0','','','0','0','0','0','0','0','0','184b63fa8f184915a8bd365afebae00f','0','2','0'), ('42430','18','','10248','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45484','','','','','200','1','0','','','0','0','0','0','0','0','0','ad64f09ccd88467f811499ef17096c0a','0','2','0'), ('42431','18','','10248','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45484','','','','','200','1','0','','','0','0','0','0','0','0','0','54b1b171187b44c2a0b8dfadf06f9b00','0','2','0'), ('42432','18','','10248','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'914','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45484','','','','','200','1','0','','','0','0','0','0','0','0','0','4aaabfdfeeac4c779255fd8b5a4550f4','0','2','0'), ('42433','18','','10248','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'915','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45484','','','','','200','1','0','','','0','0','0','0','0','0','0','ce0a2b8f62ff4591b5e3bc8b348bf946','0','2','0'), ('42434','18','','10248','Interface {#IFNAME}({#IFALIAS}): Duplex status','net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'913','','','0','','','','','2',NULL,'MIB: EtherLike-MIB The current mode of operation of the MAC entity. `unknown` indicates that the current duplex mode could not be determined. Management control of the duplex mode is accomplished through the MAU MIB. When an interface does not support autonegotiation or when autonegotiation is not enabled, the duplex mode is controlled using `ifMauDefaultType`. When autonegotiation is supported and enabled, duplex mode is controlled using `ifMauAutoNegAdvertisedBits`. In either case, the currently operating duplex mode in reflected both in this object and in `ifMauType`. Note that this object provides redundant information with `ifMauType`. Normally, redundant objects are discouraged. However, in this instance, it allows a management application to determine the duplex status of an interface without having to know every possible value of `ifMauType`. This was felt to be sufficiently valuable to justify the redundancy. Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.','0','30d','0','','45485','','','','','200','1','0','','','0','0','0','0','0','0','0','cc55ecff67a044b3a6cd17136757fc32','0','2','0'), ('42435','18','','10248','{#DEVNAME}: Disk read rate','vfs.dev.read.rate[diskIOReads.{#SNMPINDEX}]','0','31d','365d','0','0','','!r/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-DISKIO-MIB The number of read accesses from this device since boot.','0','30d','0','','45482','','','','','200','1','0','','','0','0','0','0','0','0','0','b136adad88154c31a123b46522b41191','0','2','0'), ('42436','18','','10248','{#DEVNAME}: Disk utilization','vfs.dev.util[diskIOLA1.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-DISKIO-MIB The 1 minute average load of disk (%)','0','30d','0','','45482','','','','','200','1','0','','','0','0','0','0','0','0','0','b1fb6665c96b4c9f999b3803d45eea3e','0','2','0'), ('42437','18','','10248','{#DEVNAME}: Disk write rate','vfs.dev.write.rate[diskIOWrites.{#SNMPINDEX}]','0','31d','365d','0','0','','!w/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-DISKIO-MIB The number of write accesses from this device since boot.','0','30d','0','','45482','','','','','200','1','0','','','0','0','0','0','0','0','0','147ad615fd544ab39494ce829da0bb14','0','2','0'), ('42486','18','','10081','Free swap space in %','system.swap.pfree','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The free space of the swap volume/file expressed in %.','0','30d','0','','42478','','','','','200','1','0','','','0','0','0','0','0','0','0','9c7e3c843a3045df81dddc5d18de267c','0','2','0'), ('42487','18','','10081','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of installed network interfaces.','0','7d','1','','42458','','','','','200','1','0','','','0','0','0','0','0','0','0','ba19d6566fdb4a668d4363769d1fee01','0','2','0'), ('42490','18','','10081','Mounted filesystem discovery','vfs.fs.dependent.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of filesystems of different types.','0','7d','1','','44453','','','','','200','1','0','','','0','0','0','0','0','0','0','c22b79b52f9148728095bda2796a753e','0','2','0'), ('42509','18','','10081','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed["{#IFGUID}"]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Estimated bandwidth of the network interface if any.','0','30d','0','','42458','','','','','200','1','0','','','0','0','0','0','0','0','0','0445b842d1ce4c7f9fd5716c78a079c4','0','2','0'), ('42510','18','','10081','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status["{#IFGUID}"]','0','31d','0','0','3','','','','',NULL,'925','','','0','','','','','2',NULL,'The operational status of the network interface.','0','30d','0','','42458','','','','','200','1','0','','','0','0','0','0','0','0','0','c495bffb7e244e5caf5dc013d839b758','0','2','0'), ('42511','18','','10081','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type["{#IFGUID}"]','0','31d','0','0','3','','','','',NULL,'924','','','0','','','','','2',NULL,'The type of the network interface.','0','30d','0','','42458','','','','','200','1','0','','','0','0','0','0','0','0','0','11ce3d38745a49f58f713fcef1a913c5','0','2','0'), ('42542','18','','10351','Free swap space in %','system.swap.pfree','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The free space of the swap volume/file expressed in %.','0','30d','0','','42534','','','','','200','1','0','','','0','0','0','0','0','0','0','e91b5f08c6b745bca975797ea4abd02a','0','2','0'), ('42543','18','','10351','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of installed network interfaces.','0','7d','1','','42514','','','','','200','1','0','','','0','0','0','0','0','0','0','c05c8d1be5614ffab1688cc92db32f12','0','2','0'), ('42546','18','','10351','Mounted filesystem discovery','vfs.fs.dependent.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of filesystems of different types.','0','7d','1','','44455','','','','','200','1','0','','','0','0','0','0','0','0','0','4fbbdf83609e48e68011f6c394c652f9','0','2','0'), ('42565','18','','10351','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed["{#IFGUID}"]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Estimated bandwidth of the network interface if any.','0','30d','0','','42514','','','','','200','1','0','','','0','0','0','0','0','0','0','820ca9809e6f46af8aa3f41195f246d9','0','2','0'), ('42566','18','','10351','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status["{#IFGUID}"]','0','31d','0','0','3','','','','',NULL,'930','','','0','','','','','2',NULL,'The operational status of the network interface.','0','30d','0','','42514','','','','','200','1','0','','','0','0','0','0','0','0','0','929917f16ecd4369a5535fe8178248d6','0','2','0'), ('42567','18','','10351','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type["{#IFGUID}"]','0','31d','0','0','3','','','','',NULL,'929','','','0','','','','','2',NULL,'The type of the network interface.','0','30d','0','','42514','','','','','200','1','0','','','0','0','0','0','0','0','0','1e513ffd8cd24a39a04b2140dce65b62','0','2','0'), ('42580','18','','10249','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','45486','','','','','200','1','0','','','0','0','0','0','0','0','0','3c6bc0ce8a4c4452a3bd0c0c67a6995c','0','2','0'), ('42581','18','','10249','Mounted filesystem discovery','vfs.fs.discovery[snmp]','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','1','','45487','','','','','200','1','0','','','0','0','0','0','0','0','0','b2c0a897e22d438f8b1bbff44e493b13','0','2','0'), ('42582','18','','10249','Memory discovery','vm.memory.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with memory filter','0','7d','1','','45487','','','','','200','1','0','','','0','0','0','0','0','0','0','23bb0567e4194546a09da96ded5182dd','0','2','0'), ('42583','18','','10249','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45486','','','','','200','1','0','','','0','0','0','0','0','0','0','9208bd833e4044f395ac14c8213885de','0','2','0'), ('42584','18','','10249','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45486','','','','','200','1','0','','','0','0','0','0','0','0','0','758aca2642c146ddad89ed9934077533','0','2','0'), ('42585','18','','10249','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface,including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and another times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45486','','','','','200','1','0','','','0','0','0','0','0','0','0','713b5c5067174b90b686737606616664','0','2','0'), ('42586','18','','10249','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45486','','','','','200','1','0','','','0','0','0','0','0','0','0','2d76edd04b2c4d35a15fc04749edfedc','0','2','0'), ('42587','18','','10249','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45486','','','','','200','1','0','','','0','0','0','0','0','0','0','40fe302325ff452997f34cb05d517c59','0','2','0'), ('42588','18','','10249','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','45486','','','','','200','1','0','','','0','0','0','0','0','0','0','48652cf9a87142d39df11617f354df36','0','2','0'), ('42589','18','','10249','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','45486','','','','','200','1','0','','','0','0','0','0','0','0','0','389b55d85fcc49219a055d0db005c715','0','2','0'), ('42590','18','','10249','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'934','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','45486','','','','','200','1','0','','','0','0','0','0','0','0','0','71e55a8fd22c443e8a39a44c4c22433b','0','2','0'), ('42591','18','','10249','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'935','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','45486','','','','','200','1','0','','','0','0','0','0','0','0','0','ad62c98e35b24d0082c07ea4543963ad','0','2','0'), ('42676','18','','10399','Scheduler: Pending commands','tikv.scheduler_contex','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of pending commands. The scheduler receives commands from clients, executes them against the MVCC layer storage engine.','0','30d','0','','34412','','','','','200','1','0','','','0','0','0','0','0','0','0','33a1b2f676134cf1b81771fbaf152f59','0','2','0'), ('42677','18','','10399','Coprocessor: Scan keys, rate','tikv.coprocessor_scan_keys_sum.rate','0','31d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of scan keys observed per request per second.','0','30d','0','','34412','','','','','200','1','0','','','0','0','0','0','0','0','0','bfcec759c0894cf89c5267fc6b3862d7','0','2','0'), ('42700','18','','10510','CronJob count','kube.cronjob.count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of cronjobs.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','6f22e81d69d04eeca88a7992463556a7','0','2','0'), ('42701','18','','10510','Endpoint count','kube.endpoint.count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of endpoints.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','93126582e30e45b8a70f6e45402e2f54','0','2','0'), ('42702','18','','10510','Job count','kube.job.count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of jobs (generated by cronjob + job).','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','c08df3a8ae044ae9a331db33bcca7db3','0','2','0'), ('42703','18','','10510','CronJob discovery','kube.cronjob.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','0','1','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','9bb7532f14dd42c6a532636126e507f9','0','2','0'), ('42704','18','','10510','Job discovery','kube.job.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','0','1','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','bc6897c5abe246fdb1ba72c1e71cdb81','0','2','0'), ('42705','18','','10510','PodDisruptionBudget discovery','kube.pdb.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','0','1','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','a7bf79185bab4eb8891e5a154424a96d','0','2','0'), ('42706','18','','10510','Namespace [{#NAMESPACE}] CronJob [{#NAME}]: Completion failed','kube.cronjob.completion.failed[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of jobs the execution of which has failed.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','fd1afcc4646146588fd3c22cf2f7e040','0','2','0'), ('42707','18','','10510','Namespace [{#NAMESPACE}] CronJob [{#NAME}]: Completion succeeded','kube.cronjob.completion.succeeded[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of jobs the execution of which has been completed.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','5ba1dfd55c784f8597575b38399d5e36','0','2','0'), ('42708','18','','10510','Namespace [{#NAMESPACE}] CronJob [{#NAME}]: Last schedule','kube.cronjob.last_schedule_time[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'LastScheduleTime keeps information of when was the last time the job was successfully scheduled.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','7ae683d5a1ed4f84a09b38863bd263a7','0','2','0'), ('42709','18','','10510','Namespace [{#NAMESPACE}] CronJob [{#NAME}]: Next schedule','kube.cronjob.next_schedule_time[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Next time the cronjob should be scheduled. The time after lastScheduleTime or after the cron job''s creation time if it''s never been scheduled. Use this to determine if the job is delayed.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','8ad7e96b34604a4991698288a7af8027','0','2','0'), ('42710','18','','10510','Namespace [{#NAMESPACE}] CronJob [{#NAME}]: Suspend','kube.cronjob.spec_suspend[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','3','','','','',NULL,'951','','','0','','','','','2',NULL,'Suspend flag tells the controller to suspend subsequent executions.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','329e8166d1ec42cca7508580efaad366','0','2','0'), ('42711','18','','10510','Namespace [{#NAMESPACE}] CronJob [{#NAME}]: Active','kube.cronjob.status_active[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Active holds pointers to currently running jobs.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','ce13a921915a4232971f2e29102cac64','0','2','0'), ('42712','18','','10510','Namespace [{#NAMESPACE}] CronJob [{#NAME}]: Failed','kube.cronjob.status_failed[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of pods which reached the Failed phase and the reason for failure.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','26993138717242079583b1c17d0e8dc8','0','2','0'), ('42713','18','','10510','Namespace [{#NAMESPACE}] CronJob [{#NAME}]: Succeeded','kube.cronjob.status_succeeded[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of pods which reached the Succeeded phase.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','9e5adc642c3a40ab80654542903cd314','0','2','0'), ('42714','18','','10510','Namespace [{#NAMESPACE}] Job [{#NAME}]: Completion failed','kube.job.completion.failed[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of jobs the execution of which has failed.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','b1fad48e204e4bf9a03c79baa0f58963','0','2','0'), ('42715','18','','10510','Namespace [{#NAMESPACE}] Job [{#NAME}]: Completion succeeded','kube.job.completion.succeeded[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of jobs the execution of which has been completed.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','51d3653b2c7543dba04339ded6ff65dd','0','2','0'), ('42716','18','','10510','Namespace [{#NAMESPACE}] Job [{#NAME}]: Failed','kube.job.status_failed[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of pods which reached the Failed phase and the reason for failure.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','f175e0bd1f6b41a2b62e69df40b3fc07','0','2','0'), ('42717','18','','10510','Namespace [{#NAMESPACE}] Job [{#NAME}]: Succeeded','kube.job.status_succeeded[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of pods which reached the Succeeded phase.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','b909868367d5481d982d33d5248167ab','0','2','0'), ('42718','18','','10510','Node [{#NAME}]: Ephemeral storage allocatable','kube.node.ephemeral_storage_allocatable[{#NAME}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The allocatable ephemeral storage of a node that is available for scheduling.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','49440553854441f39ecbcf7052d83e51','0','2','0'), ('42719','18','','10510','Node [{#NAME}]: Ephemeral storage capacity','kube.node.ephemeral_storage_capacity[{#NAME}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The ephemeral storage capacity of a node.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','2831a4b1bc1549198203f3e894f07a1f','0','2','0'), ('42720','18','','10510','Namespace [{#NAMESPACE}] PodDisruptionBudget [{#NAME}]: Disruptions allowed','kube.pdb.disruptions_allowed[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of pod disruptions that are allowed.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','3eef1fb3311e429fa3043c9e4d88335f','0','2','0'), ('42721','18','','10510','Namespace [{#NAMESPACE}] PodDisruptionBudget [{#NAME}]: Pods desired','kube.pdb.pods_desired[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Minimum desired number of healthy pods.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','a303e07be68c40bdb7d996696af53c98','0','2','0'), ('42722','18','','10510','Namespace [{#NAMESPACE}] PodDisruptionBudget [{#NAME}]: Pods healthy','kube.pdb.pods_healthy[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current number of healthy pods.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','f2a82d6de52446f594a6554137508604','0','2','0'), ('42723','18','','10510','Namespace [{#NAMESPACE}] PodDisruptionBudget [{#NAME}]: Pods total','kube.pdb.pods_total[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of pods counted by this disruption budget.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','2c15033188ab4062a432f30c3320677f','0','2','0'), ('42725','18','','10516','Get data collection errors','openweathermap.get.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Errors from get data requests by script item.','0','30d','0','','42724','','','','','200','1','0','','','0','0','0','0','0','0','0','2eb0520627084f2596743f53552c3744','0','2','0'), ('42726','18','','10516','Locations discovery','openweathermap.locations.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Weather metrics discovery by location.','0','0d','0','','42724','','','','','200','1','0','','','0','0','0','0','0','0','0','8d3f96f4a23c43a2a28b75f078cc1ff2','0','2','0'), ('42727','18','','10516','[{#LOCATION}, {#COUNTRY}]: Data','openweathermap.location.data[{#ID}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'JSON with result of OpenWeatherMap API request by location.','0','30d','0','','42724','','','','','200','1','0','','','0','0','0','0','0','0','0','51f79e4be0734ad5b548617eb535fae4','0','2','0'), ('42741','18','','10517','Cluster discovery','proxmox.cluster.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','','42740','','','','','200','1','0','','','0','0','0','0','0','0','0','e01bb8d7614144ba82e31d91618dee31','0','2','0'), ('42742','18','','10517','LXC discovery','proxmox.lxc.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','','42739','','','','','200','1','0','','','0','0','0','0','0','0','0','78a4018328954d408e415aa0ce7ce41c','0','2','0'), ('42743','18','','10517','Node discovery','proxmox.node.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','','42739','','','','','200','1','0','','','0','0','0','0','0','0','0','ba55f69b12ee46faa319203483d8008f','0','2','0'), ('42744','18','','10517','QEMU discovery','proxmox.qemu.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','','42739','','','','','200','1','0','','','0','0','0','0','0','0','0','31aa7234aa294fce8f4735a9216ddf31','0','2','0'), ('42745','18','','10517','Storage discovery','proxmox.storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','','42739','','','','','200','1','0','','','0','0','0','0','0','0','0','61faca6204854bc4af8dc6c5c63ddcd1','0','2','0'), ('42751','18','','10517','Cluster [{#RESOURCE.NAME}]: Quorate','proxmox.cluster.quorate[{#RESOURCE.NAME}]','0','31d','365d','0','3','','','','',NULL,'953','','','0','','','','','2',NULL,'Indicates if there is a majority of nodes online to make decisions.','0','30d','0','','42740','','','','','200','1','0','','','0','0','0','0','0','0','0','4b5d9197cfa042ceac1415a524912b63','0','2','0'), ('42752','18','','10517','LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: CPU usage','proxmox.lxc.cpu[{#LXC.ID}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'CPU load.','0','30d','0','','42746','','','','','200','1','0','','','0','0','0','0','0','0','0','dda211b14d7b4c419196a98ee5153307','0','2','0'), ('42753','18','','10517','LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Disk read, rate','proxmox.lxc.diskread[{#LXC.ID}]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Disk read.','0','30d','0','','42746','','','','','200','1','0','','','0','0','0','0','0','0','0','8bc1bb78bf1340f3ab8d9f888d081e23','0','2','0'), ('42754','18','','10517','LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Disk write, rate','proxmox.lxc.diskwrite[{#LXC.ID}]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Disk write.','0','30d','0','','42746','','','','','200','1','0','','','0','0','0','0','0','0','0','cee89da9e4a842228b30cc708e4d7745','0','2','0'), ('42755','18','','10517','LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Memory total','proxmox.lxc.maxmem[{#LXC.ID}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total memory expressed in bytes.','0','30d','0','','42746','','','','','200','1','0','','','0','0','0','0','0','0','0','686490c2a07f4a859bc7f1d56056cc5e','0','2','0'), ('42756','18','','10517','LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Memory usage','proxmox.lxc.mem[{#LXC.ID}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Used memory in bytes.','0','30d','0','','42746','','','','','200','1','0','','','0','0','0','0','0','0','0','a60eaec875d347bd9247a174ba84f21e','0','2','0'), ('42757','18','','10517','LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Incoming data, rate','proxmox.lxc.netin[{#LXC.ID}]','0','31d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Incoming data rate.','0','30d','0','','42746','','','','','200','1','0','','','0','0','0','0','0','0','0','b19b6b5895d64ed9b4942f955e66dc81','0','2','0'), ('42758','18','','10517','LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Outgoing data, rate','proxmox.lxc.netout[{#LXC.ID}]','0','31d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Outgoing data rate.','0','30d','0','','42746','','','','','200','1','0','','','0','0','0','0','0','0','0','5ac20ae95e664a3cb62b58cde4f67471','0','2','0'), ('42759','18','','10517','LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Uptime','proxmox.lxc.uptime[{#LXC.ID}]','0','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','2',NULL,'The system uptime expressed in the following format: "N days, hh:mm:ss".','0','30d','0','','42746','','','','','200','1','0','','','0','0','0','0','0','0','0','bd213f6de4db4e1e84894b80acffa330','0','2','0'), ('42760','18','','10517','LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Status','proxmox.lxc.vmstatus[{#LXC.ID}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Status of LXC container.','0','30d','0','','42746','','','','','200','1','0','','','0','0','0','0','0','0','0','535f521800564b0f83211740aabbc137','0','2','0'), ('42761','18','','10517','Node [{#NODE.NAME}]: CPU, usage','proxmox.node.cpu[{#NODE.NAME}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'CPU usage.','0','30d','0','','42749','','','','','200','1','0','','','0','0','0','0','0','0','0','c5e50056abda49f190e21f46f8cf7379','0','2','0'), ('42762','18','','10517','Node [{#NODE.NAME}]: Root filesystem, total','proxmox.node.roottotal[{#NODE.NAME}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Root filesystem total.','0','30d','0','','42749','','','','','200','1','0','','','0','0','0','0','0','0','0','067954795121482093dd7967c6ca6ede','0','2','0'), ('42763','18','','10517','Node [{#NODE.NAME}]: Uptime','proxmox.node.uptime[{#NODE.NAME}]','0','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','2',NULL,'The system uptime expressed in the following format: "N days, hh:mm:ss".','0','30d','0','','42748','','','','','200','1','0','','','0','0','0','0','0','0','0','fc7f5811d338484bba5393a8a5718f67','0','2','0'), ('42764','18','','10517','Node [{#NODE.NAME}]: Time zone','proxmox.node.timezone[{#NODE.NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Time zone.','0','30d','0','','42747','','','','','200','1','0','','','0','0','0','0','0','0','0','42d7b4ff315a4cfa9af1aed5e141661d','0','2','0'), ('42765','18','','10517','Node [{#NODE.NAME}]: Swap filesystem, used','proxmox.node.swapused[{#NODE.NAME}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Swap used.','0','30d','0','','42749','','','','','200','1','0','','','0','0','0','0','0','0','0','5f42addb719a412da6fd448d38d1a7d0','0','2','0'), ('42766','18','','10517','Node [{#NODE.NAME}]: Swap filesystem, total','proxmox.node.swaptotal[{#NODE.NAME}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Swap total.','0','30d','0','','42749','','','','','200','1','0','','','0','0','0','0','0','0','0','0dce6e5edd6d4ddab69932796b4301c0','0','2','0'), ('42767','18','','10517','Node [{#NODE.NAME}]: Root filesystem, used','proxmox.node.rootused[{#NODE.NAME}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Root filesystem usage.','0','30d','0','','42749','','','','','200','1','0','','','0','0','0','0','0','0','0','2beadf6ba8b04a21b008ddf63bd2fa6b','0','2','0'), ('42768','18','','10517','Node [{#NODE.NAME}]: PVE version','proxmox.node.pveversion[{#NODE.NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'PVE manager version.','0','30d','0','','42748','','','','','200','1','0','','','0','0','0','0','0','0','0','f220249168d947b6b8b99c068af35650','0','2','0'), ('42769','18','','10517','Node [{#NODE.NAME}]: CPU, iowait','proxmox.node.iowait[{#NODE.NAME}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'CPU iowait time.','0','30d','0','','42749','','','','','200','1','0','','','0','0','0','0','0','0','0','78e02931cf5c4c93b9c0092bd407a897','0','2','0'), ('42770','18','','10517','Node [{#NODE.NAME}]: Status','proxmox.node.online[{#NODE.NAME}]','0','31d','365d','0','3','','','','',NULL,'955','','','0','','','','','2',NULL,'Indicates if the node is online or offline.','0','30d','0','','42740','','','','','200','1','0','','','0','0','0','0','0','0','0','b8c3ff9544d5490286c668d3320d2ee0','0','2','0'), ('42771','18','','10517','Node [{#NODE.NAME}]: Outgoing data, rate','proxmox.node.netout[{#NODE.NAME}]','0','31d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Network usage.','0','30d','0','','42749','','','','','200','1','0','','','0','0','0','0','0','0','0','3048c6c023bc4fb58a8710d7306052fb','0','2','0'), ('42772','18','','10517','Node [{#NODE.NAME}]: Incoming data, rate','proxmox.node.netin[{#NODE.NAME}]','0','31d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Network usage.','0','30d','0','','42749','','','','','200','1','0','','','0','0','0','0','0','0','0','892f3b733a25475cb8fe30eeca3750f2','0','2','0'), ('42773','18','','10517','Node [{#NODE.NAME}]: Memory, used','proxmox.node.memused[{#NODE.NAME}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Memory usage.','0','30d','0','','42749','','','','','200','1','0','','','0','0','0','0','0','0','0','04a2028e5d6640958da01c372f4407ec','0','2','0'), ('42774','18','','10517','Node [{#NODE.NAME}]: Memory, total','proxmox.node.memtotal[{#NODE.NAME}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Memory total.','0','30d','0','','42749','','','','','200','1','0','','','0','0','0','0','0','0','0','0bb66733d10843438a090bf39eae92e2','0','2','0'), ('42775','18','','10517','Node [{#NODE.NAME}]: Localtime','proxmox.node.localtime[{#NODE.NAME}]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Seconds since 1970-01-01 00:00:00 (local time).','0','30d','0','','42747','','','','','200','1','0','','','0','0','0','0','0','0','0','59aab7121b1f4ff0b98a38cc75f39fb3','0','2','0'), ('42776','18','','10517','Node [{#NODE.NAME}]: CPU, loadavg','proxmox.node.loadavg[{#NODE.NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'CPU average load.','0','30d','0','','42749','','','','','200','1','0','','','0','0','0','0','0','0','0','155bcbfd12f54614ab55d29e0fb5c2aa','0','2','0'), ('42777','18','','10517','Node [{#NODE.NAME}]: Kernel version','proxmox.node.kernelversion[{#NODE.NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Kernel version info.','0','30d','0','','42748','','','','','200','1','0','','','0','0','0','0','0','0','0','c31b9d3f9f4d4f6fa5611038bb9a8401','0','2','0'), ('42778','18','','10517','Node [{#NODE.NAME}]: Time','proxmox.node.utctime[{#NODE.NAME}]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Seconds since 1970-01-01 00:00:00 UTC.','0','30d','0','','42747','','','','','200','1','0','','','0','0','0','0','0','0','0','384d479a04f044b192a74743f0a459b4','0','2','0'), ('42779','18','','10517','VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: CPU usage','proxmox.qemu.cpu[{#QEMU.ID}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'CPU load.','0','30d','0','','42750','','','','','200','1','0','','','0','0','0','0','0','0','0','196bf027d77742ea8960e350d9ea579e','0','2','0'), ('42780','18','','10517','VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Disk read, rate','proxmox.qemu.diskread[{#QEMU.ID}]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Disk read.','0','30d','0','','42750','','','','','200','1','0','','','0','0','0','0','0','0','0','ffd3c0a6e9764d9ea0091d2fcf0234e2','0','2','0'), ('42781','18','','10517','VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Disk write, rate','proxmox.qemu.diskwrite[{#QEMU.ID}]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Disk write.','0','30d','0','','42750','','','','','200','1','0','','','0','0','0','0','0','0','0','7c02301822414849b8dc38ae26c74a7b','0','2','0'), ('42782','18','','10517','VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Memory total','proxmox.qemu.maxmem[{#QEMU.ID}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total memory expressed in bytes.','0','30d','0','','42750','','','','','200','1','0','','','0','0','0','0','0','0','0','3c46d7e2f07049fc8f749157cf5627e9','0','2','0'), ('42783','18','','10517','VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Memory usage','proxmox.qemu.mem[{#QEMU.ID}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Used memory in bytes.','0','30d','0','','42750','','','','','200','1','0','','','0','0','0','0','0','0','0','9f4402482af549288f32f108ab801950','0','2','0'), ('42784','18','','10517','VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Incoming data, rate','proxmox.qemu.netin[{#QEMU.ID}]','0','31d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Incoming data rate.','0','30d','0','','42750','','','','','200','1','0','','','0','0','0','0','0','0','0','c3cb5366103743c2823f522482e9f2e4','0','2','0'), ('42785','18','','10517','VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Outgoing data, rate','proxmox.qemu.netout[{#QEMU.ID}]','0','31d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Outgoing data rate.','0','30d','0','','42750','','','','','200','1','0','','','0','0','0','0','0','0','0','2cd398f1b9814551a7fad7e2bc66f6af','0','2','0'), ('42786','18','','10517','VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Uptime','proxmox.qemu.uptime[{#QEMU.ID}]','0','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','2',NULL,'The system uptime expressed in the following format: "N days, hh:mm:ss".','0','30d','0','','42750','','','','','200','1','0','','','0','0','0','0','0','0','0','77ba70e0ce6f486585f870d3b57033ba','0','2','0'), ('42787','18','','10517','VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Status','proxmox.qemu.vmstatus[{#QEMU.ID}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Status of Virtual Machine.','0','30d','0','','42750','','','','','200','1','0','','','0','0','0','0','0','0','0','9b6de7e610c64950a3b477b9dc666751','0','2','0'), ('42788','18','','10517','Storage [{#NODE.NAME}/{#STORAGE.NAME}]: Content','proxmox.node.content[{#NODE.NAME},{#STORAGE.NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Allowed storage content types.','0','30d','0','','42739','','','','','200','1','0','','','0','0','0','0','0','0','0','c803813b43f24390b7e0d79fda824a54','0','2','0'), ('42789','18','','10517','Storage [{#NODE.NAME}/{#STORAGE.NAME}]: Used','proxmox.node.disk[{#NODE.NAME},{#STORAGE.NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Used disk space in bytes.','0','30d','0','','42739','','','','','200','1','0','','','0','0','0','0','0','0','0','0edb3506231648c9820103a337486d63','0','2','0'), ('42790','18','','10517','Storage [{#NODE.NAME}/{#STORAGE.NAME}]: Size','proxmox.node.maxdisk[{#NODE.NAME},{#STORAGE.NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Storage size in bytes.','0','30d','0','','42739','','','','','200','1','0','','','0','0','0','0','0','0','0','ced02242ff46454f9c49f3d44bf0de9a','0','2','0'), ('42791','18','','10517','Storage [{#NODE.NAME}/{#STORAGE.NAME}]: Type','proxmox.node.plugintype[{#NODE.NAME},{#STORAGE.NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'More specific type, if available.','0','30d','0','','42739','','','','','200','1','0','','','0','0','0','0','0','0','0','4360858342254aecba7a77eb315cc2bb','0','2','0'), ('42793','18','','10518','L2ARC write rate','truenas.zfs.l2arc.write','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB Write rate from L2 cache in bytes per second.','0','30d','0','','49931','','','','','200','1','0','','','0','0','0','0','0','0','0','1e04b61c5b0242b095c41495f9f28b57','0','2','0'), ('42794','18','','10518','ARC misses','truenas.zfs.arc.misses','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB Total amount of cache misses in the ARC per second.','0','30d','0','','49931','','','','','200','1','0','','','0','0','0','0','0','0','0','51b0901f89ca49f18b5af0c6325190ad','0','2','0'), ('42795','18','','10518','ARC target size of MRU','truenas.zfs.arc.p','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB ARC target size of MRU in bytes.','0','30d','0','','49931','','','','','200','1','0','','','0','0','0','0','0','0','0','5b00055c79174a65af5168b47fb4dbd1','0','2','0'), ('42796','18','','10518','ARC size','truenas.zfs.arc.size','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB ARC size in bytes.','0','30d','0','','49931','','','','','200','1','0','','','0','0','0','0','0','0','0','a677b4991bc94e5b929bcf9f6a0c08ee','0','2','0'), ('42797','18','','10518','L2ARC hits','truenas.zfs.l2arc.hits','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB Hits to the L2 cache per second.','0','30d','0','','49931','','','','','200','1','0','','','0','0','0','0','0','0','0','2b2ca373849045969f6dbcd411a7e688','0','2','0'), ('42798','18','','10518','L2ARC misses','truenas.zfs.l2arc.misses','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB Misses to the L2 cache per second.','0','30d','0','','49931','','','','','200','1','0','','','0','0','0','0','0','0','0','ff6827a36cc9451f801dcf5a433378de','0','2','0'), ('42799','18','','10518','L2ARC read rate','truenas.zfs.l2arc.read','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB Read rate from L2 cache in bytes per second.','0','30d','0','','49931','','','','','200','1','0','','','0','0','0','0','0','0','0','d3408357df26465794eeb6d6706ee05a','0','2','0'), ('42800','18','','10518','L2ARC size','truenas.zfs.l2arc.size','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB L2ARC size in bytes.','0','30d','0','','49931','','','','','200','1','0','','','0','0','0','0','0','0','0','ab95d192720b4f5fa897fed6f1aa40e2','0','2','0'), ('42801','18','','10518','ZIL operations 1 second','truenas.zfs.zil.ops1','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB The ops column parsed from the command zilstat 1 1.','0','30d','0','','49934','','','','','200','1','0','','','0','0','0','0','0','0','0','a504d960680346ad863c5f2117301200','0','2','0'), ('42802','18','','10518','ARC metadata size','truenas.zfs.arc.meta','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB ARC metadata size used in bytes.','0','30d','0','','49931','','','','','200','1','0','','','0','0','0','0','0','0','0','db3cee6cf685446ca880e3ba0c7a51f1','0','2','0'), ('42803','18','','10518','ZIL operations 5 seconds','truenas.zfs.zil.ops5','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB The ops column parsed from the command zilstat 5 1.','0','30d','0','','49934','','','','','200','1','0','','','0','0','0','0','0','0','0','d82112c728704383b873289f0b8bbce6','0','2','0'), ('42804','18','','10518','ZIL operations 10 seconds','truenas.zfs.zil.ops10','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB The ops column parsed from the command zilstat 10 1.','0','30d','0','','49934','','','','','200','1','0','','','0','0','0','0','0','0','0','598dda71f21a410a82ba5b96e1564166','0','2','0'), ('42811','18','','10518','ARC cache miss ratio','truenas.zfs.arc.miss.ratio','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB ARC cache miss ration percentage.','0','30d','0','','49931','','','','','200','1','0','','','0','0','0','0','0','0','0','d39e5b7524054b5c8121a5b67506fc52','0','2','0'), ('42812','18','','10518','ARC hits','truenas.zfs.arc.hits','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB Total amount of cache hits in the ARC per second.','0','30d','0','','49931','','','','','200','1','0','','','0','0','0','0','0','0','0','f4c6c12561944975999b59c30744b375','0','2','0'), ('42818','18','','10518','Load average (1m avg)','system.cpu.load.avg1','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB The 1 minute load averages.','0','30d','0','','49923','','','','','200','1','0','','','0','0','0','0','0','0','0','4283476959894b78956973be95d33e72','0','2','0'), ('42819','18','','10518','Load average (5m avg)','system.cpu.load.avg5','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB The 5 minutes load averages.','0','30d','0','','49923','','','','','200','1','0','','','0','0','0','0','0','0','0','a7885b68d6644a2ab5875e742a7bc06f','0','2','0'), ('42820','18','','10518','Load average (15m avg)','system.cpu.load.avg15','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB The 15 minutes load averages.','0','30d','0','','49923','','','','','200','1','0','','','0','0','0','0','0','0','0','5263b1258bd24219a3f1a7d11012b316','0','2','0'), ('42821','18','','10518','Number of CPUs','system.cpu.num','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB Count the number of CPU cores by counting number of cores discovered in hrProcessorTable using LLD.','0','30d','0','','49924','','','','','200','1','0','','','0','0','0','0','0','0','0','94366f840edc4686a230682d623f1f41','0','2','0'), ('42824','18','','10518','ARC cache hit ratio','truenas.zfs.arc.hit.ratio','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB ARC cache hit ration percentage.','0','30d','0','','49931','','','','','200','1','0','','','0','0','0','0','0','0','0','e3c72ceecec2478685e4bd5983e48c12','0','2','0'), ('42831','18','','10518','ARC target size of cache','truenas.zfs.arc.c','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB ARC target size of cache in bytes.','0','30d','0','','49931','','','','','200','1','0','','','0','0','0','0','0','0','0','2eaaabc61df64756a35aec95650abf7c','0','2','0'), ('42832','18','','10518','ARC data size','truenas.zfs.arc.data','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: FREENAS-MIB ARC data size used in bytes.','0','30d','0','','49931','','','','','200','1','0','','','0','0','0','0','0','0','0','a4ae886ac205413c85df7c527a9aadb3','0','2','0'), ('42835','18','','10518','Network interfaces discovery','net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','49921','','','','','200','1','0','','','0','0','0','0','0','0','0','a78d7feb497e46c9870344e569b01a60','0','2','0'), ('42836','18','','10518','Disks temperature discovery','truenas.disk.temp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Disks temperature discovery from FREENAS-MIB.','0','7d','0','','49930','','','','','200','1','0','','','0','0','0','0','0','0','0','b3906a308e4c4631a96a4aa188d22c74','0','2','0'), ('42837','18','','10518','ZFS datasets discovery','truenas.zfs.dataset.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'ZFS datasets discovery from FREENAS-MIB.','0','7d','1','','49932','','','','','200','1','0','','','0','0','0','0','0','0','0','f3d22d302e274b12927afd9453bb787a','0','2','0'), ('42838','18','','10518','ZFS pools discovery','truenas.zfs.pools.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'ZFS pools discovery from FREENAS-MIB.','0','7d','0','','49933','','','','','200','1','0','','','0','0','0','0','0','0','0','edde9729f6304a9b83d31a1c62356fdd','0','2','0'), ('42839','18','','10518','ZFS volumes discovery','truenas.zfs.zvols.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'ZFS volumes discovery from FREENAS-MIB.','0','7d','0','','49935','','','','','200','1','0','','','0','0','0','0','0','0','0','dfeb1df58c024b27a0a65206d896975c','0','2','0'), ('42840','18','','10518','Block devices discovery','vfs.dev.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Block devices are discovered from UCD-DISKIO-MIB::diskIOTable (http://net-snmp.sourceforge.net/docs/mibs/ucdDiskIOMIB.html#diskIOTable).','0','7d','1','','49936','','','','','200','1','0','','','0','0','0','0','0','0','0','1f992aa87f9e4074a8cba928b2017a03','0','2','0'), ('42841','18','','10518','CPU idle time','system.cpu.idle[{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB The time the CPU has spent doing nothing.','0','30d','0','','49924','','','','','200','1','0','','','0','0','0','0','0','0','0','03eaea043f2b4aee9ccc562ae5390656','0','2','0'), ('42842','18','','10518','CPU interrupt time','system.cpu.interrupt[{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB The amount of time the CPU has been servicing hardware interrupts.','0','30d','0','','49924','','','','','200','1','0','','','0','0','0','0','0','0','0','378d399d09bd4197b20f575f023a9423','0','2','0'), ('42843','18','','10518','CPU iowait time','system.cpu.iowait[{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB The amount of time the CPU has been waiting for I/O to complete.','0','30d','0','','49924','','','','','200','1','0','','','0','0','0','0','0','0','0','bd17c78973cf482a8916645847a9814f','0','2','0'), ('42844','18','','10518','CPU nice time','system.cpu.nice[{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB The time the CPU has spent running users'' processes that have been niced.','0','30d','0','','49924','','','','','200','1','0','','','0','0','0','0','0','0','0','e25d8fe2e3b24fff86fe2d91e9b4f16e','0','2','0'), ('42845','18','','10518','CPU system time','system.cpu.system[{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB The time the CPU has spent running the kernel and its processes.','0','30d','0','','49924','','','','','200','1','0','','','0','0','0','0','0','0','0','6782830d2a25423fb0db137d66b2f2dd','0','2','0'), ('42846','18','','10518','CPU user time','system.cpu.user[{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB The time the CPU has spent running users'' processes that are not niced.','0','30d','0','','49924','','','','','200','1','0','','','0','0','0','0','0','0','0','d38eaa9cf17a4778b0b6dfea897e3e6e','0','2','0'), ('42856','18','','10518','Disk [{#DISK_NAME}]'': Temperature','truenas.disk.temp[{#DISK_NAME}]','0','31d','365d','0','0','','C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FREENAS-MIB The temperature of this HDD in mC.','0','30d','0','','49930','','','','','200','1','0','','','0','0','0','0','0','0','0','7de2508fff174bd78b4ea0424a67fbf9','0','2','0'), ('42857','18','','10518','Dataset [{#DATASET_NAME}]: Available space','truenas.dataset.avail[{#DATASET_NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FREENAS-MIB The available size of the dataset in bytes.','0','30d','0','','49932','','','','','200','1','0','','','0','0','0','0','0','0','0','3c3eab95b8e74e608fe3b7abab98c76b','0','2','0'), ('42859','18','','10518','Dataset [{#DATASET_NAME}]: Total space','truenas.dataset.size.total[{#DATASET_NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FREENAS-MIB The size of the dataset in bytes.','0','30d','0','','49932','','','','','200','1','0','','','0','0','0','0','0','0','0','5ead1929891a4152b581f9adf35ce4ce','0','2','0'), ('42860','18','','10518','Dataset [{#DATASET_NAME}]: Used space','truenas.dataset.used[{#DATASET_NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FREENAS-MIB The used size of the dataset in bytes.','0','30d','0','','49932','','','','','200','1','0','','','0','0','0','0','0','0','0','0e24fceacd64430abed01294ffd28104','0','2','0'), ('42861','18','','10518','Pool [{#POOLNAME}]: Available space','truenas.zpool.avail[{#POOLNAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FREENAS-MIB The available size of the storage pool in bytes.','0','30d','0','','49933','','','','','200','1','0','','','0','0','0','0','0','0','0','2727c62d279f46b0938b1ef6c3b70fe5','0','2','0'), ('42862','18','','10518','Pool [{#POOLNAME}]: Health','truenas.zpool.health[{#POOLNAME}]','0','31d','365d','0','3','','','','',NULL,'956','','','0','','','','','2',NULL,'MIB: FREENAS-MIB The current health of the containing pool, as reported by zpool status.','0','30d','0','','49933','','','','','200','1','0','','','0','0','0','0','0','0','0','382c3a50845f4d96a44dc22704768d41','0','2','0'), ('42864','18','','10518','Pool [{#POOLNAME}]: Read rate','truenas.zpool.read.bytes[{#POOLNAME}]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FREENAS-MIB The bandwidth of all read operations (including metadata), expressed as units per second (averaged since system booted).','0','30d','0','','49933','','','','','200','1','0','','','0','0','0','0','0','0','0','b5766173631a47ee8c58e24f5c0523b5','0','2','0'), ('42865','18','','10518','Pool [{#POOLNAME}]: Read operations rate','truenas.zpool.read.ops[{#POOLNAME}]','0','31d','365d','0','0','','IOPS','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FREENAS-MIB The number of read I/O operations sent to the pool or device, including metadata requests (averaged since system booted).','0','30d','0','','49933','','','','','200','1','0','','','0','0','0','0','0','0','0','f32abc8617c6466d8a92219def967bd8','0','2','0'), ('42866','18','','10518','Pool [{#POOLNAME}]: Total space','truenas.zpool.size.total[{#POOLNAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FREENAS-MIB The size of the storage pool in bytes.','0','30d','0','','49933','','','','','200','1','0','','','0','0','0','0','0','0','0','567422ecdcec49faac94540f64a05e3a','0','2','0'), ('42867','18','','10518','Pool [{#POOLNAME}]: Used space','truenas.zpool.used[{#POOLNAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FREENAS-MIB The used size of the storage pool in bytes.','0','30d','0','','49933','','','','','200','1','0','','','0','0','0','0','0','0','0','fe5cf78cdcdd4386982f5cd204d99283','0','2','0'), ('42868','18','','10518','Pool [{#POOLNAME}]: Write rate','truenas.zpool.write.bytes[{#POOLNAME}]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FREENAS-MIB The bandwidth of all write operations, expressed as units per second (averaged since system booted).','0','30d','0','','49933','','','','','200','1','0','','','0','0','0','0','0','0','0','d11e981ec16c4da0aee6842bdddfe2fd','0','2','0'), ('42869','18','','10518','Pool [{#POOLNAME}]: Write operations rate','truenas.zpool.write.ops[{#POOLNAME}]','0','31d','365d','0','0','','IOPS','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FREENAS-MIB The number of write I/O operations sent to the pool or device (averaged since system booted).','0','30d','0','','49933','','','','','200','1','0','','','0','0','0','0','0','0','0','e4bfc421633a433ca1b895fa4f5cf96e','0','2','0'), ('42870','18','','10518','TrueNAS CORE: ZFS volume [{#ZVOL_NAME}]: Available space','truenas.zvol.avail[{#ZVOL_NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FREENAS-MIB The available of the ZFS volume in bytes.','0','30d','0','','49935','','','','','200','1','0','','','0','0','0','0','0','0','0','26967102b3a946c997fbbdcc5c2d78bc','0','2','0'), ('42871','18','','10518','TrueNAS CORE: ZFS volume [{#ZVOL_NAME}]: Total space','truenas.zvol.size.total[{#ZVOL_NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FREENAS-MIB The size of the ZFS volume in bytes.','0','30d','0','','49935','','','','','200','1','0','','','0','0','0','0','0','0','0','cc01786aff804d6998b039525214ddbd','0','2','0'), ('42872','18','','10518','TrueNAS CORE: ZFS volume [{#ZVOL_NAME}]: Used space','truenas.zvol.used[{#ZVOL_NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FREENAS-MIB The used size of the ZFS volume in bytes.','0','30d','0','','49935','','','','','200','1','0','','','0','0','0','0','0','0','0','a722d904125d46729c29ad4283d0b1b0','0','2','0'), ('42873','18','','10518','TrueNAS CORE: [{#DEVNAME}]: Disk read rate','vfs.dev.read.rate[{#SNMPINDEX}]','0','31d','365d','0','0','','!r/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-DISKIO-MIB The number of read accesses from this device since boot.','0','30d','0','','49936','','','','','200','1','0','','','0','0','0','0','0','0','0','ba220c4106cb4bff9dd60c92aee7919a','0','2','0'), ('42874','18','','10518','TrueNAS CORE: [{#DEVNAME}]: Disk utilization','vfs.dev.util[{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-DISKIO-MIB The 1 minute average load of disk (%).','0','30d','0','','49936','','','','','200','1','0','','','0','0','0','0','0','0','0','0dd2f25f1d2a45f2ae265d8550fe7d45','0','2','0'), ('42875','18','','10518','TrueNAS CORE: [{#DEVNAME}]: Disk write rate','vfs.dev.write.rate[{#SNMPINDEX}]','0','31d','365d','0','0','','!w/s','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-DISKIO-MIB The number of write accesses from this device since boot.','0','30d','0','','49936','','','','','200','1','0','','','0','0','0','0','0','0','0','1549def5cf23434b8d0a19ac951eb2ff','0','2','0'), ('42878','18','','10175','Healthcheck discovery','vmware.hv.healthcheck.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'VMware Rollup Health State sensor discovery.','0','7d','0','','42877','','','','','200','1','0','','','0','0','0','0','0','0','0','deb31adf69634837839e2d8f87167f28','0','2','0'), ('42879','18','','10175','Health state rollup','vmware.hv.sensor.health.state[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,'53','','','0','','','','','2',NULL,'The host''s Rollup Health State sensor value. One of the following: - Gray: Unknown; - Green: OK; - Yellow: It might have a problem; - Red: It has a problem.','0','30d','0','','42877','','','','','200','1','0','','','0','0','0','0','0','0','0','fabb7524dd454daa942266e5565ce40e','0','2','0'), ('42934','18','','10519','SQL: Bytes received, rate','cockroachdb.sql.bytes.received.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Total amount of incoming SQL client network traffic in bytes per second.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','dafcd171e5eb4a56ac6537cb4ae15071','0','2','0'), ('42935','18','','10519','SQL: Bytes sent, rate','cockroachdb.sql.bytes.sent.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Total amount of outgoing SQL client network traffic in bytes per second.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','2795f530365d4f80866926f49a3841df','0','2','0'), ('42936','18','','10519','SQL: Schema changes, rate','cockroachdb.sql.schema_changes.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of SQL DDL statements successfully executed per second.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','655018f6a2b7480a883c08ffd8c3c5e7','0','2','0'), ('42937','18','','10519','SQL sessions: Open','cockroachdb.sql.sessions','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of open SQL sessions.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','79ed7dc3660a44cc8f30822e992154b6','0','2','0'), ('42938','18','','10519','SQL statements: Active','cockroachdb.sql.statements.active','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of SQL statements currently active.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','d4164a9763b34976ba8f89a49e9aaf25','0','2','0'), ('42939','18','','10519','SQL statements: Contention, rate','cockroachdb.sql.statements.contention.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of SQL statements that experienced contention per second.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','bcae7af870ed48dc919be3dbd63df1ba','0','2','0'), ('42940','18','','10519','SQL statements: DELETE, rate','cockroachdb.sql.statements.delete.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A moving average of the number of DELETE statements successfully executed per second.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','80b08a576e334963a17e37a5c2305214','0','2','0'), ('42941','18','','10519','SQL statements: Denials, rate','cockroachdb.sql.statements.denials.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of statements denied per second by a feature flag.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','68532afbcda644f1928203c013335f2a','0','2','0'), ('42942','18','','10519','SQL statements: Errors, rate','cockroachdb.sql.statements.errors.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of statements which returned a planning or runtime error per second.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','dc93958dabdc439f8a7ad9c5a12fddcd','0','2','0'), ('42943','18','','10519','SQL statements: Executed, rate','cockroachdb.sql.statements.executed.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of SQL queries executed per second.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','3c9fb90492e44789ba9a899d03546b6d','0','2','0'), ('42944','18','','10519','SQL statements: Active flows distributed, rate','cockroachdb.sql.statements.flows.active.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of distributed SQL flows currently active per second.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','ae83868ea1194089a65b9c3bfb81ef27','0','2','0'), ('42945','18','','10519','Network: Bytes sent, rate','cockroachdb.network.bytes.sent.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Bytes sent per second on all network interfaces since this process started.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','9b04fac1a84e40aa833366fda679a3e3','0','2','0'), ('42946','18','','10519','SQL statements: INSERT, rate','cockroachdb.sql.statements.insert.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A moving average of the number of INSERT statements successfully executed per second.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','b9c72429c3264119af27e3b4d1c7486a','0','2','0'), ('42947','18','','10519','SQL statements: SELECT, rate','cockroachdb.sql.statements.select.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A moving average of the number of SELECT statements successfully executed per second.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','d6fc464f4e784569911880f52020d08d','0','2','0'), ('42948','18','','10519','SQL statements: UPDATE, rate','cockroachdb.sql.statements.update.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A moving average of the number of UPDATE statements successfully executed per second.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','8832cd69551a4ad084c283fb076a17b6','0','2','0'), ('42949','18','','10519','SQL transactions: Aborted, rate','cockroachdb.sql.transactions.aborted.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of SQL transaction abort errors per second.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','6e2f06b2b71f447aae06940b205e22bf','0','2','0'), ('42950','18','','10519','SQL transactions: Committed, rate','cockroachdb.sql.transactions.committed.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of SQL transaction COMMIT statements successfully executed per second.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','d32b3f22158f4091926ebf9746439da3','0','2','0'), ('42951','18','','10519','SQL transactions: Initiated, rate','cockroachdb.sql.transactions.initiated.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of SQL transaction BEGIN statements successfully executed per second.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','ca529d30b36e4bf591c8b5e313f9bbc0','0','2','0'), ('42952','18','','10519','SQL transactions: Open','cockroachdb.sql.transactions.open','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of currently open SQL transactions.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','6490aac99d654eebae14cedb935c8d9f','0','2','0'), ('42953','18','','10519','SQL transactions: Rolled back, rate','cockroachdb.sql.transactions.rollbacks.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of SQL transaction ROLLBACK statements successfully executed per second.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','07274667c22d4e52b50ead17c864ae36','0','2','0'), ('42954','18','','10519','Time series: Sample errors, rate','cockroachdb.ts.samples.errors.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of errors encountered while attempting to write metrics to disk, per second.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','5b96333392ac4e678204d048b4940135','0','2','0'), ('42955','18','','10519','Time series: Samples written, rate','cockroachdb.ts.samples.written.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of successfully written metric samples per second.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','444fbc4df9c64e92bd3f41022539a940','0','2','0'), ('42956','18','','10519','Uptime','cockroachdb.uptime','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Process uptime.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','b200e1f665ad425394e631b2844a1fdb','0','2','0'), ('42957','18','','10519','Version','cockroachdb.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Build information.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','d588fc919b364889abd98537dfc80575','0','2','0'), ('42958','18','','10519','Slow requests: DistSender RPCs','cockroachdb.slow_requests.rpc','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of RPCs stuck or retrying for a long time.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','717ef9bbc00c46a09b28811910c4163a','0','2','0'), ('42959','18','','10519','CA certificate expiration date','cockroachdb.cert.expire_date.ca','0','31d','0','0','0','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'CA certificate expires at that date.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','90f7e9b6d22e4c30990f06f0320056d3','0','2','0'), ('42960','18','','10519','Network: Bytes received, rate','cockroachdb.network.bytes.received.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Bytes received per second on all network interfaces since this process started.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','aee505389afb4fb0a4a7d8b8dd58fe76','0','2','0'), ('42961','18','','10519','Disk: Writes, rate','cockroachdb.disk.write.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Bytes written to all disks per second since this process started.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','327d62286a5c40d49690b89b12350c31','0','2','0'), ('42962','18','','10519','Clock offset','cockroachdb.clock.offset','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Mean clock offset of the node against the rest of the cluster.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','156d0c66c25a4938b87bd4527580cfd4','0','2','0'), ('42963','18','','10519','CPU: System time','cockroachdb.cpu.system_time','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'System CPU time.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','7b6ef56741c14222bef3d40af3bb6b44','0','2','0'), ('42964','18','','10519','CPU: User time','cockroachdb.cpu.user_time','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'User CPU time.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','42008c218c0b4049a4e94daf40754dd7','0','2','0'), ('42965','18','','10519','CPU: Utilization','cockroachdb.cpu.util','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The CPU utilization expressed in %.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','b13dceebd399415f868c3f1ce68ee46a','0','2','0'), ('42966','18','','10519','File descriptors: Limit','cockroachdb.descriptors.limit','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Open file descriptors soft limit of the process.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','e186df881d6e40ac966e23341b2dbd36','0','2','0'), ('42967','18','','10519','File descriptors: Open','cockroachdb.descriptors.open','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of open file descriptors.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','e21fd3d697294d0f93b504ba57e7552e','0','2','0'), ('42968','18','','10519','Disk: IOPS in progress, rate','cockroachdb.disk.iops.in_progress.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of disk IO operations currently in progress on this host.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','4525de4ee6994c34af6ea3444295bd58','0','2','0'), ('42969','18','','10519','Disk: Read IOPS, rate','cockroachdb.disk.iops.read.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of disk read operations per second across all disks since this process started.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','1240655e000643c98694a5efbb0582d0','0','2','0'), ('42970','18','','10519','Disk: Write IOPS, rate','cockroachdb.disk.iops.write.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Disk write operations per second across all disks since this process started.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','cfa381c7317d479ea5e24b0a3ac9de6a','0','2','0'), ('42971','18','','10519','Disk: Reads, rate','cockroachdb.disk.read.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Bytes read from all disks per second since this process started','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','e226b55a125d4360b853690dbd0d9b63','0','2','0'), ('42972','18','','10519','GC: Pause time','cockroachdb.gc.pause_time','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of processor time used by Go''s garbage collector across all nodes. During garbage collection, application code execution is paused.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','8092c82f81824a168328a438d85a0a93','0','2','0'), ('42973','18','','10519','Node certificate expiration date','cockroachdb.cert.expire_date.node','0','31d','0','0','0','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'Node certificate expires at that date.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','0328c188d5954ae48dcc0649c9c01f52','0','2','0'), ('42974','18','','10519','GC: Runs, rate','cockroachdb.gc.runs.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of times that Go''s garbage collector was invoked per second across all nodes.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','72298c0f0a00460e85562d13e3baf4b0','0','2','0'), ('42975','18','','10519','Go: Goroutines count','cockroachdb.go.goroutines.count','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Current number of Goroutines. This count should rise and fall based on load.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','a36bcb9217054c1db2e67c8533842d01','0','2','0'), ('42976','18','','10519','Liveness heartbeats, rate','cockroachdb.heartbeaths.success.rate','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of successful node liveness heartbeats per second from this node.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','9dcb023ceacb4023897af11b96592d6b','0','2','0'), ('42977','18','','10519','KV transactions: Aborted, rate','cockroachdb.kv.transactions.aborted.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of aborted KV transactions per second.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','1a01d2c75d934f489e171a3a147a2078','0','2','0'), ('42978','18','','10519','KV transactions: Committed, rate','cockroachdb.kv.transactions.committed.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of KV transactions (including 1PC) committed per second.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','be9c377ac5a64579a3b849bbd28e4dc7','0','2','0'), ('42979','18','','10519','Live nodes count','cockroachdb.live_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of live nodes in the cluster (will be 0 if this node is not itself live).','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','872eaa89c9e34c358f60b845316a22c0','0','2','0'), ('42980','18','','10519','Memory: Allocated by Cgo','cockroachdb.memory.cgo.allocated','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Current bytes of memory allocated by the C layer.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','5a8bf48e85b845bf83346491ccf5cfac','0','2','0'), ('42981','18','','10519','Memory: Managed by Cgo','cockroachdb.memory.cgo.managed','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total bytes of memory managed by the C layer.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','07dc780b07ee4a34abd9bc658416f507','0','2','0'), ('42982','18','','10519','Memory: Allocated by Go','cockroachdb.memory.go.allocated','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Current bytes of memory allocated by the Go layer.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','af45fdeea2ff4b7ba2d488b704966f16','0','2','0'), ('42983','18','','10519','Memory: Managed by Go','cockroachdb.memory.go.managed','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total bytes of memory managed by the Go layer.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','74669e09ce86441d877de519c86b3f83','0','2','0'), ('42984','18','','10519','Memory: Allocated by SQL','cockroachdb.memory.sql','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Current SQL statement memory usage for root.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','14524b3f8c5f4d509d15063af19c9569','0','2','0'), ('42985','18','','10519','Memory: Total usage','cockroachdb.memory.total','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Resident set size (RSS) of memory in use by the node.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','c10b66dd872145528540e90ad3198b81','0','2','0'), ('42986','18','','10519','Storage metrics discovery','cockroachdb.store.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover per store metrics.','0','7d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','c201ddd6c35c4d67a05b9a99952f54f2','0','2','0'), ('42989','18','','10519','Storage [{#STORE}]: Queue processing failures: Consistency, rate','cockroachdb.queue.processing_failures.consistency.[{#STORE},rate]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of replicas which failed processing in the consistency checker queue per second.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','a12e4937d2c44eacada535774e74653a','0','2','0'), ('42990','18','','10519','Storage [{#STORE}]: RocksDB cache hits, rate','cockroachdb.rocksdb.cache.hits.[{#STORE},rate]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of block cache hits per second.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','eb6202583eb24ac28b60a8d5f24c1ccf','0','2','0'), ('42991','18','','10519','Storage [{#STORE}]: Capacity total','cockroachdb.storage.capacity.[{#STORE},total]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total storage capacity. This value may be explicitly set using --store. If a store size has not been set, this metric displays the actual disk capacity.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','35ce626304fb4d39bd382161cb052346','0','2','0'), ('42992','18','','10519','Storage [{#STORE}]: Capacity available','cockroachdb.storage.capacity.[{#STORE},available]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Available storage capacity.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','01c02c5a9c174cd2b958634da07824e5','0','2','0'), ('42993','18','','10519','Storage [{#STORE}]: Bytes: System','cockroachdb.storage.bytes.[{#STORE},system]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of physical bytes stored in system key-value pairs.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','58d6f4d3c9ff41cab05697e7c59cf8e2','0','2','0'), ('42994','18','','10519','Storage [{#STORE}]: Bytes: Logical','cockroachdb.storage.bytes.[{#STORE},logical]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of logical bytes stored in key-value pairs on this node. This includes historical and deleted data.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','232970f8bf12412e8a6bd96978a7ad5f','0','2','0'), ('42995','18','','10519','Storage [{#STORE}]: Bytes: Live','cockroachdb.storage.bytes.[{#STORE},live]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of logical bytes stored in live key-value pairs on this node. Live data excludes historical and deleted data.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','bbf0f281f3aa4964829ed2213db5dfc7','0','2','0'), ('42996','18','','10519','Storage [{#STORE}]: Slow requests: Raft proposals','cockroachdb.slow_requests.[{#STORE},raft_proposals]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of requests that have been stuck for a long time in raft.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','11c9e0dea4ec48a69ff3961aa6d1f910','0','2','0'), ('42997','18','','10519','Storage [{#STORE}]: Slow requests: Lease acquisitions','cockroachdb.slow_requests.[{#STORE},lease_acquisitions]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of requests that have been stuck for a long time acquiring a lease.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','0cc9c428567a47c6adb41d137965a362','0','2','0'), ('42998','18','','10519','Storage [{#STORE}]: Slow requests: Latch acquisitions','cockroachdb.slow_requests.[{#STORE},latch_acquisitions]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of requests that have been stuck for a long time acquiring latches.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','6e826e48da5844468ba8d14ae0f1acc4','0','2','0'), ('42999','18','','10519','Storage [{#STORE}]: RocksDB SSTables','cockroachdb.rocksdb.[{#STORE},sstables]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of SSTables in use.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','edc1e5548d9e4d629b44b067ffc666b9','0','2','0'), ('43000','18','','10519','Storage [{#STORE}]: RocksDB read amplification','cockroachdb.rocksdb.[{#STORE},read_amp]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The average number of real read operations executed per logical read operation.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','f4175e8984d14ad89c0bd1fce5b37372','0','2','0'), ('43001','18','','10519','Storage [{#STORE}]: RocksDB cache misses, rate','cockroachdb.rocksdb.cache.misses.[{#STORE},rate]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of block cache misses per second.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','278d4cbcaa844f1281dd029da54300e4','0','2','0'), ('43002','18','','10519','Storage [{#STORE}]: Replication: Lease holders','cockroachdb.replication.[{#STORE},lease_holders]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of lease holders.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','87f949f768b54ba1b648a04d86f4c4da','0','2','0'), ('43003','18','','10519','Storage [{#STORE}]: Queue processing failures: GC, rate','cockroachdb.queue.processing_failures.gc.[{#STORE},rate]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of replicas which failed processing in the GC queue per second.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','5d328a66855d4cbba099713befd4d240','0','2','0'), ('43004','18','','10519','Storage [{#STORE}]: Replication: Replicas quiesced','cockroachdb.replication.replicas.[{#STORE},quiesced]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of quiesced replicas.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','089c354ee1c547808bbf8655d16d1a06','0','2','0'), ('43005','18','','10519','Storage [{#STORE}]: Replication: Replicas','cockroachdb.replication.replicas.[{#STORE},count]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of replicas.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','191985a08c554160bc371f5fca638336','0','2','0'), ('43006','18','','10519','Storage [{#STORE}]: Rebalancing: Average writes, rate','cockroachdb.rebalancing.writes.average.[{#STORE},rate]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of keys written (i.e. applied by raft) per second to the store, averaged over a large time period as used in rebalancing decisions.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','b5c10de1a784458f9df54813cc10c32b','0','2','0'), ('43007','18','','10519','Storage [{#STORE}]: Rebalancing: Average queries, rate','cockroachdb.rebalancing.queries.average.[{#STORE},rate]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of kv-level requests received per second by the store, averaged over a large time period as used in rebalancing decisions.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','d0b45b5a00d64c39bce2117fdb35d373','0','2','0'), ('43008','18','','10519','Storage [{#STORE}]: Ranges underreplicated','cockroachdb.ranges.[{#STORE},underreplicated]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of ranges with fewer live replicas than the replication target.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','beea6adf48df454fa6628d44455ca52f','0','2','0'), ('43009','18','','10519','Storage [{#STORE}]: Ranges unavailable','cockroachdb.ranges.[{#STORE},unavailable]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of ranges with fewer live replicas than needed for quorum.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','63e70400900a4b5caa8e89a18c83ebd7','0','2','0'), ('43010','18','','10519','Storage [{#STORE}]: Ranges count','cockroachdb.ranges.[{#STORE},count]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of ranges.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','4ed616f13c9d4669879aa8bdad35a06a','0','2','0'), ('43011','18','','10519','Storage [{#STORE}]: Queue processing failures: Time series maintenance, rate','cockroachdb.queue.processing_failures.tsmaintenance.[{#STORE},rate]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of replicas which failed processing in the time series maintenance queue per second.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','ceb47605bc364044993e59430f37a07c','0','2','0'), ('43012','18','','10519','Storage [{#STORE}]: Queue processing failures: Split, rate','cockroachdb.queue.processing_failures.split.[{#STORE},rate]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of replicas which failed processing in the split queue per second.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','40e94d8e2cc54c7b9c0a6c4d7c8dc308','0','2','0'), ('43013','18','','10519','Storage [{#STORE}]: Queue processing failures: Replicate, rate','cockroachdb.queue.processing_failures.replicate.[{#STORE},rate]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of replicas which failed processing in the replicate queue per second.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','604df422fb084fba8480758e30fc81f3','0','2','0'), ('43014','18','','10519','Storage [{#STORE}]: Queue processing failures: Raft snapshot, rate','cockroachdb.queue.processing_failures.raftsnapshot.[{#STORE},rate]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of replicas which failed processing in the Raft repair queue per second.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','2369ad2e98c84d2a83b64f3b1fce826e','0','2','0'), ('43015','18','','10519','Storage [{#STORE}]: Queue processing failures: Raft log, rate','cockroachdb.queue.processing_failures.raftlog.[{#STORE},rate]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of replicas which failed processing in the Raft log queue per second.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','eabbf198e158428aaf9b15f491dd0895','0','2','0'), ('43016','18','','10519','Storage [{#STORE}]: Queue processing failures: Replica GC, rate','cockroachdb.queue.processing_failures.gc_replica.[{#STORE},rate]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of replicas which failed processing in the replica GC queue per second.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','b71cc221443b42888d64dea02e75d3f9','0','2','0'), ('43017','18','','10519','Storage [{#STORE}]: Capacity used','cockroachdb.storage.capacity.[{#STORE},used]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Disk space in use by CockroachDB data on this node. This excludes the Cockroach binary, operating system, and other system files.','0','30d','0','','42933','','','','','200','1','0','','','0','0','0','0','0','0','0','b6db680d16bc41408d13f7275c603fca','0','2','0'), ('43019','18','','10520','Clusters, active','envoy.cluster_manager.active_clusters','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of currently active (warmed) clusters.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','c5c90eeb0c424cc8ade0b795f2c1bb45','0','2','0'), ('43020','18','','10520','Listeners, draining','envoy.listener_manager.total_listeners_draining','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of currently draining listeners.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','f01f1236cd1a4661b67633836a61537e','0','2','0'), ('43021','18','','10520','Connections, total','envoy.server.total_connections','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total connections of both new and old Envoy processes.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','8b2f3702af20404aa1c75498098aff02','0','2','0'), ('43022','18','','10520','Server state','envoy.server.state','0','31d','365d','0','3','','','','',NULL,'966','','','0','','','','','0',NULL,'State of the server. Live - (default) Server is live and serving traffic. Draining - Server is draining listeners in response to external health checks failing. Pre initializing - Server has not yet completed cluster manager initialization. Initializing - Server is running the cluster manager initialization callbacks (e.g., RDS).','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','701e69bdd408408c8b516e130ed31725','0','2','0'), ('43023','18','','10520','Connections, parent','envoy.server.parent_connections','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total connections of the old Envoy process on hot restart.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','a13b35ef1e9f4697953a935239b146d9','0','2','0'), ('43024','18','','10520','Memory physical size','envoy.server.memory_physical_size','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Current estimate of total bytes of the physical memory. New Envoy process physical memory size on hot restart.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','a1842c747e5b44a39746037b3f844f4f','0','2','0'), ('43025','18','','10520','Memory heap size','envoy.server.memory_heap_size','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Current reserved heap size in bytes. New Envoy process heap size on hot restart.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','05b2fe80bbc54b58b19166c921ba244a','0','2','0'), ('43026','18','','10520','Memory allocated','envoy.server.memory_allocated','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Current amount of allocated memory in bytes. Total of both new and old Envoy processes on hot restart.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','4b50974e6b7444c8a47da589239247a9','0','2','0'), ('43027','18','','10520','Server live','envoy.server.live','0','31d','365d','0','3','','','','',NULL,'965','','','0','','','','','0',NULL,'1 if the server is not currently draining, 0 otherwise.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','d8fc1e89c2e14f5e86ea1378fee22a0b','0','2','0'), ('43028','18','','10520','Certificate expiration, day before','envoy.server.days_until_first_cert_expiring','0','31d','365d','0','3','','!Days','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of days until the next certificate being managed will expire.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','91cbea325a634d8a8fc256782a7e004d','0','2','0'), ('43029','18','','10520','Server concurrency','envoy.server.concurrency','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of worker threads.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','b8e3b2a5614e4460abe10be443641621','0','2','0'), ('43030','18','','10520','Listener manager, initialized','envoy.listener_manager.workers_started','0','31d','365d','0','3','','','','',NULL,'964','','','0','','','','','0',NULL,'A boolean (1 if started and 0 otherwise) that indicates whether listeners have been initialized on workers.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','feeab802ed9a44559ded48ea67aba23e','0','2','0'), ('43031','18','','10520','Listener, warming','envoy.listener_manager.total_listeners_warming','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of currently warming listeners.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','a1a01a7df5364a098fdf96b9de20558d','0','2','0'), ('43032','18','','10520','Listeners, stopped','envoy.listener_manager.listener_stopped.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total listeners stopped per second.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','b217c7aaa415495089d079a2f81ead2d','0','2','0'), ('43033','18','','10520','Listeners, active','envoy.listener_manager.total_listeners_active','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of currently active listeners.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','7ba3e4be89514d53b8ebaad8e9ba58d0','0','2','0'), ('43034','18','','10520','Clusters, added rate','envoy.cluster_manager.cluster_added.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total clusters added (either via static config or CDS) per second.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','f994b20217444723b6a1aad5b9a07cd0','0','2','0'), ('43035','18','','10520','Listeners, create success','envoy.listener_manager.listener_create_success.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total listener objects successfully added to workers per second.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','c036b55d5aea45f9b0e9c44ea279e2ed','0','2','0'), ('43036','18','','10520','Listeners, create failure','envoy.listener_manager.listener_create_failure.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total failed listener object additions to workers per second.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','a259d191fcce48458a9f671a1a2dd6aa','0','2','0'), ('43037','18','','10520','Listeners, added','envoy.listener_manager.listener_added.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total listeners added (either via static config or LDS) per second.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','579f47037749460e974433ef6cfe3202','0','2','0'), ('43038','18','','10520','Filesystem, write failed rate','envoy.filesystem.write_failed.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of times an error occurred during a file write operation per second.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','ae48575f37494e0e9ccfa2c390f5bf68','0','2','0'), ('43039','18','','10520','Filesystem, write completed rate','envoy.filesystem.write_completed.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of times a file was written per second.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','2f400ee513c841f6b7a4fa48834f4a9c','0','2','0'), ('43040','18','','10520','Filesystem, reopen failed rate','envoy.filesystem.reopen_failed.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of times a file was failed to be opened per second.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','b3c050dd60d44c0599bc44c9a21621d9','0','2','0'), ('43041','18','','10520','Filesystem, flushed by timer rate','envoy.filesystem.flushed_by_timer.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of times internal flush buffers are written to a file due to flush timeout per second.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','cc10052300624df3bf869279dd5e7b49','0','2','0'), ('43042','18','','10520','Clusters, warming','envoy.cluster_manager.warming_clusters','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of currently warming (not active) clusters.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','9c3503fc553a409ab897f287b882f055','0','2','0'), ('43043','18','','10520','Clusters, updates rate','envoy.cluster_manager.cluster_updated.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total cluster updates per second.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','9bb29e3b322e40c3aaa14f2e0911cc68','0','2','0'), ('43044','18','','10520','Clusters, removed rate','envoy.cluster_manager.cluster_removed.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total clusters removed (via CDS) per second.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','5c3475b88a044d0bb779a3ee455d2618','0','2','0'), ('43045','18','','10520','Clusters, modified rate','envoy.cluster_manager.cluster_modified.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total clusters modified (via CDS) per second.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','0286c5deba924ce8b79e3b1f6c9e033c','0','2','0'), ('43046','18','','10520','Uptime','envoy.server.uptime','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Current server uptime in seconds.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','ee3c3a89aed34257999e6106fddbc8a4','0','2','0'), ('43047','18','','10520','Cluster metrics discovery','envoy.lld.cluster','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','e5e43b5959744fdd94f103df8d33f635','0','2','0'), ('43048','18','','10520','HTTP metrics discovery','envoy.lld.http','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','ea40e02e3b4e40ea989612949a1a8bef','0','2','0'), ('43049','18','','10520','Listeners metrics discovery','envoy.lld.listeners','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','953541f62c8c461795c2ebed7f4f52cf','0','2','0'), ('43051','18','','10520','Cluster ["{#CLUSTER_NAME}"]: Membership, degraded','envoy.cluster.membership_degraded["{#CLUSTER_NAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current cluster degraded total.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','6040df76d67048aaa4217dc14a2db3ed','0','2','0'), ('43052','18','','10520','Cluster ["{#CLUSTER_NAME}"]: Requests 4xx, rate','envoy.cluster.upstream_rq_4x.rate["{#CLUSTER_NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Aggregate HTTP response codes per second.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','65e956c129e2436896f1a3d46a1f9090','0','2','0'), ('43053','18','','10520','Cluster ["{#CLUSTER_NAME}"]: Requests timeout, rate','envoy.cluster.upstream_rq_timeout.rate["{#CLUSTER_NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current cluster requests that timed out waiting for a response per second.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','2489b20b43044020a3ace164f6049af6','0','2','0'), ('43054','18','','10520','Cluster ["{#CLUSTER_NAME}"]: Requests pending','envoy.cluster.upstream_rq_pending_active["{#CLUSTER_NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total active requests pending a connection pool connection.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','267c3d01aa614dbdb0f0dcbe3ab2e11b','0','2','0'), ('43055','18','','10520','Cluster ["{#CLUSTER_NAME}"]: Requests completed, rate','envoy.cluster.upstream_rq_completed.rate["{#CLUSTER_NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total upstream requests completed per second.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','bd1c6766c9e047f1a40f6b1f22f00623','0','2','0'), ('43056','18','','10520','Cluster ["{#CLUSTER_NAME}"]: Requests active','envoy.cluster.upstream_rq_active["{#CLUSTER_NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total active requests.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','a06b43daf8e2493eb61d27cea8baba79','0','2','0'), ('43057','18','','10520','Cluster ["{#CLUSTER_NAME}"]: Requests 5xx, rate','envoy.cluster.upstream_rq_5x.rate["{#CLUSTER_NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Aggregate HTTP response codes per second.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','a85872e72792460e97d8fd322e0919a1','0','2','0'), ('43058','18','','10520','Cluster ["{#CLUSTER_NAME}"]: Requests 2xx, rate','envoy.cluster.upstream_rq_2x.rate["{#CLUSTER_NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Aggregate HTTP response codes per second.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','f6724ac1954e4c71a95a01a441d46e5d','0','2','0'), ('43059','18','','10520','Cluster ["{#CLUSTER_NAME}"]: Requests 3xx, rate','envoy.cluster.upstream_rq_3x.rate["{#CLUSTER_NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Aggregate HTTP response codes per second.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','248d268966ed4999916d77b340f82fa1','0','2','0'), ('43060','18','','10520','Cluster ["{#CLUSTER_NAME}"]: Membership, healthy','envoy.cluster.membership_healthy["{#CLUSTER_NAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current cluster healthy total (inclusive of both health checking and outlier detection).','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','0368ecc40bc54a70bae3c81509bad062','0','2','0'), ('43061','18','','10520','Cluster ["{#CLUSTER_NAME}"]: Upstream bytes out, rate','envoy.cluster.upstream_cx_tx_bytes_total.rate["{#CLUSTER_NAME}"]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Total sent connection bytes per second.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','d024405b571946939fa20d495ef6c7d8','0','2','0'), ('43062','18','','10520','Cluster ["{#CLUSTER_NAME}"]: Connections, total','envoy.cluster.upstream_cx_total["{#CLUSTER_NAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current cluster total connections.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','d180e76ccb3a456b8100c4669173c0f7','0','2','0'), ('43063','18','','10520','Cluster ["{#CLUSTER_NAME}"]: Upstream bytes in, rate','envoy.cluster.upstream_cx_rx_bytes_total.rate["{#CLUSTER_NAME}"]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Total received connection bytes per second.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','c7106f0670764bc297920a5e62768c55','0','2','0'), ('43064','18','','10520','Cluster ["{#CLUSTER_NAME}"]: Connections, active','envoy.cluster.upstream_cx_active["{#CLUSTER_NAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current cluster total active connections.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','b5c802ae97a0449cbbb7f43a2510fd56','0','2','0'), ('43065','18','','10520','Cluster ["{#CLUSTER_NAME}"]: Membership, total','envoy.cluster.membership_total["{#CLUSTER_NAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current cluster membership total.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','a4cd74b439e3483499e30ffefdb36976','0','2','0'), ('43066','18','','10520','Cluster ["{#CLUSTER_NAME}"]: Requests total, rate','envoy.cluster.upstream_rq_total.rate["{#CLUSTER_NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current cluster request total per second.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','b807e34a608042419d69eae46aa4338c','0','2','0'), ('43067','18','','10520','HTTP ["{#CONN_MANAGER}"]: Connections, active','envoy.http.downstream_cx_active["{#CONN_MANAGER}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total active connections.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','f4106316b7a44555bd2fcb98ed291a23','0','2','0'), ('43068','18','','10520','HTTP ["{#CONN_MANAGER}"]: Bytes in, rate','envoy.http.downstream_cx_rx_bytes_total.rate["{#CONN_MANAGER}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total bytes received per second.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','d5f88107012a4a41a86cb9a76bf8ebc5','0','2','0'), ('43069','18','','10520','HTTP ["{#CONN_MANAGER}"]: Connections, rate','envoy.http.downstream_cx_total["{#CONN_MANAGER}"]','0','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','2',NULL,'Total connections per second.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','cff73e6c597d4103bdf6445b0910a434','0','2','0'), ('43070','18','','10520','HTTP ["{#CONN_MANAGER}"]: Bytes out, rate','envoy.http.downstream_cx_tx_bytes_tota.rate["{#CONN_MANAGER}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total bytes sent per second.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','a0bc5e6a55af4fa29869f05c1c0943f6','0','2','0'), ('43071','18','','10520','HTTP ["{#CONN_MANAGER}"]: Requests, active','envoy.http.downstream_rq_active["{#CONN_MANAGER}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total active requests.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','19ce2a7cc34c4b49ad0117c62241eabf','0','2','0'), ('43072','18','','10520','HTTP ["{#CONN_MANAGER}"]: Requests timeout, rate','envoy.http.downstream_rq_timeout["{#CONN_MANAGER}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total requests closed due to a timeout on the request path per second.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','df31ba8ca0db4b2daade17a9a54273cf','0','2','0'), ('43073','18','','10520','HTTP ["{#CONN_MANAGER}"]: Requests, rate','envoy.http.downstream_rq_total.rate["{#CONN_MANAGER}"]','0','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','2',NULL,'Total active connections per second.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','87cc859a403348a2b7bcfa398b3150c8','0','2','0'), ('43074','18','','10520','Listener ["{#LISTENER_ADDRESS}"]: Connections, active','envoy.listener.downstream_cx_active["{#LISTENER_ADDRESS}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total active connections.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','3ecae47c57984a6ab5ff854ce2e5415e','0','2','0'), ('43075','18','','10520','Listener ["{#LISTENER_ADDRESS}"]: Connections, rate','envoy.listener.downstream_cx_total.rate["{#LISTENER_ADDRESS}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total connections per second.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','7cc50e3001ac4a8ca433529c52a56e83','0','2','0'), ('43076','18','','10520','Listener ["{#LISTENER_ADDRESS}"]: Sockets, undergoing','envoy.listener.downstream_pre_cx_active["{#LISTENER_ADDRESS}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Sockets currently undergoing listener filter processing.','0','30d','0','','43018','','','','','200','1','0','','','0','0','0','0','0','0','0','5c155a0d2fd14623ba51670e4083ecee','0','2','0'), ('43084','18','','10521','Serf member: join, rate','consul.serf.member.join.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Increments when an agent joins the cluster. If an agent flapped or failed this counter also increments when it re-joins. Shown as events per second.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','f4c224ffb17d49029fef6647dde22c90','0','2','0'), ('43085','18','','10521','TCP connections, per second','consul.memberlist.tcp_connect','0','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'This metric counts the number of times a Consul agent has initiated a push/pull sync with an other agent per second.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','df0a553d811444d1ab767563a1d513a3','0','2','0'), ('43086','18','','10521','TCP send bytes, per second','consul.memberlist.tcp_sent','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'This metric measures the total number of bytes sent by a Consul agent through the TCP protocol per second.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','ba12a6464199443d8d73164a8dd87f4f','0','2','0'), ('43087','18','','10521','UDP received bytes, per second','consul.memberlist.udp_received','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'This metric measures the total number of bytes received by a Consul agent through the UDP protocol per second.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','dde5f5c5c7d44f1dbbcddb4a541f41cc','0','2','0'), ('43088','18','','10521','UDP sent bytes, per second','consul.memberlist.udp_sent','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'This metric measures the total number of bytes sent by a Consul agent through the UDP protocol per second.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','fa79687f332f4136881577838476c329','0','2','0'), ('43089','18','','10521','Open file descriptors, max','consul.process_max_fds','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum number of open file descriptors.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','59b28123e8154318aca6a283a1b18391','0','2','0'), ('43090','18','','10521','Open file descriptors','consul.process_open_fds','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of open file descriptors.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','38ad7b5d43004865bd823f1dae61395a','0','2','0'), ('43091','18','','10521','RSS memory usage','consul.resident_memory_bytes','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Resident memory size in bytes.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','8cb242ddeb7f4a0685c706a24f1f85c5','0','2','0'), ('43092','18','','10521','Role','consul.role','0','31d','365d','0','3','','','','',NULL,'973','','','0','','','','','0',NULL,'Role of current Consul agent.','0','30d','0','','43082','','','','','200','1','0','','','0','0','0','0','0','0','0','ee52c7cd8a4d452d85564a47c44198a6','0','2','0'), ('43093','18','','10521','Serf member: failed, rate','consul.serf.member.failed.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Increments when an agent is marked dead. This can be an indicator of overloaded agents, network problems, or configuration errors where agents cannot connect to each other on the required ports. Shown as events per second.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','e311c5bdba3e45b68887bc924c7dc206','0','2','0'), ('43094','18','','10521','Serf member: flap, rate','consul.serf.member.flap.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Increments when an agent is marked dead and then recovers within a short time period. This can be an indicator of overloaded agents, network problems, or configuration errors where agents cannot connect to each other on the required ports. Shown as events per second.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','11ba84beb3494504bd514500ef663cff','0','2','0'), ('43095','18','','10521','ACL: resolves, rate','consul.acl.resolves.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of ACL resolves per second.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','9f90fe43daaa43369b000754e1630e41','0','2','0'), ('43096','18','','10521','Serf member: left, rate','consul.serf.member.left.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Increments when an agent leaves the cluster. Shown as events per second.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','3264823eb6774c2092b4ffe4638b61a5','0','2','0'), ('43097','18','','10521','Memberlist: push pull node, p90','consul.memberlist.push_pull_node.p90','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'The 90 percentile for the number of Consul agents that have exchanged state with this agent.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','ae085470652242ba8a2077bebee7a2c7','0','2','0'), ('43098','18','','10521','Serf member: update, rate','consul.serf.member.update.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Increments when a Consul agent updates. Shown as events per second.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','53bb4e76cd1840e8ae9a129d592e202e','0','2','0'), ('43099','18','','10521','Number of services','consul.services_number','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of services on current node.','0','30d','0','','43082','','','','','200','1','0','','','0','0','0','0','0','0','0','614e63c6eb254b45a5fb3dbb985c5c3c','0','2','0'), ('43100','18','','10521','Snapshot: append line, p50','consul.snapshot.append_line.p50','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'The 50 percentile (median) for the time taken by the Consul agent to append an entry into the existing log.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','d9988aeda27f4fb09ececcde13efc71a','0','2','0'), ('43101','18','','10521','Snapshot: append line, p90','consul.snapshot.append_line.p90','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'The 90 percentile for the time taken by the Consul agent to append an entry into the existing log.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','0b701ec082e64eb19e60650c13cd44fd','0','2','0'), ('43102','18','','10521','Snapshot: append line, rate','consul.snapshot.append_line.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of snapshot appendLine operations per second.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','d56de8b09978421c9703fe327d03a32b','0','2','0'), ('43103','18','','10521','Snapshot: compact, p50','consul.snapshot.compact.p50','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'The 50 percentile (median) for the time taken by the Consul agent to compact a log. This operation occurs only when the snapshot becomes large enough to justify the compaction.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','12e1a4538f124c4281106b9033b1592d','0','2','0'), ('43104','18','','10521','Snapshot: compact, p90','consul.snapshot.compact.p90','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'The 90 percentile for the time taken by the Consul agent to compact a log. This operation occurs only when the snapshot becomes large enough to justify the compaction.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','c55de444dd30484eb116abfd6f28a9a0','0','2','0'), ('43105','18','','10521','Snapshot: compact, rate','consul.snapshot.compact.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of snapshot compact operations per second.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','586be345685b4f0dbbb31f2062bebc01','0','2','0'), ('43106','18','','10521','Version','consul.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of Consul agent.','0','30d','0','','43082','','','','','200','1','0','','','0','0','0','0','0','0','0','777e8cdd1cfc4f4bba613ef08320f1bb','0','2','0'), ('43107','18','','10521','TCP connections, accepted per second','consul.memberlist.tcp_accept','0','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'This metric counts the number of times a Consul agent has accepted an incoming TCP stream connection per second.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','a5d4e2e589564cc9898537c0a8c6a21a','0','2','0'), ('43108','18','','10521','Memberlist: probe node, p90','consul.memberlist.probe_node.p90','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'The 90 percentile for the time taken to perform a single round of failure detection on a select Consul agent.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','9a178ba5f7fa4d9a8ecfddfe84257ab6','0','2','0'), ('43109','18','','10521','Memberlist: push pull node, p50','consul.memberlist.push_pull_node.p50','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The 50 percentile (median) for the number of Consul agents that have exchanged state with this agent.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','ef688e2ad7494a08a535c019fe19c0a9','0','2','0'), ('43110','18','','10521','Goroutine count','consul.goroutines','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of Goroutines on Consul instance.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','2bcd79ab2c0a4ef88c0d2386d9bec1ff','0','2','0'), ('43111','18','','10521','Catalog: register, rate','consul.catalog.register.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of catalog register operation per second.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','8f01480896f8426688aee08e2ee0fc20','0','2','0'), ('43112','18','','10521','Number of checks','consul.checks_number','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of checks on current node.','0','30d','0','','43082','','','','','200','1','0','','','0','0','0','0','0','0','0','dabcb6819c9444a6a287a6458056ef31','0','2','0'), ('43113','18','','10521','Number of check monitors','consul.check_monitors_number','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of check monitors on current node.','0','30d','0','','43082','','','','','200','1','0','','','0','0','0','0','0','0','0','8e48706f9bda4689bec45f4a80fcc3cb','0','2','0'), ('43114','18','','10521','Client RPC, per second','consul.client_rpc','0','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times per second whenever a Consul agent in client mode makes an RPC request to a Consul server. This gives a measure of how much a given agent is loading the Consul servers. This is only generated by agents in client mode, not Consul servers.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','2706adc5e5a64c4480269938e2b90fc1','0','2','0'), ('43115','18','','10521','Client RPC failed ,per second','consul.client_rpc_failed','0','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times per second whenever a Consul agent in client mode makes an RPC request to a Consul server and fails.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','3fd30bfd7c324c53a346974c9f38e9db','0','2','0'), ('43116','18','','10521','Process CPU seconds, total','consul.cpu_seconds_total.rate','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Total user and system CPU time spent in seconds.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','12b9bbac571b431ea06a13a7154ef673','0','2','0'), ('43117','18','','10521','GC pause, p50','consul.gc_pause.p50','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The 50 percentile (median) for the number of nanoseconds consumed by stop-the-world garbage collection (GC) pauses since Consul started, in milliseconds.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','7513b847ac754a25972adb3547a871ca','0','2','0'), ('43118','18','','10521','GC pause, p90','consul.gc_pause.p90','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The 90 percentile for the number of nanoseconds consumed by stop-the-world garbage collection (GC) pauses since Consul started, in milliseconds.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','3ec74713a835498197e59df962e27bab','0','2','0'), ('43119','18','','10521','Get local services check','consul.get_local_services.check','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data collection check.','0','30d','0','','43081','','','','','200','1','0','','','0','0','0','0','0','0','0','f2fb4c76b4974319846d4773cfb64b0c','0','2','0'), ('43120','18','','10521','KV store: apply, p50','consul.kvs.apply.p50','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'The 50 percentile (median) for the time it takes to complete an update to the KV store.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','6613be65c0794e76a210263810a4692d','0','2','0'), ('43121','18','','10521','Catalog: deregister, rate','consul.catalog.deregister.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of catalog deregister operation per second.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','1c969d5d7546444e91e883661d63890b','0','2','0'), ('43122','18','','10521','KV store: apply, p90','consul.kvs.apply.p90','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'The 90 percentile for the time it takes to complete an update to the KV store.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','2dc05550018c4d67bab58bd8f86bc365','0','2','0'), ('43123','18','','10521','KV store: apply, rate','consul.kvs.apply.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of updates to the KV store per second.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','978bf96102d0411f8c18e92652a003c4','0','2','0'), ('43124','18','','10521','Memberlist: degraded','consul.memberlist.degraded','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This metric counts the number of times the Consul agent has performed failure detection on another agent at a slower probe rate. The agent uses its own health metric as an indicator to perform this action. If its health score is low, it means that the node is healthy, and vice versa.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','1b21a53ce7144350af8b50e57c3acf6b','0','2','0'), ('43125','18','','10521','Memberlist: gossip, p90','consul.memberlist.dispatch_log.p90','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The 90 percentile for the number of gossips (messages) broadcasted to a set of randomly selected nodes.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','0a3b25abf7de4212bda5c92c13341593','0','2','0'), ('43126','18','','10521','Memberlist: gossip, p50','consul.memberlist.gossip.p50','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'The 50 for the number of gossips (messages) broadcasted to a set of randomly selected nodes.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','592fb528d5c14491892c496f7ce9a60b','0','2','0'), ('43127','18','','10521','Memberlist: health score','consul.memberlist.health_score','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This metric describes a node''s perception of its own health based on how well it is meeting the soft real-time requirements of the protocol. This metric ranges from 0 to 8, where 0 indicates "totally healthy".','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','32259a799f6949e4be4f7d8722a2dbbe','0','2','0'), ('43128','18','','10521','Memberlist: msg alive','consul.memberlist.msg.alive','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This metric counts the number of alive Consul agents, that the agent has mapped out so far, based on the message information given by the network layer.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','1ebba76d809b415488fb0591afeaef6f','0','2','0'), ('43129','18','','10521','Memberlist: msg dead','consul.memberlist.msg.dead','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This metric counts the number of times a Consul agent has marked another agent to be a dead node.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','9768a2ce01de4bfe92a17935791b4da4','0','2','0'), ('43130','18','','10521','Memberlist: msg suspect','consul.memberlist.msg.suspect','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of times a Consul agent suspects another as failed while probing during gossip protocol.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','43ea04dd91ba4c208e9ad09bbc0016af','0','2','0'), ('43131','18','','10521','Memberlist: probe node, p50','consul.memberlist.probe_node.p50','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'The 50 percentile (median) for the time taken to perform a single round of failure detection on a select Consul agent.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','8b3ee806fcf34a46aa61cbfee460d9f7','0','2','0'), ('43132','18','','10521','Virtual memory size','consul.virtual_memory_bytes','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Virtual memory size in bytes.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','62c0bb503c084f9da10f1be3c716608b','0','2','0'), ('43133','18','','10521','HTTP API methods discovery','consul.http_api_discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery HTTP API methods specific metrics.','0','7d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','565c42fc4e444433aaafd656813b82f7','0','2','0'), ('43134','18','','10521','Local node services discovery','consul.node_services_lld','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover metrics for services that are registered with the local agent.','0','7d','0','','43081','','','','','200','1','0','','','0','0','0','0','0','0','0','dd87920ea8184ec793229878407a0993','0','2','0'), ('43135','18','','10521','Raft leader metrics discovery','consul.raft.leader.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover raft metrics for leader nodes.','0','7d','0','','43082','','','','','200','1','0','','','0','0','0','0','0','0','0','6ff39fd6911945b2baa9b762d5a86df2','0','2','0'), ('43136','18','','10521','Raft server metrics discovery','consul.raft.server.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover raft metrics for server nodes.','0','7d','0','','43082','','','','','200','1','0','','','0','0','0','0','0','0','0','f7dfc3d88f5440bea02080205d3f0a9b','0','2','0'), ('43137','18','','10521','HTTP request: ["{#HTTP_METHOD}"], p50','consul.http.api.p50["{#HTTP_METHOD}"]','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The 50 percentile (median) of how long it takes to service the given HTTP request for the given verb.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','4bdb2007bada4840aa453630e701059c','0','2','0'), ('43138','18','','10521','HTTP request: ["{#HTTP_METHOD}"], p90','consul.http.api.p90["{#HTTP_METHOD}"]','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The 90 percentile of how long it takes to service the given HTTP request for the given verb.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','537b455889d54deab7ada216a89f1cb2','0','2','0'), ('43139','18','','10521','HTTP request: ["{#HTTP_METHOD}"], rate','consul.http.api.rate["{#HTTP_METHOD}"]','0','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of HTTP request for the given verb per second.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','53cdb47018df434381f7fc3e401a4dee','0','2','0'), ('43140','18','','10521','["{#SERVICE_NAME}"]: Aggregated status','consul.service.aggregated_state["{#SERVICE_ID}"]','0','31d','365d','0','3','','','','',NULL,'972','','','0','','','','','2',NULL,'Aggregated values of all health checks for the service instance.','0','30d','0','','43081','','','','','200','1','0','','','0','0','0','0','0','0','1','44b0f82769d244d6a20b9ce0b5cc5cb6','0','2','0'), ('43141','18','','10521','["{#SERVICE_NAME}"]: Check ["{#SERVICE_CHECK_NAME}"]: Output','consul.service.check.output["{#SERVICE_ID}/{#SERVICE_CHECK_ID}"]','0','31d','0','0','1','','','','',NULL,'972','','','0','','','','','2',NULL,'Current output of health check for the service.','0','30d','0','','43081','','','','','200','1','0','','','0','0','0','0','0','0','1','20a0ec9e059548a192c9c37bd7aeaaed','0','2','0'), ('43142','18','','10521','["{#SERVICE_NAME}"]: Check ["{#SERVICE_CHECK_NAME}"]: Status','consul.service.check.state["{#SERVICE_ID}/{#SERVICE_CHECK_ID}"]','0','31d','365d','0','3','','','','',NULL,'972','','','0','','','','','2',NULL,'Current state of health check for the service.','0','30d','0','','43081','','','','','200','1','0','','','0','0','0','0','0','0','1','3b67eb4df3dc4d9b9f4ab4c35a592367','0','2','0'), ('43143','18','','10521','Autopilot healthy','consul.autopilot.healthy[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,'971','','','0','','','','','2',NULL,'Tracks the overall health of the local server cluster. 1 if all servers are healthy, 0 if one or more are unhealthy.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','440e2a259cd64b918ebfb607961da2c8','0','2','0'), ('43144','18','','10521','Raft state: commit time, p50','consul.raft.commit_time.p50[{#SINGLETON}]','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The 50 percentile (median) time it takes to commit a new entry to the raft log on the leader, in milliseconds.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','2e4fd6c5aac84054aef867fc9d8cb3c5','0','2','0'), ('43145','18','','10521','Raft state: commit time, p90','consul.raft.commit_time.p90[{#SINGLETON}]','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The 90 percentile time it takes to commit a new entry to the raft log on the leader, in milliseconds.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','9428c07a23364967aef060cf3303b996','0','2','0'), ('43146','18','','10521','Raft state: commit, rate','consul.raft.commit_time.rate[{#SINGLETON}]','0','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of commits a new entry to the Raft log on the leader per second.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','d54c97e8c4204f8c9f79911440f1bd13','0','2','0'), ('43147','18','','10521','Raft state: dispatch log, p50','consul.raft.dispatch_log.p50[{#SINGLETON}]','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The 50 percentile (median) time it takes for the leader to write log entries to disk, in milliseconds.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','3c56ebe6e022430e861488873ac6f716','0','2','0'), ('43148','18','','10521','Raft state: dispatch log, p90','consul.raft.dispatch_log.p90[{#SINGLETON}]','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The 90 percentile time it takes for the leader to write log entries to disk, in milliseconds.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','fd1e6c33254b467f8355491dc96889eb','0','2','0'), ('43149','18','','10521','Raft state: dispatch log, rate','consul.raft.dispatch_log.rate[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of times a Raft leader writes a log to disk per second.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','bc73aeda20a543ac957d1531f25fd5a9','0','2','0'), ('43150','18','','10521','Raft state: leader last contact, p50','consul.raft.leader_last_contact.p50[{#SINGLETON}]','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The 50 percentile (median) of how long it takes a leader node to communicate with followers during a leader lease check, in milliseconds.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','526a787732224555adde561ec86844fb','0','2','0'), ('43151','18','','10521','Raft state: leader last contact, p90','consul.raft.leader_last_contact.p90[{#SINGLETON}]','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The 90 percentile of how long it takes a leader node to communicate with followers during a leader lease check, in milliseconds.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','1ae3d9e4647b4972b1572946a2794715','0','2','0'), ('43152','18','','10521','Raft: apply, rate','consul.raft.apply.rate[{#SINGLETON}]','0','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','2',NULL,'Incremented whenever a leader first passes a message into the Raft commit process (called an Apply operation). This metric describes the arrival rate of new logs into Raft per second.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','428f1d7924634383aabcd5b37f561a41','0','2','0'), ('43153','18','','10521','Raft state','consul.raft.state[{#SINGLETON}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current state of Consul agent.','0','30d','0','','43082','','','','','200','1','0','','','0','0','0','0','0','0','0','25dd098b98124fa8a9518963c8b4e5ce','0','2','0'), ('43154','18','','10521','Raft state: candidate','consul.raft.state_candidate[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of initiated leader elections.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','7b030c4eac68464e8c454577ab0f0f53','0','2','0'), ('43155','18','','10521','Raft state: leader','consul.raft.state_leader[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Increments when a server becomes a leader.','0','30d','0','','43083','','','','','200','1','0','','','0','0','0','0','0','0','0','e89157e341d8409c96e31a9d541a7fe8','0','2','0'), ('43161','18','','10522','Nodes: critical','consul.nodes_critical','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of agents on current dc with serf health status ''critical''.','0','30d','0','','43157','','','','','200','1','0','','','0','0','0','0','0','0','0','31be2fd640a141279d41871df877a42c','0','2','0'), ('43162','18','','10522','Nodes: passing','consul.nodes_passing','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of agents on current dc with serf health status ''passing''.','0','30d','0','','43157','','','','','200','1','0','','','0','0','0','0','0','0','0','6303f2b128f64bec9760bc3807bb9a34','0','2','0'), ('43163','18','','10522','Nodes: total','consul.nodes_total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of nodes on current dc.','0','30d','0','','43159','','','','','200','1','0','','','0','0','0','0','0','0','0','3eef4079f15d4db8852822ebda6d36fe','0','2','0'), ('43164','18','','10522','Nodes: warning','consul.nodes_warning','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of agents on current dc with serf health status ''warning''.','0','30d','0','','43157','','','','','200','1','0','','','0','0','0','0','0','0','0','b02337cc9a6b4c34a85d85a231c4e51f','0','2','0'), ('43165','18','','10522','Services: total','consul.services_total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of services on current dc.','0','30d','0','','43156','','','','','200','1','0','','','0','0','0','0','0','0','0','30101e37fce144bdacce0a58b4c9de0e','0','2','0'), ('43166','18','','10522','Consul cluster nodes discovery','consul.lld_nodes','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','','43159','','','','','200','1','0','','','0','0','0','0','0','0','0','ea1b655bdf7940f6a431e2e04a8dfcd6','0','2','0'), ('43167','18','','10522','Consul cluster services discovery','consul.lld_services','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','','43156','','','','','200','1','0','','','0','0','0','0','0','0','0','d84aadcb4d4d4215826c859de416b739','0','2','0'), ('43169','18','','10522','Node ["{#NODE_NAME}"]: Serf Health','consul.serf.health["{#NODE_NAME}"]','0','31d','365d','0','3','','','','',NULL,'974','','','0','','','','','2',NULL,'Node Serf Health Status.','0','30d','0','','43157','','','','','200','1','0','','','0','0','0','0','0','0','0','ddb71b90bde94760a4a456c15e647917','0','2','0'), ('43170','18','','10522','Service ["{#SERVICE_NAME}"]: Nodes critical','consul.service.nodes_critical["{#SERVICE_NAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of nodes with service status `critical` from those registered.','0','30d','0','','43168','','','','','200','1','0','','','0','0','0','0','0','0','0','70a37e9934fa47f3bd7d553c70179d10','0','2','0'), ('43171','18','','10522','Service ["{#SERVICE_NAME}"]: Nodes passing','consul.service.nodes_passing["{#SERVICE_NAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of nodes with service status `passing` from those registered.','0','30d','0','','43168','','','','','200','1','0','','','0','0','0','0','0','0','0','3807bd01fda5425694eb8e4169eb4078','0','2','0'), ('43172','18','','10522','Service ["{#SERVICE_NAME}"]: Nodes warning','consul.service.nodes_warning["{#SERVICE_NAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of nodes with service status `warning` from those registered.','0','30d','0','','43168','','','','','200','1','0','','','0','0','0','0','0','0','0','8a23dbb1d28c472291c06e0da572424a','0','2','0'), ('43176','18','','10524','Get method errors','hpe.msa.get.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A list of method errors from API requests.','0','30d','0','','43174','','','','','200','1','0','','','0','0','0','0','0','0','0','51d0ae1b4663471d868c27ccd2fb4fed','0','2','0'), ('43283','18','','10525','Get method errors','hpe.msa.get.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A list of method errors from API requests.','0','30d','0','','43281','','','','','200','1','0','','','0','0','0','0','0','0','0','078dd015f25d4778af429f9b5e391bc5','0','2','0'), ('43406','18','','10526','Get errors','hpe.primera.get.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A list of errors from WSAPI requests.','0','30d','0','','43399','','','','','200','1','0','','','0','0','0','0','0','0','0','484a6b9568234bbca9b4bcae2833bbf1','0','2','0'), ('43500','18','','10527','Get alarms check','aws.ec2.alarms.check','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Check result of the alarm data has been got correctly.','0','30d','0','','43499','','','','','200','1','0','','','0','0','0','0','0','0','0','22b61bf7ebba43e8aef544385448d18c','0','2','0'), ('43501','18','','10527','EBS: Write, rate','aws.ec2.ebs.write_ops.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Completed write operations to all EBS volumes attached to the instance in a specified period of time.','0','30d','0','','43497','','','','','200','1','0','','','0','0','0','0','0','0','0','2da28e61261746d6b94b244b8f0cf2a8','0','2','0'), ('43502','18','','10527','Status: Check failed, system','aws.ec2.status_check_failed_system','0','31d','365d','0','3','','','','',NULL,'1013','','','0','','','','','0',NULL,'Reports whether the instance has passed the system status check in the last minute. This metric can be either 0 (passed) or 1 (failed).','0','30d','0','','43497','','','','','200','1','0','','','0','0','0','0','0','0','0','c7063824e3a74e6fa55ba21ecba35ca1','0','2','0'), ('43503','18','','10527','Status: Check failed, instance','aws.ec2.status_check_failed_instance','0','31d','365d','0','3','','','','',NULL,'1013','','','0','','','','','0',NULL,'Reports whether the instance has passed the instance status check in the last minute. This metric can be either 0 (passed) or 1 (failed).','0','30d','0','','43497','','','','','200','1','0','','','0','0','0','0','0','0','0','b373f0994e784caf8f5f39da20d2f5c8','0','2','0'), ('43504','18','','10527','Status: Check failed','aws.ec2.status_check_failed','0','31d','365d','0','3','','','','',NULL,'1013','','','0','','','','','0',NULL,'Reports whether the instance has passed both the instance status check and the system status check in the last minute. This metric can be either 0 (passed) or 1 (failed).','0','30d','0','','43497','','','','','200','1','0','','','0','0','0','0','0','0','0','30156f76599147eaa5bcd4ca39816bbb','0','2','0'), ('43505','18','','10527','Network: Packets out, rate','aws.ec2.packets_out.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of packets sent out on all network interfaces by the instance. This metric identifies the volume of outgoing traffic in terms of the number of packets on a single instance. This metric is available for basic monitoring only.','0','30d','0','','43497','','','','','200','1','0','','','0','0','0','0','0','0','0','5d998e1680af4410b34fa9071bb7db78','0','2','0'), ('43506','18','','10527','Network: Packets in, rate','aws.ec2.packets_in.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of packets received on all network interfaces by the instance. This metric identifies the volume of incoming traffic in terms of the number of packets on a single instance. This metric is available for basic monitoring only.','0','30d','0','','43497','','','','','200','1','0','','','0','0','0','0','0','0','0','a6b74493528b486782c4b73e080019e1','0','2','0'), ('43507','18','','10527','Network: Bytes out, rate','aws.ec2.network_out.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of bytes sent out on all network interfaces by the instance. This metric identifies the volume of outgoing network traffic from a single instance.','0','30d','0','','43497','','','','','200','1','0','','','0','0','0','0','0','0','0','87fb8b61f115487696f02e50d98996ac','0','2','0'), ('43508','18','','10527','Network: Bytes in, rate','aws.ec2.network_in.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of bytes received on all network interfaces by the instance. This metric identifies the volume of incoming network traffic to a single instance.','0','30d','0','','43497','','','','','200','1','0','','','0','0','0','0','0','0','0','2b16d3c6457842d892d06249a5fcd670','0','2','0'), ('43509','18','','10527','Get metrics check','aws.ec2.metrics.check','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Check result of the instance metric data has been got correctly.','0','30d','0','','43497','','','','','200','1','0','','','0','0','0','0','0','0','0','7c264d8d5d934f898f7c745acd429d25','0','2','0'), ('43510','18','','10527','Metadata: No token','aws.ec2.metadata.no_token','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of times the instance metadata service was successfully accessed using a method that does not use a token. This metric is used to determine if there are any processes accessing instance metadata that are using Instance Metadata Service Version 1, which does not use a token. If all requests use token-backed sessions, i.e., Instance Metadata Service Version 2, the value is 0.','0','30d','0','','43497','','','','','200','1','0','','','0','0','0','0','0','0','0','adbe9cd98ffa41dda981c7f4e27a0d3b','0','2','0'), ('43511','18','','10527','EBS: Write bytes, rate','aws.ec2.ebs.write_bytes.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Bytes written to all EBS volumes attached to the instance for Nitro-based instances.','0','30d','0','','43497','','','','','200','1','0','','','0','0','0','0','0','0','0','9dafe0bcfb214d46975f570e2836e9cd','0','2','0'), ('43512','18','','10527','Credit CPU: Balance','aws.ec2.cpu.credit_balance','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of earned CPU credits that an instance has accrued since it was launched or started. For T2 Standard, the CPUCreditBalance also includes the number of launch credits that have been accrued. Credits are accrued in the credit balance after they are earned, and removed from the credit balance when they are spent. The credit balance has a maximum limit, determined by the instance size. After the limit is reached, any new credits that are earned are discarded. For T2 Standard, launch credits do not count towards the limit. The credits in the CPUCreditBalance are available for the instance to spend to burst beyond its baseline CPU utilization. When an instance is running, credits in the CPUCreditBalance do not expire. When a T3 or T3a instance stops, the CPUCreditBalance value persists for seven days. Thereafter, all accrued credits are lost. When a T2 instance stops, the CPUCreditBalance value does not persist, and all accrued credits are lost.','0','30d','0','','43497','','','','','200','1','0','','','0','0','0','0','0','0','0','0384bacca1e14994a5c38dc55b73e8bb','0','2','0'), ('43513','18','','10527','EBS: Read, rate','aws.ec2.ebs.read_ops.rate','0','31d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','0',NULL,'Completed read operations from all Amazon EBS volumes attached to the instance for Nitro-based instances.','0','30d','0','','43497','','','','','200','1','0','','','0','0','0','0','0','0','0','29eff02b7c464605bc6d69a963d232b5','0','2','0'), ('43514','18','','10527','EBS: Read bytes, rate','aws.ec2.ebs.read_bytes.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Bytes read from all EBS volumes attached to the instance for Nitro-based instances.','0','30d','0','','43497','','','','','200','1','0','','','0','0','0','0','0','0','0','251c9a3b0afd4930b822f7310f3fda43','0','2','0'), ('43515','18','','10527','EBS: IO balance','aws.ec2.ebs.io_balance','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of I/O credits remaining in the burst bucket for Nitro-based instances.','0','30d','0','','43497','','','','','200','1','0','','','0','0','0','0','0','0','0','7b8a2b6941d04cde8edc511752755c8f','0','2','0'), ('43516','18','','10527','EBS: Byte balance','aws.ec2.ebs.byte_balance','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of throughput credits remaining in the burst bucket for Nitro-based instances.','0','30d','0','','43497','','','','','200','1','0','','','0','0','0','0','0','0','0','64180ec5dae84f588006bb1dd0ce6980','0','2','0'), ('43517','18','','10527','Disk: Write ops, rate','aws.ec2.disk_write_ops.rate','0','31d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','0',NULL,'Completed write operations to all instance store volumes available to the instance in a specified period of time. If there are no instance store volumes, either the value is 0 or the metric is not reported.','0','30d','0','','43497','','','','','200','1','0','','','0','0','0','0','0','0','0','28496d5aa03742feb85ae000deb616d1','0','2','0'), ('43518','18','','10527','Disk: Write bytes, rate','aws.ec2.disk_write_bytes.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Bytes written to all instance store volumes available to the instance. This metric is used to determine the volume of the data the application writes onto the hard disk of the instance. This can be used to determine the speed of the application. If there are no instance store volumes, either the value is 0 or the metric is not reported.','0','30d','0','','43497','','','','','200','1','0','','','0','0','0','0','0','0','0','95bcfd522147498688555e2cab5c00e2','0','2','0'), ('43519','18','','10527','Disk: Read, rate','aws.ec2.disk.read_ops.rate','0','31d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','0',NULL,'Completed read operations from all instance store volumes available to the instance in a specified period of time. If there are no instance store volumes, either the value is 0 or the metric is not reported.','0','30d','0','','43497','','','','','200','1','0','','','0','0','0','0','0','0','0','d6bb726f9f1b4d5b889ede0ae2c73613','0','2','0'), ('43520','18','','10527','Disk: Read bytes, rate','aws.ec2.disk.read_bytes.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Bytes read from all instance store volumes available to the instance. This metric is used to determine the volume of the data the application reads from the hard disk of the instance. This can be used to determine the speed of the application. If there are no instance store volumes, either the value is 0 or the metric is not reported.','0','30d','0','','43497','','','','','200','1','0','','','0','0','0','0','0','0','0','49aecab5c7df407b9cbfe80ad8790492','0','2','0'), ('43521','18','','10527','CPU: Utilization','aws.ec2.cpu_utilization','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of allocated EC2 compute units that are currently in use on the instance. This metric identifies the processing power required to run an application on a selected instance. Depending on the instance type, tools in your operating system can show a lower percentage than CloudWatch when the instance is not allocated a full processor core.','0','30d','0','','43497','','','','','200','1','0','','','0','0','0','0','0','0','0','7fd871e7eed54845ad069c3e7d3cad56','0','2','0'), ('43522','18','','10527','Credit CPU: Surplus charged','aws.ec2.cpu.surplus_credit_charged','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of spent surplus credits that are not paid down by earned CPU credits, and which thus incur an additional charge. Spent surplus credits are charged when any of the following occurs: - The spent surplus credits exceed the maximum number of credits that the instance can earn in a 24-hour period. Spent surplus credits above the maximum are charged at the end of the hour; - The instance is stopped or terminated; - The instance is switched from unlimited to standard.','0','30d','0','','43497','','','','','200','1','0','','','0','0','0','0','0','0','0','77a32118a77e4836a945c7b0954ef64a','0','2','0'), ('43523','18','','10527','Credit CPU: Surplus balance','aws.ec2.cpu.surplus_credit_balance','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of surplus credits that have been spent by an unlimited instance when its CPUCreditBalance value is zero. The CPUSurplusCreditBalance value is paid down by earned CPU credits. If the number of surplus credits exceeds the maximum number of credits that the instance can earn in a 24-hour period, the spent surplus credits above the maximum incur an additional charge.','0','30d','0','','43497','','','','','200','1','0','','','0','0','0','0','0','0','0','285ec6451412450c963e3a24d2aa74e1','0','2','0'), ('43524','18','','10527','Credit CPU: Usage','aws.ec2.cpu.credit_usage','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of CPU credits spent by the instance for CPU utilization. One CPU credit equals one vCPU running at 100% utilization for one minute or an equivalent combination of vCPUs, utilization, and time (for example, one vCPU running at 50% utilization for two minutes or two vCPUs running at 25% utilization for two minutes).','0','30d','0','','43497','','','','','200','1','0','','','0','0','0','0','0','0','0','b445a56de3194f6f9b4bf9dd85fcbe52','0','2','0'), ('43525','18','','10527','Get volumes info check','aws.ec2.volumes.check','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Check result of the volume information has been got correctly.','0','30d','0','','43498','','','','','200','1','0','','','0','0','0','0','0','0','0','3c819ed899c044ae8455266292f65632','0','2','0'), ('43526','18','','10527','Instance Alarms discovery','aws.ec2.alarms.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery instance and attached EBS volumes alarms.','0','7d','1','','43499','','','','','200','1','0','','','0','0','0','0','0','0','0','318c50196d2b442e9b702f63e70c0820','0','2','0'), ('43527','18','','10527','Instance Volumes discovery','aws.ec2.volumes.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery attached EBS volumes.','0','7d','1','','43498','','','','','200','1','0','','','0','0','0','0','0','0','0','6cf7fc98fea44b0789a5aaa837042699','0','2','0'), ('43531','18','','10527','[{#VOLUME_ID}]: Read, bytes','aws.ec2.ebs.volume.read_bytes["{#VOLUME_ID}"]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Provides information on the read operations in a specified period of time. The average size of each read operation during the period, except on volumes attached to a Nitro-based instance, where the average represents the average over the specified period. For Xen instances, data is reported only when there is read activity on the volume.','0','30d','0','','43528','','','','','200','1','0','','','0','0','0','0','0','0','0','7313a503be27469ea82733ed965b57e4','0','2','0'), ('43532','18','','10527','[{#VOLUME_ID}]: Write, ops','aws.ec2.ebs.volume.write_ops["{#VOLUME_ID}"]','0','31d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of write operations in a specified period of time. Note: write operations are counted on completion.','0','30d','0','','43528','','','','','200','1','0','','','0','0','0','0','0','0','0','7216494987dc45f59fc3a4b9100e4159','0','2','0'), ('43533','18','','10527','[{#VOLUME_ID}]: Write, bytes','aws.ec2.ebs.volume.write_bytes["{#VOLUME_ID}"]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Provides information on the write operations in a specified period of time. The average size of each write operation during the period, except on volumes attached to a Nitro-based instance, where the average represents the average over the specified period. For Xen instances, data is reported only when there is write activity on the volume.','0','30d','0','','43528','','','','','200','1','0','','','0','0','0','0','0','0','0','459900740e784ca9ba7a8baf5b95734e','0','2','0'), ('43534','18','','10527','[{#VOLUME_ID}]: Write time, total','aws.ec2.ebs.volume.total_write_time["{#VOLUME_ID}"]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'This metric is not supported with Multi-Attach enabled volumes. The total number of seconds spent by all write operations that completed in a specified period of time. If multiple requests are submitted at the same time, this total could be greater than the length of the period. For example, for a period of 1 minute (60 seconds): if 150 operations completed during that period, and each operation took 1 second, the value would be 150 seconds. For Xen instances, data is reported only when there is write activity on the volume.','0','30d','0','','43528','','','','','200','1','0','','','0','0','0','0','0','0','0','264a8f7df9e64d219082d5239b90cdf3','0','2','0'), ('43535','18','','10527','[{#VOLUME_ID}]: Read time, total','aws.ec2.ebs.volume.total_read_time["{#VOLUME_ID}"]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'This metric is not supported with Multi-Attach enabled volumes. The total number of seconds spent by all read operations that completed in a specified period of time. If multiple requests are submitted at the same time, this total could be greater than the length of the period. For example, for a period of 1 minutes (60 seconds): if 150 operations completed during that period, and each operation took 1 second, the value would be 150 seconds. For Xen instances, data is reported only when there is read activity on the volume.','0','30d','0','','43528','','','','','200','1','0','','','0','0','0','0','0','0','0','58163c98e1b943ceae5fcb52ff85dcfd','0','2','0'), ('43536','18','','10527','[{#VOLUME_ID}]: Throughput, pct','aws.ec2.ebs.volume.throughput_percentage["{#VOLUME_ID}"]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'This metric is not supported with Multi-Attach enabled volumes. Used with Provisioned IOPS SSD volumes only. The percentage of I/O operations per second (IOPS) delivered of the total IOPS provisioned for an Amazon EBS volume. Provisioned IOPS SSD volumes deliver their provisioned performance 99.9 percent of the time. During a write, if there are no other pending I/O requests in a minute, the metric value will be 100 percent. Also, a volume''s I/O performance may become degraded temporarily due to an action you have taken (for example, creating a snapshot of a volume during peak usage, running the volume on a non-EBS-optimized instance, or accessing data on the volume for the first time).','0','30d','0','','43528','','','','','200','1','0','','','0','0','0','0','0','0','0','8d0b610ac0e3479a921720ef623ef896','0','2','0'), ('43537','18','','10527','[{#VOLUME_ID}]: Read, ops','aws.ec2.ebs.volume.read_ops["{#VOLUME_ID}"]','0','31d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of read operations in a specified period of time. Note: read operations are counted on completion.','0','30d','0','','43528','','','','','200','1','0','','','0','0','0','0','0','0','0','13d3dce70956402c945421c87e8eb784','0','2','0'), ('43540','18','','10527','[{#VOLUME_ID}]: Idle time','aws.ec2.ebs.volume.idle_time["{#VOLUME_ID}"]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'This metric is not supported with Multi-Attach enabled volumes. The total number of seconds in a specified period of time when no read or write operations were submitted.','0','30d','0','','43528','','','','','200','1','0','','','0','0','0','0','0','0','0','5476d32c036d49588238cb2d2a4d652f','0','2','0'), ('43541','18','','10527','[{#VOLUME_ID}]: Consumed Read/Write, ops','aws.ec2.ebs.volume.consumed_read_write_ops["{#VOLUME_ID}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Used with Provisioned IOPS SSD volumes only. The total amount of read and write operations (normalized to 256K capacity units) consumed in a specified period of time. I/O operations that are smaller than 256K each count as 1 consumed IOPS. I/O operations that are larger than 256K are counted in 256K capacity units. For example, a 1024K I/O would count as 4 consumed IOPS.','0','30d','0','','43528','','','','','200','1','0','','','0','0','0','0','0','0','0','8b936cef38294799a6826764eae68850','0','2','0'), ('43542','18','','10527','[{#VOLUME_ID}]: Burst balance','aws.ec2.ebs.volume.burst_balance["{#VOLUME_ID}"]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Used with General Purpose SSD (gp2), Throughput Optimized HDD (st1), and Cold HDD (sc1) volumes only. Provides information about the percentage of I/O credits (for gp2) or throughput credits (for st1 and sc1) remaining in the burst bucket. Data is reported to CloudWatch only when the volume is active. If the volume is not attached, no data is reported.','0','30d','0','','43528','','','','','200','1','0','','','0','0','0','0','0','0','0','fd10966f674e430a9dd70b148dcfa002','0','2','0'), ('43546','18','','10527','[{#VOLUME_ID}]: Queue length','aws.ec2.ebs.volume.queue_length["{#VOLUME_ID}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of read and write operation requests waiting to be completed in a specified period of time.','0','30d','0','','43528','','','','','200','1','0','','','0','0','0','0','0','0','0','4dbb00e53cd84b9f88c44c765e73bd85','0','2','0'), ('43547','18','','10528','DHCP server status','opnsense.dhcpd.status','0','31d','365d','0','3','','','','',NULL,'1018','','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The status of DHCP server process.','0','30d','0','','49916','','','','','200','1','0','','','0','0','0','0','0','0','0','1a075e6ed87c4d40b912956e9c02573f','0','2','0'), ('43556','18','','10528','DNS server status','opnsense.dns.status','0','31d','365d','0','3','','','','',NULL,'1018','','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The status of DNS server process.','0','30d','0','','49916','','','','','200','1','0','','','0','0','0','0','0','0','0','c52c2b9a3d4e4446a8af02e5a51e9c55','0','2','0'), ('43557','18','','10528','Short packets','opnsense.packets.short','0','31d','365d','0','0','','pps','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB True if the packet was logged with the specified packet filter reason code. The known codes are: match, bad-offset, fragment, short, normalize, and memory.','0','30d','0','','49915','','','','','200','1','0','','','0','0','0','0','0','0','0','7b845d8282ee4c1394c71c22ada31da9','0','2','0'), ('43558','18','','10528','Normalized packets','opnsense.packets.normalize','0','31d','365d','0','0','','pps','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB True if the packet was logged with the specified packet filter reason code. The known codes are: match, bad-offset, fragment, short, normalize, and memory.','0','30d','0','','49915','','','','','200','1','0','','','0','0','0','0','0','0','0','7c8d4623d2fd4b77b0749caa67530bb2','0','2','0'), ('43559','18','','10528','Packets dropped due to memory limitation','opnsense.packets.mem.drop','0','31d','365d','0','0','','pps','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB True if the packet was logged with the specified packet filter reason code. The known codes are: match, bad-offset, fragment, short, normalize, and memory.','0','30d','0','','49915','','','','','200','1','0','','','0','0','0','0','0','0','0','3983366c271f4e9896d738c58f2d850f','0','2','0'), ('43560','18','','10528','Packets matched a filter rule','opnsense.packets.match','0','31d','365d','0','0','','pps','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB True if the packet was logged with the specified packet filter reason code. The known codes are: match, bad-offset, fragment, short, normalize, and memory.','0','30d','0','','49915','','','','','200','1','0','','','0','0','0','0','0','0','0','ae0bfb3bd36e4b05ae490c4b70ba1313','0','2','0'), ('43561','18','','10528','Fragmented packets','opnsense.packets.fragment','0','31d','365d','0','0','','pps','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB True if the packet was logged with the specified packet filter reason code. The known codes are: match, bad-offset, fragment, short, normalize, and memory.','0','30d','0','','49915','','','','','200','1','0','','','0','0','0','0','0','0','0','f8503508e3e646c781d637d1aefaf21a','0','2','0'), ('43562','18','','10528','Packets with bad offset','opnsense.packets.bad.offset','0','31d','365d','0','0','','pps','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: BEGEMOT-PF-MIB True if the packet was logged with the specified packet filter reason code. The known codes are: match, bad-offset, fragment, short, normalize, and memory.','0','30d','0','','49915','','','','','200','1','0','','','0','0','0','0','0','0','0','6a77c077e6bb44439ad766de038f71f1','0','2','0'), ('43563','18','','10528','Web server status','opnsense.lighttpd.status','0','31d','365d','0','3','','','','',NULL,'1018','','','0','','','','','0',NULL,'MIB: HOST-RESOURCES-MIB The status of lighttpd process.','0','30d','0','','49916','','','','','200','1','0','','','0','0','0','0','0','0','0','4bc80f5cece045cfa103fa9d4e5db9c6','0','2','0'), ('43565','18','','10528','Network interfaces discovery','opnsense.net.if.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','49914','','','','','200','1','0','','','0','0','0','0','0','0','0','d7830514425f47eda3ac8ec20a1801b9','0','2','0'), ('43566','18','','10528','Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 traffic blocked','net.if.in.block.v4.bps[{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB IPv4 bits per second blocked coming in on this interface.','0','30d','0','','49913','','','','','200','1','0','','','0','0','0','0','0','0','0','3a687275a219460c92433bda90be8d59','0','2','0'), ('43567','18','','10528','Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 packets blocked','net.if.out.block.v6.pps[{#SNMPINDEX}]','0','31d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB The number of IPv6 packets blocked going out on this interface.','0','30d','0','','49913','','','','','200','1','0','','','0','0','0','0','0','0','0','a877f2c800874ce9bbf972ef8eb277be','0','2','0'), ('43568','18','','10528','Interface [{#IFNAME}({#IFALIAS})]: Operational status','net.if.status[{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1016','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','30d','0','','49914','','','','','200','1','0','','','0','0','0','0','0','0','0','1b352c1f96e84f2fb72c6414c0e15b29','0','2','0'), ('43569','18','','10528','Interface [{#IFNAME}({#IFALIAS})]: Speed','net.if.speed[{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n'' then the speed of the interface is somewhere in the range of `n-500,000'' to`n+499,999''. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','49914','','','','','200','1','0','','','0','0','0','0','0','0','0','76c91001f4b64ba99c132c3dd476cb88','0','2','0'), ('43570','18','','10528','Interface [{#IFNAME}({#IFALIAS})]: Rules references count','net.if.rules.refs[{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB The number of rules referencing this interface.','0','30d','0','','49913','','','','','200','1','0','','','0','0','0','0','0','0','0','bce50f45634d41b6a4ab8616e3a4d804','0','2','0'), ('43571','18','','10528','Interface [{#IFNAME}({#IFALIAS})]: Bits sent','net.if.out[{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','49914','','','','','200','1','0','','','0','0','0','0','0','0','0','1f6a8e8f3cc746249001293fba59fcf3','0','2','0'), ('43572','18','','10528','Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 packets passed','net.if.out.pass.v6.pps[{#SNMPINDEX}]','0','31d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB The number of IPv6 packets passed going out on this interface.','0','30d','0','','49913','','','','','200','1','0','','','0','0','0','0','0','0','0','d4c3d02a4e024d1a881789f9588c05f7','0','2','0'), ('43573','18','','10528','Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 traffic passed','net.if.out.pass.v6.bps[{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB IPv6 bits per second passed going out on this interface.','0','30d','0','','49913','','','','','200','1','0','','','0','0','0','0','0','0','0','993af213503d4cf8b921ed630a01e7f9','0','2','0'), ('43574','18','','10528','Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 packets passed','net.if.out.pass.v4.pps[{#SNMPINDEX}]','0','31d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB The number of IPv4 packets passed going out on this interface.','0','30d','0','','49913','','','','','200','1','0','','','0','0','0','0','0','0','0','ec0b70c2c7d8452aaefefb737f567735','0','2','0'), ('43575','18','','10528','Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 traffic passed','net.if.out.pass.v4.bps[{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB IPv4 bits per second passed going out on this interface.','0','30d','0','','49913','','','','','200','1','0','','','0','0','0','0','0','0','0','be3ab46dc43d45da88917689e02b9f70','0','2','0'), ('43576','18','','10528','Interface [{#IFNAME}({#IFALIAS})]: Outbound packets with errors','net.if.out.errors[{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','49914','','','','','200','1','0','','','0','0','0','0','0','0','0','357f0ab9a5814f06a04e5e2983226e26','0','2','0'), ('43577','18','','10528','Interface [{#IFNAME}({#IFALIAS})]: Outbound packets discarded','net.if.out.discards[{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','49914','','','','','200','1','0','','','0','0','0','0','0','0','0','d80bb6eac4ab43b58c6c785340b77494','0','2','0'), ('43578','18','','10528','Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 traffic blocked','net.if.out.block.v6.bps[{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB IPv6 bits per second blocked going out on this interface.','0','30d','0','','49913','','','','','200','1','0','','','0','0','0','0','0','0','0','dae11126c26543a7afd3c169fbc76cd5','0','2','0'), ('43579','18','','10528','Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 packets blocked','net.if.in.block.v4.pps[{#SNMPINDEX}]','0','31d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB The number of IPv4 packets blocked coming in on this interface.','0','30d','0','','49913','','','','','200','1','0','','','0','0','0','0','0','0','0','d34be70208614a599e8706ede8d28f6d','0','2','0'), ('43580','18','','10528','Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 packets blocked','net.if.out.block.v4.pps[{#SNMPINDEX}]','0','31d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB The number of IPv4 packets blocked going out on this interface.','0','30d','0','','49913','','','','','200','1','0','','','0','0','0','0','0','0','0','7f335123af85457cb5b8c43279f26b27','0','2','0'), ('43581','18','','10528','Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 traffic blocked','net.if.out.block.v4.bps[{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB IPv4 bits per second blocked going out on this interface.','0','30d','0','','49913','','','','','200','1','0','','','0','0','0','0','0','0','0','0be1b473b51541c38012847e52ae9e1f','0','2','0'), ('43582','18','','10528','Interface [{#IFNAME}({#IFALIAS})]: Bits received','net.if.in[{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','49914','','','','','200','1','0','','','0','0','0','0','0','0','0','df19df9d63604ec294a49478a0963da2','0','2','0'), ('43583','18','','10528','Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 packets passed','net.if.in.pass.v6.pps[{#SNMPINDEX}]','0','31d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB The number of IPv6 packets passed coming in on this interface.','0','30d','0','','49913','','','','','200','1','0','','','0','0','0','0','0','0','0','23daac718d7743248b4e9e5dd9d537bf','0','2','0'), ('43584','18','','10528','Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 traffic passed','net.if.in.pass.v6.bps[{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB IPv6 bits per second passed coming in on this interface.','0','30d','0','','49913','','','','','200','1','0','','','0','0','0','0','0','0','0','a21b0c97af544225971a6d0a2ddeaf2c','0','2','0'), ('43585','18','','10528','Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 packets passed','net.if.in.pass.v4.pps[{#SNMPINDEX}]','0','31d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB The number of IPv4 packets passed coming in on this interface.','0','30d','0','','49913','','','','','200','1','0','','','0','0','0','0','0','0','0','367629501e4248e0b6de19e7123b0df6','0','2','0'), ('43586','18','','10528','Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 traffic passed','net.if.in.pass.v4.bps[{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB IPv4 bits per second passed coming in on this interface.','0','30d','0','','49913','','','','','200','1','0','','','0','0','0','0','0','0','0','da65b40184d84a2a98dd595e17794875','0','2','0'), ('43587','18','','10528','Interface [{#IFNAME}({#IFALIAS})]: Inbound packets with errors','net.if.in.errors[{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','49914','','','','','200','1','0','','','0','0','0','0','0','0','0','c6f650d534c94a1bb0bf1faca829c538','0','2','0'), ('43588','18','','10528','Interface [{#IFNAME}({#IFALIAS})]: Inbound packets discarded','net.if.in.discards[{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','30d','0','','49914','','','','','200','1','0','','','0','0','0','0','0','0','0','77ad7ea9f85d419a81d99531ba71ef1d','0','2','0'), ('43589','18','','10528','Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 packets blocked','net.if.in.block.v6.pps[{#SNMPINDEX}]','0','31d','365d','0','3','','pps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB The number of IPv6 packets blocked coming in on this interface.','0','30d','0','','49913','','','','','200','1','0','','','0','0','0','0','0','0','0','b9335034e4f94bb1b15f5b74a6467f89','0','2','0'), ('43590','18','','10528','Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 traffic blocked','net.if.in.block.v6.bps[{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: BEGEMOT-PF-MIB IPv6 bits per second blocked coming in on this interface.','0','30d','0','','49913','','','','','200','1','0','','','0','0','0','0','0','0','0','e6bc104196ad44f8abf8b7609b464f07','0','2','0'), ('43591','18','','10528','Interface [{#IFNAME}({#IFALIAS})]: Interface type','net.if.type[{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1017','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','30d','0','','49914','','','','','200','1','0','','','0','0','0','0','0','0','0','2874d024da724dc687d0d8fa940fcf87','0','2','0'), ('43596','18','','10529','Get alarms check','aws.rds.alarms.check','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data collection check.','0','30d','0','','43595','','','','','200','1','0','','','0','0','0','0','0','0','0','94471806c4cf482fb66cbe305a0e87a5','0','2','0'), ('43597','18','','10529','Replication: Lag','aws.rds.replica_lag','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time a read replica DB instance lags behind the source DB instance. Applies to MySQL, MariaDB, Oracle, PostgreSQL, and SQL Server read replicas.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','7be22cd083bc401bbbd2d75f2f6816de','0','2','0'), ('43598','18','','10529','Disk: Read latency','aws.rds.read_latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The average amount of time taken per disk I/O operation.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','3ad5d0d0bbbb4e579c74dd54923ccd8b','0','2','0'), ('43599','18','','10529','Disk: Read latency, local storage','aws.rds.read_latency_local_storage','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The average amount of time taken per disk I/O operation for local storage. Only applies to Multi-AZ DB clusters.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','2d85eb0d8e2641bf95b3c5dbbb125089','0','2','0'), ('43600','18','','10529','Read replica: State','aws.rds.read_replica_state','0','31d','0','0','1','','','','',NULL,'1022','','','0','','','','','0',NULL,'The status of a read replica. If the instance isn''t a read replica, this is blank. Boolean value that is true if the instance is operating normally, or false if the instance is in an error state.','0','30d','0','','43593','','','','','200','1','0','','','0','0','0','0','0','0','0','9253279ef6c34d86a2b1750c8d8b29d0','0','2','0'), ('43601','18','','10529','Read replica: Status','aws.rds.read_replica_status','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The status of a read replica. If the instance isn''t a read replica, this is blank. Status of the DB instance. For a StatusType of read replica, the values can be replicating, replication stop point set, replication stop point reached, error, stopped, or terminated.','0','30d','0','','43593','','','','','200','1','0','','','0','0','0','0','0','0','0','8fd266a7e4744395b21638b58c939072','0','2','0'), ('43602','18','','10529','Disk: Read throughput','aws.rds.read_throughput.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The average number of bytes read from disk per second.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','14b63bcb60fd4c91b87357d3f77e71df','0','2','0'), ('43603','18','','10529','Disk: Read throughput, local storage','aws.rds.read_throughput_local_storage.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The average number of bytes read from disk per second for local storage. Only applies to Multi-AZ DB clusters.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','bc963bae1664421c8874d77b085006a6','0','2','0'), ('43604','18','','10529','Status','aws.rds.status','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Specifies the current state of this database. All possible status values and their description: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/accessing-monitoring.html#Overview.DBInstance.Status','0','30d','0','','43593','','','','','200','1','0','','','0','0','0','0','0','0','0','f6fe45dc205241cb99b1822d3f78cce6','0','2','0'), ('43605','18','','10529','Disk: Read IOPS','aws.rds.read_iops.rate','0','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The average number of disk I/O operations per second. Aurora PostgreSQL-Compatible Edition reports read and write IOPS separately, in 1-minute intervals.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','3f9ac8ce149e4fb2a65580941c4d5428','0','2','0'), ('43606','18','','10529','Storage: Allocated','aws.rds.storage.allocated','0','31d','365d','0','0','','!GiB','','',NULL,NULL,'','','0','','','','','0',NULL,'Specifies the allocated storage size specified in gibibytes (GiB).','0','30d','0','','43593','','','','','200','1','0','','','0','0','0','0','0','0','0','2694163a440f40e4a5ec41111f9abf59','0','2','0'), ('43607','18','','10529','Storage: Max allocated','aws.rds.storage.max_allocated','0','31d','365d','0','0','','!GiB','','',NULL,NULL,'','','0','','','','','0',NULL,'The upper limit in gibibytes (GiB) to which Amazon RDS can automatically scale the storage of the DB instance. If limit is not specified returns -1.','0','30d','0','','43593','','','','','200','1','0','','','0','0','0','0','0','0','0','1aafa7a752274a1abb30b7b2e067b857','0','2','0'), ('43608','18','','10529','Network: Receive throughput','aws.rds.storage_network_receive_throughput','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The incoming (receive) network traffic on the DB instance, including both customer database traffic and Amazon RDS traffic used for monitoring and replication. For Amazon Aurora: The amount of network throughput received from the Aurora storage subsystem by each instance in the DB cluster.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','842f80f586794da39562ceb3cb09d5a4','0','2','0'), ('43609','18','','10529','Network: Transmit throughput','aws.rds.storage_network_transmit_throughput','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The outgoing (transmit) network traffic on the DB instance, including both customer database traffic and Amazon RDS traffic used for monitoring and replication. For Amazon Aurora: The amount of network throughput sent to the Aurora storage subsystem by each instance in the Aurora MySQL DB cluster.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','bab141cde0114edf8b02211565df5b1f','0','2','0'), ('43610','18','','10529','Storage type','aws.rds.storage_type','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Specifies the storage type associated with DB instance.','0','30d','0','','43593','','','','','200','1','0','','','0','0','0','0','0','0','0','6b3a8fd76fe6466395dcc4926d7177b4','0','2','0'), ('43611','18','','10529','Swap usage','aws.rds.swap_usage','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of swap space used. This metric is available for the Aurora PostgreSQL DB instance classes db.t3.medium, db.t3.large, db.r4.large, db.r4.xlarge, db.r5.large, db.r5.xlarge, db.r6g.large, and db.r6g.xlarge. For Aurora MySQL, this metric applies only to db.t* DB instance classes. This metric is not available for SQL Server.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','f9d1a5169ec54f648937eac63b3ebcbb','0','2','0'), ('43612','18','','10529','Disk: Write IOPS','aws.rds.write_iops.rate','0','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of write records generated per second. This is more or less the number of log records generated by the database. These do not correspond to 8K page writes, and do not correspond to network packets sent.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','a64c2caccd884f0f9bb7c9c9295baf45','0','2','0'), ('43613','18','','10529','Disk: Write IOPS, local storage','aws.rds.write_iops_local_storage.rate','0','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The average number of disk write I/O operations per second on local storage in a Multi-AZ DB cluster.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','19dc221c59ec4587af496bd644830869','0','2','0'), ('43614','18','','10529','Disk: Write latency','aws.rds.write_latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The average amount of time taken per disk I/O operation.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','57e84381425d4706a2bcea41e0373157','0','2','0'), ('43615','18','','10529','Disk: Write latency, local storage','aws.rds.write_latency_local_storage','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The average amount of time taken per disk I/O operation on local storage in a Multi-AZ DB cluster.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','b34b656492e8479ea03b97815d368752','0','2','0'), ('43616','18','','10529','Disk: Write throughput','aws.rds.write_throughput.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The average number of bytes written to persistent storage every second.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','db6932f63f7843508bb9e5559a69e8c3','0','2','0'), ('43617','18','','10529','Disk: Read IOPS, local storage','aws.rds.read_iops_local_storage.rate','0','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The average number of disk read I/O operations to local storage per second. Only applies to Multi-AZ DB clusters.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','bd55865999364de890e87da30676adea','0','2','0'), ('43618','18','','10529','Network: Receive throughput','aws.rds.network_receive_throughput.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The incoming (Receive) network traffic on the DB instance, including both customer database traffic and Amazon RDS traffic used for monitoring and replication.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','4d5ce2d0bb0648a6b4e4df98dc20fb49','0','2','0'), ('43619','18','','10529','Network: Transmit throughput','aws.rds.network_transmit_throughput.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The outgoing (Transmit) network traffic on the DB instance, including both customer database traffic and Amazon RDS traffic used for monitoring and replication.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','a97083537fce49c99caf71d1b0b2926f','0','2','0'), ('43620','18','','10529','EBS: IO balance','aws.rds.ebs_io_balance','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of I/O credits remaining in the burst bucket of your RDS database. This metric is available for basic monitoring only. To find the instance sizes that support this metric, see the instance sizes with an asterisk (*) in the EBS optimized by default table (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-optimized.html#current) in Amazon RDS User Guide for Linux Instances.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','44eadf0d51244375a302110cb00e8e88','0','2','0'), ('43621','18','','10529','Burst balance','aws.rds.burst_balance','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percent of General Purpose SSD (gp2) burst-bucket I/O credits available.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','7b7273f5d9144dd1b82c8c3fb649f593','0','2','0'), ('43622','18','','10529','Class','aws.rds.class','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Contains the name of the compute and memory capacity class of the DB instance.','0','30d','0','','43593','','','','','200','1','0','','','0','0','0','0','0','0','0','975ee74af92c4b589f2488d403fdb18d','0','2','0'), ('43623','18','','10529','Credit CPU: Balance','aws.rds.cpu.credit_balance','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of CPU credits that an instance has accumulated, reported at 5-minute intervals. You can use this metric to determine how long a DB instance can burst beyond its baseline performance level at a given rate. When an instance is running, credits in the CPUCreditBalance don''t expire. When the instance stops, the CPUCreditBalance does not persist, and all accrued credits are lost. This metric applies only to db.t2.small and db.t2.medium instances for Aurora MySQL, and to db.t3 instances for Aurora PostgreSQL.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','83d19e8a062b4890a4897e97bb1d5a24','0','2','0'), ('43624','18','','10529','Credit CPU: Usage','aws.rds.cpu.credit_usage','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of CPU credits consumed during the specified period, reported at 5-minute intervals. This metric measures the amount of time during which physical CPUs have been used for processing instructions by virtual CPUs allocated to the DB instance. This metric applies only to db.t2.small and db.t2.medium instances for Aurora MySQL, and to db.t3 instances for Aurora PostgreSQL','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','14c1c44a312b4343b0ded785a7ae910c','0','2','0'), ('43625','18','','10529','CPU: Utilization','aws.rds.cpu.utilization','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of CPU utilization.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','b69d180c94a34882bd3faa58f8847f65','0','2','0'), ('43626','18','','10529','Create time','aws.rds.create_time','0','31d','365d','0','0','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'Provides the date and time the DB instance was created.','0','30d','0','','43593','','','','','200','1','0','','','0','0','0','0','0','0','0','8b4cbe054bd04d67bf7bcca006740599','0','2','0'), ('43627','18','','10529','Connections','aws.rds.database_connections','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of client network connections to the database instance. The number of database sessions can be higher than the metric value because the metric value doesn''t include the following: - Sessions that no longer have a network connection but which the database hasn''t cleaned up - Sessions created by the database engine for its own purposes - Sessions created by the database engine''s parallel execution capabilities - Sessions created by the database engine job scheduler - Amazon Aurora/RDS connections','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','9def6dbb88c249e8bdbac484f2e1cfb0','0','2','0'), ('43628','18','','10529','Disk: Queue depth','aws.rds.disk_queue_depth','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of outstanding read/write requests waiting to access the disk.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','a60833d27daf49329c58a4ca0d9affa5','0','2','0'), ('43629','18','','10529','EBS: Byte balance','aws.rds.ebs_byte_balance','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of throughput credits remaining in the burst bucket of your RDS database. This metric is available for basic monitoring only. To find the instance sizes that support this metric, see the instance sizes with an asterisk (*) in the EBS optimized by default table (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-optimized.html#current) in Amazon RDS User Guide for Linux Instances.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','1fb56b1936024dfca328660471827ce2','0','2','0'), ('43630','18','','10529','Engine','aws.rds.engine','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Database engine.','0','30d','0','','43593','','','','','200','1','0','','','0','0','0','0','0','0','0','cad47e37ddc04100a8a7c3bca5f9049f','0','2','0'), ('43631','18','','10529','Network: Throughput','aws.rds.network_throughput.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of network throughput both received from and transmitted to clients by each instance in the Aurora MySQL DB cluster, in bytes per second. This throughput doesn''t include network traffic between instances in the DB cluster and the cluster volume.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','8de924155ca646e0a63de9fb4184e2b7','0','2','0'), ('43632','18','','10529','Engine version','aws.rds.engine.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates the database engine version.','0','30d','0','','43593','','','','','200','1','0','','','0','0','0','0','0','0','0','fefdac322230485cb792f295bb1420af','0','2','0'), ('43633','18','','10529','Get events check','aws.rds.events.check','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data collection check.','0','30d','0','','43594','','','','','200','1','0','','','0','0','0','0','0','0','0','5e83a36bcbf64098938ab7bb4725c39c','0','2','0'), ('43634','18','','10529','SQLServer: Failed agent jobs','aws.rds.failed_sql_server_agent_jobs_count','0','31d','365d','0','0','','Rpm','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of failed Microsoft SQL Server Agent jobs during the last minute.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','641677b6f7c147058b1e77967754028f','0','2','0'), ('43635','18','','10529','Memory, freeable','aws.rds.freeable_memory','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of available random access memory. For MariaDB, MySQL, Oracle, and PostgreSQL DB instances, this metric reports the value of the MemAvailable field of /proc/meminfo.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','df8b49f346f8468b887526700295a6c4','0','2','0'), ('43636','18','','10529','Storage: Local free','aws.rds.free_local_storage','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of local storage available, in bytes. Unlike for other DB engines, for Aurora DB instances this metric reports the amount of storage available to each DB instance. This value depends on the DB instance class. You can increase the amount of free storage space for an instance by choosing a larger DB instance class for your instance. (This doesn''t apply to Aurora Serverless v2.)','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','33dfd559dd93470cabf27f3a9a0968f1','0','2','0'), ('43637','18','','10529','Storage: Space free','aws.rds.free_storage_space','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of available storage space.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','fc3fbf1da0b9481c9eee00838c05157f','0','2','0'), ('43638','18','','10529','Get instance info check','aws.rds.instance_info.check','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data collection check.','0','30d','0','','43593','','','','','200','1','0','','','0','0','0','0','0','0','0','72fb52bfbcf44ad58df0d49525654cde','0','2','0'), ('43639','18','','10529','Get metrics check','aws.rds.metrics.check','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data collection check.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','8f651a01cd1d4639b6a4ef443285b24c','0','2','0'), ('43640','18','','10529','Disk: Binlog Usage','aws.rds.bin_log_disk_usage','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of disk space occupied by binary logs on the master. Applies to MySQL read replicas.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','9e40764a74e54c3b8bf0e7f75fe5f115','0','2','0'), ('43641','18','','10529','Disk: Write throughput, local storage','aws.rds.write_throughput_local_storage.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The average number of bytes written to disk per second for local storage.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','f30df9f386be49948bce7817d56dae09','0','2','0'), ('43642','18','','10529','Instance Alarms discovery','aws.rds.alarms.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery instance alarms.','0','7d','1','','43595','','','','','200','1','0','','','0','0','0','0','0','0','0','29b2b32b0d82450393f77ec7e093ef81','0','2','0'), ('43644','18','','10529','Instance Events discovery','aws.rds.events.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery instance events.','0','7d','1','','43594','','','','','200','1','0','','','0','0','0','0','0','0','0','cb9080a3bf4c4c51936bb8d818f69adc','0','2','0'), ('43646','18','','10529','[{#ALARM_NAME}]: State','aws.rds.alarm.state["{#ALARM_NAME}"]','0','31d','365d','0','3','','','','',NULL,'1021','','','0','','','','','2',NULL,'The state value for the alarm. Possible values: 0 (OK), 1 (INSUFFICIENT_DATA), 2 (ALARM). Alarm description: {#ALARM_DESCRIPTION}','0','30d','0','','43595','','','','','200','1','0','','','0','0','0','0','0','0','0','aab5aaf6e27740c6ac92f5494b3aef4b','0','2','0'), ('43647','18','','10529','[{#ALARM_NAME}]: State reason','aws.rds.alarm.state_reason["{#ALARM_NAME}"]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'An explanation for the alarm state, in text format. Alarm description: {#ALARM_DESCRIPTION}','0','30d','0','','43595','','','','','200','1','0','','','0','0','0','0','0','0','0','6e95f834b2284447b5ab0f6516d29946','0','2','0'), ('43648','18','','10529','Replication: Lag, max','aws.rds.aurora_replica_lag.max[{#SINGLETON}]','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The maximum amount of lag between the primary instance and each Aurora DB instance in the DB cluster.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','28df1a214515425099514140a1244cc4','0','2','0'), ('43649','18','','10529','Replication: Lag, min','aws.rds.aurora_replica_lag.min[{#SINGLETON}]','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The minimum amount of lag between the primary instance and each Aurora DB instance in the DB cluster.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','39e226420be740bd81712624d4d86882','0','2','0'), ('43650','18','','10529','Replication: Lag','aws.rds.aurora_replica_lag[{#SINGLETON}]','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'For an Aurora replica, the amount of lag when replicating updates from the primary instance.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','966022d4bc484918b9497d3515c35f9d','0','2','0'), ('43651','18','','10529','Buffer Cache hit ratio','aws.rds.buffer_cache_hit_ratio[{#SINGLETON}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of requests that are served by the buffer cache.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','4a76341c354540b48677c29a92270d57','0','2','0'), ('43652','18','','10529','Operations: Commit latency','aws.rds.commit_latency[{#SINGLETON}]','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of latency for commit operations.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','a988ecbcb5804916a37e2c4270cf1261','0','2','0'), ('43653','18','','10529','Operations: Commit throughput','aws.rds.commit_throughput.rate[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The average number of commit operations per second.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','0892af875af04dbebd3954b37a196605','0','2','0'), ('43654','18','','10529','Deadlocks, rate','aws.rds.deadlocks.rate[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The average number of deadlocks in the database per second.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','febdffdd64974deb91185af1bbc78ffd','0','2','0'), ('43655','18','','10529','Engine uptime','aws.rds.engine_uptime[{#SINGLETON}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of time that the instance has been running.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','24d139d74b034e2096f50943fa003e4f','0','2','0'), ('43656','18','','10529','Rollback segment history list length','aws.rds.rollback_segment_history_list_length[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The undo logs that record committed transactions with delete-marked records. These records are scheduled to be processed by the InnoDB purge operation.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','65ee7a93945d4c7baf6c20137e62b9dc','0','2','0'), ('43657','18','','10529','Row lock time','aws.rds.row_locktime[{#SINGLETON}]','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The total time spent acquiring row locks for InnoDB tables.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','2c1b3f9701f343e5845c78c52e71f72f','0','2','0'), ('43658','18','','10529','Operations: Select latency','aws.rds.select_latency[{#SINGLETON}]','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of latency for select queries.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','05218f79a137466392af0652acfe2db5','0','2','0'), ('43659','18','','10529','Operations: Select throughput','aws.rds.select_throughput.rate[{#SINGLETON}]','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','2',NULL,'The average number of select queries per second.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','849c0bd9b5d940568bc1e71eb6318738','0','2','0'), ('43660','18','','10529','Network: Throughput','aws.rds.storage_network_throughput[{#SINGLETON}]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of network throughput received from and sent to the Aurora storage subsystem by each instance in the Aurora MySQL DB cluster.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','62e6fa21b2f54030bbbd04f268de5737','0','2','0'), ('43661','18','','10529','[{#EVENT_CATEGORY}]: {#EVENT_SOURCE_TYPE}/{#EVENT_SOURCE_ID} : Date','aws.rds.event_date["{#EVENT_CATEGORY}/{#EVENT_SOURCE_TYPE}/{#EVENT_SOURCE_ID}"]','0','31d','365d','0','0','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Provides the text of this event.','0','30d','0','','43594','','','','','200','1','0','','','0','0','0','0','0','0','0','21b9df85f2e841c48204c7cb4fb5caeb','0','2','0'), ('43662','18','','10529','[{#EVENT_CATEGORY}]: {#EVENT_SOURCE_TYPE}/{#EVENT_SOURCE_ID}: Message','aws.rds.event_message["{#EVENT_CATEGORY}/{#EVENT_SOURCE_TYPE}/{#EVENT_SOURCE_ID}"]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Provides the text of this event.','0','30d','0','','43594','','','','','200','1','0','','','0','0','0','0','0','0','0','10cf420329fa42c08266a5d38bc7678b','0','2','0'), ('43663','18','','10529','Connections: Aborted','aws.rds.aurora_clients_aborted[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of client connections that have not been closed properly.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','3842a935bedf446d8b8b9a7fd58fc24b','0','2','0'), ('43664','18','','10529','DML: Throughput','aws.rds.dml_throughput.rate[{#SINGLETON}]','0','31d','365d','0','0','','rate','','',NULL,NULL,'','','0','','','','','2',NULL,'The average number of inserts, updates, and deletes per second.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','97ce5f3d119c4381a99ead5effe6af44','0','2','0'), ('43665','18','','10529','Operations: Update latency','aws.rds.update_latency[{#SINGLETON}]','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of latency for update queries.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','44dcd553afe641d1b147426e614a7b41','0','2','0'), ('43666','18','','10529','Binary log files, size','aws.rds.sum_binary_log_files[{#SINGLETON}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total size of the binlog files.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','3b66ac67006b4229b1d523dfe19fcb1f','0','2','0'), ('43667','18','','10529','Resultset cache hit ratio','aws.rds.result_set_cache_hit_ratio[{#SINGLETON}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of requests that are served by the Resultset cache.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','886f68d6a1eb4953aef3fc4cf1296c62','0','2','0'), ('43668','18','','10529','Queries, rate','aws.rds.queries.rate[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The average number of queries executed per second.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','c7a191af58644441bfe9aa8579dd9190','0','2','0'), ('43669','18','','10529','Binary log files, number','aws.rds.num_binary_log_files[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of binlog files generated.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','c932d4f773c04499b045ddb4b767decb','0','2','0'), ('43670','18','','10529','Login failures, rate','aws.rds.login_failures.rate[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The average number of failed login attempts per second.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','c68d9d4496a84bf883330b1a82b62171','0','2','0'), ('43671','18','','10529','Operations: Insert throughput','aws.rds.insert_throughput.rate[{#SINGLETON}]','0','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','2',NULL,'The average number of insert queries per second.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','db20ce55abbf4f248b8ac40a6f5576ec','0','2','0'), ('43672','18','','10529','Operations: Insert latency','aws.rds.insert_latency[{#SINGLETON}]','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of latency for insert queries, in milliseconds.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','182efdd016e9473eb4791e5343043b57','0','2','0'), ('43673','18','','10529','DML: Latency','aws.rds.dml_latency[{#SINGLETON}]','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of latency for inserts, updates, and deletes.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','0ff7f102065a450cb77030c5f2e9cc76','0','2','0'), ('43674','18','','10529','Replication: Binlog lag','aws.rds.aurora_replication_binlog_lag[{#SINGLETON}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of time that a binary log replica DB cluster running on Aurora MySQL-Compatible Edition lags behind the binary log replication source. A lag means that the source is generating records faster than the replica can apply them. The metric value indicates the following: A high value: The replica is lagging the replication source. 0 or a value close to 0: The replica process is active and current. -1: Aurora can''t determine the lag, which can happen during replica setup or when the replica is in an error state','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','8b87e0f4f1fc4290a7c72ec382b74941','0','2','0'), ('43675','18','','10529','Operations: Delete throughput','aws.rds.delete_throughput.rate[{#SINGLETON}]','0','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','2',NULL,'The average number of delete queries per second.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','9a28a1a0e1194d4fb55a5c2e926a7142','0','2','0'), ('43676','18','','10529','Operations: Delete latency','aws.rds.delete_latency[{#SINGLETON}]','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of latency for delete queries.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','ab6a2d6f9c04497c86464f10aafa178c','0','2','0'), ('43677','18','','10529','DDL: Throughput','aws.rds.ddl_throughput.rate[{#SINGLETON}]','0','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','2',NULL,'The average number of DDL requests per second.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','1ee5fdb6ed004e708ebe5ec8b2d039ba','0','2','0'), ('43678','18','','10529','DDL: Latency','aws.rds.ddl_latency[{#SINGLETON}]','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of latency for data definition language (DDL) requests - for example, create, alter, and drop requests.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','3033650e795943bfab73e9d7347f3d24','0','2','0'), ('43679','18','','10529','Transactions: Blocked, rate','aws.rds.blocked_transactions.rate[{#SINGLETON}]','0','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','2',NULL,'The average number of transactions in the database that are blocked per second.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','570e88d397524dfeb10d6c46cc859404','0','2','0'), ('43680','18','','10529','Backtrack: Window, alert','aws.rds.backtrack_window_alert[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of times that the actual backtrack window is smaller than the target backtrack window for a given period of time.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','20de520b7f53459db765eb221fcef248','0','2','0'), ('43681','18','','10529','Backtrack: Window, actual','aws.rds.backtrack_window_actual[{#SINGLETON}]','0','31d','365d','0','0','','!minutes','','',NULL,NULL,'','','0','','','','','2',NULL,'The difference between the target backtrack window and the actual backtrack window.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','44ca3ca16bd1450790099a0354e78f13','0','2','0'), ('43682','18','','10529','Transactions: Active, rate','aws.rds.aurora_transactions_active.rate[{#SINGLETON}]','0','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','2',NULL,'The average number of current transactions executing on an Aurora database instance per second. By default, Aurora doesn''t enable this metric. To begin measuring this value, set innodb_monitor_enable=''all'' in the DB parameter group for a specific DB instance.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','97f85bd65fc64b66b57b122f8689bc38','0','2','0'), ('43683','18','','10529','Operations: Update throughput','aws.rds.update_throughput.rate[{#SINGLETON}]','0','31d','365d','0','0','','Rps','','',NULL,NULL,'','','0','','','','','2',NULL,'The average number of update queries per second.','0','30d','0','','43592','','','','','200','1','0','','','0','0','0','0','0','0','0','3a3548d63e1a4aab8853e13645f5898f','0','2','0'), ('43696','18','','10530','Number of objects','aws.s3.number_of_objects','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This is a daily metric for the bucket. The total number of objects stored in a bucket for all storage classes. This value is calculated by counting all objects in the bucket (both current and noncurrent objects) and the total number of parts for all incomplete multipart uploads to the bucket.','0','30d','0','','43684','','','','','200','1','0','','','0','0','0','0','0','0','0','75b467e2079c41c5b3e8f79df8c5a9ba','0','2','0'), ('43697','18','','10530','Get metrics check','aws.s3.metrics.check','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data collection check.','0','30d','0','','43684','','','','','200','1','0','','','0','0','0','0','0','0','0','0e22c196ae834d2899068f25316ffed2','0','2','0'), ('43707','18','','10530','Bucket Size','aws.s3.bucket_size_bytes','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'This is a daily metric for the bucket. The amount of data in bytes stored in a bucket in the STANDARD storage class, INTELLIGENT_TIERING storage class, Standard-Infrequent Access (STANDARD_IA) storage class, OneZone-Infrequent Access (ONEZONE_IA), Reduced Redundancy Storage (RRS) class, S3 Glacier Instant Retrieval storage class, Deep Archive Storage (S3 Glacier Deep Archive) class, or S3 Glacier Flexible Retrieval (GLACIER) storage class. This value is calculated by summing the size of all objects and metadata in the bucket (both current and noncurrent objects), including the size of all parts for all incomplete multipart uploads to the bucket.','0','30d','0','','43684','','','','','200','1','0','','','0','0','0','0','0','0','0','fceb9927715443059269fa4589f90f67','0','2','0'), ('43709','18','','10530','Get alarms check','aws.s3.alarms.check','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data collection check.','0','30d','0','','43685','','','','','200','1','0','','','0','0','0','0','0','0','0','7ca108eafb0d4b65a304815ee637174e','0','2','0'), ('43711','18','','10530','Bucket Alarms discovery','aws.s3.alarms.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of bucket alarms.','0','7d','1','','43685','','','','','200','1','0','','','0','0','0','0','0','0','0','26c424a60a7a4975996ccc44601c4ee3','0','2','0'), ('43712','18','','10530','[{#ALARM_NAME}]: State','aws.s3.alarm.state["{#ALARM_NAME}"]','0','31d','365d','0','3','','','','',NULL,'1023','','','0','','','','','2',NULL,'The state value for the alarm. Possible values: 0 (OK), 1 (INSUFFICIENT_DATA), 2 (ALARM). Alarm description: {#ALARM_DESCRIPTION}','0','30d','0','','43685','','','','','200','1','0','','','0','0','0','0','0','0','0','b38bd6e4566445acb52e8ecce4014f0f','0','2','0'), ('43713','18','','10530','[{#ALARM_NAME}]: State reason','aws.s3.alarm.state_reason["{#ALARM_NAME}"]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'An explanation for the alarm state, in text format. Alarm description: {#ALARM_DESCRIPTION}','0','30d','0','','43685','','','','','200','1','0','','','0','0','0','0','0','0','0','7e536a43faf742058d303ffe21cd9a8c','0','2','0'), ('43716','18','','10531','Get errors','azure.get.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A list of errors from API requests.','0','30d','0','','43714','','','','','200','1','0','','','0','0','0','0','0','0','0','7b2fe9a7ee164718933eb456b0068fea','0','2','0'), ('43717','18','','10532','Availability status detailed','azure.vm.availability.details','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The summary description of availability status.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','c299999d69904340acd44fead6c7672c','0','2','0'), ('43718','18','','10532','OS disk read rate','azure.vm.os.disk.read.bps','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Bytes/sec read from a single disk during the monitoring period - for an OS disk.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','30265aac759d45769769eae081f570ac','0','2','0'), ('43719','18','','10532','Outbound flows max creation rate','azure.vm.flows.outbound.max','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum creation rate of the outbound flows (the traffic going out of the VM).','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','eac3e6b53d394e3289fc03bf5772799c','0','2','0'), ('43720','18','','10532','Available memory','azure.vm.memory.available','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Amount of physical memory, in bytes, immediately available for the allocation to a process or for a system use in the virtual machine.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','0a354c9b104b468d9749adfd28d1373e','0','2','0'), ('43721','18','','10532','Network in total','azure.vm.network.in.total','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of bytes received by the VM via all network interfaces (incoming traffic).','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','411c5f6fcb374c4c90e2951a546c0c08','0','2','0'), ('43722','18','','10532','Network out total','azure.vm.network.out.total','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of bytes sent by the VM via all network interfaces (outgoing traffic).','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','ee2ef1d1e2844ae8be2a5f04c86631ba','0','2','0'), ('43723','18','','10532','OS disk bandwidth consumed','azure.vm.os.disk.bandwidth.consumed','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of the operating system disk bandwidth consumed per minute.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','24c58e473c5c4b8388a0e78ae38378fc','0','2','0'), ('43724','18','','10532','OS disk IOPS consumed','azure.vm.os.disk.iops.consumed','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of the operating system disk I/Os consumed per minute.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','33a7fff9758046e3be07dad6c0a710ca','0','2','0'), ('43725','18','','10532','OS disk max burst bandwidth','azure.vm.os.disk.bandwidth.max','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum byte-per-second throughput that the OS disk can achieve with bursting.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','7d0ca132bc264ac08e3c55809bdc40d1','0','2','0'), ('43726','18','','10532','OS disk max burst IOPS','azure.vm.os.disk.iops.max','0','31d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum IOPS that the OS disk can achieve with bursting.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','8374282688dc4fabb770c07eb335c666','0','2','0'), ('43727','18','','10532','OS disk queue depth','azure.vm.os.disk.queue.depth','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The OS disk queue depth (or queue length).','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','ca8fe9d0ea58482c9bb8b83a716362a2','0','2','0'), ('43728','18','','10532','OS disk IOPS read','azure.vm.os.disk.read.ops','0','31d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'Read IOPS from a single disk during the monitoring period - for an OS disk.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','f11fcbbd63234993a9c301dc8bac3e80','0','2','0'), ('43729','18','','10532','Inbound flows max creation rate','azure.vm.flows.inbound.max','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum creation rate of the inbound flows (the traffic going into the VM).','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','3964ffbb7ea949f69863edcf91f5c555','0','2','0'), ('43730','18','','10532','OS disk target bandwidth','azure.vm.os.disk.bandwidth.target','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Baseline byte-per-second throughput that the OS disk can achieve without bursting.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','5cc422b7da3145fa885a88bb6165e3b9','0','2','0'), ('43731','18','','10532','OS disk target IOPS','azure.vm.os.disk.iops.target','0','31d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'Baseline IOPS that the OS disk can achieve without bursting.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','556941b1df5d470f8de628230b085623','0','2','0'), ('43732','18','','10532','OS disk used burst BPS credits','azure.vm.os.disk.bandwidth.burst.used','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of the OS disk burst bandwidth credits used so far.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','9d42609950864c899a0d63b94f1d2235','0','2','0'), ('43733','18','','10532','OS disk used burst IO credits','azure.vm.os.disk.iops.burst.used','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of the OS disk burst I/O credits used so far.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','c08f45df2e594e1fab01ba63df7da05b','0','2','0'), ('43734','18','','10532','OS disk write rate','azure.vm.os.disk.write.bps','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Bytes/sec written to a single disk during the monitoring period - for an OS disk.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','7645519a786b42908f1ec693128899c2','0','2','0'), ('43735','18','','10532','OS disk IOPS write','azure.vm.os.disk.write.ops','0','31d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'Write IOPS from a single disk during the monitoring period - for an OS disk.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','1e9392bc0c934e7d93f743c86e36e23e','0','2','0'), ('43736','18','','10532','Premium data disk cache read hit in %','azure.vm.premium.data.disk.cache.read.hit','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of premium data disk cache read hit.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','d6fcff826cfa486d945f33708be2f630','0','2','0'), ('43737','18','','10532','Premium data disk cache read miss in %','azure.vm.premium.data.disk.cache.read.miss','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of premium data disk cache read miss.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','288853ee5d08442fa43f8df1dfcc7823','0','2','0'), ('43738','18','','10532','Premium OS disk cache read hit in %','azure.vm.premium.os.disk.cache.read.hit','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of premium OS disk cache read hit.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','66b629ae3d7e4abeaf0282414c91876f','0','2','0'), ('43739','18','','10532','Premium OS disk cache read miss in %','azure.vm.premium.os.disk.cache.read.miss','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of premium OS disk cache read miss.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','3927f34d5d0649d7ac29703f64054dbf','0','2','0'), ('43740','18','','10532','VM uncached bandwidth consumed','azure.vm.uncached.bandwidth.consumed','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of the uncached disk bandwidth consumed by the VM.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','d6e85395e34b4288988a5287d287f182','0','2','0'), ('43741','18','','10532','Outbound flows','azure.vm.flows.outbound','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of current flows in the outbound direction (the traffic going out of the VM).','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','2084cb1d010a4ab494c0826c458d922a','0','2','0'), ('43742','18','','10532','Inbound flows','azure.vm.flows.inbound','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of current flows in the inbound direction (the traffic going into the VM).','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','3a30a59aabd54c8b8feb1f4a8ba06db5','0','2','0'), ('43743','18','','10532','Availability state','azure.vm.availability.state','0','31d','365d','0','3','','','','',NULL,'1024','','','0','','','','','0',NULL,'The availability status of the resource. 0 - Available - no events detected that affect the health of the resource. 1 - Degraded - your resource detected a loss in performance, although it''s still available for use. 2 - Unavailable - the service detected an ongoing platform or non-platform event that affects the health of the resource. 3 - Unknown - Resource Health hasn''t received information about the resource for more than 10 minutes.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','25e2af44bfbf4e9083ce493d85232088','0','2','0'), ('43744','18','','10532','Data disk read rate','azure.vm.data.disk.read.bps','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Bytes per second read from a single disk during the monitoring period.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','021d92f3075544319191d6f85a701222','0','2','0'), ('43745','18','','10532','VM cached bandwidth consumed','azure.vm.cached.bandwidth.consumed','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of the cached disk bandwidth consumed by the VM.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','a93308573303437487d151de340fcaed','0','2','0'), ('43746','18','','10532','VM cached IOPS consumed','azure.vm.cached.iops.consumed','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of the cached disk IOPS consumed by the VM.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','989dec26d97d44b6bd4a84fdbd37dec5','0','2','0'), ('43747','18','','10532','CPU credits consumed','azure.vm.cpu.credits.consumed','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of credits consumed by the virtual machine. Only available on B-series burstable VMs.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','fb0641ca8f104cf1bebdced63cd6af16','0','2','0'), ('43748','18','','10532','CPU credits remaining','azure.vm.cpu.credits.remaining','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of credits available to burst. Available only on B-series burstable VMs.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','963752cbaba046cab1f05b0cbcff3137','0','2','0'), ('43749','18','','10532','CPU utilization','azure.vm.cpu.utilization','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of allocated compute units that are currently in use by virtual machine.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','492edacf92544a95a5aa7b034efa7931','0','2','0'), ('43750','18','','10532','Data disk bandwidth consumed','azure.vm.data.disk.bandwidth.consumed','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of the data disk bandwidth consumed per minute.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','47cda13c203e4f1e9918eb73fd8afa20','0','2','0'), ('43751','18','','10532','Data disk IOPS consumed','azure.vm.data.disk.iops.consumed','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of the data disk input/output (I/O) consumed per minute.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','3121980d3319431691ed9e98d176430b','0','2','0'), ('43752','18','','10532','Data disk max burst bandwidth','azure.vm.data.disk.bandwidth.max','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum byte-per-second throughput that the data disk can achieve with bursting.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','d0fb23206d564e1da746bff3369056c1','0','2','0'), ('43753','18','','10532','Data disk max burst IOPS','azure.vm.data.disk.iops.max','0','31d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum IOPS that the data disk can achieve with bursting.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','6afcbb02c53243faa341670f155678e4','0','2','0'), ('43754','18','','10532','Data disk queue depth','azure.vm.data.disk.queue.depth','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of outstanding IO requests that are waiting to be performed on a disk.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','b81f304bbc2a42df9b0550ecdc1ec6b7','0','2','0'), ('43755','18','','10532','Data disk IOPS read','azure.vm.data.disk.read.ops','0','31d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'Read IOPS from a single disk during the monitoring period.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','cc31283ab96548b7bdcc88e89dfae53c','0','2','0'), ('43756','18','','10532','Disk IOPS write','azure.vm.disk.write.ops','0','31d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of write operations to the disk per second.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','0d93d1b510614c1f83418bd481f1e7cb','0','2','0'), ('43757','18','','10532','Data disk target bandwidth','azure.vm.data.disk.bandwidth.target','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Baseline byte-per-second throughput that the data disk can achieve without bursting.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','c61ad4af97c243cca75bbece40eea795','0','2','0'), ('43758','18','','10532','Data disk target IOPS','azure.vm.data.disk.iops.target','0','31d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'Baseline IOPS that the data disk can achieve without bursting.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','9370988456e74b889700ea5798d17092','0','2','0'), ('43759','18','','10532','Data disk used burst BPS credits','azure.vm.data.disk.bandwidth.burst.used','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of the data disk burst bandwidth credits used so far.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','68c730e4904f402cb12fb71b45fede02','0','2','0'), ('43760','18','','10532','Data disk used burst IO credits','azure.vm.data.disk.iops.burst.used','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of the data disk burst I/O credits used so far.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','731a82833bdd42c59c453adf8625e3b4','0','2','0'), ('43761','18','','10532','Data disk write rate','azure.vm.data.disk.write.bps','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Bytes per second written to a single disk during the monitoring period.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','b8712f8fd60a43f6b099d9eafed19945','0','2','0'), ('43762','18','','10532','Data disk IOPS write','azure.vm.data.disk.write.ops','0','31d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'Write IOPS from a single disk during the monitoring period.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','87794f5a502b4e2db91f820483e38fb3','0','2','0'), ('43763','18','','10532','Get errors','azure.vm.data.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A list of errors from API requests.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','e253c2a908944be1a033fc3df550d979','0','2','0'), ('43764','18','','10532','Disk read','azure.vm.disk.read.bytes','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Bytes read from the disk during the monitoring period.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','1dc9f8d45b6f48a38f701f089cbcb279','0','2','0'), ('43765','18','','10532','Disk IOPS read','azure.vm.disk.read.ops','0','31d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of read operations from the disk per second.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','cd3240d31a4f42a89b5c9817ea288b5a','0','2','0'), ('43766','18','','10532','Disk write','azure.vm.disk.write.bytes','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Bytes written to the disk during the monitoring period.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','b5e2070bde1444ea809ba4e0a29b05d9','0','2','0'), ('43767','18','','10532','VM uncached IOPS consumed','azure.vm.uncached.iops.consumed','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of the uncached disk IOPS consumed by the VM.','0','30d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','124203560922429bb32b76c45f24b2b9','0','2','0'), ('43768','18','','10531','Virtual machines discovery','azure.vm.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The list of virtual machines provided by the subscription.','0','7d','1','','43714','','','','','200','1','0','','','0','0','0','0','0','0','0','f9386233186648ce828f406c52972ce5','0','2','0'), ('43903','18','','10534','Get enclosures data','hpe.synergy.get.enclosures','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A list of enclosures.','0','30d','0','','43901','','','','','200','1','0','','','0','0','0','0','0','0','0','6a12ea452d444c8ca5aec2698709d979','0','2','0'), ('43904','18','','10534','Get errors','hpe.synergy.get.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A list of errors from API requests.','0','30d','0','','43901','','','','','200','1','0','','','0','0','0','0','0','0','0','c0049d63dffe4cdaafa806796051e06b','0','2','0'), ('44057','18','','10047','Zabbix proxy discovery','zabbix.proxy.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'LLD rule with item and trigger prototypes for proxy discovery.','0','7d','0','','44055','','','','','200','1','0','','','0','0','0','0','0','0','0','d6e3db2614914c1b977c7eb1b748bda6','0','2','0'), ('44081','18','','10261','Zabbix proxies stats','zabbix.proxies.stats','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The master item of Zabbix proxies'' statistics.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','1e6a7ebfc0de47fd823ff59458317172','0','2','0'), ('44094','18','','10524','Get pools','hpe.msa.get.pools','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Pools data.','0','30d','0','','43174','','','','','200','1','0','','','0','0','0','0','0','0','0','3151c9e9e3bf4e6c9305848cfd2c77c5','0','2','0'), ('44095','18','','10524','Get volume statistics','hpe.msa.get.volumes.statistics','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Volumes statistics data.','0','30d','0','','43174','','','','','200','1','0','','','0','0','0','0','0','0','0','d6ef8a24c09a478c817a1a7121bd383f','0','2','0'), ('44096','18','','10524','Get volumes','hpe.msa.get.volumes','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Volumes data.','0','30d','0','','43174','','','','','200','1','0','','','0','0','0','0','0','0','0','e67d5b42bf1b431ab9b1659377195d82','0','2','0'), ('44097','18','','10524','Get system','hpe.msa.get.system','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The system data.','0','30d','0','','43174','','','','','200','1','0','','','0','0','0','0','0','0','0','f9ec5e52bf22476d997c9ec5c445f11b','0','2','0'), ('44098','18','','10524','Get controllers','hpe.msa.get.controllers','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Controllers data.','0','30d','0','','43174','','','','','200','1','0','','','0','0','0','0','0','0','0','4a9a463f471c4c3bba031acab3c4d72e','0','2','0'), ('44099','18','','10524','Get ports','hpe.msa.get.ports','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Ports data.','0','30d','0','','43174','','','','','200','1','0','','','0','0','0','0','0','0','0','2c4012cbf947439f8938b9d432257067','0','2','0'), ('44100','18','','10524','Get disk group statistics','hpe.msa.disks.get.groups.statistics','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Disk groups statistics data.','0','30d','0','','43174','','','','','200','1','0','','','0','0','0','0','0','0','0','da724e20acee406b8dce3a1be24945a8','0','2','0'), ('44101','18','','10524','Get FRU','hpe.msa.get.fru','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'FRU data.','0','30d','0','','43174','','','','','200','1','0','','','0','0','0','0','0','0','0','ae00d12bb47e4c25b79a47ca8dc49538','0','2','0'), ('44102','18','','10524','Get fans','hpe.msa.get.fans','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Fans data.','0','30d','0','','43174','','','','','200','1','0','','','0','0','0','0','0','0','0','2b356e770025451e94e899123a2efc1b','0','2','0'), ('44103','18','','10524','Get enclosures','hpe.msa.get.enclosures','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Enclosures data.','0','30d','0','','43174','','','','','200','1','0','','','0','0','0','0','0','0','0','2e94a9c8fe5f4d6c90458b13cf1f6d64','0','2','0'), ('44104','18','','10524','Get disk groups','hpe.msa.get.disks.groups','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Disk groups data.','0','30d','0','','43174','','','','','200','1','0','','','0','0','0','0','0','0','0','3dc7a4c4e70c48f995d7d65c1652198a','0','2','0'), ('44105','18','','10524','Get disks','hpe.msa.get.disks','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Disks data.','0','30d','0','','43174','','','','','200','1','0','','','0','0','0','0','0','0','0','d4c534635bb74c2e8db99d68df6f9da2','0','2','0'), ('44106','18','','10524','Get controller statistics','hpe.msa.get.controller_statistics','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Controllers statistics data.','0','30d','0','','43174','','','','','200','1','0','','','0','0','0','0','0','0','0','54c0f623616a4f5c9505c0ae0ff6a85b','0','2','0'), ('44107','18','','10524','Get power supplies','hpe.msa.get.power_supplies','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Power supplies data.','0','30d','0','','43174','','','','','200','1','0','','','0','0','0','0','0','0','0','a24264fada444ed68f48d8b2ff17ab15','0','2','0'), ('44121','18','','10525','Get pools','hpe.msa.get.pools','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Pools data.','0','30d','0','','43281','','','','','200','1','0','','','0','0','0','0','0','0','0','09804c2149264387a81de7df98a07739','0','2','0'), ('44122','18','','10525','Get volume statistics','hpe.msa.get.volumes.statistics','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Volumes statistics data.','0','30d','0','','43281','','','','','200','1','0','','','0','0','0','0','0','0','0','052e68cc870149718239fd9567da6fce','0','2','0'), ('44123','18','','10525','Get volumes','hpe.msa.get.volumes','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Volumes data.','0','30d','0','','43281','','','','','200','1','0','','','0','0','0','0','0','0','0','b7e65fee619b47fab8551df9bdd5d4cb','0','2','0'), ('44124','18','','10525','Get system','hpe.msa.get.system','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The system data.','0','30d','0','','43281','','','','','200','1','0','','','0','0','0','0','0','0','0','8dd7fafd33144838a1b382cc75e551d7','0','2','0'), ('44125','18','','10525','Get controllers','hpe.msa.get.controllers','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Controllers data.','0','30d','0','','43281','','','','','200','1','0','','','0','0','0','0','0','0','0','098d8c93634e4a3ab69b39f2d813f81c','0','2','0'), ('44126','18','','10525','Get ports','hpe.msa.get.ports','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Ports data.','0','30d','0','','43281','','','','','200','1','0','','','0','0','0','0','0','0','0','c208ba831d534da9a8a650b31b7f4e8c','0','2','0'), ('44127','18','','10525','Get disk group statistics','hpe.msa.disks.get.groups.statistics','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Disk groups statistics data.','0','30d','0','','43281','','','','','200','1','0','','','0','0','0','0','0','0','0','e869b8e7cc7643ea805532c941fa0e16','0','2','0'), ('44128','18','','10525','Get FRU','hpe.msa.get.fru','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'FRU data.','0','30d','0','','43281','','','','','200','1','0','','','0','0','0','0','0','0','0','41ec35cca22d4e6fb22a4e3759718a36','0','2','0'), ('44129','18','','10525','Get fans','hpe.msa.get.fans','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Fans data.','0','30d','0','','43281','','','','','200','1','0','','','0','0','0','0','0','0','0','7bc300f30a804cdd8acbba20b6d45f4c','0','2','0'), ('44130','18','','10525','Get enclosures','hpe.msa.get.enclosures','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Enclosures data.','0','30d','0','','43281','','','','','200','1','0','','','0','0','0','0','0','0','0','376ca0be12304701bd7c9fc6c1743428','0','2','0'), ('44131','18','','10525','Get disk groups','hpe.msa.get.disks.groups','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Disk groups data.','0','30d','0','','43281','','','','','200','1','0','','','0','0','0','0','0','0','0','98f1f30231e6419cb8a91bb0a9127985','0','2','0'), ('44132','18','','10525','Get disks','hpe.msa.get.disks','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Disks data.','0','30d','0','','43281','','','','','200','1','0','','','0','0','0','0','0','0','0','b3488b287d7b48f2a26cbc39b62c4a67','0','2','0'), ('44133','18','','10525','Get controller statistics','hpe.msa.get.controller_statistics','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Controllers statistics data.','0','30d','0','','43281','','','','','200','1','0','','','0','0','0','0','0','0','0','61fe1e0cf61441c58cbd754805fefe9d','0','2','0'), ('44134','18','','10525','Get power supplies','hpe.msa.get.power_supplies','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Power supplies data.','0','30d','0','','43281','','','','','200','1','0','','','0','0','0','0','0','0','0','7cafbbb815324dc89f0db58384fe2e48','0','2','0'), ('44148','18','','10526','Get disks data','hpe.primera.get.disks','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Disks data.','0','30d','0','','43399','','','','','200','1','0','','','0','0','0','0','0','0','0','3940a3313b354d64924fc93be9b9db04','0','2','0'), ('44149','18','','10526','Get hosts data','hpe.primera.get.hosts','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Hosts data.','0','30d','0','','43399','','','','','200','1','0','','','0','0','0','0','0','0','0','c027fd5d976d42bd90126edb46ddfe88','0','2','0'), ('44150','18','','10526','Get ports data','hpe.primera.get.ports','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Ports data.','0','30d','0','','43399','','','','','200','1','0','','','0','0','0','0','0','0','0','1569a51d018345b390d3e2b3c368ba85','0','2','0'), ('44151','18','','10526','Get system data','hpe.primera.get.system','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'System data.','0','30d','0','','43399','','','','','200','1','0','','','0','0','0','0','0','0','0','6baed792c06444f598aec830f90f2f4c','0','2','0'), ('44152','18','','10526','Get tasks data','hpe.primera.get.tasks','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Tasks data.','0','30d','0','','43399','','','','','200','1','0','','','0','0','0','0','0','0','0','9d5697db544f4f3993e6df499ad51b49','0','2','0'), ('44153','18','','10526','Get volumes data','hpe.primera.get.volumes','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Volumes data.','0','30d','0','','43399','','','','','200','1','0','','','0','0','0','0','0','0','0','7faad091257b44f1a7ecf2c9156c83ca','0','2','0'), ('44154','18','','10526','Get CPGs data','hpe.primera.get.cpgs','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Common provisioning groups data.','0','30d','0','','43399','','','','','200','1','0','','','0','0','0','0','0','0','0','89aa29280dc349a2acaae520849857e0','0','2','0'), ('44163','18','','10539','Availability status detailed','azure.db.mysql.availability.details','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The summary description of the availability status.','0','30d','0','','44161','','','','','200','1','0','','','0','0','0','0','0','0','0','9c87cde45e984ce282d8ba9fbe184f9b','0','2','0'), ('44164','18','','10539','Memory utilization','azure.db.mysql.memory.percentage','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The memory percent of a host.','0','30d','0','','44161','','','','','200','1','0','','','0','0','0','0','0','0','0','f0f56a67942a40509d6835f3da9eb7e2','0','2','0'), ('44165','18','','10539','Storage percent','azure.db.mysql.storage.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The storage utilization, expressed in %.','0','30d','0','','44161','','','','','200','1','0','','','0','0','0','0','0','0','0','ced51184b59643adaa51bef90710166b','0','2','0'), ('44166','18','','10539','Storage limit','azure.db.mysql.storage.limit','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The storage limit, expressed in bytes.','0','30d','0','','44161','','','','','200','1','0','','','0','0','0','0','0','0','0','78f3e03b5caf4f85a3c61513cf242f76','0','2','0'), ('44167','18','','10539','Backup storage used','azure.db.mysql.storage.backup.used','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Used backup storage, expressed in bytes.','0','30d','0','','44161','','','','','200','1','0','','','0','0','0','0','0','0','0','8d5cd0d3cd0744a5a260a8a0485f6735','0','2','0'), ('44168','18','','10539','Replication lag','azure.db.mysql.replication.lag','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The replication lag, expressed in seconds.','0','30d','0','','44161','','','','','200','1','0','','','0','0','0','0','0','0','0','80a05247fec04e39a99ccafaefbd0441','0','2','0'), ('44169','18','','10539','Queries','azure.db.mysql.queries','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of queries.','0','30d','0','','44161','','','','','200','1','0','','','0','0','0','0','0','0','0','05329dcdb2e14080a43d1bf7553037f6','0','2','0'), ('44170','18','','10539','Network in','azure.db.mysql.network.ingress','0','31d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Network ingress of a host, expressed in bytes.','0','30d','0','','44161','','','','','200','1','0','','','0','0','0','0','0','0','0','5f38b6b4e3a849d09022bd34c4347088','0','2','0'), ('44171','18','','10539','Network out','azure.db.mysql.network.egress','0','31d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Network egress of a host, expressed in bytes.','0','30d','0','','44161','','','','','200','1','0','','','0','0','0','0','0','0','0','84f3d2b152784993944a2d4c3fad1a59','0','2','0'), ('44172','18','','10539','IO consumption percent','azure.db.mysql.io.consumption.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The consumption percent of I/O.','0','30d','0','','44161','','','','','200','1','0','','','0','0','0','0','0','0','0','b4a6363aac734b6c8d043718ca667c09','0','2','0'), ('44173','18','','10539','Availability state','azure.db.mysql.availability.state','0','31d','365d','0','3','','','','',NULL,'1053','','','0','','','','','0',NULL,'The availability status of the resource.','0','30d','0','','44161','','','','','200','1','0','','','0','0','0','0','0','0','0','7f2d8e8d94ae4c87ba0480a2d9518f65','0','2','0'), ('44174','18','','10539','Get errors','azure.db.mysql.data.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A list of errors from API requests.','0','30d','0','','44161','','','','','200','1','0','','','0','0','0','0','0','0','0','f960e7667571497c96454b5c4b7b69ff','0','2','0'), ('44175','18','','10539','Percentage CPU','azure.db.mysql.cpu.percentage','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The CPU percent of a host.','0','30d','0','','44161','','','','','200','1','0','','','0','0','0','0','0','0','0','afe4d11c2f474428acc00d153ad2a6e5','0','2','0'), ('44176','18','','10539','CPU credits remaining','azure.db.mysql.cpu.credits.remaining','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The remaining CPU credits.','0','30d','0','','44161','','','','','200','1','0','','','0','0','0','0','0','0','0','4f591346d3d34d49b37cfff2a169f57e','0','2','0'), ('44177','18','','10539','CPU credits consumed','azure.db.mysql.cpu.credits.consumed','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The consumed CPU credits.','0','30d','0','','44161','','','','','200','1','0','','','0','0','0','0','0','0','0','b235666b98954555ae5e75e757bba707','0','2','0'), ('44178','18','','10539','Connections total','azure.db.mysql.connections.total','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of total connections.','0','30d','0','','44161','','','','','200','1','0','','','0','0','0','0','0','0','0','1993ae276fe44db6a89451291749f703','0','2','0'), ('44179','18','','10539','Connections active','azure.db.mysql.connections.active','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of active connections.','0','30d','0','','44161','','','','','200','1','0','','','0','0','0','0','0','0','0','71b33f0a5d37498dbb57d185ac0f2741','0','2','0'), ('44180','18','','10539','Connections aborted','azure.db.mysql.connections.aborted','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of aborted connections.','0','30d','0','','44161','','','','','200','1','0','','','0','0','0','0','0','0','0','cab6ac822f2c4e118b030e49cc15eaa2','0','2','0'), ('44181','18','','10539','Storage used','azure.db.mysql.storage.used','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Used storage space, expressed in bytes.','0','30d','0','','44161','','','','','200','1','0','','','0','0','0','0','0','0','0','9f96e947eee646f890742676e9f9a22a','0','2','0'), ('44182','18','','10540','Availability status detailed','azure.db.mysql.availability.details','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The summary description of the availability status.','0','30d','0','','44162','','','','','200','1','0','','','0','0','0','0','0','0','0','c7771aa67d3c424490d8de2d6c2d609a','0','2','0'), ('44183','18','','10540','Replication lag','azure.db.mysql.replication.lag','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The replication lag, expressed in seconds.','0','30d','0','','44162','','','','','200','1','0','','','0','0','0','0','0','0','0','8e60794282ea42c7bad1573811b2e498','0','2','0'), ('44184','18','','10540','Server log storage used','azure.db.mysql.storage.server.log.used','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The storage space used by server log, expressed in bytes.','0','30d','0','','44162','','','','','200','1','0','','','0','0','0','0','0','0','0','8ed99a951e264185b1e0f343d7ea0aec','0','2','0'), ('44185','18','','10540','Server log storage percent','azure.db.mysql.storage.server.log.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The storage utilization by server log, expressed in %.','0','30d','0','','44162','','','','','200','1','0','','','0','0','0','0','0','0','0','cf5a77306c554a24b3741ef065b6d27a','0','2','0'), ('44186','18','','10540','Server log storage limit','azure.db.mysql.storage.server.log.limit','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The storage limit of server log, expressed in bytes.','0','30d','0','','44162','','','','','200','1','0','','','0','0','0','0','0','0','0','7f553d8a0898477b87a2828e51efcfcc','0','2','0'), ('44187','18','','10540','Storage percent','azure.db.mysql.storage.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The storage utilization, expressed in %.','0','30d','0','','44162','','','','','200','1','0','','','0','0','0','0','0','0','0','5b1b350be6f0409fb7ab842571c3f086','0','2','0'), ('44188','18','','10540','Storage limit','azure.db.mysql.storage.limit','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The storage limit, expressed in bytes.','0','30d','0','','44162','','','','','200','1','0','','','0','0','0','0','0','0','0','4aed6d0c01d1458fbd1f7c7ea5386303','0','2','0'), ('44189','18','','10540','Backup storage used','azure.db.mysql.storage.backup.used','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Used backup storage, expressed in bytes.','0','30d','0','','44162','','','','','200','1','0','','','0','0','0','0','0','0','0','1303a659d17a4e4fa9fa03cef35fef5a','0','2','0'), ('44190','18','','10540','Network out','azure.db.mysql.network.egress','0','31d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The network outbound traffic across the active connections.','0','30d','0','','44162','','','','','200','1','0','','','0','0','0','0','0','0','0','fe1b9846a634412aaa6a76fc05dbe46a','0','2','0'), ('44191','18','','10540','Network in','azure.db.mysql.network.ingress','0','31d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The network inbound traffic across the active connections.','0','30d','0','','44162','','','','','200','1','0','','','0','0','0','0','0','0','0','1cc97817bda5470887e3d5d9f2d78650','0','2','0'), ('44192','18','','10540','Availability state','azure.db.mysql.availability.state','0','31d','365d','0','3','','','','',NULL,'1054','','','0','','','','','0',NULL,'The availability status of the resource.','0','30d','0','','44162','','','','','200','1','0','','','0','0','0','0','0','0','0','c325b977b26e4e00acc3ea8703895f05','0','2','0'), ('44193','18','','10540','Memory utilization','azure.db.mysql.memory.percentage','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The memory percent of a host.','0','30d','0','','44162','','','','','200','1','0','','','0','0','0','0','0','0','0','5c19c08912634993b1f96fb11e5d1ae2','0','2','0'), ('44194','18','','10540','IO consumption percent','azure.db.mysql.io.consumption.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The consumption percent of I/O.','0','30d','0','','44162','','','','','200','1','0','','','0','0','0','0','0','0','0','a17c365253eb4821841ec82ac8f61106','0','2','0'), ('44195','18','','10540','Get errors','azure.db.mysql.data.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A list of errors from API requests.','0','30d','0','','44162','','','','','200','1','0','','','0','0','0','0','0','0','0','2fc253a20100478d91cac13590a64bfc','0','2','0'), ('44196','18','','10540','Percentage CPU','azure.db.mysql.cpu.percentage','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The CPU percent of a host.','0','30d','0','','44162','','','','','200','1','0','','','0','0','0','0','0','0','0','d0b5864a56094166b76fbc58a5e05c7c','0','2','0'), ('44197','18','','10540','Connections failed','azure.db.mysql.connections.failed','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of failed connections.','0','30d','0','','44162','','','','','200','1','0','','','0','0','0','0','0','0','0','e185b56984914507bc40c07c55153967','0','2','0'), ('44198','18','','10540','Connections active','azure.db.mysql.connections.active','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of active connections.','0','30d','0','','44162','','','','','200','1','0','','','0','0','0','0','0','0','0','69aba8caa6874c9d9423926a2ee78e99','0','2','0'), ('44199','18','','10540','Storage used','azure.db.mysql.storage.used','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Used storage space, expressed in bytes.','0','30d','0','','44162','','','','','200','1','0','','','0','0','0','0','0','0','0','0c9a5496d9884c8e9a434fb232b3208f','0','2','0'), ('44200','18','','10531','MySQL servers discovery','azure.mysql.servers.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The list of MySQL servers provided by the subscription.','0','7d','1','','43714','','','','','200','1','0','','','0','0','0','0','0','0','0','7fafbef68f8b46d083eb43da7cd1e2cc','0','2','0'), ('44201','18','','10534','Get ethernet networks data','hpe.synergy.get.ethernet_networks','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data of the ethernet networks.','0','30d','0','','43901','','','','','200','1','0','','','0','0','0','0','0','0','0','11b7e2c9c3ba4c71a2a5b165eea2c105','0','2','0'), ('44202','18','','10534','Get fabrics data','hpe.synergy.get.fabrics','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data of the fabrics.','0','30d','0','','43901','','','','','200','1','0','','','0','0','0','0','0','0','0','d6d0a7fb1f0e47a792cd5197e2aa99b2','0','2','0'), ('44203','18','','10534','Get FC networks data','hpe.synergy.get.fc_networks','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data of the FC networks.','0','30d','0','','43901','','','','','200','1','0','','','0','0','0','0','0','0','0','789012febb2c44af8cf01b83315f6e99','0','2','0'), ('44204','18','','10534','Get hypervisor managers data','hpe.synergy.get.hypervisor_managers','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data of the hypervisor managers.','0','30d','0','','43901','','','','','200','1','0','','','0','0','0','0','0','0','0','1b903d33f7ef481687db5f94a94123f5','0','2','0'), ('44205','18','','10534','Get datacenters data','hpe.synergy.get.datacenters','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data of the datacenters.','0','30d','0','','43901','','','','','200','1','0','','','0','0','0','0','0','0','0','03389ced2251456a98f56418f1fbc6c5','0','2','0'), ('44206','18','','10534','Get logical enclosures data','hpe.synergy.get.logical_enclosures','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data of the logical enclosures.','0','30d','0','','43901','','','','','200','1','0','','','0','0','0','0','0','0','0','bff37f5e7576433e85991ca474aae7c8','0','2','0'), ('44207','18','','10534','Get racks data','hpe.synergy.get.racks','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data of the racks.','0','30d','0','','43901','','','','','200','1','0','','','0','0','0','0','0','0','0','5f44e9a2434e4773ab9d8c5664535a91','0','2','0'), ('44208','18','','10534','Get server hardware data','hpe.synergy.get.server_hardware','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data of the server hardware.','0','30d','0','','43901','','','','','200','1','0','','','0','0','0','0','0','0','0','066eacd86e784308a0b3ed53c7fd2482','0','2','0'), ('44209','18','','10534','Get storage pools data','hpe.synergy.get.storage_pools','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data of the storage pools.','0','30d','0','','43901','','','','','200','1','0','','','0','0','0','0','0','0','0','249afb5967c146799340487196206e01','0','2','0'), ('44210','18','','10534','Get storage systems data','hpe.synergy.get.storage_systems','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data of the storage systems.','0','30d','0','','43901','','','','','200','1','0','','','0','0','0','0','0','0','0','bab0584a38fb4e9ba3270c2882e9cef1','0','2','0'), ('44211','18','','10534','Get storage volumes data','hpe.synergy.get.storage_volumes','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data of the storage volumes.','0','30d','0','','43901','','','','','200','1','0','','','0','0','0','0','0','0','0','f232ebaf34eb474d9596cfe573e7b3fb','0','2','0'), ('44212','18','','10534','Get uplink sets data','hpe.synergy.get.uplink_sets','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data of the uplink sets.','0','30d','0','','43901','','','','','200','1','0','','','0','0','0','0','0','0','0','d8e6a2b490ab472cb15814c19ed71e16','0','2','0'), ('44213','18','','10534','Get interconnects data','hpe.synergy.get.interconnects','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data of the interconnects.','0','30d','0','','43901','','','','','200','1','0','','','0','0','0','0','0','0','0','9724a596f61241f297f5fa8fbd538ea0','0','2','0'), ('44247','18','','10507','Node [{#NODE}] Namespace [{#NAMESPACE}] Pod [{#POD}]: Get data','kube.pod.get[{#NAMESPACE}/{#POD}]','0','0','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Collecting and processing cluster by node [{#NODE}] data via Kubernetes API.','0','30d','0','','39937','','','','','200','1','0','','','0','0','0','0','0','0','0','34a542538cf449f287a99052870988be','0','2','0'), ('44250','18','','10543','Availability status detailed','azure.db.pgsql.availability.details','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The summary description of the availability status.','0','30d','0','','44248','','','','','200','1','0','','','0','0','0','0','0','0','0','7f7deae517e54cf582ae758a6988037b','0','2','0'), ('44251','18','','10543','Data disk read IOPS','azure.db.pgsql.iops.read','0','31d','365d','0','0','','!ops','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of the data disk I/O read operations per second.','0','30d','0','','44248','','','','','200','1','0','','','0','0','0','0','0','0','0','dee65b110a4842ccba8e74eefc097304','0','2','0'), ('44252','18','','10543','Storage used','azure.db.pgsql.storage.used','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Used storage space, expressed in bytes.','0','30d','0','','44248','','','','','200','1','0','','','0','0','0','0','0','0','0','7a85b5223ec44ff8bc996c9df1673611','0','2','0'), ('44253','18','','10543','Transaction log storage used','azure.db.pgsql.storage.txlogs.used','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The storage space used by transaction log, expressed in bytes.','0','30d','0','','44248','','','','','200','1','0','','','0','0','0','0','0','0','0','4dae6c2c1dbf4492a73fd1834cae6aad','0','2','0'), ('44254','18','','10543','Storage percent','azure.db.pgsql.storage.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The storage utilization, expressed in %.','0','30d','0','','44248','','','','','200','1','0','','','0','0','0','0','0','0','0','d9d97e728d1741568fce925c0fca33a8','0','2','0'), ('44255','18','','10543','Storage free','azure.db.pgsql.storage.free','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Free storage space, expressed in bytes.','0','30d','0','','44248','','','','','200','1','0','','','0','0','0','0','0','0','0','9bbfba89a1834798b71260536fedab55','0','2','0'), ('44256','18','','10543','Backup storage used','azure.db.pgsql.storage.backup.used','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Used backup storage, expressed in bytes.','0','30d','0','','44248','','','','','200','1','0','','','0','0','0','0','0','0','0','ebebf8b3a2884576abb250fdc2385c6f','0','2','0'), ('44257','18','','10543','Network in','azure.db.pgsql.network.ingress','0','31d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The network inbound traffic across the active connections.','0','30d','0','','44248','','','','','200','1','0','','','0','0','0','0','0','0','0','8e398d8b33444a148760ec33622755a6','0','2','0'), ('44258','18','','10543','Network out','azure.db.pgsql.network.egress','0','31d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The network outbound traffic across the active connections.','0','30d','0','','44248','','','','','200','1','0','','','0','0','0','0','0','0','0','040898e15a26455a9992c603ca2d45df','0','2','0'), ('44259','18','','10543','Memory utilization','azure.db.pgsql.memory.percentage','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The memory percent of a host.','0','30d','0','','44248','','','','','200','1','0','','','0','0','0','0','0','0','0','d1d909c2dd0d42649094ec8339e08881','0','2','0'), ('44260','18','','10543','Data disk write IOPS','azure.db.pgsql.iops.write','0','31d','365d','0','0','','!ops','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of the data disk I/O write operations per second.','0','30d','0','','44248','','','','','200','1','0','','','0','0','0','0','0','0','0','805dfa040c0a4700acac4b5b1f8a4d11','0','2','0'), ('44261','18','','10543','Data disk queue depth','azure.db.pgsql.disk.queue.depth','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of outstanding I/O operations to the data disk.','0','30d','0','','44248','','','','','200','1','0','','','0','0','0','0','0','0','0','b8812461d49a4ff5a2177c2990969c38','0','2','0'), ('44262','18','','10543','Data disk IOPS','azure.db.pgsql.iops','0','31d','365d','0','0','','!ops','','',NULL,NULL,'','','0','','','','','0',NULL,'I/O operations per second.','0','30d','0','','44248','','','','','200','1','0','','','0','0','0','0','0','0','0','10dd8ed658d8442ca39ac1decf9bc2f8','0','2','0'), ('44263','18','','10543','Availability state','azure.db.pgsql.availability.state','0','31d','365d','0','3','','','','',NULL,'1055','','','0','','','','','0',NULL,'The availability status of the resource.','0','30d','0','','44248','','','','','200','1','0','','','0','0','0','0','0','0','0','cd9072a3895c42dab794707f3bcaf743','0','2','0'), ('44264','18','','10543','Data disk write Bps','azure.db.pgsql.disk.bps.write','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Bytes written per second to the data disk during the monitoring period.','0','30d','0','','44248','','','','','200','1','0','','','0','0','0','0','0','0','0','46c500b44164430c952be3a1b2008fb8','0','2','0'), ('44265','18','','10543','Data disk read Bps','azure.db.pgsql.disk.bps.read','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Bytes read per second from the data disk during the monitoring period.','0','30d','0','','44248','','','','','200','1','0','','','0','0','0','0','0','0','0','9fc7a458995d4ac8a4c1d8550177471d','0','2','0'), ('44266','18','','10543','Get errors','azure.db.pgsql.data.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A list of errors from API requests.','0','30d','0','','44248','','','','','200','1','0','','','0','0','0','0','0','0','0','06c4226667ec4c4489e6d3ad31c3135f','0','2','0'), ('44267','18','','10543','Percentage CPU','azure.db.pgsql.cpu.percentage','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The CPU percent of a host.','0','30d','0','','44248','','','','','200','1','0','','','0','0','0','0','0','0','0','8d85c5c73c894cdda6324832a703fea2','0','2','0'), ('44268','18','','10543','CPU credits remaining','azure.db.pgsql.cpu.credits.remaining','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of credits available to burst.','0','30d','0','','44248','','','','','200','1','0','','','0','0','0','0','0','0','0','e55082c4a278435286335cebd2ae1cac','0','2','0'), ('44269','18','','10543','CPU credits consumed','azure.db.pgsql.cpu.credits.consumed','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of credits consumed by the database server.','0','30d','0','','44248','','','','','200','1','0','','','0','0','0','0','0','0','0','1f1270c6981b4d08864572410fdeccde','0','2','0'), ('44270','18','','10543','Connections succeeded','azure.db.pgsql.connections.succeeded','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of succeeded connections.','0','30d','0','','44248','','','','','200','1','0','','','0','0','0','0','0','0','0','f422f01bf1c9484e880581f31f70e120','0','2','0'), ('44271','18','','10543','Connections failed','azure.db.pgsql.connections.failed','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of failed connections.','0','30d','0','','44248','','','','','200','1','0','','','0','0','0','0','0','0','0','00d1116141874dbfb204ebfe96c203f1','0','2','0'), ('44272','18','','10543','Connections active','azure.db.pgsql.connections.active','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of active connections.','0','30d','0','','44248','','','','','200','1','0','','','0','0','0','0','0','0','0','05ada75c666e45269c3c36159f9902cc','0','2','0'), ('44273','18','','10543','Maximum used transaction IDs','azure.db.pgsql.txid.used.max','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum number of used transaction IDs.','0','30d','0','','44248','','','','','200','1','0','','','0','0','0','0','0','0','0','6df77ed1d4614ca793df56dbc70d821c','0','2','0'), ('44274','18','','10544','Availability status detailed','azure.db.pgsql.availability.details','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The summary description of the availability status.','0','30d','0','','44249','','','','','200','1','0','','','0','0','0','0','0','0','0','9eb43a5ffb0d4e07be8d1fccfdecd2aa','0','2','0'), ('44275','18','','10544','Replication lag','azure.db.pgsql.replica.log.delay','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The replication lag, expressed in seconds.','0','30d','0','','44249','','','','','200','1','0','','','0','0','0','0','0','0','0','1db9e470b527476fae1d26d4b67f855b','0','2','0'), ('44276','18','','10544','Server log storage used','azure.db.pgsql.storage.server.log.used','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The storage space used by server log, expressed in bytes.','0','30d','0','','44249','','','','','200','1','0','','','0','0','0','0','0','0','0','36bd10a959964083ae47349dd83ec695','0','2','0'), ('44277','18','','10544','Server log storage percent','azure.db.pgsql.storage.server.log.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The storage utilization by server log, expressed in %.','0','30d','0','','44249','','','','','200','1','0','','','0','0','0','0','0','0','0','ef6890330ebe4fe09f46b0d2f6d3f827','0','2','0'), ('44278','18','','10544','Server log storage limit','azure.db.pgsql.storage.server.log.limit','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The storage limit of server log, expressed in bytes.','0','30d','0','','44249','','','','','200','1','0','','','0','0','0','0','0','0','0','399ef67426494a5cb7a820d056dfd4d5','0','2','0'), ('44279','18','','10544','Storage percent','azure.db.pgsql.storage.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The storage utilization, expressed in %.','0','30d','0','','44249','','','','','200','1','0','','','0','0','0','0','0','0','0','750b4d3438614cc992694136d309c3cb','0','2','0'), ('44280','18','','10544','Storage limit','azure.db.pgsql.storage.limit','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The storage limit, expressed in bytes.','0','30d','0','','44249','','','','','200','1','0','','','0','0','0','0','0','0','0','b8d5ac0b049a4d73b2f35f59c7e7609c','0','2','0'), ('44281','18','','10544','Backup storage used','azure.db.pgsql.storage.backup.used','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Used backup storage, expressed in bytes.','0','30d','0','','44249','','','','','200','1','0','','','0','0','0','0','0','0','0','6b06fb0e008640839dc3cda5bcc3f91a','0','2','0'), ('44282','18','','10544','Max lag across replicas in bytes','azure.db.pgsql.replica.log.delay.bytes','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Lag for the most lagging replica, expressed in bytes.','0','30d','0','','44249','','','','','200','1','0','','','0','0','0','0','0','0','0','6cdfda8f9e6640f8a8536f88729d75d6','0','2','0'), ('44283','18','','10544','Network in','azure.db.pgsql.network.ingress','0','31d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The network inbound traffic across the active connections.','0','30d','0','','44249','','','','','200','1','0','','','0','0','0','0','0','0','0','51f7e35042d04ddb88c7703d1b015d3b','0','2','0'), ('44284','18','','10544','Availability state','azure.db.pgsql.availability.state','0','31d','365d','0','3','','','','',NULL,'1056','','','0','','','','','0',NULL,'The availability status of the resource.','0','30d','0','','44249','','','','','200','1','0','','','0','0','0','0','0','0','0','df4c66646f864f79b5f5e9f71dbefe82','0','2','0'), ('44285','18','','10544','Network out','azure.db.pgsql.network.egress','0','31d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The network outbound traffic across the active connections.','0','30d','0','','44249','','','','','200','1','0','','','0','0','0','0','0','0','0','f81eeb98d5e942f296c360ff71e8bf8d','0','2','0'), ('44286','18','','10544','Memory utilization','azure.db.pgsql.memory.percentage','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The memory percent of a host.','0','30d','0','','44249','','','','','200','1','0','','','0','0','0','0','0','0','0','e2ee4882b08f45788e6abb698265810e','0','2','0'), ('44287','18','','10544','IO consumption percent','azure.db.pgsql.io.consumption.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The consumption percent of I/O.','0','30d','0','','44249','','','','','200','1','0','','','0','0','0','0','0','0','0','9eade85c49bc462aab33b03e37581d87','0','2','0'), ('44288','18','','10544','Get errors','azure.db.pgsql.data.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A list of errors from API requests.','0','30d','0','','44249','','','','','200','1','0','','','0','0','0','0','0','0','0','5b132ff050c94daa92b252529a52c535','0','2','0'), ('44289','18','','10544','Percentage CPU','azure.db.pgsql.cpu.percentage','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The CPU percent of a host.','0','30d','0','','44249','','','','','200','1','0','','','0','0','0','0','0','0','0','537330b2372b434ebcea8a77a809c2f3','0','2','0'), ('44290','18','','10544','Connections failed','azure.db.pgsql.connections.failed','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of failed connections.','0','30d','0','','44249','','','','','200','1','0','','','0','0','0','0','0','0','0','353a6ba543a84b32b16a5809ae63b4e1','0','2','0'), ('44291','18','','10544','Connections active','azure.db.pgsql.connections.active','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of active connections.','0','30d','0','','44249','','','','','200','1','0','','','0','0','0','0','0','0','0','3d0d3e1fe77740e4bd7b720368707214','0','2','0'), ('44292','18','','10544','Storage used','azure.db.pgsql.storage.used','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Used storage space, expressed in bytes.','0','30d','0','','44249','','','','','200','1','0','','','0','0','0','0','0','0','0','dcbb87d442a04938b23e68f739f1e36f','0','2','0'), ('44293','18','','10531','PostgreSQL servers discovery','azure.pgsql.servers.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The list of PostgreSQL servers provided by the subscription.','0','7d','1','','43714','','','','','200','1','0','','','0','0','0','0','0','0','0','a4b35b5fe8c04b52a9640f2f41013230','0','2','0'), ('44301','18','','10546','Data item errors','meraki.get.data.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Item for gathering all the data item errors.','0','30d','0','','44294','','','','','200','1','0','','','0','0','0','0','0','0','0','6fdd764d820341e7bd2a24f42802c58a','0','2','0'), ('44302','18','','10547','Public IP','meraki.device.public.ip','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Device public IP Network: {$NETWORK.ID}','0','30d','0','','50002','','','','','200','1','0','','','0','0','0','0','0','0','0','2280b9212c474d99835ec1334ff780eb','0','2','0'), ('44303','18','','10547','Status','meraki.device.status','0','31d','365d','0','3','','','','',NULL,'1057','','','0','','','','','0',NULL,'Device operational status Network: {$NETWORK.ID}','0','30d','0','','46450','','','','','200','1','0','','','0','0','0','0','0','0','0','324b748bfe2e4383927176046e246acb','0','2','0'), ('44304','18','','10547','Device data item errors','meraki.get.device.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Item for gathering errors of the device item.','0','30d','0','','44295','','','','','200','1','0','','','0','0','0','0','0','0','0','b673516073354c9aaaf60cf3ce2e2fa6','0','2','0'), ('44305','18','','10548','Networks item errors','meraki.get.networks.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Item for gathering all the networks item errors.','0','30d','0','','44299','','','','','200','1','0','','','0','0','0','0','0','0','0','b2bb422b7d794a03a93c8d46209cd3fb','0','2','0'), ('44306','18','','10548','VPN item errors','meraki.get.vpn.stats.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Item for gathering all the VPN item errors.','0','30d','0','','44300','','','','','200','1','0','','','0','0','0','0','0','0','0','a5106f644c4e46fc963cc953dafaeb4e','0','2','0'), ('44307','18','','10548','License expire','meraki.license.expire','0','31d','365d','0','0','','s','','',NULL,'1058','','','0','','','','','0',NULL,'Meraki license expire time, in seconds left.','0','30d','0','','44298','','','','','200','1','0','','','0','0','0','0','0','0','0','bd6eca7b707a4bee8e2302765afa6074','0','2','0'), ('44308','18','','10548','License status','meraki.license.status','0','31d','365d','0','3','','','','',NULL,'1058','','','0','','','','','0',NULL,'Meraki license status.','0','30d','0','','44298','','','','','200','1','0','','','0','0','0','0','0','0','0','2b8e2c4093074dbaa88db3df57eb2cd1','0','2','0'), ('44309','18','','10548','Policies','meraki.policies','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Meraki adaptive policies count.','0','30d','0','','44296','','','','','200','1','0','','','0','0','0','0','0','0','0','e18f69d27fcb4b949d5744aebef97ffb','0','2','0'), ('44310','18','','10548','Allow policies','meraki.policies.allow','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Meraki adaptive allow policies count.','0','30d','0','','44296','','','','','200','1','0','','','0','0','0','0','0','0','0','8a8369134eff4153aba32d9c435786f3','0','2','0'), ('44311','18','','10548','Custom ACLs','meraki.policies.custom.acls','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Meraki adaptive policy custom ACLs count.','0','30d','0','','44296','','','','','200','1','0','','','0','0','0','0','0','0','0','f85b33412a2a41b39c33d64f3c641232','0','2','0'), ('44312','18','','10548','Deny policies','meraki.policies.deny','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Meraki adaptive deny policies count.','0','30d','0','','44296','','','','','200','1','0','','','0','0','0','0','0','0','0','8b9e13124628460584668dbe5cd1b92b','0','2','0'), ('44313','18','','10548','Groups','meraki.policies.groups','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Meraki adaptive policy groups count.','0','30d','0','','44296','','','','','200','1','0','','','0','0','0','0','0','0','0','a4918ea4d6954b5f829e5533117c109a','0','2','0'), ('44314','18','','10546','Devices discovery','meraki.devices.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','','44294','','','','','200','1','0','','','0','0','0','0','0','0','0','6488b49e692e4fe8b6a1c57f56b6ba7d','0','2','0'), ('44315','18','','10546','Organizations discovery','meraki.organization.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','','44294','','','','','200','1','0','','','0','0','0','0','0','0','0','30f38d19659646009ca436d48f9598b0','0','2','0'), ('44316','18','','10547','Uplinks loss and quality discovery','meraki.device.uplinks.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','','44295','','','','','200','1','0','','','0','0','0','0','0','0','0','9c7e5d2ccad7416b8d58237be4218154','0','2','0'), ('44317','18','','10548','Uplinks discovery','meraki.uplinks.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','','44299','','','','','200','1','0','','','0','0','0','0','0','0','0','03d6aeb2bc3d473b9aab87acd0e08f8c','0','2','0'), ('44318','18','','10548','VPN stats discovery','meraki.vpn.stats.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','','44300','','','','','200','1','0','','','0','0','0','0','0','0','0','34052749bd3c46fd9083d738ddeee216','0','2','0'), ('44319','18','','10547','Uplink [{#IP}]: [{#UPLINK}]: Latency','meraki.device.latency[{#IP},{#UPLINK}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Latency of the device uplink. Network: {#NETWORK.ID}. Device serial: {#SERIAL}.','0','30d','0','','44295','','','','','200','1','0','','','0','0','0','0','0','0','0','abf642b1bb944d16bebf90dcf58dbd86','0','2','0'), ('44320','18','','10547','Uplink [{#IP}]: [{#UPLINK}]: Loss, %','meraki.device.loss.pct[{#IP},{#UPLINK}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Loss percent of the device uplink. Network: {#NETWORK.ID}. Device serial: {#SERIAL}.','0','30d','0','','44295','','','','','200','1','0','','','0','0','0','0','0','0','0','bded34f64113486ab0672210e5a8eb1d','0','2','0'), ('44321','18','','10548','Uplink [{#INTERFACE}]: [{#UPLINK.ROLE}]: [{#NETWORK.NAME}]: Status','meraki.uplink.status[{#NETWORK.NAME}, {#INTERFACE}, {#UPLINK.ROLE}]','0','31d','365d','0','3','','','','',NULL,'1059','','','0','','','','','2',NULL,'Network uplink status.','0','30d','0','','44299','','','','','200','1','0','','','0','0','0','0','0','0','0','7600f662dd044d1f857a6ffd9898277c','0','2','0'), ('44322','18','','10548','VPN [{#NETWORK.NAME}]=>[{#PEER.NETWORK.NAME}]: stats raw','meraki.vpn.stat.raw[{#NETWORK.ID}, {#SENDER.UPLINK}, {#PEER.NETWORK.ID}, {#RECEIVER.UPLINK}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'VPN connection stats raw.','0','30d','0','','44300','','','','','200','1','0','','','0','0','0','0','0','0','0','2c968e21c8a34c73a17ed0fc4e2756b5','0','2','0'), ('44336','18','','10264','Apache process discovery','apache.proc.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The discovery of the Apache process summary.','0','7d','1','','44335','','','','','200','1','0','','','0','0','0','0','0','0','0','357a2a1f056a4f59985e858d72e0bdae','0','2','0'), ('44338','18','','10264','Get process data','apache.proc.get[{#APACHE.NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The summary metrics aggregated by a process {#APACHE.NAME}.','0','30d','0','','44335','','','','','200','1','0','','','0','0','0','0','0','0','0','458bfecc83f64540838e3ffc3a7f3cb1','0','2','0'), ('44344','18','','10266','Nginx process discovery','nginx.proc.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The discovery of Nginx process summary.','0','7d','1','','44343','','','','','200','1','0','','','0','0','0','0','0','0','0','f4a898f929c54b3493506e68703fa2cc','0','2','0'), ('44346','18','','10266','Get process data','nginx.proc.get[{#NGINX.NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The summary metrics aggregated by a process {#NGINX.NAME}.','0','30d','0','','44343','','','','','200','1','0','','','0','0','0','0','0','0','0','632e441011674f04886096475180dcbb','0','2','0'), ('44352','18','','10330','PHP-FPM process discovery','php-fpm.proc.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The discovery of the PHP-FPM summary processes.','0','7d','1','','44351','','','','','200','1','0','','','0','0','0','0','0','0','0','a8abec999ac74339b077d226bdbcfcc9','0','2','0'), ('44354','18','','10330','Get process data','php-fpm.proc.get[{#PHP_FPM.NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The summary metrics aggregated by a process `{#PHP_FPM.NAME}`.','0','30d','0','','44351','','','','','200','1','0','','','0','0','0','0','0','0','0','985005cdf7b44332a59a5f7da7528d88','0','2','0'), ('44360','18','','10301','RabbitMQ process discovery','rabbitmq.proc.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The discovery of the RabbitMQ summary processes.','0','7d','1','','44359','','','','','200','1','0','','','0','0','0','0','0','0','0','7cdf2316fa664f34b5de4f315bb7caf9','0','2','0'), ('44362','18','','10300','Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Get data','rabbitmq.get_exchanges["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The HTTP API endpoint that returns [{#VHOST}][{#EXCHANGE}][{#TYPE}] exchanges metrics','0','30d','0','','29999','','','','','200','1','0','','','0','0','0','0','0','0','0','4491f48f732d40c0b7f29010cf4ca046','0','2','0'), ('44363','18','','10301','Get process data','rabbitmq.proc.get[{#RABBITMQ.NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The summary metrics aggregated by a process {#RABBITMQ.NAME}.','0','30d','0','','44359','','','','','200','1','0','','','0','0','0','0','0','0','0','882cf9cfecb448f3af17e12bf9aa7bef','0','2','0'), ('44364','18','','10301','Queue [{#VHOST}][{#QUEUE}]: Get data','rabbitmq.get_exchanges["{#VHOST}/{#QUEUE}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The HTTP API endpoint that returns [{#VHOST}][{#QUEUE}] queue metrics','0','30d','0','','29661','','','','','200','1','0','','','0','0','0','0','0','0','0','158f41423b094efcb90ac273d1e6349c','0','2','0'), ('44369','18','','10302','Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Get data','rabbitmq.get_exchanges["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The HTTP API endpoint that returns [{#VHOST}][{#EXCHANGE}][{#TYPE}] exchanges metrics','0','30d','0','','29739','','','','','200','1','0','','','0','0','0','0','0','0','0','54ec0943af1b4c0c807bcc222f5d70c7','0','2','0'), ('44370','18','','10303','Queue [{#VHOST}][{#QUEUE}]: Get data','rabbitmq.get_exchanges["{#VHOST}/{#QUEUE}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The HTTP API endpoint that returns [{#VHOST}][{#QUEUE}] queue metrics','0','30d','0','','29745','','','','','200','1','0','','','0','0','0','0','0','0','0','335ed3ef31e2471b9cdb25537cee4fe8','0','2','0'), ('44428','18','','10076','FS [{#FSNAME}]: Get data','vfs.fs.dependent[{#FSNAME},data]','0','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Intermediate data of `{#FSNAME}` filesystem.','0','30d','0','','44427','','','','','200','1','0','','','0','0','0','0','0','0','0','0c21ec9b14884057bdd2080b4871756e','0','2','0'), ('44431','18','','10075','FS [{#FSNAME}]: Get data','vfs.fs.dependent[{#FSNAME},data]','0','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Intermediate data of `{#FSNAME}` filesystem.','0','30d','0','','44430','','','','','200','1','0','','','0','0','0','0','0','0','0','94deedece667494398cbc537314911dd','0','2','0'), ('44434','18','','10077','FS [{#FSNAME}]: Get data','vfs.fs.dependent[{#FSNAME},data]','0','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Intermediate data of `{#FSNAME}` filesystem.','0','30d','0','','44433','','','','','200','1','0','','','0','0','0','0','0','0','0','1c47446da541403b8c0a28edbca98278','0','2','0'), ('44438','18','','10001','FS [{#FSNAME}]: Get data','vfs.fs.dependent[{#FSNAME},data]','0','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Intermediate data of `{#FSNAME}` filesystem.','0','30d','0','','44436','','','','','200','1','0','','','0','0','0','0','0','0','0','686df59ab1e64b228a1efc20561cf520','0','2','0'), ('44443','18','','10343','FS [{#FSNAME}]: Get data','vfs.fs.dependent[{#FSNAME},data]','0','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Intermediate data of `{#FSNAME}` filesystem.','0','30d','0','','44442','','','','','200','1','0','','','0','0','0','0','0','0','0','7eb5cb610b1e4c438af380383c75047f','0','2','0'), ('44446','18','','10079','FS [{#FSNAME}]: Get data','vfs.fs.dependent[{#FSNAME},data]','0','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Intermediate data of `{#FSNAME}` filesystem.','0','30d','0','','44445','','','','','200','1','0','','','0','0','0','0','0','0','0','c035c0bc26a24f58900e1af301007914','0','2','0'), ('44448','18','','10074','FS [{#FSNAME}]: Get data','vfs.fs.dependent[{#FSNAME},data]','0','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Intermediate data of `{#FSNAME}` filesystem.','0','30d','0','','44447','','','','','200','1','0','','','0','0','0','0','0','0','0','03ed5a98a0a444f08bfc602877b1cc18','0','2','0'), ('44451','18','','10078','FS [{#FSNAME}]: Get data','vfs.fs.dependent[{#FSNAME},data]','0','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Intermediate data of `{#FSNAME}` filesystem.','0','30d','0','','44450','','','','','200','1','0','','','0','0','0','0','0','0','0','2076c4c4799646d9b42f881369a36f7d','0','2','0'), ('44454','18','','10081','FS [{#FSLABEL}({#FSNAME})]: Get data','vfs.fs.dependent[{#FSNAME},data]','0','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Intermediate data of `{#FSNAME}` filesystem.','0','30d','0','','44453','','','','','200','1','0','','','0','0','0','0','0','0','0','bf93dcebfe504ac0a45cf3ef76cd1dc7','0','2','0'), ('44456','18','','10351','FS [{#FSLABEL}({#FSNAME})]: Get data','vfs.fs.dependent[{#FSNAME},data]','0','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Intermediate data of `{#FSNAME}` filesystem.','0','30d','0','','44455','','','','','200','1','0','','','0','0','0','0','0','0','0','b9ad1677ea6841309c7dc3a304b61c37','0','2','0'), ('44462','18','','10553','Jobs statistics','controlm.jobs.statistics','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Gets the statistics of jobs.','0','30d','0','','44460','','','','','200','1','0','','','0','0','0','0','0','0','0','7ae147724e374857a9a28b604e7af014','0','2','0'), ('44463','18','','10553','Server message','server.message','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Gets the metric of the server message.','0','30d','0','','44461','','','','','200','1','0','','','0','0','0','0','0','0','0','101afc0212e9410b8954bd1c939aea99','0','2','0'), ('44464','18','','10553','Server state','server.state','0','31d','365d','0','3','','','','',NULL,'1072','','','0','','','','','0',NULL,'Gets the metric of the server state.','0','30d','0','','44461','','','','','200','1','0','','','0','0','0','0','0','0','0','b37f0aa295be421ab5e7262135930fcd','0','2','0'), ('44465','18','','10553','Server version','server.version','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Gets the metric of the server version.','0','30d','0','','44461','','','','','200','1','0','','','0','0','0','0','0','0','0','2c7ba283ea2d4f2d91d0fa7d33551501','0','2','0'), ('44468','18','','10552','Server discovery','controlm.server.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers the Control-M servers.','0','7d','0','','44457','','','','','200','1','0','','','0','0','0','0','0','0','0','388824178c264d51be116a693c2640de','0','2','0'), ('44469','18','','10552','SLA services discovery','controlm.services.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers the SLA services in the Control-M environment.','0','1d','0','','44458','','','','','200','1','0','','','0','0','0','0','0','0','0','567e5e0553c84ce2a9200d14dfc76593','0','2','0'), ('44470','18','','10553','Agent discovery','controlm.agent.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers agents on the server.','0','7d','0','','44459','','','','','200','1','0','','','0','0','0','0','0','0','0','8d44e49d41d1469ba0ad6ad356b056f4','0','2','0'), ('44471','18','','10553','Jobs discovery','controlm.jobs.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers jobs on the server.','0','1d','0','','44460','','','','','200','1','0','','','0','0','0','0','0','0','0','279c680e12f6443a9b096bec45f9bce4','0','2','0'), ('44472','18','','10552','Service [{#SERVICE.NAME}, {#SERVICE.JOB}]: stats','service.stats[''{#SERVICE.NAME}'',''{#SERVICE.JOB}'']','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Gets the service statistics.','0','30d','0','','44458','','','','','200','1','0','','','0','0','0','0','0','0','0','72516fca80024f9884efb7dd652f957e','0','2','0'), ('44473','18','','10553','Agent [{#AGENT.NAME}]: stats','agent.stats[''{#AGENT.NAME}'']','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Gets the statistics of an agent.','0','30d','0','','44459','','','','','200','1','0','','','0','0','0','0','0','0','0','b451e6ac1f7a4b819714ee69c4833190','0','2','0'), ('44474','18','','10553','Job [{#JOB.ID}]: stats','job.stats[''{#JOB.ID}'']','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Gets the statistics of a job.','0','30d','0','','44460','','','','','200','1','0','','','0','0','0','0','0','0','0','c73c160f2b8e47c8891d7e22b3a1d1bc','0','2','0'), ('44489','18','','10379','Get meters','jenkins.meters.raw','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Raw items for meters metrics.','0','30d','0','','33394','','','','','200','1','0','','','0','0','0','0','0','0','0','dd8237e43a0d494394da664bc58a5fec','0','2','0'), ('44490','18','','10379','Get timers','jenkins.timers.raw','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Raw items for timers metrics.','0','30d','0','','33394','','','','','200','1','0','','','0','0','0','0','0','0','0','b988986e794d44c79629f865cc6f77e7','0','2','0'), ('44491','18','','10379','Get gauges','jenkins.gauges.raw','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Raw items for gauges metrics.','0','30d','0','','33394','','','','','200','1','0','','','0','0','0','0','0','0','0','035f0609b9ba4231a31f3310ca8151b8','0','2','0'), ('44492','18','','10379','Computer [{#DISPLAY_NAME}]: Get computer','jenkins.computer.get[{#DISPLAY_NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Raw data for a computer.','0','30d','0','','33391','','','','','200','1','0','','','0','0','0','0','0','0','0','fad90db95f69491da5f9af0967995021','0','2','0'), ('44493','18','','10379','Job [{#NAME}]: Get job','jenkins.job.get[{#NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Raw data for a job.','0','30d','0','','33393','','','','','200','1','0','','','0','0','0','0','0','0','0','c82a3a59d2974e24bfa2489bd02fb10a','0','2','0'), ('44495','18','','10555','Get errors','veeam.get.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The errors from API requests.','0','30d','0','','44494','','','','','200','1','0','','','0','0','0','0','0','0','0','87224dc0114446689f0fcfc4f0f83c17','0','2','0'), ('44496','18','','10555','Jobs states discovery','veeam.job.state.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of the jobs states.','0','7d','1','','44494','','','','','200','1','0','','','0','0','0','0','0','0','0','02bac44761384a579575c16ef1740f32','0','2','0'), ('44497','18','','10555','Proxies discovery','veeam.proxies.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of proxies.','0','7d','1','','44494','','','','','200','1','0','','','0','0','0','0','0','0','0','4b1925bd0295403b8eb0d99b2f947296','0','2','0'), ('44498','18','','10555','Repositories discovery','veeam.repositories.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of repositories.','0','7d','1','','44494','','','','','200','1','0','','','0','0','0','0','0','0','0','27db09e55a3c4d638f7c10109d9b76be','0','2','0'), ('44499','18','','10555','Sessions discovery','veeam.sessions.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of sessions.','0','7d','1','','44494','','','','','200','1','0','','','0','0','0','0','0','0','0','06b4e666bede4d4b9f29ab7e94dcb442','0','2','0'), ('44500','18','','10555','Job states [{#NAME}] [{#TYPE}]: Get data','veeam.jobs.states.raw[{#ID}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Gets raw data from the job states with the name `[{#NAME}]`.','0','30d','0','','44494','','','','','200','1','0','','','0','0','0','0','0','0','0','cd2bc50b71184c5ebf39b75a2dafa483','0','2','0'), ('44501','18','','10555','Proxy [{#NAME}] [{#TYPE}]: Get data','veeam.proxy.raw[{#NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Gets raw data collected by the proxy with the name `[{#NAME}]`, `[{#TYPE}]`.','0','30d','0','','44494','','','','','200','1','0','','','0','0','0','0','0','0','0','40d85eb402274838b00765ab91de3896','0','2','0'), ('44502','18','','10555','Server [{#NAME}]: Get data','veeam.proxy.server.raw[{#NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Gets raw data collected by the proxy server.','0','30d','0','','44494','','','','','200','1','0','','','0','0','0','0','0','0','0','83e2e092ae1f4e1a9b4a426076f76467','0','2','0'), ('44503','18','','10555','Repository [{#NAME}] [{#TYPE}]: Get data','veeam.repositories.raw[{#NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Gets raw data from repository with the name: `[{#NAME}]`, `[{#TYPE}]`.','0','30d','0','','44494','','','','','200','1','0','','','0','0','0','0','0','0','0','1c925cfa0a2b46838588471aa58a1591','0','2','0'), ('44504','18','','10555','Session [{#NAME}] [{#TYPE}]: Get data','veeam.sessions.raw[{#ID}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Gets raw data from session with the name: `[{#NAME}]`, `[{#TYPE}]`.','0','30d','0','','44494','','','','','200','1','0','','','0','0','0','0','0','0','0','f82984e1180946c6b4bff1f46987555d','0','2','0'), ('44517','18','','10556','Failed Job Runs','veeam.manager.failed.jobs','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Informs about the failed job runs.','0','30d','0','','44516','','','','','200','1','0','','','0','0','0','0','0','0','0','a1b612cd8e274a27a834dbdb69fe7d08','0','2','0'), ('44518','18','','10556','Get errors','veeam.manager.get.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The errors from API requests.','0','30d','0','','44516','','','','','200','1','0','','','0','0','0','0','0','0','0','e698c05dae9f4d2f8323ce718e9ed83b','0','2','0'), ('44519','18','','10556','Running Jobs','veeam.manager.running.jobs','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Informs about the running jobs.','0','30d','0','','44516','','','','','200','1','0','','','0','0','0','0','0','0','0','a0a1e67c99c64bd1a801c87eeda3977b','0','2','0'), ('44520','18','','10556','Scheduled Backup Jobs','veeam.manager.scheduled.backup.jobs','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Informs about the scheduled backup jobs.','0','30d','0','','44516','','','','','200','1','0','','','0','0','0','0','0','0','0','d7510e46c6094e09979ea7dad2828cef','0','2','0'), ('44521','18','','10556','Scheduled Jobs','veeam.manager.scheduled.jobs','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Informs about the scheduled jobs.','0','30d','0','','44516','','','','','200','1','0','','','0','0','0','0','0','0','0','de9f62198b5b42cdb25460315f4af949','0','2','0'), ('44522','18','','10556','Scheduled Replica Jobs','veeam.manager.scheduled.replica.jobs','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Informs about the scheduled replica jobs.','0','30d','0','','44516','','','','','200','1','0','','','0','0','0','0','0','0','0','599a25d753ce4f5d8542d08569f2a136','0','2','0'), ('44523','18','','10556','Total Job Runs','veeam.manager.scheduled.total.jobs','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Informs about the total job runs.','0','30d','0','','44516','','','','','200','1','0','','','0','0','0','0','0','0','0','7d96ebb849c94d5b89656bdfa6398a1d','0','2','0'), ('44524','18','','10556','Warnings Job Runs','veeam.manager.warning.jobs','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Informs about the warning job runs.','0','30d','0','','44516','','','','','200','1','0','','','0','0','0','0','0','0','0','b39d33c9d5c544a2996736dbdccfcaff','0','2','0'), ('44525','18','','10556','Backup Files discovery','veeam.backup.files.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of all backup files created on, or imported to the backup servers that are connected to Veeam Backup Enterprise Manager.','0','7d','1','','44516','','','','','200','1','0','','','0','0','0','0','0','0','0','d07b06fbd84d493bb38d61ac0824e794','0','2','0'), ('44526','18','','10556','Compression ratio [{#NAME}]','veeam.backup.compress.ratio[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Gets the data compression ratio with the name `[{#NAME}]`.','0','30d','0','','44516','','','','','200','1','0','','','0','0','0','0','0','0','0','d3f87401602c48d3a837504ed08902db','0','2','0'), ('44527','18','','10556','Data Size [{#NAME}]','veeam.backup.data.size[{#NAME}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Gets the data size with the name `[{#NAME}]`.','0','30d','0','','44516','','','','','200','1','0','','','0','0','0','0','0','0','0','0c5be137b40949c4946a09c57ccc7796','0','2','0'), ('44528','18','','10556','Deduplication Ratio [{#NAME}]','veeam.backup.deduplication.ratio[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Gets the data deduplication ratio with the name `[{#NAME}]`.','0','30d','0','','44516','','','','','200','1','0','','','0','0','0','0','0','0','0','62d0b0341bac40f9a63f0fbf3639e0d0','0','2','0'), ('44529','18','','10556','Backup Size [{#NAME}]','veeam.backup.file.size[{#NAME}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Gets the backup size with the name `[{#NAME}]`.','0','30d','0','','44516','','','','','200','1','0','','','0','0','0','0','0','0','0','098cc39afb88483f93a98c96fc1450d1','0','2','0'), ('44532','18','','10557','Availability status detailed','azure.db.mssql.availability.details','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The summary description of the availability status.','0','30d','0','','44530','','','','','200','1','0','','','0','0','0','0','0','0','0','2ff1f479e0b447f2b85e75e99bc011fe','0','2','0'), ('44533','18','','10557','Sessions count','azure.db.mssql.sessions.count','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active sessions. Not applicable to Synapse DW Analytics.','0','30d','0','','44530','','','','','200','1','0','','','0','0','0','0','0','0','0','754b453cdf464f73b09eced3dd3e5859','0','2','0'), ('44534','18','','10557','Tempdb log file size','azure.db.mssql.tempdb.log.size','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The space used in `tempdb` transaction log file, expressed in bytes. Not applicable to the data warehouses.','0','30d','0','','44530','','','','','200','1','0','','','0','0','0','0','0','0','0','51212e2af3854079950064bd9d16da83','0','2','0'), ('44535','18','','10557','Tempdb log used percent','azure.db.mssql.tempdb.log.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of space used in `tempdb` transaction log file. Not applicable to the data warehouses.','0','30d','0','','44530','','','','','200','1','0','','','0','0','0','0','0','0','0','dd2986cc6ce441fe9b3ab9b44b5fc103','0','2','0'), ('44536','18','','10557','Tempdb data file size','azure.db.mssql.tempdb.data.size','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The space used in `tempdb` data files, expressed in bytes. Not applicable to the data warehouses.','0','30d','0','','44530','','','','','200','1','0','','','0','0','0','0','0','0','0','76da2f210c084546a19ce156e0aee1d6','0','2','0'), ('44537','18','','10557','In-Memory OLTP storage percent','azure.db.mssql.storage.xtp.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'In-Memory OLTP storage percent. Not applicable to the data warehouses.','0','30d','0','','44530','','','','','200','1','0','','','0','0','0','0','0','0','0','6ff07a9a680749bfa3deabbec508b7c3','0','2','0'), ('44538','18','','10557','Data space used','azure.db.mssql.storage.used','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Data space used. Not applicable to the data warehouses.','0','30d','0','','44530','','','','','200','1','0','','','0','0','0','0','0','0','0','a0335bde6f3546cdad5bbd2db8fa50b1','0','2','0'), ('44539','18','','10557','Data space used percent','azure.db.mssql.storage.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Data space used percent. Not applicable to the data warehouses or Hyperscale databases.','0','30d','0','','44530','','','','','200','1','0','','','0','0','0','0','0','0','0','6eb5dc0a0b864c0bb35634612472ed38','0','2','0'), ('44540','18','','10557','Full backup storage size','azure.db.mssql.storage.backup.size','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Cumulative full backup storage size. Applies to the vCore-based databases. Not applicable to the Hyperscale databases.','0','30d','0','','44530','','','','','200','1','0','','','0','0','0','0','0','0','0','c92867a096ad4d89b31a2dba7e560df1','0','2','0'), ('44541','18','','10557','Log backup storage size','azure.db.mssql.storage.backup.log.size','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Cumulative log backup storage size. Applies to the vCore-based and Hyperscale databases.','0','30d','0','','44530','','','','','200','1','0','','','0','0','0','0','0','0','0','e8cd0339a82248e3ad777374f219552e','0','2','0'), ('44542','18','','10557','Differential backup storage size','azure.db.mssql.storage.backup.diff.size','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Cumulative differential backup storage size. Applies to the vCore-based databases. Not applicable to the Hyperscale databases.','0','30d','0','','44530','','','','','200','1','0','','','0','0','0','0','0','0','0','3d492b552468462ba17524a9c6951dd7','0','2','0'), ('44543','18','','10557','Data space allocated','azure.db.mssql.storage.allocated','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The allocated data storage. Not applicable to the data warehouses.','0','30d','0','','44530','','','','','200','1','0','','','0','0','0','0','0','0','0','fddff3dcbcf44c408314946f01f26a79','0','2','0'), ('44544','18','','10557','Sessions percentage','azure.db.mssql.sessions.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of sessions. Not applicable to the data warehouses.','0','30d','0','','44530','','','','','200','1','0','','','0','0','0','0','0','0','0','b6696ac3d83841e2a001cdad1aeaea89','0','2','0'), ('44545','18','','10557','SQL Server process memory percent','azure.db.mssql.server.memory.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Memory usage as a percentage of the SQL DB process. Not applicable to data warehouses.','0','30d','0','','44530','','','','','200','1','0','','','0','0','0','0','0','0','0','b39aa0798a824dafb3f3871b6406106a','0','2','0'), ('44546','18','','10557','Availability state','azure.db.mssql.availability.state','0','31d','365d','0','3','','','','',NULL,'1074','','','0','','','','','0',NULL,'The availability status of the resource.','0','30d','0','','44530','','','','','200','1','0','','','0','0','0','0','0','0','0','f15e8075ac9a4f1ca6e95106940b246e','0','2','0'), ('44547','18','','10557','SQL Server process core percent','azure.db.mssql.server.cpu.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The CPU usage as a percentage of the SQL DB process. Not applicable to the data warehouses.','0','30d','0','','44530','','','','','200','1','0','','','0','0','0','0','0','0','0','f417464b2de14e3292d68442570b931d','0','2','0'), ('44548','18','','10557','Log IO percentage','azure.db.mssql.log.write.percentage','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of I/O log. Not applicable to the data warehouses.','0','30d','0','','44530','','','','','200','1','0','','','0','0','0','0','0','0','0','324c16e5da5b40c78d687f1f41a9d180','0','2','0'), ('44549','18','','10557','Connections blocked by firewall','azure.db.mssql.firewall.blocked','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of connections blocked by firewall.','0','30d','0','','44530','','','','','200','1','0','','','0','0','0','0','0','0','0','4d78e4691b6f4ab095849e6af2713638','0','2','0'), ('44550','18','','10557','Deadlocks','azure.db.mssql.deadlocks','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of deadlocks. Not applicable to the data warehouses.','0','30d','0','','44530','','','','','200','1','0','','','0','0','0','0','0','0','0','81f87d35131c426299b233279f8f6c4b','0','2','0'), ('44551','18','','10557','Data IO percentage','azure.db.mssql.data.read.percentage','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of physical data read.','0','30d','0','','44530','','','','','200','1','0','','','0','0','0','0','0','0','0','75d9288a8240425782cce8701c1bdfa8','0','2','0'), ('44552','18','','10557','Get errors','azure.db.mssql.data.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A list of errors from API requests.','0','30d','0','','44530','','','','','200','1','0','','','0','0','0','0','0','0','0','e8aa1b70a7384ffead05cd2e95a6f10a','0','2','0'), ('44553','18','','10557','CPU used','azure.db.mssql.cpu.used','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The CPU used. Applies to the vCore-based databases.','0','30d','0','','44530','','','','','200','1','0','','','0','0','0','0','0','0','0','9a4a948f41e4434e9a94b3d9546df896','0','2','0'), ('44554','18','','10557','Percentage CPU','azure.db.mssql.cpu.percentage','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The CPU percent of a host.','0','30d','0','','44530','','','','','200','1','0','','','0','0','0','0','0','0','0','e55a199cc0bd4749a69478da8268785d','0','2','0'), ('44555','18','','10557','CPU limit','azure.db.mssql.cpu.limit','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The CPU limit. Applies to the vCore-based databases.','0','30d','0','','44530','','','','','200','1','0','','','0','0','0','0','0','0','0','04737f2746444d2fb348a9444964dc7a','0','2','0'), ('44556','18','','10557','Connections successful','azure.db.mssql.connections.successful','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of successful connections.','0','30d','0','','44530','','','','','200','1','0','','','0','0','0','0','0','0','0','8ec27240f59947858c41762a266cab25','0','2','0'), ('44557','18','','10557','Connections failed: System errors','azure.db.mssql.connections.failed.system','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of failed connections with system errors.','0','30d','0','','44530','','','','','200','1','0','','','0','0','0','0','0','0','0','ce744d69ed12435db781fbc6100d97ab','0','2','0'), ('44558','18','','10557','Workers percentage','azure.db.mssql.workers.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of workers. Not applicable to the data warehouses.','0','30d','0','','44530','','','','','200','1','0','','','0','0','0','0','0','0','0','b5d63b2cbcb1470d8559a90cb3df0002','0','2','0'), ('44559','18','','10558','App CPU billed','azure.db.mssql.app.cpu.billed','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'App CPU billed. Applies to serverless databases.','0','30d','0','','44531','','','','','200','1','0','','','0','0','0','0','0','0','0','7c11fcc4f4b349f8b98fac93ae5e32be','0','2','0'), ('44560','18','','10558','Log IO percentage','azure.db.mssql.log.write.percentage','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of I/O log. Not applicable to the data warehouses.','0','30d','0','','44531','','','','','200','1','0','','','0','0','0','0','0','0','0','b41292705c284a77847856c2818d7145','0','2','0'), ('44561','18','','10558','Tempdb log file size','azure.db.mssql.tempdb.log.size','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Space used in `tempdb` transaction log files, expressed in bytes. Not applicable to the data warehouses.','0','30d','0','','44531','','','','','200','1','0','','','0','0','0','0','0','0','0','b83992d1001c41b6ad3d13dbb227a733','0','2','0'), ('44562','18','','10558','Tempdb log used percent','azure.db.mssql.tempdb.log.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of space used in `tempdb` transaction log files. Not applicable to the data warehouses.','0','30d','0','','44531','','','','','200','1','0','','','0','0','0','0','0','0','0','6c8196751a504b82920b7ffa5314a2fc','0','2','0'), ('44563','18','','10558','Tempdb data file size','azure.db.mssql.tempdb.data.size','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Space used in `tempdb` data files, expressed in bytes. Not applicable to the data warehouses.','0','30d','0','','44531','','','','','200','1','0','','','0','0','0','0','0','0','0','cea8a8ea0eaa4d26a28721882c19d9cd','0','2','0'), ('44564','18','','10558','In-Memory OLTP storage percent','azure.db.mssql.storage.xtp.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'In-Memory OLTP storage percent. Not applicable to the data warehouses.','0','30d','0','','44531','','','','','200','1','0','','','0','0','0','0','0','0','0','fbd572ca3d3f42eea794ce78a5a27ec1','0','2','0'), ('44565','18','','10558','Data space used','azure.db.mssql.storage.used','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Data space used. Not applicable to the data warehouses.','0','30d','0','','44531','','','','','200','1','0','','','0','0','0','0','0','0','0','3b1fb8f993e74795b38abd56eceace0a','0','2','0'), ('44566','18','','10558','Data space used percent','azure.db.mssql.storage.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of used data space. Not applicable to the data warehouses or Hyperscale databases.','0','30d','0','','44531','','','','','200','1','0','','','0','0','0','0','0','0','0','2f95fd2dd48c4664afc5cd62d02b0b0a','0','2','0'), ('44567','18','','10558','Data space allocated','azure.db.mssql.storage.allocated','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The allocated data storage. Not applicable to the data warehouses.','0','30d','0','','44531','','','','','200','1','0','','','0','0','0','0','0','0','0','a87fd8ac96944e57ac58b39a18f6ad41','0','2','0'), ('44568','18','','10558','Sessions percentage','azure.db.mssql.sessions.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of sessions. Not applicable to the data warehouses.','0','30d','0','','44531','','','','','200','1','0','','','0','0','0','0','0','0','0','924d96d212764c3ab18e5c14daa58840','0','2','0'), ('44569','18','','10558','SQL Server process memory percent','azure.db.mssql.server.memory.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Memory usage as a percentage of the SQL DB process. Not applicable to the data warehouses.','0','30d','0','','44531','','','','','200','1','0','','','0','0','0','0','0','0','0','5c0a5b745c094475b1e7a0d4f17a5627','0','2','0'), ('44570','18','','10558','SQL Server process core percent','azure.db.mssql.server.cpu.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The CPU usage as a percentage of the SQL DB process. Not applicable to the data warehouses.','0','30d','0','','44531','','','','','200','1','0','','','0','0','0','0','0','0','0','7b772170199f41d4ab614dee66176630','0','2','0'), ('44571','18','','10558','Deadlocks','azure.db.mssql.deadlocks','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of deadlocks. Not applicable to the data warehouses.','0','30d','0','','44531','','','','','200','1','0','','','0','0','0','0','0','0','0','25b97b67d87945b48ae5c44b1db20187','0','2','0'), ('44572','18','','10558','Connections blocked by firewall','azure.db.mssql.firewall.blocked','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of connections blocked by firewall.','0','30d','0','','44531','','','','','200','1','0','','','0','0','0','0','0','0','0','de91693b0a3345b4ad2c9aafd2af5325','0','2','0'), ('44573','18','','10558','App CPU percentage','azure.db.mssql.app.cpu.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'App CPU percentage. Applies to serverless databases.','0','30d','0','','44531','','','','','200','1','0','','','0','0','0','0','0','0','0','6e67a868b2d84838803d3cb464ae9648','0','2','0'), ('44574','18','','10558','Data IO percentage','azure.db.mssql.data.read.percentage','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The physical data read percentage.','0','30d','0','','44531','','','','','200','1','0','','','0','0','0','0','0','0','0','40b15dd3d7a943d99f1bbe7fb34a9f48','0','2','0'), ('44575','18','','10558','Get errors','azure.db.mssql.data.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A list of errors from API requests.','0','30d','0','','44531','','','','','200','1','0','','','0','0','0','0','0','0','0','d933dbacb2b94e40a757e15f13d51d2d','0','2','0'), ('44576','18','','10558','CPU used','azure.db.mssql.cpu.used','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The CPU used. Applies to the vCore-based databases.','0','30d','0','','44531','','','','','200','1','0','','','0','0','0','0','0','0','0','ec0fc85904e149939836c2818a6ca66a','0','2','0'), ('44577','18','','10558','Percentage CPU','azure.db.mssql.cpu.percentage','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The CPU percent of a host.','0','30d','0','','44531','','','','','200','1','0','','','0','0','0','0','0','0','0','53be31ecfd48472c8edfe223107c0b07','0','2','0'), ('44578','18','','10558','CPU limit','azure.db.mssql.cpu.limit','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The CPU limit. Applies to the vCore-based databases.','0','30d','0','','44531','','','','','200','1','0','','','0','0','0','0','0','0','0','0dc1cf6302574c1fbb51583e03409713','0','2','0'), ('44579','18','','10558','Connections successful','azure.db.mssql.connections.successful','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of successful connections.','0','30d','0','','44531','','','','','200','1','0','','','0','0','0','0','0','0','0','59e028a7323d4222a4efd727314327c1','0','2','0'), ('44580','18','','10558','Connections failed: System errors','azure.db.mssql.connections.failed.system','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of failed connections with system errors.','0','30d','0','','44531','','','','','200','1','0','','','0','0','0','0','0','0','0','2457708a49d141faa16bd7b4ceb2c0a4','0','2','0'), ('44581','18','','10558','Availability state','azure.db.mssql.availability.state','0','31d','365d','0','3','','','','',NULL,'1075','','','0','','','','','0',NULL,'The availability status of the resource.','0','30d','0','','44531','','','','','200','1','0','','','0','0','0','0','0','0','0','9a3f2e99a768492c859c8f368c6a5cd3','0','2','0'), ('44582','18','','10558','Availability status detailed','azure.db.mssql.availability.details','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The summary description of the availability status.','0','30d','0','','44531','','','','','200','1','0','','','0','0','0','0','0','0','0','c2d3bc4ff95b4e05898dccee3d73a349','0','2','0'), ('44583','18','','10558','App memory percentage','azure.db.mssql.app.memory.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'App memory percentage. Applies to serverless databases.','0','30d','0','','44531','','','','','200','1','0','','','0','0','0','0','0','0','0','a38a887341914e75a01c7527c40b678f','0','2','0'), ('44584','18','','10558','Workers percentage','azure.db.mssql.workers.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of workers. Not applicable to the data warehouses.','0','30d','0','','44531','','','','','200','1','0','','','0','0','0','0','0','0','0','a4f597ab784a4e31aedc82bfb34feeb7','0','2','0'), ('44585','18','','10531','Microsoft SQL databases discovery','azure.mssql.databases.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The list of Microsoft SQL databases provided by the subscription.','0','7d','1','','43714','','','','','200','1','0','','','0','0','0','0','0','0','0','c875a410ddd84ccfbc5b407cd6e34803','0','2','0'), ('44591','18','','10335','Archivelog ''{#DEST_NAME}'': Error','oracle.archivelog_error["{#DEST_NAME}"]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Displays the error message.','0','30d','0','','44586','','','','','200','1','0','','','0','0','0','0','0','0','0','46ae0ac79493430a94ac50f79dc053ba','0','2','0'), ('44592','18','','10335','Archivelog ''{#DEST_NAME}'': Last sequence','oracle.archivelog_log_sequence["{#DEST_NAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Identifies the sequence number of the last archived redo log to be archived.','0','30d','0','','44586','','','','','200','1','0','','','0','0','0','0','0','0','0','ce76a8ece06f4a17bfaf08b4351346d5','0','2','0'), ('44593','18','','10335','Archivelog ''{#DEST_NAME}'': Status','oracle.archivelog_log_status["{#DEST_NAME}"]','0','31d','365d','0','3','','','','',NULL,'179','','','0','','','','','2',NULL,'Identifies the current status of the destination where: 1 - VALID; 2 - DEFERRED; 3 - ERROR; 0 - UNKNOWN.','0','30d','0','','44586','','','','','200','1','0','','','0','0','0','0','0','0','0','a411a4e1c8ca4ea2a1ece92075cd0325','0','2','0'), ('44594','18','','10335','Database ''{#DBNAME}'': Force logging','oracle.db_force_logging["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,'181','','','0','','','','','2',NULL,'Indicates whether the database is under force logging mode (`YES`/`NO`).','0','30d','0','','44587','','','','','200','1','0','','','0','0','0','0','0','0','0','d9d1575b767b46e0aefe65a270f2d01b','0','2','0'), ('44595','18','','10335','Database ''{#DBNAME}'': Log mode','oracle.db_log_mode["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,'183','','','0','','','','','2',NULL,'The archive log mode where: 0 - NOARCHIVELOG; 1 - ARCHIVELOG; 2 - MANUAL.','0','30d','0','','44587','','','','','200','1','0','','','0','0','0','0','0','0','0','a499423d6e8d44f2bc11beceb30c5fc1','0','2','0'), ('44596','18','','10335','Database ''{#DBNAME}'': Open status','oracle.db_open_mode["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,'167','','','0','','','','','2',NULL,'1 - MOUNTED; 2 - READ WRITE; 3 - READ ONLY; 4 - READ ONLY WITH APPLY (a physical standby database is open in real-time query mode).','0','30d','0','','44587','','','','','200','1','0','','','0','0','0','0','0','0','0','0b0cfebb30aa4d21b8ff91f887fdffde','0','2','0'), ('44597','18','','10335','Database ''{#DBNAME}'': Role','oracle.db_role["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,'169','','','0','','','','','2',NULL,'The current role of the database where: 1 - SNAPSHOT STANDBY; 2 - LOGICAL STANDBY; 3 - PHYSICAL STANDBY; 4 - PRIMARY; 5 - FAR SYNC.','0','30d','0','','44587','','','','','200','1','0','','','0','0','0','0','0','0','0','560b010dcdfc445cbd4e266b88b60e24','0','2','0'), ('44598','18','','10335','ASM ''{#DGNAME}'': Free size','oracle.asm_free_size["{#DGNAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The free size of the ASM disk group.','0','30d','0','','44588','','','','','200','1','0','','','0','0','0','0','0','0','0','8b4e5c9385d04a39b2187e093ffca213','0','2','0'), ('44599','18','','10335','ASM ''{#DGNAME}'': Total size','oracle.asm_total_size["{#DGNAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total size of the ASM disk group.','0','30d','0','','44588','','','','','200','1','0','','','0','0','0','0','0','0','0','b80f69f44dd24eae82a301dbefb0c60f','0','2','0'), ('44600','18','','10335','ASM ''{#DGNAME}'': Used size, percent','oracle.asm_used_pct["{#DGNAME}"]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Usage of the ASM disk group expressed in %.','0','30d','0','','44588','','','','','200','1','0','','','0','0','0','0','0','0','0','e2a0ac73040f401bb05ff88140f6665b','0','2','0'), ('44601','18','','10335','Database ''{#DBNAME}'': Open status','oracle.pdb_open_mode["{#CON_ID}"]','0','31d','365d','0','3','','','','',NULL,'167','','','0','','','','','2',NULL,'1 - MOUNTED; 2 - READ WRITE; 3 - READ ONLY; 4 - READ ONLY WITH APPLY (a physical standby database is open in real-time query mode).','0','30d','0','','44589','','','','','200','1','0','','','0','0','0','0','0','0','0','c52e96105cea45cea1b18201b325ba53','0','2','0'), ('44602','18','','10335','''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace allocated, bytes','oracle.tbs_alloc_bytes["{#CON_ID}","{#TABLESPACE}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Currently allocated bytes for the tablespace (sum of the current size of datafiles).','0','30d','0','','44590','','','','','200','1','0','','','0','0','0','0','0','0','0','14a26a84cfe947089843ed93cd7707c8','0','2','0'), ('44603','18','','10335','''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace free, bytes','oracle.tbs_free_bytes["{#CON_ID}","{#TABLESPACE}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Free bytes of the allocated space.','0','30d','0','','44590','','','','','200','1','0','','','0','0','0','0','0','0','0','d7263b6da6c04c7798909a8448f526ab','0','2','0'), ('44604','18','','10335','''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace MAX size, bytes','oracle.tbs_max_bytes["{#CON_ID}","{#TABLESPACE}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The maximum size of the tablespace.','0','30d','0','','44590','','','','','200','1','0','','','0','0','0','0','0','0','0','d2d919d303b244829c797245e08c2fe5','0','2','0'), ('44605','18','','10335','''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Open status','oracle.tbs_status["{#CON_ID}","{#TABLESPACE}"]','0','31d','365d','0','3','','','','',NULL,'177','','','0','','','','','2',NULL,'The tablespace status where: 1 - ONLINE; 2 - OFFLINE; 3 - READ ONLY.','0','30d','0','','44590','','','','','200','1','0','','','0','0','0','0','0','0','0','de6892ac5ca4499db01dd02c0444aafc','0','2','0'), ('44606','18','','10335','''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace used, bytes','oracle.tbs_used_bytes["{#CON_ID}","{#TABLESPACE}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Currently used bytes for the tablespace (current size of datafiles minus the free space).','0','30d','0','','44590','','','','','200','1','0','','','0','0','0','0','0','0','0','ab56fee407e143db912dffcf24fb0106','0','2','0'), ('44607','18','','10335','''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace usage, percent','oracle.tbs_used_file_pct["{#CON_ID}","{#TABLESPACE}"]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Used bytes/allocated bytes*100.','0','30d','0','','44590','','','','','200','1','0','','','0','0','0','0','0','0','0','358615a3e372462e9cec05df1df22743','0','2','0'), ('44608','18','','10335','''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace allocated, percent','oracle.tbs_used_pct["{#CON_ID}","{#TABLESPACE}"]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Allocated bytes/max bytes*100.','0','30d','0','','44590','','','','','200','1','0','','','0','0','0','0','0','0','0','5d6293b33a46488c88a75dc898bf7059','0','2','0'), ('44614','18','','10328','Archivelog ''{#DEST_NAME}'': Error','oracle.archivelog_error["{#DEST_NAME}"]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Displays the error message.','0','30d','0','','44609','','','','','200','1','0','','','0','0','0','0','0','0','0','06e47a56685e4dd784628c40d5038c88','0','2','0'), ('44615','18','','10328','Archivelog ''{#DEST_NAME}'': Last sequence','oracle.archivelog_log_sequence["{#DEST_NAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Identifies the sequence number of the last archived redo log to be archived.','0','30d','0','','44609','','','','','200','1','0','','','0','0','0','0','0','0','0','1948e6bfaa48451cac6ee83a16b07826','0','2','0'), ('44616','18','','10328','Archivelog ''{#DEST_NAME}'': Status','oracle.archivelog_log_status["{#DEST_NAME}"]','0','31d','365d','0','3','','','','',NULL,'178','','','0','','','','','2',NULL,'Identifies the current status of the destination where: 1 - VALID; 2 - DEFERRED; 3 - ERROR; 0 - UNKNOWN.','0','30d','0','','44609','','','','','200','1','0','','','0','0','0','0','0','0','0','0d561969fc2942fea854541a03b6a490','0','2','0'), ('44617','18','','10328','ASM ''{#DGNAME}'': Free size','oracle.asm_free_size["{#DGNAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The free size of the ASM disk group.','0','30d','0','','44610','','','','','200','1','0','','','0','0','0','0','0','0','0','da6116af9f54452ab1694af8eef9f38d','0','2','0'), ('44618','18','','10328','ASM ''{#DGNAME}'': Total size','oracle.asm_total_size["{#DGNAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total size of the ASM disk group.','0','30d','0','','44610','','','','','200','1','0','','','0','0','0','0','0','0','0','7f2a51d7eeb64c5b8929dcb0e3a49273','0','2','0'), ('44619','18','','10328','ASM ''{#DGNAME}'': Used size, percent','oracle.asm_used_pct["{#DGNAME}"]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Usage of the ASM disk group expressed in %.','0','30d','0','','44610','','','','','200','1','0','','','0','0','0','0','0','0','0','9c87a9089a19468f85eb1d3c28893092','0','2','0'), ('44620','18','','10328','Database ''{#DBNAME}'': Force logging','oracle.db_force_logging["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,'180','','','0','','','','','2',NULL,'Indicates whether the database is under force logging mode (`YES`/`NO`).','0','30d','0','','44611','','','','','200','1','0','','','0','0','0','0','0','0','0','075885bfd41d43aba7861ae49e9abbee','0','2','0'), ('44621','18','','10328','Database ''{#DBNAME}'': Log mode','oracle.db_log_mode["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,'182','','','0','','','','','2',NULL,'The archive log mode where: 0 - NOARCHIVELOG; 1 - ARCHIVELOG; 2 - MANUAL.','0','30d','0','','44611','','','','','200','1','0','','','0','0','0','0','0','0','0','9b88e24d523e4111b2ff65ae26650e04','0','2','0'), ('44622','18','','10328','Database ''{#DBNAME}'': Open status','oracle.db_open_mode["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,'166','','','0','','','','','2',NULL,'1 - MOUNTED; 2 - READ WRITE; 3 - READ ONLY; 4 - READ ONLY WITH APPLY (a physical standby database is open in real-time query mode).','0','30d','0','','44611','','','','','200','1','0','','','0','0','0','0','0','0','0','f1971909355f4ef48c32695b5d204d56','0','2','0'), ('44623','18','','10328','Database ''{#DBNAME}'': Role','oracle.db_role["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,'168','','','0','','','','','2',NULL,'The current role of the database where: 1 - SNAPSHOT STANDBY; 2 - LOGICAL STANDBY; 3 - PHYSICAL STANDBY; 4 - PRIMARY; 5 - FAR SYNC.','0','30d','0','','44611','','','','','200','1','0','','','0','0','0','0','0','0','0','949d1e5fc4424b2bb0ffd220f00f6a79','0','2','0'), ('44624','18','','10328','Database ''{#DBNAME}'': Open status','oracle.pdb_open_mode["{#CON_ID}"]','0','31d','365d','0','3','','','','',NULL,'166','','','0','','','','','2',NULL,'1 - MOUNTED; 2 - READ WRITE; 3 - READ ONLY; 4 - READ ONLY WITH APPLY (a physical standby database is open in real-time query mode).','0','30d','0','','44612','','','','','200','1','0','','','0','0','0','0','0','0','0','975d302e3e9a4316b6d63256b88b5006','0','2','0'), ('44625','18','','10328','''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace allocated, bytes','oracle.tbs_alloc_bytes["{#CON_ID}","{#TABLESPACE}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Currently allocated bytes for the tablespace (sum of the current size of datafiles).','0','30d','0','','44613','','','','','200','1','0','','','0','0','0','0','0','0','0','46956fd7e5d8462798b85cd7b425a794','0','2','0'), ('44626','18','','10328','''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace free, bytes','oracle.tbs_free_bytes["{#CON_ID}","{#TABLESPACE}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Free bytes of the allocated space.','0','30d','0','','44613','','','','','200','1','0','','','0','0','0','0','0','0','0','8c3284a21872423499ee15fd7b0038f1','0','2','0'), ('44627','18','','10328','''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace MAX size, bytes','oracle.tbs_max_bytes["{#CON_ID}","{#TABLESPACE}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The maximum size of the tablespace.','0','30d','0','','44613','','','','','200','1','0','','','0','0','0','0','0','0','0','afd8c1a01b64408fbc6f8f95fbb13593','0','2','0'), ('44628','18','','10328','''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Open status','oracle.tbs_status["{#CON_ID}","{#TABLESPACE}"]','0','31d','365d','0','3','','','','',NULL,'176','','','0','','','','','2',NULL,'The tablespace status where: 1 - ONLINE; 2 - OFFLINE; 3 - READ ONLY.','0','30d','0','','44613','','','','','200','1','0','','','0','0','0','0','0','0','0','42c7812a75d5433ab8a275498635c81c','0','2','0'), ('44629','18','','10328','''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace used, bytes','oracle.tbs_used_bytes["{#CON_ID}","{#TABLESPACE}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Currently used bytes for the tablespace (current size of datafiles minus the free space).','0','30d','0','','44613','','','','','200','1','0','','','0','0','0','0','0','0','0','b9cc0eabdcbc404fb0df2a2a082411f1','0','2','0'), ('44630','18','','10328','''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace usage, percent','oracle.tbs_used_file_pct["{#CON_ID}","{#TABLESPACE}"]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Used bytes/allocated bytes*100.','0','30d','0','','44613','','','','','200','1','0','','','0','0','0','0','0','0','0','877961c286e448238f58cff9c51088c8','0','2','0'), ('44631','18','','10328','''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace allocated, percent','oracle.tbs_used_pct["{#CON_ID}","{#TABLESPACE}"]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Allocated bytes/max bytes*100.','0','30d','0','','44613','','','','','200','1','0','','','0','0','0','0','0','0','0','c3a904455ff244e1a30bf32f0b4ea0d7','0','2','0'), ('44636','18','','10047','Cluster node [{#NODE.NAME}]: Stats','zabbix.node.stats[{#NODE.ID}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Provides the statistics of a node.','0','30d','0','','39804','','','','','200','1','0','','','0','0','0','0','0','0','0','4cf654a5bbb74ad69847b4ff15d0b623','0','2','0'), ('44637','18','','10047','Proxy [{#PROXY.NAME}]: Stats','zabbix.proxy.stats[{#PROXY.NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The statistics for the discovered proxy.','0','30d','0','','44055','','','','','200','1','0','','','0','0','0','0','0','0','0','76b3dc42b38b4f4a9d6979a64e8f6a4b','0','2','0'), ('44640','18','','10261','Cluster node [{#NODE.NAME}]: Stats','zabbix.node.stats[{#NODE.ID}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Provides the statistics of a node.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','525b8142186b488eacb5db7a6044b3c4','0','2','0'), ('44643','18','','10560','Processes discovery','custom.proc.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of OS summary processes.','0','7d','1','','44642','','','','','200','1','0','','','0','0','0','0','0','0','0','7c0e8b719d0e464f92ee42a3da75b682','0','2','0'), ('44644','18','','10560','Process [{#NAME}]: Get data','custom.proc.get[{#NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Summary metrics collected during the process {#NAME}.','0','30d','0','','44642','','','','','200','1','0','','','0','0','0','0','0','0','0','2e9b31e2b47741f4b35c5d15f33378ea','0','2','0'), ('44678','18','','10565','[{#NAME}]: Bad_Block_Rate','smart.disk.attribute.bad_block_rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Percentage of used reserve blocks divided by total reserve blocks.','0','30d','0','','44677','','','','','200','1','0','','','0','0','0','0','0','0','1','643de316ae644f6d8fd92d1f03ae0360','0','2','0'), ('44679','18','','10565','[{#NAME}]: Exit status','smart.disk.es[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The exit statuses of smartctl are defined by a bitmask but in decimal value. The eight different bits in the exit status have the following meanings for ATA disks; some of these values may also be returned for SCSI disks. Bit 0: Command line did not parse. Bit 1: Device open failed, device did not return an IDENTIFY DEVICE structure, or device is in a low-power mode (see ''-n'' option above). Bit 2: Some SMART or other ATA command to the disk failed, or there was a checksum error in a SMART data structure (see ''-b'' option above). Bit 3: SMART status check returned "DISK FAILING". Bit 4: We found prefail Attributes <= threshold. Bit 5: SMART status check returned "DISK OK" but we found that some (usage or prefail) Attributes have been <= threshold at some time in the past. Bit 6: The device error log contains records of errors. Bit 7: The device self-test log contains records of errors. [ATA only] Failed self-tests outdated by a newer successful extended self-test are ignored.','0','30d','0','','44677','','','','','200','1','0','','','0','0','0','0','0','0','0','849a9d5c9b9d4b969a09ab5cf4629ded','0','2','0'), ('44680','18','','10565','[{#NAME}]: Temperature','smart.disk.temperature[{#NAME}]','0','31d','365d','0','3','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'Current drive temperature.','0','30d','0','','44677','','','','','200','1','0','','','0','0','0','0','0','0','0','2f5b054d7a644e029a195d17f525c191','0','2','0'), ('44681','18','','10565','[{#NAME}]: Serial number','smart.disk.sn[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','44677','','','','','200','1','0','','','0','0','0','0','0','0','0','62f98419c8034f389a5be3755eac8938','0','2','0'), ('44682','18','','10565','[{#NAME}]: Percentage used','smart.disk.percentage_used[{#NAME}]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Contains a vendor specific estimate of the percentage of NVM subsystem life used based on the actual usage and the manufacturer''s prediction of NVM life. A value of 100 indicates that the estimated endurance of the NVM in the NVM subsystem has been consumed, but may not indicate an NVM subsystem failure. The value is allowed to exceed 100. Percentages greater than 254 shall be represented as 255. This value shall be updated once per power-on hour (when the controller is not in a sleep state).','0','30d','0','','44677','','','','','200','1','0','','','0','0','0','0','0','0','0','6ce46d274a694eac9700bd02a936f4be','0','2','0'), ('44683','18','','10565','[{#NAME}]: Device model','smart.disk.model[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','44677','','','','','200','1','0','','','0','0','0','0','0','0','0','b6abf9b52c694600b63fce4a68fc0fbd','0','2','0'), ('44684','18','','10565','[{#NAME}]: Media errors','smart.disk.media_errors[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Contains the number of occurrences where the controller detected an unrecovered data integrity error. Errors such as uncorrectable ECC, CRC checksum failure, or LBA tag mismatch are included in this field.','0','30d','0','','44677','','','','','200','1','0','','','0','0','0','0','0','0','0','8478d6421fb044339e2118848ac6d56b','0','2','0'), ('44685','18','','10565','[{#NAME}]: Power on hours','smart.disk.hours[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of hours in power-on state. The raw value of this attribute shows total count of hours (or minutes, or seconds, depending on manufacturer) in power-on state. "By default, the total expected lifetime of a hard disk in perfect condition is defined as 5 years (running every day and night on all days). This is equal to 1825 days in 24/7 mode or 43800 hours." On some pre-2005 drives, this raw value may advance erratically and/or "wrap around" (reset to zero periodically). https://en.wikipedia.org/wiki/S.M.A.R.T.#Known_ATA_S.M.A.R.T._attributes','0','30d','0','','44677','','','','','200','1','0','','','0','0','0','0','0','0','0','365f9642f2764116923bb3e014eefa22','0','2','0'), ('44686','18','','10565','[{#NAME}]: Smartctl error','smart.disk.error[{#NAME}]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'This metric will contain smartctl errors.','0','30d','0','','44677','','','','','200','1','0','','','0','0','0','0','0','0','0','72f16a701cee4119b0b1865671fd448d','0','2','0'), ('44687','18','','10565','[{#NAME}]: Power_Cycle_Count','smart.disk.attribute.power_cycle_count[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'This attribute indicates the count of full hard disk power on/off cycles.','0','30d','0','','44677','','','','','200','1','0','','','0','0','0','0','0','0','1','2a055383835247bc83745c84fdc5dea9','0','2','0'), ('44688','18','','10565','[{#NAME}]: Critical warning','smart.disk.critical_warning[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'This field indicates critical warnings for the state of the controller.','0','30d','0','','44677','','','','','200','1','0','','','0','0','0','0','0','0','0','c186f7ce1b8d4311997c84fd5c239819','0','2','0'), ('44689','18','','10565','[{#NAME}]: Start_Stop_Count','smart.disk.attribute.start_stop_count[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'A tally of spindle start/stop cycles. The spindle turns on, and hence the count is increased, both when the hard disk is turned on after having before been turned entirely off (disconnected from power source) and when the hard disk returns from having previously been put to sleep mode.','0','30d','0','','44677','','','','','200','1','0','','','0','0','0','0','0','0','1','e428eb3368e94dbc955f2bebf8feb202','0','2','0'), ('44690','18','','10565','[{#NAME}]: Spin_Up_Time','smart.disk.attribute.spin_up_time[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Average time of spindle spin up (from zero RPM to fully operational [milliseconds]).','0','30d','0','','44677','','','','','200','1','0','','','0','0','0','0','0','0','1','6e08c65d77ca4155b396c9615b2f45b3','0','2','0'), ('44691','18','','10565','[{#NAME}]: Seek_Error_Rate','smart.disk.attribute.seek_error_rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of seek errors of the magnetic heads. If there is a partial failure in the mechanical positioning system, then seek errors will arise. Such a failure may be due to numerous factors, such as damage to a servo, or thermal widening of the hard disk. The raw value has different structure for different vendors and is often not meaningful as a decimal number. For some drives, this number may increase during normal operation without necessarily signifying errors.','0','30d','0','','44677','','','','','200','1','0','','','0','0','0','0','0','0','1','70ac7d6cdf29431cacf02fc716c8ab0c','0','2','0'), ('44692','18','','10565','[{#NAME}]: Reported_Uncorrect','smart.disk.attribute.reported_uncorrect[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of errors that could not be recovered using hardware ECC.','0','30d','0','','44677','','','','','200','1','0','','','0','0','0','0','0','0','1','f538f4708280451eb30d20433d133012','0','2','0'), ('44693','18','','10565','[{#NAME}]: Reallocated_Sector_Ct','smart.disk.attribute.reallocated_sector_ct[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Disk discovered attribute.','0','30d','0','','44677','','','','','200','1','0','','','0','0','0','0','0','0','1','5601bfa6a38940b6b8d695bf029f534c','0','2','0'), ('44694','18','','10565','[{#NAME}]: Raw_Read_Error_Rate','smart.disk.attribute.raw_read_error_rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Stores data related to the rate of hardware read errors that occurred when reading data from a disk surface. The raw value has different structure for different vendors and is often not meaningful as a decimal number. For some drives, this number may increase during normal operation without necessarily signifying errors.','0','30d','0','','44677','','','','','200','1','0','','','0','0','0','0','0','0','1','abb098035cbd4c5b9e2d15c1e95d8e34','0','2','0'), ('44695','18','','10565','[{#NAME}]: Program_Fail_Count_Chip','smart.disk.attribute.program_fail_count_chip[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of flash program operation failures since the drive was deployed.','0','30d','0','','44677','','','','','200','1','0','','','0','0','0','0','0','0','1','e1fbae7fe66c453997d9aa6e6eb3b5cb','0','2','0'), ('44696','18','','10565','[{#NAME}]: Self-test passed','smart.disk.test[{#NAME}]','0','31d','365d','0','3','','','','',NULL,'1410','','','0','','','','','2',NULL,'The disk is passed the SMART self-test or not.','0','30d','0','','44677','','','','','200','1','0','','','0','0','0','0','0','0','0','434b338d88e041dd9b6a0b7aaa403076','0','2','0'), ('44699','18','','10566','[{#NAME}]: Bad_Block_Rate','smart.disk.attribute.bad_block_rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Percentage of used reserve blocks divided by total reserve blocks.','0','30d','0','','44698','','','','','200','1','0','','','0','0','0','0','0','0','1','b3891b80915c4e2488f2f87cb173474a','0','2','0'), ('44700','18','','10566','[{#NAME}]: Exit status','smart.disk.es[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The exit statuses of smartctl are defined by a bitmask but in decimal value. The eight different bits in the exit status have the following meanings for ATA disks; some of these values may also be returned for SCSI disks. Bit 0: Command line did not parse. Bit 1: Device open failed, device did not return an IDENTIFY DEVICE structure, or device is in a low-power mode (see ''-n'' option above). Bit 2: Some SMART or other ATA command to the disk failed, or there was a checksum error in a SMART data structure (see ''-b'' option above). Bit 3: SMART status check returned "DISK FAILING". Bit 4: We found prefail Attributes <= threshold. Bit 5: SMART status check returned "DISK OK" but we found that some (usage or prefail) Attributes have been <= threshold at some time in the past. Bit 6: The device error log contains records of errors. Bit 7: The device self-test log contains records of errors. [ATA only] Failed self-tests outdated by a newer successful extended self-test are ignored.','0','30d','0','','44698','','','','','200','1','0','','','0','0','0','0','0','0','0','952376ecd47a498cab40ec6872d20454','0','2','0'), ('44701','18','','10566','[{#NAME}]: Temperature','smart.disk.temperature[{#NAME}]','0','31d','365d','0','3','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'Current drive temperature.','0','30d','0','','44698','','','','','200','1','0','','','0','0','0','0','0','0','0','e79eaaf7ee0d40e7b91fc019f5edb19e','0','2','0'), ('44702','18','','10566','[{#NAME}]: Serial number','smart.disk.sn[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','44698','','','','','200','1','0','','','0','0','0','0','0','0','0','189d8e8d16ed40229ba3ca52b75d2dc4','0','2','0'), ('44703','18','','10566','[{#NAME}]: Percentage used','smart.disk.percentage_used[{#NAME}]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Contains a vendor specific estimate of the percentage of NVM subsystem life used based on the actual usage and the manufacturer''s prediction of NVM life. A value of 100 indicates that the estimated endurance of the NVM in the NVM subsystem has been consumed, but may not indicate an NVM subsystem failure. The value is allowed to exceed 100. Percentages greater than 254 shall be represented as 255. This value shall be updated once per power-on hour (when the controller is not in a sleep state).','0','30d','0','','44698','','','','','200','1','0','','','0','0','0','0','0','0','0','d5cef21c49994c3e8e12ef6471d7cdcd','0','2','0'), ('44704','18','','10566','[{#NAME}]: Device model','smart.disk.model[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','44698','','','','','200','1','0','','','0','0','0','0','0','0','0','f48fe3366b194eb4942411cc776c8633','0','2','0'), ('44705','18','','10566','[{#NAME}]: Media errors','smart.disk.media_errors[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Contains the number of occurrences where the controller detected an unrecovered data integrity error. Errors such as uncorrectable ECC, CRC checksum failure, or LBA tag mismatch are included in this field.','0','30d','0','','44698','','','','','200','1','0','','','0','0','0','0','0','0','0','0861b008b09a41799978e085625aaa4a','0','2','0'), ('44706','18','','10566','[{#NAME}]: Power on hours','smart.disk.hours[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of hours in power-on state. The raw value of this attribute shows total count of hours (or minutes, or seconds, depending on manufacturer) in power-on state. "By default, the total expected lifetime of a hard disk in perfect condition is defined as 5 years (running every day and night on all days). This is equal to 1825 days in 24/7 mode or 43800 hours." On some pre-2005 drives, this raw value may advance erratically and/or "wrap around" (reset to zero periodically). https://en.wikipedia.org/wiki/S.M.A.R.T.#Known_ATA_S.M.A.R.T._attributes','0','30d','0','','44698','','','','','200','1','0','','','0','0','0','0','0','0','0','e5bbd606e330469389bf081588b88d17','0','2','0'), ('44707','18','','10566','[{#NAME}]: Smartctl error','smart.disk.error[{#NAME}]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'This metric will contain smartctl errors.','0','30d','0','','44698','','','','','200','1','0','','','0','0','0','0','0','0','0','b96b496a854f4165a44662bd93400b27','0','2','0'), ('44708','18','','10566','[{#NAME}]: Power_Cycle_Count','smart.disk.attribute.power_cycle_count[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'This attribute indicates the count of full hard disk power on/off cycles.','0','30d','0','','44698','','','','','200','1','0','','','0','0','0','0','0','0','1','512c44706bff48fda2ef444713d93b29','0','2','0'), ('44709','18','','10566','[{#NAME}]: Critical warning','smart.disk.critical_warning[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'This field indicates critical warnings for the state of the controller.','0','30d','0','','44698','','','','','200','1','0','','','0','0','0','0','0','0','0','ad6a9f6f7293495c916bb0aac0bc9729','0','2','0'), ('44710','18','','10566','[{#NAME}]: Start_Stop_Count','smart.disk.attribute.start_stop_count[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'A tally of spindle start/stop cycles. The spindle turns on, and hence the count is increased, both when the hard disk is turned on after having before been turned entirely off (disconnected from power source) and when the hard disk returns from having previously been put to sleep mode.','0','30d','0','','44698','','','','','200','1','0','','','0','0','0','0','0','0','1','eee36c13fc6248f6894188102d215638','0','2','0'), ('44711','18','','10566','[{#NAME}]: Spin_Up_Time','smart.disk.attribute.spin_up_time[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Average time of spindle spin up (from zero RPM to fully operational [milliseconds]).','0','30d','0','','44698','','','','','200','1','0','','','0','0','0','0','0','0','1','422ba65b87444329b5a23d03ce89dda7','0','2','0'), ('44712','18','','10566','[{#NAME}]: Seek_Error_Rate','smart.disk.attribute.seek_error_rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Rate of seek errors of the magnetic heads. If there is a partial failure in the mechanical positioning system, then seek errors will arise. Such a failure may be due to numerous factors, such as damage to a servo, or thermal widening of the hard disk. The raw value has different structure for different vendors and is often not meaningful as a decimal number. For some drives, this number may increase during normal operation without necessarily signifying errors.','0','30d','0','','44698','','','','','200','1','0','','','0','0','0','0','0','0','1','99df8858bc6d4fb4a9fb4abd29b6c852','0','2','0'), ('44713','18','','10566','[{#NAME}]: Reported_Uncorrect','smart.disk.attribute.reported_uncorrect[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of errors that could not be recovered using hardware ECC.','0','30d','0','','44698','','','','','200','1','0','','','0','0','0','0','0','0','1','fa253069f1c74a0b9ee3dca5eafef17a','0','2','0'), ('44714','18','','10566','[{#NAME}]: Reallocated_Sector_Ct','smart.disk.attribute.reallocated_sector_ct[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Disk discovered attribute.','0','30d','0','','44698','','','','','200','1','0','','','0','0','0','0','0','0','1','643276ac0dab47b8974e849a1574ac2a','0','2','0'), ('44715','18','','10566','[{#NAME}]: Raw_Read_Error_Rate','smart.disk.attribute.raw_read_error_rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Stores data related to the rate of hardware read errors that occurred when reading data from a disk surface. The raw value has different structure for different vendors and is often not meaningful as a decimal number. For some drives, this number may increase during normal operation without necessarily signifying errors.','0','30d','0','','44698','','','','','200','1','0','','','0','0','0','0','0','0','1','f794dc07c88a4690be8512e029f0b50c','0','2','0'), ('44716','18','','10566','[{#NAME}]: Program_Fail_Count_Chip','smart.disk.attribute.program_fail_count_chip[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of flash program operation failures since the drive was deployed.','0','30d','0','','44698','','','','','200','1','0','','','0','0','0','0','0','0','1','0ab9412116924ca2a9561b44e4c9d6da','0','2','0'), ('44717','18','','10566','[{#NAME}]: Self-test passed','smart.disk.test[{#NAME}]','0','31d','365d','0','3','','','','',NULL,'1411','','','0','','','','','2',NULL,'The disk is passed the SMART self-test or not.','0','30d','0','','44698','','','','','200','1','0','','','0','0','0','0','0','0','0','2475415cc95b4103b2933f921e62dd36','0','2','0'), ('44718','18','','10318','Container {#NAME}: Current PIDs count','docker.container_stats.pids_stats.current["{#NAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current number of PIDs the container has created.','0','30d','0','','30573','','','','','200','1','0','','','0','0','0','0','0','0','0','17017edbd17241b180549b826b3bb467','0','2','0'), ('44719','18','','10318','Container {#NAME}: Health status','docker.container_info.state.health["{#NAME}"]','0','31d','365d','0','0','','','','',NULL,'1083','','','0','','','','','2',NULL,'Container''s `HEALTHCHECK`.','0','30d','0','','30574','','','','','200','1','0','','','0','0','0','0','0','0','0','985b5f9d4e0249fa8688de245f63cf74','0','2','0'), ('44720','18','','10318','Container {#NAME}: Health failing streak','docker.container_info.state.health.failing["{#NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','30574','','','','','200','1','0','','','0','0','0','0','0','0','0','50f86a4815d74d9ea7103cd5c7586ff1','0','2','0'), ('44721','18','','10322','ES {#ES.NODE}: Get data','es.node.get.data[{#ES.NODE}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Returns cluster nodes statistics.','0','30d','0','','30693','','','','','200','1','0','','','0','0','0','0','0','0','0','979eddbb814f44ef9ce34d19cc79ecd0','0','2','0'), ('44722','18','','10363','NameNode: Get info','hadoop.namenode.info','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','32641','','','','','200','1','0','','','0','0','0','0','0','0','0','ea72dc1574f348d19432a1a922b4ed35','0','2','0'), ('44723','18','','10363','ResourceManager: Get info','hadoop.resourcemanager.info','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','32639','','','','','200','1','0','','','0','0','0','0','0','0','0','5b9200a5a39c41c2b4b88e7d41d90e7b','0','2','0'), ('44724','18','','10363','Hadoop DataNode {#HOSTNAME}: Get raw info','hadoop.datanode.raw_info[{#HOSTNAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32634','','','','','200','1','0','','','0','0','0','0','0','0','0','e1f9badba66147e6aaa2f895e6638fb9','0','2','0'), ('44725','18','','10363','Hadoop NodeManager {#HOSTNAME}: Get raw info','hadoop.nodemanager.raw_info[{#HOSTNAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','32635','','','','','200','1','0','','','0','0','0','0','0','0','0','a8b11a7fb3244792abf4ffa9461e4712','0','2','0'), ('44726','18','','10308','Backend {#PXNAME}: Raw data','haproxy.backend.raw[{#PXNAME},{#SVNAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The raw data of the Backend with the name `{#PXNAME}`','0','30d','0','','30189','','','','','200','1','0','','','0','0','0','0','0','0','0','109438f053a24866a8c001c2260f1c37','0','2','0'), ('44727','18','','10308','Frontend {#PXNAME}: Raw data','haproxy.frontend.raw[{#PXNAME},{#SVNAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The raw data of the Frontend with the name `{#PXNAME}`','0','30d','0','','30189','','','','','200','1','0','','','0','0','0','0','0','0','0','8cac0a6b219e49c2ae1fd61e78be4ee0','0','2','0'), ('44728','18','','10308','Server {#PXNAME} {#SVNAME}: Raw data','haproxy.server.raw[{#PXNAME},{#SVNAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The raw data of the Server named `{#SVNAME}` and the proxy with the name `{#PXNAME}`','0','30d','0','','30189','','','','','200','1','0','','','0','0','0','0','0','0','0','3db97a60d637466bb7038dd08b9f5c7e','0','2','0'), ('44729','18','','10309','Backend {#PXNAME}: Raw data','haproxy.backend.raw[{#PXNAME},{#SVNAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The raw data of the Backend with the name `{#PXNAME}`','0','30d','0','','30230','','','','','200','1','0','','','0','0','0','0','0','0','0','8446abe2825848c7a11fb7d567f9e3a1','0','2','0'), ('44730','18','','10309','Frontend {#PXNAME}: Raw data','haproxy.frontend.raw[{#PXNAME},{#SVNAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The raw data of the Frontend with the name `{#PXNAME}`','0','30d','0','','30230','','','','','200','1','0','','','0','0','0','0','0','0','0','e0a67c04834645e4b59cf6bab5353f84','0','2','0'), ('44731','18','','10309','Server {#PXNAME} {#SVNAME}: Raw data','haproxy.server.raw[{#PXNAME},{#SVNAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The raw data of the Server named `{#SVNAME}` and the proxy with the name `{#PXNAME}`','0','30d','0','','30230','','','','','200','1','0','','','0','0','0','0','0','0','0','a0cd94ee26f141f9ab02d902ef0fe30c','0','2','0'), ('44732','18','','10506','Namespace [{#NAMESPACE}] Pod [{#NAME}] CPU: Usage seconds, total','kube.pod.container_cpu_usage_seconds_total[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Consumed cpu time. It is calculated from the cumulative value using the `Change per second` preprocessing step.','0','30d','0','','39905','','','','','200','1','0','','','0','0','0','0','0','0','0','08ae25c1a6a34fae9f3131b14c061e4d','0','2','0'), ('44733','18','','10507','Node discovery','kube.node.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','','39937','','','','','200','1','0','','','0','0','0','0','0','0','0','f408d71f02f645f6a7e24047a57860b6','0','2','0'), ('44734','18','','10507','Node [{#NAME}] Requests: Memory','kube.node.requests.memory[{#NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Node Memory requests. https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/','0','30d','0','','39937','','','','','200','1','0','','','0','0','0','0','0','0','0','32f2f1d3ad084c6c9bbb96ad2fe9d98d','0','2','0'), ('44735','18','','10507','Node [{#NAME}] Requests: CPU','kube.node.requests.cpu[{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Node CPU requests. https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/','0','30d','0','','39937','','','','','200','1','0','','','0','0','0','0','0','0','0','8ea2954c99cc4e22a82c5a333146d936','0','2','0'), ('44736','18','','10507','Node [{#NAME}] Limits: Memory','kube.node.limits.memory[{#NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Node Memory limits. https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/','0','30d','0','','39937','','','','','200','1','0','','','0','0','0','0','0','0','0','e3ad703e83724cc7a5b918d9efae6e62','0','2','0'), ('44737','18','','10507','Node [{#NAME}] Limits: CPU','kube.node.limits.cpu[{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Node CPU limits. https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/','0','30d','0','','39937','','','','','200','1','0','','','0','0','0','0','0','0','0','1fb0ebd40fcb4e6c8a22bb646191adb2','0','2','0'), ('44738','18','','10507','Node [{#NAME}]: Get data','kube.node.get[{#NAME}]','0','0','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Collecting and processing cluster by node [{#NAME}] data via Kubernetes API.','0','30d','0','','39937','','','','','200','1','0','','','0','0','0','0','0','0','0','3d8536659ac44347b36e61f60873fa61','0','2','0'), ('44762','18','','10510','PV discovery','kube.pv.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','0','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','657edb22832e43f5a084cf872c6bc6e4','0','2','0'), ('44763','18','','10510','Namespace [{#NAMESPACE}] Deployment [{#NAME}]: Replicas mismatched','kube.deployment.replicas_mismatched[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of available replicas not matching the desired number of replicas.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','b6d4d557e6104f6b9e1084863cf4024d','0','2','0'), ('44764','18','','10510','PV [{#NAME}] Capacity bytes','kube.pv.capacity.bytes[{#NAME}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'A capacity of the persistent volume in bytes.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','f93e620a32114a239bc622246ff57eb0','0','2','0'), ('44765','18','','10510','PV status phase: Available, sum','kube.pv.status_phase.available.sum[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total amount of persistent volumes in the Available phase.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','1','f1f7c15a30e04203b63b3f828f1e49c6','0','2','0'), ('44766','18','','10510','PV status phase: Bound, sum','kube.pv.status_phase.bound.sum[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total amount of persistent volumes in the Bound phase.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','1','236db4d5cb4149f691003c0b50bf2b55','0','2','0'), ('44767','18','','10510','PV status phase: Failed, sum','kube.pv.status_phase.failed.sum[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total amount of persistent volumes in the Failed phase.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','1','bc5e42637e454baeb38eef946093f38a','0','2','0'), ('44768','18','','10510','PV status phase: Pending, sum','kube.pv.status_phase.pending.sum[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total amount of persistent volumes in the Pending phase.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','1','e69e327a90094195997a28e36fe47441','0','2','0'), ('44769','18','','10510','PV status phase: Released, sum','kube.pv.status_phase.released.sum[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total amount of persistent volumes in the Released phase.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','1','121d33d774534d38809b014f0af20d72','0','2','0'), ('44770','18','','10510','PV [{#NAME}] Status phase','kube.pv.status_phase[{#NAME}]','0','31d','365d','0','3','','','','',NULL,'1085','','','0','','','','','2',NULL,'The current status phase of the persistent volume.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','f2982e1a1c4a46f08b855d6f35e60c85','0','2','0'), ('44771','18','','10510','Namespace [{#NAMESPACE}] PVC status phase: Bound, sum','kube.pvc.status_phase.bound.sum[{#NAMESPACE}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total amount of persistent volume claims in the Bound phase.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','1','41bc1f54992a492da414846b91d48b0e','0','2','0'), ('44772','18','','10510','Namespace [{#NAMESPACE}] PVC status phase: Lost, sum','kube.pvc.status_phase.lost.sum[{#NAMESPACE}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total amount of persistent volume claims in the Lost phase.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','1','f3b3979c04424b908b514589c2995ff8','0','2','0'), ('44773','18','','10510','Namespace [{#NAMESPACE}] PVC status phase: Pending, sum','kube.pvc.status_phase.pending.sum[{#NAMESPACE}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total amount of persistent volume claims in the Pending phase.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','1','237d8ee073c04c21a14269f15ab679fd','0','2','0'), ('44774','18','','10510','Namespace [{#NAMESPACE}] PVC [{#NAME}] Status phase','kube.pvc.status_phase[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','3','','','','',NULL,'1085','','','0','','','','','2',NULL,'The current status phase of the persistent volume claim.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','f036e514626b4610b531f9be09289daa','0','2','0'), ('44775','18','','10510','Namespace [{#NAMESPACE}] ReplicaSet [{#NAME}]: Replicas mismatched','kube.replicaset.replicas_mismatched[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of ready replicas not matching the desired number of replicas.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','a249a4762874499eb83eb8864df5c357','0','2','0'), ('44776','18','','10510','Namespace [{#NAMESPACE}] StatefulSet [{#NAME}]: Replicas mismatched','kube.statefulset.replicas_mismatched[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of ready replicas not matching the number of replicas.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','e2c3e03fe9bd42beab8a5d09c0a766bd','0','2','0'), ('44777','18','','10415','HTTP location zone [{#NAME}]: Raw data','nginx.http.location_zones.raw[{#NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The raw data of the location zone with the name `{#NAME}`.','0','30d','0','','35161','','','','','200','1','0','','','0','0','0','0','0','0','0','7dc23595142f45e2bd2a40698c21e34d','0','2','0'), ('44778','18','','10415','HTTP server zone [{#NAME}]: Raw data','nginx.http.server_zones.raw[{#NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The raw data of the HTTP server zone with the name `{#NAME}` .','0','30d','0','','35162','','','','','200','1','0','','','0','0','0','0','0','0','0','db1046fb656c4ddf8a057cc1d0cb44f6','0','2','0'), ('44779','18','','10415','HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Raw data','nginx.http.upstream.peer.raw[{#UPSTREAM},{#PEER}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The raw data of the HTTP upstream with the name `[{#UPSTREAM}]`and peer with the name`[{#PEER}]`.','0','30d','0','','35160','','','','','200','1','0','','','0','0','0','0','0','0','0','45905cc6029140a39a8c9228d0254063','0','2','0'), ('44780','18','','10415','HTTP upstream [{#NAME}]: Raw data','nginx.http.upstreams.raw[{#NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The raw data of the HTTP upstream with the name `{#NAME}`.','0','30d','0','','35160','','','','','200','1','0','','','0','0','0','0','0','0','0','c3e92f3e636c4c45907fecd332eb700f','0','2','0'), ('44781','18','','10415','Resolver [{#NAME}]: Raw data','nginx.resolvers.raw[{#NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The raw data of the `Resolver` with the name `{#NAME}`.','0','30d','0','','35157','','','','','200','1','0','','','0','0','0','0','0','0','0','f224bd4758e6481cae8779ec28a0ede4','0','2','0'), ('44782','18','','10415','Stream server zone [{#NAME}]: Raw data','nginx.stream.server_zones.raw[{#NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The raw data of server zone with the name `{#NAME}`, configured in the "stream" directive.','0','30d','0','','35155','','','','','200','1','0','','','0','0','0','0','0','0','0','b3387022f2b44650823ce47394723069','0','2','0'), ('44783','18','','10415','Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Raw data','nginx.stream.upstream.peer.raw[{#UPSTREAM},{#PEER}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The raw data of the upstream with the name `[{#UPSTREAM}]`and peer with the name`[{#PEER}]`, configured in the "stream" directive.','0','30d','0','','35159','','','','','200','1','0','','','0','0','0','0','0','0','0','4501c6c20ccd4c93a54e0e23b75de76b','0','2','0'), ('44784','18','','10415','Stream upstream [{#NAME}]: Raw data','nginx.stream.upstreams.raw[{#NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The raw data of the upstream with the name `[{#UPSTREAM}]`, configured in the "stream" directive.','0','30d','0','','35159','','','','','200','1','0','','','0','0','0','0','0','0','0','17a28cedacaf4a67929982037bf61f59','0','2','0'), ('44791','18','','10261','Connector queue','connector_queue','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of values enqueued in the connector queue.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','94235a52be114cb6a99cfc90834144e7','0','2','0'), ('44792','18','','10261','Utilization of connector manager internal processes, in %','process.connector_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the connector manager processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','b7564d4eb40848dbb299e74cd525a07d','0','2','0'), ('44793','18','','10261','Utilization of connector worker internal processes, in %','process.connector_worker.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the connector worker processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','9a75eee4853a44b1b5087e0fea6c5bcb','0','2','0'), ('44794','18','','10369','Zookeeper client {#TYPE} [{#CLIENT}]: Get client info','zookeeper.client_info[{#TYPE},{#CLIENT}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The item gets information about "{#CLIENT}" client of "{#TYPE}" type.','0','30d','0','','32964','','','','','200','1','0','','','0','0','0','0','0','0','0','76f3b4f0a73d4565bdb5391ac9af9f24','0','2','0'), ('44797','18','','10531','Get storage accounts errors','azure.get.storage.acc.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The errors from API requests.','0','30d','0','','44795','','','','','200','1','0','','','0','0','0','0','0','0','0','2e425a9ef8d34ea68f7998ceed30ebc4','0','2','0'), ('44798','18','','10568','Autoscale max throughput','azure.cosmosdb.autoscale.max.throughput','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The autoscale max throughput.','0','30d','0','','44796','','','','','200','1','0','','','0','0','0','0','0','0','0','9e247bdb17f44630b9440b59d5ef251b','0','2','0'), ('44799','18','','10568','Physical partition throughput','azure.cosmosdb.physical.partition.throughput','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The physical partition throughput.','0','30d','0','','44796','','','','','200','1','0','','','0','0','0','0','0','0','0','e30d5eadde15427484e7a0d1cb38e9e3','0','2','0'), ('44800','18','','10568','Total request units','azure.cosmosdb.total.request.units','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The request units consumed per minute.','0','30d','0','','44796','','','','','200','1','0','','','0','0','0','0','0','0','0','f4d4d2def5e945ab9048ada4813b7f04','0','2','0'), ('44801','18','','10568','Service availability','azure.cosmosdb.service.availability','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The account requests availability at one hour granularity.','0','30d','0','','44796','','','','','200','1','0','','','0','0','0','0','0','0','0','42bd03c1753b4f19bc9793b03834cd3d','0','2','0'), ('44802','18','','10568','Server side latency, gateway','azure.cosmosdb.server.side.latency.gateway','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The server side latency in gateway connection mode.','0','30d','0','','44796','','','','','200','1','0','','','0','0','0','0','0','0','0','0aefdc3101fe4bcba4743d6e32671554','0','2','0'), ('44803','18','','10568','Server side latency, direct','azure.cosmosdb.server.side.latency.direct','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The server side latency in direct connection mode.','0','30d','0','','44796','','','','','200','1','0','','','0','0','0','0','0','0','0','7587d3750d1643f085db5931670dc2f3','0','2','0'), ('44804','18','','10568','Server side latency','azure.cosmosdb.server.side.latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The server side latency.','0','30d','0','','44796','','','','','200','1','0','','','0','0','0','0','0','0','0','d9b5af0c71874114b48464ce20f8cf3d','0','2','0'), ('44805','18','','10568','Replication latency, P99','azure.cosmosdb.replication.latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The P99 replication latency across source and target regions for geo-enabled account.','0','30d','0','','44796','','','','','200','1','0','','','0','0','0','0','0','0','0','6d7175e27d10406191c883dc2e5949e4','0','2','0'), ('44806','18','','10568','Provisioned throughput','azure.cosmosdb.provisioned.throughput','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The provisioned throughput.','0','30d','0','','44796','','','','','200','1','0','','','0','0','0','0','0','0','0','49311bbfb2584a46b42ed1a7d8fcfd94','0','2','0'), ('44807','18','','10568','Normalized RU consumption','azure.cosmosdb.normalized.ru.consumption','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The max RU consumption percentage per minute.','0','30d','0','','44796','','','','','200','1','0','','','0','0','0','0','0','0','0','fda6b39ce6ef4b8c8418b2e123ecdd17','0','2','0'), ('44808','18','','10568','Physical partition size','azure.cosmosdb.physical.partition.size','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The physical partition size in bytes.','0','30d','0','','44796','','','','','200','1','0','','','0','0','0','0','0','0','0','be6800214a0443e899c40f8a4b6c3f21','0','2','0'), ('44809','18','','10568','Get errors','azure.cosmosdb.data.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A list of errors from API requests.','0','30d','0','','44796','','','','','200','1','0','','','0','0','0','0','0','0','0','35a7d2c96990407f937e07fd160266a9','0','2','0'), ('44810','18','','10568','Mongo request charge','azure.cosmosdb.mongo.requests.charge','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The Mongo request units consumed.','0','30d','0','','44796','','','','','200','1','0','','','0','0','0','0','0','0','0','8fd4068986af444799ae64c6bc8f16a6','0','2','0'), ('44811','18','','10568','Mongo requests','azure.cosmosdb.mongo.requests','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of Mongo requests made.','0','30d','0','','44796','','','','','200','1','0','','','0','0','0','0','0','0','0','e42cf83e456a490295a84cfe9eb288ef','0','2','0'), ('44812','18','','10568','Metadata requests','azure.cosmosdb.metadata.requests','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of metadata requests. Cosmos DB maintains system metadata collection for each account, which allows you to enumerate collections, databases, etc., and their configurations, free of charge.','0','30d','0','','44796','','','','','200','1','0','','','0','0','0','0','0','0','0','cd35f04b180542cda50dc5d4e979e54e','0','2','0'), ('44813','18','','10568','Index usage','azure.cosmosdb.index.usage','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total index usage.','0','30d','0','','44796','','','','','200','1','0','','','0','0','0','0','0','0','0','b09f9445d960415185457b89b6a73452','0','2','0'), ('44814','18','','10568','Document quota','azure.cosmosdb.document.quota','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total storage quota.','0','30d','0','','44796','','','','','200','1','0','','','0','0','0','0','0','0','0','7fa0f59f8cfa4d9e83086b203e4f71ea','0','2','0'), ('44815','18','','10568','Document count','azure.cosmosdb.document.count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total document count.','0','30d','0','','44796','','','','','200','1','0','','','0','0','0','0','0','0','0','0bf3da9168144016b663c9b8e76447fa','0','2','0'), ('44816','18','','10568','Data usage','azure.cosmosdb.data.usage','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total data usage.','0','30d','0','','44796','','','','','200','1','0','','','0','0','0','0','0','0','0','947a2eb530754a609fa81c59e29fe7b7','0','2','0'), ('44817','18','','10568','Total requests','azure.cosmosdb.total.requests','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of requests per minute.','0','30d','0','','44796','','','','','200','1','0','','','0','0','0','0','0','0','0','3dd2cd4edb7746edb9d917c83b280ca3','0','2','0'), ('44818','18','','10531','Cosmos DB account discovery','azure.cosmos.mongo.db.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The list of Cosmos databases provided by the subscription.','0','7d','1','','43714','','','','','200','1','0','','','0','0','0','0','0','0','0','3bfbfc8d770a4c77a17d62aaebb55e64','0','2','0'), ('44819','18','','10531','Storage accounts discovery','azure.storage.acc.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The list of all storage accounts available under the subscription.','0','7d','1','','44795','','','','','200','1','0','','','0','0','0','0','0','0','0','3b9bde32dd6b4e3aa2dd8d7949f655e9','0','2','0'), ('44821','18','','10531','Storage account [{#NAME}]: Success Server Latency','azure.storage.success.server.latency[{#NAME}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The average time used to process a successful request by Azure Storage. This value does not include the network latency specified in `SuccessE2ELatency`.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','7076dbfb45cd49828b96064aa892e8e4','0','2','0'), ('44822','18','','10531','Storage account [{#NAME}]: Queue Count','azure.storage.queue.count[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of queues in the storage account with the name `[{#NAME}]`.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','9174d372235e4d14a4896a79ddcbc051','0','2','0'), ('44823','18','','10531','Storage account [{#NAME}]: Queue Egress','azure.storage.queue.engress[{#NAME}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of egress data. This number includes egress to external client from Azure Storage and also egress within Azure. As a result, this number does not reflect billable egress.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','b8cff599c4194b4abd74f4a27ca93284','0','2','0'), ('44824','18','','10531','Storage account [{#NAME}]: Queue Ingress','azure.storage.queue.ingress[{#NAME}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of ingress data, expressed in bytes. This number includes ingress from an external client into Azure Storage and also ingress within Azure.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','599f612c3cc64e81a53d507ae0078ab1','0','2','0'), ('44825','18','','10531','Storage account [{#NAME}]: Queue Message Count','azure.storage.queue.message.count[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of unexpired queue messages in the storage account with the name `[{#NAME}]`.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','70c7b436a03145c5ab694b3a20ac52b1','0','2','0'), ('44826','18','','10531','Storage account [{#NAME}]: Queue Success E2E Latency','azure.storage.queue.success.e2e.latency[{#NAME}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The average end-to-end latency of successful requests made to a storage service or the specified API operation, expressed in milliseconds. This value includes the required processing time within Azure Storage to read the request, send the response, and receive acknowledgment of the response.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','eccdbf48412e4c28afc3bbf87c545cc2','0','2','0'), ('44827','18','','10531','Storage account [{#NAME}]: Queue Success Server Latency','azure.storage.queue.success.server.latency[{#NAME}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The average time used to process a successful request by Azure Storage. This value does not include the network latency specified in `SuccessE2ELatency`.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','4d9aa2753d944690b01a23bcd44fd52d','0','2','0'), ('44828','18','','10531','Storage account [{#NAME}]: Queue Transactions','azure.storage.queue.transactions[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of requests made to the storage service or a specified API operation. This number includes successful and failed requests and also requests that produced errors. Use `ResponseType` dimension for the number of different types of responses.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','e472739df4634b55be2466bd91af9886','0','2','0'), ('44829','18','','10531','Storage account [{#NAME}]: Success E2E Latency','azure.storage.success.e2e.latency[{#NAME}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The average end-to-end latency of successful requests made to a storage service or the specified API operation, expressed in milliseconds. This value includes the required processing time within Azure Storage to read the request, send the response, and receive acknowledgment of the response.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','48437de0bdca4f5392c295ca8b82bd0a','0','2','0'), ('44830','18','','10531','Storage account [{#NAME}]: Table Availability','azure.storage.table.availability[{#NAME}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of availability for the storage service or a specified API operation. Availability is calculated by taking the `TotalBillableRequests` value and dividing it by the number of applicable requests, including those that produced unexpected errors. All unexpected errors result in reduced availability for the storage service or the specified API operation.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','918f1d1c70964e7c9f5521cf99bbb21d','0','2','0'), ('44831','18','','10531','Storage account [{#NAME}]: Ingress','azure.storage.ingress[{#NAME}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of ingress data, expressed in bytes. This number includes ingress from an external client into Azure Storage and also ingress within Azure.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','caeaa6805904471a8b18480f34ef9807','0','2','0'), ('44832','18','','10531','Storage account [{#NAME}]: Table Capacity','azure.storage.table.capacity[{#NAME}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of storage used by the table service of the storage account with the name `[{#NAME}]`, expressed in bytes.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','ee19a3857a7a4650952eb855193991ee','0','2','0'), ('44833','18','','10531','Storage account [{#NAME}]: Table Count','azure.storage.table.count[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of tables in the storage account with the name `[{#NAME}]`.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','a3d11321b1cc4c1b9c322c0a7162e76e','0','2','0'), ('44834','18','','10531','Storage account [{#NAME}]: Table Egress','azure.storage.table.engress[{#NAME}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of egress data. This number includes egress to external client from Azure Storage and also egress within Azure. As a result, this number does not reflect billable egress.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','d75bd57fdd9f4377aea7c1e52a109c18','0','2','0'), ('44835','18','','10531','Storage account [{#NAME}]: Table Entity Count','azure.storage.table.entity.count[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of table entities in the storage account with the name `[{#NAME}]`.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','f2911504457b4d329ae7cf7d7a24594a','0','2','0'), ('44836','18','','10531','Storage account [{#NAME}]: Table Ingress','azure.storage.table.ingress[{#NAME}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of ingress data, expressed in bytes. This number includes ingress from an external client into Azure Storage and also ingress within Azure.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','993ca2e5bcd74d27b19998d77f0abec8','0','2','0'), ('44837','18','','10531','Storage account [{#NAME}]: Table Success E2E Latency','azure.storage.table.success.e2e.latency[{#NAME}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The average end-to-end latency of successful requests made to a storage service or the specified API operation, expressed in milliseconds. This value includes the required processing time within Azure Storage to read the request, send the response, and receive acknowledgment of the response.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','00c441cc77f4447584d4bffbefc304e0','0','2','0'), ('44838','18','','10531','Storage account [{#NAME}]: Table Success Server Latency','azure.storage.table.success.server.latency[{#NAME}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The average time used to process a successful request by Azure Storage. This value does not include the network latency specified in `SuccessE2ELatency`.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','f29e3ad4be034f38932cb85654397926','0','2','0'), ('44839','18','','10531','Storage account [{#NAME}]: Table Transactions','azure.storage.table.transactions[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of requests made to the storage service or a specified API operation. This number includes successful and failed requests and also requests that produced errors. Use `ResponseType` dimension for the number of different types of responses.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','9ba25e87c5bb466a99855a9fb893283d','0','2','0'), ('44840','18','','10531','Storage account [{#NAME}]: Transactions','azure.storage.transactions[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of requests made to the storage service or a specified API operation. This number includes successful and failed requests and also requests that produced errors. Use `ResponseType` dimension for the number of different types of responses.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','6f68f0d8a63640ffa549fde44e8fe56c','0','2','0'), ('44841','18','','10531','Storage account [{#NAME}]: Queue Capacity','azure.storage.queue.capacity[{#NAME}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of queue storage used by the storage account with the name `[{#NAME}]`, expressed in bytes.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','be8b82396ff243e8a52864069b192dea','0','2','0'), ('44842','18','','10531','Storage account [{#NAME}]: File Transactions','azure.storage.file.transactions[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of requests made to the storage service or a specified API operation. This number includes successful and failed requests and also requests that produced errors. Use `ResponseType` dimension for the number of different types of responses.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','ed4b7ac10368493ba01c7cbeffba3042','0','2','0'), ('44843','18','','10531','Storage account [{#NAME}]: Availability','azure.storage.availability[{#NAME}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of availability for the storage service or a specified API operation. Availability is calculated by taking the `TotalBillableRequests` value and dividing it by the number of applicable requests, including those that produced unexpected errors. All unexpected errors result in reduced availability for the storage service or the specified API operation.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','08ce66b39b084182bdb60a5556b88c88','0','2','0'), ('44844','18','','10531','Storage account [{#NAME}]: Blob Transactions','azure.storage.blob.transactions[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of requests made to the storage service or a specified API operation. This number includes successful and failed requests and also requests that produced errors. Use `ResponseType` dimension for the number of different types of responses.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','48ecb880def34474b73a03eb895db3ea','0','2','0'), ('44845','18','','10531','Storage account [{#NAME}]: Blob Availability','azure.storage.blob.availability[{#NAME}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of availability for the storage service or a specified API operation. Availability is calculated by taking the `TotalBillableRequests` value and dividing it by the number of applicable requests, including those that produced unexpected errors. All unexpected errors result in reduced availability for the storage service or the specified API operation.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','9ae0af76a37047f5ba84de2f43dfb5c4','0','2','0'), ('44846','18','','10531','Storage account [{#NAME}]: Blob Capacity','azure.storage.blob.capacity[{#NAME}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of storage used by the blob service of the storage account with the name `[{#NAME}]`, expressed in bytes.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','c6437ade4fee44f783ab379fb179508d','0','2','0'), ('44847','18','','10531','Storage account [{#NAME}]: Blob Container Count','azure.storage.blob.container.count[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of containers in the storage account with the name `[{#NAME}]`.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','707be15f02a141548ce5f89097c303a0','0','2','0'), ('44848','18','','10531','Storage account [{#NAME}]: Blob Count','azure.storage.blob.count[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of blob objects stored in the storage account with the name `[{#NAME}]`.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','9bd8b8f1b5844298a245d449548de46e','0','2','0'), ('44849','18','','10531','Storage account [{#NAME}]: Blob Egress','azure.storage.blob.engress[{#NAME}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of egress data. This number includes egress to external client from Azure Storage and also egress within Azure. As a result, this number does not reflect billable egress.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','ae28bbd289644619b20b1907212d8293','0','2','0'), ('44850','18','','10531','Storage account [{#NAME}]: Blob Index Capacity','azure.storage.blob.index.capacity[{#NAME}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of storage with the name `[{#NAME}]` used by the Azure Data Lake Storage Gen2 hierarchical index.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','8e73a2aba92444dd9c02c6f94227a4e5','0','2','0'), ('44851','18','','10531','Storage account [{#NAME}]: Blob Ingress','azure.storage.blob.ingress[{#NAME}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of ingress data, expressed in bytes. This number includes ingress from an external client into Azure Storage and also ingress within Azure.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','ff40325efb174839bef7bc775049837e','0','2','0'), ('44852','18','','10531','Storage account [{#NAME}]: Blob Success E2E Latency','azure.storage.blob.success.e2e.latency[{#NAME}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The average end-to-end latency of successful requests made to a storage service or the specified API operation, expressed in milliseconds. This value includes the required processing time within Azure Storage to read the request, send the response, and receive acknowledgment of the response.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','e17d6f2ed79c4b5eaa54730c82d6840f','0','2','0'), ('44853','18','','10531','Storage account [{#NAME}]: Blob Success Server Latency','azure.storage.blob.success.server.latency[{#NAME}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The average time used to process a successful request by Azure Storage. This value does not include the network latency specified in `SuccessE2ELatency`.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','727fb792fe5c4229995f7aa5bbb681ed','0','2','0'), ('44854','18','','10531','Storage account [{#NAME}]: Egress','azure.storage.engress[{#NAME}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of egress data. This number includes egress to external client from Azure Storage and also egress within Azure. As a result, this number does not reflect billable egress.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','4198807e1e08439a9009481ddcfd3bab','0','2','0'), ('44855','18','','10531','Storage account [{#NAME}]: File Success Server Latency','azure.storage.file.success.server.latency[{#NAME}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The average time used to process a successful request by Azure Storage. This value does not include the network latency specified in `SuccessE2ELatency`.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','43b6c0b948f64d9daada7aaac520c839','0','2','0'), ('44856','18','','10531','Storage account [{#NAME}]: File Capacity','azure.storage.file.capacity[{#NAME}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of file storage used by the storage account with the name `[{#NAME}]`, expressed in bytes.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','43069f165849449d8403d1a8c82fe634','0','2','0'), ('44857','18','','10531','Storage account [{#NAME}]: File Count','azure.storage.file.count[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of files in the storage account with the name `[{#NAME}]`.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','3483741c11a141c2866ea58a74a91135','0','2','0'), ('44858','18','','10531','Storage account [{#NAME}]: File Egress','azure.storage.file.engress[{#NAME}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of egress data. This number includes egress to external client from Azure Storage and also egress within Azure. As a result, this number does not reflect billable egress.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','7f6d01573bf24d9889f41a14cb581075','0','2','0'), ('44859','18','','10531','Storage account [{#NAME}]: File Ingress','azure.storage.file.ingress[{#NAME}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of ingress data, expressed in bytes. This number includes ingress from an external client into Azure Storage and also ingress within Azure.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','9f9b6772f9d9478ba3be3a93c5408ba2','0','2','0'), ('44860','18','','10531','Storage account [{#NAME}]: File Share Capacity Quota','azure.storage.file.share.capacity.quota[{#NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The upper limit on the amount of storage that can be used by Azure Files Service, in bytes.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','4cb60e5473ce46a08bc962dc97c1f4db','0','2','0'), ('44861','18','','10531','Storage account [{#NAME}]: File Share Count','azure.storage.file.share.count[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of file shares in the storage account.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','220673a2e99a4108b034d04d79108231','0','2','0'), ('44862','18','','10531','Storage account [{#NAME}]: File Share Snapshot Size','azure.storage.file.share.snapshot.size[{#NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of storage used by the snapshots in storage account''s File service, in bytes.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','47c48f39b9744a92ac13e9db69f6e629','0','2','0'), ('44863','18','','10531','Storage account [{#NAME}]: File Share Snapshot Count','azure.storage.file.shares.snapshot.count[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of snapshots present on the share in storage account''s Files Service.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','f0394f8f2d55471c8ab557045349a6ec','0','2','0'), ('44864','18','','10531','Storage account [{#NAME}]: File Success E2E Latency','azure.storage.file.success.e2e.latency[{#NAME}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The average end-to-end latency of successful requests made to a storage service or the specified API operation, expressed in milliseconds. This value includes the required processing time within Azure Storage to read the request, send the response, and receive acknowledgment of the response.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','431a6c51418d401697d105a0d9b62d23','0','2','0'), ('44865','18','','10531','Storage account [{#NAME}]: Used Capacity','azure.storage.used.capacity[{#NAME}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of storage used by the storage account with the name `[{#NAME}]`, expressed in bytes. For standard storage accounts, it''s the sum of capacity used by blob, table, file, and queue. For premium storage accounts and blob storage accounts, it is the same as BlobCapacity or FileCapacity.','0','30d','0','','44820','','','','','200','1','0','','','0','0','0','0','0','0','0','08ef07d874db4823bd167482bf049916','0','2','0'), ('44885','18','','10570','Authorization errors check','gcp.auth.err.check','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A list of errors from API requests.','0','30d','0','','44866','','','','','200','1','0','','','0','0','0','0','0','0','0','b003e61fbede488a957b6c866ffaa9ba','0','2','0'), ('44886','18','','10570','Instances get','gcp.cloudsql.instances.get','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'GCP Cloud SQL: Instances get.','0','30d','0','','44866','','','','','200','1','0','','','0','0','0','0','0','0','0','3ac5c859692140c0b686e772efa05032','0','2','0'), ('44887','18','','10570','Instances get','gcp.gce.instances.get','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get GCP Compute Engine instances.','0','30d','0','','44866','','','','','200','1','0','','','0','0','0','0','0','0','0','461e72fb7e104261831455ae3cc87358','0','2','0'), ('44888','18','','10570','Project quotas get','gcp.gce.quotas.get','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'GCP Compute Engine resource quotas available for the particular project.','0','30d','0','','44866','','','','','200','1','0','','','0','0','0','0','0','0','0','c4f17331815345bcb0ac6ea98413b2b5','0','2','0'), ('44889','18','','10571','Network: Received bytes','gcp.cloudsql.mssql.network.received_bytes_count','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Delta count of bytes received through the network.','0','30d','0','','44869','','','','','200','1','0','','','0','0','0','0','0','0','0','297744bfcdd84565b828e1c6912beb46','0','2','0'), ('44890','18','','10571','Memory size','gcp.cloudsql.mssql.memory.quota','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum RAM size in bytes.','0','30d','0','','44869','','','','','200','1','0','','','0','0','0','0','0','0','0','db943300803847718c52d0d33988d81e','0','2','0'), ('44891','18','','10571','Memory used by DB engine','gcp.cloudsql.mssql.memory.total_usage','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total RAM usage in bytes. This metric reports the RAM usage of the database process, including the buffer/cache.','0','30d','0','','44869','','','','','200','1','0','','','0','0','0','0','0','0','0','21b075a5f95d4c93888b7a0766fdcea5','0','2','0'), ('44892','18','','10571','Memory usage','gcp.cloudsql.mssql.memory.usage','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The RAM usage in bytes. This metric reports the RAM usage of the server, excluding the buffer/cache.','0','30d','0','','44869','','','','','200','1','0','','','0','0','0','0','0','0','0','05d1ff573371416dad9ee028247b1cf3','0','2','0'), ('44893','18','','10571','Memory utilization','gcp.cloudsql.mssql.memory.utilization','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The fraction of the memory quota that is currently in use. Shown as percentage.','0','30d','0','','44869','','','','','200','1','0','','','0','0','0','0','0','0','0','4e11944fb7624ffdb02b5d1bb5bedf7a','0','2','0'), ('44894','18','','10571','Connections','gcp.cloudsql.mssql.network.connections','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connections to the databases on the Cloud SQL instance.','0','30d','0','','44869','','','','','200','1','0','','','0','0','0','0','0','0','0','393b6117008d4925be9474afc9c7cdf9','0','2','0'), ('44895','18','','10571','Audits size','gcp.cloudsql.mssql.audits_size','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Tracks the size in bytes of stored SQLServer audit files on an instance. Empty value if there are no audits enabled.','0','30d','0','','44869','','','','','200','1','0','','','0','0','0','0','0','0','0','a8d79cab89864c03a7614bd59f734942','0','2','0'), ('44896','18','','10571','Network: Sent bytes','gcp.cloudsql.mssql.network.sent_bytes_count','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Delta count of bytes sent through the network.','0','30d','0','','44869','','','','','200','1','0','','','0','0','0','0','0','0','0','b362d14169b34f00ab3fa94b89a1b362','0','2','0'), ('44897','18','','10571','Read page operations','gcp.cloudsql.mssql.memory.page_ops.read','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of physical database page reads. This metric counts physical page reads across all databases.','0','30d','0','','44869','','','','','200','1','0','','','0','0','0','0','0','0','0','4d87a50d490348afbaf751857beb5b61','0','2','0'), ('44898','18','','10571','Batch requests','gcp.cloudsql.mssql.trans.batch_request_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of Transact-SQL command batches received.','0','30d','0','','44869','','','','','200','1','0','','','0','0','0','0','0','0','0','7d2c28a537e44ee284e4b5d186b935d6','0','2','0'), ('44899','18','','10571','Forwarded records','gcp.cloudsql.mssql.trans.forwarded_record_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of records fetched through forwarded record pointers.','0','30d','0','','44869','','','','','200','1','0','','','0','0','0','0','0','0','0','774cffa1a1f24d778f346bea24926690','0','2','0'), ('44900','18','','10571','Full scans','gcp.cloudsql.mssql.trans.full_scan_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of unrestricted full scans. These can be either base-table or full-index scans.','0','30d','0','','44869','','','','','200','1','0','','','0','0','0','0','0','0','0','f80a924d20c4470496202d3e32261e7d','0','2','0'), ('44901','18','','10571','Page splits','gcp.cloudsql.mssql.trans.page_split_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of page splits that occur as the result of overflowing index pages.','0','30d','0','','44869','','','','','200','1','0','','','0','0','0','0','0','0','0','cd6f91964b7041bb929c6f6f3430cc75','0','2','0'), ('44902','18','','10571','Probe scans','gcp.cloudsql.mssql.trans.probe_scan_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of probe scans that are used to find at least one single qualified row in an index or base table directly.','0','30d','0','','44869','','','','','200','1','0','','','0','0','0','0','0','0','0','0b431016ca8245dea8e33c252a9a7c9b','0','2','0'), ('44903','18','','10571','SQL compilations','gcp.cloudsql.mssql.trans.sql_compilation_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of SQL compilations.','0','30d','0','','44869','','','','','200','1','0','','','0','0','0','0','0','0','0','bf4eb81de038452cb3af16b4efcdb4c5','0','2','0'), ('44904','18','','10571','Write age operations','gcp.cloudsql.mssql.memory.page_ops.write','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of physical database page writes. This metric counts physical page writes across all databases.','0','30d','0','','44869','','','','','200','1','0','','','0','0','0','0','0','0','0','41654bd730b744acbc0ea6de07c992f3','0','2','0'), ('44905','18','','10571','Memory grants pending','gcp.cloudsql.mssql.memory.memory_grants_pending','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Current number of processes waiting for a workspace memory grant.','0','30d','0','','44869','','','','','200','1','0','','','0','0','0','0','0','0','0','2fa0744221884109951ce62d3bb9aaaf','0','2','0'), ('44906','18','','10571','Page life expectancy','gcp.cloudsql.mssql.memory.page_life_expectancy','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Current number of seconds a page will stay in the buffer pool without references.','0','30d','0','','44869','','','','','200','1','0','','','0','0','0','0','0','0','0','3dcad151d0c04f8eb0e8e81c00de23c8','0','2','0'), ('44907','18','','10571','Disk bytes used','gcp.cloudsql.mssql.disk.bytes_used','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Data utilization in bytes.','0','30d','0','','44869','','','','','200','1','0','','','0','0','0','0','0','0','0','cd6cf3870a514ff59bd1f40987764642','0','2','0'), ('44908','18','','10571','Connection resets','gcp.cloudsql.mssql.conn.connection_reset_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of login operations started from the connection pool since the last restart of SQL Server service.','0','30d','0','','44869','','','','','200','1','0','','','0','0','0','0','0','0','0','d512c542f5514681acbb11431a0a6f5a','0','2','0'), ('44909','18','','10571','Login attempts','gcp.cloudsql.mssql.conn.login_attempt_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of login attempts since the last restart of SQL Server service. This does not include pooled connections.','0','30d','0','','44869','','','','','200','1','0','','','0','0','0','0','0','0','0','300a6cb53fb44176bdf99eba86a976bd','0','2','0'), ('44910','18','','10571','Logouts','gcp.cloudsql.mssql.conn.logout_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of logout operations since the last restart of SQL Server service.','0','30d','0','','44869','','','','','200','1','0','','','0','0','0','0','0','0','0','622c237ed12e44c7b2415676ec23bd2d','0','2','0'), ('44911','18','','10571','Processes blocked','gcp.cloudsql.mssql.conn.processes_blocked','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Current number of blocked processes.','0','30d','0','','44869','','','','','200','1','0','','','0','0','0','0','0','0','0','6ba672cbf4c242eb8e6fb80eba4c90d8','0','2','0'), ('44912','18','','10571','Reserved CPU cores','gcp.cloudsql.mssql.cpu.reserved_cores','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of cores reserved for the database.','0','30d','0','','44869','','','','','200','1','0','','','0','0','0','0','0','0','0','38de8ae591854d5fbc4ee4946a2e189a','0','2','0'), ('44913','18','','10571','CPU usage time','gcp.cloudsql.mssql.cpu.usage_time','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Cumulative CPU usage time in seconds.','0','30d','0','','44869','','','','','200','1','0','','','0','0','0','0','0','0','0','cd1f9ab326ac4694b3aeea6cb4ec56ab','0','2','0'), ('44914','18','','10571','CPU utilization','gcp.cloudsql.mssql.cpu.utilization','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Current CPU utilization represented as a percentage of the reserved CPU that is currently in use.','0','30d','0','','44869','','','','','200','1','0','','','0','0','0','0','0','0','0','42d51e38b96f472996eff1e0f9d7b931','0','2','0'), ('44915','18','','10571','Disk size','gcp.cloudsql.mssql.disk.quota','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum data disk size in bytes.','0','30d','0','','44869','','','','','200','1','0','','','0','0','0','0','0','0','0','86bdbf20c9b4466c9ea00e26cb0f0652','0','2','0'), ('44916','18','','10571','Audits successfully uploaded','gcp.cloudsql.mssql.audits_upload_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Tracks the size in bytes of stored SQLServer audit files on an instance. Empty value if there are no audits enabled.','0','30d','0','','44869','','','','','200','1','0','','','0','0','0','0','0','0','0','3026bc61670c496a942a94ab50b614df','0','2','0'), ('44917','18','','10571','Disk read I/O','gcp.cloudsql.mssql.disk.read_ops_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Delta count of data disk read I/O operations.','0','30d','0','','44869','','','','','200','1','0','','','0','0','0','0','0','0','0','400a7318203f40928ebf0b023da65848','0','2','0'), ('44918','18','','10571','Disk utilization','gcp.cloudsql.mssql.disk.utilization','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The fraction of the disk quota that is currently in use. Shown as percentage.','0','30d','0','','44869','','','','','200','1','0','','','0','0','0','0','0','0','0','1d0c09441d9d4333b7be32c3d69bad47','0','2','0'), ('44919','18','','10571','Disk write I/O','gcp.cloudsql.mssql.disk.write_ops_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Delta count of data disk write I/O operations.','0','30d','0','','44869','','','','','200','1','0','','','0','0','0','0','0','0','0','819078cd99af46368eb33d76dadf4861','0','2','0'), ('44920','18','','10571','Buffer cache hit ratio','gcp.cloudsql.mssql.memory.buffer_cache_hit_ratio','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Current percentage of pages found in the buffer cache without having to read from disk. The ratio is the total number of cache hits divided by the total number of cache lookups.','0','30d','0','','44869','','','','','200','1','0','','','0','0','0','0','0','0','0','a29584de7ab142309f0bb6f57b52af85','0','2','0'), ('44921','18','','10571','Checkpoint pages','gcp.cloudsql.mssql.memory.checkpoint_page_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of pages flushed to disk by a checkpoint or other operation that requires all dirty pages to be flushed.','0','30d','0','','44869','','','','','200','1','0','','','0','0','0','0','0','0','0','f8460bbac21c44a98a31a49daf7f692f','0','2','0'), ('44922','18','','10571','Free list stalls','gcp.cloudsql.mssql.memory.free_list_stall_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of requests that had to wait for a free page.','0','30d','0','','44869','','','','','200','1','0','','','0','0','0','0','0','0','0','cc6a5230c7a2447e8038cdbe52105da4','0','2','0'), ('44923','18','','10571','Lazy writes','gcp.cloudsql.mssql.memory.lazy_write_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of buffers written by the buffer manager''s lazy writer. The lazy writer is a system process that flushes out batches of dirty, aged buffers (buffers that contain changes that must be written back to disk before the buffer can be reused for a different page) and makes them available to user processes.','0','30d','0','','44869','','','','','200','1','0','','','0','0','0','0','0','0','0','d86e328fc5fa4c3d938a4959075299b5','0','2','0'), ('44924','18','','10571','SQL recompilations','gcp.cloudsql.mssql.trans.sql_recompilation_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of SQL recompilations.','0','30d','0','','44869','','','','','200','1','0','','','0','0','0','0','0','0','0','39c350f5d1f94726b03c435e9e5e3110','0','2','0'), ('44925','18','','10572','Bytes sent to replica','gcp.cloudsql.mssql.repl.bytes_sent_to_replica_count','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of bytes sent to the remote availability replica. For an async replica, returns the number of bytes before compression. For a sync replica without compression, returns the actual number of bytes.','0','30d','0','','44873','','','','','200','1','0','','','0','0','0','0','0','0','0','e66fe8bb6f924cb088ec57b215fe21d7','0','2','0'), ('44926','18','','10572','Log apply pending queue','gcp.cloudsql.mssql.repl.log_apply_pending_queue','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Current number of log blocks that are waiting to be applied to replica.','0','30d','0','','44873','','','','','200','1','0','','','0','0','0','0','0','0','0','4100432768354e1ca7349a901bccbe85','0','2','0'), ('44927','18','','10572','Log bytes received','gcp.cloudsql.mssql.repl.log_bytes_received_count','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total size of log records received by the replica.','0','30d','0','','44873','','','','','200','1','0','','','0','0','0','0','0','0','0','d060637548af434e926ed833083d9fa0','0','2','0'), ('44928','18','','10572','Recovery queue','gcp.cloudsql.mssql.repl.recovery_queue','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Current size of log records in bytes in the replica''s log files that have not been redone.','0','30d','0','','44873','','','','','200','1','0','','','0','0','0','0','0','0','0','4ec364fea7894df29813b65c2d170367','0','2','0'), ('44929','18','','10572','Redone bytes','gcp.cloudsql.mssql.repl.redone_bytes_count','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total size in bytes of redone log records.','0','30d','0','','44873','','','','','200','1','0','','','0','0','0','0','0','0','0','37c145777926471482ecffd1b6cca792','0','2','0'), ('44930','18','','10572','Resent messages','gcp.cloudsql.mssql.repl.resent_message_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total count of Always On messages to resend. This includes messages that were attempted to be sent but failed and require resending.','0','30d','0','','44873','','','','','200','1','0','','','0','0','0','0','0','0','0','23911902d27e4fa68435935aeeec28e1','0','2','0'), ('44931','18','','10573','Reserved CPU cores','gcp.cloudsql.mysql.cpu.reserved_cores','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of cores reserved for the database.','0','30d','0','','44876','','','','','200','1','0','','','0','0','0','0','0','0','0','83e36c61e8ce4d06a395ea7b06c5877b','0','2','0'), ('44932','18','','10573','Queries','gcp.cloudsql.queries','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Delta of statements executed by the server.','0','30d','0','','44876','','','','','200','1','0','','','0','0','0','0','0','0','0','bbdeb595ab1b44d7a332fbf0c2637403','0','2','0'), ('44933','18','','10573','Network: Bytes sent by MySQL','gcp.cloudsql.mysql_sent_bytes_count','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Delta count of bytes sent by MySQL process.','0','30d','0','','44876','','','','','200','1','0','','','0','0','0','0','0','0','0','f926beb31be44dc0bfb30c571fac280a','0','2','0'), ('44934','18','','10573','Network: Bytes received by MySQL','gcp.cloudsql.mysql_received_bytes_count','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Delta count of bytes received by MySQL process.','0','30d','0','','44876','','','','','200','1','0','','','0','0','0','0','0','0','0','3d3ec2e37bf94fb68c40967b56dfd95c','0','2','0'), ('44935','18','','10573','Open table definitions','gcp.cloudsql.mysql.open_table_definitions','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of table definitions that are currently cached.','0','30d','0','','44876','','','','','200','1','0','','','0','0','0','0','0','0','0','1606766c63bf4aa1ade24a34650eef05','0','2','0'), ('44936','18','','10573','Open tables','gcp.cloudsql.mysql.open_tables','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of tables that are currently open.','0','30d','0','','44876','','','','','200','1','0','','','0','0','0','0','0','0','0','1d651976f70944acb31cd0430e70d422','0','2','0'), ('44937','18','','10573','Network: Sent bytes','gcp.cloudsql.mysql.network.sent_bytes_count','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Delta count of bytes sent through the network.','0','30d','0','','44876','','','','','200','1','0','','','0','0','0','0','0','0','0','977e4e22ebfc4a19a228a8935d9a342c','0','2','0'), ('44938','18','','10573','Network: Received bytes','gcp.cloudsql.mysql.network.received_bytes_count','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Delta count of bytes received through the network.','0','30d','0','','44876','','','','','200','1','0','','','0','0','0','0','0','0','0','d970d8e209df4b2a810c2e59f39fa429','0','2','0'), ('44939','18','','10573','Connections','gcp.cloudsql.mysql.network.connections','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connections to the databases on the Cloud SQL instance.','0','30d','0','','44876','','','','','200','1','0','','','0','0','0','0','0','0','0','9ddae405a9b343759d03b5b29c469d18','0','2','0'), ('44940','18','','10573','Memory utilization','gcp.cloudsql.mysql.memory.utilization','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The fraction of the memory quota that is currently in use. Shown as percentage.','0','30d','0','','44876','','','','','200','1','0','','','0','0','0','0','0','0','0','efe4357a63ec43f799b2303a952c1378','0','2','0'), ('44941','18','','10573','Memory usage','gcp.cloudsql.mysql.memory.usage','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The RAM usage in bytes. This metric reports the RAM usage of the server, excluding the buffer/cache.','0','30d','0','','44876','','','','','200','1','0','','','0','0','0','0','0','0','0','995d07fc814f4d12a9c9bdc6bb52481d','0','2','0'), ('44942','18','','10573','Memory used by DB engine','gcp.cloudsql.mysql.memory.total_usage','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total RAM usage in bytes. This metric reports the RAM usage of the database process, including the buffer/cache.','0','30d','0','','44876','','','','','200','1','0','','','0','0','0','0','0','0','0','13868b9408c9489296531bf1fd927084','0','2','0'), ('44943','18','','10573','Memory size','gcp.cloudsql.mysql.memory.quota','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum RAM size in bytes.','0','30d','0','','44876','','','','','200','1','0','','','0','0','0','0','0','0','0','cc09f5591b0242b3b99199b267a1c527','0','2','0'), ('44944','18','','10573','InnoDB pages written','gcp.cloudsql.mysql.innodb_pages_written','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Delta count of InnoDB pages written.','0','30d','0','','44876','','','','','200','1','0','','','0','0','0','0','0','0','0','584714b219034bbebbc24edad36704c9','0','2','0'), ('44945','18','','10573','CPU usage time','gcp.cloudsql.mysql.cpu.usage_time','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Cumulative CPU usage time in seconds.','0','30d','0','','44876','','','','','200','1','0','','','0','0','0','0','0','0','0','a39ba253dbf24110af48fd49572976fd','0','2','0'), ('44946','18','','10573','InnoDB pages read','gcp.cloudsql.mysql.innodb_pages_read','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Delta count of InnoDB pages read.','0','30d','0','','44876','','','','','200','1','0','','','0','0','0','0','0','0','0','4a9154e235e84c0d9dbf0abf44479f49','0','2','0'), ('44947','18','','10573','InnoDB log fsync calls','gcp.cloudsql.mysql.innodb_os_log_fsyncs','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Delta count of InnoDB fsync() calls to the log file.','0','30d','0','','44876','','','','','200','1','0','','','0','0','0','0','0','0','0','c4a4ffa274974041bccbd25643ff9f70','0','2','0'), ('44948','18','','10573','InnoDB fsync calls','gcp.cloudsql.mysql.innodb_data_fsyncs','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Delta count of InnoDB fsync() calls.','0','30d','0','','44876','','','','','200','1','0','','','0','0','0','0','0','0','0','19e259f61fc24e29a189c35121878eb3','0','2','0'), ('44949','18','','10573','InnoDB total pages','gcp.cloudsql.mysql.innodb_buffer_pool_pages_total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of pages in the InnoDB buffer pool.','0','30d','0','','44876','','','','','200','1','0','','','0','0','0','0','0','0','0','080d5304c0e346808bd70b125a27be4b','0','2','0'), ('44950','18','','10573','InnoDB free pages','gcp.cloudsql.mysql.innodb_buffer_pool_pages_free','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of unused pages in the InnoDB buffer pool.','0','30d','0','','44876','','','','','200','1','0','','','0','0','0','0','0','0','0','75835c8326e6461d8f25fb7d55271f16','0','2','0'), ('44951','18','','10573','InnoDB dirty pages','gcp.cloudsql.mysql.innodb_buffer_pool_pages_dirty','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of unflushed pages in the InnoDB buffer pool.','0','30d','0','','44876','','','','','200','1','0','','','0','0','0','0','0','0','0','5e5b9cdfa7f2455b881cceface136e65','0','2','0'), ('44952','18','','10573','Disk write I/O','gcp.cloudsql.mysql.disk.write_ops_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Delta count of data disk write I/O operations.','0','30d','0','','44876','','','','','200','1','0','','','0','0','0','0','0','0','0','7a44187c6a404defb0dc83fa22f89d96','0','2','0'), ('44953','18','','10573','Disk utilization','gcp.cloudsql.mysql.disk.utilization','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The fraction of the disk quota that is currently in use. Shown as percentage.','0','30d','0','','44876','','','','','200','1','0','','','0','0','0','0','0','0','0','b2274d47be5041b493b00fd55172c0e9','0','2','0'), ('44954','18','','10573','Disk read I/O','gcp.cloudsql.mysql.disk.read_ops_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Delta count of data disk read I/O operations.','0','30d','0','','44876','','','','','200','1','0','','','0','0','0','0','0','0','0','d426d282d2ee43fe9c9b64dcb6d0c4c9','0','2','0'), ('44955','18','','10573','Disk size','gcp.cloudsql.mysql.disk.quota','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum data disk size in bytes.','0','30d','0','','44876','','','','','200','1','0','','','0','0','0','0','0','0','0','464fecbbedd64e988739c93736d2b824','0','2','0'), ('44956','18','','10573','Disk bytes used','gcp.cloudsql.mysql.disk.bytes_used','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Data utilization in bytes.','0','30d','0','','44876','','','','','200','1','0','','','0','0','0','0','0','0','0','76c37760145d43f3927f1a9548dea8a5','0','2','0'), ('44957','18','','10573','CPU utilization','gcp.cloudsql.mysql.cpu.utilization','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Current CPU utilization represented as a percentage of the reserved CPU that is currently in use.','0','30d','0','','44876','','','','','200','1','0','','','0','0','0','0','0','0','0','df7469e3c76c4286846c27003c9785cc','0','2','0'), ('44958','18','','10573','Questions','gcp.cloudsql.questions','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Delta of statements executed by the server sent by the client.','0','30d','0','','44876','','','','','200','1','0','','','0','0','0','0','0','0','0','114fb26dcdc1441c84c150c7809b3400','0','2','0'), ('44959','18','','10574','Last I/O thread error number','gcp.cloudsql.mysql.repl.last_io_errno','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The error number of the most recent error that caused the I/O thread to stop.','0','30d','0','','44877','','','','','200','1','0','','','0','0','0','0','0','0','0','17aa9eb4749e46be9b0b0f93ef011fca','0','2','0'), ('44960','18','','10574','Last SQL thread error number','gcp.cloudsql.mysql.repl.last_sql_errno','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The error number of the most recent error that caused the SQL thread to stop.','0','30d','0','','44877','','','','','200','1','0','','','0','0','0','0','0','0','0','52c11965a2fc4d37a97ebccc04ee7b80','0','2','0'), ('44961','18','','10574','Network lag','gcp.cloudsql.mysql.repl.network_lag','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates time taken from primary binary log to IO thread on replica.','0','30d','0','','44877','','','','','200','1','0','','','0','0','0','0','0','0','0','e84ac3a2537848b29024659ab5e3a0e9','0','2','0'), ('44962','18','','10574','Replication lag','gcp.cloudsql.mysql.repl.replica_lag','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of seconds the read replica is behind its primary (approximation).','0','30d','0','','44877','','','','','200','1','0','','','0','0','0','0','0','0','0','b5f9960de9414975ac48357844a15860','0','2','0'), ('44963','18','','10574','Slave I/O thread running','gcp.cloudsql.mysql.repl.slave_io_running','0','31d','365d','0','3','','','','',NULL,'1091','','','0','','','','','0',NULL,'Indicates whether the I/O thread for reading the primary''s binary log is running. Possible values are Yes, No and Connecting.','0','30d','0','','44877','','','','','200','1','0','','','0','0','0','0','0','0','0','0c093a0416f24afb96fc28a7abb283d4','0','2','0'), ('44964','18','','10574','Slave SQL thread running','gcp.cloudsql.mysql.repl.slave_sql_running','0','31d','365d','0','3','','','','',NULL,'1091','','','0','','','','','0',NULL,'Indicates whether the SQL thread for executing events in the relay log is running.','0','30d','0','','44877','','','','','200','1','0','','','0','0','0','0','0','0','0','994d92340dd146a381f2e6bbebd1c3f2','0','2','0'), ('44965','18','','10574','Replication state','gcp.cloudsql.mysql.repl.state','0','31d','365d','0','3','','','','',NULL,'1090','','','0','','','','','0',NULL,'The current serving state of replication. This metric is only available for the MySQL/PostgreSQL instances.','0','30d','0','','44877','','','','','200','1','0','','','0','0','0','0','0','0','0','90a9154072164b5c89d715fa77e7e2b0','0','2','0'), ('44966','18','','10575','Reserved CPU cores','gcp.cloudsql.pgsql.cpu.reserved_cores','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of cores reserved for the database.','0','30d','0','','44878','','','','','200','1','0','','','0','0','0','0','0','0','0','396a555958514890af339f4504a96cc6','0','2','0'), ('44967','18','','10575','Frozen transactions','gcp.cloudsql.pgsql.transaction_id_count_frozen','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Delta count of frozen transaction IDs.','0','30d','0','','44878','','','','','200','1','0','','','0','0','0','0','0','0','0','23d1b88571d347db9672596ec13580cc','0','2','0'), ('44968','18','','10575','Assigned transactions','gcp.cloudsql.pgsql.transaction_id_count_assigned','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Delta count of assigned transaction IDs.','0','30d','0','','44878','','','','','200','1','0','','','0','0','0','0','0','0','0','2498b066f4964aa7be03f4cc43eab95e','0','2','0'), ('44969','18','','10575','Temporary files used for writing data','gcp.cloudsql.pgsql.temp_files_written_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of temporary files used for writing data while performing algorithms such as join and sort.','0','30d','0','','44878','','','','','200','1','0','','','0','0','0','0','0','0','0','bd10ec6251c444a79878e82e3ebe9ac0','0','2','0'), ('44970','18','','10575','Data written to temporary','gcp.cloudsql.pgsql.temp_bytes_written_count','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total data size (in bytes) written to temporary files by the queries.','0','30d','0','','44878','','','','','200','1','0','','','0','0','0','0','0','0','0','75bc8d76a59a465fb66a434e13de107d','0','2','0'), ('44971','18','','10575','Oldest running transaction age','gcp.cloudsql.pgsql.oldest_transaction.running','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Age of the oldest running transaction yet to be vacuumed in the Cloud SQL PostgreSQL instance, measured in number of transactions that have happened since the oldest transaction. Empty value when there is no such transaction type.','0','30d','0','','44878','','','','','200','1','0','','','0','0','0','0','0','0','0','6d51c4865cd04607986ef4e02bc43fb6','0','2','0'), ('44972','18','','10575','Oldest replication slot transaction age','gcp.cloudsql.pgsql.oldest_transaction.replication_slot','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Age of the oldest replication slot transaction yet to be vacuumed in the Cloud SQL PostgreSQL instance, measured in number of transactions that have happened since the oldest transaction. Empty value when there is no such transaction type.','0','30d','0','','44878','','','','','200','1','0','','','0','0','0','0','0','0','0','fee3d72f615c479389c5fdb46f32229f','0','2','0'), ('44973','18','','10575','Oldest replica transaction age','gcp.cloudsql.pgsql.oldest_transaction.replica','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Age of the oldest replica transaction yet to be vacuumed in the Cloud SQL PostgreSQL instance, measured in number of transactions that have happened since the oldest transaction. Empty value when there is no such transaction type.','0','30d','0','','44878','','','','','200','1','0','','','0','0','0','0','0','0','0','50df8067afcb42a9ac44fe963ee635d2','0','2','0'), ('44974','18','','10575','Oldest prepared transaction age','gcp.cloudsql.pgsql.oldest_transaction.prepared','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Age of the oldest prepared transaction yet to be vacuumed in the Cloud SQL PostgreSQL instance, measured in number of transactions that have happened since the oldest transaction. Empty value when there is no such transaction type.','0','30d','0','','44878','','','','','200','1','0','','','0','0','0','0','0','0','0','88603b1881114551ba23e8f12d5ab47f','0','2','0'), ('44975','18','','10575','Connections','gcp.cloudsql.pgsql.num_backends','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of the connections to the Cloud SQL PostgreSQL instance. Includes connections to the system databases, which aren''t visible by default.','0','30d','0','','44878','','','','','200','1','0','','','0','0','0','0','0','0','0','512c5d8156fb4d5299284f708e64dffc','0','2','0'), ('44976','18','','10575','Network: Sent bytes','gcp.cloudsql.pgsql.network.sent_bytes_count','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Delta count of bytes sent through the network.','0','30d','0','','44878','','','','','200','1','0','','','0','0','0','0','0','0','0','dc67deac1a2f4cc993406028d6cc8c3b','0','2','0'), ('44977','18','','10575','Memory utilization','gcp.cloudsql.pgsql.memory.utilization','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The fraction of the memory quota that is currently in use. Shown as percentage.','0','30d','0','','44878','','','','','200','1','0','','','0','0','0','0','0','0','0','4c524a81bf3b4a6bbc87d23b60c4f74c','0','2','0'), ('44978','18','','10575','Network: Received bytes','gcp.cloudsql.pgsql.network.received_bytes_count','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Delta count of bytes received through the network.','0','30d','0','','44878','','','','','200','1','0','','','0','0','0','0','0','0','0','f2d00c86eedd4a1e8efce7661c3da18d','0','2','0'), ('44979','18','','10575','CPU usage time','gcp.cloudsql.pgsql.cpu.usage_time','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Cumulative CPU usage time in seconds.','0','30d','0','','44878','','','','','200','1','0','','','0','0','0','0','0','0','0','aa2e6d9118ed4b198ed9a28932ea8539','0','2','0'), ('44980','18','','10575','Memory usage','gcp.cloudsql.pgsql.memory.usage','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The RAM usage in bytes. This metric reports the RAM usage of the server, excluding the buffer/cache.','0','30d','0','','44878','','','','','200','1','0','','','0','0','0','0','0','0','0','2a5daa0300564b97a5e744e576a217cb','0','2','0'), ('44981','18','','10575','Memory used by DB engine','gcp.cloudsql.pgsql.memory.total_usage','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total RAM usage in bytes. This metric reports the RAM usage of the database process, including the buffer/cache.','0','30d','0','','44878','','','','','200','1','0','','','0','0','0','0','0','0','0','e73876fa0728402db7688a41938f4a12','0','2','0'), ('44982','18','','10575','Memory size','gcp.cloudsql.pgsql.memory.quota','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum RAM size in bytes.','0','30d','0','','44878','','','','','200','1','0','','','0','0','0','0','0','0','0','014d96156a364f2c8eac6a47de3eddfe','0','2','0'), ('44983','18','','10575','Disk write I/O','gcp.cloudsql.pgsql.disk.write_ops_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Delta count of data disk write I/O operations.','0','30d','0','','44878','','','','','200','1','0','','','0','0','0','0','0','0','0','8d8d6c13cdb244cb80c03226b7c14a90','0','2','0'), ('44984','18','','10575','Disk utilization','gcp.cloudsql.pgsql.disk.utilization','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The fraction of the disk quota that is currently in use. Shown as percentage.','0','30d','0','','44878','','','','','200','1','0','','','0','0','0','0','0','0','0','e2d6702514b941cb9586cb98786c6a01','0','2','0'), ('44985','18','','10575','Disk read I/O','gcp.cloudsql.pgsql.disk.read_ops_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Delta count of data disk read I/O operations.','0','30d','0','','44878','','','','','200','1','0','','','0','0','0','0','0','0','0','f12ba5129c2d435389f4fb6964294381','0','2','0'), ('44986','18','','10575','Disk size','gcp.cloudsql.pgsql.disk.quota','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum data disk size in bytes.','0','30d','0','','44878','','','','','200','1','0','','','0','0','0','0','0','0','0','470510bf76fb47fbbddfc8c4a711a335','0','2','0'), ('44987','18','','10575','Disk bytes used','gcp.cloudsql.pgsql.disk.bytes_used','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Data utilization in bytes.','0','30d','0','','44878','','','','','200','1','0','','','0','0','0','0','0','0','0','799cad827e8b44d98b8285b08153842d','0','2','0'), ('44988','18','','10575','CPU utilization','gcp.cloudsql.pgsql.cpu.utilization','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Current CPU utilization represented as a percentage of the reserved CPU that is currently in use.','0','30d','0','','44878','','','','','200','1','0','','','0','0','0','0','0','0','0','cb7cd1b74e4944d88334f22d25b985fa','0','2','0'), ('44989','18','','10575','Transaction ID utilization','gcp.cloudsql.pgsql.transaction_id_utilization','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Current utilization represented as a percentage of transaction IDs consumed by the Cloud SQL PostgreSQL instance.','0','30d','0','','44878','','','','','200','1','0','','','0','0','0','0','0','0','0','004042d342d0478ea8f826466353454d','0','2','0'), ('44990','18','','10576','Flush location lag','gcp.cloudsql.pgsql.repl.flush_location','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Flush location replication lag in bytes.','0','30d','0','','44881','','','','','200','1','0','','','0','0','0','0','0','0','0','c67dd812c7784948bad5dfa0d9a6cc66','0','2','0'), ('44991','18','','10576','Number of log archival failures','gcp.cloudsql.pgsql.repl.log_archive_failure_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of failed attempts for archiving replication log files.','0','30d','0','','44881','','','','','200','1','0','','','0','0','0','0','0','0','0','2b8b51f0266049ffbfb7ece2f944fb68','0','2','0'), ('44992','18','','10576','Number of log archival successes','gcp.cloudsql.pgsql.repl.log_archive_success_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of failed attempts for archiving replication log files.','0','30d','0','','44881','','','','','200','1','0','','','0','0','0','0','0','0','0','4657c4bb904b437598b68410e47f7194','0','2','0'), ('44993','18','','10576','Network lag','gcp.cloudsql.pgsql.repl.network_lag','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates time taken from primary binary log to IO thread on replica.','0','30d','0','','44881','','','','','200','1','0','','','0','0','0','0','0','0','0','e43272210c45425d871d70a5bb91cdd1','0','2','0'), ('44994','18','','10576','Replay location lag','gcp.cloudsql.pgsql.repl.replay_location','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Replay location replication lag in bytes.','0','30d','0','','44881','','','','','200','1','0','','','0','0','0','0','0','0','0','7d74736aa2804c899de35634bc072edf','0','2','0'), ('44995','18','','10576','Replication lag','gcp.cloudsql.pgsql.repl.replica_lag','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of seconds the read replica is behind its primary (approximation).','0','30d','0','','44881','','','','','200','1','0','','','0','0','0','0','0','0','0','192e0bb3ac744f8eb38a760ee3f7c623','0','2','0'), ('44996','18','','10576','Sent location lag','gcp.cloudsql.pgsql.repl.sent_location','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Sent location replication lag in bytes.','0','30d','0','','44881','','','','','200','1','0','','','0','0','0','0','0','0','0','379c8bc0cfe847d1819ab96aceee5efe','0','2','0'), ('44997','18','','10576','Replication state','gcp.cloudsql.pgsql.repl.state','0','31d','365d','0','3','','','','',NULL,'1094','','','0','','','','','0',NULL,'The current serving state of replication. This metric is only available for the MySQL/PostgreSQL instances.','0','30d','0','','44881','','','','','200','1','0','','','0','0','0','0','0','0','0','a7f785dbe4954d77a82e6384620b5d6e','0','2','0'), ('44998','18','','10576','Write location lag','gcp.cloudsql.pgsql.repl.write_location','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Write location replication lag in bytes.','0','30d','0','','44881','','','','','200','1','0','','','0','0','0','0','0','0','0','10af15bc71ed446eb4e614c2cb6029d5','0','2','0'), ('44999','18','','10577','Guest visible vCPUs','gcp.gce.cpu.guest_visible_vcpus','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of vCPUs visible inside the guest. For many GCE machine types, the number of vCPUs visible inside the guest is equal to the `compute.googleapis.com/instance/cpu/reserved_cores` metric. For shared-core machine types, the number of guest-visible vCPUs differs from the number of reserved cores. For example, e2-small instances have two vCPUs visible inside the guest and 0.5 fractional vCPUs reserved. Therefore, for an e2-small instance, `compute.googleapis.com/instance/cpu/guest_visible_vcpus` has a value of 2 and `compute.googleapis.com/instance/cpu/reserved_cores` has a value of 0.5.','0','30d','0','','44882','','','','','200','1','0','','','0','0','0','0','0','0','0','3de05ba490644a62ba4a700ffe439c98','0','2','0'), ('45000','18','','10577','Network: Mirrored packets dropped: Out of quota','gcp.gce.network.mirr_dropped_packets.out_of_quota','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of mirrored packets dropped. Reason - out of quota.','0','30d','0','','44882','','','','','200','1','0','','','0','0','0','0','0','0','0','3cf438aa0225428385d30c5be30ea3e6','0','2','0'), ('45001','18','','10577','Network: Mirrored packets dropped: Invalid','gcp.gce.network.mirr_dropped_packets.invalid','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of mirrored packets dropped. Reason - invalid.','0','30d','0','','44882','','','','','200','1','0','','','0','0','0','0','0','0','0','6ca64c0fa39e4587a2987cd607058b54','0','2','0'), ('45002','18','','10577','Network: Mirrored packets','gcp.gce.network.mirrored_packets_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of mirrored packets.','0','30d','0','','44882','','','','','200','1','0','','','0','0','0','0','0','0','0','f0add3d3853d4d8c9993b1603fd7b542','0','2','0'), ('45003','18','','10577','Network: Mirrored bytes','gcp.gce.network.mirrored_bytes_count','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of mirrored bytes.','0','30d','0','','44882','','','','','200','1','0','','','0','0','0','0','0','0','0','199fb1f4278848138ef8cfd8fc3e07ee','0','2','0'), ('45004','18','','10577','Network: Sent packets: Load-balanced','gcp.gce.network.lb.sent_packets_count.true','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Whether traffic was received by an L3 loadbalanced IP address assigned to the VM. Traffic that is externally routed to the VM''s standard internal or external IP address, such as L7 loadbalanced traffic, is not considered to be loadbalanced in this metric. The value is empty when load-balancing is not used.','0','30d','0','','44882','','','','','200','1','0','','','0','0','0','0','0','0','0','2aef5ad0f3704550b4920ce36614b52d','0','2','0'), ('45005','18','','10577','Network: Sent packets','gcp.gce.network.lb.sent_packets_count.false','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of packets sent over the network without load-balancing.','0','30d','0','','44882','','','','','200','1','0','','','0','0','0','0','0','0','0','44032903b7da4d72b2dff35e81e787d3','0','2','0'), ('45006','18','','10577','Network: Sent bytes: Load-balanced','gcp.gce.network.lb.sent_bytes_count.true','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Whether traffic was received by an L3 loadbalanced IP address assigned to the VM. Traffic that is externally routed to the VM''s standard internal or external IP address, such as L7 loadbalanced traffic, is not considered to be loadbalanced in this metric. The value is empty when load-balancing is not used.','0','30d','0','','44882','','','','','200','1','0','','','0','0','0','0','0','0','0','77bd252194764837bc71b031e4d7e2b8','0','2','0'), ('45007','18','','10577','Network: Sent bytes','gcp.gce.network.lb.sent_bytes_count.false','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of bytes sent over the network without load-balancing.','0','30d','0','','44882','','','','','200','1','0','','','0','0','0','0','0','0','0','b8ea22b00a254ee5a2484fd833421b12','0','2','0'), ('45008','18','','10577','Network: Received packets: Load-balanced','gcp.gce.network.lb.received_packets_count.true','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Whether traffic was received by an L3 loadbalanced IP address assigned to the VM. Traffic that is externally routed to the VM''s standard internal or external IP address, such as L7 loadbalanced traffic, is not considered to be loadbalanced in this metric. The value is empty when load-balancing is not used.','0','30d','0','','44882','','','','','200','1','0','','','0','0','0','0','0','0','0','148fe8aaa01e4863bbe2ca4c0226ce80','0','2','0'), ('45009','18','','10577','Network: Received packets','gcp.gce.network.lb.received_packets_count.false','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of packets received from the network without load-balancing.','0','30d','0','','44882','','','','','200','1','0','','','0','0','0','0','0','0','0','84dec0cb32ea434a9d6f29f402d337a0','0','2','0'), ('45010','18','','10577','Network: Received bytes: Load-balanced','gcp.gce.network.lb.received_bytes_count.true','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Whether traffic was received by an L3 loadbalanced IP address assigned to the VM. Traffic that is externally routed to the VM''s standard internal or external IP address, such as L7 loadbalanced traffic, is not considered to be loadbalanced in this metric. The value is empty when load-balancing is not used.','0','30d','0','','44882','','','','','200','1','0','','','0','0','0','0','0','0','0','91ef1b33d7ae479999302cdec227eb3e','0','2','0'), ('45011','18','','10577','Network: Received bytes','gcp.gce.network.lb.received_bytes_count.false','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of bytes received from the network without load-balancing.','0','30d','0','','44882','','','','','200','1','0','','','0','0','0','0','0','0','0','faf1c3ccbcc24b9eb52be355f2f782e6','0','2','0'), ('45012','18','','10577','VM swap in','gcp.gce.memory.swap_in_bytes_count','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of memory read into the guest from its own swap space. This metric is only available for VMs that belong to the e2 family; returns empty value for different instance types.','0','30d','0','','44882','','','','','200','1','0','','','0','0','0','0','0','0','0','b043128882254e9492c7436521bf994a','0','2','0'), ('45013','18','','10577','VM swap out','gcp.gce.memory.swap_out_bytes_count','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of memory written from the guest to its own swap space. This metric is only available for VMs that belong to the e2 family; returns empty value for different instance types.','0','30d','0','','44882','','','','','200','1','0','','','0','0','0','0','0','0','0','7166423bbcf0456ab0fcc7c852d89125','0','2','0'), ('45014','18','','10577','Reserved vCPUs','gcp.gce.cpu.reserved_cores','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of vCPUs reserved on the host of the instance.','0','30d','0','','44882','','','','','200','1','0','','','0','0','0','0','0','0','0','2fa7a2aa15a242cc826248ebe96bb173','0','2','0'), ('45015','18','','10577','Memory used','gcp.gce.memory.ram_used','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Memory currently used in the VM. This metric is only available for VMs that belong to the e2 family; returns empty value for different instance types.','0','30d','0','','44882','','','','','200','1','0','','','0','0','0','0','0','0','0','20dc9e49a60d46b4b6d855eb74a60d5e','0','2','0'), ('45016','18','','10577','Memory size','gcp.gce.memory.ram_size','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total VM memory size. This metric is only available for VMs that belong to the e2 family; returns empty value for different instance types.','0','30d','0','','44882','','','','','200','1','0','','','0','0','0','0','0','0','0','10d63d2c01dc481380bf386af7af7f97','0','2','0'), ('45017','18','','10577','Memory usage percentage','gcp.gce.memory.ram_pused','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Memory usage Percentage. This metric is only available for VMs that belong to the e2 family; returns empty value for different instance types.','0','30d','0','','44882','','','','','200','1','0','','','0','0','0','0','0','0','0','1b14fefa6b0f4abc98f6ddf3164074b3','0','2','0'), ('45018','18','','10577','Integrity: Late boot validation status','gcp.gce.integrity.late_boot_validation_status','0','31d','365d','0','3','','','','',NULL,'1096','','','0','','','','','0',NULL,'The validation status of late boot integrity policy. Empty value if integrity monitoring isn''t enabled.','0','30d','0','','44882','','','','','200','1','0','','','0','0','0','0','0','0','0','aa334c3a0faf4f36bcbbf51d87ef9186','0','2','0'), ('45019','18','','10577','Integrity: Early boot validation status','gcp.gce.integrity.early_boot_validation_status','0','31d','365d','0','3','','','','',NULL,'1096','','','0','','','','','0',NULL,'The validation status of early boot integrity policy. Empty value if integrity monitoring isn''t enabled.','0','30d','0','','44882','','','','','200','1','0','','','0','0','0','0','0','0','0','744f3f821847473d9cef1236580bda38','0','2','0'), ('45020','18','','10577','Instance uptime','gcp.gce.instance.uptime','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Elapsed time since the VM was started, in seconds.','0','30d','0','','44882','','','','','200','1','0','','','0','0','0','0','0','0','0','f075482578ec475385cdfc57346d1570','0','2','0'), ('45021','18','','10577','Firewall: Dropped packets','gcp.gce.firewall.dropped_packets_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of incoming packets dropped by the firewall.','0','30d','0','','44882','','','','','200','1','0','','','0','0','0','0','0','0','0','25002706c5164c43a345a8ce594615c7','0','2','0'), ('45022','18','','10577','Firewall: Dropped bytes','gcp.gce.firewall.dropped_bytes_count','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of incoming bytes dropped by the firewall.','0','30d','0','','44882','','','','','200','1','0','','','0','0','0','0','0','0','0','e1cd503d86f7487db023e2fd3cea5385','0','2','0'), ('45023','18','','10577','CPU utilization','gcp.gce.cpu.utilization','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Fractional utilization of allocated CPU on this instance. This metric is reported by the hypervisor for the VM and can differ from `agent.googleapis.com/cpu/utilization`, which is reported from inside the VM.','0','30d','0','','44882','','','','','200','1','0','','','0','0','0','0','0','0','0','666cd3e9f21d4ede9d4bcc16bc95347c','0','2','0'), ('45024','18','','10577','CPU usage time','gcp.gce.cpu.usage_time','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Delta vCPU usage for all vCPUs, in vCPU-seconds. To compute the per-vCPU utilization fraction, divide this value by (end-start)*N, where end and start define this value''s time interval and N is `compute.googleapis.com/instance/cpu/reserved_cores` at the end of the interval. This value is reported by the hypervisor for the VM and can differ from `agent.googleapis.com/cpu/usage_time`, which is reported from inside the VM.','0','30d','0','','44882','','','','','200','1','0','','','0','0','0','0','0','0','0','daf4d0d23ccf4633aad6405bd1f09dc3','0','2','0'), ('45025','18','','10577','Scheduler wait time','gcp.gce.cpu.scheduler_wait_time','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Wait time is the time a vCPU is ready to run, but unexpectedly not scheduled to run. The wait time returned here is the accumulated value for all vCPUs. The time interval for which the value was measured is returned by Monitoring in whole seconds as start_time and end_time. This metric is only available for VMs that belong to the e2 family or to overcommitted VMs on sole-tenant nodes.','0','30d','0','','44882','','','','','200','1','0','','','0','0','0','0','0','0','0','f6c9c633f514416189ba85d2015251ba','0','2','0'), ('45026','18','','10577','Network: Mirrored packets dropped: Unknown','gcp.gce.network.mirr_dropped_packets.unknown','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of mirrored packets dropped. Reason - unknown.','0','30d','0','','44882','','','','','200','1','0','','','0','0','0','0','0','0','0','5303badcf26641f1af85366fbaecdd77','0','2','0'), ('45039','18','','10571','Databases discovery','gcp.cloudsql.db.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Databases discovery.','0','7d','1','','44871','','','','','200','1','0','','','0','0','0','0','0','0','0','2dad3e63931942f8937b8720c9477a66','0','2','0'), ('45040','18','','10571','Resources discovery','gcp.cloudsql.resources.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Resources discovery.','0','7d','1','','44868','','','','','200','1','0','','','0','0','0','0','0','0','0','d47a9164fdf54309ab96f48f6dc3c037','0','2','0'), ('45041','18','','10571','Schedulers discovery','gcp.cloudsql.schedulers.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Schedulers discovery.','0','7d','1','','44870','','','','','200','1','0','','','0','0','0','0','0','0','0','31667d0e9c32458d9c895367b3ca7042','0','2','0'), ('45043','18','','10577','GCP Compute Engine: Physical disks discovery','gcp.gce.phys.disks.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'GCP Compute Engine: Physical disks discovery.','0','7d','1','','44883','','','','','200','1','0','','','0','0','0','0','0','0','0','260e06bfe28e46f4a726dd4a6d7fa523','0','2','0'), ('45045','18','','10571','Database [{#DB.NAME}]: Raw data','gcp.cloudsql.mssql.db.raw[{#DB.NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Data in raw format for the [{#DB.NAME}] database.','0','30d','0','','44871','','','','','200','1','0','','','0','0','0','0','0','0','0','b52f757bc2b341e891f60e15795088ca','0','2','0'), ('45046','18','','10571','Resource [{#RESOURCE.NAME}]: Raw data','gcp.cloudsql.mssql.resource.raw[{#RESOURCE.NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Data in raw format for the [{#RESOURCE.NAME}] resource.','0','30d','0','','44868','','','','','200','1','0','','','0','0','0','0','0','0','0','0cc16595d1e044db947084a44786aaaa','0','2','0'), ('45047','18','','10571','Scheduler [{#SCHEDULER.ID}]: Raw data','gcp.cloudsql.mssql.scheduler.raw[{#SCHEDULER.ID}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Data in raw format associated with the scheduler that goes by its ID [{#SCHEDULER.ID}].','0','30d','0','','44870','','','','','200','1','0','','','0','0','0','0','0','0','0','c3e337845c344f4cb0d14a5e7d22cbb7','0','2','0'), ('45048','18','','10575','Database [{#PGSQL.DB.NAME}]: Buffer cache blocks read.','gcp.cloudsql.pgsql.blocks_read_count_buffer_cache[{#PGSQL.DB.NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of buffer cache blocks read by the [{#PGSQL.DB.NAME}] database.','0','30d','0','','45044','','','','','200','1','0','','','0','0','0','0','0','0','0','997bdb03ba0b437ca2705f28dcc651ed','0','2','0'), ('45049','18','','10575','Database [{#PGSQL.DB.NAME}]: Disk blocks read.','gcp.cloudsql.pgsql.blocks_read_count_disk[{#PGSQL.DB.NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of disk blocks read by the [{#PGSQL.DB.NAME}] database.','0','30d','0','','45044','','','','','200','1','0','','','0','0','0','0','0','0','0','b35c4a888743448688a8c5233ed165e7','0','2','0'), ('45050','18','','10575','Database [{#PGSQL.DB.NAME}]: Deadlocks count','gcp.cloudsql.pgsql.deadlock_count[{#PGSQL.DB.NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of deadlocks detected in the [{#PGSQL.DB.NAME}] database.','0','30d','0','','45044','','','','','200','1','0','','','0','0','0','0','0','0','0','d5632c60593749209a6e681b396f4cc7','0','2','0'), ('45051','18','','10575','Database [{#PGSQL.DB.NAME}]: Committed transactions','gcp.cloudsql.pgsql.transaction_count_commit[{#PGSQL.DB.NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Delta count of number of committed transactions to the [{#PGSQL.DB.NAME}] database.','0','30d','0','','45044','','','','','200','1','0','','','0','0','0','0','0','0','0','6d846507fbc24cbb9fb4ad59167552db','0','2','0'), ('45052','18','','10575','Database [{#PGSQL.DB.NAME}]: Rolled-back transactions','gcp.cloudsql.pgsql.transaction_count_rollback[{#PGSQL.DB.NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Delta count of number of rolled-back transactions in the [{#PGSQL.DB.NAME}] database.','0','30d','0','','45044','','','','','200','1','0','','','0','0','0','0','0','0','0','4751ef5e498e4ce184bd07aadc831d2b','0','2','0'), ('45053','18','','10575','Database [{#PGSQL.DB.NAME}]: Tuples fetched','gcp.cloudsql.pgsql.tuples_fetched_count[{#PGSQL.DB.NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of rows fetched as a result of queries to the [{#PGSQL.DB.NAME}] database.','0','30d','0','','45044','','','','','200','1','0','','','0','0','0','0','0','0','0','a7451a61e0b04be8b1f85b47c44107e2','0','2','0'), ('45054','18','','10575','Database [{#PGSQL.DB.NAME}]: Deleted rows processed','gcp.cloudsql.pgsql.tuples_processed_count_delete[{#PGSQL.DB.NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of tuples(rows) processed for delete operations for the database with the name [{#PGSQL.DB.NAME}].','0','30d','0','','45044','','','','','200','1','0','','','0','0','0','0','0','0','0','7daca0b14f5843669bc5b0823cd4d44f','0','2','0'), ('45055','18','','10575','Database [{#PGSQL.DB.NAME}]: Inserted rows processed.','gcp.cloudsql.pgsql.tuples_processed_count_insert[{#PGSQL.DB.NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of tuples(rows) processed for insert operations for the database with the name [{#PGSQL.DB.NAME}].','0','30d','0','','45044','','','','','200','1','0','','','0','0','0','0','0','0','0','48a7613fa611410b8353d03d87af0f8d','0','2','0'), ('45056','18','','10575','Database [{#PGSQL.DB.NAME}]: Updated rows processed','gcp.cloudsql.pgsql.tuples_processed_count_update[{#PGSQL.DB.NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of tuples(rows) processed for update operations for the database with the name [{#PGSQL.DB.NAME}].','0','30d','0','','45044','','','','','200','1','0','','','0','0','0','0','0','0','0','e159cc28aec6448b9162f780479f5aab','0','2','0'), ('45057','18','','10575','Database [{#PGSQL.DB.NAME}]: Tuples returned','gcp.cloudsql.pgsql.tuples_returned_count[{#PGSQL.DB.NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of rows scanned while processing the queries of the [{#PGSQL.DB.NAME}] database.','0','30d','0','','45044','','','','','200','1','0','','','0','0','0','0','0','0','0','ee6fad5b2fb44a14a29c7cd662b1f5d2','0','2','0'), ('45058','18','','10575','Database [{#PGSQL.DB.NAME}]: Dead tuples','gcp.cloudsql.pgsql.tuple_size_dead[{#PGSQL.DB.NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of live tuples(rows) in the [{#PGSQL.DB.NAME}] database.','0','30d','0','','45044','','','','','200','1','0','','','0','0','0','0','0','0','0','f7a58601a3384b8ba24c89b3693ddb88','0','2','0'), ('45059','18','','10575','Database [{#PGSQL.DB.NAME}]: Live tuples','gcp.cloudsql.pgsql.tuple_size_live[{#PGSQL.DB.NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of live tuples(rows) in the [{#PGSQL.DB.NAME}] database.','0','30d','0','','45044','','','','','200','1','0','','','0','0','0','0','0','0','0','16e88225cd41406285b3237ee1e61bb4','0','2','0'), ('45060','18','','10577','Disk [{#GCE.DISK.NAME}]: Raw data','gcp.gce.quota.single.raw[{#GCE.DISK.NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Data in raw format for the disk with the name [{#GCE.DISK.NAME}].','0','30d','0','','44883','','','','','200','1','0','','','0','0','0','0','0','0','0','7fc27a6630664e2fbac8fe64ac40985a','0','2','0'), ('45081','18','','10323','Databases','clickhouse.db.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Info about databases','0','7d','1','','45080','','','','','200','1','0','','','0','0','0','0','0','0','0','45014553f60c4fa79b1793ecf04d4b8c','0','2','0'), ('45082','18','','10323','{#DB}: Get DB info','clickhouse.db.info_raw["{#DB}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The item gets information about {#DB} database.','0','30d','0','','45080','','','','','200','1','0','','','0','0','0','0','0','0','0','407e1bf7688448abad516318efb6e65a','0','2','0'), ('45083','18','','10323','Dictionary {#NAME}: Get dictionary info','clickhouse.dictionary.info_raw["{#NAME}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The item gets information about {#NAME} dictionary.','0','30d','0','','30830','','','','','200','1','0','','','0','0','0','0','0','0','0','e736ddf5c02240e7a9e0ea463024ad8e','0','2','0'), ('45084','18','','10323','{#DB}.{#TABLE}: Get replicas info','clickhouse.replica.info_raw["{#DB}.{#TABLE}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The item gets information about replicas of {#TABLE} table of {#DB} database.','0','30d','0','','30823','','','','','200','1','0','','','0','0','0','0','0','0','0','11aa8f51d2d1461a989e465390b406de','0','2','0'), ('45085','18','','10323','{#DB}.{#TABLE}: Get table info','clickhouse.table.info_raw["{#DB}.{#TABLE}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The item gets information about {#TABLE} table of {#DB} database.','0','30d','0','','30828','','','','','200','1','0','','','0','0','0','0','0','0','0','e55b8c504efc41679e90c83cb03bc117','0','2','0'), ('45088','18','','10327','Get SQL Statistics counters','mssql.sql_statistics.raw','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The item gets SQL statistics information.','0','30d','0','','31055','','','','','200','1','0','','','0','0','0','0','0','0','0','ca60d01d14d04566bf1a5e6b3b819538','0','2','0'), ('45089','18','','10327','Get SQL Errors counters','mssql.sql_errors.raw','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The item gets SQL error information.','0','30d','0','','31055','','','','','200','1','0','','','0','0','0','0','0','0','0','c7e0a26bf403482daec65a4b3cd0fd18','0','2','0'), ('45090','18','','10327','Get General Statistics counters','mssql.general_statistics.raw','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The item gets general statistics information.','0','30d','0','','31055','','','','','200','1','0','','','0','0','0','0','0','0','0','6c17a38a9e9246ecbad3a6b2cb83c6cc','0','2','0'), ('45091','18','','10327','Get Memory counters','mssql.mem_manager.raw','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The item gets memory information.','0','30d','0','','31055','','','','','200','1','0','','','0','0','0','0','0','0','0','982b21186af84be2a34f76e5bccb7a27','0','2','0'), ('45092','18','','10327','Get Locks counters','mssql.locks_info.raw','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The item gets server information about locks.','0','30d','0','','31055','','','','','200','1','0','','','0','0','0','0','0','0','0','1b39ade916d243299f6350faaee167c8','0','2','0'), ('45093','18','','10327','Get Access Methods counters','mssql.access_methods.raw','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The item gets server information about access methods.','0','30d','0','','31055','','','','','200','1','0','','','0','0','0','0','0','0','0','c0400032a74549078448a928f17d3128','0','2','0'), ('45094','18','','10327','Get DB counters','mssql.db_info.raw','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The item gets summary information about databases.','0','30d','0','','31055','','','','','200','1','0','','','0','0','0','0','0','0','0','9f7bc0b3ae25483cb7290ef6feaa5c84','0','2','0'), ('45095','18','','10327','Get Latches counters','mssql.latches_info.raw','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The item gets server information about latches.','0','30d','0','','31055','','','','','200','1','0','','','0','0','0','0','0','0','0','04714203d50645fdb4c69e333facd60e','0','2','0'), ('45096','18','','10327','Get Cache counters','mssql.cache_info.raw','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The item gets server information about cache.','0','30d','0','','31055','','','','','200','1','0','','','0','0','0','0','0','0','0','b9bab8e37b9c46acbf9c64073bfcf0e6','0','2','0'), ('45097','18','','10327','Get Buffer Manager counters','mssql.buffer_manager.raw','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The item gets server information about the buffer pool.','0','30d','0','','31055','','','','','200','1','0','','','0','0','0','0','0','0','0','eadb0b4b4eed412c9a29137a2f4232fd','0','2','0'), ('45098','18','','10327','MSSQL DB ''{#DBNAME}'': Get last backup','mssql.backup.raw["{#DBNAME}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The item gets information about backup processes for {#DBNAME}.','0','30d','0','','34323','','','','','200','1','0','','','0','0','0','0','0','0','0','a6a276b5a8ce4b00b277e507ea7b15ee','0','2','0'), ('45099','18','','10327','MSSQL DB ''{#DBNAME}'': Get performance counters','mssql.db.perf_raw["{#DBNAME}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The item gets server status information for {#DBNAME}.','0','30d','0','','31055','','','','','200','1','0','','','0','0','0','0','0','0','0','74b107e240274c69ae1e8f0632b67e14','0','2','0'), ('45100','18','','10327','MSSQL Job ''{#JOBNAME}'': Get job status','mssql.job.status_raw["{#JOBNAME}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The item gets the status of SQL agent job {#JOBNAME}.','0','30d','0','','34322','','','','','200','1','0','','','0','0','0','0','0','0','0','3660503b46be4c92a7b1d5040bc8cd0d','0','2','0'), ('45102','18','','10310','Get Server info','redis.server.info_raw','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30276','','','','','200','1','0','','','0','0','0','0','0','0','0','6ac72e70dc98478aa5c7730f59440c19','0','2','0'), ('45103','18','','10310','Get Persistence info','redis.persistence.info_raw','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30276','','','','','200','1','0','','','0','0','0','0','0','0','0','ce5f961bbf7247e2b210aa026694b256','0','2','0'), ('45104','18','','10310','Get Memory info','redis.memory.info_raw','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30276','','','','','200','1','0','','','0','0','0','0','0','0','0','b4f76d36ac5b45f7b58b6f9b0d2a669d','0','2','0'), ('45105','18','','10310','Get Keyspace info','redis.keyspace.info_raw','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30276','','','','','200','1','0','','','0','0','0','0','0','0','0','52a4cad66c3c47ffab8762050f48e4af','0','2','0'), ('45106','18','','10310','Get Stats info','redis.stats.info_raw','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30276','','','','','200','1','0','','','0','0','0','0','0','0','0','edcd97d79c2a4213b2bbefa36f37881d','0','2','0'), ('45107','18','','10310','Get CPU info','redis.cpu.info_raw','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30276','','','','','200','1','0','','','0','0','0','0','0','0','0','3aa0abb0b391474a9bd40d0b3e1cd4da','0','2','0'), ('45108','18','','10310','Get Replication info','redis.replication.info_raw','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30276','','','','','200','1','0','','','0','0','0','0','0','0','0','57d121578bc848d787419221ac8dcabe','0','2','0'), ('45109','18','','10310','Get Clients info','redis.clients.info_raw','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','30276','','','','','200','1','0','','','0','0','0','0','0','0','0','daff9d68e5c6439082842959224ff709','0','2','0'), ('45111','18','','10397','Get cluster metrics','pd.cluster_status.get_metrics','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get cluster metrics.','0','30d','0','','34336','','','','','200','1','0','','','0','0','0','0','0','0','0','5ddd6354810347e4b4995a65d8429daf','0','2','0'), ('45112','18','','10397','Get gRPC command metrics','pd.grpc_commands.get_metrics','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get gRPC command metrics.','0','30d','0','','34336','','','','','200','1','0','','','0','0','0','0','0','0','0','d6b8c44bcea14a08b7f5ed85bd596542','0','2','0'), ('45113','18','','10397','Get region metrics','pd.regions.get_metrics','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get region metrics.','0','30d','0','','34336','','','','','200','1','0','','','0','0','0','0','0','0','0','7d7581a14a4e4de197a000337d7b8c41','0','2','0'), ('45114','18','','10397','Get region label metrics','pd.region_labels.get_metrics','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get region label metrics.','0','30d','0','','34336','','','','','200','1','0','','','0','0','0','0','0','0','0','6e6cc3d28b884372a2380b4732af438f','0','2','0'), ('45115','18','','10397','Get region status metrics','pd.region_status.get_metrics','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get region status metrics.','0','30d','0','','34336','','','','','200','1','0','','','0','0','0','0','0','0','0','6d97b65149ef4880ae547fb3e82a68c0','0','2','0'), ('45116','18','','10397','Get scheduler metrics','pd.scheduler.get_metrics','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get scheduler metrics.','0','30d','0','','34336','','','','','200','1','0','','','0','0','0','0','0','0','0','78c65105fd4a4f24b67176331ee685b5','0','2','0'), ('45118','18','','10398','Get TiKV client metrics','tidb.tikvclient.get_metrics','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get TiKV client metrics.','0','30d','0','','34368','','','','','200','1','0','','','0','0','0','0','0','0','0','dbeb9ccf30834e22bb7e264061274b9b','0','2','0'), ('45119','18','','10398','Get SQL statements metrics','tidb.statement_total.get_metrics','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get SQL statements metrics.','0','30d','0','','34368','','','','','200','1','0','','','0','0','0','0','0','0','0','e4979490578848ecb9716c43050463ce','0','2','0'), ('45120','18','','10398','Get total server query metrics','tidb.server_query.get_metrics','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get information about server queries.','0','30d','0','','34368','','','','','200','1','0','','','0','0','0','0','0','0','0','d563866ed3be46b991175c0250495cc7','0','2','0'), ('45122','18','','10399','Get store size metrics','tikv.store_size.metrics','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get capacity metrics of TiKV instance.','0','30d','0','','34412','','','','','200','1','0','','','0','0','0','0','0','0','0','fd4b786239d9426d9a882af47a5abe01','0','2','0'), ('45123','18','','10399','Get scheduler metrics','tikv.scheduler.metrics','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get metrics of scheduler commands.','0','30d','0','','34412','','','','','200','1','0','','','0','0','0','0','0','0','0','c99a6d9591674723a45de6a0ace68088','0','2','0'), ('45124','18','','10399','Get failure msg metrics','tikv.messages.failure.metrics','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get metrics of reporting failure messages.','0','30d','0','','34412','','','','','200','1','0','','','0','0','0','0','0','0','0','3ef3b7bf8c2645e8a953e68fdf246274','0','2','0'), ('45125','18','','10399','Get QPS metrics','tikv.grpc_msgs.metrics','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get QPS metrics in TiKV instance.','0','30d','0','','34412','','','','','200','1','0','','','0','0','0','0','0','0','0','bb14162b05c84458a66996c08deffb1e','0','2','0'), ('45126','18','','10399','Get coprocessor requests metrics','tikv.coprocessor_requests.metrics','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Get metrics of coprocessor requests.','0','30d','0','','34412','','','','','200','1','0','','','0','0','0','0','0','0','0','a4166b4e9f454e0388ee813bcf9ed429','0','2','0'), ('45127','18','','10399','Coprocessor: {#REQ_TYPE} metrics','tikv.coprocessor_request.metrics[{#REQ_TYPE}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get metrics of {#REQ_TYPE} requests.','0','30d','0','','34412','','','','','200','1','0','','','0','0','0','0','0','0','0','e5176f11fe694efba01c4a2b14f5929d','0','2','0'), ('45491','18','','10262','Discovery queue','discovery_queue','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of values enqueued in the discovery queue.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','061bac7060704850b42ae063aba8c076','0','2','0'), ('45492','18','','10262','Utilization of discovery manager internal processes, in %','process.discovery_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the discovery manager processes have been busy for the last minute.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','879ef97241444ef9ac679e7f601557a0','0','2','0'), ('45493','18','','10262','Utilization of discovery worker internal processes, in %','process.discovery_worker.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the discovery worker processes have been busy for the last minute.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','59ab4f96b9704b94b95cdb2f96c3736f','0','2','0'), ('45500','18','','10261','Discovery queue','discovery_queue','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of values enqueued in the discovery queue.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','c417ffdf78144a01811935d31e02af69','0','2','0'), ('45501','18','','10261','Utilization of discovery manager internal processes, in %','process.discovery_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the discovery manager processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','09c61eeecc354f2da1a8efcc100d5f5c','0','2','0'), ('45502','18','','10261','Utilization of discovery worker internal processes, in %','process.discovery_worker.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the discovery worker processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','6bfbac5f75c54f2c87a35f1786ed73e8','0','2','0'), ('45503','18','','10527','[{#ALARM_NAME}]: Get metrics','aws.ec2.alarm.get_metrics["{#ALARM_NAME}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get alarm metrics about the state and its reason.','0','30d','0','','43499','','','','','200','1','0','','','0','0','0','0','0','0','0','6294e05dc170431bb3af2caf1ccf6d40','0','2','0'), ('45504','18','','10527','[{#VOLUME_ID}]: Get volume data','aws.ec2.ebs.get_volume["{#VOLUME_ID}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get data of the "{#VOLUME_ID}" volume.','0','30d','0','','43498','','','','','200','1','0','','','0','0','0','0','0','0','0','6145bf692ea0469eb5583485b6622a59','0','2','0'), ('45505','18','','10357','DB [{#DBNAME}]: Get queries','pgsql.queries.get_metrics["{#DBNAME}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get queries metrics for database "{#DBNAME}".','0','30d','0','','32368','','','','','200','1','0','','','0','0','0','0','0','0','0','ac226e85268c463786e297944339ccf5','0','2','0'), ('45506','18','','10357','DB [{#DBNAME}]: Get dbstat','pgsql.dbstat.get_metrics["{#DBNAME}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get dbstat metrics for database "{#DBNAME}".','0','30d','0','','32380','','','','','200','1','0','','','0','0','0','0','0','0','0','52c20fc8faad42ae8d255990ce14d3cd','0','2','0'), ('45507','18','','10329','DB [{#DBNAME}]: Get queries','pgsql.queries.get_metrics["{#DBNAME}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get queries metrics for database "{#DBNAME}".','0','30d','0','','42880','','','','','200','1','0','','','0','0','0','0','0','0','0','75e704af5cb545fd9f83bec3f147dd04','0','2','0'), ('45508','18','','10329','DB [{#DBNAME}]: Get locks','pgsql.locks.get_metrics["{#DBNAME}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get locks metrics for database "{#DBNAME}".','0','30d','0','','31280','','','','','200','1','0','','','0','0','0','0','0','0','0','2c7759f4c9e442cb80bd54ea3323501b','0','2','0'), ('45509','18','','10329','DB [{#DBNAME}]: Get dbstat','pgsql.dbstat.get_metrics["{#DBNAME}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get dbstat metrics for database "{#DBNAME}".','0','30d','0','','31279','','','','','200','1','0','','','0','0','0','0','0','0','0','7ebf1570bebe4b9cb82474fe5aea0562','0','2','0'), ('45510','18','','10329','Application [{#APPLICATION_NAME}]: Get replication','pgsql.replication.get_metrics["{#APPLICATION_NAME}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Collect metrics from the "pg_stat_replication" about the application "{#APPLICATION_NAME}" that is connected to this WAL sender, which contains information about the WAL sender process, showing statistics about replication to that sender''s connected standby server.','0','30d','0','','33175','','','','','200','1','0','','','0','0','0','0','0','0','0','a77e5e6702ff41af9defe102cbeeea74','0','2','0'), ('45513','18','','10262','Utilization of agent poller data collector processes, in %','process.agent_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the agent poller processes have been busy for the last minute.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','55b74e2521be4ec4bd74f28fafa1fc89','0','2','0'), ('45514','18','','10262','Utilization of http agent poller data collector processes, in %','process.http_agent_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the http agent poller processes have been busy for the last minute.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','b93aad197c1d411f8845ae7c591d1759','0','2','0'), ('45519','18','','10261','Utilization of agent poller data collector processes, in %','process.agent_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the agent poller processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','f9ce1b8b5b384a7ebbf0a1c6d19948b1','0','2','0'), ('45520','18','','10261','Utilization of http agent poller data collector processes, in %','process.http_agent_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the http agent poller processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','1d0a012bf32d43e2b7af6307dd0bf39f','0','2','0'), ('45523','18','','10582','AWS monthly costs by services discovery','aws.cost.service.monthly.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of monthly costs by services.','0','7d','1','','45522','','','','','200','1','0','','','0','0','0','0','0','0','0','5773c41da90d4a38aff02fccec733741','0','2','0'), ('45524','18','','10582','AWS daily costs by services discovery','aws.daily.services.costs.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of daily blended costs by services.','0','7d','1','','45521','','','','','200','1','0','','','0','0','0','0','0','0','0','6e65d15251ea4355ac41ed7956f9e5b0','0','2','0'), ('45525','18','','10582','AWS monthly costs discovery','aws.monthly.cost.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of monthly costs.','0','7d','0','','45522','','','','','200','1','0','','','0','0','0','0','0','0','0','b554f00ba68e4ea391f7c7d029efde4f','0','2','0'), ('45526','18','','10582','[{#AWS.BILLING.SERVICE.NAME}]: Month [{#AWS.BILLING.MONTH}] Blended cost','aws.monthly.service.cost["{#AWS.BILLING.SERVICE.NAME}", "{#AWS.BILLING.MONTH}"]','0','31d','365d','0','0','','!{#AWS.BILLING.UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'The monthly cost by service {#AWS.BILLING.SERVICE.NAME}.','0','30d','0','','45522','','','','','200','1','0','','','0','0','0','0','0','0','0','d01ee8df0e204f1a857b8188df47402a','0','2','0'), ('45527','18','','10582','Service [{#AWS.BILLING.SERVICE.NAME}]: Blended daily cost','aws.daily.service.cost["{#AWS.BILLING.SERVICE.NAME}"]','0','31d','365d','0','0','','!{#AWS.BILLING.UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'The daily blended cost of the {#AWS.BILLING.SERVICE.NAME} service for the previous day.','0','30d','0','','45521','','','','','200','1','0','','','0','0','0','0','0','0','0','b6e121c3a1eb49858e942beab12660e2','0','2','0'), ('45528','18','','10582','[{#AWS.BILLING.MONTH}]: Blended cost per month','aws.monthly.cost["{#AWS.BILLING.MONTH}"]','0','31d','365d','0','0','','!{#AWS.BILLING.UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'The blended cost by month {#AWS.BILLING.MONTH}.','0','30d','0','','45522','','','','','200','1','0','','','0','0','0','0','0','0','0','aaf85a53d1804c858fc20189f0483bad','0','2','0'), ('45532','18','','10583','Get alarms check','aws.ecs.alarms.check','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data collection check.','0','30d','0','','45529','','','','','200','1','0','','','0','0','0','0','0','0','0','9c4a894d46174d679c58c9a1339dec2f','0','2','0'), ('45533','18','','10583','Container Instance Count','aws.ecs.container_instance_count','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of EC2 instances running the Amazon ECS agent that are registered with a cluster.','0','30d','0','','45531','','','','','200','1','0','','','0','0','0','0','0','0','0','c9d2dff2619d41c1a0d1a528fecab461','0','2','0'), ('45534','18','','10583','CPU Reserved','aws.ecs.cpu_reserved','0','31d','365d','0','0','','','','',NULL,'1099','','','0','','','','','0',NULL,'A number of CPU units reserved by tasks in the resource that is specified by the dimension set that you''re using. This metric is only collected for tasks that have a defined CPU reservation in their task definition.','0','30d','0','','45531','','','','','200','1','0','','','0','0','0','0','0','0','0','161886f00f91479597db4bfaae27db46','0','2','0'), ('45535','18','','10583','CPU Utilization','aws.ecs.cpu_utilization','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Cluster CPU utilization','0','30d','0','','45531','','','','','200','1','0','','','0','0','0','0','0','0','0','fc4c44d533304ac3a4f59773c7424324','0','2','0'), ('45536','18','','10583','Memory Utilization','aws.ecs.memory_utilization','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The memory being used by tasks in the resource that is specified by the dimension set that you''re using. This metric is only collected for tasks that have a defined memory reservation in their task definition.','0','30d','0','','45531','','','','','200','1','0','','','0','0','0','0','0','0','0','0e1c53da0225410ea835f5d471afac13','0','2','0'), ('45537','18','','10583','Get metrics check','aws.ecs.metrics.check','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data collection check.','0','30d','0','','45531','','','','','200','1','0','','','0','0','0','0','0','0','0','a214cef0377b4901afc2cb90186e5e46','0','2','0'), ('45538','18','','10583','Network rx bytes','aws.ecs.network.rx','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of bytes received by the resource that is specified by the dimensions that you''re using. This metric is only available for containers in tasks using the awsvpc or bridge network modes.','0','30d','0','','45531','','','','','200','1','0','','','0','0','0','0','0','0','0','4daa5e7b1bc64b3cbd54d9addea571cd','0','2','0'), ('45539','18','','10583','Network tx bytes','aws.ecs.network.tx','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of bytes transmitted by the resource that is specified by the dimensions that you''re using. This metric is only available for containers in tasks using the awsvpc or bridge network modes.','0','30d','0','','45531','','','','','200','1','0','','','0','0','0','0','0','0','0','59882985019d42009a1993bf8bfd1a31','0','2','0'), ('45540','18','','10583','Service Count','aws.ecs.service_count','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of services in the cluster.','0','30d','0','','45531','','','','','200','1','0','','','0','0','0','0','0','0','0','26970ea823294cf2b87a158d8feee872','0','2','0'), ('45541','18','','10583','Task Count','aws.ecs.task_count','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of tasks running in the cluster.','0','30d','0','','45531','','','','','200','1','0','','','0','0','0','0','0','0','0','3cc6d826052c4da49bd8891a99ec2816','0','2','0'), ('45542','18','','10583','Cluster Alarms discovery','aws.ecs.alarms.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery instance alarms.','0','7d','1','','45529','','','','','200','1','0','','','0','0','0','0','0','0','0','5e1b53e77fd74b61864ed8437c635346','0','2','0'), ('45543','18','','10583','Cluster Services discovery','aws.ecs.services.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery {$AWS.ECS.CLUSTER.NAME} services.','0','7d','1','','45530','','','','','200','1','0','','','0','0','0','0','0','0','0','7ab2cc38ab6f4400b42bee282a7e25e1','0','2','0'), ('45545','18','','10583','[{#ALARM_NAME}]: Get metrics','aws.ecs.alarm.get_metrics["{#ALARM_NAME}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get alarm metrics about the state and its reason.','0','30d','0','','45529','','','','','200','1','0','','','0','0','0','0','0','0','0','98d3f64416f746639055abdda6dfc374','0','2','0'), ('45546','18','','10583','[{#AWS.ECS.SERVICE.NAME}]: CPU Utilization','aws.ecs.services.cpu.utilization["{#AWS.ECS.SERVICE.NAME}"]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'A number of CPU units used by tasks in the resource that is specified by the dimension set that you''re using. This metric is only collected for tasks that have a defined CPU reservation in their task definition.','0','30d','0','','45544','','','','','200','1','0','','','0','0','0','0','0','0','0','51de81c8bdcb4359b347e9d9226fcb4b','0','2','0'), ('45547','18','','10583','[{#AWS.ECS.SERVICE.NAME}]: CPU Reserved','aws.ecs.services.cpu_reserved["{#AWS.ECS.SERVICE.NAME}"]','0','31d','365d','0','0','','','','',NULL,'1099','','','0','','','','','2',NULL,'A number of CPU units reserved by tasks in the resource that is specified by the dimension set that you''re using. This metric is only collected for tasks that have a defined CPU reservation in their task definition.','0','30d','0','','45544','','','','','200','1','0','','','0','0','0','0','0','0','0','ba01726f96354fe681fb4d916d461460','0','2','0'), ('45548','18','','10583','[{#AWS.ECS.SERVICE.NAME}]: Desired Task','aws.ecs.services.desired.task["{#AWS.ECS.SERVICE.NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The desired number of tasks for an {#AWS.ECS.SERVICE.NAME} service.','0','30d','0','','45544','','','','','200','1','0','','','0','0','0','0','0','0','0','785fd19ab3344e749ce486e4601f4d8e','0','2','0'), ('45549','18','','10583','[{#AWS.ECS.SERVICE.NAME}]: Memory utilization','aws.ecs.services.memory.utilization["{#AWS.ECS.SERVICE.NAME}"]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The memory being used by tasks in the resource that is specified by the dimension set that you''re using. This metric is only collected for tasks that have a defined memory reservation in their task definition.','0','30d','0','','45544','','','','','200','1','0','','','0','0','0','0','0','0','0','685671b8a8c34f35ada959c2c6aca1e3','0','2','0'), ('45550','18','','10583','[{#AWS.ECS.SERVICE.NAME}]: Memory reserved','aws.ecs.services.memory_reserved["{#AWS.ECS.SERVICE.NAME}"]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The memory that is reserved by tasks in the resource that is specified by the dimension set that you''re using. This metric is only collected for tasks that have a defined memory reservation in their task definition.','0','30d','0','','45544','','','','','200','1','0','','','0','0','0','0','0','0','0','538e0157704e40ffa124d6b74208f71b','0','2','0'), ('45551','18','','10583','[{#AWS.ECS.SERVICE.NAME}]: Memory utilized','aws.ecs.services.memory_utilized["{#AWS.ECS.SERVICE.NAME}"]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The memory being used by tasks in the resource that is specified by the dimension set that you''re using. This metric is only collected for tasks that have a defined memory reservation in their task definition.','0','30d','0','','45544','','','','','200','1','0','','','0','0','0','0','0','0','0','80471d41639f4e7a87174cad13f7f3a4','0','2','0'), ('45552','18','','10583','[{#AWS.ECS.SERVICE.NAME}]: Network rx bytes','aws.ecs.services.network.rx["{#AWS.ECS.SERVICE.NAME}"]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of bytes received by the resource that is specified by the dimensions that you''re using. This metric is only available for containers in tasks using the awsvpc or bridge network modes.','0','30d','0','','45544','','','','','200','1','0','','','0','0','0','0','0','0','0','52c14dd824174368acc0918d1c4670e4','0','2','0'), ('45553','18','','10583','[{#AWS.ECS.SERVICE.NAME}]: Network tx bytes','aws.ecs.services.network.tx["{#AWS.ECS.SERVICE.NAME}"]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of bytes transmitted by the resource that is specified by the dimensions that you''re using. This metric is only available for containers in tasks using the awsvpc or bridge network modes.','0','30d','0','','45544','','','','','200','1','0','','','0','0','0','0','0','0','0','598337e977b2460ca3ce0844061a619c','0','2','0'), ('45554','18','','10583','[{#AWS.ECS.SERVICE.NAME}]: Pending Task','aws.ecs.services.pending.task["{#AWS.ECS.SERVICE.NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of tasks currently in the `pending` state.','0','30d','0','','45544','','','','','200','1','0','','','0','0','0','0','0','0','0','38d4200dad444b42b77e3fd1fe355007','0','2','0'), ('45555','18','','10583','[{#AWS.ECS.SERVICE.NAME}]: Running Task','aws.ecs.services.running.task["{#AWS.ECS.SERVICE.NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of tasks currently in the `running` state.','0','30d','0','','45544','','','','','200','1','0','','','0','0','0','0','0','0','0','3e1538ea18d7417889536bfce39bc22c','0','2','0'), ('45556','18','','10583','[{#AWS.ECS.SERVICE.NAME}]: Task Set','aws.ecs.services.task.set["{#AWS.ECS.SERVICE.NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of task sets in the {#AWS.ECS.SERVICE.NAME} service.','0','30d','0','','45544','','','','','200','1','0','','','0','0','0','0','0','0','0','46b30a391af44cc5b9a70832189ffb2b','0','2','0'), ('45562','18','','10584','Get alarms check','aws.ecs.alarms.check','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data collection check.','0','30d','0','','45559','','','','','200','1','0','','','0','0','0','0','0','0','0','eb064f2ac4f54a5baf05940fc58e651f','0','2','0'), ('45563','18','','10584','Container Instance Count','aws.ecs.container_instance_count','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of EC2 instances running the Amazon ECS agent that are registered with a cluster.','0','30d','0','','45561','','','','','200','1','0','','','0','0','0','0','0','0','0','fe542fdbef9d4889a7443ee761a46119','0','2','0'), ('45564','18','','10584','CPU Utilization','aws.ecs.cpu_utilization','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Cluster CPU utilization.','0','30d','0','','45561','','','','','200','1','0','','','0','0','0','0','0','0','0','bbfd5c05bd5f49ec984d849b6d45dfdd','0','2','0'), ('45565','18','','10584','Ephemeral Storage Utilization','aws.ecs.disk.utilization','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The calculated Disk Utilization.','0','30d','0','','45561','','','','','200','1','0','','','0','0','0','0','0','0','0','32f0b934b2d14b008780e73371328eac','0','2','0'), ('45566','18','','10584','Ephemeral Storage Reserved','aws.ecs.ephemeral.storage.reserved','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of bytes reserved from ephemeral storage in the resource that is specified by the dimensions that you''re using. Ephemeral storage is used for the container root filesystem and any bind mount host volumes defined in the container image and task definition. The amount of ephemeral storage can’t be changed in a running task. This metric is only available for tasks that run on Fargate Linux platform version 1.4.0 or later.','0','30d','0','','45561','','','','','200','1','0','','','0','0','0','0','0','0','0','d3d2c2df9fd54d24b4598ec247152ca4','0','2','0'), ('45567','18','','10584','Ephemeral Storage Utilized','aws.ecs.ephemeral.storage.utilized','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of bytes used from ephemeral storage in the resource that is specified by the dimensions that you''re using. Ephemeral storage is used for the container root filesystem and any bind mount host volumes defined in the container image and task definition. The amount of ephemeral storage can’t be changed in a running task. This metric is only available for tasks that run on Fargate Linux platform version 1.4.0 or later.','0','30d','0','','45561','','','','','200','1','0','','','0','0','0','0','0','0','0','36556a43a93d436db94685441a12273f','0','2','0'), ('45568','18','','10584','Memory Utilization','aws.ecs.memory_utilization','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The memory being used by tasks in the resource that is specified by the dimension set that you''re using. This metric is only collected for tasks that have a defined memory reservation in their task definition.','0','30d','0','','45561','','','','','200','1','0','','','0','0','0','0','0','0','0','66b7893a750144fa9c02391bc6b4c79c','0','2','0'), ('45569','18','','10584','Get metrics check','aws.ecs.metrics.check','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data collection check.','0','30d','0','','45561','','','','','200','1','0','','','0','0','0','0','0','0','0','852512ccdd9e48f9849ac019d94cdf55','0','2','0'), ('45570','18','','10584','Network rx bytes','aws.ecs.network.rx','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of bytes received by the resource that is specified by the dimensions that you''re using. This metric is only available for containers in tasks using the awsvpc or bridge network modes.','0','30d','0','','45561','','','','','200','1','0','','','0','0','0','0','0','0','0','203c0c6607034e79ac9038d65cc4ee54','0','2','0'), ('45571','18','','10584','Network tx bytes','aws.ecs.network.tx','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of bytes transmitted by the resource that is specified by the dimensions that you''re using. This metric is only available for containers in tasks using the awsvpc or bridge network modes.','0','30d','0','','45561','','','','','200','1','0','','','0','0','0','0','0','0','0','ff917b212098496e814f259c6bf71146','0','2','0'), ('45572','18','','10584','Service Count','aws.ecs.service_count','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of services in the cluster.','0','30d','0','','45561','','','','','200','1','0','','','0','0','0','0','0','0','0','b7aa2555bbc24d8587f89e39a4929e7e','0','2','0'), ('45573','18','','10584','Task Count','aws.ecs.task_count','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of tasks running in the cluster.','0','30d','0','','45561','','','','','200','1','0','','','0','0','0','0','0','0','0','81d2ab08f2aa4608921269da28778e76','0','2','0'), ('45574','18','','10584','Cluster Alarms discovery','aws.ecs.alarms.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery instance alarms.','0','7d','1','','45559','','','','','200','1','0','','','0','0','0','0','0','0','0','8cc32fccef92436eb0aabf7888e43735','0','2','0'), ('45575','18','','10584','Cluster Services discovery','aws.ecs.services.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery {$AWS.ECS.CLUSTER.NAME} services.','0','7d','1','','45560','','','','','200','1','0','','','0','0','0','0','0','0','0','adc6dcb0deef4aa79f8f39f4c8198871','0','2','0'), ('45577','18','','10584','[{#ALARM_NAME}]: Get metrics','aws.ecs.alarm.get_metrics["{#ALARM_NAME}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get alarm metrics about the state and its reason.','0','30d','0','','45559','','','','','200','1','0','','','0','0','0','0','0','0','0','a0cee89be68746ad8ad30de7ba1f444c','0','2','0'), ('45578','18','','10584','[{#AWS.ECS.SERVICE.NAME}]: CPU Utilization','aws.ecs.services.cpu.utilization["{#AWS.ECS.SERVICE.NAME}"]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'A number of CPU units used by tasks in the resource that is specified by the dimension set that you''re using. This metric is only collected for tasks that have a defined CPU reservation in their task definition.','0','30d','0','','45576','','','','','200','1','0','','','0','0','0','0','0','0','0','e098ff8ab20a468ba4a38ff621ff7aa6','0','2','0'), ('45579','18','','10584','[{#AWS.ECS.SERVICE.NAME}]: CPU Reserved','aws.ecs.services.cpu_reserved["{#AWS.ECS.SERVICE.NAME}"]','0','31d','365d','0','0','','','','',NULL,'1101','','','0','','','','','2',NULL,'A number of CPU units reserved by tasks in the resource that is specified by the dimension set that you''re using. This metric is only collected for tasks that have a defined CPU reservation in their task definition.','0','30d','0','','45576','','','','','200','1','0','','','0','0','0','0','0','0','0','a1e8143735f246cb9daf660bde09e908','0','2','0'), ('45580','18','','10584','[{#AWS.ECS.SERVICE.NAME}]: Desired Task','aws.ecs.services.desired.task["{#AWS.ECS.SERVICE.NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The desired number of tasks for an {#AWS.ECS.SERVICE.NAME} service.','0','30d','0','','45576','','','','','200','1','0','','','0','0','0','0','0','0','0','23f91e8623604201be2e8c194e5f0ba7','0','2','0'), ('45581','18','','10584','[{#AWS.ECS.SERVICE.NAME}]: Ephemeral storage reserved','aws.ecs.services.ephemeral.storage.reserved["{#AWS.ECS.SERVICE.NAME}"]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of bytes reserved from ephemeral storage in the resource that is specified by the dimensions that you''re using. Ephemeral storage is used for the container root filesystem and any bind mount host volumes defined in the container image and task definition. The amount of ephemeral storage can’t be changed in a running task. This metric is only available for tasks that run on Fargate Linux platform version 1.4.0 or later.','0','30d','0','','45576','','','','','200','1','0','','','0','0','0','0','0','0','0','84b099e6e7b243f69a8b840d03b1035e','0','2','0'), ('45582','18','','10584','[{#AWS.ECS.SERVICE.NAME}]: Ephemeral storage utilized','aws.ecs.services.ephemeral.storage.utilized["{#AWS.ECS.SERVICE.NAME}"]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of bytes used from ephemeral storage in the resource that is specified by the dimensions that you''re using. Ephemeral storage is used for the container root filesystem and any bind mount host volumes defined in the container image and task definition. The amount of ephemeral storage can’t be changed in a running task. This metric is only available for tasks that run on Fargate Linux platform version 1.4.0 or later.','0','30d','0','','45576','','','','','200','1','0','','','0','0','0','0','0','0','0','fa0a602c008346318dd2b747ecd3a6cf','0','2','0'), ('45583','18','','10584','[{#AWS.ECS.SERVICE.NAME}]: Memory utilization','aws.ecs.services.memory.utilization["{#AWS.ECS.SERVICE.NAME}"]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The memory being used by tasks in the resource that is specified by the dimension set that you''re using. This metric is only collected for tasks that have a defined memory reservation in their task definition.','0','30d','0','','45576','','','','','200','1','0','','','0','0','0','0','0','0','0','869a2921e0e44163b45c18786ea92471','0','2','0'), ('45584','18','','10584','[{#AWS.ECS.SERVICE.NAME}]: Memory reserved','aws.ecs.services.memory_reserved["{#AWS.ECS.SERVICE.NAME}"]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The memory that is reserved by tasks in the resource that is specified by the dimension set that you''re using. This metric is only collected for tasks that have a defined memory reservation in their task definition.','0','30d','0','','45576','','','','','200','1','0','','','0','0','0','0','0','0','0','bd7bbc9699b8404592a8d67b437f1315','0','2','0'), ('45585','18','','10584','[{#AWS.ECS.SERVICE.NAME}]: Memory utilized','aws.ecs.services.memory_utilized["{#AWS.ECS.SERVICE.NAME}"]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The memory being used by tasks in the resource that is specified by the dimension set that you''re using. This metric is only collected for tasks that have a defined memory reservation in their task definition.','0','30d','0','','45576','','','','','200','1','0','','','0','0','0','0','0','0','0','a00e917d61a24df4b4f0234643667ad9','0','2','0'), ('45586','18','','10584','[{#AWS.ECS.SERVICE.NAME}]: Network rx bytes','aws.ecs.services.network.rx["{#AWS.ECS.SERVICE.NAME}"]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of bytes received by the resource that is specified by the dimensions that you''re using. This metric is only available for containers in tasks using the awsvpc or bridge network modes.','0','30d','0','','45576','','','','','200','1','0','','','0','0','0','0','0','0','0','517dd17172554f3bae93ccb030c75c3a','0','2','0'), ('45587','18','','10584','[{#AWS.ECS.SERVICE.NAME}]: Network tx bytes','aws.ecs.services.network.tx["{#AWS.ECS.SERVICE.NAME}"]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of bytes transmitted by the resource that is specified by the dimensions that you''re using. This metric is only available for containers in tasks using the awsvpc or bridge network modes.','0','30d','0','','45576','','','','','200','1','0','','','0','0','0','0','0','0','0','bd99f218853b4f6bac3020d9a7f8a544','0','2','0'), ('45588','18','','10584','[{#AWS.ECS.SERVICE.NAME}]: Pending Task','aws.ecs.services.pending.task["{#AWS.ECS.SERVICE.NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of tasks currently in the `pending` state.','0','30d','0','','45576','','','','','200','1','0','','','0','0','0','0','0','0','0','e9e3c9ed4ac44d8e8c0f1e3ad55cc114','0','2','0'), ('45589','18','','10584','[{#AWS.ECS.SERVICE.NAME}]: Running Task','aws.ecs.services.running.task["{#AWS.ECS.SERVICE.NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of tasks currently in the `running` state.','0','30d','0','','45576','','','','','200','1','0','','','0','0','0','0','0','0','0','f2f7feb7a3194221aae8ed71b12e49eb','0','2','0'), ('45590','18','','10584','[{#AWS.ECS.SERVICE.NAME}]: Storage read bytes','aws.ecs.services.storage.read.bytes["{#AWS.ECS.SERVICE.NAME}"]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of bytes read from storage in the resource that is specified by the dimensions that you''re using.','0','30d','0','','45576','','','','','200','1','0','','','0','0','0','0','0','0','0','4c9ea34655f44192be806b3225a38233','0','2','0'), ('45591','18','','10584','[{#AWS.ECS.SERVICE.NAME}]: Storage write bytes','aws.ecs.services.storage.write.bytes["{#AWS.ECS.SERVICE.NAME}"]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of bytes written to storage in the resource that is specified by the dimensions that you''re using.','0','30d','0','','45576','','','','','200','1','0','','','0','0','0','0','0','0','0','a240f6821aab42a8aa97a2263f126356','0','2','0'), ('45592','18','','10584','[{#AWS.ECS.SERVICE.NAME}]: Task Set','aws.ecs.services.task.set["{#AWS.ECS.SERVICE.NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of task sets in the {#AWS.ECS.SERVICE.NAME} service.','0','30d','0','','45576','','','','','200','1','0','','','0','0','0','0','0','0','0','6e80c7b477b648329480ad2dfb19f282','0','2','0'), ('45606','18','','10587','Instances count, current','openstack.nova.limits.instances.current','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of servers in each tenant.','0','30d','0','','45599','','','','','200','1','0','','','0','0','0','0','0','0','0','bea005220b704f1fb6ca523647ae24ce','0','2','0'), ('45607','18','','10587','Instances count, max','openstack.nova.limits.instances.max','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of allowed servers for each tenant.','0','30d','0','','45599','','','','','200','1','0','','','0','0','0','0','0','0','0','7526be4743564c32a293f96daf7cb242','0','2','0'), ('45608','18','','10587','RAM usage, current','openstack.nova.limits.ram.current','0','31d','365d','0','3','','b','','',NULL,NULL,'','','0','','','','','0',NULL,'Amount of used server RAM.','0','30d','0','','45599','','','','','200','1','0','','','0','0','0','0','0','0','0','64ae014b201945f299f80080dc63176d','0','2','0'), ('45609','18','','10587','RAM usage, max','openstack.nova.limits.ram.max','0','31d','365d','0','3','','b','','',NULL,NULL,'','','0','','','','','0',NULL,'Amount of allowed server RAM.','0','30d','0','','45599','','','','','200','1','0','','','0','0','0','0','0','0','0','50f2128cace04cf5a783e438de813e72','0','2','0'), ('45610','18','','10587','vCPUs usage, current','openstack.nova.limits.vcpu.current','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of used server cores in each tenant.','0','30d','0','','45599','','','','','200','1','0','','','0','0','0','0','0','0','0','678f2c0017f54d8b827876005f6ca670','0','2','0'), ('45611','18','','10587','vCPUs usage, max','openstack.nova.limits.vcpu.max','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of allowed server cores for each tenant.','0','30d','0','','45599','','','','','200','1','0','','','0','0','0','0','0','0','0','e0583793b29b4bb195198d196cc1f0cc','0','2','0'), ('45612','18','','10586','OpenStack: Nova discovery','openstack.services.nova.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers OpenStack services from the monitoring user''s services catalog.','0','7d','0','','45596','','','','','200','1','0','','','0','0','0','0','0','0','0','f827e364d7bd4013b02504a58fdc2d39','0','2','0'), ('45613','18','','10587','Nova: Availability zones discovery','openstack.nova.availability_zone.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers OpenStack Nova availability zones.','0','7d','1','','45597','','','','','200','1','0','','','0','0','0','0','0','0','0','55f919d49a364921a0e63e51dcabe9e2','0','2','0'), ('45614','18','','10587','Nova: Hypervisor discovery','openstack.nova.hypervisors.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers OpenStack Nova hypervisors.','0','7d','1','','45598','','','','','200','1','0','','','0','0','0','0','0','0','0','84b17b240632413fbc3cd5b261cc2fd6','0','2','0'), ('45615','18','','10587','Nova: Servers discovery','openstack.nova.server.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers OpenStack Nova servers.','0','7d','1','','45603','','','','','200','1','0','','','0','0','0','0','0','0','0','b38111e1499f414cbe662fada0d40b10','0','2','0'), ('45616','18','','10587','Nova: Compute services discovery','openstack.nova.services.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers OpenStack compute services.','0','7d','1','','45604','','','','','200','1','0','','','0','0','0','0','0','0','0','4af40cd615d74e54a3759041470995fe','0','2','0'), ('45617','18','','10587','Nova: Tenant discovery','openstack.nova.tenant.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers tenants and their usage data.','0','7d','0','','45605','','','','','200','1','0','','','0','0','0','0','0','0','0','dba72b914e5c45fd9049ee5e4194bdcf','0','2','0'), ('45619','18','','10587','Availability zone [{#ZONE_NAME}]: Raw data','openstack.nova.availability_zone.raw[{#ZONE_NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Raw data of the availability zone.','0','30d','0','','45597','','','','','200','1','0','','','0','0','0','0','0','0','0','988be318a8d345e4ba1d339e7e877a2c','0','2','0'), ('45620','18','','10587','Hypervisor [{#ID}]:[{#HOSTNAME}]: Raw data','openstack.nova.hypervisors.raw[{#ID}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Raw data of the hypervisor.','0','30d','0','','45598','','','','','200','1','0','','','0','0','0','0','0','0','0','3edd8fcf7d3643119b7b21111155fcc0','0','2','0'), ('45621','18','','10587','Compute service [{#HOST}]:[{#BINARY}]:[{#ID}]: Raw data','openstack.nova.services.raw[{#ID}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Raw data of the service.','0','30d','0','','45604','','','','','200','1','0','','','0','0','0','0','0','0','0','60c5f4461ad84269983168b359a0ff87','0','2','0'), ('45622','18','','10587','Tenant [{#TENANT_ID}]: Raw data','openstack.nova.tenant.raw[{#TENANT_ID}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Raw data of the tenant.','0','30d','0','','45605','','','','','200','1','0','','','0','0','0','0','0','0','0','c96dd7741d344b7f95f571640712faa0','0','2','0'), ('45654','18','','10589','Dbstat: Conflicts per second','pgsql.dbstat.sum.conflicts.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of queries canceled per second due to conflicts with recovery (conflicts occur only on standby servers; see pg_stat_database_conflicts for details).','0','30d','0','','45649','','','','','200','1','0','','','0','0','0','0','0','0','0','ef6c8945243f41e88a08d93e66eec666','0','2','0'), ('45655','18','','10589','Dbstat: Deadlocks per second','pgsql.dbstat.sum.deadlocks.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of deadlocks detected per second.','0','30d','0','','45649','','','','','200','1','0','','','0','0','0','0','0','0','0','5adcf2ce06984da2b0b0600d88e88451','0','2','0'), ('45656','18','','10589','Dbstat: Hit blocks read per second','pgsql.dbstat.sum.blks_hit.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times per second disk blocks were found already in the buffer cache.','0','30d','0','','45649','','','','','200','1','0','','','0','0','0','0','0','0','0','6cb6aaa39f494f13b792ea0d1570f0af','0','2','0'), ('45657','18','','10589','Dbstat: Blocks write time','pgsql.dbstat.sum.blk_write_time','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time spent writing data file blocks by backends.','0','30d','0','','45649','','','','','200','1','0','','','0','0','0','0','0','0','0','40b1da9a55cf4312a66dffa9031b9b15','0','2','0'), ('45658','18','','10589','Dbstat: Blocks read time','pgsql.dbstat.sum.blk_read_time','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time spent reading data file blocks by backends.','0','30d','0','','45649','','','','','200','1','0','','','0','0','0','0','0','0','0','a8a7afddbe7546068e3d629747d73848','0','2','0'), ('45659','18','','10589','Dbstat: Disk blocks read per second','pgsql.dbstat.sum.blks_read.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of disk blocks read per second.','0','30d','0','','45649','','','','','200','1','0','','','0','0','0','0','0','0','0','8861dbcc607b481e9f7ca6b3081530a8','0','2','0'), ('45660','18','','10589','Dbstat: Number temp bytes per second','pgsql.dbstat.sum.temp_bytes.rate','0','31d','365d','0','0','','b','','',NULL,NULL,'','','0','','','','','0',NULL,'Total amount of data written per second to temporary files by queries.','0','30d','0','','45649','','','','','200','1','0','','','0','0','0','0','0','0','0','4c18ecf383154136ad68d5d938fc83d7','0','2','0'), ('45661','18','','10589','Dbstat: Backends connected','pgsql.dbstat.sum.numbackends','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connected backends.','0','30d','0','','45649','','','','','200','1','0','','','0','0','0','0','0','0','0','26da7e85356644cdbe4d9efd20e43dd2','0','2','0'), ('45662','18','','10589','WAL: Segments count','pgsql.wal.count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of WAL segments.','0','30d','0','','45639','','','','','200','1','0','','','0','0','0','0','0','0','0','59722a42ba084a4f9a65f6b11f1180f4','0','2','0'), ('45663','18','','10589','Dbstat: Number temp files per second','pgsql.dbstat.sum.temp_files.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of temporary files created by queries per second.','0','30d','0','','45649','','','','','200','1','0','','','0','0','0','0','0','0','0','0c7ad16e40e3454aaad27a6fe4b5e62d','0','2','0'), ('45664','18','','10589','Dbstat: Rows deleted per second','pgsql.dbstat.sum.tup_deleted.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of rows deleted by queries per second.','0','30d','0','','45649','','','','','200','1','0','','','0','0','0','0','0','0','0','e3cd2d8ec2b8454f949c69bb00e0db57','0','2','0'), ('45665','18','','10589','Dbstat: Rows fetched per second','pgsql.dbstat.sum.tup_fetched.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of rows fetched by queries per second.','0','30d','0','','45649','','','','','200','1','0','','','0','0','0','0','0','0','0','9f09f94dcd6744e8b6a53167b1835a16','0','2','0'), ('45666','18','','10589','Dbstat: Rows inserted per second','pgsql.dbstat.sum.tup_inserted.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of rows inserted by queries per second.','0','30d','0','','45649','','','','','200','1','0','','','0','0','0','0','0','0','0','916291299e624959993f8a585da6c9c0','0','2','0'), ('45667','18','','10589','Dbstat: Rows returned per second','pgsql.dbstat.sum.tup_returned.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of rows returned by queries per second.','0','30d','0','','45649','','','','','200','1','0','','','0','0','0','0','0','0','0','fc8f68f5068240f3acd2d18443efc624','0','2','0'), ('45668','18','','10589','Dbstat: Rows updated per second','pgsql.dbstat.sum.tup_updated.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of rows updated by queries per second.','0','30d','0','','45649','','','','','200','1','0','','','0','0','0','0','0','0','0','802d541dd0314f8fba827e6d28013b5c','0','2','0'), ('45669','18','','10589','Dbstat: Committed transactions per second','pgsql.dbstat.sum.xact_commit.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of transactions that have been committed per second.','0','30d','0','','45649','','','','','200','1','0','','','0','0','0','0','0','0','0','c00a09d04d4443d885006b29c5c14546','0','2','0'), ('45670','18','','10589','Dbstat: Roll backed transactions per second','pgsql.dbstat.sum.xact_rollback.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of transactions that have been rolled back per second.','0','30d','0','','45649','','','','','200','1','0','','','0','0','0','0','0','0','0','8f2259521add4cc0bd5e274604172d04','0','2','0'), ('45671','18','','10589','Connections sum: Total, %','pgsql.connections.sum.total_pct','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections, in percentage.','0','30d','0','','45653','','','','','200','1','0','','','0','0','0','0','0','0','0','2b2ca7abb85b4ae1992cbfc6902206a1','0','2','0'), ('45672','18','','10589','WAL: Bytes received','pgsql.wal.receive','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'WAL receive, in bytes.','0','30d','0','','45639','','','','','200','1','0','','','0','0','0','0','0','0','0','5ffd0e54dd464b5c941ba40b696beda9','0','2','0'), ('45673','18','','10589','Connections sum: Waiting','pgsql.connections.sum.waiting','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of waiting connections: https://www.postgresql.org/docs/current/monitoring-stats.html#WAIT-EVENT-TABLE','0','30d','0','','45653','','','','','200','1','0','','','0','0','0','0','0','0','0','7f525a9b9b6a494db660649388b8cb21','0','2','0'), ('45675','18','','10589','Connections sum: Total','pgsql.connections.sum.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections.','0','30d','0','','45653','','','','','200','1','0','','','0','0','0','0','0','0','0','4d092ed405e2410f9e1a4cdb31249fe0','0','2','0'), ('45677','18','','10589','Archive: Count of archived files','pgsql.archive.count_archived_files','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of archived files.','0','30d','0','','45635','','','','','200','1','0','','','0','0','0','0','0','0','0','d69d40f3e7064f668b0bf150ff73aafc','0','2','0'), ('45678','18','','10589','Archive: Count of files in archive_status need to archive','pgsql.archive.count_files_to_archive','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of files to archive.','0','30d','0','','45635','','','','','200','1','0','','','0','0','0','0','0','0','0','c1cc1236cf0c412a84e7d1ff3fec14e5','0','2','0'), ('45679','18','','10589','Archive: Count of failed attempts to archive files','pgsql.archive.failed_trying_to_archive','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of failed attempts to archive files.','0','30d','0','','45635','','','','','200','1','0','','','0','0','0','0','0','0','0','1ea44a48aaf042debc078ad920dd4f02','0','2','0'), ('45680','18','','10589','Archive: Size of files need to archive','pgsql.archive.size_files_to_archive','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Size of files to archive.','0','30d','0','','45635','','','','','200','1','0','','','0','0','0','0','0','0','0','13f563e6152a482fb48415d81f916af2','0','2','0'), ('45686','18','','10589','Connections sum: Prepared','pgsql.connections.sum.prepared','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of prepared transactions: https://www.postgresql.org/docs/current/sql-prepare-transaction.html','0','30d','0','','45653','','','','','200','1','0','','','0','0','0','0','0','0','0','512e90360d4d4b95aa23014181697afe','0','2','0'), ('45690','18','','10589','Connections sum: Active','pgsql.connections.sum.active','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections executing a query.','0','30d','0','','45653','','','','','200','1','0','','','0','0','0','0','0','0','0','5e3e5b6a244c4dfdacc7167196e28d7d','0','2','0'), ('45691','18','','10589','Connections sum: Disabled','pgsql.connections.sum.disabled','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of disabled connections.','0','30d','0','','45653','','','','','200','1','0','','','0','0','0','0','0','0','0','2dd753d41b5e4c4098fef4fe5ac51060','0','2','0'), ('45692','18','','10589','Connections sum: Fastpath function call','pgsql.connections.sum.fastpath_function_call','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections executing a fast-path function.','0','30d','0','','45653','','','','','200','1','0','','','0','0','0','0','0','0','0','6d379fe1fe424ed68dea03a90da81da0','0','2','0'), ('45693','18','','10589','Connections sum: Idle','pgsql.connections.sum.idle','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections waiting for a new client command.','0','30d','0','','45653','','','','','200','1','0','','','0','0','0','0','0','0','0','8b777c5628c4462580f1ae70790fb584','0','2','0'), ('45694','18','','10589','Connections sum: Idle in transaction','pgsql.connections.sum.idle_in_transaction','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections in a transaction state but not executing a query.','0','30d','0','','45653','','','','','200','1','0','','','0','0','0','0','0','0','0','7851bc86735e46a48fd5c82d83ef066a','0','2','0'), ('45695','18','','10589','Connections sum: Idle in transaction (aborted)','pgsql.connections.sum.idle_in_transaction_aborted','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections in a transaction state but not executing a query, and where one of the statements in the transaction caused an error.','0','30d','0','','45653','','','','','200','1','0','','','0','0','0','0','0','0','0','9267653f21b445beaacd3de3e55ad4ae','0','2','0'), ('45696','18','','10589','WAL: Bytes written','pgsql.wal.write','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'WAL write, in bytes.','0','30d','0','','45639','','','','','200','1','0','','','0','0','0','0','0','0','0','0dec7fe5cbe24fcf802cb387ca8edf98','0','2','0'), ('45702','18','','10589','DB [{#DBNAME}]: Get queries','pgsql.queries.get_metrics["{#DBNAME}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get queries metrics for database "{#DBNAME}".','0','30d','0','','45651','','','','','200','1','0','','','0','0','0','0','0','0','0','16fd0bd835fd4db7b5ebb635780d9fe6','0','2','0'), ('45703','18','','10589','DB [{#DBNAME}]: Get locks','pgsql.locks.get_metrics["{#DBNAME}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get locks metrics for database "{#DBNAME}".','0','30d','0','','45648','','','','','200','1','0','','','0','0','0','0','0','0','0','350ebc4e054c4290a92293ba625c40dd','0','2','0'), ('45704','18','','10589','DB [{#DBNAME}]: Get dbstat','pgsql.dbstat.get_metrics["{#DBNAME}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get dbstat metrics for database "{#DBNAME}".','0','30d','0','','45650','','','','','200','1','0','','','0','0','0','0','0','0','0','4e977e75b4044928a75dcdd713be1169','0','2','0'), ('45705','18','','10589','Application [{#APPLICATION_NAME}]: Get replication','pgsql.replication.get_metrics["{#APPLICATION_NAME}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Collect metrics from the "pg_stat_replication" about the application "{#APPLICATION_NAME}" that is connected to this WAL sender, which contains information about the WAL sender process, showing statistics about replication to that sender''s connected standby server.','0','30d','0','','45644','','','','','200','1','0','','','0','0','0','0','0','0','0','9e7797789d2c47efb9af2c86f8c6a93e','0','2','0'), ('45748','18','','10590','Authentication item errors','sd_wan.auth.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Item for gathering all the data item errors.','0','30d','0','','45743','','','','','200','1','0','','','0','0','0','0','0','0','0','efc5456a02d04ade93cd54b145ebc24d','0','2','0'), ('45749','18','','10590','Get devices','sd_wan.get.devices','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Item for gathering all devices from Cisco SD-WAN API.','0','30d','0','','45743','','','','','200','1','0','','','0','0','0','0','0','0','0','bbb2713e2e174c558315de8b2fd55f0f','0','2','0'), ('45750','18','','10591','Model name','sd_wan.device.model','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The model name of the device.','29','30d','0','','45747','','','','','200','1','0','','','0','0','0','0','0','0','0','840c5d843f4f4def865a8043396a21f5','0','2','0'), ('45751','18','','10591','Device interfaces item errors','sd_wan.get.interfaces.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Item for gathering errors of the device interfaces.','0','30d','0','','45746','','','','','200','1','0','','','0','0','0','0','0','0','0','0a1427fdcaaf44a3a389a68c781497ef','0','2','0'), ('45752','18','','10591','Device data item errors','sd_wan.get.device.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Item for gathering errors of the device item.','0','30d','0','','45747','','','','','200','1','0','','','0','0','0','0','0','0','0','dfef0a5aa8054effaab44fb04df20778','0','2','0'), ('45753','18','','10591','Version','sd_wan.device.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The version of the device software.','17','30d','0','','45747','','','','','200','1','0','','','0','0','0','0','0','0','0','818ad0a67ba749619e03a746e9489404','0','2','0'), ('45754','18','','10591','System uptime','sd_wan.device.uptime','0','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The system uptime is calculated on the basis of boot time.','0','30d','0','','45747','','','','','200','1','0','','','0','0','0','0','0','0','0','c1ada0df07b94b1daf3881fac4c9a8d3','0','2','0'), ('45755','18','','10591','Device state description','sd_wan.device.state_descr','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The description of the device current state.','0','30d','0','','45747','','','','','200','1','0','','','0','0','0','0','0','0','0','bae48575c12941e38346df2ae00374ec','0','2','0'), ('45756','18','','10591','Device state','sd_wan.device.state','0','31d','365d','0','3','','','','',NULL,'1112','','','0','','','','','0',NULL,'The device current state.','0','30d','0','','45747','','','','','200','1','0','','','0','0','0','0','0','0','0','19bc5d63eb424ecab4d8b1291191d0cd','0','2','0'), ('45757','18','','10591','Serial Number','sd_wan.device.serialnumber','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The device serial number.','8','30d','0','','45747','','','','','200','1','0','','','0','0','0','0','0','0','0','d665ec254da44501bf7be0b78156b01f','0','2','0'), ('45758','18','','10591','Device role','sd_wan.device.role','0','31d','0','0','1','','','','',NULL,'1116','','','0','','','','','0',NULL,'The device role in the network.','0','30d','0','','45747','','','','','200','1','0','','','0','0','0','0','0','0','0','f1cc4c623c754d17881f9217466ec21d','0','2','0'), ('45759','18','','10591','Device reachability','sd_wan.device.reachability','0','31d','365d','0','3','','','','',NULL,'1115','','','0','','','','','0',NULL,'Reachability to the vManager and/or the entire network.','0','30d','0','','45747','','','','','200','1','0','','','0','0','0','0','0','0','0','60381f3d5e914ce4b281d65c212c44b6','0','2','0'), ('45760','18','','10591','Number of processes','sd_wan.device.proc.num','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of processes in any state.','0','30d','0','','45747','','','','','200','1','0','','','0','0','0','0','0','0','0','5e9d4d61e72e4755a242f36bcf93b534','0','2','0'), ('45761','18','','10591','Operating system','sd_wan.device.os','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The device operating system.','5','30d','0','','45747','','','','','200','1','0','','','0','0','0','0','0','0','0','809418dac3be4dd7b8cf3024388b1a11','0','2','0'), ('45762','18','','10591','Operating system architecture','sd_wan.device.arch','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The architecture of the operating system.','7','30d','0','','45747','','','','','200','1','0','','','0','0','0','0','0','0','0','e72b66fe978e4495b07c95216ee2fb30','0','2','0'), ('45763','18','','10591','Certificate validity','sd_wan.device.certificate_validity','0','31d','365d','0','3','','','','',NULL,'1117','','','0','','','','','0',NULL,'Validity status of the device certificate.','0','30d','0','','45747','','','','','200','1','0','','','0','0','0','0','0','0','0','a9565657b94b4bd5b4e82692ab3f0f9a','0','2','0'), ('45764','18','','10591','CPU idle time','sd_wan.device.cpu.util[idle]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time the CPU has spent doing nothing.','0','30d','0','','45747','','','','','200','1','0','','','0','0','0','0','0','0','0','d87ecb03ca2b48efb7a47ddde260b497','0','2','0'), ('45765','18','','10591','Control connections','sd_wan.device.control_conn','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of control connections.','0','30d','0','','45747','','','','','200','1','0','','','0','0','0','0','0','0','0','8a30d4aef9c54c15a56a34ddc0f277d5','0','2','0'), ('45766','18','','10591','Load average (1m avg)','sd_wan.device.cpu.load[avg1]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The average number of processes being or waiting executed over past 1 minute.','0','30d','0','','45747','','','','','200','1','0','','','0','0','0','0','0','0','0','e8185c1ab7924a378dd4a0368b2bc96d','0','2','0'), ('45767','18','','10591','Load average (5m avg)','sd_wan.device.cpu.load[avg5]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The average number of processes being or waiting executed over past 5 minutes.','0','30d','0','','45747','','','','','200','1','0','','','0','0','0','0','0','0','0','8e1b51fcdb9c49028adfe41d8e4cd07f','0','2','0'), ('45768','18','','10591','Load average (15m avg)','sd_wan.device.cpu.load[avg15]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The average number of processes being or waiting executed over past 15 minutes.','0','30d','0','','45747','','','','','200','1','0','','','0','0','0','0','0','0','0','e9b2cedafb0a4dde83c3f8e3ec658d9e','0','2','0'), ('45769','18','','10591','Number of CPUs','sd_wan.device.cpu.num','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of CPU.','0','30d','0','','45747','','','','','200','1','0','','','0','0','0','0','0','0','0','193a05a570744296b12927cdd7d5c80a','0','2','0'), ('45770','18','','10591','CPU system time','sd_wan.device.cpu.util[system]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time the CPU has spent running the kernel and its processes.','0','30d','0','','45747','','','','','200','1','0','','','0','0','0','0','0','0','0','3f82fb93e5d74aeaa656f23fd9647a27','0','2','0'), ('45771','18','','10591','Used memory','sd_wan.device.memory.used','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of physical memory (in bytes) used by applications on the device.','0','30d','0','','45747','','','','','200','1','0','','','0','0','0','0','0','0','0','80ae65af0a4c42ffb5a5b6b5179e85fc','0','2','0'), ('45772','18','','10591','CPU user time','sd_wan.device.cpu.util[user]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The time the CPU has spent running users'' processes that are not niced.','0','30d','0','','45747','','','','','200','1','0','','','0','0','0','0','0','0','0','4f7d0c18da724f888b3f6e82f4becd7a','0','2','0'), ('45773','18','','10591','System name','sd_wan.device.hostname','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The system host name.','3','30d','0','','45747','','','','','200','1','0','','','0','0','0','0','0','0','0','ce17521dd90a442d86270a11e3931338','0','2','0'), ('45774','18','','10591','Available memory','sd_wan.device.memory.avail','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of physical memory (in bytes) immediately available for the allocation to a process or for a system use in the device.','0','30d','0','','45747','','','','','200','1','0','','','0','0','0','0','0','0','0','dfdd804076df4050963a5270501dc759','0','2','0'), ('45775','18','','10591','Memory (buffers)','sd_wan.device.memory.buffers','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of physical memory (in bytes) used by the kernel buffers.','0','30d','0','','45747','','','','','200','1','0','','','0','0','0','0','0','0','0','0ad610d976644766b8997311c72c0d7c','0','2','0'), ('45776','18','','10591','Memory (cached)','sd_wan.device.memory.cached','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of physical memory (in bytes) used by the page cache and slabs.','0','30d','0','','45747','','','','','200','1','0','','','0','0','0','0','0','0','0','e344c9575c954e9584074e6cd161349b','0','2','0'), ('45777','18','','10591','Total memory','sd_wan.device.memory.total','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total memory, expressed in bytes.','0','30d','0','','45747','','','','','200','1','0','','','0','0','0','0','0','0','0','90566bdf0458468e8607dd05a53efb4c','0','2','0'), ('45778','18','','10591','Device routes item errors','sd_wan.get.routes.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Item for gathering errors of the device routes.','0','30d','0','','45745','','','','','200','1','0','','','0','0','0','0','0','0','0','e0a8bb6a05364e9ea0467dced14ac4a6','0','2','0'), ('45788','18','','10591','Mounted filesystem discovery','sd_wan.fs.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering device filesystems from Cisco SD-WAN API.','0','7d','1','','45747','','','','','200','1','0','','','0','0','0','0','0','0','0','2348adc088e343ccb51ab342c13a062e','0','2','0'), ('45789','18','','10591','Network interfaces discovery','sd_wan.interfaces.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering device interfaces from Cisco SD-WAN API.','0','7d','1','','45746','','','','','200','1','0','','','0','0','0','0','0','0','0','6be4e405fd7c48d5beca62ca7eadbdf3','0','2','0'), ('45790','18','','10591','Route discovery','sd_wan.routes.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering Application-Aware routes from Cisco SD-WAN API.','0','7d','0','','45745','','','','','200','1','0','','','0','0','0','0','0','0','0','5242a999e54a430da6d4eedcc5840fb1','0','2','0'), ('45791','18','','10591','["{#FSNAME}"]: Get data','sd_wan.device.fs.get_data["{#FSNAME}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Item for gathering data for the {#FSNAME} filesystem.','0','30d','0','','45747','','','','','200','1','0','','','0','0','0','0','0','0','0','33664690bcde41279432e6a83ae376d1','0','2','0'), ('45792','18','','10591','Interface ["{#IFNAME}"]: Get data','sd_wan.device.if.get_data["{#IFKEY}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Item for gathering data for the {#IFNAME} interface.','0','30d','0','','45746','','','','','200','1','0','','','0','0','0','0','0','0','0','b5ffafcd8d5c4072bf01311d95bbd2db','0','2','0'), ('45793','18','','10591','Route [{#LOCAL} => {#REMOTE}]: Get data','sd_wan.routes.get_data[{#LOCAL},{#REMOTE}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Item for gathering data for the route {#LOCAL} => {#REMOTE}.','0','30d','0','','45745','','','','','200','1','0','','','0','0','0','0','0','0','0','81cfb6100aad4404a66a2e1858f511b7','0','2','0'), ('45814','18','','10336','IAX trunk "{#OBJECTNAME}": Get IAX trunk','asterisk.iax.trunk.get[{#OBJECTNAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Raw data for an IAX trunk.','0','30d','0','','31784','','','','','200','1','0','','','0','0','0','0','0','0','0','9c6554be77234ed98cee4a49e23506b7','0','2','0'), ('45815','18','','10336','PJSIP trunk "{#OBJECTNAME}": Get PJSIP trunk','asterisk.pjsip.trunk.get[{#OBJECTNAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Raw data for a PJSIP trunk.','0','30d','0','','31784','','','','','200','1','0','','','0','0','0','0','0','0','0','0919612d88744ec7ad47b11ccfad1f4e','0','2','0'), ('45816','18','','10336','"{#QUEUE}": Get queue','asterisk.queue.get[{#QUEUE}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Raw data for a queue.','0','30d','0','','31784','','','','','200','1','0','','','0','0','0','0','0','0','0','49bc8af136204b8bae9d7527d04b15bc','0','2','0'), ('45817','18','','10336','SIP trunk "{#OBJECTNAME}": Get SIP trunk','asterisk.sip.trunk.get[{#OBJECTNAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Raw data for a SIP trunk.','0','30d','0','','31784','','','','','200','1','0','','','0','0','0','0','0','0','0','a9532680f08445dd9a1bb37e2e2c44c5','0','2','0'), ('45819','18','','10593','Projects discovery','mantisbt.projects.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery rule for a Mantis BT projects.','0','7d','1','','45818','','','','','200','1','0','','','0','0','0','0','0','0','0','fc1e8a60cf544b3bbc92e6b6907b5e51','0','2','0'), ('45821','18','','10593','Project [{#NAME}]: Feature severity issues','mantis.project.severity.feature_issues[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of "feature" severity issues.','0','30d','0','','45820','','','','','200','1','0','','','0','0','0','0','0','0','0','22f520e836b147d9875cf8cc692b4c23','0','2','0'), ('45822','18','','10593','Project [{#NAME}]: Total issues','mantis.project.total_issues[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of issues in project.','0','30d','0','','45820','','','','','200','1','0','','','0','0','0','0','0','0','0','56afe0d7c0dd471abc14cc0ed926aef7','0','2','0'), ('45823','18','','10593','Project [{#NAME}]: Resolved issues','mantis.project.status.resolved_issues[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of issues with ''resolved'' status.','0','30d','0','','45820','','','','','200','1','0','','','0','0','0','0','0','0','0','0954f125f47c45ba81b46702d53478fa','0','2','0'), ('45824','18','','10593','Project [{#NAME}]: New issues','mantis.project.status.new_issues[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of issues with ''new'' status.','0','30d','0','','45820','','','','','200','1','0','','','0','0','0','0','0','0','0','9db47ff1cfbe43849f85d445d334ee0d','0','2','0'), ('45825','18','','10593','Project [{#NAME}]: Feedback issues','mantis.project.status.feedback_issues[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of issues with ''feedback'' status.','0','30d','0','','45820','','','','','200','1','0','','','0','0','0','0','0','0','0','91148a664c3548b98b9ae0ebb99edddc','0','2','0'), ('45826','18','','10593','Project [{#NAME}]: Confirmed issues','mantis.project.status.confirmed_issues[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of issues with ''confirmed'' status.','0','30d','0','','45820','','','','','200','1','0','','','0','0','0','0','0','0','0','b9954705d26a40d0ba80300d444a5e8c','0','2','0'), ('45827','18','','10593','Project [{#NAME}]: Closed issues','mantis.project.status.closed_issues[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of issues with ''closed'' status.','0','30d','0','','45820','','','','','200','1','0','','','0','0','0','0','0','0','0','474bda77652147959ba3fa853c667a87','0','2','0'), ('45828','18','','10593','Project [{#NAME}]: Assigned issues','mantis.project.status.assigned_issues[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of issues with ''assigned'' status.','0','30d','0','','45820','','','','','200','1','0','','','0','0','0','0','0','0','0','c72781a9c6d44fd799139a7b2cdfe67a','0','2','0'), ('45829','18','','10593','Project [{#NAME}]: Acknowledged issues','mantis.project.status.acknowledged_issues[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of issues with ''acknowledged'' status.','0','30d','0','','45820','','','','','200','1','0','','','0','0','0','0','0','0','0','6760e0bab28c48468f4f27de02c701b1','0','2','0'), ('45830','18','','10593','Project [{#NAME}]: Tweak severity issues','mantis.project.severity.tweak_issues[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of "tweak" severity issues.','0','30d','0','','45820','','','','','200','1','0','','','0','0','0','0','0','0','0','6ba8709cfad2441cbe4752ef7dd0fc70','0','2','0'), ('45831','18','','10593','Project [{#NAME}]: Trivial severity issues','mantis.project.severity.trivial_issues[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of "trivial" severity issues.','0','30d','0','','45820','','','','','200','1','0','','','0','0','0','0','0','0','0','36d9f115d1084b08964abf4152402dbb','0','2','0'), ('45832','18','','10593','Project [{#NAME}]: Text severity issues','mantis.project.severity.text_issues[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of "text" severity issues.','0','30d','0','','45820','','','','','200','1','0','','','0','0','0','0','0','0','0','4018e9393c0f4179a4d7abf454b7d2de','0','2','0'), ('45833','18','','10593','Project [{#NAME}]: Minor severity issues','mantis.project.severity.minor_issues[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of "minor" severity issues.','0','30d','0','','45820','','','','','200','1','0','','','0','0','0','0','0','0','0','31720b277c4948dc8de07cb8d0c274a5','0','2','0'), ('45834','18','','10593','Project [{#NAME}]: Major severity issues','mantis.project.severity.major_issues[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of "major" severity issues.','0','30d','0','','45820','','','','','200','1','0','','','0','0','0','0','0','0','0','e6f970c08dac44d6a40b01b65b87de5e','0','2','0'), ('45835','18','','10593','Project [{#NAME}]: High priority issues','mantis.project.priority.high_issues[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of "high" priority issues.','0','30d','0','','45820','','','','','200','1','0','','','0','0','0','0','0','0','0','baffdd6d9e51403084fc4a98bb4b9ff7','0','2','0'), ('45836','18','','10593','Project [{#NAME}]: Immediate priority issues','mantis.project.priority.immediate_issues[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of "immediate" priority issues.','0','30d','0','','45820','','','','','200','1','0','','','0','0','0','0','0','0','0','8e68e80eaa9e45c1b6fdc8289361e016','0','2','0'), ('45837','18','','10593','Project [{#NAME}]: Block severity issues','mantis.project.severity.block_issues[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of "block" severity issues.','0','30d','0','','45820','','','','','200','1','0','','','0','0','0','0','0','0','0','d92c955b5c944602a56c617ea2f14777','0','2','0'), ('45838','18','','10593','Project [{#NAME}]: Will not fix issues','mantis.project.resolution.wont_fix_issues[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of "wont fix" resolution issues.','0','30d','0','','45820','','','','','200','1','0','','','0','0','0','0','0','0','0','5957a3ad86c94d909bcc4b4827dd5207','0','2','0'), ('45839','18','','10593','Project [{#NAME}]: Unable to reproduce issues','mantis.project.resolution.unable_to_reproduce_issues[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of "unable to reproduce" resolution issues.','0','30d','0','','45820','','','','','200','1','0','','','0','0','0','0','0','0','0','c015da7c78a941baab2bebeefdbb13a9','0','2','0'), ('45840','18','','10593','Project [{#NAME}]: Suspended issues','mantis.project.resolution.suspended_issues[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of "suspended" resolution issues.','0','30d','0','','45820','','','','','200','1','0','','','0','0','0','0','0','0','0','cf279da7ccad4b97bc99075d8a668bb7','0','2','0'), ('45841','18','','10593','Project [{#NAME}]: Reopened issues','mantis.project.resolution.reopened_issues[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of "reopened" resolution issues.','0','30d','0','','45820','','','','','200','1','0','','','0','0','0','0','0','0','0','bbfd75e3793a44cbbcaa21dc600d1f26','0','2','0'), ('45842','18','','10593','Project [{#NAME}]: Open issues','mantis.project.resolution.open_issues[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of "open" resolution issues.','0','30d','0','','45820','','','','','200','1','0','','','0','0','0','0','0','0','0','be2a9993006e4a7f9949f231f0d9e031','0','2','0'), ('45843','18','','10593','Project [{#NAME}]: No change required issues','mantis.project.resolution.no_change_required_issues[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of "no change required" resolution issues.','0','30d','0','','45820','','','','','200','1','0','','','0','0','0','0','0','0','0','77738b7324ff439fbe57053df2cac93a','0','2','0'), ('45844','18','','10593','Project [{#NAME}]: Not fixable issues','mantis.project.resolution.not_fixable_issues[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of "not fixable" resolution issues.','0','30d','0','','45820','','','','','200','1','0','','','0','0','0','0','0','0','0','bdfe85927f6449ac9ed9b5015cbc9e64','0','2','0'), ('45845','18','','10593','Project [{#NAME}]: Fixed issues','mantis.project.resolution.fixed_issues[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of "fixed" resolution issues.','0','30d','0','','45820','','','','','200','1','0','','','0','0','0','0','0','0','0','c9dd80708bba4864a86b1bf8e4712b56','0','2','0'), ('45846','18','','10593','Project [{#NAME}]: Duplicate issues','mantis.project.resolution.duplicate_issues[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of "duplicate" resolution issues.','0','30d','0','','45820','','','','','200','1','0','','','0','0','0','0','0','0','0','752c79c4182a427daf92c9b97f035956','0','2','0'), ('45847','18','','10593','Project [{#NAME}]: Urgent priority issues','mantis.project.priority.urgent_issues[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of "urgent" priority issues.','0','30d','0','','45820','','','','','200','1','0','','','0','0','0','0','0','0','0','c712113bccd34af2bb8018a52b6c581d','0','2','0'), ('45848','18','','10593','Project [{#NAME}]: Normal priority issues','mantis.project.priority.normal_issues[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of "normal" priority issues.','0','30d','0','','45820','','','','','200','1','0','','','0','0','0','0','0','0','0','5a9ee1a754f24fcda08a1e3b42d711d7','0','2','0'), ('45849','18','','10593','Project [{#NAME}]: None priority issues','mantis.project.priority.none_issues[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of "none" priority issues.','0','30d','0','','45820','','','','','200','1','0','','','0','0','0','0','0','0','0','f5279ccc0e84466f94f334a36e25316f','0','2','0'), ('45850','18','','10593','Project [{#NAME}]: Low priority issues','mantis.project.priority.low_issues[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of "low" priority issues.','0','30d','0','','45820','','','','','200','1','0','','','0','0','0','0','0','0','0','3e53778307b649f7b22ec82ab4e27894','0','2','0'), ('45851','18','','10593','Project [{#NAME}]: Crash severity issues','mantis.project.severity.crash_issues[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of "crash" severity issues.','0','30d','0','','45820','','','','','200','1','0','','','0','0','0','0','0','0','0','09d0ac69f19043ae84ada034074f8580','0','2','0'), ('45863','18','','10594','Client nodes API response','nomad.client.nodes.api.response','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Client nodes API response message.','0','30d','0','','45852','','','','','200','1','0','','','0','0','0','0','0','0','0','50bf00cc5c9f41c887add07d0bba3cc1','0','2','0'), ('45864','18','','10594','Nomad clients count','nomad.clients.count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Nomad clients count.','0','30d','0','','45852','','','','','200','1','0','','','0','0','0','0','0','0','0','7a46e18358e641cc941b306de6eb5dc4','0','2','0'), ('45865','18','','10594','Region','nomad.region','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Current cluster region.','0','30d','0','','45853','','','','','200','1','0','','','0','0','0','0','0','0','0','e848e135a5574931accf114fcafb89d7','0','2','0'), ('45866','18','','10594','Server-related APIs response','nomad.server.api.response','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Server-related (`operator/raft/configuration`, `agent/members`) APIs error response message.','0','30d','0','','45853','','','','','200','1','0','','','0','0','0','0','0','0','0','53a0c689f27547ccbcb0a57c736a5027','0','2','0'), ('45867','18','','10594','Nomad servers count','nomad.servers.count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Nomad servers count.','0','30d','0','','45853','','','','','200','1','0','','','0','0','0','0','0','0','0','904e226008324cb8aa11f716e0420b51','0','2','0'), ('45868','18','','10595','Nodes API response','nomad.client.node.info.api.response','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Nodes API response message.','0','30d','0','','45856','','','','','200','1','0','','','0','0','0','0','0','0','0','39430d6dceaa42a68c72ef68f67b1a12','0','2','0'), ('45869','18','','10595','Metrics','nomad.client.metrics.get','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Nomad client metrics in raw format.','0','30d','0','','45858','','','','','200','1','0','','','0','0','0','0','0','0','0','933621a61d2241d084b48ec6b3bd5b74','0','2','0'), ('45870','18','','10595','Allocations API response','nomad.client.job.allocs.api.response','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Allocations API response message.','0','30d','0','','45857','','','','','200','1','0','','','0','0','0','0','0','0','0','c9bfa74720ea4e228e5d200ab1f38074','0','2','0'), ('45871','18','','10595','Monitoring API response','nomad.client.data.api.response','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Monitoring API response message.','0','30d','0','','45858','','','','','200','1','0','','','0','0','0','0','0','0','0','71be24cf848a448dbb993a577015bd9e','0','2','0'), ('45872','18','','10595','Nomad client version','nomad.client.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Nomad client version.','0','30d','0','','45856','','','','','200','1','0','','','0','0','0','0','0','0','0','872961bd507c4f6380168d2284ead1ae','0','2','0'), ('45873','18','','10596','Nomad server version','nomad.server.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Nomad server version.','0','30d','0','','45862','','','','','200','1','0','','','0','0','0','0','0','0','0','921fc50044f94aceaa9d0789be854496','0','2','0'), ('45874','18','','10596','Monitoring API response','nomad.server.data.api.response','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Monitoring API response message.','0','30d','0','','45860','','','','','200','1','0','','','0','0','0','0','0','0','0','dbbee3bb99d347f9a9a5325b4f64a894','0','2','0'), ('45875','18','','10596','Cluster role','nomad.server.raft.cluster_role','0','31d','365d','0','3','','','','',NULL,'1122','','','0','','','','','0',NULL,'Current role in the cluster.','0','30d','0','','45862','','','','','200','1','0','','','0','0','0','0','0','0','0','dce75575b01e4cf8bd84d6a40c74f22b','0','2','0'), ('45876','18','','10596','Raft peers','nomad.server.raft.peers','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Current cluster raft peers amount.','0','30d','0','','45862','','','','','200','1','0','','','0','0','0','0','0','0','0','bca59612c439447ebe78ae68e68fd6cb','0','2','0'), ('45877','18','','10596','Internal stats API response','nomad.server.stats.api.response','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Internal stats API response message.','0','30d','0','','45862','','','','','200','1','0','','','0','0','0','0','0','0','0','02ba826868414a16909f13b98cc4c445','0','2','0'), ('45878','18','','10596','Metrics','nomad.server.metrics.get','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Nomad server metrics in raw format.','0','30d','0','','45860','','','','','200','1','0','','','0','0','0','0','0','0','0','25372c89439641d09521348033b1e324','0','2','0'), ('45879','18','','10596','Nomad raft version','nomad.raft.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Nomad raft version.','0','30d','0','','45862','','','','','200','1','0','','','0','0','0','0','0','0','0','04821dab074f43e785dec52fbf69240e','0','2','0'), ('46022','18','','10594','Clients discovery','nomad.clients.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Client nodes discovery.','0','7d','1','','45852','','','','','200','1','0','','','0','0','0','0','0','0','0','0ba167e5638344ab842224df5b8909e1','0','2','0'), ('46023','18','','10594','Servers discovery','nomad.servers.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Server nodes discovery.','0','7d','1','','45853','','','','','200','1','0','','','0','0','0','0','0','0','0','202ee1d0060d48b09a48fe2039d3b081','0','2','0'), ('46024','18','','10595','Allocated jobs discovery','nomad.client.alloc.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Allocated jobs discovery.','0','0','1','','45857','','','','','200','1','0','','','0','0','0','0','0','0','0','c41a6405aea7400fb90c207ce95c6594','0','2','0'), ('46026','18','','10595','Drivers discovery','nomad.client.drivers.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Client drivers discovery.','0','7d','1','','45856','','','','','200','1','0','','','0','0','0','0','0','0','0','cfa76f8c4aaf49c5888ef82d6d7d484d','0','2','0'), ('46027','18','','10595','Driver [{#DRIVER.NAME}] detection state','nomad.client.driver.detected["{#DRIVER.NAME}"]','0','31d','365d','0','3','','','','',NULL,'1118','','','0','','','','','2',NULL,'Driver [{#DRIVER.NAME}] detection state.','0','30d','0','','45856','','','','','200','1','0','','','0','0','0','0','0','0','0','6ffea3b88b29451ea6491cbd34a61148','0','2','0'), ('46028','18','','10595','Driver [{#DRIVER.NAME}] state','nomad.client.driver.state["{#DRIVER.NAME}"]','0','31d','365d','0','3','','','','',NULL,'1119','','','0','','','','','2',NULL,'Driver [{#DRIVER.NAME}] state.','0','30d','0','','45856','','','','','200','1','0','','','0','0','0','0','0','0','0','fdff50758360474dafffee8cb7ba6289','0','2','0'), ('46046','18','','10262','Utilization of snmp poller data collector processes, in %','process.snmp_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the snmp poller processes have been busy for the last minute.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','f31066273dde41c2aee2a319c1a1af9a','0','2','0'), ('46049','18','','10261','Utilization of snmp poller data collector processes, in %','process.snmp_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the snmp poller processes have been busy for the last minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','faec2628848140549aa8cb1cb247b4ea','0','2','0'), ('46055','18','','10600','Alerts with "critical" severity','acronis.cpc.alerts.severity.crit','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Gets count of alerts with "critical" severity.','0','30d','0','','46052','','','','','200','1','0','','','0','0','0','0','0','0','0','483f9e040091476ba3857ae2957d83bf','0','2','0'), ('46056','18','','10600','Alerts with "error" severity','acronis.cpc.alerts.severity.err','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Gets count of alerts with "error" severity.','0','30d','0','','46052','','','','','200','1','0','','','0','0','0','0','0','0','0','4fcefc1b66fe4c56b68cf5712aa727e5','0','2','0'), ('46057','18','','10600','Alerts with "information" severity','acronis.cpc.alerts.severity.info','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Gets count of alerts with "information" severity.','0','30d','0','','46052','','','','','200','1','0','','','0','0','0','0','0','0','0','06003951452f4687bd0f1c0a395e7a77','0','2','0'), ('46058','18','','10600','Alerts with "ok" severity','acronis.cpc.alerts.severity.ok','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Gets count of alerts with "ok" severity.','0','30d','0','','46052','','','','','200','1','0','','','0','0','0','0','0','0','0','ca3a1c7649874dfdaf191c7063022498','0','2','0'), ('46059','18','','10600','Alerts with "warning" severity','acronis.cpc.alerts.severity.warn','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Gets count of alerts with "warning" severity.','0','30d','0','','46052','','','','','200','1','0','','','0','0','0','0','0','0','0','a4516d8961b3426f859511e1614c4403','0','2','0'), ('46060','18','','10599','Acronis CPC: MSP Discovery','acronis.cpc.lld.msp_discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers MSP and creates host prototype based on that.','0','7d','0','','46050','','','','','200','1','0','','','0','0','0','0','0','0','0','d2c30d84c5f44734bc2f0ef38e99a959','0','2','0'), ('46061','18','','10600','Acronis CPC: Alerts discovery','acronis.cpc.alerts.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers alerts.','0','0','1','','46052','','','','','200','1','0','','','0','0','0','0','0','0','0','ee0d74749b93459ca40e477b31b3aa21','0','2','0'), ('46062','18','','10600','Acronis CPC: Customer discovery','acronis.cpc.customer.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers customers.','0','7d','1','','46051','','','','','200','1','0','','','0','0','0','0','0','0','0','4211387734c642f88e236bd588940cc1','0','2','0'), ('46063','18','','10600','Acronis CPC: Device discovery','acronis.cpc.device.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers devices.','0','7d','1','','46053','','','','','200','1','0','','','0','0','0','0','0','0','0','67e399a0a6884589adc2618b181024e7','0','2','0'), ('46065','18','','10600','Alert [{#TYPE}]:[{#ALERT_ID}]: Alert severity','acronis.cpc.alert.severity[{#ALERT_ID}]','0','31d','365d','0','3','','','','',NULL,'1124','','','0','','','','','2',NULL,'Severity for the alert.','0','30d','0','','46052','','','','','200','1','0','','','0','0','0','0','0','0','0','b298e768dc0447b4b5c29c99a5852453','0','2','0'), ('46066','18','','10600','Customer [{#NAME}]: Enabled status','acronis.cpc.customer.status[{#NAME}]','0','31d','365d','0','3','','','','',NULL,'1126','','','0','','','','','2',NULL,'Enabled status for customer (true or false).','0','30d','0','','46051','','','','','200','1','0','','','0','0','0','0','0','0','0','d61dc067880a4317886acd54d0df1da1','0','2','0'), ('46067','18','','10600','Device [{#NAME}]:[{#ID}]: Agent enabled','acronis.cpc.device.agent.enabled[{#NAME}]','0','31d','365d','0','3','','','','',NULL,'1126','','','0','','','','','2',NULL,'Agent status (enabled or disabled) for the device.','0','30d','0','','46064','','','','','200','1','0','','','0','0','0','0','0','0','0','63f8280408c34e029085af75f15c0db3','0','2','0'), ('46068','18','','10600','Device [{#NAME}]:[{#ID}]: Protection plan name','acronis.cpc.device.protection.name[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Protection plan name for device.','0','30d','0','','46064','','','','','200','1','0','','','0','0','0','0','0','0','0','43dc6e6bb7e042149b356fb6b067f0d5','0','2','0'), ('46069','18','','10600','Device [{#NAME}]:[{#ID}]: Previous successful vulnerability assessment','acronis.cpc.device.vuln.prev.ok[{#NAME}]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Previous successful vulnerability assessment for device.','0','30d','0','','46064','','','','','200','1','0','','','0','0','0','0','0','0','0','36fb3f57c4ae4f5cad01913a453869dc','0','2','0'), ('46070','18','','10600','Device [{#NAME}]:[{#ID}]: Next vulnerability assessment','acronis.cpc.device.vuln.next[{#NAME}]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Next scheduled vulnerability assessment for device.','0','30d','0','','46064','','','','','200','1','0','','','0','0','0','0','0','0','0','e6905aa1998a41cfa0e6fda699558ceb','0','2','0'), ('46071','18','','10600','Device [{#NAME}]:[{#ID}]: Protection status','acronis.cpc.device.protection.status[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Protection status for device.','0','30d','0','','46064','','','','','200','1','0','','','0','0','0','0','0','0','0','e0a94793d31c4cf08f64c0d230134870','0','2','0'), ('46072','18','','10600','Device [{#NAME}]:[{#ID}]: Previous antimalware protection scan','acronis.cpc.device.protection.scan.prev[{#NAME}]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Previous antimalware protection scan for device.','0','30d','0','','46064','','','','','200','1','0','','','0','0','0','0','0','0','0','684b4a46e4d84a588bd84fac3e6cfc55','0','2','0'), ('46073','18','','10600','Device [{#NAME}]:[{#ID}]: Previous successful antimalware protection scan','acronis.cpc.device.protection.scan.prev.ok[{#NAME}]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Previous successful antimalware protection scan for device.','0','30d','0','','46064','','','','','200','1','0','','','0','0','0','0','0','0','0','d9510ad24a1a40dfb14313e0e135a247','0','2','0'), ('46074','18','','10600','Device [{#NAME}]:[{#ID}]: Next antimalware protection scan','acronis.cpc.device.protection.scan.next[{#NAME}]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Next scheduled antimalware protection scan for device.','0','30d','0','','46064','','','','','200','1','0','','','0','0','0','0','0','0','0','98701aa6f99f48c3a769529b2c3c3123','0','2','0'), ('46075','18','','10600','Device [{#NAME}]:[{#ID}]: Previous patch management run','acronis.cpc.device.patch.prev[{#NAME}]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Previous patch management run for device.','0','30d','0','','46064','','','','','200','1','0','','','0','0','0','0','0','0','0','81bc4b10c3484673a76e9bb8e012af26','0','2','0'), ('46076','18','','10600','Device [{#NAME}]:[{#ID}]: Agent online','acronis.cpc.device.agent.online[{#NAME}]','0','31d','365d','0','3','','','','',NULL,'1126','','','0','','','','','2',NULL,'Agent reachability for the device.','0','30d','0','','46064','','','','','200','1','0','','','0','0','0','0','0','0','0','e1eaefb0e0af4793abadb0b3ad20ff4b','0','2','0'), ('46077','18','','10600','Device [{#NAME}]:[{#ID}]: Previous successful patch management run','acronis.cpc.device.patch.prev.ok[{#NAME}]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Previous successful patch management run for device.','0','30d','0','','46064','','','','','200','1','0','','','0','0','0','0','0','0','0','8ff39ea389ec4c53aa572074266536da','0','2','0'), ('46078','18','','10600','Device [{#NAME}]:[{#ID}]: Next patch management run','acronis.cpc.device.patch.next[{#NAME}]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Next scheduled patch management run for device.','0','30d','0','','46064','','','','','200','1','0','','','0','0','0','0','0','0','0','1f4d019c271c4272b055253d99d90244','0','2','0'), ('46079','18','','10600','Device [{#NAME}]:[{#ID}]: CyberFit score','acronis.cpc.device.cyberfit[{#NAME}]','0','31d','365d','0','0','','','','',NULL,'1125','','','0','','','','','2',NULL,'Acronis "CyberFit" score for the device. Value of "-1" is assigned if "CyberFit" could not be found for device.','0','30d','0','','46064','','','','','200','1','0','','','0','0','0','0','0','0','0','b45fb50f8caa40438eecfc4482d80fc2','0','2','0'), ('46080','18','','10600','Device [{#NAME}]:[{#ID}]: Previous machine backup run','acronis.cpc.device.backup.prev[{#NAME}]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Previous machine backup run for device.','0','30d','0','','46064','','','','','200','1','0','','','0','0','0','0','0','0','0','cea527353e34488a92dc5d2c082f6710','0','2','0'), ('46081','18','','10600','Device [{#NAME}]:[{#ID}]: Previous successful machine backup run','acronis.cpc.device.backup.prev.ok[{#NAME}]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Previous successful machine backup run for device.','0','30d','0','','46064','','','','','200','1','0','','','0','0','0','0','0','0','0','9fbbfa68438a406d82900d5c8801a756','0','2','0'), ('46082','18','','10600','Device [{#NAME}]:[{#ID}]: Next machine backup run','acronis.cpc.device.backup.next[{#NAME}]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Next scheduled machine backup run for device.','0','30d','0','','46064','','','','','200','1','0','','','0','0','0','0','0','0','0','d8c3372e05f3480aaa499b143ab47e87','0','2','0'), ('46083','18','','10600','Device [{#NAME}]:[{#ID}]: Agent version','acronis.cpc.device.agent.version[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Agent version for the device.','0','30d','0','','46064','','','','','200','1','0','','','0','0','0','0','0','0','0','7bc04c3526704b578e2b7561e6c97b6a','0','2','0'), ('46084','18','','10600','Device [{#NAME}]:[{#ID}]: Previous vulnerability assessment','acronis.cpc.device.vuln.prev[{#NAME}]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Previous vulnerability assessment for device.','0','30d','0','','46064','','','','','200','1','0','','','0','0','0','0','0','0','0','9a45c38169c848fd92b8e6a782ad065b','0','2','0'), ('46086','18','','10602','Active users, last 1 hour','nextcloud.serverinfo.active_users.last1h','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active users in the last 1 hour.','0','30d','0','','46085','','','','','200','1','0','','','0','0','0','0','0','0','0','cf89012acb7749a396fc14a705145c91','0','2','0'), ('46087','18','','10602','PHP maximum execution time','nextcloud.serverinfo.php.max_execution_time','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'By default, the maximum execution time for PHP scripts is set to 30 seconds. If a script runs for longer than 30 seconds, PHP stops the script and reports an error. You can control the amount of time PHP allows scripts to run by changing the ''max_execution_time'' directive in your php.ini file.','0','30d','0','','46085','','','','','200','1','0','','','0','0','0','0','0','0','0','e6a227bd9ae54d0faff1f591219d766f','0','2','0'), ('46088','18','','10602','Swap total','nextcloud.serverinfo.swap.total','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The size of the swap memory.','0','30d','0','','46085','','','','','200','1','0','','','0','0','0','0','0','0','0','361f440188a3415280e2b5f1b6b5aafb','0','2','0'), ('46089','18','','10602','Swap used, in %','nextcloud.serverinfo.swap.pused','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Swap usage, in percent.','0','30d','0','','46085','','','','','200','1','0','','','0','0','0','0','0','0','0','8a625e77ba964a49945c6367d95f3a88','0','2','0'), ('46090','18','','10602','Swap free','nextcloud.serverinfo.swap.free','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of free swap.','0','30d','0','','46085','','','','','200','1','0','','','0','0','0','0','0','0','0','2551bef7fa0f4ee0acbfd6bd0c90ef76','0','2','0'), ('46091','18','','10602','Server information status','nextcloud.serverinfo.status','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Server information API status','0','30d','0','','46085','','','','','200','1','0','','','0','0','0','0','0','0','0','e02be7c876e8452bbf3722038bac9634','0','2','0'), ('46092','18','','10602','PHP version','nextcloud.serverinfo.php.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'PHP version','0','30d','0','','46085','','','','','200','1','0','','','0','0','0','0','0','0','0','59b08f54ce2a4d058f43c09dd1a9c469','0','2','0'), ('46093','18','','10602','PHP maximum upload file size','nextcloud.serverinfo.php.upload_max_filesize','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'By default, the maximum upload file size for PHP scripts is set to 128 megabytes. However, you may want to change this limit. For example, you can set a lower limit to prevent users from uploading large files to your site. To do this, change the ''upload_max_filesize'' and ''post_max_size'' directives.','0','30d','0','','46085','','','','','200','1','0','','','0','0','0','0','0','0','0','080ff2fb09a343cc90e62e9fe640c45c','0','2','0'), ('46094','18','','10602','PHP memory wasted, in %','nextcloud.serverinfo.php.memory.wasted_percentage','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Memory allocated to the service but not in use, in percent.','0','30d','0','','46085','','','','','200','1','0','','','0','0','0','0','0','0','0','63acb31d32b143baaca36cf7c1eaf673','0','2','0'), ('46095','18','','10602','PHP memory wasted','nextcloud.serverinfo.php.memory.wasted','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Memory allocated to the service but not in use.','0','30d','0','','46085','','','','','200','1','0','','','0','0','0','0','0','0','0','5f4eb296e96f4e7f9760ee5e2a2b7064','0','2','0'), ('46096','18','','10602','PHP memory used','nextcloud.serverinfo.php.memory.used','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'PHP memory used','0','30d','0','','46085','','','','','200','1','0','','','0','0','0','0','0','0','0','1db9f9c33eca4537b9069d358b27ac06','0','2','0'), ('46097','18','','10602','PHP memory used, in %','nextcloud.serverinfo.php.memory.pused','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'PHP memory used percentage','0','30d','0','','46085','','','','','200','1','0','','','0','0','0','0','0','0','0','0b8c6ee4a95b49a3b0b7eabf5131e56f','0','2','0'), ('46098','18','','10602','PHP memory limit','nextcloud.serverinfo.php.memory.limit','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'By default, the PHP memory limit is generally set to 128 MB, but it can be customized based on the application''s specific needs. The php.ini file is usually the standard location to set the PHP memory limit.','0','30d','0','','46085','','','','','200','1','0','','','0','0','0','0','0','0','0','87819fcbbc9745fa93a47c7043906299','0','2','0'), ('46099','18','','10602','PHP memory free','nextcloud.serverinfo.php.memory.free','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'PHP free memory size.','0','30d','0','','46085','','','','','200','1','0','','','0','0','0','0','0','0','0','50e1ce974d154e98a6d2bfce8fed78e1','0','2','0'), ('46100','18','','10602','Memory used, in %','nextcloud.serverinfo.mem.pused','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'RAM usage, in percent.','0','30d','0','','46085','','','','','200','1','0','','','0','0','0','0','0','0','0','e4b20717f8ea48f49c8814955cbf5c6d','0','2','0'), ('46101','18','','10602','Memory total','nextcloud.serverinfo.mem.total','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The size of the RAM.','0','30d','0','','46085','','','','','200','1','0','','','0','0','0','0','0','0','0','04f69d7593a045a0815e78d65882c895','0','2','0'), ('46102','18','','10602','Active users, last 5 minutes','nextcloud.serverinfo.active_users.last5m','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active users in the last 5 minutes.','0','30d','0','','46085','','','','','200','1','0','','','0','0','0','0','0','0','0','355d11e7459a4c599a86b2c08b90fd56','0','2','0'), ('46103','18','','10602','Memory free','nextcloud.serverinfo.mem.free','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of free RAM.','0','30d','0','','46085','','','','','200','1','0','','','0','0','0','0','0','0','0','1e96304bec7447329f91875b7beadf7d','0','2','0'), ('46104','18','','10602','Free space','nextcloud.serverinfo.freespace','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of free disk space.','0','30d','0','','46085','','','','','200','1','0','','','0','0','0','0','0','0','0','77bfc58708a54e8f89d83c962b7c2dac','0','2','0'), ('46105','18','','10602','Database version','nextcloud.serverinfo.db.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Database description.','0','30d','0','','46085','','','','','200','1','0','','','0','0','0','0','0','0','0','9a244bfd15a94f07a4f88947c10ff4b9','0','2','0'), ('46106','18','','10602','Database type','nextcloud.serverinfo.db.type','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Database type.','0','30d','0','','46085','','','','','200','1','0','','','0','0','0','0','0','0','0','a1992a76942e4a8ebcd010ca73eed0af','0','2','0'), ('46107','18','','10602','Database size','nextcloud.serverinfo.db.size','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Size of database.','0','30d','0','','46085','','','','','200','1','0','','','0','0','0','0','0','0','0','725bdfe6f7eb4888b453c8ddd8907ba2','0','2','0'), ('46108','18','','10602','CPU load, avg 15m','nextcloud.serverinfo.cpu.avg.15m','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The average system load (the number of processes in the system run queue), last 15 minutes.','0','30d','0','','46085','','','','','200','1','0','','','0','0','0','0','0','0','0','06a34d8efcc043bbb027dbbddd37c8a2','0','2','0'), ('46109','18','','10602','CPU load, avg 5m','nextcloud.serverinfo.cpu.avg.5m','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The average system load (the number of processes in the system run queue), last 5 minutes.','0','30d','0','','46085','','','','','200','1','0','','','0','0','0','0','0','0','0','1a7ca7bf50f042f7b0f025604cbeb008','0','2','0'), ('46110','18','','10602','CPU load, avg 1m','nextcloud.serverinfo.cpu.avg.1m','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The average system load (the number of processes in the system run queue), last 1 minute.','0','30d','0','','46085','','','','','200','1','0','','','0','0','0','0','0','0','0','b018847264af4db3b3969e037734d669','0','2','0'), ('46111','18','','10602','Web server','nextcloud.serverinfo.apps.webserver','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Web server description.','0','30d','0','','46085','','','','','200','1','0','','','0','0','0','0','0','0','0','cc488c36ae0643a7bacb5173935ba608','0','2','0'), ('46112','18','','10602','Apps update available','nextcloud.serverinfo.apps.update','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of applications for which an update is available.','0','30d','0','','46085','','','','','200','1','0','','','0','0','0','0','0','0','0','d53e692d6c7d42fcb8a69e322f434da1','0','2','0'), ('46113','18','','10602','Apps installed','nextcloud.serverinfo.apps.installed','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of installed applications.','0','30d','0','','46085','','','','','200','1','0','','','0','0','0','0','0','0','0','cca878683ecb4de4b648fa100b579748','0','2','0'), ('46114','18','','10602','Active users, last 24 hours','nextcloud.serverinfo.active_users.last24hours','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active users in the last day.','0','30d','0','','46085','','','','','200','1','0','','','0','0','0','0','0','0','0','6a28646d56804f9fa4d060af26579881','0','2','0'), ('46115','18','','10602','Version','nextcloud.serverinfo.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Nextcloud service version.','0','30d','0','','46085','','','','','200','1','0','','','0','0','0','0','0','0','0','c4939cb87ff8495784e3937c4bc7e34d','0','2','0'), ('46118','18','','10602','User "{#NEXTCLOUD.USER}": Display name','nextcloud.user.displayname[{#NEXTCLOUD.USER}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'User visible name.','0','30d','0','','46117','','','','','200','1','0','','','0','0','0','0','0','0','0','eb16b38dd7e94aaa8ff103ffdec16858','0','2','0'), ('46119','18','','10602','User "{#NEXTCLOUD.USER}": Status','nextcloud.user.enabled[{#NEXTCLOUD.USER}]','0','31d','365d','0','3','','','','',NULL,'1129','','','0','','','','','2',NULL,'User account status.','0','30d','0','','46117','','','','','200','1','0','','','0','0','0','0','0','0','0','ed4fcf54655d49d3971d3ca1a63c6df2','0','2','0'), ('46120','18','','10602','User "{#NEXTCLOUD.USER}": Last login, days ago','nextcloud.user.inactive[{#NEXTCLOUD.USER}]','0','31d','365d','0','0','','!days ago','','',NULL,'1127','','','0','','','','','2',NULL,'The number of days since the user has last logged in.','0','30d','0','','46117','','','','','200','1','0','','','0','0','0','0','0','0','0','d69ff358ddfe4ef3b5cc2f4218495975','0','2','0'), ('46121','18','','10602','User "{#NEXTCLOUD.USER}": Language','nextcloud.user.language[{#NEXTCLOUD.USER}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'User language.','0','30d','0','','46117','','','','','200','1','0','','','0','0','0','0','0','0','0','ee0911775cb4404586aa38d95a4659a1','0','2','0'), ('46122','18','','10602','User "{#NEXTCLOUD.USER}": Last login','nextcloud.user.lastLogin[{#NEXTCLOUD.USER}]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'The time the user has last logged in.','0','30d','0','','46117','','','','','200','1','0','','','0','0','0','0','0','0','0','fbf8643740a748019950eddea3baa79d','0','2','0'), ('46123','18','','10602','User "{#NEXTCLOUD.USER}": Quota free space','nextcloud.user.quota.free[{#NEXTCLOUD.USER}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size of the free available space in the user''s storage.','0','30d','0','','46117','','','','','200','1','0','','','0','0','0','0','0','0','0','289504a5d93243ae8a8e1598c5568f25','0','2','0'), ('46124','18','','10602','User "{#NEXTCLOUD.USER}": Quota used space, in %','nextcloud.user.quota.pused[{#NEXTCLOUD.USER}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Usage of the allocated storage space, in percent.','0','30d','0','','46117','','','','','200','1','0','','','0','0','0','0','0','0','0','3764a92e1b8b40a29da63202d435f648','0','2','0'), ('46125','18','','10602','User "{#NEXTCLOUD.USER}": Quota total space','nextcloud.user.quota.total[{#NEXTCLOUD.USER}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size of space available in the user''s storage.','0','30d','0','','46117','','','','','200','1','0','','','0','0','0','0','0','0','0','1d939132880f43438fcf84c46540e1cb','0','2','0'), ('46126','18','','10602','User "{#NEXTCLOUD.USER}": Quota used space','nextcloud.user.quota.used[{#NEXTCLOUD.USER}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size of the used available space in the user storage.','0','30d','0','','46117','','','','','200','1','0','','','0','0','0','0','0','0','0','f0ff887fde504a1f86c0d6c8c4fb1285','0','2','0'), ('46127','18','','10602','User "{#NEXTCLOUD.USER}": Quota','nextcloud.user.quota[{#NEXTCLOUD.USER}]','0','31d','365d','0','0','','B','','',NULL,'1128','','','0','','','','','2',NULL,'The size of space available in the user''s storage.','0','30d','0','','46117','','','','','200','1','0','','','0','0','0','0','0','0','0','ac6ec7674e544151a4c5457d203d1e90','0','2','0'), ('46128','18','','10602','User "{#NEXTCLOUD.USER}": Storage location','nextcloud.user.storageLocation[{#NEXTCLOUD.USER}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The location of the user''s store.','0','30d','0','','46117','','','','','200','1','0','','','0','0','0','0','0','0','0','a1841e2a74dc4238842d1ec6643000ae','0','2','0'), ('46140','18','','10603','Device firmware info item errors','fgate.firmware.data_errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Item for gathering errors of the device firmware info.','0','30d','0','','46133','','','','','200','1','0','','','0','0','0','0','0','0','0','a6729f9b5da54e67951963a869fab31c','0','2','0'), ('46141','18','','10603','Device serial number','fgate.device.serialnumber','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The device serial number.','0','30d','0','','46134','','','','','200','1','0','','','0','0','0','0','0','0','0','80bafe55b05f416ebcdde86b58bda1f4','0','2','0'), ('46142','18','','10603','System uptime','fgate.uptime','0','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The system uptime is calculated on the basis of boot time.','0','30d','0','','46134','','','','','200','1','0','','','0','0','0','0','0','0','0','924a859579bd41a9b26dc83f92100577','0','2','0'), ('46143','18','','10603','CPU utilization','fgate.cpu.util','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'CPU utilization, expressed in %.','0','30d','0','','46137','','','','','200','1','0','','','0','0','0','0','0','0','0','4c83427d66764255be934ea7e2c6084a','0','2','0'), ('46144','18','','10603','Device system info item errors','fgate.system.data_errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Item for gathering errors of the device system info.','0','30d','0','','46134','','','','','200','1','0','','','0','0','0','0','0','0','0','8d8d4e7073db4ad497f4ca8dfffa043c','0','2','0'), ('46145','18','','10603','Device firmware version','fgate.device.firmware','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Current version of the device firmware.','0','30d','0','','46133','','','','','200','1','0','','','0','0','0','0','0','0','0','c29e3336f92f448587e7492c55db8e7c','0','2','0'), ('46146','18','','10603','Service licenses item errors','fgate.service.data_errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Item for gathering errors of the service licenses data.','0','30d','0','','46135','','','','','200','1','0','','','0','0','0','0','0','0','0','547c3bfa4a2d4b8e8ebfad01b200c4fd','0','2','0'), ('46147','18','','10603','Available firmware versions','fgate.device.firmwares_avail','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of available firmware versions to download.','0','30d','0','','46133','','','','','200','1','0','','','0','0','0','0','0','0','0','75084a08e92042e5869b57e34506849d','0','2','0'), ('46148','18','','10603','Get SD-WAN item errors','fgate.sdwan.data_errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Item for gathering errors of SD-WAN.','0','30d','0','','46136','','','','','200','1','0','','','0','0','0','0','0','0','0','1f2885ffb1524d909292aa9e5d1d8c89','0','2','0'), ('46149','18','','10603','Device model name','fgate.device.model','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The model name of the device.','0','30d','0','','46134','','','','','200','1','0','','','0','0','0','0','0','0','0','d42b5e392a6a468a84b009ff02f77b18','0','2','0'), ('46150','18','','10603','Device resources item errors','fgate.resources.data_errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Item for gathering errors of the device resources.','0','30d','0','','46137','','','','','200','1','0','','','0','0','0','0','0','0','0','1f612317d885472ea8b25ecb99a8debf','0','2','0'), ('46151','18','','10603','Device interfaces item errors','fgate.netif.data_errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Item for gathering errors of network interfaces.','0','30d','0','','46138','','','','','200','1','0','','','0','0','0','0','0','0','0','c1dbb528c4324b6daa59c4393c3fd178','0','2','0'), ('46152','18','','10603','Current VDOM','fgate.device.vdom','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Name of the current Virtual Domain.','0','30d','0','','46134','','','','','200','1','0','','','0','0','0','0','0','0','0','07d3dd60460340929288fd21211aa2e0','0','2','0'), ('46153','18','','10603','System name','fgate.name','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The system host name.','0','30d','0','','46134','','','','','200','1','0','','','0','0','0','0','0','0','0','562ec5b9dc7f49bb8ee404f05b1c54b7','0','2','0'), ('46154','18','','10603','Memory utilization','fgate.memory.util','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Memory utilization, expressed in %.','0','30d','0','','46137','','','','','200','1','0','','','0','0','0','0','0','0','0','51f4b31cc3d045a983843d9a8e534668','0','2','0'), ('46155','18','','10603','Total memory','fgate.memory.total','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total memory, expressed in bytes.','0','30d','0','','46135','','','','','200','1','0','','','0','0','0','0','0','0','0','529076e8494e40f7b823f981e7159fd0','0','2','0'), ('46156','18','','10603','Number of CPUs','fgate.cpu.num','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of processors according to the current license.','0','30d','0','','46135','','','','','200','1','0','','','0','0','0','0','0','0','0','3a54a2ef2ad94f0d8df190356ca0ac9b','0','2','0'), ('46157','18','','10603','Firewall data item errors','fgate.fwp.data_errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Item for gathering errors of firewall policies.','0','30d','0','','46139','','','','','200','1','0','','','0','0','0','0','0','0','0','26441b122d1148b6ba1045fcdfd092ad','0','2','0'), ('46158','18','','10603','Disk utilization','fgate.fs.util','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Disk utilization, expressed in %.','0','30d','0','','46137','','','','','200','1','0','','','0','0','0','0','0','0','0','847069b5ceaa417cbd84b1b0d5184771','0','2','0'), ('46159','18','','10603','Used disk space','fgate.fs.used','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The used space of the current disk, in bytes.','0','30d','0','','46137','','','','','200','1','0','','','0','0','0','0','0','0','0','6ddf5a6fc9cd4b7ca6522f8e86a7aac8','0','2','0'), ('46160','18','','10603','Total disk space','fgate.fs.total','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total space of the current disk, in bytes.','0','30d','0','','46137','','','','','200','1','0','','','0','0','0','0','0','0','0','3e595bf084f342ecaf94af97c2751c26','0','2','0'), ('46161','18','','10603','Free disk space','fgate.fs.free','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The free space of the current disk, in bytes.','0','30d','0','','46137','','','','','200','1','0','','','0','0','0','0','0','0','0','3d93f75ee3084a5487814c2175028229','0','2','0'), ('46162','18','','10603','API availability status','fgate.api.status','0','31d','365d','0','3','','','','',NULL,'1136','','','0','','','','','0',NULL,'Checking API availability by response.','0','30d','0','','46134','','','','','200','1','0','','','0','0','0','0','0','0','0','e74af8e347814085a7d01142c9aae447','0','2','0'), ('46163','18','','10603','Firewall policies discovery','fgate.fwp.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for FortiGate firewall policies.','0','7d','1','','46139','','','','','200','1','0','','','0','0','0','0','0','0','0','13ff598606764abbaec4d0b9f6cbbf33','0','2','0'), ('46164','18','','10603','Network interfaces discovery','fgate.netif.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for FortiGate network interfaces.','0','7d','1','','46138','','','','','200','1','0','','','0','0','0','0','0','0','0','b5d0c50d4ff8400a93618df5d2185ff7','0','2','0'), ('46165','18','','10603','SD-WAN health-checks discovery','fgate.sdwan_health.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for FortiGate SD-WAN health-checks.','0','7d','1','','46136','','','','','200','1','0','','','0','0','0','0','0','0','0','ededd6a88d74407c998f54a63bec5155','0','2','0'), ('46166','18','','10603','SD-WAN members discovery','fgate.sdwan_member.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for FortiGate SD-WAN members.','0','7d','1','','46136','','','','','200','1','0','','','0','0','0','0','0','0','0','eccf64d732d44183866aae9bbdb394ba','0','2','0'), ('46167','18','','10603','Service discovery','fgate.service.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for FortiGate services.','0','7d','1','','46135','','','','','200','1','0','','','0','0','0','0','0','0','0','5fe5e9dfee0448d7a6552c3c5ec9e72c','0','2','0'), ('46168','18','','10603','FW Policy [{#FWNAME}]: Get data','fgate.fwp.get_data[{#FWUUID}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Item for gathering data for the {#FWNAME} firewall policy.','0','30d','0','','46139','','','','','200','1','0','','','0','0','0','0','0','0','0','ee45ca237e074dd0a599ae1b29896329','0','2','0'), ('46169','18','','10603','Interface [{#IFNAME}({#IFALIAS})]: Get data','fgate.netif.get_data[{#IFKEY}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Item for gathering data for the {#IFKEY} interface.','0','30d','0','','46138','','','','','200','1','0','','','0','0','0','0','0','0','0','afb2dec9321a4eb1821b366c5219ce60','0','2','0'), ('46170','18','','10603','SD-WAN [{#NAME}]:[{#IFNAME}]: Get data','fgate.sdwan_health.get_data["{#HID}.{#MID}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Item for gathering data about the {#IFNAME} interface in the {#NAME} health-check.','0','30d','0','','46136','','','','','200','1','0','','','0','0','0','0','0','0','0','292228d1456f41b094b36edc2e22d24e','0','2','0'), ('46171','18','','10603','SD-WAN [{#ZONE}]:[{#NAME}]: Get data','fgate.sdwan_member.get_data[{#ID}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Item for gathering data about the {#NAME} interface in the {#ZONE} zone.','0','30d','0','','46136','','','','','200','1','0','','','0','0','0','0','0','0','0','376cf1ce322a4de5af3f86323f411b46','0','2','0'), ('46172','18','','10603','Service [{#NAME}]: Get data','fgate.service.get_data["{#KEY}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Item for gathering data about license for the {#NAME} service.','0','30d','0','','46135','','','','','200','1','0','','','0','0','0','0','0','0','0','84dd123ec16a4616bbf4d9a8c9ea9c8a','0','2','0'), ('46237','18','','10604','Network interface discovery','net.if.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for discovering interfaces from IF-MIB.','0','7d','1','','46234','','','','','200','1','0','','','0','0','0','0','0','0','0','c63cc3b7fc484074b7d9eb007dfde091','0','2','0'), ('46238','18','','10604','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system and at other times as indicated by the value of `ifCounterDiscontinuityTime`.','0','30d','0','','46234','','','','','200','1','0','','','0','0','0','0','0','0','0','d715da9ce25f4bdd8ea64ecdf207aba1','0','2','0'), ('46239','18','','10604','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces - the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces - the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system and at other times as indicated by the value of `ifCounterDiscontinuityTime`.','0','30d','0','','46234','','','','','200','1','0','','','0','0','0','0','0','0','0','c148dee3d41e4846bafe885bfe860daa','0','2','0'), ('46240','18','','10604','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of `ifInOctets`. Discontinuities in the value of this counter can occur at re-initialization of the management system and at other times as indicated by the value of `ifCounterDiscontinuityTime`.','0','30d','0','','46234','','','','','200','1','0','','','0','0','0','0','0','0','0','72f4527a4fae4d7493ac66d1c6436cb3','0','2','0'), ('46241','18','','10604','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system and at other times as indicated by the value of `ifCounterDiscontinuityTime`.','0','30d','0','','46234','','','','','200','1','0','','','0','0','0','0','0','0','0','82e47cf784a24dd791fd81bc61e1cd6d','0','2','0'), ('46242','18','','10604','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces - the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces - the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system and at other times as indicated by the value of `ifCounterDiscontinuityTime`.','0','30d','0','','46234','','','','','200','1','0','','','0','0','0','0','0','0','0','fede8c009c8a4623b2f4acf36947c705','0','2','0'), ('46243','18','','10604','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of `ifOutOctets`. Discontinuities in the value of this counter can occur at re-initialization of the management system and at other times as indicated by the value of `ifCounterDiscontinuityTime`.','0','30d','0','','46234','','','','','200','1','0','','','0','0','0','0','0','0','0','a1275c0bc1574941ac7306862034f3e3','0','2','0'), ('46244','18','','10604','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','46234','','','','','200','1','0','','','0','0','0','0','0','0','0','f52cc248bbcf4fb791ff37ab23393a35','0','2','0'), ('46245','18','','10604','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1138','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The `testing(3)` state indicates that no operational packets can be passed. - If `ifAdminStatus` is `down(2)`, then `ifOperStatus` should be `down(2)`. - If `ifAdminStatus` is changed to `up(1)`, then `ifOperStatus` should change to `up(1)` if the interface is ready to transmit and receive network traffic. - It should change to `dormant(5)` if the interface is waiting for external actions (such as a serial line waiting for an incoming connection). - It should remain in the `down(2)` state if and only if there is a fault that prevents it from going to the `up(1)` state. - It should remain in the `notPresent(6)` state if the interface has missing (typically, hardware) components.','0','30d','0','','46234','','','','','200','1','0','','','0','0','0','0','0','0','0','8465546bcabd464eae60b7b376d864be','0','2','0'), ('46246','18','','10604','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1139','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for `ifType` are assigned by the Internet Assigned Numbers Authority (IANA) through updating the syntax of the IANAifType textual convention.','0','30d','0','','46234','','','','','200','1','0','','','0','0','0','0','0','0','0','cbe77e1fcd504385bb96a7d4094189f5','0','2','0'), ('46247','18','','10548','SAML SSO Settings','meraki.get.saml','0','31d','365d','0','3','','','','',NULL,'1142','','','0','','','','','0',NULL,'Return the enabled SAML SSO settings for the organization.','0','30d','0','','44298','','','','','200','1','0','','','0','0','0','0','0','0','0','b33608b4c24d4c7bbf1f76f639890715','0','2','0'), ('46263','18','','10548','License discovery','meraki.license.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','','46249','','','','','200','1','0','','','0','0','0','0','0','0','0','961ecce14f274858a6d632ec906c849f','0','2','0'), ('46264','18','','10548','Networks discovery','meraki.networks.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','','44299','','','','','200','1','0','','','0','0','0','0','0','0','0','c885b8978f284ab98007860de6cadb84','0','2','0'), ('46266','18','','10548','VPN statuses discovery','meraki.vpn.statuses.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','0','','44300','','','','','200','1','0','','','0','0','0','0','0','0','0','01fd5c5650524c46acb8950c5e934e68','0','2','0'), ('46268','18','','10548','License [{#LICENSE.ID}]: get data','meraki.license.get[{#LICENSE.ID}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Raw data for a license.','0','30d','0','','46249','','','','','200','1','0','','','0','0','0','0','0','0','0','544eb99d23134448afd1ea4ff267ef13','0','2','0'), ('46269','18','','10548','Network [{#NETWORK.NAME}]: Time zone','meraki.network.timezone[{#NETWORK.ID}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Timezone of the network.','0','30d','0','','44299','','','','','200','1','0','','','0','0','0','0','0','0','0','fca3d0675bdb42158c20db24a8d2d4ee','0','2','0'), ('46271','18','','10548','Uplink [{#INTERFACE}]: [{#UPLINK.ROLE}]: [{#NETWORK.NAME}]: Interface','meraki.uplink.interface[{#NETWORK.NAME}, {#INTERFACE}, {#UPLINK.ROLE}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Network uplink interface.','0','30d','0','','44299','','','','','200','1','0','','','0','0','0','0','0','0','0','783a083a49e64c2db1d37e44d28f263b','0','2','0'), ('46272','18','','10548','Uplink [{#INTERFACE}]: [{#UPLINK.ROLE}]: [{#NETWORK.NAME}]: Public IP','meraki.uplink.public.ip[{#NETWORK.NAME}, {#INTERFACE}, {#UPLINK.ROLE}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Network uplink public IP.','0','30d','0','','44299','','','','','200','1','0','','','0','0','0','0','0','0','0','a4026ab15ff34c43a23605b27146376d','0','2','0'), ('46273','18','','10548','VPN [{#NETWORK.NAME}]: statuses raw','meraki.vpn.statuses.raw[{#NETWORK.ID}, {#NETWORK.NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'VPN statuses raw.','0','30d','0','','44300','','','','','200','1','0','','','0','0','0','0','0','0','0','0858c3efa5ea404ca94e05ca43671f05','0','2','0'), ('46295','18','','10510','OpenShift Build discovery','openshift.build.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','0','1','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','428c4419ac8b4c91995a2aa7332b1943','0','2','0'), ('46296','18','','10510','OpenShift BuildConfig discovery','openshift.buildconfig.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','0','1','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','974679d1b2bc4d7294baeca07bd19e07','0','2','0'), ('46297','18','','10510','OpenShift ClusterResourceQuota discovery','openshift.cluster.resource.quota.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','0','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','d7e21c75073548078e06159ff94680c9','0','2','0'), ('46298','18','','10510','OpenShift Route discovery','openshift.route.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','0','1','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','140a80726c60443ca5bb87b758924f7f','0','2','0'), ('46299','18','','10510','Namespace [{#NAMESPACE}] Build [{#NAME}]: Created','openshift.build.created.time[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'OpenShift Build Unix creation timestamp.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','4d1013542dcb45b3ae59fd276b0df3e0','0','2','0'), ('46300','18','','10510','Namespace [{#NAMESPACE}] Build [{#NAME}]: Generation','openshift.build.sequence.number[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Sequence number representing a specific generation of the desired state.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','97ebce9edb774e25943ed22416caaa0b','0','2','0'), ('46301','18','','10510','Namespace [{#NAMESPACE}] Build [{#NAME}]: Status phase','openshift.build.status_phase[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','3','','','','',NULL,'1144','','','0','','','','','2',NULL,'The Build phase.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','9a8bdd353a5a499c8c66468c1325ae16','0','2','0'), ('46302','18','','10510','Namespace [{#NAMESPACE}] BuildConfig [{#NAME}]: Created','openshift.buildconfig.created.time[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'OpenShift BuildConfig Unix creation timestamp.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','09d0c8ed4d604d898f212419ccdf8324','0','2','0'), ('46303','18','','10510','Namespace [{#NAMESPACE}] BuildConfig [{#NAME}]: Generation','openshift.buildconfig.generation[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Sequence number representing a specific generation of the desired state.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','2e90ec2497eb4eb3bf41b68282f07e6d','0','2','0'), ('46304','18','','10510','Namespace [{#NAMESPACE}] BuildConfig [{#NAME}]: Latest version','openshift.buildconfig.status[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The latest version of BuildConfig.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','e97bf96c39d1407cbc42013bcd3a5095','0','2','0'), ('46305','18','','10510','Quota [{#NAME}] Resource [{#RESOURCE}]: Type [{#TYPE}]]','openshift.cluster.resource.quota[{#RESOURCE}/{#NAME}/{#TYPE}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Usage about resource quota.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','0b3826bad61c407ab4b9e103f0a3ae18','0','2','0'), ('46306','18','','10510','Namespace [{#NAMESPACE}] Route [{#NAME}]: Created','openshift.route.created.time[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'OpenShift Route Unix creation timestamp.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','a59550207a484b918193d4a57b08d97e','0','2','0'), ('46307','18','','10510','Namespace [{#NAMESPACE}] Route [{#NAME}]: Status','openshift.route.status[{#NAMESPACE}/{#NAME}]','0','31d','365d','0','3','','','','',NULL,'951','','','0','','','','','2',NULL,'Information about route status.','0','30d','0','','40014','','','','','200','1','0','','','0','0','0','0','0','0','0','d55f9134b0fa4f3ea0eea93a682ab4f9','0','2','0'), ('46311','18','','10262','Proxy memory buffer, % used','proxy_buffer.buffer.pused','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix proxy memory buffer usage statistics. Percentage of used proxy memory buffer. Proxy memory buffer is used to store the new historical data and upload from it without accessing database.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','0e27243e5c844357a57a1c32869863a4','0','2','0'), ('46312','18','','10262','Proxy buffer, state changes','proxy_buffer.state.changes','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of state changes between disk/memory buffer modes since proxy start.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','4bfed9e5c4b449c490a26ea67f1106cd','0','2','0'), ('46313','18','','10262','Proxy buffer, state','proxy_buffer.state.current','0','31d','365d','0','3','','','','',NULL,'1146','','','0','','','','','0',NULL,'The current working state of proxy buffer where the new data is being stored. Possible values: 0 - disk (also returned when memory buffer is disabled); 1 - memory.','0','30d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','ddca62888fab477a84b215812c7bf57d','0','2','0'), ('46316','18','','10261','Number of values synchronized with the database per second','vps.written','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'Average quantity of values written to the database, recalculated once per minute.','0','30d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','850743f411d9458cbf5d6de410d15edc','0','2','0'), ('46317','18','','10335','''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace usage from MAX, percent','oracle.tbs_used_from_max_pct["{#CON_ID}","{#TABLESPACE}"]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Used bytes/max bytes*100.','0','30d','0','','44590','','','','','200','1','0','','','0','0','0','0','0','0','0','93f6abb8363e4ee2ad2801090cf006b0','0','2','0'), ('46318','18','','10328','''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace usage from MAX, percent','oracle.tbs_used_from_max_pct["{#CON_ID}","{#TABLESPACE}"]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Used bytes/max bytes*100.','0','30d','0','','44613','','','','','200','1','0','','','0','0','0','0','0','0','0','94ecf43024cd41cf891df319cc615b50','0','2','0'), ('46320','18','','10605','Get data check','hpe.ilo.get_data.check','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The data collection check.','0','30d','0','','46319','','','','','200','1','0','','','0','0','0','0','0','0','0','7378f10ce1314462ba2f9d80562f5430','0','2','0'), ('46321','18','','10605','HPE iLO: Computer systems discovery','hpe.ilo.computer_systems.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers computer systems.','0','7d','1','','46319','','','','','200','1','0','','','0','0','0','0','0','0','0','cffc30494f1140eb88e67c38cca64243','0','2','0'), ('46322','18','','10605','HPE iLO: Controllers discovery','hpe.ilo.controllers.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers storage controllers.','0','7d','1','','46319','','','','','200','1','0','','','0','0','0','0','0','0','0','bcb9da9c36e94c6f9fe7fbc4ddd96a9e','0','2','0'), ('46323','18','','10605','HPE iLO: Drives discovery','hpe.ilo.drives.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers storage drives.','0','7d','1','','46319','','','','','200','1','0','','','0','0','0','0','0','0','0','c750bdc5aa05415d9556a0182f2b5c65','0','2','0'), ('46324','18','','10605','HPE iLO: Fans discovery','hpe.ilo.fans.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers chassis fans.','0','7d','1','','46319','','','','','200','1','0','','','0','0','0','0','0','0','0','98061dca5146498ea5f663b229cb7ba9','0','2','0'), ('46325','18','','10605','HPE iLO: Managers discovery','hpe.ilo.managers.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers managers.','0','7d','0','','46319','','','','','200','1','0','','','0','0','0','0','0','0','0','da0b4a3eea8f45e384e565e40f017abc','0','2','0'), ('46326','18','','10605','HPE iLO: PSU discovery','hpe.ilo.psu.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers chassis power supply units (PSU).','0','7d','1','','46319','','','','','200','1','0','','','0','0','0','0','0','0','0','853ddc0701b545fd807c7a688cd16f18','0','2','0'), ('46327','18','','10605','HPE iLO: Temperature sensors discovery','hpe.ilo.sensors.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers chassis temperature sensors.','0','7d','1','','46319','','','','','200','1','0','','','0','0','0','0','0','0','0','c984c9668b7b46b19240f7593acf1088','0','2','0'), ('46328','18','','10605','HPE iLO: Storages discovery','hpe.ilo.storages.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers computer system storages.','0','7d','1','','46319','','','','','200','1','0','','','0','0','0','0','0','0','0','d4942c1c86f543fd9270e2b3ea867ab9','0','2','0'), ('46329','18','','10605','HPE iLO: Volumes discovery','hpe.ilo.volumes.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers storage volumes.','0','7d','1','','46319','','','','','200','1','0','','','0','0','0','0','0','0','0','5ca4da09031148b694152f042ddf890c','0','2','0'), ('46330','18','','10605','Computer system [{#SYSTEM_HOSTNAME}]: Get data','hpe.ilo.computer_system.get_data[{#SYSTEM_ID}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get data about the computer system.','0','30d','0','','46319','','','','','200','1','0','','','0','0','0','0','0','0','0','4c05d540ca87440bbf251bdf61d31a5d','0','2','0'), ('46331','18','','10605','Computer system [{#SYSTEM_HOSTNAME}]: Storage [{#STORAGE_ID}]: Controller [{#CONTROLLER_ID}]: Get data','hpe.ilo.controller.get_data[{#SYSTEM_ID}, {#STORAGE_ID}, {#CONTROLLER_ID}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get data about the controller.','0','30d','0','','46319','','','','','200','1','0','','','0','0','0','0','0','0','0','aa246b9ca7454479b9396851f4be67aa','0','2','0'), ('46332','18','','10605','Computer system [{#SYSTEM_HOSTNAME}]: Storage [{#STORAGE_ID}]: Drive [{#DRIVE_ID}]: Get data','hpe.ilo.drive.get_data[{#SYSTEM_ID}, {#STORAGE_ID}, {#DRIVE_ID}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get data about the drive.','0','30d','0','','46319','','','','','200','1','0','','','0','0','0','0','0','0','0','408d4190763c476599dbb8793ee09a65','0','2','0'), ('46333','18','','10605','Chassis [{#CHASSIS_ID}]: Fan [{#FAN_NAME}]: Get data','hpe.ilo.fan.get_data[{#CHASSIS_ID}, {#FAN_ID}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get data about the fan.','0','30d','0','','46319','','','','','200','1','0','','','0','0','0','0','0','0','0','bd8bceea000a4677b982b56a119ece7e','0','2','0'), ('46334','18','','10605','Manager [{#MANAGER_ID}]: Get data','hpe.ilo.manager.get_data[{#MANAGER_ID}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get data about the manager.','0','30d','0','','46319','','','','','200','1','0','','','0','0','0','0','0','0','0','1ae004d3b9804fbe9d62325999e9cabd','0','2','0'), ('46335','18','','10605','Chassis [{#CHASSIS_ID}]: PSU [{#PSU_ID}]: Get data','hpe.ilo.psu.get_data[{#CHASSIS_ID}, {#PSU_ID}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get data about the PSU.','0','30d','0','','46319','','','','','200','1','0','','','0','0','0','0','0','0','0','adb24bee15a341ffbe51047c0798a906','0','2','0'), ('46336','18','','10605','Chassis [{#CHASSIS_ID}]: Sensor [{#SENSOR_NAME}]: Get data','hpe.ilo.sensor.get_data[{#CHASSIS_ID}, {#SENSOR_ID}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get data about the sensor.','0','30d','0','','46319','','','','','200','1','0','','','0','0','0','0','0','0','0','0067035f746a4317988d70844e71dd7a','0','2','0'), ('46337','18','','10605','Computer system [{#SYSTEM_HOSTNAME}]: Storage [{#STORAGE_ID}]: Get data','hpe.ilo.storage.get_data[{#SYSTEM_ID}, {#STORAGE_ID}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get data about the storage.','0','30d','0','','46319','','','','','200','1','0','','','0','0','0','0','0','0','0','51a5467f6d5948da803123a360ca2973','0','2','0'), ('46338','18','','10605','Computer system [{#SYSTEM_HOSTNAME}]: Storage [{#STORAGE_ID}]: Volume [{#VOLUME_ID}]: Get data','hpe.ilo.volume.get_data[{#SYSTEM_ID}, {#STORAGE_ID}, {#VOLUME_ID}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get data about the volume.','0','30d','0','','46319','','','','','200','1','0','','','0','0','0','0','0','0','0','709f9a2cf82445988bced0b404524e05','0','2','0'), ('46373','18','','10530','Request Metrics discovery','aws.s3.configuration.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of request metrics.','0','7d','1','','43684','','','','','200','1','0','','','0','0','0','0','0','0','0','9ff609d143ae4552b395668718c43191','0','2','0'), ('46375','18','','10530','Filter [{#AWS.S3.FILTER.ID.NAME}]: Requests: Errors, 4xx','aws.s3.4xx_errors["{#AWS.S3.FILTER.ID.NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of HTTP 4xx client error status code requests made to an Amazon S3 bucket with a value of either 0 or 1. The average statistic shows the error rate, and the sum statistic shows the count of that type of error, during each period. Statistic: Average (reports per request).','0','30d','0','','46374','','','','','200','1','0','','','0','0','0','0','0','0','0','7c746594159f4f1c94e8790ed1bdf2af','0','2','0'), ('46376','18','','10530','Filter [{#AWS.S3.FILTER.ID.NAME}]: Requests: Errors, 5xx','aws.s3.5xx_errors["{#AWS.S3.FILTER.ID.NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of HTTP 5xx server error status code requests made to an Amazon S3 bucket with a value of either 0 or 1. The average statistic shows the error rate, and the sum statistic shows the count of that type of error, during each period. Statistic: Average (reports per request).','0','30d','0','','46374','','','','','200','1','0','','','0','0','0','0','0','0','0','806de74ed57b4797b294ebe8fa509429','0','2','0'), ('46377','18','','10530','Filter [{#AWS.S3.FILTER.ID.NAME}]: Requests: All','aws.s3.all_requests["{#AWS.S3.FILTER.ID.NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of HTTP requests made to an Amazon S3 bucket, regardless of type. If you''re using a metrics configuration with a filter, then this metric only returns the HTTP requests that meet the filter''s requirements.','0','30d','0','','46374','','','','','200','1','0','','','0','0','0','0','0','0','0','7530d7ebe61942f4abc29a8ccb3b5516','0','2','0'), ('46378','18','','10530','Filter [{#AWS.S3.FILTER.ID.NAME}]: Requests: Bytes downloaded','aws.s3.bytes_downloaded["{#AWS.S3.FILTER.ID.NAME}"]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of bytes downloaded for requests made to an Amazon S3 bucket, where the response includes a body. Statistic: Average (bytes per request).','0','30d','0','','46374','','','','','200','1','0','','','0','0','0','0','0','0','0','8758c16faef9477d8e3ff41426c2761b','0','2','0'), ('46379','18','','10530','Filter [{#AWS.S3.FILTER.ID.NAME}]: Replication: Bytes pending','aws.s3.bytes_pending_replication["{#AWS.S3.FILTER.ID.NAME}"]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of bytes of objects pending replication for a given replication rule.','0','30d','0','','46374','','','','','200','1','0','','','0','0','0','0','0','0','0','3f5141a7448b43d288a37dfe41a52288','0','2','0'), ('46380','18','','10530','Filter [{#AWS.S3.FILTER.ID.NAME}]: Requests: Bytes uploaded','aws.s3.bytes_uploaded["{#AWS.S3.FILTER.ID.NAME}"]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of bytes uploaded that contain a request body, made to an Amazon S3 bucket. Statistic: Average (bytes per request).','0','30d','0','','46374','','','','','200','1','0','','','0','0','0','0','0','0','0','99eefab6b9be405ead0e6ea57394a7e3','0','2','0'), ('46381','18','','10530','Filter [{#AWS.S3.FILTER.ID.NAME}]: Requests: Delete','aws.s3.delete_requests["{#AWS.S3.FILTER.ID.NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of HTTP DELETE requests made for objects in an Amazon S3 bucket. This also includes Delete Multiple Objects requests. This metric shows the number of requests, not the number of objects deleted.','0','30d','0','','46374','','','','','200','1','0','','','0','0','0','0','0','0','0','d9deb58254be4add996d3dec97344132','0','2','0'), ('46382','18','','10530','Filter [{#AWS.S3.FILTER.ID.NAME}]: First byte latency, avg','aws.s3.first_byte_latency.avg["{#AWS.S3.FILTER.ID.NAME}"]','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The per-request time from the complete request being received by an Amazon S3 bucket to when the response starts to be returned. Statistic: Average.','0','30d','0','','46374','','','','','200','1','0','','','0','0','0','0','0','0','0','d8c8e91f383747e5b6e73f922f5b3278','0','2','0'), ('46383','18','','10530','Filter [{#AWS.S3.FILTER.ID.NAME}]: First byte latency, p90','aws.s3.first_byte_latency.p90["{#AWS.S3.FILTER.ID.NAME}"]','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The per-request time from the complete request being received by an Amazon S3 bucket to when the response starts to be returned. Statistic: 90th percentile.','0','30d','0','','46374','','','','','200','1','0','','','0','0','0','0','0','0','0','55cb2316171e43a0aa94e0d203832577','0','2','0'), ('46384','18','','10530','Filter [{#AWS.S3.FILTER.ID.NAME}]: Requests: Get','aws.s3.get_requests["{#AWS.S3.FILTER.ID.NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of HTTP GET requests made for objects in an Amazon S3 bucket. This doesn''t include list operations. Paginated list-oriented requests, like List Multipart Uploads, List Parts, Get Bucket Object versions, and others, are not included in this metric.','0','30d','0','','46374','','','','','200','1','0','','','0','0','0','0','0','0','0','f2cff8aa3c3c4a308296550561b02829','0','2','0'), ('46385','18','','10530','Filter [{#AWS.S3.FILTER.ID.NAME}]: Requests: Head','aws.s3.head_requests["{#AWS.S3.FILTER.ID.NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of HTTP HEAD requests made to an Amazon S3 bucket.','0','30d','0','','46374','','','','','200','1','0','','','0','0','0','0','0','0','0','0d9f59f099cb47c8991cc2e353154dc7','0','2','0'), ('46386','18','','10530','Filter [{#AWS.S3.FILTER.ID.NAME}]: Requests: List','aws.s3.list_requests["{#AWS.S3.FILTER.ID.NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of HTTP requests that list the contents of a bucket.','0','30d','0','','46374','','','','','200','1','0','','','0','0','0','0','0','0','0','f9b09dbbf0a44ea9b34a86853a6ebfd0','0','2','0'), ('46387','18','','10530','Filter [{#AWS.S3.FILTER.ID.NAME}]: Replication: Operations pending','aws.s3.operations_pending_replication["{#AWS.S3.FILTER.ID.NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of operations pending replication for a given replication rule.','0','30d','0','','46374','','','','','200','1','0','','','0','0','0','0','0','0','0','ad753554ca7e45629e7eb144a3595228','0','2','0'), ('46388','18','','10530','Filter [{#AWS.S3.FILTER.ID.NAME}]: Requests: Post','aws.s3.post_requests["{#AWS.S3.FILTER.ID.NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of HTTP POST requests made to an Amazon S3 bucket. Delete Multiple Objects and SELECT Object Content requests are not included in this metric.','0','30d','0','','46374','','','','','200','1','0','','','0','0','0','0','0','0','0','9bb4416c7c454e5486a7ce4e4b4b90f0','0','2','0'), ('46389','18','','10530','Filter [{#AWS.S3.FILTER.ID.NAME}]: Requests: Put','aws.s3.put_requests["{#AWS.S3.FILTER.ID.NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of HTTP PUT requests made for objects in an Amazon S3 bucket.','0','30d','0','','46374','','','','','200','1','0','','','0','0','0','0','0','0','0','88a67025c835410eb54d74be96cf5b4c','0','2','0'), ('46390','18','','10530','Filter [{#AWS.S3.FILTER.ID.NAME}]: Replication: Latency','aws.s3.replication_latency["{#AWS.S3.FILTER.ID.NAME}"]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The maximum number of seconds by which the replication destination region is behind the source Region for a given replication rule.','0','30d','0','','46374','','','','','200','1','0','','','0','0','0','0','0','0','0','ac0f6d6f6f2247379d99fa2f4f0ecc11','0','2','0'), ('46391','18','','10530','Filter [{#AWS.S3.FILTER.ID.NAME}]: Requests: Select, bytes returned','aws.s3.select_bytes_returned["{#AWS.S3.FILTER.ID.NAME}"]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of bytes of data returned with Amazon S3 SELECT Object Content requests in an Amazon S3 bucket. Statistic: Average (bytes per request).','0','30d','0','','46374','','','','','200','1','0','','','0','0','0','0','0','0','0','23c13e717a2845399068e7c2e627df4f','0','2','0'), ('46392','18','','10530','Filter [{#AWS.S3.FILTER.ID.NAME}]: Requests: Select, bytes scanned','aws.s3.select_bytes_scanned["{#AWS.S3.FILTER.ID.NAME}"]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of bytes of data scanned with Amazon S3 SELECT Object Content requests in an Amazon S3 bucket. Statistic: Average (bytes per request).','0','30d','0','','46374','','','','','200','1','0','','','0','0','0','0','0','0','0','042e84dc68c54390a3d0427b87d89e47','0','2','0'), ('46393','18','','10530','Filter [{#AWS.S3.FILTER.ID.NAME}]: Requests: Select','aws.s3.select_requests["{#AWS.S3.FILTER.ID.NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of Amazon S3 SELECT Object Content requests made for objects in an Amazon S3 bucket.','0','30d','0','','46374','','','','','200','1','0','','','0','0','0','0','0','0','0','616ec102597447cdbe2f21186937dcfe','0','2','0'), ('46394','18','','10530','Filter [{#AWS.S3.FILTER.ID.NAME}]: Total request latency, avg','aws.s3.total_request_latency.avg["{#AWS.S3.FILTER.ID.NAME}"]','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The elapsed per-request time from the first byte received to the last byte sent to an Amazon S3 bucket. This includes the time taken to receive the request body and send the response body, which is not included in FirstByteLatency. Statistic: Average.','0','30d','0','','46374','','','','','200','1','0','','','0','0','0','0','0','0','0','effa8475024843249ad213d726323e72','0','2','0'), ('46395','18','','10530','Filter [{#AWS.S3.FILTER.ID.NAME}]: Total request latency, p90','aws.s3.total_request_latency.p90["{#AWS.S3.FILTER.ID.NAME}"]','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The elapsed per-request time from the first byte received to the last byte sent to an Amazon S3 bucket. This includes the time taken to receive the request body and send the response body, which is not included in FirstByteLatency. Statistic: 90th percentile.','0','30d','0','','46374','','','','','200','1','0','','','0','0','0','0','0','0','0','886b748066834f01aa2f6f9327fceba0','0','2','0'), ('46398','18','','10606','Azure daily costs by services discovery','azure.daily.services.costs.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of daily costs by services.','0','7d','1','','46396','','','','','200','1','0','','','0','0','0','0','0','0','0','1220188c7a1c4df8b75e9021c4515149','0','2','0'), ('46399','18','','10606','Azure monthly costs discovery','azure.monthly.costs.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of monthly costs.','0','7d','0','','46397','','','','','200','1','0','','','0','0','0','0','0','0','0','9c65b60a8e1840dd81367aefe6b0de18','0','2','0'), ('46400','18','','10606','Azure monthly costs by location discovery','azure.monthly.location.costs.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of monthly costs by location.','0','7d','1','','46397','','','','','200','1','0','','','0','0','0','0','0','0','0','e9a4bf192feb4472aedd40ba2371d286','0','2','0'), ('46401','18','','10606','Azure monthly costs by resource group discovery','azure.monthly.resource.group.costs.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of monthly costs by resource group.','0','7d','1','','46397','','','','','200','1','0','','','0','0','0','0','0','0','0','4dfa3b60721e463d97f2f820106f816d','0','2','0'), ('46402','18','','10606','Azure monthly costs by services discovery','azure.monthly.services.costs.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of monthly costs by services.','0','7d','1','','46397','','','','','200','1','0','','','0','0','0','0','0','0','0','b9b024a7e42540f0b8387af77367b15c','0','2','0'), ('46403','18','','10606','Service ["{#AZURE.SERVICE.NAME}"]: Meter ["{#AZURE.BILLING.METER}"]: Subcategory ["{#AZURE.BILLING.METER.SUBCATEGORY}"] daily cost','azure.daily.cost["{#AZURE.SERVICE.NAME}", "{#AZURE.BILLING.METER}", "{#AZURE.BILLING.METER.SUBCATEGORY}","{#AZURE.RESOURCE.GROUP}"]','0','31d','365d','0','0','','!{#AZURE.BILLING.UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'The daily cost by service {#AZURE.SERVICE.NAME}, meter {#AZURE.BILLING.METER}, subcategory {#AZURE.BILLING.METER.SUBCATEGORY}.','0','30d','0','','46396','','','','','200','1','0','','','0','0','0','0','0','0','0','848ccd4cec2c4902990aa25f90f502a8','0','2','0'), ('46404','18','','10606','Month ["{#AZURE.BILLING.MONTH}"] cost','azure.monthly.cost["{#AZURE.BILLING.MONTH}"]','0','31d','365d','0','0','','!{#AZURE.BILLING.UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'The monthly cost.','0','30d','0','','46397','','','','','200','1','0','','','0','0','0','0','0','0','0','f91a60d2c1124eb6b297539b0a115c66','0','2','0'), ('46405','18','','10606','Location: ["{#AZURE.RESOURCE.LOCATION}"]: Month ["{#AZURE.BILLING.MONTH}"] cost','azure.monthly.location.cost["{#AZURE.RESOURCE.LOCATION}", "{#AZURE.BILLING.MONTH}"]','0','31d','365d','0','0','','!{#AZURE.BILLING.UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'The monthly cost by location {#AZURE.RESOURCE.LOCATION}.','0','30d','0','','46397','','','','','200','1','0','','','0','0','0','0','0','0','0','7fb097f81a8445acaa6b17bdc4daaaa6','0','2','0'), ('46406','18','','10606','Resource group: ["{#AZURE.RESOURCE.GROUP}"]: Month ["{#AZURE.BILLING.MONTH}"] cost','azure.monthly.resource.group.cost["{#AZURE.RESOURCE.GROUP}", "{#AZURE.BILLING.MONTH}"]','0','31d','365d','0','0','','!{#AZURE.BILLING.UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'The monthly cost by resource group {#AZURE.RESOURCE.GROUP}.','0','30d','0','','46397','','','','','200','1','0','','','0','0','0','0','0','0','0','9a5ed573ac374c08abf81f2b7296f260','0','2','0'), ('46407','18','','10606','Service ["{#AZURE.SERVICE.NAME}"]: Month ["{#AZURE.BILLING.MONTH}"] cost','azure.monthly.service.cost["{#AZURE.SERVICE.NAME}", "{#AZURE.BILLING.MONTH}"]','0','31d','365d','0','0','','!{#AZURE.BILLING.UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'The monthly cost by service {#AZURE.SERVICE.NAME}.','0','30d','0','','46397','','','','','200','1','0','','','0','0','0','0','0','0','0','dbad6436c70e41268e3b59c2a7f0e2a2','0','2','0'), ('46416','18','','10327','Availability group discovery','mssql.availability.group.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of the existing availability groups.','0','7d','0','','46408','','','','','200','1','0','','','0','0','0','0','0','0','0','6261715081794a49938d848c677da657','0','2','0'), ('46417','18','','10327','Local database discovery','mssql.local.db.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of the local availability databases.','0','7d','0','','46411','','','','','200','1','0','','','0','0','0','0','0','0','0','af25f87b29c24c05a57a82f7b1347ad4','0','2','0'), ('46418','18','','10327','Mirroring discovery','mssql.mirroring.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'To see the row for a database other than master or tempdb, you must either be the database owner or have at least ALTER ANY DATABASE or VIEW ANY DATABASE server-level permission or CREATE DATABASE permission in the master database. To see non-NULL values on a mirror database, you must be a member of the sysadmin fixed server role.','0','7d','0','','46410','','','','','200','1','0','','','0','0','0','0','0','0','0','d247eb5485f145ff9487424371a802b7','0','2','0'), ('46419','18','','10327','Non-local database discovery','mssql.non.local.db.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of the non-local (not local to SQL Server instance) availability databases.','0','7d','0','','46412','','','','','200','1','0','','','0','0','0','0','0','0','0','dcf4eae19c7043fc85f7ec414502ef84','0','2','0'), ('46420','18','','10327','Quorum discovery','mssql.quorum.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of the quorum of the WSFC cluster.','0','7d','1','','46413','','','','','200','1','0','','','0','0','0','0','0','0','0','baed17bf5a4846439e720388c9ae7c17','0','2','0'), ('46421','18','','10327','Quorum members discovery','mssql.quorum.member.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of the quorum members of the WSFC cluster.','0','7d','1','','46414','','','','','200','1','0','','','0','0','0','0','0','0','0','1ea73914e10e407abe3b4e715f6759b4','0','2','0'), ('46422','18','','10327','Replication discovery','mssql.replica.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of the database replicas.','0','7d','0','','46415','','','','','200','1','0','','','0','0','0','0','0','0','0','024656ffe254416781cb4ad52ae456ea','0','2','0'), ('46423','18','','10327','MSSQL AG ''{#GROUP_NAME}'': Primary replica recovery health','mssql.primary_recovery_health["{#GROUP_NAME}"]','0','31d','365d','0','3','','','','',NULL,'158','','','0','','','','','2',NULL,'Indicates the recovery health of the primary replica: 0 = In progress 1 = Online 2 = Unavailable','0','30d','0','','46408','','','','','200','1','0','','','0','0','0','0','0','0','0','381c88cf5b0c47319b036e79265b0a20','0','2','0'), ('46424','18','','10327','MSSQL AG ''{#GROUP_NAME}'': Primary replica name','mssql.primary_replica["{#GROUP_NAME}"]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Name of the server instance that is hosting the current primary replica.','0','30d','0','','46408','','','','','200','1','0','','','0','0','0','0','0','0','0','df51dcd0ef864705bc542e1233c1135b','0','2','0'), ('46425','18','','10327','MSSQL AG ''{#GROUP_NAME}'': Secondary replica recovery health','mssql.secondary_recovery_health["{#GROUP_NAME}"]','0','31d','365d','0','3','','','','',NULL,'158','','','0','','','','','2',NULL,'Indicates the recovery health of a secondary replica: 0 = In progress 1 = Online 2 = Unavailable','0','30d','0','','46408','','','','','200','1','0','','','0','0','0','0','0','0','0','d2e76a734bd84484b6bd59b33c921f34','0','2','0'), ('46426','18','','10327','MSSQL AG ''{#GROUP_NAME}'': Synchronization health','mssql.synchronization_health["{#GROUP_NAME}"]','0','31d','365d','0','3','','','','',NULL,'160','','','0','','','','','2',NULL,'Reflects a rollup of the `synchronization_health` of all availability replicas in the availability group: 0 = Not healthy. None of the availability replicas have a healthy synchronization. 1 = Partially healthy. The synchronization of some, but not all, availability replicas is healthy. 2 = Healthy. The synchronization of every availability replica is healthy.','0','30d','0','','46408','','','','','200','1','0','','','0','0','0','0','0','0','0','fe59d23d0ba44777b0abf1a35b2c014e','0','2','0'), ('46427','18','','10327','MSSQL AG ''{#GROUP_NAME}'' Local DB ''{#DBNAME}'': Suspended','mssql.local_db.is_suspended["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Database state: 0 = Resumed 1 = Suspended','0','30d','0','','46411','','','','','200','1','0','','','0','0','0','0','0','0','0','7e4baf2802394b93bf5770f4f72d7f05','0','2','0'), ('46428','18','','10327','MSSQL AG ''{#GROUP_NAME}'' Local DB ''{#DBNAME}'': State','mssql.local_db.state["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,'154','','','0','','','','','2',NULL,'0 = Online 1 = Restoring 2 = Recovering 3 = Recovery pending 4 = Suspect 5 = Emergency 6 = Offline','0','30d','0','','46411','','','','','200','1','0','','','0','0','0','0','0','0','0','f8111429599e49bd947a12b9771d1a3d','0','2','0'), ('46429','18','','10327','MSSQL AG ''{#GROUP_NAME}'' Local DB ''{#DBNAME}'': Synchronization health','mssql.local_db.synchronization_health["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,'160','','','0','','','','','2',NULL,'Reflects the intersection of the synchronization state of a database that is joined to the availability group on the availability replica and the availability mode of the availability replica (synchronous-commit or asynchronous-commit mode): 0 = Not healthy. The synchronization_state of the database is 0 ("Not synchronizing"). 1 = Partially healthy. A database on a synchronous-commit availability replica is considered partially healthy if synchronization_state is 1 ("Synchronizing"). 2 = Healthy. A database on an synchronous-commit availability replica is considered healthy if synchronization_state is 2 ("Synchronized"), and a database on an asynchronous-commit availability replica is considered healthy if synchronization_state is 1 ("Synchronizing").','0','30d','0','','46411','','','','','200','1','0','','','0','0','0','0','0','0','0','e7d7fbac95e94c45b6515c8e1b7baf1a','0','2','0'), ('46430','18','','10327','MSSQL Mirroring ''{#DBNAME}'': Role','mssql.mirroring.role["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,'163','','','0','','','','','2',NULL,'Current role of the local database plays in the database mirroring session. 1 = Principal 2 = Mirror','0','30d','0','','46410','','','','','200','1','0','','','0','0','0','0','0','0','0','faccb61c8215482ab375c03444a0e8fd','0','2','0'), ('46431','18','','10327','MSSQL Mirroring ''{#DBNAME}'': Role sequence','mssql.mirroring.role_sequence["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of times that mirroring partners have switched the principal and mirror roles due to a failover or forced service.','0','30d','0','','46410','','','','','200','1','0','','','0','0','0','0','0','0','0','19cdd945ced447d28b7480c07c1f61bc','0','2','0'), ('46432','18','','10327','MSSQL Mirroring ''{#DBNAME}'': Safety level','mssql.mirroring.safety_level["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,'164','','','0','','','','','2',NULL,'Safety setting for updates on the mirror database: 0 = Unknown state 1 = Off [asynchronous] 2 = Full [synchronous]','0','30d','0','','46410','','','','','200','1','0','','','0','0','0','0','0','0','0','bedb23d788074424afdb2751c8a7e2b7','0','2','0'), ('46433','18','','10327','MSSQL Mirroring ''{#DBNAME}'': State','mssql.mirroring.state["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,'162','','','0','','','','','2',NULL,'State of the mirror database and of the database mirroring session. 0 = Suspended 1 = Disconnected from the other partner 2 = Synchronizing 3 = Pending failover 4 = Synchronized 5 = The partners are not synchronized. Failover is not possible now. 6 = The partners are synchronized. Failover is potentially possible. For information about the requirements for the failover, see Database Mirroring Operating Modes: https://learn.microsoft.com/en-us/sql/database-engine/database-mirroring/database-mirroring-operating-modes?view=sql-server-ver16.','0','30d','0','','46410','','','','','200','1','0','','','0','0','0','0','0','0','0','5df06f00a6194242af45ff5cccf43988','0','2','0'), ('46434','18','','10327','MSSQL Mirroring ''{#DBNAME}'': Witness state','mssql.mirroring.witness_state["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,'165','','','0','','','','','2',NULL,'State of the witness in the database mirroring session of the database: 0 = Unknown 1 = Connected 2 = Disconnected','0','30d','0','','46410','','','','','200','1','0','','','0','0','0','0','0','0','0','7e4763d493a745e99082ca71a54c23c2','0','2','0'), ('46435','18','','10327','MSSQL AG ''{#GROUP_NAME}'' Non-Local DB ''*{#REPLICA_NAME}*{#DBNAME}'': Log queue size','mssql.non-local_db.log_send_queue_size["{#GROUP_NAME}*{#REPLICA_NAME}*{#DBNAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Amount of the log records of the primary database that has not been sent to the secondary databases.','0','30d','0','','46412','','','','','200','1','0','','','0','0','0','0','0','0','0','32d3797d6b22413e98aa206d3092947f','0','2','0'), ('46436','18','','10327','MSSQL AG ''{#GROUP_NAME}'' Non-Local DB ''*{#REPLICA_NAME}*{#DBNAME}'': Redo log queue size','mssql.non-local_db.redo_queue_size["{#GROUP_NAME}*{#REPLICA_NAME}*{#DBNAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Amount of log records in the log files of the secondary replica that has not yet been redone.','0','30d','0','','46412','','','','','200','1','0','','','0','0','0','0','0','0','0','66d9735553754192bb9acf7b27c1501f','0','2','0'), ('46437','18','','10327','MSSQL Cluster ''{#CLUSTER_NAME}'': Quorum state','mssql.quorum.state.[{#CLUSTER_NAME}]','0','31d','365d','0','3','','','','',NULL,'1155','','','0','','','','','2',NULL,'State of the WSFC quorum, one of: 0 = Unknown quorum state 1 = Normal quorum 2 = Forced quorum','0','30d','0','','46413','','','','','200','1','0','','','0','0','0','0','0','0','0','6c30ce79872d4bb2b27965acd277e1e9','0','2','0'), ('46438','18','','10327','MSSQL Cluster ''{#CLUSTER_NAME}'': Quorum type','mssql.quorum.type.[{#CLUSTER_NAME}]','0','31d','365d','0','3','','','','',NULL,'1156','','','0','','','','','2',NULL,'Type of quorum used by this WSFC cluster, one of: 0 = Node Majority. This quorum configuration can sustain failures of half the nodes (rounding up) minus one. 1 = Node and Disk Majority. If the disk witness remains on line, this quorum configuration can sustain failures of half the nodes (rounding up). 2 = Node and File Share Majority. This quorum configuration works in a similar way to Node and Disk Majority, but uses a file-share witness instead of a disk witness. 3 = No Majority: Disk Only. If the quorum disk is online, this quorum configuration can sustain failures of all nodes except one. 4 = Unknown Quorum. Unknown quorum for the cluster. 5 = Cloud Witness. Cluster utilizes Microsoft Azure for quorum arbitration. If the cloud witness is available, the cluster can sustain the failure of half the nodes (rounding up).','0','30d','0','','46413','','','','','200','1','0','','','0','0','0','0','0','0','0','4d7f29272d1c4889bae0aa50bcd31e9c','0','2','0'), ('46439','18','','10327','MSSQL Cluster member ''{#MEMBER_NAME}'': Member state','mssql.quorum_members.member_state.[{#MEMBER_NAME}]','0','31d','365d','0','3','','','','',NULL,'1153','','','0','','','','','2',NULL,'The member state, one of: 0 = Offline 1 = Online','0','30d','0','','46414','','','','','200','1','0','','','0','0','0','0','0','0','0','0dc6b43da4854b1cbb41ad0d5c5079a9','0','2','0'), ('46440','18','','10327','MSSQL Cluster member ''{#MEMBER_NAME}'': Member type','mssql.quorum_members.member_type.[{#MEMBER_NAME}]','0','31d','365d','0','3','','','','',NULL,'1154','','','0','','','','','2',NULL,'The type of member, one of: 0 = WSFC node 1 = Disk witness 2 = File share witness 3 = Cloud Witness','0','30d','0','','46414','','','','','200','1','0','','','0','0','0','0','0','0','0','337cd4bfedc846048fc366bb7cf1bebd','0','2','0'), ('46441','18','','10327','MSSQL Cluster member ''{#MEMBER_NAME}'': Number of quorum votes','mssql.quorum_members.number_of_quorum_votes.[{#MEMBER_NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of quorum votes possessed by this quorum member.','0','30d','0','','46414','','','','','200','1','0','','','0','0','0','0','0','0','0','d8fff68f86494892bbe1cb2c6b281075','0','2','0'), ('46442','18','','10327','MSSQL AG ''{#GROUP_NAME}'' Replica ''{#REPLICA_NAME}'': Connected state','mssql.replica.connected_state["{#GROUP_NAME}_{#REPLICA_NAME}"]','0','31d','365d','0','3','','','','',NULL,'155','','','0','','','','','2',NULL,'Whether a secondary replica is currently connected to the primary replica: 0 = Disconnected. The response of an availability replica to the "Disconnected" state depends on its role: On the primary replica, if a secondary replica is disconnected, its secondary databases are marked as "Not synchronized" on the primary replica, which waits for the secondary to reconnect; On a secondary replica, upon detecting that it is disconnected, the secondary replica attempts to reconnect to the primary replica. 1 = Connected. Each primary replica tracks the connection state for every secondary replica in the same availability group. Secondary replicas track the connection state of only the primary replica.','0','30d','0','','46415','','','','','200','1','0','','','0','0','0','0','0','0','0','7403de703b024d428edfc59f3aa9181b','0','2','0'), ('46443','18','','10327','MSSQL AG ''{#GROUP_NAME}'' Replica ''{#REPLICA_NAME}'': Is local','mssql.replica.is_local["{#GROUP_NAME}_{#REPLICA_NAME}"]','0','31d','365d','0','3','','','','',NULL,'161','','','0','','','','','2',NULL,'Whether the replica is local: 0 = Indicates a remote secondary replica in an availability group whose primary replica is hosted by the local server instance. This value occurs only on the primary replica location. 1 = Indicates a local replica. On secondary replicas, this is the only available value for the availability group to which the replica belongs.','0','30d','0','','46415','','','','','200','1','0','','','0','0','0','0','0','0','0','51cb8f4fe5954c0ea21eff6102034862','0','2','0'), ('46444','18','','10327','MSSQL AG ''{#GROUP_NAME}'' Replica ''{#REPLICA_NAME}'': Join state','mssql.replica.join_state["{#GROUP_NAME}_{#REPLICA_NAME}"]','0','31d','365d','0','3','','','','',NULL,'156','','','0','','','','','2',NULL,'0 = Not joined 1 = Joined, standalone instance 2 = Joined, failover cluster instance','0','30d','0','','46415','','','','','200','1','0','','','0','0','0','0','0','0','0','ec1b71f75c4247c28d5830bd8004f0ac','0','2','0'), ('46445','18','','10327','MSSQL AG ''{#GROUP_NAME}'' Replica ''{#REPLICA_NAME}'': Operational state','mssql.replica.operational_state["{#GROUP_NAME}_{#REPLICA_NAME}"]','0','31d','365d','0','3','','','','',NULL,'157','','','0','','','','','2',NULL,'Current operational state of the replica: 0 = Pending failover 1 = Pending 2 = Online 3 = Offline 4 = Failed 5 = Failed, no quorum 6 = Not local','0','30d','0','','46415','','','','','200','1','0','','','0','0','0','0','0','0','0','ad3e6d5bf510496eb050b9a05f8341e1','0','2','0'), ('46446','18','','10327','MSSQL AG ''{#GROUP_NAME}'' Replica ''{#REPLICA_NAME}'': Recovery health','mssql.replica.recovery_health["{#GROUP_NAME}_{#REPLICA_NAME}"]','0','31d','365d','0','3','','','','',NULL,'158','','','0','','','','','2',NULL,'Rollup of the "database_state" column of the `sys.dm_hadr_database_replica_states` dynamic management view: 0 = In progress. At least one joined database has a database state other than "Online" (database_state is not "0"). 1 = Online. All the joined databases have a database state of "Online" (database_state is "0").','0','30d','0','','46415','','','','','200','1','0','','','0','0','0','0','0','0','0','2a58cab2197348d997bdb69bb128414d','0','2','0'), ('46447','18','','10327','MSSQL AG ''{#GROUP_NAME}'' Replica ''{#REPLICA_NAME}'': Role','mssql.replica.role["{#GROUP_NAME}_{#REPLICA_NAME}"]','0','31d','365d','0','3','','','','',NULL,'159','','','0','','','','','2',NULL,'Current Always On availability group role of a local replica or a connected remote replica: 0 = Resolving 1 = Primary 2 = Secondary','0','30d','0','','46415','','','','','200','1','0','','','0','0','0','0','0','0','0','5139a4cef5ac46d2ab34cd8bda1c84ac','0','2','0'), ('46448','18','','10327','MSSQL AG ''{#GROUP_NAME}'' Replica ''{#REPLICA_NAME}'': Sync health','mssql.replica.synchronization_health["{#GROUP_NAME}_{#REPLICA_NAME}"]','0','31d','365d','0','3','','','','',NULL,'160','','','0','','','','','2',NULL,'Reflects a rollup of the database synchronization state (synchronization_state) of all joined availability databases (also known as replicas) and the availability mode of the replica (synchronous-commit or asynchronous-commit mode). The rollup will reflect the least healthy accumulated state of the databases on the replica: 0 = Not healthy. At least one joined database is in the "Not synchronizing" state. 1 = Partially healthy. Some replicas are not in the target synchronization state: synchronous-commit replicas should be synchronized, and asynchronous-commit replicas should be synchronizing. 2 = Healthy. All replicas are in the target synchronization state: synchronous-commit replicas are synchronized, and asynchronous-commit replicas are synchronizing.','0','30d','0','','46415','','','','','200','1','0','','','0','0','0','0','0','0','0','5655f95df0e043acba246f65e4905b0d','0','2','0'), ('46454','18','','10607','Active Connection Count','aws.elb.alb.active_connection_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of active concurrent TCP connections from clients to the load balancer and from the load balancer to targets.','0','30d','0','','46452','','','','','200','1','0','','','0','0','0','0','0','0','0','cf1a45ea7ad74602b675d1fbe137c53d','0','2','0'), ('46455','18','','10607','Get alarms check','aws.elb.alb.alarms.check','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Check that the alarm data has been received correctly.','0','30d','0','','46451','','','','','200','1','0','','','0','0','0','0','0','0','0','4bd5c4e139374a60a42eb86a343f315e','0','2','0'), ('46456','18','','10607','ELB Auth Error','aws.elb.alb.auth_error','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of user authentications that could not be completed because an authenticate action was misconfigured, the load balancer could not establish a connection with the IdP, or the load balancer could not complete the authentication flow due to an internal error.','0','30d','0','','46452','','','','','200','1','0','','','0','0','0','0','0','0','0','0f966c0ff2f344f58a5c049ea2bc503a','0','2','0'), ('46457','18','','10607','ELB Auth Failure','aws.elb.alb.auth_failure','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of user authentications that could not be completed because the IdP denied access to the user or an authorization code was used more than once.','0','30d','0','','46452','','','','','200','1','0','','','0','0','0','0','0','0','0','5f516687f9364f2f87b7fd1d2cbc8054','0','2','0'), ('46458','18','','10607','ELB Auth Latency','aws.elb.alb.auth_latency','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'The time elapsed, in milliseconds, to query the IdP for the ID token and user info. If one or more of these operations fail, this is the time to failure.','0','30d','0','','46452','','','','','200','1','0','','','0','0','0','0','0','0','0','bfae078db4a14fd6a31b94e87552e430','0','2','0'), ('46459','18','','10607','ELB Auth Success','aws.elb.alb.auth_success','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of authenticate actions that were successful. This metric is incremented at the end of the authentication workflow, after the load balancer has retrieved the user claims from the IdP.','0','30d','0','','46452','','','','','200','1','0','','','0','0','0','0','0','0','0','3eed720ae5f948b287cf6ee0bdda41f1','0','2','0'), ('46460','18','','10607','ELB Auth User Claims Size Exceeded','aws.elb.alb.auth_user_claims_size_exceeded','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of times that a configured IdP returned user claims that exceeded 11K bytes in size.','0','30d','0','','46452','','','','','200','1','0','','','0','0','0','0','0','0','0','8562bd314951443faed4039c2c36b127','0','2','0'), ('46461','18','','10607','Consumed LCUs','aws.elb.alb.capacity_units','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of load balancer capacity units (LCU) used by your load balancer. You pay for the number of LCUs that you use per hour. More information on Elastic Load Balancing pricing here: https://aws.amazon.com/elasticloadbalancing/pricing/','0','30d','0','','46452','','','','','200','1','0','','','0','0','0','0','0','0','0','4f06db3a2da446c28228a20ed04847e1','0','2','0'), ('46462','18','','10607','Client TLS Negotiation Error Count','aws.elb.alb.client_tls_negotiation_error_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of TLS connections initiated by the client that did not establish a session with the load balancer due to a TLS error. Possible causes include a mismatch of ciphers or protocols or the client failing to verify the server certificate and closing the connection.','0','30d','0','','46452','','','','','200','1','0','','','0','0','0','0','0','0','0','c7e81227b5a648de9413ffcb6b9746ee','0','2','0'), ('46463','18','','10607','ELB HTTP 3XX Count','aws.elb.alb.http_3xx_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of HTTP 3XX redirection codes that originate from the load balancer. This count does not include response codes generated by targets.','0','30d','0','','46452','','','','','200','1','0','','','0','0','0','0','0','0','0','eabcf1ef1514451087d08d739cf55d94','0','2','0'), ('46464','18','','10607','ELB HTTP 4XX Count','aws.elb.alb.http_4xx_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of HTTP 4XX client error codes that originate from the load balancer. Client errors are generated when requests are malformed or incomplete. These requests were not received by the target, other than in the case where the load balancer returns an HTTP 460 error code. This count does not include any response codes generated by the targets.','0','30d','0','','46452','','','','','200','1','0','','','0','0','0','0','0','0','0','c714c1f2185b4b0b8b86e3ad336d7888','0','2','0'), ('46465','18','','10607','ELB HTTP 5XX Count','aws.elb.alb.http_5xx_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of HTTP 5XX server error codes that originate from the load balancer. This count does not include any response codes generated by the targets.','0','30d','0','','46452','','','','','200','1','0','','','0','0','0','0','0','0','0','6395ef49a60546ec8d3ce117867cbb43','0','2','0'), ('46466','18','','10607','ELB HTTP 500 Count','aws.elb.alb.http_500_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of HTTP 500 error codes that originate from the load balancer.','0','30d','0','','46452','','','','','200','1','0','','','0','0','0','0','0','0','0','7bf9230aa56b4196b386d23358da75ed','0','2','0'), ('46467','18','','10607','ELB HTTP 502 Count','aws.elb.alb.http_502_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of HTTP 502 error codes that originate from the load balancer.','0','30d','0','','46452','','','','','200','1','0','','','0','0','0','0','0','0','0','f89bee8030774615a132d25a6d1b7a2a','0','2','0'), ('46468','18','','10607','ELB HTTP 503 Count','aws.elb.alb.http_503_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of HTTP 503 error codes that originate from the load balancer.','0','30d','0','','46452','','','','','200','1','0','','','0','0','0','0','0','0','0','bca5eaf0b96c496395ed98e8d4705153','0','2','0'), ('46469','18','','10607','ELB HTTP 504 Count','aws.elb.alb.http_504_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of HTTP 504 error codes that originate from the load balancer.','0','30d','0','','46452','','','','','200','1','0','','','0','0','0','0','0','0','0','5d1c57a6483c4b84b992f9677f6216c1','0','2','0'), ('46470','18','','10607','HTTP Fixed Response Count','aws.elb.alb.http_fixed_response_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of fixed-response actions that were successful.','0','30d','0','','46452','','','','','200','1','0','','','0','0','0','0','0','0','0','115bdaf06c554f9a8b3a486c28d218cd','0','2','0'), ('46471','18','','10607','HTTP Redirect Count','aws.elb.alb.http_redirect_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of redirect actions that were successful.','0','30d','0','','46452','','','','','200','1','0','','','0','0','0','0','0','0','0','4edc1d8d4eb84832996943ac571afb5f','0','2','0'), ('46472','18','','10607','HTTP Redirect Url Limit Exceeded Count','aws.elb.alb.http_redirect_url_limit_exceeded_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of redirect actions that could not be completed because the URL in the response location header is larger than 8K bytes.','0','30d','0','','46452','','','','','200','1','0','','','0','0','0','0','0','0','0','fbf24a4f2110416d973a8f11c8770d98','0','2','0'), ('46473','18','','10607','Get metrics check','aws.elb.alb.metrics.check','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Check that the Application Load Balancer metrics data has been received correctly.','0','30d','0','','46452','','','','','200','1','0','','','0','0','0','0','0','0','0','7fdd931458ba4fa5b3baff1d67e4a32f','0','2','0'), ('46474','18','','10607','New Connection Count','aws.elb.alb.new_connection_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of new TCP connections established from clients to the load balancer and from the load balancer to targets.','0','30d','0','','46452','','','','','200','1','0','','','0','0','0','0','0','0','0','740872a3328e4c12827d8fcd16eb43ea','0','2','0'), ('46475','18','','10607','Desync Mitigation Mode Non Compliant Request Count','aws.elb.alb.non_compliant_request_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of requests that fail to comply with HTTP protocols.','0','30d','0','','46452','','','','','200','1','0','','','0','0','0','0','0','0','0','4e3cf684607741e39248929e6b917be7','0','2','0'), ('46476','18','','10607','Processed Bytes','aws.elb.alb.processed_bytes','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of bytes processed by the load balancer over IPv4 and IPv6 (HTTP header and HTTP payload). This count includes traffic to and from clients and Lambda functions, and traffic from an Identity Provider (IdP) if user authentication is enabled.','0','30d','0','','46452','','','','','200','1','0','','','0','0','0','0','0','0','0','32b5fbc67cec4d739bbd95ba1cd77ab9','0','2','0'), ('46477','18','','10607','Rejected Connection Count','aws.elb.alb.rejected_connection_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of connections that were rejected because the load balancer had reached its maximum number of connections.','0','30d','0','','46452','','','','','200','1','0','','','0','0','0','0','0','0','0','ed3c4ebc1faf43ff9be134ae98aac0e9','0','2','0'), ('46478','18','','10607','Requests Count','aws.elb.alb.requests_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of requests processed over IPv4 and IPv6. This metric is only incremented for requests where the load balancer node was able to choose a target. Requests that are rejected before a target is chosen are not reflected in this metric.','0','30d','0','','46452','','','','','200','1','0','','','0','0','0','0','0','0','0','4b5b059c30ef4f8bb4d11a273d071db1','0','2','0'), ('46479','18','','10607','Rule Evaluations','aws.elb.alb.rule_evaluations','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of rules processed by the load balancer given a request rate averaged over an hour.','0','30d','0','','46452','','','','','200','1','0','','','0','0','0','0','0','0','0','b5105b9e48f4482db42ff948f906be6f','0','2','0'), ('46480','18','','10607','Target Connection Error Count','aws.elb.alb.target_connection_error_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of connections that were not successfully established between the load balancer and target. This metric does not apply if the target is a Lambda function.','0','30d','0','','46452','','','','','200','1','0','','','0','0','0','0','0','0','0','09cd066b48544eb7ac818bc6171e3e87','0','2','0'), ('46481','18','','10607','Target Response Time','aws.elb.alb.target_response_time','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The time elapsed, in seconds, after the request leaves the load balancer until a response from the target is received. This is equivalent to the `target_processing_time` field in the access logs.','0','30d','0','','46452','','','','','200','1','0','','','0','0','0','0','0','0','0','560c74f7011b4b9c821dfdf7f8d8e93a','0','2','0'), ('46482','18','','10607','Target TLS Negotiation Error Count','aws.elb.alb.target_tls_negotiation_error_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of TLS connections initiated by the load balancer that did not establish a session with the target. Possible causes include a mismatch of ciphers or protocols. This metric does not apply if the target is a Lambda function.','0','30d','0','','46452','','','','','200','1','0','','','0','0','0','0','0','0','0','66d56d14553d4de69a63745ab02f2611','0','2','0'), ('46483','18','','10607','Load Balancer alarm discovery','aws.elb.alb.alarms.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for the discovery of alarm balancers.','0','7d','1','','46451','','','','','200','1','0','','','0','0','0','0','0','0','0','065ef42ebea5448896db5fcc5baa2f81','0','2','0'), ('46484','18','','10607','Target groups discovery','aws.elb.alb.target_groups.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for the discovery of `{$AWS.ELB.TARGET.GROUP.NAME}` target groups.','0','7d','1','','46453','','','','','200','1','0','','','0','0','0','0','0','0','0','1002081ffffd40828ff5419c50bc16d5','0','2','0'), ('46486','18','','10607','[{#ALARM_NAME}]: Get metrics','aws.elb.alb.alarm.get_metrics["{#ALARM_NAME}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get metrics about the alarm state and its reason.','0','30d','0','','46451','','','','','200','1','0','','','0','0','0','0','0','0','0','fca522690827426bb63f93e90d98aa54','0','2','0'), ('46487','18','','10607','[{#AWS.ELB.TARGET.GROUP.NAME}]: Anomalous Host Count','aws.elb.alb.target_groups.anomalous_host_count["{#AWS.ELB.TARGET.GROUP.NAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of hosts detected with anomalies.','0','30d','0','','46485','','','','','200','1','0','','','0','0','0','0','0','0','0','21d1830526e14fb99b2288d79747d472','0','2','0'), ('46488','18','','10607','[{#AWS.ELB.TARGET.GROUP.NAME}]: Healthy Host Count','aws.elb.alb.target_groups.healthy_host_count["{#AWS.ELB.TARGET.GROUP.NAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of targets that are considered healthy.','0','30d','0','','46485','','','','','200','1','0','','','0','0','0','0','0','0','0','e4cd95136bb04981b15a508aa73f5723','0','2','0'), ('46489','18','','10607','[{#AWS.ELB.TARGET.GROUP.NAME}]: Healthy State DNS','aws.elb.alb.target_groups.healthy_state_dns["{#AWS.ELB.TARGET.GROUP.NAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of zones that meet the DNS healthy state requirements.','0','30d','0','','46485','','','','','200','1','0','','','0','0','0','0','0','0','0','b96ad1d2f5064cc99c49eeec3801418e','0','2','0'), ('46490','18','','10607','[{#AWS.ELB.TARGET.GROUP.NAME}]: Healthy State Routing','aws.elb.alb.target_groups.healthy_state_routing["{#AWS.ELB.TARGET.GROUP.NAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of zones that meet the routing healthy state requirements.','0','30d','0','','46485','','','','','200','1','0','','','0','0','0','0','0','0','0','030c4fe8b7f44bf3a290b1b5da9319d8','0','2','0'), ('46491','18','','10607','[{#AWS.ELB.TARGET.GROUP.NAME}]: HTTP Code Target 2XX Count','aws.elb.alb.target_groups.http_2xx_count["{#AWS.ELB.TARGET.GROUP.NAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of HTTP response 2XX codes generated by the targets. This does not include any response codes generated by the load balancer.','0','30d','0','','46485','','','','','200','1','0','','','0','0','0','0','0','0','0','fa9da54b4feb4fc79fbf74c491eb23ba','0','2','0'), ('46492','18','','10607','[{#AWS.ELB.TARGET.GROUP.NAME}]: HTTP Code Target 3XX Count','aws.elb.alb.target_groups.http_3xx_count["{#AWS.ELB.TARGET.GROUP.NAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of HTTP response 3XX codes generated by the targets. This does not include any response codes generated by the load balancer.','0','30d','0','','46485','','','','','200','1','0','','','0','0','0','0','0','0','0','50e78304f9e74019b7e06310d6dd2e6f','0','2','0'), ('46493','18','','10607','[{#AWS.ELB.TARGET.GROUP.NAME}]: HTTP Code Target 4XX Count','aws.elb.alb.target_groups.http_4xx_count["{#AWS.ELB.TARGET.GROUP.NAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of HTTP response 4XX codes generated by the targets. This does not include any response codes generated by the load balancer.','0','30d','0','','46485','','','','','200','1','0','','','0','0','0','0','0','0','0','ec7b92c79c6f441cadb8994b906753f4','0','2','0'), ('46494','18','','10607','[{#AWS.ELB.TARGET.GROUP.NAME}]: HTTP Code Target 5XX Count','aws.elb.alb.target_groups.http_5xx_count["{#AWS.ELB.TARGET.GROUP.NAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of HTTP response 5XX codes generated by the targets. This does not include any response codes generated by the load balancer.','0','30d','0','','46485','','','','','200','1','0','','','0','0','0','0','0','0','0','c9e61f9d2f12496d90693a83cb829b66','0','2','0'), ('46495','18','','10607','[{#AWS.ELB.TARGET.GROUP.NAME}]: Mitigated Host Count','aws.elb.alb.target_groups.mitigated_host_count["{#AWS.ELB.TARGET.GROUP.NAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of targets under mitigation.','0','30d','0','','46485','','','','','200','1','0','','','0','0','0','0','0','0','0','0ad4d9a933944c7d979da411d24b165e','0','2','0'), ('46496','18','','10607','[{#AWS.ELB.TARGET.GROUP.NAME}]: Request Count Per Target','aws.elb.alb.target_groups.request["{#AWS.ELB.TARGET.GROUP.NAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The average request count per target, in a target group. You must specify the target group using the TargetGroup dimension.','0','30d','0','','46485','','','','','200','1','0','','','0','0','0','0','0','0','0','31a579ac8de9402bae3a3668779ec6c5','0','2','0'), ('46497','18','','10607','[{#AWS.ELB.TARGET.GROUP.NAME}]: Unhealthy Host Count','aws.elb.alb.target_groups.unhealthy_host_count["{#AWS.ELB.TARGET.GROUP.NAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of targets that are considered unhealthy.','0','30d','0','','46485','','','','','200','1','0','','','0','0','0','0','0','0','0','c158172738084d38aec424505a7a86a5','0','2','0'), ('46498','18','','10607','[{#AWS.ELB.TARGET.GROUP.NAME}]: Unhealthy Routing Request Count','aws.elb.alb.target_groups.unhealthy_routing_request_count["{#AWS.ELB.TARGET.GROUP.NAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The average request count per target, in a target group.','0','30d','0','','46485','','','','','200','1','0','','','0','0','0','0','0','0','0','9fea4b63067445d98d29de566d50b0a4','0','2','0'), ('46499','18','','10607','[{#AWS.ELB.TARGET.GROUP.NAME}]: Unhealthy State DNS','aws.elb.alb.target_groups.unhealthy_state_dns["{#AWS.ELB.TARGET.GROUP.NAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of zones that do not meet the DNS healthy state requirements and therefore were marked unhealthy in DNS.','0','30d','0','','46485','','','','','200','1','0','','','0','0','0','0','0','0','0','f050e9610eb64251b55e843fc5eb5876','0','2','0'), ('46500','18','','10607','[{#AWS.ELB.TARGET.GROUP.NAME}]: Unhealthy State Routing','aws.elb.alb.target_groups.unhealthy_state_routing["{#AWS.ELB.TARGET.GROUP.NAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of zones that do not meet the routing healthy state requirements, and therefore the load balancer distributes traffic to all targets in the zone, including the unhealthy targets.','0','30d','0','','46485','','','','','200','1','0','','','0','0','0','0','0','0','0','2a446451893e4f70a0d4ac4b1bb969fb','0','2','0'), ('46522','18','','10609','Get Access Methods counters','mssql.access_methods.raw','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The item gets server information about access methods.','0','30d','0','','46515','','','','','200','1','0','','','0','0','0','0','0','0','0','668f0a143b164fd5b62b1311ac798ca3','0','2','0'), ('46523','18','','10609','Get Buffer Manager counters','mssql.buffer_manager.raw','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The item gets server information about the buffer pool.','0','30d','0','','46515','','','','','200','1','0','','','0','0','0','0','0','0','0','2e0810566767476db6cd0ca4eccb9e99','0','2','0'), ('46524','18','','10609','Get Cache counters','mssql.cache_info.raw','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The item gets server information about cache.','0','30d','0','','46515','','','','','200','1','0','','','0','0','0','0','0','0','0','9925ceb7e021480598aab2bfba74370d','0','2','0'), ('46525','18','','10609','Get DB counters','mssql.db_info.raw','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The item gets summary information about databases.','0','30d','0','','46515','','','','','200','1','0','','','0','0','0','0','0','0','0','7ee97938f31d4983b3c216684089c23f','0','2','0'), ('46526','18','','10609','Get General Statistics counters','mssql.general_statistics.raw','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The item gets general statistics information.','0','30d','0','','46515','','','','','200','1','0','','','0','0','0','0','0','0','0','055399281d2b4e7a90ae1fb4b181a0b2','0','2','0'), ('46527','18','','10609','Get Latches counters','mssql.latches_info.raw','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The item gets server information about latches.','0','30d','0','','46515','','','','','200','1','0','','','0','0','0','0','0','0','0','2bd7c7ec217b4f62b7d94a42e9324f51','0','2','0'), ('46528','18','','10609','Get Locks counters','mssql.locks_info.raw','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The item gets server information about locks.','0','30d','0','','46515','','','','','200','1','0','','','0','0','0','0','0','0','0','46040926001f46c685c160820194a969','0','2','0'), ('46529','18','','10609','Get Memory counters','mssql.mem_manager.raw','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The item gets memory information.','0','30d','0','','46515','','','','','200','1','0','','','0','0','0','0','0','0','0','4114e184cecd4040a26d9156ac11b6d2','0','2','0'), ('46530','18','','10609','Get SQL Errors counters','mssql.sql_errors.raw','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The item gets SQL error information.','0','30d','0','','46515','','','','','200','1','0','','','0','0','0','0','0','0','0','60c2c827c40a4d09b0b41cd7004cb0b0','0','2','0'), ('46531','18','','10609','Get SQL Statistics counters','mssql.sql_statistics.raw','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The item gets SQL statistics information.','0','30d','0','','46515','','','','','200','1','0','','','0','0','0','0','0','0','0','8c18cf97c2dc4e94a9b889c72d76cdde','0','2','0'), ('46532','18','','10609','Total transactions number','mssql.transactions','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of currently active transactions of all types.','0','30d','0','','46515','','','','','200','1','0','','','0','0','0','0','0','0','0','f7c8f1bbf68c4f43b0e263d45022346e','0','2','0'), ('46533','18','','10609','Uptime','mssql.uptime','0','31d','0','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'MSSQL Server uptime in the format "N days, hh:mm:ss".','0','30d','0','','46515','','','','','200','1','0','','','0','0','0','0','0','0','0','f4b8d9b10b4c40f6a38c03729025f618','0','2','0'), ('46594','18','','10609','Availability group discovery','mssql.availability.group.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of the existing availability groups.','0','7d','0','','46504','','','','','200','1','0','','','0','0','0','0','0','0','0','7f7d64674f2b41a69f9330fc050fc582','0','2','0'), ('46595','18','','10609','Database discovery','mssql.database.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning databases in DBMS.','0','7d','1','','46507','','','','','200','1','0','','','0','0','0','0','0','0','0','13116bb9e52040718b40f0a6e734342a','0','2','0'), ('46596','18','','10609','Job discovery','mssql.job.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning jobs in DBMS.','0','7d','1','','46508','','','','','200','1','0','','','0','0','0','0','0','0','0','749fe36645994fc2aa45d7916862b893','0','2','0'), ('46597','18','','10609','Local database discovery','mssql.local.db.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of the local availability databases.','0','7d','0','','46510','','','','','200','1','0','','','0','0','0','0','0','0','0','f47cad40c2dd42d4a80fb5628b8cc790','0','2','0'), ('46598','18','','10609','Mirroring discovery','mssql.mirroring.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'To see the row for a database other than master or tempdb, you must either be the database owner or have at least ALTER ANY DATABASE or VIEW ANY DATABASE server-level permission or CREATE DATABASE permission in the master database. To see non-NULL values on a mirror database, you must be a member of the sysadmin fixed server role.','0','7d','0','','46511','','','','','200','1','0','','','0','0','0','0','0','0','0','7c12efa1fd27435a968d910abcb1c095','0','2','0'), ('46599','18','','10609','Non-local database discovery','mssql.non.local.db.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of the non-local (not local to SQL Server instance) availability databases.','0','7d','0','','46512','','','','','200','1','0','','','0','0','0','0','0','0','0','faaa289d832d4dcda5de868d832a7d31','0','2','0'), ('46600','18','','10609','Quorum discovery','mssql.quorum.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of the quorum of the WSFC cluster.','0','7d','1','','46516','','','','','200','1','0','','','0','0','0','0','0','0','0','ee0ccf3f0e6e4bfbb500942811874ece','0','2','0'), ('46601','18','','10609','Quorum members discovery','mssql.quorum.member.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of the quorum members of the WSFC cluster.','0','7d','1','','46517','','','','','200','1','0','','','0','0','0','0','0','0','0','57e6fe3d425d4d74a360f26bb5ff5e57','0','2','0'), ('46602','18','','10609','Replication discovery','mssql.replica.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of the database replicas.','0','7d','0','','46518','','','','','200','1','0','','','0','0','0','0','0','0','0','f72e7102f3314225b298a44332361aea','0','2','0'), ('46603','18','','10609','MSSQL AG ''{#GROUP_NAME}'': Primary replica recovery health','mssql.primary_recovery_health["{#GROUP_NAME}"]','0','31d','365d','0','3','','','','',NULL,'1163','','','0','','','','','2',NULL,'Indicates the recovery health of the primary replica: 0 = In progress 1 = Online 2 = Unavailable','0','30d','0','','46504','','','','','200','1','0','','','0','0','0','0','0','0','0','a4db74ea2c2c4919ae57d474548c13f1','0','2','0'), ('46604','18','','10609','MSSQL AG ''{#GROUP_NAME}'': Primary replica name','mssql.primary_replica["{#GROUP_NAME}"]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Name of the server instance that is hosting the current primary replica.','0','30d','0','','46504','','','','','200','1','0','','','0','0','0','0','0','0','0','ede1746a6614499781c6dec46671cdfa','0','2','0'), ('46605','18','','10609','MSSQL AG ''{#GROUP_NAME}'': Secondary replica recovery health','mssql.secondary_recovery_health["{#GROUP_NAME}"]','0','31d','365d','0','3','','','','',NULL,'1163','','','0','','','','','2',NULL,'Indicates the recovery health of a secondary replica: 0 = In progress 1 = Online 2 = Unavailable','0','30d','0','','46504','','','','','200','1','0','','','0','0','0','0','0','0','0','49612aea8b164a79b994d2155c70b491','0','2','0'), ('46606','18','','10609','MSSQL AG ''{#GROUP_NAME}'': Synchronization health','mssql.synchronization_health["{#GROUP_NAME}"]','0','31d','365d','0','3','','','','',NULL,'1165','','','0','','','','','2',NULL,'Reflects a rollup of the `synchronization_health` of all availability replicas in the availability group: 0 = Not healthy. None of the availability replicas have a healthy synchronization. 1 = Partially healthy. The synchronization of some, but not all, availability replicas is healthy. 2 = Healthy. The synchronization of every availability replica is healthy.','0','30d','0','','46504','','','','','200','1','0','','','0','0','0','0','0','0','0','f6a776b81e9d445e9b401ecdc781fe26','0','2','0'), ('46607','18','','10609','MSSQL DB ''{#DBNAME}'': Get last backup','mssql.backup.raw["{#DBNAME}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The item gets information about backup processes for {#DBNAME}.','0','30d','0','','46509','','','','','200','1','0','','','0','0','0','0','0','0','0','6800612ef91f4f149e24c4cf9a9f915c','0','2','0'), ('46608','18','','10609','MSSQL DB ''{#DBNAME}'': Get performance counters','mssql.db.perf_raw["{#DBNAME}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The item gets server status information for {#DBNAME}.','0','30d','0','','46515','','','','','200','1','0','','','0','0','0','0','0','0','0','84e28628c11d4c35a7ee7b1a714c7b59','0','2','0'), ('46609','18','','10609','MSSQL Job ''{#JOBNAME}'': Get job status','mssql.job.status_raw["{#JOBNAME}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The item gets the status of SQL agent job {#JOBNAME}.','0','30d','0','','46508','','','','','200','1','0','','','0','0','0','0','0','0','0','1bd249b766384ec28f9dfa0212ac3472','0','2','0'), ('46610','18','','10609','MSSQL AG ''{#GROUP_NAME}'' Local DB ''{#DBNAME}'': Suspended','mssql.local_db.is_suspended["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Database state: 0 = Resumed 1 = Suspended','0','30d','0','','46510','','','','','200','1','0','','','0','0','0','0','0','0','0','af88b98cb0274de89dbf3b65a1b5c107','0','2','0'), ('46611','18','','10609','MSSQL AG ''{#GROUP_NAME}'' Local DB ''{#DBNAME}'': State','mssql.local_db.state["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,'1166','','','0','','','','','2',NULL,'0 = Online 1 = Restoring 2 = Recovering 3 = Recovery pending 4 = Suspect 5 = Emergency 6 = Offline','0','30d','0','','46510','','','','','200','1','0','','','0','0','0','0','0','0','0','b0f834ec67b743a994acc4d2681c594f','0','2','0'), ('46612','18','','10609','MSSQL AG ''{#GROUP_NAME}'' Local DB ''{#DBNAME}'': Synchronization health','mssql.local_db.synchronization_health["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,'1165','','','0','','','','','2',NULL,'Reflects the intersection of the synchronization state of a database that is joined to the availability group on the availability replica and the availability mode of the availability replica (synchronous-commit or asynchronous-commit mode): 0 = Not healthy. The synchronization_state of the database is 0 ("Not synchronizing"). 1 = Partially healthy. A database on a synchronous-commit availability replica is considered partially healthy if synchronization_state is 1 ("Synchronizing"). 2 = Healthy. A database on an synchronous-commit availability replica is considered healthy if synchronization_state is 2 ("Synchronized"), and a database on an asynchronous-commit availability replica is considered healthy if synchronization_state is 1 ("Synchronizing").','0','30d','0','','46510','','','','','200','1','0','','','0','0','0','0','0','0','0','bdbe4f929d0247baa8522b0bae2e3b3e','0','2','0'), ('46613','18','','10609','MSSQL Mirroring ''{#DBNAME}'': Role','mssql.mirroring.role["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,'1168','','','0','','','','','2',NULL,'Current role of the local database plays in the database mirroring session. 1 = Principal 2 = Mirror','0','30d','0','','46511','','','','','200','1','0','','','0','0','0','0','0','0','0','ad3744d9c53f44008f6557a25333268d','0','2','0'), ('46614','18','','10609','MSSQL Mirroring ''{#DBNAME}'': Role sequence','mssql.mirroring.role_sequence["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of times that mirroring partners have switched the principal and mirror roles due to a failover or forced service.','0','30d','0','','46511','','','','','200','1','0','','','0','0','0','0','0','0','0','da278bc7d59b4590a5a869d800b57835','0','2','0'), ('46615','18','','10609','MSSQL Mirroring ''{#DBNAME}'': Safety level','mssql.mirroring.safety_level["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,'1175','','','0','','','','','2',NULL,'Safety setting for updates on the mirror database: 0 = Unknown state 1 = Off [asynchronous] 2 = Full [synchronous]','0','30d','0','','46511','','','','','200','1','0','','','0','0','0','0','0','0','0','ff0f198e003d4804a4ef471336b7b64b','0','2','0'), ('46616','18','','10609','MSSQL Mirroring ''{#DBNAME}'': State','mssql.mirroring.state["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,'1169','','','0','','','','','2',NULL,'State of the mirror database and of the database mirroring session. 0 = Suspended 1 = Disconnected from the other partner 2 = Synchronizing 3 = Pending failover 4 = Synchronized 5 = The partners are not synchronized. Failover is not possible now. 6 = The partners are synchronized. Failover is potentially possible. For information about the requirements for the failover, see Database Mirroring Operating Modes: https://learn.microsoft.com/en-us/sql/database-engine/database-mirroring/database-mirroring-operating-modes?view=sql-server-ver16.','0','30d','0','','46511','','','','','200','1','0','','','0','0','0','0','0','0','0','c0578a39b0a349d3bc4418bd25efbfd9','0','2','0'), ('46617','18','','10609','MSSQL Mirroring ''{#DBNAME}'': Witness state','mssql.mirroring.witness_state["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,'1176','','','0','','','','','2',NULL,'State of the witness in the database mirroring session of the database: 0 = Unknown 1 = Connected 2 = Disconnected','0','30d','0','','46511','','','','','200','1','0','','','0','0','0','0','0','0','0','84be4a93d1774b5096831c082b9154de','0','2','0'), ('46618','18','','10609','MSSQL AG ''{#GROUP_NAME}'' Non-Local DB ''*{#REPLICA_NAME}*{#DBNAME}'': Log queue size','mssql.non-local_db.log_send_queue_size["{#GROUP_NAME}*{#REPLICA_NAME}*{#DBNAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Amount of the log records of the primary database that has not been sent to the secondary databases.','0','30d','0','','46512','','','','','200','1','0','','','0','0','0','0','0','0','0','ab9c87918819445f8c4eaf3fd3226a5a','0','2','0'), ('46619','18','','10609','MSSQL AG ''{#GROUP_NAME}'' Non-Local DB ''*{#REPLICA_NAME}*{#DBNAME}'': Redo log queue size','mssql.non-local_db.redo_queue_size["{#GROUP_NAME}*{#REPLICA_NAME}*{#DBNAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Amount of log records in the log files of the secondary replica that has not yet been redone.','0','30d','0','','46512','','','','','200','1','0','','','0','0','0','0','0','0','0','dd2a6b660ed148e7b1c729ffb2a4ad76','0','2','0'), ('46620','18','','10609','MSSQL Cluster ''{#CLUSTER_NAME}'': Quorum state','mssql.quorum.state.[{#CLUSTER_NAME}]','0','31d','365d','0','3','','','','',NULL,'1172','','','0','','','','','2',NULL,'State of the WSFC quorum, one of: 0 = Unknown quorum state 1 = Normal quorum 2 = Forced quorum','0','30d','0','','46516','','','','','200','1','0','','','0','0','0','0','0','0','0','3ddd6e3780de4b7a8cb2e37d515d5a8f','0','2','0'), ('46621','18','','10609','MSSQL Cluster ''{#CLUSTER_NAME}'': Quorum type','mssql.quorum.type.[{#CLUSTER_NAME}]','0','31d','365d','0','3','','','','',NULL,'1173','','','0','','','','','2',NULL,'Type of quorum used by this WSFC cluster, one of: 0 = Node Majority. This quorum configuration can sustain failures of half the nodes (rounding up) minus one. 1 = Node and Disk Majority. If the disk witness remains on line, this quorum configuration can sustain failures of half the nodes (rounding up). 2 = Node and File Share Majority. This quorum configuration works in a similar way to Node and Disk Majority, but uses a file-share witness instead of a disk witness. 3 = No Majority: Disk Only. If the quorum disk is online, this quorum configuration can sustain failures of all nodes except one. 4 = Unknown Quorum. Unknown quorum for the cluster. 5 = Cloud Witness. Cluster utilizes Microsoft Azure for quorum arbitration. If the cloud witness is available, the cluster can sustain the failure of half the nodes (rounding up).','0','30d','0','','46516','','','','','200','1','0','','','0','0','0','0','0','0','0','1a00d48af79340478b359a958cb78e3f','0','2','0'), ('46622','18','','10609','MSSQL Cluster member ''{#MEMBER_NAME}'': Member state','mssql.quorum_members.member_state.[{#MEMBER_NAME}]','0','31d','365d','0','3','','','','',NULL,'1170','','','0','','','','','2',NULL,'The member state, one of: 0 = Offline 1 = Online','0','30d','0','','46517','','','','','200','1','0','','','0','0','0','0','0','0','0','6fec1fe9856c4b7eb1f7446e01a75ce5','0','2','0'), ('46623','18','','10609','MSSQL Cluster member ''{#MEMBER_NAME}'': Member type','mssql.quorum_members.member_type.[{#MEMBER_NAME}]','0','31d','365d','0','3','','','','',NULL,'1171','','','0','','','','','2',NULL,'The type of member, one of: 0 = WSFC node 1 = Disk witness 2 = File share witness 3 = Cloud Witness','0','30d','0','','46517','','','','','200','1','0','','','0','0','0','0','0','0','0','d8dd85b6fc764ba4abc4d5cff0cefced','0','2','0'), ('46624','18','','10609','MSSQL Cluster member ''{#MEMBER_NAME}'': Number of quorum votes','mssql.quorum_members.number_of_quorum_votes.[{#MEMBER_NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of quorum votes possessed by this quorum member.','0','30d','0','','46517','','','','','200','1','0','','','0','0','0','0','0','0','0','87154fcf731b461b94e816ce58ef44ac','0','2','0'), ('46625','18','','10609','MSSQL AG ''{#GROUP_NAME}'' Replica ''{#REPLICA_NAME}'': Connected state','mssql.replica.connected_state["{#GROUP_NAME}_{#REPLICA_NAME}"]','0','31d','365d','0','3','','','','',NULL,'1160','','','0','','','','','2',NULL,'Whether a secondary replica is currently connected to the primary replica: 0 = Disconnected. The response of an availability replica to the "Disconnected" state depends on its role: On the primary replica, if a secondary replica is disconnected, its secondary databases are marked as "Not synchronized" on the primary replica, which waits for the secondary to reconnect; On a secondary replica, upon detecting that it is disconnected, the secondary replica attempts to reconnect to the primary replica. 1 = Connected. Each primary replica tracks the connection state for every secondary replica in the same availability group. Secondary replicas track the connection state of only the primary replica.','0','30d','0','','46518','','','','','200','1','0','','','0','0','0','0','0','0','0','a685cc983de040a6a6456d0568b74492','0','2','0'), ('46626','18','','10609','MSSQL AG ''{#GROUP_NAME}'' Replica ''{#REPLICA_NAME}'': Is local','mssql.replica.is_local["{#GROUP_NAME}_{#REPLICA_NAME}"]','0','31d','365d','0','3','','','','',NULL,'1159','','','0','','','','','2',NULL,'Whether the replica is local: 0 = Indicates a remote secondary replica in an availability group whose primary replica is hosted by the local server instance. This value occurs only on the primary replica location. 1 = Indicates a local replica. On secondary replicas, this is the only available value for the availability group to which the replica belongs.','0','30d','0','','46518','','','','','200','1','0','','','0','0','0','0','0','0','0','8dd557f2254a43adb8d56864d8910c11','0','2','0'), ('46627','18','','10609','MSSQL AG ''{#GROUP_NAME}'' Replica ''{#REPLICA_NAME}'': Join state','mssql.replica.join_state["{#GROUP_NAME}_{#REPLICA_NAME}"]','0','31d','365d','0','3','','','','',NULL,'1161','','','0','','','','','2',NULL,'0 = Not joined 1 = Joined, standalone instance 2 = Joined, failover cluster instance','0','30d','0','','46518','','','','','200','1','0','','','0','0','0','0','0','0','0','1f6c0f9e0757405eb172fa97f8dfe990','0','2','0'), ('46628','18','','10609','MSSQL AG ''{#GROUP_NAME}'' Replica ''{#REPLICA_NAME}'': Operational state','mssql.replica.operational_state["{#GROUP_NAME}_{#REPLICA_NAME}"]','0','31d','365d','0','3','','','','',NULL,'1162','','','0','','','','','2',NULL,'Current operational state of the replica: 0 = Pending failover 1 = Pending 2 = Online 3 = Offline 4 = Failed 5 = Failed, no quorum 6 = Not local','0','30d','0','','46518','','','','','200','1','0','','','0','0','0','0','0','0','0','bc71481dd6b047679946f8488dd844f7','0','2','0'), ('46629','18','','10609','MSSQL AG ''{#GROUP_NAME}'' Replica ''{#REPLICA_NAME}'': Recovery health','mssql.replica.recovery_health["{#GROUP_NAME}_{#REPLICA_NAME}"]','0','31d','365d','0','3','','','','',NULL,'1163','','','0','','','','','2',NULL,'Rollup of the "database_state" column of the `sys.dm_hadr_database_replica_states` dynamic management view: 0 = In progress. At least one joined database has a database state other than "Online" (database_state is not "0"). 1 = Online. All the joined databases have a database state of "Online" (database_state is "0").','0','30d','0','','46518','','','','','200','1','0','','','0','0','0','0','0','0','0','a1ae4502e4a445f7801ba8283124e480','0','2','0'), ('46630','18','','10609','MSSQL AG ''{#GROUP_NAME}'' Replica ''{#REPLICA_NAME}'': Role','mssql.replica.role["{#GROUP_NAME}_{#REPLICA_NAME}"]','0','31d','365d','0','3','','','','',NULL,'1164','','','0','','','','','2',NULL,'Current Always On availability group role of a local replica or a connected remote replica: 0 = Resolving 1 = Primary 2 = Secondary','0','30d','0','','46518','','','','','200','1','0','','','0','0','0','0','0','0','0','50afa669369d4a5e936748aee07e76f0','0','2','0'), ('46631','18','','10609','MSSQL AG ''{#GROUP_NAME}'' Replica ''{#REPLICA_NAME}'': Sync health','mssql.replica.synchronization_health["{#GROUP_NAME}_{#REPLICA_NAME}"]','0','31d','365d','0','3','','','','',NULL,'1165','','','0','','','','','2',NULL,'Reflects a rollup of the database synchronization state (synchronization_state) of all joined availability databases (also known as replicas) and the availability mode of the replica (synchronous-commit or asynchronous-commit mode). The rollup will reflect the least healthy accumulated state of the databases on the replica: 0 = Not healthy. At least one joined database is in the "Not synchronizing" state. 1 = Partially healthy. Some replicas are not in the target synchronization state: synchronous-commit replicas should be synchronized, and asynchronous-commit replicas should be synchronizing. 2 = Healthy. All replicas are in the target synchronization state: synchronous-commit replicas are synchronized, and asynchronous-commit replicas are synchronizing.','0','30d','0','','46518','','','','','200','1','0','','','0','0','0','0','0','0','0','6a1abecd7c0044dd82442b30df3b4eae','0','2','0'), ('46668','18','','10610','Get clusters item error','yugabytedb.clusters.get.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Item for gathering all the cluster item errors.','0','30d','0','','46659','','','','','200','1','0','','','0','0','0','0','0','0','0','f5a43644d4d341658b8818077e24ccb3','0','2','0'), ('46669','18','','10611','YSQL connections average used','yugabytedb.cluster.connection.count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Cumulative number of connections to the YSQL backend for all nodes.','0','30d','0','','46664','','','','','200','1','0','','','0','0','0','0','0','0','0','4872cb50f8284ff6aa07c530156f324e','0','2','0'), ('46670','18','','10611','YSQL connections limit','yugabytedb.cluster.connection.limit','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The limit of the number of connections to the YSQL backend for all nodes.','0','30d','0','','46664','','','','','200','1','0','','','0','0','0','0','0','0','0','5bfd7adb38334116a5a54e2a0e2847f9','0','2','0'), ('46671','18','','10611','YSQL connections maximum used','yugabytedb.cluster.connection.max','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum of used connections to the YSQL backend for all nodes.','0','30d','0','','46664','','','','','200','1','0','','','0','0','0','0','0','0','0','187e373dd49a4214b1862393538ff209','0','2','0'), ('46672','18','','10611','CPU utilization','yugabytedb.cluster.cpu.utilization','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of CPU use being consumed by the tablet or master server Yugabyte processes, as well as other processes, if any.','0','30d','0','','46664','','','','','200','1','0','','','0','0','0','0','0','0','0','8065a31bd61b494a9edf94692c4846ff','0','2','0'), ('46673','18','','10611','Disk space provisioned','yugabytedb.cluster.disk.provisioned','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the amount of disk space provisioned for the cluster.','0','30d','0','','46664','','','','','200','1','0','','','0','0','0','0','0','0','0','03b2e6e400334c0eb6e6b2c7efe8ddcf','0','2','0'), ('46674','18','','10611','Disk read, Bps','yugabytedb.cluster.disk.read.bps','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of bytes being read from disk per second, averaged over each node.','0','30d','0','','46664','','','','','200','1','0','','','0','0','0','0','0','0','0','2e59d947823e4e6b8a3eb9cd28cb8602','0','2','0'), ('46675','18','','10611','Disk read OPS','yugabytedb.cluster.disk.read.ops','0','31d','365d','0','0','','!OPS','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of read operations per second.','0','30d','0','','46664','','','','','200','1','0','','','0','0','0','0','0','0','0','7a7c47740d01462f82ccb8649de19a23','0','2','0'), ('46676','18','','10611','Disk space usage','yugabytedb.cluster.disk.usage','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the amount of disk space used by the cluster.','0','30d','0','','46664','','','','','200','1','0','','','0','0','0','0','0','0','0','03cd79b37aa543d4ba3ce9fb154513f2','0','2','0'), ('46677','18','','10611','Disk write, Bps','yugabytedb.cluster.disk.write.bps','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of bytes being written to disk per second, averaged over each node.','0','30d','0','','46664','','','','','200','1','0','','','0','0','0','0','0','0','0','c528c1692fe84e7c85ec99f5802dea15','0','2','0'), ('46678','18','','10611','Disk write OPS','yugabytedb.cluster.disk.write.ops','0','31d','365d','0','0','','!OPS','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of write operations per second.','0','30d','0','','46664','','','','','200','1','0','','','0','0','0','0','0','0','0','0badafcd38d34e4faa70f95ba501658a','0','2','0'), ('46679','18','','10611','Get cluster item error','yugabytedb.cluster.get.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Item for gathering all the cluster item errors.','0','30d','0','','46662','','','','','200','1','0','','','0','0','0','0','0','0','0','fe9960991a4540e795a0a113cd251271','0','2','0'), ('46680','18','','10611','Health state','yugabytedb.cluster.health.state','0','31d','365d','0','3','','','','',NULL,'1181','','','0','','','','','0',NULL,'Current state regarding the health of the cluster: - HEALTHY - NEEDS_ATTENTION - UNHEALTHY - UNKNOWN','0','30d','0','','46662','','','','','200','1','0','','','0','0','0','0','0','0','0','e5415e8c03ac4a61aa10a6b35a18b084','0','2','0'), ('46681','18','','10611','Memory total','yugabytedb.cluster.memory.total','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the amount of RAM provisioned to the cluster.','0','30d','0','','46664','','','','','200','1','0','','','0','0','0','0','0','0','0','955291127a4e483693c1db6690a1beab','0','2','0'), ('46682','18','','10611','Memory usage','yugabytedb.cluster.memory.usage','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Shows the amount of RAM used on the cluster.','0','30d','0','','46664','','','','','200','1','0','','','0','0','0','0','0','0','0','682d46a939cf4ec186d4081e7a8eee42','0','2','0'), ('46683','18','','10611','Get cluster metrics item error','yugabytedb.cluster.metric.get.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Item for gathering all the cluster item errors.','0','30d','0','','46664','','','','','200','1','0','','','0','0','0','0','0','0','0','58b766758f7644369d3a1d125e012c07','0','2','0'), ('46684','18','','10611','Network receive, Bps','yugabytedb.cluster.network.receive.bps','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The size of network packets received per second, averaged over nodes.','0','30d','0','','46664','','','','','200','1','0','','','0','0','0','0','0','0','0','91ace5e3a9a3428eb209e539c25f43b4','0','2','0'), ('46685','18','','10611','Network receive error, rate','yugabytedb.cluster.network.receive.error.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of errors related to network packets received per second, averaged over nodes.','0','30d','0','','46664','','','','','200','1','0','','','0','0','0','0','0','0','0','3503d33b5c35433093565aac0890c717','0','2','0'), ('46686','18','','10611','Network transmit, Bps','yugabytedb.cluster.network.transmit.bps','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The size of network packets transmitted per second, averaged over nodes.','0','30d','0','','46664','','','','','200','1','0','','','0','0','0','0','0','0','0','51e7acc58c824737af2b48475ede228d','0','2','0'), ('46687','18','','10611','Network transmit error, rate','yugabytedb.cluster.network.transmit.error.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of errors related to network packets transmitted per second, averaged over nodes.','0','30d','0','','46664','','','','','200','1','0','','','0','0','0','0','0','0','0','86c23bbe2d29444b85a6435508c53e28','0','2','0'), ('46688','18','','10611','Number of nodes','yugabytedb.cluster.node.number','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'How many nodes are in the cluster.','0','30d','0','','46662','','','','','200','1','0','','','0','0','0','0','0','0','0','a64c4ba3b34045aba315dbb500aa86c4','0','2','0'), ('46689','18','','10611','Clock skew','yugabytedb.cluster.node.skew','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The clock drift and skew across different nodes.','0','30d','0','','46664','','','','','200','1','0','','','0','0','0','0','0','0','0','c04d594c1a39437f8e5f47b42ccf9fba','0','2','0'), ('46690','18','','10611','Get cluster query statistic item error','yugabytedb.cluster.query.statistic.get.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Item for gathering all the cluster query statistics item errors.','0','30d','0','','46665','','','','','200','1','0','','','0','0','0','0','0','0','0','0d9d39db84de4879b6c0fac044537e55','0','2','0'), ('46691','18','','10611','Average read latency','yugabytedb.cluster.read.latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The average latency of read operations at the tablet level.','0','30d','0','','46664','','','','','200','1','0','','','0','0','0','0','0','0','0','e116d1dfe5c94a64b47c66b0898e2c5a','0','2','0'), ('46692','18','','10611','Software version','yugabytedb.cluster.software.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current version of YugabyteDB installed on the cluster.','0','30d','0','','46662','','','','','200','1','0','','','0','0','0','0','0','0','0','4fd495d88f824bd2b18a3c885dc45d28','0','2','0'), ('46693','18','','10611','State','yugabytedb.cluster.state','0','31d','365d','0','3','','','','',NULL,'1179','','','0','','','','','0',NULL,'The current state of the cluster. One of the following: - INVALID - QUEUED - INIT - BOOTSTRAPPING - VPC_PEERING - NETWORK_CREATING - PROVISIONING - CONFIGURING - CREATING_LB - UPDATING_LB - ACTIVE - PAUSING - PAUSED - RESUMING - UPDATING - MAINTENANCE - RESTORE - FAILED - CREATE_FAILED - DELETING - STARTING_NODE - STOPPING_NODE - REBOOTING_NODE - CREATE_READ_REPLICA_FAILED - DELETE_READ_REPLICA_FAILED - DELETE_CLUSTER_FAILED - EDIT_CLUSTER_FAILED - EDIT_READ_REPLICA_FAILED - PAUSE_CLUSTER_FAILED - RESUME_CLUSTER_FAILED - RESTORE_BACKUP_FAILED - CERTIFICATE_ROTATION_FAILED - UPGRADE_CLUSTER_FAILED - UPGRADE_CLUSTER_GFLAGS_FAILED - UPGRADE_CLUSTER_OS_FAILED - UPGRADE_CLUSTER_SOFTWARE_FAILED - START_NODE_FAILED - STOP_NODE_FAILED - REBOOT_NODE_FAILED - CONFIGURE_CMK - ENABLING_CMK - DISABLING_CMK - UPDATING_CMK - ROTATING_CMK - STOPPING_METRICS_EXPORTER - STARTING_METRICS_EXPORTER - CONFIGURING_METRICS_EXPORTER - STOP_METRICS_EXPORTER_FAILED - START_METRICS_EXPORTER_FAILED - CONFIGURE_METRICS_EXPORTER_FAILED - REMOVING_METRICS_EXPORTER - REMOVE_METRICS_EXPORTER_FAILED','0','30d','0','','46662','','','','','200','1','0','','','0','0','0','0','0','0','0','70e1cee9adc149afb7f1765384b587e2','0','2','0'), ('46694','18','','10611','Type','yugabytedb.cluster.type','0','31d','365d','0','3','','','','',NULL,'1180','','','0','','','','','0',NULL,'The kind of cluster deployment: SYNCHRONOUS or GEO_PARTITIONED.','0','30d','0','','46662','','','','','200','1','0','','','0','0','0','0','0','0','0','a9b902783af24e5f8d56139e803d85aa','0','2','0'), ('46695','18','','10611','Average write latency','yugabytedb.cluster.write.latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The average latency of write operations at the tablet level.','0','30d','0','','46664','','','','','200','1','0','','','0','0','0','0','0','0','0','fde822561b0c4a9196e52006c6ae459f','0','2','0'), ('46696','18','','10611','YB controller version','yugabytedb.cluster.ybc.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current version of the YB controller installed on the cluster.','0','30d','0','','46662','','','','','200','1','0','','','0','0','0','0','0','0','0','6e303d8bbd3540dcba8e6336e395df01','0','2','0'), ('46697','18','','10611','YCQL DELETE average latency','yugabytedb.cluster.ycql.delete.latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Average time of executing DELETE statements through the YCQL API.','0','30d','0','','46665','','','','','200','1','0','','','0','0','0','0','0','0','0','9034de71bb9a4d5babb77f4433deb9a1','0','2','0'), ('46698','18','','10611','YCQL DELETE OPS','yugabytedb.cluster.ycql.delete.ops','0','31d','365d','0','0','','!OPS','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of DELETE statements executed through the YCQL API per second. This does not include index writes.','0','30d','0','','46665','','','','','200','1','0','','','0','0','0','0','0','0','0','31473b597b274acc894bde4415efc1df','0','2','0'), ('46699','18','','10611','YCQL INSERT average latency','yugabytedb.cluster.ycql.insert.latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Average time of executing INSERT statements through the YCQL API.','0','30d','0','','46665','','','','','200','1','0','','','0','0','0','0','0','0','0','02b74ef8873a464786ff68b80fa2bc72','0','2','0'), ('46700','18','','10611','YCQL INSERT OPS','yugabytedb.cluster.ycql.insert.ops','0','31d','365d','0','0','','!OPS','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of INSERT statements executed through the YCQL API per second. This does not include index writes.','0','30d','0','','46665','','','','','200','1','0','','','0','0','0','0','0','0','0','bc9776051ac5494da1450837ce2541f0','0','2','0'), ('46701','18','','10611','YCQL OTHER average latency','yugabytedb.cluster.ycql.other.latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Average time of executing OTHER statements through the YCQL API.','0','30d','0','','46665','','','','','200','1','0','','','0','0','0','0','0','0','0','267399592fef42c58b5885d1fc4e821d','0','2','0'), ('46702','18','','10611','YCQL OTHER OPS','yugabytedb.cluster.ycql.other.ops','0','31d','365d','0','0','','!OPS','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of OTHER statements executed through the YCQL API per second.','0','30d','0','','46665','','','','','200','1','0','','','0','0','0','0','0','0','0','8e6f1197d23e4398a40c08232ecbaf88','0','2','0'), ('46703','18','','10611','YCQL SELECT average latency','yugabytedb.cluster.ycql.select.latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Average time of executing SELECT statements through the YCQL API.','0','30d','0','','46665','','','','','200','1','0','','','0','0','0','0','0','0','0','438badfcc37c437f94988a211fc1ca1d','0','2','0'), ('46704','18','','10611','YCQL SELECT OPS','yugabytedb.cluster.ycql.select.ops','0','31d','365d','0','0','','!OPS','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of SELECT statements executed through the YCQL API per second. This does not include index writes.','0','30d','0','','46665','','','','','200','1','0','','','0','0','0','0','0','0','0','e663d79a6b404c9fb369c213f51a2f62','0','2','0'), ('46705','18','','10611','YCQL transaction average latency','yugabytedb.cluster.ycql.transaction.latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Average time of executing transactions through the YCQL API.','0','30d','0','','46665','','','','','200','1','0','','','0','0','0','0','0','0','0','e0a86eaf9be4426c9ae8948980cf9855','0','2','0'), ('46706','18','','10611','YCQL transaction OPS','yugabytedb.cluster.ycql.transaction.ops','0','31d','365d','0','0','','!OPS','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of transactions executed through the YCQL API per second.','0','30d','0','','46665','','','','','200','1','0','','','0','0','0','0','0','0','0','4b81ff96ce054cd480073217281eedf7','0','2','0'), ('46707','18','','10611','YCQL UPDATE average latency','yugabytedb.cluster.ycql.update.latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Average time of executing UPDATE statements through the YCQL API.','0','30d','0','','46665','','','','','200','1','0','','','0','0','0','0','0','0','0','c5af4d0a6cb44292882071bcfb39f689','0','2','0'), ('46708','18','','10611','YCQL UPDATE OPS','yugabytedb.cluster.ycql.update.ops','0','31d','365d','0','0','','!OPS','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of UPDATE statements executed through the YCQL API per second. This does not include index writes.','0','30d','0','','46665','','','','','200','1','0','','','0','0','0','0','0','0','0','6120fea6606f4a98ac417559e80aad13','0','2','0'), ('46709','18','','10611','YSQL DELETE average latency','yugabytedb.cluster.ysql.delete.latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Average time of executing DELETE statements through the YSQL API.','0','30d','0','','46665','','','','','200','1','0','','','0','0','0','0','0','0','0','662f390c33154db199f13a065f68eebf','0','2','0'), ('46710','18','','10611','YSQL DELETE OPS','yugabytedb.cluster.ysql.delete.ops','0','31d','365d','0','0','','!OPS','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of DELETE statements executed through the YSQL API per second. This does not include index writes.','0','30d','0','','46665','','','','','200','1','0','','','0','0','0','0','0','0','0','3a6e9b4837c44babb020fe1e579db573','0','2','0'), ('46711','18','','10611','YSQL INSERT average latency','yugabytedb.cluster.ysql.insert.latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Average time of executing INSERT statements through the YSQL API.','0','30d','0','','46665','','','','','200','1','0','','','0','0','0','0','0','0','0','e0dda63d599041a8b9781da7c4b52433','0','2','0'), ('46712','18','','10611','YSQL INSERT OPS','yugabytedb.cluster.ysql.insert.ops','0','31d','365d','0','0','','!OPS','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of INSERT statements executed through the YSQL API per second. This does not include index writes.','0','30d','0','','46665','','','','','200','1','0','','','0','0','0','0','0','0','0','8074080c8e7244eaaf4353a92a80a82a','0','2','0'), ('46713','18','','10611','YSQL OTHER average latency','yugabytedb.cluster.ysql.other.latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Average time of executing OTHER statements through the YSQL API.','0','30d','0','','46665','','','','','200','1','0','','','0','0','0','0','0','0','0','e007bb3d98fd4442ab84a2227be63e8b','0','2','0'), ('46714','18','','10611','YSQL OTHER OPS','yugabytedb.cluster.ysql.other.ops','0','31d','365d','0','0','','!OPS','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of OTHER statements executed through the YSQL API per second.','0','30d','0','','46665','','','','','200','1','0','','','0','0','0','0','0','0','0','502162acb66941d19b567a5172a56600','0','2','0'), ('46715','18','','10611','YSQL SELECT average latency','yugabytedb.cluster.ysql.select.latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Average time of executing SELECT statements through the YSQL API.','0','30d','0','','46665','','','','','200','1','0','','','0','0','0','0','0','0','0','9d6bea98b3a54bdbbe2b141417148927','0','2','0'), ('46716','18','','10611','YSQL SELECT OPS','yugabytedb.cluster.ysql.select.ops','0','31d','365d','0','0','','!OPS','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of SELECT statements executed through the YSQL API per second. This does not include index writes.','0','30d','0','','46665','','','','','200','1','0','','','0','0','0','0','0','0','0','03053740519b4756886897b45ed3f73c','0','2','0'), ('46717','18','','10611','YSQL transaction average latency','yugabytedb.cluster.ysql.transaction.latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Average time of executing transactions through the YSQL API.','0','30d','0','','46665','','','','','200','1','0','','','0','0','0','0','0','0','0','57a5c002be714c8da7afc0d30d9a891d','0','2','0'), ('46718','18','','10611','YSQL transaction OPS','yugabytedb.cluster.ysql.transaction.ops','0','31d','365d','0','0','','!OPS','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of transactions executed through the YSQL API per second.','0','30d','0','','46665','','','','','200','1','0','','','0','0','0','0','0','0','0','bd63dbe655734d66bbf9409500cc4a3f','0','2','0'), ('46719','18','','10611','YSQL UPDATE average latency','yugabytedb.cluster.ysql.update.latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Average time of executing UPDATE statements through the YSQL API.','0','30d','0','','46665','','','','','200','1','0','','','0','0','0','0','0','0','0','02b4d8b704754dab83188bced7f5d98e','0','2','0'), ('46720','18','','10611','YSQL UPDATE OPS','yugabytedb.cluster.ysql.update.ops','0','31d','365d','0','0','','!OPS','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of UPDATE statements executed through the YSQL API per second. This does not include index writes.','0','30d','0','','46665','','','','','200','1','0','','','0','0','0','0','0','0','0','2557d7cf5f0d429886999d6eba2d9182','0','2','0'), ('46721','18','','10611','Get keyspace item error','yugabytedb.keyspace.get.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Item for gathering all the keyspace item errors.','0','30d','0','','46666','','','','','200','1','0','','','0','0','0','0','0','0','0','59f34be153c049ecac1c4e08487a18c0','0','2','0'), ('46722','18','','10611','Get node item error','yugabytedb.node.get.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Item for gathering all the node item errors.','0','30d','0','','46667','','','','','200','1','0','','','0','0','0','0','0','0','0','401d87f7dace497699df56f749bf821e','0','2','0'), ('46723','18','','10610','Cluster discovery','yugabytedb.cluster.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of the available clusters.','0','7d','0','','46659','','','','','200','1','0','','','0','0','0','0','0','0','0','b882ad93a75046b09794c7f229482006','0','2','0'), ('46724','18','','10611','Keyspace discovery','yugabytedb.keyspace.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of the available keyspaces.','0','7d','0','','46666','','','','','200','1','0','','','0','0','0','0','0','0','0','71d2f03d4657413fa8eabe5d411bed25','0','2','0'), ('46725','18','','10611','Node discovery','yugabytedb.node.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of the nodes for all clusters.','0','7d','0','','46667','','','','','200','1','0','','','0','0','0','0','0','0','0','dc4c32c8868e4dd0b02c2fec843b5dac','0','2','0'), ('46727','18','','10611','YugabyteDB Keyspace [{#KEYSPACE.NAME}]: Get keyspace info','yugabytedb.keyspace.get[{#KEYSPACE.NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get raw data about the keyspace [{#KEYSPACE.NAME}].','0','30d','0','','46666','','','','','200','1','0','','','0','0','0','0','0','0','0','c1e48062d9ee4bbebd170370216d477a','0','2','0'), ('46728','18','','10611','YugabyteDB Node [{#NODE.NAME}]: Total CPU cores','yugabytedb.node.cpu.num.cores[{#NODE.NAME}]','0','31d','365d','0','3','','Cores','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of cores for the node [{#NODE.NAME}].','0','30d','0','','46662','','','','','200','1','0','','','0','0','0','0','0','0','0','a7b100dd55e6406cb481762f2fb7c421','0','2','0'), ('46729','18','','10611','YugabyteDB Node [{#NODE.NAME}]: Total disk size','yugabytedb.node.disk.size.total[{#NODE.NAME}]','0','31d','365d','0','3','','!GB','','',NULL,NULL,'','','0','','','','','2',NULL,'The disk size (GB) for the node [{#NODE.NAME}].','0','30d','0','','46662','','','','','200','1','0','','','0','0','0','0','0','0','0','0a540fa45f33410fb93fd750717ae431','0','2','0'), ('46730','18','','10611','YugabyteDB Node [{#NODE.NAME}]: Get node info','yugabytedb.node.get[{#NODE.NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get raw data about the node [{#NODE.NAME}].','0','30d','0','','46667','','','','','200','1','0','','','0','0','0','0','0','0','0','f2c813fba0394826abcb35a50b773a41','0','2','0'), ('46731','18','','10611','YugabyteDB Node [{#NODE.NAME}]: Disk IOPS limit','yugabytedb.node.iops.limit[{#NODE.NAME}]','0','31d','365d','0','3','','!IOPS','','',NULL,NULL,'','','0','','','','','2',NULL,'The IOPS to provision for the node [{#NODE.NAME}] for each disk.','0','30d','0','','46662','','','','','200','1','0','','','0','0','0','0','0','0','0','9fa8a6a8476e485c8eebeeaa5763c3c5','0','2','0'), ('46732','18','','10611','YugabyteDB Node [{#NODE.NAME}]: Total memory, bytes','yugabytedb.node.memory.total[{#NODE.NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of RAM for the node [{#NODE.NAME}].','0','30d','0','','46662','','','','','200','1','0','','','0','0','0','0','0','0','0','a75c7247ac654dc6b62ea88c9f609804','0','2','0'), ('46760','18','','10613','Load average (1m avg)','system.cpu.load.avg1','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB Average number of processes being executed or waiting over the last minute.','0','30d','0','','49947','','','','','200','1','0','','','0','0','0','0','0','0','0','4b659e86f18146ca877b595c3151368a','0','2','0'), ('46761','18','','10613','Load average (5m avg)','system.cpu.load.avg5','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB Average number of processes being executed or waiting over the last 5 minutes.','0','30d','0','','49947','','','','','200','1','0','','','0','0','0','0','0','0','0','534ad1fb2bec4db5aa25de1a42f28dc6','0','2','0'), ('46762','18','','10613','Load average (15m avg)','system.cpu.load.avg15','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: UCD-SNMP-MIB Average number of processes being executed or waiting over the last 15 minutes.','0','30d','0','','49947','','','','','200','1','0','','','0','0','0','0','0','0','0','f23f2785833b4096ad65114c40fdaa9b','0','2','0'), ('46787','18','','10613','CPU discovery','cpu.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'For discovering CPU from CHECKPOINT-MIB.','0','7d','0','','46768','','','','','200','1','0','','','0','0','0','0','0','0','0','2457ecd2b2ad4a2a815c11bf37c3f029','0','2','0'), ('46788','18','','10613','FAN discovery','fan.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'For discovering fan sensors from CHECKPOINT-MIB.','0','7d','0','','46751','','','','','200','1','0','','','0','0','0','0','0','0','0','7af85b5904c54687ad9f249cb1a9ad7b','0','2','0'), ('46790','18','','10613','Network interfaces discovery','net.if.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'For discovering interfaces from IF-MIB.','0','7d','1','','46749','','','','','200','1','0','','','0','0','0','0','0','0','0','f53944b3106843c896816bd3e73832fa','0','2','0'), ('46791','18','','10613','PSU discovery','psu.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'For discovering power supply sensors from CHECKPOINT-MIB.','0','7d','0','','46752','','','','','200','1','0','','','0','0','0','0','0','0','0','0b206f11e8644cfa99e61aa79427820d','0','2','0'), ('46792','18','','10613','Software blades discovery','svn.sw.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'For discovering software blades and features from CHECKPOINT-MIB.','0','7d','1','','46756','','','','','200','1','0','','','0','0','0','0','0','0','0','0ac2ae2dfe3947e1b753500036dc790d','0','2','0'), ('46793','18','','10613','Temperature discovery','temperature.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'For discovering temperature sensors from CHECKPOINT-MIB.','0','7d','1','','46753','','','','','200','1','0','','','0','0','0','0','0','0','0','6f54b4025d4b47ffa1cf11652cd94e63','0','2','0'), ('46794','18','','10613','Storage discovery','vfs.fs.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'For discovering storage disks from CHECKPOINT-MIB.','0','7d','1','','46777','','','','','200','1','0','','','0','0','0','0','0','0','0','46d85303a18f48aa81f09278b0d47a35','0','2','0'), ('46795','18','','10613','Voltage discovery','voltage.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'For discovering voltage sensors from CHECKPOINT-MIB.','0','7d','1','','46754','','','','','200','1','0','','','0','0','0','0','0','0','0','61e3a11989a5424a8d4dd2bf67b97526','0','2','0'), ('46796','18','','10613','VPN discovery','vpn.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'For discovering VPN tunnels from CHECKPOINT-MIB.','0','7d','1','','46785','','','','','200','1','0','','','0','0','0','0','0','0','0','842341dc7bf64939a3c6a0848b3604a6','0','2','0'), ('46808','18','','10613','CPU Core {#CPU.ID}: CPU idle time','system.core.idle[multiProcIdleTime.{#CPU.ID}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CHECKPOINT-MIB The time the CPU `{#CPU.ID}` has spent doing nothing.','0','30d','0','','46768','','','','','200','1','0','','','0','0','0','0','0','0','0','0d17d7831b954decada6fba5f14f9265','0','2','0'), ('46809','18','','10613','CPU Core {#CPU.ID}: CPU system time','system.core.system[multiProcSystemTime.{#CPU.ID}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CHECKPOINT-MIB The time the CPU `{#CPU.ID}` has spent running the kernel and its processes.','0','30d','0','','46768','','','','','200','1','0','','','0','0','0','0','0','0','0','ce72097a6de44bc7b02f21e065f19a7b','0','2','0'), ('46810','18','','10613','CPU Core {#CPU.ID}: CPU user time','system.core.user[multiProcUserTime.{#CPU.ID}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CHECKPOINT-MIB The time the CPU `{#CPU.ID}` has spent running user processes that are not niced.','0','30d','0','','46768','','','','','200','1','0','','','0','0','0','0','0','0','0','a1e8f16be14e4efbb0c6333aded1c761','0','2','0'), ('46811','18','','10613','CPU Core {#CPU.ID}: CPU utilization','system.core.util[multiProcUsage.{#CPU.ID}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CHECKPOINT-MIB CPU `{#CPU.ID}` utilization in %.','0','30d','0','','46768','','','','','200','1','0','','','0','0','0','0','0','0','0','54c95169f93a497c9ba4b83874ec85ea','0','2','0'), ('46812','18','','10613','FAN {#SNMPINDEX}: Fan speed','sensor.fan.speed[fanSpeedSensorValue.{#SNMPINDEX}]','0','31d','365d','0','0','','!{#FAN.UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CHECKPOINT-MIB Current speed of the fan.','0','30d','0','','46751','','','','','200','1','0','','','0','0','0','0','0','0','0','4d334701a73a4295a7b3a45a7925ed76','0','2','0'), ('46813','18','','10613','FAN {#SNMPINDEX}: Fan status','sensor.fan.status[fanSpeedSensorStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1184','','','0','','','','','2',NULL,'MIB: CHECKPOINT-MIB Current status of the fan tray.','0','30d','0','','46751','','','','','200','1','0','','','0','0','0','0','0','0','0','5421e274306148b694ed5866bb4bff27','0','2','0'), ('46814','18','','10613','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of `ifCounterDiscontinuityTime`.','0','30d','0','','46749','','','','','200','1','0','','','0','0','0','0','0','0','0','fa2d9726b0ce42c6ac16d61a8abbe8c6','0','2','0'), ('46815','18','','10613','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces - the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces - the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system and at other times as indicated by the value of `ifCounterDiscontinuityTime`.','0','30d','0','','46749','','','','','200','1','0','','','0','0','0','0','0','0','0','9527d631a5a2434f8bdd9616bf62efd4','0','2','0'), ('46816','18','','10613','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of `ifInOctets`. Discontinuities in the value of this counter can occur at re-initialization of the management system and at other times as indicated by the value of `ifCounterDiscontinuityTime`.','0','30d','0','','46749','','','','','200','1','0','','','0','0','0','0','0','0','0','42c3b17b9d0041719afa0c8acc66e20f','0','2','0'), ('46817','18','','10613','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of `ifCounterDiscontinuityTime`.','0','30d','0','','46749','','','','','200','1','0','','','0','0','0','0','0','0','0','9e4a88ba65964ce4b7fc91923a0d2e15','0','2','0'), ('46818','18','','10613','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces - the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces - the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system and at other times as indicated by the value of `ifCounterDiscontinuityTime`.','0','30d','0','','46749','','','','','200','1','0','','','0','0','0','0','0','0','0','29ba2aa7f8c04ece9f0fe8884cc480a0','0','2','0'), ('46819','18','','10613','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of `ifOutOctets`. Discontinuities in the value of this counter can occur at re-initialization of the management system and at other times as indicated by the value of `ifCounterDiscontinuityTime`.','0','30d','0','','46749','','','','','200','1','0','','','0','0','0','0','0','0','0','552579d5a30e4543b4984a46575675eb','0','2','0'), ('46820','18','','10613','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces that do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','30d','0','','46749','','','','','200','1','0','','','0','0','0','0','0','0','0','feca9e6449a04708bdfeee36f2731625','0','2','0'), ('46821','18','','10613','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1186','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The `testing(3)` state indicates that no operational packets can be passed. - If `ifAdminStatus` is `down(2)`, then `ifOperStatus` should be `down(2)`. - If `ifAdminStatus` is changed to `up(1)`, then `ifOperStatus` should change to `up(1)` if the interface is ready to transmit and receive network traffic. - It should change to `dormant(5)` if the interface is waiting for external actions (such as a serial line waiting for an incoming connection). - It should remain in the `down(2)` state if and only if there is a fault that prevents it from going to the `up(1)` state. - It should remain in the `notPresent(6)` state if the interface has missing (typically, hardware) components.','0','30d','0','','46749','','','','','200','1','0','','','0','0','0','0','0','0','0','af3dc7efefb34141a0075f308ef51dd6','0','2','0'), ('46822','18','','10613','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1187','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for `ifType` are assigned by the Internet Assigned Numbers Authority (IANA) through updating the syntax of the IANAifType textual convention.','0','30d','0','','46749','','','','','200','1','0','','','0','0','0','0','0','0','0','e364e61d77c3470496010dc444cff029','0','2','0'), ('46823','18','','10613','PSU {#SNMPINDEX}: Power supply status','sensor.psu.status[powerSupplyStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1188','','','0','','','','','2',NULL,'MIB: CHECKPOINT-MIB Power supply status.','0','30d','0','','46752','','','','','200','1','0','','','0','0','0','0','0','0','0','49b166c588354a00ad500c2181de2602','0','2','0'), ('46824','18','','10613','{#SW.NAME}: License expiration date','svn.sw.license.exp_date[licensingExpirationDate.{#SNMPINDEX}]','0','31d','0','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CHECKPOINT-MIB Expiration date for the license of the software blade. Doesn''t return a value if the license doesn''t have an expiration date.','0','30d','0','','46756','','','','','200','1','0','','','0','0','0','0','0','0','0','6024b29ddca34a99a052a4dc8961ca02','0','2','0'), ('46825','18','','10613','{#SW.NAME}: License total quota','svn.sw.license.quota.total[licensingTotalQuota.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CHECKPOINT-MIB Total quota amount for the license of the software blade.','0','30d','0','','46756','','','','','200','1','0','','','0','0','0','0','0','0','0','24c7853fe8c84d0892f81fea4254e6bb','0','2','0'), ('46826','18','','10613','{#SW.NAME}: License used quota','svn.sw.license.quota.used[licensingUsedQuota.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CHECKPOINT-MIB Used quota amount for the license of the software blade.','0','30d','0','','46756','','','','','200','1','0','','','0','0','0','0','0','0','0','6b4c5c62f0fd4cc990c6c5fc742bcb86','0','2','0'), ('46827','18','','10613','{#SW.NAME}: License state','svn.sw.license.state[licensingState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CHECKPOINT-MIB Current license state of the software blade.','0','30d','0','','46756','','','','','200','1','0','','','0','0','0','0','0','0','0','d25b27b9d698446dae7a7c2abb12f196','0','2','0'), ('46828','18','','10613','{#SW.NAME}: Software blade status','svn.sw.status[licensingBladeActive.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CHECKPOINT-MIB Current software blade status.','0','30d','0','','46756','','','','','200','1','0','','','0','0','0','0','0','0','0','82216d7434834659afa14303a4e7cbcb','0','2','0'), ('46829','18','','10613','{#SENSOR.NAME}: Temperature','sensor.temp.value[tempertureSensorValue.{#SNMPINDEX}]','0','31d','365d','0','0','','!°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CHECKPOINT-MIB Current temperature reading in degrees Celsius from the hardware component''s temperature sensor.','0','30d','0','','46753','','','','','200','1','0','','','0','0','0','0','0','0','0','f78ffa1229b746d989899af95c5687b5','0','2','0'), ('46830','18','','10613','{#DISK.NAME}: Available disk space','vfs.fs.avail[multiDiskFreeAvailableBytes.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CHECKPOINT-MIB Available free disk (not reserved by the OS) in bytes.','0','30d','0','','46777','','','','','200','1','0','','','0','0','0','0','0','0','0','6a0fded5672b4863a273d39c93962c4e','0','2','0'), ('46831','18','','10613','{#DISK.NAME}: Free disk space','vfs.fs.free[multiDiskFreeTotalBytes.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CHECKPOINT-MIB Free disk capacity in bytes.','0','30d','0','','46777','','','','','200','1','0','','','0','0','0','0','0','0','0','811cb45579d94ea2ae3bbe8ee8fbb727','0','2','0'), ('46832','18','','10613','{#DISK.NAME}: Disk space utilization','vfs.fs.pused[multiDiskUsagePercent.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Space utilization calculated by the free percentage metric `multiDiskFreeTotalPercent`, expressed in %','0','30d','0','','46777','','','','','200','1','0','','','0','0','0','0','0','0','0','42947b9cf263429397e2d2bfb5b7253d','0','2','0'), ('46833','18','','10613','{#DISK.NAME}: Total disk space','vfs.fs.total[multiDiskSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CHECKPOINT-MIB Total disk size in bytes.','0','30d','0','','46777','','','','','200','1','0','','','0','0','0','0','0','0','0','e171f238b9394dbbbc1bf3a80cb1f648','0','2','0'), ('46834','18','','10613','{#DISK.NAME}: Used disk space','vfs.fs.used[multiDiskUsed.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CHECKPOINT-MIB Amount of disk used in bytes.','0','30d','0','','46777','','','','','200','1','0','','','0','0','0','0','0','0','0','d59f1f4f508741f0a33c47d61321afb4','0','2','0'), ('46835','18','','10613','{#SENSOR.NAME}: Voltage value','sensor.volt.value[voltageSensorValue.{#SNMPINDEX}]','0','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CHECKPOINT-MIB Most recent measurement obtained by the agent for this sensor.','0','30d','0','','46754','','','','','200','1','0','','','0','0','0','0','0','0','0','a302aefd0ea5499ea6d916929b4d45dc','0','2','0'), ('46836','18','','10613','VPN {#VPN.NAME}: Community','vpn.tunnel.community[tunnelCommunity.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CHECKPOINT-MIB VPN tunnel community.','0','30d','0','','46785','','','','','200','1','0','','','0','0','0','0','0','0','0','35acb99d29714edb88df244b006e8cd3','0','2','0'), ('46837','18','','10613','VPN {#VPN.NAME}: Tunnel interface','vpn.tunnel.netif[tunnelInterface.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CHECKPOINT-MIB VPN tunnel interface.','0','30d','0','','46785','','','','','200','1','0','','','0','0','0','0','0','0','0','9498260975dd4a6fb9e7d03e5fab6ee2','0','2','0'), ('46838','18','','10613','VPN {#VPN.NAME}: Peer IP address','vpn.tunnel.peer_ip[tunnelPeerIpAddr.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CHECKPOINT-MIB VPN peer IP address.','0','30d','0','','46785','','','','','200','1','0','','','0','0','0','0','0','0','0','a0e98320c4834a74ab042e8b48331dc9','0','2','0'), ('46839','18','','10613','VPN {#VPN.NAME}: Peer type','vpn.tunnel.peer_type[tunnelPeerType.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1191','','','0','','','','','2',NULL,'MIB: CHECKPOINT-MIB VPN peer type.','0','30d','0','','46785','','','','','200','1','0','','','0','0','0','0','0','0','0','95c9d89c3d3f468ba08f6f1cef68d2a0','0','2','0'), ('46840','18','','10613','VPN {#VPN.NAME}: Link priority','vpn.tunnel.priority[tunnelLinkPriority.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1190','','','0','','','','','2',NULL,'MIB: CHECKPOINT-MIB Link priority.','0','30d','0','','46785','','','','','200','1','0','','','0','0','0','0','0','0','0','6bc95f169f2c47c0b208ddd28431a88a','0','2','0'), ('46841','18','','10613','VPN {#VPN.NAME}: Probing state','vpn.tunnel.prob_state[tunnelProbState.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1192','','','0','','','','','2',NULL,'MIB: CHECKPOINT-MIB VPN tunnel probing state: 0 - unknown 1 - alive 2 - dead','0','30d','0','','46785','','','','','200','1','0','','','0','0','0','0','0','0','0','667ffd215887414d9bfa39b40c9aa504','0','2','0'), ('46842','18','','10613','VPN {#VPN.NAME}: Source IP','vpn.tunnel.src_ip[tunnelSourceIpAddr.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: CHECKPOINT-MIB Source IP address.','0','30d','0','','46785','','','','','200','1','0','','','0','0','0','0','0','0','0','05967af892db4b8980b8c6b69204aa9d','0','2','0'), ('46843','18','','10613','VPN {#VPN.NAME}: Tunnel state','vpn.tunnel.state[tunnelState.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1193','','','0','','','','','2',NULL,'MIB: CHECKPOINT-MIB VPN tunnel state: 3 - active 4 - destroy 129 - idle 130 - phase1 131 - down 132 - init','0','30d','0','','46785','','','','','200','1','0','','','0','0','0','0','0','0','0','d4eb1c51226e41cfb08312ea87002d5a','0','2','0'), ('46844','18','','10613','VPN {#VPN.NAME}: Tunnel type','vpn.tunnel.type[tunnelType.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1194','','','0','','','','','2',NULL,'MIB: CHECKPOINT-MIB VPN tunnel type.','0','30d','0','','46785','','','','','200','1','0','','','0','0','0','0','0','0','0','9e723441c22c4d62b98173cab83589d9','0','2','0'), ('46862','18','','10614','Database availability','oci.aut.db.availability','0','31d','365d','0','0','','','','',NULL,'1197','','','0','','','','','0',NULL,'The database is available for connections in the given minute.','0','7d','0','','46846','','','','','200','1','0','','','0','0','0','0','0','0','0','8520813edccc4fb9ba975c27914c5633','0','2','0'), ('46863','18','','10614','DB block changes','oci.aut.db.block.changes','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of changes that were part of an update or delete operation that were made to all blocks in the SGA. Such changes generate redo log entries and thus become permanent changes to the database if the transaction is committed. This statistic approximates total database work and indicates the rate at which buffers are being dirtied during the selected time interval.','0','7d','0','','46845','','','','','200','1','0','','','0','0','0','0','0','0','0','038c4b2c000747799b60cb074aebbce5','0','2','0'), ('46864','18','','10614','Failed connections','oci.aut.db.conn.failed','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of failed database connections.','0','7d','0','','46845','','','','','200','1','0','','','0','0','0','0','0','0','0','a471a74943b24a4a81347404e37b7359','0','2','0'), ('46865','18','','10614','CPU time','oci.aut.db.cpu.time','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Average rate of accumulation of CPU time by foreground sessions in the database over the selected time interval.','0','7d','0','','46845','','','','','200','1','0','','','0','0','0','0','0','0','0','cc1244e911314e9aaa6a995636848809','0','2','0'), ('46866','18','','10614','CPU utilization, in %','oci.aut.db.cpu.util','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The CPU usage expressed as a percentage, aggregated across all consumer groups. The utilization percentage is reported with respect to the number of CPUs the database is allowed to use.','0','7d','0','','46845','','','','','200','1','0','','','0','0','0','0','0','0','0','da165d0adf324b9e98390d122925fd67','0','2','0'), ('46867','18','','10614','Execute count','oci.aut.db.exec.count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of user and recursive calls that executed SQL statements during the selected time interval.','0','7d','0','','46845','','','','','200','1','0','','','0','0','0','0','0','0','0','47708f3446644bbc9afd11bd0e98d1f5','0','2','0'), ('46868','18','','10614','Connection latency','oci.aut.db.latency.conn','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The time taken to connect to an Oracle Autonomous Database Serverless instance in each region from a Compute service virtual machine in the same region.','0','7d','0','','46846','','','','','200','1','0','','','0','0','0','0','0','0','0','4a1af0cbea8645cc897d64e3c1ac802e','0','2','0'), ('46869','18','','10614','Query latency','oci.aut.db.latency.query','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The time taken to display the results of a simple query on the user''s screen.','0','7d','0','','46846','','','','','200','1','0','','','0','0','0','0','0','0','0','e233b1ab82384297b9ee88556969da31','0','2','0'), ('46870','18','','10614','Session logical reads','oci.aut.db.logical.reads.session','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The sum of `db block gets` and `consistent gets` during the selected time interval. This includes logical reads of database blocks from either the buffer cache or process private memory.','0','7d','0','','46845','','','','','200','1','0','','','0','0','0','0','0','0','0','b39b36b4a72b4cbf80584614c3d996ed','0','2','0'), ('46871','18','','10614','Current logons','oci.aut.db.logons','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of successful logons during the selected time interval.','0','7d','0','','46845','','','','','200','1','0','','','0','0','0','0','0','0','0','27b77344e5fc473693e48eb676ceb746','0','2','0'), ('46872','18','','10614','Failed logons','oci.aut.db.logons.failed','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of logons that failed because of an invalid user name and/or password during the selected time interval.','0','7d','0','','46845','','','','','200','1','0','','','0','0','0','0','0','0','0','f4c0af10cea04decbb049c02f06795e4','0','2','0'), ('46873','18','','10614','Parse count (failures)','oci.aut.db.parse.count.failed','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of parse failures during the selected time interval.','0','7d','0','','46845','','','','','200','1','0','','','0','0','0','0','0','0','0','8ca09dafd8a744489ac122d995367a76','0','2','0'), ('46874','18','','10614','Parse count (hard)','oci.aut.db.parse.count.hard','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of parse calls (real parses) during the selected time interval. A hard parse is an expensive operation in terms of memory use as it requires Oracle to allocate a workheap and other memory structures and then build a parse tree.','0','7d','0','','46845','','','','','200','1','0','','','0','0','0','0','0','0','0','0f052e0dd75d4ae190c3b87581e29136','0','2','0'), ('46875','18','','10614','Parse count (total)','oci.aut.db.parse.count.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of hard and soft parses during the selected time interval.','0','7d','0','','46845','','','','','200','1','0','','','0','0','0','0','0','0','0','d5097f4c85ee40608ca8096f1d5f81c1','0','2','0'), ('46876','18','','10614','Physical read total bytes','oci.aut.db.physical.read.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The size in bytes of disk reads by all database instance activity including application reads, backup and recovery, and other utilities during the selected time interval.','0','7d','0','','46845','','','','','200','1','0','','','0','0','0','0','0','0','0','db1b10f32442428b89a0437176b94906','0','2','0'), ('46877','18','','10614','Physical reads','oci.aut.db.physical.reads','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of data blocks read from disk during the selected time interval.','0','7d','0','','46845','','','','','200','1','0','','','0','0','0','0','0','0','0','a0e9f2b67c364a8baecc611ff1637399','0','2','0'), ('46878','18','','10614','Physical write total bytes','oci.aut.db.physical.write.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The size in bytes of all disk writes for the database instance including application activity, backup and recovery, and other utilities during the selected time interval.','0','7d','0','','46845','','','','','200','1','0','','','0','0','0','0','0','0','0','81f85ed2baa44bb3a0b05255cc866c3e','0','2','0'), ('46879','18','','10614','Physical writes','oci.aut.db.physical.writes','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of data blocks written to disk during the selected time interval.','0','7d','0','','46845','','','','','200','1','0','','','0','0','0','0','0','0','0','2b9998f8dd7d493496146d10fff0a5ee','0','2','0'), ('46880','18','','10614','Queued statements','oci.aut.db.queued.statements','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of queued SQL statements aggregated across all consumer groups during the selected time interval.','0','7d','0','','46845','','','','','200','1','0','','','0','0','0','0','0','0','0','2acac07f1c30472a84b8864a6cfa7985','0','2','0'), ('46881','18','','10614','Redo generated','oci.aut.db.redo.gen','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Amount of redo generated in bytes during the selected time interval.','0','7d','0','','46845','','','','','200','1','0','','','0','0','0','0','0','0','0','0f79764cca3f45688d79bb79c762ef99','0','2','0'), ('46882','18','','10614','Sessions','oci.aut.db.sessions','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of sessions in the database.','0','7d','0','','46845','','','','','200','1','0','','','0','0','0','0','0','0','0','11ca43167a374fe99eab91817957a3fb','0','2','0'), ('46883','18','','10614','Bytes received via SQL*Net from client','oci.aut.db.sqlnet.bytes.recv.client','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of bytes received from the client over Oracle Net Services during the selected time interval.','0','7d','0','','46845','','','','','200','1','0','','','0','0','0','0','0','0','0','a71a6114736f4ce89425ed8de504140d','0','2','0'), ('46884','18','','10614','Bytes received via SQL*Net from DBLink','oci.aut.db.sqlnet.bytes.recv.dblink','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of bytes received from a database link over Oracle Net Services during the selected time interval.','0','7d','0','','46845','','','','','200','1','0','','','0','0','0','0','0','0','0','a1555ae851e1432c94169e430a782c7d','0','2','0'), ('46885','18','','10614','Bytes sent via SQL*Net to client','oci.aut.db.sqlnet.bytes.sent.client','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of bytes sent to the client from the foreground processes during the selected time interval.','0','7d','0','','46845','','','','','200','1','0','','','0','0','0','0','0','0','0','35cdcf2b736745708910f2389a64670d','0','2','0'), ('46886','18','','10614','Bytes sent via SQL*Net to DBLink','oci.aut.db.sqlnet.bytes.sent.dblink','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of bytes sent over a database link during the selected time interval.','0','7d','0','','46845','','','','','200','1','0','','','0','0','0','0','0','0','0','5cc3975e76a842b89a7c6d2ac5108b8c','0','2','0'), ('46887','18','','10614','Running statements','oci.aut.db.statements.running','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of running SQL statements aggregated across all consumer groups during the selected time interval.','0','7d','0','','46845','','','','','200','1','0','','','0','0','0','0','0','0','0','6111b1843fe94fefbf1ca1d530832d39','0','2','0'), ('46888','18','','10614','Storage space allocated','oci.aut.db.storage.space.alloc','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Amount of space allocated to the database for all tablespaces during the selected time interval.','0','7d','0','','46847','','','','','200','1','0','','','0','0','0','0','0','0','0','7901279fcb2a4f6285874680ed5f55f5','0','2','0'), ('46889','18','','10614','Maximum storage space','oci.aut.db.storage.space.max','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum amount of storage reserved for the database during the selected time interval.','0','7d','0','','46847','','','','','200','1','0','','','0','0','0','0','0','0','0','9dd27df012b24019ad2562822b471a25','0','2','0'), ('46890','18','','10614','Storage space used','oci.aut.db.storage.space.used','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum amount of space used during the selected time interval.','0','7d','0','','46847','','','','','200','1','0','','','0','0','0','0','0','0','0','e5378b6a3d33462eb4f3ed6228532d10','0','2','0'), ('46891','18','','10614','Storage utilization, in %','oci.aut.db.storage.space.util','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of the reserved maximum storage currently allocated for all database tablespaces. Represents the total reserved space for all tablespaces.','0','7d','0','','46847','','','','','200','1','0','','','0','0','0','0','0','0','0','5cad114ed74341199a4d3ef17c9acd8e','0','2','0'), ('46892','18','','10614','DB time','oci.aut.db.time','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time database user sessions spend executing database code (CPU time + wait time). Database time is used to infer database call latency as it increases in direct proportion to both database call latency (response time) and call volume. It is calculated as the average rate of accumulation of database time by foreground sessions in the database over the selected time interval.','0','7d','0','','46845','','','','','200','1','0','','','0','0','0','0','0','0','0','3455978b6e2a4291984bf1e7c95551e1','0','2','0'), ('46893','18','','10614','Transaction count','oci.aut.db.transaction.count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The combined number of user commits and user rollbacks during the selected time interval.','0','7d','0','','46845','','','','','200','1','0','','','0','0','0','0','0','0','0','35995e92de8e45b0a8493bc285ccd0c8','0','2','0'), ('46894','18','','10614','User calls','oci.aut.db.user.calls','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The combined number of logons, parses, and execute calls during the selected time interval.','0','7d','0','','46845','','','','','200','1','0','','','0','0','0','0','0','0','0','3e1cd8b4c829451499d605512e1a1bf0','0','2','0'), ('46895','18','','10614','User commits','oci.aut.db.user.commits','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of user commits during the selected time interval. When a user commits a transaction, the generated redo that reflects the changes made to database blocks must be written to disk. Commits often represent the closest thing to a user transaction rate.','0','7d','0','','46845','','','','','200','1','0','','','0','0','0','0','0','0','0','0cda6a956ca1476da28083cfc6de8bcc','0','2','0'), ('46896','18','','10614','User rollbacks','oci.aut.db.user.rollbacks','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times users manually issue the `ROLLBACK` statement or an error occurs during a user''s transactions during the selected time interval.','0','7d','0','','46845','','','','','200','1','0','','','0','0','0','0','0','0','0','99292418f1764484b1cda27b70af84cc','0','2','0'), ('46897','18','','10614','Wait time','oci.aut.db.wait.time','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Average rate of accumulation of non-idle wait time by foreground sessions in the database over the selected time interval.','0','7d','0','','46845','','','','','200','1','0','','','0','0','0','0','0','0','0','8f627c48a0a94e41ad1b66d7a4817898','0','2','0'), ('46898','18','','10615','Volume guaranteed IOPS','oci.block.volume.iops','0','31d','365d','0','0','','!IOPS','','',NULL,NULL,'','','0','','','','','0',NULL,'Rate of change for guaranteed IOPS per SLA. Expressed as the average of guaranteed IOPS during a given time interval.','0','7d','0','','46849','','','','','200','1','0','','','0','0','0','0','0','0','0','dc2887a2b954406db8588c0ead37411f','0','2','0'), ('46899','18','','10615','Volume read throughput','oci.block.volume.read','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Read throughput. Expressed as bytes read per interval.','0','7d','0','','46849','','','','','200','1','0','','','0','0','0','0','0','0','0','680f9e8c96d34c099533adc99c33a48f','0','2','0'), ('46900','18','','10615','Volume read operations','oci.block.volume.read.ops','0','31d','365d','0','0','','!reads','','',NULL,NULL,'','','0','','','','','0',NULL,'Activity level from I/O reads. Expressed as reads per interval.','0','7d','0','','46849','','','','','200','1','0','','','0','0','0','0','0','0','0','6b8060ce122142968e73da9a3e0813a1','0','2','0'), ('46901','18','','10615','Volume throttled operations','oci.block.volume.throttled.ops','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total sum of all the I/O operations that were throttled during a given time interval.','0','7d','0','','46849','','','','','200','1','0','','','0','0','0','0','0','0','0','cc9ef37437b04a40a4b48a9f21e36ff1','0','2','0'), ('46902','18','','10615','Volume guaranteed throughput','oci.block.volume.throughput','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Rate of change for guaranteed throughput per SLA. Expressed as megabytes per interval.','0','7d','0','','46849','','','','','200','1','0','','','0','0','0','0','0','0','0','d1b199adc996404db814ba7568b054df','0','2','0'), ('46903','18','','10615','Volume guaranteed VPUs/GB','oci.block.volume.vpu','0','31d','365d','0','0','','!VPUs','','',NULL,NULL,'','','0','','','','','0',NULL,'Rate of change for currently active VPUs/GB. Expressed as the average of active VPUs/GB during a given time interval.','0','7d','0','','46849','','','','','200','1','0','','','0','0','0','0','0','0','0','607f3c4a8197473bb1872e4ed45edd26','0','2','0'), ('46904','18','','10615','Volume write throughput','oci.block.volume.write','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Write throughput. Expressed as bytes read per interval.','0','7d','0','','46849','','','','','200','1','0','','','0','0','0','0','0','0','0','9ec2ce2d21154028a5623b5d0ac9c082','0','2','0'), ('46905','18','','10615','Volume write operations','oci.block.volume.write.ops','0','31d','365d','0','0','','!writes','','',NULL,NULL,'','','0','','','','','0',NULL,'Activity level from I/O writes. Expressed as writes per interval.','0','7d','0','','46849','','','','','200','1','0','','','0','0','0','0','0','0','0','e55fee2db439493992a80e39ca647e9a','0','2','0'), ('46906','18','','10616','Volume guaranteed IOPS','oci.boot.volume.iops','0','31d','365d','0','0','','!IOPS','','',NULL,NULL,'','','0','','','','','0',NULL,'Rate of change for guaranteed IOPS per SLA. Expressed as the average of guaranteed IOPS during a given time interval.','0','7d','0','','46851','','','','','200','1','0','','','0','0','0','0','0','0','0','c629f4e4424b48288b7e7058eef2ca92','0','2','0'), ('46907','18','','10616','Volume read throughput','oci.boot.volume.read','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Read throughput. Expressed as bytes read per interval.','0','7d','0','','46851','','','','','200','1','0','','','0','0','0','0','0','0','0','01700702f306414892828674c0046e5c','0','2','0'), ('46908','18','','10616','Volume read operations','oci.boot.volume.read.ops','0','31d','365d','0','0','','!reads','','',NULL,NULL,'','','0','','','','','0',NULL,'Activity level from I/O reads. Expressed as reads per interval.','0','7d','0','','46851','','','','','200','1','0','','','0','0','0','0','0','0','0','b004ee7931dd4eccbfc89d3a8c363209','0','2','0'), ('46909','18','','10616','Volume throttled operations','oci.boot.volume.throttled.ops','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total sum of all the I/O operations that were throttled during a given time interval.','0','7d','0','','46851','','','','','200','1','0','','','0','0','0','0','0','0','0','cfdc208b621b46508f9addc7ddb0808c','0','2','0'), ('46910','18','','10616','Volume guaranteed throughput','oci.boot.volume.throughput','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Rate of change for guaranteed throughput per SLA. Expressed as megabytes per interval.','0','7d','0','','46851','','','','','200','1','0','','','0','0','0','0','0','0','0','09bc5d7c95fe4b41bed9d786b78eba88','0','2','0'), ('46911','18','','10616','Volume guaranteed VPUs/GB','oci.boot.volume.vpu','0','31d','365d','0','0','','!VPUs','','',NULL,NULL,'','','0','','','','','0',NULL,'Rate of change for currently active VPUs/GB. Expressed as the average of active VPUs/GB during a given time interval.','0','7d','0','','46851','','','','','200','1','0','','','0','0','0','0','0','0','0','a3e5f888d2c84d7eb105f1061b9fadd1','0','2','0'), ('46912','18','','10616','Volume write throughput','oci.boot.volume.write','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Write throughput. Expressed as bytes read per interval.','0','7d','0','','46851','','','','','200','1','0','','','0','0','0','0','0','0','0','a92206102a7a45d7b5c46096486465b6','0','2','0'), ('46913','18','','10616','Volume write operations','oci.boot.volume.write.ops','0','31d','365d','0','0','','!writes','','',NULL,NULL,'','','0','','','','','0',NULL,'Activity level from I/O writes. Expressed as writes per interval.','0','7d','0','','46851','','','','','200','1','0','','','0','0','0','0','0','0','0','724197c8dcfe4c3ea52bc25d99de727c','0','2','0'), ('46914','18','','10618','CPU utilization, in %','oci.compute.cpu.util','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Activity level from the CPU. Expressed as a percentage of the total time.','0','7d','0','','46854','','','','','200','1','0','','','0','0','0','0','0','0','0','04a1f534ae844021be0935abf1214951','0','2','0'), ('46915','18','','10618','Disk read I/O','oci.compute.disk.io.read','0','31d','365d','0','0','','!reads/s','','',NULL,NULL,'','','0','','','','','0',NULL,'Activity level from I/O reads. Expressed as reads per interval.','0','7d','0','','46854','','','','','200','1','0','','','0','0','0','0','0','0','0','670783a729a647db9349d78ac61f1d94','0','2','0'), ('46916','18','','10618','Disk write I/O','oci.compute.disk.io.write','0','31d','365d','0','0','','!writes/s','','',NULL,NULL,'','','0','','','','','0',NULL,'Activity level from I/O writes. Expressed as writes per interval.','0','7d','0','','46854','','','','','200','1','0','','','0','0','0','0','0','0','0','cbd32ebd403c48b2b2f9815f13407afe','0','2','0'), ('46917','18','','10618','Disk bytes read','oci.compute.disk.read','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Read throughput. Expressed as bytes read per interval.','0','7d','0','','46854','','','','','200','1','0','','','0','0','0','0','0','0','0','15d234ef381747bfb76e7ccf9169046d','0','2','0'), ('46918','18','','10618','Disk bytes written','oci.compute.disk.written','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Write throughput. Expressed as bytes written per interval.','0','7d','0','','46854','','','','','200','1','0','','','0','0','0','0','0','0','0','c7e061599b474ac49082d28572ab74c6','0','2','0'), ('46919','18','','10618','Load average','oci.compute.load.avg','0','31d','365d','0','0','','!processes','','',NULL,NULL,'','','0','','','','','0',NULL,'Average system load calculated over a 1-minute period. Expressed as a number of processes.','0','7d','0','','46854','','','','','200','1','0','','','0','0','0','0','0','0','0','75308c4fb9bd4bad8fbb80aa9b62b099','0','2','0'), ('46920','18','','10618','Memory allocation stalls','oci.compute.mem.stalls','0','31d','365d','0','0','','!stalls','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times page reclaim was called directly.','0','7d','0','','46854','','','','','200','1','0','','','0','0','0','0','0','0','0','610796958f694aa99f3e9ea1082972bf','0','2','0'), ('46921','18','','10618','Memory utilization, in %','oci.compute.mem.util','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Space currently in use, measured in pages. Expressed as a percentage of used pages.','0','7d','0','','46854','','','','','200','1','0','','','0','0','0','0','0','0','0','ef284ac17689442e835b686126161bc5','0','2','0'), ('46922','18','','10618','Network bytes in','oci.compute.network.in','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Network bytes in for the compute instance.','0','7d','0','','46854','','','','','200','1','0','','','0','0','0','0','0','0','0','0c910a86a99b47f08dee930f07422f45','0','2','0'), ('46923','18','','10618','Network bytes out','oci.compute.network.out','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Network bytes out for the compute instance.','0','7d','0','','46854','','','','','200','1','0','','','0','0','0','0','0','0','0','a7a027ae583740e19e5f6288b3f15d10','0','2','0'), ('46924','18','','10620','Client-side error count','oci.obj.storage.client.errors','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of 4xx errors for requests made in a bucket.','0','7d','0','','46859','','','','','200','1','0','','','0','0','0','0','0','0','0','8a216ff99ea84e169ba24305a5501b45','0','2','0'), ('46925','18','','10620','First byte latency time','oci.obj.storage.latency.byte','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The per-request time measured from the time Object Storage receives the complete request to when Object Storage returns the first byte of the response.','0','7d','0','','46859','','','','','200','1','0','','','0','0','0','0','0','0','0','3d41eed5ab23438d9f2a87c48bb3def4','0','2','0'), ('46926','18','','10620','Overall latency time','oci.obj.storage.latency.overall','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The per-request time from the first byte received by Object Storage to the last byte sent from Object Storage.','0','7d','0','','46859','','','','','200','1','0','','','0','0','0','0','0','0','0','a47bb44ccb35489e965432c332bd8892','0','2','0'), ('46927','18','','10620','Number of objects','oci.obj.storage.objects','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of objects in the bucket, excluding any multipart upload parts that have not been discarded (aborted) or committed.','0','7d','0','','46860','','','','','200','1','0','','','0','0','0','0','0','0','0','867aa1736d4c40a18a4f660023d117f4','0','2','0'), ('46928','18','','10620','All requests count','oci.obj.storage.requests','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of all HTTP requests made in a bucket.','0','7d','0','','46859','','','','','200','1','0','','','0','0','0','0','0','0','0','a3d83de1735d4c409192d187d793f7b2','0','2','0'), ('46929','18','','10620','Post object request count','oci.obj.storage.requests.post','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of HTTP `POST` requests made in a bucket.','0','7d','0','','46859','','','','','200','1','0','','','0','0','0','0','0','0','0','2baef7eb0b1348499eda8fb9fd11e0c8','0','2','0'), ('46930','18','','10620','Put object request count','oci.obj.storage.requests.put','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of `PutObject` requests made in a bucket.','0','7d','0','','46859','','','','','200','1','0','','','0','0','0','0','0','0','0','1853b681b5e64a0f9c172e6166a430ae','0','2','0'), ('46931','18','','10620','Bucket size','oci.obj.storage.size','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The size of the bucket, excluding any multipart upload parts that have not been discarded (aborted) or committed.','0','7d','0','','46860','','','','','200','1','0','','','0','0','0','0','0','0','0','61901f89399c413186c9df957760c2d5','0','2','0'), ('46932','18','','10620','Incomplete multipart upload size','oci.obj.storage.size.incomplete','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The size of any multipart upload parts that have not been discarded (aborted) or committed.','0','7d','0','','46860','','','','','200','1','0','','','0','0','0','0','0','0','0','a4dc04db6b294aef865d137e5fdd0dc2','0','2','0'), ('46939','18','','10618','VNIC discovery','oci.compute.vnic.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover compute instance VNICs.','0','7d','1','','46856','','','','','200','1','0','','','0','0','0','0','0','0','0','4f4a058b2a0b4bddb4ddbdb7613934af','0','2','0'), ('46940','18','','10619','Subnet discovery','oci.vcn.subnet.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover subnets linked to the particular VCN.','0','7d','1','','46858','','','','','200','1','0','','','0','0','0','0','0','0','0','6aca3a2d8b9a4231ae9364611ed4df82','0','2','0'), ('46942','18','','10618','VNIC [{#NAME}]: Attachment state','oci.compute.vnic.attachment[{#ID}]','0','31d','365d','0','3','','','','',NULL,'1203','','','0','','','','','2',NULL,'Current attachment state of the VNIC.','0','7d','0','','46856','','','','','200','1','0','','','0','0','0','0','0','0','0','45fc4a9241f147c88e45352ac0f5018d','0','2','0'), ('46943','18','','10618','VNIC [{#NAME}]: Egress packets dropped by security list','oci.compute.vnic.egress.packets.dropped[{#ID}]','0','31d','365d','0','3','','!packets','','',NULL,NULL,'','','0','','','','','2',NULL,'Packets sent by the VNIC, destined for the network, dropped due to security rule violations.','0','7d','0','','46941','','','','','200','1','0','','','0','0','0','0','0','0','0','a9f4e55f3dd848b8bf0c861c81c2690a','0','2','0'), ('46944','18','','10618','VNIC [{#NAME}]: Smartnic buffer drops from host','oci.compute.vnic.host.smartnic.drops[{#ID}]','0','31d','365d','0','3','','!packets','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of packets dropped in SmartNIC from the host due to buffer exhaustion. This metric is available only for Bare Metal Instances. For virtual machines, these metric values are zero.','0','7d','0','','46941','','','','','200','1','0','','','0','0','0','0','0','0','0','0ac50b3b570a470ca301185489c4d2a4','0','2','0'), ('46945','18','','10618','VNIC [{#NAME}]: Ingress packets dropped by security list','oci.compute.vnic.ingress.packets.dropped[{#ID}]','0','31d','365d','0','3','','!packets','','',NULL,NULL,'','','0','','','','','2',NULL,'Packets received from the network, destined for the VNIC, dropped due to security rule violations.','0','7d','0','','46941','','','','','200','1','0','','','0','0','0','0','0','0','0','86258bd1db6a46c9862f175acac2daf2','0','2','0'), ('46946','18','','10618','VNIC [{#NAME}]: Bytes to network','oci.compute.vnic.net.bytes.egr[{#ID}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Bytes sent from the VNIC to the network, before drops.','0','7d','0','','46941','','','','','200','1','0','','','0','0','0','0','0','0','0','e083fab486984a1d8c0947924e2e6c60','0','2','0'), ('46947','18','','10618','VNIC [{#NAME}]: Bytes from network','oci.compute.vnic.net.bytes.ingr[{#ID}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Bytes received at the VNIC from the network, after drops.','0','7d','0','','46941','','','','','200','1','0','','','0','0','0','0','0','0','0','09b608c006b34276b34356802f755ce7','0','2','0'), ('46948','18','','10618','VNIC [{#NAME}]: Connection tracking table full','oci.compute.vnic.net.conntrack.full[{#ID}]','0','31d','365d','0','3','','','','',NULL,'1202','','','0','','','','','2',NULL,'Boolean (0/false, 1/true) that indicates the connection tracking table is full.','0','7d','0','','46941','','','','','200','1','0','','','0','0','0','0','0','0','0','9e4d0babdaad4f7291974881d88fa991','0','2','0'), ('46949','18','','10618','VNIC [{#NAME}]: Connection tracking table utilization, in %','oci.compute.vnic.net.conntrack.util[{#ID}]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Total utilization percentage (0-100%) of the connection tracking table.','0','7d','0','','46941','','','','','200','1','0','','','0','0','0','0','0','0','0','088fc9f8d317402099ed0cda9dffb525','0','2','0'), ('46950','18','','10618','VNIC [{#NAME}]: Egress packets dropped by full connection tracking table','oci.compute.vnic.net.packets.egr.drop[{#ID}]','0','31d','365d','0','3','','!packets','','',NULL,NULL,'','','0','','','','','2',NULL,'Packets sent from the VNIC, destined for the network, dropped due to the full connection tracking table.','0','7d','0','','46941','','','','','200','1','0','','','0','0','0','0','0','0','0','23be348ca25948468df11644a5f51d0d','0','2','0'), ('46951','18','','10618','VNIC [{#NAME}]: Throttled egress packets','oci.compute.vnic.net.packets.egr.throttled[{#ID}]','0','31d','365d','0','3','','!packets','','',NULL,NULL,'','','0','','','','','2',NULL,'Packets sent from the VNIC, destined for the network, dropped due to throttling.','0','7d','0','','46941','','','','','200','1','0','','','0','0','0','0','0','0','0','bfa72f1cfc294d2b819cea22dbe7ddd8','0','2','0'), ('46952','18','','10618','VNIC [{#NAME}]: Packets to network','oci.compute.vnic.net.packets.egr[{#ID}]','0','31d','365d','0','3','','!packets','','',NULL,NULL,'','','0','','','','','2',NULL,'Packets sent from the VNIC to the network, before drops.','0','7d','0','','46941','','','','','200','1','0','','','0','0','0','0','0','0','0','06cee1bacd744926ac61f72cd8ba3ae5','0','2','0'), ('46953','18','','10618','VNIC [{#NAME}]: Ingress packets dropped by full connection tracking table','oci.compute.vnic.net.packets.ingr.drop[{#ID}]','0','31d','365d','0','3','','!packets','','',NULL,NULL,'','','0','','','','','2',NULL,'Packets received from the network, destined for the VNIC, dropped due to the full connection tracking table.','0','7d','0','','46941','','','','','200','1','0','','','0','0','0','0','0','0','0','2564ee2fa8bd4d5f9859506c1486f45f','0','2','0'), ('46954','18','','10618','VNIC [{#NAME}]: Throttled ingress packets','oci.compute.vnic.net.packets.ingr.throttled[{#ID}]','0','31d','365d','0','3','','!packets','','',NULL,NULL,'','','0','','','','','2',NULL,'Packets received from the network, destined for the VNIC, dropped due to throttling.','0','7d','0','','46941','','','','','200','1','0','','','0','0','0','0','0','0','0','595654f8255f454fba44abfcfeeb8c14','0','2','0'), ('46955','18','','10618','VNIC [{#NAME}]: Packets from network','oci.compute.vnic.net.packets.ingr[{#ID}]','0','31d','365d','0','3','','!packets','','',NULL,NULL,'','','0','','','','','2',NULL,'Packets received at the VNIC from the network, after drops.','0','7d','0','','46941','','','','','200','1','0','','','0','0','0','0','0','0','0','9c37d782e3594e199f0c77010853d893','0','2','0'), ('46956','18','','10618','VNIC [{#NAME}]: Smartnic buffer drops from network','oci.compute.vnic.net.smartnic.drops[{#ID}]','0','31d','365d','0','3','','!packets','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of packets dropped in SmartNIC from the network due to buffer exhaustion. This metric is available only for Bare Metal Instances. For virtual machines, these metric values are zero.','0','7d','0','','46941','','','','','200','1','0','','','0','0','0','0','0','0','0','400c523fe78b4264948e363f278bbc6d','0','2','0'), ('46957','18','','10619','Subnet [{#NAME}]: Get subnet state','oci.vcn.subnet.state[{#ID}]','0','31d','365d','0','3','','','','',NULL,'1204','','','0','','','','','2',NULL,'Current state of subnet.','0','7d','0','','46858','','','','','200','1','0','','','0','0','0','0','0','0','0','759c6bff98fb4cb3bc8c9269513339bf','0','2','0'), ('46993','18','','10604','CPU discovery','cpu.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for discovering CPUs from FORTINET-FORTIGATE-MIB.','0','7d','0','','46986','','','','','200','1','0','','','0','0','0','0','0','0','0','c91e86ee48544c7fb225199d22b279cb','0','2','0'), ('46994','18','','10604','HA member discovery','ha.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for discovering HA members from FORTINET-FORTIGATE-MIB.','0','7d','1','','46970','','','','','200','1','0','','','0','0','0','0','0','0','0','0503618cc863464b86f6661a3bba5970','0','2','0'), ('46995','18','','10604','Hardware sensors discovery','hw.sensor.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for discovering hardware sensors from FORTINET-FORTIGATE-MIB.','0','7d','0','','46973','','','','','200','1','0','','','0','0','0','0','0','0','0','ece93a3dc4f8497891444c9f5daa57ca','0','2','0'), ('46996','18','','10604','SD-WAN health-check discovery','sdwan_health.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for discovering SD-WAN health-check from FORTINET-FORTIGATE-MIB.','0','7d','1','','46985','','','','','200','1','0','','','0','0','0','0','0','0','0','1359682c719440798e44e19202442f5e','0','2','0'), ('46997','18','','10604','SoC3 discovery','soc3.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for discovering SoC3 NP6Lite processors from FORTINET-FORTIGATE-MIB.','0','7d','0','','46986','','','','','200','1','0','','','0','0','0','0','0','0','0','63fdcc93a41d424fb0c481d9ae50424c','0','2','0'), ('46998','18','','10604','Virtual domain discovery','vdom.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for discovering virtual domains from FORTINET-FORTIGATE-MIB.','0','7d','1','','46987','','','','','200','1','0','','','0','0','0','0','0','0','0','5c251f4a423348a49c2ac61e441d6da1','0','2','0'), ('46999','18','','10604','VPN tunnel discovery','vpn.tunnel.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for discovering VPN tunnels from FORTINET-FORTIGATE-MIB.','0','7d','1','','46990','','','','','200','1','0','','','0','0','0','0','0','0','0','c9cb899a182843d79efe5c9b1d196023','0','2','0'), ('47000','18','','10604','Wireless discovery','wireless.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for discovering wireless access points from FORTINET-FORTIGATE-MIB.','0','7d','1','','46992','','','','','200','1','0','','','0','0','0','0','0','0','0','0ec47b527d6a45269bc65b427d99b6b4','0','2','0'), ('47001','18','','10604','CPU Core {#CPU.ID}: Average system usage over 1min','system.cpu.usage[fgProcessorSysUsage.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB The processor''s CPU system space usage, expressed as an average calculated over the last minute. (Only valid for processor types that support this statistic.)','0','7d','0','','46986','','','','','200','1','0','','','0','0','0','0','0','0','0','8223516fe91b4d17998d3846d8e6c134','0','2','0'), ('47002','18','','10604','CPU Core {#CPU.ID}: Average usage over 1min','system.cpu.usage[fgProcessorUsage.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB The processor''s CPU usage in %, expressed as an average calculated over the last minute. (Only valid for processor types that support this statistic.)','0','7d','0','','46986','','','','','200','1','0','','','0','0','0','0','0','0','0','e0ddf801fd874ab6a97cefe9c7096b2f','0','2','0'), ('47003','18','','10604','CPU Core {#CPU.ID}: Average user usage over 1min','system.cpu.usage[fgProcessorUserUsage.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB The processor''s CPU user space usage, expressed as an average calculated over the last minute. (Only valid for processor types that support this statistic.)','0','7d','0','','46986','','','','','200','1','0','','','0','0','0','0','0','0','0','3351a929f6fc40cd8d7c83fbeb5da100','0','2','0'), ('47004','18','','10604','HA {#HA.ID}: Anti-virus events','ha.av.events[fgHaStatsAvCount.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Number of anti-virus events triggered on the specified cluster member per second.','0','7d','0','','46970','','','','','200','1','0','','','0','0','0','0','0','0','0','93a6937b6fbe488cbd78cf8f962f94ad','0','2','0'), ('47005','18','','10604','HA {#HA.ID}: Bytes processed','ha.bytes.rate[fgHaStatsByteCount.{#SNMPINDEX}]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Number of bytes processed by the specified cluster member per second.','0','7d','0','','46970','','','','','200','1','0','','','0','0','0','0','0','0','0','8290da04f8194186966c8670c89ebf37','0','2','0'), ('47006','18','','10604','HA {#HA.ID}: Global checksum','ha.checksum.global[fgHaStatsGlobalChecksum.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Current HA global checksum value.','0','7d','0','','46970','','','','','200','1','0','','','0','0','0','0','0','0','0','4a3763ad9d134802993b6f82c6a8ccb6','0','2','0'), ('47007','18','','10604','HA {#HA.ID}: CPU usage','ha.cpu.usage[fgHaStatsCpuUsage.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB CPU usage of the specified cluster member (percentage).','0','7d','0','','46970','','','','','200','1','0','','','0','0','0','0','0','0','0','4253edcd725844a0b438af65fe6206c7','0','2','0'), ('47008','18','','10604','HA {#HA.ID}: Hostname','ha.hostname[fgHaStatsHostname.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Host name of the specified cluster member.','0','7d','0','','46970','','','','','200','1','0','','','0','0','0','0','0','0','0','22a3cd6732af4efcb2ef0b3ac07e5948','0','2','0'), ('47009','18','','10604','HA {#HA.ID}: IPS events','ha.ips.events[fgHaStatsIdsCount.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Number of IDS/IPS events triggered on the specified cluster member per second.','0','7d','0','','46970','','','','','200','1','0','','','0','0','0','0','0','0','0','ef06add0e6cc4064b3696960a627699d','0','2','0'), ('47010','18','','10604','HA {#HA.ID}: Memory usage','ha.mem.usage[fgHaStatsMemUsage.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Memory usage of the specified cluster member (percentage).','0','7d','0','','46970','','','','','200','1','0','','','0','0','0','0','0','0','0','e54c3edd5b1c4a73b135e24495756bca','0','2','0'), ('47011','18','','10604','HA {#HA.ID}: Network bandwidth usage','ha.net.usage[fgHaStatsNetUsage.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Network bandwidth usage of the specified cluster member (bps).','0','7d','0','','46970','','','','','200','1','0','','','0','0','0','0','0','0','0','653ae601538545f1b2aeb1459497104f','0','2','0'), ('47012','18','','10604','HA {#HA.ID}: Packets processed','ha.packets.rate[fgHaStatsPktCount.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Number of packets processed by the specified cluster member per second.','0','7d','0','','46970','','','','','200','1','0','','','0','0','0','0','0','0','0','1594d7c870e6425f8872991b25cba0f8','0','2','0'), ('47013','18','','10604','HA {#HA.ID}: Primary serial number','ha.primary.serialnumber[fgHaStatsMasterSerial.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Serial number of the primary HA member during the last sync attempt (successful or not).','0','7d','0','','46970','','','','','200','1','0','','','0','0','0','0','0','0','0','1af6ca37fc104d6cb5192437b4bfc881','0','2','0'), ('47014','18','','10604','HA {#HA.ID}: Serial number','ha.serialnumber[fgHaStatsSerial.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Serial number of the HA cluster member.','0','7d','0','','46970','','','','','200','1','0','','','0','0','0','0','0','0','0','1ba63c880654491a90bddd1ebde52252','0','2','0'), ('47015','18','','10604','HA {#HA.ID}: Session count','ha.session.count[fgHaStatsSesCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Current session count of the specified cluster member.','0','7d','0','','46970','','','','','200','1','0','','','0','0','0','0','0','0','0','4c8e8e4787954e89a116e56306a275d9','0','2','0'), ('47016','18','','10604','HA {#HA.ID}: Sync status','ha.sync.status[fgHaStatsSyncStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1207','','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Current HA sync status.','0','7d','0','','46970','','','','','200','1','0','','','0','0','0','0','0','0','0','10e2717f461f4f8887cfc9ae0ab6d932','0','2','0'), ('47017','18','','10604','Sensor {#SENSOR.NAME}: Alarm status','hw.sensor.status[fgHwSensorEntAlarmStatus.{#SENSOR.ID}]','0','31d','365d','0','3','','','','',NULL,'1212','','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB If the sensor has an alarm threshold and has exceeded it, this will indicate its status. Not all sensors have alarms.','0','7d','0','','46973','','','','','200','1','0','','','0','0','0','0','0','0','0','b9d76803cb8d4dd2ae27f2a36ae8d243','0','2','0'), ('47018','18','','10604','Sensor {#SENSOR.NAME}: Value','hw.sensor.value[fgHwSensorEntValue.{#SENSOR.ID}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB A string representation of the value of the sensor. Because sensors can present data in different formats, string representation is the most general format. Interpretation of the value (units of measure, for example) is dependent on the individual sensor.','0','7d','0','','46973','','','','','200','1','0','','','0','0','0','0','0','0','0','05abe47dd00e4a2faba79be40af90402','0','2','0'), ('47019','18','','10604','SD-WAN [{#HNAME}]:[{#IFNAME}]: Jitter','sdwan_health.jitter[fgVWLHealthCheckLinkJitter.{#SNMPINDEX}]','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB The average jitter of a health check on a specific member link in a float number within the last 30 probes.','0','7d','0','','46985','','','','','200','1','0','','','0','0','0','0','0','0','0','63b53c82ad3b49028b4f7afe53b5d0d3','0','2','0'), ('47020','18','','10604','SD-WAN [{#HNAME}]:[{#IFNAME}]: Latency','sdwan_health.latency[fgVWLHealthCheckLinkLatency.{#SNMPINDEX}]','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB The average latency of a health check on a specific member link in a float number within the last 30 probes.','0','7d','0','','46985','','','','','200','1','0','','','0','0','0','0','0','0','0','6ffbe596aa2848b19e0d50c1b67e9365','0','2','0'), ('47021','18','','10604','SD-WAN [{#HNAME}]:[{#IFNAME}]: Packets loss','sdwan_health.loss[fgVWLHealthCheckLinkPacketLoss.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB The packet loss percentage of a health check on a specific member link in a float number within the last 30 probes.','0','7d','0','','46985','','','','','200','1','0','','','0','0','0','0','0','0','0','d696775545be43aaadd3f0c932cac509','0','2','0'), ('47022','18','','10604','SD-WAN [{#HNAME}]:[{#IFNAME}]: Packets received per second','sdwan_health.received[fgVWLHealthCheckLinkPacketRecv.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Number of packets received by a health check on a specific member link per second.','0','7d','0','','46985','','','','','200','1','0','','','0','0','0','0','0','0','0','5f3d834096ae4412ba849e7d9fdd27d6','0','2','0'), ('47023','18','','10604','SD-WAN [{#HNAME}]:[{#IFNAME}]: Packets sent per second','sdwan_health.sent[fgVWLHealthCheckLinkPacketSend.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Number of packets sent by a health check on a specific member link per second.','0','7d','0','','46985','','','','','200','1','0','','','0','0','0','0','0','0','0','ed2f33611e39413d9fd78ba5e7185b8e','0','2','0'), ('47024','18','','10604','SD-WAN [{#HNAME}]:[{#IFNAME}]: Health check state','sdwan_health.state[fgVWLHealthCheckLinkState.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1209','','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Health check state on a specific member link.','0','7d','0','','46985','','','','','200','1','0','','','0','0','0','0','0','0','0','c9bbd7b9bfb94033a6814fc39926e7ca','0','2','0'), ('47025','18','','10604','SoC3 {#CPU.ID}: Packets dropped','soc3.np6lite.pkt.dropped[fgProcessorPktDroppedCount.{#CPU.ID}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB The total number of packets dropped by this processor (only valid for processor types that support this statistic).','0','7d','0','','46986','','','','','200','1','0','','','0','0','0','0','0','0','0','15caa12cf78b430dbe63ba27606cf04b','0','2','0'), ('47026','18','','10604','SoC3 {#CPU.ID}: Packets received','soc3.np6lite.pkt.received[fgProcessorPktRxCount.{#CPU.ID}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB The total number of packets received by this processor (only valid for processor types that support this statistic).','0','7d','0','','46986','','','','','200','1','0','','','0','0','0','0','0','0','0','f9b37041d4ae4ccab1b9a92835a45649','0','2','0'), ('47027','18','','10604','SoC3 {#CPU.ID}: Packets transmitted','soc3.np6lite.pkt.transmitted[fgProcessorPktRxCount.{#CPU.ID}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB The total number of packets transmitted by this processor (only valid for processor types that support this statistic).','0','7d','0','','46986','','','','','200','1','0','','','0','0','0','0','0','0','0','8f80b2d538ef4f20a654156e280394ab','0','2','0'), ('47028','18','','10604','VDOM {#VDOM.NAME}: CPU usage','vdom.cpu.usage[fgVdEntCpuUsage.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB CPU usage of the virtual domain (percentage).','0','7d','0','','46987','','','','','200','1','0','','','0','0','0','0','0','0','0','f6f60e7e4fcf4bb6935a19742ac13199','0','2','0'), ('47029','18','','10604','VDOM {#VDOM.NAME}: HA member state','vdom.ha.state[fgVdEntHaState.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1213','','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB HA cluster member state of the virtual domain on this device.','0','7d','0','','46987','','','','','200','1','0','','','0','0','0','0','0','0','0','83a03691cd3c4282b731e8e9b1ffc328','0','2','0'), ('47030','18','','10604','VDOM {#VDOM.NAME}: Memory usage','vdom.mem.usage[fgVdEntCpuUsage.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Memory usage of the virtual domain (percentage).','0','7d','0','','46987','','','','','200','1','0','','','0','0','0','0','0','0','0','07e67588b1c94e0ba26985883964247c','0','2','0'), ('47031','18','','10604','VDOM {#VDOM.NAME}: Operation mode','vdom.op_mode[fgVdEntOpMode.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1214','','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Operation mode of the virtual domain (NAT or Transparent).','0','7d','0','','46987','','','','','200','1','0','','','0','0','0','0','0','0','0','d5937e850b99477187b1dd84c54c5ea5','0','2','0'), ('47032','18','','10604','VDOM {#VDOM.NAME}: Sessions rate','vdom.sessions.rate[fgVdEntSesRate.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB The session setup rate on the virtual domain per second.','0','7d','0','','46987','','','','','200','1','0','','','0','0','0','0','0','0','0','5030e68a32b644d7be5847556ecf438a','0','2','0'), ('47033','18','','10604','VDOM {#VDOM.NAME}: Active sessions','vdom.sessions[fgVdEntSesCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Number of active sessions on the virtual domain.','0','7d','0','','46987','','','','','200','1','0','','','0','0','0','0','0','0','0','abeeecdb4c3d42b599f652f9bb591bef','0','2','0'), ('47034','18','','10604','VPN {#VPN.NAME}: Tunnel Status','vpn.tunnel.status[fgVpnTunEntStatus.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1215','','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Current status of tunnel (up or down).','0','7d','0','','46990','','','','','200','1','0','','','0','0','0','0','0','0','0','7478dc658f184f1eb3718ddfab780b01','0','2','0'), ('47035','18','','10604','WTP {#WC.NAME}: Administrative status','wc.admin.status[fgWcWtpConfigWtpAdmin.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1216','','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Represents the administrative status of this wireless termination point (WTP). The following enumerated values are supported: `discovered(1)` - This WTP was discovered though discovery or join request messages. `disable(2)` - Controller is configured to not provide service to this WTP. `enable(3)` - Controller is configured to provide service to this WTP. `other(0)` - The administration state of the WTP is unknown.','0','7d','0','','46992','','','','','200','1','0','','','0','0','0','0','0','0','0','95946d5063f04c75aaeef7d36699da80','0','2','0'), ('47036','18','','10604','WTP {#WC.NAME}: Background scan','wc.background.scan[fgWcWtpConfigRadioApScan.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1211','','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Whether background scan is enabled on this WTP.','0','7d','0','','46992','','','','','200','1','0','','','0','0','0','0','0','0','0','6bd742c266e94630ab9eb727577a5f43','0','2','0'), ('47037','18','','10604','WTP {#WC.NAME}: Base MAC Address','wc.base.mac[fgWcWtpSessionWtpBaseMacAddress.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Represents the WTP''s Base MAC Address, which MAY be assigned to the primary Ethernet interface. The instance of the object corresponds to the Base MAC Address sub-element in the CAPWAP protocol [RFC5415].','0','7d','0','','46992','','','','','200','1','0','','','0','0','0','0','0','0','0','8bdb138301f04f7dae81ef9ddd14b00e','0','2','0'), ('47038','18','','10604','WTP {#WC.NAME}: Bootloader version','wc.boot.version[fgWcWtpSessionWtpBootVersion.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Represents the boot loader version of a WTP.','0','7d','0','','46992','','','','','200','1','0','','','0','0','0','0','0','0','0','92512ee2f6ca4366bbd3d577c5ba10c8','0','2','0'), ('47039','18','','10604','WTP {#WC.NAME}: Connected clients','wc.clients.num[fgWcWtpSessionWtpStationCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Represents the number of clients currently connected to this WTP.','0','7d','0','','46992','','','','','200','1','0','','','0','0','0','0','0','0','0','50f1359e45b24acd997d24929661d464','0','2','0'), ('47040','18','','10604','WTP {#WC.NAME}: Connection status','wc.conn.status[fgWcWtpSessionConnectionState.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1218','','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Represents the connection status of a WTP to the AC. The following enumerated values are supported: `offLine(1)` - The WTP is not connected. `onLine(2)` - The WTP is connected. `downloadingImage(3)` - The WTP is downloading software image from the AC on joining. `connectedImage(4)` - The AC is pushing a software image to the connected WTP. `other(0)` - The WTP connection status is unknown.','0','7d','0','','46992','','','','','200','1','0','','','0','0','0','0','0','0','0','04a94fb904ef4fd69dd45f85d1154a8c','0','2','0'), ('47041','18','','10604','WTP {#WC.NAME}: CPU usage','wc.cpu.usage[fgWcWtpSessionWtpCpuUsage.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Represents the current CPU usage of a WTP (percentage).','0','7d','0','','46992','','','','','200','1','0','','','0','0','0','0','0','0','0','9fcf69f30ce7486c909c8fd7ff0247a5','0','2','0'), ('47042','18','','10604','WTP {#WC.NAME}: Daemon uptime','wc.daemon.uptime[fgWcWtpSessionWtpDaemonUpTime.{#SNMPINDEX}]','0','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Represents the time since the WTP daemon has been started.','0','7d','0','','46992','','','','','200','1','0','','','0','0','0','0','0','0','0','12c297ebcf9041af8ced1e42abb59e2b','0','2','0'), ('47043','18','','10604','WTP {#WC.NAME}: Hardware version','wc.hardware.version[fgWcWtpSessionWtpHwVersion.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Represents the hardware version of a WTP.','0','7d','0','','46992','','','','','200','1','0','','','0','0','0','0','0','0','0','329d6a6e61a4433c8a3689e7756d311b','0','2','0'), ('47044','18','','10604','WTP {#WC.NAME}: IP Address','wc.ip.addr[fgWcWtpSessionWtpIpAddress.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Represents the IP address of a WTP that corresponds to the IP address in the IP packet header.','0','7d','0','','46992','','','','','200','1','0','','','0','0','0','0','0','0','0','bba22196f76d4b81a9479e5998268be9','0','2','0'), ('47045','18','','10604','WTP {#WC.NAME}: IP Address type','wc.ip.type[fgWcWtpSessionWtpIpAddressType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1210','','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Represents the IP address type of a WTP.','0','7d','0','','46992','','','','','200','1','0','','','0','0','0','0','0','0','0','5c19b48260d94242af38a6962dcd5e52','0','2','0'), ('47046','18','','10604','WTP {#WC.NAME}: Local IP Address','wc.local_ip.addr[fgWcWtpSessionWtpLocalIpAddress.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Represents the local IP address of a WTP and models the CAPWAP Local IPv4 Address or CAPWAP Local IPv6 Address fields [RFC5415]. If a Network Address Translation (NAT) device is present between the WTP and access controller (AC), the value of `fgWcWtpWtpLocalIpAddress` will be different from the value of `fgWcWtpWtpIpAddress`.','0','7d','0','','46992','','','','','200','1','0','','','0','0','0','0','0','0','0','e0340ebc98884ab7a60bfdb4822a3fd5','0','2','0'), ('47047','18','','10604','WTP {#WC.NAME}: Local IP Address type','wc.local_ip.type[fgWcWtpSessionWtpLocalIpAddressType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1210','','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Represents the local IP address type of a WTP.','0','7d','0','','46992','','','','','200','1','0','','','0','0','0','0','0','0','0','df495d85f9f2487e927a2d9649072ed0','0','2','0'), ('47048','18','','10604','WTP {#WC.NAME}: Location','wc.location[fgWcWtpConfigWtpLocation.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Represents the location of this WTP.','0','7d','0','','46992','','','','','200','1','0','','','0','0','0','0','0','0','0','9a365c163aef4d93ac221ad90b66ea63','0','2','0'), ('47049','18','','10604','WTP {#WC.NAME}: Memory capacity','wc.mem.size[fgWcWtpSessionWtpMemoryCapacity.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Represents the total physical memory (RAM) installed.','0','7d','0','','46992','','','','','200','1','0','','','0','0','0','0','0','0','0','d2c18cf3f65243ee83b32944b68a08ac','0','2','0'), ('47050','18','','10604','WTP {#WC.NAME}: Memory usage','wc.mem.usage[fgWcWtpSessionWtpMemoryUsage.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Represents the current memory usage of a WTP (percentage).','0','7d','0','','46992','','','','','200','1','0','','','0','0','0','0','0','0','0','93287d10f57b4d4bbf295dfc626550ad','0','2','0'), ('47051','18','','10604','WTP {#WC.NAME}: Model number','wc.model[fgWcWtpSessionWtpModelNumber.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Represents the model number of a WTP.','0','7d','0','','46992','','','','','200','1','0','','','0','0','0','0','0','0','0','b38e6914dca54948823be8f8acced34f','0','2','0'), ('47052','18','','10604','WTP {#WC.NAME}: Profile name','wc.profile[fgWcWtpConfigWtpProfile.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Represents the profile configured for this WTP.','0','7d','0','','46992','','','','','200','1','0','','','0','0','0','0','0','0','0','545fd4919b944557bc17f28de6cb6fd4','0','2','0'), ('47053','18','','10604','WTP {#WC.NAME}: Radio ATPC high limit','wc.radio.atpc.high_limit[fgWcWtpConfigRadioAutoTxPowerHigh.{#SNMPINDEX}]','0','31d','365d','0','3','','!dBm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Represents the high limit of radio automatic TX power control configured for this WTP, in dBm.','0','7d','0','','46992','','','','','200','1','0','','','0','0','0','0','0','0','0','f9f608b2fa564d2aaae0a550c3e5b75f','0','2','0'), ('47054','18','','10604','WTP {#WC.NAME}: Radio ATPC low limit','wc.radio.atpc.low_limit[fgWcWtpConfigRadioAutoTxPowerLow.{#SNMPINDEX}]','0','31d','365d','0','3','','!dBm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Represents the low limit of radio automatic TX power control configured for this WTP, in dBm.','0','7d','0','','46992','','','','','200','1','0','','','0','0','0','0','0','0','0','41d20dc6db4948699ccd3d125314ccd4','0','2','0'), ('47055','18','','10604','WTP {#WC.NAME}: Radio ATPC status','wc.radio.atpc.status[fgWcWtpConfigRadioAutoTxPowerControl.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1211','','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Whether radio automatic TX power control is enabled on this WTP.','0','7d','0','','46992','','','','','200','1','0','','','0','0','0','0','0','0','0','b36452a5068141598e5ec84ba56ecaf7','0','2','0'), ('47056','18','','10604','WTP {#WC.NAME}: Radio band','wc.radio.band[fgWcWtpConfigRadioBand.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1217','','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Represents the radio band configured for this WTP.','0','7d','0','','46992','','','','','200','1','0','','','0','0','0','0','0','0','0','7987308b9347435aac31172c42c0d759','0','2','0'), ('47057','18','','10604','WTP {#WC.NAME}: Radio enabled','wc.radio.enabled[fgWcWtpConfigRadioEnable.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1211','','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Whether radio is enabled for this WTP.','0','7d','0','','46992','','','','','200','1','0','','','0','0','0','0','0','0','0','1341c0982b50497183d2118e21f11284','0','2','0'), ('47058','18','','10604','WTP {#WC.NAME}: Radio TX power level','wc.radio.power_level[fgWcWtpConfigRadioTxPowerLevel.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Represents the radio TX power setting configured for this WTP, expressed in %.','0','7d','0','','46992','','','','','200','1','0','','','0','0','0','0','0','0','0','8595a885371848c29f6d2b7b0da347fd','0','2','0'), ('47059','18','','10604','WTP {#WC.NAME}: Bits received','wc.rate.in[fgWcWtpSessionWtpByteRxCount.{#SNMPINDEX}]','0','31d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Represents the number of bits received by this WTP per second.','0','7d','0','','46992','','','','','200','1','0','','','0','0','0','0','0','0','0','3ad0c66eb8db4d61beb4c664455df7af','0','2','0'), ('47060','18','','10604','WTP {#WC.NAME}: Bits sent','wc.rate.out[fgWcWtpSessionWtpByteTxCount.{#SNMPINDEX}]','0','31d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Represents the number of bits transmitted by this WTP per second.','0','7d','0','','46992','','','','','200','1','0','','','0','0','0','0','0','0','0','b3b14f29d1dd4629bd99286d5aa4ea98','0','2','0'), ('47061','18','','10604','WTP {#WC.NAME}: Region code','wc.region_code[fgWcWtpSessionWtpRegionCode.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Represents the region code programmed for this WTP.','0','7d','0','','46992','','','','','200','1','0','','','0','0','0','0','0','0','0','6ddda93f378b4ad0b56a1567fb47dc0d','0','2','0'), ('47062','18','','10604','WTP {#WC.NAME}: Session uptime','wc.session.uptime[fgWcWtpSessionWtpSessionUpTime.{#SNMPINDEX}]','0','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Represents the time since the WTP has been connected to the AC.','0','7d','0','','46992','','','','','200','1','0','','','0','0','0','0','0','0','0','184f5351a1f04a3db572fc9a8a650551','0','2','0'), ('47063','18','','10604','WTP {#WC.NAME}: Software version','wc.software.version[fgWcWtpSessionWtpSwVersion.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Represents the software version of a WTP.','0','7d','0','','46992','','','','','200','1','0','','','0','0','0','0','0','0','0','7b5b087cd8da4aba9b6fbbea99190058','0','2','0'), ('47064','18','','10604','WTP {#WC.NAME}: Uptime','wc.uptime[fgWcWtpSessionWtpUpTime.{#SNMPINDEX}]','0','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Represents the time since the WTP has booted.','0','7d','0','','46992','','','','','200','1','0','','','0','0','0','0','0','0','0','c36ff98bbd3f432ab51fce10123dd31a','0','2','0'), ('47065','18','','10604','WTP {#WC.NAME}: All VAPs selected','wc.vaps.all[fgWcWtpConfigVapAll.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1211','','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Whether all wireless virtual access points (VAP) are selected for this WTP.','0','7d','0','','46992','','','','','200','1','0','','','0','0','0','0','0','0','0','c7307fc000a6428c9b819dfa5a192cfa','0','2','0'), ('47066','18','','10604','WTP {#WC.NAME}: VAPs list','wc.vaps.list[fgWcWtpConfigVaps.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: FORTINET-FORTIGATE-MIB Represents a list of wireless virtual access points (VAP) configured for this WTP.','0','7d','0','','46992','','','','','200','1','0','','','0','0','0','0','0','0','0','95960267c4aa45ceabd423a2ae542b53','0','2','0'), ('47067','18','','10175','Sensor discovery','vmware.hv.sensors.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'VMware hardware sensor discovery. The data is retrieved from numeric sensor probes and provides information about the health of the physical system.','0','7d','1','','42877','','','','','200','1','0','','','0','0','0','0','0','0','0','ace5c21254804024a6571a5d030383a0','0','2','0'), ('47068','18','','10175','Sensor [{#NAME}] health state','vmware.hv.sensor.state["{#NAME}"]','0','31d','365d','0','3','','','','',NULL,'53','','','0','','','','','2',NULL,'VMware hardware sensor health state. One of the following: - Gray: Unknown; - Green: OK; - Yellow: It might have a problem; - Red: It has a problem.','0','7d','0','','42877','','','','','200','1','0','','','0','0','0','0','0','0','0','d9a7725ccb0647069b331c5e3e51aeaf','0','2','0'), ('47072','18','','10627','Active Flow Count','aws.elb.nlb.active_flow_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of concurrent flows (or connections) from clients to targets. This metric includes connections in the `SYN_SENT` and `ESTABLISHED` states. TCP connections are not terminated at the load balancer, so a client opening a TCP connection to a target counts as a single flow.','0','7d','0','','47070','','','','','200','1','0','','','0','0','0','0','0','0','0','170a4e084c3748dfa1cfcbb1b168ff4c','0','2','0'), ('47073','18','','10627','Active Flow Count TCP','aws.elb.nlb.active_flow_count_tcp','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of concurrent TCP flows (or connections) from clients to targets. This metric includes connections in the `SYN_SENT` and `ESTABLISHED` states. TCP connections are not terminated at the load balancer, so a client opening a TCP connection to a target counts as a single flow.','0','7d','0','','47070','','','','','200','1','0','','','0','0','0','0','0','0','0','fd00c2998ae145ab821acde0a1515fbb','0','2','0'), ('47074','18','','10627','Active Flow Count TLS','aws.elb.nlb.active_flow_count_tls','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of concurrent TLS flows (or connections) from clients to targets. This metric includes connections in the `SYN_SENT` and `ESTABLISHED` states.','0','7d','0','','47070','','','','','200','1','0','','','0','0','0','0','0','0','0','31ae92c16e5643d3a67f392661518723','0','2','0'), ('47075','18','','10627','Active Flow Count UDP','aws.elb.nlb.active_flow_count_udp','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of concurrent UDP flows (or connections) from clients to targets.','0','7d','0','','47070','','','','','200','1','0','','','0','0','0','0','0','0','0','7ba1f232eacc41cfa6e38939128b9ee1','0','2','0'), ('47076','18','','10627','Get alarms check','aws.elb.nlb.alarms.check','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Check that the alarm data has been received correctly.','0','7d','0','','47069','','','','','200','1','0','','','0','0','0','0','0','0','0','397ce9711a404da48ebdfde65c24ff3b','0','2','0'), ('47077','18','','10627','Consumed LCUs','aws.elb.nlb.capacity_units','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of load balancer capacity units (LCU) used by your load balancer. You pay for the number of LCUs that you use per hour. More information on Elastic Load Balancing pricing here: https://aws.amazon.com/elasticloadbalancing/pricing/','0','7d','0','','47070','','','','','200','1','0','','','0','0','0','0','0','0','0','b2ef5e512e674a969853b389f308664e','0','2','0'), ('47078','18','','10627','Consumed LCUs TCP','aws.elb.nlb.capacity_units_tcp','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of load balancer capacity units (LCU) used by your load balancer for TCP. You pay for the number of LCUs that you use per hour. More information on Elastic Load Balancing pricing here: https://aws.amazon.com/elasticloadbalancing/pricing/','0','7d','0','','47070','','','','','200','1','0','','','0','0','0','0','0','0','0','33c9d9d275c04811b7dcb6806e8a9d9a','0','2','0'), ('47079','18','','10627','Consumed LCUs TLS','aws.elb.nlb.capacity_units_tls','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of load balancer capacity units (LCU) used by your load balancer for TLS. You pay for the number of LCUs that you use per hour. More information on Elastic Load Balancing pricing here: https://aws.amazon.com/elasticloadbalancing/pricing/','0','7d','0','','47070','','','','','200','1','0','','','0','0','0','0','0','0','0','bbcd303cbf654dc68fb40216994eef84','0','2','0'), ('47080','18','','10627','Consumed LCUs UDP','aws.elb.nlb.capacity_units_udp','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of load balancer capacity units (LCU) used by your load balancer for UDP. You pay for the number of LCUs that you use per hour. More information on Elastic Load Balancing pricing here: https://aws.amazon.com/elasticloadbalancing/pricing/','0','7d','0','','47070','','','','','200','1','0','','','0','0','0','0','0','0','0','90742c0ffb4844668f59a75f26132b18','0','2','0'), ('47081','18','','10627','Client TLS Negotiation Error Count','aws.elb.nlb.client_tls_negotiation_error_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of TLS handshakes that failed during negotiation between a client and a TLS listener.','0','7d','0','','47070','','','','','200','1','0','','','0','0','0','0','0','0','0','6bbe06db758f40da9c2e0cb825b2aac3','0','2','0'), ('47082','18','','10627','Get metrics check','aws.elb.nlb.metrics.check','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Check that the Network Load Balancer metrics data has been received correctly.','0','7d','0','','47070','','','','','200','1','0','','','0','0','0','0','0','0','0','13516270f6124bf09a308bc20565528c','0','2','0'), ('47083','18','','10627','New Flow Count','aws.elb.nlb.new_flow_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of new flows (or connections) established from clients to targets in the specified time period.','0','7d','0','','47070','','','','','200','1','0','','','0','0','0','0','0','0','0','38a2dca1cca34a1988dd8713552c952b','0','2','0'), ('47084','18','','10627','New Flow Count TCP','aws.elb.nlb.new_flow_count_tcp','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of new TCP flows (or connections) established from clients to targets in the specified time period.','0','7d','0','','47070','','','','','200','1','0','','','0','0','0','0','0','0','0','a34d5ded1ec445b89a681a39b854b6cd','0','2','0'), ('47085','18','','10627','New Flow Count TLS','aws.elb.nlb.new_flow_count_tls','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of new TLS flows (or connections) established from clients to targets in the specified time period.','0','7d','0','','47070','','','','','200','1','0','','','0','0','0','0','0','0','0','25ec5461aa3f477c8698d3b31ed3263c','0','2','0'), ('47086','18','','10627','New Flow Count UDP','aws.elb.nlb.new_flow_count_udp','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of new UDP flows (or connections) established from clients to targets in the specified time period.','0','7d','0','','47070','','','','','200','1','0','','','0','0','0','0','0','0','0','3f8fb9c0de524d0b9f157a9291fd7f27','0','2','0'), ('47087','18','','10627','Peak Packets per second','aws.elb.nlb.peak_packets.rate','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Highest average packet rate (packets processed per second), calculated every 10 seconds during the sampling window. This metric includes health check traffic.','0','7d','0','','47070','','','','','200','1','0','','','0','0','0','0','0','0','0','ffda7926a52c438c8195f70d772a4f7e','0','2','0'), ('47088','18','','10627','Port Allocation Error Count','aws.elb.nlb.port_allocation_error_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of ephemeral port allocation errors during a client IP translation operation. A non-zero value indicates dropped client connections. Note: Network Load Balancers support 55,000 simultaneous connections or about 55,000 connections per minute to each unique target (IP address and port) when performing client address translation. To fix port allocation errors, add more targets to the target group.','0','7d','0','','47070','','','','','200','1','0','','','0','0','0','0','0','0','0','e83d4c875f414628987989a8e5e27c9e','0','2','0'), ('47089','18','','10627','Processed Bytes','aws.elb.nlb.processed_bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of bytes processed by the load balancer, including TCP/IP headers. This count includes traffic to and from targets, minus health check traffic.','0','7d','0','','47070','','','','','200','1','0','','','0','0','0','0','0','0','0','38cca57bd12048558d8569e6a9d18492','0','2','0'), ('47090','18','','10627','Processed Bytes TCP','aws.elb.nlb.processed_bytes_tcp','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of bytes processed by TCP listeners.','0','7d','0','','47070','','','','','200','1','0','','','0','0','0','0','0','0','0','a6b272d40c3d4b72adcced4aadaa607c','0','2','0'), ('47091','18','','10627','Processed Bytes TLS','aws.elb.nlb.processed_bytes_tls','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of bytes processed by TLS listeners.','0','7d','0','','47070','','','','','200','1','0','','','0','0','0','0','0','0','0','c1e6456cd23446808299396f6368d6a9','0','2','0'), ('47092','18','','10627','Processed Bytes UDP','aws.elb.nlb.processed_bytes_udp','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of bytes processed by UDP listeners.','0','7d','0','','47070','','','','','200','1','0','','','0','0','0','0','0','0','0','5c5e1be4725d4908adc0c506c98a6cab','0','2','0'), ('47093','18','','10627','Processed Packets','aws.elb.nlb.processed_packets','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of packets processed by the load balancer. This count includes traffic to and from targets, including health check traffic.','0','7d','0','','47070','','','','','200','1','0','','','0','0','0','0','0','0','0','c41394db6dba4693b4c19aebdc2e8f69','0','2','0'), ('47094','18','','10627','Security Group Blocked Flow Count Inbound ICMP','aws.elb.nlb.sg_blocked_inbound_icmp','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of new ICMP messages rejected by the inbound rules of the load balancer security groups.','0','7d','0','','47070','','','','','200','1','0','','','0','0','0','0','0','0','0','28bb42c1af9d4ee782a4ac1e75194293','0','2','0'), ('47095','18','','10627','Security Group Blocked Flow Count Inbound TCP','aws.elb.nlb.sg_blocked_inbound_tcp','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of new TCP flows rejected by the inbound rules of the load balancer security groups.','0','7d','0','','47070','','','','','200','1','0','','','0','0','0','0','0','0','0','95db8688978d4fc0b3a54c01c34cd0c7','0','2','0'), ('47096','18','','10627','Security Group Blocked Flow Count Inbound UDP','aws.elb.nlb.sg_blocked_inbound_udp','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of new UDP flows rejected by the inbound rules of the load balancer security groups.','0','7d','0','','47070','','','','','200','1','0','','','0','0','0','0','0','0','0','287e26627214470bba9589af506ca832','0','2','0'), ('47097','18','','10627','Security Group Blocked Flow Count Outbound ICMP','aws.elb.nlb.sg_blocked_outbound_icmp','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of new ICMP messages rejected by the outbound rules of the load balancer security groups.','0','7d','0','','47070','','','','','200','1','0','','','0','0','0','0','0','0','0','65a6fb4771114377bcdf93dc09665b2b','0','2','0'), ('47098','18','','10627','Security Group Blocked Flow Count Outbound TCP','aws.elb.nlb.sg_blocked_outbound_tcp','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of new TCP flows rejected by the outbound rules of the load balancer security groups.','0','7d','0','','47070','','','','','200','1','0','','','0','0','0','0','0','0','0','343b254cfc1a48cc8e401cd3514c76b3','0','2','0'), ('47099','18','','10627','Security Group Blocked Flow Count Outbound UDP','aws.elb.nlb.sg_blocked_outbound_udp','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of new UDP flows rejected by the outbound rules of the load balancer security groups.','0','7d','0','','47070','','','','','200','1','0','','','0','0','0','0','0','0','0','5a9126687a964f969270bc1855081a7a','0','2','0'), ('47100','18','','10627','Target TLS Negotiation Error Count','aws.elb.nlb.target_tls_negotiation_error_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of TLS handshakes that failed during negotiation between a TLS listener and a target.','0','7d','0','','47070','','','','','200','1','0','','','0','0','0','0','0','0','0','583872d175174881a8cdcede4fe641e7','0','2','0'), ('47101','18','','10627','TCP Client Reset Count','aws.elb.nlb.tcp_client_reset_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of reset (RST) packets sent from a client to a target. These resets are generated by the client and forwarded by the load balancer.','0','7d','0','','47070','','','','','200','1','0','','','0','0','0','0','0','0','0','035021358b9f4ae2b0478d5168fc1501','0','2','0'), ('47102','18','','10627','TCP ELB Reset Count','aws.elb.nlb.tcp_elb_reset_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of reset (RST) packets generated by the load balancer. For more information, see: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/load-balancer-troubleshooting.html#elb-reset-count-metric','0','7d','0','','47070','','','','','200','1','0','','','0','0','0','0','0','0','0','84f23b89fb414731979941a9a4701025','0','2','0'), ('47103','18','','10627','TCP Target Reset Count','aws.elb.nlb.tcp_target_reset_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of reset (RST) packets sent from a target to a client. These resets are generated by the target and forwarded by the load balancer.','0','7d','0','','47070','','','','','200','1','0','','','0','0','0','0','0','0','0','3318c330736e406c9eec5f581f3fc59b','0','2','0'), ('47104','18','','10627','Unhealthy Routing Flow Count','aws.elb.nlb.unhealthy_routing_flow_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of flows (or connections) that are routed using the routing failover action (fail open).','0','7d','0','','47070','','','','','200','1','0','','','0','0','0','0','0','0','0','706019d7a11e48a9aaa1b5484c93fd8e','0','2','0'), ('47105','18','','10627','Load Balancer alarm discovery','aws.elb.nlb.alarms.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for the discovery of alarm balancers.','0','7d','1','','47069','','','','','200','1','0','','','0','0','0','0','0','0','0','92bef05094464c16b03b37f1f797d436','0','2','0'), ('47106','18','','10627','Target groups discovery','aws.elb.nlb.target_groups.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for the discovery of `{$AWS.ELB.TARGET.GROUP.NAME}` target groups.','0','7d','1','','47071','','','','','200','1','0','','','0','0','0','0','0','0','0','bc0fa68299464e2ebb031b005bd7041a','0','2','0'), ('47108','18','','10627','[{#ALARM_NAME}]: Get metrics','aws.elb.nlb.alarm.get_metrics["{#ALARM_NAME}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get metrics about the alarm state and its reason.','0','7d','0','','47069','','','','','200','1','0','','','0','0','0','0','0','0','0','c9f5791fe83743739ab74289126c7843','0','2','0'), ('47109','18','','10627','[{#AWS.ELB.TARGET.GROUP.NAME}]: Healthy Host Count','aws.elb.nlb.target_groups.healthy_host_count["{#AWS.ELB.TARGET.GROUP.NAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of targets that are considered healthy.','0','7d','0','','47107','','','','','200','1','0','','','0','0','0','0','0','0','0','8a42548bf31843acb0b021dfa0cf7f38','0','2','0'), ('47110','18','','10627','[{#AWS.ELB.TARGET.GROUP.NAME}]: Unhealthy Host Count','aws.elb.nlb.target_groups.unhealthy_host_count["{#AWS.ELB.TARGET.GROUP.NAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of targets that are considered unhealthy.','0','7d','0','','47107','','','','','200','1','0','','','0','0','0','0','0','0','0','b5e01700b1a14cd1bcfb676c69490f86','0','2','0'), ('47119','18','','10285','FS [{#FSNAME}]: Filesystem is read-only','vfs.fs.[node_exporter,"{#FSNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The filesystem is mounted as read-only. It is available only for Zabbix agents 6.4 and higher.','0','7d','0','','29395','','','','','200','1','0','','','0','0','0','0','0','0','0','3946668d2bbf47ef85ae7fcea639c622','0','2','0'), ('47120','18','','10248','FS [{#FSNAME}]: Get data','vfs.fs.walk.data[dskEntry.{#SNMPINDEX}]','0','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB Intermediate data for subsequent processing.','0','7d','0','','45481','','','','','200','1','0','','','0','0','0','0','0','0','0','73d029a287c34f3291bce17c7d1d08f8','0','2','0'), ('47127','18','','10249','FS [{#FSNAME}]: Get data','vfs.fs.walk.data[hrStorage.{#SNMPINDEX}]','0','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'HOST-RESOURCES-MIB::hrStorage. Intermediate data for subsequent processing.','0','7d','0','','45487','','','','','200','1','0','','','0','0','0','0','0','0','0','0dbd5de181fe44e1970e2f9622ad76b1','0','2','0'), ('47128','18','','10249','{#MEMNAME}: Get data','vm.memory.data[{#SNMPINDEX}]','0','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','7d','0','','45487','','','','','200','1','0','','','0','0','0','0','0','0','0','ef95155004f64f9f95a794c1e5fe9131','0','2','0'), ('47132','18','','10628','Get metrics check','website.metrics.check','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Check that the performance counters of the requested website data has been received correctly.','0','7d','0','','47131','','','','','200','1','0','','','0','0','0','0','0','0','0','0de3b06fb406427499b0d4831774b540','0','2','0'), ('47133','18','','10628','Website {$WEBSITE.DOMAIN} Navigation DNS lookup time','website.navigation.dns_lookup_time','0','31d','0','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Measuring of time spent on DNS lookup (domainLookupEnd - domainLookupStart).','0','7d','0','','47131','','','','','200','1','0','','','0','0','0','0','0','0','0','d96d4723a8e34393bf4e3e2973eafc48','0','2','0'), ('47134','18','','10628','Website {$WEBSITE.DOMAIN} Navigation domContentLoaded time','website.navigation.dom_content_loaded_time','0','31d','0','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Measuring of time spent on DOM content loading (domContentLoadedEventEnd - domContentLoadedEventStart).','0','7d','0','','47131','','','','','200','1','0','','','0','0','0','0','0','0','0','760e0d852a924648a8f75bb24b888445','0','2','0'), ('47135','18','','10628','Website {$WEBSITE.DOMAIN} Navigation encodedBody size','website.navigation.encoded_size','0','31d','0','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Measuring of encoded size (encodedBodySize).','0','7d','0','','47131','','','','','200','1','0','','','0','0','0','0','0','0','0','6056b72c640a4560b90ee49df1e66171','0','2','0'), ('47136','18','','10628','Website {$WEBSITE.DOMAIN} Navigation load event time','website.navigation.load_time','0','31d','0','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Measuring of load finished time (loadEventEnd).','0','7d','0','','47131','','','','','200','1','0','','','0','0','0','0','0','0','0','cc0e03d92cb34298a952b06f7185efd6','0','2','0'), ('47137','18','','10628','Website {$WEBSITE.DOMAIN} Navigation request time','website.navigation.request_time','0','31d','0','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Measuring of time spend on the request (responseStart - requestStart).','0','7d','0','','47131','','','','','200','1','0','','','0','0','0','0','0','0','0','12d8df72ebfc493d90f4b47773e4101e','0','2','0'), ('47138','18','','10628','Website {$WEBSITE.DOMAIN} Navigation resource fetch time','website.navigation.resource_fetch_time','0','31d','0','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Measuring of time spent to fetch the resource (without redirects) (responseEnd - fetchStart).','0','7d','0','','47131','','','','','200','1','0','','','0','0','0','0','0','0','0','326c2f6a5d0340418a7d2f4416477fd4','0','2','0'), ('47139','18','','10628','Website {$WEBSITE.DOMAIN} Navigation response time','website.navigation.response_time','0','31d','0','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Measuring of time spend on the response (responseEnd - responseStart).','0','7d','0','','47131','','','','','200','1','0','','','0','0','0','0','0','0','0','37d268e1ba1c42e98eeb1717e92d7c17','0','2','0'), ('47140','18','','10628','Website {$WEBSITE.DOMAIN} Navigation service worker processing time','website.navigation.service_worker_processing_time','0','31d','0','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Measuring of sum of time spend on browser''s service worker processing (fetchStart - workerStart).','0','7d','0','','47131','','','','','200','1','0','','','0','0','0','0','0','0','0','35487bbb10ab47fe9d210cf1d4c0695d','0','2','0'), ('47141','18','','10628','Website {$WEBSITE.DOMAIN} Navigation TCP handshake time','website.navigation.tcp_handshake_time','0','31d','0','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Measuring of time spent on TCP handshake (connectEnd - connectStart).','0','7d','0','','47131','','','','','200','1','0','','','0','0','0','0','0','0','0','5adf88f1c63145bfb544a6e590b1b8ce','0','2','0'), ('47142','18','','10628','Website {$WEBSITE.DOMAIN} Navigation TLS negotiation time','website.navigation.tls_negotiation_time','0','31d','0','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Measuring of time spent on TLS negotiation (requestStart - secureConnectionStart).','0','7d','0','','47131','','','','','200','1','0','','','0','0','0','0','0','0','0','34663a973a5d4b22a841d6a751dbe09c','0','2','0'), ('47143','18','','10628','Website {$WEBSITE.DOMAIN} Navigation decodedBody size','website.navigation.total_size','0','31d','0','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Measuring of total size (decodedBodySize).','0','7d','0','','47131','','','','','200','1','0','','','0','0','0','0','0','0','0','ae62ce5db2054f40ac7e281437d38f53','0','2','0'), ('47144','18','','10628','Website {$WEBSITE.DOMAIN} Navigation transfer size','website.navigation.transferred_size','0','31d','0','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Measuring of transferred size (transferSize).','0','7d','0','','47131','','','','','200','1','0','','','0','0','0','0','0','0','0','7c1d1abd30b445d69f3b73ff4a1ba356','0','2','0'), ('47145','18','','10628','Website {$WEBSITE.DOMAIN} Resource DNS lookup time','website.resource.dns_lookup_time','0','31d','0','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Measuring of time spent on DNS lookup (domainLookupEnd - domainLookupStart).','0','7d','0','','47131','','','','','200','1','0','','','0','0','0','0','0','0','0','3557ae18d19e49839fb3012e79949b49','0','2','0'), ('47146','18','','10628','Website {$WEBSITE.DOMAIN} Resource domContentLoaded time','website.resource.dom_content_loaded_time','0','31d','0','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Measuring of time spent on DOM content loading (domContentLoadedEventEnd - domContentLoadedEventStart).','0','7d','0','','47131','','','','','200','1','0','','','0','0','0','0','0','0','0','6e29d13df9d94b22b84c3522ea451917','0','2','0'), ('47147','18','','10628','Website {$WEBSITE.DOMAIN} Resource encodedBody size','website.resource.encoded_size','0','31d','0','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Measuring of encoded size (encodedBodySize).','0','7d','0','','47131','','','','','200','1','0','','','0','0','0','0','0','0','0','09a5ead05ce64371aa731cf566b9b0f9','0','2','0'), ('47148','18','','10628','Website {$WEBSITE.DOMAIN} Resource fetch time','website.resource.fetch_time','0','31d','0','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Measuring of time spent to fetch the resource (without redirects) (responseEnd - fetchStart).','0','7d','0','','47131','','','','','200','1','0','','','0','0','0','0','0','0','0','8e051253fc8c46aa9da009cb022d9023','0','2','0'), ('47149','18','','10628','Website {$WEBSITE.DOMAIN} Resource load event time','website.resource.load_time','0','31d','0','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Measuring of load finished time (loadEventEnd).','0','7d','0','','47131','','','','','200','1','0','','','0','0','0','0','0','0','0','fa84484786754da7b68a9ec3c50d63c4','0','2','0'), ('47150','18','','10628','Website {$WEBSITE.DOMAIN} Resource request time','website.resource.request_time','0','31d','0','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Measuring of time spend on the request (responseStart - requestStart).','0','7d','0','','47131','','','','','200','1','0','','','0','0','0','0','0','0','0','a53c136efe8141028f09cc1ca8277c10','0','2','0'), ('47151','18','','10628','Website {$WEBSITE.DOMAIN} Resource response time','website.resource.response_time','0','31d','0','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Measuring of time spend on the response (responseEnd - responseStart).','0','7d','0','','47131','','','','','200','1','0','','','0','0','0','0','0','0','0','f99d69f39c404d5a94cf00a96a3f0701','0','2','0'), ('47152','18','','10628','Website {$WEBSITE.DOMAIN} Resource service worker processing time','website.resource.service_worker_processing_time','0','31d','0','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Measuring of sum of time spend on browser''s service worker processing (fetchStart - workerStart).','0','7d','0','','47131','','','','','200','1','0','','','0','0','0','0','0','0','0','b2199d4d0cc146aeb268e41fe65ca7ac','0','2','0'), ('47153','18','','10628','Website {$WEBSITE.DOMAIN} Resource TCP handshake time','website.resource.tcp_handshake_time','0','31d','0','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Measuring of time spent on TCP handshake (connectEnd - connectStart).','0','7d','0','','47131','','','','','200','1','0','','','0','0','0','0','0','0','0','5b57473fffbf45d5bc3ca33e903e0b35','0','2','0'), ('47154','18','','10628','Website {$WEBSITE.DOMAIN} Resource TLS negotiation time','website.resource.tls_negotiation_time','0','31d','0','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Measuring of time spent on TLS negotiation (requestStart - secureConnectionStart).','0','7d','0','','47131','','','','','200','1','0','','','0','0','0','0','0','0','0','61071f340c6b47f2ac05fbd15e393dd3','0','2','0'), ('47155','18','','10628','Website {$WEBSITE.DOMAIN} Resource decodedBody size','website.resource.total_size','0','31d','0','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Measuring of total size (decodedBodySize).','0','7d','0','','47131','','','','','200','1','0','','','0','0','0','0','0','0','0','479d7c890adf46ac88e11a146f193f56','0','2','0'), ('47156','18','','10628','Website {$WEBSITE.DOMAIN} Resource transfer size','website.resource.transferred_size','0','31d','0','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Measuring of transferred size (transferSize).','0','7d','0','','47131','','','','','200','1','0','','','0','0','0','0','0','0','0','6b98ca6df6894be29b4ab7c645cac92d','0','2','0'), ('47157','18','','10628','Website {$WEBSITE.DOMAIN} Screenshot','website.screenshot','0','31d','0','0','5','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Website {$WEBSITE.DOMAIN} screenshot.','0','7d','0','','47131','','','','','200','1','0','','','0','0','0','0','0','0','0','931d98f67f9f45069711558083f40d33','0','2','0'), ('47191','18','','10629','License discovery','jmx.license.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of the Jira licenses.','0','7d','1','','47158','','','','','200','1','0','','','0','0','0','0','0','0','0','750f1986954f4cfda847bc66ecbfd910','0','2','0'), ('47197','18','','10629','License [{#LICENSE.TYPE}]: Users: Current','jmx.license.get.user.current["{#LICENSE.TYPE}"]','0','31d','365d','0','0','','','','',NULL,'1222','','','0','','','','','2',NULL,'Current user count for `{#LICENSE.TYPE}`.','0','7d','0','','47158','','','','','200','1','0','','','0','0','0','0','0','0','0','e2f1224ac6de4a24a50bf6b4356fdd25','0','2','0'), ('47198','18','','10629','License [{#LICENSE.TYPE}]: Users: Maximum','jmx.license.get.user.max["{#LICENSE.TYPE}"]','0','31d','365d','0','0','','','','',NULL,'1222','','','0','','','','','2',NULL,'User count limit for `{#LICENSE.TYPE}`. `-1` = No limits for the license type.','0','7d','0','','47158','','','','','200','1','0','','','0','0','0','0','0','0','0','77e789c5d8484367997f45ce24b65cd9','0','2','0'), ('47201','18','','10262','Utilization of browser poller data collector processes, in %','process.browser_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the browser poller processes have been busy for the last minute.','0','7d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','e71c85b839d2447ba9a8bec8aa0fb794','0','2','0'), ('47202','18','','10262','Utilization of internal poller data collector processes, in %','process.internal_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the internal poller processes have been busy for the last minute.','0','7d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','2474dabb131247f0bce1d43075cee215','0','2','0'), ('47211','18','','10261','Utilization of browser poller data collector processes, in %','process.browser_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the browser poller processes have been busy for the last minute.','0','7d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','2270009e1b4c4cbb9cce4001b46df2ce','0','2','0'), ('47212','18','','10261','Utilization of configuration syncer worker internal processes, in %','process.configuration_syncer_worker.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the configuration syncer worker processes have been busy for the last minute.','0','7d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','f8946a8a36774b00a01645ae77228a55','0','2','0'), ('47213','18','','10261','Utilization of internal poller data collector processes, in %','process.internal_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the internal poller processes have been busy for the last minute.','0','7d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','c8257547b30e424b9b6893896b2d8dd7','0','2','0'), ('47214','18','','10261','Utilization of proxy group manager internal processes, in %','process.proxy_group_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the proxy group manager processes have been busy for the last minute.','0','7d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','c75afd4bc7794328a96ac261dc4776aa','0','2','0'), ('47216','18','','10532','VM availability metric','azure.vm.availability','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Measure of availability of virtual machine over time.','0','7d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','86f996df859a445994ed671feab6012f','0','2','0'), ('47217','18','','10532','Data disk latency','azure.vm.disk.latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Average time to complete each IO during the monitoring period for Data Disk.','0','7d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','903b8b2724924d5e8627253d851f09e5','0','2','0'), ('47218','18','','10532','OS disk latency','azure.vm.os.disk.latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Average time to complete each IO during the monitoring period for OS Disk.','0','7d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','3932b607cff14ee0a891c96587438807','0','2','0'), ('47219','18','','10532','Temp disk latency','azure.vm.temp.disk.latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Average time to complete each IO during the monitoring period for temp disk.','0','7d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','7d2ca29fce9a4c9ba60279f07de73089','0','2','0'), ('47220','18','','10532','Temp disk queue depth','azure.vm.temp.disk.queue.depth','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Temp Disk queue depth (or queue length).','0','7d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','67638ce2228e4f5d9f4aae44d9c4a47f','0','2','0'), ('47221','18','','10532','Temp disk read rate','azure.vm.temp.disk.read.bps','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Bytes/Sec read from a single disk during the monitoring period for temp disk.','0','7d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','f07200debf2d49dba3c0a63102258c6c','0','2','0'), ('47222','18','','10532','Temp disk IOPS read','azure.vm.temp.disk.read.ops','0','31d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'Read IOPS from a single disk during the monitoring period for temp disk.','0','7d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','4b7b661391ac46179913a0e1bf012e76','0','2','0'), ('47223','18','','10532','Temp disk write rate','azure.vm.temp.disk.write.bps','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Bytes/Sec written to a single disk during the monitoring period for temp disk.','0','7d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','dc3601128000423b8b46ef1046562105','0','2','0'), ('47224','18','','10532','Temp disk IOPS write','azure.vm.temp.disk.write.ops','0','31d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'Bytes/Sec written to a single disk during the monitoring period for temp disk.','0','7d','0','','43715','','','','','200','1','0','','','0','0','0','0','0','0','0','d03cdea05ae549ffb63c6db4a7e40c13','0','2','0'), ('47225','18','','10630','VM availability metric','azure.scaleset.availability','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Measure of availability of the virtual machines over time.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','eea82baaa0684ba688a69da62bf1eec5','0','2','0'), ('47226','18','','10630','Availability status detailed','azure.scaleset.availability.details','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The summary description of availability status.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','21740af2abca461f88a81f07ba297929','0','2','0'), ('47227','18','','10630','Availability state','azure.scaleset.availability.state','0','31d','365d','0','3','','','','',NULL,'1224','','','0','','','','','0',NULL,'The availability status of the resource. 0 - Available - no events detected that affect the health of the resource. 1 - Degraded - your resource detected a loss in performance, although it''s still available for use. 2 - Unavailable - the service detected an ongoing platform or non-platform event that affects the health of the resource. 3 - Unknown - Resource Health hasn''t received information about the resource for more than 10 minutes.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','65e1ca0b38e04adca069388a4c5e3869','0','2','0'), ('47228','18','','10630','CPU credits consumed','azure.scaleset.cpu.credits.consumed','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of credits consumed by the virtual machine. Only available on B-series burstable VMs.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','dd6bac4dda51446e9a16450c61b8e23e','0','2','0'), ('47229','18','','10630','CPU credits remaining','azure.scaleset.cpu.credits.remaining','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of credits available to burst. Only available on B-series burstable VMs.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','e05426408c9f448a9f8df40a52b6502a','0','2','0'), ('47230','18','','10630','CPU utilization','azure.scaleset.cpu.utilization','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of allocated compute units that are currently in use by the virtual machine(s).','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','0883913383d54b81b5c67b65dc595ae3','0','2','0'), ('47231','18','','10630','Data disk max burst bandwidth','azure.scaleset.data.disk.bandwidth.burst.max','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum byte-per-second throughput the data disk can achieve with bursting.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','bc342d5b3c42487887df3a82cd65e265','0','2','0'), ('47232','18','','10630','Data disk used burst BPS credits','azure.scaleset.data.disk.bandwidth.burst.used','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of data disk burst bandwidth credits used so far.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','1d19657c420b4a0a9e601a4effefa58f','0','2','0'), ('47233','18','','10630','Data disk bandwidth consumed','azure.scaleset.data.disk.bandwidth.consumed','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of data disk bandwidth consumed per minute.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','76a0d87846b74a128d63f62da04050ab','0','2','0'), ('47234','18','','10630','Data disk target bandwidth','azure.scaleset.data.disk.bandwidth.target','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Baseline byte-per-second throughput the data disk can achieve without bursting.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','dd3994c9e83f48d395e61c91aae2f17d','0','2','0'), ('47235','18','','10630','Data disk max burst IOPS','azure.scaleset.data.disk.iops.burst.max','0','31d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum IOPS the data disk can achieve with bursting.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','53ab6e4d0dcd46d48c6ede579ca00366','0','2','0'), ('47236','18','','10630','Data disk used burst IO credits','azure.scaleset.data.disk.iops.burst.used','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of data disk burst I/O credits used so far.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','e4bfd5f8c13d44e69facf507a10db553','0','2','0'), ('47237','18','','10630','Data disk IOPS consumed','azure.scaleset.data.disk.iops.consumed','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of data disk I/Os consumed per minute.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','d7633aaf087741ec8558198dc382df1a','0','2','0'), ('47238','18','','10630','Data disk target IOPS','azure.scaleset.data.disk.iops.target','0','31d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'Baseline IOPS the data disk can achieve without bursting.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','86123a1bff83403a8190fc5f61c4edd7','0','2','0'), ('47239','18','','10630','Data disk queue depth','azure.scaleset.data.disk.queue.depth','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data disk queue depth (or queue length).','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','72cadbd3a3ae409b8f192217c2ff6cb1','0','2','0'), ('47240','18','','10630','Data disk read rate','azure.scaleset.data.disk.read.bps','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Bytes/sec read from a single disk during the monitoring period.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','d42c402ec613423287335538136bcd05','0','2','0'), ('47241','18','','10630','Data disk IOPS read','azure.scaleset.data.disk.read.ops','0','31d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'Read IOPS from a single disk during the monitoring period.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','2e265f80dccd4542a0f4b0adf462fec0','0','2','0'), ('47242','18','','10630','Data disk write rate','azure.scaleset.data.disk.write.bps','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Bytes/sec written to a single disk during the monitoring period.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','99b8c634131d49b7828e88a44342e2b6','0','2','0'), ('47243','18','','10630','Data disk IOPS write','azure.scaleset.data.disk.write.ops','0','31d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'Write IOPS from a single disk during the monitoring period.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','0c46306040db41af895ab9a82d55ad31','0','2','0'), ('47244','18','','10630','Get errors','azure.scaleset.data.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A list of errors from API requests.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','14a25a861b9f491194ea055c189cc2f9','0','2','0'), ('47245','18','','10630','Disk read','azure.scaleset.disk.read','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Bytes read from the disk during the monitoring period.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','aa8675f8f0fa454db27d46308ab92c79','0','2','0'), ('47246','18','','10630','Disk IOPS read','azure.scaleset.disk.read.ops','0','31d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'Disk read IOPS.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','39f1d8154bc540b78f3d1c04ea68144f','0','2','0'), ('47247','18','','10630','Disk write','azure.scaleset.disk.write','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Bytes written to the disk during the monitoring period.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','a419f2280662418abe7692d22a5344fb','0','2','0'), ('47248','18','','10630','Disk IOPS write','azure.scaleset.disk.write.ops','0','31d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'Write IOPS from a single disk during the monitoring period.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','96ac2287bae3415cae1b0a8590954d02','0','2','0'), ('47249','18','','10630','Inbound flows','azure.scaleset.flows.inbound','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Inbound Flows are the number of current flows in the inbound direction (traffic going into the VMs).','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','7f0cb52d4db84c2b8d8ef8f82cc6d77b','0','2','0'), ('47250','18','','10630','Inbound flow maximum creation rate','azure.scaleset.flows.inbound.max','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum creation rate of inbound flows (traffic going into the VM).','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','dacfd47b3c3142ce9ca043ebda4e7614','0','2','0'), ('47251','18','','10630','Outbound flows','azure.scaleset.flows.outbound','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Outbound Flows are the number of current flows in the outbound direction (traffic going out of the VMs).','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','8ef6bb3bc1884426ab3fe9998acf4e25','0','2','0'), ('47252','18','','10630','Outbound flow maximum creation rate','azure.scaleset.flows.outbound.max','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum creation rate of outbound flows (traffic going out of the VM).','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','15b8f8fde6e4458e8904428537a8b32a','0','2','0'), ('47253','18','','10630','Network in total','azure.scaleset.network.in.total','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of bytes received on all network interfaces by the virtual machine(s) (incoming traffic).','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','4025ada5ba4940b88b48b7b71efbe07b','0','2','0'), ('47254','18','','10630','Network out total','azure.scaleset.network.out.total','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of bytes out on all network interfaces by the virtual machine(s) (outgoing traffic).','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','6bca5eeb39194c5f83f83863f1e6b4c6','0','2','0'), ('47255','18','','10630','OS disk used burst BPS credits','azure.scaleset.os.disk.bandwidth.burst.used','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of OS Disk burst bandwidth credits used so far.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','d81be2d243124ebd8efd5fa4fd79d3f6','0','2','0'), ('47256','18','','10630','OS disk bandwidth consumed','azure.scaleset.os.disk.bandwidth.consumed','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of operating system disk bandwidth consumed per minute.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','b66ff8f85e614b9c9db479e8452a3acb','0','2','0'), ('47257','18','','10630','OS disk max burst bandwidth','azure.scaleset.os.disk.bandwidth.max','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum byte-per-second throughput the OS Disk can achieve with bursting.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','b5f5c9d4040c4b889287658532aec890','0','2','0'), ('47258','18','','10630','OS disk target bandwidth','azure.scaleset.os.disk.bandwidth.target','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Baseline byte-per-second throughput the OS Disk can achieve without bursting.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','4f28508261554a11a858f905160a5db2','0','2','0'), ('47259','18','','10630','OS disk used burst IO credits','azure.scaleset.os.disk.iops.burst.used','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of OS Disk burst I/O credits used so far.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','97005b2f1be1455f8002b3f777898163','0','2','0'), ('47260','18','','10630','OS disk IOPS consumed','azure.scaleset.os.disk.iops.consumed','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of operating system disk I/Os consumed per minute.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','87e51f85e00646d4bfe12840f444e47a','0','2','0'), ('47261','18','','10630','OS disk max burst IOPS','azure.scaleset.os.disk.iops.max','0','31d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum IOPS the OS Disk can achieve with bursting.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','1ff472b5cca24332abea886bff44435f','0','2','0'), ('47262','18','','10630','OS disk target IOPS','azure.scaleset.os.disk.iops.target','0','31d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'Baseline IOPS the OS disk can achieve without bursting.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','72b19174782d4905be402e2825098f17','0','2','0'), ('47263','18','','10630','OS disk queue depth','azure.scaleset.os.disk.queue.depth','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'OS Disk queue depth (or queue length).','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','3bbb425e37894415b002e026e34259a2','0','2','0'), ('47264','18','','10630','OS disk read rate','azure.scaleset.os.disk.read.bps','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Bytes/sec read from a single disk during the monitoring period - for an OS disk.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','7879801b929249d0b266ae905307beee','0','2','0'), ('47265','18','','10630','OS disk IOPS read','azure.scaleset.os.disk.read.ops','0','31d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'Read IOPS from a single disk during the monitoring period - for an OS disk.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','542881bbbb694b1a84befbb772ded703','0','2','0'), ('47266','18','','10630','OS disk write rate','azure.scaleset.os.disk.write.bps','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Bytes/sec written to a single disk during the monitoring period - for an OS disk.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','c86371d6f8224b418f003a7fdefe9884','0','2','0'), ('47267','18','','10630','OS disk IOPS write','azure.scaleset.os.disk.write.ops','0','31d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'Write IOPS from a single disk during the monitoring period - for an OS disk.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','77d95de6fdbd49ba9bae68e75f792560','0','2','0'), ('47268','18','','10630','Premium data disk cache read hit in %','azure.scaleset.premium.data.disk.cache.read.hit','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of premium data disk cache read hit.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','25915ce6d37740bf83f656c5cc7b9960','0','2','0'), ('47269','18','','10630','Premium data disk cache read miss in %','azure.scaleset.premium.data.disk.cache.read.miss','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of premium data disk cache read miss.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','f04f8f7e59ec4786b5ea8765cbf69b82','0','2','0'), ('47270','18','','10630','Premium OS disk cache read hit in %','azure.scaleset.premium.os.disk.cache.read.hit','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of premium OS disk cache read hit.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','65442659fe944842811638ac04dc998a','0','2','0'), ('47271','18','','10630','Premium OS disk cache read miss in %','azure.scaleset.premium.os.disk.cache.read.miss','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of premium OS disk cache read miss.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','981c83a8623c481ca040c66f5d5738ec','0','2','0'), ('47272','18','','10630','VM cached bandwidth consumed','azure.scaleset.vm.cached.bandwidth.consumed','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of cached disk bandwidth consumed by the VM.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','8bfbc99e09314aeea7c0d0563d148c11','0','2','0'), ('47273','18','','10630','VM cached IOPS consumed','azure.scaleset.vm.cached.iops.consumed','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of cached disk IOPS consumed by the VM.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','ae97e2890b5844749913f3a1d650091d','0','2','0'), ('47274','18','','10630','Virtual machine count','azure.scaleset.vm.count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Current amount of virtual machines in the scale set.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','7124d8d7d2b246feaa8959fd6d5aba0f','0','2','0'), ('47275','18','','10630','Available memory','azure.scaleset.vm.memory','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Amount of physical memory, in bytes, immediately available for allocation to a process or for system use in the virtual machine.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','31f742e4476f4ab09d3a2bd46f820098','0','2','0'), ('47276','18','','10630','VM uncached bandwidth consumed','azure.scaleset.vm.uncached.bandwidth.consumed','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of uncached disk bandwidth consumed by the VM.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','8271a3a47a744e23bd239919760fb9b4','0','2','0'), ('47277','18','','10630','VM uncached IOPS consumed','azure.scaleset.vm.uncached.iops.consumed','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of uncached disk IOPS consumed by the VM.','0','7d','0','','47215','','','','','200','1','0','','','0','0','0','0','0','0','0','dd8f8111b6914ba38f6fe2f707dbb9f1','0','2','0'), ('47278','18','','10531','Virtual machine scale set discovery','azure.scaleset.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The list of virtual machine scale sets provided by the subscription.','0','7d','1','','43714','','','','','200','1','0','','','0','0','0','0','0','0','0','006fc1e9e61d45c5a795a251a3237983','0','2','0'), ('47281','18','','10506','Containers ready','kube.kubelet.containers.ready','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of ready containers.','0','7d','0','','39907','','','','','200','1','0','','','0','0','0','0','0','0','0','35783053a41646ffb6420f8d41880b39','0','2','0'), ('47284','18','','10632','Get alarms check','aws.lambda.alarms.check','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Check that the alarm data has been received correctly.','0','7d','0','','47282','','','','','200','1','0','','','0','0','0','0','0','0','0','397bcf955a7449b79dab4770fe17922f','0','2','0'), ('47285','18','','10632','Async events dropped sum','aws.lambda.async_events_dropped.sum','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of events that are dropped without successfully executing the function. If you configure a dead-letter queue (DLQ) or an `OnFailure` destination, events are sent there before they''re dropped.','0','7d','0','','47283','','','','','200','1','0','','','0','0','0','0','0','0','0','57c7e41184d74cc98c2eea33bfe28028','0','2','0'), ('47286','18','','10632','Async events received sum','aws.lambda.async_events_received.sum','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of events that Lambda successfully queues for processing. This metric provides insight into the number of events that a Lambda function receives.','0','7d','0','','47283','','','','','200','1','0','','','0','0','0','0','0','0','0','d8000a6335b14e0dae702787e4bf9db2','0','2','0'), ('47287','18','','10632','Async event age average','aws.lambda.async_event_age.avg','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The time between when Lambda successfully queues the event and when the function is invoked. The value of this metric increases when events are being retried due to invocation failures or throttling.','0','7d','0','','47283','','','','','200','1','0','','','0','0','0','0','0','0','0','48b180f52bbf4c93b64433a97e00a029','0','2','0'), ('47288','18','','10632','Total concurrent executions','aws.lambda.concurrent_executions.max','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of function instances that are processing events. If this number reaches your concurrent executions quota for the Region or the reserved concurrency limit on the function, then Lambda will throttle additional invocation requests.','0','7d','0','','47283','','','','','200','1','0','','','0','0','0','0','0','0','0','7eaf67dc1859405aa55f22ea8d85e7c5','0','2','0'), ('47289','18','','10632','Dead letter errors sum','aws.lambda.dead_letter_errors.sum','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'For asynchronous invocation, the number of times that Lambda attempts to send an event to a dead-letter queue (DLQ) but fails. Dead-letter errors can occur due to misconfigured resources or size limits.','0','7d','0','','47283','','','','','200','1','0','','','0','0','0','0','0','0','0','82536a92c0f84d67aabbe69e38e7f3a2','0','2','0'), ('47290','18','','10632','Duration average','aws.lambda.duration.avg','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time that your function code spends processing an event. The billed duration for an invocation is the value of `Duration` rounded up to the nearest millisecond. Duration does not include cold start time.','0','7d','0','','47283','','','','','200','1','0','','','0','0','0','0','0','0','0','370d8ac63e024a94a493c95e528f4604','0','2','0'), ('47291','18','','10632','Errors sum','aws.lambda.errors.sum','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of invocations that result in a function error. Function errors include exceptions that your code throws and exceptions that the Lambda runtime throws. The runtime returns errors for issues such as timeouts and configuration errors.','0','7d','0','','47283','','','','','200','1','0','','','0','0','0','0','0','0','0','1b16f879dc5648d0b50e060d1f056fab','0','2','0'), ('47292','18','','10632','Invocations sum','aws.lambda.invocations.sum','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of times that your function code is invoked, including successful invocations and invocations that result in a function error. Invocations aren''t recorded if the invocation request is throttled or otherwise results in an invocation error. The value of `Invocations` equals the number of requests billed.','0','7d','0','','47283','','','','','200','1','0','','','0','0','0','0','0','0','0','1bab5865e01b4233bc2bb5cb17516360','0','2','0'), ('47293','18','','10632','Get metrics check','aws.lambda.metrics.check','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Check that the Lambda function metrics data has been received correctly.','0','7d','0','','47283','','','','','200','1','0','','','0','0','0','0','0','0','0','2bfa15a2c1ef4f66a8b2065e34a1a690','0','2','0'), ('47294','18','','10632','Throttles sum','aws.lambda.throttles.sum','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of invocation requests that are throttled. When all function instances are processing requests and no concurrency is available to scale up, Lambda rejects additional requests with a `TooManyRequestsException` error.','0','7d','0','','47283','','','','','200','1','0','','','0','0','0','0','0','0','0','9f141ce56187497794d109c030c43a06','0','2','0'), ('47295','18','','10632','Unreserved concurrent executions maximum','aws.lambda.unreserved_concurrent_executions.max','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'For a Region, the number of events that function without reserved concurrency are processing.','0','7d','0','','47283','','','','','200','1','0','','','0','0','0','0','0','0','0','b0ecd33e96734ac69447c095032dea55','0','2','0'), ('47296','18','','10632','Lambda alarm discovery','aws.lambda.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for the discovery of alarm Lambda functions.','0','7d','1','','47282','','','','','200','1','0','','','0','0','0','0','0','0','0','7b00199cc6c041f5998c798884305f9e','0','2','0'), ('47297','18','','10632','[{#ALARM_NAME}]: Get metrics','aws.lambda.alarm.get_metrics["{#ALARM_NAME}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get metrics about the alarm state and its reason.','0','7d','0','','47282','','','','','200','1','0','','','0','0','0','0','0','0','0','893819314ae34f31bde78612679da46b','0','2','0'), ('47308','18','','10634','Number of closed issues','github.repo.issues.closed','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of closed issues in the repository.','0','7d','0','','47302','','','','','200','1','0','','','0','0','0','0','0','0','0','3b4799f0efc64f91836eb081b66f3e3b','0','2','0'), ('47309','18','','10634','Number of open issues','github.repo.issues.open','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of open issues in the repository.','0','7d','0','','47302','','','','','200','1','0','','','0','0','0','0','0','0','0','7ea663eb6d4b40688115e0cb2ab03424','0','2','0'), ('47310','18','','10634','Number of issues','github.repo.issues.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of issues in the repository.','0','7d','0','','47302','','','','','200','1','0','','','0','0','0','0','0','0','0','f60f12d72f90461d8eeda2c2719cf94d','0','2','0'), ('47311','18','','10634','Number of closed PRs','github.repo.pr.closed','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of closed pull requests in the repository.','0','7d','0','','47302','','','','','200','1','0','','','0','0','0','0','0','0','0','6c02d2fecace4bf4b94a06a923668938','0','2','0'), ('47312','18','','10634','Number of open PRs','github.repo.pr.open','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of open pull requests in the repository.','0','7d','0','','47302','','','','','200','1','0','','','0','0','0','0','0','0','0','a1782ae22188416c8d2399fba2a1768c','0','2','0'), ('47313','18','','10634','Number of PRs','github.repo.pr.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of pull requests in the repository.','0','7d','0','','47302','','','','','200','1','0','','','0','0','0','0','0','0','0','a20eda1b6c754b95b2bec1e449b681f5','0','2','0'), ('47314','18','','10634','Repository forks','github.repo.repository.forks.count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of repository forks.','0','7d','0','','47304','','','','','200','1','0','','','0','0','0','0','0','0','0','72a596dd573e4237a1fde665477bdfb5','0','2','0'), ('47315','18','','10634','Get repository data check','github.repo.repository.get.check','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data collection check.','0','7d','0','','47304','','','','','200','1','0','','','0','0','0','0','0','0','0','4bc2b485d4f546a0b390288d48bc179d','0','2','0'), ('47316','18','','10634','Repository is a fork','github.repo.repository.is_fork','0','31d','365d','0','3','','','','',NULL,'1226','','','0','','','','','0',NULL,'Indicates whether the repository is a fork.','0','7d','0','','47304','','','','','200','1','0','','','0','0','0','0','0','0','0','c0e4cf3a4f654f5b82d29db43aeaa6eb','0','2','0'), ('47317','18','','10634','Repository size','github.repo.repository.size','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The size of the repository.','0','7d','0','','47304','','','','','200','1','0','','','0','0','0','0','0','0','0','ece3996cba7e4561a6629df40299579f','0','2','0'), ('47318','18','','10634','Repository stargazers','github.repo.repository.stargazers','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of GitHub users who have starred the repository.','0','7d','0','','47304','','','','','200','1','0','','','0','0','0','0','0','0','0','2e329b0973aa4f2abf94bf10554d776c','0','2','0'), ('47319','18','','10634','Repository watchers','github.repo.repository.watchers','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of GitHub users who are subscribed to the repository.','0','7d','0','','47304','','','','','200','1','0','','','0','0','0','0','0','0','0','488ff6c6217d4d51a7cb8fd278996435','0','2','0'), ('47320','18','','10634','Request limit','github.repo.requests.limit','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'API request limit. Information about request limits in GitHub REST API documentation: https://docs.github.com/en/rest/using-the-rest-api/rate-limits-for-the-rest-api?apiVersion=2022-11-28','0','7d','0','','47304','','','','','200','1','0','','','0','0','0','0','0','0','0','1166ecf4aa624b469805406da0b1f552','0','2','0'), ('47321','18','','10634','Requests used','github.repo.requests.used','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of used API requests. Information about request limits in GitHub REST API documentation: https://docs.github.com/en/rest/using-the-rest-api/rate-limits-for-the-rest-api?apiVersion=2022-11-28','0','7d','0','','47304','','','','','200','1','0','','','0','0','0','0','0','0','0','a0c4165547f942a789deee0703c1f284','0','2','0'), ('47322','18','','10634','Request limit utilization, in %','github.repo.requests.util','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The calculated utilization of the API request limit in %. Information about request limits in GitHub REST API documentation: https://docs.github.com/en/rest/using-the-rest-api/rate-limits-for-the-rest-api?apiVersion=2022-11-28','0','7d','0','','47304','','','','','200','1','0','','','0','0','0','0','0','0','0','e4b52ac7188944298fd6ca306ed4f8b8','0','2','0'), ('47323','18','','10634','Get self-hosted runner check','github.repo.runners.get.check','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Carry out a self-hosted runners data collection check.','0','7d','0','','47305','','','','','200','1','0','','','0','0','0','0','0','0','0','35507c347ff44527a7deb3aaf4846d33','0','2','0'), ('47324','18','','10634','Branch discovery','github.repo.branches.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers repository branches. Information about endpoint: https://docs.github.com/en/rest/branches/branches?apiVersion=2022-11-28#list-branches','0','7d','1','','47301','','','','','200','1','0','','','0','0','0','0','0','0','0','8142a17a53f44cd9b3d3991b9e3da91d','0','2','0'), ('47325','18','','10634','Discovery of community profile metrics','github.repo.community_profile.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers community profile metrics (the repository must not be a fork). Information about community profile metrics: https://docs.github.com/en/rest/metrics/community?apiVersion=2022-11-28#get-community-profile-metrics','0','7d','0','','47304','','','','','200','1','0','','','0','0','0','0','0','0','0','8a3dbc58ccd845bbb92a671997a3bbec','0','2','0'), ('47326','18','','10634','Self-hosted runner discovery','github.repo.runners.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers self-hosted runners of the repository. Note that admin access to the repository is required to use this endpoint: https://docs.github.com/en/rest/actions/self-hosted-runners?apiVersion=2022-11-28#list-self-hosted-runners-for-a-repository','0','7d','1','','47305','','','','','200','1','0','','','0','0','0','0','0','0','0','b77b33e77ddb457d9fd7912f97f179fd','0','2','0'), ('47327','18','','10634','Workflow discovery','github.repo.workflows.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers repository workflows. By default, only the active workflows are discovered. Information about endpoint: https://docs.github.com/en/rest/actions/workflows?apiVersion=2022-11-28#list-repository-workflows','0','7d','1','','47307','','','','','200','1','0','','','0','0','0','0','0','0','0','df2e23b12f914d7d89c182ff451da054','0','2','0'), ('47330','18','','10634','Health percentage score','github.repo.repository.health[{#SINGLETON}]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The health percentage score is defined as a percentage of how many of the recommended community health files are present. For more information, see the documentation: https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/about-community-profiles-for-public-repositories','0','7d','0','','47304','','','','','200','1','0','','','0','0','0','0','0','0','0','8babff453a0a4df597436d3c9dd3112f','0','2','0'), ('47331','18','','10634','Runner [{#RUNNER_NAME}]: Busy','github.repo.runners.busy[{#RUNNER_NAME}]','0','31d','0','0','3','','','','',NULL,'1226','','','0','','','','','2',NULL,'Indicates whether the runner is currently executing a job.','0','7d','0','','47305','','','','','200','1','0','','','0','0','0','0','0','0','0','6cf4664f14744eb88eaee6e82330cd79','0','2','0'), ('47332','18','','10634','Runner [{#RUNNER_NAME}]: Online','github.repo.runners.online[{#RUNNER_NAME}]','0','31d','0','0','3','','','','',NULL,'1226','','','0','','','','','2',NULL,'Indicates whether the runner is connected to GitHub and is ready to execute jobs.','0','7d','0','','47305','','','','','200','1','0','','','0','0','0','0','0','0','0','7594ae484e72433ca4259bebc9044031','0','2','0'), ('47333','18','','10634','Workflow [{#WORKFLOW_NAME}]: Last run conclusion','github.repo.workflows.last_run.conclusion[{#WORKFLOW_NAME}]','0','31d','0','0','3','','','','',NULL,'1227','','','0','','','','','2',NULL,'The conclusion of the last workflow run. Possible values: 0 - success 1 - failure 2 - neutral 3 - cancelled 4 - skipped 5 - timed_out 6 - action_required 10 - unknown','0','7d','0','','47329','','','','','200','1','0','','','0','0','0','0','0','0','0','f9941fc67aca404ebd4eddd80d6066cb','0','2','0'), ('47334','18','','10634','Workflow [{#WORKFLOW_NAME}]: Last run duration','github.repo.workflows.last_run.duration[{#WORKFLOW_NAME}]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The duration of the last workflow run.','0','7d','0','','47329','','','','','200','1','0','','','0','0','0','0','0','0','0','8653f8c233af44a7857b8ae58086edf3','0','2','0'), ('47335','18','','10634','Workflow [{#WORKFLOW_NAME}]: Last run start date','github.repo.workflows.last_run.start_date[{#WORKFLOW_NAME}]','0','31d','0','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'The date when the last workflow run was started.','0','7d','0','','47329','','','','','200','1','0','','','0','0','0','0','0','0','0','f8bebdb8345b41c48cfd7be9554d82bf','0','2','0'), ('47336','18','','10634','Workflow [{#WORKFLOW_NAME}]: Last run status','github.repo.workflows.last_run.status[{#WORKFLOW_NAME}]','0','31d','0','0','3','','','','',NULL,'1228','','','0','','','','','2',NULL,'The status of the last workflow run. Possible values: 0 - queued 1 - in_progress 2 - completed 10 - unknown','0','7d','0','','47329','','','','','200','1','0','','','0','0','0','0','0','0','0','e23ba9f5d20541d594748d01491a7ea7','0','2','0'), ('47337','18','','10634','Workflow [{#WORKFLOW_NAME}]: Last run update date','github.repo.workflows.last_run.update_date[{#WORKFLOW_NAME}]','0','31d','0','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'The date when the last workflow run was updated.','0','7d','0','','47329','','','','','200','1','0','','','0','0','0','0','0','0','0','a187f9ea480341288b422168f6345784','0','2','0'), ('47344','18','','10635','Apps: Activity, Exchange active users','ms365.apps.activity.exchange.users.active','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active Exchange users during the week before the report date.','0','7d','0','','47338','','','','','200','1','0','','','0','0','0','0','0','0','0','33f44ece510247938a7ccc79b5209b9f','0','2','0'), ('47345','18','','10635','Apps: Activity, Exchange inactive users','ms365.apps.activity.exchange.users.inactive','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of inactive Exchange users during the week before the report date.','0','7d','0','','47338','','','','','200','1','0','','','0','0','0','0','0','0','0','43b10a8d427647ae9a82f6d71560bedd','0','2','0'), ('47346','18','','10635','Apps: Activity, Office 365 active users','ms365.apps.activity.office365.users.active','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active Office 365 users during the week before the report date.','0','7d','0','','47338','','','','','200','1','0','','','0','0','0','0','0','0','0','004104d830b9440e9fb92fb0d289426a','0','2','0'), ('47347','18','','10635','Apps: Activity, Office 365 inactive users','ms365.apps.activity.office365.users.inactive','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of inactive Office 365 users during the week before the report date.','0','7d','0','','47338','','','','','200','1','0','','','0','0','0','0','0','0','0','dd05d33806a74a54a7640ab639a004a3','0','2','0'), ('47348','18','','10635','Apps: Activity, OneDrive active users','ms365.apps.activity.onedrive.users.active','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active OneDrive users during the week before the report date.','0','7d','0','','47338','','','','','200','1','0','','','0','0','0','0','0','0','0','f9b84bbc76eb4f278d32913fdcece5f4','0','2','0'), ('47349','18','','10635','Apps: Activity, OneDrive inactive users','ms365.apps.activity.onedrive.users.inactive','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of inactive OneDrive users during the week before the report date.','0','7d','0','','47338','','','','','200','1','0','','','0','0','0','0','0','0','0','699122d921a046c2a652139cc982225c','0','2','0'), ('47350','18','','10635','Apps: Activity, report date','ms365.apps.activity.report_date','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The date of the report of the user count by activity.','0','7d','0','','47338','','','','','200','1','0','','','0','0','0','0','0','0','0','245c30401bd64ba8a4dbbda7eaeab608','0','2','0'), ('47351','18','','10635','Apps: Activity, SharePoint active users','ms365.apps.activity.sharepoint.users.active','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active SharePoint users during the week before the report date.','0','7d','0','','47338','','','','','200','1','0','','','0','0','0','0','0','0','0','6546281eff194c048f9aaaf1cd1d2a8c','0','2','0'), ('47352','18','','10635','Apps: Activity, SharePoint inactive users','ms365.apps.activity.sharepoint.users.inactive','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of inactive SharePoint users during the week before the report date.','0','7d','0','','47338','','','','','200','1','0','','','0','0','0','0','0','0','0','0fdf0c1e5f1c4e94962ef76dd7377635','0','2','0'), ('47353','18','','10635','Apps: Activity, Skype for Business active users','ms365.apps.activity.skypeforbusiness.users.active','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active Skype for Business users during the week before the report date.','0','7d','0','','47338','','','','','200','1','0','','','0','0','0','0','0','0','0','a977a7e3b51d42efb2c93c2269c64c91','0','2','0'), ('47354','18','','10635','Apps: Activity, Skype for Business inactive users','ms365.apps.activity.skypeforbusiness.users.inactive','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of inactive Skype for Business users during the week before the report date.','0','7d','0','','47338','','','','','200','1','0','','','0','0','0','0','0','0','0','04f4507608b940d7a51990586cb034cd','0','2','0'), ('47355','18','','10635','Apps: Activity, Teams active users','ms365.apps.activity.teams.users.active','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active Teams users during the week before the report date.','0','7d','0','','47338','','','','','200','1','0','','','0','0','0','0','0','0','0','3a424ddd198d4cef9357daabba9937aa','0','2','0'), ('47356','18','','10635','Apps: Activity, Teams inactive users','ms365.apps.activity.teams.users.inactive','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of inactive Teams users during the week before the report date.','0','7d','0','','47338','','','','','200','1','0','','','0','0','0','0','0','0','0','f14f9730db914c7ba9162bb13c2a0882','0','2','0'), ('47357','18','','10635','Apps: Activity, Yammer active users','ms365.apps.activity.yammer.users.active','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active Yammer users during the week before the report date.','0','7d','0','','47338','','','','','200','1','0','','','0','0','0','0','0','0','0','5c3a5ebbc416479884252b1fbd787ba4','0','2','0'), ('47358','18','','10635','Apps: Activity, Yammer inactive users','ms365.apps.activity.yammer.users.inactive','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of inactive Yammer users during the week before the report date.','0','7d','0','','47338','','','','','200','1','0','','','0','0','0','0','0','0','0','fe91f316df80446993e1eab32320582e','0','2','0'), ('47359','18','','10635','Apps: Get errors','ms365.apps.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A list of errors from API requests for Apps metrics.','0','7d','0','','47338','','','','','200','1','0','','','0','0','0','0','0','0','0','02333e83fd734a7b8cf699784e325242','0','2','0'), ('47360','18','','10635','Apps: Office, Excel user count','ms365.apps.office.user_count.excel','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active Excel users.','0','7d','0','','47338','','','','','200','1','0','','','0','0','0','0','0','0','0','d1a7d542fb44426b87a6835bb0d7990f','0','2','0'), ('47361','18','','10635','Apps: Office, OneNote user count','ms365.apps.office.user_count.onenote','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active OneNote users.','0','7d','0','','47338','','','','','200','1','0','','','0','0','0','0','0','0','0','b82c96446428497f906820ac786be412','0','2','0'), ('47362','18','','10635','Apps: Office, Outlook user count','ms365.apps.office.user_count.outlook','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active Outlook users.','0','7d','0','','47338','','','','','200','1','0','','','0','0','0','0','0','0','0','09555143c7874e2fa69671501d10c0c5','0','2','0'), ('47363','18','','10635','Apps: Office, PowerPoint user count','ms365.apps.office.user_count.powerpoint','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active PowerPoint users.','0','7d','0','','47338','','','','','200','1','0','','','0','0','0','0','0','0','0','3f195401fb4241c2bea951e9cae2a6b1','0','2','0'), ('47364','18','','10635','Apps: Office, user count report date','ms365.apps.office.user_count.report_date','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The date of the report of the number of active users for each app.','0','7d','0','','47338','','','','','200','1','0','','','0','0','0','0','0','0','0','69134417295047fb9e70d6285fa7a336','0','2','0'), ('47365','18','','10635','Apps: Office, Teams user count','ms365.apps.office.user_count.teams','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active Teams users.','0','7d','0','','47338','','','','','200','1','0','','','0','0','0','0','0','0','0','facc876f75db491a983cf985dfd9285d','0','2','0'), ('47366','18','','10635','Apps: Office, Word user count','ms365.apps.office.user_count.word','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active Word users.','0','7d','0','','47338','','','','','200','1','0','','','0','0','0','0','0','0','0','6d3fbb21ab084ca6a8795098048fbd11','0','2','0'), ('47367','18','','10635','Apps: Platform, Mac user count','ms365.apps.platform.user_count.mac','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active users on the Mac platform.','0','7d','0','','47338','','','','','200','1','0','','','0','0','0','0','0','0','0','c78a87d0d84845d6939126af05b83d95','0','2','0'), ('47368','18','','10635','Apps: Platform, mobile user count','ms365.apps.platform.user_count.mobile','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active users on the mobile platform.','0','7d','0','','47338','','','','','200','1','0','','','0','0','0','0','0','0','0','694ebc5c063d4a24b1faf7787c49e270','0','2','0'), ('47369','18','','10635','Apps: Platform, user count report date','ms365.apps.platform.user_count.report_date','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The date of the report of the number of active users per platform.','0','7d','0','','47338','','','','','200','1','0','','','0','0','0','0','0','0','0','41f2b5c5140846619592e7dc8ccc3c32','0','2','0'), ('47370','18','','10635','Apps: Platform, web user count','ms365.apps.platform.user_count.web','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active users on the web platform.','0','7d','0','','47338','','','','','200','1','0','','','0','0','0','0','0','0','0','cbba35c140dc4505806b74682f30c02b','0','2','0'), ('47371','18','','10635','Apps: Platform, Windows user count','ms365.apps.platform.user_count.windows','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active users on the Windows platform.','0','7d','0','','47338','','','','','200','1','0','','','0','0','0','0','0','0','0','f8e8f4f7b1954307b2cc178367a1a8c0','0','2','0'), ('47372','18','','10635','Apps: Users, Exchange','ms365.apps.users.exchange','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of daily Exchange users.','0','7d','0','','47338','','','','','200','1','0','','','0','0','0','0','0','0','0','229db8688139475bbb61dee9567f07a0','0','2','0'), ('47373','18','','10635','Apps: Users, Office 365','ms365.apps.users.office365','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of daily Office 365 users.','0','7d','0','','47338','','','','','200','1','0','','','0','0','0','0','0','0','0','2f7a16de43c24f3f89e62606f3a2c900','0','2','0'), ('47374','18','','10635','Apps: Users, OneDrive','ms365.apps.users.onedrive','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of daily OneDrive users.','0','7d','0','','47338','','','','','200','1','0','','','0','0','0','0','0','0','0','c0108adb522245bda915ce523624091d','0','2','0'), ('47375','18','','10635','Apps: Users, report date','ms365.apps.users.report_date','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The date of the active user count report.','0','7d','0','','47338','','','','','200','1','0','','','0','0','0','0','0','0','0','baf254f6a7d34ebc89824a6b9631025a','0','2','0'), ('47376','18','','10635','Apps: Users, SharePoint','ms365.apps.users.sharepoint','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of daily SharePoint users.','0','7d','0','','47338','','','','','200','1','0','','','0','0','0','0','0','0','0','855d1296c4a2470f9e1c56d0b887b5bc','0','2','0'), ('47377','18','','10635','Apps: Users, Skype for Business','ms365.apps.users.skype','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of daily Skype for Business users.','0','7d','0','','47338','','','','','200','1','0','','','0','0','0','0','0','0','0','8de7670a3d57464897db996620638edd','0','2','0'), ('47378','18','','10635','Apps: Users, Teams','ms365.apps.users.teams','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of daily Teams users.','0','7d','0','','47338','','','','','200','1','0','','','0','0','0','0','0','0','0','27ea23488a6f4660a5335a802995071d','0','2','0'), ('47379','18','','10635','Apps: Users, Yammer','ms365.apps.users.yammer','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of daily Yammer users.','0','7d','0','','47338','','','','','200','1','0','','','0','0','0','0','0','0','0','a9212ec491ac4b57ae1d1242abd5fa29','0','2','0'), ('47380','18','','10635','OneDrive: Get errors','ms365.onedrive.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A list of errors from API requests for OneDrive metrics.','0','7d','0','','47339','','','','','200','1','0','','','0','0','0','0','0','0','0','8ed3af9876f94f138a0f6e19ea02235a','0','2','0'), ('47381','18','','10635','OneDrive: Files, activity, report date','ms365.onedrive.files.report_date','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The date of report of the number of active OneDrive files.','0','7d','0','','47339','','','','','200','1','0','','','0','0','0','0','0','0','0','e7e2570b2b124cd08b21b065f95ae8d7','0','2','0'), ('47382','18','','10635','OneDrive: Files, shared externally','ms365.onedrive.files.shared_externally','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of externally shared OneDrive files.','0','7d','0','','47339','','','','','200','1','0','','','0','0','0','0','0','0','0','ee6d3acbdd674f479cd6c99a2f113e2e','0','2','0'), ('47383','18','','10635','OneDrive: Files, shared internally','ms365.onedrive.files.shared_internally','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of internally shared OneDrive files.','0','7d','0','','47339','','','','','200','1','0','','','0','0','0','0','0','0','0','b94ba3d65ebd4bcca434c54a7252739c','0','2','0'), ('47384','18','','10635','OneDrive: Files, synced','ms365.onedrive.files.synced','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of synced OneDrive files.','0','7d','0','','47339','','','','','200','1','0','','','0','0','0','0','0','0','0','35327a7d610a442d87b1672532b9ada3','0','2','0'), ('47385','18','','10635','OneDrive: Files, viewed or edited','ms365.onedrive.files.viewed_or_edited','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of viewed or edited OneDrive files.','0','7d','0','','47339','','','','','200','1','0','','','0','0','0','0','0','0','0','86e92424c4a946768f48fe757ea1883e','0','2','0'), ('47386','18','','10635','OneDrive: File count, active','ms365.onedrive.file_count.active','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of active files across all sites. A file is considered active if it has been saved, synced, modified, or shared.','0','7d','0','','47339','','','','','200','1','0','','','0','0','0','0','0','0','0','e6a94bc310e142ccaa398533c2161e43','0','2','0'), ('47387','18','','10635','OneDrive: File count, report date','ms365.onedrive.file_count.report_date','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The date of the OneDrive file count report.','0','7d','0','','47339','','','','','200','1','0','','','0','0','0','0','0','0','0','24d396224317427080e538897d7bdc81','0','2','0'), ('47388','18','','10635','OneDrive: File count, total','ms365.onedrive.file_count.total','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of files across all sites.','0','7d','0','','47339','','','','','200','1','0','','','0','0','0','0','0','0','0','4413b1514364430f9846aa952893b2d4','0','2','0'), ('47389','18','','10635','OneDrive: Business sites, active','ms365.onedrive.sites.active','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active OneDrive for Business sites. Any site on which users have viewed, modified, uploaded, downloaded, shared, or synced files is considered an active site.','0','7d','0','','47339','','','','','200','1','0','','','0','0','0','0','0','0','0','b32aba6af3444230b9bd06ba8544c906','0','2','0'), ('47390','18','','10635','OneDrive: Business sites, report date','ms365.onedrive.sites.report_date','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The date of the number of OneDrive for Business sites report.','0','7d','0','','47339','','','','','200','1','0','','','0','0','0','0','0','0','0','023d27c3fbbc4228b374ddec9cc8e35b','0','2','0'), ('47391','18','','10635','OneDrive: Business sites, total','ms365.onedrive.sites.total','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of OneDrive for Business sites.','0','7d','0','','47339','','','','','200','1','0','','','0','0','0','0','0','0','0','c15eff389f904d9798fe7935d8ce9328','0','2','0'), ('47392','18','','10635','OneDrive: Storage, report date','ms365.onedrive.storage.report_date','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The date of the report of the amount of storage used in OneDrive for Business.','0','7d','0','','47339','','','','','200','1','0','','','0','0','0','0','0','0','0','4482652327664e8fab8301ec559fa897','0','2','0'), ('47393','18','','10635','OneDrive: Storage, total','ms365.onedrive.storage.total','0','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total amount of storage used in OneDrive for Business.','0','7d','0','','47339','','','','','200','1','0','','','0','0','0','0','0','0','0','dfcbbd4b82f549fb926ddabef52317ca','0','2','0'), ('47394','18','','10635','OneDrive: Users, report date','ms365.onedrive.users.report_date','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The date of the report of the number of active OneDrive users.','0','7d','0','','47339','','','','','200','1','0','','','0','0','0','0','0','0','0','5bd03a64dfa94cfe9f279219fdca22ff','0','2','0'), ('47395','18','','10635','OneDrive: Users, shared externally','ms365.onedrive.users.shared_externally','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of users who have shared OneDrive files externally.','0','7d','0','','47339','','','','','200','1','0','','','0','0','0','0','0','0','0','36ed7c38f7d544968830e876e6e6b24d','0','2','0'), ('47396','18','','10635','OneDrive: Users, shared internally','ms365.onedrive.users.shared_internally','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of users who have shared OneDrive files internally.','0','7d','0','','47339','','','','','200','1','0','','','0','0','0','0','0','0','0','d393a09d304a4cb2b4bc4faa75361962','0','2','0'), ('47397','18','','10635','OneDrive: Users, synced','ms365.onedrive.users.synced','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of users who have synced OneDrive files.','0','7d','0','','47339','','','','','200','1','0','','','0','0','0','0','0','0','0','463d39ac2dee4bd09bd9547d269fc0cd','0','2','0'), ('47398','18','','10635','OneDrive: Users, viewed or edited','ms365.onedrive.users.viewed_or_edited','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of users who have viewed or edited OneDrive files.','0','7d','0','','47339','','','','','200','1','0','','','0','0','0','0','0','0','0','5e68a062cb2e40508f7d65bc5c07e5f6','0','2','0'), ('47399','18','','10635','Outlook: Activity, meetings created','ms365.outlook.activity.meetings_created','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of times a "Meeting request sent" action was recorded.','0','7d','0','','47340','','','','','200','1','0','','','0','0','0','0','0','0','0','b1e7a98c1fd04a6da30b2572e440a90f','0','2','0'), ('47400','18','','10635','Outlook: Activity, meetings interacted','ms365.outlook.activity.meetings_interacted','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of times a meeting request accept, tentative, decline, or cancel action was recorded.','0','7d','0','','47340','','','','','200','1','0','','','0','0','0','0','0','0','0','0b6090e26675480eadffb518685398a7','0','2','0'), ('47401','18','','10635','Outlook: Activity, emails read','ms365.outlook.activity.read','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of times an "Email read" action was recorded.','0','7d','0','','47340','','','','','200','1','0','','','0','0','0','0','0','0','0','c8692fab4c5e4af1860beca648a5fa7e','0','2','0'), ('47402','18','','10635','Outlook: Activity, emails received','ms365.outlook.activity.received','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of times an "Email received" action was recorded.','0','7d','0','','47340','','','','','200','1','0','','','0','0','0','0','0','0','0','0e205e2458f047399e682bfa68881395','0','2','0'), ('47403','18','','10635','Outlook: Activity, report date','ms365.outlook.activity.report_date','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The date of the Outlook activity count report.','0','7d','0','','47340','','','','','200','1','0','','','0','0','0','0','0','0','0','6eb5581fba9e4613b1e966852bb166cc','0','2','0'), ('47404','18','','10635','Outlook: Activity, emails sent','ms365.outlook.activity.sent','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of times an "Email sent" action was recorded.','0','7d','0','','47340','','','','','200','1','0','','','0','0','0','0','0','0','0','b090b886df704dc3baf0d6e7eb4d08f8','0','2','0'), ('47405','18','','10635','Outlook: Get errors','ms365.outlook.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A list of errors from API requests for Outlook metrics.','0','7d','0','','47340','','','','','200','1','0','','','0','0','0','0','0','0','0','2acaed1cc8fc4111ad71a38d4ae2f004','0','2','0'), ('47406','18','','10635','Outlook: Mailbox, active','ms365.outlook.mailbox.active','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active user mailboxes in your organization. A mailbox is considered active if the user has sent or read any emails.','0','7d','0','','47340','','','','','200','1','0','','','0','0','0','0','0','0','0','37e6321c075945c5b06bc77783bd5b73','0','2','0'), ('47407','18','','10635','Outlook: Mailbox, active in %','ms365.outlook.mailbox.active.percentage','0','31d','0','0','3','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of active user mailboxes in your organization. A mailbox is considered active if the user has sent or read any emails.','0','7d','0','','47340','','','','','200','1','0','','','0','0','0','0','0','0','0','637165130fc44abcafcc84366929f74e','0','2','0'), ('47408','18','','10635','Outlook: Mailbox, report date','ms365.outlook.mailbox.report_date','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The date of the report of the unique user count per app.','0','7d','0','','47340','','','','','200','1','0','','','0','0','0','0','0','0','0','292361cb20a84d028003732027405882','0','2','0'), ('47409','18','','10635','Outlook: Mailbox, total','ms365.outlook.mailbox.total','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of user mailboxes in your organization.','0','7d','0','','47340','','','','','200','1','0','','','0','0','0','0','0','0','0','5eec6999430b4dcb87fdf54162839e42','0','2','0'), ('47410','18','','10635','Outlook: Mailbox, storage, report date','ms365.outlook.storage.report_date','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The date of the mailbox storage report.','0','7d','0','','47340','','','','','200','1','0','','','0','0','0','0','0','0','0','d633c87e65574b2a9453c48efc899368','0','2','0'), ('47411','18','','10635','Outlook: Mailbox, storage used','ms365.outlook.storage.used','0','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of mailbox storage used in your organization.','0','7d','0','','47340','','','','','200','1','0','','','0','0','0','0','0','0','0','e57fc3c97fca4fb2ac806be8548c69c2','0','2','0'), ('47412','18','','10635','Outlook: User count, IMAP4 applications','ms365.outlook.user_count.imap4app','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unique users of other IMAP4 applications.','0','7d','0','','47340','','','','','200','1','0','','','0','0','0','0','0','0','0','866cc243422f4494a53f731189de97b0','0','2','0'), ('47413','18','','10635','Outlook: User count, Outlook for Mac','ms365.outlook.user_count.mac','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unique users of Outlook for Mac.','0','7d','0','','47340','','','','','200','1','0','','','0','0','0','0','0','0','0','7cafa2052df1426d8ca136b02d517166','0','2','0'), ('47414','18','','10635','Outlook: User count, mail for Mac','ms365.outlook.user_count.mail_for_mac','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unique users of mail for Mac.','0','7d','0','','47340','','','','','200','1','0','','','0','0','0','0','0','0','0','b0192e926ec44808a89423ed0231d858','0','2','0'), ('47415','18','','10635','Outlook: User count, meetings created','ms365.outlook.user_count.meetings_created','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of users a "Meeting request sent" action was recorded for.','0','7d','0','','47340','','','','','200','1','0','','','0','0','0','0','0','0','0','3df9660d9f764c26bf281041aae2466e','0','2','0'), ('47416','18','','10635','Outlook: User count, meetings interacted','ms365.outlook.user_count.meetings_interacted','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of users a meeting request accept, tentative, decline, or cancel action was recorded for.','0','7d','0','','47340','','','','','200','1','0','','','0','0','0','0','0','0','0','50703e1aec3d47218d08495f2c7112c2','0','2','0'), ('47417','18','','10635','Outlook: User count, Outlook for mobile','ms365.outlook.user_count.mobile','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unique users of Outlook for mobile.','0','7d','0','','47340','','','','','200','1','0','','','0','0','0','0','0','0','0','9afd7131c46043dbac392b22f042edcc','0','2','0'), ('47418','18','','10635','Outlook: User count, POP3 applications','ms365.outlook.user_count.pop3app','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unique users of other POP3 applications.','0','7d','0','','47340','','','','','200','1','0','','','0','0','0','0','0','0','0','c832f65eb47d4fe69824296994bd39e7','0','2','0'), ('47419','18','','10635','Outlook: User count, emails read','ms365.outlook.user_count.read','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of users an "Email read" action was recorded for.','0','7d','0','','47340','','','','','200','1','0','','','0','0','0','0','0','0','0','9f612d7d0f3c45c6a12bab26609a31ba','0','2','0'), ('47420','18','','10635','Outlook: User count, emails received','ms365.outlook.user_count.received','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of users an "Email received" action was recorded for.','0','7d','0','','47340','','','','','200','1','0','','','0','0','0','0','0','0','0','2f6ca8ba75da45d2ac91af9e526e411d','0','2','0'), ('47421','18','','10635','Outlook: User count, report date','ms365.outlook.user_count.report_date','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The date of the Outlook activity user count report.','0','7d','0','','47340','','','','','200','1','0','','','0','0','0','0','0','0','0','9798b94176294350a4c6f9de40839c3f','0','2','0'), ('47422','18','','10635','Outlook: User count, app usage, report date','ms365.outlook.user_count.report_date.app','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The date of the report of the unique user count per app.','0','7d','0','','47340','','','','','200','1','0','','','0','0','0','0','0','0','0','d4835c7b293845c9a28d7c4ee4d25d01','0','2','0'), ('47423','18','','10635','Outlook: User count, emails sent','ms365.outlook.user_count.sent','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of users an "Email sent" action was recorded for.','0','7d','0','','47340','','','','','200','1','0','','','0','0','0','0','0','0','0','176af3cbc220429dbed826714cf4374d','0','2','0'), ('47424','18','','10635','Outlook: User count, SMTP applications','ms365.outlook.user_count.smtpapp','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unique users of other SMTP applications.','0','7d','0','','47340','','','','','200','1','0','','','0','0','0','0','0','0','0','48e8bcbc05bb488784da9630a8a05565','0','2','0'), ('47425','18','','10635','Outlook: User count, Outlook for web','ms365.outlook.user_count.web','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unique users of Outlook for web.','0','7d','0','','47340','','','','','200','1','0','','','0','0','0','0','0','0','0','031244dc15cc4eccb75be311a84d2c74','0','2','0'), ('47426','18','','10635','Outlook: User count, Outlook for Windows','ms365.outlook.user_count.windows','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unique users of Outlook for Windows.','0','7d','0','','47340','','','','','200','1','0','','','0','0','0','0','0','0','0','01f6f3d0946548e086df06ea90a16c84','0','2','0'), ('47427','18','','10635','Services: Get errors','ms365.services.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A list of errors from API requests for Services metrics.','0','7d','0','','47341','','','','','200','1','0','','','0','0','0','0','0','0','0','b547935175f441f2a3a2bf41c8abc99b','0','2','0'), ('47428','18','','10635','SharePoint: Get errors','ms365.sharepoint.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A list of errors from API requests for SharePoint metrics.','0','7d','0','','47342','','','','','200','1','0','','','0','0','0','0','0','0','0','d4256e411ced4566b9abea622acbbf6d','0','2','0'), ('47429','18','','10635','SharePoint: Files, activity, report date','ms365.sharepoint.files.report_date','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The date of the report of the number of active SharePoint files.','0','7d','0','','47342','','','','','200','1','0','','','0','0','0','0','0','0','0','2d9db2f1db4741a6a2afb9088cf31218','0','2','0'), ('47430','18','','10635','SharePoint: Files, shared externally','ms365.sharepoint.files.shared_externally','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of externally shared SharePoint files.','0','7d','0','','47342','','','','','200','1','0','','','0','0','0','0','0','0','0','0fa7e6c2f6eb46da8ee577fd88d502b2','0','2','0'), ('47431','18','','10635','SharePoint: Files, shared internally','ms365.sharepoint.files.shared_internally','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of internally shared SharePoint files.','0','7d','0','','47342','','','','','200','1','0','','','0','0','0','0','0','0','0','dba7c4e8e1244edfa2e227d5db8f89cc','0','2','0'), ('47432','18','','10635','SharePoint: Files, synced','ms365.sharepoint.files.synced','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of files synced to a SharePoint site.','0','7d','0','','47342','','','','','200','1','0','','','0','0','0','0','0','0','0','72cdf53a7fc04b01ac47f7fad3dc1973','0','2','0'), ('47433','18','','10635','SharePoint: Files, viewed or edited','ms365.sharepoint.files.viewed_or_edited','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of viewed or edited SharePoint files.','0','7d','0','','47342','','','','','200','1','0','','','0','0','0','0','0','0','0','8a26811f0bdc4f7baab93a87e76bfd78','0','2','0'), ('47434','18','','10635','SharePoint: File count, active','ms365.sharepoint.file_count.active','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of active files across all sites. A file is considered active if it has been saved, synced, modified, or shared.','0','7d','0','','47342','','','','','200','1','0','','','0','0','0','0','0','0','0','ef4edb2188b244858f2f052a5880877d','0','2','0'), ('47435','18','','10635','SharePoint: File count, report date','ms365.sharepoint.file_count.report_date','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The date of the SharePoint file count report.','0','7d','0','','47342','','','','','200','1','0','','','0','0','0','0','0','0','0','0f919b2dba8c42a1b14425fe0d28a27f','0','2','0'), ('47436','18','','10635','SharePoint: File count, total','ms365.sharepoint.file_count.total','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of files across all sites.','0','7d','0','','47342','','','','','200','1','0','','','0','0','0','0','0','0','0','9a79514b201a4c6b9721ef9188d234e1','0','2','0'), ('47437','18','','10635','SharePoint: Pages, view count','ms365.sharepoint.pages_viewed.count','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of pages viewed across all sites.','0','7d','0','','47342','','','','','200','1','0','','','0','0','0','0','0','0','0','05e43c1b8a7d4d4abe773c3129c0100a','0','2','0'), ('47438','18','','10635','SharePoint: Pages, viewed, report date','ms365.sharepoint.pages_viewed.report_date','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The date of the report of the number of pages viewed.','0','7d','0','','47342','','','','','200','1','0','','','0','0','0','0','0','0','0','58cb9338fa684f9f9631a6f3f8736469','0','2','0'), ('47439','18','','10635','SharePoint: Pages, visited','ms365.sharepoint.pages_visited.count','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unique pages visited by users.','0','7d','0','','47342','','','','','200','1','0','','','0','0','0','0','0','0','0','71f0ccd4e8a846009dd9b81392f3330c','0','2','0'), ('47440','18','','10635','SharePoint: Pages, visited, report date','ms365.sharepoint.pages_visited.report_date','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The date of the report of the number of pages visited.','0','7d','0','','47342','','','','','200','1','0','','','0','0','0','0','0','0','0','de53a4cec0fb42c4bdee64a1539876c7','0','2','0'), ('47441','18','','10635','SharePoint: Sites, report date','ms365.sharepoint.site.report_date','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The date of the report of the number of SharePoint sites.','0','7d','0','','47342','','','','','200','1','0','','','0','0','0','0','0','0','0','e17280ef24ff426fb2dbf3fb0c7beaa4','0','2','0'), ('47442','18','','10635','SharePoint: Sites, active','ms365.sharepoint.sites.active','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active SharePoint sites.','0','7d','0','','47342','','','','','200','1','0','','','0','0','0','0','0','0','0','92930bce83b449b4963ea8e27ed4bb33','0','2','0'), ('47443','18','','10635','SharePoint: Sites, total','ms365.sharepoint.sites.total','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of SharePoint sites.','0','7d','0','','47342','','','','','200','1','0','','','0','0','0','0','0','0','0','ea038226a3c34a8eada1836f08a9a17b','0','2','0'), ('47444','18','','10635','SharePoint: Storage, report date','ms365.sharepoint.storage.report_date','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The date of the report of the amount of storage used in SharePoint.','0','7d','0','','47342','','','','','200','1','0','','','0','0','0','0','0','0','0','2feda0c4073445bcbe6a99e1eed1b838','0','2','0'), ('47445','18','','10635','SharePoint: Storage, total','ms365.sharepoint.storage.total','0','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total amount of storage used in SharePoint.','0','7d','0','','47342','','','','','200','1','0','','','0','0','0','0','0','0','0','18e892b6167442ec9c385cee5b1d919c','0','2','0'), ('47446','18','','10635','SharePoint: Users, report date','ms365.sharepoint.user_count.report_date','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The date of the report of the number of active SharePoint users.','0','7d','0','','47342','','','','','200','1','0','','','0','0','0','0','0','0','0','9cffe16ecb9347ddb59afd577996e676','0','2','0'), ('47447','18','','10635','SharePoint: Users, shared externally','ms365.sharepoint.user_count.shared_externally','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of users who have shared SharePoint files externally.','0','7d','0','','47342','','','','','200','1','0','','','0','0','0','0','0','0','0','11bd113ce58b4d95a4b75965ede4f7f3','0','2','0'), ('47448','18','','10635','SharePoint: Users, shared internally','ms365.sharepoint.user_count.shared_internally','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of users who have shared SharePoint files internally.','0','7d','0','','47342','','','','','200','1','0','','','0','0','0','0','0','0','0','08ad2690bc3c4c2eb88094754a7b3044','0','2','0'), ('47449','18','','10635','SharePoint: Users, synced','ms365.sharepoint.user_count.synced','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of users who have synced SharePoint files.','0','7d','0','','47342','','','','','200','1','0','','','0','0','0','0','0','0','0','a632ededd9794a1f97c8d06caefb6965','0','2','0'), ('47450','18','','10635','SharePoint: Users, viewed or edited','ms365.sharepoint.user_count.viewed_or_edited','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of users who have viewed or edited SharePoint files.','0','7d','0','','47342','','','','','200','1','0','','','0','0','0','0','0','0','0','234db342146044399cb243376b81f571','0','2','0'), ('47451','18','','10635','SharePoint: Users, pages visited','ms365.sharepoint.user_count.visited_page','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of users who have visited unique pages.','0','7d','0','','47342','','','','','200','1','0','','','0','0','0','0','0','0','0','f6883d5517054554b3553e3497925c58','0','2','0'), ('47452','18','','10635','Teams: Team activity, active channels','ms365.teams.activity.team.active_channels','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active channels across Microsoft Teams over the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','34bfd72749ec4b8d9e6bb305a6d105b5','0','2','0'), ('47453','18','','10635','Teams: Team activity, active external users','ms365.teams.activity.team.active_external_users','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active external users across Microsoft Teams over the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','8b87fb80bc274241861d2d4683deb16a','0','2','0'), ('47454','18','','10635','Teams: Team activity, active shared channels','ms365.teams.activity.team.active_shared_channels','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active shared channels across Microsoft Teams over the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','329e2462f6c3461aa839d234e69137d1','0','2','0'), ('47455','18','','10635','Teams: Team activity, active users','ms365.teams.activity.team.active_users','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active users across Microsoft Teams over the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','9297ac6f704249b189a826ca113624dd','0','2','0'), ('47456','18','','10635','Teams: Team activity, channel messages','ms365.teams.activity.team.channel_messages','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of channel messages across Microsoft Teams over the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','88e359b530424573ab9ffa9703648886','0','2','0'), ('47457','18','','10635','Teams: Team activity, guests','ms365.teams.activity.team.guests','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of guests across Microsoft Teams over the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','ba3d03da9c184f9fb4451eda4b9fb013','0','2','0'), ('47458','18','','10635','Teams: Team activity, meetings organized','ms365.teams.activity.team.meetings_organized','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of organized meetings across Microsoft Teams over the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','e46f6cc21cdd479581f52d34fba062b9','0','2','0'), ('47459','18','','10635','Teams: Team activity, mentions','ms365.teams.activity.team.mentions','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of mentions across Microsoft Teams over the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','49f96c1827e744158c70654b0a1d9933','0','2','0'), ('47460','18','','10635','Teams: Team activity, post messages','ms365.teams.activity.team.messages.posts','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of post messages across Microsoft Teams over the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','222be36f3ef84bc281d125ef0609ec82','0','2','0'), ('47461','18','','10635','Teams: Team activity, reply messages','ms365.teams.activity.team.messages.replies','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of reply messages across Microsoft Teams over the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','823acbc537544d89a8411025d1624715','0','2','0'), ('47462','18','','10635','Teams: Team activity, reactions','ms365.teams.activity.team.reactions','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of reactions across Microsoft Teams over the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','0f9ae923e0694e149e441c7c48c5e13d','0','2','0'), ('47463','18','','10635','Teams: Team activity, report date','ms365.teams.activity.team.report_date','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The date of the report of the number of team activities.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','83f8432b7ab246e59da295fa50294c78','0','2','0'), ('47464','18','','10635','Teams: Team activity, urgent messages','ms365.teams.activity.team.urgent_messages','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of urgent messages across Microsoft Teams over the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','3d76b28d9ce048f59ab49e722a576cbe','0','2','0'), ('47465','18','','10635','Teams: User activity, calls','ms365.teams.activity.user.calls','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of 1:1 calls licensed or non-licensed Microsoft Teams users participated in during the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','ba7e5388f43b40c1bd63516c1edb995d','0','2','0'), ('47466','18','','10635','Teams: User activity, audio duration','ms365.teams.activity.user.duration.audio','0','31d','0','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The sum of the audio duration of licensed or non-licensed Microsoft Teams users during the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','e17c33e6ea724db1884ba8b8519050e5','0','2','0'), ('47467','18','','10635','Teams: User activity, screen share duration','ms365.teams.activity.user.duration.screen_share','0','31d','0','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The sum of the screen share duration of licensed or non-licensed Microsoft Teams users during the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','ab085552326c4e51847ec6f51377601e','0','2','0'), ('47468','18','','10635','Teams: User activity, video duration','ms365.teams.activity.user.duration.video','0','31d','0','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The sum of the video duration of licensed or non-licensed Microsoft Teams users during the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','50d50c7daccc4eafb3d98fd5de233ba2','0','2','0'), ('47469','18','','10635','Teams: User activity, attended meetings','ms365.teams.activity.user.meetings.attended','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The sum of the scheduled one-time and recurring, ad-hoc, and unclassified meetings attended by licensed or non-licensed Microsoft Teams users during the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','580aa03b32364b648e2068ac2db70400','0','2','0'), ('47470','18','','10635','Teams: User activity, organized meetings','ms365.teams.activity.user.meetings.organized','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The sum of the scheduled one-time and recurring, ad-hoc, and unclassified meetings organized by licensed or non-licensed Microsoft Teams users during the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','eb8bef4579a44ad381808574be6d20e9','0','2','0'), ('47471','18','','10635','Teams: User activity, meetings','ms365.teams.activity.user.meetings.total','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The sum of the scheduled one-time and recurring, ad-hoc, and unclassified meetings licensed or non-licensed Microsoft Teams users participated in during the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','72a82b9a3b594f2abda27e21718cc937','0','2','0'), ('47472','18','','10635','Teams: User activity, team chat messages','ms365.teams.activity.user.messages.in_team','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unique messages that were posted in team chats by licensed or non-licensed Microsoft Teams users during the week before the report refresh date. This includes original posts and replies.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','1c667ffc4f744a838ba4a82664507b8a','0','2','0'), ('47473','18','','10635','Teams: User activity, post messages','ms365.teams.activity.user.messages.posts','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of post messages in all channels made by licensed or non-licensed Microsoft Teams users during the week before the report refresh date. A post is the original message in a teams chat.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','7b21ea233e5242a0bdafe3c9d190b2a1','0','2','0'), ('47474','18','','10635','Teams: User activity, private chat messages','ms365.teams.activity.user.messages.private','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unique messages that were posted in private chats by licensed or non-licensed Microsoft Teams users during the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','b833bc817058414fa44ee68b91cb729d','0','2','0'), ('47475','18','','10635','Teams: User activity, reply messages','ms365.teams.activity.user.messages.replies','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of reply messages in all channels made by licensed or non-licensed Microsoft Teams users during the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','ef4c68446d674310aebdc8da9d20002e','0','2','0'), ('47476','18','','10635','Teams: User activity, report date','ms365.teams.activity.user.report_date','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The date of the report of the number of activities by all users.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','16098eacf17a4fa4a1704b0b87ee4f5e','0','2','0'), ('47477','18','','10635','Teams: Device usage (guests), Android','ms365.teams.device.guests.android','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unique non-licensed Microsoft Teams users (guests) recorded via the Teams mobile client for Android over the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','dec6dfcf6d1040999633356029597861','0','2','0'), ('47478','18','','10635','Teams: Device usage (guests), Chrome OS','ms365.teams.device.guests.chromeos','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unique non-licensed Microsoft Teams users (guests) recorded via the Teams desktop client on a ChromeOS computer over the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','f69460d4a5b64cdfb1d46d108ee0f703','0','2','0'), ('47479','18','','10635','Teams: Device usage (guests), iOS','ms365.teams.device.guests.ios','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unique non-licensed Microsoft Teams users (guests) recorded via the Teams mobile client for iOS over the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','c425439d85834854b702dcca49c84579','0','2','0'), ('47480','18','','10635','Teams: Device usage (guests), Linux','ms365.teams.device.guests.linux','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unique non-licensed Microsoft Teams users (guests) recorded via the Teams desktop client on a Linux computer over the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','90b8cfc7f64944599cf756fc4e8cb72c','0','2','0'), ('47481','18','','10635','Teams: Device usage (guests), Mac','ms365.teams.device.guests.mac','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unique non-licensed Microsoft Teams users (guests) recorded via the Teams desktop client on a macOS computer over the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','60b11d13d4e74476a0e48832d6bc9f79','0','2','0'), ('47482','18','','10635','Teams: Device usage (guests), web client','ms365.teams.device.guests.web','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unique non-licensed Microsoft Teams users (guests) recorded via the Teams web client over the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','bda18a4088f940c1b36510fd135819aa','0','2','0'), ('47483','18','','10635','Teams: Device usage (guests), Windows','ms365.teams.device.guests.windows','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unique non-licensed Microsoft Teams users (guests) recorded via the Teams desktop client on a Windows-based computer over the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','d62bfc1f1a7b4480bbf10659782c3ea2','0','2','0'), ('47484','18','','10635','Teams: Device usage (total), Android','ms365.teams.device.total.android','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unique Microsoft Teams users (licensed or non-licensed) recorded via the Teams mobile client for Android over the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','b7b407ce61984b5ba717dfb0ff50c369','0','2','0'), ('47485','18','','10635','Teams: Device usage (total), Chrome OS','ms365.teams.device.total.chromeos','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unique Microsoft Teams users (licensed or non-licensed) recorded via the Teams desktop client on a ChromeOS computer over the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','5bef589815d241b49456676c8fa065f8','0','2','0'), ('47486','18','','10635','Teams: Device usage (total), iOS','ms365.teams.device.total.ios','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unique Microsoft Teams users (licensed or non-licensed) recorded via the Teams mobile client for iOS over the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','063563a9f8964f6f8c7a518a4ebbec4d','0','2','0'), ('47487','18','','10635','Teams: Device usage (total), Linux','ms365.teams.device.total.linux','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unique Microsoft Teams users (licensed or non-licensed) recorded via the Teams desktop client on a Linux computer over the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','aeb3d4065bc34d74a592daa8bc72f353','0','2','0'), ('47488','18','','10635','Teams: Device usage (total), Mac','ms365.teams.device.total.mac','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unique Microsoft Teams users (licensed or non-licensed) recorded via the Teams desktop client on a macOS computer over the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','090671fa6fc945a391080eb44df88223','0','2','0'), ('47489','18','','10635','Teams: Device usage (total), report date','ms365.teams.device.total.report_date','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The date of the report of device usage of both licensed and non-licensed users.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','5b7f0955910a46e8996614c52df16792','0','2','0'), ('47490','18','','10635','Teams: Device usage (total), web client','ms365.teams.device.total.web','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unique Microsoft Teams users (licensed or non-licensed) recorded via the Teams web client over the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','a71fb7e8da9e4882bcb5440b5b475a31','0','2','0'), ('47491','18','','10635','Teams: Device usage (total), Windows','ms365.teams.device.total.windows','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unique Microsoft Teams users (licensed or non-licensed) recorded via the Teams desktop client on a Windows-based computer over the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','68c3b651d315491db16222fd8aa96237','0','2','0'), ('47492','18','','10635','Teams: Device usage (users), Android','ms365.teams.device.users.android','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unique licensed Microsoft Teams users recorded via the Teams mobile client for Android over the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','d25d13138a7f4690825549476a32d3ec','0','2','0'), ('47493','18','','10635','Teams: Device usage (users), Chrome OS','ms365.teams.device.users.chromeos','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unique licensed Microsoft Teams users recorded via the Teams desktop client on a ChromeOS computer over the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','fbdad9980995479da7d5413a55c18ef3','0','2','0'), ('47494','18','','10635','Teams: Device usage (users), iOS','ms365.teams.device.users.ios','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unique licensed Microsoft Teams users recorded via the Teams mobile client for iOS over the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','b8274b598bb34488b6bd8f1bb9e3dbca','0','2','0'), ('47495','18','','10635','Teams: Device usage (users), Linux','ms365.teams.device.users.linux','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unique licensed Microsoft Teams users recorded via the Teams desktop client on a Linux computer over the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','24de6354c4b04c7aa5ad12bfb8858800','0','2','0'), ('47496','18','','10635','Teams: Device usage (users), Mac','ms365.teams.device.users.mac','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unique licensed Microsoft Teams users recorded via the Teams desktop client on a macOS computer over the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','1037aa5c3bf14114b6f1aaf61c3a4ea3','0','2','0'), ('47497','18','','10635','Teams: Device usage (users), web client','ms365.teams.device.users.web','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unique licensed Microsoft Teams users recorded via the Teams web client over the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','e95474426572429cb795648aeae3881a','0','2','0'), ('47498','18','','10635','Teams: Device usage (users), Windows','ms365.teams.device.users.windows','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of unique licensed Microsoft Teams users recorded via the Teams desktop client on a Windows-based computer over the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','c7d6439dbb394b66949050e00205995e','0','2','0'), ('47499','18','','10635','Teams: Get errors','ms365.teams.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A list of errors from API requests for Teams metrics.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','aca93ce9a84d4cd5a2465dd43ce47156','0','2','0'), ('47500','18','','10635','Teams: User count (guests), calls','ms365.teams.user_count.guests.calls','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of non-licensed Microsoft Teams users (guests) who participated in calls during the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','7e67ccc2a42c4d5abbc3e0d0d7984d05','0','2','0'), ('47501','18','','10635','Teams: User count (guests), meetings','ms365.teams.user_count.guests.meetings','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of non-licensed Microsoft Teams users (guests) who participated in meetings during the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','ddc63a611a24420db83976ccd1a6c8a0','0','2','0'), ('47502','18','','10635','Teams: User count (guests), team chat messages','ms365.teams.user_count.guests.messages.in_team','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of non-licensed Microsoft Teams users (guests) who posted or replied in team chats during the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','6907e19e2e8042faaf60b55fd7298e22','0','2','0'), ('47503','18','','10635','Teams: User count (guests), private chat messages','ms365.teams.user_count.guests.messages.private','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of non-licensed Microsoft Teams users (guests) who posted or replied in private chats during the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','f91e43ecd3874b0ba51d0bca9c2a4bd2','0','2','0'), ('47504','18','','10635','Teams: User count (total), calls','ms365.teams.user_count.total.calls','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of licensed or non-licensed Microsoft Teams users who participated in calls during the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','79caf6821ff84df5b20ab9c56e25423c','0','2','0'), ('47505','18','','10635','Teams: User count (total), meetings','ms365.teams.user_count.total.meetings','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of licensed or non-licensed Microsoft Teams users who participated in meetings during the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','6d1c327b01ec44188f2693aac595a4d9','0','2','0'), ('47506','18','','10635','Teams: User count (total), team chat messages','ms365.teams.user_count.total.messages.in_team','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of licensed or non-licensed Microsoft Teams users who posted or replied in team chats during the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','e594430f98cd442d8ca7705320c35ff9','0','2','0'), ('47507','18','','10635','Teams: User count (total), private chat messages','ms365.teams.user_count.total.messages.private','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of licensed or non-licensed Microsoft Teams users who posted or replied in private chats during the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','b83cb233a3464734873ac5c1fb62c3c2','0','2','0'), ('47508','18','','10635','Teams: User count (total), report date','ms365.teams.user_count.total.report_date','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The date of the report of the number of licensed or non-licensed Microsoft Teams users in activity.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','34dcf8e943644be8b82691d845ea2f40','0','2','0'), ('47509','18','','10635','Teams: User count (users), calls','ms365.teams.user_count.users.calls','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of licensed Microsoft Teams users who participated in calls during the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','47348e11d1d646c88330853b8e002143','0','2','0'), ('47510','18','','10635','Teams: User count (users), meetings','ms365.teams.user_count.users.meetings','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of licensed Microsoft Teams users who participated in meetings during the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','68b1c4eaf0864acd81cc7f79f41eeec6','0','2','0'), ('47511','18','','10635','Teams: User count (users), team chat messages','ms365.teams.user_count.users.messages.in_team','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of licensed Microsoft Teams users who posted or replied in team chats during the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','0f9486c175254cbf9a1b3f7cdd98b594','0','2','0'), ('47512','18','','10635','Teams: User count (users), private chat messages','ms365.teams.user_count.users.messages.private','0','31d','0','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of licensed Microsoft Teams users who posted or replied in private chats during the week before the report refresh date.','0','7d','0','','47343','','','','','200','1','0','','','0','0','0','0','0','0','0','86ebe049e2264190b166c71189e6183d','0','2','0'), ('47513','18','','10635','Microsoft cloud service discovery','ms365.service.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The list of Microsoft cloud services subscribed by a tenant.','0','7d','1','','47341','','','','','200','1','0','','','0','0','0','0','0','0','0','f28e588e81fa4fbdaeb65463843c2c1d','0','2','0'), ('47514','18','','10635','Services: {#NAME} health status','ms365.service.health[{#NAME}]','0','31d','0','0','3','','','','',NULL,'1229','','','0','','','','','2',NULL,'Overall service health status of `[{#NAME}]`. More information about health status values can be found here: https://learn.microsoft.com/en-us/graph/api/resources/servicehealthissue?view=graph-rest-beta#servicehealthstatus-values','0','7d','0','','47341','','','','','200','1','0','','','0','0','0','0','0','0','0','0cfd7176865a4c3c8c78c536a792c336','0','2','0'), ('47529','18','','10173','Overall Health VC State error check','vmware.health.check','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data collection error check.','0','7d','0','','47516','','','','','200','1','0','','','0','0','0','0','0','0','0','91756015645746e68b3f85b4cd1b5abd','0','2','0'), ('47530','18','','10173','Overall Health VC State','vmware.health.state','0','31d','365d','0','3','','','','',NULL,'1230','','','0','','','','','0',NULL,'VMware Overall health of system. One of the following: - Gray: No health data is available for this service. - Green: Service is healthy. - Yellow: The service is in a healthy state, but experiencing some level of problems. - Orange: The service health is degraded. The service might have serious problems. - Red: The service is unavailable, not functioning properly, or will stop functioning soon. - Not available: The health status is unavailable (not supported on the vCenter or ESXi side).','0','7d','0','','47516','','','','','200','1','0','','','0','0','0','0','0','0','0','2d18e0c8b8284c1bafd4bd131dcb640d','0','2','0'), ('47531','18','','10174','Snapshot count','vmware.vm.snapshot.count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Snapshot count of the guest VM.','0','7d','0','','47518','','','','','200','1','0','','','0','0','0','0','0','0','0','de013bcc700f4878ab80aa3fdd87cc8c','0','2','0'), ('47532','18','','10174','Snapshot latest date','vmware.vm.snapshot.latestdate','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Latest snapshot date of the guest VM.','0','7d','0','','47518','','','','','200','1','0','','','0','0','0','0','0','0','0','da2d382ba9554661ba476e1f3d5294b3','0','2','0'), ('47533','18','','10173','VMware alarm discovery','vmware.alarms.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of alarms.','0','0','0','','47515','','','','','200','1','0','','','0','0','0','0','0','0','0','a1f545a8acb5423884a3ef46b0aaa1c6','0','2','0'), ('47535','18','','10175','Serial number discovery','vmware.hv.serial.number.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'VMware hypervisor serial number discovery. This item works only with VMware hypervisor versions above 6.7.','0','7d','0','','32911','','','','','200','1','0','','','0','0','0','0','0','0','0','7f7ed06754fb4c59ac2d893b85169981','0','2','0'), ('47542','18','','10173','{#VMWARE.ALARMS.NAME}','vmware.alarms.status["{#VMWARE.ALARMS.KEY}"]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'VMware alarm status.','0','7d','0','','47515','','','','','200','1','0','','','0','0','0','0','0','0','0','b52727a894964058a5f0a9701e3f7edb','0','2','0'), ('47545','18','','10366','Overall Health VC State error check','vmware.health.check','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data collection error check.','0','7d','0','','47544','','','','','200','1','0','','','0','0','0','0','0','0','0','7d326d9241ae4d2ebd768b56d3826c4f','0','2','0'), ('47546','18','','10366','Overall Health VC State','vmware.health.state','0','31d','365d','0','3','','','','',NULL,'1235','','','0','','','','','0',NULL,'VMware Overall health of system. One of the following: - Gray: No health data is available for this service. - Green: Service is healthy. - Yellow: The service is in a healthy state, but experiencing some level of problems. - Orange: The service health is degraded. The service might have serious problems. - Red: The service is unavailable, not functioning properly, or will stop functioning soon. - Not available: The health status is unavailable (not supported on the vCenter or ESXi side).','0','7d','0','','47544','','','','','200','1','0','','','0','0','0','0','0','0','0','5007e23b563f4d9fb47de91d349a563a','0','2','0'), ('47547','18','','10366','VMware alarm discovery','vmware.alarms.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of alarms.','0','0','0','','47543','','','','','200','1','0','','','0','0','0','0','0','0','0','e108f082ec8a4283a5650fdcff4cacad','0','2','0'), ('47550','18','','10366','{#VMWARE.ALARMS.NAME}','vmware.alarms.status["{#VMWARE.ALARMS.KEY}"]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'VMware alarm status.','0','7d','0','','47543','','','','','200','1','0','','','0','0','0','0','0','0','0','8e08a252b7344e10850bd177045e9a55','0','2','0'), ('47553','18','','10047','Zabbix proxy groups discovery','zabbix.proxy.groups.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'LLD rule with item and trigger prototypes for proxy groups discovery.','0','7d','1','','47551','','','','','200','1','0','','','0','0','0','0','0','0','0','60eaeee3a90542aeae9762d36c804cce','0','2','0'), ('47555','18','','10047','Proxy group [{#PROXY.GROUP.NAME}]: Settings','zabbix.proxy.group.settings[{#PROXY.GROUP.NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The settings for the discovered proxy group.','0','7d','0','','47551','','','','','200','1','0','','','0','0','0','0','0','0','0','b493eccc24ea4343ae3caf0651d46b6c','0','2','0'), ('47556','18','','10047','Proxy group [{#PROXY.GROUP.NAME}]: Stats','zabbix.proxy.group.stats[{#PROXY.GROUP.NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The statistics for the discovered proxy group.','0','7d','0','','47551','','','','','200','1','0','','','0','0','0','0','0','0','0','aab08b95d317451089604077e6d8543c','0','2','0'), ('47593','18','','10636','BBU discovery','huawei.dorado.bbu.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of BBUs.','0','7d','0','','47569','','','','','200','1','0','','','0','0','0','0','0','0','0','362c06913f594e868ed1c8c90e29dfb3','0','2','0'), ('47594','18','','10636','Controller discovery','huawei.dorado.controller.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of controllers.','0','7d','0','','47572','','','','','200','1','0','','','0','0','0','0','0','0','0','82033f0c72c1424eb606ad2cc9573015','0','2','0'), ('47595','18','','10636','Disk discovery','huawei.dorado.disk.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of disks.','0','7d','0','','47573','','','','','200','1','0','','','0','0','0','0','0','0','0','a19ac722e1d846b5ab1458891e9146a3','0','2','0'), ('47596','18','','10636','Enclosure discovery','huawei.dorado.enclosure.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of enclosures.','0','7d','0','','47574','','','','','200','1','0','','','0','0','0','0','0','0','0','a4abd7c7f02a425a9fed40a9adbda88d','0','2','0'), ('47597','18','','10636','Fan discovery','huawei.dorado.fan.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of fans.','0','7d','0','','47575','','','','','200','1','0','','','0','0','0','0','0','0','0','a03f01844ebd4b44afd45614c7e5ed22','0','2','0'), ('47598','18','','10636','LUN discovery','huawei.dorado.lun.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of LUNs.','0','7d','0','','47576','','','','','200','1','0','','','0','0','0','0','0','0','0','9ae2d586c6fd49dfa0e64bce7ed2f249','0','2','0'), ('47599','18','','10636','Node performance discovery','huawei.dorado.node.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of node performance counters.','0','7d','0','','47577','','','','','200','1','0','','','0','0','0','0','0','0','0','f7fad4cdd7e74a449318e31900c58dbb','0','2','0'), ('47600','18','','10636','Storage pool discovery','huawei.dorado.pool.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of storage pools.','0','7d','0','','47578','','','','','200','1','0','','','0','0','0','0','0','0','0','eb0e35cdc3014b3898ad5a6720715ce6','0','2','0'), ('47601','18','','10636','BBU [{#ID}] on [{#LOCATION}]: Health status','huawei.dorado.bbu.health_status["{#ID}:{#LOCATION}"]','0','31d','365d','0','3','','','','',NULL,'1239','','','0','','','','','2',NULL,'Health status of a BBU.','0','7d','0','','47569','','','','','200','1','0','','','0','0','0','0','0','0','0','1e9048a8d6884ad6a69af5a3d82e55b2','0','2','0'), ('47602','18','','10636','BBU [{#ID}] on [{#LOCATION}]: Running status','huawei.dorado.bbu.running_status["{#ID}:{#LOCATION}"]','0','31d','365d','0','3','','','','',NULL,'1241','','','0','','','','','2',NULL,'Running status of a BBU.','0','7d','0','','47569','','','','','200','1','0','','','0','0','0','0','0','0','0','d426241b0e884e8d9b13a954435ba906','0','2','0'), ('47603','18','','10636','Controller [{#ID}]: CPU utilization','huawei.dorado.controller.cpu["{#ID}"]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'CPU utilization of the controller.','0','7d','0','','47572','','','','','200','1','0','','','0','0','0','0','0','0','0','6862050dda61467c9bb2f754441a7e75','0','2','0'), ('47604','18','','10636','Controller [{#ID}]: Health status','huawei.dorado.controller.health_status["{#ID}"]','0','31d','365d','0','3','','','','',NULL,'1239','','','0','','','','','2',NULL,'Controller health status.','0','7d','0','','47572','','','','','200','1','0','','','0','0','0','0','0','0','0','ab427b8e87444481a6ab84630a1ff0f0','0','2','0'), ('47605','18','','10636','Controller [{#ID}]: Memory utilization','huawei.dorado.controller.memory["{#ID}"]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Memory utilization of the controller.','0','7d','0','','47572','','','','','200','1','0','','','0','0','0','0','0','0','0','7e1f6c169dda4b7baed033a40c20a3f7','0','2','0'), ('47606','18','','10636','Controller [{#ID}]: Role','huawei.dorado.controller.role["{#ID}"]','0','31d','365d','0','3','','','','',NULL,'1238','','','0','','','','','2',NULL,'Controller role.','0','7d','0','','47572','','','','','200','1','0','','','0','0','0','0','0','0','0','6de50a16225c43b9b1f9b36980e30ee8','0','2','0'), ('47607','18','','10636','Controller [{#ID}]: Running status','huawei.dorado.controller.running_status["{#ID}"]','0','31d','365d','0','3','','','','',NULL,'1241','','','0','','','','','2',NULL,'Controller running status.','0','7d','0','','47572','','','','','200','1','0','','','0','0','0','0','0','0','0','935c5f5526a8456c941a1d8f2d5c6cb4','0','2','0'), ('47608','18','','10636','Disk [{#MODEL}] on [{#LOCATION}]: Health status','huawei.dorado.disk.health_status["{#ID}"]','0','31d','365d','0','3','','','','',NULL,'1239','','','0','','','','','2',NULL,'Disk health status.','0','7d','0','','47573','','','','','200','1','0','','','0','0','0','0','0','0','0','fce3691a4029427b86d6475f45a562ba','0','2','0'), ('47609','18','','10636','Disk [{#MODEL}] on [{#LOCATION}]: Running status','huawei.dorado.disk.running_status["{#ID}"]','0','31d','365d','0','3','','','','',NULL,'1241','','','0','','','','','2',NULL,'Disk running status.','0','7d','0','','47573','','','','','200','1','0','','','0','0','0','0','0','0','0','6462dd9890f9492399d39472eaca42e0','0','2','0'), ('47610','18','','10636','Disk [{#MODEL}] on [{#LOCATION}]: Temperature','huawei.dorado.disk.temperature["{#ID}"]','0','31d','365d','0','3','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'Disk temperature.','0','7d','0','','47573','','','','','200','1','0','','','0','0','0','0','0','0','0','cd6759e70695454783dd7c0a68ed2739','0','2','0'), ('47611','18','','10636','Enclosure [{#NAME}]: Health status','huawei.dorado.enclosure.health_status["{#NAME}"]','0','31d','365d','0','3','','','','',NULL,'1239','','','0','','','','','2',NULL,'Enclosure health status.','0','7d','0','','47574','','','','','200','1','0','','','0','0','0','0','0','0','0','7babf3c5b33b4a6096fb4dc30d0fb930','0','2','0'), ('47612','18','','10636','Enclosure [{#NAME}]: Running status','huawei.dorado.enclosure.running_status["{#NAME}"]','0','31d','365d','0','3','','','','',NULL,'1241','','','0','','','','','2',NULL,'Enclosure running status.','0','7d','0','','47574','','','','','200','1','0','','','0','0','0','0','0','0','0','7b084bb85c1c45cc951f798ef10cb749','0','2','0'), ('47613','18','','10636','Enclosure [{#NAME}]: Temperature','huawei.dorado.enclosure.temperature["{#NAME}"]','0','31d','365d','0','3','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'Enclosure temperature.','0','7d','0','','47574','','','','','200','1','0','','','0','0','0','0','0','0','0','67c17f51ee7e4ad696aa95b9d590c299','0','2','0'), ('47614','18','','10636','Fan [{#ID}] on [{#LOCATION}]: Health status','huawei.dorado.fan.health_status["{#ID}:{#LOCATION}"]','0','31d','365d','0','3','','','','',NULL,'1239','','','0','','','','','2',NULL,'Health status of a fan.','0','7d','0','','47575','','','','','200','1','0','','','0','0','0','0','0','0','0','4a08efa163e5448ab8d01e69535979a1','0','2','0'), ('47615','18','','10636','Fan [{#ID}] on [{#LOCATION}]: Running status','huawei.dorado.fan.running_status["{#ID}:{#LOCATION}"]','0','31d','365d','0','3','','','','',NULL,'1241','','','0','','','','','2',NULL,'Operating status of a fan.','0','7d','0','','47575','','','','','200','1','0','','','0','0','0','0','0','0','0','22c3254048bc4973a62069fe9ff35dab','0','2','0'), ('47616','18','','10636','LUN [{#NAME}]: Read traffic per second','huawei.dorado.lun.bps.read["{#NAME}"]','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Current read bandwidth for the LUN.','0','7d','0','','47576','','','','','200','1','0','','','0','0','0','0','0','0','0','3e6998def6124b32840002022139e540','0','2','0'), ('47617','18','','10636','LUN [{#NAME}]: Total traffic per second','huawei.dorado.lun.bps.total["{#NAME}"]','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Current total bandwidth for the LUN.','0','7d','0','','47576','','','','','200','1','0','','','0','0','0','0','0','0','0','c43287cfec514dc1a5062b4acf6fa495','0','2','0'), ('47618','18','','10636','LUN [{#NAME}]: Write traffic per second','huawei.dorado.lun.bps.write["{#NAME}"]','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Current write bandwidth for the LUN.','0','7d','0','','47576','','','','','200','1','0','','','0','0','0','0','0','0','0','c69a608ac519491cab8596fd4bfff1fb','0','2','0'), ('47619','18','','10636','LUN [{#NAME}]: Capacity','huawei.dorado.lun.capacity["{#NAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Capacity of the LUN.','0','7d','0','','47576','','','','','200','1','0','','','0','0','0','0','0','0','0','ec45b31280a2414d91ce7aa7fcf44615','0','2','0'), ('47620','18','','10636','LUN [{#NAME}]: Read operations per second','huawei.dorado.lun.iops.read["{#NAME}"]','0','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'Read IOPS of the node.','0','7d','0','','47576','','','','','200','1','0','','','0','0','0','0','0','0','0','e180a7a129a34ee3b8d2784cd892075b','0','2','0'), ('47621','18','','10636','LUN [{#NAME}]: Total I/O per second','huawei.dorado.lun.iops.total["{#NAME}"]','0','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'Current IOPS of the LUN.','0','7d','0','','47576','','','','','200','1','0','','','0','0','0','0','0','0','0','2353b672d2aa4a06804589419c5602e0','0','2','0'), ('47622','18','','10636','LUN [{#NAME}]: Write operations per second','huawei.dorado.lun.iops.write["{#NAME}"]','0','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'Write IOPS of the node.','0','7d','0','','47576','','','','','200','1','0','','','0','0','0','0','0','0','0','21c76754695e4f09ae9907c6ca181fe7','0','2','0'), ('47623','18','','10636','LUN [{#NAME}]: Average read I/O latency','huawei.dorado.lun.latency.read["{#NAME}"]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Average read I/O response time.','0','7d','0','','47576','','','','','200','1','0','','','0','0','0','0','0','0','0','7cf0c90782b744a584e411bf3295a4fd','0','2','0'), ('47624','18','','10636','LUN [{#NAME}]: Average total I/O latency','huawei.dorado.lun.latency.total["{#NAME}"]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Average I/O latency of the node.','0','7d','0','','47576','','','','','200','1','0','','','0','0','0','0','0','0','0','beacd28febb1411ab77074fe5a344b3a','0','2','0'), ('47625','18','','10636','LUN [{#NAME}]: Average write I/O latency','huawei.dorado.lun.latency.write["{#NAME}"]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Average write I/O response time.','0','7d','0','','47576','','','','','200','1','0','','','0','0','0','0','0','0','0','18edb1b0b27e4be4badf566ff6973dbb','0','2','0'), ('47626','18','','10636','LUN [{#NAME}]: Status','huawei.dorado.lun.status["{#NAME}"]','0','31d','365d','0','3','','','','',NULL,'1240','','','0','','','','','2',NULL,'Status of the LUN.','0','7d','0','','47576','','','','','200','1','0','','','0','0','0','0','0','0','0','e66dc4118b8043ca9be590ae1fc509ef','0','2','0'), ('47627','18','','10636','Node [{#NODE}]: Read traffic per second','huawei.dorado.node.bps.read["{#NODE}"]','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Read bandwidth for the node.','0','7d','0','','47577','','','','','200','1','0','','','0','0','0','0','0','0','0','f95b67c8d5d34f9da3ed1491c353b33b','0','2','0'), ('47628','18','','10636','Node [{#NODE}]: Total traffic per second','huawei.dorado.node.bps.total["{#NODE}"]','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Total bandwidth for the node.','0','7d','0','','47577','','','','','200','1','0','','','0','0','0','0','0','0','0','1f3bb492970b4027884b92b505629c6e','0','2','0'), ('47629','18','','10636','Node [{#NODE}]: Write traffic per second','huawei.dorado.node.bps.write["{#NODE}"]','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Write bandwidth for the node.','0','7d','0','','47577','','','','','200','1','0','','','0','0','0','0','0','0','0','af7c068d5134442bb09b38c767cbc631','0','2','0'), ('47630','18','','10636','Node [{#NODE}]: CPU utilization','huawei.dorado.node.cpu["{#NODE}"]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'CPU utilization of the node.','0','7d','0','','47577','','','','','200','1','0','','','0','0','0','0','0','0','0','e853a21f897346e0a1756dad24ac1283','0','2','0'), ('47631','18','','10636','Node [{#NODE}]: Read operations per second','huawei.dorado.node.iops.read["{#NODE}"]','0','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'Read IOPS of the node.','0','7d','0','','47577','','','','','200','1','0','','','0','0','0','0','0','0','0','c71f8355bde14dceb229fba492b9ac91','0','2','0'), ('47632','18','','10636','Node [{#NODE}]: Total I/O per second','huawei.dorado.node.iops.total["{#NODE}"]','0','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'Total IOPS of the node.','0','7d','0','','47577','','','','','200','1','0','','','0','0','0','0','0','0','0','51439886809745208877caa660a5e953','0','2','0'), ('47633','18','','10636','Node [{#NODE}]: Write operations per second','huawei.dorado.node.iops.write["{#NODE}"]','0','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'Write IOPS of the node.','0','7d','0','','47577','','','','','200','1','0','','','0','0','0','0','0','0','0','fd9755ff4ef346c1a6e3ce43891fd6eb','0','2','0'), ('47634','18','','10636','Storage pool [{#NAME}]: Capacity free','huawei.dorado.pool.capacity.free["{#NAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Available capacity of a storage pool.','0','7d','0','','47578','','','','','200','1','0','','','0','0','0','0','0','0','0','a3c342459f1c4c6dbdb58ff48efd1d9b','0','2','0'), ('47635','18','','10636','Storage pool [{#NAME}]: Capacity total','huawei.dorado.pool.capacity.total["{#NAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total capacity of a storage pool.','0','7d','0','','47578','','','','','200','1','0','','','0','0','0','0','0','0','0','15d4e63a8295458cb17f873bff59791f','0','2','0'), ('47636','18','','10636','Storage pool [{#NAME}]: Health status','huawei.dorado.pool.health_status["{#NAME}"]','0','31d','365d','0','3','','','','',NULL,'1239','','','0','','','','','2',NULL,'Health status of a storage pool.','0','7d','0','','47578','','','','','200','1','0','','','0','0','0','0','0','0','0','1fea3b68249e475c97ff7e14645d5fda','0','2','0'), ('47637','18','','10636','Storage pool [{#NAME}]: Running status','huawei.dorado.pool.running_status["{#NAME}"]','0','31d','365d','0','3','','','','',NULL,'1241','','','0','','','','','2',NULL,'Operating status of a storage pool.','0','7d','0','','47578','','','','','200','1','0','','','0','0','0','0','0','0','0','5d4c872c88864dcd9e19ea603914f8fb','0','2','0'), ('47642','18','','10637','Total bytes','apache.bytes','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total bytes served.','0','7d','0','','47641','','','','','200','1','0','','','0','0','0','0','0','0','0','4f77b3a553d446619715e681799ea92c','0','2','0'), ('47643','18','','10637','Bytes per second','apache.bytes.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'It is calculated as a rate of change for total bytes statistics. `BytesPerSec` is not used, as it counts the average since the last Apache server start.','0','7d','0','','47641','','','','','200','1','0','','','0','0','0','0','0','0','0','a15b5f65e81440a49fc5918afd31d73b','0','2','0'), ('47644','18','','10637','Total requests','apache.requests','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of the Apache server accesses.','0','7d','0','','47641','','','','','200','1','0','','','0','0','0','0','0','0','0','b0726bf9933a4349854bce2005e66f77','0','2','0'), ('47645','18','','10637','Requests per second','apache.requests.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'It is calculated as a rate of change for the "Total requests" statistics. `ReqPerSec` is not used, as it counts the average since the last Apache server start.','0','7d','0','','47641','','','','','200','1','0','','','0','0','0','0','0','0','0','864887722e62444a8d8f0756f161fc23','0','2','0'), ('47646','18','','10637','Uptime','apache.uptime','0','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The service uptime expressed in seconds.','0','7d','0','','47641','','','','','200','1','0','','','0','0','0','0','0','0','0','af675fca551a45659f823cdf2e06175c','0','2','0'), ('47647','18','','10637','Version','apache.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The Apache service version.','0','7d','0','','47641','','','','','200','1','0','','','0','0','0','0','0','0','0','67523f1351814d388f95178363a106ff','0','2','0'), ('47648','18','','10637','Workers idle cleanup','apache.workers.cleanup','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of workers in cleanup state.','0','7d','0','','47641','','','','','200','1','0','','','0','0','0','0','0','0','0','93beadab3d194772ac1a6f1950b20cad','0','2','0'), ('47649','18','','10637','Workers closing connection','apache.workers.closing','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of workers in closing state.','0','7d','0','','47641','','','','','200','1','0','','','0','0','0','0','0','0','0','657a21b70a104778b32805226a05b27a','0','2','0'), ('47650','18','','10637','Workers DNS lookup','apache.workers.dnslookup','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of workers in `dnslookup` state.','0','7d','0','','47641','','','','','200','1','0','','','0','0','0','0','0','0','0','86afd9d804f146b1adeed8844223d38b','0','2','0'), ('47651','18','','10637','Workers finishing','apache.workers.finishing','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of workers in finishing state.','0','7d','0','','47641','','','','','200','1','0','','','0','0','0','0','0','0','0','70565d82384a439587ff6a32fa09ee1e','0','2','0'), ('47652','18','','10637','Workers keepalive (read)','apache.workers.keepalive','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of workers in `keepalive` state.','0','7d','0','','47641','','','','','200','1','0','','','0','0','0','0','0','0','0','7a2c9e6039b942c09ff30d8ff77b9658','0','2','0'), ('47653','18','','10637','Workers logging','apache.workers.logging','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of workers in logging state.','0','7d','0','','47641','','','','','200','1','0','','','0','0','0','0','0','0','0','0c3f9385fcc047d6ae8ee523f7bebb79','0','2','0'), ('47654','18','','10637','Workers reading request','apache.workers.reading','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of workers in reading state.','0','7d','0','','47641','','','','','200','1','0','','','0','0','0','0','0','0','0','7a4580dcfd974c7f9d59b8703054e77f','0','2','0'), ('47655','18','','10637','Workers sending reply','apache.workers.sending','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of workers in sending state.','0','7d','0','','47641','','','','','200','1','0','','','0','0','0','0','0','0','0','63d775979b934e72a2ed474419cf5c03','0','2','0'), ('47656','18','','10637','Workers slot with no current process','apache.workers.slot','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of slots with no current process.','0','7d','0','','47641','','','','','200','1','0','','','0','0','0','0','0','0','0','8acd6c143a074c6faa46aa64869afc9b','0','2','0'), ('47657','18','','10637','Workers starting up','apache.workers.starting','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of workers in starting state.','0','7d','0','','47641','','','','','200','1','0','','','0','0','0','0','0','0','0','86200cce3b7d47798cc35bab713f87aa','0','2','0'), ('47658','18','','10637','Workers waiting for connection','apache.workers.waiting','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of workers in waiting state.','0','7d','0','','47641','','','','','200','1','0','','','0','0','0','0','0','0','0','64b26283b39946fe92d729ac00afeca0','0','2','0'), ('47659','18','','10637','Total workers busy','apache.workers_total.busy','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of busy worker threads/processes.','0','7d','0','','47641','','','','','200','1','0','','','0','0','0','0','0','0','0','90757d625da543b18e136da7a0099be6','0','2','0'), ('47660','18','','10637','Total workers idle','apache.workers_total.idle','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of idle worker threads/processes.','0','7d','0','','47641','','','','','200','1','0','','','0','0','0','0','0','0','0','87be88163d4940658400ddf762faaeb6','0','2','0'), ('47661','18','','10637','Event MPM discovery','apache.mpm.event.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The discovery of additional metrics if the event Multi-Processing Module (MPM) is used. For more details see [Apache MPM event](https://httpd.apache.org/docs/current/mod/event.html).','0','7d','0','','47641','','','','','200','1','0','','','0','0','0','0','0','0','0','973011cd85cb4ef58d25bc5e0a1118b6','0','2','0'), ('47662','18','','10637','Apache process discovery','apache.proc.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The discovery of the Apache process summary.','0','7d','1','','47640','','','','','200','1','0','','','0','0','0','0','0','0','0','7c4b0d02427b4cf199817b5d5ae66378','0','2','0'), ('47664','18','','10637','Bytes per request','apache.bytes[per_request{#SINGLETON}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The average number of client requests per second.','0','7d','0','','47641','','','','','200','1','0','','','0','0','0','0','0','0','0','a640f7cba9314dd595d609ef79286548','0','2','0'), ('47665','18','','10637','Connections async closing','apache.connections[async_closing{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of asynchronous connections in closing state (applicable only to the event MPM).','0','7d','0','','47641','','','','','200','1','0','','','0','0','0','0','0','0','0','3f1daaa5642545f1bdd5ab9b50ec49c9','0','2','0'), ('47666','18','','10637','Connections async keepalive','apache.connections[async_keep_alive{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of asynchronous connections in keepalive state (applicable only to the event MPM).','0','7d','0','','47641','','','','','200','1','0','','','0','0','0','0','0','0','0','0beb4c6e7915408691264f8aa8073d67','0','2','0'), ('47667','18','','10637','Connections async writing','apache.connections[async_writing{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of asynchronous connections in writing state (applicable only to the event MPM).','0','7d','0','','47641','','','','','200','1','0','','','0','0','0','0','0','0','0','da590c6635484f178d4d26de5863f00e','0','2','0'), ('47668','18','','10637','Connections total','apache.connections[total{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of total connections.','0','7d','0','','47641','','','','','200','1','0','','','0','0','0','0','0','0','0','c11f36a9483444e38cecb5e7ae667735','0','2','0'), ('47669','18','','10637','Number of async processes','apache.process[num{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of asynchronous processes.','0','7d','0','','47641','','','','','200','1','0','','','0','0','0','0','0','0','0','ca00fe11b10140f6ad791c8fcc012082','0','2','0'), ('47670','18','','10637','Get process data','apache.proc.get[{#APACHE.NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The summary metrics aggregated by a process {#APACHE.NAME}.','0','7d','0','','47640','','','','','200','1','0','','','0','0','0','0','0','0','0','68c53fcf8d8545ac98e923c04945aec4','0','2','0'), ('47676','18','','10638','Subject alternative name','cert.alternative_names','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The subject alternative name extension allows identities to be bound to the subject of the certificate. These identities may be included in addition to or in place of the identity in the subject field of the certificate. Defined options include an Internet electronic mail address, a DNS name, an IP address, and a Uniform Resource Identifier (URI).','0','7d','0','','47675','','','','','200','1','0','','','0','0','0','0','0','0','0','adad17766cd84e6cb5966b26c79bebbc','0','2','0'), ('47677','18','','10638','Issuer','cert.issuer','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The field identifies the entity that has signed and issued the certificate.','0','7d','0','','47675','','','','','200','1','0','','','0','0','0','0','0','0','0','7095e5e326ae4f29b86e281d8fc24afc','0','2','0'), ('47678','18','','10638','Last validation status','cert.message','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Last check result message.','0','7d','0','','47675','','','','','200','1','0','','','0','0','0','0','0','0','0','dd0cdc1cf7d0430cb3e7601a68df1aed','0','2','0'), ('47679','18','','10638','Expires on','cert.not_after','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'The date on which the certificate validity period ends.','0','7d','0','','47675','','','','','200','1','0','','','0','0','0','0','0','0','0','4a1b4f5d6bb64e0389c6a206b0d3749e','0','2','0'), ('47680','18','','10638','Valid from','cert.not_before','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'The date on which the certificate validity period begins.','0','7d','0','','47675','','','','','200','1','0','','','0','0','0','0','0','0','0','3df42217148c45888f9cda3e8a273ad6','0','2','0'), ('47681','18','','10638','Public key algorithm','cert.public_key_algorithm','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The digital signature algorithm is used to verify the signature of a certificate.','0','7d','0','','47675','','','','','200','1','0','','','0','0','0','0','0','0','0','d4f08f2bcb104036bede781b3c693ce4','0','2','0'), ('47682','18','','10638','Serial number','cert.serial_number','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The serial number is a positive integer assigned by the CA to each certificate. It is unique for each certificate issued by a given CA. Non-conforming CAs may issue certificates with serial numbers that are negative or zero.','0','7d','0','','47675','','','','','200','1','0','','','0','0','0','0','0','0','0','b799fe9cde49472996debe89e32f9161','0','2','0'), ('47683','18','','10638','Fingerprint','cert.sha1_fingerprint','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The Certificate Signature (SHA1 Fingerprint or Thumbprint) is the hash of the entire certificate in DER form.','0','7d','0','','47675','','','','','200','1','0','','','0','0','0','0','0','0','0','bb13668b3dac4ef789ab90eb6e04da1f','0','2','0'), ('47684','18','','10638','Signature algorithm','cert.signature_algorithm','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The algorithm identifier for the algorithm used by the CA to sign the certificate.','0','7d','0','','47675','','','','','200','1','0','','','0','0','0','0','0','0','0','42c021f833e344ff86fd75d5fcc67f23','0','2','0'), ('47685','18','','10638','Subject','cert.subject','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The field identifies the entity associated with the public key stored in the subject public key field.','0','7d','0','','47675','','','','','200','1','0','','','0','0','0','0','0','0','0','4ce885041af04d52943dbc137a419c04','0','2','0'), ('47686','18','','10638','Validation result','cert.validation','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The certificate validation result. Possible values: valid/invalid/valid-but-self-signed','0','7d','0','','47675','','','','','200','1','0','','','0','0','0','0','0','0','0','5722c8d0794a4f948cec737a80a2f646','0','2','0'), ('47687','18','','10638','Version','cert.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The version of the encoded certificate.','0','7d','0','','47675','','','','','200','1','0','','','0','0','0','0','0','0','0','5f7e2edfa6e24fd0a8608b8a2423b183','0','2','0'), ('47692','18','','10639','Connections accepted per second','nginx.connections.accepted.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of accepted client connections.','0','7d','0','','47691','','','','','200','1','0','','','0','0','0','0','0','0','0','8db87e1a5a6e478eb4e554b477abb5a4','0','2','0'), ('47693','18','','10639','Connections active','nginx.connections.active','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of active client connections including waiting connections.','0','7d','0','','47691','','','','','200','1','0','','','0','0','0','0','0','0','0','cdc0f7d6ad334a219221d7c0b7bf866c','0','2','0'), ('47694','18','','10639','Connections dropped per second','nginx.connections.dropped.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of dropped client connections.','0','7d','0','','47691','','','','','200','1','0','','','0','0','0','0','0','0','0','7dea09085ee84f79837e6f43485f39df','0','2','0'), ('47695','18','','10639','Connections handled per second','nginx.connections.handled.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of handled connections. Generally, the parameter value is the same as for the accepted connections, unless some resource limits have been reached (for example, the `worker_connections limit`).','0','7d','0','','47691','','','','','200','1','0','','','0','0','0','0','0','0','0','eb25d53ee75148fa890054b116fb8960','0','2','0'), ('47696','18','','10639','Connections reading','nginx.connections.reading','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of connections where Nginx is reading the request header.','0','7d','0','','47691','','','','','200','1','0','','','0','0','0','0','0','0','0','22d33954da1243c8a2c015f873f7cff3','0','2','0'), ('47697','18','','10639','Connections waiting','nginx.connections.waiting','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of idle client connections waiting for a request.','0','7d','0','','47691','','','','','200','1','0','','','0','0','0','0','0','0','0','92c8ccf4863d46e1848fe2c61e0a86e2','0','2','0'), ('47698','18','','10639','Connections writing','nginx.connections.writing','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of connections where Nginx is writing a response back to the client.','0','7d','0','','47691','','','','','200','1','0','','','0','0','0','0','0','0','0','e5c99f0d7d714168a5ecd100aa42a63a','0','2','0'), ('47699','18','','10639','Requests total','nginx.requests.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of client requests.','0','7d','0','','47691','','','','','200','1','0','','','0','0','0','0','0','0','0','9276808621ea44e19afd6e42ed4002ee','0','2','0'), ('47700','18','','10639','Requests per second','nginx.requests.total.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of client requests.','0','7d','0','','47691','','','','','200','1','0','','','0','0','0','0','0','0','0','bc688f502c2940d584f22ace27342b92','0','2','0'), ('47701','18','','10639','Version','nginx.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','7d','0','','47691','','','','','200','1','0','','','0','0','0','0','0','0','0','3667a75132654b01b1e0aff6ed059353','0','2','0'), ('47702','18','','10639','Nginx process discovery','nginx.proc.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The discovery of Nginx process summary.','0','7d','1','','47690','','','','','200','1','0','','','0','0','0','0','0','0','0','b0fa23a0c13b4c11b79369d6cfadc0bb','0','2','0'), ('47704','18','','10639','Get process data','nginx.proc.get[{#NGINX.NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The summary metrics aggregated by a process {#NGINX.NAME}.','0','7d','0','','47690','','','','','200','1','0','','','0','0','0','0','0','0','0','4a897c7bc31f4413b8c0d0eb050d0eac','0','2','0'), ('47717','18','','10640','Get alert check','nutanix.cluster.alert.get.check','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data collection check. Check the latest values for details.','0','7d','0','','47709','','','','','200','1','0','','','0','0','0','0','0','0','0','1dc2ba69aa5440d8830313157499179e','0','2','0'), ('47718','18','','10640','General: Cluster operation mode','nutanix.cluster.cluster.operation.mode','0','31d','365d','0','3','','','','',NULL,'1249','','','0','','','','','0',NULL,'The cluster operation mode. One of the following: - NORMAL; - OVERRIDE; - READONLY; - STANDALONE; - SWITCH_TO_TWO_NODE; - UNKNOWN.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','5567209755544223bf83e977ec209eaa','0','2','0'), ('47719','18','','10640','Content Cache: References','nutanix.cluster.content.cache.dedup.ref.num','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Average number of content cache references.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','c11c24fa7c7047f5ba5f7f39bccb656e','0','2','0'), ('47720','18','','10640','Content Cache: Hit rate, %','nutanix.cluster.content.cache.hit.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Content cache hits over all lookups.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','e1696a8e6028406e8e9005ebc295a4fa','0','2','0'), ('47721','18','','10640','Content Cache: Logical memory usage, bytes','nutanix.cluster.content.cache.logical.memory.usage.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Logical memory used to cache data without deduplication in bytes.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','fc40402b8e51471fb3299796c62a9669','0','2','0'), ('47722','18','','10640','Content Cache: Logical SSD usage, bytes','nutanix.cluster.content.cache.logical.ssd.usage.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Logical SSD memory used to cache data without deduplication in bytes.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','24b35405698e4e4d95ef2be9c5d0d44f','0','2','0'), ('47723','18','','10640','Content Cache: Number of lookups','nutanix.cluster.content.cache.lookups.num','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of lookups on the content cache.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','91b14b7aec844e38805b003b89059304','0','2','0'), ('47724','18','','10640','Content Cache: Physical memory usage, bytes','nutanix.cluster.content.cache.physical.memory.usage.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Real memory used to cache data via the content cache in bytes.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','95f4f380b95945d182fd99053477b592','0','2','0'), ('47725','18','','10640','Content Cache: Physical SSD usage, bytes','nutanix.cluster.content.cache.physical.ssd.usage.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Real SSD usage used to cache data via the content cache in bytes.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','f2ecb476122e4289972b3132178c969e','0','2','0'), ('47726','18','','10640','Content Cache: Logical saved memory usage, bytes','nutanix.cluster.content.cache.saved.memory.usage.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Memory saved due to content cache deduplication in bytes.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','aa48c01e28d840e6a2bb87b892835f48','0','2','0'), ('47727','18','','10640','Content Cache: Saved SSD usage, bytes','nutanix.cluster.content.cache.saved.ssd.usage.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'SSD usage saved due to content cache deduplication in bytes.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','894a313d9eb5409ba7c198c62cf7d9f9','0','2','0'), ('47728','18','','10640','Controller: Random IO','nutanix.cluster.controller.io.random','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of random Input/Output operations from the controller.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','c107dffc846940f2b32e1d7d01a22cb6','0','2','0'), ('47729','18','','10640','Controller: Random IO, %','nutanix.cluster.controller.io.random.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of random Input/Output from the controller.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','eea230e867044336a10f8308f05b5c32','0','2','0'), ('47730','18','','10640','Controller: Sequence IO','nutanix.cluster.controller.io.sequence','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of sequential Input/Output operations from the controller.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','ef919d4e2bff4cbc94bd59be2cfb50f4','0','2','0'), ('47731','18','','10640','Controller: Sequence IO, %','nutanix.cluster.controller.io.sequence.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of sequential Input/Output from the controller.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','058564b6e59f470c9ef74a9d6b68d8d9','0','2','0'), ('47732','18','','10640','General: IO','nutanix.cluster.general.io','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of Input/Output operations from the disk.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','f9a5a272fad04acb8d5fc1d806e01d60','0','2','0'), ('47733','18','','10640','General: IO, bandwidth','nutanix.cluster.general.io.bandwidth','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Data transferred in B/sec from the disk.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','642236ff71de4ead98e8f738e8524694','0','2','0'), ('47734','18','','10640','General: IO, latency','nutanix.cluster.general.io.latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output latency from the disk.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','bedecc8f97b74f7287a4a094fe26cfe7','0','2','0'), ('47735','18','','10640','General: Random IO','nutanix.cluster.general.io.random','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of random Input/Output operations.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','ee2c4b096f0f4ac1b60b6441094fe076','0','2','0'), ('47736','18','','10640','General: Random IO, %','nutanix.cluster.general.io.random.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of random Input/Output operations.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','c03b24dc56ae4c23a82578479ae2eb6d','0','2','0'), ('47737','18','','10640','General: Read IO','nutanix.cluster.general.io.read','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of Input/Output read operations.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','78e01fe5d2dd4f07b9ee34b49fac9ca4','0','2','0'), ('47738','18','','10640','General: Read IO, bandwidth','nutanix.cluster.general.io.read.bandwidth','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Read data transferred in B/sec from the disk.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','6fb8985279ff4aeb932270322a4e41f6','0','2','0'), ('47739','18','','10640','General: Read IO, latency','nutanix.cluster.general.io.read.latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Average Input/Output read latency.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','a6fcbeca6b1648659e0e74225d40863a','0','2','0'), ('47740','18','','10640','General: Read IO, %','nutanix.cluster.general.io.read.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The total percentage of Input/Output operations that are reads.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','d2b762b0b9b74e8a8e8a8e40a3e932cf','0','2','0'), ('47741','18','','10640','General: IO total read, bytes','nutanix.cluster.general.io.read.total.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total size of Input/Output read operations.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','ba49928014e64b8d8f90dbc76c2b6b57','0','2','0'), ('47742','18','','10640','General: IO total read, sec','nutanix.cluster.general.io.read.total.sec','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Total time of Input/Output read operations.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','30a67ff848484e4e9552a1bcd66c1f68','0','2','0'), ('47743','18','','10640','General: Sequence IO','nutanix.cluster.general.io.sequence','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of sequential Input/Output operations.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','9ce271586ac249d2b2fa27fa9b3e3878','0','2','0'), ('47744','18','','10640','General: Sequence IO, %','nutanix.cluster.general.io.sequence.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of sequential Input/Output.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','97990e2fb53b464cadc13d0038f21199','0','2','0'), ('47745','18','','10640','General: IO total, bytes','nutanix.cluster.general.io.total.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total size of Input/Output operations.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','a01ae646308045d3b88d8e917000018c','0','2','0'), ('47746','18','','10640','General: IO total, sec','nutanix.cluster.general.io.total.sec','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Total time of Input/Output operations.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','108356c5fd5c49c79840b7a6d9de8659','0','2','0'), ('47747','18','','10640','General: Write IO','nutanix.cluster.general.io.write','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output write operations from the disk.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','f9b61618e2e545ac9e859d101bc10651','0','2','0'), ('47748','18','','10640','General: Write IO, bandwidth','nutanix.cluster.general.io.write.bandwidth','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Write data transferred in B/sec from the disk.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','86dea3be95e44cac9b4a7ab8b5105681','0','2','0'), ('47749','18','','10640','General: Write IO, latency','nutanix.cluster.general.io.write.latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Average Input/Output write operation latency.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','700b81f909c1471eb2fc0611e74876f3','0','2','0'), ('47750','18','','10640','General: Write IO, %','nutanix.cluster.general.io.write.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Total percentage of Input/Output operations that are writes.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','41950b93ee44469c8589bb5c0f8c0911','0','2','0'), ('47751','18','','10640','General: IOPS','nutanix.cluster.general.iops','0','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output operations per second from the disk.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','4aedd6caaa014e42a7bacac34e9809ac','0','2','0'), ('47752','18','','10640','General: Read IOPS','nutanix.cluster.general.iops.read','0','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output read operations per second from the disk.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','c9e26c8d0e2f44089a9591769ab2eceb','0','2','0'), ('47753','18','','10640','General: Write IOPS','nutanix.cluster.general.iops.write','0','31d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of Input/Output write operations per second.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','96182d97edac497883185899cd978f26','0','2','0'), ('47754','18','','10640','General: Storage capacity, bytes','nutanix.cluster.general.storage.capacity.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total size of the datastores used by this system in bytes.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','f9433014206a42d3aecf207448f6dee0','0','2','0'), ('47755','18','','10640','General: Storage free, bytes','nutanix.cluster.general.storage.free.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total free space of the datastores used by this system in bytes.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','702544e35ca1490cb401d7730df044fd','0','2','0'), ('47756','18','','10640','General: Storage logical usage, bytes','nutanix.cluster.general.storage.logical.usage.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total logical space used by the datastores of this system in bytes.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','87a495b3a7e246e187d034166ec9e19d','0','2','0'), ('47757','18','','10640','General: Storage usage, bytes','nutanix.cluster.general.storage.usage.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total physical datastore space used by this host and all its snapshots on the datastores.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','02809b0e347d49eeb1f8a8deac32af86','0','2','0'), ('47758','18','','10640','General: Timespan, sec','nutanix.cluster.general.timespan.sec','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Cluster timespan.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','4df3faff926b4d92bffd46949e6443bf','0','2','0'), ('47759','18','','10640','General: Total transformed usage, bytes','nutanix.cluster.general.transformed.usage.total.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Actual usage of storage.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','9b9d93d4a09c45d2bd61a530f5e35fe9','0','2','0'), ('47760','18','','10640','General: Total untransformed usage, bytes','nutanix.cluster.general.untransformed.usage.total.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Logical usage of storage (physical usage divided by the replication factor).','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','1d7c83bbf00149b2a37c1f983d44f403','0','2','0'), ('47761','18','','10640','General: Upgrade progress','nutanix.cluster.general.upgrade.progress','0','31d','365d','0','3','','','','',NULL,'1248','','','0','','','','','0',NULL,'Indicates whether the cluster is currently in an update state.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','252f167e9e7d4db1abcfa9808a0c06d9','0','2','0'), ('47762','18','','10640','General: Version','nutanix.cluster.general.upgrade.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Current software version in the cluster.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','400a5d3e0f1c47cd881c1dfe04b65948','0','2','0'), ('47763','18','','10640','Hypervisor: CPU usage, %','nutanix.cluster.hypervisor.cpu.usage.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of CPU used by the Hypervisor.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','4f03001a7caa42d29cc2213137fbbb16','0','2','0'), ('47764','18','','10640','Hypervisor: IO','nutanix.cluster.hypervisor.io','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of Input/Output operations from the Hypervisor.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','a5338864811a4e5795ead521cbcf875e','0','2','0'), ('47765','18','','10640','Hypervisor: IO, bandwidth','nutanix.cluster.hypervisor.io.bandwidth','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Data transferred in B/sec from the Hypervisor.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','1f56c2405992402e8897cde88f36284e','0','2','0'), ('47766','18','','10640','Hypervisor: IO, latency','nutanix.cluster.hypervisor.io.latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output operation latency from the Hypervisor.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','f4a46c9187584d88a256eb364884303f','0','2','0'), ('47767','18','','10640','Hypervisor: Read IO','nutanix.cluster.hypervisor.io.read','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of Input/Output read operations from the Hypervisor.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','58fe88d634a045f0ba0259ea2e55e757','0','2','0'), ('47768','18','','10640','Hypervisor: Read IO, bandwidth','nutanix.cluster.hypervisor.io.read.bandwidth','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Read data transferred in B/sec from the Hypervisor.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','cbf141d09f7347b2b3fdb16ccd6e172c','0','2','0'), ('47769','18','','10640','Hypervisor: Read IO, latency','nutanix.cluster.hypervisor.io.read.latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output read latency from the Hypervisor.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','8e163e2751cb43a098a0cbfb6405c1d3','0','2','0'), ('47770','18','','10640','Hypervisor: IO total read, bytes','nutanix.cluster.hypervisor.io.read.total.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total Input/Output read operation size from the Hypervisor.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','7b43893117524aaf823baafa3dd42e0a','0','2','0'), ('47771','18','','10640','Hypervisor: IO total read, sec','nutanix.cluster.hypervisor.io.read.total.sec','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Total Input/Output read operation time from the Hypervisor.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','e60bc882d8024ca59b9b6719be60fb65','0','2','0'), ('47772','18','','10640','Hypervisor: IO total, bytes','nutanix.cluster.hypervisor.io.total.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total Input/Output operation size from the Hypervisor.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','91517ef954de4a0892bac9091b0ac09a','0','2','0'), ('47773','18','','10640','Hypervisor: IO total, sec','nutanix.cluster.hypervisor.io.total.sec','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Total Input/Output operation time from the Hypervisor.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','dcc89d2d7d2e4d0c9c46b369af90b17a','0','2','0'), ('47774','18','','10640','Hypervisor: Write IO','nutanix.cluster.hypervisor.io.write','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output write operations from the Hypervisor.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','ee50c946b2a9490fafc2c25abd7c39e1','0','2','0'), ('47775','18','','10640','Hypervisor: Write IO, bandwidth','nutanix.cluster.hypervisor.io.write.bandwidth','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Write data transferred in B/sec from the Hypervisor.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','13a6557f9bce4e5094d35537da7c48a7','0','2','0'), ('47776','18','','10640','Hypervisor: Write IO, latency','nutanix.cluster.hypervisor.io.write.latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output write latency from the Hypervisor.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','a161c827020740e28edf2c223f1c498b','0','2','0'), ('47777','18','','10640','Hypervisor: IOPS','nutanix.cluster.hypervisor.iops','0','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output operations per second from the Hypervisor.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','e51fd2cd48a441d1a5699581ccab53fb','0','2','0'), ('47778','18','','10640','Hypervisor: Read IOPS','nutanix.cluster.hypervisor.iops.read','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output read operations per second from the Hypervisor.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','01241090d9f743d9bf8532c950506a2a','0','2','0'), ('47779','18','','10640','Hypervisor: Write IOPS','nutanix.cluster.hypervisor.iops.write','0','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output write operations per second from the Hypervisor.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','c85d41ca89f2438fb9b4c06da9ae0bc7','0','2','0'), ('47780','18','','10640','Hypervisor: Memory usage, %','nutanix.cluster.hypervisor.memory.usage.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of memory used by the Hypervisor.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','6c7717cbf8f44c0dbc69f6b4bd845d65','0','2','0'), ('47781','18','','10640','Hypervisor: Timespan, sec','nutanix.cluster.hypervisor.timespan.sec','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Hypervisor timespan.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','41f4cfc6eb7746799e4bb05306527995','0','2','0'), ('47782','18','','10640','Get metric check','nutanix.cluster.metric.get.check','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data collection check. Check the latest values for details.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','e8f1b3e3920b46cfa96ff0602fb30e6b','0','2','0'), ('47783','18','','10640','General: Current redundancy factor','nutanix.cluster.redundancy.factor.current','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Current value of the redundancy factor on the cluster.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','fc9cc5b7999241e4ae0e097826633569','0','2','0'), ('47784','18','','10640','General: Desired redundancy factor','nutanix.cluster.redundancy.factor.desired','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The desired value of the redundancy factor on the cluster.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','df508a0e13a843e492d32ffd36eb99e8','0','2','0'), ('47785','18','','10640','Storage Controller: IO','nutanix.cluster.storage.controller.io','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output operations from the Storage Controller.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','b6c6cc1e1a62485fb5b4a1ea3c0b0c4b','0','2','0'), ('47786','18','','10640','Storage Controller: IO, bandwidth','nutanix.cluster.storage.controller.io.bandwidth','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Data transferred in B/sec from the Storage Controller.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','2146014b3f00416ab56149329ebf1ca3','0','2','0'), ('47787','18','','10640','Storage Controller: IO, latency','nutanix.cluster.storage.controller.io.latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output latency from the Storage Controller.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','6538913d53aa4c0da0b882a42b73faa0','0','2','0'), ('47788','18','','10640','Storage Controller: Read IO','nutanix.cluster.storage.controller.io.read','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output read operations from the Storage Controller.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','315905ef6b2f497294ccf4702ab5aadf','0','2','0'), ('47789','18','','10640','Storage Controller: Read IO, bandwidth','nutanix.cluster.storage.controller.io.read.bandwidth','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Read data transferred in B/sec from the Storage Controller.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','7871d52184994b799f58e180f7dd89a7','0','2','0'), ('47790','18','','10640','Storage Controller: Read IO, bytes','nutanix.cluster.storage.controller.io.read.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Storage controller average read Input/Output in bytes.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','f4709e46e4684dfe95951705a3462e42','0','2','0'), ('47791','18','','10640','Storage Controller: Read IO, latency','nutanix.cluster.storage.controller.io.read.latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output read latency from the Storage Controller.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','57c98e0c2d8c426d91f02320b140a3b0','0','2','0'), ('47792','18','','10640','Storage Controller: Read IO, %','nutanix.cluster.storage.controller.io.read.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of Input/Output operations from the Storage Controller that are reads.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','d57e65a31e8047bd83064913b0f0fc96','0','2','0'), ('47793','18','','10640','Storage Controller: IO total read, bytes','nutanix.cluster.storage.controller.io.read.total.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total controller read Input/Output size.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','dc7f96ef1c814eb6900bd0bb41405c4f','0','2','0'), ('47794','18','','10640','Storage Controller: IO total read, sec','nutanix.cluster.storage.controller.io.read.total.sec','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Total controller read Input/Output time.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','9084bbeefa514342bc6550b20145ae87','0','2','0'), ('47795','18','','10640','Storage Controller: IO total, bytes','nutanix.cluster.storage.controller.io.total.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total controller Input/Output size.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','cb3d76f22bec49959d17f827e1fda1b5','0','2','0'), ('47796','18','','10640','Storage Controller: IO total, sec','nutanix.cluster.storage.controller.io.total.sec','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Total controller Input/Output time.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','a5716932dcc3468f812c77b28f29bf01','0','2','0'), ('47797','18','','10640','Storage Controller: Write IO','nutanix.cluster.storage.controller.io.write','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output write operations to the Storage Controller.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','ecde6b6bd4344b819a39b0d3e2d4e3dc','0','2','0'), ('47798','18','','10640','Storage Controller: Write IO, bandwidth','nutanix.cluster.storage.controller.io.write.bandwidth','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Write data transferred in B/sec to the Storage Controller.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','6d973393007a4851a96f1a2208c99ac0','0','2','0'), ('47799','18','','10640','Storage Controller: Write IO, bytes','nutanix.cluster.storage.controller.io.write.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Storage Controller average write Input/Output in bytes.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','829dfe75c62c4770acd8889d5e0f8f61','0','2','0'), ('47800','18','','10640','Storage Controller: Write IO, latency','nutanix.cluster.storage.controller.io.write.latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output write latency to the Storage Controller.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','a940bb2ff5d549f085997200eb1d09e7','0','2','0'), ('47801','18','','10640','Storage Controller: Write IO, %','nutanix.cluster.storage.controller.io.write.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of Input/Output operations to the Storage Controller that are writes.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','dfda9f9c6f40488e8a47e591a75775de','0','2','0'), ('47802','18','','10640','Storage Controller: IOPS','nutanix.cluster.storage.controller.iops','0','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output operations per second from the Storage Controller.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','b4c5601a57d34fd886a508523f297a49','0','2','0'), ('47803','18','','10640','Storage Controller: Read IOPS','nutanix.cluster.storage.controller.iops.read','0','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output read operations per second from the Storage Controller.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','f963f424f6644d46b109293108a011b2','0','2','0'), ('47804','18','','10640','Storage Controller: Write IOPS','nutanix.cluster.storage.controller.iops.write','0','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output write operations per second to the Storage Controller.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','298dee7b25e044edb4657855b0ec3ae7','0','2','0'), ('47805','18','','10640','Storage Tier: Das-sata capacity, bytes','nutanix.cluster.storage.controller.tier.das_sata.capacity.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total capacity of Das-sata in bytes.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','3d48b9ed84164fabb18db28be446c933','0','2','0'), ('47806','18','','10640','Storage Tier: Das-sata free, bytes','nutanix.cluster.storage.controller.tier.das_sata.free.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The free space of Das-sata in bytes.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','b3b933a4a7284d788095f2f98700a75a','0','2','0'), ('47807','18','','10640','Storage Tier: Das-sata usage, bytes','nutanix.cluster.storage.controller.tier.das_sata.usage.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The used space of Das-sata in bytes.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','81e208fb9c4949919091c18325557fd9','0','2','0'), ('47808','18','','10640','Storage Tier: SSD capacity, bytes','nutanix.cluster.storage.controller.tier.ssd.capacity.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total capacity of SSD in bytes.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','95c826ea031b462ea1e1ae79e3f4966d','0','2','0'), ('47809','18','','10640','Storage Tier: SSD free, bytes','nutanix.cluster.storage.controller.tier.ssd.free.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The free space of SSD in bytes.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','a17766d845a1410b9b4fe20044d79217','0','2','0'), ('47810','18','','10640','Storage Tier: SSD usage, bytes','nutanix.cluster.storage.controller.tier.ssd.usage.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The used space of SSD in bytes.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','9a10e8850e5f419d8e600757598435bf','0','2','0'), ('47811','18','','10640','Storage Controller: Timespan, sec','nutanix.cluster.storage.controller.timespan.sec','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Controller timespan.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','1d4367a1f30a46818871cd4a105c73dc','0','2','0'), ('47812','18','','10640','Storage Controller: Total transformed usage, bytes','nutanix.cluster.storage.controller.transformed.usage.total.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Actual usage of the Storage Controller.','0','7d','0','','47710','','','','','200','1','0','','','0','0','0','0','0','0','0','eb510c9fa96947b9a3d83ce6ab87d217','0','2','0'), ('47813','18','','10641','Get alert check','nutanix.host.alert.get.check','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data collection check. Check the latest values for details.','0','7d','0','','47711','','','','','200','1','0','','','0','0','0','0','0','0','0','fe2d1588c8df4d0e83bf35029a8c0811','0','2','0'), ('47814','18','','10641','Content Cache: References','nutanix.host.content.cache.dedup.ref.num','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Average number of content cache references.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','6b23ddc5bc4149cbbef4feb729ddd7d2','0','2','0'), ('47815','18','','10641','Content Cache: Hit rate, %','nutanix.host.content.cache.hit.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Content cache hits over all lookups.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','f350acf8979145aca8bff3c26454e2b9','0','2','0'), ('47816','18','','10641','Content Cache: Logical memory usage, bytes','nutanix.host.content.cache.logical.memory.usage.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Logical memory used to cache data without deduplication in bytes.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','669e026614974b378306a4ce65b67ffb','0','2','0'), ('47817','18','','10641','Content Cache: Logical SSD usage, bytes','nutanix.host.content.cache.logical.ssd.usage.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Logical SSD memory used to cache data without deduplication in bytes.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','7d8e81cd62d6458a99db1d7aad0f229d','0','2','0'), ('47818','18','','10641','Content Cache: Number of lookups','nutanix.host.content.cache.lookups.num','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of lookups on the content cache.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','8589d38473b04d06a3a7f58dc2513560','0','2','0'), ('47819','18','','10641','Content Cache: Physical memory usage, bytes','nutanix.host.content.cache.physical.memory.usage.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Real memory used to cache data via the content cache in bytes.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','36d0c74bfc3040a68516276e5ce763ac','0','2','0'), ('47820','18','','10641','Content Cache: Physical SSD usage, bytes','nutanix.host.content.cache.physical.ssd.usage.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Real SSD usage used to cache data via the content cache in bytes.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','bc4d165f550f4921ab6b2a622b3c1973','0','2','0'), ('47821','18','','10641','Content Cache: Logical saved memory usage, bytes','nutanix.host.content.cache.saved.memory.usage.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Memory saved due to content cache deduplication in bytes.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','397007975419415eb70ffe0276cff446','0','2','0'), ('47822','18','','10641','Content Cache: Saved SSD usage, bytes','nutanix.host.content.cache.saved.ssd.usage.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'SSD usage saved due to content cache deduplication in bytes.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','7e25d096fc094f0987d4009efe2074ec','0','2','0'), ('47823','18','','10641','Controller: Random IO','nutanix.host.controller.io.random','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of random Input/Output operations from the controller.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','634b72675f5346079d4f3c962a3316b9','0','2','0'), ('47824','18','','10641','Controller: Random IO, %','nutanix.host.controller.io.random.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of random Input/Output from the controller.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','d51746d0f49a4631930f7200543254dd','0','2','0'), ('47825','18','','10641','Controller: Sequence IO','nutanix.host.controller.io.sequence','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of sequential Input/Output operations from the controller.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','4df61338cb7e4044b029187665103b3e','0','2','0'), ('47826','18','','10641','Controller: Sequence IO, %','nutanix.host.controller.io.sequence.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of sequential Input/Output from the controller.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','946f9ef792c547edb275c7ad08532278','0','2','0'), ('47827','18','','10641','Get disk check','nutanix.host.disk.get.check','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data collection check. Check the latest values for details.','0','7d','0','','47712','','','','','200','1','0','','','0','0','0','0','0','0','0','28d0f61d06f24eb39af718e213c68d87','0','2','0'), ('47828','18','','10641','General: Boot time','nutanix.host.general.boot.time','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'The last host boot time.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','0931721d1a3943649344315e2de7f39f','0','2','0'), ('47829','18','','10641','General: Total CPU capacity','nutanix.host.general.cpu.capacity.hz','0','31d','365d','0','0','','Hz','','',NULL,NULL,'','','0','','','','','0',NULL,'Total host CPU capacity in Hz.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','15b33f72661e4d5180460966d11a71d0','0','2','0'), ('47830','18','','10641','General: CPU frequency','nutanix.host.general.cpu.frequency','0','31d','365d','0','0','','Hz','','',NULL,NULL,'','','0','','','','','0',NULL,'The processor frequency.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','7d17333b18c94a37a34b5390969f2832','0','2','0'), ('47831','18','','10641','General: CPU model','nutanix.host.general.cpu.model','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The processor model.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','c2c0f753b64f43aabd199fd4b3bf4182','0','2','0'), ('47832','18','','10641','General: Degrade status','nutanix.host.general.degraded','0','31d','365d','0','3','','','','',NULL,'1253','','','0','','','','','0',NULL,'Indicates whether the host is in a degraded state. One of the following: - Normal; - Degraded; - Unknown.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','a7d620e525264ccfa790f6b4f46591f1','0','2','0'), ('47833','18','','10641','General: IO','nutanix.host.general.io','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of Input/Output operations from the disk.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','4b4eb846e4de4461a02d1d24fbcadef1','0','2','0'), ('47834','18','','10641','General: IO, bandwidth','nutanix.host.general.io.bandwidth','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Data transferred in B/sec from the disk.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','e0ab22c1d8aa49dc9625ba4876e6a7c2','0','2','0'), ('47835','18','','10641','General: IO, latency','nutanix.host.general.io.latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output latency from the disk.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','4094ad4a8d3a4e0a818fadc78f612f54','0','2','0'), ('47836','18','','10641','General: Random IO','nutanix.host.general.io.random','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of random Input/Output operations.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','80245fcfc1554a178d1a636c9356da77','0','2','0'), ('47837','18','','10641','General: Random IO, %','nutanix.host.general.io.random.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of random Input/Output.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','fcbabfd55e37442b85913f7efdabab91','0','2','0'), ('47838','18','','10641','General: Read IO','nutanix.host.general.io.read','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output read operations from the disk.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','9f57e588e1e94101aadfbf1cdd42f45b','0','2','0'), ('47839','18','','10641','General: Read IO, bandwidth','nutanix.host.general.io.read.bandwidth','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Read data transferred in B/sec from the disk.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','98f8336a92cb4096b5edddf190bacab2','0','2','0'), ('47840','18','','10641','General: Read IO, latency','nutanix.host.general.io.read.latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Average Input/Output read latency.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','bd84805286354e94b5f36a469c4840ae','0','2','0'), ('47841','18','','10641','General: Read IO, %','nutanix.host.general.io.read.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The total percentage of Input/Output operations that are reads.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','b3e69532f2064ffba9282f3006b2b995','0','2','0'), ('47842','18','','10641','General: IO total read, bytes','nutanix.host.general.io.read.total.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total size of Input/Output read operations.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','9ff70ba2c78145b7a34d6d1c01a0305f','0','2','0'), ('47843','18','','10641','General: IO total read, sec','nutanix.host.general.io.read.total.sec','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Total time of Input/Output read operations.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','68e37c5e0ecf4d32bb9d8bff4fbc860d','0','2','0'), ('47844','18','','10641','General: Sequence IO','nutanix.host.general.io.sequence','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of sequential Input/Output operations.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','1685e6e8655d4b438d9a62057413360b','0','2','0'), ('47845','18','','10641','General: Sequence IO, %','nutanix.host.general.io.sequence.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of sequential Input/Output.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','67c05bbcbe564fe894d4f0c630b0df36','0','2','0'), ('47846','18','','10641','General: IO total, bytes','nutanix.host.general.io.total.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total size of Input/Output operations.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','6b2b1a101c284ccca77001c24296913b','0','2','0'), ('47847','18','','10641','General: IO total, sec','nutanix.host.general.io.total.sec','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Total time of Input/Output operations.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','31ec053fb9074612aec2f390c3297922','0','2','0'), ('47848','18','','10641','General: Write IO','nutanix.host.general.io.write','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of Input/Output write operations.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','6a84248e84474c7fb5f43f002d5c8184','0','2','0'), ('47849','18','','10641','General: Write IO, bandwidth','nutanix.host.general.io.write.bandwidth','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Write data transferred in B/sec from the disk.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','01da29a48ad844dda87220bdf51fc49b','0','2','0'), ('47850','18','','10641','General: Write IO, latency','nutanix.host.general.io.write.latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Average Input/Output write operation latency.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','dfa5a832da96436ab36adb2ce5c427a7','0','2','0'), ('47851','18','','10641','General: Write IO, %','nutanix.host.general.io.write.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Total percentage of Input/Output operations that are writes.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','1b46f733b32b401f820817ce10923f7c','0','2','0'), ('47852','18','','10641','General: IOPS','nutanix.host.general.iops','0','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output operations per second from the disk.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','d8760935333d464993158e756b5dc242','0','2','0'), ('47853','18','','10641','General: Read IOPS','nutanix.host.general.iops.read','0','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of Input/Output read operations per second.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','fd34deb2093943c6b4f4ce5494e66b97','0','2','0'), ('47854','18','','10641','General: Write IOPS','nutanix.host.general.iops.write','0','31d','365d','0','0','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of Input/Output operations write per second.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','2be54532725d4286b0f2f5427fa77087','0','2','0'), ('47855','18','','10641','General: Maintenance mode','nutanix.host.general.maintenance','0','31d','365d','0','3','','','','',NULL,'1257','','','0','','','','','0',NULL,'Indicates whether the host is in maintenance mode. One of the following: - Normal; - Maintenance; - Unknown.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','fa448c5009ca461baf2973f6c3c65a72','0','2','0'), ('47856','18','','10641','General: Total memory, bytes','nutanix.host.general.memory.total.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total host memory in bytes.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','19f7001acc8e45c49b6d5734322ee05d','0','2','0'), ('47857','18','','10641','General: Reboot pending','nutanix.host.general.reboot','0','31d','365d','0','3','','','','',NULL,'1252','','','0','','','','','0',NULL,'Indicates whether the host is pending to reboot.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','e67d32de7523428d959c29a653a0647b','0','2','0'), ('47858','18','','10641','General: Host state','nutanix.host.general.state','0','31d','365d','0','3','','','','',NULL,'1255','','','0','','','','','0',NULL,'Displays the host state. One of the following: - NEW; - NORMAL; - MARKED_FOR_REMOVAL_BUT_NOT_DETACHABLE; - DETACHABLE.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','eee1f5f4f68a44ea8cfbb409370b0f80','0','2','0'), ('47859','18','','10641','General: Storage capacity, bytes','nutanix.host.general.storage.capacity.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total size of the datastores used by this system in bytes.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','2e52146c43cd46cba3ad350528e5c277','0','2','0'), ('47860','18','','10641','General: Storage free, bytes','nutanix.host.general.storage.free.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total free space of all the datastores used by this system in bytes.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','7917e0babb4b433da73a3d8f5a872bd1','0','2','0'), ('47861','18','','10641','General: Storage logical usage, bytes','nutanix.host.general.storage.logical.usage.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total logical used space by the datastores of this system in bytes.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','51be63c3691049a683be08546387ab7a','0','2','0'), ('47862','18','','10641','General: Storage usage, bytes','nutanix.host.general.storage.usage.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total physical datastore space used by this host and all its snapshots on the datastores.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','ca11026b4f3e411588eea1eab0c8c299','0','2','0'), ('47863','18','','10641','General: Timespan, sec','nutanix.host.general.timespan.sec','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Host timespan.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','c603fce582d64d5abe2f5863640c9f58','0','2','0'), ('47864','18','','10641','General: Total transformed usage, bytes','nutanix.host.general.transformed.usage.total.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Actual usage of storage.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','229e67e4300143a5b1ff1f5e0738785f','0','2','0'), ('47865','18','','10641','General: Host type','nutanix.host.general.type','0','31d','365d','0','3','','','','',NULL,'1256','','','0','','','','','0',NULL,'Displays the host type. One of the following: - HYPER_CONVERGED; - COMPUTE_ONLY.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','653f6d1b6e2d47e3a3c44406b7d6de11','0','2','0'), ('47866','18','','10641','General: Total untransformed usage, bytes','nutanix.host.general.untransformed.usage.total.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Logical usage of storage (physical usage divided by the replication factor).','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','b46931e9874342bb9071170235db1523','0','2','0'), ('47867','18','','10641','General: Number of virtual machines','nutanix.host.general.vms.num','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of virtual machines running on this host.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','044d58d7c3394f6fa62dd6390218f5ea','0','2','0'), ('47868','18','','10641','Hypervisor: Number of CPU cores','nutanix.host.hypervisor.cpu.cores.num','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of CPU cores.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','52aa85553198433298dbbac196ebf66a','0','2','0'), ('47869','18','','10641','Hypervisor: Number of CPU sockets','nutanix.host.hypervisor.cpu.sockets.num','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of CPU sockets.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','fc3b3850f7c4440cb9ff50194204e68f','0','2','0'), ('47870','18','','10641','Hypervisor: Number of CPU threads','nutanix.host.hypervisor.cpu.threads.num','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of CPU threads.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','674aff8c3c764f1aa9571789f3c8d938','0','2','0'), ('47871','18','','10641','Hypervisor: CPU usage, %','nutanix.host.hypervisor.cpu.usage.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of CPU used by the Hypervisor.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','a7153c897dd64d0a9b523401380d5074','0','2','0'), ('47872','18','','10641','Hypervisor: IO','nutanix.host.hypervisor.io','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of Input/Output operations from the Hypervisor.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','9b943b7fbdb14ea88a755c048dbcd42d','0','2','0'), ('47873','18','','10641','Hypervisor: IO, bandwidth','nutanix.host.hypervisor.io.bandwidth','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Data transferred in B/sec from the Hypervisor.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','d3c5c2f3aac9497c82db53b22fef99bc','0','2','0'), ('47874','18','','10641','Hypervisor: IO, latency','nutanix.host.hypervisor.io.latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output operation latency from the Hypervisor.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','fdc056be2fa34e84aa801e0dd1c27f2c','0','2','0'), ('47875','18','','10641','Hypervisor: Read IO','nutanix.host.hypervisor.io.read','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output read operations per second from the Hypervisor.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','34b8a6a9dff44c858cff7762f8f6f129','0','2','0'), ('47876','18','','10641','Hypervisor: Read IO, bandwidth','nutanix.host.hypervisor.io.read.bandwidth','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Read data transferred in B/sec from the Hypervisor.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','3ab152f1c0534e90b9c84ed56e8f6522','0','2','0'), ('47877','18','','10641','Hypervisor: Read IO, latency','nutanix.host.hypervisor.io.read.latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output read latency from the Hypervisor.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','d8a7b7a2090a4b81947c2b0043b15460','0','2','0'), ('47878','18','','10641','Hypervisor: IO total read, bytes','nutanix.host.hypervisor.io.read.total.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total size of Input/Output read operations from the Hypervisor.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','7d8e8c00ced846a4b214123a5c11b6ba','0','2','0'), ('47879','18','','10641','Hypervisor: IO total read, sec','nutanix.host.hypervisor.io.read.total.sec','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Total time of Input/Output read operations from the Hypervisor.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','7cc44b50da26404a8a95a94f9640e259','0','2','0'), ('47880','18','','10641','Hypervisor: IO total, bytes','nutanix.host.hypervisor.io.total.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total Input/Output operation size from the Hypervisor.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','4f2081e28140438d94103dd709f45d9a','0','2','0'), ('47881','18','','10641','Hypervisor: IO total, sec','nutanix.host.hypervisor.io.total.sec','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Total Input/Output operation time from the Hypervisor.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','08a7564943fd4d608b5b57299ca52956','0','2','0'), ('47882','18','','10641','Hypervisor: Write IO','nutanix.host.hypervisor.io.write','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output write operations from the Hypervisor.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','6678f0f027274409b44a879e22bc2255','0','2','0'), ('47883','18','','10641','Hypervisor: Write IO, bandwidth','nutanix.host.hypervisor.io.write.bandwidth','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Write data transferred in B/sec from the Hypervisor.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','80514bb25ca54a789da233349b98d4bc','0','2','0'), ('47884','18','','10641','Hypervisor: Write IO, latency','nutanix.host.hypervisor.io.write.latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output write latency from the Hypervisor.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','113e7fbd52e64d628275a2246f9b1572','0','2','0'), ('47885','18','','10641','Hypervisor: IOPS','nutanix.host.hypervisor.iops','0','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output operations per second from the Hypervisor.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','5bffd28af1c64bff97e923551621bc75','0','2','0'), ('47886','18','','10641','Hypervisor: Read IOPS','nutanix.host.hypervisor.iops.read','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of Input/Output read operations from the Hypervisor.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','b60f8c87b1484087835e1157895a9230','0','2','0'), ('47887','18','','10641','Hypervisor: Write IOPS','nutanix.host.hypervisor.iops.write','0','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output write operations per second from the Hypervisor.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','0dc0d5c57c4044cb8a60b0f145960cde','0','2','0'), ('47888','18','','10641','Hypervisor: Memory usage, %','nutanix.host.hypervisor.memory.usage.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of memory used by the Hypervisor.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','6cea713941644a389591598d0a17ab9a','0','2','0'), ('47889','18','','10641','Hypervisor: Full name','nutanix.host.hypervisor.name','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Full name of the Hypervisor running on the host.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','3e8cb0f5766b4e8cb392ed652da8c19a','0','2','0'), ('47890','18','','10641','Hypervisor: Received, bytes','nutanix.host.hypervisor.received.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Bytes received over the network reported by the Hypervisor.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','083f7f4c56fa4e10bf90341d59cfc571','0','2','0'), ('47891','18','','10641','Hypervisor: Timespan, sec','nutanix.host.hypervisor.timespan.sec','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Hypervisor timespan.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','d99a423ebf124816ba85a2493500004c','0','2','0'), ('47892','18','','10641','Hypervisor: Transmitted, bytes','nutanix.host.hypervisor.transmitted.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Bytes transmitted over the network reported by the Hypervisor.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','7aeaafc3ac174692ad9b65ee1afc54f0','0','2','0'), ('47893','18','','10641','Get metric check','nutanix.host.metric.get.check','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data collection check. Check the latest values for details.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','762928864e674745820593499facb776','0','2','0'), ('47894','18','','10641','Storage Controller: IO','nutanix.host.storage.controller.io','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output operations from the Storage Controller.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','9d0f46350adc468ca4160b7a7e7e85a6','0','2','0'), ('47895','18','','10641','Storage Controller: IO, bandwidth','nutanix.host.storage.controller.io.bandwidth','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Data transferred in B/sec from the Storage Controller.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','f927375ff1394485922c56df0146d17b','0','2','0'), ('47896','18','','10641','Storage Controller: IO, latency','nutanix.host.storage.controller.io.latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output latency from the Storage Controller.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','1c92602ab01b4a43a554bca63bc251ed','0','2','0'), ('47897','18','','10641','Storage Controller: Read IO','nutanix.host.storage.controller.io.read','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output read operations from the Storage Controller.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','2811d78caec14a3fbec0e75983399677','0','2','0'), ('47898','18','','10641','Storage Controller: Read IO, bandwidth','nutanix.host.storage.controller.io.read.bandwidth','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Read data transferred in B/sec from the Storage Controller.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','7f10496163da4c13a638c99ced62384d','0','2','0'), ('47899','18','','10641','Storage Controller: Read IO, bytes','nutanix.host.storage.controller.io.read.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Storage Controller average read Input/Output in bytes.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','52f5ed73efa74dc8aaa308a1120b3c1d','0','2','0'), ('47900','18','','10641','Storage Controller: Read IO, latency','nutanix.host.storage.controller.io.read.latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output read latency from the Storage Controller.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','ed5f0d67b7814aab8233693a60432726','0','2','0'), ('47901','18','','10641','Storage Controller: Read IO, %','nutanix.host.storage.controller.io.read.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of Input/Output operations from the Storage Controller that are reads.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','1f5ddc62861f44c6bd3de302805b490d','0','2','0'), ('47902','18','','10641','Storage Controller: IO total read, bytes','nutanix.host.storage.controller.io.read.total.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total controller read Input/Output size.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','7266e0a734b94612b77da9173f247391','0','2','0'), ('47903','18','','10641','Storage Controller: IO total read, sec','nutanix.host.storage.controller.io.read.total.sec','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Total controller read Input/Output time.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','d49ffc420dee4731bf28f9835bb8e46d','0','2','0'), ('47904','18','','10641','Storage Controller: IO total, bytes','nutanix.host.storage.controller.io.total.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total controller Input/Output size.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','c9e37cc8765d4492ae579029fddfe9a6','0','2','0'), ('47905','18','','10641','Storage Controller: IO total, sec','nutanix.host.storage.controller.io.total.sec','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Total controller Input/Output time.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','df7e8de51d1e4c309ace840439dc944e','0','2','0'), ('47906','18','','10641','Storage Controller: Write IO','nutanix.host.storage.controller.io.write','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output write operations to the Storage Controller.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','b7b1af82edeb4852a3febd9d29404e16','0','2','0'), ('47907','18','','10641','Storage Controller: Write IO, bandwidth','nutanix.host.storage.controller.io.write.bandwidth','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Write data transferred in B/sec to the Storage Controller.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','9378ffd9966d4980897022b2017ab63b','0','2','0'), ('47908','18','','10641','Storage Controller: Write IO, bytes','nutanix.host.storage.controller.io.write.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Storage Controller average write Input/Output in bytes.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','967bf0b92cf54179be5c9686fb83f7b3','0','2','0'), ('47909','18','','10641','Storage Controller: Write IO, latency','nutanix.host.storage.controller.io.write.latency','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output write latency to the Storage Controller.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','3e8f8771f1e8406eb181caa86dbed38d','0','2','0'), ('47910','18','','10641','Storage Controller: Write IO, %','nutanix.host.storage.controller.io.write.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of Input/Output operations to the Storage Controller that are writes.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','6f3462bba55c4570b1ad7a5d614f567c','0','2','0'), ('47911','18','','10641','Storage Controller: IOPS','nutanix.host.storage.controller.iops','0','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output operations per second from the Storage Controller.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','34174b3fb45e41af9aa75d0ba3b115ff','0','2','0'), ('47912','18','','10641','Storage Controller: Read IOPS','nutanix.host.storage.controller.iops.read','0','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output read operations per second from the Storage Controller.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','b7c2fcd576c744c4b51256dfc1f9e83d','0','2','0'), ('47913','18','','10641','Storage Controller: Write IOPS','nutanix.host.storage.controller.iops.write','0','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','0',NULL,'Input/Output write operations per second to the Storage Controller.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','7c8b93d01f0a4078837a00760de1d49c','0','2','0'), ('47914','18','','10641','Storage Tier: Das-sata capacity, bytes','nutanix.host.storage.controller.tier.das_sata.capacity.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total capacity of Das-sata in bytes.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','476b129cba244a5b8bb96ccc78de397d','0','2','0'), ('47915','18','','10641','Storage Tier: Das-sata free, bytes','nutanix.host.storage.controller.tier.das_sata.free.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The free space of Das-sata in bytes.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','eb23e35b137241f5a9b7142957aec07c','0','2','0'), ('47916','18','','10641','Storage Tier: Das-sata usage, bytes','nutanix.host.storage.controller.tier.das_sata.usage.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The used space of Das-sata in bytes.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','05273aaa28c74743b1bd57a528f575b6','0','2','0'), ('47917','18','','10641','Storage Tier: SSD capacity, bytes','nutanix.host.storage.controller.tier.ssd.capacity.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total capacity of SSD in bytes.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','92a3a023365848a988be29f5ad8e3bfe','0','2','0'), ('47918','18','','10641','Storage Tier: SSD free, bytes','nutanix.host.storage.controller.tier.ssd.free.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The free space of SSD in bytes.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','f4bd200a2cae4cc898718d138a57083a','0','2','0'), ('47919','18','','10641','Storage Tier: SSD usage, bytes','nutanix.host.storage.controller.tier.ssd.usage.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The used space of SSD in bytes.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','6cb0e31dcefd4354908feba5396b3959','0','2','0'), ('47920','18','','10641','Storage Controller: Timespan, sec','nutanix.host.storage.controller.timespan.sec','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Controller timespan.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','c290ab59bfe24e00b7b54d35e039d08b','0','2','0'), ('47921','18','','10641','Storage Controller: Total transformed usage, bytes','nutanix.host.storage.controller.transformed.usage.total.bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Actual usage of the Storage Controller.','0','7d','0','','47713','','','','','200','1','0','','','0','0','0','0','0','0','0','85c0a08944454f5d9d60f3124dd834e0','0','2','0'), ('47922','18','','10642','Get cluster check','nutanix.cluster.get.check','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data collection check. Check the latest values for details.','0','7d','0','','47714','','','','','200','1','0','','','0','0','0','0','0','0','0','435f96fef5e44fbaae3d3281a6fd88eb','0','2','0'), ('47923','18','','10642','Get host check','nutanix.host.get.check','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data collection check. Check the latest values for details.','0','7d','0','','47715','','','','','200','1','0','','','0','0','0','0','0','0','0','7fa751ec3908489391aa2403723e2ac1','0','2','0'), ('47924','18','','10642','Get storage container check','nutanix.storage.container.get.check','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data collection check. Check the latest values for details.','0','7d','0','','47716','','','','','200','1','0','','','0','0','0','0','0','0','0','a59d77244200466384ec0b4cad7648db','0','2','0'), ('47925','18','','10640','Alert discovery','nutanix.cluster.alert.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of all alerts. Alerts will be grouped by title. For each alert, in addition to the basic information, the number of activation and last alert ID will be available.','0','7d','1','','47709','','','','','200','1','0','','','0','0','0','0','0','0','0','7990ed903e40431999d75702d83b2cbb','0','2','0'), ('47926','18','','10641','Alert discovery','nutanix.host.alert.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of all alerts. Alerts will be grouped by title. For each alert, in addition to the basic information, the number of activation and last alert ID will be available.','0','7d','1','','47711','','','','','200','1','0','','','0','0','0','0','0','0','0','389dc85322634670a9e2048ac7d378f5','0','2','0'), ('47927','18','','10641','Disk discovery','nutanix.host.disk.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of all disks.','0','7d','0','','47712','','','','','200','1','0','','','0','0','0','0','0','0','0','a3255c6bd1014de0a486aa2b1bb5d047','0','2','0'), ('47928','18','','10642','Cluster discovery','nutanix.cluster.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of all clusters.','0','7d','1','','47714','','','','','200','1','0','','','0','0','0','0','0','0','0','3611bdb3bf0343bc813510e11d32f273','0','2','0'), ('47929','18','','10642','Host discovery','nutanix.host.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of all hosts.','0','7d','1','','47715','','','','','200','1','0','','','0','0','0','0','0','0','0','19cd9a3bc7ac4e42860f3e3b0ab20afe','0','2','0'), ('47930','18','','10642','Storage container discovery','nutanix.storage.container.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of all storage containers.','0','7d','1','','47716','','','','','200','1','0','','','0','0','0','0','0','0','0','7ece7ee4f9d0423b856b6ecd7f616026','0','2','0'), ('47931','18','','10640','Alert [{#ALERT.NAME}]: Count alerts','nutanix.cluster.alert.count["{#ALERT.KEY}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of times this alert was triggered.','0','7d','0','','47709','','','','','200','1','0','','','0','0','0','0','0','0','0','0bc36bd639ed43548a3d223abecfc9aa','0','2','0'), ('47932','18','','10640','Alert [{#ALERT.NAME}]: Create datetime','nutanix.cluster.alert.created["{#ALERT.KEY}"]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'The alert creation date and time.','0','7d','0','','47709','','','','','200','1','0','','','0','0','0','0','0','0','0','eafc52b6bb6741b1b7ac2b55bfcf5150','0','2','0'), ('47933','18','','10640','Alert [{#ALERT.NAME}]: Last alert ID','nutanix.cluster.alert.last_id["{#ALERT.KEY}"]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Latest ID of the alert.','0','7d','0','','47709','','','','','200','1','0','','','0','0','0','0','0','0','0','b5b880f906d24f16a7a6f9eaf301d2f0','0','2','0'), ('47934','18','','10640','Alert [{#ALERT.NAME}]: Detailed message','nutanix.cluster.alert.message["{#ALERT.KEY}"]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Detailed information about the current alert.','0','7d','0','','47709','','','','','200','1','0','','','0','0','0','0','0','0','0','ae18c1bc06ea4a429a753b9c6d989cc0','0','2','0'), ('47935','18','','10640','Alert [{#ALERT.NAME}]: Severity','nutanix.cluster.alert.severity["{#ALERT.KEY}"]','0','31d','365d','0','3','','','','',NULL,'1246','','','0','','','','','2',NULL,'Alert severity. One of the following: - Info; - Warning; - Critical; - Unknown.','0','7d','0','','47709','','','','','200','1','0','','','0','0','0','0','0','0','0','6b72da2095154db1b7561a2bedca8b33','0','2','0'), ('47936','18','','10640','Alert [{#ALERT.NAME}]: State','nutanix.cluster.alert.state["{#ALERT.KEY}"]','0','31d','365d','0','3','','','','',NULL,'1247','','','0','','','','','2',NULL,'Alert state. One of the following: - OK; - Problem.','0','7d','0','','47709','','','','','200','1','0','','','0','0','0','0','0','0','0','269d93010a5c453e9361a15827325743','0','2','0'), ('47937','18','','10640','Alert [{#ALERT.NAME}]: Full title','nutanix.cluster.alert.title["{#ALERT.KEY}"]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The full title of the alert.','0','7d','0','','47709','','','','','200','1','0','','','0','0','0','0','0','0','0','d9c2ca71d1a041af83a1b4e9d1df46f2','0','2','0'), ('47938','18','','10641','Alert [{#ALERT.NAME}]: Count alerts','nutanix.host.alert.count["{#ALERT.KEY}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of times this alert was triggered.','0','7d','0','','47711','','','','','200','1','0','','','0','0','0','0','0','0','0','8fa4a777a3eb4be5a0030193743ee589','0','2','0'), ('47939','18','','10641','Alert [{#ALERT.NAME}]: Create datetime','nutanix.host.alert.created["{#ALERT.KEY}"]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'The alert creation date and time.','0','7d','0','','47711','','','','','200','1','0','','','0','0','0','0','0','0','0','2bcb76c0eafd49738c0fb055ab3c9142','0','2','0'), ('47940','18','','10641','Alert [{#ALERT.NAME}]: Last alert ID','nutanix.host.alert.last_id["{#ALERT.KEY}"]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Latest ID of the alert.','0','7d','0','','47711','','','','','200','1','0','','','0','0','0','0','0','0','0','a489cfb61a3d4eb8a0faf7c8f6abd449','0','2','0'), ('47941','18','','10641','Alert [{#ALERT.NAME}]: Detailed message','nutanix.host.alert.message["{#ALERT.KEY}"]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Detailed information about the current alert.','0','7d','0','','47711','','','','','200','1','0','','','0','0','0','0','0','0','0','4ea82682f355440ba35372e506a5531d','0','2','0'), ('47942','18','','10641','Alert [{#ALERT.NAME}]: Severity','nutanix.host.alert.severity["{#ALERT.KEY}"]','0','31d','365d','0','3','','','','',NULL,'1250','','','0','','','','','2',NULL,'Alert severity. One of the following: - Info; - Warning; - Critical; - Unknown.','0','7d','0','','47711','','','','','200','1','0','','','0','0','0','0','0','0','0','4cb36a2694c04c3caae239752551a963','0','2','0'), ('47943','18','','10641','Alert [{#ALERT.NAME}]: State','nutanix.host.alert.state["{#ALERT.KEY}"]','0','31d','365d','0','3','','','','',NULL,'1251','','','0','','','','','2',NULL,'Alert state. One of the following: - OK; - Problem.','0','7d','0','','47711','','','','','200','1','0','','','0','0','0','0','0','0','0','35c0d10c39f445f0a0d0df07588495b9','0','2','0'), ('47944','18','','10641','Alert [{#ALERT.NAME}]: Full title','nutanix.host.alert.title["{#ALERT.KEY}"]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The full title of the alert.','0','7d','0','','47711','','','','','200','1','0','','','0','0','0','0','0','0','0','80a264a6ce9846fba559bc43a587710e','0','2','0'), ('47945','18','','10641','Disk [{#DISK.SERIAL}]: Space: Total, bytes','nutanix.host.disk.capacity.bytes["{#DISK.SERIAL}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total disk space in bytes.','0','7d','0','','47712','','','','','200','1','0','','','0','0','0','0','0','0','0','660ca0265176460090413cd91a29c821','0','2','0'), ('47946','18','','10641','Disk [{#DISK.SERIAL}]: Space: Free, bytes','nutanix.host.disk.free.bytes["{#DISK.SERIAL}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The free disk space in bytes.','0','7d','0','','47712','','','','','200','1','0','','','0','0','0','0','0','0','0','e7a8aadc572648f38fdcba9eaaa9ef78','0','2','0'), ('47947','18','','10641','Disk [{#DISK.SERIAL}]: IO, latency','nutanix.host.disk.io.avg.latency["{#DISK.SERIAL}"]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The average Input/Output operation latency.','0','7d','0','','47712','','','','','200','1','0','','','0','0','0','0','0','0','0','a28563a3464c4fef8ff05b7683495efd','0','2','0'), ('47948','18','','10641','Disk [{#DISK.SERIAL}]: Bandwidth','nutanix.host.disk.io.bandwidth["{#DISK.SERIAL}"]','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Bandwidth of the disk in B/sec.','0','7d','0','','47712','','','','','200','1','0','','','0','0','0','0','0','0','0','21c81453cc8c44daaa50b1e5f45c1f4b','0','2','0'), ('47949','18','','10641','Disk [{#DISK.SERIAL}]: IOPS','nutanix.host.disk.iops["{#DISK.SERIAL}"]','0','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of Input/Output operations from the disk.','0','7d','0','','47712','','','','','200','1','0','','','0','0','0','0','0','0','0','324f5d2658b34cc3ab4fcc4a6e2008fe','0','2','0'), ('47950','18','','10641','Disk [{#DISK.SERIAL}]: Space: Logical usage, bytes','nutanix.host.disk.logical.usage.bytes["{#DISK.SERIAL}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The logical used disk space in bytes.','0','7d','0','','47712','','','','','200','1','0','','','0','0','0','0','0','0','0','2517600fc093419eab9cc822fa1454a6','0','2','0'), ('47951','18','','10641','Disk [{#DISK.SERIAL}]: Online','nutanix.host.disk.online["{#DISK.SERIAL}"]','0','31d','365d','0','3','','','','',NULL,'1252','','','0','','','','','2',NULL,'Indicates whether the disk is online.','0','7d','0','','47712','','','','','200','1','0','','','0','0','0','0','0','0','0','673be2469f634e4cb992550d6665f0e9','0','2','0'), ('47952','18','','10641','Disk [{#DISK.SERIAL}]: Status','nutanix.host.disk.status["{#DISK.SERIAL}"]','0','31d','365d','0','3','','','','',NULL,'1254','','','0','','','','','2',NULL,'Current disk status. One of the following: - NORMAL; - DATA_MIGRATION_INITIATED; - MARKED_FOR_REMOVAL_BUT_NOT_DETACHABLE; - DETACHABLE.','0','7d','0','','47712','','','','','200','1','0','','','0','0','0','0','0','0','0','d0ecf7b9e9cd4a7687ff9fd8adc8e7e3','0','2','0'), ('47953','18','','10641','Disk [{#DISK.SERIAL}]: Space: Used, bytes','nutanix.host.disk.usage.bytes["{#DISK.SERIAL}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The used disk space in bytes.','0','7d','0','','47712','','','','','200','1','0','','','0','0','0','0','0','0','0','904596dcd2db4721bd923e325b8b889e','0','2','0'), ('47954','18','','10642','Container [{#STORAGE.CONTAINER.NAME}]: Space: Total, bytes','nutanix.storage.container.capacity.bytes["{#STORAGE.CONTAINER.UUID}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total space of the storage container.','0','7d','0','','47716','','','','','200','1','0','','','0','0','0','0','0','0','0','f0a6602489f54d5c8be85bb75ebd3e6f','0','2','0'), ('47955','18','','10642','Container [{#STORAGE.CONTAINER.NAME}]: Space: Free, bytes','nutanix.storage.container.free.bytes["{#STORAGE.CONTAINER.UUID}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The free space of the storage container.','0','7d','0','','47716','','','','','200','1','0','','','0','0','0','0','0','0','0','dac6fb1aa0ee4d93ab67e1bd3374c412','0','2','0'), ('47956','18','','10642','Container [{#STORAGE.CONTAINER.NAME}]: Replication factor','nutanix.storage.container.replication.factor["{#STORAGE.CONTAINER.UUID}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The replication factor of the storage container.','0','7d','0','','47716','','','','','200','1','0','','','0','0','0','0','0','0','0','dc76d8405d204e90bd6213f34344dcb6','0','2','0'), ('47957','18','','10642','Container [{#STORAGE.CONTAINER.NAME}]: Space: Used, bytes','nutanix.storage.container.usage.bytes["{#STORAGE.CONTAINER.UUID}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The used space of the storage container.','0','7d','0','','47716','','','','','200','1','0','','','0','0','0','0','0','0','0','5d40812ff4f14146a5199edf271be1ec','0','2','0'), ('47962','18','','10645','Accepted connections per second','php-fpm.conn_accepted.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of accepted requests per second.','0','7d','0','','47961','','','','','200','1','0','','','0','0','0','0','0','0','0','b7e7fa57f21a440da82f4cecd2ee4354','0','2','0'), ('47963','18','','10645','Listen queue','php-fpm.listen_queue','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of connections that have been initiated but not yet accepted.','0','7d','0','','47961','','','','','200','1','0','','','0','0','0','0','0','0','0','0f340ff9525d4c6ca842defe43bdfcd1','0','2','0'), ('47964','18','','10645','Listen queue, len','php-fpm.listen_queue_len','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The size of the socket queue of pending connections.','0','7d','0','','47961','','','','','200','1','0','','','0','0','0','0','0','0','0','1d49d094424b428595b712a8f9d9debd','0','2','0'), ('47965','18','','10645','Listen queue, max','php-fpm.listen_queue_max','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum number of requests in the queue of pending connections since this FPM pool was started.','0','7d','0','','47961','','','','','200','1','0','','','0','0','0','0','0','0','0','27e0a653944e42f7a83536460e25ddc6','0','2','0'), ('47966','18','','10645','Max children reached','php-fpm.max_children','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of times that `pm.max_children` has been reached since the PHP-FPM pool was started.','0','7d','0','','47961','','','','','200','1','0','','','0','0','0','0','0','0','0','66c7229e59504c5ba2e669e46bf74630','0','2','0'), ('47967','18','','10645','Pool name','php-fpm.name','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The name of the current pool.','0','7d','0','','47961','','','','','200','1','0','','','0','0','0','0','0','0','0','b7d1aa5426ef45ca939e9de82f495008','0','2','0'), ('47968','18','','10645','Ping','php-fpm.ping','0','31d','365d','0','3','','','','',NULL,'1258','','','0','','','','','0',NULL,'','0','7d','0','','47960','','','','','200','1','0','','','0','0','0','0','0','0','0','1385ea3b68944c30b0ce427ead889902','0','2','0'), ('47969','18','','10645','Processes, active','php-fpm.processes_active','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of active processes.','0','7d','0','','47961','','','','','200','1','0','','','0','0','0','0','0','0','0','22535e01c27b498bae7fc1738760a4a3','0','2','0'), ('47970','18','','10645','Processes, idle','php-fpm.processes_idle','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of idle processes.','0','7d','0','','47961','','','','','200','1','0','','','0','0','0','0','0','0','0','ab4d02aafd3241549e2224d287c19962','0','2','0'), ('47971','18','','10645','Processes, max active','php-fpm.processes_max_active','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The highest value of "active processes" since the PHP-FPM server was started.','0','7d','0','','47961','','','','','200','1','0','','','0','0','0','0','0','0','0','057b859639cb4fcc92896cb144b1a709','0','2','0'), ('47972','18','','10645','Processes, total','php-fpm.processes_total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of server processes currently running.','0','7d','0','','47961','','','','','200','1','0','','','0','0','0','0','0','0','0','269355114f664ee5947382f62216ce1a','0','2','0'), ('47973','18','','10645','Process manager','php-fpm.process_manager','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The method used by the process manager to control the number of child processes for this pool.','0','7d','0','','47961','','','','','200','1','0','','','0','0','0','0','0','0','0','7bd25d99f654482f9e86d50546e51aa2','0','2','0'), ('47974','18','','10645','Slow requests','php-fpm.slow_requests','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of requests that has exceeded your `request_slowlog_timeout` value.','0','7d','0','','47961','','','','','200','1','0','','','0','0','0','0','0','0','0','ae81f04c1f9a4f53a09815690d5d43ac','0','2','0'), ('47975','18','','10645','Start time','php-fpm.start_time','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'The time when this pool was started.','0','7d','0','','47961','','','','','200','1','0','','','0','0','0','0','0','0','0','cbd3d52676694f5f807310919511ee51','0','2','0'), ('47976','18','','10645','Uptime','php-fpm.uptime','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'It indicates how long has this pool been running.','0','7d','0','','47961','','','','','200','1','0','','','0','0','0','0','0','0','0','4b730deac04448a68dfdcea90a83c0b4','0','2','0'), ('47977','18','','10645','Version','php-fpm.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current version of the PHP. You can get it from the HTTP-Header "X-Powered-By"; it may not work if you have changed the default HTTP-headers.','0','7d','0','','47960','','','','','200','1','0','','','0','0','0','0','0','0','0','0807e0c9c77f45ff9b39f6c587b33107','0','2','0'), ('47978','18','','10645','PHP-FPM process discovery','php-fpm.proc.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The discovery of the PHP-FPM summary processes.','0','7d','1','','47959','','','','','200','1','0','','','0','0','0','0','0','0','0','57c2c152cf1e4a84863d77bd05289f50','0','2','0'), ('47980','18','','10645','Get process data','php-fpm.proc.get[{#PHP_FPM.NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The summary metrics aggregated by a process `{#PHP_FPM.NAME}`.','0','7d','0','','47959','','','','','200','1','0','','','0','0','0','0','0','0','0','42cac727ddf24220bf93f8b987450694','0','2','0'), ('47985','18','','10517','LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Disk space usage','proxmox.lxc.disk[{#LXC.ID}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Disk space usage.','0','7d','0','','42746','','','','','200','1','0','','','0','0','0','0','0','0','0','3aceb56be70f4b26845aec3ef4765114','0','2','0'), ('47986','18','','10517','LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Disk space total','proxmox.lxc.maxdisk[{#LXC.ID}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total disk space.','0','7d','0','','42746','','','','','200','1','0','','','0','0','0','0','0','0','0','7678ef1622664f98af7d9fe0d7f010db','0','2','0'), ('47993','18','','10646','Aborted clients per second','mysql.aborted_clients.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connections that were aborted because the client died without closing the connection properly.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','2c14889cb9c7426390652828687551a9','0','2','0'), ('47994','18','','10646','Aborted connections per second','mysql.aborted_connects.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of failed attempts to connect to the MySQL server.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','038a2fd010bb45e18217a69c2af1607f','0','2','0'), ('47995','18','','10646','Binlog cache disk use','mysql.binlog_cache_disk_use','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of transactions that used a temporary disk cache because they could not fit in the regular binary log cache, being larger than `binlog_cache_size`.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','ae06d3e7db1d4a8fb85cc65a3dc5e355','0','2','0'), ('47996','18','','10646','Bytes received','mysql.bytes_received.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes received from all clients.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','632dbd84e6844ed397cf1b3ffc107960','0','2','0'), ('47997','18','','10646','Bytes sent','mysql.bytes_sent.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes sent to all clients.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','7ffc513ae6994a1aa5a3ed7f601255df','0','2','0'), ('47998','18','','10646','Command Delete per second','mysql.com_delete.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The `Com_delete` counter variable indicates the number of times the `DELETE` statement has been executed.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','64a7029760b94798a48333c456325059','0','2','0'), ('47999','18','','10646','Command Insert per second','mysql.com_insert.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The `Com_insert` counter variable indicates the number of times the `INSERT` statement has been executed.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','a8c673bc3339494186bf53bf566c6b48','0','2','0'), ('48000','18','','10646','Command Select per second','mysql.com_select.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The `Com_select` counter variable indicates the number of times the `SELECT` statement has been executed.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','5bbebf6e13c0428f89a599f4ff8110bf','0','2','0'), ('48001','18','','10646','Command Update per second','mysql.com_update.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The `Com_update` counter variable indicates the number of times the `UPDATE` statement has been executed.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','c681dee803994e6790a7cee1400be6eb','0','2','0'), ('48002','18','','10646','Connections per second','mysql.connections.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connection attempts (successful or not) to the MySQL server.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','7bad2c745fd44b2e8791ee134febf51f','0','2','0'), ('48003','18','','10646','Connection errors accept per second','mysql.connection_errors_accept.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors that occurred during calls to `accept()` on the listening port.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','79fc34a7b0c0468c9b9848684ce8a91c','0','2','0'), ('48004','18','','10646','Connection errors internal per second','mysql.connection_errors_internal.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of refused connections due to internal server errors, for example, out of memory errors, or failed thread starts.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','7906ad745983463188ed4559d134c144','0','2','0'), ('48005','18','','10646','Connection errors max connections per second','mysql.connection_errors_max_connections.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of refused connections due to the `max_connections` limit being reached.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','0280f2ad4fa84c408540492ef560b626','0','2','0'), ('48006','18','','10646','Connection errors peer address per second','mysql.connection_errors_peer_address.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors while searching for the connecting client''s IP address.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','a5140bb668234a048db647e4463f040c','0','2','0'), ('48007','18','','10646','Connection errors select per second','mysql.connection_errors_select.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors during calls to `select()` or `poll()` on the listening port. The client would not necessarily have been rejected in these cases.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','99dcacb6e1b4443faacd3b1a5330d240','0','2','0'), ('48008','18','','10646','Connection errors tcpwrap per second','mysql.connection_errors_tcpwrap.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connections the libwrap library has refused.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','a6901afc9c0047f18f05e4a2bdbdea4e','0','2','0'), ('48009','18','','10646','Created tmp tables on disk per second','mysql.created_tmp_disk_tables.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of internal on-disk temporary tables created by the server while executing statements.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','59efa8c9e8914cbda8d6e02706ef9972','0','2','0'), ('48010','18','','10646','Created tmp files on disk per second','mysql.created_tmp_files.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'How many temporary files `mysqld` has created.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','f1a3a596911b49a8b8bf6f36dc375c41','0','2','0'), ('48011','18','','10646','Created tmp tables on memory per second','mysql.created_tmp_tables.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of internal temporary tables created by the server while executing statements.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','8d67d3f53b794179a025f0813f766199','0','2','0'), ('48012','18','','10646','InnoDB buffer pool pages free','mysql.innodb_buffer_pool_pages_free','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total size of the InnoDB buffer pool, in pages.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','b0cf7faaf9e940abb7648c712963fc9e','0','2','0'), ('48013','18','','10646','InnoDB buffer pool pages total','mysql.innodb_buffer_pool_pages_total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total size of the InnoDB buffer pool, in pages.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','d1f7a0c2bb584d67b49dc963885d1bbb','0','2','0'), ('48014','18','','10646','InnoDB buffer pool reads','mysql.innodb_buffer_pool_reads','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of logical reads that InnoDB could not satisfy from the buffer pool and had to read directly from the disk.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','96687092654a4d8b9e06e81664d89c12','0','2','0'), ('48015','18','','10646','InnoDB buffer pool reads per second','mysql.innodb_buffer_pool_reads.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of logical reads per second that InnoDB could not satisfy from the buffer pool and had to read directly from the disk.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','fddcc5c8139241c8ba8b950ec4cf6b1c','0','2','0'), ('48016','18','','10646','InnoDB buffer pool read requests','mysql.innodb_buffer_pool_read_requests','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of logical read requests.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','53f1325ca0804cee8c4dff0b0064e54a','0','2','0'), ('48017','18','','10646','InnoDB buffer pool read requests per second','mysql.innodb_buffer_pool_read_requests.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of logical read requests per second.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','946215157bce49e388eede72c9f89c57','0','2','0'), ('48018','18','','10646','Innodb buffer pool wait free','mysql.innodb_buffer_pool_wait_free','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times InnoDB waited for a free page before reading or creating a page. Normally, writes to the InnoDB buffer pool happen in the background. When no clean pages are available, dirty pages are flushed first in order to free some up. This counts the numbers of wait for this operation to finish. If this value is not small, look at the increasing `innodb_buffer_pool_size`.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','f2962ff518834cc69c56f99f4387a6cb','0','2','0'), ('48019','18','','10646','Innodb number open files','mysql.innodb_num_open_files','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of open files held by InnoDB. InnoDB only.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','2f3c759f069c47a5bb7dd20f11d94cd4','0','2','0'), ('48020','18','','10646','Innodb log written','mysql.innodb_os_log_written','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes written to the InnoDB log.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','a94b8d6e84254ac98141a5f173ca5ecc','0','2','0'), ('48021','18','','10646','InnoDB row lock time','mysql.innodb_row_lock_time','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The total time spent in acquiring row locks for InnoDB tables, in milliseconds.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','5b9c6129929b4d20b2f761709b8dc1a5','0','2','0'), ('48022','18','','10646','InnoDB row lock time max','mysql.innodb_row_lock_time_max','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum time to acquire a row lock for InnoDB tables, in milliseconds.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','75ee06905e604bdb94f168fa208dfb66','0','2','0'), ('48023','18','','10646','InnoDB row lock waits','mysql.innodb_row_lock_waits','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times operations on InnoDB tables had to wait for a row lock.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','6c9472c9970641a2b1a6749e0a70b859','0','2','0'), ('48024','18','','10646','Max used connections','mysql.max_used_connections','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum number of connections that have been in use simultaneously since the server start.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','297d5be6f5054d00b91648cfb94ea186','0','2','0'), ('48025','18','','10646','Open tables','mysql.open_tables','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of tables that are open.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','61a666fbb3eb489685c27c94c20c58ae','0','2','0'), ('48026','18','','10646','Open table definitions','mysql.open_table_definitions','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of cached table definitions.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','baf1e71d09aa4f13a5426803406de58d','0','2','0'), ('48027','18','','10646','Queries per second','mysql.queries.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of statements executed by the server. This variable includes statements executed within stored programs, unlike the `Questions` variable.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','4cc293c5b36a430694665f879fea7a21','0','2','0'), ('48028','18','','10646','Questions per second','mysql.questions.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the `Queries` variable.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','218105acd6fd473b958c02adf8329d6a','0','2','0'), ('48029','18','','10646','Slow queries per second','mysql.slow_queries.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of queries that have taken more than `long_query_time` seconds.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','4c9f5e35a2e44265bd75b1268ee1cafb','0','2','0'), ('48030','18','','10646','Threads cached','mysql.threads_cached','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of threads in the thread cache.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','6706352c0746437ab99b9b9b660b931d','0','2','0'), ('48031','18','','10646','Threads connected','mysql.threads_connected','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of currently open connections.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','0fecd4e46e274ceb9aaddb10534cc8ff','0','2','0'), ('48032','18','','10646','Threads created per second','mysql.threads_created.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of threads created to handle connections. If the value of `Threads_created` is large, you may want to increase the `thread_cache_size` value. The cache miss rate can be calculated as `Threads_created`/`Connections`.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','39ebfa8d6dde4ed9a8b53bb166d9b65c','0','2','0'), ('48033','18','','10646','Threads running','mysql.threads_running','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of threads that are not sleeping.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','a02ba173427b47f2a01ee456257db5e4','0','2','0'), ('48034','18','','10646','Uptime','mysql.uptime','0','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of seconds that the server has been up.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','051ba64b0da0464c866f8e0fd84cfe2d','0','2','0'), ('48036','18','','10646','MariaDB discovery','mysql.extra_metric.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for additional metrics if MariaDB is used.','0','7d','0','','47992','','','','','200','1','0','','','0','0','0','0','0','0','0','66b3fda765c64b79b66a1ce97a7d19e8','0','2','0'), ('48040','18','','10646','Binlog commits','mysql.binlog_commits[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of transactions committed to the binary log.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','c0e3223f67014485ad5d56a174568f0b','0','2','0'), ('48041','18','','10646','Binlog group commits','mysql.binlog_group_commits[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of group commits done to the binary log.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','b530d1b7fd7c485ab412358d362aba41','0','2','0'), ('48042','18','','10646','Master GTID wait count','mysql.master_gtid_wait_count[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of times `MASTER_GTID_WAIT` called.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','fd1d44c4dcf14ddda1da4687e2c3e2b6','0','2','0'), ('48043','18','','10646','Master GTID wait timeouts','mysql.master_gtid_wait_timeouts[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of timeouts occurring in `MASTER_GTID_WAIT`.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','de68ab3003db47afa4714548d3dc0ff6','0','2','0'), ('48044','18','','10646','Master GTID wait time','mysql.master_gtid_wait_time[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of time spent in `MASTER_GTID_WAIT`.','0','7d','0','','47989','','','','','200','1','0','','','0','0','0','0','0','0','0','1a2a6de9e9b3482780023b1375368b7d','0','2','0'), ('48045','18','','10646','Replication Seconds Behind Master {#MASTER_HOST}','mysql.replication.seconds_behind_master["{#MASTER_HOST}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of seconds that the slave SQL thread is behind processing the master binary log. A high number (or an increasing one) can indicate that the slave is unable to handle events from the master in a timely fashion.','0','7d','0','','48039','','','','','200','1','0','','','0','0','0','0','0','0','0','f8d25b5c73474a048f7998ec75784b2a','0','2','0'), ('48046','18','','10646','Replication Slave IO Running {#MASTER_HOST}','mysql.replication.slave_io_running["{#MASTER_HOST}"]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Whether the I/O thread for reading the master''s binary log is running. Normally, you want this to be Yes unless you have not yet started a replication or have explicitly stopped it with STOP SLAVE.','0','7d','0','','48039','','','','','200','1','0','','','0','0','0','0','0','0','0','9e0917199e5c4552ab84df0b6f7f590c','0','2','0'), ('48047','18','','10646','Replication Slave SQL Running {#MASTER_HOST}','mysql.replication.slave_sql_running["{#MASTER_HOST}"]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Whether the SQL thread for executing events in the relay log is running. As with the I/O thread, this should normally be Yes.','0','7d','0','','48039','','','','','200','1','0','','','0','0','0','0','0','0','0','438c4e34d77a43398503cf8ed5db034b','0','2','0'), ('48048','18','','10646','Replication Slave SQL Running State {#MASTER_HOST}','mysql.replication.slave_sql_running_state["{#MASTER_HOST}"]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'This shows the state of the SQL driver threads.','0','7d','0','','48039','','','','','200','1','0','','','0','0','0','0','0','0','0','2db5da5c9069492c8a513bcd39e8d6d9','0','2','0'), ('48055','18','','10647','Aborted clients per second','mysql.aborted_clients.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connections that were aborted because the client died without closing the connection properly.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','92637d299d254e83b41df8f9893ecc37','0','2','0'), ('48056','18','','10647','Aborted connections per second','mysql.aborted_connects.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of failed attempts to connect to the MySQL server.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','7ae8f8a1572346d38abe38491f8f5800','0','2','0'), ('48057','18','','10647','Binlog cache disk use','mysql.binlog_cache_disk_use','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of transactions that used a temporary disk cache because they could not fit in the regular binary log cache, being larger than `binlog_cache_size`.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','2265406d17394c4a835d209d53d6c259','0','2','0'), ('48058','18','','10647','Bytes received','mysql.bytes_received.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes received from all clients.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','e22c542460114c7a8877d6a4c56be2f2','0','2','0'), ('48059','18','','10647','Bytes sent','mysql.bytes_sent.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes sent to all clients.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','2b202ebdc9a546eaa794d61418783e8e','0','2','0'), ('48060','18','','10647','Command Delete per second','mysql.com_delete.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The `Com_delete` counter variable indicates the number of times the `DELETE` statement has been executed.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','776e1baca7eb43c693dc8b64552b76b4','0','2','0'), ('48061','18','','10647','Command Insert per second','mysql.com_insert.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The `Com_insert` counter variable indicates the number of times the `INSERT` statement has been executed.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','d8cda6ee6a5340739b65c0fb74986358','0','2','0'), ('48062','18','','10647','Command Select per second','mysql.com_select.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The `Com_select` counter variable indicates the number of times the `SELECT` statement has been executed.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','1782572b896c43bba77872f2d535dd1f','0','2','0'), ('48063','18','','10647','Command Update per second','mysql.com_update.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The `Com_update` counter variable indicates the number of times the `UPDATE` statement has been executed.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','6a53476ac7b548098986dca948ab5395','0','2','0'), ('48064','18','','10647','Connections per second','mysql.connections.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connection attempts (successful or not) to the MySQL server.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','216667bd998a49b2b4edef82e3bdaa8b','0','2','0'), ('48065','18','','10647','Connection errors accept per second','mysql.connection_errors_accept.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors that occurred during calls to `accept()` on the listening port.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','259c94b73afe486284dae1b15998b305','0','2','0'), ('48066','18','','10647','Connection errors internal per second','mysql.connection_errors_internal.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of refused connections due to internal server errors, for example, out of memory errors, or failed thread starts.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','7213544faa5d4f0984646ebc2a596dba','0','2','0'), ('48067','18','','10647','Connection errors max connections per second','mysql.connection_errors_max_connections.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of refused connections due to the `max_connections` limit being reached.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','b6af884a95e34404b4356a6cad0ea838','0','2','0'), ('48068','18','','10647','Connection errors peer address per second','mysql.connection_errors_peer_address.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors while searching for the connecting client''s IP address.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','05e63d8964814d808bfa2833bcdd446e','0','2','0'), ('48069','18','','10647','Connection errors select per second','mysql.connection_errors_select.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors during calls to `select()` or `poll()` on the listening port. The client would not necessarily have been rejected in these cases.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','f43fd1f1c836446bb543b8f04e6ef564','0','2','0'), ('48070','18','','10647','Connection errors tcpwrap per second','mysql.connection_errors_tcpwrap.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connections the libwrap library has refused.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','e1af6725de7e4fb0b3ec97fa1339e099','0','2','0'), ('48071','18','','10647','Created tmp tables on disk per second','mysql.created_tmp_disk_tables.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of internal on-disk temporary tables created by the server while executing statements.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','98f0e26ea13946ab9a1f277d22feece7','0','2','0'), ('48072','18','','10647','Created tmp files on disk per second','mysql.created_tmp_files.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'How many temporary files `mysqld` has created.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','2c330fcdea6b4993997db65ff0127e95','0','2','0'), ('48073','18','','10647','Created tmp tables on memory per second','mysql.created_tmp_tables.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of internal temporary tables created by the server while executing statements.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','e324565c8aef4acba33f1ccc65a1c087','0','2','0'), ('48074','18','','10647','InnoDB buffer pool pages free','mysql.innodb_buffer_pool_pages_free','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total size of the InnoDB buffer pool, in pages.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','5551d764b45c4d33a91701aa8b2b5d4f','0','2','0'), ('48075','18','','10647','InnoDB buffer pool pages total','mysql.innodb_buffer_pool_pages_total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total size of the InnoDB buffer pool, in pages.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','c7b4fc71c5d14e0f802e6a4c97c0a98b','0','2','0'), ('48076','18','','10647','InnoDB buffer pool reads','mysql.innodb_buffer_pool_reads','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of logical reads that InnoDB could not satisfy from the buffer pool and had to read directly from the disk.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','2f05d6a246844924a5e03a615bf20373','0','2','0'), ('48077','18','','10647','InnoDB buffer pool reads per second','mysql.innodb_buffer_pool_reads.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of logical reads per second that InnoDB could not satisfy from the buffer pool and had to read directly from the disk.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','1655258df96645eea062c66bee146292','0','2','0'), ('48078','18','','10647','InnoDB buffer pool read requests','mysql.innodb_buffer_pool_read_requests','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of logical read requests.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','a266591327664cddb056d9dc2e8de2c7','0','2','0'), ('48079','18','','10647','InnoDB buffer pool read requests per second','mysql.innodb_buffer_pool_read_requests.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of logical read requests per second.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','a6b3a633cc0448859ef8b61763ccca1a','0','2','0'), ('48080','18','','10647','Innodb buffer pool wait free','mysql.innodb_buffer_pool_wait_free','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times InnoDB waited for a free page before reading or creating a page. Normally, writes to the InnoDB buffer pool happen in the background. When no clean pages are available, dirty pages are flushed first in order to free some up. This counts the numbers of wait for this operation to finish. If this value is not small, look at the increasing `innodb_buffer_pool_size`.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','ebbeed7d36604713b98677c3fc46a260','0','2','0'), ('48081','18','','10647','Innodb number open files','mysql.innodb_num_open_files','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of open files held by InnoDB. InnoDB only.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','323775cd92a04a2a81aa0f6db16ea103','0','2','0'), ('48082','18','','10647','Innodb log written','mysql.innodb_os_log_written','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes written to the InnoDB log.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','75d8c835dd7340c2ba31063364a412df','0','2','0'), ('48083','18','','10647','InnoDB row lock time','mysql.innodb_row_lock_time','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The total time spent in acquiring row locks for InnoDB tables, in milliseconds.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','23e12a6eff4b4886b8003407c25c11dc','0','2','0'), ('48084','18','','10647','InnoDB row lock time max','mysql.innodb_row_lock_time_max','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum time to acquire a row lock for InnoDB tables, in milliseconds.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','346c72cd57a24762bc9ed8fabba70bde','0','2','0'), ('48085','18','','10647','InnoDB row lock waits','mysql.innodb_row_lock_waits','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times operations on InnoDB tables had to wait for a row lock.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','6b7c9ed85e354d80b30ab34cef539be0','0','2','0'), ('48086','18','','10647','Max used connections','mysql.max_used_connections','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum number of connections that have been in use simultaneously since the server start.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','fb60316605b34ad292e1a01b898aea36','0','2','0'), ('48087','18','','10647','Open tables','mysql.open_tables','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of tables that are open.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','edb4e1bd71f74861a251d227a3338e69','0','2','0'), ('48088','18','','10647','Open table definitions','mysql.open_table_definitions','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of cached table definitions.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','f6d9dae2b21043d18a498add8ca6de41','0','2','0'), ('48089','18','','10647','Queries per second','mysql.queries.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of statements executed by the server. This variable includes statements executed within stored programs, unlike the `Questions` variable.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','a11244940a734fba98f9845316493314','0','2','0'), ('48090','18','','10647','Questions per second','mysql.questions.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the `Queries` variable.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','790f6deb835a45d4af6e38c18566fccb','0','2','0'), ('48091','18','','10647','Slow queries per second','mysql.slow_queries.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of queries that have taken more than `long_query_time` seconds.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','bda290b8a1e940e7a98d23844f37670f','0','2','0'), ('48092','18','','10647','Threads cached','mysql.threads_cached','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of threads in the thread cache.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','358e381b2e014fd2b5746e08157af0e1','0','2','0'), ('48093','18','','10647','Threads connected','mysql.threads_connected','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of currently open connections.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','242dbee07ddd4e16b7866aac62994f22','0','2','0'), ('48094','18','','10647','Threads created per second','mysql.threads_created.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of threads created to handle connections. If the value of `Threads_created` is large, you may want to increase the `thread_cache_size` value. The cache miss rate can be calculated as `Threads_created`/`Connections`.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','d676416897564faa820e753e4e7a1c8c','0','2','0'), ('48095','18','','10647','Threads running','mysql.threads_running','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of threads that are not sleeping.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','be72a43bd41c4f56a1437df12b2ca67e','0','2','0'), ('48096','18','','10647','Uptime','mysql.uptime','0','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of seconds that the server has been up.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','20fc2471bcb44807b1ef7b4e4e3e8f4b','0','2','0'), ('48098','18','','10647','MariaDB discovery','mysql.extra_metric.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for additional metrics if MariaDB is used.','0','7d','0','','48054','','','','','200','1','0','','','0','0','0','0','0','0','0','5aa34129f8f144368e9cc8277ae3e66f','0','2','0'), ('48102','18','','10647','Binlog commits','mysql.binlog_commits[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of transactions committed to the binary log.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','b869afe6691944879e1ba4b3f1277b5c','0','2','0'), ('48103','18','','10647','Binlog group commits','mysql.binlog_group_commits[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of group commits done to the binary log.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','8a0e3e5eee0a4f5a83bde012eeb3c150','0','2','0'), ('48104','18','','10647','Master GTID wait count','mysql.master_gtid_wait_count[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of times `MASTER_GTID_WAIT` called.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','5252fc984cae4a75b4edc8895c8b1fc7','0','2','0'), ('48105','18','','10647','Master GTID wait timeouts','mysql.master_gtid_wait_timeouts[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of timeouts occurring in `MASTER_GTID_WAIT`.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','151fd5b8ac8e4ac7ac21eeb7b285156a','0','2','0'), ('48106','18','','10647','Master GTID wait time','mysql.master_gtid_wait_time[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of time spent in `MASTER_GTID_WAIT`.','0','7d','0','','48051','','','','','200','1','0','','','0','0','0','0','0','0','0','9fd7b98a3594423bb8c697003126eb93','0','2','0'), ('48107','18','','10647','Replication Seconds Behind Master {#MASTER_HOST}','mysql.seconds_behind_master["{#MASTER_HOST}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of seconds that the slave SQL thread is behind processing the master binary log. A high number (or an increasing one) can indicate that the slave is unable to handle events from the master in a timely fashion.','0','7d','0','','48101','','','','','200','1','0','','','0','0','0','0','0','0','0','bdea1669775442779bfafd536b29c26b','0','2','0'), ('48108','18','','10647','Replication Slave IO Running {#MASTER_HOST}','mysql.slave_io_running["{#MASTER_HOST}"]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Whether the I/O thread for reading the master''s binary log is running. Normally, you want this to be Yes unless you have not yet started replication or have explicitly stopped it with STOP SLAVE.','0','7d','0','','48101','','','','','200','1','0','','','0','0','0','0','0','0','0','b024947e0071477c8ce14b3c6a0e4f66','0','2','0'), ('48109','18','','10647','Replication Slave SQL Running {#MASTER_HOST}','mysql.slave_sql_running["{#MASTER_HOST}"]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Whether the SQL thread for executing events in the relay log is running. As with the I/O thread, this should normally be Yes.','0','7d','0','','48101','','','','','200','1','0','','','0','0','0','0','0','0','0','3bf0331407f04af6b2c36892b34af135','0','2','0'), ('48110','18','','10647','Replication Slave SQL Running State {#MASTER_HOST}','mysql.slave_sql_running_state["{#MASTER_HOST}"]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'This shows the state of the SQL driver threads.','0','7d','0','','48101','','','','','200','1','0','','','0','0','0','0','0','0','0','9ac0db816bd7423d8956c05fb8e912d4','0','2','0'), ('48132','18','','10648','Archive: Count of archived files','pgsql.archive.count_archived_files','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of archived files.','0','7d','0','','48111','','','','','200','1','0','','','0','0','0','0','0','0','0','b760f7ff059e40d7ab9d26fe5cc3fa2d','0','2','0'), ('48133','18','','10648','Archive: Count of files in archive_status need to archive','pgsql.archive.count_files_to_archive','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of files to archive.','0','7d','0','','48111','','','','','200','1','0','','','0','0','0','0','0','0','0','8d7aee551783484d9a321a5e7d57c417','0','2','0'), ('48134','18','','10648','Archive: Count of failed attempts to archive files','pgsql.archive.failed_trying_to_archive','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of failed attempts to archive files.','0','7d','0','','48111','','','','','200','1','0','','','0','0','0','0','0','0','0','99ada32d0c2f4241bc81a09b0226b661','0','2','0'), ('48135','18','','10648','Archive: Size of files need to archive','pgsql.archive.size_files_to_archive','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Size of files to archive.','0','7d','0','','48111','','','','','200','1','0','','','0','0','0','0','0','0','0','842a4e56976a4dcbb41b388bfb3798ea','0','2','0'), ('48136','18','','10648','Bgwriter: Buffers allocated per second','pgsql.bgwriter.buffers_alloc.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of buffers allocated per second.','0','7d','0','','48113','','','','','200','1','0','','','0','0','0','0','0','0','0','eadfb41d59a84315a8b3540005fc9138','0','2','0'), ('48137','18','','10648','Bgwriter: Buffers written directly by a backend per second','pgsql.bgwriter.buffers_backend.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of buffers written directly by a backend per second. Available in PostgreSQL versions prior to 17.','0','7d','0','','48113','','','','','200','1','0','','','0','0','0','0','0','0','0','6c1df723638b435a813e144b730bab0a','0','2','0'), ('48138','18','','10648','Bgwriter: Times a backend executed its own fsync per second','pgsql.bgwriter.buffers_backend_fsync.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times a backend had to execute its own fsync call per second (normally the background writer handles those even when the backend does its own write). Available in PostgreSQL versions prior to 17.','0','7d','0','','48113','','','','','200','1','0','','','0','0','0','0','0','0','0','2e0f72740975437d94807cc1ea3a52cd','0','2','0'), ('48139','18','','10648','Checkpoint: Buffers written during checkpoints per second','pgsql.bgwriter.buffers_checkpoint.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of buffers written during checkpoints per second.','0','7d','0','','48113','','','','','200','1','0','','','0','0','0','0','0','0','0','84bffdbacf8449e48a58a15f3363d3b2','0','2','0'), ('48140','18','','10648','Checkpoint: Buffers written by the background writer per second','pgsql.bgwriter.buffers_clean.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of buffers written by the background writer per second.','0','7d','0','','48113','','','','','200','1','0','','','0','0','0','0','0','0','0','98cace696df64de8a5f5106a8c2c52ba','0','2','0'), ('48141','18','','10648','Checkpoint: Requested per second','pgsql.bgwriter.checkpoints_req.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of requested checkpoints that have been performed per second.','0','7d','0','','48113','','','','','200','1','0','','','0','0','0','0','0','0','0','35b2f1af4e1f45d9b729eb09757ce6e4','0','2','0'), ('48142','18','','10648','Checkpoint: Scheduled per second','pgsql.bgwriter.checkpoints_timed.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of scheduled checkpoints that have been performed per second.','0','7d','0','','48113','','','','','200','1','0','','','0','0','0','0','0','0','0','a3d03d5bba4d4bb0a1ed52f684143ca5','0','2','0'), ('48143','18','','10648','Checkpoint: Checkpoint sync time per second','pgsql.bgwriter.checkpoint_sync_time.rate','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Total amount of time per second that has been spent in the portion of checkpoint processing where files are synchronized to disk.','0','7d','0','','48113','','','','','200','1','0','','','0','0','0','0','0','0','0','7ff2d5d51057451fb2089e92444feb84','0','2','0'), ('48144','18','','10648','Checkpoint: Checkpoint write time per second','pgsql.bgwriter.checkpoint_write_time.rate','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Total amount of time per second that has been spent in the portion of checkpoint processing where files are written to disk.','0','7d','0','','48113','','','','','200','1','0','','','0','0','0','0','0','0','0','7217bdae3d72478aae2c2cc1c151f203','0','2','0'), ('48145','18','','10648','Bgwriter: Number of bgwriter cleaning scan stopped per second','pgsql.bgwriter.maxwritten_clean.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times the background writer stopped a cleaning scan because it had written too many buffers per second.','0','7d','0','','48113','','','','','200','1','0','','','0','0','0','0','0','0','0','d0cb711ca251430ab0c1beb5f2617c6d','0','2','0'), ('48146','18','','10648','Connections sum: Active','pgsql.connections.sum.active','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections executing a query.','0','7d','0','','48115','','','','','200','1','0','','','0','0','0','0','0','0','0','20eca5056709454189394db755132cb5','0','2','0'), ('48147','18','','10648','Connections sum: Disabled','pgsql.connections.sum.disabled','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of disabled connections.','0','7d','0','','48115','','','','','200','1','0','','','0','0','0','0','0','0','0','8ff6487a87d049ae95a4465b5c3cf438','0','2','0'), ('48148','18','','10648','Connections sum: Fastpath function call','pgsql.connections.sum.fastpath_function_call','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections executing a fast-path function.','0','7d','0','','48115','','','','','200','1','0','','','0','0','0','0','0','0','0','dde39d43bd8e45e29e6ca2ab28d34499','0','2','0'), ('48149','18','','10648','Connections sum: Idle','pgsql.connections.sum.idle','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections waiting for a new client command.','0','7d','0','','48115','','','','','200','1','0','','','0','0','0','0','0','0','0','4717491488f642f5ad40d93da59793f5','0','2','0'), ('48150','18','','10648','Connections sum: Idle in transaction','pgsql.connections.sum.idle_in_transaction','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections in a transaction state but not executing a query.','0','7d','0','','48115','','','','','200','1','0','','','0','0','0','0','0','0','0','cda45db6de6d4deeb988235f0c7d9376','0','2','0'), ('48151','18','','10648','Connections sum: Idle in transaction (aborted)','pgsql.connections.sum.idle_in_transaction_aborted','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections in a transaction state but not executing a query, and where one of the statements in the transaction caused an error.','0','7d','0','','48115','','','','','200','1','0','','','0','0','0','0','0','0','0','503826ace4f848ada43abc60ff7c1ee2','0','2','0'), ('48152','18','','10648','Connections sum: Prepared','pgsql.connections.sum.prepared','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of prepared transactions: https://www.postgresql.org/docs/current/sql-prepare-transaction.html','0','7d','0','','48115','','','','','200','1','0','','','0','0','0','0','0','0','0','604c4b1fd04249be896c7588bf2c6b23','0','2','0'), ('48153','18','','10648','Connections sum: Total','pgsql.connections.sum.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections.','0','7d','0','','48115','','','','','200','1','0','','','0','0','0','0','0','0','0','d7faa8068a8f4877b77fb5120bbe6d8d','0','2','0'), ('48154','18','','10648','Connections sum: Total, %','pgsql.connections.sum.total_pct','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections, in percentage.','0','7d','0','','48115','','','','','200','1','0','','','0','0','0','0','0','0','0','85b9cf0643fc4cf289f8b0ac364e8879','0','2','0'), ('48155','18','','10648','Connections sum: Waiting','pgsql.connections.sum.waiting','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of waiting connections: https://www.postgresql.org/docs/current/monitoring-stats.html#WAIT-EVENT-TABLE','0','7d','0','','48115','','','','','200','1','0','','','0','0','0','0','0','0','0','2a05cc636fc0432386a5c6c00ac2777b','0','2','0'), ('48156','18','','10648','Dbstat: Hit blocks read per second','pgsql.dbstat.sum.blks_hit.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times per second disk blocks were found already in the buffer cache','0','7d','0','','48117','','','','','200','1','0','','','0','0','0','0','0','0','0','dbdeb7a7fc9f4187b29fb0dae2f2af62','0','2','0'), ('48157','18','','10648','Dbstat: Disk blocks read per second','pgsql.dbstat.sum.blks_read.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of disk blocks read per second.','0','7d','0','','48117','','','','','200','1','0','','','0','0','0','0','0','0','0','136db4803969403ebf2fdb97e1e3b1ec','0','2','0'), ('48158','18','','10648','Dbstat: Blocks read time','pgsql.dbstat.sum.blk_read_time','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time spent reading data file blocks by backends.','0','7d','0','','48117','','','','','200','1','0','','','0','0','0','0','0','0','0','badd110db2c64debb5619819299d7d47','0','2','0'), ('48159','18','','10648','Dbstat: Blocks write time','pgsql.dbstat.sum.blk_write_time','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time spent writing data file blocks by backends.','0','7d','0','','48117','','','','','200','1','0','','','0','0','0','0','0','0','0','310219edd25c45b19ca7ee9e3621331a','0','2','0'), ('48160','18','','10648','Dbstat: Checksum failures per second','pgsql.dbstat.sum.checksum_failures.rate','0','31d','365d','0','0','','','','',NULL,'1261','','','0','','','','','0',NULL,'Number of data page checksum failures per second detected (or on a shared object), or NULL if data checksums are not enabled. This metric is available since PostgreSQL 12.','0','7d','0','','48117','','','','','200','1','0','','','0','0','0','0','0','0','0','f59fe2b665c94405b82bbc523aff1988','0','2','0'), ('48161','18','','10648','Dbstat: Conflicts per second','pgsql.dbstat.sum.conflicts.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of queries canceled per second due to conflicts with recovery (conflicts occur only on standby servers; see pg_stat_database_conflicts for details).','0','7d','0','','48117','','','','','200','1','0','','','0','0','0','0','0','0','0','e53fc92d8d4b4f8690901f4eb736ca8a','0','2','0'), ('48162','18','','10648','Dbstat: Deadlocks per second','pgsql.dbstat.sum.deadlocks.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of deadlocks detected per second.','0','7d','0','','48117','','','','','200','1','0','','','0','0','0','0','0','0','0','5ffee9612e844f15bfb1869f9f139171','0','2','0'), ('48163','18','','10648','Dbstat: Backends connected','pgsql.dbstat.sum.numbackends','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connected backends.','0','7d','0','','48117','','','','','200','1','0','','','0','0','0','0','0','0','0','b7fecc03343045478e54f21a4406e793','0','2','0'), ('48164','18','','10648','Dbstat: Number temp bytes per second','pgsql.dbstat.sum.temp_bytes.rate','0','31d','365d','0','0','','b','','',NULL,NULL,'','','0','','','','','0',NULL,'Total amount of data written per second to temporary files by queries.','0','7d','0','','48117','','','','','200','1','0','','','0','0','0','0','0','0','0','1e95365a6e9c461aa7f09c407ecc7844','0','2','0'), ('48165','18','','10648','Dbstat: Number temp files per second','pgsql.dbstat.sum.temp_files.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of temporary files created by queries per second.','0','7d','0','','48117','','','','','200','1','0','','','0','0','0','0','0','0','0','848bf15ec1c840959c83eba95645a810','0','2','0'), ('48166','18','','10648','Dbstat: Rows deleted per second','pgsql.dbstat.sum.tup_deleted.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of rows deleted by queries per second.','0','7d','0','','48117','','','','','200','1','0','','','0','0','0','0','0','0','0','db78e1e34e154bfca1e3fbc1fd1f0f20','0','2','0'), ('48167','18','','10648','Dbstat: Rows fetched per second','pgsql.dbstat.sum.tup_fetched.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of rows fetched by queries per second.','0','7d','0','','48117','','','','','200','1','0','','','0','0','0','0','0','0','0','3a1d49dd854d442aa0cafbc8025a942c','0','2','0'), ('48168','18','','10648','Dbstat: Rows inserted per second','pgsql.dbstat.sum.tup_inserted.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of rows inserted by queries per second.','0','7d','0','','48117','','','','','200','1','0','','','0','0','0','0','0','0','0','fc3e55d1a7d147049715b064bdf234b0','0','2','0'), ('48169','18','','10648','Dbstat: Rows returned per second','pgsql.dbstat.sum.tup_returned.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of rows returned by queries per second.','0','7d','0','','48117','','','','','200','1','0','','','0','0','0','0','0','0','0','a92bc6f9bbbb4bf5b8289568b89642c8','0','2','0'), ('48170','18','','10648','Dbstat: Rows updated per second','pgsql.dbstat.sum.tup_updated.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of rows updated by queries per second.','0','7d','0','','48117','','','','','200','1','0','','','0','0','0','0','0','0','0','9f8498a20db04822b0d03df4d8cb184e','0','2','0'), ('48171','18','','10648','Dbstat: Committed transactions per second','pgsql.dbstat.sum.xact_commit.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of transactions that have been committed per second.','0','7d','0','','48117','','','','','200','1','0','','','0','0','0','0','0','0','0','fed4fd91cbf846929795b960266301b7','0','2','0'), ('48172','18','','10648','Dbstat: Roll backed transactions per second','pgsql.dbstat.sum.xact_rollback.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of transactions that have been rolled back per second.','0','7d','0','','48117','','','','','200','1','0','','','0','0','0','0','0','0','0','e3337867025d4cd7bc4d26d663a4fc61','0','2','0'), ('48173','18','','10648','WAL: Segments count','pgsql.wal.count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of WAL segments.','0','7d','0','','48131','','','','','200','1','0','','','0','0','0','0','0','0','0','5fc77f9d1d1d46ed84d71dedaf30de75','0','2','0'), ('48174','18','','10648','WAL: Bytes received','pgsql.wal.receive','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'WAL receive, in bytes.','0','7d','0','','48131','','','','','200','1','0','','','0','0','0','0','0','0','0','78f6cd549ecc417880df1851d8427722','0','2','0'), ('48175','18','','10648','WAL: Bytes written','pgsql.wal.write','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'WAL write, in bytes.','0','7d','0','','48131','','','','','200','1','0','','','0','0','0','0','0','0','0','492f311473f645f19b79f46d07c9950a','0','2','0'), ('48181','18','','10648','DB [{#DBNAME}]: Get dbstat','pgsql.dbstat.get_metrics["{#DBNAME}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get dbstat metrics for database "{#DBNAME}".','0','7d','0','','48118','','','','','200','1','0','','','0','0','0','0','0','0','0','02c15c6f80e644269e14e5047f07efb1','0','2','0'), ('48182','18','','10648','DB [{#DBNAME}]: Get locks','pgsql.locks.get_metrics["{#DBNAME}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get locks metrics for database "{#DBNAME}".','0','7d','0','','48119','','','','','200','1','0','','','0','0','0','0','0','0','0','ce03b994ad894100a11816b043d84c23','0','2','0'), ('48183','18','','10648','DB [{#DBNAME}]: Get queries','pgsql.queries.get_metrics["{#DBNAME}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get queries metrics for database "{#DBNAME}".','0','7d','0','','48122','','','','','200','1','0','','','0','0','0','0','0','0','0','15cf79b8fafa442a80a10368f5b5962d','0','2','0'), ('48184','18','','10648','Application [{#APPLICATION_NAME}]: Get replication','pgsql.replication.get_metrics["{#APPLICATION_NAME}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Collect metrics from the "pg_stat_replication" about the application "{#APPLICATION_NAME}" that is connected to this WAL sender, which contains information about the WAL sender process, showing statistics about replication to that sender''s connected standby server.','0','7d','0','','48126','','','','','200','1','0','','','0','0','0','0','0','0','0','7d994bb6b0de4f76810e4beaf9c6318c','0','2','0'), ('48240','18','','10649','Bgwriter: Buffers allocated per second','pgsql.bgwriter.buffers_alloc.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of buffers allocated per second.','0','7d','0','','48223','','','','','200','1','0','','','0','0','0','0','0','0','0','d469ec16aa434e3e82695d143abe479a','0','2','0'), ('48241','18','','10649','Bgwriter: Buffers written directly by a backend per second','pgsql.bgwriter.buffers_backend.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of buffers written directly by a backend per second. Available in PostgreSQL versions prior to 17.','0','7d','0','','48223','','','','','200','1','0','','','0','0','0','0','0','0','0','511c3b3b363f43dd93746b3e0dad0f07','0','2','0'), ('48242','18','','10649','Bgwriter: Times a backend executed its own fsync per second','pgsql.bgwriter.buffers_backend_fsync.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times a backend had to execute its own fsync call per second (normally the background writer handles those even when the backend does its own write). Available in PostgreSQL versions prior to 17.','0','7d','0','','48223','','','','','200','1','0','','','0','0','0','0','0','0','0','19795654aab941db8a95b092dda58737','0','2','0'), ('48243','18','','10649','Checkpoint: Buffers written during checkpoints per second','pgsql.bgwriter.buffers_checkpoint.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of buffers written during checkpoints per second.','0','7d','0','','48223','','','','','200','1','0','','','0','0','0','0','0','0','0','a366775a3079422184cfac96f34173d6','0','2','0'), ('48244','18','','10649','Checkpoint: Buffers written by the background writer per second','pgsql.bgwriter.buffers_clean.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of buffers written by the background writer per second.','0','7d','0','','48223','','','','','200','1','0','','','0','0','0','0','0','0','0','62598e17214f44888fa57db4214a3b5f','0','2','0'), ('48245','18','','10649','Checkpoint: Requested per second','pgsql.bgwriter.checkpoints_req.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of requested checkpoints that have been performed per second.','0','7d','0','','48223','','','','','200','1','0','','','0','0','0','0','0','0','0','6c05e2cb877142fe8b1c03ab6566a134','0','2','0'), ('48246','18','','10649','Checkpoint: Scheduled per second','pgsql.bgwriter.checkpoints_timed.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of scheduled checkpoints that have been performed per second.','0','7d','0','','48223','','','','','200','1','0','','','0','0','0','0','0','0','0','9f4020e7f0294ffb9e15b75982be5a68','0','2','0'), ('48247','18','','10649','Checkpoint: Checkpoint sync time per second','pgsql.bgwriter.checkpoint_sync_time.rate','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Total amount of time per second that has been spent in the portion of checkpoint processing where files are synchronized to disk.','0','7d','0','','48223','','','','','200','1','0','','','0','0','0','0','0','0','0','bf59309e2fba4601920c64ab96f4d07e','0','2','0'), ('48248','18','','10649','Checkpoint: Checkpoint write time per second','pgsql.bgwriter.checkpoint_write_time.rate','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Total amount of time per second that has been spent in the portion of checkpoint processing where files are written to disk.','0','7d','0','','48223','','','','','200','1','0','','','0','0','0','0','0','0','0','5bd159a9c2794486b0548f701605ccbc','0','2','0'), ('48249','18','','10649','Bgwriter: Number of bgwriter cleaning scan stopped per second','pgsql.bgwriter.maxwritten_clean.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times the background writer stopped a cleaning scan because it had written too many buffers per second.','0','7d','0','','48223','','','','','200','1','0','','','0','0','0','0','0','0','0','716b6c5c1f304d17ad9784ebee2062e1','0','2','0'), ('48250','18','','10649','Connections sum: Active','pgsql.connections.sum.active','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections executing a query.','0','7d','0','','48226','','','','','200','1','0','','','0','0','0','0','0','0','0','7866090bfc5d4e1db50b50957b372685','0','2','0'), ('48251','18','','10649','Connections sum: Idle','pgsql.connections.sum.idle','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections waiting for a new client command.','0','7d','0','','48226','','','','','200','1','0','','','0','0','0','0','0','0','0','7853f5db0cc54865ba0fc3323b4b9810','0','2','0'), ('48252','18','','10649','Connections sum: Idle in transaction','pgsql.connections.sum.idle_in_transaction','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections in a transaction state but not executing a query.','0','7d','0','','48226','','','','','200','1','0','','','0','0','0','0','0','0','0','b609844ba35149e2a92e43ce5aa4c6f1','0','2','0'), ('48253','18','','10649','Connections sum: Prepared','pgsql.connections.sum.prepared','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of prepared transactions: https://www.postgresql.org/docs/current/sql-prepare-transaction.html','0','7d','0','','48226','','','','','200','1','0','','','0','0','0','0','0','0','0','dc8be28daed141c789beab5e7c64c660','0','2','0'), ('48254','18','','10649','Connections sum: Total','pgsql.connections.sum.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections.','0','7d','0','','48226','','','','','200','1','0','','','0','0','0','0','0','0','0','c04d920d78e54039bca114e94c655a17','0','2','0'), ('48255','18','','10649','Connections sum: Total, %','pgsql.connections.sum.total_pct','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections, in percentage.','0','7d','0','','48226','','','','','200','1','0','','','0','0','0','0','0','0','0','ea0eaf2f784f476e9ce72fa119f8badb','0','2','0'), ('48256','18','','10649','Connections sum: Waiting','pgsql.connections.sum.waiting','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of waiting connections: https://www.postgresql.org/docs/current/monitoring-stats.html#WAIT-EVENT-TABLE','0','7d','0','','48226','','','','','200','1','0','','','0','0','0','0','0','0','0','e19ab5dbf64348158c6033073c1a1058','0','2','0'), ('48257','18','','10649','Transactions: Max active transaction time','pgsql.transactions.active','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Current max active transaction time.','0','7d','0','','48236','','','','','200','1','0','','','0','0','0','0','0','0','0','ecbeae6a23e74cc89c670daf60f81833','0','2','0'), ('48258','18','','10649','Transactions: Max idle transaction time','pgsql.transactions.idle','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Current max idle transaction time.','0','7d','0','','48236','','','','','200','1','0','','','0','0','0','0','0','0','0','406d76761c0b4e0dbe83a14f48874fed','0','2','0'), ('48259','18','','10649','Transactions: Max prepared transaction time','pgsql.transactions.prepared','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Current max prepared transaction time.','0','7d','0','','48236','','','','','200','1','0','','','0','0','0','0','0','0','0','3e0f09be15284811a4f9864be8aaa1e7','0','2','0'), ('48260','18','','10649','Transactions: Max waiting transaction time','pgsql.transactions.waiting','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Current max waiting transaction time.','0','7d','0','','48236','','','','','200','1','0','','','0','0','0','0','0','0','0','2c5f5402e73942ef9a51d7965b9e705b','0','2','0'), ('48261','18','','10649','WAL: Segments count','pgsql.wal.count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of WAL segments.','0','7d','0','','48239','','','','','200','1','0','','','0','0','0','0','0','0','0','b1c6d3ff86f240df8f2c3a14a47e4df1','0','2','0'), ('48262','18','','10649','WAL: Bytes written','pgsql.wal.write','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'WAL write, in bytes.','0','7d','0','','48239','','','','','200','1','0','','','0','0','0','0','0','0','0','08580207e58142a393e310b0d592a7d5','0','2','0'), ('48267','18','','10649','DB [{#DBNAME}]: Get dbstat','pgsql.dbstat.get_metrics["{#DBNAME}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get dbstat metrics for database "{#DBNAME}".','0','7d','0','','48227','','','','','200','1','0','','','0','0','0','0','0','0','0','f7a0b95d306542ddb8b9730650f4fc27','0','2','0'), ('48268','18','','10649','DB [{#DBNAME}]: Frozen XID before autovacuum, %','pgsql.frozenxid.prc_before_av["{#DBNAME}"]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Preventing Transaction ID Wraparound Failures: https://www.postgresql.org/docs/current/routine-vacuuming.html#VACUUM-FOR-WRAPAROUND','0','7d','0','','48265','','','','','200','1','0','','','0','0','0','0','0','0','0','50147f7140144de2af4200b9be95535a','0','2','0'), ('48269','18','','10649','DB [{#DBNAME}]: Frozen XID before stop, %','pgsql.frozenxid.prc_before_stop["{#DBNAME}"]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Preventing Transaction ID Wraparound Failures: https://www.postgresql.org/docs/current/routine-vacuuming.html#VACUUM-FOR-WRAPAROUND','0','7d','0','','48265','','','','','200','1','0','','','0','0','0','0','0','0','0','2cf70e1bfa084b92b7155a1f41351069','0','2','0'), ('48270','18','','10649','DB [{#DBNAME}]: Num of locks total','pgsql.locks.total["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of locks in this database.','0','7d','0','','48228','','','','','200','1','0','','','0','0','0','0','0','0','0','220503c9eeac46ea8656f7b5a149c29d','0','2','0'), ('48271','18','','10649','DB [{#DBNAME}]: Get queries','pgsql.queries.get_metrics["{#DBNAME}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get queries metrics for database "{#DBNAME}".','0','7d','0','','48231','','','','','200','1','0','','','0','0','0','0','0','0','0','1e31cbe913ef44b1896fc44cf11cb18c','0','2','0'), ('48272','18','','10649','DB [{#DBNAME}]: Index scans per second','pgsql.scans.idx.rate["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of index scans in the database per second.','0','7d','0','','48266','','','','','200','1','0','','','0','0','0','0','0','0','0','7e7e322396c24c70bb479ae84b79bbcd','0','2','0'), ('48273','18','','10649','DB [{#DBNAME}]: Sequential scans per second','pgsql.scans.seq.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of sequential scans in this database per second.','0','7d','0','','48266','','','','','200','1','0','','','0','0','0','0','0','0','0','c64cdbfa58994f699fb7ad7c3fd38b5f','0','2','0'), ('48320','18','','10650','BGP Peer discovery','juniper.mx.bgp.peer.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning `BGP4-V2-MIB-JUNIPER::jnxBgpM2PeerData` for BGP Peer.','0','7d','0','','48299','','','','','200','1','0','','','0','0','0','0','0','0','0','68b0e4b2b82e41db9293dfff16bba68a','0','2','0'), ('48321','18','','10650','BGP Prefix counter discovery','juniper.mx.bgp.prefix.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning `BGP4-V2-MIB-JUNIPER::jnxBgpM2PrefixCountersTable` for Prefix Counters.','0','7d','0','','48300','','','','','200','1','0','','','0','0','0','0','0','0','0','cf094cdd507c4de2987638b4eae8c7f2','0','2','0'), ('48322','18','','10650','CPU and Memory discovery','juniper.mx.cpu.mem.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning `JUNIPER-MIB::jnxOperatingTable` for CPU and Memory. http://kb.juniper.net/InfoCenter/index?page=content&id=KB17526&actp=search. Filter limits results to Routing Engines.','0','7d','0','','48304','','','','','200','1','0','','','0','0','0','0','0','0','0','68ad7154365b434f90e6461d4352fbfb','0','2','0'), ('48323','18','','10650','Multi-lane DOM discovery','juniper.mx.dom.lane.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for information about Digital Optical Monitoring for a Lane of an SFF optical module, as defined in JUNIPER-DOM-MIB.','0','7d','1','','48301','','','','','200','1','0','','','0','0','0','0','0','0','0','97578fc561dd40ba95a7f8baa331fda4','0','2','0'), ('48324','18','','10650','FAN discovery','juniper.mx.fans.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning `JUNIPER-MIB::jnxOperatingTable` for Fans.','0','7d','0','','48304','','','','','200','1','0','','','0','0','0','0','0','0','0','9ac8c0a8ae384e6898e89a873e54e1b0','0','2','0'), ('48325','18','','10650','Network interface discovery','juniper.mx.net.if.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of interfaces from IF-MIB.','0','7d','1','','48303','','','','','200','1','0','','','0','0','0','0','0','0','0','83627dc5919249198673890c25100b18','0','2','0'), ('48326','18','','10650','EtherLike-MIB discovery','juniper.mx.net.if.duplex.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of interfaces from IF-MIB and EtherLike-MIB. Interfaces with the `up(1)` operational status are discovered.','0','7d','1','','48302','','','','','200','1','0','','','0','0','0','0','0','0','0','3dcf819694834d29aae6a35c4aaa1c18','0','2','0'), ('48327','18','','10650','OSPF Neighbor discovery','juniper.mx.ospf.neighbor.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning `OSPF-MIB::ospfNbrTable` for OSPF Neighbors.','0','7d','0','','48305','','','','','200','1','0','','','0','0','0','0','0','0','0','9e66d89fdca04840b28d11d80de100ad','0','2','0'), ('48328','18','','10650','OSPFv3 Neighbor discovery','juniper.mx.ospfv3.neighbor.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning `OSPFV3-MIB-JUNIPER::jnxOspfv3NbrTable` for OSPFv3 Neighbors.','0','7d','0','','48306','','','','','200','1','0','','','0','0','0','0','0','0','0','66a0878f65f6420b82a4249a3f7956b0','0','2','0'), ('48329','18','','10650','PSU discovery','juniper.mx.psu.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning `JUNIPER-MIB::jnxOperatingTable` for Power Supplies.','0','7d','0','','48304','','','','','200','1','0','','','0','0','0','0','0','0','0','25dab3bda75b497eb91101d2a687b3d2','0','2','0'), ('48330','18','','10650','Redundancy discovery','juniper.mx.redundancy.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning `JUNIPER-MIB::jnxRedundancyTable`.','0','7d','0','','48307','','','','','200','1','0','','','0','0','0','0','0','0','0','f63fb6e235914131baff69bf7778e082','0','2','0'), ('48331','18','','10650','Temperature discovery','juniper.mx.temperature.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Scanning `JUNIPER-MIB::jnxOperatingTable` for Temperature.','0','7d','0','','48304','','','','','200','1','0','','','0','0','0','0','0','0','0','de9c2e302e6445d0b78235b9cc29444d','0','2','0'), ('48332','18','','10650','BGP AS [{#BGPM2_PEER_REMOTE_AS}] Peer [{#BGPM2_PEER_REMOTE_ADDR}]: Established time','juniper.mx.bgp.established.time[jnxBgpM2PeerFsmEstablishedTime.{#SNMPINDEX}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'This timer indicates how long (in seconds) this peer has been in the Established state or how long since this peer was last in the Established state. It is set to zero when a new peer is configured or the router is booted.','0','7d','0','','48299','','','','','200','1','0','','','0','0','0','0','0','0','0','86a197104cd74bea88d26179e645146e','0','2','0'), ('48333','18','','10650','BGP AS [{#BGPM2_PEER_REMOTE_AS}] Peer [{#BGPM2_PEER_REMOTE_ADDR}]: State','juniper.mx.bgp.state[jnxBgpM2PeerState.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,'1268','','','0','','','','','2',NULL,'The remote BGP peer''s FSM state.','0','7d','0','','48299','','','','','200','1','0','','','0','0','0','0','0','0','0','68baa298dd0d44fb823ae291fbe21db3','0','2','0'), ('48334','18','','10650','BGP AS [{#BGPM2_PEER_REMOTE_AS}] Peer [{#BGPM2_PEER_REMOTE_ADDR}]: Status','juniper.mx.bgp.status[jnxBgpM2PeerStatus.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,'1269','','','0','','','','','2',NULL,'Whether or not the BGP FSM for this remote peer is halted or running. The BGP FSM for a remote peer is halted after processing a Stop event. Likewise, it is in the running state after a Start event. The `jnxBgpM2PeerState` will generally be in the idle state when the FSM is halted, although some extensions such as Graceful Restart will leave the peer in the Idle state but with the FSM running.','0','7d','0','','48299','','','','','200','1','0','','','0','0','0','0','0','0','0','21a9a3b2f07c4b5b844b6e26289f5789','0','2','0'), ('48335','18','','10650','BGP [{#BGPM2_AFI_SAFI}]: Accepted prefixes','juniper.mx.bgp.prefix.accepted[jnxBgpM2PrefixInPrefixesAccepted.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of prefixes for a peer that are installed in the Adj-Ribs-In and are eligible to become active in the Loc-Rib.','0','7d','0','','48300','','','','','200','1','0','','','0','0','0','0','0','0','0','bbb40d9366e2447284f131be0757f771','0','2','0'), ('48336','18','','10650','BGP [{#BGPM2_AFI_SAFI}]: Active prefixes','juniper.mx.bgp.prefix.active[jnxBgpM2PrefixInPrefixesActive.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of prefixes for a peer that are installed in the Adj-Ribs-In and are the active route in the Loc-Rib.','0','7d','0','','48300','','','','','200','1','0','','','0','0','0','0','0','0','0','5a4790cb345945518b5fb72ad3d1e600','0','2','0'), ('48337','18','','10650','BGP [{#BGPM2_AFI_SAFI}]: Advertised prefixes','juniper.mx.bgp.prefix.advertised[jnxBgpM2PrefixOutPrefixes.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of prefixes for a peer that are installed in the peer''s Adj-Ribs-Out.','0','7d','0','','48300','','','','','200','1','0','','','0','0','0','0','0','0','0','d6ed9f3cf0c046e692fe22a1bbb42637','0','2','0'), ('48338','18','','10650','BGP [{#BGPM2_AFI_SAFI}]: Received prefixes','juniper.mx.bgp.prefix.received[jnxBgpM2PrefixInPrefixes.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of prefixes received from a peer and stored in the Adj-Ribs-In for that peer.','0','7d','0','','48300','','','','','200','1','0','','','0','0','0','0','0','0','0','573ceb98192c403ab93a7e4df07f982d','0','2','0'), ('48339','18','','10650','BGP [{#BGPM2_AFI_SAFI}]: Rejected prefixes','juniper.mx.bgp.prefix.rejected[jnxBgpM2PrefixInPrefixesRejected.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of prefixes for a peer that are installed in the Adj-Ribs-In and are NOT eligible to become active in the Loc-Rib.','0','7d','0','','48300','','','','','200','1','0','','','0','0','0','0','0','0','0','827208095c444966b85b0ce9e5cf16da','0','2','0'), ('48340','18','','10650','System [{#SNMPVALUE}]: CPU utilization','juniper.mx.cpu.util[jnxOperatingCPU.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: JUNIPER-MIB The CPU utilization, in percent, of this subject. Zero if unavailable or inapplicable. Reference: http://kb.juniper.net/library/CUSTOMERSERVICE/GLOBAL_JTAC/BK26199/SRX%20SNMP%20Monitoring%20Guide_v1.1.pdf','0','7d','0','','48304','','','','','200','1','0','','','0','0','0','0','0','0','0','fc9c467c5aef496286063eb22150399b','0','2','0'), ('48341','18','','10650','System [{#SNMPVALUE}]: Memory utilization','juniper.mx.memory.util[jnxOperatingBuffer.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: JUNIPER-MIB The buffer pool utilization, in percent, of this subject. Zero if unavailable or inapplicable. Reference: http://kb.juniper.net/library/CUSTOMERSERVICE/GLOBAL_JTAC/BK26199/SRX%20SNMP%20Monitoring%20Guide_v1.1.pdf','0','7d','0','','48304','','','','','200','1','0','','','0','0','0','0','0','0','0','e6809619fd6e468190ec180e482badb7','0','2','0'), ('48342','18','','10650','SFP [{#IFNAME}][{#IFALIAS}]: Module lane [{#LANEINDEX}] alarms','juniper.mx.dom.alarms.lane.laser[jnxDomCurrentLaneAlarms.{#SNMPINDEX}.{#LANEINDEX}]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'This item identifies all the active DOM alarms on a particular Lane of an SFF physical interface.','0','7d','0','','48301','','','','','200','1','0','','','0','0','0','0','0','0','0','8af21c5d4a5a422da72048b595e4b557','0','2','0'), ('48343','18','','10650','SFP [{#IFNAME}][{#IFALIAS}]: Rx optical power lane [{#LANEINDEX}]','juniper.mx.dom.rx.lane.laser[jnxDomCurrentLaneRxLaserPower.{#SNMPINDEX}.{#LANEINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'Receiver laser power on a particular Lane of an SFF physical interface.','0','7d','0','','48301','','','','','200','1','0','','','0','0','0','0','0','0','0','eb00143fd1364120aa02238f60d4c05e','0','2','0'), ('48344','18','','10650','SFP [{#IFNAME}][{#IFALIAS}]: Tx optical power lane [{#LANEINDEX}]','juniper.mx.dom.tx.lane.laser[jnxDomCurrentLaneTxLaserOutputPower.{#SNMPINDEX}.{#LANEINDEX}]','0','31d','365d','0','0','','dbm','','',NULL,NULL,'','','0','','','','','2',NULL,'Transmitter laser power on a particular Lane of an SFF physical interface.','0','7d','0','','48301','','','','','200','1','0','','','0','0','0','0','0','0','0','bc1cda13a6fd4041b30c1ac045927cd9','0','2','0'), ('48345','18','','10650','Sensor [{#SNMPVALUE}]: Fan status','juniper.mx.sensor.fan.status[jnxOperatingState.4.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1273','','','0','','','','','2',NULL,'MIB: JUNIPER-MIB Current status of the Fan tray.','0','7d','0','','48304','','','','','200','1','0','','','0','0','0','0','0','0','0','ebd56d08899842779b2695ad3370c95e','0','2','0'), ('48346','18','','10650','Interface [{#IFNAME}][{#IFALIAS}]: Inbound packets discarded','juniper.mx.net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system and at other times as indicated by the value of `ifCounterDiscontinuityTime`.','0','7d','0','','48303','','','','','200','1','0','','','0','0','0','0','0','0','0','1e464a20cc784884b5287a4c0568a70d','0','2','0'), ('48347','18','','10650','Interface [{#IFNAME}][{#IFALIAS}]: Inbound packets with errors','juniper.mx.net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of `ifCounterDiscontinuityTime`.','0','7d','0','','48303','','','','','200','1','0','','','0','0','0','0','0','0','0','9300b7ac45464856ae46f8f6294fcb48','0','2','0'), ('48348','18','','10650','Interface [{#IFNAME}][{#IFALIAS}]: Bits received','juniper.mx.net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of `ifInOctets`. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of `ifCounterDiscontinuityTime`.','0','7d','0','','48303','','','','','200','1','0','','','0','0','0','0','0','0','0','d1f4a2d1ab0b4239a5c515f2afa1599d','0','2','0'), ('48349','18','','10650','Interface [{#IFNAME}][{#IFALIAS}]: Outbound packets discarded','juniper.mx.net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system and at other times as indicated by the value of `ifCounterDiscontinuityTime`.','0','7d','0','','48303','','','','','200','1','0','','','0','0','0','0','0','0','0','6ec380888ae745ec953c00ae3272dd85','0','2','0'), ('48350','18','','10650','Interface [{#IFNAME}][{#IFALIAS}]: Outbound packets with errors','juniper.mx.net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of `ifCounterDiscontinuityTime`.','0','7d','0','','48303','','','','','200','1','0','','','0','0','0','0','0','0','0','ca31a4568ca64a91acab57c7d4a12171','0','2','0'), ('48351','18','','10650','Interface [{#IFNAME}][{#IFALIAS}]: Bits sent','juniper.mx.net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of `ifOutOctets`. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of `ifCounterDiscontinuityTime`.','0','7d','0','','48303','','','','','200','1','0','','','0','0','0','0','0','0','0','69165e8edad0451f9571eba53d484453','0','2','0'), ('48352','18','','10650','Interface [{#IFNAME}][{#IFALIAS}]: Speed','juniper.mx.net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','7d','0','','48303','','','','','200','1','0','','','0','0','0','0','0','0','0','38d091d8365b44eea6ead60d5b6090e7','0','2','0'), ('48353','18','','10650','Interface [{#IFNAME}][{#IFALIAS}]: Operational status','juniper.mx.net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1271','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The `testing(3)` state indicates that no operational packet scan can be passed. - If `ifAdminStatus` is `down(2)`, then `ifOperStatus` should be `down(2)`. - If `ifAdminStatus` is changed to `up(1)`, then `ifOperStatus` should change to `up(1)` if the interface is ready to transmit and receive network traffic. - It should change to `dormant(5)` if the interface is waiting for external actions (such as a serial line waiting for an incoming connection). - It should remain in the `down(2)` state if and only if there is a fault that prevents it from going to the `up(1)` state. - It should remain in the `notPresent(6)` state if the interface has missing (typically, hardware) components.','0','7d','0','','48303','','','','','200','1','0','','','0','0','0','0','0','0','0','f731f0ad12c94b57aa3e819a9a3f8344','0','2','0'), ('48354','18','','10650','Interface [{#IFNAME}][{#IFALIAS}]: Interface type','juniper.mx.net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1272','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for `ifType` are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','7d','0','','48303','','','','','200','1','0','','','0','0','0','0','0','0','0','a1931245d15a4f0ca792ab62d149ba2c','0','2','0'), ('48355','18','','10650','Interface [{#IFNAME}][{#IFALIAS}]: Duplex status','juniper.mx.net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1270','','','0','','','','','2',NULL,'MIB: EtherLike-MIB The current mode of operation of the MAC entity. `unknown` indicates that the current duplex mode could not be determined. Management control of the duplex mode is accomplished through the MAU MIB. When an interface does not support autonegotiation or when autonegotiation is not enabled, the duplex mode is controlled using `ifMauDefaultType`. When autonegotiation is supported and enabled, duplex mode is controlled using `ifMauAutoNegAdvertisedBits`. In either case, the currently operating duplex mode in reflected both in this object and in `ifMauType`. Note that this object provides redundant information with `ifMauType`. Normally, redundant objects are discouraged. However, in this instance, it allows a management application to determine the duplex status of an interface without having to know every possible value of `ifMauType`. This was felt to be sufficiently valuable to justify the redundancy. Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.','0','7d','0','','48302','','','','','200','1','0','','','0','0','0','0','0','0','0','03c1a0c21ef04f428af38ad963a7c5ec','0','2','0'), ('48356','18','','10650','OSPF Neighbor [{#OSPF_IP_ADDR}]: Events','juniper.mx.ospf.events[ospfNbrEvents.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of times this neighbor relationship has changed state, or an error has occurred.','0','7d','0','','48305','','','','','200','1','0','','','0','0','0','0','0','0','0','d8e5d85898294f2cbfb97e59458fdac5','0','2','0'), ('48357','18','','10650','OSPF Neighbor [{#OSPF_IP_ADDR}]: Hello suppressed','juniper.mx.ospf.hello.suppressed[ospfNbrHelloSuppressed.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,'1276','','','0','','','','','2',NULL,'Indicates whether Hellos are being suppressed to the neighbor.','0','7d','0','','48305','','','','','200','1','0','','','0','0','0','0','0','0','0','9d4b254d98a14c3ca3a34c7a5ccdc4c2','0','2','0'), ('48358','18','','10650','OSPF Neighbor [{#OSPF_IP_ADDR}]: Router Id','juniper.mx.ospf.rtr.id[ospfNbrRtrId.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'A 32-bit integer (represented as a type `IpAddress`) uniquely identifying the neighboring router in the Autonomous System.','0','7d','0','','48305','','','','','200','1','0','','','0','0','0','0','0','0','0','78726e19b6f34285868684ee2b6bfb84','0','2','0'), ('48359','18','','10650','OSPF Neighbor [{#OSPF_IP_ADDR}]: State','juniper.mx.ospf.state[ospfNbrState.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,'1277','','','0','','','','','2',NULL,'The state of the relationship with this neighbor.','0','7d','0','','48305','','','','','200','1','0','','','0','0','0','0','0','0','0','a09f5412c1854cb28ac393e0b8568802','0','2','0'), ('48360','18','','10650','OSPFv3 Neighbor [{#OSPFV3_IP_ADDR}]: Events','juniper.mx.ospfv3.events[jnxOspfv3NbrEvents.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of times the [{#OSPFV3_IP_ADDR}] neighbor relationship has changed state, or an error has occurred.','0','7d','0','','48306','','','','','200','1','0','','','0','0','0','0','0','0','0','f4c944eaeafb4b3480fc5c5d9d089842','0','2','0'), ('48361','18','','10650','OSPFv3 Neighbor [{#OSPFV3_IP_ADDR}]: Hello suppressed','juniper.mx.ospfv3.hello.suppressed[jnxOspfv3NbrHelloSuppressed.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,'1276','','','0','','','','','2',NULL,'Indicates whether Hellos are being suppressed to the neighbor.','0','7d','0','','48306','','','','','200','1','0','','','0','0','0','0','0','0','0','b64ebde2fd354302acc3d087aab5a155','0','2','0'), ('48362','18','','10650','OSPFv3 Neighbor [{#OSPFV3_IP_ADDR}]: Priority','juniper.mx.ospfv3.priority[jnxOspfv3NbrPriority.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The priority of this neighbor in the designated router election algorithm. The value `0` signifies that the neighbor is not eligible to become the designated router on this particular network.','0','7d','0','','48306','','','','','200','1','0','','','0','0','0','0','0','0','0','baed51479df94547a2a089543ed3928c','0','2','0'), ('48363','18','','10650','OSPFv3 Neighbor [{#OSPFV3_IP_ADDR}]: State','juniper.mx.ospfv3.state[jnxOspfv3NbrState.{#SNMPINDEX}]','0','31d','365d','0','0','','','','',NULL,'1277','','','0','','','','','2',NULL,'The state of the relationship with this neighbor.','0','7d','0','','48306','','','','','200','1','0','','','0','0','0','0','0','0','0','4adfe63f7b5042d8bd312dd8285c17e5','0','2','0'), ('48364','18','','10650','Sensor [{#SNMPVALUE}]: Power supply status','juniper.mx.sensor.psu.status["{#SNMPINDEX}"]','0','31d','0','0','3','','','','',NULL,'1273','','','0','','','','','2',NULL,'MIB: JUNIPER-MIB If are using DC power supplies, there is a known issue on PR 1064039 where the fans do not detect the temperature correctly and fail to cool the power supply causing shutdown to occur. This is fixed in Junos 13.3R7 https://forums.juniper.net/t5/Routing/PEM-0-not-OK-MX104/m-p/289644#M14122','0','7d','0','','48304','','','','','200','1','0','','','0','0','0','0','0','0','0','3526d4374e8d422ab87b92dca0159a8e','0','2','0'), ('48365','18','','10650','Redundancy [{#SNMPVALUE}][{#CHASSISDESCR}]: Current running state','juniper.mx.redundancy.state["{#SNMPINDEX}"]','0','31d','0','0','3','','','','',NULL,'1274','','','0','','','','','2',NULL,'MIB: JUNIPER-MIB The current running state for the `Redundancy [{#SNMPVALUE}][{#CHASSISDESCR}]` subject.','0','7d','0','','48307','','','','','200','1','0','','','0','0','0','0','0','0','0','6fe1d6a3d81240ecb1d9b0d7123b653e','0','2','0'), ('48366','18','','10650','Redundancy [{#SNMPVALUE}][{#CHASSISDESCR}]: Reason of the last switchover','juniper.mx.redundancy.switchover.reason["{#SNMPINDEX}"]','0','31d','0','0','3','','','','',NULL,'1275','','','0','','','','','2',NULL,'MIB: JUNIPER-MIB The reason of the last switchover for the `Redundancy [{#SNMPVALUE}][{#CHASSISDESCR}]` subject.','0','7d','0','','48307','','','','','200','1','0','','','0','0','0','0','0','0','0','da3134d4cb084090a7c2c7df9d99c6f8','0','2','0'), ('48367','18','','10650','Sensor [{#SENSOR_INFO}]: Temperature','sensor.temp.value[jnxOperatingTemp.{#SNMPINDEX}]','0','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: JUNIPER-MIB The temperature in Celsius of [{#SENSOR_INFO}].','0','7d','0','','48304','','','','','200','1','0','','','0','0','0','0','0','0','0','e01b55a38ca6441ca87672285ea896d5','0','2','0'), ('48370','18','','10651','Availability status detailed','azure.sql_inst.availability.details','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The summary description of the availability status.','0','7d','0','','48368','','','','','200','1','0','','','0','0','0','0','0','0','0','dd047204951f449496ab9b4938dd0a3a','0','2','0'), ('48371','18','','10651','Availability state','azure.sql_inst.availability.state','0','31d','365d','0','3','','','','',NULL,'1280','','','0','','','','','0',NULL,'The availability status of the resource. 0 - Available - no events detected that affect the health of the resource. 1 - Degraded - your resource detected a loss in performance, although it''s still available for use. 2 - Unavailable - the service detected an ongoing platform or non-platform event that affects the health of the resource. 3 - Unknown - Resource Health hasn''t received information about the resource for more than 10 minutes.','0','7d','0','','48368','','','','','200','1','0','','','0','0','0','0','0','0','0','be4a868809374a80a9ed3150e098f470','0','2','0'), ('48372','18','','10651','IO bytes read','azure.sql_inst.bytes.read','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Bytes read by the managed instance.','0','7d','0','','48368','','','','','200','1','0','','','0','0','0','0','0','0','0','de4033c537154bf1ae4c33f802f5d923','0','2','0'), ('48373','18','','10651','IO bytes write','azure.sql_inst.bytes.write','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Bytes written by the managed instance.','0','7d','0','','48368','','','','','200','1','0','','','0','0','0','0','0','0','0','230b2e3632274288aa9b4f8667ad5586','0','2','0'), ('48374','18','','10651','Instance collation','azure.sql_inst.collation','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collation of the managed instance.','0','7d','0','','48368','','','','','200','1','0','','','0','0','0','0','0','0','0','8ef68ff7b24a462b903960a66c5e3acb','0','2','0'), ('48375','18','','10651','Virtual core count','azure.sql_inst.core.count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Virtual core count available to the managed instance.','0','7d','0','','48368','','','','','200','1','0','','','0','0','0','0','0','0','0','4020903b19234e7b83b725d0c56caa82','0','2','0'), ('48376','18','','10651','Average CPU utilization','azure.sql_inst.cpu','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average CPU utilization of the instance.','0','7d','0','','48368','','','','','200','1','0','','','0','0','0','0','0','0','0','62fd264c07fe410ca8f43970c8ecdaef','0','2','0'), ('48377','18','','10651','Get errors','azure.sql_inst.data.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A list of errors from API requests.','0','7d','0','','48368','','','','','200','1','0','','','0','0','0','0','0','0','0','0d4e2f5863474225a5584fbcbb7e51d1','0','2','0'), ('48378','18','','10651','Instance provisioning state','azure.sql_inst.provision','0','31d','365d','0','3','','','','',NULL,'1281','','','0','','','','','0',NULL,'Provisioning state of the managed instance.','0','7d','0','','48368','','','','','200','1','0','','','0','0','0','0','0','0','0','953ba49d81a048dcbed882b955606c96','0','2','0'), ('48379','18','','10651','IO request count','azure.sql_inst.requests','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'IO request count by the managed instance.','0','7d','0','','48368','','','','','200','1','0','','','0','0','0','0','0','0','0','d311532917fa409e909c34f3a2d9032b','0','2','0'), ('48380','18','','10651','Instance state','azure.sql_inst.state','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'State of the managed instance.','0','7d','0','','48368','','','','','200','1','0','','','0','0','0','0','0','0','0','e72ef80733cb4dff9722ea1ef73c59d1','0','2','0'), ('48381','18','','10651','Storage space reserved','azure.sql_inst.storage.reserved','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Storage space reserved by the managed instance.','0','7d','0','','48368','','','','','200','1','0','','','0','0','0','0','0','0','0','960e4282247f4ea0bc947e2f35182ec2','0','2','0'), ('48382','18','','10651','Storage space used','azure.sql_inst.storage.used','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Storage space used by the managed instance.','0','7d','0','','48368','','','','','200','1','0','','','0','0','0','0','0','0','0','dd1af2bc16c94b2f8636d24a1aedca0b','0','2','0'), ('48383','18','','10531','Azure SQL managed instance discovery','azure.sql_inst.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The list of Azure SQL managed instances provided by the subscription.','0','7d','1','','43714','','','','','200','1','0','','','0','0','0','0','0','0','0','34e88b4d994f436e93381e41f5ba2bde','0','2','0'), ('48394','18','','10653','App-ID release date','pan.pa440.app_id.release_date','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Currently installed application definition release date. If no release date is found, the value is discarded.','0','7d','0','','48392','','','','','200','1','0','','','0','0','0','0','0','0','0','de2197db515d46cab5349720285ed40e','0','2','0'), ('48395','18','','10653','App-ID version','pan.pa440.app_id.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Currently installed application definition version. If no application definition is found, 0 is returned.','0','7d','0','','48392','','','','','200','1','0','','','0','0','0','0','0','0','0','03a2a4e32463409f94e08b72c5c1ac78','0','2','0'), ('48396','18','','10653','Get device certificate check','pan.pa440.certificate.device.get.check','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data collection check. Check the latest values for details.','0','7d','0','','48384','','','','','200','1','0','','','0','0','0','0','0','0','0','278c6f5c85bf4c659afa0b08f4c56c23','0','2','0'), ('48397','18','','10653','Get certificate check','pan.pa440.certificate.get.check','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data collection check. Check the latest values for details.','0','7d','0','','48385','','','','','200','1','0','','','0','0','0','0','0','0','0','e0e93584fbfb46578bb8272aa6326f1c','0','2','0'), ('48398','18','','10653','CPU temperature','pan.pa440.cpu.temp','0','31d','365d','0','3','','℃','','',NULL,NULL,'','','0','','','','','0',NULL,'The CPU temperature in degrees Celsius.','0','7d','0','','48386','','','','','200','1','0','','','0','0','0','0','0','0','0','4e4ddb2794524f2a889328609dd8ea8f','0','2','0'), ('48399','18','','10653','Data Plane: CPU utilization, in %','pan.pa440.data_plane.cpu.util','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of time over the last minute that this processor was not idle. Implementations may approximate this one-minute smoothing period if necessary.','0','7d','0','','48393','','','','','200','1','0','','','0','0','0','0','0','0','0','fb94a1c35199494b8750bdc7f3d87e06','0','2','0'), ('48400','18','','10653','Get system environmental check','pan.pa440.environmentals.get.check','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data collection check. Check the latest values for details.','0','7d','0','','48386','','','','','200','1','0','','','0','0','0','0','0','0','0','16477bcf87d94ec89e7f6e8cb6f76612','0','2','0'), ('48401','18','','10653','GlobalProtect client package version','pan.pa440.gp.client.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Currently installed GlobalProtect client package version. If package is not installed, "0.0.0" is returned.','0','7d','0','','48392','','','','','200','1','0','','','0','0','0','0','0','0','0','f33d2dec35174826b41865bac4921704','0','2','0'), ('48402','18','','10653','Get HA info check','pan.pa440.ha.get.check','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data collection check. Check the latest values for details.','0','7d','0','','48387','','','','','200','1','0','','','0','0','0','0','0','0','0','dc15e5dad66c4e0eafb9426a9fe8f573','0','2','0'), ('48403','18','','10653','Host name','pan.pa440.hostname','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The host name of the system.','0','7d','0','','48392','','','','','200','1','0','','','0','0','0','0','0','0','0','105dc2a9c708468eaec05721bbf69a05','0','2','0'), ('48404','18','','10653','Get license check','pan.pa440.licenses.get.check','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data collection check. Check the latest values for details.','0','7d','0','','48388','','','','','200','1','0','','','0','0','0','0','0','0','0','5d12d627046c48f3958ad75f7f1b544a','0','2','0'), ('48405','18','','10653','Management Plane: CPU utilization, in %','pan.pa440.management_plane.cpu.util','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of time over the last minute that this processor was not idle. Implementations may approximate this one-minute smoothing period if necessary.','0','7d','0','','48393','','','','','200','1','0','','','0','0','0','0','0','0','0','63f1642de18b48a889c6bd9110a53c9b','0','2','0'), ('48406','18','','10653','PAN-OS version','pan.pa440.os.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Full software version. The first two components of the full version are the major and minor versions. The third component indicates the maintenance release number.','0','7d','0','','48392','','','','','200','1','0','','','0','0','0','0','0','0','0','eadbb5eb7839483fafa8ba2297787ae0','0','2','0'), ('48407','18','','10653','Get OSPF neighbor check','pan.pa440.ospf.neighbors.get.check','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data collection check. Check the latest values for details.','0','7d','0','','48389','','','','','200','1','0','','','0','0','0','0','0','0','0','7810a8b930cd463080d020f41ef0db63','0','2','0'), ('48408','18','','10653','Get OSPFv3 neighbor check','pan.pa440.ospfv3.neighbors.get.check','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data collection check. Check the latest values for details.','0','7d','0','','48390','','','','','200','1','0','','','0','0','0','0','0','0','0','b7fd9012cfb54266b7b89e7ff96f45a8','0','2','0'), ('48409','18','','10653','Serial number','pan.pa440.serial_number','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The serial number of the unit. If not available, an empty string is returned.','0','7d','0','','48392','','','','','200','1','0','','','0','0','0','0','0','0','0','9b651e03cb2648bbbcca396ad0d403b2','0','2','0'), ('48410','18','','10653','Sessions: Active, total','pan.pa440.sessions.active.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of active sessions.','0','7d','0','','48391','','','','','200','1','0','','','0','0','0','0','0','0','0','62f42a97bd8249ef9a74a23198286816','0','2','0'), ('48411','18','','10653','Sessions: ICMP, active','pan.pa440.sessions.icmp.active','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of active ICMP sessions.','0','7d','0','','48391','','','','','200','1','0','','','0','0','0','0','0','0','0','cdb99f2e3ca84cada0273ad2649080c4','0','2','0'), ('48412','18','','10653','Sessions: Supported, total','pan.pa440.sessions.supported.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of supported sessions.','0','7d','0','','48391','','','','','200','1','0','','','0','0','0','0','0','0','0','28358716ad684d4588451bcf74ce8c1f','0','2','0'), ('48413','18','','10653','Sessions: Session table utilization, in %','pan.pa440.sessions.table_util','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Session table utilization in percent.','0','7d','0','','48391','','','','','200','1','0','','','0','0','0','0','0','0','0','8af55240d4e34bfab3b04c128bb4f54a','0','2','0'), ('48414','18','','10653','Sessions: TCP, active','pan.pa440.sessions.tcp.active','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of active TCP sessions.','0','7d','0','','48391','','','','','200','1','0','','','0','0','0','0','0','0','0','b70edca62b6c4a609d3c1dba707726ea','0','2','0'), ('48415','18','','10653','Sessions: UDP, active','pan.pa440.sessions.udp.active','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of active UDP sessions.','0','7d','0','','48391','','','','','200','1','0','','','0','0','0','0','0','0','0','1f48afa7b8cf4ab68497cb4b6a323a29','0','2','0'), ('48416','18','','10653','Get session info check','pan.pa440.session_info.get.check','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data collection check. Check the latest values for details.','0','7d','0','','48391','','','','','200','1','0','','','0','0','0','0','0','0','0','185bb269726f49ec9903dfea32c17c84','0','2','0'), ('48417','18','','10653','Get system info check','pan.pa440.system_info.get.check','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data collection check. Check the latest values for details.','0','7d','0','','48392','','','','','200','1','0','','','0','0','0','0','0','0','0','e864518eac5c412299cbe0561813bff3','0','2','0'), ('48418','18','','10653','Get system state check','pan.pa440.system_state.get.check','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Data collection check. Check the latest values for details.','0','7d','0','','48393','','','','','200','1','0','','','0','0','0','0','0','0','0','473dd3928ad945a2aa2c8ba31301c75d','0','2','0'), ('48419','18','','10653','Threat version','pan.pa440.threat.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Currently installed threat definition version. If no threat definition is found, "0" is returned.','0','7d','0','','48392','','','','','200','1','0','','','0','0','0','0','0','0','0','29af24fd3b23440e92a3d96fb96dad22','0','2','0'), ('48420','18','','10653','Uptime','pan.pa440.uptime','0','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The system uptime.','0','7d','0','','48392','','','','','200','1','0','','','0','0','0','0','0','0','0','a833b2bc69eb41599d916825ac89f9d7','0','2','0'), ('48421','18','','10653','URL filtering version','pan.pa440.url_filtering.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Currently installed URL filtering version. If no URL filtering is installed, "0" is returned.','0','7d','0','','48392','','','','','200','1','0','','','0','0','0','0','0','0','0','09afd20686404eec944a8b3489b2c826','0','2','0'), ('48423','18','','10653','Device certificate discovery','pan.pa440.certificate.device.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers device certificate metrics. Note that superuser privileges are required to obtain the device certificate data.','0','7d','0','','48384','','','','','200','1','0','','','0','0','0','0','0','0','0','72aa0f2e12cc48d7a11fcee0621e8450','0','2','0'), ('48424','18','','10653','Certificate discovery','pan.pa440.certificates.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers certificates on the device. Only the certificates with an expiration date are discovered.','0','7d','1','','48385','','','','','200','1','0','','','0','0','0','0','0','0','0','fbcd5fd8228045a5aebc41c3a1ee5d57','0','2','0'), ('48425','18','','10653','HA metric discovery','pan.pa440.ha.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers high availability metrics.','0','7d','0','','48387','','','','','200','1','0','','','0','0','0','0','0','0','0','252cc5be29874b32b7f3cc45699345df','0','2','0'), ('48426','18','','10653','HA link discovery','pan.pa440.ha.links.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers high availability link metrics. Information about high availability links: https://docs.paloaltonetworks.com/pan-os/11-1/pan-os-admin/high-availability/ha-concepts/ha-links-and-backup-links','0','7d','0','','48387','','','','','200','1','0','','','0','0','0','0','0','0','0','d234577c40cc49c1a8e4bda7f4a75741','0','2','0'), ('48429','18','','10653','License discovery','pan.pa440.licenses.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers licenses installed on the device. Only the licenses with an expiration date are discovered.','0','7d','1','','48388','','','','','200','1','0','','','0','0','0','0','0','0','0','337aa791737645bfa8d5fcd5958651ab','0','2','0'), ('48430','18','','10653','OSPF neighbor discovery','pan.pa440.ospf.neighbor.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers OSPF neighbors.','0','7d','1','','48389','','','','','200','1','0','','','0','0','0','0','0','0','0','ddce2171fab146b180616efe16884fc7','0','1','0'), ('48431','18','','10653','OSPFv3 neighbor discovery','pan.pa440.ospfv3.neighbor.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers OSPFv3 neighbors.','0','7d','1','','48390','','','','','200','1','0','','','0','0','0','0','0','0','0','3f466e987bb841b2a941feeaa6551f59','0','1','0'), ('48435','18','','10653','BGP peer [{#PEER}]: Status duration','pan.pa440.bgp.peer.status.duration[{#PEERGROUP}, {#PEERADDR}, {#PEER}]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The duration of the current state of the BGP peer.','0','7d','0','','48432','','','','','200','1','0','','','0','0','0','0','0','0','0','2b24b1d15040412793116d2d5c59b307','0','2','0'), ('48436','18','','10653','BGP peer [{#PEER}]: Status','pan.pa440.bgp.peer.status[{#PEERGROUP}, {#PEERADDR}, {#PEER}]','0','31d','365d','0','3','','','','',NULL,'1282','','','0','','','','','2',NULL,'The current state of the BGP peer.','0','7d','0','','48432','','','','','200','1','0','','','0','0','0','0','0','0','0','6549bd0d259947c3b18c2fdc2c0f7b2c','0','2','0'), ('48437','18','','10653','Device certificate: Expires on','pan.pa440.certificate.device.expires[{#SINGLETON}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The expiration date of the device certificate.','0','7d','0','','48384','','','','','200','1','0','','','0','0','0','0','0','0','0','2c6a819bbab548d08ce78c9cb3a76be9','0','2','0'), ('48438','18','','10653','Device certificate: Expires in','pan.pa440.certificate.device.expires_in[{#SINGLETON}]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The time in seconds until the device certificate expiration.','0','7d','0','','48384','','','','','200','1','0','','','0','0','0','0','0','0','0','0f0be52887fa400d8a278047c7340975','0','2','0'), ('48439','18','','10653','Certificate [{#CERTNAME}]: Expires on','pan.pa440.certificate.expires[{#CERTNAME}]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'The expiration date for the certificate.','0','7d','0','','48385','','','','','200','1','0','','','0','0','0','0','0','0','0','027e22db808c4d399758ca0c7dda8c30','0','2','0'), ('48440','18','','10653','HA state reason','pan.pa440.ha.local[state_reason{#SINGLETON}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The reason for the current state of high availability. May be absent in the master item data in some cases; set to an empty string if not found. Information about high availability states: https://docs.paloaltonetworks.com/pan-os/11-1/pan-os-admin/high-availability/ha-firewall-states','0','7d','0','','48387','','','','','200','1','0','','','0','0','0','0','0','0','0','1d681dfe12694efaa419dbb651a46341','0','2','0'), ('48441','18','','10653','HA state','pan.pa440.ha.local[state{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,'1285','','','0','','','','','2',NULL,'The current state of high availability. Information about high availability states: https://docs.paloaltonetworks.com/pan-os/11-1/pan-os-admin/high-availability/ha-firewall-states','0','7d','0','','48387','','','','','200','1','0','','','0','0','0','0','0','0','0','42a27d95b28e47949a1c19e9e4728622','0','2','0'), ('48442','18','','10653','HA peer state','pan.pa440.ha.peer[state{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,'1285','','','0','','','','','2',NULL,'The current peer state of high availability. Information about high availability states: https://docs.paloaltonetworks.com/pan-os/11-1/pan-os-admin/high-availability/ha-firewall-states','0','7d','0','','48387','','','','','200','1','0','','','0','0','0','0','0','0','0','e23d3e505d7245c3948eeddf070ed186','0','2','0'), ('48443','18','','10653','HA configuration synchronization status','pan.pa440.ha[config_sync_status{#SINGLETON}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current state of the running configuration synchronization.','0','7d','0','','48387','','','','','200','1','0','','','0','0','0','0','0','0','0','cea682854ccf4d8b81c75db57c92bc38','0','2','0'), ('48444','18','','10653','HA mode','pan.pa440.ha[mode{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,'1284','','','0','','','','','2',NULL,'The current mode of high availability. Possible values: 0 - Active-Passive 1 - Active-Active 2 - Unknown','0','7d','0','','48387','','','','','200','1','0','','','0','0','0','0','0','0','0','f7f29f1d68234eebbfb10c11cacc51e1','0','2','0'), ('48445','18','','10653','HA link [{#HALINK}]: Status','pan.pa440.ha.peer.link.state[{#HALINK}]','0','31d','0','0','1','','','','',NULL,'1285','','','0','','','','','2',NULL,'The current state of the high availability link. Information about high availability links: https://docs.paloaltonetworks.com/pan-os/11-1/pan-os-admin/high-availability/ha-concepts/ha-links-and-backup-links','0','7d','0','','48387','','','','','200','1','0','','','0','0','0','0','0','0','0','2e4374dd561b4c018e4a90acd6f19d27','0','2','0'), ('48446','18','','10653','Interface [{#IFNAME}]: Bits received, per second','pan.pa440.if.hw.bits.in.rate[{#IFNAME}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of bits received per second by the interface.','0','7d','0','','48433','','','','','200','1','0','','','0','0','0','0','0','0','0','521ba4a790d745f588d3a53dd7d93e72','0','2','0'), ('48447','18','','10653','Interface [{#IFNAME}]: Bits sent, per second','pan.pa440.if.hw.bits.out.rate[{#IFNAME}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of bits sent per second by the interface.','0','7d','0','','48433','','','','','200','1','0','','','0','0','0','0','0','0','0','f399ad09d3a746b6a6650355e285bb3a','0','2','0'), ('48448','18','','10653','Interface [{#IFNAME}]: Inbound packets discarded, per second','pan.pa440.if.hw.packets.in.discards.rate[{#IFNAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of inbound packets per second which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.','0','7d','0','','48433','','','','','200','1','0','','','0','0','0','0','0','0','0','bca68b06a8114e9da005c59afc32ef1e','0','2','0'), ('48449','18','','10653','Interface [{#IFNAME}]: Inbound packets with errors, per second','pan.pa440.if.hw.packets.in.errors.rate[{#IFNAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of inbound packets per second that contained errors preventing them from being deliverable to a higher-layer protocol.','0','7d','0','','48433','','','','','200','1','0','','','0','0','0','0','0','0','0','d80bddb621f94d7085e6dbc64f45de66','0','2','0'), ('48450','18','','10653','Interface [{#IFNAME}]: Outbound packets with errors, per second','pan.pa440.if.hw.packets.out.errors.rate[{#IFNAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of outbound packets per second that contained errors preventing them from being deliverable to a higher-layer protocol.','0','7d','0','','48433','','','','','200','1','0','','','0','0','0','0','0','0','0','5e79436836ba4871af0d67cca08db379','0','2','0'), ('48451','18','','10653','Interface [{#IFNAME}]: Speed','pan.pa440.if.hw.speed[{#IFNAME}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The current bandwidth of the interface. The item is created only for interfaces that report the actual speed in units of 1,000,000 bits.','0','7d','0','','48433','','','','','200','1','0','','','0','0','0','0','0','0','0','6969f818f52c4349b16b543879e16195','0','2','0'), ('48452','18','','10653','Interface [{#IFNAME}]: Status','pan.pa440.if.hw.status[{#IFNAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current state of the interface.','0','7d','0','','48433','','','','','200','1','0','','','0','0','0','0','0','0','0','f74af7a4b22f448fa3cc0b0e3a19ff83','0','2','0'), ('48453','18','','10653','VSYS [{#VSYS}]: Interface [{#IFNAME}]: Bits received, per second','pan.pa440.if.sw.bits.in.rate[{#VSYS}, {#IFNAME}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of bits received per second by the interface.','0','7d','0','','48434','','','','','200','1','0','','','0','0','0','0','0','0','0','72bf5045ffb1495bb4ac3c383d8ce4b7','0','2','0'), ('48454','18','','10653','VSYS [{#VSYS}]: Interface [{#IFNAME}]: Bits sent, per second','pan.pa440.if.sw.bits.out.rate[{#VSYS}, {#IFNAME}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of bits sent by the interface.','0','7d','0','','48434','','','','','200','1','0','','','0','0','0','0','0','0','0','90351d2ad6f345908fec41a175971d12','0','2','0'), ('48455','18','','10653','VSYS [{#VSYS}]: Interface [{#IFNAME}]: Inbound packets dropped, per second','pan.pa440.if.sw.packets.in.drops.rate[{#VSYS}, {#IFNAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of inbound packets per second which were chosen to be dropped even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.','0','7d','0','','48434','','','','','200','1','0','','','0','0','0','0','0','0','0','78cda9d3e61e4862aefc617486145a88','0','2','0'), ('48456','18','','10653','VSYS [{#VSYS}]: Interface [{#IFNAME}]: Inbound packets with errors, per second','pan.pa440.if.sw.packets.in.errors.rate[{#VSYS}, {#IFNAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of inbound packets per second that contained errors preventing them from being deliverable to a higher-layer protocol.','0','7d','0','','48434','','','','','200','1','0','','','0','0','0','0','0','0','0','d18f406d5a02460881abcedc62ceab22','0','2','0'), ('48457','18','','10653','License [{#FEATURE}]: Expired','pan.pa440.license.expired[{#FEATURE}]','0','31d','365d','0','3','','','','',NULL,'1283','','','0','','','','','2',NULL,'Indicates whether the license `{#DESCRIPTION}` has expired.','0','7d','0','','48388','','','','','200','1','0','','','0','0','0','0','0','0','0','1ba835176e0d4adc8b7dc7b87926df3d','0','2','0'), ('48458','18','','10653','License [{#FEATURE}]: Expires on','pan.pa440.license.expires[{#FEATURE}]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'The expiration date for the license `{#DESCRIPTION}`.','0','7d','0','','48388','','','','','200','1','0','','','0','0','0','0','0','0','0','0ac5de4e64224f1a994690d2d6662a04','0','2','0'), ('48459','18','','10653','OSPF neighbor [{#NEIGHBORADDR}]: Status','pan.pa440.ospf.neighbor.status[{#NEIGHBORAREA}, {#NEIGHBORADDR}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current state of the OSPF neighbor.','0','7d','0','','48389','','','','','200','1','0','','','0','0','0','0','0','0','0','2d7fccc0df1141c28bf28a7c2553237e','0','2','0'), ('48460','18','','10653','OSPFv3 neighbor [{#NEIGHBORADDR}]: Status','pan.pa440.ospfv3.neighbor.status[{#NEIGHBORAREA}, {#NEIGHBORADDR}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current status of the OSPFv3 neighbor.','0','7d','0','','48390','','','','','200','1','0','','','0','0','0','0','0','0','0','4a227a5e31d34affb5008d6018f711de','0','2','0'), ('48467','18','','10654','Firmware version','dell.server.hw.firmware','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This attribute defines the firmware version of a remote access card.','0','7d','0','','48465','','','','','200','1','0','','','0','0','0','0','0','0','0','103aad19a3374c3ca5817a6f9e3b5401','0','2','0'), ('48468','18','','10654','Hardware model name','dell.server.hw.model','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This attribute defines the model name of the system.','29','7d','0','','48465','','','','','200','1','0','','','0','0','0','0','0','0','0','1c77ed3fe70441228cd99475c70bf61e','0','2','0'), ('48469','18','','10654','Hardware serial number','dell.server.hw.serialnumber','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This attribute defines the service tag of the system.','8','7d','0','','48465','','','','','200','1','0','','','0','0','0','0','0','0','0','c87090e7bc7443e7ac8ec75e5ae8a549','0','2','0'), ('48470','18','','10654','Overall system health status','dell.server.status','0','31d','0','0','3','','','','',NULL,'1288','','','0','','','','','0',NULL,'This attribute defines the overall rollup status of all the components in the system monitored by the remote access card. Includes system, storage, IO devices, iDRAC, CPU, memory, etc.','0','7d','0','','48465','','','','','200','1','0','','','0','0','0','0','0','0','0','fe81d663497d402c81b1e26fe4ea507e','0','2','0'), ('48471','18','','10654','CPU utilization, in %','dell.server.util.cpu','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'CPU utilization.','0','7d','0','','48464','','','','','200','1','0','','','0','0','0','0','0','0','0','0e1f349ff3804a99a1f274134d9a7fb8','0','2','0'), ('48472','18','','10654','IO utilization, in %','dell.server.util.io','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'IO utilization.','0','7d','0','','48464','','','','','200','1','0','','','0','0','0','0','0','0','0','8ba22cb80bd94ee4a92364b7efa1aaea','0','2','0'), ('48473','18','','10654','Memory utilization, in %','dell.server.util.mem','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Memory utilization.','0','7d','0','','48464','','','','','200','1','0','','','0','0','0','0','0','0','0','61370ae82d474daa961494bb3c7dc0f2','0','2','0'), ('48474','18','','10654','SYS utilization, in %','dell.server.util.sys','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'SYS utilization.','0','7d','0','','48464','','','','','200','1','0','','','0','0','0','0','0','0','0','ae4ad90d5a8e437d940888d64554805f','0','2','0'), ('48475','18','','10654','Array controller discovery','dell.server.array.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of disk array controllers.','0','7d','0','','48461','','','','','200','1','0','','','0','0','0','0','0','0','0','92a3b71de182481ba3add9cc77badf67','0','2','0'), ('48476','18','','10654','Battery discovery','dell.server.controller.battery.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of battery controllers.','0','7d','0','','48461','','','','','200','1','0','','','0','0','0','0','0','0','0','038a5de592cd489d9e71de906ddb8d10','0','2','0'), ('48477','18','','10654','FAN discovery','dell.server.fan.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of FAN sensors.','0','7d','0','','48464','','','','','200','1','0','','','0','0','0','0','0','0','0','e08b684570894b20b5f2b7978bbdc6cc','0','2','0'), ('48478','18','','10654','Network interface discovery','dell.server.net.if.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of network interfaces.','0','7d','0','','48463','','','','','200','1','0','','','0','0','0','0','0','0','0','2c726d35378a4eeba24d23e9cb8f7de4','0','2','0'), ('48479','18','','10654','Physical disk discovery','dell.server.physicaldisk.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of physical disks.','0','7d','0','','48462','','','','','200','1','0','','','0','0','0','0','0','0','0','5f0b95a603074c96aafb395f6aedd873','0','2','0'), ('48480','18','','10654','PSU discovery','dell.server.psu.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of PSU sensors.','0','7d','0','','48464','','','','','200','1','0','','','0','0','0','0','0','0','0','fa352e43355843d08901b70ade3a6926','0','2','0'), ('48481','18','','10654','Temperature discovery','dell.server.temp.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of temperature sensors.','0','7d','0','','48464','','','','','200','1','0','','','0','0','0','0','0','0','0','212a1244a4f14afbbea66a06e3ff023f','0','2','0'), ('48482','18','','10654','Virtual disk discovery','dell.server.virtualdisk.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of virtual disks.','0','7d','0','','48462','','','','','200','1','0','','','0','0','0','0','0','0','0','2638370591cd401e9738db1f11329ce6','0','2','0'), ('48486','18','','10654','Controller [{#CNTLR_NAME}]: Status','dell.server.array.status[{#ID}]','0','31d','365d','0','3','','','','',NULL,'1288','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48461','','','','','200','1','0','','','0','0','0','0','0','0','0','444a2f831e374f809f012d19e9ffb8fa','0','2','0'), ('48487','18','','10654','Battery [{#BATTERY_NAME}]: Status','dell.server.controller.battery.status[{#ID}]','0','31d','365d','0','3','','','','',NULL,'1288','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48461','','','','','200','1','0','','','0','0','0','0','0','0','0','cd2bad7a386a4a2dbcbc5ce1921aaa09','0','2','0'), ('48488','18','','10654','Fan [{#SENSOR_NAME}]: Get sensor','dell.server.sensor.fan.get[{#SENSOR_NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Returns the metrics of a sensor.','0','7d','0','','48464','','','','','200','1','0','','','0','0','0','0','0','0','0','be494eecb65644b080bcc896503035e7','0','2','0'), ('48489','18','','10654','Interface [{#IFNAME}]: Status','dell.server.net.if.health[{#IFNAME}]','0','31d','365d','0','3','','','','',NULL,'1288','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48483','','','','','200','1','0','','','0','0','0','0','0','0','0','b72384586f1e472ba4d286281523a430','0','2','0'), ('48490','18','','10654','Interface [{#IFNAME}]: Speed','dell.server.net.if.speed[{#IFNAME}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The network port current link speed.','0','7d','0','','48483','','','','','200','1','0','','','0','0','0','0','0','0','0','ef78ffb8dbfa4aa7b8d75ee67d0b6232','0','2','0'), ('48491','18','','10654','Interface [{#IFNAME}]: State','dell.server.net.if.state[{#IFNAME}]','0','31d','365d','0','3','','','','',NULL,'1289','','','0','','','','','2',NULL,'The known state of the Resource, for example, Enabled. Possible values: Enabled, Disabled, StandbyOffline, StandbySpare, InTest, Starting, Absent, UnavailableOffline, Deferring, Quiesced, Updating, Qualified.','0','7d','0','','48483','','','','','200','1','0','','','0','0','0','0','0','0','0','d04f33b61a5b4fd6acdc89fe89e8d9f6','0','2','0'), ('48492','18','','10654','Interface [{#IFNAME}]: Link status','dell.server.net.if.status[{#IFNAME}]','0','31d','365d','0','3','','','','',NULL,'1286','','','0','','','','','2',NULL,'The status of the link between this port and its link partner. Possible values: Down, Up, null.','0','7d','0','','48483','','','','','200','1','0','','','0','0','0','0','0','0','0','4b82f4e9ec27404e8340a9bff4dd54c9','0','2','0'), ('48493','18','','10654','Physical disk [{#DISK_NAME}]: Media type','dell.server.hw.physicaldisk.media_type[{#DISK_NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The type of media contained in this drive. Possible values: HDD, SSD, SMR, null.','0','7d','0','','48484','','','','','200','1','0','','','0','0','0','0','0','0','0','112cb35eb86748fc84fbc42cb2f27a68','0','2','0'), ('48494','18','','10654','Physical disk [{#DISK_NAME}]: Model name','dell.server.hw.physicaldisk.model[{#DISK_NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The model number of the drive.','0','7d','0','','48484','','','','','200','1','0','','','0','0','0','0','0','0','0','4bd6ed5e76e84b11b8819fa000ed4e34','0','2','0'), ('48495','18','','10654','Physical disk [{#DISK_NAME}]: Serial number','dell.server.hw.physicaldisk.serialnumber[{#DISK_NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The serial number of this drive.','0','7d','0','','48484','','','','','200','1','0','','','0','0','0','0','0','0','0','36243c8fa1ad4bb6b2a3f8f1ad8ceb99','0','2','0'), ('48496','18','','10654','Physical disk [{#DISK_NAME}]: Size','dell.server.hw.physicaldisk.size[{#DISK_NAME}]','0','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size, in bytes, of this drive.','0','7d','0','','48484','','','','','200','1','0','','','0','0','0','0','0','0','0','66eef724488c40f0b9c45c394245c29f','0','2','0'), ('48497','18','','10654','Physical disk [{#DISK_NAME}]: Status','dell.server.hw.physicaldisk.status[{#DISK_NAME}]','0','31d','0','0','3','','','','',NULL,'1288','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48484','','','','','200','1','0','','','0','0','0','0','0','0','0','a2a221a5606744a883c2a914c32e8733','0','2','0'), ('48498','18','','10654','Power supply [{#SENSOR_NAME}]: Get sensor','dell.server.sensor.psu.get[{#SENSOR_NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Returns the metrics of a sensor.','0','7d','0','','48464','','','','','200','1','0','','','0','0','0','0','0','0','0','0d563e9d3f1546ccb0a56afd0627c5ce','0','2','0'), ('48499','18','','10654','Probe [{#SENSOR_NAME}]: Get sensor','dell.server.sensor.temp.get[{#SENSOR_NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Returns the metrics of a sensor.','0','7d','0','','48464','','','','','200','1','0','','','0','0','0','0','0','0','0','3a43f6fa64e046e79d510e0d2eb00403','0','2','0'), ('48500','18','','10654','Virtual disk [{#DISK_NAME}]: RAID status','dell.server.hw.virtualdisk.raid_status[{#DISK_NAME}]','0','31d','365d','0','3','','','','',NULL,'1290','','','0','','','','','2',NULL,'This property represents the RAID specific status. Possible values: Blocked, Degraded, Failed, Foreign, Offline, Online, Ready, Unknown, null.','0','7d','0','','48485','','','','','200','1','0','','','0','0','0','0','0','0','0','28fc2dc811fd49198516c48e65a8cf94','0','2','0'), ('48501','18','','10654','Virtual disk [{#DISK_NAME}]: Read policy','dell.server.hw.virtualdisk.read_policy[{#DISK_NAME}]','0','31d','365d','0','3','','','','',NULL,'1291','','','0','','','','','2',NULL,'Indicates the read cache policy setting for the Volume. Possible values: ReadAhead, NoReadAhead, AdaptiveReadAhead.','0','7d','0','','48485','','','','','200','1','0','','','0','0','0','0','0','0','0','a4a0c80a539741c9aa1ebe2623cb61cf','0','2','0'), ('48502','18','','10654','Virtual disk [{#DISK_NAME}]: Size','dell.server.hw.virtualdisk.size[{#DISK_NAME}]','0','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size in bytes of this Volume.','0','7d','0','','48485','','','','','200','1','0','','','0','0','0','0','0','0','0','375e1eff18f84210975e8726632eed75','0','2','0'), ('48503','18','','10654','Virtual disk [{#DISK_NAME}]: Current state','dell.server.hw.virtualdisk.state[{#DISK_NAME}]','0','31d','365d','0','3','','','','',NULL,'1289','','','0','','','','','2',NULL,'The known state of the Resource, for example, Enabled. Possible values: Enabled, Disabled, StandbyOffline, StandbySpare, InTest, Starting, Absent, UnavailableOffline, Deferring, Quiesced, Updating, Qualified.','0','7d','0','','48485','','','','','200','1','0','','','0','0','0','0','0','0','0','6d638199503a4287adbbbdcbe9c68152','0','2','0'), ('48504','18','','10654','Virtual disk [{#DISK_NAME}]: Status','dell.server.hw.virtualdisk.status[{#DISK_NAME}]','0','31d','365d','0','3','','','','',NULL,'1288','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48485','','','','','200','1','0','','','0','0','0','0','0','0','0','8e57ee881d9c46088f18fa6bcabe9f2d','0','2','0'), ('48505','18','','10654','Virtual disk [{#DISK_NAME}]: Write policy','dell.server.hw.virtualdisk.write_policy[{#DISK_NAME}]','0','31d','365d','0','3','','','','',NULL,'1292','','','0','','','','','2',NULL,'Indicates the write cache policy setting for the Volume. Possible values: WriteThrough, WriteBack, ProtectedWriteBack, UnprotectedWriteBack.','0','7d','0','','48485','','','','','200','1','0','','','0','0','0','0','0','0','0','b55e8a16144541b0b4043ffa7e3e9679','0','2','0'), ('48542','18','','10655','Array controller discovery','array.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Array controller discovery.','0','7d','0','','48514','','','','','200','1','0','','','0','0','0','0','0','0','0','ce45d29db5664f2a8057b59dbacb406c','0','2','0'), ('48543','18','','10655','Battery discovery','battery.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Battery discovery.','0','7d','0','','48515','','','','','200','1','0','','','0','0','0','0','0','0','0','f24ac636401c47ddbbafb571ddbc9653','0','2','0'), ('48544','18','','10655','CPU status discovery','cpu.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPU status discovery.','0','7d','0','','48518','','','','','200','1','0','','','0','0','0','0','0','0','0','4eccdae6174d47b0808bba46de0bad6e','0','2','0'), ('48545','18','','10655','Fan discovery','fan.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Fan discovery.','0','7d','0','','48522','','','','','200','1','0','','','0','0','0','0','0','0','0','7c25c6c19ca44a47adc20f6abcafc765','0','2','0'), ('48546','18','','10655','Memory discovery','memory.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Memory discovery.','0','7d','0','','48529','','','','','200','1','0','','','0','0','0','0','0','0','0','a5af413068f44de78fbd8439b77c0e4a','0','2','0'), ('48547','18','','10655','Network interface discovery','net.if.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of network interfaces.','0','7d','0','','48531','','','','','200','1','0','','','0','0','0','0','0','0','0','e9a4dcd3d9974b1ca2ee36ecfaba92d3','0','2','0'), ('48548','18','','10655','Physical disk discovery','physicaldisk.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Physical disk discovery.','0','7d','0','','48520','','','','','200','1','0','','','0','0','0','0','0','0','0','9b9014d6da704b1b825f879e162efdc8','0','2','0'), ('48549','18','','10655','PSU discovery','psu.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'PSU discovery.','0','7d','0','','48534','','','','','200','1','0','','','0','0','0','0','0','0','0','a303f72921fe4aaf87a58b53409d3e93','0','2','0'), ('48550','18','','10655','System battery discovery','system.battery.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'System battery discovery.','0','7d','0','','48538','','','','','200','1','0','','','0','0','0','0','0','0','0','b0440590b39848758e67dd614844b1bd','0','2','0'), ('48551','18','','10655','Temperature discovery','temp.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Temperature sensor discovery.','0','7d','0','','48535','','','','','200','1','0','','','0','0','0','0','0','0','0','4dcc455d35774521b8b9c37cf0f8ddb3','0','2','0'), ('48552','18','','10655','Virtual disk discovery','virtualdisk.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Virtual disk discovery.','0','7d','0','','48521','','','','','200','1','0','','','0','0','0','0','0','0','0','59ebee32aa89490a9a6ac84c8706fc04','0','2','0'), ('48553','18','','10655','Voltage probe discovery','voltage.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Voltage probe discovery.','0','7d','1','','48539','','','','','200','1','0','','','0','0','0','0','0','0','0','85322325c90646d29fe6db928f28fa03','0','2','0'), ('48554','18','','10655','Controller [{#CNTLR_NAME}]: Model','dell.server.hw.diskarray.model[controllerName.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The controller''s name as represented in Storage Management.','0','7d','0','','48514','','','','','200','1','0','','','0','0','0','0','0','0','0','0d3726a29096447ab2e6bc777266e24c','0','2','0'), ('48555','18','','10655','Controller [{#CNTLR_NAME}]: Status','dell.server.hw.diskarray.status[controllerComponentStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1296','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The status of the controller itself without the propagation of any contained component status. Possible values: 1: Other 2: Unknown 3: OK 4: Non-critical 5: Critical 6: Non-recoverable','0','7d','0','','48514','','','','','200','1','0','','','0','0','0','0','0','0','0','dccc777dbf40477d99824475e0899546','0','2','0'), ('48556','18','','10655','Battery [{#BATTERY_NAME}]: Status','dell.server.hw.battery.status[batteryState.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1293','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 Current state of battery. Possible values: 1: The current state could not be determined. 2: The battery is operating normally. 3: The battery has failed and needs to be replaced. 4: The battery temperature is high or charge level is depleting. 5: The battery is missing or not detected. 6: The battery is undergoing the re-charge phase. 7: The battery voltage or charge level is below the threshold.','0','7d','0','','48515','','','','','200','1','0','','','0','0','0','0','0','0','0','641a35177d934e58afd3abf701dafcde','0','2','0'), ('48557','18','','10655','CPU [{#CPU_FQDD}]: State','dell.server.cpu.state[cpu.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1299','','','0','','','','','2',NULL,'This attribute defines the reading of the processor device status probe.','0','7d','0','','48518','','','','','200','1','0','','','0','0','0','0','0','0','0','3e5f3afa1bd9466f80bc384df5e6adde','0','2','0'), ('48558','18','','10655','CPU [{#CPU_FQDD}]: Status','dell.server.cpu.status[cpu.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1296','','','0','','','','','2',NULL,'This attribute defines the status of the processor device status probe. This status will be joined into the `processorDeviceStatus` attribute.','0','7d','0','','48518','','','','','200','1','0','','','0','0','0','0','0','0','0','badfdf4bb0d54474b841335e6f31225b','0','2','0'), ('48559','18','','10655','Fan [{#FAN_DESCR}]: Speed','dell.server.sensor.fan.speed[{#FAN_DESCR}]','0','31d','365d','0','3','','rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the reading for a cooling device of a subtype other than `coolingDeviceSubTypeIsDiscrete`. When the value for `coolingDeviceSubType` is other than `coolingDeviceSubTypeIsDiscrete`, the value returned for this attribute is the speed in RPM or the "OFF/ON" value of the cooling device. When the value for `coolingDeviceSubType` is `coolingDeviceSubTypeIsDiscrete`, a value is not returned for this attribute.','0','7d','0','','48522','','','','','200','1','0','','','0','0','0','0','0','0','0','aed80b32cd744e74a3dd6be26fb7264d','0','2','0'), ('48560','18','','10655','Fan [{#FAN_DESCR}]: Status','dell.server.sensor.fan.status[{#FAN_DESCR}]','0','31d','0','0','3','','','','',NULL,'1300','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the probe status of the cooling device.','0','7d','0','','48522','','','','','200','1','0','','','0','0','0','0','0','0','0','77640960a1c14237af2a9241453b01bc','0','2','0'), ('48561','18','','10655','Memory [{#SNMPVALUE}]: Size','dell.server.memory.size[{#SNMPVALUE}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'This attribute defines the size, in KB, of the memory device. Zero indicates no memory installed; 2,147,483,647 indicates an unknown memory size.','0','7d','0','','48529','','','','','200','1','0','','','0','0','0','0','0','0','0','bc5e6f0f7f854bddab8540eaff42469c','0','2','0'), ('48562','18','','10655','Memory [{#SNMPVALUE}]: Status','dell.server.memory.status[{#SNMPVALUE}]','0','31d','365d','0','3','','','','',NULL,'1296','','','0','','','','','2',NULL,'This attribute defines the status of the memory device.','0','7d','0','','48529','','','','','200','1','0','','','0','0','0','0','0','0','0','51e7926cb91747ceb27e7e592b2567c8','0','2','0'), ('48563','18','','10655','NIC [{#NIC_FQDD}/{#NIC_MAC}]: Link status','dell.server.net.if.link[{#NIC_FQDD}]','0','31d','365d','0','3','','','','',NULL,'1295','','','0','','','','','2',NULL,'This attribute defines the connection status of the network device.','0','7d','0','','48531','','','','','200','1','0','','','0','0','0','0','0','0','0','eb081fef5f304d199607a1ed5e4f0128','0','2','0'), ('48564','18','','10655','NIC [{#NIC_FQDD}/{#NIC_MAC}]: Status','dell.server.net.if.status[{#NIC_FQDD}]','0','31d','365d','0','3','','','','',NULL,'1296','','','0','','','','','2',NULL,'This attribute defines the status of the network device.','0','7d','0','','48531','','','','','200','1','0','','','0','0','0','0','0','0','0','dae8d6b509ef4de7ac65f12f87b23b66','0','2','0'), ('48565','18','','10655','Physical disk [{#DISK_NAME}]: Media type','dell.server.hw.physicaldisk.media_type[physicalDiskMediaType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1298','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The media type of the physical disk. Possible Values: 1: The media type could not be determined. 2: Hard Disk Drive (HDD). 3: Solid State Drive (SSD).','0','7d','0','','48520','','','','','200','1','0','','','0','0','0','0','0','0','0','72c8a17c7d2a4613a83a729cd4ca64e6','0','2','0'), ('48566','18','','10655','Physical disk [{#DISK_NAME}]: Model name','dell.server.hw.physicaldisk.model[physicalDiskProductID.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The model number of the physical disk.','0','7d','0','','48520','','','','','200','1','0','','','0','0','0','0','0','0','0','d3d350bc81854a3da72ae694d57062c5','0','2','0'), ('48567','18','','10655','Physical disk [{#DISK_NAME}]: Serial number','dell.server.hw.physicaldisk.serialnumber[physicalDiskSerialNo.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The physical disk''s unique identification number from the manufacturer.','0','7d','0','','48520','','','','','200','1','0','','','0','0','0','0','0','0','0','83f108ffd84444e2b7bbc9e0b103c02b','0','2','0'), ('48568','18','','10655','Physical disk [{#DISK_NAME}]: Size','dell.server.hw.physicaldisk.size[physicalDiskCapacityInMB.{#SNMPINDEX}]','0','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The size of the physical disk in megabytes.','0','7d','0','','48520','','','','','200','1','0','','','0','0','0','0','0','0','0','21601518669d483daea2e5950c449d6e','0','2','0'), ('48569','18','','10655','Physical disk [{#DISK_NAME}]: S.M.A.R.T. Status','dell.server.hw.physicaldisk.smart_status[physicalDiskSmartAlertIndication.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1294','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 Indicates whether the physical disk has received a predictive failure alert.','0','7d','0','','48520','','','','','200','1','0','','','0','0','0','0','0','0','0','0e4f4c25cfb144cf8728ece8ddcf6b90','0','2','0'), ('48570','18','','10655','Physical disk [{#DISK_NAME}]: Status','dell.server.hw.physicaldisk.status[physicalDiskComponentStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1297','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The status of the physical disk itself without the propagation of any contained component status. Possible values: 1: Other 2: Unknown 3: OK 4: Non-critical 5: Critical 6: Non-recoverable','0','7d','0','','48520','','','','','200','1','0','','','0','0','0','0','0','0','0','f58be233639845038d8dad2452f6003a','0','2','0'), ('48571','18','','10655','Power supply [{#PSU_DESCR}]: State','dell.server.sensor.psu.status[powerSupplyStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1296','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the status of the power supply.','0','7d','0','','48534','','','','','200','1','0','','','0','0','0','0','0','0','0','ded0373d94e4467c9495cf94a7d96628','0','2','0'), ('48572','18','','10655','System battery [{#SNMPVALUE}]: Status','dell.server.system.battery[{#SNMPVALUE}]','0','31d','365d','0','3','','','','',NULL,'1296','','','0','','','','','2',NULL,'This attribute defines the status of the battery.','0','7d','0','','48538','','','','','200','1','0','','','0','0','0','0','0','0','0','73e8b6ae099a4109b03417d2c9b849cc','0','2','0'), ('48573','18','','10655','Probe [{#SENSOR_LOCALE}]: Status','dell.server.sensor.temp.status[temperatureProbeStatus.{#SNMPINDEX}]','0','31d','0','0','0','','','','',NULL,'1300','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the probe status of the temperature probe. Possible values: other(1), -- probe status is not one of the following: unknown(2), -- probe status is unknown (not known or monitored) ok(3), -- probe is reporting a value within the thresholds nonCriticalUpper(4), -- probe has crossed the upper noncritical threshold criticalUpper(5), -- probe has crossed the upper critical threshold nonRecoverableUpper(6), -- probe has crossed the upper non-recoverable threshold nonCriticalLower(7), -- probe has crossed the lower noncritical threshold criticalLower(8), -- probe has crossed the lower critical threshold nonRecoverableLower(9), -- probe has crossed the lower non-recoverable threshold failed(10) -- probe is not functional','0','7d','0','','48535','','','','','200','1','0','','','0','0','0','0','0','0','0','e6f3ff1e7a4d460eb436b5798ea73762','0','2','0'), ('48574','18','','10655','Probe [{#SENSOR_LOCALE}]: Value','dell.server.sensor.temp.value[temperatureProbeReading.{#SNMPINDEX}]','0','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the reading for a temperature probe of type other than `temperatureProbeTypeIsDiscrete`. When the value for `temperatureProbeType` is other than `temperatureProbeTypeIsDiscrete`, the value returned for this attribute is the temperature that the probe is reading in Centigrade. When the value for `temperatureProbeType` is `temperatureProbeTypeIsDiscrete`, a value is not returned for this attribute.','0','7d','0','','48535','','','','','200','1','0','','','0','0','0','0','0','0','0','3710a01c29e84b55ae9040c1f69de95a','0','2','0'), ('48575','18','','10655','Virtual disk [{#DISK_NAME}]: Layout type','dell.server.hw.virtualdisk.layout[virtualDiskLayout.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1301','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The virtual disk''s RAID type. Possible values: 1: Not one of the following 2: RAID-0 3: RAID-1 4: RAID-5 5: RAID-6 6: RAID-10 7: RAID-50 8: RAID-60 9: Concatenated RAID 1 10: Concatenated RAID 5','0','7d','0','','48521','','','','','200','1','0','','','0','0','0','0','0','0','0','43e9d39607614eae80550101d029aa6f','0','2','0'), ('48576','18','','10655','Virtual disk [{#DISK_NAME}]: Read policy','dell.server.hw.virtualdisk.read_policy[virtualDiskReadPolicy.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1303','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The read policy used by the controller for read operations on this virtual disk. Possible values: 1: No Read Ahead. 2: Read Ahead. 3: Adaptive Read Ahead.','0','7d','0','','48521','','','','','200','1','0','','','0','0','0','0','0','0','0','94b642e109cf4b509e8e778d4c465cdd','0','2','0'), ('48577','18','','10655','Virtual disk [{#DISK_NAME}]: Size','dell.server.hw.virtualdisk.size[virtualDiskSizeInMB.{#SNMPINDEX}]','0','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The size of the virtual disk in megabytes.','0','7d','0','','48521','','','','','200','1','0','','','0','0','0','0','0','0','0','485837b0fe5a40699210fefaba81ccec','0','2','0'), ('48578','18','','10655','Virtual disk [{#DISK_NAME}]: Operational state','dell.server.hw.virtualdisk.state[virtualDiskOperationalState.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1302','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The state of the virtual disk when there are progressive operations ongoing. Possible values: 1: There is no active operation running. 2: The virtual disk configuration has changed. The physical disks included in the virtual disk are being modified to support the new configuration. 3: A Consistency Check (CC) is being performed on the virtual disk. 4: The virtual disk is being initialized. 5: BackGround Initialization (BGI) is being performed on the virtual disk.','0','7d','0','','48521','','','','','200','1','0','','','0','0','0','0','0','0','0','0a1ec895744b4cfc86410de425f82fa3','0','2','0'), ('48579','18','','10655','Virtual disk [{#DISK_NAME}]: Status','dell.server.hw.virtualdisk.status[virtualDiskState.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1304','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The current state of this virtual disk (which includes any member physical disks.) Possible states: 1: The current state could not be determined. 2: The virtual disk is operating normally or optimally. 3: The virtual disk has encountered a failure. Data on the disk is lost or is about to be lost. 4: The virtual disk encountered a failure with one or all of the constituent redundant physical disks. The data on the virtual disk might no longer be fault tolerant.','0','7d','0','','48521','','','','','200','1','0','','','0','0','0','0','0','0','0','1751727ae3a74e719d5aa66b4fe7254f','0','2','0'), ('48580','18','','10655','Virtual disk [{#DISK_NAME}]: Write policy','dell.server.hw.virtualdisk.write_policy[virtualDiskWritePolicy.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1305','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The write policy used by the controller for write operations on this virtual disk. Possible values: 1: Write Through. 2: Write Back. 3: Force Write Back.','0','7d','0','','48521','','','','','200','1','0','','','0','0','0','0','0','0','0','c80bd3fd5d1249a7b808512a3c62d28b','0','2','0'), ('48581','18','','10655','Voltage probe [{#VPROBE_NAME}]: Status','dell.server.voltage.status[{#VPROBE_NAME}]','0','31d','365d','0','3','','','','',NULL,'1300','','','0','','','','','2',NULL,'This attribute defines the status of the voltage probe.','0','7d','0','','48539','','','','','200','1','0','','','0','0','0','0','0','0','0','61c9b167810f48ccb092b9a558159191','0','2','0'), ('48582','18','','10655','Voltage probe [{#VPROBE_NAME}]: Voltage','dell.server.voltage.value[{#VPROBE_NAME}]','0','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'This attribute defines the reading for a voltage probe.','0','7d','0','','48539','','','','','200','1','0','','','0','0','0','0','0','0','0','05894e7311ee4a5ab0108e4135416ebf','0','2','0'), ('48587','18','','10435','CPU utilization, in %','dell.server.util.cpu','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'CPU utilization.','0','7d','0','','48586','','','','','200','1','0','','','0','0','0','0','0','0','0','b50ae9a0b50347c3b660a4fb49fc5c65','0','2','0'), ('48588','18','','10435','IO utilization, in %','dell.server.util.io','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'IO utilization.','0','7d','0','','48586','','','','','200','1','0','','','0','0','0','0','0','0','0','a8ede4b667794c6099f9b4905d295599','0','2','0'), ('48589','18','','10435','Memory utilization, in %','dell.server.util.mem','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Memory utilization.','0','7d','0','','48586','','','','','200','1','0','','','0','0','0','0','0','0','0','f2ce80918d154056aea196f4f25fe1fe','0','2','0'), ('48590','18','','10435','SYS utilization, in %','dell.server.util.sys','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'SYS utilization.','0','7d','0','','48586','','','','','200','1','0','','','0','0','0','0','0','0','0','fe3587269b0b49d39926cd4985eb49ae','0','2','0'), ('48591','18','','10435','Array controller discovery','dell.server.array.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of disk array controllers.','0','7d','0','','48583','','','','','200','1','0','','','0','0','0','0','0','0','0','0ce3faf4178c4e509b3f7cd808aae910','0','2','0'), ('48592','18','','10435','Battery discovery','dell.server.controller.battery.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of battery controllers.','0','7d','0','','48583','','','','','200','1','0','','','0','0','0','0','0','0','0','0c275c4a75b24d12ad246517b4fb118a','0','2','0'), ('48593','18','','10435','FAN discovery','dell.server.fan.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of FAN sensors.','0','7d','0','','48586','','','','','200','1','0','','','0','0','0','0','0','0','0','e25bb9d517ff49ff8451702b194612cc','0','2','0'), ('48594','18','','10435','Network interface discovery','dell.server.net.if.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of network interfaces.','0','7d','0','','48585','','','','','200','1','0','','','0','0','0','0','0','0','0','99bee5141a23472095010aea70b945aa','0','2','0'), ('48595','18','','10435','Physical disk discovery','dell.server.physicaldisk.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of physical disks.','0','7d','0','','48584','','','','','200','1','0','','','0','0','0','0','0','0','0','065f3e55bf9d4f219b9fbfde0f5b452f','0','2','0'), ('48596','18','','10435','PSU discovery','dell.server.psu.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of PSU sensors.','0','7d','0','','48586','','','','','200','1','0','','','0','0','0','0','0','0','0','8a78b1d5be7b492f878f0e6d56a32cc0','0','2','0'), ('48597','18','','10435','Temperature discovery','dell.server.temp.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of temperature sensors.','0','7d','0','','48586','','','','','200','1','0','','','0','0','0','0','0','0','0','003aa4858047410c8b99065f610ee0a5','0','2','0'), ('48598','18','','10435','Virtual disk discovery','dell.server.virtualdisk.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of virtual disks.','0','7d','0','','48584','','','','','200','1','0','','','0','0','0','0','0','0','0','248c3e103a0c4e5fb6640a69d8f5237d','0','2','0'), ('48602','18','','10435','Controller [{#CNTLR_NAME}]: Status','dell.server.array.status[{#ID}]','0','31d','365d','0','3','','','','',NULL,'1309','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48583','','','','','200','1','0','','','0','0','0','0','0','0','0','7fa996a7ded34068aaa478071dd511d5','0','2','0'), ('48603','18','','10435','Battery [{#BATTERY_NAME}]: Status','dell.server.controller.battery.status[{#ID}]','0','31d','365d','0','3','','','','',NULL,'1309','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48583','','','','','200','1','0','','','0','0','0','0','0','0','0','43e3ca9cc4634445a828e5c32ef01224','0','2','0'), ('48604','18','','10435','Fan [{#SENSOR_NAME}]: Get sensor','dell.server.sensor.fan.get[{#SENSOR_NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Returns the metrics of a sensor.','0','7d','0','','48586','','','','','200','1','0','','','0','0','0','0','0','0','0','f71ec03e1a2d429d9bf57cb84a80d857','0','2','0'), ('48605','18','','10435','Interface [{#IFNAME}]: Status','dell.server.net.if.health[{#IFNAME}]','0','31d','365d','0','3','','','','',NULL,'1309','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48599','','','','','200','1','0','','','0','0','0','0','0','0','0','66a7049fe2ae49beb7a04b2d4686f59a','0','2','0'), ('48606','18','','10435','Interface [{#IFNAME}]: Speed','dell.server.net.if.speed[{#IFNAME}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The network port current link speed.','0','7d','0','','48599','','','','','200','1','0','','','0','0','0','0','0','0','0','1855ac9b35bc4746a688a48dce7a7eb7','0','2','0'), ('48607','18','','10435','Interface [{#IFNAME}]: State','dell.server.net.if.state[{#IFNAME}]','0','31d','365d','0','3','','','','',NULL,'1310','','','0','','','','','2',NULL,'The known state of the Resource, for example, Enabled. Possible values: Enabled, Disabled, StandbyOffline, StandbySpare, InTest, Starting, Absent, UnavailableOffline, Deferring, Quiesced, Updating, Qualified.','0','7d','0','','48599','','','','','200','1','0','','','0','0','0','0','0','0','0','925b558af3c64f3b99b4174d30a715b6','0','2','0'), ('48608','18','','10435','Interface [{#IFNAME}]: Link status','dell.server.net.if.status[{#IFNAME}]','0','31d','365d','0','3','','','','',NULL,'1307','','','0','','','','','2',NULL,'The status of the link between this port and its link partner. Possible values: Down, Up, null.','0','7d','0','','48599','','','','','200','1','0','','','0','0','0','0','0','0','0','697029ebd06f41e8a8e3cd5add4b5d9a','0','2','0'), ('48609','18','','10435','Physical disk [{#DISK_NAME}]: Media type','dell.server.hw.physicaldisk.media_type[{#DISK_NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The type of media contained in this drive. Possible values: HDD, SSD, SMR, null.','0','7d','0','','48600','','','','','200','1','0','','','0','0','0','0','0','0','0','e35609ff46764638835c7e93e30dfd0b','0','2','0'), ('48610','18','','10435','Physical disk [{#DISK_NAME}]: Model name','dell.server.hw.physicaldisk.model[{#DISK_NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The model number of the drive.','0','7d','0','','48600','','','','','200','1','0','','','0','0','0','0','0','0','0','4c7186fd2f954d9a877e2d0b6c1e64dc','0','2','0'), ('48611','18','','10435','Physical disk [{#DISK_NAME}]: Serial number','dell.server.hw.physicaldisk.serialnumber[{#DISK_NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The serial number of this drive.','0','7d','0','','48600','','','','','200','1','0','','','0','0','0','0','0','0','0','2b7546e11f0a48a6b2ac9be0ca6aa298','0','2','0'), ('48612','18','','10435','Physical disk [{#DISK_NAME}]: Size','dell.server.hw.physicaldisk.size[{#DISK_NAME}]','0','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size, in bytes, of this drive.','0','7d','0','','48600','','','','','200','1','0','','','0','0','0','0','0','0','0','ed0e86b646bc461bba5e47aa4e5fe56a','0','2','0'), ('48613','18','','10435','Physical disk [{#DISK_NAME}]: Status','dell.server.hw.physicaldisk.status[{#DISK_NAME}]','0','31d','0','0','3','','','','',NULL,'1309','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48600','','','','','200','1','0','','','0','0','0','0','0','0','0','a24d4f7282be47a8a0beca205638bac8','0','2','0'), ('48614','18','','10435','Power supply [{#SENSOR_NAME}]: Get sensor','dell.server.sensor.psu.get[{#SENSOR_NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Returns the metrics of a sensor.','0','7d','0','','48586','','','','','200','1','0','','','0','0','0','0','0','0','0','6d77620e9fd444598f8a0dce9ccf0b1d','0','2','0'), ('48615','18','','10435','Probe [{#SENSOR_NAME}]: Get sensor','dell.server.sensor.temp.get[{#SENSOR_NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Returns the metrics of a sensor.','0','7d','0','','48586','','','','','200','1','0','','','0','0','0','0','0','0','0','f0fa12d1ef054b9a90edd3f4e9be6971','0','2','0'), ('48616','18','','10435','Virtual disk [{#DISK_NAME}]: RAID status','dell.server.hw.virtualdisk.raid_status[{#DISK_NAME}]','0','31d','365d','0','3','','','','',NULL,'1311','','','0','','','','','2',NULL,'This property represents the RAID specific status. Possible values: Blocked, Degraded, Failed, Foreign, Offline, Online, Ready, Unknown, null.','0','7d','0','','48601','','','','','200','1','0','','','0','0','0','0','0','0','0','c4901f765c8d4f6aafb64ec37cbfef89','0','2','0'), ('48617','18','','10435','Virtual disk [{#DISK_NAME}]: Read policy','dell.server.hw.virtualdisk.read_policy[{#DISK_NAME}]','0','31d','365d','0','3','','','','',NULL,'1312','','','0','','','','','2',NULL,'Indicates the read cache policy setting for the Volume. Possible values: ReadAhead, NoReadAhead, AdaptiveReadAhead.','0','7d','0','','48601','','','','','200','1','0','','','0','0','0','0','0','0','0','efa75959d6674a8db743b14982609f3d','0','2','0'), ('48618','18','','10435','Virtual disk [{#DISK_NAME}]: Size','dell.server.hw.virtualdisk.size[{#DISK_NAME}]','0','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size in bytes of this Volume.','0','7d','0','','48601','','','','','200','1','0','','','0','0','0','0','0','0','0','2321eaf7f4ac4066a6928e0884daaee0','0','2','0'), ('48619','18','','10435','Virtual disk [{#DISK_NAME}]: Current state','dell.server.hw.virtualdisk.state[{#DISK_NAME}]','0','31d','365d','0','3','','','','',NULL,'1310','','','0','','','','','2',NULL,'The known state of the Resource, for example, Enabled. Possible values: Enabled, Disabled, StandbyOffline, StandbySpare, InTest, Starting, Absent, UnavailableOffline, Deferring, Quiesced, Updating, Qualified.','0','7d','0','','48601','','','','','200','1','0','','','0','0','0','0','0','0','0','39c4d9ba46564546b4a2ceb27bd7b771','0','2','0'), ('48620','18','','10435','Virtual disk [{#DISK_NAME}]: Status','dell.server.hw.virtualdisk.status[{#DISK_NAME}]','0','31d','365d','0','3','','','','',NULL,'1309','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48601','','','','','200','1','0','','','0','0','0','0','0','0','0','da546c12247f4d9aa87b49cbaeaab55b','0','2','0'), ('48621','18','','10435','Virtual disk [{#DISK_NAME}]: Write policy','dell.server.hw.virtualdisk.write_policy[{#DISK_NAME}]','0','31d','365d','0','3','','','','',NULL,'1313','','','0','','','','','2',NULL,'Indicates the write cache policy setting for the Volume. Possible values: WriteThrough, WriteBack, ProtectedWriteBack, UnprotectedWriteBack.','0','7d','0','','48601','','','','','200','1','0','','','0','0','0','0','0','0','0','c5f0f311bcb4497da5e909ad8efa0819','0','2','0'), ('48646','18','','10436','Battery discovery','battery.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Battery discovery.','0','7d','0','','48631','','','','','200','1','0','','','0','0','0','0','0','0','0','ed881938a95c4be2b9c7f0d548696f27','0','2','0'), ('48647','18','','10436','CPU status discovery','cpu.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPU status discovery.','0','7d','0','','48633','','','','','200','1','0','','','0','0','0','0','0','0','0','6df0976045b942b8986b8c3a46c2fde4','0','2','0'), ('48648','18','','10436','Memory discovery','memory.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Memory discovery.','0','7d','0','','48639','','','','','200','1','0','','','0','0','0','0','0','0','0','c5603b825445457c8b39662df9fd7db8','0','2','0'), ('48649','18','','10436','Network interface discovery','net.if.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of network interfaces.','0','7d','0','','48640','','','','','200','1','0','','','0','0','0','0','0','0','0','669b97ebc2464988857a2496af5652a0','0','2','0'), ('48650','18','','10436','System battery discovery','system.battery.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'System battery discovery.','0','7d','0','','48644','','','','','200','1','0','','','0','0','0','0','0','0','0','28b27d2152814dda9a9fef602ec78b38','0','2','0'), ('48651','18','','10436','Voltage probe discovery','voltage.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Voltage probe discovery.','0','7d','1','','48645','','','','','200','1','0','','','0','0','0','0','0','0','0','1aa767e3c91e427ebd508df8e49f89dd','0','2','0'), ('48652','18','','10436','Battery [{#BATTERY_NAME}]: Status','dell.server.hw.battery.status[batteryState.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'444','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 Current state of battery. Possible values: 1: The current state could not be determined. 2: The battery is operating normally. 3: The battery has failed and needs to be replaced. 4: The battery temperature is high or charge level is depleting. 5: The battery is missing or not detected. 6: The battery is undergoing the re-charge phase. 7: The battery voltage or charge level is below the threshold.','0','7d','0','','48631','','','','','200','1','0','','','0','0','0','0','0','0','0','9444982ba8cf4c70a03a780fab18a36a','0','2','0'), ('48653','18','','10436','CPU [{#CPU_FQDD}]: State','dell.server.cpu.state[cpu.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1315','','','0','','','','','2',NULL,'This attribute defines the reading of the processor device status probe.','0','7d','0','','48633','','','','','200','1','0','','','0','0','0','0','0','0','0','668835ea1b0a4146a6296d298a9f1607','0','2','0'), ('48654','18','','10436','CPU [{#CPU_FQDD}]: Status','dell.server.cpu.status[cpu.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'446','','','0','','','','','2',NULL,'This attribute defines the status of the processor device status probe. This status will be joined into the `processorDeviceStatus` attribute.','0','7d','0','','48633','','','','','200','1','0','','','0','0','0','0','0','0','0','201313c89ba245a794e5e76778c0dfa4','0','2','0'), ('48655','18','','10436','Fan [{#FAN_DESCR}]: Speed','dell.server.sensor.fan.speed[{#FAN_DESCR}]','0','31d','365d','0','3','','rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the reading for a cooling device of a subtype other than `coolingDeviceSubTypeIsDiscrete`. When the value for `coolingDeviceSubType` is other than `coolingDeviceSubTypeIsDiscrete`, the value returned for this attribute is the speed in RPM or the "OFF/ON" value of the cooling device. When the value for `coolingDeviceSubType` is `coolingDeviceSubTypeIsDiscrete`, a value is not returned for this attribute.','0','7d','0','','48636','','','','','200','1','0','','','0','0','0','0','0','0','0','fdd01d80c11e41e3aa1c8975b4f2b926','0','2','0'), ('48656','18','','10436','Fan [{#FAN_DESCR}]: Status','dell.server.sensor.fan.status[{#FAN_DESCR}]','0','31d','0','0','3','','','','',NULL,'449','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the probe status of the cooling device.','0','7d','0','','48636','','','','','200','1','0','','','0','0','0','0','0','0','0','028a4cd49fd04e92aac769f4e38a40c9','0','2','0'), ('48657','18','','10436','Memory [{#SNMPVALUE}]: Size','dell.server.memory.size[{#SNMPVALUE}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'This attribute defines the size, in KB, of the memory device. Zero indicates no memory installed; 2,147,483,647 indicates an unknown memory size.','0','7d','0','','48639','','','','','200','1','0','','','0','0','0','0','0','0','0','4c857762cecb45fe8bb545b5cc786d9c','0','2','0'), ('48658','18','','10436','Memory [{#SNMPVALUE}]: Status','dell.server.memory.status[{#SNMPVALUE}]','0','31d','365d','0','3','','','','',NULL,'446','','','0','','','','','2',NULL,'This attribute defines the status of the memory device.','0','7d','0','','48639','','','','','200','1','0','','','0','0','0','0','0','0','0','c692910b52774a33aabaff78e46cc855','0','2','0'), ('48659','18','','10436','NIC [{#NIC_FQDD}/{#NIC_MAC}]: Link status','dell.server.net.if.link[{#NIC_FQDD}]','0','31d','365d','0','3','','','','',NULL,'1314','','','0','','','','','2',NULL,'This attribute defines the connection status of the network device.','0','7d','0','','48640','','','','','200','1','0','','','0','0','0','0','0','0','0','e6728405f5c64aec8822190e868625d3','0','2','0'), ('48660','18','','10436','NIC [{#NIC_FQDD}/{#NIC_MAC}]: Status','dell.server.net.if.status[{#NIC_FQDD}]','0','31d','365d','0','3','','','','',NULL,'446','','','0','','','','','2',NULL,'This attribute defines the status of the network device.','0','7d','0','','48640','','','','','200','1','0','','','0','0','0','0','0','0','0','396dee5189a14314a861a04d9a0dcacc','0','2','0'), ('48661','18','','10436','System battery [{#SNMPVALUE}]: Status','dell.server.system.battery[{#SNMPVALUE}]','0','31d','365d','0','3','','','','',NULL,'446','','','0','','','','','2',NULL,'This attribute defines the status of the battery.','0','7d','0','','48644','','','','','200','1','0','','','0','0','0','0','0','0','0','89887fe6674e42ac985018f1da7c86e0','0','2','0'), ('48662','18','','10436','Virtual disk [{#DISK_NAME}]: Read policy','dell.server.hw.virtualdisk.read_policy[virtualDiskReadPolicy.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'452','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The read policy used by the controller for read operations on this virtual disk. Possible values: 1: No Read Ahead. 2: Read Ahead. 3: Adaptive Read Ahead.','0','7d','0','','48635','','','','','200','1','0','','','0','0','0','0','0','0','0','9bcd5c8774d64293a3c03135df0026bf','0','2','0'), ('48663','18','','10436','Virtual disk [{#DISK_NAME}]: Write policy','dell.server.hw.virtualdisk.write_policy[virtualDiskWritePolicy.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'454','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The write policy used by the controller for write operations on this virtual disk. Possible values: 1: Write Through. 2: Write Back. 3: Force Write Back.','0','7d','0','','48635','','','','','200','1','0','','','0','0','0','0','0','0','0','d599f3c67807443b82c9ec83af325142','0','2','0'), ('48664','18','','10436','Voltage probe [{#VPROBE_NAME}]: Status','dell.server.voltage.status[{#VPROBE_NAME}]','0','31d','365d','0','3','','','','',NULL,'449','','','0','','','','','2',NULL,'This attribute defines the status of the voltage probe.','0','7d','0','','48645','','','','','200','1','0','','','0','0','0','0','0','0','0','2b9a84f4a7fb429081a22394ba9ef81f','0','2','0'), ('48665','18','','10436','Voltage probe [{#VPROBE_NAME}]: Voltage','dell.server.voltage.value[{#VPROBE_NAME}]','0','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'This attribute defines the reading for a voltage probe.','0','7d','0','','48645','','','','','200','1','0','','','0','0','0','0','0','0','0','053c9f3e14cc438795b0a7911ab57854','0','2','0'), ('48670','18','','10437','CPU utilization, in %','dell.server.util.cpu','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'CPU utilization.','0','7d','0','','48669','','','','','200','1','0','','','0','0','0','0','0','0','0','46c8cbc75634425b88bbe746c0d3ebef','0','2','0'), ('48671','18','','10437','IO utilization, in %','dell.server.util.io','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'IO utilization.','0','7d','0','','48669','','','','','200','1','0','','','0','0','0','0','0','0','0','4ac933e796074014aeb7fa6d3ec16b81','0','2','0'), ('48672','18','','10437','Memory utilization, in %','dell.server.util.mem','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Memory utilization.','0','7d','0','','48669','','','','','200','1','0','','','0','0','0','0','0','0','0','d2df292726e144559fec8adc302d05b3','0','2','0'), ('48673','18','','10437','SYS utilization, in %','dell.server.util.sys','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'SYS utilization.','0','7d','0','','48669','','','','','200','1','0','','','0','0','0','0','0','0','0','cb9797b2d98946549bf07c2682672601','0','2','0'), ('48674','18','','10437','Array controller discovery','dell.server.array.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of disk array controllers.','0','7d','0','','48666','','','','','200','1','0','','','0','0','0','0','0','0','0','57f6fe0a9cef448e9a1e05a42886d74b','0','2','0'), ('48675','18','','10437','Battery discovery','dell.server.controller.battery.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of battery controllers.','0','7d','0','','48666','','','','','200','1','0','','','0','0','0','0','0','0','0','670f172f96d449b7a49ddef0c9f47044','0','2','0'), ('48676','18','','10437','FAN discovery','dell.server.fan.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of FAN sensors.','0','7d','0','','48669','','','','','200','1','0','','','0','0','0','0','0','0','0','93993bb9443c4e80b062a2495e89c2cb','0','2','0'), ('48677','18','','10437','Network interface discovery','dell.server.net.if.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of network interfaces.','0','7d','0','','48668','','','','','200','1','0','','','0','0','0','0','0','0','0','3cfbe2ab8583452788f53d035985ac3d','0','2','0'), ('48678','18','','10437','Physical disk discovery','dell.server.physicaldisk.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of physical disks.','0','7d','0','','48667','','','','','200','1','0','','','0','0','0','0','0','0','0','6ca10e649e1541aa8bcd6fa764bbc86d','0','2','0'), ('48679','18','','10437','PSU discovery','dell.server.psu.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of PSU sensors.','0','7d','0','','48669','','','','','200','1','0','','','0','0','0','0','0','0','0','a775028b99ce4ef1bcd7de0dbd42368b','0','2','0'), ('48680','18','','10437','Temperature discovery','dell.server.temp.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of temperature sensors.','0','7d','0','','48669','','','','','200','1','0','','','0','0','0','0','0','0','0','46763af306644040a5372a3222089dcb','0','2','0'), ('48681','18','','10437','Virtual disk discovery','dell.server.virtualdisk.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of virtual disks.','0','7d','0','','48667','','','','','200','1','0','','','0','0','0','0','0','0','0','c891f38a20fe4616bf91bd21baa362a1','0','2','0'), ('48685','18','','10437','Controller [{#CNTLR_NAME}]: Status','dell.server.array.status[{#ID}]','0','31d','365d','0','3','','','','',NULL,'1318','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48666','','','','','200','1','0','','','0','0','0','0','0','0','0','0021ba826a8c4b068b5cae8149a64b16','0','2','0'), ('48686','18','','10437','Battery [{#BATTERY_NAME}]: Status','dell.server.controller.battery.status[{#ID}]','0','31d','365d','0','3','','','','',NULL,'1318','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48666','','','','','200','1','0','','','0','0','0','0','0','0','0','2af258c29e9f4bdd8f764ff3d88bf993','0','2','0'), ('48687','18','','10437','Fan [{#SENSOR_NAME}]: Get sensor','dell.server.sensor.fan.get[{#SENSOR_NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Returns the metrics of a sensor.','0','7d','0','','48669','','','','','200','1','0','','','0','0','0','0','0','0','0','46c42056f8004caa91a6d9c6e74ca58b','0','2','0'), ('48688','18','','10437','Interface [{#IFNAME}]: Status','dell.server.net.if.health[{#IFNAME}]','0','31d','365d','0','3','','','','',NULL,'1318','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48682','','','','','200','1','0','','','0','0','0','0','0','0','0','9e0cdfe87ecf4622a5b9755d37a966e6','0','2','0'), ('48689','18','','10437','Interface [{#IFNAME}]: Speed','dell.server.net.if.speed[{#IFNAME}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The network port current link speed.','0','7d','0','','48682','','','','','200','1','0','','','0','0','0','0','0','0','0','d42187489b424ccdbb6b9f2d9d2486fb','0','2','0'), ('48690','18','','10437','Interface [{#IFNAME}]: State','dell.server.net.if.state[{#IFNAME}]','0','31d','365d','0','3','','','','',NULL,'1319','','','0','','','','','2',NULL,'The known state of the Resource, for example, Enabled. Possible values: Enabled, Disabled, StandbyOffline, StandbySpare, InTest, Starting, Absent, UnavailableOffline, Deferring, Quiesced, Updating, Qualified.','0','7d','0','','48682','','','','','200','1','0','','','0','0','0','0','0','0','0','b280d103cca745999d50eaca7b1d6936','0','2','0'), ('48691','18','','10437','Interface [{#IFNAME}]: Link status','dell.server.net.if.status[{#IFNAME}]','0','31d','365d','0','3','','','','',NULL,'1316','','','0','','','','','2',NULL,'The status of the link between this port and its link partner. Possible values: Down, Up, null.','0','7d','0','','48682','','','','','200','1','0','','','0','0','0','0','0','0','0','475ee8304c78449bbdd58132f38b39b7','0','2','0'), ('48692','18','','10437','Physical disk [{#DISK_NAME}]: Media type','dell.server.hw.physicaldisk.media_type[{#DISK_NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The type of media contained in this drive. Possible values: HDD, SSD, SMR, null.','0','7d','0','','48683','','','','','200','1','0','','','0','0','0','0','0','0','0','f82a433ebc644ba4bf190a5a980f8ce5','0','2','0'), ('48693','18','','10437','Physical disk [{#DISK_NAME}]: Model name','dell.server.hw.physicaldisk.model[{#DISK_NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The model number of the drive.','0','7d','0','','48683','','','','','200','1','0','','','0','0','0','0','0','0','0','c6eee821d95a4e83808ef7df99165a0c','0','2','0'), ('48694','18','','10437','Physical disk [{#DISK_NAME}]: Serial number','dell.server.hw.physicaldisk.serialnumber[{#DISK_NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The serial number of this drive.','0','7d','0','','48683','','','','','200','1','0','','','0','0','0','0','0','0','0','c5fc21adf5444684be84bb764ff66b60','0','2','0'), ('48695','18','','10437','Physical disk [{#DISK_NAME}]: Size','dell.server.hw.physicaldisk.size[{#DISK_NAME}]','0','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size, in bytes, of this drive.','0','7d','0','','48683','','','','','200','1','0','','','0','0','0','0','0','0','0','5163fa516eeb469c896118ddd99faca9','0','2','0'), ('48696','18','','10437','Physical disk [{#DISK_NAME}]: Status','dell.server.hw.physicaldisk.status[{#DISK_NAME}]','0','31d','0','0','3','','','','',NULL,'1318','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48683','','','','','200','1','0','','','0','0','0','0','0','0','0','ae81696c53b24c40bf0a984d881fa206','0','2','0'), ('48697','18','','10437','Power supply [{#SENSOR_NAME}]: Get sensor','dell.server.sensor.psu.get[{#SENSOR_NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Returns the metrics of a sensor.','0','7d','0','','48669','','','','','200','1','0','','','0','0','0','0','0','0','0','7949614f006244ad898ae27d0a9b4f84','0','2','0'), ('48698','18','','10437','Probe [{#SENSOR_NAME}]: Get sensor','dell.server.sensor.temp.get[{#SENSOR_NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Returns the metrics of a sensor.','0','7d','0','','48669','','','','','200','1','0','','','0','0','0','0','0','0','0','9bf746e182804bb5a694267b339e37c5','0','2','0'), ('48699','18','','10437','Virtual disk [{#DISK_NAME}]: RAID status','dell.server.hw.virtualdisk.raid_status[{#DISK_NAME}]','0','31d','365d','0','3','','','','',NULL,'1320','','','0','','','','','2',NULL,'This property represents the RAID specific status. Possible values: Blocked, Degraded, Failed, Foreign, Offline, Online, Ready, Unknown, null.','0','7d','0','','48684','','','','','200','1','0','','','0','0','0','0','0','0','0','3d29d7c490c9409da85dddf894fa370e','0','2','0'), ('48700','18','','10437','Virtual disk [{#DISK_NAME}]: Read policy','dell.server.hw.virtualdisk.read_policy[{#DISK_NAME}]','0','31d','365d','0','3','','','','',NULL,'1321','','','0','','','','','2',NULL,'Indicates the read cache policy setting for the Volume. Possible values: ReadAhead, NoReadAhead, AdaptiveReadAhead.','0','7d','0','','48684','','','','','200','1','0','','','0','0','0','0','0','0','0','087b29aa0d864313b7f9ae771af83ded','0','2','0'), ('48701','18','','10437','Virtual disk [{#DISK_NAME}]: Size','dell.server.hw.virtualdisk.size[{#DISK_NAME}]','0','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size in bytes of this Volume.','0','7d','0','','48684','','','','','200','1','0','','','0','0','0','0','0','0','0','b1f36a733e8442dd95f3a4cd16e38370','0','2','0'), ('48702','18','','10437','Virtual disk [{#DISK_NAME}]: Current state','dell.server.hw.virtualdisk.state[{#DISK_NAME}]','0','31d','365d','0','3','','','','',NULL,'1319','','','0','','','','','2',NULL,'The known state of the Resource, for example, Enabled. Possible values: Enabled, Disabled, StandbyOffline, StandbySpare, InTest, Starting, Absent, UnavailableOffline, Deferring, Quiesced, Updating, Qualified.','0','7d','0','','48684','','','','','200','1','0','','','0','0','0','0','0','0','0','44f663f292554323a03dcbeb1c84c19e','0','2','0'), ('48703','18','','10437','Virtual disk [{#DISK_NAME}]: Status','dell.server.hw.virtualdisk.status[{#DISK_NAME}]','0','31d','365d','0','3','','','','',NULL,'1318','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48684','','','','','200','1','0','','','0','0','0','0','0','0','0','edfe6f57e7314b01b4e67c4a8631c025','0','2','0'), ('48704','18','','10437','Virtual disk [{#DISK_NAME}]: Write policy','dell.server.hw.virtualdisk.write_policy[{#DISK_NAME}]','0','31d','365d','0','3','','','','',NULL,'1322','','','0','','','','','2',NULL,'Indicates the write cache policy setting for the Volume. Possible values: WriteThrough, WriteBack, ProtectedWriteBack, UnprotectedWriteBack.','0','7d','0','','48684','','','','','200','1','0','','','0','0','0','0','0','0','0','19d3a0f1c9574db6b408e65cc9b54be3','0','2','0'), ('48729','18','','10438','Battery discovery','battery.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Battery discovery.','0','7d','0','','48714','','','','','200','1','0','','','0','0','0','0','0','0','0','5ca20f2fd3c34b03bc3e0e926a250a12','0','2','0'), ('48730','18','','10438','CPU status discovery','cpu.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPU status discovery.','0','7d','0','','48716','','','','','200','1','0','','','0','0','0','0','0','0','0','17db79dcd7c04d798e7a8b04614a7ef3','0','2','0'), ('48731','18','','10438','Memory discovery','memory.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Memory discovery.','0','7d','0','','48722','','','','','200','1','0','','','0','0','0','0','0','0','0','458cc1949b654938a932ccaeec481c67','0','2','0'), ('48732','18','','10438','Network interface discovery','net.if.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of network interfaces.','0','7d','0','','48723','','','','','200','1','0','','','0','0','0','0','0','0','0','46889540e5b74ea2b569e3efcb7bc3a8','0','2','0'), ('48733','18','','10438','System battery discovery','system.battery.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'System battery discovery.','0','7d','0','','48727','','','','','200','1','0','','','0','0','0','0','0','0','0','bfee1b1ae17c446fbafa3ac47189d28f','0','2','0'), ('48734','18','','10438','Voltage probe discovery','voltage.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Voltage probe discovery.','0','7d','1','','48728','','','','','200','1','0','','','0','0','0','0','0','0','0','66b27f55e9484eaf970bf5bdb02ef09b','0','2','0'), ('48735','18','','10438','Battery [{#BATTERY_NAME}]: Status','dell.server.hw.battery.status[batteryState.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'457','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 Current state of battery. Possible values: 1: The current state could not be determined. 2: The battery is operating normally. 3: The battery has failed and needs to be replaced. 4: The battery temperature is high or charge level is depleting. 5: The battery is missing or not detected. 6: The battery is undergoing the re-charge phase. 7: The battery voltage or charge level is below the threshold.','0','7d','0','','48714','','','','','200','1','0','','','0','0','0','0','0','0','0','615fa3adb8664879ba577f6b334eefb8','0','2','0'), ('48736','18','','10438','CPU [{#CPU_FQDD}]: State','dell.server.cpu.state[cpu.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1324','','','0','','','','','2',NULL,'This attribute defines the reading of the processor device status probe.','0','7d','0','','48716','','','','','200','1','0','','','0','0','0','0','0','0','0','7f3a7fbad20e4d6f96d2d55e9987d92d','0','2','0'), ('48737','18','','10438','CPU [{#CPU_FQDD}]: Status','dell.server.cpu.status[cpu.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'459','','','0','','','','','2',NULL,'This attribute defines the status of the processor device status probe. This status will be joined into the `processorDeviceStatus` attribute.','0','7d','0','','48716','','','','','200','1','0','','','0','0','0','0','0','0','0','bd6f4d52db2c415d9dbc97339c314fb8','0','2','0'), ('48738','18','','10438','Fan [{#FAN_DESCR}]: Speed','dell.server.sensor.fan.speed[{#FAN_DESCR}]','0','31d','365d','0','3','','rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the reading for a cooling device of a subtype other than `coolingDeviceSubTypeIsDiscrete`. When the value for `coolingDeviceSubType` is other than `coolingDeviceSubTypeIsDiscrete`, the value returned for this attribute is the speed in RPM or the "OFF/ON" value of the cooling device. When the value for `coolingDeviceSubType` is `coolingDeviceSubTypeIsDiscrete`, a value is not returned for this attribute.','0','7d','0','','48719','','','','','200','1','0','','','0','0','0','0','0','0','0','146df75c66474f11a1540d6cb174094c','0','2','0'), ('48739','18','','10438','Fan [{#FAN_DESCR}]: Status','dell.server.sensor.fan.status[{#FAN_DESCR}]','0','31d','0','0','3','','','','',NULL,'462','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the probe status of the cooling device.','0','7d','0','','48719','','','','','200','1','0','','','0','0','0','0','0','0','0','cf5a92d04a694057bf596b5cf5e4af05','0','2','0'), ('48740','18','','10438','Memory [{#SNMPVALUE}]: Size','dell.server.memory.size[{#SNMPVALUE}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'This attribute defines the size, in KB, of the memory device. Zero indicates no memory installed; 2,147,483,647 indicates an unknown memory size.','0','7d','0','','48722','','','','','200','1','0','','','0','0','0','0','0','0','0','f529edd65222419ca7f122787ca1e52a','0','2','0'), ('48741','18','','10438','Memory [{#SNMPVALUE}]: Status','dell.server.memory.status[{#SNMPVALUE}]','0','31d','365d','0','3','','','','',NULL,'459','','','0','','','','','2',NULL,'This attribute defines the status of the memory device.','0','7d','0','','48722','','','','','200','1','0','','','0','0','0','0','0','0','0','1c6b99e33fd3402da694f6ed6112fe77','0','2','0'), ('48742','18','','10438','NIC [{#NIC_FQDD}/{#NIC_MAC}]: Link status','dell.server.net.if.link[{#NIC_FQDD}]','0','31d','365d','0','3','','','','',NULL,'1323','','','0','','','','','2',NULL,'This attribute defines the connection status of the network device.','0','7d','0','','48723','','','','','200','1','0','','','0','0','0','0','0','0','0','e00bf0282cab4a6cad2cb076f7c1193d','0','2','0'), ('48743','18','','10438','NIC [{#NIC_FQDD}/{#NIC_MAC}]: Status','dell.server.net.if.status[{#NIC_FQDD}]','0','31d','365d','0','3','','','','',NULL,'459','','','0','','','','','2',NULL,'This attribute defines the status of the network device.','0','7d','0','','48723','','','','','200','1','0','','','0','0','0','0','0','0','0','4d279ebb389d4d8da852f52194be6515','0','2','0'), ('48744','18','','10438','System battery [{#SNMPVALUE}]: Status','dell.server.system.battery[{#SNMPVALUE}]','0','31d','365d','0','3','','','','',NULL,'459','','','0','','','','','2',NULL,'This attribute defines the status of the battery.','0','7d','0','','48727','','','','','200','1','0','','','0','0','0','0','0','0','0','19e1b59177674c4497044b86c0ac316a','0','2','0'), ('48745','18','','10438','Virtual disk [{#DISK_NAME}]: Read policy','dell.server.hw.virtualdisk.read_policy[virtualDiskReadPolicy.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'465','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The read policy used by the controller for read operations on this virtual disk. Possible values: 1: No Read Ahead. 2: Read Ahead. 3: Adaptive Read Ahead.','0','7d','0','','48718','','','','','200','1','0','','','0','0','0','0','0','0','0','056f579ff9004f3fb9456b529ebb8c93','0','2','0'), ('48746','18','','10438','Virtual disk [{#DISK_NAME}]: Write policy','dell.server.hw.virtualdisk.write_policy[virtualDiskWritePolicy.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'467','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The write policy used by the controller for write operations on this virtual disk. Possible values: 1: Write Through. 2: Write Back. 3: Force Write Back.','0','7d','0','','48718','','','','','200','1','0','','','0','0','0','0','0','0','0','6cb2b0370662417eaf6059894e6cb582','0','2','0'), ('48747','18','','10438','Voltage probe [{#VPROBE_NAME}]: Status','dell.server.voltage.status[{#VPROBE_NAME}]','0','31d','365d','0','3','','','','',NULL,'462','','','0','','','','','2',NULL,'This attribute defines the status of the voltage probe.','0','7d','0','','48728','','','','','200','1','0','','','0','0','0','0','0','0','0','3eae308500234ea0ac4e32a3046fffa6','0','2','0'), ('48748','18','','10438','Voltage probe [{#VPROBE_NAME}]: Voltage','dell.server.voltage.value[{#VPROBE_NAME}]','0','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'This attribute defines the reading for a voltage probe.','0','7d','0','','48728','','','','','200','1','0','','','0','0','0','0','0','0','0','2d151ba0db394407b354bac35d94cae9','0','2','0'), ('48755','18','','10656','Firmware version','dell.server.hw.firmware','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This attribute defines the firmware version of a remote access card.','0','7d','0','','48753','','','','','200','1','0','','','0','0','0','0','0','0','0','6da3df75f68345e98a0169351f2fdbcf','0','2','0'), ('48756','18','','10656','Hardware model name','dell.server.hw.model','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This attribute defines the model name of the system.','29','7d','0','','48753','','','','','200','1','0','','','0','0','0','0','0','0','0','aeccd99feba8400aa45cb836b4d9ea3a','0','2','0'), ('48757','18','','10656','Hardware serial number','dell.server.hw.serialnumber','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This attribute defines the service tag of the system.','8','7d','0','','48753','','','','','200','1','0','','','0','0','0','0','0','0','0','c57b2ba6346b4768be23d01d10f3b83b','0','2','0'), ('48758','18','','10656','Overall system health status','dell.server.status','0','31d','0','0','3','','','','',NULL,'1327','','','0','','','','','0',NULL,'This attribute defines the overall rollup status of all the components in the system monitored by the remote access card. Includes system, storage, IO devices, iDRAC, CPU, memory, etc.','0','7d','0','','48753','','','','','200','1','0','','','0','0','0','0','0','0','0','429cd5c9a52944899198a70630c82008','0','2','0'), ('48759','18','','10656','CPU utilization, in %','dell.server.util.cpu','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'CPU utilization.','0','7d','0','','48752','','','','','200','1','0','','','0','0','0','0','0','0','0','e04a65c2c83640f694d594f715ed0456','0','2','0'), ('48760','18','','10656','IO utilization, in %','dell.server.util.io','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'IO utilization.','0','7d','0','','48752','','','','','200','1','0','','','0','0','0','0','0','0','0','d2ce7586a8ed4846817982ed7035bbb7','0','2','0'), ('48761','18','','10656','Memory utilization, in %','dell.server.util.mem','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Memory utilization.','0','7d','0','','48752','','','','','200','1','0','','','0','0','0','0','0','0','0','f22138f68b8c46cabf1716f1ba7bcec9','0','2','0'), ('48762','18','','10656','SYS utilization, in %','dell.server.util.sys','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'SYS utilization.','0','7d','0','','48752','','','','','200','1','0','','','0','0','0','0','0','0','0','d50e338b587f4e64b80b608428e6f95e','0','2','0'), ('48763','18','','10656','Array controller discovery','dell.server.array.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of disk array controllers.','0','7d','0','','48749','','','','','200','1','0','','','0','0','0','0','0','0','0','27b8d7b67306418b887e0e1c025cad1f','0','2','0'), ('48764','18','','10656','Battery discovery','dell.server.controller.battery.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of battery controllers.','0','7d','0','','48749','','','','','200','1','0','','','0','0','0','0','0','0','0','71504dca399244f8b833552828dc99d6','0','2','0'), ('48765','18','','10656','FAN discovery','dell.server.fan.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of FAN sensors.','0','7d','0','','48752','','','','','200','1','0','','','0','0','0','0','0','0','0','b5419132c641433887d21573ed57803a','0','2','0'), ('48766','18','','10656','Network interface discovery','dell.server.net.if.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of network interfaces.','0','7d','0','','48751','','','','','200','1','0','','','0','0','0','0','0','0','0','4ffe2d326f414e8d9fe1c361abd3bde7','0','2','0'), ('48767','18','','10656','Physical disk discovery','dell.server.physicaldisk.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of physical disks.','0','7d','0','','48750','','','','','200','1','0','','','0','0','0','0','0','0','0','b5348e19cae14ae2b03d7233af32e0b4','0','2','0'), ('48768','18','','10656','PSU discovery','dell.server.psu.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of PSU sensors.','0','7d','0','','48752','','','','','200','1','0','','','0','0','0','0','0','0','0','b00da28f7005454485640302d3b4159c','0','2','0'), ('48769','18','','10656','Temperature discovery','dell.server.temp.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of temperature sensors.','0','7d','0','','48752','','','','','200','1','0','','','0','0','0','0','0','0','0','71b1c58fe83b424582396732ecee39f0','0','2','0'), ('48770','18','','10656','Virtual disk discovery','dell.server.virtualdisk.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of virtual disks.','0','7d','0','','48750','','','','','200','1','0','','','0','0','0','0','0','0','0','92566cdbe5944d44bb5731ddaac795c7','0','2','0'), ('48774','18','','10656','Controller [{#CNTLR_NAME}]: Status','dell.server.array.status[{#ID}]','0','31d','365d','0','3','','','','',NULL,'1327','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48749','','','','','200','1','0','','','0','0','0','0','0','0','0','d4bae6dc224943aaa66c45769e466745','0','2','0'), ('48775','18','','10656','Battery [{#BATTERY_NAME}]: Status','dell.server.controller.battery.status[{#ID}]','0','31d','365d','0','3','','','','',NULL,'1327','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48749','','','','','200','1','0','','','0','0','0','0','0','0','0','739a63c6cce543079a2cccda1a32b69c','0','2','0'), ('48776','18','','10656','Fan [{#SENSOR_NAME}]: Get sensor','dell.server.sensor.fan.get[{#SENSOR_NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Returns the metrics of a sensor.','0','7d','0','','48752','','','','','200','1','0','','','0','0','0','0','0','0','0','389697a7fb8543118c0f68a2b3791184','0','2','0'), ('48777','18','','10656','Interface [{#IFNAME}]: Status','dell.server.net.if.health[{#IFNAME}]','0','31d','365d','0','3','','','','',NULL,'1327','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48771','','','','','200','1','0','','','0','0','0','0','0','0','0','a839b259f5154f218badb30364b7b7df','0','2','0'), ('48778','18','','10656','Interface [{#IFNAME}]: Speed','dell.server.net.if.speed[{#IFNAME}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The network port current link speed.','0','7d','0','','48771','','','','','200','1','0','','','0','0','0','0','0','0','0','2119fcd485e74cd2b7157ee154af790f','0','2','0'), ('48779','18','','10656','Interface [{#IFNAME}]: State','dell.server.net.if.state[{#IFNAME}]','0','31d','365d','0','3','','','','',NULL,'1328','','','0','','','','','2',NULL,'The known state of the Resource, for example, Enabled. Possible values: Enabled, Disabled, StandbyOffline, StandbySpare, InTest, Starting, Absent, UnavailableOffline, Deferring, Quiesced, Updating, Qualified.','0','7d','0','','48771','','','','','200','1','0','','','0','0','0','0','0','0','0','aee183b298004a38bd51f8446efc97ce','0','2','0'), ('48780','18','','10656','Interface [{#IFNAME}]: Link status','dell.server.net.if.status[{#IFNAME}]','0','31d','365d','0','3','','','','',NULL,'1325','','','0','','','','','2',NULL,'The status of the link between this port and its link partner. Possible values: Down, Up, null.','0','7d','0','','48771','','','','','200','1','0','','','0','0','0','0','0','0','0','f06af1f337c6466f9c5706cddc8b7915','0','2','0'), ('48781','18','','10656','Physical disk [{#DISK_NAME}]: Media type','dell.server.hw.physicaldisk.media_type[{#DISK_NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The type of media contained in this drive. Possible values: HDD, SSD, SMR, null.','0','7d','0','','48772','','','','','200','1','0','','','0','0','0','0','0','0','0','bd17c2643991431891563776da992e07','0','2','0'), ('48782','18','','10656','Physical disk [{#DISK_NAME}]: Model name','dell.server.hw.physicaldisk.model[{#DISK_NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The model number of the drive.','0','7d','0','','48772','','','','','200','1','0','','','0','0','0','0','0','0','0','4547fec41f5f4896bf23325c72293d74','0','2','0'), ('48783','18','','10656','Physical disk [{#DISK_NAME}]: Serial number','dell.server.hw.physicaldisk.serialnumber[{#DISK_NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The serial number of this drive.','0','7d','0','','48772','','','','','200','1','0','','','0','0','0','0','0','0','0','e6dbc8a224ba4501904167f9a69f542a','0','2','0'), ('48784','18','','10656','Physical disk [{#DISK_NAME}]: Size','dell.server.hw.physicaldisk.size[{#DISK_NAME}]','0','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size, in bytes, of this drive.','0','7d','0','','48772','','','','','200','1','0','','','0','0','0','0','0','0','0','da4f9f2c063149a9b148907566b699bf','0','2','0'), ('48785','18','','10656','Physical disk [{#DISK_NAME}]: Status','dell.server.hw.physicaldisk.status[{#DISK_NAME}]','0','31d','0','0','3','','','','',NULL,'1327','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48772','','','','','200','1','0','','','0','0','0','0','0','0','0','9ffb57530887440c8e2b37033c1313f8','0','2','0'), ('48786','18','','10656','Power supply [{#SENSOR_NAME}]: Get sensor','dell.server.sensor.psu.get[{#SENSOR_NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Returns the metrics of a sensor.','0','7d','0','','48752','','','','','200','1','0','','','0','0','0','0','0','0','0','8b2b64d5286f4bc69536bccc16669bd9','0','2','0'), ('48787','18','','10656','Probe [{#SENSOR_NAME}]: Get sensor','dell.server.sensor.temp.get[{#SENSOR_NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Returns the metrics of a sensor.','0','7d','0','','48752','','','','','200','1','0','','','0','0','0','0','0','0','0','0c702302c56944b2bfbf0f899366e098','0','2','0'), ('48788','18','','10656','Virtual disk [{#DISK_NAME}]: RAID status','dell.server.hw.virtualdisk.raid_status[{#DISK_NAME}]','0','31d','365d','0','3','','','','',NULL,'1329','','','0','','','','','2',NULL,'This property represents the RAID specific status. Possible values: Blocked, Degraded, Failed, Foreign, Offline, Online, Ready, Unknown, null.','0','7d','0','','48773','','','','','200','1','0','','','0','0','0','0','0','0','0','eefaac7bdaa84bc4a3ef657798a93aae','0','2','0'), ('48789','18','','10656','Virtual disk [{#DISK_NAME}]: Read policy','dell.server.hw.virtualdisk.read_policy[{#DISK_NAME}]','0','31d','365d','0','3','','','','',NULL,'1330','','','0','','','','','2',NULL,'Indicates the read cache policy setting for the Volume. Possible values: ReadAhead, NoReadAhead, AdaptiveReadAhead.','0','7d','0','','48773','','','','','200','1','0','','','0','0','0','0','0','0','0','b133fbbbb0774e4db20fc4063fd65936','0','2','0'), ('48790','18','','10656','Virtual disk [{#DISK_NAME}]: Size','dell.server.hw.virtualdisk.size[{#DISK_NAME}]','0','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size in bytes of this Volume.','0','7d','0','','48773','','','','','200','1','0','','','0','0','0','0','0','0','0','ad80600ff7bf49879216172b35826689','0','2','0'), ('48791','18','','10656','Virtual disk [{#DISK_NAME}]: Current state','dell.server.hw.virtualdisk.state[{#DISK_NAME}]','0','31d','365d','0','3','','','','',NULL,'1328','','','0','','','','','2',NULL,'The known state of the Resource, for example, Enabled. Possible values: Enabled, Disabled, StandbyOffline, StandbySpare, InTest, Starting, Absent, UnavailableOffline, Deferring, Quiesced, Updating, Qualified.','0','7d','0','','48773','','','','','200','1','0','','','0','0','0','0','0','0','0','74aee5b600b24332befeb1f9c403693c','0','2','0'), ('48792','18','','10656','Virtual disk [{#DISK_NAME}]: Status','dell.server.hw.virtualdisk.status[{#DISK_NAME}]','0','31d','365d','0','3','','','','',NULL,'1327','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48773','','','','','200','1','0','','','0','0','0','0','0','0','0','2cdf0d7cc69640df96b9d949b37f3f77','0','2','0'), ('48793','18','','10656','Virtual disk [{#DISK_NAME}]: Write policy','dell.server.hw.virtualdisk.write_policy[{#DISK_NAME}]','0','31d','365d','0','3','','','','',NULL,'1331','','','0','','','','','2',NULL,'Indicates the write cache policy setting for the Volume. Possible values: WriteThrough, WriteBack, ProtectedWriteBack, UnprotectedWriteBack.','0','7d','0','','48773','','','','','200','1','0','','','0','0','0','0','0','0','0','fff7446780464364bda19db28cc6854c','0','2','0'), ('48830','18','','10657','Array controller discovery','array.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Array controller discovery.','0','7d','0','','48802','','','','','200','1','0','','','0','0','0','0','0','0','0','f53489a8b45a4cf7bdb9bb7cdc70476c','0','2','0'), ('48831','18','','10657','Battery discovery','battery.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Battery discovery.','0','7d','0','','48803','','','','','200','1','0','','','0','0','0','0','0','0','0','e6ed622097f143a2abc8ab7c96f2fa85','0','2','0'), ('48832','18','','10657','CPU status discovery','cpu.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPU status discovery.','0','7d','0','','48806','','','','','200','1','0','','','0','0','0','0','0','0','0','8ab8bef701d048e69a73f040ad1af21a','0','2','0'), ('48833','18','','10657','Fan discovery','fan.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Fan discovery.','0','7d','0','','48810','','','','','200','1','0','','','0','0','0','0','0','0','0','d94dca2ced174c64be2c2320ea02ab5e','0','2','0'), ('48834','18','','10657','Memory discovery','memory.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Memory discovery.','0','7d','0','','48817','','','','','200','1','0','','','0','0','0','0','0','0','0','3dce052999be497ca8aaf114f95919e8','0','2','0'), ('48835','18','','10657','Network interface discovery','net.if.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of network interfaces.','0','7d','0','','48819','','','','','200','1','0','','','0','0','0','0','0','0','0','12fcb06f08494037beffa958fcc1d29d','0','2','0'), ('48836','18','','10657','Physical disk discovery','physicaldisk.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Physical disk discovery.','0','7d','0','','48808','','','','','200','1','0','','','0','0','0','0','0','0','0','c68af0c8ed7f4cabbf9da31f0c35d728','0','2','0'), ('48837','18','','10657','PSU discovery','psu.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'PSU discovery.','0','7d','0','','48822','','','','','200','1','0','','','0','0','0','0','0','0','0','f3ff069a229d43c39ab3a315f00b8f3a','0','2','0'), ('48838','18','','10657','System battery discovery','system.battery.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'System battery discovery.','0','7d','0','','48826','','','','','200','1','0','','','0','0','0','0','0','0','0','01b77de5966b40b684479fe65c2fc3f1','0','2','0'), ('48839','18','','10657','Temperature discovery','temp.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Temperature sensor discovery.','0','7d','0','','48823','','','','','200','1','0','','','0','0','0','0','0','0','0','1580a53d7d804d99a3e1cd1bd66af855','0','2','0'), ('48840','18','','10657','Virtual disk discovery','virtualdisk.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Virtual disk discovery.','0','7d','0','','48809','','','','','200','1','0','','','0','0','0','0','0','0','0','a5b9d53f6c4f4202b4a525e023a1ce3b','0','2','0'), ('48841','18','','10657','Voltage probe discovery','voltage.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Voltage probe discovery.','0','7d','1','','48827','','','','','200','1','0','','','0','0','0','0','0','0','0','609fe55d31344073b69f2d5972d36c96','0','2','0'), ('48842','18','','10657','Controller [{#CNTLR_NAME}]: Model','dell.server.hw.diskarray.model[controllerName.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The controller''s name as represented in Storage Management.','0','7d','0','','48802','','','','','200','1','0','','','0','0','0','0','0','0','0','b1791e524e8e4c3fa0d436a30aa48e26','0','2','0'), ('48843','18','','10657','Controller [{#CNTLR_NAME}]: Status','dell.server.hw.diskarray.status[controllerComponentStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1335','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The status of the controller itself without the propagation of any contained component status. Possible values: 1: Other 2: Unknown 3: OK 4: Non-critical 5: Critical 6: Non-recoverable','0','7d','0','','48802','','','','','200','1','0','','','0','0','0','0','0','0','0','c0a6d4b50f7a4d98884526adc0282d65','0','2','0'), ('48844','18','','10657','Battery [{#BATTERY_NAME}]: Status','dell.server.hw.battery.status[batteryState.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1332','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 Current state of battery. Possible values: 1: The current state could not be determined. 2: The battery is operating normally. 3: The battery has failed and needs to be replaced. 4: The battery temperature is high or charge level is depleting. 5: The battery is missing or not detected. 6: The battery is undergoing the re-charge phase. 7: The battery voltage or charge level is below the threshold.','0','7d','0','','48803','','','','','200','1','0','','','0','0','0','0','0','0','0','32a7aeec4f714456bcda1c85b20ff8b2','0','2','0'), ('48845','18','','10657','CPU [{#CPU_FQDD}]: State','dell.server.cpu.state[cpu.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1338','','','0','','','','','2',NULL,'This attribute defines the reading of the processor device status probe.','0','7d','0','','48806','','','','','200','1','0','','','0','0','0','0','0','0','0','21638c22932b4902935cded381ecd8da','0','2','0'), ('48846','18','','10657','CPU [{#CPU_FQDD}]: Status','dell.server.cpu.status[cpu.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1335','','','0','','','','','2',NULL,'This attribute defines the status of the processor device status probe. This status will be joined into the `processorDeviceStatus` attribute.','0','7d','0','','48806','','','','','200','1','0','','','0','0','0','0','0','0','0','82ee2aef57234c2a895abb12a88fa080','0','2','0'), ('48847','18','','10657','Fan [{#FAN_DESCR}]: Speed','dell.server.sensor.fan.speed[{#FAN_DESCR}]','0','31d','365d','0','3','','rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the reading for a cooling device of a subtype other than `coolingDeviceSubTypeIsDiscrete`. When the value for `coolingDeviceSubType` is other than `coolingDeviceSubTypeIsDiscrete`, the value returned for this attribute is the speed in RPM or the "OFF/ON" value of the cooling device. When the value for `coolingDeviceSubType` is `coolingDeviceSubTypeIsDiscrete`, a value is not returned for this attribute.','0','7d','0','','48810','','','','','200','1','0','','','0','0','0','0','0','0','0','64f790383afd4bc095111260afca2a3c','0','2','0'), ('48848','18','','10657','Fan [{#FAN_DESCR}]: Status','dell.server.sensor.fan.status[{#FAN_DESCR}]','0','31d','0','0','3','','','','',NULL,'1339','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the probe status of the cooling device.','0','7d','0','','48810','','','','','200','1','0','','','0','0','0','0','0','0','0','803def961ff6436098d04b1d3b071cfe','0','2','0'), ('48849','18','','10657','Memory [{#SNMPVALUE}]: Size','dell.server.memory.size[{#SNMPVALUE}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'This attribute defines the size, in KB, of the memory device. Zero indicates no memory installed; 2,147,483,647 indicates an unknown memory size.','0','7d','0','','48817','','','','','200','1','0','','','0','0','0','0','0','0','0','552d15f0d4e34855aaa003596d2af728','0','2','0'), ('48850','18','','10657','Memory [{#SNMPVALUE}]: Status','dell.server.memory.status[{#SNMPVALUE}]','0','31d','365d','0','3','','','','',NULL,'1335','','','0','','','','','2',NULL,'This attribute defines the status of the memory device.','0','7d','0','','48817','','','','','200','1','0','','','0','0','0','0','0','0','0','da00461cfcfd414385b8ef028a4443ab','0','2','0'), ('48851','18','','10657','NIC [{#NIC_FQDD}/{#NIC_MAC}]: Link status','dell.server.net.if.link[{#NIC_FQDD}]','0','31d','365d','0','3','','','','',NULL,'1334','','','0','','','','','2',NULL,'This attribute defines the connection status of the network device.','0','7d','0','','48819','','','','','200','1','0','','','0','0','0','0','0','0','0','3138082ae9914ab4ac5581bb5dcb045a','0','2','0'), ('48852','18','','10657','NIC [{#NIC_FQDD}/{#NIC_MAC}]: Status','dell.server.net.if.status[{#NIC_FQDD}]','0','31d','365d','0','3','','','','',NULL,'1335','','','0','','','','','2',NULL,'This attribute defines the status of the network device.','0','7d','0','','48819','','','','','200','1','0','','','0','0','0','0','0','0','0','185b1e4d16a64c0ca999631364364462','0','2','0'), ('48853','18','','10657','Physical disk [{#DISK_NAME}]: Media type','dell.server.hw.physicaldisk.media_type[physicalDiskMediaType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1337','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The media type of the physical disk. Possible Values: 1: The media type could not be determined. 2: Hard Disk Drive (HDD). 3: Solid State Drive (SSD).','0','7d','0','','48808','','','','','200','1','0','','','0','0','0','0','0','0','0','e388e6b6999b448bb8c01442e707c510','0','2','0'), ('48854','18','','10657','Physical disk [{#DISK_NAME}]: Model name','dell.server.hw.physicaldisk.model[physicalDiskProductID.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The model number of the physical disk.','0','7d','0','','48808','','','','','200','1','0','','','0','0','0','0','0','0','0','6e1632c7c9524c0bb1c6d47d0dff04f8','0','2','0'), ('48855','18','','10657','Physical disk [{#DISK_NAME}]: Serial number','dell.server.hw.physicaldisk.serialnumber[physicalDiskSerialNo.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The physical disk''s unique identification number from the manufacturer.','0','7d','0','','48808','','','','','200','1','0','','','0','0','0','0','0','0','0','b30d7f393f394eb7838c0152721e7666','0','2','0'), ('48856','18','','10657','Physical disk [{#DISK_NAME}]: Size','dell.server.hw.physicaldisk.size[physicalDiskCapacityInMB.{#SNMPINDEX}]','0','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The size of the physical disk in megabytes.','0','7d','0','','48808','','','','','200','1','0','','','0','0','0','0','0','0','0','20559cb3035c4dac865549a94b1d8d9d','0','2','0'), ('48857','18','','10657','Physical disk [{#DISK_NAME}]: S.M.A.R.T. Status','dell.server.hw.physicaldisk.smart_status[physicalDiskSmartAlertIndication.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1333','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 Indicates whether the physical disk has received a predictive failure alert.','0','7d','0','','48808','','','','','200','1','0','','','0','0','0','0','0','0','0','bdf2526c88df45b98eaf0e99b599a84f','0','2','0'), ('48858','18','','10657','Physical disk [{#DISK_NAME}]: Status','dell.server.hw.physicaldisk.status[physicalDiskComponentStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1336','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The status of the physical disk itself without the propagation of any contained component status. Possible values: 1: Other 2: Unknown 3: OK 4: Non-critical 5: Critical 6: Non-recoverable','0','7d','0','','48808','','','','','200','1','0','','','0','0','0','0','0','0','0','7bb9177022064d278ed2255a46238c72','0','2','0'), ('48859','18','','10657','Power supply [{#PSU_DESCR}]: State','dell.server.sensor.psu.status[powerSupplyStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1335','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the status of the power supply.','0','7d','0','','48822','','','','','200','1','0','','','0','0','0','0','0','0','0','f7421fa124af4654bb1c4d5a29541d1d','0','2','0'), ('48860','18','','10657','System battery [{#SNMPVALUE}]: Status','dell.server.system.battery[{#SNMPVALUE}]','0','31d','365d','0','3','','','','',NULL,'1335','','','0','','','','','2',NULL,'This attribute defines the status of the battery.','0','7d','0','','48826','','','','','200','1','0','','','0','0','0','0','0','0','0','31de734882e54920b74f214ce3d96f54','0','2','0'), ('48861','18','','10657','Probe [{#SENSOR_LOCALE}]: Status','dell.server.sensor.temp.status[temperatureProbeStatus.{#SNMPINDEX}]','0','31d','0','0','0','','','','',NULL,'1339','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the probe status of the temperature probe. Possible values: other(1), -- probe status is not one of the following: unknown(2), -- probe status is unknown (not known or monitored) ok(3), -- probe is reporting a value within the thresholds nonCriticalUpper(4), -- probe has crossed the upper noncritical threshold criticalUpper(5), -- probe has crossed the upper critical threshold nonRecoverableUpper(6), -- probe has crossed the upper non-recoverable threshold nonCriticalLower(7), -- probe has crossed the lower noncritical threshold criticalLower(8), -- probe has crossed the lower critical threshold nonRecoverableLower(9), -- probe has crossed the lower non-recoverable threshold failed(10) -- probe is not functional','0','7d','0','','48823','','','','','200','1','0','','','0','0','0','0','0','0','0','b4b80de974e7488c977ede41c75e0c21','0','2','0'), ('48862','18','','10657','Probe [{#SENSOR_LOCALE}]: Value','dell.server.sensor.temp.value[temperatureProbeReading.{#SNMPINDEX}]','0','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the reading for a temperature probe of type other than `temperatureProbeTypeIsDiscrete`. When the value for `temperatureProbeType` is other than `temperatureProbeTypeIsDiscrete`, the value returned for this attribute is the temperature that the probe is reading in Centigrade. When the value for `temperatureProbeType` is `temperatureProbeTypeIsDiscrete`, a value is not returned for this attribute.','0','7d','0','','48823','','','','','200','1','0','','','0','0','0','0','0','0','0','ae6ba617d2dd47a288d716e2220a4b45','0','2','0'), ('48863','18','','10657','Virtual disk [{#DISK_NAME}]: Layout type','dell.server.hw.virtualdisk.layout[virtualDiskLayout.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1340','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The virtual disk''s RAID type. Possible values: 1: Not one of the following 2: RAID-0 3: RAID-1 4: RAID-5 5: RAID-6 6: RAID-10 7: RAID-50 8: RAID-60 9: Concatenated RAID 1 10: Concatenated RAID 5','0','7d','0','','48809','','','','','200','1','0','','','0','0','0','0','0','0','0','3d44e650016747f18d485089da592d1a','0','2','0'), ('48864','18','','10657','Virtual disk [{#DISK_NAME}]: Read policy','dell.server.hw.virtualdisk.read_policy[virtualDiskReadPolicy.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1342','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The read policy used by the controller for read operations on this virtual disk. Possible values: 1: No Read Ahead. 2: Read Ahead. 3: Adaptive Read Ahead.','0','7d','0','','48809','','','','','200','1','0','','','0','0','0','0','0','0','0','8e5d1124cfe042c69a400ce18b78f0a9','0','2','0'), ('48865','18','','10657','Virtual disk [{#DISK_NAME}]: Size','dell.server.hw.virtualdisk.size[virtualDiskSizeInMB.{#SNMPINDEX}]','0','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The size of the virtual disk in megabytes.','0','7d','0','','48809','','','','','200','1','0','','','0','0','0','0','0','0','0','feaee5bce10b4343b1979f981a41fa08','0','2','0'), ('48866','18','','10657','Virtual disk [{#DISK_NAME}]: Operational state','dell.server.hw.virtualdisk.state[virtualDiskOperationalState.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1341','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The state of the virtual disk when there are progressive operations ongoing. Possible values: 1: There is no active operation running. 2: The virtual disk configuration has changed. The physical disks included in the virtual disk are being modified to support the new configuration. 3: A Consistency Check (CC) is being performed on the virtual disk. 4: The virtual disk is being initialized. 5: BackGround Initialization (BGI) is being performed on the virtual disk.','0','7d','0','','48809','','','','','200','1','0','','','0','0','0','0','0','0','0','1ab64a043c7c49babbc38baf9c15ba6b','0','2','0'), ('48867','18','','10657','Virtual disk [{#DISK_NAME}]: Status','dell.server.hw.virtualdisk.status[virtualDiskState.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1343','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The current state of this virtual disk (which includes any member physical disks.) Possible states: 1: The current state could not be determined. 2: The virtual disk is operating normally or optimally. 3: The virtual disk has encountered a failure. Data on the disk is lost or is about to be lost. 4: The virtual disk encountered a failure with one or all of the constituent redundant physical disks. The data on the virtual disk might no longer be fault tolerant.','0','7d','0','','48809','','','','','200','1','0','','','0','0','0','0','0','0','0','f0858440aca347fb9e4bd3f8a425e44f','0','2','0'), ('48868','18','','10657','Virtual disk [{#DISK_NAME}]: Write policy','dell.server.hw.virtualdisk.write_policy[virtualDiskWritePolicy.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1344','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The write policy used by the controller for write operations on this virtual disk. Possible values: 1: Write Through. 2: Write Back. 3: Force Write Back.','0','7d','0','','48809','','','','','200','1','0','','','0','0','0','0','0','0','0','b92c8b659e424cf6befe2ab8ba1ebfd8','0','2','0'), ('48869','18','','10657','Voltage probe [{#VPROBE_NAME}]: Status','dell.server.voltage.status[{#VPROBE_NAME}]','0','31d','365d','0','3','','','','',NULL,'1339','','','0','','','','','2',NULL,'This attribute defines the status of the voltage probe.','0','7d','0','','48827','','','','','200','1','0','','','0','0','0','0','0','0','0','4de5e5a4fab24acf9804d41cb14ae0bd','0','2','0'), ('48870','18','','10657','Voltage probe [{#VPROBE_NAME}]: Voltage','dell.server.voltage.value[{#VPROBE_NAME}]','0','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'This attribute defines the reading for a voltage probe.','0','7d','0','','48827','','','','','200','1','0','','','0','0','0','0','0','0','0','5210d34f8ce944b2bf63be2fd9ce176b','0','2','0'), ('48875','18','','10439','CPU utilization, in %','dell.server.util.cpu','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'CPU utilization.','0','7d','0','','48874','','','','','200','1','0','','','0','0','0','0','0','0','0','6a34296167c4452c8ba7e37798ffd66a','0','2','0'), ('48876','18','','10439','IO utilization, in %','dell.server.util.io','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'IO utilization.','0','7d','0','','48874','','','','','200','1','0','','','0','0','0','0','0','0','0','401471d2ffa140b09c66c7e1b0ae8be0','0','2','0'), ('48877','18','','10439','Memory utilization, in %','dell.server.util.mem','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Memory utilization.','0','7d','0','','48874','','','','','200','1','0','','','0','0','0','0','0','0','0','f09f4be3c7f24504b1593eed456056c0','0','2','0'), ('48878','18','','10439','SYS utilization, in %','dell.server.util.sys','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'SYS utilization.','0','7d','0','','48874','','','','','200','1','0','','','0','0','0','0','0','0','0','611a0be2fb08420ebadeadebe81ebc12','0','2','0'), ('48879','18','','10439','Array controller discovery','dell.server.array.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of disk array controllers.','0','7d','0','','48871','','','','','200','1','0','','','0','0','0','0','0','0','0','380d000cd61742a0a95b2fdec94a39ee','0','2','0'), ('48880','18','','10439','Battery discovery','dell.server.controller.battery.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of battery controllers.','0','7d','0','','48871','','','','','200','1','0','','','0','0','0','0','0','0','0','71f10dadaef9462caf395fd383b18406','0','2','0'), ('48881','18','','10439','FAN discovery','dell.server.fan.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of FAN sensors.','0','7d','0','','48874','','','','','200','1','0','','','0','0','0','0','0','0','0','2d92d68ee5664fe7b49cd54cba30a83a','0','2','0'), ('48882','18','','10439','Network interface discovery','dell.server.net.if.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of network interfaces.','0','7d','0','','48873','','','','','200','1','0','','','0','0','0','0','0','0','0','8075955b6a8c4843b038c6a91f792ca5','0','2','0'), ('48883','18','','10439','Physical disk discovery','dell.server.physicaldisk.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of physical disks.','0','7d','0','','48872','','','','','200','1','0','','','0','0','0','0','0','0','0','bace8989f0cb4c78ae29e97b3924252f','0','2','0'), ('48884','18','','10439','PSU discovery','dell.server.psu.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of PSU sensors.','0','7d','0','','48874','','','','','200','1','0','','','0','0','0','0','0','0','0','491a0445cf254e94a875546569dc99c8','0','2','0'), ('48885','18','','10439','Temperature discovery','dell.server.temp.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of temperature sensors.','0','7d','0','','48874','','','','','200','1','0','','','0','0','0','0','0','0','0','12273df317b64c15b62f5e1fe8a11c13','0','2','0'), ('48886','18','','10439','Virtual disk discovery','dell.server.virtualdisk.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of virtual disks.','0','7d','0','','48872','','','','','200','1','0','','','0','0','0','0','0','0','0','bbc9622129f24600838a85f965bac854','0','2','0'), ('48890','18','','10439','Controller [{#CNTLR_NAME}]: Status','dell.server.array.status[{#ID}]','0','31d','365d','0','3','','','','',NULL,'1348','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48871','','','','','200','1','0','','','0','0','0','0','0','0','0','fbc7a12767e54476b5eb16ac5986d5ba','0','2','0'), ('48891','18','','10439','Battery [{#BATTERY_NAME}]: Status','dell.server.controller.battery.status[{#ID}]','0','31d','365d','0','3','','','','',NULL,'1348','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48871','','','','','200','1','0','','','0','0','0','0','0','0','0','c7a05323c5164204a981f52401e0d11a','0','2','0'), ('48892','18','','10439','Fan [{#SENSOR_NAME}]: Get sensor','dell.server.sensor.fan.get[{#SENSOR_NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Returns the metrics of a sensor.','0','7d','0','','48874','','','','','200','1','0','','','0','0','0','0','0','0','0','9f91ed79a8874401acbada3acfd093fc','0','2','0'), ('48893','18','','10439','Interface [{#IFNAME}]: Status','dell.server.net.if.health[{#IFNAME}]','0','31d','365d','0','3','','','','',NULL,'1348','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48887','','','','','200','1','0','','','0','0','0','0','0','0','0','7ca5dc897e314299bf61bf73c961ca3a','0','2','0'), ('48894','18','','10439','Interface [{#IFNAME}]: Speed','dell.server.net.if.speed[{#IFNAME}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The network port current link speed.','0','7d','0','','48887','','','','','200','1','0','','','0','0','0','0','0','0','0','606f493ca932439098ae259d3104548a','0','2','0'), ('48895','18','','10439','Interface [{#IFNAME}]: State','dell.server.net.if.state[{#IFNAME}]','0','31d','365d','0','3','','','','',NULL,'1349','','','0','','','','','2',NULL,'The known state of the Resource, for example, Enabled. Possible values: Enabled, Disabled, StandbyOffline, StandbySpare, InTest, Starting, Absent, UnavailableOffline, Deferring, Quiesced, Updating, Qualified.','0','7d','0','','48887','','','','','200','1','0','','','0','0','0','0','0','0','0','288409760c3d4c72bf6219bb05f2fc56','0','2','0'), ('48896','18','','10439','Interface [{#IFNAME}]: Link status','dell.server.net.if.status[{#IFNAME}]','0','31d','365d','0','3','','','','',NULL,'1346','','','0','','','','','2',NULL,'The status of the link between this port and its link partner. Possible values: Down, Up, null.','0','7d','0','','48887','','','','','200','1','0','','','0','0','0','0','0','0','0','dabbf5d3e77b48e08653bc626905479a','0','2','0'), ('48897','18','','10439','Physical disk [{#DISK_NAME}]: Media type','dell.server.hw.physicaldisk.media_type[{#DISK_NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The type of media contained in this drive. Possible values: HDD, SSD, SMR, null.','0','7d','0','','48888','','','','','200','1','0','','','0','0','0','0','0','0','0','b28af532e0ae45f3ad0686d19883de17','0','2','0'), ('48898','18','','10439','Physical disk [{#DISK_NAME}]: Model name','dell.server.hw.physicaldisk.model[{#DISK_NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The model number of the drive.','0','7d','0','','48888','','','','','200','1','0','','','0','0','0','0','0','0','0','da824a525cbe42f99349edaf58152683','0','2','0'), ('48899','18','','10439','Physical disk [{#DISK_NAME}]: Serial number','dell.server.hw.physicaldisk.serialnumber[{#DISK_NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The serial number of this drive.','0','7d','0','','48888','','','','','200','1','0','','','0','0','0','0','0','0','0','88216fac6b85454ea9090de8b422387b','0','2','0'), ('48900','18','','10439','Physical disk [{#DISK_NAME}]: Size','dell.server.hw.physicaldisk.size[{#DISK_NAME}]','0','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size, in bytes, of this drive.','0','7d','0','','48888','','','','','200','1','0','','','0','0','0','0','0','0','0','bec5cacf8b964b7bb4f2c1761c1d1fbb','0','2','0'), ('48901','18','','10439','Physical disk [{#DISK_NAME}]: Status','dell.server.hw.physicaldisk.status[{#DISK_NAME}]','0','31d','0','0','3','','','','',NULL,'1348','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48888','','','','','200','1','0','','','0','0','0','0','0','0','0','7fe8e6eccc4f4e76bded3c5f698164f3','0','2','0'), ('48902','18','','10439','Power supply [{#SENSOR_NAME}]: Get sensor','dell.server.sensor.psu.get[{#SENSOR_NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Returns the metrics of a sensor.','0','7d','0','','48874','','','','','200','1','0','','','0','0','0','0','0','0','0','2e57438cee814c6dba1fe244e85b50af','0','2','0'), ('48903','18','','10439','Probe [{#SENSOR_NAME}]: Get sensor','dell.server.sensor.temp.get[{#SENSOR_NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Returns the metrics of a sensor.','0','7d','0','','48874','','','','','200','1','0','','','0','0','0','0','0','0','0','c011ede250b34a08ba7b8be1e5116592','0','2','0'), ('48904','18','','10439','Virtual disk [{#DISK_NAME}]: RAID status','dell.server.hw.virtualdisk.raid_status[{#DISK_NAME}]','0','31d','365d','0','3','','','','',NULL,'1350','','','0','','','','','2',NULL,'This property represents the RAID specific status. Possible values: Blocked, Degraded, Failed, Foreign, Offline, Online, Ready, Unknown, null.','0','7d','0','','48889','','','','','200','1','0','','','0','0','0','0','0','0','0','390e9960559a4b9eb6460e6af7940e7b','0','2','0'), ('48905','18','','10439','Virtual disk [{#DISK_NAME}]: Read policy','dell.server.hw.virtualdisk.read_policy[{#DISK_NAME}]','0','31d','365d','0','3','','','','',NULL,'1351','','','0','','','','','2',NULL,'Indicates the read cache policy setting for the Volume. Possible values: ReadAhead, NoReadAhead, AdaptiveReadAhead.','0','7d','0','','48889','','','','','200','1','0','','','0','0','0','0','0','0','0','a7cfd4be1b294e79b483735b8352d949','0','2','0'), ('48906','18','','10439','Virtual disk [{#DISK_NAME}]: Size','dell.server.hw.virtualdisk.size[{#DISK_NAME}]','0','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size in bytes of this Volume.','0','7d','0','','48889','','','','','200','1','0','','','0','0','0','0','0','0','0','c02af80164794e95816817510097619d','0','2','0'), ('48907','18','','10439','Virtual disk [{#DISK_NAME}]: Current state','dell.server.hw.virtualdisk.state[{#DISK_NAME}]','0','31d','365d','0','3','','','','',NULL,'1349','','','0','','','','','2',NULL,'The known state of the Resource, for example, Enabled. Possible values: Enabled, Disabled, StandbyOffline, StandbySpare, InTest, Starting, Absent, UnavailableOffline, Deferring, Quiesced, Updating, Qualified.','0','7d','0','','48889','','','','','200','1','0','','','0','0','0','0','0','0','0','ea61949505a7409a8f4efff97ae67b57','0','2','0'), ('48908','18','','10439','Virtual disk [{#DISK_NAME}]: Status','dell.server.hw.virtualdisk.status[{#DISK_NAME}]','0','31d','365d','0','3','','','','',NULL,'1348','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48889','','','','','200','1','0','','','0','0','0','0','0','0','0','747677c63d7e4cfca3420a14c862d9b1','0','2','0'), ('48909','18','','10439','Virtual disk [{#DISK_NAME}]: Write policy','dell.server.hw.virtualdisk.write_policy[{#DISK_NAME}]','0','31d','365d','0','3','','','','',NULL,'1352','','','0','','','','','2',NULL,'Indicates the write cache policy setting for the Volume. Possible values: WriteThrough, WriteBack, ProtectedWriteBack, UnprotectedWriteBack.','0','7d','0','','48889','','','','','200','1','0','','','0','0','0','0','0','0','0','d5e5cf0f065f4f5ba5f0edbf3e222417','0','2','0'), ('48934','18','','10440','Battery discovery','battery.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Battery discovery.','0','7d','0','','48919','','','','','200','1','0','','','0','0','0','0','0','0','0','161ef832d536461f90f47e914cdcbe44','0','2','0'), ('48935','18','','10440','CPU status discovery','cpu.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPU status discovery.','0','7d','0','','48921','','','','','200','1','0','','','0','0','0','0','0','0','0','f7291777ed604b249f0ff1dcb5e824e9','0','2','0'), ('48936','18','','10440','Memory discovery','memory.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Memory discovery.','0','7d','0','','48927','','','','','200','1','0','','','0','0','0','0','0','0','0','5909e149acca4eddad89d3a43cdec880','0','2','0'), ('48937','18','','10440','Network interface discovery','net.if.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of network interfaces.','0','7d','0','','48928','','','','','200','1','0','','','0','0','0','0','0','0','0','ec7f3a6a75da48d69a5178a3acdeec2d','0','2','0'), ('48938','18','','10440','System battery discovery','system.battery.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'System battery discovery.','0','7d','0','','48932','','','','','200','1','0','','','0','0','0','0','0','0','0','05262c1eb7af4bdfb9be4b87eb67c573','0','2','0'), ('48939','18','','10440','Voltage probe discovery','voltage.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Voltage probe discovery.','0','7d','1','','48933','','','','','200','1','0','','','0','0','0','0','0','0','0','b84ca44320644f46919c9535da909782','0','2','0'), ('48940','18','','10440','Battery [{#BATTERY_NAME}]: Status','dell.server.hw.battery.status[batteryState.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'479','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 Current state of battery. Possible values: 1: The current state could not be determined. 2: The battery is operating normally. 3: The battery has failed and needs to be replaced. 4: The battery temperature is high or charge level is depleting. 5: The battery is missing or not detected. 6: The battery is undergoing the re-charge phase. 7: The battery voltage or charge level is below the threshold.','0','7d','0','','48919','','','','','200','1','0','','','0','0','0','0','0','0','0','acea5c462a964f0fb371db6a5fbb7bbb','0','2','0'), ('48941','18','','10440','CPU [{#CPU_FQDD}]: State','dell.server.cpu.state[cpu.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1354','','','0','','','','','2',NULL,'This attribute defines the reading of the processor device status probe.','0','7d','0','','48921','','','','','200','1','0','','','0','0','0','0','0','0','0','550842e315774bd9b47b5d463f5a6f0e','0','2','0'), ('48942','18','','10440','CPU [{#CPU_FQDD}]: Status','dell.server.cpu.status[cpu.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'481','','','0','','','','','2',NULL,'This attribute defines the status of the processor device status probe. This status will be joined into the `processorDeviceStatus` attribute.','0','7d','0','','48921','','','','','200','1','0','','','0','0','0','0','0','0','0','0082b3b5a4a14afca309c643a82d9ba0','0','2','0'), ('48943','18','','10440','Fan [{#FAN_DESCR}]: Speed','dell.server.sensor.fan.speed[{#FAN_DESCR}]','0','31d','365d','0','3','','rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the reading for a cooling device of a subtype other than `coolingDeviceSubTypeIsDiscrete`. When the value for `coolingDeviceSubType` is other than `coolingDeviceSubTypeIsDiscrete`, the value returned for this attribute is the speed in RPM or the "OFF/ON" value of the cooling device. When the value for `coolingDeviceSubType` is `coolingDeviceSubTypeIsDiscrete`, a value is not returned for this attribute.','0','7d','0','','48924','','','','','200','1','0','','','0','0','0','0','0','0','0','c505c8858ffc4cbca8f1719b93d6f0a6','0','2','0'), ('48944','18','','10440','Fan [{#FAN_DESCR}]: Status','dell.server.sensor.fan.status[{#FAN_DESCR}]','0','31d','0','0','3','','','','',NULL,'484','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the probe status of the cooling device.','0','7d','0','','48924','','','','','200','1','0','','','0','0','0','0','0','0','0','bcf401ebc1294bcab14bc1c0003f3fb7','0','2','0'), ('48945','18','','10440','Memory [{#SNMPVALUE}]: Size','dell.server.memory.size[{#SNMPVALUE}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'This attribute defines the size, in KB, of the memory device. Zero indicates no memory installed; 2,147,483,647 indicates an unknown memory size.','0','7d','0','','48927','','','','','200','1','0','','','0','0','0','0','0','0','0','6eefc7d8c0d14f96bed7d77ea2bb6022','0','2','0'), ('48946','18','','10440','Memory [{#SNMPVALUE}]: Status','dell.server.memory.status[{#SNMPVALUE}]','0','31d','365d','0','3','','','','',NULL,'481','','','0','','','','','2',NULL,'This attribute defines the status of the memory device.','0','7d','0','','48927','','','','','200','1','0','','','0','0','0','0','0','0','0','4cdb3a43a0d847318269db509abb5926','0','2','0'), ('48947','18','','10440','NIC [{#NIC_FQDD}/{#NIC_MAC}]: Link status','dell.server.net.if.link[{#NIC_FQDD}]','0','31d','365d','0','3','','','','',NULL,'1353','','','0','','','','','2',NULL,'This attribute defines the connection status of the network device.','0','7d','0','','48928','','','','','200','1','0','','','0','0','0','0','0','0','0','71c070e0a1c7471989f2cebb89f1adcf','0','2','0'), ('48948','18','','10440','NIC [{#NIC_FQDD}/{#NIC_MAC}]: Status','dell.server.net.if.status[{#NIC_FQDD}]','0','31d','365d','0','3','','','','',NULL,'481','','','0','','','','','2',NULL,'This attribute defines the status of the network device.','0','7d','0','','48928','','','','','200','1','0','','','0','0','0','0','0','0','0','15743aecf8f046559094380f25617c03','0','2','0'), ('48949','18','','10440','System battery [{#SNMPVALUE}]: Status','dell.server.system.battery[{#SNMPVALUE}]','0','31d','365d','0','3','','','','',NULL,'481','','','0','','','','','2',NULL,'This attribute defines the status of the battery.','0','7d','0','','48932','','','','','200','1','0','','','0','0','0','0','0','0','0','7c35f1486da64a2880bdd9cafc0b4cf4','0','2','0'), ('48950','18','','10440','Virtual disk [{#DISK_NAME}]: Read policy','dell.server.hw.virtualdisk.read_policy[virtualDiskReadPolicy.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'487','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The read policy used by the controller for read operations on this virtual disk. Possible values: 1: No Read Ahead. 2: Read Ahead. 3: Adaptive Read Ahead.','0','7d','0','','48923','','','','','200','1','0','','','0','0','0','0','0','0','0','882a140fafd340c8b888337c0ca051ad','0','2','0'), ('48951','18','','10440','Virtual disk [{#DISK_NAME}]: Write policy','dell.server.hw.virtualdisk.write_policy[virtualDiskWritePolicy.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'489','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The write policy used by the controller for write operations on this virtual disk. Possible values: 1: Write Through. 2: Write Back. 3: Force Write Back.','0','7d','0','','48923','','','','','200','1','0','','','0','0','0','0','0','0','0','e0b2638cf3dd4dd0809aa5b73101deea','0','2','0'), ('48952','18','','10440','Voltage probe [{#VPROBE_NAME}]: Status','dell.server.voltage.status[{#VPROBE_NAME}]','0','31d','365d','0','3','','','','',NULL,'484','','','0','','','','','2',NULL,'This attribute defines the status of the voltage probe.','0','7d','0','','48933','','','','','200','1','0','','','0','0','0','0','0','0','0','2623885d4d204b3faae8037d1c1cc19b','0','2','0'), ('48953','18','','10440','Voltage probe [{#VPROBE_NAME}]: Voltage','dell.server.voltage.value[{#VPROBE_NAME}]','0','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'This attribute defines the reading for a voltage probe.','0','7d','0','','48933','','','','','200','1','0','','','0','0','0','0','0','0','0','34887c269ced46e9bcf6108b83f0338f','0','2','0'), ('48958','18','','10441','CPU utilization, in %','dell.server.util.cpu','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'CPU utilization.','0','7d','0','','48957','','','','','200','1','0','','','0','0','0','0','0','0','0','67524a4d8c8e4f39b43e1a67b1afede7','0','2','0'), ('48959','18','','10441','IO utilization, in %','dell.server.util.io','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'IO utilization.','0','7d','0','','48957','','','','','200','1','0','','','0','0','0','0','0','0','0','6d5125ef5a484d4c92f63ab698078e17','0','2','0'), ('48960','18','','10441','Memory utilization, in %','dell.server.util.mem','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Memory utilization.','0','7d','0','','48957','','','','','200','1','0','','','0','0','0','0','0','0','0','91527c7c68f745f9aef78b4507e096c5','0','2','0'), ('48961','18','','10441','SYS utilization, in %','dell.server.util.sys','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'SYS utilization.','0','7d','0','','48957','','','','','200','1','0','','','0','0','0','0','0','0','0','340a8b4c974e40cc8b694336fd973fb2','0','2','0'), ('48962','18','','10441','Array controller discovery','dell.server.array.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of disk array controllers.','0','7d','0','','48954','','','','','200','1','0','','','0','0','0','0','0','0','0','7e9b536c1f494f8db88ebc5817758f87','0','2','0'), ('48963','18','','10441','Battery discovery','dell.server.controller.battery.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of battery controllers.','0','7d','0','','48954','','','','','200','1','0','','','0','0','0','0','0','0','0','cf87034baae7473ba507411dd49e9aaa','0','2','0'), ('48964','18','','10441','FAN discovery','dell.server.fan.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of FAN sensors.','0','7d','0','','48957','','','','','200','1','0','','','0','0','0','0','0','0','0','c9b1f5035b494f848e7c101bb31f706b','0','2','0'), ('48965','18','','10441','Network interface discovery','dell.server.net.if.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of network interfaces.','0','7d','0','','48956','','','','','200','1','0','','','0','0','0','0','0','0','0','44e062b33a41457fb0d847cea5b385ed','0','2','0'), ('48966','18','','10441','Physical disk discovery','dell.server.physicaldisk.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of physical disks.','0','7d','0','','48955','','','','','200','1','0','','','0','0','0','0','0','0','0','e6736eb3f84044ff98d4113a3214e863','0','2','0'), ('48967','18','','10441','PSU discovery','dell.server.psu.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of PSU sensors.','0','7d','0','','48957','','','','','200','1','0','','','0','0','0','0','0','0','0','1e8d28ae00d04f7ebcdd67257b99e083','0','2','0'), ('48968','18','','10441','Temperature discovery','dell.server.temp.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of temperature sensors.','0','7d','0','','48957','','','','','200','1','0','','','0','0','0','0','0','0','0','660e28865c614e25aa1c0cd5e33888ee','0','2','0'), ('48969','18','','10441','Virtual disk discovery','dell.server.virtualdisk.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of virtual disks.','0','7d','0','','48955','','','','','200','1','0','','','0','0','0','0','0','0','0','1c5de2df1da844a38dc74763c5c8add4','0','2','0'), ('48973','18','','10441','Controller [{#CNTLR_NAME}]: Status','dell.server.array.status[{#ID}]','0','31d','365d','0','3','','','','',NULL,'1357','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48954','','','','','200','1','0','','','0','0','0','0','0','0','0','d1785196fe1f4d208ef168bfefe5d91e','0','2','0'), ('48974','18','','10441','Battery [{#BATTERY_NAME}]: Status','dell.server.controller.battery.status[{#ID}]','0','31d','365d','0','3','','','','',NULL,'1357','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48954','','','','','200','1','0','','','0','0','0','0','0','0','0','c130b149d73147488074daa6cf4dffb1','0','2','0'), ('48975','18','','10441','Fan [{#SENSOR_NAME}]: Get sensor','dell.server.sensor.fan.get[{#SENSOR_NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Returns the metrics of a sensor.','0','7d','0','','48957','','','','','200','1','0','','','0','0','0','0','0','0','0','9a344ff5fdce4fc6b19c50f70bdc3366','0','2','0'), ('48976','18','','10441','Interface [{#IFNAME}]: Status','dell.server.net.if.health[{#IFNAME}]','0','31d','365d','0','3','','','','',NULL,'1357','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48970','','','','','200','1','0','','','0','0','0','0','0','0','0','deb874e1e9054cc7a7b42654a6862686','0','2','0'), ('48977','18','','10441','Interface [{#IFNAME}]: Speed','dell.server.net.if.speed[{#IFNAME}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The network port current link speed.','0','7d','0','','48970','','','','','200','1','0','','','0','0','0','0','0','0','0','3cbcb8e5d8fb46feb051b8633843661a','0','2','0'), ('48978','18','','10441','Interface [{#IFNAME}]: State','dell.server.net.if.state[{#IFNAME}]','0','31d','365d','0','3','','','','',NULL,'1358','','','0','','','','','2',NULL,'The known state of the Resource, for example, Enabled. Possible values: Enabled, Disabled, StandbyOffline, StandbySpare, InTest, Starting, Absent, UnavailableOffline, Deferring, Quiesced, Updating, Qualified.','0','7d','0','','48970','','','','','200','1','0','','','0','0','0','0','0','0','0','2d5a59aef5fe40528b4127a5aeb4e7d9','0','2','0'), ('48979','18','','10441','Interface [{#IFNAME}]: Link status','dell.server.net.if.status[{#IFNAME}]','0','31d','365d','0','3','','','','',NULL,'1355','','','0','','','','','2',NULL,'The status of the link between this port and its link partner. Possible values: Down, Up, null.','0','7d','0','','48970','','','','','200','1','0','','','0','0','0','0','0','0','0','57be794a2e84405bb256bebdcebbd401','0','2','0'), ('48980','18','','10441','Physical disk [{#DISK_NAME}]: Media type','dell.server.hw.physicaldisk.media_type[{#DISK_NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The type of media contained in this drive. Possible values: HDD, SSD, SMR, null.','0','7d','0','','48971','','','','','200','1','0','','','0','0','0','0','0','0','0','87d8f9e8a706467099ff0e2400185d37','0','2','0'), ('48981','18','','10441','Physical disk [{#DISK_NAME}]: Model name','dell.server.hw.physicaldisk.model[{#DISK_NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The model number of the drive.','0','7d','0','','48971','','','','','200','1','0','','','0','0','0','0','0','0','0','eb60004a07d343b2ac4bbc7ee373603c','0','2','0'), ('48982','18','','10441','Physical disk [{#DISK_NAME}]: Serial number','dell.server.hw.physicaldisk.serialnumber[{#DISK_NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The serial number of this drive.','0','7d','0','','48971','','','','','200','1','0','','','0','0','0','0','0','0','0','f85b8b2bad6e4de4b6a1780379441823','0','2','0'), ('48983','18','','10441','Physical disk [{#DISK_NAME}]: Size','dell.server.hw.physicaldisk.size[{#DISK_NAME}]','0','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size, in bytes, of this drive.','0','7d','0','','48971','','','','','200','1','0','','','0','0','0','0','0','0','0','9b5c6889c2d04feb9b399f0226f8a0dd','0','2','0'), ('48984','18','','10441','Physical disk [{#DISK_NAME}]: Status','dell.server.hw.physicaldisk.status[{#DISK_NAME}]','0','31d','0','0','3','','','','',NULL,'1357','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48971','','','','','200','1','0','','','0','0','0','0','0','0','0','c6e2eca420754851a8601c89e0586b64','0','2','0'), ('48985','18','','10441','Power supply [{#SENSOR_NAME}]: Get sensor','dell.server.sensor.psu.get[{#SENSOR_NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Returns the metrics of a sensor.','0','7d','0','','48957','','','','','200','1','0','','','0','0','0','0','0','0','0','541cdf75d8fd4b6298d46d72ea698c8b','0','2','0'), ('48986','18','','10441','Probe [{#SENSOR_NAME}]: Get sensor','dell.server.sensor.temp.get[{#SENSOR_NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Returns the metrics of a sensor.','0','7d','0','','48957','','','','','200','1','0','','','0','0','0','0','0','0','0','53e57d04b3864408b47363ce277cfc40','0','2','0'), ('48987','18','','10441','Virtual disk [{#DISK_NAME}]: RAID status','dell.server.hw.virtualdisk.raid_status[{#DISK_NAME}]','0','31d','365d','0','3','','','','',NULL,'1359','','','0','','','','','2',NULL,'This property represents the RAID specific status. Possible values: Blocked, Degraded, Failed, Foreign, Offline, Online, Ready, Unknown, null.','0','7d','0','','48972','','','','','200','1','0','','','0','0','0','0','0','0','0','40b6ef0db10049dfa2b47b3d643d52f8','0','2','0'), ('48988','18','','10441','Virtual disk [{#DISK_NAME}]: Read policy','dell.server.hw.virtualdisk.read_policy[{#DISK_NAME}]','0','31d','365d','0','3','','','','',NULL,'1360','','','0','','','','','2',NULL,'Indicates the read cache policy setting for the Volume. Possible values: ReadAhead, NoReadAhead, AdaptiveReadAhead.','0','7d','0','','48972','','','','','200','1','0','','','0','0','0','0','0','0','0','50a61448d1a64cab85af3bd416519a5f','0','2','0'), ('48989','18','','10441','Virtual disk [{#DISK_NAME}]: Size','dell.server.hw.virtualdisk.size[{#DISK_NAME}]','0','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size in bytes of this Volume.','0','7d','0','','48972','','','','','200','1','0','','','0','0','0','0','0','0','0','165425c403444bdd829243176cc17728','0','2','0'), ('48990','18','','10441','Virtual disk [{#DISK_NAME}]: Current state','dell.server.hw.virtualdisk.state[{#DISK_NAME}]','0','31d','365d','0','3','','','','',NULL,'1358','','','0','','','','','2',NULL,'The known state of the Resource, for example, Enabled. Possible values: Enabled, Disabled, StandbyOffline, StandbySpare, InTest, Starting, Absent, UnavailableOffline, Deferring, Quiesced, Updating, Qualified.','0','7d','0','','48972','','','','','200','1','0','','','0','0','0','0','0','0','0','c29744514703440787ecc94d86fac220','0','2','0'), ('48991','18','','10441','Virtual disk [{#DISK_NAME}]: Status','dell.server.hw.virtualdisk.status[{#DISK_NAME}]','0','31d','365d','0','3','','','','',NULL,'1357','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48972','','','','','200','1','0','','','0','0','0','0','0','0','0','350af9c90f1e4f20b0362d0fcff06b6e','0','2','0'), ('48992','18','','10441','Virtual disk [{#DISK_NAME}]: Write policy','dell.server.hw.virtualdisk.write_policy[{#DISK_NAME}]','0','31d','365d','0','3','','','','',NULL,'1361','','','0','','','','','2',NULL,'Indicates the write cache policy setting for the Volume. Possible values: WriteThrough, WriteBack, ProtectedWriteBack, UnprotectedWriteBack.','0','7d','0','','48972','','','','','200','1','0','','','0','0','0','0','0','0','0','126eac1b29f34a6ba144f47e8b46b7cc','0','2','0'), ('49017','18','','10442','Battery discovery','battery.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Battery discovery.','0','7d','0','','49002','','','','','200','1','0','','','0','0','0','0','0','0','0','3f6ece6fbaae461bbb01f7adaeca9756','0','2','0'), ('49018','18','','10442','CPU status discovery','cpu.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPU status discovery.','0','7d','0','','49004','','','','','200','1','0','','','0','0','0','0','0','0','0','3bcf2e1613ce4bcf82c8154dfa5dc7c8','0','2','0'), ('49019','18','','10442','Memory discovery','memory.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Memory discovery.','0','7d','0','','49010','','','','','200','1','0','','','0','0','0','0','0','0','0','ab7d2361eeb946a48bb557e9dbc8904c','0','2','0'), ('49020','18','','10442','Network interface discovery','net.if.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of network interfaces.','0','7d','0','','49011','','','','','200','1','0','','','0','0','0','0','0','0','0','507b67db9d33407ab04b5b26eee17f33','0','2','0'), ('49021','18','','10442','System battery discovery','system.battery.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'System battery discovery.','0','7d','0','','49015','','','','','200','1','0','','','0','0','0','0','0','0','0','1461820b857d483e9988434b36a9cf6f','0','2','0'), ('49022','18','','10442','Voltage probe discovery','voltage.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Voltage probe discovery.','0','7d','1','','49016','','','','','200','1','0','','','0','0','0','0','0','0','0','43169b68868240d589e8c87bba94ce86','0','2','0'), ('49023','18','','10442','Battery [{#BATTERY_NAME}]: Status','dell.server.hw.battery.status[batteryState.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'492','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 Current state of battery. Possible values: 1: The current state could not be determined. 2: The battery is operating normally. 3: The battery has failed and needs to be replaced. 4: The battery temperature is high or charge level is depleting. 5: The battery is missing or not detected. 6: The battery is undergoing the re-charge phase. 7: The battery voltage or charge level is below the threshold.','0','7d','0','','49002','','','','','200','1','0','','','0','0','0','0','0','0','0','9f78de09167d4de9b7c5f8606d8f9bb2','0','2','0'), ('49024','18','','10442','CPU [{#CPU_FQDD}]: State','dell.server.cpu.state[cpu.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1363','','','0','','','','','2',NULL,'This attribute defines the reading of the processor device status probe.','0','7d','0','','49004','','','','','200','1','0','','','0','0','0','0','0','0','0','b5bc4152569c4d94ac18af051ac53545','0','2','0'), ('49025','18','','10442','CPU [{#CPU_FQDD}]: Status','dell.server.cpu.status[cpu.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'494','','','0','','','','','2',NULL,'This attribute defines the status of the processor device status probe. This status will be joined into the `processorDeviceStatus` attribute.','0','7d','0','','49004','','','','','200','1','0','','','0','0','0','0','0','0','0','417e257e354542aa84741c435b7fe916','0','2','0'), ('49026','18','','10442','Fan [{#FAN_DESCR}]: Speed','dell.server.sensor.fan.speed[{#FAN_DESCR}]','0','31d','365d','0','3','','rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the reading for a cooling device of a subtype other than `coolingDeviceSubTypeIsDiscrete`. When the value for `coolingDeviceSubType` is other than `coolingDeviceSubTypeIsDiscrete`, the value returned for this attribute is the speed in RPM or the "OFF/ON" value of the cooling device. When the value for `coolingDeviceSubType` is `coolingDeviceSubTypeIsDiscrete`, a value is not returned for this attribute.','0','7d','0','','49007','','','','','200','1','0','','','0','0','0','0','0','0','0','8ee74a624afc41d0b607da978b2b0858','0','2','0'), ('49027','18','','10442','Fan [{#FAN_DESCR}]: Status','dell.server.sensor.fan.status[{#FAN_DESCR}]','0','31d','0','0','3','','','','',NULL,'497','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the probe status of the cooling device.','0','7d','0','','49007','','','','','200','1','0','','','0','0','0','0','0','0','0','40ffe2dbed764fab8f76ab3d77c4d48b','0','2','0'), ('49028','18','','10442','Memory [{#SNMPVALUE}]: Size','dell.server.memory.size[{#SNMPVALUE}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'This attribute defines the size, in KB, of the memory device. Zero indicates no memory installed; 2,147,483,647 indicates an unknown memory size.','0','7d','0','','49010','','','','','200','1','0','','','0','0','0','0','0','0','0','0c87c1f952484471afad86f77c13073a','0','2','0'), ('49029','18','','10442','Memory [{#SNMPVALUE}]: Status','dell.server.memory.status[{#SNMPVALUE}]','0','31d','365d','0','3','','','','',NULL,'494','','','0','','','','','2',NULL,'This attribute defines the status of the memory device.','0','7d','0','','49010','','','','','200','1','0','','','0','0','0','0','0','0','0','2dab90151d1144fda74204e88c10067b','0','2','0'), ('49030','18','','10442','NIC [{#NIC_FQDD}/{#NIC_MAC}]: Link status','dell.server.net.if.link[{#NIC_FQDD}]','0','31d','365d','0','3','','','','',NULL,'1362','','','0','','','','','2',NULL,'This attribute defines the connection status of the network device.','0','7d','0','','49011','','','','','200','1','0','','','0','0','0','0','0','0','0','3400e8c414144a88baed85ccd1179008','0','2','0'), ('49031','18','','10442','NIC [{#NIC_FQDD}/{#NIC_MAC}]: Status','dell.server.net.if.status[{#NIC_FQDD}]','0','31d','365d','0','3','','','','',NULL,'494','','','0','','','','','2',NULL,'This attribute defines the status of the network device.','0','7d','0','','49011','','','','','200','1','0','','','0','0','0','0','0','0','0','1e3ec0d9d8284aed8edeff4490afe605','0','2','0'), ('49032','18','','10442','System battery [{#SNMPVALUE}]: Status','dell.server.system.battery[{#SNMPVALUE}]','0','31d','365d','0','3','','','','',NULL,'494','','','0','','','','','2',NULL,'This attribute defines the status of the battery.','0','7d','0','','49015','','','','','200','1','0','','','0','0','0','0','0','0','0','b4c42aaf69b34fcaa8ff8a23f0767c3a','0','2','0'), ('49033','18','','10442','Virtual disk [{#DISK_NAME}]: Read policy','dell.server.hw.virtualdisk.read_policy[virtualDiskReadPolicy.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'500','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The read policy used by the controller for read operations on this virtual disk. Possible values: 1: No Read Ahead. 2: Read Ahead. 3: Adaptive Read Ahead.','0','7d','0','','49006','','','','','200','1','0','','','0','0','0','0','0','0','0','109cd4fc0cc24a6586a282272b8448bb','0','2','0'), ('49034','18','','10442','Virtual disk [{#DISK_NAME}]: Write policy','dell.server.hw.virtualdisk.write_policy[virtualDiskWritePolicy.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'502','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The write policy used by the controller for write operations on this virtual disk. Possible values: 1: Write Through. 2: Write Back. 3: Force Write Back.','0','7d','0','','49006','','','','','200','1','0','','','0','0','0','0','0','0','0','db4f2a2abead4efba3d54124b2e992f7','0','2','0'), ('49035','18','','10442','Voltage probe [{#VPROBE_NAME}]: Status','dell.server.voltage.status[{#VPROBE_NAME}]','0','31d','365d','0','3','','','','',NULL,'497','','','0','','','','','2',NULL,'This attribute defines the status of the voltage probe.','0','7d','0','','49016','','','','','200','1','0','','','0','0','0','0','0','0','0','d8a499c3a77741d39e4108469009f9b0','0','2','0'), ('49036','18','','10442','Voltage probe [{#VPROBE_NAME}]: Voltage','dell.server.voltage.value[{#VPROBE_NAME}]','0','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'This attribute defines the reading for a voltage probe.','0','7d','0','','49016','','','','','200','1','0','','','0','0','0','0','0','0','0','7379dd15da4e48f295ab466eb45895da','0','2','0'), ('49063','18','','10255','Array controller discovery','array.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Array controller discovery.','0','7d','0','','49037','','','','','200','1','0','','','0','0','0','0','0','0','0','172a19e093344e92847264a5e43e748e','0','2','0'), ('49064','18','','10255','Battery discovery','battery.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Battery discovery.','0','7d','0','','49038','','','','','200','1','0','','','0','0','0','0','0','0','0','dcbb7a09085e426cbd82358aad3420cb','0','2','0'), ('49065','18','','10255','CPU status discovery','cpu.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'CPU status discovery.','0','7d','0','','49041','','','','','200','1','0','','','0','0','0','0','0','0','0','8e26e8215ed64121b900d99d03bdf8cf','0','2','0'), ('49066','18','','10255','Memory discovery','memory.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Memory discovery.','0','7d','0','','49052','','','','','200','1','0','','','0','0','0','0','0','0','0','7c73715f50e64f22a7616ed9bcf3c997','0','2','0'), ('49067','18','','10255','Network interface discovery','net.if.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of network interfaces.','0','7d','0','','49054','','','','','200','1','0','','','0','0','0','0','0','0','0','cb38ff2105b7420bade1082cd6410991','0','2','0'), ('49068','18','','10255','System battery discovery','system.battery.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'System battery discovery.','0','7d','0','','49061','','','','','200','1','0','','','0','0','0','0','0','0','0','19b8d1af069a484d9c56e79e47828dba','0','2','0'), ('49069','18','','10255','Temperature discovery','temp.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Temperature sensor discovery.','0','7d','0','','49058','','','','','200','1','0','','','0','0','0','0','0','0','0','6e0ee676a7e3420d91a32e1046f6eb56','0','2','0'), ('49070','18','','10255','Voltage probe discovery','voltage.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Voltage probe discovery.','0','7d','1','','49062','','','','','200','1','0','','','0','0','0','0','0','0','0','016fc77a8dda4459a92429a5b1f884b1','0','2','0'), ('49071','18','','10255','Controller [{#CNTLR_NAME}]: Model','dell.server.hw.diskarray.model[controllerName.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The controller''s name as represented in Storage Management.','0','7d','0','','49037','','','','','200','1','0','','','0','0','0','0','0','0','0','94b5a43e08af4771bc91927ba8c42f18','0','2','0'), ('49072','18','','10255','Controller [{#CNTLR_NAME}]: Status','dell.server.hw.diskarray.status[controllerComponentStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'107','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The status of the controller itself without the propagation of any contained component status. Possible values: 1: Other 2: Unknown 3: OK 4: Non-critical 5: Critical 6: Non-recoverable','0','7d','0','','49037','','','','','200','1','0','','','0','0','0','0','0','0','0','a282d4269206436c8d7773ccb07ac342','0','2','0'), ('49073','18','','10255','Battery [{#BATTERY_NAME}]: Status','dell.server.hw.battery.status[batteryState.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'112','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 Current state of battery. Possible values: 1: The current state could not be determined. 2: The battery is operating normally. 3: The battery has failed and needs to be replaced. 4: The battery temperature is high or charge level is depleting. 5: The battery is missing or not detected. 6: The battery is undergoing the re-charge phase. 7: The battery voltage or charge level is below the threshold.','0','7d','0','','49038','','','','','200','1','0','','','0','0','0','0','0','0','0','8a97e10049c74f1d95c900f0b7623c21','0','2','0'), ('49074','18','','10255','CPU [{#CPU_FQDD}]: State','dell.server.cpu.state[cpu.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1365','','','0','','','','','2',NULL,'This attribute defines the reading of the processor device status probe.','0','7d','0','','49041','','','','','200','1','0','','','0','0','0','0','0','0','0','c5e3ef25855e4351bf439a2a24e49177','0','2','0'), ('49075','18','','10255','CPU [{#CPU_FQDD}]: Status','dell.server.cpu.status[cpu.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'107','','','0','','','','','2',NULL,'This attribute defines the status of the processor device status probe. This status will be joined into the `processorDeviceStatus` attribute.','0','7d','0','','49041','','','','','200','1','0','','','0','0','0','0','0','0','0','8a40af6feb214ab7b2ebd9b04b19503f','0','2','0'), ('49076','18','','10255','Fan [{#FAN_DESCR}]: Speed','dell.server.sensor.fan.speed[{#FAN_DESCR}]','0','31d','365d','0','3','','rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the reading for a cooling device of a subtype other than `coolingDeviceSubTypeIsDiscrete`. When the value for `coolingDeviceSubType` is other than `coolingDeviceSubTypeIsDiscrete`, the value returned for this attribute is the speed in RPM or the "OFF/ON" value of the cooling device. When the value for `coolingDeviceSubType` is `coolingDeviceSubTypeIsDiscrete`, a value is not returned for this attribute.','0','7d','0','','49045','','','','','200','1','0','','','0','0','0','0','0','0','0','643c0597d2674bce8bbf1a3726f0a744','0','2','0'), ('49077','18','','10255','Fan [{#FAN_DESCR}]: Status','dell.server.sensor.fan.status[{#FAN_DESCR}]','0','31d','0','0','3','','','','',NULL,'108','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the probe status of the cooling device.','0','7d','0','','49045','','','','','200','1','0','','','0','0','0','0','0','0','0','6dcd0f28f3df424cbc5a5e738e0f5983','0','2','0'), ('49078','18','','10255','Memory [{#SNMPVALUE}]: Size','dell.server.memory.size[{#SNMPVALUE}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'This attribute defines the size, in KB, of the memory device. Zero indicates no memory installed; 2,147,483,647 indicates an unknown memory size.','0','7d','0','','49052','','','','','200','1','0','','','0','0','0','0','0','0','0','046db252dba84fdaa80e9e69a3df060e','0','2','0'), ('49079','18','','10255','Memory [{#SNMPVALUE}]: Status','dell.server.memory.status[{#SNMPVALUE}]','0','31d','365d','0','3','','','','',NULL,'107','','','0','','','','','2',NULL,'This attribute defines the status of the memory device.','0','7d','0','','49052','','','','','200','1','0','','','0','0','0','0','0','0','0','6a0e3835c71c4f1eae9c374e61bb6805','0','2','0'), ('49080','18','','10255','NIC [{#NIC_FQDD}/{#NIC_MAC}]: Link status','dell.server.net.if.link[{#NIC_FQDD}]','0','31d','365d','0','3','','','','',NULL,'1364','','','0','','','','','2',NULL,'This attribute defines the connection status of the network device.','0','7d','0','','49054','','','','','200','1','0','','','0','0','0','0','0','0','0','dd3ce480008540ea87bb4859f2b00dac','0','2','0'), ('49081','18','','10255','NIC [{#NIC_FQDD}/{#NIC_MAC}]: Status','dell.server.net.if.status[{#NIC_FQDD}]','0','31d','365d','0','3','','','','',NULL,'107','','','0','','','','','2',NULL,'This attribute defines the status of the network device.','0','7d','0','','49054','','','','','200','1','0','','','0','0','0','0','0','0','0','331e57997cde491f8c8eed6227a0caf7','0','2','0'), ('49082','18','','10255','Physical disk [{#DISK_NAME}]: Media type','dell.server.hw.physicaldisk.media_type[physicalDiskMediaType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'111','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The media type of the physical disk. Possible Values: 1: The media type could not be determined. 2: Hard Disk Drive (HDD). 3: Solid State Drive (SSD).','0','7d','0','','49043','','','','','200','1','0','','','0','0','0','0','0','0','0','7a96303e96fe41de9688004ccc80361d','0','2','0'), ('49083','18','','10255','Physical disk [{#DISK_NAME}]: Model name','dell.server.hw.physicaldisk.model[physicalDiskProductID.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The model number of the physical disk.','0','7d','0','','49043','','','','','200','1','0','','','0','0','0','0','0','0','0','b652991190a24899b1cb03a02865b444','0','2','0'), ('49084','18','','10255','Physical disk [{#DISK_NAME}]: Serial number','dell.server.hw.physicaldisk.serialnumber[physicalDiskSerialNo.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The physical disk''s unique identification number from the manufacturer.','0','7d','0','','49043','','','','','200','1','0','','','0','0','0','0','0','0','0','77316e778e184eb3b803afe74e2ed6a3','0','2','0'), ('49085','18','','10255','Physical disk [{#DISK_NAME}]: Size','dell.server.hw.physicaldisk.size[physicalDiskCapacityInMB.{#SNMPINDEX}]','0','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The size of the physical disk in megabytes.','0','7d','0','','49043','','','','','200','1','0','','','0','0','0','0','0','0','0','443246cd62cd4a22aa6e308ab11b67e5','0','2','0'), ('49086','18','','10255','Physical disk [{#DISK_NAME}]: S.M.A.R.T. Status','dell.server.hw.physicaldisk.smart_status[physicalDiskSmartAlertIndication.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'110','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 Indicates whether the physical disk has received a predictive failure alert.','0','7d','0','','49043','','','','','200','1','0','','','0','0','0','0','0','0','0','3c202df55c6e450188e98fdf81cdf2ee','0','2','0'), ('49087','18','','10255','Physical disk [{#DISK_NAME}]: Status','dell.server.hw.physicaldisk.status[physicalDiskComponentStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'109','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The status of the physical disk itself without the propagation of any contained component status. Possible values: 1: Other 2: Unknown 3: OK 4: Non-critical 5: Critical 6: Non-recoverable','0','7d','0','','49043','','','','','200','1','0','','','0','0','0','0','0','0','0','4e044a6c6c024a4abb8ef0aabb5d4ca3','0','2','0'), ('49088','18','','10255','Power supply [{#PSU_DESCR}]: State','dell.server.sensor.psu.status[powerSupplyStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'107','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the status of the power supply.','0','7d','0','','49057','','','','','200','1','0','','','0','0','0','0','0','0','0','c91156b9b0c54d89a4d354c4af517400','0','2','0'), ('49089','18','','10255','System battery [{#SNMPVALUE}]: Status','dell.server.system.battery[{#SNMPVALUE}]','0','31d','365d','0','3','','','','',NULL,'107','','','0','','','','','2',NULL,'This attribute defines the status of the battery.','0','7d','0','','49061','','','','','200','1','0','','','0','0','0','0','0','0','0','5e0b908594654cf5abd16347ee8bc2b0','0','2','0'), ('49090','18','','10255','Probe [{#SENSOR_LOCALE}]: Status','dell.server.sensor.temp.status[temperatureProbeStatus.{#SNMPINDEX}]','0','31d','0','0','0','','','','',NULL,'108','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the probe status of the temperature probe. Possible values: other(1), -- probe status is not one of the following: unknown(2), -- probe status is unknown (not known or monitored) ok(3), -- probe is reporting a value within the thresholds nonCriticalUpper(4), -- probe has crossed the upper noncritical threshold criticalUpper(5), -- probe has crossed the upper critical threshold nonRecoverableUpper(6), -- probe has crossed the upper non-recoverable threshold nonCriticalLower(7), -- probe has crossed the lower noncritical threshold criticalLower(8), -- probe has crossed the lower critical threshold nonRecoverableLower(9), -- probe has crossed the lower non-recoverable threshold failed(10) -- probe is not functional','0','7d','0','','49058','','','','','200','1','0','','','0','0','0','0','0','0','0','b3e4d0bd456f4269b7a890c81730d1de','0','2','0'), ('49091','18','','10255','Probe [{#SENSOR_LOCALE}]: Value','dell.server.sensor.temp.value[temperatureProbeReading.{#SNMPINDEX}]','0','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 This attribute defines the reading for a temperature probe of type other than `temperatureProbeTypeIsDiscrete`. When the value for `temperatureProbeType` is other than `temperatureProbeTypeIsDiscrete`, the value returned for this attribute is the temperature that the probe is reading in Centigrade. When the value for `temperatureProbeType` is `temperatureProbeTypeIsDiscrete`, a value is not returned for this attribute.','0','7d','0','','49058','','','','','200','1','0','','','0','0','0','0','0','0','0','468ab65099214451839a879d000dcfc4','0','2','0'), ('49092','18','','10255','Virtual disk [{#DISK_NAME}]: Layout type','dell.server.hw.virtualdisk.layout[virtualDiskLayout.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'113','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The virtual disk''s RAID type. Possible values: 1: Not one of the following 2: RAID-0 3: RAID-1 4: RAID-5 5: RAID-6 6: RAID-10 7: RAID-50 8: RAID-60 9: Concatenated RAID 1 10: Concatenated RAID 5','0','7d','0','','49044','','','','','200','1','0','','','0','0','0','0','0','0','0','3cbaee68e37643d5b22bfbf415bd21ba','0','2','0'), ('49093','18','','10255','Virtual disk [{#DISK_NAME}]: Read policy','dell.server.hw.virtualdisk.read_policy[virtualDiskReadPolicy.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1366','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The read policy used by the controller for read operations on this virtual disk. Possible values: 1: No Read Ahead. 2: Read Ahead. 3: Adaptive Read Ahead.','0','7d','0','','49044','','','','','200','1','0','','','0','0','0','0','0','0','0','19abe143c3f843acb98fbbcfecb851c9','0','2','0'), ('49094','18','','10255','Virtual disk [{#DISK_NAME}]: Size','dell.server.hw.virtualdisk.size[virtualDiskSizeInMB.{#SNMPINDEX}]','0','31d','0','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The size of the virtual disk in megabytes.','0','7d','0','','49044','','','','','200','1','0','','','0','0','0','0','0','0','0','6d9441c59d64422784d07af93282c68f','0','2','0'), ('49095','18','','10255','Virtual disk [{#DISK_NAME}]: Operational state','dell.server.hw.virtualdisk.state[virtualDiskOperationalState.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'114','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The state of the virtual disk when there are progressive operations ongoing. Possible values: 1: There is no active operation running. 2: The virtual disk configuration has changed. The physical disks included in the virtual disk are being modified to support the new configuration. 3: A Consistency Check (CC) is being performed on the virtual disk. 4: The virtual disk is being initialized. 5: BackGround Initialization (BGI) is being performed on the virtual disk.','0','7d','0','','49044','','','','','200','1','0','','','0','0','0','0','0','0','0','ca74d7a5d1144d50a707c0e04c031c33','0','2','0'), ('49096','18','','10255','Virtual disk [{#DISK_NAME}]: Status','dell.server.hw.virtualdisk.status[virtualDiskState.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'116','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The current state of this virtual disk (which includes any member physical disks.) Possible states: 1: The current state could not be determined. 2: The virtual disk is operating normally or optimally. 3: The virtual disk has encountered a failure. Data on the disk is lost or is about to be lost. 4: The virtual disk encountered a failure with one or all of the constituent redundant physical disks. The data on the virtual disk might no longer be fault tolerant.','0','7d','0','','49044','','','','','200','1','0','','','0','0','0','0','0','0','0','130ceb3a44554ff19e14e70fd5a6a9bf','0','2','0'), ('49097','18','','10255','Virtual disk [{#DISK_NAME}]: Write policy','dell.server.hw.virtualdisk.write_policy[virtualDiskWritePolicy.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'115','','','0','','','','','2',NULL,'MIB: IDRAC-MIB-SMIv2 The write policy used by the controller for write operations on this virtual disk. Possible values: 1: Write Through. 2: Write Back. 3: Force Write Back.','0','7d','0','','49044','','','','','200','1','0','','','0','0','0','0','0','0','0','932cf26c451b4854a3b5dd2375a8ae76','0','2','0'), ('49098','18','','10255','Voltage probe [{#VPROBE_NAME}]: Status','dell.server.voltage.status[{#VPROBE_NAME}]','0','31d','365d','0','3','','','','',NULL,'108','','','0','','','','','2',NULL,'This attribute defines the status of the voltage probe.','0','7d','0','','49062','','','','','200','1','0','','','0','0','0','0','0','0','0','7b84ee06ac3b419eb5b10a3253bcaf59','0','2','0'), ('49099','18','','10255','Voltage probe [{#VPROBE_NAME}]: Voltage','dell.server.voltage.value[{#VPROBE_NAME}]','0','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'This attribute defines the reading for a voltage probe.','0','7d','0','','49062','','','','','200','1','0','','','0','0','0','0','0','0','0','4cd12baa6c274747a284c2a45b654497','0','2','0'), ('49107','18','','10262','Zabbix proxy check','proxy_check','0','31d','0','0','3','','','','',NULL,'1367','','','0','','','','','0',NULL,'Flag indicating whether it is a proxy or not.','0','7d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','a283182189c4414c9a123f7511603009','0','2','0'), ('49108','18','','10658','Discovery queue','discovery_queue','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of values enqueued in the discovery queue.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','8846a48c4acc4224a4e773469c159968','0','2','0'), ('49109','18','','10658','Preprocessing queue','preprocessing_queue','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of values enqueued in the preprocessing queue.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','7ace08ac0d134dbd8e38f0eed7832006','0','2','0'), ('49110','18','','10658','Utilization of agent poller data collector processes, in %','process.agent_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the agent poller processes have been busy for the last minute.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','a312044e08a84606b1cff94b32b7869b','0','2','0'), ('49111','18','','10658','Utilization of availability manager internal processes, in %','process.availability_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the availability manager processes have been busy for the last minute.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','61d39ded8711431285a6fbc083d8caed','0','2','0'), ('49112','18','','10658','Utilization of browser poller data collector processes, in %','process.browser_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the browser poller processes have been busy for the last minute.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','6e0797f6789c4185a10e308428137582','0','2','0'), ('49113','18','','10658','Utilization of configuration syncer internal processes, in %','process.configuration_syncer.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the configuration syncer processes have been busy for the last minute.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','0ee53f651442409990eb622b564a2775','0','2','0'), ('49114','18','','10658','Utilization of data sender internal processes, in %','process.data_sender.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the data sender processes have been busy for the last minute.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','013e6f87c56c4a579458feeba5691be6','0','2','0'), ('49115','18','','10658','Utilization of discovery manager internal processes, in %','process.discovery_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the discovery manager processes have been busy for the last minute.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','2fafb029d58546c3a6deabd4038e76cd','0','2','0'), ('49116','18','','10658','Utilization of discovery worker internal processes, in %','process.discovery_worker.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the discovery worker processes have been busy for the last minute.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','b244b8cb318546c19b83b0af3b0bb093','0','2','0'), ('49117','18','','10658','Utilization of history syncer internal processes, in %','process.history_syncer.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the history syncer processes have been busy for the last minute.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','32359f807d68434d83ee667da762b1c8','0','2','0'), ('49118','18','','10658','Utilization of housekeeper internal processes, in %','process.housekeeper.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the housekeeper processes have been busy for the last minute.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','52bcf9b7c2ae4787887bbd650b10105a','0','2','0'), ('49119','18','','10658','Utilization of http agent poller data collector processes, in %','process.http_agent_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the http agent poller processes have been busy for the last minute.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','5913d66abf674eb0a73f8e1821b41b5b','0','2','0'), ('49120','18','','10658','Utilization of http poller data collector processes, in %','process.http_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the http poller processes have been busy for the last minute.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','d473cf000bd94347ac6326209e9b1cb6','0','2','0'), ('49121','18','','10658','Utilization of icmp pinger data collector processes, in %','process.icmp_pinger.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the icmp pinger processes have been busy for the last minute.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','fb0cd69bbafd45068e1429ab891a89d9','0','2','0'), ('49122','18','','10658','Utilization of internal poller data collector processes, in %','process.internal_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the internal poller processes have been busy for the last minute.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','91eb0701b6a54ccd955f67223b64e84c','0','2','0'), ('49123','18','','10658','Utilization of ipmi manager internal processes, in %','process.ipmi_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the ipmi manager processes have been busy for the last minute.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','6baa5907fc4747d2ba5b0095c12fbe9d','0','2','0'), ('49124','18','','10658','Utilization of ipmi poller data collector processes, in %','process.ipmi_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the ipmi poller processes have been busy for the last minute.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','842f2465e5614597be977fdb7b72ba63','0','2','0'), ('49125','18','','10658','Utilization of java poller data collector processes, in %','process.java_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the java poller processes have been busy for the last minute.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','0a4560d7e2ca4c1a88997d2353fd624c','0','2','0'), ('49126','18','','10658','Utilization of ODBC poller data collector processes, in %','process.odbc_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the ODBC poller processes have been busy for the last minute.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','a3d0a85f9e9b4c59b5d8165a8f390ff1','0','2','0'), ('49127','18','','10658','Utilization of poller data collector processes, in %','process.poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the poller processes have been busy for the last minute.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','459a5b2aba7e43638dd151d32b7b5244','0','2','0'), ('49128','18','','10658','Utilization of preprocessing manager internal processes, in %','process.preprocessing_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the preprocessing manager processes have been busy for the last minute.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','4378cc82528d46d8be81f99e0e7e7f23','0','2','0'), ('49129','18','','10658','Utilization of preprocessing worker internal processes, in %','process.preprocessing_worker.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the preprocessing worker processes have been busy for the last minute.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','a8700cc1c2f8486fa09a90f19bbd877e','0','2','0'), ('49130','18','','10658','Utilization of self-monitoring internal processes, in %','process.self-monitoring.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the self-monitoring processes have been busy for the last minute.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','362cff08ec00461795dd514cf1757360','0','2','0'), ('49131','18','','10658','Utilization of snmp poller data collector processes, in %','process.snmp_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the snmp poller processes have been busy for the last minute.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','a2dd22ed51df44ae86f86555dc3ba3c2','0','2','0'), ('49132','18','','10658','Utilization of snmp trapper data collector processes, in %','process.snmp_trapper.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the snmp trapper processes have been busy for the last minute.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','48204005c3ec441e990e132caa4968a0','0','2','0'), ('49133','18','','10658','Utilization of task manager internal processes, in %','process.task_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the task manager processes have been busy for the last minute.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','919f3c24e8bf4099aabd25a843613f35','0','2','0'), ('49134','18','','10658','Utilization of trapper data collector processes, in %','process.trapper.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the trapper processes have been busy for the last minute.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','a5ef0fec5c864de98519e340d2d182bb','0','2','0'), ('49135','18','','10658','Utilization of unreachable poller data collector processes, in %','process.unreachable_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the unreachable poller processes have been busy for the last minute.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','2455887b313847d39d318078b29120e7','0','2','0'), ('49136','18','','10658','Utilization of vmware collector data collector processes, in %','process.vmware_collector.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the vmware collector processes have been busy for the last minute.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','2bea24eb5d8d42b48049e340ea385aad','0','2','0'), ('49137','18','','10658','Proxy memory buffer, % used','proxy_buffer.buffer.pused','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix proxy memory buffer usage statistics. Percentage of used proxy memory buffer. Proxy memory buffer is used to store the new historical data and upload from it without accessing database.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','c98b4b21c1744546898dbb8b1dfead42','0','2','0'), ('49138','18','','10658','Proxy buffer, state changes','proxy_buffer.state.changes','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of state changes between disk/memory buffer modes since proxy start.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','0f120fc684234c9a9ee5a9f6666f3413','0','2','0'), ('49139','18','','10658','Proxy buffer, state','proxy_buffer.state.current','0','31d','365d','0','3','','','','',NULL,'1369','','','0','','','','','0',NULL,'The current working state of proxy buffer where the new data is being stored. Possible values: 0 - disk (also returned when memory buffer is disabled); 1 - memory.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','38bfb3b653914ca2add4bc219d50dc32','0','2','0'), ('49140','18','','10658','Zabbix proxy check','proxy_check','0','31d','0','0','3','','','','',NULL,'1370','','','0','','','','','0',NULL,'Flag indicating whether it is a proxy or not.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','562d546ed5e8413b8c756b3b47a4f720','0','2','0'), ('49141','18','','10658','Configuration cache, % used','rcache.buffer.pused','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The availability statistics of Zabbix configuration cache. The percentage of used data buffer.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','06aa2a793fa3415281aefdf937e5ddee','0','2','0'), ('49142','18','','10658','Required VPS','requiredperformance','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The required performance of a proxy (the number of values that need to be collected per second).','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','b2446bae74174e25b0cca1f32aef8553','0','2','0'), ('49143','18','','10658','Uptime','uptime','0','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'Uptime of the Zabbix proxy process in seconds.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','1c36d8e963a64ee1aa93a1a9568370a3','0','2','0'), ('49144','18','','10658','Version','version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The version of Zabbix proxy.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','fe584f47643f4ae8be825c00854719ad','0','2','0'), ('49145','18','','10658','VMware cache, % used','vmware.buffer.pused','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The availability statistics of Zabbix vmware cache. The percentage of used data buffer.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','c41ad12215a94aca827b31c427f8f2e1','0','2','0'), ('49146','18','','10658','History write cache, % used','wcache.history.pused','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The percentage of used history buffer. The history cache is used to store item values. A high number indicates database performance problems.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','735347973ba04edd8f930ffafd81ee6d','0','2','0'), ('49147','18','','10658','History index cache, % used','wcache.index.pused','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The percentage of used history index buffer. The history index cache is used to index values stored in the history cache.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','248bb7f1ab5546ccaa0fdc529e746e04','0','2','0'), ('49148','18','','10658','Number of processed values per second','wcache.values','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The total number of values processed by Zabbix server or Zabbix proxy, except unsupported items.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','1006c5bf5fbc47c1a367f74d29e72257','0','2','0'), ('49149','18','','10658','Number of processed numeric (float) values per second','wcache.values.float','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed numeric (float) values.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','0117f333d91846fbb10d4941a258ec5b','0','2','0'), ('49150','18','','10658','Number of processed log values per second','wcache.values.log','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed log values.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','fae6ad936ab94641a6e0446a5dbe2e3a','0','2','0'), ('49151','18','','10658','Number of processed not supported values per second','wcache.values.not_supported','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of times the item processing resulted in an item becoming unsupported or remaining in that state.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','49e235b0e2514255bf395db06df1660a','0','2','0'), ('49152','18','','10658','Number of processed character values per second','wcache.values.str','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed character values.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','505ac45e931b45959df5b78524fe7916','0','2','0'), ('49153','18','','10658','Number of processed text values per second','wcache.values.text','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed text values.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','4e293845715644c199b295f3701c553e','0','2','0'), ('49154','18','','10658','Number of processed numeric (unsigned) values per second','wcache.values.uint','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed numeric (unsigned) values.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','53811a399df5460eae32ea7fbbd3ae3c','0','2','0'), ('49155','18','','10659','Discovery queue','discovery_queue','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of values enqueued in the discovery queue.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','19639a8badd8427580ca4ef1a3f3e037','0','2','0'), ('49156','18','','10659','Preprocessing queue','preprocessing_queue','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of values enqueued in the preprocessing queue.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','b8bba41ac6fb47b987d4b50363b5682e','0','2','0'), ('49157','18','','10659','Utilization of agent poller data collector processes, in %','process.agent_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the agent poller processes have been busy for the last minute.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','defab1c17e114e8d9a752579036b42dd','0','2','0'), ('49158','18','','10659','Utilization of availability manager internal processes, in %','process.availability_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the availability manager processes have been busy for the last minute.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','5212844ce04048a08d7c88f9d914b4c6','0','2','0'), ('49159','18','','10659','Utilization of browser poller data collector processes, in %','process.browser_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the browser poller processes have been busy for the last minute.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','d54d7e00c2b547c891d56fd11791673c','0','2','0'), ('49160','18','','10659','Utilization of configuration syncer internal processes, in %','process.configuration_syncer.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the configuration syncer processes have been busy for the last minute.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','bc6b359fb245474ab52a2f07a4fd130b','0','2','0'), ('49161','18','','10659','Utilization of data sender internal processes, in %','process.data_sender.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the data sender processes have been busy for the last minute.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','d6dbae1eb33f4235807462e0043fe89c','0','2','0'), ('49162','18','','10659','Utilization of discovery manager internal processes, in %','process.discovery_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the discovery manager processes have been busy for the last minute.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','02289431d3634e80931617d145759057','0','2','0'), ('49163','18','','10659','Utilization of discovery worker internal processes, in %','process.discovery_worker.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the discovery worker processes have been busy for the last minute.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','67edf3a9ef824014be826ea4cc13d7ae','0','2','0'), ('49164','18','','10659','Utilization of history syncer internal processes, in %','process.history_syncer.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the history syncer processes have been busy for the last minute.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','beaa4c6f193e4dfcbd1988319156a2c8','0','2','0'), ('49165','18','','10659','Utilization of housekeeper internal processes, in %','process.housekeeper.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the housekeeper processes have been busy for the last minute.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','00ea59e1231947a5b16312326906d3a8','0','2','0'), ('49166','18','','10659','Utilization of http agent poller data collector processes, in %','process.http_agent_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the http agent poller processes have been busy for the last minute.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','fed4a2ec074748c5acc8d027156257ae','0','2','0'), ('49167','18','','10659','Utilization of http poller data collector processes, in %','process.http_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the http poller processes have been busy for the last minute.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','92372873a1724cb9a02e0472d0662483','0','2','0'), ('49168','18','','10659','Utilization of icmp pinger data collector processes, in %','process.icmp_pinger.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the icmp pinger processes have been busy for the last minute.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','7f031eb8ecef40ba853054c471fe7b0a','0','2','0'), ('49169','18','','10659','Utilization of internal poller data collector processes, in %','process.internal_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the internal poller processes have been busy for the last minute.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','39209185bab1415a9a12b70be0e568f9','0','2','0'), ('49170','18','','10659','Utilization of ipmi manager internal processes, in %','process.ipmi_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the ipmi manager processes have been busy for the last minute.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','6b5f54fc00dc456e98c1669d49d84b59','0','2','0'), ('49171','18','','10659','Utilization of ipmi poller data collector processes, in %','process.ipmi_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the ipmi poller processes have been busy for the last minute.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','aa601feb9b97499995b8abfe1a001029','0','2','0'), ('49172','18','','10659','Utilization of java poller data collector processes, in %','process.java_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the java poller processes have been busy for the last minute.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','081941c3f18743c2b62217b84e8421a1','0','2','0'), ('49173','18','','10659','Utilization of ODBC poller data collector processes, in %','process.odbc_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the ODBC poller processes have been busy for the last minute.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','af2a9d4b24084528bfe60204ca385fcd','0','2','0'), ('49174','18','','10659','Utilization of poller data collector processes, in %','process.poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the poller processes have been busy for the last minute.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','ab3a54eb85d548e38dba2f6642372cb4','0','2','0'), ('49175','18','','10659','Utilization of preprocessing manager internal processes, in %','process.preprocessing_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the preprocessing manager processes have been busy for the last minute.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','afb08d2d0f33405980c319ac25a31224','0','2','0'), ('49176','18','','10659','Utilization of preprocessing worker internal processes, in %','process.preprocessing_worker.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the preprocessing worker processes have been busy for the last minute.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','060a18c681c340ab8ba85b92ac73fff0','0','2','0'), ('49177','18','','10659','Utilization of self-monitoring internal processes, in %','process.self-monitoring.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the self-monitoring processes have been busy for the last minute.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','1deace63f8e7490b86fb58161dd938b4','0','2','0'), ('49178','18','','10659','Utilization of snmp poller data collector processes, in %','process.snmp_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the snmp poller processes have been busy for the last minute.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','09fcd6d6ff724ca7b73e3d460f858bd3','0','2','0'), ('49179','18','','10659','Utilization of snmp trapper data collector processes, in %','process.snmp_trapper.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the snmp trapper processes have been busy for the last minute.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','456aec8079074dcbb20d547d90dcb8b9','0','2','0'), ('49180','18','','10659','Utilization of task manager internal processes, in %','process.task_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the task manager processes have been busy for the last minute.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','452f67fd89764adfb638a9ea0a902063','0','2','0'), ('49181','18','','10659','Utilization of trapper data collector processes, in %','process.trapper.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the trapper processes have been busy for the last minute.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','155b770a61d1483c9fda1d1530c62080','0','2','0'), ('49182','18','','10659','Utilization of unreachable poller data collector processes, in %','process.unreachable_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the unreachable poller processes have been busy for the last minute.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','7eeed993f1874749849ac988a92835ba','0','2','0'), ('49183','18','','10659','Utilization of vmware collector data collector processes, in %','process.vmware_collector.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the vmware collector processes have been busy for the last minute.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','d38cebfe55ff45338051302e99b90454','0','2','0'), ('49184','18','','10659','Proxy memory buffer, % used','proxy_buffer.buffer.pused','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Statistics and availability of Zabbix proxy memory buffer usage statistics. Percentage of used proxy memory buffer. Proxy memory buffer is used to store the new historical data and upload from it without accessing database.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','1ec67a7436c84892ac8eba71461a5cb3','0','2','0'), ('49185','18','','10659','Proxy buffer, state changes','proxy_buffer.state.changes','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of state changes between disk/memory buffer modes since proxy start.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','30b187882593400aa4bf703b83ac48e9','0','2','0'), ('49186','18','','10659','Proxy buffer, state','proxy_buffer.state.current','0','31d','365d','0','3','','','','',NULL,'1371','','','0','','','','','0',NULL,'The current working state of proxy buffer where the new data is being stored. Possible values: 0 - disk (also returned when memory buffer is disabled); 1 - memory.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','ecbad291c31f4a94988256d78671e7fe','0','2','0'), ('49187','18','','10659','Zabbix proxy check','proxy_check','0','31d','0','0','3','','','','',NULL,'1372','','','0','','','','','0',NULL,'Flag indicating whether it is a proxy or not.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','96e28e7707a546df86283808245a259b','0','2','0'), ('49188','18','','10659','Configuration cache, % used','rcache.buffer.pused','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The availability statistics of Zabbix configuration cache. The percentage of used data buffer.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','91dd05ad3bef4c14a988bd2f759eff59','0','2','0'), ('49189','18','','10659','Required VPS','requiredperformance','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The required performance of a proxy (the number of values that need to be collected per second).','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','ac3a8cf2873a44669454c1fdd03145b3','0','2','0'), ('49190','18','','10659','Uptime','uptime','0','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'Uptime of the Zabbix proxy process in seconds.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','bb60426c6fa1471e80f6214fbb66c66a','0','2','0'), ('49191','18','','10659','Version','version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The version of Zabbix proxy.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','0642b827f604424daf5429cccee0a3b7','0','2','0'), ('49192','18','','10659','VMware cache, % used','vmware.buffer.pused','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The availability statistics of Zabbix vmware cache. The percentage of used data buffer.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','6bb9f2511eb446558b5a75842a7e5018','0','2','0'), ('49193','18','','10659','History write cache, % used','wcache.history.pused','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The percentage of used history buffer. The history cache is used to store item values. A high number indicates database performance problems.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','f08835beb38c4b58ab337cb87f3ae56c','0','2','0'), ('49194','18','','10659','History index cache, % used','wcache.index.pused','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The percentage of used history index buffer. The history index cache is used to index values stored in the history cache.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','5e78de0022cf4c69a727001fbe5dafd1','0','2','0'), ('49195','18','','10659','Number of processed values per second','wcache.values','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The total number of values processed by Zabbix server or Zabbix proxy, except unsupported items.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','6579ae03a0b34806adb0fb996a96fec8','0','2','0'), ('49196','18','','10659','Number of processed numeric (float) values per second','wcache.values.float','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed numeric (float) values.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','b7cc386e51754e3f889e7023d25e6c9a','0','2','0'), ('49197','18','','10659','Number of processed log values per second','wcache.values.log','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed log values.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','3a1e8466b5e84178938530c41e83afb7','0','2','0'), ('49198','18','','10659','Number of processed not supported values per second','wcache.values.not_supported','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of times the item processing resulted in an item becoming unsupported or remaining in that state.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','30f6e1cf5d88497194233967cdae1e9c','0','2','0'), ('49199','18','','10659','Number of processed character values per second','wcache.values.str','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed character values.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','26f80a634144408d96d489971307effc','0','2','0'), ('49200','18','','10659','Number of processed text values per second','wcache.values.text','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed text values.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','0784afdd396d4697be033476b49cd779','0','2','0'), ('49201','18','','10659','Number of processed numeric (unsigned) values per second','wcache.values.uint','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed numeric (unsigned) values.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','0f00c626c85742858dfd658e5823cfbf','0','2','0'), ('49210','18','','10261','Zabbix server check','server_check','0','31d','0','0','3','','','','',NULL,'1373','','','0','','','','','0',NULL,'Flag indicating whether it is a server or not.','0','7d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','b6f47aa7b1b7407da7acd634a9859038','0','2','0'), ('49211','18','','10660','Connector queue','connector_queue','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of values enqueued in the connector queue.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','67db1347c8774d22870995569f40a698','0','2','0'), ('49212','18','','10660','Discovery queue','discovery_queue','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of values enqueued in the discovery queue.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','233d8a6776b743948a56b4cae17a189a','0','2','0'), ('49213','18','','10660','LLD queue','lld_queue','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of values enqueued in the low-level discovery processing queue.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','af0386eb01f7465da3167558fed66b11','0','2','0'), ('49214','18','','10660','Preprocessing queue','preprocessing_queue','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of values enqueued in the preprocessing queue.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','2e0e211d720d496ab43b31c3330fa2d6','0','2','0'), ('49215','18','','10660','Utilization of agent poller data collector processes, in %','process.agent_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the agent poller processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','26244cb39b2140a19331ee2813946d1f','0','2','0'), ('49216','18','','10660','Utilization of alerter internal processes, in %','process.alerter.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the alerter processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','5b48951a5868404a94fd644208554144','0','2','0'), ('49217','18','','10660','Utilization of alert manager internal processes, in %','process.alert_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the alert manager processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','e7bd566b2db444579b59abae5a2d6bfe','0','2','0'), ('49218','18','','10660','Utilization of alert syncer internal processes, in %','process.alert_syncer.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the alert syncer processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','237aa592438e45e6b38943c14f5afa72','0','2','0'), ('49219','18','','10660','Utilization of availability manager internal processes, in %','process.availability_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the availability manager processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','aeb1631d9bcf401ab7e5f62d717b443c','0','2','0'), ('49220','18','','10660','Utilization of browser poller data collector processes, in %','process.browser_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the browser poller processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','8015717df8a54d2680f6bc77be78277d','0','2','0'), ('49221','18','','10660','Utilization of configuration syncer internal processes, in %','process.configuration_syncer.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the configuration syncer processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','26bbe7da8a6544ae857f3828f7aad187','0','2','0'), ('49222','18','','10660','Utilization of configuration syncer worker internal processes, in %','process.configuration_syncer_worker.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the configuration syncer worker processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','97ce279dac1843a299c1b1dfba4923cd','0','2','0'), ('49223','18','','10660','Utilization of connector manager internal processes, in %','process.connector_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the connector manager processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','4ad318d0b2824f348c8579fb41bf13bf','0','2','0'), ('49224','18','','10660','Utilization of connector worker internal processes, in %','process.connector_worker.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the connector worker processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','1ccf61dc603341cca5dda60c03a5443a','0','2','0'), ('49225','18','','10660','Utilization of discovery manager internal processes, in %','process.discovery_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the discovery manager processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','a69a1684823a40789dbed2cfad68fddc','0','2','0'), ('49226','18','','10660','Utilization of discovery worker internal processes, in %','process.discovery_worker.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the discovery worker processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','6ce4dc23c5a74d20ab00c51174fa0693','0','2','0'), ('49227','18','','10660','Utilization of escalator internal processes, in %','process.escalator.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the escalator processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','5bd7ba1eb4aa46dba8f593008badc7ce','0','2','0'), ('49228','18','','10660','Utilization of history poller internal processes, in %','process.history_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the history poller processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','b8502bfa3d89444caf68f0a61bfd80c0','0','2','0'), ('49229','18','','10660','Utilization of history syncer internal processes, in %','process.history_syncer.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the history syncer processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','ac78caab34df45ea99a72578c742ef96','0','2','0'), ('49230','18','','10660','Utilization of housekeeper internal processes, in %','process.housekeeper.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the housekeeper processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','98a0a770a1484dcaa15a30bd4aa67667','0','2','0'), ('49231','18','','10660','Utilization of http agent poller data collector processes, in %','process.http_agent_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the http agent poller processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','f7df477e29514cbcbef8ed98d3b3088d','0','2','0'), ('49232','18','','10660','Utilization of http poller data collector processes, in %','process.http_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the http poller processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','987678076aee4877abe79ca4fe13c0f5','0','2','0'), ('49233','18','','10660','Utilization of icmp pinger data collector processes, in %','process.icmp_pinger.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the icmp pinger processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','72764d3afa1844d6984b7be20e6700cb','0','2','0'), ('49234','18','','10660','Utilization of internal poller data collector processes, in %','process.internal_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the internal poller processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','686ee39bdc284684993e46ae250ceb82','0','2','0'), ('49235','18','','10660','Utilization of ipmi manager internal processes, in %','process.ipmi_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the ipmi manager processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','75882e08301a424aa282a65c300e45ec','0','2','0'), ('49236','18','','10660','Utilization of ipmi poller data collector processes, in %','process.ipmi_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the ipmi poller processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','4b3315753f2648fe839415d253274225','0','2','0'), ('49237','18','','10660','Utilization of java poller data collector processes, in %','process.java_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the java poller processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','72964a592b434862855ae82ee4a51a47','0','2','0'), ('49238','18','','10660','Utilization of LLD manager internal processes, in %','process.lld_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the LLD manager processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','bd339e2ee2b743e4bbf7c4614fc9142b','0','2','0'), ('49239','18','','10660','Utilization of LLD worker internal processes, in %','process.lld_worker.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the LLD worker processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','76c3dd1ec25d4cb38d5a02681103fd01','0','2','0'), ('49240','18','','10660','Utilization of ODBC poller data collector processes, in %','process.odbc_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the ODBC poller processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','a18f1241d78b463eae7dcb6442cb14de','0','2','0'), ('49241','18','','10660','Utilization of poller data collector processes, in %','process.poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the poller processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','37a4b686f8bd42c49fdcde2d1d2aa0c5','0','2','0'), ('49242','18','','10660','Utilization of preprocessing manager internal processes, in %','process.preprocessing_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the preprocessing manager processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','a8ce38ce9ade40d6accfeda76a2f67ce','0','2','0'), ('49243','18','','10660','Utilization of preprocessing worker internal processes, in %','process.preprocessing_worker.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the preprocessing worker processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','8350ba81df6641e388d9f7975aa35085','0','2','0'), ('49244','18','','10660','Utilization of proxy group manager internal processes, in %','process.proxy_group_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the proxy group manager processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','7b2e318316204619a6d0ec5fed697c76','0','2','0'), ('49245','18','','10660','Utilization of proxy poller data collector processes, in %','process.proxy_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the proxy poller processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','36d5be78c569416cbf9fc7e304fdc841','0','2','0'), ('49246','18','','10660','Utilization of report manager internal processes, in %','process.report_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the report manager processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','586a94a15daa4c5e92d08a7b9a513569','0','2','0'), ('49247','18','','10660','Utilization of report writer internal processes, in %','process.report_writer.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the report writer processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','54f4b6d1b41b4a229281d94e50040e67','0','2','0'), ('49248','18','','10660','Utilization of self-monitoring internal processes, in %','process.self-monitoring.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the self-monitoring processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','8bb2d6405fa344e89acca08eb2989347','0','2','0'), ('49249','18','','10660','Utilization of service manager internal processes, in %','process.service_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the service manager processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','41a5e11bd0244b9b936f89337a70bf7b','0','2','0'), ('49250','18','','10660','Utilization of snmp poller data collector processes, in %','process.snmp_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the snmp poller processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','b3e03fd8df2a44c6b81b988aba962af0','0','2','0'), ('49251','18','','10660','Utilization of snmp trapper data collector processes, in %','process.snmp_trapper.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the snmp trapper processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','cf3f6a2ab158418d9457dc5263bd00e6','0','2','0'), ('49252','18','','10660','Utilization of task manager internal processes, in %','process.task_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the task manager processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','e73efbdec67a459e9cec663a527d8eb4','0','2','0'), ('49253','18','','10660','Utilization of timer internal processes, in %','process.timer.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the timer processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','24a5de4abfa5464fb2c689ab45331013','0','2','0'), ('49254','18','','10660','Utilization of trapper data collector processes, in %','process.trapper.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the trapper processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','87cd3e5ac5a443ce933902092afe2aef','0','2','0'), ('49255','18','','10660','Utilization of trigger housekeeper internal processes, in %','process.trigger_housekeeper.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the trigger housekeeper processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','a4440e906d5e44459cdd89a8e65e49f1','0','2','0'), ('49256','18','','10660','Utilization of unreachable poller data collector processes, in %','process.unreachable_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the unreachable poller processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','4ea198b2d4544d35b713135f0e6abe1d','0','2','0'), ('49257','18','','10660','Utilization of vmware collector data collector processes, in %','process.vmware_collector.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the vmware collector processes have been busy for the last minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','c06eefb4ce3742a6890e99b7340b8c1c','0','2','0'), ('49258','18','','10660','Configuration cache, % used','rcache.buffer.pused','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The availability statistics of Zabbix configuration cache. The percentage of used data buffer.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','449b05f7fefa4960bc4f50d300b60b30','0','2','0'), ('49259','18','','10660','Zabbix server check','server_check','0','31d','0','0','3','','','','',NULL,'1381','','','0','','','','','0',NULL,'Flag indicating whether it is a server or not.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','d02caf97af874b929d78bccdcf80a1fd','0','2','0'), ('49260','18','','10660','Trend function cache, % of unique requests','tcache.pitems','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The effectiveness statistics of the Zabbix trend function cache. The percentage of cached items calculated from the sum of the cached items plus requests. A low percentage most likely means that the cache size can be reduced.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','af615158ecc546a5bde2dcc39c4477cd','0','2','0'), ('49261','18','','10660','Trend function cache, % of misses','tcache.pmisses','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The effectiveness statistics of the Zabbix trend function cache. The percentage of cache misses.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','d7a302b1eced46308c5d308eff7940f7','0','2','0'), ('49262','18','','10660','Value cache, % used','vcache.buffer.pused','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The availability statistics of Zabbix value cache. The percentage of used data buffer.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','667bde86aa124656a1470574203dabe8','0','2','0'), ('49263','18','','10660','Value cache hits','vcache.cache.hits','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The effectiveness statistics of Zabbix value cache. The number of cache hits (history values taken from the cache).','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','774a9545d7ec487eb7a3fa57075c4521','0','2','0'), ('49264','18','','10660','Value cache misses','vcache.cache.misses','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The effectiveness statistics of Zabbix value cache. The number of cache misses (history values taken from the database).','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','350489880982410188ed0e09a1a29763','0','2','0'), ('49265','18','','10660','Value cache operating mode','vcache.cache.mode','0','31d','365d','0','3','','!vps','','',NULL,'1380','','','0','','','','','0',NULL,'The operating mode of the value cache.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','29f324a479dd4fcd8e7c25c11a979725','0','2','0'), ('49266','18','','10660','Version','version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The version of Zabbix server.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','54c43b70ee6a43d1827ce5da810694ed','0','2','0'), ('49267','18','','10660','VMware cache, % used','vmware.buffer.pused','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The availability statistics of Zabbix vmware cache. The percentage of used data buffer.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','8ddbd31c13c447979d1fb57e942b1b34','0','2','0'), ('49268','18','','10660','Number of values synchronized with the database per second','vps.written','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'Average quantity of values written to the database, recalculated once per minute.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','f5f751c4bd844086a5f7bf9d442dd761','0','2','0'), ('49269','18','','10660','History write cache, % used','wcache.history.pused','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The percentage of used history buffer. The history cache is used to store item values. A high number indicates database performance problems.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','07d74d4c2c1d4ce29dce164d68cbab73','0','2','0'), ('49270','18','','10660','History index cache, % used','wcache.index.pused','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The percentage of used history index buffer. The history index cache is used to index values stored in the history cache.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','8f8d3ca8c2f14b6d950946345e1c0659','0','2','0'), ('49271','18','','10660','Trend write cache, % used','wcache.trend.pused','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The percentage of used trend buffer. The trend cache stores the aggregate of all items that have received data for the current hour.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','e938f95f91414497a9a72166ee143dea','0','2','0'), ('49272','18','','10660','Number of processed values per second','wcache.values','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The total number of values processed by Zabbix server or Zabbix proxy, except unsupported items.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','463b804470ef435995c09199b691904e','0','2','0'), ('49273','18','','10660','Number of processed numeric (float) values per second','wcache.values.float','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed numeric (float) values.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','529bbc2ab85f4e088b1c6f65a38b06d6','0','2','0'), ('49274','18','','10660','Number of processed log values per second','wcache.values.log','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed log values.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','538e8a635b08414fbd0ce505cf2bd754','0','2','0'), ('49275','18','','10660','Number of processed not supported values per second','wcache.values.not_supported','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of times the item processing resulted in an item becoming unsupported or remaining in that state.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','d2d3b7dd52194d898eb58e4ea731447c','0','2','0'), ('49276','18','','10660','Number of processed character values per second','wcache.values.str','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed character values.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','060002e74f8d4e2c9aa24c167ddd8658','0','2','0'), ('49277','18','','10660','Number of processed text values per second','wcache.values.text','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed text values.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','1a4bcfd5660b4e4a84848ccec5ff2a28','0','2','0'), ('49278','18','','10660','Number of processed numeric (unsigned) values per second','wcache.values.uint','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed numeric (unsigned) values.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','9ea10574cd3147c88d7e613cde988765','0','2','0'), ('49279','18','','10660','Zabbix proxies stats','zabbix.proxies.stats','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The master item of Zabbix proxies'' statistics.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','406e909296024280b7cdc76d288a398d','0','2','0'), ('49280','18','','10661','Connector queue','connector_queue','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of values enqueued in the connector queue.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','9b49a702d9874dfab715523b87a98a1a','0','2','0'), ('49281','18','','10661','Discovery queue','discovery_queue','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The count of values enqueued in the discovery queue.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','97af4a2fb95049ba836f7b2ea1b8ac29','0','2','0'), ('49282','18','','10661','LLD queue','lld_queue','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of values enqueued in the low-level discovery processing queue.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','6f925d7628d84fffa4837da1984db203','0','2','0'), ('49283','18','','10661','Preprocessing queue','preprocessing_queue','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of values enqueued in the preprocessing queue.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','0247833bf1ba4f7c87fa13c5dbc00308','0','2','0'), ('49284','18','','10661','Utilization of agent poller data collector processes, in %','process.agent_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the agent poller processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','b74f03a8047b49af9a2dace775acf8ec','0','2','0'), ('49285','18','','10661','Utilization of alerter internal processes, in %','process.alerter.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the alerter processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','1f92d15a59a54aa485361deafbee15e8','0','2','0'), ('49286','18','','10661','Utilization of alert manager internal processes, in %','process.alert_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the alert manager processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','101445ba757f4c1a9986df4b2302aae7','0','2','0'), ('49287','18','','10661','Utilization of alert syncer internal processes, in %','process.alert_syncer.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the alert syncer processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','c8dec4c38b9c4ad3987bf6a9d200fa6e','0','2','0'), ('49288','18','','10661','Utilization of availability manager internal processes, in %','process.availability_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the availability manager processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','d54f576d30bd492d9379f250f506af7c','0','2','0'), ('49289','18','','10661','Utilization of browser poller data collector processes, in %','process.browser_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the browser poller processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','f976e0d8a109418c926882e02f520eaf','0','2','0'), ('49290','18','','10661','Utilization of configuration syncer internal processes, in %','process.configuration_syncer.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the configuration syncer processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','282ed37443d54b54ab033be9d8d70b23','0','2','0'), ('49291','18','','10661','Utilization of configuration syncer worker internal processes, in %','process.configuration_syncer_worker.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the configuration syncer worker processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','ba32bcaa13214c0fab6d98e0909d5c94','0','2','0'), ('49292','18','','10661','Utilization of connector manager internal processes, in %','process.connector_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the connector manager processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','23c553180c134b8e813d721c80dcc76d','0','2','0'), ('49293','18','','10661','Utilization of connector worker internal processes, in %','process.connector_worker.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the connector worker processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','77ee49931238400d81c597b146d291cd','0','2','0'), ('49294','18','','10661','Utilization of discovery manager internal processes, in %','process.discovery_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the discovery manager processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','d2ac8e1c42704bc9aea9fcfe50fbdbdd','0','2','0'), ('49295','18','','10661','Utilization of discovery worker internal processes, in %','process.discovery_worker.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the discovery worker processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','9e1200fc5d0a4ccfaff4fb1926b2ef31','0','2','0'), ('49296','18','','10661','Utilization of escalator internal processes, in %','process.escalator.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the escalator processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','27f7bcbcc7fa4c91a8f82bbc2f470cd5','0','2','0'), ('49297','18','','10661','Utilization of history poller internal processes, in %','process.history_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the history poller processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','617a44fb20704e7c8ab1c7847df082d6','0','2','0'), ('49298','18','','10661','Utilization of history syncer internal processes, in %','process.history_syncer.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the history syncer processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','ebdb96a5d7264126895181f1256de4a4','0','2','0'), ('49299','18','','10661','Utilization of housekeeper internal processes, in %','process.housekeeper.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the housekeeper processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','9be1900382ee432f912882f61d457d55','0','2','0'), ('49300','18','','10661','Utilization of http agent poller data collector processes, in %','process.http_agent_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the http agent poller processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','cc48cb65a5ad417a81bfc25b1c41aa3b','0','2','0'), ('49301','18','','10661','Utilization of http poller data collector processes, in %','process.http_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the http poller processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','91a0bab07ace4721aa91fdf4c943d1fc','0','2','0'), ('49302','18','','10661','Utilization of icmp pinger data collector processes, in %','process.icmp_pinger.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the icmp pinger processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','f3604ea1b796405b97b0c0d1628e07ac','0','2','0'), ('49303','18','','10661','Utilization of internal poller data collector processes, in %','process.internal_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the internal poller processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','0f53768b5c4a4958b081c70793aa3fdf','0','2','0'), ('49304','18','','10661','Utilization of ipmi manager internal processes, in %','process.ipmi_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the ipmi manager processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','3c45bdcba13a4783984696ae2ff6eb46','0','2','0'), ('49305','18','','10661','Utilization of ipmi poller data collector processes, in %','process.ipmi_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the ipmi poller processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','47a99733ef2b4e36a4ac58e29b63c810','0','2','0'), ('49306','18','','10661','Utilization of java poller data collector processes, in %','process.java_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the java poller processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','933b92aecdbd4765867d679d3db4746e','0','2','0'), ('49307','18','','10661','Utilization of LLD manager internal processes, in %','process.lld_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the LLD manager processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','30b7e2b8626c49d58b9b57490ad7ef3d','0','2','0'), ('49308','18','','10661','Utilization of LLD worker internal processes, in %','process.lld_worker.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the LLD worker processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','8d38e7792a4649e49864271e9371abdc','0','2','0'), ('49309','18','','10661','Utilization of ODBC poller data collector processes, in %','process.odbc_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the ODBC poller processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','0fd4be9abb814541878730c77a118b4f','0','2','0'), ('49310','18','','10661','Utilization of poller data collector processes, in %','process.poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the poller processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','c18525d18ae0460fbc1605ec2be08087','0','2','0'), ('49311','18','','10661','Utilization of preprocessing manager internal processes, in %','process.preprocessing_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the preprocessing manager processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','ce96c2ee2cc74adb99d7fe4d3cac1507','0','2','0'), ('49312','18','','10661','Utilization of preprocessing worker internal processes, in %','process.preprocessing_worker.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the preprocessing worker processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','5d5d66cb32384b1294acdcfc99eb731f','0','2','0'), ('49313','18','','10661','Utilization of proxy group manager internal processes, in %','process.proxy_group_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the proxy group manager processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','9b799bcc2e0a46bca8811d5b5fb8ad9d','0','2','0'), ('49314','18','','10661','Utilization of proxy poller data collector processes, in %','process.proxy_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the proxy poller processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','3d9eaec2c0984ed48edd973f6b32614b','0','2','0'), ('49315','18','','10661','Utilization of report manager internal processes, in %','process.report_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the report manager processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','47eba63d72b24dd3b57354b16cc8dd6a','0','2','0'), ('49316','18','','10661','Utilization of report writer internal processes, in %','process.report_writer.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the report writer processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','69ede6567bb44228ae8cfa1258c1bed0','0','2','0'), ('49317','18','','10661','Utilization of self-monitoring internal processes, in %','process.self-monitoring.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the self-monitoring processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','8968f305c67a4b929a18d2f8911d044c','0','2','0'), ('49318','18','','10661','Utilization of service manager internal processes, in %','process.service_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the service manager processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','39ecbb836a2647bb989807a31b30b791','0','2','0'), ('49319','18','','10661','Utilization of snmp poller data collector processes, in %','process.snmp_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the snmp poller processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','9a2fe1441aa84b35bbb076ed8429321f','0','2','0'), ('49320','18','','10661','Utilization of snmp trapper data collector processes, in %','process.snmp_trapper.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the snmp trapper processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','59857e15812347d0b231fa237acd3089','0','2','0'), ('49321','18','','10661','Utilization of task manager internal processes, in %','process.task_manager.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the task manager processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','8a0c0e7b1c8c40d38e032f27e503c75e','0','2','0'), ('49322','18','','10661','Utilization of timer internal processes, in %','process.timer.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the timer processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','f1006194bd594541997308ce9d68a4a6','0','2','0'), ('49323','18','','10661','Utilization of trapper data collector processes, in %','process.trapper.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the trapper processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','63085203f3fe415da1e8d3be108b3688','0','2','0'), ('49324','18','','10661','Utilization of trigger housekeeper internal processes, in %','process.trigger_housekeeper.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the trigger housekeeper processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','a17f1501fc924767adc3c6d98b630053','0','2','0'), ('49325','18','','10661','Utilization of unreachable poller data collector processes, in %','process.unreachable_poller.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the unreachable poller processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','e08abc511b6b4f0c8decb626ca6f6780','0','2','0'), ('49326','18','','10661','Utilization of vmware collector data collector processes, in %','process.vmware_collector.avg.busy','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the vmware collector processes have been busy for the last minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','96d3c75e95e44d638125f9f67e62dd76','0','2','0'), ('49327','18','','10661','Configuration cache, % used','rcache.buffer.pused','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The availability statistics of Zabbix configuration cache. The percentage of used data buffer.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','9a91a17f14ac471094b7741c5eaeb84d','0','2','0'), ('49328','18','','10661','Zabbix server check','server_check','0','31d','0','0','3','','','','',NULL,'1388','','','0','','','','','0',NULL,'Flag indicating whether it is a server or not.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','244d6fafb5774ce09a02267369ebe627','0','2','0'), ('49329','18','','10661','Trend function cache, % of unique requests','tcache.pitems','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The effectiveness statistics of the Zabbix trend function cache. The percentage of cached items calculated from the sum of the cached items plus requests. A low percentage most likely means that the cache size can be reduced.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','8ab73f9ddc8c4eabaef323693c350b0e','0','2','0'), ('49330','18','','10661','Trend function cache, % of misses','tcache.pmisses','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The effectiveness statistics of the Zabbix trend function cache. The percentage of cache misses.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','2f23e8e930554c62aec0b11d3f1568b7','0','2','0'), ('49331','18','','10661','Value cache, % used','vcache.buffer.pused','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The availability statistics of Zabbix value cache. The percentage of used data buffer.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','ff55defb24074bf8b2346046f4fb3cda','0','2','0'), ('49332','18','','10661','Value cache hits','vcache.cache.hits','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The effectiveness statistics of Zabbix value cache. The number of cache hits (history values taken from the cache).','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','4bce063f5d374efcb1a2ffcd2658b153','0','2','0'), ('49333','18','','10661','Value cache misses','vcache.cache.misses','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The effectiveness statistics of Zabbix value cache. The number of cache misses (history values taken from the database).','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','e7510966d6ce41d3aa383e83d3fe7ec1','0','2','0'), ('49334','18','','10661','Value cache operating mode','vcache.cache.mode','0','31d','365d','0','3','','!vps','','',NULL,'1387','','','0','','','','','0',NULL,'The operating mode of the value cache.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','c7d7b0e80bf040aabc9f1350e24ba994','0','2','0'), ('49335','18','','10661','Version','version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The version of Zabbix server.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','92d7e426ec744ea196032825231df258','0','2','0'), ('49336','18','','10661','VMware cache, % used','vmware.buffer.pused','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The availability statistics of Zabbix vmware cache. The percentage of used data buffer.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','e2244cdef6774aaf97b244ac6617316f','0','2','0'), ('49337','18','','10661','Number of values synchronized with the database per second','vps.written','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'Average quantity of values written to the database, recalculated once per minute.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','90ee7e364f7e4b64802482ea189a1d84','0','2','0'), ('49338','18','','10661','History write cache, % used','wcache.history.pused','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The percentage of used history buffer. The history cache is used to store item values. A high number indicates database performance problems.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','a7c9054d62324c61a6b7dba48683617e','0','2','0'), ('49339','18','','10661','History index cache, % used','wcache.index.pused','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The percentage of used history index buffer. The history index cache is used to index values stored in the history cache.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','9a6c936674fb47daa2625604acb78f51','0','2','0'), ('49340','18','','10661','Trend write cache, % used','wcache.trend.pused','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The percentage of used trend buffer. The trend cache stores the aggregate of all items that have received data for the current hour.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','55cb808101fe4fc8ace522c3f57e6c97','0','2','0'), ('49341','18','','10661','Number of processed values per second','wcache.values','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The total number of values processed by Zabbix server or Zabbix proxy, except unsupported items.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','b031a389ab79493f8bf84df55673805f','0','2','0'), ('49342','18','','10661','Number of processed numeric (float) values per second','wcache.values.float','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed numeric (float) values.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','2b8411ca3fe048bbbe99631322cd2f88','0','2','0'), ('49343','18','','10661','Number of processed log values per second','wcache.values.log','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed log values.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','ccefd74e15e14ead8914aab1874bcf9b','0','2','0'), ('49344','18','','10661','Number of processed not supported values per second','wcache.values.not_supported','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of times the item processing resulted in an item becoming unsupported or remaining in that state.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','c6f051ebbcac4f1383cad1cac88b4710','0','2','0'), ('49345','18','','10661','Number of processed character values per second','wcache.values.str','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed character values.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','8c2f87ab4b484d6ab206b19a50959088','0','2','0'), ('49346','18','','10661','Number of processed text values per second','wcache.values.text','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed text values.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','f1c2ae5c89204efe81d67248587971c2','0','2','0'), ('49347','18','','10661','Number of processed numeric (unsigned) values per second','wcache.values.uint','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed numeric (unsigned) values.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','cb37f569c18247099e9b15951d76fdb4','0','2','0'), ('49348','18','','10661','Zabbix proxies stats','zabbix.proxies.stats','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The master item of Zabbix proxies'' statistics.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','868fe1403673438d8d65d09609754a97','0','2','0'), ('49349','18','','10660','High availability cluster node discovery','zabbix.nodes.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'LLD rule with item and trigger prototypes for node discovery.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','6615363e42424accbaf9a2e385240de6','0','2','0'), ('49351','18','','10661','High availability cluster node discovery','zabbix.nodes.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'LLD rule with item and trigger prototypes for node discovery.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','c0b766a1f6f640faa911b4ac4c5d7bb6','0','2','0'), ('49353','18','','10660','Cluster node [{#NODE.NAME}]: Stats','zabbix.node.stats[{#NODE.ID}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Provides the statistics of a node.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','72bec5b0e4314f78b272a0851c690d4b','0','2','0'), ('49354','18','','10661','Cluster node [{#NODE.NAME}]: Stats','zabbix.node.stats[{#NODE.ID}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Provides the statistics of a node.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','23101227cb3a4f4782bc9399c6a198ff','0','2','0'), ('49388','18','','10606','Azure Cost: Get daily costs errors','azure.get.daily.costs.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A list of errors from API requests.','0','7d','0','','46396','','','','','200','1','0','','','0','0','0','0','0','0','0','dc9824169b414303a75c5d98421bd6f8','0','2','0'), ('49389','18','','10606','Azure Cost: Get monthly costs errors','azure.get.monthly.costs.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A list of errors from API requests.','0','7d','0','','46397','','','','','200','1','0','','','0','0','0','0','0','0','0','30dae868261844f39c811cdba93628eb','0','2','0'), ('49390','18','','10662','Availability status detailed','azure.db.mssql.availability.details','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A detailed summary of the availability status.','0','7d','0','','49387','','','','','200','1','0','','','0','0','0','0','0','0','0','d13b970f51c64553942d04043dd3f8b5','0','2','0'), ('49391','18','','10662','Availability state','azure.db.mssql.availability.state','0','31d','365d','0','3','','','','',NULL,'1389','','','0','','','','','0',NULL,'The availability status of the resource.','0','7d','0','','49387','','','','','200','1','0','','','0','0','0','0','0','0','0','96a795438e244fefa2218fcd73542201','0','2','0'), ('49392','18','','10662','Connections failed: System errors','azure.db.mssql.connections.failed.system','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of failed connections with system errors.','0','7d','0','','49387','','','','','200','1','0','','','0','0','0','0','0','0','0','adc84144c91c4e4091e10e2f07d3e026','0','2','0'), ('49393','18','','10662','Connections successful','azure.db.mssql.connections.successful','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of successful connections.','0','7d','0','','49387','','','','','200','1','0','','','0','0','0','0','0','0','0','f55c3fcf1a4b4539a6770496453e3ee8','0','2','0'), ('49394','18','','10662','CPU percentage','azure.db.mssql.cpu.percentage','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of CPU usage on a host.','0','7d','0','','49387','','','','','200','1','0','','','0','0','0','0','0','0','0','fb2f97642cb647afaf5f52bb14b6a91c','0','2','0'), ('49395','18','','10662','Get errors','azure.db.mssql.data.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A list of errors from API requests.','0','7d','0','','49387','','','','','200','1','0','','','0','0','0','0','0','0','0','86c709baa2e54477b483eb9289b7ae78','0','2','0'), ('49396','18','','10662','Data IO percentage','azure.db.mssql.data.read.percentage','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of physical data read.','0','7d','0','','49387','','','','','200','1','0','','','0','0','0','0','0','0','0','447d6c462a384e87860eeba0b1e17787','0','2','0'), ('49397','18','','10662','Deadlocks','azure.db.mssql.deadlocks','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of deadlocks. Not applicable to data warehouses.','0','7d','0','','49387','','','','','200','1','0','','','0','0','0','0','0','0','0','192a5d5a4c6541b1a2e6394dc4e6961d','0','2','0'), ('49398','18','','10662','DTU limit','azure.db.mssql.dtu.limit','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The DTU limit. Applicable to DTU-based databases.','0','7d','0','','49387','','','','','200','1','0','','','0','0','0','0','0','0','0','1b9a19283e9f4f5c9ec386edbfd99d86','0','2','0'), ('49399','18','','10662','DTU percentage','azure.db.mssql.dtu.percentage','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The average percentage of DTU consumption for a DTU-based database.','0','7d','0','','49387','','','','','200','1','0','','','0','0','0','0','0','0','0','35daacf9b481454bbf017841c3b4acf6','0','2','0'), ('49400','18','','10662','DTU used','azure.db.mssql.dtu.used','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The DTU used. Applicable to DTU-based databases.','0','7d','0','','49387','','','','','200','1','0','','','0','0','0','0','0','0','0','9bd9b5d0fc1d439ebfdfac51f6eb3487','0','2','0'), ('49401','18','','10662','Connections blocked by firewall','azure.db.mssql.firewall.blocked','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of connections blocked by the firewall.','0','7d','0','','49387','','','','','200','1','0','','','0','0','0','0','0','0','0','4a0b3146d95742b1a30950da3fb6dcc5','0','2','0'), ('49402','18','','10662','Log IO percentage','azure.db.mssql.log.write.percentage','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of I/O used for log writes. Not applicable to data warehouses.','0','7d','0','','49387','','','','','200','1','0','','','0','0','0','0','0','0','0','0f71327c99054e5d8ebf432eccc0a536','0','2','0'), ('49403','18','','10662','SQL instance CPU percent','azure.db.mssql.server.cpu.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'CPU usage from all user and system workloads. Not applicable to data warehouses.','0','7d','0','','49387','','','','','200','1','0','','','0','0','0','0','0','0','0','218525cc5d474d249d62db21ca08d7c6','0','2','0'), ('49404','18','','10662','SQL instance memory percent','azure.db.mssql.server.memory.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of memory used by the database engine instance. Not applicable to data warehouses.','0','7d','0','','49387','','','','','200','1','0','','','0','0','0','0','0','0','0','d6d0d99c736f4ecea48c3cb5d920ee72','0','2','0'), ('49405','18','','10662','Sessions count','azure.db.mssql.sessions.count','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of active sessions. Not applicable to Synapse DW Analytics.','0','7d','0','','49387','','','','','200','1','0','','','0','0','0','0','0','0','0','b9d6045642de46e08c45cca9b619bf75','0','2','0'), ('49406','18','','10662','Sessions percentage','azure.db.mssql.sessions.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of sessions. Not applicable to data warehouses.','0','7d','0','','49387','','','','','200','1','0','','','0','0','0','0','0','0','0','62298388449448e18fb0efb5b139b79c','0','2','0'), ('49407','18','','10662','Data space allocated','azure.db.mssql.storage.allocated','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The allocated data storage. Not applicable to data warehouses.','0','7d','0','','49387','','','','','200','1','0','','','0','0','0','0','0','0','0','e5cec53daadf40f79f580af1df77c35c','0','2','0'), ('49408','18','','10662','Log backup storage size','azure.db.mssql.storage.backup.log.size','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The cumulative log backup storage size. Applies to vCore-based and Hyperscale databases.','0','7d','0','','49387','','','','','200','1','0','','','0','0','0','0','0','0','0','7c66b3e9b28043098a1d942c48fc0369','0','2','0'), ('49409','18','','10662','Data space used percent','azure.db.mssql.storage.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Data space used in percent. Not applicable to data warehouses or Hyperscale databases.','0','7d','0','','49387','','','','','200','1','0','','','0','0','0','0','0','0','0','6a09939f232f4a078aa088f0dbcf370c','0','2','0'), ('49410','18','','10662','Data space used','azure.db.mssql.storage.used','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Data space used. Not applicable to data warehouses.','0','7d','0','','49387','','','','','200','1','0','','','0','0','0','0','0','0','0','829a31cfbd58473fb6aca227623dd374','0','2','0'), ('49411','18','','10662','In-Memory OLTP storage percent','azure.db.mssql.storage.xtp.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'In-Memory OLTP storage percent. Not applicable to data warehouses.','0','7d','0','','49387','','','','','200','1','0','','','0','0','0','0','0','0','0','154d7dd42d2849be9d3cf92e11a6f923','0','2','0'), ('49412','18','','10662','Tempdb data file size','azure.db.mssql.tempdb.data.size','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The space used in `tempdb` data files, expressed in bytes. Not applicable to data warehouses.','0','7d','0','','49387','','','','','200','1','0','','','0','0','0','0','0','0','0','d9a7c8558eb7418eb1113342d0c6225a','0','2','0'), ('49413','18','','10662','Tempdb log used percent','azure.db.mssql.tempdb.log.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of space used in the `tempdb` transaction log file. Not applicable to data warehouses.','0','7d','0','','49387','','','','','200','1','0','','','0','0','0','0','0','0','0','a3d555807a4247e9ba3c388ae75bb5ce','0','2','0'), ('49414','18','','10662','Tempdb log file size','azure.db.mssql.tempdb.log.size','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The space used in the `tempdb` transaction log file, expressed in bytes. Not applicable to data warehouses.','0','7d','0','','49387','','','','','200','1','0','','','0','0','0','0','0','0','0','3e64483271b347ceb300288079451f3e','0','2','0'), ('49415','18','','10662','Workers percentage','azure.db.mssql.workers.percent','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of workers. Not applicable to data warehouses.','0','7d','0','','49387','','','','','200','1','0','','','0','0','0','0','0','0','0','75ad7da5a2c74022ace6f28fed2c8ef2','0','2','0'), ('49640','18','','10663','Get array data','purestorage.flasharray.array.get','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collects array data from the Pure Storage FlashArray API.','0','7d','0','','49638','','','','','200','1','0','','','0','0','0','0','0','0','0','559fb36d7bb34145a2afcdc790951041','0','2','0'), ('49641','18','','10663','Authentication item errors','purestorage.flasharray.auth.errors','0','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collects errors from the authentication item.','0','7d','0','','49638','','','','','200','1','0','','','0','0','0','0','0','0','0','254ba4d842a64dc19cdd42ac9436b0d7','0','2','0'), ('49642','18','','10663','Get certificates','purestorage.flasharray.certificates.get','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collects all certificates from the Pure Storage FlashArray API.','0','7d','0','','49638','','','','','200','1','0','','','0','0','0','0','0','0','0','e27cd9105cc74c2fa401bfe1a35f5261','0','2','0'), ('49643','18','','10663','Get hardware data','purestorage.flasharray.hardware.get','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collects hardware from the Pure Storage FlashArray API.','0','7d','0','','49638','','','','','200','1','0','','','0','0','0','0','0','0','0','02d04959c00b4d8e861e205b863c0ece','0','2','0'), ('49644','18','','10663','Get hosts','purestorage.flasharray.hosts.get','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collects all hosts from the Pure Storage FlashArray API.','0','7d','0','','49638','','','','','200','1','0','','','0','0','0','0','0','0','0','7e483238579b40118674edf0c0f21250','0','2','0'), ('49645','18','','10663','Get network interfaces','purestorage.flasharray.net_ifs.get','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collects all network interfaces from the Pure Storage FlashArray API.','0','7d','0','','49638','','','','','200','1','0','','','0','0','0','0','0','0','0','bcfa1e2b0bb34baf82b28fad87ba7688','0','2','0'), ('49646','18','','10663','Get pods','purestorage.flasharray.pods.get','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collects all pods from the Pure Storage FlashArray API.','0','7d','0','','49638','','','','','200','1','0','','','0','0','0','0','0','0','0','e6a4b00380a64f02a0209c2168d0191f','0','2','0'), ('49647','18','','10663','Get volumes','purestorage.flasharray.volumes.get','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collects all volumes from the Pure Storage FlashArray API.','0','7d','0','','49638','','','','','200','1','0','','','0','0','0','0','0','0','0','ece41bfbe0ba4037baae8305f5ce6a61','0','2','0'), ('49648','18','','10664','Get alerts data','purestorage.flasharray.alert.get','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collects alert data from the Pure Storage FlashArray API.','0','7d','0','','49639','','','','','200','1','0','','','0','0','0','0','0','0','0','e4487e51d7634eb49e8af75ed6536379','0','2','0'), ('49649','18','','10664','Get array data','purestorage.flasharray.array.get','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collects array data from the Pure Storage FlashArray API.','0','7d','0','','49639','','','','','200','1','0','','','0','0','0','0','0','0','0','2e93f80f7cdb44f29c6e4365d66ad6ca','0','2','0'), ('49650','18','','10664','Authentication item errors','purestorage.flasharray.auth.errors','0','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collects errors from the authentication item.','0','7d','0','','49639','','','','','200','1','0','','','0','0','0','0','0','0','0','9c81b77d59c54158954b57b0637962f2','0','2','0'), ('49651','18','','10664','Get certificates','purestorage.flasharray.certificates.get','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collects all certificates from the Pure Storage FlashArray API.','0','7d','0','','49639','','','','','200','1','0','','','0','0','0','0','0','0','0','2be77186be6d416db147131c13671e50','0','2','0'), ('49652','18','','10664','Get hardware data','purestorage.flasharray.hardware.get','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collects hardware from the Pure Storage FlashArray API.','0','7d','0','','49639','','','','','200','1','0','','','0','0','0','0','0','0','0','e7b56f166f234fbfae58b8dade895abd','0','2','0'), ('49653','18','','10664','Get hosts','purestorage.flasharray.hosts.get','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collects all hosts from the Pure Storage FlashArray API.','0','7d','0','','49639','','','','','200','1','0','','','0','0','0','0','0','0','0','1ab5da19e46642fd95e38713d54b446e','0','2','0'), ('49654','18','','10664','Get network interfaces','purestorage.flasharray.net_ifs.get','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collects all network interfaces from the Pure Storage FlashArray API.','0','7d','0','','49639','','','','','200','1','0','','','0','0','0','0','0','0','0','d4b5f78ac0a24fe3ae06a4d1e46cc613','0','2','0'), ('49655','18','','10664','Get pods','purestorage.flasharray.pods.get','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collects all pods from the Pure Storage FlashArray API.','0','7d','0','','49639','','','','','200','1','0','','','0','0','0','0','0','0','0','c45d966070b840e69bf07b6946f3404c','0','2','0'), ('49656','18','','10664','Get support information','purestorage.flasharray.support.get','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collects support information from the Pure Storage FlashArray API.','0','7d','0','','49639','','','','','200','1','0','','','0','0','0','0','0','0','0','644edca046a14dd283713e37ef7d3431','0','2','0'), ('49657','18','','10664','Get volumes','purestorage.flasharray.volumes.get','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collects all volumes from the Pure Storage FlashArray API.','0','7d','0','','49639','','','','','200','1','0','','','0','0','0','0','0','0','0','0e074762c4ad4cf3978b2bbc38a60d4a','0','2','0'), ('49866','18','','10665','Availability status detailed','azure.vault.availability.details','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The summary description of the availability status.','0','7d','0','','49865','','','','','200','1','0','','','0','0','0','0','0','0','0','b733302413d54250ba053b017367c6d6','0','2','0'), ('49867','18','','10665','Availability state','azure.vault.availability.state','0','31d','365d','0','3','','','','',NULL,'1407','','','0','','','','','0',NULL,'The availability status of the resource. 0 - Available - no events detected that affect the health of the resource. 1 - Degraded - your resource detected a loss in performance, although it''s still available for use. 2 - Unavailable - the service detected an ongoing platform or non-platform event that affects the health of the resource. 3 - Unknown - Resource Health hasn''t received information about the resource for more than 10 minutes.','0','7d','0','','49865','','','','','200','1','0','','','0','0','0','0','0','0','0','1dc10b5b07f648d4a75f614573bb8da5','0','2','0'), ('49868','18','','10665','Get errors','azure.vault.data.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A list of errors from API requests.','0','7d','0','','49865','','','','','200','1','0','','','0','0','0','0','0','0','0','00848eb26866420282b2afdfc4334484','0','2','0'), ('49869','18','','10665','Jobs: Backup','azure.vault.jobs.backup','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of backup jobs over the period of `{$AZURE.VAULT.PERIOD}` day(s).','0','7d','0','','49865','','','','','200','1','0','','','0','0','0','0','0','0','0','c5eb6f559a544be89f51ea3f8eee6dab','0','2','0'), ('49870','18','','10665','Jobs: Configuring backup','azure.vault.jobs.backup.config','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of backup configuration jobs over the period of `{$AZURE.VAULT.PERIOD}` day(s).','0','7d','0','','49865','','','','','200','1','0','','','0','0','0','0','0','0','0','78a30e56155c4a9c8af1fe54999276fd','0','2','0'), ('49871','18','','10665','Jobs: Deleting backup data','azure.vault.jobs.backup.delete','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of backup data deletion jobs over the period of `{$AZURE.VAULT.PERIOD}` day(s).','0','7d','0','','49865','','','','','200','1','0','','','0','0','0','0','0','0','0','7b6e5f9eb7e74524bf4fa856225ad107','0','2','0'), ('49872','18','','10665','Jobs: Cancelled','azure.vault.jobs.cancelled','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of cancelled jobs over the period of `{$AZURE.VAULT.PERIOD}` day(s).','0','7d','0','','49865','','','','','200','1','0','','','0','0','0','0','0','0','0','7a8af0d3852546e9aa49a3754af4e1f3','0','2','0'), ('49873','18','','10665','Jobs: Completed','azure.vault.jobs.completed','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of completed jobs over the period of `{$AZURE.VAULT.PERIOD}` day(s).','0','7d','0','','49865','','','','','200','1','0','','','0','0','0','0','0','0','0','1b2f4f764b2c4a65b824e816094117d5','0','2','0'), ('49874','18','','10665','Jobs: Failed','azure.vault.jobs.failed','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of failed jobs over the period of `{$AZURE.VAULT.PERIOD}` day(s).','0','7d','0','','49865','','','','','200','1','0','','','0','0','0','0','0','0','0','90a112a3ef2b42d2a372b8b4fb5c95fb','0','2','0'), ('49875','18','','10665','Jobs: In progress','azure.vault.jobs.in_progress','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of jobs in progress over the period of `{$AZURE.VAULT.PERIOD}` day(s).','0','7d','0','','49865','','','','','200','1','0','','','0','0','0','0','0','0','0','5b9b00fad0364710b82ed05595848e82','0','2','0'), ('49876','18','','10665','Jobs: Restore','azure.vault.jobs.restore','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of restore jobs over the period of `{$AZURE.VAULT.PERIOD}` day(s).','0','7d','0','','49865','','','','','200','1','0','','','0','0','0','0','0','0','0','482582a2ac6045dc97be5d2fc19bbe8f','0','2','0'), ('49877','18','','10665','Jobs: Total','azure.vault.jobs.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of jobs over the period of `{$AZURE.VAULT.PERIOD}` day(s).','0','7d','0','','49865','','','','','200','1','0','','','0','0','0','0','0','0','0','3024516bc255403b8aaa765b4d376835','0','2','0'), ('49878','18','','10665','Jobs: Completed with warnings','azure.vault.jobs.with_warning','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of jobs completed with warnings over the period of `{$AZURE.VAULT.PERIOD}` day(s).','0','7d','0','','49865','','','','','200','1','0','','','0','0','0','0','0','0','0','4ac88439754f426090b0aa454ea4a5ed','0','2','0'), ('49879','18','','10665','Azure backup job discovery','azure.vault.job.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'List of backup jobs in the vault.','0','0','1','','49865','','','','','200','1','0','','','0','0','0','0','0','0','0','e37ff9885d014939b9ea182ce2087e05','0','2','0'), ('49880','18','','10531','Azure Vault discovery','azure.vault.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The list of Azure Recovery Services and Backup vaults provided by the subscription.','0','7d','1','','43714','','','','','200','1','0','','','0','0','0','0','0','0','0','b00b92f713724eaa9f028acf244527a6','0','2','0'), ('49881','18','','10665','Job status [{#JOB.FRIENDLY.NAME}, {#JOB.NAME}]','azure.vault.job.status[{#JOB.NAME}]','0','31d','365d','0','3','','','','',NULL,'1406','','','0','','','','','2',NULL,'Job status. Possible values: 0 - Unknown 1 - In progress 2 - Queued 3 - Completed 4 - Completed with warnings 5 - Failed 6 - Cancelled 7 - Expired','0','7d','0','','49865','','','','','200','1','0','','','0','0','0','0','0','0','0','9a46651633ad45d69a2a931259d381ac','0','2','0'), ('49883','18','','10589','Bgwriter LLD','pgsql.bgwriter.lld','0','0','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'LLD data for "bgwriter" metrics discovery.','0','7d','0','','49882','','','','','200','1','0','','','0','0','0','0','0','0','0','9b8faf03797f4dccb9573b664805478a','0','2','0'), ('49888','18','','10589','Bgwriter: Buffers allocated per second{#SINGLETON}','pgsql.bgwriter.buffers_alloc.rate.above_17[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of buffers allocated per second.','0','7d','0','','49886','','','','','200','1','0','','','0','0','0','0','0','0','0','7c2521a1c02240d6846344cc447ffd45','0','2','0'), ('49889','18','','10589','Checkpoint: Buffers written during checkpoints per second{#SINGLETON}','pgsql.bgwriter.buffers_checkpoint.rate.above_17[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of buffers written during checkpoints per second.','0','7d','0','','49886','','','','','200','1','0','','','0','0','0','0','0','0','0','52123eb6463b4d7d990a66398d773e0c','0','2','0'), ('49890','18','','10589','Checkpoint: Buffers written by the background writer per second{#SINGLETON}','pgsql.bgwriter.buffers_clean.rate.above_17[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of buffers written by the background writer per second.','0','7d','0','','49886','','','','','200','1','0','','','0','0','0','0','0','0','0','e29ed04f09044901a25e3865acf98965','0','2','0'), ('49891','18','','10589','Checkpoint: Requested per second{#SINGLETON}','pgsql.bgwriter.checkpoints_req.rate.above_17[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of requested checkpoints that have been performed per second.','0','7d','0','','49886','','','','','200','1','0','','','0','0','0','0','0','0','0','28219abecf7a44ff948ce97840263b41','0','2','0'), ('49892','18','','10589','Checkpoint: Scheduled per second{#SINGLETON}','pgsql.bgwriter.checkpoints_timed.rate.above_17[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of scheduled checkpoints that have been performed per second.','0','7d','0','','49886','','','','','200','1','0','','','0','0','0','0','0','0','0','8065cdd159d84ea69b99983abf0d6beb','0','2','0'), ('49893','18','','10589','Bgwriter: Checkpoint sync time per second{#SINGLETON}','pgsql.bgwriter.checkpoint_sync_time.rate.above_17[{#SINGLETON}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Total amount of time per second that has been spent in the portion of checkpoint processing where files are synchronized to disk.','0','7d','0','','49886','','','','','200','1','0','','','0','0','0','0','0','0','0','5a5d84878d22478aa856228b4486b55d','0','2','0'), ('49894','18','','10589','Checkpoint: Checkpoint write time per second{#SINGLETON}','pgsql.bgwriter.checkpoint_write_time.rate.above_17[{#SINGLETON}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Total amount of time per second that has been spent in the portion of checkpoint processing where files are written to disk.','0','7d','0','','49886','','','','','200','1','0','','','0','0','0','0','0','0','0','a84ae8aceaf44abaa33d925757b71b8f','0','2','0'), ('49895','18','','10589','Bgwriter: Number of bgwriter cleaning scan stopped per second{#SINGLETON}','pgsql.bgwriter.maxwritten_clean.rate.above_17[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of times the background writer stopped a cleaning scan because it had written too many buffers per second.','0','7d','0','','49886','','','','','200','1','0','','','0','0','0','0','0','0','0','70d6cea0481741d08a572e732b3e237d','0','2','0'), ('49896','18','','10589','Bgwriter: Buffers allocated per second{#SINGLETON}','pgsql.bgwriter.buffers_alloc.rate.below_17[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of buffers allocated per second.','0','7d','0','','49887','','','','','200','1','0','','','0','0','0','0','0','0','0','cc397d603cec450593a9871dd39e6db6','0','2','0'), ('49897','18','','10589','Bgwriter: Buffers written directly by a backend per second{#SINGLETON}','pgsql.bgwriter.buffers_backend.rate.below_17[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of buffers written directly by a backend per second.','0','7d','0','','49887','','','','','200','1','0','','','0','0','0','0','0','0','0','09f43b8bf08c41839ef48f8aefc5dd39','0','2','0'), ('49898','18','','10589','Bgwriter: Times a backend executed its own fsync per second{#SINGLETON}','pgsql.bgwriter.buffers_backend_fsync.rate.below_17[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of times a backend had to execute its own fsync call per second (normally the background writer handles those even when the backend does its own write).','0','7d','0','','49887','','','','','200','1','0','','','0','0','0','0','0','0','0','b734c475147040bfa431390e6b524f4c','0','2','0'), ('49899','18','','10589','Checkpoint: Buffers written during checkpoints per second{#SINGLETON}','pgsql.bgwriter.buffers_checkpoint.rate.below_17[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of buffers written during checkpoints per second.','0','7d','0','','49887','','','','','200','1','0','','','0','0','0','0','0','0','0','38ea04f3a47f4dcda9b61c6866c0efe3','0','2','0'), ('49900','18','','10589','Checkpoint: Buffers written by the background writer per second{#SINGLETON}','pgsql.bgwriter.buffers_clean.rate.below_17[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of buffers written by the background writer per second.','0','7d','0','','49887','','','','','200','1','0','','','0','0','0','0','0','0','0','9cf1b0c328d34490a66f79b32be20efd','0','2','0'), ('49901','18','','10589','Checkpoint: Requested per second{#SINGLETON}','pgsql.bgwriter.checkpoints_req.rate.below_17[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of requested checkpoints that have been performed per second.','0','7d','0','','49887','','','','','200','1','0','','','0','0','0','0','0','0','0','05340503596c48b7b3e7ce763e1b22ef','0','2','0'), ('49902','18','','10589','Checkpoint: Scheduled per second{#SINGLETON}','pgsql.bgwriter.checkpoints_timed.rate.below_17[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of scheduled checkpoints that have been performed per second.','0','7d','0','','49887','','','','','200','1','0','','','0','0','0','0','0','0','0','18f66c4149444c7b8b0190ac74488859','0','2','0'), ('49903','18','','10589','Bgwriter: Checkpoint sync time per second{#SINGLETON}','pgsql.bgwriter.checkpoint_sync_time.rate.below_17[{#SINGLETON}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Total amount of time per second that has been spent in the portion of checkpoint processing where files are synchronized to disk.','0','7d','0','','49887','','','','','200','1','0','','','0','0','0','0','0','0','0','e7d10f58ada9468abc4ad7b4a9900c1c','0','2','0'), ('49904','18','','10589','Checkpoint: Checkpoint write time per second{#SINGLETON}','pgsql.bgwriter.checkpoint_write_time.rate.below_17[{#SINGLETON}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Total amount of time per second that has been spent in the portion of checkpoint processing where files are written to disk.','0','7d','0','','49887','','','','','200','1','0','','','0','0','0','0','0','0','0','c7810e79f2d94f0e9a4f462d76b10a24','0','2','0'), ('49905','18','','10589','Bgwriter: Number of bgwriter cleaning scan stopped per second{#SINGLETON}','pgsql.bgwriter.maxwritten_clean.rate.below_17[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of times the background writer stopped a cleaning scan because it had written too many buffers per second.','0','7d','0','','49887','','','','','200','1','0','','','0','0','0','0','0','0','0','987ad2df6df14f1eabe2b1c6eb6713fc','0','2','0'), ('49908','18','','10261','Preprocessing queued throughput','preprocessing_throughput_queued','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Reflects the queued throughput of the preprocessing.','0','7d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','2f59c93854b746229eea6362c45d2a59','0','2','0'), ('49909','18','','10047','Preprocessing queued throughput','zabbix[preprocessing_throughput_queued]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Reflects the queued throughput of the preprocessing.','0','7d','0','','49906','','','','','200','1','0','','','0','0','0','0','0','0','0','4476af46c9114bec80cbc555cd81ee69','0','2','0'), ('49910','18','','10660','Preprocessing queued throughput','preprocessing_throughput_queued','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Reflects the queued throughput of the preprocessing.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','2d956b642f834e0894fe223113d2c4c3','0','2','0'), ('49911','18','','10661','Preprocessing queued throughput','preprocessing_throughput_queued','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Reflects the queued throughput of the preprocessing.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','4ee40b08e9a44f448595fcbb0e8c9ece','0','2','0'), ('49937','18','','10518','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','7d','0','','49921','','','','','200','1','0','','','0','0','0','0','0','0','0','3c3873ba5f8c473aa15efef467514d75','0','2','0'), ('49938','18','','10518','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','7d','0','','49921','','','','','200','1','0','','','0','0','0','0','0','0','0','28d757aaa3834e539f909afc478d11a6','0','2','0'), ('49939','18','','10518','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','7d','0','','49921','','','','','200','1','0','','','0','0','0','0','0','0','0','5aeeb92e3eeb4b7ca61b3f66b42ea270','0','2','0'), ('49940','18','','10518','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','7d','0','','49921','','','','','200','1','0','','','0','0','0','0','0','0','0','871849c94071437d9a7a8249bb421597','0','2','0'), ('49941','18','','10518','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','7d','0','','49921','','','','','200','1','0','','','0','0','0','0','0','0','0','74eac8a7eb5b4998b1fd05ec6ffebaf5','0','2','0'), ('49942','18','','10518','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','7d','0','','49921','','','','','200','1','0','','','0','0','0','0','0','0','0','604e8060ed2742fab7722d4cd92aa14b','0','2','0'), ('49943','18','','10518','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','7d','0','','49921','','','','','200','1','0','','','0','0','0','0','0','0','0','bdb0895c1c1e4e3abe68e62989454a88','0','2','0'), ('49944','18','','10518','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'957','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','7d','0','','49921','','','','','200','1','0','','','0','0','0','0','0','0','0','e4ce41cb19bc43058ee268a6c513abd4','0','2','0'), ('49945','18','','10518','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'958','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','7d','0','','49921','','','','','200','1','0','','','0','0','0','0','0','0','0','ed51f6b579b040088312d9312378ed4a','0','2','0'), ('49949','18','','10667','Get device metrics','cisco.ftd.device.metrics.get','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collects device metrics from the Cisco Secure FTD API.','0','7d','0','','49948','','','','','200','1','0','','','0','0','0','0','0','0','0','6c8d958d050b42c68519b763dbbd2b4b','0','2','0'), ('49950','18','','10667','Get operational metrics','cisco.ftd.operational.metrics.get','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collects device metrics from the Cisco Secure FTD API.','0','7d','0','','49948','','','','','200','1','0','','','0','0','0','0','0','0','0','5eae7fb2030e44bb8afa8b65c53c5d39','0','2','0'), ('50003','18','','10547','Device address','meraki.device.address','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Device location address Network: {$NETWORK.ID}','24','7d','0','','50002','','','','','200','1','0','','','0','0','0','0','0','0','0','a45187d4bd154072bc75d76df09708d9','0','2','0'), ('50004','18','','10547','Firmware','meraki.device.firmware','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Device firmware Network: {$NETWORK.ID}','16','7d','0','','50002','','','','','200','1','0','','','0','0','0','0','0','0','0','92b275569cff4013b545b5c251a318ab','0','2','0'), ('50005','18','','10547','Device latitude','meraki.device.latitude','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Latitude of the device location Network: {$NETWORK.ID}','25','7d','0','','50002','','','','','200','1','0','','','0','0','0','0','0','0','0','878cbc22039b4fab9949c1997041b1a8','0','2','0'), ('50006','18','','10547','Device longitude','meraki.device.longitude','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Longitude of the device location Network: {$NETWORK.ID}','26','7d','0','','50002','','','','','200','1','0','','','0','0','0','0','0','0','0','de69a544bf9047da9f47b0b8f6c61bf2','0','2','0'), ('50007','18','','10547','MAC address','meraki.device.mac.address','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Device MAC address Network: {$NETWORK.ID}','12','7d','0','','50002','','','','','200','1','0','','','0','0','0','0','0','0','0','3867fdab6af941ab9958b05b197419df','0','2','0'), ('50008','18','','10547','Device model','meraki.device.model','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Device model Network: {$NETWORK.ID}','29','7d','0','','50002','','','','','200','1','0','','','0','0','0','0','0','0','0','e66780872dba46dc9265c4dad022a799','0','2','0'), ('50009','18','','10547','Device notes','meraki.device.notes','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Notes about the device Network: {$NETWORK.ID}','27','7d','0','','50002','','','','','200','1','0','','','0','0','0','0','0','0','0','514db363389741619b3103fd57ec0675','0','2','0'), ('50010','18','','10547','Device OS','meraki.device.os','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Device operation system Network: {$NETWORK.ID}','5','7d','0','','50002','','','','','200','1','0','','','0','0','0','0','0','0','0','9c36f19a2d72418dbef579142722372f','0','2','0'), ('50011','18','','10547','Serial number','meraki.device.serialnumber','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Device serial number Network: {$NETWORK.ID}','8','7d','0','','50002','','','','','200','1','0','','','0','0','0','0','0','0','0','fa98beea4eca47859cc53a7d6bcf2008','0','2','0'), ('50012','18','','10547','Device inventory data item errors','meraki.get.inventory.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Item for gathering errors of the inventory data item.','0','7d','0','','50002','','','','','200','1','0','','','0','0','0','0','0','0','0','eb8c1772e6b940998b5eaa9fc95f92a5','0','2','0'), ('50014','18','','10565','[{#NAME}]: Self-test in progress','smart.disk.test.progress[{#NAME}]','0','31d','365d','0','3','','','','',NULL,'1410','','','0','','','','','2',NULL,'Reports if disk currently is executing SMART self-test.','0','7d','0','','44677','','','','','200','1','0','','','0','0','0','0','0','0','0','0dc4b9566aad4f7b87e747f49f4c017a','0','2','0'), ('50015','18','','10566','[{#NAME}]: Self-test in progress','smart.disk.test.progress[{#NAME}]','0','31d','365d','0','3','','','','',NULL,'1411','','','0','','','','','2',NULL,'Reports if disk currently is executing SMART self-test.','0','7d','0','','44698','','','','','200','1','0','','','0','0','0','0','0','0','0','d9b2164e304c4a00a921cf11a0194e79','0','2','0'), ('50018','18','','10668','Age','aws.backup_vault.age','0','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The age of the vault.','0','7d','0','','50016','','','','','200','1','0','','','0','0','0','0','0','0','0','cc5d272814ab457c99127d3d42ca8d54','0','2','0'), ('50019','18','','10668','Jobs: Backup','aws.backup_vault.job.backup.count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of backup jobs in the vault over the last `{$AWS.BACKUP_JOB.PERIOD}` day(s).','0','7d','0','','50017','','','','','200','1','0','','','0','0','0','0','0','0','0','4bf53a35af804262a4e0250a01d6c962','0','2','0'), ('50020','18','','10668','Jobs: Failed backup','aws.backup_vault.job.backup.failed.count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of failed backup jobs in the vault over the last `{$AWS.BACKUP_JOB.PERIOD}` day(s).','0','7d','0','','50017','','','','','200','1','0','','','0','0','0','0','0','0','0','b1e841181aac401e927b27dc6bca6736','0','2','0'), ('50021','18','','10668','Jobs: Copy','aws.backup_vault.job.copy.count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of copy jobs in the vault over the last `{$AWS.BACKUP_JOB.PERIOD}` day(s).','0','7d','0','','50017','','','','','200','1','0','','','0','0','0','0','0','0','0','d8ea077804634388bcb15bc99ad9839e','0','2','0'), ('50022','18','','10668','Jobs: Failed copy','aws.backup_vault.job.copy.failed.count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of failed copy jobs in the vault over the last `{$AWS.BACKUP_JOB.PERIOD}` day(s).','0','7d','0','','50017','','','','','200','1','0','','','0','0','0','0','0','0','0','a2a8734311c84c05b72738ce0d8192f5','0','2','0'), ('50023','18','','10668','Jobs: Restore','aws.backup_vault.job.restore.count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of restore jobs in the vault over the last `{$AWS.BACKUP_JOB.PERIOD}` day(s).','0','7d','0','','50017','','','','','200','1','0','','','0','0','0','0','0','0','0','fa781abfaa014fcdab62321fc9940ac7','0','2','0'), ('50024','18','','10668','Jobs: Failed restore','aws.backup_vault.job.restore.failed.count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of failed restore jobs in the vault over the last `{$AWS.BACKUP_JOB.PERIOD}` day(s).','0','7d','0','','50017','','','','','200','1','0','','','0','0','0','0','0','0','0','acae9cf0a32c42dead1651fc911afc3b','0','2','0'), ('50025','18','','10668','Jobs: Size, avg','aws.backup_vault.job.size.avg','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The average size, in bytes, of a backup (recovery point). This value can render differently depending on the resource type as AWS Backup pulls in data information from other AWS services. For example, the value returned may show a value of `0`, which may differ from the anticipated value.','0','7d','0','','50017','','','','','200','1','0','','','0','0','0','0','0','0','0','5a9a604c70844ab8bffe4bf96ceeb761','0','2','0'), ('50026','18','','10668','Jobs: Size, max','aws.backup_vault.job.size.max','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum size, in bytes, of a backup (recovery point). This value can render differently depending on the resource type as AWS Backup pulls in data information from other AWS services. For example, the value returned may show a value of `0`, which may differ from the anticipated value.','0','7d','0','','50017','','','','','200','1','0','','','0','0','0','0','0','0','0','90600e647d2a40ccbe1ced317c03abb4','0','2','0'), ('50027','18','','10668','Jobs: Size, min','aws.backup_vault.job.size.min','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The minimum size, in bytes, of a backup (recovery point). This value can render differently depending on the resource type as AWS Backup pulls in data information from other AWS services. For example, the value returned may show a value of `0`, which may differ from the anticipated value.','0','7d','0','','50017','','','','','200','1','0','','','0','0','0','0','0','0','0','0ad8090097e64cf3bf28710f423a6164','0','2','0'), ('50028','18','','10668','Jobs: Total','aws.backup_vault.job.total.count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of jobs in the vault over the last `{$AWS.BACKUP_JOB.PERIOD}` day(s).','0','7d','0','','50017','','','','','200','1','0','','','0','0','0','0','0','0','0','886b2b55cfbf42d58f01cfad66cc1ad5','0','2','0'), ('50029','18','','10668','Lock date','aws.backup_vault.lock.date','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','0',NULL,'The date and time when AWS Backup Vault Lock configuration becomes immutable, meaning it cannot be changed or deleted.','0','7d','0','','50016','','','','','200','1','0','','','0','0','0','0','0','0','0','0faeb1eedbb64fa7848a475fb8da1808','0','2','0'), ('50030','18','','10668','Lock status','aws.backup_vault.lock.status','0','31d','365d','0','3','','','','',NULL,'1413','','','0','','','','','0',NULL,'Indicates whether AWS Backup Vault Lock is applied to the selected backup vault. When the vault is locked, delete and update operations on recovery points in that vault are prevented.','0','7d','0','','50016','','','','','200','1','0','','','0','0','0','0','0','0','0','477eb6a9728e4fb4aadd8b9903ef6fb1','0','2','0'), ('50031','18','','10668','Lock time remain','aws.backup_vault.lock.time_left','0','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The remaining time before AWS Backup Vault Lock configuration becomes immutable, meaning it cannot be changed or deleted.','0','7d','0','','50016','','','','','200','1','0','','','0','0','0','0','0','0','0','b886025d57d345298e6739972b328223','0','2','0'), ('50032','18','','10668','Recovery points','aws.backup_vault.recovery_points','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of recovery points in the backup vault.','0','7d','0','','50016','','','','','200','1','0','','','0','0','0','0','0','0','0','abab51050d0a4fbbb976db8b6fe51494','0','2','0'), ('50033','18','','10668','Retention period, max','aws.backup_vault.retention.max','0','31d','365d','0','3','','!day(s)','','',NULL,NULL,'','','0','','','','','0',NULL,'The maximum retention period that the vault retains its recovery points.','0','7d','0','','50016','','','','','200','1','0','','','0','0','0','0','0','0','0','9d8c6dc0c1dc4b65a2a2edd299bf7855','0','2','0'), ('50034','18','','10668','Retention period, min','aws.backup_vault.retention.min','0','31d','365d','0','3','','!day(s)','','',NULL,NULL,'','','0','','','','','0',NULL,'The minimum retention period that the vault retains its recovery points.','0','7d','0','','50016','','','','','200','1','0','','','0','0','0','0','0','0','0','6bbb460c7630455db019528e2fa4333b','0','2','0'), ('50035','18','','10668','State','aws.backup_vault.state','0','31d','365d','0','3','','','','',NULL,'1414','','','0','','','','','0',NULL,'The current state of the backup vault. Possible values are: - Unknown - Creating - Available - Failed','0','7d','0','','50016','','','','','200','1','0','','','0','0','0','0','0','0','0','b289382581d741e8b420bf6db3eaf073','0','2','0'), ('50036','18','','10668','AWS Backup job discovery','aws.backup_vault.job.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'AWS Backup job discovery.','0','0','1','','50017','','','','','200','1','0','','','0','0','0','0','0','0','0','1e96003b5bd949f08684cee42c1aa4d7','0','2','0'), ('50038','18','','10668','Job state [{#AWS.BACKUP_JOB.RESOURCE_NAME}][{#AWS.BACKUP_JOB.ID}]','aws.backup_vault.job.state["{#AWS.BACKUP_JOB.ID}"]','0','31d','365d','0','3','','','','',NULL,'1412','','','0','','','','','2',NULL,'The state of the job. Possible values are: - Unknown - Created - Pending - Running - Aborting - Aborted - Completed - Failed - Expired - Partial','0','7d','0','','50017','','','','','200','1','0','','','0','0','0','0','0','0','0','cc978e4977c94e0ca743757d9d254f14','0','2','0'), ('50059','18','','10670','Fan discovery','aruba.fan.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for discovering fans from ARUBAWIRED-FAN-MIB.','0','7d','0','','50042','','','','','200','1','0','','','0','0','0','0','0','0','0','8b55d9f865a44b07899ee773989ee976','0','2','0'), ('50060','18','','10670','OSPF Area discovery','aruba.ospf.area.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for discovering PSU from OSPF-MIB.','0','7d','0','','50039','','','','','200','1','0','','','0','0','0','0','0','0','0','28d8f26183e842d89664160b43e643e4','0','2','0'), ('50061','18','','10670','OSPF interface discovery','aruba.ospf.interface.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for discovering PSU from OSPF-MIB.','0','7d','0','','50040','','','','','200','1','0','','','0','0','0','0','0','0','0','05f9a4b0ea544ff490f240f5629ba73f','0','2','0'), ('50062','18','','10670','OSPF Neighbor discovery','aruba.ospf.neighbor.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for discovering PSU from OSPF-MIB.','0','7d','0','','50041','','','','','200','1','0','','','0','0','0','0','0','0','0','2221a4910f56484fa1e4c0388e69c072','0','2','0'), ('50063','18','','10670','PSU discovery','aruba.psu.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for discovering PSU from ARUBAWIRED-POWERSUPPLY-MIB.','0','7d','0','','50043','','','','','200','1','0','','','0','0','0','0','0','0','0','eb9c0879dff343d488f12e3860649edf','0','2','0'), ('50064','18','','10670','Resource discovery','aruba.resource.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for discovering system resources from ARUBAWIRED-SYSTEMINFO-MIB.','0','7d','0','','50044','','','','','200','1','0','','','0','0','0','0','0','0','0','fe04a84c30e4476fb9f1d3543f4ca031','0','2','0'), ('50065','18','','10670','Sensor discovery','aruba.sensor.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for discovering temperature sensors from ARUBAWIRED-TEMPSENSOR-MIB.','0','7d','0','','50045','','','','','200','1','0','','','0','0','0','0','0','0','0','24498833e71d4106ac6c590ee08a3dc3','0','2','0'), ('50066','18','','10670','Network interfaces discovery','net.if.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','50049','','','','','200','1','0','','','0','0','0','0','0','0','0','393e6f00ffda4c2b82ed70985f69f65f','0','2','0'), ('50067','18','','10670','Fan [{#SNMPVALUE}]: Speed','aruba.fan.speed[arubaWiredFanRPM.{#SNMPINDEX}]','0','31d','365d','0','0','','!RPM','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ARUBAWIRED-FAN-MIB Current RPM read for the fan. RPM of -1 indicates the fan does not have RPM readback capability.','0','7d','0','','50042','','','','','200','1','0','','','0','0','0','0','0','0','0','8f7bde9ff72146ceb23394c7f4955fdc','0','2','0'), ('50068','18','','10670','Fan [{#SNMPVALUE}]: Status','aruba.fan.status[arubaWiredFanStateEnum.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1415','','','0','','','','','2',NULL,'MIB: ARUBAWIRED-FAN-MIB Current status of the fan. Possible values: 1 - Unknown; 2 - Empty; 3 - Uninitialized; 4 - Ok; 5 - Fault.','0','7d','0','','50042','','','','','200','1','0','','','0','0','0','0','0','0','0','420adcb6a1544a59a7a8c6dfe32f2414','0','2','0'), ('50069','18','','10670','OSPF area [{#SNMPVALUE}]: LSA checksum','aruba.ospf.area.lsa.cksumsum[ospfAreaLsaCksumSum.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: OSPF-MIB The 32-bit sum of the checksums of the LSAs contained in this area''s link state database. This sum excludes external (LS type-5) link state advertisements. The sum can be used to determine if there has been a change in a router''s link state database, and to compare the link state database of two routers. The value should be treated as unsigned when comparing two sums of checksums.','0','7d','0','','50039','','','','','200','1','0','','','0','0','0','0','0','0','0','1900e153eed041e5a113a0bbe5e15d7e','0','2','0'), ('50070','18','','10670','OSPF area [{#SNMPVALUE}]: Translator role','aruba.ospf.area.lsa.translator.role[ospfAreaNssaTranslatorRole.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1426','','','0','','','','','2',NULL,'MIB: OSPF-MIB Indicates an NSSA border router''s ability to perform NSSA translation of type-7 LSAs into type-5 LSAs. Possible values: 1 - Always; 2 - Candidate.','0','7d','0','','50039','','','','','200','1','0','','','0','0','0','0','0','0','0','8ed73a4e57a041afbd98420beec665f8','0','2','0'), ('50071','18','','10670','OSPF area [{#SNMPVALUE}]: Translator state','aruba.ospf.area.lsa.translator.state[ospfAreaNssaTranslatorState.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1427','','','0','','','','','2',NULL,'MIB: OSPF-MIB Indicates NSSA border router translation state of type-7 LSAs into type-5 LSAs. Possible values: 1 - Enabled; 2 - Elected; 3 - Disabled. When `Enabled`, the NSSA Border router''s `OspfAreaNssaExtTranslatorRole` is `Always`. When `Elected`, a candidate NSSA border router is translating type-7 LSAs into type-5. When `Disabled`, a candidate NSSA border router is not translating type-7 LSAs into type-5.','0','7d','0','','50039','','','','','200','1','0','','','0','0','0','0','0','0','0','943511c194ac4e94b2ecb8035310f88c','0','2','0'), ('50072','18','','10670','OSPF area [{#SNMPVALUE}]: LSA count','aruba.ospf.area.lsa[ospfAreaLsaCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: OSPF-MIB The total number of link state advertisements in this area''s link state database, excluding AS-external LSAs.','0','7d','0','','50039','','','','','200','1','0','','','0','0','0','0','0','0','0','a1a4bc6d7bf04706aadf41875c7c609a','0','2','0'), ('50073','18','','10670','OSPF area [{#SNMPVALUE}]: Runs','aruba.ospf.area.runs[ospfSpfRuns.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: OSPF-MIB The number of times that the intra-area route table has been calculated using this area''s link state database. This is typically done using Dijkstra''s algorithm. Discontinuities in the value of this counter may occur at re-initialization of the management system, and at other times as indicated by the value of ospfDiscontinuityTime.','0','7d','0','','50039','','','','','200','1','0','','','0','0','0','0','0','0','0','47ca8b4fa5d64d69b41ed7122e93beaf','0','2','0'), ('50074','18','','10670','OSPF area [{#SNMPVALUE}]: Status','aruba.ospf.area.status[ospfAreaStatus.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1419','','','0','','','','','2',NULL,'MIB: OSPF-MIB This object permits management of the table by facilitating actions such as row creation, construction, and destruction. The value of this object has no effect on whether other objects in this conceptual row can be modified. Possible values: 1 - Active; 2 - Not in service; 3 - Not ready; 4 - Create and go; 5 - Create and wait; 6 - Destroy.','0','7d','0','','50039','','','','','200','1','0','','','0','0','0','0','0','0','0','a511989aac154b019214f21308b42b8b','0','2','0'), ('50075','18','','10670','OSPF area [{#SNMPVALUE}]: Auth type','aruba.ospf.area.type[ospfAuthType.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1418','','','0','','','','','2',NULL,'MIB: OSPF-MIB The authentication type specified for an area. Possible values: 0 - None; 1 - Simple password; 2 - md5.','0','7d','0','','50039','','','','','200','1','0','','','0','0','0','0','0','0','0','f94438a6299340c883e8adf14ce81bcd','0','2','0'), ('50076','18','','10670','OSPF interface [{#SNMPVALUE}]: Admin status','aruba.ospf.interface.admin.stat[ospfIfAdminStat.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1420','','','0','','','','','2',NULL,'MIB: OSPF-MIB The OSPF interface''s administrative status. If enabled, the interface is advertised as an internal route to an area. The value ''disabled'' denotes that the interface is external to OSPF. Possible values: 1 - Enabled; 2 - Disabled.','0','7d','0','','50040','','','','','200','1','0','','','0','0','0','0','0','0','0','61e943f269fb4c569094675950513044','0','2','0'), ('50077','18','','10670','OSPF interface [{#SNMPVALUE}]: Area ID','aruba.ospf.interface.area.id[ospfIfAreaId.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: OSPF-MIB A 32-bit integer uniquely identifying the area to which the interface connects. Area ID 0.0.0.0 is used for the OSPF backbone.','0','7d','0','','50040','','','','','200','1','0','','','0','0','0','0','0','0','0','eb18b543d548404db1d277e3244497b3','0','2','0'), ('50078','18','','10670','OSPF interface [{#SNMPVALUE}]: Events','aruba.ospf.interface.events[ospfIfEvents.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: OSPF-MIB The number of times this OSPF interface has changed its state or an error has occurred. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ospfDiscontinuityTime.','0','7d','0','','50040','','','','','200','1','0','','','0','0','0','0','0','0','0','6261c6bfbe424f409d04e7ab14e24a19','0','2','0'), ('50079','18','','10670','OSPF interface [{#SNMPVALUE}]: Priority','aruba.ospf.interface.rtr.priority[ospfIfRtrPriority.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: OSPF-MIB The priority of this interface. Used in multi-access networks, this field is used in the designated router election algorithm. The value 0 signifies that the router is not eligible to become the designated router on this particular network. In the event of a tie in this value, routers will use their Router ID as a tie breaker.','0','7d','0','','50040','','','','','200','1','0','','','0','0','0','0','0','0','0','a080180520104bbcaacd8e3f2a5212eb','0','2','0'), ('50080','18','','10670','OSPF interface [{#SNMPVALUE}]: State','aruba.ospf.interface.state[ospfIfState.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1421','','','0','','','','','2',NULL,'MIB: OSPF-MIB The OSPF Interface State. Possible values: 1 - Down; 2 - Loopback; 3 - Waiting; 4 - Point to point; 5 - Designated router; 6 - Backup designated router; 7 - Other designated router.','0','7d','0','','50040','','','','','200','1','0','','','0','0','0','0','0','0','0','ae11a76ed45b4d4691efa9c4a2d70ea8','0','2','0'), ('50081','18','','10670','OSPF interface [{#SNMPVALUE}]: Status','aruba.ospf.interface.status[ospfIfStatus.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1422','','','0','','','','','2',NULL,'MIB: OSPF-MIB This object permits management of the table by facilitating actions such as row creation, construction, and destruction. The value of this object has no effect on whether other objects in this conceptual row can be modified. Possible values: 1 - Active; 2 - Not in service; 3 - Not ready; 4 - Create and go; 5 - Create and wait; 6 - Destroy.','0','7d','0','','50040','','','','','200','1','0','','','0','0','0','0','0','0','0','c92e0874e4c143959632259aac95efbb','0','2','0'), ('50082','18','','10670','OSPF interface [{#SNMPVALUE}]: Type','aruba.ospf.interface.type[ospfIfType.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1423','','','0','','','','','2',NULL,'MIB: OSPF-MIB The OSPF interface type. By way of a default, this field may be intuited from the corresponding value of ifType. Broadcast LANs, such as Ethernet and IEEE 802.5, take the value ''broadcast'', X.25 and similar technologies take the value ''nbma'', and links that are definitively point-to-point take the value ''pointToPoint''. Possible values: 1 - Broadcast; 2 - NBMA; 3 - Point to point; 4 - Virtual link; 5 - Point to multipoint.','0','7d','0','','50040','','','','','200','1','0','','','0','0','0','0','0','0','0','e8491018f7b146c589ac817203e564b4','0','2','0'), ('50083','18','','10670','OSPF neighbor [{#SNMPVALUE}]: Events','aruba.ospf.neighbor.events[ospfNbrEvents.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: OSPF-MIB The number of times this neighbor relationship has changed state or an error has occurred. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ospfDiscontinuityTime.','0','7d','0','','50041','','','','','200','1','0','','','0','0','0','0','0','0','0','3bfda8b21b0443408121c91f19545a6c','0','2','0'), ('50084','18','','10670','OSPF neighbor [{#SNMPVALUE}]: Options','aruba.ospf.neighbor.options[ospfNbrOptions.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: OSPF-MIB A bit mask corresponding to the neighbor''s options field. Bit 0, if set, indicates that the system will operate on Type of Service metrics other than TOS 0. If zero, the neighbor will ignore all metrics except the TOS 0 metric. Bit 1, if set, indicates that the associated area accepts and operates on external information; if zero, it is a stub area. Bit 2, if set, indicates that the system is capable of routing IP multicast datagrams – it implements the multicast extensions to OSPF. Bit 3, if set, indicates that the associated area is an NSSA. These areas are capable of carrying type-7 external advertisements, which are translated into type-5 external advertisements at NSSA borders.','0','7d','0','','50041','','','','','200','1','0','','','0','0','0','0','0','0','0','5c67c1f185c14e94b60f50f3667a53c4','0','2','0'), ('50085','18','','10670','OSPF neighbor [{#SNMPVALUE}]: Priority','aruba.ospf.neighbor.priority[ospfNbrPriority.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: OSPF-MIB The priority of this neighbor in the designated router election algorithm. The value 0 signifies that the neighbor is not eligible to become the designated router on this particular network.','0','7d','0','','50041','','','','','200','1','0','','','0','0','0','0','0','0','0','994d35d28ff043619a5917df64b2f24e','0','2','0'), ('50086','18','','10670','OSPF neighbor [{#SNMPVALUE}]: Retrans queue length','aruba.ospf.neighbor.retrans.q.len[ospfNbrLsRetransQLen.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: OSPF-MIB The current length of the retransmission queue.','0','7d','0','','50041','','','','','200','1','0','','','0','0','0','0','0','0','0','c7f9a4e76bd044799948846eb8f0a783','0','2','0'), ('50087','18','','10670','OSPF neighbor [{#SNMPVALUE}]: Neighbor router ID','aruba.ospf.neighbor.rtr.id[ospfNbrRtrId.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: OSPF-MIB A 32-bit integer (represented as a type IpAddress) uniquely identifying the neighboring router in the Autonomous System.','0','7d','0','','50041','','','','','200','1','0','','','0','0','0','0','0','0','0','7de8cd0ab2c44bd0aa099e3b952161d8','0','2','0'), ('50088','18','','10670','OSPF neighbor [{#SNMPVALUE}]: State','aruba.ospf.neighbor.state[ospfNbrState.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1424','','','0','','','','','2',NULL,'MIB: OSPF-MIB The state of the relationship with this neighbor. Possible values: 1 - Down; 2 - Attempt; 3 - Init; 4 - Two way; 5 - Exchange start; 6 - Exchange; 7 - Loading; 8 - Full.','0','7d','0','','50041','','','','','200','1','0','','','0','0','0','0','0','0','0','79d04cecb34e4fb3ac6b12cc645c4f3d','0','2','0'), ('50089','18','','10670','OSPF neighbor [{#SNMPVALUE}]: Status','aruba.ospf.neighbor.status[ospfNbmaNbrStatus.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1425','','','0','','','','','2',NULL,'MIB: OSPF-MIB This object permits management of the table by facilitating actions such as row creation, construction, and destruction. The value of this object has no effect on whether other objects in this conceptual row can be modified. Possible values: 1 - Active; 2 - Not in service; 3 - Not ready; 4 - Create and go; 5 - Create and wait; 6 - Destroy.','0','7d','0','','50041','','','','','200','1','0','','','0','0','0','0','0','0','0','b0141725f0564dee97dee2280d950184','0','2','0'), ('50090','18','','10670','PSU [{#SNMPVALUE}]: Instantaneous power','aruba.psu.power[arubaWiredPSUInstantaneousPower.{#SNMPINDEX}]','0','31d','365d','0','3','','W','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ARUBAWIRED-POWERSUPPLY-MIB Total instantaneous power supplied by the power supply in watts.','0','7d','0','','50043','','','','','200','1','0','','','0','0','0','0','0','0','0','97a068f9b8dd4aae855098677816bdc2','0','2','0'), ('50091','18','','10670','PSU [{#SNMPVALUE}]: State','aruba.psu.state[arubaWiredPSUStateEnum.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1428','','','0','','','','','2',NULL,'MIB: ARUBAWIRED-POWERSUPPLY-MIB Current status for the power supply. Possible values: 1 - Ok; 2 - Fault Absent; 3 - Fault Input; 4 - Fault Output; 5 - Fault POE; 6 - Fault No Recov; 7 - Alert; 8 - Unknown; 9 - Unsupported; 10 - Warning; 11 - Init; 12 - Empty; 13 - Fault Airflow; 14 - Fault Redundancy.','0','7d','0','','50043','','','','','200','1','0','','','0','0','0','0','0','0','0','b5789b1ae32646509c248fea06169b65','0','2','0'), ('50092','18','','10670','Module [{#SNMPVALUE}]: CPU load average 1 min','aruba.system.cpu.la1[arubaWiredSystemInfoCpuAvgOneMin.{#SNMPINDEX}]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ARUBAWIRED-SYSTEMINFO-MIB The percentage of CPU utilization of the subsystem averaged across all the CPUs of the system over a one-minute period.','0','7d','0','','50044','','','','','200','1','0','','','0','0','0','0','0','0','0','c4011281ee2f4d38883ebfcff48325b6','0','2','0'), ('50093','18','','10670','Module [{#SNMPVALUE}]: CPU load average 5 min','aruba.system.cpu.la5[arubaWiredSystemInfoCpuAvgFiveMin.{#SNMPINDEX}]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ARUBAWIRED-SYSTEMINFO-MIB The percentage of CPU utilization of the subsystem averaged across all the CPUs of the system period of five minutes.','0','7d','0','','50044','','','','','200','1','0','','','0','0','0','0','0','0','0','f140efa0c906458d968b20773c5397ca','0','2','0'), ('50094','18','','10670','Module [{#SNMPVALUE}]: CPU utilization','aruba.system.cpu.utilization[arubaWiredSystemInfoCpu.{#SNMPINDEX}]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ARUBAWIRED-SYSTEMINFO-MIB The percentage of CPU utilization of the subsystem averaged across all the CPUs of the system.','0','7d','0','','50044','','','','','200','1','0','','','0','0','0','0','0','0','0','b4c26787aa4a4c1a83e9f8cd7afec78f','0','2','0'), ('50095','18','','10670','Module [{#SNMPVALUE}]: Memory usage','aruba.system.memory.usage[arubaWiredSystemInfoMemory.{#SNMPINDEX}]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ARUBAWIRED-SYSTEMINFO-MIB Subsystem memory usage in percent.','0','7d','0','','50044','','','','','200','1','0','','','0','0','0','0','0','0','0','d7d19a92c1b046c285ee91e7c9524663','0','2','0'), ('50096','18','','10670','Module [{#SNMPVALUE}]: Storage core dump utilization','aruba.system.storage.coredump.utilization[arubaWiredSystemInfoStorageCoredump.{#SNMPINDEX}]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ARUBAWIRED-SYSTEMINFO-MIB Utilization of core dump storage partition in percent.','0','7d','0','','50044','','','','','200','1','0','','','0','0','0','0','0','0','0','7146cf97b48f49e3a97215537f8690c0','0','2','0'), ('50097','18','','10670','Module [{#SNMPVALUE}]: Storage log utilization','aruba.system.storage.log.utilization[arubaWiredSystemInfoStorageLog.{#SNMPINDEX}]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ARUBAWIRED-SYSTEMINFO-MIB Utilization of log storage partition in percent.','0','7d','0','','50044','','','','','200','1','0','','','0','0','0','0','0','0','0','660a53c1bdb244ccbbbb5b1ab58efef5','0','2','0'), ('50098','18','','10670','Module [{#SNMPVALUE}]: Storage NOS utilization','aruba.system.storage.nos.utilization[arubaWiredSystemInfoStorageNos.{#SNMPINDEX}]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ARUBAWIRED-SYSTEMINFO-MIB Utilization of network operating system storage partition in percent.','0','7d','0','','50044','','','','','200','1','0','','','0','0','0','0','0','0','0','7d87e1e4bbfb4549a916a43a83739342','0','2','0'), ('50099','18','','10670','Module [{#SNMPVALUE}]: Storage security utilization','aruba.system.storage.security.utilization[arubaWiredSystemInfoStorageSecurity.{#SNMPINDEX}]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ARUBAWIRED-SYSTEMINFO-MIB Utilization of security storage partition in percent.','0','7d','0','','50044','','','','','200','1','0','','','0','0','0','0','0','0','0','0431b41aa56c4e9bb47fcd56943339d3','0','2','0'), ('50100','18','','10670','Module [{#SNMPVALUE}]: Storage self test utilization','aruba.system.storage.selftest.utilization[arubaWiredSystemInfoStorageSelftest.{#SNMPINDEX}]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ARUBAWIRED-SYSTEMINFO-MIB Utilization of self test storage partition in percent.','0','7d','0','','50044','','','','','200','1','0','','','0','0','0','0','0','0','0','65ac4ca5676b45d3804121c102644290','0','2','0'), ('50101','18','','10670','Sensor [{#SNMPVALUE}]: State','aruba.system.sensors[arubaWiredTempSensorState.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ARUBAWIRED-TEMPSENSOR-MIB Current status for the temperature sensor.','0','7d','0','','50045','','','','','200','1','0','','','0','0','0','0','0','0','0','4a9d404cb8cb43679095f89b0d2f3bae','0','2','0'), ('50102','18','','10670','Sensor [{#SNMPVALUE}]: Temperature','aruba.system.sensors[arubaWiredTempSensorTemperature.{#SNMPINDEX}]','0','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: ARUBAWIRED-TEMPSENSOR-MIB Current temperature value read from the temperature sensor.','0','7d','0','','50045','','','','','200','1','0','','','0','0','0','0','0','0','0','824cca3e4dbd484cb955e69f40fcf341','0','2','0'), ('50103','18','','10670','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','7d','0','','50049','','','','','200','1','0','','','0','0','0','0','0','0','0','340c2fdef787474e83be63997b625831','0','2','0'), ('50104','18','','10670','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','7d','0','','50049','','','','','200','1','0','','','0','0','0','0','0','0','0','8076d892bc48457c8dd3ea798217aae1','0','2','0'), ('50105','18','','10670','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface,including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and another times as indicated by the value of ifCounterDiscontinuityTime.','0','7d','0','','50049','','','','','200','1','0','','','0','0','0','0','0','0','0','8920149ac322418d9b57c70acec389bd','0','2','0'), ('50106','18','','10670','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','7d','0','','50049','','','','','200','1','0','','','0','0','0','0','0','0','0','e622c6c312a24ca9af2c8182287f44c5','0','2','0'), ('50107','18','','10670','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','7d','0','','50049','','','','','200','1','0','','','0','0','0','0','0','0','0','5f2bca97b53448ca8023c3879ceb8ee6','0','2','0'), ('50108','18','','10670','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','7d','0','','50049','','','','','200','1','0','','','0','0','0','0','0','0','0','5e887d867a83457089d5e35fa7569e04','0','2','0'), ('50109','18','','10670','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in bits per second. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. If the bandwidth of the interface is greater than the maximum value reportable by this object then this object should report its maximum value (4,294,967,295) and ifHighSpeed must be used to report the interface''s speed. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','7d','0','','50049','','','','','200','1','0','','','0','0','0','0','0','0','0','da03adb8168d477db8f0551c3f26c466','0','2','0'), ('50110','18','','10670','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1416','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','7d','0','','50049','','','','','200','1','0','','','0','0','0','0','0','0','0','e1b6b46280cc4b7f8432ff5c2ba2a65e','0','2','0'), ('50111','18','','10670','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1417','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','7d','0','','50049','','','','','200','1','0','','','0','0','0','0','0','0','0','186cc3fcf4c4466a8f63c0dd037a71c0','0','2','0'), ('50135','18','','10671','Fan discovery','ciena.fan.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for discovering fans from WWP-LEOS-CHASSIS-MIB.','0','7d','0','','50123','','','','','200','1','0','','','0','0','0','0','0','0','0','33cb92289fcf4e34ba1c5f4d21b9aee4','0','2','0'), ('50136','18','','10671','PSU discovery','ciena.psu.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for discovering PSU from WWP-LEOS-CHASSIS-MIB.','0','7d','0','','50132','','','','','200','1','0','','','0','0','0','0','0','0','0','b6301c49acbc4b8cb73737ddea2af97a','0','2','0'), ('50137','18','','10671','Temperature sensor discovery','ciena.temperature.sensor.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for discovering temperature sensors from WWP-LEOS-CHASSIS-MIB.','0','7d','0','','50133','','','','','200','1','0','','','0','0','0','0','0','0','0','bc76e20f951648a49459b4541f812183','0','2','0'), ('50138','18','','10671','Network interfaces discovery','net.if.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering interfaces from IF-MIB.','0','7d','1','','50119','','','','','200','1','0','','','0','0','0','0','0','0','0','f62c23005aa7433ea0af5ae1052253c6','0','2','0'), ('50139','18','','10671','Fan [{#SNMPVALUE}]: Speed','ciena.fan.speed[ChassisFanCurrentSpeed.{#SNMPINDEX}]','0','31d','365d','0','3','','!rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: WWP-LEOS-CHASSIS-MIB The current speed of the fan in RPM.','0','7d','0','','50123','','','','','200','1','0','','','0','0','0','0','0','0','0','fb43685bb86f4620bf1cd44f9e5c2bae','0','2','0'), ('50140','18','','10671','Fan [{#SNMPVALUE}]: Status','ciena.fan.status[ChassisFanModuleStatus.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1434','','','0','','','','','2',NULL,'MIB: WWP-LEOS-CHASSIS-MIB Denotes the fan module status. Possible values: 1 - "ok"; means fan is operational; 2 - "pending"; means fan is installed but statistics are not yet available; 3 - "failure"; means fan is not working.','0','7d','0','','50123','','','','','200','1','0','','','0','0','0','0','0','0','0','21af2e9f71f04832b9d7c898378d2b7a','0','2','0'), ('50141','18','','10671','PSU [{#SNMPVALUE}]: Status','ciena.psu.status[ChassisPowerSupplyState.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1435','','','0','','','','','2',NULL,'MIB: WWP-LEOS-CHASSIS-MIB Denotes the PSU module status. Possible values: 1 - online; 2 - offline; 3 - faulted.','0','7d','0','','50132','','','','','200','1','0','','','0','0','0','0','0','0','0','07fa3745241049f989cc8b08718d5294','0','2','0'), ('50142','18','','10671','Sensor [{#SNMPVALUE}]: Temperature','ciena.temperature.sensors.temp[ChassisTempSensorValue.{#SNMPINDEX}]','0','31d','365d','0','3','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: WWP-LEOS-CHASSIS-MIB The value of temperature measured by the sensor inside the device in degrees Celsius.','0','7d','0','','50133','','','','','200','1','0','','','0','0','0','0','0','0','0','83c809987bd84bc7bfd74ea25644706a','0','2','0'), ('50143','18','','10671','Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','7d','0','','50119','','','','','200','1','0','','','0','0','0','0','0','0','0','a86af1fb203c437ab9532549faf513af','0','2','0'), ('50144','18','','10671','Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','7d','0','','50119','','','','','200','1','0','','','0','0','0','0','0','0','0','9bfbcb75f0f647ed8b6119ebb51655d1','0','2','0'), ('50145','18','','10671','Interface {#IFNAME}({#IFALIAS}): Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','7d','0','','50119','','','','','200','1','0','','','0','0','0','0','0','0','0','9c9b04b35d3d473f9e72f94306323ebc','0','2','0'), ('50146','18','','10671','Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','7d','0','','50119','','','','','200','1','0','','','0','0','0','0','0','0','0','8e3439988f19469bbbf0e13bfc867271','0','2','0'), ('50147','18','','10671','Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','net.if.out.errors[ifOutErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','7d','0','','50119','','','','','200','1','0','','','0','0','0','0','0','0','0','50ef325793684f419620c521187fd8f3','0','2','0'), ('50148','18','','10671','Interface {#IFNAME}({#IFALIAS}): Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime.','0','7d','0','','50119','','','','','200','1','0','','','0','0','0','0','0','0','0','1223311e9fc04cb4b42e43e3c0800a66','0','2','0'), ('50149','18','','10671','Interface {#IFNAME}({#IFALIAS}): Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','7d','0','','50119','','','','','200','1','0','','','0','0','0','0','0','0','0','1ad0ee1ee6f74cad90307a7ff2879e00','0','2','0'), ('50150','18','','10671','Interface {#IFNAME}({#IFALIAS}): Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1431','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The testing(3) state indicates that no operational packet scan be passed - If ifAdminStatus is down(2) then ifOperStatus should be down(2) - If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic - It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state - It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components.','0','7d','0','','50119','','','','','200','1','0','','','0','0','0','0','0','0','0','b4835bb2c7204531b073e1cece6c211e','0','2','0'), ('50151','18','','10671','Interface {#IFNAME}({#IFALIAS}): Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1432','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for ifType are assigned by the Internet Assigned Numbers Authority (IANA), through updating the syntax of the IANAifType textual convention.','0','7d','0','','50119','','','','','200','1','0','','','0','0','0','0','0','0','0','1969604952c44b2ba87bea8193c39ba7','0','2','0'), ('50152','18','','10547','Device status item errors','meraki.device.get.status.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Item for gathering errors of the device status item.','0','7d','0','','46450','','','','','200','1','0','','','0','0','0','0','0','0','0','b1873bc0a185452dbede07373e0e4a93','0','2','0'), ('50153','18','','10548','Account lockout attempts','meraki.account.lockout.attempts','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of consecutive failed login attempts after which users'' accounts will be locked.','0','7d','0','','44298','','','','','200','1','0','','','0','0','0','0','0','0','0','495f3a6047644dadadbbc676ba6900f9','0','2','0'), ('50154','18','','10548','Adaptive policy item errors','meraki.get.adaptive.policy.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Item for gathering all the adaptive policy item errors.','0','7d','0','','44296','','','','','200','1','0','','','0','0','0','0','0','0','0','fb9d953ca0d7446d9a8056ce9e716d92','0','2','0'), ('50155','18','','10548','Configuration change log','meraki.get.configuration.changelog','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Item for viewing the change log for your organization.','0','7d','0','','44297','','','','','200','1','0','','','0','0','0','0','0','0','0','cf5733581c00445b9598ad23e48d34d8','0','2','0'), ('50156','18','','10548','Configuration changes item errors','meraki.get.configuration.changes.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Item for gathering all the configuration changes item errors.','0','7d','0','','44297','','','','','200','1','0','','','0','0','0','0','0','0','0','05038571b3c04743bb808da343f335b6','0','2','0'), ('50157','18','','10548','Get data item errors','meraki.get.data.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Item for gathering all the ''Get data'' item errors.','0','7d','0','','44298','','','','','200','1','0','','','0','0','0','0','0','0','0','8ce70f6703cd49e594a723040d17ee3b','0','2','0'), ('50158','18','','10548','Idle timeout minutes','meraki.idle.timeout.minutes','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of minutes users can remain idle before being logged out of their accounts.','0','7d','0','','44298','','','','','200','1','0','','','0','0','0','0','0','0','0','3e79a9319f0146c5b5aefeba13ec722c','0','2','0'), ('50159','18','','10548','Enforce account lockout','meraki.login.enforce.account.lockout','0','31d','365d','0','3','','','','',NULL,'1142','','','0','','','','','0',NULL,'Boolean indicating whether users'' dashboard accounts will be locked out after a specified number of consecutive failed login attempts.','0','7d','0','','44298','','','','','200','1','0','','','0','0','0','0','0','0','0','c313fa31777a42d29d874f46f00ac82f','0','2','0'), ('50160','18','','10548','Enforce different passwords','meraki.login.enforce.different.passwords','0','31d','365d','0','3','','','','',NULL,'1142','','','0','','','','','0',NULL,'Boolean indicating whether users, when setting a new password, are forced to choose a new password that is different from any past passwords.','0','7d','0','','44298','','','','','200','1','0','','','0','0','0','0','0','0','0','d71eb53c76e84ce1ad65959e381c358f','0','2','0'), ('50161','18','','10548','Enforce idle timeout','meraki.login.enforce.idle.timeout','0','31d','365d','0','3','','','','',NULL,'1142','','','0','','','','','0',NULL,'Boolean indicating whether users will be logged out after being idle for the specified number of minutes.','0','7d','0','','44298','','','','','200','1','0','','','0','0','0','0','0','0','0','bd9423ea744f4855926e0edf677ef2a6','0','2','0'), ('50162','18','','10548','Enforce login IP ranges','meraki.login.enforce.login.ip.ranges','0','31d','365d','0','3','','','','',NULL,'1142','','','0','','','','','0',NULL,'Boolean indicating whether organization will restrict access to the dashboard (including the API) from certain IP addresses.','0','7d','0','','44298','','','','','200','1','0','','','0','0','0','0','0','0','0','f7b88a64223c4b2992f15d0b6807f55f','0','2','0'), ('50163','18','','10548','Enforce password expiration','meraki.login.enforce.password.expiration','0','31d','365d','0','3','','','','',NULL,'1142','','','0','','','','','0',NULL,'Boolean indicating whether users are forced to change their password every X days.','0','7d','0','','44298','','','','','200','1','0','','','0','0','0','0','0','0','0','09dc6f6619ea4a1dba1b17d9803bbe7a','0','2','0'), ('50164','18','','10548','Enforce 2FA','meraki.login.enforce.two.factor.auth','0','31d','365d','0','3','','','','',NULL,'1142','','','0','','','','','0',NULL,'Boolean indicating whether users in this organization will be required to use an extra verification code when logging in to the dashboard. This code will be sent to their mobile phones via SMS or can be generated by the authenticator application.','0','7d','0','','44298','','','','','200','1','0','','','0','0','0','0','0','0','0','cae90669ec7b4b2d9743b2f60fe6f99e','0','2','0'), ('50165','18','','10548','Number of different passwords','meraki.login.num.different.passwords','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of recent passwords that new password must be distinct from.','0','7d','0','','44298','','','','','200','1','0','','','0','0','0','0','0','0','0','903cca42650f489f80ae5ace3adecb69','0','2','0'), ('50166','18','','10548','Password expiration days','meraki.login.password.expiration.days','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of days after which users will be forced to change their password.','0','7d','0','','44298','','','','','200','1','0','','','0','0','0','0','0','0','0','8e882c747c7047f99127346adc7e0a5a','0','2','0'), ('50167','18','','10548','Administrators discovery','meraki.admins.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','','44298','','','','','200','1','0','','','0','0','0','0','0','0','0','596c6122c6244dee83e3b55e30e4fda0','0','2','0'), ('50168','18','','10548','SAML roles discovery','meraki.saml.roles.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','','44298','','','','','200','1','0','','','0','0','0','0','0','0','0','fa4eb762c1064723b5f708aff74ed12c','0','2','0'), ('50169','18','','10548','Admin [{#ADMIN.NAME}]: get data','meraki.admin.get[{#ADMIN.ID}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Raw data for admin in this organization.','0','7d','0','','44298','','','','','200','1','0','','','0','0','0','0','0','0','0','6d075eb822f94d8285e358fa330b67fc','0','2','0'), ('50170','18','','10548','SAML role [{#SAML.ROLE}]: get data','meraki.saml.get[{#SAML.ID}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Raw data for SAML roles.','0','7d','0','','44298','','','','','200','1','0','','','0','0','0','0','0','0','0','d0f48c88f8c64f8ab1fd1d77aed7f08e','0','2','0'), ('50176','18','','10636','Node [{#NODE}]: Average latency','huawei.dorado.node.delay["{#NODE}"]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Average I/O latency of the node.','0','7d','0','','47577','','','','','200','1','0','','','0','0','0','0','0','0','0','d15b0dc04b75487285b131f7740063d7','0','2','0'), ('50177','18','','10636','Storage pool [{#NAME}]: Capacity used','huawei.dorado.pool.capacity.used["{#NAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Used capacity of a storage pool.','0','7d','0','','47578','','','','','200','1','0','','','0','0','0','0','0','0','0','50f34df052df497db7bdcfb489619b5f','0','2','0'), ('50179','18','','10262','Preprocessing direct throughput','preprocessing_throughput_direct','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Reflects the direct throughput of the preprocessing.','0','7d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','6732baab363145b4bf3211896ea70a6b','0','2','0'), ('50180','18','','10262','Preprocessing queued throughput','preprocessing_throughput_queued','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Reflects the queued throughput of the preprocessing.','0','7d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','58e6a944fdd549dabc5103d1f1f7b37e','0','2','0'), ('50181','18','','10262','Preprocessing direct VPS','preprocessing_vps_direct','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'Reflects the count of direct preprocessing values per second.','0','7d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','87cd65b2e4ec44669dbd9a404a1c0323','0','2','0'), ('50182','18','','10262','Preprocessing queued VPS','preprocessing_vps_queued','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'Reflects the count of queued preprocessing values per second.','0','7d','0','','28585','','','','','200','1','0','','','0','0','0','0','0','0','0','96be72679ce84c0888982c9c23337258','0','2','0'), ('50183','18','','10048','Preprocessing direct throughput','zabbix[preprocessing_throughput_direct]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Reflects the direct throughput of the preprocessing.','0','7d','0','','50178','','','','','200','1','0','','','0','0','0','0','0','0','0','2383d1301bda41fcaff369972b75f244','0','2','0'), ('50184','18','','10048','Preprocessing queued throughput','zabbix[preprocessing_throughput_queued]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Reflects the queued throughput of the preprocessing.','0','7d','0','','50178','','','','','200','1','0','','','0','0','0','0','0','0','0','c0a8e2338288411f88078afe0874a296','0','2','0'), ('50185','18','','10048','Preprocessing direct VPS','zabbix[preprocessing_vps_direct]','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'Reflects the count of direct preprocessing values per second.','0','7d','0','','50178','','','','','200','1','0','','','0','0','0','0','0','0','0','7f96b7f3a93b48f086568331860b7705','0','2','0'), ('50186','18','','10048','Preprocessing queued VPS','zabbix[preprocessing_vps_queued]','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'Reflects the count of queued preprocessing values per second.','0','7d','0','','50178','','','','','200','1','0','','','0','0','0','0','0','0','0','415eebc4407b4c83935b2ec6d0d9b4a3','0','2','0'), ('50187','18','','10658','Preprocessing direct throughput','preprocessing_throughput_direct','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Reflects the direct throughput of the preprocessing.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','d910dadfc937429a83dd4d83ea1e9596','0','2','0'), ('50188','18','','10658','Preprocessing queued throughput','preprocessing_throughput_queued','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Reflects the queued throughput of the preprocessing.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','da3bb292d0f645358a7e7629386e7029','0','2','0'), ('50189','18','','10658','Preprocessing direct VPS','preprocessing_vps_direct','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'Reflects the count of direct preprocessing values per second.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','bfd2eefae1ed42c598658376f0c00863','0','2','0'), ('50190','18','','10658','Preprocessing queued VPS','preprocessing_vps_queued','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'Reflects the count of queued preprocessing values per second.','0','7d','0','','49103','','','','','200','1','0','','','0','0','0','0','0','0','0','274bd50bfd174e1299c58b4787b80920','0','2','0'), ('50191','18','','10659','Preprocessing direct throughput','preprocessing_throughput_direct','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Reflects the direct throughput of the preprocessing.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','3e1694c299ac40e79729b490402b8cf6','0','2','0'), ('50192','18','','10659','Preprocessing queued throughput','preprocessing_throughput_queued','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Reflects the queued throughput of the preprocessing.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','35d405920f4e4c0cb5b731e3cbbef1ee','0','2','0'), ('50193','18','','10659','Preprocessing direct VPS','preprocessing_vps_direct','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'Reflects the count of direct preprocessing values per second.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','cdcfe3d536ea4648a8f39e15cc19e9bf','0','2','0'), ('50194','18','','10659','Preprocessing queued VPS','preprocessing_vps_queued','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'Reflects the count of queued preprocessing values per second.','0','7d','0','','49106','','','','','200','1','0','','','0','0','0','0','0','0','0','066b91a9049e4ce9b8680dc36ff8cf87','0','2','0'), ('50195','18','','10261','Preprocessing direct throughput','preprocessing_throughput_direct','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Reflects the direct throughput of the preprocessing.','0','7d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','68411db7353c44e2baed0b9def5f9ac5','0','2','0'), ('50196','18','','10261','Preprocessing direct VPS','preprocessing_vps_direct','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'Reflects the count of direct preprocessing values per second.','0','7d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','8bcb650b956542b698b5a6cc9bb18e14','0','2','0'), ('50197','18','','10261','Preprocessing queued VPS','preprocessing_vps_queued','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'Reflects the count of queued preprocessing values per second.','0','7d','0','','28539','','','','','200','1','0','','','0','0','0','0','0','0','0','394df7f1611949bba82b22416cf06f3e','0','2','0'), ('50198','18','','10047','Preprocessing direct throughput','zabbix[preprocessing_throughput_direct]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Reflects the direct throughput of the preprocessing.','0','7d','0','','49906','','','','','200','1','0','','','0','0','0','0','0','0','0','3f584bc48eac4e64ae605334230c1107','0','2','0'), ('50199','18','','10047','Preprocessing direct VPS','zabbix[preprocessing_vps_direct]','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'Reflects the count of direct preprocessing values per second.','0','7d','0','','49906','','','','','200','1','0','','','0','0','0','0','0','0','0','98117bb63066414b85281a39cd0482ac','0','2','0'), ('50200','18','','10047','Preprocessing queued VPS','zabbix[preprocessing_vps_queued]','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'Reflects the count of queued preprocessing values per second.','0','7d','0','','49906','','','','','200','1','0','','','0','0','0','0','0','0','0','7b0dce0a5b0e4271940945d4d65bfd9c','0','2','0'), ('50201','18','','10660','Preprocessing direct throughput','preprocessing_throughput_direct','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Reflects the direct throughput of the preprocessing.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','fa0ff0c1292d4aa8b555c8d4589f0cf0','0','2','0'), ('50202','18','','10660','Preprocessing direct VPS','preprocessing_vps_direct','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'Reflects the count of direct preprocessing values per second.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','77bbca63827143a3b50fb9b88e6aadca','0','2','0'), ('50203','18','','10660','Preprocessing queued VPS','preprocessing_vps_queued','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'Reflects the count of queued preprocessing values per second.','0','7d','0','','49205','','','','','200','1','0','','','0','0','0','0','0','0','0','bc0f044ffadc4cf2b0aa537ad202796f','0','2','0'), ('50204','18','','10661','Preprocessing direct throughput','preprocessing_throughput_direct','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Reflects the direct throughput of the preprocessing.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','ee855be0a5214ff288f1f4d053fb13d6','0','2','0'), ('50205','18','','10661','Preprocessing direct VPS','preprocessing_vps_direct','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'Reflects the count of direct preprocessing values per second.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','bdf65137d0ce48ba9aff14984c84a072','0','2','0'), ('50206','18','','10661','Preprocessing queued VPS','preprocessing_vps_queued','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','0',NULL,'Reflects the count of queued preprocessing values per second.','0','7d','0','','49208','','','','','200','1','0','','','0','0','0','0','0','0','0','cf136f14d2af413baf0c5f7cbe564b9e','0','2','0'), ('50230','18','','10672','CPU discovery','cpu.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','','50210','','','','','200','1','0','','','0','0','0','0','0','0','0','8a38fbfa070e46cfb7643b9bd91c4817','0','2','0'), ('50231','18','','10672','Network interface discovery','net.if.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'','0','7d','1','','50214','','','','','200','1','0','','','0','0','0','0','0','0','0','6134e0f1e63d48b399d1d99f2e200a4b','0','2','0'), ('50232','18','','10672','Storage discovery','storage.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'HOST-RESOURCES-MIB::hrStorage discovery with storage filter.','0','7d','1','','50216','','','','','200','1','0','','','0','0','0','0','0','0','0','4f07c208d82e479094662f1cffef4293','0','2','0'), ('50234','18','','10672','CPU [{#DESCRIPTION}][{#SNMPINDEX}]: Status','cpu.status[hrDeviceStatus.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1437','','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The current operational state of the device described by this row of the table. * `unknown(1)` indicates that the current state of the device is unknown. * `running(2)` indicates that the device is up and running and that no unusual error conditions are known. * `warning(3)` indicates that the agent has been informed of an unusual error condition by the operational software (e.g., a disk device driver) but that the device is still operational. * `testing(4)` indicates that the device is not available for use because it is in the testing state. * `down(5)` is used only when the agent has been informed that the device is not available for any use.','0','7d','0','','50210','','','','','200','1','0','','','0','0','0','0','0','0','0','a23544bf7c56405aaf4ba61ee6d6dc8f','0','2','0'), ('50235','18','','10672','CPU [{#DESCRIPTION}][{#SNMPINDEX}]: Utilization, %','cpu.utilization[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average, over the last minute, of the percentage of time that this processor was not idle.','0','7d','0','','50210','','','','','200','1','0','','','0','0','0','0','0','0','0','0cff8ea287f14b1084ac52008817d6bd','0','2','0'), ('50236','18','','10672','Interface [{#IFNAME}][{#IFALIAS}]: Inbound packets discarded','net.if.in.discards[ifInDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of `ifCounterDiscontinuityTime`.','0','7d','0','','50214','','','','','200','1','0','','','0','0','0','0','0','0','0','0fd1b14144c04ca88d2f22eae5fc8f17','0','2','0'), ('50237','18','','10672','Interface [{#IFNAME}][{#IFALIAS}]: Inbound packets with errors','net.if.in.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of `ifCounterDiscontinuityTime`.','0','7d','0','','50214','','','','','200','1','0','','','0','0','0','0','0','0','0','fa6827aae5ff47ad883def44815b0f5e','0','2','0'), ('50238','18','','10672','Interface [{#IFNAME}][{#IFALIAS}]: Bits received','net.if.in[ifHCInOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets received on the interface, including framing characters. This object is a 64-bit version of `ifInOctets`. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of `ifCounterDiscontinuityTime`.','0','7d','0','','50214','','','','','200','1','0','','','0','0','0','0','0','0','0','d2d777d1006e4af9b11f518dec439340','0','2','0'), ('50239','18','','10672','Interface [{#IFNAME}][{#IFALIAS}]: Outbound packets discarded','net.if.out.discards[ifOutDiscards.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of `ifCounterDiscontinuityTime`.','0','7d','0','','50214','','','','','200','1','0','','','0','0','0','0','0','0','0','a1a28b609d61401ebcfba4fce096792c','0','2','0'), ('50240','18','','10672','Interface [{#IFNAME}][{#IFALIAS}]: Outbound packets with errors','net.if.out.errors[ifInErrors.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of `ifCounterDiscontinuityTime`.','0','7d','0','','50214','','','','','200','1','0','','','0','0','0','0','0','0','0','ce289cb583e34cab9677e0e24eb1ffc3','0','2','0'), ('50241','18','','10672','Interface [{#IFNAME}][{#IFALIAS}]: Bits sent','net.if.out[ifHCOutOctets.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of `ifOutOctets`. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of `ifCounterDiscontinuityTime`.','0','7d','0','','50214','','','','','200','1','0','','','0','0','0','0','0','0','0','2c0336b89498463d92f1773097e09014','0','2','0'), ('50242','18','','10672','Interface [{#IFNAME}][{#IFALIAS}]: Speed','net.if.speed[ifHighSpeed.{#SNMPINDEX}]','0','31d','0','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: IF-MIB An estimate of the interface''s current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n`, then the speed of the interface is somewhere in the range of `n-500,000` to `n+499,999`. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero.','0','7d','0','','50214','','','','','200','1','0','','','0','0','0','0','0','0','0','ceeb5cdb54ee42a096c391f6438edb20','0','2','0'), ('50243','18','','10672','Interface [{#IFNAME}][{#IFALIAS}]: Operational status','net.if.status[ifOperStatus.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1439','','','0','','','','','2',NULL,'MIB: IF-MIB The current operational state of the interface. - The `testing(3)` state indicates that no operational packet scan be passed - If `ifAdminStatus` is `down(2)`, then `ifOperStatus` should be `down(2)` - If `ifAdminStatus` is changed to `up(1)`, then `ifOperStatus` should change to `up(1)` if the interface is ready to transmit and receive network traffic - It should change to `dormant(5)` if the interface is waiting for external actions (such as a serial line waiting for an incoming connection) - It should remain in the `down(2)` state if and only if there is a fault that prevents it from going to the `up(1)` state - It should remain in the `notPresent(6)` state if the interface has missing (typically, hardware) components','0','7d','0','','50214','','','','','200','1','0','','','0','0','0','0','0','0','0','362b9269e9294c9c953c31ab111fe2e5','0','2','0'), ('50244','18','','10672','Interface [{#IFNAME}][{#IFALIAS}]: Interface type','net.if.type[ifType.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1440','','','0','','','','','2',NULL,'MIB: IF-MIB The type of interface. Additional values for `ifType` are assigned by the Internet Assigned Numbers Authority (IANA) through updating the syntax of the `IANAifType` textual convention.','0','7d','0','','50214','','','','','200','1','0','','','0','0','0','0','0','0','0','7fe4aa478e774dc1a74356eab2df65d7','0','2','0'), ('50245','18','','10672','Storage [{#STORAGE_NAME}]: Total size','storage.size[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','7d','0','','50216','','','','','200','1','0','','','0','0','0','0','0','0','0','21e238374ab14a579745bc303f109e77','0','2','0'), ('50246','18','','10672','Storage [{#STORAGE_NAME}]: Used size','storage.used[hrStorageUsed.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','7d','0','','50216','','','','','200','1','0','','','0','0','0','0','0','0','0','64d1791c1ad545f6aa56314b37a27072','0','2','0'), ('50293','18','','10673','ASQ connection memory utilization','system.memory.conn[snsMemConn.0]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: STORMSHIELD-SYSTEM-MONITOR-MIB Utilization percentage of ASQ connection memory. Warning: This OID might not be functional for SNS versions lower than 5.0.','0','7d','0','','50282','','','','','200','1','0','','','0','0','0','0','0','0','0','97be1dab5f934083bcc112c7ca5ab440','0','2','0'), ('50294','18','','10673','Data tracking memory utilization','system.memory.data_track[snsMemDataTrack.0]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: STORMSHIELD-SYSTEM-MONITOR-MIB Utilization percentage of data tracking memory. Warning: This OID might not be functional for SNS versions lower than 5.0.','0','7d','0','','50282','','','','','200','1','0','','','0','0','0','0','0','0','0','cd8b2605feb8410ab871a393128c89bb','0','2','0'), ('50295','18','','10673','Etherstate connection memory utilization','system.memory.ether[snsMemEther.0]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: STORMSHIELD-SYSTEM-MONITOR-MIB Utilization percentage of etherstate connection memory. Warning: This OID might not be functional for SNS versions lower than 5.0.','0','7d','0','','50282','','','','','200','1','0','','','0','0','0','0','0','0','0','442f3113a21d4041964eeb3a37c9db94','0','2','0'), ('50296','18','','10673','Fragment memory utilization','system.memory.frag[snsMemFrag.0]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: STORMSHIELD-SYSTEM-MONITOR-MIB Fragment memory utilization percentage. Warning: This OID might not be functional for SNS versions lower than 5.0.','0','7d','0','','50282','','','','','200','1','0','','','0','0','0','0','0','0','0','99aafd4514434990ae54bbfabb28057e','0','2','0'), ('50297','18','','10673','Protected host memory utilization','system.memory.host[snsMemHost.0]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: STORMSHIELD-SYSTEM-MONITOR-MIB Protected host memory utilization percentage. Warning: This OID might not be functional for SNS versions lower than 5.0.','0','7d','0','','50282','','','','','200','1','0','','','0','0','0','0','0','0','0','686ed185b40e433892951539d3305a4d','0','2','0'), ('50298','18','','10673','ICMP memory utilization','system.memory.icmp[snsMemIcmp.0]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: STORMSHIELD-SYSTEM-MONITOR-MIB ICMP memory utilization percentage. Warning: This OID might not be functional for SNS versions lower than 5.0.','0','7d','0','','50282','','','','','200','1','0','','','0','0','0','0','0','0','0','80a0a595776d461384e12834b7f43098','0','2','0'), ('50299','18','','10673','Socket memory utilization','system.memory.mbuf[snsMemMbuf.0]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: STORMSHIELD-SYSTEM-MONITOR-MIB Socket memory utilization percentage. Warning: This OID might not be functional for SNS versions lower than 5.0.','0','7d','0','','50282','','','','','200','1','0','','','0','0','0','0','0','0','0','86300acc41ba4a84b947ff9e24360083','0','2','0'), ('50300','18','','10673','System memory utilization','system.memory.system[snsMemSystem.0]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: STORMSHIELD-SYSTEM-MONITOR-MIB Current memory utilization percentage. Warning: This OID might not be functional for SNS versions lower than 5.0.','0','7d','0','','50282','','','','','200','1','0','','','0','0','0','0','0','0','0','f3cab29a36104841bb8215d65eabe8bb','0','2','0'), ('50301','18','','10673','User memory utilization','system.memory.user[snsMemUser.0]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'MIB: STORMSHIELD-SYSTEM-MONITOR-MIB User-space memory utilization percentage. Warning: This OID might not be functional for SNS versions lower than 5.0.','0','7d','0','','50282','','','','','200','1','0','','','0','0','0','0','0','0','0','56a9edbf6b0a4f0b95d3a5388cce4aad','0','2','0'), ('50302','18','','10673','CPU temperature discovery','cpu.temperature.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for discovering the CPU temperature from the Stormshield MIB.','0','7d','0','','50276','','','','','200','1','0','','','0','0','0','0','0','0','0','2fc5de70139442aebc59a445a4abee21','0','2','0'), ('50303','18','','10673','CPU usage discovery','cpu.usage.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for discovering the CPU usage from the Stormshield MIB.','0','7d','0','','50277','','','','','200','1','0','','','0','0','0','0','0','0','0','94e616ac778d476897743bc0cd065572','0','2','0'), ('50304','18','','10673','Disk discovery','disk.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for discovering disks from the Stormshield MIB.','0','7d','0','','50278','','','','','200','1','0','','','0','0','0','0','0','0','0','205bfdee322c49bfb35bd718620425e1','0','2','0'), ('50305','18','','10673','Fan discovery','fan.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for discovering the fan from the Stormshield MIB.','0','7d','0','','50279','','','','','200','1','0','','','0','0','0','0','0','0','0','98ffa94f4d634dd9a43711c7c2aecd88','0','2','0'), ('50306','18','','10673','HA members discovery','ha.members.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for discovering HA members from the Stormshield MIB.','0','7d','0','','50280','','','','','200','1','0','','','0','0','0','0','0','0','0','f467d602ecf6428b8e270d2847d029ae','0','2','0'), ('50307','18','','10673','Health status discovery','health.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for discovering the health status from the Stormshield MIB.','0','7d','0','','50281','','','','','200','1','0','','','0','0','0','0','0','0','0','eb1bbc3d5f2545b29a20ec6fe7d04265','0','2','0'), ('50308','18','','10673','Network interface discovery','network.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for discovering network interfaces from the Stormshield MIB.','0','7d','1','','50283','','','','','200','1','0','','','0','0','0','0','0','0','0','3d44b2c118aa49cf84db72090d56386d','0','2','0'), ('50309','18','','10673','Power supply discovery','psu.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for discovering power supplies from the Stormshield MIB.','0','7d','0','','50284','','','','','200','1','0','','','0','0','0','0','0','0','0','bcc8c701b453409b8d00006fcc7515bb','0','2','0'), ('50310','18','','10673','Storage discovery','storage.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for discovering storage from the Stormshield MIB.','0','7d','1','','50285','','','','','200','1','0','','','0','0','0','0','0','0','0','4e129e7982214b58855c3cdb42a9f91e','0','2','0'), ('50311','18','','10673','Autoupdate discovery','update.auto.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Used for discovering updates from the Stormshield MIB.','0','7d','0','','50286','','','','','200','1','0','','','0','0','0','0','0','0','0','53f93c7ce4d940609334343031dc7705','0','2','0'), ('50313','18','','10673','CPU [{#CPU_ID}]: Temperature','system.cpu.temperature[snsCpuTemp.{#SNMPINDEX}]','0','31d','365d','0','3','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: STORMSHIELD-SYSTEM-MONITOR-MIB Temperature in degrees Celsius.','0','7d','0','','50276','','','','','200','1','0','','','0','0','0','0','0','0','0','ff474617c5024f369d6612278215632b','0','2','0'), ('50314','18','','10673','CPU [{#SNMPINDEX}]: Usage','system.cpu.usage[hrProcessorLoad.{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The average percentage of time that this processor was not idle over the last minute. Implementations may approximate this one minute smoothing period if necessary. Note that cpu 196608 = cpu 0, 196609 = 1, ...','0','7d','0','','50277','','','','','200','1','0','','','0','0','0','0','0','0','0','e9ea57097a134d7f8541200e533d4039','0','2','0'), ('50315','18','','10673','Disk [{#DISK_ID}]: Disk name','system.disk.name[snsDiskEntryDiskName.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: STORMSHIELD-SYSTEM-MONITOR-MIB Name of the disk.','0','7d','0','','50278','','','','','200','1','0','','','0','0','0','0','0','0','0','d0c7739d80ca41d793827d2e1bc726c0','0','2','0'), ('50316','18','','10673','Disk [{#DISK_ID}]: Member of a RAID array','system.disk.RAID[snsDiskEntryIsRaid.{#SNMPINDEX}]','0','31d','0','0','3','','','','',NULL,'1450','','','0','','','','','2',NULL,'MIB: STORMSHIELD-SYSTEM-MONITOR-MIB Indicates whether the disk is part of a RAID array.','0','7d','0','','50278','','','','','200','1','0','','','0','0','0','0','0','0','0','91a7e52635df431b9ef03323c86cf342','0','2','0'), ('50317','18','','10673','Disk [{#DISK_ID}]: SMART info test result','system.disk.result[snsDiskEntrySmartResult.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1452','','','0','','','','','2',NULL,'MIB: STORMSHIELD-SYSTEM-MONITOR-MIB Result of the SMART diagnostic tests.','0','7d','0','','50278','','','','','200','1','0','','','0','0','0','0','0','0','0','18bd74399fd54991ad7de633f33bc5a6','0','2','0'), ('50318','18','','10673','Disk [{#DISK_ID}]: RAID status','system.disk.status[snsDiskEntryRaidStatus.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1451','','','0','','','','','2',NULL,'MIB: STORMSHIELD-SYSTEM-MONITOR-MIB RAID status.','0','7d','0','','50278','','','','','200','1','0','','','0','0','0','0','0','0','0','3ed28b431dd24952b07378a51e3adb69','0','2','0'), ('50319','18','','10673','Fan [{#FAN_ID}]: Fan name','system.fan.name[snsFanName.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: STORMSHIELD-SYSTEM-MONITOR-MIB Name of the fan.','0','7d','0','','50279','','','','','200','1','0','','','0','0','0','0','0','0','0','6773438fe2934437be8444414b2dd725','0','2','0'), ('50320','18','','10673','Fan [{#FAN_ID}]: Fan speed','system.fan.speed[snsFanRpm.{#SNMPINDEX}]','0','31d','365d','0','3','','!rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: STORMSHIELD-SYSTEM-MONITOR-MIB Speed of the fan.','0','7d','0','','50279','','','','','200','1','0','','','0','0','0','0','0','0','0','333faca808f948fc99bc2f54f58c7658','0','2','0'), ('50321','18','','10673','Fan [{#FAN_ID}]: Fan status','system.fan.status[snsFanStatus.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1453','','','0','','','','','2',NULL,'MIB: STORMSHIELD-SYSTEM-MONITOR-MIB Status of the fan.','0','7d','0','','50279','','','','','200','1','0','','','0','0','0','0','0','0','0','f6d54e9b53b14c179208e25f11d91c17','0','2','0'), ('50322','18','','10673','HA members [{#HA_ID}]: Firewall active/passive','ha.active[snsHAActive.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: STORMSHIELD-HA-MIB Indicates whether the firewall is active.','0','7d','0','','50280','','','','','200','1','0','','','0','0','0','0','0','0','0','b8cd8cf98e31467d8f9f76255b99b67b','0','2','0'), ('50323','18','','10673','HA members [{#HA_ID}]: HA licence','ha.license[snsHALicence.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1445','','','0','','','','','2',NULL,'MIB: STORMSHIELD-HA-MIB HA licence.','0','7d','0','','50280','','','','','200','1','0','','','0','0','0','0','0','0','0','0f1f82c877a545749006e96e41e3eec5','0','2','0'), ('50324','18','','10673','HA members [{#HA_ID}]: Firewall model','ha.model[snsModel.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: STORMSHIELD-HA-MIB Firewall model.','0','7d','0','','50280','','','','','200','1','0','','','0','0','0','0','0','0','0','49c2856094884edfaf1a8aabe9f5695d','0','2','0'), ('50325','18','','10673','HA members [{#HA_ID}]: Is online','ha.online[snsOnline.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1448','','','0','','','','','2',NULL,'MIB: STORMSHIELD-HA-MIB Firewall is online.','0','7d','0','','50280','','','','','200','1','0','','','0','0','0','0','0','0','0','6acd9f4e764046558918dea106f15cc2','0','2','0'), ('50326','18','','10673','HA members [{#HA_ID}]: HA priority','ha.priority[snsHAPriority.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: STORMSHIELD-HA-MIB HA priority.','0','7d','0','','50280','','','','','200','1','0','','','0','0','0','0','0','0','0','025487d110d945b79e1fb7450b7a2de2','0','2','0'), ('50327','18','','10673','HA members [{#HA_ID}]: HA quality','ha.quality[snsHAQuality.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: STORMSHIELD-HA-MIB HA quality.','0','7d','0','','50280','','','','','200','1','0','','','0','0','0','0','0','0','0','f1799047cb354bf38b9ff737206f60db','0','2','0'), ('50328','18','','10673','HA members [{#HA_ID}]: Firewall serial','ha.serial[snsFwSerial.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: STORMSHIELD-HA-MIB Firewall serial number.','0','7d','0','','50280','','','','','200','1','0','','','0','0','0','0','0','0','0','d2c5605f753646779e010830401c74e4','0','2','0'), ('50329','18','','10673','HA members [{#HA_ID}]: Firewall status','ha.status[snsHAStatusForced.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1446','','','0','','','','','2',NULL,'MIB: STORMSHIELD-HA-MIB HA status forced: -2: Unknown forced status -1: No peer found 0: No forced status 1: Forced active 2: Forced passive','0','7d','0','','50280','','','','','200','1','0','','','0','0','0','0','0','0','0','364ebaf569d14b0ab26998fab81ae368','0','2','0'), ('50330','18','','10673','HA members [{#HA_ID}]: Firewall uptime','ha.uptime[snsHAUptime.{#SNMPINDEX}]','0','31d','365d','0','0','','uptime','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: STORMSHIELD-HA-MIB Firewall uptime.','0','7d','0','','50280','','','','','200','1','0','','','0','0','0','0','0','0','0','333309281fa74231a2276b6b2af0edf5','0','2','0'), ('50331','18','','10673','Health status firewall [{#HEALTH_ID}]: Certificates','health.certificates.status[snsCertHealth.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1449','','','0','','','','','2',NULL,'MIB: STORMSHIELD-HEALTH-MONITOR-MIB Current health status of Stormshield Firewall.','0','7d','0','','50281','','','','','200','1','0','','','0','0','0','0','0','0','0','b595804c6b4c420f9520aed3a0cd034b','0','2','0'), ('50332','18','','10673','Health status firewall [{#HEALTH_ID}]: CPU','health.cpu.status[snsCpuHealth.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1449','','','0','','','','','2',NULL,'MIB: STORMSHIELD-HEALTH-MONITOR-MIB Current health status of Stormshield Firewall CPU: - `Good` if CPU load is 90% or lower - `Minor` if CPU load is above 90% for less than 5 minutes - `Major` if CPU load is above 90% for more than 5 minutes','0','7d','0','','50281','','','','','200','1','0','','','0','0','0','0','0','0','0','1642f7cde504440eb8a90506074010eb','0','2','0'), ('50333','18','','10673','Health status firewall [{#HEALTH_ID}]: CPU temperature','health.cpu.temperature[snsCpuTempHealth.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1449','','','0','','','','','2',NULL,'MIB: STORMSHIELD-HEALTH-MONITOR-MIB Current health status of Stormshield Firewall CPU temperature: - `Good`; at least 20°C below max temperature - `Minor`; less than 20°C below max temperature - `Major`; 5°C below max temperature','0','7d','0','','50281','','','','','200','1','0','','','0','0','0','0','0','0','0','a726528c1db14fefb41eb9ec3b76f2e1','0','2','0'), ('50334','18','','10673','Health status firewall [{#HEALTH_ID}]: CRLs','health.crl.status[snsCRLHealth.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1449','','','0','','','','','2',NULL,'MIB: STORMSHIELD-HEALTH-MONITOR-MIB Current health status of Stormshield firewall CRLs.','0','7d','0','','50281','','','','','200','1','0','','','0','0','0','0','0','0','0','9ace914f22e64f27b974bcfb6076a78c','0','2','0'), ('50335','18','','10673','Health status firewall [{#HEALTH_ID}]: Disk','health.disk.status[snsDiskHealth.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1449','','','0','','','','','2',NULL,'MIB: STORMSHIELD-HEALTH-MONITOR-MIB Current health status of Stormshield Firewall disk: - `Good` if the disks are working correctly - `Minor` if the disks are not working correctly - `Major` if the disks are not working correctly and have raised an alarm','0','7d','0','','50281','','','','','200','1','0','','','0','0','0','0','0','0','0','34219ae916b849f0b1c7dec26f153694','0','2','0'), ('50336','18','','10673','Health status firewall [{#HEALTH_ID}]: Fans','health.fan.status[snsFanHealth.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1449','','','0','','','','','2',NULL,'MIB: STORMSHIELD-HEALTH-MONITOR-MIB Current health status of Stormshield Firewall fans: - `Good` if the fans are working correctly - `Minor` if the fans are not working correctly - `Major` if the fans are not working correctly and have raised an alarm','0','7d','0','','50281','','','','','200','1','0','','','0','0','0','0','0','0','0','6b1b1a042fb040b6a7aaaa29b7666b9d','0','2','0'), ('50337','18','','10673','Health status firewall [{#HEALTH_ID}]: HA link','health.ha.link.status[snsHaLinkHealth.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1449','','','0','','','','','2',NULL,'MIB: STORMSHIELD-HEALTH-MONITOR-MIB Current health status of Stormshield Firewall HA link: - `Good` if the HA link is working correctly - `Minor` if the HA link is not working correctly (may be down) - `Major` if the HA link is not working (is down)','0','7d','0','','50281','','','','','200','1','0','','','0','0','0','0','0','0','0','26ed671f5dc641e8abee510e05f4f351','0','2','0'), ('50338','18','','10673','Health status firewall [{#HEALTH_ID}]: HA mode','health.ha.mode.status[snsHaModeHealth.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1449','','','0','','','','','2',NULL,'MIB: STORMSHIELD-HEALTH-MONITOR-MIB Current status of Stormshield Firewall HA mode: - `None` if HA is not active - `Active` if the firewall is the active status - `Passive` if the firewall is the passive status','0','7d','0','','50281','','','','','200','1','0','','','0','0','0','0','0','0','0','219821bed46641cbbdf3270e3529e3fd','0','2','0'), ('50339','18','','10673','Health status firewall [{#HEALTH_ID}]: Memory','health.memory.status[snsMemHealth.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1449','','','0','','','','','2',NULL,'MIB: STORMSHIELD-HEALTH-MONITOR-MIB Current health status of Stormshield Firewall memory: - `Good` if memory load is 80% or lower - `Minor` if memory load is above 80% for less than 15 minutes - `Major` if memory load is above 80% for more than 15 minutes','0','7d','0','','50281','','','','','200','1','0','','','0','0','0','0','0','0','0','149b3ce5f5f649789395b08ff794a66e','0','2','0'), ('50340','18','','10673','Health status firewall [{#HEALTH_ID}]: Admin password','health.password.status[snsPasswdHealth.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1449','','','0','','','','','2',NULL,'MIB: STORMSHIELD-HEALTH-MONITOR-MIB Current health status of Stormshield Firewall Admin Password: - `Good` if the date when the admin password was last changed is less than a year ago - `Minor` if the date when the admin password was last changed is more than a year ago - `Major` if the admin password is the default password','0','7d','0','','50281','','','','','200','1','0','','','0','0','0','0','0','0','0','3c96db8dddb148478a58c6261a06a2d8','0','2','0'), ('50341','18','','10673','Health status firewall [{#HEALTH_ID}]: Power supply','health.power.status[snsPowerSupplyHealth.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1449','','','0','','','','','2',NULL,'MIB: STORMSHIELD-HEALTH-MONITOR-MIB Current health status of Stormshield Firewall power supply: - `Good` if the power supply is working correctly - `Minor` if the power supply is not working correctly - `Major` if the power supply is not working correctly and has raised an alarm.','0','7d','0','','50281','','','','','200','1','0','','','0','0','0','0','0','0','0','db9d21f5b3fb42abbe8a6c776fd1a269','0','2','0'), ('50342','18','','10673','Health status firewall [{#HEALTH_ID}]: RAID','health.raid.status[snsRaidHealth.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1449','','','0','','','','','2',NULL,'MIB: STORMSHIELD-HEALTH-MONITOR-MIB Current health status of Stormshield Firewall RAID: - `Good` if the RAID is working in optimal mode - `Minor` if the RAID is not working in optimal mode - `Major` if the RAID is not working in optimal mode and has raised an alarm','0','7d','0','','50281','','','','','200','1','0','','','0','0','0','0','0','0','0','5e6662ef9c5940cb972547886413a5e2','0','2','0'), ('50343','18','','10673','Interface [{#IF_NAME}]: Accepted packets','net.if.accepted[snsifPktAccepted.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: STORMSHIELD-IF-MIB Number of accepted packets.','0','7d','0','','50283','','','','','200','1','0','','','0','0','0','0','0','0','0','2856ed811ce94fcdb7e1f0a53ee137dd','0','2','0'), ('50344','18','','10673','Interface [{#IF_NAME}]: Blocked packets','net.if.blocked[snsifPktBlocked.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: STORMSHIELD-IF-MIB Number of packets that have been blocked.','0','7d','0','','50283','','','','','200','1','0','','','0','0','0','0','0','0','0','6c8fa9e6b6c844c1a0e6cc459e113a2d','0','2','0'), ('50345','18','','10673','Interface [{#IF_NAME}]: TCP connection established','net.if.established[snsifTcpConn.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: STORMSHIELD-IF-MIB TCP connection established.','0','7d','0','','50283','','','','','200','1','0','','','0','0','0','0','0','0','0','0f09154ae902486480f851250c97eef6','0','2','0'), ('50346','18','','10673','Interface [{#IF_NAME}]: UDP connection established','net.if.established[snsifUdpConn.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: STORMSHIELD-IF-MIB UDP connection established.','0','7d','0','','50283','','','','','200','1','0','','','0','0','0','0','0','0','0','f5c0c2563007456b8499e54ccfb40f5c','0','2','0'), ('50347','18','','10673','Interface [{#IF_NAME}]: Max input flow rate','net.if.in.max[snsifInMaxThroughput.{#SNMPINDEX}]','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: STORMSHIELD-IF-MIB Maximum incoming throughput in B/s.','0','7d','0','','50283','','','','','200','1','0','','','0','0','0','0','0','0','0','22e48329645347aab3ea9d4e59020522','0','2','0'), ('50348','18','','10673','Interface [{#IF_NAME}]: Incoming current throughput','net.if.in[snsifInCurThroughput.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: STORMSHIELD-IF-MIB Current incoming throughput in B/s.','0','7d','0','','50283','','','','','200','1','0','','','0','0','0','0','0','0','0','9ff9c28639d64ab8bbb3fdf923af6674','0','2','0'), ('50349','18','','10673','Interface [{#IF_NAME}]: Incoming TCP data bytes','net.if.in[snsifInTcpBytes.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: STORMSHIELD-IF-MIB Incoming TCP data bytes.','0','7d','0','','50283','','','','','200','1','0','','','0','0','0','0','0','0','0','d8a307f9d7de43a69715603bc3d5234f','0','2','0'), ('50350','18','','10673','Interface [{#IF_NAME}]: Incoming data bytes','net.if.in[snsifInTotalBytes.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: STORMSHIELD-IF-MIB Incoming data bytes.','0','7d','0','','50283','','','','','200','1','0','','','0','0','0','0','0','0','0','9217cb7c112d4fc3bfdccacb665f17a0','0','2','0'), ('50351','18','','10673','Interface [{#IF_NAME}]: Incoming UDP data bytes','net.if.in[snsifInUdpBytes.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: STORMSHIELD-IF-MIB Incoming UDP data bytes.','0','7d','0','','50283','','','','','200','1','0','','','0','0','0','0','0','0','0','f7d9c2ee246d4e228572bbb26f9fc6a9','0','2','0'), ('50352','18','','10673','Interface [{#IF_NAME}]: Max output flow rate','net.if.max_out[snsifOutMaxThroughput.{#SNMPINDEX}]','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: STORMSHIELD-IF-MIB Maximum outgoing throughput in B/s.','0','7d','0','','50283','','','','','200','1','0','','','0','0','0','0','0','0','0','3658031cb71f49db9d8165a2ccc362e5','0','2','0'), ('50353','18','','10673','Interface [{#IF_NAME}]: System interface name','net.if.name[snsifName.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: STORMSHIELD-IF-MIB System interface name.','0','7d','0','','50283','','','','','200','1','0','','','0','0','0','0','0','0','0','e18aa78ed6cc4445a80aa663d302efda','0','2','0'), ('50354','18','','10673','Interface [{#IF_NAME}]: Outgoing current throughput','net.if.out[snsifOutCurThroughput.{#SNMPINDEX}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: STORMSHIELD-IF-MIB Current outgoing throughput in B/s.','0','7d','0','','50283','','','','','200','1','0','','','0','0','0','0','0','0','0','b08262d794224dd596f475f839309369','0','2','0'), ('50355','18','','10673','Interface [{#IF_NAME}]: Outgoing TCP data bytes','net.if.out[snsifOutTcpBytes.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: STORMSHIELD-IF-MIB Outgoing TCP data bytes.','0','7d','0','','50283','','','','','200','1','0','','','0','0','0','0','0','0','0','8c79eda2435c4333b18150006825e32d','0','2','0'), ('50356','18','','10673','Interface [{#IF_NAME}]: Outgoing data bytes','net.if.out[snsifOutTotalBytes.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: STORMSHIELD-IF-MIB Outgoing data bytes.','0','7d','0','','50283','','','','','200','1','0','','','0','0','0','0','0','0','0','e2017818401f4cb6badd3d1ef1027f87','0','2','0'), ('50357','18','','10673','Interface [{#IF_NAME}]: Outgoing UDP data bytes','net.if.out[snsifOutUdpBytes.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: STORMSHIELD-IF-MIB Outgoing UDP data bytes.','0','7d','0','','50283','','','','','200','1','0','','','0','0','0','0','0','0','0','0edacb02864046b799966b8f0eb3222f','0','2','0'), ('50358','18','','10673','Interface [{#IF_NAME}]: Interface protected','net.if.protected[snsifProtected.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: STORMSHIELD-IF-MIB Indicates whether the interface is protected.','0','7d','0','','50283','','','','','200','1','0','','','0','0','0','0','0','0','0','2d6d2437279c4373b3c400f47b225be5','0','2','0'), ('50359','18','','10673','Interface [{#IF_NAME}]: Current TCP connection count','net.if.TCP_count[snsifTcpConnCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: STORMSHIELD-IF-MIB Current TCP connection count.','0','7d','0','','50283','','','','','200','1','0','','','0','0','0','0','0','0','0','24d06317e62d443aab02954cc1ef13f8','0','2','0'), ('50360','18','','10673','Interface [{#IF_NAME}]: Current UDP connection count','net.if.UDP_count[snsifUdpConnCount.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: STORMSHIELD-IF-MIB Current UDP connection count.','0','7d','0','','50283','','','','','200','1','0','','','0','0','0','0','0','0','0','cd41efc0083b4b1da6771ee8489c6631','0','2','0'), ('50361','18','','10673','PSU [{#POWER_ID}]: Power status','system.psu.power[snsPowerSupplyPowered.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1454','','','0','','','','','2',NULL,'MIB: STORMSHIELD-SYSTEM-MONITOR-MIB Indicates whether the power supply is powered by electricity.','0','7d','0','','50284','','','','','200','1','0','','','0','0','0','0','0','0','0','df7dd3abb56542dcb9e94bf05ab49bea','0','2','0'), ('50362','18','','10673','PSU [{#POWER_ID}]: Status','system.psu.status[snsPowerSupplyStatus.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1455','','','0','','','','','2',NULL,'MIB: STORMSHIELD-SYSTEM-MONITOR-MIB Indicates the status of the power supply.','0','7d','0','','50284','','','','','200','1','0','','','0','0','0','0','0','0','0','bd32f31d949f4f7cb36a181942ac69bb','0','2','0'), ('50363','18','','10673','Storage [{#STORAGE_DESCR}]: Storage size','host.storage.size[hrStorageSizedata.{#SNMPINDEX}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB Total memory in the data file in bytes.','0','7d','0','','50285','','','','','200','1','0','','','0','0','0','0','0','0','0','78657f8ffd554090bb46d55cdf06c730','0','2','0'), ('50364','18','','10673','Storage [{#STORAGE_DESCR}]: Used storage','host.storage.used[hrStorageUseddata.{#SNMPINDEX}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB Used memory in the data file in bytes.','0','7d','0','','50285','','','','','200','1','0','','','0','0','0','0','0','0','0','90825a58e4a7428e955638492cb654b6','0','2','0'), ('50365','18','','10673','Autoupdate [{#UPDATE_NAME}]: Last update date','system.update.last[snsAutoupdateLast.{#SNMPINDEX}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: STORMSHIELD-AUTOUPDATE-MIB Date of the last update of a subsystem.','0','7d','0','','50286','','','','','200','1','0','','','0','0','0','0','0','0','0','1ca1980a3dc7400b98235b18ecb4fc9c','0','2','0'), ('50366','18','','10673','Autoupdate [{#UPDATE_NAME}]: Update state','system.update.state[snsAutoupdateState.{#SNMPINDEX}]','0','31d','365d','0','3','','','','',NULL,'1444','','','0','','','','','2',NULL,'MIB: STORMSHIELD-AUTOUPDATE-MIB State of the update of a subsystem.','0','7d','0','','50286','','','','','200','1','0','','','0','0','0','0','0','0','0','144fdb66d21647b99ca67908c5b240cd','0','2','0'); INSERT INTO items (itemid,type,snmp_oid,hostid,name,key_,delay,history,trends,status,value_type,trapper_hosts,units,formula,logtimefmt,templateid,valuemapid,params,ipmi_sensor,authtype,username,password,publickey,privatekey,flags,interfaceid,description,inventory_link,lifetime,evaltype,jmx_endpoint,master_itemid,timeout,url,query_fields,posts,status_codes,follow_redirects,post_type,http_proxy,headers,retrieve_mode,request_method,output_format,verify_peer,verify_host,allow_traps,discover,uuid,lifetime_type,enabled_lifetime_type,enabled_lifetime) VALUES ('22868','18','','10074','FS [{#FSNAME}]: Space: Available','vfs.fs.dependent.size[{#FSNAME},free]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Available storage space expressed in bytes.','0','0','0','','44448','','','','','200','1','0','','','0','0','0','0','0','0','0','d53bf828e684464a88157fd3dfd1b8d4','0','2','0'), ('22869','18','','10074','FS [{#FSNAME}]: Inodes: Free, in %','vfs.fs.dependent.inode[{#FSNAME},pfree]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Free metadata space expressed in %.','0','0','0','','44448','','','','','200','1','0','','','0','0','0','0','0','0','0','c29bc3c6bd844242b9165251dd3266bb','0','2','0'), ('22870','18','','10074','FS [{#FSNAME}]: Space: Total','vfs.fs.dependent.size[{#FSNAME},total]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total space expressed in bytes.','0','0','0','','44448','','','','','200','1','0','','','0','0','0','0','0','0','0','5c27bfca98fc4e709b5fe66e8c181fbd','0','2','0'), ('22871','18','','10074','FS [{#FSNAME}]: Space: Used','vfs.fs.dependent.size[{#FSNAME},used]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Used storage expressed in bytes.','0','0','0','','44448','','','','','200','1','0','','','0','0','0','0','0','0','0','840eed51cf264b5698fe4f38fd03ea16','0','2','0'), ('22872','18','','10074','FS [{#FSNAME}]: Space: Available, in %','vfs.fs.dependent.size[{#FSNAME},pfree]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Deprecated metric. Space availability expressed as a percentage, calculated using the current and maximum available spaces.','0','0','0','','44448','','','','','200','1','0','','','0','0','0','0','0','0','0','bcae23e8404349af87c570c353bfe0fe','0','2','0'), ('22908','18','','10075','FS [{#FSNAME}]: Space: Available','vfs.fs.dependent.size[{#FSNAME},free]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Available storage space expressed in bytes.','0','0','0','','44431','','','','','200','1','0','','','0','0','0','0','0','0','0','2ed6230d292a4037b67fe549c719e7ee','0','2','0'), ('22909','18','','10075','FS [{#FSNAME}]: Inodes: Free, in %','vfs.fs.dependent.inode[{#FSNAME},pfree]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Free metadata space expressed in %.','0','0','0','','44431','','','','','200','1','0','','','0','0','0','0','0','0','0','a5cdfe771122483fa1a88b2ea5c26b36','0','2','0'), ('22910','18','','10075','FS [{#FSNAME}]: Space: Total','vfs.fs.dependent.size[{#FSNAME},total]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total space expressed in bytes.','0','0','0','','44431','','','','','200','1','0','','','0','0','0','0','0','0','0','6daede58ae8f4e42a4aa2539a552ab08','0','2','0'), ('22911','18','','10075','FS [{#FSNAME}]: Space: Used','vfs.fs.dependent.size[{#FSNAME},used]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Used storage expressed in bytes.','0','0','0','','44431','','','','','200','1','0','','','0','0','0','0','0','0','0','6efb08c26e1b439181a17d462ec1dab8','0','2','0'), ('22912','18','','10075','FS [{#FSNAME}]: Space: Available, in %','vfs.fs.dependent.size[{#FSNAME},pfree]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Deprecated metric. Space availability expressed as a percentage, calculated using the current and maximum available spaces.','0','0','0','','44431','','','','','200','1','0','','','0','0','0','0','0','0','0','aa0dd0eb957a4485b1a62f715381019a','0','2','0'), ('22948','18','','10076','FS [{#FSNAME}]: Space: Available','vfs.fs.dependent.size[{#FSNAME},free]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Available storage space expressed in bytes.','0','0','0','','44428','','','','','200','1','0','','','0','0','0','0','0','0','0','13e212598f744a7fa535c23731190c61','0','2','0'), ('22949','18','','10076','FS [{#FSNAME}]: Inodes: Free, in %','vfs.fs.dependent.inode[{#FSNAME},pfree]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Free metadata space expressed in %.','0','0','0','','44428','','','','','200','1','0','','','0','0','0','0','0','0','0','ee5ae5de6f7b40b4a9b064bdc733de91','0','2','0'), ('22950','18','','10076','FS [{#FSNAME}]: Space: Total','vfs.fs.dependent.size[{#FSNAME},total]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total space expressed in bytes.','0','0','0','','44428','','','','','200','1','0','','','0','0','0','0','0','0','0','6f6c92bc72014612b2efb92d12d8c425','0','2','0'), ('22951','18','','10076','FS [{#FSNAME}]: Space: Used','vfs.fs.dependent.size[{#FSNAME},used]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Used storage expressed in bytes.','0','0','0','','44428','','','','','200','1','0','','','0','0','0','0','0','0','0','915e72271f134684b2d10d05d4035962','0','2','0'), ('22952','18','','10076','FS [{#FSNAME}]: Space: Available, in %','vfs.fs.dependent.size[{#FSNAME},pfree]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Deprecated metric. Space availability expressed as a percentage, calculated using the current and maximum available spaces.','0','0','0','','44428','','','','','200','1','0','','','0','0','0','0','0','0','0','428b0314dd574df1970dd2cae7e8889b','0','2','0'), ('22988','18','','10077','FS [{#FSNAME}]: Space: Available','vfs.fs.dependent.size[{#FSNAME},free]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Available storage space expressed in bytes.','0','0','0','','44434','','','','','200','1','0','','','0','0','0','0','0','0','0','75efb4ab311848ec9bbb03cf05efef8b','0','2','0'), ('22989','18','','10077','FS [{#FSNAME}]: Inodes: Free, in %','vfs.fs.dependent.inode[{#FSNAME},pfree]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Free metadata space expressed in %.','0','0','0','','44434','','','','','200','1','0','','','0','0','0','0','0','0','0','dbf8305aadb049a58b19a50d4e36fde9','0','2','0'), ('22990','18','','10077','FS [{#FSNAME}]: Space: Total','vfs.fs.dependent.size[{#FSNAME},total]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total space expressed in bytes.','0','0','0','','44434','','','','','200','1','0','','','0','0','0','0','0','0','0','3d75a99c05bf41a2b63ce2b0caf4a6cc','0','2','0'), ('22991','18','','10077','FS [{#FSNAME}]: Space: Used','vfs.fs.dependent.size[{#FSNAME},used]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Used storage expressed in bytes.','0','0','0','','44434','','','','','200','1','0','','','0','0','0','0','0','0','0','0aa8dd5bbaea4f35808ef735f0cec18d','0','2','0'), ('22992','18','','10077','FS [{#FSNAME}]: Space: Available, in %','vfs.fs.dependent.size[{#FSNAME},pfree]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Deprecated metric. Space availability expressed as a percentage, calculated using the current and maximum available spaces.','0','0','0','','44434','','','','','200','1','0','','','0','0','0','0','0','0','0','707d7dfb2dc243d49e4623f1d043a5b7','0','2','0'), ('23028','18','','10078','FS [{#FSNAME}]: Space: Available','vfs.fs.dependent.size[{#FSNAME},free]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Available storage space expressed in bytes.','0','0','0','','44451','','','','','200','1','0','','','0','0','0','0','0','0','0','e4c935091c6c49f185ef0e93963388ff','0','2','0'), ('23029','18','','10078','FS [{#FSNAME}]: Inodes: Free, in %','vfs.fs.dependent.inode[{#FSNAME},pfree]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Free metadata space expressed in %.','0','0','0','','44451','','','','','200','1','0','','','0','0','0','0','0','0','0','aa40b3df2229405193c373b00064e420','0','2','0'), ('23030','18','','10078','FS [{#FSNAME}]: Space: Total','vfs.fs.dependent.size[{#FSNAME},total]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total space expressed in bytes.','0','0','0','','44451','','','','','200','1','0','','','0','0','0','0','0','0','0','e15cfb60494944db8e9b2fe929d91fef','0','2','0'), ('23031','18','','10078','FS [{#FSNAME}]: Space: Used','vfs.fs.dependent.size[{#FSNAME},used]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Used storage expressed in bytes.','0','0','0','','44451','','','','','200','1','0','','','0','0','0','0','0','0','0','0da8a65250ec4027b3093772f5c26532','0','2','0'), ('23032','18','','10078','FS [{#FSNAME}]: Space: Available, in %','vfs.fs.dependent.size[{#FSNAME},pfree]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Deprecated metric. Space availability expressed as a percentage, calculated using the current and maximum available spaces.','0','0','0','','44451','','','','','200','1','0','','','0','0','0','0','0','0','0','e2805fb218d64ddd8ea58beae73e1343','0','2','0'), ('23068','18','','10079','FS [{#FSNAME}]: Space: Available','vfs.fs.dependent.size[{#FSNAME},free]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Available storage space expressed in bytes.','0','0','0','','44446','','','','','200','1','0','','','0','0','0','0','0','0','0','29340ac4c5d3419cb4508641e85d787d','0','2','0'), ('23069','18','','10079','FS [{#FSNAME}]: Inodes: Free, in %','vfs.fs.dependent.inode[{#FSNAME},pfree]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Free metadata space expressed in %.','0','0','0','','44446','','','','','200','1','0','','','0','0','0','0','0','0','0','b7560dc2b6f743458128961cc962bcd3','0','2','0'), ('23070','18','','10079','FS [{#FSNAME}]: Space: Total','vfs.fs.dependent.size[{#FSNAME},total]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total space expressed in bytes.','0','0','0','','44446','','','','','200','1','0','','','0','0','0','0','0','0','0','c311ced2b4204b368af1c8a8c27f9c99','0','2','0'), ('23071','18','','10079','FS [{#FSNAME}]: Space: Used','vfs.fs.dependent.size[{#FSNAME},used]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Used storage expressed in bytes.','0','0','0','','44446','','','','','200','1','0','','','0','0','0','0','0','0','0','748612098b4e4befa0f39f11b99eced4','0','2','0'), ('23072','18','','10079','FS [{#FSNAME}]: Space: Available, in %','vfs.fs.dependent.size[{#FSNAME},pfree]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Deprecated metric. Space availability expressed as a percentage, calculated using the current and maximum available spaces.','0','0','0','','44446','','','','','200','1','0','','','0','0','0','0','0','0','0','6d9aa50bddb642499ad575a0cc71146b','0','2','0'), ('29427','18','','10285','CPU utilization','system.cpu.util[node_exporter]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'CPU utilization expressed in %.','0','30d','0','','29416','','','','','200','1','0','','','0','0','0','0','0','0','0','76f60c7e4f1a482198ff4f101020bbcc','0','2','0'), ('29428','18','','10285','Operating system','system.sw.os[node_exporter]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','5','30d','0','','29425','','','','','200','1','0','','','0','0','0','0','0','0','0','11ff4e02245f4c2e9ce00e55c1a77b39','0','2','0'), ('29720','18','','10301','Queue [{#VHOST}][{#QUEUE}]: Messages total','rabbitmq.queue.messages["{#VHOST}/{#QUEUE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of total messages in the queue.','0','30d','0','','44364','','','','','200','1','0','','','0','0','0','0','0','0','0','aabd7d6fe6a047d186504386d3a48ae1','0','2','0'), ('29721','18','','10301','Queue [{#VHOST}][{#QUEUE}]: Messages delivered','rabbitmq.queue.messages.deliver["{#VHOST}/{#QUEUE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of messages delivered to consumers in acknowledgement mode.','0','30d','0','','44364','','','','','200','1','0','','','0','0','0','0','0','0','0','2a87988327e1483c84d3f1867bab367f','0','2','0'), ('29722','18','','10301','Queue [{#VHOST}][{#QUEUE}]: Messages redelivered','rabbitmq.queue.messages.redeliver["{#VHOST}/{#QUEUE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of subset of messages in the `deliver_get` queue with the `redelivered` flag set.','0','30d','0','','44364','','','','','200','1','0','','','0','0','0','0','0','0','0','3ac1a4b83c9f4d4c8a438d39aca8e82a','0','2','0'), ('29723','18','','10301','Queue [{#VHOST}][{#QUEUE}]: Messages published per second','rabbitmq.queue.messages.publish.rate["{#VHOST}/{#QUEUE}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The rate of published messages per second.','0','30d','0','','44364','','','','','200','1','0','','','0','0','0','0','0','0','0','393306b9cb0148038d02ad9c48cf1fbb','0','2','0'), ('29724','18','','10301','Queue [{#VHOST}][{#QUEUE}]: Messages published','rabbitmq.queue.messages.publish["{#VHOST}/{#QUEUE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of published messages.','0','30d','0','','44364','','','','','200','1','0','','','0','0','0','0','0','0','0','44814c9f6f154fdcbab66249d0777eae','0','2','0'), ('29725','18','','10301','Queue [{#VHOST}][{#QUEUE}]: Sum of messages delivered per second','rabbitmq.queue.messages.deliver_get.rate["{#VHOST}/{#QUEUE}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The rate of delivery per second. The sum of messages delivered (per second) to consumers: in acknowledgement mode and in no-acknowledgement mode; delivered to consumers in response to `basic.get`: in acknowledgement mode and in no-acknowledgement mode.','0','30d','0','','44364','','','','','200','1','0','','','0','0','0','0','0','0','0','3f3024da744349b59c7810dfd10d11a3','0','2','0'), ('29726','18','','10301','Queue [{#VHOST}][{#QUEUE}]: Sum of messages delivered','rabbitmq.queue.messages.deliver_get["{#VHOST}/{#QUEUE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The sum of messages delivered to consumers: in acknowledgement mode and in no-acknowledgement mode; delivered to consumers in response to the `basic.get`: in acknowledgement mode and in no-acknowledgement mode.','0','30d','0','','44364','','','','','200','1','0','','','0','0','0','0','0','0','0','ad5e9fa0260e4170887fb2dfdc508959','0','2','0'), ('29727','18','','10301','Queue [{#VHOST}][{#QUEUE}]: Messages delivered per second','rabbitmq.queue.messages.deliver.rate["{#VHOST}/{#QUEUE}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of messages (per second) delivered to consumers in acknowledgement mode.','0','30d','0','','44364','','','','','200','1','0','','','0','0','0','0','0','0','0','55b774e5aac249edbb8881373060b15b','0','2','0'), ('29728','18','','10301','Queue [{#VHOST}][{#QUEUE}]: Messages acknowledged per second','rabbitmq.queue.messages.ack.rate["{#VHOST}/{#QUEUE}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of messages (per second) delivered to clients and acknowledged.','0','30d','0','','44364','','','','','200','1','0','','','0','0','0','0','0','0','0','223fa7a8372f4e9883d376c9f3e1af2e','0','2','0'), ('29729','18','','10301','Queue [{#VHOST}][{#QUEUE}]: Messages per second','rabbitmq.queue.messages.rate["{#VHOST}/{#QUEUE}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of total messages per second in the queue.','0','30d','0','','44364','','','','','200','1','0','','','0','0','0','0','0','0','0','9096e81341374d2fb7dd58e932783afc','0','2','0'), ('29730','18','','10301','Queue [{#VHOST}][{#QUEUE}]: Messages acknowledged','rabbitmq.queue.messages.ack["{#VHOST}/{#QUEUE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of messages delivered to clients and acknowledged.','0','30d','0','','44364','','','','','200','1','0','','','0','0','0','0','0','0','0','335513a34e6a4909acfa1be278dd31b3','0','2','0'), ('29731','18','','10301','Queue [{#VHOST}][{#QUEUE}]: Messages unacknowledged per second','rabbitmq.queue.messages_unacknowledged.rate["{#VHOST}/{#QUEUE}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of messages per second delivered to clients but not yet acknowledged.','0','30d','0','','44364','','','','','200','1','0','','','0','0','0','0','0','0','0','d5d88879e3b844d7b03ab956a673daff','0','2','0'), ('29732','18','','10301','Queue [{#VHOST}][{#QUEUE}]: Messages unacknowledged','rabbitmq.queue.messages_unacknowledged["{#VHOST}/{#QUEUE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of messages delivered to clients but not yet acknowledged.','0','30d','0','','44364','','','','','200','1','0','','','0','0','0','0','0','0','0','252dcf1262014ce599a2eec81f7223eb','0','2','0'), ('29733','18','','10301','Queue [{#VHOST}][{#QUEUE}]: Messages ready per second','rabbitmq.queue.messages_ready.rate["{#VHOST}/{#QUEUE}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of messages per second ready to be delivered to clients.','0','30d','0','','44364','','','','','200','1','0','','','0','0','0','0','0','0','0','d2e1a2857b314ed3818f92312f5d0043','0','2','0'), ('29734','18','','10301','Queue [{#VHOST}][{#QUEUE}]: Messages ready','rabbitmq.queue.messages_ready["{#VHOST}/{#QUEUE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of messages ready to be delivered to clients.','0','30d','0','','44364','','','','','200','1','0','','','0','0','0','0','0','0','0','4a75c2d9e0354f47b1c8243bad17bd58','0','2','0'), ('29735','18','','10301','Queue [{#VHOST}][{#QUEUE}]: Memory','rabbitmq.queue.memory["{#VHOST}/{#QUEUE}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The bytes of memory consumed by the Erlang process associated with the queue, including stack, heap and internal structures.','0','30d','0','','44364','','','','','200','1','0','','','0','0','0','0','0','0','0','4b4491d5fb2b41eeae044c3d28de1b18','0','2','0'), ('29736','18','','10301','Queue [{#VHOST}][{#QUEUE}]: Consumers','rabbitmq.queue.consumers["{#VHOST}/{#QUEUE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of consumers.','0','30d','0','','44364','','','','','200','1','0','','','0','0','0','0','0','0','0','fcbee789f2864010b26ac69894659e77','0','2','0'), ('29737','18','','10301','Queue [{#VHOST}][{#QUEUE}]: Messages redelivered per second','rabbitmq.queue.messages.redeliver.rate["{#VHOST}/{#QUEUE}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The rate of messages redelivered per second.','0','30d','0','','44364','','','','','200','1','0','','','0','0','0','0','0','0','0','8902103fd86746d0851b75a1262e36a9','0','2','0'), ('29787','18','','10302','Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages acknowledged','rabbitmq.exchange.messages.ack["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of messages delivered to clients and acknowledged.','0','30d','0','','44369','','','','','200','1','0','','','0','0','0','0','0','0','0','fd3d7de712d84721a09248670a7504f1','0','2','0'), ('29788','18','','10302','Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages acknowledged per second','rabbitmq.exchange.messages.ack.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The rate of messages (per second) delivered to clients and acknowledged.','0','30d','0','','44369','','','','','200','1','0','','','0','0','0','0','0','0','0','d8cdcef7ad324aebb597e9d2cd32bdf2','0','2','0'), ('29789','18','','10302','Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages confirmed','rabbitmq.exchange.messages.confirm["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of confirmed messages.','0','30d','0','','44369','','','','','200','1','0','','','0','0','0','0','0','0','0','8fac23c225d449b3a01d495b52131f5c','0','2','0'), ('29790','18','','10302','Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages confirmed per second','rabbitmq.exchange.messages.confirm.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The rate of messages confirmed per second.','0','30d','0','','44369','','','','','200','1','0','','','0','0','0','0','0','0','0','bc57ae1a1c1d4e9c96a268906d88dbf8','0','2','0'), ('29791','18','','10302','Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages delivered','rabbitmq.exchange.messages.deliver_get["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The sum of messages delivered to consumers: in acknowledgement mode and in no-acknowledgement mode; delivered to consumers in response to the `basic.get`: in acknowledgement mode and in no-acknowledgement mode.','0','30d','0','','44369','','','','','200','1','0','','','0','0','0','0','0','0','0','b86cc017bbb247b79e5b0522cf895d33','0','2','0'), ('29792','18','','10302','Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages delivered per second','rabbitmq.exchange.messages.deliver_get.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The rate of the sum of messages (per second) delivered to consumers: in acknowledgement mode and in no-acknowledgement mode; delivered to consumers in response to the `basic.get`: in acknowledgement mode and in no-acknowledgement mode.','0','30d','0','','44369','','','','','200','1','0','','','0','0','0','0','0','0','0','18916e7d0fce41d698f57f0f1be5dab1','0','2','0'), ('29793','18','','10302','Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages published','rabbitmq.exchange.messages.publish["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of published messages.','0','30d','0','','44369','','','','','200','1','0','','','0','0','0','0','0','0','0','24515b4712014fbeb857592664624be3','0','2','0'), ('29794','18','','10302','Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages published per second','rabbitmq.exchange.messages.publish.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The rate of messages published per second.','0','30d','0','','44369','','','','','200','1','0','','','0','0','0','0','0','0','0','a4a890d6cbdc40528dee488d8649343d','0','2','0'), ('29795','18','','10302','Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages publish_in','rabbitmq.exchange.messages.publish_in["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of messages published from the channels into this overview.','0','30d','0','','44369','','','','','200','1','0','','','0','0','0','0','0','0','0','02ebc8dacc0b44cd81bd9a83394359ff','0','2','0'), ('29796','18','','10302','Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages publish_in per second','rabbitmq.exchange.messages.publish_in.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The rate of messages (per second) published from the channels into this overview.','0','30d','0','','44369','','','','','200','1','0','','','0','0','0','0','0','0','0','d7ecda9c49ee479481b0b96d92113064','0','2','0'), ('29797','18','','10302','Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages publish_out','rabbitmq.exchange.messages.publish_out["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of messages published from this overview into queues.','0','30d','0','','44369','','','','','200','1','0','','','0','0','0','0','0','0','0','c83921ac67074e169e247dc3392213cf','0','2','0'), ('29798','18','','10302','Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages publish_out per second','rabbitmq.exchange.messages.publish_out.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The rate of messages (per second) published from this overview into queues.','0','30d','0','','44369','','','','','200','1','0','','','0','0','0','0','0','0','0','46a5efc69f2e4928b5744b5ea0cd6ae3','0','2','0'), ('29799','18','','10302','Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages returned unroutable','rabbitmq.exchange.messages.return_unroutable["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of messages returned to a publisher as unroutable.','0','30d','0','','44369','','','','','200','1','0','','','0','0','0','0','0','0','0','caaaf925f72e42d2b3112098bd05b3d1','0','2','0'), ('29800','18','','10302','Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages returned unroutable per second','rabbitmq.exchange.messages.return_unroutable.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The rate of messages (per second) returned to a publisher as unroutable.','0','30d','0','','44369','','','','','200','1','0','','','0','0','0','0','0','0','0','1aad46c39cc347f59ed953aa6bc23fbe','0','2','0'), ('29801','18','','10302','Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages redelivered','rabbitmq.exchange.messages.redeliver["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of subset of messages in the `deliver_get`, which had the `redelivered` flag set.','0','30d','0','','44369','','','','','200','1','0','','','0','0','0','0','0','0','0','3203320d008d484d917827f93b213725','0','2','0'), ('29802','18','','10302','Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages redelivered per second','rabbitmq.exchange.messages.redeliver.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The rate of subset of messages (per second) in the `deliver_get`, which had the `redelivered` flag set.','0','30d','0','','44369','','','','','200','1','0','','','0','0','0','0','0','0','0','64bc6c65cc2f46b1841bd9852020bf44','0','2','0'), ('29803','18','','10303','Queue [{#VHOST}][{#QUEUE}]: Messages total','rabbitmq.queue.messages["{#VHOST}/{#QUEUE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of total messages in the queue.','0','30d','0','','44370','','','','','200','1','0','','','0','0','0','0','0','0','0','171e5dbff18f47c98da2c1a3b7120622','0','2','0'), ('29804','18','','10303','Queue [{#VHOST}][{#QUEUE}]: Messages delivered','rabbitmq.queue.messages.deliver["{#VHOST}/{#QUEUE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of messages delivered to consumers in acknowledgement mode.','0','30d','0','','44370','','','','','200','1','0','','','0','0','0','0','0','0','0','e150c5d35ed144ca87945ef4f7a0998a','0','2','0'), ('29805','18','','10303','Queue [{#VHOST}][{#QUEUE}]: Messages redelivered','rabbitmq.queue.messages.redeliver["{#VHOST}/{#QUEUE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of subset of messages in the `deliver_get` queue with the `redelivered` flag set.','0','30d','0','','44370','','','','','200','1','0','','','0','0','0','0','0','0','0','75501a52ffab4972a5988ac4ae0c82d8','0','2','0'), ('29806','18','','10303','Queue [{#VHOST}][{#QUEUE}]: Messages published per second','rabbitmq.queue.messages.publish.rate["{#VHOST}/{#QUEUE}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The rate of published messages per second.','0','30d','0','','44370','','','','','200','1','0','','','0','0','0','0','0','0','0','232ee8103a5d4fb6b2b41ca641f19088','0','2','0'), ('29807','18','','10303','Queue [{#VHOST}][{#QUEUE}]: Messages published','rabbitmq.queue.messages.publish["{#VHOST}/{#QUEUE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of published messages.','0','30d','0','','44370','','','','','200','1','0','','','0','0','0','0','0','0','0','dfafc461ad8a45ba8f08a12ec9f4e2d3','0','2','0'), ('29808','18','','10303','Queue [{#VHOST}][{#QUEUE}]: Sum of messages delivered per second','rabbitmq.queue.messages.deliver_get.rate["{#VHOST}/{#QUEUE}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The rate of delivery per second. The sum of messages delivered (per second) to consumers: in acknowledgement mode and in no-acknowledgement mode; delivered to consumers in response to `basic.get`: in acknowledgement mode and in no-acknowledgement mode.','0','30d','0','','44370','','','','','200','1','0','','','0','0','0','0','0','0','0','9b74bc2a830e43e28ad6c44037dbd1d7','0','2','0'), ('29809','18','','10303','Queue [{#VHOST}][{#QUEUE}]: Sum of messages delivered','rabbitmq.queue.messages.deliver_get["{#VHOST}/{#QUEUE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The sum of messages delivered to consumers: in acknowledgement mode and in no-acknowledgement mode; delivered to consumers in response to the `basic.get`: in acknowledgement mode and in no-acknowledgement mode.','0','30d','0','','44370','','','','','200','1','0','','','0','0','0','0','0','0','0','837c46d0fd7d4ad18669dcbf62ae7025','0','2','0'), ('29810','18','','10303','Queue [{#VHOST}][{#QUEUE}]: Messages delivered per second','rabbitmq.queue.messages.deliver.rate["{#VHOST}/{#QUEUE}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of messages (per second) delivered to consumers in acknowledgement mode.','0','30d','0','','44370','','','','','200','1','0','','','0','0','0','0','0','0','0','b8a9c0ca7fda4756a8b79ac83c4bcd07','0','2','0'), ('29811','18','','10303','Queue [{#VHOST}][{#QUEUE}]: Messages acknowledged per second','rabbitmq.queue.messages.ack.rate["{#VHOST}/{#QUEUE}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of messages (per second) delivered to clients and acknowledged.','0','30d','0','','44370','','','','','200','1','0','','','0','0','0','0','0','0','0','3902227627d84cad8794604bd4f091fd','0','2','0'), ('29812','18','','10303','Queue [{#VHOST}][{#QUEUE}]: Messages per second','rabbitmq.queue.messages.rate["{#VHOST}/{#QUEUE}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of total messages per second in the queue.','0','30d','0','','44370','','','','','200','1','0','','','0','0','0','0','0','0','0','888dbb2c1b13429b9d20034fcc783f14','0','2','0'), ('29813','18','','10303','Queue [{#VHOST}][{#QUEUE}]: Messages acknowledged','rabbitmq.queue.messages.ack["{#VHOST}/{#QUEUE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of messages delivered to clients and acknowledged.','0','30d','0','','44370','','','','','200','1','0','','','0','0','0','0','0','0','0','2f2ca541c80b47cba2b5147a1c77aac5','0','2','0'), ('29814','18','','10303','Queue [{#VHOST}][{#QUEUE}]: Messages unacknowledged per second','rabbitmq.queue.messages_unacknowledged.rate["{#VHOST}/{#QUEUE}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of messages per second delivered to clients but not yet acknowledged.','0','30d','0','','44370','','','','','200','1','0','','','0','0','0','0','0','0','0','a8cc3296990640a6bf5d7319ba2e8650','0','2','0'), ('29815','18','','10303','Queue [{#VHOST}][{#QUEUE}]: Messages unacknowledged','rabbitmq.queue.messages_unacknowledged["{#VHOST}/{#QUEUE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of messages delivered to clients but not yet acknowledged.','0','30d','0','','44370','','','','','200','1','0','','','0','0','0','0','0','0','0','bb6a84983caa486482e241c6bf7e9534','0','2','0'), ('29816','18','','10303','Queue [{#VHOST}][{#QUEUE}]: Messages ready per second','rabbitmq.queue.messages_ready.rate["{#VHOST}/{#QUEUE}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of messages per second ready to be delivered to clients.','0','30d','0','','44370','','','','','200','1','0','','','0','0','0','0','0','0','0','f55c5f66ddac46fd95c5379875342284','0','2','0'), ('29817','18','','10303','Queue [{#VHOST}][{#QUEUE}]: Messages ready','rabbitmq.queue.messages_ready["{#VHOST}/{#QUEUE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of messages ready to be delivered to clients.','0','30d','0','','44370','','','','','200','1','0','','','0','0','0','0','0','0','0','67c9a8eee9a54eed946ab141927494c4','0','2','0'), ('29818','18','','10303','Queue [{#VHOST}][{#QUEUE}]: Memory','rabbitmq.queue.memory["{#VHOST}/{#QUEUE}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The bytes of memory consumed by the Erlang process associated with the queue, including stack, heap and internal structures.','0','30d','0','','44370','','','','','200','1','0','','','0','0','0','0','0','0','0','5d420017c0f14f37aa7c7ef986b54a77','0','2','0'), ('29819','18','','10303','Queue [{#VHOST}][{#QUEUE}]: Consumers','rabbitmq.queue.consumers["{#VHOST}/{#QUEUE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of consumers.','0','30d','0','','44370','','','','','200','1','0','','','0','0','0','0','0','0','0','be1c1c6b727a45cca039f0f00f184943','0','2','0'), ('29820','18','','10303','Queue [{#VHOST}][{#QUEUE}]: Messages redelivered per second','rabbitmq.queue.messages.redeliver.rate["{#VHOST}/{#QUEUE}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The rate of messages redelivered per second.','0','30d','0','','44370','','','','','200','1','0','','','0','0','0','0','0','0','0','a34e852ddce64d80a88129eef9ba1ab2','0','2','0'), ('30027','18','','10300','Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages acknowledged','rabbitmq.exchange.messages.ack["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of messages delivered to clients and acknowledged.','0','30d','0','','44362','','','','','200','1','0','','','0','0','0','0','0','0','0','fcf7807f096d4cddb8fa2b3671814dfa','0','2','0'), ('30028','18','','10300','Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages acknowledged per second','rabbitmq.exchange.messages.ack.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The rate of messages (per second) delivered to clients and acknowledged.','0','30d','0','','44362','','','','','200','1','0','','','0','0','0','0','0','0','0','68892e56e0074516b5d052dd7178955f','0','2','0'), ('30029','18','','10300','Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages confirmed','rabbitmq.exchange.messages.confirm["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of confirmed messages.','0','30d','0','','44362','','','','','200','1','0','','','0','0','0','0','0','0','0','38d41b5d815a40ff816f6fad2395b61a','0','2','0'), ('30030','18','','10300','Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages confirmed per second','rabbitmq.exchange.messages.confirm.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The rate of messages confirmed per second.','0','30d','0','','44362','','','','','200','1','0','','','0','0','0','0','0','0','0','858f8ce62fa04a31902569a712e58234','0','2','0'), ('30031','18','','10300','Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages delivered','rabbitmq.exchange.messages.deliver_get["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The sum of messages delivered to consumers: in acknowledgement mode and in no-acknowledgement mode; delivered to consumers in response to the `basic.get`: in acknowledgement mode and in no-acknowledgement mode.','0','30d','0','','44362','','','','','200','1','0','','','0','0','0','0','0','0','0','412e5003ad2d4e80832ee0551a596791','0','2','0'), ('30032','18','','10300','Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages delivered per second','rabbitmq.exchange.messages.deliver_get.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The rate of the sum of messages (per second) delivered to consumers: in acknowledgement mode and in no-acknowledgement mode; delivered to consumers in response to the `basic.get`: in acknowledgement mode and in no-acknowledgement mode.','0','30d','0','','44362','','','','','200','1','0','','','0','0','0','0','0','0','0','ab53a6957ea641fe8b2a7f26c4bcc743','0','2','0'), ('30033','18','','10300','Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages published','rabbitmq.exchange.messages.publish["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of published messages.','0','30d','0','','44362','','','','','200','1','0','','','0','0','0','0','0','0','0','1eccbe4450d74d5f9c5b8f7e6279b214','0','2','0'), ('30034','18','','10300','Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages published per second','rabbitmq.exchange.messages.publish.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The rate of messages published per second.','0','30d','0','','44362','','','','','200','1','0','','','0','0','0','0','0','0','0','32a0c7af8b9940a482a3a1d63ee90940','0','2','0'), ('30035','18','','10300','Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages publish_in','rabbitmq.exchange.messages.publish_in["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of messages published from the channels into this overview.','0','30d','0','','44362','','','','','200','1','0','','','0','0','0','0','0','0','0','520d8301e48540679472bf508a6e293b','0','2','0'), ('30036','18','','10300','Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages publish_in per second','rabbitmq.exchange.messages.publish_in.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The rate of messages (per second) published from the channels into this overview.','0','30d','0','','44362','','','','','200','1','0','','','0','0','0','0','0','0','0','3520a523abd1413f88c1c19978e6d562','0','2','0'), ('30037','18','','10300','Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages publish_out','rabbitmq.exchange.messages.publish_out["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of messages published from this overview into queues.','0','30d','0','','44362','','','','','200','1','0','','','0','0','0','0','0','0','0','beb929ee395e4caba73f3063c24a1d60','0','2','0'), ('30038','18','','10300','Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages publish_out per second','rabbitmq.exchange.messages.publish_out.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The rate of messages (per second) published from this overview into queues.','0','30d','0','','44362','','','','','200','1','0','','','0','0','0','0','0','0','0','6beb5e40cb8b416a8722ea77abb7355d','0','2','0'), ('30039','18','','10300','Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages returned unroutable','rabbitmq.exchange.messages.return_unroutable["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of messages returned to a publisher as unroutable.','0','30d','0','','44362','','','','','200','1','0','','','0','0','0','0','0','0','0','2901eccbd8ef483ba63c5522755155e7','0','2','0'), ('30040','18','','10300','Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages returned unroutable per second','rabbitmq.exchange.messages.return_unroutable.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The rate of messages (per second) returned to a publisher as unroutable.','0','30d','0','','44362','','','','','200','1','0','','','0','0','0','0','0','0','0','295eeb3bd071400d921efe1f5a924a3e','0','2','0'), ('30041','18','','10300','Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages redelivered','rabbitmq.exchange.messages.redeliver["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of subset of messages in the `deliver_get`, which had the `redelivered` flag set.','0','30d','0','','44362','','','','','200','1','0','','','0','0','0','0','0','0','0','58a06005659943429122d451acb521e0','0','2','0'), ('30042','18','','10300','Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages redelivered per second','rabbitmq.exchange.messages.redeliver.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The rate of subset of messages (per second) in the `deliver_get`, which had the `redelivered` flag set.','0','30d','0','','44362','','','','','200','1','0','','','0','0','0','0','0','0','0','7485d5a12fb04a13810ea54b9cc598e1','0','2','0'), ('30193','18','','10308','Backend discovery','haproxy.backend.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery backends','0','7d','1','','35103','','','','','200','1','0','','','0','0','0','0','0','0','0','9899f0a11ece4b9194ca44a8fc34b066','0','2','0'), ('30194','18','','10308','Frontend discovery','haproxy.frontend.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery frontends','0','7d','1','','35103','','','','','200','1','0','','','0','0','0','0','0','0','0','69264415d8644ef597affd3dc95d42b2','0','2','0'), ('30195','18','','10308','Server discovery','haproxy.server.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery servers','0','7d','1','','35103','','','','','200','1','0','','','0','0','0','0','0','0','0','a2f7f79b8f094afd93648f62f99d3369','0','2','0'), ('30197','18','','10308','Backend {#PXNAME}: Responses denied per second','haproxy.backend.dresp.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Responses denied due to security concerns (ACL-restricted).','0','30d','0','','44726','','','','','200','1','0','','','0','0','0','0','0','0','0','3df452e68f144fc3a8e5ff7644ace606','0','2','0'), ('30198','18','','10308','Backend {#PXNAME}: Errors connection per second','haproxy.backend.econ.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of requests that encountered an error attempting to connect to a backend server.','0','30d','0','','44726','','','','','200','1','0','','','0','0','0','0','0','0','0','5e315f24828d45b285e92971d5456234','0','2','0'), ('30199','18','','10308','Backend {#PXNAME}: Response errors per second','haproxy.backend.eresp.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of requests whose responses yielded an error','0','30d','0','','44726','','','','','200','1','0','','','0','0','0','0','0','0','0','f1ca728c571e4cf4ac9ebc36e96df27e','0','2','0'), ('30200','18','','10308','Backend {#PXNAME}: Unassigned requests','haproxy.backend.qcur[{#PXNAME},{#SVNAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current number of requests unassigned in queue.','0','30d','0','','44726','','','','','200','1','0','','','0','0','0','0','0','0','0','389e5f77b422419386c2fa21db612697','0','2','0'), ('30201','18','','10308','Backend {#PXNAME}: Time in queue','haproxy.backend.qtime[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Average time spent in queue (in ms) for the last 1,024 requests','0','30d','0','','44726','','','','','200','1','0','','','0','0','0','0','0','0','0','a58ff94387824acb81b27cab5cfc680a','0','2','0'), ('30202','18','','10308','Backend {#PXNAME}: Responses time','haproxy.backend.rtime[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Average backend response time (in ms) for the last 1,024 requests','0','30d','0','','44726','','','','','200','1','0','','','0','0','0','0','0','0','0','7e801fd81fed448db7dd6c6eeaa398d5','0','2','0'), ('30203','18','','10308','Backend {#PXNAME}: Status','haproxy.backend.status[{#PXNAME},{#SVNAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Possible values: UP - The server is reporting as healthy. DOWN - The server is reporting as unhealthy and unable to receive requests. NOLB - You''ve added http-check disable-on-404 to the backend and the health checked URL has returned an HTTP 404 response. MAINT - The server has been disabled or put into maintenance mode. DRAIN - The server has been put into drain mode. no check - Health checks are not enabled for this server.','0','30d','0','','44726','','','','','200','1','0','','','0','0','0','0','0','0','0','5826a63314314ef297c81749561574d2','0','2','0'), ('30204','18','','10308','Backend {#PXNAME}: Redispatched requests per second','haproxy.backend.wredis.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of times a request was redispatched to a different backend.','0','30d','0','','44726','','','','','200','1','0','','','0','0','0','0','0','0','0','bebad9eb0731474db798eacde7771238','0','2','0'), ('30205','18','','10308','Backend {#PXNAME}: Retried connections per second','haproxy.backend.wretr.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of times a connection was retried.','0','30d','0','','44726','','','','','200','1','0','','','0','0','0','0','0','0','0','0f09a6b800d747f4beed96a25b5cfa49','0','2','0'), ('30206','18','','10308','Frontend {#PXNAME}: Incoming traffic','haproxy.frontend.bin.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bits received by the frontend','0','30d','0','','44727','','','','','200','1','0','','','0','0','0','0','0','0','0','434f9c1dd63946d3a181c42bcee94e07','0','2','0'), ('30207','18','','10308','Frontend {#PXNAME}: Outgoing traffic','haproxy.frontend.bout.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bits sent by the frontend','0','30d','0','','44727','','','','','200','1','0','','','0','0','0','0','0','0','0','047ec4b444af4bc38f74eb7fabf2fb94','0','2','0'), ('30208','18','','10308','Frontend {#PXNAME}: Denied requests per second','haproxy.frontend.dreq.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Requests denied due to security concerns (ACL-restricted) per second.','0','30d','0','','44727','','','','','200','1','0','','','0','0','0','0','0','0','0','4542ee3da6334468b6a146083bfa1208','0','2','0'), ('30209','18','','10308','Frontend {#PXNAME}: Request errors per second','haproxy.frontend.ereq.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of request errors per second.','0','30d','0','','44727','','','','','200','1','0','','','0','0','0','0','0','0','0','2da48ea7b7fb4432b041b9706017778e','0','2','0'), ('30210','18','','10308','Frontend {#PXNAME}: Number of responses with codes 1xx per second','haproxy.frontend.hrsp_1xx.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of informational HTTP responses per second.','0','30d','0','','44727','','','','','200','1','0','','','0','0','0','0','0','0','0','d4d6d7092c524a4aa9ac83f9506fcb44','0','2','0'), ('30211','18','','10308','Frontend {#PXNAME}: Number of responses with codes 2xx per second','haproxy.frontend.hrsp_2xx.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of successful HTTP responses per second.','0','30d','0','','44727','','','','','200','1','0','','','0','0','0','0','0','0','0','34bb4142cb4c48678f1136ed7a582ff7','0','2','0'), ('30212','18','','10308','Frontend {#PXNAME}: Number of responses with codes 3xx per second','haproxy.frontend.hrsp_3xx.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of HTTP redirections per second.','0','30d','0','','44727','','','','','200','1','0','','','0','0','0','0','0','0','0','3d6966759c864b0d94daceead022e421','0','2','0'), ('30213','18','','10308','Frontend {#PXNAME}: Number of responses with codes 4xx per second','haproxy.frontend.hrsp_4xx.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of HTTP client errors per second.','0','30d','0','','44727','','','','','200','1','0','','','0','0','0','0','0','0','0','3fe3871812254cf0a228b6607f02ea12','0','2','0'), ('30214','18','','10308','Frontend {#PXNAME}: Number of responses with codes 5xx per second','haproxy.frontend.hrsp_5xx.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of HTTP server errors per second.','0','30d','0','','44727','','','','','200','1','0','','','0','0','0','0','0','0','0','85d7aa81598b48ee9d40ce3e5b7fc7ea','0','2','0'), ('30215','18','','10308','Frontend {#PXNAME}: Sessions rate','haproxy.frontend.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of sessions created per second','0','30d','0','','44727','','','','','200','1','0','','','0','0','0','0','0','0','0','24ee024f493e47f4b4405bc469976c8e','0','2','0'), ('30216','18','','10308','Frontend {#PXNAME}: Requests rate','haproxy.frontend.req_rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'HTTP requests per second','0','30d','0','','44727','','','','','200','1','0','','','0','0','0','0','0','0','0','2290bc0944774d54a89d5b6195f81ad4','0','2','0'), ('30217','18','','10308','Frontend {#PXNAME}: Established sessions','haproxy.frontend.scur[{#PXNAME},{#SVNAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current number of established sessions.','0','30d','0','','44727','','','','','200','1','0','','','0','0','0','0','0','0','0','b01d1b02b9da4609acaa278cf5f2ebbd','0','2','0'), ('30218','18','','10308','Frontend {#PXNAME}: Session limits','haproxy.frontend.slim[{#PXNAME},{#SVNAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The most simultaneous sessions that are allowed, as defined by the maxconn setting in the frontend.','0','30d','0','','44727','','','','','200','1','0','','','0','0','0','0','0','0','0','4ed338fd24e14aeda1f6058a36371455','0','2','0'), ('30219','18','','10308','{#PXNAME} {#SVNAME}: Responses denied per second','haproxy.server.dresp.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Responses denied due to security concerns (ACL-restricted).','0','30d','0','','44728','','','','','200','1','0','','','0','0','0','0','0','0','0','537f0b807f784b6cba1032ff77fad499','0','2','0'), ('30220','18','','10308','{#PXNAME} {#SVNAME}: Errors connection per second','haproxy.server.econ.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of requests that encountered an error attempting to connect to a backend server.','0','30d','0','','44728','','','','','200','1','0','','','0','0','0','0','0','0','0','f688e1e62fa94d1db1d59735094f0bc4','0','2','0'), ('30221','18','','10308','{#PXNAME} {#SVNAME}: Response errors per second','haproxy.server.eresp.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of requests whose responses yielded an error.','0','30d','0','','44728','','','','','200','1','0','','','0','0','0','0','0','0','0','bdcac24a8b1e4dd5a441edb61ca13156','0','2','0'), ('30222','18','','10308','{#PXNAME} {#SVNAME}: Number of responses with codes 4xx per second','haproxy.server.hrsp_4xx.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of HTTP client errors per second.','0','30d','0','','44728','','','','','200','1','0','','','0','0','0','0','0','0','0','3af9ae3041bb4cd588cc6048370d9be7','0','2','0'), ('30223','18','','10308','{#PXNAME} {#SVNAME}: Number of responses with codes 5xx per second','haproxy.server.hrsp_5xx.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of HTTP server errors per second.','0','30d','0','','44728','','','','','200','1','0','','','0','0','0','0','0','0','0','9f2f6e181dca47ab8e1ae9064ab9fe15','0','2','0'), ('30224','18','','10308','{#PXNAME} {#SVNAME}: Unassigned requests','haproxy.server.qcur[{#PXNAME},{#SVNAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current number of requests unassigned in queue.','0','30d','0','','44728','','','','','200','1','0','','','0','0','0','0','0','0','0','03c6d54204104fa0a320ff76204fc825','0','2','0'), ('30225','18','','10308','{#PXNAME} {#SVNAME}: Time in queue','haproxy.server.qtime[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Average time spent in queue (in ms) for the last 1,024 requests.','0','30d','0','','44728','','','','','200','1','0','','','0','0','0','0','0','0','0','58c074ebc26145a6847d425d51f7cbca','0','2','0'), ('30226','18','','10308','{#PXNAME} {#SVNAME}: Responses time','haproxy.server.rtime[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Average server response time (in ms) for the last 1,024 requests.','0','30d','0','','44728','','','','','200','1','0','','','0','0','0','0','0','0','0','25c22d3eca2d4eb7b83791d36edcf470','0','2','0'), ('30227','18','','10308','{#PXNAME} {#SVNAME}: Status','haproxy.server.status[{#PXNAME},{#SVNAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','44728','','','','','200','1','0','','','0','0','0','0','0','0','0','973e886a54374bd4815f71d9f9174e80','0','2','0'), ('30228','18','','10308','{#PXNAME} {#SVNAME}: Redispatched requests per second','haproxy.server.wredis.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of times a request was redispatched to a different backend.','0','30d','0','','44728','','','','','200','1','0','','','0','0','0','0','0','0','0','606acc119e0d4d9c934e200e037434fe','0','2','0'), ('30229','18','','10308','{#PXNAME} {#SVNAME}: Retried connections per second','haproxy.server.wretr.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of times a connection was retried.','0','30d','0','','44728','','','','','200','1','0','','','0','0','0','0','0','0','0','1e2188320b834562b6b33e96f90a5b44','0','2','0'), ('30236','18','','10309','Backend discovery','haproxy.backend.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery backends','0','7d','1','','35128','','','','','200','1','0','','','0','0','0','0','0','0','0','7b4ab1338cdf4e499c1fdea4c886ae9a','0','2','0'), ('30237','18','','10309','Frontend discovery','haproxy.frontend.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery frontends','0','7d','1','','35128','','','','','200','1','0','','','0','0','0','0','0','0','0','37629de766fd4c61a1618f9d1f1e2eab','0','2','0'), ('30238','18','','10309','Server discovery','haproxy.server.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery servers','0','7d','1','','35128','','','','','200','1','0','','','0','0','0','0','0','0','0','134455ad7e8c4444a78255cb2e3fa98b','0','2','0'), ('30240','18','','10309','Backend {#PXNAME}: Responses denied per second','haproxy.backend.dresp.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Responses denied due to security concerns (ACL-restricted).','0','30d','0','','44729','','','','','200','1','0','','','0','0','0','0','0','0','0','59eeafe66fe34334a81d736f62b88ec0','0','2','0'), ('30241','18','','10309','Backend {#PXNAME}: Errors connection per second','haproxy.backend.econ.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of requests that encountered an error attempting to connect to a backend server.','0','30d','0','','44729','','','','','200','1','0','','','0','0','0','0','0','0','0','e885cb2b53a941cd932211c4ccf334f6','0','2','0'), ('30242','18','','10309','Backend {#PXNAME}: Response errors per second','haproxy.backend.eresp.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of requests whose responses yielded an error','0','30d','0','','44729','','','','','200','1','0','','','0','0','0','0','0','0','0','c42f04d1a00c4d4fa96705746cb32631','0','2','0'), ('30243','18','','10309','Backend {#PXNAME}: Unassigned requests','haproxy.backend.qcur[{#PXNAME},{#SVNAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current number of requests unassigned in queue.','0','30d','0','','44729','','','','','200','1','0','','','0','0','0','0','0','0','0','7985131c621d49419dfe5bcfecb675f2','0','2','0'), ('30244','18','','10309','Backend {#PXNAME}: Time in queue','haproxy.backend.qtime[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Average time spent in queue (in ms) for the last 1,024 requests','0','30d','0','','44729','','','','','200','1','0','','','0','0','0','0','0','0','0','1592ee4ff7b2448a9e044a0ad7904693','0','2','0'), ('30245','18','','10309','Backend {#PXNAME}: Responses time','haproxy.backend.rtime[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Average backend response time (in ms) for the last 1,024 requests','0','30d','0','','44729','','','','','200','1','0','','','0','0','0','0','0','0','0','5ddd3cd8af904faaa69f34df442c9717','0','2','0'), ('30246','18','','10309','Backend {#PXNAME}: Status','haproxy.backend.status[{#PXNAME},{#SVNAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Possible values: UP - The server is reporting as healthy. DOWN - The server is reporting as unhealthy and unable to receive requests. NOLB - You''ve added http-check disable-on-404 to the backend and the health checked URL has returned an HTTP 404 response. MAINT - The server has been disabled or put into maintenance mode. DRAIN - The server has been put into drain mode. no check - Health checks are not enabled for this server.','0','30d','0','','44729','','','','','200','1','0','','','0','0','0','0','0','0','0','16bb7ee405a84bb4865c46fdf996511f','0','2','0'), ('30247','18','','10309','Backend {#PXNAME}: Redispatched requests per second','haproxy.backend.wredis.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of times a request was redispatched to a different backend.','0','30d','0','','44729','','','','','200','1','0','','','0','0','0','0','0','0','0','00d3038c7df34512ae39ba1051712674','0','2','0'), ('30248','18','','10309','Backend {#PXNAME}: Retried connections per second','haproxy.backend.wretr.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of times a connection was retried.','0','30d','0','','44729','','','','','200','1','0','','','0','0','0','0','0','0','0','e0eafe2c4d0d40e492822e43f6cf108e','0','2','0'), ('30249','18','','10309','Frontend {#PXNAME}: Incoming traffic','haproxy.frontend.bin.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bits received by the frontend','0','30d','0','','44730','','','','','200','1','0','','','0','0','0','0','0','0','0','6dac4d4e912b4f8fb7def6bab98d8dc4','0','2','0'), ('30250','18','','10309','Frontend {#PXNAME}: Outgoing traffic','haproxy.frontend.bout.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bits sent by the frontend','0','30d','0','','44730','','','','','200','1','0','','','0','0','0','0','0','0','0','5550e3842d00486999c822b0d514b78e','0','2','0'), ('30251','18','','10309','Frontend {#PXNAME}: Denied requests per second','haproxy.frontend.dreq.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Requests denied due to security concerns (ACL-restricted) per second.','0','30d','0','','44730','','','','','200','1','0','','','0','0','0','0','0','0','0','819b1559cf294958ab03cae8663eb7e3','0','2','0'), ('30252','18','','10309','Frontend {#PXNAME}: Request errors per second','haproxy.frontend.ereq.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of request errors per second.','0','30d','0','','44730','','','','','200','1','0','','','0','0','0','0','0','0','0','0b2a1b9e1c9045519e4ac52d5d83e86b','0','2','0'), ('30253','18','','10309','Frontend {#PXNAME}: Number of responses with codes 1xx per second','haproxy.frontend.hrsp_1xx.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of informational HTTP responses per second.','0','30d','0','','44730','','','','','200','1','0','','','0','0','0','0','0','0','0','c287463b994c40caaaeb195a4dca5d37','0','2','0'), ('30254','18','','10309','Frontend {#PXNAME}: Number of responses with codes 2xx per second','haproxy.frontend.hrsp_2xx.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of successful HTTP responses per second.','0','30d','0','','44730','','','','','200','1','0','','','0','0','0','0','0','0','0','41cd2084595d482ea204f9edc62a985a','0','2','0'), ('30255','18','','10309','Frontend {#PXNAME}: Number of responses with codes 3xx per second','haproxy.frontend.hrsp_3xx.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of HTTP redirections per second.','0','30d','0','','44730','','','','','200','1','0','','','0','0','0','0','0','0','0','f1ae1b8f477449c9832e80bfd145211a','0','2','0'), ('30256','18','','10309','Frontend {#PXNAME}: Number of responses with codes 4xx per second','haproxy.frontend.hrsp_4xx.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of HTTP client errors per second.','0','30d','0','','44730','','','','','200','1','0','','','0','0','0','0','0','0','0','f1635a2f379b4542b9c44c9d5224fc4d','0','2','0'), ('30257','18','','10309','Frontend {#PXNAME}: Number of responses with codes 5xx per second','haproxy.frontend.hrsp_5xx.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of HTTP server errors per second.','0','30d','0','','44730','','','','','200','1','0','','','0','0','0','0','0','0','0','cf9ae6b634fd4acc92c180bc10c9b0f5','0','2','0'), ('30258','18','','10309','Frontend {#PXNAME}: Sessions rate','haproxy.frontend.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of sessions created per second','0','30d','0','','44730','','','','','200','1','0','','','0','0','0','0','0','0','0','6c09de61332c4d56a4b90ee4e9ab6fe2','0','2','0'), ('30259','18','','10309','Frontend {#PXNAME}: Requests rate','haproxy.frontend.req_rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'HTTP requests per second','0','30d','0','','44730','','','','','200','1','0','','','0','0','0','0','0','0','0','7097695ee69e4b7895c0d885606b8456','0','2','0'), ('30260','18','','10309','Frontend {#PXNAME}: Established sessions','haproxy.frontend.scur[{#PXNAME},{#SVNAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current number of established sessions.','0','30d','0','','44730','','','','','200','1','0','','','0','0','0','0','0','0','0','7985345dcd274811ac6a2e69940f6cb7','0','2','0'), ('30261','18','','10309','Frontend {#PXNAME}: Session limits','haproxy.frontend.slim[{#PXNAME},{#SVNAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The most simultaneous sessions that are allowed, as defined by the maxconn setting in the frontend.','0','30d','0','','44730','','','','','200','1','0','','','0','0','0','0','0','0','0','8b185b2272244229865315cc0139d43f','0','2','0'), ('30262','18','','10309','{#PXNAME} {#SVNAME}: Responses denied per second','haproxy.server.dresp.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Responses denied due to security concerns (ACL-restricted).','0','30d','0','','44731','','','','','200','1','0','','','0','0','0','0','0','0','0','6e5824eca488428eb61a17d1d4efd055','0','2','0'), ('30263','18','','10309','{#PXNAME} {#SVNAME}: Errors connection per second','haproxy.server.econ.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of requests that encountered an error attempting to connect to a backend server.','0','30d','0','','44731','','','','','200','1','0','','','0','0','0','0','0','0','0','18533da75eb142dbb216acc7af3bde4b','0','2','0'), ('30264','18','','10309','{#PXNAME} {#SVNAME}: Response errors per second','haproxy.server.eresp.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of requests whose responses yielded an error.','0','30d','0','','44731','','','','','200','1','0','','','0','0','0','0','0','0','0','3412ca47e4fe4481b434f95dda566c5e','0','2','0'), ('30265','18','','10309','{#PXNAME} {#SVNAME}: Number of responses with codes 4xx per second','haproxy.server.hrsp_4xx.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of HTTP client errors per second.','0','30d','0','','44731','','','','','200','1','0','','','0','0','0','0','0','0','0','66076fc3a6fc401cb1423fb015dfe187','0','2','0'), ('30266','18','','10309','{#PXNAME} {#SVNAME}: Number of responses with codes 5xx per second','haproxy.server.hrsp_5xx.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of HTTP server errors per second.','0','30d','0','','44731','','','','','200','1','0','','','0','0','0','0','0','0','0','631d2471fc7346a5b0ce8379a400f13e','0','2','0'), ('30267','18','','10309','{#PXNAME} {#SVNAME}: Unassigned requests','haproxy.server.qcur[{#PXNAME},{#SVNAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current number of requests unassigned in queue.','0','30d','0','','44731','','','','','200','1','0','','','0','0','0','0','0','0','0','0bc4c4f25d00423b9dc188c9dbe34db0','0','2','0'), ('30268','18','','10309','{#PXNAME} {#SVNAME}: Time in queue','haproxy.server.qtime[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Average time spent in queue (in ms) for the last 1,024 requests.','0','30d','0','','44731','','','','','200','1','0','','','0','0','0','0','0','0','0','aa3b73b8d06a463f84b10621461c1577','0','2','0'), ('30269','18','','10309','{#PXNAME} {#SVNAME}: Responses time','haproxy.server.rtime[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Average server response time (in ms) for the last 1,024 requests.','0','30d','0','','44731','','','','','200','1','0','','','0','0','0','0','0','0','0','f790d237b494452a9b77b4f002a7ca46','0','2','0'), ('30270','18','','10309','{#PXNAME} {#SVNAME}: Status','haproxy.server.status[{#PXNAME},{#SVNAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','44731','','','','','200','1','0','','','0','0','0','0','0','0','0','80ceac1d54e94e50988bf205318392a8','0','2','0'), ('30271','18','','10309','{#PXNAME} {#SVNAME}: Redispatched requests per second','haproxy.server.wredis.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of times a request was redispatched to a different backend.','0','30d','0','','44731','','','','','200','1','0','','','0','0','0','0','0','0','0','d7419ca33427455688a08ecff8ad6fb0','0','2','0'), ('30272','18','','10309','{#PXNAME} {#SVNAME}: Retried connections per second','haproxy.server.wretr.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of times a connection was retried.','0','30d','0','','44731','','','','','200','1','0','','','0','0','0','0','0','0','0','96cfadc919d8457ebb7519e11ac93d79','0','2','0'), ('30277','18','','10310','Blocked clients','redis.clients.blocked','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of connections waiting on a blocking call','0','30d','0','','45109','','','','','200','1','0','','','0','0','0','0','0','0','0','bc4989f098954259924cbee6717519a7','0','2','0'), ('30278','18','','10310','TCP port','redis.server.tcp_port','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'TCP/IP listen port','0','30d','0','','45102','','','','','200','1','0','','','0','0','0','0','0','0','0','8c28e54f9e5d40d6b69c1f5b39b85054','0','2','0'), ('30279','18','','10310','Expired keys','redis.stats.expired_keys','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of key expiration events','0','30d','0','','45106','','','','','200','1','0','','','0','0','0','0','0','0','0','0a77355cfba348bb8884d2405892ed5d','0','2','0'), ('30280','18','','10310','Evicted keys','redis.stats.evicted_keys','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of evicted keys due to maxmemory limit','0','30d','0','','45106','','','','','200','1','0','','','0','0','0','0','0','0','0','eca69284ac8e4ae3a7e965b6549e9343','0','2','0'), ('30281','18','','10310','Uptime','redis.server.uptime','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of seconds since Redis server start','0','30d','0','','45102','','','','','200','1','0','','','0','0','0','0','0','0','0','af225edd976146f2920bc05afb703f14','0','2','0'), ('30282','18','','10310','Redis mode','redis.server.redis_mode','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The server''s mode ("standalone", "sentinel" or "cluster")','0','30d','0','','45102','','','','','200','1','0','','','0','0','0','0','0','0','0','b2deab550d984b3e93741c53019e7f89','0','2','0'), ('30283','18','','10310','Redis version','redis.server.redis_version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of the Redis server','0','30d','0','','45102','','','','','200','1','0','','','0','0','0','0','0','0','0','9699d6a6563b498ea73f88a4c1dd9cf1','0','2','0'), ('30284','18','','10310','Instantaneous operations per sec','redis.stats.instantaneous_ops.rate','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of commands processed per second','0','30d','0','','45106','','','','','200','1','0','','','0','0','0','0','0','0','0','3552b285d7ca41f796c1838e268a92c1','0','2','0'), ('30285','18','','10310','Process id','redis.server.process_id','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'PID of the server process','0','30d','0','','45102','','','','','200','1','0','','','0','0','0','0','0','0','0','8a08d4f30b78448986b9fd94cafd398c','0','2','0'), ('30286','18','','10310','Replication role','redis.replication.role','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Value is "master" if the instance is replica of no one, or "slave" if the instance is a replica of some master instance. Note that a replica can be master of another replica (chained replication).','0','30d','0','','45108','','','','','200','1','0','','','0','0','0','0','0','0','0','d8371457697744159aabc3bdece4af2e','0','2','0'), ('30287','18','','10310','Replication backlog size','redis.replication.repl_backlog_size','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total size in bytes of the replication backlog buffer','0','30d','0','','45108','','','','','200','1','0','','','0','0','0','0','0','0','0','a437a46aafe3413884975fc480091bb5','0','2','0'), ('30288','18','','10310','Replication backlog history length','redis.replication.repl_backlog_histlen','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Amount of data in the backlog sync buffer','0','30d','0','','45108','','','','','200','1','0','','','0','0','0','0','0','0','0','081cd9df926d48cea7e5c68f7761ddb1','0','2','0'), ('30289','18','','10310','Instantaneous input bytes per second','redis.stats.instantaneous_input.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The network''s read rate per second in KB/sec','0','30d','0','','45106','','','','','200','1','0','','','0','0','0','0','0','0','0','5841b6f2a76b432080029367e7008cd1','0','2','0'), ('30290','18','','10310','Keyspace hits','redis.stats.keyspace_hits','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of successful lookup of keys in the main dictionary','0','30d','0','','45106','','','','','200','1','0','','','0','0','0','0','0','0','0','66d30a422e704174ae7700e1dd006aa1','0','2','0'), ('30291','18','','10310','Instantaneous output bytes per second','redis.stats.instantaneous_output.rate','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'The network''s write rate per second in KB/sec','0','30d','0','','45106','','','','','200','1','0','','','0','0','0','0','0','0','0','86c05ed58e8448e9b7307a3c82e182af','0','2','0'), ('30292','18','','10310','Replication backlog active','redis.replication.repl_backlog_active','0','31d','365d','0','3','','','','',NULL,'144','','','0','','','','','0',NULL,'Flag indicating replication backlog is active','0','30d','0','','45108','','','','','200','1','0','','','0','0','0','0','0','0','0','cf067374339e44e5a4ba2cd70d4fec3a','0','2','0'), ('30293','18','','10310','Keyspace misses','redis.stats.keyspace_misses','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of failed lookup of keys in the main dictionary','0','30d','0','','45106','','','','','200','1','0','','','0','0','0','0','0','0','0','e24da63a83dc4223bed35cf80fc22300','0','2','0'), ('30294','18','','10310','Latest fork usec','redis.stats.latest_fork_usec','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Duration of the latest fork operation in microseconds','0','30d','0','','45106','','','','','200','1','0','','','0','0','0','0','0','0','0','1f11810f06d44e498a895c516f902f95','0','2','0'), ('30295','18','','10310','Migrate cached sockets','redis.stats.migrate_cached_sockets','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of sockets open for MIGRATE purposes','0','30d','0','','45106','','','','','200','1','0','','','0','0','0','0','0','0','0','2662dfd3524749998306f1d7afe33019','0','2','0'), ('30296','18','','10310','Pubsub channels','redis.stats.pubsub_channels','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Global number of pub/sub channels with client subscriptions','0','30d','0','','45106','','','','','200','1','0','','','0','0','0','0','0','0','0','186e6bda0a0e463bb8218a58f227ff2b','0','2','0'), ('30297','18','','10310','Pubsub patterns','redis.stats.pubsub_patterns','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Global number of pub/sub pattern with client subscriptions','0','30d','0','','45106','','','','','200','1','0','','','0','0','0','0','0','0','0','1e0711a2b40e4fea88c0c57a1f6d2b30','0','2','0'), ('30298','18','','10310','Rejected connections','redis.stats.rejected_connections','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connections rejected because of maxclients limit','0','30d','0','','45106','','','','','200','1','0','','','0','0','0','0','0','0','0','65135267c836435d872325a7129e5857','0','2','0'), ('30299','18','','10310','Sync full','redis.stats.sync_full','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of full resyncs with replicas','0','30d','0','','45106','','','','','200','1','0','','','0','0','0','0','0','0','0','37135fd8b7e94c41bc21e802f21baeb4','0','2','0'), ('30300','18','','10310','Sync partial err','redis.stats.sync_partial_err','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of denied partial resync requests','0','30d','0','','45106','','','','','200','1','0','','','0','0','0','0','0','0','0','cb5b6380b164419280fdcd98077c5d8f','0','2','0'), ('30301','18','','10310','Sync partial ok','redis.stats.sync_partial_ok','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of accepted partial resync requests','0','30d','0','','45106','','','','','200','1','0','','','0','0','0','0','0','0','0','231560fd350e4b5096b242dddecd7c8b','0','2','0'), ('30302','18','','10310','Total commands processed','redis.stats.total_commands_processed','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of commands processed by the server','0','30d','0','','45106','','','','','200','1','0','','','0','0','0','0','0','0','0','278ff045f367443380fcd594dba77d53','0','2','0'), ('30303','18','','10310','Total connections received','redis.stats.total_connections_received','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of connections accepted by the server','0','30d','0','','45106','','','','','200','1','0','','','0','0','0','0','0','0','0','c9afbbbec8a44926887389a590f1df91','0','2','0'), ('30304','18','','10310','Total net input bytes','redis.stats.total_net_input_bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of bytes read from the network','0','30d','0','','45106','','','','','200','1','0','','','0','0','0','0','0','0','0','838cb6cbfd8a42e1b9cfa4a60670324a','0','2','0'), ('30305','18','','10310','Replication backlog first byte offset','redis.replication.repl_backlog_first_byte_offset','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The master offset of the replication backlog buffer','0','30d','0','','45108','','','','','200','1','0','','','0','0','0','0','0','0','0','b4ea8df4d73144f99ffd4f5f6e6359ef','0','2','0'), ('30306','18','','10310','Connected slaves','redis.replication.connected_slaves','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of connected slaves','0','30d','0','','45108','','','','','200','1','0','','','0','0','0','0','0','0','0','6680a01fb98c4504bed6458ba6cde146','0','2','0'), ('30307','18','','10310','Master replication offset','redis.replication.master_repl_offset','0','31d','365d','0','3','','B','','',NULL,'145','','','0','','','','','0',NULL,'Replication offset reported by the master','0','30d','0','','45108','','','','','200','1','0','','','0','0','0','0','0','0','0','37fa1595299c4a3ea091039f4db47cf3','0','2','0'), ('30308','18','','10310','Memory used RSS','redis.memory.used_memory_rss','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes that Redis allocated as seen by the operating system','0','30d','0','','45104','','','','','200','1','0','','','0','0','0','0','0','0','0','ef06ae3dd4784702ad0d281da94c294d','0','2','0'), ('30309','18','','10310','Max input buffer','redis.clients.max_input_buffer','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The biggest input buffer among current client connections','0','30d','0','','45109','','','','','200','1','0','','','0','0','0','0','0','0','0','3f5d6532f403436c823e1461e49e54c2','0','2','0'), ('30310','18','','10310','Max output buffer','redis.clients.max_output_buffer','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The biggest output buffer among current client connections','0','30d','0','','45109','','','','','200','1','0','','','0','0','0','0','0','0','0','44788aa774e64fe685fe6496a9bea97d','0','2','0'), ('30313','18','','10310','CPU sys','redis.cpu.sys','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'System CPU consumed by the Redis server','0','30d','0','','45107','','','','','200','1','0','','','0','0','0','0','0','0','0','99d427f1f76a468c9878225abb8cebbd','0','2','0'), ('30314','18','','10310','CPU sys children','redis.cpu.sys_children','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'System CPU consumed by the background processes','0','30d','0','','45107','','','','','200','1','0','','','0','0','0','0','0','0','0','1bfce9a62c924510a9cac3b04320d838','0','2','0'), ('30315','18','','10310','CPU user','redis.cpu.user','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'User CPU consumed by the Redis server','0','30d','0','','45107','','','','','200','1','0','','','0','0','0','0','0','0','0','83e7c9f5b8a24c949d72125671d6d39a','0','2','0'), ('30316','18','','10310','CPU user children','redis.cpu.user_children','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'User CPU consumed by the background processes','0','30d','0','','45107','','','','','200','1','0','','','0','0','0','0','0','0','0','8bc18ca0c79d4a81811b600cf3fe8ddd','0','2','0'), ('30317','18','','10310','Memory fragmentation ratio','redis.memory.fragmentation_ratio','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'This ratio is an indication of memory mapping efficiency: - Value over 1.0 indicate that memory fragmentation is very likely. Consider restarting the Redis server so the operating system can recover fragmented memory, especially with a ratio over 1.5. - Value under 1.0 indicate that Redis likely has insufficient memory available. Consider optimizing memory usage or adding more RAM. Note: If your peak memory usage is much higher than your current memory usage, the memory fragmentation ratio may be unreliable. https://redis.io/topics/memory-optimization','0','30d','0','','45104','','','','','200','1','0','','','0','0','0','0','0','0','0','5fe2afa1c8ff434a876822ea0b290659','0','2','0'), ('30318','18','','10310','Memory used','redis.memory.used_memory','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of bytes allocated by Redis using its allocator','0','30d','0','','45104','','','','','200','1','0','','','0','0','0','0','0','0','0','5fef1d341a974cc5aa164e550aff1537','0','2','0'), ('30319','18','','10310','Memory used Lua','redis.memory.used_memory_lua','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Amount of memory used by the Lua engine','0','30d','0','','45104','','','','','200','1','0','','','0','0','0','0','0','0','0','de026d98fd9146b78f9a0be2c0b9de10','0','2','0'), ('30320','18','','10310','Memory used peak','redis.memory.used_memory_peak','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Peak memory consumed by Redis (in bytes)','0','30d','0','','45104','','','','','200','1','0','','','0','0','0','0','0','0','0','d3f05ab1c0404f01875afb964d9820e2','0','2','0'), ('30321','18','','10310','AOF current rewrite time sec','redis.persistence.aof_current_rewrite_time_sec','0','31d','365d','0','0','','s','','',NULL,'146','','','0','','','','','0',NULL,'Duration of the on-going AOF rewrite operation if any','0','30d','0','','45103','','','','','200','1','0','','','0','0','0','0','0','0','0','86501872c68c4e9fa4b55aaacebb3c3c','0','2','0'), ('30322','18','','10310','Connected clients','redis.clients.connected','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of connected clients','0','30d','0','','45109','','','','','200','1','0','','','0','0','0','0','0','0','0','6140e8ff18fe41c6b65165b0f5346c7b','0','2','0'), ('30323','18','','10310','AOF enabled','redis.persistence.aof_enabled','0','31d','365d','0','3','','','','',NULL,'144','','','0','','','','','0',NULL,'Flag indicating AOF logging is activated','0','30d','0','','45103','','','','','200','1','0','','','0','0','0','0','0','0','0','d298e1ce9aa1481391a48754e2a648b0','0','2','0'), ('30324','18','','10310','AOF last bgrewrite status','redis.persistence.aof_last_bgrewrite_status','0','31d','365d','0','3','','','','',NULL,'143','','','0','','','','','0',NULL,'Status of the last AOF rewrite operation','0','30d','0','','45103','','','','','200','1','0','','','0','0','0','0','0','0','0','e2e62cc728c04169afeb051000042e28','0','2','0'), ('30325','18','','10310','AOF last rewrite time sec','redis.persistence.aof_last_rewrite_time_sec','0','31d','365d','0','0','','s','','',NULL,'146','','','0','','','','','0',NULL,'Duration of the last AOF rewrite','0','30d','0','','45103','','','','','200','1','0','','','0','0','0','0','0','0','0','5a14501541c44699b81e3a89cc93d628','0','2','0'), ('30326','18','','10310','AOF last write status','redis.persistence.aof_last_write_status','0','31d','365d','0','3','','','','',NULL,'143','','','0','','','','','0',NULL,'Status of the last write operation to the AOF','0','30d','0','','45103','','','','','200','1','0','','','0','0','0','0','0','0','0','2cfd96e347d341219238bdaf65f1846d','0','2','0'), ('30327','18','','10310','AOF rewrite in progress','redis.persistence.aof_rewrite_in_progress','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Flag indicating an AOF rewrite operation is on-going','0','30d','0','','45103','','','','','200','1','0','','','0','0','0','0','0','0','0','3f4866909425447a828600e9b44ace5b','0','2','0'), ('30328','18','','10310','AOF rewrite scheduled','redis.persistence.aof_rewrite_scheduled','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Flag indicating an AOF rewrite operation will be scheduled once the on-going RDB save is complete','0','30d','0','','45103','','','','','200','1','0','','','0','0','0','0','0','0','0','83d243cc46304694954e08c0b03a3527','0','2','0'), ('30329','18','','10310','Dump loading','redis.persistence.loading','0','31d','365d','0','3','','','','',NULL,'144','','','0','','','','','0',NULL,'Flag indicating if the load of a dump file is on-going','0','30d','0','','45103','','','','','200','1','0','','','0','0','0','0','0','0','0','90df2d442dc049d690044b92e0888c31','0','2','0'), ('30330','18','','10310','RDB bgsave in progress','redis.persistence.rdb_bgsave_in_progress','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'"1" if bgsave is in progress and "0" otherwise','0','30d','0','','45103','','','','','200','1','0','','','0','0','0','0','0','0','0','5b1ecad187764429a22cbeb69afa3a28','0','2','0'), ('30331','18','','10310','RDB changes since last save','redis.persistence.rdb_changes_since_last_save','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of changes since the last background save','0','30d','0','','45103','','','','','200','1','0','','','0','0','0','0','0','0','0','ea673953a3014dc091ec62a20ee53945','0','2','0'), ('30332','18','','10310','RDB current bgsave time sec','redis.persistence.rdb_current_bgsave_time_sec','0','31d','365d','0','0','','s','','',NULL,'146','','','0','','','','','0',NULL,'Duration of the on-going RDB save operation if any','0','30d','0','','45103','','','','','200','1','0','','','0','0','0','0','0','0','0','d8c4d8fceeb5482a951999eedd350f73','0','2','0'), ('30333','18','','10310','RDB last bgsave status','redis.persistence.rdb_last_bgsave_status','0','31d','365d','0','3','','','','',NULL,'143','','','0','','','','','0',NULL,'Status of the last RDB save operation','0','30d','0','','45103','','','','','200','1','0','','','0','0','0','0','0','0','0','e25772b422314949a564f219d6f725bc','0','2','0'), ('30334','18','','10310','RDB last bgsave time sec','redis.persistence.rdb_last_bgsave_time_sec','0','31d','365d','0','0','','s','','',NULL,'146','','','0','','','','','0',NULL,'Duration of the last bg_save operation','0','30d','0','','45103','','','','','200','1','0','','','0','0','0','0','0','0','0','f506941104e34db08c0d8f5a6d9d9710','0','2','0'), ('30335','18','','10310','RDB last save time','redis.persistence.rdb_last_save_time','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Epoch-based timestamp of last successful RDB save','0','30d','0','','45103','','','','','200','1','0','','','0','0','0','0','0','0','0','04e1c21ca49246d7aba062cd001a8c00','0','2','0'), ('30336','18','','10310','Total net output bytes','redis.stats.total_net_output_bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of bytes written to the network','0','30d','0','','45106','','','','','200','1','0','','','0','0','0','0','0','0','0','762f6b06eb094de896d265fcf3f9a603','0','2','0'), ('30338','18','','10310','Keyspace discovery','redis.keyspace.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Individual keyspace metrics','0','7d','1','','45105','','','','','200','1','0','','','0','0','0','0','0','0','0','0f7966f47fda4b41856163ffb438bf27','0','2','0'), ('30339','18','','10310','Version 4+ metrics discovery','redis.metrics.v4.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Additional metrics for versions 4+','0','7d','0','','45102','','','','','200','1','0','','','0','0','0','0','0','0','0','a3fb00d4bbc24779b6c7223b867f4d2c','0','2','0'), ('30340','18','','10310','Version 5+ metrics discovery','redis.metrics.v5.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Additional metrics for versions 5+','0','7d','0','','45102','','','','','200','1','0','','','0','0','0','0','0','0','0','f7a9f1e26bb54cb6adf74ee9f30d88cd','0','2','0'), ('30341','18','','10310','AOF metrics discovery','redis.persistence.aof.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'If AOF is activated, additional metrics will be added','0','7d','0','','45103','','','','','200','1','0','','','0','0','0','0','0','0','0','ac3a22522a2c4fa1a256794dd2292480','0','2','0'), ('30342','18','','10310','Replication metrics discovery','redis.replication.master.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'If the instance is the master and the slaves are connected, additional metrics are provided','0','7d','0','','45108','','','','','200','1','0','','','0','0','0','0','0','0','0','4379bad5624a4a5db0c86c5332cf5cc9','0','2','0'), ('30343','18','','10310','Slave metrics discovery','redis.replication.slave.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'If the instance is a replica, additional metrics are provided','0','7d','0','','45108','','','','','200','1','0','','','0','0','0','0','0','0','0','ca9296a7acb548789865ac716a54ce10','0','2','0'), ('30351','18','','10310','Active defrag running{#SINGLETON}','redis.memory.active_defrag_running[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Flag indicating if active defragmentation is active','0','30d','0','','45104','','','','','200','1','0','','','0','0','0','0','0','0','0','b7e8d996335f41158b3c6a8961319db0','0','2','0'), ('30352','18','','10310','RDB last CoW size{#SINGLETON}','redis.persistence.rdb_last_cow_size[{#SINGLETON}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size in bytes of copy-on-write allocations during the last RDB save operation','0','30d','0','','45103','','','','','200','1','0','','','0','0','0','0','0','0','0','768839c72e3f4be89e30dd0d140c9d03','0','2','0'), ('30353','18','','10310','Expired time cap reached count{#SINGLETON}','redis.stats.expired_time_cap_reached_count[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','45106','','','','','200','1','0','','','0','0','0','0','0','0','0','81667ae170b04ac0980e122566c5ed8e','0','2','0'), ('30354','18','','10310','Expired stale %{#SINGLETON}','redis.stats.expired_stale_perc[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','45106','','','','','200','1','0','','','0','0','0','0','0','0','0','a34f4e33a0cb4381b5c3b7a507e90bee','0','2','0'), ('30355','18','','10310','Active defrag misses{#SINGLETON}','redis.stats.active_defrag_misses[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of aborted value reallocations started by the active defragmentation process','0','30d','0','','45106','','','','','200','1','0','','','0','0','0','0','0','0','0','3c20cca8b4a84c619d90d64a34386dfa','0','2','0'), ('30356','18','','10310','Active defrag key misses{#SINGLETON}','redis.stats.active_defrag_key_misses[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of keys that were skipped by the active defragmentation process','0','30d','0','','45106','','','','','200','1','0','','','0','0','0','0','0','0','0','8aba0ad8d7314b6b8cf1e80cb0afb618','0','2','0'), ('30357','18','','10310','Active defrag key hits{#SINGLETON}','redis.stats.active_defrag_key_hits[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of keys that were actively defragmented','0','30d','0','','45106','','','','','200','1','0','','','0','0','0','0','0','0','0','f8b424743dd24691be2bd07d5538b16a','0','2','0'), ('30358','18','','10310','Active defrag hits{#SINGLETON}','redis.stats.active_defrag_hits[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of value reallocations performed by active the defragmentation process','0','30d','0','','45106','','','','','200','1','0','','','0','0','0','0','0','0','0','5458542148954618a6d22df1effffe57','0','2','0'), ('30359','18','','10310','Executable path{#SINGLETON}','redis.server.executable[{#SINGLETON}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The path to the server''s executable','0','30d','0','','45102','','','','','200','1','0','','','0','0','0','0','0','0','0','14d062351a114e8eafa2b2b889317903','0','2','0'), ('30360','18','','10310','Replication second offset{#SINGLETON}','redis.replication.second_repl_offset[{#SINGLETON}]','0','31d','365d','0','0','','B','','',NULL,'145','','','0','','','','','2',NULL,'Offset up to which replication IDs are accepted','0','30d','0','','45108','','','','','200','1','0','','','0','0','0','0','0','0','0','bead155d26054d0487622f29b86dcd2b','0','2','0'), ('30361','18','','10310','AOF last CoW size{#SINGLETON}','redis.persistence.aof_last_cow_size[{#SINGLETON}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size in bytes of copy-on-write allocations during the last AOF rewrite operation','0','30d','0','','45103','','','','','200','1','0','','','0','0','0','0','0','0','0','9da41967290742cb8daa2f69ac1d6966','0','2','0'), ('30362','18','','10310','Lazyfree pending objects{#SINGLETON}','redis.memory.lazyfree_pending_objects[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of objects waiting to be freed (as a result of calling UNLINK, or FLUSHDB and FLUSHALL with the ASYNC option)','0','30d','0','','45104','','','','','200','1','0','','','0','0','0','0','0','0','0','2065e38cd7e5417abfd0b80116b0d77b','0','2','0'), ('30363','18','','10310','Memory used startup{#SINGLETON}','redis.memory.used_memory_startup[{#SINGLETON}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Initial amount of memory consumed by Redis at startup in bytes','0','30d','0','','45104','','','','','200','1','0','','','0','0','0','0','0','0','0','dabd2918056b4b999f4b30bd8e64e8a1','0','2','0'), ('30364','18','','10310','Memory used peak %{#SINGLETON}','redis.memory.used_memory_peak_perc[{#SINGLETON}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of used_memory_peak out of used_memory','0','30d','0','','45104','','','','','200','1','0','','','0','0','0','0','0','0','0','5da63141e8b145a38954736806602b4a','0','2','0'), ('30365','18','','10310','Memory used overhead{#SINGLETON}','redis.memory.used_memory_overhead[{#SINGLETON}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The sum in bytes of all overheads that the server allocated for managing its internal data structures','0','30d','0','','45104','','','','','200','1','0','','','0','0','0','0','0','0','0','e085382c18f3473f9d2271024cd61e93','0','2','0'), ('30366','18','','10310','Memory used dataset{#SINGLETON}','redis.memory.used_memory_dataset[{#SINGLETON}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size in bytes of the dataset','0','30d','0','','45104','','','','','200','1','0','','','0','0','0','0','0','0','0','1c0e0355d5cd429f9a914fb67f29e366','0','2','0'), ('30367','18','','10310','Memory used dataset %{#SINGLETON}','redis.memory.used_memory_dataset_perc[{#SINGLETON}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of used_memory_dataset out of the net memory usage (used_memory minus used_memory_startup)','0','30d','0','','45104','','','','','200','1','0','','','0','0','0','0','0','0','0','4e5937420b3843568d9f36b40c0a3c28','0','2','0'), ('30368','18','','10310','Total system memory{#SINGLETON}','redis.memory.total_system_memory[{#SINGLETON}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total amount of memory that the Redis host has','0','30d','0','','45104','','','','','200','1','0','','','0','0','0','0','0','0','0','bf804c6ee44640168e15ca62803b7f10','0','2','0'), ('30369','18','','10310','Max memory{#SINGLETON}','redis.memory.maxmemory[{#SINGLETON}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Maximum amount of memory allocated to the Redisdb system','0','30d','0','','45104','','','','','200','1','0','','','0','0','0','0','0','0','0','2c5c700b53374dac86d805384b6bc9b0','0','2','0'), ('30370','18','','10310','Max memory policy{#SINGLETON}','redis.memory.maxmemory_policy[{#SINGLETON}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The value of the maxmemory-policy configuration directive','0','30d','0','','45104','','','','','200','1','0','','','0','0','0','0','0','0','0','0f094be6d0fa4afda3aa7916fac4d3a3','0','2','0'), ('30371','18','','10310','Slave expires tracked keys{#SINGLETON}','redis.stats.slave_expires_tracked_keys[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of keys tracked for expiry purposes (applicable only to writable replicas)','0','30d','0','','45106','','','','','200','1','0','','','0','0','0','0','0','0','0','93bf8753d6b242f1b8d2288fb926e01b','0','2','0'), ('30372','18','','10310','Allocator active{#SINGLETON}','redis.memory.allocator_active[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','45104','','','','','200','1','0','','','0','0','0','0','0','0','0','adc25c08108e4fcaa3b41d2897d0a0c6','0','2','0'), ('30373','18','','10310','Memory clients normal{#SINGLETON}','redis.memory.mem_clients_normal[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','45104','','','','','200','1','0','','','0','0','0','0','0','0','0','d64718269f20470e9661ff7c479dc300','0','2','0'), ('30374','18','','10310','Memory RSS overhead ratio{#SINGLETON}','redis.memory.rss_overhead_ratio[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','45104','','','','','200','1','0','','','0','0','0','0','0','0','0','d4d51ae4ce214699ba760fcb62289a51','0','2','0'), ('30375','18','','10310','Memory RSS overhead bytes{#SINGLETON}','redis.memory.rss_overhead_bytes[{#SINGLETON}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','45104','','','','','200','1','0','','','0','0','0','0','0','0','0','e699ad3b29ca486f91688684ffde6b73','0','2','0'), ('30376','18','','10310','Memory replication backlog{#SINGLETON}','redis.memory.replication_backlog[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','45104','','','','','200','1','0','','','0','0','0','0','0','0','0','a221fd161be641c1a8091d0bfd1d2157','0','2','0'), ('30377','18','','10310','Memory number of cached scripts{#SINGLETON}','redis.memory.number_of_cached_scripts[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','45104','','','','','200','1','0','','','0','0','0','0','0','0','0','eaac8b142fc540ad9c7563e145819643','0','2','0'), ('30378','18','','10310','Memory not counted for evict{#SINGLETON}','redis.memory.not_counted_for_evict[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','45104','','','','','200','1','0','','','0','0','0','0','0','0','0','f6c9bfda015d47d0b34f466e95356a5d','0','2','0'), ('30379','18','','10310','Memory clients slaves{#SINGLETON}','redis.memory.mem_clients_slaves[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','45104','','','','','200','1','0','','','0','0','0','0','0','0','0','e685ab11ab534f8abd1a7e2ee35839e8','0','2','0'), ('30380','18','','10310','Memory AOF buffer{#SINGLETON}','redis.memory.mem_aof_buffer[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Size of the AOF buffer','0','30d','0','','45104','','','','','200','1','0','','','0','0','0','0','0','0','0','70c53f60d020440c8f7cba83b32f58c9','0','2','0'), ('30381','18','','10310','Allocator allocated{#SINGLETON}','redis.memory.allocator_allocated[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','45104','','','','','200','1','0','','','0','0','0','0','0','0','0','81ef89fc751746ac8254a55a2b2e4ea7','0','2','0'), ('30382','18','','10310','Memory fragmentation bytes{#SINGLETON}','redis.memory.fragmentation_bytes[{#SINGLETON}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','45104','','','','','200','1','0','','','0','0','0','0','0','0','0','40a639acab5a415a8fb48b7520b7d198','0','2','0'), ('30383','18','','10310','Allocator RSS ratio{#SINGLETON}','redis.memory.allocator_rss_ratio[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','45104','','','','','200','1','0','','','0','0','0','0','0','0','0','643fe70e1a7f488196b053722a2df9c2','0','2','0'), ('30384','18','','10310','Allocator RSS bytes{#SINGLETON}','redis.memory.allocator_rss_bytes[{#SINGLETON}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','45104','','','','','200','1','0','','','0','0','0','0','0','0','0','b5ecad496c554ccaad495d2f112b5e2f','0','2','0'), ('30385','18','','10310','Allocator resident{#SINGLETON}','redis.memory.allocator_resident[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','45104','','','','','200','1','0','','','0','0','0','0','0','0','0','0abd6a9adb034536b3a389e0af2af732','0','2','0'), ('30386','18','','10310','Allocator fragmentation ratio{#SINGLETON}','redis.memory.allocator_frag_ratio[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','45104','','','','','200','1','0','','','0','0','0','0','0','0','0','690a13b13d134f648b4b8381f6a185f0','0','2','0'), ('30387','18','','10310','Allocator fragmentation bytes{#SINGLETON}','redis.memory.allocator_frag_bytes[{#SINGLETON}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','45104','','','','','200','1','0','','','0','0','0','0','0','0','0','23e034630d7246f7ba993d5c6db2d6bb','0','2','0'), ('30388','18','','10310','Memory used scripts{#SINGLETON}','redis.memory.used_memory_scripts[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','45104','','','','','200','1','0','','','0','0','0','0','0','0','0','e3733b2993cb4199bfac8b0711d4bb72','0','2','0'), ('30389','18','','10310','AOF base size{#SINGLETON}','redis.persistence.aof_base_size[{#SINGLETON}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'AOF file size on latest startup or rewrite','0','30d','0','','45103','','','','','200','1','0','','','0','0','0','0','0','0','0','e68a7b6931324bd79268a5151717505e','0','2','0'), ('30390','18','','10310','AOF buffer length{#SINGLETON}','redis.persistence.aof_buffer_length[{#SINGLETON}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Size of the AOF buffer','0','30d','0','','45103','','','','','200','1','0','','','0','0','0','0','0','0','0','875ace20e5c94044ae63f36d98ac6256','0','2','0'), ('30391','18','','10310','AOF current size{#SINGLETON}','redis.persistence.aof_current_size[{#SINGLETON}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'AOF current file size','0','30d','0','','45103','','','','','200','1','0','','','0','0','0','0','0','0','0','679bd919383a4106916a84fae5be47bb','0','2','0'), ('30392','18','','10310','AOF delayed fsync{#SINGLETON}','redis.persistence.aof_delayed_fsync[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Delayed fsync counter','0','30d','0','','45103','','','','','200','1','0','','','0','0','0','0','0','0','0','ff9955c770aa4e0883cc72bf1d762be7','0','2','0'), ('30393','18','','10310','AOF pending background I/O fsync{#SINGLETON}','redis.persistence.aof_pending_bio_fsync[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of fsync pending jobs in background I/O queue','0','30d','0','','45103','','','','','200','1','0','','','0','0','0','0','0','0','0','0606ef5762b04d91abba95269eb77ae2','0','2','0'), ('30394','18','','10310','AOF pending rewrite{#SINGLETON}','redis.persistence.aof_pending_rewrite[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,'144','','','0','','','','','2',NULL,'Flag indicating an AOF rewrite operation will','0','30d','0','','45103','','','','','200','1','0','','','0','0','0','0','0','0','0','194061b8ad6c484ca8c732d69eeb0f1e','0','2','0'), ('30395','18','','10310','AOF rewrite buffer length{#SINGLETON}','redis.persistence.aof_rewrite_buffer_length[{#SINGLETON}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Size of the AOF rewrite buffer','0','30d','0','','45103','','','','','200','1','0','','','0','0','0','0','0','0','0','1a39f5854ae948759deadac0ae57e9f7','0','2','0'), ('30396','18','','10310','Redis slave {#SLAVE_IP}:{#SLAVE_PORT}: Replication lag in bytes','redis.replication.lag_bytes["{#SLAVE_IP}:{#SLAVE_PORT}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Replication lag in bytes','0','30d','0','','45108','','','','','200','1','0','','','0','0','0','0','0','0','0','2d26ebb0a5024378b59b3f0ee8e7fff4','0','2','0'), ('30397','18','','10310','Master host{#SINGLETON}','redis.replication.master_host[{#SINGLETON}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Host or IP address of the master','0','30d','0','','45108','','','','','200','1','0','','','0','0','0','0','0','0','0','92e4b2133a6a4ec28e739bbef94ab992','0','2','0'), ('30398','18','','10310','Master last I/O seconds ago{#SINGLETON}','redis.replication.master_last_io_seconds_ago[{#SINGLETON}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of seconds since the last interaction with master','0','30d','0','','45108','','','','','200','1','0','','','0','0','0','0','0','0','0','0acbeb8633da41be9bfb56627a946fd9','0','2','0'), ('30399','18','','10310','Master link status{#SINGLETON}','redis.replication.master_link_status[{#SINGLETON}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Status of the link (up/down)','0','30d','0','','45108','','','','','200','1','0','','','0','0','0','0','0','0','0','8024463a9f644e6e91def5a0e88abd4b','0','2','0'), ('30400','18','','10310','Master port{#SINGLETON}','redis.replication.master_port[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Master listening TCP port','0','30d','0','','45108','','','','','200','1','0','','','0','0','0','0','0','0','0','da63a0b31bed47edaba3f802738fa4fd','0','2','0'), ('30401','18','','10310','Master sync in progress{#SINGLETON}','redis.replication.master_sync_in_progress[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicate the master is syncing to the replica','0','30d','0','','45108','','','','','200','1','0','','','0','0','0','0','0','0','0','6835a260e66741159ee10046265a1ea4','0','2','0'), ('30402','18','','10310','Slave priority{#SINGLETON}','redis.replication.slave_priority[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The priority of the instance as a candidate for failover','0','30d','0','','45108','','','','','200','1','0','','','0','0','0','0','0','0','0','3f92dfa07237495ca7696bb4b078eb93','0','2','0'), ('30403','18','','10310','Slave priority{#SINGLETON}','redis.replication.slave_read_only[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Flag indicating if the replica is read-only','0','30d','0','','45108','','','','','200','1','0','','','0','0','0','0','0','0','0','f38492a49f214ec8b71fdc51d243281e','0','2','0'), ('30404','18','','10310','Slave replication offset{#SINGLETON}','redis.replication.slave_repl_offset[{#SINGLETON}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The replication offset of the replica instance','0','30d','0','','45108','','','','','200','1','0','','','0','0','0','0','0','0','0','7eb23d1d96ea489c9e0b39b7839147bd','0','2','0'), ('30524','18','','10317','Replication Seconds Behind Master {#MASTER_HOST}','mysql.seconds_behind_master["{#MASTER_HOST}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of seconds the slave SQL thread has been behind processing the master binary log. A high number (or an increasing one) can indicate that the slave is unable to handle events from the master in a timely fashion.','0','30d','0','','30523','','','','','200','1','0','','','0','0','0','0','0','0','0','15f7b22867f54551afbed139d746e210','0','2','0'), ('30525','18','','10317','Replication Slave IO Running {#MASTER_HOST}','mysql.slave_io_running["{#MASTER_HOST}"]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Whether the I/O thread for reading the master''s binary log is running. Normally, you want this to be `Yes` unless you have not yet started a replication or have explicitly stopped it with `STOP SLAVE`.','0','30d','0','','30523','','','','','200','1','0','','','0','0','0','0','0','0','0','e063b116753d4124a88443fe4de20d41','0','2','0'), ('30526','18','','10317','Replication Slave SQL Running {#MASTER_HOST}','mysql.slave_sql_running["{#MASTER_HOST}"]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Whether the SQL thread for executing events in the relay log is running. As with the I/O thread, this should normally be `Yes`.','0','30d','0','','30523','','','','','200','1','0','','','0','0','0','0','0','0','0','113be79554c14c2aad08036febb15d71','0','2','0'), ('30718','18','','10322','ES {#ES.NODE}: Refresh thread pool active threads','es.node.thread_pool.refresh.active[{#ES.NODE}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of active threads in the refresh thread pool.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','14ea2732fbfc40ceaafadfff1830ac4d','0','2','0'), ('30719','18','','10322','ES {#ES.NODE}: Total number of query','es.node.indices.search.query_total[{#ES.NODE}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of query operations.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','7279b682fa3e4661a1600d6da25e0fc7','0','2','0'), ('30720','18','','10322','ES {#ES.NODE}: Rate of queries','es.node.indices.search.query.rate[{#ES.NODE}]','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of query operations per second.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','d347df9c9eee4aa89ccfb9147143b5d5','0','2','0'), ('30721','18','','10322','ES {#ES.NODE}: Amount of JVM heap committed','es.node.jvm.mem.heap_committed_in_bytes[{#ES.NODE}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of memory, in bytes, available for use by the heap.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','269cc21be4c94ba58a52b9fca9590632','0','2','0'), ('30722','18','','10322','ES {#ES.NODE}: Maximum JVM memory available for use','es.node.jvm.mem.heap_max_in_bytes[{#ES.NODE}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The maximum amount of memory, in bytes, available for use by the heap.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','7f205e21644a4f629e4a419c42670158','0','2','0'), ('30723','18','','10322','ES {#ES.NODE}: Amount of JVM heap currently in use','es.node.jvm.mem.heap_used_in_bytes[{#ES.NODE}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The memory, in bytes, currently in use by the heap.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','bb55c78c2aca49e49f6200e14c25dee8','0','2','0'), ('30724','18','','10322','ES {#ES.NODE}: Percent of JVM heap currently in use','es.node.jvm.mem.heap_used_percent[{#ES.NODE}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of memory currently in use by the heap.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','71fca039cad847da9623aaeb722168f1','0','2','0'), ('30725','18','','10322','ES {#ES.NODE}: Node uptime','es.node.jvm.uptime[{#ES.NODE}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'JVM uptime in seconds.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','3c2f512ae6ff4221a7de4e5dbff2ed48','0','2','0'), ('30726','18','','10322','ES {#ES.NODE}: Total available size','es.node.fs.total.available_in_bytes[{#ES.NODE}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of bytes available to this Java virtual machine on all file stores. Depending on OS or process level restrictions, this might appear less than fs.total.free_in_bytes. This is the actual amount of free disk space the Elasticsearch node can utilize.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','b4e87d039e9d4feeb03e0e33f14b2c82','0','2','0'), ('30727','18','','10322','ES {#ES.NODE}: Refresh thread pool executor tasks completed','es.node.thread_pool.refresh.completed.rate[{#ES.NODE}]','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of tasks completed by the refresh thread pool executor.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','b6496d2878914b06bf6301630b4609a8','0','2','0'), ('30728','18','','10322','ES {#ES.NODE}: Time spent performing query','es.node.indices.search.query_time[{#ES.NODE}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Time in seconds spent performing query operations for the last measuring span.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','ce807b641b0b4501b6a8e253d8403ce4','0','2','0'), ('30729','18','','10322','ES {#ES.NODE}: Refresh thread pool executor tasks rejected','es.node.thread_pool.refresh.rejected.rate[{#ES.NODE}]','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of tasks rejected by the refresh thread pool executor.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','593514af005044ce8e6207a5616270f2','0','2','0'), ('30730','18','','10322','ES {#ES.NODE}: Search thread pool active threads','es.node.thread_pool.search.active[{#ES.NODE}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of active threads in the search thread pool.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','63875f40cf7c4f8f842562be2adfb7c7','0','2','0'), ('30731','18','','10322','ES {#ES.NODE}: Search thread pool executor tasks completed','es.node.thread_pool.search.completed.rate[{#ES.NODE}]','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of tasks completed by the search thread pool executor.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','dc67ab311d4945aaae3347464785abb1','0','2','0'), ('30732','18','','10322','ES {#ES.NODE}: Search thread pool tasks in queue','es.node.thread_pool.search.queue[{#ES.NODE}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of tasks in queue for the search thread pool.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','d11933b62131425d83ab09c6d5fd5e85','0','2','0'), ('30733','18','','10322','ES {#ES.NODE}: Search thread pool executor tasks rejected','es.node.thread_pool.search.rejected.rate[{#ES.NODE}]','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of tasks rejected by the search thread pool executor.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','820ed330abc845919b1dada3cfa81387','0','2','0'), ('30734','18','','10322','ES {#ES.NODE}: Write thread pool active threads','es.node.thread_pool.write.active[{#ES.NODE}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of active threads in the write thread pool.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','4b7dc34d78a64b24a8fd19af95e0f0bd','0','2','0'), ('30735','18','','10322','ES {#ES.NODE}: Write thread pool executor tasks completed','es.node.thread_pool.write.completed.rate[{#ES.NODE}]','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of tasks completed by the write thread pool executor.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','5b5ac74702564bd490c7378adcf75c28','0','2','0'), ('30736','18','','10322','ES {#ES.NODE}: Write thread pool tasks in queue','es.node.thread_pool.write.queue[{#ES.NODE}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of tasks in queue for the write thread pool.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','a0d8f8d896a546d1ade07c355992308d','0','2','0'), ('30737','18','','10322','ES {#ES.NODE}: Refresh thread pool tasks in queue','es.node.thread_pool.refresh.queue[{#ES.NODE}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of tasks in queue for the refresh thread pool.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','4b748eeb937e45308e58d699b713cf01','0','2','0'), ('30738','18','','10322','ES {#ES.NODE}: Current query operations','es.node.indices.search.query_current[{#ES.NODE}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of query operations currently running.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','20fb738abf7a4aa1bf3ccb84790a26c9','0','2','0'), ('30739','18','','10322','ES {#ES.NODE}: Total time spent performing query','es.node.indices.search.query_time_in_millis[{#ES.NODE}]','0','31d','365d','0','3','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'Time in milliseconds spent performing query operations.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','7afc767463c64bbb9290975a8cef3cec','0','2','0'), ('30740','18','','10322','ES {#ES.NODE}: Time spent throttling operations','es.node.indices.indexing.throttle_time[{#ES.NODE}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Time in seconds spent throttling operations for the last measuring span.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','bb0cb2196b14483f8807a855f2f531a7','0','2','0'), ('30741','18','','10322','ES {#ES.NODE}: Number of open HTTP connections','es.node.http.current_open[{#ES.NODE}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of currently open HTTP connections for the node.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','2ba1fc7e2dad4d0ab1807221fb1e4fca','0','2','0'), ('30742','18','','10322','ES {#ES.NODE}: Rate of HTTP connections opened','es.node.http.opened.rate[{#ES.NODE}]','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of HTTP connections opened for the node per second.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','fcf163d5db9b455fa38823e8ad16e578','0','2','0'), ('30743','18','','10322','ES {#ES.NODE}: Total time spent on flushing indices to disk','es.node.indices.flush.total_time_in_millis[{#ES.NODE}]','0','31d','365d','0','3','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'Total time in milliseconds spent performing flush operations.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','7e18149dcaee47748e4073f4ce814c03','0','2','0'), ('30744','18','','10322','ES {#ES.NODE}: Total number of index flushes to disk','es.node.indices.flush.total[{#ES.NODE}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of flush operations.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','8e270dfff9c84d2a96a134dd6d86533b','0','2','0'), ('30745','18','','10322','ES {#ES.NODE}: Current indexing operations','es.node.indices.indexing.index_current[{#ES.NODE}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of indexing operations currently running.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','e91cc33c088a4f56a9176fd6a09f2411','0','2','0'), ('30746','18','','10322','ES {#ES.NODE}: Total time spent performing indexing','es.node.indices.indexing.index_time_in_millis[{#ES.NODE}]','0','31d','365d','0','3','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'Total time in milliseconds spent performing indexing operations.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','f471dad45ff149b09a479963cb616fc2','0','2','0'), ('30747','18','','10322','ES {#ES.NODE}: Total number of indexing','es.node.indices.indexing.index_total[{#ES.NODE}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of indexing operations.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','ad36b8495eca49c48e7d8a7877a325c2','0','2','0'), ('30748','18','','10322','ES {#ES.NODE}: Time spent throttling merge operations','es.node.indices.merges.total_throttled_time[{#ES.NODE}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Time in seconds spent throttling merge operations for the last measuring span.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','5f3b7dca802343cd905d54e66ac0e113','0','2','0'), ('30749','18','','10322','ES {#ES.NODE}: Total size','es.node.fs.total.total_in_bytes[{#ES.NODE}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total size (in bytes) of all file stores.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','4f315fdf62884b0284bf04f1a85aeb98','0','2','0'), ('30750','18','','10322','ES {#ES.NODE}: Time spent throttling recovery operations','es.node.indices.recovery.throttle_time[{#ES.NODE}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Time in seconds spent throttling recovery operations for the last measuring span.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','9c82da45a63947dd91a4e19e6f2d121d','0','2','0'), ('30751','18','','10322','ES {#ES.NODE}: Rate of index refreshes','es.node.indices.refresh.rate[{#ES.NODE}]','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of refresh operations per second.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','e27361fdce5a4635854960066ac050ca','0','2','0'), ('30752','18','','10322','ES {#ES.NODE}: Time spent performing refresh','es.node.indices.refresh.time[{#ES.NODE}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Time in seconds spent performing refresh operations for the last measuring span.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','fd20bbc5012d4c5693710b321e252193','0','2','0'), ('30753','18','','10322','ES {#ES.NODE}: Current fetch operations','es.node.indices.search.fetch_current[{#ES.NODE}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of fetch operations currently running.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','36b2ffa3ed9f4c9781ccded273c395d7','0','2','0'), ('30754','18','','10322','ES {#ES.NODE}: Total time spent performing fetch','es.node.indices.search.fetch_time_in_millis[{#ES.NODE}]','0','31d','365d','0','3','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'Time in milliseconds spent performing fetch operations.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','f35e3e9773394632b422dbc4e4442171','0','2','0'), ('30755','18','','10322','ES {#ES.NODE}: Time spent performing fetch','es.node.indices.search.fetch_time[{#ES.NODE}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Time in seconds spent performing fetch operations for the last measuring span.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','a10e7dca72c8411a9b7fdcbeb676017e','0','2','0'), ('30756','18','','10322','ES {#ES.NODE}: Total number of fetch','es.node.indices.search.fetch_total[{#ES.NODE}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of fetch operations.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','b3ac68f3531f478b9ad28fb1988df257','0','2','0'), ('30757','18','','10322','ES {#ES.NODE}: Rate of fetch','es.node.indices.search.fetch.rate[{#ES.NODE}]','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of fetch operations per second.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','6d3b074aecb44a08a3573aba0ff006f9','0','2','0'), ('30758','18','','10322','ES {#ES.NODE}: Write thread pool executor tasks rejected','es.node.thread_pool.write.rejected.rate[{#ES.NODE}]','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of tasks rejected by the write thread pool executor.','0','30d','0','','44721','','','','','200','1','0','','','0','0','0','0','0','0','0','a21213815a30485a88b183e7b40a4e7e','0','2','0'), ('30877','18','','10323','Dictionary {#NAME}: Bytes allocated','clickhouse.dictionary.bytes_allocated["{#NAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of RAM the dictionary uses.','0','30d','0','','45083','','','','','200','1','0','','','0','0','0','0','0','0','0','18cc050ff9c84d01ab61df1283fcce97','0','2','0'), ('30878','18','','10323','Dictionary {#NAME}: Element count','clickhouse.dictionary.element_count["{#NAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of items stored in the dictionary.','0','30d','0','','45083','','','','','200','1','0','','','0','0','0','0','0','0','0','fa4efa26e3f64fc89c9d7dad39a610ca','0','2','0'), ('30879','18','','10323','Dictionary {#NAME}: Load factor','clickhouse.dictionary.load_factor["{#NAME}"]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage filled in the dictionary (for a hashed dictionary, the percentage filled in the hash table).','0','30d','0','','45083','','','','','200','1','0','','','0','0','0','0','0','0','0','d9e333b7c1694ef482683679275dcd8d','0','2','0'), ('30880','18','','10323','{#DB}.{#TABLE}: Active replicas','clickhouse.replica.active_replicas["{#DB}.{#TABLE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of replicas of this table that have a session in ZooKeeper (i.e., the number of functioning replicas). (Have a non-zero value only where there is an active session with ZooKeeper).','0','30d','0','','45084','','','','','200','1','0','','','0','0','0','0','0','0','0','be577e21420244cb9d47c9fb9e23904a','0','2','0'), ('30881','18','','10323','{#DB}.{#TABLE}: Replica future parts','clickhouse.replica.future_parts["{#DB}.{#TABLE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of data parts that will appear as the result of INSERTs or merges that haven''t been done yet.','0','30d','0','','45084','','','','','200','1','0','','','0','0','0','0','0','0','0','0a84f6788b3f447d958e031df0e2301c','0','2','0'), ('30882','18','','10323','{#DB}.{#TABLE}: Replica queue inserts size','clickhouse.replica.inserts_in_queue["{#DB}.{#TABLE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of inserts of blocks of data that need to be made.','0','30d','0','','45084','','','','','200','1','0','','','0','0','0','0','0','0','0','6b49a71fcf244b8cb88e21423ac92ae2','0','2','0'), ('30883','18','','10323','{#DB}.{#TABLE}: Replica readonly','clickhouse.replica.is_readonly["{#DB}.{#TABLE}"]','0','31d','365d','0','3','','','','',NULL,'149','','','0','','','','','2',NULL,'Whether the replica is in read-only mode. This mode is turned on if the config doesn''t have sections with ZooKeeper, if an unknown error occurred when re-initializing sessions in ZooKeeper, and during session re-initialization in ZooKeeper.','0','30d','0','','45084','','','','','200','1','0','','','0','0','0','0','0','0','0','29977fdd52c64c4ca0b3565187365a0c','0','2','0'), ('30884','18','','10323','{#DB}.{#TABLE}: Replica session expired','clickhouse.replica.is_session_expired["{#DB}.{#TABLE}"]','0','31d','365d','0','3','','','','',NULL,'149','','','0','','','','','2',NULL,'True if the ZooKeeper session expired','0','30d','0','','45084','','','','','200','1','0','','','0','0','0','0','0','0','0','a889475b8ddf48109af3dd2b7ed58627','0','2','0'), ('30885','18','','10323','{#DB}.{#TABLE}: Replica lag','clickhouse.replica.lag["{#DB}.{#TABLE}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Difference between log_max_index and log_pointer','0','30d','0','','45084','','','','','200','1','0','','','0','0','0','0','0','0','0','8acd6e2195064708886d9944af264c32','0','2','0'), ('30886','18','','10323','{#DB}.{#TABLE}: Replica log max index','clickhouse.replica.log_max_index["{#DB}.{#TABLE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Maximum entry number in the log of general activity. (Have a non-zero value only where there is an active session with ZooKeeper).','0','30d','0','','45084','','','','','200','1','0','','','0','0','0','0','0','0','0','267603d761864e4cbf764558520ed83c','0','2','0'), ('30887','18','','10323','{#DB}.{#TABLE}: Replica log pointer','clickhouse.replica.log_pointer["{#DB}.{#TABLE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Maximum entry number in the log of general activity that the replica copied to its execution queue, plus one. (Have a non-zero value only where there is an active session with ZooKeeper).','0','30d','0','','45084','','','','','200','1','0','','','0','0','0','0','0','0','0','93bf89b0befa4c238f2143c1841ef629','0','2','0'), ('30888','18','','10323','{#DB}.{#TABLE}: Replica queue merges size','clickhouse.replica.merges_in_queue["{#DB}.{#TABLE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of merges waiting to be made.','0','30d','0','','45084','','','','','200','1','0','','','0','0','0','0','0','0','0','7b0da84f1e3f4705a209c6be025fc738','0','2','0'), ('30889','18','','10323','{#DB}.{#TABLE}: Replica parts to check','clickhouse.replica.parts_to_check["{#DB}.{#TABLE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of data parts in the queue for verification. A part is put in the verification queue if there is suspicion that it might be damaged.','0','30d','0','','45084','','','','','200','1','0','','','0','0','0','0','0','0','0','51a83465b90e4c82835030fec4f79b6f','0','2','0'), ('30890','18','','10323','{#DB}.{#TABLE}: Replica queue size','clickhouse.replica.queue_size["{#DB}.{#TABLE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Size of the queue for operations waiting to be performed.','0','30d','0','','45084','','','','','200','1','0','','','0','0','0','0','0','0','0','52ef1c26f14842868424f0c5bf81b35b','0','2','0'), ('30891','18','','10323','{#DB}.{#TABLE}: Total replicas','clickhouse.replica.total_replicas["{#DB}.{#TABLE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of known replicas of this table. (Have a non-zero value only where there is an active session with ZooKeeper).','0','30d','0','','45084','','','','','200','1','0','','','0','0','0','0','0','0','0','0fc2781f4be44f0e85176e5ed05dc05e','0','2','0'), ('30893','18','','10323','{#DB}.{#TABLE}: Bytes','clickhouse.table.bytes["{#DB}.{#TABLE}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Table size in bytes. Database: {#DB}, table: {#TABLE}','0','30d','0','','45085','','','','','200','1','0','','','0','0','0','0','0','0','0','3075954290af4f35b1620a5f15d2947d','0','2','0'), ('30894','18','','10323','{#DB}.{#TABLE}: Parts','clickhouse.table.parts["{#DB}.{#TABLE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of parts of the table. Database: {#DB}, table: {#TABLE}','0','30d','0','','45085','','','','','200','1','0','','','0','0','0','0','0','0','0','e50e12adb7ef47e6ba40db01e7ae01e4','0','2','0'), ('30895','18','','10323','{#DB}.{#TABLE}: Rows','clickhouse.table.rows["{#DB}.{#TABLE}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of rows in the table. Database: {#DB}, table: {#TABLE}','0','30d','0','','45085','','','','','200','1','0','','','0','0','0','0','0','0','0','0ba557c544854f47bcd9cc65d33f14e7','0','2','0'), ('31059','18','','10327','Average latch wait time base','mssql.average_latch_wait_time_base','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'For internal use only.','0','30d','0','','45095','','','','','200','1','0','','','0','0','0','0','0','0','0','f9d78cd9c941471287a24ca94005e9ac','0','2','0'), ('31060','18','','10327','Table lock escalations per second','mssql.table_lock_escalations.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times locks on a table were escalated to the TABLE or HoBT granularity.','0','30d','0','','45093','','','','','200','1','0','','','0','0','0','0','0','0','0','595aa3989b4e41cc8649827525adc0a0','0','2','0'), ('31061','18','','10327','Memory grants pending','mssql.memory_grants_pending','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Specifies the total number of processes waiting for a workspace memory grant.','0','30d','0','','45091','','','','','200','1','0','','','0','0','0','0','0','0','0','cb468e25c20f43f08fcefd45354ff882','0','2','0'), ('31062','18','','10327','Total lock requests per second that have deadlocks','mssql.number_deadlocks_sec.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of lock requests per second that resulted in a deadlock.','0','30d','0','','45092','','','','','200','1','0','','','0','0','0','0','0','0','0','18c0d77ded2b4533a559643006a93406','0','2','0'), ('31063','18','','10327','Errors per second (DB offline errors)','mssql.offline_errors_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors per second.','0','30d','0','','45089','','','','','200','1','0','','','0','0','0','0','0','0','0','bbb7fcac41b2403ab0b0c76f3437e81f','0','2','0'), ('31064','18','','10327','Page life expectancy','mssql.page_life_expectancy','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates the number of seconds a page will stay in the buffer pool without references.','0','30d','0','','45097','','','','','200','1','0','','','0','0','0','0','0','0','0','94a869db684046d9b65db9ee022a9c9e','0','2','0'), ('31065','18','','10327','Page lookups per second','mssql.page_lookups_sec.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates the number of requests per second to find a page in the buffer pool.','0','30d','0','','45097','','','','','200','1','0','','','0','0','0','0','0','0','0','628f787578e04b83882aca052a7f976a','0','2','0'), ('31066','18','','10327','Page reads per second','mssql.page_reads_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates the number of physical database page reads that are issued per second. This statistic displays the total number of physical page reads across all databases. As physical I/O is expensive, you may be able to minimize the cost either by using a larger data cache, intelligent indexes, and more efficient queries, or by changing the database design.','0','30d','0','','45097','','','','','200','1','0','','','0','0','0','0','0','0','0','433257a5dfe4488c8073db03bfb05315','0','2','0'), ('31067','18','','10327','Page splits per second','mssql.page_splits_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of page splits per second that occur as a result of overflowing index pages.','0','30d','0','','45093','','','','','200','1','0','','','0','0','0','0','0','0','0','fc3dd6a1bf1242769e2b58f25421a19d','0','2','0'), ('31068','18','','10327','Page writes per second','mssql.page_writes_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates the number of physical database page writes that are issued per second.','0','30d','0','','45097','','','','','200','1','0','','','0','0','0','0','0','0','0','a8b3639fe7b44d88a75e724c083518b5','0','2','0'), ('31069','18','','10327','Number of blocked processes','mssql.processes_blocked','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of currently blocked processes.','0','30d','0','','45090','','','','','200','1','0','','','0','0','0','0','0','0','0','5c0bee24f9494bb49860171ff875caf7','0','2','0'), ('31070','18','','10327','Read-ahead pages per second','mssql.readahead_pages_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates the number of pages read per second in anticipation of use.','0','30d','0','','45097','','','','','200','1','0','','','0','0','0','0','0','0','0','fc14b0c814234b12a3943eb0435cd28c','0','2','0'), ('31071','18','','10327','Safe auto-params per second','mssql.safe_autoparams_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of safe auto-parameterization attempts per second. Safe refers to a determination that a cached execution plan can be shared between different similar-looking Transact-SQL statements. SQL Server makes many auto-parameterization attempts, some of which turn out to be safe and others fail. Note that auto-parameterizations are also known as simple parameterizations in the newer versions of SQL Server. This does not include forced parameterizations.','0','30d','0','','45088','','','','','200','1','0','','','0','0','0','0','0','0','0','be47be0cbb924982aaf9573c5a233144','0','2','0'), ('31072','18','','10327','SQL compilations per second','mssql.sql_compilations_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of SQL compilations per second. Indicates the number of times the compile code path is entered. Includes runs caused by statement-level recompilations in SQL Server. After SQL Server user activity is stable, this value reaches a steady state.','0','30d','0','','45088','','','','','200','1','0','','','0','0','0','0','0','0','0','e9ea451a38424f6b9da59b8bbb068b51','0','2','0'), ('31073','18','','10327','SQL re-compilations per second','mssql.sql_recompilations_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of statement recompiles per second. Counts the number of times statement recompiles are triggered. Generally, you want the recompiles to be low.','0','30d','0','','45088','','','','','200','1','0','','','0','0','0','0','0','0','0','a72415acabda46309c4dbc692e026cc2','0','2','0'), ('31074','18','','10327','Target pages','mssql.target_pages','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The optimal number of pages in the buffer pool.','0','30d','0','','45097','','','','','200','1','0','','','0','0','0','0','0','0','0','37269b33e05349a1bfd05e4e493da6d4','0','2','0'), ('31075','18','','10327','Maximum workspace memory','mssql.maximum_workspace_memory','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates the maximum amount of memory available for executing processes, such as hash, sort, bulk copy, and index creation operations.','0','30d','0','','45091','','','','','200','1','0','','','0','0','0','0','0','0','0','28c1045fb77249aea23f55f48dd89c69','0','2','0'), ('31076','18','','10327','Target server memory','mssql.target_server_memory','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates the ideal amount of memory the server can consume.','0','30d','0','','45091','','','','','200','1','0','','','0','0','0','0','0','0','0','2679f7e843e549ce9468f6cab05a71d5','0','2','0'), ('31077','18','','10327','Total latch wait time','mssql.total_latch_wait_time','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'Total latch wait time (in milliseconds) for latch requests in the last second. This value should stay stable compared to the number of latch waits per second.','0','30d','0','','45095','','','','','200','1','0','','','0','0','0','0','0','0','0','8c7d63f3689f464394a6035a3cad4009','0','2','0'), ('31078','18','','10327','Total server memory','mssql.total_server_memory','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Specifies the amount of memory the server has committed using the memory manager.','0','30d','0','','45091','','','','','200','1','0','','','0','0','0','0','0','0','0','9112ed9b9d3741018d40f2dc892fa0f6','0','2','0'), ('31080','18','','10327','Total transactions per second','mssql.transactions_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of transactions started for all databases per second.','0','30d','0','','45094','','','','','200','1','0','','','0','0','0','0','0','0','0','127e1f73ce414eeb87d2cbfef46ccdef','0','2','0'), ('31081','18','','10327','Unsafe auto-params per second','mssql.unsafe_autoparams_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of unsafe auto-parameterization attempts per second. For example, the query has some characteristics that prevent the cached plan from being shared. These are designated as unsafe. This does not count the number of forced parameterizations.','0','30d','0','','45088','','','','','200','1','0','','','0','0','0','0','0','0','0','ef6450dfcb9a476ca1bf97524e05d43d','0','2','0'), ('31083','18','','10327','Number of users connected','mssql.user_connections','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of users connected to MSSQL Server.','0','30d','0','','45090','','','','','200','1','0','','','0','0','0','0','0','0','0','4e13bfc5927a421fb2996eec7e013448','0','2','0'), ('31084','18','','10327','Errors per second (User errors)','mssql.user_errors_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors per second.','0','30d','0','','45089','','','','','200','1','0','','','0','0','0','0','0','0','0','5942cad838e8430a9ff71293dec52af8','0','2','0'), ('31086','18','','10327','Work files created per second','mssql.workfiles_created_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of work files created per second. For example, work files can be used to store temporary results for hash joins and hash aggregates.','0','30d','0','','45093','','','','','200','1','0','','','0','0','0','0','0','0','0','ea84affd97864dfaad7edf31e16e1300','0','2','0'), ('31087','18','','10327','Work tables created per second','mssql.worktables_created_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of work tables created per second. For example, work tables can be used to store temporary results for query spool, LOB variables, XML variables, and cursors.','0','30d','0','','45093','','','','','200','1','0','','','0','0','0','0','0','0','0','a38e7fdf994842558227dfad03e9943b','0','2','0'), ('31088','18','','10327','Worktables from cache ratio','mssql.worktables_from_cache_ratio','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of work tables created where the initial two pages of the work table were not allocated but were immediately available from the work table cache.','0','30d','0','','45093','','','','','200','1','0','','','0','0','0','0','0','0','0','d93779b26c1a4784be31d32130eebf92','0','2','0'), ('31089','18','','10327','Memory grants outstanding','mssql.memory_grants_outstanding','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Specifies the total number of processes that have successfully acquired a workspace memory grant.','0','30d','0','','45091','','','','','200','1','0','','','0','0','0','0','0','0','0','d39c5f2b89de4bc88c7724a8e2b270d7','0','2','0'), ('31090','18','','10327','Logouts per second','mssql.logouts_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of logout operations started per second. Any value over 2 may indicate insufficient connection pooling.','0','30d','0','','45090','','','','','200','1','0','','','0','0','0','0','0','0','0','cf4af2cbeaff42b2a71c91544286998f','0','2','0'), ('31091','18','','10327','Average latch wait time raw','mssql.average_latch_wait_time_raw','0','31d','365d','0','3','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'Average latch wait time (in milliseconds) for latch requests that had to wait.','0','30d','0','','45095','','','','','200','1','0','','','0','0','0','0','0','0','0','7248e70669674ef5a7a85deb20b1fe8e','0','2','0'), ('31092','18','','10327','Forwarded records per second','mssql.forwarded_records_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of records per second fetched through forwarded record pointers.','0','30d','0','','45093','','','','','200','1','0','','','0','0','0','0','0','0','0','cee8f4d47d41463299c50b5c7925a650','0','2','0'), ('31093','18','','10327','Total average wait time base','mssql.average_wait_time_base','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'For internal use only.','0','30d','0','','45092','','','','','200','1','0','','','0','0','0','0','0','0','0','2a63096aa40a4374bdd7426b9fe0767e','0','2','0'), ('31094','18','','10327','Total average wait time raw','mssql.average_wait_time_raw','0','31d','365d','0','3','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'Average amount of wait time (in milliseconds) for each lock request that resulted in a wait. Information for all locks.','0','30d','0','','45092','','','','','200','1','0','','','0','0','0','0','0','0','0','f0cd7858dabf4b7da93314dc9a8ddeaa','0','2','0'), ('31095','18','','10327','Batch requests per second','mssql.batch_requests_sec.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of Transact-SQL command batches received per second. This statistic is affected by all constraints (such as I/O, number of users, cache size, complexity of requests, and so on). High batch requests mean good throughput.','0','30d','0','','45088','','','','','200','1','0','','','0','0','0','0','0','0','0','00b6e46811fd43a396e2a38dd976d220','0','2','0'), ('31096','18','','10327','Buffer cache hit ratio','mssql.buffer_cache_hit_ratio','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates the percentage of pages found in the buffer cache without having to read from the disk. The ratio is the total number of cache hits divided by the total number of cache lookups over the last few thousand page accesses. After a long period of time, the ratio changes very little. Since reading from the cache is much less expensive than reading from the disk, a higher value is preferred for this item. To increase the buffer cache hit ratio, consider increasing the amount of memory available to MSSQL Server or using the buffer pool extension feature.','0','30d','0','','45097','','','','','200','1','0','','','0','0','0','0','0','0','0','ed950d204a1f40a6925856828c7807aa','0','2','0'), ('31097','18','','10327','Cache hit ratio','mssql.cache_hit_ratio','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Ratio between cache hits and lookups.','0','30d','0','','45096','','','','','200','1','0','','','0','0','0','0','0','0','0','1900fc83a4d74c599f5f3438450b5d8b','0','2','0'), ('31098','18','','10327','Cache object counts','mssql.cache_object_counts','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of cache objects in the cache.','0','30d','0','','45096','','','','','200','1','0','','','0','0','0','0','0','0','0','de8c0d7f9c0b42438560dc28e47fdd19','0','2','0'), ('31099','18','','10327','Cache objects in use','mssql.cache_objects_in_use','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of cache objects in use.','0','30d','0','','45096','','','','','200','1','0','','','0','0','0','0','0','0','0','064e1279ae0a4260ab02c08cd3c3f77d','0','2','0'), ('31100','18','','10327','Cache pages','mssql.cache_pages','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of 8-kilobyte (KB) pages used by cache objects.','0','30d','0','','45096','','','','','200','1','0','','','0','0','0','0','0','0','0','ae2d22cd04ed452dbdb04ae3f71b8586','0','2','0'), ('31101','18','','10327','Checkpoint pages per second','mssql.checkpoint_pages_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates the number of pages flushed to the disk per second by a checkpoint or other operation which required all dirty pages to be flushed.','0','30d','0','','45097','','','','','200','1','0','','','0','0','0','0','0','0','0','d72b6aadab0c4d6d83bc72da0ce661c3','0','2','0'), ('31102','18','','10327','Total data file size','mssql.data_files_size','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total size of all data files.','0','30d','0','','45094','','','','','200','1','0','','','0','0','0','0','0','0','0','871e3520aac84c18bcaf2f3a0d565b79','0','2','0'), ('31103','18','','10327','Database pages','mssql.database_pages','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates the number of pages in the buffer pool with database content.','0','30d','0','','45097','','','','','200','1','0','','','0','0','0','0','0','0','0','9c1ca822375644669821fe1bea4c5f2a','0','2','0'), ('31104','18','','10327','Total errors per second','mssql.errors_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors per second.','0','30d','0','','45089','','','','','200','1','0','','','0','0','0','0','0','0','0','4cdecc74a6e44b57b17f44988d3ffa21','0','2','0'), ('31105','18','','10327','Failed auto-params per second','mssql.failed_autoparams_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of failed auto-parameterization attempts per second. This number should be small. Note that auto-parameterizations are also known as simple parameterizations in the newer versions of SQL Server.','0','30d','0','','45088','','','','','200','1','0','','','0','0','0','0','0','0','0','5ed7f6931c42424f8ec3dbe2e6c46f03','0','2','0'), ('31106','18','','10327','Free list stalls per second','mssql.free_list_stalls_sec.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates the number of requests per second that had to wait for a free page.','0','30d','0','','45097','','','','','200','1','0','','','0','0','0','0','0','0','0','22d1a41352c4477ba3db5d1a9e038597','0','2','0'), ('31107','18','','10327','Logins per second','mssql.logins_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of logins started per second. This does not include pooled connections. Any value over 2 may indicate insufficient connection pooling.','0','30d','0','','45090','','','','','200','1','0','','','0','0','0','0','0','0','0','c7856bdb5285421cb79cec0782fa1188','0','2','0'), ('31108','18','','10327','Full scans per second','mssql.full_scans_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of unrestricted full scans per second. These can be either base-table or full-index scans. Values greater than 1 or 2 indicate that there are table / index page scans. If that is combined with high CPU, this counter requires further investigation, otherwise, if the full scans are on small tables, it can be ignored.','0','30d','0','','45093','','','','','200','1','0','','','0','0','0','0','0','0','0','ace67686bb93456c80b40be1f33c173f','0','2','0'), ('31109','18','','10327','Granted Workspace Memory','mssql.granted_workspace_memory','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Specifies the total amount of memory currently granted to executing processes, such as hash, sort, bulk copy, and index creation operations.','0','30d','0','','45091','','','','','200','1','0','','','0','0','0','0','0','0','0','f2539791f65a40569bcf6b1c89647904','0','2','0'), ('31110','18','','10327','Index searches per second','mssql.index_searches_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of index searches per second. These are used to start a range scan, reposition a range scan, revalidate a scan point, fetch a single index record, and search down the index to locate where to insert a new row.','0','30d','0','','45093','','','','','200','1','0','','','0','0','0','0','0','0','0','585f1a22108143d8b39337900da8860c','0','2','0'), ('31111','18','','10327','Errors per second (Info errors)','mssql.info_errors_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors per second.','0','30d','0','','45089','','','','','200','1','0','','','0','0','0','0','0','0','0','eafdabca35bd40a58432dd36a210a4e4','0','2','0'), ('31112','18','','10327','Errors per second (Kill connection errors)','mssql.kill_connection_errors_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors per second.','0','30d','0','','45089','','','','','200','1','0','','','0','0','0','0','0','0','0','b68d1f8108d7494b9d4d891911708c72','0','2','0'), ('31113','18','','10327','Latch waits per second','mssql.latch_waits_sec.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of latch requests that could not be granted immediately. Latches are lightweight means of holding a very transient server resource, such as an address in memory.','0','30d','0','','45095','','','','','200','1','0','','','0','0','0','0','0','0','0','c1242c5530654057bca59cb9ad12c319','0','2','0'), ('31114','18','','10327','Lazy writes per second','mssql.lazy_writes_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates the number of buffers written per second by the buffer manager''s lazy writer. The lazy writer is a system process that flushes out batches of dirty, aged buffers (buffers that contain changes that must be written back to the disk before the buffer can be reused for a different page) and makes them available to user processes. The lazy writer eliminates the need to perform frequent checkpoints in order to create available buffers.','0','30d','0','','45097','','','','','200','1','0','','','0','0','0','0','0','0','0','66cc84326bd146ac89f91ddeaa61f63a','0','2','0'), ('31115','18','','10327','Total lock requests per second','mssql.lock_requests_sec.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of new locks and lock conversions per second requested from the lock manager.','0','30d','0','','45092','','','','','200','1','0','','','0','0','0','0','0','0','0','1b4c71c016504eb08b1a49146095c231','0','2','0'), ('31116','18','','10327','Total lock requests per second that timed out','mssql.lock_timeouts_sec.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of timed out lock requests per second, including requests for NOWAIT locks.','0','30d','0','','45092','','','','','200','1','0','','','0','0','0','0','0','0','0','0ac1aab7013249c6a0beb89217bf52c6','0','2','0'), ('31117','18','','10327','Lock wait time','mssql.lock_wait_time','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'Average of total wait time (in milliseconds) for locks in the last second.','0','30d','0','','45092','','','','','200','1','0','','','0','0','0','0','0','0','0','bf4ef99559f94147b9b64144f6b795c0','0','2','0'), ('31118','18','','10327','Total lock requests per second that required waiting','mssql.lock_waits_sec.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of lock requests per second that required the caller to wait.','0','30d','0','','45092','','','','','200','1','0','','','0','0','0','0','0','0','0','77be28b4732d4665a4e880f2ea309245','0','2','0'), ('31119','18','','10327','Total log file size','mssql.log_files_size','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total size of all the transaction log files.','0','30d','0','','45094','','','','','200','1','0','','','0','0','0','0','0','0','0','e0620ce52e6d4269b9d12e82c749a146','0','2','0'), ('31120','18','','10327','Auto-param attempts per second','mssql.autoparam_attempts_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of auto-parameterization attempts per second. The total should be the sum of the failed, safe, and unsafe auto-parameterizations. Auto-parameterization occurs when an instance of SQL Server tries to parameterize a Transact-SQL request by replacing some literals with parameters so that reuse of the resulting cached execution plan across multiple similar-looking requests is possible. Note that auto-parameterizations are also known as simple parameterizations in the newer versions of SQL Server. This counter does not include forced parameterizations.','0','30d','0','','45088','','','','','200','1','0','','','0','0','0','0','0','0','0','9a83826b50ac4928b9a716cf94ed6b61','0','2','0'), ('31121','18','','10327','Total log file used size','mssql.log_files_used_size','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The cumulative size of all the log files in the database.','0','30d','0','','45094','','','','','200','1','0','','','0','0','0','0','0','0','0','636e7c85a79947a39f7b176e8e3c5b82','0','2','0'), ('31137','18','','10327','MSSQL DB ''{#DBNAME}'': Active transactions','mssql.db.active_transactions["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of active transactions for the database.','0','30d','0','','45099','','','','','200','1','0','','','0','0','0','0','0','0','0','f4f218f22d6d48419260003880b38abd','0','2','0'), ('31138','18','','10327','MSSQL DB ''{#DBNAME}'': Data file size','mssql.db.data_files_size["{#DBNAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Cumulative size of all the data files in the database including any automatic growth. Monitoring this counter is useful, for example, for determining the correct size of `tempdb`.','0','30d','0','','45099','','','','','200','1','0','','','0','0','0','0','0','0','0','ff3916f807784639a1821229d4d722d8','0','2','0'), ('31139','18','','10327','MSSQL DB ''{#DBNAME}'': Log bytes flushed per second','mssql.db.log_bytes_flushed_sec.rate["{#DBNAME}"]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of log bytes flushed per second. Useful for determining trends and utilization of the transaction log.','0','30d','0','','45099','','','','','200','1','0','','','0','0','0','0','0','0','0','0d7bdf4c18fa49e79926e6f6d078d50f','0','2','0'), ('31140','18','','10327','MSSQL DB ''{#DBNAME}'': Log file size','mssql.db.log_files_size["{#DBNAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Cumulative size of all the transaction log files in the database.','0','30d','0','','45099','','','','','200','1','0','','','0','0','0','0','0','0','0','85536311e68047a6a8bf13c51c8d0647','0','2','0'), ('31141','18','','10327','MSSQL DB ''{#DBNAME}'': Log file used size','mssql.db.log_files_used_size["{#DBNAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Cumulative size of all the log files in the database.','0','30d','0','','45099','','','','','200','1','0','','','0','0','0','0','0','0','0','75fd2f42e274471c97cb23dc740863b8','0','2','0'), ('31142','18','','10327','MSSQL DB ''{#DBNAME}'': Log flush wait time','mssql.db.log_flush_wait_time["{#DBNAME}"]','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'Total wait time (in milliseconds) to flush the log. On an Always On secondary database, this value indicates the wait time for log records to be hardened to disk.','0','30d','0','','45099','','','','','200','1','0','','','0','0','0','0','0','0','0','f1abdb0800534f6bbf9f1403e7dea9e4','0','2','0'), ('31143','18','','10327','MSSQL DB ''{#DBNAME}'': Log flush waits per second','mssql.db.log_flush_waits_sec.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of commits per second waiting for the log flush.','0','30d','0','','45099','','','','','200','1','0','','','0','0','0','0','0','0','0','5404c8682b294a06a3027dc10d0b43fc','0','2','0'), ('31144','18','','10327','MSSQL DB ''{#DBNAME}'': Log flushes per second','mssql.db.log_flushes_sec.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of log flushes per second.','0','30d','0','','45099','','','','','200','1','0','','','0','0','0','0','0','0','0','c10b6f364aa547d8b4abe431ae27d70b','0','2','0'), ('31145','18','','10327','MSSQL DB ''{#DBNAME}'': Log growths','mssql.db.log_growths["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of times the transaction log for the database has been expanded.','0','30d','0','','45099','','','','','200','1','0','','','0','0','0','0','0','0','0','fdb24058e54243e8b5a888ec40d506e9','0','2','0'), ('31146','18','','10327','MSSQL DB ''{#DBNAME}'': Log shrinks','mssql.db.log_shrinks["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of times the transaction log for the database has been shrunk.','0','30d','0','','45099','','','','','200','1','0','','','0','0','0','0','0','0','0','a1a96d8bfef740ec9c8eadd9704ab605','0','2','0'), ('31147','18','','10327','MSSQL DB ''{#DBNAME}'': Log truncations','mssql.db.log_truncations["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of times the transaction log has been shrunk.','0','30d','0','','45099','','','','','200','1','0','','','0','0','0','0','0','0','0','26d1515df1be450e861e4f7a9f76b03d','0','2','0'), ('31148','18','','10327','MSSQL DB ''{#DBNAME}'': Percent log used','mssql.db.percent_log_used["{#DBNAME}"]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Percentage of log space in use.','0','30d','0','','45099','','','','','200','1','0','','','0','0','0','0','0','0','0','9f9cda56992841408ab8307b7019b76f','0','2','0'), ('31149','18','','10327','MSSQL DB ''{#DBNAME}'': State','mssql.db.state["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,'154','','','0','','','','','2',NULL,'0 = Online 1 = Restoring 2 = Recovering | SQL Server 2008 and later 3 = Recovery_pending | SQL Server 2008 and later 4 = Suspect 5 = Emergency | SQL Server 2008 and later 6 = Offline | SQL Server 2008 and later 7 = Copying | Azure SQL Database Active Geo-Replication 10 = Offline_secondary | Azure SQL Database Active Geo-Replication','0','30d','0','','45099','','','','','200','1','0','','','0','0','0','0','0','0','0','fe7d7c3e0aab43d79c00eaceb39c8c6c','0','2','0'), ('31150','18','','10327','MSSQL DB ''{#DBNAME}'': Transactions per second','mssql.db.transactions_sec.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of transactions started for the database per second.','0','30d','0','','45099','','','','','200','1','0','','','0','0','0','0','0','0','0','267b1d54c40641f5aeb4e3e7adfa4680','0','2','0'), ('31338','18','','10329','DB [{#DBNAME}]: Tuples returned per second','pgsql.dbstat.tup_returned.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of rows returned by queries in this database per second.','0','30d','0','','45509','','','','','200','1','0','','','0','0','0','0','0','0','0','175c5051ef0c4a31b76270cacbdd7ed5','0','2','0'), ('31339','18','','10329','DB [{#DBNAME}]: Num of shareupdateexclusive locks','pgsql.locks.shareupdateexclusive["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of shareupdateexclusive locks for this database.','0','30d','0','','45508','','','','','200','1','0','','','0','0','0','0','0','0','0','04e6cec0423f4dddb09e6643561bdf77','0','2','0'), ('31340','18','','10329','DB [{#DBNAME}]: Num of sharerowexclusive locks','pgsql.locks.sharerowexclusive["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of total sharerowexclusive for this database.','0','30d','0','','45508','','','','','200','1','0','','','0','0','0','0','0','0','0','15eb93e90c1241a99aaff834d69cc5be','0','2','0'), ('31341','18','','10329','DB [{#DBNAME}]: Num of share locks','pgsql.locks.share["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of share locks for this database.','0','30d','0','','45508','','','','','200','1','0','','','0','0','0','0','0','0','0','8a410cf1f0be41fbb5a976f368f07430','0','2','0'), ('31342','18','','10329','DB [{#DBNAME}]: Num of rowshare locks','pgsql.locks.rowshare["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of rowshare locks for this database.','0','30d','0','','45508','','','','','200','1','0','','','0','0','0','0','0','0','0','b4b1402b99284f3bbf0ac0dff493449f','0','2','0'), ('31343','18','','10329','DB [{#DBNAME}]: Num of rowexclusive locks','pgsql.locks.rowexclusive["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of rowexclusive locks for this database.','0','30d','0','','45508','','','','','200','1','0','','','0','0','0','0','0','0','0','b1ccea7698264d768da1299ec9d13738','0','2','0'), ('31344','18','','10329','DB [{#DBNAME}]: Num of exclusive locks','pgsql.locks.exclusive["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of exclusive locks for this database.','0','30d','0','','45508','','','','','200','1','0','','','0','0','0','0','0','0','0','3c754430815f411e9aa8dde593f6333a','0','2','0'), ('31345','18','','10329','DB [{#DBNAME}]: Num of accessshare locks','pgsql.locks.accessshare["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of accessshare locks for this database.','0','30d','0','','45508','','','','','200','1','0','','','0','0','0','0','0','0','0','5f783de0d6124fc0ae14522a4ad89189','0','2','0'), ('31346','18','','10329','DB [{#DBNAME}]: Num of accessexclusive locks','pgsql.locks.accessexclusive["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of accessexclusive locks for this database.','0','30d','0','','45508','','','','','200','1','0','','','0','0','0','0','0','0','0','8eb2bd907a0e4385bcac9e0f467f9748','0','2','0'), ('31347','18','','10329','DB [{#DBNAME}]: Rollbacks per second','pgsql.dbstat.xact_rollback.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of transactions in this database that have been rolled back.','0','30d','0','','45509','','','','','200','1','0','','','0','0','0','0','0','0','0','1d280198e31649fcb053d4c87a0e869d','0','2','0'), ('31348','18','','10329','DB [{#DBNAME}]: Commits per second','pgsql.dbstat.xact_commit.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of transactions in this database that have been committed per second.','0','30d','0','','45509','','','','','200','1','0','','','0','0','0','0','0','0','0','5b0ecb9c928c49a6a01b5df6aec931dd','0','2','0'), ('31349','18','','10329','DB [{#DBNAME}]: Tuples updated per second','pgsql.dbstat.tup_updated.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of rows updated by queries in this database per second.','0','30d','0','','45509','','','','','200','1','0','','','0','0','0','0','0','0','0','9888b495d3f04cceb373c341bd4f1941','0','2','0'), ('31350','18','','10329','DB [{#DBNAME}]: Tuples fetched per second','pgsql.dbstat.tup_fetched.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of rows fetched by queries in this database per second.','0','30d','0','','45509','','','','','200','1','0','','','0','0','0','0','0','0','0','a512a7a075244ccb90ab6824125a405e','0','2','0'), ('31351','18','','10329','DB [{#DBNAME}]: Tuples inserted per second','pgsql.dbstat.tup_inserted.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of rows inserted by queries in this database per second.','0','30d','0','','45509','','','','','200','1','0','','','0','0','0','0','0','0','0','2f24c195df5842f1bdf65a11dea3a315','0','2','0'), ('31352','18','','10329','DB [{#DBNAME}]: Tuples deleted per second','pgsql.dbstat.tup_deleted.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of rows deleted by queries in this database per second.','0','30d','0','','45509','','','','','200','1','0','','','0','0','0','0','0','0','0','cf288751fb894e5291b2d539b4c1a6a1','0','2','0'), ('31353','18','','10329','DB [{#DBNAME}]: Temp_files created per second','pgsql.dbstat.temp_files.rate["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of temporary files created by queries in this database.','0','30d','0','','45509','','','','','200','1','0','','','0','0','0','0','0','0','0','480ffc23ca8d41e3ac86bb162007065f','0','2','0'), ('31354','18','','10329','DB [{#DBNAME}]: Temp_bytes written per second','pgsql.dbstat.temp_bytes.rate["{#DBNAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total amount of data written to temporary files by queries in this database.','0','30d','0','','45509','','','','','200','1','0','','','0','0','0','0','0','0','0','82a2f4b2dc4f4dfe9a0a42144f603a8a','0','2','0'), ('31355','18','','10329','DB [{#DBNAME}]: Backends connected','pgsql.dbstat.numbackends["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of backends currently connected to this database.','0','30d','0','','45509','','','','','200','1','0','','','0','0','0','0','0','0','0','2e31986867d24bca930d141cc5d9cc0f','0','2','0'), ('31356','18','','10329','DB [{#DBNAME}]: Detected deadlocks per second','pgsql.dbstat.deadlocks.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of detected deadlocks in this database per second.','0','30d','0','','45509','','','','','200','1','0','','','0','0','0','0','0','0','0','d53da0cc702f4fe381e4d13d454ec229','0','2','0'), ('31357','18','','10329','DB [{#DBNAME}]: Detected conflicts per second','pgsql.dbstat.conflicts.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of queries canceled due to conflicts with recovery in this database per second.','0','30d','0','','45509','','','','','200','1','0','','','0','0','0','0','0','0','0','4eb67f16bc2948a7927ed58c9d037466','0','2','0'), ('31358','18','','10329','DB [{#DBNAME}]: Checksum failures','pgsql.dbstat.checksum_failures.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,'1097','','','0','','','','','2',NULL,'Number of data page checksum failures detected in this database.','0','30d','0','','45509','','','','','200','1','0','','','0','0','0','0','0','0','0','d44335162082498bbc42e29e938a4de7','0','2','0'), ('31359','18','','10329','DB [{#DBNAME}]: Disk blocks read per second','pgsql.dbstat.blks_read.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of disk blocks read per second in this database.','0','30d','0','','45509','','','','','200','1','0','','','0','0','0','0','0','0','0','841496e662cc43cf8db7728e96fcba76','0','2','0'), ('31360','18','','10329','DB [{#DBNAME}]: Blocks hit per second','pgsql.dbstat.blks_hit.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of times per second disk blocks were found already in the buffer cache, so that a read was not necessary.','0','30d','0','','45509','','','','','200','1','0','','','0','0','0','0','0','0','0','4b1b1a4374c0429cb1790e774f181512','0','2','0'), ('31361','18','','10329','DB [{#DBNAME}]: Disk blocks write time','pgsql.dbstat.blk_write_time.rate["{#DBNAME}"]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Time spent writing data file blocks by backends per second.','0','30d','0','','45509','','','','','200','1','0','','','0','0','0','0','0','0','0','e746a7760d554a0e9d41ba01c3be9db5','0','2','0'), ('31362','18','','10329','DB [{#DBNAME}]: Disk blocks read time per second','pgsql.dbstat.blk_read_time.rate["{#DBNAME}"]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Time spent reading data file blocks by backends per second.','0','30d','0','','45509','','','','','200','1','0','','','0','0','0','0','0','0','0','0313d02ce8274bc9bcaee54d062300c8','0','2','0'), ('31363','18','','10329','DB [{#DBNAME}]: Num of locks total','pgsql.locks.total["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of locks in this database.','0','30d','0','','45508','','','','','200','1','0','','','0','0','0','0','0','0','0','a982064d710644db85ebc1cde67bfe4d','0','2','0'), ('31807','18','','10336','IAX trunk "{#OBJECTNAME}": Active channels','asterisk.iax.trunk.active_channels[{#OBJECTNAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of active IAX trunk channels.','0','30d','0','','45814','','','','','200','1','0','','','0','0','0','0','0','0','0','72d71ec4fa2b4e88a03d25e3bbe8771a','0','2','0'), ('31808','18','','10336','IAX trunk "{#OBJECTNAME}": Status','asterisk.iax.trunk.status[{#OBJECTNAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'IAX trunk status. Here are the possible states that a device state may have: Unmonitored UNKNOWN UNREACHABLE OK','0','30d','0','','45814','','','','','200','1','0','','','0','0','0','0','0','0','0','bbde7e898b4b4d34b27308d6ddaf86fc','0','2','0'), ('31809','18','','10336','PJSIP trunk "{#OBJECTNAME}": Active channels','asterisk.pjsip.trunk.active_channels[{#OBJECTNAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of active PJSIP trunk channels.','0','30d','0','','45815','','','','','200','1','0','','','0','0','0','0','0','0','0','ec8220a1aa814112908337a009f6fcac','0','2','0'), ('31810','18','','10336','PJSIP trunk "{#OBJECTNAME}": Device state','asterisk.pjsip.trunk.devicestate[{#OBJECTNAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'PJSIP trunk status. Here are the possible states that a device state may have: Unavailable Not in use In use','0','30d','0','','45815','','','','','200','1','0','','','0','0','0','0','0','0','0','c364b2ac50344372b155cbb98d9a7afe','0','2','0'), ('31811','18','','10336','"{#QUEUE}": Available','asterisk.queue.available[{#QUEUE}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of available queue members.','0','30d','0','','45816','','','','','200','1','0','','','0','0','0','0','0','0','0','c16d9df72ba749369726d4cfcc8b4f40','0','2','0'), ('31812','18','','10336','"{#QUEUE}": Callers','asterisk.queue.callers[{#QUEUE}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number incoming calls in queue.','0','30d','0','','45816','','','','','200','1','0','','','0','0','0','0','0','0','0','c271c7d76b2e49dea386bb08d60307d0','0','2','0'), ('31813','18','','10336','"{#QUEUE}": Logged in','asterisk.queue.loggedin[{#QUEUE}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of queue members.','0','30d','0','','45816','','','','','200','1','0','','','0','0','0','0','0','0','0','8319ec55cf6f4e8590f180f1a81f37ed','0','2','0'), ('31814','18','','10336','SIP trunk "{#OBJECTNAME}": Active channels','asterisk.sip.trunk.active_channels[{#OBJECTNAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of active SIP trunk channels.','0','30d','0','','45817','','','','','200','1','0','','','0','0','0','0','0','0','0','9043578864494b13b249ee7bdf13820d','0','2','0'), ('31815','18','','10336','SIP trunk "{#OBJECTNAME}": Status','asterisk.sip.trunk.status[{#OBJECTNAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'SIP trunk status. Here are the possible states that a device state may have: Unmonitored UNKNOWN UNREACHABLE OK','0','30d','0','','45817','','','','','200','1','0','','','0','0','0','0','0','0','0','df33da749e874f55be5f0c33cd201f62','0','2','0'), ('32408','18','','10357','DB [{#DBNAME}]: Detected conflicts per second','pgsql.dbstat.conflicts.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of queries canceled due to conflicts with recovery in this database per second.','0','30d','0','','45506','','','','','200','1','0','','','0','0','0','0','0','0','0','a76f6d28995441ff9fe28bbc09445e64','0','2','0'), ('32412','18','','10357','DB [{#DBNAME}]: Queries sum transaction time','pgsql.queries.tx.time_sum["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Sum transaction query time for this database.','0','30d','0','','45505','','','','','200','1','0','','','0','0','0','0','0','0','0','0eda974576794768ac9ddc592ff27e19','0','2','0'), ('32413','18','','10357','DB [{#DBNAME}]: Queries max transaction time','pgsql.queries.tx.time_max["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Max transaction query time for this database.','0','30d','0','','45505','','','','','200','1','0','','','0','0','0','0','0','0','0','c6800ca30a564766ba745e875cb4e929','0','2','0'), ('32414','18','','10357','DB [{#DBNAME}]: Queries slow transaction count','pgsql.queries.tx.slow_count["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Slow transaction query count for this database.','0','30d','0','','45505','','','','','200','1','0','','','0','0','0','0','0','0','0','f7099043ea6345f0a5531f70f9573a3e','0','2','0'), ('32415','18','','10357','DB [{#DBNAME}]: Queries sum query time','pgsql.queries.query.time_sum["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Sum query time for this database.','0','30d','0','','45505','','','','','200','1','0','','','0','0','0','0','0','0','0','c6232400b39c4564a30a403859ffb4ee','0','2','0'), ('32416','18','','10357','DB [{#DBNAME}]: Queries max query time','pgsql.queries.query.time_max["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Max query time for this database.','0','30d','0','','45505','','','','','200','1','0','','','0','0','0','0','0','0','0','044cc16d0a2f46b28d88eff86c33b30b','0','2','0'), ('32417','18','','10357','DB [{#DBNAME}]: Queries slow query count','pgsql.queries.query.slow_count["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Slow query count for this database.','0','30d','0','','45505','','','','','200','1','0','','','0','0','0','0','0','0','0','5d937f46f4684f1e8253ec62e0f75379','0','2','0'), ('32418','18','','10357','DB [{#DBNAME}]: Queries sum maintenance time','pgsql.queries.mro.time_sum["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Sum maintenance query time for this database.','0','30d','0','','45505','','','','','200','1','0','','','0','0','0','0','0','0','0','f1427228bfa14ad3b7bb9d63bcfaec59','0','2','0'), ('32419','18','','10357','DB [{#DBNAME}]: Queries max maintenance time','pgsql.queries.mro.time_max["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Max maintenance query time for this database.','0','30d','0','','45505','','','','','200','1','0','','','0','0','0','0','0','0','0','bbc8f9bf86394cf28e0c2db44ee4711d','0','2','0'), ('32420','18','','10357','DB [{#DBNAME}]: Queries slow maintenance count','pgsql.queries.mro.slow_count["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Slow maintenance query count for this database.','0','30d','0','','45505','','','','','200','1','0','','','0','0','0','0','0','0','0','939ab05c71ed4be9979662203ebba980','0','2','0'), ('32421','18','','10357','DB [{#DBNAME}]: Disk blocks read per second','pgsql.dbstat.blks_read.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of disk blocks read per second in this database.','0','30d','0','','45506','','','','','200','1','0','','','0','0','0','0','0','0','0','9136517d08b447869e5b8f5fd684c3b9','0','2','0'), ('32422','18','','10357','DB [{#DBNAME}]: Detected deadlocks per second','pgsql.dbstat.deadlocks.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of detected deadlocks in this database per second.','0','30d','0','','45506','','','','','200','1','0','','','0','0','0','0','0','0','0','b874cc2dd80643208c2479ad25fae0ac','0','2','0'), ('32423','18','','10357','DB [{#DBNAME}]: Blocks hit per second','pgsql.dbstat.blks_hit.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of times per second disk blocks were found already in the buffer cache, so that a read was not necessary.','0','30d','0','','45506','','','','','200','1','0','','','0','0','0','0','0','0','0','615e6567a85e421bb06ab8cac0eaba69','0','2','0'), ('32425','18','','10357','DB [{#DBNAME}]: Rollbacks per second','pgsql.dbstat.xact_rollback.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of transactions in this database that have been rolled back.','0','30d','0','','45506','','','','','200','1','0','','','0','0','0','0','0','0','0','8e5080186d034323be21473099b0b0ce','0','2','0'), ('32426','18','','10357','DB [{#DBNAME}]: Commits per second','pgsql.dbstat.xact_commit.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of transactions in this database that have been committed per second.','0','30d','0','','45506','','','','','200','1','0','','','0','0','0','0','0','0','0','81c33f5b3c31475fa5f28f4ad149a328','0','2','0'), ('32427','18','','10357','DB [{#DBNAME}]: Tuples updated per second','pgsql.dbstat.tup_updated.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of rows updated by queries in this database per second.','0','30d','0','','45506','','','','','200','1','0','','','0','0','0','0','0','0','0','4c8de8c1064d43ffa18c4f37fead37f7','0','2','0'), ('32428','18','','10357','DB [{#DBNAME}]: Tuples returned per second','pgsql.dbstat.tup_returned.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of rows returned by queries in this database per second.','0','30d','0','','45506','','','','','200','1','0','','','0','0','0','0','0','0','0','f6d378f4e38e455fa5a12467fe977657','0','2','0'), ('32429','18','','10357','DB [{#DBNAME}]: Tuples inserted per second','pgsql.dbstat.tup_inserted.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of rows inserted by queries in this database per second.','0','30d','0','','45506','','','','','200','1','0','','','0','0','0','0','0','0','0','8c03c87a44fe43928c32087ca7561e88','0','2','0'), ('32430','18','','10357','DB [{#DBNAME}]: Tuples fetched per second','pgsql.dbstat.tup_fetched.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of rows fetched by queries in this database per second.','0','30d','0','','45506','','','','','200','1','0','','','0','0','0','0','0','0','0','92f33d96f8a348088cdba593c0e66929','0','2','0'), ('32431','18','','10357','DB [{#DBNAME}]: Tuples deleted per second','pgsql.dbstat.tup_deleted.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of rows deleted by queries in this database per second.','0','30d','0','','45506','','','','','200','1','0','','','0','0','0','0','0','0','0','35c6f93aefe4439bbc36f2f358440b16','0','2','0'), ('32432','18','','10357','DB [{#DBNAME}]: Temp_files created per second','pgsql.dbstat.temp_files.rate["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of temporary files created by queries in this database.','0','30d','0','','45506','','','','','200','1','0','','','0','0','0','0','0','0','0','af4e35eee1764d3f97d9c1218867f885','0','2','0'), ('32433','18','','10357','DB [{#DBNAME}]: Temp_bytes written per second','pgsql.dbstat.temp_bytes.rate["{#DBNAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total amount of data written to temporary files by queries in this database.','0','30d','0','','45506','','','','','200','1','0','','','0','0','0','0','0','0','0','d235ead54c8b41f9a91398c75383e5d7','0','2','0'), ('32465','18','','10359','Battery voltage discovery','aranet.battery.voltage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud Battery voltage sensors','0','7d','1','','32464','','','','','200','1','0','','','0','0','0','0','0','0','0','c4d177c29cb34e87b6bec0d22bd3ae23','0','2','0'), ('32466','18','','10359','CO2 discovery','aranet.co2.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud CO2 sensors','0','7d','1','','32464','','','','','200','1','0','','','0','0','0','0','0','0','0','f10b45e1e1024cb19ea8a705281e61fc','0','2','0'), ('32467','18','','10359','Current discovery','aranet.current.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud Current sensors','0','7d','1','','32464','','','','','200','1','0','','','0','0','0','0','0','0','0','c42c2ae80f0d40688031f0ef3adb4dfb','0','2','0'), ('32468','18','','10359','Differential Pressure discovery','aranet.diff_pressure.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud Differential Pressure sensors','0','7d','1','','32464','','','','','200','1','0','','','0','0','0','0','0','0','0','0d5eca62cf6e4db8abed33e7ad907925','0','2','0'), ('32469','18','','10359','Distance discovery','aranet.distance.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud Distance sensors','0','7d','1','','32464','','','','','200','1','0','','','0','0','0','0','0','0','0','b9f0950111b6488098c79a60b2a444d6','0','2','0'), ('32470','18','','10359','Humidity discovery','aranet.humidity.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud humidity sensors','0','7d','1','','32464','','','','','200','1','0','','','0','0','0','0','0','0','0','7cf9f5296e784045a86aa0fc7bb1ba69','0','2','0'), ('32471','18','','10359','Illuminance discovery','aranet.illuminance.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud Illuminance sensors','0','7d','1','','32464','','','','','200','1','0','','','0','0','0','0','0','0','0','144396930b4b4049acb4bfd7b183a6f7','0','2','0'), ('32472','18','','10359','Last update discovery','aranet.last_update.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud Last update metric','0','7d','1','','32464','','','','','200','1','0','','','0','0','0','0','0','0','0','16b57e7a700c4041b787a8916442cd59','0','2','0'), ('32473','18','','10359','pH discovery','aranet.ph.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud pH sensors','0','7d','1','','32464','','','','','200','1','0','','','0','0','0','0','0','0','0','9b33a2810e644c3c998d431a4a860993','0','2','0'), ('32474','18','','10359','Pore Electrical Conductivity discovery','aranet.pore_electric_cond.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud Pore Electrical Conductivity sensors','0','7d','1','','32464','','','','','200','1','0','','','0','0','0','0','0','0','0','1763029f67494745a2f52c980ae86b9c','0','2','0'), ('32475','18','','10359','PPFD discovery','aranet.ppfd.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud PPFD sensors','0','7d','1','','32464','','','','','200','1','0','','','0','0','0','0','0','0','0','c1a3941026c24d178a494de66c7be2cc','0','2','0'), ('32476','18','','10359','Atmospheric pressure discovery','aranet.pressure.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud atmospheric pressure sensors','0','7d','1','','32464','','','','','200','1','0','','','0','0','0','0','0','0','0','11a77f7018ca4b8f92f65888e3e2a237','0','2','0'), ('32477','18','','10359','Pulses discovery','aranet.pulses.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud Pulses sensors','0','7d','1','','32464','','','','','200','1','0','','','0','0','0','0','0','0','0','6d5e1eebba704d5e88aa67ed029d95ca','0','2','0'), ('32478','18','','10359','Pulses Cumulative discovery','aranet.pulses_cumulative.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud Pulses Cumulative sensors','0','7d','1','','32464','','','','','200','1','0','','','0','0','0','0','0','0','0','92f27211f4dd4f61b7939cf8b07fc959','0','2','0'), ('32479','18','','10359','RSSI discovery','aranet.rssi.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud RSSI sensors','0','7d','1','','32464','','','','','200','1','0','','','0','0','0','0','0','0','0','2caab3aefe0b498588aa3ec0d8578e09','0','2','0'), ('32480','18','','10359','Soil Dielectric Permittivity discovery','aranet.soil_dielectric_perm.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud Soil Dielectric Permittivity sensors','0','7d','1','','32464','','','','','200','1','0','','','0','0','0','0','0','0','0','4d6116d2bd3049b9bb550e1d77338b2e','0','2','0'), ('32481','18','','10359','Soil Electrical Conductivity discovery','aranet.soil_electric_cond.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud Soil Electrical Conductivity sensors','0','7d','1','','32464','','','','','200','1','0','','','0','0','0','0','0','0','0','e44cc900de3b4353bbccc6f01388c103','0','2','0'), ('32482','18','','10359','Temperature discovery','aranet.temp.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud temperature sensors','0','7d','1','','32464','','','','','200','1','0','','','0','0','0','0','0','0','0','215affa3d0d34aa2b27be4ec75ba3349','0','2','0'), ('32483','18','','10359','Voltage discovery','aranet.voltage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud Voltage sensors','0','7d','1','','32464','','','','','200','1','0','','','0','0','0','0','0','0','0','9e9bf9e27be743368c50036f02fab572','0','2','0'), ('32484','18','','10359','Volumetric Water Content discovery','aranet.volum_water_content.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud Volumetric Water Content sensors','0','7d','1','','32464','','','','','200','1','0','','','0','0','0','0','0','0','0','c059e164b01242b78ab8505d12c2d291','0','2','0'), ('32485','18','','10359','Weight discovery','aranet.weight.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for Aranet Cloud Weight sensors','0','7d','1','','32464','','','','','200','1','0','','','0','0','0','0','0','0','0','414889299c224d748c857fcf028d9e96','0','2','0'), ('32642','18','','10363','NameNode: Missing blocks','hadoop.namenode.missing_blocks','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of missing blocks.','0','30d','0','','44722','','','','','200','1','0','','','0','0','0','0','0','0','0','30ee7e09067e4f00a4f26ad6c00454b2','0','2','0'), ('32643','18','','10363','ResourceManager: Decommissioned NMs','hadoop.resourcemanager.num_decommissioned_nm','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of Decommissioned NodeManagers.','0','30d','0','','44723','','','','','200','1','0','','','0','0','0','0','0','0','0','3fccfdd8738544ca8969ade842430fc8','0','2','0'), ('32644','18','','10363','NameNode: Blocks allocable','hadoop.namenode.block_capacity','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum number of blocks allocable.','0','30d','0','','44722','','','','','200','1','0','','','0','0','0','0','0','0','0','1d098dc6fa134053b6c6be0e7618092e','0','2','0'), ('32645','18','','10363','NameNode: Capacity remaining','hadoop.namenode.capacity_remaining','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Available capacity.','0','30d','0','','44722','','','','','200','1','0','','','0','0','0','0','0','0','0','26ca0bbd18e04b49b9eb8d2a74f4fd15','0','2','0'), ('32646','18','','10363','NameNode: Corrupt blocks','hadoop.namenode.corrupt_blocks','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of corrupt blocks.','0','30d','0','','44722','','','','','200','1','0','','','0','0','0','0','0','0','0','c73c2b6c24b846e49bdb68c3f5a01419','0','2','0'), ('32648','18','','10363','ResourceManager: RPC queue & processing time','hadoop.resourcemanager.rpc_processing_time_avg','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Average time spent on processing RPC requests.','0','30d','0','','44723','','','','','200','1','0','','','0','0','0','0','0','0','0','c4c3195326e34ebcb57e5039beffce7c','0','2','0'), ('32649','18','','10363','ResourceManager: Unhealthy NMs','hadoop.resourcemanager.num_unhealthy_nm','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of Unhealthy NodeManagers.','0','30d','0','','44723','','','','','200','1','0','','','0','0','0','0','0','0','0','e6aa4b4b29414f2fb1f06bd536552c1c','0','2','0'), ('32650','18','','10363','ResourceManager: Shutdown NMs','hadoop.resourcemanager.num_shutdown_nm','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of Shutdown NodeManagers.','0','30d','0','','44723','','','','','200','1','0','','','0','0','0','0','0','0','0','666152b3bf544a29b9e58a9f417c0ab8','0','2','0'), ('32651','18','','10363','ResourceManager: Rebooted NMs','hadoop.resourcemanager.num_rebooted_nm','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of Rebooted NodeManagers.','0','30d','0','','44723','','','','','200','1','0','','','0','0','0','0','0','0','0','b7791ce30e8f4aa7b5eea2ee7ca7eef9','0','2','0'), ('32652','18','','10363','ResourceManager: Lost NMs','hadoop.resourcemanager.num_lost_nm','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of Lost NodeManagers.','0','30d','0','','44723','','','','','200','1','0','','','0','0','0','0','0','0','0','c4bbf5295b2a44619e2b641468071f9b','0','2','0'), ('32653','18','','10363','ResourceManager: Decommissioning NMs','hadoop.resourcemanager.num_decommissioning_nm','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of Decommissioning NodeManagers.','0','30d','0','','44723','','','','','200','1','0','','','0','0','0','0','0','0','0','9aad193a9e074575878e44aa96ff4237','0','2','0'), ('32654','18','','10363','NameNode: Total files','hadoop.namenode.files_total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total count of files tracked by the NameNode.','0','30d','0','','44722','','','','','200','1','0','','','0','0','0','0','0','0','0','82198b21427a4e39a173369db42d9de3','0','2','0'), ('32655','18','','10363','ResourceManager: Active NMs','hadoop.resourcemanager.num_active_nm','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of Active NodeManagers.','0','30d','0','','44723','','','','','200','1','0','','','0','0','0','0','0','0','0','63d4fe7384044027b08b99698355fd8b','0','2','0'), ('32656','18','','10363','NameNode: Dead DataNodes','hadoop.namenode.num_dead_data_nodes','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of dead DataNodes.','0','30d','0','','44722','','','','','200','1','0','','','0','0','0','0','0','0','0','3473bad0a7c94c8b9fd35cd4398e6215','0','2','0'), ('32657','18','','10363','NameNode: Failed volumes','hadoop.namenode.volume_failures_total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of failed volumes.','0','30d','0','','44722','','','','','200','1','0','','','0','0','0','0','0','0','0','396eb8f791d54254b08ddee553d3d944','0','2','0'), ('32658','18','','10363','NameNode: Total blocks','hadoop.namenode.blocks_total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of blocks tracked by NameNode.','0','30d','0','','44722','','','','','200','1','0','','','0','0','0','0','0','0','0','2cb55b7ed9cd41878dc985497f45e084','0','2','0'), ('32659','18','','10363','NameNode: Under-replicated blocks','hadoop.namenode.under_replicated_blocks','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of blocks with insufficient replication.','0','30d','0','','44722','','','','','200','1','0','','','0','0','0','0','0','0','0','249098bbeb7a43cdac59f1297ca95104','0','2','0'), ('32660','18','','10363','NameNode: Transactions since last checkpoint','hadoop.namenode.transactions_since_last_checkpoint','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of transactions since last checkpoint.','0','30d','0','','44722','','','','','200','1','0','','','0','0','0','0','0','0','0','6abfe537a36646a0b10fe2c72586d249','0','2','0'), ('32661','18','','10363','NameNode: Total load','hadoop.namenode.total_load','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The current number of concurrent file accesses (read/write) across all DataNodes.','0','30d','0','','44722','','','','','200','1','0','','','0','0','0','0','0','0','0','9f00149ef0c2444ebbc9327b24acd7b9','0','2','0'), ('32662','18','','10363','NameNode: RPC queue & processing time','hadoop.namenode.rpc_processing_time_avg','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Average time spent on processing RPC requests.','0','30d','0','','44722','','','','','200','1','0','','','0','0','0','0','0','0','0','a9e6c1e2f9544c71844785b4baa9c017','0','2','0'), ('32663','18','','10363','NameNode: Percent capacity remaining','hadoop.namenode.percent_remaining','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Available capacity in percent.','0','30d','0','','44722','','','','','200','1','0','','','0','0','0','0','0','0','0','3cfbf084a31b479c91be356556d43c0d','0','2','0'), ('32664','18','','10363','NameNode: Block Pool Renaming','hadoop.namenode.percent_block_pool_used','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','44722','','','','','200','1','0','','','0','0','0','0','0','0','0','b72d54b849fc48fd8e7cdacd75943c23','0','2','0'), ('32665','18','','10363','NameNode: Stale DataNodes','hadoop.namenode.num_stale_data_nodes','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'DataNodes that do not send a heartbeat within 30 seconds are marked as "stale".','0','30d','0','','44722','','','','','200','1','0','','','0','0','0','0','0','0','0','15bcb22fdc7f4e2c8f24560ef641d63d','0','2','0'), ('32666','18','','10363','NameNode: Alive DataNodes','hadoop.namenode.num_live_data_nodes','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of alive DataNodes.','0','30d','0','','44722','','','','','200','1','0','','','0','0','0','0','0','0','0','398a8c95db3248b684f222fe7b912fe3','0','2','0'), ('32672','18','','10363','{#HOSTNAME}: Admin state','hadoop.datanode.admin_state[{#HOSTNAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Administrative state.','0','30d','0','','44724','','','','','200','1','0','','','0','0','0','0','0','0','0','ef570f8b37c545bd880b7df20bd19f06','0','2','0'), ('32678','18','','10363','{#HOSTNAME}: Oper state','hadoop.datanode.oper_state[{#HOSTNAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Operational state.','0','30d','0','','44724','','','','','200','1','0','','','0','0','0','0','0','0','0','a6541492d4f7426b8016d1a8932b87ce','0','2','0'), ('32681','18','','10363','{#HOSTNAME}: Version','hadoop.datanode.version[{#HOSTNAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'DataNode software version.','0','30d','0','','44724','','','','','200','1','0','','','0','0','0','0','0','0','0','62b4ca9b1e8a43aa89fbeb78ac16c8cf','0','2','0'), ('32682','18','','10363','{#HOSTNAME}: Available memory','hadoop.nodemanager.availablememory[{#HOSTNAME}]','0','31d','365d','0','3','','!MB','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','44725','','','','','200','1','0','','','0','0','0','0','0','0','0','ffa4704e099a4f1a8b49add245938501','0','2','0'), ('32687','18','','10363','{#HOSTNAME}: Number of containers','hadoop.nodemanager.numcontainers[{#HOSTNAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','44725','','','','','200','1','0','','','0','0','0','0','0','0','0','662cafd31e194db8808c75789bf712eb','0','2','0'), ('32689','18','','10363','{#HOSTNAME}: State','hadoop.nodemanager.state[{#HOSTNAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'State of the node - valid values are: NEW, RUNNING, UNHEALTHY, DECOMMISSIONING, DECOMMISSIONED, LOST, REBOOTED, SHUTDOWN.','0','30d','0','','44725','','','','','200','1','0','','','0','0','0','0','0','0','0','bab9c705d31e42ce9af65b396e18504b','0','2','0'), ('32691','18','','10363','{#HOSTNAME}: Used memory','hadoop.nodemanager.usedmemory[{#HOSTNAME}]','0','31d','365d','0','3','','!MB','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','44725','','','','','200','1','0','','','0','0','0','0','0','0','0','d92b66e61a5244a995693ab8aedee96e','0','2','0'), ('32692','18','','10363','{#HOSTNAME}: Version','hadoop.nodemanager.version[{#HOSTNAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','44725','','','','','200','1','0','','','0','0','0','0','0','0','0','c4d46de2d6d341f5a2c1826236f94e5e','0','2','0'), ('32796','18','','10365','Process resident memory','vault.metrics.process.resident_memory.bytes','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Resident memory size in bytes.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','ddd6b5b8206442a7b5f0026e82bc2bd2','0','2','0'), ('32797','18','','10365','Runtime allocated bytes','vault.metrics.runtime.alloc.bytes','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes allocated by the Vault process. This could burst from time to time, but should return to a steady state value.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','58e6fbc8a6084008b08c7fc03ad4a703','0','2','0'), ('32798','18','','10365','Runtime freed objects','vault.metrics.runtime.free.count','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of freed objects.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','3b2208b0248b4288ad91a8a5e3090b29','0','2','0'), ('32799','18','','10365','Runtime heap objects','vault.metrics.runtime.heap.objects','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of objects on the heap. This is a good general memory pressure indicator worth establishing a baseline and thresholds for alerting.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','c1a159a37d4e4130a4a19d0ded2b0b72','0','2','0'), ('32800','18','','10365','Process virtual memory, max','vault.metrics.process.virtual_memory.max.bytes','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum amount of virtual memory available in bytes.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','17c568d745534c218dc292043234b215','0','2','0'), ('32801','18','','10365','Process virtual memory, current','vault.metrics.process.virtual_memory.bytes','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Virtual memory size in bytes.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','bf3a561bc96b46fc9a818a9f43c57be5','0','2','0'), ('32802','18','','10365','Uptime','vault.metrics.process.uptime','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Server uptime.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','241f8503d30c41df9e902cf31ddf715e','0','2','0'), ('32803','18','','10365','Check mountpoint discovery','vault.check_mountpoint_discovery','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','cd948f4219164c77a17b56f1b01767d0','0','2','0'), ('32804','18','','10365','Open file descriptors, current','vault.metrics.process.open.fds','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of open file descriptors.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','0b2c6c947c46409b93acea8e67a0f058','0','2','0'), ('32805','18','','10365','Open file descriptors, max','vault.metrics.process.max.fds','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum number of open file descriptors.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','095af4564c5445c0be7ad38811404535','0','2','0'), ('32806','18','','10365','Process CPU seconds, total','vault.metrics.process.cpu.seconds.total','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Total user and system CPU time spent in seconds.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','d7602cb55879403982afeabecb4c130a','0','2','0'), ('32807','18','','10365','Policy SET ops, rate','vault.metrics.policy.set_policy.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of operations to set a policy.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','c8010706f8274e898812b722a82e9add','0','2','0'), ('32808','18','','10365','Runtime num goroutines','vault.metrics.runtime.num_goroutines','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of goroutines. This serves as a general system load indicator worth establishing a baseline and thresholds for alerting.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','b728e92f88db47308272eff7e3bb8c08','0','2','0'), ('32809','18','','10365','Policy LIST ops, rate','vault.metrics.policy.list_policies.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of operations to list policies.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','6650bc3487934dcebc2e1f4da2e1db13','0','2','0'), ('32810','18','','10365','Policy GET ops, rate','vault.metrics.policy.get_policy.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of operations to get a policy.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','bd790a83c48e4ea6bcc9271703036101','0','2','0'), ('32811','18','','10365','Runtime malloc count','vault.metrics.runtime.malloc.count','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Cumulative count of allocated heap objects.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','f8f0f80be7514fe5b085f04858ac4d7a','0','2','0'), ('32812','18','','10365','Token create, count','vault.metrics.token.create','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The time taken to create a token.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','1a203f57eb0647ca98a848913bb5b707','0','2','0'), ('32813','18','','10365','Runtime sys bytes','vault.metrics.runtime.sys.bytes','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes allocated to Vault. This includes what is being used by Vault''s heap and what has been reclaimed but not given back to the operating system.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','9af322bade374b45b78d949e632747a8','0','2','0'), ('32814','18','','10365','Token createAccessor, count','vault.metrics.token.createAccessor','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The time taken to create a token accessor.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','0033d69a310041e58107e06a296492bd','0','2','0'), ('32815','18','','10365','Runtime GC pause, total','vault.metrics.total.gc.pause','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The total garbage collector pause time since Vault was last started.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','2f0e733e6b1c406b88d012e727ab0169','0','2','0'), ('32816','18','','10365','Token store, count','vault.metrics.token.store','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Time taken to store an updated token entry without writing to the secondary index.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','830ff368911c4532b10ff1e8c6c9e59b','0','2','0'), ('32817','18','','10365','Token revoke tree, count','vault.metrics.token.revoke.tree','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Time taken to revoke a token tree.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','c851263be6d94ab39b548a57bbad4eab','0','2','0'), ('32818','18','','10365','Token revoke, count','vault.metrics.token.revoke','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The time taken to look up a token.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','0d30ca2565b24659839e7e31fc8f6739','0','2','0'), ('32819','18','','10365','Token lookup, rate','vault.metrics.token.lookup.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of token look up.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','ad0c38837e774d9b8164bad51ae9fd4c','0','2','0'), ('32820','18','','10365','Token creation, rate','vault.metrics.token.creation.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of service or batch tokens created.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','3c73e0cdfe4147abb86ce939189e4cec','0','2','0'), ('32821','18','','10365','Expire revoke prefix, count','vault.metrics.expire.revoke.prefix','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Tokens revoke on a prefix.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','93041bd251d148c39e6e2e162f6f1078','0','2','0'), ('32822','18','','10365','Runtime GC runs, total','vault.metrics.runtime.total.gc.runs','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of garbage collection runs since Vault was last started.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','38f50f3173c346cebe6e321347e0270f','0','2','0'), ('32823','18','','10365','Token count by ttl, total','vault.metrics.token.by_ttl','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of service tokens, grouped by the TTL range they were assigned at creation.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','c5b512233ae745c390d85e604bf7449e','0','2','0'), ('32824','18','','10365','Token count by policy, total','vault.metrics.token.by_policy','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of service tokens that have a policy attached.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','2f9011a7dd6f4b078402dbb50256ee0a','0','2','0'), ('32825','18','','10365','Token count by auth, total','vault.metrics.token.by_auth','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of service tokens that were created by an auth method.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','4c7ae38abae146fdbaf334501b3644f1','0','2','0'), ('32826','18','','10365','Token count, total','vault.metrics.token','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of service tokens available for use; counts all un-expired and un-revoked tokens in Vault''s token store. This measurement is performed every 10 minutes.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','37576dbac47349fca97fe27c4906124d','0','2','0'), ('32827','18','','10365','Token secret lease creation, rate','vault.metrics.secret.lease.creation.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Counts the number of leases created by secret engines.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','568b4b77ae58468da7bb407d349bd330','0','2','0'), ('32828','18','','10365','Secret kv entries','vault.metrics.secret.kv.count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of entries in each key-value secret engine.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','20f0708b63784c4190e8e6256f2d57f3','0','2','0'), ('32829','18','','10365','Policy DELETE ops, rate','vault.metrics.policy.delete_policy.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of operations to delete a policy.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','5c3e5032315e466e81fca67ea880b33a','0','2','0'), ('32830','18','','10365','Fetch lease times by token, counter','vault.metrics.expire.fetch.lease.times.by_token','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Time taken to fetch lease times by token.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','7f3ab929e48848e294cfa68b8e1783ad','0','2','0'), ('32831','18','','10365','Expire revoke force, count','vault.metrics.expire.revoke.force','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Time taken to forcibly revoke a token.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','6bed679f33b4415d833cb5033c5f824c','0','2','0'), ('32832','18','','10365','Barrier LIST ops, rate','vault.metrics.barrier.list.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of LIST operations at the barrier.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','8a854323d051485091917391c630cc28','0','2','0'), ('32833','18','','10365','Fetch ACL and token, rate','vault.metrics.core.fetch.acl_and_token','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of ACL and corresponding token entry fetches handled by Vault core.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','77bf09bd2b554e5a8d0dde53045f05c7','0','2','0'), ('32834','18','','10365','Check token, rate','vault.metrics.core.check.token.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of token checks handled by Vault core.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','004f1eebd08c46d4bbdab7a6c6e3f3ec','0','2','0'), ('32835','18','','10365','Cache write, rate','vault.metrics.cache.write.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times a value was written to the LRU cache.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','d99841c57aa349ae8676072e12add35c','0','2','0'), ('32836','18','','10365','Cache miss, rate','vault.metrics.cache.miss.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times a value was not in the LRU cache. The results in a read from the configured storage.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','4df07a4ea4a048c7bc11b21b56cf96c6','0','2','0'), ('32837','18','','10365','Cache hit, rate','vault.metrics.cache.hit.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times a value was retrieved from the LRU cache.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','f0069229811749e5b399f1214176ae11','0','2','0'), ('32838','18','','10365','Barrier PUT ops, rate','vault.metrics.barrier.put.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of PUT operations at the barrier.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','1dbf0413b1574f6e9b04abe5d06ab8aa','0','2','0'), ('32839','18','','10365','Barrier DELETE ops, rate','vault.metrics.barrier.delete.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of DELETE operations at the barrier.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','e1d11f77e8394b22b88ddcf9a1b8159b','0','2','0'), ('32840','18','','10365','Leadership setup failed, counter','vault.metrics.core.leadership.setup_failed','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Cluster leadership setup failures which have occurred in a highly available Vault cluster.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','2aa54d38cc2541e3ae4df89e86d63d20','0','2','0'), ('32841','18','','10365','Audit log response, rate','vault.metrics.audit.log.response.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of audit log responses across all audit log devices.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','c336a5cecd4641b58be6ab1ba511f6ef','0','2','0'), ('32842','18','','10365','Audit log response failures, rate','vault.metrics.audit.log.response.failure.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of audit log response failures.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','6b8b37e62e374bc38994c5dcc6f0fc6d','0','2','0'), ('32843','18','','10365','Audit log requests, rate','vault.metrics.audit.log.request.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of all audit log requests across all audit log devices.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','33f2ce934ae5451dace5f880b3a2e6b7','0','2','0'), ('32844','18','','10365','Audit log request failures, rate','vault.metrics.audit.log.request.failure.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of audit log request failures.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','f23cbc80bf2d4064bf45cc27f6ec752e','0','2','0'), ('32845','18','','10365','Check WAL discovery','vault.check_wal_discovery','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','febb5558b1944187a0ac6e87ed153267','0','2','0'), ('32846','18','','10365','Check storage discovery','vault.check_storage_discovery','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','f9c8f0ec3a5640af8464f69d1cebbd42','0','2','0'), ('32847','18','','10365','Requests, rate','vault.metrics.core.handle.request','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of requests handled by Vault core.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','4ddf18c7768147a396fe13608b5508fb','0','2','0'), ('32848','18','','10365','Leadership setup lost, counter','vault.metrics.core.leadership_lost','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Cluster leadership losses which have occurred in a highly available Vault cluster.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','f0ca68774b5842d7803d2c2619958184','0','2','0'), ('32849','18','','10365','Revoke secrets by token, count','vault.metrics.expire.revoke.by_token','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Time taken to revoke all secrets issued with a given token.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','bc023bdad9504a86b17d2308db62e98f','0','2','0'), ('32850','18','','10365','Check replication discovery','vault.check_replication_discovery','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','940cacdb967c40a1b9fba1c143c8589b','0','2','0'), ('32851','18','','10365','Expire revoke, count','vault.metrics.expire.revoke','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Time taken to revoke a token.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','21a1b8470a31484da1e3fd76d3c8094b','0','2','0'), ('32852','18','','10365','Renew token, count','vault.metrics.expire.renew_token','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Time taken to renew a token which does not need to invoke a logical backend.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','091c66e0f2794a72a97ddfc3a7142b72','0','2','0'), ('32853','18','','10365','Expire renew, count','vault.metrics.expire.renew','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Time taken to renew a lease.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','2d418cd62ada44c6bd527db8da0731e1','0','2','0'), ('32854','18','','10365','Register auth ops, count','vault.metrics.expire.register.auth','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Time taken for register authentication operations which create lease entries without lease ID.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','89dcbfb69b8a44dcbf330d16d292ec1b','0','2','0'), ('32855','18','','10365','Register ops, count','vault.metrics.expire.register','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Time taken for register operations.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','b160780f06c846809f7aca043777754f','0','2','0'), ('32856','18','','10365','Number of expiring leases','vault.metrics.expire.num_leases','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of all leases which are eligible for eventual expiry.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','66f1855a47624f10ae69735053e326f1','0','2','0'), ('32857','18','','10365','Fetch lease times, counter','vault.metrics.expire.fetch.lease.times','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Time taken to fetch lease times.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','5edebc9e295844ee8716d2b17152bdd9','0','2','0'), ('32858','18','','10365','Post-unseal ops, counter','vault.metrics.core.post_unseal','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Duration of time taken by post-unseal operations handled by Vault core.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','2bdb273b513d4a06914cd6ea11ac2368','0','2','0'), ('32859','18','','10365','Unseal ops, counter','vault.metrics.core.unseal','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Duration of time taken by unseal operations.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','075c83114d1746b6b773579404e0268d','0','2','0'), ('32860','18','','10365','Leadership step downs, counter','vault.metrics.core.step_down','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Cluster leadership step down.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','1d66f20a1d594b4fa7c81849b83a4ef9','0','2','0'), ('32861','18','','10365','Requested seal ops, counter','vault.metrics.core.seal_with_request','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Duration of time taken by requested seal operations.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','e0ecf5aa8c2a4e0886b5a12588839efd','0','2','0'), ('32862','18','','10365','Internal seal ops, counter','vault.metrics.core.seal_internal','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Duration of time taken by internal seal operations.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','95f6ab7294c547e7976a292447ef31fb','0','2','0'), ('32863','18','','10365','Seal ops, counter','vault.metrics.core.seal','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Duration of time taken by seal operations.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','42d7e5c3d5b24a65b9821e1aaf0df2a0','0','2','0'), ('32864','18','','10365','Pre-seal ops, counter','vault.metrics.core.pre_seal','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Duration of time taken by pre-seal operations.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','81738d2323a94aa8a7f2b1d9721ac9f9','0','2','0'), ('32865','18','','10365','Barrier GET ops, rate','vault.metrics.vault.barrier.get.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of GET operations at the barrier.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','f616fbcd3d20456bb34cde735cf7fad5','0','2','0'), ('32874','18','','10365','Rollback attempt [{#MOUNTPOINT}] ops, rate','vault.metrics.rollback.attempt.rate[{#MOUNTPOINT}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of operations to perform a rollback operation on the given mount point.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','3956d1e526d944c7b68d09a1cf52f11e','0','2','0'), ('32875','18','','10365','Route rollback [{#MOUNTPOINT}] ops, rate','vault.metrics.route.rollback.rate[{#MOUNTPOINT}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of operations to dispatch a rollback operation to a backend, and for that backend to process it. Rollback operations are automatically scheduled to clean up partial errors.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','e0a4232e6a20433ba26e4313ff9ec1bc','0','2','0'), ('32876','18','','10365','Stream WAL guard found, count{#SINGLETON}','vault.metrics.logshipper.streamWALs.guard_found[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of incidences where the starting Merkle Tree index used to begin streaming WAL entries is matched/found.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','af047eca9606472680288e5b5703bca9','0','2','0'), ('32877','18','','10365','Stream WAL missing guard, count{#SINGLETON}','vault.metrics.logshipper.streamWALs.missing_guard[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of incidences where the starting Merkle Tree index used to begin streaming WAL entries is not matched/found.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','df61d6db369540fd9934648189e9175a','0','2','0'), ('32878','18','','10365','Last remote WAL{#SINGLETON}','vault.metrics.replication.fsm.last_remote_wal[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The index of the last remote WAL.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','288ffb2cd8bc45f39a7e6d98a2100022','0','2','0'), ('32879','18','','10365','Merkle commit index{#SINGLETON}','vault.metrics.replication.merkle.commit_index[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The last committed index in the Merkle Tree.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','ca9c56e53093436f99a6a80f499aac45','0','2','0'), ('32880','18','','10365','Last DR WAL{#SINGLETON}','vault.metrics.replication.wal.last_dr_wal[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The index of the last DR WAL.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','854a4541b78c4df6b9d4971d71c7df49','0','2','0'), ('32881','18','','10365','Last performance WAL{#SINGLETON}','vault.metrics.replication.wal.last_performance_wal[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The index of the last Performance WAL.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','5aed3273a8c24236817f8bd3b5860f87','0','2','0'), ('32882','18','','10365','Last WAL{#SINGLETON}','vault.metrics.replication.wal.last_wal[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The index of the last WAL.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','f5bcef9569f44212b813cc0ec821b1ea','0','2','0'), ('32883','18','','10365','Storage [{#STORAGE}] {#OPERATION} ops, rate','vault.metrics.storage.rate[{#STORAGE}, {#OPERATION}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of a {#OPERATION} operation against the {#STORAGE} storage backend.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','0cdb0bcf0ff448ff8c5d673f9b66d17a','0','2','0'), ('32884','18','','10365','Delete WALs, count{#SINGLETON}','vault.metrics.wal.deletewals[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Time taken to delete a Write Ahead Log (WAL).','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','7e21309d1778466cae08e6424108d0e9','0','2','0'), ('32885','18','','10365','Flush ready WAL, count{#SINGLETON}','vault.metrics.wal.flushready[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Time taken to flush a ready Write Ahead Log (WAL) to storage.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','80d5a79d35bc4b3a970f311b0c8c3fbf','0','2','0'), ('32886','18','','10365','GC deleted WAL{#SINGLETON}','vault.metrics.wal.gc.deleted[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of Write Ahead Logs (WAL) deleted during each garbage collection run.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','daee033751164b6591d326d2d59b7e3a','0','2','0'), ('32887','18','','10365','WALs on disk, total{#SINGLETON}','vault.metrics.wal.gc.total[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total Number of Write Ahead Logs (WAL) on disk.','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','b45b43ac739246719e517d04eb384787','0','2','0'), ('32888','18','','10365','Load WALs, count{#SINGLETON}','vault.metrics.wal.loadWAL[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Time taken to load a Write Ahead Log (WAL).','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','b1e306d6136a4b6d933bd2154b3d5d6e','0','2','0'), ('32889','18','','10365','Persist WALs, count{#SINGLETON}','vault.metrics.wal.persistwals[{#SINGLETON}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Time taken to persist a Write Ahead Log (WAL).','0','30d','0','','32795','','','','','200','1','0','','','0','0','0','0','0','0','0','de8fea26aa1546d2bdf1ec7dd5205a3b','0','2','0'), ('33000','18','','10369','Zookeeper client {#TYPE} [{#CLIENT}]: Latency, avg','zookeeper.avg_latency[{#TYPE},{#CLIENT}]','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The average amount of time it takes for the server to respond to a client request.','0','30d','0','','44794','','','','','200','1','0','','','0','0','0','0','0','0','0','b5a378d3785542dca169b1bc1c02189f','0','2','0'), ('33001','18','','10369','Zookeeper client {#TYPE} [{#CLIENT}]: Latency, max','zookeeper.max_latency[{#TYPE},{#CLIENT}]','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The maximum amount of time it takes for the server to respond to a client request.','0','30d','0','','44794','','','','','200','1','0','','','0','0','0','0','0','0','0','2a36ecfb56754bcb8bdc91da76316fb4','0','2','0'), ('33002','18','','10369','Zookeeper client {#TYPE} [{#CLIENT}]: Latency, min','zookeeper.min_latency[{#TYPE},{#CLIENT}]','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The minimum amount of time it takes for the server to respond to a client request.','0','30d','0','','44794','','','','','200','1','0','','','0','0','0','0','0','0','0','6a245634ec9b4aa0b2df8360b42ac8aa','0','2','0'), ('33003','18','','10369','Zookeeper client {#TYPE} [{#CLIENT}]: Outstanding requests','zookeeper.outstanding_requests[{#TYPE},{#CLIENT}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of queued requests when the server is under load and is receiving more sustained requests than it can process.','0','30d','0','','44794','','','','','200','1','0','','','0','0','0','0','0','0','0','89805694583b453e99f833e850b5c5dc','0','2','0'), ('33004','18','','10369','Zookeeper client {#TYPE} [{#CLIENT}]: Packets received per sec','zookeeper.packets_received[{#TYPE},{#CLIENT}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of packets received.','0','30d','0','','44794','','','','','200','1','0','','','0','0','0','0','0','0','0','e68a429aa986477e894b2a4437b6ec4a','0','2','0'), ('33005','18','','10369','Zookeeper client {#TYPE} [{#CLIENT}]: Packets sent per sec','zookeeper.packets_sent[{#TYPE},{#CLIENT}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of packets sent.','0','30d','0','','44794','','','','','200','1','0','','','0','0','0','0','0','0','0','c748207b3f3e4a7ca6bb8ff3ecc8959b','0','2','0'), ('33162','18','','10317','Replication Slave SQL Running State {#MASTER_HOST}','mysql.slave_sql_running_state["{#MASTER_HOST}"]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Shows the state of the SQL driver threads.','0','30d','0','','30523','','','','','200','1','0','','','0','0','0','0','0','0','0','a88eb463bb9740a4a4256306f11816bf','0','2','0'), ('33178','18','','10329','Application [{#APPLICATION_NAME}]: Replication flush lag','pgsql.replication.process.flush_lag["{#APPLICATION_NAME}"]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','45510','','','','','200','1','0','','','0','0','0','0','0','0','0','15b83330044042668e618501160c37e4','0','2','0'), ('33179','18','','10329','Application [{#APPLICATION_NAME}]: Replication replay lag','pgsql.replication.process.replay_lag["{#APPLICATION_NAME}"]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','45510','','','','','200','1','0','','','0','0','0','0','0','0','0','0daf6e3c7843488cb3160a2bd6b09fbf','0','2','0'), ('33180','18','','10329','Application [{#APPLICATION_NAME}]: Replication write lag','pgsql.replication.process.write_lag["{#APPLICATION_NAME}"]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','45510','','','','','200','1','0','','','0','0','0','0','0','0','0','2d96bc517d3a4c3fbcae8a7f1436bf72','0','2','0'), ('33396','18','','10379','Job waiting, m1 rate','jenkins.job.waiting.m1.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which jobs enter the quiet period.','0','30d','0','','44490','','','','','200','1','0','','','0','0','0','0','0','0','0','2d21f74757374b769ae8e76d4d7afa79','0','2','0'), ('33397','18','','10379','Nodes online','jenkins.node.online','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of build nodes available to Jenkins and currently online.','0','30d','0','','44491','','','','','200','1','0','','','0','0','0','0','0','0','0','758ead9ea71646be882b9bff280ce4d6','0','2','0'), ('33398','18','','10379','Nodes offline','jenkins.node.offline','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of build nodes available to Jenkins but currently offline.','0','30d','0','','44491','','','','','200','1','0','','','0','0','0','0','0','0','0','440bdc39d2444b9e83cc863e34f3b416','0','2','0'), ('33399','18','','10379','Nodes count','jenkins.node.count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of build nodes available to Jenkins, both online and offline.','0','30d','0','','44491','','','','','200','1','0','','','0','0','0','0','0','0','0','930fa76b32484155ae3ec8964e3952a1','0','2','0'), ('33400','18','','10379','Job waiting, m5 rate','jenkins.job.waiting.m5.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which jobs enter the quiet period.','0','30d','0','','44490','','','','','200','1','0','','','0','0','0','0','0','0','0','9e16580148964e9aae3a660b18721bee','0','2','0'), ('33401','18','','10379','Job waiting duration, median','jenkins.job.waiting.duration.p50','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The total amount of time that jobs spend in their quiet period.','0','30d','0','','44490','','','','','200','1','0','','','0','0','0','0','0','0','0','dd7a1e8142f94ef099f6aa0ed1facce3','0','2','0'), ('33402','18','','10379','Job waiting duration, p95','jenkins.job.waiting.duration.p95','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The total amount of time that jobs spend in their quiet period.','0','30d','0','','44490','','','','','200','1','0','','','0','0','0','0','0','0','0','bb339169024b4461a39261f3fe36de4f','0','2','0'), ('33403','18','','10379','Plugins active','jenkins.plugins.active','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of plugins in the Jenkins instance that started successfully.','0','30d','0','','44491','','','','','200','1','0','','','0','0','0','0','0','0','0','e3fae3ddf1fa47db9925106098bc31eb','0','2','0'), ('33404','18','','10379','Job total, m5 rate','jenkins.job.total.m5.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which jobs are queued.','0','30d','0','','44490','','','','','200','1','0','','','0','0','0','0','0','0','0','58067833af494a66b4a44bc25ac17a0e','0','2','0'), ('33405','18','','10379','Job total, m1 rate','jenkins.job.total.m1.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which jobs are queued.','0','30d','0','','44490','','','','','200','1','0','','','0','0','0','0','0','0','0','19c5a45a673c4af2be5808faf35a3892','0','2','0'), ('33406','18','','10379','Job total duration, p95','jenkins.job.total.duration.p95','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The total time which jobs spend from entering the build queue to completing building.','0','30d','0','','44490','','','','','200','1','0','','','0','0','0','0','0','0','0','dbc0aeedccb740b4a7c1b5f84eb2513b','0','2','0'), ('33407','18','','10379','Job total duration, median','jenkins.job.total.duration.p50','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The total time which jobs spend from entering the build queue to completing building.','0','30d','0','','44490','','','','','200','1','0','','','0','0','0','0','0','0','0','975124750e3e4c969711185ea58bcb49','0','2','0'), ('33408','18','','10379','Jobs scheduled, m5 rate','jenkins.job.scheduled.m5.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which jobs are scheduled. If a job is already in the queue and an identical request for scheduling the job is received then Jenkins will coalesce the two requests. This metric gives a reasonably pure measure of the load requirements of the Jenkins master as it is unaffected by the number of executors available to the system.','0','30d','0','','44489','','','','','200','1','0','','','0','0','0','0','0','0','0','bc2de2ce8e9d474d8e2591d76adecabe','0','2','0'), ('33410','18','','10379','Plugins inactive','jenkins.plugins.inactive','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of plugins in the Jenkins instance that are not currently enabled.','0','30d','0','','44491','','','','','200','1','0','','','0','0','0','0','0','0','0','0b2ad285bc2b4ef5a01633d57099434c','0','2','0'), ('33411','18','','10379','Plugins failed','jenkins.plugins.failed','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of plugins in the Jenkins instance that failed to start. A value other than 0 is typically indicative of a potential issue within the Jenkins installation that will either be solved by explicitly disabling the plugin(s) or by resolving the plugin dependency issues.','0','30d','0','','44491','','','','','200','1','0','','','0','0','0','0','0','0','0','e8a9f7bd98004939b75749c29227859c','0','2','0'), ('33412','18','','10379','Build queue, stuck','jenkins.queue.stuck','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of jobs that are in the Jenkins build queue and currently in the blocked state.','0','30d','0','','44491','','','','','200','1','0','','','0','0','0','0','0','0','0','90387bb3b3384adcafa66b4c9543d1ab','0','2','0'), ('33417','18','','10379','Uptime','jenkins.system.uptime','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of seconds since the Jenkins master JVM started.','0','30d','0','','44491','','','','','200','1','0','','','0','0','0','0','0','0','0','ca81bc28fbc14dbc9eb7b0fa6a46a65d','0','2','0'), ('33418','18','','10379','CPU Load','jenkins.system.cpu.load','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The system load on the Jenkins master as reported by the JVM''s Operating System JMX bean. The calculation of system load is operating system dependent. Typically this is the sum of the number of processes that are currently running plus the number that are waiting to run. This is typically comparable against the number of CPU cores.','0','30d','0','','44491','','','','','200','1','0','','','0','0','0','0','0','0','0','9c97e12efa624176b95aef3413aec1a8','0','2','0'), ('33419','18','','10379','Build queue, size','jenkins.queue.size','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of jobs that are in the Jenkins build queue.','0','30d','0','','44491','','','','','200','1','0','','','0','0','0','0','0','0','0','f99d731f466445dcb3aeda3f306a5de6','0','2','0'), ('33420','18','','10379','Job queuing, m5 rate','jenkins.job.queuing.m5.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which jobs are queued.','0','30d','0','','44490','','','','','200','1','0','','','0','0','0','0','0','0','0','10c80e91b2214ab2b43458a1d65c3a18','0','2','0'), ('33421','18','','10379','Build queue, pending','jenkins.queue.pending','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of jobs that are in the Jenkins build queue and currently in the blocked state.','0','30d','0','','44491','','','','','200','1','0','','','0','0','0','0','0','0','0','456ddd17c4044d578a11d8cac80d229b','0','2','0'), ('33422','18','','10379','Build queue, buildable','jenkins.queue.buildable','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of jobs that are in the Jenkins build queue and currently in the blocked state.','0','30d','0','','44491','','','','','200','1','0','','','0','0','0','0','0','0','0','1160d4150fa840b5a4628eeb6e8cdaab','0','2','0'), ('33423','18','','10379','Build queue, blocked','jenkins.queue.blocked','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of jobs that are in the Jenkins build queue and currently in the blocked state.','0','30d','0','','44491','','','','','200','1','0','','','0','0','0','0','0','0','0','db758cf660c14d69b37f724545de7662','0','2','0'), ('33424','18','','10379','Projects count','jenkins.project.count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of projects.','0','30d','0','','44491','','','','','200','1','0','','','0','0','0','0','0','0','0','a5b58789e54b43f896d4d7e64f8415d3','0','2','0'), ('33425','18','','10379','Plugins with update','jenkins.plugins.with_update','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of plugins in the Jenkins instance that have a newer version reported as available in the current Jenkins update center metadata held by Jenkins. This value is not indicative of an issue with Jenkins but high values can be used as a trigger to review the plugins with updates with a view to seeing whether those updates potentially contain fixes for issues that could be affecting your Jenkins instance.','0','30d','0','','44491','','','','','200','1','0','','','0','0','0','0','0','0','0','f1bf69d134a848178b21a050c830aa8a','0','2','0'), ('33427','18','','10379','Job scheduled, m1 rate','jenkins.job.scheduled.m1.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which jobs are scheduled. If a job is already in the queue and an identical request for scheduling the job is received then Jenkins will coalesce the two requests. This metric gives a reasonably pure measure of the load requirements of the Jenkins master as it is unaffected by the number of executors available to the system.','0','30d','0','','44489','','','','','200','1','0','','','0','0','0','0','0','0','0','ff842a648bcc4aaa89f2200e0d4bb661','0','2','0'), ('33428','18','','10379','Job queuing duration, p95','jenkins.job.queuing.duration.p95','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The total time which jobs spend in the build queue.','0','30d','0','','44490','','','','','200','1','0','','','0','0','0','0','0','0','0','f797a4698f1b41f885a8cdd3d98924e2','0','2','0'), ('33429','18','','10379','Job queuing, m1 rate','jenkins.job.queuing.m1.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which jobs are queued.','0','30d','0','','44490','','','','','200','1','0','','','0','0','0','0','0','0','0','d9f785e6f2e148ee98d922524f014037','0','2','0'), ('33430','18','','10379','HTTP response 201, rate','jenkins.http.created.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which the Jenkins master Web UI is responding to requests with an HTTP/201 status code.','0','30d','0','','44489','','','','','200','1','0','','','0','0','0','0','0','0','0','b3d77a909487431bab2b0b7f7c89bf90','0','2','0'), ('33431','18','','10379','HTTP response other, rate','jenkins.http.other.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which the Jenkins master Web UI is responding to requests with a non-informational status code that is not in the list: HTTP/200, HTTP/201, HTTP/204, HTTP/304, HTTP/400, HTTP/403, HTTP/404, HTTP/500, or HTTP/503.','0','30d','0','','44489','','','','','200','1','0','','','0','0','0','0','0','0','0','afdab05416084124887bcec705f2603d','0','2','0'), ('33432','18','','10379','HTTP response 200, rate','jenkins.http.ok.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which the Jenkins master Web UI is responding to requests with an HTTP/200 status code.','0','30d','0','','44489','','','','','200','1','0','','','0','0','0','0','0','0','0','c4c1dfcf2d904985a0ca6956724adf41','0','2','0'), ('33433','18','','10379','HTTP response 204, rate','jenkins.http.no_content.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which the Jenkins master Web UI is responding to requests with an HTTP/204 status code.','0','30d','0','','44489','','','','','200','1','0','','','0','0','0','0','0','0','0','2a79c1139b44402fa8f31d6b61a0d739','0','2','0'), ('33434','18','','10379','HTTP response 304, rate','jenkins.http.not_modified.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which the Jenkins master Web UI is responding to requests with an HTTP/304 status code.','0','30d','0','','44489','','','','','200','1','0','','','0','0','0','0','0','0','0','1a9a6b663aaa48bbacfc56c1569521c0','0','2','0'), ('33435','18','','10379','HTTP response 404, rate','jenkins.http.not_found.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which the Jenkins master Web UI is responding to requests with an HTTP/404 status code.','0','30d','0','','44489','','','','','200','1','0','','','0','0','0','0','0','0','0','22b8fc85f441484cad8b2641748d75a1','0','2','0'), ('33436','18','','10379','HTTP response 403, rate','jenkins.http.forbidden.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which the Jenkins master Web UI is responding to requests with an HTTP/403 status code.','0','30d','0','','44489','','','','','200','1','0','','','0','0','0','0','0','0','0','3265515d32f840e9ade25c0d2892b372','0','2','0'), ('33437','18','','10379','HTTP response 400, rate','jenkins.http.bad_request.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which the Jenkins master Web UI is responding to requests with an HTTP/400 status code.','0','30d','0','','44489','','','','','200','1','0','','','0','0','0','0','0','0','0','d95c9a1b19ed4da38bec3217eee2e590','0','2','0'), ('33438','18','','10379','HTTP requests, median','jenkins.http.requests_p50.rate','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The time spent generating the corresponding responses.','0','30d','0','','44490','','','','','200','1','0','','','0','0','0','0','0','0','0','9a4ad856db02403b8b523179bf4b3699','0','2','0'), ('33440','18','','10379','Executors in use','jenkins.executor.in_use','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of executors available to Jenkins that are currently in use.','0','30d','0','','44491','','','','','200','1','0','','','0','0','0','0','0','0','0','197470fead89470f94a910e9405498fe','0','2','0'), ('33441','18','','10379','Executors free','jenkins.executor.free','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of executors available to Jenkins that are not currently in use.','0','30d','0','','44491','','','','','200','1','0','','','0','0','0','0','0','0','0','7b672586e5194370a0c141570174d21a','0','2','0'), ('33442','18','','10379','Executors count','jenkins.executor.count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of executors available to Jenkins. This is corresponds to the sum of all the executors of all the online nodes.','0','30d','0','','44491','','','','','200','1','0','','','0','0','0','0','0','0','0','26902068daf94cf3a5aec360be9abc18','0','2','0'), ('33445','18','','10379','HTTP requests, rate','jenkins.http.requests.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which the Jenkins master Web UI is receiving requests.','0','30d','0','','44490','','','','','200','1','0','','','0','0','0','0','0','0','0','5169a969034b4da29eaab59c7c3aa719','0','2','0'), ('33446','18','','10379','HTTP requests, p95','jenkins.http.requests_p95.rate','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The time spent generating the corresponding responses.','0','30d','0','','44490','','','','','200','1','0','','','0','0','0','0','0','0','0','6766b45e349e4a4d88593207df6b35ba','0','2','0'), ('33447','18','','10379','File descriptor ratio','jenkins.descriptor.ratio','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The ratio of used to total file descriptors','0','30d','0','','44491','','','','','200','1','0','','','0','0','0','0','0','0','0','790aedce97be4e7dae6f4de8238340a7','0','2','0'), ('33448','18','','10379','Job buildable, m5 rate','jenkins.job.buildable.m5.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which jobs in the build queue enter the buildable state.','0','30d','0','','44490','','','','','200','1','0','','','0','0','0','0','0','0','0','0e1d712b9a854922b28e3ddf871bf7b1','0','2','0'), ('33449','18','','10379','Job queuing duration, median','jenkins.job.queuing.duration.p50','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The total time which jobs spend in the build queue.','0','30d','0','','44490','','','','','200','1','0','','','0','0','0','0','0','0','0','af40fcdb50c545bd9b49a6f4b7a26fea','0','2','0'), ('33450','18','','10379','Jobs count','jenkins.job.count.value','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of jobs in Jenkins.','0','30d','0','','44491','','','','','200','1','0','','','0','0','0','0','0','0','0','39bc5fdfbe884c72816d34045438ea7d','0','2','0'), ('33451','18','','10379','Job building, m5 rate','jenkins.job.building.m5.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which jobs are built.','0','30d','0','','44490','','','','','200','1','0','','','0','0','0','0','0','0','0','36f551fd55814000b76b5b63c05051d7','0','2','0'), ('33452','18','','10379','Job building, m1 rate','jenkins.job.building.m1.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which jobs are built.','0','30d','0','','44490','','','','','200','1','0','','','0','0','0','0','0','0','0','08ebe2359c4f4134aaf610b50bcba8fe','0','2','0'), ('33453','18','','10379','Job building duration, p95','jenkins.job.building.duration.p95','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time which jobs spend building.','0','30d','0','','44490','','','','','200','1','0','','','0','0','0','0','0','0','0','61fb13ee0d0f4e1bb5fdab1ea35371ef','0','2','0'), ('33454','18','','10379','Job building duration, median','jenkins.job.building.duration.p50','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time which jobs spend building.','0','30d','0','','44490','','','','','200','1','0','','','0','0','0','0','0','0','0','c0c0335fd8654cfaa9534c816fbee967','0','2','0'), ('33455','18','','10379','Job buildable, m1 rate','jenkins.job.buildable.m1.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which jobs in the build queue enter the buildable state.','0','30d','0','','44490','','','','','200','1','0','','','0','0','0','0','0','0','0','1d8e643a0ddc44aa951ee516372e587b','0','2','0'), ('33456','18','','10379','HTTP response 500, rate','jenkins.http.server_error.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which the Jenkins master Web UI is responding to requests with an HTTP/500 status code.','0','30d','0','','44489','','','','','200','1','0','','','0','0','0','0','0','0','0','320cc4d7fafc4c87ab8d92bd76901982','0','2','0'), ('33457','18','','10379','Job buildable duration, p95','jenkins.job.buildable.duration.p95','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time which jobs spend in the buildable state.','0','30d','0','','44490','','','','','200','1','0','','','0','0','0','0','0','0','0','9047881efcb84822b7da852f4c66dbff','0','2','0'), ('33458','18','','10379','Job buildable duration, median','jenkins.job.buildable.duration.p50','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time which jobs spend in the buildable state.','0','30d','0','','44490','','','','','200','1','0','','','0','0','0','0','0','0','0','3c2ba170a89040089b226871512e237b','0','2','0'), ('33459','18','','10379','Job blocked, m5 rate','jenkins.job.blocked.m5.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which jobs in the build queue enter the blocked state.','0','30d','0','','44490','','','','','200','1','0','','','0','0','0','0','0','0','0','d0a242007b424a0e80dbfb90577eaab2','0','2','0'), ('33460','18','','10379','Job blocked, m1 rate','jenkins.job.blocked.m1.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which jobs in the build queue enter the blocked state.','0','30d','0','','44490','','','','','200','1','0','','','0','0','0','0','0','0','0','ca4e141c83344aeeb32d9ea2d9017cbf','0','2','0'), ('33461','18','','10379','Job blocked duration, p95','jenkins.job.blocked.duration.p95','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time which jobs spend in the blocked state.','0','30d','0','','44490','','','','','200','1','0','','','0','0','0','0','0','0','0','859a7845f3d8483ba3378f7077509784','0','2','0'), ('33462','18','','10379','Job blocked duration, median','jenkins.job.blocked.duration.p50','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'The amount of time which jobs spend in the blocked state.','0','30d','0','','44490','','','','','200','1','0','','','0','0','0','0','0','0','0','ecca8e2341c14ede9e397ddc39df5592','0','2','0'), ('33463','18','','10379','HTTP response 503, rate','jenkins.http.service_unavailable.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The rate at which the Jenkins master Web UI is responding to requests with an HTTP/503 status code.','0','30d','0','','44489','','','','','200','1','0','','','0','0','0','0','0','0','0','d4ad6574138443a18e721f3d518d5e61','0','2','0'), ('33464','18','','10379','Version','jenkins.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of Jenkins server.','0','30d','0','','44491','','','','','200','1','0','','','0','0','0','0','0','0','0','ae836e5439cf494a9ed0681836da854e','0','2','0'), ('33467','18','','10379','Computer [{#DISPLAY_NAME}]: Available physical memory','jenkins.computer.available_physical_memory[{#DISPLAY_NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total physical memory of the system, available bytes.','0','30d','0','','44492','','','','','200','1','0','','','0','0','0','0','0','0','0','fe0191db274944699107010f7f7c8091','0','2','0'), ('33468','18','','10379','Computer [{#DISPLAY_NAME}]: Available swap space','jenkins.computer.available_swap_space[{#DISPLAY_NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Available swap space in bytes.','0','30d','0','','44492','','','','','200','1','0','','','0','0','0','0','0','0','0','4d00cdff0ed0442ab419754264d78ec9','0','2','0'), ('33469','18','','10379','Computer [{#DISPLAY_NAME}]: Clock difference','jenkins.computer.clock_difference[{#DISPLAY_NAME}]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The clock difference between the master and nodes.','0','30d','0','','44492','','','','','200','1','0','','','0','0','0','0','0','0','0','ff5a78519c834902ae607832b67f2558','0','2','0'), ('33470','18','','10379','Computer [{#DISPLAY_NAME}]: Available disk space','jenkins.computer.disk_space[{#DISPLAY_NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The available disk space of $JENKINS_HOME on agent.','0','30d','0','','44492','','','','','200','1','0','','','0','0','0','0','0','0','0','4dcf897c9c2c4ce58483ef6de6786000','0','2','0'), ('33471','18','','10379','Computer [{#DISPLAY_NAME}]: Idle','jenkins.computer.idle[{#DISPLAY_NAME}]','0','31d','365d','0','3','','','','',NULL,'213','','','0','','','','','2',NULL,'Returns true if all the executors of this computer are idle.','0','30d','0','','44492','','','','','200','1','0','','','0','0','0','0','0','0','0','1bca0941b2d24de5980eeb5cb3516b2c','0','2','0'), ('33472','18','','10379','Computer [{#DISPLAY_NAME}]: Executors','jenkins.computer.numExecutors[{#DISPLAY_NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The maximum number of concurrent builds that Jenkins may perform on this node.','0','30d','0','','44492','','','','','200','1','0','','','0','0','0','0','0','0','0','38a5eb0b4fb44b93b9f764edcd3f6c49','0','2','0'), ('33473','18','','10379','Computer [{#DISPLAY_NAME}]: Offline cause reason','jenkins.computer.offline.reason[{#DISPLAY_NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'If the computer was offline (either temporarily or not), will return the cause as a string (without user info). Empty string if the system was put offline without given a cause.','0','30d','0','','44492','','','','','200','1','0','','','0','0','0','0','0','0','0','8ddcfbf9b9d84fb290e9f30db7406ea1','0','2','0'), ('33474','18','','10379','Computer [{#DISPLAY_NAME}]: Response time average','jenkins.computer.response_time[{#DISPLAY_NAME}]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The round trip network response time from the master to the agent','0','30d','0','','44492','','','','','200','1','0','','','0','0','0','0','0','0','0','a2068445af644089be8501da5b02144a','0','2','0'), ('33475','18','','10379','Computer [{#DISPLAY_NAME}]: State','jenkins.computer.state[{#DISPLAY_NAME}]','0','31d','365d','0','3','','','','',NULL,'212','','','0','','','','','2',NULL,'Represents the actual online/offline state. Node description: {#DESCRIPTION}','0','30d','0','','44492','','','','','200','1','0','','','0','0','0','0','0','0','0','b8af2fb1f6d646978739b9c44ea85a27','0','2','0'), ('33476','18','','10379','Computer [{#DISPLAY_NAME}]: Temporarily offline','jenkins.computer.temp_offline[{#DISPLAY_NAME}]','0','31d','365d','0','3','','','','',NULL,'213','','','0','','','','','2',NULL,'Returns true if this node is marked temporarily offline.','0','30d','0','','44492','','','','','200','1','0','','','0','0','0','0','0','0','0','f1318d38fa5a469a999265896e4546dd','0','2','0'), ('33477','18','','10379','Computer [{#DISPLAY_NAME}]: Available temp space','jenkins.computer.temp_space[{#DISPLAY_NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The available disk space of the temporary directory. Java tools and tests/builds often create files in the temporary directory, and may not function properly if there''s no available space.','0','30d','0','','44492','','','','','200','1','0','','','0','0','0','0','0','0','0','5704446ab4f34eb2bc33b8ed6d8da691','0','2','0'), ('33478','18','','10379','Computer [{#DISPLAY_NAME}]: Total physical memory','jenkins.computer.total_physical_memory[{#DISPLAY_NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total physical memory of the system, in bytes.','0','30d','0','','44492','','','','','200','1','0','','','0','0','0','0','0','0','0','5c3dc14eb6264153a0cd7ddd8effb869','0','2','0'), ('33479','18','','10379','Computer [{#DISPLAY_NAME}]: Total swap space','jenkins.computer.total_swap_space[{#DISPLAY_NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of swap space in bytes.','0','30d','0','','44492','','','','','200','1','0','','','0','0','0','0','0','0','0','c18b82a205d345fa9c1b92e59521735a','0','2','0'), ('33480','18','','10379','Job [{#NAME}]: Health score','jenkins.build.health[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Represents health of project. A number between 0-100. Job Description: {#DESCRIPTION} Job Url: {#URL}','0','30d','0','','44493','','','','','200','1','0','','','0','0','0','0','0','0','0','b2a99bad873046cda1d5b839aa43ba91','0','2','0'), ('33481','18','','10379','Job [{#NAME}]: Last Build duration','jenkins.last_build.duration[{#NAME}]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Build duration (in seconds).','0','30d','0','','44493','','','','','200','1','0','','','0','0','0','0','0','0','0','a0fa8864c536408895f13758eacb486f','0','2','0'), ('33482','18','','10379','Job [{#NAME}]: Last Build number','jenkins.last_build.number[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Details: {#URL}/lastBuild/','0','30d','0','','44493','','','','','200','1','0','','','0','0','0','0','0','0','0','338020d76f8e4b28b1e1c02f97b889f4','0','2','0'), ('33483','18','','10379','Job [{#NAME}]: Last Build result','jenkins.last_build.result[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','44493','','','','','200','1','0','','','0','0','0','0','0','0','0','a3a70807138548a29e9212f48f07946d','0','2','0'), ('33484','18','','10379','Job [{#NAME}]: Last Build timestamp','jenkins.last_build.timestamp[{#NAME}]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','44493','','','','','200','1','0','','','0','0','0','0','0','0','0','d53a3f165052440098d087d4f2b868b6','0','2','0'), ('33485','18','','10379','Job [{#NAME}]: Last Failed Build duration','jenkins.last_failed_build.duration[{#NAME}]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Build duration (in seconds).','0','30d','0','','44493','','','','','200','1','0','','','0','0','0','0','0','0','0','907e48fadc6e4a04a076ca9368f73395','0','2','0'), ('33486','18','','10379','Job [{#NAME}]: Last Failed Build number','jenkins.last_failed_build.number[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Details: {#URL}/lastFailedBuild/','0','30d','0','','44493','','','','','200','1','0','','','0','0','0','0','0','0','0','2e4afc599bf54ea29b1b8734f5aea121','0','2','0'), ('33487','18','','10379','Job [{#NAME}]: Last Failed Build timestamp','jenkins.last_failed_build.timestamp[{#NAME}]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','44493','','','','','200','1','0','','','0','0','0','0','0','0','0','e1885df4d7a440c0805207f0afb28cb5','0','2','0'), ('33488','18','','10379','Job [{#NAME}]: Last Successful Build duration','jenkins.last_successful_build.duration[{#NAME}]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Build duration (in seconds).','0','30d','0','','44493','','','','','200','1','0','','','0','0','0','0','0','0','0','d750d312fa424215931375963100217d','0','2','0'), ('33489','18','','10379','Job [{#NAME}]: Last Successful Build number','jenkins.last_successful_build.number[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Details: {#URL}/lastSuccessfulBuild/','0','30d','0','','44493','','','','','200','1','0','','','0','0','0','0','0','0','0','701c272b59c046e4948a7dc814374d59','0','2','0'), ('33490','18','','10379','Job [{#NAME}]: Last Successful Build timestamp','jenkins.last_successful_build.timestamp[{#NAME}]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','44493','','','','','200','1','0','','','0','0','0','0','0','0','0','1adbf52ee3f946118f8a37cf2487262d','0','2','0'), ('34325','18','','10327','MSSQL DB ''{#DBNAME}'': Last diff backup duration','mssql.backup.diff.duration["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Duration of the last differential backup.','0','30d','0','','45098','','','','','200','1','0','','','0','0','0','0','0','0','0','9c9dab20d8fa46f888c6aa7c7c9bf1b9','0','2','0'), ('34326','18','','10327','MSSQL DB ''{#DBNAME}'': Last diff backup (time ago)','mssql.backup.diff["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of time since the last differential backup.','0','30d','0','','45098','','','','','200','1','0','','','0','0','0','0','0','0','0','bd663e1e9b40469cb4ca430186b049db','0','2','0'), ('34327','18','','10327','MSSQL DB ''{#DBNAME}'': Last log backup (time ago)','mssql.backup.log["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of time since the last log backup.','0','30d','0','','45098','','','','','200','1','0','','','0','0','0','0','0','0','0','c5e796bc904848efb2557c8a9a07b828','0','2','0'), ('34328','18','','10327','MSSQL DB ''{#DBNAME}'': Last log backup duration','mssql.backup.log.duration["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Duration of the last log backup.','0','30d','0','','45098','','','','','200','1','0','','','0','0','0','0','0','0','0','218241c7c5a648a59021999f97516349','0','2','0'), ('34329','18','','10327','MSSQL DB ''{#DBNAME}'': Last full backup (time ago)','mssql.backup.full["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of time since the last full backup.','0','30d','0','','45098','','','','','200','1','0','','','0','0','0','0','0','0','0','06d0ac1eeca843a289defa1cf1d728a3','0','2','0'), ('34330','18','','10327','MSSQL DB ''{#DBNAME}'': Last full backup duration','mssql.backup.full.duration["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Duration of the last full backup.','0','30d','0','','45098','','','','','200','1','0','','','0','0','0','0','0','0','0','52929d988ad34aac945ff2ce9e448261','0','2','0'), ('34331','18','','10327','MSSQL Job ''{#JOBNAME}'': Last run date-time','mssql.job.lastrundatetime["{#JOBNAME}"]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'The last date-time of the job run.','0','30d','0','','45100','','','','','200','1','0','','','0','0','0','0','0','0','0','3ceba63a77e24628a2ee9439d574bac5','0','2','0'), ('34332','18','','10327','MSSQL Job ''{#JOBNAME}'': Last run status message','mssql.job.lastrunstatusmessage["{#JOBNAME}"]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'An informational message about the last run of the job.','0','30d','0','','45100','','','','','200','1','0','','','0','0','0','0','0','0','0','b9984c1238554a559b444853e9f66653','0','2','0'), ('34333','18','','10327','MSSQL Job ''{#JOBNAME}'': Next run date-time','mssql.job.nextrundatetime["{#JOBNAME}"]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'The next date-time of the job run.','0','30d','0','','45100','','','','','200','1','0','','','0','0','0','0','0','0','0','1c725adad98f44158b43127d4c5fb0f3','0','2','0'), ('34334','18','','10327','MSSQL Job ''{#JOBNAME}'': Run status','mssql.job.runstatus["{#JOBNAME}"]','0','31d','365d','0','3','','','','',NULL,'270','','','0','','','','','2',NULL,'The possible values of the job status: 0 ⇒ Failed 1 ⇒ Succeeded 2 ⇒ Retry 3 ⇒ Canceled 4 ⇒ Running','0','30d','0','','45100','','','','','200','1','0','','','0','0','0','0','0','0','0','eaa43a261e114979af236698ea7ae32c','0','2','0'), ('34335','18','','10327','MSSQL Job ''{#JOBNAME}'': Run duration','mssql.job.run_duration["{#JOBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Duration of the last-run job.','0','30d','0','','45100','','','','','200','1','0','','','0','0','0','0','0','0','0','69da58fe4c7e42028fa96388df526103','0','2','0'), ('34342','18','','10397','Cluster metrics discovery','pd.cluster.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery cluster specific metrics.','0','7d','0','','45111','','','','','200','1','0','','','0','0','0','0','0','0','0','cd1f27cf5f1d4f6f84032386ec7f8abb','0','2','0'), ('34343','18','','10397','gRPC commands discovery','pd.grpc_command.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery grpc commands specific metrics.','0','7d','0','','45112','','','','','200','1','0','','','0','0','0','0','0','0','0','113c6ba7d7f74051b042241441c43db0','0','2','0'), ('34344','18','','10397','Region discovery','pd.region.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery region specific metrics.','0','7d','0','','45113','','','','','200','1','0','','','0','0','0','0','0','0','0','2cb28d7c862d442a84b5942eb4b54e2f','0','2','0'), ('34345','18','','10397','Region labels discovery','pd.region_labels.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery region labels specific metrics.','0','7d','0','','45114','','','','','200','1','0','','','0','0','0','0','0','0','0','771ba9e078a14ca489eb2acf906080e9','0','2','0'), ('34346','18','','10397','Region status discovery','pd.region_status.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery region status specific metrics.','0','7d','0','','45115','','','','','200','1','0','','','0','0','0','0','0','0','0','ffbf9adaa72842fdbb49c008625c1575','0','2','0'), ('34347','18','','10397','Running scheduler discovery','pd.scheduler.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery scheduler specific metrics.','0','7d','0','','45116','','','','','200','1','0','','','0','0','0','0','0','0','0','b4b8007810ad4f7ba8da212cdde5b71b','0','2','0'), ('34348','18','','10397','Number of regions','pd.cluster_status.leader_count[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total count of cluster Regions.','0','30d','0','','45111','','','','','200','1','0','','','0','0','0','0','0','0','0','fe49e1de54214fb0ac882feb42fdee3b','0','2','0'), ('34349','18','','10397','Current peer count','pd.cluster_status.region_count[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current count of all cluster peers.','0','30d','0','','45111','','','','','200','1','0','','','0','0','0','0','0','0','0','0950ba514e05447c8cfe726ec2d76944','0','2','0'), ('34350','18','','10397','Storage capacity','pd.cluster_status.storage_capacity[{#SINGLETON}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total storage capacity for this TiDB cluster.','0','30d','0','','45111','','','','','200','1','0','','','0','0','0','0','0','0','0','d39f58372e3f464c87b2ec42acdf2061','0','2','0'), ('34351','18','','10397','Storage size','pd.cluster_status.storage_size[{#SINGLETON}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The storage size that is currently used by the TiDB cluster.','0','30d','0','','45111','','','','','200','1','0','','','0','0','0','0','0','0','0','c72e6a2f89d041c4bf764021b9bc182c','0','2','0'), ('34352','18','','10397','Disconnect stores','pd.cluster_status.store_disconnected[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of disconnected stores.','0','30d','0','','45111','','','','','200','1','0','','','0','0','0','0','0','0','0','517cea991add45319d30047ac96fd9e4','0','2','0'), ('34353','18','','10397','Down stores','pd.cluster_status.store_down[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of down stores.','0','30d','0','','45111','','','','','200','1','0','','','0','0','0','0','0','0','0','7125a7c858264f339e879c1389c6c027','0','2','0'), ('34354','18','','10397','Lowspace stores','pd.cluster_status.store_low_space[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of low space stores.','0','30d','0','','45111','','','','','200','1','0','','','0','0','0','0','0','0','0','c3bd9d1e0f6c427ab5232e57769030d1','0','2','0'), ('34355','18','','10397','Offline stores','pd.cluster_status.store_offline[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','45111','','','','','200','1','0','','','0','0','0','0','0','0','0','3c24fb49463b45f199dbc3955e87d01b','0','2','0'), ('34356','18','','10397','Tombstone stores','pd.cluster_status.store_tombstone[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of tombstone stores.','0','30d','0','','45111','','','','','200','1','0','','','0','0','0','0','0','0','0','476a1b6e3c9b4b41ae1637f0e12801c9','0','2','0'), ('34357','18','','10397','Unhealth stores','pd.cluster_status.store_unhealth[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of unhealthy stores.','0','30d','0','','45111','','','','','200','1','0','','','0','0','0','0','0','0','0','89db2b996fbe41bdb6b82ccf75139090','0','2','0'), ('34358','18','','10397','Normal stores','pd.cluster_status.store_up[{#SINGLETON}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of healthy storage instances.','0','30d','0','','45111','','','','','200','1','0','','','0','0','0','0','0','0','0','ff80108e2a5e45779a428a6fd31ea089','0','2','0'), ('34359','18','','10397','gRPC Commands: {#GRPC_METHOD}, rate','pd.grpc_command.rate[{#GRPC_METHOD}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The rate per command type at which gRPC commands are completed.','0','30d','0','','45112','','','','','200','1','0','','','0','0','0','0','0','0','0','7b96abc0e68a405ea5693f4f445936fe','0','2','0'), ('34364','18','','10397','Regions label: {#TYPE}','pd.region_labels[{#TYPE}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of Regions in different label levels.','0','30d','0','','45114','','','','','200','1','0','','','0','0','0','0','0','0','0','117efc3f2fe64c51a18cd3be162185ea','0','2','0'), ('34365','18','','10397','Regions status: {#TYPE}','pd.region_status[{#TYPE}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The health status of Regions indicated via the count of unusual Regions including pending peers, down peers, extra peers, offline peers, missing peers, learner peers and incorrect namespaces.','0','30d','0','','45115','','','','','200','1','0','','','0','0','0','0','0','0','0','45ef4940b0454492b70116d8958c9b11','0','2','0'), ('34366','18','','10397','Scheduler status: {#KIND}','pd.scheduler[{#KIND}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current running schedulers.','0','30d','0','','45116','','','','','200','1','0','','','0','0','0','0','0','0','0','c6748a20540f49b293795bc72480dda7','0','2','0'), ('34370','18','','10398','Total server query, rate','tidb.server_query.rate','0','31d','365d','0','0','','Qps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of queries per second on TiDB instance.','0','30d','0','','45120','','','','','200','1','0','','','0','0','0','0','0','0','0','938e7bb83c714e198db55f3bb009daaf','0','2','0'), ('34372','18','','10398','KV commands, rate','tidb.tikvclient_txn.rate','0','31d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of executed KV commands per second.','0','30d','0','','45118','','','','','200','1','0','','','0','0','0','0','0','0','0','8ddf164df8c9404ba9f7c0f87db3bc2f','0','2','0'), ('34373','18','','10398','TiClient region errors, rate','tidb.tikvclient_region_err.rate','0','31d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of region related errors returned by TiKV per second.','0','30d','0','','45118','','','','','200','1','0','','','0','0','0','0','0','0','0','c116313e63fa45d89bf44772cc9cb3b8','0','2','0'), ('34374','18','','10398','Lock resolves, rate','tidb.tikvclient_lock_resolver_action.rate','0','31d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of DDL tasks that are waiting.','0','30d','0','','45118','','','','','200','1','0','','','0','0','0','0','0','0','0','aef7cdfd07f1420c970f20c821fed8dd','0','2','0'), ('34375','18','','10398','KV backoff, rate','tidb.tikvclient_backoff.rate','0','31d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of errors returned by TiKV.','0','30d','0','','45118','','','','','200','1','0','','','0','0','0','0','0','0','0','8a63b326356f4fdbb9cb6e73437348be','0','2','0'), ('34380','18','','10398','SQL statements, rate','tidb.statement_total.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of SQL statements executed per second.','0','30d','0','','45119','','','','','200','1','0','','','0','0','0','0','0','0','0','fe8cf5e5c7704db797e76fd9d64e6d17','0','2','0'), ('34383','18','','10398','Total "error" server query, rate','tidb.server_query.error.rate','0','31d','365d','0','0','','Qps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of queries on TiDB instance per second with failure of command execution results.','0','30d','0','','45120','','','','','200','1','0','','','0','0','0','0','0','0','0','651140aae7334994a31d24568c08a9ab','0','2','0'), ('34384','18','','10398','Total "ok" server query, rate','tidb.server_query.ok.rate','0','31d','365d','0','0','','Qps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of queries on TiDB instance per second with success of command execution results.','0','30d','0','','45120','','','','','200','1','0','','','0','0','0','0','0','0','0','00374eab11a14ab1b4e636996519ab80','0','2','0'), ('34399','18','','10398','KV metrics discovery','tidb.kv_ops.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery KV specific metrics.','0','7d','0','','45118','','','','','200','1','0','','','0','0','0','0','0','0','0','4db735b652eb451d911f6dc01de6b1ba','0','2','0'), ('34400','18','','10398','QPS metrics discovery','tidb.qps.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery QPS specific metrics.','0','7d','0','','45120','','','','','200','1','0','','','0','0','0','0','0','0','0','bcaf700328b94b59b35cf5bfaf27d5ac','0','2','0'), ('34401','18','','10398','Statement metrics discovery','tidb.statement.discover','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery statement specific metrics.','0','7d','0','','45119','','','','','200','1','0','','','0','0','0','0','0','0','0','e3c23b94a9514389b37e3911f79db8f8','0','2','0'), ('34402','18','','10398','KV backoff discovery','tidb.tikvclient_backoff.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery KV backoff specific metrics.','0','7d','0','','45118','','','','','200','1','0','','','0','0','0','0','0','0','0','f9af6d56e612459583a1f5d3b4a7d61b','0','2','0'), ('34403','18','','10398','GC action results discovery','tidb.tikvclient_gc_action.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery GC action results metrics.','0','7d','0','','45118','','','','','200','1','0','','','0','0','0','0','0','0','0','72d1f090ce9c4f89b06e4195989e4b2b','0','2','0'), ('34404','18','','10398','Lock resolves discovery','tidb.tikvclient_lock_resolver_action.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery lock resolves specific metrics.','0','7d','0','','45118','','','','','200','1','0','','','0','0','0','0','0','0','0','a4f2e1902cc54f0db9e9c345c63285e2','0','2','0'), ('34405','18','','10398','KV Commands: {#TYPE}, rate','tidb.tikvclient_txn.rate[{#TYPE}]','0','31d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of executed KV commands per second.','0','30d','0','','45118','','','','','200','1','0','','','0','0','0','0','0','0','0','79b0a13b25c745d288c313c4197f2e5c','0','2','0'), ('34408','18','','10398','SQL statements: {#TYPE}, rate','tidb.statement.rate[{#TYPE}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of SQL statements executed per second.','0','30d','0','','45119','','','','','200','1','0','','','0','0','0','0','0','0','0','111ffa26edd247eb9325f5ab5f5f3f94','0','2','0'), ('34409','18','','10398','KV backoff: {#TYPE}, rate','tidb.tikvclient_backoff.rate[{#TYPE}]','0','31d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of TiDB operations that resolve locks per second. When TiDB''s read or write request encounters a lock, it tries to resolve the lock.','0','30d','0','','45118','','','','','200','1','0','','','0','0','0','0','0','0','0','a11cf69675654e7ca70dbab255509bb8','0','2','0'), ('34410','18','','10398','GC action result: {#TYPE}, rate','tidb.tikvclient_gc_action.rate[{#TYPE}]','0','31d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of results of GC-related operations per second.','0','30d','0','','45118','','','','','200','1','0','','','0','0','0','0','0','0','0','e3c19674dcdf4fdea1f8cd82e3df9f72','0','2','0'), ('34411','18','','10398','Lock resolves: {#TYPE}, rate','tidb.tikvclient_lock_resolver_action.rate[{#TYPE}]','0','31d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of TiDB operations that resolve locks per second. When TiDB''s read or write request encounters a lock, it tries to resolve the lock.','0','30d','0','','45118','','','','','200','1','0','','','0','0','0','0','0','0','0','2eebf2ccc44a4cadb0b70e153b70b3a2','0','2','0'), ('34415','18','','10399','Capacity size','tikv.store_size.capacity','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The capacity size of TiKV instance.','0','30d','0','','45122','','','','','200','1','0','','','0','0','0','0','0','0','0','1e0c1c071b604e77998797c2f9d41dfc','0','2','0'), ('34416','18','','10399','Available size','tikv.store_size.available','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The available capacity of TiKV instance.','0','30d','0','','45122','','','','','200','1','0','','','0','0','0','0','0','0','0','fbfaa0d967c049c0a1bbcec5afea4bf2','0','2','0'), ('34423','18','','10399','Scheduler: Commands total, rate','tikv.scheduler_commands.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of commands per second.','0','30d','0','','45123','','','','','200','1','0','','','0','0','0','0','0','0','0','62f856cf22804262aef64e9369049332','0','2','0'), ('34426','18','','10399','Server: failure messages total, rate','tikv.messages.failure.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of reporting failure messages per second.','0','30d','0','','45124','','','','','200','1','0','','','0','0','0','0','0','0','0','7afa5147a1e247a5b8914d8739d31f15','0','2','0'), ('34429','18','','10399','Total query, rate','tikv.grpc_msg.rate','0','31d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','0',NULL,'The total QPS in TiKV instance.','0','30d','0','','45125','','','','','200','1','0','','','0','0','0','0','0','0','0','fed3db7222fa41a8bf51d2ad860a22d4','0','2','0'), ('34437','18','','10399','Coprocessor: Requests, rate','tikv.coprocessor_request.rate','0','31d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of coprocessor requests per second.','0','30d','0','','45126','','','','','200','1','0','','','0','0','0','0','0','0','0','dbf8288b5cab4e8a95b5e7c4355676bd','0','2','0'), ('34440','18','','10399','Coprocessor metrics discovery','tikv.coprocessor.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery coprocessor metrics.','0','7d','0','','45126','','','','','200','1','0','','','0','0','0','0','0','0','0','f1c7de94679e40a4ac6f569e05ad61d0','0','2','0'), ('34441','18','','10399','QPS metrics discovery','tikv.qps.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery QPS metrics.','0','7d','0','','45125','','','','','200','1','0','','','0','0','0','0','0','0','0','39e4031ee41143ed9d0c84492f817125','0','2','0'), ('34442','18','','10399','Scheduler metrics discovery','tikv.scheduler.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery scheduler metrics.','0','7d','0','','45123','','','','','200','1','0','','','0','0','0','0','0','0','0','7168e631146546129284cbf9c52b2025','0','2','0'), ('34443','18','','10399','Server errors discovery','tikv.server_report_failure.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery server errors metrics.','0','7d','0','','45124','','','','','200','1','0','','','0','0','0','0','0','0','0','5ebd2e2131ab4a9f8ca63f0e490b04a3','0','2','0'), ('34444','18','','10399','Coprocessor: {#REQ_TYPE} requests, rate','tikv.coprocessor_request.rate[{#REQ_TYPE}]','0','31d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of coprocessor requests per second.','0','30d','0','','45127','','','','','200','1','0','','','0','0','0','0','0','0','0','ecbe08549fef42d5aad0369e861b4c20','0','2','0'), ('34445','18','','10399','Coprocessor: {#REQ_TYPE} errors, rate','tikv.coprocessor_request_error.rate[{#REQ_TYPE}]','0','31d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of push down request error per second.','0','30d','0','','45127','','','','','200','1','0','','','0','0','0','0','0','0','0','08060401409b4fff97430c595fec7b82','0','2','0'), ('34446','18','','10399','Coprocessor: {#REQ_TYPE} RocksDB ops, rate','tikv.coprocessor_rocksdb_perf.rate[{#REQ_TYPE}]','0','31d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of RocksDB internal operations from PerfContext per second.','0','30d','0','','45127','','','','','200','1','0','','','0','0','0','0','0','0','0','bff6ee970f7349edba6cac1cd0da70ed','0','2','0'), ('34447','18','','10399','Coprocessor: {#REQ_TYPE} scan keys, rate','tikv.coprocessor_scan_keys.rate[{#REQ_TYPE}]','0','31d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of scan keys observed per request per second.','0','30d','0','','45127','','','','','200','1','0','','','0','0','0','0','0','0','0','8ef93de8a25b4f35b2e54f6ced4a5bd2','0','2','0'), ('34448','18','','10399','Query: {#TYPE}, rate','tikv.grpc_msg.rate[{#TYPE}]','0','31d','365d','0','0','','Ops','','',NULL,NULL,'','','0','','','','','2',NULL,'The QPS per command in TiKV instance.','0','30d','0','','45125','','','','','200','1','0','','','0','0','0','0','0','0','0','3b1d1b10cee6465c822152072189ebbe','0','2','0'), ('34449','18','','10399','Scheduler: commands {#STAGE}, rate','tikv.scheduler_stage.rate[{#STAGE}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of commands on each stage per second.','0','30d','0','','45123','','','','','200','1','0','','','0','0','0','0','0','0','0','c4f902a0be5444b2babb1775b89a6827','0','2','0'), ('34450','18','','10399','Store_id {#STORE_ID}: failure messages "{#TYPE}", rate','tikv.messages.failure.rate[{#STORE_ID},{#TYPE}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of reporting failure messages. The metric has two labels: type and store_id. type represents the failure type, and store_id represents the destination peer store id.','0','30d','0','','45124','','','','','200','1','0','','','0','0','0','0','0','0','0','064e74b5484e42e4acf3122c8ead4826','0','2','0'), ('35104','18','','10308','Backend {#PXNAME}: Number of active servers','haproxy.backend.act[{#PXNAME},{#SVNAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of active servers.','0','30d','0','','44726','','','','','200','1','0','','','0','0','0','0','0','0','0','1ee660a3cfbd4e76a20a32524cdb707f','0','2','0'), ('35105','18','','10308','Backend {#PXNAME}: Number of responses with codes 5xx per second','haproxy.backend.hrsp_5xx.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of HTTP server errors per second.','0','30d','0','','44726','','','','','200','1','0','','','0','0','0','0','0','0','0','3a3f40a93c184673bdbd220add5ef458','0','2','0'), ('35106','18','','10308','Backend {#PXNAME}: Weight','haproxy.backend.weight[{#PXNAME},{#SVNAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total effective weight.','0','30d','0','','44726','','','','','200','1','0','','','0','0','0','0','0','0','0','21cc9c7a1b7042f0bb14eeab91464ae8','0','2','0'), ('35107','18','','10308','Backend {#PXNAME}: Sessions per second','haproxy.backend.stot.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Cumulative number of sessions (end-to-end connections) per second.','0','30d','0','','44726','','','','','200','1','0','','','0','0','0','0','0','0','0','d11c9b4c7027475e897456e712675cc9','0','2','0'), ('35108','18','','10308','Backend {#PXNAME}: Number of responses with codes 4xx per second','haproxy.backend.hrsp_4xx.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of HTTP client errors per second.','0','30d','0','','44726','','','','','200','1','0','','','0','0','0','0','0','0','0','221ef133420f4140a17146eb976744eb','0','2','0'), ('35109','18','','10308','Backend {#PXNAME}: Number of backup servers','haproxy.backend.bck[{#PXNAME},{#SVNAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of backup servers.','0','30d','0','','44726','','','','','200','1','0','','','0','0','0','0','0','0','0','6c4b8a679428455aadbd307162635e6e','0','2','0'), ('35110','18','','10308','Backend {#PXNAME}: Number of responses with codes 3xx per second','haproxy.backend.hrsp_3xx.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of HTTP redirections per second.','0','30d','0','','44726','','','','','200','1','0','','','0','0','0','0','0','0','0','24de211953f8480c9e1118abde731344','0','2','0'), ('35111','18','','10308','Backend {#PXNAME}: Number of responses with codes 2xx per second','haproxy.backend.hrsp_2xx.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of successful HTTP responses per second.','0','30d','0','','44726','','','','','200','1','0','','','0','0','0','0','0','0','0','2b02a86c01a245859ad4305d25569ab0','0','2','0'), ('35112','18','','10308','Backend {#PXNAME}: Number of responses with codes 1xx per second','haproxy.backend.hrsp_1xx.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of informational HTTP responses per second.','0','30d','0','','44726','','','','','200','1','0','','','0','0','0','0','0','0','0','a32d07355a9c4e9f9f63bac4ef2ef342','0','2','0'), ('35113','18','','10308','Backend {#PXNAME}: Outgoing traffic','haproxy.backend.bout.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bits sent by the backend','0','30d','0','','44726','','','','','200','1','0','','','0','0','0','0','0','0','0','fc353e7b680648698ecf949f784ca0ce','0','2','0'), ('35114','18','','10308','Backend {#PXNAME}: Incoming traffic','haproxy.backend.bin.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bits received by the backend','0','30d','0','','44726','','','','','200','1','0','','','0','0','0','0','0','0','0','7d5a7b04e836417b96f2301d91fabab4','0','2','0'), ('35115','18','','10308','Frontend {#PXNAME}: Status','haproxy.frontend.status[{#PXNAME},{#SVNAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Possible values: OPEN, STOP. When Status is OPEN, the frontend is operating normally and ready to receive traffic.','0','30d','0','','44727','','','','','200','1','0','','','0','0','0','0','0','0','0','5a48a087c07c4cbbaf0332930d59244b','0','2','0'), ('35116','18','','10308','{#PXNAME} {#SVNAME}: Server is active','haproxy.server.act[{#PXNAME},{#SVNAME}]','0','31d','365d','0','3','','','','',NULL,'342','','','0','','','','','2',NULL,'Shows whether the server is active (marked with a Y) or a backup (marked with a -).','0','30d','0','','44728','','','','','200','1','0','','','0','0','0','0','0','0','0','82b1f8a01ba04818a990c336eb7154e3','0','2','0'), ('35117','18','','10308','{#PXNAME} {#SVNAME}: Weight','haproxy.server.weight[{#PXNAME},{#SVNAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Effective weight.','0','30d','0','','44728','','','','','200','1','0','','','0','0','0','0','0','0','0','02605cd644e14e2398af89433a6d976d','0','2','0'), ('35118','18','','10308','{#PXNAME} {#SVNAME}: Sessions per second','haproxy.server.stot.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Cumulative number of sessions (end-to-end connections) per second.','0','30d','0','','44728','','','','','200','1','0','','','0','0','0','0','0','0','0','6f5c20d65ba34afbb47cd65af1d1b368','0','2','0'), ('35119','18','','10308','{#PXNAME} {#SVNAME}: Configured maxqueue','haproxy.server.qlimit[{#PXNAME},{#SVNAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Configured maxqueue for the server, or nothing in the value is 0 (default, meaning no limit).','0','30d','0','','44728','','','','','200','1','0','','','0','0','0','0','0','0','0','50a837b40d624492b0248324d8b62694','0','2','0'), ('35120','18','','10308','{#PXNAME} {#SVNAME}: Server was selected per second','haproxy.server.lbtot.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of times that server was selected.','0','30d','0','','44728','','','','','200','1','0','','','0','0','0','0','0','0','0','8a7257e803b84783a8c9964807a336a5','0','2','0'), ('35121','18','','10308','{#PXNAME} {#SVNAME}: Server is backup','haproxy.server.bck[{#PXNAME},{#SVNAME}]','0','31d','365d','0','3','','','','',NULL,'342','','','0','','','','','2',NULL,'Shows whether the server is a backup (marked with a Y) or active (marked with a -).','0','30d','0','','44728','','','','','200','1','0','','','0','0','0','0','0','0','0','3617492e9cfd49b6b5576ed231dc2614','0','2','0'), ('35122','18','','10308','{#PXNAME} {#SVNAME}: Number of responses with codes 3xx per second','haproxy.server.hrsp_3xx.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of HTTP redirections per second.','0','30d','0','','44728','','','','','200','1','0','','','0','0','0','0','0','0','0','5b5576604886429ca22db333c9886c25','0','2','0'), ('35123','18','','10308','{#PXNAME} {#SVNAME}: Number of responses with codes 2xx per second','haproxy.server.hrsp_2xx.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of successful HTTP responses per second.','0','30d','0','','44728','','','','','200','1','0','','','0','0','0','0','0','0','0','a1aa6301ea1445bdbc509ec31cc9ebfc','0','2','0'), ('35124','18','','10308','{#PXNAME} {#SVNAME}: Number of responses with codes 1xx per second','haproxy.server.hrsp_1xx.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of informational HTTP responses per second.','0','30d','0','','44728','','','','','200','1','0','','','0','0','0','0','0','0','0','71fbb982c23c498fb52b68b3f839c642','0','2','0'), ('35125','18','','10308','{#PXNAME} {#SVNAME}: Status of last health check','haproxy.server.check_status[{#PXNAME},{#SVNAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Status of last health check, one of: UNK -> unknown INI -> initializing SOCKERR -> socket error L4OK -> check passed on layer 4, no upper layers testing enabled L4TOUT -> layer 1-4 timeout L4CON -> layer 1-4 connection problem, for example "Connection refused" (tcp rst) or "No route to host" (icmp) L6OK -> check passed on layer 6 L6TOUT -> layer 6 (SSL) timeout L6RSP -> layer 6 invalid response - protocol error L7OK -> check passed on layer 7 L7OKC -> check conditionally passed on layer 7, for example 404 with disable-on-404 L7TOUT -> layer 7 (HTTP/SMTP) timeout L7RSP -> layer 7 invalid response - protocol error L7STS -> layer 7 response error, for example HTTP 5xx Notice: If a check is currently running, the last known status will be reported, prefixed with "* ". e. g. "* L7OK".','0','30d','0','','44728','','','','','200','1','0','','','0','0','0','0','0','0','0','c46228518a3a460b894aea999ca0feab','0','2','0'), ('35126','18','','10308','{#PXNAME} {#SVNAME}: Outgoing traffic','haproxy.server.bout.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bits sent by the backend','0','30d','0','','44728','','','','','200','1','0','','','0','0','0','0','0','0','0','7fbc335144b74c08ba6a79a108e8e894','0','2','0'), ('35127','18','','10308','{#PXNAME} {#SVNAME}: Incoming traffic','haproxy.server.bin.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bits received by the backend','0','30d','0','','44728','','','','','200','1','0','','','0','0','0','0','0','0','0','20d5a69a9aa24fc6abf21c1c317ac425','0','2','0'), ('35129','18','','10309','Backend {#PXNAME}: Number of active servers','haproxy.backend.act[{#PXNAME},{#SVNAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of active servers.','0','30d','0','','44729','','','','','200','1','0','','','0','0','0','0','0','0','0','d5d9c5c0d84d41d597c85a3562e9b4fa','0','2','0'), ('35130','18','','10309','Backend {#PXNAME}: Number of responses with codes 5xx per second','haproxy.backend.hrsp_5xx.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of HTTP server errors per second.','0','30d','0','','44729','','','','','200','1','0','','','0','0','0','0','0','0','0','fdaa48cf19164fed8c3f00cc42c3bab8','0','2','0'), ('35131','18','','10309','Backend {#PXNAME}: Weight','haproxy.backend.weight[{#PXNAME},{#SVNAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total effective weight.','0','30d','0','','44729','','','','','200','1','0','','','0','0','0','0','0','0','0','f1d26d9c409d4983b7f94ff412ae72f3','0','2','0'), ('35132','18','','10309','Backend {#PXNAME}: Sessions per second','haproxy.backend.stot.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Cumulative number of sessions (end-to-end connections) per second.','0','30d','0','','44729','','','','','200','1','0','','','0','0','0','0','0','0','0','76d9497f428142268a5c1eeb24cbbad7','0','2','0'), ('35133','18','','10309','Backend {#PXNAME}: Number of responses with codes 4xx per second','haproxy.backend.hrsp_4xx.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of HTTP client errors per second.','0','30d','0','','44729','','','','','200','1','0','','','0','0','0','0','0','0','0','9519222f512e46d8ae1a7ca3a47f3970','0','2','0'), ('35134','18','','10309','Backend {#PXNAME}: Number of backup servers','haproxy.backend.bck[{#PXNAME},{#SVNAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of backup servers.','0','30d','0','','44729','','','','','200','1','0','','','0','0','0','0','0','0','0','08debce7e9084094b38fd1100e03c553','0','2','0'), ('35135','18','','10309','Backend {#PXNAME}: Number of responses with codes 3xx per second','haproxy.backend.hrsp_3xx.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of HTTP redirections per second.','0','30d','0','','44729','','','','','200','1','0','','','0','0','0','0','0','0','0','7e32a61240004b99bf19caf29c5d1409','0','2','0'), ('35136','18','','10309','Backend {#PXNAME}: Number of responses with codes 2xx per second','haproxy.backend.hrsp_2xx.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of successful HTTP responses per second.','0','30d','0','','44729','','','','','200','1','0','','','0','0','0','0','0','0','0','a4e5dd0c25c3471e82e28b88b6b42e39','0','2','0'), ('35137','18','','10309','Backend {#PXNAME}: Number of responses with codes 1xx per second','haproxy.backend.hrsp_1xx.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of informational HTTP responses per second.','0','30d','0','','44729','','','','','200','1','0','','','0','0','0','0','0','0','0','55edb3b8afaa4ee2961d1fead3653dbd','0','2','0'), ('35138','18','','10309','Backend {#PXNAME}: Outgoing traffic','haproxy.backend.bout.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bits sent by the backend','0','30d','0','','44729','','','','','200','1','0','','','0','0','0','0','0','0','0','1c24125e97014d4ba6a8155af5744d38','0','2','0'), ('35139','18','','10309','Backend {#PXNAME}: Incoming traffic','haproxy.backend.bin.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bits received by the backend','0','30d','0','','44729','','','','','200','1','0','','','0','0','0','0','0','0','0','8a53b50c1ce441c18fe6e6d5e0ad48d6','0','2','0'), ('35140','18','','10309','Frontend {#PXNAME}: Status','haproxy.frontend.status[{#PXNAME},{#SVNAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Possible values: OPEN, STOP. When Status is OPEN, the frontend is operating normally and ready to receive traffic.','0','30d','0','','44730','','','','','200','1','0','','','0','0','0','0','0','0','0','6e7372afcd6842c0865a1480973fc8e5','0','2','0'), ('35141','18','','10309','{#PXNAME} {#SVNAME}: Server is active','haproxy.server.act[{#PXNAME},{#SVNAME}]','0','31d','365d','0','3','','','','',NULL,'343','','','0','','','','','2',NULL,'Shows whether the server is active (marked with a Y) or a backup (marked with a -).','0','30d','0','','44731','','','','','200','1','0','','','0','0','0','0','0','0','0','bd19603777534fe38c9aa1888903d2fa','0','2','0'), ('35142','18','','10309','{#PXNAME} {#SVNAME}: Weight','haproxy.server.weight[{#PXNAME},{#SVNAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Effective weight.','0','30d','0','','44731','','','','','200','1','0','','','0','0','0','0','0','0','0','b8b0e8b0c3904335aa391f0727aac871','0','2','0'), ('35143','18','','10309','{#PXNAME} {#SVNAME}: Sessions per second','haproxy.server.stot.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Cumulative number of sessions (end-to-end connections) per second.','0','30d','0','','44731','','','','','200','1','0','','','0','0','0','0','0','0','0','10cfb75db0ef4a9fb33670480303522b','0','2','0'), ('35144','18','','10309','{#PXNAME} {#SVNAME}: Configured maxqueue','haproxy.server.qlimit[{#PXNAME},{#SVNAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Configured maxqueue for the server, or nothing in the value is 0 (default, meaning no limit).','0','30d','0','','44731','','','','','200','1','0','','','0','0','0','0','0','0','0','d2d92c67b546498d929b1e38b7a48561','0','2','0'), ('35145','18','','10309','{#PXNAME} {#SVNAME}: Server was selected per second','haproxy.server.lbtot.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of times that server was selected.','0','30d','0','','44731','','','','','200','1','0','','','0','0','0','0','0','0','0','ff7d8b0633ce4e119ad2f8976ce0ea18','0','2','0'), ('35146','18','','10309','{#PXNAME} {#SVNAME}: Server is backup','haproxy.server.bck[{#PXNAME},{#SVNAME}]','0','31d','365d','0','3','','','','',NULL,'343','','','0','','','','','2',NULL,'Shows whether the server is a backup (marked with a Y) or active (marked with a -).','0','30d','0','','44731','','','','','200','1','0','','','0','0','0','0','0','0','0','49b7da6cc75c4bb7ad2c3b7c25beccb5','0','2','0'), ('35147','18','','10309','{#PXNAME} {#SVNAME}: Number of responses with codes 3xx per second','haproxy.server.hrsp_3xx.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of HTTP redirections per second.','0','30d','0','','44731','','','','','200','1','0','','','0','0','0','0','0','0','0','1a96152c277d4018acced2f9d9ffd6cd','0','2','0'), ('35148','18','','10309','{#PXNAME} {#SVNAME}: Number of responses with codes 2xx per second','haproxy.server.hrsp_2xx.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of successful HTTP responses per second.','0','30d','0','','44731','','','','','200','1','0','','','0','0','0','0','0','0','0','786330b63708432c963725c83fa1791e','0','2','0'), ('35149','18','','10309','{#PXNAME} {#SVNAME}: Number of responses with codes 1xx per second','haproxy.server.hrsp_1xx.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of informational HTTP responses per second.','0','30d','0','','44731','','','','','200','1','0','','','0','0','0','0','0','0','0','b0a39c6bdf7b4db0a27fce9c0e08aecb','0','2','0'), ('35150','18','','10309','{#PXNAME} {#SVNAME}: Status of last health check','haproxy.server.check_status[{#PXNAME},{#SVNAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Status of last health check, one of: UNK -> unknown INI -> initializing SOCKERR -> socket error L4OK -> check passed on layer 4, no upper layers testing enabled L4TOUT -> layer 1-4 timeout L4CON -> layer 1-4 connection problem, for example "Connection refused" (tcp rst) or "No route to host" (icmp) L6OK -> check passed on layer 6 L6TOUT -> layer 6 (SSL) timeout L6RSP -> layer 6 invalid response - protocol error L7OK -> check passed on layer 7 L7OKC -> check conditionally passed on layer 7, for example 404 with disable-on-404 L7TOUT -> layer 7 (HTTP/SMTP) timeout L7RSP -> layer 7 invalid response - protocol error L7STS -> layer 7 response error, for example HTTP 5xx Notice: If a check is currently running, the last known status will be reported, prefixed with "* ". e. g. "* L7OK".','0','30d','0','','44731','','','','','200','1','0','','','0','0','0','0','0','0','0','6fe4502c3b534ee6b9a39a3fcc8d0b98','0','2','0'), ('35151','18','','10309','{#PXNAME} {#SVNAME}: Outgoing traffic','haproxy.server.bout.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bits sent by the backend','0','30d','0','','44731','','','','','200','1','0','','','0','0','0','0','0','0','0','0d721252dd3946818f87815a56ced8d0','0','2','0'), ('35152','18','','10309','{#PXNAME} {#SVNAME}: Incoming traffic','haproxy.server.bin.rate[{#PXNAME},{#SVNAME}]','0','31d','365d','0','0','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bits received by the backend','0','30d','0','','44731','','','','','200','1','0','','','0','0','0','0','0','0','0','355525dba53747c899f19fe4114a3ca4','0','2','0'), ('35185','18','','10415','HTTP location zone [{#NAME}]: Discarded, rate','nginx.http.location_zones.discarded.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of requests completed without sending a response per second.','0','30d','0','','44777','','','','','200','1','0','','','0','0','0','0','0','0','0','e75bc85680534ec18df16b9e69bc248c','0','2','0'), ('35186','18','','10415','HTTP location zone [{#NAME}]: Received, rate','nginx.http.location_zones.received.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of bytes received from clients per second.','0','30d','0','','44777','','','','','200','1','0','','','0','0','0','0','0','0','0','17e01c9171bd493f98b37811dcf49802','0','2','0'), ('35187','18','','10415','HTTP location zone [{#NAME}]: Requests, rate','nginx.http.location_zones.requests.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of client requests received from clients per second.','0','30d','0','','44777','','','','','200','1','0','','','0','0','0','0','0','0','0','c646c18580ef4b8695cbc03ce0d5122d','0','2','0'), ('35188','18','','10415','HTTP location zone [{#NAME}]: Responses 1xx, rate','nginx.http.location_zones.responses.1xx.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of responses with `1xx` status code per second.','0','30d','0','','44777','','','','','200','1','0','','','0','0','0','0','0','0','0','82c9f68d10ec47f1a701eee692e3b9ae','0','2','0'), ('35189','18','','10415','HTTP location zone [{#NAME}]: Responses 2xx, rate','nginx.http.location_zones.responses.2xx.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of responses with `2xx` status code per second.','0','30d','0','','44777','','','','','200','1','0','','','0','0','0','0','0','0','0','0cedd14450ba44f0b4c026afabb522a9','0','2','0'), ('35190','18','','10415','HTTP location zone [{#NAME}]: Responses 3xx, rate','nginx.http.location_zones.responses.3xx.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of responses with `3xx` status code per second.','0','30d','0','','44777','','','','','200','1','0','','','0','0','0','0','0','0','0','046a2a3b9a644dc1b4a0078b6722c867','0','2','0'), ('35191','18','','10415','HTTP location zone [{#NAME}]: Responses 4xx, rate','nginx.http.location_zones.responses.4xx.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of responses with `4xx` status code per second.','0','30d','0','','44777','','','','','200','1','0','','','0','0','0','0','0','0','0','32eb7cb8f04044d6a00ead678ff44a00','0','2','0'), ('35192','18','','10415','HTTP location zone [{#NAME}]: Responses 5xx, rate','nginx.http.location_zones.responses.5xx.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of responses with `5xx` status code per second.','0','30d','0','','44777','','','','','200','1','0','','','0','0','0','0','0','0','0','dd5a27eb32da42d7998f89a96e29304f','0','2','0'), ('35193','18','','10415','HTTP location zone [{#NAME}]: Responses total, rate','nginx.http.location_zones.responses.total.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of responses sent to clients per second.','0','30d','0','','44777','','','','','200','1','0','','','0','0','0','0','0','0','0','b6e3c7f074b54531aa57dce55169aedd','0','2','0'), ('35194','18','','10415','HTTP location zone [{#NAME}]: Sent, rate','nginx.http.location_zones.sent.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of bytes sent to clients per second.','0','30d','0','','44777','','','','','200','1','0','','','0','0','0','0','0','0','0','0af45d37b3a24d5491054aa3cf319315','0','2','0'), ('35195','18','','10415','HTTP server zone [{#NAME}]: Discarded, rate','nginx.http.server_zones.discarded.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of requests completed without sending a response per second.','0','30d','0','','44778','','','','','200','1','0','','','0','0','0','0','0','0','0','46d056a7870545e49db03b0ec2bd1e9b','0','2','0'), ('35196','18','','10415','HTTP server zone [{#NAME}]: Processing','nginx.http.server_zones.processing[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of client requests that are currently being processed.','0','30d','0','','44778','','','','','200','1','0','','','0','0','0','0','0','0','0','e8dd5302fced4d23ba93656f383222d9','0','2','0'), ('35197','18','','10415','HTTP server zone [{#NAME}]: Received, rate','nginx.http.server_zones.received.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of bytes received from clients per second.','0','30d','0','','44778','','','','','200','1','0','','','0','0','0','0','0','0','0','edc834403218460b8c7b8b3ca0709a76','0','2','0'), ('35198','18','','10415','HTTP server zone [{#NAME}]: Requests, rate','nginx.http.server_zones.requests.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of client requests received from clients per second.','0','30d','0','','44778','','','','','200','1','0','','','0','0','0','0','0','0','0','e33079d5cc684a5687bd7cd10eaec541','0','2','0'), ('35199','18','','10415','HTTP server zone [{#NAME}]: Responses 1xx, rate','nginx.http.server_zones.responses.1xx.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of responses with `1xx` status code per second.','0','30d','0','','44778','','','','','200','1','0','','','0','0','0','0','0','0','0','2b37ee1a3c1243c38534f70acf7a32d9','0','2','0'), ('35200','18','','10415','HTTP server zone [{#NAME}]: Responses 2xx, rate','nginx.http.server_zones.responses.2xx.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of responses with `2xx` status code per second.','0','30d','0','','44778','','','','','200','1','0','','','0','0','0','0','0','0','0','4e127d8bfac940f1b3703053ada05fbd','0','2','0'), ('35201','18','','10415','HTTP server zone [{#NAME}]: Responses 3xx, rate','nginx.http.server_zones.responses.3xx.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of responses with `3xx` status code per second.','0','30d','0','','44778','','','','','200','1','0','','','0','0','0','0','0','0','0','6add98c2b5334160a0e4cc363f53cb7e','0','2','0'), ('35202','18','','10415','HTTP server zone [{#NAME}]: Responses 4xx, rate','nginx.http.server_zones.responses.4xx.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of responses with `4xx` status code per second.','0','30d','0','','44778','','','','','200','1','0','','','0','0','0','0','0','0','0','1f2cd6dcddf948a9bf17f05c68502f46','0','2','0'), ('35203','18','','10415','HTTP server zone [{#NAME}]: Responses 5xx, rate','nginx.http.server_zones.responses.5xx.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of responses with `5xx` status code per second.','0','30d','0','','44778','','','','','200','1','0','','','0','0','0','0','0','0','0','fc6654f2627e47cbbe1a7628c073520a','0','2','0'), ('35204','18','','10415','HTTP server zone [{#NAME}]: Responses total, rate','nginx.http.server_zones.responses.total.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of responses sent to clients per second.','0','30d','0','','44778','','','','','200','1','0','','','0','0','0','0','0','0','0','fd81275f0c994a62a9412d595d7d2e8b','0','2','0'), ('35205','18','','10415','HTTP server zone [{#NAME}]: Sent, rate','nginx.http.server_zones.sent.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of bytes sent to clients per second.','0','30d','0','','44778','','','','','200','1','0','','','0','0','0','0','0','0','0','91acfc8de0e64d52820d509ced251e5b','0','2','0'), ('35206','18','','10415','HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Active','nginx.http.upstream.peer.active[{#UPSTREAM},{#PEER}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current number of active connections.','0','30d','0','','44779','','','','','200','1','0','','','0','0','0','0','0','0','0','ad270fab134c44ae83c154670db4d317','0','2','0'), ('35207','18','','10415','HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Responses 3xx, rate','nginx.http.upstream.peer.responses.3xx.rate[{#UPSTREAM},{#PEER}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of responses with `3xx` status code per second.','0','30d','0','','44779','','','','','200','1','0','','','0','0','0','0','0','0','0','7b2851137d77418a8548e92332c66c86','0','2','0'), ('35208','18','','10415','HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: State','nginx.http.upstream.peer.state[{#UPSTREAM},{#PEER}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current state, which may be one of “up”, “draining”, “down”, “unavail”, “checking”, and “unhealthy”.','0','30d','0','','44779','','','','','200','1','0','','','0','0','0','0','0','0','0','33eacaa48f974c348e37475341a6c8af','0','2','0'), ('35209','18','','10415','HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Sent, rate','nginx.http.upstream.peer.sent.rate[{#UPSTREAM},{#PEER}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of bytes sent to this server per second.','0','30d','0','','44779','','','','','200','1','0','','','0','0','0','0','0','0','0','2a0a36d22acf453e80d79820990db9b8','0','2','0'), ('35210','18','','10415','HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Response time','nginx.http.upstream.peer.response_time.rate[{#UPSTREAM},{#PEER}]','0','31d','365d','0','3','','!ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The average time to get the full response from the server.','0','30d','0','','44779','','','','','200','1','0','','','0','0','0','0','0','0','0','868562df5ab44d3cadeb6fa294b33559','0','2','0'), ('35211','18','','10415','HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Responses total, rate','nginx.http.upstream.peer.responses.total.rate[{#UPSTREAM},{#PEER}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of responses obtained from this server.','0','30d','0','','44779','','','','','200','1','0','','','0','0','0','0','0','0','0','d587254989c743b4aa9c8043bf18baa5','0','2','0'), ('35212','18','','10415','HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Responses 5xx, rate','nginx.http.upstream.peer.responses.5xx.rate[{#UPSTREAM},{#PEER}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of responses with `5xx` status code per second.','0','30d','0','','44779','','','','','200','1','0','','','0','0','0','0','0','0','0','172cb81d02f04fd48c7b82d8ae7dac69','0','2','0'), ('35213','18','','10415','HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Responses 4xx, rate','nginx.http.upstream.peer.responses.4xx.rate[{#UPSTREAM},{#PEER}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of responses with `4xx` status code per second.','0','30d','0','','44779','','','','','200','1','0','','','0','0','0','0','0','0','0','cb81f113d289409ca26af48aeb68f8cc','0','2','0'), ('35214','18','','10415','HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Responses 2xx, rate','nginx.http.upstream.peer.responses.2xx.rate[{#UPSTREAM},{#PEER}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of responses with `2xx` status code per second.','0','30d','0','','44779','','','','','200','1','0','','','0','0','0','0','0','0','0','e526b61c48eb45568ef92434eee3a2cb','0','2','0'), ('35215','18','','10415','HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Fails, rate','nginx.http.upstream.peer.fails.rate[{#UPSTREAM},{#PEER}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of unsuccessful attempts to communicate with the server per second.','0','30d','0','','44779','','','','','200','1','0','','','0','0','0','0','0','0','0','cd7455016ac549598df2551a716545ef','0','2','0'), ('35216','18','','10415','HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Responses 1xx, rate','nginx.http.upstream.peer.responses.1xx.rate[{#UPSTREAM},{#PEER}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of responses with `1xx` status code per second.','0','30d','0','','44779','','','','','200','1','0','','','0','0','0','0','0','0','0','6ca38995050e44488df4fde7dc543541','0','2','0'), ('35217','18','','10415','HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Requests, rate','nginx.http.upstream.peer.requests.rate[{#UPSTREAM},{#PEER}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of client requests forwarded to this server per second.','0','30d','0','','44779','','','','','200','1','0','','','0','0','0','0','0','0','0','3ff18cfb4028421e9af0460aeaa2d6a4','0','2','0'), ('35218','18','','10415','HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Received, rate','nginx.http.upstream.peer.received.rate[{#UPSTREAM},{#PEER}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of bytes received from this server per second.','0','30d','0','','44779','','','','','200','1','0','','','0','0','0','0','0','0','0','8731deb89d1c4fc2bab90aca5802c721','0','2','0'), ('35219','18','','10415','HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks, unhealthy','nginx.http.upstream.peer.health_checks.unhealthy[{#UPSTREAM},{#PEER}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Displays how many times the server has become `unhealthy` (the state - “unhealthy”.','0','30d','0','','44779','','','','','200','1','0','','','0','0','0','0','0','0','0','89c57fb94cab4635b14532961560a8bf','0','2','0'), ('35220','18','','10415','HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks, fails','nginx.http.upstream.peer.health_checks.fails[{#UPSTREAM},{#PEER}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of failed health checks.','0','30d','0','','44779','','','','','200','1','0','','','0','0','0','0','0','0','0','31292e9dbc8c45dd936ed1e77d44940b','0','2','0'), ('35221','18','','10415','HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks, check','nginx.http.upstream.peer.health_checks.checks[{#UPSTREAM},{#PEER}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of health check requests made.','0','30d','0','','44779','','','','','200','1','0','','','0','0','0','0','0','0','0','89f89850409a4aff8447b9f7c2839f01','0','2','0'), ('35222','18','','10415','HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Header time','nginx.http.upstream.peer.header_time.rate[{#UPSTREAM},{#PEER}]','0','31d','365d','0','3','','!ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The average time to get the response header from the server.','0','30d','0','','44779','','','','','200','1','0','','','0','0','0','0','0','0','0','b0607f003d7a4713a28f0d75b7933087','0','2','0'), ('35223','18','','10415','HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Unavail','nginx.http.upstream.peer.unavail.rate[{#UPSTREAM},{#PEER}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Displays how many times the server has become unavailable for client requests (the state - “unavail”) due to the number of unsuccessful attempts reaching the `max_fails` threshold.','0','30d','0','','44779','','','','','200','1','0','','','0','0','0','0','0','0','0','e89e6c141217465794febd9131ccafae','0','2','0'), ('35224','18','','10415','HTTP upstream [{#NAME}]: Keepalive','nginx.http.upstreams.keepalive[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current number of idle keepalive connections.','0','30d','0','','44780','','','','','200','1','0','','','0','0','0','0','0','0','0','ef9a2a71c3a340c894f82c29503d6b6b','0','2','0'), ('35225','18','','10415','HTTP upstream [{#NAME}]: Zombies','nginx.http.upstreams.zombies[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current number of servers removed from the group but still processing active client requests.','0','30d','0','','44780','','','','','200','1','0','','','0','0','0','0','0','0','0','1a426d42dada4eb082aa4e912ae1256c','0','2','0'), ('35226','18','','10415','HTTP upstream [{#NAME}]: Zone','nginx.http.upstreams.zone[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The name of the shared memory zone that keeps the group''s configuration and run-time state.','0','30d','0','','44780','','','','','200','1','0','','','0','0','0','0','0','0','0','8aa415f2a55a4e8fb28ea87a8d307bd4','0','2','0'), ('35227','18','','10415','Resolver [{#NAME}]: Requests addr, rate','nginx.resolvers.requests.addr.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of requests to resolve addresses to names per second.','0','30d','0','','44781','','','','','200','1','0','','','0','0','0','0','0','0','0','8fd2a1c5c148423886dccb939ca61b62','0','2','0'), ('35228','18','','10415','Resolver [{#NAME}]: Requests name, rate','nginx.resolvers.requests.name.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of requests to resolve names to addresses per second.','0','30d','0','','44781','','','','','200','1','0','','','0','0','0','0','0','0','0','fb149324f11a4edc9971e9e2572282a6','0','2','0'), ('35229','18','','10415','Resolver [{#NAME}]: Requests srv, rate','nginx.resolvers.requests.srv.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of requests to resolve SRV records per second.','0','30d','0','','44781','','','','','200','1','0','','','0','0','0','0','0','0','0','9ebd08e8b6a3416c940b16a03158bafe','0','2','0'), ('35230','18','','10415','Resolver [{#NAME}]: Responses formerr, rate','nginx.resolvers.responses.formerr.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of `FORMERR` (format error) responses per second.','0','30d','0','','44781','','','','','200','1','0','','','0','0','0','0','0','0','0','8a7db7d9c24f4f88b9ad9dde32b2b2e0','0','2','0'), ('35231','18','','10415','Resolver [{#NAME}]: Responses noerror, rate','nginx.resolvers.responses.noerror.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of successful responses per second.','0','30d','0','','44781','','','','','200','1','0','','','0','0','0','0','0','0','0','bf5a55d771724cfeaec90950f653b181','0','2','0'), ('35232','18','','10415','Resolver [{#NAME}]: Responses notimp, rate','nginx.resolvers.responses.notimp.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of `NOTIMP` (unimplemented) responses per second.','0','30d','0','','44781','','','','','200','1','0','','','0','0','0','0','0','0','0','46cd31140a3342568c7d7ae0cdae6270','0','2','0'), ('35233','18','','10415','Resolver [{#NAME}]: Responses nxdomain, rate','nginx.resolvers.responses.nxdomain.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of `NXDOMAIN` (host not found) responses per second.','0','30d','0','','44781','','','','','200','1','0','','','0','0','0','0','0','0','0','b4e002955de844a69a755076993b0577','0','2','0'), ('35234','18','','10415','Resolver [{#NAME}]: Responses refused, rate','nginx.resolvers.responses.refused.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of `REFUSED` (operation refused) responses per second.','0','30d','0','','44781','','','','','200','1','0','','','0','0','0','0','0','0','0','114f260fc9754e80927494dce51f9e46','0','2','0'), ('35235','18','','10415','Resolver [{#NAME}]: Responses servfail, rate','nginx.resolvers.responses.servfail.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of `SERVFAIL` (server failure) responses per second.','0','30d','0','','44781','','','','','200','1','0','','','0','0','0','0','0','0','0','7b4f4f609807407e849525f9f99c0fcc','0','2','0'), ('35236','18','','10415','Resolver [{#NAME}]: Responses timedout, rate','nginx.resolvers.responses.timedout.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of timed out requests per second.','0','30d','0','','44781','','','','','200','1','0','','','0','0','0','0','0','0','0','28b11b8bfd6143ada94b041390281a2f','0','2','0'), ('35237','18','','10415','Resolver [{#NAME}]: Responses unknown, rate','nginx.resolvers.responses.unknown.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of requests completed with an unknown error per second.','0','30d','0','','44781','','','','','200','1','0','','','0','0','0','0','0','0','0','b68f19ad119941b58da491d2cd827277','0','2','0'), ('35238','18','','10415','Stream server zone [{#NAME}]: Connections, rate','nginx.stream.server_zones.connections.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of connections accepted from clients per second.','0','30d','0','','44782','','','','','200','1','0','','','0','0','0','0','0','0','0','e321037e23ff484cb4dc89a8e187919c','0','2','0'), ('35239','18','','10415','Stream server zone [{#NAME}]: Discarded, rate','nginx.stream.server_zones.discarded.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of connections completed without creating a session per second.','0','30d','0','','44782','','','','','200','1','0','','','0','0','0','0','0','0','0','c9e9d883123842d291c922d5bbcca8f3','0','2','0'), ('35240','18','','10415','Stream server zone [{#NAME}]: Processing','nginx.stream.server_zones.processing[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of client connections that are currently being processed.','0','30d','0','','44782','','','','','200','1','0','','','0','0','0','0','0','0','0','f8d16f41fe9e4be685c28bb4acd2187f','0','2','0'), ('35241','18','','10415','Stream server zone [{#NAME}]: Received, rate','nginx.stream.server_zones.received.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of bytes received from clients per second.','0','30d','0','','44782','','','','','200','1','0','','','0','0','0','0','0','0','0','47a9959627e3423e9739b55dac23edd2','0','2','0'), ('35242','18','','10415','Stream server zone [{#NAME}]: Sent, rate','nginx.stream.server_zones.sent.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of bytes sent to clients per second.','0','30d','0','','44782','','','','','200','1','0','','','0','0','0','0','0','0','0','2aafb1ae6ce24f14a3494826d63cfce2','0','2','0'), ('35243','18','','10415','Stream server zone [{#NAME}]: Sessions 2xx, rate','nginx.stream.server_zones.sessions.2xx.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of sessions completed with status code `2xx` per second.','0','30d','0','','44782','','','','','200','1','0','','','0','0','0','0','0','0','0','7399335b883040c495b5cbfade3e182e','0','2','0'), ('35244','18','','10415','Stream server zone [{#NAME}]: Sessions 4xx, rate','nginx.stream.server_zones.sessions.4xx.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of sessions completed with status code `4xx` per second.','0','30d','0','','44782','','','','','200','1','0','','','0','0','0','0','0','0','0','5e654682849748bea849db9ab73f7075','0','2','0'), ('35245','18','','10415','Stream server zone [{#NAME}]: Sessions 5xx, rate','nginx.stream.server_zones.sessions.5xx.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of sessions completed with status code `5xx` per second.','0','30d','0','','44782','','','','','200','1','0','','','0','0','0','0','0','0','0','0cdc4545f6dc4a1e8f247291302824a4','0','2','0'), ('35246','18','','10415','Stream server zone [{#NAME}]: Sessions total, rate','nginx.stream.server_zones.sessions.total.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of completed client sessions per second.','0','30d','0','','44782','','','','','200','1','0','','','0','0','0','0','0','0','0','30313c91655042b8948422c13fbdfca3','0','2','0'), ('35247','18','','10415','Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Active','nginx.stream.upstream.peer.active[{#UPSTREAM},{#PEER}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current number of connections.','0','30d','0','','44783','','','','','200','1','0','','','0','0','0','0','0','0','0','3337df557e734de8b019216c5c06fcea','0','2','0'), ('35248','18','','10415','Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Connections','nginx.stream.upstream.peer.connections.rate[{#UPSTREAM},{#PEER}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of client connections forwarded to this server.','0','30d','0','','44783','','','','','200','1','0','','','0','0','0','0','0','0','0','2ae319abd31b40b7a765c300e5dfa954','0','2','0'), ('35249','18','','10415','Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Connect time','nginx.stream.upstream.peer.connect_time.rate[{#UPSTREAM},{#PEER}]','0','31d','365d','0','3','','!ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The average time to connect to the upstream server.','0','30d','0','','44783','','','','','200','1','0','','','0','0','0','0','0','0','0','f98409ef166b47f3a70d46dffe233166','0','2','0'), ('35250','18','','10415','Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Fails, rate','nginx.stream.upstream.peer.fails.rate[{#UPSTREAM},{#PEER}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of unsuccessful attempts to communicate with the server per second.','0','30d','0','','44783','','','','','200','1','0','','','0','0','0','0','0','0','0','0b1000ddc883422cb9fb3382a839c10a','0','2','0'), ('35251','18','','10415','Stream upstream [{#UPSTREAM}] peer [{#PEER}]: First byte time','nginx.stream.upstream.peer.first_byte_time.rate[{#UPSTREAM},{#PEER}]','0','31d','365d','0','3','','!ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The average time to receive the first byte of data.','0','30d','0','','44783','','','','','200','1','0','','','0','0','0','0','0','0','0','23a02d1c0a63483fb1eb4914a7e48ecf','0','2','0'), ('35252','18','','10415','Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks, check','nginx.stream.upstream.peer.health_checks.checks[{#UPSTREAM},{#PEER}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of health check requests made.','0','30d','0','','44783','','','','','200','1','0','','','0','0','0','0','0','0','0','dac0196daad74fc385a336c7dbddbcfd','0','2','0'), ('35253','18','','10415','Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks, fails','nginx.stream.upstream.peer.health_checks.fails[{#UPSTREAM},{#PEER}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of failed health checks.','0','30d','0','','44783','','','','','200','1','0','','','0','0','0','0','0','0','0','af2a6991b432439cb4afb071974a05e7','0','2','0'), ('35254','18','','10415','Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks, unhealthy','nginx.stream.upstream.peer.health_checks.unhealthy[{#UPSTREAM},{#PEER}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Displays how many times the server has become `unhealthy` (the state - “unhealthy”).','0','30d','0','','44783','','','','','200','1','0','','','0','0','0','0','0','0','0','089bbb9c602a4654a3d2c582c643745f','0','2','0'), ('35255','18','','10415','Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Received, rate','nginx.stream.upstream.peer.received.rate[{#UPSTREAM},{#PEER}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of bytes received from this server per second.','0','30d','0','','44783','','','','','200','1','0','','','0','0','0','0','0','0','0','12193b1723eb419a9bbcb235c7b45308','0','2','0'), ('35256','18','','10415','Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Response time','nginx.stream.upstream.peer.response_time.rate[{#UPSTREAM},{#PEER}]','0','31d','365d','0','3','','!ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The average time to receive the last byte of data.','0','30d','0','','44783','','','','','200','1','0','','','0','0','0','0','0','0','0','bda851b725454395b59988f03c534b3b','0','2','0'), ('35257','18','','10415','Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Sent, rate','nginx.stream.upstream.peer.sent.rate[{#UPSTREAM},{#PEER}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of bytes sent to this server per second.','0','30d','0','','44783','','','','','200','1','0','','','0','0','0','0','0','0','0','6ae8685716cf487fa72534a76e4b286a','0','2','0'), ('35258','18','','10415','Stream upstream [{#UPSTREAM}] peer [{#PEER}]: State','nginx.stream.upstream.peer.state[{#UPSTREAM},{#PEER}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current state, which may be one of “up”, “draining”, “down”, “unavail”, “checking”, and “unhealthy”.','0','30d','0','','44783','','','','','200','1','0','','','0','0','0','0','0','0','0','ae7b6564244845518816fffc38bbf9aa','0','2','0'), ('35259','18','','10415','Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Unavail','nginx.stream.upstream.peer.unavail.rate[{#UPSTREAM},{#PEER}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Displays how many times the server has become unavailable for client requests (the state - “unavail”) due to the number of unsuccessful attempts reaching the `max_fails` threshold.','0','30d','0','','44783','','','','','200','1','0','','','0','0','0','0','0','0','0','732f0ea262454ab3a4cfeb09aea66b9b','0','2','0'), ('35260','18','','10415','Stream upstream [{#NAME}]: Zombies','nginx.stream.upstreams.zombies[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','44784','','','','','200','1','0','','','0','0','0','0','0','0','0','5537680fbc024713a077932cc55ef3a7','0','2','0'), ('35261','18','','10415','Stream upstream [{#NAME}]: Zone','nginx.stream.upstreams.zone[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','44784','','','','','200','1','0','','','0','0','0','0','0','0','0','8c273c10ece545a58e4d34f6d3812fe0','0','2','0'), ('39746','18','','10503','Orchestrator API version','velocloud.orchestrator.api_version','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of VMware SD-WAN Orchestrator API.','0','30d','0','','39744','','','','','200','1','0','','','0','0','0','0','0','0','0','3f589e2191c5419fb89cc33639595ae9','0','2','0'), ('39747','18','','10503','Orchestrator build','velocloud.orchestrator.build','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Build of VMware SD-WAN Orchestrator API.','0','30d','0','','39744','','','','','200','1','0','','','0','0','0','0','0','0','0','ab24d8fc4c2a4130bca1b4b6d4f311ae','0','2','0'), ('39748','18','','10503','Orchestrator version','velocloud.orchestrator.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of VMware SD-WAN Orchestrator API.','0','30d','0','','39744','','','','','200','1','0','','','0','0','0','0','0','0','0','1f60b61051494ab495de4dfe2cd83450','0','2','0'), ('39749','18','','10503','Edges metrics discovery','velocloud.edges.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Metrics for edges statistics.','0','7d','1','','39744','','','','','200','1','0','','','0','0','0','0','0','0','0','522ba6551cc64094b60a136d07c9921d','0','2','0'), ('39750','18','','10503','Gateways metrics discovery','velocloud.gateways.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Metrics for gateways statistics.','0','7d','1','','39744','','','','','200','1','0','','','0','0','0','0','0','0','0','e2879e0ce6e44203b0615c36ba626cc0','0','2','0'), ('39751','18','','10503','Links metrics discovery','velocloud.links.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Metrics for links statistics.','0','7d','1','','39744','','','','','200','1','0','','','0','0','0','0','0','0','0','b951193feec6495cbd446f6d5097a868','0','2','0'), ('39808','18','','10047','Cluster node [{#NODE.NAME}]: Address','zabbix.node.address[{#NODE.ID}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The IPv4 address of a node.','0','30d','0','','44636','','','','','200','1','0','','','0','0','0','0','0','0','0','c5cb7ffbd314494cb1801ae804e9c76e','0','2','0'), ('39809','18','','10047','Cluster node [{#NODE.NAME}]: Last access age','zabbix.node.lastaccess.age[{#NODE.ID}]','0','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','2',NULL,'The time between the database''s `unix_timestamp()` and the last access time.','0','30d','0','','44636','','','','','200','1','0','','','0','0','0','0','0','0','0','f444de7cdd7a4f3bb7f4b1f2e86e16d7','0','2','0'), ('39810','18','','10047','Cluster node [{#NODE.NAME}]: Last access time','zabbix.node.lastaccess.time[{#NODE.ID}]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Last access time.','0','30d','0','','44636','','','','','200','1','0','','','0','0','0','0','0','0','0','2e33f747803b45d7a9b94c171bf36f61','0','2','0'), ('39811','18','','10047','Cluster node [{#NODE.NAME}]: Status','zabbix.node.status[{#NODE.ID}]','0','31d','365d','0','3','','','','',NULL,'565','','','0','','','','','2',NULL,'The status of a node.','0','30d','0','','44636','','','','','200','1','0','','','0','0','0','0','0','0','0','1e4de6a913764a22862c0265d329b592','0','2','0'), ('39817','18','','10261','Cluster node [{#NODE.NAME}]: Address','zabbix.node.address[{#NODE.ID}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The IPv4 address of a node.','0','30d','0','','44640','','','','','200','1','0','','','0','0','0','0','0','0','0','caca3ccdcec141a3a9c3233ba72b8d0d','0','2','0'), ('39818','18','','10261','Cluster node [{#NODE.NAME}]: Last access age','zabbix.node.lastaccess.age[{#NODE.ID}]','0','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','2',NULL,'The time between the database''s `unix_timestamp()` and the last access time.','0','30d','0','','44640','','','','','200','1','0','','','0','0','0','0','0','0','0','a9ded61c4dba4abb9213aec9af00a604','0','2','0'), ('39819','18','','10261','Cluster node [{#NODE.NAME}]: Last access time','zabbix.node.lastaccess.time[{#NODE.ID}]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Last access time.','0','30d','0','','44640','','','','','200','1','0','','','0','0','0','0','0','0','0','0968e4fe51eb4c2b98a508090014aba0','0','2','0'), ('39820','18','','10261','Cluster node [{#NODE.NAME}]: Status','zabbix.nodes.status[{#NODE.ID}]','0','31d','365d','0','3','','','','',NULL,'566','','','0','','','','','2',NULL,'The status of a node.','0','30d','0','','44640','','','','','200','1','0','','','0','0','0','0','0','0','0','2b629362886546cab34396352b93835a','0','2','0'), ('39970','18','','10507','Node [{#NODE}] Namespace [{#NAMESPACE}] Pod [{#POD}] Conditions: Containers ready','kube.pod.conditions.containers_ready[{#NAMESPACE}/{#POD}]','0','31d','365d','0','3','','','','',NULL,'569','','','0','','','','','2',NULL,'All containers in the Pod are ready. https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#pod-conditions','0','30d','0','','44247','','','','','200','1','0','','','0','0','0','0','0','0','0','ed4ea3dbbce74404a5039aa9918b8e2b','0','2','0'), ('39971','18','','10507','Node [{#NODE}] Namespace [{#NAMESPACE}] Pod [{#POD}] Conditions: Initialized','kube.pod.conditions.initialized[{#NAMESPACE}/{#POD}]','0','31d','365d','0','3','','','','',NULL,'569','','','0','','','','','2',NULL,'All init containers have started successfully. https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#pod-conditions','0','30d','0','','44247','','','','','200','1','0','','','0','0','0','0','0','0','0','647ca68c325742d083e37c05e2826205','0','2','0'), ('39972','18','','10507','Node [{#NODE}] Namespace [{#NAMESPACE}] Pod [{#POD}] Conditions: Ready','kube.pod.conditions.ready[{#NAMESPACE}/{#POD}]','0','31d','365d','0','3','','','','',NULL,'569','','','0','','','','','2',NULL,'The Pod is able to serve requests and should be added to the load balancing pools of all matching Services. https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#pod-conditions','0','30d','0','','44247','','','','','200','1','0','','','0','0','0','0','0','0','0','b73a5c5d3b614815be157eb53c6afb1f','0','2','0'), ('39973','18','','10507','Node [{#NODE}] Namespace [{#NAMESPACE}] Pod [{#POD}] Conditions: Scheduled','kube.pod.conditions.scheduled[{#NAMESPACE}/{#POD}]','0','31d','365d','0','3','','','','',NULL,'569','','','0','','','','','2',NULL,'The Pod has been scheduled to a node. https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#pod-conditions','0','30d','0','','44247','','','','','200','1','0','','','0','0','0','0','0','0','0','5956cd1780604f0793efd7bbce2559b6','0','2','0'), ('39974','18','','10507','Node [{#NODE}] Namespace [{#NAMESPACE}] Pod [{#POD}] Containers: Restarts','kube.pod.containers.restartcount[{#NAMESPACE}/{#POD}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of times the container has been restarted, currently based on the number of dead containers that have not yet been removed. Note that this is calculated from dead containers. But those containers are subject to garbage collection.','0','30d','0','','44247','','','','','200','1','0','','','0','0','0','0','0','0','0','5fd018faebb84462bf8111861795b04e','0','2','0'), ('39975','18','','10507','Node [{#NODE}] Namespace [{#NAMESPACE}] Pod [{#POD}] Status: Phase','kube.pod.status.phase[{#NAMESPACE}/{#POD}]','0','31d','365d','0','3','','','','',NULL,'570','','','0','','','','','2',NULL,'The phase of a Pod is a simple, high-level summary of where the Pod is in its lifecycle. https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-phase','0','30d','0','','44247','','','','','200','1','0','','','0','0','0','0','0','0','0','6862be81e52b4abcb319a8847b022634','0','2','0'), ('39976','18','','10507','Node [{#NODE}] Namespace [{#NAMESPACE}] Pod [{#POD}]: Uptime','kube.pod.uptime[{#NAMESPACE}/{#POD}]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Pod uptime.','0','30d','0','','44247','','','','','200','1','0','','','0','0','0','0','0','0','0','abb0b84204164301bb9fc6ab14284631','0','2','0'), ('42288','18','','10001','FS [{#FSNAME}]: Inodes: Free, in %','vfs.fs.dependent.inode[{#FSNAME},pfree]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Free metadata space expressed in %.','0','30d','0','','44438','','','','','200','1','0','','','0','0','0','0','0','0','0','4da7f08a979a46df8b8aeebb42a46207','0','2','0'), ('42289','18','','10001','FS [{#FSNAME}]: Space: Used, in %','vfs.fs.dependent.size[{#FSNAME},pused]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Calculated as the percentage of currently used space compared to the maximum available space.','0','30d','0','','44438','','','','','200','1','0','','','0','0','0','0','0','0','0','61ffe6fcb9d94199aaeb5d568ab74a27','0','2','0'), ('42290','18','','10001','FS [{#FSNAME}]: Space: Total','vfs.fs.dependent.size[{#FSNAME},total]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total space expressed in bytes.','0','30d','0','','44438','','','','','200','1','0','','','0','0','0','0','0','0','0','a6d90e0bc5ef4fb7acee8682687c485f','0','2','0'), ('42291','18','','10001','FS [{#FSNAME}]: Space: Used','vfs.fs.dependent.size[{#FSNAME},used]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Used storage expressed in bytes.','0','30d','0','','44438','','','','','200','1','0','','','0','0','0','0','0','0','0','efee06a191aa4e5c8faa2762988b6955','0','2','0'), ('42374','18','','10343','FS [{#FSNAME}]: Inodes: Free, in %','vfs.fs.dependent.inode[{#FSNAME},pfree]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Free metadata space expressed in %.','0','30d','0','','44443','','','','','200','1','0','','','0','0','0','0','0','0','0','5cc9099851ee4f4498fd74ec2c377eb4','0','2','0'), ('42375','18','','10343','FS [{#FSNAME}]: Space: Used, in %','vfs.fs.dependent.size[{#FSNAME},pused]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Calculated as the percentage of currently used space compared to the maximum available space.','0','30d','0','','44443','','','','','200','1','0','','','0','0','0','0','0','0','0','b33989051217493cb9124302297e409f','0','2','0'), ('42376','18','','10343','FS [{#FSNAME}]: Space: Total','vfs.fs.dependent.size[{#FSNAME},total]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total space expressed in bytes.','0','30d','0','','44443','','','','','200','1','0','','','0','0','0','0','0','0','0','5cee504041e347719b35ee2c5a6056b8','0','2','0'), ('42377','18','','10343','FS [{#FSNAME}]: Space: Used','vfs.fs.dependent.size[{#FSNAME},used]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Used storage expressed in bytes.','0','30d','0','','44443','','','','','200','1','0','','','0','0','0','0','0','0','0','f23970d301be4085ab9038d3078b3871','0','2','0'), ('42410','18','','10248','CPU discovery','cpu.discovery[snmp]','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'This discovery will create set of per core CPU metrics from UCD-SNMP-MIB, using {#CPU.COUNT} in preprocessing. That''s the only reason why LLD is used.','0','7d','0','','42401','','','','','200','1','0','','','0','0','0','0','0','0','0','4089ef5360ec4b2a98b7742e8e4e9dd6','0','2','0'), ('42438','18','','10248','FS [{#FSNAME}]: Inodes: Free, in %','vfs.fs.inode.pfree[{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB Free metadata space expressed as percentage.','0','30d','0','','47120','','','','','200','1','0','','','0','0','0','0','0','0','0','96d3b16a29c44dacbf57127395d4f760','0','2','0'), ('42439','18','','10248','FS [{#FSNAME}]: Space: Used, in %','vfs.fs.pused[{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'UCD-SNMP-MIB::dskEntry Space utilization is calculated as the percentage of currently used space compared to the maximum available space.','0','30d','0','','47120','','','','','200','1','0','','','0','0','0','0','0','0','0','0cb84e1611e944e68caf677492d169e5','0','2','0'), ('42440','18','','10248','FS [{#FSNAME}]: Space: Total','vfs.fs.total[dskTotal.{#SNMPINDEX}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB Total storage is calculated from two portions: dskTotalHigh dskTotalLow Together they compose 64-bit number.','0','30d','0','','47120','','','','','200','1','0','','','0','0','0','0','0','0','0','9117a148b85c4593a3df470a1e023573','0','2','0'), ('42441','18','','10248','FS [{#FSNAME}]: Space: Used','vfs.fs.used[dskUsed.{#SNMPINDEX}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: UCD-SNMP-MIB Used storage is calculated from two portions: dskUsedHigh dskUsedLow Together they compose 64-bit number. Reserved space is not counted in.','0','30d','0','','47120','','','','','200','1','0','','','0','0','0','0','0','0','0','04168e44dd0f4d3c96496c3fadd13fde','0','2','0'), ('42442','18','','10248','CPU utilization','system.cpu.util[snmp,{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'CPU utilization expressed in %.','0','30d','0','','42417','','','','','200','1','0','','','0','0','0','0','0','0','0','dfd150b9966c49e6b8bf08570438f17c','0','2','0'), ('42506','18','','10081','FS [{#FSLABEL}({#FSNAME})]: Space: Used, in %','vfs.fs.dependent.size[{#FSNAME},pused]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Calculated as the percentage of currently used space compared to the maximum available space.','0','30d','0','','44454','','','','','200','1','0','','','0','0','0','0','0','0','0','7bf3bd42cdf444389e6953090900c620','0','2','0'), ('42507','18','','10081','FS [{#FSLABEL}({#FSNAME})]: Space: Total','vfs.fs.dependent.size[{#FSNAME},total]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total space expressed in bytes.','0','30d','0','','44454','','','','','200','1','0','','','0','0','0','0','0','0','0','69378521b7e844ec89afe753a7cba30e','0','2','0'), ('42508','18','','10081','FS [{#FSLABEL}({#FSNAME})]: Space: Used','vfs.fs.dependent.size[{#FSNAME},used]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Used storage expressed in bytes.','0','30d','0','','44454','','','','','200','1','0','','','0','0','0','0','0','0','0','a29509b4b7f24c25a768e88e0c23c154','0','2','0'), ('42562','18','','10351','FS [{#FSLABEL}({#FSNAME})]: Space: Used, in %','vfs.fs.dependent.size[{#FSNAME},pused]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Calculated as the percentage of currently used space compared to the maximum available space.','0','30d','0','','44456','','','','','200','1','0','','','0','0','0','0','0','0','0','8949201f93ab46f0a0ad95ca6ce6124c','0','2','0'), ('42563','18','','10351','FS [{#FSLABEL}({#FSNAME})]: Space: Total','vfs.fs.dependent.size[{#FSNAME},total]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total space expressed in bytes.','0','30d','0','','44456','','','','','200','1','0','','','0','0','0','0','0','0','0','d45f2c3469dd424486bdee586e4a61eb','0','2','0'), ('42564','18','','10351','FS [{#FSLABEL}({#FSNAME})]: Space: Used','vfs.fs.dependent.size[{#FSNAME},used]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Used storage expressed in bytes.','0','30d','0','','44456','','','','','200','1','0','','','0','0','0','0','0','0','0','ddd24d7eaa5742ac9d6cbae42bcfa1ae','0','2','0'), ('42592','18','','10249','FS [{#FSNAME}]: Space: Used, in %','vfs.fs.pused[{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The space utilization expressed in % for {#FSNAME}.','0','30d','0','','47127','','','','','200','1','0','','','0','0','0','0','0','0','0','1524fab7760340b1a6eb8f5368d11edd','0','2','0'), ('42593','18','','10249','FS [{#FSNAME}]: Space: Total','vfs.fs.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified.','0','30d','0','','47127','','','','','200','1','0','','','0','0','0','0','0','0','0','19d244950a414faa86cbcaf0d2859cbd','0','2','0'), ('42594','18','','10249','FS [{#FSNAME}]: Space: Used','vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','47127','','','','','200','1','0','','','0','0','0','0','0','0','0','2d00ecfcea564fef8b94d293d023b709','0','2','0'), ('42595','18','','10249','{#MEMNAME}: Total','vm.memory.walk.data.total[hrStorageSize.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The size of the storage represented by this entry, in units of hrStorageAllocationUnits. This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system. For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified.','0','30d','0','','47128','','','','','200','1','0','','','0','0','0','0','0','0','0','ea1c8d22d38042f7ac824d59b9d6a720','0','2','0'), ('42596','18','','10249','{#MEMNAME}: Used','vm.memory.used[hrStorageUsed.{#SNMPINDEX}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'MIB: HOST-RESOURCES-MIB The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.','0','30d','0','','47128','','','','','200','1','0','','','0','0','0','0','0','0','0','71453175f6f54027a8e428b7438af99a','0','2','0'), ('42597','18','','10249','{#MEMNAME}: Utilization','vm.memory.util[{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Memory utilization in %.','0','30d','0','','47128','','','','','200','1','0','','','0','0','0','0','0','0','0','5ccc66d7a78f4501b794bd46759c738b','0','2','0'), ('42728','18','','10516','[{#LOCATION}, {#COUNTRY}]: Cloudiness','openweathermap.clouds[{#ID}]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Cloudiness in %.','0','30d','0','','42727','','','','','200','1','0','','','0','0','0','0','0','0','0','8d19b2e691a440dcb014a6518b7bb0d6','0','2','0'), ('42729','18','','10516','[{#LOCATION}, {#COUNTRY}]: Short weather status','openweathermap.description[{#ID}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Short weather status description.','0','30d','0','','42727','','','','','200','1','0','','','0','0','0','0','0','0','0','02463505cab64ae0bbc4554531372818','0','2','0'), ('42730','18','','10516','[{#LOCATION}, {#COUNTRY}]: Humidity','openweathermap.humidity[{#ID}]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Humidity in %.','0','30d','0','','42727','','','','','200','1','0','','','0','0','0','0','0','0','0','5f8fa36c0be5475bad5c5c9074afa7e4','0','2','0'), ('42731','18','','10516','[{#LOCATION}, {#COUNTRY}]: Atmospheric pressure','openweathermap.pressure[{#ID}]','0','31d','365d','0','3','','Pa','','',NULL,NULL,'','','0','','','','','2',NULL,'Atmospheric pressure in Pa.','0','30d','0','','42727','','','','','200','1','0','','','0','0','0','0','0','0','0','a9ef27e9702c4f41bfbb95579ff2014e','0','2','0'), ('42732','18','','10516','[{#LOCATION}, {#COUNTRY}]: Rain volume for the last one hour','openweathermap.rain[{#ID}]','0','31d','365d','0','0','','m','','',NULL,NULL,'','','0','','','','','2',NULL,'Rain volume for the lat one hour in m.','0','30d','0','','42727','','','','','200','1','0','','','0','0','0','0','0','0','0','6a0f10ae39a347319026ff147f1dc470','0','2','0'), ('42733','18','','10516','[{#LOCATION}, {#COUNTRY}]: Snow volume for the last one hour','openweathermap.snow[{#ID}]','0','31d','365d','0','0','','m','','',NULL,NULL,'','','0','','','','','2',NULL,'Snow volume for the lat one hour in m.','0','30d','0','','42727','','','','','200','1','0','','','0','0','0','0','0','0','0','8310f65dceeb4b348f1a769b806d5239','0','2','0'), ('42734','18','','10516','[{#LOCATION}, {#COUNTRY}]: Temperature','openweathermap.temp[{#ID}]','0','31d','365d','0','0','','{#TEMP.UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'Atmospheric temperature value.','0','30d','0','','42727','','','','','200','1','0','','','0','0','0','0','0','0','0','d30b8a4a56344ddd830d0bd633507b78','0','2','0'), ('42735','18','','10516','[{#LOCATION}, {#COUNTRY}]: Visibility','openweathermap.visibility[{#ID}]','0','31d','365d','0','3','','m','','',NULL,NULL,'','','0','','','','','2',NULL,'Visibility in m.','0','30d','0','','42727','','','','','200','1','0','','','0','0','0','0','0','0','0','23d4152f794d46f6af705749b9443100','0','2','0'), ('42736','18','','10516','[{#LOCATION}, {#COUNTRY}]: Wind direction','openweathermap.wind.direction[{#ID}]','0','31d','365d','0','0','','deg','','',NULL,'952','','','0','','','','','2',NULL,'Wind direction in degrees.','0','30d','0','','42727','','','','','200','1','0','','','0','0','0','0','0','0','0','f3350dcbd4f247e7878c06b8695beddd','0','2','0'), ('42737','18','','10516','[{#LOCATION}, {#COUNTRY}]: Wind speed','openweathermap.wind.speed[{#ID}]','0','31d','365d','0','0','','{#WIND.UNIT}','','',NULL,NULL,'','','0','','','','','2',NULL,'Wind speed value.','0','30d','0','','42727','','','','','200','1','0','','','0','0','0','0','0','0','0','67decabd27774e9fb6d9212621c43a54','0','2','0'), ('42834','18','','10518','CPU discovery','cpu.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'This discovery will create set of per core CPU metrics from UCD-SNMP-MIB, using {#CPU.COUNT} in preprocessing. That''s the only reason why LLD is used.','0','7d','0','','42821','','','','','200','1','0','','','0','0','0','0','0','0','0','cc40c0d4ea184b12bf15056f103a4654','0','2','0'), ('42876','18','','10518','CPU utilization','system.cpu.util[{#SNMPINDEX}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The CPU utilization expressed in %.','0','30d','0','','42841','','','','','200','1','0','','','0','0','0','0','0','0','0','40f51efcbf47483f84c843c00bd1e034','0','2','0'), ('42881','18','','10329','DB [{#DBNAME}]: Queries max maintenance time','pgsql.queries.mro.time_max["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Max maintenance query time for this database.','0','30d','0','','45507','','','','','200','1','0','','','0','0','0','0','0','0','0','612c8f83e228406f86e70e8486a51f9b','0','2','0'), ('42882','18','','10329','DB [{#DBNAME}]: Queries slow maintenance count','pgsql.queries.mro.slow_count["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Slow maintenance query count for this database.','0','30d','0','','45507','','','','','200','1','0','','','0','0','0','0','0','0','0','4c8934820b7f46a195115c7214d4379c','0','2','0'), ('42883','18','','10329','DB [{#DBNAME}]: Queries sum maintenance time','pgsql.queries.mro.time_sum["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Sum maintenance query time for this database.','0','30d','0','','45507','','','','','200','1','0','','','0','0','0','0','0','0','0','9cde2701b5814142b064696dc974f45d','0','2','0'), ('42884','18','','10329','DB [{#DBNAME}]: Queries slow query count','pgsql.queries.query.slow_count["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Slow query count for this database.','0','30d','0','','45507','','','','','200','1','0','','','0','0','0','0','0','0','0','9e1191f80c3a4e9aa0d3aba2b2740fef','0','2','0'), ('42885','18','','10329','DB [{#DBNAME}]: Queries max query time','pgsql.queries.query.time_max["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Max query time for this database.','0','30d','0','','45507','','','','','200','1','0','','','0','0','0','0','0','0','0','73712df30d66494998bf11566eba409f','0','2','0'), ('42886','18','','10329','DB [{#DBNAME}]: Queries sum query time','pgsql.queries.query.time_sum["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Sum query time for this database.','0','30d','0','','45507','','','','','200','1','0','','','0','0','0','0','0','0','0','ba95d84bc11b4df4aece8ddb51042339','0','2','0'), ('42887','18','','10329','DB [{#DBNAME}]: Queries slow transaction count','pgsql.queries.tx.slow_count["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Slow transaction query count for this database.','0','30d','0','','45507','','','','','200','1','0','','','0','0','0','0','0','0','0','d31701d52f5941d5a24241c95db52373','0','2','0'), ('42888','18','','10329','DB [{#DBNAME}]: Queries max transaction time','pgsql.queries.tx.time_max["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Max transaction query time for this database.','0','30d','0','','45507','','','','','200','1','0','','','0','0','0','0','0','0','0','ecc24b3143254dd4b2fc01c12cefb345','0','2','0'), ('42889','18','','10329','DB [{#DBNAME}]: Queries sum transaction time','pgsql.queries.tx.time_sum["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Sum transaction query time for this database.','0','30d','0','','45507','','','','','200','1','0','','','0','0','0','0','0','0','0','178926a753614bb58206d82f68280097','0','2','0'), ('43177','18','','10524','System contact','hpe.msa.system.contact','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The name of the person who administers the system.','23','30d','0','','44097','','','','','200','1','0','','','0','0','0','0','0','0','0','802692ec1429407a8bbb55e338959c0b','0','2','0'), ('43178','18','','10524','System health','hpe.msa.system.health','0','31d','365d','0','3','','','','',NULL,'983','','','0','','','','','0',NULL,'System health status.','0','30d','0','','44097','','','','','200','1','0','','','0','0','0','0','0','0','0','4516edee03084515bcf139c22abc4c7c','0','2','0'), ('43179','18','','10524','System information','hpe.msa.system.info','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A brief description of what the system is used for or how it is configured.','27','30d','0','','44097','','','','','200','1','0','','','0','0','0','0','0','0','0','6b82f7545a334f9cad752bd18f8886bc','0','2','0'), ('43180','18','','10524','System location','hpe.msa.system.location','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The location of the system.','24','30d','0','','44097','','','','','200','1','0','','','0','0','0','0','0','0','0','c5f082947e844adbbcf2982ad9c0c76e','0','2','0'), ('43181','18','','10524','System name','hpe.msa.system.name','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The name of the storage system.','3','30d','0','','44097','','','','','200','1','0','','','0','0','0','0','0','0','0','419165bfe80f46f7af1c5d6ab46c1f14','0','2','0'), ('43182','18','','10524','Product ID','hpe.msa.system.product_id','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The product model identifier.','29','30d','0','','44097','','','','','200','1','0','','','0','0','0','0','0','0','0','79c87a81895f46658f2e902cf7166860','0','2','0'), ('43183','18','','10524','Vendor name','hpe.msa.system.vendor_name','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The vendor name.','31','30d','0','','44097','','','','','200','1','0','','','0','0','0','0','0','0','0','947bb21483e747c9ad13b995b79289c0','0','2','0'), ('43184','18','','10524','Controllers discovery','hpe.msa.controllers.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover controllers.','0','7d','0','','44098','','','','','200','1','0','','','0','0','0','0','0','0','0','66eabcbe564644dea3427afcbf76b87c','0','2','0'), ('43185','18','','10524','Disks discovery','hpe.msa.disks.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover disks.','0','7d','0','','44105','','','','','200','1','0','','','0','0','0','0','0','0','0','16b9a9b6da11463d865cb2b59f77f376','0','2','0'), ('43186','18','','10524','Disk groups discovery','hpe.msa.disks.groups.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover disk groups.','0','7d','0','','44104','','','','','200','1','0','','','0','0','0','0','0','0','0','dd952ff876134376baef061dc260884c','0','2','0'), ('43187','18','','10524','Enclosures discovery','hpe.msa.enclosures.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover enclosures.','0','7d','0','','44103','','','','','200','1','0','','','0','0','0','0','0','0','0','c6713507122242988dc9fae6e77bdff6','0','2','0'), ('43188','18','','10524','Fans discovery','hpe.msa.fans.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover fans.','0','7d','0','','44102','','','','','200','1','0','','','0','0','0','0','0','0','0','6900c1efa2b3456ead4ae5e5a033700e','0','2','0'), ('43189','18','','10524','FRU discovery','hpe.msa.frus.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover FRU.','0','7d','0','','44101','','','','','200','1','0','','','0','0','0','0','0','0','0','ec7d856fd690401888f93f8d9c135828','0','2','0'), ('43190','18','','10524','Pools discovery','hpe.msa.pools.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover pools.','0','7d','0','','44094','','','','','200','1','0','','','0','0','0','0','0','0','0','082c1cfb851548928911b9ab69f6f75e','0','2','0'), ('43191','18','','10524','Ports discovery','hpe.msa.ports.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover ports.','0','7d','0','','44099','','','','','200','1','0','','','0','0','0','0','0','0','0','09754bd16c674ff08fad52f060035961','0','2','0'), ('43192','18','','10524','Power supplies discovery','hpe.msa.power_supplies.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover power supplies.','0','7d','0','','44107','','','','','200','1','0','','','0','0','0','0','0','0','0','2cf7945eea95414a88ce572f4c075bb1','0','2','0'), ('43193','18','','10524','Volumes discovery','hpe.msa.volumes.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover volumes.','0','7d','0','','44096','','','','','200','1','0','','','0','0','0','0','0','0','0','faae0d9be7ea4531a584a52002317cc9','0','2','0'), ('43284','18','','10525','System contact','hpe.msa.system.contact','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The name of the person who administers the system.','23','30d','0','','44124','','','','','200','1','0','','','0','0','0','0','0','0','0','4c8b2c72135a4af781c0f31730366abe','0','2','0'), ('43285','18','','10525','System health','hpe.msa.system.health','0','31d','365d','0','3','','','','',NULL,'994','','','0','','','','','0',NULL,'System health status.','0','30d','0','','44124','','','','','200','1','0','','','0','0','0','0','0','0','0','dc310d8c55a74a00bed9c004ba33d1fa','0','2','0'), ('43286','18','','10525','System information','hpe.msa.system.info','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'A brief description of what the system is used for or how it is configured.','27','30d','0','','44124','','','','','200','1','0','','','0','0','0','0','0','0','0','c4aae4a5f218472698751d9de8d1087d','0','2','0'), ('43287','18','','10525','System location','hpe.msa.system.location','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The location of the system.','24','30d','0','','44124','','','','','200','1','0','','','0','0','0','0','0','0','0','3768f170e5ef44bca39e89b1f8973e6d','0','2','0'), ('43288','18','','10525','System name','hpe.msa.system.name','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The name of the storage system.','3','30d','0','','44124','','','','','200','1','0','','','0','0','0','0','0','0','0','00c58217d52e4cd5852bdd9c71c4375f','0','2','0'), ('43289','18','','10525','Product ID','hpe.msa.system.product_id','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The product model identifier.','29','30d','0','','44124','','','','','200','1','0','','','0','0','0','0','0','0','0','103e58d547284e68b079e92074950ff9','0','2','0'), ('43290','18','','10525','Vendor name','hpe.msa.system.vendor_name','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The vendor name.','31','30d','0','','44124','','','','','200','1','0','','','0','0','0','0','0','0','0','7865d8ae697c40c5b5855c47bb82ccc4','0','2','0'), ('43291','18','','10525','Controllers discovery','hpe.msa.controllers.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover controllers.','0','7d','0','','44125','','','','','200','1','0','','','0','0','0','0','0','0','0','91c30dd0509843898601ce6d489fab03','0','2','0'), ('43292','18','','10525','Disks discovery','hpe.msa.disks.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover disks.','0','7d','0','','44132','','','','','200','1','0','','','0','0','0','0','0','0','0','46478b42c76348d7824c715fd6d20f74','0','2','0'), ('43293','18','','10525','Disk groups discovery','hpe.msa.disks.groups.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover disk groups.','0','7d','0','','44131','','','','','200','1','0','','','0','0','0','0','0','0','0','88aaea8c16a247559c68783ad0cd5c4d','0','2','0'), ('43294','18','','10525','Enclosures discovery','hpe.msa.enclosures.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover enclosures.','0','7d','0','','44130','','','','','200','1','0','','','0','0','0','0','0','0','0','5a97871f702348dca7a5378885087ea8','0','2','0'), ('43295','18','','10525','Fans discovery','hpe.msa.fans.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover fans.','0','7d','0','','44129','','','','','200','1','0','','','0','0','0','0','0','0','0','9043169f17de44baa174459b560de4f5','0','2','0'), ('43296','18','','10525','FRU discovery','hpe.msa.frus.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover FRU.','0','7d','0','','44128','','','','','200','1','0','','','0','0','0','0','0','0','0','30f91e8f7fba489aa649759219efa67c','0','2','0'), ('43297','18','','10525','Pools discovery','hpe.msa.pools.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover pools.','0','7d','0','','44121','','','','','200','1','0','','','0','0','0','0','0','0','0','178b94ddcab947ffb1614622c2b7e08e','0','2','0'), ('43298','18','','10525','Ports discovery','hpe.msa.ports.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover ports.','0','7d','0','','44126','','','','','200','1','0','','','0','0','0','0','0','0','0','bed52618dbc6498f99ddeedc78c0cdad','0','2','0'), ('43299','18','','10525','Power supplies discovery','hpe.msa.power_supplies.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover power supplies.','0','7d','0','','44134','','','','','200','1','0','','','0','0','0','0','0','0','0','1561695bd2174eada622a0d90ee1c3df','0','2','0'), ('43300','18','','10525','Volumes discovery','hpe.msa.volumes.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discover volumes.','0','7d','0','','44123','','','','','200','1','0','','','0','0','0','0','0','0','0','b132a010c8a84da79eee1ba725301be9','0','2','0'), ('43400','18','','10526','Software version number','hpe.primera.system.sw_version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Storage system software version number.','0','30d','0','','44151','','','','','200','1','0','','','0','0','0','0','0','0','0','e0f0ff7657784c8eab1a71a68ceefc19','0','2','0'), ('43401','18','','10526','Serial number','hpe.primera.system.serial_number','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'System serial number.','8','30d','0','','44151','','','','','200','1','0','','','0','0','0','0','0','0','0','d194672ea7f64dd58296d7fb2537f35b','0','2','0'), ('43402','18','','10526','Nodes total','hpe.primera.system.nodes.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of nodes in the system.','0','30d','0','','44151','','','','','200','1','0','','','0','0','0','0','0','0','0','65b22e04d7334aaf970a8961a46c22c9','0','2','0'), ('43403','18','','10526','Nodes online','hpe.primera.system.nodes.online','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of online nodes in the system.','0','30d','0','','44151','','','','','200','1','0','','','0','0','0','0','0','0','0','acf6d37022884dc99a3b55c95f6b19c8','0','2','0'), ('43404','18','','10526','System name','hpe.primera.system.name','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'System name.','3','30d','0','','44151','','','','','200','1','0','','','0','0','0','0','0','0','0','45281453bf204365a8a8ac2ba7255e54','0','2','0'), ('43405','18','','10526','Model','hpe.primera.system.model','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'System model.','29','30d','0','','44151','','','','','200','1','0','','','0','0','0','0','0','0','0','5f28ec66be1f43208139476af3653997','0','2','0'), ('43407','18','','10526','System location','hpe.primera.system.location','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Location of the system.','24','30d','0','','44151','','','','','200','1','0','','','0','0','0','0','0','0','0','dd61f3a680284893801c96bdbd445645','0','2','0'), ('43408','18','','10526','Chunklet size','hpe.primera.system.chunklet.size','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Chunklet size.','0','30d','0','','44151','','','','','200','1','0','','','0','0','0','0','0','0','0','65bcf3fb456a45358795d2f9d8249e16','0','2','0'), ('43409','18','','10526','Capacity total','hpe.primera.system.capacity.total','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total capacity in the system.','0','30d','0','','44151','','','','','200','1','0','','','0','0','0','0','0','0','0','1e6fc0d68d18474e84b4fe2e4d3374d1','0','2','0'), ('43410','18','','10526','Capacity free','hpe.primera.system.capacity.free','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Free capacity in the system.','0','30d','0','','44151','','','','','200','1','0','','','0','0','0','0','0','0','0','d23e888299d344238468481689f55e2d','0','2','0'), ('43411','18','','10526','Capacity failed','hpe.primera.system.capacity.failed','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Failed capacity in the system.','0','30d','0','','44151','','','','','200','1','0','','','0','0','0','0','0','0','0','e3842eec2e45443681670d3c1d194900','0','2','0'), ('43412','18','','10526','Capacity allocated','hpe.primera.system.capacity.allocated','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Allocated capacity in the system.','0','30d','0','','44151','','','','','200','1','0','','','0','0','0','0','0','0','0','efc450d0682c4c5d93df41d05c10eceb','0','2','0'), ('43413','18','','10526','Disks total','hpe.primera.disks.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of physical disks.','0','30d','0','','44148','','','','','200','1','0','','','0','0','0','0','0','0','0','d5b8a74991d34652973a78d58203d5fd','0','2','0'), ('43414','18','','10526','System contact','hpe.primera.system.contact','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Contact of the system.','23','30d','0','','44151','','','','','200','1','0','','','0','0','0','0','0','0','0','dd6fd61256cc4eeeb94f50d0c86fc51f','0','2','0'), ('43415','18','','10526','Common provisioning groups discovery','hpe.primera.cpg.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'List of CPGs resources.','0','7d','1','','44154','','','','','200','1','0','','','0','0','0','0','0','0','0','b9132b095eb349c99e868ea40364596d','0','2','0'), ('43416','18','','10526','Disks discovery','hpe.primera.disks.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'List of physical disk resources.','0','7d','0','','44148','','','','','200','1','0','','','0','0','0','0','0','0','0','a83ed573e6ab40e8b7306178ddd2658b','0','2','0'), ('43417','18','','10526','Hosts discovery','hpe.primera.hosts.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'List of host properties.','0','7d','1','','44149','','','','','200','1','0','','','0','0','0','0','0','0','0','77ae172949044c148ac8f56f05d3af33','0','2','0'), ('43418','18','','10526','Ports discovery','hpe.primera.ports.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'List of ports.','0','7d','1','','44150','','','','','200','1','0','','','0','0','0','0','0','0','0','3c9222777f2649749df76cbf61601557','0','2','0'), ('43419','18','','10526','Tasks discovery','hpe.primera.tasks.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'List of tasks started within last 24 hours.','0','1d','1','','44152','','','','','200','1','0','','','0','0','0','0','0','0','0','b47a6afafca6486ea4ffb12dd3322bab','0','2','0'), ('43420','18','','10526','Volumes discovery','hpe.primera.volumes.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'List of storage volume resources.','0','7d','1','','44153','','','','','200','1','0','','','0','0','0','0','0','0','0','eb73fcc415c54ac18840d2655f048f6c','0','2','0'), ('43529','18','','10527','[{#ALARM_NAME}]: State','aws.ec2.alarm.state["{#ALARM_NAME}"]','0','31d','365d','0','3','','','','',NULL,'1012','','','0','','','','','2',NULL,'The state value for the alarm. Possible values: 0 (OK), 1 (INSUFFICIENT_DATA), 2 (ALARM). Alarm description: {#ALARM_DESCRIPTION}','0','30d','0','','45503','','','','','200','1','0','','','0','0','0','0','0','0','0','87a163166aed40b786785b64122ab365','0','2','0'), ('43530','18','','10527','[{#ALARM_NAME}]: State reason','aws.ec2.alarm.state_reason["{#ALARM_NAME}"]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'An explanation for the alarm state, in text format. Alarm description: {#ALARM_DESCRIPTION}','0','30d','0','','45503','','','','','200','1','0','','','0','0','0','0','0','0','0','92a33b49f010464db7e6c7ef586240e9','0','2','0'), ('43538','18','','10527','[{#VOLUME_ID}]: Attachment state','aws.ec2.ebs.attachment_status["{#VOLUME_ID}"]','0','31d','365d','0','3','','','','',NULL,'1014','','','0','','','','','2',NULL,'The attachment state of the volume. Possible values: 0 (attaching), 1 (attached), 2 (detaching).','0','30d','0','','45504','','','','','200','1','0','','','0','0','0','0','0','0','0','cc0ece769d954bb590fb1a1a3d20e559','0','2','0'), ('43539','18','','10527','[{#VOLUME_ID}]: Attachment time','aws.ec2.ebs.attachment_time["{#VOLUME_ID}"]','0','31d','0','0','1','','','','',NULL,'1014','','','0','','','','','2',NULL,'The time stamp when the attachment initiated.','0','30d','0','','45504','','','','','200','1','0','','','0','0','0','0','0','0','0','639e7ddcac6345239fa27549ad35e799','0','2','0'), ('43543','18','','10527','[{#VOLUME_ID}]: Status','aws.ec2.ebs.status["{#VOLUME_ID}"]','0','31d','365d','0','3','','','','',NULL,'1015','','','0','','','','','2',NULL,'The state of the volume. Possible values: 0 (creating), 1 (available), 2 (in-use), 3 (deleting), 4 (deleted), 5 (error).','0','30d','0','','45504','','','','','200','1','0','','','0','0','0','0','0','0','0','95add92252e24ab8b596c539d8090f3d','0','2','0'), ('43544','18','','10527','[{#VOLUME_ID}]: Device','aws.ec2.ebs.device["{#VOLUME_ID}"]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The device name specified in the block device mapping (for example, /dev/sda1).','0','30d','0','','45504','','','','','200','1','0','','','0','0','0','0','0','0','0','141205eac3e4437d824794f8e6c76e90','0','2','0'), ('43545','18','','10527','[{#VOLUME_ID}]: Create time','aws.ec2.ebs.create_time["{#VOLUME_ID}"]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The time stamp when volume creation was initiated.','0','30d','0','','45504','','','','','200','1','0','','','0','0','0','0','0','0','0','2df96e6c726e40c6a257c00ae26e8902','0','2','0'), ('43643','18','','10529','Aurora metrics discovery','aws.rds.aurora.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery Amazon Aurora metrics. https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.AuroraMySQL.Monitoring.Metrics.html#Aurora.AuroraMySQL.Monitoring.Metrics.instances','0','7d','0','','43630','','','','','200','1','0','','','0','0','0','0','0','0','0','f13154dfb6b547718d1bf4b0ed12d35f','0','2','0'), ('43645','18','','10529','Aurora MySQL metrics discovery','aws.rds.postgresql.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery Aurora MySQL metrics. Storage types: aurora (for MySQL 5.6-compatible Aurora) aurora-mysql (for MySQL 5.7-compatible and MySQL 8.0-compatible Aurora)','0','7d','0','','43630','','','','','200','1','0','','','0','0','0','0','0','0','0','ec07301eaaad4f32a3759692d96150ab','0','2','0'), ('43905','18','','10534','Appliance bays discovery','hpe.synergy.appliances.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A list of the appliance bays in the enclosure.','0','7d','0','','43903','','','','','200','1','0','','','0','0','0','0','0','0','0','73d93ade7489472fae4e68b05de52291','0','2','0'), ('43906','18','','10534','Cross bars discovery','hpe.synergy.crossbars.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'SDX cross fabric module connects to all computing devices installed in the system enclosure and brings in the capability of hard partitioning. Crossbar details are relevant only for enclosures with type "SDX".','0','7d','0','','43903','','','','','200','1','0','','','0','0','0','0','0','0','0','2ebb056eceea47d7ab8ca623504feb04','0','2','0'), ('43907','18','','10534','Datacenters discovery','hpe.synergy.datacenters.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A list of the datacenters.','0','7d','0','','44205','','','','','200','1','0','','','0','0','0','0','0','0','0','148ed07fd68049c6976df0bc8ccdc416','0','2','0'), ('43908','18','','10534','Devices discovery','hpe.synergy.devices.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A list of device bays in the enclosure.','0','7d','0','','43903','','','','','200','1','0','','','0','0','0','0','0','0','0','3cde01eb8cbb4977824dc4fd00c56a10','0','2','0'), ('43909','18','','10534','Enclosures discovery','hpe.synergy.enclosures.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A list of enclosures resources.','0','7d','0','','43903','','','','','200','1','0','','','0','0','0','0','0','0','0','62f5e7c29207459c80163148a6231d8a','0','2','0'), ('43910','18','','10534','Ethernet networks discovery','hpe.synergy.ethernet.networks.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A list of the ethernet networks.','0','7d','0','','44201','','','','','200','1','0','','','0','0','0','0','0','0','0','386a121cbef74d0d9f625eedd6ed291c','0','2','0'), ('43911','18','','10534','Fabrics discovery','hpe.synergy.fabrics.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A list of the fabrics.','0','7d','0','','44202','','','','','200','1','0','','','0','0','0','0','0','0','0','67c37bbfab9345d38ed5e576fdb7cb23','0','2','0'), ('43912','18','','10534','Fans discovery','hpe.synergy.fans.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A list of the fan bays in the enclosure.','0','7d','0','','43903','','','','','200','1','0','','','0','0','0','0','0','0','0','5d5303b09c6e43748571c9ea247774be','0','2','0'), ('43913','18','','10534','FC networks discovery','hpe.synergy.fc.networks.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A list of the FC networks.','0','7d','0','','44203','','','','','200','1','0','','','0','0','0','0','0','0','0','100519374fc94a4487a871224c483229','0','2','0'), ('43914','18','','10534','Managers discovery','hpe.synergy.frame_link_modules.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A list of the Synergy Frame Link Module bays.','0','7d','0','','43903','','','','','200','1','0','','','0','0','0','0','0','0','0','0ac7b7355249475eac517cbc9ac8ba83','0','2','0'), ('43915','18','','10534','Hypervisor managers discovery','hpe.synergy.hypervisor.managers.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A list of the hypervisor managers.','0','7d','0','','44204','','','','','200','1','0','','','0','0','0','0','0','0','0','6d77748c49de4c6c9c0319a52bec29fc','0','2','0'), ('43916','18','','10534','Interconnects discovery','hpe.synergy.interconnects.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Interconnects are centrally managed by their containing logical interconnect. The interconnect provides a physical view of a detailed downlink and uplink port state and configuration, including the current link state, speed, port role (uplink, downlink, or stacking), current pluggable media, power state, and immediate connected neighbor.','0','7d','0','','44213','','','','','200','1','0','','','0','0','0','0','0','0','0','c05507c8d82f4354a813670620298732','0','2','0'), ('43917','18','','10534','Logical enclosures discovery','hpe.synergy.logical_enclosures.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A list of the logical enclosures.','0','7d','0','','44206','','','','','200','1','0','','','0','0','0','0','0','0','0','eae31026740c4de299a5e52753eb9445','0','2','0'), ('43918','18','','10534','nPar discovery','hpe.synergy.npar.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Electrically isolated hardware partition (nPar). Partition details are relevant only for enclosures with type "SDX".','0','7d','0','','43903','','','','','200','1','0','','','0','0','0','0','0','0','0','b800eed59653494cb5383e91627f0ef7','0','2','0'), ('43919','18','','10534','Power supplies discovery','hpe.synergy.ps.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'List of power supply bays in the enclosure.','0','7d','0','','43903','','','','','200','1','0','','','0','0','0','0','0','0','0','8346025282a044cd8dafc2521a596f18','0','2','0'), ('43920','18','','10534','Racks discovery','hpe.synergy.racks.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A list of the racks.','0','7d','0','','44207','','','','','200','1','0','','','0','0','0','0','0','0','0','de1819e3eab74663b7cbd893c12ea540','0','2','0'), ('43921','18','','10534','Server hardware discovery','hpe.synergy.server_hardware.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'The server hardware resource is a representation of a physical server.','0','7d','0','','44208','','','','','200','1','0','','','0','0','0','0','0','0','0','dfe04e3e5bfd4c73b0f02a6329e3149b','0','2','0'), ('43922','18','','10534','Storage pools discovery','hpe.synergy.storage_pools.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A list of the storage pools.','0','7d','0','','44209','','','','','200','1','0','','','0','0','0','0','0','0','0','a295686d8b5b4970b1ea5eb67bee55f1','0','2','0'), ('43923','18','','10534','Storage systems discovery','hpe.synergy.storage_systems.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A list of the storage systems.','0','7d','0','','44210','','','','','200','1','0','','','0','0','0','0','0','0','0','65c71880235345d69327b8cdfbd526e6','0','2','0'), ('43924','18','','10534','Storage volumes discovery','hpe.synergy.storage_volumes.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A list of the storage volumes.','0','7d','0','','44211','','','','','200','1','0','','','0','0','0','0','0','0','0','8f274eade77c49abb1185f3545630653','0','2','0'), ('43925','18','','10534','Uplink sets discovery','hpe.synergy.uplink_sets.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'A list of the uplink sets.','0','7d','0','','44212','','','','','200','1','0','','','0','0','0','0','0','0','0','d4ba209881884b75b1edd7cca832be79','0','2','0'), ('44059','18','','10047','Proxy [{#PROXY.NAME}]: Certificate','zabbix.proxy.cert[{#PROXY.NAME}]','0','31d','365d','0','3','','','','',NULL,'1048','','','0','','','','','2',NULL,'The encryption status for connections from a proxy.','0','30d','0','','44637','','','','','200','1','0','','','0','0','0','0','0','0','0','5cf1d8eae42740c88e2700ec619fc0e7','0','2','0'), ('44060','18','','10047','Proxy [{#PROXY.NAME}]: Compatibility','zabbix.proxy.compatibility[{#PROXY.NAME}]','0','31d','365d','0','3','','','','',NULL,'1045','','','0','','','','','2',NULL,'Version of proxy compared to Zabbix server version. Possible values: 0 - Undefined; 1 - Current version (proxy and server have the same major version); 2 - Outdated version (proxy version is older than server version, but is partially supported); 3 - Unsupported version (proxy version is older than server previous LTS release version or server major version is older than proxy major version).','0','30d','0','','44637','','','','','200','1','0','','','0','0','0','0','0','0','0','38498bb9fc884b2082ff5ecf76cc401e','0','2','0'), ('44061','18','','10047','Proxy [{#PROXY.NAME}]: Compression','zabbix.proxy.compression[{#PROXY.NAME}]','0','31d','365d','0','3','','','','',NULL,'1048','','','0','','','','','2',NULL,'The compression status of a proxy.','0','30d','0','','44637','','','','','200','1','0','','','0','0','0','0','0','0','0','5983273711b64a93bd30c7ba983f2b35','0','2','0'), ('44062','18','','10047','Proxy [{#PROXY.NAME}]: Host count','zabbix.proxy.hosts[{#PROXY.NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of enabled hosts assigned to a proxy.','0','30d','0','','44637','','','','','200','1','0','','','0','0','0','0','0','0','0','01c4a2f48dce46e0a931fc7ab906800d','0','2','0'), ('44063','18','','10047','Proxy [{#PROXY.NAME}]: Item count','zabbix.proxy.items[{#PROXY.NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of enabled items on enabled hosts assigned to a proxy.','0','30d','0','','44637','','','','','200','1','0','','','0','0','0','0','0','0','0','187a005cd52c4ed69919b0356c1ccd39','0','2','0'), ('44064','18','','10047','Proxy [{#PROXY.NAME}]: Last seen, in seconds','zabbix.proxy.last_seen[{#PROXY.NAME}]','0','31d','365d','0','0','','','','',NULL,'1046','','','0','','','','','2',NULL,'The time when a proxy was last seen by a server.','0','30d','0','','44637','','','','','200','1','0','','','0','0','0','0','0','0','0','f8c915861df843bc9c95ec8034d66fb7','0','2','0'), ('44065','18','','10047','Proxy [{#PROXY.NAME}]: Mode','zabbix.proxy.mode[{#PROXY.NAME}]','0','31d','365d','0','3','','','','',NULL,'1047','','','0','','','','','2',NULL,'The mode of Zabbix proxy.','0','30d','0','','44637','','','','','200','1','0','','','0','0','0','0','0','0','0','357461ce5cd24632a1359c8ab31e0422','0','2','0'), ('44066','18','','10047','Proxy [{#PROXY.NAME}]: PSK','zabbix.proxy.psk[{#PROXY.NAME}]','0','31d','365d','0','3','','','','',NULL,'1048','','','0','','','','','2',NULL,'The encryption status for connections from a proxy.','0','30d','0','','44637','','','','','200','1','0','','','0','0','0','0','0','0','0','a68564ff50284903bdc38432638a653b','0','2','0'), ('44067','18','','10047','Proxy [{#PROXY.NAME}]: Required VPS','zabbix.proxy.requiredperformance[{#PROXY.NAME}]','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','2',NULL,'The required performance of a proxy (the number of values that need to be collected per second).','0','30d','0','','44637','','','','','200','1','0','','','0','0','0','0','0','0','0','3e45db48df464b91a4951f13dd298cd5','0','2','0'), ('44068','18','','10047','Proxy [{#PROXY.NAME}]: Unencrypted','zabbix.proxy.unencrypted[{#PROXY.NAME}]','0','31d','365d','0','3','','','','',NULL,'1048','','','0','','','','','2',NULL,'The encryption status for connections from a proxy.','0','30d','0','','44637','','','','','200','1','0','','','0','0','0','0','0','0','0','8986a7d452c448de88dcb054541064e4','0','2','0'), ('44069','18','','10047','Proxy [{#PROXY.NAME}]: Version','zabbix.proxy.version[{#PROXY.NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'A version of Zabbix proxy.','0','30d','0','','44637','','','','','200','1','0','','','0','0','0','0','0','0','0','22da7ee85c044e128ceb47225ce7aaba','0','2','0'), ('44082','18','','10261','Zabbix proxy discovery','zabbix.proxy.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'LLD rule with item and trigger prototypes for proxy discovery.','0','7d','0','','44081','','','','','200','1','0','','','0','0','0','0','0','0','0','db52e7ced392405184955a884ad9dd00','0','2','0'), ('44108','18','','10524','Controller [{#CONTROLLER.ID}]: Get statistics data','hpe.msa.get.controller_statistics["{#CONTROLLER.ID}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The discovered controller statistics data.','0','30d','0','','44106','','','','','200','1','0','','','0','0','0','0','0','0','0','682fb8c5a4bd40889dcb76070aaefb06','0','2','0'), ('44109','18','','10524','Controller [{#CONTROLLER.ID}]: Get data','hpe.msa.get.controllers["{#CONTROLLER.ID}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The discovered controller data.','0','30d','0','','44098','','','','','200','1','0','','','0','0','0','0','0','0','0','42b163abb92b42a3921364222807843b','0','2','0'), ('44110','18','','10524','Disk [{#DURABLE.ID}]: Get data','hpe.msa.get.disks["{#DURABLE.ID}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The discovered disk data.','0','30d','0','','44105','','','','','200','1','0','','','0','0','0','0','0','0','0','e5faef5f8750462b8d676a74fa67b97c','0','2','0'), ('44111','18','','10524','Disk group [{#NAME}]: Get data','hpe.msa.get.disks.groups["{#NAME}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The discovered disk group data.','0','30d','0','','44104','','','','','200','1','0','','','0','0','0','0','0','0','0','42666f013abf4441b85d94b89ed6cac1','0','2','0'), ('44112','18','','10524','Disk group [{#NAME}]: Get statistics data','hpe.msa.get.disks.groups.statistics["{#NAME}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The discovered disk group statistics data.','0','30d','0','','44100','','','','','200','1','0','','','0','0','0','0','0','0','0','20c557ea7c4e439c8c8c7fe5f8bb3356','0','2','0'), ('44113','18','','10524','Enclosure [{#DURABLE.ID}]: Get data','hpe.msa.get.enclosures["{#DURABLE.ID}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The discovered enclosure data.','0','30d','0','','44103','','','','','200','1','0','','','0','0','0','0','0','0','0','db3050d98b0548acbc3cf318ce71e9e3','0','2','0'), ('44114','18','','10524','Fan [{#DURABLE.ID}]: Get data','hpe.msa.get.fans["{#DURABLE.ID}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The discovered fan data.','0','30d','0','','44102','','','','','200','1','0','','','0','0','0','0','0','0','0','8fe64d81153d430c8aa862394a384172','0','2','0'), ('44115','18','','10524','FRU [{#ENCLOSURE.ID}: {#LOCATION}]: Get data','hpe.msa.get.frus["{#ENCLOSURE.ID}:{#LOCATION}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The discovered FRU data.','0','30d','0','','44101','','','','','200','1','0','','','0','0','0','0','0','0','0','e65d0d09a9244e46b7fd16e89128d50b','0','2','0'), ('44116','18','','10524','Pool [{#NAME}]: Get data','hpe.msa.get.pools["{#NAME}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The discovered pool data.','0','30d','0','','44094','','','','','200','1','0','','','0','0','0','0','0','0','0','227c8ed5f3514aa886e27f28b49fe7fd','0','2','0'), ('44117','18','','10524','Port [{#NAME}]: Get data','hpe.msa.get.ports["{#NAME}",,data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The discovered port data.','0','30d','0','','44099','','','','','200','1','0','','','0','0','0','0','0','0','0','c0643381ec274865826cddd3ce598326','0','2','0'), ('44118','18','','10524','Power supply [{#DURABLE.ID}]: Get data','hpe.msa.get.power_supplies["{#DURABLE.ID}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The discovered power supply data.','0','30d','0','','44107','','','','','200','1','0','','','0','0','0','0','0','0','0','029b4173b22f4359b5ee6013a524dd4f','0','2','0'), ('44119','18','','10524','Volume [{#NAME}]: Get statistics data','hpe.msa.get.volumes.statistics["{#NAME}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The discovered volume statistics data.','0','30d','0','','44095','','','','','200','1','0','','','0','0','0','0','0','0','0','971c984b8fc44f05b24a30d11a482b3a','0','2','0'), ('44120','18','','10524','Volume [{#NAME}]: Get data','hpe.msa.get.volumes["{#NAME}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The discovered volume data.','0','30d','0','','44096','','','','','200','1','0','','','0','0','0','0','0','0','0','2515db4e86d7486481583114c067d522','0','2','0'), ('44135','18','','10525','Controller [{#CONTROLLER.ID}]: Get statistics data','hpe.msa.get.controller_statistics["{#CONTROLLER.ID}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The discovered controller statistics data.','0','30d','0','','44133','','','','','200','1','0','','','0','0','0','0','0','0','0','d4be916f97ef415b9e892f464f8f8637','0','2','0'), ('44136','18','','10525','Controller [{#CONTROLLER.ID}]: Get data','hpe.msa.get.controllers["{#CONTROLLER.ID}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The discovered controller data.','0','30d','0','','44125','','','','','200','1','0','','','0','0','0','0','0','0','0','efd83949c23e4f8b8f137ca13bb2449c','0','2','0'), ('44137','18','','10525','Disk [{#DURABLE.ID}]: Get data','hpe.msa.get.disks["{#DURABLE.ID}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The discovered disk data.','0','30d','0','','44132','','','','','200','1','0','','','0','0','0','0','0','0','0','2f213e512833498081747c89b5238dc8','0','2','0'), ('44138','18','','10525','Disk group [{#NAME}]: Get data','hpe.msa.get.disks.groups["{#NAME}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The discovered disk group data.','0','30d','0','','44131','','','','','200','1','0','','','0','0','0','0','0','0','0','9520e31d713b4ba59b682f47dda7154e','0','2','0'), ('44139','18','','10525','Disk group [{#NAME}]: Get statistics data','hpe.msa.get.disks.groups.statistics["{#NAME}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The discovered disk group statistics data.','0','30d','0','','44127','','','','','200','1','0','','','0','0','0','0','0','0','0','7c7ce5cd807a4791800ed5f812b4b633','0','2','0'), ('44140','18','','10525','Enclosure [{#DURABLE.ID}]: Get data','hpe.msa.get.enclosures["{#DURABLE.ID}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The discovered enclosure data.','0','30d','0','','44130','','','','','200','1','0','','','0','0','0','0','0','0','0','f9d69bb1597e435f8c8c67b51998c0a4','0','2','0'), ('44141','18','','10525','Fan [{#DURABLE.ID}]: Get data','hpe.msa.get.fans["{#DURABLE.ID}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The discovered fan data.','0','30d','0','','44129','','','','','200','1','0','','','0','0','0','0','0','0','0','468505cb7da74e04966477b02ab63b12','0','2','0'), ('44142','18','','10525','FRU [{#ENCLOSURE.ID}: {#LOCATION}]: Get data','hpe.msa.get.frus["{#ENCLOSURE.ID}:{#LOCATION}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The discovered FRU data.','0','30d','0','','44128','','','','','200','1','0','','','0','0','0','0','0','0','0','7bf42c023d5647bdbc4c35d0fb474454','0','2','0'), ('44143','18','','10525','Pool [{#NAME}]: Get data','hpe.msa.get.pools["{#NAME}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The discovered pool data.','0','30d','0','','44121','','','','','200','1','0','','','0','0','0','0','0','0','0','677f29f2879c44ceaf210bed98f257b0','0','2','0'), ('44144','18','','10525','Port [{#NAME}]: Get data','hpe.msa.get.ports["{#NAME}",,data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The discovered port data.','0','30d','0','','44126','','','','','200','1','0','','','0','0','0','0','0','0','0','540799973d2d440ca80eeeae99f84798','0','2','0'), ('44145','18','','10525','Power supply [{#DURABLE.ID}]: Get data','hpe.msa.get.power_supplies["{#DURABLE.ID}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The discovered power supply data.','0','30d','0','','44134','','','','','200','1','0','','','0','0','0','0','0','0','0','b7f37328cfff49789216d9caec2d09bc','0','2','0'), ('44146','18','','10525','Volume [{#NAME}]: Get data','hpe.msa.get.volumes["{#NAME}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The discovered volume data.','0','30d','0','','44123','','','','','200','1','0','','','0','0','0','0','0','0','0','c5e4998ee3e44a2fa82facfceb465ffd','0','2','0'), ('44147','18','','10525','Volume [{#NAME}]: Get statistics data','hpe.msa.get.volumes.statistics["{#NAME}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The discovered volume statistics data.','0','30d','0','','44122','','','','','200','1','0','','','0','0','0','0','0','0','0','df0b425817414f3cae218f4269e9068f','0','2','0'), ('44155','18','','10526','CPG [{#NAME}]: Get CPG data','hpe.primera.cpg["{#ID}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'CPG {#NAME} data','0','30d','0','','44154','','','','','200','1','0','','','0','0','0','0','0','0','0','54afd11ca82b4f94861cc145ca681291','0','2','0'), ('44156','18','','10526','Disk [{#POSITION}]: Get disk data','hpe.primera.disk["{#ID}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Disk [{#POSITION}] data','0','30d','0','','44148','','','','','200','1','0','','','0','0','0','0','0','0','0','811d27264b5e41e3a9e9f397888cda47','0','2','0'), ('44157','18','','10526','Host [{#NAME}]: Get host data','hpe.primera.host["{#ID}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Host [{#NAME}] data','0','30d','0','','44149','','','','','200','1','0','','','0','0','0','0','0','0','0','dfa476d826d34f6bb0f2015b06b6c272','0','2','0'), ('44158','18','','10526','Port [{#NODE}:{#SLOT}:{#CARD.PORT}]: Get port data','hpe.primera.port["{#NODE}:{#SLOT}:{#CARD.PORT}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Port [{#NODE}:{#SLOT}:{#CARD.PORT}] data','0','30d','0','','44150','','','','','200','1','0','','','0','0','0','0','0','0','0','3b3d82c9c161429294a69774ec0daf5d','0','2','0'), ('44159','18','','10526','Task [{#NAME}]: Get task data','hpe.primera.task["{#ID}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Task [{#NAME}] data','0','30d','0','','44152','','','','','200','1','0','','','0','0','0','0','0','0','0','8c64d0364b0f40c8a73f51fe74962934','0','2','0'), ('44160','18','','10526','Volume [{#NAME}]: Get volume data','hpe.primera.volume["{#ID}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Volume [{#NAME}] data','0','30d','0','','44153','','','','','200','1','0','','','0','0','0','0','0','0','0','37c200429b414e149fb970c269721154','0','2','0'), ('44214','18','','10534','Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Get data','hpe.synergy.appliance["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Data of the appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}].','0','30d','0','','43903','','','','','200','1','0','','','0','0','0','0','0','0','0','76d81ddf977f4d3481af82f8a9031b50','0','2','0'), ('44215','18','','10534','Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Get data','hpe.synergy.crossbar["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] data','0','30d','0','','43903','','','','','200','1','0','','','0','0','0','0','0','0','0','cedc8d60b7c647efbd148d020432861d','0','2','0'), ('44216','18','','10534','Datacenter [{#NAME}]: Get data','hpe.synergy.datacenter["{#NAME}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Data of the datacenter [{#NAME}].','0','30d','0','','44205','','','','','200','1','0','','','0','0','0','0','0','0','0','08830efa6eb64d7291eaa15bbfc0b851','0','2','0'), ('44217','18','','10534','Device [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Get data','hpe.synergy.device["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Data of the device [{#ENCLOSURE_NAME}:{#BAY_NUMBER}].','0','30d','0','','43903','','','','','200','1','0','','','0','0','0','0','0','0','0','5c7b1315b123482e908229882b6e57c1','0','2','0'), ('44218','18','','10534','Enclosure [{#NAME}]: Get data','hpe.synergy.enclosure["{#NAME}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Data of the enclosure [{#NAME}].','0','30d','0','','43903','','','','','200','1','0','','','0','0','0','0','0','0','0','2bdee9f0f6fa49928b4cef48b9900859','0','2','0'), ('44219','18','','10534','Ethernet network [{#NAME}]: Get data','hpe.synergy.ethernet.network["{#NAME}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Data of the ethernet network [{#NAME}].','0','30d','0','','44201','','','','','200','1','0','','','0','0','0','0','0','0','0','0176e96b210b4a778b0b4b9b6fabdf3b','0','2','0'), ('44220','18','','10534','Fabric [{#NAME}]: Get data','hpe.synergy.fabric["{#NAME}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Data of the fabric [{#NAME}].','0','30d','0','','44202','','','','','200','1','0','','','0','0','0','0','0','0','0','26e6e32676d74347abd8dbf92c649113','0','2','0'), ('44221','18','','10534','Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Get data','hpe.synergy.fan["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Data of the fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}].','0','30d','0','','43903','','','','','200','1','0','','','0','0','0','0','0','0','0','1ee7ddcfd9734abbaef8dc345f9eb85d','0','2','0'), ('44222','18','','10534','FC network [{#NAME}]: Get data','hpe.synergy.fc.network["{#NAME}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Data of the FC network [{#NAME}].','0','30d','0','','44203','','','','','200','1','0','','','0','0','0','0','0','0','0','75ca293f7deb4d7faa669f141478f1d7','0','2','0'), ('44223','18','','10534','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Get data','hpe.synergy.manager["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Data of the manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}].','0','30d','0','','43903','','','','','200','1','0','','','0','0','0','0','0','0','0','53c899a616a24fc4990363d3f2942417','0','2','0'), ('44224','18','','10534','Hypervisor manager [{#NAME}]: Get data','hpe.synergy.hypervisor_manager["{#NAME}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Data of the hypervisor manager [{#NAME}].','0','30d','0','','44204','','','','','200','1','0','','','0','0','0','0','0','0','0','c6ba70270a424762bb8baf9531f44ed9','0','2','0'), ('44225','18','','10534','Interconnect [{#NAME}]: Get data','hpe.synergy.interconnect["{#NAME}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Data of the interconnect [{#NAME}].','0','30d','0','','44213','','','','','200','1','0','','','0','0','0','0','0','0','0','5c504f8c744244febae87002cd520cbd','0','2','0'), ('44226','18','','10534','Logical enclosure [{#NAME}]: Get data','hpe.synergy.logical_enclosure["{#NAME}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Data of the logical enclosure [{#NAME}].','0','30d','0','','44206','','','','','200','1','0','','','0','0','0','0','0','0','0','96e5588599854754b9c7513c6786d9a6','0','2','0'), ('44227','18','','10534','Partition [{#ENCLOSURE_NAME}:{#PARTITION_ID}]: Get data','hpe.synergy.partition["{#PARTITION_ID}","{#ENCLOSURE_NAME}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Data of the partition [{#ENCLOSURE_NAME}:{#PARTITION_ID}].','0','30d','0','','43903','','','','','200','1','0','','','0','0','0','0','0','0','0','440aa83c441d490491b12ef31675428e','0','2','0'), ('44228','18','','10534','Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Get data','hpe.synergy.power_supply["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Data of the power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}].','0','30d','0','','43903','','','','','200','1','0','','','0','0','0','0','0','0','0','92d8618ee81742f6bb1cfdd63b51f3ea','0','2','0'), ('44229','18','','10534','Rack [{#NAME}]: Get data','hpe.synergy.rack["{#NAME}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Data of the rack [{#NAME}].','0','30d','0','','44207','','','','','200','1','0','','','0','0','0','0','0','0','0','8a68ba795abd445bb6832f8fb6fa5416','0','2','0'), ('44230','18','','10534','Server [{#SERVER_NAME}:{#LOCATION}]: Get data','hpe.synergy.server_hardware["{#LOCATION}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Data of the server [{#SERVER_NAME}:{#LOCATION}].','0','30d','0','','44208','','','','','200','1','0','','','0','0','0','0','0','0','0','ee38861bdb044352a8937fe0d13d2e45','0','2','0'), ('44231','18','','10534','Storage pool [{#NAME}]: Get data','hpe.synergy.storage.pools["{#NAME}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Data of the storage pool [{#NAME}].','0','30d','0','','44209','','','','','200','1','0','','','0','0','0','0','0','0','0','ee254d7b254641c7a5f762cbdd2dabf2','0','2','0'), ('44232','18','','10534','Storage system [{#NAME}]: Get data','hpe.synergy.storage.system["{#NAME}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Data of the storage system [{#NAME}].','0','30d','0','','44210','','','','','200','1','0','','','0','0','0','0','0','0','0','2f9bf8f7699945488201922c76f51675','0','2','0'), ('44233','18','','10534','Storage volume [{#NAME}]: Get data','hpe.synergy.storage.volumes["{#NAME}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Data of the storage volume [{#NAME}].','0','30d','0','','44211','','','','','200','1','0','','','0','0','0','0','0','0','0','e02b8e2f502b4bfb8fa9fd17d2d4e416','0','2','0'), ('44234','18','','10534','Uplink set [{#NAME}]: Get data','hpe.synergy.uplink_set["{#NAME}",data]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Data of the uplink set [{#NAME}].','0','30d','0','','44212','','','','','200','1','0','','','0','0','0','0','0','0','0','1469992463264badb3a80839414e9f2e','0','2','0'), ('44323','18','','10548','VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: jitter avg','meraki.vpn.stat.jitter.avg[{#NETWORK.ID}, {#SENDER.UPLINK}, {#PEER.NETWORK.ID}, {#RECEIVER.UPLINK}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'VPN connection jitter avg.','0','30d','0','','44322','','','','','200','1','0','','','0','0','0','0','0','0','0','6e38c9538ad4489ea08b6d21fc8a8bd3','0','2','0'), ('44324','18','','10548','VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: jitter max','meraki.vpn.stat.jitter.max[{#NETWORK.ID}, {#SENDER.UPLINK}, {#PEER.NETWORK.ID}, {#RECEIVER.UPLINK}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'VPN connection jitter max.','0','30d','0','','44322','','','','','200','1','0','','','0','0','0','0','0','0','0','c676fc71415d4e199f257f165fc56163','0','2','0'), ('44325','18','','10548','VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: jitter min','meraki.vpn.stat.jitter.min[{#NETWORK.ID}, {#SENDER.UPLINK}, {#PEER.NETWORK.ID}, {#RECEIVER.UPLINK}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'VPN connection jitter min.','0','30d','0','','44322','','','','','200','1','0','','','0','0','0','0','0','0','0','c0d392d7ca2b42df9a967ffb2dcfa80d','0','2','0'), ('44326','18','','10548','VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: latency avg','meraki.vpn.stat.latency.avg[{#NETWORK.ID}, {#SENDER.UPLINK}, {#PEER.NETWORK.ID}, {#RECEIVER.UPLINK}]','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'VPN connection avg latency.','0','30d','0','','44322','','','','','200','1','0','','','0','0','0','0','0','0','0','6f56db10935641b0bf416ae3402ddb17','0','2','0'), ('44327','18','','10548','VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: latency max','meraki.vpn.stat.latency.max[{#NETWORK.ID}, {#SENDER.UPLINK}, {#PEER.NETWORK.ID}, {#RECEIVER.UPLINK}]','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'VPN connection max latency.','0','30d','0','','44322','','','','','200','1','0','','','0','0','0','0','0','0','0','626ca25322e9413ca0e5bee2c8760c73','0','2','0'), ('44328','18','','10548','VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: latency min','meraki.vpn.stat.latency.min[{#NETWORK.ID}, {#SENDER.UPLINK}, {#PEER.NETWORK.ID}, {#RECEIVER.UPLINK}]','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'VPN connection min latency.','0','30d','0','','44322','','','','','200','1','0','','','0','0','0','0','0','0','0','56a0ea96051a4b45af7db3da1af3e4a4','0','2','0'), ('44329','18','','10548','VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: loss avg, %','meraki.vpn.stat.loss.avg[{#NETWORK.ID}, {#SENDER.UPLINK}, {#PEER.NETWORK.ID}, {#RECEIVER.UPLINK}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'VPN connection loss avg.','0','30d','0','','44322','','','','','200','1','0','','','0','0','0','0','0','0','0','a56018615c9540b58b8b074ccc8a05bd','0','2','0'), ('44330','18','','10548','VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: loss max, %','meraki.vpn.stat.loss.max[{#NETWORK.ID}, {#SENDER.UPLINK}, {#PEER.NETWORK.ID}, {#RECEIVER.UPLINK}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'VPN connection loss max.','0','30d','0','','44322','','','','','200','1','0','','','0','0','0','0','0','0','0','7dccf9e43d944c37934a1dded9999756','0','2','0'), ('44331','18','','10548','VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: loss min, %','meraki.vpn.stat.loss.min[{#NETWORK.ID}, {#SENDER.UPLINK}, {#PEER.NETWORK.ID}, {#RECEIVER.UPLINK}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'VPN connection loss min.','0','30d','0','','44322','','','','','200','1','0','','','0','0','0','0','0','0','0','eb835ef592a24e43bc918c4299b9f6e7','0','2','0'), ('44332','18','','10548','VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: mos avg','meraki.vpn.stat.mos.avg[{#NETWORK.ID}, {#SENDER.UPLINK}, {#PEER.NETWORK.ID}, {#RECEIVER.UPLINK}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'VPN connection mos avg.','0','30d','0','','44322','','','','','200','1','0','','','0','0','0','0','0','0','0','1f26cdd09e5f45da9e8b0e679faa3425','0','2','0'), ('44333','18','','10548','VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: mos max','meraki.vpn.stat.mos.max[{#NETWORK.ID}, {#SENDER.UPLINK}, {#PEER.NETWORK.ID}, {#RECEIVER.UPLINK}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'VPN connection mos max.','0','30d','0','','44322','','','','','200','1','0','','','0','0','0','0','0','0','0','bf28a0ead40046c8b08399775836be4e','0','2','0'), ('44334','18','','10548','VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: mos min','meraki.vpn.stat.mos.min[{#NETWORK.ID}, {#SENDER.UPLINK}, {#PEER.NETWORK.ID}, {#RECEIVER.UPLINK}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'VPN connection mos min.','0','30d','0','','44322','','','','','200','1','0','','','0','0','0','0','0','0','0','9fee72321a23448983bd6cac7803600c','0','2','0'), ('44339','18','','10264','Number of running processes','apache.proc.num[{#APACHE.NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of running processes {#APACHE.NAME}.','0','30d','0','','44338','','','','','200','1','0','','','0','0','0','0','0','0','0','233b5466014640e4b990ffd81fa19fa1','0','2','0'), ('44340','18','','10264','Memory usage, %','apache.proc.pmem[{#APACHE.NAME}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of real memory used by a process {#APACHE.NAME}.','0','30d','0','','44338','','','','','200','1','0','','','0','0','0','0','0','0','0','683d4489dbb549f3bb5b45d3c2696c4f','0','2','0'), ('44341','18','','10264','Memory usage (rss)','apache.proc.rss[{#APACHE.NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The summary of resident set size memory used by a process {#APACHE.NAME} expressed in bytes.','0','30d','0','','44338','','','','','200','1','0','','','0','0','0','0','0','0','0','384bf197e6a241b3b63bb89d009bba6b','0','2','0'), ('44342','18','','10264','Memory usage (vsize)','apache.proc.vmem[{#APACHE.NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The summary of virtual memory used by a process {#APACHE.NAME} expressed in bytes.','0','30d','0','','44338','','','','','200','1','0','','','0','0','0','0','0','0','0','f20b7a01ff134a128c54ea83af8557e2','0','2','0'), ('44347','18','','10266','Number of running processes','nginx.proc.num[{#NGINX.NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of running processes {#NGINX.NAME}.','0','30d','0','','44346','','','','','200','1','0','','','0','0','0','0','0','0','0','ba3da6baccee4b31947bf20d3cae0e5f','0','2','0'), ('44348','18','','10266','Memory usage, %','nginx.proc.pmem[{#NGINX.NAME}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of real memory used by a process {#NGINX.NAME}.','0','30d','0','','44346','','','','','200','1','0','','','0','0','0','0','0','0','0','5887d0062bed4233a03d4f408fac7163','0','2','0'), ('44349','18','','10266','Memory usage (rss)','nginx.proc.rss[{#NGINX.NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The summary of resident set size memory used by a process {#NGINX.NAME} expressed in bytes.','0','30d','0','','44346','','','','','200','1','0','','','0','0','0','0','0','0','0','64d208475c034bae953a64cde1833ebb','0','2','0'), ('44350','18','','10266','Memory usage (vsize)','nginx.proc.vmem[{#NGINX.NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The summary of virtual memory used by a process {#NGINX.NAME} expressed in bytes.','0','30d','0','','44346','','','','','200','1','0','','','0','0','0','0','0','0','0','21fccb0286fb407c85f1972e994c698e','0','2','0'), ('44355','18','','10330','Number of running processes','php-fpm.proc.num[{#PHP_FPM.NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of running processes `{#PHP_FPM.NAME}`.','0','30d','0','','44354','','','','','200','1','0','','','0','0','0','0','0','0','0','ab8dc0d1ce344fe8ae6a22716a168fbd','0','2','0'), ('44356','18','','10330','Memory usage, %','php-fpm.proc.pmem[{#PHP_FPM.NAME}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of real memory used by a process `{#PHP_FPM.NAME}`.','0','30d','0','','44354','','','','','200','1','0','','','0','0','0','0','0','0','0','ef771994ec9e482babf872d9f867d500','0','2','0'), ('44357','18','','10330','Memory usage (rss)','php-fpm.proc.rss[{#PHP_FPM.NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The summary of resident set size memory used by a process `{#PHP_FPM.NAME}` expressed in bytes.','0','30d','0','','44354','','','','','200','1','0','','','0','0','0','0','0','0','0','f55a5ef29f864d0a8c1af25df2372f7c','0','2','0'), ('44358','18','','10330','Memory usage (vsize)','php-fpm.proc.vmem[{#PHP_FPM.NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The summary of virtual memory used by a process `{#PHP_FPM.NAME}` expressed in bytes.','0','30d','0','','44354','','','','','200','1','0','','','0','0','0','0','0','0','0','4efc6da713264e629f987106b8252355','0','2','0'), ('44365','18','','10301','Number of running processes','rabbitmq.proc.num[{#RABBITMQ.NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of running processes {#RABBITMQ.NAME}.','0','30d','0','','44363','','','','','200','1','0','','','0','0','0','0','0','0','0','8f1c8d2449c44ab590842184d9deb3a6','0','2','0'), ('44366','18','','10301','Memory usage, %','rabbitmq.proc.pmem[{#RABBITMQ.NAME}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of real memory used by a process {#RABBITMQ.NAME}.','0','30d','0','','44363','','','','','200','1','0','','','0','0','0','0','0','0','0','875ab477c06943d7881ee896936ee8a2','0','2','0'), ('44367','18','','10301','Memory usage (rss)','rabbitmq.proc.rss[{#RABBITMQ.NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The summary of resident set size memory used by a process {#RABBITMQ.NAME} expressed in bytes.','0','30d','0','','44363','','','','','200','1','0','','','0','0','0','0','0','0','0','6f13f672d8ce4c9592e0f3f5ec3b0ec4','0','2','0'), ('44368','18','','10301','Memory usage (vsize)','rabbitmq.proc.vmem[{#RABBITMQ.NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The summary of virtual memory used by a process {#RABBITMQ.NAME} expressed in bytes.','0','30d','0','','44363','','','','','200','1','0','','','0','0','0','0','0','0','0','4faac75027d14304ab071602df8f2937','0','2','0'), ('44422','18','','10503','Edge [{#NAME}]: Raw data','velocloud.get.edge[{#ID}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Raw data for velocloud edge.','0','30d','0','','39744','','','','','200','1','0','','','0','0','0','0','0','0','0','95e2e7f9b89a4c958c3fd2909a181cd9','0','2','0'), ('44423','18','','10503','Gateway [{#NAME}]: Raw data','velocloud.get.gateway[{#ID}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Raw data for velocloud gateway.','0','30d','0','','39744','','','','','200','1','0','','','0','0','0','0','0','0','0','5c11969073ab415abe08c74626bd5dd1','0','2','0'), ('44424','18','','10503','Link [{#NAME}]:[{#IP}]: Raw data','velocloud.get.link[{#ID}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Raw data for velocloud link.','0','30d','0','','39744','','','','','200','1','0','','','0','0','0','0','0','0','0','37988766bc694c699bfde578174c6623','0','2','0'), ('44425','18','','10503','Path [{#NAME}]:[{#SOURCE} => {#DESTINATION}]: Raw data','velocloud.get.sdwan_path[{{#NAME}/{#SOURCE}/{#DESTINATION}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Raw data for velocloud sdwan peer path.','0','30d','0','','39744','','','','','200','1','0','','','0','0','0','0','0','0','0','d82c61b41c8744e9bfb39993faadeb67','0','2','0'), ('44426','18','','10503','SDWAN Peer [{#NAME}]:[{#TYPE}]: Raw data','velocloud.get.sdwan_peer[{#EDGE.ID}/{#ID}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Raw data for velocloud sdwan peer.','0','30d','0','','39744','','','','','200','1','0','','','0','0','0','0','0','0','0','26fde8ba5568406cabd29464505c4715','0','2','0'), ('44429','18','','10076','FS [{#FSNAME}]: Option: Read-only','vfs.fs.dependent[{#FSNAME},readonly]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The filesystem is mounted as read-only. It is available only for Zabbix agents 6.4 and higher.','0','30d','0','','44428','','','','','200','1','0','','','0','0','0','0','0','0','0','cd96a2d7e708495cbc5d11a14ea9c876','0','2','0'), ('44432','18','','10075','FS [{#FSNAME}]: Option: Read-only','vfs.fs.dependent[{#FSNAME},readonly]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The filesystem is mounted as read-only. It is available only for Zabbix agents 6.4 and higher.','0','30d','0','','44431','','','','','200','1','0','','','0','0','0','0','0','0','0','5e2e9d6a08e34a37832bced869a75b1e','0','2','0'), ('44435','18','','10077','FS [{#FSNAME}]: Option: Read-only','vfs.fs.dependent[{#FSNAME},readonly]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The filesystem is mounted as read-only. It is available only for Zabbix agents 6.4 and higher.','0','30d','0','','44434','','','','','200','1','0','','','0','0','0','0','0','0','0','f4fa51ffae1642889cd4d0003a1cd054','0','2','0'), ('44440','18','','10001','FS [{#FSNAME}]: Option: Read-only','vfs.fs.dependent[{#FSNAME},readonly]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The filesystem is mounted as read-only. It is available only for Zabbix agents 6.4 and higher.','0','30d','0','','44438','','','','','200','1','0','','','0','0','0','0','0','0','0','c4bfc3639837451bb1fcf98ea654c939','0','2','0'), ('44444','18','','10343','FS [{#FSNAME}]: Option: Read-only','vfs.fs.dependent[{#FSNAME},readonly]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The filesystem is mounted as read-only. It is available only for Zabbix agents 6.4 and higher.','0','30d','0','','44443','','','','','200','1','0','','','0','0','0','0','0','0','0','e335d40e5d0e4e41b29f1b355018dd91','0','2','0'), ('44449','18','','10074','FS [{#FSNAME}]: Option: Read-only','vfs.fs.dependent[{#FSNAME},readonly]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The filesystem is mounted as read-only. It is available only for Zabbix agents 6.4 and higher.','0','30d','0','','44448','','','','','200','1','0','','','0','0','0','0','0','0','0','f37d99368b3d463a9474422fccd703f9','0','2','0'), ('44452','18','','10078','FS [{#FSNAME}]: Option: Read-only','vfs.fs.dependent[{#FSNAME},readonly]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The filesystem is mounted as read-only. It is available only for Zabbix agents 6.4 and higher.','0','30d','0','','44451','','','','','200','1','0','','','0','0','0','0','0','0','0','de8a43c30de44e83b381b75254735a10','0','2','0'), ('44466','18','','10553','Jobs returned','controlm.jobs.statistics.returned','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Gets the count of returned jobs.','0','30d','0','','44462','','','','','200','1','0','','','0','0','0','0','0','0','0','aa085872149047f681f974e672e0c72c','0','2','0'), ('44467','18','','10553','Jobs total','controlm.jobs.statistics.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Gets the count of total jobs.','0','30d','0','','44462','','','','','200','1','0','','','0','0','0','0','0','0','0','8219b115bd5246b6bbb38c7a3b74dfaa','0','2','0'), ('44475','18','','10552','Service [{#SERVICE.NAME}, {#SERVICE.JOB}]: jobs ''completed''','service.jobs.status[''{#SERVICE.NAME}'',''{#SERVICE.JOB}'',completed]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Gets the number of jobs in the state - `completed`.','0','30d','0','','44472','','','','','200','1','0','','','0','0','0','0','0','0','0','9daecffe0dfd402fb7300d484c2e9b80','0','2','0'), ('44476','18','','10552','Service [{#SERVICE.NAME}, {#SERVICE.JOB}]: jobs ''error''','service.jobs.status[''{#SERVICE.NAME}'',''{#SERVICE.JOB}'',error]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Gets the number of jobs in the state - `error`.','0','30d','0','','44472','','','','','200','1','0','','','0','0','0','0','0','0','0','27821e573ead422b830b4f9dba5c840f','0','2','0'), ('44477','18','','10552','Service [{#SERVICE.NAME}, {#SERVICE.JOB}]: jobs ''executed''','service.jobs.status[''{#SERVICE.NAME}'',''{#SERVICE.JOB}'',executed]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Gets the number of jobs in the state - `executed`.','0','30d','0','','44472','','','','','200','1','0','','','0','0','0','0','0','0','0','fe58d60475bd49f2a4e3f0bfc5ae020f','0','2','0'), ('44478','18','','10552','Service [{#SERVICE.NAME}, {#SERVICE.JOB}]: jobs ''waitCondition''','service.jobs.status[''{#SERVICE.NAME}'',''{#SERVICE.JOB}'',waitCondition]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Gets the number of jobs in the state - `waitCondition`.','0','30d','0','','44472','','','','','200','1','0','','','0','0','0','0','0','0','0','2843e6ba50584b27a66165f0accc5ed5','0','2','0'), ('44479','18','','10552','Service [{#SERVICE.NAME}, {#SERVICE.JOB}]: jobs ''waitHost''','service.jobs.status[''{#SERVICE.NAME}'',''{#SERVICE.JOB}'',waitHost]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Gets the number of jobs in the state - `waitHost`.','0','30d','0','','44472','','','','','200','1','0','','','0','0','0','0','0','0','0','409961fd6fed4f208340dfdb978a2430','0','2','0'), ('44480','18','','10552','Service [{#SERVICE.NAME}, {#SERVICE.JOB}]: jobs ''waitResource''','service.jobs.status[''{#SERVICE.NAME}'',''{#SERVICE.JOB}'',waitResource]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Gets the number of jobs in the state - `waitResource`.','0','30d','0','','44472','','','','','200','1','0','','','0','0','0','0','0','0','0','6ae1bd92bd39446fbbea847088cd37e7','0','2','0'), ('44481','18','','10552','Service [{#SERVICE.NAME}, {#SERVICE.JOB}]: jobs ''waitWorkload''','service.jobs.status[''{#SERVICE.NAME}'',''{#SERVICE.JOB}'',waitWorkload]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Gets the number of jobs in the state - `waitWorkload`.','0','30d','0','','44472','','','','','200','1','0','','','0','0','0','0','0','0','0','0299415dfbca4ba6881a890bb9e9658c','0','2','0'), ('44482','18','','10552','Service [{#SERVICE.NAME}, {#SERVICE.JOB}]: status','service.status[''{#SERVICE.NAME}'',''{#SERVICE.JOB}'']','0','31d','365d','0','3','','','','',NULL,'1068','','','0','','','','','2',NULL,'Gets the service status.','0','30d','0','','44472','','','','','200','1','0','','','0','0','0','0','0','0','0','a3f556bfb8d04a70b0c7407cdc458703','0','2','0'), ('44483','18','','10553','Agent [{#AGENT.NAME}]: status','agent.status[''{#AGENT.NAME}'']','0','31d','365d','0','3','','','','',NULL,'1069','','','0','','','','','2',NULL,'Gets the status of an agent.','0','30d','0','','44473','','','','','200','1','0','','','0','0','0','0','0','0','0','f72163e7e68d4bb4b2b8fcf3b9afd730','0','2','0'), ('44484','18','','10553','Agent [{#AGENT.NAME}]: version','agent.version[''{#AGENT.NAME}'']','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Gets the version number of an agent.','0','30d','0','','44473','','','','','200','1','0','','','0','0','0','0','0','0','0','98e355d74fe9449eaf28272765865434','0','2','0'), ('44485','18','','10553','Job [{#JOB.ID}]: held status','job.held[''{#JOB.ID}'']','0','31d','365d','0','3','','','','',NULL,'1073','','','0','','','','','2',NULL,'Gets the held status of a job.','0','30d','0','','44474','','','','','200','1','0','','','0','0','0','0','0','0','0','bbeb9ab5bcb04f8da802d1a63f098107','0','2','0'), ('44486','18','','10553','Job [{#JOB.ID}]: number of runs','job.numberOfRuns[''{#JOB.ID}'']','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Gets the number of runs for a job.','0','30d','0','','44474','','','','','200','1','0','','','0','0','0','0','0','0','0','2759dacfd8da46e1ad9811093c8897ee','0','2','0'), ('44487','18','','10553','Job [{#JOB.ID}]: status','job.status[''{#JOB.ID}'']','0','31d','365d','0','3','','','','',NULL,'1070','','','0','','','','','2',NULL,'Gets the status of a job.','0','30d','0','','44474','','','','','200','1','0','','','0','0','0','0','0','0','0','1348caa83bc94650ba49231bac41aa18','0','2','0'), ('44488','18','','10553','Job [{#JOB.ID}]: type','job.type[''{#JOB.ID}'']','0','31d','365d','0','3','','','','',NULL,'1071','','','0','','','','','2',NULL,'Gets the job type.','0','30d','0','','44474','','','','','200','1','0','','','0','0','0','0','0','0','0','4ec3c06e6ff04e919a7a0f21fa490a25','0','2','0'), ('44505','18','','10555','Job states [{#NAME}] [{#TYPE}]: Last result','veeam.jobs.last.result[{#ID}]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The result of the session. The enums used: `None`, `Success`, `Warning`, `Failed`.','0','30d','0','','44500','','','','','200','1','0','','','0','0','0','0','0','0','0','120a6bf888e74e0c9b054c3bdd50473f','0','2','0'), ('44506','18','','10555','Job states [{#NAME}] [{#TYPE}]: Status','veeam.jobs.status[{#ID}]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current status of the job. The enums used: `running`, `inactive`, `disabled`.','0','30d','0','','44500','','','','','200','1','0','','','0','0','0','0','0','0','0','6f3837f27334466b814728036dd65c1d','0','2','0'), ('44507','18','','10555','Proxy [{#NAME}] [{#TYPE}]: Max Task Count','veeam.proxy.maxtask[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The maximum number of concurrent tasks.','0','30d','0','','44501','','','','','200','1','0','','','0','0','0','0','0','0','0','1daea1ba8ac144fc9e22296720af0b22','0','2','0'), ('44508','18','','10555','Proxy [{#NAME}] [{#TYPE}]: Host name','veeam.proxy.server.name[{#NAME}]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The name of the proxy server.','0','30d','0','','44502','','','','','200','1','0','','','0','0','0','0','0','0','0','4c304283f1ad480b8251a72ade27620f','0','2','0'), ('44509','18','','10555','Proxy [{#NAME}] [{#TYPE}]: Host type','veeam.proxy.server.type[{#NAME}]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The type of the proxy server.','0','30d','0','','44502','','','','','200','1','0','','','0','0','0','0','0','0','0','7dca605f25854e89a7e18702e8a48fc7','0','2','0'), ('44510','18','','10555','Repository [{#NAME}] [{#TYPE}]: Used space [{#PATH}]','veeam.repository.capacity[{#NAME}]','0','31d','365d','0','0','','!GB','','',NULL,NULL,'','','0','','','','','2',NULL,'Used space by repositories expressed in gigabytes (GB).','0','30d','0','','44503','','','','','200','1','0','','','0','0','0','0','0','0','0','80a13587e8cc40ba886f987fcde23c13','0','2','0'), ('44511','18','','10555','Repository [{#NAME}] [{#TYPE}]: Free space [{#PATH}]','veeam.repository.free.space[{#NAME}]','0','31d','365d','0','0','','!GB','','',NULL,NULL,'','','0','','','','','2',NULL,'Free space of repositories expressed in gigabytes (GB).','0','30d','0','','44503','','','','','200','1','0','','','0','0','0','0','0','0','0','882451efee0a4ce8aabc2d2f3955d0be','0','2','0'), ('44512','18','','10555','Session [{#NAME}] [{#TYPE}]: Message','veeam.sessions.message[{#ID}]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'A message that explains the session result.','0','30d','0','','44504','','','','','200','1','0','','','0','0','0','0','0','0','0','7224f41e5c614268bf6997ad8a49710b','0','2','0'), ('44513','18','','10555','Session progress percent [{#NAME}] [{#TYPE}]','veeam.sessions.progress.percent[{#ID}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The progress of the session expressed as percentage.','0','30d','0','','44504','','','','','200','1','0','','','0','0','0','0','0','0','0','3f449f47943b4877a32e89774712510f','0','2','0'), ('44514','18','','10555','Session [{#NAME}] [{#TYPE}]: Result','veeam.sessions.result[{#ID}]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The result of the session. The enums used: `None`, `Success`, `Warning`, `Failed`.','0','30d','0','','44504','','','','','200','1','0','','','0','0','0','0','0','0','0','5fb9dcb62bfe4d1dae94beefa329691d','0','2','0'), ('44515','18','','10555','Session [{#NAME}] [{#TYPE}]: State','veeam.sessions.state[{#ID}]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The state of the session. The enums used: `Stopped`, `Starting`, `Stopping`, `Working`, `Pausing`, `Resuming`, `WaitingTape`, `Idle`, `Postprocessing`, `WaitingRepository`, `WaitingSlot`.','0','30d','0','','44504','','','','','200','1','0','','','0','0','0','0','0','0','0','8c7092e721eb4f8f8b53a07f0fb710a0','0','2','0'), ('44641','18','','10261','Proxy [{#PROXY.NAME}]: Stats','zabbix.proxy.stats[{#PROXY.NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The statistics for the discovered proxy.','0','30d','0','','44081','','','','','200','1','0','','','0','0','0','0','0','0','0','285d4a878d3e43cc930d5a82bb103f13','0','2','0'), ('44645','18','','10560','Process [{#NAME}]: Size of locked memory','custom.proc.mem.locked[{#NAME}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size of locked memory {#NAME}.','0','30d','0','','44644','','','','','200','1','0','','','0','0','0','0','0','0','0','822ffda22eb042b89fc50b212aab133f','0','2','0'), ('44646','18','','10560','Process [{#NAME}]: Number of running processes','custom.proc.num[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of running processes {#NAME}.','0','30d','0','','44644','','','','','200','1','0','','','0','0','0','0','0','0','0','0bb7d924b8814c42a494d8a3baf48a59','0','2','0'), ('44647','18','','10560','Process [{#NAME}]: Number of page faults','custom.proc.page[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of page faults {#NAME}.','0','30d','0','','44644','','','','','200','1','0','','','0','0','0','0','0','0','0','abccdac17c7e4b549fcfe70ceeedeb9b','0','2','0'), ('44648','18','','10560','Process [{#NAME}]: Memory usage, %','custom.proc.pmem[{#NAME}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of real memory used by the process {#NAME}.','0','30d','0','','44644','','','','','200','1','0','','','0','0','0','0','0','0','0','4ffd202fb6044b819f6f28dc866ca8f1','0','2','0'), ('44649','18','','10560','Process [{#NAME}]: Memory usage (rss)','custom.proc.rss[{#NAME}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The summary of Resident Set Size (RSS) memory used by the process {#NAME} in bytes.','0','30d','0','','44644','','','','','200','1','0','','','0','0','0','0','0','0','0','7e573e38bce04167bc37712c0a3e2194','0','2','0'), ('44650','18','','10560','Process [{#NAME}]: Swap space used','custom.proc.swap[{#NAME}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The swap space used by {#NAME}.','0','30d','0','','44644','','','','','200','1','0','','','0','0','0','0','0','0','0','12370d3b25024d2189cddba8d3b23938','0','2','0'), ('44651','18','','10560','Process [{#NAME}]: Number of threads','custom.proc.thread[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of threads {#NAME}.','0','30d','0','','44644','','','','','200','1','0','','','0','0','0','0','0','0','0','a7265ca1b1d2463294e26d80fe075639','0','2','0'), ('44652','18','','10560','Process [{#NAME}]: Memory usage (vsize)','custom.proc.vmem[{#NAME}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The summary of virtual memory used by process {#NAME} in bytes.','0','30d','0','','44644','','','','','200','1','0','','','0','0','0','0','0','0','0','c1b9b1d8f28947589e46041690899100','0','2','0'), ('44739','18','','10507','Node [{#NAME}] Addresses: External IP','kube.node.addresses.external_ip[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Typically the IP address of the node that is externally routable (available from outside the cluster).','0','30d','0','','44738','','','','','200','1','0','','','0','0','0','0','0','0','0','6f986c54ff744522abd793347dba5148','0','2','0'), ('44740','18','','10507','Node [{#NAME}] Info: Container runtime','kube.node.info.containerruntime[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Container runtime. https://kubernetes.io/docs/setup/production-environment/container-runtimes/','0','30d','0','','44738','','','','','200','1','0','','','0','0','0','0','0','0','0','405fe8cae9be4ea8888f378dadda8946','0','2','0'), ('44741','18','','10507','Node [{#NAME}] Uptime','kube.node.uptime[{#NAME}]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Node uptime.','0','30d','0','','44738','','','','','200','1','0','','','0','0','0','0','0','0','0','0e30ed9718a54eb1ac643ac643471ca2','0','2','0'), ('44742','18','','10507','Node [{#NAME}] Info: Roles','kube.node.info.roles[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Node roles.','0','30d','0','','44738','','','','','200','1','0','','','0','0','0','0','0','0','0','bcd18bdb8cd1466fa81bbe2e75ba996c','0','2','0'), ('44743','18','','10507','Node [{#NAME}] Info: OS image','kube.node.info.osversion[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Node OS image.','0','30d','0','','44738','','','','','200','1','0','','','0','0','0','0','0','0','0','1b25ffe6190c408996b87622b7b87329','0','2','0'), ('44744','18','','10507','Node [{#NAME}] Info: Operating system','kube.node.info.operatingsystem[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Node operating system.','0','30d','0','','44738','','','','','200','1','0','','','0','0','0','0','0','0','0','fe06e13c3aec4efc8f7c9539b6600097','0','2','0'), ('44745','18','','10507','Node [{#NAME}] Info: KubeProxy version','kube.node.info.kubeproxyversion[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Version of KubeProxy.','0','30d','0','','44738','','','','','200','1','0','','','0','0','0','0','0','0','0','d39865e0754b4280926b89f19dddb740','0','2','0'), ('44746','18','','10507','Node [{#NAME}] Info: Kubelet version','kube.node.info.kubeletversion[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Version of Kubelet.','0','30d','0','','44738','','','','','200','1','0','','','0','0','0','0','0','0','0','f1a1ea522dfd49d09a69b9b014845f7a','0','2','0'), ('44747','18','','10507','Node [{#NAME}] Info: Kernel version','kube.node.info.kernelversion[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Node kernel version.','0','30d','0','','44738','','','','','200','1','0','','','0','0','0','0','0','0','0','a14e705e142f4c34bfc9175686b18754','0','2','0'), ('44748','18','','10507','Node [{#NAME}] Info: Architecture','kube.node.info.architecture[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Node architecture.','0','30d','0','','44738','','','','','200','1','0','','','0','0','0','0','0','0','0','8f9152074e2041d7b5cd2c6215e06832','0','2','0'), ('44749','18','','10507','Node [{#NAME}] Addresses: Internal IP','kube.node.addresses.internal_ip[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Typically the IP address of the node that is routable only within the cluster.','0','30d','0','','44738','','','','','200','1','0','','','0','0','0','0','0','0','0','a6bb3067ed44446e9b4831f5be57661b','0','2','0'), ('44750','18','','10507','Node [{#NAME}] Conditions: Ready','kube.node.conditions.ready[{#NAME}]','0','31d','365d','0','3','','','','',NULL,'568','','','0','','','','','2',NULL,'True if the node is healthy and ready to accept pods, False if the node is not healthy and is not accepting pods, and Unknown if the node controller has not heard from the node in the last node-monitor-grace-period (default is 40 seconds).','0','30d','0','','44738','','','','','200','1','0','','','0','0','0','0','0','0','0','9341a018a45848feae0f61660ca5f849','0','2','0'), ('44751','18','','10507','Node [{#NAME}] Conditions: PID pressure','kube.node.conditions.pidpressure[{#NAME}]','0','31d','365d','0','3','','','','',NULL,'568','','','0','','','','','2',NULL,'True if pressure exists on the processes - that is, if there are too many processes on the node; otherwise False.','0','30d','0','','44738','','','','','200','1','0','','','0','0','0','0','0','0','0','31f02b4517e24571962fefd61e09e2a5','0','2','0'), ('44752','18','','10507','Node [{#NAME}] Conditions: Network unavailable','kube.node.conditions.networkunavailable[{#NAME}]','0','31d','365d','0','3','','','','',NULL,'568','','','0','','','','','2',NULL,'True if the network for the node is not correctly configured, otherwise False.','0','30d','0','','44738','','','','','200','1','0','','','0','0','0','0','0','0','0','8c77db54e90d474a8ff35a98c67772d5','0','2','0'), ('44753','18','','10507','Node [{#NAME}] Conditions: Memory pressure','kube.node.conditions.memorypressure[{#NAME}]','0','31d','365d','0','3','','','','',NULL,'568','','','0','','','','','2',NULL,'True if pressure exists on the node memory - that is, if the node memory is low; otherwise False.','0','30d','0','','44738','','','','','200','1','0','','','0','0','0','0','0','0','0','44b60c111e2a4d0bae0de443394d0add','0','2','0'), ('44754','18','','10507','Node [{#NAME}] Conditions: Disk pressure','kube.node.conditions.diskpressure[{#NAME}]','0','31d','365d','0','3','','','','',NULL,'568','','','0','','','','','2',NULL,'True if pressure exists on the disk size - that is, if the disk capacity is low; otherwise False.','0','30d','0','','44738','','','','','200','1','0','','','0','0','0','0','0','0','0','ad5f8baa9ff44ca0ba17fc83e197420e','0','2','0'), ('44755','18','','10507','Node [{#NAME}] Capacity: Pods','kube.node.capacity.pods[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'https://kubernetes.io/docs/tasks/administer-cluster/reserve-compute-resources/','0','30d','0','','44738','','','','','200','1','0','','','0','0','0','0','0','0','0','f45997b967964ed29c29b64b94544a48','0','2','0'), ('44756','18','','10507','Node [{#NAME}] Capacity: Memory','kube.node.capacity.memory[{#NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Memory resource capacity. https://kubernetes.io/docs/concepts/architecture/nodes/#capacity','0','30d','0','','44738','','','','','200','1','0','','','0','0','0','0','0','0','0','e890e682c3454d20b7cd3becc950279f','0','2','0'), ('44757','18','','10507','Node [{#NAME}] Capacity: CPU','kube.node.capacity.cpu[{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'CPU resource capacity. https://kubernetes.io/docs/concepts/architecture/nodes/#capacity','0','30d','0','','44738','','','','','200','1','0','','','0','0','0','0','0','0','0','96c25644261446afb70ce874ff1c7b7d','0','2','0'), ('44758','18','','10507','Node [{#NAME}] Allocatable: Pods','kube.node.allocatable.pods[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'https://kubernetes.io/docs/tasks/administer-cluster/reserve-compute-resources/','0','30d','0','','44738','','','','','200','1','0','','','0','0','0','0','0','0','0','be853c34395643af828e349105e2feba','0','2','0'), ('44759','18','','10507','Node [{#NAME}] Allocatable: Memory','kube.node.allocatable.memory[{#NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Allocatable Memory. ''Allocatable'' on a Kubernetes node is defined as the amount of compute resources that are available for pods. The scheduler does not over-subscribe ''Allocatable''. ''CPU'', ''memory'' and ''ephemeral-storage'' are supported as of now.','0','30d','0','','44738','','','','','200','1','0','','','0','0','0','0','0','0','0','843ecf5ca78148caa49f3b4cca26e4d4','0','2','0'), ('44760','18','','10507','Node [{#NAME}] Allocatable: CPU','kube.node.allocatable.cpu[{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Allocatable CPU. ''Allocatable'' on a Kubernetes node is defined as the amount of compute resources that are available for pods. The scheduler does not over-subscribe ''Allocatable''. ''CPU'', ''memory'' and ''ephemeral-storage'' are supported as of now.','0','30d','0','','44738','','','','','200','1','0','','','0','0','0','0','0','0','0','57eb59ad6e63466f993cd7064788c75d','0','2','0'), ('44761','18','','10507','Node [{#NAME}] Used: Pods','kube.node.used.pods[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current number of pods on the node.','0','30d','0','','44738','','','','','200','1','0','','','0','0','0','0','0','0','0','0203ec4fb37a4eb180edcba398bf470d','0','2','0'), ('45027','18','','10570','Cloud SQL instances total','gcp.cloudsql.instances.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'GCP Cloud SQL instances total count.','0','30d','0','','44886','','','','','200','1','0','','','0','0','0','0','0','0','0','b926ba1901c5413396c1c071e6e76072','0','2','0'), ('45028','18','','10570','Container-optimized GCE instances count','gcp.gce.instances.cos_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'GCP Compute Engine: count of instances with Container-Optimized OS used.','0','30d','0','','44887','','','','','200','1','0','','','0','0','0','0','0','0','0','58329c9a5b124b1990c94f15266e6edf','0','2','0'), ('45029','18','','10570','MSSQL instances count','gcp.cloudsql.instances.mssql_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'GCP Cloud SQL MSSQL instances count.','0','30d','0','','44886','','','','','200','1','0','','','0','0','0','0','0','0','0','80687b35246b45ffa1be9d171f686e94','0','2','0'), ('45030','18','','10570','MySQL instances count','gcp.cloudsql.instances.mysql_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'GCP Cloud SQL MySQL instances count.','0','30d','0','','44886','','','','','200','1','0','','','0','0','0','0','0','0','0','8ec94dff7a3b47998242d97a18cf0821','0','2','0'), ('45031','18','','10570','PostgreSQL instances count','gcp.cloudsql.instances.pgsql_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'GCP Cloud SQL PostgreSQL instances count.','0','30d','0','','44886','','','','','200','1','0','','','0','0','0','0','0','0','0','de284dd30b2d4ecb9f7d0cf3ca80a094','0','2','0'), ('45032','18','','10570','Regular GCE instances count','gcp.gce.instances.regular_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'GCP Compute Engine: Regular instances count.','0','30d','0','','44887','','','','','200','1','0','','','0','0','0','0','0','0','0','a936207f9d914955b2e2140e953f22f2','0','2','0'), ('45033','18','','10570','GCE instances total','gcp.gce.instances.total','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'GCP Compute Engine instances total count.','0','30d','0','','44887','','','','','200','1','0','','','0','0','0','0','0','0','0','46eaeccd1f43466caadd44440da88568','0','2','0'), ('45034','18','','10570','GCP Cloud SQL: MSSQL instances discovery','gcp.cloudsql.mssql.inst.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'GCP Cloud SQL: MSSQL instances discovery.','0','7d','1','','44886','','','','','200','1','0','','','0','0','0','0','0','0','0','f210e8e38c194c65b30e74610ec2b86f','0','2','0'), ('45035','18','','10570','GCP Cloud SQL: MySQL instances discovery','gcp.cloudsql.mysql.inst.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'GCP Cloud SQL: MySQL instances discovery.','0','7d','1','','44886','','','','','200','1','0','','','0','0','0','0','0','0','0','3fdd2543936a4587b1bfb5dabb30c1f6','0','2','0'), ('45036','18','','10570','GCP Cloud SQL: PostgreSQL instances discovery','gcp.cloudsql.pgsql.inst.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'GCP Cloud SQL: PostgreSQL instances discovery.','0','7d','1','','44886','','','','','200','1','0','','','0','0','0','0','0','0','0','606ba15087894f268f4b626590b7a9d0','0','2','0'), ('45037','18','','10570','GCP Compute Engine: Instances discovery','gcp.gce.inst.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'GCP Compute Engine: Instances discovery.','0','7d','1','','44887','','','','','200','1','0','','','0','0','0','0','0','0','0','7d0226eccc5644c89fff10f7ece1c8b4','0','2','0'), ('45038','18','','10570','GCP Compute Engine: Project quotas discovery','gcp.gce.quotas.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'GCP Compute Engine: Quotas discovery.','0','7d','1','','44888','','','','','200','1','0','','','0','0','0','0','0','0','0','1a0dc88bc40d45af90ca761dcb611bf0','0','2','0'), ('45061','18','','10570','Quota [{#GCE.QUOTA.NAME}]: Raw data','gcp.gce.quota.single.raw[{#GCE.QUOTA.NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'GCP Compute Engine: Get metrics for [{#GCE.QUOTA.NAME}] quota.','0','30d','0','','44888','','','','','200','1','0','','','0','0','0','0','0','0','0','a439501636fd49f0aaf3902300d943b8','0','2','0'), ('45062','18','','10571','Database [{#DB.NAME}]: Log bytes flushed','gcp.cloudsql.mssql.db.log_bytes_flushed_count[{#DB.NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of log bytes flushed for the [{#DB.NAME}] database.','0','30d','0','','45045','','','','','200','1','0','','','0','0','0','0','0','0','0','8f6deafa9efd416797ea58d1fce41c29','0','2','0'), ('45063','18','','10571','Database [{#DB.NAME}]: Transactions started','gcp.cloudsql.mssql.db.transaction_count[{#DB.NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of transactions started for the [{#DB.NAME}] database.','0','30d','0','','45045','','','','','200','1','0','','','0','0','0','0','0','0','0','9f8d37a25e1041c087bbea8d670cce46','0','2','0'), ('45064','18','','10571','Resource [{#RESOURCE.NAME}]: Deadlocks','gcp.cloudsql.mssql.resource.deadlock_count[{#RESOURCE.NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of lock requests that resulted in a deadlock for the [{#RESOURCE.NAME}] resource.','0','30d','0','','45046','','','','','200','1','0','','','0','0','0','0','0','0','0','55bb12000dca46e096045da83a46edea','0','2','0'), ('45065','18','','10571','Resource [{#RESOURCE.NAME}]: Lock waits','gcp.cloudsql.mssql.resource.lock_wait_count[{#RESOURCE.NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of lock requests that required the caller to wait for the [{#RESOURCE.NAME}] resource.','0','30d','0','','45046','','','','','200','1','0','','','0','0','0','0','0','0','0','0117dba440f34461959490efaff059e2','0','2','0'), ('45066','18','','10571','Resource [{#RESOURCE.NAME}]: Lock wait time','gcp.cloudsql.mssql.resource.lock_wait_time[{#RESOURCE.NAME}]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Total time lock requests were waiting for locks for the [{#RESOURCE.NAME}] resource.','0','30d','0','','45046','','','','','200','1','0','','','0','0','0','0','0','0','0','6e8b5646d70b470fa18960c7b43a9aff','0','2','0'), ('45067','18','','10571','Scheduler [{#SCHEDULER.ID}]: Active workers','gcp.cloudsql.mssql.scheduler.active_workers[{#SCHEDULER.ID}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current number of active workers associated with the scheduler that goes by its ID [{#SCHEDULER.ID}]. An active worker is never preemptive, must have an associated task, and is either running, runnable, or suspended.','0','30d','0','','45047','','','','','200','1','0','','','0','0','0','0','0','0','0','67bde61c128e4dfe9e47d8a3a6e3ceec','0','2','0'), ('45068','18','','10571','Scheduler [{#SCHEDULER.ID}]: Current tasks','gcp.cloudsql.mssql.scheduler.current_tasks[{#SCHEDULER.ID}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current number of present tasks associated with the scheduler that goes by its ID [{#SCHEDULER.ID}]. This count includes tasks that are waiting for a worker to execute them and tasks that are currently waiting or running (in SUSPENDED or RUNNABLE state).','0','30d','0','','45047','','','','','200','1','0','','','0','0','0','0','0','0','0','fc5113b2b5f64205ad9d100bd480adea','0','2','0'), ('45069','18','','10571','Scheduler [{#SCHEDULER.ID}]: Current workers','gcp.cloudsql.mssql.scheduler.current_workers[{#SCHEDULER.ID}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current number of workers associated with the scheduler that goes by its ID [{#SCHEDULER.ID}]. It includes workers that are not assigned any task.','0','30d','0','','45047','','','','','200','1','0','','','0','0','0','0','0','0','0','6602f8d26a9a46fb8ed74a40d10f36e4','0','2','0'), ('45070','18','','10571','Scheduler [{#SCHEDULER.ID}]: Pending I/O operations','gcp.cloudsql.mssql.scheduler.pending_disk_io[{#SCHEDULER.ID}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current number of pending I/Os waiting to be completed that are associated with the scheduler that goes by its ID [{#SCHEDULER.ID}]. Each scheduler has a list of pending I/Os that are checked to determine whether they have been completed every time there is a context switch. The count is incremented when the request is inserted. This count is decremented when the request is completed. This number does not indicate the state of the I/Os.','0','30d','0','','45047','','','','','200','1','0','','','0','0','0','0','0','0','0','2022a85bb7c04e73a75136e55162084a','0','2','0'), ('45071','18','','10571','Scheduler [{#SCHEDULER.ID}]: Runnable tasks','gcp.cloudsql.mssql.scheduler.runnable_tasks[{#SCHEDULER.ID}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current number of workers that are associated with the scheduler that goes by its ID [{#SCHEDULER.ID}] and have assigned tasks waiting to be scheduled on the runnable queue.','0','30d','0','','45047','','','','','200','1','0','','','0','0','0','0','0','0','0','a9852ac0cdcc423fad6b305eb57eedf1','0','2','0'), ('45072','18','','10571','Scheduler [{#SCHEDULER.ID}]: Work queue','gcp.cloudsql.mssql.scheduler.work_queue[{#SCHEDULER.ID}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current number of tasks in the pending queue associated with the scheduler that goes by its ID [{#SCHEDULER.ID}]. These tasks are waiting for a worker to pick them up.','0','30d','0','','45047','','','','','200','1','0','','','0','0','0','0','0','0','0','eaae59fb97124471b1c7c30c601dba1f','0','2','0'), ('45073','18','','10577','Disk [{#GCE.DISK.NAME}]: Read bytes','gcp.gce.disk.read_bytes_count[{#GCE.DISK.NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of bytes read from [{#GCE.DISK.NAME}] disk.','0','30d','0','','45060','','','','','200','1','0','','','0','0','0','0','0','0','0','dda10a0535c04fdb92092efeff020b2c','0','2','0'), ('45074','18','','10577','Disk [{#GCE.DISK.NAME}]: Read operations','gcp.gce.disk.read_ops_count[{#GCE.DISK.NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of read IO operations from [{#GCE.DISK.NAME}] disk.','0','30d','0','','45060','','','','','200','1','0','','','0','0','0','0','0','0','0','e166d3dfeb404111bcd143415070a0af','0','2','0'), ('45075','18','','10577','Disk [{#GCE.DISK.NAME}]: Write bytes','gcp.gce.disk.write_bytes_count[{#GCE.DISK.NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of bytes written to {#GCE.DISK.NAME}] disk.','0','30d','0','','45060','','','','','200','1','0','','','0','0','0','0','0','0','0','cf21b2bf6dc74ed28bc55a2c567b3dae','0','2','0'), ('45076','18','','10577','Disk [{#GCE.DISK.NAME}]: Write operations','gcp.gce.disk.write_ops_count[{#GCE.DISK.NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of write IO operations to [{#GCE.DISK.NAME}] disk.','0','30d','0','','45060','','','','','200','1','0','','','0','0','0','0','0','0','0','602255b7df004129b5a3e0e1d2fba920','0','2','0'), ('45086','18','','10323','{#DB}: Bytes','clickhouse.db.bytes["{#DB}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Database size in bytes.','0','30d','0','','45082','','','','','200','1','0','','','0','0','0','0','0','0','0','b574ae5a62af4e9bb9d2c7324bc86c96','0','2','0'), ('45087','18','','10323','{#DB}: Tables','clickhouse.db.tables["{#DB}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of tables in {#DB} database.','0','30d','0','','45082','','','','','200','1','0','','','0','0','0','0','0','0','0','39d06d86884e4da9b9f8d9c0f7028c7c','0','2','0'), ('45101','18','','10327','MSSQL Job ''{#JOBNAME}'': Enabled','mssql.job.enabled["{#JOBNAME}"]','0','31d','365d','0','3','','','','',NULL,'161','','','0','','','','','2',NULL,'The possible values of the job status: 0 = Disabled 1 = Enabled','0','30d','0','','45100','','','','','200','1','0','','','0','0','0','0','0','0','0','4e1e21603b01420f9b25e85f5987e7ec','0','2','0'), ('45110','18','','10310','DB {#DB}: Get Keyspace info','redis.db.info_raw["{#DB}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The item gets information about keyspace of {#DB} database.','0','30d','0','','45105','','','','','200','1','0','','','0','0','0','0','0','0','0','983d5c7da67d42399105d5477c54c1e6','0','2','0'), ('45117','18','','10397','Get metrics: {#STORE_ADDRESS}','pd.region_heartbeat.get_metrics[{#STORE_ADDRESS}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get region metrics for {#STORE_ADDRESS}.','0','30d','0','','45113','','','','','200','1','0','','','0','0','0','0','0','0','0','963c4d34d2664e6aba984f746b80b5c4','0','2','0'), ('45121','18','','10398','Get QPS metrics: {#TYPE}','tidb.qps.get_metrics[{#TYPE}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Get QPS metrics of {#TYPE}.','0','30d','0','','45120','','','','','200','1','0','','','0','0','0','0','0','0','0','f5966b0b3840432a8809a0dbb128ecaf','0','2','0'), ('45557','18','','10583','[{#ALARM_NAME}]: State','aws.ecs.alarm.state["{#ALARM_NAME}"]','0','31d','365d','0','3','','','','',NULL,'1098','','','0','','','','','2',NULL,'The state value for the alarm. Possible values: 0 (OK), 1 (INSUFFICIENT_DATA), 2 (ALARM). Alarm description: {#ALARM_DESCRIPTION}','0','30d','0','','45545','','','','','200','1','0','','','0','0','0','0','0','0','0','8a862dd5444f459b88f91a9fdb2ddc5e','0','2','0'), ('45558','18','','10583','[{#ALARM_NAME}]: State reason','aws.ecs.alarm.state_reason["{#ALARM_NAME}"]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'An explanation for the alarm state, in text format. Alarm description: {#ALARM_DESCRIPTION}','0','30d','0','','45545','','','','','200','1','0','','','0','0','0','0','0','0','0','eacb27b638924fa289e7c119f97879d8','0','2','0'), ('45593','18','','10584','[{#ALARM_NAME}]: State','aws.ecs.alarm.state["{#ALARM_NAME}"]','0','31d','365d','0','3','','','','',NULL,'1100','','','0','','','','','2',NULL,'The state value for the alarm. Possible values: 0 (OK), 1 (INSUFFICIENT_DATA), 2 (ALARM). Alarm description: {#ALARM_DESCRIPTION}','0','30d','0','','45577','','','','','200','1','0','','','0','0','0','0','0','0','0','7224b197422a4b8583a4a6ce43117153','0','2','0'), ('45594','18','','10584','[{#ALARM_NAME}]: State reason','aws.ecs.alarm.state_reason["{#ALARM_NAME}"]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'An explanation for the alarm state, in text format. Alarm description: {#ALARM_DESCRIPTION}','0','30d','0','','45577','','','','','200','1','0','','','0','0','0','0','0','0','0','a45dcc184496489aa4564b290392a0b6','0','2','0'), ('45623','18','','10587','Availability zone [{#ZONE_NAME}]: Host count','openstack.nova.availability_zone.host_count[{#ZONE_NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of hosts and service objects under single availability zone.','0','30d','0','','45619','','','','','200','1','0','','','0','0','0','0','0','0','0','46f1348ce86742a6a645e137b0ecea63','0','2','0'), ('45624','18','','10587','Availability zone [{#ZONE_NAME}]: State','openstack.nova.availability_zone.state[{#ZONE_NAME}]','0','31d','365d','0','3','','','','',NULL,'1102','','','0','','','','','2',NULL,'Current state of the availability zone.','0','30d','0','','45619','','','','','200','1','0','','','0','0','0','0','0','0','0','2d99e000412244b998417c19399a8ff9','0','2','0'), ('45625','18','','10587','Hypervisor [{#ID}]:[{#HOSTNAME}]: State','openstack.nova.hypervisors.state[{#ID}]','0','31d','365d','0','3','','','','',NULL,'1104','','','0','','','','','2',NULL,'State of the hypervisor.','0','30d','0','','45620','','','','','200','1','0','','','0','0','0','0','0','0','0','ef893a8517414964ade5d40064291f87','0','2','0'), ('45626','18','','10587','Hypervisor [{#ID}]:[{#HOSTNAME}]: Status','openstack.nova.hypervisors.status[{#ID}]','0','31d','365d','0','3','','','','',NULL,'1105','','','0','','','','','2',NULL,'Status of the hypervisor.','0','30d','0','','45620','','','','','200','1','0','','','0','0','0','0','0','0','0','26d06619594049c594998359a4659686','0','2','0'), ('45627','18','','10587','Hypervisor [{#ID}]:[{#HOSTNAME}]: Version','openstack.nova.hypervisors.version[{#ID}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Hypervisor version.','0','30d','0','','45620','','','','','200','1','0','','','0','0','0','0','0','0','0','5e9ced69d41d40ffabb04f9fd88b7730','0','2','0'), ('45628','18','','10587','Compute service [{#HOST}]:[{#BINARY}]:[{#ID}]: Disabling reason','openstack.nova.services.disabled.reason[{#ID}]','0','31d','0','0','1','','','','',NULL,'1103','','','0','','','','','2',NULL,'Reason for disabling a service.','0','30d','0','','45621','','','','','200','1','0','','','0','0','0','0','0','0','0','3bd724dad043411187a86466cf8ee2c6','0','2','0'), ('45629','18','','10587','Compute service [{#HOST}]:[{#BINARY}]:[{#ID}]: State','openstack.nova.services.state[{#ID}]','0','31d','365d','0','3','','','','',NULL,'1104','','','0','','','','','2',NULL,'State of the service.','0','30d','0','','45621','','','','','200','1','0','','','0','0','0','0','0','0','0','8f123b2f902647b381b2c9a5af3bee80','0','2','0'), ('45630','18','','10587','Compute service [{#HOST}]:[{#BINARY}]:[{#ID}]: Status','openstack.nova.services.status[{#ID}]','0','31d','365d','0','3','','','','',NULL,'1105','','','0','','','','','2',NULL,'Status of the service.','0','30d','0','','45621','','','','','200','1','0','','','0','0','0','0','0','0','0','65288a6f75094c74bbb04651c87cb323','0','2','0'), ('45631','18','','10587','Tenant [{#TENANT_ID}]: Total disk usage','openstack.nova.tenant.disk_usage[{#TENANT_ID}]','0','31d','365d','0','0','','!hours','','',NULL,NULL,'','','0','','','','','2',NULL,'Total disk usage hours for the current tenant (project). Multiplying the server disk size (in GiB) by hours the server exists, and then adding that all together for each server.','0','30d','0','','45622','','','','','200','1','0','','','0','0','0','0','0','0','0','73e8e9b39da64358948407efd6aded6b','0','2','0'), ('45632','18','','10587','Tenant [{#TENANT_ID}]: Total hours','openstack.nova.tenant.total_hours[{#TENANT_ID}]','0','31d','365d','0','0','','!hours','','',NULL,NULL,'','','0','','','','','2',NULL,'Total duration that the servers exist (in hours).','0','30d','0','','45622','','','','','200','1','0','','','0','0','0','0','0','0','0','634ccd12a49e440fb72f622f3fa36034','0','2','0'), ('45633','18','','10587','Tenant [{#TENANT_ID}]: Total memory usage','openstack.nova.tenant.total_memory_mb_usage[{#TENANT_ID}]','0','31d','365d','0','0','','!hours','','',NULL,NULL,'','','0','','','','','2',NULL,'Total memory usage hours for the current tenant (project). Multiplying the server memory size (in MiB) by hours the server exists, and then adding that all together for each server.','0','30d','0','','45622','','','','','200','1','0','','','0','0','0','0','0','0','0','ce4fccd4d93a4621af8982d3e6b9dcbb','0','2','0'), ('45634','18','','10587','Tenant [{#TENANT_ID}]: Total vCPUs usage','openstack.nova.tenant.total_vcpu[{#TENANT_ID}]','0','31d','365d','0','0','','!hours','','',NULL,NULL,'','','0','','','','','2',NULL,'Total vCPU usage hours for the current tenant (project). Multiplying the number of virtual CPUs of the server by hours the server exists, and then adding that all together for each server.','0','30d','0','','45622','','','','','200','1','0','','','0','0','0','0','0','0','0','eee30f1ee62c40839bcf623c8a0a6ae6','0','2','0'), ('45706','18','','10589','DB [{#DBNAME}]: Num of rowexclusive locks','pgsql.locks.rowexclusive["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of rowexclusive locks for this database.','0','30d','0','','45703','','','','','200','1','0','','','0','0','0','0','0','0','0','0abfbce470824232a7516747f6f2714a','0','2','0'), ('45707','18','','10589','DB [{#DBNAME}]: Num of rowshare locks','pgsql.locks.rowshare["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of rowshare locks for this database.','0','30d','0','','45703','','','','','200','1','0','','','0','0','0','0','0','0','0','24347f06596f4fc1af2753fbdd0b720c','0','2','0'), ('45708','18','','10589','DB [{#DBNAME}]: Num of sharerowexclusive locks','pgsql.locks.sharerowexclusive["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of total sharerowexclusive for this database.','0','30d','0','','45703','','','','','200','1','0','','','0','0','0','0','0','0','0','dedcbbc9ee234e778b48947561077850','0','2','0'), ('45709','18','','10589','DB [{#DBNAME}]: Num of shareupdateexclusive locks','pgsql.locks.shareupdateexclusive["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of shareupdateexclusive locks for this database.','0','30d','0','','45703','','','','','200','1','0','','','0','0','0','0','0','0','0','acaaf4e4ae97426589ea7fe351da0a48','0','2','0'), ('45710','18','','10589','DB [{#DBNAME}]: Num of share locks','pgsql.locks.share["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of share locks for this database.','0','30d','0','','45703','','','','','200','1','0','','','0','0','0','0','0','0','0','03df53fbfc2f4ac2a5d0793e0ed14f4c','0','2','0'), ('45711','18','','10589','DB [{#DBNAME}]: Num of locks total','pgsql.locks.total["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of locks in this database.','0','30d','0','','45703','','','','','200','1','0','','','0','0','0','0','0','0','0','02f319126deb4de19d95443304d97c0d','0','2','0'), ('45712','18','','10589','DB [{#DBNAME}]: Queries slow maintenance count','pgsql.queries.mro.slow_count["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Slow maintenance query count for this database.','0','30d','0','','45702','','','','','200','1','0','','','0','0','0','0','0','0','0','100a8f6b18644a308f8117913862dcf4','0','2','0'), ('45713','18','','10589','DB [{#DBNAME}]: Queries max transaction time','pgsql.queries.tx.time_max["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Max transaction query time for this database.','0','30d','0','','45702','','','','','200','1','0','','','0','0','0','0','0','0','0','0eced9bbc0d94332a1ec9fb45913b931','0','2','0'), ('45714','18','','10589','DB [{#DBNAME}]: Num of exclusive locks','pgsql.locks.exclusive["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of exclusive locks for this database.','0','30d','0','','45703','','','','','200','1','0','','','0','0','0','0','0','0','0','a98106f8644b4f77b8e2cf1dc7ed9586','0','2','0'), ('45715','18','','10589','DB [{#DBNAME}]: Queries sum maintenance time','pgsql.queries.mro.time_sum["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Sum maintenance query time for this database.','0','30d','0','','45702','','','','','200','1','0','','','0','0','0','0','0','0','0','856a7e26192848e1aadb5bdff25cb92a','0','2','0'), ('45716','18','','10589','DB [{#DBNAME}]: Queries slow query count','pgsql.queries.query.slow_count["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Slow query count for this database.','0','30d','0','','45702','','','','','200','1','0','','','0','0','0','0','0','0','0','b324beea02f742c381d8241ba1e9382b','0','2','0'), ('45717','18','','10589','DB [{#DBNAME}]: Queries max query time','pgsql.queries.query.time_max["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Max query time for this database.','0','30d','0','','45702','','','','','200','1','0','','','0','0','0','0','0','0','0','0c0717a146344ec4a7abf4e6c35cb7ae','0','2','0'), ('45718','18','','10589','DB [{#DBNAME}]: Queries sum query time','pgsql.queries.query.time_sum["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Sum query time for this database.','0','30d','0','','45702','','','','','200','1','0','','','0','0','0','0','0','0','0','e2e686428e2b4f65b7dcbb9a6a3b0f93','0','2','0'), ('45719','18','','10589','DB [{#DBNAME}]: Queries slow transaction count','pgsql.queries.tx.slow_count["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Slow transaction query count for this database.','0','30d','0','','45702','','','','','200','1','0','','','0','0','0','0','0','0','0','06fb68c43e0144e8aa85c0acceeafbfc','0','2','0'), ('45720','18','','10589','DB [{#DBNAME}]: Queries max maintenance time','pgsql.queries.mro.time_max["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Max maintenance query time for this database.','0','30d','0','','45702','','','','','200','1','0','','','0','0','0','0','0','0','0','f430eda6eae54a918a03b27f34709f54','0','2','0'), ('45721','18','','10589','DB [{#DBNAME}]: Num of accessexclusive locks','pgsql.locks.accessexclusive["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of accessexclusive locks for this database.','0','30d','0','','45703','','','','','200','1','0','','','0','0','0','0','0','0','0','e9fa95b198b14da9b416bd1bc7c00911','0','2','0'), ('45722','18','','10589','DB [{#DBNAME}]: Num of accessshare locks','pgsql.locks.accessshare["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of accessshare locks for this database.','0','30d','0','','45703','','','','','200','1','0','','','0','0','0','0','0','0','0','fbc1bb60b8214041b64095672995e8ec','0','2','0'), ('45723','18','','10589','DB [{#DBNAME}]: Backends connected','pgsql.dbstat.numbackends["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of backends currently connected to this database.','0','30d','0','','45704','','','','','200','1','0','','','0','0','0','0','0','0','0','d65dc8860c6e4e00aca8dfc35c5e3346','0','2','0'), ('45724','18','','10589','DB [{#DBNAME}]: Blocks hit per second','pgsql.dbstat.blks_hit.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of times per second disk blocks were found already in the buffer cache, so that a read was not necessary.','0','30d','0','','45704','','','','','200','1','0','','','0','0','0','0','0','0','0','d6c61f75147e414a99dfba56ea8ba422','0','2','0'), ('45725','18','','10589','DB [{#DBNAME}]: Disk blocks read per second','pgsql.dbstat.blks_read.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of disk blocks read per second in this database.','0','30d','0','','45704','','','','','200','1','0','','','0','0','0','0','0','0','0','086c614609174dabab3b7a231353f4fa','0','2','0'), ('45726','18','','10589','DB [{#DBNAME}]: Disk blocks read time per second','pgsql.dbstat.blk_read_time.rate["{#DBNAME}"]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Time spent reading data file blocks by backends per second.','0','30d','0','','45704','','','','','200','1','0','','','0','0','0','0','0','0','0','3ce43b1b7b874278abef353c6c791c95','0','2','0'), ('45727','18','','10589','DB [{#DBNAME}]: Disk blocks write time per second','pgsql.dbstat.blk_write_time.rate["{#DBNAME}"]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Time spent writing data file blocks by backends per second.','0','30d','0','','45704','','','','','200','1','0','','','0','0','0','0','0','0','0','9c443a5bae6b4b4c84e6272cb254a38e','0','2','0'), ('45728','18','','10589','DB [{#DBNAME}]: Detected conflicts per second','pgsql.dbstat.conflicts.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of queries canceled due to conflicts with recovery in this database per second.','0','30d','0','','45704','','','','','200','1','0','','','0','0','0','0','0','0','0','8a772dae1d8f40978bfcceebfabe87de','0','2','0'), ('45729','18','','10589','DB [{#DBNAME}]: Detected deadlocks per second','pgsql.dbstat.deadlocks.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of detected deadlocks in this database per second.','0','30d','0','','45704','','','','','200','1','0','','','0','0','0','0','0','0','0','c4f382ef370640aa93c265dabe0b6dcd','0','2','0'), ('45730','18','','10589','DB [{#DBNAME}]: Temp_bytes written per second','pgsql.dbstat.temp_bytes.rate["{#DBNAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total amount of data written to temporary files by queries in this database.','0','30d','0','','45704','','','','','200','1','0','','','0','0','0','0','0','0','0','65ce0c82404340bbb180bdb734573596','0','2','0'), ('45731','18','','10589','DB [{#DBNAME}]: Rollbacks per second','pgsql.dbstat.xact_rollback.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of transactions in this database that have been rolled back.','0','30d','0','','45704','','','','','200','1','0','','','0','0','0','0','0','0','0','a840bb06684140c8b70406a7f8b14873','0','2','0'), ('45732','18','','10589','DB [{#DBNAME}]: Temp_files created per second','pgsql.dbstat.temp_files.rate["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of temporary files created by queries in this database.','0','30d','0','','45704','','','','','200','1','0','','','0','0','0','0','0','0','0','9b079ed6377841ee87005af6ebaaa830','0','2','0'), ('45733','18','','10589','DB [{#DBNAME}]: Tuples deleted per second','pgsql.dbstat.tup_deleted.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of rows deleted by queries in this database per second.','0','30d','0','','45704','','','','','200','1','0','','','0','0','0','0','0','0','0','207b2e99c61044e091007f45cceb7088','0','2','0'), ('45734','18','','10589','DB [{#DBNAME}]: Tuples fetched per second','pgsql.dbstat.tup_fetched.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of rows fetched by queries in this database per second.','0','30d','0','','45704','','','','','200','1','0','','','0','0','0','0','0','0','0','7e6add2efe2f4cc79982351c448bd921','0','2','0'), ('45735','18','','10589','DB [{#DBNAME}]: Tuples inserted per second','pgsql.dbstat.tup_inserted.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of rows inserted by queries in this database per second.','0','30d','0','','45704','','','','','200','1','0','','','0','0','0','0','0','0','0','43bb96408a9e4832b7e272770c989593','0','2','0'), ('45736','18','','10589','DB [{#DBNAME}]: Tuples returned per second','pgsql.dbstat.tup_returned.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of rows returned by queries in this database per second.','0','30d','0','','45704','','','','','200','1','0','','','0','0','0','0','0','0','0','638cde24706448d09fa06c9571657a9d','0','2','0'), ('45737','18','','10589','DB [{#DBNAME}]: Tuples updated per second','pgsql.dbstat.tup_updated.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of rows updated by queries in this database per second.','0','30d','0','','45704','','','','','200','1','0','','','0','0','0','0','0','0','0','73f71c2f1b9043b48152e91a3e3c41a1','0','2','0'), ('45738','18','','10589','DB [{#DBNAME}]: Commits per second','pgsql.dbstat.xact_commit.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of transactions in this database that have been committed per second.','0','30d','0','','45704','','','','','200','1','0','','','0','0','0','0','0','0','0','7ff29324ad4c48b7b28faaf3e16efbd6','0','2','0'), ('45739','18','','10589','DB [{#DBNAME}]: Queries sum transaction time','pgsql.queries.tx.time_sum["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Sum transaction query time for this database.','0','30d','0','','45702','','','','','200','1','0','','','0','0','0','0','0','0','0','a51a95891cd849de9eeaa6c4dbcbefbe','0','2','0'), ('45740','18','','10589','Application [{#APPLICATION_NAME}]: Replication flush lag','pgsql.replication.process.flush_lag["{#APPLICATION_NAME}"]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Time elapsed between flushing recent WAL locally and receiving notification that this standby server has written and flushed it (but not yet applied it). This can be used to gauge the delay that synchronous_commit level on incurred while committing if this server was configured as a synchronous standby.','0','30d','0','','45705','','','','','200','1','0','','','0','0','0','0','0','0','0','86109b6d1b084de186dcda5d455da992','0','2','0'), ('45741','18','','10589','Application [{#APPLICATION_NAME}]: Replication replay lag','pgsql.replication.process.replay_lag["{#APPLICATION_NAME}"]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Time elapsed between flushing recent WAL locally and receiving notification that this standby server has written, flushed and applied it. This can be used to gauge the delay that synchronous_commit level remote_apply incurred while committing if this server was configured as a synchronous standby.','0','30d','0','','45705','','','','','200','1','0','','','0','0','0','0','0','0','0','2cad17fa29c24f0da0fffe962c337f13','0','2','0'), ('45742','18','','10589','Application [{#APPLICATION_NAME}]: Replication write lag','pgsql.replication.process.write_lag["{#APPLICATION_NAME}"]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Time elapsed between flushing recent WAL locally and receiving notification that this standby server has written it (but not yet flushed it or applied it). This can be used to gauge the delay that synchronous_commit level remote_write incurred while committing if this server was configured as a synchronous standby.','0','30d','0','','45705','','','','','200','1','0','','','0','0','0','0','0','0','0','f5f62a5cac254d5eb891beadd6ca950d','0','2','0'), ('45779','18','','10590','Get devices item errors','sd_wan.get.devices.errors','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Item for gathering all the data item errors.','0','30d','0','','45749','','','','','200','1','0','','','0','0','0','0','0','0','0','172dd697ad7b4b5d907b8d30faef7c52','0','2','0'), ('45780','18','','10590','Invalid certificates','sd_wan.invalid_certificates','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of invalid certificates.','0','30d','0','','45749','','','','','200','1','0','','','0','0','0','0','0','0','0','eb1ffb2430c8450981f86174ac71456e','0','2','0'), ('45781','18','','10590','Total devices','sd_wan.total.devices','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of all devices.','0','30d','0','','45749','','','','','200','1','0','','','0','0','0','0','0','0','0','6ad73678b22346849ce5df9656e6edae','0','2','0'), ('45782','18','','10590','Number of vBond devices','sd_wan.vbond.devices','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of vBond devices.','0','30d','0','','45749','','','','','200','1','0','','','0','0','0','0','0','0','0','aee4253ce4e143ddad3d7776ebe72055','0','2','0'), ('45783','18','','10590','Number of vEdge devices','sd_wan.vedge.devices','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of vEdge devices.','0','30d','0','','45749','','','','','200','1','0','','','0','0','0','0','0','0','0','8e0b166d7cac435bb74fba811c5881af','0','2','0'), ('45784','18','','10590','Number of vManage devices','sd_wan.vmanage.devices','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of vManage devices.','0','30d','0','','45749','','','','','200','1','0','','','0','0','0','0','0','0','0','e419f8b060af44b0ad6f52d5613b0973','0','2','0'), ('45785','18','','10590','Number of vSmart devices','sd_wan.vsmart.devices','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total number of vSmart devices.','0','30d','0','','45749','','','','','200','1','0','','','0','0','0','0','0','0','0','385cb04360ea4d34b2ae04c6879ec8fa','0','2','0'), ('45786','18','','10591','CPU utilization','sd_wan.device.cpu.util','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'CPU utilization, expressed in %.','0','30d','0','','45764','','','','','200','1','0','','','0','0','0','0','0','0','0','cbdaee2fc07f4fe9941bb9e1c1b25693','0','2','0'), ('45787','18','','10590','Devices discovery','sd_wan.devices.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovering devices from Cisco SD-WAN API.','0','7d','1','','45749','','','','','200','1','0','','','0','0','0','0','0','0','0','2e445f8991f842e09fc206ed3e392038','0','2','0'), ('45794','18','','10591','["{#FSNAME}"]: Available space','sd_wan.device.fs.avail["{#FSNAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The available size of the storage pool, in bytes.','0','30d','0','','45791','','','','','200','1','0','','','0','0','0','0','0','0','0','efd5601dc80a4b93b3fae33922003cca','0','2','0'), ('45795','18','','10591','["{#FSNAME}"]: Space utilization','sd_wan.device.fs.pused["{#FSNAME}"]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Space utilization, expressed in %.','0','30d','0','','45791','','','','','200','1','0','','','0','0','0','0','0','0','0','1ce9413041f84ac9b7e44d05a62566d1','0','2','0'), ('45796','18','','10591','["{#FSNAME}"]: Total space','sd_wan.device.fs.total["{#FSNAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size of the storage pool, in bytes.','0','30d','0','','45791','','','','','200','1','0','','','0','0','0','0','0','0','0','ae724b1dd35f46e6bb492daf4729544a','0','2','0'), ('45797','18','','10591','["{#FSNAME}"]: Used space','sd_wan.device.fs.used["{#FSNAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The used size of the dataset, in bytes.','0','30d','0','','45791','','','','','200','1','0','','','0','0','0','0','0','0','0','eeeef8b9090f4c28950ed9735cc97016','0','2','0'), ('45798','18','','10591','Interface ["{#IFNAME}"]: Admin status','sd_wan.device.if.adm.status["{#IFKEY}"]','0','31d','365d','0','3','','','','',NULL,'1111','','','0','','','','','2',NULL,'Current admin status of the interface.','0','30d','0','','45792','','','','','200','1','0','','','0','0','0','0','0','0','0','032884d082d54cd2bca2a0cf747e91ee','0','2','0'), ('45799','18','','10591','Interface ["{#IFNAME}"]: Inbound packets discarded','sd_wan.device.if.in.discards["{#IFKEY}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of inbound packets that were chosen to be discarded.','0','30d','0','','45792','','','','','200','1','0','','','0','0','0','0','0','0','0','52a6b09a0a9a4849b4b8c6d209227641','0','2','0'), ('45800','18','','10591','Interface ["{#IFNAME}"]: Inbound packets with errors','sd_wan.device.if.in.errors["{#IFKEY}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of inbound packets that were contain errors.','0','30d','0','','45792','','','','','200','1','0','','','0','0','0','0','0','0','0','3f65667d53bd449994fb89ab3f2e0f16','0','2','0'), ('45801','18','','10591','Interface ["{#IFNAME}"]: Inbound IPv6 packets discarded','sd_wan.device.if.in.v6.discards["{#IFKEY}"]','0','31d','365d','0','0','','','','',NULL,'1113','','','0','','','','','2',NULL,'The number of inbound IPv6 packets that were chosen to be discarded.','0','30d','0','','45792','','','','','200','1','0','','','0','0','0','0','0','0','0','800e9d7703664824a38c6b8c02278d76','0','2','0'), ('45802','18','','10591','Interface ["{#IFNAME}"]: Inbound IPv6 packets with errors','sd_wan.device.if.in.v6.errors["{#IFKEY}"]','0','31d','365d','0','0','','','','',NULL,'1113','','','0','','','','','2',NULL,'The number of inbound IPv4 packets that were contain errors.','0','30d','0','','45792','','','','','200','1','0','','','0','0','0','0','0','0','0','ad932748cce547bc8bbf2b54362cf5a0','0','2','0'), ('45803','18','','10591','Interface ["{#IFNAME}"]: Bits received','sd_wan.device.if.in["{#IFKEY}"]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of octets received on the interface.','0','30d','0','','45792','','','','','200','1','0','','','0','0','0','0','0','0','0','e4f94e0c8abe49d9b546acdbd01de6cb','0','2','0'), ('45804','18','','10591','Interface ["{#IFNAME}"]: Outbound packets discarded','sd_wan.device.if.out.discards["{#IFKEY}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of outbound packets that were chosen to be discarded.','0','30d','0','','45792','','','','','200','1','0','','','0','0','0','0','0','0','0','813e0877c1ee43d3add120c22e1a30a7','0','2','0'), ('45805','18','','10591','Interface ["{#IFNAME}"]: Outbound packets with errors','sd_wan.device.if.out.errors["{#IFKEY}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of outbound packets that were contain errors.','0','30d','0','','45792','','','','','200','1','0','','','0','0','0','0','0','0','0','b353a80145074a17a154db7073734dd4','0','2','0'), ('45806','18','','10591','Interface ["{#IFNAME}"]: Outbound IPv6 packets discarded','sd_wan.device.if.out.v6.discards["{#IFKEY}"]','0','31d','365d','0','0','','','','',NULL,'1113','','','0','','','','','2',NULL,'The number of outbound IPv6 packets that were chosen to be discarded.','0','30d','0','','45792','','','','','200','1','0','','','0','0','0','0','0','0','0','d4beeb5a5b674652aaeff89ccd47548d','0','2','0'), ('45807','18','','10591','Interface ["{#IFNAME}"]: Outbound IPv6 packets with errors','sd_wan.device.if.out.v6.errors["{#IFKEY}"]','0','31d','365d','0','0','','','','',NULL,'1113','','','0','','','','','2',NULL,'The number of outbound IPv6 packets that were contain errors.','0','30d','0','','45792','','','','','200','1','0','','','0','0','0','0','0','0','0','61b554e479b545069d3e8bdca629e00d','0','2','0'), ('45808','18','','10591','Interface ["{#IFNAME}"]: Bits sent','sd_wan.device.if.out["{#IFKEY}"]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of octets transmitted out of the interface.','0','30d','0','','45792','','','','','200','1','0','','','0','0','0','0','0','0','0','9b5d5fc0fea341f9beacf41ec9aff590','0','2','0'), ('45809','18','','10591','Interface ["{#IFNAME}"]: Speed','sd_wan.device.if.speed["{#IFKEY}"]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Current bandwidth of the interface.','0','30d','0','','45792','','','','','200','1','0','','','0','0','0','0','0','0','0','ab89a67a34c74ae3acc1b4fb4c711b2f','0','2','0'), ('45810','18','','10591','Interface ["{#IFNAME}"]: Operational status','sd_wan.device.if.status["{#IFKEY}"]','0','31d','365d','0','3','','','','',NULL,'1114','','','0','','','','','2',NULL,'Current operational status of the interface.','0','30d','0','','45792','','','','','200','1','0','','','0','0','0','0','0','0','0','d1cda0afbdfa4342abcbe4a5f15a5950','0','2','0'), ('45811','18','','10591','Route [{#LOCAL} => {#REMOTE}]: Jitter','sd_wan.routes.jitter[{#LOCAL},{#REMOTE}]','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'A change in the time it takes for a data packet to travel through the route.','0','30d','0','','45793','','','','','200','1','0','','','0','0','0','0','0','0','0','f4ba8d21398c4bd4b5896ee647f5886e','0','2','0'), ('45812','18','','10591','Route [{#LOCAL} => {#REMOTE}]: Latency','sd_wan.routes.latency[{#LOCAL},{#REMOTE}]','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of time it takes for a data packet to travel through the route.','0','30d','0','','45793','','','','','200','1','0','','','0','0','0','0','0','0','0','f06e822d76794b4f8a30978fcb406ff8','0','2','0'), ('45813','18','','10591','Route [{#LOCAL} => {#REMOTE}]: Loss','sd_wan.routes.loss[{#LOCAL},{#REMOTE}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Lost packets of data not reached the destination after being transmitted through the route.','0','30d','0','','45793','','','','','200','1','0','','','0','0','0','0','0','0','0','9310f97111c0413f8d980cbf280863c2','0','2','0'), ('45880','18','','10595','Allocations pending','nomad.client.allocations.pending','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of allocations pending (received by the client but not yet running).','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','9fc77ab432c04cf4b1c0f1941da641d3','0','2','0'), ('45881','18','','10595','Memory available','nomad.client.memory.available','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total amount of memory available to processes which includes free and cached memory.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','f312a5ba5758426d83c5c3c414d765fd','0','2','0'), ('45882','18','','10595','Uptime','nomad.client.uptime','0','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'Uptime of the host running the Nomad client.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','3561fb69284f4c88a7f5d8c7f04c3b14','0','2','0'), ('45883','18','','10595','Memory unallocated','nomad.client.unallocated.memory','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total amount of memory free for the scheduler to allocate to tasks.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','bc0928fcff2f458f83874d7442274e61','0','2','0'), ('45884','18','','10595','Disk unallocated','nomad.client.unallocated.disk','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total amount of disk space free for the scheduler to allocate to tasks.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','44619e3740a9403581d54c6555ecd967','0','2','0'), ('45885','18','','10595','CPU unallocated','nomad.client.unallocated.cpu','0','31d','365d','0','3','','!Mhz','','',NULL,NULL,'','','0','','','','','0',NULL,'Total amount of CPU shares free for the scheduler to allocate to tasks.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','18e57950b0c041e0a2abc0dbd0644b33','0','2','0'), ('45886','18','','10595','CPU allocated','nomad.client.allocated.cpu','0','31d','365d','0','3','','!Mhz','','',NULL,NULL,'','','0','','','','','0',NULL,'Total amount of CPU shares the scheduler has allocated to tasks.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','13aa2136b7634c32a56fe00b29056d2d','0','2','0'), ('45887','18','','10595','Disk allocated','nomad.client.allocated.disk','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total amount of disk space the scheduler has allocated to tasks.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','fb7211ae27c845bba8dca7e75e0083b8','0','2','0'), ('45888','18','','10595','Memory allocated','nomad.client.allocated.memory','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total amount of memory the scheduler has allocated to tasks.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','27c71fbb37f14deba301c3b5c7daecb5','0','2','0'), ('45889','18','','10595','Memory used','nomad.client.memory.used','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Amount of memory used by processes.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','b2638e0b928e46cd825304a3f1ca1682','0','2','0'), ('45890','18','','10595','Memory size','nomad.client.memory.total','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total amount of physical memory on the node.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','50d152cf3c654e818aa7303841d5444a','0','2','0'), ('45891','18','','10595','Memory free','nomad.client.memory.free','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Amount of memory which is free.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','e379e923ed6b45a682f1da192b3a328d','0','2','0'), ('45892','18','','10595','Allocations blocked','nomad.client.allocations.blocked','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of allocations waiting for previous versions.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','945d348f2f2d4c02b3a1ec6f32f1290d','0','2','0'), ('45893','18','','10595','Allocations restarted, rate','nomad.client.allocations.restart','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of allocations restarted.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','eae33da538c642868cf9afe9e6495c95','0','2','0'), ('45894','18','','10595','Allocations completed, rate','nomad.client.allocations.complete','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of allocations completed.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','f556557bf5de438d9aaf941ab5c8d93b','0','2','0'), ('45895','18','','10595','Allocations failed, rate','nomad.client.allocations.failed','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of allocations failed.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','586bc8f63e7f46cf99337c7f70809c43','0','2','0'), ('45896','18','','10595','Allocations migrating','nomad.client.allocations.migrating','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of allocations migrating data from previous versions.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','88b2eb8e9e8041df83674d3800b1f8c1','0','2','0'), ('45897','18','','10595','CPU user utilization','nomad.client.cpu.user','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'CPU utilization in user space.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','cc0671cc71fb4bdd8cdf7a959e1022fd','0','2','0'), ('45898','18','','10595','Allocations OOM killed','nomad.client.allocations.oom_killed','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of allocations OOM killed.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','717172608fbb4d81bfb65e7f4aa4aaf3','0','2','0'), ('45899','18','','10595','CPU system utilization','nomad.client.cpu.system','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'CPU utilization in system space.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','ad75d4b5e69c4e11bc886582791951be','0','2','0'), ('45900','18','','10595','CPU idle utilization','nomad.client.cpu.idle','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'CPU utilization in idle state.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','31faeb4af30f4f878050eca21e6f97df','0','2','0'), ('45901','18','','10595','Allocations terminal','nomad.client.allocations.terminal','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of allocations terminal.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','166aad9bafeb478abcd8c61ea1d0cc98','0','2','0'), ('45902','18','','10595','Allocations starting','nomad.client.allocations.start','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of allocations starting.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','3fcbebb8436d4dec8db6625e44520999','0','2','0'), ('45903','18','','10595','Allocations running','nomad.client.allocations.running','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of allocations running.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','6a4903e8bfa04f18a44813349ea6b33d','0','2','0'), ('45904','18','','10595','CPU total utilization','nomad.client.cpu.total','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Total CPU utilization.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','71eb3676049a4d60aa69ef3901005894','0','2','0'), ('45905','18','','10596','BoltDB page allocations, rate','nomad.server.raft.boltdb.txstats.page_alloc','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of page allocations.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','27a8a38acfc34e14b3fbb13aa58ad5d4','0','2','0'), ('45906','18','','10596','Raft commit logs enqueued','nomad.server.raft.commit_num_logs','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of logs enqueued.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','a994ee525886407486adace82ea5ef90','0','2','0'), ('45907','18','','10596','Logs dispatched','nomad.server.raft.leader.dispatch_num_logs','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of logs dispatched.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','f915e5e162814786943cd4cc85bb7aff','0','2','0'), ('45908','18','','10596','Dispatch log time','nomad.server.raft.leader.dispatch_log','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time elapsed to write log, mark in flight, and start replication.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','bda052f13e3c4dacaafc4ddefbc98036','0','2','0'), ('45909','18','','10596','Raft last index','nomad.server.raft.last_index','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Most recent index seen.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','bb65ca263f3244fc883d9102bbf9bef7','0','2','0'), ('45910','18','','10596','FSM register node time','nomad.server.raft.fsm.register_node','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time elapsed to apply RegisterNode raft entry.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','4e2d0557fc984ed9858316c8409edd0e','0','2','0'), ('45911','18','','10596','BoltDB open read transactions','nomad.server.raft.boltdb.open_read_txn','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of current open read transactions.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','08afe7430e3c49e388f0a87c8bbf2ff4','0','2','0'), ('45912','18','','10596','FSM enqueue time','nomad.server.raft.fsm.enqueue','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time elapsed to enqueue write to FSM.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','6846f262148e49288ecb7aa0ad18f7d2','0','2','0'), ('45913','18','','10596','FSM autopilot time','nomad.server.raft.fsm.autopilot','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time elapsed to apply Autopilot raft entry.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','18689de9474f4812ba9ed34d311ad3a1','0','2','0'), ('45914','18','','10596','FSM apply time','nomad.server.raft.fsm.apply','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time elapsed to apply write to FSM.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','09f1baf6fc2443f48e01814b939c0749','0','2','0'), ('45915','18','','10596','Raft commit time','nomad.server.raft.commit_time','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time elapsed to commit writes.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','3160d5b81e1540aab3244f1cf6bce95d','0','2','0'), ('45916','18','','10596','BoltDB read transactions, rate','nomad.server.raft.boltdb.total_read_txn','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of total read transactions.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','36e89e86c9124e868670e9cb7b247899','0','2','0'), ('45917','18','','10596','BoltDB pages in use','nomad.server.raft.boltdb.txstats.page_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of pages in use.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','14a5fc715dad4eacaddb2f277e1f85f6','0','2','0'), ('45918','18','','10596','BoltDB write time','nomad.server.raft.boltdb.txstats.write_time','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Sample of write operation times.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','e9b31f3434aa4df0908a79ff5352a29e','0','2','0'), ('45919','18','','10596','BoltDB write operations, rate','nomad.server.raft.boltdb.txstats.write','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of total write operations.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','b13b7b9eb66940c9bf4d14e711ee0279','0','2','0'), ('45920','18','','10596','BoltDB split operations, rate','nomad.server.raft.boltdb.txstats.split','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of total split operations.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','bd14547f789540618db85057eceb70db','0','2','0'), ('45921','18','','10596','BoltDB spill time','nomad.server.raft.boltdb.txstats.spill_time','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Sample of spill operation times.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','2ca3e7572bf04b04961107e7d9304887','0','2','0'), ('45922','18','','10596','BoltDB cursors','nomad.server.raft.boltdb.txstats.cursor_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of total database cursors.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','2733afd943b346e38c8605259bea038c','0','2','0'), ('45923','18','','10596','BoltDB nodes, rate','nomad.server.raft.boltdb.txstats.node_count','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of total database nodes.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','1641576e376c4c82a8b1882b4810db4c','0','2','0'), ('45924','18','','10596','BoltDB node dereferences, rate','nomad.server.raft.boltdb.txstats.node_deref','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of total database node dereferences.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','f0151f3431254030a3bcd538e8d2068b','0','2','0'), ('45925','18','','10596','BoltDB spill operations, rate','nomad.server.raft.boltdb.txstats.spill','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of total spill operations.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','621478ee2bea482abffd6b8c80df5ee1','0','2','0'), ('45926','18','','10596','BoltDB rebalance time','nomad.server.raft.boltdb.txstats.rebalance_time','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Sample of rebalance operation times.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','d270aa05d1ca4f3d9ee606937f1703cc','0','2','0'), ('45927','18','','10596','BoltDB rebalance operations, rate','nomad.server.raft.boltdb.txstats.rebalance','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of total rebalance operations.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','dd9729e812614ab59c595b7183a883b0','0','2','0'), ('45928','18','','10596','Leader last contact','nomad.server.raft.leader.lastContact','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time since last contact to leader. General indicator of Raft latency.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','7f9db272307c43e7b87b8a4a4a6eae16','0','2','0'), ('45929','18','','10596','RPC queries, rate','nomad.server.rpc.query','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of RPC queries.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','ec2d018e121442be9d3fb350f6572ca6','0','2','0'), ('45930','18','','10596','Raft transaction commit time','nomad.server.raft.replication.appendEntries','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Raft transaction commit time.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','36ff560da62740a0b4657b4afabcf902','0','2','0'), ('45931','18','','10596','Memberlist queries','nomad.server.serf.queue.queries','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of memberlist queries.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','1c5f383a89f74934a6cb211bfd586856','0','2','0'), ('45932','18','','10596','Worker update evaluation time','nomad.server.worker.update_eval','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time elapsed for worker to submit updated eval.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','f5cd72ca250f402f9ddd112fb858d1f7','0','2','0'), ('45933','18','','10596','Worker submit plan time','nomad.server.worker.submit_plan','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time elapsed for worker to submit plan.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','3c7b49c3f60e4d69981f6dd3569e49e6','0','2','0'), ('45934','18','','10596','Worker acknowledgement send time','nomad.server.worker.send_ack','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time elapsed for worker to send acknowledgement.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','c21aca97ba274913860b28a1fd06abec','0','2','0'), ('45935','18','','10596','Worker invoke scheduler time','nomad.server.worker.invoke_scheduler_service','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time elapsed for worker to invoke the scheduler.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','5bc2cf7713274e1ca8997415f26f7087','0','2','0'), ('45936','18','','10596','Worker evaluation dequeue time','nomad.server.worker.dequeue_eval','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time elapsed for worker to dequeue an eval.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','0875726948384b9696158d4db2b64691','0','2','0'), ('45937','18','','10596','Worker evaluation create time','nomad.server.worker.create_eval','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time elapsed for worker to create an eval.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','d1addab9628140b09adb60c2820c1829','0','2','0'), ('45938','18','','10596','Virtual memory size','nomad.server.virtual_memory_bytes','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Virtual memory size in bytes.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','d769576e16df4aed86004498055d5a94','0','2','0'), ('45939','18','','10596','Vault token TTL','nomad.server.vault.token_ttl','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time to live for Vault token.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','c619c340887b43e1a4db750e74f1d4aa','0','2','0'), ('45940','18','','10596','Vault token next renewal','nomad.server.vault.token_next_renewal','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time until next Vault token renewal attempt.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','f62d8cf1e4b94c9b8796bd30fa799f7a','0','2','0'), ('45941','18','','10596','Vault token last renewal','nomad.server.vault.token_last_renewal','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time since last successful Vault token renewal.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','40c41426ab96476c84647a18511af6e8','0','2','0'), ('45942','18','','10596','Vault tokens revoked','nomad.server.vault.distributed_tokens_revoked','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of revoked tokens.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','9593fe46e0d941f2b4ddef96baa39b0e','0','2','0'), ('45943','18','','10596','Snapshot index','nomad.server.state.snapshot.index','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Current snapshot index.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','e645f371b4ae48e2b2b782f4b0d0fae4','0','2','0'), ('45944','18','','10596','Memberlist changes','nomad.server.serf.queue.intent','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of memberlist changes.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','8aacc54e455b49b0ab0cfed4559829f7','0','2','0'), ('45945','18','','10596','Heartbeat fails','nomad.server.raft.transition.heartbeat_timeout','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of failing to heartbeat and starting election.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','662cd8712bbe4a4080a540f878b4ec44','0','2','0'), ('45946','18','','10596','Memberlist events','nomad.server.serf.queue.event','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of memberlist events received.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','8293b40a695b4b24ab9b6576a0f9a4d8','0','2','0'), ('45947','18','','10596','Allocation reschedule attempts','nomad.server.scheduler.allocs.rescheduled.attempted','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of attempts to reschedule an allocation.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','c7f327a390884c928ebf228d8ebb3a4c','0','2','0'), ('45948','18','','10596','GC runs','nomad.server.runtime.total_gc_runs','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of go runtime GC runs.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','733b18dd02d7404bb8cf4c7447a374ae','0','2','0'), ('45949','18','','10596','GC metadata size','nomad.server.runtime.sys_bytes','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Go runtime GC metadata size in bytes.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','71256d39cf844c22be8d25a9170e61f2','0','2','0'), ('45950','18','','10596','Goroutines','nomad.server.runtime.num_goroutines','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of goroutines and general load pressure indicator.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','9b1bcd0020b5413e920ce12af6124687','0','2','0'), ('45951','18','','10596','Heap objects','nomad.server.runtime.heap_objects','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of objects on the heap. General memory pressure indicator.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','c3fc612a6bec45ee9ffd51d168801974','0','2','0'), ('45952','18','','10596','GC pause time','nomad.server.runtime.gc_pause_ns','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Go runtime GC pause times.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','02b0699a706742d1bb557e32ed1b52ea','0','2','0'), ('45953','18','','10596','Objects freed, rate','nomad.server.runtime.free_count','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of objects freed from heap by go runtime GC.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','7d8883065c2c494f9c4853afe50d157c','0','2','0'), ('45954','18','','10596','Memory used','nomad.server.runtime.alloc_bytes','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Memory utilization in bytes.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','a0e7b48174de4e569762dc1654d63267','0','2','0'), ('45955','18','','10596','RPC error requests, rate','nomad.server.rpc.request_error','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of RPC requests being handled that result in an error.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','0ef3cfaf0e694625bbc3f3a117ff9f06','0','2','0'), ('45956','18','','10596','RPC requests, rate','nomad.server.rpc.request','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of RPC requests being handled.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','406d9bc9db1e44509a77acd11963f406','0','2','0'), ('45957','18','','10596','BoltDB free pages','nomad.server.raft.boltdb.num_free_pages','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of BoltDB free pages.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','e3d0d6f656f5484f8e8a8ca1195aad59','0','2','0'), ('45958','18','','10596','Resident memory size','nomad.server.resident_memory_bytes','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Resident memory size in bytes.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','3dae4fd461fa4a5abdba717e538b8405','0','2','0'), ('45959','18','','10596','BoltDB pending pages','nomad.server.raft.boltdb.num_pending_pages','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of BoltDB pending pages.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','73f359bcb02d46a0adb6fdd51284afcf','0','2','0'), ('45960','18','','10596','Raft calls blocked, rate','nomad.server.raft.barrier','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of blocking raft API calls.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','804693ed989b44e3903bcd81159dd51d','0','2','0'), ('45961','18','','10596','BoltDB free page bytes','nomad.server.raft.boltdb.free_page_bytes','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of free page bytes.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','b3f246d0991746589f4d0d68653eb4e9','0','2','0'), ('45962','18','','10596','System evaluations unacknowledged','nomad.server.broker.system_unacked','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of unacknowledged system evals.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','3faaaa69672c4b999a12f054dbd8b980','0','2','0'), ('45963','18','','10596','FSM apply plan results time','nomad.server.fsm.apply_plan_results','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time elapsed to apply ApplyPlanResults raft entry.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','b9085e173cec4ce2b2fa6fd68041695e','0','2','0'), ('45964','18','','10596','RPC evaluation acknowledgement time','nomad.server.eval.ack','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time elapsed for Eval.Ack RPC call.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','7241c9923d714970ad950f9b7aa8ab52','0','2','0'), ('45965','18','','10596','CPU time, rate','nomad.server.cpu.time','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Total user and system CPU time spent in seconds.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','c5bd6a645e9f49ba83fe065b2af6248e','0','2','0'), ('45966','18','','10596','RPC update status time','nomad.server.client.update_status','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time elapsed for Node.UpdateStatus RPC call.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','1e1ce033c99b45a3892df8674deaf1f4','0','2','0'), ('45967','18','','10596','RPC update allocations time','nomad.server.client.update_alloc','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time elapsed for Node.UpdateAlloc RPC call.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','588bb9b304634852af149d7903d42798','0','2','0'), ('45968','18','','10596','RPC list time','nomad.server.client.list','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time elapsed for Node.List RPC call.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','758f3474636c42378fac78a2f5e3b63b','0','2','0'), ('45969','18','','10596','RPC get client allocs time','nomad.server.client.get_client_allocs','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time elapsed for Node.GetClientAllocs RPC call.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','ac2a5b69fef546d0924d631a9ed9cffd','0','2','0'), ('45970','18','','10596','RPC eval dequeue time','nomad.server.client.dequeue','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time elapsed for Eval.Dequeue RPC call.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','de3e13f7635e4058bd2ca12f6f454668','0','2','0'), ('45971','18','','10596','Evaluations waiting','nomad.server.broker.total_waiting','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of evals waiting to be enqueued.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','ac1d1422adc248b48ba65268f9a43be8','0','2','0'), ('45972','18','','10596','Evaluations unacked','nomad.server.broker.total_unacked','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Evaluations dispatched for processing but incomplete.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','d57805e0d8a24117bb64992a9aeb3dc3','0','2','0'), ('45973','18','','10596','Evaluations ready','nomad.server.broker.total_ready','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of evaluations ready to be processed.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','01e11850732a46709942c225d294a8ef','0','2','0'), ('45974','18','','10596','Evaluations pending','nomad.server.broker.total_pending','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Evaluations that are pending until an existing evaluation for the same job completes.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','2e556f5894c9492a80b34c84ceb69dba','0','2','0'), ('45975','18','','10596','System evaluations ready to schedule','nomad.server.broker.system_ready','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of service evals ready to be scheduled.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','2a38602920224c31a221696cf65c6abc','0','2','0'), ('45976','18','','10596','FSM update evaluation time','nomad.server.fsm.update_eval','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time elapsed to apply UpdateEval raft entry.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','2d0b9f09bfb5480ebd6d6cf96c15278e','0','2','0'), ('45977','18','','10596','Services unacknowledged','nomad.server.broker.service_unacked','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of unacknowledged service evals.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','0da8881c8ddf4cd18e04b38201b83b7d','0','2','0'), ('45978','18','','10596','Services ready to schedule','nomad.server.broker.service_ready','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of service evals ready to be scheduled.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','7df3a4b80f6b44c6a03b672182d3f73f','0','2','0'), ('45979','18','','10596','Evaluations enqueue time','nomad.server.broker.eval_waiting','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Average time elapsed with evaluations waiting to be enqueued.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','54ddea6f2fa04e6c8ceb456d4d67c530','0','2','0'), ('45980','18','','10596','Evaluations blocked due to quota limit','nomad.server.blocked_evals.total_quota_limit','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of blocked evals due to quota limits (the resources for these jobs are not counted in other blocked_evals metrics, except for total_blocked).','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','356dec0f5d5b45d981db4b590ef7dd73','0','2','0'), ('45981','18','','10596','Evaluations escaped','nomad.server.blocked_evals.total_escaped','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of evals that have escaped computed node classes. This indicates a scheduler optimization was skipped and is not usually a source of concern.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','80f5edf18daf407ba6b64374084a555b','0','2','0'), ('45982','18','','10596','Evaluations blocked','nomad.server.blocked_evals.total_blocked','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of evals in the blocked state for any reason (cluster resource exhaustion or quota limits).','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','474d05060b0d4a608f6a2d319235af91','0','2','0'), ('45983','18','','10596','Memory shares by blocked evaluations','nomad.server.blocked_evals.memory','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Amount of memory requested by blocked evals.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','5460a81df8174fb5a7596b4243162d05','0','2','0'), ('45984','18','','10596','Memory shares for blocked job evaluations','nomad.server.blocked_evals.job.memory','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Amount of memory requested by blocked evals of a job.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','2f07cbd6ec11449cae787a6e84fa5fbf','0','2','0'), ('45985','18','','10596','CPU shares for blocked job evaluations','nomad.server.blocked_evals.job.cpu','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Amount of CPU shares requested by blocked evals of a job.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','d7fe536b4d0445328dfbf3b1188bea70','0','2','0'), ('45986','18','','10596','CPU shares for blocked evaluations','nomad.server.blocked_evals.cpu','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Amount of CPU shares requested by blocked evals.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','ace31f3772fe4ffe84741554e3fba8bc','0','2','0'), ('45987','18','','10596','Autopilot state','nomad.server.autopilot.state','0','31d','365d','0','3','','','','',NULL,'1121','','','0','','','','','0',NULL,'Current autopilot state.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','05ce375320dd402ab6c75f8fffba74cb','0','2','0'), ('45988','18','','10596','Autopilot failure tolerance','nomad.server.autopilot.failure_tolerance','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of redundant healthy servers that can fail without causing an outage.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','22947f9cc2734f95997a55d9e6392b77','0','2','0'), ('45989','18','','10596','FSM allocation client update time','nomad.server.alloc_client_update','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time elapsed to apply AllocClientUpdate raft entry.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','6ad163ebdefa4f5aa1e3712b7ddac7a7','0','2','0'), ('45990','18','','10596','FSM job registration time','nomad.server.fsm.register_job','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time elapsed to apply RegisterJob raft entry.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','62b19ce1b2bb4fdaacff02d70101a10f','0','2','0'), ('45991','18','','10596','Heartbeats active','nomad.server.heartbeat.active','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of active heartbeat timers. Each timer represents a Nomad client connection.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','0abce7a087874e58a7da20acb3599535','0','2','0'), ('45992','18','','10596','BoltDB freelist bytes','nomad.server.raft.boltdb.freelist_bytes','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of freelist bytes.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','f7d1bc6c6a82475dabcdaaec7472fe02','0','2','0'), ('45993','18','','10596','Total reconcile time','nomad.server.leader.reconcile','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time elapsed to reconcile all serf peers with state store.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','8425336f75704a259bc066c795df1516','0','2','0'), ('45994','18','','10596','Raft transactions, rate','nomad.server.raft.apply','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of Raft transactions.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','bad74d0dc4b2431fbb5a442bc2fc1236','0','2','0'), ('45995','18','','10596','FSM index','nomad.server.raft.applied_index','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Current index applied to FSM.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','1dd455d2776f4378a39980cfa8eba33c','0','2','0'), ('45996','18','','10596','Open file descriptors','nomad.server.process_open_fds','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of open file descriptors.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','cba898eca0c84a84a1ea0309e04b9f84','0','2','0'), ('45997','18','','10596','Open file descriptors, max','nomad.server.process_max_fds','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Maximum number of open file descriptors.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','505ee2804b4e451892103b36cc38abde','0','2','0'), ('45998','18','','10596','Plan raft index processing time','nomad.server.plan.wait_for_index','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time elapsed that planner waits for the raft index of the plan to be processed.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','851eea2a548644ba884ca852c2759d90','0','2','0'), ('45999','18','','10596','RPC plan submit time','nomad.server.plan.submit','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time elapsed for Plan.Submit RPC call.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','9df85708b74d40509d9c9412a15e5ce5','0','2','0'), ('46000','18','','10596','Plan queue','nomad.server.plan.queue_depth','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Count of evals in the plan queue.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','ee7b59fd19644bc4813696f8d806955f','0','2','0'), ('46001','18','','10596','Plan evaluate time','nomad.server.plan.evaluate','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time elapsed to evaluate a plan.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','d8d69f231d23457e82c6d3941f09cf5d','0','2','0'), ('46002','18','','10596','Plan apply time','nomad.server.plan.apply','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time elapsed to apply a plan.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','dd8d8b5cdf914002ac58183b667ceb06','0','2','0'), ('46003','18','','10596','Namespace list time','nomad.server.namespace.list_namespace','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time elapsed for Namespace.ListNamespaces.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','8a003df55bae4bf0a14fefc6f02f28bf','0','2','0'), ('46004','18','','10596','Gossip time','nomad.server.memberlist.gossip','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time elapsed to broadcast gossip messages.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','af6eda309cc545b2aa65efc0af103a02','0','2','0'), ('46005','18','','10596','Reconcile peer time','nomad.server.leader.reconcile_member','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time elapsed to reconcile a serf peer with state store.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','a5b6d36142174dd683e2aec5dd4ee1e9','0','2','0'), ('46006','18','','10596','Leader barrier time','nomad.server.leader.barrier','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time elapsed to establish a raft barrier during leader transition.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','478f45d1095646bca5ffd3a6d923dddf','0','2','0'), ('46007','18','','10596','RPC job allocations time','nomad.server.job.allocations','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time elapsed for Job.Allocations RPC call.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','dc95deb3590148a9bc50ea151a0d46b7','0','2','0'), ('46008','18','','10596','Job allocations unknown','nomad.server.job_summary.unknown','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of unknown allocations for a job.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','244a84e136c94a47b1b64b92d08ac20f','0','2','0'), ('46009','18','','10596','Job allocations starting','nomad.server.job_summary.starting','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of starting allocations for a job.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','e3cc96bd72924bb5bd0334018a5a88be','0','2','0'), ('46010','18','','10596','Job allocations running','nomad.server.job_summary.running','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of running allocations for a job.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','98ab06dce1f84ef5993e8cc793114008','0','2','0'), ('46011','18','','10596','Job allocations queued','nomad.server.job_summary.queued','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of queued allocations for a job.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','d0de68553b484d2d9311b356a7b5a9e7','0','2','0'), ('46012','18','','10596','Job allocations lost','nomad.server.job_summary.lost','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of lost allocations for a job.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','0c408dff86604486b0f23efed00f4348','0','2','0'), ('46013','18','','10596','RPC job summary time','nomad.server.job_summary.get_job_summary','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time elapsed for Job.Summary RPC call.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','7a267a1b82b24157a19b52e6f285f0ce','0','2','0'), ('46014','18','','10596','Job allocations failed','nomad.server.job_summary.failed','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of failed allocations for a job.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','6f6ad9a70b4e4759bc2e4cc213d697bb','0','2','0'), ('46015','18','','10596','Job allocations completed','nomad.server.job_summary.complete','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of complete allocations for a job.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','4be8c941477046dd9dcc549020d687e7','0','2','0'), ('46016','18','','10596','Jobs running','nomad.server.job_status.running','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of running jobs.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','97907d8816b14fb69063a55bdea22701','0','2','0'), ('46017','18','','10596','Jobs pending','nomad.server.job_status.pending','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of pending jobs.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','39a27315e33549dc88c6cb426a5a05c9','0','2','0'), ('46018','18','','10596','Jobs dead','nomad.server.job_status.dead','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of dead jobs.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','5ab3191f1f744682bab6d3142a1c39a4','0','2','0'), ('46019','18','','10596','RPC get job time','nomad.server.job.get_job','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time elapsed for Job.GetJob RPC call.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','0efaac3a59d44ce09d31435ddfa6aada','0','2','0'), ('46020','18','','10596','RPC job evaluations time','nomad.server.job.evaluations','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time elapsed for Job.Evaluations RPC call.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','11e18e811fe7461181417ca1f5dad915','0','2','0'), ('46021','18','','10596','Worker log replication time','nomad.server.worker.wait_for_index','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Time elapsed that worker waits for the raft index of the eval to be processed.','0','30d','0','','45878','','','','','200','1','0','','','0','0','0','0','0','0','0','ae2e69196ef7416481e9904d9ee8862b','0','2','0'), ('46025','18','','10595','Physical disks discovery','nomad.client.disk.discovery','0','90d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Physical disks discovery.','0','7d','1','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','e2955bd147ed43cb894f0981c6eb3985','0','2','0'), ('46029','18','','10595','Job ["{#JOB.NAME}"] CPU allocated','nomad.client.allocs.cpu.allocated["{#JOB.NAME}","{#JOB.TASK.GROUP}","{#JOB.NAMESPACE}"]','0','31d','365d','0','0','','!Mhz','','',NULL,NULL,'','','0','','','','','2',NULL,'Total CPU resources allocated by the ["{#JOB.NAME}"] job across all cores.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','ba9e5a022dbc4f7aa28a1db2ef6d73bb','0','2','0'), ('46030','18','','10595','Job ["{#JOB.NAME}"] CPU system utilization','nomad.client.allocs.cpu.system["{#JOB.NAME}","{#JOB.TASK.GROUP}","{#JOB.NAMESPACE}"]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Total CPU resources consumed by the ["{#JOB.NAME}"] job in system space.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','85daa0ce6d4f41ab83a3a65ceb8359a9','0','2','0'), ('46031','18','','10595','Job ["{#JOB.NAME}"] CPU throttled periods time','nomad.client.allocs.cpu.throttled_periods["{#JOB.NAME}","{#JOB.TASK.GROUP}","{#JOB.NAMESPACE}"]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of CPU periods that the ["{#JOB.NAME}"] job was throttled.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','d5ec55f8d9a74c99924a01acb206295e','0','2','0'), ('46032','18','','10595','Job ["{#JOB.NAME}"] CPU throttled time','nomad.client.allocs.cpu.throttled_time["{#JOB.NAME}","{#JOB.TASK.GROUP}","{#JOB.NAMESPACE}"]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Total time that the ["{#JOB.NAME}"] job was throttled.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','3122f6d0c1b24ea7bac7a3af4fc00fb2','0','2','0'), ('46033','18','','10595','Job ["{#JOB.NAME}"] CPU total utilization','nomad.client.allocs.cpu.total_percent["{#JOB.NAME}","{#JOB.TASK.GROUP}","{#JOB.NAMESPACE}"]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Total CPU resources consumed by the ["{#JOB.NAME}"] job across all cores.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','5ff1ea02768243f4971339bf70f89772','0','2','0'), ('46034','18','','10595','Job ["{#JOB.NAME}"] CPU ticks','nomad.client.allocs.cpu.total_ticks["{#JOB.NAME}","{#JOB.TASK.GROUP}","{#JOB.NAMESPACE}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'CPU ticks consumed by the process for the ["{#JOB.NAME}"] job in the last collection interval.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','14179529be9d47bc898a5330ff37a9c5','0','2','0'), ('46035','18','','10595','Job ["{#JOB.NAME}"] CPU user utilization','nomad.client.allocs.cpu.user["{#JOB.NAME}","{#JOB.TASK.GROUP}","{#JOB.NAMESPACE}"]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Total CPU resources consumed by the ["{#JOB.NAME}"] job in user space.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','9fb3e3b461874e86aee9483d5af65535','0','2','0'), ('46036','18','','10595','Job ["{#JOB.NAME}"] Memory allocated','nomad.client.allocs.memory.allocated["{#JOB.NAME}","{#JOB.TASK.GROUP}","{#JOB.NAMESPACE}"]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Amount of memory allocated by the ["{#JOB.NAME}"] job.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','c353af0be02b47faa27036dfdd173176','0','2','0'), ('46037','18','','10595','Job ["{#JOB.NAME}"] Memory cached','nomad.client.allocs.memory.cache["{#JOB.NAME}","{#JOB.TASK.GROUP}","{#JOB.NAMESPACE}"]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Amount of memory cached by the ["{#JOB.NAME}"] job.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','7bd7a486864b4d0f82242676da2370ed','0','2','0'), ('46038','18','','10595','Job ["{#JOB.NAME}"] Memory swapped','nomad.client.allocs.memory.swap["{#JOB.NAME}","{#JOB.TASK.GROUP}","{#JOB.NAMESPACE}"]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Amount of memory swapped by the ["{#JOB.NAME}"] job.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','b1419d5017cf4f8ba23e8c774c451772','0','2','0'), ('46039','18','','10595','Job ["{#JOB.NAME}"] Memory used','nomad.client.allocs.memory.usage["{#JOB.NAME}","{#JOB.TASK.GROUP}","{#JOB.NAMESPACE}"]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total amount of memory used by the ["{#JOB.NAME}"] job.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','09ba4987f69c496ebeab3fb08f4b499b','0','2','0'), ('46040','18','','10595','Disk ["{#DEV.NAME}"] space available','nomad.client.disk.available["{#DEV.NAME}"]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Amount of space which is available on ["{#DEV.NAME}"] disk.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','4a79c99027494bb98b474e6f81db5e18','0','2','0'), ('46041','18','','10595','Disk ["{#DEV.NAME}"] inodes utilization','nomad.client.disk.inodes_percent["{#DEV.NAME}"]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Disk space consumed by the inodes on ["{#DEV.NAME}"] disk.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','21043b0ed4424e3086a00a567d134d45','0','2','0'), ('46042','18','','10595','Disk ["{#DEV.NAME}"] size','nomad.client.disk.size["{#DEV.NAME}"]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total size of the ["{#DEV.NAME}"] device.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','4358e8accdd0400496b491cda7edc909','0','2','0'), ('46043','18','','10595','Disk ["{#DEV.NAME}"] space used','nomad.client.disk.used["{#DEV.NAME}"]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Amount of disk ["{#DEV.NAME}"] space which has been used.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','778f4609e236434d8b216b62bfebf885','0','2','0'), ('46044','18','','10595','Disk ["{#DEV.NAME}"] space utilization','nomad.client.disk.used_percent["{#DEV.NAME}"]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Percentage of disk ["{#DEV.NAME}"] space used.','0','30d','0','','45869','','','','','200','1','0','','','0','0','0','0','0','0','0','aec5d7147bd64f508e793d7539a8524b','0','2','0'), ('46173','18','','10603','FW Policy [{#FWNAME}]: Action','fgate.fwp.action[{#FWUUID}]','0','31d','365d','0','3','','','','',NULL,'1130','','','0','','','','','2',NULL,'The firewall policy action (accept / deny / ipsec).','0','30d','0','','46168','','','','','200','1','0','','','0','0','0','0','0','0','0','19b27ab621a1417f86ddbd52d93f6c55','0','2','0'), ('46174','18','','10603','FW Policy [{#FWNAME}]: Total bytes processed','fgate.fwp.bytes[{#FWUUID}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bytes processed by both the software and hardware (ASIC) firewall.','0','30d','0','','46168','','','','','200','1','0','','','0','0','0','0','0','0','0','61bf8afdf8f04c9197077978706b1adc','0','2','0'), ('46175','18','','10603','FW Policy [{#FWNAME}]: Hits into the policy','fgate.fwp.hits[{#FWUUID}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of packets hit into the firewall policy per second.','0','30d','0','','46168','','','','','200','1','0','','','0','0','0','0','0','0','0','cae79524205c491990b967035ca4e753','0','2','0'), ('46176','18','','10603','FW Policy [{#FWNAME}]: Hardware processed bytes','fgate.fwp.hw_bytes[{#FWUUID}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bytes processed only by the hardware (ASIC) firewall.','0','30d','0','','46168','','','','','200','1','0','','','0','0','0','0','0','0','0','333596806faf457b9dfcb90a8c11bd25','0','2','0'), ('46177','18','','10603','FW Policy [{#FWNAME}]: Last using time','fgate.fwp.last_used[{#FWUUID}]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'The time at which the firewall policy was used the last time.','0','30d','0','','46168','','','','','200','1','0','','','0','0','0','0','0','0','0','5b5c10ff4c8a4e47a550d1c0563e78e1','0','2','0'), ('46178','18','','10603','FW Policy [{#FWNAME}]: Active sessions','fgate.fwp.sessions[{#FWUUID}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of active sessions covered by this rule.','0','30d','0','','46168','','','','','200','1','0','','','0','0','0','0','0','0','0','1255b5df630b4af782cd00d59cb49fe0','0','2','0'), ('46179','18','','10603','FW Policy [{#FWNAME}]: Status','fgate.fwp.status[{#FWUUID}]','0','31d','365d','0','3','','','','',NULL,'1131','','','0','','','','','2',NULL,'The firewall policy status.','0','30d','0','','46168','','','','','200','1','0','','','0','0','0','0','0','0','0','3cedbb09e06547e682843679811a6a40','0','2','0'), ('46180','18','','10603','FW Policy [{#FWNAME}]: Software processed bytes','fgate.fwp.sw_bytes[{#FWUUID}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bytes processed only by the software firewall.','0','30d','0','','46168','','','','','200','1','0','','','0','0','0','0','0','0','0','838a630bc233403f9be41dd079a52b67','0','2','0'), ('46181','18','','10603','Interface [{#IFNAME}({#IFALIAS})]: Bits received','fgate.netif.in[{#IFKEY}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of octets received on the interface per second.','0','30d','0','','46169','','','','','200','1','0','','','0','0','0','0','0','0','0','76c143854ca8400ea0af95debdc8f8d9','0','2','0'), ('46182','18','','10603','Interface [{#IFNAME}({#IFALIAS})]: Inbound packets with errors','fgate.netif.in_errors[{#IFKEY}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of errors received.','0','30d','0','','46169','','','','','200','1','0','','','0','0','0','0','0','0','0','ef7ce50437034277bcc33af137d87e1b','0','2','0'), ('46183','18','','10603','Interface [{#IFNAME}({#IFALIAS})]: Inbound packets','fgate.netif.in_packets[{#IFKEY}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of packets received on the interface per second.','0','30d','0','','46169','','','','','200','1','0','','','0','0','0','0','0','0','0','75bd8c58c1f94a2aaaca0afdc8ebc1eb','0','2','0'), ('46184','18','','10603','Interface [{#IFNAME}({#IFALIAS})]: Bits sent','fgate.netif.out[{#IFKEY}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of octets transmitted out of the interface.','0','30d','0','','46169','','','','','200','1','0','','','0','0','0','0','0','0','0','479786a0a0414a609ce7fffbc51519ec','0','2','0'), ('46185','18','','10603','Interface [{#IFNAME}({#IFALIAS})]: Outbound packets with errors','fgate.netif.out_errors[{#IFKEY}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of errors transmitted.','0','30d','0','','46169','','','','','200','1','0','','','0','0','0','0','0','0','0','bfab84d969614ef0945ca9ff54d8ea27','0','2','0'), ('46186','18','','10603','Interface [{#IFNAME}({#IFALIAS})]: Outbound packets','fgate.netif.out_packets[{#IFKEY}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total number of packets transmitted out of the interface per second.','0','30d','0','','46169','','','','','200','1','0','','','0','0','0','0','0','0','0','8520c14ac47246c896d068f5be80f4b0','0','2','0'), ('46187','18','','10603','Interface [{#IFNAME}({#IFALIAS})]: Speed','fgate.netif.speed[{#IFKEY}]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Speed of the interface.','0','30d','0','','46169','','','','','200','1','0','','','0','0','0','0','0','0','0','0912c8f0928242df905c43d2320d0004','0','2','0'), ('46188','18','','10603','Interface [{#IFNAME}({#IFALIAS})]: Link status','fgate.netif.status[{#IFKEY}]','0','31d','365d','0','3','','','','',NULL,'1135','','','0','','','','','2',NULL,'Current link status of the interface.','0','30d','0','','46169','','','','','200','1','0','','','0','0','0','0','0','0','0','e0dbfeb62ad14260a299263be8db631c','0','2','0'), ('46189','18','','10603','Interface [{#IFNAME}({#IFALIAS})]: Interface type','fgate.netif.type[{#IFKEY}]','0','31d','365d','0','3','','','','',NULL,'1133','','','0','','','','','2',NULL,'Type of the interface.','0','30d','0','','46169','','','','','200','1','0','','','0','0','0','0','0','0','0','ffba364bc78c446bb57f6673b7b6d255','0','2','0'), ('46190','18','','10603','SD-WAN [{#NAME}]:[{#IFNAME}]: Jitter','fgate.sdwan_health.jitter["{#HID}.{#MID}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current jitter value for the {#IFNAME} interface in the {#NAME} health-check.','0','30d','0','','46170','','','','','200','1','0','','','0','0','0','0','0','0','0','29802e18613a4f83a93b68e2aec72d6a','0','2','0'), ('46191','18','','10603','SD-WAN [{#NAME}]:[{#IFNAME}]: Latency','fgate.sdwan_health.latency["{#HID}.{#MID}"]','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'Current latency value for the {#IFNAME} interface in the {#NAME} health-check.','0','30d','0','','46170','','','','','200','1','0','','','0','0','0','0','0','0','0','207b0b20629a4e4f89980c468b32d6af','0','2','0'), ('46192','18','','10603','SD-WAN [{#NAME}]:[{#IFNAME}]: Packets loss','fgate.sdwan_health.loss["{#HID}.{#MID}"]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Percent of lost packets for the {#IFNAME} interface in the {#NAME} health-check.','0','30d','0','','46170','','','','','200','1','0','','','0','0','0','0','0','0','0','02dee727fc0347f58266fb64646bd28f','0','2','0'), ('46193','18','','10603','SD-WAN [{#NAME}]:[{#IFNAME}]: Packets received per second','fgate.sdwan_health.received["{#HID}.{#MID}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of packets received from the {#IFNAME} interface in the {#NAME} health-check per second.','0','30d','0','','46170','','','','','200','1','0','','','0','0','0','0','0','0','0','b2eaa836c991459bab433edb2d27a968','0','2','0'), ('46194','18','','10603','SD-WAN [{#NAME}]:[{#IFNAME}]: Packets sent per second','fgate.sdwan_health.sent["{#HID}.{#MID}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of packets sent through the {#IFNAME} interface in the {#NAME} health-check per second.','0','30d','0','','46170','','','','','200','1','0','','','0','0','0','0','0','0','0','988c9785e5924a118efae469cf8ea017','0','2','0'), ('46195','18','','10603','SD-WAN [{#NAME}]:[{#IFNAME}]: Interface status','fgate.sdwan_health.status["{#HID}.{#MID}"]','0','31d','365d','0','3','','','','',NULL,'1132','','','0','','','','','2',NULL,'Current status of the {#IFNAME} interface in the {#NAME} health-check.','0','30d','0','','46170','','','','','200','1','0','','','0','0','0','0','0','0','0','7ccc2ede10064b28877cd7ba9eba64b2','0','2','0'), ('46196','18','','10603','SD-WAN [{#ZONE}]:[{#NAME}]: Link status','fgate.sdwan_member.link_status[{#ID}]','0','31d','365d','0','3','','','','',NULL,'1132','','','0','','','','','2',NULL,'Current link status of the {#NAME} interface in the {#ZONE} zone.','0','30d','0','','46171','','','','','200','1','0','','','0','0','0','0','0','0','0','937daa113f7d4d4d886cecdf0d5166b8','0','2','0'), ('46197','18','','10603','SD-WAN [{#ZONE}]:[{#NAME}]: Input bandwidth','fgate.sdwan_member.rx_bandwidth[{#ID}]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Receiving bandwidth of the {#NAME} interface in the {#ZONE} zone.','0','30d','0','','46171','','','','','200','1','0','','','0','0','0','0','0','0','0','3fcdcefd280d4b9db61624e82df66871','0','2','0'), ('46198','18','','10603','SD-WAN [{#ZONE}]:[{#NAME}]: Bytes received per second','fgate.sdwan_member.rx_bytes[{#ID}]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Bytes received from the {#NAME} interface in the {#ZONE} zone per second.','0','30d','0','','46171','','','','','200','1','0','','','0','0','0','0','0','0','0','becb1fc1c07540d69490b08efc60847b','0','2','0'), ('46199','18','','10603','SD-WAN [{#ZONE}]:[{#NAME}]: Sessions','fgate.sdwan_member.sessions[{#ID}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of active sessions opened through the {#NAME} interface in the {#ZONE} zone.','0','30d','0','','46171','','','','','200','1','0','','','0','0','0','0','0','0','0','9b8c8717665c47de96af38b75ebca3fc','0','2','0'), ('46200','18','','10603','SD-WAN [{#ZONE}]:[{#NAME}]: Member status','fgate.sdwan_member.status[{#ID}]','0','31d','365d','0','3','','','','',NULL,'1137','','','0','','','','','2',NULL,'Current status of the {#NAME} interface in the {#ZONE} zone.','0','30d','0','','46171','','','','','200','1','0','','','0','0','0','0','0','0','0','86ee2100e0f349cf809afa171c6b985a','0','2','0'), ('46201','18','','10603','SD-WAN [{#ZONE}]:[{#NAME}]: Output bandwidth','fgate.sdwan_member.tx_bandwidth[{#ID}]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Transmitting bandwidth of the {#NAME} interface in the {#ZONE} zone.','0','30d','0','','46171','','','','','200','1','0','','','0','0','0','0','0','0','0','c5a29cbdfc1949d18b5b8490ba2230a9','0','2','0'), ('46202','18','','10603','SD-WAN [{#ZONE}]:[{#NAME}]: Bytes sent per second','fgate.sdwan_member.tx_bytes[{#ID}]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Bytes sent through the {#NAME} interface in the {#ZONE} zone per second.','0','30d','0','','46171','','','','','200','1','0','','','0','0','0','0','0','0','0','c4e0c5747eee460b9a29d0d43d63e974','0','2','0'), ('46203','18','','10603','SD-WAN [{#ZONE}]:[{#NAME}]: State changing time','fgate.service.state_changed[{#ID}]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Last state changing time of the {#NAME} interface in the {#ZONE} zone.','0','30d','0','','46171','','','','','200','1','0','','','0','0','0','0','0','0','0','908d970054e14c30aa0b33205f2a5ea8','0','2','0'), ('46204','18','','10603','Service [{#NAME}]: Expiration date','fgate.service.expire["{#KEY}"]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Expiration date for the license of the current service.','0','30d','0','','46172','','','','','200','1','0','','','0','0','0','0','0','0','0','c759d226d28143da977879550e913d5e','0','2','0'), ('46205','18','','10603','Service [{#NAME}]: License status','fgate.service.license["{#KEY}"]','0','31d','365d','0','3','','','','',NULL,'1134','','','0','','','','','2',NULL,'Current license status of the {#NAME} service.','0','30d','0','','46172','','','','','200','1','0','','','0','0','0','0','0','0','0','d2e2c614e1dd428caa251b77d9a24f9a','0','2','0'), ('46206','18','','10603','Service [{#NAME}]: Service type','fgate.service.type["{#KEY}"]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current type of the {#NAME} service.','0','30d','0','','46172','','','','','200','1','0','','','0','0','0','0','0','0','0','89eb7360f2f846aabca21c63a05866ca','0','2','0'), ('46207','18','','10603','Service [{#NAME}]: Last attempt to update','fgate.service.update_attempt["{#KEY}"]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Last update attempt time of the current service.','0','30d','0','','46172','','','','','200','1','0','','','0','0','0','0','0','0','0','160afd9220c9445f943142e356253626','0','2','0'), ('46208','18','','10603','Service [{#NAME}]: Update method','fgate.service.update_method["{#KEY}"]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current update method of the {#NAME} service.','0','30d','0','','46172','','','','','200','1','0','','','0','0','0','0','0','0','0','9abd3d1e858b413bb84c76a77fb0764b','0','2','0'), ('46209','18','','10603','Service [{#NAME}]: Update result','fgate.service.update_result["{#KEY}"]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Last update result of the {#NAME} service.','0','30d','0','','46172','','','','','200','1','0','','','0','0','0','0','0','0','0','a19764a51d4941bd877a24accac2b8b3','0','2','0'), ('46210','18','','10603','Service [{#NAME}]: Last update time','fgate.service.update_time["{#KEY}"]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Last update time of the current service.','0','30d','0','','46172','','','','','200','1','0','','','0','0','0','0','0','0','0','d31db33d6ca34264a7480dacee235081','0','2','0'), ('46211','18','','10603','Service [{#NAME}]: Service version','fgate.service.version["{#KEY}"]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Current version of the {#NAME} service.','0','30d','0','','46172','','','','','200','1','0','','','0','0','0','0','0','0','0','5f395038deb643ed83823695c4475d9e','0','2','0'), ('46278','18','','10548','License [{#LICENSE.ID}]: activation date','meraki.license.activation.date[{#LICENSE.ID}]','0','31d','365d','0','0','','unixtime','','',NULL,'1143','','','0','','','','','2',NULL,'The date the license started burning.','0','30d','0','','46268','','','','','200','1','0','','','0','0','0','0','0','0','0','87672962b9e14e69ad63f4d790fd11ad','0','2','0'), ('46279','18','','10548','License [{#LICENSE.ID}]: device name','meraki.license.device.name[{#LICENSE.ID}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Name of the device the license is assigned to.','0','30d','0','','46268','','','','','200','1','0','','','0','0','0','0','0','0','0','dd9c1d50a4cc448e82affb7de442af8e','0','2','0'), ('46280','18','','10548','License [{#LICENSE.ID}]: device serial','meraki.license.device.serial[{#LICENSE.ID}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Serial number of the device the license is assigned to.','0','30d','0','','46268','','','','','200','1','0','','','0','0','0','0','0','0','0','dc550872241f49ab930aa9bc34614308','0','2','0'), ('46281','18','','10548','License [{#LICENSE.ID}]: expiration date','meraki.license.expiration.date[{#LICENSE.ID}]','0','31d','365d','0','0','','unixtime','','',NULL,'1143','','','0','','','','','2',NULL,'The date the license will expire.','0','30d','0','','46268','','','','','200','1','0','','','0','0','0','0','0','0','0','d8504a68e79344228c612b6afc362cde','0','2','0'), ('46282','18','','10548','License [{#LICENSE.ID}]: key','meraki.license.key[{#LICENSE.ID}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'License key.','0','30d','0','','46268','','','','','200','1','0','','','0','0','0','0','0','0','0','dde68e22656c4e9e88f89a97984704a8','0','2','0'), ('46283','18','','10548','License [{#LICENSE.ID}]: state','meraki.license.state[{#LICENSE.ID}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The state of the license. All queued licenses have a status of ''recently queued''.','0','30d','0','','46268','','','','','200','1','0','','','0','0','0','0','0','0','0','b616fcfc6cd740ec8ec52578d7bc2f8c','0','2','0'), ('46284','18','','10548','License [{#LICENSE.ID}]: total duration in days','meraki.license.total.duration[{#LICENSE.ID}]','0','31d','365d','0','0','','','','',NULL,'1143','','','0','','','','','2',NULL,'The duration of the license plus all permanently queued licenses associated with it.','0','30d','0','','46268','','','','','200','1','0','','','0','0','0','0','0','0','0','cb07d887e5dc407e91208323394e61a7','0','2','0'), ('46286','18','','10548','VPN [{#NETWORK.NAME}]: device serial','meraki.vpn.statuses.device.serial[{#NETWORK.ID}, {#NETWORK.NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'VPN network device serial.','0','30d','0','','46273','','','','','200','1','0','','','0','0','0','0','0','0','0','33586435a87a4151b089cd3671e278ec','0','2','0'), ('46287','18','','10548','VPN [{#NETWORK.NAME}]: device status','meraki.vpn.statuses.device.status[{#NETWORK.ID}, {#NETWORK.NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'VPN network device status.','0','30d','0','','46273','','','','','200','1','0','','','0','0','0','0','0','0','0','795e7163e5ec498fbef00aa6f90b5d13','0','2','0'), ('46288','18','','10548','VPN [{#NETWORK.NAME}]: mode','meraki.vpn.statuses.mode[{#NETWORK.ID}, {#NETWORK.NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'VPN network mode.','0','30d','0','','46273','','','','','200','1','0','','','0','0','0','0','0','0','0','73e90efe0f0b427a909e0a8bef4d5d38','0','2','0'), ('46289','18','','10548','VPN [{#NETWORK.NAME}]: peers network ID','meraki.vpn.statuses.peers.network.id[{#NETWORK.ID}, {#NETWORK.NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'VPN network ID.','0','30d','0','','46273','','','','','200','1','0','','','0','0','0','0','0','0','0','baf0b63913564499a81065ea62cc8d53','0','2','0'), ('46290','18','','10548','VPN [{#NETWORK.NAME}]: peers network name','meraki.vpn.statuses.peers.network.name[{#NETWORK.ID}, {#NETWORK.NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'VPN network name Meraki VPN peers.','0','30d','0','','46273','','','','','200','1','0','','','0','0','0','0','0','0','0','e6c461828bbd4177a755adba16b2b53b','0','2','0'), ('46291','18','','10548','VPN [{#NETWORK.NAME}]: peers network reachability','meraki.vpn.statuses.peers.reachability[{#NETWORK.ID}, {#NETWORK.NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'VPN network Meraki VPN peers reachability.','0','30d','0','','46273','','','','','200','1','0','','','0','0','0','0','0','0','0','712082be91af4e84a7300bd680fc7d41','0','2','0'), ('46292','18','','10548','VPN [{#NETWORK.NAME}]: third-party peers network ID','meraki.vpn.statuses.third.party.peers.network.id[{#NETWORK.ID}, {#NETWORK.NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Return network ID of the third-party VPN peers for the organization.','0','30d','0','','46273','','','','','200','1','0','','','0','0','0','0','0','0','0','2efc18211e414114a0301c6e8b8beda9','0','2','0'), ('46293','18','','10548','VPN [{#NETWORK.NAME}]: third-party peers network name','meraki.vpn.statuses.third.party.peers.network.name[{#NETWORK.ID}, {#NETWORK.NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Return network name of the third-party VPN peers for the organization.','0','30d','0','','46273','','','','','200','1','0','','','0','0','0','0','0','0','0','0b5fd0a0419e4a38bb27a0b5b3b73301','0','2','0'), ('46294','18','','10548','VPN [{#NETWORK.NAME}]: third-party peers network reachability','meraki.vpn.statuses.third.party.peers.reachability[{#NETWORK.ID}, {#NETWORK.NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Return network reachability of the third-party VPN peers for the organization.','0','30d','0','','46273','','','','','200','1','0','','','0','0','0','0','0','0','0','45e79c2918094fa5860d425d99e82201','0','2','0'), ('46339','18','','10605','Computer system [{#SYSTEM_HOSTNAME}]: BIOS current version','hpe.ilo.computer_system.bios.current_version[{#SYSTEM_ID}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current BIOS version of the computer system.','0','30d','0','','46330','','','','','200','1','0','','','0','0','0','0','0','0','0','2815e03a856e4c0389ee2fb545d6c97f','0','2','0'), ('46340','18','','10605','Computer system [{#SYSTEM_HOSTNAME}]: Model','hpe.ilo.computer_system.model[{#SYSTEM_ID}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The model name of the computer system.','0','30d','0','','46330','','','','','200','1','0','','','0','0','0','0','0','0','0','cd7fc29d4de64b0f8fb754451d5764e3','0','2','0'), ('46341','18','','10605','Computer system [{#SYSTEM_HOSTNAME}]: Serial number','hpe.ilo.computer_system.serial_number[{#SYSTEM_ID}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The serial number of the computer system.','0','30d','0','','46330','','','','','200','1','0','','','0','0','0','0','0','0','0','74a4746fec48417bb5e1ce6f341936f4','0','2','0'), ('46342','18','','10605','Computer system [{#SYSTEM_HOSTNAME}]: Status','hpe.ilo.computer_system.status[{#SYSTEM_ID}]','0','31d','365d','0','3','','','','',NULL,'1152','','','0','','','','','2',NULL,'The overall health state from the view of this computer system. Possible values: 0 - "OK", the computer system is in normal condition; 1 - "Warning", the computer system is in condition that requires attention; 2 - "Critical", the computer system is in critical condition that requires immediate attention; 10 - "Unknown", the computer system is in unknown condition.','0','30d','0','','46330','','','','','200','1','0','','','0','0','0','0','0','0','0','30a1ab95416a42779abe242ac264d813','0','2','0'), ('46343','18','','10605','Computer system [{#SYSTEM_HOSTNAME}]: System type','hpe.ilo.computer_system.type[{#SYSTEM_ID}]','0','31d','365d','0','3','','','','',NULL,'1147','','','0','','','','','2',NULL,'The type of the computer system. Possible values: 0 - "Physical", a computer system; 1 - "Virtual", a virtual machine instance running on this system; 2 - "OS", an operating system instance; 3 - "PhysicallyPartitioned", a hardware-based partition of a computer system; 4 - "VirtuallyPartitioned", a virtual or software-based partition of a computer system; 5 - "DPU", a virtual or software-based partition of a computer system; 10 - "Unknown", the computer system type is unknown.','0','30d','0','','46330','','','','','200','1','0','','','0','0','0','0','0','0','0','09d4a47c8ba94c4c83e47bbd58ec6cc7','0','2','0'), ('46344','18','','10605','Computer system [{#SYSTEM_HOSTNAME}]: CPU utilization, in %','hpe.ilo.computer_system.usage.cpu_util[{#SYSTEM_ID}]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Current CPU utilization of the computer system in percentage.','0','30d','0','','46330','','','','','200','1','0','','','0','0','0','0','0','0','0','19cb6014269c4e548daa07526c0eac95','0','2','0'), ('46345','18','','10605','Computer system [{#SYSTEM_HOSTNAME}]: I/O bus utilization, in %','hpe.ilo.computer_system.usage.io_bus_util[{#SYSTEM_ID}]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Current I/O bus utilization of the computer system in percentage.','0','30d','0','','46330','','','','','200','1','0','','','0','0','0','0','0','0','0','7c71b7e1963c499d8a4151aba47da539','0','2','0'), ('46346','18','','10605','Computer system [{#SYSTEM_HOSTNAME}]: Memory bus utilization, in %','hpe.ilo.computer_system.usage.memory_bus_util[{#SYSTEM_ID}]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Current memory bus utilization of the computer system in percentage.','0','30d','0','','46330','','','','','200','1','0','','','0','0','0','0','0','0','0','13b463539dbb4692a4635bdef2a76367','0','2','0'), ('46347','18','','10605','Computer system [{#SYSTEM_HOSTNAME}]: Storage [{#STORAGE_ID}]: Controller [{#CONTROLLER_ID}]: Model','hpe.ilo.controller.model[{#SYSTEM_ID}, {#STORAGE_ID}, {#CONTROLLER_ID}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The model name of the controller.','0','30d','0','','46331','','','','','200','1','0','','','0','0','0','0','0','0','0','5aeac2d722a14086b64980e0cd4a985a','0','2','0'), ('46348','18','','10605','Computer system [{#SYSTEM_HOSTNAME}]: Storage [{#STORAGE_ID}]: Controller [{#CONTROLLER_ID}]: Serial number','hpe.ilo.controller.serial_number[{#SYSTEM_ID}, {#STORAGE_ID}, {#CONTROLLER_ID}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The serial number of the controller.','0','30d','0','','46331','','','','','200','1','0','','','0','0','0','0','0','0','0','5a8101bfc94b48d2b67fd6670949ab96','0','2','0'), ('46349','18','','10605','Computer system [{#SYSTEM_HOSTNAME}]: Storage [{#STORAGE_ID}]: Controller [{#CONTROLLER_ID}]: Status','hpe.ilo.controller.status[{#SYSTEM_ID}, {#STORAGE_ID}, {#CONTROLLER_ID}]','0','31d','365d','0','3','','','','',NULL,'1152','','','0','','','','','2',NULL,'The health state of the controller. Possible values: 0 - "OK", the controller is in normal condition; 1 - "Warning", the controller is in condition that requires attention; 2 - "Critical", the controller is in critical condition that requires immediate attention; 10 - "Unknown", the controller is in unknown condition.','0','30d','0','','46331','','','','','200','1','0','','','0','0','0','0','0','0','0','6c0527d5f10b4be0a9384de104128a9b','0','2','0'), ('46350','18','','10605','Computer system [{#SYSTEM_HOSTNAME}]: Storage [{#STORAGE_ID}]: Drive [{#DRIVE_ID}]: Capacity','hpe.ilo.drive.capacity[{#SYSTEM_ID}, {#STORAGE_ID}, {#DRIVE_ID}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The capacity of the drive.','0','30d','0','','46332','','','','','200','1','0','','','0','0','0','0','0','0','0','c3935598d1b14f8a9ceaadd315ffd64e','0','2','0'), ('46351','18','','10605','Computer system [{#SYSTEM_HOSTNAME}]: Storage [{#STORAGE_ID}]: Drive [{#DRIVE_ID}]: Media type','hpe.ilo.drive.media_type[{#SYSTEM_ID}, {#STORAGE_ID}, {#DRIVE_ID}]','0','31d','365d','0','3','','','','',NULL,'1150','','','0','','','','','2',NULL,'The media type of the drive.','0','30d','0','','46332','','','','','200','1','0','','','0','0','0','0','0','0','0','368329ea2b4b45b2ac5edfb103002915','0','2','0'), ('46352','18','','10605','Computer system [{#SYSTEM_HOSTNAME}]: Storage [{#STORAGE_ID}]: Drive [{#DRIVE_ID}]: Model','hpe.ilo.drive.model[{#SYSTEM_ID}, {#STORAGE_ID}, {#DRIVE_ID}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The model name of the drive.','0','30d','0','','46332','','','','','200','1','0','','','0','0','0','0','0','0','0','9800f0f0171542de87508f062c1397e7','0','2','0'), ('46353','18','','10605','Computer system [{#SYSTEM_HOSTNAME}]: Storage [{#STORAGE_ID}]: Drive [{#DRIVE_ID}]: Predicted media life left, in %','hpe.ilo.drive.predicted_life_left[{#SYSTEM_ID}, {#STORAGE_ID}, {#DRIVE_ID}]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of reads and writes that are predicted to still be available for the drive.','0','30d','0','','46332','','','','','200','1','0','','','0','0','0','0','0','0','1','a8cf9573ca704edab0fd130a0a3bda76','0','2','0'), ('46354','18','','10605','Computer system [{#SYSTEM_HOSTNAME}]: Storage [{#STORAGE_ID}]: Drive [{#DRIVE_ID}]: Serial number','hpe.ilo.drive.serial_number[{#SYSTEM_ID}, {#STORAGE_ID}, {#DRIVE_ID}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The serial number of the drive.','0','30d','0','','46332','','','','','200','1','0','','','0','0','0','0','0','0','0','3122f6ef74f84974b8094022f86f68bb','0','2','0'), ('46355','18','','10605','Computer system [{#SYSTEM_HOSTNAME}]: Storage [{#STORAGE_ID}]: Drive [{#DRIVE_ID}]: Status indicator','hpe.ilo.drive.status_indicator[{#SYSTEM_ID}, {#STORAGE_ID}, {#DRIVE_ID}]','0','31d','365d','0','3','','','','',NULL,'1148','','','0','','','','','2',NULL,'Status of drive. Possible values: 0 - "OK", the drive is ok; 1 - "Fail", the drive has failed; 2 - "Rebuild", the drive is being rebuilt; 3 - "PredictiveFailureAnalysis", the drive is still working but predicted to fail soon; 4 - "Hotspare", the drive is marked to be automatically rebuilt and used as a replacement for a failed drive; 5 - "InACriticalArray", the array that this drive is a part of is degraded; 6 - "InAFailedArray ", the array that this drive is a part of is failed; 10 - "Unknown", the drive status is unknown.','0','30d','0','','46332','','','','','200','1','0','','','0','0','0','0','0','0','0','a2218789f4734f72921665308dc3eb5d','0','2','0'), ('46356','18','','10605','Chassis [{#CHASSIS_ID}]: Fan [{#FAN_NAME}]: Speed, in %','hpe.ilo.fan.speed[{#CHASSIS_ID}, {#FAN_ID}]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The current speed of the fan.','0','30d','0','','46333','','','','','200','1','0','','','0','0','0','0','0','0','0','d30cdb96ceb9470dbba0b30112c3a05b','0','2','0'), ('46357','18','','10605','Chassis [{#CHASSIS_ID}]: Fan [{#FAN_NAME}]: Status','hpe.ilo.fan.status[{#CHASSIS_ID}, {#FAN_ID}]','0','31d','365d','0','3','','','','',NULL,'1152','','','0','','','','','2',NULL,'The health state of the fan. Possible values: 0 - "OK", the fan is in normal condition; 1 - "Warning", the fan is in condition that requires attention; 2 - "Critical", the fan is in critical condition that requires immediate attention; 10 - "Unknown", the fan is in unknown condition.','0','30d','0','','46333','','','','','200','1','0','','','0','0','0','0','0','0','0','4006994b11a54c5fa3eda5516b8ca94e','0','2','0'), ('46358','18','','10605','Manager [{#MANAGER_ID}]: Current firmware version','hpe.ilo.manager.firmware.current_version[{#MANAGER_ID}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current firmware version of the manager.','0','30d','0','','46334','','','','','200','1','0','','','0','0','0','0','0','0','0','822317e3e16741c88cc749d5f5b7e67c','0','2','0'), ('46359','18','','10605','Manager [{#MANAGER_ID}]: Model','hpe.ilo.manager.model[{#MANAGER_ID}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The model name of the manager.','0','30d','0','','46334','','','','','200','1','0','','','0','0','0','0','0','0','0','20008a9fb19841edb7901dc8304bfdf8','0','2','0'), ('46360','18','','10605','Manager [{#MANAGER_ID}]: Status','hpe.ilo.manager.status[{#MANAGER_ID}]','0','31d','365d','0','3','','','','',NULL,'1152','','','0','','','','','2',NULL,'The health state of the manager. Possible values: 0 - "OK", the manager is in normal condition; 1 - "Warning", the manager is in condition that requires attention; 2 - "Critical", the manager is in critical condition that requires immediate attention; 10 - "Unknown", the manager is in unknown condition.','0','30d','0','','46334','','','','','200','1','0','','','0','0','0','0','0','0','0','f178ab2358d842e98d137fcf62ba5dba','0','2','0'), ('46361','18','','10605','Manager [{#MANAGER_ID}]: Manager type','hpe.ilo.manager.type[{#MANAGER_ID}]','0','31d','365d','0','3','','','','',NULL,'1149','','','0','','','','','2',NULL,'The manager type. Possible values: 0 - "ManagementController", a controller used primarily to monitor or manage the operation of a device or system; 1 - "EnclosureManager", a controller which provides management functions for a chassis or group of devices or systems; 2 - "BMC", a controller which provides management functions for a single computer system; 10 - "Unknown", the manager type is unknown.','0','30d','0','','46334','','','','','200','1','0','','','0','0','0','0','0','0','0','fab6652c9346461eb232342fa8b88b95','0','2','0'), ('46362','18','','10605','Chassis [{#CHASSIS_ID}]: PSU [{#PSU_ID}]: Last power output','hpe.ilo.psu.last_power_output[{#CHASSIS_ID}, {#PSU_ID}]','0','31d','365d','0','3','','W','','',NULL,NULL,'','','0','','','','','2',NULL,'The average power output of the PSU.','0','30d','0','','46335','','','','','200','1','0','','','0','0','0','0','0','0','0','c51caa30b1ab4399a1132e4c3ea50c9f','0','2','0'), ('46363','18','','10605','Chassis [{#CHASSIS_ID}]: PSU [{#PSU_ID}]: Line input voltage','hpe.ilo.psu.line_input_voltage[{#CHASSIS_ID}, {#PSU_ID}]','0','31d','365d','0','3','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'The line input voltage at which the PSU is operating.','0','30d','0','','46335','','','','','200','1','0','','','0','0','0','0','0','0','0','d3edb80dc18f4a92ac06a0025b7e1a76','0','2','0'), ('46364','18','','10605','Chassis [{#CHASSIS_ID}]: PSU [{#PSU_ID}]: Model','hpe.ilo.psu.model[{#CHASSIS_ID}, {#PSU_ID}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The model name of the PSU.','0','30d','0','','46335','','','','','200','1','0','','','0','0','0','0','0','0','0','f7594bdb44d1464c8cf1476ceb473215','0','2','0'), ('46365','18','','10605','Chassis [{#CHASSIS_ID}]: PSU [{#PSU_ID}]: Serial number','hpe.ilo.psu.serial_number[{#CHASSIS_ID}, {#PSU_ID}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The serial number of the PSU.','0','30d','0','','46335','','','','','200','1','0','','','0','0','0','0','0','0','0','96a3b57288e94c71b4f8ac15bc7a8a14','0','2','0'), ('46366','18','','10605','Chassis [{#CHASSIS_ID}]: PSU [{#PSU_ID}]: Status','hpe.ilo.psu.status[{#CHASSIS_ID}, {#PSU_ID}]','0','31d','365d','0','3','','','','',NULL,'1152','','','0','','','','','2',NULL,'The health state of the PSU. Possible values: 0 - "OK", the PSU is in normal condition; 1 - "Warning", the PSU is in condition that requires attention; 2 - "Critical", the PSU is in critical condition that requires immediate attention; 10 - "Unknown", the PSU is in unknown condition.','0','30d','0','','46335','','','','','200','1','0','','','0','0','0','0','0','0','0','5194da566bce4f7ca1073ab56201d32b','0','2','0'), ('46367','18','','10605','Chassis [{#CHASSIS_ID}]: Sensor [{#SENSOR_NAME}]: Status','hpe.ilo.sensor.status[{#CHASSIS_ID}, {#SENSOR_ID}]','0','31d','365d','0','3','','','','',NULL,'1152','','','0','','','','','2',NULL,'The health state of the sensor. Possible values: 0 - "OK", the sensor is in normal condition; 1 - "Warning", the sensor is in condition that requires attention; 2 - "Critical", the sensor is in critical condition that requires immediate attention; 10 - "Unknown", the sensor is in unknown condition.','0','30d','0','','46336','','','','','200','1','0','','','0','0','0','0','0','0','0','ef3c3472c21a4716b9b3362e7b33644c','0','2','0'), ('46368','18','','10605','Chassis [{#CHASSIS_ID}]: Sensor [{#SENSOR_NAME}]: Temperature','hpe.ilo.sensor.temperature[{#CHASSIS_ID}, {#SENSOR_ID}]','0','31d','365d','0','3','','!°C','','',NULL,NULL,'','','0','','','','','2',NULL,'The current temperature reading in Celsius degrees for the sensor.','0','30d','0','','46336','','','','','200','1','0','','','0','0','0','0','0','0','0','04e0faf0a3b54f84a13341bab1238b60','0','2','0'), ('46369','18','','10605','Computer system [{#SYSTEM_HOSTNAME}]: Storage [{#STORAGE_ID}]: Status','hpe.ilo.storage.status[{#SYSTEM_ID}, {#STORAGE_ID}]','0','31d','365d','0','3','','','','',NULL,'1152','','','0','','','','','2',NULL,'The overall health state from the view of this storage. Possible values: 0 - "OK", the storage is in normal condition; 1 - "Warning", the storage is in condition that requires attention; 2 - "Critical", the storage is in critical condition that requires immediate attention; 10 - "Unknown", the storage is in unknown condition.','0','30d','0','','46337','','','','','200','1','0','','','0','0','0','0','0','0','0','bec36e3da5ed4d71808669b5e298a62a','0','2','0'), ('46370','18','','10605','Computer system [{#SYSTEM_HOSTNAME}]: Storage [{#STORAGE_ID}]: Volume [{#VOLUME_ID}]: Capacity','hpe.ilo.volume.capacity[{#SYSTEM_ID}, {#STORAGE_ID}, {#VOLUME_ID}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The capacity of the volume.','0','30d','0','','46338','','','','','200','1','0','','','0','0','0','0','0','0','0','9128fbbb6f0a450abb03f427cf22210f','0','2','0'), ('46371','18','','10605','Computer system [{#SYSTEM_HOSTNAME}]: Storage [{#STORAGE_ID}]: Volume [{#VOLUME_ID}]: RAID level','hpe.ilo.volume.raid_level[{#SYSTEM_ID}, {#STORAGE_ID}, {#VOLUME_ID}]','0','31d','365d','0','3','','','','',NULL,'1151','','','0','','','','','2',NULL,'The RAID level of the volume.','0','30d','0','','46338','','','','','200','1','0','','','0','0','0','0','0','0','0','b42c7a7314a9463d959925fb5b0fd275','0','2','0'), ('46372','18','','10605','Computer system [{#SYSTEM_HOSTNAME}]: Storage [{#STORAGE_ID}]: Volume [{#VOLUME_ID}]: Status','hpe.ilo.volume.status[{#SYSTEM_ID}, {#STORAGE_ID}, {#VOLUME_ID}]','0','31d','365d','0','3','','','','',NULL,'1152','','','0','','','','','2',NULL,'The health state of the volume. Possible values: 0 - "OK", the volume is in normal condition; 1 - "Warning", the volume is in condition that requires attention; 2 - "Critical", the volume is in critical condition that requires immediate attention; 10 - "Unknown", the volume is in unknown condition.','0','30d','0','','46338','','','','','200','1','0','','','0','0','0','0','0','0','0','c4829f0dac1c42edad3161ac9df74ea6','0','2','0'), ('46449','18','','10327','MSSQL DB ''{#DBNAME}'': Recovery model','mssql.backup.recovery_model["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,'1157','','','0','','','','','2',NULL,'Recovery model selected: 1 = Full 2 = Bulk_logged 3 = Simple','0','30d','0','','45098','','','','','200','1','0','','','0','0','0','0','0','0','0','52a2d8012fea467582b09505e9c880be','0','2','0'), ('46501','18','','10607','[{#ALARM_NAME}]: State','aws.elb.alb.alarm.state["{#ALARM_NAME}"]','0','31d','365d','0','3','','','','',NULL,'1158','','','0','','','','','2',NULL,'The value of the alarm state. Possible values: 0 - OK; 1 - INSUFFICIENT_DATA; 2 - ALARM. Alarm description: `{#ALARM_DESCRIPTION}`','0','30d','0','','46486','','','','','200','1','0','','','0','0','0','0','0','0','0','3ef62eb9b0824f8ea3c2c1e8e15ce1fd','0','2','0'), ('46502','18','','10607','[{#ALARM_NAME}]: State reason','aws.elb.alb.alarm.state_reason["{#ALARM_NAME}"]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'An explanation for the alarm state reason in text format. Alarm description: `{#ALARM_DESCRIPTION}`','0','30d','0','','46486','','','','','200','1','0','','','0','0','0','0','0','0','0','8839a61a10f7453ebfdcae0ef16eb37c','0','2','0'), ('46534','18','','10609','Auto-param attempts per second','mssql.autoparam_attempts_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of auto-parameterization attempts per second. The total should be the sum of the failed, safe, and unsafe auto-parameterizations. Auto-parameterization occurs when an instance of SQL Server tries to parameterize a Transact-SQL request by replacing some literals with parameters so that reuse of the resulting cached execution plan across multiple similar-looking requests is possible. Note that auto-parameterizations are also known as simple parameterizations in the newer versions of SQL Server. This counter does not include forced parameterizations.','0','30d','0','','46531','','','','','200','1','0','','','0','0','0','0','0','0','0','e48534a4fd3042ee9c2f0155230298a2','0','2','0'), ('46535','18','','10609','Average latch wait time base','mssql.average_latch_wait_time_base','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'For internal use only.','0','30d','0','','46527','','','','','200','1','0','','','0','0','0','0','0','0','0','394d622b256945289ed9ca88999e024d','0','2','0'), ('46536','18','','10609','Average latch wait time raw','mssql.average_latch_wait_time_raw','0','31d','365d','0','3','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'Average latch wait time (in milliseconds) for latch requests that had to wait.','0','30d','0','','46527','','','','','200','1','0','','','0','0','0','0','0','0','0','fe80511b840544da86ef3dd1b34bfce2','0','2','0'), ('46537','18','','10609','Total average wait time base','mssql.average_wait_time_base','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'For internal use only.','0','30d','0','','46528','','','','','200','1','0','','','0','0','0','0','0','0','0','fc14601c16314459bc8277ebd244997d','0','2','0'), ('46538','18','','10609','Total average wait time raw','mssql.average_wait_time_raw','0','31d','365d','0','3','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'Average amount of wait time (in milliseconds) for each lock request that resulted in a wait. Information for all locks.','0','30d','0','','46528','','','','','200','1','0','','','0','0','0','0','0','0','0','5fa855e501dc42e68d8a06e435c08024','0','2','0'), ('46539','18','','10609','Batch requests per second','mssql.batch_requests_sec.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of Transact-SQL command batches received per second. This statistic is affected by all constraints (such as I/O, number of users, cache size, complexity of requests, and so on). High batch requests mean good throughput.','0','30d','0','','46531','','','','','200','1','0','','','0','0','0','0','0','0','0','b6c19fe6e67f4686a23455211fb2c076','0','2','0'), ('46540','18','','10609','Buffer cache hit ratio','mssql.buffer_cache_hit_ratio','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates the percentage of pages found in the buffer cache without having to read from the disk. The ratio is the total number of cache hits divided by the total number of cache lookups over the last few thousand page accesses. After a long period of time, the ratio changes very little. Since reading from the cache is much less expensive than reading from the disk, a higher value is preferred for this item. To increase the buffer cache hit ratio, consider increasing the amount of memory available to MSSQL Server or using the buffer pool extension feature.','0','30d','0','','46523','','','','','200','1','0','','','0','0','0','0','0','0','0','e2581ae0fd6d4cc18728b7301cb22730','0','2','0'), ('46541','18','','10609','Cache hit ratio','mssql.cache_hit_ratio','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Ratio between cache hits and lookups.','0','30d','0','','46524','','','','','200','1','0','','','0','0','0','0','0','0','0','ca959c973e8a4a549c0c33c85dce3598','0','2','0'), ('46542','18','','10609','Cache objects in use','mssql.cache_objects_in_use','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of cache objects in use.','0','30d','0','','46524','','','','','200','1','0','','','0','0','0','0','0','0','0','913fa728180d4a73a093a2ee05454081','0','2','0'), ('46543','18','','10609','Cache object counts','mssql.cache_object_counts','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of cache objects in the cache.','0','30d','0','','46524','','','','','200','1','0','','','0','0','0','0','0','0','0','4dbb2d972bcc42f19aaa537a0d0431e9','0','2','0'), ('46544','18','','10609','Cache pages','mssql.cache_pages','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of 8-kilobyte (KB) pages used by cache objects.','0','30d','0','','46524','','','','','200','1','0','','','0','0','0','0','0','0','0','952940ebb15942b3ac7d4b96c816a7c3','0','2','0'), ('46545','18','','10609','Checkpoint pages per second','mssql.checkpoint_pages_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates the number of pages flushed to the disk per second by a checkpoint or other operation which required all dirty pages to be flushed.','0','30d','0','','46523','','','','','200','1','0','','','0','0','0','0','0','0','0','14bba7081bd84521994b2a28d1af422d','0','2','0'), ('46546','18','','10609','Database pages','mssql.database_pages','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates the number of pages in the buffer pool with database content.','0','30d','0','','46523','','','','','200','1','0','','','0','0','0','0','0','0','0','f74a2bc9da424fc0ad288ddce6a4f6fa','0','2','0'), ('46547','18','','10609','Total data file size','mssql.data_files_size','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total size of all data files.','0','30d','0','','46525','','','','','200','1','0','','','0','0','0','0','0','0','0','d124c9d4a3724e32a37895ad1cbc036b','0','2','0'), ('46548','18','','10609','Total errors per second','mssql.errors_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors per second.','0','30d','0','','46530','','','','','200','1','0','','','0','0','0','0','0','0','0','b82b979548824464a204d49a9c760c99','0','2','0'), ('46549','18','','10609','Failed auto-params per second','mssql.failed_autoparams_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of failed auto-parameterization attempts per second. This number should be small. Note that auto-parameterizations are also known as simple parameterizations in the newer versions of SQL Server.','0','30d','0','','46531','','','','','200','1','0','','','0','0','0','0','0','0','0','152cf9cbf35f475bb242ddcb58e23c35','0','2','0'), ('46550','18','','10609','Forwarded records per second','mssql.forwarded_records_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of records per second fetched through forwarded record pointers.','0','30d','0','','46522','','','','','200','1','0','','','0','0','0','0','0','0','0','e7c66d2857034bfcbef7af94673ea66f','0','2','0'), ('46551','18','','10609','Free list stalls per second','mssql.free_list_stalls_sec.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates the number of requests per second that had to wait for a free page.','0','30d','0','','46523','','','','','200','1','0','','','0','0','0','0','0','0','0','7d688d051647440595e42bd798ce78dc','0','2','0'), ('46552','18','','10609','Full scans per second','mssql.full_scans_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of unrestricted full scans per second. These can be either base-table or full-index scans. Values greater than 1 or 2 indicate that there are table / index page scans. If that is combined with high CPU, this counter requires further investigation, otherwise, if the full scans are on small tables, it can be ignored.','0','30d','0','','46522','','','','','200','1','0','','','0','0','0','0','0','0','0','5e8ccbe07c254c2086a58aafe1aa2fdf','0','2','0'), ('46553','18','','10609','Granted Workspace Memory','mssql.granted_workspace_memory','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Specifies the total amount of memory currently granted to executing processes, such as hash, sort, bulk copy, and index creation operations.','0','30d','0','','46529','','','','','200','1','0','','','0','0','0','0','0','0','0','5aa885322d4d4f2d9b55d8f2d65f55b0','0','2','0'), ('46554','18','','10609','Index searches per second','mssql.index_searches_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of index searches per second. These are used to start a range scan, reposition a range scan, revalidate a scan point, fetch a single index record, and search down the index to locate where to insert a new row.','0','30d','0','','46522','','','','','200','1','0','','','0','0','0','0','0','0','0','65a2e35bc66e45a08690faf08733c5fb','0','2','0'), ('46555','18','','10609','Errors per second (Info errors)','mssql.info_errors_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors per second.','0','30d','0','','46530','','','','','200','1','0','','','0','0','0','0','0','0','0','5439b52bd72e4204876d0c3716eb0a23','0','2','0'), ('46556','18','','10609','Errors per second (Kill connection errors)','mssql.kill_connection_errors_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors per second.','0','30d','0','','46530','','','','','200','1','0','','','0','0','0','0','0','0','0','c43a0e1c2adf45cf8809e9a361ec190e','0','2','0'), ('46557','18','','10609','Latch waits per second','mssql.latch_waits_sec.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'The number of latch requests that could not be granted immediately. Latches are lightweight means of holding a very transient server resource, such as an address in memory.','0','30d','0','','46527','','','','','200','1','0','','','0','0','0','0','0','0','0','2daa0932d2a9491f9b262c06def40ccc','0','2','0'), ('46558','18','','10609','Lazy writes per second','mssql.lazy_writes_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates the number of buffers written per second by the buffer manager''s lazy writer. The lazy writer is a system process that flushes out batches of dirty, aged buffers (buffers that contain changes that must be written back to the disk before the buffer can be reused for a different page) and makes them available to user processes. The lazy writer eliminates the need to perform frequent checkpoints in order to create available buffers.','0','30d','0','','46523','','','','','200','1','0','','','0','0','0','0','0','0','0','d5710a51fb474d14b7d7716781b76c58','0','2','0'), ('46559','18','','10609','Total lock requests per second','mssql.lock_requests_sec.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of new locks and lock conversions per second requested from the lock manager.','0','30d','0','','46528','','','','','200','1','0','','','0','0','0','0','0','0','0','d8adec0bd76a4e1881b8b7e0ba44c7a1','0','2','0'), ('46560','18','','10609','Total lock requests per second that timed out','mssql.lock_timeouts_sec.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of timed out lock requests per second, including requests for NOWAIT locks.','0','30d','0','','46528','','','','','200','1','0','','','0','0','0','0','0','0','0','3077e748f89844e0b666a82c26051399','0','2','0'), ('46561','18','','10609','Total lock requests per second that required waiting','mssql.lock_waits_sec.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of lock requests per second that required the caller to wait.','0','30d','0','','46528','','','','','200','1','0','','','0','0','0','0','0','0','0','bcb606f27714414a92347a45e6bc8d31','0','2','0'), ('46562','18','','10609','Lock wait time','mssql.lock_wait_time','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'Average of total wait time (in milliseconds) for locks in the last second.','0','30d','0','','46528','','','','','200','1','0','','','0','0','0','0','0','0','0','706b5931a7d24e2190d071c1088ba469','0','2','0'), ('46563','18','','10609','Logins per second','mssql.logins_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of logins started per second. This does not include pooled connections. Any value over 2 may indicate insufficient connection pooling.','0','30d','0','','46526','','','','','200','1','0','','','0','0','0','0','0','0','0','343c44bfdd154e99879fbecb4e703dab','0','2','0'), ('46564','18','','10609','Logouts per second','mssql.logouts_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of logout operations started per second. Any value over 2 may indicate insufficient connection pooling.','0','30d','0','','46526','','','','','200','1','0','','','0','0','0','0','0','0','0','da069a96cc3c410db1c053d3de2a6508','0','2','0'), ('46565','18','','10609','Total log file size','mssql.log_files_size','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total size of all the transaction log files.','0','30d','0','','46525','','','','','200','1','0','','','0','0','0','0','0','0','0','e00f3549800a477ba77a8635a27d849b','0','2','0'), ('46566','18','','10609','Total log file used size','mssql.log_files_used_size','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The cumulative size of all the log files in the database.','0','30d','0','','46525','','','','','200','1','0','','','0','0','0','0','0','0','0','fb2125c36295434a8821462b5c86fbee','0','2','0'), ('46567','18','','10609','Maximum workspace memory','mssql.maximum_workspace_memory','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates the maximum amount of memory available for executing processes, such as hash, sort, bulk copy, and index creation operations.','0','30d','0','','46529','','','','','200','1','0','','','0','0','0','0','0','0','0','462eecc28a3f44ef831fc76d3a0a278b','0','2','0'), ('46568','18','','10609','Memory grants outstanding','mssql.memory_grants_outstanding','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Specifies the total number of processes that have successfully acquired a workspace memory grant.','0','30d','0','','46529','','','','','200','1','0','','','0','0','0','0','0','0','0','08919bb644c746c7a51fcc43d3581309','0','2','0'), ('46569','18','','10609','Memory grants pending','mssql.memory_grants_pending','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Specifies the total number of processes waiting for a workspace memory grant.','0','30d','0','','46529','','','','','200','1','0','','','0','0','0','0','0','0','0','f790245e08654eddb5cceff6405e68e2','0','2','0'), ('46570','18','','10609','Total lock requests per second that have deadlocks','mssql.number_deadlocks_sec.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of lock requests per second that resulted in a deadlock.','0','30d','0','','46528','','','','','200','1','0','','','0','0','0','0','0','0','0','0e8935dc71584982b20ff2dbe42b31a4','0','2','0'), ('46571','18','','10609','Errors per second (DB offline errors)','mssql.offline_errors_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors per second.','0','30d','0','','46530','','','','','200','1','0','','','0','0','0','0','0','0','0','6e8968403b9e4abfbc5ec0a4c990636c','0','2','0'), ('46572','18','','10609','Page life expectancy','mssql.page_life_expectancy','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates the number of seconds a page will stay in the buffer pool without references.','0','30d','0','','46523','','','','','200','1','0','','','0','0','0','0','0','0','0','0b53d7e1a0174db2b6ebc1c47ac92d9e','0','2','0'), ('46573','18','','10609','Page lookups per second','mssql.page_lookups_sec.rate','0','31d','365d','0','0','','rps','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates the number of requests per second to find a page in the buffer pool.','0','30d','0','','46523','','','','','200','1','0','','','0','0','0','0','0','0','0','97fb6c5dd7de48879f378ac464c37f48','0','2','0'), ('46574','18','','10609','Page reads per second','mssql.page_reads_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates the number of physical database page reads that are issued per second. This statistic displays the total number of physical page reads across all databases. As physical I/O is expensive, you may be able to minimize the cost either by using a larger data cache, intelligent indexes, and more efficient queries, or by changing the database design.','0','30d','0','','46523','','','','','200','1','0','','','0','0','0','0','0','0','0','936ded2166da48a8acc3c94262b0bbac','0','2','0'), ('46575','18','','10609','Page splits per second','mssql.page_splits_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of page splits per second that occur as a result of overflowing index pages.','0','30d','0','','46522','','','','','200','1','0','','','0','0','0','0','0','0','0','7e39012b0bc640689d3b295fc8f2abc6','0','2','0'), ('46576','18','','10609','Page writes per second','mssql.page_writes_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates the number of physical database page writes that are issued per second.','0','30d','0','','46523','','','','','200','1','0','','','0','0','0','0','0','0','0','2be68cb7cfe441339af164b3b4ce9c90','0','2','0'), ('46577','18','','10609','Number of blocked processes','mssql.processes_blocked','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of currently blocked processes.','0','30d','0','','46526','','','','','200','1','0','','','0','0','0','0','0','0','0','9b769f48534c4e6cb9bb2cd4079bd808','0','2','0'), ('46578','18','','10609','Read-ahead pages per second','mssql.readahead_pages_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates the number of pages read per second in anticipation of use.','0','30d','0','','46523','','','','','200','1','0','','','0','0','0','0','0','0','0','18b09445472c46be81281c0cb55297ea','0','2','0'), ('46579','18','','10609','Safe auto-params per second','mssql.safe_autoparams_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of safe auto-parameterization attempts per second. Safe refers to a determination that a cached execution plan can be shared between different similar-looking Transact-SQL statements. SQL Server makes many auto-parameterization attempts, some of which turn out to be safe and others fail. Note that auto-parameterizations are also known as simple parameterizations in the newer versions of SQL Server. This does not include forced parameterizations.','0','30d','0','','46531','','','','','200','1','0','','','0','0','0','0','0','0','0','7c5778b466fe488a9c7571a0b0b35597','0','2','0'), ('46580','18','','10609','SQL compilations per second','mssql.sql_compilations_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of SQL compilations per second. Indicates the number of times the compile code path is entered. Includes runs caused by statement-level recompilations in SQL Server. After SQL Server user activity is stable, this value reaches a steady state.','0','30d','0','','46531','','','','','200','1','0','','','0','0','0','0','0','0','0','f02b411d44784721a4fb4e032f094867','0','2','0'), ('46581','18','','10609','SQL re-compilations per second','mssql.sql_recompilations_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of statement recompiles per second. Counts the number of times statement recompiles are triggered. Generally, you want the recompiles to be low.','0','30d','0','','46531','','','','','200','1','0','','','0','0','0','0','0','0','0','515fe1b64f82415fbdfd118358bdcc2d','0','2','0'), ('46582','18','','10609','Table lock escalations per second','mssql.table_lock_escalations.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of times locks on a table were escalated to the TABLE or HoBT granularity.','0','30d','0','','46522','','','','','200','1','0','','','0','0','0','0','0','0','0','78b85902a71b47b1845bb55a797e8800','0','2','0'), ('46583','18','','10609','Target pages','mssql.target_pages','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The optimal number of pages in the buffer pool.','0','30d','0','','46523','','','','','200','1','0','','','0','0','0','0','0','0','0','29b91e97aa5f4efcafa38d59568c16ec','0','2','0'), ('46584','18','','10609','Target server memory','mssql.target_server_memory','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Indicates the ideal amount of memory the server can consume.','0','30d','0','','46529','','','','','200','1','0','','','0','0','0','0','0','0','0','06de7547c13c4e25af22c14fc7af84bd','0','2','0'), ('46585','18','','10609','Total latch wait time','mssql.total_latch_wait_time','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','0',NULL,'Total latch wait time (in milliseconds) for latch requests in the last second. This value should stay stable compared to the number of latch waits per second.','0','30d','0','','46527','','','','','200','1','0','','','0','0','0','0','0','0','0','304dd414b91c450db0594bd7135e340b','0','2','0'), ('46586','18','','10609','Total server memory','mssql.total_server_memory','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Specifies the amount of memory the server has committed using the memory manager.','0','30d','0','','46529','','','','','200','1','0','','','0','0','0','0','0','0','0','a1dd82b237304bf39d9e34d6ff7d76a2','0','2','0'), ('46587','18','','10609','Total transactions per second','mssql.transactions_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Total number of transactions started for all databases per second.','0','30d','0','','46525','','','','','200','1','0','','','0','0','0','0','0','0','0','c23c93f8492946ba9932bf8c8a7a306e','0','2','0'), ('46588','18','','10609','Unsafe auto-params per second','mssql.unsafe_autoparams_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of unsafe auto-parameterization attempts per second. For example, the query has some characteristics that prevent the cached plan from being shared. These are designated as unsafe. This does not count the number of forced parameterizations.','0','30d','0','','46531','','','','','200','1','0','','','0','0','0','0','0','0','0','b2805c08cc28424ca8fca0ab51ace519','0','2','0'), ('46589','18','','10609','Number of users connected','mssql.user_connections','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of users connected to MSSQL Server.','0','30d','0','','46526','','','','','200','1','0','','','0','0','0','0','0','0','0','821f3a9f694349c2afb983d4c26ff090','0','2','0'), ('46590','18','','10609','Errors per second (User errors)','mssql.user_errors_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of errors per second.','0','30d','0','','46530','','','','','200','1','0','','','0','0','0','0','0','0','0','27e1d9f9005f475784f930c8cbaefa91','0','2','0'), ('46591','18','','10609','Work files created per second','mssql.workfiles_created_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of work files created per second. For example, work files can be used to store temporary results for hash joins and hash aggregates.','0','30d','0','','46522','','','','','200','1','0','','','0','0','0','0','0','0','0','081cc2db8e9b481f8ca39e5f02f8f48d','0','2','0'), ('46592','18','','10609','Work tables created per second','mssql.worktables_created_sec.rate','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of work tables created per second. For example, work tables can be used to store temporary results for query spool, LOB variables, XML variables, and cursors.','0','30d','0','','46522','','','','','200','1','0','','','0','0','0','0','0','0','0','a2127497537a46b6be10fac14be04259','0','2','0'), ('46593','18','','10609','Worktables from cache ratio','mssql.worktables_from_cache_ratio','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Percentage of work tables created where the initial two pages of the work table were not allocated but were immediately available from the work table cache.','0','30d','0','','46522','','','','','200','1','0','','','0','0','0','0','0','0','0','dbcf930a346c40db9d8fafa89eafe79a','0','2','0'), ('46632','18','','10609','MSSQL DB ''{#DBNAME}'': Last diff backup duration','mssql.backup.diff.duration["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Duration of the last differential backup.','0','30d','0','','46607','','','','','200','1','0','','','0','0','0','0','0','0','0','39264e40f3304b3fb5d85fbac83008f8','0','2','0'), ('46633','18','','10609','MSSQL DB ''{#DBNAME}'': Last diff backup (time ago)','mssql.backup.diff["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of time since the last differential backup.','0','30d','0','','46607','','','','','200','1','0','','','0','0','0','0','0','0','0','45613ebe8c77431fbfa3ab00d39e68e5','0','2','0'), ('46634','18','','10609','MSSQL DB ''{#DBNAME}'': Last full backup duration','mssql.backup.full.duration["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Duration of the last full backup.','0','30d','0','','46607','','','','','200','1','0','','','0','0','0','0','0','0','0','5da7fa72e56740d3938e8bb5bb32839e','0','2','0'), ('46635','18','','10609','MSSQL DB ''{#DBNAME}'': Last full backup (time ago)','mssql.backup.full["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of time since the last full backup.','0','30d','0','','46607','','','','','200','1','0','','','0','0','0','0','0','0','0','32c38b20af8f42698fb96bf0bbb05dec','0','2','0'), ('46636','18','','10609','MSSQL DB ''{#DBNAME}'': Last log backup duration','mssql.backup.log.duration["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Duration of the last log backup.','0','30d','0','','46607','','','','','200','1','0','','','0','0','0','0','0','0','0','a7aaa846c6694ddf9daf5d18db5a3037','0','2','0'), ('46637','18','','10609','MSSQL DB ''{#DBNAME}'': Last log backup (time ago)','mssql.backup.log["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of time since the last log backup.','0','30d','0','','46607','','','','','200','1','0','','','0','0','0','0','0','0','0','453a48800bce43b58a372b7466b944bd','0','2','0'), ('46638','18','','10609','MSSQL DB ''{#DBNAME}'': Recovery model','mssql.backup.recovery_model["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,'1174','','','0','','','','','2',NULL,'Recovery model selected: 1 = Full 2 = Bulk_logged 3 = Simple','0','30d','0','','46607','','','','','200','1','0','','','0','0','0','0','0','0','0','f8bc0815cbc1471eb949429a95503287','0','2','0'), ('46639','18','','10609','MSSQL DB ''{#DBNAME}'': Active transactions','mssql.db.active_transactions["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of active transactions for the database.','0','30d','0','','46608','','','','','200','1','0','','','0','0','0','0','0','0','0','ccd715be77234994b8931ca89abb015a','0','2','0'), ('46640','18','','10609','MSSQL DB ''{#DBNAME}'': Data file size','mssql.db.data_files_size["{#DBNAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Cumulative size of all the data files in the database including any automatic growth. Monitoring this counter is useful, for example, for determining the correct size of `tempdb`.','0','30d','0','','46608','','','','','200','1','0','','','0','0','0','0','0','0','0','cba4bf9b39fc4cd69152f15cfd0edb56','0','2','0'), ('46641','18','','10609','MSSQL DB ''{#DBNAME}'': Log bytes flushed per second','mssql.db.log_bytes_flushed_sec.rate["{#DBNAME}"]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of log bytes flushed per second. Useful for determining trends and utilization of the transaction log.','0','30d','0','','46608','','','','','200','1','0','','','0','0','0','0','0','0','0','9cd2a1a539604c68b4540d424a608d4c','0','2','0'), ('46642','18','','10609','MSSQL DB ''{#DBNAME}'': Log file size','mssql.db.log_files_size["{#DBNAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Cumulative size of all the transaction log files in the database.','0','30d','0','','46608','','','','','200','1','0','','','0','0','0','0','0','0','0','ff2f2fd39e11418ea93b79ba27b73e3d','0','2','0'), ('46643','18','','10609','MSSQL DB ''{#DBNAME}'': Log file used size','mssql.db.log_files_used_size["{#DBNAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Cumulative size of all the log files in the database.','0','30d','0','','46608','','','','','200','1','0','','','0','0','0','0','0','0','0','7466329cc603401095def32026d8182d','0','2','0'), ('46644','18','','10609','MSSQL DB ''{#DBNAME}'': Log flushes per second','mssql.db.log_flushes_sec.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of log flushes per second.','0','30d','0','','46608','','','','','200','1','0','','','0','0','0','0','0','0','0','6c874bd1dd7746b4894d5b25e3de0f7c','0','2','0'), ('46645','18','','10609','MSSQL DB ''{#DBNAME}'': Log flush waits per second','mssql.db.log_flush_waits_sec.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of commits per second waiting for the log flush.','0','30d','0','','46608','','','','','200','1','0','','','0','0','0','0','0','0','0','64dc4faefc0f4709b5e740c036e9a272','0','2','0'), ('46646','18','','10609','MSSQL DB ''{#DBNAME}'': Log flush wait time','mssql.db.log_flush_wait_time["{#DBNAME}"]','0','31d','365d','0','0','','ms','','',NULL,NULL,'','','0','','','','','2',NULL,'Total wait time (in milliseconds) to flush the log. On an Always On secondary database, this value indicates the wait time for log records to be hardened to disk.','0','30d','0','','46608','','','','','200','1','0','','','0','0','0','0','0','0','0','1e4289626cd540dbbc9e54be9d6a0836','0','2','0'), ('46647','18','','10609','MSSQL DB ''{#DBNAME}'': Log growths','mssql.db.log_growths["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of times the transaction log for the database has been expanded.','0','30d','0','','46608','','','','','200','1','0','','','0','0','0','0','0','0','0','e0ebbdccf06e4bd580944eca894fd765','0','2','0'), ('46648','18','','10609','MSSQL DB ''{#DBNAME}'': Log shrinks','mssql.db.log_shrinks["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of times the transaction log for the database has been shrunk.','0','30d','0','','46608','','','','','200','1','0','','','0','0','0','0','0','0','0','f4705df239ff4b52a7594adc8bff1786','0','2','0'), ('46649','18','','10609','MSSQL DB ''{#DBNAME}'': Log truncations','mssql.db.log_truncations["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of times the transaction log has been shrunk.','0','30d','0','','46608','','','','','200','1','0','','','0','0','0','0','0','0','0','23f7b754af114e779bfb12b954041a3a','0','2','0'), ('46650','18','','10609','MSSQL DB ''{#DBNAME}'': Percent log used','mssql.db.percent_log_used["{#DBNAME}"]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Percentage of log space in use.','0','30d','0','','46608','','','','','200','1','0','','','0','0','0','0','0','0','0','622cd26e368144c7b4b4a760be6e9d80','0','2','0'), ('46651','18','','10609','MSSQL DB ''{#DBNAME}'': State','mssql.db.state["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,'1166','','','0','','','','','2',NULL,'0 = Online 1 = Restoring 2 = Recovering | SQL Server 2008 and later 3 = Recovery_pending | SQL Server 2008 and later 4 = Suspect 5 = Emergency | SQL Server 2008 and later 6 = Offline | SQL Server 2008 and later 7 = Copying | Azure SQL Database Active Geo-Replication 10 = Offline_secondary | Azure SQL Database Active Geo-Replication','0','30d','0','','46608','','','','','200','1','0','','','0','0','0','0','0','0','0','2032b8a3889a4a9f941529c4b62aa860','0','2','0'), ('46652','18','','10609','MSSQL DB ''{#DBNAME}'': Transactions per second','mssql.db.transactions_sec.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of transactions started for the database per second.','0','30d','0','','46608','','','','','200','1','0','','','0','0','0','0','0','0','0','e2f693fb31d84532a67d6f7e2f479acc','0','2','0'), ('46653','18','','10609','MSSQL Job ''{#JOBNAME}'': Enabled','mssql.job.enabled["{#JOBNAME}"]','0','31d','365d','0','3','','','','',NULL,'1159','','','0','','','','','2',NULL,'The possible values of the job status: 0 = Disabled 1 = Enabled','0','30d','0','','46609','','','','','200','1','0','','','0','0','0','0','0','0','0','7503acf68ad44180ace4113d654752d1','0','2','0'), ('46654','18','','10609','MSSQL Job ''{#JOBNAME}'': Last run date-time','mssql.job.lastrundatetime["{#JOBNAME}"]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'The last date-time of the job run.','0','30d','0','','46609','','','','','200','1','0','','','0','0','0','0','0','0','0','a42c8a24b329498581b8a81c13d16076','0','2','0'), ('46655','18','','10609','MSSQL Job ''{#JOBNAME}'': Last run status message','mssql.job.lastrunstatusmessage["{#JOBNAME}"]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'An informational message about the last run of the job.','0','30d','0','','46609','','','','','200','1','0','','','0','0','0','0','0','0','0','b86b627c1a234d409950345b9d7a1f73','0','2','0'), ('46656','18','','10609','MSSQL Job ''{#JOBNAME}'': Next run date-time','mssql.job.nextrundatetime["{#JOBNAME}"]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'The next date-time of the job run.','0','30d','0','','46609','','','','','200','1','0','','','0','0','0','0','0','0','0','fcc4d2cfa5674d33b8831e03b23f40c5','0','2','0'), ('46657','18','','10609','MSSQL Job ''{#JOBNAME}'': Run status','mssql.job.runstatus["{#JOBNAME}"]','0','31d','365d','0','3','','','','',NULL,'1167','','','0','','','','','2',NULL,'The possible values of the job status: 0 ⇒ Failed 1 ⇒ Succeeded 2 ⇒ Retry 3 ⇒ Canceled 4 ⇒ Running','0','30d','0','','46609','','','','','200','1','0','','','0','0','0','0','0','0','0','7bb5fb0220ef4649955049ee1b6d6c73','0','2','0'), ('46658','18','','10609','MSSQL Job ''{#JOBNAME}'': Run duration','mssql.job.run_duration["{#JOBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Duration of the last-run job.','0','30d','0','','46609','','','','','200','1','0','','','0','0','0','0','0','0','0','6ae51f0fd7c04e01aa9e1af302d461d0','0','2','0'), ('46733','18','','10611','YugabyteDB Keyspace [{#KEYSPACE.NAME}]: SST size','yugabytedb.keyspace.sst.size[{#KEYSPACE.NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size of the table''s SST.','0','30d','0','','46727','','','','','200','1','0','','','0','0','0','0','0','0','0','18ca22e5976741c595854de8fbf12d1e','0','2','0'), ('46734','18','','10611','YugabyteDB Keyspace [{#KEYSPACE.NAME}]: Type','yugabytedb.keyspace.type[{#KEYSPACE.NAME}]','0','31d','365d','0','3','','','','',NULL,'1182','','','0','','','','','2',NULL,'The type of keyspace: YSQL or YCQL.','0','30d','0','','46727','','','','','200','1','0','','','0','0','0','0','0','0','0','8dbbdc125336426d9c8fcb7909a7ab89','0','2','0'), ('46735','18','','10611','YugabyteDB Keyspace [{#KEYSPACE.NAME}]: Wal size','yugabytedb.keyspace.wal.size[{#KEYSPACE.NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size of the table''s WAL.','0','30d','0','','46727','','','','','200','1','0','','','0','0','0','0','0','0','0','9c23b2c7fe4b4aad8ab32ead6af179e7','0','2','0'), ('46736','18','','10611','YugabyteDB Node [{#NODE.NAME}]: Node is master','yugabytedb.node.master[{#NODE.NAME}]','0','31d','365d','0','3','','','','',NULL,'1178','','','0','','','','','2',NULL,'The current role of the node [{#NODE.NAME}]: 0 = False 1 = True','0','30d','0','','46730','','','','','200','1','0','','','0','0','0','0','0','0','0','cec0b919572a4dc8bec57f7da073b18f','0','2','0'), ('46737','18','','10611','YugabyteDB Node [{#NODE.NAME}]: Read OPS','yugabytedb.node.read.ops[{#NODE.NAME}]','0','31d','365d','0','0','','!OPS','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of read operations per second for the node [{#NODE.NAME}].','0','30d','0','','46730','','','','','200','1','0','','','0','0','0','0','0','0','0','03a684fb8e824ae2a21af206f03c06e3','0','2','0'), ('46738','18','','10611','YugabyteDB Node [{#NODE.NAME}]: Node is read replica','yugabytedb.node.read.replica[{#NODE.NAME}]','0','31d','365d','0','3','','','','',NULL,'1178','','','0','','','','','2',NULL,'This item indicates if the node [{#NODE.NAME}] is a read replica: 0 = False 1 = True','0','30d','0','','46730','','','','','200','1','0','','','0','0','0','0','0','0','0','fc64e30fea8349b2b4d4de3c23ea8fd7','0','2','0'), ('46739','18','','10611','YugabyteDB Node [{#NODE.NAME}]: Region','yugabytedb.node.region[{#NODE.NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The cloud information for the node [{#NODE.NAME}] about the region.','0','30d','0','','46730','','','','','200','1','0','','','0','0','0','0','0','0','0','d77f37a386514286ac3fd4a37ad0e21e','0','2','0'), ('46740','18','','10611','YugabyteDB Node [{#NODE.NAME}]: Total SST file size','yugabytedb.node.sst.file.size.total[{#NODE.NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size of all SST files.','0','30d','0','','46730','','','','','200','1','0','','','0','0','0','0','0','0','0','71b0a67ae775473eaaed77349b781ace','0','2','0'), ('46741','18','','10611','YugabyteDB Node [{#NODE.NAME}]: Uncompressed SST file size','yugabytedb.node.sst.file.size.uncompressed[{#NODE.NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size of uncompressed SST files.','0','30d','0','','46730','','','','','200','1','0','','','0','0','0','0','0','0','0','ec3598775f434cc88c0880fd2f944a14','0','2','0'), ('46742','18','','10611','YugabyteDB Node [{#NODE.NAME}]: Node status','yugabytedb.node.status[{#NODE.NAME}]','0','31d','365d','0','3','','','','',NULL,'1183','','','0','','','','','2',NULL,'The current status of the node [{#NODE.NAME}]: 0 = Down 1 = Up','0','30d','0','','46730','','','','','200','1','0','','','0','0','0','0','0','0','0','bfc6070e65d041ca83ab1290aa0654aa','0','2','0'), ('46743','18','','10611','YugabyteDB Node [{#NODE.NAME}]: Node is TServer','yugabytedb.node.tserver[{#NODE.NAME}]','0','31d','365d','0','3','','','','',NULL,'1178','','','0','','','','','2',NULL,'This item indicates if the node [{#NODE.NAME}] is a TServer node: 0 = False 1 = True','0','30d','0','','46730','','','','','200','1','0','','','0','0','0','0','0','0','0','488ef7da37704fc690109350dfb04f06','0','2','0'), ('46744','18','','10611','YugabyteDB Node [{#NODE.NAME}]: Write OPS','yugabytedb.node.write.ops[{#NODE.NAME}]','0','31d','365d','0','0','','!OPS','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of write operations per second for the node [{#NODE.NAME}].','0','30d','0','','46730','','','','','200','1','0','','','0','0','0','0','0','0','0','f11fcb4fd9184a74bfd1081c10124735','0','2','0'), ('46745','18','','10611','YugabyteDB Node [{#NODE.NAME}]: Zone','yugabytedb.node.zone[{#NODE.NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The cloud information for the node [{#NODE.NAME}] about the zone.','0','30d','0','','46730','','','','','200','1','0','','','0','0','0','0','0','0','0','899786037cb24cd3a0378592e3096131','0','2','0'), ('47111','18','','10627','[{#ALARM_NAME}]: State','aws.elb.nlb.alarm.state["{#ALARM_NAME}"]','0','31d','365d','0','3','','','','',NULL,'1220','','','0','','','','','2',NULL,'The value of the alarm state. Possible values: 0 - OK; 1 - INSUFFICIENT_DATA; 2 - ALARM. Alarm description: `{#ALARM_DESCRIPTION}`','0','7d','0','','47108','','','','','200','1','0','','','0','0','0','0','0','0','0','3e039e2d86654095b0c9fa93f7273cab','0','2','0'), ('47112','18','','10627','[{#ALARM_NAME}]: State reason','aws.elb.nlb.alarm.state_reason["{#ALARM_NAME}"]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'An explanation for the alarm state reason in text format. Alarm description: `{#ALARM_DESCRIPTION}`','0','7d','0','','47108','','','','','200','1','0','','','0','0','0','0','0','0','0','8be7e86d50be4324ac6b7b8f20350eb0','0','2','0'), ('47113','18','','10076','FS [{#FSNAME}]: Space: Used, in %','vfs.fs.dependent.size[{#FSNAME},pused]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Calculated as the percentage of currently used space compared to the maximum available space.','0','7d','0','','44428','','','','','200','1','0','','','0','0','0','0','0','0','0','e0c53ff31b8145b5bb887bb61d077fc4','0','2','0'), ('47114','18','','10075','FS [{#FSNAME}]: Space: Used, in %','vfs.fs.dependent.size[{#FSNAME},pused]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Calculated as the percentage of currently used space compared to the maximum available space.','0','7d','0','','44431','','','','','200','1','0','','','0','0','0','0','0','0','0','5db5afc2278744efadcf71d8531e40fa','0','2','0'), ('47115','18','','10077','FS [{#FSNAME}]: Space: Used, in %','vfs.fs.dependent.size[{#FSNAME},pused]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Calculated as the percentage of currently used space compared to the maximum available space.','0','7d','0','','44434','','','','','200','1','0','','','0','0','0','0','0','0','0','af6e353e663348399a00dffcf44e146e','0','2','0'), ('47116','18','','10001','FS [{#FSNAME}]: Space: Available','vfs.fs.dependent.size[{#FSNAME},free]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Available storage space expressed in bytes.','0','7d','0','','44438','','','','','200','1','0','','','0','0','0','0','0','0','0','d53e00855fb349e29bd74146e55265ae','0','2','0'), ('47118','18','','10343','FS [{#FSNAME}]: Space: Available','vfs.fs.dependent.size[{#FSNAME},free]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Available storage space expressed in bytes.','0','7d','0','','44443','','','','','200','1','0','','','0','0','0','0','0','0','0','4c658024f34c49d7bd5f6ca9b33c13d7','0','2','0'), ('47121','18','','10248','FS [{#FSNAME}]: Space: Available','vfs.fs.free[dskAvail.{#SNMPINDEX}]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'UCD-SNMP-MIB::dskEntry Available storage space is calculated from two portions: dskAvailHigh dskAvailLow Together they compose 64-bit number.','0','7d','0','','47120','','','','','200','1','0','','','0','0','0','0','0','0','0','eb734d1738e24cbaaacf48fe1396e0f0','0','2','0'), ('47122','18','','10079','FS [{#FSNAME}]: Space: Used, in %','vfs.fs.dependent.size[{#FSNAME},pused]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Calculated as the percentage of currently used space compared to the maximum available space.','0','7d','0','','44446','','','','','200','1','0','','','0','0','0','0','0','0','0','8630aad4545e4a9ea3bcd4feabfb0444','0','2','0'), ('47123','18','','10074','FS [{#FSNAME}]: Space: Used, in %','vfs.fs.dependent.size[{#FSNAME},pused]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Calculated as the percentage of currently used space compared to the maximum available space.','0','7d','0','','44448','','','','','200','1','0','','','0','0','0','0','0','0','0','bb0110994e1243d6b6763c41b34cfee1','0','2','0'), ('47124','18','','10078','FS [{#FSNAME}]: Space: Used, in %','vfs.fs.dependent.size[{#FSNAME},pused]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Calculated as the percentage of currently used space compared to the maximum available space.','0','7d','0','','44451','','','','','200','1','0','','','0','0','0','0','0','0','0','3b4f23722c49429ba5b6a6ecccb52d95','0','2','0'), ('47125','18','','10081','FS [{#FSLABEL}({#FSNAME})]: Space: Available','vfs.fs.dependent.size[{#FSNAME},free]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Available storage space expressed in bytes.','0','7d','0','','44454','','','','','200','1','0','','','0','0','0','0','0','0','0','e2c12d52e2f14720b9458b89a8b4e41a','0','2','0'), ('47126','18','','10351','FS [{#FSLABEL}({#FSNAME})]: Space: Available','vfs.fs.dependent.size[{#FSNAME},free]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Available storage space expressed in bytes.','0','7d','0','','44456','','','','','200','1','0','','','0','0','0','0','0','0','0','821daa0e25a2456ca637e441a844dfe6','0','2','0'), ('47279','18','','10503','Get edges','velocloud.get.edges','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The JSON with result of Velocloud edge SD Wan.','0','7d','0','','39744','','','','','200','1','0','','','0','0','0','0','0','0','0','2663be988d974aca92d41495b423cc85','0','2','0'), ('47298','18','','10632','[{#ALARM_NAME}]: State','aws.lambda.alarm.state["{#ALARM_NAME}"]','0','31d','365d','0','3','','','','',NULL,'1225','','','0','','','','','2',NULL,'The value of the alarm state. Possible values: 0 - OK; 1 - INSUFFICIENT_DATA; 2 - ALARM. Alarm description: `{#ALARM_DESCRIPTION}`','0','7d','0','','47297','','','','','200','1','0','','','0','0','0','0','0','0','0','2e34c9ed36c64a6aade389e739340529','0','2','0'), ('47299','18','','10632','[{#ALARM_NAME}]: State reason','aws.lambda.alarm.state_reason["{#ALARM_NAME}"]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'An explanation for the alarm state reason in text format. Alarm description: `{#ALARM_DESCRIPTION}`','0','7d','0','','47297','','','','','200','1','0','','','0','0','0','0','0','0','0','7a314dfe3f4e4142bf4827f6cb6285bd','0','2','0'), ('47559','18','','10047','Proxy group [{#PROXY.GROUP.NAME}]: Available proxies, in %','zabbix.proxy.group.avail.proxies.percent[{#PROXY.GROUP.NAME}]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Percentage of available proxies in the Zabbix proxy group.','0','7d','0','','47556','','','','','200','1','0','','','0','0','0','0','0','0','0','f48cf3314ff6460596468e7e6b8525de','0','2','0'), ('47560','18','','10047','Proxy group [{#PROXY.GROUP.NAME}]: Available proxies','zabbix.proxy.group.avail.proxies[{#PROXY.GROUP.NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of available proxies in the Zabbix proxy group.','0','7d','0','','47556','','','','','200','1','0','','','0','0','0','0','0','0','0','848a42e7022f4cfab65044e710859f80','0','2','0'), ('47561','18','','10047','Proxy group [{#PROXY.GROUP.NAME}]: Failover period','zabbix.proxy.group.failover[{#PROXY.GROUP.NAME}]','0','31d','365d','0','0','','s','','',NULL,'1236','','','0','','','','','2',NULL,'Failover period in the Zabbix proxy group.','0','7d','0','','47555','','','','','200','1','0','','','0','0','0','0','0','0','0','7fa43a19cb4a448bbf7b1bc3ddf17594','0','2','0'), ('47562','18','','10047','Proxy group [{#PROXY.GROUP.NAME}]: Minimum number of proxies','zabbix.proxy.group.online.min[{#PROXY.GROUP.NAME}]','0','31d','365d','0','0','','','','',NULL,'1236','','','0','','','','','2',NULL,'Minimum number of proxies online in the Zabbix proxy group.','0','7d','0','','47555','','','','','200','1','0','','','0','0','0','0','0','0','0','150df878b45d4a259131f8bdf9e89fc1','0','2','0'), ('47563','18','','10047','Proxy group [{#PROXY.GROUP.NAME}]: State','zabbix.proxy.group.state[{#PROXY.GROUP.NAME}]','0','31d','365d','0','3','','','','',NULL,'1237','','','0','','','','','2',NULL,'State of the Zabbix proxy group. Possible values: 0 - unknown; 1 - offline; 2 - recovering; 3 - online; 4 - degrading.','0','7d','0','','47556','','','','','200','1','0','','','0','0','0','0','0','0','0','8a2d84926a4b4e9a810dfac576dd8451','0','2','0'), ('47671','18','','10637','Number of running processes','apache.proc.num[{#APACHE.NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of running processes {#APACHE.NAME}.','0','7d','0','','47670','','','','','200','1','0','','','0','0','0','0','0','0','0','5f29e764f0024047bd955388b6585442','0','2','0'), ('47672','18','','10637','Memory usage, %','apache.proc.pmem[{#APACHE.NAME}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of real memory used by a process {#APACHE.NAME}.','0','7d','0','','47670','','','','','200','1','0','','','0','0','0','0','0','0','0','77f232c075384a11a3aefd31a55c0113','0','2','0'), ('47673','18','','10637','Memory usage (rss)','apache.proc.rss[{#APACHE.NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The summary of resident set size memory used by a process {#APACHE.NAME} expressed in bytes.','0','7d','0','','47670','','','','','200','1','0','','','0','0','0','0','0','0','0','0ded808ba0b34d03865a288dd9bb0672','0','2','0'), ('47674','18','','10637','Memory usage (vsize)','apache.proc.vmem[{#APACHE.NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The summary of virtual memory used by a process {#APACHE.NAME} expressed in bytes.','0','7d','0','','47670','','','','','200','1','0','','','0','0','0','0','0','0','0','ba4d0197f2cb484597175ffd8f693dce','0','2','0'), ('47705','18','','10639','Number of running processes','nginx.proc.num[{#NGINX.NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of running processes {#NGINX.NAME}.','0','7d','0','','47704','','','','','200','1','0','','','0','0','0','0','0','0','0','f75fa5d7714941d0b25c9e8767a7a7f7','0','2','0'), ('47706','18','','10639','Memory usage, %','nginx.proc.pmem[{#NGINX.NAME}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of real memory used by a process {#NGINX.NAME}.','0','7d','0','','47704','','','','','200','1','0','','','0','0','0','0','0','0','0','73bee8a0acc84c678a0b1974dbb82964','0','2','0'), ('47707','18','','10639','Memory usage (rss)','nginx.proc.rss[{#NGINX.NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The summary of resident set size memory used by a process {#NGINX.NAME} expressed in bytes.','0','7d','0','','47704','','','','','200','1','0','','','0','0','0','0','0','0','0','e799880b7374482196780173461213af','0','2','0'), ('47708','18','','10639','Memory usage (vsize)','nginx.proc.vmem[{#NGINX.NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The summary of virtual memory used by a process {#NGINX.NAME} expressed in bytes.','0','7d','0','','47704','','','','','200','1','0','','','0','0','0','0','0','0','0','d993483fab9a41f5b5a6457e09647288','0','2','0'), ('47981','18','','10645','Number of running processes','php-fpm.proc.num[{#PHP_FPM.NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of running processes `{#PHP_FPM.NAME}`.','0','7d','0','','47980','','','','','200','1','0','','','0','0','0','0','0','0','0','95e07134044443c894a4ea47404b548e','0','2','0'), ('47982','18','','10645','Memory usage, %','php-fpm.proc.pmem[{#PHP_FPM.NAME}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of real memory used by a process `{#PHP_FPM.NAME}`.','0','7d','0','','47980','','','','','200','1','0','','','0','0','0','0','0','0','0','cceec896a859443e9323a8d738e5620f','0','2','0'), ('47983','18','','10645','Memory usage (rss)','php-fpm.proc.rss[{#PHP_FPM.NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The summary of resident set size memory used by a process `{#PHP_FPM.NAME}` expressed in bytes.','0','7d','0','','47980','','','','','200','1','0','','','0','0','0','0','0','0','0','2001d850797548389aca5d2b90e68dc1','0','2','0'), ('47984','18','','10645','Memory usage (vsize)','php-fpm.proc.vmem[{#PHP_FPM.NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The summary of virtual memory used by a process `{#PHP_FPM.NAME}` expressed in bytes.','0','7d','0','','47980','','','','','200','1','0','','','0','0','0','0','0','0','0','8a1114f7c4604d43b16627fcc9cc7604','0','2','0'), ('48185','18','','10648','DB [{#DBNAME}]: Blocks hit per second','pgsql.dbstat.blks_hit.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of times per second disk blocks were found already in the buffer cache, so that a read was not necessary.','0','7d','0','','48181','','','','','200','1','0','','','0','0','0','0','0','0','0','ce43087066804e828d8a64eb0cc13ac6','0','2','0'), ('48186','18','','10648','DB [{#DBNAME}]: Disk blocks read per second','pgsql.dbstat.blks_read.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of disk blocks read per second in this database.','0','7d','0','','48181','','','','','200','1','0','','','0','0','0','0','0','0','0','01d227b759d7404481e12e0daa90b3bb','0','2','0'), ('48187','18','','10648','DB [{#DBNAME}]: Disk blocks read time per second','pgsql.dbstat.blk_read_time.rate["{#DBNAME}"]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Time spent reading data file blocks by backends per second.','0','7d','0','','48181','','','','','200','1','0','','','0','0','0','0','0','0','0','1592dc3a802944cf8946bfee38652d44','0','2','0'), ('48188','18','','10648','DB [{#DBNAME}]: Disk blocks write time','pgsql.dbstat.blk_write_time.rate["{#DBNAME}"]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Time spent writing data file blocks by backends per second.','0','7d','0','','48181','','','','','200','1','0','','','0','0','0','0','0','0','0','491b9e40b3a243d6b22fb24124d98293','0','2','0'), ('48189','18','','10648','DB [{#DBNAME}]: Checksum failures','pgsql.dbstat.checksum_failures.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,'1261','','','0','','','','','2',NULL,'Number of data page checksum failures detected in this database.','0','7d','0','','48181','','','','','200','1','0','','','0','0','0','0','0','0','0','9540fc8baf2c4b0b81e4d8eafe1f57cf','0','2','0'), ('48190','18','','10648','DB [{#DBNAME}]: Detected conflicts per second','pgsql.dbstat.conflicts.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of queries canceled due to conflicts with recovery in this database per second.','0','7d','0','','48181','','','','','200','1','0','','','0','0','0','0','0','0','0','3e48cd0cf7214f77b8b6d9e76c1def00','0','2','0'), ('48191','18','','10648','DB [{#DBNAME}]: Detected deadlocks per second','pgsql.dbstat.deadlocks.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of detected deadlocks in this database per second.','0','7d','0','','48181','','','','','200','1','0','','','0','0','0','0','0','0','0','43aab996a12a49c582d46f96f999ab89','0','2','0'), ('48192','18','','10648','DB [{#DBNAME}]: Backends connected','pgsql.dbstat.numbackends["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of backends currently connected to this database.','0','7d','0','','48181','','','','','200','1','0','','','0','0','0','0','0','0','0','2e8648e519524533b430bdf863561ba4','0','2','0'), ('48193','18','','10648','DB [{#DBNAME}]: Temp_bytes written per second','pgsql.dbstat.temp_bytes.rate["{#DBNAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total amount of data written to temporary files by queries in this database.','0','7d','0','','48181','','','','','200','1','0','','','0','0','0','0','0','0','0','d2a01165e7c24969b26cdebe42f53c39','0','2','0'), ('48194','18','','10648','DB [{#DBNAME}]: Temp_files created per second','pgsql.dbstat.temp_files.rate["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of temporary files created by queries in this database.','0','7d','0','','48181','','','','','200','1','0','','','0','0','0','0','0','0','0','74dc57aaeba74b599cda10817961d5da','0','2','0'), ('48195','18','','10648','DB [{#DBNAME}]: Tuples deleted per second','pgsql.dbstat.tup_deleted.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of rows deleted by queries in this database per second.','0','7d','0','','48181','','','','','200','1','0','','','0','0','0','0','0','0','0','ec42f02be51b49789d1ad1fc3d636be4','0','2','0'), ('48196','18','','10648','DB [{#DBNAME}]: Tuples fetched per second','pgsql.dbstat.tup_fetched.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of rows fetched by queries in this database per second.','0','7d','0','','48181','','','','','200','1','0','','','0','0','0','0','0','0','0','ffa697ab71734806aac1102c7d133521','0','2','0'), ('48197','18','','10648','DB [{#DBNAME}]: Tuples inserted per second','pgsql.dbstat.tup_inserted.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of rows inserted by queries in this database per second.','0','7d','0','','48181','','','','','200','1','0','','','0','0','0','0','0','0','0','8fe771d00b5648758c0d568cb1d7b207','0','2','0'), ('48198','18','','10648','DB [{#DBNAME}]: Tuples returned per second','pgsql.dbstat.tup_returned.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of rows returned by queries in this database per second.','0','7d','0','','48181','','','','','200','1','0','','','0','0','0','0','0','0','0','aeb15898d242406393108df7bfd52881','0','2','0'), ('48199','18','','10648','DB [{#DBNAME}]: Tuples updated per second','pgsql.dbstat.tup_updated.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of rows updated by queries in this database per second.','0','7d','0','','48181','','','','','200','1','0','','','0','0','0','0','0','0','0','22dee9fb2db8478caf1fd83f415414ef','0','2','0'), ('48200','18','','10648','DB [{#DBNAME}]: Commits per second','pgsql.dbstat.xact_commit.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of transactions in this database that have been committed per second.','0','7d','0','','48181','','','','','200','1','0','','','0','0','0','0','0','0','0','2bfdd988bca74df5a31dbf3727aa10a0','0','2','0'), ('48201','18','','10648','DB [{#DBNAME}]: Rollbacks per second','pgsql.dbstat.xact_rollback.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of transactions in this database that have been rolled back.','0','7d','0','','48181','','','','','200','1','0','','','0','0','0','0','0','0','0','b7edf603e83a48bca580e932fc87c5cf','0','2','0'), ('48202','18','','10648','DB [{#DBNAME}]: Num of accessexclusive locks','pgsql.locks.accessexclusive["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of accessexclusive locks for this database.','0','7d','0','','48182','','','','','200','1','0','','','0','0','0','0','0','0','0','af381c8bd21c4189b6b8230325c97358','0','2','0'), ('48203','18','','10648','DB [{#DBNAME}]: Num of accessshare locks','pgsql.locks.accessshare["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of accessshare locks for this database.','0','7d','0','','48182','','','','','200','1','0','','','0','0','0','0','0','0','0','fe133b91b9a3474ab5ed12055c277969','0','2','0'), ('48204','18','','10648','DB [{#DBNAME}]: Num of exclusive locks','pgsql.locks.exclusive["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of exclusive locks for this database.','0','7d','0','','48182','','','','','200','1','0','','','0','0','0','0','0','0','0','3a28968abd5945cebb1157ae74e2de7d','0','2','0'), ('48205','18','','10648','DB [{#DBNAME}]: Num of rowexclusive locks','pgsql.locks.rowexclusive["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of rowexclusive locks for this database.','0','7d','0','','48182','','','','','200','1','0','','','0','0','0','0','0','0','0','8bb0fe1e02ef4ad19f4367dbc67e9bc0','0','2','0'), ('48206','18','','10648','DB [{#DBNAME}]: Num of rowshare locks','pgsql.locks.rowshare["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of rowshare locks for this database.','0','7d','0','','48182','','','','','200','1','0','','','0','0','0','0','0','0','0','9821b111e1e741a592c962c503129eae','0','2','0'), ('48207','18','','10648','DB [{#DBNAME}]: Num of sharerowexclusive locks','pgsql.locks.sharerowexclusive["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of total sharerowexclusive for this database.','0','7d','0','','48182','','','','','200','1','0','','','0','0','0','0','0','0','0','94b2491b18d74345b5bd33a523049cbf','0','2','0'), ('48208','18','','10648','DB [{#DBNAME}]: Num of shareupdateexclusive locks','pgsql.locks.shareupdateexclusive["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of shareupdateexclusive locks for this database.','0','7d','0','','48182','','','','','200','1','0','','','0','0','0','0','0','0','0','888f4f0f47b54d708d87b22efa25f0e5','0','2','0'), ('48209','18','','10648','DB [{#DBNAME}]: Num of share locks','pgsql.locks.share["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of share locks for this database.','0','7d','0','','48182','','','','','200','1','0','','','0','0','0','0','0','0','0','70abd9b269f94310875c1777c089741b','0','2','0'), ('48210','18','','10648','DB [{#DBNAME}]: Num of locks total','pgsql.locks.total["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of locks in this database.','0','7d','0','','48182','','','','','200','1','0','','','0','0','0','0','0','0','0','19d118b8a99845ef8d2eaaa5ec38f50d','0','2','0'), ('48211','18','','10648','DB [{#DBNAME}]: Queries slow maintenance count','pgsql.queries.mro.slow_count["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Slow maintenance query count for this database.','0','7d','0','','48183','','','','','200','1','0','','','0','0','0','0','0','0','0','f8c0e60c70d14103b39b1a6218093c0a','0','2','0'), ('48212','18','','10648','DB [{#DBNAME}]: Queries max maintenance time','pgsql.queries.mro.time_max["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Max maintenance query time for this database.','0','7d','0','','48183','','','','','200','1','0','','','0','0','0','0','0','0','0','8d16b715b12648f5b5dca0f80857e46e','0','2','0'), ('48213','18','','10648','DB [{#DBNAME}]: Queries sum maintenance time','pgsql.queries.mro.time_sum["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Sum maintenance query time for this database.','0','7d','0','','48183','','','','','200','1','0','','','0','0','0','0','0','0','0','af2c1c09b2a04911b2e6e892d1051e94','0','2','0'), ('48214','18','','10648','DB [{#DBNAME}]: Queries slow query count','pgsql.queries.query.slow_count["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Slow query count for this database.','0','7d','0','','48183','','','','','200','1','0','','','0','0','0','0','0','0','0','bd070ec5cbcf42a7a2dfa56dd3eca7a3','0','2','0'), ('48215','18','','10648','DB [{#DBNAME}]: Queries max query time','pgsql.queries.query.time_max["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Max query time for this database.','0','7d','0','','48183','','','','','200','1','0','','','0','0','0','0','0','0','0','827abbb549b640f28a7984ba157de73e','0','2','0'), ('48216','18','','10648','DB [{#DBNAME}]: Queries sum query time','pgsql.queries.query.time_sum["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Sum query time for this database.','0','7d','0','','48183','','','','','200','1','0','','','0','0','0','0','0','0','0','93a773701de54ce3a3af3d651167c0a9','0','2','0'), ('48217','18','','10648','DB [{#DBNAME}]: Queries slow transaction count','pgsql.queries.tx.slow_count["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Slow transaction query count for this database.','0','7d','0','','48183','','','','','200','1','0','','','0','0','0','0','0','0','0','ee6fb28b33424ffab8e336280cfe5d7e','0','2','0'), ('48218','18','','10648','DB [{#DBNAME}]: Queries max transaction time','pgsql.queries.tx.time_max["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Max transaction query time for this database.','0','7d','0','','48183','','','','','200','1','0','','','0','0','0','0','0','0','0','73c67fc53f944fb6a15c0e0776ba4cf3','0','2','0'), ('48219','18','','10648','DB [{#DBNAME}]: Queries sum transaction time','pgsql.queries.tx.time_sum["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Sum transaction query time for this database.','0','7d','0','','48183','','','','','200','1','0','','','0','0','0','0','0','0','0','62771b2b28f94f93b54ea5e31f336938','0','2','0'), ('48220','18','','10648','Application [{#APPLICATION_NAME}]: Replication flush lag','pgsql.replication.process.flush_lag["{#APPLICATION_NAME}"]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','7d','0','','48184','','','','','200','1','0','','','0','0','0','0','0','0','0','33541a2ce9894c71aef710d1e227dab2','0','2','0'), ('48221','18','','10648','Application [{#APPLICATION_NAME}]: Replication replay lag','pgsql.replication.process.replay_lag["{#APPLICATION_NAME}"]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','7d','0','','48184','','','','','200','1','0','','','0','0','0','0','0','0','0','4ef7353e3b904f33ac2b592d5cbfba62','0','2','0'), ('48222','18','','10648','Application [{#APPLICATION_NAME}]: Replication write lag','pgsql.replication.process.write_lag["{#APPLICATION_NAME}"]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','7d','0','','48184','','','','','200','1','0','','','0','0','0','0','0','0','0','3beb600f296c4263b92434a46bd946cd','0','2','0'), ('48274','18','','10649','DB [{#DBNAME}]: Blocks hit per second','pgsql.dbstat.blks_hit.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of times per second disk blocks were found already in the buffer cache, so that a read was not necessary.','0','7d','0','','48267','','','','','200','1','0','','','0','0','0','0','0','0','0','aa8e864297914f25bb6cc6b914871a46','0','2','0'), ('48275','18','','10649','DB [{#DBNAME}]: Disk blocks read per second','pgsql.dbstat.blks_read.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of disk blocks read per second in this database.','0','7d','0','','48267','','','','','200','1','0','','','0','0','0','0','0','0','0','69d6cc93dbff4669a18b6e12fb6e8b7a','0','2','0'), ('48276','18','','10649','DB [{#DBNAME}]: Detected conflicts per second','pgsql.dbstat.conflicts.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of queries canceled due to conflicts with recovery in this database per second.','0','7d','0','','48267','','','','','200','1','0','','','0','0','0','0','0','0','0','8894ff8a7e4641559efd456a9024ef9a','0','2','0'), ('48277','18','','10649','DB [{#DBNAME}]: Detected deadlocks per second','pgsql.dbstat.deadlocks.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of detected deadlocks in this database per second.','0','7d','0','','48267','','','','','200','1','0','','','0','0','0','0','0','0','0','8a3dfbedb1f54b93bc6ca90d9476677c','0','2','0'), ('48278','18','','10649','DB [{#DBNAME}]: Temp_bytes written per second','pgsql.dbstat.temp_bytes.rate["{#DBNAME}"]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total amount of data written to temporary files by queries in this database.','0','7d','0','','48267','','','','','200','1','0','','','0','0','0','0','0','0','0','eabd8d2f4a9d4a48be75d0d56eb48e17','0','2','0'), ('48279','18','','10649','DB [{#DBNAME}]: Temp_files created per second','pgsql.dbstat.temp_files.rate["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of temporary files created by queries in this database.','0','7d','0','','48267','','','','','200','1','0','','','0','0','0','0','0','0','0','51288ac46f5c49ae8cafe421bbb41d29','0','2','0'), ('48280','18','','10649','DB [{#DBNAME}]: Tuples deleted per second','pgsql.dbstat.tup_deleted.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of rows deleted by queries in this database per second.','0','7d','0','','48267','','','','','200','1','0','','','0','0','0','0','0','0','0','7ad48d3b888a4f24a091a597e3189fee','0','2','0'), ('48281','18','','10649','DB [{#DBNAME}]: Tuples fetched per second','pgsql.dbstat.tup_fetched.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of rows fetched by queries in this database per second.','0','7d','0','','48267','','','','','200','1','0','','','0','0','0','0','0','0','0','c0688782315f49aba4a468d9d0bac3e6','0','2','0'), ('48282','18','','10649','DB [{#DBNAME}]: Tuples inserted per second','pgsql.dbstat.tup_inserted.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of rows inserted by queries in this database per second.','0','7d','0','','48267','','','','','200','1','0','','','0','0','0','0','0','0','0','308fc84decc04b738d3e00cdf8427164','0','2','0'), ('48283','18','','10649','DB [{#DBNAME}]: Tuples returned per second','pgsql.dbstat.tup_returned.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of rows returned by queries in this database per second.','0','7d','0','','48267','','','','','200','1','0','','','0','0','0','0','0','0','0','42125b8816044bc09ec4904ea78402b0','0','2','0'), ('48284','18','','10649','DB [{#DBNAME}]: Tuples updated per second','pgsql.dbstat.tup_updated.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of rows updated by queries in this database per second.','0','7d','0','','48267','','','','','200','1','0','','','0','0','0','0','0','0','0','495797c1a134404d88c4216aebff3f28','0','2','0'), ('48285','18','','10649','DB [{#DBNAME}]: Commits per second','pgsql.dbstat.xact_commit.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of transactions in this database that have been committed per second.','0','7d','0','','48267','','','','','200','1','0','','','0','0','0','0','0','0','0','88b787af729944e8b262ca99dcefe8a3','0','2','0'), ('48286','18','','10649','DB [{#DBNAME}]: Rollbacks per second','pgsql.dbstat.xact_rollback.rate["{#DBNAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of transactions in this database that have been rolled back.','0','7d','0','','48267','','','','','200','1','0','','','0','0','0','0','0','0','0','2f31f5f8b36c4742b9a74862b17b30c0','0','2','0'), ('48287','18','','10649','DB [{#DBNAME}]: Queries slow maintenance count','pgsql.queries.mro.slow_count["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Slow maintenance query count for this database.','0','7d','0','','48271','','','','','200','1','0','','','0','0','0','0','0','0','0','ed9c08ef16c845c08788de774405cbeb','0','2','0'), ('48288','18','','10649','DB [{#DBNAME}]: Queries max maintenance time','pgsql.queries.mro.time_max["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Max maintenance query time for this database.','0','7d','0','','48271','','','','','200','1','0','','','0','0','0','0','0','0','0','a405b92ed32c4424a4e0136016370da4','0','2','0'), ('48289','18','','10649','DB [{#DBNAME}]: Queries sum maintenance time','pgsql.queries.mro.time_sum["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Sum maintenance query time for this database.','0','7d','0','','48271','','','','','200','1','0','','','0','0','0','0','0','0','0','58406e650bf74db2ab216d35f4ef8f60','0','2','0'), ('48290','18','','10649','DB [{#DBNAME}]: Queries slow query count','pgsql.queries.query.slow_count["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Slow query count for this database.','0','7d','0','','48271','','','','','200','1','0','','','0','0','0','0','0','0','0','04b8af083191408284aab798ed5c2ac4','0','2','0'), ('48291','18','','10649','DB [{#DBNAME}]: Queries max query time','pgsql.queries.query.time_max["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Max query time for this database.','0','7d','0','','48271','','','','','200','1','0','','','0','0','0','0','0','0','0','d47d6e5857534981aeb5e92ef6423c7d','0','2','0'), ('48292','18','','10649','DB [{#DBNAME}]: Queries sum query time','pgsql.queries.query.time_sum["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Sum query time for this database.','0','7d','0','','48271','','','','','200','1','0','','','0','0','0','0','0','0','0','a5c184f0d7c74a52983cccb836fe3d61','0','2','0'), ('48293','18','','10649','DB [{#DBNAME}]: Queries slow transaction count','pgsql.queries.tx.slow_count["{#DBNAME}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Slow transaction query count for this database.','0','7d','0','','48271','','','','','200','1','0','','','0','0','0','0','0','0','0','4b71f7bbc17c4695beb75cfc9bc67da0','0','2','0'), ('48294','18','','10649','DB [{#DBNAME}]: Queries max transaction time','pgsql.queries.tx.time_max["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Max transaction query time for this database.','0','7d','0','','48271','','','','','200','1','0','','','0','0','0','0','0','0','0','5489fc69a7ce45a0a0c0cff565a62189','0','2','0'), ('48295','18','','10649','DB [{#DBNAME}]: Queries sum transaction time','pgsql.queries.tx.time_sum["{#DBNAME}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Sum transaction query time for this database.','0','7d','0','','48271','','','','','200','1','0','','','0','0','0','0','0','0','0','3283a1520f1b4adabf01964efdaaa31c','0','2','0'), ('48506','18','','10654','Fan [{#SENSOR_NAME}]: Speed','dell.server.sensor.fan.speed[{#SENSOR_NAME}]','0','31d','365d','0','3','','!rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'Sensor value.','0','7d','0','','48488','','','','','200','1','0','','','0','0','0','0','0','0','0','5704a3a505db486a806b52af48f48921','0','2','0'), ('48507','18','','10654','Fan [{#SENSOR_NAME}]: Status','dell.server.sensor.fan.status[{#SENSOR_NAME}]','0','31d','0','0','3','','','','',NULL,'1288','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48488','','','','','200','1','0','','','0','0','0','0','0','0','0','3bcd23e100f54b1684667755be3cd9d0','0','2','0'), ('48508','18','','10654','Power supply [{#SENSOR_NAME}]: Current sensor status','dell.server.sensor.psu.current.status[{#SENSOR_NAME}]','0','31d','0','0','3','','','','',NULL,'1288','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48498','','','','','200','1','0','','','0','0','0','0','0','0','0','575743aaeed14887b744111150773833','0','2','0'), ('48509','18','','10654','Power supply [{#SENSOR_NAME}]: Current','dell.server.sensor.psu.current[{#SENSOR_NAME}]','0','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'Sensor value.','0','7d','0','','48498','','','','','200','1','0','','','0','0','0','0','0','0','0','855af0a279b840caad6283cb9b9e3a2f','0','2','0'), ('48510','18','','10654','Power supply [{#SENSOR_NAME}]: Voltage sensor status','dell.server.sensor.psu.voltage.status[{#SENSOR_NAME}]','0','31d','0','0','3','','','','',NULL,'1288','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48498','','','','','200','1','0','','','0','0','0','0','0','0','0','d480ce48057e4515827b02ed73e1bc2f','0','2','0'), ('48511','18','','10654','Power supply [{#SENSOR_NAME}]: Voltage','dell.server.sensor.psu.voltage[{#SENSOR_NAME}]','0','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'Sensor value.','0','7d','0','','48498','','','','','200','1','0','','','0','0','0','0','0','0','0','5ec65db57336463f87efc6c479dcdae9','0','2','0'), ('48512','18','','10654','Probe [{#SENSOR_NAME}]: Status','dell.server.sensor.temp.status[{#SENSOR_NAME}]','0','31d','0','0','3','','','','',NULL,'1288','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48499','','','','','200','1','0','','','0','0','0','0','0','0','0','9a02c56447bf46138515a4964e859ae0','0','2','0'), ('48513','18','','10654','Probe [{#SENSOR_NAME}]: Value','dell.server.sensor.temp.value[{#SENSOR_NAME}]','0','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'Sensor value.','0','7d','0','','48499','','','','','200','1','0','','','0','0','0','0','0','0','0','d9fb53a40fb141a3b480776dae81ca58','0','2','0'), ('48622','18','','10435','Fan [{#SENSOR_NAME}]: Speed','dell.server.sensor.fan.speed[{#SENSOR_NAME}]','0','31d','365d','0','3','','!rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'Sensor value.','0','7d','0','','48604','','','','','200','1','0','','','0','0','0','0','0','0','0','8050ebe6a9524177ae9b9edfb8a16344','0','2','0'), ('48623','18','','10435','Fan [{#SENSOR_NAME}]: Status','dell.server.sensor.fan.status[{#SENSOR_NAME}]','0','31d','0','0','3','','','','',NULL,'1309','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48604','','','','','200','1','0','','','0','0','0','0','0','0','0','c2b308a258334ae2b7fc2843cb9507e4','0','2','0'), ('48624','18','','10435','Power supply [{#SENSOR_NAME}]: Current sensor status','dell.server.sensor.psu.current.status[{#SENSOR_NAME}]','0','31d','0','0','3','','','','',NULL,'1309','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48614','','','','','200','1','0','','','0','0','0','0','0','0','0','d73218b82be7405d8087759ac84015ca','0','2','0'), ('48625','18','','10435','Power supply [{#SENSOR_NAME}]: Current','dell.server.sensor.psu.current[{#SENSOR_NAME}]','0','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'Sensor value.','0','7d','0','','48614','','','','','200','1','0','','','0','0','0','0','0','0','0','fb0b401437334d25a0bdb8022d91bf7b','0','2','0'), ('48626','18','','10435','Power supply [{#SENSOR_NAME}]: Voltage sensor status','dell.server.sensor.psu.voltage.status[{#SENSOR_NAME}]','0','31d','0','0','3','','','','',NULL,'1309','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48614','','','','','200','1','0','','','0','0','0','0','0','0','0','1336f4fda6a34fc990ad21519fdcce6e','0','2','0'), ('48627','18','','10435','Power supply [{#SENSOR_NAME}]: Voltage','dell.server.sensor.psu.voltage[{#SENSOR_NAME}]','0','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'Sensor value.','0','7d','0','','48614','','','','','200','1','0','','','0','0','0','0','0','0','0','174081b089e6460f9c18046d331a947b','0','2','0'), ('48628','18','','10435','Probe [{#SENSOR_NAME}]: Status','dell.server.sensor.temp.status[{#SENSOR_NAME}]','0','31d','0','0','3','','','','',NULL,'1309','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48615','','','','','200','1','0','','','0','0','0','0','0','0','0','314cca1840c94c3daae8eb854656d47b','0','2','0'), ('48629','18','','10435','Probe [{#SENSOR_NAME}]: Value','dell.server.sensor.temp.value[{#SENSOR_NAME}]','0','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'Sensor value.','0','7d','0','','48615','','','','','200','1','0','','','0','0','0','0','0','0','0','d6b02e86da6841dfb5059f954f1bf801','0','2','0'), ('48705','18','','10437','Fan [{#SENSOR_NAME}]: Speed','dell.server.sensor.fan.speed[{#SENSOR_NAME}]','0','31d','365d','0','3','','!rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'Sensor value.','0','7d','0','','48687','','','','','200','1','0','','','0','0','0','0','0','0','0','08d19c50b1b04a37b8152b2be05f7d37','0','2','0'), ('48706','18','','10437','Fan [{#SENSOR_NAME}]: Status','dell.server.sensor.fan.status[{#SENSOR_NAME}]','0','31d','0','0','3','','','','',NULL,'1318','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48687','','','','','200','1','0','','','0','0','0','0','0','0','0','432eed8eb06d4c788cce849ff7ec7c66','0','2','0'), ('48707','18','','10437','Power supply [{#SENSOR_NAME}]: Current sensor status','dell.server.sensor.psu.current.status[{#SENSOR_NAME}]','0','31d','0','0','3','','','','',NULL,'1318','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48697','','','','','200','1','0','','','0','0','0','0','0','0','0','46a07d9bb9f64ea9b49b17eb47d1a097','0','2','0'), ('48708','18','','10437','Power supply [{#SENSOR_NAME}]: Current','dell.server.sensor.psu.current[{#SENSOR_NAME}]','0','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'Sensor value.','0','7d','0','','48697','','','','','200','1','0','','','0','0','0','0','0','0','0','56adb48c71ba4fc58d997aec257ed094','0','2','0'), ('48709','18','','10437','Power supply [{#SENSOR_NAME}]: Voltage sensor status','dell.server.sensor.psu.voltage.status[{#SENSOR_NAME}]','0','31d','0','0','3','','','','',NULL,'1318','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48697','','','','','200','1','0','','','0','0','0','0','0','0','0','318af72a5a864d34b226a5ee78272b5b','0','2','0'), ('48710','18','','10437','Power supply [{#SENSOR_NAME}]: Voltage','dell.server.sensor.psu.voltage[{#SENSOR_NAME}]','0','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'Sensor value.','0','7d','0','','48697','','','','','200','1','0','','','0','0','0','0','0','0','0','6d8d7af278e04005891def704ee3cef0','0','2','0'), ('48711','18','','10437','Probe [{#SENSOR_NAME}]: Status','dell.server.sensor.temp.status[{#SENSOR_NAME}]','0','31d','0','0','3','','','','',NULL,'1318','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48698','','','','','200','1','0','','','0','0','0','0','0','0','0','d04293051f6c4814bef3723f63eb0362','0','2','0'), ('48712','18','','10437','Probe [{#SENSOR_NAME}]: Value','dell.server.sensor.temp.value[{#SENSOR_NAME}]','0','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'Sensor value.','0','7d','0','','48698','','','','','200','1','0','','','0','0','0','0','0','0','0','ea4b94edd0664c6f84d28f50042f44be','0','2','0'), ('48794','18','','10656','Fan [{#SENSOR_NAME}]: Speed','dell.server.sensor.fan.speed[{#SENSOR_NAME}]','0','31d','365d','0','3','','!rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'Sensor value.','0','7d','0','','48776','','','','','200','1','0','','','0','0','0','0','0','0','0','266ef80f48d04767aa5b9c6c09ff9817','0','2','0'), ('48795','18','','10656','Fan [{#SENSOR_NAME}]: Status','dell.server.sensor.fan.status[{#SENSOR_NAME}]','0','31d','0','0','3','','','','',NULL,'1327','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48776','','','','','200','1','0','','','0','0','0','0','0','0','0','9740c656008d41a9be415a87bb9e8108','0','2','0'), ('48796','18','','10656','Power supply [{#SENSOR_NAME}]: Current sensor status','dell.server.sensor.psu.current.status[{#SENSOR_NAME}]','0','31d','0','0','3','','','','',NULL,'1327','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48786','','','','','200','1','0','','','0','0','0','0','0','0','0','9a07948391284315a46fb5f58dad20be','0','2','0'), ('48797','18','','10656','Power supply [{#SENSOR_NAME}]: Current','dell.server.sensor.psu.current[{#SENSOR_NAME}]','0','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'Sensor value.','0','7d','0','','48786','','','','','200','1','0','','','0','0','0','0','0','0','0','947e2a4eac99437c863c362149d43c6a','0','2','0'), ('48798','18','','10656','Power supply [{#SENSOR_NAME}]: Voltage sensor status','dell.server.sensor.psu.voltage.status[{#SENSOR_NAME}]','0','31d','0','0','3','','','','',NULL,'1327','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48786','','','','','200','1','0','','','0','0','0','0','0','0','0','3bd24762290a463bb24cbf5d79fc6615','0','2','0'), ('48799','18','','10656','Power supply [{#SENSOR_NAME}]: Voltage','dell.server.sensor.psu.voltage[{#SENSOR_NAME}]','0','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'Sensor value.','0','7d','0','','48786','','','','','200','1','0','','','0','0','0','0','0','0','0','a7cd2e9a40f04d2fad64beabc71c73b9','0','2','0'), ('48800','18','','10656','Probe [{#SENSOR_NAME}]: Status','dell.server.sensor.temp.status[{#SENSOR_NAME}]','0','31d','0','0','3','','','','',NULL,'1327','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48787','','','','','200','1','0','','','0','0','0','0','0','0','0','a92fd77103374ae884c4caec3f8a84ef','0','2','0'), ('48801','18','','10656','Probe [{#SENSOR_NAME}]: Value','dell.server.sensor.temp.value[{#SENSOR_NAME}]','0','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'Sensor value.','0','7d','0','','48787','','','','','200','1','0','','','0','0','0','0','0','0','0','d58c124c61d94c65bb8a3846e659000b','0','2','0'), ('48910','18','','10439','Fan [{#SENSOR_NAME}]: Speed','dell.server.sensor.fan.speed[{#SENSOR_NAME}]','0','31d','365d','0','3','','!rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'Sensor value.','0','7d','0','','48892','','','','','200','1','0','','','0','0','0','0','0','0','0','3c51a997d60c4a019baa7a38ea84cd78','0','2','0'), ('48911','18','','10439','Fan [{#SENSOR_NAME}]: Status','dell.server.sensor.fan.status[{#SENSOR_NAME}]','0','31d','0','0','3','','','','',NULL,'1348','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48892','','','','','200','1','0','','','0','0','0','0','0','0','0','66b4d1db39264237ba7c1c87a9b2a28f','0','2','0'), ('48912','18','','10439','Power supply [{#SENSOR_NAME}]: Current sensor status','dell.server.sensor.psu.current.status[{#SENSOR_NAME}]','0','31d','0','0','3','','','','',NULL,'1348','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48902','','','','','200','1','0','','','0','0','0','0','0','0','0','a8a9fca249894612a8b07d8ed0129ab0','0','2','0'), ('48913','18','','10439','Power supply [{#SENSOR_NAME}]: Current','dell.server.sensor.psu.current[{#SENSOR_NAME}]','0','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'Sensor value.','0','7d','0','','48902','','','','','200','1','0','','','0','0','0','0','0','0','0','e3ac9503e64b4c149e1bec0a69101102','0','2','0'), ('48914','18','','10439','Power supply [{#SENSOR_NAME}]: Voltage sensor status','dell.server.sensor.psu.voltage.status[{#SENSOR_NAME}]','0','31d','0','0','3','','','','',NULL,'1348','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48902','','','','','200','1','0','','','0','0','0','0','0','0','0','c733c7f6f35e40618037aa50ba98f294','0','2','0'), ('48915','18','','10439','Power supply [{#SENSOR_NAME}]: Voltage','dell.server.sensor.psu.voltage[{#SENSOR_NAME}]','0','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'Sensor value.','0','7d','0','','48902','','','','','200','1','0','','','0','0','0','0','0','0','0','beebdfb94e564585a2a031828bc0ad28','0','2','0'), ('48916','18','','10439','Probe [{#SENSOR_NAME}]: Status','dell.server.sensor.temp.status[{#SENSOR_NAME}]','0','31d','0','0','3','','','','',NULL,'1348','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48903','','','','','200','1','0','','','0','0','0','0','0','0','0','2addb92ba4494c5e9372d13123de9b90','0','2','0'), ('48917','18','','10439','Probe [{#SENSOR_NAME}]: Value','dell.server.sensor.temp.value[{#SENSOR_NAME}]','0','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'Sensor value.','0','7d','0','','48903','','','','','200','1','0','','','0','0','0','0','0','0','0','efc408f9598044aa88c70a98b5cc4462','0','2','0'), ('48993','18','','10441','Fan [{#SENSOR_NAME}]: Speed','dell.server.sensor.fan.speed[{#SENSOR_NAME}]','0','31d','365d','0','3','','!rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'Sensor value.','0','7d','0','','48975','','','','','200','1','0','','','0','0','0','0','0','0','0','ae4a6ad5d7ae4100a57af30cbfab4bf3','0','2','0'), ('48994','18','','10441','Fan [{#SENSOR_NAME}]: Status','dell.server.sensor.fan.status[{#SENSOR_NAME}]','0','31d','0','0','3','','','','',NULL,'1357','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48975','','','','','200','1','0','','','0','0','0','0','0','0','0','58844e3ec9244f43b2819b3f13ea6a36','0','2','0'), ('48995','18','','10441','Power supply [{#SENSOR_NAME}]: Current sensor status','dell.server.sensor.psu.current.status[{#SENSOR_NAME}]','0','31d','0','0','3','','','','',NULL,'1357','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48985','','','','','200','1','0','','','0','0','0','0','0','0','0','26c85e9369aa4805a095628e890b1288','0','2','0'), ('48996','18','','10441','Power supply [{#SENSOR_NAME}]: Current','dell.server.sensor.psu.current[{#SENSOR_NAME}]','0','31d','365d','0','0','','A','','',NULL,NULL,'','','0','','','','','2',NULL,'Sensor value.','0','7d','0','','48985','','','','','200','1','0','','','0','0','0','0','0','0','0','c18c96e977354b258bd82a0c12433724','0','2','0'), ('48997','18','','10441','Power supply [{#SENSOR_NAME}]: Voltage sensor status','dell.server.sensor.psu.voltage.status[{#SENSOR_NAME}]','0','31d','0','0','3','','','','',NULL,'1357','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48985','','','','','200','1','0','','','0','0','0','0','0','0','0','de636fb95e5a454ca70ae2f2d0ce734a','0','2','0'), ('48998','18','','10441','Power supply [{#SENSOR_NAME}]: Voltage','dell.server.sensor.psu.voltage[{#SENSOR_NAME}]','0','31d','365d','0','0','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'Sensor value.','0','7d','0','','48985','','','','','200','1','0','','','0','0','0','0','0','0','0','3633da59496341c3a35057482388e129','0','2','0'), ('48999','18','','10441','Probe [{#SENSOR_NAME}]: Status','dell.server.sensor.temp.status[{#SENSOR_NAME}]','0','31d','0','0','3','','','','',NULL,'1357','','','0','','','','','2',NULL,'The status of the job. Possible values: OK, Warning, Critical.','0','7d','0','','48986','','','','','200','1','0','','','0','0','0','0','0','0','0','0ba4848ce443431a8680990119f0bb26','0','2','0'), ('49000','18','','10441','Probe [{#SENSOR_NAME}]: Value','dell.server.sensor.temp.value[{#SENSOR_NAME}]','0','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'Sensor value.','0','7d','0','','48986','','','','','200','1','0','','','0','0','0','0','0','0','0','6c01858e79fd4c4bbeae694728d265fe','0','2','0'), ('49350','18','','10660','Zabbix proxy discovery','zabbix.proxy.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'LLD rule with item and trigger prototypes for proxy discovery.','0','7d','0','','49279','','','','','200','1','0','','','0','0','0','0','0','0','0','53e742e9dfe8498f9075d507bd1fe957','0','2','0'), ('49352','18','','10661','Zabbix proxy discovery','zabbix.proxy.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'LLD rule with item and trigger prototypes for proxy discovery.','0','7d','0','','49348','','','','','200','1','0','','','0','0','0','0','0','0','0','9ae3dd3caef84e539d7a51495795f0b6','0','2','0'), ('49355','18','','10660','Cluster node [{#NODE.NAME}]: Address','zabbix.node.address[{#NODE.ID}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The IPv4 address of a node.','0','7d','0','','49353','','','','','200','1','0','','','0','0','0','0','0','0','0','b05e4297dc57492cb09ef11eb4042906','0','2','0'), ('49356','18','','10660','Cluster node [{#NODE.NAME}]: Last access age','zabbix.node.lastaccess.age[{#NODE.ID}]','0','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','2',NULL,'The time between the database''s `unix_timestamp()` and the last access time.','0','7d','0','','49353','','','','','200','1','0','','','0','0','0','0','0','0','0','27bbff6ffee847f68a9f533af0b653e9','0','2','0'), ('49357','18','','10660','Cluster node [{#NODE.NAME}]: Last access time','zabbix.node.lastaccess.time[{#NODE.ID}]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Last access time.','0','7d','0','','49353','','','','','200','1','0','','','0','0','0','0','0','0','0','41547b3b694c49d79288dbf6f0b6d6cc','0','2','0'), ('49358','18','','10660','Cluster node [{#NODE.NAME}]: Status','zabbix.nodes.status[{#NODE.ID}]','0','31d','365d','0','3','','','','',NULL,'1375','','','0','','','','','2',NULL,'The status of a node.','0','7d','0','','49353','','','','','200','1','0','','','0','0','0','0','0','0','0','a2b9c365c340441c9505ab9fdfafc0fe','0','2','0'), ('49359','18','','10660','Proxy [{#PROXY.NAME}]: Stats','zabbix.proxy.stats[{#PROXY.NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The statistics for the discovered proxy.','0','7d','0','','49279','','','','','200','1','0','','','0','0','0','0','0','0','0','578af553e8ef46ffaaae04fea8cfbf39','0','2','0'), ('49360','18','','10661','Cluster node [{#NODE.NAME}]: Address','zabbix.node.address[{#NODE.ID}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The IPv4 address of a node.','0','7d','0','','49354','','','','','200','1','0','','','0','0','0','0','0','0','0','7c38495cd55044e29ced4ce5b095f86f','0','2','0'), ('49361','18','','10661','Cluster node [{#NODE.NAME}]: Last access age','zabbix.node.lastaccess.age[{#NODE.ID}]','0','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','2',NULL,'The time between the database''s `unix_timestamp()` and the last access time.','0','7d','0','','49354','','','','','200','1','0','','','0','0','0','0','0','0','0','89843094ec7944eea6a7cad2b4280e2d','0','2','0'), ('49362','18','','10661','Cluster node [{#NODE.NAME}]: Last access time','zabbix.node.lastaccess.time[{#NODE.ID}]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Last access time.','0','7d','0','','49354','','','','','200','1','0','','','0','0','0','0','0','0','0','81e699b0d3a349d0bb74071b0fb75f8f','0','2','0'), ('49363','18','','10661','Cluster node [{#NODE.NAME}]: Status','zabbix.nodes.status[{#NODE.ID}]','0','31d','365d','0','3','','','','',NULL,'1382','','','0','','','','','2',NULL,'The status of a node.','0','7d','0','','49354','','','','','200','1','0','','','0','0','0','0','0','0','0','39751d281a5b40e8a1bb267f97982b6e','0','2','0'), ('49364','18','','10661','Proxy [{#PROXY.NAME}]: Stats','zabbix.proxy.stats[{#PROXY.NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The statistics for the discovered proxy.','0','7d','0','','49348','','','','','200','1','0','','','0','0','0','0','0','0','0','49d2bf1f174a4bd69a6ca089cfefa448','0','2','0'), ('49658','18','','10663','Array capacity','purestorage.flasharray.array.capacity','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total capacity of the array.','0','7d','0','','49640','','','','','200','1','0','','','0','0','0','0','0','0','0','c51f66a1d1c749e0b48a9bebf21c7426','0','2','0'), ('49659','18','','10663','Array data reduction','purestorage.flasharray.array.drr','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The data reduction ratio (DRR) represents the efficiency of data reduction techniques such as compression and deduplication for the array volume.','0','7d','0','','49640','','','','','200','1','0','','','0','0','0','0','0','0','0','fa0fbc8453ab4c2da3a0416e8f1244fa','0','2','0'), ('49660','18','','10663','Storage array item errors','purestorage.flasharray.array.errors','0','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collects errors from array data retrieval.','0','7d','0','','49640','','','','','200','1','0','','','0','0','0','0','0','0','0','f769c0656f934f5c8d515c76ebf2f5ae','0','2','0'), ('49661','18','','10663','Array hostname','purestorage.flasharray.array.hostname','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Host name of the array.','0','7d','0','','49640','','','','','200','1','0','','','0','0','0','0','0','0','0','f279b2482fb9422abe2d9f4e52937771','0','2','0'), ('49662','18','','10663','Array parity','purestorage.flasharray.array.parity','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of data that is protected.','0','7d','0','','49640','','','','','200','1','0','','','0','0','0','0','0','0','0','7fec71312a2841f2b5f615e2e8e061f4','0','2','0'), ('49663','18','','10663','Array bytes read per second','purestorage.flasharray.array.read_bytes.rate','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes read per second.','0','7d','0','','49640','','','','','200','1','0','','','0','0','0','0','0','0','0','ce48a3aee4fc44a386f28ccb26fe4744','0','2','0'), ('49664','18','','10663','Array read requests per second','purestorage.flasharray.array.read_requests.rate','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of read requests processed per second.','0','7d','0','','49640','','','','','200','1','0','','','0','0','0','0','0','0','0','01e22e1c6fa548c68bbc04058497997e','0','2','0'), ('49665','18','','10663','Array shared space','purestorage.flasharray.array.shared_space','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The physical space occupied by deduplicated data.','0','7d','0','','49640','','','','','200','1','0','','','0','0','0','0','0','0','0','ed65950573dc4f5caab6da2a114ad662','0','2','0'), ('49666','18','','10663','Array snapshots size','purestorage.flasharray.array.snapshots_size','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The physical space occupied by snapshots.','0','7d','0','','49640','','','','','200','1','0','','','0','0','0','0','0','0','0','6bd825261ce64fa5849d8d4a71e24734','0','2','0'), ('49667','18','','10663','Array system size','purestorage.flasharray.array.system_size','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The physical space occupied by internal array metadata.','0','7d','0','','49640','','','','','200','1','0','','','0','0','0','0','0','0','0','6033bf992db44f1fa74057288fd1c32c','0','2','0'), ('49668','18','','10663','Array thin provisioning','purestorage.flasharray.array.thin_provisioning','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of volume sectors that do not contain host-written data because the hosts have not written data to them or the sectors have been explicitly trimmed.','0','7d','0','','49640','','','','','200','1','0','','','0','0','0','0','0','0','0','10cb260c3ca84e3ab244122123cdc64f','0','2','0'), ('49669','18','','10663','Array total data reduction','purestorage.flasharray.array.total_drr','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total reduction ratio of all data on the array volume that has been processed by the data deduplication and compression engines.','0','7d','0','','49640','','','','','200','1','0','','','0','0','0','0','0','0','0','0263b3ea58ce4488b7628fba3f0dac73','0','2','0'), ('49670','18','','10663','Array microseconds per operation','purestorage.flasharray.array.usec_per_op','0','31d','365d','0','3','','µs','','',NULL,NULL,'','','0','','','','','0',NULL,'Average local queue time in microseconds for both read and write operations.','0','7d','0','','49640','','','','','200','1','0','','','0','0','0','0','0','0','0','d4b3cb4a9a7841f4bae08b75658d2309','0','2','0'), ('49671','18','','10663','Array microseconds per read','purestorage.flasharray.array.usec_per_read','0','31d','365d','0','3','','µs','','',NULL,NULL,'','','0','','','','','0',NULL,'Average time in microseconds required to process an I/O read request from the array. The average time does not include SAN time, queue time, or QoS rate limit time.','0','7d','0','','49640','','','','','200','1','0','','','0','0','0','0','0','0','0','bf22bf3ce9874cb5a6dbf89493ed8e0e','0','2','0'), ('49672','18','','10663','Array microseconds per write','purestorage.flasharray.array.usec_per_write','0','31d','365d','0','3','','µs','','',NULL,NULL,'','','0','','','','','0',NULL,'Average time in microseconds required to process an I/O write request to the array. The average time does not include SAN time, queue time, or QoS rate limit time.','0','7d','0','','49640','','','','','200','1','0','','','0','0','0','0','0','0','0','83fde7a6cfdd4215b181866e1a003be9','0','2','0'), ('49673','18','','10663','Array used space','purestorage.flasharray.array.used_space','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total physical space occupied by system, shared space, volume, and snapshot data.','0','7d','0','','49640','','','','','200','1','0','','','0','0','0','0','0','0','0','bffa5098018742eaadaf5454df230280','0','2','0'), ('49674','18','','10663','Array version','purestorage.flasharray.array.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of the array.','0','7d','0','','49640','','','','','200','1','0','','','0','0','0','0','0','0','0','1fc46ce2f857421a9a4f7c2b4cdcee97','0','2','0'), ('49675','18','','10663','Array volumes size','purestorage.flasharray.array.volumes_size','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The physical space occupied by volumes.','0','7d','0','','49640','','','','','200','1','0','','','0','0','0','0','0','0','0','66e9074d811e4836a0d763b090a7c6ed','0','2','0'), ('49676','18','','10663','Array write requests per second','purestorage.flasharray.array.write_requests.rate','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of write requests processed per second.','0','7d','0','','49640','','','','','200','1','0','','','0','0','0','0','0','0','0','812c713f9237473398328d7316827ec8','0','2','0'), ('49677','18','','10663','Array bytes written per second','purestorage.flasharray.array.written_bytes.rate','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes written per second.','0','7d','0','','49640','','','','','200','1','0','','','0','0','0','0','0','0','0','2ae599ecbf43447d9b7d3c5956c435bd','0','2','0'), ('49678','18','','10663','Certificates item errors','purestorage.flasharray.certificates.errors','0','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collects errors from certificate retrieval.','0','7d','0','','49642','','','','','200','1','0','','','0','0','0','0','0','0','0','0ac271e368184318838ed9f0dd7b77ba','0','2','0'), ('49679','18','','10663','Storage hardware item errors','purestorage.flasharray.hardware.errors','0','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collects errors from hardware retrieval.','0','7d','0','','49643','','','','','200','1','0','','','0','0','0','0','0','0','0','4694be0d85664bc3976c6ff15ce10262','0','2','0'), ('49680','18','','10663','Storage hosts item errors','purestorage.flasharray.hosts.errors','0','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collects errors from host data retrieval.','0','7d','0','','49644','','','','','200','1','0','','','0','0','0','0','0','0','0','b867ded0bdca42e48b5d17cae7f00f17','0','2','0'), ('49681','18','','10663','Storage network interfaces item errors','purestorage.flasharray.net_ifs.errors','0','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collects errors from network interface retrieval.','0','7d','0','','49645','','','','','200','1','0','','','0','0','0','0','0','0','0','16b047e98a2f4aec87df0aa48d741843','0','2','0'), ('49682','18','','10663','Phone home status','purestorage.flasharray.phone_home.status','0','31d','0','0','3','','','','',NULL,'1391','','','0','','','','','0',NULL,'Current status of a manually-initiated phonehome.','0','7d','0','','49640','','','','','200','1','0','','','0','0','0','0','0','0','0','1d5a1fa4d56e49fe9188f308babb12ad','0','2','0'), ('49683','18','','10663','Storage pods item errors','purestorage.flasharray.pods.errors','0','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collects errors from pod retrieval.','0','7d','0','','49646','','','','','200','1','0','','','0','0','0','0','0','0','0','2a116c0e14c149949b5691ad42ccddb1','0','2','0'), ('49684','18','','10663','Remote assist status','purestorage.flasharray.remote_assist.status','0','31d','0','0','3','','','','',NULL,'1391','','','0','','','','','0',NULL,'Status of the remote assist connection.','0','7d','0','','49640','','','','','200','1','0','','','0','0','0','0','0','0','0','0182ae2fcd5f484685d1a0700ef15f8b','0','2','0'), ('49685','18','','10663','Storage volumes item errors','purestorage.flasharray.volumes.errors','0','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collects errors from volume retrieval.','0','7d','0','','49647','','','','','200','1','0','','','0','0','0','0','0','0','0','f36a091e06a84158bda3ba468343bf96','0','2','0'), ('49686','18','','10664','Critical alerts','purestorage.flasharray.alert.critical','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of active alerts in the web interface of Pure Storage FlashArray with a severity level of Critical.','0','7d','0','','49648','','','','','200','1','0','','','0','0','0','0','0','0','0','84bba6c063984124925eaf8eea874ade','0','2','0'), ('49687','18','','10664','Alerts data item errors','purestorage.flasharray.alert.errors','0','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collects errors from alert data retrieval.','0','7d','0','','49648','','','','','200','1','0','','','0','0','0','0','0','0','0','18eac68344f94746bccdce0a070f89fa','0','2','0'), ('49688','18','','10664','Warning alerts','purestorage.flasharray.alert.warning','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of active alerts in the web interface of Pure Storage FlashArray with a severity level of Warning.','0','7d','0','','49648','','','','','200','1','0','','','0','0','0','0','0','0','0','8d64afad1936495283b3afe15d3f7071','0','2','0'), ('49689','18','','10664','Array capacity','purestorage.flasharray.array.capacity','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total capacity of the array.','0','7d','0','','49649','','','','','200','1','0','','','0','0','0','0','0','0','0','c29f9b470c394c49abc347efb8eea82a','0','2','0'), ('49690','18','','10664','Array data reduction','purestorage.flasharray.array.drr','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The data reduction ratio (DRR) represents the efficiency of data reduction techniques such as compression and deduplication for the array volume.','0','7d','0','','49649','','','','','200','1','0','','','0','0','0','0','0','0','0','72ddad3de47d4fbfbce481395e1f5d26','0','2','0'), ('49691','18','','10664','Storage array item errors','purestorage.flasharray.array.errors','0','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collects errors from array data retrieval.','0','7d','0','','49649','','','','','200','1','0','','','0','0','0','0','0','0','0','751e355686e74d3eb7abbba1b6671c67','0','2','0'), ('49692','18','','10664','Array hostname','purestorage.flasharray.array.hostname','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Host name of the array.','0','7d','0','','49649','','','','','200','1','0','','','0','0','0','0','0','0','0','fbba015500794db09c3c145adb583177','0','2','0'), ('49693','18','','10664','Array OS','purestorage.flasharray.array.os','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Operating system of the array.','0','7d','0','','49649','','','','','200','1','0','','','0','0','0','0','0','0','0','ec77f6ae385b4048b24b2cb0bebd8478','0','2','0'), ('49694','18','','10664','Array parity','purestorage.flasharray.array.parity','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of data that is protected.','0','7d','0','','49649','','','','','200','1','0','','','0','0','0','0','0','0','0','b09195afc5d944208ee3159dd66052ce','0','2','0'), ('49695','18','','10664','Array physical size','purestorage.flasharray.array.physical_size','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total physical space occupied by system, shared space, volume, and snapshot data.','0','7d','0','','49649','','','','','200','1','0','','','0','0','0','0','0','0','0','802501778aa743919a29ea4b02a154c4','0','2','0'), ('49696','18','','10664','Array bytes read per second','purestorage.flasharray.array.read_bytes.rate','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes read per second.','0','7d','0','','49649','','','','','200','1','0','','','0','0','0','0','0','0','0','4330d213f2734eb991e030fad372fc69','0','2','0'), ('49697','18','','10664','Array read requests per second','purestorage.flasharray.array.read_requests.rate','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of read requests processed per second.','0','7d','0','','49649','','','','','200','1','0','','','0','0','0','0','0','0','0','2b4e83098096427398b780b57487731e','0','2','0'), ('49698','18','','10664','Array shared space','purestorage.flasharray.array.shared_space','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The physical space occupied by deduplicated data.','0','7d','0','','49649','','','','','200','1','0','','','0','0','0','0','0','0','0','da5cbeda60c74159bf8eed97073e2d95','0','2','0'), ('49699','18','','10664','Array snapshots size','purestorage.flasharray.array.snapshots_size','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The physical space occupied by snapshots.','0','7d','0','','49649','','','','','200','1','0','','','0','0','0','0','0','0','0','480438f65c4848f88c2c5ce049843c97','0','2','0'), ('49700','18','','10664','Array system size','purestorage.flasharray.array.system_size','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The physical space occupied by internal array metadata.','0','7d','0','','49649','','','','','200','1','0','','','0','0','0','0','0','0','0','59ba324b06694ac3980b4ece65f3b8c3','0','2','0'), ('49701','18','','10664','Array thin provisioning','purestorage.flasharray.array.thin_provisioning','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'The percentage of volume sectors that do not contain host-written data because the hosts have not written data to them or the sectors have been explicitly trimmed.','0','7d','0','','49649','','','','','200','1','0','','','0','0','0','0','0','0','0','03f32ba70ddd4aaf804c4c8d3020cf3d','0','2','0'), ('49702','18','','10664','Array total data reduction','purestorage.flasharray.array.total_drr','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','0',NULL,'The total reduction ratio of all data on the array volume that has been processed by the data deduplication and compression engines.','0','7d','0','','49649','','','','','200','1','0','','','0','0','0','0','0','0','0','5c83ae6a3ff14f0fa2b470735afe7af0','0','2','0'), ('49703','18','','10664','Array microseconds per operation','purestorage.flasharray.array.usec_per_op','0','31d','365d','0','3','','µs','','',NULL,NULL,'','','0','','','','','0',NULL,'Average local queue time in microseconds for both read and write operations.','0','7d','0','','49649','','','','','200','1','0','','','0','0','0','0','0','0','0','0131477d29fb48eebbcaf904d85025a9','0','2','0'), ('49704','18','','10664','Array microseconds per read','purestorage.flasharray.array.usec_per_read','0','31d','365d','0','3','','µs','','',NULL,NULL,'','','0','','','','','0',NULL,'Average time in microseconds required to process an I/O read request from the array. The average time does not include SAN time, queue time, or QoS rate limit time.','0','7d','0','','49649','','','','','200','1','0','','','0','0','0','0','0','0','0','a7b37f7e2d104adaa1b9234559b170de','0','2','0'), ('49705','18','','10664','Array microseconds per write','purestorage.flasharray.array.usec_per_write','0','31d','365d','0','3','','µs','','',NULL,NULL,'','','0','','','','','0',NULL,'Average time in microseconds required to process an I/O write request to the array. The average time does not include SAN time, queue time, or QoS rate limit time.','0','7d','0','','49649','','','','','200','1','0','','','0','0','0','0','0','0','0','ed1b118a7262443fa7f4c9bc1f8ca41e','0','2','0'), ('49706','18','','10664','Array used space','purestorage.flasharray.array.used_space','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'The total space occupied by system, shared space, volume, and snapshot data.','0','7d','0','','49649','','','','','200','1','0','','','0','0','0','0','0','0','0','7a825d5aaec141f79be52dedacd025b5','0','2','0'), ('49707','18','','10664','Array version','purestorage.flasharray.array.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Version of the array.','0','7d','0','','49649','','','','','200','1','0','','','0','0','0','0','0','0','0','a681549b875b4f56a6ecc985f1fe7752','0','2','0'), ('49708','18','','10664','Array write requests per second','purestorage.flasharray.array.write_requests.rate','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of write requests processed per second.','0','7d','0','','49649','','','','','200','1','0','','','0','0','0','0','0','0','0','9affcc3786c947fa9b7a2803740415d8','0','2','0'), ('49709','18','','10664','Array bytes written per second','purestorage.flasharray.array.written_bytes.rate','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','0',NULL,'Number of bytes written per second.','0','7d','0','','49649','','','','','200','1','0','','','0','0','0','0','0','0','0','a1b6902f99ee40278f30646fa5a27111','0','2','0'), ('49710','18','','10664','Certificates item errors','purestorage.flasharray.certificates.errors','0','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collects errors from certificate retrieval.','0','7d','0','','49651','','','','','200','1','0','','','0','0','0','0','0','0','0','496de11b01214b499de770299ff60364','0','2','0'), ('49711','18','','10664','Storage hardware item errors','purestorage.flasharray.hardware.errors','0','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collects errors from hardware retrieval.','0','7d','0','','49652','','','','','200','1','0','','','0','0','0','0','0','0','0','ea659408346a436c9f273f517d9edcc5','0','2','0'), ('49712','18','','10664','Storage hosts item errors','purestorage.flasharray.hosts.errors','0','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collects errors from host data retrieval.','0','7d','0','','49653','','','','','200','1','0','','','0','0','0','0','0','0','0','7b6cc9ef29bc46cd80d2cac92f1ebe0f','0','2','0'), ('49713','18','','10664','Storage network interfaces item errors','purestorage.flasharray.net_ifs.errors','0','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collects errors from network interface retrieval.','0','7d','0','','49654','','','','','200','1','0','','','0','0','0','0','0','0','0','48cbf0770c82449796bb648c0b1b9a72','0','2','0'), ('49714','18','','10664','Phone home status','purestorage.flasharray.phone_home.status','0','31d','0','0','3','','','','',NULL,'1398','','','0','','','','','0',NULL,'Current status of a manually-initiated phone home.','0','7d','0','','49656','','','','','200','1','0','','','0','0','0','0','0','0','0','3dfa393c4e704ed68322366ea80f09fa','0','2','0'), ('49715','18','','10664','Storage pods item errors','purestorage.flasharray.pods.errors','0','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collects errors from pod retrieval.','0','7d','0','','49655','','','','','200','1','0','','','0','0','0','0','0','0','0','0cb3c68298984cffb61595a8b8a949cb','0','2','0'), ('49716','18','','10664','Remote assist status','purestorage.flasharray.remote_assist.status','0','31d','0','0','3','','','','',NULL,'1398','','','0','','','','','0',NULL,'Status of the remote assist connection.','0','7d','0','','49656','','','','','200','1','0','','','0','0','0','0','0','0','0','a424b8b37edd4deb8bf745f78e00e2a9','0','2','0'), ('49717','18','','10664','Support information item errors','purestorage.flasharray.support.errors','0','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collects errors from support information retrieval.','0','7d','0','','49656','','','','','200','1','0','','','0','0','0','0','0','0','0','ef6ac77724b54851b0a9316ab3ef8209','0','2','0'), ('49718','18','','10664','Storage volumes item errors','purestorage.flasharray.volumes.errors','0','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collects errors from volume retrieval.','0','7d','0','','49657','','','','','200','1','0','','','0','0','0','0','0','0','0','8a7e90cd071247f78cf017769138d811','0','2','0'), ('49719','18','','10663','Certificate discovery','purestorage.flasharray.cert.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of certificates from the Pure Storage FlashArray API.','0','7d','1','','49642','','','','','200','1','0','','','0','0','0','0','0','0','0','55f1042201c2411e854aea9e0c436c36','0','2','0'), ('49720','18','','10663','Controller discovery','purestorage.flasharray.ctrl.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of controllers from the Pure Storage FlashArray API.','0','7d','1','','49643','','','','','200','1','0','','','0','0','0','0','0','0','0','3406d565b5274d4885d83a2185f25dfd','0','2','0'), ('49721','18','','10663','Drive discovery','purestorage.flasharray.drive.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of storage drives from the Pure Storage FlashArray API.','0','7d','1','','49643','','','','','200','1','0','','','0','0','0','0','0','0','0','ad7ad0c1965f40c4aa64dbbdecd0bcbc','0','2','0'), ('49722','18','','10663','Fan discovery','purestorage.flasharray.fan.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of fans from the Pure Storage FlashArray API.','0','7d','1','','49643','','','','','200','1','0','','','0','0','0','0','0','0','0','3de3fa3b233d486690f58ebb6b40cf18','0','2','0'), ('49723','18','','10663','Host discovery','purestorage.flasharray.host.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of storage hosts from the Pure Storage FlashArray API.','0','7d','1','','49644','','','','','200','1','0','','','0','0','0','0','0','0','0','dbcf02647ac84d67a8bc89cb6e61cb28','0','2','0'), ('49724','18','','10663','Network interface discovery','purestorage.flasharray.net_if.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of storage hosts from the Pure Storage FlashArray API.','0','7d','1','','49645','','','','','200','1','0','','','0','0','0','0','0','0','0','478e7c91f114410a818d94b82fd3088e','0','2','0'), ('49725','18','','10663','Pod discovery','purestorage.flasharray.pod.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of storage pods from the Pure Storage FlashArray API.','0','7d','1','','49646','','','','','200','1','0','','','0','0','0','0','0','0','0','0abb8ee6fa884a389a20e105f6fa8709','0','2','0'), ('49726','18','','10663','Power supply discovery','purestorage.flasharray.power.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of power supply components from the Pure Storage FlashArray API.','0','7d','1','','49643','','','','','200','1','0','','','0','0','0','0','0','0','0','4750d6030dfc469996553ebe7133ca96','0','2','0'), ('49727','18','','10663','Temperature sensor discovery','purestorage.flasharray.temp.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of temperature sensors from the Pure Storage FlashArray API.','0','7d','1','','49643','','','','','200','1','0','','','0','0','0','0','0','0','0','a8c19abbceee47a0a1f419e4fa3e258e','0','2','0'), ('49728','18','','10663','Volume discovery','purestorage.flasharray.volume.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of storage volumes from the Pure Storage FlashArray API.','0','7d','1','','49647','','','','','200','1','0','','','0','0','0','0','0','0','0','380cd5c61b1e4f8a97cc325b0409c98c','0','2','0'), ('49729','18','','10664','Certificate discovery','purestorage.flasharray.cert.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of certificates from the Pure Storage FlashArray API.','0','7d','1','','49651','','','','','200','1','0','','','0','0','0','0','0','0','0','a277352827a8409888e29dcc3681fcf1','0','2','0'), ('49730','18','','10664','Controller discovery','purestorage.flasharray.ctrl.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of controllers from the Pure Storage FlashArray API.','0','7d','1','','49652','','','','','200','1','0','','','0','0','0','0','0','0','0','10b6db10a6aa491c805bf404bb50e890','0','2','0'), ('49731','18','','10664','Drive discovery','purestorage.flasharray.drive.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of storage drives from the Pure Storage FlashArray API.','0','7d','1','','49652','','','','','200','1','0','','','0','0','0','0','0','0','0','08358b801db24ef8ab89bc14fed65ee1','0','2','0'), ('49732','18','','10664','Fan discovery','purestorage.flasharray.fan.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of fans from the Pure Storage FlashArray API.','0','7d','1','','49652','','','','','200','1','0','','','0','0','0','0','0','0','0','f712c0d8bfa84a4291db06c04d8d4232','0','2','0'), ('49733','18','','10664','Host discovery','purestorage.flasharray.host.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of storage hosts from the Pure Storage FlashArray API.','0','7d','1','','49653','','','','','200','1','0','','','0','0','0','0','0','0','0','350738d6dba64532a7b811efb1e14114','0','2','0'), ('49734','18','','10664','Network interface discovery','purestorage.flasharray.net_if.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of storage hosts from the Pure Storage FlashArray API.','0','7d','1','','49654','','','','','200','1','0','','','0','0','0','0','0','0','0','3876122f047c4299a08cc7b259c20245','0','2','0'), ('49735','18','','10664','Pod discovery','purestorage.flasharray.pod.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of storage pods from the Pure Storage FlashArray API.','0','7d','1','','49655','','','','','200','1','0','','','0','0','0','0','0','0','0','5cde7579e8514748bddfeb1f662e0012','0','2','0'), ('49736','18','','10664','Power supply discovery','purestorage.flasharray.power.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of power supply components from the Pure Storage FlashArray API.','0','7d','1','','49652','','','','','200','1','0','','','0','0','0','0','0','0','0','9ad76b9853f940c6890745f2a0091ad0','0','2','0'), ('49737','18','','10664','Temperature sensor discovery','purestorage.flasharray.temp.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of temperature sensors from the Pure Storage FlashArray API.','0','7d','1','','49652','','','','','200','1','0','','','0','0','0','0','0','0','0','d5378b0c37c446cdba79238ce8703044','0','2','0'), ('49738','18','','10664','Volume discovery','purestorage.flasharray.volume.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of storage volumes from the Pure Storage FlashArray API.','0','7d','1','','49657','','','','','200','1','0','','','0','0','0','0','0','0','0','ba4d4650536142e3a810c33362117dd2','0','2','0'), ('49739','18','','10663','Certificate [{#NAME}]: Get data','purestorage.flasharray.cert.get[{#NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Collects data about the {#NAME} certificate.','0','7d','0','','49642','','','','','200','1','0','','','0','0','0','0','0','0','0','23e5bc6dd2824c92bf4a2cb4c8c56449','0','2','0'), ('49740','18','','10663','Controller [{#NAME}]: Get data','purestorage.flasharray.ctrl.get[{#NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Collects data about the {#NAME} controller.','0','7d','0','','49643','','','','','200','1','0','','','0','0','0','0','0','0','0','e2113791d4e4432a9a81f045a5411661','0','2','0'), ('49741','18','','10663','Drive [{#NAME}]: Get data','purestorage.flasharray.drive.get[{#NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Collects data about the {#NAME} drive.','0','7d','0','','49643','','','','','200','1','0','','','0','0','0','0','0','0','0','e0d18f21c935472d9505dad16b3dac74','0','2','0'), ('49742','18','','10663','Fan [{#NAME}]: Get data','purestorage.flasharray.fan.get[{#NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Collects data about the {#NAME} fan.','0','7d','0','','49643','','','','','200','1','0','','','0','0','0','0','0','0','0','7ad007338fdc40a2aaf589d5e492a97e','0','2','0'), ('49743','18','','10663','Host [{#NAME}]: Get data','purestorage.flasharray.host.get[{#NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Collects data about the {#NAME} host.','0','7d','0','','49644','','','','','200','1','0','','','0','0','0','0','0','0','0','c96be731c08446b79bca3283a1547974','0','2','0'), ('49744','18','','10663','Interface [{#IFNAME}]: Get data','purestorage.flasharray.net_if.get[{#IFNAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Collects data about the {#IFNAME} network interface.','0','7d','0','','49645','','','','','200','1','0','','','0','0','0','0','0','0','0','3f1f5d598ff74ec8a99200f07a6ecefb','0','2','0'), ('49745','18','','10663','Pod [{#NAME}]: Get data','purestorage.flasharray.pod.get[{#NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Collects data about the {#NAME} pod.','0','7d','0','','49646','','','','','200','1','0','','','0','0','0','0','0','0','0','9612332d9b2d4d0faddabe1c6bc423f8','0','2','0'), ('49746','18','','10663','Power supply [{#NAME}]: Get data','purestorage.flasharray.power.get[{#NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Collects data about the {#NAME} power supply component.','0','7d','0','','49643','','','','','200','1','0','','','0','0','0','0','0','0','0','4fc1747f0af84d6a88043ef3397a0599','0','2','0'), ('49747','18','','10663','Sensor [{#NAME}]: Get data','purestorage.flasharray.temp.get[{#NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Collects data about the {#NAME} temperature sensor.','0','7d','0','','49643','','','','','200','1','0','','','0','0','0','0','0','0','0','9870c41874014f4790febfa0a8c71ba6','0','2','0'), ('49748','18','','10663','Volume [{#NAME}]: Get data','purestorage.flasharray.volume.get[{#SN}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Collects data about the {#NAME} volume.','0','7d','0','','49647','','','','','200','1','0','','','0','0','0','0','0','0','0','670ac91b3d124c17afc15f7bd8d58cd9','0','2','0'), ('49749','18','','10664','Certificate [{#NAME}]: Get data','purestorage.flasharray.cert.get[{#NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Collects data about the {#NAME} certificate.','0','7d','0','','49651','','','','','200','1','0','','','0','0','0','0','0','0','0','a0cc18565bd84d7ea0af61d655642d67','0','2','0'), ('49750','18','','10664','Controller [{#NAME}]: Get data','purestorage.flasharray.ctrl.get[{#NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Collects data about the {#NAME} controller.','0','7d','0','','49652','','','','','200','1','0','','','0','0','0','0','0','0','0','4689b7a160c6440aa2b8dc8be57e2552','0','2','0'), ('49751','18','','10664','Drive [{#NAME}]: Get data','purestorage.flasharray.drive.get[{#NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Collects data about the {#NAME} drive.','0','7d','0','','49652','','','','','200','1','0','','','0','0','0','0','0','0','0','5857cfccc486417ab32f000f0bd68a65','0','2','0'), ('49752','18','','10664','Fan [{#NAME}]: Get data','purestorage.flasharray.fan.get[{#NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Collects data about the {#NAME} fan.','0','7d','0','','49652','','','','','200','1','0','','','0','0','0','0','0','0','0','132c553838074d6680daa792453508b6','0','2','0'), ('49753','18','','10664','Host [{#NAME}]: Get data','purestorage.flasharray.host.get[{#NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Collects data about the {#NAME} host.','0','7d','0','','49653','','','','','200','1','0','','','0','0','0','0','0','0','0','f3411ac68df2450a9161ae19ed53fa74','0','2','0'), ('49754','18','','10664','Interface [{#IFNAME}]: Get data','purestorage.flasharray.net_if.get[{#IFNAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Collects data about the {#IFNAME} network interface.','0','7d','0','','49654','','','','','200','1','0','','','0','0','0','0','0','0','0','81113ca1f6f34e51b8e1565f0e791e80','0','2','0'), ('49755','18','','10664','Pod [{#NAME}]: Get data','purestorage.flasharray.pod.get[{#NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Collects data about the {#NAME} pod.','0','7d','0','','49655','','','','','200','1','0','','','0','0','0','0','0','0','0','f22437a516bb4598aa2524318213ed46','0','2','0'), ('49756','18','','10664','Power supply [{#NAME}]: Get data','purestorage.flasharray.power.get[{#NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Collects data about the {#NAME} power supply component.','0','7d','0','','49652','','','','','200','1','0','','','0','0','0','0','0','0','0','6e10b14864134657985453c78d07751d','0','2','0'), ('49757','18','','10664','Sensor [{#NAME}]: Get data','purestorage.flasharray.temp.get[{#NAME}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Collects data about the {#NAME} temperature sensor.','0','7d','0','','49652','','','','','200','1','0','','','0','0','0','0','0','0','0','030868b143d94729bc3e696cd40c8009','0','2','0'), ('49758','18','','10664','Volume [{#NAME}]: Get data','purestorage.flasharray.volume.get[{#SN}]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Collects data about the {#NAME} volume.','0','7d','0','','49657','','','','','200','1','0','','','0','0','0','0','0','0','0','d89e5ac32300482791f566ada1ba9640','0','2','0'), ('49884','18','','10589','Bgwriter metrics discovery (versions above 17)','pgsql.bgwriter.above_17.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers "bgwriter" metrics for PostgreSQL version 17 and above.','0','7d','1','','49883','','','','','200','1','0','','','0','0','0','0','0','0','0','fee729c8c626409ba1849e0f6d99392c','0','2','0'), ('49885','18','','10589','Bgwriter metrics discovery (versions below 17)','pgsql.bgwriter.below_17.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovers "bgwriter" metrics for PostgreSQL below version 17.','0','7d','1','','49883','','','','','200','1','0','','','0','0','0','0','0','0','0','fcbd89dc14aa4bd99446016d453f850d','0','2','0'), ('49951','18','','10667','CPU utilization','cisco.ftd.cpu.utilization','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Average CPU utilization.','0','7d','0','','49949','','','','','200','1','0','','','0','0','0','0','0','0','0','72082a30d426460e8d30219584bc8479','0','2','0'), ('49952','18','','10667','Device metric item errors','cisco.ftd.device.metrics.get.errors','0','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collects errors from device metrics.','0','7d','0','','49949','','','','','200','1','0','','','0','0','0','0','0','0','0','201207d071834816bfc41f08c2cadff2','0','2','0'), ('49953','18','','10667','Disc space: Total','cisco.ftd.disk.total.size','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total disk size in bytes.','0','7d','0','','49950','','','','','200','1','0','','','0','0','0','0','0','0','0','431375cc8501476d8fde2f5ad2e66b2f','0','2','0'), ('49954','18','','10667','Disc space: Used','cisco.ftd.disk.total.used','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Total used disk space in bytes.','0','7d','0','','49950','','','','','200','1','0','','','0','0','0','0','0','0','0','d5072e8701674e23a38c3feb4a66c844','0','2','0'), ('49955','18','','10667','Disc space: Utilization','cisco.ftd.disk.total.utilization','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Total disk space utilization percentage.','0','7d','0','','49950','','','','','200','1','0','','','0','0','0','0','0','0','0','cde9728d17f34719ba7751826c7cc93f','0','2','0'), ('49956','18','','10667','Events per second','cisco.ftd.events.rate','0','31d','365d','0','0','','!events','','',NULL,NULL,'','','0','','','','','0',NULL,'Average events per second.','0','7d','0','','49949','','','','','200','1','0','','','0','0','0','0','0','0','0','ce9ae0fb00f94233950d400af207ceff','0','2','0'), ('49957','18','','10667','Memory utilization','cisco.ftd.memory.utilization','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','0',NULL,'Memory utilization percentage.','0','7d','0','','49949','','','','','200','1','0','','','0','0','0','0','0','0','0','a5e0330248284d24a8754e6c04539517','0','2','0'), ('49958','18','','10667','Platform model','cisco.ftd.model','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Platform model of the Cisco Secure FTD.','0','7d','0','','49949','','','','','200','1','0','','','0','0','0','0','0','0','0','ecc462ed67024602af0a8b026583a64d','0','2','0'), ('49959','18','','10667','Operational metric item errors','cisco.ftd.operational.metrics.get.errors','0','1h','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Collects errors from operational metrics.','0','7d','0','','49950','','','','','200','1','0','','','0','0','0','0','0','0','0','b2b4d9d4afad426483283cc9c23dcbc7','0','2','0'), ('49960','18','','10667','Serial number','cisco.ftd.serialnumber','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Serial number of the Cisco Secure FTD.','0','7d','0','','49949','','','','','200','1','0','','','0','0','0','0','0','0','0','0668f90812a94797a0b5194ffb2870d2','0','2','0'), ('49961','18','','10667','Software version','cisco.ftd.software.version','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Software version of the Cisco Secure FTD.','0','7d','0','','49949','','','','','200','1','0','','','0','0','0','0','0','0','0','11da0a11baff42e19cdb00e6f1ec46be','0','2','0'), ('49962','18','','10667','Storage: Free','cisco.ftd.storage.free','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Amount of free storage.','0','7d','0','','49949','','','','','200','1','0','','','0','0','0','0','0','0','0','826ab729ee124cd8afcd0608803ee26e','0','2','0'), ('49963','18','','10667','Storage: Total','cisco.ftd.storage.total','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Amount of total storage.','0','7d','0','','49949','','','','','200','1','0','','','0','0','0','0','0','0','0','51e1c93ed8084054b0a1c79666772329','0','2','0'), ('49964','18','','10667','Storage: Used','cisco.ftd.storage.usage','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','0',NULL,'Amount of storage used.','0','7d','0','','49949','','','','','200','1','0','','','0','0','0','0','0','0','0','a3c13fa819db4776bbfc49e97331a128','0','2','0'), ('49965','18','','10667','System uptime','cisco.ftd.uptime','0','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','0',NULL,'The system uptime.','0','7d','0','','49949','','','','','200','1','0','','','0','0','0','0','0','0','0','d03f7e217c704bbc934a6045cbbec48d','0','2','0'), ('49966','18','','10667','ASP drop discovery','cisco.ftd.asp_drops.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of the Accelerated Security Path drops or connections from the Cisco Secure FTD API.','0','7d','1','','49950','','','','','200','1','0','','','0','0','0','0','0','0','0','fd567f947ede4429a3006ef43e01ff40','0','2','0'), ('49967','18','','10667','Connection discovery','cisco.ftd.conn_stats.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of connection statistics from the Cisco Secure FTD API.','0','7d','1','','49950','','','','','200','1','0','','','0','0','0','0','0','0','0','81b052482ea1408180540a96f9fea8b6','0','2','0'), ('49968','18','','10667','CPU discovery','cisco.ftd.cpu.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of CPU monitoring entries from the Cisco Secure FTD API.','0','7d','1','','49950','','','','','200','1','0','','','0','0','0','0','0','0','0','0e73d72250294e959a6f0557631e64ba','0','2','0'), ('49969','18','','10667','Critical process discovery','cisco.ftd.critical_process.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of critical process statistics from the Cisco Secure FTD API.','0','7d','1','','49950','','','','','200','1','0','','','0','0','0','0','0','0','0','0b48d721f9b44f1b836cc889d53dacaf','0','2','0'), ('49970','18','','10667','FAN discovery','cisco.ftd.fan.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of FAN sensors.','0','7d','0','','49950','','','','','200','1','0','','','0','0','0','0','0','0','0','c49cb0da46624ed1b56063d8c2589e55','0','2','0'), ('49971','18','','10667','Interface discovery','cisco.ftd.interface.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of interfaces from the Cisco Secure FTD API.','0','7d','1','','49950','','','','','200','1','0','','','0','0','0','0','0','0','0','38b66206cb044ef0bf4806b6155baf26','0','2','0'), ('49972','18','','10667','Memory discovery','cisco.ftd.memory.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of memory monitoring entries from the Cisco Secure FTD API.','0','7d','0','','49950','','','','','200','1','0','','','0','0','0','0','0','0','0','704ddca94289435cae1a3acc06703656','0','2','0'), ('49973','18','','10667','Memory utilization discovery','cisco.ftd.memory.util.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of utilization memory monitoring entries from the Cisco Secure FTD API.','0','7d','0','','49950','','','','','200','1','0','','','0','0','0','0','0','0','0','934c5e47cfca45c2a4b8584311fdf314','0','2','0'), ('49974','18','','10667','PSU discovery','cisco.ftd.psu.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of PSU sensors.','0','7d','0','','49950','','','','','200','1','0','','','0','0','0','0','0','0','0','57ac09be2b3d46b7a06a2899365c4010','0','2','0'), ('49975','18','','10667','Snort discovery','cisco.ftd.snort.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of Snort and IDS/IPS statistics from the Cisco Secure FTD API.','0','7d','1','','49950','','','','','200','1','0','','','0','0','0','0','0','0','0','e49aabe5e2ad41fbaeeee607e604f0af','0','2','0'), ('49976','18','','10667','Temperature sensor discovery','cisco.ftd.temp.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of temperature sensors from the Cisco Secure FTD API.','0','7d','1','','49950','','','','','200','1','0','','','0','0','0','0','0','0','0','0d88d0b278b34015ad7de49a3344309d','0','2','0'), ('49977','18','','10667','Throughput discovery','cisco.ftd.throughput.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of throughput interfaces from the Cisco Secure FTD API.','0','7d','1','','49949','','','','','200','1','0','','','0','0','0','0','0','0','0','c431c01781854d67996b70eaf85ff00a','0','2','0'), ('49978','18','','10667','Mounted filesystem discovery','cisco.ftd.vfs.fs.discovery','0','31d','365d','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery of mounted filesystems from the Cisco Secure FTD API.','0','7d','1','','49950','','','','','200','1','0','','','0','0','0','0','0','0','0','31d08ae044b3473e860911142ba048ac','0','2','0'), ('49979','18','','10667','ASP [{#METRIC}]','cisco.ftd.asp_drops["{#ID}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of Accelerated Security Path (ASP) drops per second for `{#METRIC}`.','0','7d','0','','49950','','','','','200','1','0','','','0','0','0','0','0','0','0','6aef1770da014d549373c0f045b9304f','0','2','0'), ('49980','18','','10667','Statistic [{#NAME}][{#METRIC}]','cisco.ftd.conn_stats["{#NAME}","{#METRIC}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Connection statistic for `{#NAME}` and metric `{#METRIC}`.','0','7d','0','','49950','','','','','200','1','0','','','0','0','0','0','0','0','0','e9c51430c12e40e9926d6ff2059ea295','0','2','0'), ('49981','18','','10667','CPU [{#METRIC}] utilization','cisco.ftd.cpu.util["{#NAME}"]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Discovery of CPU `{#METRIC}` utilization (in percent).','0','7d','0','','49950','','','','','200','1','0','','','0','0','0','0','0','0','0','4a09b3b0c19148b99dd5fc3da975aa0e','0','2','0'), ('49982','18','','10667','Process [{#ID}]: Restart count','cisco.ftd.critical_process.restart_count["{#ID}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Restart count of process `{#ID}`.','0','7d','0','','49950','','','','','200','1','0','','','0','0','0','0','0','0','0','9c36af7e5458489ea318e22bc58d1965','0','2','0'), ('49983','18','','10667','Process [{#ID}]: Status','cisco.ftd.critical_process.status["{#ID}"]','0','31d','365d','0','3','','','','',NULL,'1409','','','0','','','','','2',NULL,'Status of process `{#ID}`.','0','7d','0','','49950','','','','','200','1','0','','','0','0','0','0','0','0','0','fc6e03e292b947fc9ec05de27c2a4d7f','0','2','0'), ('49984','18','','10667','Process [{#ID}]: Uptime','cisco.ftd.critical_process.uptime["{#ID}"]','0','31d','365d','0','0','','uptime','','',NULL,NULL,'','','0','','','','','2',NULL,'Uptime of process `{#ID}`.','0','7d','0','','49950','','','','','200','1','0','','','0','0','0','0','0','0','0','4ae16d0410804ec48e5d1866db307a15','0','2','0'), ('49985','18','','10667','Fan speed [{#NAME}]','cisco.ftd.sensor.fan.rpm[{#SENSOR}]','0','31d','365d','0','0','','!rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'FAN `{#SENSOR}` speed in RPM.','0','7d','0','','49950','','','','','200','1','0','','','0','0','0','0','0','0','0','d05588f39d2d401595f27e6e8b293296','0','2','0'), ('49986','18','','10667','Interface [{#NAME}][{#DESCR}]: Get metric data','cisco.ftd.interface.get["{#NAME}","{#DESCR}"]','0','0','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Gets data from the interface `{#NAME}`.','0','7d','0','','49950','','','','','200','1','0','','','0','0','0','0','0','0','0','c89465c8fdc049cfa3358eaf3fc4542b','0','2','0'), ('49987','18','','10667','Memory [{#METRIC}]','cisco.ftd.memory["{#NAME}"]','0','31d','365d','0','0','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Amount of memory in bytes for `{#METRIC}`.','0','7d','0','','49950','','','','','200','1','0','','','0','0','0','0','0','0','0','7b6551dc19e94fafb0688d17d1dc74c2','0','2','0'), ('49988','18','','10667','Memory [{#METRIC}] utilization','cisco.ftd.memory.util["{#NAME}"]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Discovery of memory `{#METRIC}` utilization (in percent).','0','7d','0','','49950','','','','','200','1','0','','','0','0','0','0','0','0','0','2844d89f2c2a47f3b5506526cd3a0a17','0','2','0'), ('49989','18','','10667','Power supply [{#SENSOR}]','cisco.ftd.sensor.psu.pwr[{#SENSOR}]','0','31d','365d','0','0','','!W','','',NULL,NULL,'','','0','','','','','2',NULL,'Power supply unit `{#SENSOR}` power consumption in watts.','0','7d','0','','49950','','','','','200','1','0','','','0','0','0','0','0','0','0','8947273145fb4f40ae76f6c04841150f','0','2','0'), ('49990','18','','10667','Statistic [{#NAME}][{#METRIC}]','cisco.ftd.snort["{#ID}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Discovery of Snort `{#NAME}` statistics of `{#METRIC}`.','0','7d','0','','49950','','','','','200','1','0','','','0','0','0','0','0','0','0','402bb608adbd44aea706eaba9c849db5','0','2','0'), ('49991','18','','10667','Temperature [{#SENSOR}]','cisco.ftd.sensor.temp.value["{#SENSOR}"]','0','31d','365d','0','0','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'Temperature of sensor `{#SENSOR}`.','0','7d','0','','49950','','','','','200','1','0','','','0','0','0','0','0','0','0','3eb667ad9bf64ecc8b919017c158a1cd','0','2','0'), ('49992','18','','10667','Interface [{#NAME}]: Throughput','cisco.ftd.interface.throughput["{#NAME}"]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Throughput of the `{#NAME}` interface.','0','7d','0','','49949','','','','','200','1','0','','','0','0','0','0','0','0','0','a3ff16bc8dd74055bfcd75144a8f97cd','0','2','0'), ('49993','18','','10667','FS [{#FSNAME}][{#FSMOUNT}]: Space utilization','cisco.ftd.fs.pused["{#FSNAME}","{#FSMOUNT}"]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Calculated as the percentage of the currently used space compared to the maximum available space.','0','7d','0','','49950','','','','','200','1','0','','','0','0','0','0','0','0','0','89ccc9c43d084d5d84cac0118a0e205b','0','2','0'), ('50171','18','','10548','Admin [{#ADMIN.NAME}]: authentication method','meraki.admin.account.auth.method[{#ADMIN.ID}]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Admin''s authentication method.','0','7d','0','','50169','','','','','200','1','0','','','0','0','0','0','0','0','0','d4d450d2788c4e83af247b647951314b','0','2','0'), ('50172','18','','10548','Admin [{#ADMIN.NAME}]: organization access','meraki.admin.account.org.access[{#ADMIN.ID}]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Admin''s level of access to the organization.','0','7d','0','','50169','','','','','200','1','0','','','0','0','0','0','0','0','0','7efd859bb84e47bd84a099686f42ee8b','0','2','0'), ('50173','18','','10548','Admin [{#ADMIN.NAME}]: account status','meraki.admin.account.status[{#ADMIN.ID}]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Status of the admin''s account.','0','7d','0','','50169','','','','','200','1','0','','','0','0','0','0','0','0','0','58a07f56495943dc9cb58352d919de61','0','2','0'), ('50174','18','','10548','Admin [{#ADMIN.NAME}]: 2FA enabled','meraki.admin.account.two.factor.auth[{#ADMIN.ID}]','0','31d','365d','0','3','','','','',NULL,'1142','','','0','','','','','2',NULL,'Indicates whether two-factor authentication is enabled.','0','7d','0','','50169','','','','','200','1','0','','','0','0','0','0','0','0','0','edfa03da4a694111920146d2744884bb','0','2','0'), ('50175','18','','10548','SAML role [{#SAML.ROLE}]: organization access','meraki.saml.org.access[{#SAML.ID}]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The privilege of the SAML administrator in the organization.','0','7d','0','','50170','','','','','200','1','0','','','0','0','0','0','0','0','0','f4bf93217d10424fb56d3ff8965d2495','0','2','0'); INSERT INTO items (itemid,type,snmp_oid,hostid,name,key_,delay,history,trends,status,value_type,trapper_hosts,units,formula,logtimefmt,templateid,valuemapid,params,ipmi_sensor,authtype,username,password,publickey,privatekey,flags,interfaceid,description,inventory_link,lifetime,evaltype,jmx_endpoint,master_itemid,timeout,url,query_fields,posts,status_codes,follow_redirects,post_type,http_proxy,headers,retrieve_mode,request_method,output_format,verify_peer,verify_host,allow_traps,discover,uuid,lifetime_type,enabled_lifetime_type,enabled_lifetime) VALUES ('30348','18','','10310','DB {#DB}: Average TTL','redis.db.avg_ttl["{#DB}"]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Average TTL','0','30d','0','','45110','','','','','200','1','0','','','0','0','0','0','0','0','0','38fcb8524f1b4f50a4945333fc6c7536','0','2','0'), ('30349','18','','10310','DB {#DB}: Expires','redis.db.expires["{#DB}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of keys with an expiration','0','30d','0','','45110','','','','','200','1','0','','','0','0','0','0','0','0','0','bde12d459b7b4e23a22ed6188b57bb25','0','2','0'), ('30350','18','','10310','DB {#DB}: Keys','redis.db.keys["{#DB}"]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total number of keys','0','30d','0','','45110','','','','','200','1','0','','','0','0','0','0','0','0','0','2bae0d2f8b8348bcad207b61ef6286c3','0','2','0'), ('32866','18','','10365','Mountpoint metrics discovery','vault.mountpoint.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Mountpoint metrics discovery.','0','7d','0','','32803','','','','','200','1','0','','','0','0','0','0','0','0','0','ca7bbea60da54770b164ee11d9cd325f','0','2','0'), ('32867','18','','10365','Replication metrics discovery','vault.replication.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for replication metrics.','0','7d','0','','32850','','','','','200','1','0','','','0','0','0','0','0','0','0','f2015f2394a64e7e923a2030400bcd69','0','2','0'), ('32868','18','','10365','Storage metrics discovery','vault.storage.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Storage backend metrics discovery.','0','7d','1','','32846','','','','','200','1','0','','','0','0','0','0','0','0','0','ef703fedc3b347e9bb878d159d6756d8','0','2','0'), ('32870','18','','10365','WAL metrics discovery','vault.wal.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Discovery for WAL metrics.','0','7d','0','','32845','','','','','200','1','0','','','0','0','0','0','0','0','0','ce7b2bb4c09c42d5a4b9e92c1c3dee23','0','2','0'), ('34360','18','','10397','Region heartbeat: error, rate','pd.region_heartbeat.error.rate[{#STORE_ADDRESS}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of heartbeats with the error status per second.','0','30d','0','','45117','','','','','200','1','0','','','0','0','0','0','0','0','0','024bf1d31bbd40a49d683d962887c6e0','0','2','0'), ('34361','18','','10397','Region heartbeat: active, rate','pd.region_heartbeat.ok.rate[{#STORE_ADDRESS}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of heartbeats with the ok status per second.','0','30d','0','','45117','','','','','200','1','0','','','0','0','0','0','0','0','0','1d1d686f5c544a89a691a9b75e5c3b11','0','2','0'), ('34362','18','','10397','Region schedule push: total, rate','pd.region_heartbeat.push.err.rate[{#STORE_ADDRESS}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'','0','30d','0','','45117','','','','','200','1','0','','','0','0','0','0','0','0','0','c44f934ce8a144afa95252041535ef44','0','2','0'), ('34363','18','','10397','Region heartbeat: total, rate','pd.region_heartbeat.rate[{#STORE_ADDRESS}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The count of heartbeats reported to PD per instance per second.','0','30d','0','','45117','','','','','200','1','0','','','0','0','0','0','0','0','0','ea76344669de4251a0e7bef35d70494a','0','2','0'), ('34406','18','','10398','Server query "Error": {#TYPE}, rate','tidb.server_query.error.rate[{#TYPE}]','0','31d','365d','0','0','','Qps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of queries on TiDB instance per second with failure of command execution results.','0','30d','0','','45121','','','','','200','1','0','','','0','0','0','0','0','0','0','3b450f5a853247358a8fe6f31f000575','0','2','0'), ('34407','18','','10398','Server query "OK": {#TYPE}, rate','tidb.server_query.ok.rate[{#TYPE}]','0','31d','365d','0','0','','Qps','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of queries on TiDB instance per second with success of command execution results.','0','30d','0','','45121','','','','','200','1','0','','','0','0','0','0','0','0','0','125bdd3eb1b643f4ad00d58fbed455f6','0','2','0'), ('39752','18','','10503','SDWAN peers path metrics discovery','velocloud.sdwanpath.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Metrics for SDWAN peers path.','0','7d','0','','47279','','','','','200','1','0','','','0','0','0','0','0','0','0','23ae8832dee54e7087b8c4d3c970a9ea','0','2','0'), ('39753','18','','10503','SDWAN peers metrics discovery','velocloud.sdwanpeers.discovery','0','90d','0','0','4','','','','',NULL,NULL,'','','0','','','','','1',NULL,'Metrics for SDWAN peers.','0','7d','0','','47279','','','','','200','1','0','','','0','0','0','0','0','0','0','5695baeff9f64b9b8850dbc6f98566ef','0','2','0'), ('39754','18','','10503','Edge [{#NAME}]: Activation state','velocloud.edge.activation[{#ID}]','0','31d','365d','0','3','','','','',NULL,'561','','','0','','','','','2',NULL,'Edge activation state.','0','30d','0','','44422','','','','','200','1','0','','','0','0','0','0','0','0','0','79aa9ebb1ce64944a78a7c8d7603f53b','0','2','0'), ('39755','18','','10503','Edge [{#NAME}]: Description','velocloud.edge.description[{#ID}]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Edge description.','0','30d','0','','44422','','','','','200','1','0','','','0','0','0','0','0','0','0','cecb2a3698704c4c89ef12eb3bb39222','0','2','0'), ('39756','18','','10503','Edge [{#NAME}]: HA state','velocloud.edge.ha_state[{#ID}]','0','31d','365d','0','3','','','','',NULL,'562','','','0','','','','','2',NULL,'Edge high availability state.','0','30d','0','','44422','','','','','200','1','0','','','0','0','0','0','0','0','0','490afb422d0f457595343d49536470b7','0','2','0'), ('39757','18','','10503','Edge [{#NAME}]: Model number','velocloud.edge.model[{#ID}]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Edge model number.','0','30d','0','','44422','','','','','200','1','0','','','0','0','0','0','0','0','0','fdb55947147249109da453009d6bd443','0','2','0'), ('39758','18','','10503','Edge [{#NAME}]: Service uptime','velocloud.edge.service_uptime[{#ID}]','0','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','2',NULL,'Edge service uptime.','0','30d','0','','44422','','','','','200','1','0','','','0','0','0','0','0','0','0','0af44b485ae54de49a0385923c897bee','0','2','0'), ('39759','18','','10503','Edge [{#NAME}]: Software version','velocloud.edge.software_version[{#ID}]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Edge software version.','0','30d','0','','44422','','','','','200','1','0','','','0','0','0','0','0','0','0','e12fe7584fbd40268e7c16ed044aa4db','0','2','0'), ('39760','18','','10503','Edge [{#NAME}]: State','velocloud.edge.state[{#ID}]','0','31d','365d','0','3','','','','',NULL,'563','','','0','','','','','2',NULL,'Edge state.','0','30d','0','','44422','','','','','200','1','0','','','0','0','0','0','0','0','0','74b49eac72574daab1b727045be118ca','0','2','0'), ('39761','18','','10503','Edge [{#NAME}]: System uptime','velocloud.edge.system_uptime[{#ID}]','0','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','2',NULL,'Edge system uptime.','0','30d','0','','44422','','','','','200','1','0','','','0','0','0','0','0','0','0','a86c1fa26d4d4481bdfb099338c27989','0','2','0'), ('39762','18','','10503','Gateway [{#NAME}]: Connected edges','velocloud.gateway.connected_edges[{#ID}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Gateway connected edges.','0','30d','0','','44423','','','','','200','1','0','','','0','0','0','0','0','0','0','52859166849d4cdf860664f8d3b8088d','0','2','0'), ('39763','18','','10503','Gateway [{#NAME}]: Description','velocloud.gateway.description[{#ID}]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Gateway description.','0','30d','0','','44423','','','','','200','1','0','','','0','0','0','0','0','0','0','5e588efb83be4dc2bc29eaa0a6630718','0','2','0'), ('39764','18','','10503','Gateway [{#NAME}]: IP address','velocloud.gateway.ip_address[{#ID}]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Gateway ip address.','0','30d','0','','44423','','','','','200','1','0','','','0','0','0','0','0','0','0','7f2a0a68386744cb84fab35df8c55a07','0','2','0'), ('39765','18','','10503','Gateway [{#NAME}]: Service uptime','velocloud.gateway.service_uptime[{#ID}]','0','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','2',NULL,'Gateway service uptime.','0','30d','0','','44423','','','','','200','1','0','','','0','0','0','0','0','0','0','b304460854f0485189f88df12483b5ac','0','2','0'), ('39766','18','','10503','Gateway [{#NAME}]: State','velocloud.gateway.state[{#ID}]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Gateway state.','0','30d','0','','44423','','','','','200','1','0','','','0','0','0','0','0','0','0','91784583eda943a7ace430413450391c','0','2','0'), ('39767','18','','10503','Gateway [{#NAME}]: System uptime','velocloud.gateway.system_uptime[{#ID}]','0','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','2',NULL,'Gateway system uptime.','0','30d','0','','44423','','','','','200','1','0','','','0','0','0','0','0','0','0','d902600ef51640ffaaa4384ce505bcc2','0','2','0'), ('39768','18','','10503','Gateway [{#NAME}]: Utilization CPU','velocloud.gateway.utilization.cpu[{#ID}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Gateway CPU utilization.','0','30d','0','','44423','','','','','200','1','0','','','0','0','0','0','0','0','0','66c8fe8095724fb38966b05ef5d77a37','0','2','0'), ('39769','18','','10503','Gateway [{#NAME}]: Utilization load','velocloud.gateway.utilization.load[{#ID}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Gateway load.','0','30d','0','','44423','','','','','200','1','0','','','0','0','0','0','0','0','0','b510c38771464024a66dc20ce9d75505','0','2','0'), ('39770','18','','10503','Gateway [{#NAME}]: Utilization memory','velocloud.gateway.utilization.memory[{#ID}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Gateway memory utilization.','0','30d','0','','44423','','','','','200','1','0','','','0','0','0','0','0','0','0','ad83565ae40f480dacd56e63bd475ddc','0','2','0'), ('39771','18','','10503','Gateway [{#NAME}]: Utilization overall','velocloud.gateway.utilization.overall[{#ID}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Gateway overall utilization.','0','30d','0','','44423','','','','','200','1','0','','','0','0','0','0','0','0','0','b10c51350f604a8195e9c0176ca2de85','0','2','0'), ('39772','18','','10503','Link [{#NAME}]:[{#IP}]: Best loss rx, %','velocloud.link.best_loss_rx.pct[{#ID}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Link receive best loss.','0','30d','0','','44424','','','','','200','1','0','','','0','0','0','0','0','0','0','6b3351b9187d47ba804e5fcd8c6f474f','0','2','0'), ('39773','18','','10503','Link [{#NAME}]:[{#IP}]: Best loss tx, %','velocloud.link.best_loss_tx.pct[{#ID}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Link transmit best loss.','0','30d','0','','44424','','','','','200','1','0','','','0','0','0','0','0','0','0','897c9055d51a4e75ba7bae1160c7303e','0','2','0'), ('39774','18','','10503','Link [{#NAME}]:[{#IP}]: Bytes in','velocloud.link.bytes_rx[{#ID}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Link received bytes.','0','30d','0','','44424','','','','','200','1','0','','','0','0','0','0','0','0','0','5602191f2e0f4cb2b2340a4cfc77cfc7','0','2','0'), ('39775','18','','10503','Link [{#NAME}]:[{#IP}]: Bytes out','velocloud.link.bytes_tx[{#ID}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Link transmitted bytes.','0','30d','0','','44424','','','','','200','1','0','','','0','0','0','0','0','0','0','758b71f1692c46a8bb0611566b00031b','0','2','0'), ('39776','18','','10503','Link [{#NAME}]:[{#IP}]: Last active','velocloud.link.last_active[{#ID}]','0','31d','365d','0','3','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Link last active in seconds ago.','0','30d','0','','44424','','','','','200','1','0','','','0','0','0','0','0','0','0','3320d368036b460091b3f20e3c5cebd9','0','2','0'), ('39777','18','','10503','Link [{#NAME}]:[{#IP}]: Packets in','velocloud.link.packets_rx[{#ID}]','0','31d','365d','0','3','','!packets','','',NULL,NULL,'','','0','','','','','2',NULL,'Link received packets.','0','30d','0','','44424','','','','','200','1','0','','','0','0','0','0','0','0','0','cf66e401adc6432e8052baf0128d6877','0','2','0'), ('39778','18','','10503','Link [{#NAME}]:[{#IP}]: Packets out','velocloud.link.packets_tx[{#ID}]','0','31d','365d','0','3','','!packets','','',NULL,NULL,'','','0','','','','','2',NULL,'Link transmitted packets.','0','30d','0','','44424','','','','','200','1','0','','','0','0','0','0','0','0','0','152d25185f3e4e8b80ffea7d8ba25775','0','2','0'), ('39779','18','','10503','Link [{#NAME}]:[{#IP}]: State','velocloud.link.state[{#ID}]','0','31d','365d','0','3','','','','',NULL,'564','','','0','','','','','2',NULL,'Link state.','0','30d','0','','44424','','','','','200','1','0','','','0','0','0','0','0','0','0','b1d5964d030841e28a8b9e80c8152e7a','0','2','0'), ('39780','18','','10503','Link [{#NAME}]:[{#IP}]: Total bytes','velocloud.link.total_bytes[{#ID}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Link Total bytes.','0','30d','0','','44424','','','','','200','1','0','','','0','0','0','0','0','0','0','43deb16e85644937a182b01eadb875d0','0','2','0'), ('39781','18','','10503','Link [{#NAME}]:[{#IP}]: Total packets','velocloud.link.total_packets[{#ID}]','0','31d','365d','0','3','','!packets','','',NULL,NULL,'','','0','','','','','2',NULL,'Link total packets.','0','30d','0','','44424','','','','','200','1','0','','','0','0','0','0','0','0','0','622408bd703040339d1b4bdebed3280e','0','2','0'), ('39782','18','','10503','Path [{#NAME}]:[{#SOURCE} => {#DESTINATION}]: Bytes in','velocloud.sdwanpath.bytes_rx[{#NAME}/{#SOURCE}/{#DESTINATION}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Bytes received of SDWAN peer path.','0','30d','0','','44425','','','','','200','1','0','','','0','0','0','0','0','0','0','2fafb7d1b4c1429381f2f46c60dafa28','0','2','0'), ('39783','18','','10503','Path [{#NAME}]:[{#SOURCE} => {#DESTINATION}]: Bytes out','velocloud.sdwanpath.bytes_tx[{#NAME}/{#SOURCE}/{#DESTINATION}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Bytes transmitted of SDWAN peer path.','0','30d','0','','44425','','','','','200','1','0','','','0','0','0','0','0','0','0','2fa176affa6b46ffae3682ea7cb96866','0','2','0'), ('39784','18','','10503','Path [{#NAME}]:[{#SOURCE} => {#DESTINATION}]: Packets in','velocloud.sdwanpath.packets_rx[{#NAME}/{#SOURCE}/{#DESTINATION}]','0','31d','365d','0','3','','!packets','','',NULL,NULL,'','','0','','','','','2',NULL,'Packets received of SDWAN peer path.','0','30d','0','','44425','','','','','200','1','0','','','0','0','0','0','0','0','0','cf8f3d0c61994e49b493d79160da27bf','0','2','0'), ('39785','18','','10503','Path [{#NAME}]:[{#SOURCE} => {#DESTINATION}]: Packets out','velocloud.sdwanpath.packets_tx[{#NAME}/{#SOURCE}/{#DESTINATION}]','0','31d','365d','0','3','','!packets','','',NULL,NULL,'','','0','','','','','2',NULL,'Packets transmitted of SDWAN peer path.','0','30d','0','','44425','','','','','200','1','0','','','0','0','0','0','0','0','0','49fc4e85c5a5415793fc89f2c3cdec8f','0','2','0'), ('39786','18','','10503','Path [{#NAME}]:[{#SOURCE} => {#DESTINATION}]: Packet Loss in','velocloud.sdwanpath.packet_loss_rx[{#NAME}/{#SOURCE}/{#DESTINATION}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Received packet loss of SDWAN peer path.','0','30d','0','','44425','','','','','200','1','0','','','0','0','0','0','0','0','0','98a0c2c3a3be47e9bd32cf719069cad2','0','2','0'), ('39787','18','','10503','Path [{#NAME}]:[{#SOURCE} => {#DESTINATION}]: Packet Loss out','velocloud.sdwanpath.packet_loss_tx[{#NAME}/{#SOURCE}/{#DESTINATION}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Transmitted packet loss of SDWAN peer path.','0','30d','0','','44425','','','','','200','1','0','','','0','0','0','0','0','0','0','0f2ef8113a3644feae7b827675362485','0','2','0'), ('39788','18','','10503','Path [{#NAME}]:[{#SOURCE} => {#DESTINATION}]: Bytes total','velocloud.sdwanpath.total_bytes[{#NAME}/{#SOURCE}/{#DESTINATION}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total bytes of SDWAN peer path.','0','30d','0','','44425','','','','','200','1','0','','','0','0','0','0','0','0','0','3a7ed14c13874c3088f28253a25a0c10','0','2','0'), ('39789','18','','10503','Path [{#NAME}]:[{#SOURCE} => {#DESTINATION}]: Total packets','velocloud.sdwanpath.total_packets[{#NAME}/{#SOURCE}/{#DESTINATION}]','0','31d','365d','0','3','','!packets','','',NULL,NULL,'','','0','','','','','2',NULL,'Total packets of SDWAN peer path.','0','30d','0','','44425','','','','','200','1','0','','','0','0','0','0','0','0','0','1f7bbdd7c1e24429878538b3b6bbddc4','0','2','0'), ('39790','18','','10503','SDWAN Peer [{#NAME}]:[{#TYPE}]: Dead path','velocloud.sdwanpeer.dead_path[{#EDGE.ID}/{#ID}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of dead path of SDWAN peer.','0','30d','0','','44426','','','','','200','1','0','','','0','0','0','0','0','0','0','25f6dc87f6014502a5eeb36ed3ddd7ed','0','2','0'), ('39791','18','','10503','SDWAN Peer [{#NAME}]:[{#TYPE}]: Description','velocloud.sdwanpeer.description[{#EDGE.ID}/{#ID}]','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Description of SDWAN peer.','0','30d','0','','44426','','','','','200','1','0','','','0','0','0','0','0','0','0','08fb5b9cf8464e4382224515ba75953d','0','2','0'), ('39792','18','','10503','SDWAN Peer [{#NAME}]:[{#TYPE}]: Stable path','velocloud.sdwanpeer.stable_path[{#EDGE.ID}/{#ID}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of stable path of SDWAN peer.','0','30d','0','','44426','','','','','200','1','0','','','0','0','0','0','0','0','0','ece78f083d55413ab82a33f03c0204ef','0','2','0'), ('39793','18','','10503','SDWAN Peer [{#NAME}]:[{#TYPE}]: Standby path','velocloud.sdwanpeer.standby_path[{#EDGE.ID}/{#ID}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of standby path of SDWAN peer.','0','30d','0','','44426','','','','','200','1','0','','','0','0','0','0','0','0','0','3884e4bf4e8a46508c04a6cd06ae1513','0','2','0'), ('39794','18','','10503','SDWAN Peer [{#NAME}]:[{#TYPE}]: Total path','velocloud.sdwanpeer.total_path[{#EDGE.ID}/{#ID}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of total path of SDWAN peer.','0','30d','0','','44426','','','','','200','1','0','','','0','0','0','0','0','0','0','39389b7b594e4b5da678ff985da0ba2a','0','2','0'), ('39795','18','','10503','SDWAN Peer [{#NAME}]:[{#TYPE}]: Unknown path','velocloud.sdwanpeer.unknown_path[{#EDGE.ID}/{#ID}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of unknown path of SDWAN peer.','0','30d','0','','44426','','','','','200','1','0','','','0','0','0','0','0','0','0','474e118fa98340f68c73f4ddc5f54f5e','0','2','0'), ('39796','18','','10503','SDWAN Peer [{#NAME}]:[{#TYPE}]: Unstable path','velocloud.sdwanpeer.unstable_path[{#EDGE.ID}/{#ID}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Count of unstable path of SDWAN peer.','0','30d','0','','44426','','','','','200','1','0','','','0','0','0','0','0','0','0','4e93b5e2f88747b093aba97d94d433f2','0','2','0'), ('43196','18','','10524','Controller [{#CONTROLLER.ID}]: Cache: Read hits, rate','hpe.msa.controllers.cache.read.hits["{#CONTROLLER.ID}",rate]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'For the controller that owns the volume, the number of times the block to be read is found in cache per second.','0','30d','0','','44108','','','','','200','1','0','','','0','0','0','0','0','0','0','53b0ea51add74c629814c881ac824d1b','0','2','0'), ('43197','18','','10524','Controller [{#CONTROLLER.ID}]: IOPS, write rate','hpe.msa.controllers.iops.write["{#CONTROLLER.ID}",rate]','0','31d','365d','0','0','','!w/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of write operations per second.','0','30d','0','','44108','','','','','200','1','0','','','0','0','0','0','0','0','0','6444038b72294992ab17c126ccbe7251','0','2','0'), ('43198','18','','10524','Controller [{#CONTROLLER.ID}]: Status','hpe.msa.controllers["{#CONTROLLER.ID}",status]','0','31d','365d','0','3','','','','',NULL,'976','','','0','','','','','2',NULL,'Storage controller status.','0','30d','0','','44109','','','','','200','1','0','','','0','0','0','0','0','0','0','a2be1b4b814d45b18bb4e313818511d6','0','2','0'), ('43199','18','','10524','Controller [{#CONTROLLER.ID}]: Serial number','hpe.msa.controllers["{#CONTROLLER.ID}",serial_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Storage controller serial number.','0','30d','0','','44109','','','','','200','1','0','','','0','0','0','0','0','0','0','c073adb77eb84cf79e1e1693d9378d47','0','2','0'), ('43200','18','','10524','Controller [{#CONTROLLER.ID}]: Pools','hpe.msa.controllers["{#CONTROLLER.ID}",pools]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of pools in the storage system.','0','30d','0','','44109','','','','','200','1','0','','','0','0','0','0','0','0','0','e4930566c3844f9487e343c203f3eb96','0','2','0'), ('43201','18','','10524','Controller [{#CONTROLLER.ID}]: Part number','hpe.msa.controllers["{#CONTROLLER.ID}",part_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Part number of the controller.','0','30d','0','','44109','','','','','200','1','0','','','0','0','0','0','0','0','0','33e754d5acb84b7c86b2e23b122e6eed','0','2','0'), ('43202','18','','10524','Controller [{#CONTROLLER.ID}]: IP address','hpe.msa.controllers["{#CONTROLLER.ID}",ip_address]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Controller network port IP address.','0','30d','0','','44109','','','','','200','1','0','','','0','0','0','0','0','0','0','5f00490ddd22458b93add06ed24a9f96','0','2','0'), ('43203','18','','10524','Controller [{#CONTROLLER.ID}]: Health','hpe.msa.controllers["{#CONTROLLER.ID}",health]','0','31d','365d','0','3','','','','',NULL,'983','','','0','','','','','2',NULL,'Controller health status.','0','30d','0','','44109','','','','','200','1','0','','','0','0','0','0','0','0','0','6d2a84b6b1804082ab4ef3451a52b552','0','2','0'), ('43204','18','','10524','Controller [{#CONTROLLER.ID}]: Firmware version','hpe.msa.controllers["{#CONTROLLER.ID}",firmware]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Storage controller firmware version.','0','30d','0','','44109','','','','','200','1','0','','','0','0','0','0','0','0','0','5a987843b14c4d25a1fde4429015f773','0','2','0'), ('43205','18','','10524','Controller [{#CONTROLLER.ID}]: Disk groups','hpe.msa.controllers["{#CONTROLLER.ID}",disk_groups]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of disk groups in the storage system.','0','30d','0','','44109','','','','','200','1','0','','','0','0','0','0','0','0','0','94c2c9bfd2414875a53fbe94f6230666','0','2','0'), ('43206','18','','10524','Controller [{#CONTROLLER.ID}]: Disks','hpe.msa.controllers["{#CONTROLLER.ID}",disks]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of disks in the storage system.','0','30d','0','','44109','','','','','200','1','0','','','0','0','0','0','0','0','0','5940d26205924a13ba351f5d56192fcb','0','2','0'), ('43207','18','','10524','Controller [{#CONTROLLER.ID}]: IOPS, total rate','hpe.msa.controllers.iops.total["{#CONTROLLER.ID}",rate]','0','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'Input/output operations per second, calculated over the interval since these statistics were last requested or reset. This value will be zero if it has not been requested or reset since a controller restart.','0','30d','0','','44108','','','','','200','1','0','','','0','0','0','0','0','0','0','8bf0601293a64628be08d16391d1e11b','0','2','0'), ('43208','18','','10524','Controller [{#CONTROLLER.ID}]: Cache: Read misses, rate','hpe.msa.controllers.cache.read.misses["{#CONTROLLER.ID}",rate]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'For the controller that owns the volume, the number of times the block to be read is not found in cache per second.','0','30d','0','','44108','','','','','200','1','0','','','0','0','0','0','0','0','0','23ed270bc823484cb514600bf23b2aa5','0','2','0'), ('43209','18','','10524','Controller [{#CONTROLLER.ID}]: IOPS, read rate','hpe.msa.controllers.iops.read["{#CONTROLLER.ID}",rate]','0','31d','365d','0','0','','!r/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of read operations per second.','0','30d','0','','44108','','','','','200','1','0','','','0','0','0','0','0','0','0','3d7f1a97cd8249efbabc2402006c1cc2','0','2','0'), ('43210','18','','10524','Controller [{#CONTROLLER.ID}]: Data transfer rate: Writes','hpe.msa.controllers.data_transfer.writes["{#CONTROLLER.ID}",rate]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The data write rate, in bytes per second.','0','30d','0','','44108','','','','','200','1','0','','','0','0','0','0','0','0','0','93b508f92de04dfbbfe7099bf37796ce','0','2','0'), ('43211','18','','10524','Controller [{#CONTROLLER.ID}]: Data transfer rate: Total','hpe.msa.controllers.data_transfer.total["{#CONTROLLER.ID}",rate]','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The data transfer rate, in bytes per second, calculated over the interval since these statistics were last requested or reset. This value will be zero if it has not been requested or reset since a controller restart.','0','30d','0','','44108','','','','','200','1','0','','','0','0','0','0','0','0','0','7c34d1c4fd784fb695d9fc7c5a686329','0','2','0'), ('43212','18','','10524','Controller [{#CONTROLLER.ID}]: Data transfer rate: Reads','hpe.msa.controllers.data_transfer.reads["{#CONTROLLER.ID}",rate]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The data read rate, in bytes per second.','0','30d','0','','44108','','','','','200','1','0','','','0','0','0','0','0','0','0','c87dc81f4a3447f3962a69a8b0d79769','0','2','0'), ('43213','18','','10524','Controller [{#CONTROLLER.ID}]: CPU utilization','hpe.msa.controllers.cpu["{#CONTROLLER.ID}",util]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Percentage of time the CPU is busy, from 0 to 100.','0','30d','0','','44108','','','','','200','1','0','','','0','0','0','0','0','0','0','cfff8c77d99440d18794e1c6dbf738ad','0','2','0'), ('43214','18','','10524','Controller [{#CONTROLLER.ID}]: Cache memory size','hpe.msa.controllers.cache["{#CONTROLLER.ID}",total]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Controller cache memory size.','0','30d','0','','44109','','','','','200','1','0','','','0','0','0','0','0','0','0','38a6ca0447d548c593d08acf377250cb','0','2','0'), ('43215','18','','10524','Controller [{#CONTROLLER.ID}]: Cache: Write utilization','hpe.msa.controllers.cache.write["{#CONTROLLER.ID}",util]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Percentage of write cache in use, from 0 to 100.','0','30d','0','','44108','','','','','200','1','0','','','0','0','0','0','0','0','0','fa9400f2dcba40f4b57dfcef6f7856a0','0','2','0'), ('43216','18','','10524','Controller [{#CONTROLLER.ID}]: Cache: Write misses, rate','hpe.msa.controllers.cache.write.misses["{#CONTROLLER.ID}",rate]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'For the controller that owns the volume, the number of times the block written to is not found in cache per second.','0','30d','0','','44108','','','','','200','1','0','','','0','0','0','0','0','0','0','bafcf98cee9c4a8da0aea7b39a5242d4','0','2','0'), ('43217','18','','10524','Controller [{#CONTROLLER.ID}]: Cache: Write hits, rate','hpe.msa.controllers.cache.write.hits["{#CONTROLLER.ID}",rate]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'For the controller that owns the volume, the number of times the block written to is found in cache per second.','0','30d','0','','44108','','','','','200','1','0','','','0','0','0','0','0','0','0','71a92c76ae7740cd9e58ea337f4a75e3','0','2','0'), ('43218','18','','10524','Controller [{#CONTROLLER.ID}]: Uptime','hpe.msa.controllers["{#CONTROLLER.ID}",uptime]','0','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of seconds since the controller was restarted.','0','30d','0','','44108','','','','','200','1','0','','','0','0','0','0','0','0','0','df2bede9ea85483581a35a45a15d4de4','0','2','0'), ('43219','18','','10524','Disk [{#DURABLE.ID}]: Space total','hpe.msa.disks.space["{#DURABLE.ID}",total]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total size of the disk.','0','30d','0','','44110','','','','','200','1','0','','','0','0','0','0','0','0','0','60418ff95d2b4ac698fe041647656005','0','2','0'), ('43220','18','','10524','Disk [{#DURABLE.ID}]: SSD life left','hpe.msa.disks.ssd["{#DURABLE.ID}",life_left]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of disk life remaining.','0','30d','0','','44110','','','','','200','1','0','','','0','0','0','0','0','0','1','579f29536b0740b9887cbb0863bd3e45','0','2','0'), ('43221','18','','10524','Disk [{#DURABLE.ID}]: Disk group','hpe.msa.disks["{#DURABLE.ID}",group]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'If the disk is in a disk group, the disk group name.','0','30d','0','','44110','','','','','200','1','0','','','0','0','0','0','0','0','0','a430bd06d24447649687dc9b9c3dee2c','0','2','0'), ('43222','18','','10524','Disk [{#DURABLE.ID}]: Health','hpe.msa.disks["{#DURABLE.ID}",health]','0','31d','365d','0','3','','','','',NULL,'983','','','0','','','','','2',NULL,'Disk health status.','0','30d','0','','44110','','','','','200','1','0','','','0','0','0','0','0','0','0','17f4069e731b45c7a9d9bfc5786a07fc','0','2','0'), ('43223','18','','10524','Disk [{#DURABLE.ID}]: Model','hpe.msa.disks["{#DURABLE.ID}",model]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Disk model.','0','30d','0','','44110','','','','','200','1','0','','','0','0','0','0','0','0','0','689e29b31fd0490fb26920c04d094136','0','2','0'), ('43224','18','','10524','Disk [{#DURABLE.ID}]: Storage pool','hpe.msa.disks["{#DURABLE.ID}",pool]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'If the disk is in a pool, the pool name.','0','30d','0','','44110','','','','','200','1','0','','','0','0','0','0','0','0','0','20d37295acce41acac8ba77962130774','0','2','0'), ('43225','18','','10524','Disk [{#DURABLE.ID}]: Serial number','hpe.msa.disks["{#DURABLE.ID}",serial_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Disk serial number.','0','30d','0','','44110','','','','','200','1','0','','','0','0','0','0','0','0','0','7c4da69f28824444960e6783fe090526','0','2','0'), ('43226','18','','10524','Disk [{#DURABLE.ID}]: Temperature','hpe.msa.disks["{#DURABLE.ID}",temperature]','0','31d','365d','0','3','','!°C','','',NULL,NULL,'','','0','','','','','2',NULL,'Temperature of the disk.','0','30d','0','','44110','','','','','200','1','0','','','0','0','0','0','0','0','0','770749eafc79429185e7127d95b1ff74','0','2','0'), ('43227','18','','10524','Disk [{#DURABLE.ID}]: Temperature status','hpe.msa.disks["{#DURABLE.ID}",temperature_status]','0','31d','365d','0','3','','','','',NULL,'978','','','0','','','','','2',NULL,'Disk temperature status.','0','30d','0','','44110','','','','','200','1','0','','','0','0','0','0','0','0','0','5ba57b2f4d014b2a81c546e8f74a133e','0','2','0'), ('43228','18','','10524','Disk [{#DURABLE.ID}]: Type','hpe.msa.disks["{#DURABLE.ID}",type]','0','31d','365d','0','3','','','','',NULL,'979','','','0','','','','','2',NULL,'Disk type: SAS: Enterprise SAS spinning disk. SAS MDL: Midline SAS spinning disk. SSD SAS: SAS solit-state disk.','0','30d','0','','44110','','','','','200','1','0','','','0','0','0','0','0','0','0','d781943c08d24556a083a16cca34ad58','0','2','0'), ('43229','18','','10524','Disk [{#DURABLE.ID}]: Vendor','hpe.msa.disks["{#DURABLE.ID}",vendor]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Disk vendor.','0','30d','0','','44110','','','','','200','1','0','','','0','0','0','0','0','0','0','86ce9f4d139e46908750d158b004b517','0','2','0'), ('43230','18','','10524','Disk group [{#NAME}]: Average response time: Read','hpe.msa.disks.groups.avg_rsp_time["{#NAME}",read]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Average response time for all read operations, calculated over the interval since these statistics were last requested or reset.','0','30d','0','','44112','','','','','200','1','0','','','0','0','0','0','0','0','0','5b0b3db4bdff429996111d566b6d0386','0','2','0'), ('43231','18','','10524','Disk group [{#NAME}]: RAID type','hpe.msa.disks.groups.raid["{#NAME}",type]','0','31d','365d','0','3','','','','',NULL,'985','','','0','','','','','2',NULL,'The RAID level of the disk group.','0','30d','0','','44111','','','','','200','1','0','','','0','0','0','0','0','0','0','5356a1f819a54c59bb3765d99a965537','0','2','0'), ('43232','18','','10524','Disk group [{#NAME}]: Health','hpe.msa.disks.groups["{#NAME}",health]','0','31d','365d','0','3','','','','',NULL,'983','','','0','','','','','2',NULL,'Disk group health.','0','30d','0','','44111','','','','','200','1','0','','','0','0','0','0','0','0','0','1c714d46a3ae4e77b4a2e155c047e630','0','2','0'), ('43233','18','','10524','Disk group [{#NAME}]: Disks count','hpe.msa.disks.groups["{#NAME}",disk_count]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of disks in the disk group.','0','30d','0','','44111','','','','','200','1','0','','','0','0','0','0','0','0','0','085fae4f87444b62ae5c52703176a533','0','2','0'), ('43234','18','','10524','Disk group [{#NAME}]: Space total','hpe.msa.disks.groups.space["{#NAME}",total]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The capacity of the disk group.','0','30d','0','','44111','','','','','200','1','0','','','0','0','0','0','0','0','0','29eae883b9fc4e2191daa870bd9d58ad','0','2','0'), ('43235','18','','10524','Disk group [{#NAME}]: Pool space used','hpe.msa.disks.groups.space["{#NAME}",pool_util]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of pool capacity that the disk group occupies.','0','30d','0','','44111','','','','','200','1','0','','','0','0','0','0','0','0','0','bfe1a64952754488898798f5f07e24b1','0','2','0'), ('43236','18','','10524','Disk group [{#NAME}]: Space free','hpe.msa.disks.groups.space["{#NAME}",free]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The free space in the disk group.','0','30d','0','','44111','','','','','200','1','0','','','0','0','0','0','0','0','0','b1c95904002b4c17a1c007c664fa4ff8','0','2','0'), ('43237','18','','10524','Disk group [{#NAME}]: IOPS, write rate','hpe.msa.disks.groups.iops.write["{#NAME}",rate]','0','31d','365d','0','0','','!w/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of write operations per second.','0','30d','0','','44112','','','','','200','1','0','','','0','0','0','0','0','0','0','66ec5badb1d2491d9e07b5ce45486d72','0','2','0'), ('43238','18','','10524','Disk group [{#NAME}]: Average response time: Total','hpe.msa.disks.groups.avg_rsp_time["{#NAME}",total]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Average response time for read and write operations, calculated over the interval since these statistics were last requested or reset.','0','30d','0','','44112','','','','','200','1','0','','','0','0','0','0','0','0','0','4a4fb1ae86df4607882de9c9d40f51f4','0','2','0'), ('43239','18','','10524','Disk group [{#NAME}]: IOPS, total rate','hpe.msa.disks.groups.iops.total["{#NAME}",rate]','0','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'Input/output operations per second, calculated over the interval since these statistics were last requested or reset. This value will be zero if it has not been requested or reset since a controller restart.','0','30d','0','','44112','','','','','200','1','0','','','0','0','0','0','0','0','0','044e291ab66d48dcb8b66ee18f638702','0','2','0'), ('43240','18','','10524','Disk group [{#NAME}]: IOPS, read rate','hpe.msa.disks.groups.iops.read["{#NAME}",rate]','0','31d','365d','0','0','','!r/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of read operations per second.','0','30d','0','','44112','','','','','200','1','0','','','0','0','0','0','0','0','0','18cd4383127548b68313184a2b94750f','0','2','0'), ('43241','18','','10524','Disk group [{#NAME}]: Data transfer rate: Writes','hpe.msa.disks.groups.data_transfer.writes["{#NAME}",rate]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The data write rate, in bytes per second.','0','30d','0','','44112','','','','','200','1','0','','','0','0','0','0','0','0','0','a3df11b895fa425799c34516050000bd','0','2','0'), ('43242','18','','10524','Disk group [{#NAME}]: Data transfer rate: Total','hpe.msa.disks.groups.data_transfer.total["{#NAME}",rate]','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The data transfer rate, in bytes per second, calculated over the interval since these statistics were last requested or reset. This value will be zero if it has not been requested or reset since a controller restart.','0','30d','0','','44112','','','','','200','1','0','','','0','0','0','0','0','0','0','b1e2347ea10b4e84bb227668f5560b14','0','2','0'), ('43243','18','','10524','Disk group [{#NAME}]: Data transfer rate: Reads','hpe.msa.disks.groups.data_transfer.reads["{#NAME}",rate]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The data read rate, in bytes per second.','0','30d','0','','44112','','','','','200','1','0','','','0','0','0','0','0','0','0','46ba55c8ec2e4811b254441f22ead159','0','2','0'), ('43244','18','','10524','Disk group [{#NAME}]: Average response time: Write','hpe.msa.disks.groups.avg_rsp_time["{#NAME}",write]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Average response time for all write operations, calculated over the interval since these statistics were last requested or reset.','0','30d','0','','44112','','','','','200','1','0','','','0','0','0','0','0','0','0','a93c1e1b1eee496d861464128aaefa57','0','2','0'), ('43245','18','','10524','Disk group [{#NAME}]: Status','hpe.msa.disks.groups["{#NAME}",status]','0','31d','365d','0','3','','','','',NULL,'977','','','0','','','','','2',NULL,'The status of the disk group: - CRIT: Critical. The disk group is online but isn''t fault tolerant because some of it''s disks are down. - DMGD: Damaged. The disk group is online and fault tolerant, but some of it''s disks are damaged. - FTDN: Fault tolerant with a down disk.The disk group is online and fault tolerant, but some of it''s disks are down. - FTOL: Fault tolerant. - MSNG: Missing. The disk group is online and fault tolerant, but some of it''s disks are missing. - OFFL: Offline. Either the disk group is using offline initialization, or it''s disks are down and data may be lost. - QTCR: Quarantined critical. The disk group is critical with at least one inaccessible disk. For example, two disks are inaccessible in a RAID 6 disk group or one disk is inaccessible for other fault-tolerant RAID levels. If the inaccessible disks come online or if after 60 seconds from being quarantined the disk group is QTCRor QTDN, the disk group is automatically dequarantined. - QTDN: Quarantined with a down disk. The RAID6 disk group has one inaccessible disk. The disk group is fault tolerant but degraded. If the inaccessible disks come online or if after 60 seconds from being quarantined the disk group is QTCRor QTDN, the disk group is automatically dequarantined. - QTOF: Quarantined offline. The disk group is offline with multiple inaccessible disks causing user data to be incomplete, or is an NRAID or RAID 0 disk group. - QTUN: Quarantined unsupported. The disk group contains data in a format that is not supported by this system. For example, this system does not support linear disk groups. - STOP: The disk group is stopped. - UNKN: Unknown. - UP: Up. The disk group is online and does not have fault-tolerant attributes.','0','30d','0','','44111','','','','','200','1','0','','','0','0','0','0','0','0','0','27ad0ae81baa43528cf94d3ccc5c3ec3','0','2','0'), ('43246','18','','10524','Enclosure [{#DURABLE.ID}]: Health','hpe.msa.enclosures["{#DURABLE.ID}",health]','0','31d','365d','0','3','','','','',NULL,'983','','','0','','','','','2',NULL,'Enclosure health.','0','30d','0','','44113','','','','','200','1','0','','','0','0','0','0','0','0','0','806b44d4f2dd44eea6db7e982c5fea16','0','2','0'), ('43247','18','','10524','Enclosure [{#DURABLE.ID}]: Midplane serial number','hpe.msa.enclosures["{#DURABLE.ID}",midplane_serial_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Midplane serial number.','0','30d','0','','44113','','','','','200','1','0','','','0','0','0','0','0','0','0','42987ecd83d74ffa91a8da7d72aacdb0','0','2','0'), ('43248','18','','10524','Enclosure [{#DURABLE.ID}]: Model','hpe.msa.enclosures["{#DURABLE.ID}",model]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Enclosure model.','0','30d','0','','44113','','','','','200','1','0','','','0','0','0','0','0','0','0','10fff6e5bc2143348c3b0c6a3eb87631','0','2','0'), ('43249','18','','10524','Enclosure [{#DURABLE.ID}]: Part number','hpe.msa.enclosures["{#DURABLE.ID}",part_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Enclosure part number.','0','30d','0','','44113','','','','','200','1','0','','','0','0','0','0','0','0','0','f9279641e2cb4c95a07d43ef1f1caba5','0','2','0'), ('43250','18','','10524','Enclosure [{#DURABLE.ID}]: Power','hpe.msa.enclosures["{#DURABLE.ID}",power]','0','31d','365d','0','0','','W','','',NULL,NULL,'','','0','','','','','2',NULL,'Enclosure power in watts.','0','30d','0','','44113','','','','','200','1','0','','','0','0','0','0','0','0','0','cd0ec35c114b41579d0dfcebdc5e7211','0','2','0'), ('43251','18','','10524','Enclosure [{#DURABLE.ID}]: Status','hpe.msa.enclosures["{#DURABLE.ID}",status]','0','31d','365d','0','3','','','','',NULL,'980','','','0','','','','','2',NULL,'Enclosure status.','0','30d','0','','44113','','','','','200','1','0','','','0','0','0','0','0','0','0','98205e12a4c44a35a59879da5cc9f39c','0','2','0'), ('43252','18','','10524','Fan [{#DURABLE.ID}]: Health','hpe.msa.fans["{#DURABLE.ID}",health]','0','31d','365d','0','3','','','','',NULL,'983','','','0','','','','','2',NULL,'Fan health status.','0','30d','0','','44114','','','','','200','1','0','','','0','0','0','0','0','0','0','b4732ef73f0e4fcc9458797b28e2b829','0','2','0'), ('43253','18','','10524','Fan [{#DURABLE.ID}]: Speed','hpe.msa.fans["{#DURABLE.ID}",speed]','0','31d','365d','0','3','','!RPM','','',NULL,NULL,'','','0','','','','','2',NULL,'Fan speed (revolutions per minute).','0','30d','0','','44114','','','','','200','1','0','','','0','0','0','0','0','0','0','eb7057d0b65e40138899753b06abfb68','0','2','0'), ('43254','18','','10524','Fan [{#DURABLE.ID}]: Status','hpe.msa.fans["{#DURABLE.ID}",status]','0','31d','365d','0','3','','','','',NULL,'981','','','0','','','','','2',NULL,'Fan status.','0','30d','0','','44114','','','','','200','1','0','','','0','0','0','0','0','0','0','45f948cb8f484367a7a5735beb796a1b','0','2','0'), ('43255','18','','10524','FRU [{#ENCLOSURE.ID}: {#LOCATION}]: Part number','hpe.msa.frus["{#ENCLOSURE.ID}:{#LOCATION}",part_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'{#DESCRIPTION}. Part number of the FRU.','0','30d','0','','44115','','','','','200','1','0','','','0','0','0','0','0','0','0','77df1d8bfba9428e887025a05f02f306','0','2','0'), ('43256','18','','10524','FRU [{#ENCLOSURE.ID}: {#LOCATION}]: Serial number','hpe.msa.frus["{#ENCLOSURE.ID}:{#LOCATION}",serial_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'{#DESCRIPTION}. FRU serial number.','0','30d','0','','44115','','','','','200','1','0','','','0','0','0','0','0','0','0','04fc08de0c3947cba0c8f6c633ae3157','0','2','0'), ('43257','18','','10524','FRU [{#ENCLOSURE.ID}: {#LOCATION}]: Status','hpe.msa.frus["{#ENCLOSURE.ID}:{#LOCATION}",status]','0','31d','365d','0','3','','','','',NULL,'982','','','0','','','','','2',NULL,'{#DESCRIPTION}. FRU status: Absent: Component is not present. Fault: At least one subcomponent has a fault. Invalid data: For a power supply module, the EEPROM is improperly programmed. OK: All subcomponents are operating normally. Not available: Status is not available.','0','30d','0','','44115','','','','','200','1','0','','','0','0','0','0','0','0','0','ef3acb289f9c4a8e919b136dabf7b5c5','0','2','0'), ('43258','18','','10524','Pool [{#NAME}]: Space free','hpe.msa.pools.space["{#NAME}",free]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The free space in the pool.','0','30d','0','','44116','','','','','200','1','0','','','0','0','0','0','0','0','0','2a8b8ebd3bbb4e4e851602e1a84bb0da','0','2','0'), ('43259','18','','10524','Pool [{#NAME}]: Space total','hpe.msa.pools.space["{#NAME}",total]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The capacity of the pool.','0','30d','0','','44116','','','','','200','1','0','','','0','0','0','0','0','0','0','0518c9f95bad4208ba33def89432975d','0','2','0'), ('43260','18','','10524','Pool [{#NAME}]: Health','hpe.msa.pools["{#NAME}",health]','0','31d','365d','0','3','','','','',NULL,'983','','','0','','','','','2',NULL,'Pool health.','0','30d','0','','44116','','','','','200','1','0','','','0','0','0','0','0','0','0','4b79ed6e64cc484bb69f3677cd7932ef','0','2','0'), ('43261','18','','10524','Port [{#NAME}]: Health','hpe.msa.ports["{#NAME}",health]','0','31d','365d','0','3','','','','',NULL,'983','','','0','','','','','2',NULL,'Port health status.','0','30d','0','','44117','','','','','200','1','0','','','0','0','0','0','0','0','0','27564169c2b04cba924162a5630bbd4b','0','2','0'), ('43262','18','','10524','Port [{#NAME}]: Status','hpe.msa.ports["{#NAME}",status]','0','31d','365d','0','3','','','','',NULL,'986','','','0','','','','','2',NULL,'Port status.','0','30d','0','','44117','','','','','200','1','0','','','0','0','0','0','0','0','0','57986481099a4bffb5b61816e1ba4110','0','2','0'), ('43263','18','','10524','Port [{#NAME}]: Type','hpe.msa.ports["{#NAME}",type]','0','31d','365d','0','3','','','','',NULL,'984','','','0','','','','','2',NULL,'Port type.','0','30d','0','','44117','','','','','200','1','0','','','0','0','0','0','0','0','0','b1240a5950a3466b9d0725729bef3a03','0','2','0'), ('43264','18','','10524','Power supply [{#DURABLE.ID}]: Health','hpe.msa.power_supplies["{#DURABLE.ID}",health]','0','31d','365d','0','3','','','','',NULL,'983','','','0','','','','','2',NULL,'Power supply health status.','0','30d','0','','44118','','','','','200','1','0','','','0','0','0','0','0','0','0','4e4f593738fb451cbfd1589a3054387e','0','2','0'), ('43265','18','','10524','Power supply [{#DURABLE.ID}]: Part number','hpe.msa.power_supplies["{#DURABLE.ID}",part_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Power supply part number.','0','30d','0','','44118','','','','','200','1','0','','','0','0','0','0','0','0','0','1b72c54bff3a4b129e959db43e895839','0','2','0'), ('43266','18','','10524','Power supply [{#DURABLE.ID}]: Serial number','hpe.msa.power_supplies["{#DURABLE.ID}",serial_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Power supply serial number.','0','30d','0','','44118','','','','','200','1','0','','','0','0','0','0','0','0','0','bdbf30f2e70d427bb9237b941fed5941','0','2','0'), ('43267','18','','10524','Power supply [{#DURABLE.ID}]: Status','hpe.msa.power_supplies["{#DURABLE.ID}",status]','0','31d','365d','0','3','','','','',NULL,'986','','','0','','','','','2',NULL,'Power supply status.','0','30d','0','','44118','','','','','200','1','0','','','0','0','0','0','0','0','0','110fa50ee1d64ecdb064d3bd7b34dc90','0','2','0'), ('43268','18','','10524','Power supply [{#DURABLE.ID}]: Temperature','hpe.msa.power_supplies["{#DURABLE.ID}",temperature]','0','31d','365d','0','3','','!°C','','',NULL,NULL,'','','0','','','','','2',NULL,'Power supply temperature.','0','30d','0','','44118','','','','','200','1','0','','','0','0','0','0','0','0','0','8b4399f3d9624239be2e6ac15971300b','0','2','0'), ('43269','18','','10524','Volume [{#NAME}]: Cache: Read hits, rate','hpe.msa.volumes.cache.read.hits["{#NAME}",rate]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'For the controller that owns the volume, the number of times the block to be read is found in cache per second.','0','30d','0','','44119','','','','','200','1','0','','','0','0','0','0','0','0','0','f9818ae47544417bb270af4f8f014c0a','0','2','0'), ('43270','18','','10524','Volume [{#NAME}]: Cache: Read misses, rate','hpe.msa.volumes.cache.read.misses["{#NAME}",rate]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'For the controller that owns the volume, the number of times the block to be read is not found in cache per second.','0','30d','0','','44119','','','','','200','1','0','','','0','0','0','0','0','0','0','877afc03787443129373d955067f8c6c','0','2','0'), ('43271','18','','10524','Volume [{#NAME}]: Cache: Write hits, rate','hpe.msa.volumes.cache.write.hits["{#NAME}",rate]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'For the controller that owns the volume, the number of times the block written to is found in cache per second.','0','30d','0','','44119','','','','','200','1','0','','','0','0','0','0','0','0','0','e3a0b52f33e847c980ffe3f4dcda5ab4','0','2','0'), ('43272','18','','10524','Volume [{#NAME}]: Cache: Write misses, rate','hpe.msa.volumes.cache.write.misses["{#NAME}",rate]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'For the controller that owns the volume, the number of times the block written to is not found in cache per second.','0','30d','0','','44119','','','','','200','1','0','','','0','0','0','0','0','0','0','b2b0c3fd7ab74eb3a6013c3f3d65e356','0','2','0'), ('43273','18','','10524','Volume [{#NAME}]: Data transfer rate: Reads','hpe.msa.volumes.data_transfer.reads["{#NAME}",rate]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The data read rate, in bytes per second.','0','30d','0','','44119','','','','','200','1','0','','','0','0','0','0','0','0','0','6b12caedf23b4b768dbff01096d72c93','0','2','0'), ('43274','18','','10524','Volume [{#NAME}]: Data transfer rate: Total','hpe.msa.volumes.data_transfer.total["{#NAME}",rate]','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The data transfer rate, in bytes per second, calculated over the interval since these statistics were last requested or reset. This value will be zero if it has not been requested or reset since a controller restart.','0','30d','0','','44119','','','','','200','1','0','','','0','0','0','0','0','0','0','705428d111dd49d19eb79b6a0de592c1','0','2','0'), ('43275','18','','10524','Volume [{#NAME}]: Data transfer rate: Writes','hpe.msa.volumes.data_transfer.writes["{#NAME}",rate]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The data write rate, in bytes per second.','0','30d','0','','44119','','','','','200','1','0','','','0','0','0','0','0','0','0','5f44581f011b46cf96ebd040de635976','0','2','0'), ('43276','18','','10524','Volume [{#NAME}]: IOPS, read rate','hpe.msa.volumes.iops.read["{#NAME}",rate]','0','31d','365d','0','0','','!r/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of read operations per second.','0','30d','0','','44119','','','','','200','1','0','','','0','0','0','0','0','0','0','0e2831ed17ec4fe0a56b800086b47901','0','2','0'), ('43277','18','','10524','Volume [{#NAME}]: IOPS, total rate','hpe.msa.volumes.iops.total["{#NAME}",rate]','0','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'Total input/output operations per second, calculated over the interval since these statistics were last requested or reset. This value will be zero if it has not been requested or reset since a controller restart.','0','30d','0','','44119','','','','','200','1','0','','','0','0','0','0','0','0','0','9d14e4239f5941a7bfb07b6645b9e698','0','2','0'), ('43278','18','','10524','Volume [{#NAME}]: IOPS, write rate','hpe.msa.volumes.iops.write["{#NAME}",rate]','0','31d','365d','0','0','','!w/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of write operations per second.','0','30d','0','','44119','','','','','200','1','0','','','0','0','0','0','0','0','0','e1a6b6cc609c4cf789978f01b18af31f','0','2','0'), ('43279','18','','10524','Volume [{#NAME}]: Space allocated','hpe.msa.volumes.space["{#NAME}",allocated]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of space currently allocated to the volume.','0','30d','0','','44120','','','','','200','1','0','','','0','0','0','0','0','0','0','b47d7b03e19f4e25803b1d639a0ecf43','0','2','0'), ('43280','18','','10524','Volume [{#NAME}]: Space total','hpe.msa.volumes.space["{#NAME}",total]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The capacity of the volume.','0','30d','0','','44120','','','','','200','1','0','','','0','0','0','0','0','0','0','b6aaba39f7c74dcf95947626852855c8','0','2','0'), ('43310','18','','10525','Controller [{#CONTROLLER.ID}]: Cache: Read hits, rate','hpe.msa.controllers.cache.read.hits["{#CONTROLLER.ID}",rate]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'For the controller that owns the volume, the number of times the block to be read is found in cache per second.','0','30d','0','','44135','','','','','200','1','0','','','0','0','0','0','0','0','0','73bc16fc631f4386abbc78897db07e13','0','2','0'), ('43311','18','','10525','Controller [{#CONTROLLER.ID}]: IOPS, write rate','hpe.msa.controllers.iops.write["{#CONTROLLER.ID}",rate]','0','31d','365d','0','0','','!w/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of write operations per second.','0','30d','0','','44135','','','','','200','1','0','','','0','0','0','0','0','0','0','9b8366ac60304c3c98dedc278ad18418','0','2','0'), ('43312','18','','10525','Controller [{#CONTROLLER.ID}]: Status','hpe.msa.controllers["{#CONTROLLER.ID}",status]','0','31d','365d','0','3','','','','',NULL,'987','','','0','','','','','2',NULL,'Storage controller status.','0','30d','0','','44136','','','','','200','1','0','','','0','0','0','0','0','0','0','c0c2034fc848400c9b1f09f0c54790b3','0','2','0'), ('43313','18','','10525','Controller [{#CONTROLLER.ID}]: Serial number','hpe.msa.controllers["{#CONTROLLER.ID}",serial_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Storage controller serial number.','0','30d','0','','44136','','','','','200','1','0','','','0','0','0','0','0','0','0','6980d1841bc04c79868d6f05bf59921e','0','2','0'), ('43314','18','','10525','Controller [{#CONTROLLER.ID}]: Pools','hpe.msa.controllers["{#CONTROLLER.ID}",pools]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of pools in the storage system.','0','30d','0','','44136','','','','','200','1','0','','','0','0','0','0','0','0','0','9b4ee1a634c3462f8fb48eb0e79984df','0','2','0'), ('43315','18','','10525','Controller [{#CONTROLLER.ID}]: Part number','hpe.msa.controllers["{#CONTROLLER.ID}",part_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Part number of the controller.','0','30d','0','','44136','','','','','200','1','0','','','0','0','0','0','0','0','0','3405ef21e2cb40729e16c5b8aaf35996','0','2','0'), ('43316','18','','10525','Controller [{#CONTROLLER.ID}]: IP address','hpe.msa.controllers["{#CONTROLLER.ID}",ip_address]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Controller network port IP address.','0','30d','0','','44136','','','','','200','1','0','','','0','0','0','0','0','0','0','2c9c2636aeb543ec8e70102c555fe776','0','2','0'), ('43317','18','','10525','Controller [{#CONTROLLER.ID}]: Health','hpe.msa.controllers["{#CONTROLLER.ID}",health]','0','31d','365d','0','3','','','','',NULL,'994','','','0','','','','','2',NULL,'Controller health status.','0','30d','0','','44136','','','','','200','1','0','','','0','0','0','0','0','0','0','5f5307f2904a4792af1906a2b03a2a9b','0','2','0'), ('43318','18','','10525','Controller [{#CONTROLLER.ID}]: Firmware version','hpe.msa.controllers["{#CONTROLLER.ID}",firmware]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Storage controller firmware version.','0','30d','0','','44136','','','','','200','1','0','','','0','0','0','0','0','0','0','ba1bb9818a9a487c8742d619316b087e','0','2','0'), ('43319','18','','10525','Controller [{#CONTROLLER.ID}]: Disk groups','hpe.msa.controllers["{#CONTROLLER.ID}",disk_groups]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of disk groups in the storage system.','0','30d','0','','44136','','','','','200','1','0','','','0','0','0','0','0','0','0','c70f280c9c494b769b442f3a22a3c173','0','2','0'), ('43320','18','','10525','Controller [{#CONTROLLER.ID}]: Disks','hpe.msa.controllers["{#CONTROLLER.ID}",disks]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of disks in the storage system.','0','30d','0','','44136','','','','','200','1','0','','','0','0','0','0','0','0','0','5f6c124f1aef41499ee52616ede02de9','0','2','0'), ('43321','18','','10525','Controller [{#CONTROLLER.ID}]: IOPS, total rate','hpe.msa.controllers.iops.total["{#CONTROLLER.ID}",rate]','0','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'Input/output operations per second, calculated over the interval since these statistics were last requested or reset. This value will be zero if it has not been requested or reset since a controller restart.','0','30d','0','','44135','','','','','200','1','0','','','0','0','0','0','0','0','0','16f2fd5bd9d244daa09aef3f79a5d450','0','2','0'), ('43322','18','','10525','Controller [{#CONTROLLER.ID}]: Cache: Read misses, rate','hpe.msa.controllers.cache.read.misses["{#CONTROLLER.ID}",rate]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'For the controller that owns the volume, the number of times the block to be read is not found in cache per second.','0','30d','0','','44135','','','','','200','1','0','','','0','0','0','0','0','0','0','04e14fe4d8ba4693b954ebcac1671649','0','2','0'), ('43323','18','','10525','Controller [{#CONTROLLER.ID}]: IOPS, read rate','hpe.msa.controllers.iops.read["{#CONTROLLER.ID}",rate]','0','31d','365d','0','0','','!r/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of read operations per second.','0','30d','0','','44135','','','','','200','1','0','','','0','0','0','0','0','0','0','8b0f014d1ed5470d919357f204b704ca','0','2','0'), ('43324','18','','10525','Controller [{#CONTROLLER.ID}]: Data transfer rate: Writes','hpe.msa.controllers.data_transfer.writes["{#CONTROLLER.ID}",rate]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The data write rate, in bytes per second.','0','30d','0','','44135','','','','','200','1','0','','','0','0','0','0','0','0','0','94f0b7f7d397453f9227c1b473a77a4e','0','2','0'), ('43325','18','','10525','Controller [{#CONTROLLER.ID}]: Data transfer rate: Total','hpe.msa.controllers.data_transfer.total["{#CONTROLLER.ID}",rate]','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The data transfer rate, in bytes per second, calculated over the interval since these statistics were last requested or reset. This value will be zero if it has not been requested or reset since a controller restart.','0','30d','0','','44135','','','','','200','1','0','','','0','0','0','0','0','0','0','9c5c23273f5b43ad9e300d2c7b90bc3f','0','2','0'), ('43326','18','','10525','Controller [{#CONTROLLER.ID}]: Data transfer rate: Reads','hpe.msa.controllers.data_transfer.reads["{#CONTROLLER.ID}",rate]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The data read rate, in bytes per second.','0','30d','0','','44135','','','','','200','1','0','','','0','0','0','0','0','0','0','c8fbfd459fce4149b1459e366b61981a','0','2','0'), ('43327','18','','10525','Controller [{#CONTROLLER.ID}]: CPU utilization','hpe.msa.controllers.cpu["{#CONTROLLER.ID}",util]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Percentage of time the CPU is busy, from 0 to 100.','0','30d','0','','44135','','','','','200','1','0','','','0','0','0','0','0','0','0','80d6ae014e354f6c844c3b88ea66c530','0','2','0'), ('43328','18','','10525','Controller [{#CONTROLLER.ID}]: Cache memory size','hpe.msa.controllers.cache["{#CONTROLLER.ID}",total]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Controller cache memory size.','0','30d','0','','44136','','','','','200','1','0','','','0','0','0','0','0','0','0','482c5af99fe740278c4663ba300dee04','0','2','0'), ('43329','18','','10525','Controller [{#CONTROLLER.ID}]: Cache: Write utilization','hpe.msa.controllers.cache.write["{#CONTROLLER.ID}",util]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'Percentage of write cache in use, from 0 to 100.','0','30d','0','','44135','','','','','200','1','0','','','0','0','0','0','0','0','0','0d754544c18143ff98114e1ed316ad1e','0','2','0'), ('43330','18','','10525','Controller [{#CONTROLLER.ID}]: Cache: Write misses, rate','hpe.msa.controllers.cache.write.misses["{#CONTROLLER.ID}",rate]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'For the controller that owns the volume, the number of times the block written to is not found in cache per second.','0','30d','0','','44135','','','','','200','1','0','','','0','0','0','0','0','0','0','61aa7235c6c44cfababd1b2390cc0443','0','2','0'), ('43331','18','','10525','Controller [{#CONTROLLER.ID}]: Cache: Write hits, rate','hpe.msa.controllers.cache.write.hits["{#CONTROLLER.ID}",rate]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'For the controller that owns the volume, the number of times the block written to is found in cache per second.','0','30d','0','','44135','','','','','200','1','0','','','0','0','0','0','0','0','0','5cb9f7eb42d2413a90161ac192629073','0','2','0'), ('43332','18','','10525','Controller [{#CONTROLLER.ID}]: Uptime','hpe.msa.controllers["{#CONTROLLER.ID}",uptime]','0','31d','365d','0','3','','uptime','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of seconds since the controller was restarted.','0','30d','0','','44135','','','','','200','1','0','','','0','0','0','0','0','0','0','7a9b3ba8dd5446d0961a6eea595c2b49','0','2','0'), ('43333','18','','10525','Disk [{#DURABLE.ID}]: Blocks size','hpe.msa.disks.blocks["{#DURABLE.ID}",size]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size of a block, in bytes.','0','30d','0','','44137','','','','','200','1','0','','','0','0','0','0','0','0','0','4fedb88c1bb74c2cb5a0f72fdfcff104','0','2','0'), ('43334','18','','10525','Disk [{#DURABLE.ID}]: Blocks total','hpe.msa.disks.blocks["{#DURABLE.ID}",total]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total space in blocks.','0','30d','0','','44137','','','','','200','1','0','','','0','0','0','0','0','0','0','a491cb03df9c4e3ead70e0a74d9337b2','0','2','0'), ('43335','18','','10525','Disk [{#DURABLE.ID}]: SSD life left','hpe.msa.disks.ssd["{#DURABLE.ID}",life_left]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of disk life remaining.','0','30d','0','','44137','','','','','200','1','0','','','0','0','0','0','0','0','1','80ea0929a1bf43f4bdeba80e675c52bd','0','2','0'), ('43336','18','','10525','Disk [{#DURABLE.ID}]: Disk group','hpe.msa.disks["{#DURABLE.ID}",group]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'If the disk is in a disk group, the disk group name.','0','30d','0','','44137','','','','','200','1','0','','','0','0','0','0','0','0','0','f5bb9b7f437f434d83ca0542e41b2673','0','2','0'), ('43337','18','','10525','Disk [{#DURABLE.ID}]: Health','hpe.msa.disks["{#DURABLE.ID}",health]','0','31d','365d','0','3','','','','',NULL,'994','','','0','','','','','2',NULL,'Disk health status.','0','30d','0','','44137','','','','','200','1','0','','','0','0','0','0','0','0','0','86fca5ad02af49c8a1d48f4a260a0dbf','0','2','0'), ('43338','18','','10525','Disk [{#DURABLE.ID}]: Model','hpe.msa.disks["{#DURABLE.ID}",model]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Disk model.','0','30d','0','','44137','','','','','200','1','0','','','0','0','0','0','0','0','0','8f8ad679881c4693acfed363e5498b34','0','2','0'), ('43339','18','','10525','Disk [{#DURABLE.ID}]: Storage pool','hpe.msa.disks["{#DURABLE.ID}",pool]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'If the disk is in a pool, the pool name.','0','30d','0','','44137','','','','','200','1','0','','','0','0','0','0','0','0','0','7fffecbf1ede4a5e9da5efc4311fc62e','0','2','0'), ('43340','18','','10525','Disk [{#DURABLE.ID}]: Serial number','hpe.msa.disks["{#DURABLE.ID}",serial_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Disk serial number.','0','30d','0','','44137','','','','','200','1','0','','','0','0','0','0','0','0','0','9a43a148ad4742e1a1df0038b36a171f','0','2','0'), ('43341','18','','10525','Disk [{#DURABLE.ID}]: Temperature','hpe.msa.disks["{#DURABLE.ID}",temperature]','0','31d','365d','0','3','','!°C','','',NULL,NULL,'','','0','','','','','2',NULL,'Temperature of the disk.','0','30d','0','','44137','','','','','200','1','0','','','0','0','0','0','0','0','0','119dc5c43fb741028ccd599d25ad032c','0','2','0'), ('43342','18','','10525','Disk [{#DURABLE.ID}]: Temperature status','hpe.msa.disks["{#DURABLE.ID}",temperature_status]','0','31d','365d','0','3','','','','',NULL,'989','','','0','','','','','2',NULL,'Disk temperature status.','0','30d','0','','44137','','','','','200','1','0','','','0','0','0','0','0','0','0','0a0cf4600214443aa504d5c55d1f4015','0','2','0'), ('43343','18','','10525','Disk [{#DURABLE.ID}]: Type','hpe.msa.disks["{#DURABLE.ID}",type]','0','31d','365d','0','3','','','','',NULL,'990','','','0','','','','','2',NULL,'Disk type: SAS: Enterprise SAS spinning disk. SAS MDL: Midline SAS spinning disk. SSD SAS: SAS solit-state disk.','0','30d','0','','44137','','','','','200','1','0','','','0','0','0','0','0','0','0','1a23ef68bb484fd5baeba2b352b970db','0','2','0'), ('43344','18','','10525','Disk [{#DURABLE.ID}]: Vendor','hpe.msa.disks["{#DURABLE.ID}",vendor]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Disk vendor.','0','30d','0','','44137','','','','','200','1','0','','','0','0','0','0','0','0','0','d8e35779834640c8afdc5874f72fe8af','0','2','0'), ('43345','18','','10525','Disk group [{#NAME}]: Average response time: Read','hpe.msa.disks.groups.avg_rsp_time["{#NAME}",read]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Average response time for all read operations, calculated over the interval since these statistics were last requested or reset.','0','30d','0','','44139','','','','','200','1','0','','','0','0','0','0','0','0','0','8f68ad1b814d4287a6fd72d5bd03f7da','0','2','0'), ('43346','18','','10525','Disk group [{#NAME}]: IOPS, write rate','hpe.msa.disks.groups.iops.write["{#NAME}",rate]','0','31d','365d','0','0','','!w/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of write operations per second.','0','30d','0','','44139','','','','','200','1','0','','','0','0','0','0','0','0','0','31f5b13a56704e438b600df70c37a1fd','0','2','0'), ('43347','18','','10525','Disk group [{#NAME}]: Health','hpe.msa.disks.groups["{#NAME}",health]','0','31d','365d','0','3','','','','',NULL,'994','','','0','','','','','2',NULL,'Disk group health.','0','30d','0','','44138','','','','','200','1','0','','','0','0','0','0','0','0','0','97b6e0e2ec844636be64931fca6e2c6c','0','2','0'), ('43348','18','','10525','Disk group [{#NAME}]: Disks count','hpe.msa.disks.groups["{#NAME}",disk_count]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of disks in the disk group.','0','30d','0','','44138','','','','','200','1','0','','','0','0','0','0','0','0','0','4c6bbdcdb05d45e0af52548aef4e8716','0','2','0'), ('43349','18','','10525','Disk group [{#NAME}]: Pool space used','hpe.msa.disks.groups.space["{#NAME}",pool_util]','0','31d','365d','0','3','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of pool capacity that the disk group occupies.','0','30d','0','','44138','','','','','200','1','0','','','0','0','0','0','0','0','0','bc8e6e0fb286466593186708cddf3b2a','0','2','0'), ('43350','18','','10525','Disk group [{#NAME}]: RAID type','hpe.msa.disks.groups.raid["{#NAME}",type]','0','31d','365d','0','3','','','','',NULL,'996','','','0','','','','','2',NULL,'The RAID level of the disk group.','0','30d','0','','44138','','','','','200','1','0','','','0','0','0','0','0','0','0','7359b1d550734d30bb83612538b36e95','0','2','0'), ('43351','18','','10525','Disk group [{#NAME}]: IOPS, total rate','hpe.msa.disks.groups.iops.total["{#NAME}",rate]','0','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'Input/output operations per second, calculated over the interval since these statistics were last requested or reset. This value will be zero if it has not been requested or reset since a controller restart.','0','30d','0','','44139','','','','','200','1','0','','','0','0','0','0','0','0','0','c9fdf59576554063b404d190ad90db18','0','2','0'), ('43352','18','','10525','Disk group [{#NAME}]: Average response time: Total','hpe.msa.disks.groups.avg_rsp_time["{#NAME}",total]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Average response time for read and write operations, calculated over the interval since these statistics were last requested or reset.','0','30d','0','','44139','','','','','200','1','0','','','0','0','0','0','0','0','0','2ae8acbcd0b9442c9adc8086fa36fa40','0','2','0'), ('43353','18','','10525','Disk group [{#NAME}]: IOPS, read rate','hpe.msa.disks.groups.iops.read["{#NAME}",rate]','0','31d','365d','0','0','','!r/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of read operations per second.','0','30d','0','','44139','','','','','200','1','0','','','0','0','0','0','0','0','0','95925d6d4af94964b388208ff185642d','0','2','0'), ('43354','18','','10525','Disk group [{#NAME}]: Data transfer rate: Writes','hpe.msa.disks.groups.data_transfer.writes["{#NAME}",rate]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The data write rate, in bytes per second.','0','30d','0','','44139','','','','','200','1','0','','','0','0','0','0','0','0','0','51ef802067c149bea1d5d976df6e3a6f','0','2','0'), ('43355','18','','10525','Disk group [{#NAME}]: Data transfer rate: Total','hpe.msa.disks.groups.data_transfer.total["{#NAME}",rate]','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The data transfer rate, in bytes per second, calculated over the interval since these statistics were last requested or reset. This value will be zero if it has not been requested or reset since a controller restart.','0','30d','0','','44139','','','','','200','1','0','','','0','0','0','0','0','0','0','28b236ea619f4130a3271459e9fce06b','0','2','0'), ('43356','18','','10525','Disk group [{#NAME}]: Data transfer rate: Reads','hpe.msa.disks.groups.data_transfer.reads["{#NAME}",rate]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The data read rate, in bytes per second.','0','30d','0','','44139','','','','','200','1','0','','','0','0','0','0','0','0','0','ecd3de6d32e94d2ab50111659147c97e','0','2','0'), ('43357','18','','10525','Disk group [{#NAME}]: Blocks total','hpe.msa.disks.groups.blocks["{#NAME}",total]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total space in blocks.','0','30d','0','','44138','','','','','200','1','0','','','0','0','0','0','0','0','0','f14e651fd9dc4b03bb00e5db780f0114','0','2','0'), ('43358','18','','10525','Disk group [{#NAME}]: Blocks size','hpe.msa.disks.groups.blocks["{#NAME}",size]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size of a block, in bytes.','0','30d','0','','44138','','','','','200','1','0','','','0','0','0','0','0','0','0','27e3fc79212e407ca1ae5fb06557440d','0','2','0'), ('43359','18','','10525','Disk group [{#NAME}]: Blocks free','hpe.msa.disks.groups.blocks["{#NAME}",free]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Free space in blocks.','0','30d','0','','44138','','','','','200','1','0','','','0','0','0','0','0','0','0','705fce660a944a47ad7ff0e9c9b1d37e','0','2','0'), ('43360','18','','10525','Disk group [{#NAME}]: Average response time: Write','hpe.msa.disks.groups.avg_rsp_time["{#NAME}",write]','0','31d','365d','0','0','','s','','',NULL,NULL,'','','0','','','','','2',NULL,'Average response time for all write operations, calculated over the interval since these statistics were last requested or reset.','0','30d','0','','44139','','','','','200','1','0','','','0','0','0','0','0','0','0','f99ce5e6e31140c298ee447d3a2b8c4d','0','2','0'), ('43361','18','','10525','Disk group [{#NAME}]: Status','hpe.msa.disks.groups["{#NAME}",status]','0','31d','365d','0','3','','','','',NULL,'988','','','0','','','','','2',NULL,'The status of the disk group: - CRIT: Critical. The disk group is online but isn''t fault tolerant because some of it''s disks are down. - DMGD: Damaged. The disk group is online and fault tolerant, but some of it''s disks are damaged. - FTDN: Fault tolerant with a down disk.The disk group is online and fault tolerant, but some of it''s disks are down. - FTOL: Fault tolerant. - MSNG: Missing. The disk group is online and fault tolerant, but some of it''s disks are missing. - OFFL: Offline. Either the disk group is using offline initialization, or it''s disks are down and data may be lost. - QTCR: Quarantined critical. The disk group is critical with at least one inaccessible disk. For example, two disks are inaccessible in a RAID 6 disk group or one disk is inaccessible for other fault-tolerant RAID levels. If the inaccessible disks come online or if after 60 seconds from being quarantined the disk group is QTCRor QTDN, the disk group is automatically dequarantined. - QTDN: Quarantined with a down disk. The RAID6 disk group has one inaccessible disk. The disk group is fault tolerant but degraded. If the inaccessible disks come online or if after 60 seconds from being quarantined the disk group is QTCRor QTDN, the disk group is automatically dequarantined. - QTOF: Quarantined offline. The disk group is offline with multiple inaccessible disks causing user data to be incomplete, or is an NRAID or RAID 0 disk group. - QTUN: Quarantined unsupported. The disk group contains data in a format that is not supported by this system. For example, this system does not support linear disk groups. - STOP: The disk group is stopped. - UNKN: Unknown. - UP: Up. The disk group is online and does not have fault-tolerant attributes.','0','30d','0','','44138','','','','','200','1','0','','','0','0','0','0','0','0','0','6755c1253e83442780eeb31d67062980','0','2','0'), ('43362','18','','10525','Enclosure [{#DURABLE.ID}]: Health','hpe.msa.enclosures["{#DURABLE.ID}",health]','0','31d','365d','0','3','','','','',NULL,'994','','','0','','','','','2',NULL,'Enclosure health.','0','30d','0','','44140','','','','','200','1','0','','','0','0','0','0','0','0','0','2e70432b3c324ecdb78ab77e5f9bbaf3','0','2','0'), ('43363','18','','10525','Enclosure [{#DURABLE.ID}]: Midplane serial number','hpe.msa.enclosures["{#DURABLE.ID}",midplane_serial_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Midplane serial number.','0','30d','0','','44140','','','','','200','1','0','','','0','0','0','0','0','0','0','e3a1c5f6dee545a8a7d4b68768d060ab','0','2','0'), ('43364','18','','10525','Enclosure [{#DURABLE.ID}]: Model','hpe.msa.enclosures["{#DURABLE.ID}",model]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Enclosure model.','0','30d','0','','44140','','','','','200','1','0','','','0','0','0','0','0','0','0','1dcecf03b9814aac9749badf800e4717','0','2','0'), ('43365','18','','10525','Enclosure [{#DURABLE.ID}]: Part number','hpe.msa.enclosures["{#DURABLE.ID}",part_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Enclosure part number.','0','30d','0','','44140','','','','','200','1','0','','','0','0','0','0','0','0','0','89f11d7bf0e24a92bf4d4b4b1d86af58','0','2','0'), ('43366','18','','10525','Enclosure [{#DURABLE.ID}]: Power','hpe.msa.enclosures["{#DURABLE.ID}",power]','0','31d','365d','0','0','','W','','',NULL,NULL,'','','0','','','','','2',NULL,'Enclosure power in watts.','0','30d','0','','44140','','','','','200','1','0','','','0','0','0','0','0','0','0','b426baf09f1445eda59abd0e2ee6dd2c','0','2','0'), ('43367','18','','10525','Enclosure [{#DURABLE.ID}]: Status','hpe.msa.enclosures["{#DURABLE.ID}",status]','0','31d','365d','0','3','','','','',NULL,'991','','','0','','','','','2',NULL,'Enclosure status.','0','30d','0','','44140','','','','','200','1','0','','','0','0','0','0','0','0','0','602b941548ab417bbe59f3f298bf6da9','0','2','0'), ('43368','18','','10525','Fan [{#DURABLE.ID}]: Health','hpe.msa.fans["{#DURABLE.ID}",health]','0','31d','365d','0','3','','','','',NULL,'994','','','0','','','','','2',NULL,'Fan health status.','0','30d','0','','44141','','','','','200','1','0','','','0','0','0','0','0','0','0','f9be9af4ff9047f1af946313df3e7165','0','2','0'), ('43369','18','','10525','Fan [{#DURABLE.ID}]: Speed','hpe.msa.fans["{#DURABLE.ID}",speed]','0','31d','365d','0','3','','!RPM','','',NULL,NULL,'','','0','','','','','2',NULL,'Fan speed (revolutions per minute).','0','30d','0','','44141','','','','','200','1','0','','','0','0','0','0','0','0','0','f028a919d56b45129f9ead200519adaa','0','2','0'), ('43370','18','','10525','Fan [{#DURABLE.ID}]: Status','hpe.msa.fans["{#DURABLE.ID}",status]','0','31d','365d','0','3','','','','',NULL,'992','','','0','','','','','2',NULL,'Fan status.','0','30d','0','','44141','','','','','200','1','0','','','0','0','0','0','0','0','0','df1d8af5df104afc829b403aec6efc96','0','2','0'), ('43371','18','','10525','FRU [{#ENCLOSURE.ID}: {#LOCATION}]: Part number','hpe.msa.frus["{#ENCLOSURE.ID}:{#LOCATION}",part_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'{#DESCRIPTION}. Part number of the FRU.','0','30d','0','','44142','','','','','200','1','0','','','0','0','0','0','0','0','0','8cbf62d188084ea4a72eaa37987d8d8e','0','2','0'), ('43372','18','','10525','FRU [{#ENCLOSURE.ID}: {#LOCATION}]: Serial number','hpe.msa.frus["{#ENCLOSURE.ID}:{#LOCATION}",serial_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'{#DESCRIPTION}. FRU serial number.','0','30d','0','','44142','','','','','200','1','0','','','0','0','0','0','0','0','0','49c52c2c5b174c78a60756eb7a9e34f1','0','2','0'), ('43373','18','','10525','FRU [{#ENCLOSURE.ID}: {#LOCATION}]: Status','hpe.msa.frus["{#ENCLOSURE.ID}:{#LOCATION}",status]','0','31d','365d','0','3','','','','',NULL,'993','','','0','','','','','2',NULL,'{#DESCRIPTION}. FRU status: Absent: The FRU is not present. Fault: The FRU''s health is Degraded or Fault. Invalid data: The FRU ID data is invalid. The FRU''s EEPROM is improperly programmed. OK: The FRU is operating normally. Power off: The FRU is powered off.','0','30d','0','','44142','','','','','200','1','0','','','0','0','0','0','0','0','0','d72f7be111ae4335b92d6a1d0ad9e3ee','0','2','0'), ('43374','18','','10525','Pool [{#NAME}]: Blocks available','hpe.msa.pools.blocks["{#NAME}",available]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Available space in blocks.','0','30d','0','','44143','','','','','200','1','0','','','0','0','0','0','0','0','0','09d67b3577af4e21a7bbd09078d705cd','0','2','0'), ('43375','18','','10525','Pool [{#NAME}]: Blocks size','hpe.msa.pools.blocks["{#NAME}",size]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size of a block, in bytes.','0','30d','0','','44143','','','','','200','1','0','','','0','0','0','0','0','0','0','076921fcd93941b09b79c7d44873417d','0','2','0'), ('43376','18','','10525','Pool [{#NAME}]: Blocks total','hpe.msa.pools.blocks["{#NAME}",total]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total space in blocks.','0','30d','0','','44143','','','','','200','1','0','','','0','0','0','0','0','0','0','fd29559e5bb3455b8b4cfe56f75f54b2','0','2','0'), ('43377','18','','10525','Pool [{#NAME}]: Health','hpe.msa.pools["{#NAME}",health]','0','31d','365d','0','3','','','','',NULL,'994','','','0','','','','','2',NULL,'Pool health.','0','30d','0','','44143','','','','','200','1','0','','','0','0','0','0','0','0','0','15096639cae947d383a506f0332ff6d3','0','2','0'), ('43378','18','','10525','Port [{#NAME}]: Health','hpe.msa.ports["{#NAME}",health]','0','31d','365d','0','3','','','','',NULL,'994','','','0','','','','','2',NULL,'Port health status.','0','30d','0','','44144','','','','','200','1','0','','','0','0','0','0','0','0','0','cf4f9aaf55e6435d949d3b5074b9f37f','0','2','0'), ('43379','18','','10525','Port [{#NAME}]: Status','hpe.msa.ports["{#NAME}",status]','0','31d','365d','0','3','','','','',NULL,'997','','','0','','','','','2',NULL,'Port status.','0','30d','0','','44144','','','','','200','1','0','','','0','0','0','0','0','0','0','cab1cd26264d408998c5ea8737571ed4','0','2','0'), ('43380','18','','10525','Port [{#NAME}]: Type','hpe.msa.ports["{#NAME}",type]','0','31d','365d','0','3','','','','',NULL,'995','','','0','','','','','2',NULL,'Port type.','0','30d','0','','44144','','','','','200','1','0','','','0','0','0','0','0','0','0','32ad6655625e408a9dd577624afbfa6a','0','2','0'), ('43381','18','','10525','Power supply [{#DURABLE.ID}]: Health','hpe.msa.power_supplies["{#DURABLE.ID}",health]','0','31d','365d','0','3','','','','',NULL,'994','','','0','','','','','2',NULL,'Power supply health status.','0','30d','0','','44145','','','','','200','1','0','','','0','0','0','0','0','0','0','993bc2db3b444dc5bc37794985e63ea9','0','2','0'), ('43382','18','','10525','Power supply [{#DURABLE.ID}]: Part number','hpe.msa.power_supplies["{#DURABLE.ID}",part_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Power supply part number.','0','30d','0','','44145','','','','','200','1','0','','','0','0','0','0','0','0','0','efae55cfdd1e4021a623e2128f988611','0','2','0'), ('43383','18','','10525','Power supply [{#DURABLE.ID}]: Serial number','hpe.msa.power_supplies["{#DURABLE.ID}",serial_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Power supply serial number.','0','30d','0','','44145','','','','','200','1','0','','','0','0','0','0','0','0','0','6716c3d0177247fe8a35fa1eb206a54f','0','2','0'), ('43384','18','','10525','Power supply [{#DURABLE.ID}]: Status','hpe.msa.power_supplies["{#DURABLE.ID}",status]','0','31d','365d','0','3','','','','',NULL,'997','','','0','','','','','2',NULL,'Power supply status.','0','30d','0','','44145','','','','','200','1','0','','','0','0','0','0','0','0','0','a3ff6ab5576246fe9e794e01df4fe1b9','0','2','0'), ('43385','18','','10525','Volume [{#NAME}]: Blocks allocated','hpe.msa.volumes.blocks["{#NAME}",allocated]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of blocks currently allocated to the volume.','0','30d','0','','44146','','','','','200','1','0','','','0','0','0','0','0','0','0','cc6c4bddc05243c7a90082a3450a76a7','0','2','0'), ('43386','18','','10525','Volume [{#NAME}]: Blocks size','hpe.msa.volumes.blocks["{#NAME}",size]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The size of a block, in bytes.','0','30d','0','','44146','','','','','200','1','0','','','0','0','0','0','0','0','0','900d94185fa9480590915bbafb8ccda0','0','2','0'), ('43387','18','','10525','Volume [{#NAME}]: Blocks total','hpe.msa.volumes.blocks["{#NAME}",total]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Total space in blocks.','0','30d','0','','44146','','','','','200','1','0','','','0','0','0','0','0','0','0','5cdae787c8b6485899f8f4e8c3cf6b71','0','2','0'), ('43388','18','','10525','Volume [{#NAME}]: Cache: Read hits, rate','hpe.msa.volumes.cache.read.hits["{#NAME}",rate]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'For the controller that owns the volume, the number of times the block to be read is found in cache per second.','0','30d','0','','44147','','','','','200','1','0','','','0','0','0','0','0','0','0','b7615bb6a3434303a2bb4751e7aed458','0','2','0'), ('43389','18','','10525','Volume [{#NAME}]: Cache: Read misses, rate','hpe.msa.volumes.cache.read.misses["{#NAME}",rate]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'For the controller that owns the volume, the number of times the block to be read is not found in cache per second.','0','30d','0','','44147','','','','','200','1','0','','','0','0','0','0','0','0','0','655e319736804d8db4b6988f7205c5e3','0','2','0'), ('43390','18','','10525','Volume [{#NAME}]: Cache: Write hits, rate','hpe.msa.volumes.cache.write.hits["{#NAME}",rate]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'For the controller that owns the volume, the number of times the block written to is found in cache per second.','0','30d','0','','44147','','','','','200','1','0','','','0','0','0','0','0','0','0','849ef4370f4b46ea894d2a2e1e4a3ea4','0','2','0'), ('43391','18','','10525','Volume [{#NAME}]: Cache: Write misses, rate','hpe.msa.volumes.cache.write.misses["{#NAME}",rate]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'For the controller that owns the volume, the number of times the block written to is not found in cache per second.','0','30d','0','','44147','','','','','200','1','0','','','0','0','0','0','0','0','0','593f4fce31f24e9b99c9bc69d2ead38b','0','2','0'), ('43392','18','','10525','Volume [{#NAME}]: Data transfer rate: Reads','hpe.msa.volumes.data_transfer.reads["{#NAME}",rate]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The data read rate, in bytes per second.','0','30d','0','','44147','','','','','200','1','0','','','0','0','0','0','0','0','0','1a810fe32e464e8cbcdfc61769bc7869','0','2','0'), ('43393','18','','10525','Volume [{#NAME}]: Data transfer rate: Total','hpe.msa.volumes.data_transfer.total["{#NAME}",rate]','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The data transfer rate, in bytes per second, calculated over the interval since these statistics were last requested or reset. This value will be zero if it has not been requested or reset since a controller restart.','0','30d','0','','44147','','','','','200','1','0','','','0','0','0','0','0','0','0','4dd1d47335a9425a94ffcee4c8ed2216','0','2','0'), ('43394','18','','10525','Volume [{#NAME}]: Data transfer rate: Writes','hpe.msa.volumes.data_transfer.writes["{#NAME}",rate]','0','31d','365d','0','0','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'The data write rate, in bytes per second.','0','30d','0','','44147','','','','','200','1','0','','','0','0','0','0','0','0','0','d5198b50ba8f4db1aa160d0208540a74','0','2','0'), ('43395','18','','10525','Volume [{#NAME}]: IOPS, read rate','hpe.msa.volumes.iops.read["{#NAME}",rate]','0','31d','365d','0','0','','!r/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of read operations per second.','0','30d','0','','44147','','','','','200','1','0','','','0','0','0','0','0','0','0','00f5c3f9d19d450e999c389ba297fb41','0','2','0'), ('43396','18','','10525','Volume [{#NAME}]: IOPS, total rate','hpe.msa.volumes.iops.total["{#NAME}",rate]','0','31d','365d','0','3','','!iops','','',NULL,NULL,'','','0','','','','','2',NULL,'Total input/output operations per second, calculated over the interval since these statistics were last requested or reset. This value will be zero if it has not been requested or reset since a controller restart.','0','30d','0','','44147','','','','','200','1','0','','','0','0','0','0','0','0','0','b925122eda0c4c1380b843bc764ed122','0','2','0'), ('43397','18','','10525','Volume [{#NAME}]: IOPS, write rate','hpe.msa.volumes.iops.write["{#NAME}",rate]','0','31d','365d','0','0','','!w/s','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of write operations per second.','0','30d','0','','44147','','','','','200','1','0','','','0','0','0','0','0','0','0','a9fcc1525204489cad52cf4e88518064','0','2','0'), ('43421','18','','10526','CPG [{#NAME}]: Number of FPVVs','hpe.primera.cpg.fpvv["{#ID}",count]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of FPVVs (Fully Provisioned Virtual Volumes) allocated in the CPG.','0','30d','0','','44155','','','','','200','1','0','','','0','0','0','0','0','0','0','6d070a747a01498b94c56da721a63192','0','2','0'), ('43422','18','','10526','CPG [{#NAME}]: Logical disk space: User space: Used (raw)','hpe.primera.cpg.space.usr["{#ID}",raw_used]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Amount of physical (raw) logical disk used in user data space.','0','30d','0','','44155','','','','','200','1','0','','','0','0','0','0','0','0','0','1feabd57f12a48b98dab098435179725','0','2','0'), ('43423','18','','10526','CPG [{#NAME}]: Number of TDVVs','hpe.primera.cpg.tdvv["{#ID}",count]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of TDVVs (Thinly Deduplicated Virtual Volume) created in the CPG.','0','30d','0','','44155','','','','','200','1','0','','','0','0','0','0','0','0','0','18544a7742af4678bd8c37ad84a8d137','0','2','0'), ('43424','18','','10526','CPG [{#NAME}]: State','hpe.primera.cpg.state["{#ID}"]','0','31d','365d','0','3','','','','',NULL,'1006','','','0','','','','','2',NULL,'Overall state of the CPG: NORMAL (1) - normal operation; DEGRADED (2) - degraded state; FAILED (3) - abnormal operation; UNKNOWN (99) - unknown state.','0','30d','0','','44155','','','','','200','1','0','','','0','0','0','0','0','0','0','3fe9b7c875c248e3b09c98162e30ebf8','0','2','0'), ('43425','18','','10526','CPG [{#NAME}]: Failed state','hpe.primera.cpg.state["{#ID}",failed]','0','31d','0','0','1','','','','',NULL,'1011','','','0','','','','','2',NULL,'Detailed state of the CPG: LDS_NOT_STARTED (1) - LDs not started. NOT_STARTED (2) - VV not started. NEEDS_CHECK (3) - check for consistency. NEEDS_MAINT_CHECK (4) - maintenance check is required. INTERNAL_CONSISTENCY_ERROR (5) - internal consistency error. SNAPDATA_INVALID (6) - invalid snapshot data. PRESERVED (7) - unavailable LD sets due to missing chunklets. Preserved remaining VV data. STALE (8) - parts of the VV contain old data because of a copy-on-write operation. COPY_FAILED (9) - a promote or copy operation to this volume failed. DEGRADED_AVAIL (10) - degraded due to availability. DEGRADED_PERF (11) - degraded due to performance. PROMOTING (12) - volume is the current target of a promote operation. COPY_TARGET (13) - volume is the current target of a physical copy operation. RESYNC_TARGET (14) - volume is the current target of a resynchronized copy operation. TUNING (15) - volume tuning is in progress. CLOSING (16) - volume is closing. REMOVING (17) - removing the volume. REMOVING_RETRY (18) - retrying a volume removal operation. CREATING (19) - creating a volume. COPY_SOURCE (20) - copy source. IMPORTING (21) - importing a volume. CONVERTING (22) - converting a volume. INVALID (23) - invalid. EXCLUSIVE (24) - local storage system has exclusive access to the volume. CONSISTENT (25) - volume is being imported consistently along with other volumes in the VV set. STANDBY (26) - volume in standby mode. SD_META_INCONSISTENT (27) - SD Meta Inconsistent. SD_NEEDS_FIX (28) - SD needs fix. SD_META_FIXING (29) - SD meta fix. UNKNOWN (999) - unknown state. NOT_SUPPORTED_BY_WSAPI (1000) - state not supported by WSAPI.','0','30d','0','','44155','','','','','200','1','0','','','0','0','0','0','0','0','0','837b48053400487885bf051a78f2200a','0','2','0'), ('43426','18','','10526','CPG [{#NAME}]: Degraded state','hpe.primera.cpg.state["{#ID}",degraded]','0','31d','0','0','1','','','','',NULL,'1011','','','0','','','','','2',NULL,'Detailed state of the CPG: LDS_NOT_STARTED (1) - LDs not started. NOT_STARTED (2) - VV not started. NEEDS_CHECK (3) - check for consistency. NEEDS_MAINT_CHECK (4) - maintenance check is required. INTERNAL_CONSISTENCY_ERROR (5) - internal consistency error. SNAPDATA_INVALID (6) - invalid snapshot data. PRESERVED (7) - unavailable LD sets due to missing chunklets. Preserved remaining VV data. STALE (8) - parts of the VV contain old data because of a copy-on-write operation. COPY_FAILED (9) - a promote or copy operation to this volume failed. DEGRADED_AVAIL (10) - degraded due to availability. DEGRADED_PERF (11) - degraded due to performance. PROMOTING (12) - volume is the current target of a promote operation. COPY_TARGET (13) - volume is the current target of a physical copy operation. RESYNC_TARGET (14) - volume is the current target of a resynchronized copy operation. TUNING (15) - volume tuning is in progress. CLOSING (16) - volume is closing. REMOVING (17) - removing the volume. REMOVING_RETRY (18) - retrying a volume removal operation. CREATING (19) - creating a volume. COPY_SOURCE (20) - copy source. IMPORTING (21) - importing a volume. CONVERTING (22) - converting a volume. INVALID (23) - invalid. EXCLUSIVE (24) - local storage system has exclusive access to the volume. CONSISTENT (25) - volume is being imported consistently along with other volumes in the VV set. STANDBY (26) - volume in standby mode. SD_META_INCONSISTENT (27) - SD Meta Inconsistent. SD_NEEDS_FIX (28) - SD needs fix. SD_META_FIXING (29) - SD meta fix. UNKNOWN (999) - unknown state. NOT_SUPPORTED_BY_WSAPI (1000) - state not supported by WSAPI.','0','30d','0','','44155','','','','','200','1','0','','','0','0','0','0','0','0','0','a7e2188d600a4715a58deba46f3b46ac','0','2','0'), ('43427','18','','10526','CPG [{#NAME}]: CPG space: Total','hpe.primera.cpg.space["{#ID}",total]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total CPG space.','0','30d','0','','44155','','','','','200','1','0','','','0','0','0','0','0','0','0','3950d779a0394615b8ec311525ed4168','0','2','0'), ('43428','18','','10526','CPG [{#NAME}]: CPG space: Shared','hpe.primera.cpg.space["{#ID}",shared]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Shared CPG space.','0','30d','0','','44155','','','','','200','1','0','','','0','0','0','0','0','0','0','17cf1cddafd444f8a5616a472c1a019b','0','2','0'), ('43429','18','','10526','CPG [{#NAME}]: CPG space: Free','hpe.primera.cpg.space["{#ID}",free]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Free CPG space.','0','30d','0','','44155','','','','','200','1','0','','','0','0','0','0','0','0','0','a6cd977f27a8463cb385715327e34955','0','2','0'), ('43430','18','','10526','CPG [{#NAME}]: Logical disk space: User space: Used','hpe.primera.cpg.space.usr["{#ID}",used]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Amount of logical disk used in user data space.','0','30d','0','','44155','','','','','200','1','0','','','0','0','0','0','0','0','0','c21f77a45ab443099bf957fbb39478f3','0','2','0'), ('43431','18','','10526','CPG [{#NAME}]: Logical disk space: User space: Total','hpe.primera.cpg.space.usr["{#ID}",total]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total logical disk space in user data space.','0','30d','0','','44155','','','','','200','1','0','','','0','0','0','0','0','0','0','6f85014bc639420aa409d97d42cb75b2','0','2','0'), ('43432','18','','10526','CPG [{#NAME}]: Logical disk space: User space: Total (raw)','hpe.primera.cpg.space.usr["{#ID}",raw_total]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total physical (raw) logical disk space in user data space.','0','30d','0','','44155','','','','','200','1','0','','','0','0','0','0','0','0','0','b7a8880bdafe4f0da4dd8cee6d4fdfa4','0','2','0'), ('43433','18','','10526','CPG [{#NAME}]: Raw space: Free','hpe.primera.cpg.space.raw["{#ID}",free]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Raw free space.','0','30d','0','','44155','','','','','200','1','0','','','0','0','0','0','0','0','0','a7fccd5afcf5469ca11a9436240eab5c','0','2','0'), ('43434','18','','10526','CPG [{#NAME}]: Logical disk space: Snapshot data: Used','hpe.primera.cpg.space.sd["{#ID}",used]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Amount of logical disk used in snapshot data space.','0','30d','0','','44155','','','','','200','1','0','','','0','0','0','0','0','0','0','51e40f6a1eb249d58bd79948d403d4f7','0','2','0'), ('43435','18','','10526','CPG [{#NAME}]: Logical disk space: Snapshot data: Total','hpe.primera.cpg.space.sd["{#ID}",total]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total logical disk space in snapshot data space.','0','30d','0','','44155','','','','','200','1','0','','','0','0','0','0','0','0','0','797f3335d8704d4bb8b53e34b3e6589e','0','2','0'), ('43436','18','','10526','CPG [{#NAME}]: Logical disk space: Snapshot data: Used (raw)','hpe.primera.cpg.space.sd["{#ID}",raw_used]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Amount of physical (raw) logical disk used in snapshot data space.','0','30d','0','','44155','','','','','200','1','0','','','0','0','0','0','0','0','0','f95ee3c4c0c64d46a47dd68b346f2fa5','0','2','0'), ('43437','18','','10526','CPG [{#NAME}]: Logical disk space: Snapshot data: Total (raw)','hpe.primera.cpg.space.sd["{#ID}",raw_total]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total physical (raw) logical disk space in snapshot data space.','0','30d','0','','44155','','','','','200','1','0','','','0','0','0','0','0','0','0','61dd9aa18c714863b606d18b2fff6c57','0','2','0'), ('43438','18','','10526','CPG [{#NAME}]: Logical disk space: Snapshot administration: Used','hpe.primera.cpg.space.sa["{#ID}",used]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Amount of logical disk used in snapshot administration.','0','30d','0','','44155','','','','','200','1','0','','','0','0','0','0','0','0','0','cf467bc7d9ac45259f284eeab6ae7f6a','0','2','0'), ('43439','18','','10526','CPG [{#NAME}]: Logical disk space: Snapshot administration: Total','hpe.primera.cpg.space.sa["{#ID}",total]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total logical disk space in snapshot administration.','0','30d','0','','44155','','','','','200','1','0','','','0','0','0','0','0','0','0','d55f0eab811641fdbb9a8bc8c54815ee','0','2','0'), ('43440','18','','10526','CPG [{#NAME}]: Logical disk space: Snapshot administration: Used (raw)','hpe.primera.cpg.space.sa["{#ID}",raw_used]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Amount of physical (raw) logical disk used in snapshot administration.','0','30d','0','','44155','','','','','200','1','0','','','0','0','0','0','0','0','0','8b2dc75fdcfa48908ece97768641f055','0','2','0'), ('43441','18','','10526','CPG [{#NAME}]: Logical disk space: Snapshot administration: Total (raw)','hpe.primera.cpg.space.sa["{#ID}",raw_total]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total physical (raw) logical disk space in snapshot administration.','0','30d','0','','44155','','','','','200','1','0','','','0','0','0','0','0','0','0','6dfd722ad85b481a9c2b04a4a5eb91fe','0','2','0'), ('43442','18','','10526','CPG [{#NAME}]: Raw space: Total','hpe.primera.cpg.space.raw["{#ID}",total]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Raw total space.','0','30d','0','','44155','','','','','200','1','0','','','0','0','0','0','0','0','0','e3ac07e2707a44fd8c166f4618fd79a1','0','2','0'), ('43443','18','','10526','CPG [{#NAME}]: Raw space: Shared','hpe.primera.cpg.space.raw["{#ID}",shared]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Raw shared space.','0','30d','0','','44155','','','','','200','1','0','','','0','0','0','0','0','0','0','8f26a54327f54e968f422081e6045217','0','2','0'), ('43444','18','','10526','CPG [{#NAME}]: Number of TPVVs','hpe.primera.cpg.tpvv["{#ID}",count]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of TPVVs (Thinly Provisioned Virtual Volumes) allocated in the CPG.','0','30d','0','','44155','','','','','200','1','0','','','0','0','0','0','0','0','0','f93dc70fa63a47da9253a447a67df685','0','2','0'), ('43445','18','','10526','Disk [{#POSITION}]: Free size','hpe.primera.disk["{#ID}",free_size]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Physical disk free size.','0','30d','0','','44156','','','','','200','1','0','','','0','0','0','0','0','0','0','40e074af5d7f44bb8691290971fc7c5c','0','2','0'), ('43446','18','','10526','Disk [{#POSITION}]: Firmware version','hpe.primera.disk["{#ID}",fw_version]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Physical disk firmware version.','0','30d','0','','44156','','','','','200','1','0','','','0','0','0','0','0','0','0','9bb7a86118614d339b4dee3238b261ff','0','2','0'), ('43447','18','','10526','Disk [{#POSITION}]: Path A0 degraded','hpe.primera.disk["{#ID}",loop_a0_degraded]','0','31d','365d','0','3','','','','',NULL,'998','','','0','','','','','2',NULL,'Indicates if this is a degraded path for the disk.','0','30d','0','','44156','','','','','200','1','0','','','0','0','0','0','0','0','0','288f7eef0a7c43afa7a3623471c92097','0','2','0'), ('43448','18','','10526','Disk [{#POSITION}]: Path A1 degraded','hpe.primera.disk["{#ID}",loop_a1_degraded]','0','31d','365d','0','3','','','','',NULL,'998','','','0','','','','','2',NULL,'Indicates if this is a degraded path for the disk.','0','30d','0','','44156','','','','','200','1','0','','','0','0','0','0','0','0','0','1e89322b49fb46bdacd22a562995f2fc','0','2','0'), ('43449','18','','10526','Disk [{#POSITION}]: Path B0 degraded','hpe.primera.disk["{#ID}",loop_b0_degraded]','0','31d','365d','0','3','','','','',NULL,'998','','','0','','','','','2',NULL,'Indicates if this is a degraded path for the disk.','0','30d','0','','44156','','','','','200','1','0','','','0','0','0','0','0','0','0','2b56e5a6ffbd4e6189fff707d508f955','0','2','0'), ('43450','18','','10526','Disk [{#POSITION}]: Path B1 degraded','hpe.primera.disk["{#ID}",loop_b1_degraded]','0','31d','365d','0','3','','','','',NULL,'998','','','0','','','','','2',NULL,'Indicates if this is a degraded path for the disk.','0','30d','0','','44156','','','','','200','1','0','','','0','0','0','0','0','0','0','cfb88804564d4e0c914760daec53276f','0','2','0'), ('43451','18','','10526','Disk [{#POSITION}]: Manufacturer','hpe.primera.disk["{#ID}",manufacturer]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Physical disk manufacturer.','0','30d','0','','44156','','','','','200','1','0','','','0','0','0','0','0','0','0','1387d1129e4a418e91fb0e99179116f5','0','2','0'), ('43452','18','','10526','Disk [{#POSITION}]: Model','hpe.primera.disk["{#ID}",model]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Manufacturer''s device ID for disk.','0','30d','0','','44156','','','','','200','1','0','','','0','0','0','0','0','0','0','1892d6230e244e1089a5eca8654ba2fa','0','2','0'), ('43453','18','','10526','Disk [{#POSITION}]: RPM','hpe.primera.disk["{#ID}",rpm]','0','31d','365d','0','3','','!rpm','','',NULL,NULL,'','','0','','','','','2',NULL,'RPM of the physical disk.','0','30d','0','','44156','','','','','200','1','0','','','0','0','0','0','0','0','0','495ceedbdf1644fdb56cf56123c1ec01','0','2','0'), ('43454','18','','10526','Disk [{#POSITION}]: Serial number','hpe.primera.disk["{#ID}",serial_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Disk drive serial number.','0','30d','0','','44156','','','','','200','1','0','','','0','0','0','0','0','0','0','07fa233e273d4d6e9813705d0afc82f5','0','2','0'), ('43455','18','','10526','Disk [{#POSITION}]: State','hpe.primera.disk["{#ID}",state]','0','31d','365d','0','3','','','','',NULL,'999','','','0','','','','','2',NULL,'State of the physical disk: Normal (1) - physical disk is in Normal state; Degraded (2) - physical disk is not operating normally; New (3) - physical disk is new, needs to be admitted; Failed (4) - physical disk has failed; Unknown (99) - physical disk state is unknown.','0','30d','0','','44156','','','','','200','1','0','','','0','0','0','0','0','0','0','acb23a0dc2674f57bada95dd12972662','0','2','0'), ('43456','18','','10526','Disk [{#POSITION}]: Total size','hpe.primera.disk["{#ID}",total_size]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Physical disk total size.','0','30d','0','','44156','','','','','200','1','0','','','0','0','0','0','0','0','0','83395e3165c949e8997e93bfce0ac1d0','0','2','0'), ('43457','18','','10526','Host [{#NAME}]: Comment','hpe.primera.host["{#ID}",comment]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Additional information for the host.','0','30d','0','','44157','','','','','200','1','0','','','0','0','0','0','0','0','0','142a03a36dbf477ebbcb99994efe4246','0','2','0'), ('43458','18','','10526','Host [{#NAME}]: Contact','hpe.primera.host["{#ID}",contact]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The host''s owner and contact.','0','30d','0','','44157','','','','','200','1','0','','','0','0','0','0','0','0','0','44a06761b5174c67ace5487b7ec9f0e5','0','2','0'), ('43459','18','','10526','Host [{#NAME}]: IP address','hpe.primera.host["{#ID}",ipaddress]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The host''s IP address.','0','30d','0','','44157','','','','','200','1','0','','','0','0','0','0','0','0','0','b3bd017e96d843248bbb9cb2240e861b','0','2','0'), ('43460','18','','10526','Host [{#NAME}]: Location','hpe.primera.host["{#ID}",location]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The host''s location.','0','30d','0','','44157','','','','','200','1','0','','','0','0','0','0','0','0','0','367466a0f7084e579f3c11d820dc7f04','0','2','0'), ('43461','18','','10526','Host [{#NAME}]: Model','hpe.primera.host["{#ID}",model]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The host''s model.','0','30d','0','','44157','','','','','200','1','0','','','0','0','0','0','0','0','0','997e52f8f50e47738a1aefbcedaa5a82','0','2','0'), ('43462','18','','10526','Host [{#NAME}]: OS','hpe.primera.host["{#ID}",os]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The operating system running on the host.','0','30d','0','','44157','','','','','200','1','0','','','0','0','0','0','0','0','0','4db5068c8aea4940adb5f8863d50ef47','0','2','0'), ('43463','18','','10526','Port [{#NODE}:{#SLOT}:{#CARD.PORT}]: Failover state','hpe.primera.port["{#NODE}:{#SLOT}:{#CARD.PORT}",failover_state]','0','31d','365d','0','3','','','','',NULL,'1002','','','0','','','','','2',NULL,'The state of the failover operation, shown for the two ports indicated in the N:S:P and Partner columns. The value can be one of the following: none (1) - no failover in operation; failover_pending (2) - in the process of failing over to partner; failed_over (3) - failed over to partner; active (4) - the partner port is failed over to this port; active_down (5) - the partner port is failed over to this port, but this port is down; active_failed (6) - the partner port is failed over to this port, but this port is down; failback_pending (7) - in the process of failing back from partner.','0','30d','0','','44158','','','','','200','1','0','','','0','0','0','0','0','0','0','9241e0b26de74ea49f28e1c09e15a2cd','0','2','0'), ('43464','18','','10526','Port [{#NODE}:{#SLOT}:{#CARD.PORT}]: Hardware type','hpe.primera.port["{#NODE}:{#SLOT}:{#CARD.PORT}",hw_type]','0','31d','365d','0','3','','','','',NULL,'1000','','','0','','','','','2',NULL,'Hardware type: FC (1) - Fibre channel HBA; ETH (2) - Ethernet NIC; iSCSI (3) - iSCSI HBA; CNA (4) - Converged network adapter; SAS (5) - SAS HBA; COMBO (6) - Combo card; NVME (7) - NVMe drive; UNKNOWN (99) - unknown hardware type.','0','30d','0','','44158','','','','','200','1','0','','','0','0','0','0','0','0','0','8abba6d6f6e749b0be277056421a1958','0','2','0'), ('43465','18','','10526','Port [{#NODE}:{#SLOT}:{#CARD.PORT}]: Link state','hpe.primera.port["{#NODE}:{#SLOT}:{#CARD.PORT}",link_state]','0','31d','365d','0','3','','','','',NULL,'1003','','','0','','','','','2',NULL,'Port link state: CONFIG_WAIT (1) - configuration wait; ALPA_WAIT (2) - ALPA wait; LOGIN_WAIT (3) - login wait; READY (4) - link is ready; LOSS_SYNC (5) - link is loss sync; ERROR_STATE (6) - in error state; XXX (7) - xxx; NONPARTICIPATE (8) - link did not participate; COREDUMP (9) - taking coredump; OFFLINE (10) - link is offline; FWDEAD (11) - firmware is dead; IDLE_FOR_RESET (12) - link is idle for reset; DHCP_IN_PROGRESS (13) - DHCP is in progress; PENDING_RESET (14) - link reset is pending; NEW (15) - link in new. This value is applicable for only virtual ports; DISABLED (16) - link in disabled. This value is applicable for only virtual ports; DOWN (17) - link in down. This value is applicable for only virtual ports; FAILED (18) - link in failed. This value is applicable for only virtual ports; PURGING (19) - link in purging. This value is applicable for only virtual ports.','0','30d','0','','44158','','','','','200','1','0','','','0','0','0','0','0','0','0','55119ce474024203ac039f4aa797dd4c','0','2','0'), ('43466','18','','10526','Port [{#NODE}:{#SLOT}:{#CARD.PORT}]: Type','hpe.primera.port["{#NODE}:{#SLOT}:{#CARD.PORT}",type]','0','31d','365d','0','3','','','','',NULL,'1001','','','0','','','','','2',NULL,'Port connection type: HOST (1) - FC port connected to hosts or fabric; DISK (2) - FC port connected to disks; FREE (3) - port is not connected to hosts or disks; IPORT (4) - port is in iport mode; RCFC (5) - FC port used for remote copy; PEER (6) - FC port used for data migration; RCIP (7) - IP (Ethernet) port used for remote copy; ISCSI (8) - iSCSI (Ethernet) port connected to hosts; CNA (9) - CNA port, which can be FCoE or iSCSI; FS (10) - Ethernet File Persona ports.','0','30d','0','','44158','','','','','200','1','0','','','0','0','0','0','0','0','0','c049e53b25bb4cb58cabbff1d91b3e88','0','2','0'), ('43467','18','','10526','Task [{#NAME}]: Finish time','hpe.primera.task["{#ID}",finish_time]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Task finish time.','0','30d','0','','44159','','','','','200','1','0','','','0','0','0','0','0','0','0','cbcdf169dcf646cb959206bbb6cf3642','0','2','0'), ('43468','18','','10526','Task [{#NAME}]: Start time','hpe.primera.task["{#ID}",start_time]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Task start time.','0','30d','0','','44159','','','','','200','1','0','','','0','0','0','0','0','0','0','66140b134d954319a96eb17750da6b7c','0','2','0'), ('43469','18','','10526','Task [{#NAME}]: Status','hpe.primera.task["{#ID}",status]','0','31d','365d','0','3','','','','',NULL,'1007','','','0','','','','','2',NULL,'Task status: DONE (1) - task is finished; ACTIVE (2) - task is in progress; CANCELLED (3) - task is canceled; FAILED (4) - task failed.','0','30d','0','','44159','','','','','200','1','0','','','0','0','0','0','0','0','0','e01b3c84a6594e419c358c7ea297159b','0','2','0'), ('43470','18','','10526','Task [{#NAME}]: Type','hpe.primera.task["{#ID}",type]','0','31d','365d','0','3','','','','',NULL,'1008','','','0','','','','','2',NULL,'Task type: VV_COPY (1) - track the physical copy operations; PHYS_COPY_RESYNC (2) - track physical copy resynchronization operations; MOVE_REGIONS (3) - track region move operations; PROMOTE_SV (4) - track virtual-copy promotions; REMOTE_COPY_SYNC (5) - track remote copy group synchronizations; REMOTE_COPY_REVERSE (6) - track the reversal of a remote copy group; REMOTE_COPY_FAILOVER (7) - track the change-over of a secondary volume group to a primaryvolume group;REMOTE_COPY_RECOVER (8) - track synchronization start after a failover operation from originalsecondary cluster to original primary cluster; REMOTE_COPY_RESTORE (9) - tracks the restoration process for groups that have already been recovered; COMPACT_CPG (10) - track space consolidation in CPGs; COMPACT_IDS (11) - track space consolidation in logical disks; SNAPSHOT_ACCOUNTING (12) - track progress of snapshot space usage accounting; CHECK_VV (13) - track the progress of the check-volume operation; SCHEDULED_TASK (14) - track tasks that have been executed by the system scheduler; SYSTEM_TASK (15) - track tasks that are periodically run by the storage system; BACKGROUND_TASK (16) - track commands started using the starttask command; IMPORT_VV (17) - track tasks that migrate data to the local storage system; ONLINE_COPY (18) - track physical copy of the volume while online (createvvcopy-online command); CONVERT_VV (19) - track tasks that convert a volume from an FPVV to a TPVV, and the reverse; BACKGROUND_COMMAND (20) - track background command tasks; CLX_SYNC (21) - track CLX synchronization tasks; CLX_RECOVERY (22) - track CLX recovery tasks; TUNE_SD (23) - tune copy space; TUNE_VV (24) - tune virtual volume; TUNE_VV_ROLLBACK (25) - tune virtual volume rollback; TUNE_VV_RESTART (26) - tune virtual volume restart; SYSTEM_TUNING (27) - system tuning; NODE_RESCUE (28) - node rescue; REPAIR_SYNC (29) - remote copy repair sync; REMOTE_COPY_SWOVER (30) - remote copy switchover; DEFRAGMENTATION (31) - defragmentation; ENCRYPTION_CHANGE (32) - encryption change; REMOTE_COPY_FAILSAFE (33) - remote copy failsafe; TUNE_TPVV (34) - tune thin virtual volume; REMOTE_COPY_CHG_MODE (35) - remote copy change mode; ONLINE_PROMOTE (37) - online promote snap; RELOCATE_PD (38) - relocate PD; PERIODIC_CSS (39) - remote copy periodic CSS; TUNEVV_LARGE (40) - tune large virtual volume; SD_META_FIXER (41) - compression SD meta fixer; DEDUP_DRYRUN (42) - preview dedup ratio; COMPR_DRYRUN (43) - compression estimation; DEDUP_COMPR_DRYRUN (44) - compression and dedup estimation; UNKNOWN (99) - unknown task type.','0','30d','0','','44159','','','','','200','1','0','','','0','0','0','0','0','0','0','a67262cd7be642b9b56194d8bbb7e928','0','2','0'), ('43471','18','','10526','Volume [{#NAME}]: Compaction ratio','hpe.primera.volume.capacity.efficiency["{#ID}",compaction]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The compaction ratio indicates the overall amount of storage space saved with thin technology.','0','30d','0','','44160','','','','','200','1','0','','','0','0','0','0','0','0','0','40db4c8f6d85414e843c97770225f93d','0','2','0'), ('43472','18','','10526','Volume [{#NAME}]: Total space','hpe.primera.volume.space.total["{#ID}",size]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Virtual size of volume.','0','30d','0','','44160','','','','','200','1','0','','','0','0','0','0','0','0','0','af15ec5befd146afbfb2b9cc017d03be','0','2','0'), ('43473','18','','10526','Volume [{#NAME}]: State','hpe.primera.volume.state["{#ID}"]','0','31d','365d','0','3','','','','',NULL,'1006','','','0','','','','','2',NULL,'State of the volume: NORMAL (1) - normal operation; DEGRADED (2) - degraded state; FAILED (3) - abnormal operation; UNKNOWN (99) - unknown state.','0','30d','0','','44160','','','','','200','1','0','','','0','0','0','0','0','0','0','4d4e34fdbac84cada109cbfe9b69812c','0','2','0'), ('43474','18','','10526','Volume [{#NAME}]: Failed state','hpe.primera.volume.state["{#ID}",failed]','0','31d','0','0','1','','','','',NULL,'1011','','','0','','','','','2',NULL,'Volume detailed state: LDS_NOT_STARTED (1) - LDs not started. NOT_STARTED (2) - VV not started. NEEDS_CHECK (3) - check for consistency. NEEDS_MAINT_CHECK (4) - maintenance check is required. INTERNAL_CONSISTENCY_ERROR (5) - internal consistency error. SNAPDATA_INVALID (6) - invalid snapshot data. PRESERVED (7) - unavailable LD sets due to missing chunklets. Preserved remaining VV data. STALE (8) - parts of the VV contain old data because of a copy-on-write operation. COPY_FAILED (9) - a promote or copy operation to this volume failed. DEGRADED_AVAIL (10) - degraded due to availability. DEGRADED_PERF (11) - degraded due to performance. PROMOTING (12) - volume is the current target of a promote operation. COPY_TARGET (13) - volume is the current target of a physical copy operation. RESYNC_TARGET (14) - volume is the current target of a resynchronized copy operation. TUNING (15) - volume tuning is in progress. CLOSING (16) - volume is closing. REMOVING (17) - removing the volume. REMOVING_RETRY (18) - retrying a volume removal operation. CREATING (19) - creating a volume. COPY_SOURCE (20) - copy source. IMPORTING (21) - importing a volume. CONVERTING (22) - converting a volume. INVALID (23) - invalid. EXCLUSIVE (24) - local storage system has exclusive access to the volume. CONSISTENT (25) - volume is being imported consistently along with other volumes in the VV set. STANDBY (26) - volume in standby mode. SD_META_INCONSISTENT (27) - SD Meta Inconsistent. SD_NEEDS_FIX (28) - SD needs fix. SD_META_FIXING (29) - SD meta fix. UNKNOWN (999) - unknown state. NOT_SUPPORTED_BY_WSAPI (1000) - state not supported by WSAPI.','0','30d','0','','44160','','','','','200','1','0','','','0','0','0','0','0','0','0','462e4b491dd94c78b299178af6d34ca0','0','2','0'), ('43475','18','','10526','Volume [{#NAME}]: Degraded state','hpe.primera.volume.state["{#ID}",degraded]','0','31d','0','0','1','','','','',NULL,'1011','','','0','','','','','2',NULL,'Volume detailed state: LDS_NOT_STARTED (1) - LDs not started. NOT_STARTED (2) - VV not started. NEEDS_CHECK (3) - check for consistency. NEEDS_MAINT_CHECK (4) - maintenance check is required. INTERNAL_CONSISTENCY_ERROR (5) - internal consistency error. SNAPDATA_INVALID (6) - invalid snapshot data. PRESERVED (7) - unavailable LD sets due to missing chunklets. Preserved remaining VV data. STALE (8) - parts of the VV contain old data because of a copy-on-write operation. COPY_FAILED (9) - a promote or copy operation to this volume failed. DEGRADED_AVAIL (10) - degraded due to availability. DEGRADED_PERF (11) - degraded due to performance. PROMOTING (12) - volume is the current target of a promote operation. COPY_TARGET (13) - volume is the current target of a physical copy operation. RESYNC_TARGET (14) - volume is the current target of a resynchronized copy operation. TUNING (15) - volume tuning is in progress. CLOSING (16) - volume is closing. REMOVING (17) - removing the volume. REMOVING_RETRY (18) - retrying a volume removal operation. CREATING (19) - creating a volume. COPY_SOURCE (20) - copy source. IMPORTING (21) - importing a volume. CONVERTING (22) - converting a volume. INVALID (23) - invalid. EXCLUSIVE (24) - local storage system has exclusive access to the volume. CONSISTENT (25) - volume is being imported consistently along with other volumes in the VV set. STANDBY (26) - volume in standby mode. SD_META_INCONSISTENT (27) - SD Meta Inconsistent. SD_NEEDS_FIX (28) - SD needs fix. SD_META_FIXING (29) - SD meta fix. UNKNOWN (999) - unknown state. NOT_SUPPORTED_BY_WSAPI (1000) - state not supported by WSAPI.','0','30d','0','','44160','','','','','200','1','0','','','0','0','0','0','0','0','0','83222faf4e3e414789e028e0b17350c6','0','2','0'), ('43476','18','','10526','Volume [{#NAME}]: Deduplication state','hpe.primera.volume.state["{#ID}",deduplication]','0','31d','365d','0','3','','','','',NULL,'1010','','','0','','','','','2',NULL,'Volume deduplication state: YES (1) - enables deduplication on the volume; NO (2) - disables deduplication on the volume; NA (3) - deduplication is not available; OFF (4) - deduplication is turned off.','0','30d','0','','44160','','','','','200','1','0','','','0','0','0','0','0','0','0','3962d07122a0460fa36c1b151a87717b','0','2','0'), ('43477','18','','10526','Volume [{#NAME}]: Compression state','hpe.primera.volume.state["{#ID}",compression]','0','31d','365d','0','3','','','','',NULL,'1009','','','0','','','','','2',NULL,'Volume compression state: YES (1) - compression is enabled on the volume; NO (2) - compression is disabled on the volume; OFF (3) - compression is turned off; NA (4) - compression is not available on the volume.','0','30d','0','','44160','','','','','200','1','0','','','0','0','0','0','0','0','0','beb17415bd07492d83944da714c492e7','0','2','0'), ('43478','18','','10526','Volume [{#NAME}]: User space: Used','hpe.primera.volume.space.user["{#ID}",used]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Used user space.','0','30d','0','','44160','','','','','200','1','0','','','0','0','0','0','0','0','0','3adf03216c4f442693fccbb991c0de3d','0','2','0'), ('43479','18','','10526','Volume [{#NAME}]: User space: Reserved','hpe.primera.volume.space.user["{#ID}",reserved]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Reserved user space.','0','30d','0','','44160','','','','','200','1','0','','','0','0','0','0','0','0','0','135ad5457781492db1cec36787151a71','0','2','0'), ('43480','18','','10526','Volume [{#NAME}]: User space: Raw reserved','hpe.primera.volume.space.user["{#ID}",raw_reserved]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Raw reserved user space.','0','30d','0','','44160','','','','','200','1','0','','','0','0','0','0','0','0','0','97aaefe8dffd4d2eb83f908ac8ad775b','0','2','0'), ('43481','18','','10526','Volume [{#NAME}]: User space: Free','hpe.primera.volume.space.user["{#ID}",free]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Free user space.','0','30d','0','','44160','','','','','200','1','0','','','0','0','0','0','0','0','0','43c278563b174005ac5302ee48e0cd30','0','2','0'), ('43482','18','','10526','Volume [{#NAME}]: Total used space','hpe.primera.volume.space.total["{#ID}",used]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total used space. Sum of used user space and used snapshot space.','0','30d','0','','44160','','','','','200','1','0','','','0','0','0','0','0','0','0','6000ab524b394e65afe111b65f7b6fd8','0','2','0'), ('43483','18','','10526','Volume [{#NAME}]: Total reserved space','hpe.primera.volume.space.total["{#ID}",reserved]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Total reserved space.','0','30d','0','','44160','','','','','200','1','0','','','0','0','0','0','0','0','0','64825e4092c6450a8ea7fb7bce2d85ce','0','2','0'), ('43484','18','','10526','Volume [{#NAME}]: Storage space saved using compression','hpe.primera.volume.capacity.efficiency["{#ID}",compression]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the amount of storage space saved using compression.','0','30d','0','','44160','','','','','200','1','0','','','0','0','0','0','0','0','0','ab2a583c4b4049a6ac8b7bbc02bda8f5','0','2','0'), ('43485','18','','10526','Volume [{#NAME}]: Snapshot space: Used','hpe.primera.volume.space.snapshot["{#ID}",used]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Used snapshot space.','0','30d','0','','44160','','','','','200','1','0','','','0','0','0','0','0','0','0','a278f5ec08c747b085ec53a36357539c','0','2','0'), ('43486','18','','10526','Volume [{#NAME}]: Snapshot space: Reserved','hpe.primera.volume.space.snapshot["{#ID}",reserved]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Reserved snapshot space.','0','30d','0','','44160','','','','','200','1','0','','','0','0','0','0','0','0','0','a37265c4598f4179bdcfd816769a1d9b','0','2','0'), ('43487','18','','10526','Volume [{#NAME}]: Snapshot space: Raw reserved','hpe.primera.volume.space.snapshot["{#ID}",raw_reserved]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Raw reserved snapshot space.','0','30d','0','','44160','','','','','200','1','0','','','0','0','0','0','0','0','0','a2c22eed1c004bcc9292b945b5038858','0','2','0'), ('43488','18','','10526','Volume [{#NAME}]: Snapshot space: Free','hpe.primera.volume.space.snapshot["{#ID}",free]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Free snapshot space.','0','30d','0','','44160','','','','','200','1','0','','','0','0','0','0','0','0','0','5d4659c72ed3492da143ad9c37e71360','0','2','0'), ('43489','18','','10526','Volume [{#NAME}]: Administrative space: Used','hpe.primera.volume.space.admin["{#ID}",used]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Used administrative space.','0','30d','0','','44160','','','','','200','1','0','','','0','0','0','0','0','0','0','67e182afc0124cf5913b0499317a7966','0','2','0'), ('43490','18','','10526','Volume [{#NAME}]: Administrative space: Reserved','hpe.primera.volume.space.admin["{#ID}",reserved]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Reserved administrative space.','0','30d','0','','44160','','','','','200','1','0','','','0','0','0','0','0','0','0','e5a93a042a3b41bab4cf59dc71ec66bf','0','2','0'), ('43491','18','','10526','Volume [{#NAME}]: Administrative space: Raw reserved','hpe.primera.volume.space.admin["{#ID}",raw_reserved]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Raw reserved administrative space.','0','30d','0','','44160','','','','','200','1','0','','','0','0','0','0','0','0','0','e4f9f8f5c1cd494896eba973b072fc57','0','2','0'), ('43492','18','','10526','Volume [{#NAME}]: Administrative space: Free','hpe.primera.volume.space.admin["{#ID}",free]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'Free administrative space.','0','30d','0','','44160','','','','','200','1','0','','','0','0','0','0','0','0','0','bb78eda6a941407581f78cf29ef2b647','0','2','0'), ('43493','18','','10526','Volume [{#NAME}]: Storage space saved using deduplication and compression','hpe.primera.volume.capacity.efficiency["{#ID}",reduction]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the amount of storage space saved using deduplication and compression together.','0','30d','0','','44160','','','','','200','1','0','','','0','0','0','0','0','0','0','f584938e60f94c46b4ed28cc614c797d','0','2','0'), ('43494','18','','10526','Volume [{#NAME}]: Overprovisioning ratio','hpe.primera.volume.capacity.efficiency["{#ID}",overprovisioning]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Overprovisioning capacity efficiency ratio.','0','30d','0','','44160','','','','','200','1','0','','','0','0','0','0','0','0','0','3b88e49e88484fe4a77e2a96f6d48322','0','2','0'), ('43495','18','','10526','Volume [{#NAME}]: Storage space saved using deduplication','hpe.primera.volume.capacity.efficiency["{#ID}",deduplication]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the amount of storage space saved using deduplication.','0','30d','0','','44160','','','','','200','1','0','','','0','0','0','0','0','0','0','1c4d78b2dcd64efbbf710ef602a94573','0','2','0'), ('43496','18','','10526','Volume [{#NAME}]: Remote copy status','hpe.primera.volume.status["{#ID}",rcopy]','0','31d','0','0','1','','','','',NULL,'1004','','','0','','','','','2',NULL,'Remote copy status of the volume: NONE (1) - volume is not associated with remote copy; PRIMARY (2) - volume is the primary copy; SECONDARY (3) - volume is the secondary copy; SNAP (4) - volume is the remote copy snapshot; SYNC (5) - volume is a remote copy snapshot being used for synchronization; DELETE (6) - volume is a remote copy snapshot that is marked for deletion; UNKNOWN (99) - remote copy status is unknown for this volume.','0','30d','0','','44160','','','','','200','1','0','','','0','0','0','0','0','0','0','582544eb48d04a35ab03a9d01901feb9','0','2','0'), ('43926','18','','10534','Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Power state','hpe.synergy.appliance["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",bay_power_state]','0','31d','365d','0','3','','','','',NULL,'1038','','','0','','','','','2',NULL,'The power state of the appliance bay. *EFuse* - the power state of the bay - it has been EFused. *Reset* - the power state of the bay - it has been reset. *SoftReset* - the power state of the bay - it has been softly reset. *Unknown* - the power state of the bay is unknown.','0','30d','0','','44214','','','','','200','1','0','','','0','0','0','0','0','0','0','d3be63fe949c4960ba5a66c546b4ebcd','0','2','0'), ('43927','18','','10534','Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Model','hpe.synergy.appliance["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",model]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The model name of the appliance.','0','30d','0','','44214','','','','','200','1','0','','','0','0','0','0','0','0','0','08e834ca1ea04357b13d0383cfba8503','0','2','0'), ('43928','18','','10534','Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Part number','hpe.synergy.appliance["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",part_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The part number of the appliance.','0','30d','0','','44214','','','','','200','1','0','','','0','0','0','0','0','0','0','df7ef9ae030c417e9c3a9b64d22c2bb9','0','2','0'), ('43929','18','','10534','Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Powered on','hpe.synergy.appliance["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",powered_on]','0','31d','365d','0','3','','','','',NULL,'1025','','','0','','','','','2',NULL,'*Yes*, if the appliance is powered on; *false*, otherwise.','0','30d','0','','44214','','','','','200','1','0','','','0','0','0','0','0','0','0','7921c3c8ac07452d9a0cc47436d10aac','0','2','0'), ('43930','18','','10534','Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Presence','hpe.synergy.appliance["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",presence]','0','31d','365d','0','3','','','','',NULL,'1026','','','0','','','','','2',NULL,'Indicates whether an appliance is present in the bay: *Absent* - the device slot is empty; *PresenceNoOp* - the device slot is uninitialized; *PresenceUnknown* - the device presence is unknown; *Present* - the device slot has a device in it; *Subsumed* - the device slot is configured to be part of another device slot. Not applicable for the fan or power supply bays.','0','30d','0','','44214','','','','','200','1','0','','','0','0','0','0','0','0','0','d4501f70c9e74f5dbe11ab608629c666','0','2','0'), ('43931','18','','10534','Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Serial number','hpe.synergy.appliance["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",serial_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The serial number of the appliance.','0','30d','0','','44214','','','','','200','1','0','','','0','0','0','0','0','0','0','f352ca846fa34ba698b28f8d8883a14d','0','2','0'), ('43932','18','','10534','Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Spare part number','hpe.synergy.appliance["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",spare_part_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The spare part number of the appliance.','0','30d','0','','44214','','','','','200','1','0','','','0','0','0','0','0','0','0','6d47ed045d904cc780c538a330ba0895','0','2','0'), ('43933','18','','10534','Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Status','hpe.synergy.appliance["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",status]','0','31d','365d','0','3','','','','',NULL,'1028','','','0','','','','','2',NULL,'The hardware status of the appliance: *Critical* - requires immediate attention; *Disabled* - the resource is currently not operational; *OK* - indicates normal/informational behavior; *Unknown* - the health status is not yet known or cannot be determined; *Warning* - requires attention soon.','0','30d','0','','44214','','','','','200','1','0','','','0','0','0','0','0','0','0','836036ba1abb43bbaaabddaa8bb438d3','0','2','0'), ('43934','18','','10534','Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: HW version','hpe.synergy.crossbar["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",hw_version]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The hardware version.','0','30d','0','','44215','','','','','200','1','0','','','0','0','0','0','0','0','0','c64e3a01454f473b888e57496ec642d3','0','2','0'), ('43935','18','','10534','Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Part number','hpe.synergy.crossbar["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",part_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The part number provided by the manufacturer.','0','30d','0','','44215','','','','','200','1','0','','','0','0','0','0','0','0','0','aaa521f31d2d4e04b918892e8e02911d','0','2','0'), ('43936','18','','10534','Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Presence','hpe.synergy.crossbar["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",presence]','0','31d','365d','0','3','','','','',NULL,'1026','','','0','','','','','2',NULL,'The presence in a bay: *Absent* - the device slot is empty; *PresenceNoOp* - the device slot is uninitialized; *PresenceUnknown* - the device presence is unknown; *Present* - the device slot has a device in it; *Subsumed* - the device slot is configured to be part of another device slot. Not applicable for the fan or power supply bays.','0','30d','0','','44215','','','','','200','1','0','','','0','0','0','0','0','0','0','4c29bf3ba488474188104c51a483949e','0','2','0'), ('43937','18','','10534','Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Serial number','hpe.synergy.crossbar["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",serial_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'A serial number.','0','30d','0','','44215','','','','','200','1','0','','','0','0','0','0','0','0','0','c7fe889af0fc43e0b73b20a99b7d193a','0','2','0'), ('43938','18','','10534','Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Status','hpe.synergy.crossbar["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",status]','0','31d','365d','0','3','','','','',NULL,'1028','','','0','','','','','2',NULL,'The overall health status of the crossbar: *Critical* - requires immediate attention; *Disabled* - the resource is currently not operational; *OK* - indicates normal/informational behavior; *Unknown* - the health status is not yet known or cannot be determined; *Warning* - requires attention soon.','0','30d','0','','44215','','','','','200','1','0','','','0','0','0','0','0','0','0','322073fa57dc49df9b12898a647fe255','0','2','0'), ('43939','18','','10534','Datacenter [{#NAME}]: State','hpe.synergy.datacenter["{#NAME}",state]','0','31d','365d','0','3','','','','',NULL,'1039','','','0','','','','','2',NULL,'The current state of the resource. The valid values include Adding, AddError, Configured, CredentialError, Refreshing, RefreshError, Removing, RemoveError, and Unmanaged.','0','30d','0','','44216','','','','','200','1','0','','','0','0','0','0','0','0','0','d37c1e2376ba4da5822041ad8ff37c8a','0','2','0'), ('43940','18','','10534','Datacenter [{#NAME}]: Status','hpe.synergy.datacenter["{#NAME}",status]','0','31d','365d','0','3','','','','',NULL,'1028','','','0','','','','','2',NULL,'The overall health status of the resource. The following are the valid values for the status of the resource: *OK* - indicates normal/informational behavior; *Disabled* - indicates that a resource is not operational; *Warning* - requires attention soon; *Critical* - requires immediate attention; *Unknown* - should be avoided, but there may be rare occasions when the status is unknown.','0','30d','0','','44216','','','','','200','1','0','','','0','0','0','0','0','0','0','b9b2a869c6364cbc8ac6eb3ff7511b29','0','2','0'), ('43941','18','','10534','Device [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Model','hpe.synergy.device["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",model]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The model name of an unsupported device occupying the bay if available.','0','30d','0','','44217','','','','','200','1','0','','','0','0','0','0','0','0','0','38ecff044b1d4ff88f8e99b21998181a','0','2','0'), ('43942','18','','10534','Device [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Power allocated','hpe.synergy.device["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",power_allocation]','0','31d','365d','0','3','','W','','',NULL,NULL,'','','0','','','','','2',NULL,'The power allocated for the enclosed blade.','0','30d','0','','44217','','','','','200','1','0','','','0','0','0','0','0','0','0','125d25085af54d509c6f2401a85042dc','0','2','0'), ('43943','18','','10534','Device [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Presence','hpe.synergy.device["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",presence]','0','31d','365d','0','3','','','','',NULL,'1026','','','0','','','','','2',NULL,'Indicates whether a device is present: *Absent* - the device slot is empty; *PresenceNoOp* - the device slot is uninitialized; *PresenceUnknown* - the device presence is unknown; *Present* - the device slot has a device in it; *Subsumed* - the device slot is configured to be part of another device slot. Not applicable for the fan or power supply bays.','0','30d','0','','44217','','','','','200','1','0','','','0','0','0','0','0','0','0','9167abd4d23445eba156f2529cb5b827','0','2','0'), ('43944','18','','10534','Device [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Serial number','hpe.synergy.device["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",serial_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'If available, the serial number of any device occupying the bay.','0','30d','0','','44217','','','','','200','1','0','','','0','0','0','0','0','0','0','c2c012eab77d425da1c69f65a5078277','0','2','0'), ('43945','18','','10534','Enclosure [{#NAME}]: Appliance bays count','hpe.synergy.enclosure["{#NAME}",appliance_bay_count]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of the appliance bays in the enclosure.','0','30d','0','','44218','','','','','200','1','0','','','0','0','0','0','0','0','0','fb5f6aaec9254d9b998d68d647321a28','0','2','0'), ('43946','18','','10534','Enclosure [{#NAME}]: Part number','hpe.synergy.enclosure["{#NAME}",part_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The part number of the enclosure.','0','30d','0','','44218','','','','','200','1','0','','','0','0','0','0','0','0','0','2ff00b9a0e2446a88aefc5cd62ca8763','0','2','0'), ('43947','18','','10534','Enclosure [{#NAME}]: Status','hpe.synergy.enclosure["{#NAME}",status]','0','31d','365d','0','3','','','','',NULL,'1028','','','0','','','','','2',NULL,'The overall health status of the enclosure. The enclosure status reflects the hardware health of the enclosure, all the bays, and the enclosure components (e.g. the enclosure mid-plane, fans, power supplies, Synergy Frame Link Modules, and Synergy Composers). It explicitly does not include the status of the other HPE OneView resources such as the blades (server hardware), the interconnects, and the drive enclosures. *Critical* - requires immediate attention. *Disabled* - the resource is currently not operational. *OK* - indicates normal/informational behavior. *Unknown* - the health status is not yet known or cannot be determined. *Warning* - requires attention soon.','0','30d','0','','44218','','','','','200','1','0','','','0','0','0','0','0','0','0','a22c6445c8e9491bbd0e08ba63c37659','0','2','0'), ('43948','18','','10534','Enclosure [{#NAME}]: State reason','hpe.synergy.enclosure["{#NAME}",state_reason]','0','31d','365d','0','3','','','','',NULL,'1043','','','0','','','','','2',NULL,'Indicates the reason why the resource in its current state: *Missing* - the enclosure is no longer connected into the frame link topology; *None* - no reason is available, or none applies; *NotAdded* - the enclosure has not been added; *NotOwner* - the enclosure reports being managed by something other than this HPE OneView; *OperationFailed* - a prior operation was interrupted; *Unowned* - the enclosure reports are not being under the management; *UnsupportedFirmware* - the firmware version of the enclosure is not supported by this version of HPE OneView; *UpdatingFirmware* - a firmware update is in progress.','0','30d','0','','44218','','','','','200','1','0','','','0','0','0','0','0','0','0','6947d7dc74744e05a5b2fbd6ae918f16','0','2','0'), ('43949','18','','10534','Enclosure [{#NAME}]: State','hpe.synergy.enclosure["{#NAME}",state]','0','31d','365d','0','3','','','','',NULL,'1027','','','0','','','','','2',NULL,'The current resource state of the enclosure: *Adding* - the enclosure is being added; *Configured* - the enclosure is configured and is a part of the logical enclosure. This is the usual state for an enclosure under full management; *Configuring* - a transient state while the enclosure is being configured for a logical enclosure; *Interrupted* - the previous operation on the enclosure did not complete. The operation should be re-attempted; *Monitored* - the enclosure is being monitored. It is not a part of the logical enclosure and only hardware-control operations are available; *Pending* - there are pending operations on the enclosure. Additional operations are denied; *RemoveFailed* - the previous operation to remove the enclosure did not succeed. The operation should be re-attempted; *Removing* - the enclosure is being removed; *Unmanaged* - the enclosure has been discovered, but has not yet been added for the management or monitoring; *Unsupported* - the enclosure model or version is not currently supported by HPE OneView. It cannot be configured or monitored.','0','30d','0','','44218','','','','','200','1','0','','','0','0','0','0','0','0','0','d70426e6912f4128a58ba0f14dd3b5a0','0','2','0'), ('43950','18','','10534','Enclosure [{#NAME}]: Serial number','hpe.synergy.enclosure["{#NAME}",serial_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The serial number of the enclosure.','0','30d','0','','44218','','','','','200','1','0','','','0','0','0','0','0','0','0','4ee9c37fd5024e3d820f74fe174a42e7','0','2','0'), ('43951','18','','10534','Enclosure [{#NAME}]: Power supply bays count','hpe.synergy.enclosure["{#NAME}",ps_bay_count]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of the power supply bays in the enclosure.','0','30d','0','','44218','','','','','200','1','0','','','0','0','0','0','0','0','0','820f177f59044d28a945642f36b6a193','0','2','0'), ('43952','18','','10534','Enclosure [{#NAME}]: Total available power','hpe.synergy.enclosure["{#NAME}",power_total_available]','0','31d','365d','0','3','','W','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of the unallocated power in the enclosure.','0','30d','0','','44218','','','','','200','1','0','','','0','0','0','0','0','0','0','af45f99643fa40429e8401bf150cd7a1','0','2','0'), ('43953','18','','10534','Enclosure [{#NAME}]: Total allocated power','hpe.synergy.enclosure["{#NAME}",power_total_allocated]','0','31d','365d','0','3','','W','','',NULL,NULL,'','','0','','','','','2',NULL,'The total amount of the power allocated in the enclosure.','0','30d','0','','44218','','','','','200','1','0','','','0','0','0','0','0','0','0','68ad000d8b4e4bd5b2778802426ec764','0','2','0'), ('43954','18','','10534','Enclosure [{#NAME}]: Power capacity','hpe.synergy.enclosure["{#NAME}",power_capacity]','0','31d','365d','0','3','','W','','',NULL,NULL,'','','0','','','','','2',NULL,'The power capacity based on power mode.','0','30d','0','','44218','','','','','200','1','0','','','0','0','0','0','0','0','0','3c2bf0a14a9847c9925e52aa7e6815f1','0','2','0'), ('43955','18','','10534','Enclosure [{#NAME}]: Model','hpe.synergy.enclosure["{#NAME}",model]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The enclosure model name, for example, "BladeSystem c7000 Enclosure G2.','0','30d','0','','44218','','','','','200','1','0','','','0','0','0','0','0','0','0','19447ecdba484d04aff2ff3c90ccaef7','0','2','0'), ('43956','18','','10534','Enclosure [{#NAME}]: Device bays count','hpe.synergy.enclosure["{#NAME}",device_bay_count]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of the device bays in the enclosure.','0','30d','0','','44218','','','','','200','1','0','','','0','0','0','0','0','0','0','e0cc3af5e941491ebbb6227f2ece06a7','0','2','0'), ('43957','18','','10534','Enclosure [{#NAME}]: Min power supplies for redundant power feed','hpe.synergy.enclosure["{#NAME}",min_ps_redundant]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The minimum number of the power supplies needed to fulfill the redundant line feed power mode.','0','30d','0','','44218','','','','','200','1','0','','','0','0','0','0','0','0','0','7adece9356e04a7db4e35fa1e1979e78','0','2','0'), ('43958','18','','10534','Enclosure [{#NAME}]: Min power supplies','hpe.synergy.enclosure["{#NAME}",min_ps]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The minimum number of the power supplies needed.','0','30d','0','','44218','','','','','200','1','0','','','0','0','0','0','0','0','0','8685fbee85b2412b8c53dc82209ca90a','0','2','0'), ('43959','18','','10534','Enclosure [{#NAME}]: Interconnect bays power','hpe.synergy.enclosure["{#NAME}",interconnect_bay_watts]','0','31d','365d','0','3','','W','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of power allocated for the interconnects in the enclosure.','0','30d','0','','44218','','','','','200','1','0','','','0','0','0','0','0','0','0','153278ea2f8940d18024f220d922130a','0','2','0'), ('43960','18','','10534','Enclosure [{#NAME}]: Interconnect bays count','hpe.synergy.enclosure["{#NAME}",interconnect_bay_count]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of the interconnect bays in the enclosure.','0','30d','0','','44218','','','','','200','1','0','','','0','0','0','0','0','0','0','145729f95cfe42f0a8e8308b856a03a2','0','2','0'), ('43961','18','','10534','Enclosure [{#NAME}]: Firmware baseline','hpe.synergy.enclosure["{#NAME}",fw_baseline_name]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The name of the current firmware baseline.','0','30d','0','','44218','','','','','200','1','0','','','0','0','0','0','0','0','0','8e2740eea20d4a0fb42b0cef4c894fce','0','2','0'), ('43962','18','','10534','Enclosure [{#NAME}]: Fan bays count','hpe.synergy.enclosure["{#NAME}",fan_bay_count]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of the fan bays in the enclosure.','0','30d','0','','44218','','','','','200','1','0','','','0','0','0','0','0','0','0','d6af8f4c7cf04fe6a41c02e6ff50b98a','0','2','0'), ('43963','18','','10534','Enclosure [{#NAME}]: Power allocated for fans and management devices','hpe.synergy.enclosure["{#NAME}",fans_mgmt_power]','0','31d','365d','0','3','','W','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of the power allocated for the fans and management devices of the enclosure.','0','30d','0','','44218','','','','','200','1','0','','','0','0','0','0','0','0','0','732b7bbca90e458ead5558cea465f88e','0','2','0'), ('43964','18','','10534','Enclosure [{#NAME}]: Device bays power','hpe.synergy.enclosure["{#NAME}",device_bay_watts]','0','31d','365d','0','3','','W','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of power allocated for the blades in the enclosure.','0','30d','0','','44218','','','','','200','1','0','','','0','0','0','0','0','0','0','e17e34afe0dd4e4ea2534b7762033a83','0','2','0'), ('43965','18','','10534','Enclosure [{#NAME}]: Type','hpe.synergy.enclosure["{#NAME}",type]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The type of the enclosure, for example, "C7000" or "SY12000" or "SDX".','0','30d','0','','44218','','','','','200','1','0','','','0','0','0','0','0','0','0','66d773b8d4794752b3ff9b5913ee32f2','0','2','0'), ('43966','18','','10534','Ethernet network [{#NAME}]: State','hpe.synergy.ethernet.network["{#NAME}",state]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current state of the resource.','0','30d','0','','44219','','','','','200','1','0','','','0','0','0','0','0','0','0','9b69d74467d6440eb98fc6c69c2f6779','0','2','0'), ('43967','18','','10534','Ethernet network [{#NAME}]: Status','hpe.synergy.ethernet.network["{#NAME}",status]','0','31d','365d','0','3','','','','',NULL,'1028','','','0','','','','','2',NULL,'The overall health status of the resource. The following are the valid values for the status of the resource: *OK* - indicates normal/informational behavior; *Disabled* - indicates that the resource is not operational; *Warning* - requires attention soon; *Critical* - requires immediate attention; *Unknown* - should be avoided, but there may be rare occasions when the status is unknown.','0','30d','0','','44219','','','','','200','1','0','','','0','0','0','0','0','0','0','ec1c0f1ec9f34c7aa1d6c9509e4fc6a7','0','2','0'), ('43968','18','','10534','Fabric [{#NAME}]: State','hpe.synergy.fabric["{#NAME}",state]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current state of the resource.','0','30d','0','','44220','','','','','200','1','0','','','0','0','0','0','0','0','0','9f38d17239ee45d4a22e8f08dde37910','0','2','0'), ('43969','18','','10534','Fabric [{#NAME}]: Status','hpe.synergy.fabric["{#NAME}",status]','0','31d','365d','0','3','','','','',NULL,'1028','','','0','','','','','2',NULL,'The overall health status of the resource. The following are the valid values for the status of the resource: *OK* - indicates normal/informational behavior; *Disabled* - indicates that the resource is not operational; *Warning* - requires attention soon; *Critical* - requires immediate attention; *Unknown* - should be avoided, but there may be rare occasions when the status is unknown.','0','30d','0','','44220','','','','','200','1','0','','','0','0','0','0','0','0','0','82f8bedd589643d1954f329f5f10b9b9','0','2','0'), ('43970','18','','10534','Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Model','hpe.synergy.fan["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",model]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The common descriptive model of the fan.','0','30d','0','','44221','','','','','200','1','0','','','0','0','0','0','0','0','0','8449918637ab4f98932ca75d859546b2','0','2','0'), ('43971','18','','10534','Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Part number','hpe.synergy.fan["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",part_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The part number of the fan.','0','30d','0','','44221','','','','','200','1','0','','','0','0','0','0','0','0','0','539f8b373baf46d7bcde5fc090f02284','0','2','0'), ('43972','18','','10534','Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Presence','hpe.synergy.fan["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",presence]','0','31d','365d','0','3','','','','',NULL,'1026','','','0','','','','','2',NULL,'Indicates whether a fan is present: *Absent* - the device slot is empty; *PresenceNoOp* - the device slot is uninitialized; *PresenceUnknown* - the device presence is unknown; *Present* - the device slot has a device in it; *Subsumed* - the device slot is configured to be part of another device slot. Not applicable for the fan or power supply bays.','0','30d','0','','44221','','','','','200','1','0','','','0','0','0','0','0','0','0','eb7ad5fc3d4947eda9642c2a2d440796','0','2','0'), ('43973','18','','10534','Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Required','hpe.synergy.fan["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",required]','0','31d','365d','0','3','','','','',NULL,'1025','','','0','','','','','2',NULL,'Indicates whether the enclosure configuration requires a fan to be present in the bay.','0','30d','0','','44221','','','','','200','1','0','','','0','0','0','0','0','0','0','6782d5441add454384b41d9ede2a8cf2','0','2','0'), ('43974','18','','10534','Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Serial number','hpe.synergy.fan["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",serial_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The serial number of the fan.','0','30d','0','','44221','','','','','200','1','0','','','0','0','0','0','0','0','0','16a8b59afdf04df1a070e1249fdd1a61','0','2','0'), ('43975','18','','10534','Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Spare part number','hpe.synergy.fan["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",spare_part_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The spare part number to be used when ordering an additional or replacement fan of this type.','0','30d','0','','44221','','','','','200','1','0','','','0','0','0','0','0','0','0','4e6338579bea4bb7acb06e57d55365e5','0','2','0'), ('43976','18','','10534','Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: State','hpe.synergy.fan["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",state]','0','31d','365d','0','3','','','','',NULL,'1040','','','0','','','','','2',NULL,'The current state of the fan: *Degraded* - a fan is degraded; *Failed* - a fan has failed; *Misplaced* - a fan is present, but not required in this bay, and the overall fan configuration is not compliant with the enclosure fan placement rules; *Missing* - a fan is required, but is not present; *OK* - a fan bay has no issues; *Unknown* - the state of a fan is unknown.','0','30d','0','','44221','','','','','200','1','0','','','0','0','0','0','0','0','0','19171c26420f4cd894509a817c3245d8','0','2','0'), ('43977','18','','10534','Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Status','hpe.synergy.fan["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",status]','0','31d','365d','0','3','','','','',NULL,'1028','','','0','','','','','2',NULL,'The overall health status of the fan: *Critical* - requires immediate attention; *Disabled* - the resource is currently not operational; *OK* - indicates normal/informational behavior; *Unknown* - the health status is not yet known or cannot be determined; *Warning* - requires attention soon.','0','30d','0','','44221','','','','','200','1','0','','','0','0','0','0','0','0','0','e9ac8ad873a04d549ed492b1c23966cb','0','2','0'), ('43978','18','','10534','FC network [{#NAME}]: State','hpe.synergy.fc.network["{#NAME}",state]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current state of the resource.','0','30d','0','','44222','','','','','200','1','0','','','0','0','0','0','0','0','0','1defd79827204bbcaffe79cd7a9df059','0','2','0'), ('43979','18','','10534','FC network [{#NAME}]: Status','hpe.synergy.fc.network["{#NAME}",status]','0','31d','365d','0','3','','','','',NULL,'1028','','','0','','','','','2',NULL,'The overall health status of the resource. The following are the valid values for the status of the resource: *OK* - indicates normal/informational behavior; *Disabled* - indicates that the resource is not operational; *Warning* - requires attention soon; *Critical* - requires immediate attention; *Unknown* - should be avoided, but there may be rare occasions when the status is unknown.','0','30d','0','','44222','','','','','200','1','0','','','0','0','0','0','0','0','0','db0c86d17310421088cad2853d35c177','0','2','0'), ('43980','18','','10534','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Firmware version','hpe.synergy.manager["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",fw_version]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The firmware version of the manager.','0','30d','0','','44223','','','','','200','1','0','','','0','0','0','0','0','0','0','64e7f977edf34338aa74e8acc88d98fd','0','2','0'), ('43981','18','','10534','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Link port state','hpe.synergy.manager["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",link_port_state]','0','31d','365d','0','3','','','','',NULL,'1030','','','0','','','','','2',NULL,'The state of the LINK port: *Disabled* - the port is disabled; *Linked* - the port is linked; *Unlinked* - the port is unlinked.','0','30d','0','','44223','','','','','200','1','0','','','0','0','0','0','0','0','0','c34aade5cdf1469cbab8fe97ede864ea','0','2','0'), ('43982','18','','10534','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Link port status','hpe.synergy.manager["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",link_port_status]','0','31d','365d','0','3','','','','',NULL,'1028','','','0','','','','','2',NULL,'The status of the LINK port: *Critical* - requires immediate attention; *Disabled* - the resource is currently not operational; *OK* - indicates normal/informational behavior; *Unknown* - the health status is not yet known or cannot be determined; *Warning* - requires attention soon.','0','30d','0','','44223','','','','','200','1','0','','','0','0','0','0','0','0','0','ca60cadc2c0f44e7a281e956bc34d1da','0','2','0'), ('43983','18','','10534','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: MGMT port state','hpe.synergy.manager["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",mgmt_port_state]','0','31d','365d','0','3','','','','',NULL,'1033','','','0','','','','','2',NULL,'The state of the MGMT port: *Active* - the port is in active mode; *Disabled* - the port is in disabled mode; *I3s* - the port is configured for the deployment of an OS network traffic. *Other* - the port is in other mode; *Standby* - the port is in standby mode; *Unknown* - the mode of the port is not known.','0','30d','0','','44223','','','','','200','1','0','','','0','0','0','0','0','0','0','b636ea6e5d994e728579cd5d479fe298','0','2','0'), ('43984','18','','10534','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: MGMT port status','hpe.synergy.manager["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",mgmt_port_status]','0','31d','365d','0','3','','','','',NULL,'1028','','','0','','','','','2',NULL,'The status of the MGMT port: *Critical* - requires immediate attention; *Disabled* - the resource is currently not operational; *OK* - indicates normal/informational behavior; *Unknown* - the health status is not yet known or cannot be determined; *Warning* - requires attention soon.','0','30d','0','','44223','','','','','200','1','0','','','0','0','0','0','0','0','0','41a66b669b15425796f1dce9b46545c5','0','2','0'), ('43985','18','','10534','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Model','hpe.synergy.manager["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",model]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The model of the link module.','0','30d','0','','44223','','','','','200','1','0','','','0','0','0','0','0','0','0','99281bb985fe46c6ac9328e2e491665e','0','2','0'), ('43986','18','','10534','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Part number','hpe.synergy.manager["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",part_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The part number of the link module.','0','30d','0','','44223','','','','','200','1','0','','','0','0','0','0','0','0','0','90a8d8e504834e4393c3fa0bbcb5e802','0','2','0'), ('43987','18','','10534','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Presence','hpe.synergy.manager["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",presence]','0','31d','365d','0','3','','','','',NULL,'1026','','','0','','','','','2',NULL,'Indicates whether a manager is present in the bay: *Absent* - the device slot is empty; *PresenceNoOp* - the device slot is uninitialized; *PresenceUnknown* - the device presence is unknown; *Present* - the device slot has a device in it; *Subsumed* - the device slot is configured to be part of another device slot. Not applicable for the fan or power supply bays.','0','30d','0','','44223','','','','','200','1','0','','','0','0','0','0','0','0','0','4a9f6da6f67545fb9ed5a8333bd1b303','0','2','0'), ('43988','18','','10534','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Serial number','hpe.synergy.manager["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",serial_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The serial number of the link module.','0','30d','0','','44223','','','','','200','1','0','','','0','0','0','0','0','0','0','1d9ac1bcc74048df8358c148c3ed9ce4','0','2','0'), ('43989','18','','10534','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Spare part number','hpe.synergy.manager["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",spare_part_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The spare part number of the link module.','0','30d','0','','44223','','','','','200','1','0','','','0','0','0','0','0','0','0','c6ee7ec806e04600b6826dbb373bcafe','0','2','0'), ('43990','18','','10534','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Status','hpe.synergy.manager["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",status]','0','31d','365d','0','3','','','','',NULL,'1028','','','0','','','','','2',NULL,'The health status of the link module: *Critical* - requires immediate attention; *Disabled* - the resource is currently not operational; *OK* - indicates normal/informational behavior; *Unknown* - the health status is not yet known or cannot be determined; *Warning* - requires attention soon.','0','30d','0','','44223','','','','','200','1','0','','','0','0','0','0','0','0','0','0f72a6c8e89b4ea0b66bb0becae93bb1','0','2','0'), ('43991','18','','10534','Hypervisor manager [{#NAME}]: State','hpe.synergy.hypervisor_manager["{#NAME}",state]','0','31d','365d','0','3','','','','',NULL,'1029','','','0','','','','','2',NULL,'The current state of the resource. The valid values include Connected, Disconnected, Configuring and Error.','0','30d','0','','44224','','','','','200','1','0','','','0','0','0','0','0','0','0','a60a72ddc0de4a9c9b0b7be53542089c','0','2','0'), ('43992','18','','10534','Hypervisor manager [{#NAME}]: State reason','hpe.synergy.hypervisor_manager["{#NAME}",state_reason]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the reason why the resource is in its current state.','0','30d','0','','44224','','','','','200','1','0','','','0','0','0','0','0','0','0','2f0874b4d0464fc58d64c12a04b8d738','0','2','0'), ('43993','18','','10534','Hypervisor manager [{#NAME}]: Status','hpe.synergy.hypervisor_manager["{#NAME}",status]','0','31d','365d','0','3','','','','',NULL,'1028','','','0','','','','','2',NULL,'The current status of this resource: *Critical* - requires immediate attention; *Disabled* - the resource is currently not operational; *OK* - indicates normal/informational behavior; *Unknown* - the health status is not yet known or cannot be determined; *Warning* - requires attention soon.','0','30d','0','','44224','','','','','200','1','0','','','0','0','0','0','0','0','0','e5ec285a6c74478d903284ecb67d3f96','0','2','0'), ('43994','18','','10534','Interconnect [{#NAME}]: Hardware health','hpe.synergy.interconnect["{#NAME}",hw.health]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The health status of the interconnect hardware.','0','30d','0','','44225','','','','','200','1','0','','','0','0','0','0','0','0','0','dc4822f158da4577a47ec4cf920b9b90','0','2','0'), ('43995','18','','10534','Interconnect [{#NAME}]: Model','hpe.synergy.interconnect["{#NAME}",model]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The interconnect model.','0','30d','0','','44225','','','','','200','1','0','','','0','0','0','0','0','0','0','7113bba95f38421a8bcffe77f9a3944d','0','2','0'), ('43996','18','','10534','Interconnect [{#NAME}]: Part number','hpe.synergy.interconnect["{#NAME}",part_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The part number of the interconnect.','0','30d','0','','44225','','','','','200','1','0','','','0','0','0','0','0','0','0','d3e8fc007d5e4adf899fdb3d0f786fb1','0','2','0'), ('43997','18','','10534','Interconnect [{#NAME}]: Port count','hpe.synergy.interconnect["{#NAME}",port_count]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of ports on the interconnect.','0','30d','0','','44225','','','','','200','1','0','','','0','0','0','0','0','0','0','c2e482f840184c278c09017623fd96d1','0','2','0'), ('43998','18','','10534','Interconnect [{#NAME}]: Serial number','hpe.synergy.interconnect["{#NAME}",serial_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The serial number of the interconnect.','0','30d','0','','44225','','','','','200','1','0','','','0','0','0','0','0','0','0','27e4c424f81940b1958e0455042bf3d3','0','2','0'), ('43999','18','','10534','Interconnect [{#NAME}]: Spare part number','hpe.synergy.interconnect["{#NAME}",spare_part_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The spare part number of the interconnect.','0','30d','0','','44225','','','','','200','1','0','','','0','0','0','0','0','0','0','8232b536d74846d7a90ce19400418a36','0','2','0'), ('44000','18','','10534','Interconnect [{#NAME}]: State','hpe.synergy.interconnect["{#NAME}",state]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current state of the resource.','0','30d','0','','44225','','','','','200','1','0','','','0','0','0','0','0','0','0','bd97faaf4a4c47a1a87d97650d65a375','0','2','0'), ('44001','18','','10534','Interconnect [{#NAME}]: Status','hpe.synergy.interconnect["{#NAME}",status]','0','31d','365d','0','3','','','','',NULL,'1028','','','0','','','','','2',NULL,'The overall health status of the resource. The following are the valid values for the status of the resource: *OK* - indicates normal/informational behavior; *Disabled* - indicates that the resource is not operational; *Warning* - requires attention soon; *Critical* - requires immediate attention; *Unknown* - should be avoided, but there may be rare occasions when the status is unknown.','0','30d','0','','44225','','','','','200','1','0','','','0','0','0','0','0','0','0','ac234400f7324bbea2c736c6f7afd131','0','2','0'), ('44002','18','','10534','Logical enclosure [{#NAME}]: State','hpe.synergy.logical_enclosure["{#NAME}",state]','0','31d','365d','0','3','','','','',NULL,'1031','','','0','','','','','2',NULL,'The current resource state of the logical enclosure: *Consistent* - this is the expected state of the logical enclosure. The logical enclosure configuration is consistent with the enclosure group, and the configuration of the hardware resources is consistent with the logical enclosure configuration; *Creating* - the logical enclosure is being created; *DeleteFailed* - the prior attempt to delete the logical enclosure failed. Retry the delete operation potentially with the force option. No other logical enclosure operations are allowed in this state; *Deleting* - the logical enclosure is being deleted; *Inconsistent* - the configuration of the logical enclosure differs from that of the enclosure group, or the configuration of the hardware resources is inconsistent with the logical enclosure configuration. Perform an Update from group, Reapply configuration, or Update firmware action as an appropriate to bring the configuration back into consistency; *Updating* - configuration changes are being applied to the hardware configuration.','0','30d','0','','44226','','','','','200','1','0','','','0','0','0','0','0','0','0','785f3a94e8614810b7ccc84be779ad1d','0','2','0'), ('44003','18','','10534','Logical enclosure [{#NAME}]: Status','hpe.synergy.logical_enclosure["{#NAME}",status]','0','31d','365d','0','3','','','','',NULL,'1028','','','0','','','','','2',NULL,'The overall health status of the resource. The following are the valid values for the status of the resource: *OK* - indicates normal/informational behavior; *Disabled* - indicates that the resource is not operational; *Warning* - requires attention soon; *Critical* - requires immediate attention; *Unknown* - should be avoided, but there may be rare occasions when the status is unknown.','0','30d','0','','44226','','','','','200','1','0','','','0','0','0','0','0','0','0','0f1e0448aeaf464cb608d576eb42a481','0','2','0'), ('44004','18','','10534','Partition [{#ENCLOSURE_NAME}:{#PARTITION_ID}]: Devices count','hpe.synergy.partition["{#PARTITION_ID}","{#ENCLOSURE_NAME}",device_count]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of blades in the partition.','0','30d','0','','44227','','','','','200','1','0','','','0','0','0','0','0','0','0','8ee334ce899341a8b1292dd84d7b0af4','0','2','0'), ('44005','18','','10534','Partition [{#ENCLOSURE_NAME}:{#PARTITION_ID}]: Health','hpe.synergy.partition["{#PARTITION_ID}","{#ENCLOSURE_NAME}",health]','0','31d','365d','0','3','','','','',NULL,'1035','','','0','','','','','2',NULL,'Indicates the health of the partition and the health of its owned resources (blades and IO bays) as reported by the firmware. If a problem is detected with one of the resources, the health of the partition is reported as Degraded. If all the resources in the partition are operating correctly, the health of the partition is reported as OK. *NparDegrade* - one or more resources in the partition are unhealthy. *NparHealthInvalid* - a partition health is invalid. *NparHealthMax* - a delimiter defined by the firmware. *NparOk* - all the resources in the partition are healthy.','0','30d','0','','44227','','','','','200','1','0','','','0','0','0','0','0','0','0','e090ef309a9a4f8a98d3c5e24bd53d4d','0','2','0'), ('44006','18','','10534','Partition [{#ENCLOSURE_NAME}:{#PARTITION_ID}]: Memory','hpe.synergy.partition["{#PARTITION_ID}","{#ENCLOSURE_NAME}",memory]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total memory of the partition.','0','30d','0','','44227','','','','','200','1','0','','','0','0','0','0','0','0','0','fc5d550b6bdd4e2a891f4faa5e51f792','0','2','0'), ('44007','18','','10534','Partition [{#ENCLOSURE_NAME}:{#PARTITION_ID}]: Processors Count','hpe.synergy.partition["{#PARTITION_ID}","{#ENCLOSURE_NAME}",processor_count]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of processors in the partition.','0','30d','0','','44227','','','','','200','1','0','','','0','0','0','0','0','0','0','b388a6aeae4e4bd4b14b0eb334b67934','0','2','0'), ('44008','18','','10534','Partition [{#ENCLOSURE_NAME}:{#PARTITION_ID}]: Status','hpe.synergy.partition["{#PARTITION_ID}","{#ENCLOSURE_NAME}",status]','0','31d','365d','0','3','','','','',NULL,'1036','','','0','','','','','2',NULL,'Indicates whether the partition has been booted and also indicates its current power state: *ParStatusActive* - a partition is active when a ''poweron'' operation is initiated on the partition and the firmware boot process is started; *ParStatusInactive* - a partition is in an inactive state after it has been created or shut down; *ParStatusInvalid* - a partition status is invalid; *ParStatusManualRepair* - a partition under manual repair; *ParStatusMax* - a delimiter defined by the OA firmware; *ParStatusUndefined* - partition status is undefined; *ParStatusUnknown* - a partition might report an Unknown state after an OA restart. This state is possible when the firmware is not able to identify the correct partition state due to the internal firmware errors at an OA startup. The state is persistent and can only be cleared by force powering off of the partition from the OA. A partition in this state will not accept any partition operation except parstatus and force poweroff. Any active OS instances continue to run unhindered even when the partition is in an unknown state.','0','30d','0','','44227','','','','','200','1','0','','','0','0','0','0','0','0','0','ed4ad1bb9a534b40af4754cf31dc87f9','0','2','0'), ('44009','18','','10534','Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Model','hpe.synergy.power_supply["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",model]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The common descriptive model of the power supply.','0','30d','0','','44228','','','','','200','1','0','','','0','0','0','0','0','0','0','e748215b1d4a404ca0269909d321cdc6','0','2','0'), ('44010','18','','10534','Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Output capacity','hpe.synergy.power_supply["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",output_capacity]','0','31d','365d','0','3','','W','','',NULL,NULL,'','','0','','','','','2',NULL,'The output capacity of the power supply.','0','30d','0','','44228','','','','','200','1','0','','','0','0','0','0','0','0','0','e0ac31d34ab34af383e56fb1c0a9972a','0','2','0'), ('44011','18','','10534','Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Part number','hpe.synergy.power_supply["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",part_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The part number of the power supply.','0','30d','0','','44228','','','','','200','1','0','','','0','0','0','0','0','0','0','98c72f6e11ab4dcba08c82793de9af96','0','2','0'), ('44012','18','','10534','Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Presence','hpe.synergy.power_supply["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",presence]','0','31d','365d','0','3','','','','',NULL,'1026','','','0','','','','','2',NULL,'Indicates whether a power supply is present: *Absent* - the device slot is empty; *PresenceNoOp* - the device slot is uninitialized; *PresenceUnknown* - the device presence is unknown; *Present* - the device slot has a device in it; *Subsumed* - the device slot is configured to be part of another device slot. Not applicable for the fan or power supply bays.','0','30d','0','','44228','','','','','200','1','0','','','0','0','0','0','0','0','0','31cc380acfec455bbb4828d4aeae1ddc','0','2','0'), ('44013','18','','10534','Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Serial number','hpe.synergy.power_supply["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",serial_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The unique serial number of the power supply.','0','30d','0','','44228','','','','','200','1','0','','','0','0','0','0','0','0','0','87ee5abdfdcf41459dd11678469a2fb4','0','2','0'), ('44014','18','','10534','Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Spare part number','hpe.synergy.power_supply["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",spare_part_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The spare part number to be used when ordering an additional or replacement power supply of this type.','0','30d','0','','44228','','','','','200','1','0','','','0','0','0','0','0','0','0','ada2815275ce488f8ec1bc7a4a536681','0','2','0'), ('44015','18','','10534','Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Status','hpe.synergy.power_supply["{#BAY_NUMBER}","{#ENCLOSURE_NAME}",status]','0','31d','365d','0','3','','','','',NULL,'1028','','','0','','','','','2',NULL,'The overall health status of the resource. The following are the valid values for the status of the resource: *OK* - indicates normal/informational behavior; *Disabled* - indicates that the resource is not operational; *Warning* - requires attention soon; *Critical* - requires immediate attention; *Unknown* - should be avoided, but there may be rare occasions when the status is unknown.','0','30d','0','','44228','','','','','200','1','0','','','0','0','0','0','0','0','0','a2c1cf1e0f714e46af414d8c7427d3db','0','2','0'), ('44016','18','','10534','Rack [{#NAME}]: State','hpe.synergy.rack["{#NAME}",state]','0','31d','365d','0','3','','','','',NULL,'1039','','','0','','','','','2',NULL,'The current state of the resource. the valid values include Adding, AddError, Configured, CredentialError, Refreshing, RefreshError, Removing, RemoveError, and Unmanaged.','0','30d','0','','44229','','','','','200','1','0','','','0','0','0','0','0','0','0','921fa76608e4437d961af2409dddde0b','0','2','0'), ('44017','18','','10534','Rack [{#NAME}]: Status','hpe.synergy.rack["{#NAME}",status]','0','31d','365d','0','3','','','','',NULL,'1028','','','0','','','','','2',NULL,'The overall health status of the resource. The following are the valid values for the status of the resource: *OK* - indicates normal/informational behavior; *Disabled* - indicates that the resource is not operational; *Warning* - requires attention soon; *Critical* - requires immediate attention; *Unknown* - should be avoided, but there may be rare occasions when the status is unknown.','0','30d','0','','44229','','','','','200','1','0','','','0','0','0','0','0','0','0','b9473388000e4107b7a419611bc1b81a','0','2','0'), ('44018','18','','10534','Server [{#SERVER_NAME}:{#LOCATION}]: Processor cores count','hpe.synergy.server_hardware.processor["{#LOCATION}",cores_count]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of cores available per processor.','0','30d','0','','44230','','','','','200','1','0','','','0','0','0','0','0','0','0','44f23870429347fb8930669c98ded461','0','2','0'), ('44019','18','','10534','Server [{#SERVER_NAME}:{#LOCATION}]: Processors count','hpe.synergy.server_hardware.processor["{#LOCATION}",count]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of processors installed on this server hardware.','0','30d','0','','44230','','','','','200','1','0','','','0','0','0','0','0','0','0','5c9d2faf103241879fd19b0e18774dbd','0','2','0'), ('44020','18','','10534','Server [{#SERVER_NAME}:{#LOCATION}]: Processor speed','hpe.synergy.server_hardware.processor["{#LOCATION}",speed]','0','31d','365d','0','3','','!MHz','','',NULL,NULL,'','','0','','','','','2',NULL,'The speed of the CPUs.','0','30d','0','','44230','','','','','200','1','0','','','0','0','0','0','0','0','0','dd1e7364fb614b2b9177f92b2ffe42a0','0','2','0'), ('44021','18','','10534','Server [{#SERVER_NAME}:{#LOCATION}]: Processor type','hpe.synergy.server_hardware.processor["{#LOCATION}",type]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The type of the CPU installed on this server hardware.','0','30d','0','','44230','','','','','200','1','0','','','0','0','0','0','0','0','0','a62de8aa573146d1a2118abff9f43245','0','2','0'), ('44022','18','','10534','Server [{#SERVER_NAME}:{#LOCATION}]: Maintenance state','hpe.synergy.server_hardware["{#LOCATION}",maintenance_state]','0','31d','365d','0','3','','','','',NULL,'1032','','','0','','','','','2',NULL,'The maintenance flag of the Server Hardware - disruptive maintenance operations, such as firmware update, can cause many server hardware alerts to be generated in a short period of time. Example: network connectivity is lost or the server reset is detected. When this field is set, predefined alerts for this particular device are suppressed. This field is set only when firmware update is ongoing. The alerts are processed normally once firmware update operation completes. Possible values are Maintenance and Normal.','0','30d','0','','44230','','','','','200','1','0','','','0','0','0','0','0','0','0','67d50f909325417b9c47241cda44aa6b','0','2','0'), ('44023','18','','10534','Server [{#SERVER_NAME}:{#LOCATION}]: Maintenance state reason','hpe.synergy.server_hardware["{#LOCATION}",maintenance_state_reason]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'This field is set to Firmware update when the server is put under maintenance.','0','30d','0','','44230','','','','','200','1','0','','','0','0','0','0','0','0','0','90dc2db2bb6c4a968899ef04b8e2f96e','0','2','0'), ('44024','18','','10534','Server [{#SERVER_NAME}:{#LOCATION}]: Memory','hpe.synergy.server_hardware["{#LOCATION}",memory]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The amount of memory installed on this server hardware.','0','30d','0','','44230','','','','','200','1','0','','','0','0','0','0','0','0','0','7239def772f84acfbfd017e1e835e7c5','0','2','0'), ('44025','18','','10534','Server [{#SERVER_NAME}:{#LOCATION}]: Migration state','hpe.synergy.server_hardware["{#LOCATION}",migration_state]','0','31d','365d','0','3','','','','',NULL,'1034','','','0','','','','','2',NULL,'The state of an ongoing virtual connect manager (VCM) migration: *Migrating* - the enclosure is in the process of migrating from VCM; *NotApplicable* - the enclosure did not require or has already completed the migration; *Unknown* - the migration state is unknown.','0','30d','0','','44230','','','','','200','1','0','','','0','0','0','0','0','0','0','1a3dfc33d4d14d82846197e66550786d','0','2','0'), ('44026','18','','10534','Server [{#SERVER_NAME}:{#LOCATION}]: Model','hpe.synergy.server_hardware["{#LOCATION}",model]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The model string of the full server hardware.','0','30d','0','','44230','','','','','200','1','0','','','0','0','0','0','0','0','0','0b6a9c030b154aa6ae112b809bfaf498','0','2','0'), ('44027','18','','10534','Server [{#SERVER_NAME}:{#LOCATION}]: Part number','hpe.synergy.server_hardware["{#LOCATION}",part_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The part number for this server hardware.','0','30d','0','','44230','','','','','200','1','0','','','0','0','0','0','0','0','0','21edfb42e64e42878cccf66125d28b96','0','2','0'), ('44028','18','','10534','Server [{#SERVER_NAME}:{#LOCATION}]: Power state','hpe.synergy.server_hardware["{#LOCATION}",power_state]','0','31d','365d','0','3','','','','',NULL,'1037','','','0','','','','','2',NULL,'The current power state of the server hardware. The values are Unknown, On, Off, PoweringOn, PoweringOff or Resetting.','0','30d','0','','44230','','','','','200','1','0','','','0','0','0','0','0','0','0','a2c03713255841d38f0152a432920252','0','2','0'), ('44029','18','','10534','Server [{#SERVER_NAME}:{#LOCATION}]: Serial number','hpe.synergy.server_hardware["{#LOCATION}",serial_number]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The serial number of the server hardware.','0','30d','0','','44230','','','','','200','1','0','','','0','0','0','0','0','0','0','eaf38e9c25fb46de8e621220bca8aed5','0','2','0'), ('44030','18','','10534','Server [{#SERVER_NAME}:{#LOCATION}]: State','hpe.synergy.server_hardware["{#LOCATION}",state]','0','31d','365d','0','3','','','','',NULL,'1041','','','0','','','','','2',NULL,'The current resource state of the server hardware. The allowable values are: *Unknown* - not initialized; *Adding* - a server is being added; *NoProfileApplied* - a server successfully added; *Monitored* - a server is being monitored; *Unmanaged* - a discovered and supported server; *Removing* - a server is being removed; *RemoveFailed* - an unsuccessful server removal; *Removed* - a server is successfully removed; *ApplyingProfile* - a server is successfully removed; *ProfileApplied* - a profile is successfully applied; *RemovingProfile* - a profile is being removed; *ProfileError* - an Unsuccessful profile is applied or removed; *Unsupported* - a server model or version is not currently supported by the appliance; *UpdatingFirmware* - a server firmware update is in progress.','0','30d','0','','44230','','','','','200','1','0','','','0','0','0','0','0','0','0','01be2f5f8b594caaab4ec25e3955405e','0','2','0'), ('44031','18','','10534','Server [{#SERVER_NAME}:{#LOCATION}]: State reason','hpe.synergy.server_hardware["{#LOCATION}",state_reason]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The reason for the current resource state of the server hardware. This only applies if the state is Unmanaged, otherwise it is set to NotApplicable. The allowable values are: *Unsupported* - a server model or version is not currently supported by the appliance; *UpdatingFirmware* - a server firmware update is in progress; *NotApplicable* - when PhysicalServerState is anything besides Unmanaged; *NotOwner* - no claim on the server; *Inventory* - a server is added by the PDU; *Unconfigured* - the discovery data is incomplete or an iLO configuration has failed; *UnsupportedFirmware* - an iLO firmware version is below the minimum support level; *Interrupted* - when PhysicalServerState is a result of an operation that was terminated before completing; *CommunicationError* - an appliance cannot communicate with an iLO or an OA.','0','30d','0','','44230','','','','','200','1','0','','','0','0','0','0','0','0','0','4c09bde33af048b7a3d7cfbcaae6ff54','0','2','0'), ('44032','18','','10534','Server [{#SERVER_NAME}:{#LOCATION}]: Status','hpe.synergy.server_hardware["{#LOCATION}",status]','0','31d','365d','0','3','','','','',NULL,'1028','','','0','','','','','2',NULL,'The overall health status of the resource. The following are the valid values for the status of the resource: *OK* - indicates normal/informational behavior; *Disabled* - indicates that the resource is not operational; *Warning* - requires attention soon; *Critical* - requires immediate attention; *Unknown* - should be avoided, but there may be rare occasions when the status is unknown.','0','30d','0','','44230','','','','','200','1','0','','','0','0','0','0','0','0','0','1fec814f88b6400ab70b9a164a25b297','0','2','0'), ('44033','18','','10534','Storage pool [{#NAME}]: Capacity allocated','hpe.synergy.storage.pools.capacity["{#NAME}",allocated]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The capacity allocated from the storage pool in bytes.','0','30d','0','','44231','','','','','200','1','0','','','0','0','0','0','0','0','0','6f21fd88ccdb46ac83cd6a4beba12f95','0','2','0'), ('44034','18','','10534','Storage pool [{#NAME}]: Capacity free','hpe.synergy.storage.pools.capacity["{#NAME}",free]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The free capacity available from the storage pool in bytes.','0','30d','0','','44231','','','','','200','1','0','','','0','0','0','0','0','0','0','e6ffbb837f2945418f200f8d57b8bf39','0','2','0'), ('44035','18','','10534','Storage pool [{#NAME}]: Capacity allocated to snapshots','hpe.synergy.storage.pools.capacity["{#NAME}",snapshot]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The pool capacity allocated to the snapshots in bytes.','0','30d','0','','44231','','','','','200','1','0','','','0','0','0','0','0','0','0','b3f2dc2c62574ead8986ace6751738d0','0','2','0'), ('44036','18','','10534','Storage pool [{#NAME}]: Capacity total','hpe.synergy.storage.pools.capacity["{#NAME}",total]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total capacity of the storage pool in bytes.','0','30d','0','','44231','','','','','200','1','0','','','0','0','0','0','0','0','0','5d172531ae344037a94e23fd5c72165a','0','2','0'), ('44037','18','','10534','Storage pool [{#NAME}]: State','hpe.synergy.storage.pools["{#NAME}",state]','0','31d','365d','0','3','','','','',NULL,'1044','','','0','','','','','2',NULL,'The current state of the resource: *AddFailed* - an attempt to add the resource failed; *Adding* - the resource is in the process of being added; *Configured* - the resource is configured; *Connected* - the appliance has connected to the resource; *Copying* - the resource is in the process of being copied; *CreateFailed* - an attempt to create the resource failed; *Creating* - the resource is in the process of being created; *DeleteFailed* - an attempt to delete the resource failed; *Deleting* - the resource is in the process of being deleted; *Discovered* - the resource has been discovered by the appliance, but it is not managed by the appliance; *Managed* - the resource is managed by the appliance; *Normal* - the resource is in a normal state; *UpdateFailed* - an attempt to update the resource failed; *Updating* - the resource is in the process of being updated.','0','30d','0','','44231','','','','','200','1','0','','','0','0','0','0','0','0','0','52f63554126b4ee0a6fd6efdfea36356','0','2','0'), ('44038','18','','10534','Storage pool [{#NAME}]: Status','hpe.synergy.storage.pools["{#NAME}",status]','0','31d','365d','0','3','','','','',NULL,'1028','','','0','','','','','2',NULL,'The overall health status of the resource. The following are the valid values for the status of the resource: *OK* - indicates normal/informational behavior; *Disabled* - indicates that the resource is not operational; *Warning* - requires attention soon; *Critical* - requires immediate attention; *Unknown* - should be avoided, but there may be rare occasions when the status is unknown.','0','30d','0','','44231','','','','','200','1','0','','','0','0','0','0','0','0','0','9f3c42f517c64f9bb8869617438a9aff','0','2','0'), ('44039','18','','10534','Storage system [{#NAME}]: Capacity allocated','hpe.synergy.storage.system.capacity["{#NAME}",allocated]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The capacity allocated in bytes.','0','30d','0','','44232','','','','','200','1','0','','','0','0','0','0','0','0','0','f1047d18a75f4981a5d1b16ccdafce5b','0','2','0'), ('44040','18','','10534','Storage system [{#NAME}]: Capacity free','hpe.synergy.storage.system.capacity["{#NAME}",free]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The free capacity of the storage system in bytes.','0','30d','0','','44232','','','','','200','1','0','','','0','0','0','0','0','0','0','501b587b1aa14263ac8d77325c8adfd3','0','2','0'), ('44041','18','','10534','Storage system [{#NAME}]: Capacity total','hpe.synergy.storage.system.capacity["{#NAME}",total]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total capacity of the storage system in bytes.','0','30d','0','','44232','','','','','200','1','0','','','0','0','0','0','0','0','0','1ee384a67e0c49b99beaca7c682e7f54','0','2','0'), ('44042','18','','10534','Storage system [{#NAME}]: State','hpe.synergy.storage.system["{#NAME}",state]','0','31d','365d','0','3','','','','',NULL,'1044','','','0','','','','','2',NULL,'The current state of the resource: *AddFailed* - an attempt to add the resource failed; *Adding* - the resource is in the process of being added; *Configured* - the resource is configured; *Connected* - the appliance has connected to the resource; *Copying* - the resource is in the process of being copied; *CreateFailed* - an attempt to create the resource failed; *Creating* - the resource is in the process of being created; *DeleteFailed* - an attempt to delete the resource failed; *Deleting* - the resource is in the process of being deleted; *Discovered* - the resource has been discovered by the appliance, but it is not managed by the appliance; *Managed* - the resource is managed by the appliance; *Normal* - the resource is in a normal state; *UpdateFailed* - an attempt to update the resource failed; *Updating* - the resource is in the process of being updated.','0','30d','0','','44232','','','','','200','1','0','','','0','0','0','0','0','0','0','5de77ea6bd76408792e45e111d46c501','0','2','0'), ('44043','18','','10534','Storage system [{#NAME}]: Status','hpe.synergy.storage.system["{#NAME}",status]','0','31d','365d','0','3','','','','',NULL,'1028','','','0','','','','','2',NULL,'The overall health status of the resource. The following are the valid values for the status of the resource: *OK* - indicates normal/informational behavior; *Disabled* - indicates that the resource is not operational; *Warning* - requires attention soon; *Critical* - requires immediate attention; *Unknown* - should be avoided, but there may be rare occasions when the status is unknown.','0','30d','0','','44232','','','','','200','1','0','','','0','0','0','0','0','0','0','5f9b2be3d232468e98451b380a624ae9','0','2','0'), ('44044','18','','10534','Storage volume [{#NAME}]: Capacity allocated','hpe.synergy.storage.volumes.capacity["{#NAME}",allocated]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The capacity allocated in bytes.','0','30d','0','','44233','','','','','200','1','0','','','0','0','0','0','0','0','0','6c5fcfa5f07e4c07a1a05d6a49e1e5cd','0','2','0'), ('44045','18','','10534','Storage volume [{#NAME}]: Capacity provisioned','hpe.synergy.storage.volumes.capacity["{#NAME}",provisioned]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total provisioned capacity of the volume in bytes.','0','30d','0','','44233','','','','','200','1','0','','','0','0','0','0','0','0','0','67076354bbb34d839c23873898dab4bd','0','2','0'), ('44046','18','','10534','Storage volume [{#NAME}]: State','hpe.synergy.storage.volumes["{#NAME}",state]','0','31d','365d','0','3','','','','',NULL,'1044','','','0','','','','','2',NULL,'The current state of the resource: *AddFailed* - an attempt to add the resource failed; *Adding* - the resource is in the process of being added; *Configured* - the resource is configured; *Connected* - the appliance has connected to the resource; *Copying* - the resource is in the process of being copied; *CreateFailed* - an attempt to create the resource failed; *Creating* - the resource is in the process of being created; *DeleteFailed* - an attempt to delete the resource failed; *Deleting* - the resource is in the process of being deleted; *Discovered* - the resource has been discovered by the appliance, but it is not managed by the appliance; *Managed* - the resource is managed by the appliance; *Normal* - the resource is in a normal state; *UpdateFailed* - an attempt to update the resource failed; *Updating* - the resource is in the process of being updated.','0','30d','0','','44233','','','','','200','1','0','','','0','0','0','0','0','0','0','169c6201cabe48b89ff7591e9112394b','0','2','0'), ('44047','18','','10534','Storage volume [{#NAME}]: Status','hpe.synergy.storage.volumes["{#NAME}",status]','0','31d','365d','0','3','','','','',NULL,'1028','','','0','','','','','2',NULL,'The overall health status of the resource. The following are the valid values for the status of the resource: *OK* - indicates normal/informational behavior; *Disabled* - indicates that the resource is not operational; *Warning* - requires attention soon; *Critical* - requires immediate attention; *Unknown* - should be avoided, but there may be rare occasions when the status is unknown.','0','30d','0','','44233','','','','','200','1','0','','','0','0','0','0','0','0','0','6c9927a095e04feb808c05aa44b672d0','0','2','0'), ('44048','18','','10534','Uplink set [{#NAME}]: State','hpe.synergy.uplink_set["{#NAME}",state]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The current state of the resource.','0','30d','0','','44234','','','','','200','1','0','','','0','0','0','0','0','0','0','be09b2f2848d4143a396a9b0cb945ecc','0','2','0'), ('44049','18','','10534','Uplink set [{#NAME}]: Status','hpe.synergy.uplink_set["{#NAME}",status]','0','31d','365d','0','3','','','','',NULL,'1028','','','0','','','','','2',NULL,'The overall health status of the resource. The following are the valid values for the status of the resource: *OK* - indicates normal/informational behavior; *Disabled* - indicates that the resource is not operational; *Warning* - requires attention soon; *Critical* - requires immediate attention; *Unknown* - should be avoided, but there may be rare occasions when the status is unknown.','0','30d','0','','44234','','','','','200','1','0','','','0','0','0','0','0','0','0','08fe02575307492ea4ad42a6bfa4a2a9','0','2','0'), ('44083','18','','10261','Proxy [{#PROXY.NAME}]: Certificate','zabbix.proxy.cert[{#PROXY.NAME}]','0','31d','365d','0','3','','','','',NULL,'1052','','','0','','','','','2',NULL,'The encryption status for connections from a proxy.','0','30d','0','','44641','','','','','200','1','0','','','0','0','0','0','0','0','0','b1fe4bb454a543a78cfa84810e320b46','0','2','0'), ('44084','18','','10261','Proxy [{#PROXY.NAME}]: Compatibility','zabbix.proxy.compatibility[{#PROXY.NAME}]','0','31d','365d','0','3','','','','',NULL,'1049','','','0','','','','','2',NULL,'Version of proxy compared to Zabbix server version. Possible values: 0 - Undefined; 1 - Current version (proxy and server have the same major version); 2 - Outdated version (proxy version is older than server version, but is partially supported); 3 - Unsupported version (proxy version is older than server previous LTS release version or server major version is older than proxy major version).','0','30d','0','','44641','','','','','200','1','0','','','0','0','0','0','0','0','0','fb38b7fa4daa4ab28338f96d9f903ff8','0','2','0'), ('44085','18','','10261','Proxy [{#PROXY.NAME}]: Compression','zabbix.proxy.compression[{#PROXY.NAME}]','0','31d','365d','0','3','','','','',NULL,'1052','','','0','','','','','2',NULL,'The compression status of a proxy.','0','30d','0','','44641','','','','','200','1','0','','','0','0','0','0','0','0','0','7c5a679fd7a34abca9d70e87150bb682','0','2','0'), ('44086','18','','10261','Proxy [{#PROXY.NAME}]: Host count','zabbix.proxy.hosts[{#PROXY.NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of enabled hosts assigned to a proxy.','0','30d','0','','44641','','','','','200','1','0','','','0','0','0','0','0','0','0','5db51524aa24458eaa1fa318adc77430','0','2','0'), ('44087','18','','10261','Proxy [{#PROXY.NAME}]: Item count','zabbix.proxy.items[{#PROXY.NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of enabled items on enabled hosts assigned to a proxy.','0','30d','0','','44641','','','','','200','1','0','','','0','0','0','0','0','0','0','84c3d0ad89574545b0756a6385c09961','0','2','0'), ('44088','18','','10261','Proxy [{#PROXY.NAME}]: Last seen, in seconds','zabbix.proxy.last_seen[{#PROXY.NAME}]','0','31d','365d','0','0','','','','',NULL,'1050','','','0','','','','','2',NULL,'The time when a proxy was last seen by a server.','0','30d','0','','44641','','','','','200','1','0','','','0','0','0','0','0','0','0','41f1158a246942379cd425bb9293636f','0','2','0'), ('44089','18','','10261','Proxy [{#PROXY.NAME}]: Mode','zabbix.proxy.mode[{#PROXY.NAME}]','0','31d','365d','0','3','','','','',NULL,'1051','','','0','','','','','2',NULL,'The mode of Zabbix proxy.','0','30d','0','','44641','','','','','200','1','0','','','0','0','0','0','0','0','0','56c5b47e6fa444a596db755d60b0cbaa','0','2','0'), ('44090','18','','10261','Proxy [{#PROXY.NAME}]: PSK','zabbix.proxy.psk[{#PROXY.NAME}]','0','31d','365d','0','3','','','','',NULL,'1052','','','0','','','','','2',NULL,'The encryption status for connections from a proxy.','0','30d','0','','44641','','','','','200','1','0','','','0','0','0','0','0','0','0','a3b5f778c9b2450aad72ec97b6a52d50','0','2','0'), ('44091','18','','10261','Proxy [{#PROXY.NAME}]: Required VPS','zabbix.proxy.requiredperformance[{#PROXY.NAME}]','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','2',NULL,'The required performance of a proxy (the number of values that need to be collected per second).','0','30d','0','','44641','','','','','200','1','0','','','0','0','0','0','0','0','0','8f93b4b7a5bc4c8a9a2a0fefdb0d8274','0','2','0'), ('44092','18','','10261','Proxy [{#PROXY.NAME}]: Unencrypted','zabbix.proxy.unencrypted[{#PROXY.NAME}]','0','31d','365d','0','3','','','','',NULL,'1052','','','0','','','','','2',NULL,'The encryption status for connections from a proxy.','0','30d','0','','44641','','','','','200','1','0','','','0','0','0','0','0','0','0','c3b50d734d944d0fbb59b29324e28554','0','2','0'), ('44093','18','','10261','Proxy [{#PROXY.NAME}]: Version','zabbix.proxy.version[{#PROXY.NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'A version of Zabbix proxy.','0','30d','0','','44641','','','','','200','1','0','','','0','0','0','0','0','0','0','6486e23a16ba495d9fc40305425e8010','0','2','0'), ('45077','18','','10570','Quota [{#GCE.QUOTA.NAME}]: Limit','gcp.gce.quota.limit[{#GCE.QUOTA.NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'GCP Compute Engine: The current limit value for [{#GCE.QUOTA.NAME}] quota.','0','30d','0','','45061','','','','','200','1','0','','','0','0','0','0','0','0','0','1e9a772b9a89497ba695079fc480bd0a','0','2','0'), ('45078','18','','10570','Quota [{#GCE.QUOTA.NAME}]: Percentage used','gcp.gce.quota.pused[{#GCE.QUOTA.NAME}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'GCP Compute Engine: Percentage usage for [{#GCE.QUOTA.NAME}] quota.','0','30d','0','','45061','','','','','200','1','0','','','0','0','0','0','0','0','0','6bb3700f7c5c4c51b6a435f5c7d0e315','0','2','0'), ('45079','18','','10570','Quota [{#GCE.QUOTA.NAME}]: Usage','gcp.gce.quota.usage[{#GCE.QUOTA.NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'GCP Compute Engine: The current usage value for [{#GCE.QUOTA.NAME}] quota.','0','30d','0','','45061','','','','','200','1','0','','','0','0','0','0','0','0','0','936c66cc59a240858f67922dcba2cbec','0','2','0'), ('47129','18','','10524','Volume [{#NAME}]: Health','hpe.msa.volumes["{#DURABLE.ID}",health]','0','31d','365d','0','3','','','','',NULL,'983','','','0','','','','','2',NULL,'Volume health status.','0','7d','0','','44120','','','','','200','1','0','','','0','0','0','0','0','0','0','46ab8b0e5feb439c9085e7eb12a6974d','0','2','0'), ('47130','18','','10525','Volume [{#NAME}]: Health','hpe.msa.volumes["{#DURABLE.ID}",health]','0','31d','365d','0','3','','','','',NULL,'994','','','0','','','','','2',NULL,'Volume health status.','0','7d','0','','44146','','','','','200','1','0','','','0','0','0','0','0','0','0','096824dbf7ac4bdba4b0ce5b55c2f53d','0','2','0'), ('47280','18','','10503','Get edges data collection errors','velocloud.get.edges.error','0','31d','0','0','4','','','','',NULL,NULL,'','','0','','','','','0',NULL,'Errors of aggregate script item.','0','7d','0','','47279','','','','','200','1','0','','','0','0','0','0','0','0','0','666afeabcd4747f7aa61c07dfd3e5a78','0','2','0'), ('49365','18','','10660','Proxy [{#PROXY.NAME}]: Certificate','zabbix.proxy.cert[{#PROXY.NAME}]','0','31d','365d','0','3','','','','',NULL,'1379','','','0','','','','','2',NULL,'The encryption status for connections from a proxy.','0','7d','0','','49359','','','','','200','1','0','','','0','0','0','0','0','0','0','8381ffae3f204e788c160dd571faf2cb','0','2','0'), ('49366','18','','10660','Proxy [{#PROXY.NAME}]: Compatibility','zabbix.proxy.compatibility[{#PROXY.NAME}]','0','31d','365d','0','3','','','','',NULL,'1376','','','0','','','','','2',NULL,'Version of proxy compared to Zabbix server version. Possible values: 0 - Undefined; 1 - Current version (proxy and server have the same major version); 2 - Outdated version (proxy version is older than server version, but is partially supported); 3 - Unsupported version (proxy version is older than server previous LTS release version or server major version is older than proxy major version).','0','7d','0','','49359','','','','','200','1','0','','','0','0','0','0','0','0','0','afc3fe7016b440ad8fb99ee80b585267','0','2','0'), ('49367','18','','10660','Proxy [{#PROXY.NAME}]: Compression','zabbix.proxy.compression[{#PROXY.NAME}]','0','31d','365d','0','3','','','','',NULL,'1379','','','0','','','','','2',NULL,'The compression status of a proxy.','0','7d','0','','49359','','','','','200','1','0','','','0','0','0','0','0','0','0','c15ee99bd6fb42bea19e3fb121cfce0d','0','2','0'), ('49368','18','','10660','Proxy [{#PROXY.NAME}]: Host count','zabbix.proxy.hosts[{#PROXY.NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of enabled hosts assigned to a proxy.','0','7d','0','','49359','','','','','200','1','0','','','0','0','0','0','0','0','0','0d9b3aa276cd4629955663d79adffa50','0','2','0'), ('49369','18','','10660','Proxy [{#PROXY.NAME}]: Item count','zabbix.proxy.items[{#PROXY.NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of enabled items on enabled hosts assigned to a proxy.','0','7d','0','','49359','','','','','200','1','0','','','0','0','0','0','0','0','0','05836b0ac4884c69ba8312286017b25d','0','2','0'), ('49370','18','','10660','Proxy [{#PROXY.NAME}]: Last seen, in seconds','zabbix.proxy.last_seen[{#PROXY.NAME}]','0','31d','365d','0','0','','','','',NULL,'1377','','','0','','','','','2',NULL,'The time when a proxy was last seen by a server.','0','7d','0','','49359','','','','','200','1','0','','','0','0','0','0','0','0','0','d2a358737c0d447c906b5156a539c5d5','0','2','0'), ('49371','18','','10660','Proxy [{#PROXY.NAME}]: Mode','zabbix.proxy.mode[{#PROXY.NAME}]','0','31d','365d','0','3','','','','',NULL,'1378','','','0','','','','','2',NULL,'The mode of Zabbix proxy.','0','7d','0','','49359','','','','','200','1','0','','','0','0','0','0','0','0','0','51314d483e444e6c86b3585d1d37b152','0','2','0'), ('49372','18','','10660','Proxy [{#PROXY.NAME}]: PSK','zabbix.proxy.psk[{#PROXY.NAME}]','0','31d','365d','0','3','','','','',NULL,'1379','','','0','','','','','2',NULL,'The encryption status for connections from a proxy.','0','7d','0','','49359','','','','','200','1','0','','','0','0','0','0','0','0','0','712b5cf03d574384abc9c57964157b12','0','2','0'), ('49373','18','','10660','Proxy [{#PROXY.NAME}]: Required VPS','zabbix.proxy.requiredperformance[{#PROXY.NAME}]','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','2',NULL,'The required performance of a proxy (the number of values that need to be collected per second).','0','7d','0','','49359','','','','','200','1','0','','','0','0','0','0','0','0','0','5f4e9356c6e34d178b87cafdfc522e6e','0','2','0'), ('49374','18','','10660','Proxy [{#PROXY.NAME}]: Unencrypted','zabbix.proxy.unencrypted[{#PROXY.NAME}]','0','31d','365d','0','3','','','','',NULL,'1379','','','0','','','','','2',NULL,'The encryption status for connections from a proxy.','0','7d','0','','49359','','','','','200','1','0','','','0','0','0','0','0','0','0','d83316ca1e8e49fdb02385642c749acb','0','2','0'), ('49375','18','','10660','Proxy [{#PROXY.NAME}]: Version','zabbix.proxy.version[{#PROXY.NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'A version of Zabbix proxy.','0','7d','0','','49359','','','','','200','1','0','','','0','0','0','0','0','0','0','47df0dd4f9bf4c49a70ad26ad381c4a4','0','2','0'), ('49376','18','','10661','Proxy [{#PROXY.NAME}]: Certificate','zabbix.proxy.cert[{#PROXY.NAME}]','0','31d','365d','0','3','','','','',NULL,'1386','','','0','','','','','2',NULL,'The encryption status for connections from a proxy.','0','7d','0','','49364','','','','','200','1','0','','','0','0','0','0','0','0','0','2ba040518c6f47689ae14fcbae0be50f','0','2','0'), ('49377','18','','10661','Proxy [{#PROXY.NAME}]: Compatibility','zabbix.proxy.compatibility[{#PROXY.NAME}]','0','31d','365d','0','3','','','','',NULL,'1383','','','0','','','','','2',NULL,'Version of proxy compared to Zabbix server version. Possible values: 0 - Undefined; 1 - Current version (proxy and server have the same major version); 2 - Outdated version (proxy version is older than server version, but is partially supported); 3 - Unsupported version (proxy version is older than server previous LTS release version or server major version is older than proxy major version).','0','7d','0','','49364','','','','','200','1','0','','','0','0','0','0','0','0','0','4364a9257de94337a8f3b646b5a0c64a','0','2','0'), ('49378','18','','10661','Proxy [{#PROXY.NAME}]: Compression','zabbix.proxy.compression[{#PROXY.NAME}]','0','31d','365d','0','3','','','','',NULL,'1386','','','0','','','','','2',NULL,'The compression status of a proxy.','0','7d','0','','49364','','','','','200','1','0','','','0','0','0','0','0','0','0','20dcd000b9fc48b9a82558c51cc32664','0','2','0'), ('49379','18','','10661','Proxy [{#PROXY.NAME}]: Host count','zabbix.proxy.hosts[{#PROXY.NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of enabled hosts assigned to a proxy.','0','7d','0','','49364','','','','','200','1','0','','','0','0','0','0','0','0','0','081329ebe9854457ae4a437e54370063','0','2','0'), ('49380','18','','10661','Proxy [{#PROXY.NAME}]: Item count','zabbix.proxy.items[{#PROXY.NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The number of enabled items on enabled hosts assigned to a proxy.','0','7d','0','','49364','','','','','200','1','0','','','0','0','0','0','0','0','0','23f760b8e7bb4a168c743f9392c78619','0','2','0'), ('49381','18','','10661','Proxy [{#PROXY.NAME}]: Last seen, in seconds','zabbix.proxy.last_seen[{#PROXY.NAME}]','0','31d','365d','0','0','','','','',NULL,'1384','','','0','','','','','2',NULL,'The time when a proxy was last seen by a server.','0','7d','0','','49364','','','','','200','1','0','','','0','0','0','0','0','0','0','75fd83f274174aa39866096801f58b35','0','2','0'), ('49382','18','','10661','Proxy [{#PROXY.NAME}]: Mode','zabbix.proxy.mode[{#PROXY.NAME}]','0','31d','365d','0','3','','','','',NULL,'1385','','','0','','','','','2',NULL,'The mode of Zabbix proxy.','0','7d','0','','49364','','','','','200','1','0','','','0','0','0','0','0','0','0','d11a0ed453644b719b181f7c7da9aed9','0','2','0'), ('49383','18','','10661','Proxy [{#PROXY.NAME}]: PSK','zabbix.proxy.psk[{#PROXY.NAME}]','0','31d','365d','0','3','','','','',NULL,'1386','','','0','','','','','2',NULL,'The encryption status for connections from a proxy.','0','7d','0','','49364','','','','','200','1','0','','','0','0','0','0','0','0','0','7348feaca28843c293b58e8c8dcb4611','0','2','0'), ('49384','18','','10661','Proxy [{#PROXY.NAME}]: Required VPS','zabbix.proxy.requiredperformance[{#PROXY.NAME}]','0','31d','365d','0','0','','!vps','','',NULL,NULL,'','','0','','','','','2',NULL,'The required performance of a proxy (the number of values that need to be collected per second).','0','7d','0','','49364','','','','','200','1','0','','','0','0','0','0','0','0','0','5ee3fb58653a4a228a0d02cd72937b19','0','2','0'), ('49385','18','','10661','Proxy [{#PROXY.NAME}]: Unencrypted','zabbix.proxy.unencrypted[{#PROXY.NAME}]','0','31d','365d','0','3','','','','',NULL,'1386','','','0','','','','','2',NULL,'The encryption status for connections from a proxy.','0','7d','0','','49364','','','','','200','1','0','','','0','0','0','0','0','0','0','04144956e5cd434b8558919e7035a1d8','0','2','0'), ('49386','18','','10661','Proxy [{#PROXY.NAME}]: Version','zabbix.proxy.version[{#PROXY.NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'A version of Zabbix proxy.','0','7d','0','','49364','','','','','200','1','0','','','0','0','0','0','0','0','0','88c2717be026453a8d4a2c10108e5daa','0','2','0'), ('49759','18','','10663','Certificate [{#NAME}]: Common name','purestorage.flasharray.cert.cn[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The common name field listed in the {#NAME} certificate.','0','7d','0','','49739','','','','','200','1','0','','','0','0','0','0','0','0','0','6485116679eb47fbad1bb587da76314c','0','2','0'), ('49760','18','','10663','Certificate [{#NAME}]: Issued by','purestorage.flasharray.cert.issued_by[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the authority or organization that issued the {#NAME} certificate, typically including information such as the name of the Certificate Authority (CA) and its digital signature.','0','7d','0','','49739','','','','','200','1','0','','','0','0','0','0','0','0','0','47d355c8da7f46a69da89cb125a9097c','0','2','0'), ('49761','18','','10663','Certificate [{#NAME}]: Issued to','purestorage.flasharray.cert.issued_to[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the entity which holds the {#NAME} certificate.','0','7d','0','','49739','','','','','200','1','0','','','0','0','0','0','0','0','0','1d3825ea91324e36847187cb2c415120','0','2','0'), ('49762','18','','10663','Certificate [{#NAME}]: Valid from','purestorage.flasharray.cert.valid_from[{#NAME}]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the date and time when the {#NAME} certificate takes effect.','0','7d','0','','49739','','','','','200','1','0','','','0','0','0','0','0','0','0','9f90d24085614389a0e4d9c14139bf3b','0','2','0'), ('49763','18','','10663','Certificate [{#NAME}]: Valid to','purestorage.flasharray.cert.valid_to[{#NAME}]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the expiration date and time of the {#NAME} certificate.','0','7d','0','','49739','','','','','200','1','0','','','0','0','0','0','0','0','0','9d898b8feff04af388deed0465745f50','0','2','0'), ('49764','18','','10663','Controller [{#NAME}]: Model','purestorage.flasharray.ctrl.model[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Model of the {#NAME} controller.','0','7d','0','','49740','','','','','200','1','0','','','0','0','0','0','0','0','0','441c03ccdad4446aabd0785431f20ce3','0','2','0'), ('49765','18','','10663','Controller [{#NAME}]: Mode','purestorage.flasharray.ctrl.mode[{#NAME}]','0','31d','0','0','3','','','','',NULL,'1392','','','0','','','','','2',NULL,'The current mode of the {#NAME} controller.','0','7d','0','','49740','','','','','200','1','0','','','0','0','0','0','0','0','0','2b0b25979941487092faa88bc072b0a6','0','2','0'), ('49766','18','','10663','Controller [{#NAME}]: Serial number','purestorage.flasharray.ctrl.serial[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Serial number of the {#NAME} controller.','0','7d','0','','49740','','','','','200','1','0','','','0','0','0','0','0','0','0','ebee4ac2d44648ab999f18a1b7ee8b85','0','2','0'), ('49767','18','','10663','Controller [{#NAME}]: Status','purestorage.flasharray.ctrl.status[{#NAME}]','0','31d','0','0','3','','','','',NULL,'1393','','','0','','','','','2',NULL,'The current status of the {#NAME} controller.','0','7d','0','','49740','','','','','200','1','0','','','0','0','0','0','0','0','0','e51fe80fdd604e47a0a7d0fd818f15f1','0','2','0'), ('49768','18','','10663','Controller [{#NAME}]: Version','purestorage.flasharray.ctrl.version[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Version of the {#NAME} controller.','0','7d','0','','49740','','','','','200','1','0','','','0','0','0','0','0','0','0','dd63482ca18d48f8840b3db73b997999','0','2','0'), ('49769','18','','10663','Drive [{#NAME}]: Capacity','purestorage.flasharray.drive.capacity[{#NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The capacity of the {#NAME} drive.','0','7d','0','','49741','','','','','200','1','0','','','0','0','0','0','0','0','0','488202a55703418d91483c6ed575c427','0','2','0'), ('49770','18','','10663','Drive [{#NAME}]: Serial number','purestorage.flasharray.drive.serial[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Serial number of the {#NAME} drive device.','0','7d','0','','49741','','','','','200','1','0','','','0','0','0','0','0','0','0','26ed406b5fac46bb98ecccd975ffe8e3','0','2','0'), ('49771','18','','10663','Drive [{#NAME}]: Status','purestorage.flasharray.drive.status[{#NAME}]','0','31d','0','0','3','','','','',NULL,'1394','','','0','','','','','2',NULL,'The current status of the {#NAME} drive.','0','7d','0','','49741','','','','','200','1','0','','','0','0','0','0','0','0','0','272ec36f403e409c80f248e7d37ea4a9','0','2','0'), ('49772','18','','10663','Fan [{#NAME}]: Status','purestorage.flasharray.fan.status[{#NAME}]','0','31d','0','0','3','','','','',NULL,'1395','','','0','','','','','2',NULL,'The current status of the {#NAME} fan.','0','7d','0','','49742','','','','','200','1','0','','','0','0','0','0','0','0','0','8e0821c8b7154bf596d54ba6917d45bc','0','2','0'), ('49773','18','','10663','Host [{#NAME}]: Data reduction','purestorage.flasharray.host.drr[{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The data reduction ratio (DRR) represents the efficiency of data reduction techniques such as compression and deduplication for the {#NAME} host volume.','0','7d','0','','49743','','','','','200','1','0','','','0','0','0','0','0','0','0','cbc03265dea84c6886835ecdbba45559','0','2','0'), ('49774','18','','10663','Host [{#NAME}]: Bytes read per second','purestorage.flasharray.host.read_bytes.rate[{#NAME}]','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bytes read from the {#NAME} host volume per second.','0','7d','0','','49743','','','','','200','1','0','','','0','0','0','0','0','0','0','a8c6bc9697424bd2a9908cdd9d86adc9','0','2','0'), ('49775','18','','10663','Host [{#NAME}]: Read requests per second','purestorage.flasharray.host.read_requests.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of read requests processed on the {#NAME} host volume per second.','0','7d','0','','49743','','','','','200','1','0','','','0','0','0','0','0','0','0','7433871757cc476e9deb0fac5325e173','0','2','0'), ('49776','18','','10663','Host [{#NAME}]: Size','purestorage.flasharray.host.size[{#NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The physical space occupied on the {#NAME} host volume.','0','7d','0','','49743','','','','','200','1','0','','','0','0','0','0','0','0','0','9b0c741b62704bb4926f2d0a9695655f','0','2','0'), ('49777','18','','10663','Host [{#NAME}]: Snapshots size','purestorage.flasharray.host.snapshots_size[{#NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The physical space occupied by snapshots on the {#NAME} host volume.','0','7d','0','','49743','','','','','200','1','0','','','0','0','0','0','0','0','0','d7ddc5432f7440eeaaf8ea629b8ed366','0','2','0'), ('49778','18','','10663','Host [{#NAME}]: Thin provisioning','purestorage.flasharray.host.thin_provisioning[{#NAME}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of sectors in the {#NAME} host volume that do not contain host-written data because the hosts have not written data to them or the sectors have been explicitly trimmed.','0','7d','0','','49743','','','','','200','1','0','','','0','0','0','0','0','0','0','7744894a795c4a1d9aca45c7c02ba069','0','2','0'), ('49779','18','','10663','Host [{#NAME}]: Total data reduction','purestorage.flasharray.host.total_drr[{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total reduction ratio of all data on the {#NAME} host volume that has been processed by the data deduplication and compression engines.','0','7d','0','','49743','','','','','200','1','0','','','0','0','0','0','0','0','0','5b53c068d79a4eb29b6e00b2501e6eae','0','2','0'), ('49780','18','','10663','Host [{#NAME}]: Microseconds per read','purestorage.flasharray.host.usec_per_read[{#NAME}]','0','31d','365d','0','3','','µs','','',NULL,NULL,'','','0','','','','','2',NULL,'Average time in microseconds required to process an I/O read request from the {#NAME} host volume.','0','7d','0','','49743','','','','','200','1','0','','','0','0','0','0','0','0','0','4de2e3ef869a4c859da7bbed84844d2e','0','2','0'), ('49781','18','','10663','Host [{#NAME}]: Microseconds per write','purestorage.flasharray.host.usec_per_write[{#NAME}]','0','31d','365d','0','3','','µs','','',NULL,NULL,'','','0','','','','','2',NULL,'Average time in microseconds required to process an I/O write request to the {#NAME} host volume.','0','7d','0','','49743','','','','','200','1','0','','','0','0','0','0','0','0','0','da26e20fbd06499783569970242d5965','0','2','0'), ('49782','18','','10663','Host [{#NAME}]: Used space','purestorage.flasharray.host.used_space[{#NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total physical space occupied by all data on the {#NAME} host volume.','0','7d','0','','49743','','','','','200','1','0','','','0','0','0','0','0','0','0','d562ce2c6b814a52bb759ff13a115f55','0','2','0'), ('49783','18','','10663','Host [{#NAME}]: Write requests per second','purestorage.flasharray.host.write_requests.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of write requests processed on the {#NAME} host volume per second.','0','7d','0','','49743','','','','','200','1','0','','','0','0','0','0','0','0','0','754e824850d04560ab96ee9227823a2a','0','2','0'), ('49784','18','','10663','Host [{#NAME}]: Bytes written per second','purestorage.flasharray.host.written_bytes.rate[{#NAME}]','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bytes written to the {#NAME} host volume per second.','0','7d','0','','49743','','','','','200','1','0','','','0','0','0','0','0','0','0','25859db2b7a046c7b8993918aedf09d0','0','2','0'), ('49785','18','','10663','Interface [{#IFNAME}]: Gateway','purestorage.flasharray.net_if.gateway[{#IFNAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Represents the IP address of the gateway for the {#IFNAME} interface.','0','7d','0','','49744','','','','','200','1','0','','','0','0','0','0','0','0','0','02c0c2d8c86b4346949e88496d451321','0','2','0'), ('49786','18','','10663','Interface [{#IFNAME}]: IP address','purestorage.flasharray.net_if.ip[{#IFNAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Represents the IP address of the {#IFNAME} interface.','0','7d','0','','49744','','','','','200','1','0','','','0','0','0','0','0','0','0','fd384edb08c140eaa3beddd95271339a','0','2','0'), ('49787','18','','10663','Interface [{#IFNAME}]: MAC address','purestorage.flasharray.net_if.mac[{#IFNAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Represents the MAC address of the {#IFNAME} interface.','0','7d','0','','49744','','','','','200','1','0','','','0','0','0','0','0','0','0','4de3a135121740d1aabc6505cca13a38','0','2','0'), ('49788','18','','10663','Interface [{#IFNAME}]: Speed','purestorage.flasharray.net_if.speed[{#IFNAME}]','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Current bandwidth of the interface.','0','7d','0','','49744','','','','','200','1','0','','','0','0','0','0','0','0','0','414795590ee74d75bbbdab30e1d353d6','0','2','0'), ('49789','18','','10663','Pod [{#NAME}]: Number of arrays','purestorage.flasharray.pod.arrays[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of arrays connected to the {#NAME} pod.','0','7d','0','','49745','','','','','200','1','0','','','0','0','0','0','0','0','0','6149e63e598344e5a6d43e9ec8298e65','0','2','0'), ('49790','18','','10663','Pod [{#NAME}]: Promotion status','purestorage.flasharray.pod.status[{#NAME}]','0','31d','0','0','3','','','','',NULL,'1396','','','0','','','','','2',NULL,'The current promotion status of the {#NAME} pod.','0','7d','0','','49745','','','','','200','1','0','','','0','0','0','0','0','0','0','59e1cdbd663b41c28544ad07d0bb6671','0','2','0'), ('49791','18','','10663','Power supply [{#NAME}]: Model','purestorage.flasharray.power.model[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Model of the {#NAME} power supply component.','0','7d','0','','49746','','','','','200','1','0','','','0','0','0','0','0','0','0','392364b853c84209acf4fbbc4de2fa11','0','2','0'), ('49792','18','','10663','Power supply [{#NAME}]: Serial number','purestorage.flasharray.power.serial[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Serial number of the {#NAME} power supply component.','0','7d','0','','49746','','','','','200','1','0','','','0','0','0','0','0','0','0','749a7f169b814078b60414c5573fb4ef','0','2','0'), ('49793','18','','10663','Power supply [{#NAME}]: Status','purestorage.flasharray.power.status[{#NAME}]','0','31d','0','0','3','','','','',NULL,'1395','','','0','','','','','2',NULL,'The current status of the {#NAME} power supply component.','0','7d','0','','49746','','','','','200','1','0','','','0','0','0','0','0','0','0','22c677efa3cc446fb679cb0299ed628b','0','2','0'), ('49794','18','','10663','Power supply [{#NAME}]: Voltage','purestorage.flasharray.power.value[{#NAME}]','0','31d','365d','0','3','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'The current voltage value of the {#NAME} power supply component.','0','7d','0','','49746','','','','','200','1','0','','','0','0','0','0','0','0','0','5c6d37614d154bf2aaf0802063affe62','0','2','0'), ('49795','18','','10663','Sensor [{#NAME}]: Status','purestorage.flasharray.temp.status[{#NAME}]','0','31d','0','0','3','','','','',NULL,'1395','','','0','','','','','2',NULL,'The current status of the {#NAME} temperature sensor.','0','7d','0','','49747','','','','','200','1','0','','','0','0','0','0','0','0','0','cc4880c2a9ec456abc20ed20049f2c6c','0','2','0'), ('49796','18','','10663','Sensor [{#NAME}]: Temperature','purestorage.flasharray.temp.value[{#NAME}]','0','31d','365d','0','3','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'The current temperature value of the {#NAME} sensor.','0','7d','0','','49747','','','','','200','1','0','','','0','0','0','0','0','0','0','e8fb42ab04fb497c8349934b3c55f11f','0','2','0'), ('49797','18','','10663','Volume [{#NAME}]: Data reduction','purestorage.flasharray.volume.drr[{#SN}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The data reduction ratio (DRR) represents the efficiency of data reduction techniques such as compression and deduplication for the {#NAME} volume.','0','7d','0','','49748','','','','','200','1','0','','','0','0','0','0','0','0','0','5b088eec81d2415687098ee9d32c0a16','0','2','0'), ('49798','18','','10663','Volume [{#NAME}]: Bytes read per second','purestorage.flasharray.volume.read_bytes.rate[{#SN}]','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bytes read from the {#NAME} volume per second.','0','7d','0','','49748','','','','','200','1','0','','','0','0','0','0','0','0','0','a1e03e0dcf544dfdbc9863d856c877de','0','2','0'), ('49799','18','','10663','Volume [{#NAME}]: Read requests per second','purestorage.flasharray.volume.read_requests.rate[{#SN}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of read requests processed on the {#NAME} volume per second.','0','7d','0','','49748','','','','','200','1','0','','','0','0','0','0','0','0','0','0d07b61e01bf483880c31592e242dfa3','0','2','0'), ('49800','18','','10663','Volume [{#NAME}]: Shared space','purestorage.flasharray.volume.shared_space[{#SN}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The physical space occupied by deduplicated data on the {#NAME} volume.','0','7d','0','','49748','','','','','200','1','0','','','0','0','0','0','0','0','0','9216a5ee2b1d4e1097a088da32b8a0fe','0','2','0'), ('49801','18','','10663','Volume [{#NAME}]: Size','purestorage.flasharray.volume.size[{#SN}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The physical space occupied by the {#NAME} volume.','0','7d','0','','49748','','','','','200','1','0','','','0','0','0','0','0','0','0','cb34a64b417c4c439ea412419eac764a','0','2','0'), ('49802','18','','10663','Volume [{#NAME}]: Snapshots size','purestorage.flasharray.volume.snapshots_size[{#SN}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The physical space occupied by snapshots on the {#NAME} volume.','0','7d','0','','49748','','','','','200','1','0','','','0','0','0','0','0','0','0','61504507bf9a441e855d700cba0e30cc','0','2','0'), ('49803','18','','10663','Volume [{#NAME}]: Thin provisioning','purestorage.flasharray.volume.thin_provisioning[{#SN}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of sectors in the {#NAME} volume that do not contain host-written data because the hosts have not written data to them or the sectors have been explicitly trimmed.','0','7d','0','','49748','','','','','200','1','0','','','0','0','0','0','0','0','0','fa48bfa1a9a74d548f9d366242884f34','0','2','0'), ('49804','18','','10663','Volume [{#NAME}]: Total data reduction','purestorage.flasharray.volume.total_drr[{#SN}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total reduction ratio of all data on the {#NAME} volume that has been processed by the data deduplication and compression engines.','0','7d','0','','49748','','','','','200','1','0','','','0','0','0','0','0','0','0','62a73c80f73d46e8b775bcf4aba136e3','0','2','0'), ('49805','18','','10663','Volume [{#NAME}]: Microseconds per read','purestorage.flasharray.volume.usec_per_read[{#SN}]','0','31d','365d','0','3','','µs','','',NULL,NULL,'','','0','','','','','2',NULL,'Average time in microseconds required to process an I/O read request from the {#NAME} volume.','0','7d','0','','49748','','','','','200','1','0','','','0','0','0','0','0','0','0','ece36fe874a54139a91e03c8ddb4dace','0','2','0'), ('49806','18','','10663','Volume [{#NAME}]: Microseconds per write','purestorage.flasharray.volume.usec_per_write[{#SN}]','0','31d','365d','0','3','','µs','','',NULL,NULL,'','','0','','','','','2',NULL,'Average time in microseconds required to process an I/O write request to the {#NAME} volume.','0','7d','0','','49748','','','','','200','1','0','','','0','0','0','0','0','0','0','8e2efef7df844077a6fa66234326af99','0','2','0'), ('49807','18','','10663','Volume [{#NAME}]: Used space','purestorage.flasharray.volume.used_space[{#SN}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total physical space occupied by all data on the {#NAME} volume.','0','7d','0','','49748','','','','','200','1','0','','','0','0','0','0','0','0','0','ada1854c77a1455d89e82c4c551fe29d','0','2','0'), ('49808','18','','10663','Volume [{#NAME}]: Write requests per second','purestorage.flasharray.volume.write_requests.rate[{#SN}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of write requests processed on the {#NAME} volume per second.','0','7d','0','','49748','','','','','200','1','0','','','0','0','0','0','0','0','0','df61b2bb9859455ab3eadee69249daf8','0','2','0'), ('49809','18','','10663','Volume [{#NAME}]: Bytes written per second','purestorage.flasharray.volume.written_bytes.rate[{#SN}]','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bytes written to the {#NAME} volume per second.','0','7d','0','','49748','','','','','200','1','0','','','0','0','0','0','0','0','0','360462b1a04c4bd89296c2b5c1f951a9','0','2','0'), ('49810','18','','10664','Certificate [{#NAME}]: Common name','purestorage.flasharray.cert.cn[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The common name field listed in the {#NAME} certificate.','0','7d','0','','49749','','','','','200','1','0','','','0','0','0','0','0','0','0','05f7ad146f2e49c986dac2e53f334dcc','0','2','0'), ('49811','18','','10664','Certificate [{#NAME}]: Issued by','purestorage.flasharray.cert.issued_by[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the authority or organization that issued the {#NAME} certificate, typically including information such as the name of the Certificate Authority (CA) and its digital signature.','0','7d','0','','49749','','','','','200','1','0','','','0','0','0','0','0','0','0','1094b7082f2a4a09911efe89f179ac72','0','2','0'), ('49812','18','','10664','Certificate [{#NAME}]: Issued to','purestorage.flasharray.cert.issued_to[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the entity which holds the {#NAME} certificate.','0','7d','0','','49749','','','','','200','1','0','','','0','0','0','0','0','0','0','bed40f78214b4e33b285a863504a7685','0','2','0'), ('49813','18','','10664','Certificate [{#NAME}]: Valid from','purestorage.flasharray.cert.valid_from[{#NAME}]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the date and time when the {#NAME} certificate takes effect.','0','7d','0','','49749','','','','','200','1','0','','','0','0','0','0','0','0','0','b9ed0b415de84ca6876814c64cac3b01','0','2','0'), ('49814','18','','10664','Certificate [{#NAME}]: Valid to','purestorage.flasharray.cert.valid_to[{#NAME}]','0','31d','365d','0','3','','unixtime','','',NULL,NULL,'','','0','','','','','2',NULL,'Indicates the expiration date and time of the {#NAME} certificate.','0','7d','0','','49749','','','','','200','1','0','','','0','0','0','0','0','0','0','628acb8886f24ef8b016ab0b86e780ed','0','2','0'), ('49815','18','','10664','Controller [{#NAME}]: Model','purestorage.flasharray.ctrl.model[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Model of the {#NAME} controller.','0','7d','0','','49750','','','','','200','1','0','','','0','0','0','0','0','0','0','e60eb4842e8642e2ba64604ae762ffdd','0','2','0'), ('49816','18','','10664','Controller [{#NAME}]: Mode','purestorage.flasharray.ctrl.mode[{#NAME}]','0','31d','0','0','3','','','','',NULL,'1400','','','0','','','','','2',NULL,'The current mode of the {#NAME} controller.','0','7d','0','','49750','','','','','200','1','0','','','0','0','0','0','0','0','0','fd1b9afb97854beca2505e47e7fe8eda','0','2','0'), ('49817','18','','10664','Controller [{#NAME}]: Serial number','purestorage.flasharray.ctrl.serial[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Serial number of the {#NAME} controller.','0','7d','0','','49750','','','','','200','1','0','','','0','0','0','0','0','0','0','c6f73ffb3b1d4cf1836d1428897b47d7','0','2','0'), ('49818','18','','10664','Controller [{#NAME}]: Status','purestorage.flasharray.ctrl.status[{#NAME}]','0','31d','0','0','3','','','','',NULL,'1401','','','0','','','','','2',NULL,'The current status of the {#NAME} controller.','0','7d','0','','49750','','','','','200','1','0','','','0','0','0','0','0','0','0','05db5a7c7bd5451caca3d039122d6464','0','2','0'), ('49819','18','','10664','Controller [{#NAME}]: Version','purestorage.flasharray.ctrl.version[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Version of the {#NAME} controller.','0','7d','0','','49750','','','','','200','1','0','','','0','0','0','0','0','0','0','a61f7b45f4874f9e84287d88fadd1c64','0','2','0'), ('49820','18','','10664','Drive [{#NAME}]: Capacity','purestorage.flasharray.drive.capacity[{#NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The capacity of the {#NAME} drive.','0','7d','0','','49751','','','','','200','1','0','','','0','0','0','0','0','0','0','00c66aeeacba4d0599986597734d8142','0','2','0'), ('49821','18','','10664','Drive [{#NAME}]: Serial number','purestorage.flasharray.drive.serial[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Serial number of the {#NAME} drive device.','0','7d','0','','49751','','','','','200','1','0','','','0','0','0','0','0','0','0','a374a674bf8143b5b55b518765325755','0','2','0'), ('49822','18','','10664','Drive [{#NAME}]: Status','purestorage.flasharray.drive.status[{#NAME}]','0','31d','0','0','3','','','','',NULL,'1402','','','0','','','','','2',NULL,'The current status of the {#NAME} drive.','0','7d','0','','49751','','','','','200','1','0','','','0','0','0','0','0','0','0','6681fcb1153d41bd9868b8191c3b8c27','0','2','0'), ('49823','18','','10664','Fan [{#NAME}]: Status','purestorage.flasharray.fan.status[{#NAME}]','0','31d','0','0','3','','','','',NULL,'1403','','','0','','','','','2',NULL,'The current status of the {#NAME} fan.','0','7d','0','','49752','','','','','200','1','0','','','0','0','0','0','0','0','0','a4cf2e954a7d481a8fca45ac6c9798c9','0','2','0'), ('49824','18','','10664','Host [{#NAME}]: Data reduction','purestorage.flasharray.host.drr[{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The data reduction ratio (DRR) represents the efficiency of data reduction techniques such as compression and deduplication for the {#NAME} host volume.','0','7d','0','','49753','','','','','200','1','0','','','0','0','0','0','0','0','0','fb4db194933641339a733194b5e1f155','0','2','0'), ('49825','18','','10664','Host [{#NAME}]: Bytes read per second','purestorage.flasharray.host.read_bytes.rate[{#NAME}]','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bytes read from the {#NAME} host volume per second.','0','7d','0','','49753','','','','','200','1','0','','','0','0','0','0','0','0','0','392ba789536a49da97fa75a5773d2998','0','2','0'), ('49826','18','','10664','Host [{#NAME}]: Read requests per second','purestorage.flasharray.host.read_requests.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of read requests processed on the {#NAME} host volume per second.','0','7d','0','','49753','','','','','200','1','0','','','0','0','0','0','0','0','0','a6fa85593cf3461787391586023bf25d','0','2','0'), ('49827','18','','10664','Host [{#NAME}]: Total space provisioned','purestorage.flasharray.host.size[{#NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total provisioned space on the {#NAME} host volume.','0','7d','0','','49753','','','','','200','1','0','','','0','0','0','0','0','0','0','483e877a15e544cb934e3f9fa83a730e','0','2','0'), ('49828','18','','10664','Host [{#NAME}]: Snapshots size','purestorage.flasharray.host.snapshots_size[{#NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The physical space occupied by snapshots on the {#NAME} host volume.','0','7d','0','','49753','','','','','200','1','0','','','0','0','0','0','0','0','0','81148bd701a2428b89ab01bd1cf2df5d','0','2','0'), ('49829','18','','10664','Host [{#NAME}]: Thin provisioning','purestorage.flasharray.host.thin_provisioning[{#NAME}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of sectors in the {#NAME} host volume that do not contain host-written data because the hosts have not written data to them or the sectors have been explicitly trimmed.','0','7d','0','','49753','','','','','200','1','0','','','0','0','0','0','0','0','0','6a02fe11f65a4e518213619a943862a2','0','2','0'), ('49830','18','','10664','Host [{#NAME}]: Total data reduction','purestorage.flasharray.host.total_drr[{#NAME}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total reduction ratio of all data on the {#NAME} host volume that has been processed by the data deduplication and compression engines.','0','7d','0','','49753','','','','','200','1','0','','','0','0','0','0','0','0','0','c93b4fae2b8944648cba49bddc19a90b','0','2','0'), ('49831','18','','10664','Host [{#NAME}]: Microseconds per read','purestorage.flasharray.host.usec_per_read[{#NAME}]','0','31d','365d','0','3','','µs','','',NULL,NULL,'','','0','','','','','2',NULL,'Average time in microseconds required to process an I/O read request from the {#NAME} host volume.','0','7d','0','','49753','','','','','200','1','0','','','0','0','0','0','0','0','0','a801a47f6c024b149f9a7ec6219f0bb7','0','2','0'), ('49832','18','','10664','Host [{#NAME}]: Microseconds per write','purestorage.flasharray.host.usec_per_write[{#NAME}]','0','31d','365d','0','3','','µs','','',NULL,NULL,'','','0','','','','','2',NULL,'Average time in microseconds required to process an I/O write request to the {#NAME} host volume.','0','7d','0','','49753','','','','','200','1','0','','','0','0','0','0','0','0','0','087a2758e25349b38e2fb6bed5754ec1','0','2','0'), ('49833','18','','10664','Host [{#NAME}]: Used space provisioned','purestorage.flasharray.host.used_provisioned[{#NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The provisioned space occupied on the {#NAME} host volume.','0','7d','0','','49753','','','','','200','1','0','','','0','0','0','0','0','0','0','4d7cfbf60b374265aa5434af2292faf3','0','2','0'), ('49834','18','','10664','Host [{#NAME}]: Used space','purestorage.flasharray.host.used_space[{#NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total physical space occupied by all data on the {#NAME} host volume.','0','7d','0','','49753','','','','','200','1','0','','','0','0','0','0','0','0','0','1a03696ee45a42e8a47ae0dc93c5ef0c','0','2','0'), ('49835','18','','10664','Host [{#NAME}]: Write requests per second','purestorage.flasharray.host.write_requests.rate[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of write requests processed on the {#NAME} host volume per second.','0','7d','0','','49753','','','','','200','1','0','','','0','0','0','0','0','0','0','f49de03d39eb48968476a49f50aafd98','0','2','0'), ('49836','18','','10664','Host [{#NAME}]: Bytes written per second','purestorage.flasharray.host.written_bytes.rate[{#NAME}]','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bytes written to the {#NAME} host volume per second.','0','7d','0','','49753','','','','','200','1','0','','','0','0','0','0','0','0','0','a7d478d4eda84ed68a647f0dfe457133','0','2','0'), ('49837','18','','10664','Interface [{#IFNAME}]: Gateway','purestorage.flasharray.net_if.gateway[{#IFNAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Represents the IP address of the gateway for the {#IFNAME} interface.','0','7d','0','','49754','','','','','200','1','0','','','0','0','0','0','0','0','0','ecda1262ed1d416a9a1b4f861aa2891b','0','2','0'), ('49838','18','','10664','Interface [{#IFNAME}]: IP address','purestorage.flasharray.net_if.ip[{#IFNAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Represents the IP address of the {#IFNAME} interface.','0','7d','0','','49754','','','','','200','1','0','','','0','0','0','0','0','0','0','af414daaa51f426d975e609b93980f23','0','2','0'), ('49839','18','','10664','Interface [{#IFNAME}]: MAC address','purestorage.flasharray.net_if.mac[{#IFNAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Represents the MAC address of the {#IFNAME} interface.','0','7d','0','','49754','','','','','200','1','0','','','0','0','0','0','0','0','0','952d14c340c64e518f663508195e26fd','0','2','0'), ('49840','18','','10664','Interface [{#IFNAME}]: Speed','purestorage.flasharray.net_if.speed[{#IFNAME}]','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Current bandwidth of the interface.','0','7d','0','','49754','','','','','200','1','0','','','0','0','0','0','0','0','0','6537197c7d384ea59515fb5c7b50ffca','0','2','0'), ('49841','18','','10664','Pod [{#NAME}]: Number of arrays','purestorage.flasharray.pod.arrays[{#NAME}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of arrays connected to the {#NAME} pod.','0','7d','0','','49755','','','','','200','1','0','','','0','0','0','0','0','0','0','c5ba49fc925144b18696a91b21b731eb','0','2','0'), ('49842','18','','10664','Pod [{#NAME}]: Quota','purestorage.flasharray.pod.quota[{#NAME}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The quota limit of the {#NAME} pod.','0','7d','0','','49755','','','','','200','1','0','','','0','0','0','0','0','0','0','3aa31165ce734f14b2e9c66eaf908262','0','2','0'), ('49843','18','','10664','Pod [{#NAME}]: Status','purestorage.flasharray.pod.status[{#NAME}]','0','31d','0','0','3','','','','',NULL,'1404','','','0','','','','','2',NULL,'The current promotion status of the {#NAME} pod.','0','7d','0','','49755','','','','','200','1','0','','','0','0','0','0','0','0','0','2e8b1130f2814fda958e2793a25493b4','0','2','0'), ('49844','18','','10664','Power supply [{#NAME}]: Model','purestorage.flasharray.power.model[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Model of the {#NAME} power supply component.','0','7d','0','','49756','','','','','200','1','0','','','0','0','0','0','0','0','0','0916fbffa25c4a3290bcf3f19eb1a42c','0','2','0'), ('49845','18','','10664','Power supply [{#NAME}]: Serial number','purestorage.flasharray.power.serial[{#NAME}]','0','31d','0','0','1','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Serial number of the {#NAME} power supply component.','0','7d','0','','49756','','','','','200','1','0','','','0','0','0','0','0','0','0','6d720dd96a014705a7f34fb595ccdece','0','2','0'), ('49846','18','','10664','Power supply [{#NAME}]: Status','purestorage.flasharray.power.status[{#NAME}]','0','31d','0','0','3','','','','',NULL,'1403','','','0','','','','','2',NULL,'The current status of the {#NAME} power supply component.','0','7d','0','','49756','','','','','200','1','0','','','0','0','0','0','0','0','0','a6364f40204545c1aeb9591b032632b5','0','2','0'), ('49847','18','','10664','Power supply [{#NAME}]: Voltage','purestorage.flasharray.power.value[{#NAME}]','0','31d','365d','0','3','','V','','',NULL,NULL,'','','0','','','','','2',NULL,'The current voltage value of the {#NAME} power supply component.','0','7d','0','','49756','','','','','200','1','0','','','0','0','0','0','0','0','0','4fc0212332e44824b15627e436eaba15','0','2','0'), ('49848','18','','10664','Sensor [{#NAME}]: Status','purestorage.flasharray.temp.status[{#NAME}]','0','31d','0','0','3','','','','',NULL,'1403','','','0','','','','','2',NULL,'The current status of the {#NAME} temperature sensor.','0','7d','0','','49757','','','','','200','1','0','','','0','0','0','0','0','0','0','1b57e227c3c64306903c23b989b0f844','0','2','0'), ('49849','18','','10664','Sensor [{#NAME}]: Temperature','purestorage.flasharray.temp.value[{#NAME}]','0','31d','365d','0','3','','°C','','',NULL,NULL,'','','0','','','','','2',NULL,'The current temperature value of the {#NAME} sensor.','0','7d','0','','49757','','','','','200','1','0','','','0','0','0','0','0','0','0','38030ba18a094d1e9a88ac2d3b0797ce','0','2','0'), ('49850','18','','10664','Volume [{#NAME}]: Data reduction','purestorage.flasharray.volume.drr[{#SN}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The data reduction ratio (DRR) represents the efficiency of data reduction techniques such as compression and deduplication for the {#NAME} volume.','0','7d','0','','49758','','','','','200','1','0','','','0','0','0','0','0','0','0','ba307ad50abc4edb8387a10bf10a216e','0','2','0'), ('49851','18','','10664','Volume [{#NAME}]: Provisioned space','purestorage.flasharray.volume.provisioned[{#SN}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total provisioned space on the {#NAME} volume.','0','7d','0','','49758','','','','','200','1','0','','','0','0','0','0','0','0','0','f19e37ab55b74659bf687de050a0d39e','0','2','0'), ('49852','18','','10664','Volume [{#NAME}]: Bytes read per second','purestorage.flasharray.volume.read_bytes.rate[{#SN}]','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bytes read from the {#NAME} volume per second.','0','7d','0','','49758','','','','','200','1','0','','','0','0','0','0','0','0','0','950e7e53d9cc4edb88b64b5a2d2bb21c','0','2','0'), ('49853','18','','10664','Volume [{#NAME}]: Read requests per second','purestorage.flasharray.volume.read_requests.rate[{#SN}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of read requests processed on the {#NAME} volume per second.','0','7d','0','','49758','','','','','200','1','0','','','0','0','0','0','0','0','0','b17ffe15e5c64c8a974374fb3a92ded0','0','2','0'), ('49854','18','','10664','Volume [{#NAME}]: Shared space','purestorage.flasharray.volume.shared_space[{#SN}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The physical space occupied by deduplicated data on the {#NAME} volume.','0','7d','0','','49758','','','','','200','1','0','','','0','0','0','0','0','0','0','af4a7394ae2a4580863b5ebb21908a76','0','2','0'), ('49855','18','','10664','Volume [{#NAME}]: Size','purestorage.flasharray.volume.size[{#SN}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The physical space occupied by the {#NAME} volume.','0','7d','0','','49758','','','','','200','1','0','','','0','0','0','0','0','0','0','06a10478a54b415198055ff1f07f3aaa','0','2','0'), ('49856','18','','10664','Volume [{#NAME}]: Snapshots size','purestorage.flasharray.volume.snapshots_size[{#SN}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The physical space occupied by snapshots on the {#NAME} volume.','0','7d','0','','49758','','','','','200','1','0','','','0','0','0','0','0','0','0','f98e3831e39e47d489336d64d4c843c2','0','2','0'), ('49857','18','','10664','Volume [{#NAME}]: Thin provisioning','purestorage.flasharray.volume.thin_provisioning[{#SN}]','0','31d','365d','0','0','','%','','',NULL,NULL,'','','0','','','','','2',NULL,'The percentage of sectors in the {#NAME} volume that do not contain host-written data because the hosts have not written data to them or the sectors have been explicitly trimmed.','0','7d','0','','49758','','','','','200','1','0','','','0','0','0','0','0','0','0','01588d46fa944fe8b9d12f1673a3cc1d','0','2','0'), ('49858','18','','10664','Volume [{#NAME}]: Total data reduction','purestorage.flasharray.volume.total_drr[{#SN}]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'The total reduction ratio of all data on the {#NAME} volume that has been processed by the data deduplication and compression engines.','0','7d','0','','49758','','','','','200','1','0','','','0','0','0','0','0','0','0','f5c9e9b3d3ef46d0a3ed9f2a27cb6c4b','0','2','0'), ('49859','18','','10664','Volume [{#NAME}]: Microseconds per read','purestorage.flasharray.volume.usec_per_read[{#SN}]','0','31d','365d','0','3','','µs','','',NULL,NULL,'','','0','','','','','2',NULL,'Average time in microseconds required to process an I/O read request from the {#NAME} volume.','0','7d','0','','49758','','','','','200','1','0','','','0','0','0','0','0','0','0','a94cf17619b147db8d4533dafe865eb0','0','2','0'), ('49860','18','','10664','Volume [{#NAME}]: Microseconds per write','purestorage.flasharray.volume.usec_per_write[{#SN}]','0','31d','365d','0','3','','µs','','',NULL,NULL,'','','0','','','','','2',NULL,'Average time in microseconds required to process an I/O write request to the {#NAME} volume.','0','7d','0','','49758','','','','','200','1','0','','','0','0','0','0','0','0','0','108613219eb748c388c3d1a1f59c073e','0','2','0'), ('49861','18','','10664','Volume [{#NAME}]: Used provisioned','purestorage.flasharray.volume.used_provisioned[{#SN}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total provisioned space occupied by all data on the {#NAME} volume.','0','7d','0','','49758','','','','','200','1','0','','','0','0','0','0','0','0','0','714127b92f3f49ac9c91e2c8b34e7db1','0','2','0'), ('49862','18','','10664','Volume [{#NAME}]: Used space','purestorage.flasharray.volume.used_space[{#SN}]','0','31d','365d','0','3','','B','','',NULL,NULL,'','','0','','','','','2',NULL,'The total physical space occupied by all data on the {#NAME} volume.','0','7d','0','','49758','','','','','200','1','0','','','0','0','0','0','0','0','0','68d0c19d00a147dd8f005e93c4d6deb0','0','2','0'), ('49863','18','','10664','Volume [{#NAME}]: Write requests per second','purestorage.flasharray.volume.write_requests.rate[{#SN}]','0','31d','365d','0','3','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of write requests processed on the {#NAME} volume per second.','0','7d','0','','49758','','','','','200','1','0','','','0','0','0','0','0','0','0','a1562e3e8fb7443cac236755ead8a811','0','2','0'), ('49864','18','','10664','Volume [{#NAME}]: Bytes written per second','purestorage.flasharray.volume.written_bytes.rate[{#SN}]','0','31d','365d','0','3','','Bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of bytes written to the {#NAME} volume per second.','0','7d','0','','49758','','','','','200','1','0','','','0','0','0','0','0','0','0','d88ebbbf982c4d678bc4298c7bd445b1','0','2','0'), ('49994','18','','10667','Interface [{#NAME}][{#DESCR}]: Dropped packets','cisco.ftd.interface.drop.packets["{#NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Number of dropped packets per second `{#NAME}` interface.','0','7d','0','','49986','','','','','200','1','0','','','0','0','0','0','0','0','0','c23c19d990ca4813abd843d03a63bf14','0','2','0'), ('49995','18','','10667','Interface [{#NAME}][{#DESCR}]: Input errors','cisco.ftd.interface.input.errors["{#NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Input errors `{#NAME}` interface.','0','7d','0','','49986','','','','','200','1','0','','','0','0','0','0','0','0','0','e22680cc81e248008c0cc22ee7dc79ba','0','2','0'), ('49996','18','','10667','Interface [{#NAME}][{#DESCR}]: Input packets','cisco.ftd.interface.input.packets["{#NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Input packets `{#NAME}` interface.','0','7d','0','','49986','','','','','200','1','0','','','0','0','0','0','0','0','0','8d153f59b49e4f17acce290543edb0c9','0','2','0'), ('49997','18','','10667','Interface [{#NAME}][{#DESCR}]: Outgoing traffic','cisco.ftd.interface.out.traffic["{#NAME}"]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Outgoing traffic `{#NAME}` interface.','0','7d','0','','49986','','','','','200','1','0','','','0','0','0','0','0','0','0','e13c67805d8f49b8a2f884dfee2065ce','0','2','0'), ('49998','18','','10667','Interface [{#NAME}][{#DESCR}]: Output errors','cisco.ftd.interface.output.errors["{#NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Output errors `{#NAME}` interface.','0','7d','0','','49986','','','','','200','1','0','','','0','0','0','0','0','0','0','17687d65543e45dc92f058eed2ea5b33','0','2','0'), ('49999','18','','10667','Interface [{#NAME}][{#DESCR}]: Output packets','cisco.ftd.interface.output.packets["{#NAME}"]','0','31d','365d','0','0','','','','',NULL,NULL,'','','0','','','','','2',NULL,'Output packets `{#NAME}` interface.','0','7d','0','','49986','','','','','200','1','0','','','0','0','0','0','0','0','0','2feeaafb8a9844b7b99c45cb5d8a0d6a','0','2','0'), ('50000','18','','10667','Interface [{#NAME}][{#DESCR}]: Status','cisco.ftd.interface.status["{#NAME}"]','0','31d','365d','0','0','','','','',NULL,'1408','','','0','','','','','2',NULL,'Status `{#NAME}` interface.','0','7d','0','','49986','','','','','200','1','0','','','0','0','0','0','0','0','0','4c1364b2ee22411a93e4c093842ac953','0','2','0'), ('50001','18','','10667','Interface [{#NAME}][{#DESCR}]: Incoming traffic','cisco.ftd.net.if.in.traffic["{#NAME}"]','0','31d','365d','0','3','','bps','','',NULL,NULL,'','','0','','','','','2',NULL,'Input traffic `{#NAME}` interface.','0','7d','0','','49986','','','','','200','1','0','','','0','0','0','0','0','0','0','c1f73a16a8614122ae7e255ece2d7017','0','2','0'); INSERT INTO items (itemid,type,snmp_oid,hostid,name,key_,delay,history,trends,status,value_type,trapper_hosts,units,formula,logtimefmt,templateid,valuemapid,params,ipmi_sensor,authtype,username,password,publickey,privatekey,flags,interfaceid,description,inventory_link,lifetime,evaltype,jmx_endpoint,master_itemid,timeout,url,query_fields,posts,status_codes,follow_redirects,post_type,http_proxy,headers,retrieve_mode,request_method,output_format,verify_peer,verify_host,allow_traps,discover,uuid,lifetime_type,enabled_lifetime_type,enabled_lifetime) VALUES ('10073','5','','10084','Number of processed numeric (float) values per second','zabbix[wcache,values,float]','1m','31d','365d','0','0','','!vps','','','10061',NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed numeric (float) values.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('10074','5','','10084','Number of processed character values per second','zabbix[wcache,values,str]','1m','31d','365d','0','0','','!vps','','','10062',NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed character values.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('10075','5','','10084','Number of processed log values per second','zabbix[wcache,values,log]','1m','31d','365d','0','0','','!vps','','','10063',NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed log values.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('10076','5','','10084','Number of processed numeric (unsigned) values per second','zabbix[wcache,values,uint]','1m','31d','365d','0','0','','!vps','','','10064',NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed numeric (unsigned) values.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('10077','5','','10084','Number of processed text values per second','zabbix[wcache,values,text]','1m','31d','365d','0','0','','!vps','','','10065',NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of processed text values.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('10078','5','','10084','Number of processed not supported values per second','zabbix[wcache,values,not supported]','1m','31d','365d','0','0','','!vps','','','10066',NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The number of times the item processing resulted in an item becoming unsupported or remaining in that state.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('23252','5','','10084','Utilization of alerter internal processes, in %','zabbix[process,alerter,avg,busy]','1m','31d','365d','0','0','','%','','','22424',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the alerter processes have been busy for the last minute.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('23253','5','','10084','Utilization of configuration syncer internal processes, in %','zabbix[process,configuration syncer,avg,busy]','1m','31d','365d','0','0','','%','','','22412',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the configuration syncer processes have been busy for the last minute.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('23256','5','','10084','Utilization of escalator internal processes, in %','zabbix[process,escalator,avg,busy]','1m','31d','365d','0','0','','%','','','22422',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the escalator processes have been busy for the last minute.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('23257','5','','10084','Utilization of history syncer internal processes, in %','zabbix[process,history syncer,avg,busy]','1m','31d','365d','0','0','','%','','','22406',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the history syncer processes have been busy for the last minute.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('23258','5','','10084','Utilization of housekeeper internal processes, in %','zabbix[process,housekeeper,avg,busy]','1m','31d','365d','0','0','','%','','','22408',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the housekeeper processes have been busy for the last minute.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('23259','5','','10084','Utilization of http poller data collector processes, in %','zabbix[process,http poller,avg,busy]','1m','31d','365d','0','0','','%','','','22402',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the http poller processes have been busy for the last minute.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('23260','5','','10084','Utilization of icmp pinger data collector processes, in %','zabbix[process,icmp pinger,avg,busy]','1m','31d','365d','0','0','','%','','','22418',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the icmp pinger processes have been busy for the last minute.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('23261','5','','10084','Utilization of ipmi poller data collector processes, in %','zabbix[process,ipmi poller,avg,busy]','1m','31d','365d','0','0','','%','','','22416',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the ipmi poller processes have been busy for the last minute.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('23262','5','','10084','Utilization of java poller data collector processes, in %','zabbix[process,java poller,avg,busy]','1m','31d','365d','0','0','','%','','','22689',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the java poller processes have been busy for the last minute.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('23264','5','','10084','Utilization of poller data collector processes, in %','zabbix[process,poller,avg,busy]','1m','31d','365d','0','0','','%','','','22399',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the poller processes have been busy for the last minute.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('23265','5','','10084','Utilization of proxy poller data collector processes, in %','zabbix[process,proxy poller,avg,busy]','1m','31d','365d','0','0','','%','','','22420',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the proxy poller processes have been busy for the last minute.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('23266','5','','10084','Utilization of self-monitoring internal processes, in %','zabbix[process,self-monitoring,avg,busy]','1m','31d','365d','0','0','','%','','','22414',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the self-monitoring processes have been busy for the last minute.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('23267','5','','10084','Utilization of snmp trapper data collector processes, in %','zabbix[process,snmp trapper,avg,busy]','1m','31d','365d','0','0','','%','','','23171',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the snmp trapper processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('23268','5','','10084','Utilization of timer internal processes, in %','zabbix[process,timer,avg,busy]','1m','31d','365d','0','0','','%','','','22426',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the timer processes have been busy for the last minute.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('23269','5','','10084','Utilization of trapper data collector processes, in %','zabbix[process,trapper,avg,busy]','1m','31d','365d','0','0','','%','','','22404',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the trapper processes have been busy for the last minute.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('23270','5','','10084','Utilization of unreachable poller data collector processes, in %','zabbix[process,unreachable poller,avg,busy]','1m','31d','365d','0','0','','%','','','22400',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the unreachable poller processes have been busy for the last minute.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('23271','5','','10084','Queue over 10 minutes','zabbix[queue,10m]','1m','31d','365d','0','3','','','','','22219',NULL,'','','0','','','','','0',NULL,'The number of monitored items in the queue that are delayed by at least 10 minutes.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('23272','5','','10084','Queue','zabbix[queue]','1m','31d','365d','0','3','','','','','23251',NULL,'','','0','','','','','0',NULL,'The number of monitored items in the queue that are delayed by at least 6 seconds.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('23273','5','','10084','Configuration cache, % used','zabbix[rcache,buffer,pused]','1m','31d','365d','0','0','','%','','','22189',NULL,'','','0','','','','','0',NULL,'The availability statistics of Zabbix configuration cache. The percentage of used data buffer.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('23274','5','','10084','History write cache, % used','zabbix[wcache,history,pused]','1m','31d','365d','0','0','','%','','','22183',NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The percentage of used history buffer. The history cache is used to store item values. A high number indicates database performance problems.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('23275','5','','10084','History index cache, % used','zabbix[wcache,index,pused]','1m','31d','365d','0','0','','%','','','22396',NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The percentage of used history index buffer. The history index cache is used to index values stored in the history cache.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('23276','5','','10084','Trend write cache, % used','zabbix[wcache,trend,pused]','1m','31d','365d','0','0','','%','','','22185',NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The percentage of used trend buffer. The trend cache stores the aggregate of all items that have received data for the current hour.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('23277','5','','10084','Number of processed values per second','zabbix[wcache,values]','1m','31d','365d','0','0','','!vps','','','22187',NULL,'','','0','','','','','0',NULL,'The statistics and availability of Zabbix write cache. The total number of values processed by Zabbix server or Zabbix proxy, except unsupported items.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('23328','5','','10084','Utilization of vmware collector data collector processes, in %','zabbix[process,vmware collector,avg,busy]','1m','31d','365d','0','0','','%','','','22401',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the vmware collector processes have been busy for the last minute.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('23620','5','','10084','Value cache, % used','zabbix[vcache,buffer,pused]','1m','31d','365d','0','0','','%','','','22191',NULL,'','','0','','','','','0',NULL,'The availability statistics of Zabbix value cache. The percentage of used data buffer.','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('23625','5','','10084','Value cache hits','zabbix[vcache,cache,hits]','1m','31d','365d','0','0','','!vps','','','22196',NULL,'','','0','','','','','0',NULL,'The effectiveness statistics of Zabbix value cache. The number of cache hits (history values taken from the cache).','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('23628','5','','10084','Value cache misses','zabbix[vcache,cache,misses]','1m','31d','365d','0','0','','!vps','','','22199',NULL,'','','0','','','','','0',NULL,'The effectiveness statistics of Zabbix value cache. The number of cache misses (history values taken from the database).','0','0','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('23635','5','','10084','VMware cache, % used','zabbix[vmware,buffer,pused]','1m','31d','365d','0','0','','%','','','23634',NULL,'','','0','','','','','0',NULL,'The availability statistics of Zabbix vmware cache. The percentage of used data buffer.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('23662','5','','10084','Value cache operating mode','zabbix[vcache,cache,mode]','1m','31d','365d','0','3','','!vps','','','23661','55','','','0','','','','','0',NULL,'The operating mode of the value cache.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('23664','5','','10084','Utilization of task manager internal processes, in %','zabbix[process,task manager,avg,busy]','1m','31d','365d','0','0','','%','','','23663',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the task manager processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('25367','5','','10084','Utilization of ipmi manager internal processes, in %','zabbix[process,ipmi manager,avg,busy]','1m','31d','365d','0','0','','%','','','25366',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the ipmi manager processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('25371','5','','10084','Utilization of alert manager internal processes, in %','zabbix[process,alert manager,avg,busy]','1m','31d','365d','0','0','','%','','','25370',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the alert manager processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('25667','5','','10084','Utilization of preprocessing manager internal processes, in %','zabbix[process,preprocessing manager,avg,busy]','1m','31d','365d','0','0','','%','','','25665',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the preprocessing manager processes have been busy for the last minute.','0','30','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('25668','5','','10084','Utilization of preprocessing worker internal processes, in %','zabbix[process,preprocessing worker,avg,busy]','1m','31d','365d','0','0','','%','','','25666',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the preprocessing worker processes have been busy for the last minute.','0','30','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('28534','5','','10084','LLD queue','zabbix[lld_queue]','1m','31d','365d','0','3','','','','','28533',NULL,'','','0','','','','','0',NULL,'The number of values enqueued in the low-level discovery processing queue.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('28536','5','','10084','Utilization of LLD manager internal processes, in %','zabbix[process,lld manager,avg,busy]','1m','31d','365d','0','0','','%','','','28535',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the LLD manager processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('28538','5','','10084','Utilization of LLD worker internal processes, in %','zabbix[process,lld worker,avg,busy]','1m','31d','365d','0','0','','%','','','28537',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the LLD worker processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('29823','5','','10084','Utilization of alert syncer internal processes, in %','zabbix[process,alert syncer,avg,busy]','1m','31d','365d','0','0','','%','','','29822',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the alert syncer processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('33024','5','','10084','Trend function cache, % of unique requests','zabbix[tcache,cache,pitems]','1m','31d','365d','0','0','','%','','','33020',NULL,'','','0','','','','','0',NULL,'The effectiveness statistics of the Zabbix trend function cache. The percentage of cached items calculated from the sum of the cached items plus requests. A low percentage most likely means that the cache size can be reduced.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('33025','5','','10084','Trend function cache, % of misses','zabbix[tcache,cache,pmisses]','1m','31d','365d','0','0','','%','','','33021',NULL,'','','0','','','','','0',NULL,'The effectiveness statistics of the Zabbix trend function cache. The percentage of cache misses.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('33026','5','','10084','Utilization of availability manager internal processes, in %','zabbix[process,availability manager,avg,busy]','1m','31d','365d','0','0','','%','','','33022',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the availability manager processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('33027','5','','10084','Utilization of history poller internal processes, in %','zabbix[process,history poller,avg,busy]','1m','31d','365d','0','0','','%','','','33023',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the history poller processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('34318','5','','10084','Utilization of report writer internal processes, in %','zabbix[process,report writer,avg,busy]','1m','31d','365d','0','0','','%','','','34316',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the report writer processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('34319','5','','10084','Utilization of report manager internal processes, in %','zabbix[process,report manager,avg,busy]','1m','31d','365d','0','0','','%','','','34317',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the report manager processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('35275','5','','10084','Utilization of trigger housekeeper internal processes, in %','zabbix[process,trigger housekeeper,avg,busy]','1m','31d','365d','0','0','','%','','','35272',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the trigger housekeeper processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('35276','5','','10084','Version','zabbix[version]','1m','31d','0','0','1','','','','','35273',NULL,'','','0','','','','','0',NULL,'The version of Zabbix server.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('35277','5','','10084','Utilization of service manager internal processes, in %','zabbix[process,service manager,avg,busy]','1m','31d','365d','0','0','','%','','','35274',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the service manager processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('39805','5','','10084','Zabbix stats cluster','zabbix[cluster,discovery,nodes]','1m','0','0','0','4','','','','','39804',NULL,'','','0','','','','','0',NULL,'The master item of Zabbix cluster statistics.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('39823','5','','10084','Utilization of ODBC poller data collector processes, in %','zabbix[process,odbc poller,avg,busy]','1m','31d','365d','0','0','','%','','','39822',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the ODBC poller processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42227','0','','10084','Host name of Zabbix agent running','agent.hostname','1h','31d','0','0','1','','','','','42187',NULL,'','','0','','','','','0','1','','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42228','0','','10084','Free swap space','system.swap.size[,free]','1m','31d','365d','0','3','','B','','','42188',NULL,'','','0','','','','','0','1','The free space of the swap volume/file expressed in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42229','0','','10084','CPU system time','system.cpu.util[,system]','1m','31d','365d','0','0','','%','','','42189',NULL,'','','0','','','','','0','1','Time the CPU has spent running the kernel and its processes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42230','0','','10084','CPU user time','system.cpu.util[,user]','1m','31d','365d','0','0','','%','','','42190',NULL,'','','0','','','','','0','1','Time the CPU has spent running users'' processes that are not niced.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42231','0','','10084','System name','system.hostname','1h','31d','0','0','1','','','','','42191',NULL,'','','0','','','','','0','1','The host name of the system.','3','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42232','0','','10084','System local time','system.localtime','1m','31d','365d','0','3','','unixtime','','','42192',NULL,'','','0','','','','','0','1','The local system time of the host.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42233','0','','10084','Operating system architecture','system.sw.arch','1h','31d','0','0','1','','','','','42193',NULL,'','','0','','','','','0','1','The architecture of the operating system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42234','0','','10084','Operating system','system.sw.os','1h','31d','0','0','1','','','','','42194',NULL,'','','0','','','','','0','1','','5','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42235','0','','10084','Number of installed packages','system.sw.packages.get','1h','31d','365d','0','3','','','','','42195',NULL,'','','0','','','','','0','1','','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42236','0','','10084','Free swap space in %','system.swap.size[,pfree]','1m','31d','365d','0','0','','%','','','42196',NULL,'','','0','','','','','0','1','The free space of the swap volume/file expressed in %.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42237','0','','10084','Zabbix agent ping','agent.ping','1m','31d','365d','0','3','','','','','42197','908','','','0','','','','','0','1','The agent always returns "1" for this item. May be used in combination with `nodata()` for the availability check.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42238','0','','10084','Total swap space','system.swap.size[,total]','1m','31d','365d','0','3','','B','','','42198',NULL,'','','0','','','','','0','1','The total space of the swap volume/file expressed in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42239','0','','10084','System description','system.uname','15m','31d','0','0','1','','','','','42199',NULL,'','','0','','','','','0','1','The information as normally returned by `uname -a`.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42240','0','','10084','System uptime','system.uptime','30s','31d','0','0','3','','uptime','','','42200',NULL,'','','0','','','','','0','1','The system uptime expressed in the following format: "N days, hh:mm:ss".','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42241','0','','10084','Number of logged in users','system.users.num','1m','31d','365d','0','3','','','','','42201',NULL,'','','0','','','','','0','1','The number of users who are currently logged in.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42242','0','','10084','Checksum of /etc/passwd','vfs.file.cksum[/etc/passwd,sha256]','15m','31d','0','0','1','','','','','42202',NULL,'','','0','','','','','0','1','','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42243','0','','10084','Available memory','vm.memory.size[available]','1m','31d','365d','0','3','','B','','','42203',NULL,'','','0','','','','','0','1','The available memory: - in Linux = free + buffers + cache; - on other platforms calculation may vary. See also Appendixes in Zabbix Documentation about parameters of the `vm.memory.size` item.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42244','0','','10084','Available memory in %','vm.memory.size[pavailable]','1m','31d','365d','0','0','','%','','','42204',NULL,'','','0','','','','','0','1','The available memory as percentage of the total. See also Appendixes in Zabbix Documentation about parameters of the `vm.memory.size` item.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42245','0','','10084','Total memory','vm.memory.size[total]','1m','31d','365d','0','3','','B','','','42205',NULL,'','','0','','','','','0','1','Total memory expressed in bytes.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42246','0','','10084','CPU steal time','system.cpu.util[,steal]','1m','31d','365d','0','0','','%','','','42206',NULL,'','','0','','','','','0','1','The amount of "stolen" CPU from this virtual machine by the hypervisor for other tasks, such as running another virtual machine.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42247','0','','10084','CPU softirq time','system.cpu.util[,softirq]','1m','31d','365d','0','0','','%','','','42207',NULL,'','','0','','','','','0','1','Time the CPU has been servicing software interrupts.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42248','0','','10084','CPU nice time','system.cpu.util[,nice]','1m','31d','365d','0','0','','%','','','42208',NULL,'','','0','','','','','0','1','Time the CPU has spent running users'' processes that have been niced.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42249','0','','10084','Load average (1m avg)','system.cpu.load[all,avg1]','1m','31d','365d','0','0','','','','','42209',NULL,'','','0','','','','','0','1','Calculated as the system CPU load divided by the number of CPU cores.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42250','0','','10084','Version of Zabbix agent running','agent.version','1h','31d','0','0','1','','','','','42210',NULL,'','','0','','','','','0','1','','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42251','0','','10084','Maximum number of open file descriptors','kernel.maxfiles','1h','31d','365d','0','3','','','','','42211',NULL,'','','0','','','','','0','1','May be increased by using the `sysctl` utility or modifying the file `/etc/sysctl.conf`.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42252','0','','10084','Maximum number of processes','kernel.maxproc','1h','31d','365d','0','3','','','','','42212',NULL,'','','0','','','','','0','1','May be increased by using the `sysctl` utility or modifying the file `/etc/sysctl.conf`.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42253','0','','10084','Number of processes','proc.num','1m','31d','365d','0','3','','','','','42213',NULL,'','','0','','','','','0','1','','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42254','0','','10084','Number of running processes','proc.num[,,run]','1m','31d','365d','0','3','','','','','42214',NULL,'','','0','','','','','0','1','','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42255','0','','10084','System boot time','system.boottime','15m','31d','365d','0','3','','unixtime','','','42215',NULL,'','','0','','','','','0','1','','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42256','0','','10084','Interrupts per second','system.cpu.intr','1m','31d','365d','0','0','','','','','42216',NULL,'','','0','','','','','0','1','Number of interrupts processed.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42257','0','','10084','Load average (5m avg)','system.cpu.load[all,avg5]','1m','31d','365d','0','0','','','','','42217',NULL,'','','0','','','','','0','1','Calculated as the system CPU load divided by the number of CPU cores.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42258','0','','10084','CPU iowait time','system.cpu.util[,iowait]','1m','31d','365d','0','0','','%','','','42218',NULL,'','','0','','','','','0','1','Time the CPU has been waiting for I/O to complete.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42259','0','','10084','Load average (15m avg)','system.cpu.load[all,avg15]','1m','31d','365d','0','0','','','','','42219',NULL,'','','0','','','','','0','1','Calculated as the system CPU load divided by the number of CPU cores.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42260','0','','10084','Number of CPUs','system.cpu.num','1m','31d','365d','0','3','','','','','42220',NULL,'','','0','','','','','0','1','','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42261','0','','10084','Context switches per second','system.cpu.switches','1m','31d','365d','0','0','','','','','42221',NULL,'','','0','','','','','0','1','The combined rate at which all processors on the computer are switched from one thread to another.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42262','0','','10084','CPU guest time','system.cpu.util[,guest]','1m','31d','365d','0','0','','%','','','42222',NULL,'','','0','','','','','0','1','Time spent on running a virtual CPU for a guest operating system.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42263','0','','10084','CPU guest nice time','system.cpu.util[,guest_nice]','1m','31d','365d','0','0','','%','','','42223',NULL,'','','0','','','','','0','1','Time spent on running a niced guest (a virtual CPU for guest operating systems under the control of the Linux kernel).','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42264','0','','10084','CPU idle time','system.cpu.util[,idle]','1m','31d','365d','0','0','','%','','','42224',NULL,'','','0','','','','','0','1','Time the CPU has spent doing nothing.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42265','0','','10084','CPU interrupt time','system.cpu.util[,interrupt]','1m','31d','365d','0','0','','%','','','42225',NULL,'','','0','','','','','0','1','Time the CPU has spent servicing hardware interrupts.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42266','5','','10084','Zabbix agent availability','zabbix[host,agent,available]','1m','31d','365d','0','3','','','','','42226','907','','','0','','','','','0',NULL,'Used for monitoring the availability status of the agent.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42274','0','','10084','Network interface discovery','net.if.discovery','1h','90d','0','0','4','','','','','42271',NULL,'','','0','','','','','1','1','The discovery of network interfaces.','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42275','0','','10084','Block devices discovery','vfs.dev.discovery','1h','90d','0','0','4','','','','','42272',NULL,'','','0','','','','','1','1','','0','7d','1','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42292','0','','10084','Interface {#IFNAME}: Inbound packets discarded','net.if.in["{#IFNAME}",dropped]','3m','31d','365d','0','3','','','','','42277',NULL,'','','0','','','','','2','1','','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42293','0','','10084','Interface {#IFNAME}: Inbound packets with errors','net.if.in["{#IFNAME}",errors]','3m','31d','365d','0','3','','','','','42278',NULL,'','','0','','','','','2','1','','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42294','0','','10084','Interface {#IFNAME}: Bits received','net.if.in["{#IFNAME}"]','3m','31d','365d','0','3','','bps','','','42279',NULL,'','','0','','','','','2','1','','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42295','0','','10084','Interface {#IFNAME}: Outbound packets discarded','net.if.out["{#IFNAME}",dropped]','3m','31d','365d','0','3','','','','','42280',NULL,'','','0','','','','','2','1','','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42296','0','','10084','Interface {#IFNAME}: Outbound packets with errors','net.if.out["{#IFNAME}",errors]','3m','31d','365d','0','3','','','','','42281',NULL,'','','0','','','','','2','1','','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42297','0','','10084','Interface {#IFNAME}: Bits sent','net.if.out["{#IFNAME}"]','3m','31d','365d','0','3','','bps','','','42282',NULL,'','','0','','','','','2','1','','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42298','0','','10084','Interface {#IFNAME}: Operational status','vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"]','1m','31d','0','0','3','','','','','42283','905','','','0','','','','','2','1','Reference: https://www.kernel.org/doc/Documentation/networking/operstates.txt','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42299','0','','10084','Interface {#IFNAME}: Interface type','vfs.file.contents["/sys/class/net/{#IFNAME}/type"]','1h','31d','0','0','3','','','','','42284','906','','','0','','','','','2','1','It indicates the interface protocol type as a decimal value. See `include/uapi/linux/if_arp.h` for all possible values. Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42300','15','','10084','{#DEVNAME}: Disk read request avg waiting time (r_await)','vfs.dev.read.await[{#DEVNAME}]','1m','31d','365d','0','0','','!ms','','','42285',NULL,'(last(//vfs.dev.read.time.rate[{#DEVNAME}])/(last(//vfs.dev.read.rate[{#DEVNAME}])+(last(//vfs.dev.read.rate[{#DEVNAME}])=0)))*1000*(last(//vfs.dev.read.rate[{#DEVNAME}]) > 0)','','0','','','','','2',NULL,'This formula contains two Boolean expressions that evaluate to 1 or 0 in order to set the calculated metric to zero and to avoid the exception - division by zero.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42301','15','','10084','{#DEVNAME}: Disk write request avg waiting time (w_await)','vfs.dev.write.await[{#DEVNAME}]','1m','31d','365d','0','0','','!ms','','','42286',NULL,'(last(//vfs.dev.write.time.rate[{#DEVNAME}])/(last(//vfs.dev.write.rate[{#DEVNAME}])+(last(//vfs.dev.write.rate[{#DEVNAME}])=0)))*1000*(last(//vfs.dev.write.rate[{#DEVNAME}]) > 0)','','0','','','','','2',NULL,'This formula contains two Boolean expressions that evaluate to 1 or 0 in order to set the calculated metric to zero and to avoid the exception - division by zero.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42302','0','','10084','{#DEVNAME}: Get stats','vfs.file.contents[/sys/block/{#DEVNAME}/stat]','1m','0','0','0','4','','','','','42287',NULL,'','','0','','','','','2','1','The contents of get `/sys/block/{#DEVNAME}/stat` to get the disk statistics.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42681','0','','10084','Interface {#IFNAME}: Speed','vfs.file.contents["/sys/class/net/{#IFNAME}/speed"]','5m','31d','0','0','3','','bps','','','42679',NULL,'','','0','','','','','2','1','It indicates the latest or current speed value of the interface. The value is an integer representing the link speed expressed in bits/sec. This attribute is only valid for the interfaces that implement the ethtool `get_link_ksettings` method (mostly Ethernet). Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('44056','5','','10084','Zabbix proxies stats','zabbix[proxy,discovery]','1m','0','0','0','4','','','','','44055',NULL,'','','0','','','','','0',NULL,'The master item of Zabbix proxies'' statistics.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('44437','0','','10084','Get filesystems','vfs.fs.get','1m','0','0','0','4','','','','','44436',NULL,'','','0','','','','','0','1','The `vfs.fs.get` key acquires raw information set about the filesystems. Later to be extracted by preprocessing in dependent items.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('44788','5','','10084','Connector queue','zabbix[connector_queue]','1m','31d','365d','0','3','','','','','44785',NULL,'','','0','','','','','0',NULL,'The count of values enqueued in the connector queue.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('44789','5','','10084','Utilization of connector manager internal processes, in %','zabbix[process,connector manager,avg,busy]','1m','31d','365d','0','0','','%','','','44786',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the connector manager processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('44790','5','','10084','Utilization of connector worker internal processes, in %','zabbix[process,connector worker,avg,busy]','1m','31d','365d','0','0','','%','','','44787',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the connector worker processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('45497','5','','10084','Discovery queue','zabbix[discovery_queue]','1m','31d','365d','0','3','','','','','45494',NULL,'','','0','','','','','0',NULL,'The count of values enqueued in the discovery queue.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('45498','5','','10084','Utilization of discovery manager internal processes, in %','zabbix[process,discovery manager,avg,busy]','1m','31d','365d','0','0','','%','','','45495',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the discovery manager processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('45499','5','','10084','Utilization of discovery worker internal processes, in %','zabbix[process,discovery worker,avg,busy]','1m','31d','365d','0','0','','%','','','45496',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the discovery worker processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('45517','5','','10084','Utilization of agent poller data collector processes, in %','zabbix[process,agent poller,avg,busy]','1m','31d','365d','0','0','','%','','','45515',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the agent poller processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('45518','5','','10084','Utilization of http agent poller data collector processes, in %','zabbix[process,http agent poller,avg,busy]','1m','31d','365d','0','0','','%','','','45516',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the http agent poller processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('46048','5','','10084','Utilization of snmp poller data collector processes, in %','zabbix[process,snmp poller,avg,busy]','1m','31d','365d','0','0','','%','','','46047',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the snmp poller processes have been busy for the last minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('46315','5','','10084','Number of values synchronized with the database per second','zabbix[vps,written]','1m','31d','365d','0','0','','!vps','','','46314',NULL,'','','0','','','','','0',NULL,'Average quantity of values written to the database, recalculated once per minute.','0','30d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('47207','5','','10084','Utilization of browser poller data collector processes, in %','zabbix[process,browser poller,avg,busy]','1m','31d','365d','0','0','','%','','','47203',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the browser poller processes have been busy for the last minute.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('47208','5','','10084','Utilization of configuration syncer worker internal processes, in %','zabbix[process,configuration syncer worker,avg,busy]','1m','31d','365d','0','0','','%','','','47204',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the configuration syncer worker processes have been busy for the last minute.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('47209','5','','10084','Utilization of internal poller data collector processes, in %','zabbix[process,internal poller,avg,busy]','1m','31d','365d','0','0','','%','','','47205',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the internal poller processes have been busy for the last minute.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('47210','5','','10084','Utilization of proxy group manager internal processes, in %','zabbix[process,proxy group manager,avg,busy]','1m','31d','365d','0','0','','%','','','47206',NULL,'','','0','','','','','0',NULL,'The average percentage of the time during which the proxy group manager processes have been busy for the last minute.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('47552','5','','10084','Zabbix proxy groups stats','zabbix[proxy group,discovery]','1m','0','0','0','4','','','','','47551',NULL,'','','0','','','','','0',NULL,'The master item of Zabbix proxy groups'' statistics.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('49209','5','','10084','Zabbix server check','zabbix[triggers]','1m','31d','0','0','3','','','','','49202','1374','','','0','','','','','0',NULL,'Flag indicating whether it is a server or not.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('49907','5','','10084','Zabbix preprocessing','zabbix[preprocessing]','1m','0','0','0','4','','','','','49906',NULL,'','','0','','','','','0',NULL,'The master item of Zabbix server''s preprocessing statistics.','0','7d','0','',NULL,'','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'); INSERT INTO items (itemid,type,snmp_oid,hostid,name,key_,delay,history,trends,status,value_type,trapper_hosts,units,formula,logtimefmt,templateid,valuemapid,params,ipmi_sensor,authtype,username,password,publickey,privatekey,flags,interfaceid,description,inventory_link,lifetime,evaltype,jmx_endpoint,master_itemid,timeout,url,query_fields,posts,status_codes,follow_redirects,post_type,http_proxy,headers,retrieve_mode,request_method,output_format,verify_peer,verify_host,allow_traps,discover,uuid,lifetime_type,enabled_lifetime_type,enabled_lifetime) VALUES ('28249','18','','10084','Preprocessing queue','zabbix[preprocessing_queue]','0','31d','365d','0','3','','','','','28248',NULL,'','','0','','','','','0',NULL,'The number of values enqueued in the preprocessing queue.','0','30d','0','','49907','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('39807','18','','10084','High availability cluster node discovery','zabbix.nodes.discovery','0','90d','0','0','4','','','','','39806',NULL,'','','0','','','','','1',NULL,'LLD rule with item and trigger prototypes for node discovery.','0','7d','0','','39805','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42269','18','','10084','CPU utilization','system.cpu.util','0','31d','365d','0','0','','%','','','42267',NULL,'','','0','','','','','0',NULL,'CPU utilization expressed in %.','0','30d','0','','42264','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42270','18','','10084','Memory utilization','vm.memory.utilization','0','31d','365d','0','0','','%','','','42268',NULL,'','','0','','','','','0',NULL,'The percentage of used memory is calculated as `100-pavailable`.','0','30d','0','','42244','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42276','18','','10084','Mounted filesystem discovery','vfs.fs.dependent.discovery','0','90d','0','0','4','','','','','42273',NULL,'','','0','','','','','1','1','The discovery of mounted filesystems with different types.','0','7d','1','','44437','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42313','18','','10084','{#DEVNAME}: Disk average queue size (avgqu-sz)','vfs.dev.queue_size[{#DEVNAME}]','0','31d','365d','0','0','','','','','42307',NULL,'','','0','','','','','2',NULL,'The current average disk queue; the number of requests outstanding on the disk while the performance data is being collected.','0','30d','0','','42302','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42314','18','','10084','{#DEVNAME}: Disk read rate','vfs.dev.read.rate[{#DEVNAME}]','0','31d','365d','0','0','','!r/s','','','42308',NULL,'','','0','','','','','2',NULL,'r/s (read operations per second) - the number (after merges) of read requests completed per second for the device.','0','30d','0','','42302','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42315','18','','10084','{#DEVNAME}: Disk read time (rate)','vfs.dev.read.time.rate[{#DEVNAME}]','0','31d','365d','0','0','','','','','42309',NULL,'','','0','','','','','2',NULL,'The rate of total read time counter; used in `r_await` calculation.','0','30d','0','','42302','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42316','18','','10084','{#DEVNAME}: Disk utilization','vfs.dev.util[{#DEVNAME}]','0','31d','365d','0','0','','%','','','42310',NULL,'','','0','','','','','2',NULL,'The percentage of elapsed time during which the selected disk drive was busy while servicing read or write requests.','0','30d','0','','42302','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42317','18','','10084','{#DEVNAME}: Disk write rate','vfs.dev.write.rate[{#DEVNAME}]','0','31d','365d','0','0','','!w/s','','','42311',NULL,'','','0','','','','','2',NULL,'w/s (write operations per second) - the number (after merges) of write requests completed per second for the device.','0','30d','0','','42302','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42318','18','','10084','{#DEVNAME}: Disk write time (rate)','vfs.dev.write.time.rate[{#DEVNAME}]','0','31d','365d','0','0','','','','','42312',NULL,'','','0','','','','','2',NULL,'The rate of total write time counter; used in `w_await` calculation.','0','30d','0','','42302','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('44058','18','','10084','Zabbix proxy discovery','zabbix.proxy.discovery','0','90d','0','0','4','','','','','44057',NULL,'','','0','','','','','1',NULL,'LLD rule with item and trigger prototypes for proxy discovery.','0','7d','0','','44056','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('44439','18','','10084','FS [{#FSNAME}]: Get data','vfs.fs.dependent[{#FSNAME},data]','0','1h','0','0','4','','','','','44438',NULL,'','','0','','','','','2',NULL,'Intermediate data of `{#FSNAME}` filesystem.','0','30d','0','','44437','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('44638','18','','10084','Cluster node [{#NODE.NAME}]: Stats','zabbix.node.stats[{#NODE.ID}]','0','0','0','0','4','','','','','44636',NULL,'','','0','','','','','2',NULL,'Provides the statistics of a node.','0','30d','0','','39805','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('44639','18','','10084','Proxy [{#PROXY.NAME}]: Stats','zabbix.proxy.stats[{#PROXY.NAME}]','0','0','0','0','4','','','','','44637',NULL,'','','0','','','','','2',NULL,'The statistics for the discovered proxy.','0','30d','0','','44056','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('47554','18','','10084','Zabbix proxy groups discovery','zabbix.proxy.groups.discovery','0','31d','365d','0','4','','','','','47553',NULL,'','','0','','','','','1',NULL,'LLD rule with item and trigger prototypes for proxy groups discovery.','0','7d','1','','47552','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('47557','18','','10084','Proxy group [{#PROXY.GROUP.NAME}]: Settings','zabbix.proxy.group.settings[{#PROXY.GROUP.NAME}]','0','0','0','0','4','','','','','47555',NULL,'','','0','','','','','2',NULL,'The settings for the discovered proxy group.','0','7d','0','','47552','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('47558','18','','10084','Proxy group [{#PROXY.GROUP.NAME}]: Stats','zabbix.proxy.group.stats[{#PROXY.GROUP.NAME}]','0','0','0','0','4','','','','','47556',NULL,'','','0','','','','','2',NULL,'The statistics for the discovered proxy group.','0','7d','0','','47552','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('49912','18','','10084','Preprocessing queued throughput','zabbix[preprocessing_throughput_queued]','0','31d','365d','0','0','','Bps','','','49909',NULL,'','','0','','','','','0',NULL,'Reflects the queued throughput of the preprocessing.','0','7d','0','','49907','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('50207','18','','10084','Preprocessing direct throughput','zabbix[preprocessing_throughput_direct]','0','31d','365d','0','0','','Bps','','','50198',NULL,'','','0','','','','','0',NULL,'Reflects the direct throughput of the preprocessing.','0','7d','0','','49907','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('50208','18','','10084','Preprocessing direct VPS','zabbix[preprocessing_vps_direct]','0','31d','365d','0','0','','!vps','','','50199',NULL,'','','0','','','','','0',NULL,'Reflects the count of direct preprocessing values per second.','0','7d','0','','49907','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('50209','18','','10084','Preprocessing queued VPS','zabbix[preprocessing_vps_queued]','0','31d','365d','0','0','','!vps','','','50200',NULL,'','','0','','','','','0',NULL,'Reflects the count of queued preprocessing values per second.','0','7d','0','','49907','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'); INSERT INTO items (itemid,type,snmp_oid,hostid,name,key_,delay,history,trends,status,value_type,trapper_hosts,units,formula,logtimefmt,templateid,valuemapid,params,ipmi_sensor,authtype,username,password,publickey,privatekey,flags,interfaceid,description,inventory_link,lifetime,evaltype,jmx_endpoint,master_itemid,timeout,url,query_fields,posts,status_codes,follow_redirects,post_type,http_proxy,headers,retrieve_mode,request_method,output_format,verify_peer,verify_host,allow_traps,discover,uuid,lifetime_type,enabled_lifetime_type,enabled_lifetime) VALUES ('39812','18','','10084','Cluster node [{#NODE.NAME}]: Address','zabbix.node.address[{#NODE.ID}]','0','31d','0','0','1','','','','','39808',NULL,'','','0','','','','','2',NULL,'The IPv4 address of a node.','0','30d','0','','44638','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('39813','18','','10084','Cluster node [{#NODE.NAME}]: Last access age','zabbix.node.lastaccess.age[{#NODE.ID}]','0','31d','365d','0','3','','uptime','','','39809',NULL,'','','0','','','','','2',NULL,'The time between the database''s `unix_timestamp()` and the last access time.','0','30d','0','','44638','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('39814','18','','10084','Cluster node [{#NODE.NAME}]: Last access time','zabbix.node.lastaccess.time[{#NODE.ID}]','0','31d','365d','0','3','','unixtime','','','39810',NULL,'','','0','','','','','2',NULL,'Last access time.','0','30d','0','','44638','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('39815','18','','10084','Cluster node [{#NODE.NAME}]: Status','zabbix.node.status[{#NODE.ID}]','0','31d','365d','0','3','','','','','39811','565','','','0','','','','','2',NULL,'The status of a node.','0','30d','0','','44638','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42303','18','','10084','FS [{#FSNAME}]: Inodes: Free, in %','vfs.fs.dependent.inode[{#FSNAME},pfree]','0','31d','365d','0','0','','%','','','42288',NULL,'','','0','','','','','2',NULL,'Free metadata space expressed in %.','0','30d','0','','44439','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42304','18','','10084','FS [{#FSNAME}]: Space: Used, in %','vfs.fs.dependent.size[{#FSNAME},pused]','0','31d','365d','0','0','','%','','','42289',NULL,'','','0','','','','','2',NULL,'Calculated as the percentage of currently used space compared to the maximum available space.','0','30d','0','','44439','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42305','18','','10084','FS [{#FSNAME}]: Space: Total','vfs.fs.dependent.size[{#FSNAME},total]','0','31d','365d','0','3','','B','','','42290',NULL,'','','0','','','','','2',NULL,'Total space expressed in bytes.','0','30d','0','','44439','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('42306','18','','10084','FS [{#FSNAME}]: Space: Used','vfs.fs.dependent.size[{#FSNAME},used]','0','31d','365d','0','3','','B','','','42291',NULL,'','','0','','','','','2',NULL,'Used storage expressed in bytes.','0','30d','0','','44439','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('44070','18','','10084','Proxy [{#PROXY.NAME}]: Certificate','zabbix.proxy.cert[{#PROXY.NAME}]','0','31d','365d','0','3','','','','','44059','1048','','','0','','','','','2',NULL,'The encryption status for connections from a proxy.','0','30d','0','','44639','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('44071','18','','10084','Proxy [{#PROXY.NAME}]: Compatibility','zabbix.proxy.compatibility[{#PROXY.NAME}]','0','31d','365d','0','3','','','','','44060','1045','','','0','','','','','2',NULL,'Version of proxy compared to Zabbix server version. Possible values: 0 - Undefined; 1 - Current version (proxy and server have the same major version); 2 - Outdated version (proxy version is older than server version, but is partially supported); 3 - Unsupported version (proxy version is older than server previous LTS release version or server major version is older than proxy major version).','0','30d','0','','44639','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('44072','18','','10084','Proxy [{#PROXY.NAME}]: Compression','zabbix.proxy.compression[{#PROXY.NAME}]','0','31d','365d','0','3','','','','','44061','1048','','','0','','','','','2',NULL,'The compression status of a proxy.','0','30d','0','','44639','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('44073','18','','10084','Proxy [{#PROXY.NAME}]: Host count','zabbix.proxy.hosts[{#PROXY.NAME}]','0','31d','365d','0','3','','','','','44062',NULL,'','','0','','','','','2',NULL,'The number of enabled hosts assigned to a proxy.','0','30d','0','','44639','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('44074','18','','10084','Proxy [{#PROXY.NAME}]: Item count','zabbix.proxy.items[{#PROXY.NAME}]','0','31d','365d','0','3','','','','','44063',NULL,'','','0','','','','','2',NULL,'The number of enabled items on enabled hosts assigned to a proxy.','0','30d','0','','44639','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('44075','18','','10084','Proxy [{#PROXY.NAME}]: Last seen, in seconds','zabbix.proxy.last_seen[{#PROXY.NAME}]','0','31d','365d','0','0','','','','','44064','1046','','','0','','','','','2',NULL,'The time when a proxy was last seen by a server.','0','30d','0','','44639','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('44076','18','','10084','Proxy [{#PROXY.NAME}]: Mode','zabbix.proxy.mode[{#PROXY.NAME}]','0','31d','365d','0','3','','','','','44065','1047','','','0','','','','','2',NULL,'The mode of Zabbix proxy.','0','30d','0','','44639','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('44077','18','','10084','Proxy [{#PROXY.NAME}]: PSK','zabbix.proxy.psk[{#PROXY.NAME}]','0','31d','365d','0','3','','','','','44066','1048','','','0','','','','','2',NULL,'The encryption status for connections from a proxy.','0','30d','0','','44639','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('44078','18','','10084','Proxy [{#PROXY.NAME}]: Required VPS','zabbix.proxy.requiredperformance[{#PROXY.NAME}]','0','31d','365d','0','0','','!vps','','','44067',NULL,'','','0','','','','','2',NULL,'The required performance of a proxy (the number of values that need to be collected per second).','0','30d','0','','44639','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('44079','18','','10084','Proxy [{#PROXY.NAME}]: Unencrypted','zabbix.proxy.unencrypted[{#PROXY.NAME}]','0','31d','365d','0','3','','','','','44068','1048','','','0','','','','','2',NULL,'The encryption status for connections from a proxy.','0','30d','0','','44639','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('44080','18','','10084','Proxy [{#PROXY.NAME}]: Version','zabbix.proxy.version[{#PROXY.NAME}]','0','31d','0','0','1','','','','','44069',NULL,'','','0','','','','','2',NULL,'A version of Zabbix proxy.','0','30d','0','','44639','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('44441','18','','10084','FS [{#FSNAME}]: Option: Read-only','vfs.fs.dependent[{#FSNAME},readonly]','0','31d','365d','0','3','','','','','44440',NULL,'','','0','','','','','2',NULL,'The filesystem is mounted as read-only. It is available only for Zabbix agents 6.4 and higher.','0','30d','0','','44439','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('47117','18','','10084','FS [{#FSNAME}]: Space: Available','vfs.fs.dependent.size[{#FSNAME},free]','0','31d','365d','0','3','','B','','','47116',NULL,'','','0','','','','','2',NULL,'Available storage space expressed in bytes.','0','7d','0','','44439','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('47564','18','','10084','Proxy group [{#PROXY.GROUP.NAME}]: Available proxies, in %','zabbix.proxy.group.avail.proxies.percent[{#PROXY.GROUP.NAME}]','0','31d','365d','0','3','','%','','','47559',NULL,'','','0','','','','','2',NULL,'Percentage of available proxies in the Zabbix proxy group.','0','7d','0','','47558','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('47565','18','','10084','Proxy group [{#PROXY.GROUP.NAME}]: Available proxies','zabbix.proxy.group.avail.proxies[{#PROXY.GROUP.NAME}]','0','31d','365d','0','3','','','','','47560',NULL,'','','0','','','','','2',NULL,'Count of available proxies in the Zabbix proxy group.','0','7d','0','','47558','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('47566','18','','10084','Proxy group [{#PROXY.GROUP.NAME}]: Failover period','zabbix.proxy.group.failover[{#PROXY.GROUP.NAME}]','0','31d','365d','0','0','','s','','','47561','1236','','','0','','','','','2',NULL,'Failover period in the Zabbix proxy group.','0','7d','0','','47557','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('47567','18','','10084','Proxy group [{#PROXY.GROUP.NAME}]: Minimum number of proxies','zabbix.proxy.group.online.min[{#PROXY.GROUP.NAME}]','0','31d','365d','0','0','','','','','47562','1236','','','0','','','','','2',NULL,'Minimum number of proxies online in the Zabbix proxy group.','0','7d','0','','47557','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'), ('47568','18','','10084','Proxy group [{#PROXY.GROUP.NAME}]: State','zabbix.proxy.group.state[{#PROXY.GROUP.NAME}]','0','31d','365d','0','3','','','','','47563','1237','','','0','','','','','2',NULL,'State of the Zabbix proxy group. Possible values: 0 - unknown; 1 - offline; 2 - recovering; 3 - online; 4 - degrading.','0','7d','0','','47558','','','','','200','1','0','','','0','0','0','0','0','0','0','','0','2','0'); INSERT INTO optemplate (optemplateid,operationid,templateid) VALUES ('1','1','10001'); INSERT INTO triggers (triggerid,expression,description,url,status,priority,comments,templateid,type,flags,recovery_mode,recovery_expression,correlation_mode,correlation_tag,manual_close,opdata,discover,event_name,uuid,url_name) VALUES ('13015','{33757}>{$ZABBIX.SERVER.UTIL.MAX:"configuration cache"}','Zabbix server: Excessive configuration cache usage','','0','3','Consider increasing `CacheSize` in the `zabbix_server.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix server: More than {$ZABBIX.SERVER.UTIL.MAX:"configuration cache"}% used in the configuration cache','088a0e0ac64442a29de4d86f11c87438',''), ('13017','{33761}>{$ZABBIX.SERVER.UTIL.MAX:"index cache"}','Zabbix server: Excessive history index cache usage','','0','3','Consider increasing `HistoryIndexCacheSize` in the `zabbix_server.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix server: More than {$ZABBIX.SERVER.UTIL.MAX:"index cache"}% used in the history index cache','24245fbc55b743319162dd1edb37c5a0',''), ('13019','{33762}>{$ZABBIX.SERVER.UTIL.MAX:"trend cache"}','Zabbix server: Excessive trends cache usage','','0','3','Consider increasing `TrendCacheSize` in the `zabbix_server.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix server: More than {$ZABBIX.SERVER.UTIL.MAX:"trend cache"}% used in the trends cache','34426156de6b4690918117a23ccc1138',''), ('13023','{12653}>100','Zabbix server: More than 100 items have been missing data for over 10 minutes','','0','2','Indicates potential issues with network connectivity, agent failures, or unresponsive monitored resources that require attention.',NULL,'0','0','0','','0','','0','','0','','53883a57e663421ca5fa794067a267b4',''), ('13073','{33760}>{$ZABBIX.SERVER.UTIL.MAX:"history cache"}','Zabbix server: Excessive history cache usage','','0','3','Consider increasing `HistoryCacheSize` in the `zabbix_server.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix server: More than {$ZABBIX.SERVER.UTIL.MAX:"history cache"}% used in the history cache','5d63483588964e49b1f870dfb770bf04',''), ('13074','{33758}>{$ZABBIX.SERVER.UTIL.MAX:"value cache"}','Zabbix server: Excessive value cache usage','','0','3','Consider increasing `ValueCacheSize` in the `zabbix_server.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix server: More than {$ZABBIX.SERVER.UTIL.MAX:"value cache"}% used in the value cache','cdca16919f6648ebbe6119e7c23a98c7',''), ('13080','{33719}>{$ZABBIX.SERVER.UTIL.MAX:"alerter"}','Zabbix server: Utilization of alerter processes is high','','0','3','Indicates potential performance issues with the alerter, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33719}<{$ZABBIX.SERVER.UTIL.MIN:"alerter"}','0','','0','','0','Zabbix server: Utilization of alerter processes over {$ZABBIX.SERVER.UTIL.MAX:"alerter"}%','20963ffd33864196ab909b60d7acdc0a',''), ('13081','{33723}>{$ZABBIX.SERVER.UTIL.MAX:"configuration syncer"}','Zabbix server: Utilization of configuration syncer processes is high','','0','3','Indicates potential performance issues with the configuration syncer, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33723}<{$ZABBIX.SERVER.UTIL.MIN:"configuration syncer"}','0','','0','','0','Zabbix server: Utilization of configuration syncer processes over {$ZABBIX.SERVER.UTIL.MAX:"configuration syncer"}%','63d681dba0b94487886a1d9b3360d1d1',''), ('13084','{33728}>{$ZABBIX.SERVER.UTIL.MAX:"escalator"}','Zabbix server: Utilization of escalator processes is high','','0','3','Indicates potential performance issues with the escalator, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33728}<{$ZABBIX.SERVER.UTIL.MIN:"escalator"}','0','','0','','0','Zabbix server: Utilization of escalator processes over {$ZABBIX.SERVER.UTIL.MAX:"escalator"}%','9895b4318f50487d9c7f25abd48bb1a1',''), ('13085','{33730}>{$ZABBIX.SERVER.UTIL.MAX:"history syncer"}','Zabbix server: Utilization of history syncer processes is high','','0','3','Indicates potential performance issues with the history syncer, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33730}<{$ZABBIX.SERVER.UTIL.MIN:"history syncer"}','0','','0','','0','Zabbix server: Utilization of history syncer processes over {$ZABBIX.SERVER.UTIL.MAX:"history syncer"}%','a99ffd43a05e40f7abee83aa8c6c3ce5',''), ('13086','{33731}>{$ZABBIX.SERVER.UTIL.MAX:"housekeeper"}','Zabbix server: Utilization of housekeeper processes is high','','0','3','Indicates potential performance issues with the housekeeper, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33731}<{$ZABBIX.SERVER.UTIL.MIN:"housekeeper"}','0','','0','','0','Zabbix server: Utilization of housekeeper processes over {$ZABBIX.SERVER.UTIL.MAX:"housekeeper"}%','faa349f84dc043658fe51294ad87f766',''), ('13087','{33733}>{$ZABBIX.SERVER.UTIL.MAX:"http poller"}','Zabbix server: Utilization of http poller processes is high','','0','3','Indicates potential performance issues with the http poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33733}<{$ZABBIX.SERVER.UTIL.MIN:"http poller"}','0','','0','','0','Zabbix server: Utilization of http poller processes over {$ZABBIX.SERVER.UTIL.MAX:"http poller"}%','c296c1ecdba44bd5b826ab4a86bbc300',''), ('13088','{33734}>{$ZABBIX.SERVER.UTIL.MAX:"icmp pinger"}','Zabbix server: Utilization of icmp pinger processes is high','','0','3','Indicates potential performance issues with the icmp pinger, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33734}<{$ZABBIX.SERVER.UTIL.MIN:"icmp pinger"}','0','','0','','0','Zabbix server: Utilization of icmp pinger processes over {$ZABBIX.SERVER.UTIL.MAX:"icmp pinger"}%','d5c6ea5711594a9587ab8d7094f1f481',''), ('13089','{33736}>{$ZABBIX.SERVER.UTIL.MAX:"ipmi poller"}','Zabbix server: Utilization of ipmi poller processes is high','','0','3','Indicates potential performance issues with the ipmi poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33736}<{$ZABBIX.SERVER.UTIL.MIN:"ipmi poller"}','0','','0','','0','Zabbix server: Utilization of ipmi poller processes over {$ZABBIX.SERVER.UTIL.MAX:"ipmi poller"}%','5a4f841292fd4bb5bec2e28340c9e4c2',''), ('13091','{33741}>{$ZABBIX.SERVER.UTIL.MAX:"poller"}','Zabbix server: Utilization of poller processes is high','','0','3','Indicates potential performance issues with the poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33741}<{$ZABBIX.SERVER.UTIL.MIN:"poller"}','0','','0','','0','Zabbix server: Utilization of poller processes over {$ZABBIX.SERVER.UTIL.MAX:"poller"}%','bb50da4052134ef1a478bface291b50a',''), ('13092','{33744}>{$ZABBIX.SERVER.UTIL.MAX:"proxy poller"}','Zabbix server: Utilization of proxy poller processes is high','','0','3','Indicates potential performance issues with the proxy poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33744}<{$ZABBIX.SERVER.UTIL.MIN:"proxy poller"}','0','','0','','0','Zabbix server: Utilization of proxy poller processes over {$ZABBIX.SERVER.UTIL.MAX:"proxy poller"}%','6a884c1fbf254637bb74b68571ee2ffa',''), ('13093','{33747}>{$ZABBIX.SERVER.UTIL.MAX:"self-monitoring"}','Zabbix server: Utilization of self-monitoring processes is high','','0','3','Indicates potential performance issues with the self-monitoring, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33747}<{$ZABBIX.SERVER.UTIL.MIN:"self-monitoring"}','0','','0','','0','Zabbix server: Utilization of self-monitoring processes over {$ZABBIX.SERVER.UTIL.MAX:"self-monitoring"}%','bf730ed3313f45248f483289c704f5e9',''), ('13094','{33752}>{$ZABBIX.SERVER.UTIL.MAX:"timer"}','Zabbix server: Utilization of timer processes is high','','0','3','Indicates potential performance issues with the timer, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33752}<{$ZABBIX.SERVER.UTIL.MIN:"timer"}','0','','0','','0','Zabbix server: Utilization of timer processes over {$ZABBIX.SERVER.UTIL.MAX:"timer"}%','0c7715df608f4736a7077ff2f6098adc',''), ('13095','{33753}>{$ZABBIX.SERVER.UTIL.MAX:"trapper"}','Zabbix server: Utilization of trapper processes is high','','0','3','Indicates potential performance issues with the trapper, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33753}<{$ZABBIX.SERVER.UTIL.MIN:"trapper"}','0','','0','','0','Zabbix server: Utilization of trapper processes over {$ZABBIX.SERVER.UTIL.MAX:"trapper"}%','197c04bbf5204ce7ac80630f2948b6b0',''), ('13096','{33755}>{$ZABBIX.SERVER.UTIL.MAX:"unreachable poller"}','Zabbix server: Utilization of unreachable poller processes is high','','0','3','Indicates potential performance issues with the unreachable poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33755}<{$ZABBIX.SERVER.UTIL.MIN:"unreachable poller"}','0','','0','','0','Zabbix server: Utilization of unreachable poller processes over {$ZABBIX.SERVER.UTIL.MAX:"unreachable poller"}%','b0168864ef6849f185deb6ef22a056fa',''), ('13097','{33756}>{$ZABBIX.SERVER.UTIL.MAX:"vmware collector"}','Zabbix server: Utilization of vmware collector processes is high','','0','3','Indicates potential performance issues with the vmware collector, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33756}<{$ZABBIX.SERVER.UTIL.MIN:"vmware collector"}','0','','0','','0','Zabbix server: Utilization of vmware collector processes over {$ZABBIX.SERVER.UTIL.MAX:"vmware collector"}%','7e0881bb1b384deba18439ae098a7fbd',''), ('13275','{33737}>{$ZABBIX.SERVER.UTIL.MAX:"java poller"}','Zabbix server: Utilization of java poller processes is high','','0','3','Indicates potential performance issues with the java poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33737}<{$ZABBIX.SERVER.UTIL.MIN:"java poller"}','0','','0','','0','Zabbix server: Utilization of java poller processes over {$ZABBIX.SERVER.UTIL.MAX:"java poller"}%','d7705ba9c3f74554ac21c59c9a0dcc11',''), ('13332','{13089}>30','OpenBSD: Too many processes running on {HOST.NAME}','','0','2','',NULL,'0','0','0','','0','','0','','0','','d67740bc103348ab8ab11df2bdb0ad8f',''), ('13333','{13088}>300','OpenBSD: Too many processes on {HOST.NAME}','','0','2','',NULL,'0','0','0','','0','','0','','0','','dd1b0c14e6dd439ea8f7323cdcc607de',''), ('13334','{13087}>5','OpenBSD: Processor load is too high on {HOST.NAME}','','0','2','',NULL,'0','0','0','','0','','0','','0','','1128bfb41f5f420c81feffb1d395cf9f',''), ('13336','{23374}<>{23375}','OpenBSD: Hostname was changed on {HOST.NAME}','','0','1','',NULL,'0','0','0','','0','','0','','0','','d6927a9b74eb4cb8b15400baf784fc36',''), ('13338','{23376}<>{23377}','OpenBSD: Host information was changed on {HOST.NAME}','','0','1','',NULL,'0','0','0','','0','','0','','0','','3d3bcd54f24448c1a11746a4e75ea736',''), ('13339','{12726}<0','OpenBSD: {HOST.NAME} has just been restarted','','0','1','',NULL,'0','0','0','','0','','0','','0','','de874b9d875a4298ab39888c9e9cb747',''), ('13340','{23378}<>{23379}','OpenBSD: /etc/passwd has been changed on {HOST.NAME}','','0','2','',NULL,'0','0','0','','0','','0','','0','','9db4055df94d414d86938066ed05dbc5',''), ('13348','{13074}>30','FreeBSD: Too many processes running on {HOST.NAME}','','0','2','',NULL,'0','0','0','','0','','0','','0','','837fdc71174246d987a6f7f277d65f6c',''), ('13349','{13073}>300','FreeBSD: Too many processes on {HOST.NAME}','','0','2','',NULL,'0','0','0','','0','','0','','0','','0d5ac85120734fa98d3eef01b6f4033b',''), ('13350','{13072}>5','FreeBSD: Processor load is too high on {HOST.NAME}','','0','2','',NULL,'0','0','0','','0','','0','','0','','8c339065ecc54b7d8c2e4405f2149f27',''), ('13352','{23356}<>{23357}','FreeBSD: Hostname was changed on {HOST.NAME}','','0','1','',NULL,'0','0','0','','0','','0','','0','','f48fb8ce1229492dae62de362c8c9539',''), ('13354','{23358}<>{23359}','FreeBSD: Host information was changed on {HOST.NAME}','','0','1','',NULL,'0','0','0','','0','','0','','0','','ea2f9c186798420da781bd835fa0eaed',''), ('13355','{12742}<0','FreeBSD: {HOST.NAME} has just been restarted','','0','1','',NULL,'0','0','0','','0','','0','','0','','809e57eb897b43fb8538e76ec7dd6602',''), ('13356','{23360}<>{23361}','FreeBSD: /etc/passwd has been changed on {HOST.NAME}','','0','2','',NULL,'0','0','0','','0','','0','','0','','27b4e5de411949a4befa7171a2af6441',''), ('13364','{13071}>30','AIX: Too many processes running','','0','2','',NULL,'0','0','0','','0','','0','','0','','458180bc0f14468386429964f877cce7',''), ('13365','{13070}>300','AIX: Too many processes','','0','2','',NULL,'0','0','0','','0','','0','','0','','874ef8fe4a6445ff971800d2d9a50541',''), ('13366','{13069}>5','AIX: Processor load is too high','','0','2','',NULL,'0','0','0','','0','','0','','0','','fdbedf15fe474fd18c045c62cf8cc7d6',''), ('13367','{13068}>20','AIX: Disk I/O is overloaded','','0','2','Extended OS wait times for I/O operations may signal potential performance issues with the storage system.',NULL,'0','0','0','','0','','0','','0','','c030cc99975d4fe3911789e58bbd5050',''), ('13368','{23350}<>{23351}','AIX: Hostname was changed','','0','1','',NULL,'0','0','0','','0','','0','','0','','d1e70b7f465447a3ab575b3fd28755a1',''), ('13370','{23352}<>{23353}','AIX: Host information was changed','','0','1','',NULL,'0','0','0','','0','','0','','0','','3a736e64211744aea480a60b2c48a036',''), ('13371','{12758}<0','AIX: Server has just been restarted','','0','1','',NULL,'0','0','0','','0','','0','','0','','03a2cd88b6a64d3ea4c9bb2abbc4ae2d',''), ('13372','{23354}<>{23355}','AIX: /etc/passwd has been changed','','0','2','',NULL,'0','0','0','','0','','0','','0','','c75ee957fd6c43b2aba9919d5e1af4a1',''), ('13382','{13075}>5','HP-UX: Processor load is too high','','0','2','',NULL,'0','0','0','','0','','0','','0','','6721e8fbe5ee45aa9d06b698210a268a',''), ('13384','{23362}<>{23363}','HP-UX: Hostname was changed','','0','1','',NULL,'0','0','0','','0','','0','','0','','07215ae05345423d8625962b85d9d4ec',''), ('13386','{23364}<>{23365}','HP-UX: Host information was changed','','0','1','',NULL,'0','0','0','','0','','0','','0','','34f76014b2d3434a8d1f1f0657b5605f',''), ('13388','{23366}<>{23367}','HP-UX: /etc/passwd has been changed','','0','2','',NULL,'0','0','0','','0','','0','','0','','f65c254d50e2454d9840784ff979f5d3',''), ('13396','{13093}>30','Solaris: Too many processes running','','0','2','',NULL,'0','0','0','','0','','0','','0','','6504ba0f7fa445ea9083af008d52c525',''), ('13397','{13092}>300','Solaris: Too many processes','','0','2','',NULL,'0','0','0','','0','','0','','0','','cc2731add899436ca2c12fff13c838fb',''), ('13398','{13091}>5','Solaris: Processor load is too high','','0','2','',NULL,'0','0','0','','0','','0','','0','','e7ef1c2b702440a3a7a20a544446a068',''), ('13399','{13090}>20','Solaris: Disk I/O is overloaded','','0','2','Extended OS wait times for I/O operations may signal potential performance issues with the storage system.',NULL,'0','0','0','','0','','0','','0','','280634a65c9d4702a4913c9c2cd5869c',''), ('13400','{23380}<>{23381}','Solaris: Hostname was changed','','0','1','',NULL,'0','0','0','','0','','0','','0','','cc5a9c97827f4091b83af8be33d58560',''), ('13402','{23382}<>{23383}','Solaris: Host information was changed','','0','1','',NULL,'0','0','0','','0','','0','','0','','dc293e688ac54ac0aee61e398d8bc5c5',''), ('13403','{12790}<0','Solaris: Server has just been restarted','','0','1','',NULL,'0','0','0','','0','','0','','0','','56284beb4a464017b3aa2f4c00bc271f',''), ('13404','{23384}<>{23385}','Solaris: /etc/passwd has been changed','','0','2','',NULL,'0','0','0','','0','','0','','0','','50e5be0acabb41658ec82772d9ec234e',''), ('13414','{13086}>5','macOS: Processor load is too high','','0','2','',NULL,'0','0','0','','0','','0','','0','','3cf40421e61b41bab7697bbf9a2649d6',''), ('13416','{23368}<>{23369}','macOS: Hostname was changed','','0','1','',NULL,'0','0','0','','0','','0','','0','','ffb713a281a543879e4196e4207bdd62',''), ('13418','{23370}<>{23371}','macOS: Host information was changed','','0','1','',NULL,'0','0','0','','0','','0','','0','','55d8650af70d4aeea56345985e454df9',''), ('13419','{12806}<0','macOS: Server has just been restarted','','0','1','',NULL,'0','0','0','','0','','0','','0','','1f0cc03186cc4bb98483927f425df8e9',''), ('13420','{23372}<>{23373}','macOS: /etc/passwd has been changed','','0','2','',NULL,'0','0','0','','0','','0','','0','','39cfe50a3d2a46ad9a53b9ec7443ec18',''), ('13441','{33750}>{$ZABBIX.SERVER.UTIL.MAX:"snmp trapper"}','Zabbix server: Utilization of snmp trapper processes is high','','0','3','Indicates potential performance issues with the snmp trapper, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33750}<{$ZABBIX.SERVER.UTIL.MIN:"snmp trapper"}','0','','0','','0','Zabbix server: Utilization of snmp trapper processes over {$ZABBIX.SERVER.UTIL.MAX:"snmp trapper"}%','821611786e5e49bf941cbca370d6ed6b',''), ('13517','{33705}>{$ZABBIX.PROXY.UTIL.MAX:"configuration cache"}','Zabbix proxy: Excessive configuration cache usage','','0','3','Consider increasing `CacheSize` in the `zabbix_proxy.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix proxy: More than {$ZABBIX.PROXY.UTIL.MAX:"configuration cache"}% used in the configuration cache','98ae52367f69476dbeb9c50e5f28b429',''), ('13518','{33707}>{$ZABBIX.PROXY.UTIL.MAX:"history cache"}','Zabbix proxy: Excessive history cache usage','','0','3','Consider increasing `HistoryCacheSize` in the `zabbix_proxy.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix proxy: More than {$ZABBIX.PROXY.UTIL.MAX:"history cache"}% used in the history cache','dc5a87f6c62d47b08ddd4578aa5f293f',''), ('13519','{33708}>{$ZABBIX.PROXY.UTIL.MAX:"index cache"}','Zabbix proxy: Excessive history index cache usage','','0','3','Consider increasing `HistoryIndexCacheSize` in the `zabbix_proxy.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix proxy: More than {$ZABBIX.PROXY.UTIL.MAX:"index cache"}% used in the history index cache','92b94edb126d48af9e5e959357e2107b',''), ('13520','{12949}>100','Zabbix proxy: More than 100 items have been missing data for over 10 minutes','','0','2','Indicates potential issues with network connectivity, agent failures, or unresponsive monitored resources that require attention.',NULL,'0','0','0','','0','','0','','0','','f28d8231e0f2486bb68963719359789c',''), ('13521','{28363}>{$ZABBIX.PROXY.UTIL.MAX:"configuration syncer"}','Zabbix proxy: Utilization of configuration syncer processes is high','','0','3','Indicates potential performance issues with the configuration syncer, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28363}<{$ZABBIX.PROXY.UTIL.MIN:"configuration syncer"}','0','','0','','0','Zabbix proxy: Utilization of configuration syncer processes over {$ZABBIX.PROXY.UTIL.MAX:"configuration syncer"}%','27eb861e2e6f43f69f17b8ba65bfedcc',''), ('13523','{28368}>{$ZABBIX.PROXY.UTIL.MAX:"history syncer"}','Zabbix proxy: Utilization of history syncer processes is high','','0','3','Indicates potential performance issues with the history syncer, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28368}<{$ZABBIX.PROXY.UTIL.MIN:"history syncer"}','0','','0','','0','Zabbix proxy: Utilization of history syncer processes over {$ZABBIX.PROXY.UTIL.MAX:"history syncer"}%','52fb303ec9164aa28821117f3a559fe3',''), ('13524','{28369}>{$ZABBIX.PROXY.UTIL.MAX:"housekeeper"}','Zabbix proxy: Utilization of housekeeper processes is high','','0','3','Indicates potential performance issues with the housekeeper, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28369}<{$ZABBIX.PROXY.UTIL.MIN:"housekeeper"}','0','','0','','0','Zabbix proxy: Utilization of housekeeper processes over {$ZABBIX.PROXY.UTIL.MAX:"housekeeper"}%','b6cbede80a4847ed94a0ba818b7ca261',''), ('13525','{28370}>{$ZABBIX.PROXY.UTIL.MAX:"http poller"}','Zabbix proxy: Utilization of http poller processes is high','','0','3','Indicates potential performance issues with the http poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28370}<{$ZABBIX.PROXY.UTIL.MIN:"http poller"}','0','','0','','0','Zabbix proxy: Utilization of http poller processes over {$ZABBIX.PROXY.UTIL.MAX:"http poller"}%','e93e5a3dd27f4d378bbfe2c8e5b009e7',''), ('13526','{28371}>{$ZABBIX.PROXY.UTIL.MAX:"icmp pinger"}','Zabbix proxy: Utilization of icmp pinger processes is high','','0','3','Indicates potential performance issues with the icmp pinger, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28371}<{$ZABBIX.PROXY.UTIL.MIN:"icmp pinger"}','0','','0','','0','Zabbix proxy: Utilization of icmp pinger processes over {$ZABBIX.PROXY.UTIL.MAX:"icmp pinger"}%','d514f4a08bcd4fe2b696015a74ffafcf',''), ('13527','{28373}>{$ZABBIX.PROXY.UTIL.MAX:"ipmi poller"}','Zabbix proxy: Utilization of ipmi poller processes is high','','0','3','Indicates potential performance issues with the ipmi poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28373}<{$ZABBIX.PROXY.UTIL.MIN:"ipmi poller"}','0','','0','','0','Zabbix proxy: Utilization of ipmi poller processes over {$ZABBIX.PROXY.UTIL.MAX:"ipmi poller"}%','99ce9f0ed6204860b7b943e9e3a5fbc0',''), ('13528','{28374}>{$ZABBIX.PROXY.UTIL.MAX:"java poller"}','Zabbix proxy: Utilization of java poller processes is high','','0','3','Indicates potential performance issues with the java poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28374}<{$ZABBIX.PROXY.UTIL.MIN:"java poller"}','0','','0','','0','Zabbix proxy: Utilization of java poller processes over {$ZABBIX.PROXY.UTIL.MAX:"java poller"}%','5b8cc59c21b145739e346479124c48f5',''), ('13529','{28376}>{$ZABBIX.PROXY.UTIL.MAX:"poller"}','Zabbix proxy: Utilization of poller processes is high','','0','3','Indicates potential performance issues with the poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28376}<{$ZABBIX.PROXY.UTIL.MIN:"poller"}','0','','0','','0','Zabbix proxy: Utilization of poller processes over {$ZABBIX.PROXY.UTIL.MAX:"poller"}%','3f93b378367e48f89abe304ccb624047',''), ('13530','{28379}>{$ZABBIX.PROXY.UTIL.MAX:"self-monitoring"}','Zabbix proxy: Utilization of self-monitoring processes is high','','0','3','Indicates potential performance issues with the self-monitoring, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28379}<{$ZABBIX.PROXY.UTIL.MIN:"self-monitoring"}','0','','0','','0','Zabbix proxy: Utilization of self-monitoring processes over {$ZABBIX.PROXY.UTIL.MAX:"self-monitoring"}%','cc9569f75bd44b5cbce4a4c556cd2949',''), ('13531','{28380}>{$ZABBIX.PROXY.UTIL.MAX:"snmp trapper"}','Zabbix proxy: Utilization of snmp trapper processes is high','','0','3','Indicates potential performance issues with the snmp trapper, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28380}<{$ZABBIX.PROXY.UTIL.MIN:"snmp trapper"}','0','','0','','0','Zabbix proxy: Utilization of snmp trapper processes over {$ZABBIX.PROXY.UTIL.MAX:"snmp trapper"}%','bb0a46beffbc457faea9362d4325c676',''), ('13532','{28382}>{$ZABBIX.PROXY.UTIL.MAX:"trapper"}','Zabbix proxy: Utilization of trapper processes is high','','0','3','Indicates potential performance issues with the trapper, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28382}<{$ZABBIX.PROXY.UTIL.MIN:"trapper"}','0','','0','','0','Zabbix proxy: Utilization of trapper processes over {$ZABBIX.PROXY.UTIL.MAX:"trapper"}%','95ad6d80dc9c4f46a4e255d13f1b01a3',''), ('13533','{28383}>{$ZABBIX.PROXY.UTIL.MAX:"unreachable poller"}','Zabbix proxy: Utilization of unreachable poller processes is high','','0','3','Indicates potential performance issues with the unreachable poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28383}<{$ZABBIX.PROXY.UTIL.MIN:"unreachable poller"}','0','','0','','0','Zabbix proxy: Utilization of unreachable poller processes over {$ZABBIX.PROXY.UTIL.MAX:"unreachable poller"}%','a28abd3f43f843af9646a1f8b1ca056a',''), ('13534','{28364}>{$ZABBIX.PROXY.UTIL.MAX:"data sender"}','Zabbix proxy: Utilization of data sender processes is high','','0','3','Indicates potential performance issues with the data sender, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28364}<{$ZABBIX.PROXY.UTIL.MIN:"data sender"}','0','','0','','0','Zabbix proxy: Utilization of data sender processes over {$ZABBIX.PROXY.UTIL.MAX:"data sender"}%','e8fd57784b9e4289aa4515cfa7c6c4ad',''), ('13536','{33759}>{$ZABBIX.SERVER.UTIL.MAX:"vmware cache"}','Zabbix server: Excessive vmware cache usage','','0','3','Consider increasing `VMwareCacheSize` in the `zabbix_server.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix server: More than {$ZABBIX.SERVER.UTIL.MAX:"vmware cache"}% used in the vmware cache','2df2ed6520c44ee880f35912f869583e',''), ('13557','{13160}=1','Zabbix server: Zabbix value cache working in low-memory mode','','0','4','Once low-memory mode has been switched on, the value cache will remain in this state for 24 hours, even if the problem that triggered this mode is resolved sooner.',NULL,'0','0','0','','0','','0','','0','','ee3db7e7bc104f1598ca36e735bce53f',''), ('13559','{33751}>{$ZABBIX.SERVER.UTIL.MAX:"task manager"}','Zabbix server: Utilization of task manager processes is high','','0','3','Indicates potential performance issues with the task manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33751}<{$ZABBIX.SERVER.UTIL.MIN:"task manager"}','0','','0','','0','Zabbix server: Utilization of task manager processes over {$ZABBIX.SERVER.UTIL.MAX:"task manager"}%','37c1c6ec07474a8a95b06c3c28e4bf96',''), ('13562','{33735}>{$ZABBIX.SERVER.UTIL.MAX:"ipmi manager"}','Zabbix server: Utilization of ipmi manager processes is high','','0','3','Indicates potential performance issues with the ipmi manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33735}<{$ZABBIX.SERVER.UTIL.MIN:"ipmi manager"}','0','','0','','0','Zabbix server: Utilization of ipmi manager processes over {$ZABBIX.SERVER.UTIL.MAX:"ipmi manager"}%','9ce0c874e5924b308827e8be5a9bf0eb',''), ('13564','{28372}>{$ZABBIX.PROXY.UTIL.MAX:"ipmi manager"}','Zabbix proxy: Utilization of ipmi manager processes is high','','0','3','Indicates potential performance issues with the ipmi manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28372}<{$ZABBIX.PROXY.UTIL.MIN:"ipmi manager"}','0','','0','','0','Zabbix proxy: Utilization of ipmi manager processes over {$ZABBIX.PROXY.UTIL.MAX:"ipmi manager"}%','751e3000367f42d9af0d4418f3472a91',''), ('13565','{28381}>{$ZABBIX.PROXY.UTIL.MAX:"task manager"}','Zabbix proxy: Utilization of task manager processes is high','','0','3','Indicates potential performance issues with the task manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28381}<{$ZABBIX.PROXY.UTIL.MIN:"task manager"}','0','','0','','0','Zabbix proxy: Utilization of task manager processes over {$ZABBIX.PROXY.UTIL.MAX:"task manager"}%','9a42dad8cef04138944f3a1b8c797f4e',''), ('13566','{33720}>{$ZABBIX.SERVER.UTIL.MAX:"alert manager"}','Zabbix server: Utilization of alert manager processes is high','','0','3','Indicates potential performance issues with the alert manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33720}<{$ZABBIX.SERVER.UTIL.MIN:"alert manager"}','0','','0','','0','Zabbix server: Utilization of alert manager processes over {$ZABBIX.SERVER.UTIL.MAX:"alert manager"}%','c7f8ac54e4d3409788b8a456046ee461',''), ('13568','{33742}>{$ZABBIX.SERVER.UTIL.MAX:"preprocessing manager"}','Zabbix server: Utilization of preprocessing manager processes is high','','0','3','Indicates potential performance issues with the preprocessing manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33742}<{$ZABBIX.SERVER.UTIL.MIN:"preprocessing manager"}','0','','0','','0','Zabbix server: Utilization of preprocessing manager processes over {$ZABBIX.SERVER.UTIL.MAX:"preprocessing manager"}%','6e7a117afa7e41e2a783f8afc42434fa',''), ('13569','{33743}>{$ZABBIX.SERVER.UTIL.MAX:"preprocessing worker"}','Zabbix server: Utilization of preprocessing worker processes is high','','0','3','Indicates potential performance issues with the preprocessing worker, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33743}<{$ZABBIX.SERVER.UTIL.MIN:"preprocessing worker"}','0','','0','','0','Zabbix server: Utilization of preprocessing worker processes over {$ZABBIX.SERVER.UTIL.MAX:"preprocessing worker"}%','e2cbdcc8b4844943a67d1f51587e599c',''), ('14318','{31249}>{$TEMP_WARN:"{#SNMPVALUE}"}','Alcatel TiMOS: {#SNMPVALUE}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31250}<{$TEMP_WARN:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Alcatel TiMOS: {#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"}','90ba726922f74d1d971b3f07781fc035',''), ('14319','{31247}>{$TEMP_CRIT:"{#SNMPVALUE}"}','Alcatel TiMOS: {#SNMPVALUE}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31248}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Alcatel TiMOS: {#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"}','8f478386378349e7a4e4586c5ba74c78',''), ('14320','{31251}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','Alcatel TiMOS: {#SNMPVALUE}: Temperature is too low','','0','3','',NULL,'0','2','1','{31252}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Alcatel TiMOS: {#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','6035fc6733614ae1b4ed22c7d73466b0',''), ('14322','{23710}<>{23711} and length({23712})>0','Alcatel TiMOS: {#ENT_NAME}: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Alcatel TiMOS: {#ENT_NAME}: Device has been replaced (new serial number received)','ccdcfdbe1a6243949857c764aed9c9ea',''), ('14336','{23719}<>{23720} and length({23721})>0','Brocade FC: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Brocade FC: Device has been replaced (new serial number received)','9939f98da99c435a9b5505e55e8abb5f',''), ('14337','{23716}<>{23717} and length({23718})>0','Brocade FC: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','9c5ae10dbafb45658f25f0279a8a1934',''), ('14339','{31264}>{$TEMP_CRIT:"{#SENSOR_INFO}"}','Brocade FC: {#SENSOR_INFO}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31265}<{$TEMP_CRIT:"{#SENSOR_INFO}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Brocade FC: {#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SENSOR_INFO}"}','5ee4c1931e244d638b58f945f8a7565c',''), ('14340','{31266}<{$TEMP_CRIT_LOW:"{#SENSOR_INFO}"}','Brocade FC: {#SENSOR_INFO}: Temperature is too low','','0','3','',NULL,'0','2','1','{31267}>{$TEMP_CRIT_LOW:"{#SENSOR_INFO}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Brocade FC: {#SENSOR_INFO}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SENSOR_INFO}"}','fc68b3a0ea6643f988c26e3e735d7491',''), ('14363','{23725}<>{23726} and length({23727})>0','Brocade Nonstackable: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Brocade Nonstackable: Device has been replaced (new serial number received)','2bb9d8927e464842a55b89be412adcc4',''), ('14364','{23722}<>{23723} and length({23724})>0','Brocade Nonstackable: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','fbe1f9d9286046bbb15fe89ec1dcc87d',''), ('14365','{23728}<>{23729} and length({23730})>0','Brocade Stackable: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','891b6945b3ae4625bf77a16985219015',''), ('14372','{31270}>{$TEMP_WARN:"{#SENSOR_DESCR}"}','Brocade Nonstackable: {#SENSOR_DESCR}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31271}<{$TEMP_WARN:"{#SENSOR_DESCR}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Brocade Nonstackable: {#SENSOR_DESCR}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SENSOR_DESCR}"}','3687c8a7e88949fb9953049fb0f5e54d',''), ('14373','{31268}>{$TEMP_CRIT:"{#SENSOR_DESCR}"}','Brocade Nonstackable: {#SENSOR_DESCR}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31269}<{$TEMP_CRIT:"{#SENSOR_DESCR}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Brocade Nonstackable: {#SENSOR_DESCR}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SENSOR_DESCR}"}','bace15be86774bb4a46ca491b3b53516',''), ('14374','{31272}<{$TEMP_CRIT_LOW:"{#SENSOR_DESCR}"}','Brocade Nonstackable: {#SENSOR_DESCR}: Temperature is too low','','0','3','',NULL,'0','2','1','{31273}>{$TEMP_CRIT_LOW:"{#SENSOR_DESCR}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Brocade Nonstackable: {#SENSOR_DESCR}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SENSOR_DESCR}"}','fbe5f29b241248b4b4bff5d55fcc2180',''), ('14380','{31276}>{$TEMP_WARN:"{#SENSOR_DESCR}"}','Brocade Stackable: {#SENSOR_DESCR}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31277}<{$TEMP_WARN:"{#SENSOR_DESCR}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Brocade Stackable: {#SENSOR_DESCR}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SENSOR_DESCR}"}','c1e348e8a5f24100a5b29a840a43dca9',''), ('14381','{31274}>{$TEMP_CRIT:"{#SENSOR_DESCR}"}','Brocade Stackable: {#SENSOR_DESCR}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31275}<{$TEMP_CRIT:"{#SENSOR_DESCR}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Brocade Stackable: {#SENSOR_DESCR}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SENSOR_DESCR}"}','e1a63b2ebef549ebbd95b307feee8b8d',''), ('14382','{31278}<{$TEMP_CRIT_LOW:"{#SENSOR_DESCR}"}','Brocade Stackable: {#SENSOR_DESCR}: Temperature is too low','','0','3','',NULL,'0','2','1','{31279}>{$TEMP_CRIT_LOW:"{#SENSOR_DESCR}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Brocade Stackable: {#SENSOR_DESCR}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SENSOR_DESCR}"}','722ee93a637643e9b3cff31e5ea5151d',''), ('14383','{23731}<>{23732} and length({23733})>0','Brocade Stackable: Unit {#SNMPVALUE}: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Brocade Stackable: Unit {#SNMPVALUE}: Device has been replaced (new serial number received)','0144f409ccfd421cb382031cbed8a037',''), ('14460','{31282}>{$TEMP_WARN:"{#SNMPVALUE}"}','Dell Force S-Series: Device {#SNMPVALUE}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31283}<{$TEMP_WARN:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Dell Force S-Series: Device {#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"}','f4d0a2c0b1a9468990e1f6dbfef1ab75',''), ('14461','{31280}>{$TEMP_CRIT:"{#SNMPVALUE}"}','Dell Force S-Series: Device {#SNMPVALUE}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31281}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Dell Force S-Series: Device {#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"}','dc1064de6a6b4533be812e590b96927b',''), ('14462','{31284}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','Dell Force S-Series: Device {#SNMPVALUE}: Temperature is too low','','0','3','',NULL,'0','2','1','{31285}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Dell Force S-Series: Device {#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','f1bbf02af05041ef95ff80ff18fc02a7',''), ('14463','{23840}<>{23841} and length({23842})>0','Dell Force S-Series: #{#SNMPVALUE}: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Dell Force S-Series: #{#SNMPVALUE}: Device has been replaced (new serial number received)','6f02e903dab24bf294015f43e0b52504',''), ('14474','{23846}<>{23847} and length({23848})>0','D-Link DES 7200: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','7d8f92f3c5df4b5091f49e07e50fae44',''), ('14476','{31288}>{$TEMP_WARN:"{#SNMPVALUE}"}','D-Link DES 7200: {#SNMPVALUE}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31289}<{$TEMP_WARN:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','D-Link DES 7200: {#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"}','8486ed430ee24b13b65786e5b4857684',''), ('14477','{31286}>{$TEMP_CRIT:"{#SNMPVALUE}"}','D-Link DES 7200: {#SNMPVALUE}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31287}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','D-Link DES 7200: {#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"}','b675df20392d458f9a53dace6bde978a',''), ('14478','{31290}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','D-Link DES 7200: {#SNMPVALUE}: Temperature is too low','','0','3','',NULL,'0','2','1','{31291}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','D-Link DES 7200: {#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','ef5a9113e96d4cc095d384cbeeef9bc5',''), ('14492','{23855}<>{23856} and length({23857})>0','D-Link DES_DGS Switch: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','D-Link DES_DGS Switch: Device has been replaced (new serial number received)','3aa2e47f4b8145b8a5e4f67b0987ca2b',''), ('14493','{23852}<>{23853} and length({23854})>0','D-Link DES_DGS Switch: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','40a2ad291ded4bf9bc72adc2b8653b98',''), ('14495','{31294}>{$TEMP_WARN:"{#SNMPVALUE}"}','D-Link DES_DGS Switch: #{#SNMPVALUE}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31295}<{$TEMP_WARN:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','D-Link DES_DGS Switch: #{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"}','bc0c87dbf83e49dab264e9f2bf1bb418',''), ('14496','{31292}>{$TEMP_CRIT:"{#SNMPVALUE}"}','D-Link DES_DGS Switch: #{#SNMPVALUE}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31293}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','D-Link DES_DGS Switch: #{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"}','0cbd0c61e07245af863a19f296f38195',''), ('14497','{31296}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','D-Link DES_DGS Switch: #{#SNMPVALUE}: Temperature is too low','','0','3','',NULL,'0','2','1','{31297}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','D-Link DES_DGS Switch: #{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','8d93aea3774d4a3bbd98127273c648d1',''), ('14511','{31298}>{$TEMP_WARN}','Extreme EXOS: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','0','1','{31299}<{$TEMP_WARN}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Extreme EXOS: Temperature is above warning threshold: >{$TEMP_WARN}','54362c94be0243ffb907905def0ad06a',''), ('14513','{31300}<{$TEMP_CRIT_LOW}','Extreme EXOS: Temperature is too low','','0','3','',NULL,'0','0','1','{31301}>{$TEMP_CRIT_LOW}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Extreme EXOS: Temperature is too low: <{$TEMP_CRIT_LOW}','91a10b28c7a14dd09110448a28a328f9',''), ('14514','{23861}<>{23862} and length({23863})>0','Extreme EXOS: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Extreme EXOS: Device has been replaced (new serial number received)','db1760a34c884b1aa36e4fc4639791dd',''), ('14515','{23858}<>{23859} and length({23860})>0','Extreme EXOS: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','dd9fbc501f9047fd8fae9dfd741e3778',''), ('14551','{31307}>{$TEMP_WARN:"{#SNMPVALUE}"}','HP Comware HH3C: {#SNMPVALUE}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31308}<{$TEMP_WARN:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','HP Comware HH3C: {#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"}','cda6a4e305fe41239462d2f85acc5590',''), ('14552','{31305}>{$TEMP_CRIT:"{#SNMPVALUE}"}','HP Comware HH3C: {#SNMPVALUE}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31306}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','HP Comware HH3C: {#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"}','bbad03018e8e408c952cca2615b4eab3',''), ('14553','{31309}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','HP Comware HH3C: {#SNMPVALUE}: Temperature is too low','','0','3','',NULL,'0','2','1','{31310}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','HP Comware HH3C: {#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','340a9c397bff4ac5a37a2ada9d0c1e69',''), ('14556','{23889}<>{23890} and length({23891})>0','HP Comware HH3C: {#ENT_NAME}: Device has been replaced','','0','1','The device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','HP Comware HH3C: {#ENT_NAME}: Device has been replaced (new serial number received)','d3633f4584344570a1c0570f0b082590',''), ('14557','{23886}<>{23887} and length({23888})>0','HP Comware HH3C: {#ENT_NAME}: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','17e0f72418f4432d852b5c39ddf675bd',''), ('14589','{31319}>{$TEMP_WARN:"{#ENT_NAME}"}','Huawei VRP: {#ENT_NAME}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31320}<{$TEMP_WARN:"{#ENT_NAME}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Huawei VRP: {#ENT_NAME}: Temperature is above warning threshold: >{$TEMP_WARN:"{#ENT_NAME}"}','c54c36491adf4a488d11f2538b337129',''), ('14590','{31317}>{$TEMP_CRIT:"{#ENT_NAME}"}','Huawei VRP: {#ENT_NAME}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31318}<{$TEMP_CRIT:"{#ENT_NAME}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Huawei VRP: {#ENT_NAME}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#ENT_NAME}"}','d28db9267b9d488f8f359dd7d14d2ac1',''), ('14591','{31321}<{$TEMP_CRIT_LOW:"{#ENT_NAME}"}','Huawei VRP: {#ENT_NAME}: Temperature is too low','','0','3','',NULL,'0','2','1','{31322}>{$TEMP_CRIT_LOW:"{#ENT_NAME}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Huawei VRP: {#ENT_NAME}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#ENT_NAME}"}','7b2cffb3ad47440d8b79b39958794ed9',''), ('14592','{23901}<>{23902} and length({23903})>0','Huawei VRP: {#ENT_NAME}: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Huawei VRP: {#ENT_NAME}: Device has been replaced (new serial number received)','e379ca4d50a3434e82841e8884a84656',''), ('14603','{23907}<>{23908} and length({23909})>0','Intel Qlogic: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','1ca7574040da41a3bf416daa8172d952',''), ('14606','{31329}<{$TEMP_CRIT_LOW:"{#SENSOR_INFO}"}','Intel Qlogic: {#SENSOR_INFO}: Temperature is too low','','0','3','',NULL,'0','2','1','{31330}>{$TEMP_CRIT_LOW:"{#SENSOR_INFO}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Intel Qlogic: {#SENSOR_INFO}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SENSOR_INFO}"}','03e351b056504735b02da8c37dad6bf0',''), ('14607','{23910}<>{23911} and length({23912})>0','Intel Qlogic: {#ENT_NAME}: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Intel Qlogic: {#ENT_NAME}: Device has been replaced (new serial number received)','90778aeb97244258a830e89eeb263e54',''), ('14621','{23913}<>{23914} and length({23915})>0','Juniper: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Juniper: Device has been replaced (new serial number received)','9f1f3316ed6f4d50a4c9f71a15f35d50',''), ('14624','{31333}>{$TEMP_WARN:"{#SENSOR_INFO}"}','Juniper: {#SENSOR_INFO}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31334}<{$TEMP_WARN:"{#SENSOR_INFO}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Juniper: {#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SENSOR_INFO}"}','51113c80e4bd46de8ea247e0bd3b19dd',''), ('14625','{31331}>{$TEMP_CRIT:"{#SENSOR_INFO}"}','Juniper: {#SENSOR_INFO}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31332}<{$TEMP_CRIT:"{#SENSOR_INFO}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Juniper: {#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SENSOR_INFO}"}','c82ca2b550f540b7a4c8f9548e15cfb0',''), ('14626','{31335}<{$TEMP_CRIT_LOW:"{#SENSOR_INFO}"}','Juniper: {#SENSOR_INFO}: Temperature is too low','','0','3','',NULL,'0','2','1','{31336}>{$TEMP_CRIT_LOW:"{#SENSOR_INFO}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Juniper: {#SENSOR_INFO}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SENSOR_INFO}"}','35b56753b2424f0989ca09cb67f7d9a3',''), ('14661','{23931}<>{23932} and length({23933})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','6c1dcb2e8e76405887af69a6a08e53df',''), ('14662','{23928}<>{23929} and length({23930})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','62a9cd04a4dc4f5a9b59a01e54fb983f',''), ('14680','{23937}<>{23938} and length({23939})>0','Netgear Fastpath: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Netgear Fastpath: Device has been replaced (new serial number received)','eba057a7ef5743ecb2c037476c97fc38',''), ('14683','{31351}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','Netgear Fastpath: #{#SNMPVALUE}: Temperature is too low','','0','3','',NULL,'0','2','1','{31352}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Netgear Fastpath: #{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','222b4523c61144d1a91bb1b5cbd63caf',''), ('14698','{23946}<>{23947} and length({23948})>0','QTech QSW: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','QTech QSW: Device has been replaced (new serial number received)','83db3bd248994482a92ba86e5d3ae5ab',''), ('14699','{23943}<>{23944} and length({23945})>0','QTech QSW: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','e4682afd0cc547eea9605452b7df79f4',''), ('14709','{23955}<>{23956} and length({23957})>0','TP-LINK: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','TP-LINK: Device has been replaced (new serial number received)','57a906ac8f994ebaa2543a5eb4949db7',''), ('14710','{23952}<>{23953} and length({23954})>0','TP-LINK: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','ee797ebfc568468d8a3e9a8b388afb6d',''), ('14724','{23958}<>{23959} and length({23960})>0','Ubiquiti AirOS: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','ab4a91cf3c2a4305a59727558c00a1f8',''), ('14912','{23898}<>{23899} and length({23900})>0','HP Enterprise Switch: Device has been replaced','','0','1','The device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','HP Enterprise Switch: Device has been replaced (new serial number received)','6b9b9b0d1ff24074bb344d04efe53444',''), ('14913','{23895}<>{23896} and length({23897})>0','HP Enterprise Switch: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','a9dcdf4129d041eca8dadc8bfbc455ee',''), ('14914','{31313}>{$TEMP_WARN:"{#SENSOR_INFO}"}','HP Enterprise Switch: {#SENSOR_INFO}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31314}<{$TEMP_WARN:"{#SENSOR_INFO}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','HP Enterprise Switch: {#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SENSOR_INFO}"}','b549cc5016884818bf416c415618171f',''), ('14915','{31311}>{$TEMP_CRIT:"{#SENSOR_INFO}"}','HP Enterprise Switch: {#SENSOR_INFO}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31312}<{$TEMP_CRIT:"{#SENSOR_INFO}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','HP Enterprise Switch: {#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SENSOR_INFO}"}','5d0d743c7f5449f4a429845ab3894d19',''), ('14916','{31315}<{$TEMP_CRIT_LOW:"{#SENSOR_INFO}"}','HP Enterprise Switch: {#SENSOR_INFO}: Temperature is too low','','0','3','',NULL,'0','2','1','{31316}>{$TEMP_CRIT_LOW:"{#SENSOR_INFO}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','HP Enterprise Switch: {#SENSOR_INFO}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SENSOR_INFO}"}','a4294d3ad024438aaba4234811d65582',''), ('14937','{23922}<>{23923} and length({23924})>0','Mellanox: {#ENT_NAME}: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Mellanox: {#ENT_NAME}: Device has been replaced (new serial number received)','585db2b2a42b4eb09770ca2241a557d0',''), ('15330','{16818}=1','Alcatel TiMOS: #{#SNMPINDEX}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','10f9f5cd2f1b4d09abba3ae48b482eb8',''), ('15331','{16819}=1','Dell Force S-Series: PSU {#SNMPVALUE}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','764f08ab7a29481fa73a63ae256ff154',''), ('15332','{16820}=1','Dell Force S-Series: PSU {#SNMPVALUE}: Power supply is not in normal state','','0','1','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a7d4ac882ec24cce9839c6012c7fa562',''), ('15333','{16821}=1','Dell Force S-Series: Fan {#SNMPVALUE}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','aecc6fdd58404347b3074b0c1db63f09',''), ('15334','{16822}=1','Dell Force S-Series: Fan {#SNMPVALUE}: Fan is not in normal state','','0','1','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a53271304dcf418aa5afdaa145436b70',''), ('15337','{16829}=1','Intel Qlogic: {#SNMPVALUE}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','1d0c9610cd984124bb7fed812e9edb16',''), ('15338','{16830}=1','Intel Qlogic: {#SNMPVALUE}: Power supply is in warning state','','0','2','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7ae4943842ea491c899ce0f84210e202',''), ('15339','{16831}=1','Intel Qlogic: {#SNMPVALUE}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7ceeb8d2ec314fc1b8dbe9746e9a667a',''), ('15340','{16832}=1','D-Link DES_DGS Switch: #{#SNMPVALUE}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','aabaa197e62649cd929353f131c3fa00',''), ('15341','{16833}=1','D-Link DES_DGS Switch: #{#SNMPVALUE}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e8cb2d8bc3ee44c58c5111d3ead41d1b',''), ('15366','{16890}=1','D-Link DES 7200: {#SNMPVALUE}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4cc6f58430374fc4b2f1bced4e2097f6',''), ('15367','{16891}=1','D-Link DES 7200: {#SNMPVALUE}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a5cb052573394829877fdc6bf3d501c0',''), ('15369','{16895}=1','Extreme EXOS: PSU {#SNMPVALUE}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','710f1bf31381470f9a13c45f887bda4e',''), ('15370','{16896}=1','Extreme EXOS: Fan {#SNMPVALUE}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','bd0c753f33c441a0bf4567f8b81186d6',''), ('15371','{16897}=1 or {16898}=1','HP Comware HH3C: {#ENT_NAME}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b0821c8e75e14e53906c3a3f209a2785',''), ('15372','{16899}=1 or {16900}=1 or {16901}=1','HP Comware HH3C: {#ENT_NAME}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','0c3cb88352e2417fb2b80bb78448fb35',''), ('15373','{16902}=1','HP Enterprise Switch: {#ENT_DESCR}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4fba6383ed4c4cd89b349a5dfccb7909',''), ('15374','{16903}=1','HP Enterprise Switch: {#ENT_DESCR}: Fan is in warning state','','0','2','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6cf626561b33468cb1e2c9e590334c4b',''), ('15375','{16904}=1','HP Enterprise Switch: {#ENT_DESCR}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','81553d4157ce4c938c25b9403c5e572a',''), ('15376','{16905}=1','HP Enterprise Switch: {#ENT_DESCR}: Power supply is in warning state','','0','2','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','aeb31d4c3958433c9a0105f79156094a',''), ('15377','{16906}=1','Juniper: {#SNMPVALUE}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','f8f1dee0b0ff465d98c6f6bcdfaff17f',''), ('15378','{16907}=1','Juniper: {#SNMPVALUE}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e577226331f6483fbd1e414bb7d365f7',''), ('15379','{16908}=1','Brocade Nonstackable: PSU {#PSU_INDEX}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','fbe256ab504b4cb98fec650972d5c41a',''), ('15380','{16909}=1','Brocade Nonstackable: PSU {#PSU_INDEX}: Power supply is not in normal state','','0','1','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6163e41576734f469146bc818b2856a2',''), ('15381','{16910}=1','Brocade Nonstackable: Fan {#FAN_INDEX}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','dfb8d67a8b0c4128aff9d1643e40afc0',''), ('15382','{16911}=1','Brocade Nonstackable: Fan {#FAN_INDEX}: Fan is not in normal state','','0','1','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','74ef51062e194213bbf61f747624313c',''), ('15383','{16912}=1','Brocade Stackable: Unit {#PSU_UNIT} PSU {#PSU_INDEX}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b2b78ace5fc748129fd73ae4283802a6',''), ('15384','{16913}=1','Brocade Stackable: Unit {#PSU_UNIT} PSU {#PSU_INDEX}: Power supply is not in normal state','','0','1','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d7d0b3a51e2d4737938d310ba6c4a9c9',''), ('15385','{16914}=1','Brocade Stackable: Unit {#FAN_UNIT} Fan {#FAN_INDEX}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','10f683ff42054948bad36cc52f9c968e',''), ('15386','{16915}=1','Brocade Stackable: Unit {#FAN_UNIT} Fan {#FAN_INDEX}: Fan is not in normal state','','0','1','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','821381a387194c7ca4e4ddd1cf734a4c',''), ('15391','{16924}=1','Brocade FC: {#SENSOR_INFO}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','649e7344411242738d9824f861b3c49a',''), ('15392','{16925}=1','Brocade FC: {#SENSOR_INFO}: Power supply is not in normal state','','0','1','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','bfe2f4085f6840da9e8d30f37bb29fdb',''), ('15393','{16926}=1','Brocade FC: {#SENSOR_INFO}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','75003433a8304644a20d11b82dcbae14',''), ('15394','{16927}=1','Brocade FC: {#SENSOR_INFO}: Fan is not in normal state','','0','1','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','83e8182fd7034edca8317fa91776b6d2',''), ('15395','{16928}=1','Huawei VRP: #{#SNMPVALUE}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','ba459f7ce17a4f71a46fa1a0337f0f89',''), ('15398','{16935}=1','Netgear Fastpath: #{#SNMPVALUE}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','ce48c2b0a07d4528b95668c853b6b4e0',''), ('15399','{16936}=1','Netgear Fastpath: #{#SNMPVALUE}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','78d4bcad8d7d4694ad492b37003fa0b0',''), ('15640','{33706}>{$ZABBIX.PROXY.UTIL.MAX:"vmware cache"}','Zabbix proxy: Excessive vmware cache usage','','0','3','Consider increasing `VMwareCacheSize` in the `zabbix_proxy.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix proxy: More than {$ZABBIX.PROXY.UTIL.MAX:"vmware cache"}% used in the vmware cache','69707cc61b7d408f8683dae435183d4f',''), ('15641','{28384}>{$ZABBIX.PROXY.UTIL.MAX:"vmware collector"}','Zabbix proxy: Utilization of vmware collector processes is high','','0','3','Indicates potential performance issues with the vmware collector, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28384}<{$ZABBIX.PROXY.UTIL.MIN:"vmware collector"}','0','','0','','0','Zabbix proxy: Utilization of vmware collector processes over {$ZABBIX.PROXY.UTIL.MAX:"vmware collector"}%','a1051b5ac8334125a40cb36a95605284',''), ('15717','{17866}=1','Arista: {#SENSOR_INFO}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','11dddf9f12a0423bb886808759cd429d',''), ('15718','{23713}<>{23714} and length({23715})>0','Arista: {#ENT_NAME}: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Arista: {#ENT_NAME}: Device has been replaced (new serial number received)','218209a40ec54a489738345c4485be83',''), ('15719','{17869}=1','Arista: {#ENT_NAME}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4faa99278cd94abaace8b09529a6efaa',''), ('15720','{17870}=1','Brocade FC: System status is in critical state','','0','4','Please check the device for errors',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b91af8b94e2047538376be9911beadee',''), ('15721','{17871}=1 or {17872}=1','Brocade FC: System status is in warning state','','0','2','Please check the device for warnings',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b17d4a2bae804c968984b763fa4562fc',''), ('15722','{17873}=1','Juniper: System status is in critical state','','0','4','Please check the device for errors',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','1190bb9c05424ac5a0052bd191c274f2',''), ('15762','{24996}<>{24997} and length({24998})>0','HP iLO: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','HP iLO: Device has been replaced (new serial number received)','7e8d377e1b49469a8b19b94e6dad97ce',''), ('15781','{17971}=1','HP iLO: Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7a34714fcbb74294af97bc4f39c21413',''), ('15782','{17972}=1','HP iLO: Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply is in warning state','','0','2','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','db7679204aa544cb8ffe38df5c68b7ce',''), ('15783','{17973}=1','HP iLO: Fan {#SNMPINDEX}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','0731e25040504428acb466b0d4e2803a',''), ('15784','{17974}=1','HP iLO: Fan {#SNMPINDEX}: Fan is in warning state','','0','2','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c8c9ea062fa849b0b550ad4dd1d2cec7',''), ('15785','{17975}=1','HP iLO: {#CNTLR_LOCATION}: Disk array controller is in critical state','','0','4','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a318564fe4eb488eba251f3cba3d31b6',''), ('15786','{17976}=1','HP iLO: {#CNTLR_LOCATION}: Disk array controller is in warning state','','0','3','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6b65d2b2477c4567953fcec31b1ab9a3',''), ('15787','{17977}=1','HP iLO: #{#CACHE_CNTRL_INDEX}: Disk array cache controller is in critical state!','','0','3','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a4c81fb1ef6140199bbde241691183cd',''), ('15790','{17983}=1 or {17984}=1','HP iLO: #{#CACHE_CNTRL_INDEX}: Disk array cache controller battery is in critical state!','','0','3','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b3049aa19e5d45d28937c1af262aba3e',''), ('15792','{17987}=1','HP iLO: {#DISK_LOCATION}: Physical disk failed','','0','4','Please check physical disk for warnings or errors',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','95e887baa0b9480a8a59848b07418c6b',''), ('15793','{17988}=1','HP iLO: {#DISK_LOCATION}: Physical disk is in warning state','','0','2','Please check physical disk for warnings or errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','857540089794495799eb1a04b172c70c',''), ('15794','{17989}=1 or {17990}=1','HP iLO: {#DISK_LOCATION}: Physical disk S.M.A.R.T. failed','','0','4','Disk probably requires replacement.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','180f8f9124a041d0bf1c350d0226c3d3',''), ('15795','{24999}<>{25000} and length({25001})>0','HP iLO: {#DISK_LOCATION}: Disk has been replaced','','0','1','Disk serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','HP iLO: {#DISK_LOCATION}: Disk has been replaced (new serial number received)','87bcd812474b44729da19f49344ba976',''), ('15796','{17993}=1','HP iLO: Disk {#SNMPINDEX}({#DISK_NAME}): Virtual disk failed','','0','4','Please check virtual disk for warnings or errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','3f809df0d34f47a2bc1addbf2f4387ac',''), ('15797','{17994}=1','HP iLO: Disk {#SNMPINDEX}({#DISK_NAME}): Virtual disk is not in OK state','','0','2','Please check virtual disk for warnings or errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','439b8dfa246f42d190d8f4deeebfeb53',''), ('15824','{18031}=1','IBM IMM: System is in unrecoverable state!','','0','4','Please check the device for faults',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','ea8fbc9446d34033b60a8214b8199ea1',''), ('15825','{18032}=1','IBM IMM: System status is in critical state','','0','4','Please check the device for errors',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a76c198aeb7d452a8c710ddde21aa12e',''), ('15826','{18033}=1','IBM IMM: System status is in warning state','','0','2','Please check the device for warnings',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','acd147a3d41b49478410f4d49562cde2',''), ('15827','{25002}<>{25003} and length({25004})>0','IBM IMM: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','IBM IMM: Device has been replaced (new serial number received)','b2bf06198d5840c6905ea6cf6d9e443c',''), ('15828','{31425}>{$TEMP_WARN:"{#SNMPVALUE}"}','IBM IMM: {#SNMPVALUE}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31426}<{$TEMP_WARN:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','IBM IMM: {#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"}','ecb8ac5828e44a94a32164dce9811fbc',''), ('15829','{31423}>{$TEMP_CRIT:"{#SNMPVALUE}"}','IBM IMM: {#SNMPVALUE}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31424}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','IBM IMM: {#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"}','958eebe18bd94670b2b9029064a84bc9',''), ('15830','{31427}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','IBM IMM: {#SNMPVALUE}: Temperature is too low','','0','3','',NULL,'0','2','1','{31428}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','IBM IMM: {#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','8ff82421c9f74d509766e7dc139ab2c8',''), ('15831','{18042}>{$TEMP_WARN:"Ambient"}','IBM IMM: Ambient: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{18043}<{$TEMP_WARN:"Ambient"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','IBM IMM: Ambient: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"}','e6bcdf201e304471aa84cc8d34b290ec',''), ('15832','{18044}>{$TEMP_CRIT:"Ambient"}','IBM IMM: Ambient: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{18045}<{$TEMP_CRIT:"Ambient"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','IBM IMM: Ambient: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"}','615967071d6b40f6b02e386c9586a66e',''), ('15833','{18046}<{$TEMP_CRIT_LOW:"Ambient"}','IBM IMM: Ambient: Temperature is too low','','0','3','',NULL,'0','2','1','{18047}>{$TEMP_CRIT_LOW:"Ambient"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','IBM IMM: Ambient: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"}','dd773e52746840e4b6f7517740873102',''), ('15834','{18048}>{$TEMP_WARN:"CPU"}','IBM IMM: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{18049}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','IBM IMM: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','3b7396311de1487e90416aa2c42cb03d',''), ('15835','{18050}>{$TEMP_CRIT:"CPU"}','IBM IMM: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{18051}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','IBM IMM: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','e994d3d8398147c49062bc712dc4c204',''), ('15836','{18052}<{$TEMP_CRIT_LOW:"CPU"}','IBM IMM: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{18053}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','IBM IMM: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','e39d0e009efb4216ac7cbbe544ad4bc0',''), ('15837','{18054}=1','IBM IMM: {#PSU_DESCR}: Power supply is not in normal state','','0','1','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4e7767484cff49b098e73b068ef04160',''), ('15838','{18055}=1','IBM IMM: {#FAN_DESCR}: Fan is not in normal state','','0','1','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b2d4ae5922174af6b0ef274accc8ae21',''), ('15839','{18056}=1','IBM IMM: {#SNMPINDEX}: Physical disk is not in OK state','','0','2','Please check physical disk for warnings or errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','45eb3fe3369a41b199179e2eca725027',''), ('15845','{31431}>{$TEMP_WARN:"{#SENSOR_DESCR}"}','Supermicro Aten: {#SENSOR_DESCR}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31432}<{$TEMP_WARN:"{#SENSOR_DESCR}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Supermicro Aten: {#SENSOR_DESCR}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SENSOR_DESCR}"}','2c2914d1c8c846d180ee308fa861540e',''), ('15846','{31429}>{$TEMP_CRIT:"{#SENSOR_DESCR}"}','Supermicro Aten: {#SENSOR_DESCR}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31430}<{$TEMP_CRIT:"{#SENSOR_DESCR}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Supermicro Aten: {#SENSOR_DESCR}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SENSOR_DESCR}"}','1a48aee477d54d34bdea47fc6027968c',''), ('15847','{31433}<{$TEMP_CRIT_LOW:"{#SENSOR_DESCR}"}','Supermicro Aten: {#SENSOR_DESCR}: Temperature is too low','','0','3','',NULL,'0','2','1','{31434}>{$TEMP_CRIT_LOW:"{#SENSOR_DESCR}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Supermicro Aten: {#SENSOR_DESCR}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SENSOR_DESCR}"}','1439e7a34bbf4046836890f208f99a48',''), ('15853','{33738}>{$ZABBIX.SERVER.UTIL.MAX:"LLD manager"}','Zabbix server: Utilization of LLD manager processes is high','','0','3','Indicates potential performance issues with the LLD manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33738}<{$ZABBIX.SERVER.UTIL.MIN:"LLD manager"}','0','','0','','0','Zabbix server: Utilization of LLD manager processes over {$ZABBIX.SERVER.UTIL.MAX:"LLD manager"}%','39109dabd9454844996864834292c0c4',''), ('15855','{33739}>{$ZABBIX.SERVER.UTIL.MAX:"LLD worker"}','Zabbix server: Utilization of LLD worker processes is high','','0','3','Indicates potential performance issues with the LLD worker, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33739}<{$ZABBIX.SERVER.UTIL.MIN:"LLD worker"}','0','','0','','0','Zabbix server: Utilization of LLD worker processes over {$ZABBIX.SERVER.UTIL.MAX:"LLD worker"}%','8eca01d6e0e64f5795d3a5b5e4aa593d',''), ('15857','{33855}>{$ZABBIX.SERVER.UTIL.MAX:"configuration cache"}','Zabbix server: Excessive configuration cache usage','','0','3','Consider increasing `CacheSize` in the `zabbix_server.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix server: More than {$ZABBIX.SERVER.UTIL.MAX:"configuration cache"}% used in the configuration cache','9d5f36b486ab4781a5f58210143785e9',''), ('15858','{33858}>{$ZABBIX.SERVER.UTIL.MAX:"history cache"}','Zabbix server: Excessive history cache usage','','0','3','Consider increasing `HistoryCacheSize` in the `zabbix_server.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix server: More than {$ZABBIX.SERVER.UTIL.MAX:"history cache"}% used in the history cache','a66914bd7f2e4442a8b555deacebb4c9',''), ('15859','{33859}>{$ZABBIX.SERVER.UTIL.MAX:"index cache"}','Zabbix server: Excessive history index cache usage','','0','3','Consider increasing `HistoryIndexCacheSize` in the `zabbix_server.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix server: More than {$ZABBIX.SERVER.UTIL.MAX:"index cache"}% used in the history index cache','6aedbc1768ed4f949890248af98fdaa2',''), ('15860','{33860}>{$ZABBIX.SERVER.UTIL.MAX:"trend cache"}','Zabbix server: Excessive trends cache usage','','0','3','Consider increasing `TrendCacheSize` in the `zabbix_server.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix server: More than {$ZABBIX.SERVER.UTIL.MAX:"trend cache"}% used in the trends cache','742a4938fdd24026921b375a67cea921',''), ('15861','{33857}>{$ZABBIX.SERVER.UTIL.MAX:"vmware cache"}','Zabbix server: Excessive vmware cache usage','','0','3','Consider increasing `VMwareCacheSize` in the `zabbix_server.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix server: More than {$ZABBIX.SERVER.UTIL.MAX:"vmware cache"}% used in the vmware cache','08e6c62dd52b4a0694be910c4f4fa997',''), ('15862','{33856}>{$ZABBIX.SERVER.UTIL.MAX:"value cache"}','Zabbix server: Excessive value cache usage','','0','3','Consider increasing `ValueCacheSize` in the `zabbix_server.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix server: More than {$ZABBIX.SERVER.UTIL.MAX:"value cache"}% used in the value cache','d35671cd02034aeba3c7c71ed618f4ee',''), ('15863','{18086}>100','Zabbix server: More than 100 items have been missing data for over 10 minutes','','0','2','Indicates potential issues with network connectivity, agent failures, or unresponsive monitored resources that require attention.',NULL,'0','0','0','','0','','0','','0','','c8eddec1bb9740bb8ca05f74bd023fcc',''), ('15864','{33817}>{$ZABBIX.SERVER.UTIL.MAX:"alerter"}','Zabbix server: Utilization of alerter processes is high','','0','3','Indicates potential performance issues with the alerter, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33817}<{$ZABBIX.SERVER.UTIL.MIN:"alerter"}','0','','0','','0','Zabbix server: Utilization of alerter processes over {$ZABBIX.SERVER.UTIL.MAX:"alerter"}%','d4aae59fe9294da5b1c724b051af1683',''), ('15865','{33818}>{$ZABBIX.SERVER.UTIL.MAX:"alert manager"}','Zabbix server: Utilization of alert manager processes is high','','0','3','Indicates potential performance issues with the alert manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33818}<{$ZABBIX.SERVER.UTIL.MIN:"alert manager"}','0','','0','','0','Zabbix server: Utilization of alert manager processes over {$ZABBIX.SERVER.UTIL.MAX:"alert manager"}%','310f33d488ae4f5faa245c96f8dc583c',''), ('15866','{33821}>{$ZABBIX.SERVER.UTIL.MAX:"configuration syncer"}','Zabbix server: Utilization of configuration syncer processes is high','','0','3','Indicates potential performance issues with the configuration syncer, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33821}<{$ZABBIX.SERVER.UTIL.MIN:"configuration syncer"}','0','','0','','0','Zabbix server: Utilization of configuration syncer processes over {$ZABBIX.SERVER.UTIL.MAX:"configuration syncer"}%','f1caa410beea429eb91daaec8f027eb3',''), ('15868','{33826}>{$ZABBIX.SERVER.UTIL.MAX:"escalator"}','Zabbix server: Utilization of escalator processes is high','','0','3','Indicates potential performance issues with the escalator, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33826}<{$ZABBIX.SERVER.UTIL.MIN:"escalator"}','0','','0','','0','Zabbix server: Utilization of escalator processes over {$ZABBIX.SERVER.UTIL.MAX:"escalator"}%','de07be1b10d9446abed4a387dd4980dd',''), ('15869','{33828}>{$ZABBIX.SERVER.UTIL.MAX:"history syncer"}','Zabbix server: Utilization of history syncer processes is high','','0','3','Indicates potential performance issues with the history syncer, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33828}<{$ZABBIX.SERVER.UTIL.MIN:"history syncer"}','0','','0','','0','Zabbix server: Utilization of history syncer processes over {$ZABBIX.SERVER.UTIL.MAX:"history syncer"}%','b8e6a6ce3667459bad05afa850e99bc0',''), ('15870','{33829}>{$ZABBIX.SERVER.UTIL.MAX:"housekeeper"}','Zabbix server: Utilization of housekeeper processes is high','','0','3','Indicates potential performance issues with the housekeeper, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33829}<{$ZABBIX.SERVER.UTIL.MIN:"housekeeper"}','0','','0','','0','Zabbix server: Utilization of housekeeper processes over {$ZABBIX.SERVER.UTIL.MAX:"housekeeper"}%','b879623a755e4b79972c2ad3189886a2',''), ('15871','{33831}>{$ZABBIX.SERVER.UTIL.MAX:"http poller"}','Zabbix server: Utilization of http poller processes is high','','0','3','Indicates potential performance issues with the http poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33831}<{$ZABBIX.SERVER.UTIL.MIN:"http poller"}','0','','0','','0','Zabbix server: Utilization of http poller processes over {$ZABBIX.SERVER.UTIL.MAX:"http poller"}%','f7b4217cdd4b46b1949a5e6ac5fc3d02',''), ('15872','{33832}>{$ZABBIX.SERVER.UTIL.MAX:"icmp pinger"}','Zabbix server: Utilization of icmp pinger processes is high','','0','3','Indicates potential performance issues with the icmp pinger, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33832}<{$ZABBIX.SERVER.UTIL.MIN:"icmp pinger"}','0','','0','','0','Zabbix server: Utilization of icmp pinger processes over {$ZABBIX.SERVER.UTIL.MAX:"icmp pinger"}%','312d404ff20740f38385ebe7c3e36d8f',''), ('15873','{33833}>{$ZABBIX.SERVER.UTIL.MAX:"ipmi manager"}','Zabbix server: Utilization of ipmi manager processes is high','','0','3','Indicates potential performance issues with the ipmi manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33833}<{$ZABBIX.SERVER.UTIL.MIN:"ipmi manager"}','0','','0','','0','Zabbix server: Utilization of ipmi manager processes over {$ZABBIX.SERVER.UTIL.MAX:"ipmi manager"}%','3fe728ab8de9447c899b2a919b885cec',''), ('15874','{33834}>{$ZABBIX.SERVER.UTIL.MAX:"ipmi poller"}','Zabbix server: Utilization of ipmi poller processes is high','','0','3','Indicates potential performance issues with the ipmi poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33834}<{$ZABBIX.SERVER.UTIL.MIN:"ipmi poller"}','0','','0','','0','Zabbix server: Utilization of ipmi poller processes over {$ZABBIX.SERVER.UTIL.MAX:"ipmi poller"}%','dbf27d6a629a4a2cb75e04849b93ac0f',''), ('15875','{33835}>{$ZABBIX.SERVER.UTIL.MAX:"java poller"}','Zabbix server: Utilization of java poller processes is high','','0','3','Indicates potential performance issues with the java poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33835}<{$ZABBIX.SERVER.UTIL.MIN:"java poller"}','0','','0','','0','Zabbix server: Utilization of java poller processes over {$ZABBIX.SERVER.UTIL.MAX:"java poller"}%','304a2dcf77c8494fb18f52cc6bae73a9',''), ('15876','{33839}>{$ZABBIX.SERVER.UTIL.MAX:"poller"}','Zabbix server: Utilization of poller processes is high','','0','3','Indicates potential performance issues with the poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33839}<{$ZABBIX.SERVER.UTIL.MIN:"poller"}','0','','0','','0','Zabbix server: Utilization of poller processes over {$ZABBIX.SERVER.UTIL.MAX:"poller"}%','689ed5dd9bbd4873a825dfa675378d50',''), ('15877','{33840}>{$ZABBIX.SERVER.UTIL.MAX:"preprocessing manager"}','Zabbix server: Utilization of preprocessing manager processes is high','','0','3','Indicates potential performance issues with the preprocessing manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33840}<{$ZABBIX.SERVER.UTIL.MIN:"preprocessing manager"}','0','','0','','0','Zabbix server: Utilization of preprocessing manager processes over {$ZABBIX.SERVER.UTIL.MAX:"preprocessing manager"}%','b43f04a35e17415bb81bfb59357d45ac',''), ('15878','{33841}>{$ZABBIX.SERVER.UTIL.MAX:"preprocessing worker"}','Zabbix server: Utilization of preprocessing worker processes is high','','0','3','Indicates potential performance issues with the preprocessing worker, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33841}<{$ZABBIX.SERVER.UTIL.MIN:"preprocessing worker"}','0','','0','','0','Zabbix server: Utilization of preprocessing worker processes over {$ZABBIX.SERVER.UTIL.MAX:"preprocessing worker"}%','1c28310eb72047449437ee94854029fa',''), ('15879','{33842}>{$ZABBIX.SERVER.UTIL.MAX:"proxy poller"}','Zabbix server: Utilization of proxy poller processes is high','','0','3','Indicates potential performance issues with the proxy poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33842}<{$ZABBIX.SERVER.UTIL.MIN:"proxy poller"}','0','','0','','0','Zabbix server: Utilization of proxy poller processes over {$ZABBIX.SERVER.UTIL.MAX:"proxy poller"}%','c0d2c7c008cb45ee8b032b7c83018ae1',''), ('15880','{33845}>{$ZABBIX.SERVER.UTIL.MAX:"self-monitoring"}','Zabbix server: Utilization of self-monitoring processes is high','','0','3','Indicates potential performance issues with the self-monitoring, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33845}<{$ZABBIX.SERVER.UTIL.MIN:"self-monitoring"}','0','','0','','0','Zabbix server: Utilization of self-monitoring processes over {$ZABBIX.SERVER.UTIL.MAX:"self-monitoring"}%','0d9b8d1f2d7d454ab472320ac172252c',''), ('15881','{33848}>{$ZABBIX.SERVER.UTIL.MAX:"snmp trapper"}','Zabbix server: Utilization of snmp trapper processes is high','','0','3','Indicates potential performance issues with the snmp trapper, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33848}<{$ZABBIX.SERVER.UTIL.MIN:"snmp trapper"}','0','','0','','0','Zabbix server: Utilization of snmp trapper processes over {$ZABBIX.SERVER.UTIL.MAX:"snmp trapper"}%','4726331c52284261aa3f347448c1c3c5',''), ('15882','{33849}>{$ZABBIX.SERVER.UTIL.MAX:"task manager"}','Zabbix server: Utilization of task manager processes is high','','0','3','Indicates potential performance issues with the task manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33849}<{$ZABBIX.SERVER.UTIL.MIN:"task manager"}','0','','0','','0','Zabbix server: Utilization of task manager processes over {$ZABBIX.SERVER.UTIL.MAX:"task manager"}%','07d29e82b74a4cc5b0d701458af302b7',''), ('15883','{33850}>{$ZABBIX.SERVER.UTIL.MAX:"timer"}','Zabbix server: Utilization of timer processes is high','','0','3','Indicates potential performance issues with the timer, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33850}<{$ZABBIX.SERVER.UTIL.MIN:"timer"}','0','','0','','0','Zabbix server: Utilization of timer processes over {$ZABBIX.SERVER.UTIL.MAX:"timer"}%','72f3b3f143a94f5a9b4b2c509425954e',''), ('15884','{33851}>{$ZABBIX.SERVER.UTIL.MAX:"trapper"}','Zabbix server: Utilization of trapper processes is high','','0','3','Indicates potential performance issues with the trapper, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33851}<{$ZABBIX.SERVER.UTIL.MIN:"trapper"}','0','','0','','0','Zabbix server: Utilization of trapper processes over {$ZABBIX.SERVER.UTIL.MAX:"trapper"}%','d31285f177224c4cb570373f6a730019',''), ('15885','{33853}>{$ZABBIX.SERVER.UTIL.MAX:"unreachable poller"}','Zabbix server: Utilization of unreachable poller processes is high','','0','3','Indicates potential performance issues with the unreachable poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33853}<{$ZABBIX.SERVER.UTIL.MIN:"unreachable poller"}','0','','0','','0','Zabbix server: Utilization of unreachable poller processes over {$ZABBIX.SERVER.UTIL.MAX:"unreachable poller"}%','d254ccddc7dd4e1ebf1eaa5113270e85',''), ('15886','{18109}=1','Zabbix server: Zabbix value cache working in low-memory mode','','0','4','Once low-memory mode has been switched on, the value cache will remain in this state for 24 hours, even if the problem that triggered this mode is resolved sooner.',NULL,'0','0','0','','0','','0','','0','','95e8823159fc4baeb13d656be176ac16',''), ('15887','{33854}>{$ZABBIX.SERVER.UTIL.MAX:"vmware collector"}','Zabbix server: Utilization of vmware collector processes is high','','0','3','Indicates potential performance issues with the vmware collector, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33854}<{$ZABBIX.SERVER.UTIL.MIN:"vmware collector"}','0','','0','','0','Zabbix server: Utilization of vmware collector processes over {$ZABBIX.SERVER.UTIL.MAX:"vmware collector"}%','5929cfbe23494a41a20a4c05854f9578',''), ('15888','{33836}>{$ZABBIX.SERVER.UTIL.MAX:"LLD manager"}','Zabbix server: Utilization of LLD manager processes is high','','0','3','Indicates potential performance issues with the LLD manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33836}<{$ZABBIX.SERVER.UTIL.MIN:"LLD manager"}','0','','0','','0','Zabbix server: Utilization of LLD manager processes over {$ZABBIX.SERVER.UTIL.MAX:"LLD manager"}%','4027f813da2549cfb99e1bb5e04e1d28',''), ('15889','{33837}>{$ZABBIX.SERVER.UTIL.MAX:"LLD worker"}','Zabbix server: Utilization of LLD worker processes is high','','0','3','Indicates potential performance issues with the LLD worker, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33837}<{$ZABBIX.SERVER.UTIL.MIN:"LLD worker"}','0','','0','','0','Zabbix server: Utilization of LLD worker processes over {$ZABBIX.SERVER.UTIL.MAX:"LLD worker"}%','ef1e836e906e4cf79b9fc8a11818c0a6',''), ('15890','{33712}>{$ZABBIX.PROXY.UTIL.MAX:"configuration cache"}','Zabbix proxy: Excessive configuration cache usage','','0','3','Consider increasing `CacheSize` in the `zabbix_proxy.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix proxy: More than {$ZABBIX.PROXY.UTIL.MAX:"configuration cache"}% used in the configuration cache','6aaad09f92f3419c9aa7164f2191a45a',''), ('15891','{33714}>{$ZABBIX.PROXY.UTIL.MAX:"history cache"}','Zabbix proxy: Excessive history cache usage','','0','3','Consider increasing `HistoryCacheSize` in the `zabbix_proxy.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix proxy: More than {$ZABBIX.PROXY.UTIL.MAX:"history cache"}% used in the history cache','c14095c38d17486fa8fde22bd5a9d737',''), ('15892','{33715}>{$ZABBIX.PROXY.UTIL.MAX:"index cache"}','Zabbix proxy: Excessive history index cache usage','','0','3','Consider increasing `HistoryIndexCacheSize` in the `zabbix_proxy.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix proxy: More than {$ZABBIX.PROXY.UTIL.MAX:"index cache"}% used in the history index cache','43f9a4fc049e45e5b8bbb0980b518dd0',''), ('15893','{33713}>{$ZABBIX.PROXY.UTIL.MAX:"vmware cache"}','Zabbix proxy: Excessive vmware cache usage','','0','3','Consider increasing `VMwareCacheSize` in the `zabbix_proxy.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix proxy: More than {$ZABBIX.PROXY.UTIL.MAX:"vmware cache"}% used in the vmware cache','ac2a42046de340e1968802d92678947c',''), ('15894','{18117}>100','Zabbix proxy: More than 100 items have been missing data for over 10 minutes','','0','2','Indicates potential issues with network connectivity, agent failures, or unresponsive monitored resources that require attention.',NULL,'0','0','0','','0','','0','','0','','71cd927153ef4b8480a8f13fc6b4def8',''), ('15895','{28394}>{$ZABBIX.PROXY.UTIL.MAX:"configuration syncer"}','Zabbix proxy: Utilization of configuration syncer processes is high','','0','3','Indicates potential performance issues with the configuration syncer, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28394}<{$ZABBIX.PROXY.UTIL.MIN:"configuration syncer"}','0','','0','','0','Zabbix proxy: Utilization of configuration syncer processes over {$ZABBIX.PROXY.UTIL.MAX:"configuration syncer"}%','67089f59f77641c8ab487e2c44d563a2',''), ('15896','{28395}>{$ZABBIX.PROXY.UTIL.MAX:"data sender"}','Zabbix proxy: Utilization of data sender processes is high','','0','3','Indicates potential performance issues with the data sender, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28395}<{$ZABBIX.PROXY.UTIL.MIN:"data sender"}','0','','0','','0','Zabbix proxy: Utilization of data sender processes over {$ZABBIX.PROXY.UTIL.MAX:"data sender"}%','f2208ef37274449fb2b61f5f55e615f1',''), ('15899','{28399}>{$ZABBIX.PROXY.UTIL.MAX:"history syncer"}','Zabbix proxy: Utilization of history syncer processes is high','','0','3','Indicates potential performance issues with the history syncer, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28399}<{$ZABBIX.PROXY.UTIL.MIN:"history syncer"}','0','','0','','0','Zabbix proxy: Utilization of history syncer processes over {$ZABBIX.PROXY.UTIL.MAX:"history syncer"}%','872ca8a02ff948d0ab4f5000249bbf5b',''), ('15900','{28400}>{$ZABBIX.PROXY.UTIL.MAX:"housekeeper"}','Zabbix proxy: Utilization of housekeeper processes is high','','0','3','Indicates potential performance issues with the housekeeper, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28400}<{$ZABBIX.PROXY.UTIL.MIN:"housekeeper"}','0','','0','','0','Zabbix proxy: Utilization of housekeeper processes over {$ZABBIX.PROXY.UTIL.MAX:"housekeeper"}%','43d8ef15170e4edd80eea85ad9990d73',''), ('15901','{28401}>{$ZABBIX.PROXY.UTIL.MAX:"http poller"}','Zabbix proxy: Utilization of http poller processes is high','','0','3','Indicates potential performance issues with the http poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28401}<{$ZABBIX.PROXY.UTIL.MIN:"http poller"}','0','','0','','0','Zabbix proxy: Utilization of http poller processes over {$ZABBIX.PROXY.UTIL.MAX:"http poller"}%','9c391ba5350d401b9ca56f7cd29cd457',''), ('15902','{28402}>{$ZABBIX.PROXY.UTIL.MAX:"icmp pinger"}','Zabbix proxy: Utilization of icmp pinger processes is high','','0','3','Indicates potential performance issues with the icmp pinger, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28402}<{$ZABBIX.PROXY.UTIL.MIN:"icmp pinger"}','0','','0','','0','Zabbix proxy: Utilization of icmp pinger processes over {$ZABBIX.PROXY.UTIL.MAX:"icmp pinger"}%','8a0abc8ff0dd42b0926b5840fe5b0e2f',''), ('15903','{28403}>{$ZABBIX.PROXY.UTIL.MAX:"ipmi manager"}','Zabbix proxy: Utilization of ipmi manager processes is high','','0','3','Indicates potential performance issues with the ipmi manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28403}<{$ZABBIX.PROXY.UTIL.MIN:"ipmi manager"}','0','','0','','0','Zabbix proxy: Utilization of ipmi manager processes over {$ZABBIX.PROXY.UTIL.MAX:"ipmi manager"}%','a2aed809416b46beba8ed63554d9b7d5',''), ('15904','{28404}>{$ZABBIX.PROXY.UTIL.MAX:"ipmi poller"}','Zabbix proxy: Utilization of ipmi poller processes is high','','0','3','Indicates potential performance issues with the ipmi poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28404}<{$ZABBIX.PROXY.UTIL.MIN:"ipmi poller"}','0','','0','','0','Zabbix proxy: Utilization of ipmi poller processes over {$ZABBIX.PROXY.UTIL.MAX:"ipmi poller"}%','e7c748c36e5740d684a5c4c68682f321',''), ('15905','{28405}>{$ZABBIX.PROXY.UTIL.MAX:"java poller"}','Zabbix proxy: Utilization of java poller processes is high','','0','3','Indicates potential performance issues with the java poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28405}<{$ZABBIX.PROXY.UTIL.MIN:"java poller"}','0','','0','','0','Zabbix proxy: Utilization of java poller processes over {$ZABBIX.PROXY.UTIL.MAX:"java poller"}%','ef46070fc30b46c7be1ce3574e578449',''), ('15906','{28407}>{$ZABBIX.PROXY.UTIL.MAX:"poller"}','Zabbix proxy: Utilization of poller processes is high','','0','3','Indicates potential performance issues with the poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28407}<{$ZABBIX.PROXY.UTIL.MIN:"poller"}','0','','0','','0','Zabbix proxy: Utilization of poller processes over {$ZABBIX.PROXY.UTIL.MAX:"poller"}%','6afb9db9e11842c28c059abd31c7a134',''), ('15907','{28408}>{$ZABBIX.PROXY.UTIL.MAX:"self-monitoring"}','Zabbix proxy: Utilization of self-monitoring processes is high','','0','3','Indicates potential performance issues with the self-monitoring, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28408}<{$ZABBIX.PROXY.UTIL.MIN:"self-monitoring"}','0','','0','','0','Zabbix proxy: Utilization of self-monitoring processes over {$ZABBIX.PROXY.UTIL.MAX:"self-monitoring"}%','fee719ea91524972897c19ce4b17bd54',''), ('15908','{28409}>{$ZABBIX.PROXY.UTIL.MAX:"snmp trapper"}','Zabbix proxy: Utilization of snmp trapper processes is high','','0','3','Indicates potential performance issues with the snmp trapper, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28409}<{$ZABBIX.PROXY.UTIL.MIN:"snmp trapper"}','0','','0','','0','Zabbix proxy: Utilization of snmp trapper processes over {$ZABBIX.PROXY.UTIL.MAX:"snmp trapper"}%','9ca70574386f4b968bcda64a5d267d58',''), ('15909','{28410}>{$ZABBIX.PROXY.UTIL.MAX:"task manager"}','Zabbix proxy: Utilization of task manager processes is high','','0','3','Indicates potential performance issues with the task manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28410}<{$ZABBIX.PROXY.UTIL.MIN:"task manager"}','0','','0','','0','Zabbix proxy: Utilization of task manager processes over {$ZABBIX.PROXY.UTIL.MAX:"task manager"}%','9d7d15a747484530a61102175cbc4478',''), ('15910','{28411}>{$ZABBIX.PROXY.UTIL.MAX:"trapper"}','Zabbix proxy: Utilization of trapper processes is high','','0','3','Indicates potential performance issues with the trapper, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28411}<{$ZABBIX.PROXY.UTIL.MIN:"trapper"}','0','','0','','0','Zabbix proxy: Utilization of trapper processes over {$ZABBIX.PROXY.UTIL.MAX:"trapper"}%','49a9e3e1b17146f7861daf6994956d4f',''), ('15911','{28412}>{$ZABBIX.PROXY.UTIL.MAX:"unreachable poller"}','Zabbix proxy: Utilization of unreachable poller processes is high','','0','3','Indicates potential performance issues with the unreachable poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28412}<{$ZABBIX.PROXY.UTIL.MIN:"unreachable poller"}','0','','0','','0','Zabbix proxy: Utilization of unreachable poller processes over {$ZABBIX.PROXY.UTIL.MAX:"unreachable poller"}%','e446ec803eaf4ace9b7d1fdc7a89cba6',''), ('15912','{28413}>{$ZABBIX.PROXY.UTIL.MAX:"vmware collector"}','Zabbix proxy: Utilization of vmware collector processes is high','','0','3','Indicates potential performance issues with the vmware collector, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28413}<{$ZABBIX.PROXY.UTIL.MIN:"vmware collector"}','0','','0','','0','Zabbix proxy: Utilization of vmware collector processes over {$ZABBIX.PROXY.UTIL.MAX:"vmware collector"}%','30147687074f45e7ab0dce81a1b7cf07',''), ('15913','{28377}>{$ZABBIX.PROXY.UTIL.MAX:"preprocessing manager"}','Zabbix proxy: Utilization of preprocessing manager processes is high','','0','3','Indicates potential performance issues with the preprocessing manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28377}<{$ZABBIX.PROXY.UTIL.MIN:"preprocessing manager"}','0','','0','','0','Zabbix proxy: Utilization of preprocessing manager processes over {$ZABBIX.PROXY.UTIL.MAX:"preprocessing manager"}%','1ed29eb53708417a827adbdf4d8f145b',''), ('15914','{28378}>{$ZABBIX.PROXY.UTIL.MAX:"preprocessing worker"}','Zabbix proxy: Utilization of preprocessing worker processes is high','','0','3','Indicates potential performance issues with the preprocessing worker, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28378}<{$ZABBIX.PROXY.UTIL.MIN:"preprocessing worker"}','0','','0','','0','Zabbix proxy: Utilization of preprocessing worker processes over {$ZABBIX.PROXY.UTIL.MAX:"preprocessing worker"}%','22831f081149400a86cb18930de0cc20',''), ('15948','{18175}=1','Apache: Failed to fetch status page','','0','2','Zabbix has not received any data for items for the last 30 minutes.',NULL,'0','0','0','','0','','1','','0','Apache: Failed to fetch status page (or no data for 30m)','db396445cc5042f89f31dc12cb99c32e',''), ('15949','{18176}=0','Apache: Service is down','','0','3','',NULL,'0','0','0','','0','','1','','0','','afe2fde35d054333adc8369a0f9af778',''), ('15950','{18177}>{$APACHE.RESPONSE_TIME.MAX.WARN}','Apache: Service response time is too high','','0','2','',NULL,'0','0','0','','0','','1','','0','Apache: Service response time is too high (over {$APACHE.RESPONSE_TIME.MAX.WARN}s for 5m)','ffbb564032c7462eb0bb9b4c2f700559',''), ('15951','{18178}<10m','Apache: Service has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Apache: Service has been restarted (uptime < 10m)','76cfa6ebf39f4c8fbd8fde9e0f36d3ed',''), ('15952','{23179}<>{23180} and length({23181})>0','Apache: Version has changed','','0','1','Apache version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Apache: Version has changed (new version: {ITEM.VALUE})','5296d69af0704d0e8a07398f0b4c9685',''), ('15958','{23231}<>{23232} and length({23233})>0','Nginx: Version has changed','','0','1','The Nginx version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Nginx: Version has changed (new version: {ITEM.VALUE})','7ad80c508f2f48b59f7659c673db9f36',''), ('15960','{18191}=0','Nginx: Service is down','','0','3','',NULL,'0','0','0','','0','','1','','0','','7b3de87ba0ea425280d42235bb626b8b',''), ('15961','{18192}>{$NGINX.RESPONSE_TIME.MAX.WARN}','Nginx: Service response time is too high','','0','2','',NULL,'0','0','0','','0','','1','','0','Nginx: Service response time is too high (over {$NGINX.RESPONSE_TIME.MAX.WARN}s for 5m)','fc1f7927b8864996986c1da44df57279',''), ('15962','{18193} > {$NGINX.DROP_RATE.MAX.WARN}','Nginx: High connections drop rate','','0','2','The rate of dropping connections has been greater than {$NGINX.DROP_RATE.MAX.WARN} for the last 5 minutes.',NULL,'0','0','0','','0','','0','Current rate: {ITEM.LASTVALUE1}','0','Nginx: High connections drop rate (more than {$NGINX.DROP_RATE.MAX.WARN} for 5m)','79767fbc18594069a1fc0cbec832f8ff',''), ('15963','{23234}<>{23235} and length({23236})>0','Nginx: Version has changed','','0','1','The Nginx version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Nginx: Version has changed (new version: {ITEM.VALUE})','0f2689d4967a446e98a107b933179817',''), ('16138','{18501}=1','Linux: node_exporter is not available','','0','2','Failed to fetch system metrics from node_exporter in time.',NULL,'0','0','0','','0','','1','','0','Linux: node_exporter is not available (or no data for 30m)','e33fafc8476e404aa4150d0d491f4c83',''), ('16139','{33879}=0','Linux: System time is out of sync','','0','2','The host''s system time is different from Zabbix server time.',NULL,'0','0','1','{33880}=1','0','','1','','0','Linux: System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX})','e91c10be1c4a4c3fadfe06aec6c1e4e4',''), ('16141','{18505}<{$KERNEL.MAXFILES.MIN}','Linux: Configured max number of open filedescriptors is too low','','0','1','',NULL,'0','0','0','','0','','0','','0','Linux: Configured max number of open filedescriptors is too low (< {$KERNEL.MAXFILES.MIN})','c0002ad071d7497ab32633c93624e0c2',''), ('16142','{18506}/{18507}*100>80','Linux: Running out of file descriptors','','0','2','',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1} of {ITEM.LASTVALUE2} file descriptors are in use.','0','Linux: Running out of file descriptors (less than < 20% free)','7effa63c9c994a6786279802aa7328ad',''), ('16143','{24341}<>{24342} and length({24343})>0','Linux: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','00974d5b128c4b1db64ca100770fb11b',''), ('16144','{18510}<10m','Linux: {HOST.NAME} has been restarted','','0','2','The device uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Linux: {HOST.NAME} has been restarted (uptime < 10m)','83311a7c73c441d39d88fe0fc7b55af9',''), ('16146','{18513}>{$CPU.UTIL.CRIT}','Linux: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Linux: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','4c924f8243a7431886a2d69368cb7142',''), ('16152','{18526}<0 and {18527}>0 and ( {18528}=6 or {18528}=7 or {18528}=11 or {18528}=62 or {18528}=69 or {18528}=117 ) and ({18529}<>2)','Linux: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({18526}>0 and {18530}>0) or ({18529}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','96bbb9726ef149a5b97f96d54502593a',''), ('16153','{18531}<0 and {18532}>0 and ({18532}=6 or {18532}=1) and ({18533}<>2)','Linux: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({18531}>0 and {18534}>0) or ({18533}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','08d5857e474042b5906288156c8c5d52',''), ('16155','{33646}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}','Linux: FS [{#FSNAME}]: Space is critically low','','0','3','The storage space usage exceeds the ''{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%'' limit. The trigger expression is based on the current used and maximum available spaces. Event name represents the total volume space, which can differ from the maximum available space, depending on the filesystem type.',NULL,'0','2','0','','0','','1','Space used: {{ITEM.LASTVALUE1}.fmtnum(1)}%','0','Linux: FS [{#FSNAME}]: Space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%, total {{?last(//vfs.fs.total[node_exporter,"{#FSNAME}"])/1024/1024/1024}.fmtnum(1)}GB)','d5687d7aa0484b389f0bd168d50ee1e6',''), ('16156','{33647}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}','Linux: FS [{#FSNAME}]: Space is low','','0','2','The storage space usage exceeds the ''{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%'' limit. The trigger expression is based on the current used and maximum available spaces. Event name represents the total volume space, which can differ from the maximum available space, depending on the filesystem type.',NULL,'0','2','0','','0','','1','Space used: {{ITEM.LASTVALUE1}.fmtnum(1)}%','0','Linux: FS [{#FSNAME}]: Space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%, total {{?last(//vfs.fs.total[node_exporter,"{#FSNAME}"])/1024/1024/1024}.fmtnum(1)}GB)','8f765148cfd64d5ebda93f39d0b20e36',''), ('16157','{18545}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}','Linux: FS [{#FSNAME}]: Running out of free inodes','','0','3','Disk writing may fail if index nodes are exhausted, leading to error messages like "No space left on device" or "Disk is full", despite available free space.',NULL,'0','2','0','','0','','0','Free inodes: {ITEM.LASTVALUE1}','0','Linux: FS [{#FSNAME}]: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%)','27cabcc9d9644ba6b7bd8c92a740e3cc',''), ('16158','{18546}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}','Linux: FS [{#FSNAME}]: Running out of free inodes','','0','2','Disk writing may fail if index nodes are exhausted, leading to error messages like "No space left on device" or "Disk is full", despite available free space.',NULL,'0','2','0','','0','','0','Free inodes: {ITEM.LASTVALUE1}','0','Linux: FS [{#FSNAME}]: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%)','c639215f6dd94c71aebf97265a282a0d',''), ('16250','{18711}>0','RabbitMQ node: Number of network partitions is too high','','0','2','For more details see [Detecting Network Partitions](https://www.rabbitmq.com/partitions.html#detecting).',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','RabbitMQ node: Number of network partitions is too high (more than 0 for 5m)','5bed266725e94000804b0ecc7bce6209',''), ('16254','{18715}<10m','RabbitMQ node: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','RabbitMQ node: {HOST.NAME} has been restarted (uptime < 10m)','729c448ebabb417bb7ce17b1634c4484',''), ('16258','{18719}>{$RABBITMQ.MESSAGES.MAX.WARN:"{#QUEUE}"}','RabbitMQ node: Too many messages in queue [{#VHOST}][{#QUEUE}]','','0','2','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','RabbitMQ node: Too many messages in queue [{#VHOST}][{#QUEUE}] (over {$RABBITMQ.MESSAGES.MAX.WARN:"{#QUEUE}"} for 5m)','58986cee2b4846b3b7bd3caf772d7ac6',''), ('16259','{18720}=1','RabbitMQ cluster: Failed to fetch overview data','','0','2','Zabbix has not received any data for items for the last 30 minutes.',NULL,'0','0','0','','0','','1','','0','RabbitMQ cluster: Failed to fetch overview data (or no data for 30m)','ae7f1953f9b94c9c907d7bd7627d389d',''), ('16264','{18726}>0','RabbitMQ node: Number of network partitions is too high','','0','2','For more details see [Detecting Network Partitions](https://www.rabbitmq.com/partitions.html#detecting).',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','RabbitMQ node: Number of network partitions is too high (more than 0 for 5m)','943d239a9fa5443dac3205c65a4da033',''), ('16265','{18727}=0','RabbitMQ node: Node is not running','','0','3','RabbitMQ node is not running.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4b15e72e2133458ebac9c72c5fcb90e6',''), ('16268','{18730}<10m','RabbitMQ node: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','RabbitMQ node: {HOST.NAME} has been restarted (uptime < 10m)','6edfa365704f480da4b35b51b6ed84f4',''), ('16269','{18731}=0','RabbitMQ node: Service is down','','0','3','',NULL,'0','0','0','','0','','1','','0','','636356e5255d49d992df4b7a0c7d222d',''), ('16270','{18732}>{$RABBITMQ.RESPONSE_TIME.MAX.WARN}','RabbitMQ node: Service response time is too high','','0','2','',NULL,'0','0','0','','0','','1','','0','RabbitMQ node: Service response time is too high (over {$RABBITMQ.RESPONSE_TIME.MAX.WARN}s for 5m)','220eedd4f69b43fabe233b5127e09c50',''), ('16271','{18733}>{$RABBITMQ.MESSAGES.MAX.WARN:"{#QUEUE}"}','RabbitMQ node: Too many messages in queue [{#VHOST}][{#QUEUE}]','','0','2','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','RabbitMQ node: Too many messages in queue [{#VHOST}][{#QUEUE}] (over {$RABBITMQ.MESSAGES.MAX.WARN:"{#QUEUE}"} for 5m)','b6f52153a22144338e6d002287446ac1',''), ('16272','{33819}>{$ZABBIX.SERVER.UTIL.MAX:"alert syncer"}','Zabbix server: Utilization of alert syncer processes is high','','0','3','Indicates potential performance issues with the alert syncer, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33819}<{$ZABBIX.SERVER.UTIL.MIN:"alert syncer"}','0','','0','','0','Zabbix server: Utilization of alert syncer processes over {$ZABBIX.SERVER.UTIL.MAX:"alert syncer"}%','0eb23de05fac4aeab4ee4aa337545b16',''), ('16273','{33721}>{$ZABBIX.SERVER.UTIL.MAX:"alert syncer"}','Zabbix server: Utilization of alert syncer processes is high','','0','3','Indicates potential performance issues with the alert syncer, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33721}<{$ZABBIX.SERVER.UTIL.MIN:"alert syncer"}','0','','0','','0','Zabbix server: Utilization of alert syncer processes over {$ZABBIX.SERVER.UTIL.MAX:"alert syncer"}%','e2a487335f2748a6b26d867290c9cfe4',''), ('16439','{19090}=1','HP iLO: System status is in critical state','','0','4','Please check the device for errors',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6d0d0554e1c945dc90701aebd531f9cb',''), ('16440','{19091}=1','HP iLO: System status is in warning state','','0','2','Please check the device for warnings',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','273c27c7929649f1a45ddc92c09ab982',''), ('16442','{19093}=1','RabbitMQ cluster: Failed to fetch overview data','','0','2','Zabbix has not received any data for items for the last 30 minutes.',NULL,'0','0','0','','0','','1','','0','RabbitMQ cluster: Failed to fetch overview data (or no data for 30m)','000d3e773f6e4ebf89f16daa2ce8c168',''), ('16445','{23262}<>{23263} and length({23264})>0','RabbitMQ node: Version has changed','','0','1','RabbitMQ version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','RabbitMQ node: Version has changed (new version: {ITEM.VALUE})','daf98bb4593d4697bc51423b2f65ba41',''), ('16446','{19098}=1','RabbitMQ node: Memory alarm','','0','3','For more details see [Memory Alarms](https://www.rabbitmq.com/memory.html).',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','RabbitMQ node: Memory alarm (Memory usage threshold has been reached)','ec6ae727fe774b0fa56bb4d9ad773e35',''), ('16447','{19099}=1','RabbitMQ node: Free disk space alarm','','0','3','For more details see [Free Disk Space Alarms](https://www.rabbitmq.com/disk-alarms.html).',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','RabbitMQ node: Free disk space alarm (Free space threshold has been reached)','b68cb12ecd4046fd80a717fb557f04e8',''), ('16448','{19100}=1','RabbitMQ node: Failed to fetch nodes data','','0','2','Zabbix has not received any data for items for the last 30 minutes.',NULL,'0','0','0','','0','','1','','0','RabbitMQ node: Failed to fetch nodes data (or no data for 30m)','d4452f05d08343c7a374da412c0f1de6',''), ('16450','{23265}<>{23266} and length({23267})>0','RabbitMQ node: Version has changed','','0','1','RabbitMQ version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','RabbitMQ node: Version has changed (new version: {ITEM.VALUE})','19989038dfe84fcdb12262ee3782ab41',''), ('16451','{19104}=1','RabbitMQ node: Memory alarm','','0','3','For more details see [Memory Alarms](https://www.rabbitmq.com/memory.html).',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','RabbitMQ node: Memory alarm (Memory usage threshold has been reached)','843be64cfdcd4df5b3fea4726da69c7e',''), ('16452','{19105}=1','RabbitMQ node: Free disk space alarm','','0','3','For more details see [Free Disk Space Alarms](https://www.rabbitmq.com/disk-alarms.html).',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','RabbitMQ node: Free disk space alarm (Free space threshold has been reached)','093eec2fd9264f158087509d8364dc09',''), ('16459','{19113}>{$TEMP_WARN:"Ambient"}','Cisco UCS: {#SENSOR_LOCATION}.Ambient: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{19114}<{$TEMP_WARN:"Ambient"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco UCS: {#SENSOR_LOCATION}.Ambient: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"}','cf21a0259b6e4402815651357cdcce76',''), ('16460','{19115}>{$TEMP_CRIT:"Ambient"}','Cisco UCS: {#SENSOR_LOCATION}.Ambient: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{19116}<{$TEMP_CRIT:"Ambient"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco UCS: {#SENSOR_LOCATION}.Ambient: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"}','4e293138ca374c96a18e4dbca8e45c72',''), ('16461','{19117}<{$TEMP_CRIT_LOW:"Ambient"}','Cisco UCS: {#SENSOR_LOCATION}.Ambient: Temperature is too low','','0','3','',NULL,'0','2','1','{19118}>{$TEMP_CRIT_LOW:"Ambient"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco UCS: {#SENSOR_LOCATION}.Ambient: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"}','5139f8dd56094561a573a0b7b15a5ef0',''), ('16462','{19119}>{$TEMP_WARN:"Ambient"}','Cisco UCS: {#SENSOR_LOCATION}.Front: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{19120}<{$TEMP_WARN:"Ambient"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco UCS: {#SENSOR_LOCATION}.Front: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"}','068f42b490ad41eb97a65dbc718ae566',''), ('16463','{19121}>{$TEMP_CRIT:"Ambient"}','Cisco UCS: {#SENSOR_LOCATION}.Front: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{19122}<{$TEMP_CRIT:"Ambient"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco UCS: {#SENSOR_LOCATION}.Front: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"}','98b9a6bd22e648e1bce3e5ee3ed5f6b4',''), ('16464','{19123}<{$TEMP_CRIT_LOW:"Ambient"}','Cisco UCS: {#SENSOR_LOCATION}.Front: Temperature is too low','','0','3','',NULL,'0','2','1','{19124}>{$TEMP_CRIT_LOW:"Ambient"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco UCS: {#SENSOR_LOCATION}.Front: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"}','f208cad426cf45338b6487cf87588220',''), ('16465','{19125}>{$TEMP_WARN:"Ambient"}','Cisco UCS: {#SENSOR_LOCATION}.Rear: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{19126}<{$TEMP_WARN:"Ambient"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco UCS: {#SENSOR_LOCATION}.Rear: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"}','ed302fd9bdbe47cda2456aa7cdc6ce66',''), ('16466','{19127}>{$TEMP_CRIT:"Ambient"}','Cisco UCS: {#SENSOR_LOCATION}.Rear: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{19128}<{$TEMP_CRIT:"Ambient"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco UCS: {#SENSOR_LOCATION}.Rear: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"}','ef03cd1e2356409ea2651fab589c9d19',''), ('16467','{19129}<{$TEMP_CRIT_LOW:"Ambient"}','Cisco UCS: {#SENSOR_LOCATION}.Rear: Temperature is too low','','0','3','',NULL,'0','2','1','{19130}>{$TEMP_CRIT_LOW:"Ambient"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco UCS: {#SENSOR_LOCATION}.Rear: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"}','bb81b628d804411480d3b4066d626f82',''), ('16468','{19131}>{$TEMP_WARN:"Ambient"}','Cisco UCS: {#SENSOR_LOCATION}.IOH: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{19132}<{$TEMP_WARN:"Ambient"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco UCS: {#SENSOR_LOCATION}.IOH: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"}','da5d63d3411a4d2299d50cc21beae1c4',''), ('16469','{19133}>{$TEMP_CRIT:"Ambient"}','Cisco UCS: {#SENSOR_LOCATION}.IOH: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{19134}<{$TEMP_CRIT:"Ambient"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco UCS: {#SENSOR_LOCATION}.IOH: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"}','a43eb91c4ae044729f4312466fcbd5da',''), ('16470','{19135}<{$TEMP_CRIT_LOW:"Ambient"}','Cisco UCS: {#SENSOR_LOCATION}.IOH: Temperature is too low','','0','3','',NULL,'0','2','1','{19136}>{$TEMP_CRIT_LOW:"Ambient"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco UCS: {#SENSOR_LOCATION}.IOH: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"}','ce811e4247d5484caf4b095e829f162e',''), ('16471','{19137}>{$TEMP_WARN:"CPU"}','Cisco UCS: {#SENSOR_LOCATION}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{19138}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco UCS: {#SENSOR_LOCATION}: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','eaadcea2dc0d468d886654c3ec380390',''), ('16472','{19139}>{$TEMP_CRIT:"CPU"}','Cisco UCS: {#SENSOR_LOCATION}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{19140}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco UCS: {#SENSOR_LOCATION}: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','35549eb00faf48ff8fdb7769b8a13895',''), ('16473','{19141}<{$TEMP_CRIT_LOW:"CPU"}','Cisco UCS: {#SENSOR_LOCATION}: Temperature is too low','','0','3','',NULL,'0','2','1','{19142}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco UCS: {#SENSOR_LOCATION}: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','ccb9b9edd7ba4a62b33e34ebf3647825',''), ('16474','{19143}=1','Cisco UCS: {#PSU_LOCATION}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','480d51d19be74b6e95f702b31baa5666',''), ('16475','{19144}=1','Cisco UCS: {#PSU_LOCATION}: Power supply is in warning state','','0','2','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','07fa90b5296b48d9b45cc6a76e72ceeb',''), ('16476','{19145}=1 or {19146}=1 or {19147}=1 or {19148}=1','Cisco UCS: {#UNIT_LOCATION}: System status is in critical state','','0','4','Please check the device for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','70fbf187bc474aa88a26fb5a8d862694',''), ('16477','{19149}=1 or {19150}=1 or {19151}=1 or {19152}=1 or {19153}=1','Cisco UCS: {#UNIT_LOCATION}: System status is in warning state','','0','2','Please check the device for warnings',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b69f6876b7de4e1c89934281696249c8',''), ('16478','{24497}<>{24498} and length({24499})>0','Cisco UCS: {#UNIT_LOCATION}: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Cisco UCS: {#UNIT_LOCATION}: Device has been replaced (new serial number received)','b9667c535fe542eeb21dea7aaf2bbf80',''), ('16479','{19156}=1','Cisco UCS: {#FAN_LOCATION}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','5135b24c775f448c8998cadea3042e5b',''), ('16480','{19157}=1','Cisco UCS: {#FAN_LOCATION}: Fan is in warning state','','0','2','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','895df7f89587441fa61223d5b2e442a2',''), ('16481','{19158}=1','Cisco UCS: {#DISK_LOCATION}: Physical disk failed','','0','4','Please check physical disk for warnings or errors',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','77ce5c74eefd4a9b818c11c8c1581cd8',''), ('16482','{19159}=1 or {19160}=1','Cisco UCS: {#DISK_LOCATION}: Physical disk error','','0','3','Please check physical disk for warnings or errors',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','445919e1ec414fd888f8911abc65650b',''), ('16483','{19161}=1','Cisco UCS: {#VDISK_LOCATION}: Virtual disk is not in OK state','','0','2','Please check virtual disk for warnings or errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','97b0c8177dca421f9535cb6f0abea7aa',''), ('16484','{19162}=1','Cisco UCS: {#DISKARRAY_LOCATION}: Disk array controller is in critical state','','0','4','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','44ec209460fb4010a087e971427b2fde',''), ('16485','{19163}=1','Cisco UCS: {#DISKARRAY_LOCATION}: Disk array controller is in warning state','','0','3','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b419e0d296614f4285645954f8a7a970',''), ('16486','{19164}=1','Cisco UCS: {#DISKARRAY_LOCATION}: Disk array controller is not in optimal state','','0','2','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a83202bb105d481c93464650272c14eb',''), ('16487','{19165}=1','Cisco UCS: {#DISKARRAY_CACHE_LOCATION}: Disk array cache controller battery is in critical state!','','0','3','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','0b09b93602c94821ae1126e4f9550436',''), ('16488','{19166}=1','Cisco UCS: {#DISKARRAY_CACHE_LOCATION}: Disk array cache controller battery is not in optimal state','','0','2','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d2af6de00e57412d8a2efcb20b1524a4',''), ('16491','{19171}>{$CPU.UTIL.CRIT}','Alcatel TiMOS: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Alcatel TiMOS: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','4167b064eb19478da13531f629082ef1',''), ('16492','{23707}<>{23708} and length({23709})>0','Alcatel TiMOS: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','dd5dc3541a3d402c98a60b25d9e48dd6',''), ('16494','{19175}=1','Alcatel TiMOS: #{#SNMPINDEX}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','afbc2020a9f74d6abe52469ac663e057',''), ('16495','{19176}=1','Alcatel TiMOS: #{#SNMPINDEX}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','fcbc0ef8f55146daaed6be4ccbd324e7',''), ('16496','{19177}>{$CPU.UTIL.CRIT}','Brocade FC: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Brocade FC: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','68a50684095941cb90f22fbc8d632e7a',''), ('16504','{19185}>{$TEMP_WARN:"Chassis"}','Brocade Nonstackable: Chassis #{#SNMPINDEX}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{19186}<{$TEMP_WARN:"Chassis"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Brocade Nonstackable: Chassis #{#SNMPINDEX}: Temperature is above warning threshold: >{$TEMP_WARN:"Chassis"}','66c4f9fd59f043a782dd8fea11b90451',''), ('16505','{19187}>{$TEMP_CRIT:"Chassis"}','Brocade Nonstackable: Chassis #{#SNMPINDEX}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{19188}<{$TEMP_CRIT:"Chassis"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Brocade Nonstackable: Chassis #{#SNMPINDEX}: Temperature is above critical threshold: >{$TEMP_CRIT:"Chassis"}','cae73cf7a78f4963ab1718446ceeb6f4',''), ('16506','{19189}<{$TEMP_CRIT_LOW:"Chassis"}','Brocade Nonstackable: Chassis #{#SNMPINDEX}: Temperature is too low','','0','3','',NULL,'0','2','1','{19190}>{$TEMP_CRIT_LOW:"Chassis"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Brocade Nonstackable: Chassis #{#SNMPINDEX}: Temperature is too low: <{$TEMP_CRIT_LOW:"Chassis"}','2895da8297fc457da88ea136e61fb8d9',''), ('16521','{19209}>{$CPU.UTIL.CRIT}','Dell Force S-Series: #{#SNMPINDEX}: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell Force S-Series: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','002c0f19cfe54fe08da2183654752470',''), ('16523','{23843}<>{23844} and length({23845})>0','Dell Force S-Series: #{#SNMPVALUE}: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','','66049aa1d7cb45ebac1fe5292c309ba2',''), ('16524','{19213}>{$CPU.UTIL.CRIT}','D-Link DES 7200: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','D-Link DES 7200: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','6e12ba6b60b94ec6bf531b4bb234dc80',''), ('16525','{23849}<>{23850} and length({23851})>0','D-Link DES 7200: Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','01ca34ebe7a94ed3b3e5ee8320ebce73',''), ('16527','{19217}>{$CPU.UTIL.CRIT}','D-Link DES_DGS Switch: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','D-Link DES_DGS Switch: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','621c4933fd9c4b78aae1eedada7ffedf',''), ('16529','{19219}>{$CPU.UTIL.CRIT}','Extreme EXOS: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Extreme EXOS: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','a77bbfe0755f4901b67a7957805bc566',''), ('16530','{23864}<>{23865} and length({23866})>0','Extreme EXOS: Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','af6a823b8f2d4fddae970828d0a3a9c9',''), ('16532','{23892}<>{23893} and length({23894})>0','HP Comware HH3C: {#ENT_NAME}: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','','9e6cccf7daec4405ac3bb1a27670fcee',''), ('16533','{19225}>{$CPU.UTIL.CRIT}','HP Comware HH3C: {#MODULE_NAME}: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','HP Comware HH3C: {#MODULE_NAME}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','37a4a248c89240fe82c5fd6622123aa0',''), ('16535','{19227}>{$CPU.UTIL.CRIT}','HP Enterprise Switch: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','HP Enterprise Switch: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','883e49e933bd4cfda0e7dde774604a0a',''), ('16537','{19229}>{$CPU.UTIL.CRIT}','Huawei VRP: {#ENT_NAME}: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Huawei VRP: {#ENT_NAME}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','66bfe7805cae4447a32a6e5877e1231b',''), ('16538','{23904}<>{23905} and length({23906})>0','Huawei VRP: {#ENT_NAME}: Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','','698067d647424c96addeb3c9f960dd07',''), ('16540','{23916}<>{23917} and length({23918})>0','Juniper: Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','9249511ecf4a4a2d952aa0c4fe55a5d0',''), ('16541','{19235}>{$CPU.UTIL.CRIT}','Juniper: {#SNMPVALUE}: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Juniper: {#SNMPVALUE}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','248c49bc4f47437b9b91e20b57da197d',''), ('16543','{23934}<>{23935} and length({23936})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','739f60e0862d4fe88cc2a5fe626211a8',''), ('16545','{19240}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','7843aa49df2b4f218bf633bee4f01df6',''), ('16546','{31924}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31925}-{31926})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31927}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','c866ac0197ee401ab0c5cc6ec0757985',''), ('16547','{31928}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31929}-{31930})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31931}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','9adb977fde7345d8950265a9127cde57',''), ('16548','{19249}>{$CPU.UTIL.CRIT}','Netgear Fastpath: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Netgear Fastpath: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','1e47f984c5514205aad2be5db1157fd2',''), ('16549','{23940}<>{23941} and length({23942})>0','Netgear Fastpath: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','bf0a6ff122a14f4c9baa640d27c8f982',''), ('16551','{31355}>{$TEMP_WARN}','QTech QSW: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','0','1','{31356}<{$TEMP_WARN}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','QTech QSW: Temperature is above warning threshold: >{$TEMP_WARN}','b9122f253bf440ccb413d577790e46a0',''), ('16552','{31353}>{$TEMP_CRIT}','QTech QSW: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','0','1','{31354}<{$TEMP_CRIT}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','QTech QSW: Temperature is above critical threshold: >{$TEMP_CRIT}','8ca8b9dfed0e4af898d9182150bb1ad0',''), ('16553','{31357}<{$TEMP_CRIT_LOW}','QTech QSW: Temperature is too low','','0','3','',NULL,'0','0','1','{31358}>{$TEMP_CRIT_LOW}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','QTech QSW: Temperature is too low: <{$TEMP_CRIT_LOW}','d7607e97e2f549caaefa184c9fee8220',''), ('16554','{19259}>{$CPU.UTIL.CRIT}','QTech QSW: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','QTech QSW: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','57bf78318ded4574bde08adfafe94454',''), ('16555','{23949}<>{23950} and length({23951})>0','QTech QSW: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','6431f9a46fcb4a42ab3e04c8289bd07d',''), ('16557','{19263}=1','QTech QSW: {#SNMPINDEX}: Fan is in critical state','','0','3','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9961328558a74e45a3154559ed582e41',''), ('16558','{19264}=1','QTech QSW: {#SNMPINDEX}: Power supply is in critical state','','0','3','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d047cf0b9e9f4e169e4a62c60358178d',''), ('16559','{19265}>{$CPU.UTIL.CRIT}','TP-LINK: #{#SNMPVALUE}: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','TP-LINK: #{#SNMPVALUE}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','667a09c4f1c04a1a84c7c79adb9cbc70',''), ('16573','{19299}/{19300}>{$LOAD_AVG_PER_CPU.MAX.WARN} and {19301}>0 and {19302}>0','Linux: Load average is too high','','0','3','The load average per CPU is too high. The system may be slow to respond.',NULL,'0','0','0','','0','','0','Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}','0','Linux: Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m)','e5897641e5594bf6b7b18ae4e107bd50',''), ('16584','{24338}<>{24339} and length({24340})>0','Linux: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Linux: System name has changed (new name: {ITEM.VALUE})','e827e944568b46e284820630482317bd',''), ('16644','{19456}<10m','HAProxy: Service has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','HAProxy: Service has been restarted (uptime < 10m)','e76d5b82b0ad421ea62cd1dc069e036b',''), ('16645','{23206}<>{23207} and length({23208})>0','HAProxy: Version has changed','','0','1','HAProxy version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','HAProxy: Version has changed (new version: {ITEM.VALUE})','db6ef8f306f64f0f81a590e4b45b370c',''), ('16646','{19459}>{$HAPROXY.RESPONSE_TIME.MAX.WARN}','HAProxy: Service response time is too high','','0','2','',NULL,'0','0','0','','0','','1','','0','HAProxy: Service response time is too high (over {$HAPROXY.RESPONSE_TIME.MAX.WARN} for 5m)','4e881047bbd54c5984922d1189567ece',''), ('16647','{19460}=0','HAProxy: Service is down','','0','3','',NULL,'0','0','0','','0','','1','','0','','8d5c7940e5924b469b3e7804043ea7b6',''), ('16648','{19461}>{$HAPROXY.BACK_ERESP.MAX.WARN}','HAProxy: backend {#PXNAME}: Number of responses with error is high','','0','2','Number of requests on backend, whose responses yielded an error, is more than {$HAPROXY.BACK_ERESP.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy: backend {#PXNAME}: Number of responses with error is more than {$HAPROXY.BACK_ERESP.MAX.WARN} for 5m','892d6f67eeff4520aadbf4f3841f8174',''), ('16649','{19462}>{$HAPROXY.BACK_QCUR.MAX.WARN}','HAProxy: backend {#PXNAME}: Current number of requests unassigned in queue is high','','0','2','Current number of requests on backend unassigned in queue is more than {$HAPROXY.BACK_QCUR.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy: backend {#PXNAME}: Current number of requests unassigned in queue is more than {$HAPROXY.BACK_QCUR.MAX.WARN} for 5m','89ccc4b4a55349c7869c2202881dcb2a',''), ('16650','{19463}>{$HAPROXY.BACK_QTIME.MAX.WARN}','HAProxy: backend {#PXNAME}: Average time spent in queue is high','','0','2','Average time spent in queue (in ms) for the last 1,024 requests is more than {$HAPROXY.BACK_QTIME.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy: backend {#PXNAME}: Average time spent in queue is more than {$HAPROXY.BACK_QTIME.MAX.WARN} for 5m','1aff4be13f0f4aee8a512d4b962215a6',''), ('16651','{19464}>{$HAPROXY.BACK_RTIME.MAX.WARN}','HAProxy: backend {#PXNAME}: Average response time is high','','0','2','Average backend response time (in ms) for the last 1,024 requests is more than {$HAPROXY.BACK_RTIME.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy: backend {#PXNAME}: Average response time is more than {$HAPROXY.BACK_RTIME.MAX.WARN} for 5m','e0dd27ac272a4fbf9495c09f3291db8f',''), ('16652','{23209}=5','HAProxy: backend {#PXNAME}: Server is DOWN','','0','3','Backend is not available.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','51452fd94c12448fab0703e867f69fd2',''), ('16653','{19466}>{$HAPROXY.FRONT_DREQ.MAX.WARN}','HAProxy: frontend {#PXNAME}: Number of requests denied is high','','0','2','Number of requests denied due to security concerns (ACL-restricted) is more than {$HAPROXY.FRONT_DREQ.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy: frontend {#PXNAME}: Number of requests denied is more than {$HAPROXY.FRONT_DREQ.MAX.WARN} for 5m','269d5e491e3d41b6be5257c8a8a85efb',''), ('16654','{19467}>{$HAPROXY.FRONT_EREQ.MAX.WARN}','HAProxy: frontend {#PXNAME}: Number of request errors is high','','0','2','Number of request errors is more than {$HAPROXY.FRONT_EREQ.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy: frontend {#PXNAME}: Number of request errors is more than {$HAPROXY.FRONT_EREQ.MAX.WARN} for 5m','8361fb028aed4bd9bf3356249699d424',''), ('16655','{19468}>{$HAPROXY.FRONT_SUTIL.MAX.WARN}','HAProxy: frontend {#PXNAME}: Session utilization is high','','0','2','Alerting on this metric is essential to ensure your server has sufficient capacity to handle all concurrent sessions. Unlike requests, upon reaching the session limit HAProxy will deny additional clients until resource consumption drops. Furthermore, if you find your session usage percentage to be hovering above 80%, it could be time to either modify HAProxy''s configuration to allow more sessions, or migrate your HAProxy server to a bigger box.',NULL,'0','2','0','','0','','0','','0','HAProxy: frontend {#PXNAME}: Session utilization is more than {$HAPROXY.FRONT_SUTIL.MAX.WARN}% for 5m','9af44a07b1a347979492063ee756b025',''), ('16656','{19469}>{$HAPROXY.SERVER_ERESP.MAX.WARN}','HAProxy: {#PXNAME} {#SVNAME}: Number of responses with error is high','','0','2','Number of requests on server, whose responses yielded an error, is more than {$HAPROXY.SERVER_ERESP.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy: {#PXNAME} {#SVNAME}: Number of responses with error is more than {$HAPROXY.SERVER_ERESP.MAX.WARN} for 5m','5a982a97f812468eb8e7163f06f0ee77',''), ('16657','{19470}>{$HAPROXY.SERVER_QCUR.MAX.WARN}','HAProxy: {#PXNAME} {#SVNAME}: Current number of requests unassigned in queue is high','','0','2','Current number of requests unassigned in queue is more than {$HAPROXY.SERVER_QCUR.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy: {#PXNAME} {#SVNAME}: Current number of requests unassigned in queue is more than {$HAPROXY.SERVER_QCUR.MAX.WARN} for 5m','b88e0b4baa2e4738a161a7fc437d6e1c',''), ('16658','{19471}>{$HAPROXY.SERVER_QTIME.MAX.WARN}','HAProxy: {#PXNAME} {#SVNAME}: Average time spent in queue is high','','0','2','Average time spent in queue (in ms) for the last 1,024 requests is more than {$HAPROXY.SERVER_QTIME.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy: {#PXNAME} {#SVNAME}: Average time spent in queue is more than {$HAPROXY.SERVER_QTIME.MAX.WARN} for 5m','abf3d9e3f6fa43d8bf722bcc58c37388',''), ('16659','{19472}>{$HAPROXY.SERVER_RTIME.MAX.WARN}','HAProxy: {#PXNAME} {#SVNAME}: Average response time is high','','0','2','Average server response time (in ms) for the last 1,024 requests is more than {$HAPROXY.SERVER_RTIME.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy: {#PXNAME} {#SVNAME}: Average response time is more than {$HAPROXY.SERVER_RTIME.MAX.WARN} for 5m','51ae2aca459b453cb433c5cc0f043a25',''), ('16660','{23210}=5','HAProxy: {#PXNAME} {#SVNAME}: Server is DOWN','','0','2','Server is not available.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','ec64ec00aa164ac09faf90794264907a',''), ('16661','{19474}<10m','HAProxy: Service has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','HAProxy: Service has been restarted (uptime < 10m)','ff606f3c571340389562fabc9e814463',''), ('16662','{23212}<>{23213} and length({23214})>0','HAProxy: Version has changed','','0','1','HAProxy version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','HAProxy: Version has changed (new version: {ITEM.VALUE})','c4b8346311a34cd19ebc8fbab53737fe',''), ('16665','{19479}>{$HAPROXY.BACK_ERESP.MAX.WARN}','HAProxy: backend {#PXNAME}: Number of responses with error is high','','0','2','Number of requests on backend, whose responses yielded an error, is more than {$HAPROXY.BACK_ERESP.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy: backend {#PXNAME}: Number of responses with error is more than {$HAPROXY.BACK_ERESP.MAX.WARN} for 5m','efe5a794bd47419398aa3aa35a177f08',''), ('16666','{19480}>{$HAPROXY.BACK_QCUR.MAX.WARN}','HAProxy: backend {#PXNAME}: Current number of requests unassigned in queue is high','','0','2','Current number of requests on backend unassigned in queue is more than {$HAPROXY.BACK_QCUR.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy: backend {#PXNAME}: Current number of requests unassigned in queue is more than {$HAPROXY.BACK_QCUR.MAX.WARN} for 5m','be428614e0874726b63d79150813542d',''), ('16667','{19481}>{$HAPROXY.BACK_QTIME.MAX.WARN}','HAProxy: backend {#PXNAME}: Average time spent in queue is high','','0','2','Average time spent in queue (in ms) for the last 1,024 requests is more than {$HAPROXY.BACK_QTIME.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy: backend {#PXNAME}: Average time spent in queue is more than {$HAPROXY.BACK_QTIME.MAX.WARN} for 5m','fa8211069df846a1b2ee8afcdd52f4a0',''), ('16668','{19482}>{$HAPROXY.BACK_RTIME.MAX.WARN}','HAProxy: backend {#PXNAME}: Average response time is high','','0','2','Average backend response time (in ms) for the last 1,024 requests is more than {$HAPROXY.BACK_RTIME.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy: backend {#PXNAME}: Average response time is more than {$HAPROXY.BACK_RTIME.MAX.WARN} for 5m','90c0bd8c280246b7903ac90c32553fd5',''), ('16669','{23215}=5','HAProxy: backend {#PXNAME}: Server is DOWN','','0','3','Backend is not available.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','5ea80b42a6be4df48f048a5aa253c923',''), ('16670','{19484}>{$HAPROXY.FRONT_DREQ.MAX.WARN}','HAProxy: frontend {#PXNAME}: Number of requests denied is high','','0','2','Number of requests denied due to security concerns (ACL-restricted) is more than {$HAPROXY.FRONT_DREQ.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy: frontend {#PXNAME}: Number of requests denied is more than {$HAPROXY.FRONT_DREQ.MAX.WARN} for 5m','4d8ac22673944752979263b34521af65',''), ('16671','{19485}>{$HAPROXY.FRONT_EREQ.MAX.WARN}','HAProxy: frontend {#PXNAME}: Number of request errors is high','','0','2','Number of request errors is more than {$HAPROXY.FRONT_EREQ.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy: frontend {#PXNAME}: Number of request errors is more than {$HAPROXY.FRONT_EREQ.MAX.WARN} for 5m','c51ac95f4d4a46e1ac1df1d057197f6e',''), ('16672','{19486}>{$HAPROXY.FRONT_SUTIL.MAX.WARN}','HAProxy: frontend {#PXNAME}: Session utilization is high','','0','2','Alerting on this metric is essential to ensure your server has sufficient capacity to handle all concurrent sessions. Unlike requests, upon reaching the session limit HAProxy will deny additional clients until resource consumption drops. Furthermore, if you find your session usage percentage to be hovering above 80%, it could be time to either modify HAProxy''s configuration to allow more sessions, or migrate your HAProxy server to a bigger box.',NULL,'0','2','0','','0','','0','','0','HAProxy: frontend {#PXNAME}: Session utilization is more than {$HAPROXY.FRONT_SUTIL.MAX.WARN}% for 5m','ad33db7c356342e78ee19e904c981f1f',''), ('16673','{19487}>{$HAPROXY.SERVER_ERESP.MAX.WARN}','HAProxy: {#PXNAME} {#SVNAME}: Number of responses with error is high','','0','2','Number of requests on server, whose responses yielded an error, is more than {$HAPROXY.SERVER_ERESP.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy: {#PXNAME} {#SVNAME}: Number of responses with error is more than {$HAPROXY.SERVER_ERESP.MAX.WARN} for 5m','bf952df23dac4b059d0219b204449830',''), ('16674','{19488}>{$HAPROXY.SERVER_QCUR.MAX.WARN}','HAProxy: {#PXNAME} {#SVNAME}: Current number of requests unassigned in queue is high','','0','2','Current number of requests unassigned in queue is more than {$HAPROXY.SERVER_QCUR.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy: {#PXNAME} {#SVNAME}: Current number of requests unassigned in queue is more than {$HAPROXY.SERVER_QCUR.MAX.WARN} for 5m','24e803eab76244d38ff90f2fce396b7f',''), ('16675','{19489}>{$HAPROXY.SERVER_QTIME.MAX.WARN}','HAProxy: {#PXNAME} {#SVNAME}: Average time spent in queue is high','','0','2','Average time spent in queue (in ms) for the last 1,024 requests is more than {$HAPROXY.SERVER_QTIME.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy: {#PXNAME} {#SVNAME}: Average time spent in queue is more than {$HAPROXY.SERVER_QTIME.MAX.WARN} for 5m','f6d92dc0d2334ca4a7a4c0c81f60c44c',''), ('16676','{19490}>{$HAPROXY.SERVER_RTIME.MAX.WARN}','HAProxy: {#PXNAME} {#SVNAME}: Average response time is high','','0','2','Average server response time (in ms) for the last 1,024 requests is more than {$HAPROXY.SERVER_RTIME.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','HAProxy: {#PXNAME} {#SVNAME}: Average response time is more than {$HAPROXY.SERVER_RTIME.MAX.WARN} for 5m','5a0444417ebf47cab0218e8407f04354',''), ('16677','{23216}=5','HAProxy: {#PXNAME} {#SVNAME}: Server is DOWN','','0','2','Server is not available.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','ccf6dbe8970f4f9f9223027e676aa57e',''), ('16679','{33396}=0 or {33397}=1','Nginx: Failed to fetch stub status page','','0','2','Zabbix has not received any data for items for the last 30 minutes.',NULL,'0','0','0','','0','','1','','0','Nginx: Failed to fetch stub status page (or no data for 30m)','78e0a6322a1941469a0e108a9367c420',''), ('16681','{19497}/{19498}*100>{$REDIS.CLIENTS.PRC.MAX.WARN}','Redis: Total number of connected clients is too high','','0','2','When the number of clients reaches the value of the "maxclients" parameter, new connections will be rejected. https://redis.io/topics/clients#maximum-number-of-clients',NULL,'0','0','0','','0','','0','','0','Redis: Total number of connected clients is too high (over {$REDIS.CLIENTS.PRC.MAX.WARN}% in 5m)','65e4652dbebe47c4b46e47bb8a17aac6',''), ('16682','{23504}<>{23505} and length({23506})>0','Redis: Configuration has changed','','0','1','Redis configuration has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','819b379b51c34616820f86d21c703b27',''), ('16683','{19501}=1','Redis: Failed to fetch info data','','0','2','Zabbix has not received any data for items for the last 30 minutes.',NULL,'0','0','0','','0','','1','','0','Redis: Failed to fetch info data (or no data for 30m)','0a5176877ba24df8b5d38c8cc544f0a8',''), ('16684','{19502}>{$REDIS.MEM.FRAG_RATIO.MAX.WARN}','Redis: Memory fragmentation ratio is too high','','0','2','This ratio is an indication of memory mapping efficiency: - Value over 1.0 indicate that memory fragmentation is very likely. Consider restarting the Redis server so the operating system can recover fragmented memory, especially with a ratio over 1.5. - Value under 1.0 indicate that Redis likely has insufficient memory available. Consider optimizing memory usage or adding more RAM. Note: If your peak memory usage is much higher than your current memory usage, the memory fragmentation ratio may be unreliable. https://redis.io/topics/memory-optimization',NULL,'0','0','0','','0','','0','','0','Redis: Memory fragmentation ratio is too high (over {$REDIS.MEM.FRAG_RATIO.MAX.WARN} in 15m)','629531ff1ebc4bdbb1f277848c436230',''), ('16685','{19503}=0','Redis: Last AOF write operation failed','','0','2','Detailed information about persistence: https://redis.io/topics/persistence',NULL,'0','0','0','','0','','0','','0','','324e0e8fac514ba99d67aea7eb0ddf7c',''), ('16686','{19504}=0','Redis: Last RDB save operation failed','','0','2','Detailed information about persistence: https://redis.io/topics/persistence',NULL,'0','0','0','','0','','0','','0','','44e427ae3ce7419dbac3059be11e31ef',''), ('16687','{19505}=0','Redis: Service is down','','0','3','',NULL,'0','0','0','','0','','1','','0','','62353f9ed6204b70ba270827c3922244',''), ('16688','{23507}<>{23508}','Redis: Number of slaves has changed','','0','1','Redis number of slaves has changed. Acknowledge to close the problem manually.',NULL,'0','0','2','','0','','1','','0','','6d213088211a4bb38ff97b59113dccd9',''), ('16689','{23509}<>{23510} and length({23511})>0','Redis: Replication role has changed','','0','2','Redis replication role has changed. Acknowledge to close the problem manually.',NULL,'0','0','2','','0','','1','','0','Redis: Replication role has changed (new role: {ITEM.VALUE})','d24f7aabefb345e791b3bb276f30ac8c',''), ('16690','{23512}<>{23513} and length({23514})>0','Redis: Version has changed','','0','1','The Redis version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Redis: Version has changed (new version: {ITEM.VALUE})','6e307546b26344deb83f2295c90e9a33',''), ('16691','{19511}<10m','Redis: Host has been restarted','','0','1','The host uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Redis: {HOST.NAME} has been restarted (uptime < 10m)','4961e91eed2a4e83899d135315748b0e',''), ('16692','{19512}>{$REDIS.SLOWLOG.COUNT.MAX.WARN}','Redis: Too many entries in the slowlog','','0','1','',NULL,'0','0','0','','0','','0','','0','Redis: Too many entries in the slowlog (over {$REDIS.SLOWLOG.COUNT.MAX.WARN} per second in 5m)','37fb0255e49c42c8913e56fe4aaa1d14',''), ('16693','{19513}>0','Redis: Connections are rejected','','0','4','The number of connections has reached the value of "maxclients". https://redis.io/topics/clients',NULL,'0','0','0','','0','','0','','0','','5bf0680529ce496b8fe419e2732c69d1',''), ('16694','{19514}=0','Redis: Process is not running','','0','4','',NULL,'0','2','0','','0','','0','','0','','590bd23c52b74dd7951dcf74903ac2ed',''), ('16696','{19517}>{$REDIS.REPL.LAG.MAX.WARN}','Redis: Replication lag with master is too high','','0','2','',NULL,'0','2','0','','0','','0','','0','Redis: Replication lag with master is too high (over {$REDIS.REPL.LAG.MAX.WARN} in 5m)','292f477d970d4a138d2d1b2c45d965dd',''), ('16710','{19548} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} or {19549} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"}','Linux: {#DEVNAME}: Disk read/write request responses are too high','','0','2','This trigger might indicate the disk `{#DEVNAME}` saturation.',NULL,'0','2','0','','0','','1','','0','Linux: {#DEVNAME}: Disk read/write request responses are too high (read > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} ms for 15m or write > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} ms for 15m)','412381f71bba441b955898839f81d51c',''), ('16719','{19558}>{$MYSQL.ABORTED_CONN.MAX.WARN}','MySQL: Server has aborted connections','','0','3','The number of failed attempts to connect to the MySQL server is more than `{$MYSQL.ABORTED_CONN.MAX.WARN}` in the last 5 minutes.',NULL,'0','0','0','','0','','0','','0','MySQL: Server has aborted connections (over {$MYSQL.ABORTED_CONN.MAX.WARN} for 5m)','e51c9ee3061c4e3889be1666afe6959d',''), ('16721','{19560}>0','MySQL: Refused connections','','0','3','Number of refused connections due to the `max_connections` limit being reached.',NULL,'0','0','0','','0','','0','','0','MySQL: Refused connections (max_connections limit reached)','2ff2d0f399df4cb08b7196d3a4690567',''), ('16723','{19562}=0','MySQL: Service is down','','0','4','MySQL is down.',NULL,'0','0','0','','0','','0','','0','','e78f07e3e507461f8fe33a31b1bc4eb9',''), ('16724','{19563}>{$MYSQL.SLOW_QUERIES.MAX.WARN}','MySQL: Server has slow queries','','0','2','The number of slow queries is more than `{$MYSQL.SLOW_QUERIES.MAX.WARN}` in the last 5 minutes.',NULL,'0','0','0','','0','','0','','0','MySQL: Server has slow queries (over {$MYSQL.SLOW_QUERIES.MAX.WARN} for 5m)','113509b7a7b54a108c1c63346a52bbf2',''), ('16725','{19564}<10m','MySQL: Service has been restarted','','0','1','MySQL uptime is less than 10 minutes.',NULL,'0','0','0','','0','','0','','0','MySQL: Service has been restarted (uptime < 10m)','f02f51c764934cf394c5ad3f9c4e70d2',''), ('16726','{23455}<>{23456} and length({23457})>0','MySQL: Version has changed','','0','1','The MySQL version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MySQL: Version has changed (new version value received: {ITEM.VALUE})','7eab3a7337904ad1b2061d209371543b',''), ('16727','{19567}>{$MYSQL.REPL_LAG.MAX.WARN}','MySQL: Replication lag is too high','','0','2','Replication delay is too long.',NULL,'0','2','0','','0','','0','','0','MySQL: Replication lag is too high (over {$MYSQL.REPL_LAG.MAX.WARN} for 5m)','a5c91da088414d279f5ea3cd59093ce9',''), ('16728','{19568}=1','MySQL: The slave I/O thread is not running','','0','3','Whether the I/O thread for reading the master''s binary log is running.',NULL,'0','2','0','','0','','0','','0','','4c8ca45f26254d9a9a1c9248f1fa1537',''), ('16729','{19569}=1','MySQL: The slave I/O thread is not connected to a replication master','','0','2','Whether the slave I/O thread is connected to the master.',NULL,'0','2','0','','0','','0','','0','','8ee45932311443cb906306b1d2c99b19',''), ('16730','{19570}=1','MySQL: The SQL thread is not running','','0','2','Whether the SQL thread for executing events in the relay log is running.',NULL,'0','2','0','','0','','0','','0','','bd0d20c05e3b46b6a7c341e5d122208b',''), ('16732','{19572}=0','MySQL: Service is down','','0','4','MySQL is down.',NULL,'0','0','0','','0','','0','','0','','e664e41d7b4f4336a3e5ef4720f6ee41',''), ('16733','{23461}<>{23462} and length({23463})>0','MySQL: Version has changed','','0','1','The MySQL version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MySQL: Version has changed (new version value received: {ITEM.VALUE})','4090a1d3d82d47ac85964baeae121b2b',''), ('16734','{19575}>{$MYSQL.ABORTED_CONN.MAX.WARN}','MySQL: Server has aborted connections','','0','3','The number of failed attempts to connect to the MySQL server is more than `{$MYSQL.ABORTED_CONN.MAX.WARN}` in the last 5 minutes.',NULL,'0','0','0','','0','','0','','0','MySQL: Server has aborted connections (over {$MYSQL.ABORTED_CONN.MAX.WARN} for 5m)','5934cb80f9c3442d978c63780b1ebc9f',''), ('16736','{19577}>0','MySQL: Refused connections','','0','3','Number of refused connections due to the `max_connections` limit being reached.',NULL,'0','0','0','','0','','0','','0','MySQL: Refused connections (max_connections limit reached)','ac781c951ac0453a9c1008b2cf801518',''), ('16737','{19578}>{$MYSQL.SLOW_QUERIES.MAX.WARN}','MySQL: Server has slow queries','','0','2','The number of slow queries is more than `{$MYSQL.SLOW_QUERIES.MAX.WARN}` in the last 5 minutes.',NULL,'0','0','0','','0','','0','','0','MySQL: Server has slow queries (over {$MYSQL.SLOW_QUERIES.MAX.WARN} for 5m)','b981c7a2ffed4eddbc9f1d6913c2e4b0',''), ('16738','{19579}<10m','MySQL: Service has been restarted','','0','1','MySQL uptime is less than 10 minutes.',NULL,'0','0','0','','0','','0','','0','MySQL: Service has been restarted (uptime < 10m)','cd8f5996bd85434998595e041d6b0908',''), ('16739','{19580}>{$MYSQL.REPL_LAG.MAX.WARN}','MySQL: Replication lag is too high','','0','2','Replication delay is too long.',NULL,'0','2','0','','0','','0','','0','MySQL: Replication lag is too high (over {$MYSQL.REPL_LAG.MAX.WARN} for 5m)','f2188a73bbf34ffcb95b3e11e2824feb',''), ('16740','{19581}=1','MySQL: The slave I/O thread is not running','','0','3','Whether the I/O thread for reading the master''s binary log is running.',NULL,'0','2','0','','0','','0','','0','','ba08061a61df4bbb8bac516ecec91b70',''), ('16741','{19582}=1','MySQL: The slave I/O thread is not connected to a replication master','','0','2','Whether the slave I/O thread is connected to the master.',NULL,'0','2','0','','0','','0','','0','','6f216036f4f14ae7adc8c70126bb315a',''), ('16742','{19583}=1','MySQL: The SQL thread is not running','','0','2','Whether the SQL thread for executing events in the relay log is running.',NULL,'0','2','0','','0','','0','','0','','39d229e5e3f34e8b828b4a0e2eaa0026',''), ('16743','{19584}=1','Docker: Failed to fetch info data','','0','2','Zabbix has not received data for items for the last 30 minutes.',NULL,'0','0','0','','0','','1','','0','Docker: Failed to fetch info data (or no data for 30m)','2c62bb4d95684e6984447027d117ff4d',''), ('16744','{19585}=0','Docker: Service is down','','0','3','',NULL,'0','0','0','','0','','1','','0','','a4f00b4d25b54acfa61475c94651d8a5',''), ('16745','{23191}<>{23192} and length({23193})>0','Docker: Version has changed','','0','1','Docker version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Docker: Version has changed (new version: {ITEM.VALUE})','f5f4fb1337264ac2bec6b6505dfe180b',''), ('16746','{19588}>0 and {19589}=0','Docker: Container {#NAME}: Container has been stopped with error code','','0','3','',NULL,'0','2','0','','0','','1','Exit code: {ITEM.LASTVALUE1}','0','','db675ff608a14b12bcc02e6b500c557f',''), ('16747','{23194}<>{23195} and length({23196})>0','Docker: Container {#NAME}: An error has occurred in the container','','0','2','Container {#NAME} has an error. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Docker: Container {#NAME}: Version has changed (new version: {ITEM.VALUE})','ee70b91196494eccb54772b22051a456',''), ('16748','{19592}/{19593}*100>{$MEMCACHED.MEM.PUSED.MAX.WARN}','Memcached: Memory usage is too high','','0','2','',NULL,'0','0','0','','0','','0','','0','Memcached: Memory usage is too high (over {$MEMCACHED.MEM.PUSED.MAX.WARN} in 5m)','e6129a8ace1945fa9020c6c0008cb19c',''), ('16749','{19594}/{19595}*100>{$MEMCACHED.CONN.PRC.MAX.WARN}','Memcached: Total number of connected clients is too high','','0','2','When the number of connections reaches the value of the "max_connections" parameter, new connections will be rejected.',NULL,'0','0','0','','0','','0','','0','Memcached: Total number of connected clients is too high (over {$MEMCACHED.CONN.PRC.MAX.WARN}% in 5m)','61021d383c9f41b990292bab2738356d',''), ('16750','{19596}>{$MEMCACHED.CONN.QUEUED.MAX.WARN}','Memcached: Too many queued connections','','0','2','The max number of connections is reached and a new connection had to wait in the queue as a result.',NULL,'0','0','0','','0','','0','','0','Memcached: Too many queued connections (over {$MEMCACHED.CONN.QUEUED.MAX.WARN} in 5m)','922a59008cd94e0688db8528be296f89',''), ('16751','{19597}>{$MEMCACHED.CONN.THROTTLED.MAX.WARN}','Memcached: Too many throttled connections','','0','2','Number of times a client connection was throttled is too high. When sending GETs in batch mode and the connection contains too many requests (limited by -R parameter) the connection might be throttled to prevent starvation.',NULL,'0','0','0','','0','','0','','0','Memcached: Too many throttled connections (over {$MEMCACHED.CONN.THROTTLED.MAX.WARN} in 5m)','33c9b918d21343dea3bcd2c3e3505fc5',''), ('16752','{19598}=1','Memcached: Failed to fetch info data','','0','2','Zabbix has not received any data for items for the last 30 minutes.',NULL,'0','0','0','','0','','1','','0','Memcached: Failed to fetch info data (or no data for 30m)','a30bb4344e714b7f984e86046797b9b1',''), ('16753','{19599}=0','Memcached: Service is down','','0','3','',NULL,'0','0','0','','0','','1','','0','','c6184e4c3cc54e199244dc8efb3cacf8',''), ('16754','{19600}<10m','Memcached: Service has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Memcached: Service has been restarted (uptime < 10m)','c53a2d7b861b41458976bfa03ab1a105',''), ('16755','{23228}<>{23229} and length({23230})>0','Memcached: Version has changed','','0','1','The Memcached version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Memcached: Version has changed (new version: {ITEM.VALUE})','086e757b4a2048eabd5e91b4a0ccc07b',''), ('16756','{19603}>{$MYSQL.ABORTED_CONN.MAX.WARN}','MySQL: Server has aborted connections','','0','3','The number of failed attempts to connect to the MySQL server is more than `{$MYSQL.ABORTED_CONN.MAX.WARN}` in the last 5 minutes.',NULL,'0','0','0','','0','','0','','0','MySQL: Server has aborted connections (over {$MYSQL.ABORTED_CONN.MAX.WARN} for 5m)','0f984c4458ae4a7f9388b1edb42090bf',''), ('16758','{19605}>0','MySQL: Refused connections','','0','3','Number of refused connections due to the `max_connections` limit being reached.',NULL,'0','0','0','','0','','0','','0','MySQL: Refused connections (max_connections limit reached)','15cd0177e955459ba0862425755583a0',''), ('16759','{19606}=0','MySQL: Service is down','','0','4','MySQL is down.',NULL,'0','0','0','','0','','0','','0','','907a105ecee24eef9dd89598a42b6974',''), ('16760','{19607}>{$MYSQL.SLOW_QUERIES.MAX.WARN}','MySQL: Server has slow queries','','0','2','The number of slow queries is more than `{$MYSQL.SLOW_QUERIES.MAX.WARN}` in the last 5 minutes.',NULL,'0','0','0','','0','','0','','0','MySQL: Server has slow queries (over {$MYSQL.SLOW_QUERIES.MAX.WARN} for 5m)','8ffcb17b0a644c5e8a2842b34d5713a8',''), ('16761','{19608}<10m','MySQL: Service has been restarted','','0','1','MySQL uptime is less than 10 minutes.',NULL,'0','0','0','','0','','0','','0','MySQL: Service has been restarted (uptime < 10m)','db5159889cb94f27840e6f4974ee5c0e',''), ('16762','{23458}<>{23459} and length({23460})>0','MySQL: Version has changed','','0','1','The MySQL version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MySQL: Version has changed (new version value received: {ITEM.VALUE})','e22c2e2213d74df98d344a95c8a96b6d',''), ('16763','{19611}>{$MYSQL.REPL_LAG.MAX.WARN}','MySQL: Replication lag is too high','','0','2','Replication delay is too long.',NULL,'0','2','0','','0','','0','','0','MySQL: Replication lag is too high (over {$MYSQL.REPL_LAG.MAX.WARN} for 5m)','373e215000a64e05b0379f186141067f',''), ('16764','{19612}=1','MySQL: The slave I/O thread is not running','','0','3','Whether the I/O thread for reading the master''s binary log is running.',NULL,'0','2','0','','0','','0','','0','','369f7ade45cd4ca39f5aa47d638e5e00',''), ('16765','{19613}=1','MySQL: The slave I/O thread is not connected to a replication master','','0','2','Whether the slave I/O thread is connected to the master.',NULL,'0','2','0','','0','','0','','0','','efe46a25a1fd48e1a7504a9b06c26aee',''), ('16766','{19614}=1','MySQL: The SQL thread is not running','','0','2','Whether the SQL thread for executing events in the relay log is running.',NULL,'0','2','0','','0','','0','','0','','9099f769af4c4008a69098f9e9f63673',''), ('16767','{24445}<>{24446}','Chassis: {#SENSOR_ID} value has changed','','0','1','The trigger is informing about changes in a state of the discrete IPMI sensor. A problem generated by this trigger can be manually closed.',NULL,'0','2','0','','0','','1','','0','','efe107571d704895bbb43c95407e6689',''), ('16768','{19616}<{#SENSOR_LO_WARN}','Chassis: {#SENSOR_ID} value is below non-critical low','','0','2','The trigger is informing that a value less than the lower non-critical threshold has been reached.',NULL,'0','2','0','','0','','0','','0','Chassis: {#SENSOR_ID} value is below non-critical low (less than {#SENSOR_LO_WARN} for 5m)','7b712e7b11a34635948517467f77ad9d',''), ('16769','{19617}<{#SENSOR_LO_CRIT}','Chassis: {#SENSOR_ID} value is below critical low','','0','4','The trigger is informing that a value less than the lower critical threshold has been reached.',NULL,'0','2','0','','0','','0','','0','Chassis: {#SENSOR_ID} value is below critical low (less than {#SENSOR_LO_CRIT} for 5m)','adbb7e20a46d42329e4744548aa9d5f6',''), ('16770','{19618}<{#SENSOR_LO_DISAST}','Chassis: {#SENSOR_ID} value is below non-recoverable low','','0','5','The trigger is informing that a value less than the lower non-recoverable threshold has been reached.',NULL,'0','2','0','','0','','0','','0','Chassis: {#SENSOR_ID} value is below non-recoverable low (less than {#SENSOR_LO_DISAST} for 5m)','b078ee6b820f44f2871c2e3fcd0ce4cf',''), ('16771','{19619}>{#SENSOR_HI_WARN}','Chassis: {#SENSOR_ID} value is above non-critical high','','0','2','The trigger is informing that a value higher than the upper non-critical threshold has been reached.',NULL,'0','2','0','','0','','0','','0','Chassis: {#SENSOR_ID} value is above non-critical high (greater than {#SENSOR_HI_WARN} for 5m)','0fc9d9baa3dd4d3db841e2153b6c39b2',''), ('16772','{19620}>{#SENSOR_HI_CRIT}','Chassis: {#SENSOR_ID} value is above critical high','','0','4','The trigger is informing that a value higher than the upper critical threshold has been reached.',NULL,'0','2','0','','0','','0','','0','Chassis: {#SENSOR_ID} value is above critical high (greater than {#SENSOR_HI_CRIT} for 5m)','e9c37c1847d64920b80a20cc764b6c81',''), ('16773','{19621}>{#SENSOR_HI_DISAST}','Chassis: {#SENSOR_ID} value is above non-recoverable high','','0','5','The trigger is informing that a value higher than the upper non-recoverable threshold has been reached.',NULL,'0','2','0','','0','','0','','0','Chassis: {#SENSOR_ID} value is above non-recoverable high (greater than {#SENSOR_HI_DISAST} for 5m)','2c3dbc3f68db44f1924682a8241e0086',''), ('16774','(({35824} - {35825}) / ({35826} - ({35826} >= 2)) > {35825}) and ({35826} > 1)','Elasticsearch: Cluster does not have enough space for resharding','','0','4','There is not enough disk space for index resharding.',NULL,'0','0','0','','0','','0','','0','','a2f33888d2774325b7955b633a7aae81',''), ('16775','{19625}>0','Elasticsearch: Cluster has the initializing shards','','0','3','The cluster has the initializing shards longer than 10 minutes.',NULL,'0','0','0','','0','','0','','0','','ee59684bb2044540ad0306a5b6deb408',''), ('16776','{19626}<0','Elasticsearch: The number of nodes within the cluster has decreased','','0','1','',NULL,'0','0','0','','0','','1','','0','','5be4cb40e72442aca18ea014adbead23',''), ('16777','{19627}>0','Elasticsearch: The number of nodes within the cluster has increased','','0','1','',NULL,'0','0','0','','0','','1','','0','','2fba2b29425b4ff9a4008db9bde49d7f',''), ('16778','{19628}=1','Elasticsearch: Health is YELLOW','','0','3','All primary shards are assigned, but one or more replica shards are unassigned. If a node in the cluster fails, some data could be unavailable until that node is repaired.',NULL,'0','0','0','','0','','0','','0','','99f36c2aa5d64248b96d1fc97c3b3065',''), ('16779','{19629}=2','Elasticsearch: Health is RED','','0','4','One or more primary shards are unassigned, so some data is unavailable. This can occur briefly during cluster startup as primary shards are assigned.',NULL,'0','0','0','','0','','0','','0','','f3bb7e96f6074063bad76521e1dce24f',''), ('16780','{19630}=255','Elasticsearch: Health is UNKNOWN','','0','4','The health status of the cluster is unknown or cannot be obtained.',NULL,'0','0','0','','0','','0','','0','','33a6ef13f7b240768841919482709411',''), ('16781','{19631}>0','Elasticsearch: Cluster has the unassigned shards','','0','3','The cluster has the unassigned shards longer than 10 minutes.',NULL,'0','0','0','','0','','0','','0','','35bdd54f27a64009b96a06a12508f99c',''), ('16782','{19632}=2','Elasticsearch: Cluster has only two master nodes','','0','5','The cluster has only two nodes with a master role and will be unavailable if one of them breaks.',NULL,'0','0','0','','0','','0','','0','','8011883baef04aa0bed343d1bb0df288',''), ('16783','{19633}<10m','Elasticsearch: Cluster has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Elasticsearch: Cluster has been restarted (uptime < 10m)','d28aa18c85cb4f48a9e7b8ba55d65400',''), ('16784','{19634}>{$ELASTICSEARCH.RESPONSE_TIME.MAX.WARN}','Elasticsearch: Service response time is too high','','0','2','The performance of the TCP service is very low.',NULL,'0','0','0','','0','','1','','0','Elasticsearch: Service response time is too high (over {$ELASTICSEARCH.RESPONSE_TIME.MAX.WARN} for 5m)','2a3f3b96e5dd47de998ccc17f109e149',''), ('16785','{19635}=0','Elasticsearch: Service is down','','0','3','The service is unavailable or does not accept TCP connections.',NULL,'0','0','0','','0','','1','','0','','b4d76f68ce94492f96bbfbb778d1f144',''), ('16786','{19636}>{$ELASTICSEARCH.FLUSH_LATENCY.MAX.WARN}','Elasticsearch: ES {#ES.NODE}: Flush latency is too high','','0','2','If you see this metric increasing steadily, it may indicate a problem with slow disks; this problem may escalate and eventually prevent you from being able to add new information to your index.',NULL,'0','2','0','','0','','0','','0','Elasticsearch: ES {#ES.NODE}: Flush latency is too high (over {$ELASTICSEARCH.FLUSH_LATENCY.MAX.WARN}ms for 5m)','6c2ea291374b4de1ab06ddeccba635b1',''), ('16787','{19637}>{$ELASTICSEARCH.INDEXING_LATENCY.MAX.WARN}','Elasticsearch: ES {#ES.NODE}: Indexing latency is too high','','0','2','If the latency is increasing, it may indicate that you are indexing too many documents at the same time (Elasticsearch''s documentation recommends starting with a bulk indexing size of 5 to 15 megabytes and increasing slowly from there).',NULL,'0','2','0','','0','','0','','0','Elasticsearch: ES {#ES.NODE}: Indexing latency is too high (over {$ELASTICSEARCH.INDEXING_LATENCY.MAX.WARN}ms for 5m)','2755b3f8811a45fba7c48347707ceaf8',''), ('16788','{19638}>{$ELASTICSEARCH.FETCH_LATENCY.MAX.WARN}','Elasticsearch: ES {#ES.NODE}: Fetch latency is too high','','0','2','The fetch phase should typically take much less time than the query phase. If you notice this metric consistently increasing, this could indicate a problem with slow disks, enriching of documents (highlighting the relevant text in search results, etc.), or requesting too many results.',NULL,'0','2','0','','0','','0','','0','Elasticsearch: ES {#ES.NODE}: Fetch latency is too high (over {$ELASTICSEARCH.FETCH_LATENCY.MAX.WARN}ms for 5m)','6edd6851f31842659a57e29c444a9b32',''), ('16789','{19639}>{$ELASTICSEARCH.QUERY_LATENCY.MAX.WARN}','Elasticsearch: ES {#ES.NODE}: Query latency is too high','','0','2','If latency exceeds a threshold, look for potential resource bottlenecks, or investigate whether you need to optimize your queries.',NULL,'0','2','0','','0','','0','','0','Elasticsearch: ES {#ES.NODE}: Query latency is too high (over {$ELASTICSEARCH.QUERY_LATENCY.MAX.WARN}ms for 5m)','1892000290c843e887d128bf9f97c869',''), ('16790','{19640}>{$ELASTICSEARCH.HEAP_USED.MAX.WARN}','Elasticsearch: ES {#ES.NODE}: Percent of JVM heap in use is high','','0','2','This indicates that the rate of garbage collection isn''t keeping up with the rate of garbage creation. To address this problem, you can either increase your heap size (as long as it remains below the recommended guidelines stated above), or scale out the cluster by adding more nodes.',NULL,'0','2','0','','0','','0','','0','Elasticsearch: ES {#ES.NODE}: Percent of JVM heap in use is high (over {$ELASTICSEARCH.HEAP_USED.MAX.WARN}% for 1h)','bbba4a577a2c4328b2392fdeb1ff9bb4',''), ('16791','{19641}>{$ELASTICSEARCH.HEAP_USED.MAX.CRIT}','Elasticsearch: ES {#ES.NODE}: Percent of JVM heap in use is critical','','0','4','This indicates that the rate of garbage collection isn''t keeping up with the rate of garbage creation. To address this problem, you can either increase your heap size (as long as it remains below the recommended guidelines stated above), or scale out the cluster by adding more nodes.',NULL,'0','2','0','','0','','0','','0','Elasticsearch: ES {#ES.NODE}: Percent of JVM heap in use is critical (over {$ELASTICSEARCH.HEAP_USED.MAX.CRIT}% for 1h)','9d199607ddda48eebe9f93cae6d6575d',''), ('16792','{19642}<10m','Elasticsearch: ES {#ES.NODE}: Node has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','2','0','','0','','1','','0','Elasticsearch: ES {#ES.NODE}: Node has been restarted (uptime < 10m)','580ae8aadf994fbcb34c9c8ad7cd5fad',''), ('16793','{19643}>0','Elasticsearch: ES {#ES.NODE}: Refresh thread pool executor has the rejected tasks','','0','2','The number of tasks rejected by the refresh thread pool executor is over 0 for 5m.',NULL,'0','2','0','','0','','0','','0','Elasticsearch: ES {#ES.NODE}: Refresh thread pool executor has the rejected tasks (for 5m)','b416941e8e0141c6af27c62f052ac860',''), ('16794','{19644}>0','Elasticsearch: ES {#ES.NODE}: Search thread pool executor has the rejected tasks','','0','2','The number of tasks rejected by the search thread pool executor is over 0 for 5m.',NULL,'0','2','0','','0','','0','','0','Elasticsearch: ES {#ES.NODE}: Search thread pool executor has the rejected tasks (for 5m)','5cfd3f9924614a4283f1255752b672f0',''), ('16795','{19645}>0','Elasticsearch: ES {#ES.NODE}: Write thread pool executor has the rejected tasks','','0','2','The number of tasks rejected by the write thread pool executor is over 0 for 5m.',NULL,'0','2','0','','0','','0','','0','Elasticsearch: ES {#ES.NODE}: Write thread pool executor has the rejected tasks (for 5m)','1f5e30a34bb84cef831670974ec7c3e8',''), ('16809','{19659}>{$HAPROXY.RESPONSE_TIME.MAX.WARN}','HAProxy: Service response time is too high','','0','2','',NULL,'0','0','0','','0','','1','','0','HAProxy: Service response time is too high (over {$HAPROXY.RESPONSE_TIME.MAX.WARN} for 5m)','1fed5fffc6414e0babe362c0ad742e43',''), ('16810','{19660}=0','HAProxy: Service is down','','0','3','',NULL,'0','0','0','','0','','1','','0','','b346943ac4d04a96bcef42f3c43fc555',''), ('16824','{19674}>{$CLICKHOUSE.DELAYED.FILES.DISTRIBUTED.COUNT.MAX.WARN}','ClickHouse: Too many distributed files to insert','','0','2','Clickhouse servers and in config.xml (https://clickhouse.tech/docs/en/operations/table_engines/distributed/)',NULL,'0','0','0','','0','','1','','0','ClickHouse: Too many distributed files to insert (over {$CLICKHOUSE.DELAYED.FILES.DISTRIBUTED.COUNT.MAX.WARN} for 5 min)','4ecadb993aa74126a807df3af4b892ed',''), ('16825','{19675}>{$CLICKHOUSE.DELAYED.INSERTS.MAX.WARN}','ClickHouse: Too many throttled insert queries','','0','2','Clickhouse have INSERT queries that are throttled due to high number of active data parts for partition in a MergeTree, please decrease INSERT frequency',NULL,'0','0','0','','0','','1','','0','ClickHouse: Too many throttled insert queries (over {$CLICKHOUSE.DELAYED.INSERTS.MAX.WARN) for 5 min)','164dc9841cdd4b77a650792cf1bac701',''), ('16826','{19676}>{$CLICKHOUSE.PARTS.PER.PARTITION.WARN} * 0.9','ClickHouse: Too many MergeTree parts','','0','2','Descease INSERT queries frequency. Clickhouse MergeTree table engine split each INSERT query to partitions (PARTITION BY expression) and add one or more PARTS per INSERT inside each partition, after that background merge process run, and when you have too much unmerged parts inside partition, SELECT queries performance can significate degrade, so clickhouse try delay insert, or abort it.',NULL,'0','0','0','','0','','1','','0','ClickHouse: Too many MergeTree parts (over 90% of {$CLICKHOUSE.PARTS.PER.PARTITION.WARN})','21e6d3c6047145c59cbd00032699ee99',''), ('16827','{19677}>{$CLICKHOUSE.NETWORK.ERRORS.MAX.WARN}','ClickHouse: Too many network errors','','0','2','Number of errors (timeouts and connection failures) during query execution, background pool tasks and DNS cache update is too high.',NULL,'0','0','0','','0','','0','','0','ClickHouse: Too many network errors (over {$CLICKHOUSE.NETWORK.ERRORS.MAX.WARN} in 5m)','d49b9e8978bd416f81ea01b935879d81',''), ('16829','{19679}>{$CLICKHOUSE.QUERY_TIME.MAX.WARN}','ClickHouse: There are queries running is long','','0','3','',NULL,'0','0','0','','0','','1','','0','ClickHouse: There are queries running more than {$CLICKHOUSE.QUERY_TIME.MAX.WARN} seconds','2410e7b63c8340b6b08ec729d7093be6',''), ('16830','{19680}>{$CLICKHOUSE.REPLICA.MAX.WARN}','ClickHouse: Replication lag is too high','','0','2','When replica have too much lag, it can be skipped from Distributed SELECT Queries without errors and you will have wrong query results.',NULL,'0','0','0','','0','','1','','0','ClickHouse: Replication lag is too high (over {$CLICKHOUSE.REPLICA.MAX.WARN} sec for 5min)','fc47a407b15744e79b70088ec249951a',''), ('16831','{23389}<>{23390} and length({23391})>0','ClickHouse: Configuration has been changed','','0','1','ClickHouse configuration has been changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','ClickHouse: Version has changed (new version: {ITEM.VALUE})','dfd9500636824ebf9d51d93650d62613',''), ('16832','{19683}<10m','ClickHouse: Host has been restarted','','0','1','The host uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','ClickHouse: {HOST.NAME} has been restarted (uptime < 10m)','e1316d3a83174cc49ab96ad90c46150b',''), ('16833','{19684}=1','ClickHouse: Failed to fetch info data','','0','2','Zabbix has not received any data for items for the last 30 minutes.',NULL,'0','0','0','','0','','1','','0','ClickHouse: Failed to fetch info data (or no data for 30m)','975cebc1b4324f83b5a8853fd666a179',''), ('16834','{23392}<>{23393} and length({23394})>0','ClickHouse: Version has changed','','0','1','The ClickHouse version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','ClickHouse: Version has changed (new version: {ITEM.VALUE})','244dcf8dc8584e1686585160c261ef85',''), ('16835','{19687}>1','ClickHouse: Too many ZooKeeper sessions opened','','0','2','Number of sessions (connections) to ZooKeeper. Should be no more than one, because using more than one connection to ZooKeeper may lead to bugs due to lack of linearizability (stale reads) that ZooKeeper consistency model allows.',NULL,'0','0','0','','0','','0','','0','','655622aa6c5c48c8b38d5a519602ef05',''), ('16836','{19688} < {19689}','ClickHouse: {#DB}.{#TABLE}: Number of active replicas less than number of total replicas','','0','2','',NULL,'0','2','0','','0','','0','','0','','f46f1b8d75c54129b6e2ff9ede2501b5',''), ('16837','{19690}=1','ClickHouse: {#DB}.{#TABLE} Replica is readonly','','0','2','This mode is turned on if the config doesn''t have sections with ZooKeeper, if an unknown error occurred when re-initializing sessions in ZooKeeper, and during session re-initialization in ZooKeeper.',NULL,'0','2','0','','0','','0','','0','','7cfd2342d3654407a941cb56fde5c6bf',''), ('16838','{19691}=1','ClickHouse: {#DB}.{#TABLE} Replica session is expired','','0','2','This mode is turned on if the config doesn''t have sections with ZooKeeper, if an unknown error occurred when re-initializing sessions in ZooKeeper, and during session re-initialization in ZooKeeper.',NULL,'0','2','0','','0','','0','','0','','765475cc0be84ce1b85d1f026d08c326',''), ('16839','{19692} > {$CLICKHOUSE.LOG_POSITION.DIFF.MAX.WARN}','ClickHouse: {#DB}.{#TABLE}: Difference between log_max_index and log_pointer is too high','','0','2','',NULL,'0','2','0','','0','','0','','0','ClickHouse: {#DB}.{#TABLE}: Difference between log_max_index and log_pointer is too high (More than {$CLICKHOUSE.LOG_POSITION.DIFF.MAX.WARN} for 5m)','0b06b448c0ad433c94c2a3788ca53e1a',''), ('16840','{19693}>{$CLICKHOUSE.QUEUE.SIZE.MAX.WARN:"{#TABLE}"}','ClickHouse: {#DB}.{#TABLE}: Too many operations in queue','','0','2','',NULL,'0','2','0','','0','','0','','0','ClickHouse: {#DB}.{#TABLE}: Too many operations in queue (over {$CLICKHOUSE.QUEUE.SIZE.MAX.WARN} for 5m)','6fe0a15168db4abfa1cd2a2ee45d62ad',''), ('16883','{$IFCONTROL:"{#IFNAME}"}=1 and {24344}=2 and ({24345}<>{24346})','Linux: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine context macro to value "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, do not fire for the ''eternal off'' interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{24344}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','e35b59dc09754451a721793831edc3d4',''), ('16886','{19792}<10m','Apache: Service has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Apache: Service has been restarted (uptime < 10m)','7872d9665c234f45941ca26206e0255c',''), ('16887','{23176}<>{23177} and length({23178})>0','Apache: Version has changed','','0','1','Apache version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Apache: Version has changed (new version: {ITEM.VALUE})','5124b17918f545758ca5c936332f51cd',''), ('16889','{19796}/{19797}*100>{$ETCD.OPEN.FDS.MAX.WARN}','Etcd: Current number of open files is too high','','0','2','Heavy usage of a file descriptor (i.e., near the limit of the process''s file descriptor) indicates a potential file descriptor exhaustion issue. If the file descriptors are exhausted, `etcd` may panic because it cannot create new WAL files.',NULL,'0','0','0','','0','','0','','0','Etcd: Current number of open files is too high (over {$ETCD.OPEN.FDS.MAX.WARN}% for 5m)','c45583928d204c04ad8884115e1e35c5',''), ('16890','{23197}<>{23198} and length({23199})>0','Etcd: Cluster version has changed','','0','1','Etcd version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Etcd: Cluster version has changed (new version: {ITEM.VALUE})','7c87424c4fb34c56bc9b976755b4ec02',''), ('16891','{19800}=0','Etcd: Member has no leader','','0','3','If a member does not have a leader, it is totally unavailable.',NULL,'0','0','0','','0','','0','','0','','20165719d521453bb239d818ac57805c',''), ('16892','{19801}=0','Etcd: Node healthcheck failed','','0','3','See more details on https://etcd.io/docs/v3.5/op-guide/monitoring/#health-check.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6acda7bdc9df4a4ab5b7cca76c6369f0',''), ('16893','{19802}>{$ETCD.HTTP.FAIL.MAX.WARN}','Etcd: Too many HTTP requests failures','','0','2','Too many requests failed on `etcd` instance with the `5xx HTTP code`.',NULL,'0','0','0','','0','','0','','0','Etcd: Too many HTTP requests failures (over {$ETCD.HTTP.FAIL.MAX.WARN} for 5m)','0302957e0f6b43389546e1cfb958ed9c',''), ('16894','{19803}=1','Etcd: Failed to fetch info data','','0','2','Zabbix has not received any data for items for the last 30 minutes.',NULL,'0','0','0','','0','','1','','0','Etcd: Failed to fetch info data (or no data for 30m)','44d66eb1a332418daf4c3a1110db5458',''), ('16895','({19804}-{22977})>{$ETCD.LEADER.CHANGES.MAX.WARN}','Etcd: Instance has seen too many leader changes','','0','2','Rapid leadership changes impact the performance of `etcd` significantly. It also signals that the leader is unstable, perhaps due to network connectivity issues or excessive load hitting the `etcd cluster`.',NULL,'0','0','0','','0','','0','','0','Etcd: Instance has seen too many leader changes (over {$ETCD.LEADER.CHANGES.MAX.WARN} for 15m)','1ea623927179489890a5a73eeb8177f7',''), ('16896','{19805}>{$ETCD.PROPOSAL.FAIL.MAX.WARN}','Etcd: Too many proposal failures','','0','2','Normally related to two issues: temporary failures related to a leader election or longer downtime caused by a loss of quorum in the cluster.',NULL,'0','0','0','','0','','0','','0','Etcd: Too many proposal failures (over {$ETCD.PROPOSAL.FAIL.MAX.WARN} for 5m)','432cea8bddd742ca98528be2fbc7e35e',''), ('16897','{19806}>{$ETCD.PROPOSAL.PENDING.MAX.WARN}','Etcd: Too many proposals are queued to commit','','0','2','Rising pending proposals suggests there is a high client load, or the member cannot commit proposals.',NULL,'0','0','0','','0','','0','','0','Etcd: Too many proposals are queued to commit (over {$ETCD.PROPOSAL.PENDING.MAX.WARN} for 5m)','5feefc4dd5d14fe2b56dd63029b57026',''), ('16898','{23200}<>{23201} and length({23202})>0','Etcd: Server version has changed','','0','1','Etcd version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Etcd: Server version has changed (new version: {ITEM.VALUE})','cfb2fc467b224ef694d59b5c081ed965',''), ('16899','{19809}<10m','Etcd: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Etcd: {HOST.NAME} has been restarted (uptime < 10m)','6843369969f5410a840494104d71fe1f',''), ('16900','{19810}=0','Etcd: Service is unavailable','','0','3','',NULL,'0','0','0','','0','','1','','0','','74164f0783ae4227ba44f3e865fee3bd',''), ('16901','{19811}>{$ETCD.GRPC.ERRORS.MAX.WARN}','Etcd: Too many failed gRPC requests with code: {#GRPC.CODE}','','0','2','',NULL,'0','2','0','','0','','0','','0','Etcd: Too many failed gRPC requests with code: {#GRPC.CODE} (over {$ETCD.GRPC.ERRORS.MAX.WARN} in 5m)','459b6ee5735047d597a6a4ab41b76e21',''), ('16902','{19812}=0','IIS: Port {$IIS.PORT} is down','','0','3','',NULL,'0','0','0','','0','','1','','0','','da7d9c749f884c179a105b0c9475e6bd',''), ('16903','{19813}<10m','IIS: Service has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','IIS: Service has been restarted (uptime < 10m)','7bbf8a836c66422abd4469d28afbcc00',''), ('16904','{19814}<>0','IIS: The World Wide Web Publishing Service (W3SVC) is not running','','0','4','The World Wide Web Publishing Service (W3SVC) is not in the running state. IIS cannot start.',NULL,'0','0','0','','0','','0','','0','','cac6bbb13ce84772a976275da0805179',''), ('16905','{19815}<>0','IIS: Windows process Activation Service (WAS) is not running','','0','4','Windows Process Activation Service (WAS) is not in the running state. IIS cannot start.',NULL,'0','0','0','','0','','0','','0','','98fc8e403ac0405e84bf533336c4102c',''), ('16906','{19816}<>3 and {$IIS.APPPOOL.MONITORED:"{#APPPOOL}"}=1','IIS: Application pool {#APPPOOL} is not in Running state','','0','4','',NULL,'0','2','0','','0','','0','','0','','56c6df39f3d1419ca4ce67c70f464ab7',''), ('16907','{19817}<10m','IIS: {#APPPOOL} has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','2','0','','0','','1','','0','IIS: {#APPPOOL} has been restarted (uptime < 10m)','53afe8614ac542feaed1d656152bafd2',''), ('16908','{23218}<>{23219} and {$IIS.APPPOOL.MONITORED:"{#APPPOOL}"}=1','IIS: Application pool {#APPPOOL} has been recycled','','0','1','',NULL,'0','2','0','','0','','0','','0','','665d5fbd0b9247e890a9cfa1b39fa415',''), ('16909','{19819}>{$IIS.QUEUE.MAX.WARN}','IIS: Request queue of {#APPPOOL} is too large','','0','2','',NULL,'0','2','0','','0','','0','','0','IIS: Request queue of {#APPPOOL} is too large (over {$IIS.QUEUE.MAX.WARN})','8cebd49164154999903dab2c03fd4be9',''), ('16910','{19820}=0','IIS: Port {$IIS.PORT} is down','','0','3','',NULL,'0','0','0','','0','','1','','0','','2b73bb4c09404d748e019ef2257a9e20',''), ('16911','{19821}<10m','IIS: Service has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','IIS: Service has been restarted (uptime < 10m)','f68768567f334d369d52797309f95c41',''), ('16912','{19822}<>0','IIS: The World Wide Web Publishing Service (W3SVC) is not running','','0','4','The World Wide Web Publishing Service (W3SVC) is not in the running state. IIS cannot start.',NULL,'0','0','0','','0','','0','','0','','ca139b8b27c44f7fb22938fd3419cff5',''), ('16913','{19823}<>0','IIS: Windows process Activation Service (WAS) is not running','','0','4','Windows Process Activation Service (WAS) is not in the running state. IIS cannot start.',NULL,'0','0','0','','0','','0','','0','','d7a16291f196424ca9c39af4271ab78f',''), ('16914','{19824}<>3 and {$IIS.APPPOOL.MONITORED:"{#APPPOOL}"}=1','IIS: Application pool {#APPPOOL} is not in Running state','','0','4','',NULL,'0','2','0','','0','','0','','0','','a7184495eb684293ada387292c812b0f',''), ('16915','{19825}<10m','IIS: {#APPPOOL} has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','2','0','','0','','1','','0','IIS: {#APPPOOL} has been restarted (uptime < 10m)','d2a9854722a44253a39c8eaab67f7677',''), ('16916','{23220}<>{23221} and {$IIS.APPPOOL.MONITORED:"{#APPPOOL}"}=1','IIS: Application pool {#APPPOOL} has been recycled','','0','1','',NULL,'0','2','0','','0','','0','','0','','27a93967a29849f3aef833db136e1b8e',''), ('16917','{19827}>{$IIS.QUEUE.MAX.WARN}','IIS: Request queue of {#APPPOOL} is too large','','0','2','',NULL,'0','2','0','','0','','0','','0','IIS: Request queue of {#APPPOOL} is too large (over {$IIS.QUEUE.MAX.WARN})','68499a4737d24ee6846aaea2a37b7b4f',''), ('16918','{23347}<>{23348} and length({23349})>0','Zabbix proxy: Version has changed','','0','1','Zabbix proxy version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Zabbix proxy: Version has changed (new version: {ITEM.VALUE})','224ec99fda0d443cba8a6c75da5a27cb',''), ('16919','{23314}<>{23315} and length({23316})>0','Zabbix server: Version has changed','','0','1','Zabbix server version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Zabbix server: Version has changed (new version: {ITEM.VALUE})','93a52f22c79b40539fcd3a26183daad9',''), ('16920','{19832}=0 or {19833} = 0','ClickHouse: Service is down','','0','3','',NULL,'0','0','0','','0','','1','','0','','803947a6de9340ed8596510dcbbeacac',''), ('16921','{19834}=0','ClickHouse: Port {$CLICKHOUSE.PORT} is unavailable','','0','3','',NULL,'0','0','0','','0','','1','','0','','1d4b9842b66b4da9ab3750944b2fa050',''), ('16925','{19841} * 100 > 10 * {19842}','MSSQL: Too frequently using pointers','','0','2','Rows with VARCHAR columns can experience expansion when VARCHAR values are updated with a longer string. In the case where the row cannot fit in the existing page, the row migrates, and access to the row will traverse a pointer. This only happens on heaps (tables without clustered indexes). In cases where clustered indexes cannot be used, drop non-clustered indexes, build a clustered index to reorg pages and rows, drop the clustered index, then recreate non-clustered indexes.',NULL,'0','0','0','','0','','0','','0','','a1397bd4e9334a24a34dba0687b263e6',''), ('16927','{19845}>{$MSSQL.AVERAGE_WAIT_TIME.MAX}','MSSQL: Total average wait time for locks is high','','0','2','An average wait time longer than 500 ms may indicate excessive blocking. This value should generally correlate to "Lock Waits/sec" and move up or down with it accordingly.',NULL,'0','0','0','','0','','0','','0','MSSQL: Total average wait time for locks is high (over {$MSSQL.AVERAGE_WAIT_TIME.MAX}ms for 5m)','fad2c1e9d0ba45bcbb47ccbb327f0b98',''), ('16928','{19846}<{$MSSQL.BUFFER_CACHE_RATIO.MIN.CRIT}','MSSQL: Percentage of the buffer cache efficiency is low','','0','4','Too low buffer cache hit ratio.',NULL,'0','0','0','','0','','0','','0','MSSQL: Percentage of the buffer cache efficiency is low (below {$MSSQL.BUFFER_CACHE_RATIO.MIN.CRIT}% for 5m)','f84fa297023a4aee903e4d32bbad9360',''), ('16929','{19847}<{$MSSQL.BUFFER_CACHE_RATIO.MIN.WARN}','MSSQL: Percentage of the buffer cache efficiency is low','','0','2','Low buffer cache hit ratio.',NULL,'0','0','0','','0','','0','','0','MSSQL: Percentage of the buffer cache efficiency is low (below {$MSSQL.BUFFER_CACHE_RATIO.MIN.WARN}% for 5m)','42e5bf05da06425282134d3cf806d023',''), ('16930','{19848}>{$MSSQL.FREE_LIST_STALLS.MAX}','MSSQL: Number of rps waiting for a free page is high','','0','2','Some requests have to wait for a free page.',NULL,'0','0','0','','0','','0','','0','MSSQL: Number of rps waiting for a free page is high (over {$MSSQL.FREE_LIST_STALLS.MAX} for 5m)','f055a294ef3b43dd8958e77c303a5fee',''), ('16931','{19849}>{$MSSQL.LAZY_WRITES.MAX}','MSSQL: Number of buffers written per second by the lazy writer is high','','0','2','The number of buffers written per second by the buffer manager''s lazy writer exceeds the threshold.',NULL,'0','0','0','','0','','0','','0','MSSQL: Number of buffers written per second by the lazy writer is high (over {$MSSQL.LAZY_WRITES.MAX} for 5m)','8aa547cda82f4dfcaef5ca0467590f64',''), ('16932','{19850}>{$MSSQL.LOCK_REQUESTS.MAX}','MSSQL: Total number of locks per second is high','','0','2','Number of new locks and lock conversions per second requested from the lock manager is high.',NULL,'0','0','0','','0','','0','','0','MSSQL: Total number of locks per second is high (over {$MSSQL.LOCK_REQUESTS.MAX} for 5m)','be4e0b1aec8d494b984be248424d69cf',''), ('16933','{19851}>{$MSSQL.LOCK_TIMEOUTS.MAX}','MSSQL: Total lock requests per second that timed out is high','','0','2','The total number of timed out lock requests per second, including requests for NOWAIT locks, is high.',NULL,'0','0','0','','0','','0','','0','MSSQL: Total lock requests per second that timed out is high (over {$MSSQL.LOCK_TIMEOUTS.MAX} for 5m)','9b62d84b8d9c4209b894151f59c42b27',''), ('16934','{19852}>0','MSSQL: Some blocking is occurring for 5m','','0','3','Values greater than zero indicate at least some blocking is occurring, while a value of zero can quickly eliminate blocking as a potential root-cause problem.',NULL,'0','0','0','','0','','0','','0','','879748a03c89495398b41fc1dbeba9ed',''), ('16935','{19853}>{$MSSQL.DEADLOCKS.MAX}','MSSQL: Number of deadlocks is high','','0','3','Too many deadlocks are occurring currently.',NULL,'0','0','0','','0','','0','','0','MSSQL: Number of deadlocks is high (over {$MSSQL.DEADLOCKS.MAX} for 5m)','a8f77c32a7194af9b2674f0931c25212',''), ('16936','{19854}<{$MSSQL.PAGE_LIFE_EXPECTANCY.MIN}','MSSQL: Page life expectancy is low','','0','4','The page stays in the buffer pool without references for less time than the threshold value.',NULL,'0','0','0','','0','','0','','0','MSSQL: Page life expectancy is low (less {$MSSQL.PAGE_LIFE_EXPECTANCY.MIN}min for 15m)','4eb155a86f8b4441a6707e8a3816a068',''), ('16937','{19855}>{$MSSQL.PAGE_READS.MAX}','MSSQL: Number of physical database page reads per second is high','','0','2','The physical database page reads are issued too frequently.',NULL,'0','0','0','','0','','0','','0','MSSQL: Number of physical database page reads per second is high (over {$MSSQL.PAGE_READS.MAX} for 5m)','c0b765b22b264d7c9086edc5cda35592',''), ('16938','{19856}>{$MSSQL.PAGE_WRITES.MAX}','MSSQL: Number of physical database page writes per second is high','','0','2','The physical database page writes are issued too frequently.',NULL,'0','0','0','','0','','0','','0','MSSQL: Number of physical database page writes per second is high (over {$MSSQL.PAGE_WRITES.MAX} for 5m)','548941f4a7cc4cadba64d8efd46655da',''), ('16939','{19857}<10m','MSSQL: Service has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MSSQL: Service has been restarted (uptime < 10m)','aa10f863608a494281f41e12f0d2b1a5',''), ('16940','{19858}=1','MSSQL: Failed to fetch info data','','0','1','Zabbix has not received any data for items for the last 30 minutes.',NULL,'0','0','0','','0','','0','','0','MSSQL: Failed to fetch info data (or no data for 30m)','0321c9f671394cb180fdce53b4033cf4',''), ('16941','{23452}<>{23453} and length({23454})>0','MSSQL: Version has changed','','0','1','MSSQL version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MSSQL: Version has changed (new version value received: {ITEM.VALUE})','4ece2c9172714c68b8345834cc37d927',''), ('16944','{19863}<{$MSSQL.WORKTABLES_FROM_CACHE_RATIO.MIN.CRIT}','MSSQL: Percentage of work tables available from the work table cache is low','','0','4','A value less than 90% may indicate insufficient memory, since execution plans are being dropped, or, on 32-bit systems, may indicate the need for an upgrade to a 64-bit system.',NULL,'0','0','0','','0','','0','','0','MSSQL: Percentage of work tables available from the work table cache is low (below {$MSSQL.WORKTABLES_FROM_CACHE_RATIO.MIN.CRIT}% for 5m)','98dee2bc42484988b208e100cc25ae05',''), ('16950','{19869}>{$MSSQL.LOG_FLUSH_WAIT_TIME.MAX:"{#DBNAME}"}','MSSQL: DB ''{#DBNAME}'': Total wait time to flush the log is high','','0','2','The wait time to flush the log is too long.',NULL,'0','2','0','','0','','0','','0','MSSQL: DB ''{#DBNAME}'': Total wait time to flush the log is high (over {$MSSQL.LOG_FLUSH_WAIT_TIME.MAX:"{#DBNAME}"}ms for 5m)','80351c56215148b8ab75d95dc81ff0d0',''), ('16951','{19870}>{$MSSQL.LOG_FLUSH_WAITS.MAX:"{#DBNAME}"}','MSSQL: DB ''{#DBNAME}'': Number of commits waiting for the log flush is high','','0','2','Too many commits are waiting for the log flush.',NULL,'0','2','0','','0','','0','','0','MSSQL: DB ''{#DBNAME}'': Number of commits waiting for the log flush is high (over {$MSSQL.LOG_FLUSH_WAITS.MAX:"{#DBNAME}"}/sec for 5m)','b351fc1128c24faf88d36717d0a0d1a5',''), ('16954','{19873}>{$MSSQL.PERCENT_LOG_USED.MAX:"{#DBNAME}"}','MSSQL: DB ''{#DBNAME}'': Percent of log usage is high','','0','2','There''s not enough space left in the log.',NULL,'0','2','0','','0','','0','','0','MSSQL: DB ''{#DBNAME}'': Percent of log usage is high (over {$MSSQL.PERCENT_LOG_USED.MAX:"{#DBNAME}"}% for 5m)','f02958e3ee174c6dbe900e3dd92cacdc',''), ('16955','{19874}>1','MSSQL: DB ''{#DBNAME}'': State is {ITEM.VALUE}','','0','4','The DB has a non-working state.',NULL,'0','2','0','','0','','0','','0','','6b8c8cf8e0d24b7f8d9aa7469a0facd4',''), ('16972','{19896}>{$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN}','MySQL: Number of on-disk temporary tables created per second is high','','0','2','The application using the database may be in need of query optimization.',NULL,'0','0','0','','0','','0','','0','MySQL: Number of on-disk temporary tables created per second is high (over {$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN} for 5m)','1b8761292e89476e91834f8e567a1dbe',''), ('16973','{19897}>{$MYSQL.CREATED_TMP_FILES.MAX.WARN}','MySQL: Number of temporary files created per second is high','','0','2','The application using the database may be in need of query optimization.',NULL,'0','0','0','','0','','0','','0','MySQL: Number of temporary files created per second is high (over {$MYSQL.CREATED_TMP_FILES.MAX.WARN} for 5m)','9845d8dc676f4702ae34b626f39d21ac',''), ('16974','{19898}>{$MYSQL.CREATED_TMP_TABLES.MAX.WARN}','MySQL: Number of internal temporary tables created per second is high','','0','2','The application using the database may be in need of query optimization.',NULL,'0','0','0','','0','','0','','0','MySQL: Number of internal temporary tables created per second is high (over {$MYSQL.CREATED_TMP_TABLES.MAX.WARN} for 5m)','c647a51864e04bc69a1f610b1dec56fe',''), ('16975','{19899}=1','MySQL: Failed to fetch info data','','0','1','Zabbix has not received any data for items for the last 30 minutes.',NULL,'0','0','0','','0','','0','','0','MySQL: Failed to fetch info data (or no data for 30m)','d3c80c770355464fb5a6be0357d0edca',''), ('16976','{19900}>{$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN}','MySQL: Number of on-disk temporary tables created per second is high','','0','2','The application using the database may be in need of query optimization.',NULL,'0','0','0','','0','','0','','0','MySQL: Number of on-disk temporary tables created per second is high (over {$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN} for 5m)','8c4e0c429c8241e28b930bfce7e29be8',''), ('16977','{19901}>{$MYSQL.CREATED_TMP_FILES.MAX.WARN}','MySQL: Number of temporary files created per second is high','','0','2','The application using the database may be in need of query optimization.',NULL,'0','0','0','','0','','0','','0','MySQL: Number of temporary files created per second is high (over {$MYSQL.CREATED_TMP_FILES.MAX.WARN} for 5m)','322b61acd92e46f787e96486d2553886',''), ('16978','{19902}>{$MYSQL.CREATED_TMP_TABLES.MAX.WARN}','MySQL: Number of internal temporary tables created per second is high','','0','2','The application using the database may be in need of query optimization.',NULL,'0','0','0','','0','','0','','0','MySQL: Number of internal temporary tables created per second is high (over {$MYSQL.CREATED_TMP_TABLES.MAX.WARN} for 5m)','86ed19d4ddc84f0da4a77c1dcbdf8c60',''), ('16979','{19903}=1','MySQL: Failed to fetch info data','','0','1','Zabbix has not received any data for items for the last 30 minutes.',NULL,'0','0','0','','0','','0','','0','MySQL: Failed to fetch info data (or no data for 30m)','6f4edf8bfca0477b8b28a8ff811476b3',''), ('16980','{19904}>{$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN}','MySQL: Number of on-disk temporary tables created per second is high','','0','2','The application using the database may be in need of query optimization.',NULL,'0','0','0','','0','','0','','0','MySQL: Number of on-disk temporary tables created per second is high (over {$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN} for 5m)','8aec6a51fa3e4320b3c7c40858ac7f96',''), ('16981','{19905}>{$MYSQL.CREATED_TMP_FILES.MAX.WARN}','MySQL: Number of temporary files created per second is high','','0','2','The application using the database may be in need of query optimization.',NULL,'0','0','0','','0','','0','','0','MySQL: Number of temporary files created per second is high (over {$MYSQL.CREATED_TMP_FILES.MAX.WARN} for 5m)','c1dbcf829bdf43fda3b4c2add576c8f0',''), ('16982','{19906}>{$MYSQL.CREATED_TMP_TABLES.MAX.WARN}','MySQL: Number of internal temporary tables created per second is high','','0','2','The application using the database may be in need of query optimization.',NULL,'0','0','0','','0','','0','','0','MySQL: Number of internal temporary tables created per second is high (over {$MYSQL.CREATED_TMP_TABLES.MAX.WARN} for 5m)','d65c3ec6cacd41c58f5e2b209ca5a810',''), ('16983','{19907}=1','MySQL: Failed to fetch info data','','0','1','Zabbix has not received any data for items for the last 30 minutes.',NULL,'0','0','0','','0','','0','','0','MySQL: Failed to fetch info data (or no data for 30m)','ba9eb4fc244b41a6a30237e7a382fa54',''), ('16984','{19908}=0 and {19909}>0','Oracle: Port {$ORACLE.PORT} is unavailable','','0','5','The TCP port of the Oracle Server service is currently unavailable.',NULL,'0','0','0','','0','','0','','0','','7b0bde98c6c54e67b0aa8b3339fe464d',''), ('16985','{19910} * 100 / {19911} > {$ORACLE.PROCESSES.MAX.WARN}','Oracle: Too many active processes','','0','2','Active processes are using more than `{$ORACLE.PROCESSES.MAX.WARN}`% of the available number of processes.',NULL,'0','0','0','','0','','0','','0','Oracle: Too many active processes (over {$ORACLE.PROCESSES.MAX.WARN}% for 5 min)','38471058988c46f4b81af9f77637914a',''), ('16986','{19912} * 100 / {19913} > {$ORACLE.SESSIONS.MAX.WARN}','Oracle: Too many active sessions','','0','2','Active sessions are using more than `{$ORACLE.SESSIONS.MAX.WARN}`% of the available sessions.',NULL,'0','0','0','','0','','0','','0','Oracle: Too many active sessions (over {$ORACLE.SESSIONS.MAX.WARN}% for 5 min)','4a055da31f09489ea0f03e4582ee4333',''), ('16987','{19914} * 100 / {19915} > {$ORACLE.DB.FILE.MAX.WARN}','Oracle: Too many database files','','0','2','The number of datafiles is higher than `{$ORACLE.DB.FILE.MAX.WARN}`% of the available datafile limit.',NULL,'0','0','0','','0','','0','','0','Oracle: Too many database files (over {$ORACLE.DB.FILE.MAX.WARN}% for 5 min)','5752d92063f84aaa818bc85b135cd4fd',''), ('16988','{19916} * 100 / {19917} > {$ORACLE.PGA.USE.MAX.WARN}','Oracle: Total PGA inuse is too high','','0','2','The total PGA currently consumed by work areas is more than `{$ORACLE.PGA.USE.MAX.WARN}`% of `PGA_AGGREGATE_TARGET`.',NULL,'0','0','0','','0','','0','','0','Oracle: Total PGA inuse is too high (over {$ORACLE.PGA.USE.MAX.WARN}% for 5 min)','476001f0f52a45f59942d73c643371c1',''), ('16989','{23481}<>{23482} and length({23483})>0','Oracle: Instance hostname has changed','','0','1','An Oracle Database instance hostname has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Oracle: Instance hostname has changed (new hostname received: {ITEM.VALUE})','618a3e3c82dc4ccba82477afdd100a98',''), ('16990','{23484}<>{23485} and length({23486})>0','Oracle: Instance name has changed','','0','1','An Oracle Database instance name has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Oracle: Instance name has changed (new name received: {ITEM.VALUE})','2fe53d1d931e4eb38fef10a3171c1665',''), ('16991','{19922} < {$ORACLE.REDO.MIN.WARN}','Oracle: Number of REDO logs available for switching is too low','','0','2','The number of inactive/unused redos available for log switching is low (risk of database downtime).',NULL,'0','0','0','','0','','0','','0','Oracle: Number of REDO logs available for switching is too low (less {$ORACLE.REDO.MIN.WARN} for 5 min)','1348b1e854e64d34b6b00be118f045c3',''), ('16993','{19924} > {$ORACLE.SESSIONS.LOCK.MAX.WARN}','Oracle: Too many locked sessions','','0','2','The number of locked sessions exceeds `{$ORACLE.SESSIONS.LOCK.MAX.WARN}`% of the running sessions.',NULL,'0','0','0','','0','','0','','0','Oracle: Too many locked sessions (over {$ORACLE.SESSIONS.LOCK.MAX.WARN}% for 5 min)','9a75f3a039094ca89c2ba7e3fa93b1a8',''), ('16994','{19925} > {$ORACLE.SESSION.LONG.LOCK.MAX.WARN}','Oracle: Too many sessions locked','','0','2','The number of locked sessions exceeding `{$ORACLE.SESSION.LOCK.MAX.TIME}` seconds is too high. Long-term locks can negatively affect the database performance. Therefore, if they are detected, you should first find the most difficult queries from the database point of view and then analyze possible resource leaks.',NULL,'0','0','0','','0','','0','','0','Oracle: Too many sessions locked over {$ORACLE.SESSION.LOCK.MAX.TIME}s (over {$ORACLE.SESSION.LONG.LOCK.MAX.WARN} for 5 min)','a8f5ec966f5e4c72baad1380eda4d0a2',''), ('16995','{19926}<{$ORACLE.SHARED.FREE.MIN.WARN}','Oracle: Shared pool free is too low','','0','2','The free memory percent of the shared pool has been less than `{$ORACLE.SHARED.FREE.MIN.WARN}`% for the last 5 minutes.',NULL,'0','0','0','','0','','0','','0','Oracle: Shared pool free is too low (less {$ORACLE.SHARED.FREE.MIN.WARN}% for 5m)','8facfa98bcd3447ea53d0a3d09ada933',''), ('16996','{19927}<10m','Oracle: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Oracle: {HOST.NAME} has been restarted (uptime < 10m)','431201a1ce0d47948751c7e4e6bbeb92',''), ('16997','{19928}=1','Oracle: Failed to fetch info data','','0','2','Zabbix has not received any data for the items for the last 5 minutes. The database might be unavailable for connecting.',NULL,'0','0','0','','0','','0','','0','Oracle: Failed to fetch info data (or no data for 5m)','03a4fb1d6e684c9b82c1317699c71468',''), ('16998','{19929} < {$ORACLE.EXPIRE.PASSWORD.MIN.WARN}','Oracle: Zabbix account will expire soon','','0','2','The password for the Zabbix user in the database expires soon.',NULL,'0','0','0','','0','','0','','0','Oracle: Zabbix account will expire soon (under {$ORACLE.EXPIRE.PASSWORD.MIN.WARN} days)','a909d8cccacf4470a3e2da88b4e5c3d5',''), ('16999','{23487}<>{23488} and length({23489})>0','Oracle: Version has changed','','0','1','The Oracle Database version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Oracle: Version has changed (new version value received: {ITEM.VALUE})','a5dd4fe627c44afebdfe7beeefc4ec3d',''), ('17000','{19932}=0','Oracle: LISTENER process is not running','','0','5','The Oracle listener process is not running.',NULL,'0','0','0','','0','','0','','0','','eb5e531eb3f142569775349a126d1ab0',''), ('17014','{19947} > {$PG.CONN_TOTAL_PCT.MAX.WARN}','PostgreSQL: Total number of connections is too high','','0','3','Total number of current connections exceeds the limit of {$PG.CONN_TOTAL_PCT.MAX.WARN}% out of the maximum number of concurrent connections to the database server (the "max_connections" setting).',NULL,'0','0','0','','0','','0','','0','PostgreSQL: Total number of connections is too high (over {$PG.CONN_TOTAL_PCT.MAX.WARN} in 5m)','1d0903401af64d93ac16761808d672ca',''), ('17016','{19949}=0','PostgreSQL: Service is down','','0','4','Last test of a connection was unsuccessful.',NULL,'0','0','0','','0','','0','','0','','48a24a78519d47349200f0b41ceec56a',''), ('17017','{33077} < 10m','PostgreSQL: Service has been restarted','','0','3','PostgreSQL uptime is less than 10 minutes.',NULL,'0','0','0','','0','','0','','0','PostgreSQL: Service has been restarted (uptime < 10m)','5fbabc5f60b74a369a13a260d25cce3c',''), ('17018','{19951} > {$PG.CONFLICTS.MAX.WARN:"{#DBNAME}"}','PostgreSQL: DB [{#DBNAME}]: Too many recovery conflicts','','0','3','The primary and standby servers are in many ways loosely connected. Actions on the primary will have an effect on the standby. As a result, there is potential for negative interactions or conflicts between them. https://www.postgresql.org/docs/current/hot-standby.html#HOT-STANDBY-CONFLICT',NULL,'0','2','0','','0','','0','','0','PostgreSQL: DB [{#DBNAME}]: Too many recovery conflicts (over {$PG.CONFLICTS.MAX.WARN:"{#DBNAME}"} in 5m)','05ac4216e1a941df8880224ffd38b806',''), ('17019','{19952} > {$PG.DEADLOCKS.MAX.WARN:"{#DBNAME}"}','PostgreSQL: DB [{#DBNAME}]: Deadlock occurred','','0','4','Number of deadlocks detected per second exceeds {$PG.DEADLOCKS.MAX.WARN:"{#DBNAME}"} for 5m.',NULL,'0','2','0','','0','','0','','0','PostgreSQL: DB [{#DBNAME}]: Deadlock occurred (over {$PG.DEADLOCKS.MAX.WARN:"{#DBNAME}"} in 5m)','dd948e3ec19c419e8c9a62ace8d1695f',''), ('17066','{31026}>({31027}*{$JMX.HEAP.MEM.USAGE.MAX}/100) and {31027}>0','Generic Java JMX: Memory: Heap memory usage is high','','0','2','',NULL,'0','0','0','','0','','0','','0','Generic Java JMX: Memory: Heap memory usage more than {$JMX.HEAP.USAGE.MAX}% for {$JMX.HEAP.MEM.USAGE.TIME}','69fda060b5004d12b6af0ba5f73cec6d',''), ('17067','{31028}>({31029}*{$JMX.NONHEAP.MEM.USAGE.MAX}/100) and {31029}>0','Generic Java JMX: Memory: Non-Heap memory usage is high','','0','2','',NULL,'0','0','0','','0','','0','','0','Generic Java JMX: Memory: Non-Heap memory usage more than {$JMX.NONHEAP.MEM.USAGE.MAX}% for {$JMX.NONHEAP.MEM.USAGE.TIME}','2b4dfda1100d4feeaa66218e57786f38',''), ('17075','{20078}>({20079}*{$JMX.FILE.DESCRIPTORS.MAX}/100)','Generic Java JMX: OperatingSystem: Opened file descriptor count is high','','0','2','',NULL,'0','0','0','','0','','0','','0','Generic Java JMX: OperatingSystem: Opened file descriptor count more than {$JMX.FILE.DESCRIPTORS.MAX}% of maximum','726a3b8a6209451b9a6cca63a3195a0c',''), ('17076','{20080}=1','Generic Java JMX: Compilation: {HOST.NAME} uses suboptimal JIT compiler','','0','1','',NULL,'0','0','0','','0','','1','','0','','691f051584d74995b757b4be5e3824fe',''), ('17077','{20081}>{$JMX.CPU.LOAD.MAX}','Generic Java JMX: OperatingSystem: Process CPU Load is high','','0','3','',NULL,'0','0','0','','0','','0','','0','Generic Java JMX: OperatingSystem: Process CPU Load more than {$JMX.CPU.LOAD.MAX}% for {$JMX.CPU.LOAD.TIME}','cc6cc7942e434b8589ff28a0b3112fc7',''), ('17078','{20082}=1','Generic Java JMX: Runtime: JVM is not reachable','','0','3','',NULL,'0','0','0','','0','','1','','0','','c82c23dc5be34bb68ec8b152b3be367b',''), ('17079','{20083}<>1','Generic Java JMX: Runtime: {HOST.NAME} runs suboptimal VM type','','0','1','',NULL,'0','0','0','','0','','1','','0','','560edfbeb7654f1eb7315389f08ef1b3',''), ('17080','{20084} > {$MSSQL.PERCENT_READAHEAD.MAX} / 100 * {20085}','MSSQL: Too many physical reads occurring','','0','2','If this value makes up even a sizeable minority of the total "Page Reads/sec" (say, greater than 20% of the total page reads), you may have too many physical reads occurring.',NULL,'0','0','0','','0','','0','','0','','2a58729eb605461b853ec4e855878226',''), ('17081','{20086} > {$MSSQL.PERCENT_COMPILATIONS.MAX}','MSSQL: Percent of ad hoc queries running is high','','0','2','The lower this value is, the better. High values often indicate excessive ad hoc querying and should be as low as possible. If excessive ad hoc querying is happening, try rewriting the queries as procedures or invoke the queries using `sp_executeSQL`. When rewriting isn''t possible, consider using a plan guide or setting the database to parameterization forced mode.',NULL,'0','0','0','','0','','0','','0','MSSQL: Percent of ad hoc queries running is over {$MSSQL.PERCENT_COMPILATIONS.MAX}% for 15m','c5c1840220cd44fcaa7b47e0d52309bb',''), ('17082','{20087} > {$MSSQL.PERCENT_RECOMPILATIONS.MAX}','MSSQL: Percent of times statement recompiles is high','','0','2','This number should be at or near zero, since recompiles can cause deadlocks and exclusive compile locks. This counter''s value should follow in proportion to "Batch Requests/sec" and "SQL Compilations/sec".',NULL,'0','0','0','','0','','0','','0','MSSQL: Percent of times statement recompiles is over {$MSSQL.PERCENT_RECOMPILATIONS.MAX}% for 15m','d5bad8ead8704e00bf332032e22ebfdd',''), ('17083','{20088} > 0.001','MSSQL: Number of index and table scans exceeds index searches in the last 15m','','0','2','Index searches are preferable to index and table scans. For OLTP applications, optimize for more index searches and less scans (preferably, 1 full scan for every 1000 index searches). Index and table scans are expensive I/O operations.',NULL,'0','0','0','','0','','0','','0','','3c22a74a94d641389b57a6013ddd10cb',''), ('17084','{20089}=0','MSSQL: Service is unavailable','','0','5','The TCP port of the MSSQL Server service is currently unavailable.',NULL,'0','0','0','','0','','0','','0','','152af5cc3ce04d4aa8ab255c37aed6c6',''), ('17088','{20096}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','e4aedbd5e0c64cf48831bf08192e19bf',''), ('17089','{28360} > {$PHP_FPM.QUEUE.WARN.MAX}','PHP-FPM: Queue utilization is high','','0','2','The queue for this pool has reached `{$PHP_FPM.QUEUE.WARN.MAX}%` of its maximum capacity. Items in the queue represent the current number of connections that have been initiated on this pool but not yet accepted.',NULL,'0','0','0','','0','','0','','0','PHP-FPM: Queue utilization is high (over {$PHP_FPM.QUEUE.WARN.MAX}% for 15m)','a11264f0e1174b7fb81b457dad1a745f',''), ('17091','{23252}<>{23253}','PHP-FPM: Manager changed','','0','1','The PHP-FPM manager has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','PHP-FPM: Manager changed (new value received: {ITEM.VALUE})','231e0fbfb6e94f34b790576766244602',''), ('17092','{20101}>0','PHP-FPM: Detected slow requests','','0','2','The PHP-FPM has detected a slow request. The slow request means that it took more time to execute than expected (defined in the configuration of your pool).',NULL,'0','0','0','','0','','0','','0','','f30147d8e92f48aa8fedc2d28b8d7c70',''), ('17094','{20103}<10m','PHP-FPM: Pool has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','PHP-FPM: Pool has been restarted (uptime < 10m)','c6966a6c3ff0452ab4fd112c9299e624',''), ('17095','{23254}<>{23255} and length({23256})>0','PHP-FPM: Version has changed','','0','1','The PHP-FPM version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','PHP-FPM: Version has changed (new version: {ITEM.VALUE})','fb110a37f0fc4a62b51df72e33bc3448',''), ('17097','{28361} > {$PHP_FPM.QUEUE.WARN.MAX}','PHP-FPM: Queue utilization is high','','0','2','The queue for this pool has reached `{$PHP_FPM.QUEUE.WARN.MAX}%` of its maximum capacity. Items in the queue represent the current number of connections that have been initiated on this pool but not yet accepted.',NULL,'0','0','0','','0','','0','','0','PHP-FPM: Queue utilization is high (over {$PHP_FPM.QUEUE.WARN.MAX}% for 15m)','1ad5018fb19d4a9cb9e627f964bfd627',''), ('17098','{20108}=0 or {20109}=1','PHP-FPM: Service is down','','0','4','',NULL,'0','0','0','','0','','1','','0','','5dcc607026d24e63b2f099540a5d8e9b',''), ('17099','{23257}<>{23258}','PHP-FPM: Manager changed','','0','1','The PHP-FPM manager has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','PHP-FPM: Manager changed (new value received: {ITEM.VALUE})','8cfa50bcea744075954d0a9c8a132330',''), ('17100','{20111}>0','PHP-FPM: Detected slow requests','','0','2','The PHP-FPM has detected a slow request. The slow request means that it took more time to execute than expected (defined in the configuration of your pool).',NULL,'0','0','0','','0','','0','','0','','63bd00ee25af4b42a37dad1d742c66c0',''), ('17101','{20112}=1','PHP-FPM: Failed to fetch info data','','0','1','Zabbix has not received any data for items for the last 30 minutes.',NULL,'0','0','0','','0','','1','','0','PHP-FPM: Failed to fetch info data (or no data for 30m)','b44815446b3b464f883f4d0e799b020e',''), ('17102','{20113}<10m','PHP-FPM: Pool has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','PHP-FPM: Pool has been restarted (uptime < 10m)','9ed4047bdcd74e649814c5d004ba78c7',''), ('17103','{23259}<>{23260} and length({23261})>0','PHP-FPM: Version has changed','','0','1','The PHP-FPM version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','PHP-FPM: Version has changed (new version: {ITEM.VALUE})','d6c891de92c34bdba80a2ba88f975271',''), ('17113','{20128}<20M','AIX: Lack of available memory on server','','0','3','',NULL,'0','0','0','','0','','0','','0','','80b6406fb8474fa9801e9dffb2ccd368',''), ('17114','{33629}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}','AIX: FS [{#FSNAME}]: Space is low','','0','2','The volume''s space usage exceeds the `{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%` limit. The trigger expression is based on the current used and maximum available spaces. Event name represents the total volume space, which can differ from the maximum available space, depending on the filesystem type.',NULL,'0','2','0','','0','','1','Space used: {{ITEM.LASTVALUE1}.fmtnum(1)}%','0','AIX: FS [{#FSNAME}]: Space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%, total {{?last(//vfs.fs.dependent.size[{#FSNAME},total])/1024/1024/1024}.fmtnum(1)}GB)','74a1fc62bfe24b7eabe4e244c70dc384',''), ('17115','{33628}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}','AIX: FS [{#FSNAME}]: Running out of free inodes','','0','2','Disk writing may fail if index nodes are exhausted, leading to error messages like "No space left on device" or "Disk is full", despite available free space.',NULL,'0','2','0','','0','','0','Free inodes: {ITEM.LASTVALUE1}','0','AIX: FS [{#FSNAME}]: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%)','6ce467d05e8745409a177799bed34bb3',''), ('17116','{20131}<1024','FreeBSD: Configured max number of opened files is too low on {HOST.NAME}','','0','1','',NULL,'0','0','0','','0','','0','','0','','00f035b7890d4227a84a942ba5730df3',''), ('17117','{20132}<256','FreeBSD: Configured max number of processes is too low on {HOST.NAME}','','0','1','',NULL,'0','0','0','','0','','0','','0','','0d2417112c1e4ef38a4b763872cbb18b',''), ('17118','{20133}<20M','FreeBSD: Lack of available memory on server {HOST.NAME}','','0','3','',NULL,'0','0','0','','0','','0','','0','','f8fcce1904ab46088fa80433b85f2e83',''), ('17119','{20134}<50','FreeBSD: Lack of free swap space on {HOST.NAME}','','0','2','The system might need more physical memory.',NULL,'0','0','0','','0','','0','','0','','a125b6786d55426eb19afe284cee1f76',''), ('17120','{33633}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}','FreeBSD: FS [{#FSNAME}]: Space is low','','0','2','The volume''s space usage exceeds the `{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%` limit. The trigger expression is based on the current used and maximum available spaces. Event name represents the total volume space, which can differ from the maximum available space, depending on the filesystem type.',NULL,'0','2','0','','0','','1','Space used: {{ITEM.LASTVALUE1}.fmtnum(1)}%','0','FreeBSD: FS [{#FSNAME}]: Space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%, total {{?last(//vfs.fs.dependent.size[{#FSNAME},total])/1024/1024/1024}.fmtnum(1)}GB)','01ea8e7f30564586af3b48adb3c930c1',''), ('17121','{33632}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}','FreeBSD: FS [{#FSNAME}]: Running out of free inodes','','0','2','Disk writing may fail if index nodes are exhausted, leading to error messages like "No space left on device" or "Disk is full", despite available free space.',NULL,'0','2','0','','0','','0','Free inodes: {ITEM.LASTVALUE1}','0','FreeBSD: FS [{#FSNAME}]: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%)','2b87c38f49b146f1b801319d03a19dc3',''), ('17122','{20137}<20M','HP-UX: Lack of available memory on server','','0','3','',NULL,'0','0','0','','0','','0','','0','','005730efb6a94c4a83c4265f42aa8dff',''), ('17123','{33637}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}','HP-UX: FS [{#FSNAME}]: Space is low','','0','2','The volume''s space usage exceeds the `{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%` limit. The trigger expression is based on the current used and maximum available spaces. Event name represents the total volume space, which can differ from the maximum available space, depending on the filesystem type.',NULL,'0','2','0','','0','','1','Space used: {{ITEM.LASTVALUE1}.fmtnum(1)}%','0','HP-UX: FS [{#FSNAME}]: Space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%, total {{?last(//vfs.fs.dependent.size[{#FSNAME},total])/1024/1024/1024}.fmtnum(1)}GB)','07153df58e1a4a2bad7bf27a1ddf24a0',''), ('17124','{33636}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}','HP-UX: FS [{#FSNAME}]: Running out of free inodes','','0','2','Disk writing may fail if index nodes are exhausted, leading to error messages like "No space left on device" or "Disk is full", despite available free space.',NULL,'0','2','0','','0','','0','Free inodes: {ITEM.LASTVALUE1}','0','HP-UX: FS [{#FSNAME}]: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%)','9d7587a6cae149d69e90cdefa024d254',''), ('17125','{20140}<1024','macOS: Configured max number of opened files is too low','','0','1','',NULL,'0','0','0','','0','','0','','0','','933b14ead0974a9c96d36c833da90ebb',''), ('17126','{20141}<256','macOS: Configured max number of processes is too low','','0','1','',NULL,'0','0','0','','0','','0','','0','','0e89b2e0cad948c0b81bc223d2ed673c',''), ('17127','{20142}<20M','macOS: Lack of available memory on server','','0','3','',NULL,'0','0','0','','0','','0','','0','','c38dfc1b95d1463585d378f60d6a689a',''), ('17128','{33653}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}','macOS: FS [{#FSNAME}]: Space is low','','0','2','The volume''s space usage exceeds the `{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%` limit. The trigger expression is based on the current used and maximum available spaces. Event name represents the total volume space, which can differ from the maximum available space, depending on the filesystem type.',NULL,'0','2','0','','0','','1','Space used: {{ITEM.LASTVALUE1}.fmtnum(1)}%','0','macOS: FS [{#FSNAME}]: Space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%, total {{?last(//vfs.fs.dependent.size[{#FSNAME},total])/1024/1024/1024}.fmtnum(1)}GB)','673dbc5aec474abda3a3b392d31b6c11',''), ('17129','{33652}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}','macOS: FS [{#FSNAME}]: Running out of free inodes','','0','2','Disk writing may fail if index nodes are exhausted, leading to error messages like "No space left on device" or "Disk is full", despite available free space.',NULL,'0','2','0','','0','','0','Free inodes: {ITEM.LASTVALUE1}','0','macOS: FS [{#FSNAME}]: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%)','91cccd7935854a47bf4ca184b1d4d09a',''), ('17130','{20145}<1024','OpenBSD: Configured max number of opened files is too low on {HOST.NAME}','','0','1','',NULL,'0','0','0','','0','','0','','0','','aab96e16dd194d72b9b049ffa8b41b02',''), ('17131','{20146}<256','OpenBSD: Configured max number of processes is too low on {HOST.NAME}','','0','1','',NULL,'0','0','0','','0','','0','','0','','149b9b77d17543fba253666ccbd6a607',''), ('17132','{20147}<20M','OpenBSD: Lack of available memory on server {HOST.NAME}','','0','3','',NULL,'0','0','0','','0','','0','','0','','bdf3c729b8bc4a9481c9041e4c1ea624',''), ('17133','{20148}<50','OpenBSD: Lack of free swap space on {HOST.NAME}','','0','2','It probably means that the systems requires more physical memory.',NULL,'0','0','0','','0','','0','','0','','0efa45d2c8884bc6b4090afc6408198b',''), ('17134','{33657}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}','OpenBSD: FS [{#FSNAME}]: Space is low','','0','2','The volume''s space usage exceeds the `{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%` limit. The trigger expression is based on the current used and maximum available spaces. Event name represents the total volume space, which can differ from the maximum available space, depending on the filesystem type.',NULL,'0','2','0','','0','','1','Space used: {{ITEM.LASTVALUE1}.fmtnum(1)}%','0','OpenBSD: FS [{#FSNAME}]: Space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%, total {{?last(//vfs.fs.dependent.size[{#FSNAME},total])/1024/1024/1024}.fmtnum(1)}GB)','9741c9425c984804ac8fb9a52ef22221',''), ('17135','{33656}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}','OpenBSD: FS [{#FSNAME}]: Running out of free inodes','','0','2','Disk writing may fail if index nodes are exhausted, leading to error messages like "No space left on device" or "Disk is full", despite available free space.',NULL,'0','2','0','','0','','0','Free inodes: {ITEM.LASTVALUE1}','0','OpenBSD: FS [{#FSNAME}]: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%)','7802203fd5ba471db2be4f35eda44a0b',''), ('17136','{20151}<256','Solaris: Configured max number of processes is too low','','0','1','',NULL,'0','0','0','','0','','0','','0','','2a567bc9d5584dfea986b5b70c89fc65',''), ('17137','{20152}<20M','Solaris: Lack of available memory on server','','0','3','',NULL,'0','0','0','','0','','0','','0','','a0769befcb4e4c649557926824d7dbf3',''), ('17138','{20153}<50','Solaris: Lack of free swap space','','0','2','It probably means that the systems requires more physical memory.',NULL,'0','0','0','','0','','0','','0','','7be6856162ca445388b13e524f01a3c2',''), ('17139','{33661}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}','Solaris: FS [{#FSNAME}]: Space is low','','0','2','The volume''s space usage exceeds the `{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%` limit. The trigger expression is based on the current used and maximum available spaces. Event name represents the total volume space, which can differ from the maximum available space, depending on the filesystem type.',NULL,'0','2','0','','0','','1','Space used: {{ITEM.LASTVALUE1}.fmtnum(1)}%','0','Solaris: FS [{#FSNAME}]: Space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%, total {{?last(//vfs.fs.dependent.size[{#FSNAME},total])/1024/1024/1024}.fmtnum(1)}GB)','e93165ebd8d94064836405c8c377bf62',''), ('17140','{33660}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}','Solaris: FS [{#FSNAME}]: Running out of free inodes','','0','2','Disk writing may fail if index nodes are exhausted, leading to error messages like "No space left on device" or "Disk is full", despite available free space.',NULL,'0','2','0','','0','','0','Free inodes: {ITEM.LASTVALUE1}','0','Solaris: FS [{#FSNAME}]: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%)','a56d85c866814b5e9273815beafba98c',''), ('17141','{20156}<1.597 or {20156}>2.019','Intel SR1530: BB +1.8V SM Critical [{ITEM.VALUE}]','','0','5','',NULL,'0','0','0','','0','','0','','0','','55cc8ccf46954499a9c274ab301dd857',''), ('17142','{20157}<1.646 or {20157}>1.960','Intel SR1530: BB +1.8V SM Non-Critical [{ITEM.VALUE}]','','0','4','',NULL,'0','0','0','','0','','0','','0','','55e3dc7d5bd34da0862d724ab5d18bb7',''), ('17143','{20158}<2.876 or {20158}>3.729','Intel SR1530: BB +3.3V Critical [{ITEM.VALUE}]','','0','5','',NULL,'0','0','0','','0','','0','','0','','35a0dedd6fb244759a4feca2c1aff961',''), ('17144','{20159}<2.970 or {20159}>3.618','Intel SR1530: BB +3.3V Non-Critical [{ITEM.VALUE}]','','0','4','',NULL,'0','0','0','','0','','0','','0','','bd2472feb90f40429fbbcd0bddbdd455',''), ('17145','{20160}<2.876 or {20160}>3.729','Intel SR1530: BB +3.3V STBY Critical [{ITEM.VALUE}]','','0','5','',NULL,'0','0','0','','0','','0','','0','','c0f82f508d38405d978c746f5c95a178',''), ('17146','{20161}<2.970 or {20161}>3.618','Intel SR1530: BB +3.3V STBY Non-Critical [{ITEM.VALUE}]','','0','4','',NULL,'0','0','0','','0','','0','','0','','8f957e674af84229aa2e1ee78bf941a0',''), ('17147','{20162}<4.362 or {20162}>5.663','Intel SR1530: BB +5.0V Critical [{ITEM.VALUE}]','','0','5','',NULL,'0','0','0','','0','','0','','0','','dec3da3d68b04f3c9ea16fabe17b8faa',''), ('17148','{20163}<4.483 or {20163}>5.495','Intel SR1530: BB +5.0V Non-Critical [{ITEM.VALUE}]','','0','4','',NULL,'0','0','0','','0','','0','','0','','e2683b71d36b4ab4ad8a98c964b19118',''), ('17149','{20164}<5 or {20164}>66','Intel SR1530: BB Ambient Temp Critical [{ITEM.VALUE}]','','0','5','',NULL,'0','0','0','','0','','0','','0','','0adcefe86a99468d9d7f0db2021ec8c9',''), ('17150','{20165}<10 or {20165}>61','Intel SR1530: BB Ambient Temp Non-Critical [{ITEM.VALUE}]','','0','4','',NULL,'0','0','0','','0','','0','','0','','6630637c02224bacbe3456a388233775',''), ('17151','{20166}=0','Intel SR1530: Power','','0','2','',NULL,'0','0','0','','0','','0','','0','','85722b8734df45d589afd69262a498a4',''), ('17152','{20167}<5 or {20167}>90','Intel SR1630: Baseboard Temp Critical [{ITEM.VALUE}]','','0','5','',NULL,'0','0','0','','0','','0','','0','','2e1ee68913a34cb78f31d5001f10793d',''), ('17153','{20168}<10 or {20168}>83','Intel SR1630: Baseboard Temp Non-Critical [{ITEM.VALUE}]','','0','4','',NULL,'0','0','0','','0','','0','','0','','c51b207bcbd041039a1f5a1a7973e262',''), ('17154','{20169}<0.953 or {20169}>1.149','Intel SR1630: BB +1.05V PCH Critical [{ITEM.VALUE}]','','0','5','',NULL,'0','0','0','','0','','0','','0','','ec813e0d4ccb48d2af680281034a901f',''), ('17155','{20170}<0.985 or {20170}>1.117','Intel SR1630: BB +1.05V PCH Non-Critical [{ITEM.VALUE}]','','0','4','',NULL,'0','0','0','','0','','0','','0','','2b0db1b054f842a4891162fbe33e50e8',''), ('17156','{20171}<0.683 or {20171}>1.543','Intel SR1630: BB +1.1V P1 Vccp Critical [{ITEM.VALUE}]','','0','5','',NULL,'0','0','0','','0','','0','','0','','2e18cf768c2b468eae5549a326325c61',''), ('17157','{20172}<0.708 or {20172}>1.501','Intel SR1630: BB +1.1V P1 Vccp Non-Critical [{ITEM.VALUE}]','','0','4','',NULL,'0','0','0','','0','','0','','0','','465d51e2a260431dbc7e8e7d39994274',''), ('17158','{20173}<1.362 or {20173}>1.635','Intel SR1630: BB +1.5V P1 DDR3 Critical [{ITEM.VALUE}]','','0','5','',NULL,'0','0','0','','0','','0','','0','','cb2aa635a08c495f9a540c60ce5d1333',''), ('17159','{20174}<1.401 or {20174}>1.589','Intel SR1630: BB +1.5V P1 DDR3 Non-Critical [{ITEM.VALUE}]','','0','4','',NULL,'0','0','0','','0','','0','','0','','db42f9fd43f04849a07048f5b5a38a4c',''), ('17160','{20175}<2.982 or {20175}>3.625','Intel SR1630: BB +3.3V Critical [{ITEM.VALUE}]','','0','5','',NULL,'0','0','0','','0','','0','','0','','9eea7fcd8b574f35aee3e3acb4267f4a',''), ('17161','{20176}<3.067 or {20176}>3.525','Intel SR1630: BB +3.3V Non-Critical [{ITEM.VALUE}]','','0','4','',NULL,'0','0','0','','0','','0','','0','','93fd529afb20436f94f9184bb2213335',''), ('17162','{20177}<2.982 or {20177}>3.625','Intel SR1630: BB +3.3V STBY Critical [{ITEM.VALUE}]','','0','5','',NULL,'0','0','0','','0','','0','','0','','3f5aa41308714b73ab555e36ecbe889e',''), ('17163','{20178}<3.067 or {20178}>3.525','Intel SR1630: BB +3.3V STBY Non-Critical [{ITEM.VALUE}]','','0','4','',NULL,'0','0','0','','0','','0','','0','','e631b683ce8f4d0ca5f22adb8ae791c7',''), ('17164','{20179}<4.471 or {20179}>5.538','Intel SR1630: BB +5.0V Critical [{ITEM.VALUE}]','','0','5','',NULL,'0','0','0','','0','','0','','0','','54f7b55a71b544bf877b283593a2ca32',''), ('17165','{20180}<4.630 or {20180}>5.380','Intel SR1630: BB +5.0V Non-Critical [{ITEM.VALUE}]','','0','4','',NULL,'0','0','0','','0','','0','','0','','a1e9f3ba84c54a39a255c682e43e793b',''), ('17166','{20181}<0 or {20181}>48','Intel SR1630: Front Panel Temp Critical [{ITEM.VALUE}]','','0','5','',NULL,'0','0','0','','0','','0','','0','','b4b5e024b8b44e9eb3238405a0b1d223',''), ('17167','{20182}<5 or {20182}>44','Intel SR1630: Front Panel Temp Non-Critical [{ITEM.VALUE}]','','0','4','',NULL,'0','0','0','','0','','0','','0','','b7125d20d8664530a78c9b3b56b2f479',''), ('17168','{20183}=0','Intel SR1630: Power','','0','2','',NULL,'0','0','0','','0','','0','','0','','dea67d2c71804d369e9b948922a4e86b',''), ('17169','{20184}<324','Intel SR1630: System Fan 2 Critical [{ITEM.VALUE}]','','0','5','',NULL,'0','0','0','','0','','0','','0','','95653ec3aa484822888818ea0fd6261b',''), ('17170','{20185}<378','Intel SR1630: System Fan 2 Non-Critical [{ITEM.VALUE}]','','0','4','',NULL,'0','0','0','','0','','0','','0','','0a6c1831607a4f059e5325fcc11e34cf',''), ('17171','{20186}<324','Intel SR1630: System Fan 3 Critical [{ITEM.VALUE}]','','0','5','',NULL,'0','0','0','','0','','0','','0','','dc2255a797ef424ea22f553f8de53061',''), ('17172','{20187}<378','Intel SR1630: System Fan 3 Non-Critical [{ITEM.VALUE}]','','0','4','',NULL,'0','0','0','','0','','0','','0','','f1c938c42c6a4933b108da70cb2daf5d',''), ('17173','{20188} * 100 / {20189} > {$ORACLE.PROCESSES.MAX.WARN}','Oracle: Too many active processes','','0','2','Active processes are using more than `{$ORACLE.PROCESSES.MAX.WARN}`% of the available number of processes.',NULL,'0','0','0','','0','','0','','0','Oracle: Too many active processes (over {$ORACLE.PROCESSES.MAX.WARN}% for 5 min)','3f265c15b3d042d79b1aa598f7249738',''), ('17174','{20190} * 100 / {20191} > {$ORACLE.SESSIONS.MAX.WARN}','Oracle: Too many active sessions','','0','2','Active sessions are using more than `{$ORACLE.SESSIONS.MAX.WARN}`% of the available sessions.',NULL,'0','0','0','','0','','0','','0','Oracle: Too many active sessions (over {$ORACLE.SESSIONS.MAX.WARN}% for 5 min)','d9977c48c6e7435eafde4cabc43bb5fc',''), ('17175','{20192} * 100 / {20193} > {$ORACLE.DB.FILE.MAX.WARN}','Oracle: Too many database files','','0','2','The number of datafiles is higher than `{$ORACLE.DB.FILE.MAX.WARN}`% of the available datafile limit.',NULL,'0','0','0','','0','','0','','0','Oracle: Too many database files (over {$ORACLE.DB.FILE.MAX.WARN}% for 5 min)','362882973d0b45d1a09a687353734032',''), ('17176','{20194} * 100 / {20195} > {$ORACLE.PGA.USE.MAX.WARN}','Oracle: Total PGA inuse is too high','','0','2','The total PGA in use is more than `{$ORACLE.PGA.USE.MAX.WARN}`% of `PGA_AGGREGATE_TARGET`.',NULL,'0','0','0','','0','','0','','0','Oracle: Total PGA inuse is too high (over {$ORACLE.PGA.USE.MAX.WARN}% for 5 min)','aecb78fc9a7549f2b8e68325530bcd99',''), ('17177','{23464}<>{23465} and length({23466})>0','Oracle: Instance hostname has changed','','0','1','An Oracle Database instance hostname has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Oracle: Instance hostname has changed (new hostname received: {ITEM.VALUE})','346ef7cacf534988892970d699ef4028',''), ('17178','{23467}<>{23468} and length({23469})>0','Oracle: Instance name has changed','','0','1','An Oracle Database instance name has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Oracle: Instance name has changed (new name received: {ITEM.VALUE})','ed394860378642d5b9f220327ead6766',''), ('17179','{20200}=0','Oracle: Connection to database is unavailable','','0','5','Connection to Oracle Database is currently unavailable.',NULL,'0','0','0','','0','','0','','0','','df6b0f5dd50848cc8c2e67947df0a5e1',''), ('17180','{20201} < {$ORACLE.REDO.MIN.WARN}','Oracle: Number of REDO logs available for switching is too low','','0','2','The number of inactive/unused redos available for log switching is low (risk of database downtime).',NULL,'0','0','0','','0','','0','','0','Oracle: Number of REDO logs available for switching is too low (less {$ORACLE.REDO.MIN.WARN} for 5 min)','18dba6067a254bdd99a363c3d7b9bdb2',''), ('17182','{20203} > {$ORACLE.SESSIONS.LOCK.MAX.WARN}','Oracle: Too many locked sessions','','0','2','The number of locked sessions exceeds `{$ORACLE.SESSIONS.LOCK.MAX.WARN}`% of the running sessions.',NULL,'0','0','0','','0','','0','','0','Oracle: Too many locked sessions (over {$ORACLE.SESSIONS.LOCK.MAX.WARN}% for 5 min)','504e5d964de645679ce448165dadd027',''), ('17183','{20204} > {$ORACLE.SESSION.LONG.LOCK.MAX.WARN}','Oracle: Too many sessions locked','','0','2','The number of locked sessions exceeding `{$ORACLE.SESSION.LOCK.MAX.TIME}` seconds is too high. Long-term locks can negatively affect the database performance. Therefore, if they are detected, you should first find the most difficult queries from the database point of view and then analyze possible resource leaks.',NULL,'0','0','0','','0','','0','','0','Oracle: Too many sessions locked over {$ORACLE.SESSION.LOCK.MAX.TIME}s (over {$ORACLE.SESSION.LONG.LOCK.MAX.WARN} for 5 min)','5abc07cd48514a0dac90ce946ce6bc3a',''), ('17184','{20205}<{$ORACLE.SHARED.FREE.MIN.WARN}','Oracle: Shared pool free is too low','','0','2','The free memory percent of the shared pool has been less than `{$ORACLE.SHARED.FREE.MIN.WARN}`% for the last 5 minutes.',NULL,'0','0','0','','0','','0','','0','Oracle: Shared pool free is too low (less {$ORACLE.SHARED.FREE.MIN.WARN}% for 5m)','80dbf89c86764cf09d2c5ec834e8940c',''), ('17185','{20206}=1','Oracle: Failed to fetch info data','','0','1','Zabbix has not received any data for the items for the last 5 minutes. The database might be unavailable for connecting.',NULL,'0','0','0','','0','','0','','0','Oracle: Failed to fetch info data (or no data for 30m)','bcdaf519783f453e81d7064207f8bd30',''), ('17186','{20207}<10m','Oracle: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Oracle: {HOST.NAME} has been restarted (uptime < 10m)','5eae478e85834eee91b94680d529dcdb',''), ('17187','{20208} < {$ORACLE.EXPIRE.PASSWORD.MIN.WARN}','Oracle: Zabbix account will expire soon','','0','2','The password for the Zabbix user in the database expires soon.',NULL,'0','0','0','','0','','0','','0','Oracle: Zabbix account will expire soon (under {$ORACLE.EXPIRE.PASSWORD.MIN.WARN} days)','5eaa700c3bb74399ad2d26c382397415',''), ('17188','{23470}<>{23471} and length({23472})>0','Oracle: Version has changed','','0','1','The Oracle Database version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Oracle: Version has changed (new version value received: {ITEM.VALUE})','4a68bcb6149c4c839e263c949343add8',''), ('17222','{20285}<10m','Asterisk: Service has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Asterisk: Service has been restarted (uptime < 10m)','100d38b62c1d4ce298a9fadfbab19e4c',''), ('17223','{20286}=1','Asterisk: Failed to fetch AMI page','','0','2','Zabbix has not received any data for items for the last 30 minutes.',NULL,'0','0','0','','0','','1','','0','Asterisk: Failed to fetch AMI page (or no data for 30m)','35ca01e504a548db9d4db8be1390d6b9',''), ('17224','{20287}<10m','Asterisk: Configuration has been reloaded','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Asterisk: Configuration has been reloaded (last reload < 10m ago)','4e99b65188264ba1aa80e24662f9b3cd',''), ('17225','{25005}<>{25006} and length({25007})>0','Asterisk: Version has changed','','0','1','The Asterisk version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Asterisk: Version has changed (new version: {ITEM.VALUE})','f1a260626ae6446d89e1e725e14c1098',''), ('17226','{20290}>{$AMI.RESPONSE_TIME.MAX.WARN}','Asterisk: Service response time is too high','','0','2','',NULL,'0','0','0','','0','','1','','0','Asterisk: Service response time is too high (over {$AMI.RESPONSE_TIME.MAX.WARN} for 5m)','dbc74502be01498194003dc1a3d90014',''), ('17227','{20291}=0','Asterisk: Service is down','','0','3','',NULL,'0','0','0','','0','','1','','0','','1fa3370fa93f4d07a2c470f993096554',''), ('17229','{20293}="UNKNOWN" or {20293}="UNREACHABLE"','Asterisk: IAX trunk "{#OBJECTNAME}": IAX trunk {#OBJECTNAME} has a state {ITEM.VALUE}','','0','3','The IAX trunk is unable to establish a connection with a neighbor due to network issues or incorrect configuration.',NULL,'0','2','0','','0','','0','','0','','db595245acef4ec9b771c266c14100d2',''), ('17231','{20295}="Unavailable"','Asterisk: PJSIP trunk "{#OBJECTNAME}": PJSIP trunk {#OBJECTNAME} has a state Unavailable','','0','3','The PJSIP trunk is unable to establish a connection with a neighbor due to network issues or incorrect configuration.',NULL,'0','2','0','','0','','0','','0','','6f31d886d6954b82874d38646b233689',''), ('17234','{20298}="UNKNOWN" or {20298}="UNREACHABLE"','Asterisk: SIP trunk "{#OBJECTNAME}": SIP trunk {#OBJECTNAME} has a state {ITEM.VALUE}','','0','3','The SIP trunk is unable to establish a connection with a neighbor due to network issues or incorrect configuration.',NULL,'0','2','0','','0','','0','','0','','39cac88e9263470da6e4b1a08f806c58',''), ('17322','{31261}>{$TEMP_WARN:"{#SENSOR_INFO}"} or {31262}={$TEMP_WARN_STATUS}','Brocade FC: {#SENSOR_INFO}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31263}<{$TEMP_WARN:"{#SENSOR_INFO}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Brocade FC: {#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SENSOR_INFO}"}','726afdedb08848bd86ab4161cef29f42',''), ('17332','{31323}>{$TEMP_CRIT:"{#SENSOR_INFO}"} or {31324}={$TEMP_CRIT_STATUS}','Intel Qlogic: {#SENSOR_INFO}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31325}<{$TEMP_CRIT:"{#SENSOR_INFO}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Intel Qlogic: {#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SENSOR_INFO}"}','61c220a2ae9a4074baf4051214679e77',''), ('17333','{31326}>{$TEMP_WARN:"{#SENSOR_INFO}"} or {31327}={$TEMP_WARN_STATUS}','Intel Qlogic: {#SENSOR_INFO}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31328}<{$TEMP_WARN:"{#SENSOR_INFO}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Intel Qlogic: {#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SENSOR_INFO}"}','d6f38aebdcde46e688350b40d5cbe85b',''), ('17353','{23182}<>{23183} and length({23184})>0','Ceph: Minimum monitor release version has changed','','0','1','A Ceph version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Ceph: Minimum monitor release version has changed (new version: {ITEM.VALUE})','716f166b3943443aba70a4faed882ffb',''), ('17354','{20543}=2','Ceph: Cluster in ERROR state','','0','3','',NULL,'0','0','0','','0','','1','','0','','6ab06350bd8b426681f1b8bddde76a13',''), ('17355','{20544}=1','Ceph: Cluster in WARNING state','','0','2','',NULL,'0','0','1','{20544}=0','0','','1','','0','','8b6ba1a7ae014e80a5287ffd13b5d8aa',''), ('17356','{20545}=0','Ceph: Can not connect to cluster','','0','3','The connection to the Ceph RESTful module is broken (if there is any error presented including *AUTH* and the configuration issues).',NULL,'0','0','0','','0','','0','','0','','9ffc9a5c3d1c47d288c665c8be7d2fbb',''), ('17357','{20546} > {20547}*100','Ceph: OSD osd.{#OSDNAME} is full','','0','3','',NULL,'0','2','0','','0','','0','','0','','5d7a028166584c29b959914ce904a713',''), ('17358','{20548} > {20549}*100','Ceph: Ceph OSD osd.{#OSDNAME} is near full','','0','2','',NULL,'0','2','0','','0','','0','','0','','cd04e8d542a04bdf89abad7ee4719e75',''), ('17359','{20550} = 0','Ceph: OSD osd.{#OSDNAME} is down','','0','3','OSD osd.{#OSDNAME} is marked "down" in the *osdmap*. The OSD daemon may have been stopped, or peer OSDs may be unable to reach the OSD over the network.',NULL,'0','2','0','','0','','0','','0','','21535bb935b44b3aa073542db3cc7827',''), ('17368','{20566}>{20567}*{20568}/100','Squid: Swap usage is more than high watermark','','0','4','',NULL,'0','0','0','','0','','0','Used: {ITEM.LASTVALUE1}','0','Squid: Swap usage is more than high watermark (>{ITEM.VALUE2}%)','5676f1e02dc7413fb1a34543ccaf1384',''), ('17369','{20569}>{20570}*{20571}/100','Squid: Swap usage is more than low watermark','','0','2','',NULL,'0','0','0','','0','','0','Used: {ITEM.LASTVALUE1}','0','Squid: Swap usage is more than low watermark (>{ITEM.VALUE2}%)','2cf87472ebf74239bb782580448f696c',''), ('17370','{20572}=0','Squid: Port {$SQUID.HTTP.PORT} is down','','0','3','',NULL,'0','0','0','','0','','1','','0','','7e0f0a9e8a9d4f6193946e4f8cd4a2e3',''), ('17371','{20573}<{$SQUID.FILE.DESC.WARN.MIN}','Squid: Squid is running out of file descriptors','','0','2','',NULL,'0','0','0','','0','','0','','0','Squid: Squid is running out of file descriptors (<{$SQUID.FILE.DESC.WARN.MIN})','40c41c87e46443f886506da5e580657e',''), ('17372','{20574}<10m','Squid: Squid has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Squid: Squid has been restarted (uptime < 10m)','89efc9400197427fa718395286dd3583',''), ('17373','{23270}<>{23271} and length({23272})>0','Squid: Squid version has been changed','','0','1','Squid version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Squid: Version has changed (new version: {ITEM.VALUE})','c5991152d2da4df7ae0d978233c5a859',''), ('17390','{20595} > {$PG.CHECKPOINTS_REQ.MAX.WARN}','PostgreSQL: Required checkpoints occur too frequently','','0','3','Checkpoints are points in the sequence of transactions at which it is guaranteed that the heap and index data files have been updated with all information written before that checkpoint. At checkpoint time, all dirty data pages are flushed to disk and a special checkpoint record is written to the log file. https://www.postgresql.org/docs/current/wal-configuration.html',NULL,'0','0','0','','0','','0','','0','PostgreSQL: Required checkpoints occur too frequently (over {$PG.CHECKPOINTS_REQ.MAX.WARN})','65e7954489854ad3ad1698dead7c4c02',''), ('17391','{20596} = 1','PostgreSQL: Failed to get items','','0','2','Zabbix has not received any data for items for the last 30 minutes.',NULL,'0','0','0','','0','','0','','0','PostgreSQL: Failed to get items (no data for 30m)','768d28b9360b46cda3065f5082ba97ac',''), ('17392','{20597} < {$PG.CACHE_HITRATIO.MIN.WARN}','PostgreSQL: Cache hit ratio too low','','0','2','Cache hit ratio is lower than {$PG.CACHE_HITRATIO.MIN.WARN} for 5m.',NULL,'0','0','0','','0','','0','','0','PostgreSQL: Cache hit ratio too low (under {$PG.CACHE_HITRATIO.MIN.WARN} in 5m)','4d87cc71b40f4b59ad27f30f33b15a69',''), ('17393','{23498}<>{23499} and length({23500})>0','PostgreSQL: Configuration has changed','','0','1','PostgreSQL configuration has changed.',NULL,'0','0','0','','0','','0','','0','','b727cfa6d3de4063b6a2dcb6cc84e27b',''), ('17394','{20600} > {$PG.CONN_TOTAL_PCT.MAX.WARN}','PostgreSQL: Total number of connections is too high','','0','3','Total number of current connections exceeds the limit of {$PG.CONN_TOTAL_PCT.MAX.WARN}% out of the maximum number of concurrent connections to the database server (the "max_connections" setting).',NULL,'0','0','0','','0','','0','','0','PostgreSQL: Total number of connections is too high (over {$PG.CONN_TOTAL_PCT.MAX.WARN} in 5m)','54ef12b8ff1e4383a3097c71478ceefa',''), ('17395','{20601} > {$PG.PING_TIME.MAX.WARN}','PostgreSQL: Response too long','','0','3','Response is taking too long (over {$PG.PING_TIME.MAX.WARN} for 5m).',NULL,'0','0','0','','0','','0','','0','PostgreSQL: Response too long (over {$PG.PING_TIME.MAX.WARN})','e19b5630737b4c63886b5df77a3c748c',''), ('17396','{20602} = 0','PostgreSQL: Service is down','','0','4','Last test of a connection was unsuccessful.',NULL,'0','0','0','','0','','0','','0','','6d9c2b5353ce4f6baeeb0f254fb7d1e2',''), ('17397','{20603} > {$PG.REPL_LAG.MAX.WARN}','PostgreSQL: Streaming lag with master is too high','','0','3','Replication lag with master is higher than {$PG.REPL_LAG.MAX.WARN} for 5m.',NULL,'0','0','0','','0','','0','','0','PostgreSQL: Streaming lag with master is too high (over {$PG.REPL_LAG.MAX.WARN} in 5m)','11831c52e86445498eed42de6a629b65',''), ('17398','{20604}=0','PostgreSQL: Replication is down','','0','3','Replication is enabled and data streaming was down for 5m.',NULL,'0','0','0','','0','','0','','0','','aef1e1d2bab540f8ab738b4a3fad863c',''), ('17399','{20605} < 10m','PostgreSQL: Service has been restarted','','0','3','PostgreSQL uptime is less than 10 minutes.',NULL,'0','0','0','','0','','0','','0','PostgreSQL: Service has been restarted (uptime < 10m)','85565aba402740868a16c0e4639a98fc',''), ('17400','{23501}<>{23502} and length({23503})>0','PostgreSQL: Version has changed','','0','1','',NULL,'0','0','0','','0','','0','','0','PostgreSQL: Version has changed (new version value received: {ITEM.VALUE})','8111eb42b0e74fffb43da474677ebc2f',''), ('17401','{20608} > {$PG.CONFLICTS.MAX.WARN:"{#DBNAME}"}','PostgreSQL: DB [{#DBNAME}]: Too many recovery conflicts','','0','3','The primary and standby servers are in many ways loosely connected. Actions on the primary will have an effect on the standby. As a result, there is potential for negative interactions or conflicts between them. https://www.postgresql.org/docs/current/hot-standby.html#HOT-STANDBY-CONFLICT',NULL,'0','2','0','','0','','0','','0','PostgreSQL: DB [{#DBNAME}]: Too many recovery conflicts (over {$PG.CONFLICTS.MAX.WARN:"{#DBNAME}"} in 5m)','3b51f02258bd4e02829f04ca016dd01d',''), ('17402','{20609} > {$PG.DEADLOCKS.MAX.WARN:"{#DBNAME}"}','PostgreSQL: DB [{#DBNAME}]: Deadlock occurred','','0','4','Number of deadlocks detected per second exceeds {$PG.DEADLOCKS.MAX.WARN:"{#DBNAME}"} for 5m.',NULL,'0','2','0','','0','','0','','0','PostgreSQL: DB [{#DBNAME}]: Deadlock occurred (over {$PG.DEADLOCKS.MAX.WARN:"{#DBNAME}"} in 5m)','3bee63fa04d94586937e22aafab9bdd8',''), ('17403','{20610}<{$PG.FROZENXID_PCT_STOP.MIN.HIGH:"{#DBNAME}"}','PostgreSQL: DB [{#DBNAME}]: VACUUM FREEZE is required to prevent wraparound','','0','3','Preventing Transaction ID Wraparound Failures: https://www.postgresql.org/docs/current/routine-vacuuming.html#VACUUM-FOR-WRAPAROUND',NULL,'0','2','0','','0','','0','','0','PostgreSQL: DB [{#DBNAME}]: VACUUM FREEZE is required to prevent wraparound (frozen XID less than {$PG.FROZENXID_PCT_STOP.MIN.HIGH:"{#DBNAME}"} %)','709df9c1e29a4ff68a3de9423ff7ae58',''), ('17404','{20611}>{$PG.LOCKS.MAX.WARN:"{#DBNAME}"}','PostgreSQL: DB [{#DBNAME}]: Number of locks is too high','','0','2','',NULL,'0','2','0','','0','','0','','0','PostgreSQL: DB [{#DBNAME}]: Number of locks is too high (over {$PG.LOCKS.MAX.WARN:"{#DBNAME}"} in 5m)','ef7d3c9866df44aa9b378e7f125a34de',''), ('17405','{20612}>{$PG.SLOW_QUERIES.MAX.WARN:"{#DBNAME}"}','PostgreSQL: DB [{#DBNAME}]: Too many slow queries','','0','2','The number of detected slow queries exceeds the limit of {$PG.SLOW_QUERIES.MAX.WARN:"{#DBNAME}"}.',NULL,'0','2','0','','0','','0','','0','PostgreSQL: DB [{#DBNAME}]: Too many slow queries (over {$PG.SLOW_QUERIES.MAX.WARN:"{#DBNAME}"} in 5m)','facc8f6976664da4ad5567d270f0f311',''), ('17406','{20613} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','f23c654001384f6e981fd33aeab0af6f',''), ('17407','{20614} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','57f8757b80914c248a35d0899791a48e',''), ('17408','{20615} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','e2c692d5d4ca49b688656a1abe6228e5',''), ('17409','{20616} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','e163c4af8ff1451a8728e569c5d3c04c',''), ('17410','{23173}<>{23174} and length({23175})>0','Apache ActiveMQ: Broker {#JMXBROKERNAME}: Version has been changed','','0','1','The Broker {#JMXBROKERNAME} version has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Apache ActiveMQ: Broker {#JMXBROKERNAME}: Version has changed (new version: {ITEM.VALUE})','7902d81681874aa3acf33d90316f9864',''), ('17411','{20619}>{$ACTIVEMQ.MEM.MAX.HIGH:"{#JMXBROKERNAME}"}','Apache ActiveMQ: Broker {#JMXBROKERNAME}: Memory usage is too high','','0','4','',NULL,'0','2','0','','0','','0','','0','Apache ActiveMQ: Broker {#JMXBROKERNAME}: Memory usage is too high (over {$ACTIVEMQ.MEM.MAX.HIGH:"{#JMXBROKERNAME}"}%)','e805b8cca9744940affc3bdd234a7587',''), ('17412','{20620}>{$ACTIVEMQ.MEM.MAX.WARN:"{#JMXBROKERNAME}"}','Apache ActiveMQ: Broker {#JMXBROKERNAME}: Memory usage is too high','','0','3','',NULL,'0','2','0','','0','','0','','0','Apache ActiveMQ: Broker {#JMXBROKERNAME}: Memory usage is too high (over {$ACTIVEMQ.MEM.MAX.WARN:"{#JMXBROKERNAME}"}%)','3e741e339fff422fae67b5333faa1e20',''), ('17413','{20621}>{$ACTIVEMQ.STORE.MAX.HIGH:"{#JMXBROKERNAME}"}','Apache ActiveMQ: Broker {#JMXBROKERNAME}: Storage usage is too high','','0','4','',NULL,'0','2','0','','0','','0','','0','Apache ActiveMQ: Broker {#JMXBROKERNAME}: Storage usage is too high (over {$ACTIVEMQ.STORE.MAX.HIGH:"{#JMXBROKERNAME}"}%)','2e1c9f92c87f446ebab68ac638c713c5',''), ('17414','{20622}>{$ACTIVEMQ.STORE.MAX.WARN:"{#JMXBROKERNAME}"}','Apache ActiveMQ: Broker {#JMXBROKERNAME}: Storage usage is too high','','0','3','',NULL,'0','2','0','','0','','0','','0','Apache ActiveMQ: Broker {#JMXBROKERNAME}: Storage usage is too high (over {$ACTIVEMQ.STORE.MAX.WARN:"{#JMXBROKERNAME}"}%)','271b33edce84439a91d6a253f45e5bf6',''), ('17415','{20623}>{$ACTIVEMQ.TEMP.MAX.HIGH}','Apache ActiveMQ: Broker {#JMXBROKERNAME}: Temp usage is too high','','0','4','',NULL,'0','2','0','','0','','0','','0','Apache ActiveMQ: Broker {#JMXBROKERNAME}: Temp usage is too high (over {$ACTIVEMQ.TEMP.MAX.WARN:"{#JMXBROKERNAME}"}%)','422252a81e3e4261bbd7f331f48c6257',''), ('17416','{20624}>{$ACTIVEMQ.TEMP.MAX.WARN}','Apache ActiveMQ: Broker {#JMXBROKERNAME}: Temp usage is too high','','0','3','',NULL,'0','2','0','','0','','0','','0','Apache ActiveMQ: Broker {#JMXBROKERNAME}: Temp usage is too high (over {$ACTIVEMQ.TEMP.MAX.WARN:"{#JMXBROKERNAME}"}%)','acb8f6e0762f48c2bd4c03f2a55b2f44',''), ('17417','{20625}<{$ACTIVEMQ.BROKER.CONSUMERS.MIN.HIGH:"{#JMXBROKERNAME}"}','Apache ActiveMQ: Broker {#JMXBROKERNAME}: Consumers count is too low','','0','4','',NULL,'0','2','0','','0','','0','','0','Apache ActiveMQ: Broker {#JMXBROKERNAME}: Consumers count is too low (below {$ACTIVEMQ.BROKER.CONSUMERS.MIN.HIGH:"{#JMXBROKERNAME}"} for {$ACTIVEMQ.BROKER.CONSUMERS.MIN.TIME:"{#JMXBROKERNAME}"})','6906f0a1ef804da4a1203ca9d96ab8a0',''), ('17419','{20627}<{$ACTIVEMQ.BROKER.PRODUCERS.MIN.HIGH:"{#JMXBROKERNAME}"}','Apache ActiveMQ: Broker {#JMXBROKERNAME}: Producers count is too low','','0','4','',NULL,'0','2','0','','0','','0','','0','Apache ActiveMQ: Broker {#JMXBROKERNAME}: Producers count is too low (below {$ACTIVEMQ.BROKER.PRODUCERS.MIN.HIGH:"{#JMXBROKERNAME}"} for {$ACTIVEMQ.BROKER.PRODUCERS.MIN.TIME:"{#JMXBROKERNAME}"})','2ee6ad72a98143b59d8d1136fffdbe50',''), ('17420','{20628}<10m','Apache ActiveMQ: Broker {#JMXBROKERNAME}: Broker has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','2','0','','0','','1','','0','Apache ActiveMQ: Broker {#JMXBROKERNAME}: Broker has been restarted (uptime < 10m)','6abb3813bb52465aa4a5f4bebfe999c3',''), ('17421','{20629}<{$ACTIVEMQ.DESTINATION.CONSUMERS.MIN.HIGH:"{#JMXDESTINATIONNAME}"} and {20630}>{$ACTIVEMQ.BROKER.CONSUMERS.MIN.HIGH:"{#JMXBROKERNAME}"}','Apache ActiveMQ: {#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Consumers count is too low','','0','3','',NULL,'0','2','1','{20631}>={$ACTIVEMQ.DESTINATION.CONSUMERS.MIN.HIGH:"{#JMXDESTINATIONNAME}"}','0','','1','','0','Apache ActiveMQ: {#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Consumers count is too low (below {$ACTIVEMQ.DESTINATION.CONSUMERS.MIN.HIGH:"{#JMXDESTINATIONNAME}"} for {$ACTIVEMQ.DESTINATION.CONSUMERS.MIN.TIME:"{#JMXDESTINATIONNAME}"})','c366d4b329c0471386566d6795c5787f',''), ('17423','{20634}<{$ACTIVEMQ.DESTINATION.PRODUCERS.MIN.HIGH:"{#JMXDESTINATIONNAME}"} and {20635}>{$ACTIVEMQ.BROKER.PRODUCERS.MIN.HIGH:"{#JMXBROKERNAME}"}','Apache ActiveMQ: {#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Producers count is too low','','0','3','',NULL,'0','2','1','{20636}>={$ACTIVEMQ.DESTINATION.PRODUCERS.MIN.HIGH:"{#JMXDESTINATIONNAME}"}','0','','1','','0','Apache ActiveMQ: {#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Producers count is too low (below {$ACTIVEMQ.DESTINATION.PRODUCERS.MIN.HIGH:"{#JMXDESTINATIONNAME}"} for {$ACTIVEMQ.DESTINATION.PRODUCERS.MIN.TIME:"{#JMXDESTINATIONNAME}"})','725d0270554e4fe59d138becfa3e6377',''), ('17425','{20638}>{$ACTIVEMQ.MEM.MAX.HIGH:"{#JMXDESTINATIONNAME}"}','Apache ActiveMQ: {#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Memory usage is too high','','0','4','',NULL,'0','2','0','','0','','0','','0','Apache ActiveMQ: {#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Memory usage is too high (over {$ACTIVEMQ.MEM.MAX.HIGH:"{#JMXDESTINATIONNAME}"}%)','197ab32730a84f79ba1b1e827a10e175',''), ('17426','{20639}>{$ACTIVEMQ.MEM.MAX.WARN:"{#JMXDESTINATIONNAME}"}','Apache ActiveMQ: {#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Memory usage is too high','','0','3','',NULL,'0','2','0','','0','','0','','0','Apache ActiveMQ: {#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Memory usage is too high (over {$ACTIVEMQ.MEM.MAX.WARN:"{#JMXDESTINATIONNAME}"}%)','1e4e3a969b434c6d972251f8c9b3f2a7',''), ('17428','{20641} < {$ARANET.BATT.VOLTAGE.MIN.CRIT:"{#SENSOR_NAME}"}','Aranet: {#METRIC}: Critically low battery voltage on "[{#GATEWAY_NAME}] {#SENSOR_NAME}"','','0','4','',NULL,'0','2','0','','0','','0','','0','Aranet: {#METRIC}: Critically low battery voltage on "[{#GATEWAY_NAME}] {#SENSOR_NAME}" (below {$ARANET.BATT.VOLTAGE.MIN.CRIT:"{#SENSOR_NAME}"}{#UNIT} for 5m)','6a931421d804418085e586dfc0e11311',''), ('17429','{20642} < {$ARANET.BATT.VOLTAGE.MIN.WARN:"{#SENSOR_NAME}"}','Aranet: {#METRIC}: Low battery voltage on "[{#GATEWAY_NAME}] {#SENSOR_NAME}"','','0','2','',NULL,'0','2','0','','0','','0','','0','Aranet: {#METRIC}: Low battery voltage on "[{#GATEWAY_NAME}] {#SENSOR_NAME}" (below {$ARANET.BATT.VOLTAGE.MIN.WARN:"{#SENSOR_NAME}"}{#UNIT} for 5m)','d729130760f9418baa40fb9eeb8a3ca4',''), ('17430','{20643} > {$ARANET.CO2.MAX.CRIT:"{#SENSOR_NAME}"}','Aranet: {#METRIC}: Critically high CO2 level on "[{#GATEWAY_NAME}] {#SENSOR_NAME}"','','0','4','',NULL,'0','2','0','','0','','0','','0','Aranet: {#METRIC}: Critically high CO2 level on "[{#GATEWAY_NAME}] {#SENSOR_NAME}" (over {$ARANET.CO2.MAX.CRIT:"{#SENSOR_NAME}"}{#UNIT} for 5m)','9d88ae8357b444728c63844462d25f83',''), ('17431','{20644} > {$ARANET.CO2.MAX.WARN:"{#SENSOR_NAME}"}','Aranet: {#METRIC}: High CO2 level on "[{#GATEWAY_NAME}] {#SENSOR_NAME}"','','0','2','',NULL,'0','2','0','','0','','0','','0','Aranet: {#METRIC}: High CO2 level on "[{#GATEWAY_NAME}] {#SENSOR_NAME}" (over {$ARANET.CO2.MAX.WARN:"{#SENSOR_NAME}"}{#UNIT} for 5m)','cc54c75ee607485981388da0f7f99ea2',''), ('17432','{20645} > {$ARANET.HUMIDITY.MAX.WARN:"{#SENSOR_NAME}"}','Aranet: {#METRIC}: High humidity on "[{#GATEWAY_NAME}] {#SENSOR_NAME}"','','0','4','',NULL,'0','2','0','','0','','0','','0','Aranet: {#METRIC}: High humidity on "[{#GATEWAY_NAME}] {#SENSOR_NAME}" (over {$ARANET.HUMIDITY.MAX.WARN:"{#SENSOR_NAME}"}{#UNIT} for 5m)','9697528bedd64aca9da1e6343182fe0c',''), ('17433','{20646} < {$ARANET.HUMIDITY.MIN.WARN:"{#SENSOR_NAME}"}','Aranet: {#METRIC}: Low humidity on "[{#GATEWAY_NAME}] {#SENSOR_NAME}"','','0','2','',NULL,'0','2','0','','0','','0','','0','Aranet: {#METRIC}: Low humidity on "[{#GATEWAY_NAME}] {#SENSOR_NAME}" (below {$ARANET.HUMIDITY.MIN.WARN:"{#SENSOR_NAME}"}{#UNIT} for 5m)','85c1be625bc940588671bc43e6ed6a8a',''), ('17434','{20647} > {$ARANET.LAST_UPDATE.MAX.WARN:"{#SENSOR_NAME}"}','Aranet: {#METRIC}: Sensor data "[{#GATEWAY_NAME}] {#SENSOR_NAME}" is not updated','','0','2','',NULL,'0','2','0','','0','','0','','0','Aranet: {#METRIC}: Sensor data "[{#GATEWAY_NAME}] {#SENSOR_NAME}" is not updated (more than {$ARANET.LAST_UPDATE.MAX.WARN:"{#SENSOR_NAME}"})','b0aa8bb4e07e47b5824595b824081d75',''), ('17435','{20648}>{20649}','MS Exchange 2016: Database Counters [{#INSTANCE}]: Average write time latency is higher than read time latency for {$MS.EXCHANGE.DB.PASSIVE.WRITE.TIME}','','0','2',E'Should be less than the read latency for the same instance, as measured by the MSExchange Database ==> Instances({#INF.STORE}/_Total)\\I/O Database Reads (Recovery) Average Latency counter.',NULL,'0','2','0','','0','','0','','0','','2eb26276a3a24ce4af517ff8740f4566',''), ('17436','{20650}>{$MS.EXCHANGE.DB.FAULTS.WARN}','MS Exchange 2016: Information Store [{#INSTANCE}]: Page faults is too high','','0','3','Too much page faults stalls for database "{#INSTANCE}". This counter should be 0 on production servers.',NULL,'0','2','0','','0','','0','','0','MS Exchange 2016: Information Store [{#INSTANCE}]: Page faults is too high (>{$MS.EXCHANGE.DB.FAULTS.WARN} for {$MS.EXCHANGE.DB.FAULTS.TIME})','07e0dce4546b4d15bfbb34fa2044c319',''), ('17437','{20651}>{$MS.EXCHANGE.LOG.STALLS.WARN}','MS Exchange 2016: Information Store [{#INSTANCE}]: Log records stalls is too high','','0','3','Stalled log records too high. The average value should be less than 10 threads waiting.',NULL,'0','2','0','','0','','0','','0','MS Exchange 2016: Information Store [{#INSTANCE}]: Log records stalls is too high (>{$MS.EXCHANGE.LOG.STALLS.WARN} for {$MS.EXCHANGE.LOG.STALLS.TIME})','688cbee95ef2432abc03c81d39049a44',''), ('17438','{20652}>{$MS.EXCHANGE.DB.ACTIVE.READ.WARN}','MS Exchange 2016: Database Counters [{#INSTANCE}]: Average read time latency is too high','','0','2','Should be less than 20ms on average.',NULL,'0','2','0','','0','','0','','0','MS Exchange 2016: Database Counters [{#INSTANCE}]: Average read time latency is too high (>{$MS.EXCHANGE.DB.ACTIVE.READ.WARN}s for {$MS.EXCHANGE.DB.ACTIVE.READ.TIME})','053583bbe81d4ce0961ee365cee5a802',''), ('17439','{20653}>{$MS.EXCHANGE.DB.PASSIVE.READ.WARN}','MS Exchange 2016: Database Counters [{#INSTANCE}]: Average read time latency is too high','','0','2','Should be less than 200ms on average.',NULL,'0','2','0','','0','','0','','0','MS Exchange 2016: Database Counters [{#INSTANCE}]: Average read time latency is too high (>{$MS.EXCHANGE.DB.PASSIVE.READ.WARN}s for {$MS.EXCHANGE.DB.PASSIVE.READ.TIME})','4a07a86df67b4aa08e538d4463c2d3df',''), ('17440','{20654}>{$MS.EXCHANGE.DB.ACTIVE.WRITE.WARN}','MS Exchange 2016: Database Counters [{#INSTANCE}]: Average write time latency is too high for {$MS.EXCHANGE.DB.ACTIVE.WRITE.TIME}','','0','2','Should be less than 50ms on average.',NULL,'0','2','0','','0','','0','','0','','87cc1ca8b39541e89eb02a1c094892c0',''), ('17441','{20655}>{$MS.EXCHANGE.RPC.WARN}','MS Exchange 2016: Information Store [{#INSTANCE}]: RPC Requests latency is too high','','0','2','Should be less than 50ms at all times, with spikes less than 100ms.',NULL,'0','2','0','','0','','0','','0','MS Exchange 2016: Information Store [{#INSTANCE}]: RPC Requests latency is too high (>{$MS.EXCHANGE.RPC.WARN}s for {$MS.EXCHANGE.RPC.TIME})','b9b2f224082a4ec687d121534402170c',''), ('17442','{20656}>{$MS.EXCHANGE.RPC.COUNT.WARN}','MS Exchange 2016: Information Store [{#INSTANCE}]: RPC Requests total count is too high','','0','2','Should be below 70 at all times.',NULL,'0','2','0','','0','','0','','0','MS Exchange 2016: Information Store [{#INSTANCE}]: RPC Requests total count is too high (>{$MS.EXCHANGE.RPC.COUNT.WARN} for {$MS.EXCHANGE.RPC.COUNT.TIME})','6349d2b6cd13413187b8c77e10fa96a2',''), ('17443','{20657}>{$MS.EXCHANGE.LDAP.WARN}','MS Exchange 2016: Domain Controller [{#INSTANCE}]: LDAP read time is too high','','0','3','Should be less than 50ms at all times, with spikes less than 100ms.',NULL,'0','2','0','','0','','0','','0','MS Exchange 2016: Domain Controller [{#INSTANCE}]: LDAP read time is too high (>{$MS.EXCHANGE.LDAP.WARN}s for {$MS.EXCHANGE.LDAP.TIME})','799366198fd04746bf265431c00269ab',''), ('17444','{20658}>{$MS.EXCHANGE.LDAP.WARN}','MS Exchange 2016: Domain Controller [{#INSTANCE}]: LDAP search time is too high','','0','3','Should be less than 50ms at all times, with spikes less than 100ms.',NULL,'0','2','0','','0','','0','','0','MS Exchange 2016: Domain Controller [{#INSTANCE}]: LDAP search time is too high (>{$MS.EXCHANGE.LDAP.WARN}s for {$MS.EXCHANGE.LDAP.TIME})','0db1b4e3f149481e8b04fe8b5eafa508',''), ('17445','{20659}>{20660}','MS Exchange 2016: Database Counters [{#INSTANCE}]: Average write time latency is higher than read time latency for {$MS.EXCHANGE.DB.PASSIVE.WRITE.TIME}','','0','2',E'Should be less than the read latency for the same instance, as measured by the MSExchange Database ==> Instances({#INF.STORE}/_Total)\\I/O Database Reads (Recovery) Average Latency counter.',NULL,'0','2','0','','0','','0','','0','','9c9732c8d3314c12aecd268aa445e8bc',''), ('17446','{20661}>{$MS.EXCHANGE.DB.FAULTS.WARN}','MS Exchange 2016: Information Store [{#INSTANCE}]: Page faults is too high','','0','3','Too much page faults stalls for database "{#INSTANCE}". This counter should be 0 on production servers.',NULL,'0','2','0','','0','','0','','0','MS Exchange 2016: Information Store [{#INSTANCE}]: Page faults is too high (>{$MS.EXCHANGE.DB.FAULTS.WARN} for {$MS.EXCHANGE.DB.FAULTS.TIME})','c3540ee98c464c3bbcf680e26ce6165a',''), ('17447','{20662}>{$MS.EXCHANGE.LOG.STALLS.WARN}','MS Exchange 2016: Information Store [{#INSTANCE}]: Log records stalls is too high','','0','3','Stalled log records too high. The average value should be less than 10 threads waiting.',NULL,'0','2','0','','0','','0','','0','MS Exchange 2016: Information Store [{#INSTANCE}]: Log records stalls is too high (>{$MS.EXCHANGE.LOG.STALLS.WARN} for {$MS.EXCHANGE.LOG.STALLS.TIME})','1e1f575f25d74f7480f9812b54ad8f39',''), ('17448','{20663}>{$MS.EXCHANGE.DB.ACTIVE.READ.WARN}','MS Exchange 2016: Database Counters [{#INSTANCE}]: Average read time latency is too high','','0','2','Should be less than 20ms on average.',NULL,'0','2','0','','0','','0','','0','MS Exchange 2016: Database Counters [{#INSTANCE}]: Average read time latency is too high (>{$MS.EXCHANGE.DB.ACTIVE.READ.WARN}s for {$MS.EXCHANGE.DB.ACTIVE.READ.TIME})','85be5ba2d3e847a485c968ac47afc495',''), ('17449','{20664}>{$MS.EXCHANGE.DB.PASSIVE.READ.WARN}','MS Exchange 2016: Database Counters [{#INSTANCE}]: Average read time latency is too high','','0','2','Should be less than 200ms on average.',NULL,'0','2','0','','0','','0','','0','MS Exchange 2016: Database Counters [{#INSTANCE}]: Average read time latency is too high (>{$MS.EXCHANGE.DB.PASSIVE.READ.WARN}s for {$MS.EXCHANGE.DB.PASSIVE.READ.TIME})','6a4fe761e26c4b6497106da05dac40fe',''), ('17450','{20665}>{$MS.EXCHANGE.DB.ACTIVE.WRITE.WARN}','MS Exchange 2016: Database Counters [{#INSTANCE}]: Average write time latency is too high for {$MS.EXCHANGE.DB.ACTIVE.WRITE.TIME}','','0','2','Should be less than 50ms on average.',NULL,'0','2','0','','0','','0','','0','','6feb589776294bf0ab31a55af188f1f6',''), ('17451','{20666}>{$MS.EXCHANGE.RPC.WARN}','MS Exchange 2016: Information Store [{#INSTANCE}]: RPC Requests latency is too high','','0','2','Should be less than 50ms at all times, with spikes less than 100ms.',NULL,'0','2','0','','0','','0','','0','MS Exchange 2016: Information Store [{#INSTANCE}]: RPC Requests latency is too high (>{$MS.EXCHANGE.RPC.WARN}s for {$MS.EXCHANGE.RPC.TIME})','42009d7b910743e1803f10b6a918a67b',''), ('17452','{20667}>{$MS.EXCHANGE.RPC.COUNT.WARN}','MS Exchange 2016: Information Store [{#INSTANCE}]: RPC Requests total count is too high','','0','2','Should be below 70 at all times.',NULL,'0','2','0','','0','','0','','0','MS Exchange 2016: Information Store [{#INSTANCE}]: RPC Requests total count is too high (>{$MS.EXCHANGE.RPC.COUNT.WARN} for {$MS.EXCHANGE.RPC.COUNT.TIME})','127241a9e517424687e56eea393b11db',''), ('17453','{20668}>{$MS.EXCHANGE.LDAP.WARN}','MS Exchange 2016: Domain Controller [{#INSTANCE}]: LDAP read time is too high','','0','3','Should be less than 50ms at all times, with spikes less than 100ms.',NULL,'0','2','0','','0','','0','','0','MS Exchange 2016: Domain Controller [{#INSTANCE}]: LDAP read time is too high (>{$MS.EXCHANGE.LDAP.WARN}s for {$MS.EXCHANGE.LDAP.TIME})','3d49bb3d2bdd45998938e531dbaafd33',''), ('17454','{20669}>{$MS.EXCHANGE.LDAP.WARN}','MS Exchange 2016: Domain Controller [{#INSTANCE}]: LDAP search time is too high','','0','3','Should be less than 50ms at all times, with spikes less than 100ms.',NULL,'0','2','0','','0','','0','','0','MS Exchange 2016: Domain Controller [{#INSTANCE}]: LDAP search time is too high (>{$MS.EXCHANGE.LDAP.WARN}s for {$MS.EXCHANGE.LDAP.TIME})','8415fc742e154f9a9455ac9c0cdc85fd',''), ('17455','{20670}/{20671}*100>{$GITLAB.OPEN.FDS.MAX.WARN}','GitLab: Current number of open files is too high','','0','2','',NULL,'0','0','0','','0','','0','','0','GitLab: Current number of open files is too high (over {$GITLAB.OPEN.FDS.MAX.WARN}% for 5m)','4ac37991b2ca4edd9329fff1e752b05b',''), ('17456','{23203}<>{23204} and length({23205})>0','GitLab: Version has changed','','0','1','The GitLab version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','GitLab: Version has changed (new version: {ITEM.VALUE})','88d7ceb3a683436da666e8802b2d29b5',''), ('17457','{20674}>{$GITLAB.HTTP.FAIL.MAX.WARN}','GitLab: Too many HTTP requests failures','','0','2','"Too many requests failed on GitLab instance with 5xx HTTP code"',NULL,'0','0','0','','0','','0','','0','GitLab: Too many HTTP requests failures (over {$GITLAB.HTTP.FAIL.MAX.WARN} for 5m)','7021e3b0b49a4990a1d8ce356b7ae130',''), ('17458','{20675}=0','GitLab: Liveness check was failed','','0','4','The application server is not running or Rails Controllers are deadlocked.',NULL,'0','0','0','','0','','0','','0','','2f1eb8d6c89a4d8cbda0e951d3f6a109',''), ('17459','{20676}=0','GitLab: Gitlab instance is not able to accept traffic','','0','4','',NULL,'0','0','0','','0','','0','','0','','11ff325698534dcd8bbaa12c86704069',''), ('17460','{20677}>{$GITLAB.REDIS.FAIL.MAX.WARN}','GitLab: Too many Redis cache client exceptions','','0','2','"Too many Redis client exceptions during the requests to Redis instance cache."',NULL,'0','0','0','','0','','0','','0','GitLab: Too many Redis cache client exceptions (over {$GITLAB.REDIS.FAIL.MAX.WARN} for 5m)','a7e460f174fd4e16b2358fd3867390b4',''), ('17461','{20678}>{$GITLAB.REDIS.FAIL.MAX.WARN}','GitLab: Too many Redis queues client exceptions','','0','2','"Too many Redis client exceptions during the requests to Redis instance queues."',NULL,'0','0','0','','0','','0','','0','GitLab: Too many Redis queues client exceptions (over {$GITLAB.REDIS.FAIL.MAX.WARN} for 5m)','36ec79901f324f27992ea68274eedb71',''), ('17462','{20679}>{$GITLAB.REDIS.FAIL.MAX.WARN}','GitLab: Too many Redis shared_state client exceptions','','0','2','"Too many Redis client exceptions during the requests to Redis instance shared_state."',NULL,'0','0','0','','0','','0','','0','GitLab: Too many Redis shared_state client exceptions (over {$GITLAB.REDIS.FAIL.MAX.WARN} for 5m)','b475d6ecbc564f9b8f7fe9b24bcdf013',''), ('17463','{20680}=1','GitLab: Failed to fetch info data','','0','2','Zabbix has not received a metrics data for the last 30 minutes',NULL,'0','0','0','','0','','1','','0','GitLab: Failed to fetch info data (or no data for 30m)','e24496a9499447b2bbdf70f85bbf2113',''), ('17465','{20683}>{$GITLAB.PUMA.QUEUE.MAX.WARN}','GitLab: Puma is queueing requests','','0','2','',NULL,'0','2','0','','0','','0','','0','GitLab: Puma is queueing requests (over {$GITLAB.PUMA.QUEUE.MAX.WARN}% for 15m)','356c8dc915d84382b3f8dfe45b901f46',''), ('17466','{20684}/{20685}*100>{$GITLAB.UNICORN.UTILIZATION.MAX.WARN}','GitLab: Unicorn worker utilization is too high','','0','2','',NULL,'0','2','0','','0','','0','','0','GitLab: Unicorn worker utilization is too high (over {$GITLAB.UNICORN.UTILIZATION.MAX.WARN}% for 5m)','731bf8eb456c49739a3fcd7aec24c7d7',''), ('17467','{20686}>{$GITLAB.UNICORN.QUEUE.MAX.WARN}','GitLab: Unicorn is queueing requests','','0','2','',NULL,'0','2','0','','0','','0','','0','GitLab: Unicorn is queueing requests (over {$GITLAB.UNICORN.QUEUE.MAX.WARN}% for 5m)','84142d0996c0420c8b07c7e17d1b9a47',''), ('17468','{20687}>0','Hadoop: NameNode: Cluster has missing blocks','','0','3','A missing block is far worse than a corrupt block, because a missing block cannot be recovered by copying a replica.',NULL,'0','0','0','','0','','0','','0','','3b92daaaddb74105a5e57c4b381e3060',''), ('17469','{20688}>0','Hadoop: NameNode: Cluster has DataNodes in Dead state','','0','3','The death of a DataNode causes a flurry of network activity, as the NameNode initiates replication of blocks lost on the dead nodes.',NULL,'0','0','0','','0','','0','','0','','b2d1a26791aa4b16865b4410c50c7ceb',''), ('17470','{20689}<{$HADOOP.CAPACITY_REMAINING.MIN.WARN}','Hadoop: NameNode: Cluster capacity remaining is low','','0','2','A good practice is to ensure that disk use never exceeds 80 percent capacity.',NULL,'0','0','0','','0','','0','','0','Hadoop: NameNode: Cluster capacity remaining is low (below {$HADOOP.CAPACITY_REMAINING.MIN.WARN}% for 15m)','3104295848c5497085f397b8f3e06ef6',''), ('17471','{20690}=1','Hadoop: NameNode: Failed to fetch NameNode API page','','0','2','Zabbix has not received any data for items for the last 30 minutes.',NULL,'0','0','0','','0','','1','','0','Hadoop: NameNode: Failed to fetch NameNode API page (or no data for 30m)','9fac0ae651ab40a08551945eb0a93b68',''), ('17472','{20691}<10m','Hadoop: NameNode: Service has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Hadoop: NameNode: Service has been restarted (uptime < 10m)','84d866bc0dc3486d9c5dc9beefec8d31',''), ('17473','{20692}>0','Hadoop: NameNode: Cluster has volume failures','','0','3','HDFS now allows for disks to fail in place, without affecting DataNode operations, until a threshold value is reached. This is set on each DataNode via the dfs.datanode.failed.volumes.tolerated property; it defaults to 0, meaning that any volume failure will shut down the DataNode; on a production cluster where DataNodes typically have 6, 8, or 12 disks, setting this parameter to 1 or 2 is typically the best practice.',NULL,'0','0','0','','0','','0','','0','','fcf791b6d0594dbb9ddfc3f93bc94825',''), ('17474','{20693}=0','Hadoop: ResourceManager: Cluster has no active NodeManagers','','0','4','Cluster is unable to execute any jobs without at least one NodeManager.',NULL,'0','0','0','','0','','0','','0','','eb02a30f45394e4d84d9d7239002ed40',''), ('17475','{20694}>0','Hadoop: ResourceManager: Cluster has unhealthy NodeManagers','','0','3','YARN considers any node with disk utilization exceeding the value specified under the property yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage (in yarn-site.xml) to be unhealthy. Ample disk space is critical to ensure uninterrupted operation of a Hadoop cluster, and large numbers of unhealthyNodes (the number to alert on depends on the size of your cluster) should be quickly investigated and resolved.',NULL,'0','0','0','','0','','0','','0','','0f35a0fa7a404559a3df225b906f0653',''), ('17476','{20695}=1','Hadoop: ResourceManager: Failed to fetch ResourceManager API page','','0','2','Zabbix has not received any data for items for the last 30 minutes.',NULL,'0','0','0','','0','','1','','0','Hadoop: ResourceManager: Failed to fetch ResourceManager API page (or no data for 30m)','7d4d026992344602a199966a8308a571',''), ('17477','{20696}<10m','Hadoop: ResourceManager: Service has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Hadoop: ResourceManager: Service has been restarted (uptime < 10m)','ade7cc30a4184ef89ed896bae56e0b18',''), ('17478','{20697}>{$HADOOP.NAMENODE.RESPONSE_TIME.MAX.WARN}','Hadoop: NameNode: Service response time is too high','','0','2','',NULL,'0','0','0','','0','','1','','0','Hadoop: NameNode: Service response time is too high (over {$HADOOP.NAMENODE.RESPONSE_TIME.MAX.WARN} for 5m)','4e4a6ab28fe5492d8fe4e291b8a586dc',''), ('17479','{20698}>{$HADOOP.RESOURCEMANAGER.RESPONSE_TIME.MAX.WARN}','Hadoop: ResourceManager: Service response time is too high','','0','2','',NULL,'0','0','0','','0','','1','','0','Hadoop: ResourceManager: Service response time is too high (over {$HADOOP.RESOURCEMANAGER.RESPONSE_TIME.MAX.WARN} for 5m)','e8e55f4c7e9e4823927a8c1345d3b941',''), ('17480','{20699}=0','Hadoop: NameNode: Service is unavailable','','0','3','',NULL,'0','0','0','','0','','1','','0','','f7e16c4ec91e4c04b13b73ee817c71d7',''), ('17481','{20700}=0','Hadoop: ResourceManager: Service is unavailable','','0','3','',NULL,'0','0','0','','0','','1','','0','','a9ac7ede0c004fe18ab9f1fee36ad2b2',''), ('17482','{20701}<>"Live"','Hadoop: {#HOSTNAME}: DataNode has state {ITEM.VALUE}.','','0','3','The state is different from normal.',NULL,'0','2','0','','0','','0','','0','','9f657289a04041e5bcaa1947f62f607d',''), ('17483','{20702}=1','Hadoop: {#HOSTNAME}: Failed to fetch DataNode API page','','0','2','Zabbix has not received any data for items for the last 30 minutes.',NULL,'0','2','0','','0','','1','','0','Hadoop: {#HOSTNAME}: Failed to fetch DataNode API page (or no data for 30m)','3eccb9daf76f4bde88b424cf6f2d21f6',''), ('17484','{20703}<10m','Hadoop: {#HOSTNAME}: Service has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','2','0','','0','','1','','0','Hadoop: {#HOSTNAME}: Service has been restarted (uptime < 10m)','e40298d300764251abcf93d5df3d9a67',''), ('17485','{20704}<>"RUNNING"','Hadoop: {#HOSTNAME}: NodeManager has state {ITEM.VALUE}.','','0','3','The state is different from normal.',NULL,'0','2','0','','0','','0','','0','','8752a292093347fcb16d3f06dd97c5c3',''), ('17486','{20705}=1','Hadoop: {#HOSTNAME}: Failed to fetch NodeManager API page','','0','2','Zabbix has not received any data for items for the last 30 minutes.',NULL,'0','2','0','','0','','1','','0','Hadoop: {#HOSTNAME}: Failed to fetch NodeManager API page (or no data for 30m)','6f8a6308d4334dd9bebe7af2fa3fb831',''), ('17487','{20706}<10m','Hadoop: {#HOSTNAME}: Service has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','2','0','','0','','1','','0','Hadoop: {#HOSTNAME}: Service has been restarted (uptime < 10m)','05f3cf8ed34f4a708df508f0e50e119d',''), ('17488','{20707}>0','Apache Kafka: Unclean leader election detected','','0','3','Unclean leader elections occur when there is no qualified partition leader among Kafka brokers. If Kafka is configured to allow an unclean leader election, a leader is chosen from the out-of-sync replicas, and any messages that were not synced prior to the loss of the former leader are lost forever. Essentially, unclean leader elections sacrifice consistency for availability.',NULL,'0','0','0','','0','','0','','0','','d984a7834d7846f787ca6649bacebf7b',''), ('17489','{20708} > 0','Apache Kafka: One or more partitions have no leader','','0','2','Any partition without an active leader will be completely inaccessible, and both consumers and producers of that partition will be blocked until a leader becomes available.',NULL,'0','0','0','','0','','0','','0','','5eef377125814830be8167d4d74b0d05',''), ('17490','{20709} > 0','Apache Kafka: There are offline log directories','','0','2','The offline log directory count metric indicate the number of log directories which are offline (due to a hardware failure for example) so that the broker cannot store incoming messages anymore.',NULL,'0','0','0','','0','','0','','0','','03fa9ceadba34643b4d3baa7be7c6bb7',''), ('17491','{20710}=1','Apache Kafka: Failed to fetch info data','','0','2','Zabbix has not received data for items for the last 15 minutes',NULL,'0','0','0','','0','','0','','0','Apache Kafka: Failed to fetch info data (or no data for 15m)','39bfa825d88145d5a687ba07f6b5596e',''), ('17492','{20711}<{$KAFKA.NET_PROC_AVG_IDLE.MIN.WARN}','Apache Kafka: Network processor average idle percent is too low','','0','3','The network processor idle ratio metric indicates the percentage of time the network processor are not in use. The lower this number, the more loaded the broker is.',NULL,'0','0','0','','0','','0','','0','Apache Kafka: Network processor average idle percent is too low (under {$KAFKA.NET_PROC_AVG_IDLE.MIN.WARN} for 15m)','91c95d4543ae436d986881e76f090aec',''), ('17493','{20712}<10m','Apache Kafka: Kafka service has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Apache Kafka: Kafka service has been restarted (uptime < 10m)','b2fa6148a2b24fa6890b4078c235dcd8',''), ('17494','{23225}<>{23226} and length({23227})>0','Apache Kafka: Version has changed','','0','1','The Kafka version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Apache Kafka: Version has changed (new version: {ITEM.VALUE})','92ecd7eb1eae49d9886ecac7b8f2084a',''), ('17495','{20715}<{$KAFKA.REQUEST_HANDLER_AVG_IDLE.MIN.WARN}','Apache Kafka: Request handler average idle percent is too low','','0','3','The request handler idle ratio metric indicates the percentage of time the request handlers are not in use. The lower this number, the more loaded the broker is.',NULL,'0','0','0','','0','','0','','0','Apache Kafka: Request handler average idle percent is too low (under {$KAFKA.REQUEST_HANDLER_AVG_IDLE.MIN.WARN} for 15m)','8f070e06520b4b299fcfffa952d318fc',''), ('17496','{20716}>0','Apache Kafka: There are partitions under the min ISR','','0','3','The Under min ISR partitions metric displays the number of partitions, where the number of In-Sync Replicas (ISR) is less than the minimum number of in-sync replicas specified. The two most common causes of under-min ISR partitions are that one or more brokers is unresponsive, or the cluster is experiencing performance issues and one or more brokers are falling behind.',NULL,'0','0','0','','0','','0','','0','','b401a90e75cd4a478d4f8b8cc4f15dc2',''), ('17497','{20717}>0','Apache Kafka: There are under replicated partitions','','0','3','The Under replicated partitions metric displays the number of partitions that do not have enough replicas to meet the desired replication factor. A partition will also be considered under-replicated if the correct number of replicas exist, but one or more of the replicas have fallen significantly behind the partition leader. The two most common causes of under-replicated partitions are that one or more brokers is unresponsive, or the cluster is experiencing performance issues and one or more brokers have fallen behind.',NULL,'0','0','0','','0','','0','','0','','0ecd8b4b3db6489b83d4a1f78faee03c',''), ('17498','{20718}=0','Apache Kafka: Broker is not connected to ZooKeeper','','0','3','',NULL,'0','0','0','','0','','0','','0','','423144ac14694a71b9ab563eacfa840d',''), ('17499','{23275}<>{23276} and length({23277})>0','Apache Tomcat: Version has been changed','','0','1','The Tomcat version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Apache Tomcat: Version has changed (new version: {ITEM.VALUE})','152d235652914aa2af78334385334214',''), ('17500','{20721} = 1','Apache Tomcat: {#JMXVALUE}: Gzip compression is disabled','','0','1','gzip compression is disabled for connector {#JMXVALUE}.',NULL,'0','2','0','','0','','1','','0','','7d707de73a164f1db6b69e4dcb8c6ae9',''), ('17501','{20722}>{20723}*{$TOMCAT.THREADS.MAX.PCT:"{#JMXNAME}"}/100','Apache Tomcat: {#JMXNAME}: Busy worker threads count is high','','0','4','When current threads busy counter reaches the limit, no more requests could be handled, and the application chokes.',NULL,'0','2','0','','0','','0','','0','Apache Tomcat: {#JMXNAME}: Busy worker threads count are more than {$TOMCAT.THREADS.MAX.PCT:"{#JMXNAME}"}% of the limit for {$TOMCAT.THREADS.MAX.TIME:"{#JMXNAME}"}','7a15296553a447f6aebf4958631b6704',''), ('17502','{20724}/{20725}*100>{$VAULT.OPEN.FDS.MAX.WARN}','HashiCorp Vault: Current number of open files is too high','','0','2','',NULL,'0','0','0','','0','','0','','0','HashiCorp Vault: Current number of open files is too high (over {$VAULT.OPEN.FDS.MAX.WARN}% for 5m)','ebe6f65e82ed4f00bd7c5be30841a25c',''), ('17503','length({20726})>0','HashiCorp Vault: Failed to get metrics','','0','2','',NULL,'0','0','0','','0','','0','','0','HashiCorp Vault: Failed to get metrics (error: {ITEM.VALUE})','a43a4139d225461289d16b7a78002cb0',''), ('17504','{20727}=0','HashiCorp Vault: Vault server is not responding','','0','4','',NULL,'0','0','0','','0','','0','','0','','93b4ae5089834a87ae41091fc9773501',''), ('17505','{20728}=1','HashiCorp Vault: Vault server is sealed','','0','3','https://www.vaultproject.io/docs/concepts/seal',NULL,'0','0','0','','0','','0','','0','','3f4ebf7094914c219ac32132400f90c8',''), ('17506','{23278}<>{23279} and length({23280})>0','HashiCorp Vault: Version has changed','','0','1','Vault version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','HashiCorp Vault: Version has changed (new version: {ITEM.VALUE})','ee9a561165b847c2a0719a767e5c4fe9',''), ('17507','({20731}-{23029})>{$VAULT.LEADERSHIP.SETUP.FAILED.MAX.WARN}','HashiCorp Vault: High frequency of leadership setup failures','','0','3','There have been more than {$VAULT.LEADERSHIP.SETUP.FAILED.MAX.WARN} Vault leadership setup failures in the past 1h.',NULL,'0','0','0','','0','','0','','0','HashiCorp Vault: High frequency of leadership setup failures (over {$VAULT.LEADERSHIP.SETUP.FAILED.MAX.WARN} for 1h)','c68ab0c784314291bde1cc8693fd5959',''), ('17508','({20732}-{23030})>{$VAULT.LEADERSHIP.LOSSES.MAX.WARN}','HashiCorp Vault: High frequency of leadership losses','','0','3','There have been more than {$VAULT.LEADERSHIP.LOSSES.MAX.WARN} Vault leadership losses in the past 1h.',NULL,'0','0','0','','0','','0','','0','HashiCorp Vault: High frequency of leadership losses (over {$VAULT.LEADERSHIP.LOSSES.MAX.WARN} for 1h)','8d7f4f51272a4ce5a3a7ab9642e51d63',''), ('17509','({20733}-{23031})>{$VAULT.LEADERSHIP.STEPDOWNS.MAX.WARN}','HashiCorp Vault: High frequency of leadership step downs','','0','3','There have been more than {$VAULT.LEADERSHIP.STEPDOWNS.MAX.WARN} Vault leadership step downs in the past 1h.',NULL,'0','0','0','','0','','0','','0','HashiCorp Vault: High frequency of leadership step downs (over {$VAULT.LEADERSHIP.STEPDOWNS.MAX.WARN} for 1h)','5f2895eb5a94441f858c573584ec8b19',''), ('17510','{20734}<10m','HashiCorp Vault: Service has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','HashiCorp Vault: Service has been restarted (uptime < 10m)','a60eed70ecbc44fa935ec87d83fe4793',''), ('17511','{20735}=1 and {20736}<{$VAULT.TOKEN.TTL.MIN.CRIT}','HashiCorp Vault: Token [{#TOKEN_NAME}] will expire soon','','0','3','',NULL,'0','2','0','','0','','0','','0','HashiCorp Vault: Token [{#TOKEN_NAME}] will expire soon (less than {$VAULT.TOKEN.TTL.MIN.CRIT})','f4f0db7e26d9470a86d11e86d1ae26e2',''), ('17512','{20737}=1 and {20738}<{$VAULT.TOKEN.TTL.MIN.WARN}','HashiCorp Vault: Token [{#TOKEN_NAME}] will expire soon','','0','2','',NULL,'0','2','0','','0','','0','','0','HashiCorp Vault: Token [{#TOKEN_NAME}] will expire soon (less than {$VAULT.TOKEN.TTL.MIN.WARN})','0e2143a2a46d44778db34ac9af69bbfc',''), ('17513','length({20739})>0','HashiCorp Vault: Token [{#TOKEN_NAME}] lookup error occurred','','0','2','',NULL,'0','2','0','','0','','0','','0','','8cd5d903d4e74974a8469554b737ee3d',''), ('17515','{20741}=0','VMware Hypervisor: Hypervisor is down','','0','3','The service is unavailable or is not accepting ICMP pings.',NULL,'0','0','0','','0','','1','','0','','ab84a61566a5402db59efd40d20714a5',''), ('17518','{20744}=3','VMware Hypervisor: The {$VMWARE.HV.UUID} health is Red','','0','4','One or more components in the appliance might be in an unusable status and the appliance might soon become unresponsive. Security patches might be available.',NULL,'0','0','0','','0','','0','','0','','378511e0f1794874a68aef1b43561ee5',''), ('17519','{20745}=2','VMware Hypervisor: The {$VMWARE.HV.UUID} health is Yellow','','0','3','One or more components in the appliance might soon become overloaded.',NULL,'0','0','0','','0','','0','','0','','ef6ca4d7033c4c8cb963eb7d493b3c7b',''), ('17520','{20746}<10m','VMware Hypervisor: Hypervisor has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','VMware Hypervisor: Hypervisor has been restarted (uptime < 10m)','01d316b0a8cf4998b344f0c4ef1daa32',''), ('17521','{20747} * 100 / {20748} > {$ZOOKEEPER.FILE_DESCRIPTORS.MAX.WARN}','Zookeeper: Too many file descriptors used','','0','2','Number of file descriptors used more than {$ZOOKEEPER.FILE_DESCRIPTORS.MAX.WARN}% of the available number of file descriptors.',NULL,'0','0','0','','0','','0','','0','Zookeeper: Too many file descriptors used (over {$ZOOKEEPER.FILE_DESCRIPTORS.MAX.WARN}% for 5 min)','53a97045bfd8473899849e429e3e7017',''), ('17522','{20749}>{$ZOOKEEPER.OUTSTANDING_REQ.MAX.WARN}','Zookeeper: Too many queued requests','','0','3','Number of queued requests in the server. This goes up when the server receives more requests than it can process.',NULL,'0','0','0','','0','','1','','0','Zookeeper: Too many queued requests (over {$ZOOKEEPER.OUTSTANDING_REQ.MAX.WARN}% for 5 min)','ac27f2d8b34546d1bdc6d7ab858c04a1',''), ('17523','{23319}<>{23320} and length({23321})>0','Zookeeper: Server mode has changed','','0','1','Zookeeper node state has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Zookeeper: Server mode has changed (new mode: {ITEM.VALUE})','494624353875401eaf65f7eb0273ca35',''), ('17524','{20752}=1','Zookeeper: Failed to fetch info data','','0','2','Zabbix has not received data for items for the last 10 minutes',NULL,'0','0','0','','0','','1','','0','Zookeeper: Failed to fetch info data (or no data for 10m)','db35b5c75fc543ef8ffe766a0671fd6d',''), ('17526','{23322}<>{23323} and length({23324})>0','Zookeeper: Version has changed','','0','1','Zookeeper version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Zookeeper: Version has changed (new version: {ITEM.VALUE})','2a091bcfafe84ea9aee5238ce5e25651',''), ('17527','{20756} < {20757}-1','Zookeeper: Too few active followers','','0','3','The number of followers should equal the total size of your ZooKeeper ensemble, minus 1 (the leader is not included in the follower count). If the ensemble fails to maintain quorum, all automatic failover features are suspended.',NULL,'0','2','0','','0','','0','','0','','4b0df830eef84e78a04a6980b627b8d0',''), ('17528','{20758}>{$ZOOKEEPER.PENDING_SYNCS.MAX.WARN}','Zookeeper: Too many pending syncs','','0','3','',NULL,'0','2','0','','0','','1','','0','Zookeeper: Too many pending syncs (over {$ZOOKEEPER.PENDING_SYNCS.MAX.WARN}% for 5 min)','004e26cca4934d1992b3c894f36b5643',''), ('17529','{28393}>{$ZABBIX.PROXY.UTIL.MAX:"availability manager"}','Zabbix proxy: Utilization of availability manager processes is high','','0','3','Indicates potential performance issues with the availability manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28393}<{$ZABBIX.PROXY.UTIL.MIN:"availability manager"}','0','','0','','0','Zabbix proxy: Utilization of availability manager processes over {$ZABBIX.PROXY.UTIL.MAX:"availability manager"}%','77e66d2f6b0e48fa8a7ec5dd213eab35',''), ('17531','{33820}>{$ZABBIX.SERVER.UTIL.MAX:"availability manager"}','Zabbix server: Utilization of availability manager processes is high','','0','3','Indicates potential performance issues with the availability manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33820}<{$ZABBIX.SERVER.UTIL.MIN:"availability manager"}','0','','0','','0','Zabbix server: Utilization of availability manager processes over {$ZABBIX.SERVER.UTIL.MAX:"availability manager"}%','ae06acfebdb3452b88359f1634c53876',''), ('17532','{33827}>{$ZABBIX.SERVER.UTIL.MAX:"history poller"}','Zabbix server: Utilization of history poller processes is high','','0','3','Indicates potential performance issues with the history poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33827}<{$ZABBIX.SERVER.UTIL.MIN:"history poller"}','0','','0','','0','Zabbix server: Utilization of history poller processes over {$ZABBIX.SERVER.UTIL.MAX:"history poller"}%','655c59a6151d4ce985a833d9f91efc2a',''), ('17533','{28362}>{$ZABBIX.PROXY.UTIL.MAX:"availability manager"}','Zabbix proxy: Utilization of availability manager processes is high','','0','3','Indicates potential performance issues with the availability manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28362}<{$ZABBIX.PROXY.UTIL.MIN:"availability manager"}','0','','0','','0','Zabbix proxy: Utilization of availability manager processes over {$ZABBIX.PROXY.UTIL.MAX:"availability manager"}%','5a8375a8eee642f2940ed813ee062336',''), ('17535','{33722}>{$ZABBIX.SERVER.UTIL.MAX:"availability manager"}','Zabbix server: Utilization of availability manager processes is high','','0','3','Indicates potential performance issues with the availability manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33722}<{$ZABBIX.SERVER.UTIL.MIN:"availability manager"}','0','','0','','0','Zabbix server: Utilization of availability manager processes over {$ZABBIX.SERVER.UTIL.MAX:"availability manager"}%','048c947b3b0a440b80ad6ebfc1a43f10',''), ('17536','{33729}>{$ZABBIX.SERVER.UTIL.MAX:"history poller"}','Zabbix server: Utilization of history poller processes is high','','0','3','Indicates potential performance issues with the history poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33729}<{$ZABBIX.SERVER.UTIL.MIN:"history poller"}','0','','0','','0','Zabbix server: Utilization of history poller processes over {$ZABBIX.SERVER.UTIL.MAX:"history poller"}%','9a76cde4aaea4e8eb48f725e9653037b',''), ('17539','{23386}<>{23387} and length({23388})>0','Apache Cassandra: Version has changed','','0','1','Cassandra version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Apache Cassandra: Version has changed (new version: {ITEM.VALUE})','855abdc321c74b6baf672c67f6483c1c',''), ('17540','{20771}>{$CASSANDRA.PENDING_TASKS.MAX.WARN}','Apache Cassandra: Many pending tasks','','0','2','',NULL,'0','0','0','','0','','0','','0','Apache Cassandra: Many pending tasks (over {$CASSANDRA.PENDING_TASKS.MAX.WARN} for 15m)','885035b2fc804615a54bf2eaca19beee',''), ('17541','{20772}>{$CASSANDRA.PENDING_TASKS.MAX.HIGH}','Apache Cassandra: Too many pending tasks','','0','3','',NULL,'0','0','0','','0','','0','','0','Apache Cassandra: Too many pending tasks (over {$CASSANDRA.PENDING_TASKS.MAX.HIGH} for 15m)','f6696c41e9d24144a1a95f74c94728ae',''), ('17542','{20773}>0','Apache Cassandra: Too many storage exceptions','','0','2','',NULL,'0','0','0','','0','','0','','0','','c7980b33dc794a70a116bd12219f66c3',''), ('17543','{20774}=1','Apache Cassandra: Failed to fetch info data','','0','2','Zabbix has not received data for items for the last 15 minutes',NULL,'0','0','0','','0','','0','','0','Apache Cassandra: Failed to fetch info data (or no data for 15m)','bda8e216175044ed829670b6bd272785',''), ('17544','{20775}>0','Apache Cassandra: There are down nodes in cluster','','0','3','',NULL,'0','0','0','','0','','0','','0','','42b527f9cf4e444b82575f2ab48926c0',''), ('17553','{20784} > 18000000','PostgreSQL: Oldest xid is too big','','0','3','',NULL,'0','0','0','','0','','0','','0','','2a5c11571d9d46f093ed9081f9d51504',''), ('17554','{20785} > {#THRESHOLD_HI_CRIT}','Arista: {#SENSOR_INFO}: Fan speed is above the critical threshold','','0','4','This trigger uses fan sensor values defined in the device.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Arista: {#SENSOR_INFO}: Fan speed is above the critical threshold of {#THRESHOLD_HI_CRIT}rpm for 5m','660fd32236464fd69409099c67478ff5',''), ('17555','{20786} > {#THRESHOLD_HI_WARN}','Arista: {#SENSOR_INFO}: Fan speed is above the warning threshold','','0','2','This trigger uses fan sensor values defined in the device.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Arista: {#SENSOR_INFO}: Fan speed is above the warning threshold of {#THRESHOLD_HI_WARN}rpm for 5m','b1131f42627047ca9629693b91d9185e',''), ('17556','{20787} < {#THRESHOLD_LO_CRIT}','Arista: {#SENSOR_INFO}: Fan speed is below the critical threshold','','0','4','This trigger uses fan sensor values defined in the device.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Arista: {#SENSOR_INFO}: Fan speed is below the critical threshold of {#THRESHOLD_LO_CRIT}rpm for 5m','0cd8e252a77b4c90a155e57aab963e5e',''), ('17557','{20788} < {#THRESHOLD_LO_WARN}','Arista: {#SENSOR_INFO}: Fan speed is below the warning threshold','','0','2','This trigger uses fan sensor values defined in the device.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Arista: {#SENSOR_INFO}: Fan speed is below the warning threshold of {#THRESHOLD_LO_WARN}rpm for 5m','d37c360fea9143bab6ff07699ed4acb1',''), ('17558','{20789} > {#THRESHOLD_HI_CRIT}','Arista: {#SENSOR_INFO}: Temperature is above the critical threshold','','0','4','This trigger uses temperature sensor values defined in the device.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Arista: {#SENSOR_INFO}: Temperature is above the critical threshold of {#THRESHOLD_HI_CRIT}°C for 5m','791d55e21828472e93c97d8fa4f96d26',''), ('17559','{20790} > {#THRESHOLD_HI_WARN}','Arista: {#SENSOR_INFO}: Temperature is above the warning threshold','','0','2','This trigger uses temperature sensor values defined in the device.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Arista: {#SENSOR_INFO}: Temperature is above the warning threshold of {#THRESHOLD_HI_WARN}°C for 5m','c65457a8a6d4427995626ff9ff12e339',''), ('17560','{20791} < {#THRESHOLD_LO_CRIT}','Arista: {#SENSOR_INFO}: Temperature is below the critical threshold','','0','4','This trigger uses temperature sensor values defined in the device.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Arista: {#SENSOR_INFO}: Temperature is below the critical threshold of {#THRESHOLD_LO_CRIT}°C for 5m','b521cd99d9fb4f6f9d1241ac33c01a86',''), ('17561','{20792} < {#THRESHOLD_LO_WARN}','Arista: {#SENSOR_INFO}: Temperature is below the warning threshold','','0','2','This trigger uses temperature sensor values defined in the device.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Arista: {#SENSOR_INFO}: Temperature is below the warning threshold of {#THRESHOLD_LO_WARN}°C for 5m','750888bd98fa475dba03591945416b89',''), ('17562','{20793} > {#THRESHOLD_HI_CRIT}','Arista: {#SENSOR_INFO}: Voltage is above the critical threshold','','0','4','This trigger uses voltage sensor values defined in the device.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Arista: {#SENSOR_INFO}: Voltage is above the critical threshold of {#THRESHOLD_HI_CRIT}V for 5m','1c78dea0380a4bf68b05c1323a208c3a',''), ('17563','{20794} > {#THRESHOLD_HI_WARN}','Arista: {#SENSOR_INFO}: Voltage is above the warning threshold','','0','2','This trigger uses voltage sensor values defined in the device.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Arista: {#SENSOR_INFO}: Voltage is above the warning threshold of {#THRESHOLD_HI_WARN}V for 5m','08b4f59d66ea45eaa95426a27586c4bd',''), ('17564','{20795} < {#THRESHOLD_LO_CRIT}','Arista: {#SENSOR_INFO}: Voltage is below the critical threshold','','0','4','This trigger uses voltage sensor values defined in the device.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Arista: {#SENSOR_INFO}: Voltage is below the critical threshold of {#THRESHOLD_LO_CRIT}V for 5m','d2df35a764234716a286a8019e6c9411',''), ('17565','{20796} < {#THRESHOLD_LO_WARN}','Arista: {#SENSOR_INFO}: Voltage is below the warning threshold','','0','2','This trigger uses voltage sensor values defined in the device.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Arista: {#SENSOR_INFO}: Voltage is below the warning threshold of {#THRESHOLD_LO_WARN}V for 5m','481908babd3f44b3a73f3e0a628fe6d4',''), ('17574','{31302}>{$TEMP_CRIT} or {31303}={$TEMP_CRIT_STATUS}','Extreme EXOS: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','0','1','{31304}<{$TEMP_CRIT}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Extreme EXOS: Temperature is above critical threshold: >{$TEMP_CRIT}','132d3e7a1fab4cc08fcbb12eef4e9494',''), ('17575','{20824}={$CHARGE.STATE.CRIT}','Morningstar ProStar MPPT: Battery: Device charge in critical state','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','fe4863fdd4d64e1c977328bd3d0f687f',''), ('17576','{20825}={$CHARGE.STATE.WARN}','Morningstar ProStar MPPT: Battery: Device charge in warning state','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','4d064e4877474d72b85c9cdfb7b09dad',''), ('17577','{20826}={$LOAD.STATE.CRIT:"lvd"} or {20826}={$LOAD.STATE.CRIT:"fault"}','Morningstar ProStar MPPT: Load: Device load in critical state','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','a88025c5e5a748e3a6dfa01685ba075b',''), ('17578','{20827}={$LOAD.STATE.WARN:"lvdWarning"} or {20827}={$LOAD.STATE.WARN:"override"}','Morningstar ProStar MPPT: Load: Device load in warning state','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','9ab107b39b874fed83d09e7c1964a699',''), ('17579','{20828}=2','Morningstar ProStar MPPT: Status: Device has "arrayCurrentOffset" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','a2d0ab5150dd4bad8b5ec4f2c6aa13f8',''), ('17580','{20829}=2','Morningstar ProStar MPPT: Status: Device has "batterySenseDisconnected" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','cc6a15f16fd8470a9dcd9a9e01cba61c',''), ('17581','{20830}=2','Morningstar ProStar MPPT: Status: Device has "batterySenseOutOfRange" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','55d4726d9b9047c79cf690353d950797',''), ('17582','{20831}=2','Morningstar ProStar MPPT: Status: Device has "controllerReset" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','7f015198395042219666cde4458d407c',''), ('17583','{20832}=2','Morningstar ProStar MPPT: Status: Device has "currentLimit" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','48339339e5a7465fbc67266998c9a8fe',''), ('17584','{20833}=2','Morningstar ProStar MPPT: Status: Device has "currentMeasurementError" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','c88074037099498c896bb4793e04fea3',''), ('17585','{20834}=2','Morningstar ProStar MPPT: Status: Device has "eepromAccessFailure" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','cecd8ee17e5143ffb46495e927750c82',''), ('17586','{20835}=2','Morningstar ProStar MPPT: Status: Device has "fp10SupplyOutOfRange" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','4affa15e1c1c42459ea8dd6820d1c008',''), ('17587','{20836}=2','Morningstar ProStar MPPT: Status: Device has "heatsinkTempLimit" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','41e4225072a3468696cfb534c65b9736',''), ('17588','{20837}=2','Morningstar ProStar MPPT: Status: Device has "heatsinkTempSensorOpen" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','5d269997a57d44ceb545e751e8e2d919',''), ('17589','{20838}=2','Morningstar ProStar MPPT: Status: Device has "heatsinkTempSensorShorted" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','a8342a4e2fff40a7b830086dec303fd9',''), ('17590','{20839}=2','Morningstar ProStar MPPT: Status: Device has "hightInputVoltageLimit" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','32e5b7ae81ce4ebea9b05ff7ab411e5a',''), ('17591','{20840}=2','Morningstar ProStar MPPT: Status: Device has "inductorTempLimit" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','c10d27c1d9d54b8981a639e7bf0dfc02',''), ('17592','{20841}=2','Morningstar ProStar MPPT: Status: Device has "inductorTempSensorOpen" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','9f80959684b34b6498a1634097cd0d22',''), ('17593','{20842}=2','Morningstar ProStar MPPT: Status: Device has "inductorTempSensorShorted" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','cc735ddcc98e4c099bb770e2b2a171b5',''), ('17594','{20843}=2','Morningstar ProStar MPPT: Status: Device has "loadCurrentOffset" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','217935cd6c7547bc95f5af51b3e643d4',''), ('17595','{20844}=2','Morningstar ProStar MPPT: Status: Device has "loadLvd" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','cb05261f120240bf944b304ffc4979e6',''), ('17596','{20845}=2','Morningstar ProStar MPPT: Status: Device has "logTimeout" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','1ed1de932e084ce5ba03747bdd8ca4e5',''), ('17597','{20846}=2','Morningstar ProStar MPPT: Status: Device has "mosfetOpen" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','8824f80f1ef245508d6d0d660e3cabf1',''), ('17598','{20847}=2','Morningstar ProStar MPPT: Status: Device has "p12SupplyOutOfRange" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','59569aaebf32403c9fd310f6b26845b0',''), ('17599','{20848}=2','Morningstar ProStar MPPT: Status: Device has "p33SupplyOutOfRange" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','4775d3a7b843455eb404661c070be092',''), ('17600','{20849}=2','Morningstar ProStar MPPT: Status: Device has "rtsDisconnected" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','2015d2b876564ad79699a23fc6b60f07',''), ('17601','{20850}=2','Morningstar ProStar MPPT: Status: Device has "rtsShorted" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','cce1eb2bee094a3b9a993ec2d60d182b',''), ('17602','{20851}=2','Morningstar ProStar MPPT: Status: Device has "tb5v" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','7a07b757660a4c9a879ac03a94832720',''), ('17603','{20852}=2','Morningstar ProStar MPPT: Status: Device has "uncalibrated" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','39205fc6d2cd4888994cccb016b4b2f8',''), ('17604','{20853}=2','Morningstar ProStar MPPT: Status: Device has "arrayHvd" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','8322f8ca8e2e462a8799dc399f17ba27',''), ('17605','{20854}=2','Morningstar ProStar MPPT: Status: Device has "batteryHvd" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','6a138cd2af754bb3a22173e8da28b254',''), ('17606','{20855}=2','Morningstar ProStar MPPT: Status: Device has "batteryLowVoltageDisconnect" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','8e42cf21ec10409da840021bfd26f74c',''), ('17607','{20856}=2','Morningstar ProStar MPPT: Status: Device has "customSettingsEdit" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','d1112d9828064a879d56626ac6339dbf',''), ('17608','{20857}=2','Morningstar ProStar MPPT: Status: Device has "dipSwitchChanged" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','75a67f17a33e41eea34585fade6319ef',''), ('17609','{20858}=2','Morningstar ProStar MPPT: Status: Device has "localTempSensorDamaged" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','4502112383524f0499ea13e6f83ce789',''), ('17610','{20859}=2','Morningstar ProStar MPPT: Status: Device has "mosfetSShorted" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','f1489dc1f8574895bd233b14ce080748',''), ('17611','{20860}=2','Morningstar ProStar MPPT: Status: Device has "overcurrent" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','4ea903d3e8644ddaa5309eaa9715b894',''), ('17612','{20861}=2','Morningstar ProStar MPPT: Status: Device has "rtsNoLongerValid" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','e12a29ec16ea423cb69ca4ce460f201b',''), ('17613','{20862}=2','Morningstar ProStar MPPT: Status: Device has "rtsShorted" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','3ec4307bb2c444fc8eca27f9b7a136e2',''), ('17614','{20863}=2','Morningstar ProStar MPPT: Status: Device has "slaveTimeout" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','915c00d98e144ee7a9a2d50d0bd474c0',''), ('17615','{20864}=2','Morningstar ProStar MPPT: Status: Device has "software" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','9aac314eef594a8d86fd4b88308428e5',''), ('17616','{20865}=2','Morningstar ProStar MPPT: Status: Device has "customSettingsEdit" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','93750f768ba94f1bb9302fc17c76faeb',''), ('17617','{20866}=2','Morningstar ProStar MPPT: Status: Device has "dipSwitchChanged" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','456e2c36369f4519b2c80bcfe1acb4b0',''), ('17618','{20867}=2','Morningstar ProStar MPPT: Status: Device has "externalShortCircuit" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','359df17c40684187b7ae92c8aa0c9624',''), ('17619','{20868}=2','Morningstar ProStar MPPT: Status: Device has "highTempDisconnect" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','6dadf09064304f4381ad9ed0436e562a',''), ('17620','{20869}=2','Morningstar ProStar MPPT: Status: Device has "loadHvd" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','bc41145ae8074290913a47cc3fd11e1e',''), ('17621','{20870}=2','Morningstar ProStar MPPT: Status: Device has "mosfetShorted" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','8c8a7021928e4bf78b6309574e298876',''), ('17622','{20871}=2','Morningstar ProStar MPPT: Status: Device has "overcurrent" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','b7d3f05837bd4d788d14f1aaf18b0482',''), ('17623','{20872}=2','Morningstar ProStar MPPT: Status: Device has "software" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','801728740c1948b1a751469e6443daab',''), ('17624','({32302}>0 and {32302}<10m) or ({32302}=0 and {32303}<10m)','Morningstar ProStar MPPT: Status: Device has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Morningstar ProStar MPPT: Status: Device has been restarted (uptime < 10m)','ca65a39c019046c29a522a6ca93ceb75',''), ('17625','{20874}=1','Morningstar ProStar MPPT: Status: Failed to fetch data','','0','2','Zabbix has not received data for items for the last 5 minutes.',NULL,'0','0','0','','0','','1','','0','Morningstar ProStar MPPT: Status: Failed to fetch data (or no data for 5m)','59cbcaaee8304b38a1144b3abf40bd9d',''), ('17626','{20875}>{$BATTERY.TEMP.MAX.CRIT}','Morningstar ProStar MPPT: Temperature: Critically high battery temperature','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar ProStar MPPT: Temperature: Critically high battery temperature (over {$BATTERY.TEMP.MAX.CRIT}C for 5m)','c74e1d3be1c24bde986bbce068db4bb8',''), ('17627','{20876}<{$BATTERY.TEMP.MIN.CRIT}','Morningstar ProStar MPPT: Temperature: Critically low battery temperature','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar ProStar MPPT: Temperature: Critically low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m)','0c2180ae5deb41adb503e37bf91c34e2',''), ('17628','{20877}>{$BATTERY.TEMP.MAX.WARN}','Morningstar ProStar MPPT: Temperature: High battery temperature','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar ProStar MPPT: Temperature: High battery temperature (over {$BATTERY.TEMP.MAX.WARN}C for 5m)','1ab91d781c734f1eb2b9552f6dee9370',''), ('17629','{20878}<{$BATTERY.TEMP.MIN.WARN}','Morningstar ProStar MPPT: Temperature: Low battery temperature','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','6ec855dc6a5c42a79f1f40e14655418a',''), ('17630','{20879}>{#VOLTAGE.MAX.CRIT}','Morningstar ProStar MPPT: Battery: Critically high battery voltage','','0','4','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar ProStar MPPT: Battery: Critically high battery voltage (over {#VOLTAGE.MAX.CRIT}V for 5m)','402f73ca5b8d412689a7e715223e890d',''), ('17631','{20880}<{#VOLTAGE.MIN.CRIT}','Morningstar ProStar MPPT: Battery: Critically low battery voltage','','0','4','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar ProStar MPPT: Battery: Critically low battery voltage (below {#VOLTAGE.MIN.CRIT}V for 5m)','753a0d25832d434186f586f895124f31',''), ('17632','{20881}>{#VOLTAGE.MAX.WARN}','Morningstar ProStar MPPT: Battery: High battery voltage','','0','2','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar ProStar MPPT: Battery: High battery voltage (over {#VOLTAGE.MAX.WARN}V for 5m)','66e1fdfbfa5740dfa8945626f7f8be78',''), ('17633','{20882}<{#VOLTAGE.MIN.WARN}','Morningstar ProStar MPPT: Battery: Low battery voltage','','0','2','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar ProStar MPPT: Battery: Low battery voltage (below {#VOLTAGE.MIN.WARN}V for 5m)','c9f3d03ce06641eb9b184f511a3a0341',''), ('17634','{20883}={$CHARGE.STATE.CRIT}','Morningstar ProStar PWM: Battery: Device charge in critical state','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','f12fc2c1a7a142a287304c18bafa1181',''), ('17635','{20884}={$CHARGE.STATE.WARN}','Morningstar ProStar PWM: Battery: Device charge in warning state','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','adf8cf02aa1e42fa84e1f11ddae4df01',''), ('17636','{20885}={$LOAD.STATE.CRIT:"lvd"} or {20885}={$LOAD.STATE.CRIT:"fault"}','Morningstar ProStar PWM: Load: Device load in critical state','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','7a8bf4420b6b48ab8a5bc999eecae760',''), ('17637','{20886}={$LOAD.STATE.WARN:"lvdWarning"} or {20886}={$LOAD.STATE.WARN:"override"}','Morningstar ProStar PWM: Load: Device load in warning state','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','5152f9cd4ee34be485f3cb0a0f60afd5',''), ('17638','{20887}=2','Morningstar ProStar PWM: Status: Device has "arrayCurrentOffset" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','67fd46f034c3486e9af3cabfc5dc8056',''), ('17639','{20888}=2','Morningstar ProStar PWM: Status: Device has "batterySenseDisconnected" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','31cc0b05b83045de80a7d07f26545010',''), ('17640','{20889}=2','Morningstar ProStar PWM: Status: Device has "batterySenseOutOfRange" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','9e498d21bc7f4ca1937f1628f4b1ea55',''), ('17641','{20890}=2','Morningstar ProStar PWM: Status: Device has "batteryTempOutOfRange" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','8a09c7609f9a45cea5b217757a7d2e5e',''), ('17642','{20891}=2','Morningstar ProStar PWM: Status: Device has "controllerReset" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','b173b8ca12f8464aae6476009b4c89e8',''), ('17643','{20892}=2','Morningstar ProStar PWM: Status: Device has "currentLimit" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','cdbac88810ff49caa35771e661d8b312',''), ('17644','{20893}=2','Morningstar ProStar PWM: Status: Device has "currentMeasurementError" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','7758388df28d4540ba393f4423fef00a',''), ('17645','{20894}=2','Morningstar ProStar PWM: Status: Device has "eepromAccessFailure" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','a56fef1f61c44ba884ec448b0d306c1d',''), ('17646','{20895}=2','Morningstar ProStar PWM: Status: Device has "fp10SupplyOutOfRange" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','fefea5daa03d453c8c5148ddb39997f9',''), ('17647','{20896}=2','Morningstar ProStar PWM: Status: Device has "heatsinkTempLimit" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','c252c82aff2a4ac680965115cb2fab64',''), ('17648','{20897}=2','Morningstar ProStar PWM: Status: Device has "heatsinkTempSensorOpen" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','5b93a0a09a62481d8096ec743c2ceaff',''), ('17649','{20898}=2','Morningstar ProStar PWM: Status: Device has "heatsinkTempSensorShorted" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','f28e5143a238470ba93c1345c814f87d',''), ('17650','{20899}=2','Morningstar ProStar PWM: Status: Device has "hightInputVoltageLimit" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','75c84ef378984fca854b34a8ef79668c',''), ('17651','{20900}=2','Morningstar ProStar PWM: Status: Device has "loadCurrentOffset" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','5c1551f7e2be40e0b8b50ed263f8e293',''), ('17652','{20901}=2','Morningstar ProStar PWM: Status: Device has "loadLvd" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','665117c5b9b64ea09a1d661e9c40fc43',''), ('17653','{20902}=2','Morningstar ProStar PWM: Status: Device has "logTimeout" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','b89c002c859c419ea748b43d575e9e27',''), ('17654','{20903}=2','Morningstar ProStar PWM: Status: Device has "mosfetOpen" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','17f51e7b248b4e63934e8b529b85b2ef',''), ('17655','{20904}=2','Morningstar ProStar PWM: Status: Device has "p12SupplyOutOfRange" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','75e23772250741d0b1fc1ddff2a72ef6',''), ('17656','{20905}=2','Morningstar ProStar PWM: Status: Device has "p33SupplyOutOfRange" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','fc374c9ac9fa4f979fbff9f7c7d83565',''), ('17657','{20906}=2','Morningstar ProStar PWM: Status: Device has "rtsDisconnected" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','fbec2a1fdbe54d8da352471acf67bad1',''), ('17658','{20907}=2','Morningstar ProStar PWM: Status: Device has "rtsShorted" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','915da6e7b1cd410da9a6c68e3b4abd85',''), ('17659','{20908}=2','Morningstar ProStar PWM: Status: Device has "uncalibrated" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','e8bf2213a5444e2c9923b6f093d43f75',''), ('17660','{20909}=2','Morningstar ProStar PWM: Status: Device has "arrayHvd" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','b2ff69793e124031a79a668b03678fac',''), ('17661','{20910}=2','Morningstar ProStar PWM: Status: Device has "batteryHvd" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','a4ca36ccaa9d45ceb79303afef1c49f0',''), ('17662','{20911}=2','Morningstar ProStar PWM: Status: Device has "batteryLowVoltageDisconnect" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','f4d1120afb13456b9d45f8795dbc30b7',''), ('17663','{20912}=2','Morningstar ProStar PWM: Status: Device has "customSettingsEdit" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','9e5f2c575945458ea8a39f33cb23b833',''), ('17664','{20913}=2','Morningstar ProStar PWM: Status: Device has "dipSwitchChanged" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','fd904f4469324784ac2c469e64069f94',''), ('17665','{20914}=2','Morningstar ProStar PWM: Status: Device has "localTempSensorDamaged" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','62076ce0967049c8bde39f71afcb85d9',''), ('17666','{20915}=2','Morningstar ProStar PWM: Status: Device has "mosfetSShorted" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','ea8487afe1c14bc08f3d9fd7f75d208f',''), ('17667','{20916}=2','Morningstar ProStar PWM: Status: Device has "overcurrent" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','b0bb139541ae493bafc40dac9074d898',''), ('17668','{20917}=2','Morningstar ProStar PWM: Status: Device has "p3Fault" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','8af94d7ff1a84e18b10122b0e3743d45',''), ('17669','{20918}=2','Morningstar ProStar PWM: Status: Device has "rtsNoLongerValid" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','b41cb2e05acb40f59efa50a25f66cd62',''), ('17670','{20919}=2','Morningstar ProStar PWM: Status: Device has "rtsShorted" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','d99c3f126c7e480cb4fcc705349eb61d',''), ('17671','{20920}=2','Morningstar ProStar PWM: Status: Device has "slaveTimeout" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','711b28f19cb74c0faeef73263ca1fb8f',''), ('17672','{20921}=2','Morningstar ProStar PWM: Status: Device has "software" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','e4a261d750d546c7b5d5067dd9a0ec25',''), ('17673','{20922}=2','Morningstar ProStar PWM: Status: Device has "customSettingsEdit" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','99ab5f0d3014459a8cd7d137d3a1f688',''), ('17674','{20923}=2','Morningstar ProStar PWM: Status: Device has "dipSwitchChanged" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','77752192092f4f1caceef19c3c164b72',''), ('17675','{20924}=2','Morningstar ProStar PWM: Status: Device has "externalShortCircuit" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','d2e55501d89844aeb47f7887a11754a9',''), ('17676','{20925}=2','Morningstar ProStar PWM: Status: Device has "highTempDisconnect" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','a6548502cfc4406098ba3129af8efcb5',''), ('17677','{20926}=2','Morningstar ProStar PWM: Status: Device has "loadHvd" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','6e8f0127bc7b42dea9d867ab174f458c',''), ('17678','{20927}=2','Morningstar ProStar PWM: Status: Device has "mosfetShorted" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','2a303d4712e244a9b051fb1b0247fac5',''), ('17679','{20928}=2','Morningstar ProStar PWM: Status: Device has "overcurrent" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','5720e2e15e5f42099fd7de361f62c99a',''), ('17680','{20929}=2','Morningstar ProStar PWM: Status: Device has "p3Fault" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','2f522d50a8124ed2a8af4d7b6417c31c',''), ('17681','{20930}=2','Morningstar ProStar PWM: Status: Device has "software" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','e75abe852b9c4e1d91a1f8f83622ef64',''), ('17682','({32304}>0 and {32304}<10m) or ({32304}=0 and {32305}<10m)','Morningstar ProStar PWM: Status: Device has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Morningstar ProStar PWM: Status: Device has been restarted (uptime < 10m)','dea364bf454746bca6be38d7e0759d06',''), ('17683','{20932}=1','Morningstar ProStar PWM: Status: Failed to fetch data','','0','2','Zabbix has not received data for items for the last 5 minutes.',NULL,'0','0','0','','0','','1','','0','Morningstar ProStar PWM: Status: Failed to fetch data (or no data for 5m)','16c1444a745a47e59fd22bd1a64baef3',''), ('17684','{20933}>{$BATTERY.TEMP.MAX.CRIT}','Morningstar ProStar PWM: Temperature: Critically high battery temperature','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar ProStar PWM: Temperature: Critically high battery temperature (over {$BATTERY.TEMP.MAX.CRIT}C for 5m)','46eb3a0e80294a4db8324d56337ed712',''), ('17685','{20934}<{$BATTERY.TEMP.MIN.CRIT}','Morningstar ProStar PWM: Temperature: Critically low battery temperature','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar ProStar PWM: Temperature: Critically low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m)','c3f3ba5b2cab4481bb62fa8527554e96',''), ('17686','{20935}>{$BATTERY.TEMP.MAX.WARN}','Morningstar ProStar PWM: Temperature: High battery temperature','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar ProStar PWM: Temperature: High battery temperature (over {$BATTERY.TEMP.MAX.WARN}C for 5m)','80aaf1de029b4d6eadce9f2a946f6dde',''), ('17687','{20936}<{$BATTERY.TEMP.MIN.WARN}','Morningstar ProStar PWM: Temperature: Low battery temperature','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar ProStar PWM: Temperature: Low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m)','cf1db336ea124f9a9fd6eb367f93f0e8',''), ('17688','{20937}>{#VOLTAGE.MAX.CRIT}','Morningstar ProStar PWM: Battery: Critically high battery voltage','','0','4','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar ProStar PWM: Battery: Critically high battery voltage (over {#VOLTAGE.MAX.CRIT}V for 5m)','e89cf2b8066840c2876642f0d8db1edd',''), ('17689','{20938}<{#VOLTAGE.MIN.CRIT}','Morningstar ProStar PWM: Battery: Critically low battery voltage','','0','4','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar ProStar PWM: Battery: Critically low battery voltage (below {#VOLTAGE.MIN.CRIT}V for 5m)','8356aba9afb242b09902873a5f0e1d47',''), ('17690','{20939}>{#VOLTAGE.MAX.WARN}','Morningstar ProStar PWM: Battery: High battery voltage','','0','2','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar ProStar PWM: Battery: High battery voltage (over {#VOLTAGE.MAX.WARN}V for 5m)','77f130af976c43edb8c823de5cbd57b2',''), ('17691','{20940}<{#VOLTAGE.MIN.WARN}','Morningstar ProStar PWM: Battery: Low battery voltage','','0','2','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar ProStar PWM: Battery: Low battery voltage (below {#VOLTAGE.MIN.WARN}V for 5m)','6c288c8b28db4f8e95c8ad2aa8b838ef',''), ('17692','{20941}={$CHARGE.STATE.CRIT}','Morningstar SunSaver MPPT: Battery: Device charge in critical state','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','0362139c66f4464db8c022b9ffce5502',''), ('17693','{20942}={$CHARGE.STATE.WARN}','Morningstar SunSaver MPPT: Battery: Device charge in warning state','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','d5439cee53b148ecb4186286c4e93ada',''), ('17694','{20943}={$LOAD.STATE.CRIT:"lvd"} or {20943}={$LOAD.STATE.CRIT:"fault"}','Morningstar SunSaver MPPT: Load: Device load in critical state','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','bbd3a89b012a40daa646ec7113d43e43',''), ('17695','{20944}={$LOAD.STATE.WARN:"lvdWarning"} or {20944}={$LOAD.STATE.WARN:"override"}','Morningstar SunSaver MPPT: Load: Device load in warning state','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','8f6967c1b577431c995a3c13f8cdb1c1',''), ('17696','{20945}=2','Morningstar SunSaver MPPT: Status: Device has "currentLimit" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','86220f6cc9164490b6d80be4a249e749',''), ('17697','{20946}=2','Morningstar SunSaver MPPT: Status: Device has "currentOffset" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','69016ea6a1204435b3ddb8de6b8944dc',''), ('17698','{20947}=2','Morningstar SunSaver MPPT: Status: Device has "heatsinkTempSensorOpen" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','2c02465ea74e4c63ab783d235c8f1a30',''), ('17699','{20948}=2','Morningstar SunSaver MPPT: Status: Device has "heatsinkTempSensorShorted" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','1aa289c68f0b4b44a043281e6df9e462',''), ('17700','{20949}=2','Morningstar SunSaver MPPT: Status: Device has "highVaCurrentLimit" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','6d0ce7d6e2cc407ba0f4d989bdd9a141',''), ('17701','{20950}=2','Morningstar SunSaver MPPT: Status: Device has "mosfetSOpen" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','718a3426363040e1ab82864635444056',''), ('17702','{20951}=2','Morningstar SunSaver MPPT: Status: Device has "p12VoltageReferenceOff" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','4eb4df0b4cf04a198190312cdb33538f',''), ('17703','{20952}=2','Morningstar SunSaver MPPT: Status: Device has "rtsDisconnected" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','e2ac890bb16d4e0798b0410f33c8a860',''), ('17704','{20953}=2','Morningstar SunSaver MPPT: Status: Device has "rtsMiswire" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','3b02b27bd4674ae3b820730cee8e611a',''), ('17705','{20954}=2','Morningstar SunSaver MPPT: Status: Device has "rtsShorted" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','d253c037d5974ee38e888162687b96ef',''), ('17706','{20955}=2','Morningstar SunSaver MPPT: Status: Device has "sspptHot" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','1bea0c0e01314dbaa1cfdfa5a0625755',''), ('17707','{20956}=2','Morningstar SunSaver MPPT: Status: Device has "systemMiswire" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','d28d0e51500a45859ccb6969d9b5493f',''), ('17708','{20957}=2','Morningstar SunSaver MPPT: Status: Device has "uncalibrated" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','427f75a98d4440a38e40522bccec03bb',''), ('17709','{20958}=2','Morningstar SunSaver MPPT: Status: Device has "arrayHvd" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','2d8b0bdeb95c49d68771af384d985311',''), ('17710','{20959}=2','Morningstar SunSaver MPPT: Status: Device has "batteryHvd" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','2e07c5d51691462ca0961d77ea974bd5',''), ('17711','{20960}=2','Morningstar SunSaver MPPT: Status: Device has "customSettingsEdit" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','65d2cd1ff93f45db9d7f572ee0a8f568',''), ('17712','{20961}=2','Morningstar SunSaver MPPT: Status: Device has "localTempSensorDamaged" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','fe217d10399044d7b1008f0010691e1e',''), ('17713','{20962}=2','Morningstar SunSaver MPPT: Status: Device has "mosfetSShorted" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','fa62f9e4f0f84e278938ba18785a1b5f',''), ('17714','{20963}=2','Morningstar SunSaver MPPT: Status: Device has "overcurrent" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','6f450621a12e46369745b2a0fed018ac',''), ('17715','{20964}=2','Morningstar SunSaver MPPT: Status: Device has "rtsNoLongerValid" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','7ea38daa41a94ab3a9c1efc34276b17b',''), ('17716','{20965}=2','Morningstar SunSaver MPPT: Status: Device has "rtsShorted" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','91edc885c3f140cc85bb6085f06e6820',''), ('17717','{20966}=2','Morningstar SunSaver MPPT: Status: Device has "softwareFault" array faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','cae74543a0da478d80b9302a2431fe4b',''), ('17718','{20967}=2','Morningstar SunSaver MPPT: Status: Device has "customSettingsEdit" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','d086fbb093344723a4bb5fe928e984ff',''), ('17719','{20968}=2','Morningstar SunSaver MPPT: Status: Device has "externalShortCircuit" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','5743ed062a954330928092fb8574002a',''), ('17720','{20969}=2','Morningstar SunSaver MPPT: Status: Device has "highTempDisconnect" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','354a1512bca5468585a489dd14fc793d',''), ('17721','{20970}=2','Morningstar SunSaver MPPT: Status: Device has "loadHvd" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','3640e470580846ac9e1651cba186d0a3',''), ('17722','{20971}=2','Morningstar SunSaver MPPT: Status: Device has "mosfetShorted" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','d3911d64792e4b88b31cb51a405a1a2e',''), ('17723','{20972}=2','Morningstar SunSaver MPPT: Status: Device has "overcurrent" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','d1bfa4177c0844ec9fc2bc7270c09338',''), ('17724','{20973}=2','Morningstar SunSaver MPPT: Status: Device has "software" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','baaba919b58546f08cdcd1e2791feb27',''), ('17725','{20974}=2','Morningstar SunSaver MPPT: Status: Device has "unknownLoadFault" load faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','41e47074c983421a83b1e500d4591188',''), ('17726','({32306}>0 and {32306}<10m) or ({32306}=0 and {32307}<10m)','Morningstar SunSaver MPPT: Status: Device has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Morningstar SunSaver MPPT: Status: Device has been restarted (uptime < 10m)','fd5dcb256d4547da9c432c1b9c01b0ae',''), ('17727','{20976}=1','Morningstar SunSaver MPPT: Status: Failed to fetch data','','0','2','Zabbix has not received data for items for the last 5 minutes.',NULL,'0','0','0','','0','','1','','0','Morningstar SunSaver MPPT: Status: Failed to fetch data (or no data for 5m)','72e6e08faed647a98a027bd25b6a7106',''), ('17728','{20977}>{$BATTERY.TEMP.MAX.CRIT}','Morningstar SunSaver MPPT: Temperature: Critically high battery temperature','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar SunSaver MPPT: Temperature: Critically high battery temperature (over {$BATTERY.TEMP.MAX.CRIT}C for 5m)','cc121c44be05440a82d3344c530456e5',''), ('17729','{20978}<{$BATTERY.TEMP.MIN.CRIT}','Morningstar SunSaver MPPT: Temperature: Critically low battery temperature','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar SunSaver MPPT: Temperature: Critically low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m)','9e0d552b93ae402d98c327420c99d160',''), ('17730','{20979}>{$BATTERY.TEMP.MAX.WARN}','Morningstar SunSaver MPPT: Temperature: High battery temperature','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar SunSaver MPPT: Temperature: High battery temperature (over {$BATTERY.TEMP.MAX.WARN}C for 5m)','95b600e280b94949b41422eb60def010',''), ('17731','{20980}<{$BATTERY.TEMP.MIN.WARN}','Morningstar SunSaver MPPT: Temperature: Low battery temperature','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar SunSaver MPPT: Temperature: Low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m)','e351922a0a8c4c53972d9477d47af528',''), ('17732','{20981}>{#VOLTAGE.MAX.CRIT}','Morningstar SunSaver MPPT: Battery: Critically high battery voltage','','0','4','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar SunSaver MPPT: Battery: Critically high battery voltage (over {#VOLTAGE.MAX.CRIT}V for 5m)','bf4ad2cee8cf41baafa3d81df5fbe4d3',''), ('17733','{20982}<{#VOLTAGE.MIN.CRIT}','Morningstar SunSaver MPPT: Battery: Critically low battery voltage','','0','4','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar SunSaver MPPT: Battery: Critically low battery voltage (below {#VOLTAGE.MIN.CRIT}V for 5m)','2aedfef9b8764881a4768e6b32793820',''), ('17734','{20983}>{#VOLTAGE.MAX.WARN}','Morningstar SunSaver MPPT: Battery: High battery voltage','','0','2','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar SunSaver MPPT: Battery: High battery voltage (over {#VOLTAGE.MAX.WARN}V for 5m)','bec4c7a6a1ab44a4adc8e4286b9a41d9',''), ('17735','{20984}<{#VOLTAGE.MIN.WARN}','Morningstar SunSaver MPPT: Battery: Low battery voltage','','0','2','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar SunSaver MPPT: Battery: Low battery voltage (below {#VOLTAGE.MIN.WARN}V for 5m)','c06425d8a0a24b5f80fd0591be61b3f0',''), ('17736','{20985}={$LOAD.STATE.CRIT:"lvd"} or {20985}={$LOAD.STATE.CRIT:"fault"}','Morningstar SureSine: Load: Device load in critical state','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','83a1cad652b445a69541208f81b12c23',''), ('17737','{20986}={$LOAD.STATE.WARN:"lvdWarning"} or {20986}={$LOAD.STATE.WARN:"override"}','Morningstar SureSine: Load: Device load in warning state','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','bed6bfb29f5d4a3e89b9028b45bfb8b8',''), ('17738','{20987}=2','Morningstar SureSine: Status: Device has "heatsinkTempSensorOpen" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','6181b0f6c4cf4febaa86039dae994f30',''), ('17739','{20988}=2','Morningstar SureSine: Status: Device has "heatsinkTempSensorShort" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','ebe250d8faf543429bd5732114f05fd4',''), ('17740','{20989}=2','Morningstar SureSine: Status: Device has "suresineHot" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','ff3ee8e7bd074037a99a56f02dfaff72',''), ('17741','{20990}=2','Morningstar SureSine: Status: Device has "unknownAlarm" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','64c7437f53f74578a85b358f73529322',''), ('17742','{20991}=2','Morningstar SureSine: Status: Device has "customSettingsEdit" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','438d1fb319234de9aaa74fa565e6c661',''), ('17743','{20992}=2','Morningstar SureSine: Status: Device has "dipSwitchChanged" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','174685e8f89f4e21b7275db6be7623b2',''), ('17744','{20993}=2','Morningstar SureSine: Status: Device has "highVoltageDisconnect" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','283d5eb818744b25b4275509b0492bfd',''), ('17745','{20994}=2','Morningstar SureSine: Status: Device has "overcurrent" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','a271f6d0e1504e46966da689b91cf1f7',''), ('17746','{20995}=2','Morningstar SureSine: Status: Device has "reset" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','88df087dcb434c5d9980d249f077a661',''), ('17747','{20996}=2','Morningstar SureSine: Status: Device has "software" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','9fa2ec74f9b34f0082d9173f57e1edf6',''), ('17748','{20997}=2','Morningstar SureSine: Status: Device has "suresineHot" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','970e89c852c34a219ad0c1fce357e97a',''), ('17749','{20998}=2','Morningstar SureSine: Status: Device has "unknownFault" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','fe023e11a544470cb09db1585d7f1e83',''), ('17750','({32308}>0 and {32308}<10m) or ({32308}=0 and {32309}<10m)','Morningstar SureSine: Status: Device has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Morningstar SureSine: Status: Device has been restarted (uptime < 10m)','f9404001de4c4c1d8438e0b560977398',''), ('17751','{21000}=1','Morningstar SureSine: Status: Failed to fetch data','','0','2','Zabbix has not received data for items for the last 5 minutes.',NULL,'0','0','0','','0','','1','','0','Morningstar SureSine: Status: Failed to fetch data (or no data for 5m)','db5506294fd945659eae945014332a62',''), ('17752','{21001}>{#VOLTAGE.MAX.CRIT}','Morningstar SureSine: Battery: Critically high battery voltage','','0','4','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar SureSine: Battery: Critically high battery voltage (over {#VOLTAGE.MAX.CRIT}V for 5m)','4b27f6ecdc674803a883a8a60e3ddce2',''), ('17753','{21002}<{#VOLTAGE.MIN.CRIT}','Morningstar SureSine: Battery: Critically low battery voltage','','0','4','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar SureSine: Battery: Critically low battery voltage (below {#VOLTAGE.MIN.CRIT}V for 5m)','dfbcd455a92d423fbb841f2d6b6293a8',''), ('17754','{21003}>{#VOLTAGE.MAX.WARN}','Morningstar SureSine: Battery: High battery voltage','','0','2','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar SureSine: Battery: High battery voltage (over {#VOLTAGE.MAX.WARN}V for 5m)','e0173479978841ec8607430cf2fb356e',''), ('17755','{21004}<{#VOLTAGE.MIN.WARN}','Morningstar SureSine: Battery: Low battery voltage','','0','2','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar SureSine: Battery: Low battery voltage (below {#VOLTAGE.MIN.WARN}V for 5m)','75a433d7ec28440f947a4aaed3aed33d',''), ('17756','{21005}={$CHARGE.STATE.CRIT}','Morningstar TriStar MPPT 600V: Battery: Device charge in critical state','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','ed2b56b78fce47f88b679774640706b5',''), ('17757','{21006}={$CHARGE.STATE.WARN}','Morningstar TriStar MPPT 600V: Battery: Device charge in warning state','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','6f21bda91cc640809f0f4faf04ba86f4',''), ('17758','{21007}=2','Morningstar TriStar MPPT 600V: Status: Device has "alarm21Internal" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','62d1ffe8417c4ef9b746d17185d8853b',''), ('17759','{21008}=2','Morningstar TriStar MPPT 600V: Status: Device has "arrayCurrentOffset" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','367d91fa49c241e795a2b497739c6f01',''), ('17760','{21009}=2','Morningstar TriStar MPPT 600V: Status: Device has "batterySense" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','1c1baf4eea9e416a98bcf3e12d7ae01f',''), ('17761','{21010}=2','Morningstar TriStar MPPT 600V: Status: Device has "batterySenseDisconnected" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','b627e79de7b446d69ee245b07f755405',''), ('17762','{21011}=2','Morningstar TriStar MPPT 600V: Status: Device has "controllerWasReset" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','73aba1af987843d98542105f2b41c5bd',''), ('17763','{21012}=2','Morningstar TriStar MPPT 600V: Status: Device has "currentLimit" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','aae5a3441b9e4394a39e7a8c5ce29e0c',''), ('17764','{21013}=2','Morningstar TriStar MPPT 600V: Status: Device has "currentOffset" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','f8e42483b1534ed586252db0c8880aa6',''), ('17765','{21014}=2','Morningstar TriStar MPPT 600V: Status: Device has "derateLimit" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','bd32be9b60334cc1b80d2de129f0f1a2',''), ('17766','{21015}=2','Morningstar TriStar MPPT 600V: Status: Device has "ee-i2cRetryLimit" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','e0886663f4df4ff0965fac33951d4ffc',''), ('17767','{21016}=2','Morningstar TriStar MPPT 600V: Status: Device has "ethernetAlarm" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','abfeb2c3c566401b9f30cd28765aacff',''), ('17768','{21017}=2','Morningstar TriStar MPPT 600V: Status: Device has "extflashFault" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','a0ffdbf5695d4945960df6ea7defa071',''), ('17769','{21018}=2','Morningstar TriStar MPPT 600V: Status: Device has "fp12VoltageOutOfRange" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','f92ce5a55f0a4a65beca0abb748b7c04',''), ('17770','{21019}=2','Morningstar TriStar MPPT 600V: Status: Device has "heatsinkTempSensorOpen" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','5bdcd298878a4baf97aab8df338e1123',''), ('17771','{21020}=2','Morningstar TriStar MPPT 600V: Status: Device has "heatsinkTempSensorShorted" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','9fe220d99b524db8bbfe5b511ee91fa7',''), ('17772','{21021}=2','Morningstar TriStar MPPT 600V: Status: Device has "highArrayVCurrentLimit" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','dc8d3f71c60643b7a6a25a9d7452ce60',''), ('17773','{21022}=2','Morningstar TriStar MPPT 600V: Status: Device has "highTemperatureCurrentLimit" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','d279f44217b046c789c865b8b44c9342',''), ('17774','{21023}=2','Morningstar TriStar MPPT 600V: Status: Device has "highVoltageDisconnect" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','b48d1c04e95c4b89a7240fc2a611a499',''), ('17775','{21024}=2','Morningstar TriStar MPPT 600V: Status: Device has "lvd" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','767be108224d43a99ac2568166c9cd33',''), ('17776','{21025}=2','Morningstar TriStar MPPT 600V: Status: Device has "maxAdcValueReached" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','107b8a4a63c146fa908f5b7ccc716258',''), ('17777','{21026}=2','Morningstar TriStar MPPT 600V: Status: Device has "mosfetSOpen" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','5792c3702ab94123891e02ee4c05339f',''), ('17778','{21027}=2','Morningstar TriStar MPPT 600V: Status: Device has "p3VoltageOutOfRange" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','a115f88a282e41179b569633234f04e2',''), ('17779','{21028}=2','Morningstar TriStar MPPT 600V: Status: Device has "p12VoltageOutOfRange" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','8a3906ceae5547ca8f9c916ca46e7be8',''), ('17780','{21029}=2','Morningstar TriStar MPPT 600V: Status: Device has "rtsDisconnected" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','49d3fb027a88462aa7f67442a507c051',''), ('17781','{21030}=2','Morningstar TriStar MPPT 600V: Status: Device has "rtsMiswire" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','650cf2d3c06f4c55ac90b1dd23ca25d1',''), ('17782','{21031}=2','Morningstar TriStar MPPT 600V: Status: Device has "rtsShorted" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','48bb77b135c84d6a9e3792d8385f16da',''), ('17783','{21032}=2','Morningstar TriStar MPPT 600V: Status: Device has "slaveControlFault" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','7e363c7cc8ce4104a9c6269c9e94ac26',''), ('17784','{21033}=2','Morningstar TriStar MPPT 600V: Status: Device has "software" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','e1235a2201a542bb9ac67345c70641e3',''), ('17785','{21034}=2','Morningstar TriStar MPPT 600V: Status: Device has "systemMiswire" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','cb5b84c99bcf45459bdc955c8604264b',''), ('17786','{21035}=2','Morningstar TriStar MPPT 600V: Status: Device has "uncalibrated" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','72ce41657c1848d897255ad3de77d942',''), ('17787','{21036}=2','Morningstar TriStar MPPT 600V: Status: Device has "arrayHvd" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','747a56182a6f4336b720a95b0609013c',''), ('17788','{21037}=2','Morningstar TriStar MPPT 600V: Status: Device has "batteryHvd" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','e9d7a51b64444e27b28b13ebf38a11c3',''), ('17789','{21038}=2','Morningstar TriStar MPPT 600V: Status: Device has "batteryLvd" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','b898ac485d094f1cb65020ad5459641b',''), ('17790','{21039}=2','Morningstar TriStar MPPT 600V: Status: Device has "blockbusBoot" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','806e83938072453ab66895044907c02d',''), ('17791','{21040}=2','Morningstar TriStar MPPT 600V: Status: Device has "chargeSlaveControlTimeout" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','f20f87cd6ce3414182cd2088a947ef24',''), ('17792','{21041}=2','Morningstar TriStar MPPT 600V: Status: Device has "controllerWasReset" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','f4478548ad17400c9cddbf8b27720952',''), ('17793','{21042}=2','Morningstar TriStar MPPT 600V: Status: Device has "currentSensorReferenceOutOfRange" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','6c9a64ff6f61457daf826e831f51b048',''), ('17794','{21043}=2','Morningstar TriStar MPPT 600V: Status: Device has "customSettingsEdit" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','74d39d01841f454e8f72457104a42cb7',''), ('17795','{21044}=2','Morningstar TriStar MPPT 600V: Status: Device has "dipSwitchChange" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','12d55fb0398c4fbb87ca948f2e692a38',''), ('17796','{21045}=2','Morningstar TriStar MPPT 600V: Status: Device has "eepromRetryLimit" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','25e71e9c3ad945ed9f48945cac45bb56',''), ('17797','{21046}=2','Morningstar TriStar MPPT 600V: Status: Device has "fault16Software" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','f6fafa09a41a428c87d5ef303071a7f7',''), ('17798','{21047}=2','Morningstar TriStar MPPT 600V: Status: Device has "fault17Software" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','8f079e7606d14dc2ab6313fdae80bafc',''), ('17799','{21048}=2','Morningstar TriStar MPPT 600V: Status: Device has "fault18Software" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','c388f647dd48445d8b8e3eee02ea38fc',''), ('17800','{21049}=2','Morningstar TriStar MPPT 600V: Status: Device has "fault19Software" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','1466954e09704b3092772f0996f692f4',''), ('17801','{21050}=2','Morningstar TriStar MPPT 600V: Status: Device has "fault20Software" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','86595bafc3054fd99343f24bbfdc44e3',''), ('17802','{21051}=2','Morningstar TriStar MPPT 600V: Status: Device has "fault21Software" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','d269607e330243fe93e2f85c36d38114',''), ('17803','{21052}=2','Morningstar TriStar MPPT 600V: Status: Device has "fetShort" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','68d6b95b6b9e42ada5a212a913d1ae43',''), ('17804','{21053}=2','Morningstar TriStar MPPT 600V: Status: Device has "fpgaVersion" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','dcb1c2bcc704405c8baae825124e3958',''), ('17805','{21054}=2','Morningstar TriStar MPPT 600V: Status: Device has "hscomm" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','351af5c43f984930b4ebdb8690c52e7d',''), ('17806','{21055}=2','Morningstar TriStar MPPT 600V: Status: Device has "hscommMaster" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','b32067a9b80c4836af4120f9f8e21bbd',''), ('17807','{21056}=2','Morningstar TriStar MPPT 600V: Status: Device has "ia-refSlaveModeTimeout" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','bb61ea6f03c94556bf4f333bc050206f',''), ('17808','{21057}=2','Morningstar TriStar MPPT 600V: Status: Device has "overcurrent" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','843654df3185400e854c8c1f0229c32c',''), ('17809','{21058}=2','Morningstar TriStar MPPT 600V: Status: Device has "powerboardCommunicationFault" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','642f03d6eda346aca835e75088b7067b',''), ('17810','{21059}=2','Morningstar TriStar MPPT 600V: Status: Device has "rs232SerialToMeterBridge" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','4d8f0244f8d047bc8730ffc2f02a976d',''), ('17811','{21060}=2','Morningstar TriStar MPPT 600V: Status: Device has "rtsDisconnected" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','6c125b8f681b47a99f7535292bd0507c',''), ('17812','{21061}=2','Morningstar TriStar MPPT 600V: Status: Device has "rtsShorted" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','abad398631f34dac8094e4bcd14e3613',''), ('17813','{21062}=2','Morningstar TriStar MPPT 600V: Status: Device has "slave" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','6824d221feb042da860248a4b418105c',''), ('17814','{21063}=2','Morningstar TriStar MPPT 600V: Status: Device has "softwareFault" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','56adf438e90f410497246b27b6da49f4',''), ('17815','({32310}>0 and {32310}<10m) or ({32310}=0 and {32311}<10m)','Morningstar TriStar MPPT 600V: Status: Device has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Morningstar TriStar MPPT 600V: Status: Device has been restarted (uptime < 10m)','5393dee9b39d438a8c1553a0be0fb0f2',''), ('17816','{21065}=1','Morningstar TriStar MPPT 600V: Status: Failed to fetch data','','0','2','Zabbix has not received data for items for the last 5 minutes.',NULL,'0','0','0','','0','','1','','0','Morningstar TriStar MPPT 600V: Status: Failed to fetch data (or no data for 5m)','c4f0ea9e18884bc0b546933871017098',''), ('17817','{21066}>{$BATTERY.TEMP.MAX.CRIT}','Morningstar TriStar MPPT 600V: Temperature: Critically high battery temperature','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar TriStar MPPT 600V: Temperature: Critically high battery temperature (over {$BATTERY.TEMP.MAX.CRIT}C for 5m)','bc117de353304889980c7836603abb0d',''), ('17818','{21067}<{$BATTERY.TEMP.MIN.CRIT}','Morningstar TriStar MPPT 600V: Temperature: Critically low battery temperature','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar TriStar MPPT 600V: Temperature: Critically low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m)','25a8f16d632940c3a2c994a9f2a76851',''), ('17819','{21068}>{$BATTERY.TEMP.MAX.WARN}','Morningstar TriStar MPPT 600V: Temperature: High battery temperature','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar TriStar MPPT 600V: Temperature: High battery temperature (over {$BATTERY.TEMP.MAX.WARN}C for 5m)','db1152c815c84d208be0db3dac63acb4',''), ('17820','{21069}<{$BATTERY.TEMP.MIN.WARN}','Morningstar TriStar MPPT 600V: Temperature: Low battery temperature','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar TriStar MPPT 600V: Temperature: Low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m)','9c331fb9a30b4867a3e16acd7e9f8983',''), ('17821','{21070}>{#VOLTAGE.MAX.CRIT}','Morningstar TriStar MPPT 600V: Battery: Critically high battery voltage','','0','4','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar TriStar MPPT 600V: Battery: Critically high battery voltage (over {#VOLTAGE.MAX.CRIT}V for 5m)','f326b9eb93fe4267bf9f4a07bb578eca',''), ('17822','{21071}<{#VOLTAGE.MIN.CRIT}','Morningstar TriStar MPPT 600V: Battery: Critically low battery voltage','','0','4','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar TriStar MPPT 600V: Battery: Critically low battery voltage (below {#VOLTAGE.MIN.CRIT}V for 5m)','07fb5dd68c954da3982392dfcb2de0b8',''), ('17823','{21072}>{#VOLTAGE.MAX.WARN}','Morningstar TriStar MPPT 600V: Battery: High battery voltage','','0','2','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar TriStar MPPT 600V: Battery: High battery voltage (over {#VOLTAGE.MAX.WARN}V for 5m)','aca6ef49842d4b3ba543fcf470473a96',''), ('17824','{21073}<{#VOLTAGE.MIN.WARN}','Morningstar TriStar MPPT 600V: Battery: Low battery voltage','','0','2','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar TriStar MPPT 600V: Battery: Low battery voltage (below {#VOLTAGE.MIN.WARN}V for 5m)','b8673c0802a244d0850730e3fdf5a6dc',''), ('17825','{21074}={$CHARGE.STATE.CRIT}','Morningstar TriStar MPPT: Battery: Device charge in critical state','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','6c6371d2476246789d23404e068e5179',''), ('17826','{21075}={$CHARGE.STATE.WARN}','Morningstar TriStar MPPT: Battery: Device charge in warning state','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','65bdeac02fed4febae857f571319bf37',''), ('17827','{21076}=2','Morningstar TriStar MPPT: Status: Device has "batterySense" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','b073c972bb64463aaee85c6129fad319',''), ('17828','{21077}=2','Morningstar TriStar MPPT: Status: Device has "batterySenseDisconnected" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','80a2d0a457024c22b39f0fcd45992e1e',''), ('17829','{21078}=2','Morningstar TriStar MPPT: Status: Device has "controllerWasReset" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','bac1cc54818245f9baa8dc07ddc0f850',''), ('17830','{21079}=2','Morningstar TriStar MPPT: Status: Device has "currentLimit" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','86c2dfb7b0984eaab02f47c58337f468',''), ('17831','{21080}=2','Morningstar TriStar MPPT: Status: Device has "currentOffset" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','dd000390277a4e848a3236501817addf',''), ('17832','{21081}=2','Morningstar TriStar MPPT: Status: Device has "heatsinkTempSensorOpen" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','650ecb9c06464937a3f797e73a3d756d',''), ('17833','{21082}=2','Morningstar TriStar MPPT: Status: Device has "heatsinkTempSensorShorted" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','5999a4b6c49a4dabb6350d826b01e646',''), ('17834','{21083}=2','Morningstar TriStar MPPT: Status: Device has "highArrayVCurrentLimit" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','7331337c7ffb4933bca3982614657912',''), ('17835','{21084}=2','Morningstar TriStar MPPT: Status: Device has "highTemperatureCurrentLimit" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','82a2e0adba7444c6945666fcb9430808',''), ('17836','{21085}=2','Morningstar TriStar MPPT: Status: Device has "highVoltageDisconnect" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','b1f6d22d205e449a811da905e679800f',''), ('17837','{21086}=2','Morningstar TriStar MPPT: Status: Device has "maxAdcValueReached" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','e3ce50b9b696486f945ee5a4c1a7a753',''), ('17838','{21087}=2','Morningstar TriStar MPPT: Status: Device has "mosfetSOpen" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','1536cf07556b4cddb62186030a4321ca',''), ('17839','{21088}=2','Morningstar TriStar MPPT: Status: Device has "p12VoltageReferenceOff" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','136621f032544ea8af5e86a14ec03cb6',''), ('17840','{21089}=2','Morningstar TriStar MPPT: Status: Device has "rtsDisconnected" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','62ecaaf59a984b2999d13540c5220470',''), ('17841','{21090}=2','Morningstar TriStar MPPT: Status: Device has "rtsMiswire" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','12037d207b3f413198594877cc7a3862',''), ('17842','{21091}=2','Morningstar TriStar MPPT: Status: Device has "rtsShorted" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','330f9dfe6ea34b17bcf4cac2c908d78c',''), ('17843','{21092}=2','Morningstar TriStar MPPT: Status: Device has "systemMiswire" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','fba13770ff67433489ec95d62b65d4b5',''), ('17844','{21093}=2','Morningstar TriStar MPPT: Status: Device has "uncalibrated" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','de6208b4474f4743ad99444fd7eb135d',''), ('17845','{21094}=2','Morningstar TriStar MPPT: Status: Device has "arrayHvd" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','2a1b5a65311144d69c03255336f9f15f',''), ('17846','{21095}=2','Morningstar TriStar MPPT: Status: Device has "batteryHvd" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','f837f0839967493bb0e38b21000f5e9a',''), ('17847','{21096}=2','Morningstar TriStar MPPT: Status: Device has "customSettingsEdit" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','05b70b4be5554dd5ac2c65af04d79986',''), ('17848','{21097}=2','Morningstar TriStar MPPT: Status: Device has "dipSwitchChange" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','24ecb8842ea84a82b4d05a4e85150c55',''), ('17849','{21098}=2','Morningstar TriStar MPPT: Status: Device has "eepromRetryLimit" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','008d82bc793b49afa6cd37d038c837fe',''), ('17850','{21099}=2','Morningstar TriStar MPPT: Status: Device has "fetShort" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','71dbbf441c234dcfbf014fc043bf5d3a',''), ('17851','{21100}=2','Morningstar TriStar MPPT: Status: Device has "overcurrent" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','c100ec68ddaf40e6964ba2598141daa7',''), ('17852','{21101}=2','Morningstar TriStar MPPT: Status: Device has "rtsDisconnected" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','435df7ebe3e047ffada64dcf7e69148a',''), ('17853','{21102}=2','Morningstar TriStar MPPT: Status: Device has "rtsShorted" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','88443c84eaa0415db976e7a5d6c1dec4',''), ('17854','{21103}=2','Morningstar TriStar MPPT: Status: Device has "slaveControlTimeout" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','b19111ec08094dbca30a804011b02ed2',''), ('17855','{21104}=2','Morningstar TriStar MPPT: Status: Device has "softwareFault" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','0d90cab800ad4bbcbf880c157a7a9dae',''), ('17856','({32312}>0 and {32312}<10m) or ({32312}=0 and {32313}<10m)','Morningstar TriStar MPPT: Status: Device has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Morningstar TriStar MPPT: Status: Device has been restarted (uptime < 10m)','aab5be196ac64dc69883c3109fcd094f',''), ('17857','{21106}=1','Morningstar TriStar MPPT: Status: Failed to fetch data','','0','2','Zabbix has not received data for items for the last 5 minutes.',NULL,'0','0','0','','0','','1','','0','Morningstar TriStar MPPT: Status: Failed to fetch data (or no data for 5m)','db9317cb9a6645d2bd8f4760f7579c17',''), ('17858','{21107}>{$BATTERY.TEMP.MAX.CRIT}','Morningstar TriStar MPPT: Temperature: Critically high battery temperature','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar TriStar MPPT: Temperature: Critically high battery temperature (over {$BATTERY.TEMP.MAX.CRIT}C for 5m)','5ec1c2e4786048fc889a37a12a2f4ad6',''), ('17859','{21108}<{$BATTERY.TEMP.MIN.CRIT}','Morningstar TriStar MPPT: Temperature: Critically low battery temperature','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar TriStar MPPT: Temperature: Critically low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m)','84c059ff133f4f4d8145615c0a98eb50',''), ('17860','{21109}>{$BATTERY.TEMP.MAX.WARN}','Morningstar TriStar MPPT: Temperature: High battery temperature','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar TriStar MPPT: Temperature: High battery temperature (over {$BATTERY.TEMP.MAX.WARN}C for 5m)','11d2b988cfec425c9ffb082e9c78490d',''), ('17861','{21110}<{$BATTERY.TEMP.MIN.WARN}','Morningstar TriStar MPPT: Temperature: Low battery temperature','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar TriStar MPPT: Temperature: Low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m)','46122992e8a04c7bb7a8c8037a2da74a',''), ('17862','{21111}>{#VOLTAGE.MAX.CRIT}','Morningstar TriStar MPPT: Battery: Critically high battery voltage','','0','4','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar TriStar MPPT: Battery: Critically high battery voltage (over {#VOLTAGE.MAX.CRIT}V for 5m)','cf9bb1b6e84d4b03b38f13c1c1d4905c',''), ('17863','{21112}<{#VOLTAGE.MIN.CRIT}','Morningstar TriStar MPPT: Battery: Critically low battery voltage','','0','4','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar TriStar MPPT: Battery: Critically low battery voltage (below {#VOLTAGE.MIN.CRIT}V for 5m)','d977ded736704d748ca49595f3658b89',''), ('17864','{21113}>{#VOLTAGE.MAX.WARN}','Morningstar TriStar MPPT: Battery: High battery voltage','','0','2','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar TriStar MPPT: Battery: High battery voltage (over {#VOLTAGE.MAX.WARN}V for 5m)','00deb7608b3e4444bd4833f5b8ae5875',''), ('17865','{21114}<{#VOLTAGE.MIN.WARN}','Morningstar TriStar MPPT: Battery: Low battery voltage','','0','2','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar TriStar MPPT: Battery: Low battery voltage (below {#VOLTAGE.MIN.WARN}V for 5m)','2877138cdfb0448a9a83eb807b5da24a',''), ('17866','{21115}=2','Morningstar TriStar PWM: Status: Device has "batterySense" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','121d47c6bbdd45bca261df2e01ea41c6',''), ('17867','{21116}=2','Morningstar TriStar PWM: Status: Device has "batterySenseDisconnected" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','fd2d9290144143d39bb5a3cf0a2d261f',''), ('17868','{21117}=2','Morningstar TriStar PWM: Status: Device has "currentLimit" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','83d5b8d52acd4e21ac6d3a9cf05dcd04',''), ('17869','{21118}=2','Morningstar TriStar PWM: Status: Device has "currentOffset" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','d9529a4372d848038e6ee561d62e9f22',''), ('17870','{21119}=2','Morningstar TriStar PWM: Status: Device has "diversionLoadNearMax" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','5f3983acc1cc417e860c1305b11c15ea',''), ('17871','{21120}=2','Morningstar TriStar PWM: Status: Device has "heatsinkTempSensorOpen" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','878e04df7e7b416bb0d2213b5dbb80e6',''), ('17872','{21121}=2','Morningstar TriStar PWM: Status: Device has "heatsinkTempSensorShorted" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','c642ed9496ce4322809c7142d32929a5',''), ('17873','{21122}=2','Morningstar TriStar PWM: Status: Device has "highVoltageDisconnect" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','532421fe17bf4732a01a6990e34e649a',''), ('17874','{21123}=2','Morningstar TriStar PWM: Status: Device has "loadDisconnectState" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','ae90e8034baf4b21906d56d18bfa4da8',''), ('17875','{21124}=2','Morningstar TriStar PWM: Status: Device has "mosfetSOpen" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','8d8b721c6dee40499b29bee44b21589a',''), ('17876','{21125}=2','Morningstar TriStar PWM: Status: Device has "p12VoltageReferenceOff" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','8cda8e5773de4583b9baa6a6e542e32c',''), ('17877','{21126}=2','Morningstar TriStar PWM: Status: Device has "rtsDisconnected" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','1b6192b8ca364c229b35ba6de89ad56b',''), ('17878','{21127}=2','Morningstar TriStar PWM: Status: Device has "rtsMiswire" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','176de77a142d45a3ac39ea42989e209c',''), ('17879','{21128}=2','Morningstar TriStar PWM: Status: Device has "rtsShorted" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','f63029eabc8e498ea7e6336d312ac169',''), ('17880','{21129}=2','Morningstar TriStar PWM: Status: Device has "systemMiswire" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','480b69c1febf45a2971788c2f967c45d',''), ('17881','{21130}=2','Morningstar TriStar PWM: Status: Device has "tristarHot" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','4a287e4086c4458aaa3dc48bbb8ee219',''), ('17882','{21131}=2','Morningstar TriStar PWM: Status: Device has "uncalibrated" alarm flag','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','de665482d2574730a3a839948dd730ea',''), ('17883','{21132}=2','Morningstar TriStar PWM: Status: Device has "customSettingsEdit" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','514b041aebdd4ddb8ab2d1222c0ef295',''), ('17884','{21133}=2','Morningstar TriStar PWM: Status: Device has "dipSwitchChange" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','1a40ce8b87f04ab1b4f30387e9ce2d9d',''), ('17885','{21134}=2','Morningstar TriStar PWM: Status: Device has "externalShort" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','49b120c3933c43b1b7f5c77f7b359997',''), ('17886','{21135}=2','Morningstar TriStar PWM: Status: Device has "highVoltageDisconnect" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','f063b9f717c44ab988db7ac95bfca68f',''), ('17887','{21136}=2','Morningstar TriStar PWM: Status: Device has "mosfetSShorted" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','468716d748f1470cb764ce1af922164d',''), ('17888','{21137}=2','Morningstar TriStar PWM: Status: Device has "overcurrent" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','b6f65dfca421490eafff48991cdf1e3b',''), ('17889','{21138}=2','Morningstar TriStar PWM: Status: Device has "reset" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','73561a5765694633b1dc0ef1b1f60fd4',''), ('17890','{21139}=2','Morningstar TriStar PWM: Status: Device has "rtsDisconnected" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','d14c7d928f57448390c2b4c588a28c65',''), ('17891','{21140}=2','Morningstar TriStar PWM: Status: Device has "rtsShorted" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','d94067598c234968b4929404067eff86',''), ('17892','{21141}=2','Morningstar TriStar PWM: Status: Device has "softwareFault" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','886b18bee7cd4f8eb454973e2d2ae59f',''), ('17893','{21142}=2','Morningstar TriStar PWM: Status: Device has "systemMiswire" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','2e520cdafaaa4eefad5ebea71819c3a6',''), ('17894','{21143}=2','Morningstar TriStar PWM: Status: Device has "tristarHot" faults flag','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','041be44e639d4d1eadb15230a678e278',''), ('17895','({32314}>0 and {32314}<10m) or ({32314}=0 and {32315}<10m)','Morningstar TriStar PWM: Status: Device has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Morningstar TriStar PWM: Status: Device has been restarted (uptime < 10m)','f0549419f015448497cd7d15a2bf96fa',''), ('17896','{21145}=1','Morningstar TriStar PWM: Status: Failed to fetch data','','0','2','Zabbix has not received data for items for the last 5 minutes.',NULL,'0','0','0','','0','','1','','0','Morningstar TriStar PWM: Status: Failed to fetch data (or no data for 5m)','64aa2a79fe854def8e179a4d27790417',''), ('17897','{21146}>{$BATTERY.TEMP.MAX.CRIT}','Morningstar TriStar PWM: Temperature: Critically high battery temperature','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar TriStar PWM: Temperature: Critically high battery temperature (over {$BATTERY.TEMP.MAX.CRIT}C for 5m)','e759b90e2bf44bbb8e5efe5b9e458e40',''), ('17898','{21147}<{$BATTERY.TEMP.MIN.CRIT}','Morningstar TriStar PWM: Temperature: Critically low battery temperature','','0','4','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar TriStar PWM: Temperature: Critically low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m)','e57f335f657d45768509f139d31dcdae',''), ('17899','{21148}>{$BATTERY.TEMP.MAX.WARN}','Morningstar TriStar PWM: Temperature: High battery temperature','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar TriStar PWM: Temperature: High battery temperature (over {$BATTERY.TEMP.MAX.WARN}C for 5m)','7d1444dba9334e91ad425a6f2ff9fef9',''), ('17900','{21149}<{$BATTERY.TEMP.MIN.WARN}','Morningstar TriStar PWM: Temperature: Low battery temperature','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar TriStar PWM: Temperature: Low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m)','14fe4a22b28c4d08a24da51a54e36e81',''), ('17901','{21150}>{#VOLTAGE.MAX.CRIT}','Morningstar TriStar PWM: Battery: Critically high battery voltage','','0','4','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar TriStar PWM: Battery: Critically high battery voltage (over {#VOLTAGE.MAX.CRIT}V for 5m)','156ec13d673b4a8aa02a87b1794cb722',''), ('17902','{21151}<{#VOLTAGE.MIN.CRIT}','Morningstar TriStar PWM: Battery: Critically low battery voltage','','0','4','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar TriStar PWM: Battery: Critically low battery voltage (below {#VOLTAGE.MIN.CRIT}V for 5m)','5e4400321f4f45b39397c68a4ba54d8e',''), ('17903','{21152}>{#VOLTAGE.MAX.WARN}','Morningstar TriStar PWM: Battery: High battery voltage','','0','2','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar TriStar PWM: Battery: High battery voltage (over {#VOLTAGE.MAX.WARN}V for 5m)','fa6502a4a0214f7f933e982182d21d6b',''), ('17904','{21153}<{#VOLTAGE.MIN.WARN}','Morningstar TriStar PWM: Battery: Low battery voltage','','0','2','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Morningstar TriStar PWM: Battery: Low battery voltage (below {#VOLTAGE.MIN.WARN}V for 5m)','a5275748f4c742ea8ab9efd266901e95',''), ('17905','{21154}={$CHARGE.STATE.CRIT}','Morningstar TriStar PWM: Battery: Device charge in critical state','','0','4','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','da21473ce79c42269cc24d3e470b7d07',''), ('17906','{21155}={$CHARGE.STATE.WARN}','Morningstar TriStar PWM: Battery: Device charge in warning state','','0','2','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','79a592050bc64c018cfa5c7b779fba02',''), ('17907','{21156}={$LOAD.STATE.CRIT:"lvd"} or {21156}={$LOAD.STATE.CRIT:"fault"}','Morningstar TriStar PWM: Load: Device load in critical state','','0','4','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','9035e0a92d384a3c844b8a4d4ebd1eb9',''), ('17908','{21157}={$LOAD.STATE.WARN:"lvdWarning"} or {21157}={$LOAD.STATE.WARN:"override"}','Morningstar TriStar PWM: Load: Device load in warning state','','0','2','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','a2d13f97c4bd46bfab8e74a2f2a7df2e',''), ('17909','{31345}>{$TEMP_CRIT:"{#SNMPVALUE}"} or {31346}={$TEMP_CRIT_STATUS}','Netgear Fastpath: #{#SNMPVALUE}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31347}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Netgear Fastpath: #{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"}','bead54e2d2f34d45bafb41600e84ac2d',''), ('17910','{31348}>{$TEMP_WARN:"{#SNMPVALUE}"} or {31349}={$TEMP_WARN_STATUS}','Netgear Fastpath: #{#SNMPVALUE}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{31350}<{$TEMP_WARN:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Netgear Fastpath: #{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"}','f3444dbde8344a1782449ec4260972d1',''), ('17929','{24442}>0 and {24443}<>{24444}','NetApp FAS3220: Number of failed disks has changed','','0','2',E'{{ITEM.LASTVALUE2}.regsub("(.*)", \\1)}',NULL,'1','0','1','{24442}=0','0','','0','Current value: {ITEM.LASTVALUE1}','0','','3e2d95918f364248ae07a2e436a986a0',''), ('17930','{21193}>0 and {21194}={21194}','NetApp FAS3220: Node {#NODE.NAME}: Degraded power supplies count is more than zero','','0','3',E'{{ITEM.VALUE2}.regsub("(.*)", \\1)}',NULL,'0','2','0','','0','','0','','0','','64a737bc63b1463eb533d2a187c6b58a',''), ('17931','{21195}>0 and {21196}={21196}','NetApp FAS3220: Node {#NODE.NAME}: Failed FAN count is over than zero','','0','4',E'{{ITEM.VALUE2}.regsub("(.*)", \\1)}',NULL,'0','2','0','','0','','0','','0','','36b7326a738e41b7be3e0a478bc9f858',''), ('17932','{21197}=2','NetApp FAS3220: Node {#NODE.NAME}: Temperature is over than recommended','','0','4','The hardware will shutdown if the temperature exceeds critical thresholds.',NULL,'0','2','0','','0','','0','','0','','e03547e4ede74580909ed57c7f53dac1',''), ('17933','{21198}=0','NetApp FAS3220: Node {#NODE.NAME}: Node can not communicate with the cluster','','0','4','',NULL,'0','2','0','','0','','1','','0','','0c331366ac9d4398bfc815c3cb241e7c',''), ('17934','{21199}<>1','NetApp FAS3220: Node {#NODE.NAME}: NVRAM battery status is not OK','','0','3','',NULL,'0','2','0','','0','','1','','0','','567a28dd5b364aea84a43438aee24c5c',''), ('17935','{21200}<10m','NetApp FAS3220: Node {#NODE.NAME}: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','2','0','','0','','1','','0','NetApp FAS3220: Node {#NODE.NAME}: {HOST.NAME} has been restarted (uptime < 10m)','6040422dc0b34863a90af558d72956ee',''), ('17936','{21201}>{$CPU.UTIL.CRIT}','NetApp FAS3220: Node {#NODE.NAME}: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','NetApp FAS3220: Node {#NODE.NAME}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','adb98d2d2f13435bbe1897208bb86989',''), ('17937','{21202}<{$FAS3220.FS.AVAIL.MIN.CRIT:"{#FSNAME}"} and {$FAS3220.FS.USE.PCT:"{#FSNAME}"}=0','NetApp FAS3220: {#VSERVER}{#FSNAME}: Disk space is too low','','0','4','',NULL,'0','2','0','','0','','0','','0','NetApp FAS3220: {#VSERVER}{#FSNAME}: Disk space is too low (below {$FAS3220.FS.AVAIL.MIN.CRIT:"{#FSNAME}"} for {$FAS3220.FS.TIME:"{#FSNAME}"})','6ab014a44ad84966a97125c478b10789',''), ('17938','{21203}>{$FAS3220.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and {$FAS3220.FS.USE.PCT:"{#FSNAME}"}=1','NetApp FAS3220: {#VSERVER}{#FSNAME}: Disk space is too low','','0','4','',NULL,'0','2','0','','0','','0','','0','NetApp FAS3220: {#VSERVER}{#FSNAME}: Disk space is too low (used over {$FAS3220.FS.PUSED.MAX.CRIT:"{#FSNAME}"}% for {$FAS3220.FS.TIME:"{#FSNAME}"})','712d9096c8064ef19005c4989794db45',''), ('17939','{21204}<>1','NetApp FAS3220: Node {#NODE.NAME}: Node cannot takeover it''s HA partner {#PARTNER.NAME}. Reason: {ITEM.VALUE}','','0','4','Possible reasons: unknownReason(2), disabledByOperator(3), interconnectOffline(4), disabledByPartner(5), takeoverFailed(6), mailboxIsInDegradedState(7), partnermailboxIsInUninitialisedState(8), mailboxVersionMismatch(9), nvramSizeMismatch(10), kernelVersionMismatch(11), partnerIsInBootingStage(12), diskshelfIsTooHot(13), partnerIsPerformingRevert(14), nodeIsPerformingRevert(15), sametimePartnerIsAlsoTryingToTakeUsOver(16), alreadyInTakenoverMode(17), nvramLogUnsynchronized(18), stateofBackupMailboxIsDoubtful(19).',NULL,'0','2','0','','0','','0','','0','','798e093f3c9941e6a2d7edc24dd22835',''), ('17940','{21205}=1','NetApp FAS3220: Node {#NODE.NAME}: HA is not licensed','','0','3','The value notConfigured(1) indicates that the HA is not licensed.',NULL,'0','2','0','','0','','0','','0','','f4ee8e2a63e8471598b6aad929151404',''), ('17941','{21206}=5','NetApp FAS3220: Node {#NODE.NAME}: Node has been taken over','','0','4','The thisNodeDead(5) setting indicates that this node has been takenover.',NULL,'0','2','0','','0','','0','','0','','db2c37150e1649fba89898459150ada8',''), ('17943','{21211}<>2 and {21212}=1','NetApp FAS3220: Node {#NODE}: port {#IFNAME} ({#TYPE}): Link down','','0','3','Link state is not UP and the port status is set ''UP'' by an administrator.',NULL,'0','2','0','','0','','1','','0','','2c7730f4606a4833bc729c108349d7b4',''), ('17944','{21213}<>0 and length({21214})>0','NetApp FAS3220: Node {#NODE}: port {#IFNAME} ({#TYPE}): Port is not healthy','','0','1',E'{{ITEM.LASTVALUE2}.regsub("(.*)", \\1)}',NULL,'0','2','0','','0','','0','','0','','a95e60addfe04055bb15138dd9d1f37f',''), ('17949','{21227}>={$AMI.TRUNK_ACTIVE_CHANNELS.MAX.WARN:"{#OBJECTNAME}"}','Asterisk: IAX trunk "{#OBJECTNAME}": Number of the IAX trunk "{#OBJECTNAME}" active channels is too high','','0','2','The IAX trunk may not be able to process new calls.',NULL,'0','2','0','','0','','0','','0','Asterisk: IAX trunk "{#OBJECTNAME}": Number of the IAX trunk "{#OBJECTNAME}" active channels is too high (over {$AMI.TRUNK_ACTIVE_CHANNELS.MAX.WARN:"{#OBJECTNAME}"} for 10m)','e2a6c7a9b6234e2aae20c9aa480f9ef1',''), ('17950','{21228}>={$AMI.TRUNK_ACTIVE_CHANNELS.MAX.WARN:"{#OBJECTNAME}"}','Asterisk: PJSIP trunk "{#OBJECTNAME}": Number of the PJSIP trunk "{#OBJECTNAME}" active channels is too high','','0','2','The PJSIP trunk may not be able to process new calls.',NULL,'0','2','0','','0','','0','','0','Asterisk: PJSIP trunk "{#OBJECTNAME}": Number of the PJSIP trunk "{#OBJECTNAME}" active channels is too high (over {$AMI.TRUNK_ACTIVE_CHANNELS.MAX.WARN:"{#OBJECTNAME}"} for 10m)','f192d555011c42c28c6a8f52c0388fe1',''), ('17951','{21229}>{$AMI.QUEUE_CALLERS.MAX.WARN:"{#QUEUE}"}','Asterisk: "{#QUEUE}": Number of callers in the queue "{#QUEUE}" is too high','','0','2','There is a large number of calls in the queue.',NULL,'0','2','0','','0','','0','','0','Asterisk: "{#QUEUE}": Number of callers in the queue "{#QUEUE}" is too high (over {$AMI.QUEUE_CALLERS.MAX.WARN:"{#QUEUE}"} for 10m)','4f72c6a755be465287f36b8b12d3175b',''), ('17952','{21230}>={$AMI.TRUNK_ACTIVE_CHANNELS.MAX.WARN:"{#OBJECTNAME}"}','Asterisk: SIP trunk "{#OBJECTNAME}": Number of the SIP trunk "{#OBJECTNAME}" active channels is too high','','0','2','The SIP trunk may not be able to process new calls.',NULL,'0','2','0','','0','','0','','0','Asterisk: SIP trunk "{#OBJECTNAME}": Number of the SIP trunk "{#OBJECTNAME}" active channels is too high (over {$AMI.TRUNK_ACTIVE_CHANNELS.MAX.WARN:"{#OBJECTNAME}"} for 10m)','51820b1326f84f51ba0e561946275133',''), ('17953','{21231}=0 and length({21232})>0','Jenkins: Disk space is too low','','0','2',E'Jenkins disk space monitors are reporting the disk space as less than the configured threshold. The message will reference the first node which fails this check. Health check message: {{ITEM.LASTVALUE2}.regsub("(.*)",\\1)}',NULL,'0','0','0','','0','','0','','0','','d79dc9c1dab142d18791172e6df0a4e9',''), ('17954','{21233}=0 and length({21234})>0','Jenkins: One or more Jenkins plugins failed to start','','0','1',E'A failure is typically indicative of a potential issue within the Jenkins installation that will either be solved by explicitly disabling the failing plugin(s) or by resolving the corresponding plugin dependency issues. Health check message: {{ITEM.LASTVALUE2}.regsub("(.*)",\\1)}',NULL,'0','0','0','','0','','1','','0','','121e23bd172d447cb975595685495a93',''), ('17955','{21235}=0 and length({21236})>0','Jenkins: Temporary space is too low','','0','2',E'Jenkins temporary space monitors are reporting the temporary space as less than the configured threshold. The message will reference the first node which fails this check. Health check message: {{ITEM.LASTVALUE2}.regsub("(.*)",\\1)}',NULL,'0','0','0','','0','','0','','0','','34de8503a2c84fffb1beb701a4a991ab',''), ('17956','{21237}=0 and length({21238})>0','Jenkins: There are deadlocked threads in Jenkins master JVM','','0','2',E'There are any deadlocked threads in the Jenkins master JVM. Health check message: {{ITEM.LASTVALUE2}.regsub(''(.*)'',\\1)}',NULL,'0','0','0','','0','','0','','0','','f0a09eb0743948bb8f52a4c28aa728c5',''), ('17957','{21239}>{$JENKINS.FILE_DESCRIPTORS.MAX.WARN}','Jenkins: Current number of used files is too high','','0','2','',NULL,'0','0','0','','0','','0','','0','Jenkins: Current number of used files is too high (over {$JENKINS.FILE_DESCRIPTORS.MAX.WARN}% for 5m)','5ec22ac264d445769039bd4c13e41bf7',''), ('17958','{21240}=0','Jenkins: Service has no online nodes','','0','3','',NULL,'0','0','0','','0','','0','','0','','4cee7d0f5faf4595a67c6c0e33153f4d',''), ('17959','{21241}=0','Jenkins: Service is down','','0','3','',NULL,'0','0','0','','0','','1','','0','','ae12ac7aa5c54858a794eb8fc888f90c',''), ('17960','{21242}<10m','Jenkins: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Jenkins: {HOST.NAME} has been restarted (uptime < 10m)','7d20942598a648ebb2e03f9acdb3e5e3',''), ('17961','{23222}<>{23223} and length({23224})>0','Jenkins: Version has changed','','0','1','The Jenkins version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Jenkins: Version has changed (new version: {ITEM.VALUE})','3dd66b51ed1b4fc2a250daf3e9999e4f',''), ('17962','{21245}=1 and length({21246})>0','Jenkins: Computer [{#DISPLAY_NAME}]: Node is down','','0','3',E'Node down with reason: {{ITEM.LASTVALUE2}.regsub("(.*)",\\1)}',NULL,'0','2','0','','0','','0','','0','','a2347420d1f14fd2b55cbb0865282268',''), ('17963','{21247}=1 and length({21248})>0','Jenkins: Computer [{#DISPLAY_NAME}]: Node is temporarily offline','','0','1',E'Node is temporarily Offline with reason: {{ITEM.LASTVALUE2}.regsub("(.*)",\\1)}',NULL,'0','2','0','','0','','1','','0','','bf04115784bc48ffa27d5d2d65176853',''), ('17964','{21249}<{$JENKINS.JOB.HEALTH.SCORE.MIN.WARN}','Jenkins: Job [{#NAME}]: Job is unhealthy','','0','2','',NULL,'0','2','0','','0','','1','','0','','c440cd7d92884c9594c8616f1ac99d74',''), ('17965','{21250}=1 or {21251}=1 or {21252}=1','Hikvision: Authorisation error','','0','2','Check the correctness of the authorization data',NULL,'0','0','0','','0','','1','','0','','2bd6d99edd0f4b2d8045e43e4586b637',''), ('17966','{21253}=2 or {21254}=2 or {21255}=2','Hikvision: Error receiving data','','0','2','Check the availability of the HTTP port',NULL,'0','0','0','','0','','1','','0','','58b5d210fe24434b9aaa365fba764742',''), ('17967','{21256}>{$CPU.UTIL.CRIT}','Hikvision: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Hikvision: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','0ae4dbcc05544fb7b67183fcf3b9654b',''), ('17968','{23325}<>{23326} and length({23327})>0','Hikvision: Version has changed','','0','1','Hikvision camera version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Hikvision: Version has changed (new version: {ITEM.VALUE})','3c0b5a0046894a54803cd984cda13fa2',''), ('17970','{23328}<>{23329} and length({23330})>0','Hikvision: Camera has been replaced','','0','1','Camera serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Hikvision: Camera has been replaced (new serial number received)','281999cbd6324aacbbb86b4945000c60',''), ('17971','{21262}<10m','Hikvision: Camera has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Hikvision: Camera has been restarted (uptime < 10m)','f46b43fe9b354990929e7fdb80b792ec',''), ('17972','{23331}<>{23332} or {23333}<>{23334} or {23335}<>{23336}','Hikvision: Channel "{#PTZ_CHANNEL_ID}": PTZ position changed','','0','1','The direction of the camera has changed',NULL,'0','2','0','','0','','1','','0','','dbf391b5e18b4e018d889e460b7acc74',''), ('17973','{21266}=1','Hikvision: Channel "{#PTZ_CHANNEL_ID}": Authorisation error','','0','2','Check the correctness of the authorization data',NULL,'0','2','0','','0','','1','','0','','7ce39ff8b5f14fcbb7b575f9c44a9efd',''), ('17974','{21267}=2','Hikvision: Channel "{#PTZ_CHANNEL_ID}": Error receiving data','','0','2','Check the availability of the HTTP port',NULL,'0','2','0','','0','','1','','0','','c702b7321b664f5d950b0d879bbd7371',''), ('17975','{21268}<>{$HIKVISION_STREAM_HEIGHT} or {21269}<>{$HIKVISION_STREAM_WIDTH}','Hikvision: Channel "{#CHANNEL_ID}": Invalid video stream resolution parameters','','0','2','expected: {$HIKVISION_STREAM_WIDTH} px x {$HIKVISION_STREAM_HEIGHT} px received: {ITEM.LASTVALUE2} x {ITEM.LASTVALUE1}',NULL,'0','2','0','','0','','1','','0','','16cf4d23b3c8410586703efca81ebe52',''), ('17976','{23337}<>{23338} or {23339}<>{23340} or {23341}<>{23342} or {23343}<>{23344} or {23345}<>{23346}','Hikvision: Channel "{#CHANNEL_ID}": Parameters of video stream are changed','','0','1','',NULL,'0','2','0','','0','','1','','0','','4f2a512d8f95414495dec5670e5e9680',''), ('17977','{21275}/{21276}*100>{$IGNITE.CHECKPOINT.PUSED.MAX.HIGH}','Ignite: Data region {#JMXNAME}: Checkpoint buffer utilization is too high','','0','4','Checkpoint buffer utilization is high. Threads will be throttled to avoid buffer overflow. It can be caused by high disk utilization.',NULL,'0','2','0','','0','','0','','0','Ignite: Data region {#JMXNAME}: Checkpoint buffer utilization is too high (over {$IGNITE.CHECKPOINT.PUSED.MAX.HIGH} in 5m)','480b7cc1a967436b8620f9552f8ac4f6',''), ('17978','{21277}/{21278}*100>{$IGNITE.CHECKPOINT.PUSED.MAX.WARN}','Ignite: Data region {#JMXNAME}: Checkpoint buffer utilization is too high','','0','2','Checkpoint buffer utilization is high. Threads will be throttled to avoid buffer overflow. It can be caused by high disk utilization.',NULL,'0','2','0','','0','','0','','0','Ignite: Data region {#JMXNAME}: Checkpoint buffer utilization is too high (over {$IGNITE.CHECKPOINT.PUSED.MAX.WARN} in 5m)','67eddf17affd49b7844cd0846bc56f7d',''), ('17979','{21279}/{21280}*100>{$IGNITE.DATA.REGION.PUSED.MAX.HIGH}','Ignite: Data region {#JMXNAME}: Data region utilization is too high','','0','4','Data region utilization is high. Increase data region size or delete any data.',NULL,'0','2','0','','0','','0','','0','Ignite: Data region {#JMXNAME}: Data region utilization is too high (over {$IGNITE.DATA.REGION.PUSED.MAX.HIGH} in 5m)','736fbc965aa448309d022de34354decf',''), ('17980','{21281}/{21282}*100>{$IGNITE.DATA.REGION.PUSED.MAX.WARN}','Ignite: Data region {#JMXNAME}: Data region utilization is too high','','0','2','Data region utilization is high. Increase data region size or delete any data.',NULL,'0','2','0','','0','','0','','0','Ignite: Data region {#JMXNAME}: Data region utilization is too high (over {$IGNITE.DATA.REGION.PUSED.MAX.WARN} in 5m)','6ded19e7616b45f08e37e716d8256c5e',''), ('17981','{21283}>0','Ignite: Data region {#JMXNAME}: Node started to evict pages','','0','1','You store more data than region can accommodate. Data started to move to disk it can make requests work slower. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','','e210c54ba16f4d879d8a4fb88c365c53',''), ('17982','{21284}>0','Ignite: Data region {#JMXNAME}: Pages replace rate more than 0','','0','2','There is more data than DataRegionMaxSize. Cluster started to replace pages in memory. Page replacement can slow down operations.',NULL,'0','2','0','','0','','0','','0','','70ef41de47b2463a9c580e790754a49c',''), ('17983','{21285} > {$IGNITE.PME.DURATION.MAX.HIGH}','Ignite: [{#JMXIGNITEINSTANCENAME}]: PME duration is too long','','0','4','PME duration is over {$IGNITE.PME.DURATION.MAX.HIGH}ms. Looks like PME is hung.',NULL,'0','2','0','','0','','0','','0','Ignite: [{#JMXIGNITEINSTANCENAME}]: PME duration is too long (over {$IGNITE.PME.DURATION.MAX.HIGH} for 5 min)','81587d91606348a6b5385d4b59331adf',''), ('17984','{21286} > {$IGNITE.PME.DURATION.MAX.WARN}','Ignite: [{#JMXIGNITEINSTANCENAME}]: PME duration is too long','','0','2','PME duration is over {$IGNITE.PME.DURATION.MAX.WARN}ms.',NULL,'0','2','0','','0','','0','','0','Ignite: [{#JMXIGNITEINSTANCENAME}]: PME duration is too long (over {$IGNITE.PME.DURATION.MAX.WARN} for 5 min)','0de7ca62c7044e48a8931cf0dfe8ce34',''), ('17985','{21287} > {$IGNITE.THREADS.COUNT.MAX.WARN}','Ignite: [{#JMXIGNITEINSTANCENAME}]: Number of running threads is too high','','0','2','Number of running threads is over {$IGNITE.THREADS.COUNT.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','Ignite: [{#JMXIGNITEINSTANCENAME}]: Number of running threads is too high (over {$IGNITE.THREADS.COUNT.MAX.WARN} for 15 min)','8c4ddb0485464c409077f86241956a56',''), ('17986','{21288} > {$IGNITE.JOBS.QUEUE.MAX.WARN}','Ignite: [{#JMXIGNITEINSTANCENAME}]: Number of queued jobs is too high','','0','2','Number of queued jobs is over {$IGNITE.JOBS.QUEUE.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','Ignite: [{#JMXIGNITEINSTANCENAME}]: Number of queued jobs is too high (over {$IGNITE.JOBS.QUEUE.MAX.WARN} for 15 min)','a723fdecd1b34609b92bb351b1b44a46',''), ('17987','{21289}>{21290}','Ignite: [{#JMXIGNITEINSTANCENAME}]: There are nodes is not in topology','','0','1','One or more server node left the topology. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','','17f9fd03d3144812bf776c0f8ca836e4',''), ('17988','{21291}>0','Ignite: [{#JMXIGNITEINSTANCENAME}]: Server node added to the topology','','0','1','One or more server node added to the topology. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','','e2c38e56189d4ed79bac6bd4ca8e477c',''), ('17989','{21292}<0','Ignite: [{#JMXIGNITEINSTANCENAME}]: Server node left the topology','','0','2','One or more server node left the topology. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','','81efb2805dbc49719a316d1992aaac3a',''), ('17990','{23435}<>{23436} and length({23437})>0','Ignite: [{#JMXIGNITEINSTANCENAME}]: Version has changed','','0','1','[{#JMXIGNITEINSTANCENAME}] version has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Ignite: [{#JMXIGNITEINSTANCENAME}]: Version has changed (new version: {ITEM.VALUE})','08a1f4bd227e4f96b501a4681bf9fc8f',''), ('17991','{21295}=1','Ignite: [{#JMXIGNITEINSTANCENAME}]: Failed to fetch info data','','0','2','Zabbix has not received data for items for the last 10 minutes.',NULL,'0','2','0','','0','','1','','0','Ignite: [{#JMXIGNITEINSTANCENAME}]: Failed to fetch info data (or no data for 10m)','d90f8b10d32240d882317bf9fb628eae',''), ('17992','{21296}<10m','Ignite: [{#JMXIGNITEINSTANCENAME}]: Instance has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','2','0','','0','','1','','0','Ignite: [{#JMXIGNITEINSTANCENAME}]: Instance has been restarted (uptime < 10m)','f3415dd32a3b450f80b29b83bd54fdef',''), ('17993','{23438}<>{23439} and length({23440})>0','Ignite: [{#JMXIGNITEINSTANCENAME}]: Coordinator has changed','','0','2','[{#JMXIGNITEINSTANCENAME}] version has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Ignite: [{#JMXIGNITEINSTANCENAME}]: Version has changed (new version: {ITEM.VALUE})','82e24abcc7874382a2af0018a4a001e1',''), ('17995','{23441}<>{23442} and length({23443})>0','Ignite: Cache group [{#JMXNAME}]: List of caches has changed','','0','1','List of caches has changed. Significant changes have occurred in the cluster. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Ignite: Cache group [{#JMXNAME}]: Version has changed (new version: {ITEM.VALUE})','b500b51a688d4b55942ce7311e82c54f',''), ('17996','{21303}>0','Ignite: Cache group [{#JMXNAME}]: Rebalance in progress','','0','1','Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','','32a4aa1043b44c6198f01951d9ac32b4',''), ('17997','{21304}=0','Ignite: Cache group [{#JMXNAME}]: There is no copy for partitions','','0','2','',NULL,'0','2','0','','0','','0','','0','','8755dd8b09e347659aee2450bcdd5c28',''), ('17998','{21305} > {$IGNITE.THREAD.QUEUE.MAX.WARN:"{#JMXNAME}"}','Ignite: Thread pool [{#JMXNAME}]: Too many messages in queue','','0','3','Number of messages in queue more than {$IGNITE.THREAD.QUEUE.MAX.WARN:"{#JMXNAME}"}.',NULL,'0','2','0','','0','','0','','0','Ignite: Thread pool [{#JMXNAME}]: Too many messages in queue (over {$IGNITE.THREAD.QUEUE.MAX.WARN:"{#JMXNAME}"} for 5 min)','1d29e40969d54e9090724c8a774eaf4d',''), ('17999','{21306}={21307}','Ignite: Cache group [{#JMXGROUP}]: All entries are in heap','','0','1','All entries are in heap. Possibly you use eager queries it may cause out of memory exceptions for big caches. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','','97aa5e21a05743b9bb6714d7d5d28a67',''), ('18000','{21308} > {21309}','Ignite: Cache group [{#JMXGROUP}]: Success transactions less than rollbacks for 5m','','0','2','',NULL,'0','2','0','','0','','0','','0','','bfc948858de94088a96c9eddb14b893d',''), ('18001','{21310}>0 and {21311}=0','Ignite: Cache group [{#JMXGROUP}]: There are no success transactions for cache for 5m','','0','3','',NULL,'0','2','0','','0','','0','','0','','1d80fe9b052444359eca04629e45e799',''), ('18002','{21312}/{21313}*100>{$REDIS.MEM.PUSED.MAX.WARN}','Redis: Memory usage is too high','','0','2','',NULL,'0','2','0','','0','','0','','0','Redis: Memory usage is too high (over {$REDIS.MEM.PUSED.MAX.WARN}% in 5m)','0c3560588d2d421c843c006ef5fa4645',''), ('18003','{21314}=1','HP iLO: #{#CACHE_CNTRL_INDEX}: Disk array cache controller battery is in warning state','','0','2','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','384fd446bcb042f89ca348ec7459f1aa',''), ('18004','{21315}=1 or {21316}=1 or {21317}=1','HP iLO: #{#CACHE_CNTRL_INDEX}: Disk array cache controller is in warning state','','0','2','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7370a7c6388c4ff8b094959ca0c34a72',''), ('18005','{21318}=1 and {21319}<>{$DISK_ARRAY_CACHE_WARN_STATUS:"invalid"}','HP iLO: #{#CACHE_CNTRL_INDEX}: Disk array cache controller is not in optimal state','','0','2','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4db3b402580c43eba0d9dc6349cf95ca',''), ('18006','{21320} = 1','HP iLO: {#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','b7786ff4c57a4143b79e95bfc5470dcd',''), ('18007','{21321} = 4','HP iLO: {#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','11365923a7b242fea930250e26fcc548',''), ('18008','{21322} = 3','HP iLO: {#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','dd0fd44bd7bb43bd85fdd63a199e0e69',''), ('18009','{21323} = 1','HP iLO: Ambient: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','e955550a2496435eb799d317f2036c55',''), ('18010','{21324} = 4','HP iLO: Ambient: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','8cd2c8b62b164923afed02da2be52dcc',''), ('18011','{21325} = 3','HP iLO: Ambient: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','d11e13c5714a42d49bea54d837f9f418',''), ('18012','{21326} = 1','HP iLO: CPU-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','512654c27ea94ed4993380793a67f68b',''), ('18013','{21327} = 4','HP iLO: CPU-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','7853d0c8ed4a4ebe98e38c7499417ebe',''), ('18014','{21328} = 3','HP iLO: CPU-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','0434d2a6a1b54cb7bcd0e6f58d973be4',''), ('18015','{21329} = 1','HP iLO: I/O-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','2875e5ebea474eccac8d53dd13539bd6',''), ('18016','{21330} = 4','HP iLO: I/O-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','593b167fe62e4a7fae35ebb508540325',''), ('18017','{21331} = 3','HP iLO: I/O-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','bf6a10f0596a45b4b8f8a2f0acf7c778',''), ('18018','{21332} = 1','HP iLO: Memory-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','881f28f6411c467493c56a64237d8ca8',''), ('18019','{21333} = 4','HP iLO: Memory-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','c05402995e6146d28c53fc33e88d8164',''), ('18020','{21334} = 3','HP iLO: Memory-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','bfac7287a9d842cb89d8089af72e2e12',''), ('18021','{21335} = 1','HP iLO: PSU-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','14ab7adae80c4859952381bfe17a14a3',''), ('18022','{21336} = 4','HP iLO: PSU-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','97481f1183c3444c851fe99428bd7bf3',''), ('18023','{21337} = 3','HP iLO: PSU-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','8c7f5250756946a595b742519e4890a5',''), ('18024','{21338} = 1','HP iLO: System-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','d161829ab0ec496bb4718ed156853c3f',''), ('18025','{21339} = 4','HP iLO: System-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','a65a8386fdd048f986a3aa3fcf29a959',''), ('18026','{21340} = 3','HP iLO: System-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','0b13f436c7984eef9624632bb5f43970',''), ('18027','{21341}<>200','MS SharePoint: Error getting directory structure.','','0','2','Error getting directory structure. Check the Zabbix server log for more details.',NULL,'0','0','0','','0','','0','','0','','ed1d66a1410e4af79af462e749ce979b',''), ('18028','{21342}>2000','MS SharePoint: Server responds slowly to API request','','0','2','',NULL,'0','0','0','','0','','0','','0','','9e5bcc08d5f040de86afa38f5a653dd7',''), ('18029','{33354}>"{$SHAREPOINT.MAX_HEALTH_SCORE}"','MS SharePoint: Bad health score','','0','3','',NULL,'0','0','0','','0','','0','','0','','3a0451e3edda4a73aded57aa254fd813',''), ('18030','{23268}<>{23269}','MS SharePoint: Sharepoint object is changed','','0','1','Updated date of modification of folder / file',NULL,'0','2','0','','0','','1','{#SHAREPOINT.LLD.FULL_PATH}','0','','d1683e2fcdda45969ff451e43ae696c2',''), ('18031','(now() - {35793} < 10m) and {35794} = 1','VMware Guest: VM has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','VMware Guest: VM has been restarted (uptime < 10m)','da703e83e2e146569c173fd9bc6988dd',''), ('18032','{23281}<>{23282} and {23283}<{#MULTIPATH.COUNT}','VMware Hypervisor: The multipath count has been changed','','0','3','The number of available datastore paths is less than registered (`{#MULTIPATH.COUNT}`).',NULL,'0','2','0','','0','','1','Current: {ITEM.LASTVALUE}, Registered: {#MULTIPATH.COUNT}','0','VMware Hypervisor: The multipath count for datastore [{#DATASTORE}] has been changed','8f1de4827ba446ef902ca5fa44109c6d',''), ('18033','{21348}>{$MEMORY.UTIL.MAX}','Hikvision: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','Hikvision: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','62cfa0b87f234f1cb67b9b5b6b2fa8f2',''), ('18034','{21349}>={21350}','Ignite: Cache group [{#JMXNAME}]: One or more backups are unavailable','','0','2','',NULL,'0','2','0','','0','','0','','0','','1b85d75607294d6a8fded5b85f7f9a4a',''), ('18108','{21566}>{$MEMORY.UTIL.MAX}','Alcatel TiMOS: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','Alcatel TiMOS: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','a22f13e245b944e991c2c9850a731a3c',''), ('18109','{21567}>{$MEMORY.UTIL.MAX}','Brocade FC: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','Brocade FC: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','1991ae08b008488380db02160b15160e',''), ('18117','{21575}>{$MEMORY.UTIL.MAX}','Dell Force S-Series: #{#SNMPINDEX}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','Dell Force S-Series: #{#SNMPINDEX}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','41baaaa2eb6246b7982ac76928fbd0f8',''), ('18118','{21576}>{$MEMORY.UTIL.MAX}','D-Link DES 7200: {#SNMPINDEX}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','D-Link DES 7200: {#SNMPINDEX}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','fd484f9b3a6a414fb2bba47d5804cc62',''), ('18119','{21577}>{$MEMORY.UTIL.MAX}','D-Link DES_DGS Switch: #{#SNMPVALUE}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','D-Link DES_DGS Switch: #{#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','29352d2cb80f47d98ca6c6d6d366a29f',''), ('18120','{21578}>{$MEMORY.UTIL.MAX}','Extreme EXOS: #{#SNMPVALUE}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','Extreme EXOS: #{#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','50733fd8b4a641708e3a90292f182f20',''), ('18121','{21579}>{$MEMORY.UTIL.MAX}','HP Comware HH3C: {#MODULE_NAME}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','HP Comware HH3C: {#MODULE_NAME}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','e8d3cb45afea4cbd935c9ea668746260',''), ('18122','{21580}>{$MEMORY.UTIL.MAX}','HP Enterprise Switch: #{#SNMPVALUE}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','HP Enterprise Switch: #{#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','4fe0382fdee141adac03788c8810e387',''), ('18123','{21581}>{$MEMORY.UTIL.MAX}','Huawei VRP: {#ENT_NAME}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','Huawei VRP: {#ENT_NAME}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','2d93533c7cc74dc9a85e280605e21e7d',''), ('18124','{21582}>{$MEMORY.UTIL.MAX}','Juniper: {#SNMPVALUE}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','Juniper: {#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','ab1f3dcba55d41da974c3ac60ca5b8f2',''), ('18125','{21583}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','e4b4ba5ec80c4d83adbb10739edf4574',''), ('18126','{21584}>{$MEMORY.UTIL.MAX}','Netgear Fastpath: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','Netgear Fastpath: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','21c1a017dcc14148a9020207a6fd7488',''), ('18127','{21585}>{$MEMORY.UTIL.MAX}','QTech QSW: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','QTech QSW: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','082a768e190d4e8e97e0857cd3412ea1',''), ('18128','{21586}>{$MEMORY.UTIL.MAX}','TP-LINK: #{#SNMPVALUE}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','TP-LINK: #{#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','3bd3af786eb34b5e9a05f3113fce8007',''), ('18129','{21587}>{$MEMORY.UTIL.MAX}','Ubiquiti AirOS: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','Ubiquiti AirOS: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','30c0c80ae6df45bb96c434016e394bba',''), ('18150','{30967}<{$SWAP.PFREE.MIN.WARN} and {30968}>0','Linux: High swap space usage','','0','2','If there is no swap configured, this trigger is ignored.',NULL,'0','0','0','','0','','0','Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}','0','Linux: High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free)','16e6a4d340164dee9379a3fc0aac0576',''), ('18152','{21637}>{$MEMORY.UTIL.MAX}','Linux: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','Linux: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','72304b3a167e41ccbcdb75568c65294a',''), ('18183','{24404}<>{24405} and length({24406})>0','Huawei OceanStor 5300 V5: Storage version has been changed','','0','1','OceanStor 5300 V5 version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Huawei OceanStor 5300 V5: Version has changed (new version: {ITEM.VALUE})','b6eb791cc14644dfb0a69a2cce150ab1',''), ('18184','{21704}<>1','Huawei OceanStor 5300 V5: BBU {#ID} on {#LOCATION}: Health status is not Normal','','0','4','',NULL,'0','2','0','','0','','0','','0','','fb73cddd30164af8aa243bd3e2b2f803',''), ('18185','{21705}<>2','Huawei OceanStor 5300 V5: BBU {#ID} on {#LOCATION}: Running status is not Online','','0','3','',NULL,'0','2','0','','0','','0','','0','','15d809b0be1c4d1da9158a83d303789c',''), ('18186','{21706}>{$CPU.UTIL.CRIT}','Huawei OceanStor 5300 V5: Controller {#ID}: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Huawei OceanStor 5300 V5: Controller {#ID}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','a51b4e42efaa4924b6c2990c9c0abf30',''), ('18187','{21707}<>1','Huawei OceanStor 5300 V5: Controller {#ID}: Health status is not Normal','','0','4','',NULL,'0','2','0','','0','','0','','0','','52cf517dd30146578b32fd1399ec81cc',''), ('18188','{21708}>{$HUAWEI.5300.MEM.MAX.WARN}','Huawei OceanStor 5300 V5: Controller {#ID}: Memory usage is too high','','0','3','',NULL,'0','2','0','','0','','0','','0','Huawei OceanStor 5300 V5: Controller {#ID}: Memory usage is too high (over {$HUAWEI.5300.MEM.MAX.WARN} for {$HUAWEI.5300.MEM.MAX.TIME})','8d4fe305737f41a595c1d2efb3e8a153',''), ('18189','{24407}<>{24408}','Huawei OceanStor 5300 V5: Controller {#ID}: Role has been changed','','0','2','',NULL,'0','2','0','','0','','1','','0','','8b8ec3f843e74533a43f24393004cc84',''), ('18190','{21710}<>27','Huawei OceanStor 5300 V5: Controller {#ID}: Running status is not Online','','0','3','',NULL,'0','2','0','','0','','0','','0','','6ab64eb5e1c146838ad48b7b9b063587',''), ('18191','{21711}<>1','Huawei OceanStor 5300 V5: Disk {#MODEL} on {#LOCATION}: Health status is not Normal','','0','4','',NULL,'0','2','0','','0','','0','','0','','fc1c8d30f09c49a3999e282bff6ea370',''), ('18192','{21712}<>27','Huawei OceanStor 5300 V5: Disk {#MODEL} on {#LOCATION}: Running status is not Online','','0','3','',NULL,'0','2','0','','0','','0','','0','','53aaf06848a346f188799d1cbb5d948f',''), ('18193','{21713}>{$HUAWEI.5300.DISK.TEMP.MAX.WARN:"{#MODEL}"}','Huawei OceanStor 5300 V5: Disk {#MODEL} on {#LOCATION}: Temperature is too high','','0','4','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE}','0','Huawei OceanStor 5300 V5: Disk {#MODEL} on {#LOCATION}: Temperature is too high (over {$HUAWEI.5300.DISK.TEMP.MAX.WARN:"{#MODEL}"} for {$HUAWEI.5300.DISK.TEMP.MAX.TIME})','906de152d3594f1d8cc15b4b717d6202',''), ('18194','{21714}<>1','Huawei OceanStor 5300 V5: Enclosure {#NAME}: Health status is not Normal','','0','4','',NULL,'0','2','0','','0','','0','','0','','9b8fb5b02b0b4158a2b564f47281f716',''), ('18195','{21715}<>27','Huawei OceanStor 5300 V5: Enclosure {#NAME}: Running status is not Online','','0','3','',NULL,'0','2','0','','0','','0','','0','','3c430a2073ff42d9908490858c9c2817',''), ('18196','{21716}>{$HUAWEI.5300.TEMP.MAX.WARN}','Huawei OceanStor 5300 V5: Enclosure {#NAME}: Temperature is too high','','0','4','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE}','0','Huawei OceanStor 5300 V5: Enclosure {#NAME}: Temperature is too high (over {$HUAWEI.5300.TEMP.MAX.WARN} for {$HUAWEI.5300.TEMP.MAX.TIME})','622fcc16c03e4ba4ad8371ea5c1c314f',''), ('18197','{21717}<>1','Huawei OceanStor 5300 V5: FAN {#ID} on {#LOCATION}: Health status is not Normal','','0','4','',NULL,'0','2','0','','0','','0','','0','','1f41c20696d44eb29a1273718c9faf2f',''), ('18198','{21718}<>2','Huawei OceanStor 5300 V5: FAN {#ID} on {#LOCATION}: Running status is not Running','','0','3','',NULL,'0','2','0','','0','','0','','0','','c225c9d853184d579d18c27f7e906fd2',''), ('18199','{21719}>{$HUAWEI.5300.LUN.IO.TIME.MAX.WARN}','Huawei OceanStor 5300 V5: LUN {#NAME}: Average I/O response time is too high','','0','2','',NULL,'0','2','0','','0','','0','','0','Huawei OceanStor 5300 V5: LUN {#NAME}: Average I/O response time is too high (over {$HUAWEI.5300.LUN.IO.TIME.MAX.WARN}ms for {$HUAWEI.5300.LUN.IO.TIME.MAX.TIME})','aae494cb840049fb83df354c13daaf53',''), ('18200','{21720}<>1','Huawei OceanStor 5300 V5: LUN {#NAME}: Status is not Normal','','0','3','',NULL,'0','2','0','','0','','0','','0','','757eef04912d44b4b4f9e1abab54fb4d',''), ('18201','{21721}>{$CPU.UTIL.CRIT}','Huawei OceanStor 5300 V5: Node {#NODE}: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Huawei OceanStor 5300 V5: Node {#NODE}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','8495a55d6549460d9b132675a39b818b',''), ('18202','{21722}>{$HUAWEI.5300.NODE.IO.DELAY.MAX.WARN}','Huawei OceanStor 5300 V5: Node {#NODE}: Average I/O latency is too high','','0','2','',NULL,'0','2','0','','0','','0','','0','Huawei OceanStor 5300 V5: Node {#NODE}: Average I/O latency is too high (over {$HUAWEI.5300.NODE.IO.DELAY.MAX.WARN}ms for {$HUAWEI.5300.NODE.IO.DELAY.MAX.TIME})','8f54bfe029fe43c7a049c6a97c8598bf',''), ('18203','{21723}>{#THRESHOLD}','Huawei OceanStor 5300 V5: Pool {#NAME}: Used capacity is too high','','0','3','',NULL,'0','2','0','','0','','0','','0','Huawei OceanStor 5300 V5: Pool {#NAME}: Used capacity is too high (over {#THRESHOLD}%)','2ea46713fe664a64a851edca422257f8',''), ('18204','{21724}<>1','Huawei OceanStor 5300 V5: Pool {#NAME}: Health status is not Normal','','0','4','',NULL,'0','2','0','','0','','0','','0','','8089b48aafb4403fa3187164685f8ca3',''), ('18205','{21725}<>27','Huawei OceanStor 5300 V5: Pool {#NAME}: Running status is not Online','','0','3','',NULL,'0','2','0','','0','','0','','0','','5ff1d6b5d90040928b90908859c2e8cd',''), ('18206','{21726}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {21727}>{$IF.ERRORS.WARN:"{#IFNAME}"}','NetApp FAS3220: Node {#NODE}: port {#IFNAME} ({#TYPE}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{21728}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {21729}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','NetApp FAS3220: Node {#NODE}: port {#IFNAME} ({#TYPE}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','9ea5b5b667df4bd1943892150c9f2fda',''), ('18207','{21730}=0','RabbitMQ cluster: There are active alarms in the cluster','','0','3','This is the default API endpoint path: http://{$RABBITMQ.API.CLUSTER_HOST}:{$RABBITMQ.API.PORT}/api/index.html.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','032949c387c64223b3125ba1120ae082',''), ('18208','{21731}=0','RabbitMQ node: Node healthcheck failed','','0','3','For more details see [Health Checks](https://www.rabbitmq.com/monitoring.html#health-checks).',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','bf6bcbda20ed46cbb779d9c1f446dfa8',''), ('18209','{21732}=0','RabbitMQ node: There are valid TLS certificates expiring in the next month','','0','3','It checks if there are valid TLS certificates expiring in the next month. This is the default API endpoint path: http://{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/index.html.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d180912136c74e5cb246655ecab75f57',''), ('18210','{21733}=0','RabbitMQ node: There are active alarms in the node','','0','3','It checks the active alarms in the nodes via API. This is the default API endpoint path: http://{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/index.html.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','62962f18baa4480294e097fec2cc5e4c',''), ('18211','{21734}=0','RabbitMQ node: There are queues that could potentially lose data if this node goes offline.','','0','3','It checks whether there are queues that could potentially lose data if this node goes offline via API. This is the default API endpoint path: http://{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/index.html.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','19e392f9e48e4c8287e04751a2a73843',''), ('18212','{21735}=0','RabbitMQ node: There are queues that would lose their quorum and availability if this node is shut down.','','0','3','It checks if there are queues that could potentially lose data if this node goes offline via API. This is the default API endpoint path: http://{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/index.html.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e063b6dde6a0484ba1561861d8b1f0c1',''), ('18213','{21736}=0','RabbitMQ node: There are not running virtual hosts','','0','3','It checks if there are not running virtual hosts via API. This is the default API endpoint path: http://{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/index.html.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b61117e5eeff4d41a9a2f1729ec174b2',''), ('18214','{21737}=0','RabbitMQ cluster: There are active alarms in the cluster','','0','3','This is the default API endpoint path: http://{$RABBITMQ.API.CLUSTER_HOST}:{$RABBITMQ.API.PORT}/api/index.html.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','58592bb4d473497e9942634db2001823',''), ('18215','{21738}=0','RabbitMQ node: Node healthcheck failed','','0','3','For more details see [Health Checks](https://www.rabbitmq.com/monitoring.html#health-checks).',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','5c9c080ddd3748a6b5e62ba7765d270d',''), ('18216','{21739}=0','RabbitMQ node: There are valid TLS certificates expiring in the next month','','0','3','This is the default API endpoint path: http://{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/index.html.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','20f7cd2d1d2448d5b84711caba2f093b',''), ('18217','{21740}=0','RabbitMQ node: There are active alarms in the node','','0','3','This is the default API endpoint path: http://{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/index.html.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9761757a70bf4f65b9438471a5de2af0',''), ('18218','{21741}=0','RabbitMQ node: There are queues that could potentially lose data if this node goes offline.','','0','3','This is the default API endpoint path: http://{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/index.html.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','36b4702437614a3681a5a77acef323fc',''), ('18219','{21742}=0','RabbitMQ node: There are queues that would lose their quorum and availability if this node is shut down.','','0','3','This is the default API endpoint path: http://{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/index.html.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','cfaba160cc0441c09010de05316596bd',''), ('18220','{21743}=0','RabbitMQ node: There are not running virtual hosts','','0','3','This is the default API endpoint path: http://{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/index.html.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d1638953e2794c3e8113ba907837c968',''), ('18221','{21744}/({21745}+{21746})*100>{$MONGODB.CONNS.PCT.USED.MAX.WARN}','MongoDB node: Total number of open connections is too high','','0','2','Too few available connections. If MongoDB runs low on connections, in may not be able to handle incoming requests in a timely manner.',NULL,'0','0','0','','0','','0','','0','MongoDB node: Total number of open connections is too high (over {$MONGODB.CONNS.PCT.USED.MAX.WARN%} in 5m)','58142b2a76114e69af259ea1b5c19bbc',''), ('18222','{21747}>{$MONGODB.CURSOR.OPEN.MAX.WARN}','MongoDB node: Too many cursors opened by MongoDB for clients','','0','2','',NULL,'0','0','0','','0','','0','','0','MongoDB node: Too many cursors opened by MongoDB for clients (over {$MONGODB.CURSOR.OPEN.MAX.WARN} in 5m)','ed4a0c66c76d4ca699d0f2188cc8e71f',''), ('18223','{21748}>{$MONGODB.CURSOR.TIMEOUT.MAX.WARN}','MongoDB node: Too many cursors are timing out','','0','2','',NULL,'0','0','0','','0','','0','','0','MongoDB node: Too many cursors are timing out (over {$MONGODB.CURSOR.TIMEOUT.MAX.WARN} per second in 5m)','41d37791111b461d94da779e4b2c7e46',''), ('18224','{21749}=0','MongoDB node: Connection to MongoDB is unavailable','','0','4','Connection to MongoDB instance is currently unavailable.',NULL,'0','0','0','','0','','0','','0','','c4ab9bfdd6d14634870f8ebb44081655',''), ('18225','{21750}=1','MongoDB node: Failed to fetch info data','','0','2','Zabbix has not received data for items for the last 10 minutes',NULL,'0','0','0','','0','','1','','0','MongoDB node: Failed to fetch info data (or no data for 10m)','166444342def4adc954aa35f3dc22dba',''), ('18226','{21751}<10m','MongoDB node: mongod process has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MongoDB node: mongod process has been restarted (uptime < 10m)','992590e47a7f42dda0e074c2f7a3e5ba',''), ('18227','{23444}<>{23445} and length({23446})>0','MongoDB node: Version has changed','','0','1','MongoDB version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MongoDB node: Version has changed (new version: {ITEM.VALUE})','0856e13b7e7644c5b353fcfa577acb51',''), ('18228','{28421}>0 and length({28422})>0','MongoDB node: There are unhealthy replicas in ReplicaSet','','0','3','',NULL,'0','2','0','','0','','0','','0','','975c5e5817b148ba8a8d551ac42053d0',''), ('18229','{21756}>{$MONGODB.REPL.LAG.MAX.WARN}','MongoDB node: Replication lag with primary is too high','','0','2','',NULL,'0','2','0','','0','','0','','0','MongoDB node: Replication lag with primary is too high (over {$MONGODB.REPL.LAG.MAX.WARN} in 5m)','778d0b15affe4867b3e7f3e396c2a700',''), ('18231','{21758}<{$MONGODB.WIRED_TIGER.TICKETS.AVAILABLE.MIN.WARN}','MongoDB node: Available WiredTiger read tickets is low','','0','2','Too few available read tickets. When the number of available read tickets remaining reaches zero, new read requests will be queued until a new read ticket is available.',NULL,'0','2','0','','0','','0','','0','MongoDB node: Available WiredTiger read tickets less than {$MONGODB.WIRED_TIGER.TICKETS.AVAILABLE.MIN.WARN}','967928b915f64623b4416ed0dbf6ba98',''), ('18232','{21759}<{$MONGODB.WIRED_TIGER.TICKETS.AVAILABLE.MIN.WARN}','MongoDB node: Available WiredTiger write tickets is low','','0','2','Too few available write tickets. When the number of available write tickets remaining reaches zero, new write requests will be queued until a new write ticket is available.',NULL,'0','2','0','','0','','0','','0','MongoDB node: Available WiredTiger write tickets less than {$MONGODB.WIRED_TIGER.TICKETS.AVAILABLE.MIN.WARN}','485e6e846f274b528902b3ffd08f2fc4',''), ('18233','{21760}<{$MONGODB.CONNS.AVAILABLE.MIN.WARN}','MongoDB cluster: Available connections is low','','0','2','Too few available connections. Consider this value in combination with the value of connections current to understand the connection load on the database.',NULL,'0','0','0','','0','','0','','0','MongoDB cluster: Available connections less then {$MONGODB.CONNS.AVAILABLE.MIN.WARN}','eae86b6f98db49099259a466b78d1c59',''), ('18234','{21761}>{$MONGODB.CURSOR.OPEN.MAX.WARN}','MongoDB cluster: Too many cursors opened by MongoDB for clients','','0','2','',NULL,'0','0','0','','0','','0','','0','MongoDB cluster: Too many cursors opened by MongoDB for clients (over {$MONGODB.CURSOR.OPEN.MAX.WARN} in 5m)','67db1f543818476ca0b07e2cc1709452',''), ('18235','{21762}>{$MONGODB.CURSOR.TIMEOUT.MAX.WARN}','MongoDB cluster: Too many cursors are timing out','','0','2','',NULL,'0','0','0','','0','','0','','0','MongoDB cluster: Too many cursors are timing out (over {$MONGODB.CURSOR.TIMEOUT.MAX.WARN} per second in 5m)','5ea8cf9c955940a6a580cd6f4bb2cc78',''), ('18236','{21763}=0','MongoDB cluster: Connection to mongos proxy is unavailable','','0','4','Connection to mongos proxy instance is currently unavailable.',NULL,'0','0','0','','0','','0','','0','','cd74289970204ca281c5bc7d5c695e95',''), ('18237','{21764}=1','MongoDB cluster: Failed to fetch info data','','0','2','Zabbix has not received data for items for the last 10 minutes',NULL,'0','0','0','','0','','1','','0','MongoDB cluster: Failed to fetch info data (or no data for 10m)','ee70d6da232a4068b574c9c147c622c9',''), ('18238','{21765}<10m','MongoDB cluster: Mongos server has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MongoDB cluster: Mongos server has been restarted (uptime < 10m)','99ff438a7e3e4b0a8190b2ab9f41f076',''), ('18239','{23449}<>{23450} and length({23451})>0','MongoDB cluster: Version has changed','','0','1','MongoDB cluster version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MongoDB cluster: Version has changed (new version: {ITEM.VALUE})','921ee489887943838d69558f103ad646',''), ('18298','{21970}=0','Cisco Catalyst 3750V2-24FS: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','b0507a7333384bd5bf251fe238a538ad',''), ('18299','{21971}>{$ICMP_LOSS_WARN} and {21971}<100','Cisco Catalyst 3750V2-24FS: High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','089e23bcb4bb41f992947a6970555394',''), ('18300','{21972}>{$ICMP_RESPONSE_TIME_WARN}','Cisco Catalyst 3750V2-24FS: High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','d5449d68d76e49ad9b7c052abff255e2',''), ('18301','{23744}<>{23745} and length({23746})>0','Cisco Catalyst 3750V2-24FS: Device has been replaced','','0','1','The device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Cisco Catalyst 3750V2-24FS: Device has been replaced (new serial number received)','ef94f8295a2946b9a266afc6c9a5c5c9',''), ('18302','{23747}<>{23748} and length({23749})>0','Cisco Catalyst 3750V2-24FS: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Cisco Catalyst 3750V2-24FS: System name has changed (new name: {ITEM.VALUE})','0d48c5e2b30f4f08b3cec8c89c05d52d',''), ('18303','{23750}<>{23751} and length({23752})>0','Cisco Catalyst 3750V2-24FS: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','2','','0','','1','','0','','77433856d157408d98c72d964fdbf045',''), ('18304','({32154}>0 and {32154}<10m) or ({32154}=0 and {32155}<10m)','Cisco Catalyst 3750V2-24FS: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Cisco Catalyst 3750V2-24FS: {HOST.NAME} has been restarted (uptime < 10m)','6e105d2b8a2c43cc8841abb6995941ba',''), ('18305','{21980}=0','Cisco Catalyst 3750V2-24FS: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4ebd3dd755dd4b1dae2509842d0b7117',''), ('18306','{21981}>{$CPU.UTIL.CRIT}','Cisco Catalyst 3750V2-24FS: #{#SNMPINDEX}: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Cisco Catalyst 3750V2-24FS: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','a825aa92b31c4460bef20469afead397',''), ('18307','{23753}<>{23754} and length({23755})>0','Cisco Catalyst 3750V2-24FS: {#ENT_NAME}: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','0','','0','Cisco Catalyst 3750V2-24FS: {#ENT_NAME}: Device has been replaced (new serial number received)','b715f039d7874915aacd687e87661588',''), ('18308','{21984}=3 or {21984}=4','Cisco Catalyst 3750V2-24FS: {#SNMPVALUE}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','03a372d275194f8cae61786a38a7fb96',''), ('18309','{21985}=2','Cisco Catalyst 3750V2-24FS: {#SNMPVALUE}: Fan is in warning state','','0','2','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','65bc040110534b6ab0544cb1866288ab',''), ('18310','{21986}>{$MEMORY.UTIL.MAX}','Cisco Catalyst 3750V2-24FS: {#SNMPVALUE}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','Cisco Catalyst 3750V2-24FS: {#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m)','fc434ae6fdff4ec0b20400750571b786',''), ('18311','{21987}<0 and {21988}>0 and ( {21989}=6 or {21989}=7 or {21989}=11 or {21989}=62 or {21989}=69 or {21989}=117 ) and ({21990}<>2)','Cisco Catalyst 3750V2-24FS: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({21987}>0 and {21991}>0) or ({21990}=2)','0','','0','Current reported speed: {ITEM.LASTVALUE1}','0','','6c5a9334ff7d437c91c0f76da988cade',''), ('18312','({21992}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21993}) and {21993}>0','Cisco Catalyst 3750V2-24FS: Interface {#IFNAME}({#IFALIAS}): High inbound bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{21992}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21993}','0','','0','In: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}','0','Cisco Catalyst 3750V2-24FS: Interface {#IFNAME}({#IFALIAS}): High inbound bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% )','5f4de3462234401d826a4a7bab16402f',''), ('18313','({21994}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21995}) and {21995}>0','Cisco Catalyst 3750V2-24FS: Interface {#IFNAME}({#IFALIAS}): High outbound bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{21994}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21995}','0','','0','Out: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}','0','Cisco Catalyst 3750V2-24FS: Interface {#IFNAME}({#IFALIAS}): High outbound bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% )','13ac4bfd49a749b7ba49cdbf531939b1',''), ('18314','{21996}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Cisco Catalyst 3750V2-24FS: Interface {#IFNAME}({#IFALIAS}): High input error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{21997}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','0','errors in: {ITEM.LASTVALUE1}','0','Cisco Catalyst 3750V2-24FS: Interface {#IFNAME}({#IFALIAS}): High input error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','ac2ed3537a1744bd91abb32acb45181c',''), ('18315','{21998}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Cisco Catalyst 3750V2-24FS: Interface {#IFNAME}({#IFALIAS}): High output error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{21999}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','0','errors out: {ITEM.LASTVALUE2}','0','Cisco Catalyst 3750V2-24FS: Interface {#IFNAME}({#IFALIAS}): High output error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','4e96fef6da19403eb125c67947ceadee',''), ('18316','{$IFCONTROL:"{#IFNAME}"}=1 and ({22000}=2)','Cisco Catalyst 3750V2-24FS: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','1086cb4f3a6a46c399fe221ffd538037',''), ('18317','{22001}=2','Cisco Catalyst 3750V2-24FS: Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','','0','2','Please check autonegotiation settings and cabling',NULL,'0','2','0','','0','','0','','0','','75341985cb654533b4ef67cbdd9333a9',''), ('18318','{22002}=3 or {22003}=4','Cisco Catalyst 3750V2-24FS: {#SNMPVALUE}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d64945a4f2f74909a10f9cc448f26a02',''), ('18319','{22004}=2','Cisco Catalyst 3750V2-24FS: {#SNMPVALUE}: Power supply is in warning state','','0','2','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','aaf5b05767f24a9bb87753a519140673',''), ('18320','{22005}=3 or {22005}=4','Cisco Catalyst 3750V2-24FS: {#SNMPVALUE}: Temperature is in critical state','','0','4','This trigger uses temperature sensor state',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','3d307edd9bc54aa2890bebe3ded250c2',''), ('18321','{22006}=2','Cisco Catalyst 3750V2-24FS: {#SNMPVALUE}: Temperature is in warning state','','0','2','This trigger uses temperature sensor state',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','24000d852b014ae7828eab26451257c1',''), ('18322','{22007}>{$TEMP_CRIT:"{#SNMPVALUE}"}','Cisco Catalyst 3750V2-24FS: {#SNMPVALUE}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{22008}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco Catalyst 3750V2-24FS: {#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"}','8c7c804c7b274cf4a17090086ee0f8a0',''), ('18323','{22009}>{$TEMP_WARN:"{#SNMPVALUE}"}','Cisco Catalyst 3750V2-24FS: {#SNMPVALUE}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{22010}<{$TEMP_WARN:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco Catalyst 3750V2-24FS: {#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"}','0cdb1f1c7e7848bfba2368395d2c03e5',''), ('18324','{22011}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','Cisco Catalyst 3750V2-24FS: {#SNMPVALUE}: Temperature is too low','','0','3','',NULL,'0','2','1','{22012}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco Catalyst 3750V2-24FS: {#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','eac4504f0d45457fa325f40e6ab585a2',''), ('18325','{22013}=0','Cisco Catalyst 3750V2-24PS: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','e66bcbef8f1d45fc8bc5d64e5dc848dc',''), ('18326','{22014}>{$ICMP_LOSS_WARN} and {22014}<100','Cisco Catalyst 3750V2-24PS: High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','20ee878da19f4d758e4372c6c918c773',''), ('18327','{22015}>{$ICMP_RESPONSE_TIME_WARN}','Cisco Catalyst 3750V2-24PS: High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','0facff81f25c43869e86a0541f0e3ecd',''), ('18328','{23756}<>{23757} and length({23758})>0','Cisco Catalyst 3750V2-24PS: Device has been replaced','','0','1','The device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Cisco Catalyst 3750V2-24PS: Device has been replaced (new serial number received)','052fb88fae1349d5b9a5fa5bcf24d0fa',''), ('18329','{23759}<>{23760} and length({23761})>0','Cisco Catalyst 3750V2-24PS: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Cisco Catalyst 3750V2-24PS: System name has changed (new name: {ITEM.VALUE})','a678341d899846158fea2deb57f923cf',''), ('18330','{23762}<>{23763} and length({23764})>0','Cisco Catalyst 3750V2-24PS: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','2','','0','','1','','0','','3e5d53072021491bb2af276aff3e1a0b',''), ('18331','({32156}>0 and {32156}<10m) or ({32156}=0 and {32157}<10m)','Cisco Catalyst 3750V2-24PS: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Cisco Catalyst 3750V2-24PS: {HOST.NAME} has been restarted (uptime < 10m)','a9633d3df8724c7cba6dfc6ec790c1fd',''), ('18332','{22023}=0','Cisco Catalyst 3750V2-24PS: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','0f2d48a1529c4ae49d58d466ed3a76e7',''), ('18333','{22024}>{$CPU.UTIL.CRIT}','Cisco Catalyst 3750V2-24PS: #{#SNMPINDEX}: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Cisco Catalyst 3750V2-24PS: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','471acd7fa3ad4040aba27535905bfe63',''), ('18334','{23765}<>{23766} and length({23767})>0','Cisco Catalyst 3750V2-24PS: {#ENT_NAME}: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','0','','0','Cisco Catalyst 3750V2-24PS: {#ENT_NAME}: Device has been replaced (new serial number received)','70aca80b5a8d414686967b104d301023',''), ('18335','{22027}=3 or {22027}=4','Cisco Catalyst 3750V2-24PS: {#SNMPVALUE}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e2b72d874d4f48e79aab3a6d514663b4',''), ('18336','{22028}=2','Cisco Catalyst 3750V2-24PS: {#SNMPVALUE}: Fan is in warning state','','0','2','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d4bf389614f54be08ffd8d010e480da6',''), ('18337','{22029}>{$MEMORY.UTIL.MAX}','Cisco Catalyst 3750V2-24PS: {#SNMPVALUE}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','Cisco Catalyst 3750V2-24PS: {#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m)','918cf48b69d545dbb9f177fa1440f4cb',''), ('18338','{22030}<0 and {22031}>0 and ( {22032}=6 or {22032}=7 or {22032}=11 or {22032}=62 or {22032}=69 or {22032}=117 ) and ({22033}<>2)','Cisco Catalyst 3750V2-24PS: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({22030}>0 and {22034}>0) or ({22033}=2)','0','','0','Current reported speed: {ITEM.LASTVALUE1}','0','','d6aaa83ed4744ef982a177b77fb1f2c4',''), ('18339','({22035}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22036}) and {22036}>0','Cisco Catalyst 3750V2-24PS: Interface {#IFNAME}({#IFALIAS}): High inbound bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{22035}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22036}','0','','0','In: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}','0','Cisco Catalyst 3750V2-24PS: Interface {#IFNAME}({#IFALIAS}): High inbound bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% )','9e3e50611ef242b0b200c0a6343f4c5c',''), ('18340','({22037}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22038}) and {22038}>0','Cisco Catalyst 3750V2-24PS: Interface {#IFNAME}({#IFALIAS}): High outbound bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{22037}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22038}','0','','0','Out: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}','0','Cisco Catalyst 3750V2-24PS: Interface {#IFNAME}({#IFALIAS}): High outbound bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% )','7c624697cd7b41d682b5856a3040737e',''), ('18341','{22039}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Cisco Catalyst 3750V2-24PS: Interface {#IFNAME}({#IFALIAS}): High input error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{22040}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','0','errors in: {ITEM.LASTVALUE1}','0','Cisco Catalyst 3750V2-24PS: Interface {#IFNAME}({#IFALIAS}): High input error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','df6bfacc52e1487d9f359c23545ceb84',''), ('18342','{22041}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Cisco Catalyst 3750V2-24PS: Interface {#IFNAME}({#IFALIAS}): High output error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{22042}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','0','errors out: {ITEM.LASTVALUE2}','0','Cisco Catalyst 3750V2-24PS: Interface {#IFNAME}({#IFALIAS}): High output error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','aa49d99c77d64e31ad2369d09e547cab',''), ('18343','{$IFCONTROL:"{#IFNAME}"}=1 and ({22043}=2)','Cisco Catalyst 3750V2-24PS: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','41d6b4a9fde546ae88005efdef1f4525',''), ('18344','{22044}=2','Cisco Catalyst 3750V2-24PS: Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','','0','2','Please check autonegotiation settings and cabling',NULL,'0','2','0','','0','','0','','0','','df8eb5498b8a41709db02b742fa24d6a',''), ('18345','{22045}=3 or {22046}=4','Cisco Catalyst 3750V2-24PS: {#SNMPVALUE}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','1d509ec30e8349538d9d2b2447b70253',''), ('18346','{22047}=2','Cisco Catalyst 3750V2-24PS: {#SNMPVALUE}: Power supply is in warning state','','0','2','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4ef4e09de93e4cfbb2aab4f22e78c223',''), ('18347','{22048}=3 or {22048}=4','Cisco Catalyst 3750V2-24PS: {#SNMPVALUE}: Temperature is in critical state','','0','4','This trigger uses temperature sensor state',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','506c98e9c29247cba7c58ca343c6fdf4',''), ('18348','{22049}=2','Cisco Catalyst 3750V2-24PS: {#SNMPVALUE}: Temperature is in warning state','','0','2','This trigger uses temperature sensor state',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','d6b91f3e280c4d0fa3df0bf3fedd9183',''), ('18349','{22050}>{$TEMP_CRIT:"{#SNMPVALUE}"}','Cisco Catalyst 3750V2-24PS: {#SNMPVALUE}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{22051}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco Catalyst 3750V2-24PS: {#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"}','63e41d0fe43c4daa8fd2e4eee6e4ed8a',''), ('18350','{22052}>{$TEMP_WARN:"{#SNMPVALUE}"}','Cisco Catalyst 3750V2-24PS: {#SNMPVALUE}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{22053}<{$TEMP_WARN:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco Catalyst 3750V2-24PS: {#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"}','cc09047db63a435e816e560c2007b43a',''), ('18351','{22054}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','Cisco Catalyst 3750V2-24PS: {#SNMPVALUE}: Temperature is too low','','0','3','',NULL,'0','2','1','{22055}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco Catalyst 3750V2-24PS: {#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','156a35b375ff4978a2b98f38785897a5',''), ('18352','{22056}=0','Cisco Catalyst 3750V2-24TS: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','e536d08729024bbcbe51f63ac1074796',''), ('18353','{22057}>{$ICMP_LOSS_WARN} and {22057}<100','Cisco Catalyst 3750V2-24TS: High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','63bdfa05fcbe455db4dbb28ae333292a',''), ('18354','{22058}>{$ICMP_RESPONSE_TIME_WARN}','Cisco Catalyst 3750V2-24TS: High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','79b80f4faa30401c8aa260a7bc961f9c',''), ('18355','{23768}<>{23769} and length({23770})>0','Cisco Catalyst 3750V2-24TS: Device has been replaced','','0','1','The device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Cisco Catalyst 3750V2-24TS: Device has been replaced (new serial number received)','be325325a6bd4cf4ae1312b4488af80d',''), ('18356','{23771}<>{23772} and length({23773})>0','Cisco Catalyst 3750V2-24TS: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Cisco Catalyst 3750V2-24TS: System name has changed (new name: {ITEM.VALUE})','d19bce317a4b4ab19485a183d446dcc7',''), ('18357','{23774}<>{23775} and length({23776})>0','Cisco Catalyst 3750V2-24TS: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','2','','0','','1','','0','','c139de21caf94d4b9c2d60977d4756f7',''), ('18358','({32158}>0 and {32158}<10m) or ({32158}=0 and {32159}<10m)','Cisco Catalyst 3750V2-24TS: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Cisco Catalyst 3750V2-24TS: {HOST.NAME} has been restarted (uptime < 10m)','86484c0d62e94532af4202267369f8bf',''), ('18359','{22066}=0','Cisco Catalyst 3750V2-24TS: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d78318493148438abca20fed768d4ced',''), ('18360','{22067}>{$CPU.UTIL.CRIT}','Cisco Catalyst 3750V2-24TS: #{#SNMPINDEX}: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Cisco Catalyst 3750V2-24TS: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','6f039b9bfb00495ebe5e5eba56d25099',''), ('18361','{23777}<>{23778} and length({23779})>0','Cisco Catalyst 3750V2-24TS: {#ENT_NAME}: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','0','','0','Cisco Catalyst 3750V2-24TS: {#ENT_NAME}: Device has been replaced (new serial number received)','3e621db566ef4b5da2a3b0f5ee65ae81',''), ('18362','{22070}=3 or {22070}=4','Cisco Catalyst 3750V2-24TS: {#SNMPVALUE}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','f299241a1a3c4fde965b3a2b6a3b31d6',''), ('18363','{22071}=2','Cisco Catalyst 3750V2-24TS: {#SNMPVALUE}: Fan is in warning state','','0','2','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a4021a6d44fb439fa04b160b7cea2bca',''), ('18364','{22072}>{$MEMORY.UTIL.MAX}','Cisco Catalyst 3750V2-24TS: {#SNMPVALUE}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','Cisco Catalyst 3750V2-24TS: {#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m)','a88d7a734efc40868d3fbeda307c4e1f',''), ('18365','{22073}<0 and {22074}>0 and ( {22075}=6 or {22075}=7 or {22075}=11 or {22075}=62 or {22075}=69 or {22075}=117 ) and ({22076}<>2)','Cisco Catalyst 3750V2-24TS: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({22073}>0 and {22077}>0) or ({22076}=2)','0','','0','Current reported speed: {ITEM.LASTVALUE1}','0','','46d96d2815a04b32b00ed4ef6104fedc',''), ('18366','({22078}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22079}) and {22079}>0','Cisco Catalyst 3750V2-24TS: Interface {#IFNAME}({#IFALIAS}): High inbound bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{22078}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22079}','0','','0','In: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}','0','Cisco Catalyst 3750V2-24TS: Interface {#IFNAME}({#IFALIAS}): High inbound bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% )','5af679006aaa40acbe01987ab15088ae',''), ('18367','({22080}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22081}) and {22081}>0','Cisco Catalyst 3750V2-24TS: Interface {#IFNAME}({#IFALIAS}): High outbound bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{22080}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22081}','0','','0','Out: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}','0','Cisco Catalyst 3750V2-24TS: Interface {#IFNAME}({#IFALIAS}): High outbound bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% )','e0b4ab67e80a4dbdb3d60246b8830228',''), ('18368','{22082}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Cisco Catalyst 3750V2-24TS: Interface {#IFNAME}({#IFALIAS}): High input error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{22083}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','0','errors in: {ITEM.LASTVALUE1}','0','Cisco Catalyst 3750V2-24TS: Interface {#IFNAME}({#IFALIAS}): High input error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','a5f11bbeceb9418f86b1130ccb6942ec',''), ('18369','{22084}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Cisco Catalyst 3750V2-24TS: Interface {#IFNAME}({#IFALIAS}): High output error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{22085}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','0','errors out: {ITEM.LASTVALUE2}','0','Cisco Catalyst 3750V2-24TS: Interface {#IFNAME}({#IFALIAS}): High output error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','5182e3b82c044374a6f14f9a06fa0f24',''), ('18370','{$IFCONTROL:"{#IFNAME}"}=1 and ({22086}=2)','Cisco Catalyst 3750V2-24TS: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','cb577e04f0a94508a10656c5f276d4e0',''), ('18371','{22087}=2','Cisco Catalyst 3750V2-24TS: Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','','0','2','Please check autonegotiation settings and cabling',NULL,'0','2','0','','0','','0','','0','','45b5778869124558b3265d6d7275c186',''), ('18372','{22088}=3 or {22089}=4','Cisco Catalyst 3750V2-24TS: {#SNMPVALUE}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','23fc241ca9d6438bb1688c77688fd1ed',''), ('18373','{22090}=2','Cisco Catalyst 3750V2-24TS: {#SNMPVALUE}: Power supply is in warning state','','0','2','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c6ed26fb555642c9b25564ec13fcf920',''), ('18374','{22091}=3 or {22091}=4','Cisco Catalyst 3750V2-24TS: {#SNMPVALUE}: Temperature is in critical state','','0','4','This trigger uses temperature sensor state',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','1820c365ad55416e995d4d978063e4a1',''), ('18375','{22092}=2','Cisco Catalyst 3750V2-24TS: {#SNMPVALUE}: Temperature is in warning state','','0','2','This trigger uses temperature sensor state',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','0b7e6f3085a0404ebb64c33828c9c920',''), ('18376','{22093}>{$TEMP_CRIT:"{#SNMPVALUE}"}','Cisco Catalyst 3750V2-24TS: {#SNMPVALUE}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{22094}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco Catalyst 3750V2-24TS: {#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"}','4c3501ee0c5b4af48306f040988d427a',''), ('18377','{22095}>{$TEMP_WARN:"{#SNMPVALUE}"}','Cisco Catalyst 3750V2-24TS: {#SNMPVALUE}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{22096}<{$TEMP_WARN:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco Catalyst 3750V2-24TS: {#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"}','34b7d1a255a4408fac4d299eedc215b9',''), ('18378','{22097}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','Cisco Catalyst 3750V2-24TS: {#SNMPVALUE}: Temperature is too low','','0','3','',NULL,'0','2','1','{22098}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco Catalyst 3750V2-24TS: {#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','b9b8577c9f114d4c8546169e5a63a915',''), ('18379','{22099}=0','Cisco Catalyst 3750V2-48PS: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','01901a212f7c4fd2976f8ab89ad7eb68',''), ('18380','{22100}>{$ICMP_LOSS_WARN} and {22100}<100','Cisco Catalyst 3750V2-48PS: High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','20104e6a8abe4b0e9bdd32325d506d9c',''), ('18381','{22101}>{$ICMP_RESPONSE_TIME_WARN}','Cisco Catalyst 3750V2-48PS: High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','21b7cefe750048fba80e026afecebcfd',''), ('18382','{23780}<>{23781} and length({23782})>0','Cisco Catalyst 3750V2-48PS: Device has been replaced','','0','1','The device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Cisco Catalyst 3750V2-48PS: Device has been replaced (new serial number received)','a11a364406534a838c99f89c4136eb5b',''), ('18383','{23783}<>{23784} and length({23785})>0','Cisco Catalyst 3750V2-48PS: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Cisco Catalyst 3750V2-48PS: System name has changed (new name: {ITEM.VALUE})','b881ec6269d54e25810ed2ec2dfe3385',''), ('18384','{23786}<>{23787} and length({23788})>0','Cisco Catalyst 3750V2-48PS: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','2','','0','','1','','0','','cc0071c5d3074123a77ebddd7dd8583c',''), ('18385','({32160}>0 and {32160}<10m) or ({32160}=0 and {32161}<10m)','Cisco Catalyst 3750V2-48PS: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Cisco Catalyst 3750V2-48PS: {HOST.NAME} has been restarted (uptime < 10m)','904571e51fbc4cd0a3a25800e16ec495',''), ('18386','{22109}=0','Cisco Catalyst 3750V2-48PS: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','90d5894323074dc8bcd57b212cdbf398',''), ('18387','{22110}>{$CPU.UTIL.CRIT}','Cisco Catalyst 3750V2-48PS: #{#SNMPINDEX}: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Cisco Catalyst 3750V2-48PS: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','f3318a22b4ff436f9021dbd181ecee58',''), ('18388','{23789}<>{23790} and length({23791})>0','Cisco Catalyst 3750V2-48PS: {#ENT_NAME}: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','0','','0','Cisco Catalyst 3750V2-48PS: {#ENT_NAME}: Device has been replaced (new serial number received)','b1087409b7c84ad5b587e6f6fc37dfe0',''), ('18389','{22113}=3 or {22113}=4','Cisco Catalyst 3750V2-48PS: {#SNMPVALUE}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9c0112ed996944768a717e15554aaa21',''), ('18390','{22114}=2','Cisco Catalyst 3750V2-48PS: {#SNMPVALUE}: Fan is in warning state','','0','2','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','98dd9b3bf65e418aa86f7a927910f847',''), ('18391','{22115}>{$MEMORY.UTIL.MAX}','Cisco Catalyst 3750V2-48PS: {#SNMPVALUE}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','Cisco Catalyst 3750V2-48PS: {#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m)','14f0fcd6447746d2af5de080c36e9888',''), ('18392','{22116}<0 and {22117}>0 and ( {22118}=6 or {22118}=7 or {22118}=11 or {22118}=62 or {22118}=69 or {22118}=117 ) and ({22119}<>2)','Cisco Catalyst 3750V2-48PS: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({22116}>0 and {22120}>0) or ({22119}=2)','0','','0','Current reported speed: {ITEM.LASTVALUE1}','0','','b67a022f435741e59278d79bc873dcaa',''), ('18393','({22121}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22122}) and {22122}>0','Cisco Catalyst 3750V2-48PS: Interface {#IFNAME}({#IFALIAS}): High inbound bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{22121}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22122}','0','','0','In: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}','0','Cisco Catalyst 3750V2-48PS: Interface {#IFNAME}({#IFALIAS}): High inbound bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% )','bf1ed5348e3c48388f099f4d8cdec4f8',''), ('18394','({22123}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22124}) and {22124}>0','Cisco Catalyst 3750V2-48PS: Interface {#IFNAME}({#IFALIAS}): High outbound bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{22123}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22124}','0','','0','Out: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}','0','Cisco Catalyst 3750V2-48PS: Interface {#IFNAME}({#IFALIAS}): High outbound bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% )','76bbbff26fcc406ba497f24dd23c07c8',''), ('18395','{22125}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Cisco Catalyst 3750V2-48PS: Interface {#IFNAME}({#IFALIAS}): High input error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{22126}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','0','errors in: {ITEM.LASTVALUE1}','0','Cisco Catalyst 3750V2-48PS: Interface {#IFNAME}({#IFALIAS}): High input error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','67573956247a4c29935889db09fba7e4',''), ('18396','{22127}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Cisco Catalyst 3750V2-48PS: Interface {#IFNAME}({#IFALIAS}): High output error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{22128}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','0','errors out: {ITEM.LASTVALUE2}','0','Cisco Catalyst 3750V2-48PS: Interface {#IFNAME}({#IFALIAS}): High output error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','80dc2a94be5d49d59b643b3c07dfe6fd',''), ('18397','{$IFCONTROL:"{#IFNAME}"}=1 and ({22129}=2)','Cisco Catalyst 3750V2-48PS: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','2ac6c68151b04e9489b0bff5f6277ec6',''), ('18398','{22130}=2','Cisco Catalyst 3750V2-48PS: Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','','0','2','Please check autonegotiation settings and cabling',NULL,'0','2','0','','0','','0','','0','','4819114a72df4cd5ac093402e7799afa',''), ('18399','{22131}=3 or {22132}=4','Cisco Catalyst 3750V2-48PS: {#SNMPVALUE}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','8509b77831764bc3943b5fc65a8de0a7',''), ('18400','{22133}=2','Cisco Catalyst 3750V2-48PS: {#SNMPVALUE}: Power supply is in warning state','','0','2','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4cdeb02663604279ac2d725cd16ee289',''), ('18401','{22134}=3 or {22134}=4','Cisco Catalyst 3750V2-48PS: {#SNMPVALUE}: Temperature is in critical state','','0','4','This trigger uses temperature sensor state',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','c4ed5c08530041ad8c9c14033d792f56',''), ('18402','{22135}=2','Cisco Catalyst 3750V2-48PS: {#SNMPVALUE}: Temperature is in warning state','','0','2','This trigger uses temperature sensor state',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','b4b4b88fcbe74e8b9c525cd2a6ace143',''), ('18403','{22136}>{$TEMP_CRIT:"{#SNMPVALUE}"}','Cisco Catalyst 3750V2-48PS: {#SNMPVALUE}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{22137}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco Catalyst 3750V2-48PS: {#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"}','d1918e0df0ae4b3ab22067142f7c0538',''), ('18404','{22138}>{$TEMP_WARN:"{#SNMPVALUE}"}','Cisco Catalyst 3750V2-48PS: {#SNMPVALUE}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{22139}<{$TEMP_WARN:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco Catalyst 3750V2-48PS: {#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"}','468eaf7a831d4b2699e8be1939916f56',''), ('18405','{22140}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','Cisco Catalyst 3750V2-48PS: {#SNMPVALUE}: Temperature is too low','','0','3','',NULL,'0','2','1','{22141}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco Catalyst 3750V2-48PS: {#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','acac81a3c0b04e889f9bae2e40dd9caf',''), ('18406','{22142}=0','Cisco Catalyst 3750V2-48TS: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','1dd6a211f5e54351a2d4a0854e66fdba',''), ('18407','{22143}>{$ICMP_LOSS_WARN} and {22143}<100','Cisco Catalyst 3750V2-48TS: High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','669ae230efe84f76be95f3ac0eac1102',''), ('18408','{22144}>{$ICMP_RESPONSE_TIME_WARN}','Cisco Catalyst 3750V2-48TS: High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','391b3ac9e1b746c8824af721c472df7b',''), ('18409','{23792}<>{23793} and length({23794})>0','Cisco Catalyst 3750V2-48TS: Device has been replaced','','0','1','The device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Cisco Catalyst 3750V2-48TS: Device has been replaced (new serial number received)','f63ea5e9c33f465985259c3c8d27a12a',''), ('18410','{23795}<>{23796} and length({23797})>0','Cisco Catalyst 3750V2-48TS: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Cisco Catalyst 3750V2-48TS: System name has changed (new name: {ITEM.VALUE})','55ff869f6acb4f2daddf5c855aa3d76d',''), ('18411','{23798}<>{23799} and length({23800})>0','Cisco Catalyst 3750V2-48TS: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','2','','0','','1','','0','','6724cfef1df145fdb0e6e2cfb35bc890',''), ('18412','({32162}>0 and {32162}<10m) or ({32162}=0 and {32163}<10m)','Cisco Catalyst 3750V2-48TS: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Cisco Catalyst 3750V2-48TS: {HOST.NAME} has been restarted (uptime < 10m)','2f1841fb315041a2a437886dc6c23814',''), ('18413','{22152}=0','Cisco Catalyst 3750V2-48TS: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','da0596afe59b455bb503a0b2dea1cebe',''), ('18414','{22153}>{$CPU.UTIL.CRIT}','Cisco Catalyst 3750V2-48TS: #{#SNMPINDEX}: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Cisco Catalyst 3750V2-48TS: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','194c2d8b74c94717a037ce22c31a50e6',''), ('18415','{23801}<>{23802} and length({23803})>0','Cisco Catalyst 3750V2-48TS: {#ENT_NAME}: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Cisco Catalyst 3750V2-48TS: {#ENT_NAME}: Device has been replaced (new serial number received)','7dc178a7bced4003b51b599459e41047',''), ('18416','{22156}=3 or {22156}=4','Cisco Catalyst 3750V2-48TS: {#SNMPVALUE}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','16d0712d6e1f4cb18a65d4cc7e11a8df',''), ('18417','{22157}=2','Cisco Catalyst 3750V2-48TS: {#SNMPVALUE}: Fan is in warning state','','0','2','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','42ad0109072e404eb47daaf17236d805',''), ('18418','{22158}>{$MEMORY.UTIL.MAX}','Cisco Catalyst 3750V2-48TS: {#SNMPVALUE}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','Cisco Catalyst 3750V2-48TS: {#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m)','8cf907c229fa4c4c86c1f06e65facef8',''), ('18419','{22159}<0 and {22160}>0 and ( {22161}=6 or {22161}=7 or {22161}=11 or {22161}=62 or {22161}=69 or {22161}=117 ) and ({22162}<>2)','Cisco Catalyst 3750V2-48TS: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({22159}>0 and {22163}>0) or ({22162}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','4eae529fc032412d957f1e0d04261867',''), ('18420','({22164}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22165}) and {22165}>0','Cisco Catalyst 3750V2-48TS: Interface {#IFNAME}({#IFALIAS}): High inbound bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{22164}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22165}','0','','1','In: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}','0','Cisco Catalyst 3750V2-48TS: Interface {#IFNAME}({#IFALIAS}): High inbound bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% )','4e1ee888558346faa54c02b85d320170',''), ('18421','({22166}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22167}) and {22167}>0','Cisco Catalyst 3750V2-48TS: Interface {#IFNAME}({#IFALIAS}): High outbound bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{22166}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22167}','0','','1','Out: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}','0','Cisco Catalyst 3750V2-48TS: Interface {#IFNAME}({#IFALIAS}): High outbound bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% )','7623796067224187b6f692c8b6cbd398',''), ('18422','{22168}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Cisco Catalyst 3750V2-48TS: Interface {#IFNAME}({#IFALIAS}): High input error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{22169}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}','0','Cisco Catalyst 3750V2-48TS: Interface {#IFNAME}({#IFALIAS}): High input error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','f4fa2946c04d4bdbabc9be4b492cf5f0',''), ('18423','{22170}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Cisco Catalyst 3750V2-48TS: Interface {#IFNAME}({#IFALIAS}): High output error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{22171}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors out: {ITEM.LASTVALUE2}','0','Cisco Catalyst 3750V2-48TS: Interface {#IFNAME}({#IFALIAS}): High output error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','a14d914fa1404daab227b6d22e71ea69',''), ('18424','{$IFCONTROL:"{#IFNAME}"}=1 and ({22172}=2)','Cisco Catalyst 3750V2-48TS: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.',NULL,'0','2','0','','0','','1','Current state: {ITEM.LASTVALUE1}','0','','77b810108caa4ae6bd8d8bff06acddb2',''), ('18425','{22173}=2','Cisco Catalyst 3750V2-48TS: Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','','0','2','Please check autonegotiation settings and cabling',NULL,'0','2','0','','0','','1','','0','','a1217d320897464da4bb9a67f669460f',''), ('18426','{22174}=3 or {22175}=4','Cisco Catalyst 3750V2-48TS: {#SNMPVALUE}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','56fced6c99ba44ab9fb5268d946a385b',''), ('18427','{22176}=2','Cisco Catalyst 3750V2-48TS: {#SNMPVALUE}: Power supply is in warning state','','0','2','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6962e5851f244e9cb9d87763637a20f3',''), ('18428','{22177}=3 or {22177}=4','Cisco Catalyst 3750V2-48TS: {#SNMPVALUE}: Temperature is in critical state','','0','4','This trigger uses temperature sensor state',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','e4844779a080455e9691bdc705227a28',''), ('18429','{22178}=2','Cisco Catalyst 3750V2-48TS: {#SNMPVALUE}: Temperature is in warning state','','0','2','This trigger uses temperature sensor state',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','120dd2434317447d8ee6708d5c1221e3',''), ('18430','{22179}>{$TEMP_CRIT:"{#SNMPVALUE}"}','Cisco Catalyst 3750V2-48TS: {#SNMPVALUE}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{22180}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco Catalyst 3750V2-48TS: {#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"}','6cecb3ad6e7640cc84b03e3b3943ad07',''), ('18431','{22181}>{$TEMP_WARN:"{#SNMPVALUE}"}','Cisco Catalyst 3750V2-48TS: {#SNMPVALUE}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{22182}<{$TEMP_WARN:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco Catalyst 3750V2-48TS: {#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"}','6f5d1c3f3c804b6ba17486db5e6e8037',''), ('18432','{22183}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','Cisco Catalyst 3750V2-48TS: {#SNMPVALUE}: Temperature is too low','','0','3','',NULL,'0','2','1','{22184}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco Catalyst 3750V2-48TS: {#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','ed406cbc4b08446991c610c902574cac',''), ('18433','{22185}=0','Mellanox: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','fe4c81a386814dfa80ffc76e1b7da9a1',''), ('18434','{30944}>{$ICMP_LOSS_WARN} and {30944}<100','Mellanox: High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','52b307324c37481693d419df236cbbd7',''), ('18435','{30945}>{$ICMP_RESPONSE_TIME_WARN}','Mellanox: High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','39a9cff305074e1a8b7c6ed0c526fda9',''), ('18436','{22188}>{$CPU.UTIL.CRIT}','Mellanox: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Mellanox: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','26913093ab414fe69ff157102ae54796',''), ('18437','{23919}<>{23920} and length({23921})>0','Mellanox: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Mellanox: System name has changed (new name: {ITEM.VALUE})','ff7ad0676a774cf49a4568e752dd916b',''), ('18438','({32984}>0 and {32984}<10m) or ({32984}=0 and {32985}<10m)','Mellanox: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Mellanox: {HOST.NAME} has been restarted (uptime < 10m)','667856dcaad04a108cb0a5150e825a50',''), ('18439','{22192}=0','Mellanox: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6e476399963a414a847c4c514055bf43',''), ('18440','{30946}=1','Mellanox: {#SENSOR_INFO}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','de81ef4f2c3f4f44a745a1fa1f179784',''), ('18441','{22194}<0 and {22195}>0 and ( {22196}=6 or {22196}=7 or {22196}=11 or {22196}=62 or {22196}=69 or {22196}=117 ) and ({22197}<>2)','Mellanox: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({22194}>0 and {22198}>0) or ({22197}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','2dc62fe3cd624e2ba99caa9ff94273f6',''), ('18442','({22199}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22200} or {22201}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22200}) and {22200}>0','Mellanox: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{22199}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22200} and {22201}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22200}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Mellanox: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','20e8f28ebc304ba185d475dbba51c4b8',''), ('18443','{22202}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {22203}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Mellanox: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{22204}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {22205}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Mellanox: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','6740479821cd49c199c345dd736a11f7',''), ('18444','{$IFCONTROL:"{#IFNAME}"}=1 and {23925}=2 and ({23926}<>{23927})','Mellanox: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, do not fire for the ''eternal off'' interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{23925}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','46918cfc713a4b1da7eed32cead0070b',''), ('18445','{22208}=1','Mellanox: {#ENT_NAME}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','5d2d688ad68343ff8884c11e9d233b98',''), ('18446','{22209}>{$TEMP.MAX.WARN:"{#SENSOR_INFO}"} or {22210}={$TEMP.STATUS.WARN}','Mellanox: {#SENSOR_INFO}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{22211}<{$TEMP.MAX.WARN:"{#SENSOR_INFO}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Mellanox: {#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP.MAX.WARN:"{#SENSOR_INFO}"}','352650536eef4858be1437a720712932',''), ('18447','{22212}>{$TEMP.MAX.CRIT:"{#SENSOR_INFO}"}','Mellanox: {#SENSOR_INFO}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{22213}<{$TEMP.MAX.CRIT:"{#SENSOR_INFO}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Mellanox: {#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP.MAX.CRIT:"{#SENSOR_INFO}"}','7259bdafbe7f4227999d7365a99e536d',''), ('18448','{22214}<{$TEMP.MIN.CRIT:"{#SENSOR_INFO}"}','Mellanox: {#SENSOR_INFO}: Temperature is too low','','0','3','',NULL,'0','2','1','{22215}>{$TEMP.MIN.CRIT:"{#SENSOR_INFO}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Mellanox: {#SENSOR_INFO}: Temperature is too low: <{$TEMP.MIN.CRIT:"{#SENSOR_INFO}"}','7bfa2bd0177940f4aff8dc95867ceb44',''), ('18449','{31337}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and (({31338}-{31339})<{$VFS.FS.FREE.MIN.CRIT:"{#FSNAME}"} or {31340}<1d)','Mellanox: {#FSNAME}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"{#FSNAME}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Mellanox: {#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%)','f1eb2ddb27d24cd99d8aba4485dfeeb9',''), ('18450','{31341}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and (({31342}-{31343})<{$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"} or {31344}<1d)','Mellanox: {#FSNAME}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Mellanox: {#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%)','b2e084f280434a3a8291e5dc691dfd7b',''), ('18451','{22224}>{$MEMORY.UTIL.MAX}','Mellanox: {#MEMNAME}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','Mellanox: {#MEMNAME}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','912430a103414c6eb9c8e55c45246f48',''), ('18462','{30969}<{$MEMORY.AVAILABLE.MIN} and {30970}>0','Linux: Lack of available memory','','0','3','',NULL,'0','0','0','','0','','0','Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}','0','Linux: Lack of available memory (<{$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2})','f78ed17586964a46a9de0c4f183984f6',''), ('18463','({22257}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22258} or {22259}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22258}) and {22258}>0','Linux: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{22257}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22258} and {22259}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22258}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Linux: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','11e2c8023463482da878cdad5bb7de76',''), ('18464','{22260}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {22261}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Linux: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{22262}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {22263}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Linux: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','6e8269b2260e42de97aec08043a768df',''), ('18473','{22292}=2','APC UPS: Battery needs replacement','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','7e40918732e74b5e8bd854422989e77d',''), ('18474','{22293}=4','APC UPS: Battery has an internal error condition','','0','3','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','7ae03f3f307b4f11ad2bc0548911cbd3',''), ('18475','{22294}=3','APC UPS: Battery is Low','','0','3','The UPS will be unable to sustain the current load, and its services will be lost if power is not restored.',NULL,'0','0','0','','0','','0','','0','','1282326bb61d45d88671bbbde3fab8ff',''), ('18476','{22295} > {$BATTERY.TEMP.MAX.WARN}','APC UPS: Battery has high temperature','','0','4','',NULL,'0','0','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','APC UPS: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','36a14fe061d1433e9875373307a4e0f4',''), ('18480','{22299} > 0 and ({22299} > {$UPS.INPUT_FREQ.MAX.WARN} or {22300} < {$UPS.INPUT_FREQ.MIN.WARN})','APC UPS: Unacceptable input frequency','','0','4','',NULL,'0','0','0','','0','','0','Current frequency: {ITEM.LASTVALUE1}','0','APC UPS: Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD})','1ddd2699b87f452a8893f75f805c0a81',''), ('18481','{22301} > 0 and ({22301} > {$UPS.INPUT_VOLT.MAX.WARN} or {22302} < {$UPS.INPUT_VOLT.MIN.WARN})','APC UPS: Unacceptable input voltage','','0','4','',NULL,'0','0','0','','0','','0','Current voltage: {ITEM.LASTVALUE1}','0','APC UPS: Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','f6527c4fed3d41168be23f9367f18405',''), ('18482','{22303} > {$UPS.OUTPUT.MAX.WARN}','APC UPS: Output load is high','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','Current load: {ITEM.LASTVALUE1}','0','APC UPS: Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD})','ebef08a42d1e47ffa82ea586c1a5b3d6',''), ('18483','{22304}=16','APC UPS: UPS is Emergency Static Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','c0e0b1db9a1f41379c340c122426778d',''), ('18484','{22305}=10','APC UPS: UPS is Hardware Failure Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','381a6a75d9084ff1bfcc30b6870a2682',''), ('18485','{22306}=7','APC UPS: UPS is Off','','0','3','',NULL,'0','0','0','','0','','0','','0','','da75b5277ceb423fac8d90b58d49c21f',''), ('18486','{22307}=3','APC UPS: UPS is on battery','','0','3','',NULL,'0','0','0','','0','','0','','0','','b0330f707fc64605934ed95233bd2246',''), ('18487','{22308}=4','APC UPS: UPS is on Smart Boost','','0','3','',NULL,'0','0','0','','0','','0','','0','','f8d75a2fdb6942e6b63831d206c78e56',''), ('18488','{22309}=12','APC UPS: UPS is On Smart Trim','','0','3','',NULL,'0','0','0','','0','','0','','0','','8eb59b4873e14acfa8e05791ed30c9d1',''), ('18489','{22310}=8','APC UPS: UPS is Rebooting','','0','3','',NULL,'0','0','0','','0','','0','','0','','e06247b357b849d3ad1886f797705320',''), ('18490','{22311}=11','APC UPS: UPS is Sleeping Until Power Return','','0','3','',NULL,'0','0','0','','0','','0','','0','','9b4424babc284dcabfb44dc725c03f40',''), ('18491','{22312}=6','APC UPS: UPS is Software Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','9ac2faafee484894bb304da02d6ab0b2',''), ('18492','{22313}=9','APC UPS: UPS is Switched Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','ce16d33b10e74b129d22378f96ede052',''), ('18493','{22314}=5','APC UPS: UPS is Timed Sleeping','','0','3','',NULL,'0','0','0','','0','','0','','0','','aa84fc5fd4434101a481481beb616a7c',''), ('18495','({33000}>0 and {33000}<10m) or ({33000}=0 and {33001}<10m)','APC UPS: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','APC UPS: {HOST.NAME} has been restarted (uptime < 10m)','b0959bdb606542bcb2952e820ac972c9',''), ('18496','{22318}=0','APC UPS: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4572d871f1d944bb855b93fdc6de5e88',''), ('18497','{22319}=1','APC UPS: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay','','0','2','The battery cartridge health. bit 0 Battery lifetime okay bit 1 Battery lifetime near end, order replacement cartridge bit 2 Battery lifetime exceeded, replace battery bit 3 Battery lifetime near end acknowledged, order replacement cartridge bit 4 Battery lifetime exceeded acknowledged, replace battery bit 5 Battery measured lifetime near end, order replacement cartridge bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','a248194aa30645c5918278b83944b20e',''), ('18499','{22321} > {$BATTERY.TEMP.MAX.WARN}','APC UPS: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature','','0','4','',NULL,'0','2','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','APC UPS: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','80f084121d56464f90e4a3ef9e198889',''), ('18500','{22322}=3','APC UPS: {#EXTERNAL_SENSOR1_NAME}: Sensor has status Critical','','0','4','The external sensor has returned a value greater than the critical threshold.',NULL,'0','2','0','','0','','0','','0','','3a40f3cb0a3b411697fe8d37f82404d4',''), ('18501','{22323}=4','APC UPS: {#EXTERNAL_SENSOR1_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','63ba879a2a324ffc958b761f2010ac8e',''), ('18502','{22324}=2','APC UPS: {#EXTERNAL_SENSOR1_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','dc90cd795879495fa473b71a2ff57b49',''), ('18503','{22325}=3','APC UPS: {#EXTERNAL_SENSOR2_NAME}: Sensor has status Critical','','0','4','The external sensor has returned a value greater than the critical threshold.',NULL,'0','2','0','','0','','0','','0','','8a62bc38e49e4779938c45839a190856',''), ('18504','{22326}=4','APC UPS: {#EXTERNAL_SENSOR2_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','ca02e8f92e134dce9834bd1d6f3ab469',''), ('18505','{22327}=2','APC UPS: {#EXTERNAL_SENSOR2_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','36ad29900db7410782daeddb9d7c648f',''), ('18506','{22328} > {$UPS.INPUT_VOLT.MAX.WARN} or {22329} < {$UPS.INPUT_VOLT.MIN.WARN}','APC UPS: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','APC UPS: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','63c623a2a9af44f38388a17742c87486',''), ('18507','({22330}<>"ok")','NetApp AFF A700: Cluster status is abnormal','','0','3','Any errors associated with the sample. For example, if the aggregation of data over multiple nodes fails then any of the partial errors might be returned, “ok” on success, or “error” on any internal uncategorized failure. Whenever a sample collection is missed but done at a later time, it is back filled to the previous 15 second timestamp and tagged with "backfilled_data". “Inconsistent_ delta_time” is encountered when the time between two collections is not the same for all nodes. Therefore, the aggregated value might be over or under inflated. “Negative_delta” is returned when an expected monotonically increasing value has decreased in value. “Inconsistent_old_data” is returned when one or more nodes do not have the latest data.',NULL,'0','0','0','','0','','0','','0','','c823a2eb325a4153871be705d7c24c72',''), ('18508','{24409}<>{24410} and length({24411})>0','NetApp AFF A700: Version has changed','','0','1','The NetApp AFF A700 version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','NetApp AFF A700: Version has changed (new version: {ITEM.VALUE})','4a2936f068ed486f8c8a2cf2cfa7440b',''), ('18509','({24412}<>{24413} and {24414}="error")','NetApp AFF A700: {#ID}: Chassis has something errors','','0','3','Something is wrong with the chassis.',NULL,'0','2','1','({24412}<>{24413} and {24414}="ok")','0','','1','','0','','381eb797545d452a84d3dba43865bbed',''), ('18510','({24415}<>{24416} and {24417}<>"present")','NetApp AFF A700: {#DISKNAME}: Disk of the Node "{#NODENAME}" has state different from "present"','','0','3','Something is wrong with the disk.',NULL,'0','2','1','({24415}<>{24416} and {24417}="present")','0','','1','','0','','72c1925f51c149eca27c7ddd1c81e44f',''), ('18511','({24418}<>{24419} and {24420}="error")','NetApp AFF A700: {#FRUID}: FRU of the chassis "{#ID}" state is error','','0','3','Something is wrong with the FRU.',NULL,'0','2','1','({24418}<>{24419} and {24420}="ok")','0','','1','','0','','a17cb2ea98b6415d9e22e7f591d80adb',''), ('18512','({24421}<>{24422} and {24423}<>"online")','NetApp AFF A700: {#LUNNAME}: LUN of the SVM "{#SVMNAME}" has abnormal container state','','0','3','LUNs are only available when their containers are available.',NULL,'0','2','1','({24421}<>{24422} and {24423}="online")','0','','1','','0','','7a4e0a681edd4db6b701b131fea0e5e4',''), ('18513','({24424}<>{24425} and {24426}<>"online")','NetApp AFF A700: {#LUNNAME}: LUN of the SVM "{#SVMNAME}" has abnormal state','','0','3','Normal states for a LUN are online and offline. Other states indicate errors.',NULL,'0','2','1','({24424}<>{24425} and {24426}="online")','0','','1','','0','','5b065dd69e654bee881ae60464a5c9fe',''), ('18514','{24427}<>{24428} and length({24429})>0','NetApp AFF A700: {#NODENAME}: Version has changed','','0','1','{#NODENAME} version has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','NetApp AFF A700: {#NODENAME}: Version has changed (new version: {ITEM.VALUE})','34092a7ade784221ae50eb74a6fbcb5d',''), ('18515','({22345}<>"normal")','NetApp AFF A700: {#NODENAME}: Node has over temperature','','0','3','The hardware shuts down if the temperature exceeds critical thresholds(item''s value is "over").',NULL,'0','2','0','','0','','0','','0','','4dbb3a9da15f45989b8fa4217f3f25c3',''), ('18516','({22346}<>"up")','NetApp AFF A700: {#NODENAME}: Node state is abnormal','','0','3','The state of the node is different from up: booting - Node is booting up. down - Node has stopped or is dumping core. taken_over - Node has been taken over by its HA partner and is not yet waiting for giveback. waiting_for_giveback - Node has been taken over by its HA partner and is waiting for the HA partner to giveback disks. degraded - Node has one or more critical services offline. unknown - Node or its HA partner cannot be contacted and there is no information on the node''s state.',NULL,'0','2','0','','0','','0','','0','','db8ff0f2cd294cc5952992a0d476e798',''), ('18517','{22347}<10m','NetApp AFF A700: {#NODENAME}: Node has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','2','0','','0','','1','','0','NetApp AFF A700: {#NODENAME}: Node has been restarted (uptime < 10m)','61357dfdb08846c4935f62ba894b159a',''), ('18518','({24430}<>{24431} and {24432}="down")','NetApp AFF A700: {#ETHPORTNAME}: Ethernet port of the Node "{#NODENAME}" is down','','0','3','Something is wrong with the ethernet port.',NULL,'0','2','1','({24430}<>{24431} and {24432}="up")','0','','1','','0','','0fa3a54b559349d58b616720ee33cdf5',''), ('18519','({24433}<>{24434} and {24435}<>"online")','NetApp AFF A700: {#FCPORTNAME}: FC port of the Node "{#NODENAME}" has state different from "online"','','0','3','Something is wrong with the FC port.',NULL,'0','2','1','({24433}<>{24434} and {24435}="online")','0','','1','','0','','a985c047b9834081bf21ae50836cef46',''), ('18520','({24436}<>{24437} and {24438}<>"running")','NetApp AFF A700: {#SVMNAME}: SVM state is abnormal','','0','3','Something is wrong with the SVM.',NULL,'0','2','1','({24436}<>{24437} and {24438}="running")','0','','1','','0','','7c5695fd13a4489ca1c9772f1d3376a7',''), ('18521','({24439}<>{24440} and {24441}<>"online")','NetApp AFF A700: {#VOLUMENAME}: Volume state is abnormal','','0','3','A volume can only be brought online if it is offline. Taking a volume offline removes its junction path. The ''mixed'' state applies to FlexGroup volumes only and cannot be specified as a target state. An ''error'' state implies that the volume is not in a state to serve data.',NULL,'0','2','1','({24439}<>{24440} and {24441}="online")','0','','1','','0','','b00f339ed1a9450ba096cabababcf76e',''), ('18522','{22356}>{22356}','Apache ActiveMQ: Broker {#JMXBROKERNAME}: Message enqueue rate is higher than dequeue rate','','0','3','Enqueue rate is higher than dequeue rate. It may indicate performance problems.',NULL,'0','2','0','','0','','0','','0','Apache ActiveMQ: Broker {#JMXBROKERNAME}: Message enqueue rate is higher than dequeue rate for {$ACTIVEMQ.MSG.RATE.WARN.TIME:"{#JMXBROKERNAME}"}','a3ab7bca031c45059418fa82a3c67369',''), ('18523','{22357}>{22358}','Apache ActiveMQ: {#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Message enqueue rate is higher than dequeue rate','','0','3','Enqueue rate is higher than dequeue rate. It may indicate performance problems.',NULL,'0','2','0','','0','','0','','0','Apache ActiveMQ: {#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Message enqueue rate is higher than dequeue rate for {$ACTIVEMQ.MSG.RATE.WARN.TIME:"{#JMXDESTINATIONNAME}"}','344a0b83a5444d009aa56e97c1c0171b',''), ('18524','{28258}>{$ACTIVEMQ.EXPIRED.WARN:"{#JMXDESTINATIONNAME}"}','Apache ActiveMQ: {#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Expired messages count is high','','0','3','This metric represents the number of messages that expired before they could be delivered. If you expect all messages to be delivered and acknowledged within a certain amount of time, you can set an expiration for each message, and investigate if your ExpiredCount metric rises above zero.',NULL,'0','2','0','','0','','0','','0','Apache ActiveMQ: {#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Expired messages count higher than {$ACTIVEMQ.EXPIRED.WARN:"{#JMXDESTINATIONNAME}"}','a498405c5b764c1ea9f0e151adf94ed7',''), ('18525','{22360}>{$ACTIVEMQ.QUEUE.WARN:"{#JMXDESTINATIONNAME}"} and {$ACTIVEMQ.QUEUE.ENABLED:"{#JMXDESTINATIONNAME}"}=1','Apache ActiveMQ: {#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Queue size is high','','0','3','Queue size is higher than threshold. It may indicate performance problems.',NULL,'0','2','0','','0','','0','','0','Apache ActiveMQ: {#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Queue size higher than {$ACTIVEMQ.QUEUE.WARN:"{#JMXDESTINATIONNAME}"} for {$ACTIVEMQ.QUEUE.TIME:"{#JMXDESTINATIONNAME}"}','f1c49943152c407088e3bf288b650b41',''), ('18526','{22361}/{22362}*100>{$GITLAB.PUMA.UTILIZATION.MAX.WARN}','GitLab: Puma instance thread utilization is too high','','0','2','',NULL,'0','2','0','','0','','0','','0','GitLab: Puma instance thread utilization is too high (over {$GITLAB.PUMA.UTILIZATION.MAX.WARN}% for 5m)','b69fe81449bd4b6cb6dfddeb333e8898',''), ('18527','{22363}>{22364}/100*{$SQUID.PAGE.FAULT.WARN}','Squid: High sys page faults rate','','0','2','',NULL,'0','0','0','','0','','0','','0','Squid: High sys page faults rate (>{$SQUID.PAGE.FAULT.WARN}% of received HTTP requests)','89a1cfe0f02f4da880f197c2e5605db8',''), ('18528','{33843}>{$ZABBIX.SERVER.UTIL.MAX:"report manager"}','Zabbix server: Utilization of report manager processes is high','','0','3','Indicates potential performance issues with the report manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33843}<{$ZABBIX.SERVER.UTIL.MIN:"report manager"}','0','','0','','0','Zabbix server: Utilization of report manager processes over {$ZABBIX.SERVER.UTIL.MAX:"report manager"}%','32d6f18edd5a45e1999f294f227c600f',''), ('18529','{33844}>{$ZABBIX.SERVER.UTIL.MAX:"report writer"}','Zabbix server: Utilization of report writer processes is high','','0','3','Indicates potential performance issues with the report writer, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33844}<{$ZABBIX.SERVER.UTIL.MIN:"report writer"}','0','','0','','0','Zabbix server: Utilization of report writer processes over {$ZABBIX.SERVER.UTIL.MAX:"report writer"}%','83fa871d54f74c89a7c85d429d40da53',''), ('18530','{33745}>{$ZABBIX.SERVER.UTIL.MAX:"report manager"}','Zabbix server: Utilization of report manager processes is high','','0','3','Indicates potential performance issues with the report manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33745}<{$ZABBIX.SERVER.UTIL.MIN:"report manager"}','0','','0','','0','Zabbix server: Utilization of report manager processes over {$ZABBIX.SERVER.UTIL.MAX:"report manager"}%','82f774b4a47247f49db1ab0480a69eae',''), ('18531','{33746}>{$ZABBIX.SERVER.UTIL.MAX:"report writer"}','Zabbix server: Utilization of report writer processes is high','','0','3','Indicates potential performance issues with the report writer, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33746}<{$ZABBIX.SERVER.UTIL.MIN:"report writer"}','0','','0','','0','Zabbix server: Utilization of report writer processes over {$ZABBIX.SERVER.UTIL.MAX:"report writer"}%','03158d902b854b3495aa76042f361bea',''), ('18534','{22371}>{$MSSQL.WORK_FILES.MAX}','MSSQL: Number of work files created per second is high','','0','3','Too many work files created per second to store temporary results for hash joins and hash aggregates.',NULL,'0','0','0','','0','','0','','0','MSSQL: Number of work files created per second is high (over {$MSSQL.WORK_FILES.MAX} for 5m)','2f7e2dd4a94e4e92b468f4e2e2364f71',''), ('18535','{22372}>{$MSSQL.WORK_TABLES.MAX}','MSSQL: Number of work tables created per second is high','','0','3','Too many work tables created per second to store temporary results for query spool, LOB variables, XML variables, and cursors.',NULL,'0','0','0','','0','','0','','0','MSSQL: Number of work tables created per second is high (over {$MSSQL.WORK_TABLES.MAX} for 5m)','0214004de3084ce6b35d5bba53a66947',''), ('18536','{33359}>{$MSSQL.BACKUP_DIFF.CRIT:"{#DBNAME}"} and {$MSSQL.BACKUP_DIFF.USED:"{#DBNAME}"}=1','MSSQL: DB ''{#DBNAME}'': Diff backup is old','','0','4','The differential backup has not been executed for a long time.',NULL,'0','2','0','','0','','1','Time since last backup: {ITEM.LASTVALUE1}','0','MSSQL: DB ''{#DBNAME}'': Diff backup older than {$MSSQL.BACKUP_DIFF.CRIT:"{#DBNAME}"}','036892c6b9de41c698a4e9acd5457e6a',''), ('18537','{33360}>{$MSSQL.BACKUP_DIFF.WARN:"{#DBNAME}"} and {$MSSQL.BACKUP_DIFF.USED:"{#DBNAME}"}=1','MSSQL: DB ''{#DBNAME}'': Diff backup is old','','0','2','The differential backup has not been executed for a long time.',NULL,'0','2','0','','0','','1','Time since last backup: {ITEM.LASTVALUE1}','0','MSSQL: DB ''{#DBNAME}'': Diff backup older than {$MSSQL.BACKUP_DIFF.WARN:"{#DBNAME}"}','9a294163ee034fc6a58f5534a7d79aac',''), ('18538','{33361}>{$MSSQL.BACKUP_FULL.CRIT:"{#DBNAME}"} and {$MSSQL.BACKUP_FULL.USED:"{#DBNAME}"}=1','MSSQL: DB ''{#DBNAME}'': Full backup is old','','0','4','The full backup has not been executed for a long time.',NULL,'0','2','0','','0','','1','Time since last backup: {ITEM.LASTVALUE1}','0','MSSQL: DB ''{#DBNAME}'': Full backup older than {$MSSQL.BACKUP_FULL.CRIT:"{#DBNAME}"}','09c8e059ffa44d0eb1be626b5d820dc9',''), ('18539','{33362}>{$MSSQL.BACKUP_FULL.WARN:"{#DBNAME}"} and {$MSSQL.BACKUP_FULL.USED:"{#DBNAME}"}=1','MSSQL: DB ''{#DBNAME}'': Full backup is old','','0','2','The full backup has not been executed for a long time.',NULL,'0','2','0','','0','','1','Time since last backup: {ITEM.LASTVALUE1}','0','MSSQL: DB ''{#DBNAME}'': Full backup older than {$MSSQL.BACKUP_FULL.WARN:"{#DBNAME}"}','b380d76b1055482ca8cd69c90611f1a5',''), ('18540','{33355}>{$MSSQL.BACKUP_LOG.CRIT:"{#DBNAME}"} and {$MSSQL.BACKUP_LOG.USED:"{#DBNAME}"}=1 and {33356}<>3','MSSQL: DB ''{#DBNAME}'': Log backup is old','','0','4','The log backup has not been executed for a long time.',NULL,'0','2','0','','0','','1','Time since last backup: {ITEM.LASTVALUE1}','0','MSSQL: DB ''{#DBNAME}'': Log backup older than {$MSSQL.BACKUP_LOG.CRIT:"{#DBNAME}"}','4a6e76dc9a5148649d07e35e962b5893',''), ('18541','{33357}>{$MSSQL.BACKUP_LOG.WARN:"{#DBNAME}"} and {$MSSQL.BACKUP_LOG.USED:"{#DBNAME}"}=1 and {33358}<>3','MSSQL: DB ''{#DBNAME}'': Log backup is old','','0','2','The log backup has not been executed for a long time.',NULL,'0','2','0','','0','','1','Time since last backup: {ITEM.LASTVALUE1}','0','MSSQL: DB ''{#DBNAME}'': Log backup older than {$MSSQL.BACKUP_LOG.WARN:"{#DBNAME}"}','6000420450cf453bae3652c7f7d05e2b',''), ('18542','{22379}=0','MSSQL: Job ''{#JOBNAME}'': Failed to run','','0','2','The last run of the job has failed.',NULL,'0','2','0','','0','','1','','0','','304f468605164fd2baa1905cedf2c897',''), ('18543','{35954}>{$MSSQL.JOB_DURATION.WARN:"{#JOBNAME}"}','MSSQL: Job ''{#JOBNAME}'': Job duration is high','','0','2','The job is taking too long.',NULL,'0','2','0','','0','','1','Job duration: {ITEM.LASTVALUE1}','0','MSSQL: Job ''{#JOBNAME}'': Job duration is greater than {$MSSQL.JOB_DURATION.WARN:"{#JOBNAME}"}','7e45cb8f41114388ac8772006d929da2',''), ('18544','{22381}<{$MYSQL.BUFF_UTIL.MIN.WARN}','MySQL: Buffer pool utilization is too low','','0','2','The buffer pool utilization is less than `{$MYSQL.BUFF_UTIL.MIN.WARN}`% in the last 5 minutes. This means that there is a lot of unused RAM allocated for the buffer pool, which you can easily reallocate at the moment.',NULL,'0','0','0','','0','','0','','0','MySQL: Buffer pool utilization is too low (less than {$MYSQL.BUFF_UTIL.MIN.WARN}% for 5m)','0e8ea91d72a64507aaadf9ea5efa6412',''), ('18545','{22382}<{$MYSQL.BUFF_UTIL.MIN.WARN}','MySQL: Buffer pool utilization is too low','','0','2','The buffer pool utilization is less than `{$MYSQL.BUFF_UTIL.MIN.WARN}`% in the last 5 minutes. This means that there is a lot of unused RAM allocated for the buffer pool, which you can easily reallocate at the moment.',NULL,'0','0','0','','0','','0','','0','MySQL: Buffer pool utilization is too low (less than {$MYSQL.BUFF_UTIL.MIN.WARN}% for 5m)','d785a37fe8d7484d9998e47e0e1d741f',''), ('18546','{22383}<{$MYSQL.BUFF_UTIL.MIN.WARN}','MySQL: Buffer pool utilization is too low','','0','2','The buffer pool utilization is less than `{$MYSQL.BUFF_UTIL.MIN.WARN}`% in the last 5 minutes. This means that there is a lot of unused RAM allocated for the buffer pool, which you can easily reallocate at the moment.',NULL,'0','0','0','','0','','0','','0','MySQL: Buffer pool utilization is too low (less than {$MYSQL.BUFF_UTIL.MIN.WARN}% for 5m)','f4c2e4edf0c34bb1856ed392f2bc7c87',''), ('18547','{22384} > {$ORACLE.CONCURRENCY.MAX.WARN}','Oracle: Too high database concurrency','','0','2','The concurrency rate exceeds `{$ORACLE.CONCURRENCY.MAX.WARN}`%. A high contention value does not indicate the root cause of the problem, but is a signal to review resource consumption (determine the "heaviest" queries in the database, trace sessions, etc.) This will help find the root cause and possible optimization points both in database configuration and the logic of building queries.',NULL,'0','0','0','','0','','0','','0','Oracle: Too high database concurrency (over {$ORACLE.CONCURRENCY.MAX.WARN}% for 5 min)','ff16c7bbeaa5439f98ffe12ce7deff71',''), ('18548','{22385} > {$ORACLE.CONCURRENCY.MAX.WARN}','Oracle: Too high database concurrency','','0','2','The concurrency rate exceeds `{$ORACLE.CONCURRENCY.MAX.WARN}`%. A high contention value does not indicate the root cause of the problem, but is a signal to review resource consumption (determine the "heaviest" queries in the database, trace sessions, etc.) This will help find the root cause and possible optimization points both in database configuration and the logic of building queries.',NULL,'0','0','0','','0','','0','','0','Oracle: Too high database concurrency (over {$ORACLE.CONCURRENCY.MAX.WARN}% for 5 min)','7099e4a160c1446395b9e5b721db7b38',''), ('18549','{22386}=0','TiDB PD: Instance is not responding','','0','3','',NULL,'0','0','0','','0','','0','','0','','ab1d0d23dad844099e42debb71512887',''), ('18550','{22387}<10m','TiDB PD: Instance has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','TiDB PD: Instance has been restarted (uptime < 10m)','9f47a19f6f424df598e74c5a653ebf27',''), ('18551','{23515}<>{23516} and length({23517})>0','TiDB PD: Version has changed','','0','1','PD version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','TiDB PD: Version has changed (new version: {ITEM.VALUE})','6fb6045405af4c89b09750f57ada472a',''), ('18552','{22390}/{22391}*100>{$PD.STORAGE_USAGE.MAX.WARN}','TiDB PD: Current storage usage is too high','','0','2','Over {$PD.STORAGE_USAGE.MAX.WARN}% of the cluster space is occupied.',NULL,'0','2','0','','0','','0','','0','TiDB PD: Current storage usage is too high (over {$PD.STORAGE_USAGE.MAX.WARN}% for 5m)','843d566b33bc401390c2a633d08bb033',''), ('18553','{22392}>0','TiDB PD: There are disconnected TiKV nodes','','0','2','PD does not receive a TiKV heartbeat within 20 seconds. Normally a TiKV heartbeat comes in every 10 seconds.',NULL,'0','2','0','','0','','0','','0','','077d39f8ea194081a9d0c5dfdec4d1b5',''), ('18554','{22393}>0','TiDB PD: There are offline TiKV nodes','','0','3','PD has not received a TiKV heartbeat for a long time.',NULL,'0','2','0','','0','','0','','0','','526b935d3fa04825b7544eb6efd50ab5',''), ('18555','{22394}>0','TiDB PD: There are low space TiKV nodes','','0','3','Indicates that there is no sufficient space on the TiKV node.',NULL,'0','2','0','','0','','0','','0','','87ef0f211afd4d58adec05007ef1d263',''), ('18556','{22395}>0','TiDB PD: There are unresponsive peers','','0','2','The number of Regions with an unresponsive peer reported by the Raft leader.',NULL,'0','2','0','','0','','0','','1','','2bc6b48bbfd8436e80903ea947571501',''), ('18557','{22396}>{$PD.MISS_REGION.MAX.WARN}','TiDB PD: Too many missed regions','','0','2','The number of Region replicas is smaller than the value of max-replicas. When a TiKV machine is down and its downtime exceeds max-down-time, it usually leads to missing replicas for some Regions during a period of time. When a TiKV node is made offline, it might result in a small number of Regions with missing replicas.',NULL,'0','2','0','','0','','0','','1','TiDB PD: Too many missed regions (over {$PD.MISS_REGION.MAX.WARN} in 5m)','1f80bd81d11345f59699617113a0cad5',''), ('18558','{22397}/{22398}*100>{$TIDB.OPEN.FDS.MAX.WARN}','TiDB: Current number of open files is too high','','0','2','Heavy file descriptor usage (i.e., near the process''s file descriptor limit) indicates a potential file descriptor exhaustion issue.',NULL,'0','0','0','','0','','0','','0','TiDB: Current number of open files is too high (over {$TIDB.OPEN.FDS.MAX.WARN}% for 5m)','cfd6ba0dbf294b9e9ab6afc7d44be7b3',''), ('18559','{22399}>{$TIDB.DDL.WAITING.MAX.WARN}','TiDB: Too many DDL waiting jobs','','0','2','',NULL,'0','0','0','','0','','0','','0','TiDB: Too many DDL waiting jobs (over {$TIDB.DDL.WAITING.MAX.WARN} for 5m)','4125d55d9931455091d2f3a0b25e9678',''), ('18560','{22400}>{$TIDB.SCHEMA_LOAD_ERRORS.MAX.WARN}','TiDB: Too many schema lease errors','','0','3','',NULL,'0','0','0','','0','','0','','0','TiDB: Too many schema lease errors (over {$TIDB.SCHEMA_LOAD_ERRORS.MAX.WARN} for 5m)','b4948f37af804c01a2b8887f9e89ec90',''), ('18561','{22401}>{$TIDB.HEAP.USAGE.MAX.WARN}','TiDB: Heap memory usage is too high','','0','2','',NULL,'0','0','0','','0','','0','','0','TiDB: Heap memory usage is too high (over {$TIDB.HEAP.USAGE.MAX.WARN} for 5m)','575a4821ed8c4a1881b7f9bd264b1929',''), ('18562','{22402}<{$TIDB.MONITOR_KEEP_ALIVE.MAX.WARN}','TiDB: Too few keep alive operations','','0','3','Indicates whether the TiDB process still exists. If the number of times for tidb_monitor_keep_alive_total increases less than 10 per minute, the TiDB process might already exit and an alert is triggered.',NULL,'0','0','0','','0','','0','','0','TiDB: Too few keep alive operations (less {$TIDB.MONITOR_KEEP_ALIVE.MAX.WARN} for 5m)','eb3c09904fa843d78401b00eff4f6a08',''), ('18563','{22403}>{$TIDB.TIME_JUMP_BACK.MAX.WARN}','TiDB: Too many time jump backs','','0','2','',NULL,'0','0','0','','0','','0','','0','TiDB: Too many time jump backs (over {$TIDB.TIME_JUMP_BACK.MAX.WARN} for 5m)','c3c1f6eab224453b92534d5393aca2b7',''), ('18564','{22404}>{$TIDB.SCHEMA_LEASE_ERRORS.MAX.WARN}','TiDB: Too many schema lease errors','','0','3','The latest schema information is not reloaded in TiDB within one lease.',NULL,'0','0','0','','0','','0','','0','TiDB: Too many schema lease errors (over {$TIDB.SCHEMA_LEASE_ERRORS.MAX.WARN} for 5m)','b077eb1afe6a4da79707987324fb40c8',''), ('18565','{22405}=0','TiDB: Instance is not responding','','0','3','',NULL,'0','0','0','','0','','0','','0','','82a638ac4a3f4b349ee7bb0d53bc1f29',''), ('18566','{22406}>0','TiDB: There are panicked TiDB threads','','0','3','When a panic occurs, an alert is triggered. The thread is often recovered, otherwise, TiDB will frequently restart.',NULL,'0','0','0','','0','','0','','0','','c457465731c947eab7b477186d8ba876',''), ('18567','{22407}>{$TIDB.REGION_ERROR.MAX.WARN}','TiDB: Too many region related errors','','0','3','',NULL,'0','0','0','','0','','0','','0','TiDB: Too many region related errors (over {$TIDB.REGION_ERROR.MAX.WARN} for 5m)','d3cb81c46e414ff2a7e411a877b899ef',''), ('18568','{22408}<10m','TiDB: Instance has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','TiDB: Instance has been restarted (uptime < 10m)','91adc4c6b9364693891faf58c8cced75',''), ('18569','{23518}<>{23519} and length({23520})>0','TiDB: Version has changed','','0','1','TiDB version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','TiDB: Version has changed (new version: {ITEM.VALUE})','5f863fc0944848fdad145f42c94dbea3',''), ('18570','{22411}>{$TIDB.GC_ACTIONS.ERRORS.MAX.WARN}','TiDB: Too many failed GC-related operations','','0','2','',NULL,'0','2','0','','0','','0','','1','TiDB: Too many failed GC-related operations (over {$TIDB.GC_ACTIONS.ERRORS.MAX.WARN} in 5m)','2d24956d0a4f459fad155590376696c1',''), ('18571','{33388}>{$TIKV.COPROCESSOR.ERRORS.MAX.WARN}','TiDB TiKV: Too many coprocessor request error','','0','2','',NULL,'0','0','0','','0','','0','','0','TiDB TiKV: Too many coprocessor request error (over {$TIKV.COPROCESSOR.ERRORS.MAX.WARN} in 5m)','31eca27ff6ce4ed78ee428ed3b8d8806',''), ('18573','{22414}>{$TIKV.PENDING_TASKS.MAX.WARN}','TiDB TiKV: Too many pending tasks','','0','3','',NULL,'0','0','0','','0','','0','','0','TiDB TiKV: Too many pending tasks (over {$TIKV.PENDING_TASKS.MAX.WARN} for 5m)','f26874f910e34933983685ae43a90bee',''), ('18574','{22415}<10m','TiDB TiKV: Instance has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','TiDB TiKV: Instance has been restarted (uptime < 10m)','ca06602fa0b64a2ba0c51ed4835c52b2',''), ('18575','{22416}>{$TIKV.STORE.ERRORS.MAX.WARN}','TiDB TiKV: Store_id {#STORE_ID}: Too many failure messages "{#TYPE}"','','0','2','Indicates that the remote TiKV cannot be connected.',NULL,'0','2','0','','0','','0','','1','TiDB TiKV: Store_id {#STORE_ID}: Too many failure messages "{#TYPE}" (over {$TIKV.STORE.ERRORS.MAX.WARN} in 5m)','1f65b64824d64852aaa609df5f3e27fd',''), ('18576','{22417} < {$BATTERY.CAPACITY.MIN.WARN}','APC UPS Galaxy: Battery has low capacity','','0','4','',NULL,'0','0','0','','0','','0','Current capacity: {ITEM.LASTVALUE1}','0','APC UPS Galaxy: Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%)','1800690ba0504df9940a4e667c846132',''), ('18577','{22418}=2','APC UPS Galaxy: Battery needs replacement','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','b4d10f8908f4473facde6d2db1520e0f',''), ('18578','{22419}=4','APC UPS Galaxy: Battery has an internal error condition','','0','3','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','d84ec0d0b8d84e3294cbe7ffaed0c83e',''), ('18579','{22420}=3','APC UPS Galaxy: Battery is Low','','0','3','The UPS will be unable to sustain the current load, and its services will be lost if power is not restored.',NULL,'0','0','0','','0','','0','','0','','8f569ce6c916456581e1cb2cdd8d4dba',''), ('18580','{22421} > {$BATTERY.TEMP.MAX.WARN}','APC UPS Galaxy: Battery has high temperature','','0','4','',NULL,'0','0','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','APC UPS Galaxy: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','0e1f47f0604d4b1b8769e497d7f328b9',''), ('18581','{22422} > 0 and ({22422} > {$UPS.INPUT_FREQ.MAX.WARN} or {22423} < {$UPS.INPUT_FREQ.MIN.WARN})','APC UPS Galaxy: Unacceptable input frequency','','0','4','',NULL,'0','0','0','','0','','0','Current frequency: {ITEM.LASTVALUE1}','0','APC UPS Galaxy: Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD})','786d9928356e41ad9b6b2de3b4f3a96f',''), ('18582','{22424} > 0 and ({22424} > {$UPS.INPUT_VOLT.MAX.WARN} or {22425} < {$UPS.INPUT_VOLT.MIN.WARN})','APC UPS Galaxy: Unacceptable input voltage','','0','4','',NULL,'0','0','0','','0','','0','Current voltage: {ITEM.LASTVALUE1}','0','APC UPS Galaxy: Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','de88ed3b64644d3f9ad1cc3f965757bc',''), ('18583','{22426} > {$UPS.OUTPUT.MAX.WARN}','APC UPS Galaxy: Output load is high','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','Current load: {ITEM.LASTVALUE1}','0','APC UPS Galaxy: Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD})','fb7ca4b92e714fda95152b698cf1aa92',''), ('18584','{22427}=16','APC UPS Galaxy: UPS is Emergency Static Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','efed1ccf301740c1a29e71cd89e5659f',''), ('18585','{22428}=10','APC UPS Galaxy: UPS is Hardware Failure Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','44394841911641c4972165b59b8f6a5b',''), ('18586','{22429}=7','APC UPS Galaxy: UPS is Off','','0','3','',NULL,'0','0','0','','0','','0','','0','','d60b075bfaaa4aeea2398d058fb79c92',''), ('18587','{22430}=3','APC UPS Galaxy: UPS is on battery','','0','3','',NULL,'0','0','0','','0','','0','','0','','4d54e6e979f94801a3c1e9d6080886bb',''), ('18588','{22431}=4','APC UPS Galaxy: UPS is on Smart Boost','','0','3','',NULL,'0','0','0','','0','','0','','0','','eb430f5409a24f89b0a9e56fb28087c4',''), ('18589','{22432}=12','APC UPS Galaxy: UPS is On Smart Trim','','0','3','',NULL,'0','0','0','','0','','0','','0','','77dbd58283b542cfbca9a9255344e97e',''), ('18590','{22433}=8','APC UPS Galaxy: UPS is Rebooting','','0','3','',NULL,'0','0','0','','0','','0','','0','','3856ff4ac1d64f8e80c4e0cbb1e04c1a',''), ('18591','{22434}=11','APC UPS Galaxy: UPS is Sleeping Until Power Return','','0','3','',NULL,'0','0','0','','0','','0','','0','','10d8d392f93a492b9be767c7ccdf06ed',''), ('18592','{22435}=6','APC UPS Galaxy: UPS is Software Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','2ab92cb281754de6ad5245509c20056d',''), ('18593','{22436}=9','APC UPS Galaxy: UPS is Switched Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','8fabe8958cfd4dbbabd70648dff1be06',''), ('18594','{22437}=5','APC UPS Galaxy: UPS is Timed Sleeping','','0','3','',NULL,'0','0','0','','0','','0','','0','','9846ac1bbf024e63a05a83e2c02de7ba',''), ('18595','{24371}<>{24372} and length({24373})>0','APC UPS Galaxy: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','APC UPS Galaxy: System name has changed (new name: {ITEM.VALUE})','811ff6e90d904c8c98feadc89a18e733',''), ('18596','({32986}>0 and {32986}<10m) or ({32986}=0 and {32987}<10m)','APC UPS Galaxy: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','APC UPS Galaxy: {HOST.NAME} has been restarted (uptime < 10m)','5c50881846c649dbb47adcfb3dfc7d68',''), ('18597','{22441}=0','APC UPS Galaxy: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e12b11324a634eeba56db1aec1834d5f',''), ('18598','{22442}=1','APC UPS Galaxy: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay','','0','2','The battery cartridge health. bit 0 Battery lifetime okay bit 1 Battery lifetime near end, order replacement cartridge bit 2 Battery lifetime exceeded, replace battery bit 3 Battery lifetime near end acknowledged, order replacement cartridge bit 4 Battery lifetime exceeded acknowledged, replace battery bit 5 Battery measured lifetime near end, order replacement cartridge bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','94e469f639cb4ae4ab3ac23918cfa651',''), ('18599','{22443}=0','APC UPS Galaxy: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status is not okay','','0','2','The battery cartridge status: bit 0 Disconnected bit 1 Overvoltage bit 2 NeedsReplacement bit 3 OvertemperatureCritical bit 4 Charger bit 5 TemperatureSensor bit 6 BusSoftStart bit 7 OvertemperatureWarning bit 8 GeneralError bit 9 Communication bit 10 DisconnectedFrame bit 11 FirmwareMismatch',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','60bf7de80cd741caa1c622e797da1d69',''), ('18600','{22444} > {$BATTERY.TEMP.MAX.WARN}','APC UPS Galaxy: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature','','0','4','',NULL,'0','2','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','APC UPS Galaxy: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','bdd4bb9fac784bc0b0dc72db3ac9e040',''), ('18601','{22445}=3','APC UPS Galaxy: {#EXTERNAL_SENSOR1_NAME}: Sensor has status Critical','','0','4','The external sensor has returned a value greater than the critical threshold.',NULL,'0','2','0','','0','','0','','0','','93d474d1badc45d5a48fe0e610744ff6',''), ('18602','{22446}=4','APC UPS Galaxy: {#EXTERNAL_SENSOR1_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','48fa5f120bd5495185a9d6f86fc823fd',''), ('18603','{22447}=2','APC UPS Galaxy: {#EXTERNAL_SENSOR1_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','b0652e627c10477c9e61786d85560d93',''), ('18604','{22448}=3','APC UPS Galaxy: {#EXTERNAL_SENSOR2_NAME}: Sensor has status Critical','','0','4','The external sensor has returned a value greater than the critical threshold.',NULL,'0','2','0','','0','','0','','0','','55acc85739e04ebea3414059907ef2e4',''), ('18605','{22449}=4','APC UPS Galaxy: {#EXTERNAL_SENSOR2_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','e8753aa5ca16449c8dc21af6c8c2a727',''), ('18606','{22450}=2','APC UPS Galaxy: {#EXTERNAL_SENSOR2_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','d16c60a30b5d46459237eef4df38df9f',''), ('18607','{22451} > {$UPS.INPUT_VOLT.MAX.WARN} or {22452} < {$UPS.INPUT_VOLT.MIN.WARN}','APC UPS Galaxy: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','APC UPS Galaxy: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','1824f0be30284d13bad9f895f7adaa0e',''), ('18608','{22453} > {$UPS.INPUT_VOLT.MAX.WARN} or {22454} < {$UPS.INPUT_VOLT.MIN.WARN}','APC UPS Galaxy: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','APC UPS Galaxy: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','675dc7c59e974f7eadd5d1562dec00ce',''), ('18609','{22455} < {$BATTERY.CAPACITY.MIN.WARN}','APC Smart-UPS: Battery has low capacity','','0','4','',NULL,'0','0','0','','0','','0','Current capacity: {ITEM.LASTVALUE1}','0','APC Smart-UPS: Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%)','58a0749ef9c94cf9802a62d274b6dad9',''), ('18610','{22456}=2','APC Smart-UPS: Battery needs replacement','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','8370727883de45dfa6b6d79f60cc86b3',''), ('18611','{22457}=4','APC Smart-UPS: Battery has an internal error condition','','0','3','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','2fb002b1a4584aa0bf0389360171893c',''), ('18612','{22458}=3','APC Smart-UPS: Battery is Low','','0','3','The UPS will be unable to sustain the current load, and its services will be lost if power is not restored.',NULL,'0','0','0','','0','','0','','0','','05aa81dc53ab45ffaf46580c9f827759',''), ('18613','{22459} > {$BATTERY.TEMP.MAX.WARN}','APC Smart-UPS: Battery has high temperature','','0','4','',NULL,'0','0','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','APC Smart-UPS: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','1e8c0b3d2d65487199e7fc3e1dde6e50',''), ('18614','{22460} > 0 and ({22460} > {$UPS.INPUT_FREQ.MAX.WARN} or {22461} < {$UPS.INPUT_FREQ.MIN.WARN})','APC Smart-UPS: Unacceptable input frequency','','0','4','',NULL,'0','0','0','','0','','0','Current frequency: {ITEM.LASTVALUE1}','0','APC Smart-UPS: Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD})','b89b059a430842aebbd3e6af71514303',''), ('18615','{22462} > 0 and ({22462} > {$UPS.INPUT_VOLT.MAX.WARN} or {22463} < {$UPS.INPUT_VOLT.MIN.WARN})','APC Smart-UPS: Unacceptable input voltage','','0','4','',NULL,'0','0','0','','0','','0','Current voltage: {ITEM.LASTVALUE1}','0','APC Smart-UPS: Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','2dbc2b96d332488cae4cbf87c985c6b0',''), ('18616','{22464} > {$UPS.OUTPUT.MAX.WARN}','APC Smart-UPS: Output load is high','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','Current load: {ITEM.LASTVALUE1}','0','APC Smart-UPS: Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD})','edb059eeee004d80a9b42154f16ab18a',''), ('18617','{22465}=16','APC Smart-UPS: UPS is Emergency Static Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','20ffc78c2f314ff58b5e75907605c82f',''), ('18618','{22466}=10','APC Smart-UPS: UPS is Hardware Failure Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','ec6e892f4c51414f887d428510d889e7',''), ('18619','{22467}=7','APC Smart-UPS: UPS is Off','','0','3','',NULL,'0','0','0','','0','','0','','0','','f4cb0ed7e65d4ea29394435cce7600f0',''), ('18620','{22468}=3','APC Smart-UPS: UPS is on battery','','0','3','',NULL,'0','0','0','','0','','0','','0','','e29c2a37586f474f87c388fa8eaf8b9c',''), ('18621','{22469}=4','APC Smart-UPS: UPS is on Smart Boost','','0','3','',NULL,'0','0','0','','0','','0','','0','','a07afe38040c4fd08488786ca3f529e5',''), ('18622','{22470}=12','APC Smart-UPS: UPS is On Smart Trim','','0','3','',NULL,'0','0','0','','0','','0','','0','','58f44a830386434db0f76553f64ebe67',''), ('18623','{22471}=8','APC Smart-UPS: UPS is Rebooting','','0','3','',NULL,'0','0','0','','0','','0','','0','','eb99c49157a948769128bc9eeeaff3fc',''), ('18624','{22472}=11','APC Smart-UPS: UPS is Sleeping Until Power Return','','0','3','',NULL,'0','0','0','','0','','0','','0','','b3d77823096e4bf4a06db8f2307284db',''), ('18625','{22473}=6','APC Smart-UPS: UPS is Software Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','000d6b412dd3467aaee40ce230cc059e',''), ('18626','{22474}=9','APC Smart-UPS: UPS is Switched Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','f1f86a1f23c745658d0c5d10557f67fc',''), ('18627','{22475}=5','APC Smart-UPS: UPS is Timed Sleeping','','0','3','',NULL,'0','0','0','','0','','0','','0','','434d70c967a9447a9fa927fc2867aa6d',''), ('18628','{24374}<>{24375} and length({24376})>0','APC Smart-UPS: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','APC Smart-UPS: System name has changed (new name: {ITEM.VALUE})','30153a623f0649e380de8f9ec5086b48',''), ('18629','({32988}>0 and {32988}<10m) or ({32988}=0 and {32989}<10m)','APC Smart-UPS: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','APC Smart-UPS: {HOST.NAME} has been restarted (uptime < 10m)','f23282a63bec4b1d951f80439947672d',''), ('18630','{22479}=0','APC Smart-UPS: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e9dc225935594e8aa25fb80fcfa68e4c',''), ('18631','{22480}=1','APC Smart-UPS: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay','','0','2','The battery cartridge health. bit 0 Battery lifetime okay bit 1 Battery lifetime near end, order replacement cartridge bit 2 Battery lifetime exceeded, replace battery bit 3 Battery lifetime near end acknowledged, order replacement cartridge bit 4 Battery lifetime exceeded acknowledged, replace battery bit 5 Battery measured lifetime near end, order replacement cartridge bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','02e19fb51d6949cdb99a6aafa71ff654',''), ('18632','{22481}=0','APC Smart-UPS: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status is not okay','','0','2','The battery cartridge status: bit 0 Disconnected bit 1 Overvoltage bit 2 NeedsReplacement bit 3 OvertemperatureCritical bit 4 Charger bit 5 TemperatureSensor bit 6 BusSoftStart bit 7 OvertemperatureWarning bit 8 GeneralError bit 9 Communication bit 10 DisconnectedFrame bit 11 FirmwareMismatch',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','a4f42d0a944f41349e0d206f1181bd3b',''), ('18633','{22482} > {$BATTERY.TEMP.MAX.WARN}','APC Smart-UPS: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature','','0','4','',NULL,'0','2','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','APC Smart-UPS: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','cb9603c5b7674e12a1a1ac98d4b73a65',''), ('18634','{22483}=3','APC Smart-UPS: {#EXTERNAL_SENSOR1_NAME}: Sensor has status Critical','','0','4','The external sensor has returned a value greater than the critical threshold.',NULL,'0','2','0','','0','','0','','0','','603b13b89c7b4ad0bd51d63b93501174',''), ('18635','{22484}=4','APC Smart-UPS: {#EXTERNAL_SENSOR1_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','9e108d20e6c74e8b96d92f4ce0e7c840',''), ('18636','{22485}=2','APC Smart-UPS: {#EXTERNAL_SENSOR1_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','007b2f89fc1f445c8e5afb06a176748d',''), ('18637','{22486}=3','APC Smart-UPS: {#EXTERNAL_SENSOR2_NAME}: Sensor has status Critical','','0','4','The external sensor has returned a value greater than the critical threshold.',NULL,'0','2','0','','0','','0','','0','','7639c07a79054f9b99687f84db5c95a0',''), ('18638','{22487}=4','APC Smart-UPS: {#EXTERNAL_SENSOR2_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','a499a1af78a04c77a21c424f3e790787',''), ('18639','{22488}=2','APC Smart-UPS: {#EXTERNAL_SENSOR2_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','c6fc64bbdb3845d5b80d868c392259ac',''), ('18640','{22489} > {$UPS.INPUT_VOLT.MAX.WARN} or {22490} < {$UPS.INPUT_VOLT.MIN.WARN}','APC Smart-UPS: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','APC Smart-UPS: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','0e9c22ab97cb4db8b96fb907e4b21e04',''), ('18641','{22491} > {$UPS.INPUT_VOLT.MAX.WARN} or {22492} < {$UPS.INPUT_VOLT.MIN.WARN}','APC Smart-UPS: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','APC Smart-UPS: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','91ac886a5dda41cdb6a6912672d70625',''), ('18642','{22493} < {$BATTERY.CAPACITY.MIN.WARN}','APC Smart-UPS: Battery has low capacity','','0','4','',NULL,'0','0','0','','0','','0','Current capacity: {ITEM.LASTVALUE1}','0','APC Smart-UPS: Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%)','13fe1336e40c4bafb8dbd409497abf8f',''), ('18643','{22494}=2','APC Smart-UPS: Battery needs replacement','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','4590ac935e044c19978fe01d117e2995',''), ('18644','{22495}=4','APC Smart-UPS: Battery has an internal error condition','','0','3','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','e98ba83e63d246408aeeda76da62d5a4',''), ('18645','{22496}=3','APC Smart-UPS: Battery is Low','','0','3','The UPS will be unable to sustain the current load, and its services will be lost if power is not restored.',NULL,'0','0','0','','0','','0','','0','','51e3281c49454cf997561c857a34a803',''), ('18646','{22497} > {$BATTERY.TEMP.MAX.WARN}','APC Smart-UPS: Battery has high temperature','','0','4','',NULL,'0','0','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','APC Smart-UPS: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','1c67af712882479bbf7143bd3e16ed77',''), ('18647','{22498} > 0 and ({22498} > {$UPS.INPUT_FREQ.MAX.WARN} or {22499} < {$UPS.INPUT_FREQ.MIN.WARN})','APC Smart-UPS: Unacceptable input frequency','','0','4','',NULL,'0','0','0','','0','','0','Current frequency: {ITEM.LASTVALUE1}','0','APC Smart-UPS: Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD})','78e47553d4bb488991067f53cc8f8a01',''), ('18648','{22500} > 0 and ({22500} > {$UPS.INPUT_VOLT.MAX.WARN} or {22501} < {$UPS.INPUT_VOLT.MIN.WARN})','APC Smart-UPS: Unacceptable input voltage','','0','4','',NULL,'0','0','0','','0','','0','Current voltage: {ITEM.LASTVALUE1}','0','APC Smart-UPS: Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','28ad85fa6035433f9a7ec45a8393b603',''), ('18649','{22502} > {$UPS.OUTPUT.MAX.WARN}','APC Smart-UPS: Output load is high','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','Current load: {ITEM.LASTVALUE1}','0','APC Smart-UPS: Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD})','f667172a5cf44ed6b98f2bb38a3f3806',''), ('18650','{22503}=16','APC Smart-UPS: UPS is Emergency Static Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','80e30d37b1724c6ba1d58cedbcf6307f',''), ('18651','{22504}=10','APC Smart-UPS: UPS is Hardware Failure Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','9bb143ada4194c0084eb70af7bb2c5dc',''), ('18652','{22505}=7','APC Smart-UPS: UPS is Off','','0','3','',NULL,'0','0','0','','0','','0','','0','','7132f256542540acadb0caf90144a29c',''), ('18653','{22506}=3','APC Smart-UPS: UPS is on battery','','0','3','',NULL,'0','0','0','','0','','0','','0','','737693e5e4274823a9a21ff92a6ca98a',''), ('18654','{22507}=4','APC Smart-UPS: UPS is on Smart Boost','','0','3','',NULL,'0','0','0','','0','','0','','0','','c2fd31cfe3b8474f80b52a2340108b6a',''), ('18655','{22508}=12','APC Smart-UPS: UPS is On Smart Trim','','0','3','',NULL,'0','0','0','','0','','0','','0','','2c3a2e962c1e45f6858e5c1aaecee4a3',''), ('18656','{22509}=8','APC Smart-UPS: UPS is Rebooting','','0','3','',NULL,'0','0','0','','0','','0','','0','','59d415b15bbf43de85453f5b2ffb73d7',''), ('18657','{22510}=11','APC Smart-UPS: UPS is Sleeping Until Power Return','','0','3','',NULL,'0','0','0','','0','','0','','0','','6811d34cec57401089af9accfd66ca8f',''), ('18658','{22511}=6','APC Smart-UPS: UPS is Software Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','3c96ce14f54a4a59a2568f1f62117e7b',''), ('18659','{22512}=9','APC Smart-UPS: UPS is Switched Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','60e83c77157741cbb3d24920e87d7d59',''), ('18660','{22513}=5','APC Smart-UPS: UPS is Timed Sleeping','','0','3','',NULL,'0','0','0','','0','','0','','0','','da442de0e8874736aaab88f009aabe76',''), ('18661','{24377}<>{24378} and length({24379})>0','APC Smart-UPS: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','APC Smart-UPS: System name has changed (new name: {ITEM.VALUE})','c9b1f69a882148a180ec1e2600068671',''), ('18662','({32990}>0 and {32990}<10m) or ({32990}=0 and {32991}<10m)','APC Smart-UPS: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','APC Smart-UPS: {HOST.NAME} has been restarted (uptime < 10m)','15764a5819174d3fadc75436f42650fb',''), ('18663','{22517}=0','APC Smart-UPS: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','71994587c45546bfb0950606d7f69936',''), ('18664','{22518}=1','APC Smart-UPS: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay','','0','2','The battery cartridge health. bit 0 Battery lifetime okay bit 1 Battery lifetime near end, order replacement cartridge bit 2 Battery lifetime exceeded, replace battery bit 3 Battery lifetime near end acknowledged, order replacement cartridge bit 4 Battery lifetime exceeded acknowledged, replace battery bit 5 Battery measured lifetime near end, order replacement cartridge bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','400987be93b34a78865685fedb72a5ee',''), ('18665','{22519}=0','APC Smart-UPS: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status is not okay','','0','2','The battery cartridge status: bit 0 Disconnected bit 1 Overvoltage bit 2 NeedsReplacement bit 3 OvertemperatureCritical bit 4 Charger bit 5 TemperatureSensor bit 6 BusSoftStart bit 7 OvertemperatureWarning bit 8 GeneralError bit 9 Communication bit 10 DisconnectedFrame bit 11 FirmwareMismatch',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','03a100c0bb8d457690e2467c502fcadb',''), ('18666','{22520} > {$BATTERY.TEMP.MAX.WARN}','APC Smart-UPS: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature','','0','4','',NULL,'0','2','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','APC Smart-UPS: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','9760f6a951a64e3fa6c67a9dd751f79a',''), ('18667','{22521}=3','APC Smart-UPS: {#EXTERNAL_SENSOR1_NAME}: Sensor has status Critical','','0','4','The external sensor has returned a value greater than the critical threshold.',NULL,'0','2','0','','0','','0','','0','','9ba51ee0398444e1bd12cb805c1f7452',''), ('18668','{22522}=4','APC Smart-UPS: {#EXTERNAL_SENSOR1_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','490e952dfac944afb23eb0e72e081db3',''), ('18669','{22523}=2','APC Smart-UPS: {#EXTERNAL_SENSOR1_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','8b740b88389b457eaa4d1d6c768ec8ae',''), ('18670','{22524}=3','APC Smart-UPS: {#EXTERNAL_SENSOR2_NAME}: Sensor has status Critical','','0','4','The external sensor has returned a value greater than the critical threshold.',NULL,'0','2','0','','0','','0','','0','','944fd36a2ad14fd29dd063ad03197cd7',''), ('18671','{22525}=4','APC Smart-UPS: {#EXTERNAL_SENSOR2_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','1a4473a5e1bf4fbbb5761fdb141769c0',''), ('18672','{22526}=2','APC Smart-UPS: {#EXTERNAL_SENSOR2_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','af8e01a221b84c73a3f67ab84ed9cfa0',''), ('18673','{22527} > {$UPS.INPUT_VOLT.MAX.WARN} or {22528} < {$UPS.INPUT_VOLT.MIN.WARN}','APC Smart-UPS: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','APC Smart-UPS: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','709ad3894aca49f0be051d338d4ffaed',''), ('18674','{22529} > {$UPS.INPUT_VOLT.MAX.WARN} or {22530} < {$UPS.INPUT_VOLT.MIN.WARN}','APC Smart-UPS: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','APC Smart-UPS: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','dbdf66b61dce4b6dbf49371e9b1f8146',''), ('18675','{22531} < {$BATTERY.CAPACITY.MIN.WARN}','APC Smart-UPS: Battery has low capacity','','0','4','',NULL,'0','0','0','','0','','0','Current capacity: {ITEM.LASTVALUE1}','0','APC Smart-UPS: Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%)','8ab182b26a0443539a1a114767d8acd7',''), ('18676','{22532}=2','APC Smart-UPS: Battery needs replacement','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','ab0db1327cf04a9c9a9ee757f0869603',''), ('18677','{22533}=4','APC Smart-UPS: Battery has an internal error condition','','0','3','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','c8787a09c2ea4aeb977b868ae0a3218b',''), ('18678','{22534}=3','APC Smart-UPS: Battery is Low','','0','3','The UPS will be unable to sustain the current load, and its services will be lost if power is not restored.',NULL,'0','0','0','','0','','0','','0','','40d1fdcec63d4c3785b5ba77fbd14ee7',''), ('18679','{22535} > {$BATTERY.TEMP.MAX.WARN}','APC Smart-UPS: Battery has high temperature','','0','4','',NULL,'0','0','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','APC Smart-UPS: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','e2debe06675d4d4584b60b768633887b',''), ('18680','{22536} > 0 and ({22536} > {$UPS.INPUT_FREQ.MAX.WARN} or {22537} < {$UPS.INPUT_FREQ.MIN.WARN})','APC Smart-UPS: Unacceptable input frequency','','0','4','',NULL,'0','0','0','','0','','0','Current frequency: {ITEM.LASTVALUE1}','0','APC Smart-UPS: Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD})','b29cd7e33c1e4e16b10fe436c1f7e6d6',''), ('18681','{22538} > 0 and ({22538} > {$UPS.INPUT_VOLT.MAX.WARN} or {22539} < {$UPS.INPUT_VOLT.MIN.WARN})','APC Smart-UPS: Unacceptable input voltage','','0','4','',NULL,'0','0','0','','0','','0','Current voltage: {ITEM.LASTVALUE1}','0','APC Smart-UPS: Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','d38f2151f0eb486e8d44b72a2e361a5f',''), ('18682','{22540} > {$UPS.OUTPUT.MAX.WARN}','APC Smart-UPS: Output load is high','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','Current load: {ITEM.LASTVALUE1}','0','APC Smart-UPS: Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD})','57197c601f8a433d8ccdcb040d047f6f',''), ('18683','{22541}=16','APC Smart-UPS: UPS is Emergency Static Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','e9289d8f4e124097990e2af98e916368',''), ('18684','{22542}=10','APC Smart-UPS: UPS is Hardware Failure Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','13735964f51d4d1bb17e6b0587a43020',''), ('18685','{22543}=7','APC Smart-UPS: UPS is Off','','0','3','',NULL,'0','0','0','','0','','0','','0','','d74ae82199884a7fb4a20b48f3c7ff1f',''), ('18686','{22544}=3','APC Smart-UPS: UPS is on battery','','0','3','',NULL,'0','0','0','','0','','0','','0','','4df5271075904c228a0372d5f667530e',''), ('18687','{22545}=4','APC Smart-UPS: UPS is on Smart Boost','','0','3','',NULL,'0','0','0','','0','','0','','0','','3f02d9cb7f5142599e59e7781808e5c3',''), ('18688','{22546}=12','APC Smart-UPS: UPS is On Smart Trim','','0','3','',NULL,'0','0','0','','0','','0','','0','','515ad03892694fd4a2f2350a6bb8af6f',''), ('18689','{22547}=8','APC Smart-UPS: UPS is Rebooting','','0','3','',NULL,'0','0','0','','0','','0','','0','','2a2d35e4e4674b6aa49068a7970caa03',''), ('18690','{22548}=11','APC Smart-UPS: UPS is Sleeping Until Power Return','','0','3','',NULL,'0','0','0','','0','','0','','0','','ef1ddb8869074847b70e8f669883c56b',''), ('18691','{22549}=6','APC Smart-UPS: UPS is Software Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','0d6e4e664ddf425e8c03155802fe45be',''), ('18692','{22550}=9','APC Smart-UPS: UPS is Switched Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','12a3a33152824ffe863a8d79c1372195',''), ('18693','{22551}=5','APC Smart-UPS: UPS is Timed Sleeping','','0','3','',NULL,'0','0','0','','0','','0','','0','','273c561c2afb4d78be86218e370c9a1f',''), ('18694','{24380}<>{24381} and length({24382})>0','APC Smart-UPS: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','APC Smart-UPS: System name has changed (new name: {ITEM.VALUE})','b13b087b9828426aac82a281071ceb8b',''), ('18695','({32992}>0 and {32992}<10m) or ({32992}=0 and {32993}<10m)','APC Smart-UPS: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','APC Smart-UPS: {HOST.NAME} has been restarted (uptime < 10m)','87ebd137f2744ae6879d6fd9d51314ef',''), ('18696','{22555}=0','APC Smart-UPS: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','53263bf0536d479785b45883b9b7ab21',''), ('18697','{22556}=1','APC Smart-UPS: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay','','0','2','The battery cartridge health. bit 0 Battery lifetime okay bit 1 Battery lifetime near end, order replacement cartridge bit 2 Battery lifetime exceeded, replace battery bit 3 Battery lifetime near end acknowledged, order replacement cartridge bit 4 Battery lifetime exceeded acknowledged, replace battery bit 5 Battery measured lifetime near end, order replacement cartridge bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','c1eefbeeb0d146c3bea5cae929d0c30b',''), ('18698','{22557}=0','APC Smart-UPS: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status is not okay','','0','2','The battery cartridge status: bit 0 Disconnected bit 1 Overvoltage bit 2 NeedsReplacement bit 3 OvertemperatureCritical bit 4 Charger bit 5 TemperatureSensor bit 6 BusSoftStart bit 7 OvertemperatureWarning bit 8 GeneralError bit 9 Communication bit 10 DisconnectedFrame bit 11 FirmwareMismatch',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','28b8fb69a85549288cf0e26b9ca0a2cf',''), ('18699','{22558} > {$BATTERY.TEMP.MAX.WARN}','APC Smart-UPS: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature','','0','4','',NULL,'0','2','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','APC Smart-UPS: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','fa007fcfbe7c499d8f97a808991f2800',''), ('18700','{22559}=3','APC Smart-UPS: {#EXTERNAL_SENSOR1_NAME}: Sensor has status Critical','','0','4','The external sensor has returned a value greater than the critical threshold.',NULL,'0','2','0','','0','','0','','0','','175c1def62ac412eb5f9ef015a9b8ac3',''), ('18701','{22560}=4','APC Smart-UPS: {#EXTERNAL_SENSOR1_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','e7610cf822674591bea6ed7ba5e4198d',''), ('18702','{22561}=2','APC Smart-UPS: {#EXTERNAL_SENSOR1_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','44353bbfcfbe42e59d2e58b544d32b43',''), ('18703','{22562}=3','APC Smart-UPS: {#EXTERNAL_SENSOR2_NAME}: Sensor has status Critical','','0','4','The external sensor has returned a value greater than the critical threshold.',NULL,'0','2','0','','0','','0','','0','','5e937c991aa146fe98c1a4f868be6b70',''), ('18704','{22563}=4','APC Smart-UPS: {#EXTERNAL_SENSOR2_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','f8dd227322784a708ae6297e796177f9',''), ('18705','{22564}=2','APC Smart-UPS: {#EXTERNAL_SENSOR2_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','b142607d33e9447d88f23fc3ff7dc11d',''), ('18706','{22565} > {$UPS.INPUT_VOLT.MAX.WARN} or {22566} < {$UPS.INPUT_VOLT.MIN.WARN}','APC Smart-UPS: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','APC Smart-UPS: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','971301abf4d6457da125fd7ebd903728',''), ('18707','{22567} > {$UPS.INPUT_VOLT.MAX.WARN} or {22568} < {$UPS.INPUT_VOLT.MIN.WARN}','APC Smart-UPS: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','APC Smart-UPS: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','d7167a129de146d19218edb85c82c69b',''), ('18708','{22569} < {$BATTERY.CAPACITY.MIN.WARN}','APC Smart-UPS: Battery has low capacity','','0','4','',NULL,'0','0','0','','0','','0','Current capacity: {ITEM.LASTVALUE1}','0','APC Smart-UPS: Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%)','b5d618c6090447429191fe4d07e85afa',''), ('18709','{22570}=2','APC Smart-UPS: Battery needs replacement','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','dc92c19a5b7e43a4b155d6d51912aaf8',''), ('18710','{22571}=4','APC Smart-UPS: Battery has an internal error condition','','0','3','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','70c32834ea40487c8f13a55b7ed7c88f',''), ('18711','{22572}=3','APC Smart-UPS: Battery is Low','','0','3','The UPS will be unable to sustain the current load, and its services will be lost if power is not restored.',NULL,'0','0','0','','0','','0','','0','','e7aeaae896664729b66b42a94f626f9b',''), ('18712','{22573} > {$BATTERY.TEMP.MAX.WARN}','APC Smart-UPS: Battery has high temperature','','0','4','',NULL,'0','0','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','APC Smart-UPS: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','33695c02cf6141f78e21ca899af10c03',''), ('18713','{22574} > 0 and ({22574} > {$UPS.INPUT_FREQ.MAX.WARN} or {22575} < {$UPS.INPUT_FREQ.MIN.WARN})','APC Smart-UPS: Unacceptable input frequency','','0','4','',NULL,'0','0','0','','0','','0','Current frequency: {ITEM.LASTVALUE1}','0','APC Smart-UPS: Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD})','167de2d832984944878767571b0b5fe4',''), ('18714','{22576} > 0 and ({22576} > {$UPS.INPUT_VOLT.MAX.WARN} or {22577} < {$UPS.INPUT_VOLT.MIN.WARN})','APC Smart-UPS: Unacceptable input voltage','','0','4','',NULL,'0','0','0','','0','','0','Current voltage: {ITEM.LASTVALUE1}','0','APC Smart-UPS: Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','b8741bc0081a4a9db2824c9f93ecb399',''), ('18715','{22578} > {$UPS.OUTPUT.MAX.WARN}','APC Smart-UPS: Output load is high','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','Current load: {ITEM.LASTVALUE1}','0','APC Smart-UPS: Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD})','a4faec3975134cd59e83f1ca7fa3ef7d',''), ('18716','{22579}=16','APC Smart-UPS: UPS is Emergency Static Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','deedd977f1ed4b9fbb5cc161dde0c116',''), ('18717','{22580}=10','APC Smart-UPS: UPS is Hardware Failure Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','a7bbe6ca410743919f7c611a6faec9ba',''), ('18718','{22581}=7','APC Smart-UPS: UPS is Off','','0','3','',NULL,'0','0','0','','0','','0','','0','','974042a124b945068c6c16c4a01433dc',''), ('18719','{22582}=3','APC Smart-UPS: UPS is on battery','','0','3','',NULL,'0','0','0','','0','','0','','0','','90e810043e41467b8460278fc7923397',''), ('18720','{22583}=4','APC Smart-UPS: UPS is on Smart Boost','','0','3','',NULL,'0','0','0','','0','','0','','0','','656ae233f3a946799c3ed3d48914c0b0',''), ('18721','{22584}=12','APC Smart-UPS: UPS is On Smart Trim','','0','3','',NULL,'0','0','0','','0','','0','','0','','3fcbd14931854831ac603a254ffea0c3',''), ('18722','{22585}=8','APC Smart-UPS: UPS is Rebooting','','0','3','',NULL,'0','0','0','','0','','0','','0','','65085178eef54189afdaf4937de49177',''), ('18723','{22586}=11','APC Smart-UPS: UPS is Sleeping Until Power Return','','0','3','',NULL,'0','0','0','','0','','0','','0','','0aa402907ee446c0a13fa086b500fa87',''), ('18724','{22587}=6','APC Smart-UPS: UPS is Software Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','be6cdd1fc22a4f0eacdbce4361cd6788',''), ('18725','{22588}=9','APC Smart-UPS: UPS is Switched Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','b4375fc980ae4bee87531d18ea9a5397',''), ('18726','{22589}=5','APC Smart-UPS: UPS is Timed Sleeping','','0','3','',NULL,'0','0','0','','0','','0','','0','','7ae9e31ac32944928065d1cefb2c4e2f',''), ('18727','{24383}<>{24384} and length({24385})>0','APC Smart-UPS: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','APC Smart-UPS: System name has changed (new name: {ITEM.VALUE})','31bb0ff1ea334cd59d9f8b8f489611ef',''), ('18728','({32994}>0 and {32994}<10m) or ({32994}=0 and {32995}<10m)','APC Smart-UPS: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','APC Smart-UPS: {HOST.NAME} has been restarted (uptime < 10m)','860d3beb50c0400283a71c2c4b4ea5e2',''), ('18729','{22593}=0','APC Smart-UPS: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','21fc3a198f3b423fa14676278f53a4be',''), ('18730','{22594}=1','APC Smart-UPS: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay','','0','2','The battery cartridge health. bit 0 Battery lifetime okay bit 1 Battery lifetime near end, order replacement cartridge bit 2 Battery lifetime exceeded, replace battery bit 3 Battery lifetime near end acknowledged, order replacement cartridge bit 4 Battery lifetime exceeded acknowledged, replace battery bit 5 Battery measured lifetime near end, order replacement cartridge bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','c353d8e0b0584c6c8ba81514f5c66995',''), ('18731','{22595}=0','APC Smart-UPS: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status is not okay','','0','2','The battery cartridge status: bit 0 Disconnected bit 1 Overvoltage bit 2 NeedsReplacement bit 3 OvertemperatureCritical bit 4 Charger bit 5 TemperatureSensor bit 6 BusSoftStart bit 7 OvertemperatureWarning bit 8 GeneralError bit 9 Communication bit 10 DisconnectedFrame bit 11 FirmwareMismatch',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','26535b11c27b4fbe92285b56cbbf5a73',''), ('18732','{22596} > {$BATTERY.TEMP.MAX.WARN}','APC Smart-UPS: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature','','0','4','',NULL,'0','2','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','APC Smart-UPS: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','7f8613d752524d588e60aa1cab2c60bd',''), ('18733','{22597}=3','APC Smart-UPS: {#EXTERNAL_SENSOR1_NAME}: Sensor has status Critical','','0','4','The external sensor has returned a value greater than the critical threshold.',NULL,'0','2','0','','0','','0','','0','','40e22c5379f34edf87d1ea52ffae60b8',''), ('18734','{22598}=4','APC Smart-UPS: {#EXTERNAL_SENSOR1_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','a482de04a5d34807874fc7a7c506dd40',''), ('18735','{22599}=2','APC Smart-UPS: {#EXTERNAL_SENSOR1_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','dca875c511b04dc1857de74223c4f27b',''), ('18736','{22600}=3','APC Smart-UPS: {#EXTERNAL_SENSOR2_NAME}: Sensor has status Critical','','0','4','The external sensor has returned a value greater than the critical threshold.',NULL,'0','2','0','','0','','0','','0','','650a1d16e56c45188c6246e960d62857',''), ('18737','{22601}=4','APC Smart-UPS: {#EXTERNAL_SENSOR2_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','7518ae06e3a14866b9e6d90a224055f7',''), ('18738','{22602}=2','APC Smart-UPS: {#EXTERNAL_SENSOR2_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','65aa8a5380f141498dd9c718972110b3',''), ('18739','{22603} > {$UPS.INPUT_VOLT.MAX.WARN} or {22604} < {$UPS.INPUT_VOLT.MIN.WARN}','APC Smart-UPS: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','APC Smart-UPS: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','8c9226411afb4b32ba3e9d6232ff4710',''), ('18740','{22605} > {$UPS.INPUT_VOLT.MAX.WARN} or {22606} < {$UPS.INPUT_VOLT.MIN.WARN}','APC Smart-UPS: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','APC Smart-UPS: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','58e0697a9a9147a4b1dfda251f2b593e',''), ('18774','{22645} < {$BATTERY.CAPACITY.MIN.WARN}','APC Smart-UPS: Battery has low capacity','','0','4','',NULL,'0','0','0','','0','','0','Current capacity: {ITEM.LASTVALUE1}','0','APC Smart-UPS: Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%)','92e6a65ffc6d4a6bae62303ee2796580',''), ('18775','{22646}=2','APC Smart-UPS: Battery needs replacement','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','0e8030c0028144728361153c2b47016b',''), ('18776','{22647}=4','APC Smart-UPS: Battery has an internal error condition','','0','3','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','cf186014cfd94ccbad3cc4cbd22b6aa1',''), ('18777','{22648}=3','APC Smart-UPS: Battery is Low','','0','3','The UPS will be unable to sustain the current load, and its services will be lost if power is not restored.',NULL,'0','0','0','','0','','0','','0','','e1957ee82be847e7bfb171560fc59293',''), ('18778','{22649} > {$BATTERY.TEMP.MAX.WARN}','APC Smart-UPS: Battery has high temperature','','0','4','',NULL,'0','0','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','APC Smart-UPS: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','1e883961b65e445997c57870734a58ca',''), ('18779','{22650} > 0 and ({22650} > {$UPS.INPUT_FREQ.MAX.WARN} or {22651} < {$UPS.INPUT_FREQ.MIN.WARN})','APC Smart-UPS: Unacceptable input frequency','','0','4','',NULL,'0','0','0','','0','','0','Current frequency: {ITEM.LASTVALUE1}','0','APC Smart-UPS: Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD})','b9a134c942da46ffba1acdf85a7832e4',''), ('18780','{22652} > 0 and ({22652} > {$UPS.INPUT_VOLT.MAX.WARN} or {22653} < {$UPS.INPUT_VOLT.MIN.WARN})','APC Smart-UPS: Unacceptable input voltage','','0','4','',NULL,'0','0','0','','0','','0','Current voltage: {ITEM.LASTVALUE1}','0','APC Smart-UPS: Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','694ab76079b1447b99ef510d80faab6a',''), ('18781','{22654} > {$UPS.OUTPUT.MAX.WARN}','APC Smart-UPS: Output load is high','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','Current load: {ITEM.LASTVALUE1}','0','APC Smart-UPS: Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD})','68f92026e7b345c88bf4aa679f9b642c',''), ('18782','{22655}=16','APC Smart-UPS: UPS is Emergency Static Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','9952679fada845228bbbf05bcdada305',''), ('18783','{22656}=10','APC Smart-UPS: UPS is Hardware Failure Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','ee306606159f4930bcf580b5084c846a',''), ('18784','{22657}=7','APC Smart-UPS: UPS is Off','','0','3','',NULL,'0','0','0','','0','','0','','0','','c4623dc4c6ae4c5b9ff4bdf4f43ed8b2',''), ('18785','{22658}=3','APC Smart-UPS: UPS is on battery','','0','3','',NULL,'0','0','0','','0','','0','','0','','26c0b9b62d864c1ead7b16e0076a7226',''), ('18786','{22659}=4','APC Smart-UPS: UPS is on Smart Boost','','0','3','',NULL,'0','0','0','','0','','0','','0','','5c8408069c03421cb60b388451869b6f',''), ('18787','{22660}=12','APC Smart-UPS: UPS is On Smart Trim','','0','3','',NULL,'0','0','0','','0','','0','','0','','156c5260ed4444c19313ba491ce9352c',''), ('18788','{22661}=8','APC Smart-UPS: UPS is Rebooting','','0','3','',NULL,'0','0','0','','0','','0','','0','','c233bc86198140659ec3dd609c94ec94',''), ('18789','{22662}=11','APC Smart-UPS: UPS is Sleeping Until Power Return','','0','3','',NULL,'0','0','0','','0','','0','','0','','944e49d1b6d44adc8d720bd689d8c8cf',''), ('18790','{22663}=6','APC Smart-UPS: UPS is Software Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','9b376dbd2d614878b681b42bb2c7fe4d',''), ('18791','{22664}=9','APC Smart-UPS: UPS is Switched Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','499ac46836c1454dad3c1ffc5714c073',''), ('18792','{22665}=5','APC Smart-UPS: UPS is Timed Sleeping','','0','3','',NULL,'0','0','0','','0','','0','','0','','8a0a5af39647494681e52595d179c336',''), ('18793','{24389}<>{24390} and length({24391})>0','APC Smart-UPS: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','APC Smart-UPS: System name has changed (new name: {ITEM.VALUE})','852083234a55441aa2fa57b202227bef',''), ('18794','({32998}>0 and {32998}<10m) or ({32998}=0 and {32999}<10m)','APC Smart-UPS: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','APC Smart-UPS: {HOST.NAME} has been restarted (uptime < 10m)','6f0fbe74ad4945e987e7ffdfa741d92f',''), ('18795','{22669}=0','APC Smart-UPS: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9a0cb26712c14045a18a0e86de4cdd54',''), ('18796','{22670}=1','APC Smart-UPS: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay','','0','2','The battery cartridge health. bit 0 Battery lifetime okay bit 1 Battery lifetime near end, order replacement cartridge bit 2 Battery lifetime exceeded, replace battery bit 3 Battery lifetime near end acknowledged, order replacement cartridge bit 4 Battery lifetime exceeded acknowledged, replace battery bit 5 Battery measured lifetime near end, order replacement cartridge bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','2d9c4ef006994ebea581b895424203f3',''), ('18797','{22671}=0','APC Smart-UPS: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status is not okay','','0','2','The battery cartridge status: bit 0 Disconnected bit 1 Overvoltage bit 2 NeedsReplacement bit 3 OvertemperatureCritical bit 4 Charger bit 5 TemperatureSensor bit 6 BusSoftStart bit 7 OvertemperatureWarning bit 8 GeneralError bit 9 Communication bit 10 DisconnectedFrame bit 11 FirmwareMismatch',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','5358b97f94aa47f59351be88673407a0',''), ('18798','{22672} > {$BATTERY.TEMP.MAX.WARN}','APC Smart-UPS: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature','','0','4','',NULL,'0','2','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','APC Smart-UPS: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','b88678e600694bc19ebaf57472d8658f',''), ('18799','{22673}=3','APC Smart-UPS: {#EXTERNAL_SENSOR1_NAME}: Sensor has status Critical','','0','4','The external sensor has returned a value greater than the critical threshold.',NULL,'0','2','0','','0','','0','','0','','33f4ac80a8d44752b97bc4f885a8c95f',''), ('18800','{22674}=4','APC Smart-UPS: {#EXTERNAL_SENSOR1_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','1a2080a561394f8c8a0dc639cbf2c812',''), ('18801','{22675}=2','APC Smart-UPS: {#EXTERNAL_SENSOR1_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','a53d5dd33e8548d5bcb73ffb936af910',''), ('18802','{22676}=3','APC Smart-UPS: {#EXTERNAL_SENSOR2_NAME}: Sensor has status Critical','','0','4','The external sensor has returned a value greater than the critical threshold.',NULL,'0','2','0','','0','','0','','0','','9247973676c44377a4fa550990384eeb',''), ('18803','{22677}=4','APC Smart-UPS: {#EXTERNAL_SENSOR2_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','6b054505c2704c8d8e38b096885bbbe5',''), ('18804','{22678}=2','APC Smart-UPS: {#EXTERNAL_SENSOR2_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','f56f165d71084b75a716d04337f5fcb1',''), ('18805','{22679} > {$UPS.INPUT_VOLT.MAX.WARN} or {22680} < {$UPS.INPUT_VOLT.MIN.WARN}','APC Smart-UPS: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','APC Smart-UPS: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','755f972a32904dbf81a6da77f4ba57f0',''), ('18806','{22681} > {$UPS.INPUT_VOLT.MAX.WARN} or {22682} < {$UPS.INPUT_VOLT.MIN.WARN}','APC Smart-UPS: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','APC Smart-UPS: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','5846a7a3d56f43de8394823ed64a11ae',''), ('18807','{22683} < {$BATTERY.CAPACITY.MIN.WARN}','APC UPS: Battery has low capacity','','0','4','',NULL,'0','0','0','','0','','0','Current capacity: {ITEM.LASTVALUE1}','0','APC UPS: Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%)','aa0bbfb321d440438fb421825f23e140',''), ('18808','{24392}<>{24393} and length({24394})>0','APC UPS: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','APC UPS: System name has changed (new name: {ITEM.VALUE})','facbfd1f8bb04401b563c162d7fe13a5',''), ('18809','{22686}=0','APC UPS: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status is not okay','','0','2','The battery cartridge status: bit 0 Disconnected bit 1 Overvoltage bit 2 NeedsReplacement bit 3 OvertemperatureCritical bit 4 Charger bit 5 TemperatureSensor bit 6 BusSoftStart bit 7 OvertemperatureWarning bit 8 GeneralError bit 9 Communication bit 10 DisconnectedFrame bit 11 FirmwareMismatch',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','834b1a48cbab46a3bfb0209fb4302674',''), ('18810','{22687} > {$UPS.INPUT_VOLT.MAX.WARN} or {22688} < {$UPS.INPUT_VOLT.MIN.WARN}','APC UPS: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','APC UPS: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','feeb23a58ccb4ec1bed9d61f5d2ffc9e',''), ('18811','{22689} < {$BATTERY.CAPACITY.MIN.WARN}','APC UPS Symmetra: Battery has low capacity','','0','4','',NULL,'0','0','0','','0','','0','Current capacity: {ITEM.LASTVALUE1}','0','APC UPS Symmetra: Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%)','fdece80f2fc44ac1974fafe190ce186f',''), ('18812','{22690}=2','APC UPS Symmetra: Battery needs replacement','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','a1bd434a249b48b2ac0ef69ede417a72',''), ('18813','{22691}=4','APC UPS Symmetra: Battery has an internal error condition','','0','3','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','955d79a0cf5447dd9a11d4608758e983',''), ('18814','{22692}=3','APC UPS Symmetra: Battery is Low','','0','3','The UPS will be unable to sustain the current load, and its services will be lost if power is not restored.',NULL,'0','0','0','','0','','0','','0','','3ca8156ecc1c4ee4b5623c4a085b993f',''), ('18815','{22693} > {$BATTERY.TEMP.MAX.WARN}','APC UPS Symmetra: Battery has high temperature','','0','4','',NULL,'0','0','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','APC UPS Symmetra: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','5b43659a10644a51861282bc72116f9f',''), ('18816','{22694} > 0 and ({22694} > {$UPS.INPUT_FREQ.MAX.WARN} or {22695} < {$UPS.INPUT_FREQ.MIN.WARN})','APC UPS Symmetra: Unacceptable input frequency','','0','4','',NULL,'0','0','0','','0','','0','Current frequency: {ITEM.LASTVALUE1}','0','APC UPS Symmetra: Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD})','94a5c26b89e2416f96b61bbfc6e60a97',''), ('18817','{22696} > 0 and ({22696} > {$UPS.INPUT_VOLT.MAX.WARN} or {22697} < {$UPS.INPUT_VOLT.MIN.WARN})','APC UPS Symmetra: Unacceptable input voltage','','0','4','',NULL,'0','0','0','','0','','0','Current voltage: {ITEM.LASTVALUE1}','0','APC UPS Symmetra: Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','2b640b94d48446609802ce6e57c7bd46',''), ('18818','{22698} > {$UPS.OUTPUT.MAX.WARN}','APC UPS Symmetra: Output load is high','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','Current load: {ITEM.LASTVALUE1}','0','APC UPS Symmetra: Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD})','34562b5c734d492c89c386902dfd6e90',''), ('18819','{22699}=16','APC UPS Symmetra: UPS is Emergency Static Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','6ade2b9fb9ad432596d16b3df6237ec4',''), ('18820','{22700}=10','APC UPS Symmetra: UPS is Hardware Failure Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','da9a0fa7669e454b8ba44c0458a94ea8',''), ('18821','{22701}=7','APC UPS Symmetra: UPS is Off','','0','3','',NULL,'0','0','0','','0','','0','','0','','01a2bcb5f20b4fe889a48e4bed2a2a63',''), ('18822','{22702}=3','APC UPS Symmetra: UPS is on battery','','0','3','',NULL,'0','0','0','','0','','0','','0','','d0b154dd92424af8bb841d91d4e7ddd5',''), ('18823','{22703}=4','APC UPS Symmetra: UPS is on Smart Boost','','0','3','',NULL,'0','0','0','','0','','0','','0','','afc071d0ccfb4226a3c5ee3058270937',''), ('18824','{22704}=12','APC UPS Symmetra: UPS is On Smart Trim','','0','3','',NULL,'0','0','0','','0','','0','','0','','12259f4a961a40b39de12d0202d41c56',''), ('18825','{22705}=8','APC UPS Symmetra: UPS is Rebooting','','0','3','',NULL,'0','0','0','','0','','0','','0','','ef9d1e4b1ec244f6bcf36d19a9e7c9c7',''), ('18826','{22706}=11','APC UPS Symmetra: UPS is Sleeping Until Power Return','','0','3','',NULL,'0','0','0','','0','','0','','0','','c673928e7b764b5db0fa3168edd2cc67',''), ('18827','{22707}=6','APC UPS Symmetra: UPS is Software Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','c9b24aa16e124d8c9cd6cfb188ded816',''), ('18828','{22708}=9','APC UPS Symmetra: UPS is Switched Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','02904426801d4d42b3f634267f8697e7',''), ('18829','{22709}=5','APC UPS Symmetra: UPS is Timed Sleeping','','0','3','',NULL,'0','0','0','','0','','0','','0','','fa08f8a60c2c4d88a3f9ebf317fcd06e',''), ('18830','{24395}<>{24396} and length({24397})>0','APC UPS Symmetra: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','APC UPS Symmetra: System name has changed (new name: {ITEM.VALUE})','61d0836efd33437894e1edd595373f1e',''), ('18831','({33002}>0 and {33002}<10m) or ({33002}=0 and {33003}<10m)','APC UPS Symmetra: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','APC UPS Symmetra: {HOST.NAME} has been restarted (uptime < 10m)','9d0c32f93c0c44f69b54c91fabfa1529',''), ('18832','{22713}=0','APC UPS Symmetra: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','aeaaa7e2bd2d46a481f9d8b33ec18cb5',''), ('18833','{22714}=1','APC UPS Symmetra: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay','','0','2','The battery cartridge health. bit 0 Battery lifetime okay bit 1 Battery lifetime near end, order replacement cartridge bit 2 Battery lifetime exceeded, replace battery bit 3 Battery lifetime near end acknowledged, order replacement cartridge bit 4 Battery lifetime exceeded acknowledged, replace battery bit 5 Battery measured lifetime near end, order replacement cartridge bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','2ea1a8d2bd3746dabafed72e1f6216fd',''), ('18834','{22715}=0','APC UPS Symmetra: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status is not okay','','0','2','The battery cartridge status: bit 0 Disconnected bit 1 Overvoltage bit 2 NeedsReplacement bit 3 OvertemperatureCritical bit 4 Charger bit 5 TemperatureSensor bit 6 BusSoftStart bit 7 OvertemperatureWarning bit 8 GeneralError bit 9 Communication bit 10 DisconnectedFrame bit 11 FirmwareMismatch',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','3870634ad8c1414dabeebc10c510fba3',''), ('18835','{22716} > {$BATTERY.TEMP.MAX.WARN}','APC UPS Symmetra: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature','','0','4','',NULL,'0','2','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','APC UPS Symmetra: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','730bdb68d90f4bc6aaf6cb22e04e1845',''), ('18836','{22717}=3','APC UPS Symmetra: {#EXTERNAL_SENSOR1_NAME}: Sensor has status Critical','','0','4','The external sensor has returned a value greater than the critical threshold.',NULL,'0','2','0','','0','','0','','0','','97b4078788d244d0b501e9465c659ff7',''), ('18837','{22718}=4','APC UPS Symmetra: {#EXTERNAL_SENSOR1_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','86cd9908372045618672d6ff82bca705',''), ('18838','{22719}=2','APC UPS Symmetra: {#EXTERNAL_SENSOR1_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','4ba13efc27da411785410109340b6a26',''), ('18839','{22720}=3','APC UPS Symmetra: {#EXTERNAL_SENSOR2_NAME}: Sensor has status Critical','','0','4','The external sensor has returned a value greater than the critical threshold.',NULL,'0','2','0','','0','','0','','0','','3155c8cf446c40d896755a25a46ec90b',''), ('18840','{22721}=4','APC UPS Symmetra: {#EXTERNAL_SENSOR2_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','9ef9a4dc80c84087b44b5f0e8aa94202',''), ('18841','{22722}=2','APC UPS Symmetra: {#EXTERNAL_SENSOR2_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','74a3585b0cc74a4887eb3683fb1e6f64',''), ('18842','{22723} > {$UPS.INPUT_VOLT.MAX.WARN} or {22724} < {$UPS.INPUT_VOLT.MIN.WARN}','APC UPS Symmetra: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','APC UPS Symmetra: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','90e3258375e047b594deb0ecf7300c22',''), ('18843','{22725} > {$UPS.INPUT_VOLT.MAX.WARN} or {22726} < {$UPS.INPUT_VOLT.MIN.WARN}','APC UPS Symmetra: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','APC UPS Symmetra: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','b8c42d5d66d9403eba697920439ae956',''), ('18844','{22727} < {$BATTERY.CAPACITY.MIN.WARN}','APC UPS Symmetra: Battery has low capacity','','0','4','',NULL,'0','0','0','','0','','0','Current capacity: {ITEM.LASTVALUE1}','0','APC UPS Symmetra: Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%)','dbfdc4e6eaca4d65adcde13b0682c1c2',''), ('18845','{22728}=2','APC UPS Symmetra: Battery needs replacement','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','0af287bae1ee44ba997a02ae585bdd4b',''), ('18846','{22729}=4','APC UPS Symmetra: Battery has an internal error condition','','0','3','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','aedb557acbe44390809a27b95919e10f',''), ('18847','{22730}=3','APC UPS Symmetra: Battery is Low','','0','3','The UPS will be unable to sustain the current load, and its services will be lost if power is not restored.',NULL,'0','0','0','','0','','0','','0','','1afe1859563f481faa623781028a38ca',''), ('18848','{22731} > {$BATTERY.TEMP.MAX.WARN}','APC UPS Symmetra: Battery has high temperature','','0','4','',NULL,'0','0','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','APC UPS Symmetra: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','0b4490eaaf964fdabf228d34d2992d30',''), ('18849','{22732} > 0 and ({22732} > {$UPS.INPUT_FREQ.MAX.WARN} or {22733} < {$UPS.INPUT_FREQ.MIN.WARN})','APC UPS Symmetra: Unacceptable input frequency','','0','4','',NULL,'0','0','0','','0','','0','Current frequency: {ITEM.LASTVALUE1}','0','APC UPS Symmetra: Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD})','af166242e3674f2da489a232c7bba6f1',''), ('18850','{22734} > 0 and ({22734} > {$UPS.INPUT_VOLT.MAX.WARN} or {22735} < {$UPS.INPUT_VOLT.MIN.WARN})','APC UPS Symmetra: Unacceptable input voltage','','0','4','',NULL,'0','0','0','','0','','0','Current voltage: {ITEM.LASTVALUE1}','0','APC UPS Symmetra: Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','3b51bbae66914b19a93e7a2da289b056',''), ('18851','{22736} > {$UPS.OUTPUT.MAX.WARN}','APC UPS Symmetra: Output load is high','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','Current load: {ITEM.LASTVALUE1}','0','APC UPS Symmetra: Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD})','a25499c49d0043cda248136eb6307ef9',''), ('18852','{22737}=16','APC UPS Symmetra: UPS is Emergency Static Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','f7b0e2f05c9b4b14916f99ecb89fcd49',''), ('18853','{22738}=10','APC UPS Symmetra: UPS is Hardware Failure Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','77081726414047a5a1c698fcfbf19e73',''), ('18854','{22739}=7','APC UPS Symmetra: UPS is Off','','0','3','',NULL,'0','0','0','','0','','0','','0','','87beb54ac57848e3896fd715a5918a88',''), ('18855','{22740}=3','APC UPS Symmetra: UPS is on battery','','0','3','',NULL,'0','0','0','','0','','0','','0','','5f46c436fab741ec86cb32339e8bd7b4',''), ('18856','{22741}=4','APC UPS Symmetra: UPS is on Smart Boost','','0','3','',NULL,'0','0','0','','0','','0','','0','','a7457e3d6c6f4e99a3ccc08a1436d34a',''), ('18857','{22742}=12','APC UPS Symmetra: UPS is On Smart Trim','','0','3','',NULL,'0','0','0','','0','','0','','0','','976395b6acea4f5cb4f7f3d4f0bc67af',''), ('18858','{22743}=8','APC UPS Symmetra: UPS is Rebooting','','0','3','',NULL,'0','0','0','','0','','0','','0','','72c9677a2157412ebd14004a5e024a3a',''), ('18859','{22744}=11','APC UPS Symmetra: UPS is Sleeping Until Power Return','','0','3','',NULL,'0','0','0','','0','','0','','0','','75d189cd8b5944c4b7987931c834e949',''), ('18860','{22745}=6','APC UPS Symmetra: UPS is Software Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','24e1cfde22da48b0bf28ca2cdf8cd917',''), ('18861','{22746}=9','APC UPS Symmetra: UPS is Switched Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','4fff7b4a29b84cdea245b2704e357f5d',''), ('18862','{22747}=5','APC UPS Symmetra: UPS is Timed Sleeping','','0','3','',NULL,'0','0','0','','0','','0','','0','','647178a4cb674815a65517c073b4adee',''), ('18863','{24398}<>{24399} and length({24400})>0','APC UPS Symmetra: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','APC UPS Symmetra: System name has changed (new name: {ITEM.VALUE})','e3cf119c19b54dddb3d26d9b789ea4f5',''), ('18864','({33004}>0 and {33004}<10m) or ({33004}=0 and {33005}<10m)','APC UPS Symmetra: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','APC UPS Symmetra: {HOST.NAME} has been restarted (uptime < 10m)','fb2b4e564040422da234cdb309163b7b',''), ('18865','{22751}=0','APC UPS Symmetra: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','56f25581382a43efbddd4aba44aa86b3',''), ('18866','{22752}=1','APC UPS Symmetra: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay','','0','2','The battery cartridge health. bit 0 Battery lifetime okay bit 1 Battery lifetime near end, order replacement cartridge bit 2 Battery lifetime exceeded, replace battery bit 3 Battery lifetime near end acknowledged, order replacement cartridge bit 4 Battery lifetime exceeded acknowledged, replace battery bit 5 Battery measured lifetime near end, order replacement cartridge bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','002caa5fac72437187ab9711eb2fc7ad',''), ('18867','{22753}=0','APC UPS Symmetra: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status is not okay','','0','2','The battery cartridge status: bit 0 Disconnected bit 1 Overvoltage bit 2 NeedsReplacement bit 3 OvertemperatureCritical bit 4 Charger bit 5 TemperatureSensor bit 6 BusSoftStart bit 7 OvertemperatureWarning bit 8 GeneralError bit 9 Communication bit 10 DisconnectedFrame bit 11 FirmwareMismatch',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','9ca2e1e1a81e4e2388f735c03f9bc1de',''), ('18868','{22754} > {$BATTERY.TEMP.MAX.WARN}','APC UPS Symmetra: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature','','0','4','',NULL,'0','2','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','APC UPS Symmetra: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','b9a868a2f4a0410e9a03744eef9a5515',''), ('18869','{22755}=3','APC UPS Symmetra: {#EXTERNAL_SENSOR1_NAME}: Sensor has status Critical','','0','4','The external sensor has returned a value greater than the critical threshold.',NULL,'0','2','0','','0','','0','','0','','1e6fa00989994e6f885c9ce2fde6ab24',''), ('18870','{22756}=4','APC UPS Symmetra: {#EXTERNAL_SENSOR1_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','b8b78dcb3f6d47e583565b7588cf9f4c',''), ('18871','{22757}=2','APC UPS Symmetra: {#EXTERNAL_SENSOR1_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','ba421cf1871a4bcabb06f92be0a983dc',''), ('18872','{22758}=3','APC UPS Symmetra: {#EXTERNAL_SENSOR2_NAME}: Sensor has status Critical','','0','4','The external sensor has returned a value greater than the critical threshold.',NULL,'0','2','0','','0','','0','','0','','97ef6f2fc4374174912b16db90b615a8',''), ('18873','{22759}=4','APC UPS Symmetra: {#EXTERNAL_SENSOR2_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','39db14da83714689b6bac140a9347c64',''), ('18874','{22760}=2','APC UPS Symmetra: {#EXTERNAL_SENSOR2_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','d318122e192a401c95f24ad17d3bda93',''), ('18875','{22761} > {$UPS.INPUT_VOLT.MAX.WARN} or {22762} < {$UPS.INPUT_VOLT.MIN.WARN}','APC UPS Symmetra: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','APC UPS Symmetra: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','341c10188b984ce7aac7bb995847b69e',''), ('18876','{22763} > {$UPS.INPUT_VOLT.MAX.WARN} or {22764} < {$UPS.INPUT_VOLT.MIN.WARN}','APC UPS Symmetra: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','APC UPS Symmetra: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','85551dd4ca0b4ef6994348891ad77b57',''), ('18877','{22765} < {$BATTERY.CAPACITY.MIN.WARN}','APC UPS Symmetra: Battery has low capacity','','0','4','',NULL,'0','0','0','','0','','0','Current capacity: {ITEM.LASTVALUE1}','0','APC UPS Symmetra: Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%)','5626e87891ec4c28a17a6b5965b47e46',''), ('18878','{22766}=2','APC UPS Symmetra: Battery needs replacement','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','a74eccd4442c401a98ac3c80dd3baa13',''), ('18879','{22767}=4','APC UPS Symmetra: Battery has an internal error condition','','0','3','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','107454c372cb413bad4d4a807c254ae0',''), ('18880','{22768}=3','APC UPS Symmetra: Battery is Low','','0','3','The UPS will be unable to sustain the current load, and its services will be lost if power is not restored.',NULL,'0','0','0','','0','','0','','0','','4a410279dba04d37924eade4bb927228',''), ('18881','{22769} > {$BATTERY.TEMP.MAX.WARN}','APC UPS Symmetra: Battery has high temperature','','0','4','',NULL,'0','0','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','APC UPS Symmetra: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','225ccc34992f4c718277b436bfecdc72',''), ('18882','{22770} > 0 and ({22770} > {$UPS.INPUT_FREQ.MAX.WARN} or {22771} < {$UPS.INPUT_FREQ.MIN.WARN})','APC UPS Symmetra: Unacceptable input frequency','','0','4','',NULL,'0','0','0','','0','','0','Current frequency: {ITEM.LASTVALUE1}','0','APC UPS Symmetra: Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD})','03b674d215604dc8acc3449610b05878',''), ('18883','{22772} > 0 and ({22772} > {$UPS.INPUT_VOLT.MAX.WARN} or {22773} < {$UPS.INPUT_VOLT.MIN.WARN})','APC UPS Symmetra: Unacceptable input voltage','','0','4','',NULL,'0','0','0','','0','','0','Current voltage: {ITEM.LASTVALUE1}','0','APC UPS Symmetra: Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','bf495f3ffefd4e65af488d91b360539c',''), ('18884','{22774} > {$UPS.OUTPUT.MAX.WARN}','APC UPS Symmetra: Output load is high','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','Current load: {ITEM.LASTVALUE1}','0','APC UPS Symmetra: Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD})','f2790aa869724c5bbeff6031561f2ca4',''), ('18885','{22775}=16','APC UPS Symmetra: UPS is Emergency Static Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','48a2bee152664ede98bed55c05cc437d',''), ('18886','{22776}=10','APC UPS Symmetra: UPS is Hardware Failure Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','ccd80d5877e0401b8f56f22ca2da2f94',''), ('18887','{22777}=7','APC UPS Symmetra: UPS is Off','','0','3','',NULL,'0','0','0','','0','','0','','0','','e54fd69ac4354716a107d4d094b387f0',''), ('18888','{22778}=3','APC UPS Symmetra: UPS is on battery','','0','3','',NULL,'0','0','0','','0','','0','','0','','92df44ef170d471394f4cf8ff6882c39',''), ('18889','{22779}=4','APC UPS Symmetra: UPS is on Smart Boost','','0','3','',NULL,'0','0','0','','0','','0','','0','','b6f6c160466e43d8b7f210b2efdd8ca3',''), ('18890','{22780}=12','APC UPS Symmetra: UPS is On Smart Trim','','0','3','',NULL,'0','0','0','','0','','0','','0','','7d6323e1a03a48efb9f349ecd7e10153',''), ('18891','{22781}=8','APC UPS Symmetra: UPS is Rebooting','','0','3','',NULL,'0','0','0','','0','','0','','0','','18a31f11313b47c8ab9e9cd4791c1532',''), ('18892','{22782}=11','APC UPS Symmetra: UPS is Sleeping Until Power Return','','0','3','',NULL,'0','0','0','','0','','0','','0','','142e25b05d1547f0a683f6caee773ef5',''), ('18893','{22783}=6','APC UPS Symmetra: UPS is Software Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','b6e22e8295c84fbebb8061c96ddd75f9',''), ('18894','{22784}=9','APC UPS Symmetra: UPS is Switched Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','1c97c8ca6d6640fe829bf896f989bd91',''), ('18895','{22785}=5','APC UPS Symmetra: UPS is Timed Sleeping','','0','3','',NULL,'0','0','0','','0','','0','','0','','0683dbba9f4b4480ba15e040b8b83211',''), ('18896','{24401}<>{24402} and length({24403})>0','APC UPS Symmetra: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','APC UPS Symmetra: System name has changed (new name: {ITEM.VALUE})','5224767a1bee42738c49361ddabfed4b',''), ('18897','({33006}>0 and {33006}<10m) or ({33006}=0 and {33007}<10m)','APC UPS Symmetra: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','APC UPS Symmetra: {HOST.NAME} has been restarted (uptime < 10m)','990c0545543c42a78022589838a8a1ff',''), ('18898','{22789}=0','APC UPS Symmetra: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c0ad0941746546aeb6de2fee087c8252',''), ('18899','{22790}=1','APC UPS Symmetra: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay','','0','2','The battery cartridge health. bit 0 Battery lifetime okay bit 1 Battery lifetime near end, order replacement cartridge bit 2 Battery lifetime exceeded, replace battery bit 3 Battery lifetime near end acknowledged, order replacement cartridge bit 4 Battery lifetime exceeded acknowledged, replace battery bit 5 Battery measured lifetime near end, order replacement cartridge bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','3a48257337a84a2296db92410a8aed8c',''), ('18900','{22791}=0','APC UPS Symmetra: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status is not okay','','0','2','The battery cartridge status: bit 0 Disconnected bit 1 Overvoltage bit 2 NeedsReplacement bit 3 OvertemperatureCritical bit 4 Charger bit 5 TemperatureSensor bit 6 BusSoftStart bit 7 OvertemperatureWarning bit 8 GeneralError bit 9 Communication bit 10 DisconnectedFrame bit 11 FirmwareMismatch',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','4498d376328e405bad7da5f1832cde8a',''), ('18901','{22792} > {$BATTERY.TEMP.MAX.WARN}','APC UPS Symmetra: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature','','0','4','',NULL,'0','2','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','APC UPS Symmetra: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','f710e2b952054f35ab6e3e8e90ab7f83',''), ('18902','{22793}=3','APC UPS Symmetra: {#EXTERNAL_SENSOR1_NAME}: Sensor has status Critical','','0','4','The external sensor has returned a value greater than the critical threshold.',NULL,'0','2','0','','0','','0','','0','','0de21ba7495d41f4834170122620c37d',''), ('18903','{22794}=4','APC UPS Symmetra: {#EXTERNAL_SENSOR1_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','69fbc11262f74fdfb49da43bb59c1810',''), ('18904','{22795}=2','APC UPS Symmetra: {#EXTERNAL_SENSOR1_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','0ce46cad353c4299ad5540a831b5c467',''), ('18905','{22796}=3','APC UPS Symmetra: {#EXTERNAL_SENSOR2_NAME}: Sensor has status Critical','','0','4','The external sensor has returned a value greater than the critical threshold.',NULL,'0','2','0','','0','','0','','0','','f27f80f391a04927bb138ba66d48d364',''), ('18906','{22797}=4','APC UPS Symmetra: {#EXTERNAL_SENSOR2_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','a84e1b5140b643ad8bee020d74821255',''), ('18907','{22798}=2','APC UPS Symmetra: {#EXTERNAL_SENSOR2_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','b67ed4a3ce5a49e4ac4079e258d7fe7c',''), ('18908','{22799} > {$UPS.INPUT_VOLT.MAX.WARN} or {22800} < {$UPS.INPUT_VOLT.MIN.WARN}','APC UPS Symmetra: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','APC UPS Symmetra: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','212cf86650fc4c189115da565111f5d3',''), ('18909','{22801} > {$UPS.INPUT_VOLT.MAX.WARN} or {22802} < {$UPS.INPUT_VOLT.MIN.WARN}','APC UPS Symmetra: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','APC UPS Symmetra: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','47069f8d431f45d490674d7ba01d2bb2',''), ('18910','{23106}<10m','WildFly Domain: WildFly: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','WildFly Domain: WildFly: {HOST.NAME} has been restarted (uptime < 10m)','926f1767aae74529a972c7b8b09f4442',''), ('18911','{23284}<>{23285} and length({23286})>0','WildFly Domain: WildFly: Version has changed','','0','1','WildFly version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','WildFly Domain: WildFly: Version has changed (new version: {ITEM.VALUE})','76d500211fd9479fafbd0fb7d41ffd68',''), ('18912','{23287}<>{23288} and length({23289})>0','WildFly Domain: Server {#SERVER}: Server group has changed','','0','1','Server group has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','WildFly Domain: Server {#SERVER}: Server group has changed (new group: {ITEM.VALUE})','da5368f2eec040bbb05f13faa6375052',''), ('18913','{23290}<>{23291} and length({23292})>0','WildFly Domain: Server {#SERVER}: Server status has changed','','0','2','Server status has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','WildFly Domain: Server {#SERVER}: Server status has changed (new status: {ITEM.VALUE})','79409a9fae6442c9ad655655a752365d',''), ('18914','{23116}=1','WildFly Server: Failed to fetch info data','','0','2','Zabbix has not received data for items for the last 15 minutes',NULL,'0','0','0','','0','','0','','0','WildFly Server: Failed to fetch info data (or no data for 15m)','8a4fab49eb1e4ebbb1459d9b0f848771',''), ('18915','{23117}<10m','WildFly Server: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','WildFly Server: {HOST.NAME} has been restarted (uptime < 10m)','71db189440ec4355aa06262e3200d47e',''), ('18916','{23293}<>{23294} and length({23295})>0','WildFly Server: Version has changed','','0','1','WildFly version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','WildFly Server: Version has changed (new version: {ITEM.VALUE})','2923ab6f81d64579b6ba778bc0467042',''), ('18917','{23121}=0','WildFly Server: Server needs to restart for configuration change.','','0','2','',NULL,'0','0','0','','0','','0','','0','','c5702304641748e4bb04be89f3a38326',''), ('18918','{23122}=0','WildFly Server: Server controller is not in RUNNING state','','0','2','',NULL,'0','0','0','','0','','0','','0','','81de7058e3b64f73a14e03728dcf1c9b',''), ('18919','{23296}<>{23297} and length({23298})>0','WildFly Server: Deployment [{#DEPLOYMENT}]: Deployment status has changed','','0','2','Deployment status has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','WildFly Server: Deployment [{#DEPLOYMENT}]: Deployment status has changed (new status: {ITEM.VALUE})','6b432b25debe4277a971bc8a906e07b1',''), ('18920','{23126}/{23127}*100>{$WILDFLY.CONN.USAGE.WARN.MAX}','WildFly Server: {#JMX_DATA_SOURCE}: Connection usage is too high','','0','4','',NULL,'0','2','0','','0','','0','','0','WildFly Server: {#JMX_DATA_SOURCE}: Connection usage is too high (over {$WILDFLY.CONN.USAGE.WARN.MAX} in 5m)','6a40b3e94cc0441abc95fe3bc94397bf',''), ('18921','{23128}=0','WildFly Server: {#JMX_DATA_SOURCE}: There are no active connections for 5m','','0','2','',NULL,'0','2','0','','0','','0','','0','','ea551068ebd04d349eba3f45a72f2610',''), ('18922','{23129}=0','WildFly Server: {#JMX_DATA_SOURCE}: JDBC monitoring statistic is not enabled','','0','1','',NULL,'0','2','0','','0','','0','','0','','2996a48892a640d69154de332c673755',''), ('18923','{23130}=0','WildFly Server: {#JMX_DATA_SOURCE}: Pools monitoring statistic is not enabled','','0','1','Zabbix has not received data for items for the last 15 minutes',NULL,'0','2','0','','0','','0','','0','','4ea71ba3572647b29a60077bc511052a',''), ('18924','{23131}>0','WildFly Server: {#JMX_DATA_SOURCE}: There are timeout connections','','0','2','',NULL,'0','2','0','','0','','0','','0','','d70d1703fdc64926abe602324814ea4c',''), ('18925','{23132}>{$WILDFLY.CONN.WAIT.MAX.WARN}','WildFly Server: {#JMX_DATA_SOURCE}: Too many waiting connections','','0','2','',NULL,'0','2','0','','0','','0','','0','WildFly Server: {#JMX_DATA_SOURCE}: Too many waiting connections (over {$WILDFLY.CONN.WAIT.MAX.WARN} for 5m)','2e38504216d84f3b9fe43b0bea86e388',''), ('18926','{23133}>0','WildFly Server: Listener {#HTTP_LISTENER}: There are 500 responses by this listener.','','0','2','',NULL,'0','2','0','','0','','0','','0','','504b88b04a204335a10f56cc3d852ba5',''), ('18927','{23134} < {$BATTERY.CAPACITY.MIN.WARN}','APC Smart-UPS: Battery has low capacity','','0','4','',NULL,'0','0','0','','0','','0','Current capacity: {ITEM.LASTVALUE1}','0','APC Smart-UPS: Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%)','0103da3d5f414d8ba1e9914d5c8d5f76',''), ('18928','{23135}=2','APC Smart-UPS: Battery needs replacement','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','09573345f6ce4d648f56117c8755e368',''), ('18929','{23136}=4','APC Smart-UPS: Battery has an internal error condition','','0','3','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','','0','','743aef1e53ee464da48d2953ddc3b85c',''), ('18930','{23137}=3','APC Smart-UPS: Battery is Low','','0','3','The UPS will be unable to sustain the current load, and its services will be lost if power is not restored.',NULL,'0','0','0','','0','','0','','0','','d648d686ff994625bd17f959c311fddd',''), ('18931','{23138} > {$BATTERY.TEMP.MAX.WARN}','APC Smart-UPS: Battery has high temperature','','0','4','',NULL,'0','0','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','APC Smart-UPS: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','e47ba98e74c94bd3886ac65cd1075359',''), ('18932','{30979} > 0 and ({30979} > {$UPS.INPUT_FREQ.MAX.WARN} or {30980} < {$UPS.INPUT_FREQ.MIN.WARN})','APC Smart-UPS: Unacceptable input frequency','','0','4','',NULL,'0','0','0','','0','','0','Current frequency: {ITEM.LASTVALUE1}','0','APC Smart-UPS: Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD})','3fa853edcebe42eba858e45f1a4465ee',''), ('18933','{30981} > 0 and ({30981} > {$UPS.INPUT_VOLT.MAX.WARN} or {30982} < {$UPS.INPUT_VOLT.MIN.WARN})','APC Smart-UPS: Unacceptable input voltage','','0','4','',NULL,'0','0','0','','0','','0','Current voltage: {ITEM.LASTVALUE1}','0','APC Smart-UPS: Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','74b42439050b48b6bf41abb5bb39808b',''), ('18934','{23143} > {$UPS.OUTPUT.MAX.WARN}','APC Smart-UPS: Output load is high','','0','4','A battery installed has an internal error condition.',NULL,'0','0','0','','0','','0','Current load: {ITEM.LASTVALUE1}','0','APC Smart-UPS: Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD})','e099efa7266f44008819979830147665',''), ('18935','{23144}=16','APC Smart-UPS: UPS is Emergency Static Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','edcc1dc962fa4a228b2f5cd3617efbc6',''), ('18936','{23145}=10','APC Smart-UPS: UPS is Hardware Failure Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','869fed8cdd5a4f369e3b1ff2474280de',''), ('18937','{23146}=7','APC Smart-UPS: UPS is Off','','0','3','',NULL,'0','0','0','','0','','0','','0','','378a246b34454d73b2248757be60a7ea',''), ('18938','{23147}=3','APC Smart-UPS: UPS is on battery','','0','3','',NULL,'0','0','0','','0','','0','','0','','286dc25a245f45c3bdcc64925b41aef6',''), ('18939','{23148}=4','APC Smart-UPS: UPS is on Smart Boost','','0','3','',NULL,'0','0','0','','0','','0','','0','','4d02a4c4f25a4efda7bd30def8364972',''), ('18940','{23149}=12','APC Smart-UPS: UPS is On Smart Trim','','0','3','',NULL,'0','0','0','','0','','0','','0','','ae91f99b089748cdaeb0185e31ffe82e',''), ('18941','{23150}=8','APC Smart-UPS: UPS is Rebooting','','0','3','',NULL,'0','0','0','','0','','0','','0','','0bb0ef56d82e4c2a9414468c61fb3a96',''), ('18942','{23151}=11','APC Smart-UPS: UPS is Sleeping Until Power Return','','0','3','',NULL,'0','0','0','','0','','0','','0','','6a5a7e4b17384131a337619ec4a9c1e6',''), ('18943','{23152}=6','APC Smart-UPS: UPS is Software Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','232c98b7ca654c91a20d52ce6f21d7a1',''), ('18944','{23153}=9','APC Smart-UPS: UPS is Switched Bypass','','0','3','',NULL,'0','0','0','','0','','0','','0','','65b8d109db8d4448a7ead131581fcbbe',''), ('18945','{23154}=5','APC Smart-UPS: UPS is Timed Sleeping','','0','3','',NULL,'0','0','0','','0','','0','','0','','917c1f3c82e044a89f2f56a2c8a602a6',''), ('18946','{24386}<>{24387} and length({24388})>0','APC Smart-UPS: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','APC Smart-UPS: System name has changed (new name: {ITEM.VALUE})','154aad534c35473cb4513cb4e3d4a082',''), ('18947','({32996}>0 and {32996}<10m) or ({32996}=0 and {32997}<10m)','APC Smart-UPS: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','APC Smart-UPS: {HOST.NAME} has been restarted (uptime < 10m)','7793a5e111c6466584ef6610aae707c1',''), ('18948','{23159}=0','APC Smart-UPS: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6e0f9b15effd4c9e9c416a99fd8f4517',''), ('18949','{23160}=1','APC Smart-UPS: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay','','0','2','The battery cartridge health. bit 0 Battery lifetime okay bit 1 Battery lifetime near end, order replacement cartridge bit 2 Battery lifetime exceeded, replace battery bit 3 Battery lifetime near end acknowledged, order replacement cartridge bit 4 Battery lifetime exceeded acknowledged, replace battery bit 5 Battery measured lifetime near end, order replacement cartridge bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','b29f9bd2e80242be940682139f303121',''), ('18950','{23161}=0','APC Smart-UPS: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status is not okay','','0','2','The battery cartridge status: bit 0 Disconnected bit 1 Overvoltage bit 2 NeedsReplacement bit 3 OvertemperatureCritical bit 4 Charger bit 5 TemperatureSensor bit 6 BusSoftStart bit 7 OvertemperatureWarning bit 8 GeneralError bit 9 Communication bit 10 DisconnectedFrame bit 11 FirmwareMismatch',NULL,'0','2','0','','0','','0','Current bit set: {ITEM.LASTVALUE1}','0','','0a96a9726cdd4431ad6e6d52e7461d69',''), ('18951','{23162} > {$BATTERY.TEMP.MAX.WARN}','APC Smart-UPS: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature','','0','4','',NULL,'0','2','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','APC Smart-UPS: {#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','dbb191572a17451296ae4ee8d3aeec73',''), ('18952','{23163}=3','APC Smart-UPS: {#EXTERNAL_SENSOR1_NAME}: Sensor has status Critical','','0','4','The external sensor has returned a value greater than the critical threshold.',NULL,'0','2','0','','0','','0','','0','','fc448a3d2ae4462a903863364bec836d',''), ('18953','{23164}=4','APC Smart-UPS: {#EXTERNAL_SENSOR1_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','3340123b060949a4b806a5a757862026',''), ('18954','{23165}=2','APC Smart-UPS: {#EXTERNAL_SENSOR1_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','5ac7c47c37804492947716e5857275c4',''), ('18955','{23166}=3','APC Smart-UPS: {#EXTERNAL_SENSOR2_NAME}: Sensor has status Critical','','0','4','The external sensor has returned a value greater than the critical threshold.',NULL,'0','2','0','','0','','0','','0','','8774e39abe784f6b9fe2f33c30f3fa05',''), ('18956','{23167}=4','APC Smart-UPS: {#EXTERNAL_SENSOR2_NAME}: Sensor has status Not Applicable','','0','1','The external sensor does not work or is not connected.',NULL,'0','2','0','','0','','0','','0','','d41c9de571ea4b48a1213f98a058c550',''), ('18957','{23168}=2','APC Smart-UPS: {#EXTERNAL_SENSOR2_NAME}: Sensor has status Warning','','0','3','The external sensor has returned a value greater than the warning threshold.',NULL,'0','2','0','','0','','0','','0','','c9e751b9449f4616beeb36b51cf0a3b9',''), ('18958','{23169} > {$UPS.INPUT_VOLT.MAX.WARN} or {23170} < {$UPS.INPUT_VOLT.MIN.WARN}','APC Smart-UPS: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','APC Smart-UPS: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','b8d5cbee0bc14df58a217b33222aa75d',''), ('18959','{23171} > {$UPS.INPUT_VOLT.MAX.WARN} or {23172} < {$UPS.INPUT_VOLT.MIN.WARN}','APC Smart-UPS: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage','','0','4','',NULL,'0','2','0','','0','','0','Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}','0','APC Smart-UPS: {#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','176a3014124f4f23bedbad120cb2b69a',''), ('18960','({23185} - now()) / 86400 < {$CERT.EXPIRY.WARN}','Certificate: SSL certificate expires soon','','0','2','The SSL certificate should be updated or it will become untrusted.',NULL,'0','0','0','','0','','0','','0','Certificate: SSL certificate expires soon (less than {$CERT.EXPIRY.WARN} days)','8a0e3e73527a45618afe94707234f4c6',''), ('18961','{23186} <> {23187}','Certificate: Fingerprint has changed','','0','1','The SSL certificate fingerprint has changed. If you did not update the certificate, it may mean your certificate has been hacked. Acknowledge to close the problem manually. There could be multiple valid certificates on some installations. In this case, the trigger will have a false positive. You can ignore it or disable the trigger.',NULL,'0','0','0','','0','','1','','0','Certificate: Fingerprint has changed (new version: {ITEM.VALUE})','7a4c69a5235e444cb7294e6b7189b2b6',''), ('18962','{23188}=1','Certificate: SSL certificate is invalid','','0','4','SSL certificate has expired or it is issued for another domain.',NULL,'0','0','0','','0','','0','','0','','854c791b765a4ae2982ce6436d6e78ca',''), ('18963','{23189} < {$CLOUDFLARE.CACHED_BANDWIDTH.MIN.WARN}','Cloudflare: Cached bandwidth is too low','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cloudflare: Cached bandwidth is too low (less than {$CLOUDFLARE.CACHED_BANDWIDTH.MIN.WARN}% for 3 last measurements)','acf573785c394924aae8ef74b2683fd1',''), ('18964','{23190} > {$CLOUDFLARE.ERRORS.MAX.WARN}','Cloudflare: Ratio of non-2xx responses is too high','','0','3','A large number of errors can indicate a malfunction of the site.',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cloudflare: Ratio of non-2xx responses is too high (more than {$CLOUDFLARE.ERRORS.MAX.WARN}% for 3 last measurements)','e76f4a61dd094419b6e0af706758e545',''), ('18965','{23211}=0','HAProxy: {#PXNAME} {#SVNAME}: Health check error','','0','2','Please check the server for faults.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','1378f45ad65a498aae7b571a69547352',''), ('18966','{23217}=0','HAProxy: {#PXNAME} {#SVNAME}: Health check error','','0','2','Please check the server for faults.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','6c4f8cf76ab046aaa4bd51e41cc10de7',''), ('18967','{23237} > {$NGINX.DROP_RATE.MAX.WARN}','NGINX Plus: High connections drop rate','','0','2','The rate of dropped connections is greater than `{$NGINX.DROP_RATE.MAX.WARN}` for the last 5 minutes.',NULL,'0','0','0','','0','','0','','0','NGINX Plus: High connections drop rate (more than {$NGINX.DROP_RATE.MAX.WARN} for 5m)','91c9dab8147a4d0086019119e4e55b5e',''), ('18968','length({23238})>0','NGINX Plus: Server response error','','0','4','',NULL,'0','0','0','','0','','0','','0','NGINX Plus: Server response error (text: {ITEM.VALUE})','e444c708371748bd831bba6c8d9a92e0',''), ('18969','{23239}=1','NGINX Plus: Failed to fetch info data','','0','2','Zabbix has not received any data for metrics for the last 30 minutes',NULL,'0','0','0','','0','','1','','0','NGINX Plus: Failed to fetch info data (or no data for 30m)','396fb4be618e45578566971d5399d611',''), ('18970','{23240}<10m','NGINX Plus: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','NGINX Plus: {HOST.NAME} has been restarted (uptime < 10m)','95622a29bd58444b9f0bd985db99f922',''), ('18971','{23241}<>{23242} and length({23243})>0','NGINX Plus: Version has changed','','0','1','The Nginx version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','NGINX Plus: Version has changed (new version: {ITEM.VALUE})','a91ff018fe4f4a1495b08adeb2b0005f',''), ('18972','{23244} > ({23245}*({$NGINX.HTTP.UPSTREAM.4XX.MAX.WARN}/100))','NGINX Plus: Too many HTTP requests with code 4xx','','0','2','',NULL,'0','2','0','','0','','0','','0','NGINX Plus: Too many HTTP requests with code 4xx (over {$NGINX.HTTP.UPSTREAM.4XX.MAX.WARN}% for 5m)','e7b4782a796b4710b50a96f3d24c8208',''), ('18973','{23246} > ({23247}*({$NGINX.HTTP.UPSTREAM.5XX.MAX.WARN}/100))','NGINX Plus: Too many HTTP requests with code 5xx','','0','4','',NULL,'0','2','0','','0','','0','','0','NGINX Plus: Too many HTTP requests with code 5xx (over {$NGINX.HTTP.UPSTREAM.5XX.MAX.WARN}% for 5m)','f542573d149547d3844f635bf2a87120',''), ('18974','{23248}=0 and {23249}=0','NGINX Plus: HTTP upstream server is not in UP or DOWN state.','','0','2','',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','fc6586fe2eef457bac1d71ce0313f95d',''), ('18975','{23250}=0 and {23251}=0','NGINX Plus: Stream upstream server is not in UP or DOWN state.','','0','2','',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','20ef9b9e953246ef856dd46033595e52',''), ('18976','{23273}<>1','Systemd: {#UNIT.NAME}: Service is not running','','0','2','',NULL,'0','2','0','','0','','1','','0','','5237bd423307449b8a58f692082d2a0a',''), ('18977','{23274}<10m','Systemd: {#UNIT.NAME} has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','2','0','','0','','1','','0','Systemd: {#UNIT.NAME} has been restarted (uptime < 10m)','e2292c5ead924500a06d38b6356930c7',''), ('18978','{33748}>{$ZABBIX.SERVER.UTIL.MAX:"service manager"}','Zabbix server: Utilization of service manager processes is high','','0','3','Indicates potential performance issues with the service manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33748}<{$ZABBIX.SERVER.UTIL.MIN:"service manager"}','0','','0','','0','Zabbix server: Utilization of service manager processes over {$ZABBIX.SERVER.UTIL.MAX:"service manager"}%','c4cdbce205e843d6b882503961a15376',''), ('18979','{33754}>{$ZABBIX.SERVER.UTIL.MAX:"trigger housekeeper"}','Zabbix server: Utilization of trigger housekeeper processes is high','','0','3','Indicates potential performance issues with the trigger housekeeper, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33754}<{$ZABBIX.SERVER.UTIL.MIN:"trigger housekeeper"}','0','','0','','0','Zabbix server: Utilization of trigger housekeeper processes over {$ZABBIX.SERVER.UTIL.MAX:"trigger housekeeper"}%','5ffa02f393d34c49bcb9eed2b2b89704',''), ('18980','{23305}<>{23306} and length({23307})>0','Zabbix server: Version has changed','','0','1','Zabbix server version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Zabbix server: Version has changed (new version: {ITEM.VALUE})','456403a2063c4e2298f9e3f60a7a3180',''), ('18984','{33846}>{$ZABBIX.SERVER.UTIL.MAX:"service manager"}','Zabbix server: Utilization of service manager processes is high','','0','3','Indicates potential performance issues with the service manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33846}<{$ZABBIX.SERVER.UTIL.MIN:"service manager"}','0','','0','','0','Zabbix server: Utilization of service manager processes over {$ZABBIX.SERVER.UTIL.MAX:"service manager"}%','001c9e2027ca4e7c8f5dc5b78681c573',''), ('18985','{33852}>{$ZABBIX.SERVER.UTIL.MAX:"trigger housekeeper"}','Zabbix server: Utilization of trigger housekeeper processes is high','','0','3','Indicates potential performance issues with the trigger housekeeper, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33852}<{$ZABBIX.SERVER.UTIL.MIN:"trigger housekeeper"}','0','','0','','0','Zabbix server: Utilization of trigger housekeeper processes over {$ZABBIX.SERVER.UTIL.MAX:"trigger housekeeper"}%','9c0daf6e85884122aa8c5b8432709c92',''), ('18986','{23395}/{23396}*100>{$GRIDGAIN.CHECKPOINT.PUSED.MAX.HIGH}','GridGain: Data region {#JMXNAME}: Checkpoint buffer utilization is too high','','0','4','Checkpoint buffer utilization is high. Threads will be throttled to avoid buffer overflow. It can be caused by high disk utilization.',NULL,'0','2','0','','0','','0','','0','GridGain: Data region {#JMXNAME}: Checkpoint buffer utilization is too high (over {$GRIDGAIN.CHECKPOINT.PUSED.MAX.HIGH} in 5m)','9a7d7c745faa4f1fa4ffd1ca8c1ac602',''), ('18987','{23397}/{23398}*100>{$GRIDGAIN.CHECKPOINT.PUSED.MAX.WARN}','GridGain: Data region {#JMXNAME}: Checkpoint buffer utilization is too high','','0','2','Checkpoint buffer utilization is high. Threads will be throttled to avoid buffer overflow. It can be caused by high disk utilization.',NULL,'0','2','0','','0','','0','','0','GridGain: Data region {#JMXNAME}: Checkpoint buffer utilization is too high (over {$GRIDGAIN.CHECKPOINT.PUSED.MAX.WARN} in 5m)','02ce52a2067147238969a4fd24f85bdc',''), ('18988','{23399}/{23400}*100>{$GRIDGAIN.DATA.REGION.PUSED.MAX.HIGH}','GridGain: Data region {#JMXNAME}: Data region utilization is too high','','0','4','Data region utilization is high. Increase data region size or delete any data.',NULL,'0','2','0','','0','','0','','0','GridGain: Data region {#JMXNAME}: Data region utilization is too high (over {$GRIDGAIN.DATA.REGION.PUSED.MAX.HIGH} in 5m)','92c2772aa8d7425e8bee5d760ba5b607',''), ('18989','{23401}/{23402}*100>{$GRIDGAIN.DATA.REGION.PUSED.MAX.WARN}','GridGain: Data region {#JMXNAME}: Data region utilization is too high','','0','2','Data region utilization is high. Increase data region size or delete any data.',NULL,'0','2','0','','0','','0','','0','GridGain: Data region {#JMXNAME}: Data region utilization is too high (over {$GRIDGAIN.DATA.REGION.PUSED.MAX.WARN} in 5m)','3694e6d813b04b51a77c842de617503c',''), ('18990','{23403}>0','GridGain: Data region {#JMXNAME}: Node started to evict pages','','0','1','You store more data than region can accommodate. Data started to move to disk it can make requests work slower. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','','7e2fc41d632240b3869080d41ef5e639',''), ('18991','{23404}>0','GridGain: Data region {#JMXNAME}: Pages replace rate more than 0','','0','2','There is more data than DataRegionMaxSize. Cluster started to replace pages in memory. Page replacement can slow down operations.',NULL,'0','2','0','','0','','0','','0','','d2b012fdfe634526bb583d4ad18abe4d',''), ('18992','{23405} > {$GRIDGAIN.PME.DURATION.MAX.HIGH}','GridGain: GridGain [{#JMXIGNITEINSTANCENAME}]: PME duration is too long','','0','4','PME duration is over {$GRIDGAIN.PME.DURATION.MAX.HIGH}ms. Looks like PME is hung.',NULL,'0','2','0','','0','','0','','0','GridGain: GridGain [{#JMXIGNITEINSTANCENAME}]: PME duration is too long (over {$GRIDGAIN.PME.DURATION.MAX.HIGH} for 5 min)','a2672171fa374810b95b72f6014f3998',''), ('18993','{23406} > {$GRIDGAIN.PME.DURATION.MAX.WARN}','GridGain: GridGain [{#JMXIGNITEINSTANCENAME}]: PME duration is too long','','0','2','PME duration is over {$GRIDGAIN.PME.DURATION.MAX.WARN}ms.',NULL,'0','2','0','','0','','0','','0','GridGain: GridGain [{#JMXIGNITEINSTANCENAME}]: PME duration is too long (over {$GRIDGAIN.PME.DURATION.MAX.WARN} for 5 min)','f21e1cee28354fcd945d58955831641b',''), ('18994','{23407} > {$GRIDGAIN.THREADS.COUNT.MAX.WARN}','GridGain: GridGain [{#JMXIGNITEINSTANCENAME}]: Number of running threads is too high','','0','2','Number of running threads is over {$GRIDGAIN.THREADS.COUNT.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','GridGain: GridGain [{#JMXIGNITEINSTANCENAME}]: Number of running threads is too high (over {$GRIDGAIN.THREADS.COUNT.MAX.WARN} for 15 min)','124c9738a384481fb39f5e8078cca0e4',''), ('18995','{23408} > {$GRIDGAIN.JOBS.QUEUE.MAX.WARN}','GridGain: GridGain [{#JMXIGNITEINSTANCENAME}]: Number of queued jobs is too high','','0','2','Number of queued jobs is over {$GRIDGAIN.JOBS.QUEUE.MAX.WARN}.',NULL,'0','2','0','','0','','0','','0','GridGain: GridGain [{#JMXIGNITEINSTANCENAME}]: Number of queued jobs is too high (over {$GRIDGAIN.JOBS.QUEUE.MAX.WARN} for 15 min)','71d259fbdcd74888a4bedc646fc4bc54',''), ('18996','{23409}>{23410}','GridGain: GridGain [{#JMXIGNITEINSTANCENAME}]: There are nodes is not in topology','','0','1','One or more server node left the topology. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','','ea93cb34b6434f2e94095c28087fc18e',''), ('18997','{23411}>0','GridGain: GridGain [{#JMXIGNITEINSTANCENAME}]: Server node added to the topology','','0','1','One or more server node added to the topology. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','','bf1fbe1ea3754da59bd8a510fbcc6f54',''), ('18998','{23412}<0','GridGain: GridGain [{#JMXIGNITEINSTANCENAME}]: Server node left the topology','','0','2','One or more server node left the topology. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','','db4cd7173ead4e878b79d55067d81300',''), ('18999','{23413}<>{23414} and length({23415})>0','GridGain: GridGain [{#JMXIGNITEINSTANCENAME}]: Version has changed','','0','1','The GridGain [{#JMXIGNITEINSTANCENAME}] version has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','GridGain: GridGain [{#JMXIGNITEINSTANCENAME}]: Version has changed (new version: {ITEM.VALUE})','4cc201fb67664fc49d36bbec95b574ce',''), ('19000','{23416}=1','GridGain: GridGain [{#JMXIGNITEINSTANCENAME}]: Failed to fetch info data','','0','2','Zabbix has not received data for items for the last 10 minutes.',NULL,'0','2','0','','0','','1','','0','GridGain: GridGain [{#JMXIGNITEINSTANCENAME}]: Failed to fetch info data (or no data for 10m)','d7b2be3a707f49d2897e7cce356cafa5',''), ('19001','{23417}<10m','GridGain: GridGain [{#JMXIGNITEINSTANCENAME}]: Instance has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','2','0','','0','','1','','0','GridGain: GridGain [{#JMXIGNITEINSTANCENAME}]: Instance has been restarted (uptime < 10m)','23cd9dbb498f4bb095ec8be1693fccf0',''), ('19002','{23418}<>{23419} and length({23420})>0','GridGain: GridGain [{#JMXIGNITEINSTANCENAME}]: Coordinator has changed','','0','2','The GridGain [{#JMXIGNITEINSTANCENAME}] version has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','GridGain: GridGain [{#JMXIGNITEINSTANCENAME}]: Version has changed (new version: {ITEM.VALUE})','40641263a3d840e89e46ba6f57076a0a',''), ('19003','{23421}>={23422}','GridGain: Cache group [{#JMXNAME}]: One or more backups are unavailable','','0','2','',NULL,'0','2','0','','0','','0','','0','','3ded54fcdad74c83b47543410a7d9b3c',''), ('19004','{23423}<>{23424} and length({23425})>0','GridGain: Cache group [{#JMXNAME}]: List of caches has changed','','0','1','List of caches has changed. Significant changes have occurred in the cluster. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','GridGain: Cache group [{#JMXNAME}]: Version has changed (new version: {ITEM.VALUE})','94d82f9db4f449e491782e14f6973f9b',''), ('19005','{23426}>0','GridGain: Cache group [{#JMXNAME}]: Rebalance in progress','','0','1','Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','','84e1402b3ae64960ad997d2610137927',''), ('19006','{23427}=0','GridGain: Cache group [{#JMXNAME}]: There is no copy for partitions','','0','2','',NULL,'0','2','0','','0','','0','','0','','63c244c02ace4ac4a8d6f60e5c533890',''), ('19007','{23428} > {$GRIDGAIN.THREAD.QUEUE.MAX.WARN:"{#JMXNAME}"}','GridGain: Thread pool [{#JMXNAME}]: Too many messages in queue','','0','3','Number of messages in queue more than {$GRIDGAIN.THREAD.QUEUE.MAX.WARN:"{#JMXNAME}"}.',NULL,'0','2','0','','0','','0','','0','GridGain: Thread pool [{#JMXNAME}]: Too many messages in queue (over {$GRIDGAIN.THREAD.QUEUE.MAX.WARN:"{#JMXNAME}"} for 5 min)','f2a7aa098ed245f48b455ed747ee42c3',''), ('19008','{23429}={23430}','GridGain: Cache group [{#JMXGROUP}]: All entries are in heap','','0','1','All entries are in heap. Possibly you use eager queries it may cause out of memory exceptions for big caches. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','','cfe03901890a4377ad8d5dcc7be3e0c5',''), ('19009','{23431} > {23432}','GridGain: Cache group [{#JMXGROUP}]: Success transactions less than rollbacks for 5m','','0','2','',NULL,'0','2','0','','0','','0','','0','','1c990b38154340a3aab678ac1365cf7e',''), ('19010','{23433}>0 and {23434}=0','GridGain: Cache group [{#JMXGROUP}]: There are no success transactions for cache for 5m','','0','3','',NULL,'0','2','0','','0','','0','','0','','2caa406da4cf4d089705e5506fd589f1',''), ('19011','{23447}<>{23448}','MongoDB node: Node in ReplicaSet changed the state','','0','2','Node in ReplicaSet changed the state. Acknowledge to close the problem manually.',NULL,'0','2','2','','0','','1','','0','MongoDB node: Node in ReplicaSet changed the state (new state: {ITEM.VALUE})','f9f29647a3db426c9c303fc47cfc48eb',''), ('19012','{23734}<10m','Cisco ASAv: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Cisco ASAv: {HOST.NAME} has been restarted (uptime < 10m)','7fcf46583d2b42f4be6758e85784f28f',''), ('19013','{23735}=0','Cisco ASAv: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9ee945a0b0b942d7a7e3fcf218f0e82f',''), ('19014','{23736}>{$CPU.UTIL.CRIT}','Cisco ASAv: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Cisco ASAv: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','2e90218795b94ee8b3c01dd79d2dd8b3',''), ('19015','{23737}>{$MEMORY.UTIL.MAX}','Cisco ASAv: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','Cisco ASAv: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','688975747f664a15a3bca9dd3e1e0b01',''), ('19016','{23738}=2 and {23739}<>{23740}','Cisco ASAv: {#CISCO.IF.NAME} Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire ''eternal off'' interfaces.) WARNING: if closed manually - won''t fire again on next poll, because of .diff.',NULL,'0','2','1','{23738}<>2','0','','1','Current state: {ITEM.LASTVALUE1}','0','','0aca9e16545a46f4a7b150d03cdb1df1',''), ('19017','{23741}<>{23742} and length({23743})>0','Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} has been replaced','','0','1','{#CISCO.ASAV.PHYS.NAME} serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} has been replaced (new serial number received)','c9f9bff9e9cd4519807c5be583670d02',''), ('19018','{25022}<>{25023} and length({25024})>0','F5 Big-IP: Chassis has been replaced','','0','1','Chassis serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','F5 Big-IP: Chassis has been replaced (new serial number received)','8a55167ddebb43f2ac8f6d028aef87c2',''), ('19019','{23870}<10m','F5 Big-IP: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','F5 Big-IP: {HOST.NAME} has been restarted (uptime < 10m)','551fd3b77d144ed58f138865e4862901',''), ('19020','{23871}=0','F5 Big-IP: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9ec4425af8dd4cf59dcb3146e6a8263c',''), ('19021','{28248} - 86400 * {$BIGIP.CERT.MIN} < now()','F5 Big-IP: Certificate expires ({#CERT.NAME})','','0','2','Please check certificate',NULL,'0','2','0','','0','','0','Expires: {ITEM.VALUE}','0','F5 Big-IP: Less than {$BIGIP.CERT.MIN} days left until the certificate expires ({#CERT.NAME})','015ce3f5d10749aca1d871a1d26c51c5',''), ('19022','{23873}=0','F5 Big-IP: Fan[{#FAN.INDEX}] is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','','0','','546745f6edf7470896d5bf251d760dfe',''), ('19023','{23874}=0','F5 Big-IP: Power supply [{#POWER.INDEX}] is in critical state','','0','4','Please check the power supply unit',NULL,'0','2','0','','0','','0','','0','','1e85cee65875477b85f74aedba6e86c9',''), ('19024','{23875}>{$BIGIP.CPU.UTIL.WARN.MAX}','F5 Big-IP: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','1','{23875}<{$BIGIP.CPU.UTIL.WARN.MIN}','0','','0','','0','F5 Big-IP: High CPU utilization (over {$BIGIP.CPU.UTIL.WARN.MAX}% for 5m)','1163080e05d3433f884773fe1ee0271a',''), ('19025','{25029}/{25030}*100<{$BIGIP.FS.FREE.WARN.MIN:"{#PART.NAME}"}','F5 Big-IP: Low free space in file system [{#PART.NAME}]','','0','2','The system is running out of free space.',NULL,'0','2','1','{25029}/{25030}*100>{$BIGIP.FS.FREE.WARN.MAX:"{#PART.NAME}"}','0','','1','','0','F5 Big-IP: Low free space in file system [{#PART.NAME}] (less than {$BIGIP.FS.FREE.WARN.MIN}% for 5m)','32b87997dc0b4967bdb158f1dc0baad2',''), ('19026','{28249}/{28250}*100>{$BIGIP.MEMORY.UTIL.WARN.MAX}','F5 Big-IP: High memory utilization in host [{#HOST.ID}]','','0','2','The system is running out of free memory.',NULL,'0','2','1','{28249}/{28250}*100<{$BIGIP.MEMORY.UTIL.WARN.MIN}','0','','0','','0','F5 Big-IP: High memory utilization in host [{#HOST.ID}] (over {$BIGIP.MEMORY.UTIL.WARN.MAX}%)','e72f446075214129ab1d6269fcd87051',''), ('19027','{35817}/{35818}*100>{$BIGIP.SWAP.UTIL.WARN.MAX}','F5 Big-IP: High swap utilization in host [{#HOST.ID}]','','0','2','The system is running out of free swap memory.',NULL,'0','2','1','{35817}/{35818}*100<{$BIGIP.SWAP.UTIL.WARN.MIN}','0','','0','','0','F5 Big-IP: High swap utilization in host [{#HOST.ID}] (over {$BIGIP.SWAP.UTIL.WARN.MAX}%)','5cf3e1f819ee46f49ba89156c53274ec',''), ('19028','{23882}>{23883} or {23884}>{23885}','F5 Big-IP: There are errors on the network interface','','0','3','',NULL,'0','2','0','','0','','0','','0','F5 Big-IP: There are errors on the network interface ({#IF.NAME})','2d9214768b684ba880703d738ac52099',''), ('19029','{23961}=0','ZYXEL: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','40839f3008b84e3c9ffa8858bd2ab616',''), ('19030','{23962}<>{23963} and length({23964})>0','ZYXEL: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','02ba3941993f48ca8d5f40b3b19804e8',''), ('19031','{23965}<>"AAM1212-51 / IES-612"','ZYXEL: Template does not match hardware','','0','1','This template is for Zyxel AAM1212-51 / IES-612, but connected to {ITEM.VALUE}',NULL,'0','0','0','','0','','0','','0','','5a3f459afc4f42fb90849e98c7639a96',''), ('19032','{23966}<>{23967} and length({23968})>0','ZYXEL: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','ZYXEL: Device has been replaced (new serial number received)','7528520bca7c4524b7451aeaca440cc5',''), ('19033','{23969}=0','ZYXEL: Port {#SNMPINDEX} alarm','','0','3','The slot reported an error.',NULL,'0','0','0','','0','','0','','0','','eec541b07a434770b2a3301825cc5e82',''), ('19034','({32324}>0 and {32324}<10m) or ({32324}=0 and {32325}<10m)','ZYXEL: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','ZYXEL: {HOST.NAME} has been restarted (uptime < 10m)','819190f68248439292fc4622c3eec5a9',''), ('19035','{23971}>{$ZYXEL.ADSL.ATN.MAX}','ZYXEL: High the DSL line attenuation in Port {#SNMPINDEX}','','0','2','The reductions in amplitude of the downstream and upstream DSL signals.',NULL,'0','2','0','','0','','0','','0','ZYXEL: High the DSL line attenuation in Port {#SNMPINDEX} (>{$ZYXEL.ADSL.ATN.MAX}dB for 5m)','0c78247a1003496abab584a526777a40',''), ('19036','{23972}<{$ZYXEL.ADSL.SNR.MIN}','ZYXEL: Low the DSL line noise margins in Port {#SNMPINDEX}','','0','2','Signal-to-noise margin (SNR Margin) which is the difference between the actual SNR and the SNR required to sync at a specific speed',NULL,'0','2','0','','0','','0','','0','ZYXEL: Low the DSL line noise margins in Port {#SNMPINDEX} (<{$ZYXEL.ADSL.SNR.MIN}dB for 5m)','14cbae6c16c245b09ed46e0cc01a556c',''), ('19037','{23973}>{$ZYXEL.ADSL.ATN.MAX}','ZYXEL: High the DSL line attenuation in Port {#SNMPINDEX}','','0','2','The reductions in amplitude of the downstream and upstream DSL signals.',NULL,'0','2','0','','0','','0','','0','ZYXEL: High the DSL line attenuation in Port {#SNMPINDEX} (>{$ZYXEL.ADSL.ATN.MAX}dB for 5m)','e917c9a8d6bb4af3a40c6c5b41f90c22',''), ('19038','{23974}<{$ZYXEL.ADSL.SNR.MIN}','ZYXEL: Low the DSL line noise margins in Port {#SNMPINDEX}','','0','2','Signal-to-noise margin (SNR Margin) which is the difference between the actual SNR and the SNR required to sync at a specific speed',NULL,'0','2','0','','0','','0','','0','ZYXEL: Low the DSL line noise margins in Port {#SNMPINDEX} (<{$ZYXEL.ADSL.SNR.MIN}dB for 5m)','125b08332e2f409985cade88ab3842f1',''), ('19039','{23975}=2 and {23976}<>{23977}','ZYXEL: Port {#SNMPINDEX}: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, do not fire for the ''eternal off'' interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{23975}<>2','0','','1','Current state: {ITEM.LASTVALUE1}','0','','956fc99c2c5341a2b29ba2f302cc0a3a',''), ('19040','{23978}=2 and {23979}<>{23980}','ZYXEL: Port {#ZYXEL.IF.NAME}: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, do not fire for the ''eternal off'' interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{23978}<>2','0','','1','Current state: {ITEM.LASTVALUE1}','0','','805f49836f794aad9ee00f66dd90ffc1',''), ('19041','{23981}>{#ZYXEL.TEMP.THRESH.HIGH}','ZYXEL: Temperature {#ZYXEL.TEMP.ID} is in critical state','','0','3','Please check the temperature',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','321b2efb6e8e4117949b3644cc101ff2',''), ('19042','{23982}<{#ZYXEL.VOLT.THRESH.LOW}','ZYXEL: Voltage {#ZYXEL.VOLT.NOMINAL} is in critical state','','0','3','Please check the power supply',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a7aa1ae207bb462bb23d3f2fca2c3533',''), ('19043','{23983}=0','ZYXEL: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','3bbbd93c114f4bf5b8f4788ca6825afd',''), ('19044','{23984}>{$CPU.UTIL.CRIT}','ZYXEL: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','ZYXEL: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','3cf67f911a854d2ebeb9e006f3f97738',''), ('19045','{23985}<>{23986} and length({23987})>0','ZYXEL: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','bd6d0fe201094c00b6c93d7c04c27729',''), ('19046','{23988}<>"ES3500-8PD"','ZYXEL: Template does not match hardware','','0','1','This template is for Zyxel ES3500-8PD, but connected to {ITEM.VALUE}',NULL,'0','0','0','','0','','0','','0','','e03ca45643354a18a9d6ffbb38a07654',''), ('19047','{23989}<>{23990} and length({23991})>0','ZYXEL: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','ZYXEL: Device has been replaced (new serial number received)','83548aba74c148e28e6611d5abfb9694',''), ('19048','({32326}>0 and {32326}<10m) or ({32326}=0 and {32327}<10m)','ZYXEL: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','ZYXEL: {HOST.NAME} has been restarted (uptime < 10m)','eb7a268bfa324366953221e3c1788127',''), ('19049','{23993}>{$MEMORY.UTIL.MAX}','ZYXEL: High memory utilization in "{#ZYXEL.MEMORY.NAME}" pool','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','ZYXEL: High memory utilization in "{#ZYXEL.MEMORY.NAME}" pool (>{$MEMORY.UTIL.MAX}% for 5m)','c59c3730eea44cf7a842fe46aa12fa3d',''), ('19050','{23994}=2 and {23995}<>{23996}','ZYXEL: Port {#SNMPINDEX}: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, do not fire for the ''eternal off'' interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{23994}<>2','0','','1','Current state: {ITEM.LASTVALUE1}','0','','27ba4832c79d447186ae6de254aad9d7',''), ('19051','{23997} > {#ZYXEL.SFP.WARN.MAX}','ZYXEL: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION}','','0','2','The upper threshold value of the parameter is exceeded',NULL,'0','2','0','','0','','0','','0','ZYXEL: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION} (over {#ZYXEL.SFP.WARN.MAX}{#ZYXEL.SFP.UNIT})','8ce109a9f09b41458a4e9d8698238ad0',''), ('19052','{23998} < {#ZYXEL.SFP.WARN.MIN}','ZYXEL: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION}','','0','2','The parameter values are less than the lower threshold',NULL,'0','2','0','','0','','0','','0','ZYXEL: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION} (less than {#ZYXEL.SFP.WARN.MIN}{#ZYXEL.SFP.UNIT})','6ecef48a1fdd4e16afe9472f59e0ad1a',''), ('19053','{23999}<>{24000} and length({24001})>0','ZYXEL: SFP {#SNMPINDEX} has been replaced','','0','1','SFP {#SNMPINDEX} serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','ZYXEL: SFP {#SNMPINDEX} has been replaced (new serial number received)','46739144d51b441886d544829749cf21',''), ('19054','{24002}>{#ZYXEL.TEMP.THRESH.HIGH}','ZYXEL: Temperature {#ZYXEL.TEMP.ID} is in critical state','','0','3','Please check the temperature',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','51fad2cd7daf49ad9027f44fd9ea81af',''), ('19055','{24003}<{#ZYXEL.VOLT.THRESH.LOW}','ZYXEL: Voltage {#ZYXEL.VOLT.NOMINAL} is in critical state','','0','3','Please check the power supply',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','2cce1a60cfea4bb89e1b9582f6045d3c',''), ('19056','{24004}=0','ZYXEL: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','07b74d3face24c838c7efe8dfb87564e',''), ('19057','{24005}>{$CPU.UTIL.CRIT}','ZYXEL: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','ZYXEL: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','2052d9e6becd48e5a3aed8037eaf9e87',''), ('19058','{24006}<>{24007} and length({24008})>0','ZYXEL: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','ecde6db248674039a30874f29e704e65',''), ('19059','{24009}<>"GS-4012F"','ZYXEL: Template does not match hardware','','0','1','This template is for Zyxel GS-4012F, but connected to {ITEM.VALUE}',NULL,'0','0','0','','0','','0','','0','','1ba1faabe15c4d46adaa4dc74c5dc05c',''), ('19060','{24010}<>{24011} and length({24012})>0','ZYXEL: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','ZYXEL: Device has been replaced (new serial number received)','ae941404115d4b10809bce603528ceaa',''), ('19061','({32328}>0 and {32328}<10m) or ({32328}=0 and {32329}<10m)','ZYXEL: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','ZYXEL: {HOST.NAME} has been restarted (uptime < 10m)','93c70a5dd2504d0d9b13a17af942d45e',''), ('19062','{24014}<{#ZYXEL.FANRPM.THRESH.LOW}','ZYXEL: FAN{#SNMPINDEX} is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c91993daf9e44102a04b1ff2b72bf773',''), ('19063','{24015}=2 and {24016}<>{24017}','ZYXEL: Port {#SNMPINDEX}: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, do not fire for the ''eternal off'' interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{24015}<>2','0','','1','Current state: {ITEM.LASTVALUE1}','0','','9c332411a6db46acaab2b49ccabd2970',''), ('19064','{24018}>{#ZYXEL.TEMP.THRESH.HIGH}','ZYXEL: Temperature {#ZYXEL.TEMP.ID} is in critical state','','0','3','Please check the temperature',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','719aad00708e4fd3b99997834c5d68b2',''), ('19065','{24019}<{#ZYXEL.VOLT.THRESH.LOW}','ZYXEL: Voltage {#ZYXEL.VOLT.NOMINAL} is in critical state','','0','3','Please check the power supply',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7d28666404bd4cedb687214846f89d4a',''), ('19066','{24020}=0','ZYXEL: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','73967d1d3d01458c8e947a1aacb838b0',''), ('19067','not({24021}="IES-5000" or {24021}="IES-5005")','ZYXEL: Template does not match hardware','','0','1','This template is for Zyxel IES-500x, but connected to {ITEM.VALUE}',NULL,'0','0','0','','0','','0','','0','','d4b378535f5c4299af1295029e94f9d1',''), ('19068','({32330}>0 and {32330}<10m) or ({32330}=0 and {32331}<10m)','ZYXEL: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','ZYXEL: {HOST.NAME} has been restarted (uptime < 10m)','d618295a763f42cd9063fad5cd600c34',''), ('19069','{24023}>{#ZYXEL.BUFFERHIGHTHRESH}','ZYXEL: High Packet buffer utilization in Slot {#ZYXEL.SLOT.ID}','','0','3','The system is running out of free buffer.',NULL,'0','2','0','','0','','0','','0','ZYXEL: High Packet buffer utilization in Slot {#ZYXEL.SLOT.ID} (>{#ZYXEL.BUFFERHIGHTHRESH}% for 5m)','b02248180f314948bdbb68e8b940cb99',''), ('19070','{24024}>{#ZYXEL.CPU.THRESH.HIGH}','ZYXEL: Slot {#ZYXEL.SLOT.ID} high CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','ZYXEL: Slot {#ZYXEL.SLOT.ID} high CPU utilization (over {#ZYXEL.CPU.THRESH.HIGH}% for 5m)','e2e689642a884509a5254e946deaf69f',''), ('19071','{24025}<{#ZYXEL.FANRPM.THRESH.LOW} or {24025}>{#ZYXEL.FANRPM.THRESH.HIGH}','ZYXEL: FAN{#SNMPINDEX} is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9e249839db314f05a7a3cd16172ae9a7',''), ('19072','{24026}>{#ZYXEL.MEMORYHIGHTHRESH}','ZYXEL: High memory utilization in Slot {#ZYXEL.SLOT.ID} pool','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','ZYXEL: High memory utilization in Slot {#ZYXEL.SLOT.ID} pool (>{#ZYXEL.MEMORYHIGHTHRESH}% for 5m)','c3099861742f4303af838a0bf3921fac',''), ('19073','{24027}>{$ZYXEL.ADSL.ATN.MAX}','ZYXEL: High the DSL line attenuation in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}','','0','2','The reductions in amplitude of the downstream and upstream DSL signals.',NULL,'0','2','0','','0','','0','','0','ZYXEL: High the DSL line attenuation in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID} (>{$ZYXEL.ADSL.ATN.MAX}dB for 5m)','375982ea68ec4800aa27a50a89fd79d5',''), ('19074','{24028}<{$ZYXEL.ADSL.SNR.MIN}','ZYXEL: Low the DSL line noise margins in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}','','0','2','Signal-to-noise margin (SNR Margin) which is the difference between the actual SNR and the SNR required to sync at a specific speed',NULL,'0','2','0','','0','','0','','0','ZYXEL: Low the DSL line noise margins in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID} (<{$ZYXEL.ADSL.SNR.MIN}dB for 5m)','8d2f57548d4e47f2981a4fd79d065246',''), ('19075','{24029}>{$ZYXEL.ADSL.ATN.MAX}','ZYXEL: High the DSL line attenuation in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}','','0','2','The reductions in amplitude of the downstream and upstream DSL signals.',NULL,'0','2','0','','0','','0','','0','ZYXEL: High the DSL line attenuation in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID} (>{$ZYXEL.ADSL.ATN.MAX}dB for 5m)','1dec7ed135a348b1a1cebb3b4319d77f',''), ('19076','{24030}<{$ZYXEL.ADSL.SNR.MIN}','ZYXEL: Low the DSL line noise margins in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}','','0','2','Signal-to-noise margin (SNR Margin) which is the difference between the actual SNR and the SNR required to sync at a specific speed',NULL,'0','2','0','','0','','0','','0','ZYXEL: Low the DSL line noise margins in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID} (<{$ZYXEL.ADSL.SNR.MIN}dB for 5m)','7f8f4a2bff14464fbe2f956be87ad56d',''), ('19077','{24031}=2 and {24032}<>{24033}','ZYXEL: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, do not fire for the ''eternal off'' interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{24031}<>2','0','','1','Current state: {ITEM.LASTVALUE1}','0','','8afcc973a7e94a0782a057205cc1b8ed',''), ('19078','{24034}=2 and {24035}<>{24036}','ZYXEL: Port {#SNMPINDEX}: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, do not fire for the ''eternal off'' interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{24034}<>2','0','','1','Current state: {ITEM.LASTVALUE1}','0','','71a10836f3094184bba728a0cf4d005a',''), ('19079','{24037}=0','ZYXEL: Slot {#ZYXEL.SLOT.ID} alarm','','0','3','The slot reported an error.',NULL,'0','2','0','','0','','0','','0','','d2dd1a23dbbb467e90ab99ff59a817a2',''), ('19080','{24038}<>{24039} and length({24040})>0','ZYXEL: Slot {#ZYXEL.SLOT.ID}: DSL modem code has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','1b163693dc87407db836021da67bdccc',''), ('19081','{24041}<>{24042} and length({24043})>0','ZYXEL: Slot {#ZYXEL.SLOT.ID}: Driver has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','44f7087bcb524593a419887c199fb613',''), ('19082','{24044}<>{24045} and length({24046})>0','ZYXEL: Slot {#ZYXEL.SLOT.ID}: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','6de6e5adadf04a79813ed7778b454043',''), ('19083','{24047}<>{24048} and length({24049})>0','ZYXEL: Slot {#ZYXEL.SLOT.ID}: Hardware version has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','42969016e9c846a8954ebf95d2ff0ffc',''), ('19084','{24050}<>{24051} and length({24052})>0','ZYXEL: Slot {#ZYXEL.SLOT.ID} has been replaced','','0','1','Slot {#ZYXEL.SLOT.ID} serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','ZYXEL: Slot {#ZYXEL.SLOT.ID} has been replaced (new serial number received)','0994c0ab8b004dc280d1a036e7043cc0',''), ('19085','{24053}<10m','ZYXEL: Slot {#ZYXEL.SLOT.ID} has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','2','0','','0','','1','','0','ZYXEL: Slot {#ZYXEL.SLOT.ID} has been restarted (uptime < 10m)','6717069c115147b095321f2c4c5ec51b',''), ('19086','{24054}>{#ZYXEL.TEMP.THRESH.HIGH} or {24054}<{#ZYXEL.TEMP.THRESH.LOW}','ZYXEL: Temperature Slot {#ZYXEL.SLOT.ID} Sensor: {#ZYXEL.TEMP.ID} is in critical state','','0','3','Please check the temperature',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c4993b2d52e04808862ac0d043b0e982',''), ('19087','{24055}<{#ZYXEL.VOLT.THRESH.LOW} or {24055}>{#ZYXEL.VOLT.THRESH.HIGH}','ZYXEL: Voltage Slot {#ZYXEL.SLOT.ID} {#ZYXEL.VOLT.NOMINAL} is in critical state','','0','3','Please check the power supply',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','55bc511ff2094a86b10c542e896d10e2',''), ('19088','{24056}=0','ZYXEL: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','41eb76d6be3e47b8b0ca1296470372aa',''), ('19089','{24057}<>"IES-6000"','ZYXEL: Template does not match hardware','','0','1','This template is for Zyxel IES-6000, but connected to {ITEM.VALUE}',NULL,'0','0','0','','0','','0','','0','','7f6f8bdde2644182a892792ff2bb7c68',''), ('19090','({32332}>0 and {32332}<10m) or ({32332}=0 and {32333}<10m)','ZYXEL: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','ZYXEL: {HOST.NAME} has been restarted (uptime < 10m)','7a52520cc3dc4350bd7aa14260899f1c',''), ('19091','{24059}>{#ZYXEL.BUFFERHIGHTHRESH}','ZYXEL: High Packet buffer utilization in Slot {#ZYXEL.SLOT.ID}','','0','3','The system is running out of free buffer.',NULL,'0','2','0','','0','','0','','0','ZYXEL: High Packet buffer utilization in Slot {#ZYXEL.SLOT.ID} (>{#ZYXEL.BUFFERHIGHTHRESH}% for 5m)','1173ae0cf9f440f595366a6da7a4c672',''), ('19092','{24060}>{#ZYXEL.CPU.THRESH.HIGH}','ZYXEL: Slot {#ZYXEL.SLOT.ID} high CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','ZYXEL: Slot {#ZYXEL.SLOT.ID} high CPU utilization (over {#ZYXEL.CPU.THRESH.HIGH}% for 5m)','0d882e8f017e46c78727437bd55759d4',''), ('19093','{24061}<{#ZYXEL.FANRPM.THRESH.LOW} or {24061}>{#ZYXEL.FANRPM.THRESH.HIGH}','ZYXEL: FAN{#SNMPINDEX} is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d5f65aebabf741798dcd0b452302aefb',''), ('19094','{24062}>{#ZYXEL.MEMORYHIGHTHRESH}','ZYXEL: High memory utilization in Slot {#ZYXEL.SLOT.ID} pool','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','ZYXEL: High memory utilization in Slot {#ZYXEL.SLOT.ID} pool (>{#ZYXEL.MEMORYHIGHTHRESH}% for 5m)','64108d56dc6d43148f67503383fc6705',''), ('19095','{24063}>{$ZYXEL.ADSL.ATN.MAX}','ZYXEL: High the DSL line attenuation in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}','','0','2','The reductions in amplitude of the downstream and upstream DSL signals.',NULL,'0','2','0','','0','','0','','0','ZYXEL: High the DSL line attenuation in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID} (>{$ZYXEL.ADSL.ATN.MAX}dB for 5m)','e1233b29eb764b0bb5a2ce35f79060bf',''), ('19096','{24064}<{$ZYXEL.ADSL.SNR.MIN}','ZYXEL: Low the DSL line noise margins in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}','','0','2','Signal-to-noise margin (SNR Margin) which is the difference between the actual SNR and the SNR required to sync at a specific speed',NULL,'0','2','0','','0','','0','','0','ZYXEL: Low the DSL line noise margins in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID} (<{$ZYXEL.ADSL.SNR.MIN}dB for 5m)','d7392fd0c372459bb21b9a85a47ccb8c',''), ('19097','{24065}>{$ZYXEL.ADSL.ATN.MAX}','ZYXEL: High the DSL line attenuation in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}','','0','2','The reductions in amplitude of the downstream and upstream DSL signals.',NULL,'0','2','0','','0','','0','','0','ZYXEL: High the DSL line attenuation in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID} (>{$ZYXEL.ADSL.ATN.MAX}dB for 5m)','2ef5b800bb4148ce82bed8c4bf977a35',''), ('19098','{24066}<{$ZYXEL.ADSL.SNR.MIN}','ZYXEL: Low the DSL line noise margins in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}','','0','2','Signal-to-noise margin (SNR Margin) which is the difference between the actual SNR and the SNR required to sync at a specific speed',NULL,'0','2','0','','0','','0','','0','ZYXEL: Low the DSL line noise margins in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID} (<{$ZYXEL.ADSL.SNR.MIN}dB for 5m)','ba6eb4b3b6904b5dac4c057d3f6f3c17',''), ('19099','{24067}=2 and {24068}<>{24069}','ZYXEL: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, do not fire for the ''eternal off'' interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{24067}<>2','0','','1','Current state: {ITEM.LASTVALUE1}','0','','3fbe4b16a94648089df78829ee7e683f',''), ('19100','{24070}=2 and ({24071}<>{24072})=1','ZYXEL: Port {#SNMPINDEX}: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, do not fire for the ''eternal off'' interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{24070}<>2','0','','1','Current state: {ITEM.LASTVALUE1}','0','','a9aac7e6c66a4a69a77f8c165f9a9d5c',''), ('19101','{24073}=0','ZYXEL: Slot {#ZYXEL.SLOT.ID} alarm','','0','3','The slot reported an error.',NULL,'0','2','0','','0','','0','','0','','c3f610ab856e42c7bb6460f552779e12',''), ('19102','{24074}<>{24075} and length({24076})>0','ZYXEL: Slot {#ZYXEL.SLOT.ID}: DSL modem code has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','c62327e51d27445b893e80bf77c9696c',''), ('19103','{24077}<>{24078} and length({24079})>0','ZYXEL: Slot {#ZYXEL.SLOT.ID}: Driver has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','63a4bdc73f8c49a7abb914f47e162dec',''), ('19104','{24080}<>{24081} and length({24082})>0','ZYXEL: Slot {#ZYXEL.SLOT.ID}: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','7a2ef454d9624fd78416d2e1345be9a5',''), ('19105','{24083}<>{24084} and length({24085})>0','ZYXEL: Slot {#ZYXEL.SLOT.ID}: Hardware version has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','537f28be56984664822b574a2064453b',''), ('19106','{24086}<>{24087} and length({24088})>0','ZYXEL: Slot {#ZYXEL.SLOT.ID} has been replaced','','0','1','Slot {#ZYXEL.SLOT.ID} serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','ZYXEL: Slot {#ZYXEL.SLOT.ID} has been replaced (new serial number received)','3fbbcffe1c46497d89fe0d987a5f6eff',''), ('19107','{24089}<10m','ZYXEL: Slot {#ZYXEL.SLOT.ID} has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','2','0','','0','','1','','0','ZYXEL: Slot {#ZYXEL.SLOT.ID} has been restarted (uptime < 10m)','50e43c41d0e241238b65da25c12d1616',''), ('19108','{24090}>{#ZYXEL.TEMP.THRESH.HIGH} or {24090}<{#ZYXEL.TEMP.THRESH.LOW}','ZYXEL: Temperature Slot {#ZYXEL.SLOT.ID} Sensor: {#ZYXEL.TEMP.ID} is in critical state','','0','3','Please check the temperature',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c517b703b5084e9b8053fb139e3350ae',''), ('19109','{24091}<{#ZYXEL.VOLT.THRESH.LOW} or {24091}>{#ZYXEL.VOLT.THRESH.HIGH}','ZYXEL: Voltage Slot {#ZYXEL.SLOT.ID} {#ZYXEL.VOLT.NOMINAL} is in critical state','','0','3','Please check the power supply',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','14c98fc8b4864a3c87062510a079d948',''), ('19110','{24092}=0','ZYXEL: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','40466f29b8e54dc88cb49e818fc48281',''), ('19111','{24093}<>{24094} and length({24095})>0','ZYXEL: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','b64e891456674457ab4abf994b097277',''), ('19112','{24096}<>"IES1248-51"','ZYXEL: Template does not match hardware','','0','1','This template is for Zyxel IES1248-51, but connected to {ITEM.VALUE}',NULL,'0','0','0','','0','','0','','0','','21b638f9f1154b6bb78a652d8e54c1c2',''), ('19113','{24097}<>{24098} and length({24099})>0','ZYXEL: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','ZYXEL: Device has been replaced (new serial number received)','2f2972169c164053a8d439b0e572b0c6',''), ('19114','{24100}=0','ZYXEL: Port {#SNMPINDEX} alarm','','0','3','The slot reported an error.',NULL,'0','0','0','','0','','0','','0','','6b1b1b27241f42229e8b159320371356',''), ('19115','({32334}>0 and {32334}<10m) or ({32334}=0 and {32335}<10m)','ZYXEL: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','ZYXEL: {HOST.NAME} has been restarted (uptime < 10m)','bbccceac3dc24b9ab76a820fe5be4788',''), ('19116','{24102}<{#ZYXEL.FANRPM.THRESH.LOW}','ZYXEL: FAN{#SNMPINDEX} is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','86f18f4e598443ab9e0ec30554d78e1a',''), ('19117','{24103}>{$ZYXEL.ADSL.ATN.MAX}','ZYXEL: High the DSL line attenuation in Port {#SNMPINDEX}','','0','2','The reductions in amplitude of the downstream and upstream DSL signals.',NULL,'0','2','0','','0','','0','','0','ZYXEL: High the DSL line attenuation in Port {#SNMPINDEX} (>{$ZYXEL.ADSL.ATN.MAX}dB for 5m)','23e50c0031c1457596b1366a40606ef9',''), ('19118','{24104}<{$ZYXEL.ADSL.SNR.MIN}','ZYXEL: Low the DSL line noise margins in Port {#SNMPINDEX}','','0','2','Signal-to-noise margin (SNR Margin) which is the difference between the actual SNR and the SNR required to sync at a specific speed',NULL,'0','2','0','','0','','0','','0','ZYXEL: Low the DSL line noise margins in Port {#SNMPINDEX} (<{$ZYXEL.ADSL.SNR.MIN}dB for 5m)','23bbc44b2f114afe99a8175a2b7f0ddd',''), ('19119','{24105}>{$ZYXEL.ADSL.ATN.MAX}','ZYXEL: High the DSL line attenuation in Port {#SNMPINDEX}','','0','2','The reductions in amplitude of the downstream and upstream DSL signals.',NULL,'0','2','0','','0','','0','','0','ZYXEL: High the DSL line attenuation in Port {#SNMPINDEX} (>{$ZYXEL.ADSL.ATN.MAX}dB for 5m)','2132fed26fe54a7daa017b7264c37f1c',''), ('19120','{24106}<{$ZYXEL.ADSL.SNR.MIN}','ZYXEL: Low the DSL line noise margins in Port {#SNMPINDEX}','','0','2','Signal-to-noise margin (SNR Margin) which is the difference between the actual SNR and the SNR required to sync at a specific speed',NULL,'0','2','0','','0','','0','','0','ZYXEL: Low the DSL line noise margins in Port {#SNMPINDEX} (<{$ZYXEL.ADSL.SNR.MIN}dB for 5m)','2d8f752b376f4c10bc8efbd39c8f45a9',''), ('19121','{24107}=2 and {24108}<>{24109}','ZYXEL: Port {#SNMPINDEX}: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, do not fire for the ''eternal off'' interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{24107}<>2','0','','1','Current state: {ITEM.LASTVALUE1}','0','','93a58c14939d4c3491646171910fe5ad',''), ('19122','{24110}=2 and {24111}<>{24112}','ZYXEL: Port {#ZYXEL.IF.NAME}: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, do not fire for the ''eternal off'' interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{24110}<>2','0','','1','Current state: {ITEM.LASTVALUE1}','0','','8d90a989c82a4890a3a1a0b8eeb53462',''), ('19123','{24113}>{#ZYXEL.TEMP.THRESH.HIGH}','ZYXEL: Temperature {#ZYXEL.TEMP.ID} is in critical state','','0','3','Please check the temperature',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','f0d7f5282c784224b0cd5f76d3c2ad90',''), ('19124','{24114}<{#ZYXEL.VOLT.THRESH.LOW}','ZYXEL: Voltage {#ZYXEL.VOLT.NOMINAL} is in critical state','','0','3','Please check the power supply',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9815420fe46c45ce8731b9688b4a543e',''), ('19125','{24115}=0','ZYXEL: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','0e38d148fc29439488b3b23ee308b1d9',''), ('19126','{24116}>{$CPU.UTIL.CRIT}','ZYXEL: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','ZYXEL: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','247a25a4976a45eca78853aea112cdd6',''), ('19127','{24117}<>{24118} and length({24119})>0','ZYXEL: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','7c4cfa75447a4eeda874d916d052eb6e',''), ('19128','{24120}<>"MES-3528"','ZYXEL: Template does not match hardware','','0','1','This template is for Zyxel MES-3528, but connected to {ITEM.VALUE}',NULL,'0','0','0','','0','','0','','0','','b98e244abe2a4bd481be50048234afe6',''), ('19129','{24121}<>{24122} and length({24123})>0','ZYXEL: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','ZYXEL: Device has been replaced (new serial number received)','d08bc1ffb11e4bbc98851c30595e996c',''), ('19130','({32336}>0 and {32336}<10m) or ({32336}=0 and {32337}<10m)','ZYXEL: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','ZYXEL: {HOST.NAME} has been restarted (uptime < 10m)','d138c874f4de4f3a97a0c615d589826a',''), ('19131','{24125}=2 and {24126}<>{24127}','ZYXEL: Port {#SNMPINDEX}: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, do not fire for the ''eternal off'' interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{24125}<>2','0','','1','Current state: {ITEM.LASTVALUE1}','0','','c23272db35f44fe6958e3b5e31a52974',''), ('19132','{24128} > {#ZYXEL.SFP.WARN.MAX}','ZYXEL: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION}','','0','2','The upper threshold value of the parameter is exceeded',NULL,'0','2','0','','0','','0','','0','ZYXEL: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION} (over {#ZYXEL.SFP.WARN.MAX}{#ZYXEL.SFP.UNIT})','f9e2991ea38343c8b2c9815bf733aef8',''), ('19133','{24129} < {#ZYXEL.SFP.WARN.MIN}','ZYXEL: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION}','','0','2','The parameter values are less than the lower threshold',NULL,'0','2','0','','0','','0','','0','ZYXEL: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION} (less than {#ZYXEL.SFP.WARN.MIN}{#ZYXEL.SFP.UNIT})','341bff907cd943219bbed92773d9b005',''), ('19134','{24130}<>{24131} and length({24132})>0','ZYXEL: SFP {#SNMPINDEX} has been replaced','','0','1','SFP {#SNMPINDEX} serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','ZYXEL: SFP {#SNMPINDEX} has been replaced (new serial number received)','5cd22f26211a428099d2a41c5c41efab',''), ('19135','{24133}=0','ZYXEL: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c33a4bffd5464934b4b9f1e7160806e1',''), ('19136','{24134}>{$CPU.UTIL.CRIT}','ZYXEL: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','ZYXEL: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','0d31c154f8f34ed18a99558f7839bbb6',''), ('19137','{24135}<>{24136} and length({24137})>0','ZYXEL: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','db567c7693b6437e89ef7a5b78c889f9',''), ('19138','{24138}<>"MES3500-10"','ZYXEL: Template does not match hardware','','0','1','This template is for Zyxel MES3500-10, but connected to {ITEM.VALUE}',NULL,'0','0','0','','0','','0','','0','','27f1cb5a297c4b1eafd4056317a37f01',''), ('19139','{24139}<>{24140} and length({24141})>0','ZYXEL: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','ZYXEL: Device has been replaced (new serial number received)','ee14abdf61b04a90adf6e2afcc3d73f4',''), ('19140','({32338}>0 and {32338}<10m) or ({32338}=0 and {32339}<10m)','ZYXEL: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','ZYXEL: {HOST.NAME} has been restarted (uptime < 10m)','9899ada82b0e4507948a8a0068e5640d',''), ('19141','{24143}>{$MEMORY.UTIL.MAX}','ZYXEL: High memory utilization in "{#ZYXEL.MEMORY.NAME}" pool','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','ZYXEL: High memory utilization in "{#ZYXEL.MEMORY.NAME}" pool (>{$MEMORY.UTIL.MAX}% for 5m)','91609e57df4941faa9fee17051f8ac24',''), ('19142','{24144}=2 and {24145}<>{24146}','ZYXEL: Port {#SNMPINDEX}: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, do not fire for the ''eternal off'' interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{24144}<>2','0','','1','Current state: {ITEM.LASTVALUE1}','0','','fb9bb0e2ceb643f495b93bbaf04b0cc1',''), ('19143','{24147} > {#ZYXEL.SFP.WARN.MAX}','ZYXEL: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION}','','0','2','The upper threshold value of the parameter is exceeded',NULL,'0','2','0','','0','','0','','0','ZYXEL: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION} (over {#ZYXEL.SFP.WARN.MAX}{#ZYXEL.SFP.UNIT})','bc09d6c1771d4d04afe86f49dbd98852',''), ('19144','{24148} < {#ZYXEL.SFP.WARN.MIN}','ZYXEL: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION}','','0','2','The parameter values are less than the lower threshold',NULL,'0','2','0','','0','','0','','0','ZYXEL: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION} (less than {#ZYXEL.SFP.WARN.MIN}{#ZYXEL.SFP.UNIT})','d05ae92b624347cc9a8fe1154995f3f9',''), ('19145','{24149}<>{24150} and length({24151})>0','ZYXEL: SFP {#SNMPINDEX} has been replaced','','0','1','SFP {#SNMPINDEX} serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','ZYXEL: SFP {#SNMPINDEX} has been replaced (new serial number received)','8832e1fa622449f582218cf5a7bf6b75',''), ('19146','{24152}>{#ZYXEL.TEMP.THRESH.HIGH}','ZYXEL: Temperature {#ZYXEL.TEMP.ID} is in critical state','','0','3','Please check the temperature',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6970c577993343dfaa97f4317acf0f08',''), ('19147','{24153}<{#ZYXEL.VOLT.THRESH.LOW}','ZYXEL: Voltage {#ZYXEL.VOLT.NOMINAL} is in critical state','','0','3','Please check the power supply',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c86b60bc2d0842e28f0718314db4cde0',''), ('19148','{24154}=0','ZYXEL: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','96435fde17384c6bb4f9811ad9ca184a',''), ('19149','{24155}>{$CPU.UTIL.CRIT}','ZYXEL: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','ZYXEL: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','911d1c7e921f43af8ab3c0035be57a27',''), ('19150','{24156}<>{24157} and length({24158})>0','ZYXEL: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','f3daea29a34b4cf992d3c23ba8a64d2e',''), ('19151','{24159}<>"MES3500-24"','ZYXEL: Template does not match hardware','','0','1','This template is for Zyxel MES3500-24, but connected to {ITEM.VALUE}',NULL,'0','0','0','','0','','0','','0','','ab363c150ecd447ea4d3a3a9c311b992',''), ('19152','{24160}<>{24161} and length({24162})>0','ZYXEL: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','ZYXEL: Device has been replaced (new serial number received)','a475d29129664eec82fc7ed85cb74df9',''), ('19153','({32340}>0 and {32340}<10m) or ({32340}=0 and {32341}<10m)','ZYXEL: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','ZYXEL: {HOST.NAME} has been restarted (uptime < 10m)','c389b0db83bc404e8cb84ce65db79700',''), ('19154','{24164}>{$MEMORY.UTIL.MAX}','ZYXEL: High memory utilization in "{#ZYXEL.MEMORY.NAME}" pool','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','ZYXEL: High memory utilization in "{#ZYXEL.MEMORY.NAME}" pool (>{$MEMORY.UTIL.MAX}% for 5m)','66802198e0764ee29cdf557378b5566b',''), ('19155','{24165}=2 and {24166}<>{24167}','ZYXEL: Port {#SNMPINDEX}: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, do not fire for the ''eternal off'' interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{24165}<>2','0','','1','Current state: {ITEM.LASTVALUE1}','0','','5a9faa35f7d547a987e78075832cf38e',''), ('19156','{24168} > {#ZYXEL.SFP.WARN.MAX}','ZYXEL: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION}','','0','2','The upper threshold value of the parameter is exceeded',NULL,'0','2','0','','0','','0','','0','ZYXEL: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION} (over {#ZYXEL.SFP.WARN.MAX}{#ZYXEL.SFP.UNIT})','ef830e34f83347bebba87a72208d805b',''), ('19157','{24169} < {#ZYXEL.SFP.WARN.MIN}','ZYXEL: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION}','','0','2','The parameter values are less than the lower threshold',NULL,'0','2','0','','0','','0','','0','ZYXEL: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION} (less than {#ZYXEL.SFP.WARN.MIN}{#ZYXEL.SFP.UNIT})','229f44666e6043a1a8e34437ad24e3ae',''), ('19158','{24170}<>{24171} and length({24172})>0','ZYXEL: SFP {#SNMPINDEX} has been replaced','','0','1','SFP {#SNMPINDEX} serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','ZYXEL: SFP {#SNMPINDEX} has been replaced (new serial number received)','f84b378d79b74174842cc49af29c2a0c',''), ('19159','{24173}>{#ZYXEL.TEMP.THRESH.HIGH}','ZYXEL: Temperature {#ZYXEL.TEMP.ID} is in critical state','','0','3','Please check the temperature',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9963d3848c774563881689da1bcddefc',''), ('19160','{24174}<{#ZYXEL.VOLT.THRESH.LOW}','ZYXEL: Voltage {#ZYXEL.VOLT.NOMINAL} is in critical state','','0','3','Please check the power supply',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','2eef8cabb2e141dd8b6d1868ebc79db4',''), ('19161','{24175}=0','ZYXEL: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','60787fd1204b42bfb515b1b204c1d14f',''), ('19162','{24176}>{$CPU.UTIL.CRIT}','ZYXEL: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','ZYXEL: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','b1ca06637dbe4c9ca84e2811e780d5d5',''), ('19163','{24177}<>{24178} and length({24179})>0','ZYXEL: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','de7d7e7d976c4b9894259c4e7fb5a4dd',''), ('19164','{24180}<>"MGS-3712"','ZYXEL: Template does not match hardware','','0','1','This template is for Zyxel MGS-3712, but connected to {ITEM.VALUE}',NULL,'0','0','0','','0','','0','','0','','e0b4c4f09f6f496cb035af320fcf96a0',''), ('19165','{24181}<>{24182} and length({24183})>0','ZYXEL: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','ZYXEL: Device has been replaced (new serial number received)','4a9495748e09477ca5f12443fff533c9',''), ('19166','({32342}>0 and {32342}<10m) or ({32342}=0 and {32343}<10m)','ZYXEL: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','ZYXEL: {HOST.NAME} has been restarted (uptime < 10m)','eefe29ad784d40d3980a4cb1118dd816',''), ('19167','{24185}<{#ZYXEL.FANRPM.THRESH.LOW}','ZYXEL: FAN{#SNMPINDEX} is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','edc0057dbdb64fd584cc968c5d8bb41f',''), ('19168','{24186}=2 and {24187}<>{24188}','ZYXEL: Port {#SNMPINDEX}: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, do not fire for the ''eternal off'' interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{24186}<>2','0','','1','Current state: {ITEM.LASTVALUE1}','0','','e21751b08fe740f2ad9ad6bde6b879c4',''), ('19169','{24189} > {#ZYXEL.SFP.WARN.MAX}','ZYXEL: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION}','','0','2','The upper threshold value of the parameter is exceeded',NULL,'0','2','0','','0','','0','','0','ZYXEL: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION} (over {#ZYXEL.SFP.WARN.MAX}{#ZYXEL.SFP.UNIT})','e9d242819d7345a0b44cc14a392f05fa',''), ('19170','{24190} < {#ZYXEL.SFP.WARN.MIN}','ZYXEL: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION}','','0','2','The parameter values are less than the lower threshold',NULL,'0','2','0','','0','','0','','0','ZYXEL: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION} (less than {#ZYXEL.SFP.WARN.MIN}{#ZYXEL.SFP.UNIT})','177c2fe88ec24e3d9a5ea9f6b3f346d9',''), ('19171','{24191}<>{24192} and length({24193})>0','ZYXEL: SFP {#SNMPINDEX} has been replaced','','0','1','SFP {#SNMPINDEX} serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','ZYXEL: SFP {#SNMPINDEX} has been replaced (new serial number received)','aaa3492aa0c64e8a973d1a755fd24f50',''), ('19172','{24194}>{#ZYXEL.TEMP.THRESH.HIGH}','ZYXEL: Temperature {#ZYXEL.TEMP.ID} is in critical state','','0','3','Please check the temperature',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b5ba7daf05204f2b987b879a3d44fac2',''), ('19173','{24195}<{#ZYXEL.VOLT.THRESH.LOW}','ZYXEL: Voltage {#ZYXEL.VOLT.NOMINAL} is in critical state','','0','3','Please check the power supply',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','02a7a32af7a440b6a7199b425305fdde',''), ('19174','{24196}=0','ZYXEL: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c4244d60e8aa4cc380442992c031b2fd',''), ('19175','{24197}>{$CPU.UTIL.CRIT}','ZYXEL: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','ZYXEL: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','084cf3c89c9c48eeac9131d831a4f71b',''), ('19176','{24198}<>{24199} and length({24200})>0','ZYXEL: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','fbf62d3f9ce54baab9a16f3e123811ef',''), ('19177','{24201}<>"MGS-3712F"','ZYXEL: Template does not match hardware','','0','1','This template is for Zyxel MGS-3712F, but connected to {ITEM.VALUE}',NULL,'0','0','0','','0','','0','','0','','bf3d28b088db48a59aaa9e88f6b13cb8',''), ('19178','{24202}<>{24203} and length({24204})>0','ZYXEL: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','ZYXEL: Device has been replaced (new serial number received)','ccb3fe676cd742af954b8c5e7898e5f0',''), ('19179','({32344}>0 and {32344}<10m) or ({32344}=0 and {32345}<10m)','ZYXEL: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','ZYXEL: {HOST.NAME} has been restarted (uptime < 10m)','6a31fdd61b9f4aa99c8ad15ff243c6b2',''), ('19180','{24206}<{#ZYXEL.FANRPM.THRESH.LOW}','ZYXEL: FAN{#SNMPINDEX} is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4672af40f7434a419d063c6f00f4f9f8',''), ('19181','{24207}=2 and {24208}<>{24209}','ZYXEL: Port {#SNMPINDEX}: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, do not fire for the ''eternal off'' interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{24207}<>2','0','','1','Current state: {ITEM.LASTVALUE1}','0','','d92c1f55c21e4780ada69269d95c5f45',''), ('19182','{24210} > {#ZYXEL.SFP.WARN.MAX}','ZYXEL: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION}','','0','2','The upper threshold value of the parameter is exceeded',NULL,'0','2','0','','0','','0','','0','ZYXEL: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION} (over {#ZYXEL.SFP.WARN.MAX}{#ZYXEL.SFP.UNIT})','1ef8b878bd334f1eac9d9c4258d1f4f2',''), ('19183','{24211} < {#ZYXEL.SFP.WARN.MIN}','ZYXEL: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION}','','0','2','The parameter values are less than the lower threshold',NULL,'0','2','0','','0','','0','','0','ZYXEL: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION} (less than {#ZYXEL.SFP.WARN.MIN}{#ZYXEL.SFP.UNIT})','6605455fa4764a578feff4ce12a20883',''), ('19184','{24212}<>{24213} and length({24214})>0','ZYXEL: SFP {#SNMPINDEX} has been replaced','','0','1','SFP {#SNMPINDEX} serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','ZYXEL: SFP {#SNMPINDEX} has been replaced (new serial number received)','8fc46b61f7854893839a307700627d18',''), ('19185','{24215}>{#ZYXEL.TEMP.THRESH.HIGH}','ZYXEL: Temperature {#ZYXEL.TEMP.ID} is in critical state','','0','3','Please check the temperature',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b0d3093a36984493a7ffe87c7c4d408e',''), ('19186','{24216}<{#ZYXEL.VOLT.THRESH.LOW}','ZYXEL: Voltage {#ZYXEL.VOLT.NOMINAL} is in critical state','','0','3','Please check the power supply',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9a15b78bae564c879a5c95290cde63fe',''), ('19187','{24217}=0','ZYXEL: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d80bc493096b4da4857651e7e28829e7',''), ('19188','{24218}>{$CPU.UTIL.CRIT}','ZYXEL: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','ZYXEL: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','7bf51ce2b7a64f3f8151edc224c601e8',''), ('19189','{24219}<>{24220} and length({24221})>0','ZYXEL: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','182e8b14935445268c096a3e4fdb5795',''), ('19190','{24222}>{$MEMORY.UTIL.MAX}','ZYXEL: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','ZYXEL: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','d3a4dca93ad946589b1b83e0fe647dde',''), ('19191','{24223}<>"MES3500-24S"','ZYXEL: Template does not match hardware','','0','1','This template is for Zyxel MES3500-24S series, but connected to {ITEM.VALUE}',NULL,'0','0','0','','0','','0','','0','','96c011542d5b4473934e0de9e442479c',''), ('19192','{24224}<>{24225} and length({24226})>0','ZYXEL: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','ZYXEL: Device has been replaced (new serial number received)','90268ffbf33049d6adc6ed96badd67ec',''), ('19193','({32346}>0 and {32346}<10m) or ({32346}=0 and {32347}<10m)','ZYXEL: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','ZYXEL: {HOST.NAME} has been restarted (uptime < 10m)','6c8fce36fd9c49569be0ba2bfb70f478',''), ('19194','{24228}<{#ZYXEL.FANRPM.THRESH.LOW}','ZYXEL: {#ZYXEL.FAN.DESCRIPTION} is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','19846f8e671945c68b065ac53ebb2d38',''), ('19195','{24229}=2 and {24230}<>{24231}','ZYXEL: Port {#SNMPINDEX}: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, do not fire for the ''eternal off'' interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{24229}<>2','0','','1','Current state: {ITEM.LASTVALUE1}','0','','60f1b7c76a6b410db3f3a2ae40c3b74c',''), ('19196','{24232} > {#ZYXEL.SFP.WARN.MAX}','ZYXEL: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION}','','0','2','The upper threshold value of the parameter is exceeded',NULL,'0','2','0','','0','','0','','0','ZYXEL: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION} (over {#ZYXEL.SFP.WARN.MAX}{#ZYXEL.SFP.UNIT})','2a75ca5b7ef444d0a96dcf2d7c824f03',''), ('19197','{24233} < {#ZYXEL.SFP.WARN.MIN}','ZYXEL: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION}','','0','2','The parameter values are less than the lower threshold',NULL,'0','2','0','','0','','0','','0','ZYXEL: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION} (less than {#ZYXEL.SFP.WARN.MIN}{#ZYXEL.SFP.UNIT})','f2989317c3f847da84979dde3b4f4db4',''), ('19198','{24234}<>{24235} and length({24236})>0','ZYXEL: SFP {#SNMPINDEX} has been replaced','','0','1','SFP {#SNMPINDEX} serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','ZYXEL: SFP {#SNMPINDEX} has been replaced (new serial number received)','f6533a3fe07c4f0290e7758ac4183a1f',''), ('19199','{24237}>{#ZYXEL.TEMP.THRESH.HIGH}','ZYXEL: Temperature {#ZYXEL.TEMPDESCRIPTION} is in critical state','','0','3','Please check the temperature',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c6db10ac3bec446e9152545119b555bc',''), ('19200','{24238}<{#ZYXEL.VOLT.THRESH.LOW}','ZYXEL: Voltage {#ZYXEL.DESCRIPTION} is in critical state','','0','3','Please check the power supply',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','52ac34f156aa434dace3447bb5745b34',''), ('19201','{24239}=0','ZYXEL: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','3bf5d80d383e4e98853caa02063d69c9',''), ('19202','{24240}>{$CPU.UTIL.CRIT}','ZYXEL: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','ZYXEL: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','96ed7ee3906541ea9cb2c95cf4da1a62',''), ('19203','{24241}<>{24242} and length({24243})>0','ZYXEL: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','3785991565b948c2a1e1a2a140c42df4',''), ('19204','{24244}>{$MEMORY.UTIL.MAX}','ZYXEL: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','ZYXEL: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','1a999dff1dd9481083681741e71aba76',''), ('19205','not({24245}="MGS3520-28" or {24245}="MGS3520-28F")','ZYXEL: Template does not match hardware','','0','1','This template is for Zyxel MGS3520-28x series, but connected to {ITEM.VALUE}',NULL,'0','0','0','','0','','0','','0','','d72bc70a67014d818d593d6c484fc9ee',''), ('19206','{24246}<>{24247} and length({24248})>0','ZYXEL: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','ZYXEL: Device has been replaced (new serial number received)','e953886c5a464fc18bb1e221d801901c',''), ('19207','({32348}>0 and {32348}<10m) or ({32348}=0 and {32349}<10m)','ZYXEL: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','ZYXEL: {HOST.NAME} has been restarted (uptime < 10m)','308761b6dffb44c7b827f6ca76312233',''), ('19208','{24250}<{#ZYXEL.FANRPM.THRESH.LOW}','ZYXEL: {#ZYXEL.FAN.DESCRIPTION} is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9eedeb7aaba943c0947896cd50b39c7f',''), ('19209','{24251}=2 and {24252}<>{24253}','ZYXEL: Port {#SNMPINDEX}: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, do not fire for the ''eternal off'' interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{24251}<>2','0','','1','Current state: {ITEM.LASTVALUE1}','0','','abb9d47ee9624d6f9805e6eedd5532c5',''), ('19210','{24254} > {#ZYXEL.SFP.WARN.MAX}','ZYXEL: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION}','','0','2','The upper threshold value of the parameter is exceeded',NULL,'0','2','0','','0','','0','','0','ZYXEL: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION} (over {#ZYXEL.SFP.WARN.MAX}{#ZYXEL.SFP.UNIT})','27cd25ea30fa4f1c9b7b431218241d0c',''), ('19211','{24255} < {#ZYXEL.SFP.WARN.MIN}','ZYXEL: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION}','','0','2','The parameter values are less than the lower threshold',NULL,'0','2','0','','0','','0','','0','ZYXEL: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION} (less than {#ZYXEL.SFP.WARN.MIN}{#ZYXEL.SFP.UNIT})','1188909e81c14c23aa9eefbb25a4c367',''), ('19212','{24256}<>{24257} and length({24258})>0','ZYXEL: SFP {#SNMPINDEX} has been replaced','','0','1','SFP {#SNMPINDEX} serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','ZYXEL: SFP {#SNMPINDEX} has been replaced (new serial number received)','b9c3894fed8140c684be7c1fe2bbca8d',''), ('19213','{24259}>{#ZYXEL.TEMP.THRESH.HIGH}','ZYXEL: Temperature {#ZYXEL.TEMPDESCRIPTION} is in critical state','','0','3','Please check the temperature',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c2d4142fb8934eb7b66f5a5e4fa04398',''), ('19214','{24260}<{#ZYXEL.VOLT.THRESH.LOW}','ZYXEL: Voltage {#ZYXEL.DESCRIPTION} is in critical state','','0','3','Please check the power supply',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','22b6f2f48eae4167b31c8fe3ccbc138a',''), ('19215','{24261}=0','ZYXEL: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','fd9a321842544253896e5a4c1a58ced3',''), ('19216','{24262}>{$CPU.UTIL.CRIT}','ZYXEL: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','ZYXEL: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','20f368f955f74fc9b8380b1bbff7e057',''), ('19217','{24263}<>{24264} and length({24265})>0','ZYXEL: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','5da304609e8c45d980c46579f6848f0a',''), ('19218','{24266}<>"XGS-4728F"','ZYXEL: Template does not match hardware','','0','1','This template is for Zyxel XGS-4728F, but connected to {ITEM.VALUE}',NULL,'0','0','0','','0','','0','','0','','0329f3f5aa6a4315a4f3611ad662103e',''), ('19219','{24267}<>{24268} and length({24269})>0','ZYXEL: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','ZYXEL: Device has been replaced (new serial number received)','4df7c31c3079411baabd4ae66e580652',''), ('19220','({32350}>0 and {32350}<10m) or ({32350}=0 and {32351}<10m)','ZYXEL: Host has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','ZYXEL: {HOST.NAME} has been restarted (uptime < 10m)','36b9a7d3d3fb45f782a5ea05de6816f9',''), ('19221','{24271}<{#ZYXEL.FANRPM.THRESH.LOW}','ZYXEL: FAN{#SNMPINDEX} is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','012219b8b16941b59d1f9a3f685e9f38',''), ('19222','{24272}>{$MEMORY.UTIL.MAX}','ZYXEL: High memory utilization in "{#ZYXEL.MEMORY.NAME}" pool','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','ZYXEL: High memory utilization in "{#ZYXEL.MEMORY.NAME}" pool (>{$MEMORY.UTIL.MAX}% for 5m)','90b328c3b56c417eb938091338bd07fc',''), ('19223','{24273}=2 and {24274}<>{24275}','ZYXEL: Port {#SNMPINDEX}: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, do not fire for the ''eternal off'' interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{24273}<>2','0','','1','Current state: {ITEM.LASTVALUE1}','0','','3f3ce5111d47490382cb0c18e2d36f77',''), ('19224','{24276} > {#ZYXEL.SFP.WARN.MAX}','ZYXEL: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION}','','0','2','The upper threshold value of the parameter is exceeded',NULL,'0','2','0','','0','','0','','0','ZYXEL: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION} (over {#ZYXEL.SFP.WARN.MAX}{#ZYXEL.SFP.UNIT})','409c52cfed074352810bacfd52aa89f0',''), ('19225','{24277} < {#ZYXEL.SFP.WARN.MIN}','ZYXEL: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION}','','0','2','The parameter values are less than the lower threshold',NULL,'0','2','0','','0','','0','','0','ZYXEL: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION} (less than {#ZYXEL.SFP.WARN.MIN}{#ZYXEL.SFP.UNIT})','a2c40df40a334f6da00a438eb70f8374',''), ('19226','{24278}<>{24279} and length({24280})>0','ZYXEL: SFP {#SNMPINDEX} has been replaced','','0','1','SFP {#SNMPINDEX} serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','ZYXEL: SFP {#SNMPINDEX} has been replaced (new serial number received)','632be557ffed439e98425eaa59361e50',''), ('19227','{24281}>{#ZYXEL.TEMP.THRESH.HIGH}','ZYXEL: Temperature {#ZYXEL.TEMP.ID} is in critical state','','0','3','Please check the temperature',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6181f094ae4c4cf4ae4b2e198e2f9b6e',''), ('19228','{24282}<{#ZYXEL.VOLT.THRESH.LOW}','ZYXEL: Voltage {#ZYXEL.VOLT.NOMINAL} is in critical state','','0','3','Please check the power supply',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','631202a132dc44afa90b0537f9957ee1',''), ('19229','{24447}<>{24448} and length({24449})>0','Cisco UCS Manager: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Cisco UCS Manager: System name has changed (new name: {ITEM.VALUE})','622ac72c0e534bba94bb93636e4dc103',''), ('19230','({32382}>0 and {32382}<10m) or ({32382}=0 and {32383}<10m)','Cisco UCS Manager: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Cisco UCS Manager: {HOST.NAME} has been restarted (uptime < 10m)','9026e680b409424e8fa29934878cb771',''), ('19231','{24451}=0','Cisco UCS Manager: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','010a749e3a3242cd8e3ea30459fae5a4',''), ('19232','{24452}={$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT}','Cisco UCS Manager: {#DISKARRAY_CACHE_LOCATION}: Disk array cache controller battery is in critical state!','','0','3','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','0300b4bf4e0b42adb1b9e4985e80e356',''), ('19233','{24453}<>{$DISK.ARRAY.CACHE.BATTERY.STATUS.OK}','Cisco UCS Manager: {#DISKARRAY_CACHE_LOCATION}: Disk array cache controller battery is not in optimal state','','0','2','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','158561ecab8b4bbd9c0a616f419bda10',''), ('19234','{24454}={$DISK.ARRAY.STATUS.CRIT:"inoperable"}','Cisco UCS Manager: {#DISKARRAY_LOCATION}: Disk array controller is in critical state','','0','4','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','28c32222815f47e193d09afe5aafae79',''), ('19235','{24455}={$DISK.ARRAY.STATUS.WARN:"degraded"}','Cisco UCS Manager: {#DISKARRAY_LOCATION}: Disk array controller is in warning state','','0','3','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4e758fac4df54388b5f4555bb170bdd3',''), ('19236','{24456}>{$DISK.ARRAY.STATUS.OK:"operable"}','Cisco UCS Manager: {#DISKARRAY_LOCATION}: Disk array controller is not in optimal state','','0','2','Please check the device for faults',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','264e15d04626432987c2193bf190c56c',''), ('19237','{24457}={$FAN.STATUS.CRIT:"inoperable"}','Cisco UCS Manager: {#FAN_LOCATION}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7417bd7646c248eb9664875d7d19e9ea',''), ('19238','{24458}={$FAN.STATUS.WARN:"degraded"}','Cisco UCS Manager: {#FAN_LOCATION}: Fan is in warning state','','0','2','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b3d6cb64470e4e4c9bf1d619c0015823',''), ('19239','{24459}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {24460}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Cisco UCS Manager: Interface {#IFNAME}({#IFALIAS}): High error rate on {#IFNAME}','','0','2','Recovers when value below {$IF.ERRORS.WARN:"{#IFNAME}"} threshold.',NULL,'0','2','0','','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Cisco UCS Manager: Interface {#IFNAME}({#IFALIAS}): High error rate on {#IFNAME} ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','caaa61b8d89540c496678d739610ae38',''), ('19240','{$IFCONTROL:"{#IFNAME}"}=1 and {24461}=2 and ({24462}<>{24463})','Cisco UCS Manager: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, do not fire for the ''eternal off'' interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{24461}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','edfbf339b2664fae88e2a9003383e37f',''), ('19241','{24464}<>{24465} and length({24466})>0','Cisco UCS Manager: {#DISK_LOCATION}: Disk has been replaced','','0','1','Disk serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Cisco UCS Manager: {#DISK_LOCATION}: Disk has been replaced (new serial number received)','693cdcf58cb34def90ade23e2f2485cb',''), ('19242','{24467}={$DISK.STATUS.CRIT:"bad"} or {24467}={$DISK.STATUS.CRIT:"predictiveFailure"}','Cisco UCS Manager: {#DISK_LOCATION}: Physical disk error','','0','3','Please check physical disk for warnings or errors',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','ba92b99606fa4bf0bc4f1b6a362c2cdb',''), ('19243','{24468}={$DISK.STATUS.FAIL:"failed"}','Cisco UCS Manager: {#DISK_LOCATION}: Physical disk failed','','0','4','Please check physical disk for warnings or errors',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','eabf5aa62f004a2c996cc11bb5a6716a',''), ('19244','{24469}={$PSU.STATUS.CRIT:"inoperable"}','Cisco UCS Manager: {#PSU_LOCATION}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','0d2713cf2b72472c8d8896880476c20e',''), ('19245','{24470}={$PSU.STATUS.WARN:"degraded"}','Cisco UCS Manager: {#PSU_LOCATION}: Power supply is in warning state','','0','2','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','468f08407a7448a384e5dcde589cb9d0',''), ('19246','{24471}>{$TEMP.MAX.CRIT:"CPU"}','Cisco UCS Manager: {#SENSOR_LOCATION}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{24472}<{$TEMP.MAX.CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco UCS Manager: {#SENSOR_LOCATION}: Temperature is above critical threshold: >{$TEMP.MAX.CRIT:"CPU"}','c3b3933ceb504207a87054a1f9773a76',''), ('19247','{24473}>{$TEMP.MAX.WARN:"CPU"}','Cisco UCS Manager: {#SENSOR_LOCATION}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{24474}<{$TEMP.MAX.WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco UCS Manager: {#SENSOR_LOCATION}: Temperature is above warning threshold: >{$TEMP.MAX.WARN:"CPU"}','13b393265f59431687b776297cb0b104',''), ('19248','{24475}>{$TEMP.MAX.CRIT:"Ambient"}','Cisco UCS Manager: {#SENSOR_LOCATION}.IOH: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{24476}<{$TEMP.MAX.CRIT:"Ambient"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco UCS Manager: {#SENSOR_LOCATION}.IOH: Temperature is above critical threshold: >{$TEMP.MAX.CRIT:"Ambient"}','aa4bf1c8b942462dbd21ccf8bd8c4a6b',''), ('19249','{24477}>{$TEMP.MAX.WARN:"Ambient"}','Cisco UCS Manager: {#SENSOR_LOCATION}.IOH: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{24478}<{$TEMP.MAX.WARN:"Ambient"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco UCS Manager: {#SENSOR_LOCATION}.IOH: Temperature is above warning threshold: >{$TEMP.MAX.WARN:"Ambient"}','7751dd6bf1394daa9d918005d2d99d10',''), ('19250','{24479}>{$TEMP.MAX.CRIT:"Ambient"}','Cisco UCS Manager: {#SENSOR_LOCATION}.Ambient: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{24480}<{$TEMP.MAX.CRIT:"Ambient"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco UCS Manager: {#SENSOR_LOCATION}.Ambient: Temperature is above critical threshold: >{$TEMP.MAX.CRIT:"Ambient"}','230958b560374a118857b77418c6ba11',''), ('19251','{24481}>{$TEMP.MAX.WARN:"Ambient"}','Cisco UCS Manager: {#SENSOR_LOCATION}.Ambient: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{24482}<{$TEMP.MAX.WARN:"Ambient"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco UCS Manager: {#SENSOR_LOCATION}.Ambient: Temperature is above warning threshold: >{$TEMP.MAX.WARN:"Ambient"}','4cdcddd04b0e4625893a1e20ce22a10f',''), ('19252','{24483}>{$TEMP.MAX.CRIT:"Ambient"}','Cisco UCS Manager: {#SENSOR_LOCATION}.Front: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{24484}<{$TEMP.MAX.CRIT:"Ambient"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco UCS Manager: {#SENSOR_LOCATION}.Front: Temperature is above critical threshold: >{$TEMP.MAX.CRIT:"Ambient"}','8ee1dfc360aa4aca84a03b452ead92ce',''), ('19253','{24485}>{$TEMP.MAX.WARN:"Ambient"}','Cisco UCS Manager: {#SENSOR_LOCATION}.Front: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{24486}<{$TEMP.MAX.WARN:"Ambient"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco UCS Manager: {#SENSOR_LOCATION}.Front: Temperature is above warning threshold: >{$TEMP.MAX.WARN:"Ambient"}','196c9fe3facf4e3db348337714c77e17',''), ('19254','{24487}>{$TEMP.MAX.CRIT:"Ambient"}','Cisco UCS Manager: {#SENSOR_LOCATION}.Rear: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{24488}<{$TEMP.MAX.CRIT:"Ambient"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco UCS Manager: {#SENSOR_LOCATION}.Rear: Temperature is above critical threshold: >{$TEMP.MAX.CRIT:"Ambient"}','a8714fcba51c46f9aa84fa02fba37743',''), ('19255','{24489}>{$TEMP.MAX.WARN:"Ambient"}','Cisco UCS Manager: {#SENSOR_LOCATION}.Rear: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{24490}<{$TEMP.MAX.WARN:"Ambient"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco UCS Manager: {#SENSOR_LOCATION}.Rear: Temperature is above warning threshold: >{$TEMP.MAX.WARN:"Ambient"}','87068c693e574cd3952ca90e95a7a681',''), ('19256','{24491}<>{24492} and length({24493})>0','Cisco UCS Manager: {#UNIT_LOCATION}: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Cisco UCS Manager: {#UNIT_LOCATION}: Device has been replaced (new serial number received)','27253665837647bb9c3be58f7d0881ae',''), ('19257','{24494}={$HEALTH.STATUS.CRIT:"computeFailed"} or {24494}={$HEALTH.STATUS.CRIT:"configFailure"} or {24494}={$HEALTH.STATUS.CRIT:"unconfigFailure"} or {24494}={$HEALTH.STATUS.CRIT:"inoperable"}','Cisco UCS Manager: {#UNIT_LOCATION}: System status is in critical state','','0','4','Please check the device for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7f7c337f4f9f44a3a176acce5bf27f29',''), ('19258','{24495}={$HEALTH.STATUS.WARN:"testFailed"} or {24495}={$HEALTH.STATUS.WARN:"thermalProblem"} or {24495}={$HEALTH.STATUS.WARN:"powerProblem"} or {24495}={$HEALTH.STATUS.WARN:"voltageProblem"} or {24495}={$HEALTH.STATUS.WARN:"diagnosticsFailed"}','Cisco UCS Manager: {#UNIT_LOCATION}: System status is in warning state','','0','2','Please check the device for warnings',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','15ee6a98f2af4da4bcaa95821ffff524',''), ('19259','{24496}<>{$VDISK.STATUS.OK:"equipped"}','Cisco UCS Manager: {#VDISK_LOCATION}: Virtual disk is not in OK state','','0','2','Please check virtual disk for warnings or errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','63232b4e1f6b411a93ff8abad1ff3200',''), ('19464','{24788}<>{24789} and length({24790})>0','HPE ProLiant BL460: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','HPE ProLiant BL460: Device has been replaced (new serial number received)','1bc442ba67dc42d298d98feb845d8730',''), ('19465','{24791}<>{24792} and length({24793})>0','HPE ProLiant BL460: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','HPE ProLiant BL460: System name has changed (new name: {ITEM.VALUE})','87570f607b174ebe887920034a1be1ef',''), ('19466','{24794}={$HEALTH.STATUS.CRIT}','HPE ProLiant BL460: System status is in critical state','','0','4','Please check the device for errors.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4d7ac12aec954df2b369ddd0536d3bd5',''), ('19467','{24795}={$HEALTH.STATUS.WARN}','HPE ProLiant BL460: System status is in warning state','','0','2','Please check the device for warnings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9ffbca9c012541b9a36956b4ae06d339',''), ('19468','({32396}>0 and {32396}<10m) or ({32396}=0 and {32397}<10m)','HPE ProLiant BL460: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','HPE ProLiant BL460: {HOST.NAME} has been restarted (uptime < 10m)','9159ee66dbe4498cba29daca24ddcb5f',''), ('19469','{24797}=0','HPE ProLiant BL460: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','236a5d37e58a415aa81db6e59eb826dc',''), ('19470','{24798}={$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:"failed"} or {24798}={$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:"capacitorFailed"}','HPE ProLiant BL460: #{#CACHE_CNTRL_INDEX}: Disk array cache controller battery is in critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','42c0ff05c06f47089322dface6c54778',''), ('19471','{24799}={$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN:"degraded"}','HPE ProLiant BL460: #{#CACHE_CNTRL_INDEX}: Disk array cache controller battery is in warning state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','28f83720bdd84ab3acb43cc8caac7507',''), ('19472','{24800}={$DISK.ARRAY.CACHE.STATUS.CRIT:"cacheModCriticalFailure"}','HPE ProLiant BL460: #{#CACHE_CNTRL_INDEX}: Disk array cache controller is in critical state!','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d9fc0ecef7844e7190d89f4747f82661',''), ('19473','{24801}={$DISK.ARRAY.CACHE.STATUS.WARN:"cacheModDegradedFailsafeSpeed"} or {24801}={$DISK.ARRAY.CACHE.STATUS.WARN:"cacheReadCacheNotMapped"} or {24801}={$DISK.ARRAY.CACHE.STATUS.WARN:"cacheModFlashMemNotAttached"}','HPE ProLiant BL460: #{#CACHE_CNTRL_INDEX}: Disk array cache controller is in warning state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9b60ae9eec734644bcff9cbac9407b08',''), ('19474','{24802}<>{$DISK.ARRAY.CACHE.STATUS.OK:"enabled"} and {24802}<>{$DISK.ARRAY.CACHE.STATUS.WARN:"invalid"}','HPE ProLiant BL460: #{#CACHE_CNTRL_INDEX}: Disk array cache controller is not in optimal state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','61e28304c16f4855abfbcef8249a2fa6',''), ('19475','{24803}={$DISK.ARRAY.STATUS.CRIT}','HPE ProLiant BL460: {#CNTLR_LOCATION}: Disk array controller is in critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d0e8bcc0510c4e86bfcd3e9d601f83e0',''), ('19476','{24804}={$DISK.ARRAY.STATUS.WARN}','HPE ProLiant BL460: {#CNTLR_LOCATION}: Disk array controller is in warning state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a38ea92527b44599b690c068a62481ed',''), ('19477','{24805}={$FAN.STATUS.CRIT}','HPE ProLiant BL460: Fan {#SNMPINDEX}: Fan is in critical state','','0','3','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','ab33e6666fd14aac8f703c72fd9b760e',''), ('19478','{24806}={$FAN.STATUS.WARN}','HPE ProLiant BL460: Fan {#SNMPINDEX}: Fan is in warning state','','0','2','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a9098b4dcbe04b3a82f0353f115345d7',''), ('19479','{24807}=3','HPE ProLiant BL460: {#ADAPTER_NAME} port {#ADAPTER_INDEX}: Adapter has failed','','0','4','Please check the physical adapter.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','477f8237ed7c4d99af92e94f7563e01c',''), ('19480','{24808}=4','HPE ProLiant BL460: {#ADAPTER_NAME} port {#ADAPTER_INDEX}: Adapter has lost link','','0','3','Please check the cable connections to this adapter.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','5962382262854335bc42ae47203e44a7',''), ('19481','{24809}<>{24810} and length({24811})>0','HPE ProLiant BL460: {#DISK_LOCATION}: Disk has been replaced','','0','1','Disk serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','HPE ProLiant BL460: {#DISK_LOCATION}: Disk has been replaced (new serial number received)','d3dbef930bca4808ae3bf32ba84a987a',''), ('19482','{24812}={$DISK.SMART.STATUS.FAIL:"replaceDrive"} or {24812}={$DISK.SMART.STATUS.FAIL:"replaceDriveSSDWearOut"}','HPE ProLiant BL460: {#DISK_LOCATION}: Physical disk S.M.A.R.T. failed','','0','4','Disk probably requires replacement.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6fb9a3a867f74290974b106755763369',''), ('19483','{24813}={$DISK.STATUS.FAIL}','HPE ProLiant BL460: {#DISK_LOCATION}: Physical disk failed','','0','4','Please check physical disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','21224423e69148a797e5ae4fcdda8ed5',''), ('19484','{24814}={$DISK.STATUS.WARN}','HPE ProLiant BL460: {#DISK_LOCATION}: Physical disk is in warning state','','0','2','Please check physical disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','ff246b7598f24ab88aa6e7119750e57b',''), ('19485','{24815}={$PSU.STATUS.CRIT}','HPE ProLiant BL460: Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply is in critical state','','0','3','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c0976740671a4ee1b524b2be84eac05f',''), ('19486','{24816}={$PSU.STATUS.WARN}','HPE ProLiant BL460: Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply is in warning state','','0','2','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4245fe8df0ec42fb8698cd54810357d0',''), ('19487','{24817} = 1','HPE ProLiant BL460: Ambient: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','12ca340ef2cc4d639940375e84fc1384',''), ('19488','{24818} = 4','HPE ProLiant BL460: Ambient: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','83775e86b0b6450399f0739bcd7aeb42',''), ('19489','{24819} = 3','HPE ProLiant BL460: Ambient: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','1e61e8b2ba4346f2962a3498a147f65e',''), ('19490','{24820} = 1','HPE ProLiant BL460: CPU-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','b3b17ce8480f4ff5bbc4cba02e53190d',''), ('19491','{24821} = 4','HPE ProLiant BL460: CPU-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','1d2cc0b823134b9b901a0292e731f882',''), ('19492','{24822} = 3','HPE ProLiant BL460: CPU-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','c9edcad3712d4915a5a3700916621525',''), ('19493','{24823} = 1','HPE ProLiant BL460: {#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','1978105618f44f439f40b7e6b7dbb5dc',''), ('19494','{24824} = 4','HPE ProLiant BL460: {#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','feee1c3e792044ecbb07ffed47b2fddd',''), ('19495','{24825} = 3','HPE ProLiant BL460: {#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','250291ba7b404dd287b14034145d7ee0',''), ('19496','{24826} = 1','HPE ProLiant BL460: I/O-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','2d06da621e5946ea88bf158cabd4fcbd',''), ('19497','{24827} = 4','HPE ProLiant BL460: I/O-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','5ca16e1ea7d84aa7bed31ba05f7df50e',''), ('19498','{24828} = 3','HPE ProLiant BL460: I/O-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','8a2468bf1cd14065af733b0d045c6031',''), ('19499','{24829} = 1','HPE ProLiant BL460: Memory-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','997f65c5ee1d473dbe22a8517091cf3e',''), ('19500','{24830} = 4','HPE ProLiant BL460: Memory-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','8c3b5591160e4797ae1b49f9f14439ff',''), ('19501','{24831} = 3','HPE ProLiant BL460: Memory-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','8665b434ba594073bc55f44b668dcee0',''), ('19502','{24832} = 1','HPE ProLiant BL460: PSU-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','a292c5aaa1b3428aa4b011854d9c5e1d',''), ('19503','{24833} = 4','HPE ProLiant BL460: PSU-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','f557d93b186b42b4931e23640e54648f',''), ('19504','{24834} = 3','HPE ProLiant BL460: PSU-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','e3cac6176199401181fbbeacf4838bad',''), ('19505','{24835} = 1','HPE ProLiant BL460: System-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','1bad1b13dcdf4689b9a784e44726196b',''), ('19506','{24836} = 4','HPE ProLiant BL460: System-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','42fff974036d4fb6b9181adf1b3efa09',''), ('19507','{24837} = 3','HPE ProLiant BL460: System-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','d184f774ab614a0b9f1f7ebc82cd1356',''), ('19508','{24838}={$VDISK.STATUS.CRIT}','HPE ProLiant BL460: Disk {#SNMPINDEX}({#DISK_NAME}): Virtual disk failed','','0','4','Please check virtual disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e11c5781a34642c49ad15cdcd71dacc3',''), ('19509','{24839}<>{$VDISK.STATUS.OK}','HPE ProLiant BL460: Disk {#SNMPINDEX}({#DISK_NAME}): Virtual disk is not in OK state','','0','2','Please check virtual disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','10f0bdba64184a9389a46b9bab18719a',''), ('19510','{24840}<>{24841} and length({24842})>0','HPE ProLiant BL920: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','HPE ProLiant BL920: Device has been replaced (new serial number received)','9eb77df5f95149e49d63a7191e68756c',''), ('19511','{24843}<>{24844} and length({24845})>0','HPE ProLiant BL920: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','HPE ProLiant BL920: System name has changed (new name: {ITEM.VALUE})','c0eed9d2eccc4ae99128a318de92df8d',''), ('19512','{24846}={$HEALTH.STATUS.CRIT}','HPE ProLiant BL920: System status is in critical state','','0','4','Please check the device for errors.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','187f7a3872a2481f962f16c422911827',''), ('19513','{24847}={$HEALTH.STATUS.WARN}','HPE ProLiant BL920: System status is in warning state','','0','2','Please check the device for warnings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','51c633cbed0d4684b2e0619e2f0ab64d',''), ('19514','({32398}>0 and {32398}<10m) or ({32398}=0 and {32399}<10m)','HPE ProLiant BL920: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','HPE ProLiant BL920: {HOST.NAME} has been restarted (uptime < 10m)','97f107c88b6048f1b74412e8dfedc857',''), ('19515','{24849}=0','HPE ProLiant BL920: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','35cce5a461c04163a0575d7f831ea3d9',''), ('19516','{24850}={$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:"failed"} or {24850}={$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:"capacitorFailed"}','HPE ProLiant BL920: #{#CACHE_CNTRL_INDEX}: Disk array cache controller battery is in critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','507e925180034f2d97d09f9fd5c9e311',''), ('19517','{24851}={$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN:"degraded"}','HPE ProLiant BL920: #{#CACHE_CNTRL_INDEX}: Disk array cache controller battery is in warning state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','20625bb4b0b74d98818685991ac5df66',''), ('19518','{24852}={$DISK.ARRAY.CACHE.STATUS.CRIT:"cacheModCriticalFailure"}','HPE ProLiant BL920: #{#CACHE_CNTRL_INDEX}: Disk array cache controller is in critical state!','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a470d994b661401882162dc2267eaa3d',''), ('19519','{24853}={$DISK.ARRAY.CACHE.STATUS.WARN:"cacheModDegradedFailsafeSpeed"} or {24853}={$DISK.ARRAY.CACHE.STATUS.WARN:"cacheReadCacheNotMapped"} or {24853}={$DISK.ARRAY.CACHE.STATUS.WARN:"cacheModFlashMemNotAttached"}','HPE ProLiant BL920: #{#CACHE_CNTRL_INDEX}: Disk array cache controller is in warning state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','5d0fd4a9b8bc49aaaeb213b310b85606',''), ('19520','{24854}<>{$DISK.ARRAY.CACHE.STATUS.OK:"enabled"} and {24854}<>{$DISK.ARRAY.CACHE.STATUS.WARN:"invalid"}','HPE ProLiant BL920: #{#CACHE_CNTRL_INDEX}: Disk array cache controller is not in optimal state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','1efe26e2e6a8404b86143b3fea812f23',''), ('19521','{24855}={$DISK.ARRAY.STATUS.CRIT}','HPE ProLiant BL920: {#CNTLR_LOCATION}: Disk array controller is in critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a8c87ea0b6ba42e7ba6f97a2441237bb',''), ('19522','{24856}={$DISK.ARRAY.STATUS.WARN}','HPE ProLiant BL920: {#CNTLR_LOCATION}: Disk array controller is in warning state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','1cb40d36fda945df940c39f0ea1adf22',''), ('19523','{24857}={$FAN.STATUS.CRIT}','HPE ProLiant BL920: Fan {#SNMPINDEX}: Fan is in critical state','','0','3','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c2a1f0726e6e46658bf236c7daea432c',''), ('19524','{24858}={$FAN.STATUS.WARN}','HPE ProLiant BL920: Fan {#SNMPINDEX}: Fan is in warning state','','0','2','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','f8e66a8a7df84962be215388d6fd567b',''), ('19525','{24859}=3','HPE ProLiant BL920: {#ADAPTER_NAME} port {#ADAPTER_INDEX}: Adapter has failed','','0','4','Please check the physical adapter.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','880d8c11080043f4a1b8e31823bee081',''), ('19526','{24860}=4','HPE ProLiant BL920: {#ADAPTER_NAME} port {#ADAPTER_INDEX}: Adapter has lost link','','0','3','Please check the cable connections to this adapter.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7894c073515c42abac3a3704acaf124c',''), ('19527','{24861}<>{24862} and length({24863})>0','HPE ProLiant BL920: {#DISK_LOCATION}: Disk has been replaced','','0','1','Disk serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','HPE ProLiant BL920: {#DISK_LOCATION}: Disk has been replaced (new serial number received)','97b42a2ce49f4a1786cfa8db1f6477ac',''), ('19528','{24864}={$DISK.SMART.STATUS.FAIL:"replaceDrive"} or {24864}={$DISK.SMART.STATUS.FAIL:"replaceDriveSSDWearOut"}','HPE ProLiant BL920: {#DISK_LOCATION}: Physical disk S.M.A.R.T. failed','','0','4','Disk probably requires replacement.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','fdd888b4e72344eda1845fdfe7d261e4',''), ('19529','{24865}={$DISK.STATUS.FAIL}','HPE ProLiant BL920: {#DISK_LOCATION}: Physical disk failed','','0','4','Please check physical disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','1e8640dc080c4d19a94c6fcda2451cfb',''), ('19530','{24866}={$DISK.STATUS.WARN}','HPE ProLiant BL920: {#DISK_LOCATION}: Physical disk is in warning state','','0','2','Please check physical disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','74eef1a7f26145d7963d8801c8a625e7',''), ('19531','{24867}={$PSU.STATUS.CRIT}','HPE ProLiant BL920: Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply is in critical state','','0','3','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a256fdd66c0043dfb337163bcf0c5ebe',''), ('19532','{24868}={$PSU.STATUS.WARN}','HPE ProLiant BL920: Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply is in warning state','','0','2','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','18e8aca665b34fb5a2af5d94cdd40f84',''), ('19533','{24869} = 1','HPE ProLiant BL920: Ambient: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','74b07fcf8ef34e20a142ae11f6dbfeb4',''), ('19534','{24870} = 4','HPE ProLiant BL920: Ambient: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','0df275f3b0dd4c6d93936b39a88052fa',''), ('19535','{24871} = 3','HPE ProLiant BL920: Ambient: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','1052d51569c543619e38b48318baaa29',''), ('19536','{24872} = 1','HPE ProLiant BL920: CPU-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','602bbb3e632540d4a46830c2c67d3b1c',''), ('19537','{24873} = 4','HPE ProLiant BL920: CPU-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','25ea3db9def64b21b08f25f019c15fbd',''), ('19538','{24874} = 3','HPE ProLiant BL920: CPU-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','f5ecaae4989f4e249138916b3657210d',''), ('19539','{24875} = 1','HPE ProLiant BL920: {#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','6ea76d08b1e64364b15a9daa95c72d7c',''), ('19540','{24876} = 4','HPE ProLiant BL920: {#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','6287b204066e47d68871bc0783840b4c',''), ('19541','{24877} = 3','HPE ProLiant BL920: {#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','8010259635ef4d92af61e935c9f62ff7',''), ('19542','{24878} = 1','HPE ProLiant BL920: I/O-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','5f7818d02b764218a481e59cbcfe5fd7',''), ('19543','{24879} = 4','HPE ProLiant BL920: I/O-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','fffdfe1c6d254f3fb096ab0561705223',''), ('19544','{24880} = 3','HPE ProLiant BL920: I/O-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','a00a767a3b8349c2846139a6c76f826d',''), ('19545','{24881} = 1','HPE ProLiant BL920: Memory-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','78d936059d744eae8be8150dab2a6e5e',''), ('19546','{24882} = 4','HPE ProLiant BL920: Memory-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','a6db4978fa834a7facd46a76f45f92a3',''), ('19547','{24883} = 3','HPE ProLiant BL920: Memory-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','ee7cbf1997ca476283e3301856d22a5a',''), ('19548','{24884} = 1','HPE ProLiant BL920: PSU-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','809aea1302064232a321c12f2256414f',''), ('19549','{24885} = 4','HPE ProLiant BL920: PSU-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','b70bb5f4fe4b4d3bb6fa7027200f2b25',''), ('19550','{24886} = 3','HPE ProLiant BL920: PSU-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','a4e3939f59a64dbfab377f68a62fa26b',''), ('19551','{24887} = 1','HPE ProLiant BL920: System-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','6848521afcb54d72b136ee53176bc01d',''), ('19552','{24888} = 4','HPE ProLiant BL920: System-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','6b15c19600f9433093aa8d7d624fb623',''), ('19553','{24889} = 3','HPE ProLiant BL920: System-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','407c07a6d4f94ca1a8cf1f9db9d685db',''), ('19554','{24890}={$VDISK.STATUS.CRIT}','HPE ProLiant BL920: Disk {#SNMPINDEX}({#DISK_NAME}): Virtual disk failed','','0','4','Please check virtual disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7dadede9eb5640c5920b95dafc7191bb',''), ('19555','{24891}<>{$VDISK.STATUS.OK}','HPE ProLiant BL920: Disk {#SNMPINDEX}({#DISK_NAME}): Virtual disk is not in OK state','','0','2','Please check virtual disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','ffdd42c48a7b493a941887b46be64fb0',''), ('19556','{24892}<>{24893} and length({24894})>0','HPE ProLiant DL360: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','HPE ProLiant DL360: Device has been replaced (new serial number received)','1316d7def24a4a80adfdf4bc8ac5a12c',''), ('19557','{24895}<>{24896} and length({24897})>0','HPE ProLiant DL360: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','HPE ProLiant DL360: System name has changed (new name: {ITEM.VALUE})','6431a1a0b8494b50bcbd18e283e7158e',''), ('19558','{24898}={$HEALTH.STATUS.CRIT}','HPE ProLiant DL360: System status is in critical state','','0','4','Please check the device for errors.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6cc840d5bccc4f1abfd7df6a161154ad',''), ('19559','{24899}={$HEALTH.STATUS.WARN}','HPE ProLiant DL360: System status is in warning state','','0','2','Please check the device for warnings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','eab6760dda124629a9edcb2218ad3ad3',''), ('19560','({32400}>0 and {32400}<10m) or ({32400}=0 and {32401}<10m)','HPE ProLiant DL360: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','HPE ProLiant DL360: {HOST.NAME} has been restarted (uptime < 10m)','383e0e2d556d4354ae50f68c94333ded',''), ('19561','{24901}=0','HPE ProLiant DL360: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','0b91663d4b684e46aaccdf480d1622f0',''), ('19562','{24902}={$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:"failed"} or {24902}={$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:"capacitorFailed"}','HPE ProLiant DL360: #{#CACHE_CNTRL_INDEX}: Disk array cache controller battery is in critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a6cd582e11804f0f939e841287305edc',''), ('19563','{24903}={$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN:"degraded"}','HPE ProLiant DL360: #{#CACHE_CNTRL_INDEX}: Disk array cache controller battery is in warning state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','bb1f9560a6d74bd9aaca3ffa04aec311',''), ('19564','{24904}={$DISK.ARRAY.CACHE.STATUS.CRIT:"cacheModCriticalFailure"}','HPE ProLiant DL360: #{#CACHE_CNTRL_INDEX}: Disk array cache controller is in critical state!','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6a3002495b7540a981c9909c540ede36',''), ('19565','{24905}={$DISK.ARRAY.CACHE.STATUS.WARN:"cacheModDegradedFailsafeSpeed"} or {24905}={$DISK.ARRAY.CACHE.STATUS.WARN:"cacheReadCacheNotMapped"} or {24905}={$DISK.ARRAY.CACHE.STATUS.WARN:"cacheModFlashMemNotAttached"}','HPE ProLiant DL360: #{#CACHE_CNTRL_INDEX}: Disk array cache controller is in warning state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','2ee4cf4ddd9944c985ac522a04371a13',''), ('19566','{24906}<>{$DISK.ARRAY.CACHE.STATUS.OK:"enabled"} and {24906}<>{$DISK.ARRAY.CACHE.STATUS.WARN:"invalid"}','HPE ProLiant DL360: #{#CACHE_CNTRL_INDEX}: Disk array cache controller is not in optimal state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','2cbed500a4c34f138623c31a86e227c4',''), ('19567','{24907}={$DISK.ARRAY.STATUS.CRIT}','HPE ProLiant DL360: {#CNTLR_LOCATION}: Disk array controller is in critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','1c518fee6dbc49228768b3dd61a98057',''), ('19568','{24908}={$DISK.ARRAY.STATUS.WARN}','HPE ProLiant DL360: {#CNTLR_LOCATION}: Disk array controller is in warning state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','2dd65457ec524248ac5b1c1cfd9f3821',''), ('19569','{24909}={$FAN.STATUS.CRIT}','HPE ProLiant DL360: Fan {#SNMPINDEX}: Fan is in critical state','','0','3','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','90cc1704d8c340309e23deb78620c861',''), ('19570','{24910}={$FAN.STATUS.WARN}','HPE ProLiant DL360: Fan {#SNMPINDEX}: Fan is in warning state','','0','2','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9b7692f49b604f0791934b58294881cd',''), ('19571','{24911}=3','HPE ProLiant DL360: {#ADAPTER_NAME} port {#ADAPTER_INDEX}: Adapter has failed','','0','4','Please check the physical adapter.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','aaf66f1530f74d59919a1c505a8ae147',''), ('19572','{24912}=4','HPE ProLiant DL360: {#ADAPTER_NAME} port {#ADAPTER_INDEX}: Adapter has lost link','','0','3','Please check the cable connections to this adapter.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','f943117ce7004390854a21c2e1cdb514',''), ('19573','{24913}<>{24914} and length({24915})>0','HPE ProLiant DL360: {#DISK_LOCATION}: Disk has been replaced','','0','1','Disk serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','HPE ProLiant DL360: {#DISK_LOCATION}: Disk has been replaced (new serial number received)','ad74fc6568a0487e834b9e9da4127bb7',''), ('19574','{24916}={$DISK.SMART.STATUS.FAIL:"replaceDrive"} or {24916}={$DISK.SMART.STATUS.FAIL:"replaceDriveSSDWearOut"}','HPE ProLiant DL360: {#DISK_LOCATION}: Physical disk S.M.A.R.T. failed','','0','4','Disk probably requires replacement.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d0a86e4ee6ef46e8ade36dae70f69ad6',''), ('19575','{24917}={$DISK.STATUS.FAIL}','HPE ProLiant DL360: {#DISK_LOCATION}: Physical disk failed','','0','4','Please check physical disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','3eb8efcf6caa46ff892bd1d693996a4f',''), ('19576','{24918}={$DISK.STATUS.WARN}','HPE ProLiant DL360: {#DISK_LOCATION}: Physical disk is in warning state','','0','2','Please check physical disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','1559184494d849cda3946a2b05b81cf3',''), ('19577','{24919}={$PSU.STATUS.CRIT}','HPE ProLiant DL360: Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply is in critical state','','0','3','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e01e8d01d65a4ce7a2990ee30ab02d84',''), ('19578','{24920}={$PSU.STATUS.WARN}','HPE ProLiant DL360: Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply is in warning state','','0','2','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','cbd3d4d3d3e0427f89a0972fbef56f63',''), ('19579','{24921} = 1','HPE ProLiant DL360: Ambient: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','7a56b1e7bc7a4464abdf3004a903020e',''), ('19580','{24922} = 4','HPE ProLiant DL360: Ambient: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','d0e3ccfb13a9489f877e07cccbecf89f',''), ('19581','{24923} = 3','HPE ProLiant DL360: Ambient: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','4f40a124d4c949a89e6c31796faf37ae',''), ('19582','{24924} = 1','HPE ProLiant DL360: CPU-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','a27ee21d95ff46f78807eaf31cdc0db4',''), ('19583','{24925} = 4','HPE ProLiant DL360: CPU-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','97d97920b65c418186af30fdc8fea55e',''), ('19584','{24926} = 3','HPE ProLiant DL360: CPU-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','f06e48cef80d4e13b8e1d1ba89b60d9d',''), ('19585','{24927} = 1','HPE ProLiant DL360: {#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','fbbfe6536c1b4852916e93c6a6d8efd9',''), ('19586','{24928} = 4','HPE ProLiant DL360: {#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','ef76129efb9a4744809682ff041cca21',''), ('19587','{24929} = 3','HPE ProLiant DL360: {#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','1a2dd7941efa4792b0e933c26e4e9802',''), ('19588','{24930} = 1','HPE ProLiant DL360: I/O-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','1918208a434145668d0a196ad53bdefd',''), ('19589','{24931} = 4','HPE ProLiant DL360: I/O-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','e6d9e708b1704c229e010cb0ae3f53c1',''), ('19590','{24932} = 3','HPE ProLiant DL360: I/O-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','325bf55e8d374d97ab240873ea177636',''), ('19591','{24933} = 1','HPE ProLiant DL360: Memory-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','3d335c0712dd40eaa085714cbac51cca',''), ('19592','{24934} = 4','HPE ProLiant DL360: Memory-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','e4b619a640d549099ead16e2c5085746',''), ('19593','{24935} = 3','HPE ProLiant DL360: Memory-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','7be4e1200cdf418497158e59979edf86',''), ('19594','{24936} = 1','HPE ProLiant DL360: PSU-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','fc3a93d232b144b9b2f2d8b95538b941',''), ('19595','{24937} = 4','HPE ProLiant DL360: PSU-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','2f95466ff7ee4cf0bb45dfc800d680d3',''), ('19596','{24938} = 3','HPE ProLiant DL360: PSU-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','147e9de1a91d4473be384c5951812d9f',''), ('19597','{24939} = 1','HPE ProLiant DL360: System-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','31a1d664064644cba700ef61e4602523',''), ('19598','{24940} = 4','HPE ProLiant DL360: System-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','c51ac08efa464b91a44e01387a9c3a6d',''), ('19599','{24941} = 3','HPE ProLiant DL360: System-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','cca796d265034389afd8236ec26a1990',''), ('19600','{24942}={$VDISK.STATUS.CRIT}','HPE ProLiant DL360: Disk {#SNMPINDEX}({#DISK_NAME}): Virtual disk failed','','0','4','Please check virtual disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c49fb63092eb4764aae145d93f9daa33',''), ('19601','{24943}<>{$VDISK.STATUS.OK}','HPE ProLiant DL360: Disk {#SNMPINDEX}({#DISK_NAME}): Virtual disk is not in OK state','','0','2','Please check virtual disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','698ef7d90e95463c8ea7a14c5fa72be9',''), ('19602','{24944}<>{24945} and length({24946})>0','HPE ProLiant DL380: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','HPE ProLiant DL380: Device has been replaced (new serial number received)','bd81b8c420904f0bafa4fbf90d195967',''), ('19603','{24947}<>{24948} and length({24949})>0','HPE ProLiant DL380: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','HPE ProLiant DL380: System name has changed (new name: {ITEM.VALUE})','168b1742abc340558631a577a1a3c4d9',''), ('19604','{24950}={$HEALTH.STATUS.CRIT}','HPE ProLiant DL380: System status is in critical state','','0','4','Please check the device for errors.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e9bf032edb2e45f0b64cb904bf8d8403',''), ('19605','{24951}={$HEALTH.STATUS.WARN}','HPE ProLiant DL380: System status is in warning state','','0','2','Please check the device for warnings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','537c411a3d454a8b9dc64378e0e9a6cd',''), ('19606','({32402}>0 and {32402}<10m) or ({32402}=0 and {32403}<10m)','HPE ProLiant DL380: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','HPE ProLiant DL380: {HOST.NAME} has been restarted (uptime < 10m)','9612f37005e5420582d499d7cb84a24e',''), ('19607','{24953}=0','HPE ProLiant DL380: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','97c3665497ae46eb91d81c14c5f4ac06',''), ('19608','{24954}={$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:"failed"} or {24954}={$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:"capacitorFailed"}','HPE ProLiant DL380: #{#CACHE_CNTRL_INDEX}: Disk array cache controller battery is in critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4eb29401f4c7400ca87bb2449eb0f8e2',''), ('19609','{24955}={$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN:"degraded"}','HPE ProLiant DL380: #{#CACHE_CNTRL_INDEX}: Disk array cache controller battery is in warning state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','0378b7339a3d482ea92f523f3d84c498',''), ('19610','{24956}={$DISK.ARRAY.CACHE.STATUS.CRIT:"cacheModCriticalFailure"}','HPE ProLiant DL380: #{#CACHE_CNTRL_INDEX}: Disk array cache controller is in critical state!','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','26955f1b216a493c9faa95b95359aa79',''), ('19611','{24957}={$DISK.ARRAY.CACHE.STATUS.WARN:"cacheModDegradedFailsafeSpeed"} or {24957}={$DISK.ARRAY.CACHE.STATUS.WARN:"cacheReadCacheNotMapped"} or {24957}={$DISK.ARRAY.CACHE.STATUS.WARN:"cacheModFlashMemNotAttached"}','HPE ProLiant DL380: #{#CACHE_CNTRL_INDEX}: Disk array cache controller is in warning state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','fc24efc3b41f410e9b0e806692f3dcf6',''), ('19612','{24958}<>{$DISK.ARRAY.CACHE.STATUS.OK:"enabled"} and {24958}<>{$DISK.ARRAY.CACHE.STATUS.WARN:"invalid"}','HPE ProLiant DL380: #{#CACHE_CNTRL_INDEX}: Disk array cache controller is not in optimal state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d5a1edb8f9ea46f08344a07a84bd8865',''), ('19613','{24959}={$DISK.ARRAY.STATUS.CRIT}','HPE ProLiant DL380: {#CNTLR_LOCATION}: Disk array controller is in critical state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','0e57c741a6d248b69cdc70b75fc63a0f',''), ('19614','{24960}={$DISK.ARRAY.STATUS.WARN}','HPE ProLiant DL380: {#CNTLR_LOCATION}: Disk array controller is in warning state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4a66354e25c949d4aaaad02114f09e44',''), ('19615','{24961}={$FAN.STATUS.CRIT}','HPE ProLiant DL380: Fan {#SNMPINDEX}: Fan is in critical state','','0','3','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','f246a5184ea94ae3a793efec27998d5f',''), ('19616','{24962}={$FAN.STATUS.WARN}','HPE ProLiant DL380: Fan {#SNMPINDEX}: Fan is in warning state','','0','2','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','ba7f63e795764d77aae0b7ce62a19514',''), ('19617','{24963}=3','HPE ProLiant DL380: {#ADAPTER_NAME} port {#ADAPTER_INDEX}: Adapter has failed','','0','4','Please check the physical adapter.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','917ab8f90c3e43b887eb7fd851cf3b25',''), ('19618','{24964}=4','HPE ProLiant DL380: {#ADAPTER_NAME} port {#ADAPTER_INDEX}: Adapter has lost link','','0','3','Please check the cable connections to this adapter.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','51bb602b67624c5d932109a5e04068d3',''), ('19619','{24965}<>{24966} and length({24967})>0','HPE ProLiant DL380: {#DISK_LOCATION}: Disk has been replaced','','0','1','Disk serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','HPE ProLiant DL380: {#DISK_LOCATION}: Disk has been replaced (new serial number received)','2b173fa3eec941e3b3d73c732740e210',''), ('19620','{24968}={$DISK.SMART.STATUS.FAIL:"replaceDrive"} or {24968}={$DISK.SMART.STATUS.FAIL:"replaceDriveSSDWearOut"}','HPE ProLiant DL380: {#DISK_LOCATION}: Physical disk S.M.A.R.T. failed','','0','4','Disk probably requires replacement.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','531875c8a5f54ca8ad2dabfa8a47b36b',''), ('19621','{24969}={$DISK.STATUS.FAIL}','HPE ProLiant DL380: {#DISK_LOCATION}: Physical disk failed','','0','4','Please check physical disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','12eac58ddff14f7dbbdba48eca464a5f',''), ('19622','{24970}={$DISK.STATUS.WARN}','HPE ProLiant DL380: {#DISK_LOCATION}: Physical disk is in warning state','','0','2','Please check physical disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','977a4d4fb6604877a0f02bb2455691c4',''), ('19623','{24971}={$PSU.STATUS.CRIT}','HPE ProLiant DL380: Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply is in critical state','','0','3','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b42e415d5eb941989daaed3d1ac2e762',''), ('19624','{24972}={$PSU.STATUS.WARN}','HPE ProLiant DL380: Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply is in warning state','','0','2','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d5b8b12a72934bcfb7ad6675a68a5297',''), ('19625','{24973} = 1','HPE ProLiant DL380: Ambient: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','1af0ddbc9ffd43b2b6800d634d8186bb',''), ('19626','{24974} = 4','HPE ProLiant DL380: Ambient: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','c49e51ac10c941798213d0f086e0631f',''), ('19627','{24975} = 3','HPE ProLiant DL380: Ambient: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','b1cfbc1702f54670b3f486da26c4887b',''), ('19628','{24976} = 1','HPE ProLiant DL380: CPU-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','039ab34804f446e580b779d1ab25ed4f',''), ('19629','{24977} = 4','HPE ProLiant DL380: CPU-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','2cf8b917076440aa8209938cec69b905',''), ('19630','{24978} = 3','HPE ProLiant DL380: CPU-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','cf69b02334e541b7a912a14c182dd56a',''), ('19631','{24979} = 1','HPE ProLiant DL380: {#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','6d7eb6bd348b43a2b584ceb1694c8bce',''), ('19632','{24980} = 4','HPE ProLiant DL380: {#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','43911269576b435db928e83901a16c5a',''), ('19633','{24981} = 3','HPE ProLiant DL380: {#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','b26842b776c545449354ccafb809d115',''), ('19634','{24982} = 1','HPE ProLiant DL380: I/O-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','c8f2ef7311804357bff65d2d5c7f5d90',''), ('19635','{24983} = 4','HPE ProLiant DL380: I/O-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','dda9f8bf4a094b69bb30affb26e23dd3',''), ('19636','{24984} = 3','HPE ProLiant DL380: I/O-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','a0220dea091d4aca8d68a21a3d976496',''), ('19637','{24985} = 1','HPE ProLiant DL380: Memory-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','eca9c54385084934b88f4dc9d914b2e2',''), ('19638','{24986} = 4','HPE ProLiant DL380: Memory-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','70b139e0c8c644918c7f01cd09604078',''), ('19639','{24987} = 3','HPE ProLiant DL380: Memory-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','89aab6bad94e4d188475d6e36084593e',''), ('19640','{24988} = 1','HPE ProLiant DL380: PSU-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','e792b530014d45b6ac7fc819db776c37',''), ('19641','{24989} = 4','HPE ProLiant DL380: PSU-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','803317e9eaf04b519e63b7d1b9bfd610',''), ('19642','{24990} = 3','HPE ProLiant DL380: PSU-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','98616a3bae174922a0108b7c90339f08',''), ('19643','{24991} = 1','HPE ProLiant DL380: System-{#SNMPINDEX}: Temperature could not be determined','','0','1','Temperature could not be determined.',NULL,'0','2','0','','0','','1','','0','','2a0503b359904c71b355cb9e3da1b8fa',''), ('19644','{24992} = 4','HPE ProLiant DL380: System-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','','0','4','The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.',NULL,'0','2','0','','0','','0','','0','','09287730b82a47c4b365c09047d0b8e2',''), ('19645','{24993} = 3','HPE ProLiant DL380: System-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','','0','2','If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.',NULL,'0','2','0','','0','','0','','0','','5c7097cb91184a619fee33bd4faa296b',''), ('19646','{24994}={$VDISK.STATUS.CRIT}','HPE ProLiant DL380: Disk {#SNMPINDEX}({#DISK_NAME}): Virtual disk failed','','0','4','Please check virtual disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a59f9e473b7a4afd900edce47b11443d',''), ('19647','{24995}<>{$VDISK.STATUS.OK}','HPE ProLiant DL380: Disk {#SNMPINDEX}({#DISK_NAME}): Virtual disk is not in OK state','','0','2','Please check virtual disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','776bff7fb02e4948be7d81347c0c8624',''), ('19648','{25008}>={$AMI.TRUNK_ACTIVE_CHANNELS_TOTAL.MAX.WARN:"IAX"}','Asterisk: Total number of active channels of IAX trunks is too high','','0','2','The IAX trunks may not be able to process new calls.',NULL,'0','0','0','','0','','0','','0','Asterisk: Total number of active channels of IAX trunks is too high (over {$AMI.TRUNK_ACTIVE_CHANNELS_TOTAL.MAX.WARN:"IAX"} for 10m)','0ae0a5b6123a42dd9722219e5e5839df',''), ('19649','{25009}>={$AMI.TRUNK_ACTIVE_CHANNELS_TOTAL.MAX.WARN:"PJSIP"}','Asterisk: Total number of active channels of PJSIP trunks is too high','','0','2','The PJSIP trunks may not be able to process new calls.',NULL,'0','0','0','','0','','0','','0','Asterisk: Total number of active channels of PJSIP trunks is too high (over {$AMI.TRUNK_ACTIVE_CHANNELS_TOTAL.MAX.WARN:"PJSIP"} for 10m)','9b158fe0efb4416cb6ad5d53b38c3e38',''), ('19650','{25010}>={$AMI.TRUNK_ACTIVE_CHANNELS_TOTAL.MAX.WARN:"SIP"}','Asterisk: Total number of active channels of SIP trunks is too high','','0','2','The SIP trunks may not be able to process new calls.',NULL,'0','0','0','','0','','0','','0','Asterisk: Total number of active channels of SIP trunks is too high (over {$AMI.TRUNK_ACTIVE_CHANNELS_TOTAL.MAX.WARN:"SIP"} for 10m)','d2fde5d26d284a129346a12ba0949b60',''), ('19651','{25011}=1','Travis CI: Failed to fetch home page','','0','2','Zabbix has not received any data for items for the last 30 minutes.',NULL,'0','0','0','','0','','1','','0','Travis CI: Failed to fetch home page (or no data for 30m)','6baed695cac34d349a42ab6e8295910d',''), ('19652','{25012}=0','Travis CI: Service is unavailable','','0','4','Travis API is unavailable. Please check if the correct macros are set.',NULL,'0','0','0','','0','','1','','0','','e8398acab5a74505a85ade5d3ca5f590',''), ('19653','{25013}<{$TRAVIS.BUILDS.SUCCESS.PERCENT}','Travis CI: Repo [{#SLUG}]: Percent of successful builds','','0','2','Low successful builds rate.',NULL,'0','2','0','','0','','1','','0','Travis CI: Repo [{#SLUG}]: Percent of successful builds are < {$TRAVIS.BUILDS.SUCCESS.PERCENT}%','8279ce31c4fe4cb7a03baa8a0149a557',''), ('19654','{25014}=1','Travis CI: Repo [{#SLUG}]: Last build status is ''errored''','','0','2','Last build status is errored.',NULL,'0','2','0','','0','','1','','0','','9b26f06ae3854aad8d2c0f4623bb1533',''), ('19655','{25015}=0','InfluxDB: Health check was failed','','0','4','The InfluxDB instance is not available or unhealthy.',NULL,'0','0','0','','0','','0','','0','','de130833b4514481aa56d3ba06e648fc',''), ('19656','{25016}>{$INFLUXDB.TASK.RUN.FAIL.MAX.WARN}','InfluxDB: Too many tasks failure runs','','0','2','"Number of failure runs completed across all tasks is too high."',NULL,'0','0','0','','0','','0','','0','InfluxDB: Too many tasks failure runs (over {$INFLUXDB.TASK.RUN.FAIL.MAX.WARN} for 5m)','f0d2137905bc477f979d035c06111844',''), ('19657','{25017}<10m','InfluxDB: Service has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','InfluxDB: Service has been restarted (uptime < 10m)','335f27fb002544838f7150b11238d86b',''), ('19658','{25018}<>{25019} and length({25020})>0','InfluxDB: Version has changed','','0','1','InfluxDB version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','InfluxDB: Version has changed (new version: {ITEM.VALUE})','d2b02cc426c748608968ae08c0823461',''), ('19659','{25021}>{$INFLUXDB.REQ.FAIL.MAX.WARN}','InfluxDB: [{#ORG_NAME}]: Too many requests failures','','0','2','Too many query requests failed.',NULL,'0','2','0','','0','','0','','0','InfluxDB: [{#ORG_NAME}]: Too many requests failures (over {$INFLUXDB.REQ.FAIL.MAX.WARN} for 5m)','893fa5755b514c36aa177c4f4e25b254',''), ('19660','{25025}>8 and {25026}>6','F5 Big-IP: Cluster not in sync','','0','2','',NULL,'0','0','0','','0','','1','{ITEM.LASTVALUE}','0','F5 Big-IP: Cluster not in sync: {ITEM.VALUE}','f93a7ff7cc614c0b84789f325ebb662b',''), ('19661','{25027}=2','F5 Big-IP: Changes have been made on the device not sync','','0','2','Changes have been made on the device not sync to the device group, requires user intervention',NULL,'0','0','0','','0','','1','{ITEM.LASTVALUE}','0','F5 Big-IP: Changes have been made on the device not sync to the device group: {ITEM.VALUE}','098fe258e8cc4216b0c1800913ba8e18',''), ('19662','{25028}=4','F5 Big-IP: The device is inconsistent with the device group','','0','2','The device is inconsistent with the device group, requires user intervention',NULL,'0','0','0','','0','','1','{ITEM.LASTVALUE}','0','F5 Big-IP: The device is inconsistent with the device group: {ITEM.VALUE}','eb3517626c6d425f9b88a2bc35641ab6',''), ('19663','{25031}=2','F5 Big-IP: Fan[{#FAN.INDEX}] is not present','','0','1','Please check the fan unit',NULL,'0','2','0','','0','','0','','0','','d20c56720aa54efba37f5fcdfdde0225',''), ('19664','{25032}=2','F5 Big-IP: Power supply [{#POWER.INDEX}] is not present','','0','1','Please check the power supply unit',NULL,'0','2','0','','0','','0','','0','','84469f28c4bf47f790a85b9f1f37cff0',''), ('19665','{25033}>{$BIGIP.TEMP.HIGH}','F5 Big-IP: Chassis temperature','','0','4','',NULL,'0','2','0','','0','','0','{ITEM.LASTVALUE}','0','F5 Big-IP: Chassis temperature ({ITEM.LASTVALUE}) of sensor {#TEMP.INDEX} exceeds threshold of {$BIGIP.TEMP.HIGH} °C','452167aafe594e3faa3748e6dc470fb1',''), ('19666','{25034}>{$BIGIP.TEMP.WARN}','F5 Big-IP: Chassis temperature','','0','2','',NULL,'0','2','0','','0','','0','{ITEM.LASTVALUE}','0','F5 Big-IP: Chassis temperature ({ITEM.LASTVALUE}) of sensor {#TEMP.INDEX} exceeds threshold of {$BIGIP.TEMP.WARN} °C','00c0212fcb8049309bf0b3de2b2363b4',''), ('19667','{25035}>20','F5 Big-IP: Pool {#POOL.NAME} is not available in some capacity: {ITEM.VALUE1}','','0','3','',NULL,'0','2','0','','0','','0','{ITEM.LASTVALUE}','0','','0b6e708075684cbab0d8c598f3467e0c',''), ('19668','{25036}>4','F5 Big-IP: Pool {#POOL.NAME} is not enabled in some capacity: {ITEM.VALUE1}','','0','3','',NULL,'0','2','0','','0','','0','{ITEM.LASTVALUE}','0','','4d0431e2c4934f37be7302ffedd69e8a',''), ('19679','{25060}<>{25061} and length({25062})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','79b791b5ce1a4e5e8f68b561aeaac838',''), ('19680','{25063}<>{25064} and length({25065})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','a981ac3d5e7843049eb581ab284edd04',''), ('19681','{25066}<>{25067} and length({25068})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','f7e4983c483944869d44fe5ea4289786',''), ('19682','{25069}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','6a571f6691ec459bbc63e1a8dece1c04',''), ('19683','{25070}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','1586816e4cfe4060b9c2d4c305439e4d',''), ('19690','{25083} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','88449b36f96740349cd1e08127b7b39c',''), ('19691','{25084} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','cdab150de72d4e8bb2af4e412be6de27',''), ('19692','{25085} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','5eb2071556a749b382e8d6668fc7c699',''), ('19693','{25086} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','9e119f5f5ae74caeb58e9736f5e7e8b1',''), ('19694','{25087}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','f282823a66354c1aa88b2338efb376f0',''), ('19695','{31492}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31493}-{31494})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31495}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','93eaacd1543d440c93faa4b7c4fcd02d',''), ('19696','{31496}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31497}-{31498})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31499}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','70397fb0b0754a42a9c97c77c2037d2a',''), ('19707','{25119}<>{25120} and length({25121})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','7469aef39ea84a729b87d06d3dd0e9af',''), ('19708','{25122}<>{25123} and length({25124})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','a30f1485711d4a649503638fd3a7d702',''), ('19709','{25125}<>{25126} and length({25127})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','8574af8f375a4443bbf030ebf8d904b5',''), ('19710','{25128}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','18ae9503588a4d398f387ab0d9015e26',''), ('19711','{25129}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','2f1676c21f7044a289a8fd3077f9c95f',''), ('19718','{25142} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','86e76d6d249a4f339ca2841d9b433204',''), ('19719','{25143} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','4b5ad89e3ecf4d38a8bdb75b10028ba2',''), ('19720','{25144} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','404195780f234277874f9c1d88ce286a',''), ('19721','{25145} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','1e58c3aaa1a9469bb170fc50b75e1686',''), ('19722','{25146}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','cb698e80cd15409bad16d476fc637a61',''), ('19723','{31500}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31501}-{31502})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31503}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','e6500e2d99fa46dea445d9cc469df81e',''), ('19724','{31504}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31505}-{31506})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31507}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','33a9e94bff174f31978be450df1f3c40',''), ('19735','{25178}<>{25179} and length({25180})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','de61b57b4fd54166a207bc040aa482a4',''), ('19736','{25181}<>{25182} and length({25183})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','1776f8b97fba4feb962b0a47e4780076',''), ('19737','{25184}<>{25185} and length({25186})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','0b8bd128fed047c591b839f3f46412dd',''), ('19738','{25187}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','2dec63fe94b943549c8351fe1e737975',''), ('19739','{25188}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','e25580100dde402eaf640b6653223a82',''), ('19746','{25201} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','0f5a0e7593b447e2a9a5071f2ec4a30b',''), ('19747','{25202} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','932fe21bdb6c460581093fb523b3c4b2',''), ('19748','{25203} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','d6dcbaaaa89c4cfe80060830c595e4bb',''), ('19749','{25204} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','d6e15977be5242edb4dd4bb8dcd0fbd0',''), ('19750','{25205}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','36dc48462d28464787978c8e6f74cafe',''), ('19751','{31508}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31509}-{31510})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31511}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','fc93929bd60542d3896fbcdd590479be',''), ('19752','{31512}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31513}-{31514})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31515}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','6aa796b2784848a7ab26a7e6da8993a9',''), ('19763','{25237}<>{25238} and length({25239})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','4ff0ad1fe7a043f28e46403ab4ce500b',''), ('19764','{25240}<>{25241} and length({25242})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','0abb489d471e414b84d9bfe5d6d0e453',''), ('19765','{25243}<>{25244} and length({25245})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','3146fc39809741a09a46852ef392b694',''), ('19766','{25246}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','4093f81ecb9f4320b5c5ca719a6b8574',''), ('19767','{25247}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','20cfcbcae14b4b7fb9c86486f4e6b972',''), ('19774','{25260} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','6c73b57b26b1484c83d7a8185829bd85',''), ('19775','{25261} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','5eafa20544ed463fad00fb233b34f92c',''), ('19776','{25262} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','0d079b01ba334fcd8f3e527ec7102c3b',''), ('19777','{25263} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','fddf1697f5c04bae95c4752d2627856f',''), ('19778','{25264}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','815c19538e7b48edb63bd46ad4d641d3',''), ('19779','{31516}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31517}-{31518})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31519}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','79b2a705172743a88de436aa62be33ad',''), ('19780','{31520}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31521}-{31522})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31523}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','8c8e59c2079d4bfcbd775b0c38bbf253',''), ('19791','{25296}<>{25297} and length({25298})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','8012e0275fc24d9e9688cfccb3134aae',''), ('19792','{25299}<>{25300} and length({25301})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','c6e011ff0a1f41c5b90bb8fba507fe7d',''), ('19793','{25302}<>{25303} and length({25304})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','f8ac6aaa8c06474d9a9b86e5e43b5ed5',''), ('19794','{25305}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','63e95c315b6f422e9d4f6e532e847e9c',''), ('19795','{25306}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','a8920b239ceb42e6b3e26ffd310a409a',''), ('19802','{25319} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','42329cfbff37430f87adfefa852b39fe',''), ('19803','{25320} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','0259421d33e745d992e5eb03091b787a',''), ('19804','{25321} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','ac07e47a3ce447febb5049da33931109',''), ('19805','{25322} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','ef75c9ab974c46a99579c544e43a2c2c',''), ('19806','{25323}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','ff2543e8251945f29036cb43fda69c72',''), ('19807','{31524}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31525}-{31526})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31527}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','7e201487d2ed496492eb2dbb1a169021',''), ('19808','{31528}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31529}-{31530})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31531}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','fcc24d6aa85a4ae4b104d9523afe073d',''), ('19819','{25355}<>{25356} and length({25357})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','e0decdba5c7a44ef9983da4d0912ba37',''), ('19820','{25358}<>{25359} and length({25360})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','ee34d0bdac3f4b0489fc96a3feecb72b',''), ('19821','{25361}<>{25362} and length({25363})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','65ac535fb0114cc098bd89d1e2a5cfed',''), ('19822','{25364}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','1ed5e95e003d4119bd578ac4f572ba16',''), ('19823','{25365}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','519211164f324540a624c3f1046dbd44',''), ('19830','{25378} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','bbe7c7f1238649119b44e657c5f0d292',''), ('19831','{25379} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','8f858819c89542bc88afa76981b4639a',''), ('19832','{25380} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','ad82b43ac27c44258f4a4f3ca212cdbf',''), ('19833','{25381} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','6a3ce63f84ef4df9b8e9cc231ddf3fe0',''), ('19834','{25382}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','4a5a914ac69f42eb8fa9ca5ef30e63cc',''), ('19835','{31532}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31533}-{31534})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31535}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','07a38ca5caf7408fa0e61ec5bb2d2c9a',''), ('19836','{31536}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31537}-{31538})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31539}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','313ea923495e4a0289519b8c228f018a',''), ('19847','{25414}<>{25415} and length({25416})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','565c94a00dde43c1af72f8c2d00edcb5',''), ('19848','{25417}<>{25418} and length({25419})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','6d02cc3ff4144efda53554446feb0058',''), ('19849','{25420}<>{25421} and length({25422})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','18900918495f4dd99cbde564a071bf34',''), ('19850','{25423}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','d89ab73e0c534f84ae9481a1a48d5064',''), ('19851','{25424}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','24667b99976c417985bbb1a307184d88',''), ('19858','{25437} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','b7d3eebe1d6944b88ed8afa923caf884',''), ('19859','{25438} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','94c9e778f2a7471c8002dfa6918dde8f',''), ('19860','{25439} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','77e69f355f7348a4bc823a8428980356',''), ('19861','{25440} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','c1926140ee5d4532adeecf590f740e96',''), ('19862','{25441}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','d32004c5c1804105aee11b22722556e1',''), ('19863','{31540}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31541}-{31542})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31543}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','73127568919e45ca9df89ab08285a3b5',''), ('19864','{31544}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31545}-{31546})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31547}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','954903eaecf54c26874d9e5ce47e044b',''), ('19875','{25473}<>{25474} and length({25475})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','a42442ce9d7d4a378964296eed6a6b33',''), ('19876','{25476}<>{25477} and length({25478})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','2da3a78731324233be1563691f353d04',''), ('19877','{25479}<>{25480} and length({25481})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','855a1e17110e49eaaaf4dd263f16a591',''), ('19878','{25482}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','9a83e6b6a0874a49a983cb610a7e0e50',''), ('19879','{25483}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','bc07372dff2f4f72a6b1b7c0e02f79c7',''), ('19886','{25496} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','4f9b8def6c3e4d72b7afeb50808cae21',''), ('19887','{25497} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','aa5d408235834a5e8492a55e178f5dc7',''), ('19888','{25498} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','5c4489b0d28649a9a487d65833043589',''), ('19889','{25499} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','1d77ead6601b40d5b22afc9098a8a211',''), ('19890','{25500}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','1b02cd1523474c949dcabd004a01089f',''), ('19891','{31548}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31549}-{31550})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31551}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','768953b43aab47d0bfcf9eeef75625ad',''), ('19892','{31552}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31553}-{31554})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31555}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','74b9590a3e2448bc926fdd29bc6ec153',''), ('19903','{25532}<>{25533} and length({25534})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','26d7b5b5fc4149d4869a4e3a94173172',''), ('19904','{25535}<>{25536} and length({25537})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','79405589edba4a878d7d2ab5d0399076',''), ('19905','{25538}<>{25539} and length({25540})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','1ed2e0368bb94a4fbfa8a82764b3b40d',''), ('19906','{25541}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','03cdc40813dd4d5093512db3c5e574ff',''), ('19907','{25542}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','a9f3354cf2044306ba8ca1aae227ee60',''), ('19914','{25555} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','67152820f4884d51a16966f339947955',''), ('19915','{25556} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','ca8b841c9830497dabd0138fafade175',''), ('19916','{25557} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','e8f613b6301b43efa4a2e84d62ec520f',''), ('19917','{25558} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','c215c39df396474e865ae9b36c40545f',''), ('19918','{25559}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','587ccbe7d604489783b66411a3b21cb1',''), ('19919','{31556}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31557}-{31558})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31559}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','72a2fc862c354ab0a3d8fb491aaed9e1',''), ('19920','{31560}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31561}-{31562})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31563}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','d66a941be43a440fb13386d9a319a5b3',''), ('19931','{25591}<>{25592} and length({25593})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','385231b6c7eb4ce6a275969b437c8d44',''), ('19932','{25594}<>{25595} and length({25596})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','bb2cc5758a154bc0ad07138e87f353a4',''), ('19933','{25597}<>{25598} and length({25599})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','ff7510d9e2d44057a089b9486af74971',''), ('19934','{25600}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','a7fa3a261f0c4362938700ff8954cdc9',''), ('19935','{25601}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','a47faa0771b348ed8fd040027deebd95',''), ('19942','{25614} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','eacd5dec75404c9e80bd18d5ea0f3bff',''), ('19943','{25615} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','0e79530582ee4e3aa270d8a43a96f7f0',''), ('19944','{25616} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','ddbe2cfcdd6f4d5895780fa6510acb73',''), ('19945','{25617} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','5f8087b4f9ae4d3693d55d189c1f99f4',''), ('19946','{25618}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','e25c484ec45a4a01b51f961318813e30',''), ('19947','{31564}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31565}-{31566})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31567}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','044aabf4d95c4c9ba7ccec76446f50af',''), ('19948','{31568}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31569}-{31570})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31571}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','3a5a7043d1b64fe5a7fdefc341fcc22a',''), ('19959','{25650}<>{25651} and length({25652})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','6172f360bcca4bc6a105a5093be8665c',''), ('19960','{25653}<>{25654} and length({25655})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','80072866ba994094a279eb45020311d1',''), ('19961','{25656}<>{25657} and length({25658})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','d66d2b488b784574943c90f20d0153ce',''), ('19962','{25659}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','02a8b7e7ebbb4d1baf5ee155167e36ba',''), ('19963','{25660}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','a81f9bcd4d4d4c4593654293b55f864d',''), ('19970','{25673} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','f929a190e2624171a7a4b80919ae025e',''), ('19971','{25674} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','dff7058dd39f4cb294533048160b3b75',''), ('19972','{25675} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','e57c17fcddd04bdf921a9f1b6151ccb2',''), ('19973','{25676} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','95e376a33c1642c9a7d33b40bcda3389',''), ('19974','{25677}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','569c6b51c3714d84bce3522093e442a6',''), ('19975','{31572}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31573}-{31574})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31575}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','8ddf161b19eb4716b1ec7cb270970703',''), ('19976','{31576}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31577}-{31578})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31579}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','0a19983ae1d443bbb4224a61d46b62de',''), ('19987','{25709}<>{25710} and length({25711})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','324d699f4767400e88e16f37ffcd2abd',''), ('19988','{25712}<>{25713} and length({25714})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','53e8fc3eac46426fbce375cc2ce983c8',''), ('19989','{25715}<>{25716} and length({25717})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','2a0736cbd3324122b51c4ac4629c1323',''), ('19990','{25718}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','8246aab86f954be8968169f55889a842',''), ('19991','{25719}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','bc2854ed0ff645ae9a932ab5baa62a91',''), ('19998','{25732} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','f5bf9d28bfb344728e481a3a478c6986',''), ('19999','{25733} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','0b427fe9c54d486792c9388b8c2968cc',''), ('20000','{25734} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','130cdbfb721646ef92c6c1664dffce72',''), ('20001','{25735} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','2df17dc1ca8f4d9fb135c23f86fb50d3',''), ('20002','{25736}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','d1a52557a4f746da96893c3d1436b3f2',''), ('20003','{31580}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31581}-{31582})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31583}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','dfcf03d83fb147b18be991b65d2298d6',''), ('20004','{31584}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31585}-{31586})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31587}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','95f44fd2b533449593e2095edda00fc9',''), ('20015','{25768}<>{25769} and length({25770})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','6739b5af597443449dcfb946d2b89393',''), ('20016','{25771}<>{25772} and length({25773})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','dfc2b8c7f27049a6bd51c283cc6a29ce',''), ('20017','{25774}<>{25775} and length({25776})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','dc48fc089a314b7ebae646f2dfb925c5',''), ('20018','{25777}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','fdcc98f2475247f29fdf48c3a4a69058',''), ('20019','{25778}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','08ca4ad1230144488299a8f4eaacef7f',''), ('20026','{25791} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','9c9bab7ccb354d478ae1d5f7ab66f5ea',''), ('20027','{25792} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','f44e31574a68494cbcefbc961662063b',''), ('20028','{25793} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','9ebee838e00c46bba067094ea9732f6d',''), ('20029','{25794} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','90fc1e486dd9409aacf0f68f86caf80c',''), ('20030','{25795}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','2e15eff553614e51a59590c6e3df4a42',''), ('20031','{31588}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31589}-{31590})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31591}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','6a2a5c6ce51b4f6b912a01e45d1a5409',''), ('20032','{31592}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31593}-{31594})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31595}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','0df7d927286d47998fcf15c41bce944f',''), ('20043','{25827}<>{25828} and length({25829})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','07248a02609a4964be773df77f86f30a',''), ('20044','{25830}<>{25831} and length({25832})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','a79318151008414cb9a0c3d788b76f76',''), ('20045','{25833}<>{25834} and length({25835})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','829598b7b1b4404bbd959ae186734251',''), ('20046','{25836}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','7f44b9ee964f4ae798f3af4c12799e12',''), ('20047','{25837}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','37579561f5e74042827d0d3fc5dc85e7',''), ('20054','{25850} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','b3abf2a74b1444d7af3cdfc8ac550ec4',''), ('20055','{25851} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','e3300b34a9f34bbd91af48f5b8e89d9e',''), ('20056','{25852} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','7a06e44d440b4b85ad3b102fccf24309',''), ('20057','{25853} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','6950612291f84d1d805b2f250c133096',''), ('20058','{25854}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','68fac07f6dd045ba8040c7fe813bdf2e',''), ('20059','{31596}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31597}-{31598})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31599}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','463c460bdff441ce9af1ea170ea4dbc2',''), ('20060','{31600}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31601}-{31602})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31603}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','a758c3e0841e4fff93ff4bcaa41505eb',''), ('20071','{25886}<>{25887} and length({25888})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','6729f53f42ff445c8ab26b91cdb811e2',''), ('20072','{25889}<>{25890} and length({25891})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','24e52c80e5544295b778c677d0de35b2',''), ('20073','{25892}<>{25893} and length({25894})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','8846801d462142938e7e0683dd481087',''), ('20074','{25895}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','d9f9ee61646a4881bcb34a5e564738f3',''), ('20075','{25896}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','9fc63b1881da411baea0e78cd671606a',''), ('20082','{25909} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','4d8a166e4cc8442c87c2989fa87b8e1d',''), ('20083','{25910} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','1affa10b3e2d477c92951193292f57d0',''), ('20084','{25911} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','bb085163f97341259cd0d42e38c1685e',''), ('20085','{25912} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','4b214d3637994c89816ef4f951ce8828',''), ('20086','{25913}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','9b32c491ea3d41bca60ab53c664ee369',''), ('20087','{31604}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31605}-{31606})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31607}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','572cb48de9bd4010b907cff6efa9f3a8',''), ('20088','{31608}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31609}-{31610})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31611}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','10639cc4b8de4879a99c70061d5d48ea',''), ('20099','{25945}<>{25946} and length({25947})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','0f66010aec32455eb56414c1ba576982',''), ('20100','{25948}<>{25949} and length({25950})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','59c929b470d342b691b01b5d12f87456',''), ('20101','{25951}<>{25952} and length({25953})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','c9fb96d72f6942d1b4320014b2e40b0c',''), ('20102','{25954}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','72863d07fe654e78b740e2f48e0cebe5',''), ('20103','{25955}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','a2148ac68e78401c81ea5ef66cddc04c',''), ('20110','{25968} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','d3b264a57365416ba32dd5ee7f3b2c72',''), ('20111','{25969} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','c69186a3c737437696414d1d1c434a3c',''), ('20112','{25970} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','8179d0962048402c9843878c34f3a45c',''), ('20113','{25971} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','fdb14600d90a448a83bdc51dd170296b',''), ('20114','{25972}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','f60557875559490a891eb81c11e0cf37',''), ('20115','{31612}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31613}-{31614})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31615}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','2e7f4f0eaf384c68acaf1bafadc6296a',''), ('20116','{31616}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31617}-{31618})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31619}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','380f830e3e714a99b9c7b30c1fbce14b',''), ('20127','{26004}<>{26005} and length({26006})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','f0c59541e6df4c649e7c2ef76d7bda4b',''), ('20128','{26007}<>{26008} and length({26009})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','a1cf2d27ddc447988aa808318aef167f',''), ('20129','{26010}<>{26011} and length({26012})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','9bfebd1764bb4acc82fa8c7f175c0b87',''), ('20130','{26013}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','9af92a1dddd0405587bb090b8fd5757d',''), ('20131','{26014}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','c06050c48eac4f8f90df94c6d125f369',''), ('20138','{26027} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','fd43c6f8ed834db3a69e6c30c29878ed',''), ('20139','{26028} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','685f5eba5ddd4b2ba3173fc82367b476',''), ('20140','{26029} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','4a4f14e171504413ae16d92597fe1024',''), ('20141','{26030} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','ed070d7bccb649a49b29eda9b8a02192',''), ('20142','{26031}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','89940e123e8c4c04b402a436c977d999',''), ('20143','{31620}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31621}-{31622})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31623}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','e5df295edd2848329708aaf765a8e8be',''), ('20144','{31624}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31625}-{31626})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31627}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','31ff4cd8ae95435193ecc37238327c4c',''), ('20155','{26063}<>{26064} and length({26065})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','70a98e004bd34fb48e9c410ca52f4bc0',''), ('20156','{26066}<>{26067} and length({26068})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','e4da63844b774f4eb9e0188f659f256d',''), ('20157','{26069}<>{26070} and length({26071})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','9f738a1caee34259a3d38e52ddb6c791',''), ('20158','{26072}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','640203769816409d883d5ba38a6ff4e5',''), ('20159','{26073}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','087f5705a7ce4a88a8c699541ee704be',''), ('20166','{26086} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','6a8f6966f59a45e48a68f0343c372973',''), ('20167','{26087} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','0b4661e442014e21a98e56b8b332a6ba',''), ('20168','{26088} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','d04782f202c44772b039867d744582de',''), ('20169','{26089} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','d8d6a75db4de4ff7b8b2f4ab1f8d7258',''), ('20170','{26090}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','6dfee746a74b4f96b103202b00ed3720',''), ('20171','{31628}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31629}-{31630})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31631}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','2e330eb1ac0a4427ab150c2f1c3949b0',''), ('20172','{31632}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31633}-{31634})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31635}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','ba3b9fe3bb7041c5a2e7d9fec8bed517',''), ('20183','{26122}<>{26123} and length({26124})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','66ea5bdabba4438ba8f9959e0c4b24ec',''), ('20184','{26125}<>{26126} and length({26127})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','425777ce38e54daba1f6501bd4f6bf6b',''), ('20185','{26128}<>{26129} and length({26130})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','73aec359593a4ce9ae07e66a39ea2275',''), ('20186','{26131}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','179753654a4849d48935c10417994eb7',''), ('20187','{26132}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','295ec169c36b482790f9091db3a39357',''), ('20194','{26145} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','1e1893cd271a4b1f9d04afb520cd6925',''), ('20195','{26146} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','c045d57678f4478cb6caf5fb0a80d0e9',''), ('20196','{26147} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','8125b0058dfd42e786bcf3cac7ab4c88',''), ('20197','{26148} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','bf70869515ec4c35814efa05b8305403',''), ('20198','{26149}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','9b78a081991540cda9aad21e6255b632',''), ('20199','{31636}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31637}-{31638})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31639}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','7589fe3f0e3e4c26ac21cd314b1c07e7',''), ('20200','{31640}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31641}-{31642})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31643}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','30977d9643d6482c89fe5a08030c559a',''), ('20211','{26181}<>{26182} and length({26183})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','32127aca202644c5915255006e9544b5',''), ('20212','{26184}<>{26185} and length({26186})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','7bb01da1713c42c1ab28c1ae2adc1260',''), ('20213','{26187}<>{26188} and length({26189})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','28568c2163ee4a0aa262241064922c7d',''), ('20214','{26190}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','7224d01c717a4dd3800fbd8d8e9399b8',''), ('20215','{26191}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','d6343a3648f0493bb786d598a8e51ab4',''), ('20222','{26204} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','c27c37092c5f48f1944417cbd47f6c25',''), ('20223','{26205} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','9525ed0ec7bb426587ffcf4879590d5b',''), ('20224','{26206} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','d7c501de314140aeb2b6f344bad2c501',''), ('20225','{26207} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','f124b3bbba784fff966adef3c722eb70',''), ('20226','{26208}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','aa16e2906256441bb0c6680e9c95f547',''), ('20227','{31644}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31645}-{31646})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31647}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','2d873bbec47d4b3281b1aa33c87c60a0',''), ('20228','{31648}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31649}-{31650})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31651}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','6bab52e75f8e4286a7c4ec7336a4d417',''), ('20239','{26240}<>{26241} and length({26242})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','58b860a92baa43158419a843ae89687f',''), ('20240','{26243}<>{26244} and length({26245})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','54368f9d9e9f494ba55f8f5fac20196b',''), ('20241','{26246}<>{26247} and length({26248})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','dd39ada0b3b14009968866d766e9e16d',''), ('20242','{26249}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','de55f957c95d404380cb490126f88e3d',''), ('20243','{26250}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','693899638cc1411a9f178cdf6d53b22a',''), ('20250','{26263} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','6e805c219d884cb38bcd51dde95af1a4',''), ('20251','{26264} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','93ca96ceac4043fbbd88004165d94c3a',''), ('20252','{26265} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','0f7f11abdba9495fa4fa33ad1a872244',''), ('20253','{26266} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','da0b1d4940d64a5c9b96c83600cb4963',''), ('20254','{26267}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','b885a22b88114ea7a275f0758d82210c',''), ('20255','{31652}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31653}-{31654})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31655}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','49a1cefb001c47bbae541e71673d5eb5',''), ('20256','{31656}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31657}-{31658})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31659}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','5145ea5e4fb04f9c9dfc90d61ca65d1b',''), ('20267','{26299}<>{26300} and length({26301})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','0d646e6c03f14c259b81862187a6eec1',''), ('20268','{26302}<>{26303} and length({26304})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','992d3bd742224ad7abc375d20e60e1af',''), ('20269','{26305}<>{26306} and length({26307})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','b3e063c9221d4bf69acb21a16859bb15',''), ('20270','{26308}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','95ac8c277d8940ecb1545be2dc514c54',''), ('20271','{26309}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','9e5d5b925a5c42a2af13b3a6727a4cb9',''), ('20278','{26322} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','027b0481f1de4967973208e3477c0094',''), ('20279','{26323} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','7dc5c0d4f77441a5a29239b1aa77d00b',''), ('20280','{26324} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','95d3868b6d1c45629acc756865cf6f78',''), ('20281','{26325} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','94cb13b08f4f46c2bccd3b5ac22ccb3e',''), ('20282','{26326}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','1317af27066547e2a07f2dd27923e22b',''), ('20283','{31660}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31661}-{31662})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31663}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','ee1e3d1444c947d2898cf120dc3fc53f',''), ('20284','{31664}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31665}-{31666})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31667}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','a6f92ac3ee824ef486a82f441fb60a67',''), ('20295','{26358}<>{26359} and length({26360})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','65e43afe1d04447fb334d5efbd76c185',''), ('20296','{26361}<>{26362} and length({26363})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','3a3ac7e0d5fc4feca67eb2447fcbcf34',''), ('20297','{26364}<>{26365} and length({26366})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','2f18268819414337aca3f919343d6577',''), ('20298','{26367}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','cfd67344627840a081d286d8188c0888',''), ('20299','{26368}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','d9f63d9be04940949d9dd655cf1a7bd2',''), ('20306','{26381} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','4ae567c4a5be46a4a1a135a5f61aece8',''), ('20307','{26382} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','1e6aca20d3c140f69580920d37820c9a',''), ('20308','{26383} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','65a6c1de5d8e4a4d8857a4b97fcb1a7a',''), ('20309','{26384} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','df73d669f65940a79065915e11a3e3bf',''), ('20310','{26385}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','233fb21420794842b00c0fb12db86e51',''), ('20311','{31668}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31669}-{31670})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31671}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','3e07aa63774040ef9369b3280cae156d',''), ('20312','{31672}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31673}-{31674})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31675}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','caae865a278946958a38fa40a41f180f',''), ('20323','{26417}<>{26418} and length({26419})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','f91e54b227304a688092ffcbabf88d41',''), ('20324','{26420}<>{26421} and length({26422})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','aeb6d1d52ee24d7393a4a5a31f7267fb',''), ('20325','{26423}<>{26424} and length({26425})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','be2544b8b967408288a750c82a8f9059',''), ('20326','{26426}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','4fbf859b65774291850b37f700945a36',''), ('20327','{26427}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','6b4d22ac23db45beb398d591a157782e',''), ('20334','{26440} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','1f7f8781515a44b4b12db1a162e9a8f4',''), ('20335','{26441} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','79166253631142cf87660a658c77169e',''), ('20336','{26442} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','e5d37873211c44aca51f7926a9b2add6',''), ('20337','{26443} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','51c15917a456414ca6fef2cc86156484',''), ('20338','{26444}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','e9057c50ee5148119a922bd170e7463f',''), ('20339','{31676}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31677}-{31678})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31679}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','c01561923734478abc70b7c02d2d9add',''), ('20340','{31680}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31681}-{31682})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31683}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','e53a74871f2b4fadb8ff206f348fc90c',''), ('20351','{26476}<>{26477} and length({26478})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','db665e87151d441395fce421949a9bb0',''), ('20352','{26479}<>{26480} and length({26481})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','a5e267a8584a4d099f0d36d30ce17d0b',''), ('20353','{26482}<>{26483} and length({26484})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','9fe8a423c0a8411191337e48818cd835',''), ('20354','{26485}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','ef73c971f14444f18a8b0956c8bd5796',''), ('20355','{26486}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','887bf529d1aa43dbaec9a92a390fc0cd',''), ('20362','{26499} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','ce0b05960b714a03b34f626d262f410a',''), ('20363','{26500} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','e97689431f51481db6836b937214a926',''), ('20364','{26501} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','de8a3e44f9494ae0b9506785386c0604',''), ('20365','{26502} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','4c4e3d9b71974e3192070aa344e37221',''), ('20366','{26503}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','034fd6289a4a4d549ea927ae48d8b225',''), ('20367','{31684}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31685}-{31686})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31687}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','e6c0c2401c0940ef8edae9aa38aa49e3',''), ('20368','{31688}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31689}-{31690})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31691}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','d72e1d5537ec498788f6e7e57e18f65d',''), ('20379','{26535}<>{26536} and length({26537})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','98b8b373def34eec9e814c039dcfb20b',''), ('20380','{26538}<>{26539} and length({26540})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','da1a900485be412996f607b9669daf83',''), ('20381','{26541}<>{26542} and length({26543})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','41ec834afc7a49409cc9996459b15452',''), ('20382','{26544}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','86bc4c3dbd024d8d84a90f25fa8c0932',''), ('20383','{26545}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','dfedf883e0e043a8924796421d0836da',''), ('20390','{26558} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','de98377f082840a0929e2f9024eb873d',''), ('20391','{26559} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','4cf201a794cf48dfbaf574a04f8111b6',''), ('20392','{26560} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','3666c8cb456a4e4581c4ebac22db115a',''), ('20393','{26561} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','4b0a6c73bc1f4e7692cb9196dbdf059c',''), ('20394','{26562}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','26baba4f44aa436fbe96c86a4a511156',''), ('20395','{31692}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31693}-{31694})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31695}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','e9f77bfbd9e64dc0a9549c0e54da0582',''), ('20396','{31696}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31697}-{31698})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31699}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','ff9b2a577fc64bdeb0c8e1feaac80862',''), ('20407','{26594}<>{26595} and length({26596})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','656a970a84fd4f65adc021b317f8db04',''), ('20408','{26597}<>{26598} and length({26599})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','ba6f7f02b3dc47b6a15a40f81c86ee1e',''), ('20409','{26600}<>{26601} and length({26602})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','b720a6b27e14473db885682085ce07e1',''), ('20410','{26603}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','6d68e3acb5a34a9eb68f6ea1e329241d',''), ('20411','{26604}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','000c63d6cf4d44f28c2705098ce88918',''), ('20418','{26617} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','eab50deb6a2e45e8b7bcd447dc6c28e9',''), ('20419','{26618} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','a12e8f4ef8c2496aacc7cbc35b9ede34',''), ('20420','{26619} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','32cb826e59324b90910717b778a714f2',''), ('20421','{26620} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','4220c67e66074f048261a4b42092c381',''), ('20422','{26621}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','bd6dc784f23746d19a09b6ea322ecf24',''), ('20423','{31700}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31701}-{31702})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31703}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','708c6b4a613c4795bd2b3c8b10b9fed4',''), ('20424','{31704}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31705}-{31706})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31707}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','1220479e0e0b4dbbb7590ec2b8359009',''), ('20435','{26653}<>{26654} and length({26655})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','7e708c7bf76445959909bf03adf676dc',''), ('20436','{26656}<>{26657} and length({26658})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','0b2e29ba173346248fb4d799f7e16cf1',''), ('20437','{26659}<>{26660} and length({26661})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','b0c3673f0aee4a23a7811f54416924bf',''), ('20438','{26662}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','5e104649223b40cdadeaa338321ca690',''), ('20439','{26663}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','f8801c652f414d4b881715e10d1a69ac',''), ('20446','{26676} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','5caa686e721a40e991d0f4b71eaecc7f',''), ('20447','{26677} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','ce67126d64254dabb9d5df68dcdb5a69',''), ('20448','{26678} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','7401d1955be04599b1d0e5dfb3d2a4f5',''), ('20449','{26679} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','d668e892231d4614af5673f11d8070cf',''), ('20450','{26680}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','a5ac3a7a8ac447bdb1d35b9456351624',''), ('20451','{31708}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31709}-{31710})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31711}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','adf6f10ebb2e42989ed41b69e3411431',''), ('20452','{31712}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31713}-{31714})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31715}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','da4dd8436d6f4787801e6d2f10b59a47',''), ('20463','{26712}<>{26713} and length({26714})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','9b20e7d8a4c844069a75adc95dcb6223',''), ('20464','{26715}<>{26716} and length({26717})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','ec99b185eb1d4af2943cd49f4b1e3dcf',''), ('20465','{26718}<>{26719} and length({26720})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','54ca398b57a8450ba004aa15a310f599',''), ('20466','{26721}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','a60e5b95514e4a6ba5bdc1d2bc95818c',''), ('20467','{26722}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','c5ddc3a0e73943ef939341972db502e1',''), ('20474','{26735} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','832ceaf8547b4395a4495ad2d64c9f3e',''), ('20475','{26736} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','64e8b603db0240bda81435df0ec8f275',''), ('20476','{26737} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','8085843742774a44ada60c14cf33aeb4',''), ('20477','{26738} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','e315b7387f1943eb9432986565aee291',''), ('20478','{26739}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','611cb0ad354a4ac0b52715483b4426ad',''), ('20479','{31716}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31717}-{31718})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31719}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','63d24ac83bc24eb5b64ecc47c75c1c4a',''), ('20480','{31720}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31721}-{31722})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31723}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','ed3c082e9f264f20862f9cd20d4e9724',''), ('20491','{26771}<>{26772} and length({26773})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','6be0e3bc49134d8c9823736e1c4dcb98',''), ('20492','{26774}<>{26775} and length({26776})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','a6c0fe000ca34b7490c4a56f5c57346b',''), ('20493','{26777}<>{26778} and length({26779})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','660fbce28f334bb79afc6a9ba8596316',''), ('20494','{26780}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','ac97984b2153426c89247bd88797b4a2',''), ('20495','{26781}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','62fb5cb70674493ea1c7db4df42cf8f4',''), ('20502','{26794} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','889e25ecd5104014bd798cb577f59bd5',''), ('20503','{26795} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','8733d8912d8d400b9dafcc845854cb3a',''), ('20504','{26796} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','a801c0260917479f9f905a8b32085fc6',''), ('20505','{26797} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','cfcecfe761064f5baa312a0c54633261',''), ('20506','{26798}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','0a36e10a866e455f98f1954b4c663d64',''), ('20507','{31724}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31725}-{31726})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31727}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','7e550dcc8005425db0c20785d3818466',''), ('20508','{31728}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31729}-{31730})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31731}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','92d4b209c4e249fcab9d72eae2da160d',''), ('20519','{26830}<>{26831} and length({26832})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','1a920e11feb447deba1aa2d8fbb24f85',''), ('20520','{26833}<>{26834} and length({26835})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','1167a5bf26e24eb89479904841ef890b',''), ('20521','{26836}<>{26837} and length({26838})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','4a1aacf6350844e5858c3eed35b544eb',''), ('20522','{26839}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','f58eb093a57948f1bf674be6a207b0d3',''), ('20523','{26840}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','4a30b05ebe764253bfe646c3d68aef41',''), ('20530','{26853} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','35142b5bd9064d63a661b07b24381564',''), ('20531','{26854} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','ddd0efc2e01e4b6ca2948a5d3973dcd5',''), ('20532','{26855} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','90f360f3394d49a19413dcbf0dc0eab6',''), ('20533','{26856} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','f753e8c0d5fe43779fc3c427fcb087dd',''), ('20534','{26857}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','0ec46a410f97442fb9308a0922d43648',''), ('20535','{31732}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31733}-{31734})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31735}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','1f6e2a2bdf04499eabb18118fdbfcc4f',''), ('20536','{31736}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31737}-{31738})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31739}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','7fe3563d08ad470f909545c146b1b2c1',''), ('20547','{26889}<>{26890} and length({26891})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','2a00f0a84a274bf98254d1bbb9f1ad93',''), ('20548','{26892}<>{26893} and length({26894})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','519f97f0275f4e9caf7e320e932ee911',''), ('20549','{26895}<>{26896} and length({26897})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','97933a27c0eb4e0cb67fceb9877641d9',''), ('20550','{26898}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','72662034829d4d008f19cd3231b18bd1',''), ('20551','{26899}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','c5c743eec5fd430385a3ab3f1b9ccd61',''), ('20558','{26912} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','89422cbc4e294e5392352b3daa42a27b',''), ('20559','{26913} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','1f5dbc7e06fb4a48a516f21095ad95eb',''), ('20560','{26914} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','13229b29783c42119d9242d4e2d795ef',''), ('20561','{26915} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','acdd956a5d49476a86ced8d9ac561979',''), ('20562','{26916}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','a6f2bfc1407f4b96ac51aa7ec69b234d',''), ('20563','{31740}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31741}-{31742})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31743}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','d48fafd1402e4774a5e7c2d854e3ebbc',''), ('20564','{31744}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31745}-{31746})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31747}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','802aa708fd8e42fdaa61d1aa3394c58b',''), ('20575','{26948}<>{26949} and length({26950})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','fe286c10b77a4178b53136d088c09977',''), ('20576','{26951}<>{26952} and length({26953})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','b84f0bcdae4a4ef7887877b7f054ca3c',''), ('20577','{26954}<>{26955} and length({26956})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','8d2847030c154c958ae3cc72841f7b73',''), ('20578','{26957}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','4e4df5360a9b40b5a4f6d1aa706d23d7',''), ('20579','{26958}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','4d838f76e7d14c73a89a6a8cab585e77',''), ('20586','{26971} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','bca448bbec634737adbc1935bfb96395',''), ('20587','{26972} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','d7894ea315a24f42936eb44d85f60a8a',''), ('20588','{26973} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','fb73c03756734684b5b1078de2d485ab',''), ('20589','{26974} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','c0bc438b1ee248109e3471d6af153c14',''), ('20590','{26975}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','91ea1c2de293413c9b24932282a673ee',''), ('20591','{31748}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31749}-{31750})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31751}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','21b45f8f32344ed9a2323ef940fdb564',''), ('20592','{31752}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31753}-{31754})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31755}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','13db9f1c26754199937d4447976591ce',''), ('20603','{27007}<>{27008} and length({27009})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','2deae9223199442b895df43cb2b0904c',''), ('20604','{27010}<>{27011} and length({27012})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','ae8533bd4fa84d8f8e8969498d5530ed',''), ('20605','{27013}<>{27014} and length({27015})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','b0b935a8197e4188962b7d859d2b412b',''), ('20606','{27016}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','f9d7f4390619408eb5a20baa5e4ebbfe',''), ('20607','{27017}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','acf19a5a27674b8db8b4913257534506',''), ('20614','{27030} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','c5709dbe38eb40e1ae8ae0cc564543b4',''), ('20615','{27031} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','96e644aa6f2c4399853ab05a7ada5afa',''), ('20616','{27032} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','d4e38db917ca40da8ebd3da22442696e',''), ('20617','{27033} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','5837ae05e1694017ad026d215af06683',''), ('20618','{27034}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','722a78d3b55d4a66be1dba0b705704d8',''), ('20619','{31756}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31757}-{31758})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31759}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','3e812901cab94bbc9d5f15e8b70da4a0',''), ('20620','{31760}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31761}-{31762})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31763}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','bee86ff10a084f76b4b266aa5e20df22',''), ('20631','{27066}<>{27067} and length({27068})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','9f571e3e7d7b4025a62cb4d61684a63f',''), ('20632','{27069}<>{27070} and length({27071})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','6c56d13df5a84f8c81e3b11b5979fe2f',''), ('20633','{27072}<>{27073} and length({27074})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','cbc5e573f7ff4d4186782e18abb18323',''), ('20634','{27075}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','41dc7494d2d04e2e8fd9f31d744cdf94',''), ('20635','{27076}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','40af64475bf54290b74ac2ed6f3183f2',''), ('20642','{27089} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','6b1a507739c940ffb528a41d5af76069',''), ('20643','{27090} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','0b2b0b8cdf964cc48d7ece2be62d115e',''), ('20644','{27091} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','4d271b81500f4513a1408dfa8f0e1e29',''), ('20645','{27092} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','8875480665294938bee208b23d416d34',''), ('20646','{27093}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','c529624e4a254ecba9659fc9d43f9df4',''), ('20647','{31764}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31765}-{31766})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31767}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','47a1f1bee8f64507900f48de26bba052',''), ('20648','{31768}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31769}-{31770})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31771}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','419bd5a8f90d4e879be3707a3ad3f551',''), ('20659','{27125}<>{27126} and length({27127})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','9c552d88fc734c2d8b9976831396dcc4',''), ('20660','{27128}<>{27129} and length({27130})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','59393bfb9a2b4fe9acf09735ab9b6dd7',''), ('20661','{27131}<>{27132} and length({27133})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','d517281567044119bdc82dccb20c9724',''), ('20662','{27134}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','ce1f7003b6dc4ca6a0e435c06aba6e1a',''), ('20663','{27135}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','8ab046f6fb47499ebe6d34ad8ce20f59',''), ('20670','{27148} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','3a29ebeb278444eb9940c6840b2e0a4e',''), ('20671','{27149} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','4c0dfdccda7a4a0a9b889b4a643d02e4',''), ('20672','{27150} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','858fcf334125405aaed104a0f50d4097',''), ('20673','{27151} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','d6e6ca097afd4c1fa12e1c67f9a575db',''), ('20674','{27152}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','f0f924ded1064d70964e5669eb1e3a62',''), ('20675','{31772}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31773}-{31774})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31775}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','e665c0343ae140d08b8ae96b6c28f4d4',''), ('20676','{31776}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31777}-{31778})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31779}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','c685347700044a78a38e4e892d3dfec4',''), ('20687','{27184}<>{27185} and length({27186})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','84b149555c7a4ba896260eef821e65e4',''), ('20688','{27187}<>{27188} and length({27189})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','5444e9d45fd5482b9913f33a0e46afac',''), ('20689','{27190}<>{27191} and length({27192})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','7297756962334a7e92bec8fba24cc346',''), ('20690','{27193}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','3f856c135f7a4124b606a368ddbaea70',''), ('20691','{27194}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','660252e504e242f39a8116ef95593088',''), ('20698','{27207} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','9e5b175a657040acb532677e5e3efd4e',''), ('20699','{27208} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','3e5f0494aec9433ab7d7637fab2095f2',''), ('20700','{27209} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','52cfc831296f4ebbb9bb9d66a164c129',''), ('20701','{27210} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','22da96573bbd471785f694bbdbca7cd1',''), ('20702','{27211}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','c5d53608ecb34d68a3d1ffbe5807dabb',''), ('20703','{31780}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31781}-{31782})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31783}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','388504f73df94d21bea32bdbda0fadb7',''), ('20704','{31784}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31785}-{31786})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31787}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','ef0ef8ddead24672adf8e65eed13f60f',''), ('20715','{27243}<>{27244} and length({27245})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','e0f5e6575df14242a14813cf95f763d2',''), ('20716','{27246}<>{27247} and length({27248})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','09d6eff5d5e24ba9801d29a594913c5e',''), ('20717','{27249}<>{27250} and length({27251})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','2cfe859d44ee4088b3a62f832391091f',''), ('20718','{27252}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','f32f4750dd6f469d84560e0a27dad550',''), ('20719','{27253}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','544c2e61e9b0434e962823246974ede8',''), ('20726','{27266} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','bd8b0cbb30b144bc82b91f508de543e1',''), ('20727','{27267} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','b2c222622bd8405a8f3f8138969e4d00',''), ('20728','{27268} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','3fe7fc4d601143a58ebd8affe7ee78a5',''), ('20729','{27269} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','c70991ad8d2b460bb2b4860b16ba45b4',''), ('20730','{27270}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','555d5c8083fe42f09096097e1bb87499',''), ('20731','{31788}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31789}-{31790})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31791}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','728a9e55d14b4b859caf170cc910879e',''), ('20732','{31792}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31793}-{31794})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31795}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','12ffbe36a2e14c139f5d662ea509912d',''), ('20743','{27302}<>{27303} and length({27304})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','0bc8753d55d047cd870eb7bd2db7849c',''), ('20744','{27305}<>{27306} and length({27307})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','4a87af156bc44861bcd76514d60183f5',''), ('20745','{27308}<>{27309} and length({27310})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','b5b061ff649547e6b63bdd9dc545c652',''), ('20746','{27311}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','8e0b50b2687a4259ba9b9457c6a2d911',''), ('20747','{27312}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','c90699faebaa41ccb0910a08ca56c014',''), ('20754','{27325} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','40ec9ac31c784b6f8de50945dff9f414',''), ('20755','{27326} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','e29bb10956c64db1ba0809112449de26',''), ('20756','{27327} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','ae6d45eb89244d67b38408dcaf20424f',''), ('20757','{27328} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','a02267b7d6d4497b98c1c2e465f92796',''), ('20758','{27329}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','58d63b8b9c404a5382b44e25bf091feb',''), ('20759','{31796}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31797}-{31798})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31799}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','a140f5a63cba423c8f59439efd8d501f',''), ('20760','{31800}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31801}-{31802})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31803}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','c3e3d8a9bcac473e8c641f116355ccbb',''), ('20771','{27361}<>{27362} and length({27363})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','5924d076b0724fbcaa2090c786b20068',''), ('20772','{27364}<>{27365} and length({27366})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','5df5c72272694a7f8a698ddda7b662cb',''), ('20773','{27367}<>{27368} and length({27369})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','18fce4771aad421e949e78ec9484a888',''), ('20774','{27370}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','454c77360eb44d6aacf067327d1aecbe',''), ('20775','{27371}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','00f27ff850b046faabdaeeae1b2a2fcd',''), ('20782','{27384} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','32cb8289aea54c4099ee36d58dd31b72',''), ('20783','{27385} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','32764a33204e41bfb1c5395a52302c27',''), ('20784','{27386} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','eab70beb20504b1d98be8d7cd82031fa',''), ('20785','{27387} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','c08f7ab1fb374e7db4f4c0525009cd93',''), ('20786','{27388}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','04bd0420c7474d90b10045328c5027a0',''), ('20787','{31804}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31805}-{31806})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31807}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','a4a3e86a03684038ba779bac1041eaec',''), ('20788','{31808}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31809}-{31810})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31811}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','7202bab5700444f58d4eabd9433f0efd',''), ('20799','{27420}<>{27421} and length({27422})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','2349e4eac44548349cc9f7806f8726db',''), ('20800','{27423}<>{27424} and length({27425})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','f43a3aa77c8e4e9f81add08ac624be88',''), ('20801','{27426}<>{27427} and length({27428})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','76d4c429deaf491982b7b1049634550a',''), ('20802','{27429}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','cfca5a71a1534e199e9c3b867b8c6c3b',''), ('20803','{27430}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','1edf137678504b9d8dced37d9a1d3f5a',''), ('20810','{27443} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','d9acbd875f514ce8a19638125c096aed',''), ('20811','{27444} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','569c192c940a49f7b180162e4b83be24',''), ('20812','{27445} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','7b31d412d15140d7be66d4b9963150de',''), ('20813','{27446} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','7512216ac6e24d5f88a187621d0d7285',''), ('20814','{27447}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','bcb6d9302db14ee3a7dd120304b7a5a5',''), ('20815','{31812}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31813}-{31814})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31815}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','c3e8a5f013f34395afeffc5eabbe01ac',''), ('20816','{31816}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31817}-{31818})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31819}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','2199168e964c4bd79ad06de3c1226f1d',''), ('20827','{27479}<>{27480} and length({27481})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','1f05ddb5fc1c4d18a5d9f5755b22a080',''), ('20828','{27482}<>{27483} and length({27484})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','9bc744f5b70748e68b13933b618f9550',''), ('20829','{27485}<>{27486} and length({27487})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','72cedbd4d23948c3941d5b2011f5cdab',''), ('20830','{27488}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','971f8265db9348ce942f4e0adb49bd1a',''), ('20831','{27489}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','636401049a4e46c48e7b89e2b0c8c72b',''), ('20838','{27502} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','a7d31dad39524586ad9cca3c52ab0802',''), ('20839','{27503} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','abae11ffeea140debcd8f32c34f10f31',''), ('20840','{27504} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','f7804db0113d42a49322193872ddc616',''), ('20841','{27505} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','73f6c8071582400b952f945388a181c2',''), ('20842','{27506}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','e159cf84958443ec9d148c3e83cf8e41',''), ('20843','{31820}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31821}-{31822})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31823}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','c8c7b25b435e4157a22c8f4d6fce9ea5',''), ('20844','{31824}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31825}-{31826})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31827}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','e63fb086de874cfe86e0d03d2d57f157',''), ('20855','{27538}<>{27539} and length({27540})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','a5f7839a9a0d4272ae0312b8954a9313',''), ('20856','{27541}<>{27542} and length({27543})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','672fcd1d34374373b0992d80d46d885c',''), ('20857','{27544}<>{27545} and length({27546})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','7538c487e4f14cdcb6fc3a6b415ed559',''), ('20858','{27547}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','6975f0abf1504caebd3a13193da1bdcc',''), ('20859','{27548}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','f6b89443734b4c79920496ff9244f6d3',''), ('20866','{27561} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','6eb10d964aaf44bb8849f35f39e6b909',''), ('20867','{27562} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','c8c83d70279b461c95f5c8f4deb59d7e',''), ('20868','{27563} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','557d79e0013b4b91a16ce2a0c507256a',''), ('20869','{27564} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','fddeb17ef9dd4876b9ba818d732cbd40',''), ('20870','{27565}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','cc74f3058c1945a59c95d49e3fdbb47b',''), ('20871','{31828}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31829}-{31830})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31831}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','67f66bb09eba4cb2b823fbf96391e0ca',''), ('20872','{31832}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31833}-{31834})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31835}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','f28661579bf04f6eaa1bc06f92f8d8f2',''), ('20883','{27597}<>{27598} and length({27599})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','4a440903276347d9827dcfa3653d496c',''), ('20884','{27600}<>{27601} and length({27602})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','7b48c923659d4569b24692da4037b824',''), ('20885','{27603}<>{27604} and length({27605})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','80b76f59fdfd407ea5c3294736113749',''), ('20886','{27606}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','d55a4746f70a4d539a9fadd9a335794f',''), ('20887','{27607}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','e20e628acaae44d58c7f385f98cdb126',''), ('20894','{27620} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','6dcde689dccb4221bffd0c36f000dcf2',''), ('20895','{27621} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','d8d809f110c044bdab269c961b947f0a',''), ('20896','{27622} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','a935e2731aac466bb21fd0e3c092cb7c',''), ('20897','{27623} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','2193529f37424dc29976bae9681cfff9',''), ('20898','{27624}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','0f33b00af9164264b0d6fc91831a343e',''), ('20899','{31836}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31837}-{31838})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31839}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','ccbd9c9dab504a7bab4f403386e5178f',''), ('20900','{31840}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31841}-{31842})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31843}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','9b4adeaeed41450f839967a3d049b027',''), ('20911','{27656}<>{27657} and length({27658})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','a61fd73d9dea4257bfbfc3d705475ae5',''), ('20912','{27659}<>{27660} and length({27661})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','c31be8015ce640629af6cd3ed09dc617',''), ('20913','{27662}<>{27663} and length({27664})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','991217a368944e34abe41bd465921a47',''), ('20914','{27665}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','5b0479439c444be284cac4c699f64b53',''), ('20915','{27666}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','08f3a59bf7324ff4904737f2c6b94989',''), ('20922','{27679} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','001e4d76e846438592bd8c7b76025e51',''), ('20923','{27680} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','c8adfeee1f4b42b38ba756919d18ffce',''), ('20924','{27681} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','c826e712355c4c40a4699346581c1032',''), ('20925','{27682} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','ab44544163f14c31b2c45fe890b62ea4',''), ('20926','{27683}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','7830a4b9c5b24762ab083a24c978cf44',''), ('20927','{31844}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31845}-{31846})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31847}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','7ec2dad6b1de421d800a086ad45e8fdd',''), ('20928','{31848}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31849}-{31850})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31851}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','e91014be808f40ceba0123f0e59e9975',''), ('20939','{27715}<>{27716} and length({27717})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','d6de889ff3dc4c07a57bb5396a25a760',''), ('20940','{27718}<>{27719} and length({27720})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','6c509b4e298e4df7b4e9cecc064dc8eb',''), ('20941','{27721}<>{27722} and length({27723})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','aafa92f02db4429b8ea5c43f1e13ad4e',''), ('20942','{27724}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','570f6f393cf24ee9b0731978bca9d7d7',''), ('20943','{27725}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','745e204551104bbca3a2db75f55f04cc',''), ('20950','{27738} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','77565b5e0dbb4415b5f24ebe91d6e5b9',''), ('20951','{27739} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','271d7342775141cabcebb53ecb7e9a14',''), ('20952','{27740} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','bea4466e83fd4733b269d92657e1107e',''), ('20953','{27741} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','53ef6c7af6114f5e8f76d15aa82d33d8',''), ('20954','{27742}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','67152198cf984ffeb453d6f149aae38f',''), ('20955','{31852}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31853}-{31854})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31855}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','da49d6b3b96c4c32b1439d13a289a2ef',''), ('20956','{31856}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31857}-{31858})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31859}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','dd9a814580fd47be8982b9ca83217070',''), ('20967','{27774}<>{27775} and length({27776})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','81f162170b3f4cf0a5376f43ba8c826d',''), ('20968','{27777}<>{27778} and length({27779})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','ba2f0b5e00a94aff9db6b436a64b91bd',''), ('20969','{27780}<>{27781} and length({27782})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','857cc7715ae243879509d5ba827f0533',''), ('20970','{27783}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','f328399a209d4adaa8fed3dc9577539f',''), ('20971','{27784}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','ecb6b125d94643cf80b38078f1d42ad2',''), ('20978','{27797} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','09762405d2114ec79510f7954dcdae86',''), ('20979','{27798} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','3f6e42b8dbcb4cd4b47c067fe5b7d1ea',''), ('20980','{27799} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','e4778ad9d8ee4568b212241439a79e27',''), ('20981','{27800} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','3eb7aa8563c54b72b7193ef83793acc0',''), ('20982','{27801}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','c3737199ab5342829ca6fae6d1de74f9',''), ('20983','{31860}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31861}-{31862})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31863}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','b911cb33e9044a599d10c06e5b0f90fb',''), ('20984','{31864}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31865}-{31866})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31867}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','eada2d5bde184483bc0496677aff2c3c',''), ('20995','{27833}<>{27834} and length({27835})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','fe1e4e312e5a4ee48fecb03895b51201',''), ('20996','{27836}<>{27837} and length({27838})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','250374059d8a45f78107f1f5b9bda7b1',''), ('20997','{27839}<>{27840} and length({27841})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','2615116273594f659184fdc9f2612c91',''), ('20998','{27842}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','851e15f5b81a43b3be5d3eda921c9430',''), ('20999','{27843}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','87ea6ae2f5374f68acfbd4d368c8aae8',''), ('21006','{27856} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','573a668131014af2bc2989edbcdbf8b8',''), ('21007','{27857} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','8b6d36e582d34ed7bdec1aaa406d0939',''), ('21008','{27858} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','7e8ac19ee7aa43d7bc849f5a093e846a',''), ('21009','{27859} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','36404ef697ea49329f0572be3940fbd6',''), ('21010','{27860}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','f75775427c074c83a1002b716733aa7f',''), ('21011','{31868}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31869}-{31870})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31871}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','6d5b2060b6c946c7835867727dec0f87',''), ('21012','{31872}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31873}-{31874})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31875}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','e05e7d6b7b6c45f7974f39a258a754f8',''), ('21023','{27892}<>{27893} and length({27894})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','bdc6d6b5a4be4bba95f1635d8cf165d7',''), ('21024','{27895}<>{27896} and length({27897})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','9bcc039b8f1e4b3c84414d0d62d6c52d',''), ('21025','{27898}<>{27899} and length({27900})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','21dd8dc14526470493b31ebddf14574c',''), ('21026','{27901}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','bdd1ff379f214b1896c0e7ee5d6e6e16',''), ('21027','{27902}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','ca6c0d5b13a24f6b9e28296818ae1624',''), ('21034','{27915} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','9a48a8512ac74bff9c44733842d21693',''), ('21035','{27916} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','c5e6899f9dee47d7812366a26e5191d9',''), ('21036','{27917} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','207bea70b82e4a6087f104cb1ec1f8a2',''), ('21037','{27918} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','3b7135afe54a4acfbf5d14510f6b22c1',''), ('21038','{27919}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','de36b7b78e8b4bea936347995a0eaeb1',''), ('21039','{31876}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31877}-{31878})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31879}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','f303b6ce2be34c8ca0f51e5c73e47715',''), ('21040','{31880}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31881}-{31882})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31883}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','cdef153d2e914c12ba3303c938489359',''), ('21051','{27951}<>{27952} and length({27953})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','8fb6d0748d5a4e589e397f0523944bc5',''), ('21052','{27954}<>{27955} and length({27956})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','c76bf7b6d13b49a4916a00709ee7c9ba',''), ('21053','{27957}<>{27958} and length({27959})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','b5cddf34bbe74bb08663b85c83035f57',''), ('21054','{27960}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','4a08a50891814c0d813c39a4615bffac',''), ('21055','{27961}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','4910a9cc5fdf4eefa05e1e0f339828c4',''), ('21062','{27974} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','ef64375fbe9b456d895d5fa75b524bc4',''), ('21063','{27975} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','ccc2b5cabd164f2c94268bd8fbb17299',''), ('21064','{27976} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','07ac669be6d14c878ed3824adbcaa035',''), ('21065','{27977} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','e351a08588664f29aab5a784ff3bbc1c',''), ('21066','{27978}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','9361f7dd8cba43e4a237678d00eb26b6',''), ('21067','{31884}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31885}-{31886})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31887}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','cd0ef8f6c93340a1aadd0559ef302476',''), ('21068','{31888}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31889}-{31890})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31891}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','0460d9d1f873497ea57430cf067c786e',''), ('21079','{28010}<>{28011} and length({28012})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','0c58b3a529a541c5813e6d374fb1af38',''), ('21080','{28013}<>{28014} and length({28015})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','3a683df3455e4c3b9693f70d7cc2312c',''), ('21081','{28016}<>{28017} and length({28018})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','752e3b231fb9428baa28a7dffd90b2a5',''), ('21082','{28019}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','3887f8ec0f8a4eadb45b3d3388fdd3bf',''), ('21083','{28020}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','2d0e7e1624ef40de9a7ba351917ec339',''), ('21090','{28033} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','1491814409194648a9d98bcb18ac77cc',''), ('21091','{28034} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','e7a5fc01703c4474add6aac174ef5b16',''), ('21092','{28035} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','d529f287404945b9a265fefff65768d5',''), ('21093','{28036} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','2f85f97d29774922b6fecc19379726d8',''), ('21094','{28037}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','92cf3f4cf7a64de58347d2e459321f92',''), ('21095','{31892}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31893}-{31894})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31895}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','927bf28b0d7f4409ab7b2de288e59b66',''), ('21096','{31896}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31897}-{31898})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31899}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','ca6639ac0950404da35738314aa3b88e',''), ('21107','{28069}<>{28070} and length({28071})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','86d3bc7830274e24b19f0b7120f9c957',''), ('21108','{28072}<>{28073} and length({28074})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','8964055d1c7445e68b9ba2eb30faf1fc',''), ('21109','{28075}<>{28076} and length({28077})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','ad61f9029ba449aab240fee852d1e49e',''), ('21110','{28078}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','660db85a472349e7878bcdf41faa4689',''), ('21111','{28079}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','6fa6e471c9594ea9a65d54a72a7a7b54',''), ('21118','{28092} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','30101628e09d4c67a1d4d7938b7b5674',''), ('21119','{28093} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','179fb6a3947f4a4bad4d914dfbf2727e',''), ('21120','{28094} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','d92f9fa8a9a648ad817295ba5b26c254',''), ('21121','{28095} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','df1dc76e73904e35850f1b104dca01ea',''), ('21122','{28096}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','fb10d55898f74edbb7a1541481cbde49',''), ('21123','{31900}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31901}-{31902})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31903}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','2ba297940326432dbbc91974ed99d53d',''), ('21124','{31904}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31905}-{31906})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31907}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','e3054ae302bd4c29b81b6f4c58c39021',''), ('21135','{28128}<>{28129} and length({28130})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','4b2840d437844c54aa8328a2af6ab16a',''), ('21136','{28131}<>{28132} and length({28133})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','356423e8d963491c84c0ff910a324db9',''), ('21137','{28134}<>{28135} and length({28136})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','381ec628763d43e8a7f287d4bab024ee',''), ('21138','{28137}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','35b88fa6b15845e78a3a7211fe2ed0af',''), ('21139','{28138}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','e40966f36f804bbab518eb0cbc711fca',''), ('21146','{28151} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','1119a5651b6b469199e6cd8484ea000b',''), ('21147','{28152} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','22c7a42c10524dfab69c6e9566a28150',''), ('21148','{28153} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','14f69778aac0476290fd2ddff01693fd',''), ('21149','{28154} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','a6e1255d7904488788f4e5358b4b1a70',''), ('21150','{28155}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','d332b384052e4538869186b6c44ae332',''), ('21151','{31908}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31909}-{31910})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31911}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','5f17a45877b44fbab75b614db365db47',''), ('21152','{31912}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31913}-{31914})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31915}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','c5c80f5a24484c05b62d7bb5474f2091',''), ('21163','{28187}<>{28188} and length({28189})>0','MikroTik: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','c9b18f3abf444a849606d278d9db0924',''), ('21164','{28190}<>{28191} and length({28192})>0','MikroTik: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: Device has been replaced (new serial number received)','42d7e9c9f03e4b2a8af09b1c54913bba',''), ('21165','{28193}<>{28194} and length({28195})>0','MikroTik: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','4400b69762f948f78365b74569ed54af',''), ('21166','{28196}>{$MEMORY.UTIL.MAX}','MikroTik: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','MikroTik: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','348923e33c3049ea8b27a5d920528300',''), ('21167','{28197}>{$CPU.UTIL.CRIT}','MikroTik: #{#SNMPINDEX}: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','MikroTik: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','6c1a7d6fd11541fb93a8e73f8712db83',''), ('21174','{28210} < {$LTEMODEM.RSRP.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','0161455f62224813a81ed396716437db',''), ('21175','{28211} < {$LTEMODEM.RSRQ.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','c54da31a0d9f4219b8f5a4f47e30fb4e',''), ('21176','{28212} < {$LTEMODEM.RSSI.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','5e1e679028cf499d80484e1fc11e8ba6',''), ('21177','{28213} < {$LTEMODEM.SINR.MIN.WARN}','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','','0','2','',NULL,'0','2','0','','0','','0','','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','e1610c79b6704dfc948f77117d928b5d',''), ('21178','{28214}<>"running-ap"','MikroTik: Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','','0','2','Access point interface can be not running by different reasons - disabled interface, power off, network link down.',NULL,'0','2','0','','0','','0','','0','','0c4ff636a9834ee39a16032fd5cd2048',''), ('21179','{31916}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and (({31917}-{31918})<{$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"} or {31919}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low','','0','3','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%)','1019a14b0998497daff1707692bc38ac',''), ('21180','{31920}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and (({31921}-{31922})<{$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"} or {31923}<1d)','MikroTik: Disk-{#SNMPINDEX}: Disk space is low','','0','2','Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}. Second condition should be one of the following: - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:"Disk-{#SNMPINDEX}"}. - The disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','MikroTik: Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%)','1c431594950944138617449b126c5d92',''), ('21181','length({28223})>0','VeloCloud: There are errors in aggregate script item','','0','2','There are errors in aggregate script item.',NULL,'0','0','0','','0','','0','','0','','a0623655a2fa4f60962ad560b8bb5a13',''), ('21182','{28224}=1','VeloCloud: Failed to fetch aggregate data','','0','3','Zabbix has not received any data for items for the last 30 minutes.',NULL,'0','0','0','','0','','1','','0','VeloCloud: Failed to fetch aggregate data (or no data for 30m)','5a95d9c614e74c2c8b6181fc8dff2226',''), ('21183','{28225}<>{28226} and length({28227})>0','VeloCloud: Orchestrator build has been changed','','0','1','Velocloud Orchestrator build has been changed.',NULL,'0','0','0','','0','','1','','0','','37c16b3cbd8b4680ab85a1fea819611f',''), ('21184','{28228}<>{28229} and length({28230})>0','VeloCloud: Orchestrator version has been changed','','0','1','Velocloud Orchestrator version has been changed.',NULL,'0','0','0','','0','','1','','0','','a1d8e4d61a804c8fb11b33f590f0885c',''), ('21185','{28231}<>{28232}','VeloCloud: System properties have changed','','0','1','System properties have changed.',NULL,'0','0','0','','0','','1','','0','','58541dfe798843fa822276e84a32b919',''), ('21186','{28233}=3','VeloCloud: Edge [{#NAME}]: HA state is in "FAILED" state','','0','2','High availability state is "FAILED".',NULL,'0','2','0','','0','','0','','0','','075d35e3ed074b9daf01864b111945c7',''), ('21187','{28234}=0','VeloCloud: Edge [{#NAME}]: Edge is in "OFFLINE" state','','0','2','Edge state is "OFFLINE".',NULL,'0','2','0','','0','','0','','0','','962d2d0c6f124424b2e5a7aca89d293f',''), ('21188','{28235}>0 and {28235}<600','VeloCloud: Edge [{#NAME}]: Edge has been restarted','','0','2','Edge was restarted.',NULL,'0','2','0','','0','','0','','0','VeloCloud: Edge [{#NAME}]: Edge has been restarted (uptime < 10m)','156d96052fd54606828cc53484794bb2',''), ('21189','{28236}<>{28237}','VeloCloud: Gateway [{#NAME}]: The number of connected edges is changed','','0','2','The number of connected edges is changed.',NULL,'0','2','0','','0','','1','','0','','f0d7bdb2ac3540258ab6a276b43a382c',''), ('21190','{28238}>0 and {28238}<600','VeloCloud: Gateway [{#NAME}]: Gateway has been restarted','','0','2','Gateway was restarted.',NULL,'0','2','0','','0','','0','','0','VeloCloud: Gateway [{#NAME}]: Gateway has been restarted (uptime < 10m)','e51ea2da27284067bd3ec8fa4faffdde',''), ('21191','{28239}<>1','VeloCloud: Link [{#NAME}]:[{#IP}]: Link state is not "STABLE"','','0','2','Link state is not "STABLE".',NULL,'0','2','0','','0','','0','','0','','abceaab09aea4cb482dc4b554502429b',''), ('21194','{28242}<>{28243}','Zabbix server: Cluster node [{#NODE.NAME}]: Status changed','','0','1','The state of the node has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','8d48978fb5724d19a950aa6eb8a3dd75',''), ('21196','{28246}<>{28247}','Zabbix server: Cluster node [{#NODE.NAME}]: Status changed','','0','1','The state of the node has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','5d68b55175924cb4adde600a019496c4',''), ('21197','{33740}>{$ZABBIX.SERVER.UTIL.MAX:"ODBC poller"}','Zabbix server: Utilization of ODBC poller processes is high','','0','3','Indicates potential performance issues with the ODBC poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33740}<{$ZABBIX.SERVER.UTIL.MIN:"ODBC poller"}','0','','0','','0','Zabbix server: Utilization of ODBC poller processes over {$ZABBIX.SERVER.UTIL.MAX:"ODBC poller"}%','f536b921e9444c6eb0ac805ab9302af9',''), ('21199','{33838}>{$ZABBIX.SERVER.UTIL.MAX:"ODBC poller"}','Zabbix server: Utilization of ODBC poller processes is high','','0','3','Indicates potential performance issues with the ODBC poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33838}<{$ZABBIX.SERVER.UTIL.MIN:"ODBC poller"}','0','','0','','0','Zabbix server: Utilization of ODBC poller processes over {$ZABBIX.SERVER.UTIL.MAX:"ODBC poller"}%','eadd70080005430c8b11666d7e93a095',''), ('21200','{28406}>{$ZABBIX.PROXY.UTIL.MAX:"ODBC poller"}','Zabbix proxy: Utilization of ODBC poller processes is high','','0','3','Indicates potential performance issues with the ODBC poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28406}<{$ZABBIX.PROXY.UTIL.MIN:"ODBC poller"}','0','','0','','0','Zabbix proxy: Utilization of ODBC poller processes over {$ZABBIX.PROXY.UTIL.MAX:"ODBC poller"}%','7f83ff01200c4862aa22057b079da6f8',''), ('21201','{28375}>{$ZABBIX.PROXY.UTIL.MAX:"ODBC poller"}','Zabbix proxy: Utilization of ODBC poller processes is high','','0','3','Indicates potential performance issues with the ODBC poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28375}<{$ZABBIX.PROXY.UTIL.MIN:"ODBC poller"}','0','','0','','0','Zabbix proxy: Utilization of ODBC poller processes over {$ZABBIX.PROXY.UTIL.MAX:"ODBC poller"}%','3177430235ac4eeaa23b8c39987989cc',''), ('21202','{28259}>{$KUBE.API.HTTP.SERVER.ERROR}','Kubernetes API server: Too many server errors','','0','2','"Kubernetes API server is experiencing high error rate (with 5xx HTTP code).',NULL,'0','0','0','','0','','0','','0','Kubernetes API server: Too many server errors (over {$KUBE.API.HTTP.SERVER.ERROR} for 5m)','0e1ef1630b5d4cb98270564f324f5382',''), ('21205','{28262}>{$KUBE.API.HTTP.CLIENT.ERROR}','Kubernetes API server: Too many client errors','','0','2','"Kubernetes API client is experiencing high error rate (with 5xx HTTP code).',NULL,'0','0','0','','0','','0','','0','Kubernetes API server: Too many client errors (over {$KUBE.API.HTTP.CLIENT.ERROR} for 5m)','4c79888da91448738092c86e5f427a6a',''), ('21206','{28263}>{$KUBE.CONTROLLER.HTTP.CLIENT.ERROR}','Kubernetes Controller manager: Too many HTTP client errors','','0','2','"Kubernetes Controller manager is experiencing high error rate (with 5xx HTTP code).',NULL,'0','0','0','','0','','0','','0','Kubernetes Controller manager: Too many HTTP client errors (over {$KUBE.CONTROLLER.HTTP.CLIENT.ERROR} for 5m)','13c32daebddd454bb5908a9a27c3a76f',''), ('21207','length({28264})>0','Kubernetes nodes: Failed to get nodes','','0','2','',NULL,'0','0','0','','0','','0','','0','','827016cf41254f38aa58ff99e22f9e6f',''), ('21223','({33019}-{33020})>1','Kubernetes nodes: Node [{#NODE}] Namespace [{#NAMESPACE}] Pod [{#POD}]: Pod is crash looping','','0','2','Containers of the pod keep restarting. This most likely indicates that the pod is in the CrashLoopBackOff state.',NULL,'0','2','0','','0','','0','','0','','8f1808cd67614cda959ec70e92a59235',''), ('21224','{28291}>=9','Kubernetes nodes: Node [{#NODE}] Namespace [{#NAMESPACE}] Pod [{#POD}] Status: Kubernetes Pod not healthy','','0','4','Pod has been in a non-ready state for longer than 10 minutes.',NULL,'0','2','0','','0','','0','','0','','e565d243bef84007b09addb22ea3d759',''), ('21225','{28292}>{$KUBE.SCHEDULER.HTTP.CLIENT.ERROR}','Kubernetes Scheduler: Too many REST Client errors','','0','2','"Kubernetes Scheduler REST Client requests is experiencing high error rate (with 5xx HTTP code).',NULL,'0','0','0','','0','','0','','0','Kubernetes Scheduler: Too many REST Client errors (over {$KUBE.SCHEDULER.HTTP.CLIENT.ERROR} for 5m)','ea92474a61214053b2cd20775817010e',''), ('21226','{28293}>{$KUBE.SCHEDULER.ERROR}','Kubernetes Scheduler: Too many schedule attempts with errors','','0','2','Number of attempts to schedule pods with ''error'' result is too high. ''error'' means an internal scheduler problem.',NULL,'0','0','0','','0','','0','','0','Kubernetes Scheduler: Too many schedule attempts with errors (over {$KUBE.SCHEDULER.ERROR} for 5m)','9116327bc14f4f189ca867b43187f6bd',''), ('21227','{28294}>{$KUBE.SCHEDULER.UNSCHEDULABLE}','Kubernetes Scheduler: Too many unschedulable pods','','0','2','Number of attempts to schedule pods with ''unschedulable'' result is too high. ''unschedulable'' means a pod could not be scheduled.',NULL,'0','0','0','','0','','0','','0','Kubernetes Scheduler: Too many unschedulable pods (over {$KUBE.SCHEDULER.UNSCHEDULABLE} for 5m)','16efba4ba322416fa2b8986273b83904',''), ('21228','{33943}=2 and length({33944})>0','Kubernetes cluster state: Component [{#NAME}] is unhealthy','','0','2','',NULL,'0','2','1','{33945}=3','0','','0','','0','','58828a692aa2418ba98c6d66a23f1506',''), ('21229','{32904}>0 and {32905}>=0 and {32906}>=0','Kubernetes cluster state: Namespace [{#NAMESPACE}] Deployment [{#NAME}]: Deployment replicas mismatch','','0','2','Deployment has not matched the expected number of replicas during the specified trigger evaluation period.',NULL,'0','2','0','','0','','0','Desired: {ITEM.LASTVALUE2}, available: {ITEM.LASTVALUE3}','0','','aa9f828467d84252aecc00dd342b5661',''), ('21230','{33946}=2 and length({33947})>0','Kubernetes cluster state: Livez [{#NAME}] is unhealthy','','0','2','',NULL,'0','2','1','{33948}=3','0','','0','','0','','9fcb23d29ac3481a8613515cc2cccfcf',''), ('21231','{28299}>0 or {28300}>0 or {28301}>0','Kubernetes cluster state: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Pod is not healthy','','0','4','',NULL,'0','2','0','','0','','0','','0','','5bf79dee7b974064b5848a7dcf6428c2',''), ('21232','({33021}-{33022})>1','Kubernetes cluster state: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Pod is crash looping','','0','2','Containers of the pod keep restarting. This most likely indicates that the pod is in the CrashLoopBackOff state.',NULL,'0','2','0','','0','','0','','0','','4656457043d04f4a9b829222ad071d22',''), ('21234','{33949}=2 and length({33950})>0','Kubernetes cluster state: Readyz [{#NAME}] is unhealthy','','0','2','',NULL,'0','2','1','{33951}=3','0','','0','','0','','1a88c2cf94d3444c9e5320776b323ce6',''), ('21235','{32907}>0 and {32908}>=0 and {32909}>=0','Kubernetes cluster state: Namespace [{#NAMESPACE}] RS [{#NAME}]: ReplicaSet mismatch','','0','2','ReplicaSet has not matched the expected number of replicas during the specified trigger evaluation period.',NULL,'0','2','0','','0','','0','Desired: {ITEM.LASTVALUE2}, ready: {ITEM.LASTVALUE3}','0','','8046757dbd3b459c9cd9f7bd369dd416',''), ('21236','{32910}>0 and {32911}>=0 and {32912}>=0','Kubernetes cluster state: Namespace [{#NAMESPACE}] StatefulSet [{#NAME}]: StatefulSet replicas mismatch','','0','2','StatefulSet has not matched the number of replicas during the specified trigger evaluation period.',NULL,'0','2','0','','0','','0','Replicas: {ITEM.LASTVALUE2}, ready: {ITEM.LASTVALUE3}','0','','469d6933f5494ca48a212cdc364058e0',''), ('21237','({28310} / {28311})<>1','Kubernetes cluster state: Namespace [{#NAMESPACE}] StatefulSet [{#NAME}]: StatefulSet is down','','0','4','',NULL,'0','2','0','','0','','0','','0','','c29a27fe5a0345c8af9e0d4e99b22dcb',''), ('21241','{28315}=0','PFSense: DHCP server is not running','','0','3','Please check DHCP server settings https://docs.netgate.com/pfsense/en/latest/services/dhcp/index.html',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','80fc3672290d45d49c250ccc120f3606',''), ('21242','{28316}=0','PFSense: DNS server is not running','','0','3','Please check DNS server settings https://docs.netgate.com/pfsense/en/latest/services/dns/index.html',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','67b862f6aa3a4833af44d513aad517b5',''), ('21243','{28317}=0','PFSense: Web server is not running','','0','3','Please check nginx service status.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9f7a47055ee64edcbb70b047a35f7774',''), ('21244','{28318}<>1','PFSense: Packet filter is not running','','0','4','Please check PF status.',NULL,'0','0','0','','0','','0','Current running state: {ITEM.LASTVALUE1}','0','','4a7ff4c437054ce88c6c069ffcb6434f',''), ('21245','{28319}>{$SOURCE.TRACKING.TABLE.UTIL.MAX}','PFSense: Source tracking table usage is high','','0','2','Please check the number of sticky connections https://docs.netgate.com/pfsense/en/latest/monitoring/status/firewall-states-sources.html',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','PFSense: Source tracking table usage more than {$SOURCE.TRACKING.TABLE.UTIL.MAX}.','7983ee28646d4327ae0814c88c7b213f',''), ('21246','{28320}>{$STATE.TABLE.UTIL.MAX}','PFSense: State table usage is high','','0','2','Please check the number of connections https://docs.netgate.com/pfsense/en/latest/config/advanced-firewall-nat.html#config-advanced-firewall-maxstates',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','PFSense: State table usage more than {$STATE.TABLE.UTIL.MAX}.','ce0e7dec597e4148abd9b699c787decd',''), ('21250','{28326}=0','PFSense: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d06bdb79a48c438798286a89680eb3e1',''), ('21255','{28336}<0 and {28337}>0 and ( {28338}=6 or {28338}=7 or {28338}=11 or {28338}=62 or {28338}=69 or {28338}=117 ) and ({28339}<>2)','PFSense: Interface [{#IFNAME}({#IFALIAS})]: Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({28336}>0 and {28340}>0) or ({28339}=2)','0','','0','Current reported speed: {ITEM.LASTVALUE1}','0','','eb3090605ba14407a91736ac9768d65a',''), ('21256','({28341}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{28342}) and {28342}>0','PFSense: Interface [{#IFNAME}({#IFALIAS})]: High inbound bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{28341}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{28342}','0','','0','In: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}','0','PFSense: Interface [{#IFNAME}({#IFALIAS})]: High inbound bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% )','90c99a9c4ce44b3ca929c4b3200286fb',''), ('21257','({28343}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{28344}) and {28344}>0','PFSense: Interface [{#IFNAME}({#IFALIAS})]: High outbound bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{28343}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{28344}','0','','0','Out: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}','0','PFSense: Interface [{#IFNAME}({#IFALIAS})]: High outbound bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% )','6be52ce31bab4250b421de1bfe84263c',''), ('21258','{28345}>{$IF.ERRORS.WARN:"{#IFNAME}"}','PFSense: Interface [{#IFNAME}({#IFALIAS})]: High input error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{28346}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','0','errors in: {ITEM.LASTVALUE1}','0','PFSense: Interface [{#IFNAME}({#IFALIAS})]: High input error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','f5cbc2b7d91f4fa5aab8eb96d8a0550f',''), ('21259','{28347}>{$IF.ERRORS.WARN:"{#IFNAME}"}','PFSense: Interface [{#IFNAME}({#IFALIAS})]: High output error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{28348}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','0','errors out: {ITEM.LASTVALUE2}','0','PFSense: Interface [{#IFNAME}({#IFALIAS})]: High output error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','5fb5f37490d04dbc8e0553c6aa881547',''), ('21260','{$IFCONTROL:"{#IFNAME}"}=1 and ({28349}=2)','PFSense: Interface [{#IFNAME}({#IFALIAS})]: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d4392162d62541aeb148718ddd7f5d57',''), ('21265','{28389}<10m','Zabbix proxy: {HOST.NAME} has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Zabbix proxy: {HOST.NAME} has been restarted (uptime < 10m)','b505a16c50f64adb8c5528907925f798',''), ('21266','{28390}<>{28391} and length({28392})>0','Zabbix proxy: Version has changed','','0','1','Zabbix proxy version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Zabbix proxy: Version has changed (new version: {ITEM.VALUE})','bf7eef07faf14fc4b2603ae952f001da',''), ('21267','{28418}>{$ZABBIX.PROXY.UTIL.MAX:"preprocessing manager"}','Zabbix proxy: Utilization of preprocessing manager processes is high','','0','3','Indicates potential performance issues with the preprocessing manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28418}<{$ZABBIX.PROXY.UTIL.MIN:"preprocessing manager"}','0','','0','','0','Zabbix proxy: Utilization of preprocessing manager processes over {$ZABBIX.PROXY.UTIL.MAX:"preprocessing manager"}%','4c681b0775b54fd79e4aba669e219967',''), ('21268','{28419}>{$ZABBIX.PROXY.UTIL.MAX:"preprocessing worker"}','Zabbix proxy: Utilization of preprocessing worker processes is high','','0','3','Indicates potential performance issues with the preprocessing worker, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{28419}<{$ZABBIX.PROXY.UTIL.MIN:"preprocessing worker"}','0','','0','','0','Zabbix proxy: Utilization of preprocessing worker processes over {$ZABBIX.PROXY.UTIL.MAX:"preprocessing worker"}%','f1c97c56e2d04cabaaa4c9b41e2bbad3',''), ('21269','{28420}<10m','Zabbix proxy: {HOST.NAME} has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Zabbix proxy: {HOST.NAME} has been restarted (uptime < 10m)','8940efd3c68b4ded80ea1e89d55dfa7c',''), ('21543','{28714}=0','Alcatel TiMOS: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','72f8bcb4dfde4d338c31c83b72a36129',''), ('21544','{28715}>{$ICMP_LOSS_WARN} and {28715}<100','Alcatel TiMOS: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','0c0a32b98df84c07acbe51caabc8c012',''), ('21545','{28716}>{$ICMP_RESPONSE_TIME_WARN}','Alcatel TiMOS: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','06fd317938784236b3e17b2b4080925d',''), ('21546','{28717}<>{28718} and length({28719})>0','Alcatel TiMOS: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Alcatel TiMOS: System name has changed (new name: {ITEM.VALUE})','5f11cacfd4a94cf696897b3f3fa80601',''), ('21547','({32144}>0 and {32144}<10m) or ({32144}=0 and {32145}<10m)','Alcatel TiMOS: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Alcatel TiMOS: {HOST.NAME} has been restarted (uptime < 10m)','3b6324116e5940b5aaea72adca4dbbf6',''), ('21548','{28721}=0','Alcatel TiMOS: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','60187191b268499784a70ef1dfe058ae',''), ('21549','{28722}<0 and {28723}>0 and ( {28724}=6 or {28724}=7 or {28724}=11 or {28724}=62 or {28724}=69 or {28724}=117 ) and ({28725}<>2)','Alcatel TiMOS: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({28722}>0 and {28726}>0) or ({28725}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','a9467162f7434b8e97cb6645b6a060ae',''), ('21550','({28727}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{28728} or {28729}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{28728}) and {28728}>0','Alcatel TiMOS: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{28727}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{28728} and {28729}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{28728}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Alcatel TiMOS: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','27e0b7fcaf664410962dc768e0ef7267',''), ('21551','{28730}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {28731}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Alcatel TiMOS: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{28732}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {28733}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Alcatel TiMOS: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','ee8dccabf5df45b48a503320131b152e',''), ('21552','{$IFCONTROL:"{#IFNAME}"}=1 and {28734}=2 and ({28735}<>{28736})','Alcatel TiMOS: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{28734}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','a4bcc6d80080415698d8fd323ff5d484',''), ('21553','{28737}=2','Alcatel TiMOS: Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','','0','2','Please check autonegotiation settings and cabling.',NULL,'0','2','0','','0','','1','','0','','e5d6ba20229044b98ee8cb33e00de8b0',''), ('21554','{28738}=0','Arista: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','736dc5694fc741e6bcb96e2ba27a0898',''), ('21555','{28739}>{$ICMP_LOSS_WARN} and {28739}<100','Arista: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','dfa6f280b6304bfdb0063be94f7a4c5e',''), ('21556','{28740}>{$ICMP_RESPONSE_TIME_WARN}','Arista: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','18aeec70f72d43ceb4994501fb36d434',''), ('21557','{28741}>{$CPU.UTIL.CRIT}','Arista: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Arista: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','6737f0672c244e048509358d220874a6',''), ('21558','{28742}<>{28743} and length({28744})>0','Arista: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Arista: System name has changed (new name: {ITEM.VALUE})','362d455c9d9944cea7c37d58bcabc0a0',''), ('21559','({32146}>0 and {32146}<10m) or ({32146}=0 and {32147}<10m)','Arista: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Arista: {HOST.NAME} has been restarted (uptime < 10m)','e3907a8b6aba4512a24a677ed31e4362',''), ('21560','{28746}=0','Arista: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','53501c72392a4bbc8fa0f5ed086d2591',''), ('21561','{28747}<0 and {28748}>0 and ( {28749}=6 or {28749}=7 or {28749}=11 or {28749}=62 or {28749}=69 or {28749}=117 ) and ({28750}<>2)','Arista: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({28747}>0 and {28751}>0) or ({28750}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','9715da7cb2404bf2a3cb3e80d4bb3bde',''), ('21562','({28752}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{28753} or {28754}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{28753}) and {28753}>0','Arista: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{28752}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{28753} and {28754}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{28753}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Arista: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','32c978fecfcb42738cd179c19bcd2360',''), ('21563','{28755}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {28756}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Arista: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{28757}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {28758}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Arista: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','47d5a599bc574ccea4baeebc3aad34f5',''), ('21564','{$IFCONTROL:"{#IFNAME}"}=1 and {28759}=2 and ({28760}<>{28761})','Arista: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{28759}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','11c5b8073b3540e4b0698a8db9e3c33e',''), ('21565','{28762}=2','Arista: Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','','0','2','Please check autonegotiation settings and cabling.',NULL,'0','2','0','','0','','1','','0','','c1bddd15c68243aeb69dc47f57eb6631',''), ('21566','{31253}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and (({31254}-{31255})<{$VFS.FS.FREE.MIN.CRIT:"{#FSNAME}"} or {31256}<1d)','Arista: {#FSNAME}: Disk space is critically low','','0','3','Two conditions should match: 1. The first condition - utilization of the space should be above `{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}`. 2. The second condition should be one of the following: - the disk free space is less than `{$VFS.FS.FREE.MIN.CRIT:"{#FSNAME}"}`; - the disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Arista: {#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%)','f4bfac8d247144b3bebac7245248553e',''), ('21567','{31257}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and (({31258}-{31259})<{$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"} or {31260}<1d)','Arista: {#FSNAME}: Disk space is low','','0','2','Two conditions should match: 1. The first condition - utilization of the space should be above `{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}`. 2. The second condition should be one of the following: - the disk free space is less than `{$VFS.FS.FREE.MIN.WARN:"{#FSNAME}"}`; - the disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Arista: {#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%)','9912ab9619ce46b88afe358ab50a2c4f',''), ('21568','{28771}>{$MEMORY.UTIL.MAX}','Arista: {#MEMNAME}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','Arista: {#MEMNAME}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','6b9010e0ad4e4549ac91a91d4bb3983a',''), ('21569','{28772}=0','Brocade FC: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','0c73f37e7ffc4acf83a7edeb84398aba',''), ('21570','{28773}>{$ICMP_LOSS_WARN} and {28773}<100','Brocade FC: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','eea2256c85764c12b1da83dd8d1a9fe3',''), ('21571','{28774}>{$ICMP_RESPONSE_TIME_WARN}','Brocade FC: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','17df26093a5f42fdb19715371c85f733',''), ('21572','{28775}<>{28776} and length({28777})>0','Brocade FC: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Brocade FC: System name has changed (new name: {ITEM.VALUE})','0e624c73fdca490e809ffe9235cda610',''), ('21573','({32148}>0 and {32148}<10m) or ({32148}=0 and {32149}<10m)','Brocade FC: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Brocade FC: {HOST.NAME} has been restarted (uptime < 10m)','42bb10d788484b92ac7290e171ee28a2',''), ('21574','{28779}=0','Brocade FC: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','1c67a764531b48f1a931a9a928a8708d',''), ('21575','{28780}<0 and {28781}>0 and ( {28782}=6 or {28782}=7 or {28782}=11 or {28782}=62 or {28782}=69 or {28782}=117 ) and ({28783}<>2)','Brocade FC: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({28780}>0 and {28784}>0) or ({28783}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','5a98171af6b342ab97e0c6c9de0bd589',''), ('21576','({28785}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{28786} or {28787}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{28786}) and {28786}>0','Brocade FC: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{28785}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{28786} and {28787}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{28786}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Brocade FC: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','a16b52f43a224a11861813be5a11697c',''), ('21577','{28788}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {28789}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Brocade FC: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{28790}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {28791}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Brocade FC: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','9f42c5a5ed1341c1a26263642e4dabe4',''), ('21578','{$IFCONTROL:"{#IFNAME}"}=1 and {28792}=2 and ({28793}<>{28794})','Brocade FC: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{28792}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','e5391912a6b84c1bb41832e88df4fb96',''), ('21579','{28795}=0','Brocade Nonstackable: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','3e93707bfbed4541a90548f64b2dfc18',''), ('21580','{28796}>{$ICMP_LOSS_WARN} and {28796}<100','Brocade Nonstackable: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','3f3500c666bb47208115b6ca43fc8458',''), ('21581','{28797}>{$ICMP_RESPONSE_TIME_WARN}','Brocade Nonstackable: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','e1bcb2ad662f4e4fb0ff67f0f1fc39e5',''), ('21582','{28798}>{$CPU.UTIL.CRIT}','Brocade Nonstackable: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Brocade Nonstackable: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','bf59d38703f44bcb9497dcbda684b071',''), ('21583','{28799}<>{28800} and length({28801})>0','Brocade Nonstackable: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Brocade Nonstackable: System name has changed (new name: {ITEM.VALUE})','ee0c67c575cb4b01bc3733d719baac4f',''), ('21584','({32150}>0 and {32150}<10m) or ({32150}=0 and {32151}<10m)','Brocade Nonstackable: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Brocade Nonstackable: {HOST.NAME} has been restarted (uptime < 10m)','99208318a05445518bebae305dd53d34',''), ('21585','{28803}>{$MEMORY.UTIL.MAX}','Brocade Nonstackable: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','Brocade Nonstackable: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','07bba62d70fa4e7b81f82fc44036ce6e',''), ('21586','{28804}=0','Brocade Nonstackable: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','fb3168f6539c4a55b5aab3efbcad117d',''), ('21587','{28805}=0','Brocade Stackable: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','06ed32e60b9d4fb387116b5bb9c1700a',''), ('21588','{28806}>{$ICMP_LOSS_WARN} and {28806}<100','Brocade Stackable: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','305f5a75aed34094a1721653ba6cafda',''), ('21589','{28807}>{$ICMP_RESPONSE_TIME_WARN}','Brocade Stackable: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','6e7e8f250fbb47778405daeea7a2b852',''), ('21590','{28808}>{$CPU.UTIL.CRIT}','Brocade Stackable: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Brocade Stackable: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','c390ed19b59a45b29f80cb95ee6e635a',''), ('21591','{28809}<>{28810} and length({28811})>0','Brocade Stackable: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Brocade Stackable: System name has changed (new name: {ITEM.VALUE})','1e455a8b19994e9a9f9147d4c3abfa59',''), ('21592','({32152}>0 and {32152}<10m) or ({32152}=0 and {32153}<10m)','Brocade Stackable: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Brocade Stackable: {HOST.NAME} has been restarted (uptime < 10m)','0fd4a268d6d34a2d925a97babe365b65',''), ('21593','{28813}>{$MEMORY.UTIL.MAX}','Brocade Stackable: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','Brocade Stackable: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','18623226ce15406488bc99f075cf2590',''), ('21594','{28814}=0','Brocade Stackable: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a4bb03ba3e4645fdb7ecab56ddde776f',''), ('21595','{28815}<0 and {28816}>0 and ( {28817}=6 or {28817}=7 or {28817}=11 or {28817}=62 or {28817}=69 or {28817}=117 ) and ({28818}<>2)','Brocade Nonstackable: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({28815}>0 and {28819}>0) or ({28818}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','e5f54206b19f4f589229c7137365351c',''), ('21596','({28820}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{28821} or {28822}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{28821}) and {28821}>0','Brocade Nonstackable: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{28820}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{28821} and {28822}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{28821}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Brocade Nonstackable: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','093696611acd4d75b00e83ce5b11df35',''), ('21597','{28823}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {28824}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Brocade Nonstackable: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{28825}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {28826}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Brocade Nonstackable: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','5337b53e473248719eb502428a4bcc38',''), ('21598','{$IFCONTROL:"{#IFNAME}"}=1 and {28827}=2 and ({28828}<>{28829})','Brocade Nonstackable: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{28827}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','3455100ce855445ab3806379fbdc0bbf',''), ('21599','{28830}<0 and {28831}>0 and ( {28832}=6 or {28832}=7 or {28832}=11 or {28832}=62 or {28832}=69 or {28832}=117 ) and ({28833}<>2)','Brocade Stackable: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({28830}>0 and {28834}>0) or ({28833}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','8a83aadcd4474f8d99a4712c2f49e737',''), ('21600','({28835}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{28836} or {28837}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{28836}) and {28836}>0','Brocade Stackable: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{28835}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{28836} and {28837}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{28836}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Brocade Stackable: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','a1ec6d8bc0644db9be849d79e9f24ea1',''), ('21601','{28838}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {28839}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Brocade Stackable: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{28840}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {28841}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Brocade Stackable: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','acba5651b6dd4ed29166698a4faed7f8',''), ('21602','{$IFCONTROL:"{#IFNAME}"}=1 and {28842}=2 and ({28843}<>{28844})','Brocade Stackable: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{28842}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','4c175f17331942ae8342b0abf43f8fe2',''), ('21603','{28845}=0','Cisco IOS: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','fd317d3e8d3d45bf97322b8578f30c04',''), ('21604','{28846}>{$ICMP_LOSS_WARN} and {28846}<100','Cisco IOS: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','3576c96601ef40abbeedbde11768141a',''), ('21605','{28847}>{$ICMP_RESPONSE_TIME_WARN}','Cisco IOS: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','2941d30058b14d52bd9a723889c8be26',''), ('21606','{28848}>{$CPU.UTIL.CRIT}','Cisco IOS: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Cisco IOS: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','74773fc279864e7daf89cffe9cb2067c',''), ('21607','{28849}<>{28850} and length({28851})>0','Cisco IOS: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Cisco IOS: Device has been replaced (new serial number received)','d53c0d22a67544cf8a2fcd2c8de4d4eb',''), ('21608','{28852}<>{28853} and length({28854})>0','Cisco IOS: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Cisco IOS: System name has changed (new name: {ITEM.VALUE})','33b42b1aa448408fa3fb5aadf7375cf8',''), ('21609','{28855}<>{28856} and length({28857})>0','Cisco IOS: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','abe57415ff574b878a2ce2a318be86ee',''), ('21610','({32164}>0 and {32164}<10m) or ({32164}=0 and {32165}<10m)','Cisco IOS: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Cisco IOS: {HOST.NAME} has been restarted (uptime < 10m)','f278b8b4eb784107a6d8d3e8437e8a66',''), ('21611','{28859}=0','Cisco IOS: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','86d8603903504287b07a25530c8eda2b',''), ('21612','{28860}=0','Cisco IOS: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','77e52d690bc043e389ad8d705dbb86b9',''), ('21613','{28861}>{$ICMP_LOSS_WARN} and {28861}<100','Cisco IOS: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','62b3c0a2654f4372a1bad40a0fd2898d',''), ('21614','{28862}>{$ICMP_RESPONSE_TIME_WARN}','Cisco IOS: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','1ba34b5e344147d5b27431906037bc04',''), ('21615','{28863}<>{28864} and length({28865})>0','Cisco IOS: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Cisco IOS: Device has been replaced (new serial number received)','7d1460eaf7ad46fd8a1b5df3c20051ba',''), ('21616','{28866}<>{28867} and length({28868})>0','Cisco IOS: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Cisco IOS: System name has changed (new name: {ITEM.VALUE})','2105744d4efd4a239c5b6ab615746a40',''), ('21617','{28869}<>{28870} and length({28871})>0','Cisco IOS: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','2d97173405594074bfe2cc6f3d0cae70',''), ('21618','({32166}>0 and {32166}<10m) or ({32166}=0 and {32167}<10m)','Cisco IOS: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Cisco IOS: {HOST.NAME} has been restarted (uptime < 10m)','b98092ddf87247ff91710e2f310dbfb9',''), ('21619','{28873}=0','Cisco IOS: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','df7c9ed5d3164e73a792f82ecad6ba13',''), ('21620','{28874}=0','Cisco IOS: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','f6fae61d08644d5fa3929f526aee34e4',''), ('21621','{28875}>{$ICMP_LOSS_WARN} and {28875}<100','Cisco IOS: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','5c7eae9701be4661a34bbcdb99c094fe',''), ('21622','{28876}>{$ICMP_RESPONSE_TIME_WARN}','Cisco IOS: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','9aebe4a1cfa34c5d92178abc8a6ce06e',''), ('21623','{28877}<>{28878} and length({28879})>0','Cisco IOS: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Cisco IOS: Device has been replaced (new serial number received)','78723249679b4a288861f4ad8621fd77',''), ('21624','{28880}<>{28881} and length({28882})>0','Cisco IOS: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Cisco IOS: System name has changed (new name: {ITEM.VALUE})','3e09d5d308e449a4974393650b33e64d',''), ('21625','{28883}<>{28884} and length({28885})>0','Cisco IOS: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','df85813bb6af4accab8d5191cd452329',''), ('21626','({32168}>0 and {32168}<10m) or ({32168}=0 and {32169}<10m)','Cisco IOS: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Cisco IOS: {HOST.NAME} has been restarted (uptime < 10m)','806f54999d064eb68a3f46a0d84ee4df',''), ('21627','{28887}=0','Cisco IOS: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','778749b260bb45c3a926d6bb49c07257',''), ('21628','{28888}<>{28889} and length({28890})>0','Cisco IOS: {#ENT_NAME}: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Cisco IOS: {#ENT_NAME}: Device has been replaced (new serial number received)','e8c328ad70a146219a8ae62f101cfc00',''), ('21629','{28891}=1 or {28892}=1','Cisco IOS: {#SENSOR_INFO}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','ddd7015dd3204514beea29edc45c3cd4',''), ('21630','{28893}=1 or {28894}=1','Cisco IOS: {#SENSOR_INFO}: Fan is in warning state','','0','2','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4eb7ea3405d74740a12095a07d91d48f',''), ('21631','{28895}>{$MEMORY.UTIL.MAX}','Cisco IOS: {#SNMPVALUE}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','Cisco IOS: {#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','8793ba7767cc415a80a6a206aaf01f11',''), ('21632','{28896}=1 or {28897}=1','Cisco IOS: {#SENSOR_INFO}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','fc4b6f155d3646c3bb8b27d35c18604b',''), ('21633','{28898}=1 or {28899}=1','Cisco IOS: {#SENSOR_INFO}: Power supply is in warning state','','0','2','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','58e9514d75f84c989b052cfd76ceed4a',''), ('21634','{28900}>{$TEMP_CRIT:"{#SNMPVALUE}"} or {28901}={$TEMP_CRIT_STATUS} or {28901}={$TEMP_DISASTER_STATUS}','Cisco IOS: {#SNMPVALUE}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{28902}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco IOS: {#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"}','82fa9473dc7d49d4a3a230ef6238cd2c',''), ('21635','{28903}>{$TEMP_WARN:"{#SNMPVALUE}"} or {28904}={$TEMP_WARN_STATUS}','Cisco IOS: {#SNMPVALUE}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{28905}<{$TEMP_WARN:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco IOS: {#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"}','a0199088767f43c0990f5ac8793267b1',''), ('21636','{28906}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','Cisco IOS: {#SNMPVALUE}: Temperature is too low','','0','3','',NULL,'0','2','1','{28907}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco IOS: {#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','716dee103c9f4e9da5f83d6cc338617d',''), ('21637','{28908}>{$CPU.UTIL.CRIT}','Cisco IOS: #{#SNMPINDEX}: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Cisco IOS: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','89b292f6748f49fa8b0f23f5378944b2',''), ('21638','{28909}<>{28910} and length({28911})>0','Cisco IOS: {#ENT_NAME}: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Cisco IOS: {#ENT_NAME}: Device has been replaced (new serial number received)','e5477e6803974060ba3ce8a131d97d40',''), ('21639','{28912}=1 or {28913}=1','Cisco IOS: {#SENSOR_INFO}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e64b0790509c4a21b7ead959fa1b7951',''), ('21640','{28914}=1 or {28915}=1','Cisco IOS: {#SENSOR_INFO}: Fan is in warning state','','0','2','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','33207a0c65e14a5d9355690c8d9d54e2',''), ('21641','{28916}>{$MEMORY.UTIL.MAX}','Cisco IOS: {#SNMPVALUE}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','Cisco IOS: {#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','ee300a1f9f644bdbb545bd65d59d4837',''), ('21642','{28917}<0 and {28918}>0 and ( {28919}=6 or {28919}=7 or {28919}=11 or {28919}=62 or {28919}=69 or {28919}=117 ) and ({28920}<>2)','Cisco IOS: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({28917}>0 and {28921}>0) or ({28920}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','3783d41e790f4d1e9ebb7340d82edc1f',''), ('21643','({28922}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{28923} or {28924}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{28923}) and {28923}>0','Cisco IOS: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{28922}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{28923} and {28924}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{28923}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Cisco IOS: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','17a07d8b87c04874bfbf12009e1da65f',''), ('21644','{28925}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {28926}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Cisco IOS: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{28927}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {28928}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Cisco IOS: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','0c1c6f8fc17849a68a12813389da6373',''), ('21645','{$IFCONTROL:"{#IFNAME}"}=1 and {28929}=2 and ({28930}<>{28931})','Cisco IOS: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{28929}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','6bf13b6cac1b438bbfe384a746646597',''), ('21646','{28932}=2','Cisco IOS: Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','','0','2','Please check autonegotiation settings and cabling.',NULL,'0','2','0','','0','','1','','0','','251a80d2f6824e33b8edfca94e0f335d',''), ('21647','{28933}=1 or {28934}=1','Cisco IOS: {#SENSOR_INFO}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','3068fc8f0b0749d4b76d97d7f500e36d',''), ('21648','{28935}=1 or {28936}=1','Cisco IOS: {#SENSOR_INFO}: Power supply is in warning state','','0','2','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','194444afb5d143a0a0734120e26066e4',''), ('21649','{28937}>{$TEMP_CRIT:"{#SNMPVALUE}"} or {28938}={$TEMP_CRIT_STATUS} or {28938}={$TEMP_DISASTER_STATUS}','Cisco IOS: {#SNMPVALUE}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{28939}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco IOS: {#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"}','95f562a5b2fb4e17b091eaed07c77d4a',''), ('21650','{28940}>{$TEMP_WARN:"{#SNMPVALUE}"} or {28941}={$TEMP_WARN_STATUS}','Cisco IOS: {#SNMPVALUE}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{28942}<{$TEMP_WARN:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco IOS: {#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"}','5809893fb23a452ebad327c595322619',''), ('21651','{28943}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','Cisco IOS: {#SNMPVALUE}: Temperature is too low','','0','3','',NULL,'0','2','1','{28944}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco IOS: {#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','64888770ef6a44089593e78d4d2c528d',''), ('21652','{28945}>{$CPU.UTIL.CRIT}','Cisco IOS: {#SNMPVALUE}: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Cisco IOS: {#SNMPVALUE}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','b964834d4f6549c7ae0f0c0c2646dfbc',''), ('21653','{28946}<>{28947} and length({28948})>0','Cisco IOS: {#ENT_NAME}: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Cisco IOS: {#ENT_NAME}: Device has been replaced (new serial number received)','75ee6ab1f0c84946a4f4d6e87007ec25',''), ('21654','{28949}=1 or {28950}=1','Cisco IOS: {#SENSOR_INFO}: Fan is in critical state','','0','3','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','907502bbdeee45bbbfb84d43c2dc4f20',''), ('21655','{28951}=1 or {28952}=1','Cisco IOS: {#SENSOR_INFO}: Fan is in warning state','','0','2','Please check the fan unit',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4b2a4eb4cb2a43758048cc05d63f37a4',''), ('21656','{28953}>{$MEMORY.UTIL.MAX}','Cisco IOS: {#SNMPVALUE}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','Cisco IOS: {#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','0f8d70ef5e704483a49d7b635e74dfc6',''), ('21657','{28954}<0 and {28955}>0 and ( {28956}=6 or {28956}=7 or {28956}=11 or {28956}=62 or {28956}=69 or {28956}=117 ) and ({28957}<>2)','Cisco IOS: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({28954}>0 and {28958}>0) or ({28957}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','60809b6c94d74e34b5f29525d77c75b5',''), ('21658','({28959}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{28960} or {28961}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{28960}) and {28960}>0','Cisco IOS: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{28959}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{28960} and {28961}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{28960}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Cisco IOS: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','21d475be7fa24ba2b946e4ec31371df5',''), ('21659','{28962}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {28963}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Cisco IOS: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{28964}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {28965}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Cisco IOS: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','5a2bc4c9bf344948a52ce256daa1258e',''), ('21660','{$IFCONTROL:"{#IFNAME}"}=1 and {28966}=2 and ({28967}<>{28968})','Cisco IOS: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{28966}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','c99f0efcc30749e79cce0efe2fdd574f',''), ('21661','{28969}=1 or {28970}=1','Cisco IOS: {#SENSOR_INFO}: Power supply is in critical state','','0','3','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7c5269ac98e847f28da8d3d97e52a28e',''), ('21662','{28971}=1 or {28972}=1','Cisco IOS: {#SENSOR_INFO}: Power supply is in warning state','','0','2','Please check the power supply unit for errors',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','616059e289694181aea6a076ecb093c1',''), ('21663','{28973}>{$TEMP_CRIT:"{#SNMPVALUE}"} or {28974}={$TEMP_CRIT_STATUS} or {28974}={$TEMP_DISASTER_STATUS}','Cisco IOS: {#SNMPVALUE}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{28975}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco IOS: {#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"}','f138f708723a4ca49b21cb992798da7f',''), ('21664','{28976}>{$TEMP_WARN:"{#SNMPVALUE}"} or {28977}={$TEMP_WARN_STATUS}','Cisco IOS: {#SNMPVALUE}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available',NULL,'0','2','1','{28978}<{$TEMP_WARN:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco IOS: {#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"}','281f7afca6ed4d3bb866430ec89e862e',''), ('21665','{28979}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','Cisco IOS: {#SNMPVALUE}: Temperature is too low','','0','3','',NULL,'0','2','1','{28980}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco IOS: {#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','67fad9e835f9466ab368bbdad6544e7e',''), ('21666','{28981}=0','Dell Force S-Series: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','f186488b337f4b1b8971992e8118d9cc',''), ('21667','{28982}>{$ICMP_LOSS_WARN} and {28982}<100','Dell Force S-Series: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','46798adec54c47a38cb599773767a2a7',''), ('21668','{28983}>{$ICMP_RESPONSE_TIME_WARN}','Dell Force S-Series: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','04828676081147b4bfad0ad03385986e',''), ('21669','{28984}<>{28985} and length({28986})>0','Dell Force S-Series: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Dell Force S-Series: System name has changed (new name: {ITEM.VALUE})','2dc35c5813b042fd96f2ebc53f565799',''), ('21670','({32170}>0 and {32170}<10m) or ({32170}=0 and {32171}<10m)','Dell Force S-Series: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Dell Force S-Series: {HOST.NAME} has been restarted (uptime < 10m)','4246a064d33f428c8441491402ae8090',''), ('21671','{28988}=0','Dell Force S-Series: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','da99689aa1394d17af5008e5678915bc',''), ('21672','{28989}<0 and {28990}>0 and ( {28991}=6 or {28991}=7 or {28991}=11 or {28991}=62 or {28991}=69 or {28991}=117 ) and ({28992}<>2)','Dell Force S-Series: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({28989}>0 and {28993}>0) or ({28992}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','f4903edf173f470482174ee9937cbb32',''), ('21673','({28994}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{28995} or {28996}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{28995}) and {28995}>0','Dell Force S-Series: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{28994}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{28995} and {28996}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{28995}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Dell Force S-Series: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','e85a287c2e0e48e19cb43bf74d3f3535',''), ('21674','{28997}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {28998}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Dell Force S-Series: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{28999}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29000}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Dell Force S-Series: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','00d2988bdd084719ba781562920d20fa',''), ('21675','{$IFCONTROL:"{#IFNAME}"}=1 and {29001}=2 and ({29002}<>{29003})','Dell Force S-Series: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29001}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','b7b55335f42b4ace8434588bc70f7e60',''), ('21676','{29004}=2','Dell Force S-Series: Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','','0','2','Please check autonegotiation settings and cabling.',NULL,'0','2','0','','0','','1','','0','','edc143c44b2d465cac94c4cf0fb588a6',''), ('21677','{29005}=0','D-Link DES 7200: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','a568e0a3c0074e6dbad92890067976f3',''), ('21678','{29006}>{$ICMP_LOSS_WARN} and {29006}<100','D-Link DES 7200: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','12dea4dbaa3c4ef1a53456090ae3eb0e',''), ('21679','{29007}>{$ICMP_RESPONSE_TIME_WARN}','D-Link DES 7200: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','88f2c517c1ba4f7881491a4b2b7f7ad0',''), ('21680','{29008}<>{29009} and length({29010})>0','D-Link DES 7200: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','D-Link DES 7200: System name has changed (new name: {ITEM.VALUE})','0c7a629e028e489c89647bf3ca51850e',''), ('21681','({32172}>0 and {32172}<10m) or ({32172}=0 and {32173}<10m)','D-Link DES 7200: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','D-Link DES 7200: {HOST.NAME} has been restarted (uptime < 10m)','6b200163bfcd4899a82bcf98aa026aa2',''), ('21682','{29012}=0','D-Link DES 7200: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','dc5b0dda2d684665a5444e39db5e2257',''), ('21683','{29013}<0 and {29014}>0 and ( {29015}=6 or {29015}=7 or {29015}=11 or {29015}=62 or {29015}=69 or {29015}=117 ) and ({29016}<>2)','D-Link DES 7200: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29013}>0 and {29017}>0) or ({29016}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','04d35a5ff5d34caf91f354b76677f78e',''), ('21684','({29018}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29019} or {29020}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29019}) and {29019}>0','D-Link DES 7200: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29018}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29019} and {29020}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29019}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','D-Link DES 7200: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','76191d56356c4f389e3b7ca182ac28b2',''), ('21685','{29021}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29022}>{$IF.ERRORS.WARN:"{#IFNAME}"}','D-Link DES 7200: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29023}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29024}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','D-Link DES 7200: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','d9f6f23364c54fd1984fe049a4fc16e4',''), ('21686','{$IFCONTROL:"{#IFNAME}"}=1 and {29025}=2 and ({29026}<>{29027})','D-Link DES 7200: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29025}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','8d5d2b10f5c541d9858b124ca3ea23aa',''), ('21687','{29028}=0','D-Link DES_DGS Switch: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','5d134da7ad044ab591e1b96e1dca1641',''), ('21688','{29029}>{$ICMP_LOSS_WARN} and {29029}<100','D-Link DES_DGS Switch: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','9c48d97b5d4a4668ad382e1d0d9c8e87',''), ('21689','{29030}>{$ICMP_RESPONSE_TIME_WARN}','D-Link DES_DGS Switch: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','3959884457a7420a9a9007c550d9b886',''), ('21690','{29031}<>{29032} and length({29033})>0','D-Link DES_DGS Switch: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','D-Link DES_DGS Switch: System name has changed (new name: {ITEM.VALUE})','91e1a9f579c64954a89b6efbf6b523dd',''), ('21691','({32174}>0 and {32174}<10m) or ({32174}=0 and {32175}<10m)','D-Link DES_DGS Switch: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','D-Link DES_DGS Switch: {HOST.NAME} has been restarted (uptime < 10m)','7a51877b860a479da9bc9f02ee36e01f',''), ('21692','{29035}=0','D-Link DES_DGS Switch: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','2b56c7cfef454441863d2f7cc01a330f',''), ('21693','{29036}<0 and {29037}>0 and ( {29038}=6 or {29038}=7 or {29038}=11 or {29038}=62 or {29038}=69 or {29038}=117 ) and ({29039}<>2)','D-Link DES_DGS Switch: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29036}>0 and {29040}>0) or ({29039}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','e645a0cf5e4f47a5af03f0108070d4e4',''), ('21694','({29041}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29042} or {29043}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29042}) and {29042}>0','D-Link DES_DGS Switch: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29041}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29042} and {29043}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29042}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','D-Link DES_DGS Switch: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','8afaa3fc79404673880795d7d7dbabd8',''), ('21695','{29044}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29045}>{$IF.ERRORS.WARN:"{#IFNAME}"}','D-Link DES_DGS Switch: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29046}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29047}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','D-Link DES_DGS Switch: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','28ae5085f4ab432ea281658f1439ada1',''), ('21696','{$IFCONTROL:"{#IFNAME}"}=1 and {29048}=2 and ({29049}<>{29050})','D-Link DES_DGS Switch: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29048}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','6a8f2b5cd5ec4b8a9e5d35f551a756e0',''), ('21697','{29051}=2','D-Link DES_DGS Switch: Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','','0','2','Please check autonegotiation settings and cabling.',NULL,'0','2','0','','0','','1','','0','','d68607dce04f429ab8cd7e8adb5b60f1',''), ('21698','{29052}=0','Extreme EXOS: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','445766fc99c1480eac4d3d403c3ede2b',''), ('21699','{29053}>{$ICMP_LOSS_WARN} and {29053}<100','Extreme EXOS: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','fb0abe322fd644b4bb3c1255d564bb47',''), ('21700','{29054}>{$ICMP_RESPONSE_TIME_WARN}','Extreme EXOS: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','d29defd9360c489a892821989eeda10c',''), ('21701','{29055}<>{29056} and length({29057})>0','Extreme EXOS: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Extreme EXOS: System name has changed (new name: {ITEM.VALUE})','2923c342e8474e3ea3d7411c104a6988',''), ('21702','({32176}>0 and {32176}<10m) or ({32176}=0 and {32177}<10m)','Extreme EXOS: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Extreme EXOS: {HOST.NAME} has been restarted (uptime < 10m)','bb967f81aaad4a00ae7916ea80574ae0',''), ('21703','{29059}=0','Extreme EXOS: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','ecc42656a3d845ee8ad42d0fe45319c2',''), ('21704','{29060}<0 and {29061}>0 and ( {29062}=6 or {29062}=7 or {29062}=11 or {29062}=62 or {29062}=69 or {29062}=117 ) and ({29063}<>2)','Extreme EXOS: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29060}>0 and {29064}>0) or ({29063}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','eb704d12b7ef450a85a805392adb2e6b',''), ('21705','({29065}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29066} or {29067}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29066}) and {29066}>0','Extreme EXOS: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29065}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29066} and {29067}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29066}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Extreme EXOS: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','f61f3c59c1aa488d9ef19a67d46fb5e8',''), ('21706','{29068}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29069}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Extreme EXOS: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29070}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29071}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Extreme EXOS: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','ccf92f29e2564c0bbef6baf6daf93d86',''), ('21707','{$IFCONTROL:"{#IFNAME}"}=1 and {29072}=2 and ({29073}<>{29074})','Extreme EXOS: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29072}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','706148cec9f24e81a96f44484d3829d3',''), ('21708','{29075}=2','Extreme EXOS: Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','','0','2','Please check autonegotiation settings and cabling.',NULL,'0','2','0','','0','','1','','0','','f82c0234ebbd4f2686ce97642f7bbcf8',''), ('21709','{29076}=0','Network Generic Device: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','d08cae0e7fa54dfea41449f0adabe05d',''), ('21710','{29077}>{$ICMP_LOSS_WARN} and {29077}<100','Network Generic Device: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','d70eb18878114ae69e5f5f95f4b898cc',''), ('21711','{29078}>{$ICMP_RESPONSE_TIME_WARN}','Network Generic Device: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','09bcfc7a9e3d45d99d37b56a404df610',''), ('21712','{29079}<>{29080} and length({29081})>0','Network Generic Device: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Network Generic Device: System name has changed (new name: {ITEM.VALUE})','5f11afa80f534add85dd03e06466fbc9',''), ('21713','({32178}>0 and {32178}<10m) or ({32178}=0 and {32179}<10m)','Network Generic Device: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Network Generic Device: {HOST.NAME} has been restarted (uptime < 10m)','536fafc0bb664fcb8b4c8acc18fe5c29',''), ('21714','{29083}=0','Network Generic Device: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d534ea9f1ad34633bdd361f20733b749',''), ('21715','{29084}<0 and {29085}>0 and ( {29086}=6 or {29086}=7 or {29086}=11 or {29086}=62 or {29086}=69 or {29086}=117 ) and ({29087}<>2)','Network Generic Device: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29084}>0 and {29088}>0) or ({29087}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','f06a612448bc4cc2b0b5641708e9153a',''), ('21716','({29089}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29090} or {29091}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29090}) and {29090}>0','Network Generic Device: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29089}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29090} and {29091}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29090}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Network Generic Device: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','e0b02506b47145a8bde6a19890a2e32b',''), ('21717','{29092}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29093}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Network Generic Device: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29094}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29095}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Network Generic Device: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','1a2e2ea2ecf047a68168bdcceb8d1e39',''), ('21718','{$IFCONTROL:"{#IFNAME}"}=1 and {29096}=2 and ({29097}<>{29098})','Network Generic Device: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29096}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','9b5fdc0da9fa49918b3986d1eee02cfc',''), ('21719','{29099}=2','Network Generic Device: Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','','0','2','Please check autonegotiation settings and cabling.',NULL,'0','2','0','','0','','1','','0','','58acb95392e845bdb2a7064af0228208',''), ('21720','{29100}=0','HP Comware HH3C: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','1bd6a4748e29498e99ccd3b23d83cdf7',''), ('21721','{29101}>{$ICMP_LOSS_WARN} and {29101}<100','HP Comware HH3C: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','d41edaea369d40d2944af72a3ee76850',''), ('21722','{29102}>{$ICMP_RESPONSE_TIME_WARN}','HP Comware HH3C: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','2698115b6f014e8cbdb11c2d5eeb8f08',''), ('21723','{29103}<>{29104} and length({29105})>0','HP Comware HH3C: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','HP Comware HH3C: System name has changed (new name: {ITEM.VALUE})','cf1d0aa58a194904902899dbba814514',''), ('21724','({32180}>0 and {32180}<10m) or ({32180}=0 and {32181}<10m)','HP Comware HH3C: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','HP Comware HH3C: {HOST.NAME} has been restarted (uptime < 10m)','c1372deba2b148f4ac8be6493f0b9868',''), ('21725','{29107}=0','HP Comware HH3C: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','bc6e9c399c3d4d43aaeb5a1b03deb7d4',''), ('21726','{29108}<0 and {29109}>0 and ( {29110}=6 or {29110}=7 or {29110}=11 or {29110}=62 or {29110}=69 or {29110}=117 ) and ({29111}<>2)','HP Comware HH3C: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29108}>0 and {29112}>0) or ({29111}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','b672a06043664dafa8f69d7d530a8723',''), ('21727','({29113}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29114} or {29115}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29114}) and {29114}>0','HP Comware HH3C: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29113}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29114} and {29115}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29114}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','HP Comware HH3C: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','98c74ed2d41941218802f4c472331f46',''), ('21728','{29116}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29117}>{$IF.ERRORS.WARN:"{#IFNAME}"}','HP Comware HH3C: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29118}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29119}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','HP Comware HH3C: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','d7d8ad2b63ac41e6b84852c312c2a8d9',''), ('21729','{$IFCONTROL:"{#IFNAME}"}=1 and {29120}=2 and ({29121}<>{29122})','HP Comware HH3C: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29120}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','d0a5ea31836946f28abe357440ebdbea',''), ('21730','{29123}=2','HP Comware HH3C: Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','','0','2','Please check autonegotiation settings and cabling.',NULL,'0','2','0','','0','','1','','0','','0ff624a6250b431498e4747678149e4b',''), ('21731','{29124}=0','HP Enterprise Switch: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','8fb33a256deb49a096b287493285e300',''), ('21732','{29125}>{$ICMP_LOSS_WARN} and {29125}<100','HP Enterprise Switch: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','589e13a6ab084dd4b7d1456f7707f44d',''), ('21733','{29126}>{$ICMP_RESPONSE_TIME_WARN}','HP Enterprise Switch: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','75bdd8a0cd664815aa3e4fa54d4f0b97',''), ('21734','{29127}<>{29128} and length({29129})>0','HP Enterprise Switch: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','HP Enterprise Switch: System name has changed (new name: {ITEM.VALUE})','63f6f85bfed94821a8339c46544dde0e',''), ('21735','({32182}>0 and {32182}<10m) or ({32182}=0 and {32183}<10m)','HP Enterprise Switch: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','HP Enterprise Switch: {HOST.NAME} has been restarted (uptime < 10m)','1395e02bc63e48daa779b8b685e91868',''), ('21736','{29131}=0','HP Enterprise Switch: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d64df6c48ce44bbcafcdd60a3102b41c',''), ('21737','{29132}<0 and {29133}>0 and ( {29134}=6 or {29134}=7 or {29134}=11 or {29134}=62 or {29134}=69 or {29134}=117 ) and ({29135}<>2)','HP Enterprise Switch: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29132}>0 and {29136}>0) or ({29135}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','97e6d8236ec04a7a91269819c89b2622',''), ('21738','({29137}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29138} or {29139}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29138}) and {29138}>0','HP Enterprise Switch: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29137}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29138} and {29139}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29138}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','HP Enterprise Switch: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','0f14cdc1b43a4325ba256645573a0905',''), ('21739','{29140}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29141}>{$IF.ERRORS.WARN:"{#IFNAME}"}','HP Enterprise Switch: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29142}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29143}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','HP Enterprise Switch: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','61797acc8cb642038b1875a198d0a740',''), ('21740','{$IFCONTROL:"{#IFNAME}"}=1 and {29144}=2 and ({29145}<>{29146})','HP Enterprise Switch: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29144}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','8f16d1db51ce4dceb0ed8753b74e8b7f',''), ('21741','{29147}=2','HP Enterprise Switch: Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','','0','2','Please check autonegotiation settings and cabling.',NULL,'0','2','0','','0','','1','','0','','1b117ed66a0c4b098606d1179e21f3f0',''), ('21742','{29148}=0','Huawei VRP: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','49df55106af2439eb79e66caa2717ec9',''), ('21743','{29149}>{$ICMP_LOSS_WARN} and {29149}<100','Huawei VRP: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','b7ca2b5273be4f50b5c20b422a534868',''), ('21744','{29150}>{$ICMP_RESPONSE_TIME_WARN}','Huawei VRP: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','c322fda29bab4f99a0ea204814390551',''), ('21745','{29151}<>{29152} and length({29153})>0','Huawei VRP: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Huawei VRP: System name has changed (new name: {ITEM.VALUE})','740f78d69b20405da79525365fdc29fe',''), ('21746','({32184}>0 and {32184}<10m) or ({32184}=0 and {32185}<10m)','Huawei VRP: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Huawei VRP: {HOST.NAME} has been restarted (uptime < 10m)','c8c41677f4ba463b90cea501e9112483',''), ('21747','{29155}=0','Huawei VRP: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','cefe56d564434018b6a31c196cc7eb55',''), ('21748','{29156}<0 and {29157}>0 and ( {29158}=6 or {29158}=7 or {29158}=11 or {29158}=62 or {29158}=69 or {29158}=117 ) and ({29159}<>2)','Huawei VRP: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29156}>0 and {29160}>0) or ({29159}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','675512801cb5498887b8411c5afd5f0c',''), ('21749','({29161}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29162} or {29163}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29162}) and {29162}>0','Huawei VRP: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29161}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29162} and {29163}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29162}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Huawei VRP: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','9ebcd822aa6a4fb493c74c4d4759510b',''), ('21750','{29164}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29165}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Huawei VRP: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29166}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29167}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Huawei VRP: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','609c079cc7fd486fb4c938acd1c8b47f',''), ('21751','{$IFCONTROL:"{#IFNAME}"}=1 and {29168}=2 and ({29169}<>{29170})','Huawei VRP: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29168}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','b67a4949e886409b89537338f657570e',''), ('21752','{29171}=2','Huawei VRP: Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','','0','2','Please check autonegotiation settings and cabling.',NULL,'0','2','0','','0','','1','','0','','5f275f483fca402ba8f9aa485398d85b',''), ('21753','{29172}=0','Intel Qlogic: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','a3a6c95c0a32405d81b1bc7690f1bd1f',''), ('21754','{29173}>{$ICMP_LOSS_WARN} and {29173}<100','Intel Qlogic: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','9c78f78339724840b7ab6db4c62f5aa0',''), ('21755','{29174}>{$ICMP_RESPONSE_TIME_WARN}','Intel Qlogic: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','3c5e0b2660764386ac162ed5d2778a56',''), ('21756','{29175}<>{29176} and length({29177})>0','Intel Qlogic: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Intel Qlogic: System name has changed (new name: {ITEM.VALUE})','cfcabcb7d9ca4fd59ed79775bcf059bb',''), ('21757','({32186}>0 and {32186}<10m) or ({32186}=0 and {32187}<10m)','Intel Qlogic: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Intel Qlogic: {HOST.NAME} has been restarted (uptime < 10m)','20166f9c8d5448a494b6b578471df8cc',''), ('21758','{29179}=0','Intel Qlogic: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','ccbd4c4da58f4b72a82371c2f3eaf4e1',''), ('21759','{29180}<0 and {29181}>0 and ( {29182}=6 or {29182}=7 or {29182}=11 or {29182}=62 or {29182}=69 or {29182}=117 ) and ({29183}<>2)','Intel Qlogic: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29180}>0 and {29184}>0) or ({29183}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','ead4b546caa5429197d566010e3a4a43',''), ('21760','({29185}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29186} or {29187}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29186}) and {29186}>0','Intel Qlogic: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29185}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29186} and {29187}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29186}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Intel Qlogic: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','9d5d70c272a641c0ae63aca365cdb103',''), ('21761','{29188}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29189}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Intel Qlogic: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29190}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29191}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Intel Qlogic: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','fba9e43d9fcb43fb9cf5128f1287ac7c',''), ('21762','{$IFCONTROL:"{#IFNAME}"}=1 and {29192}=2 and ({29193}<>{29194})','Intel Qlogic: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29192}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','18cef8eb4ade4e15bd04ad476e95a185',''), ('21763','{29195}=0','Juniper: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','d90e80fd900246dcab90447ee2a6a7a1',''), ('21764','{29196}>{$ICMP_LOSS_WARN} and {29196}<100','Juniper: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','d3911ede372e4eb3b89b30e8e340a716',''), ('21765','{29197}>{$ICMP_RESPONSE_TIME_WARN}','Juniper: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','751d9855903f4f00b674b511fe992121',''), ('21766','{29198}<>{29199} and length({29200})>0','Juniper: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Juniper: System name has changed (new name: {ITEM.VALUE})','97157acd882944e29d6fb9fa1a2d9506',''), ('21767','({32188}>0 and {32188}<10m) or ({32188}=0 and {32189}<10m)','Juniper: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Juniper: {HOST.NAME} has been restarted (uptime < 10m)','23e25e580543411ab8ffc2a4c1ca3c54',''), ('21768','{29202}=0','Juniper: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','417527b3749c4a1c891d761c0978fb2e',''), ('21769','{29203}<0 and {29204}>0 and ( {29205}=6 or {29205}=7 or {29205}=11 or {29205}=62 or {29205}=69 or {29205}=117 ) and ({29206}<>2)','Juniper: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29203}>0 and {29207}>0) or ({29206}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','faabf122af7e4cca8fdc6e57060b2e69',''), ('21770','({29208}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29209} or {29210}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29209}) and {29209}>0','Juniper: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29208}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29209} and {29210}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29209}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Juniper: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','f937622c6f7540579a60328398430f00',''), ('21771','{29211}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29212}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Juniper: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29213}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29214}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Juniper: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','5731e4345a544b45b6a70a71284b878d',''), ('21772','{$IFCONTROL:"{#IFNAME}"}=1 and {29215}=2 and ({29216}<>{29217})','Juniper: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29215}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','c993121dca984691bd2cdf0d41c318b4',''), ('21773','{29218}=2','Juniper: Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','','0','2','Please check autonegotiation settings and cabling.',NULL,'0','2','0','','0','','1','','0','','a2f686bf06cc4e0a8aa24675abd5d557',''), ('21774','{29219}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','feca40f53ed54c84afbb83d2650bbab6',''), ('21775','{29220}>{$ICMP_LOSS_WARN} and {29220}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','bca3c4bf4f89480e9c6ccfaaed0039bf',''), ('21776','{29221}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','b78ca1d148624deb95177f56eb738338',''), ('21777','{29222}<>{29223} and length({29224})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','203415c1da0d4e36b1e52904c8f77ad7',''), ('21778','({32192}>0 and {32192}<10m) or ({32192}=0 and {32193}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','7cb3423e736d435b87a21687c09debf0',''), ('21779','{29226}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c48e5ab4112d46898f219f4e9d2e4bae',''), ('21780','{29227}<0 and {29228}>0 and ( {29229}=6 or {29229}=7 or {29229}=11 or {29229}=62 or {29229}=69 or {29229}=117 ) and ({29230}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29227}>0 and {29231}>0) or ({29230}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','0ec14ed9e07441bc94331081b1eefea7',''), ('21781','({29232}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29233} or {29234}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29233}) and {29233}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29232}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29233} and {29234}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29233}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','6446f31cc81540c4967afe496edcc01b',''), ('21782','{29235}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29236}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29237}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29238}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','9a38ec2a71ac47e3afe4c7b65ee22b9f',''), ('21783','{$IFCONTROL:"{#IFNAME}"}=1 and {29239}=2 and ({29240}<>{29241})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29239}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','7310ec80c5ce4bd9a8d193ca10ffc636',''), ('21784','{29242}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','5021ba3d848e4c0d80c9644ab70b313b',''), ('21785','{29243}>{$ICMP_LOSS_WARN} and {29243}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','b4c65c535f9841d98da1d32a9aaed7b8',''), ('21786','{29244}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','493e740c3b3a48c3a308492d67ea11f8',''), ('21787','{29245}<>{29246} and length({29247})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','cada2ef5e9b14392885a05f9d50186d8',''), ('21788','({32194}>0 and {32194}<10m) or ({32194}=0 and {32195}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','354a68e77ee043a684ab8be18628ffca',''), ('21789','{29249}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b19e8ce655fb48e389a384a78826d5d6',''), ('21790','{29250}<0 and {29251}>0 and ( {29252}=6 or {29252}=7 or {29252}=11 or {29252}=62 or {29252}=69 or {29252}=117 ) and ({29253}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29250}>0 and {29254}>0) or ({29253}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','597cab58269142b2bcf893e72baa9a0f',''), ('21791','({29255}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29256} or {29257}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29256}) and {29256}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29255}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29256} and {29257}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29256}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','ce9c951bfca14de29b0d0379c3da3b38',''), ('21792','{29258}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29259}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29260}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29261}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','25d69f21627e49aab9fde89e3c1f8078',''), ('21793','{$IFCONTROL:"{#IFNAME}"}=1 and {29262}=2 and ({29263}<>{29264})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29262}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','013ab2e8443a4380b29960f1eb748ff1',''), ('21794','{29265}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','fe75c4f4867942638e3d39face2aea7f',''), ('21795','{29266}>{$ICMP_LOSS_WARN} and {29266}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','ebb9113e215a4ab999b5faf043c3cdd3',''), ('21796','{29267}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','ac9ee5f5347945eaa12f8551ca54ec9b',''), ('21797','{29268}<>{29269} and length({29270})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','796b3caf5996404c93c8266fe7c5aa89',''), ('21798','({32196}>0 and {32196}<10m) or ({32196}=0 and {32197}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','99da791be26943ec806a2c690f74a66d',''), ('21799','{29272}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a6a88593c32342deb0b72e998872a3c9',''), ('21800','{29273}<0 and {29274}>0 and ( {29275}=6 or {29275}=7 or {29275}=11 or {29275}=62 or {29275}=69 or {29275}=117 ) and ({29276}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29273}>0 and {29277}>0) or ({29276}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','6cf5856a75df4190a0ba25ec62347194',''), ('21801','({29278}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29279} or {29280}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29279}) and {29279}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29278}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29279} and {29280}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29279}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','7538c8f6c90f441cae42f030a34365f9',''), ('21802','{29281}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29282}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29283}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29284}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','6ac02e1d7b024c1ca4e3e19215d09c6b',''), ('21803','{$IFCONTROL:"{#IFNAME}"}=1 and {29285}=2 and ({29286}<>{29287})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29285}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','13d005d75c364bfd89008c30df81afc8',''), ('21804','{29288}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','81ff4b462e134758bf758ea598a89ac5',''), ('21805','{29289}>{$ICMP_LOSS_WARN} and {29289}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','5cf5ce1e93f54801a94370f4db68422a',''), ('21806','{29290}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','f9e60c1f73a24df5a9d84ebb81b28861',''), ('21807','{29291}<>{29292} and length({29293})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','5a2e293b0f664c93ac675f925f0ee3e0',''), ('21808','({32198}>0 and {32198}<10m) or ({32198}=0 and {32199}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','4748e443639d47b2a969070386524eee',''), ('21809','{29295}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','f8bfaedd5b0f45ae9e91831865b2c1fa',''), ('21810','{29296}<0 and {29297}>0 and ( {29298}=6 or {29298}=7 or {29298}=11 or {29298}=62 or {29298}=69 or {29298}=117 ) and ({29299}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29296}>0 and {29300}>0) or ({29299}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','4246c08015084a69a8025aaa928efb3f',''), ('21811','({29301}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29302} or {29303}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29302}) and {29302}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29301}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29302} and {29303}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29302}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','b96a1bd98a964bc4b3aa10f1b723c256',''), ('21812','{29304}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29305}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29306}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29307}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','b2999652071a4eecb8f7112b03168412',''), ('21813','{$IFCONTROL:"{#IFNAME}"}=1 and {29308}=2 and ({29309}<>{29310})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29308}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','80c35372193e4616969d2e681a412606',''), ('21814','{29311}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','ace4ead8482a47fea59f346d0cc41c62',''), ('21815','{29312}>{$ICMP_LOSS_WARN} and {29312}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','e474571997454a96a7e86294c876c0a7',''), ('21816','{29313}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','d4e0d30eadce4dd5a37afd48a10ed379',''), ('21817','{29314}<>{29315} and length({29316})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','1060d8c4dda547d9902dc94ac68f1b33',''), ('21818','({32200}>0 and {32200}<10m) or ({32200}=0 and {32201}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','916fbb00982f4fb38b1942cf44daf5f2',''), ('21819','{29318}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c98fffdacb89455aa6f4f62060d360de',''), ('21820','{29319}<0 and {29320}>0 and ( {29321}=6 or {29321}=7 or {29321}=11 or {29321}=62 or {29321}=69 or {29321}=117 ) and ({29322}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29319}>0 and {29323}>0) or ({29322}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','837272175f904763bd4c0462946e9a0e',''), ('21821','({29324}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29325} or {29326}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29325}) and {29325}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29324}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29325} and {29326}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29325}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','d57a8a917c2a4ad89618acef7c5f1fcb',''), ('21822','{29327}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29328}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29329}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29330}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','d7b2ed63b7f941878d34b64ca7ffe21b',''), ('21823','{$IFCONTROL:"{#IFNAME}"}=1 and {29331}=2 and ({29332}<>{29333})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29331}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','b0bc658fd9654ca4802593051c5a368f',''), ('21824','{29334}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','f9fd5f6cd1a24a22ae48b0628193e0c4',''), ('21825','{29335}>{$ICMP_LOSS_WARN} and {29335}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','c72587594cfb49a6a8b39575e39ea8eb',''), ('21826','{29336}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','7d3593f5ee8f4350867de676743c4f60',''), ('21827','{29337}<>{29338} and length({29339})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','10caf9fc68e14308a0dbe730e7e4199e',''), ('21828','({32202}>0 and {32202}<10m) or ({32202}=0 and {32203}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','8138034748544325bad6bdc90484ad21',''), ('21829','{29341}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d4932539ba7245ff8975cc8c224f8d36',''), ('21830','{29342}<0 and {29343}>0 and ( {29344}=6 or {29344}=7 or {29344}=11 or {29344}=62 or {29344}=69 or {29344}=117 ) and ({29345}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29342}>0 and {29346}>0) or ({29345}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','f3c8a1a967524ca2bba4c646987e3fc8',''), ('21831','({29347}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29348} or {29349}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29348}) and {29348}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29347}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29348} and {29349}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29348}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','b810391bc8204730b88b3059e2eefa16',''), ('21832','{29350}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29351}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29352}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29353}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','6f66143ac9064cdfa02884fde84a4c96',''), ('21833','{$IFCONTROL:"{#IFNAME}"}=1 and {29354}=2 and ({29355}<>{29356})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29354}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','6aa1807ef8c94f09a7bd527f5c34fd1f',''), ('21834','{29357}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','65c639dc46a345da90e22ca0dc491d8c',''), ('21835','{29358}>{$ICMP_LOSS_WARN} and {29358}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','65eb4b94fead4b57acda0b7ac001c41c',''), ('21836','{29359}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','410faf17c1ca41408cb773270dc614b3',''), ('21837','{29360}<>{29361} and length({29362})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','ed7279478045454b809f46211c5c71b9',''), ('21838','({32204}>0 and {32204}<10m) or ({32204}=0 and {32205}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','ecf84d7e28504c23a40b013683d1cfee',''), ('21839','{29364}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','56f238340c7e40b39eb8cc04a67cf465',''), ('21840','{29365}<0 and {29366}>0 and ( {29367}=6 or {29367}=7 or {29367}=11 or {29367}=62 or {29367}=69 or {29367}=117 ) and ({29368}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29365}>0 and {29369}>0) or ({29368}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','bc744a57d4e44fd187453b4b8f72538e',''), ('21841','({29370}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29371} or {29372}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29371}) and {29371}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29370}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29371} and {29372}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29371}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','4a4f855dd0744cd29c3d24eb7e00de35',''), ('21842','{29373}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29374}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29375}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29376}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','f8e4afe44bc041e9b1853644d1b662f8',''), ('21843','{$IFCONTROL:"{#IFNAME}"}=1 and {29377}=2 and ({29378}<>{29379})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29377}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','7b8a57cb6eeb4eb5b2a6e270065f6032',''), ('21844','{29380}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','151029088e374c23bb89abe498da70ef',''), ('21845','{29381}>{$ICMP_LOSS_WARN} and {29381}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','f719d0a102d84edb8c2672502ee28b25',''), ('21846','{29382}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','acba03a0cc9a40fb89258e1ece7dce30',''), ('21847','{29383}<>{29384} and length({29385})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','f2d7211cd2ca476facec96075e06298c',''), ('21848','({32206}>0 and {32206}<10m) or ({32206}=0 and {32207}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','75e9434ddcb34c5489190d8b6de07e87',''), ('21849','{29387}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b14b41ca31c342be803852075ff5c9f9',''), ('21850','{29388}<0 and {29389}>0 and ( {29390}=6 or {29390}=7 or {29390}=11 or {29390}=62 or {29390}=69 or {29390}=117 ) and ({29391}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29388}>0 and {29392}>0) or ({29391}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','1d4bee528df346c6b9ac8e73352b0871',''), ('21851','({29393}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29394} or {29395}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29394}) and {29394}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29393}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29394} and {29395}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29394}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','17ab3a7deafe4ffdbc33a1d3ebef3039',''), ('21852','{29396}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29397}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29398}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29399}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','94fa2681675b4295ad1ee4d86e6f85f0',''), ('21853','{$IFCONTROL:"{#IFNAME}"}=1 and {29400}=2 and ({29401}<>{29402})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29400}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','80d625abfee747ffa6513c604aff983f',''), ('21854','{29403}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','00453dcba3e74c4cb1bfce45c0d29590',''), ('21855','{29404}>{$ICMP_LOSS_WARN} and {29404}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','ef9c639da1fb4c7d9e9082b76468353e',''), ('21856','{29405}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','8a7a50a814854217bae736f9766a9f42',''), ('21857','{29406}<>{29407} and length({29408})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','3d3902234c994181819a311b9f1947dd',''), ('21858','({32208}>0 and {32208}<10m) or ({32208}=0 and {32209}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','7b5ce136e1524c2c85febecb055e50f8',''), ('21859','{29410}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','2fdfcfe056e848f2b0a628d87ad4aa6c',''), ('21860','{29411}<0 and {29412}>0 and ( {29413}=6 or {29413}=7 or {29413}=11 or {29413}=62 or {29413}=69 or {29413}=117 ) and ({29414}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29411}>0 and {29415}>0) or ({29414}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','e9c85085a0d546ba910b139c99adee10',''), ('21861','({29416}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29417} or {29418}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29417}) and {29417}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29416}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29417} and {29418}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29417}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','91c48f7aac824bfbb58d78bd791a60e2',''), ('21862','{29419}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29420}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29421}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29422}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','d7a049070a434aa5b3a9c320f25eb040',''), ('21863','{$IFCONTROL:"{#IFNAME}"}=1 and {29423}=2 and ({29424}<>{29425})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29423}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','1f7c8669552d4890ac963f53aefcf100',''), ('21864','{29426}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','2510c2fd36cf4379b15e3e18abffea95',''), ('21865','{29427}>{$ICMP_LOSS_WARN} and {29427}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','48a93170038b41af9fd8b6f25500ee37',''), ('21866','{29428}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','1e70b999e9854c4093a75a960f8282a2',''), ('21867','{29429}<>{29430} and length({29431})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','9e3ce4eb299547199e67c131556d5bc5',''), ('21868','({32210}>0 and {32210}<10m) or ({32210}=0 and {32211}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','be74bf6810694df98cd43a669e247aab',''), ('21869','{29433}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a2d66f40be294b8b81a96e11afcfe7ec',''), ('21870','{29434}<0 and {29435}>0 and ( {29436}=6 or {29436}=7 or {29436}=11 or {29436}=62 or {29436}=69 or {29436}=117 ) and ({29437}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29434}>0 and {29438}>0) or ({29437}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','7a475a2472c64ee2b15b5f36c93e17db',''), ('21871','({29439}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29440} or {29441}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29440}) and {29440}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29439}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29440} and {29441}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29440}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','2154cc56a5304ec5b6327852cf4eea8b',''), ('21872','{29442}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29443}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29444}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29445}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','450f5f3106cf4755b48cbfd9d0c2a287',''), ('21873','{$IFCONTROL:"{#IFNAME}"}=1 and {29446}=2 and ({29447}<>{29448})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29446}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','24634d43d28146ca802ae4aee7af276a',''), ('21874','{29449}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','f37a32635c674102aaf1b7ceafa8532a',''), ('21875','{29450}>{$ICMP_LOSS_WARN} and {29450}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','1889f2943a044c49830914fd18846172',''), ('21876','{29451}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','805b3e4698dc4c55a4cc40712e14e494',''), ('21877','{29452}<>{29453} and length({29454})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','9ffbe2020d8b46f1ac730c038e9d1f51',''), ('21878','({32212}>0 and {32212}<10m) or ({32212}=0 and {32213}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','a885ccc0d0e546fe8a970ff4876f9471',''), ('21879','{29456}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6c2ff9e7f39a46918bf5d1843c7bf615',''), ('21880','{29457}<0 and {29458}>0 and ( {29459}=6 or {29459}=7 or {29459}=11 or {29459}=62 or {29459}=69 or {29459}=117 ) and ({29460}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29457}>0 and {29461}>0) or ({29460}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','ef8a1963f5e743bb921edaa2115c9076',''), ('21881','({29462}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29463} or {29464}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29463}) and {29463}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29462}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29463} and {29464}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29463}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','5fe8afc5b0554c0f99b8fc4fe914deca',''), ('21882','{29465}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29466}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29467}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29468}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','f4eec00173b3447080d0528805b31aef',''), ('21883','{$IFCONTROL:"{#IFNAME}"}=1 and {29469}=2 and ({29470}<>{29471})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29469}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','7596859088f04a0785c6e5b07d446ba8',''), ('21884','{29472}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','d17f5a29c6104de78dd9b66ae8144e9b',''), ('21885','{29473}>{$ICMP_LOSS_WARN} and {29473}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','f3ad9f5ef4734e6da08c699d937a1521',''), ('21886','{29474}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','831afefc75dc472ab3d010757abab4e2',''), ('21887','{29475}<>{29476} and length({29477})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','ed353db14a0742a7a865e9805025e9a9',''), ('21888','({32214}>0 and {32214}<10m) or ({32214}=0 and {32215}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','285c2be6116d4e5fae7d0cbad5ccecb2',''), ('21889','{29479}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7a821734dc78455fa363bf7a8c2f2dc2',''), ('21890','{29480}<0 and {29481}>0 and ( {29482}=6 or {29482}=7 or {29482}=11 or {29482}=62 or {29482}=69 or {29482}=117 ) and ({29483}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29480}>0 and {29484}>0) or ({29483}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','127e4dfad7884ac782f9d31d0b84dfee',''), ('21891','({29485}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29486} or {29487}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29486}) and {29486}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29485}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29486} and {29487}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29486}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','839abcd582c340c8986edba7e8df360b',''), ('21892','{29488}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29489}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29490}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29491}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','32debbc2bfb546a0bcc3091494ee5b60',''), ('21893','{$IFCONTROL:"{#IFNAME}"}=1 and {29492}=2 and ({29493}<>{29494})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29492}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','cb6f6e2bddc0454eb142cc35344e7082',''), ('21894','{29495}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','93236f96ce364b1ab95c603503c6984f',''), ('21895','{29496}>{$ICMP_LOSS_WARN} and {29496}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','e7c3d84b4e3f4faabd28f36984116925',''), ('21896','{29497}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','4219929d04dd4367bf82c0c97f85eae7',''), ('21897','{29498}<>{29499} and length({29500})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','3bbc3dcf8127414abb426c830e8fddee',''), ('21898','({32216}>0 and {32216}<10m) or ({32216}=0 and {32217}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','f445d5e35c2b4296a670165e332be78c',''), ('21899','{29502}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e38ee3ff9c5a438fa7785db98162b84a',''), ('21900','{29503}<0 and {29504}>0 and ( {29505}=6 or {29505}=7 or {29505}=11 or {29505}=62 or {29505}=69 or {29505}=117 ) and ({29506}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29503}>0 and {29507}>0) or ({29506}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','b88f9f6974434f6ab26fbb747feb66e6',''), ('21901','({29508}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29509} or {29510}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29509}) and {29509}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29508}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29509} and {29510}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29509}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','7dd2c3c0a76649f097999376f6bd4bfc',''), ('21902','{29511}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29512}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29513}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29514}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','53652249393a485dab8db23696953e31',''), ('21903','{$IFCONTROL:"{#IFNAME}"}=1 and {29515}=2 and ({29516}<>{29517})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29515}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','b9f20adf207c43d192921831fd5c882c',''), ('21904','{29518}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','04d896fcaf2c4573bb077432604ca2ad',''), ('21905','{29519}>{$ICMP_LOSS_WARN} and {29519}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','c6468c0bef2c4ad2958d69df8364722a',''), ('21906','{29520}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','2b339fa462ce498fbf5d7557e8548930',''), ('21907','{29521}<>{29522} and length({29523})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','3517d04dc5c34d07aad7ec73381deaaf',''), ('21908','({32218}>0 and {32218}<10m) or ({32218}=0 and {32219}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','40fac3f864c442f9bcbcbd5757070c38',''), ('21909','{29525}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','bb5432b89f7248758d05d4c44cdf0d0a',''), ('21910','{29526}<0 and {29527}>0 and ( {29528}=6 or {29528}=7 or {29528}=11 or {29528}=62 or {29528}=69 or {29528}=117 ) and ({29529}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29526}>0 and {29530}>0) or ({29529}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','fac8789a47e44e1e98a047f9a8af8a16',''), ('21911','({29531}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29532} or {29533}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29532}) and {29532}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29531}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29532} and {29533}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29532}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','6f683ec4b17642b6add94e73ea306f2f',''), ('21912','{29534}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29535}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29536}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29537}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','71e00ff03c6c46f6a4b5b986c67e3c2c',''), ('21913','{$IFCONTROL:"{#IFNAME}"}=1 and {29538}=2 and ({29539}<>{29540})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29538}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','518c5d16112b4b76a043d74e98748901',''), ('21914','{29541}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','c63272b308134676a35c7b8311d71589',''), ('21915','{29542}>{$ICMP_LOSS_WARN} and {29542}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','09d55f6987784bffb6024266e0895878',''), ('21916','{29543}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','235acd3457814902b4bf316065d05e00',''), ('21917','{29544}<>{29545} and length({29546})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','5431acc090c34d879e911cd90a52eb48',''), ('21918','({32220}>0 and {32220}<10m) or ({32220}=0 and {32221}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','7bcd342f9c4f467a98ab38a5ea3e174b',''), ('21919','{29548}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','2f271102d58b4068b87eab5ff70b7798',''), ('21920','{29549}<0 and {29550}>0 and ( {29551}=6 or {29551}=7 or {29551}=11 or {29551}=62 or {29551}=69 or {29551}=117 ) and ({29552}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29549}>0 and {29553}>0) or ({29552}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','f2b1a41fe508425cadd992422f9f2e1a',''), ('21921','({29554}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29555} or {29556}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29555}) and {29555}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29554}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29555} and {29556}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29555}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','89c85677363b4416a8718b6455c5e2ec',''), ('21922','{29557}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29558}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29559}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29560}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','b1ae075b11a2481da6a64b65c5d0d4a8',''), ('21923','{$IFCONTROL:"{#IFNAME}"}=1 and {29561}=2 and ({29562}<>{29563})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29561}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','d9beebab41fd436fad7f54cfab6e5eb0',''), ('21924','{29564}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','16ef2e7fa1a949298407a0a0b4d77746',''), ('21925','{29565}>{$ICMP_LOSS_WARN} and {29565}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','1dbb087e217944aebb6cd2ed14685a46',''), ('21926','{29566}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','2dd9b73423b946f89dc7a421e12fd58e',''), ('21927','{29567}<>{29568} and length({29569})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','40ae2f08e95b4affab12454007f4bdc6',''), ('21928','({32222}>0 and {32222}<10m) or ({32222}=0 and {32223}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','d81cc3699a454ae3bd9bf813fff8e286',''), ('21929','{29571}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d720c3c0a669406cad47bf135de9be8c',''), ('21930','{29572}<0 and {29573}>0 and ( {29574}=6 or {29574}=7 or {29574}=11 or {29574}=62 or {29574}=69 or {29574}=117 ) and ({29575}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29572}>0 and {29576}>0) or ({29575}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','ba58df29a51d4ad6b415654f10968e27',''), ('21931','({29577}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29578} or {29579}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29578}) and {29578}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29577}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29578} and {29579}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29578}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','29ca187c6d6941caab396f6b57e86746',''), ('21932','{29580}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29581}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29582}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29583}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','72076d70d7b644b19e64bd55fab5e594',''), ('21933','{$IFCONTROL:"{#IFNAME}"}=1 and {29584}=2 and ({29585}<>{29586})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29584}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','bdab20ca351f4d39a27c636b33df9de1',''), ('21934','{29587}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','eccaf3e02f9944638588b82322322c32',''), ('21935','{29588}>{$ICMP_LOSS_WARN} and {29588}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','71286dd187734ee18b53fdf73602ef7d',''), ('21936','{29589}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','18e8caa0b7a44c64aaec1d5eecf76297',''), ('21937','{29590}<>{29591} and length({29592})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','681af1da9ba7432aa407019b1ff5192f',''), ('21938','({32224}>0 and {32224}<10m) or ({32224}=0 and {32225}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','6cbc680faf50402a8aa5eb6b2b848f7b',''), ('21939','{29594}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','147de2ef3a3447cf9401f4197e911b17',''), ('21940','{29595}<0 and {29596}>0 and ( {29597}=6 or {29597}=7 or {29597}=11 or {29597}=62 or {29597}=69 or {29597}=117 ) and ({29598}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29595}>0 and {29599}>0) or ({29598}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','7ff7bef321134c08bc70b8988abb91c4',''), ('21941','({29600}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29601} or {29602}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29601}) and {29601}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29600}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29601} and {29602}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29601}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','43f1d416170f493d825b087a88fd8b0e',''), ('21942','{29603}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29604}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29605}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29606}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','6e91f3d30c5a492dbb56b284594aa6ba',''), ('21943','{$IFCONTROL:"{#IFNAME}"}=1 and {29607}=2 and ({29608}<>{29609})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29607}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','1f51aae95ee44368be4327fa0bb02c8a',''), ('21944','{29610}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','6883be571ae343a791670f2f0c36cd02',''), ('21945','{29611}>{$ICMP_LOSS_WARN} and {29611}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','ea3e5695d49f4868bd6a83e67689e5d6',''), ('21946','{29612}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','4439b1b6d31d4824ba1ed448d9bda1b4',''), ('21947','{29613}<>{29614} and length({29615})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','ab81c691a90a409fa0d24ddac4ee455f',''), ('21948','({32226}>0 and {32226}<10m) or ({32226}=0 and {32227}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','1d5170eb0ba14c4e8799d712ee84d004',''), ('21949','{29617}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','94b83963c4474cd5a8d21a8cdae584f4',''), ('21950','{29618}<0 and {29619}>0 and ( {29620}=6 or {29620}=7 or {29620}=11 or {29620}=62 or {29620}=69 or {29620}=117 ) and ({29621}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29618}>0 and {29622}>0) or ({29621}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','b34e8d6b7e81481bb19b3f39236c29e4',''), ('21951','({29623}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29624} or {29625}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29624}) and {29624}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29623}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29624} and {29625}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29624}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','3c74af72b29e4b8484ccf36539caf234',''), ('21952','{29626}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29627}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29628}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29629}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','6fae861a027a4965b5b80500a218c0f1',''), ('21953','{$IFCONTROL:"{#IFNAME}"}=1 and {29630}=2 and ({29631}<>{29632})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29630}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','61ea7de46c3841c7a4fc04f67ef1448f',''), ('21954','{29633}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','31542fecf2794dcb8b96293087b71526',''), ('21955','{29634}>{$ICMP_LOSS_WARN} and {29634}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','ded01e910a0046fa94a89c7011cc9514',''), ('21956','{29635}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','5c9b3116dc4140bdb7903a094fbf098f',''), ('21957','{29636}<>{29637} and length({29638})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','1e2f2debb1cc4f13b133cbe6600c99cc',''), ('21958','({32228}>0 and {32228}<10m) or ({32228}=0 and {32229}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','a888ad0e55f14ba0803bf6923dc7d227',''), ('21959','{29640}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','3efee76288274e42921647d5a1d82ab1',''), ('21960','{29641}<0 and {29642}>0 and ( {29643}=6 or {29643}=7 or {29643}=11 or {29643}=62 or {29643}=69 or {29643}=117 ) and ({29644}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29641}>0 and {29645}>0) or ({29644}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','19b7437f8a91461da91c77abec3ae9f2',''), ('21961','({29646}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29647} or {29648}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29647}) and {29647}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29646}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29647} and {29648}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29647}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','462f683cfd5d4c5096b23d7051440671',''), ('21962','{29649}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29650}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29651}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29652}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','25641b52614a4e3b9a11af9212c47b4f',''), ('21963','{$IFCONTROL:"{#IFNAME}"}=1 and {29653}=2 and ({29654}<>{29655})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29653}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','979f432cdb8442faa8105b295b394dda',''), ('21964','{29656}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','16bfb1a39fe54fa0b512ed93c8c3b00a',''), ('21965','{29657}>{$ICMP_LOSS_WARN} and {29657}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','d166ae7475f5416499b46a00cf5de374',''), ('21966','{29658}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','a59d0752d5724f01a783ef8b4131b9d4',''), ('21967','{29659}<>{29660} and length({29661})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','01cb61daac1f42d3ab0a5fafd2b113a4',''), ('21968','({32230}>0 and {32230}<10m) or ({32230}=0 and {32231}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','a1d58fc2668b465a81a86536c1f646ad',''), ('21969','{29663}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a564c084ec414271b212db6c9b301db7',''), ('21970','{29664}<0 and {29665}>0 and ( {29666}=6 or {29666}=7 or {29666}=11 or {29666}=62 or {29666}=69 or {29666}=117 ) and ({29667}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29664}>0 and {29668}>0) or ({29667}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','370d7a702a62401ca9dd904b3c7ec39c',''), ('21971','({29669}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29670} or {29671}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29670}) and {29670}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29669}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29670} and {29671}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29670}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','b78e00216b3441fbb217d6b14cba2979',''), ('21972','{29672}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29673}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29674}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29675}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','921716eadabd441d87d23a53ea1ffa8e',''), ('21973','{$IFCONTROL:"{#IFNAME}"}=1 and {29676}=2 and ({29677}<>{29678})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29676}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','b810190964d44084b2294ea56c7b5ee5',''), ('21974','{29679}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','db42c8af11744c5ab3f47f72ebc4a510',''), ('21975','{29680}>{$ICMP_LOSS_WARN} and {29680}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','844a3542770748cf9a99070e6f55fba6',''), ('21976','{29681}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','4b4911507b374dfc9c1b105c4c09e3b8',''), ('21977','{29682}<>{29683} and length({29684})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','dc073a13e66f4d528af68db048184c2f',''), ('21978','({32232}>0 and {32232}<10m) or ({32232}=0 and {32233}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','1cfae25fa7b041b98b5b97a5bca0796a',''), ('21979','{29686}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','cb430613680b4bd087d79a4f1004f453',''), ('21980','{29687}<0 and {29688}>0 and ( {29689}=6 or {29689}=7 or {29689}=11 or {29689}=62 or {29689}=69 or {29689}=117 ) and ({29690}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29687}>0 and {29691}>0) or ({29690}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','3aa76bfc278a484387be9ef760005d55',''), ('21981','({29692}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29693} or {29694}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29693}) and {29693}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29692}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29693} and {29694}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29693}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','9b698eef38ca438383c7bc06c2589166',''), ('21982','{29695}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29696}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29697}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29698}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','71f098c03cf945cd9a5a9a26f46bb54e',''), ('21983','{$IFCONTROL:"{#IFNAME}"}=1 and {29699}=2 and ({29700}<>{29701})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29699}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','b8325c85797b4b56a2ebb5f998751bcc',''), ('21984','{29702}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','f4acabb314ea4a38935ebb722bf47ed9',''), ('21985','{29703}>{$ICMP_LOSS_WARN} and {29703}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','629b35a8b5414240953062d4b4caad60',''), ('21986','{29704}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','28ce838e43004acebc74c42e782b65cb',''), ('21987','{29705}<>{29706} and length({29707})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','f01bb34d5f30454bb72e6b00e187c066',''), ('21988','({32234}>0 and {32234}<10m) or ({32234}=0 and {32235}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','bd172615c09147ed8deb102f88eb8900',''), ('21989','{29709}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','1c20500d7efe42e59d3562c980201ef1',''), ('21990','{29710}<0 and {29711}>0 and ( {29712}=6 or {29712}=7 or {29712}=11 or {29712}=62 or {29712}=69 or {29712}=117 ) and ({29713}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29710}>0 and {29714}>0) or ({29713}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','53447bc4ecb04af7b4d9ef6a57c78a29',''), ('21991','({29715}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29716} or {29717}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29716}) and {29716}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29715}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29716} and {29717}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29716}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','05e4dbc448fc431f90a831af90408113',''), ('21992','{29718}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29719}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29720}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29721}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','0af66a5ab69448549374ef932be1d57b',''), ('21993','{$IFCONTROL:"{#IFNAME}"}=1 and {29722}=2 and ({29723}<>{29724})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29722}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','6251339e2940419994033e0689fa16a7',''), ('21994','{29725}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','d914dc20fb664be7832aae19f07df37f',''), ('21995','{29726}>{$ICMP_LOSS_WARN} and {29726}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','70d6789335b74cdd87a1a23bf4a3f875',''), ('21996','{29727}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','49f77a9948164eb7aeffc3efe3f60ce1',''), ('21997','{29728}<>{29729} and length({29730})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','63f90de57f5f4b5b92d0db0b54d0b1d2',''), ('21998','({32236}>0 and {32236}<10m) or ({32236}=0 and {32237}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','b31c237e2046464c95b1ab70dc08e118',''), ('21999','{29732}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','1b222c2531f140399fe94a54556c6422',''), ('22000','{29733}<0 and {29734}>0 and ( {29735}=6 or {29735}=7 or {29735}=11 or {29735}=62 or {29735}=69 or {29735}=117 ) and ({29736}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29733}>0 and {29737}>0) or ({29736}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','c05d1756423841658946ffaddf78ef79',''), ('22001','({29738}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29739} or {29740}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29739}) and {29739}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29738}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29739} and {29740}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29739}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','e08df3d8533c46a9aac0144486098b78',''), ('22002','{29741}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29742}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29743}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29744}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','dcd307c6b1074213976f0f26cb699699',''), ('22003','{$IFCONTROL:"{#IFNAME}"}=1 and {29745}=2 and ({29746}<>{29747})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29745}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','2eed9a625d3c45b4bfd4fdd70b58461d',''), ('22004','{29748}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','b74334acbba2407d8baff550f0db6d64',''), ('22005','{29749}>{$ICMP_LOSS_WARN} and {29749}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','160e58bf2d05433882e3e0c8f187c42e',''), ('22006','{29750}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','ee3f5dbb8f5848c888c0d599be2dd4fa',''), ('22007','{29751}<>{29752} and length({29753})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','635b2c749af2495aa87688001bd73a6c',''), ('22008','({32238}>0 and {32238}<10m) or ({32238}=0 and {32239}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','869d6bd39ef1440193978c60518a91f7',''), ('22009','{29755}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6ed1c046ba1a4246a6e30d5147e58250',''), ('22010','{29756}<0 and {29757}>0 and ( {29758}=6 or {29758}=7 or {29758}=11 or {29758}=62 or {29758}=69 or {29758}=117 ) and ({29759}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29756}>0 and {29760}>0) or ({29759}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','4549b4a23bc24c0d8998f2dc6a77a520',''), ('22011','({29761}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29762} or {29763}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29762}) and {29762}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29761}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29762} and {29763}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29762}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','676efabc192b4583b60c52ce440d00f2',''), ('22012','{29764}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29765}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29766}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29767}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','cd633c8e31824cb1b38c6e9dad58ca7e',''), ('22013','{$IFCONTROL:"{#IFNAME}"}=1 and {29768}=2 and ({29769}<>{29770})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29768}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','f32914fd53134704a5c11b501decb57e',''), ('22014','{29771}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','d81a92c3079b4d25be205b1e56b15a73',''), ('22015','{29772}>{$ICMP_LOSS_WARN} and {29772}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','cd4376c2f8e449b9b4923720374198af',''), ('22016','{29773}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','9e00ffd6364d4e238985a4f23601e1c6',''), ('22017','{29774}<>{29775} and length({29776})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','968c0bef31dc4ae89426b7dee5b76ea1',''), ('22018','({32240}>0 and {32240}<10m) or ({32240}=0 and {32241}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','119f36d60a1141f5a5dee9ee3aba894b',''), ('22019','{29778}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','cd1295131197495183bcc095622fb296',''), ('22020','{29779}<0 and {29780}>0 and ( {29781}=6 or {29781}=7 or {29781}=11 or {29781}=62 or {29781}=69 or {29781}=117 ) and ({29782}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29779}>0 and {29783}>0) or ({29782}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','a14597e77d1a47cfae87df483df50d44',''), ('22021','({29784}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29785} or {29786}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29785}) and {29785}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29784}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29785} and {29786}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29785}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','86aee07149c9403eba4e32030c52ae0e',''), ('22022','{29787}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29788}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29789}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29790}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','2fa427f9d66548ee9574495847cd521a',''), ('22023','{$IFCONTROL:"{#IFNAME}"}=1 and {29791}=2 and ({29792}<>{29793})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29791}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','066a5460a2964a7586a90494dcc29c4f',''), ('22024','{29794}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','0f59da9697304abd8c074c51ce3a4bef',''), ('22025','{29795}>{$ICMP_LOSS_WARN} and {29795}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','14b723dee48541a3a8b36c128681a200',''), ('22026','{29796}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','f8666db5e5a64d3fa7119deac48c317c',''), ('22027','{29797}<>{29798} and length({29799})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','375ba33fbee4425d97cbb15e410e52d3',''), ('22028','({32242}>0 and {32242}<10m) or ({32242}=0 and {32243}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','4e0a9fd604b04e6295108f8edf7910a9',''), ('22029','{29801}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','5ea3db8ebb2f49ab9fe7d38de50a4003',''), ('22030','{29802}<0 and {29803}>0 and ( {29804}=6 or {29804}=7 or {29804}=11 or {29804}=62 or {29804}=69 or {29804}=117 ) and ({29805}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29802}>0 and {29806}>0) or ({29805}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','eaa731129de3470e830007ac7ce932f5',''), ('22031','({29807}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29808} or {29809}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29808}) and {29808}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29807}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29808} and {29809}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29808}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','4060d8dedaac41c8bce5b82df01eb53c',''), ('22032','{29810}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29811}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29812}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29813}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','294c29c25bae472fa13f20d6c75442bf',''), ('22033','{$IFCONTROL:"{#IFNAME}"}=1 and {29814}=2 and ({29815}<>{29816})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29814}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','073891fc4c8b4ec9b316deb9c4147cab',''), ('22034','{29817}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','fa71a2bcc742439a8eb76923db6dd34c',''), ('22035','{29818}>{$ICMP_LOSS_WARN} and {29818}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','c315770210b94fe39126514c41d6fa5d',''), ('22036','{29819}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','fe1eba68b565403a968bec8561362376',''), ('22037','{29820}<>{29821} and length({29822})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','caff4557fe8d4e0cb994c16a4d1c3eae',''), ('22038','({32244}>0 and {32244}<10m) or ({32244}=0 and {32245}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','661c463acbed4777b8269b9277a255fc',''), ('22039','{29824}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','eaa6f1c7bd334122af4cb08af35ebd86',''), ('22040','{29825}<0 and {29826}>0 and ( {29827}=6 or {29827}=7 or {29827}=11 or {29827}=62 or {29827}=69 or {29827}=117 ) and ({29828}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29825}>0 and {29829}>0) or ({29828}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','332308663e4e478d97383a638b2b1d02',''), ('22041','({29830}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29831} or {29832}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29831}) and {29831}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29830}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29831} and {29832}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29831}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','c854aedfd3594f21b40bd227de48c871',''), ('22042','{29833}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29834}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29835}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29836}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','f74f365e18d64e2096a326456622b3e1',''), ('22043','{$IFCONTROL:"{#IFNAME}"}=1 and {29837}=2 and ({29838}<>{29839})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29837}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','d007eb009f2d4b699cf5af8a0ccedfe9',''), ('22044','{29840}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','987ae7ade202464ba51fd8fcc67d3a19',''), ('22045','{29841}>{$ICMP_LOSS_WARN} and {29841}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','bf7a369d3b2a455496f8920177666d91',''), ('22046','{29842}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','9a35ff4d142640e387f247a8ae5021bc',''), ('22047','{29843}<>{29844} and length({29845})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','135707c751764f9087ebd32e1fe0b7ba',''), ('22048','({32246}>0 and {32246}<10m) or ({32246}=0 and {32247}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','1906ad6961664c74a2de31d20cd279b2',''), ('22049','{29847}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','239d876c15fe45ccb33ca87aba3a170f',''), ('22050','{29848}<0 and {29849}>0 and ( {29850}=6 or {29850}=7 or {29850}=11 or {29850}=62 or {29850}=69 or {29850}=117 ) and ({29851}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29848}>0 and {29852}>0) or ({29851}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','f1c3a3541f9948eb890816493e6251e5',''), ('22051','({29853}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29854} or {29855}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29854}) and {29854}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29853}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29854} and {29855}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29854}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','ec1a319bff034c6387ed43d083c0ca85',''), ('22052','{29856}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29857}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29858}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29859}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','1d46257a2eb14abf8f3dddae5e3974ca',''), ('22053','{$IFCONTROL:"{#IFNAME}"}=1 and {29860}=2 and ({29861}<>{29862})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29860}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','914bfdb045554132902dff8f910878d4',''), ('22054','{29863}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','94618414658d4f5bad5f1cf544fba55d',''), ('22055','{29864}>{$ICMP_LOSS_WARN} and {29864}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','ecb0d03f65144dbe8e8e22339576fe1a',''), ('22056','{29865}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','bb70a4e882224f9d8302f8726ff81a8d',''), ('22057','{29866}<>{29867} and length({29868})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','f4c43870fa484e4088c1d9c973387140',''), ('22058','({32248}>0 and {32248}<10m) or ({32248}=0 and {32249}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','ec03a67de5ca4d8d834e1689a1cd28bf',''), ('22059','{29870}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','ce74c74936194791b8f8a09acd9d5501',''), ('22060','{29871}<0 and {29872}>0 and ( {29873}=6 or {29873}=7 or {29873}=11 or {29873}=62 or {29873}=69 or {29873}=117 ) and ({29874}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29871}>0 and {29875}>0) or ({29874}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','0eca316085f046599bd3db8ce7b186f1',''), ('22061','({29876}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29877} or {29878}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29877}) and {29877}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29876}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29877} and {29878}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29877}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','417ef3b4a8814b01bcb4715248df543c',''), ('22062','{29879}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29880}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29881}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29882}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','a674f655342a42b094b0084fab1bde99',''), ('22063','{$IFCONTROL:"{#IFNAME}"}=1 and {29883}=2 and ({29884}<>{29885})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29883}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','2426c10e34db430a946528f02ae605d4',''), ('22064','{29886}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','7c5ac0cbe19b4a119e8cd02802169849',''), ('22065','{29887}>{$ICMP_LOSS_WARN} and {29887}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','4b63a258093a4b5f8c7f415c054e290c',''), ('22066','{29888}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','8d37fb7e0f32438ea1b1f55389c4c024',''), ('22067','{29889}<>{29890} and length({29891})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','23b043f4b2344b8ea9140387454e6b02',''), ('22068','({32250}>0 and {32250}<10m) or ({32250}=0 and {32251}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','e2283150bf9e4248aa9bb5bd9cc1881e',''), ('22069','{29893}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','8d9d64c66ffe48899e799bf720182b6c',''), ('22070','{29894}<0 and {29895}>0 and ( {29896}=6 or {29896}=7 or {29896}=11 or {29896}=62 or {29896}=69 or {29896}=117 ) and ({29897}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29894}>0 and {29898}>0) or ({29897}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','2215de4000e640c3b34a5333dfb3ec79',''), ('22071','({29899}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29900} or {29901}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29900}) and {29900}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29899}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29900} and {29901}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29900}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','1b7348beb2044c2cbb59904cde8fc02b',''), ('22072','{29902}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29903}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29904}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29905}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','cd7fe7efe80241efae4e7dd2952313bc',''), ('22073','{$IFCONTROL:"{#IFNAME}"}=1 and {29906}=2 and ({29907}<>{29908})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29906}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','a0071a9d0e604160af201436b9879256',''), ('22074','{29909}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','4c4560f84de94f36a3e7d4941ded2cba',''), ('22075','{29910}>{$ICMP_LOSS_WARN} and {29910}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','44efdc627091496baa1fbe4bbe078e6f',''), ('22076','{29911}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','0a8c65b849dd4cb1a0d740d57323f76c',''), ('22077','{29912}<>{29913} and length({29914})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','56b334cfbcf54eba95c229b097e3cfd7',''), ('22078','({32252}>0 and {32252}<10m) or ({32252}=0 and {32253}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','3afcbbeb91004c2dae24efaf37fec710',''), ('22079','{29916}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a63e914da20a47ef9d478b53d5e18042',''), ('22080','{29917}<0 and {29918}>0 and ( {29919}=6 or {29919}=7 or {29919}=11 or {29919}=62 or {29919}=69 or {29919}=117 ) and ({29920}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29917}>0 and {29921}>0) or ({29920}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','426f6a84191544c79eeabfbfb7590a35',''), ('22081','({29922}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29923} or {29924}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29923}) and {29923}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29922}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29923} and {29924}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29923}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','69788ba37d1147c2b67d4dbbc9b33eff',''), ('22082','{29925}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29926}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29927}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29928}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','376cee5b35f840d68db5d1daed510eb3',''), ('22083','{$IFCONTROL:"{#IFNAME}"}=1 and {29929}=2 and ({29930}<>{29931})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29929}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','a50ddafe680c447db056a9a9012faead',''), ('22084','{29932}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','6a7f532a2e4a4b4cbe9435e560f8d281',''), ('22085','{29933}>{$ICMP_LOSS_WARN} and {29933}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','17c92f554c45423eb5b44bd08f34ad7f',''), ('22086','{29934}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','3b093888ce154887afaa6f738218d718',''), ('22087','{29935}<>{29936} and length({29937})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','dd116049df75471b8aacbedd082f2634',''), ('22088','({32254}>0 and {32254}<10m) or ({32254}=0 and {32255}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','63045c3ca20d4cd390b1247dfd3876c4',''), ('22089','{29939}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7b8af02b531842e2b7f50037a8b3679a',''), ('22090','{29940}<0 and {29941}>0 and ( {29942}=6 or {29942}=7 or {29942}=11 or {29942}=62 or {29942}=69 or {29942}=117 ) and ({29943}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29940}>0 and {29944}>0) or ({29943}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','9d517af24f104293b6ca6b2b8de70d3b',''), ('22091','({29945}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29946} or {29947}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29946}) and {29946}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29945}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29946} and {29947}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29946}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','a95105e0711543388452fdb960bd2caf',''), ('22092','{29948}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29949}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29950}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29951}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','1881f3af98ec450cb15b88ac749bacf6',''), ('22093','{$IFCONTROL:"{#IFNAME}"}=1 and {29952}=2 and ({29953}<>{29954})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29952}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','1dec7dd2894f4296963217dc13c78abe',''), ('22094','{29955}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','a3fbb030723c45208c51c923ca11fe1c',''), ('22095','{29956}>{$ICMP_LOSS_WARN} and {29956}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','6e46f7a198bb4cbcb4555e80a4ce7045',''), ('22096','{29957}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','1ac1be3472d04dddaadfa68228997594',''), ('22097','{29958}<>{29959} and length({29960})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','39c5e6d11d4c4866adac2a145a18dfb7',''), ('22098','({32256}>0 and {32256}<10m) or ({32256}=0 and {32257}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','b3004ef6450848c8bb55e7c802c2bd96',''), ('22099','{29962}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','67cd4c3273394776a7e7497ec8c1a091',''), ('22100','{29963}<0 and {29964}>0 and ( {29965}=6 or {29965}=7 or {29965}=11 or {29965}=62 or {29965}=69 or {29965}=117 ) and ({29966}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29963}>0 and {29967}>0) or ({29966}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','2a68840307594164a2ca408decd6dba5',''), ('22101','({29968}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29969} or {29970}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29969}) and {29969}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29968}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29969} and {29970}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29969}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','fe4d3130c3284b46b649a92b019a712b',''), ('22102','{29971}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29972}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29973}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29974}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','22d8b44c4e6d467298c3528d98b02e1d',''), ('22103','{$IFCONTROL:"{#IFNAME}"}=1 and {29975}=2 and ({29976}<>{29977})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29975}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','e2c87fe418e342699ac14d1f9755258c',''), ('22104','{29978}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','b1a43fa0251248fa897994575b8a27ac',''), ('22105','{29979}>{$ICMP_LOSS_WARN} and {29979}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','740b195a7246457ea28635c4b8ef0f83',''), ('22106','{29980}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','d85b8d94139d44c69349898d2149e7bd',''), ('22107','{29981}<>{29982} and length({29983})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','90a6f09f02ba4a36b019c6624ad13812',''), ('22108','({32258}>0 and {32258}<10m) or ({32258}=0 and {32259}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','2d0d281a078546959a644e758ede97d6',''), ('22109','{29985}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','36ee677a31184b738cd02b91aee5ff78',''), ('22110','{29986}<0 and {29987}>0 and ( {29988}=6 or {29988}=7 or {29988}=11 or {29988}=62 or {29988}=69 or {29988}=117 ) and ({29989}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({29986}>0 and {29990}>0) or ({29989}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','6ca7d0731b294e1081e95cb6cf2a122d',''), ('22111','({29991}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29992} or {29993}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{29992}) and {29992}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{29991}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29992} and {29993}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{29992}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','4d7141f9e9e34656a89b011b20453494',''), ('22112','{29994}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {29995}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{29996}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {29997}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','01d85d1674674c7b9fc0fbaf96814160',''), ('22113','{$IFCONTROL:"{#IFNAME}"}=1 and {29998}=2 and ({29999}<>{30000})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{29998}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','018a5f1c3af44b64a6d31e095fce0dfc',''), ('22114','{30001}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','c093758529824015be966f41e9e27757',''), ('22115','{30002}>{$ICMP_LOSS_WARN} and {30002}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','05873e7bbc8347f48daf707af0a3a1df',''), ('22116','{30003}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','f0a1435b054f46a3a496ab8c92591d96',''), ('22117','{30004}<>{30005} and length({30006})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','64b6467c681f43f4954a24d7bc326588',''), ('22118','({32260}>0 and {32260}<10m) or ({32260}=0 and {32261}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','81a1b9e9630c4b28b035da3b9fa7e6d7',''), ('22119','{30008}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','289a3d4d39e14627bb26817d21221c05',''), ('22120','{30009}<0 and {30010}>0 and ( {30011}=6 or {30011}=7 or {30011}=11 or {30011}=62 or {30011}=69 or {30011}=117 ) and ({30012}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({30009}>0 and {30013}>0) or ({30012}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','bf2dcee19ae44de98fed1b9f41d80ea9',''), ('22121','({30014}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30015} or {30016}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30015}) and {30015}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30014}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30015} and {30016}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30015}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','92470dac23d7480f817f1d903e6ba869',''), ('22122','{30017}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {30018}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{30019}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {30020}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','7ab169c391b142afa4fd1441d1cb7595',''), ('22123','{$IFCONTROL:"{#IFNAME}"}=1 and {30021}=2 and ({30022}<>{30023})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{30021}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','789cf81a742c41dfa356b253b01faeca',''), ('22124','{30024}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','169edfa3b9c94c61899cc540a5f4bd5c',''), ('22125','{30025}>{$ICMP_LOSS_WARN} and {30025}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','cb4bbbd51e854ac5b6877b85fd7b8bf5',''), ('22126','{30026}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','01e6c7a1fc2243dcabfd5ac1dec841ad',''), ('22127','{30027}<>{30028} and length({30029})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','53e27314562746fb803664ddbd13876f',''), ('22128','({32262}>0 and {32262}<10m) or ({32262}=0 and {32263}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','f71809adab344e60a2f6260548359167',''), ('22129','{30031}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a462a1b6a16e4636aa3a70bbed7cc1cd',''), ('22130','{30032}<0 and {30033}>0 and ( {30034}=6 or {30034}=7 or {30034}=11 or {30034}=62 or {30034}=69 or {30034}=117 ) and ({30035}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({30032}>0 and {30036}>0) or ({30035}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','4558a208b2ef4376a1f33db1383c62b6',''), ('22131','({30037}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30038} or {30039}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30038}) and {30038}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30037}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30038} and {30039}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30038}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','13c5c29276ae4d2293dd3a178131608e',''), ('22132','{30040}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {30041}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{30042}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {30043}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','e22b4649dbd94b3982636622b92212a8',''), ('22133','{$IFCONTROL:"{#IFNAME}"}=1 and {30044}=2 and ({30045}<>{30046})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{30044}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','b41b12e1ed5148cbbd97a0bcf838ef44',''), ('22134','{30047}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','f38f2bf1b3954e87afaae1b24f051705',''), ('22135','{30048}>{$ICMP_LOSS_WARN} and {30048}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','2384103bcdef45e48026fbb913a09e41',''), ('22136','{30049}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','492c760974924a489adf628a78facf20',''), ('22137','{30050}<>{30051} and length({30052})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','2783c5306701462290c245ff68ce0804',''), ('22138','({32264}>0 and {32264}<10m) or ({32264}=0 and {32265}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','f96b1dcd1cf84538a0d7729c5e4c683b',''), ('22139','{30054}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','8a6f02ead39b4b42be807585266c1fec',''), ('22140','{30055}<0 and {30056}>0 and ( {30057}=6 or {30057}=7 or {30057}=11 or {30057}=62 or {30057}=69 or {30057}=117 ) and ({30058}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({30055}>0 and {30059}>0) or ({30058}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','246b22c8fee74df3af90178f1015eabd',''), ('22141','({30060}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30061} or {30062}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30061}) and {30061}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30060}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30061} and {30062}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30061}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','80a39aa88bc14897ad94816f088fee1d',''), ('22142','{30063}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {30064}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{30065}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {30066}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','5f15f82f958040f59ad31151a464d023',''), ('22143','{$IFCONTROL:"{#IFNAME}"}=1 and {30067}=2 and ({30068}<>{30069})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{30067}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','5ca938e575294b8283154e162968d00d',''), ('22144','{30070}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','ec9cc9ca00754d17a9ee8ff38e4aca2f',''), ('22145','{30071}>{$ICMP_LOSS_WARN} and {30071}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','1377c7e423284ac487afdeac6252f1e7',''), ('22146','{30072}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','143e8c34dc344611ace63e6bcfbfa556',''), ('22147','{30073}<>{30074} and length({30075})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','ecfbc704498740ee89afbffd1a2db22d',''), ('22148','({32266}>0 and {32266}<10m) or ({32266}=0 and {32267}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','e2afe16e11e14b80aa4a228eb9182f6a',''), ('22149','{30077}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7d47b1df3a984db891811b14832ba2ee',''), ('22150','{30078}<0 and {30079}>0 and ( {30080}=6 or {30080}=7 or {30080}=11 or {30080}=62 or {30080}=69 or {30080}=117 ) and ({30081}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({30078}>0 and {30082}>0) or ({30081}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','48212db512234a48863444e08dd6ac8d',''), ('22151','({30083}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30084} or {30085}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30084}) and {30084}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30083}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30084} and {30085}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30084}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','d658285fc06f498dbdb4ff3e02fdbb9c',''), ('22152','{30086}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {30087}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{30088}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {30089}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','49fc7dbdc2294a92a52a30125d4f12a5',''), ('22153','{$IFCONTROL:"{#IFNAME}"}=1 and {30090}=2 and ({30091}<>{30092})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{30090}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','e3a3b7bdfec649dab8e51cf2ba9685d6',''), ('22154','{30093}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','5dea6d7aa1344f27b66dbdce2350e93a',''), ('22155','{30094}>{$ICMP_LOSS_WARN} and {30094}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','a8d51531113a4017b732eb8d7247c777',''), ('22156','{30095}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','7acce40acf3a4eb28af79fc6d95bf190',''), ('22157','{30096}<>{30097} and length({30098})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','e09f00f0ad144e7a96e3abb38e4ab109',''), ('22158','({32268}>0 and {32268}<10m) or ({32268}=0 and {32269}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','27e64b9d917d4163b2f66c6f790b5a44',''), ('22159','{30100}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','096f1ccc1fd24cffb48720def5297031',''), ('22160','{30101}<0 and {30102}>0 and ( {30103}=6 or {30103}=7 or {30103}=11 or {30103}=62 or {30103}=69 or {30103}=117 ) and ({30104}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({30101}>0 and {30105}>0) or ({30104}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','24edc4d534254e638458cb08d0fb7492',''), ('22161','({30106}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30107} or {30108}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30107}) and {30107}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30106}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30107} and {30108}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30107}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','358f84761e004f48ba31aed484cdc947',''), ('22162','{30109}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {30110}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{30111}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {30112}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','c14516c2c7f24762af7d6555f9f38158',''), ('22163','{$IFCONTROL:"{#IFNAME}"}=1 and {30113}=2 and ({30114}<>{30115})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{30113}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','f5085ef8cfde4046a423c59d977258d4',''), ('22164','{30116}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','5ec7bb4a650f4c53a76ec3f89769952d',''), ('22165','{30117}>{$ICMP_LOSS_WARN} and {30117}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','66718f4417324cd7a88de35776b26c64',''), ('22166','{30118}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','95b144dfafeb40be96155e0a6e53515e',''), ('22167','{30119}<>{30120} and length({30121})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','5d609e8337b94830a52752ef8db4fd75',''), ('22168','({32270}>0 and {32270}<10m) or ({32270}=0 and {32271}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','0dcc036b17de4d00bf7d51b7b6076e3c',''), ('22169','{30123}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c36eb285f1a94d29a40afb4bb8e923d4',''), ('22170','{30124}<0 and {30125}>0 and ( {30126}=6 or {30126}=7 or {30126}=11 or {30126}=62 or {30126}=69 or {30126}=117 ) and ({30127}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({30124}>0 and {30128}>0) or ({30127}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','9f31bde8ab2e4edd8a142cdf0e4274d0',''), ('22171','({30129}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30130} or {30131}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30130}) and {30130}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30129}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30130} and {30131}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30130}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','794d401f1b66402cb9309d9acd63321c',''), ('22172','{30132}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {30133}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{30134}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {30135}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','df2b99f9fcfc4df195b500cc637fb4d6',''), ('22173','{$IFCONTROL:"{#IFNAME}"}=1 and {30136}=2 and ({30137}<>{30138})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{30136}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','72ef5c7b0bb74f1fb88085616293169c',''), ('22174','{30139}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','7257cb86a65547b5901cac08cacee3aa',''), ('22175','{30140}>{$ICMP_LOSS_WARN} and {30140}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','ae82608801a642d9b3ef8ddd06cee7f6',''), ('22176','{30141}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','d2f60c5c4a124a549eb02f62874dba8b',''), ('22177','{30142}<>{30143} and length({30144})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','f64be38a3557482087d75ed423ced500',''), ('22178','({32272}>0 and {32272}<10m) or ({32272}=0 and {32273}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','2139aea23b214169a369b4776865f501',''), ('22179','{30146}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','81af7d744ebf422ba065308fcb3c225a',''), ('22180','{30147}<0 and {30148}>0 and ( {30149}=6 or {30149}=7 or {30149}=11 or {30149}=62 or {30149}=69 or {30149}=117 ) and ({30150}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({30147}>0 and {30151}>0) or ({30150}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','3ea926e679704c50b2a8b72bbdbb7136',''), ('22181','({30152}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30153} or {30154}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30153}) and {30153}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30152}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30153} and {30154}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30153}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','544e37fe922d4b6aa28c05becbf6485b',''), ('22182','{30155}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {30156}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{30157}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {30158}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','4f224bcc233c4a378d3af6e4b8ad7df9',''), ('22183','{$IFCONTROL:"{#IFNAME}"}=1 and {30159}=2 and ({30160}<>{30161})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{30159}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','97aeb18c33b24e29acefa286a52e6815',''), ('22184','{30162}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','247cdbc159624b33a4b415d3e048c087',''), ('22185','{30163}>{$ICMP_LOSS_WARN} and {30163}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','4d4cde77c8324a88ac0798e2f096be69',''), ('22186','{30164}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','0f9f0ffd9322422babb52a5a5058d97e',''), ('22187','{30165}<>{30166} and length({30167})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','a5fed81db3c7447c8c62b02974765f57',''), ('22188','({32274}>0 and {32274}<10m) or ({32274}=0 and {32275}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','a3c432e1d04448d3940f69f8d9633c8f',''), ('22189','{30169}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a82f1cafcb424685bb2f562c1c6dce11',''), ('22190','{30170}<0 and {30171}>0 and ( {30172}=6 or {30172}=7 or {30172}=11 or {30172}=62 or {30172}=69 or {30172}=117 ) and ({30173}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({30170}>0 and {30174}>0) or ({30173}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','6e11e178d1e2418fa94bd2718a6eccaf',''), ('22191','({30175}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30176} or {30177}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30176}) and {30176}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30175}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30176} and {30177}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30176}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','54be09c46d2e4c6694fbd4eef4f4e055',''), ('22192','{30178}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {30179}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{30180}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {30181}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','3c122a7c5e6348f28f8c04391f73f14b',''), ('22193','{$IFCONTROL:"{#IFNAME}"}=1 and {30182}=2 and ({30183}<>{30184})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{30182}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','f0d3817bc7f243c591078b806f3ae712',''), ('22194','{30185}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','4db071c60daf4a6a836754875b22d27d',''), ('22195','{30186}>{$ICMP_LOSS_WARN} and {30186}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','5ce287958dc743abaa50a18c8ad3f2a5',''), ('22196','{30187}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','314db7fe9ce6403785f737263ee87914',''), ('22197','{30188}<>{30189} and length({30190})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','6f811bec794348e4937cbff22dbf5fb4',''), ('22198','({32276}>0 and {32276}<10m) or ({32276}=0 and {32277}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','44a2d709f4d0471997697905b8e3b456',''), ('22199','{30192}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9a5729d397ad431aa79048b69a65fbd9',''), ('22200','{30193}<0 and {30194}>0 and ( {30195}=6 or {30195}=7 or {30195}=11 or {30195}=62 or {30195}=69 or {30195}=117 ) and ({30196}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({30193}>0 and {30197}>0) or ({30196}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','d29da0701e5346ac81450a6002bb53c4',''), ('22201','({30198}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30199} or {30200}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30199}) and {30199}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30198}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30199} and {30200}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30199}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','79709d95fe7a48d3a90b6a502788be89',''), ('22202','{30201}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {30202}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{30203}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {30204}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','b8470cef21e146b4b8ecfde73682d2ee',''), ('22203','{$IFCONTROL:"{#IFNAME}"}=1 and {30205}=2 and ({30206}<>{30207})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{30205}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','1bb803809e6a4b66a4dabbaf7dada2c0',''), ('22204','{30208}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','4c7a404a7e7b413bbbac7a21c77b3fcc',''), ('22205','{30209}>{$ICMP_LOSS_WARN} and {30209}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','a9c3882f12d94b84a2cbed81db007011',''), ('22206','{30210}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','20cb06fa668d459e80505b23501735a7',''), ('22207','{30211}<>{30212} and length({30213})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','bf71167252cf48c99477a03d09523aa0',''), ('22208','({32278}>0 and {32278}<10m) or ({32278}=0 and {32279}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','3dfea70b489141e1ba7e967a8de964b8',''), ('22209','{30215}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7a790a7c2af34786838280924d2cb252',''), ('22210','{30216}<0 and {30217}>0 and ( {30218}=6 or {30218}=7 or {30218}=11 or {30218}=62 or {30218}=69 or {30218}=117 ) and ({30219}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({30216}>0 and {30220}>0) or ({30219}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','19c663970db044c39cc43028e7d0642d',''), ('22211','({30221}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30222} or {30223}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30222}) and {30222}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30221}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30222} and {30223}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30222}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','df9f785e1515408b8b3735a653673100',''), ('22212','{30224}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {30225}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{30226}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {30227}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','5f5b45aa0b4943d191670dcafe035707',''), ('22213','{$IFCONTROL:"{#IFNAME}"}=1 and {30228}=2 and ({30229}<>{30230})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{30228}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','8af0f04b3392466382d73d4986782c24',''), ('22214','{30231}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','7651bd1c9c3b431eba1db692abe311a1',''), ('22215','{30232}>{$ICMP_LOSS_WARN} and {30232}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','433634cc1ce0426ba8337add07ee07f0',''), ('22216','{30233}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','a114fb9720bd429f8d406bac7b40a6d2',''), ('22217','{30234}<>{30235} and length({30236})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','58cd8a4c443e43d595a1afc5d045b67b',''), ('22218','({32280}>0 and {32280}<10m) or ({32280}=0 and {32281}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','7419d6e22c5d493ba843adf4f4f85529',''), ('22219','{30238}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','463cc0b4e29d4dddba8ddb16b8faa12b',''), ('22220','{30239}<0 and {30240}>0 and ( {30241}=6 or {30241}=7 or {30241}=11 or {30241}=62 or {30241}=69 or {30241}=117 ) and ({30242}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({30239}>0 and {30243}>0) or ({30242}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','0203940b08b54db982bafbfef0a8ab3c',''), ('22221','({30244}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30245} or {30246}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30245}) and {30245}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30244}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30245} and {30246}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30245}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','883a34a4a82a47f99b63703e3ecd2106',''), ('22222','{30247}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {30248}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{30249}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {30250}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','af6d0bf9ba9a4402bf9ec52b7bfe998f',''), ('22223','{$IFCONTROL:"{#IFNAME}"}=1 and {30251}=2 and ({30252}<>{30253})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{30251}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','b56d0177668c4803b2de395f12c48070',''), ('22224','{30254}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','afd45d5f0f1b48d68af5e58e5b13f7d2',''), ('22225','{30255}>{$ICMP_LOSS_WARN} and {30255}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','bea20e4b6a634c3bb4c3c3f2c0ae91ce',''), ('22226','{30256}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','30e3c09970614f7eb6434aacdc427fcb',''), ('22227','{30257}<>{30258} and length({30259})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','78efe7ad5d8740f7ae087beb2952f74d',''), ('22228','({32282}>0 and {32282}<10m) or ({32282}=0 and {32283}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','f4c5126396ce4a07b9f0ef82aea599e3',''), ('22229','{30261}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','265226f23bfc4bd58cddd2a154c168ac',''), ('22230','{30262}<0 and {30263}>0 and ( {30264}=6 or {30264}=7 or {30264}=11 or {30264}=62 or {30264}=69 or {30264}=117 ) and ({30265}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({30262}>0 and {30266}>0) or ({30265}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','0a611eb7adb546bcab8352199c9fc08b',''), ('22231','({30267}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30268} or {30269}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30268}) and {30268}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30267}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30268} and {30269}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30268}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','464770fa9e3b41399da04f251ff3a215',''), ('22232','{30270}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {30271}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{30272}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {30273}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','4bb5165672484ce0bea109fcef1cf62b',''), ('22233','{$IFCONTROL:"{#IFNAME}"}=1 and {30274}=2 and ({30275}<>{30276})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{30274}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','33ce2abc89ee40b2bf88f30b9834ec8c',''), ('22234','{30277}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','9d1eaf8c440842b6867f539d8e4580b9',''), ('22235','{30278}>{$ICMP_LOSS_WARN} and {30278}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','bb1bddbd5b3b4c97a056a3030cb8220c',''), ('22236','{30279}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','4de979003a374346a66e18e0dc0ae8b3',''), ('22237','{30280}<>{30281} and length({30282})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','0b1965fc09b549f8a0301c3b560f6e04',''), ('22238','({32284}>0 and {32284}<10m) or ({32284}=0 and {32285}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','f6de5bd6b737473fa0bb8adcd7388f2f',''), ('22239','{30284}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7b2ebd40ed1f4e72ac77c9bc31eab800',''), ('22240','{30285}<0 and {30286}>0 and ( {30287}=6 or {30287}=7 or {30287}=11 or {30287}=62 or {30287}=69 or {30287}=117 ) and ({30288}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({30285}>0 and {30289}>0) or ({30288}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','0a6434fa071a47d4bbf9dfb922580cfa',''), ('22241','({30290}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30291} or {30292}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30291}) and {30291}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30290}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30291} and {30292}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30291}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','f07cc9964edc4a819717be63759a150d',''), ('22242','{30293}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {30294}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{30295}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {30296}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','62a5f85871ca4fc3aed8e4cf0423649a',''), ('22243','{$IFCONTROL:"{#IFNAME}"}=1 and {30297}=2 and ({30298}<>{30299})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{30297}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','101e11f167e64235aa2d5f7d06f43548',''), ('22244','{30300}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','c187031a85c340219bf773e53b1eb70b',''), ('22245','{30301}>{$ICMP_LOSS_WARN} and {30301}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','c30d9d87e01d4a4fb5f859b9b96a9597',''), ('22246','{30302}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','71bd6b58f328466fa8855e45f98d9148',''), ('22247','{30303}<>{30304} and length({30305})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','689814337c114068a71c0d510b6ffdee',''), ('22248','({32286}>0 and {32286}<10m) or ({32286}=0 and {32287}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','6919d6afa065438b976979a4f782414e',''), ('22249','{30307}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','dbe7f9e93602427e81932c39b4383974',''), ('22250','{30308}<0 and {30309}>0 and ( {30310}=6 or {30310}=7 or {30310}=11 or {30310}=62 or {30310}=69 or {30310}=117 ) and ({30311}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({30308}>0 and {30312}>0) or ({30311}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','f65d4d21623e4b0cb8a98f088e304de7',''), ('22251','({30313}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30314} or {30315}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30314}) and {30314}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30313}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30314} and {30315}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30314}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','98c16c4da816482195fc9a3c43f4cc2b',''), ('22252','{30316}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {30317}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{30318}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {30319}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','e24c732a680c4f7fac04eb4fd20e3839',''), ('22253','{$IFCONTROL:"{#IFNAME}"}=1 and {30320}=2 and ({30321}<>{30322})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{30320}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','28bc939657054f55a94e3818cba84344',''), ('22254','{30323}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','99b9920681f941c187f81d1c91755891',''), ('22255','{30324}>{$ICMP_LOSS_WARN} and {30324}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','530db893da94415db5fa5b1f26570bd5',''), ('22256','{30325}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','662e7c6a20bb4038b171f39f88bc5c5a',''), ('22257','{30326}<>{30327} and length({30328})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','ed72b3a73f5d498586ddfe57e9ad8638',''), ('22258','({32288}>0 and {32288}<10m) or ({32288}=0 and {32289}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','3b0a33b89325422c90a05950eb7b4ece',''), ('22259','{30330}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e33c3d29eb9f41b49cc6002a5ee14058',''), ('22260','{30331}<0 and {30332}>0 and ( {30333}=6 or {30333}=7 or {30333}=11 or {30333}=62 or {30333}=69 or {30333}=117 ) and ({30334}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({30331}>0 and {30335}>0) or ({30334}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','8a7a6eb94ea24a819764bdcc5131238d',''), ('22261','({30336}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30337} or {30338}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30337}) and {30337}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30336}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30337} and {30338}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30337}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','0d59255268064ca68352411117f5e9cf',''), ('22262','{30339}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {30340}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{30341}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {30342}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','062828dbf3964ca9bf6014b15ea13648',''), ('22263','{$IFCONTROL:"{#IFNAME}"}=1 and {30343}=2 and ({30344}<>{30345})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{30343}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','ef94e6ea0f0547ed9b67073d91a745ec',''), ('22264','{30346}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','78f7c3cb9ad94841b6ef337df5a41914',''), ('22265','{30347}>{$ICMP_LOSS_WARN} and {30347}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','899836cd67f74868954af828bcf35521',''), ('22266','{30348}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','f5930e10af6e43d380c97f2522780a8e',''), ('22267','{30349}<>{30350} and length({30351})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','6aeb9e554ba1411f868668b8f31dca49',''), ('22268','({32290}>0 and {32290}<10m) or ({32290}=0 and {32291}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','d893994cfe8145b8bb0cf294b8a49f1f',''), ('22269','{30353}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','fea996e6b5e14205ad6e41faa9f53263',''), ('22270','{30354}<0 and {30355}>0 and ( {30356}=6 or {30356}=7 or {30356}=11 or {30356}=62 or {30356}=69 or {30356}=117 ) and ({30357}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({30354}>0 and {30358}>0) or ({30357}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','775cb415657c4772aa345e886c33af52',''), ('22271','({30359}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30360} or {30361}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30360}) and {30360}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30359}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30360} and {30361}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30360}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','5ca398d5648b46449d93b13ed69d24ab',''), ('22272','{30362}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {30363}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{30364}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {30365}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','51cc89abce1c45f4895d904fbf4c7a73',''), ('22273','{$IFCONTROL:"{#IFNAME}"}=1 and {30366}=2 and ({30367}<>{30368})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{30366}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','89186fdd35cd4300803d8cbfaa86fa71',''), ('22274','{30369}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','2759e7d4eb114d0984aff53e6656e57e',''), ('22275','{30370}>{$ICMP_LOSS_WARN} and {30370}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','32d2897f2f1d42b0b2d4f40d6332cf48',''), ('22276','{30371}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','138f10a500aa4b29abf9760c80e22b06',''), ('22277','{30372}<>{30373} and length({30374})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','d6d2aa238d864cc1902b94e44e46b627',''), ('22278','({32292}>0 and {32292}<10m) or ({32292}=0 and {32293}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','40869f938b4f470cad6f5d8996edd088',''), ('22279','{30376}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9a95ecc339b34b3a8713d62c68e2b330',''), ('22280','{30377}<0 and {30378}>0 and ( {30379}=6 or {30379}=7 or {30379}=11 or {30379}=62 or {30379}=69 or {30379}=117 ) and ({30380}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({30377}>0 and {30381}>0) or ({30380}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','1ebf4ecd3b254ace99f6738cd066035c',''), ('22281','({30382}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30383} or {30384}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30383}) and {30383}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30382}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30383} and {30384}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30383}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','01d1b416123541eaad013386e1605241',''), ('22282','{30385}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {30386}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{30387}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {30388}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','baa41e89c189448e9d9a5918ef4918be',''), ('22283','{$IFCONTROL:"{#IFNAME}"}=1 and {30389}=2 and ({30390}<>{30391})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{30389}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','c8fd70162f264509a4bd4898015f522f',''), ('22284','{30392}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','8b77ade2f79b4e3bafc22e7d8766e477',''), ('22285','{30393}>{$ICMP_LOSS_WARN} and {30393}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','cf4a28f174764d20953c4dcbca1576b6',''), ('22286','{30394}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','5ab1684fe5f34e3faa06192f47562b86',''), ('22287','{30395}<>{30396} and length({30397})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','a67b112302804d90931ea112d7412aa7',''), ('22288','({32294}>0 and {32294}<10m) or ({32294}=0 and {32295}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','6ca7b6f5acfb499b8ffbf5988a95616c',''), ('22289','{30399}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','f0686a8c2a6e42de980d6bca8ce4a0da',''), ('22290','{30400}<0 and {30401}>0 and ( {30402}=6 or {30402}=7 or {30402}=11 or {30402}=62 or {30402}=69 or {30402}=117 ) and ({30403}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({30400}>0 and {30404}>0) or ({30403}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','d01d880fa506470a85c4219963c6275d',''), ('22291','({30405}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30406} or {30407}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30406}) and {30406}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30405}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30406} and {30407}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30406}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','65d28a326c624b9da28eb0d0477138fb',''), ('22292','{30408}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {30409}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{30410}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {30411}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','1dcf1776170c44b38acb30d3c20f62a8',''), ('22293','{$IFCONTROL:"{#IFNAME}"}=1 and {30412}=2 and ({30413}<>{30414})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{30412}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','0aac9b47a3f04cc7bea4f118e66d2a2e',''), ('22294','{30415}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','ad75e791ea804015af4f056851d065e5',''), ('22295','{30416}>{$ICMP_LOSS_WARN} and {30416}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','53146df6198e4aa8a08ee2f5148b9273',''), ('22296','{30417}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','d30292aa239f4b08866dd626bea719d4',''), ('22297','{30418}<>{30419} and length({30420})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','31d043884c104f02aabfc12edc7cca38',''), ('22298','({32296}>0 and {32296}<10m) or ({32296}=0 and {32297}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','d721994d11d04783af8d3a474de35b1c',''), ('22299','{30422}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','5a3c6162200746f2b5fc1df3120dcc40',''), ('22300','{30423}<0 and {30424}>0 and ( {30425}=6 or {30425}=7 or {30425}=11 or {30425}=62 or {30425}=69 or {30425}=117 ) and ({30426}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({30423}>0 and {30427}>0) or ({30426}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','74b27cf9dbed4239bcbeb3967074fc2f',''), ('22301','({30428}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30429} or {30430}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30429}) and {30429}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30428}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30429} and {30430}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30429}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','487e923c839049718746d1875ffb4152',''), ('22302','{30431}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {30432}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{30433}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {30434}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','fe9c5bef78df4e0b84920a40d1549e6e',''), ('22303','{$IFCONTROL:"{#IFNAME}"}=1 and {30435}=2 and ({30436}<>{30437})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{30435}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','7337464491af47fdae8202c1e68585ac',''), ('22304','{30438}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','9eba3716ff704612a9c498a7b5a72a15',''), ('22305','{30439}>{$ICMP_LOSS_WARN} and {30439}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','c0069ca77aa140d3ad4559979ad0973d',''), ('22306','{30440}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','9b01547e80e84f16b017901233e1fddd',''), ('22307','{30441}<>{30442} and length({30443})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','146922ff45f24d7ea7d3b7b5f0631f77',''), ('22308','({32298}>0 and {32298}<10m) or ({32298}=0 and {32299}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','06c5437331284cf1ae61668b8fd285b5',''), ('22309','{30445}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d51c0c2689a14b41aed889d67ec596df',''), ('22310','{30446}<0 and {30447}>0 and ( {30448}=6 or {30448}=7 or {30448}=11 or {30448}=62 or {30448}=69 or {30448}=117 ) and ({30449}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({30446}>0 and {30450}>0) or ({30449}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','91828300121c45d49d9ec4b5e61d872f',''), ('22311','({30451}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30452} or {30453}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30452}) and {30452}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30451}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30452} and {30453}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30452}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','8d68e034bf6b4302ad4026fca4fd1e86',''), ('22312','{30454}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {30455}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{30456}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {30457}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','0f981e35c326480585104d8ed108bd70',''), ('22313','{$IFCONTROL:"{#IFNAME}"}=1 and {30458}=2 and ({30459}<>{30460})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{30458}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','532c7b90f432422398ad782959fb330c',''), ('22314','{30461}=0','MikroTik: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','dc51a869c302440ba48d352545782e6e',''), ('22315','{30462}>{$ICMP_LOSS_WARN} and {30462}<100','MikroTik: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','83fa0a00b298491a967e052ec0c3bafe',''), ('22316','{30463}>{$ICMP_RESPONSE_TIME_WARN}','MikroTik: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','7c027442ed3c44a0a26b4f35458a37f9',''), ('22317','{30464}<>{30465} and length({30466})>0','MikroTik: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MikroTik: System name has changed (new name: {ITEM.VALUE})','0172b76bc48d4dcead140c4880499777',''), ('22318','({32300}>0 and {32300}<10m) or ({32300}=0 and {32301}<10m)','MikroTik: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MikroTik: {HOST.NAME} has been restarted (uptime < 10m)','53e737a095a840df9abfcfd9c26007bf',''), ('22319','{30468}=0','MikroTik: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','2cc6310f1a824d40903f497f155a7834',''), ('22320','{30469}<0 and {30470}>0 and ( {30471}=6 or {30471}=7 or {30471}=11 or {30471}=62 or {30471}=69 or {30471}=117 ) and ({30472}<>2)','MikroTik: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({30469}>0 and {30473}>0) or ({30472}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','564e8f3f288a40e9926b75b2711f45d1',''), ('22321','({30474}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30475} or {30476}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30475}) and {30475}>0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30474}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30475} and {30476}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30475}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','25cc75fecfd1499ebc65ea434b98cb18',''), ('22322','{30477}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {30478}>{$IF.ERRORS.WARN:"{#IFNAME}"}','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{30479}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {30480}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','MikroTik: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','4c3aef072fcb47b98f0cdc3b651fae71',''), ('22323','{$IFCONTROL:"{#IFNAME}"}=1 and {30481}=2 and ({30482}<>{30483})','MikroTik: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{30481}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','db74692dd86a428fba64e57751fce1ba',''), ('22324','{30484}=0','Netgear Fastpath: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','424d07aafe9f4e8c8f647db6a43363d0',''), ('22325','{30485}>{$ICMP_LOSS_WARN} and {30485}<100','Netgear Fastpath: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','9d2efd0614ba4e16b3479ed515d3a9a2',''), ('22326','{30486}>{$ICMP_RESPONSE_TIME_WARN}','Netgear Fastpath: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','99888c77fc084d43b742a1f156d87832',''), ('22327','{30487}<>{30488} and length({30489})>0','Netgear Fastpath: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Netgear Fastpath: System name has changed (new name: {ITEM.VALUE})','61e82ab169374a51a1ebd876cc7813a8',''), ('22328','({32316}>0 and {32316}<10m) or ({32316}=0 and {32317}<10m)','Netgear Fastpath: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Netgear Fastpath: {HOST.NAME} has been restarted (uptime < 10m)','d68e4595fd4c4e5a9307b268cfe06b3e',''), ('22329','{30491}=0','Netgear Fastpath: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','cc91cb171901433bbb35752127e54ad0',''), ('22330','{30492}<0 and {30493}>0 and ( {30494}=6 or {30494}=7 or {30494}=11 or {30494}=62 or {30494}=69 or {30494}=117 ) and ({30495}<>2)','Netgear Fastpath: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({30492}>0 and {30496}>0) or ({30495}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','443260352dec4467b6eafdd4c6a8ba9c',''), ('22331','({30497}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30498} or {30499}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30498}) and {30498}>0','Netgear Fastpath: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30497}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30498} and {30499}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30498}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Netgear Fastpath: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','8b33b079505846558c6ee4f0afb05c5d',''), ('22332','{30500}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {30501}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Netgear Fastpath: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{30502}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {30503}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Netgear Fastpath: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','bfc9aaa24f17487184a8b88d4bf310a5',''), ('22333','{$IFCONTROL:"{#IFNAME}"}=1 and {30504}=2 and ({30505}<>{30506})','Netgear Fastpath: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{30504}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','8e06e74957de4467bb127e6f16cdd84c',''), ('22334','{30507}=0','QTech QSW: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','fd05f449cbc64dcba10029c246594568',''), ('22335','{30508}>{$ICMP_LOSS_WARN} and {30508}<100','QTech QSW: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','4b2e2d168a0b4da3b5999263f52f3c36',''), ('22336','{30509}>{$ICMP_RESPONSE_TIME_WARN}','QTech QSW: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','18f41db36192463eabaa3797034e578a',''), ('22337','{30510}<>{30511} and length({30512})>0','QTech QSW: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','QTech QSW: System name has changed (new name: {ITEM.VALUE})','27fa16e646224f88ad3b35ce7a71a18a',''), ('22338','({32318}>0 and {32318}<10m) or ({32318}=0 and {32319}<10m)','QTech QSW: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','QTech QSW: {HOST.NAME} has been restarted (uptime < 10m)','44d6c66a6a1641f8816031c0d5bf4040',''), ('22339','{30514}=0','QTech QSW: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7a7c0c7501ca484491394fe82c75b401',''), ('22340','{30515}<0 and {30516}>0 and ( {30517}=6 or {30517}=7 or {30517}=11 or {30517}=62 or {30517}=69 or {30517}=117 ) and ({30518}<>2)','QTech QSW: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({30515}>0 and {30519}>0) or ({30518}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','cb39728aac4940dda2b3a307d12be813',''), ('22341','({30520}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30521} or {30522}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30521}) and {30521}>0','QTech QSW: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30520}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30521} and {30522}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30521}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','QTech QSW: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','303873dbb6224b4abc2f678100a72eda',''), ('22342','{30523}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {30524}>{$IF.ERRORS.WARN:"{#IFNAME}"}','QTech QSW: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{30525}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {30526}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','QTech QSW: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','0e0544466c6845349078ca2a72d2cf6c',''), ('22343','{$IFCONTROL:"{#IFNAME}"}=1 and {30527}=2 and ({30528}<>{30529})','QTech QSW: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{30527}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','efa56904fcf54fa5bbd0ba21381dc415',''), ('22344','{30530}=2','QTech QSW: Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','','0','2','Please check autonegotiation settings and cabling.',NULL,'0','2','0','','0','','1','','0','','8688cff304604fd7b015e92ef9f98647',''), ('22345','{30531}=0','TP-LINK: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','5b86c558f99d4ff5a8abca830df6e86e',''), ('22346','{30532}>{$ICMP_LOSS_WARN} and {30532}<100','TP-LINK: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','421d12d2c2a0405ba31c869c4d481b70',''), ('22347','{30533}>{$ICMP_RESPONSE_TIME_WARN}','TP-LINK: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','4d1df00b9476483fa77e6064708abf58',''), ('22348','{30534}<>{30535} and length({30536})>0','TP-LINK: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','TP-LINK: System name has changed (new name: {ITEM.VALUE})','367bce2d38fe4ecbbe23c34bc7ec6226',''), ('22349','({32320}>0 and {32320}<10m) or ({32320}=0 and {32321}<10m)','TP-LINK: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','TP-LINK: {HOST.NAME} has been restarted (uptime < 10m)','63b45803131d4391abfa313a222339e5',''), ('22350','{30538}=0','TP-LINK: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7b533ce3df8c4405a04f90dd1e850a32',''), ('22351','{30539}<0 and {30540}>0 and ( {30541}=6 or {30541}=7 or {30541}=11 or {30541}=62 or {30541}=69 or {30541}=117 ) and ({30542}<>2)','TP-LINK: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({30539}>0 and {30543}>0) or ({30542}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','ebcdfd6d8c974c06810375d98e7d76c7',''), ('22352','({30544}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30545} or {30546}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30545}) and {30545}>0','TP-LINK: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30544}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30545} and {30546}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30545}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','TP-LINK: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','ae472f99d7ab480c947293f09c4b9dbb',''), ('22353','{30547}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {30548}>{$IF.ERRORS.WARN:"{#IFNAME}"}','TP-LINK: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{30549}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {30550}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','TP-LINK: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','ec28cbfaaf6245a194fe001555d05e5c',''), ('22354','{$IFCONTROL:"{#IFNAME}"}=1 and {30551}=2 and ({30552}<>{30553})','TP-LINK: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{30551}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','ce16733da6d24beb9cea97d61368e21b',''), ('22355','{30554}=0','Ubiquiti AirOS: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','2a6711992f354095b056b628be78022c',''), ('22356','{30555}>{$ICMP_LOSS_WARN} and {30555}<100','Ubiquiti AirOS: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','8e66ba0787b54af2897dd348e5453f10',''), ('22357','{30556}>{$ICMP_RESPONSE_TIME_WARN}','Ubiquiti AirOS: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','4ae253aa403a42ad8cd4721e2ffdfbca',''), ('22358','{30557}<>{30558} and length({30559})>0','Ubiquiti AirOS: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Ubiquiti AirOS: System name has changed (new name: {ITEM.VALUE})','15523bce03a24cd6a4818ab655d1d2ad',''), ('22359','({32322}>0 and {32322}<10m) or ({32322}=0 and {32323}<10m)','Ubiquiti AirOS: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Ubiquiti AirOS: {HOST.NAME} has been restarted (uptime < 10m)','2d9ed5a3b714461bbcdc4c530f955e5b',''), ('22360','{30561}=0','Ubiquiti AirOS: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7735f20ab7fd40b8b34cead6cb306b30',''), ('22361','{30562}<0 and {30563}>0 and ( {30564}=6 or {30564}=7 or {30564}=11 or {30564}=62 or {30564}=69 or {30564}=117 ) and ({30565}<>2)','Ubiquiti AirOS: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({30562}>0 and {30566}>0) or ({30565}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','9ccbb6859cd7422684e1946c1e321b3c',''), ('22362','({30567}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30568} or {30569}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30568}) and {30568}>0','Ubiquiti AirOS: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30567}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30568} and {30569}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30568}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Ubiquiti AirOS: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','80e37d44eddf49c89b39dacc8c88ac07',''), ('22363','{30570}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {30571}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Ubiquiti AirOS: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{30572}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {30573}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Ubiquiti AirOS: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','3d7c8f98d0c447038c630f4e2ad81c06',''), ('22364','{$IFCONTROL:"{#IFNAME}"}=1 and {30574}=2 and ({30575}<>{30576})','Ubiquiti AirOS: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{30574}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','c360a22671ea4dcda48fc49ec7847c2d',''), ('22365','{30577}=0','AIX: Zabbix agent is not available','','0','3','For passive checks only. The availability of the agent(s) and a host is used with `{$AGENT.TIMEOUT}` as the time threshold.',NULL,'0','0','0','','0','','1','','0','AIX: Zabbix agent is not available (for {$AGENT.TIMEOUT})','f0b9ecafede8476b94fd8dcab74cea87',''), ('22366','{30578}=0','FreeBSD: Zabbix agent is not available','','0','3','For passive checks only. The availability of the agent(s) and a host is used with `{$AGENT.TIMEOUT}` as the time threshold.',NULL,'0','0','0','','0','','1','','0','FreeBSD: Zabbix agent is not available (for {$AGENT.TIMEOUT})','fd9d36aaedff45f59017b1e714a5db69',''), ('22367','{30579}=0','HP-UX: Zabbix agent is not available','','0','3','For passive checks only; the availability of the agent(s) and a host is used with `{$AGENT.TIMEOUT}` as the time threshold.',NULL,'0','0','0','','0','','1','','0','HP-UX: Zabbix agent is not available (for {$AGENT.TIMEOUT})','ce008290ad6341b98386adf9ea5c315b',''), ('22368','{30580}<{$KERNEL.MAXFILES.MIN}','Linux: Configured max number of open filedescriptors is too low','','0','1','',NULL,'0','0','0','','0','','0','','0','Linux: Configured max number of open filedescriptors is too low (< {$KERNEL.MAXFILES.MIN})','b9bdcf42f54a409a9a9a616dbd0eaed2',''), ('22369','{30581}<{$KERNEL.MAXPROC.MIN}','Linux: Configured max number of processes is too low','','0','1','',NULL,'0','0','0','','0','','0','','0','Linux: Configured max number of processes is too low (< {$KERNEL.MAXPROC.MIN})','8cf253ca3eea4109a90443f9cb76fc5c',''), ('22370','{30582}>{$CPU.UTIL.CRIT}','Linux: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Linux: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','b4e904559b694df0ad45bcce7930c3a6',''), ('22371','{32779} and length({32780})>0','Linux: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Linux: System name has changed (new name: {ITEM.VALUE})','371a12f95a26438d8da659c84364631b',''), ('22372','{33875}=0','Linux: System time is out of sync','','0','2','The host''s system time is different from Zabbix server time.',NULL,'0','0','1','{33876}=1','0','','1','','0','Linux: System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX})','fb77b6ac381c4b5289584bd91e7da7d5',''), ('22373','{32781} and length({32782})>0','Linux: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','b1998f98c06b49dd8d71e1c6df409371',''), ('22374','{30590}<10m','Linux: {HOST.NAME} has been restarted','','0','2','The host uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Linux: {HOST.NAME} has been restarted (uptime < 10m)','1dbab80d7b6847e5b5a676cffba0fd1d',''), ('22375','{30591}<>{30592}','Linux: /etc/passwd has been changed','','0','1','',NULL,'0','0','0','','0','','1','','0','','3a764881727b4e7eb01e137ccfc968a2',''), ('22376','{30593}>{$MEMORY.UTIL.MAX}','Linux: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','Linux: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','cfd395b1cde74ef18a5e5f840bd5142a',''), ('22377','{30594}=0','Linux: Zabbix agent is not available','','0','3','For passive agents only, host availability is used with `{$AGENT.TIMEOUT}` as a time threshold.',NULL,'0','0','0','','0','','1','','0','Linux: Zabbix agent is not available (for {$AGENT.TIMEOUT})','93594214371b4dc88b41663cad8537f0',''), ('22378','{30595}/{30596}*100>80','Linux: Getting closer to process limit','','0','2','',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1} active, {ITEM.LASTVALUE2} limit.','0','Linux: Getting closer to process limit (over 80% used)','ae5269e17d434927bfd6edc09a9a1f4d',''), ('22379','{30947}<{$SWAP.PFREE.MIN.WARN} and {30948}>0','Linux: High swap space usage','','0','2','If there is no swap configured, this trigger is ignored.',NULL,'0','0','0','','0','','0','Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}','0','Linux: High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free)','f49fc01c5ac945d59455563bdbcc6469',''), ('22380','{30951}<{$MEMORY.AVAILABLE.MIN} and {30952}>0','Linux: Lack of available memory','','0','3','The system is running out of memory.',NULL,'0','0','0','','0','','0','Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}','0','Linux: Lack of available memory (<{$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2})','686470cef97f48f6b017e9fc7a078afe',''), ('22381','{30601}/{30602}>{$LOAD_AVG_PER_CPU.MAX.WARN} and {30603}>0 and {30604}>0','Linux: Load average is too high','','0','3','The load average per CPU is too high. The system may be slow to respond.',NULL,'0','0','0','','0','','0','Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}','0','Linux: Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m)','695f0c352377409d95aca3fe76d1cae2',''), ('22396','{30985}<0 and {30986}>0 and ({30987}=6 or {30987}=1) and ({30988}<>2)','Linux: Interface {#IFNAME}: Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({30985}>0 and {30989}>0) or ({30988}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','2ffdc1d5a318492bb497facd263843bd',''), ('22397','{30634}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {30635}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Linux: Interface {#IFNAME}: High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{30636}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {30637}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Linux: Interface {#IFNAME}: High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','ad50aecf8e7746b2a85f24507f1d511d',''), ('22398','{$IFCONTROL:"{#IFNAME}"}=1 and {30638}=2 and ({30639}<>{30640})','Linux: Interface {#IFNAME}: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{30638}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','4d7f18ca132340b885c0692464dc429f',''), ('22399','{30641} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} or {30642} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"}','Linux: {#DEVNAME}: Disk read/write request responses are too high','','0','2','This trigger might indicate the disk `{#DEVNAME}` saturation.',NULL,'0','2','0','','0','','1','','0','Linux: {#DEVNAME}: Disk read/write request responses are too high (read > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} ms for 15m or write > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} ms for 15m)','eb6230f786d04b658ce62c30a9309a34',''), ('22400','{33640}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}','Linux: FS [{#FSNAME}]: Space is critically low','','0','3','The volume''s space usage exceeds the `{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%` limit. The trigger expression is based on the current used and maximum available spaces. Event name represents the total volume space, which can differ from the maximum available space, depending on the filesystem type.',NULL,'0','2','0','','0','','1','Space used: {{ITEM.LASTVALUE1}.fmtnum(1)}%','0','Linux: FS [{#FSNAME}]: Space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%, total {{?last(//vfs.fs.dependent.size[{#FSNAME},total])/1024/1024/1024}.fmtnum(1)}GB)','9abccdfff8be4e14967ac917ca09afe1',''), ('22401','{33641}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}','Linux: FS [{#FSNAME}]: Space is low','','0','2','The volume''s space usage exceeds the `{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%` limit. The trigger expression is based on the current used and maximum available spaces. Event name represents the total volume space, which can differ from the maximum available space, depending on the filesystem type.',NULL,'0','2','0','','0','','1','Space used: {{ITEM.LASTVALUE1}.fmtnum(1)}%','0','Linux: FS [{#FSNAME}]: Space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%, total {{?last(//vfs.fs.dependent.size[{#FSNAME},total])/1024/1024/1024}.fmtnum(1)}GB)','d6d348ea500c428da6ba718816c4b048',''), ('22402','{30651}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}','Linux: FS [{#FSNAME}]: Running out of free inodes','','0','3','Disk writing may fail if index nodes are exhausted, leading to error messages like "No space left on device" or "Disk is full", despite available free space.',NULL,'0','2','0','','0','','0','Free inodes: {ITEM.LASTVALUE1}','0','Linux: {#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%)','115b2d37807f476faf6d02ef406acabd',''), ('22403','{30652}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}','Linux: FS [{#FSNAME}]: Running out of free inodes','','0','2','Disk writing may fail if index nodes are exhausted, leading to error messages like "No space left on device" or "Disk is full", despite available free space.',NULL,'0','2','0','','0','','0','Free inodes: {ITEM.LASTVALUE1}','0','Linux: FS [{#FSNAME}]: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%)','ea012c7295344ffe8c66f7ea54d81042',''), ('22412','{30676}=1','Linux: Zabbix agent is not available','','0','3','For active agents, `nodata()` with `agent.ping` is used with `{$AGENT.NODATA_TIMEOUT}` as a time threshold.',NULL,'0','0','0','','0','','1','','0','Linux: Zabbix agent is not available (or nodata for {$AGENT.NODATA_TIMEOUT})','c1b9fdbe6a584d2cb25ff7077c667af1',''), ('22413','{30677}<{$KERNEL.MAXFILES.MIN}','Linux: Configured max number of open filedescriptors is too low','','0','1','',NULL,'0','0','0','','0','','0','','0','Linux: Configured max number of open filedescriptors is too low (< {$KERNEL.MAXFILES.MIN})','a7716b62422243b991a2697752d7cb1f',''), ('22414','{30678}<{$KERNEL.MAXPROC.MIN}','Linux: Configured max number of processes is too low','','0','1','',NULL,'0','0','0','','0','','0','','0','Linux: Configured max number of processes is too low (< {$KERNEL.MAXPROC.MIN})','740ed348fb1d41dca7c410123b668a48',''), ('22415','{30679}>{$CPU.UTIL.CRIT}','Linux: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Linux: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','e299778a6fcc4805bd5806f3b2ffe1c2',''), ('22416','{32789} and length({32790})>0','Linux: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Linux: System name has changed (new name: {ITEM.VALUE})','c2fc80044fa94f0d97c72bd1d749b731',''), ('22418','{32791} and length({32792})>0','Linux: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','e27cb7063ca841a2b78aa547ec0d001c',''), ('22419','{30687}<10m','Linux: {HOST.NAME} has been restarted','','0','2','The host uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Linux: {HOST.NAME} has been restarted (uptime < 10m)','64dbab85caf749f59f3da0c374746bc2',''), ('22420','{30688}<>{30689}','Linux: /etc/passwd has been changed','','0','1','',NULL,'0','0','0','','0','','1','','0','','c5a76894508c4f0e9dcc9f70e6f39f49',''), ('22421','{30690}>{$MEMORY.UTIL.MAX}','Linux: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','Linux: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','fb368aa704064a44b9a4ed8c129cf3e8',''), ('22422','{30691}/{30692}*100>80','Linux: Getting closer to process limit','','0','2','',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1} active, {ITEM.LASTVALUE2} limit.','0','Linux: Getting closer to process limit (over 80% used)','fa21b02aebe143b192a20cd9403a68d0',''), ('22423','{30959}<{$SWAP.PFREE.MIN.WARN} and {30960}>0','Linux: High swap space usage','','0','2','If there is no swap configured, this trigger is ignored.',NULL,'0','0','0','','0','','0','Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}','0','Linux: High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free)','722692e0703e4609852439a9b751826d',''), ('22424','{30963}<{$MEMORY.AVAILABLE.MIN} and {30964}>0','Linux: Lack of available memory','','0','3','The system is running out of memory.',NULL,'0','0','0','','0','','0','Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}','0','Linux: Lack of available memory (<{$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2})','b3f51f3c63024d209fd01e17293127a6',''), ('22425','{30697}/{30698}>{$LOAD_AVG_PER_CPU.MAX.WARN} and {30699}>0 and {30700}>0','Linux: Load average is too high','','0','3','The load average per CPU is too high. The system may be slow to respond.',NULL,'0','0','0','','0','','0','Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}','0','Linux: Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m)','72825a0c706043429ed1ff6656763052',''), ('22426','{31009}<0 and {31010}>0 and ({31011}=6 or {31011}=1) and ({31012}<>2)','Linux: Interface {#IFNAME}: Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({31009}>0 and {31013}>0) or ({31012}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','c0fd4630351f424aa6c8b7f2e85f0f9e',''), ('22427','{30705}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {30706}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Linux: Interface {#IFNAME}: High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{30707}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {30708}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Linux: Interface {#IFNAME}: High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','58f4ba4b2795407896752da57462629d',''), ('22428','{$IFCONTROL:"{#IFNAME}"}=1 and {30709}=2 and ({30710}<>{30711})','Linux: Interface {#IFNAME}: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{30709}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','1b8e42925e1b48969f35d91800fe5229',''), ('22429','{30712} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} or {30713} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"}','Linux: {#DEVNAME}: Disk read/write request responses are too high','','0','2','This trigger might indicate the disk `{#DEVNAME}` saturation.',NULL,'0','2','0','','0','','1','','0','Linux: {#DEVNAME}: Disk read/write request responses are too high (read > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} ms for 15m or write > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} ms for 15m)','fd5732c3cf5249f9a05e3b6cedc2d2fd',''), ('22430','{33644}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}','Linux: FS [{#FSNAME}]: Space is critically low','','0','3','The volume''s space usage exceeds the `{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%` limit. The trigger expression is based on the current used and maximum available spaces. Event name represents the total volume space, which can differ from the maximum available space, depending on the filesystem type.',NULL,'0','2','0','','0','','1','Space used: {{ITEM.LASTVALUE1}.fmtnum(1)}%','0','Linux: FS [{#FSNAME}]: Space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%, total {{?last(//vfs.fs.dependent.size[{#FSNAME},total])/1024/1024/1024}.fmtnum(1)}GB)','cf4079132a9d4124aa5e29d6839ae35b',''), ('22431','{33645}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}','Linux: FS [{#FSNAME}]: Space is low','','0','2','The volume''s space usage exceeds the `{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%` limit. The trigger expression is based on the current used and maximum available spaces. Event name represents the total volume space, which can differ from the maximum available space, depending on the filesystem type.',NULL,'0','2','0','','0','','1','Space used: {{ITEM.LASTVALUE1}.fmtnum(1)}%','0','Linux: FS [{#FSNAME}]: Space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%, total {{?last(//vfs.fs.dependent.size[{#FSNAME},total])/1024/1024/1024}.fmtnum(1)}GB)','b56b8cad3bb34fab8132e07a32c432d9',''), ('22432','{30722}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}','Linux: FS [{#FSNAME}]: Running out of free inodes','','0','3','Disk writing may fail if index nodes are exhausted, leading to error messages like "No space left on device" or "Disk is full", despite available free space.',NULL,'0','2','0','','0','','0','Free inodes: {ITEM.LASTVALUE1}','0','Linux: {#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%)','98e196ffb6f0422baf007fcff5f45b60',''), ('22433','{30723}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}','Linux: FS [{#FSNAME}]: Running out of free inodes','','0','2','Disk writing may fail if index nodes are exhausted, leading to error messages like "No space left on device" or "Disk is full", despite available free space.',NULL,'0','2','0','','0','','0','Free inodes: {ITEM.LASTVALUE1}','0','Linux: FS [{#FSNAME}]: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%)','a17e14a65c53447a9ce607799a62e7dd',''), ('22434','{30724}=0','Linux: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','28927c3715714a77a259d48943ddb8fe',''), ('22435','{30725}>{$ICMP_LOSS_WARN} and {30725}<100','Linux: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','f6d63c03e6f34888897464102fa369ec',''), ('22436','{30726}>{$ICMP_RESPONSE_TIME_WARN}','Linux: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','1c1b86790d6442e59f50d94f9844c337',''), ('22437','{30727}<>{30728} and length({30729})>0','Linux: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Linux: System name has changed (new name: {ITEM.VALUE})','eeb0355174d74892a4e3a078e6ac7952',''), ('22438','({32352}>0 and {32352}<10m) or ({32352}=0 and {32353}<10m)','Linux: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Linux: {HOST.NAME} has been restarted (uptime < 10m)','e129fb90ec084a83806aec27141cd6eb',''), ('22439','{30731}>{$MEMORY.UTIL.MAX}','Linux: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','Linux: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','063b87d246b04e74a439114a05f00fe5',''), ('22440','{30732}=0','Linux: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','63d99e49b3584fb2bf61a7d56725fb3c',''), ('22441','{30973}<{$SWAP.PFREE.MIN.WARN} and {30974}>0','Linux: High swap space usage','','0','2','If there is no swap configured, this trigger is ignored.',NULL,'0','0','0','','0','','0','Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}','0','Linux: High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free)','8d66563ff7744cd6847325d473eaacfe',''), ('22442','{30977}<{$MEMORY.AVAILABLE.MIN} and {30978}>0','Linux: Lack of available memory','','0','3','The system is running out of memory.',NULL,'0','0','0','','0','','0','Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}','0','Linux: Lack of available memory (<{$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2})','b0a04a6a01854d0eb6f9f225c1108261',''), ('22443','{30737}/{30738}>{$LOAD_AVG_PER_CPU.MAX.WARN} and {30739}>0 and {30740}>0','Linux: Load average is too high','','0','3','The load average per CPU is too high. The system may be slow to respond.',NULL,'0','0','0','','0','','0','Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}','0','Linux: Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m)','33df3354161047f0b47ad7736b70a302',''), ('22444','{30741}>{$CPU.UTIL.CRIT}','Linux: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Linux: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','34b29a2e43b347d0ada6b80a472a659e',''), ('22445','{30742}<0 and {30743}>0 and ( {30744}=6 or {30744}=7 or {30744}=11 or {30744}=62 or {30744}=69 or {30744}=117 ) and ({30745}<>2)','Linux: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({30742}>0 and {30746}>0) or ({30745}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','02387536c92f449384c23a0744e71ee3',''), ('22446','({30747}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30748} or {30749}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30748}) and {30748}>0','Linux: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30747}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30748} and {30749}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30748}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Linux: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','efe5516d1c164a8cb243c4806b9684a2',''), ('22447','{30750}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {30751}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Linux: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{30752}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {30753}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Linux: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','dbbd6222837345b891dd613f6d40f98f',''), ('22448','{$IFCONTROL:"{#IFNAME}"}=1 and {30754}=2 and ({30755}<>{30756})','Linux: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{30754}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','038c4ebc6bdf48f69b60fca856318638',''), ('22449','{30757}=2','Linux: Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','','0','2','Please check autonegotiation settings and cabling.',NULL,'0','2','0','','0','','1','','0','','1e1f12c0cf744fd3aaac6570325bd661',''), ('22450','{33650}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}','Linux: FS [{#FSNAME}]: Space is critically low','','0','3','The volume''s space usage exceeds the ''{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%'' limit; The trigger expression is based on the current used and maximum available spaces. Event name represents the total volume space, which can differ from the maximum available space, depending on the filesystem type.',NULL,'0','2','0','','0','','1','Space used: {{ITEM.LASTVALUE1}.fmtnum(1)}%','0','Linux: FS [{#FSNAME}]: Space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%, total {{?last(//vfs.fs.total[dskTotal.{#SNMPINDEX}])/1024/1024/1024}.fmtnum(1)}GB)','4e84d5b0e3bb4729a6eabd5882d2d603',''), ('22451','{33651}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}','Linux: FS [{#FSNAME}]: Space is low','','0','2','The volume''s space usage exceeds the ''{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%'' limit; The trigger expression is based on the current used and maximum available spaces. Event name represents the total volume space, which can differ from the maximum available space, depending on the filesystem type.',NULL,'0','2','0','','0','','1','Space used: {{ITEM.LASTVALUE1}.fmtnum(1)}%','0','Linux: FS [{#FSNAME}]: Space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%, total {{?last(//vfs.fs.total[dskTotal.{#SNMPINDEX}])/1024/1024/1024}.fmtnum(1)}GB)','210ae86feef14fa0a82c97331e522937',''), ('22452','{30766}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}','Linux: FS [{#FSNAME}]: Running out of free inodes','','0','3','Disk writing may fail if index nodes are exhausted, leading to error messages like "No space left on device" or "Disk is full", despite available free space.',NULL,'0','2','0','','0','','0','Free inodes: {ITEM.LASTVALUE1}','0','Linux: FS [{#FSNAME}]: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%)','c2a464a9d8f24b1f96251feabeec8b6a',''), ('22453','{30767}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}','Linux: FS [{#FSNAME}]: Running out of free inodes','','0','2','Disk writing may fail if index nodes are exhausted, leading to error messages like "No space left on device" or "Disk is full", despite available free space.',NULL,'0','2','0','','0','','0','Free inodes: {ITEM.LASTVALUE1}','0','Linux: FS [{#FSNAME}]: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%)','396da67ae447497781d9f37215490b71',''), ('22454','{30768}=0','macOS: Zabbix agent is not available','','0','3','For passive checks only; the availability of the agent(s) and a host is used with `{$AGENT.TIMEOUT}` as the time threshold.',NULL,'0','0','0','','0','','1','','0','macOS: Zabbix agent is not available (for {$AGENT.TIMEOUT})','0766e9c2a02f46e7adbb86dbef67556f',''), ('22455','{30769}=0','OpenBSD: Zabbix agent is not available','','0','3','For passive checks only; the availability of the agent(s) and a host is used with `{$AGENT.TIMEOUT}` as the time threshold.',NULL,'0','0','0','','0','','1','','0','OpenBSD: Zabbix agent is not available (for {$AGENT.TIMEOUT})','d046f431e11d4bd7be42e66e14a21663',''), ('22456','{30770}=0','Solaris: Zabbix agent is not available','','0','3','For passive checks only; the availability of the agent(s) and a host is used with `{$AGENT.TIMEOUT}` as the time threshold.',NULL,'0','0','0','','0','','1','','0','Solaris: Zabbix agent is not available (for {$AGENT.TIMEOUT})','4ca39fa4a86c45e19e03eff89edd239b',''), ('22457','{30771}<{$MEM.PAGE_TABLE_CRIT.MIN}','Windows: Number of free system page table entries is too low','','0','2',E'`Memory\\Free System Page Table Entries` has been less than `{$MEM.PAGE_TABLE_CRIT.MIN}` for 5 minutes. If the number is less than 5,000, there may be a memory leak.',NULL,'0','0','0','','0','','0','','0','Windows: Number of free system page table entries is too low (less {$MEM.PAGE_TABLE_CRIT.MIN} for 5m)','e3118e2e6109460f80cc2d56795ed42f',''), ('22458','{30772}>{$MEM.PAGE_SEC.CRIT.MAX}','Windows: The Memory Pages/sec is too high','','0','2','The Memory Pages/sec in the last 5 minutes exceeds `{$MEM.PAGE_SEC.CRIT.MAX}`. If the value is greater than 1,000, as a result of excessive paging, there may be a memory leak.',NULL,'0','0','0','','0','','0','','0','Windows: The Memory Pages/sec is too high (over {$MEM.PAGE_SEC.CRIT.MAX} for 5m)','ab4c9a66d16f42e6a32f6144f4d2a3ca',''), ('22459','{30773}>{$CPU.INTERRUPT.CRIT.MAX}','Windows: CPU interrupt time is too high','','0','2','The CPU Interrupt Time in the last 5 minutes exceeds `{$CPU.INTERRUPT.CRIT.MAX}`%.',NULL,'0','0','0','','0','','0','','0','Windows: CPU interrupt time is too high (over {$CPU.INTERRUPT.CRIT.MAX}% for 5m)','f67bedcb282349b2aac052baf4963480',''), ('22460','{30774}>{$CPU.PRIV.CRIT.MAX}','Windows: CPU privileged time is too high','','0','2','The CPU privileged time in the last 5 minutes exceeds {$CPU.PRIV.CRIT.MAX}%.',NULL,'0','0','0','','0','','0','','0','Windows: CPU privileged time is too high (over {$CPU.PRIV.CRIT.MAX}% for 5m)','4d099256b3ba42f1b90143e2014900dd',''), ('22461','{30775}>{$CPU.UTIL.CRIT}','Windows: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Windows: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','806aa232f56640ab98aacc79491fc4d7',''), ('22462','{32794} and length({32795})>0','Windows: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Windows: System name has changed (new name: {ITEM.VALUE})','6b50d36a4e29468a9546e880f3004399',''), ('22463','{33881}=0','Windows: System time is out of sync','','0','2','The host''s system time is different from Zabbix server time.',NULL,'0','0','1','{33882}=1','0','','1','','0','Windows: System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX})','37ca2366c8474cc8a49a605e93377601',''), ('22464','{30780}<10m','Windows: Host has been restarted','','0','2','The device uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Windows: Host has been restarted (uptime < 10m)','d27b9eab4034439f91dff41fe6f043ab',''), ('22465','{30781}>{$MEMORY.UTIL.MAX}','Windows: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','Windows: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','b442993bb2a6404a8ebcb7be39d16ce6',''), ('22466','{30782}=0','Windows: Zabbix agent is not available','','0','3','For passive agents only, host availability is used with `{$AGENT.TIMEOUT}` as a time threshold.',NULL,'0','0','0','','0','','1','','0','Windows: Zabbix agent is not available (for {$AGENT.TIMEOUT})','05beb4500cae480892fad0739f99807d',''), ('22467','{30783} - {30784} * 2 > {$CPU.QUEUE.CRIT.MAX}','Windows: CPU queue length is too high','','0','2','The CPU Queue Length in the last 5 minutes exceeds `{$CPU.QUEUE.CRIT.MAX}`. According to actual observations, PQL should not exceed the number of cores * 2. To fine-tune the conditions, use the macro `{$CPU.QUEUE.CRIT.MAX }`.',NULL,'0','0','0','','0','','0','','0','Windows: CPU queue length is too high (over {$CPU.QUEUE.CRIT.MAX} for 5m)','8b1baeb26e154f99aefeaba3ea4fa63b',''), ('22468','{32555}<{$SWAP.PFREE.MIN.WARN} and {32556}>0','Windows: High swap space usage','','0','2','This trigger is ignored, if there is no swap configured',NULL,'0','0','0','','0','','0','Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}','0','Windows: High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free)','7c23e03060ce42b094aac2f8aea1a9ad',''), ('22469','{30787}<0 and {30788}>0 and {30789}=2','Windows: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','b2191521a7a54985a19740e3ee2674f2',''), ('22470','({30790}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30791} or {30792}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30791}) and {30791}>0','Windows: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30790}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30791} and {30792}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30791}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Windows: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','c93048183c3942808c60d6dd61963bc0',''), ('22471','{30793}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {30794}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Windows: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{30795}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {30796}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Windows: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','a4fa6e161bb64b98b25b1a2a501a83f4',''), ('22472','{$IFCONTROL:"{#IFNAME}"}=1 and {30797}<>2 and ({30798}<>{30799})','Windows: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for the ''eternal off'' interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{30797}=2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','a9b1c61ac4a6481aab93d40c6fb93462',''), ('22473','{30800}>{$VFS.DEV.UTIL.MAX.WARN}','Windows: {#DEVNAME}: Disk is overloaded','','0','2','The disk appears to be under heavy load.',NULL,'0','2','0','','0','','1','','0','Windows: {#DEVNAME}: Disk is overloaded (util > {$VFS.DEV.UTIL.MAX.WARN}% for 15m)','4777fa000fa9460baab1fd7bc7e40604',''), ('22474','{30801} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"}','Windows: {#DEVNAME}: Disk read request responses are too high','','0','2','This trigger might indicate the disk {#DEVNAME} saturation.',NULL,'0','2','0','','0','','1','','0','Windows: {#DEVNAME}: Disk read request responses are too high (read > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"}s for 15m)','85a8c002b3d84121ad2e73c8aced0987',''), ('22475','{30802} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"}','Windows: {#DEVNAME}: Disk write request responses are too high','','0','2','This trigger might indicate the disk {#DEVNAME} saturation.',NULL,'0','2','0','','0','','1','','0','Windows: {#DEVNAME}: Disk write request responses are too high (write > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"}s for 15m)','db6809fd85e241948fb5ef76cb7cc17b',''), ('22476','{30803}<>0','Windows: "{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) is not running','','0','3','The service has a state other than "Running" for the last three times.',NULL,'0','2','0','','0','','0','','0','Windows: "{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) is not running (startup type {#SERVICE.STARTUPNAME})','4708592603db4577b26cb6daade41754',''), ('22477','{33664}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSLABEL}({#FSNAME})"}','Windows: FS [{#FSLABEL}({#FSNAME})]: Space is critically low','','0','3','The volume''s space usage exceeds the `{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%` limit. The trigger expression is based on the current used and maximum available spaces. Event name represents the total volume space, which can differ from the maximum available space, depending on the filesystem type.',NULL,'0','2','0','','0','','1','Space used: {{ITEM.LASTVALUE1}.fmtnum(1)}%','0','Windows: FS [{#FSLABEL}({#FSNAME})]: Space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSLABEL}({#FSNAME})"}%, total {{?last(//vfs.fs.dependent.size[{#FSNAME},total])/1024/1024/1024}.fmtnum(1)}GB)','d3e99134a1d04894918f2c92ff38cb92',''), ('22478','{33665}>{$VFS.FS.PUSED.MAX.WARN:"{#FSLABEL}({#FSNAME})"}','Windows: FS [{#FSLABEL}({#FSNAME})]: Space is low','','0','2','The volume''s space usage exceeds the `{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%` limit. The trigger expression is based on the current used and maximum available spaces. Event name represents the total volume space, which can differ from the maximum available space, depending on the filesystem type.',NULL,'0','2','0','','0','','1','Space used: {{ITEM.LASTVALUE1}.fmtnum(1)}%','0','Windows: FS [{#FSLABEL}({#FSNAME})]: Space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSLABEL}({#FSNAME})"}%, total {{?last(//vfs.fs.dependent.size[{#FSNAME},total])/1024/1024/1024}.fmtnum(1)}GB)','97115bbe4f6b4a8cb2873b8fa01f95d3',''), ('22479','{30812}=1','Windows: Zabbix agent is not available','','0','3','For active agents, `nodata()` with `agent.ping` is used with `{$AGENT.NODATA_TIMEOUT}` as a time threshold.',NULL,'0','0','0','','0','','1','','0','Windows: Zabbix agent is not available (or nodata for {$AGENT.NODATA_TIMEOUT})','e77c3b1849b64d45a3078794057a2582',''), ('22480','{30813}<{$MEM.PAGE_TABLE_CRIT.MIN}','Windows: Number of free system page table entries is too low','','0','2',E'`Memory\\Free System Page Table Entries` has been less than `{$MEM.PAGE_TABLE_CRIT.MIN}` for 5 minutes. If the number is less than 5,000, there may be a memory leak.',NULL,'0','0','0','','0','','0','','0','Windows: Number of free system page table entries is too low (less {$MEM.PAGE_TABLE_CRIT.MIN} for 5m)','37d6b965dd184b66b37018d4375d3e56',''), ('22481','{30814}>{$MEM.PAGE_SEC.CRIT.MAX}','Windows: The Memory Pages/sec is too high','','0','2','The Memory Pages/sec in the last 5 minutes exceeds `{$MEM.PAGE_SEC.CRIT.MAX}`. If the value is greater than 1,000, as a result of excessive paging, there may be a memory leak.',NULL,'0','0','0','','0','','0','','0','Windows: The Memory Pages/sec is too high (over {$MEM.PAGE_SEC.CRIT.MAX} for 5m)','05da8b30835e440fb1228fb9a0bc24a4',''), ('22482','{30815}>{$CPU.INTERRUPT.CRIT.MAX}','Windows: CPU interrupt time is too high','','0','2','The CPU Interrupt Time in the last 5 minutes exceeds `{$CPU.INTERRUPT.CRIT.MAX}`%.',NULL,'0','0','0','','0','','0','','0','Windows: CPU interrupt time is too high (over {$CPU.INTERRUPT.CRIT.MAX}% for 5m)','2eb661f6a42f40ce8cc25cef542763a9',''), ('22483','{30816}>{$CPU.PRIV.CRIT.MAX}','Windows: CPU privileged time is too high','','0','2','The CPU privileged time in the last 5 minutes exceeds {$CPU.PRIV.CRIT.MAX}%.',NULL,'0','0','0','','0','','0','','0','Windows: CPU privileged time is too high (over {$CPU.PRIV.CRIT.MAX}% for 5m)','cee69c70da6a415186b922305d0cabdc',''), ('22484','{30817}>{$CPU.UTIL.CRIT}','Windows: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Windows: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','ab3cbf18088a4d7a82f6c678ce49ffce',''), ('22485','{32798} and length({32799})>0','Windows: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Windows: System name has changed (new name: {ITEM.VALUE})','3aea75603e584d2f9dc96e7f3cc2b7fa',''), ('22487','{30822}<10m','Windows: Host has been restarted','','0','2','The device uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Windows: Host has been restarted (uptime < 10m)','4114e248a3b347f4a2fefc7816f2e940',''), ('22488','{30823}>{$MEMORY.UTIL.MAX}','Windows: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','Windows: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','610a0893be834c11b35a0472dcabab7c',''), ('22489','{30824} - {30825} * 2 > {$CPU.QUEUE.CRIT.MAX}','Windows: CPU queue length is too high','','0','2','The CPU Queue Length in the last 5 minutes exceeds `{$CPU.QUEUE.CRIT.MAX}`. According to actual observations, PQL should not exceed the number of cores * 2. To fine-tune the conditions, use the macro `{$CPU.QUEUE.CRIT.MAX }`.',NULL,'0','0','0','','0','','0','','0','Windows: CPU queue length is too high (over {$CPU.QUEUE.CRIT.MAX} for 5m)','384393bb344e497382ea10e7fce7fcb3',''), ('22490','{32557}<{$SWAP.PFREE.MIN.WARN} and {32558}>0','Windows: High swap space usage','','0','2','This trigger is ignored, if there is no swap configured',NULL,'0','0','0','','0','','0','Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}','0','Windows: High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free)','ac93631f79584e2d9909f4bb2f12c866',''), ('22491','{30828}<0 and {30829}>0 and {30830}=2','Windows: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','27a60f88cbd0457291153105ace75e4d',''), ('22492','({30831}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30832} or {30833}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30832}) and {30832}>0','Windows: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30831}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30832} and {30833}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30832}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Windows: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','a9ead42a45f5496a84a6a2bc619cece4',''), ('22493','{30834}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {30835}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Windows: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{30836}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {30837}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Windows: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','1945fd9bc15c471fb050d0a5430245a6',''), ('22494','{$IFCONTROL:"{#IFNAME}"}=1 and {30838}<>2 and ({30839}<>{30840})','Windows: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{30838}=2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','f9d1ac2feb0e43249cc849166ca9014c',''), ('22495','{30841}>{$VFS.DEV.UTIL.MAX.WARN}','Windows: {#DEVNAME}: Disk is overloaded','','0','2','The disk appears to be under heavy load.',NULL,'0','2','0','','0','','1','','0','Windows: {#DEVNAME}: Disk is overloaded (util > {$VFS.DEV.UTIL.MAX.WARN}% for 15m)','00031ae791d6424dbd29c91be91a249f',''), ('22496','{30842} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"}','Windows: {#DEVNAME}: Disk read request responses are too high','','0','2','This trigger might indicate the disk {#DEVNAME} saturation.',NULL,'0','2','0','','0','','1','','0','Windows: {#DEVNAME}: Disk read request responses are too high (read > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"}s for 15m)','f6c28fa8eef542a786b29d745dd2e56f',''), ('22497','{30843} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"}','Windows: {#DEVNAME}: Disk write request responses are too high','','0','2','This trigger might indicate the disk {#DEVNAME} saturation.',NULL,'0','2','0','','0','','1','','0','Windows: {#DEVNAME}: Disk write request responses are too high (write > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"}s for 15m)','9a0c7aa60e0e40d8abec9be6d6d49190',''), ('22498','{30844}<>0','Windows: "{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) is not running','','0','3','The service has a state other than "Running" for the last three times.',NULL,'0','2','0','','0','','0','','0','Windows: "{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) is not running (startup type {#SERVICE.STARTUPNAME})','c6f2c1c32cdf401091e4439624a24fab',''), ('22499','{33666}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSLABEL}({#FSNAME})"}','Windows: FS [{#FSLABEL}({#FSNAME})]: Space is critically low','','0','3','The volume''s space usage exceeds the `{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%` limit. The trigger expression is based on the current used and maximum available spaces. Event name represents the total volume space, which can differ from the maximum available space, depending on the filesystem type.',NULL,'0','2','0','','0','','1','Space used: {{ITEM.LASTVALUE1}.fmtnum(1)}%','0','Windows: FS [{#FSLABEL}({#FSNAME})]: Space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSLABEL}({#FSNAME})"}%, total {{?last(//vfs.fs.dependent.size[{#FSNAME},total])/1024/1024/1024}.fmtnum(1)}GB)','5bed682545044584852888d96454df86',''), ('22500','{33667}>{$VFS.FS.PUSED.MAX.WARN:"{#FSLABEL}({#FSNAME})"}','Windows: FS [{#FSLABEL}({#FSNAME})]: Space is low','','0','2','The volume''s space usage exceeds the `{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%` limit. The trigger expression is based on the current used and maximum available spaces. Event name represents the total volume space, which can differ from the maximum available space, depending on the filesystem type.',NULL,'0','2','0','','0','','1','Space used: {{ITEM.LASTVALUE1}.fmtnum(1)}%','0','Windows: FS [{#FSLABEL}({#FSNAME})]: Space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSLABEL}({#FSNAME})"}%, total {{?last(//vfs.fs.dependent.size[{#FSNAME},total])/1024/1024/1024}.fmtnum(1)}GB)','1e5e9718c5a14099b9421ff7956b2f33',''), ('22501','{30853}=0','Windows: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','08e22bd77606469d9e03183ec70dc89d',''), ('22502','{30854}>{$ICMP_LOSS_WARN} and {30854}<100','Windows: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','fa81e50132464ec486ea72929d18d778',''), ('22503','{30855}>{$ICMP_RESPONSE_TIME_WARN}','Windows: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','fba819f734de4b469fb7851501e55b21',''), ('22504','{30856}>{$CPU.UTIL.CRIT}','Windows: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Windows: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','ad2261f1ab77449cb1279725e8cf02f9',''), ('22505','{30857}<>{30858} and length({30859})>0','Windows: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Windows: System name has changed (new name: {ITEM.VALUE})','e257b5cf5d9949028c690722e4153612',''), ('22506','({32354}>0 and {32354}<10m) or ({32354}=0 and {32355}<10m)','Windows: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Windows: {HOST.NAME} has been restarted (uptime < 10m)','b7a0b390f8844d2aa05ee849d12495f7',''), ('22507','{30861}=0','Windows: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a20254c09f7a4d4d9793da7b075121f3',''), ('22508','{30862}<0 and {30863}>0 and ( {30864}=6 or {30864}=7 or {30864}=11 or {30864}=62 or {30864}=69 or {30864}=117 ) and ({30865}<>2)','Windows: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({30862}>0 and {30866}>0) or ({30865}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','fe3e2d20c6eb475ba9f0e8f0c5766720',''), ('22509','({30867}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30868} or {30869}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{30868}) and {30868}>0','Windows: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{30867}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30868} and {30869}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{30868}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Windows: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','5ab179badc3747438cf988c437b7b735',''), ('22510','{30870}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {30871}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Windows: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{30872}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {30873}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Windows: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','8acdf247d86b4b2785c92266291682ac',''), ('22511','{$IFCONTROL:"{#IFNAME}"}=1 and {30874}=2 and ({30875}<>{30876})','Windows: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{30874}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','101b888ea92348689bbc499bbe15b212',''), ('22512','{33668}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}','Windows: FS [{#FSNAME}]: Space is critically low','','0','3','The storage space usage exceeds the ''{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%'' limit.',NULL,'0','2','0','','0','','1','Space used: {{ITEM.LASTVALUE1}.fmtnum(1)}%','0','Windows: FS [{#FSNAME}]: Space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%, total {{?last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}])/1024/1024/1024}.fmtnum(1)}GB)','597ea2f6059746c0b2e5b7312f764224',''), ('22513','{33669}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}','Windows: FS [{#FSNAME}]: Space is low','','0','2','The storage space usage exceeds the ''{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%'' limit.',NULL,'0','2','0','','0','','1','Space used: {{ITEM.LASTVALUE1}.fmtnum(1)}%','0','Windows: FS [{#FSNAME}]: Space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%, total {{?last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}])/1024/1024/1024}.fmtnum(1)}GB)','028b24edaf9c4640a2316845f50a4a7e',''), ('22514','{30885}>{$MEMORY.UTIL.MAX}','Windows: {#MEMNAME}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','Windows: {#MEMNAME}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','ab4b4ad08664454096f5e2cf3b7da1e9',''), ('22515','{30886}=0','Huawei OceanStor 5300 V5: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','ef6b5dc40f9a49599aae97c2cf68d3cb',''), ('22516','{30887}>{$ICMP_LOSS_WARN} and {30887}<100','Huawei OceanStor 5300 V5: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','c9765f7f271d46c99ad7dd45efa79849',''), ('22517','{30888}>{$ICMP_RESPONSE_TIME_WARN}','Huawei OceanStor 5300 V5: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','b8815a9e952047e09d1e657cea5d538e',''), ('22518','{30889}<>{30890} and length({30891})>0','Huawei OceanStor 5300 V5: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Huawei OceanStor 5300 V5: System name has changed (new name: {ITEM.VALUE})','72a31faa805b40e795a57649c724da1e',''), ('22519','({32378}>0 and {32378}<10m) or ({32378}=0 and {32379}<10m)','Huawei OceanStor 5300 V5: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Huawei OceanStor 5300 V5: {HOST.NAME} has been restarted (uptime < 10m)','0e3713bdf52e40d692cf256ac2a01988',''), ('22520','{30893}=0','Huawei OceanStor 5300 V5: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b0c4103eac9447ee9f7f31627baf4eea',''), ('22521','{30894}=0','NetApp FAS3220: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','826eb817329249f59b7989c92ca62d99',''), ('22522','{30895}>{$ICMP_LOSS_WARN} and {30895}<100','NetApp FAS3220: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','4fb4b0022ca3433c8da1402f1d996760',''), ('22523','{30896}>{$ICMP_RESPONSE_TIME_WARN}','NetApp FAS3220: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','bb13f4d369294c0d83f8e6d888cbb062',''), ('22524','{30897}<>{30898} and length({30899})>0','NetApp FAS3220: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','NetApp FAS3220: System name has changed (new name: {ITEM.VALUE})','5266fcf7c9db457885c219385cfd5025',''), ('22525','({32380}>0 and {32380}<10m) or ({32380}=0 and {32381}<10m)','NetApp FAS3220: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','NetApp FAS3220: {HOST.NAME} has been restarted (uptime < 10m)','d33ca3f0d2f14feca01dce7bdf476776',''), ('22526','{30901}=0','NetApp FAS3220: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e778b1ae80174f7aa82085b4882e1160',''), ('22527','{30902}=0','Cisco UCS: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','301541972752471e86046ce494a2febb',''), ('22528','{30903}>{$ICMP_LOSS_WARN} and {30903}<100','Cisco UCS: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','e051db53cf32406bb0d5ff9cc8d5ce7b',''), ('22529','{30904}>{$ICMP_RESPONSE_TIME_WARN}','Cisco UCS: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','a11942dac3504b64977c2de3e575d2eb',''), ('22530','{30905}<>{30906} and length({30907})>0','Cisco UCS: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Cisco UCS: System name has changed (new name: {ITEM.VALUE})','3544e4ac11b44d14a6161523081c470e',''), ('22531','({32384}>0 and {32384}<10m) or ({32384}=0 and {32385}<10m)','Cisco UCS: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Cisco UCS: {HOST.NAME} has been restarted (uptime < 10m)','a933ba0e5c7f4e908afaba4381f65482',''), ('22532','{30909}=0','Cisco UCS: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','3c487a6b20c746eca9a7efc6058a60d9',''), ('22539','{30918}=0','HP iLO: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','755a4c5e809d418cbb1162102b0d1c26',''), ('22540','{30919}>{$ICMP_LOSS_WARN} and {30919}<100','HP iLO: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','0492380bc6374f24b92b4661b27d8f2c',''), ('22541','{30920}>{$ICMP_RESPONSE_TIME_WARN}','HP iLO: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','a869db9f341c479c80dca50bac0ff309',''), ('22542','{30921}<>{30922} and length({30923})>0','HP iLO: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','HP iLO: System name has changed (new name: {ITEM.VALUE})','df3c9e64b0f844ddac8f40f6df956595',''), ('22543','({32404}>0 and {32404}<10m) or ({32404}=0 and {32405}<10m)','HP iLO: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','HP iLO: {HOST.NAME} has been restarted (uptime < 10m)','261749b9936c4a26b48d660f01435fb7',''), ('22544','{30925}=0','HP iLO: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','8870beab300f41ea8d54619fd2bf0371',''), ('22545','{30926}=0','IBM IMM: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','937225d93eea44b3a8328eee03cf66f0',''), ('22546','{30927}>{$ICMP_LOSS_WARN} and {30927}<100','IBM IMM: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','ec37a141b33c46308b8d810069ce9142',''), ('22547','{30928}>{$ICMP_RESPONSE_TIME_WARN}','IBM IMM: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','0541700de60549da8439f9b75cf83e7f',''), ('22548','{30929}<>{30930} and length({30931})>0','IBM IMM: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','IBM IMM: System name has changed (new name: {ITEM.VALUE})','188852025e644d5ab583f9d7a9dea06c',''), ('22549','({32521}>0 and {32521}<10m) or ({32521}=0 and {32522}<10m)','IBM IMM: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','IBM IMM: {HOST.NAME} has been restarted (uptime < 10m)','7dd529ec3f1a4a59846a3a76536a7fa0',''), ('22550','{30933}=0','IBM IMM: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','fbec2f12ac244723bb31dec5efcc6f85',''), ('22551','{30934}=0','Supermicro Aten: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','680c72ab6bb441779553b198081e3bf4',''), ('22552','{30935}>{$ICMP_LOSS_WARN} and {30935}<100','Supermicro Aten: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','e2e4bfca2d0c4f8ebd64bef322d2a368',''), ('22553','{30936}>{$ICMP_RESPONSE_TIME_WARN}','Supermicro Aten: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','b6fb489c6a624b2994c5e50ba75539b2',''), ('22554','{30937}<>{30938} and length({30939})>0','Supermicro Aten: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Supermicro Aten: System name has changed (new name: {ITEM.VALUE})','07b7a49bffea4c03a022eed632754f47',''), ('22555','({32523}>0 and {32523}<10m) or ({32523}=0 and {32524}<10m)','Supermicro Aten: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Supermicro Aten: {HOST.NAME} has been restarted (uptime < 10m)','37aab043ea474548ab1e54e504720bed',''), ('22556','{30941}=0','Supermicro Aten: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','caeb9732846b4ae586ee103ac0c4a65b',''), ('22557','{30943}>{$TIKV.PENDING_COMMANDS.MAX.WARN}','TiDB TiKV: Too many pending commands','','0','3','',NULL,'0','0','0','','0','','0','','0','TiDB TiKV: Too many pending commands (over {$TIKV.PENDING_COMMANDS.MAX.WARN} for 5m)','0f21c02b8e1c45d9bbe0c3313cea1a23',''), ('22558','({31000}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{31001} or {31002}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{31001}) and {31001}>0','Linux: Interface {#IFNAME}: High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{31000}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{31001} and {31002}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{31001}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Linux: Interface {#IFNAME}: High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','f64186d30b4e4c4281fce84349cbd646',''), ('22561','({31019}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{31020} or {31021}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{31020}) and {31020}>0','Linux: Interface {#IFNAME}: High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{31019}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{31020} and {31021}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{31020}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Linux: Interface {#IFNAME}: High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','5370cb085c454077a2dd6c39890f706a',''), ('22563','{31030}>({31031}*{$JMX.MP.USAGE.MAX:"{#JMXNAME}"}/100) and {31031}>0','Generic Java JMX: Memory pool: {#JMXNAME} memory usage is high','','0','2','',NULL,'0','2','0','','0','','0','','0','Generic Java JMX: Memory pool: {#JMXNAME} memory usage more than {$JMX.MP.USAGE.MAX:"{#JMXNAME}"}% for {$JMX.MP.USAGE.TIME:"{#JMXNAME}"}','60a9825fc01f4cc9bd79d306bb19e8e0',''), ('22566','length({31043})>0','OpenWeatherMap: There are errors in requests to OpenWeatherMap API','','0','3','Zabbix has received errors in requests to OpenWeatherMap API.',NULL,'0','0','0','','0','','1','{ITEM.LASTVALUE1}','0','','8c2c6f81e1e74f97a28538e714eee474',''), ('22567','{31044}>{$TEMP.CRIT.HIGH}','OpenWeatherMap: [{#LOCATION}, {#COUNTRY}]: Temperature is too high','','0','3','Temperature value is too high.',NULL,'0','2','0','','0','','1','Current temp: {ITEM.LASTVALUE1}','0','OpenWeatherMap: [{#LOCATION}, {#COUNTRY}]: Temperature is too high (over {$TEMP.CRIT.HIGH} for 30m)','3b7e55f13c6a4ba2930709d5c51c8a09',''), ('22568','{31045}<{$TEMP.CRIT.LOW}','OpenWeatherMap: [{#LOCATION}, {#COUNTRY}]: Temperature is too low','','0','3','Temperature value is too low.',NULL,'0','2','0','','0','','1','Current temp: {ITEM.LASTVALUE1}','0','OpenWeatherMap: [{#LOCATION}, {#COUNTRY}]: Temperature is too low (below {$TEMP.CRIT.LOW} for 30m)','7c98d2784a2e42faa76e67348a0df7ff',''), ('22569','{31054} <> 200','Proxmox VE: API service not available','','0','4','The API service is not available. Check your network and authorization settings.',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','7ef8290fd6e242339d0e56d5e8eedb1a',''), ('22570','{31055} <> 1','Proxmox VE: Cluster [{#RESOURCE.NAME}] not quorum','','0','4','Proxmox VE use a quorum-based technique to provide a consistent state among all cluster nodes.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE}','0','','142e02d47b8a4ac9a9ad28b68b097ebd',''), ('22571','{31056} / {31057} * 100 >{$PVE.LXC.MEMORY.PUSE.MAX.WARN:"{#LXC.ID}"}','Proxmox VE: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})] high memory usage','','0','2','Memory usage.',NULL,'0','2','0','','0','','0','Current use: {ITEM.LASTVALUE1} of {ITEM.LASTVALUE2}','0','Proxmox VE: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})] high memory usage (over {$PVE.LXC.MEMORY.PUSE.MAX.WARN:"{#LXC.ID}"}% use)','f59e43f9de01419897aec1b9d4539b48',''), ('22572','{31058} > {$PVE.LXC.CPU.PUSE.MAX.WARN:"{#LXC.ID}"}','Proxmox VE: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})] high CPU usage','','0','2','CPU usage.',NULL,'0','2','0','','0','','0','Current use: {ITEM.LASTVALUE1}','0','Proxmox VE: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})] high CPU usage (over {$PVE.LXC.CPU.PUSE.MAX.WARN:"{#LXC.ID}"}% use)','c0436342a19d4d6482fac70d2f04f530',''), ('22573','{31059}<10m','Proxmox VE: LXC [{#NODE.NAME}/{#LXC.NAME}] has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','2','0','','0','','1','','0','Proxmox VE: LXC [{#NODE.NAME}/{#LXC.NAME}] has been restarted (uptime < 10m)','0e55935a79b94bc096b6213d500f4f59',''), ('22574','{31060}<>"running"','Proxmox VE: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Not running','','0','3','LXC state is not "running".',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','71623950edf44bcb9453b2e8e63cb97b',''), ('22575','{31061} / {31062} * 100 >{$PVE.MEMORY.PUSE.MAX.WARN:"{#NODE.NAME}"}','Proxmox VE: Node [{#NODE.NAME}] high memory usage','','0','2','Memory usage.',NULL,'0','2','0','','0','','0','Current use: {ITEM.LASTVALUE1} of {ITEM.LASTVALUE2}','0','Proxmox VE: Node [{#NODE.NAME}] high memory usage (over {$PVE.MEMORY.PUSE.MAX.WARN:"{#NODE.NAME}"}% use)','a0445b4e1ffd451595ecea0468b4a6a6',''), ('22576','{31063} / {31064} * 100 >{$PVE.ROOT.PUSE.MAX.WARN:"{#NODE.NAME}"}','Proxmox VE: Node [{#NODE.NAME}] high root filesystem space usage','','0','2','Root filesystem space usage.',NULL,'0','2','0','','0','','0','Current use: {ITEM.LASTVALUE1} of {ITEM.LASTVALUE2}','0','Proxmox VE: Node [{#NODE.NAME}] high root filesystem space usage (over {$PVE.ROOT.PUSE.MAX.WARN:"{#NODE.NAME}"}% use)','3f88526e10a14319983fe14621ef10f9',''), ('22577','{31065} / {31066} * 100 > {$PVE.SWAP.PUSE.MAX.WARN:"{#NODE.NAME}"} and {31066} > 0','Proxmox VE: Node [{#NODE.NAME}] high swap space usage','','0','2','If there is no swap configured, this trigger is ignored.',NULL,'0','2','0','','0','','0','Current use: {ITEM.LASTVALUE1} of {ITEM.LASTVALUE2}','0','Proxmox VE: Node [{#NODE.NAME}] high swap space usage (over {$PVE.SWAP.PUSE.MAX.WARN:"{#NODE.NAME}"}% use)','f38ccc2e0e40430e801bf98b488e12e4',''), ('22578','{31067} > {$PVE.CPU.PUSE.MAX.WARN:"{#NODE.NAME}"}','Proxmox VE: Node [{#NODE.NAME}] high CPU usage','','0','2','CPU usage.',NULL,'0','2','0','','0','','0','Current use: {ITEM.LASTVALUE1}','0','Proxmox VE: Node [{#NODE.NAME}] high CPU usage (over {$PVE.CPU.PUSE.MAX.WARN:"{#NODE.NAME}"}% use)','84041dcb7c84426dad538ab32375fdb1',''), ('22579','{31068}<>{31069} and length({31070})>0','Proxmox VE: Node [{#NODE.NAME}]: Kernel version has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','4020236474e840acb1bc480eb8c52a1f',''), ('22580','{31071} <> 1','Proxmox VE: Node [{#NODE.NAME}] offline','','0','4','Node offline.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE}','0','','41b7efb8822948b08de8adace2e124a9',''), ('22581','{31072}<>{31073} and length({31074})>0','Proxmox VE: Node [{#NODE.NAME}]: PVE manager has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','5b92af55dbd84181bcab0f39e6effbe0',''), ('22582','{31075}<10m','Proxmox VE: Node [{#NODE.NAME}] has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','2','0','','0','','1','','0','Proxmox VE: Node [{#NODE.NAME}] has been restarted (uptime < 10m)','529b69b98a86409d914d3464569b7901',''), ('22583','{31076} / {31077} * 100 >{$PVE.VM.MEMORY.PUSE.MAX.WARN:"{#QEMU.ID}"}','Proxmox VE: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})] high memory usage','','0','2','Memory usage.',NULL,'0','2','0','','0','','0','Current use: {ITEM.LASTVALUE1} of {ITEM.LASTVALUE2}','0','Proxmox VE: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})] high memory usage (over {$PVE.VM.MEMORY.PUSE.MAX.WARN:"{#QEMU.ID}"}% use)','5305bf2b71aa4b74917379c6e1b3c065',''), ('22584','{31078} > {$PVE.VM.CPU.PUSE.MAX.WARN:"{#QEMU.ID}"}','Proxmox VE: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})] high CPU usage','','0','2','CPU usage.',NULL,'0','2','0','','0','','0','Current use: {ITEM.LASTVALUE1}','0','Proxmox VE: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})] high CPU usage (over {$PVE.VM.CPU.PUSE.MAX.WARN:"{#QEMU.ID}"}% use)','84ed68d7cf2b48a48fc44e9c7a0d9b92',''), ('22585','{31079}<10m','Proxmox VE: VM [{#NODE.NAME}/{#QEMU.NAME}] has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','2','0','','0','','1','','0','Proxmox VE: VM [{#NODE.NAME}/{#QEMU.NAME}] has been restarted (uptime < 10m)','d4ba1faeb67940a192c1b50460793813',''), ('22586','{31080}<>"running"','Proxmox VE: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Not running','','0','3','VM state is not "running".',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','8f57d13f278b459299c565846b4091f5',''), ('22587','{31081} / {31082} * 100 >{$PVE.STORAGE.PUSE.MAX.WARN:"{#NODE.NAME}/{#STORAGE.NAME}"}','Proxmox VE: Storage [{#NODE.NAME}/{#STORAGE.NAME}] high filesystem space usage','','0','2','Root filesystem space usage.',NULL,'0','2','0','','0','','0','Current use: {ITEM.LASTVALUE1} of {ITEM.LASTVALUE2}','0','Proxmox VE: Storage [{#NODE.NAME}/{#STORAGE.NAME}] high filesystem space usage (over {$PVE.STORAGE.PUSE.MAX.WARN:"{#NODE.NAME}/{#STORAGE.NAME}"}% use)','404d9a8a6fa54d8c880006c9ec32f55a',''), ('22593','{31090}>{$MEMORY.UTIL.MAX}','TrueNAS CORE: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','TrueNAS CORE: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','3ee054e3d944441d9fd174e13b6a59ee',''), ('22595','{31092}<{$SWAP.PFREE.MIN.WARN} and {31093}>0','TrueNAS CORE: High swap space usage','','0','2','If there is no swap configured, this trigger is ignored.',NULL,'0','0','0','','0','','0','Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}','0','TrueNAS CORE: High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free)','6c1708d53693435c87cd27f1568345c1',''), ('22596','{31094}<{$MEMORY.AVAILABLE.MIN} and {31095}>0','TrueNAS CORE: Lack of available memory','','0','3','The system is running out of memory.',NULL,'0','0','0','','0','','0','Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}','0','TrueNAS CORE: Lack of available memory (<{$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2})','0a04cc4789a14f1090232fce196c0e4d',''), ('22597','{31096}/{31097}>{$LOAD_AVG_PER_CPU.MAX.WARN} and {31098}>0 and {31099}>0','TrueNAS CORE: Load average is too high','','0','3','The load average per CPU is too high. The system may be slow to respond.',NULL,'0','0','0','','0','','0','Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}','0','TrueNAS CORE: Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m)','c923ea2cc04848de911ad9a41defaff6',''), ('22598','{31100}>{$CPU.UTIL.CRIT}','TrueNAS CORE: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','TrueNAS CORE: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','776551cd5322405e8d7c2b9c30b3a82b',''), ('22605','{31115} > {$TEMPERATURE.MAX.CRIT:"{#DISK_NAME}"}','TrueNAS CORE: Disk [{#DISK_NAME}]'': Average disk temperature is too high','','0','3','Disk temperature is high.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','TrueNAS CORE: Disk [{#DISK_NAME}]'': Average disk temperature is too high (over {$TEMPERATURE.MAX.CRIT:"{#DISK_NAME}"}C for 5m)','fda99a2e62064414af85c1137cbf0aef',''), ('22606','{31116} > {$TEMPERATURE.MAX.WARN:"{#DISK_NAME}"}','TrueNAS CORE: Disk [{#DISK_NAME}]'': Average disk temperature is too high','','0','2','Disk temperature is high.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','TrueNAS CORE: Disk [{#DISK_NAME}]'': Average disk temperature is too high (over {$TEMPERATURE.MAX.WARN:"{#DISK_NAME}"}C for 5m)','73194e7637a84dca976b218e9f4248c2',''), ('22607','{31117} > {$DATASET.PUSED.MAX.WARN:"{#DATASET_NAME}"} and {31118} < {$DATASET.FREE.MIN.WARN:"{#POOLNAME}"}','TrueNAS CORE: Dataset [{#DATASET_NAME}]: High space usage','','0','2','Two conditions should match: 1. The first condition - utilization of the space should be above `{$DATASET.PUSED.MAX.WARN:"{#DATASET_NAME}"}%.` 2. The second condition - the dataset free space is less than `{$DATASET.FREE.MIN.WARN:"{#POOLNAME}"}`.',NULL,'0','2','0','','0','','0','Current usage: {ITEM.LASTVALUE1}','0','TrueNAS CORE: Dataset [{#DATASET_NAME}]: High space usage (more than {$DATASET.PUSED.MAX.WARN:"{#DATASET_NAME}"}% used)','f759e058ef5345d884662f51db0c222e',''), ('22608','{31119} > {$DATASET.PUSED.MAX.CRIT:"{#DATASET_NAME}"} and {31120} < {$DATASET.FREE.MIN.CRIT:"{#POOLNAME}"}','TrueNAS CORE: Dataset [{#DATASET_NAME}]: Very high space usage','','0','3','Two conditions should match: 1. The first condition - utilization of the space should be above `{$DATASET.PUSED.MAX.CRIT:"{#DATASET_NAME}"}%.` 2. The second condition - the dataset free space is less than `{$DATASET.FREE.MIN.CRIT:"{#POOLNAME}"}`.',NULL,'0','2','0','','0','','0','Current usage: {ITEM.LASTVALUE1}','0','TrueNAS CORE: Dataset [{#DATASET_NAME}]: Very high space usage (more than {$DATASET.PUSED.MAX.CRIT:"{#DATASET_NAME}"}% used)','f0e37c1f63aa4e3090c0dc8c4f0dfe9b',''), ('22609','{31121} > {$ZPOOL.PUSED.MAX.WARN:"{#POOLNAME}"} and {31122} < {$ZPOOL.FREE.MIN.WARN:"{#POOLNAME}"}','TrueNAS CORE: Pool [{#POOLNAME}]: High space usage','','0','2','Two conditions should match: 1. The first condition - utilization of the space should be above `{$ZPOOL.PUSED.MAX.WARN:"{#POOLNAME}"}%.` 2. The second condition - the pool free space is less than `{$ZPOOL.FREE.MIN.WARN:"{#POOLNAME}"}`.',NULL,'0','2','0','','0','','0','Current usage: {ITEM.LASTVALUE1}','0','TrueNAS CORE: Pool [{#POOLNAME}]: High space usage (more than {$ZPOOL.PUSED.MAX.WARN:"{#POOLNAME}"}% used)','18eef491c14b4f768400b4acca5c7e80',''), ('22610','{31123} > {$ZPOOL.PUSED.MAX.CRIT:"{#POOLNAME}"} and {31124} < {$ZPOOL.FREE.MIN.CRIT:"{#POOLNAME}"}','TrueNAS CORE: Pool [{#POOLNAME}]: Very high space usage','','0','3','Two conditions should match: 1. The first condition - utilization of the space should be above `{$ZPOOL.PUSED.MAX.CRIT:"{#POOLNAME}"}%.` 2. The second condition - the pool free space is less than `{$ZPOOL.FREE.MIN.CRIT:"{#POOLNAME}"}`.',NULL,'0','2','0','','0','','0','Current usage: {ITEM.LASTVALUE1}','0','TrueNAS CORE: Pool [{#POOLNAME}]: Very high space usage (more than {$ZPOOL.PUSED.MAX.CRIT:"{#POOLNAME}"}% used)','ab01140b8a724c1cbb79be032de8c8b5',''), ('22611','{31125} <> 0','TrueNAS CORE: Pool [{#POOLNAME}]: Status is not online','','0','3','Please check pool status.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','676c2abdd102484a92db3501ccc2ca51',''), ('22612','{33919}=3','VMware Hypervisor: The {$VMWARE.HV.UUID} health is Red','','0','4','One or more components in the appliance might be in an unusable status and the appliance might soon become unresponsive. Security patches might be available.',NULL,'0','2','0','','0','','0','','0','','9f2a65161946436986aacf6c9a637673',''), ('22613','{33920}=2','VMware Hypervisor: The {$VMWARE.HV.UUID} health is Yellow','','0','3','One or more components in the appliance might soon become overloaded.',NULL,'0','2','0','','0','','0','','0','','dc4f84eb8d2143bb80999fbc58f38928',''), ('22614','{31128}>{$PG.SLOW_QUERIES.MAX.WARN:"{#DBNAME}"}','PostgreSQL: DB [{#DBNAME}]: Too many slow queries','','0','2','The number of detected slow queries exceeds the limit of {$PG.SLOW_QUERIES.MAX.WARN:"{#DBNAME}"}.',NULL,'0','2','0','','0','','0','','0','PostgreSQL: DB [{#DBNAME}]: Too many slow queries (over {$PG.SLOW_QUERIES.MAX.WARN:"{#DBNAME}"} in 5m)','2bb34a2a7dee451cb5419a146d883601',''), ('22641','({31439} - now()) / 86400 < {$COCKROACHDB.CERT.CA.EXPIRY.WARN}','CockroachDB: CA certificate expires soon','','0','2','CA certificate expires soon.',NULL,'0','0','0','','0','','0','','0','CockroachDB: CA certificate expires soon (less than {$COCKROACHDB.CERT.CA.EXPIRY.WARN} days)','76a2093eb0214185ab8e03986f3f1474',''), ('22642','({31440} - now()) / 86400 < {$COCKROACHDB.CERT.NODE.EXPIRY.WARN}','CockroachDB: Node certificate expires soon','','0','2','Node certificate expires soon.',NULL,'0','0','0','','0','','0','','0','CockroachDB: Node certificate expires soon (less than {$COCKROACHDB.CERT.NODE.EXPIRY.WARN} days)','592152fe1dde4e81abd4bee76c3dae9d',''), ('22643','{31441} > {$COCKROACHDB.CLOCK.OFFSET.MAX.WARN} * 0.001','CockroachDB: Clock offset is too high','','0','2','Cockroach-measured clock offset is nearing limit (by default, servers kill themselves at 400ms from the mean).',NULL,'0','0','0','','0','','0','','0','CockroachDB: Clock offset is too high (over {$COCKROACHDB.CLOCK.OFFSET.MAX.WARN}ms for 5m)','bddc5c6ac7294bb4be9ed8a4f4d4f4a9',''), ('22644','{31442} = 500','CockroachDB: Node is unhealthy','','0','3','Node''s /health endpoint has returned HTTP 500 Internal Server Error which indicates unhealthy mode.',NULL,'0','0','0','','0','','0','','0','','6ccd74acda004a738c3003af4526cd91',''), ('22645','{31443} > {$COCKROACHDB.STATEMENTS.ERRORS.MAX.WARN}','CockroachDB: SQL statements errors rate is too high','','0','2','',NULL,'0','0','0','','0','','0','','0','CockroachDB: SQL statements errors rate is too high (over {$COCKROACHDB.STATEMENTS.ERRORS.MAX.WARN} per second for 5m)','7307fc4f2c29438e99eea0256a8755ce',''), ('22646','{31444} = 1','CockroachDB: Failed to fetch node data','','0','2','Zabbix has not received data for items for the last 5 minutes.',NULL,'0','0','0','','0','','0','','0','CockroachDB: Failed to fetch node data (or no data for 5m)','90f6cccaf3d94a3d853641482ccb5254',''), ('22647','{31445} < 10m','CockroachDB: Node has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','0','','0','CockroachDB: Node has been restarted (uptime < 10m)','83802e38f1414ca9b40e2d2df2d94941',''), ('22648','{31446} <> {31447} and length({31446}) > 0','CockroachDB: Version has changed','','0','1','',NULL,'0','0','0','','0','','0','','0','CockroachDB: Version has changed (new version: {ITEM.VALUE})','620aee1613e841acb44a438b4b9b68c9',''), ('22649','{31448} = 0','CockroachDB: Service is down','','0','3','',NULL,'0','0','0','','0','','0','','0','','d3c0d0a9e1f44c95a2246ab7081f581b',''), ('22650','{31449} / {31450} * 100 > {$COCKROACHDB.OPEN.FDS.MAX.WARN}','CockroachDB: Current number of open files is too high','','0','2','Getting close to open file descriptor limit.',NULL,'0','0','0','','0','','0','','0','CockroachDB: Current number of open files is too high (over {$COCKROACHDB.OPEN.FDS.MAX.WARN}% for 10m)','8c2035ad44ea44b2b690b086d11e8cfc',''), ('22651','{31451} > 0 and {31452} = 0','CockroachDB: Node is not executing SQL','','0','2','Node is not executing SQL despite having connections.',NULL,'0','0','0','','0','','0','','0','','b099e323ec974823bfd84317b152a1fb',''), ('22652','{31453} = 503 and {31454} > 5m','CockroachDB: Node is not ready','','0','3','Node''s /health?ready=1 endpoint has returned HTTP 503 Service Unavailable. Possible reasons: - node is in the wait phase of the node shutdown sequence; - node is unable to communicate with a majority of the other nodes in the cluster, likely because the cluster is unavailable due to too many nodes being down.',NULL,'0','0','0','','0','','0','','0','','0d2fa3b6ea434a07867b9f4d6156ea81',''), ('22653','{31455} < {$COCKROACHDB.STORE.USED.MIN.CRIT}','CockroachDB: Storage [{#STORE}]: Available storage capacity is critically low','','0','3','Storage is running critically low on free space (less than {$COCKROACHDB.STORE.USED.MIN.CRIT}% available).',NULL,'0','2','1','{31456} > {$COCKROACHDB.STORE.USED.MIN.CRIT}','0','','0','','0','CockroachDB: Storage [{#STORE}]: Available storage capacity is critically low (less than {$COCKROACHDB.STORE.USED.MIN.CRIT}%)','db07663014aa47a892faa2f9dbd97ec9',''), ('22654','{31457} < {$COCKROACHDB.STORE.USED.MIN.WARN}','CockroachDB: Storage [{#STORE}]: Available storage capacity is low','','0','2','Storage is running low on free space (less than {$COCKROACHDB.STORE.USED.MIN.WARN}% available).',NULL,'0','2','1','{31458} > {$COCKROACHDB.STORE.USED.MIN.WARN}','0','','0','','0','CockroachDB: Storage [{#STORE}]: Available storage capacity is low (less than {$COCKROACHDB.STORE.USED.MIN.WARN}%)','a58b694f4cf642228ec0633f0efb04a7',''), ('22655','{31459}<{$ENVOY.CERT.MIN}','Envoy Proxy: SSL certificate expires soon','','0','2','Please check certificate. Less than {$ENVOY.CERT.MIN} days left until the next certificate being managed will expire.',NULL,'0','0','0','','0','','0','Expires: {ITEM.VALUE}','0','Envoy Proxy: SSL certificate expires soon (less than {$CERT.EXPIRY.MIN} days)','d025e1c521ee4f53acd896d96609beec',''), ('22656','{31460} > 0','Envoy Proxy: Server state is not live','','0','3','',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b90a6241e1294fdc8502426b7582c1c2',''), ('22657','{31461}=1','Envoy Proxy: Failed to fetch metrics data','','0','2','Zabbix has not received data for items for the last 10 minutes.',NULL,'0','0','0','','0','','1','','0','Envoy Proxy: Failed to fetch metrics data (or no data for 10m)','173c90200dd1451db10b8ea8b018bc54',''), ('22658','{31462}<10m','Envoy Proxy: Service has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Envoy Proxy: Service has been restarted (uptime < 10m)','01e29535e00143c9a64fe844f637f17e',''), ('22659','{31463} > 0','Envoy Proxy: There are unhealthy clusters','','0','3','',NULL,'0','2','0','','0','','0','Current number: {ITEM.LASTVALUE1}','0','','7542707fd247445cb9eaa51d01e76d5e',''), ('22660','{31486}=2','MS Exchange 2016: Active checks are not available','','0','4','Active checks are considered unavailable. Agent is not sending heartbeat for prolonged time.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','8f04c3d6b3224382abf7472e8a4e38ba',''), ('22661','{31488}=2','IIS: Active checks are not available','','0','4','Active checks are considered unavailable. Agent is not sending heartbeat for prolonged time.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b9d8edc865f54e8eb56e84392817ff5b',''), ('22662','{31490}=2','Linux: Active checks are not available','','0','4','Active checks are considered unavailable. Agent has not sent a heartbeat for a prolonged time.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a022259fc3cf454f93bc82cca27391f1',''), ('22663','{31491}=2','Windows: Active checks are not available','','0','4','Active checks are considered unavailable. Agent has not sent a heartbeat for a prolonged time.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','bad86dfaf5274927bce35ad314a2d21a',''), ('22664','length({31470})>0','HashiCorp Consul Node: Failed to get local services','','0','2','Failed to get local services. Check debug log for more information.',NULL,'0','0','0','','0','','0','','0','','5cf09b213c044033af1d8e1d8821bc38',''), ('22665','{31471}>{$CONSUL.NODE.HEALTH_SCORE.MAX.HIGH}','HashiCorp Consul Node: Node''s health score is critical','','0','3','This metric ranges from 0 to 8, where 0 indicates "totally healthy". This health score is used to scale the time between outgoing probes, and higher scores translate into longer probing intervals. For more details see section IV of the Lifeguard paper: https://arxiv.org/pdf/1707.00788.pdf',NULL,'0','0','0','','0','','0','','0','HashiCorp Consul Node: Node''s health score is over {$CONSUL.NODE.HEALTH_SCORE.MAX.HIGH}','f964a907c55148bf80991352c7f2ae83',''), ('22666','{31472}>{$CONSUL.NODE.HEALTH_SCORE.MAX.WARN}','HashiCorp Consul Node: Node''s health score is warning','','0','2','This metric ranges from 0 to 8, where 0 indicates "totally healthy". This health score is used to scale the time between outgoing probes, and higher scores translate into longer probing intervals. For more details see section IV of the Lifeguard paper: https://arxiv.org/pdf/1707.00788.pdf',NULL,'0','0','0','','0','','0','','0','HashiCorp Consul Node: Node''s health score is too high (over {$CONSUL.NODE.HEALTH_SCORE.MAX.WARN} for 3m)','1fedc58f33ed4b9797fb37acfceba192',''), ('22667','{31473}<>{31474} and length({31475})>0','HashiCorp Consul Node: Version has been changed','','0','1','Consul version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','HashiCorp Consul Node: Version has changed (new version: {ITEM.VALUE})','fa78d269c01548a083085a3a98e5a59b',''), ('22668','{31476}/{31477}*100>{$CONSUL.OPEN.FDS.MAX.WARN}','HashiCorp Consul Node: Current number of open files is too high','','0','2','"Heavy file descriptor usage (i.e., near the process’s file descriptor limit) indicates a potential file descriptor exhaustion issue."',NULL,'0','0','0','','0','','0','','0','HashiCorp Consul Node: Current number of open files is too high (over {$CONSUL.OPEN.FDS.MAX.WARN}% for 5m)','9e1a0b7f49844d1db525d00d5f1060f0',''), ('22669','{31478} = 2','HashiCorp Consul Node: Aggregated status is ''critical''','','0','3','Aggregated state of service on the local agent is ''critical''.',NULL,'0','2','0','','0','','0','','0','HashiCorp Consul Node: Node''s health score is over {$CONSUL.NODE.HEALTH_SCORE.MAX.HIGH}','661551e1e9e94b25b7bd6ea876640b6d',''), ('22670','{31479} = 1','HashiCorp Consul Node: Aggregated status is ''warning''','','0','2','Aggregated state of service on the local agent is ''warning''.',NULL,'0','2','0','','0','','0','','0','','724f6a5e16f64a779a71ad9a9378fb60',''), ('22671','{31480}<>{31481} and length({31482})>0','HashiCorp Consul Cluster: Leader has been changed','','0','1','Consul cluster version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','HashiCorp Consul Cluster: Leader has been changed (new value received: {ITEM.VALUE})','8f612c3cfbb74f55a7defed05039e2a5',''), ('22672','{31483}>0','HashiCorp Consul Cluster: One or more nodes in cluster in ''critical'' state','','0','3','One or more agents on current dc with serf health status ''critical''.',NULL,'0','0','0','','0','','0','','0','','8660702ae3674eb083d6dacb81ec3a4d',''), ('22673','{31484}>0','HashiCorp Consul Cluster: One or more nodes in cluster in ''warning'' state','','0','2','One or more agents on current dc with serf health status ''warning''.',NULL,'0','0','0','','0','','0','','0','','92136d6ee73b4bb5b88b9f1da1afe740',''), ('22674','{34824}>{$CONSUL.SERVICE_NODES.CRITICAL.MAX.AVG:"{#SERVICE_NAME}"}','HashiCorp Consul Cluster: Service ["{#SERVICE_NAME}"]: Too many nodes with service status ''critical''','','0','3','One or more nodes with service status ''critical''.',NULL,'0','2','0','','0','','0','','0','HashiCorp Consul Cluster: Service ["{#SERVICE_NAME}"]: Too many nodes with service status ''critical'' (over {$CONSUL.SERVICE_NODES.CRITICAL.MAX.AVG:"{#SERVICE_NAME}"})','60919b58bd484597aa7ec03f308eb614',''), ('22677','length({31932})>0','HPE MSA 2040 Storage: There are errors in method requests to API','','0','3','There are errors in method requests to API.',NULL,'0','0','0','','0','','0','','0','','7f80562a0b4f4329be454c418de3f517',''), ('22678','{31933}=1','HPE MSA 2040 Storage: System health is in degraded state','','0','2','System health is in degraded state.',NULL,'0','0','0','','0','','0','','0','','ee37a443b22a4161a88014a0c32dfdfa',''), ('22679','{31934}=2','HPE MSA 2040 Storage: System health is in fault state','','0','3','System health is in fault state.',NULL,'0','0','0','','0','','0','','0','','54472b6cdf84418baf10b4a7d5e16e5c',''), ('22680','{31935}=3','HPE MSA 2040 Storage: System health is in unknown state','','0','1','System health is in unknown state.',NULL,'0','0','0','','0','','0','','0','','ccb821dafad1404dbc1873561a69b7cc',''), ('22681','{31936}=0','HPE MSA 2040 Storage: Service is down or unavailable','','0','4','HTTP/HTTPS service is down or unable to establish TCP connection.',NULL,'0','0','0','','0','','0','','0','','b8d07373a0fb4051a0534891b255994a',''), ('22682','{31937}>{$HPE.MSA.CONTROLLER.CPU.UTIL.CRIT}','HPE MSA 2040 Storage: Controller [{#CONTROLLER.ID}]: High CPU utilization','','0','2','Controller CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','','0','HPE MSA 2040 Storage: Controller [{#CONTROLLER.ID}]: High CPU utilization (over {$HPE.MSA.CONTROLLER.CPU.UTIL.CRIT}% for 5m)','b94f1cfd6e6a48f8a18c644532b7a9c8',''), ('22683','{31938}=1','HPE MSA 2040 Storage: Controller [{#CONTROLLER.ID}]: Controller health is in degraded state','','0','2','Controller health is in degraded state.',NULL,'0','2','0','','0','','0','','0','','381a5fe2adfd4f4ea15763cdf0a1bd0d',''), ('22684','{31939}=2','HPE MSA 2040 Storage: Controller [{#CONTROLLER.ID}]: Controller health is in fault state','','0','3','Controller health is in fault state.',NULL,'0','2','0','','0','','0','','0','','2082d12ff9c54a5ea709dba05c14ae00',''), ('22685','{31940}=3','HPE MSA 2040 Storage: Controller [{#CONTROLLER.ID}]: Controller health is in unknown state','','0','1','Controller health is in unknown state.',NULL,'0','2','0','','0','','0','','0','','0b2ed99c47a64210b198cc0a3a6b84b5',''), ('22686','{31941}=1','HPE MSA 2040 Storage: Controller [{#CONTROLLER.ID}]: Controller is down','','0','4','The controller is down.',NULL,'0','2','0','','0','','0','','0','','1524e80a37cb4b64a7360488e132a433',''), ('22687','{31942}<10m','HPE MSA 2040 Storage: Controller [{#CONTROLLER.ID}]: Controller has been restarted','','0','2','The controller uptime is less than 10 minutes.',NULL,'0','2','0','','0','','0','','0','HPE MSA 2040 Storage: Controller [{#CONTROLLER.ID}]: Controller has been restarted (uptime < 10m)','136bb1ccd4114a529a99ddbf803fd974',''), ('22688','{31943}=1','HPE MSA 2040 Storage: Disk [{#DURABLE.ID}]: Disk health is in degraded state','','0','2','Disk health is in degraded state.',NULL,'0','2','0','','0','','0','','0','','58d2da30bfe74d05ad05e0b286fe0fae',''), ('22689','{31944}=2','HPE MSA 2040 Storage: Disk [{#DURABLE.ID}]: Disk health is in fault state','','0','3','Disk health is in fault state.',NULL,'0','2','0','','0','','0','','0','','1f0e81d23e1e423ba885425f33773f5b',''), ('22690','{31945}=3','HPE MSA 2040 Storage: Disk [{#DURABLE.ID}]: Disk health is in unknown state','','0','1','Disk health is in unknown state.',NULL,'0','2','0','','0','','0','','0','','dc75dd0456a145b3ab0646c9403caeb6',''), ('22691','{31946}=2','HPE MSA 2040 Storage: Disk [{#DURABLE.ID}]: Disk temperature is critically high','','0','3','Disk temperature is critically high.',NULL,'0','2','0','','0','','0','','0','','b194f7b133274552823b66e44c88bd02',''), ('22692','{31947}=3','HPE MSA 2040 Storage: Disk [{#DURABLE.ID}]: Disk temperature is high','','0','2','Disk temperature is high.',NULL,'0','2','0','','0','','0','','0','','aaabacd5f5194378b6c8388e2ef90abe',''), ('22693','{31948}=4','HPE MSA 2040 Storage: Disk [{#DURABLE.ID}]: Disk temperature is unknown','','0','1','Disk temperature is unknown.',NULL,'0','2','0','','0','','0','','0','','60d0fc661aa140798f937a63fdd6e5f9',''), ('22694','{31949}>{$HPE.MSA.DISKS.GROUP.PUSED.MAX.CRIT:"{#NAME}"}','HPE MSA 2040 Storage: Disk group [{#NAME}]: Disk group space is critically low','','0','3','Disk group is running low on free space (less than {$HPE.MSA.DISKS.GROUP.PUSED.MAX.CRIT:"{#NAME}"}% available).',NULL,'0','2','0','','0','','0','','0','HPE MSA 2040 Storage: Disk group [{#NAME}]: Disk group space is critically low (used > {$HPE.MSA.DISKS.GROUP.PUSED.MAX.CRIT:"{#NAME}"}%)','d6494d79dae94aeda2b78169f8960224',''), ('22695','{31950}>{$HPE.MSA.DISKS.GROUP.PUSED.MAX.WARN:"{#NAME}"}','HPE MSA 2040 Storage: Disk group [{#NAME}]: Disk group space is low','','0','2','Disk group is running low on free space (less than {$HPE.MSA.DISKS.GROUP.PUSED.MAX.WARN:"{#NAME}"}% available).',NULL,'0','2','0','','0','','0','','0','HPE MSA 2040 Storage: Disk group [{#NAME}]: Disk group space is low (used > {$HPE.MSA.DISKS.GROUP.PUSED.MAX.WARN:"{#NAME}"}%)','ea04be93082640709ec6e58ae640575c',''), ('22696','{31951}=1','HPE MSA 2040 Storage: Disk group [{#NAME}]: Disk group health is in degraded state','','0','2','Disk group health is in degraded state.',NULL,'0','2','0','','0','','0','','0','','ad99b0f4a6b14b1d9819ab63376e11e7',''), ('22697','{31952}=2','HPE MSA 2040 Storage: Disk group [{#NAME}]: Disk group health is in fault state','','0','3','Disk group health is in fault state.',NULL,'0','2','0','','0','','0','','0','','28f69da63b024079b8953165da6cbfdc',''), ('22698','{31953}=3','HPE MSA 2040 Storage: Disk group [{#NAME}]: Disk group health is in unknown state','','0','1','Disk group health is in unknown state.',NULL,'0','2','0','','0','','0','','0','','94695c4222c94bd1b12d9ecb4b21e628',''), ('22699','{31954}=9','HPE MSA 2040 Storage: Disk group [{#NAME}]: Disk group has damaged disks','','0','3','The disk group is online and fault tolerant, but some of it''s disks are damaged.',NULL,'0','2','0','','0','','0','','0','','9bbf1f8a67564b769db5921a2023defd',''), ('22700','{31955}=8','HPE MSA 2040 Storage: Disk group [{#NAME}]: Disk group has missing disks','','0','3','The disk group is online and fault tolerant, but some of it''s disks are missing.',NULL,'0','2','0','','0','','0','','0','','d4d5a63b514d4f1aaff9e8c68db9026e',''), ('22701','{31956}=1','HPE MSA 2040 Storage: Disk group [{#NAME}]: Disk group is fault tolerant with a down disk','','0','3','The disk group is online and fault tolerant, but some of it''s disks are down.',NULL,'0','2','0','','0','','0','','0','','26b5b53b33c940d5a642ea13d670bf55',''), ('22702','{31957}=3','HPE MSA 2040 Storage: Disk group [{#NAME}]: Disk group is offline','','0','3','Either the disk group is using offline initialization, or it''s disks are down and data may be lost.',NULL,'0','2','0','','0','','0','','0','','b1e7e080f7264ae0be323a500abc211f',''), ('22703','{31958}=4','HPE MSA 2040 Storage: Disk group [{#NAME}]: Disk group is quarantined critical','','0','3','The disk group is critical with at least one inaccessible disk. For example, two disks are inaccessible in a RAID 6 disk group or one disk is inaccessible for other fault-tolerant RAID levels. If the inaccessible disks come online or if after 60 seconds from being quarantined the disk group is QTCRor QTDN, the disk group is automatically dequarantined.',NULL,'0','2','0','','0','','0','','0','','b8b5b248c275453d91c214c19d01f5d9',''), ('22704','{31959}=5','HPE MSA 2040 Storage: Disk group [{#NAME}]: Disk group is quarantined offline','','0','3','The disk group is offline with multiple inaccessible disks causing user data to be incomplete, or is an NRAID or RAID 0 disk group.',NULL,'0','2','0','','0','','0','','0','','bc1c2bbfffd541998099e695f9c98386',''), ('22705','{31960}=5','HPE MSA 2040 Storage: Disk group [{#NAME}]: Disk group is quarantined unsupported','','0','3','The disk group contains data in a format that is not supported by this system. For example, this system does not support linear disk groups.',NULL,'0','2','0','','0','','0','','0','','7c4981f0b0fb4a3891b8a410501224d0',''), ('22706','{31961}=6','HPE MSA 2040 Storage: Disk group [{#NAME}]: Disk group is quarantined with an inaccessible disk','','0','3','The RAID6 disk group has one inaccessible disk. The disk group is fault tolerant but degraded. If the inaccessible disks come online or if after 60 seconds from being quarantined the disk group is QTCRor QTDN, the disk group is automatically dequarantined.',NULL,'0','2','0','','0','','0','','0','','9e762711ecf54f8691e6be32a3e92738',''), ('22707','{31962}=7','HPE MSA 2040 Storage: Disk group [{#NAME}]: Disk group is stopped','','0','3','The disk group is stopped.',NULL,'0','2','0','','0','','0','','0','','191dbf4bdd294add8ed0815c21f6eadb',''), ('22708','{31963}=2','HPE MSA 2040 Storage: Disk group [{#NAME}]: Disk group status is critical','','0','3','The disk group is online but isn''t fault tolerant because some of its disks are down.',NULL,'0','2','0','','0','','0','','0','','05480e1bc3ff4e7a8c5a20286d6f306c',''), ('22709','{31964}=1','HPE MSA 2040 Storage: Enclosure [{#DURABLE.ID}]: Enclosure health is in degraded state','','0','2','Enclosure health is in degraded state.',NULL,'0','2','0','','0','','0','','0','','934c5f9e2d19499fab1d88ff9a36c9c9',''), ('22710','{31965}=2','HPE MSA 2040 Storage: Enclosure [{#DURABLE.ID}]: Enclosure health is in fault state','','0','3','Enclosure health is in fault state.',NULL,'0','2','0','','0','','0','','0','','3d06d5ce761c42e983a5eec029bb671e',''), ('22711','{31966}=3','HPE MSA 2040 Storage: Enclosure [{#DURABLE.ID}]: Enclosure health is in unknown state','','0','1','Enclosure health is in unknown state.',NULL,'0','2','0','','0','','0','','0','','df1275bd16434b1ca77749930e1af3f8',''), ('22712','{31967}=2','HPE MSA 2040 Storage: Enclosure [{#DURABLE.ID}]: Enclosure has critical status','','0','4','Enclosure has critical status.',NULL,'0','2','0','','0','','0','','0','','db8329f956d94e74bb6379b29a000bf0',''), ('22713','{31968}=6','HPE MSA 2040 Storage: Enclosure [{#DURABLE.ID}]: Enclosure has unknown status','','0','1','Enclosure has unknown status.',NULL,'0','2','0','','0','','0','','0','','6a32b4a08bfb49939633b42a16041c7f',''), ('22714','{31969}=3','HPE MSA 2040 Storage: Enclosure [{#DURABLE.ID}]: Enclosure has warning status','','0','2','Enclosure has warning status.',NULL,'0','2','0','','0','','0','','0','','2fd78acd77804a1f8a474c973bf5c93e',''), ('22715','{31970}=7','HPE MSA 2040 Storage: Enclosure [{#DURABLE.ID}]: Enclosure is unavailable','','0','4','Enclosure is unavailable.',NULL,'0','2','0','','0','','0','','0','','8cecd9a3ecf14931b8b3ccffff4a4615',''), ('22716','{31971}=4','HPE MSA 2040 Storage: Enclosure [{#DURABLE.ID}]: Enclosure is unrecoverable','','0','4','Enclosure is unrecoverable.',NULL,'0','2','0','','0','','0','','0','','458cfb2a9dfb476dae940b66342b12bf',''), ('22717','{31972}=1','HPE MSA 2040 Storage: Fan [{#DURABLE.ID}]: Fan health is in degraded state','','0','2','Fan health is in degraded state.',NULL,'0','2','0','','0','','0','','0','','377a9c494a5443c0ba694ab78683da17',''), ('22718','{31973}=2','HPE MSA 2040 Storage: Fan [{#DURABLE.ID}]: Fan health is in fault state','','0','3','Fan health is in fault state.',NULL,'0','2','0','','0','','0','','0','','4446cef7b06140e3a29018944201ebd7',''), ('22719','{31974}=3','HPE MSA 2040 Storage: Fan [{#DURABLE.ID}]: Fan health is in unknown state','','0','1','Fan health is in unknown state.',NULL,'0','2','0','','0','','0','','0','','3273a1f3595046e69ef6c74ac6f56eeb',''), ('22720','{31975}=1','HPE MSA 2040 Storage: Fan [{#DURABLE.ID}]: Fan has error status','','0','3','Fan has error status.',NULL,'0','2','0','','0','','0','','0','','f8afe70029aa4cdfb1f68452eea27986',''), ('22721','{31976}=3','HPE MSA 2040 Storage: Fan [{#DURABLE.ID}]: Fan is missing','','0','1','Fan is missing.',NULL,'0','2','0','','0','','0','','0','','8ad445006c51474fbee30a70971a97a5',''), ('22722','{31977}=2','HPE MSA 2040 Storage: Fan [{#DURABLE.ID}]: Fan is off','','0','2','Fan is off.',NULL,'0','2','0','','0','','0','','0','','fabe4e0bde194675a089db45125428b6',''), ('22723','{31978}=0','HPE MSA 2040 Storage: FRU [{#ENCLOSURE.ID}: {#LOCATION}]: FRU ID data is invalid','','0','2','The FRU ID data is invalid. The FRU''s EEPROM is improperly programmed.',NULL,'0','2','0','','0','','0','','0','','8182ee0edeb94f4a845c7eda047718c8',''), ('22724','{31979}=1','HPE MSA 2040 Storage: FRU [{#ENCLOSURE.ID}: {#LOCATION}]: FRU status is Degraded or Fault','','0','3','FRU status is Degraded or Fault.',NULL,'0','2','0','','0','','0','','0','','8bef225423a548c3a289c67c40ffd906',''), ('22725','{31980}>{$HPE.MSA.POOL.PUSED.MAX.CRIT:"{#NAME}"}','HPE MSA 2040 Storage: Pool [{#NAME}]: Pool space is critically low','','0','3','Pool is running low on free space (less than {$HPE.MSA.POOL.PUSED.MAX.CRIT:"{#NAME}"}% available).',NULL,'0','2','0','','0','','0','','0','HPE MSA 2040 Storage: Pool [{#NAME}]: Pool space is critically low (used > {$HPE.MSA.POOL.PUSED.MAX.CRIT:"{#NAME}"}%)','042ac4fedb00485c8c6f48016182b9dd',''), ('22726','{31981}>{$HPE.MSA.POOL.PUSED.MAX.WARN:"{#NAME}"}','HPE MSA 2040 Storage: Pool [{#NAME}]: Pool space is low','','0','2','Pool is running low on free space (less than {$HPE.MSA.POOL.PUSED.MAX.WARN:"{#NAME}"}% available).',NULL,'0','2','0','','0','','0','','0','HPE MSA 2040 Storage: Pool [{#NAME}]: Pool space is low (used > {$HPE.MSA.POOL.PUSED.MAX.WARN:"{#NAME}"}%)','f4c7a9ed832d4668be64acf9da3c9814',''), ('22727','{31982}=1','HPE MSA 2040 Storage: Pool [{#NAME}]: Pool health is in degraded state','','0','2','Pool health is in degraded state.',NULL,'0','2','0','','0','','0','','0','','7af3ccbf497c44adb907b6d15ecebe33',''), ('22728','{31983}=2','HPE MSA 2040 Storage: Pool [{#NAME}]: Pool health is in fault state','','0','3','Pool health is in fault state.',NULL,'0','2','0','','0','','0','','0','','093fa03c7c3f4ac4adbd3234bf6007a0',''), ('22729','{31984}=3','HPE MSA 2040 Storage: Pool [{#NAME}]: Pool health is in unknown state','','0','1','Pool [{#NAME}] health is in unknown state.',NULL,'0','2','0','','0','','0','','0','','2af3a0092d57420c95bf82adc39eae5f',''), ('22730','{31985}=1','HPE MSA 2040 Storage: Port [{#NAME}]: Port health is in degraded state','','0','2','Port health is in degraded state.',NULL,'0','2','0','','0','','0','','0','','266d310dc71e4c60977668e330eec8df',''), ('22731','{31986}=2','HPE MSA 2040 Storage: Port [{#NAME}]: Port health is in fault state','','0','3','Port health is in fault state.',NULL,'0','2','0','','0','','0','','0','','19a02ecfb5d242ff85e233961cc4a384',''), ('22732','{31987}=3','HPE MSA 2040 Storage: Port [{#NAME}]: Port health is in unknown state','','0','1','Port health is in unknown state.',NULL,'0','2','0','','0','','0','','0','','8461e41fdd2944f08d3b95c63df0fa9f',''), ('22733','{31988}=2','HPE MSA 2040 Storage: Port [{#NAME}]: Port has error status','','0','3','Port has error status.',NULL,'0','2','0','','0','','0','','0','','7ff86d50c241496d9bfa54359e17222e',''), ('22734','{31989}=4','HPE MSA 2040 Storage: Port [{#NAME}]: Port has unknown status','','0','1','Port has unknown status.',NULL,'0','2','0','','0','','0','','0','','bdad67d08b92447e9964ea6362c0989c',''), ('22735','{31990}=1','HPE MSA 2040 Storage: Port [{#NAME}]: Port has warning status','','0','2','Port has warning status.',NULL,'0','2','0','','0','','0','','0','','95ba19413bca495aba96f32fa91bc54b',''), ('22736','{31991}=1','HPE MSA 2040 Storage: Power supply [{#DURABLE.ID}]: Power supply health is in degraded state','','0','2','Power supply health is in degraded state.',NULL,'0','2','0','','0','','0','','0','','2394f69a635a4072bd96494b8df8ae3e',''), ('22737','{31992}=2','HPE MSA 2040 Storage: Power supply [{#DURABLE.ID}]: Power supply health is in fault state','','0','3','Power supply health is in fault state.',NULL,'0','2','0','','0','','0','','0','','f390553cfe4646e0ab9a4fd9cab20886',''), ('22738','{31993}=3','HPE MSA 2040 Storage: Power supply [{#DURABLE.ID}]: Power supply health is in unknown state','','0','1','Power supply health is in unknown state.',NULL,'0','2','0','','0','','0','','0','','9499fbdcc6a946138fb6cd69d8be9a00',''), ('22739','{31994}=2','HPE MSA 2040 Storage: Power supply [{#DURABLE.ID}]: Power supply has error status','','0','3','Power supply has error status.',NULL,'0','2','0','','0','','0','','0','','28896e70b14f463aae8c8af4786e52ff',''), ('22740','{31995}=4','HPE MSA 2040 Storage: Power supply [{#DURABLE.ID}]: Power supply has unknown status','','0','1','Power supply has unknown status.',NULL,'0','2','0','','0','','0','','0','','ac6b0d55fbac4f338261f6a90b68e5b0',''), ('22741','{31996}=1','HPE MSA 2040 Storage: Power supply [{#DURABLE.ID}]: Power supply has warning status','','0','2','Power supply has warning status.',NULL,'0','2','0','','0','','0','','0','','c9cddccdeed34aa4a533f0ad07aab5ae',''), ('22742','length({31997})>0','HPE MSA 2060 Storage: There are errors in method requests to API','','0','3','There are errors in method requests to API.',NULL,'0','0','0','','0','','0','','0','','2133ddf10a3641d78e609948d6842687',''), ('22743','{31998}=1','HPE MSA 2060 Storage: System health is in degraded state','','0','2','System health is in degraded state.',NULL,'0','0','0','','0','','0','','0','','49e8c1d8a14f40b5acb2723e370ccccb',''), ('22744','{31999}=2','HPE MSA 2060 Storage: System health is in fault state','','0','3','System health is in fault state.',NULL,'0','0','0','','0','','0','','0','','2709a971f2ce417d8e269a0e5ebdd964',''), ('22745','{32000}=3','HPE MSA 2060 Storage: System health is in unknown state','','0','1','System health is in unknown state.',NULL,'0','0','0','','0','','0','','0','','fa35428a4f41453984bd0bfa566e0674',''), ('22746','{32001}=0','HPE MSA 2060 Storage: Service is down or unavailable','','0','4','HTTP/HTTPS service is down or unable to establish TCP connection.',NULL,'0','0','0','','0','','0','','0','','9c1bf26f95d946f386bbf613d3d55779',''), ('22747','{32002}>{$HPE.MSA.CONTROLLER.CPU.UTIL.CRIT}','HPE MSA 2060 Storage: Controller [{#CONTROLLER.ID}]: High CPU utilization','','0','2','Controller CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','','0','HPE MSA 2060 Storage: Controller [{#CONTROLLER.ID}]: High CPU utilization (over {$HPE.MSA.CONTROLLER.CPU.UTIL.CRIT}% for 5m)','0bf68b46b7644ad5ad0123df49c1da35',''), ('22748','{32003}=1','HPE MSA 2060 Storage: Controller [{#CONTROLLER.ID}]: Controller health is in degraded state','','0','2','Controller health is in degraded state.',NULL,'0','2','0','','0','','0','','0','','3988a5b897a34c84952fa573d7019879',''), ('22749','{32004}=2','HPE MSA 2060 Storage: Controller [{#CONTROLLER.ID}]: Controller health is in fault state','','0','3','Controller health is in fault state.',NULL,'0','2','0','','0','','0','','0','','7256e023ac82427bb6ee923d4ff07786',''), ('22750','{32005}=3','HPE MSA 2060 Storage: Controller [{#CONTROLLER.ID}]: Controller health is in unknown state','','0','1','Controller health is in unknown state.',NULL,'0','2','0','','0','','0','','0','','15bc89e6c61549caaf5a66c85446ea9d',''), ('22751','{32006}=1','HPE MSA 2060 Storage: Controller [{#CONTROLLER.ID}]: Controller is down','','0','4','The controller is down.',NULL,'0','2','0','','0','','0','','0','','99de4f8de416485db5c3844d1c8d654b',''), ('22752','{32007}<10m','HPE MSA 2060 Storage: Controller [{#CONTROLLER.ID}]: Controller has been restarted','','0','2','The controller uptime is less than 10 minutes.',NULL,'0','2','0','','0','','0','','0','HPE MSA 2060 Storage: Controller [{#CONTROLLER.ID}]: Controller has been restarted (uptime < 10m)','255250aa4b75465a989bf8f3fd805667',''), ('22753','{32008}=1','HPE MSA 2060 Storage: Disk [{#DURABLE.ID}]: Disk health is in degraded state','','0','2','Disk health is in degraded state.',NULL,'0','2','0','','0','','0','','0','','f76f8eec05a94e2db9d4cd3bcbb43aa4',''), ('22754','{32009}=2','HPE MSA 2060 Storage: Disk [{#DURABLE.ID}]: Disk health is in fault state','','0','3','Disk health is in fault state.',NULL,'0','2','0','','0','','0','','0','','383181e44a114334ab28ff09f49b2d51',''), ('22755','{32010}=3','HPE MSA 2060 Storage: Disk [{#DURABLE.ID}]: Disk health is in unknown state','','0','1','Disk health is in unknown state.',NULL,'0','2','0','','0','','0','','0','','2b2d78c6c29f4bd58eff632809dee978',''), ('22756','{32011}=2','HPE MSA 2060 Storage: Disk [{#DURABLE.ID}]: Disk temperature is critically high','','0','3','Disk temperature is critically high.',NULL,'0','2','0','','0','','0','','0','','d4b8f77421d744918e087f696b3f0fff',''), ('22757','{32012}=3','HPE MSA 2060 Storage: Disk [{#DURABLE.ID}]: Disk temperature is high','','0','2','Disk temperature is high.',NULL,'0','2','0','','0','','0','','0','','fbbac4048fda477a99f00566624b6bdb',''), ('22758','{32013}=4','HPE MSA 2060 Storage: Disk [{#DURABLE.ID}]: Disk temperature is unknown','','0','1','Disk temperature is unknown.',NULL,'0','2','0','','0','','0','','0','','41e4f00446304206804da350a88ce3b9',''), ('22759','{32014}>{$HPE.MSA.DISKS.GROUP.PUSED.MAX.CRIT:"{#NAME}"}','HPE MSA 2060 Storage: Disk group [{#NAME}]: Disk group space is critically low','','0','3','Disk group is running low on free space (less than {$HPE.MSA.DISKS.GROUP.PUSED.MAX.CRIT:"{#NAME}"}% available).',NULL,'0','2','0','','0','','0','','0','HPE MSA 2060 Storage: Disk group [{#NAME}]: Disk group space is critically low (used > {$HPE.MSA.DISKS.GROUP.PUSED.MAX.CRIT:"{#NAME}"}%)','df1af9dad6444821a86a26158469d0cb',''), ('22760','{32015}>{$HPE.MSA.DISKS.GROUP.PUSED.MAX.WARN:"{#NAME}"}','HPE MSA 2060 Storage: Disk group [{#NAME}]: Disk group space is low','','0','2','Disk group is running low on free space (less than {$HPE.MSA.DISKS.GROUP.PUSED.MAX.WARN:"{#NAME}"}% available).',NULL,'0','2','0','','0','','0','','0','HPE MSA 2060 Storage: Disk group [{#NAME}]: Disk group space is low (used > {$HPE.MSA.DISKS.GROUP.PUSED.MAX.WARN:"{#NAME}"}%)','713960711c324dc780998f8f263344a2',''), ('22761','{32016}=1','HPE MSA 2060 Storage: Disk group [{#NAME}]: Disk group health is in degraded state','','0','2','Disk group health is in degraded state.',NULL,'0','2','0','','0','','0','','0','','7899b8a15b5042f3a4467a7cdee4c6ae',''), ('22762','{32017}=2','HPE MSA 2060 Storage: Disk group [{#NAME}]: Disk group health is in fault state','','0','3','Disk group health is in fault state.',NULL,'0','2','0','','0','','0','','0','','e7c6a3b20c424196854a5437aba4c3ec',''), ('22763','{32018}=3','HPE MSA 2060 Storage: Disk group [{#NAME}]: Disk group health is in unknown state','','0','1','Disk group health is in unknown state.',NULL,'0','2','0','','0','','0','','0','','177dd9d1cfa54b3e8c9e6479cb96af03',''), ('22764','{32019}=9','HPE MSA 2060 Storage: Disk group [{#NAME}]: Disk group has damaged disks','','0','3','The disk group is online and fault tolerant, but some of it''s disks are damaged.',NULL,'0','2','0','','0','','0','','0','','8deee88d964846598d5574d197694b17',''), ('22765','{32020}=8','HPE MSA 2060 Storage: Disk group [{#NAME}]: Disk group has missing disks','','0','3','The disk group is online and fault tolerant, but some of it''s disks are missing.',NULL,'0','2','0','','0','','0','','0','','c615e1bb1c824e7ba109b8a6580eb9b9',''), ('22766','{32021}=1','HPE MSA 2060 Storage: Disk group [{#NAME}]: Disk group is fault tolerant with a down disk','','0','3','The disk group is online and fault tolerant, but some of it''s disks are down.',NULL,'0','2','0','','0','','0','','0','','bead3a0bb95342b3b3ceae7becff99b8',''), ('22767','{32022}=3','HPE MSA 2060 Storage: Disk group [{#NAME}]: Disk group is offline','','0','3','Either the disk group is using offline initialization, or it''s disks are down and data may be lost.',NULL,'0','2','0','','0','','0','','0','','c89466e00c2b40c1933fde60332a428a',''), ('22768','{32023}=4','HPE MSA 2060 Storage: Disk group [{#NAME}]: Disk group is quarantined critical','','0','3','The disk group is critical with at least one inaccessible disk. For example, two disks are inaccessible in a RAID 6 disk group or one disk is inaccessible for other fault-tolerant RAID levels. If the inaccessible disks come online or if after 60 seconds from being quarantined the disk group is QTCRor QTDN, the disk group is automatically dequarantined.',NULL,'0','2','0','','0','','0','','0','','3dc5b3bc1128451491217639cf4e5115',''), ('22769','{32024}=5','HPE MSA 2060 Storage: Disk group [{#NAME}]: Disk group is quarantined offline','','0','3','The disk group is offline with multiple inaccessible disks causing user data to be incomplete, or is an NRAID or RAID 0 disk group.',NULL,'0','2','0','','0','','0','','0','','6892c8c05331497ab37db2b2fe3673a1',''), ('22770','{32025}=5','HPE MSA 2060 Storage: Disk group [{#NAME}]: Disk group is quarantined unsupported','','0','3','The disk group contains data in a format that is not supported by this system. For example, this system does not support linear disk groups.',NULL,'0','2','0','','0','','0','','0','','8a8bda977e11462a906fd200f1b67a72',''), ('22771','{32026}=6','HPE MSA 2060 Storage: Disk group [{#NAME}]: Disk group is quarantined with an inaccessible disk','','0','3','The RAID6 disk group has one inaccessible disk. The disk group is fault tolerant but degraded. If the inaccessible disks come online or if after 60 seconds from being quarantined the disk group is QTCRor QTDN, the disk group is automatically dequarantined.',NULL,'0','2','0','','0','','0','','0','','21f06dd8f8de49f58a64a638d24ff905',''), ('22772','{32027}=7','HPE MSA 2060 Storage: Disk group [{#NAME}]: Disk group is stopped','','0','3','The disk group is stopped.',NULL,'0','2','0','','0','','0','','0','','1914fede726744829b2e41392b957857',''), ('22773','{32028}=2','HPE MSA 2060 Storage: Disk group [{#NAME}]: Disk group status is critical','','0','3','The disk group is online but isn''t fault tolerant because some of its disks are down.',NULL,'0','2','0','','0','','0','','0','','a79a6cf86bd44f55a7859808f632bf48',''), ('22774','{32029}=1','HPE MSA 2060 Storage: Enclosure [{#DURABLE.ID}]: Enclosure health is in degraded state','','0','2','Enclosure health is in degraded state.',NULL,'0','2','0','','0','','0','','0','','d15d460b8c924f609f5cdd055060f8ce',''), ('22775','{32030}=2','HPE MSA 2060 Storage: Enclosure [{#DURABLE.ID}]: Enclosure health is in fault state','','0','3','Enclosure health is in fault state.',NULL,'0','2','0','','0','','0','','0','','7c2f6a7efbf245298c3ee0b137718dc8',''), ('22776','{32031}=3','HPE MSA 2060 Storage: Enclosure [{#DURABLE.ID}]: Enclosure health is in unknown state','','0','1','Enclosure health is in unknown state.',NULL,'0','2','0','','0','','0','','0','','6732ced099d748daa5cbdf6d97580efd',''), ('22777','{32032}=2','HPE MSA 2060 Storage: Enclosure [{#DURABLE.ID}]: Enclosure has critical status','','0','4','Enclosure has critical status.',NULL,'0','2','0','','0','','0','','0','','ef763c350b2e4d20bdecbe50703ec8dd',''), ('22778','{32033}=6','HPE MSA 2060 Storage: Enclosure [{#DURABLE.ID}]: Enclosure has unknown status','','0','1','Enclosure has unknown status.',NULL,'0','2','0','','0','','0','','0','','e3a7198f287e4600a0abfa929ee183de',''), ('22779','{32034}=3','HPE MSA 2060 Storage: Enclosure [{#DURABLE.ID}]: Enclosure has warning status','','0','2','Enclosure has warning status.',NULL,'0','2','0','','0','','0','','0','','27ba4d2474604caaa2712222cf621294',''), ('22780','{32035}=7','HPE MSA 2060 Storage: Enclosure [{#DURABLE.ID}]: Enclosure is unavailable','','0','4','Enclosure is unavailable.',NULL,'0','2','0','','0','','0','','0','','53b61c7521d94161b063a5ea506b5466',''), ('22781','{32036}=4','HPE MSA 2060 Storage: Enclosure [{#DURABLE.ID}]: Enclosure is unrecoverable','','0','4','Enclosure is unrecoverable.',NULL,'0','2','0','','0','','0','','0','','2218d1bf55aa4db0968dab804c0687e3',''), ('22782','{32037}=1','HPE MSA 2060 Storage: Fan [{#DURABLE.ID}]: Fan health is in degraded state','','0','2','Fan health is in degraded state.',NULL,'0','2','0','','0','','0','','0','','3ee1b1d0d6b34c8eba02480e9e4d5be2',''), ('22783','{32038}=2','HPE MSA 2060 Storage: Fan [{#DURABLE.ID}]: Fan health is in fault state','','0','3','Fan health is in fault state.',NULL,'0','2','0','','0','','0','','0','','3e3785f9915d46068ebe2eff21bac813',''), ('22784','{32039}=3','HPE MSA 2060 Storage: Fan [{#DURABLE.ID}]: Fan health is in unknown state','','0','1','Fan health is in unknown state.',NULL,'0','2','0','','0','','0','','0','','4bf2e519b5484d338f997ea5dac462e0',''), ('22785','{32040}=1','HPE MSA 2060 Storage: Fan [{#DURABLE.ID}]: Fan has error status','','0','3','Fan has error status.',NULL,'0','2','0','','0','','0','','0','','183a1e1c4d444c9a8189035a2af22dc1',''), ('22786','{32041}=3','HPE MSA 2060 Storage: Fan [{#DURABLE.ID}]: Fan is missing','','0','1','Fan is missing.',NULL,'0','2','0','','0','','0','','0','','4d9e3d1bb22444f981295df07f0d9c24',''), ('22787','{32042}=2','HPE MSA 2060 Storage: Fan [{#DURABLE.ID}]: Fan is off','','0','2','Fan is off.',NULL,'0','2','0','','0','','0','','0','','a6e4ea796b98432284a9fd9fff1d82f9',''), ('22788','{32043}=0','HPE MSA 2060 Storage: FRU [{#ENCLOSURE.ID}: {#LOCATION}]: FRU ID data is invalid','','0','2','The FRU ID data is invalid. The FRU''s EEPROM is improperly programmed.',NULL,'0','2','0','','0','','0','','0','','2533eb2e4344494d9ec72629dab7b1a8',''), ('22789','{32044}=1','HPE MSA 2060 Storage: FRU [{#ENCLOSURE.ID}: {#LOCATION}]: FRU status is Degraded or Fault','','0','3','FRU status is Degraded or Fault.',NULL,'0','2','0','','0','','0','','0','','7a994469e45f467c8582c24258d0eb75',''), ('22790','{32045}>{$HPE.MSA.POOL.PUSED.MAX.CRIT:"{#NAME}"}','HPE MSA 2060 Storage: Pool [{#NAME}]: Pool space is critically low','','0','3','Pool is running low on free space (less than {$HPE.MSA.POOL.PUSED.MAX.CRIT:"{#NAME}"}% available).',NULL,'0','2','0','','0','','0','','0','HPE MSA 2060 Storage: Pool [{#NAME}]: Pool space is critically low (used > {$HPE.MSA.POOL.PUSED.MAX.CRIT:"{#NAME}"}%)','c73b4a77e94a43f5951f6a541d65637e',''), ('22791','{32046}>{$HPE.MSA.POOL.PUSED.MAX.WARN:"{#NAME}"}','HPE MSA 2060 Storage: Pool [{#NAME}]: Pool space is low','','0','2','Pool is running low on free space (less than {$HPE.MSA.POOL.PUSED.MAX.WARN:"{#NAME}"}% available).',NULL,'0','2','0','','0','','0','','0','HPE MSA 2060 Storage: Pool [{#NAME}]: Pool space is low (used > {$HPE.MSA.POOL.PUSED.MAX.WARN:"{#NAME}"}%)','c7644beb62bc40e99d6045af6d4bc16f',''), ('22792','{32047}=1','HPE MSA 2060 Storage: Pool [{#NAME}]: Pool health is in degraded state','','0','2','Pool health is in degraded state.',NULL,'0','2','0','','0','','0','','0','','20723e93add44447a5cab3c8cc4849a6',''), ('22793','{32048}=2','HPE MSA 2060 Storage: Pool [{#NAME}]: Pool health is in fault state','','0','3','Pool health is in fault state.',NULL,'0','2','0','','0','','0','','0','','1881bd0efca04c58a56effb8e232e734',''), ('22794','{32049}=3','HPE MSA 2060 Storage: Pool [{#NAME}]: Pool health is in unknown state','','0','1','Pool [{#NAME}] health is in unknown state.',NULL,'0','2','0','','0','','0','','0','','62db05047b5a4b8797eee5667bb3bdf4',''), ('22795','{32050}=1','HPE MSA 2060 Storage: Port [{#NAME}]: Port health is in degraded state','','0','2','Port health is in degraded state.',NULL,'0','2','0','','0','','0','','0','','9775011d59a846669087e6c90c4a011a',''), ('22796','{32051}=2','HPE MSA 2060 Storage: Port [{#NAME}]: Port health is in fault state','','0','3','Port health is in fault state.',NULL,'0','2','0','','0','','0','','0','','a5dec537528f42e0948ea15f1a290f26',''), ('22797','{32052}=3','HPE MSA 2060 Storage: Port [{#NAME}]: Port health is in unknown state','','0','1','Port health is in unknown state.',NULL,'0','2','0','','0','','0','','0','','7025a0e6c93e4731be966c2a9e774581',''), ('22798','{32053}=2','HPE MSA 2060 Storage: Port [{#NAME}]: Port has error status','','0','3','Port has error status.',NULL,'0','2','0','','0','','0','','0','','c1d2f824a3d4470abb6817753b1d4047',''), ('22799','{32054}=4','HPE MSA 2060 Storage: Port [{#NAME}]: Port has unknown status','','0','1','Port has unknown status.',NULL,'0','2','0','','0','','0','','0','','6083cdfcb59848a6b5249147155996c2',''), ('22800','{32055}=1','HPE MSA 2060 Storage: Port [{#NAME}]: Port has warning status','','0','2','Port has warning status.',NULL,'0','2','0','','0','','0','','0','','dd32b960ce1544d880d94b2da4dba03e',''), ('22801','{32056}=1','HPE MSA 2060 Storage: Power supply [{#DURABLE.ID}]: Power supply health is in degraded state','','0','2','Power supply health is in degraded state.',NULL,'0','2','0','','0','','0','','0','','1b512fda735440b5839a63fd26c19535',''), ('22802','{32057}=2','HPE MSA 2060 Storage: Power supply [{#DURABLE.ID}]: Power supply health is in fault state','','0','3','Power supply health is in fault state.',NULL,'0','2','0','','0','','0','','0','','b75fb541ae0e43cc9cdb86e07dc3e394',''), ('22803','{32058}=3','HPE MSA 2060 Storage: Power supply [{#DURABLE.ID}]: Power supply health is in unknown state','','0','1','Power supply health is in unknown state.',NULL,'0','2','0','','0','','0','','0','','555ee9ef33b54d029df2f17d5f899539',''), ('22804','{32059}=2','HPE MSA 2060 Storage: Power supply [{#DURABLE.ID}]: Power supply has error status','','0','3','Power supply has error status.',NULL,'0','2','0','','0','','0','','0','','49c9d2d61c45476da5564299b2eebdee',''), ('22805','{32060}=4','HPE MSA 2060 Storage: Power supply [{#DURABLE.ID}]: Power supply has unknown status','','0','1','Power supply has unknown status.',NULL,'0','2','0','','0','','0','','0','','d6cbaeb5aab84e5eb487af4bf319d640',''), ('22806','{32061}=1','HPE MSA 2060 Storage: Power supply [{#DURABLE.ID}]: Power supply has warning status','','0','2','Power supply has warning status.',NULL,'0','2','0','','0','','0','','0','','b7e85e7a6c254aba930d7704c58adf47',''), ('22807','length({32062})>0','HPE Primera: There are errors in requests to WSAPI','','0','3','Zabbix has received errors in requests to WSAPI.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','570d440e7ec9445585003208eca06e63',''), ('22808','{32063}=0','HPE Primera: Service is unavailable','','0','4','',NULL,'0','0','0','','0','','1','','0','','8e7aa46322c643878e509461dbb9169d',''), ('22809','{32064}=2','HPE Primera: CPG [{#NAME}]: Degraded','','0','3','CPG [{#NAME}] is in degraded state.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','32a29b7a4bf340ef8ab07a8db3bef309',''), ('22810','{32065}=3','HPE Primera: CPG [{#NAME}]: Failed','','0','4','CPG [{#NAME}] is in failed state.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','85c26e64c8074e8b9ab52f20394afeee',''), ('22811','{32066}=1','HPE Primera: Disk [{#POSITION}]: Path A0 degraded','','0','3','Disk [{#POSITION}] path A0 in degraded state.',NULL,'0','2','0','','0','','0','','0','','f1672a33f9404216a1ffdbe3fcefd0bf',''), ('22812','{32067}=1','HPE Primera: Disk [{#POSITION}]: Path A1 degraded','','0','3','Disk [{#POSITION}] path A1 in degraded state.',NULL,'0','2','0','','0','','0','','0','','a28b1b4cdc5d4cb4afd9b7dd5e5f4f46',''), ('22813','{32068}=1','HPE Primera: Disk [{#POSITION}]: Path B0 degraded','','0','3','Disk [{#POSITION}] path B0 in degraded state.',NULL,'0','2','0','','0','','0','','0','','0ff32326e7784111842198ac6457c5cc',''), ('22814','{32069}=1','HPE Primera: Disk [{#POSITION}]: Path B1 degraded','','0','3','Disk [{#POSITION}] path B1 in degraded state.',NULL,'0','2','0','','0','','0','','0','','d55532408f3c40408dbd05671c66b5f3',''), ('22815','{32070}=2','HPE Primera: Disk [{#POSITION}]: Degraded','','0','3','Disk [{#POSITION}] in degraded state.',NULL,'0','2','0','','0','','0','','0','','d8991103e26b4ffea5fb64dc3519eb63',''), ('22816','{32071}=3','HPE Primera: Disk [{#POSITION}]: Failed','','0','4','Disk [{#POSITION}] in failed state.',NULL,'0','2','0','','0','','0','','0','','bc8c8281c3ac4742ba8f570a56753dd3',''), ('22817','{32072}=99','HPE Primera: Disk [{#POSITION}]: Unknown issue','','0','1','Disk [{#POSITION}] in unknown state.',NULL,'0','2','0','','0','','0','','0','','d4bda084df0b4a489fac08d1acae4e17',''), ('22818','{32073}<>1 and {32073}<>4','HPE Primera: Port [{#NODE}:{#SLOT}:{#CARD.PORT}]: Failover state is {ITEM.VALUE1}','','0','3','Port [{#NODE}:{#SLOT}:{#CARD.PORT}] has failover error.',NULL,'0','2','0','','0','','0','','0','','65f3f3b098984842b5246bfb5842bc78',''), ('22819','{32074}<>4 and {32074}<>1 and {32074}<>3 and {32074}<>13 and {32074}<>15 and {32074}<>16','HPE Primera: Port [{#NODE}:{#SLOT}:{#CARD.PORT}]: Link state is {ITEM.VALUE1}','','0','4','Port [{#NODE}:{#SLOT}:{#CARD.PORT}] not in ready state.',NULL,'0','2','0','','0','','0','','0','','c7ee19ea175d4c63a9ae67e0ab59253b',''), ('22820','{32075}=1 or {32075}=3 or {32075}=13 or {32075}=15 or {32075}=16','HPE Primera: Port [{#NODE}:{#SLOT}:{#CARD.PORT}]: Link state is {ITEM.VALUE1}','','0','3','Port [{#NODE}:{#SLOT}:{#CARD.PORT}] not in ready state.',NULL,'0','2','0','','0','','0','','0','','f0c8851f843e41dcb6820c943efcbe2f',''), ('22821','{32076}=3','HPE Primera: Task [{#NAME}]: Cancelled','','0','1','Task [{#NAME}] is cancelled.',NULL,'0','2','0','','0','','0','','0','','63340c376d86492198e00d7ae10f063c',''), ('22822','{32077}=4','HPE Primera: Task [{#NAME}]: Failed','','0','3','Task [{#NAME}] is failed.',NULL,'0','2','0','','0','','0','','0','','af326c0f259144d28ebeb60e19bae903',''), ('22823','{32078}=2','HPE Primera: Volume [{#NAME}]: Degraded','','0','3','Volume [{#NAME}] is in degraded state.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','c91920ca3ceb457cb9e2db0bb70d7fe0',''), ('22824','{32079}=3','HPE Primera: Volume [{#NAME}]: Failed','','0','4','Volume [{#NAME}] is in failed state.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','394b5bd072ac41acb0702601c5d5f049',''), ('22825','length({32080})>0','AWS EC2: Failed to get alarms data','','0','2','Failed to get CloudWatch alarms for EC2.',NULL,'0','0','0','','0','','0','','0','','1d017a1213fb4bc9896add10a2b97dd6',''), ('22826','{32081}<{$AWS.EC2.CPU.CREDIT.BALANCE.MIN.WARN}','AWS EC2: Instance CPU Credit balance is too low','','0','2','The number of earned CPU credits has been less than {$AWS.EC2.CPU.CREDIT.BALANCE.MIN.WARN} in the last 5 minutes.',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','AWS EC2: Instance CPU Credit balance is too low (less {$AWS.EC2.CPU.CREDIT.BALANCE.MIN.WARN} for 5m)','4e67cac1f58a478fb0e47c52b402fd92',''), ('22827','{32082}>{$AWS.EC2.CPU.CREDIT.SURPLUS.BALANCE.MAX.WARN}','AWS EC2: Instance has spent too many CPU surplus credits','','0','2','The number of spent surplus credits that are not paid down and which thus incur an additional charge is over {$AWS.EC2.CPU.CREDIT.SURPLUS.BALANCE.MAX.WARN}.',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','AWS EC2: Instance has spent too many CPU surplus credits (over {$AWS.EC2.CPU.CREDIT.SURPLUS.BALANCE.MAX.WARN} for 15m)''','644ace5510164f329d9af65bd0ed4f34',''), ('22828','{32083}>{$AWS.EC2.CPU.UTIL.WARN.MAX}','AWS EC2: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','AWS EC2: High CPU utilization (over {$AWS.EC2.CPU.UTIL.WARN.MAX}% for 15m)','ea74d00067874b609e4846847033058f',''), ('22829','{32084}<{$AWS.EBS.BYTE.CREDIT.BALANCE.MIN.WARN}','AWS EC2: Byte Credit balance is too low','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','AWS EC2: Byte Credit balance is too low (less {$AWS.EBS.BYTE.CREDIT.BALANCE.MIN.WARN}% for 5m)','27f3b00e295d4aeb9a2d0519e95da4e0',''), ('22830','{32085}<{$AWS.EBS.IO.CREDIT.BALANCE.MIN.WARN}','AWS EC2: I/O Credit balance is too low','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','AWS EC2: I/O Credit balance is too low (less {$AWS.EBS.IO.CREDIT.BALANCE.MIN.WARN}% for 5m)','f4b9c2238b5443eab31255422bc22d7d',''), ('22831','length({32086})>0','AWS EC2: Failed to get metrics data','','0','2','Failed to get CloudWatch metrics for EC2.',NULL,'0','0','0','','0','','0','','0','','c2cf3f875aa14416a108dd05df7b053a',''), ('22832','{32087}=1','AWS EC2: Instance status check failed','','0','3','These checks detect problems that require your involvement to repair. The following are examples of problems that can cause instance status checks to fail: Failed system status checks Incorrect networking or startup configuration Exhausted memory Corrupted file system Incompatible kernel',NULL,'0','0','0','','0','','0','','0','','0fdd6b02eea948d3a6c958af7f195dc3',''), ('22833','{32088}=1','AWS EC2: System status check failed','','0','3','These checks detect underlying problems with your instance that require AWS involvement to repair. The following are examples of problems that can cause system status checks to fail: Loss of network connectivity Loss of system power Software issues on the physical host Hardware issues on the physical host that impact network reachability',NULL,'0','0','0','','0','','0','','0','','723a254ffd72404ea0cc2366ff186c1c',''), ('22834','length({32089})>0','AWS EC2: Failed to get volumes info','','0','2','Failed to get CloudWatch volumes for EC2.',NULL,'0','0','0','','0','','0','','0','','844fb22685804fe7894af7c64b420824',''), ('22835','{32090}=2 and length({32091})>0','AWS EC2: [{#ALARM_NAME}] has ''Alarm'' state','','0','3','Alarm "{#ALARM_NAME}" has ''Alarm'' state. Reason: {ITEM.LASTVALUE2}',NULL,'0','2','0','','0','','0','','0','','93813bd6aaf14fcb84068cb2c2e5d47e',''), ('22836','{32092}=1','AWS EC2: [{#ALARM_NAME}] has ''Insufficient data'' state','','0','1','Either the alarm has just started, the metric is not available, or not enough data is available for the metric to determine the alarm state.',NULL,'0','2','0','','0','','0','','0','','be1301d97b5a47cc81dd6c2b76349f5d',''), ('22837','{32093}=5','AWS EC2: Volume [{#VOLUME_ID}] has ''error'' state','','0','2','',NULL,'0','2','0','','0','','0','','0','','2d4de438bdaa49b2930496ce6ddbe52d',''), ('22838','{32094}<{$AWS.EBS.BURST.CREDIT.BALANCE.MIN.WARN}','AWS EC2: Burst balance is too low','','0','2','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','AWS EC2: Burst balance is too low (less {$AWS.EBS.BURST.CREDIT.BALANCE.MIN.WARN}% for 5m)','9b2f5687020c4a5987c1b1b35a57d8b9',''), ('22839','{32095}=0','OPNsense: DHCP server is not running','','0','3','Please check DHCP server settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','fba46d0094bc4f0e98537ceca27dd6bc',''), ('22840','{32096}=0','OPNsense: DNS server is not running','','0','3','Please check DNS server settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','0e2cbbbd999d476a84cb93a9b7ef42d6',''), ('22841','{32097}=0','OPNsense: Web server is not running','','0','3','Please check lighttpd service status.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7864dec91012436f89b728019bf99fda',''), ('22842','{32098}<>1','OPNsense: Packet filter is not running','','0','4','Please check PF status.',NULL,'0','0','0','','0','','0','Current running state: {ITEM.LASTVALUE1}','0','','42d9a74d984d4ac2bf778be74cd8588f',''), ('22843','{32099}>{$SOURCE.TRACKING.TABLE.UTIL.MAX}','OPNsense: Source tracking table usage is high','','0','2','Please check the number of sticky connections.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','OPNsense: Source tracking table usage more than {$SOURCE.TRACKING.TABLE.UTIL.MAX}.','d1f03d136f30401b8f70cbc3196446ee',''), ('22844','{32100}>{$STATE.TABLE.UTIL.MAX}','OPNsense: State table usage is high','','0','2','Please check the number of connections.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','OPNsense: State table usage more than {$STATE.TABLE.UTIL.MAX}.','f31e301def314e9b81ee0f8a26dc1e37',''), ('22845','{32101}=0','OPNsense: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','f2cb074945624a8184ceb1ab3d3b2f52',''), ('22846','{32102}<0 and {32103}>0 and ( {32104}=6 or {32104}=7 or {32104}=11 or {32104}=62 or {32104}=69 or {32104}=117 ) and ({32105}<>2)','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({32102}>0 and {32106}>0) or ({32105}=2)','0','','0','Current reported speed: {ITEM.LASTVALUE1}','0','','e351276dfe6a43db88bdb437d2ef4a8e',''), ('22847','({32107}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{32108}) and {32108}>0','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: High inbound bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{32107}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{32108}','0','','0','In: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}','0','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: High inbound bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% )','d9a23c4dee9c4fd0862748923d656023',''), ('22848','({32109}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{32110}) and {32110}>0','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: High outbound bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{32109}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{32110}','0','','0','Out: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}','0','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: High outbound bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% )','4c120cefd9dd4f8aa257023610b3ed19',''), ('22849','{32111}>{$IF.ERRORS.WARN:"{#IFNAME}"}','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: High input error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{32112}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','0','errors in: {ITEM.LASTVALUE1}','0','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: High input error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','5a58e9ffee1f45c4a4f859c1f0b7c2dc',''), ('22850','{32113}>{$IF.ERRORS.WARN:"{#IFNAME}"}','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: High output error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{32114}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','0','errors out: {ITEM.LASTVALUE2}','0','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: High output error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','9d6dafdae44343f1a4e0934ec44da7b3',''), ('22851','{$IFCONTROL:"{#IFNAME}"}=1 and ({32115}=2)','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4a189b213b8e40589be007367361d70e',''), ('22852','length({32116})>0','AWS RDS: Failed to get alarms data','','0','2','Failed to get CloudWatch alarms for RDS.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','112da2ba956740fda7edcd9bd3a8651c',''), ('22853','{32117}<{$AWS.RDS.BURST.CREDIT.BALANCE.MIN.WARN}','AWS RDS: Burst balance is too low','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','AWS RDS: Burst balance is too low (less {$AWS.RDS.BURST.CREDIT.BALANCE.MIN.WARN}% for 5m)','730337e340cf4b129d4b38f1c7c82cf6',''), ('22854','{32118}<{$AWS.RDS.CPU.CREDIT.BALANCE.MIN.WARN}','AWS RDS: Instance CPU Credit balance is too low','','0','2','The number of earned CPU credits has been less than {$AWS.RDS.CPU.CREDIT.BALANCE.MIN.WARN} in the last 5 minutes.',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','AWS RDS: Instance CPU Credit balance is too low (less {$AWS.RDS.CPU.CREDIT.BALANCE.MIN.WARN} for 5m)','32994f2b06b8491b9b13d0b280e09001',''), ('22855','{32119}>{$AWS.RDS.CPU.UTIL.WARN.MAX}','AWS RDS: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','AWS RDS: High CPU utilization (over {$AWS.RDS.CPU.UTIL.WARN.MAX}% for 15m)','0272980a53e14f22b06db30af49a1233',''), ('22856','{32120}<{$AWS.EBS.BYTE.CREDIT.BALANCE.MIN.WARN}','AWS RDS: Byte Credit balance is too low','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','AWS RDS: Byte Credit balance is too low (less {$AWS.EBS.BYTE.CREDIT.BALANCE.MIN.WARN}% for 5m)','b878ee69a01a47a09677b184f8352668',''), ('22857','{32121}<{$AWS.EBS.IO.CREDIT.BALANCE.MIN.WARN}','AWS RDS: I/O Credit balance is too low','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','AWS RDS: I/O Credit balance is too low (less {$AWS.EBS.IO.CREDIT.BALANCE.MIN.WARN}% for 5m)','556100b7e8414543bf88017e13fb718f',''), ('22858','length({32122})>0','AWS RDS: Failed to get events data','','0','2','Failed to get CloudWatch events for RDS.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','600805420f704d4daca1ac20903f27f5',''), ('22859','length({32123})>0','AWS RDS: Failed to get instance data','','0','2','Failed to get CloudWatch instance info for RDS.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','452195309f1f4211aeb71b43a373f86f',''), ('22860','length({32124})>0','AWS RDS: Failed to get metrics data','','0','2','Failed to get CloudWatch metrics for RDS.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','54c70842bf314ce2a9c95e0cfc57cc21',''), ('22861','{32125}=0','AWS RDS: Read replica in error state','','0','3','The status of a read replica. False if the instance is in an error state.',NULL,'0','0','0','','0','','0','','0','','1f4767ba167f43b7ae9730ec834152a4',''), ('22862','{32126}=2 and length({32127})>0','AWS RDS: [{#ALARM_NAME}] has ''Alarm'' state','','0','3','Alarm "{#ALARM_NAME}" has ''Alarm'' state. Reason: {ITEM.LASTVALUE2}',NULL,'0','2','0','','0','','0','','0','','0f70f3d91d9c403c9d4c3cfb3283865f',''), ('22863','{32128}=1','AWS RDS: [{#ALARM_NAME}] has ''Insufficient data'' state','','0','1','Either the alarm has just started, the metric is not available, or not enough data is available for the metric to determine the alarm state.',NULL,'0','2','0','','0','','0','','0','','7d87b8d84fef4aff8aa9c0fd49e49619',''), ('22864','length({32129})>0','AWS S3: Failed to get alarms data','','0','2','Failed to get CloudWatch alarms for S3 bucket.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','a8f8a7518aad4e32b23a8611afc8f48c',''), ('22865','length({32130})>0','AWS S3: Failed to get metrics data','','0','2','Failed to get CloudWatch metrics for S3 bucket.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','a8a0b4187f5f4e22b868dd038f53a2ba',''), ('22866','{32131}=2 and length({32132})>0','AWS S3: [{#ALARM_NAME}] has ''Alarm'' state','','0','3','Alarm "{#ALARM_NAME}" has ''Alarm'' state. Reason: {ITEM.LASTVALUE2}',NULL,'0','2','0','','0','','0','','0','','c1b94199b7ac4cc9889ff0e724f7057d',''), ('22867','{32133}=1','AWS S3: [{#ALARM_NAME}] has ''Insufficient data'' state','','0','1','Either the alarm has just started, the metric is not available, or not enough data is available for the metric to determine the alarm state.',NULL,'0','2','0','','0','','0','','0','','7f0ba96047784510b734c0064d434edc',''), ('22868','length({32134})>0','Azure: There are errors in requests to API','','0','3','Zabbix has received errors in response to API requests.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','502cb582546046a29267715763c46bff',''), ('22869','{32135}=1','Azure VM: Virtual machine is degraded','','0','3','The resource is in a degraded state.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','c0170d8a09ae460da923fe773b2b0bd0',''), ('22870','{32136}=3','Azure VM: Virtual machine is in unknown state','','0','2','The resource state is unknown.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','e1b85765b83445ebbf15f02d782b9858',''), ('22871','{32137}=2','Azure VM: Virtual machine is unavailable','','0','4','The resource state is unavailable.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','b3d764ff735e44f8806cc4d29090719e',''), ('22872','{32138}>{$AZURE.VM.CPU.UTIL.CRIT}','Azure VM: High CPU utilization','','0','4','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','Azure VM: CPU utilization is high (over {$AZURE.VM.CPU.UTIL.CRIT}% for last 5m)','9e6d9394570641418b4291befb1e38e5',''), ('22873','length({32139})>0','Azure VM: There are errors in requests to API','','0','3','Zabbix has received errors in response to API requests.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','87236c99652643ba800601a461d66d94',''), ('22874','{32140}>0','PostgreSQL: Dbstat: Checksum failures detected','','0','3','Data page checksum failures were detected on that DB instance: https://www.postgresql.org/docs/current/checksums.html',NULL,'0','0','0','','0','','0','','0','','1d67b13f47134a538708c2a14dcfa6b1',''), ('22875','{32141}>0','PostgreSQL: DB [{#DBNAME}]: Checksum failures detected','','0','3','Data page checksum failures were detected on that database: https://www.postgresql.org/docs/current/checksums.html',NULL,'0','2','0','','0','','0','','0','','5995403b904349d296227647ca318f5b',''), ('22876','length({32406})>0','HPE Synergy: There are errors in requests to API','','0','3','Zabbix has received errors from API.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','dba8cff13328403dae2cbda8f106b384',''), ('22877','{32407}=0','HPE Synergy: Service is unavailable','','0','4','',NULL,'0','0','0','','0','','1','','0','','165774c1ffab46899352a36dd32bb574',''), ('22878','{32408}=0','HPE Synergy: Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Has critical status','','0','4','The appliance [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] status is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','d79a138fe0cd4f918e664380af8da355',''), ('22879','{32409}=4','HPE Synergy: Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Has warning status','','0','2','The appliance [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] status is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','c4acd5d5451d437ab5366b24643577be',''), ('22880','{32410}=1','HPE Synergy: Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Is disabled','','0','1','The appliance [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is currently not operational',NULL,'0','2','0','','0','','0','','0','','7b8b298e334e409da6dabf6476c80dbf',''), ('22881','{32411}=4','HPE Synergy: Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Is subsumed','','0','3','The device slot is configured to be part of another device slot.',NULL,'0','2','0','','0','','0','','0','','b414be87e93f4f08a131d46b34b1b478',''), ('22882','{32412}=0','HPE Synergy: Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Has critical status','','0','4','The crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] status is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','dd23cdf994c848d4b45baf4d1716f198',''), ('22883','{32413}=4','HPE Synergy: Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Has warning status','','0','2','The crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] status is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','264dff5509fb4608b862bfd3e0510e32',''), ('22884','{32414}=1','HPE Synergy: Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Is disabled','','0','1','The crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] currently not operational.',NULL,'0','2','0','','0','','0','','0','','89e007afab2b4331877b3a7c1b6a98fb',''), ('22885','{32415}=1','HPE Synergy: Datacenter [{#NAME}]: Add error','','0','3','The adding of the datacenter [{#NAME}] has failed.',NULL,'0','2','0','','0','','0','','0','','4f0d8ded588f4175911edff4efd4d1cd',''), ('22886','{32416}=3','HPE Synergy: Datacenter [{#NAME}]: Has credential error','','0','3','The datacenter [{#NAME}] has a credential error.',NULL,'0','2','0','','0','','0','','0','','896d145d3e3e49719a1b8e01117a5987',''), ('22887','{32417}=5','HPE Synergy: Datacenter [{#NAME}]: Has refresh error','','0','3','The datacenter [{#NAME}] has a refresh error.',NULL,'0','2','0','','0','','0','','0','','8ecd353d5f0742aaabd6f65d9a7b8897',''), ('22888','{32418}=7','HPE Synergy: Datacenter [{#NAME}]: Has remove error','','0','3','The datacenter [{#NAME}] has a remove error.',NULL,'0','2','0','','0','','0','','0','','091237538cab4e35a19c0f76b9c50539',''), ('22889','{32419}=0','HPE Synergy: Datacenter [{#NAME}]: Has critical status','','0','4','The datacenter [{#NAME}] status is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','5dbb654f17f345de8279c8249eae3207',''), ('22890','{32420}=4','HPE Synergy: Datacenter [{#NAME}]: Has warning status','','0','2','The datacenter [{#NAME}] status is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','d04a24eceaad4741a877fdf1c58141c5',''), ('22891','{32421}=1','HPE Synergy: Datacenter [{#NAME}]: Is disabled','','0','1','the datacenter [{#NAME}] currently not operational.',NULL,'0','2','0','','0','','0','','0','','7c70db1e75df47aeb8b4f87a634abde9',''), ('22892','{32422}=4','HPE Synergy: Device [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Is subsumed','','0','3','The device slot is configured to be part of another device slot.',NULL,'0','2','0','','0','','0','','0','','37ccc7acfc56466cb1a0f31e11603bcc',''), ('22893','{32423}=3 and {32424}>-1','HPE Synergy: Enclosure [{#NAME}]: Is interrupted','','0','2','The previous operation on the enclosure did not complete. The operation should be re-attempted.',NULL,'0','2','0','','0','','0','Reason: {ITEM.LASTVALUE2}','0','','7cd90689dd8147949b1da375b055c71f',''), ('22894','{32425}=9 and {32426}>-1','HPE Synergy: Enclosure [{#NAME}]: Is unsupported','','0','3','The enclosure model or version is not currently supported by HPE OneView. It cannot be configured or monitored.',NULL,'0','2','0','','0','','0','Reason: {ITEM.LASTVALUE2}','0','','7bfc1a8cde3349cba772a6217df3e275',''), ('22895','{32427}=6 and {32428}>-1','HPE Synergy: Enclosure [{#NAME}]: Remove failed','','0','2','The previous operation to remove the enclosure did not succeed. The operation should be re-attempted.',NULL,'0','2','0','','0','','0','Reason: {ITEM.LASTVALUE2}','0','','ef82fad1874d4dd5918d9c33323b6ae6',''), ('22896','{32429}=0','HPE Synergy: Enclosure [{#NAME}]: Is missing','','0','3','The enclosure is no longer connected into the frame link topology.',NULL,'0','2','0','','0','','0','','0','','61f81dcbb3c74f14982bd29b78f6a57b',''), ('22897','{32430}=5','HPE Synergy: Enclosure [{#NAME}]: Is unowned','','0','3','The enclosure reports are not being under the management.',NULL,'0','2','0','','0','','0','','0','','6101e612efa54715a72263b4ea9d5b7d',''), ('22898','{32431}=0','HPE Synergy: Enclosure [{#NAME}]: Has critical status','','0','4','The status of the enclosure [{#NAME}] is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','862f37cbe3b144b5ae70998bf7406497',''), ('22899','{32432}=4','HPE Synergy: Enclosure [{#NAME}]: Has warning status','','0','2','The status of the enclosure [{#NAME}] is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','50f4cfc199564b26bf575d88ec5ba57e',''), ('22900','{32433}=1','HPE Synergy: Enclosure [{#NAME}]: Is disabled','','0','1','The enclosure [{#NAME}] is currently not operational.',NULL,'0','2','0','','0','','0','','0','','c3ce50cdb5374904970903c082a98f72',''), ('22901','{32434}=0','HPE Synergy: Ethernet network [{#NAME}]: Has critical status','','0','4','The ethernet network [{#NAME}] status is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','c658a58285184a82969b520d5be1f9b2',''), ('22902','{32435}=4','HPE Synergy: Ethernet network [{#NAME}]: Has warning status','','0','2','The ethernet network [{#NAME}] status is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','6881808352bd4588b42debf5f2703f69',''), ('22903','{32436}=1','HPE Synergy: Ethernet network [{#NAME}]: Is disabled','','0','1','The ethernet network [{#NAME}] is currently not operational.',NULL,'0','2','0','','0','','0','','0','','eef185ab54584c069df2a4349dff9cc7',''), ('22904','{32437}=0','HPE Synergy: Fabric [{#NAME}]: Has critical status','','0','4','The status of the fabric [{#NAME}] is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','5f67d217108d4e7fbfcaed29f0f8564f',''), ('22905','{32438}=4','HPE Synergy: Fabric [{#NAME}]: Has warning status','','0','2','The status of the fabric [{#NAME}] is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','c546f87158ee42ba8d76aa3fd6767efa',''), ('22906','{32439}=1','HPE Synergy: Fabric [{#NAME}]: Is disabled','','0','1','The status of the fabric [{#NAME}] is currently not operational.',NULL,'0','2','0','','0','','0','','0','','c963ad956b0644c394bd58dbbb05858a',''), ('22907','{32440}=0','HPE Synergy: Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Is degraded','','0','3','The fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is in degraded state.',NULL,'0','2','0','','0','','0','','0','','cc28f87bd5b445c3abd07af689d8ee74',''), ('22908','{32441}=1','HPE Synergy: Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Is failed','','0','4','The fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is in failed state.',NULL,'0','2','0','','0','','0','','0','','113096666e074f8eadab59c0250968af',''), ('22909','{32442}=2','HPE Synergy: Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Is misplaced','','0','2','The fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is misplaced.',NULL,'0','2','0','','0','','0','','0','','63589098cc6b4e9ea7e7855e5a6b980e',''), ('22910','{32443}=3','HPE Synergy: Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Is missing','','0','3','The fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is missing.',NULL,'0','2','0','','0','','0','','0','','6b89f74f468942f789f75fdbb2b6cee6',''), ('22911','{32444}=0','HPE Synergy: Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Has critical status','','0','4','The fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] status is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','6b7b21cc6a3144edaf5fb3da2b54370f',''), ('22912','{32445}=4','HPE Synergy: Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Has warning status','','0','2','The fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] status is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','168ea39107c748d0b7008b4525ff4504',''), ('22913','{32446}=1','HPE Synergy: Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Is disabled','','0','1','The fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is currently not operational.',NULL,'0','2','0','','0','','0','','0','','41296079847b49d285e395e77f920e06',''), ('22914','{32447}=0','HPE Synergy: FC network [{#NAME}]: Has critical status','','0','4','The FC network [{#NAME}] status is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','38b9aba3f57f4b779f26dcf3d53090cf',''), ('22915','{32448}=4','HPE Synergy: FC network [{#NAME}]: Has warning status','','0','2','The FC network [{#NAME}] status is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','edf33e3c732442c6ac3327e995d0919e',''), ('22916','{32449}=1','HPE Synergy: FC network [{#NAME}]: Is disabled','','0','1','The FC network [{#NAME}] is currently not operational.',NULL,'0','2','0','','0','','0','','0','','518a795f68bf4b81ac17332f511ffdb5',''), ('22917','{32450}=0','HPE Synergy: Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Link port has critical status','','0','4','The link port status of the manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','d0a6196dc2984373916bbb857687d398',''), ('22918','{32451}=4','HPE Synergy: Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Link port has warning status','','0','2','The link port status of the manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','73fd558563794741b1416fb73ba4f173',''), ('22919','{32452}=1','HPE Synergy: Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Link port is disabled','','0','1','The link port of the manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is currently not operational.',NULL,'0','2','0','','0','','0','','0','','ab5f51fe1dcd4a859ffb3dff66450b33',''), ('22920','{32453}=0','HPE Synergy: Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: MGMT port has critical status','','0','4','The MGMT port status of the manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','514ecd9c1bbd4821ad84e5ddb042d0c6',''), ('22921','{32454}=4','HPE Synergy: Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: MGMT port has warning status','','0','2','The MGMT port status of the manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','7dd75b26c54d41228199ee9e810272bc',''), ('22922','{32455}=1','HPE Synergy: Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: MGMT port is disabled','','0','1','The MGMT port of the manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is currently not operational.',NULL,'0','2','0','','0','','0','','0','','1b7b8409bc394f22b940c09e56b3fa5c',''), ('22923','{32456}=4','HPE Synergy: Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Is subsumed','','0','3','The device slot is configured to be part of another device slot.',NULL,'0','2','0','','0','','0','','0','','d47706453e8944e497ff01feaaa19aab',''), ('22924','{32457}=0','HPE Synergy: Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Has critical status','','0','4','The status of the manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','c1d8fa7ff1fe444aaefdffdcda810e5c',''), ('22925','{32458}=4','HPE Synergy: Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Has warning status','','0','2','The status of the manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','44b30472c18a49cf9c0f7bb2f30fd184',''), ('22926','{32459}=1','HPE Synergy: Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Is disabled','','0','1','The manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is currently not operational.',NULL,'0','2','0','','0','','0','','0','','34dd6fb0ed264192b7d1b46ba2778b16',''), ('22927','{32460}=3 and length({32461})>0','HPE Synergy: Hypervisor manager [{#NAME}]: Is in error state','','0','4','The hypervisor manager [{#NAME}] has an error.',NULL,'0','2','0','','0','','0','Reason: {ITEM.LASTVALUE2}','0','','fd90d819f10d43cc9b18ae5e5ee96b66',''), ('22928','{32462}=0','HPE Synergy: Hypervisor manager [{#NAME}]: Has critical status','','0','4','The hypervisor manager [{#NAME}] status is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','a942a7ddfad14bb08915c7ba6c3248bc',''), ('22929','{32463}=4','HPE Synergy: Hypervisor manager [{#NAME}]: Has warning status','','0','2','The hypervisor manager [{#NAME}] status is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','d81f11c478484d77a64049a2716865b4',''), ('22930','{32464}=1','HPE Synergy: Hypervisor manager [{#NAME}]: Is disabled','','0','1','The hypervisor manager [{#NAME}] is currently not operational.',NULL,'0','2','0','','0','','0','','0','','ea85e02ebac94ab2821659c88eb5363c',''), ('22931','{32465}=0','HPE Synergy: Interconnect [{#NAME}]: Has critical status','','0','4','The interconnect [{#NAME}] status is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','ccc001583dc6478aa3569b14b65be97d',''), ('22932','{32466}=4','HPE Synergy: Interconnect [{#NAME}]: Has warning status','','0','2','The interconnect [{#NAME}] status is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','a6d1c63e2aa04c71bac2eaef5b693110',''), ('22933','{32467}=1','HPE Synergy: Interconnect [{#NAME}]: Is disabled','','0','1','The interconnect [{#NAME}] is currently not operational.',NULL,'0','2','0','','0','','0','','0','','6649436c06c345f8a394356e8a4fe546',''), ('22934','{32468}=2','HPE Synergy: Logical enclosure [{#NAME}]: Delete failed','','0','3','Indicator that the deletion of a logical enclosure failed.',NULL,'0','2','0','','0','','0','','0','','1c17c2f49bea47bc978698e4b8d8281b',''), ('22935','{32469}=0','HPE Synergy: Logical enclosure [{#NAME}]: Is inconsistent','','0','3','The configuration of the logical enclosure differs from that of the enclosure group, or the configuration of the hardware resources is inconsistent with the logical enclosure configuration. Perform an Update from group, Reapply configuration, or Update firmware action as an appropriate to bring the configuration back into consistency.',NULL,'0','2','0','','0','','0','','0','','85354d24f47d45f48c5dda86b9f22fe3',''), ('22936','{32470}=0','HPE Synergy: Logical enclosure [{#NAME}]: Has critical status','','0','4','The status of the logical enclosure [{#NAME}] is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','b3af6beba595455eb7774b3c609e9108',''), ('22937','{32471}=4','HPE Synergy: Logical enclosure [{#NAME}]: Has warning status','','0','2','The status of the logical enclosure [{#NAME}] is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','32061fadb9c74abab1a1d1371e2cf3e8',''), ('22938','{32472}=1','HPE Synergy: Logical enclosure [{#NAME}]: Is disabled','','0','1','The logical enclosure [{#NAME}] is currently not operational.',NULL,'0','2','0','','0','','0','','0','','c7ec2fb26b794b28b99eb321a3201fce',''), ('22939','{32473}=0','HPE Synergy: Partition [{#ENCLOSURE_NAME}:{#PARTITION_ID}]: Health is degraded','','0','4','One or more resources in the partition are unhealthy.',NULL,'0','2','0','','0','','0','','0','','1c85a47cfa96487f8c338afe21ad7ce3',''), ('22940','{32474}=1','HPE Synergy: Partition [{#ENCLOSURE_NAME}:{#PARTITION_ID}]: Health is invalid','','0','3','The partition health is invalid.',NULL,'0','2','0','','0','','0','','0','','fdf5fa892eda46aaa2551168e36428bc',''), ('22941','{32475}=2','HPE Synergy: Partition [{#ENCLOSURE_NAME}:{#PARTITION_ID}]: Is invalid','','0','3','The partition status is invalid.',NULL,'0','2','0','','0','','0','','0','','1a9c705957d34bfc976c23a8b1f38e14',''), ('22942','{32476}=0','HPE Synergy: Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Has critical status','','0','4','The status of the power supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','ce96e032cf49415aa341b238abcabd1b',''), ('22943','{32477}=4','HPE Synergy: Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Has warning status','','0','2','The status of the power supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','711695d95bc14ddfbe54be917c5e3340',''), ('22944','{32478}=1','HPE Synergy: Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Is disabled','','0','1','The status of Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is currently not operational.',NULL,'0','2','0','','0','','0','','0','','6d286b675b7546a5b429792345867d16',''), ('22945','{32479}=1','HPE Synergy: Rack [{#NAME}]: Add error','','0','3','Adding the rack [{#NAME}] failed.',NULL,'0','2','0','','0','','0','','0','','3a4eebe27b2046d3af9f6b7dca4f1aeb',''), ('22946','{32480}=3','HPE Synergy: Rack [{#NAME}]: Has credential error','','0','3','The rack [{#NAME}] has credential error.',NULL,'0','2','0','','0','','0','','0','','73d7062711f4440dad2b20865dbc79f6',''), ('22947','{32481}=5','HPE Synergy: Rack [{#NAME}]: Has refresh error','','0','3','The rack [{#NAME}] has refresh error.',NULL,'0','2','0','','0','','0','','0','','32b884dfb5164ae78f6274dc6ca4e0cb',''), ('22948','{32482}=7','HPE Synergy: Rack [{#NAME}]: Has remove error','','0','3','The rack [{#NAME}] has remove error.',NULL,'0','2','0','','0','','0','','0','','9ae1160a1bc242a9a1fe3fbf3b155ea7',''), ('22949','{32483}=0','HPE Synergy: Rack [{#NAME}]: Has critical status','','0','4','The rack [{#NAME}] status is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','f03657d149374102837fef92efc0bf28',''), ('22950','{32484}=4','HPE Synergy: Rack [{#NAME}]: Has warning status','','0','2','The rack [{#NAME}] status is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','74b635c0c6a7412395f36ac71fe56ec8',''), ('22951','{32485}=1','HPE Synergy: Rack [{#NAME}]: Is disabled','','0','1','The rack [{#NAME}] is currently not operational.',NULL,'0','2','0','','0','','0','','0','','1e4124bef22448f7b99b3b0ecd29a3ab',''), ('22952','{32486}=0 and length({32487})>0','HPE Synergy: Server [{#SERVER_NAME}:{#LOCATION}]: Is in maintenance mode','','0','1','The disruptive maintenance operations like firmware update can cause many server hardware alerts to be generated in a short period of time. Example: Network connectivity is lost or the server reset is detected.',NULL,'0','2','0','','0','','0','Reason: {ITEM.LASTVALUE2}','0','','cd1156d4df6e411690f94a2857beab16',''), ('22953','{32488}=4 and length({32489})>0','HPE Synergy: Server [{#SERVER_NAME}:{#LOCATION}]: Is unmanaged','','0','3','Discovered a supported server.',NULL,'0','2','0','','0','','0','Reason: {ITEM.LASTVALUE2}','0','','f74bf53c1b394aad9019b603de9a2c09',''), ('22954','{32490}=11','HPE Synergy: Server [{#SERVER_NAME}:{#LOCATION}]: Has profile error','','0','3','The unsuccessful profile application or removal.',NULL,'0','2','0','','0','','0','','0','','ce0f72a3fe5e495cb8dd20b94a2779d6',''), ('22955','{32491}=0','HPE Synergy: Server [{#SERVER_NAME}:{#LOCATION}]: Is not initialized','','0','2','The server is not initialized.',NULL,'0','2','0','','0','','0','','0','','5af93ca2f30d443ea18e8cf6ce139575',''), ('22956','{32492}=12','HPE Synergy: Server [{#SERVER_NAME}:{#LOCATION}]: Is unsupported','','0','3','The server model or version is not currently supported by the appliance.',NULL,'0','2','0','','0','','0','','0','','c03e5c9a910c4953bb18e6347a037ea6',''), ('22957','{32493}=6','HPE Synergy: Server [{#SERVER_NAME}:{#LOCATION}]: Remove failed','','0','3','The previous operation to remove the server hardware did not succeed. The operation should be re-attempted.',NULL,'0','2','0','','0','','0','','0','','1364b9806a104d6d8412329d47e3e505',''), ('22958','{32494}=0','HPE Synergy: Server [{#SERVER_NAME}:{#LOCATION}]: Has critical status','','0','4','The status of the server [{#SERVER_NAME}:{#LOCATION}] is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','7db1e7eff2624546a065863a2d821287',''), ('22959','{32495}=4','HPE Synergy: Server [{#SERVER_NAME}:{#LOCATION}]: Has warning status','','0','2','The status of the server [{#SERVER_NAME}:{#LOCATION}] is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','5c0da62e9a704d5ca556c04dbaa8e243',''), ('22960','{32496}=1','HPE Synergy: Server [{#SERVER_NAME}:{#LOCATION}]: Is disabled','','0','1','The server [{#SERVER_NAME}:{#LOCATION}] is currently not operational.',NULL,'0','2','0','','0','','0','','0','','79f661ed3a764515a915ba79a009ec4c',''), ('22961','{32497}=0','HPE Synergy: Storage pool [{#NAME}]: Add error','','0','3','Adding of the storage pool [{#NAME}] failed.',NULL,'0','2','0','','0','','0','','0','','ae6ac88132f14763ba1ab0488d78d79d',''), ('22962','{32498}=5','HPE Synergy: Storage pool [{#NAME}]: Create failed','','0','3','Creating of the storage pool [{#NAME}] failed.',NULL,'0','2','0','','0','','0','','0','','439cee82cd6744d09b4597a6aeeda91a',''), ('22963','{32499}=7','HPE Synergy: Storage pool [{#NAME}]: Delete failed','','0','3','Deletion of the storage pool [{#NAME}] failed.',NULL,'0','2','0','','0','','0','','0','','91031655fd16446995f316b20e2c0bed',''), ('22964','{32500}=12','HPE Synergy: Storage pool [{#NAME}]: Update failed','','0','3','Updating of the storage pool [{#NAME}] failed.',NULL,'0','2','0','','0','','0','','0','','d0a7155241b34e1f9dd3e01203aee3ba',''), ('22965','{32501}=0','HPE Synergy: Storage pool [{#NAME}]: Has critical status','','0','4','The status of the storage pool [{#NAME}] is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','bace21ba544d45b58541a3e2affde554',''), ('22966','{32502}=4','HPE Synergy: Storage pool [{#NAME}]: Has warning status','','0','2','The status of the storage pool [{#NAME}] is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','135683c55d81457e90ba97d8e02165a6',''), ('22967','{32503}=1','HPE Synergy: Storage pool [{#NAME}]: Is disabled','','0','1','The storage pool [{#NAME}] is currently not operational.',NULL,'0','2','0','','0','','0','','0','','4d7c963326d54600b639ec2d14babeb7',''), ('22968','{32504}=0','HPE Synergy: Storage system [{#NAME}]: Add error','','0','3','Adding the storage system [{#NAME}] failed.',NULL,'0','2','0','','0','','0','','0','','cfdbabe4ff584b96a961e395b3a4cda8',''), ('22969','{32505}=5','HPE Synergy: Storage system [{#NAME}]: Create failed','','0','3','Creating of the storage system [{#NAME}] failed.',NULL,'0','2','0','','0','','0','','0','','e759872ffa334bc2b73335b612238c82',''), ('22970','{32506}=7','HPE Synergy: Storage system [{#NAME}]: Delete failed','','0','3','Deletion of the storage system [{#NAME}] failed.',NULL,'0','2','0','','0','','0','','0','','1df4613458b748b59d761d45f494920a',''), ('22971','{32507}=12','HPE Synergy: Storage system [{#NAME}]: Update failed','','0','3','Updating of the storage system [{#NAME}] failed.',NULL,'0','2','0','','0','','0','','0','','3c856acaa42e4ee0807713afba3937ac',''), ('22972','{32508}=0','HPE Synergy: Storage system [{#NAME}]: Has critical status','','0','4','The status of the storage system [{#NAME}] is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','f8533d36153b4269916c7a9843ea8d5c',''), ('22973','{32509}=4','HPE Synergy: Storage system [{#NAME}]: Has warning status','','0','2','The status of the storage system [{#NAME}] is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','fc278fec8e3d452bb953599a1cd42336',''), ('22974','{32510}=1','HPE Synergy: Storage system [{#NAME}]: Is disabled','','0','1','The storage system [{#NAME}] is currently not operational.',NULL,'0','2','0','','0','','0','','0','','4e60a92c30ed4cf7960d7979a8e2fb77',''), ('22975','{32511}=0','HPE Synergy: Storage volume [{#NAME}]: Add error','','0','3','Adding the storage volume [{#NAME}] failed.',NULL,'0','2','0','','0','','0','','0','','b13d8a034a214bb5bd82d9e573d06e7b',''), ('22976','{32512}=5','HPE Synergy: Storage volume [{#NAME}]: Create failed','','0','3','Creating of the storage volume [{#NAME}] failed.',NULL,'0','2','0','','0','','0','','0','','15f5b0ded7d8430d9b6338d8ab4a26e7',''), ('22977','{32513}=7','HPE Synergy: Storage volume [{#NAME}]: Delete failed','','0','3','Deletion of the storage volume [{#NAME}] failed.',NULL,'0','2','0','','0','','0','','0','','d7b4d59197dc4471b3db746c527213ae',''), ('22978','{32514}=12','HPE Synergy: Storage volume [{#NAME}]: Update failed','','0','3','Updating of the storage volume [{#NAME}] failed.',NULL,'0','2','0','','0','','0','','0','','c0b2dc67758446fa82c6bf9c92c76e93',''), ('22979','{32515}=0','HPE Synergy: Storage volume [{#NAME}]: Has critical status','','0','4','The status of the storage volume [{#NAME}] is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','284d76cba28a4fc195b4b825665bc570',''), ('22980','{32516}=4','HPE Synergy: Storage volume [{#NAME}]: Has warning status','','0','2','The status of the storage volume [{#NAME}] is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','ab040784159040a1ad031015e9ebef73',''), ('22981','{32517}=1','HPE Synergy: Storage volume [{#NAME}]: Is disabled','','0','1','The storage volume [{#NAME}] is currently not operational.',NULL,'0','2','0','','0','','0','','0','','ea9c2c2993b74859b30caaeac8871982',''), ('22982','{32518}=0','HPE Synergy: Uplink set [{#NAME}]: Has critical status','','0','4','The status of the uplink set [{#NAME}] is critical. Needs immediate attention.',NULL,'0','2','0','','0','','0','','0','','89514e78b6e949278e83c3a2372d0fb9',''), ('22983','{32519}=4','HPE Synergy: Uplink set [{#NAME}]: Has warning status','','0','2','The status of the uplink set [{#NAME}] is warning. Needs attention soon.',NULL,'0','2','0','','0','','0','','0','','09f23615c85f43758a05d89466b3ca31',''), ('22984','{32520}=1','HPE Synergy: Uplink set [{#NAME}]: Is disabled','','0','1','The uplink set [{#NAME}] is currently not operational.',NULL,'0','2','0','','0','','0','','0','','57187189c1bc4269873b51ef91a010c4',''), ('22985','{32922}=2','Zabbix server: Proxy [{#PROXY.NAME}]: Zabbix proxy is outdated','','0','2','Zabbix proxy version is older than server version, but is partially supported. Only data collection and remote execution is available.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','519cd429ab184d9ba08a50968dc3e1e6',''), ('22986','{35021}>{$ZABBIX.PROXY.LAST_SEEN.MAX}','Zabbix server: Proxy [{#PROXY.NAME}]: Zabbix proxy last seen','','0','2','Zabbix proxy is not updating the configuration data.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Zabbix server: Proxy [{#PROXY.NAME}]: Zabbix proxy last seen more than {$ZABBIX.PROXY.LAST_SEEN.MAX} seconds ago','ee5eb0e4962b4bb59ac316a4110c86e3',''), ('22987','{32527}=-1','Zabbix server: Proxy [{#PROXY.NAME}]: Zabbix proxy never seen','','0','2','Zabbix proxy is not updating the configuration data.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','541732183fa747d6b7a05351172720bc',''), ('22991','{32928}=2','Zabbix server: Proxy [{#PROXY.NAME}]: Zabbix proxy is outdated','','0','2','Zabbix proxy version is older than server version, but is partially supported. Only data collection and remote execution is available.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','53dbaf21b8934ea9bada97431d4b3e23',''), ('22992','{35020}>{$ZABBIX.PROXY.LAST_SEEN.MAX}','Zabbix server: Proxy [{#PROXY.NAME}]: Zabbix proxy last seen','','0','2','Zabbix proxy is not updating the configuration data.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Zabbix server: Proxy [{#PROXY.NAME}]: Zabbix proxy last seen more than {$ZABBIX.PROXY.LAST_SEEN.MAX} seconds ago','21bf9805e0de4e3ba674de388834958e',''), ('22993','{32533}=-1','Zabbix server: Proxy [{#PROXY.NAME}]: Zabbix proxy never seen','','0','2','Zabbix proxy is not updating the configuration data.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','d58a33ae396943009d359bb0cae9baba',''), ('22994','{32534}=1','Azure MySQL Flexible: MySQL server is degraded','','0','3','The resource is in a degraded state.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','e822fd2214fb41db9b57cdb8eec0444a',''), ('22995','{32535}=3','Azure MySQL Flexible: MySQL server is in unknown state','','0','2','The resource state is unknown.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','ebb35037a5b646a0bd2c6be44bb1f3c6',''), ('22996','{32536}=2','Azure MySQL Flexible: MySQL server is unavailable','','0','4','The resource state is unavailable.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','240b861c09a94e209036782b6c7496fa',''), ('22997','{32930}>{$AZURE.DB.ABORTED.CONN.MAX.WARN}','Azure MySQL Flexible: Server has aborted connections','','0','3','The number of failed attempts to connect to the MySQL server is more than `{$AZURE.DB.ABORTED.CONN.MAX.WARN}`.',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','3346ea2331c14fa18658eb33e461ec7c',''), ('22998','{32538}>{$AZURE.DB.CPU.UTIL.CRIT}','Azure MySQL Flexible: High CPU utilization','','0','4','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','','5af82cc95239479c86c7ab3dabcfb592',''), ('22999','length({32539})>0','Azure MySQL Flexible: There are errors in requests to API','','0','3','Zabbix has received errors in response to API requests.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','98c1b86b79e9469cac2870fb2ba42949',''), ('23000','{32540}>{$AZURE.DB.STORAGE.PUSED.CRIT}','Azure MySQL Flexible: Storage space is critically low','','0','3','Critical utilization of the storage space.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','','1703edc1553644e5aa25d35928c5eafd',''), ('23001','{32541}>{$AZURE.DB.STORAGE.PUSED.WARN}','Azure MySQL Flexible: Storage space is low','','0','2','High utilization of the storage space.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','','a2ec23a5e77c40aa9e45d214f4e06ca1',''), ('23002','{32542}=1','Azure MySQL Single: MySQL server is degraded','','0','3','The resource is in a degraded state.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','91a32645266547d78df3a70b44c7782b',''), ('23003','{32543}=3','Azure MySQL Single: MySQL server is in unknown state','','0','2','The resource state is unknown.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','852aba88476a40aeb2170b933726b7d8',''), ('23004','{32544}=2','Azure MySQL Single: MySQL server is unavailable','','0','4','The resource state is unavailable.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','5f2d2254dfc24f5481207585bed0d933',''), ('23005','{32931}>{$AZURE.DB.FAILED.CONN.MAX.WARN}','Azure MySQL Single: Server has failed connections','','0','3','The number of failed attempts to connect to the MySQL server is more than `{$AZURE.DB.FAILED.CONN.MAX.WARN}`.',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','5b3a09ca04704e6a9972ee4865d358cd',''), ('23006','{32546}>{$AZURE.DB.CPU.UTIL.CRIT}','Azure MySQL Single: High CPU utilization','','0','4','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','','7115fb320e2b4cc1ad1739c8a6cee155',''), ('23007','length({32547})>0','Azure MySQL Single: There are errors in requests to API','','0','3','Zabbix has received errors in response to API requests.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','df5fa33f8c13413bb9d61ea4470b9b2d',''), ('23008','{32548}>{$AZURE.DB.MEMORY.UTIL.CRIT}','Azure MySQL Single: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','','a67b35f1ac674d6692b0b2bcd6f89bd8',''), ('23009','{32549}>{$AZURE.DB.STORAGE.PUSED.CRIT}','Azure MySQL Single: Storage space is critically low','','0','3','Critical utilization of the storage space.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','','3afcb840e8004822a2dada2a89971f69',''), ('23010','{32550}>{$AZURE.DB.STORAGE.PUSED.WARN}','Azure MySQL Single: Storage space is low','','0','2','High utilization of the storage space.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','','2e605f906b284f769e7c880d4e642b43',''), ('23012','{32560}=1','Azure PostgreSQL Flexible: PostgreSQL server is degraded','','0','3','The resource is in a degraded state.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','65b5c39b48e248c4866c511bbba91e1b',''), ('23013','{32561}=3','Azure PostgreSQL Flexible: PostgreSQL server is in unknown state','','0','2','The resource state is unknown.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','d8ce86c853064cba80c9883052ed1403',''), ('23014','{32562}=2','Azure PostgreSQL Flexible: PostgreSQL server is unavailable','','0','4','The resource state is unavailable.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','9572c9e56a6b44368bcf2d8a17a220d8',''), ('23015','{32563}>{$AZURE.DB.CPU.UTIL.CRIT}','Azure PostgreSQL Flexible: High CPU utilization','','0','4','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','','f8672e4488b740a9a17395689c3d853c',''), ('23016','length({32564})>0','Azure PostgreSQL Flexible: There are errors in requests to API','','0','3','Zabbix has received errors in response to API requests.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','55962f0d8a4c44c9a6b09da705e94c59',''), ('23017','{32565}>{$AZURE.DB.MEMORY.UTIL.CRIT}','Azure PostgreSQL Flexible: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','','aac52a89709044ed987a365a1d5af17b',''), ('23018','{32566}>{$AZURE.DB.STORAGE.PUSED.CRIT}','Azure PostgreSQL Flexible: Storage space is critically low','','0','3','Critical utilization of the storage space.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','','de3142bed28340d9abe518cd3967b024',''), ('23019','{32567}>{$AZURE.DB.STORAGE.PUSED.WARN}','Azure PostgreSQL Flexible: Storage space is low','','0','2','High utilization of the storage space.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','','e948600affaa4ff4a0ab4e50f4858c0a',''), ('23020','{32568}=1','Azure PostgreSQL Single: PostgreSQL server is degraded','','0','3','The resource is in a degraded state.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','699ca12c916746b1bf1e121261771cc3',''), ('23021','{32569}=3','Azure PostgreSQL Single: PostgreSQL server is in unknown state','','0','2','The resource state is unknown.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','14e45ba0bc26409a89d92edfda152947',''), ('23022','{32570}=2','Azure PostgreSQL Single: PostgreSQL server is unavailable','','0','4','The resource state is unavailable.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','4dc9113f8a914ac098d8736dba5aed4a',''), ('23023','{32571}>{$AZURE.DB.CPU.UTIL.CRIT}','Azure PostgreSQL Single: High CPU utilization','','0','4','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','','33bd2ef88ad3468b9f0b2b1358cc7448',''), ('23024','length({32572})>0','Azure PostgreSQL Single: There are errors in requests to API','','0','3','Zabbix has received errors in response to API requests.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','dd3d0be997204f8b9968ef5839fb7a9b',''), ('23025','{32573}>{$AZURE.DB.MEMORY.UTIL.CRIT}','Azure PostgreSQL Single: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','','3119f21167a546369c05d31cda2e0147',''), ('23026','{32574}>{$AZURE.DB.STORAGE.PUSED.CRIT}','Azure PostgreSQL Single: Storage space is critically low','','0','3','Critical utilization of the storage space.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','','6538d2c8ed774feb951204308f1458ce',''), ('23027','{32575}>{$AZURE.DB.STORAGE.PUSED.WARN}','Azure PostgreSQL Single: Storage space is low','','0','2','High utilization of the storage space.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','','7f7a004cfc2a492092dd74c475888e8b',''), ('23028','length({32576})>0','Meraki: There are errors in ''Get data'' metric','','0','2','',NULL,'0','0','0','','0','','0','','0','','2bf9355f548e4e9b9b8581fb43f175fe',''), ('23029','{32577}<>1','Meraki: Status is not online','','0','2','',NULL,'0','0','0','','0','','0','','0','','00583ac9e9824f7db22a1685421f0be9',''), ('23030','length({32578})>0','Meraki: There are errors in ''Get device data'' metric','','0','2','',NULL,'0','0','0','','0','','0','','0','','c8f8af6c92f14dc0bcdf426b124c7344',''), ('23031','length({35916})>3','Meraki: Configuration has been changed','','0','2','',NULL,'0','0','0','','0','','0','','0','','2fc56ad4baef4796a3ad7d097cad918f',''), ('23032','length({32580})>0','Meraki: There are errors in ''Get networks'' metric','','0','2','',NULL,'0','0','0','','0','','0','','0','','c149d21e19f3453b8e569c549ed2c78a',''), ('23033','length({32581})>0','Meraki: There are errors in ''Get VPNs'' metric','','0','2','',NULL,'0','0','0','','0','','0','','0','','f65ff582e1a84f5a9e9d6a9c0501b013',''), ('23034','{32582}<{$MERAKI.LICENSE.EXPIRE} and {32582}>=0','Meraki: License expires in less than {$MERAKI.LICENSE.EXPIRE} seconds','','0','2','',NULL,'0','0','0','','0','','0','','0','','8694c7fc18904004978a3ce46f06a67e',''), ('23035','{32583}<>1','Meraki: License status is not OK','','0','2','',NULL,'0','0','0','','0','','0','','0','','d4f71dd53bf8495789b53e063db3555b',''), ('23036','{32584}>{$MERAKI.DEVICE.LATENCY}','Meraki: Uplink [{#IP}]: [{#UPLINK}]: latency > {$MERAKI.DEVICE.LATENCY}','','0','2','',NULL,'0','2','0','','0','','0','','0','','b559ad94b15848089d89e85e4d9db7ff',''), ('23037','{32585}>{$MERAKI.DEVICE.LOSS}','Meraki: Uplink [{#IP}]: [{#UPLINK}]: loss > {$MERAKI.DEVICE.LOSS}%','','0','2','',NULL,'0','2','0','','0','','0','','0','','1309e71025614ce4bb4242e6e291ae48',''), ('23038','{32586}=0','Meraki: Uplink [{#INTERFACE}]: [{#UPLINK.ROLE}]: [{#NETWORK.NAME}]: Status is failed','','0','2','',NULL,'0','2','0','','0','','0','','0','','b1f3cbb8f3024c3f8cd6a8eaf7a5df52',''), ('23039','{32587}=1 and {32588}>0','Apache: Failed to fetch status page','','0','2','Zabbix has not received any data for items for the last 30 minutes.',NULL,'0','2','0','','0','','1','','0','Apache: Failed to fetch status page (or no data for 30m)','0166ec63913e4bbea25c54b458b3213a',''), ('23040','{32589}=0 and {32590}>0','Apache: Service is down','','0','3','',NULL,'0','2','0','','0','','1','','0','','e24dbf9b89c34d839cb12a22b1103df3',''), ('23041','{32591}>{$APACHE.RESPONSE_TIME.MAX.WARN} and {32592}>0','Apache: Service response time is too high','','0','2','',NULL,'0','2','0','','0','','1','','0','Apache: Service response time is too high (over {$APACHE.RESPONSE_TIME.MAX.WARN}s for 5m)','128905793a4b4a1db5a49f87e87d3383',''), ('23042','{32593}=0','Apache: Process is not running','','0','4','',NULL,'0','2','0','','0','','0','','0','','b62f49b09d6b4c6ca01ff60cd9dd2209',''), ('23043','({33393}=0 or {33394}) and {33395}>0','Nginx: Failed to fetch stub status page','','0','2','Zabbix has not received any data for items for the last 30 minutes.',NULL,'0','2','0','','0','','1','','0','Nginx: Failed to fetch stub status page (or no data for 30m)','a497b80eb03f469c9552881b498003b2',''), ('23044','{32597} > {$NGINX.DROP_RATE.MAX.WARN} and {32598}>0','Nginx: High connections drop rate','','0','2','The rate of dropping connections has been greater than {$NGINX.DROP_RATE.MAX.WARN} for the last 5 minutes.',NULL,'0','2','0','','0','','0','Current rate: {ITEM.LASTVALUE1}','0','Nginx: High connections drop rate (more than {$NGINX.DROP_RATE.MAX.WARN} for 5m)','f2d431fa9bc446608caa3f80ef27c41b',''), ('23045','{32599}=0 and {32600}>0','Nginx: Service is down','','0','3','',NULL,'0','2','0','','0','','1','','0','','c043191c22f34522ba4f83430d9f88b1',''), ('23046','{32601}>{$NGINX.RESPONSE_TIME.MAX.WARN} and {32602}>0','Nginx: Service response time is too high','','0','2','',NULL,'0','2','0','','0','','1','','0','Nginx: Service response time is too high (over {$NGINX.RESPONSE_TIME.MAX.WARN}s for 5m)','f5db329410a14609a5f3e883ca493cc8',''), ('23047','{32603}=0','Nginx: Process is not running','','0','4','',NULL,'0','2','0','','0','','0','','0','','903e6a1f30154ee49df3f8d87e0164cc',''), ('23048','{32604}=1 and {32605}>0','PHP-FPM: Failed to fetch info data','','0','1','Zabbix has not received any data for items for the last 30 minutes.',NULL,'0','2','0','','0','','1','','0','PHP-FPM: Failed to fetch info data (or no data for 30m)','bdf9962aee2049a8aec000b037b94d60',''), ('23049','({32606}=0 or {32607}=1) and {32608}>0','PHP-FPM: Service is down','','0','4','',NULL,'0','2','0','','0','','1','','0','','10d92102d7a24327ada7869a41119fee',''), ('23050','{32609}=0','PHP-FPM: Process is not running','','0','4','',NULL,'0','2','0','','0','','0','','0','','21a03d0ada634602ae9089a2cf3b4d70',''), ('23051','{32610}=1 and {32611}>0','RabbitMQ node: Failed to fetch nodes data','','0','2','Zabbix has not received any data for items for the last 30 minutes.',NULL,'0','2','0','','0','','1','','0','RabbitMQ node: Failed to fetch nodes data (or no data for 30m)','4f2a88d09b1b49879d80e0794ec19e0e',''), ('23052','{32612}=0 and {32613}>0','RabbitMQ node: Node is not running','','0','3','RabbitMQ node is not running.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','253acf98446e4790975b330d44dd6b96',''), ('23053','{32614}=0 and {32615}>0','RabbitMQ node: Service is down','','0','3','',NULL,'0','2','0','','0','','1','','0','','af5cfb0004e04562a9720b9e1b41fd5b',''), ('23054','{32616}>{$RABBITMQ.RESPONSE_TIME.MAX.WARN} and {32617}>0','RabbitMQ node: Service response time is too high','','0','2','',NULL,'0','2','0','','0','','1','','0','RabbitMQ node: Service response time is too high (over {$RABBITMQ.RESPONSE_TIME.MAX.WARN}s for 5m)','5cb80a7552d74e44a83d0825f039f89f',''), ('23055','{32618}=0','RabbitMQ node: Process is not running','','0','4','',NULL,'0','2','0','','0','','0','','0','','2979bc7d779b404696f7eac273e99ea7',''), ('23058','{32623}=0','Cisco Nexus 9000: Unavailable by ICMP ping','','0','4','The last three attempts returned a timeout. Check the connectivity of a device.',NULL,'0','0','0','','0','','0','','0','','2b9b678cb9fc407cb485136ddcf5953c',''), ('23059','{32624}>{$ICMP_LOSS_WARN} and {32624}<100','Cisco Nexus 9000: High ICMP ping loss','','0','2','',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','d32cffe7dcef4873ac8bb4d86119ddaa',''), ('23060','{32625}>{$ICMP_RESPONSE_TIME_WARN}','Cisco Nexus 9000: High ICMP ping response time','','0','2','',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','a51dc1f61eec4709b8f52b3df65eae86',''), ('23061','{32626}=1 and length({32627})>0','Cisco Nexus 9000: Device has been replaced','','0','1','The serial number of a device has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Cisco Nexus 9000: Device has been replaced (new serial number received)','b813bf6448fe4974911106e36b2d8888',''), ('23062','{32628}=1 and length({32629})>0','Cisco Nexus 9000: System name has changed','','0','1','The system name has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Cisco Nexus 9000: System name has changed (new name: {ITEM.VALUE})','cf98bf1ffe854a758f0006aaeb5096ab',''), ('23063','{32630}=1 and length({32631})>0','Cisco Nexus 9000: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons that system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','2','','0','','1','','0','','749b4c4b8f4e49caa6b239b15953ffb9',''), ('23064','{32632}<10m','Cisco Nexus 9000: Device has been restarted or reinitialized','','0','2','The record of SNMP Boots has changed in less than 10 minutes. The restart of a device also counts.',NULL,'0','0','0','','0','','1','','0','Cisco Nexus 9000: {HOST.NAME} has been restarted or reinitialized (uptime < 10m)','fc80a45e361842f09dfe9b047e1c6b5f',''), ('23065','{32633}=0','Cisco Nexus 9000: No SNMP data collection','','0','2','SNMP is not available for polling. Check the connectivity of a device and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b60bca40b3b14f2384332103af74bd23',''), ('23066','{32634}>{$CPU.UTIL.CRIT}','Cisco Nexus 9000: #{#SNMPINDEX}: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE}','0','Cisco Nexus 9000: #{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','1ac7652bda474762aa0b0c354728307e',''), ('23067','{32635}=1 and length({32636})>0','Cisco Nexus 9000: {#ENT_NAME}: Device has been replaced','','0','1','The device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Cisco Nexus 9000: {#ENT_NAME}: Device has been replaced (new serial number received)','18e244c17d6c436f9e3b1d71d7bfd024',''), ('23068','{32637}=3','Cisco Nexus 9000: {#SNMPVALUE}: Fan is down','','0','3','The fan unit requires immediate attention.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE}','0','','c06b2cf2183d40348b3f688a7fbcb479',''), ('23069','{32638}=1','Cisco Nexus 9000: {#SNMPVALUE}: Fan is in unknown state','','0','1','The fan unit requires attention.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE}','0','','ec5a4c0aa2b947309d012fcaf1736c7e',''), ('23070','{32639}=4','Cisco Nexus 9000: {#SNMPVALUE}: Fan is in warning state','','0','2','The fan unit requires attention.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE}','0','','83494b0d4ec84709a18f8674c1fa50fd',''), ('23071','{32640}>{$MEMORY.UTIL.MAX}','Cisco Nexus 9000: {#SNMPVALUE}: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','','0','Cisco Nexus 9000: {#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m)','d7f6de21b2434a81b2b116a98a59b1ed',''), ('23072','{32641}<0 and {32642}>0 and {32643} and {32644}<>2','Cisco Nexus 9000: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of issues with autonegotiation. Acknowledge to close the problem manually.',NULL,'0','2','1','({32641}>0 and {32645}>0) or {32644}=2','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','06a31bd057814786aac4f42ccdf57fdf',''), ('23073','({32646}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{32647}) and {32647}>0','Cisco Nexus 9000: Interface {#IFNAME}({#IFALIAS}): High inbound bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{32646}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{32647}','0','','1','In: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}','0','Cisco Nexus 9000: Interface {#IFNAME}({#IFALIAS}): High inbound bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% )','9dc308a5f30a45689eb2b9b3c2d9d453',''), ('23074','({32648}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{32649}) and {32649}>0','Cisco Nexus 9000: Interface {#IFNAME}({#IFALIAS}): High outbound bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{32648}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{32649}','0','','1','Out: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}','0','Cisco Nexus 9000: Interface {#IFNAME}({#IFALIAS}): High outbound bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% )','0036e4b0761740aea6f0b5c305861a4d',''), ('23075','{32650}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Cisco Nexus 9000: Interface {#IFNAME}({#IFALIAS}): High input error rate','','0','2','It recovers when it goes below 80% of the {$IF.ERRORS.WARN:"{#IFNAME}"} threshold.',NULL,'0','2','1','{32651}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE}','0','Cisco Nexus 9000: Interface {#IFNAME}({#IFALIAS}): High input error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','9d60de695fa243b4b933766b668de946',''), ('23076','{32652}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Cisco Nexus 9000: Interface {#IFNAME}({#IFALIAS}): High output error rate','','0','2','It recovers when it goes below 80% of the {$IF.ERRORS.WARN:"{#IFNAME}"} threshold.',NULL,'0','2','1','{32653}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors out: {ITEM.LASTVALUE2}','0','Cisco Nexus 9000: Interface {#IFNAME}({#IFALIAS}): High output error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','d1cc4527260346e59b86577e0ae9cc0c',''), ('23077','{$IFCONTROL:"{#IFNAME}"}=1 and {32654}=2 and {32655}','Cisco Nexus 9000: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. Use $IFCONTROL macro with context "{#IFNAME}" to void trigger firing on specific interfaces. Values: - 0 : Marks an interface as not important. Trigger does not fire when interface is down. - 1 : Default value to fire the trigger when interface is down 3. change(//net.if.status[{#IFNAME}]) - condition prevents firing of trigger if status did not change. It helps in cases, when interfaces were initially down. BEWARE, manual close will ceasefire until at least two status changes happens again!',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d16b8b35258a4c4b8e4338c2577f198b',''), ('23078','{32656}=2','Cisco Nexus 9000: Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','','0','2','Check the autonegotiation settings and cabling.',NULL,'0','2','0','','0','','1','','0','','c1f6a9e7c53c43a6ae19fa249236157d',''), ('23079','{32657}=8','Cisco Nexus 9000: {#SNMPVALUE}: PSU is in failed state','','0','4','The FRU is in a failed state.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE}','0','','4bc31f8605ab4899979d2f3385cd7b7a',''), ('23080','{32658}=3','Cisco Nexus 9000: {#SNMPVALUE}: PSU is off: Administratively','','0','1','The FRU is administratively off.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE}','0','','a930e2d032804dc880ebe51c4fd0dd07',''), ('23081','{32659}','Cisco Nexus 9000: {#SNMPVALUE}: PSU is off or out of optimal state','','0','3','The PSU requires attention. Compare the current state from operational data with the table below: - offEnvOther (1): FRU is powered off because of a problem not listed below; - on (2): FRU is powered on; - offAdmin (3): administratively off; - offDenied (4): FRU is powered off because available system power is insufficient; - offEnvPower (5): FRU is powered off because of a power problem in the FRU. For example, the FRU''s power translation (DC-DC converter) or distribution failed; - offEnvTemp (6): FRU is powered off because of temperature problem; - offEnvFan (7): FRU is powered off because of fan problems; - failed (8): FRU is in failed state; - onButFanFail (9): FRU is on but fan has failed; - offCooling (10): FRU is powered off because of the system''s insufficient cooling capacity; - offConnectorRating (11): FRU is powered off because of the system''s connector rating exceeded; - onButInlinePowerFail (12): The FRU is on but no inline power is being delivered as the data/inline power component of the FRU has failed.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE}','0','','6e2517ce92c949589539edece3cb5eb5',''), ('23082','{32660}=2','Cisco Nexus 9000: {#SNMPVALUE}: Temperature sensor is not available','','0','2','It means that the agent presently can not report the sensor value.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE}','0','','938eb8e3d3f4486b89316a7b00aa5600',''), ('23083','{32661}=3','Cisco Nexus 9000: {#SNMPVALUE}: Temperature sensor is not operational','','0','4','It means that the agent considers that the sensor is broken. The sensor could have a hard failure (e.g., disconnected wire), or a soft failure (e.g., out-of-range, jittery, or wildly fluctuating readings).',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE}','0','','ec63ba043da64c8abd4c4a9e2dbc297f',''), ('23084','{32662}>{$TEMP_CRIT:"{#SNMPVALUE}"}','Cisco Nexus 9000: {#SNMPVALUE}: Temperature is above critical threshold','','0','4','This trigger uses the values of the temperature sensor.',NULL,'0','2','1','{32663}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE}','0','Cisco Nexus 9000: {#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"}°C','ca54affa31654e358ad2be30b8e6dc72',''), ('23085','{32664}>{$TEMP_WARN:"{#SNMPVALUE}"}','Cisco Nexus 9000: {#SNMPVALUE}: Temperature is above warning threshold','','0','2','This trigger uses the values of the temperature sensor.',NULL,'0','2','1','{32665}<{$TEMP_WARN:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE}','0','Cisco Nexus 9000: {#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}°C"}','29f9c6e22d714a18997683ad8979239a',''), ('23086','{32666}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}','Cisco Nexus 9000: {#SNMPVALUE}: Temperature is too low','','0','3','',NULL,'0','2','1','{32667}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}-3','0','','0','Current value: {ITEM.LASTVALUE}','0','Cisco Nexus 9000: {#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}°C"}','0ce9b389385f482c9bea0c52822be85d',''), ('23087','{32668}=0 and {32669}=1','AIX: FS [{#FSNAME}]: Filesystem has become read-only','','0','3','The filesystem has become read-only, possibly due to an I/O error. Available only for Zabbix agents 6.4 and higher.',NULL,'0','2','1','{32669}=0','0','','1','','0','','05ec0e80333d4f7688b71a2865d0365e',''), ('23088','{32670}=0 and {32671}=1','FreeBSD: FS [{#FSNAME}]: Filesystem has become read-only','','0','3','The filesystem has become read-only, possibly due to an I/O error. Available only for Zabbix agents 6.4 and higher.',NULL,'0','2','1','{32671}=0','0','','1','','0','','f5a2fc8328d647d48eb3c2ebda361dc3',''), ('23089','{32672}=0 and {32673}=1','HP-UX: FS [{#FSNAME}]: Filesystem has become read-only','','0','3','The filesystem has become read-only, possibly due to an I/O error. Available only for Zabbix agents 6.4 and higher.',NULL,'0','2','1','{32673}=0','0','','1','','0','','c678e20762674346932f0107b4f7ec8c',''), ('23090','{32674}=0 and {32675}=1','Linux: FS [{#FSNAME}]: Filesystem has become read-only','','0','3','The filesystem has become read-only, possibly due to an I/O error. Available only for Zabbix agents 6.4 and higher.',NULL,'0','2','1','{32675}=0','0','','1','','0','','c8e2f67378d84b3ba687467bc6daf63a',''), ('23092','{32678}=0 and {32679}=1','Linux: FS [{#FSNAME}]: Filesystem has become read-only','','0','3','The filesystem has become read-only, possibly due to an I/O error. Available only for Zabbix agents 6.4 and higher.',NULL,'0','2','1','{32679}=0','0','','1','','0','','001c20d581824f0380244745ce0fae9e',''), ('23093','{32680}=0 and {32681}=1','OpenBSD: FS [{#FSNAME}]: Filesystem has become read-only','','0','3','The filesystem has become read-only, possibly due to an I/O error. Available only for Zabbix agents 6.4 and higher.',NULL,'0','2','1','{32681}=0','0','','1','','0','','7d1eaacab7ac4af7969c7fc22c67cfb8',''), ('23094','{32682}=0 and {32683}=1','Solaris: FS [{#FSNAME}]: Filesystem has become read-only','','0','3','The filesystem has become read-only, possibly due to an I/O error. Available only for Zabbix agents 6.4 and higher.',NULL,'0','2','1','{32683}=0','0','','1','','0','','cbbcf1204cf345ceaaf2a9b12996f52f',''), ('23095','{32684}="Disconnected"','Control-M: Server disconnected','','0','4','The server is disconnected.',NULL,'0','0','0','','0','','0','Triggered message: {ITEM.VALUE}, Current message: {ITEM.LASTVALUE1}','0','','406307967abf4218bebd9428dd8ecb8b',''), ('23096','{32685}<>"Connected" and {32685}<>"Disconnected" and {32685}<>""','Control-M: Server error','','0','4','The server has encountered an error.',NULL,'0','0','0','','0','','0','Triggered message: {ITEM.VALUE}, Current message: {ITEM.LASTVALUE1}','0','','1d7387fe4cd7462c81daa529b58d0e34',''), ('23097','{32686}=0 or {32686}=10','Control-M: Server is down','','0','4','The server is down.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d9f5b1f636ec477c932159fd1c5baf16',''), ('23098','{32687}<>{32688} and length({32689})>0','Control-M: Server version has changed','','0','1','The server version has changed. Acknowledge to close the problem manually.',NULL,'0','0','2','','0','','1','Old version: {ITEM.VALUE}, Current version: {ITEM.LASTVALUE1}','0','','14cdf1016ab24e5c8b03626fac5af263',''), ('23099','{32690}>0','Control-M: Service [{#SERVICE.NAME}, {#SERVICE.JOB}]: jobs in ''error'' state','','0','3','There are services present which are in the state - `error`.',NULL,'0','2','0','','0','','0','Trigger value ''{ITEM.VALUE}'', Current value ''{ITEM.LASTVALUE}''','0','','c66f281b78e64c1c9c96ade1450eadbb',''), ('23100','{32691}=0 or {32691}=10','Control-M: Service [{#SERVICE.NAME}, {#SERVICE.JOB}]: status [{ITEM.VALUE}]','','0','3','The service has encountered an issue.',NULL,'0','2','0','','0','','1','','0','','e032410a5384441989538ff6781ef848',''), ('23101','{32692}=3','Control-M: Service [{#SERVICE.NAME}, {#SERVICE.JOB}]: status [{ITEM.VALUE}]','','0','2','The service has finished its job late.',NULL,'0','2','0','','0','','1','','0','','f64b017b0cf9456eb0afdf908cf2258e',''), ('23102','{32693}=1 or {32693}=10','Control-M: Agent [{#AGENT.NAME}]: status [{ITEM.VALUE}]','','0','3','The agent has encountered an issue.',NULL,'0','2','0','','0','','1','','0','','22e12e397ad942889895590c28ce3d75',''), ('23103','{32694}=2 or {32694}=3','Control-M: Agent [{#AGENT.NAME}}: status disabled','','0','1','The agent is disabled.',NULL,'0','2','0','','0','','1','','0','','d7cb3729522c4e5bab9eec4341bbab08',''), ('23104','{32695}="Unknown"','Control-M: Agent [{#AGENT.NAME}]: unknown version','','0','2','The agent version is unknown.',NULL,'0','2','0','','0','','1','','0','','7c494429411b4ede997a7881e52d9b46',''), ('23105','{32696}<>{32697}','Control-M: Agent [{#AGENT.NAME}]: version has changed','','0','1','The agent version has changed. Acknowledge to close the problem manually.',NULL,'0','2','2','','0','','1','Old version: {ITEM.VALUE}, Current version: {ITEM.LASTVALUE1}','0','','e67a46b5c61c43e6b42a966f3d68a581',''), ('23106','{32698}=1 or {32698}=10','Control-M: Job [{#JOB.ID}]: status [{ITEM.VALUE}]','','0','2','The job has encountered an issue.',NULL,'0','2','0','','0','','1','','0','','beec4281ad0f4ca7aa5f3020b116fdfd',''), ('23107','length({32701})>0','Veeam Backup: There are errors in requests to API','','0','3','Zabbix has received errors in response to API requests.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','3487d31a2aa540009f006c6a4eff8c79',''), ('23108','{32702}=1','Veeam Backup: Last result job failed','','0','3','',NULL,'0','2','0','','0','','1','','0','Veeam Backup: Failed job [{#NAME}]','337b1cafc2674b4fb44e5baf1076183b',''), ('23109','{32703}=1','Veeam Backup: Last result session failed','','0','3','',NULL,'0','2','0','','0','','1','','0','Veeam Backup: Failed session [{#NAME}]','eeb93a10f3d04eee819587c6fa4ce8f8',''), ('23110','{32704}>{$VEEAM.MANAGER.JOB.MAX.FAIL}','Veeam Backup: Failed job runs is too high','','0','3','',NULL,'0','0','0','','0','','1','','0','Veeam Backup: Failed job runs is too high (over {$VEEAM.MANAGER.JOB.MAX.FAIL})','4885d43f36b541219be87b5e5ea19088',''), ('23111','length({32705})>0','Veeam Backup: There are errors in requests to API','','0','3','Zabbix has received errors in response to API requests.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','83316e2168414042aeb9d98857534baa',''), ('23112','{32706}>{$VEEAM.MANAGER.JOB.MAX.WARN}','Veeam Backup: Warning job runs is too high','','0','2','',NULL,'0','0','0','','0','','1','','0','Veeam Backup: Warning job runs is too high (over {$VEEAM.MANAGER.JOB.MAX.WARN})','f65998e99bb24e02a2810b632a4a3f4e',''), ('23113','{32707}=1','Azure MSSQL: Microsoft SQL database is degraded','','0','3','The resource is in a degraded state.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','5156f35b82084fd3b1d1a11c35757993',''), ('23114','{32708}=3','Azure MSSQL: Microsoft SQL database is in unknown state','','0','2','The resource state is unknown.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','0cf3cce995c241838e13df12d5908b61',''), ('23115','{32709}=2','Azure MSSQL: Microsoft SQL database is unavailable','','0','4','The resource state is unavailable.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','2130dc83dee94fdfad87894127c6a578',''), ('23116','{32710}>{$AZURE.DB.CPU.UTIL.CRIT}','Azure MSSQL: High CPU utilization','','0','4','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','','506c034e707442519792a4366bc0879d',''), ('23117','length({32711})>0','Azure MSSQL: There are errors in requests to API','','0','3','Zabbix has received errors in response to API requests.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','62d08fe430bd45e890c81547860d5c3d',''), ('23118','{32712}>{$AZURE.DB.STORAGE.PUSED.CRIT}','Azure MSSQL: Storage space is critically low','','0','3','Critical utilization of the storage space.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','','a2d6cf9ac67d4d0eb312e9536299b345',''), ('23119','{32713}>{$AZURE.DB.STORAGE.PUSED.WARN}','Azure MSSQL: Storage space is low','','0','2','High utilization of the storage space.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','','6dbf1d3aeb8b44b8bd96a9ca75f5249e',''), ('23120','{32714}=1','Azure MSSQL Serverless: Microsoft SQL database is degraded','','0','3','The resource is in a degraded state.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','37c52a28908a45378266f68acdf5c308',''), ('23121','{32715}=3','Azure MSSQL Serverless: Microsoft SQL database is in unknown state','','0','2','The resource state is unknown.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','20bd79f05f3241a9950a83dcd9e325ba',''), ('23122','{32716}=2','Azure MSSQL Serverless: Microsoft SQL database is unavailable','','0','4','The resource state is unavailable.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','124813388e9844e8aae5ce474a66a774',''), ('23123','{32717}>{$AZURE.DB.CPU.UTIL.CRIT}','Azure MSSQL Serverless: High CPU utilization','','0','4','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','','933a04a1455b4a89b1527f9ce7848259',''), ('23124','length({32718})>0','Azure MSSQL Serverless: There are errors in requests to API','','0','3','Zabbix has received errors in response to API requests.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','f56b125a8eff49d2aa002609c7df8b34',''), ('23125','{32719}>{$AZURE.DB.STORAGE.PUSED.CRIT}','Azure MSSQL Serverless: Storage space is critically low','','0','3','Critical utilization of the storage space.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','','4638130e599243fba3206abc85a7447f',''), ('23126','{32720}>{$AZURE.DB.STORAGE.PUSED.WARN}','Azure MSSQL Serverless: Storage space is low','','0','2','High utilization of the storage space.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','','4732eab4aabf439fa0b2d80b63e821e5',''), ('23127','{32721}<2','Oracle: Archivelog ''{#DEST_NAME}'': Log Archive is not valid','','0','4','The trigger will launch if the archive log destination is not in one of these states: 2 - DEFERRED; 3 - VALID.',NULL,'0','2','0','','0','','0','','0','','e2d393c0ff2f420097e19890bcbe215c',''), ('23128','{32722} = 0 and {32723} = 1','Oracle: Database ''{#DBNAME}'': Force logging is deactivated for DB with active Archivelog','','0','2','Force logging mode is a very important metric for databases in `ARCHIVELOG`. This feature allows to forcibly write all the transactions to the redo log.',NULL,'0','2','0','','0','','0','','0','','049473f763d84700b62abf5c914390fe',''), ('23129','{32724}<>{32725}','Oracle: Database ''{#DBNAME}'': Open status has changed','','0','1','The Oracle Database open status has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Oracle: Database ''{#DBNAME}'': Open status has changed (new value received: {ITEM.VALUE})','fb642c2cfeb142409c67a7755d1047cc',''), ('23130','{32726}=1','Oracle: Database ''{#DBNAME}'': Open status in mount mode','','0','2','The Oracle Database is in a mounted state.',NULL,'0','2','0','','0','','0','','0','','ef1c57d8f7d34c02bf0b7347d9fddf54',''), ('23131','{32727}<>{32728}','Oracle: Database ''{#DBNAME}'': Role has changed','','0','1','The Oracle Database role has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Oracle: Database ''{#DBNAME}'': Role has changed (new value received: {ITEM.VALUE})','24fef0b751fd4d089eced3c210954b4f',''), ('23132','{32729}>{$ORACLE.ASM.USED.PCT.MAX.HIGH}','Oracle: ASM ''{#DGNAME}'': Disk group usage is too high','','0','4','The usage of the ASM disk group expressed in % exceeds `{$ORACLE.ASM.USED.PCT.MAX.HIGH}`.',NULL,'0','2','0','','0','','0','','0','Oracle: ASM ''{#DGNAME}'': Disk group usage is too high (over {$ORACLE.ASM.USED.PCT.MAX.HIGH}% for 5m)','b8aa1b00e2574e35bf71554cabfffcfc',''), ('23133','{32730}>{$ORACLE.ASM.USED.PCT.MAX.WARN}','Oracle: ASM ''{#DGNAME}'': Disk group usage is too high','','0','2','The usage of the ASM disk group expressed in % exceeds `{$ORACLE.ASM.USED.PCT.MAX.WARN}`.',NULL,'0','2','0','','0','','0','','0','Oracle: ASM ''{#DGNAME}'': Disk group usage is too high (over {$ORACLE.ASM.USED.PCT.MAX.WARN}% for 5m)','af6ff1d099524209b2806b1257e9a8e3',''), ('23134','{32731}<>{32732}','Oracle: Database ''{#DBNAME}'': Open status has changed','','0','1','The Oracle Database open status has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Oracle: Database ''{#DBNAME}'': Open status has changed (new value received: {ITEM.VALUE})','61f48e1d858f4e95a603b32ee1c409dc',''), ('23135','{32733}=1','Oracle: Database ''{#DBNAME}'': Open status in mount mode','','0','2','The Oracle Database is in a mounted state.',NULL,'0','2','0','','0','','0','','0','','a6921cc3b42843dcb5624b3bb172f996',''), ('23136','{32734}=2','Oracle: ''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace is OFFLINE','','0','2','The tablespace is in the offline state.',NULL,'0','2','0','','0','','0','','0','','832f908ca3b84a3c9a030b5d33b96016',''), ('23137','{32735}<>{32736}','Oracle: ''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace status has changed','','0','1','Oracle tablespace status has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Oracle: ''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace status has changed (new value received: {ITEM.VALUE})','2e84836974b340b5b916eed08e1fcdf4',''), ('23138','{32737}>{$ORACLE.TBS.USED.PCT.MAX.HIGH}','Oracle: ''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace usage is too high','','0','4','The usage of the tablespace `{#TABLESPACE}` exceeds `{$ORACLE.TBS.USED.PCT.MAX.HIGH}`%',NULL,'0','2','0','','0','','0','','0','Oracle: ''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace usage is too high (over {$ORACLE.TBS.USED.PCT.MAX.HIGH}% for 5m).','bbc86236064348ee9150dfdd07623061',''), ('23139','{32738}>{$ORACLE.TBS.USED.PCT.MAX.WARN}','Oracle: ''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace usage is too high','','0','2','The usage of the tablespace `{#TABLESPACE}` exceeds `{$ORACLE.TBS.USED.PCT.MAX.WARN}`%',NULL,'0','2','0','','0','','0','','0','Oracle: ''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace usage is too high (over {$ORACLE.TBS.USED.PCT.MAX.WARN}% for 5m).','ba298d35aaaa4386b4f03914dcf1cb27',''), ('23140','{33626}>{$ORACLE.TBS.UTIL.PCT.MAX.WARN}','Oracle: ''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace utilization is too high','','0','2','The utilization of the tablespace `{#TABLESPACE}` exceeds `{$ORACLE.TBS.UTIL.PCT.MAX.WARN}`%',NULL,'0','2','0','','0','','0','','0','Oracle: ''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace utilization is too high (over {$ORACLE.TBS.UTIL.PCT.MAX.WARN}% for 5m).','2530cb03fb4e4e728396834f0db89466',''), ('23141','{32740}>{$ORACLE.TBS.UTIL.PCT.MAX.HIGH}','Oracle: ''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace utilization is too high','','0','4','The utilization of the tablespace `{#TABLESPACE}` exceeds `{$ORACLE.TBS.UTIL.PCT.MAX.HIGH}`%',NULL,'0','2','0','','0','','0','','0','Oracle: ''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace utilization is too high (over {$ORACLE.TBS.UTIL.PCT.MAX.HIGH}% for 5m).','451108a2251848ea8719378d5c0abb42',''), ('23142','{32741}<2','Oracle: Archivelog ''{#DEST_NAME}'': Log Archive is not valid','','0','4','The trigger will launch if the archive log destination is not in one of these states: 2 - DEFERRED; 3 - VALID.',NULL,'0','2','0','','0','','0','','0','','1202e75015304115a4ccdab027617816',''), ('23143','{32742}>{$ORACLE.ASM.USED.PCT.MAX.HIGH}','Oracle: ASM ''{#DGNAME}'': Disk group usage is too high','','0','4','The usage of the ASM disk group expressed in % exceeds `{$ORACLE.ASM.USED.PCT.MAX.WARN}`.',NULL,'0','2','0','','0','','0','','0','Oracle: ASM ''{#DGNAME}'': Disk group usage is too high (over {$ORACLE.ASM.USED.PCT.MAX.HIGH}% for 5m)','756a8b4b04bc4aadab6b4b4cc856ad32',''), ('23144','{32743}>{$ORACLE.ASM.USED.PCT.MAX.WARN}','Oracle: ASM ''{#DGNAME}'': Disk group usage is too high','','0','2','The usage of the ASM disk group expressed in % exceeds `{$ORACLE.ASM.USED.PCT.MAX.WARN}`.',NULL,'0','2','0','','0','','0','','0','Oracle: ASM ''{#DGNAME}'': Disk group usage is too high (over {$ORACLE.ASM.USED.PCT.MAX.WARN}% for 5m)','d65971e0f3994dfcbcbde145c9866678',''), ('23145','{32744} = 0 and {32745} = 1','Oracle: Database ''{#DBNAME}'': Force logging is deactivated for DB with active Archivelog','','0','2','Force logging mode is a very important metric for databases in `ARCHIVELOG`. This feature allows to forcibly write all the transactions to the redo log.',NULL,'0','2','0','','0','','0','','0','','9c17e0fdd6fe409e8f298433e58b7445',''), ('23146','{32746}<>{32747}','Oracle: Database ''{#DBNAME}'': Open status has changed','','0','1','The Oracle Database open status has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Oracle: Database ''{#DBNAME}'': Open status has changed (new value received: {ITEM.VALUE})','9bf80a9372ef4b3898fd5a4f0c3cec7c',''), ('23147','{32748}=1','Oracle: Database ''{#DBNAME}'': Open status in mount mode','','0','2','The Oracle Database is in a mounted state.',NULL,'0','2','0','','0','','0','','0','','3620ac4e75644789a2f0245dbb948771',''), ('23148','{32749}<>{32750}','Oracle: Database ''{#DBNAME}'': Role has changed','','0','1','The Oracle Database role has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Oracle: Database ''{#DBNAME}'': Role has changed (new value received: {ITEM.VALUE})','fb5ccc917a8344d7945b8867a1982d6b',''), ('23149','{32751}<>{32752}','Oracle: Database ''{#DBNAME}'': Open status has changed','','0','1','The Oracle Database open status has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Oracle: Database ''{#DBNAME}'': Open status has changed (new value received: {ITEM.VALUE})','3dbb9379f8024924b197037acfbbdac4',''), ('23150','{32753}=1','Oracle: Database ''{#DBNAME}'': Open status in mount mode','','0','2','The Oracle Database is in a mounted state.',NULL,'0','2','0','','0','','0','','0','','5f8ed69b2c074a29b9975baf10a2a2f8',''), ('23151','{32754}=2','Oracle: ''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace is OFFLINE','','0','2','The tablespace is in the offline state.',NULL,'0','2','0','','0','','0','','0','','3c5f54f41f95440aa18ca5316aeb50f6',''), ('23152','{32755}<>{32756}','Oracle: ''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace status has changed','','0','1','Oracle tablespace status has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Oracle: ''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace status has changed (new value received: {ITEM.VALUE})','05c2af5a765842a1a70f2f67355db1b3',''), ('23153','{32757}>{$ORACLE.TBS.USED.PCT.MAX.HIGH}','Oracle: ''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace usage is too high','','0','4','The usage of the tablespace `{#TABLESPACE}` exceeds `{$ORACLE.TBS.USED.PCT.MAX.HIGH}`%',NULL,'0','2','0','','0','','0','','0','Oracle: ''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace usage is too high (over {$ORACLE.TBS.USED.PCT.MAX.HIGH}% for 5m).','78c293ae7ded42b0b05d50af99762017',''), ('23154','{32758}>{$ORACLE.TBS.USED.PCT.MAX.WARN}','Oracle: ''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace usage is too high','','0','2','The usage of the tablespace `{#TABLESPACE}` exceeds `{$ORACLE.TBS.USED.PCT.MAX.WARN}`%',NULL,'0','2','0','','0','','0','','0','Oracle: ''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace usage is too high (over {$ORACLE.TBS.USED.PCT.MAX.WARN}% for 5m).','e6f2cb4ade52464b97f5e0f5e05ab61b',''), ('23155','{33627}>{$ORACLE.TBS.UTIL.PCT.MAX.WARN}','Oracle: ''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace utilization is too high','','0','2','The utilization of the tablespace `{#TABLESPACE}` exceeds `{$ORACLE.TBS.UTIL.PCT.MAX.WARN}`%',NULL,'0','2','0','','0','','0','','0','Oracle: ''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace utilization is too high (over {$ORACLE.TBS.UTIL.PCT.MAX.WARN}% for 5m).','9469e51bd69e4baba82de4fd4e5eb14c',''), ('23156','{32760}>{$ORACLE.TBS.UTIL.PCT.MAX.HIGH}','Oracle: ''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace utilization is too high','','0','4','The utilization of the tablespace `{#TABLESPACE}` exceeds `{$ORACLE.TBS.UTIL.PCT.MAX.HIGH}`%',NULL,'0','2','0','','0','','0','','0','Oracle: ''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace utilization is too high (over {$ORACLE.TBS.UTIL.PCT.MAX.HIGH}% for 5m).','a8aa7255866d4a5ba71d2f89a1d234fe',''), ('23161','{32787}<>0','Linux: Number of installed packages has been changed','','0','2','',NULL,'0','0','0','','0','','1','','0','','b950c306394f4b3c902060a8273cbcde',''), ('23163','{32793}<>0','Linux: Number of installed packages has been changed','','0','2','',NULL,'0','0','0','','0','','1','','0','','bd57d37531ac48f5b96a9f45453f3c35',''), ('23164','{32796} and length({32797})>0','Windows: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','9d5648eb580b41fca95d750113287567',''), ('23165','{32800} and length({32801})>0','Windows: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','01bbea22605947dca9638229cf56e4e1',''), ('23166','{32802}=0','OS: Process [{#NAME}]: Process is not running','','0','4','',NULL,'0','2','0','','0','','1','','0','','66294f983a134a1e81165878f30d3ebc',''), ('23167','{32803}=0','Zabbix agent is not available','','0','3','For passive agents only, host availability is used with `{$AGENT.TIMEOUT}` as a time threshold.',NULL,'0','0','0','','0','','1','','0','Zabbix agent is not available (for {$AGENT.TIMEOUT})','6767f9c764bb42dfa961baacf879f45c',''), ('23168','{32804}=1','Zabbix agent is not available','','0','3','For active agents, `nodata()` with `agent.ping` is used with `{$AGENT.NODATA_TIMEOUT}` as a time threshold.',NULL,'0','0','0','','0','','1','','0','Zabbix agent is not available (or nodata for {$AGENT.NODATA_TIMEOUT})','6bbb74c522d44baea8c6ceb666423da2',''), ('23169','{32805}=2','Active checks are not available','','0','4','Active checks are considered unavailable. Agent has not sent a heartbeat for a prolonged time.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e91c556b0ff64292b9b9b5709a5d74b3',''), ('23170','{32806}=0','Generic by SNMP: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','085d6f785f1e46faa447d6921036d01d',''), ('23171','{32807}>{$ICMP_LOSS_WARN} and {32807}<100','Generic by SNMP: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','d1bd868814ba4ace9b5034ac4e303259',''), ('23172','{32808}>{$ICMP_RESPONSE_TIME_WARN}','Generic by SNMP: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','ecd74ec29b484a499414293bf671160b',''), ('23173','{32981}<>{32982} and length({32983})>0','Generic by SNMP: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Generic by SNMP: System name has changed (new name: {ITEM.VALUE})','072bf35ea9d04c559ada5cb13d4b6802',''), ('23174','{32811}=0','Generic by SNMP: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d3aba975ec574b258c7f971152c5d4cd',''), ('23175','({32812}>0 and {32812}<10m) or ({32812}=0 and {32813}<10m)','Generic by SNMP: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Generic by SNMP: {HOST.NAME} has been restarted (uptime < 10m)','6f00359af55f45909bdecbad234c7654',''), ('23176','{32814}=0','ICMP Ping: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','b030876299434f3ba43e11c584104a81',''), ('23177','{32815}>{$ICMP_LOSS_WARN} and {32815}<100','ICMP Ping: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','42c4b0310aaf4b9c8cb502542b7dea90',''), ('23178','{32816}>{$ICMP_RESPONSE_TIME_WARN}','ICMP Ping: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','32b4d8f3eba34bd380803410111d4b7f',''), ('23179','( {32817} = 1 and bitand({32818},8) = 8 ) or ( bitand({32818},8) = 8 and bitand({32818},8) > bitand({32819},8) )','SMART: [{#NAME}]: Check returned "DISK FAILING"','','0','4','SMART status check returned "DISK FAILING".',NULL,'0','2','2','','0','','1','','0','','c51b609f267c45c3bcb4a3f5f40b6d35',''), ('23180','( {32820} = 1 and bitand({32821},1) = 1 ) or ( bitand({32821},1) = 1 and bitand({32821},1) > bitand({32822},1) )','SMART: [{#NAME}]: Command line did not parse','','0','4','Command line did not parse.',NULL,'0','2','2','','0','','1','','0','','12ed61dfd27c4666883c4240a5726d06',''), ('23181','( {32823} = 1 and bitand({32824},2) = 2 ) or ( bitand({32824},2) = 2 and bitand({32824},2) > bitand({32825},2) )','SMART: [{#NAME}]: Device open failed','','0','4','Device open failed, device did not return an IDENTIFY DEVICE structure, or device is in a low-power mode.',NULL,'0','2','2','','0','','1','','0','','9b960cb324774b3fa5e3d39aeb3141e2',''), ('23182','( {32826} = 1 and bitand({32827},64) = 64 ) or ( bitand({32827},64) = 64 and bitand({32827},64) > bitand({32828},64) )','SMART: [{#NAME}]: Error log contains records','','0','4','The device error log contains records of errors.',NULL,'0','2','2','','0','','1','','0','','ccff1b75f69a47cdbb5a04c58d201a0f',''), ('23183','( {32829} = 1 and bitand({32830},128) = 128 ) or ( bitand({32830},128) = 128 and bitand({32830},128) > bitand({32831},128) )','SMART: [{#NAME}]: Self-test log contains records','','0','4','The device self-test log contains records of errors. [ATA only] Failed self-tests outdated by a newer successful extended self-test are ignored.',NULL,'0','2','2','','0','','1','','0','','69fb021abcc841b7b35cc93358ef085c',''), ('23184','( {32832} = 1 and bitand({32833},32) = 32 ) or ( bitand({32833},32) = 32 and bitand({32833},32) > bitand({32834},32) )','SMART: [{#NAME}]: Some Attributes have been <= threshold','','0','4','SMART status check returned "DISK OK" but we found that some (usage or prefail) Attributes have been <= threshold at some time in the past.',NULL,'0','2','2','','0','','1','','0','','4ad2fbb5b6e349f6852a489b99a2760d',''), ('23185','( {32835} = 1 and bitand({32836},4) = 4 ) or ( bitand({32836},4) = 4 and bitand({32836},4) > bitand({32837},4) )','SMART: [{#NAME}]: Some command to the disk failed','','0','4','Some SMART or other ATA command to the disk failed, or there was a checksum error in a SMART data structure.',NULL,'0','2','2','','0','','1','','0','','592e647842d048e3985e65726cdc838c',''), ('23186','( {32838} = 1 and bitand({32839},16) = 16 ) or ( bitand({32839},16) = 16 and bitand({32839},16) > bitand({32840},16) )','SMART: [{#NAME}]: Some prefail Attributes <= threshold','','0','4','We found prefail Attributes <= threshold.',NULL,'0','2','2','','0','','1','','0','','ec137781d51249c89d8891a35a596445',''), ('23187','{32841}>90','SMART: [{#NAME}]: NVMe disk percentage using is over 90% of estimated endurance','','0','3','',NULL,'0','2','0','','0','','0','','0','','e2bc2b0e195446d7973037be8e41eb6f',''), ('23188','{32842}<>{32843} and length({32844})>0','SMART: [{#NAME}]: Disk has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','SMART: [{#NAME}]: Disk has been replaced (new serial number received)','7257c02f398f4338ace1eb3a07cb7362',''), ('23189','{32845}>{$SMART.TEMPERATURE.MAX.CRIT}','SMART: [{#NAME}]: Average disk temperature is critical','','0','3','',NULL,'0','2','0','','0','','0','','0','SMART: [{#NAME}]: Average disk temperature is critical (over {$SMART.TEMPERATURE.MAX.CRIT}°C for 5m)','cd09aebe3ca146119cdf5b977bf6b018',''), ('23190','{32846}>{$SMART.TEMPERATURE.MAX.WARN}','SMART: [{#NAME}]: Average disk temperature is too high','','0','2','',NULL,'0','2','0','','0','','0','','0','SMART: [{#NAME}]: Average disk temperature is too high (over {$SMART.TEMPERATURE.MAX.WARN}°C for 5m)','aaa5acb3196b481f894998c0ca5ea165',''), ('23191','{35820}=2 and {35821}=2','SMART: [{#NAME}]: Disk self-test is not passed','','0','4','',NULL,'0','2','0','','0','','0','Result: {ITEM.LASTVALUE1}, test in progress: {ITEM.LASTVALUE2}','0','','5fa97df4012e45279fb55724f617ef4a',''), ('23192','( {32848} = 1 and bitand({32849},8) = 8 ) or ( bitand({32849},8) = 8 and bitand({32849},8) > bitand({32850},8) )','SMART: [{#NAME}]: Check returned "DISK FAILING"','','0','4','SMART status check returned "DISK FAILING".',NULL,'0','2','2','','0','','1','','0','','ec00e4aa70fa4bea92c559e145ca2e18',''), ('23193','( {32851} = 1 and bitand({32852},1) = 1 ) or ( bitand({32852},1) = 1 and bitand({32852},1) > bitand({32853},1) )','SMART: [{#NAME}]: Command line did not parse','','0','4','Command line did not parse.',NULL,'0','2','2','','0','','1','','0','','612c964798d74ab2af23cc6ec5a1d754',''), ('23194','( {32854} = 1 and bitand({32855},2) = 2 ) or ( bitand({32855},2) = 2 and bitand({32855},2) > bitand({32856},2) )','SMART: [{#NAME}]: Device open failed','','0','4','Device open failed, device did not return an IDENTIFY DEVICE structure, or device is in a low-power mode.',NULL,'0','2','2','','0','','1','','0','','3591c8077a894f6b8deaaf8055ca940e',''), ('23195','( {32857} = 1 and bitand({32858},64) = 64 ) or ( bitand({32858},64) = 64 and bitand({32858},64) > bitand({32859},64) )','SMART: [{#NAME}]: Error log contains records','','0','4','The device error log contains records of errors.',NULL,'0','2','2','','0','','1','','0','','b524364e077a4f898a93af34ef4e6e7f',''), ('23196','( {32860} = 1 and bitand({32861},128) = 128 ) or ( bitand({32861},128) = 128 and bitand({32861},128) > bitand({32862},128) )','SMART: [{#NAME}]: Self-test log contains records','','0','4','The device self-test log contains records of errors. [ATA only] Failed self-tests outdated by a newer successful extended self-test are ignored.',NULL,'0','2','2','','0','','1','','0','','5e56f837d39b49a89d1f6ca3c45b5737',''), ('23197','( {32863} = 1 and bitand({32864},32) = 32 ) or ( bitand({32864},32) = 32 and bitand({32864},32) > bitand({32865},32) )','SMART: [{#NAME}]: Some Attributes have been <= threshold','','0','4','SMART status check returned "DISK OK" but we found that some (usage or prefail) Attributes have been <= threshold at some time in the past.',NULL,'0','2','2','','0','','1','','0','','541318ea2fd14fb4a6f8e8a8df1e4d36',''), ('23198','( {32866} = 1 and bitand({32867},4) = 4 ) or ( bitand({32867},4) = 4 and bitand({32867},4) > bitand({32868},4) )','SMART: [{#NAME}]: Some command to the disk failed','','0','4','Some SMART or other ATA command to the disk failed, or there was a checksum error in a SMART data structure.',NULL,'0','2','2','','0','','1','','0','','00eba731f9ae495f9fe38020897c9aef',''), ('23199','( {32869} = 1 and bitand({32870},16) = 16 ) or ( bitand({32870},16) = 16 and bitand({32870},16) > bitand({32871},16) )','SMART: [{#NAME}]: Some prefail Attributes <= threshold','','0','4','We found prefail Attributes <= threshold.',NULL,'0','2','2','','0','','1','','0','','04dc576b815e432a9cf6d8fee6b08bae',''), ('23200','{32872}>90','SMART: [{#NAME}]: NVMe disk percentage using is over 90% of estimated endurance','','0','3','',NULL,'0','2','0','','0','','0','','0','','68f373252bee4f9e8f3b33d04fc1adbd',''), ('23201','{32873}<>{32874} and length({32875})>0','SMART: [{#NAME}]: Disk has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','SMART: [{#NAME}]: Disk has been replaced (new serial number received)','2d5cf100fe094c819d725ee598d37de8',''), ('23202','{32876}>{$SMART.TEMPERATURE.MAX.CRIT}','SMART: [{#NAME}]: Average disk temperature is critical','','0','3','',NULL,'0','2','0','','0','','0','','0','SMART: [{#NAME}]: Average disk temperature is critical (over {$SMART.TEMPERATURE.MAX.CRIT}°C for 5m)','7f46b24934854866849dd758cb5999d5',''), ('23203','{32877}>{$SMART.TEMPERATURE.MAX.WARN}','SMART: [{#NAME}]: Average disk temperature is too high','','0','2','',NULL,'0','2','0','','0','','0','','0','SMART: [{#NAME}]: Average disk temperature is too high (over {$SMART.TEMPERATURE.MAX.WARN}°C for 5m)','c903a37f4b004e1593ef85ac893c3f6c',''), ('23204','{35822}=2 and {35823}=2','SMART: [{#NAME}]: Disk self-test is not passed','','0','4','',NULL,'0','2','0','','0','','0','Result: {ITEM.LASTVALUE1}, test in progress: {ITEM.LASTVALUE2}','0','','304bd042b7644a31bb74a1e71808d196',''), ('23205','{32879}>=2','Docker: Container {#NAME}: Health state container is unhealthy','','0','4','Container health state is unhealthy.',NULL,'0','2','0','','0','','0','{ITEM.LASTVALUE1}','0','','987178603ce84f9292091c6196e89ea4',''), ('23206','{32880} / {32881} > 0.9','Kubernetes nodes: Node [{#NAME}] Limits: Total CPU limits are too high','','0','2','',NULL,'0','2','0','','0','','0','Limits: {ITEM.LASTVALUE1}, Allocatable: {ITEM.LASTVALUE2}','0','Kubernetes nodes: Node [{#NAME}] Limits: Total CPU limits are too high (more than 90% of allocatable)','f64efc13be2c4c53a48de40504cf064d',''), ('23207','{32882} / {32883} > 1','Kubernetes nodes: Node [{#NAME}] Limits: Total CPU limits are too high','','0','3','',NULL,'0','2','0','','0','','0','Limits: {ITEM.LASTVALUE1}, Allocatable: {ITEM.LASTVALUE2}','0','Kubernetes nodes: Node [{#NAME}] Limits: Total CPU limits are too high (more than 100% of allocatable)','4c035b6c85574141832691e7ad264f40',''), ('23208','{32884} / {32885} > 0.9','Kubernetes nodes: Node [{#NAME}] Limits: Total memory limits are too high','','0','2','',NULL,'0','2','0','','0','','0','Limits: {ITEM.LASTVALUE1}, Allocatable: {ITEM.LASTVALUE2}','0','Kubernetes nodes: Node [{#NAME}] Limits: Total memory limits are too high (more than 90% of allocatable)','5d0d803cfbbe42edb7d32d731ae5f741',''), ('23209','{32886} / {32887} > 1','Kubernetes nodes: Node [{#NAME}] Limits: Total memory limits are too high','','0','3','',NULL,'0','2','0','','0','','0','Limits: {ITEM.LASTVALUE1}, Allocatable: {ITEM.LASTVALUE2}','0','Kubernetes nodes: Node [{#NAME}] Limits: Total memory limits are too high (more than 100% of allocatable)','4fa15174194c476899a96fcf233a5aea',''), ('23210','{32888} / {32889} > 0.5','Kubernetes nodes: Node [{#NAME}] Requests: Total CPU requests are too high','','0','2','',NULL,'0','2','0','','0','','0','Requests: {ITEM.LASTVALUE1}, Allocatable: {ITEM.LASTVALUE2}','0','Kubernetes nodes: Node [{#NAME}] Requests: Total CPU requests are too high (more than 50% of allocatable)','256cf876a4674dd09123bb388c1a9d32',''), ('23211','{32890} / {32891} > 0.8','Kubernetes nodes: Node [{#NAME}] Requests: Total CPU requests are too high','','0','3','',NULL,'0','2','0','','0','','0','Requests: {ITEM.LASTVALUE1}, Allocatable: {ITEM.LASTVALUE2}','0','Kubernetes nodes: Node [{#NAME}] Requests: Total CPU requests are too high (more than 80% of allocatable)','7fa6901f620c4b388d550c669089dde2',''), ('23212','{32892} / {32893} > 0.5','Kubernetes nodes: Node [{#NAME}] Requests: Total memory requests are too high','','0','2','',NULL,'0','2','0','','0','','0','Requests: {ITEM.LASTVALUE1}, Allocatable: {ITEM.LASTVALUE2}','0','Kubernetes nodes: Node [{#NAME}] Requests: Total memory requests are too high (more than 50% of allocatable)','d73aa5aa2a9b424789181033630bb432',''), ('23213','{32894} / {32895} > 0.8','Kubernetes nodes: Node [{#NAME}] Requests: Total memory requests are too high','','0','3','',NULL,'0','2','0','','0','','0','Requests: {ITEM.LASTVALUE1}, Allocatable: {ITEM.LASTVALUE2}','0','Kubernetes nodes: Node [{#NAME}] Requests: Total memory requests are too high (more than 80% of allocatable)','ad9a65c4786e48b9a4b77c1214fa2e1f',''), ('23214','{32896}/ {32897} > 0.9','Kubernetes nodes: Node [{#NAME}] Used: Kubelet too many pods','','0','2','Kubelet is running at capacity.',NULL,'0','2','0','','0','','0','Used: {ITEM.LASTVALUE1}, Capacity: {ITEM.LASTVALUE2}','0','Kubernetes nodes: Node [{#NAME}] Used: Kubelet too many pods (more than 95% of capacity)','0126dfbfa9d949499e0f7689b714c855',''), ('23215','{32898}=1','Kubernetes nodes: Node [{#NAME}] Conditions: Pressure exists on the disk size','','0','2','True - pressure exists on the disk size - that is, if the disk capacity is low; otherwise False.',NULL,'0','2','0','','0','','0','','0','Kubernetes nodes: Node [{#NAME}] Conditions: Pressure exists on the disk size (state: {ITEM.VALUE})','4e283f3f104a4239a0b1c24f0313ab95',''), ('23216','{32899}=1','Kubernetes nodes: Node [{#NAME}] Conditions: Pressure exists on the node memory','','0','2','True - pressure exists on the node memory - that is, if the node memory is low; otherwise False',NULL,'0','2','0','','0','','0','','0','Kubernetes nodes: Node [{#NAME}] Conditions: Pressure exists on the node memory (state: {ITEM.VALUE})','f580b6534bf54281912515874ca46cdf',''), ('23217','{32900}=1','Kubernetes nodes: Node [{#NAME}] Conditions: Network is not correctly configured','','0','2','True - the network for the node is not correctly configured, otherwise False',NULL,'0','2','0','','0','','0','','0','Kubernetes nodes: Node [{#NAME}] Conditions: Network is not correctly configured (state: {ITEM.VALUE})','0da0db08077a42668efcc886c155bf4e',''), ('23218','{32901}=1','Kubernetes nodes: Node [{#NAME}] Conditions: Pressure exists on the processes','','0','2','True - pressure exists on the processes - that is, if there are too many processes on the node; otherwise False',NULL,'0','2','0','','0','','0','','0','Kubernetes nodes: Node [{#NAME}] Conditions: Pressure exists on the processes (state: {ITEM.VALUE})','5f6a7fce910e4cf79e9fc778519ad00f',''), ('23219','{32902}<>1','Kubernetes nodes: Node [{#NAME}] Conditions: Is not in Ready state','','0','2','False - if the node is not healthy and is not accepting pods. Unknown - if the node controller has not heard from the node in the last node-monitor-grace-period (default is 40 seconds).',NULL,'0','2','0','','0','','0','','0','Kubernetes nodes: Node [{#NAME}] Conditions: Is not in Ready state (state: {ITEM.VALUE})','02f873ab69fb4df49578cf5e1cbad1b8',''), ('23220','{32903}<10','Kubernetes nodes: Node [{#NAME}] has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','2','0','','0','','0','','0','Kubernetes nodes: Node [{#NAME}] has been restarted (uptime < 10m)','b322a8c9a4404da49c434e78822d6ac5',''), ('23221','{32913}>=2','Kubernetes cluster state: PV [{#NAME}]: PV has failed','','0','2','',NULL,'0','2','0','','0','','0','','0','','ccc486f937bd454e9e7193181a998bdb',''), ('23222','{32914}>=2','Kubernetes cluster state: NS [{#NAMESPACE}] PVC [{#NAME}]: PVC is pending','','0','2','',NULL,'0','2','0','','0','','0','','0','','6cdf93dad1c647239570cbb3789f1a2c',''), ('23223','{33724}>{$ZABBIX.SERVER.UTIL.MAX:"connector manager"}','Zabbix server: Utilization of connector manager processes is high','','0','3','Indicates potential performance issues with the connector manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33724}<{$ZABBIX.SERVER.UTIL.MIN:"connector manager"}','0','','0','','0','Zabbix server: Utilization of connector manager processes over {$ZABBIX.SERVER.UTIL.MAX:"connector manager"}%','5d72f9b951144e6797e19315b3a2da2b',''), ('23224','{33725}>{$ZABBIX.SERVER.UTIL.MAX:"connector worker"}','Zabbix server: Utilization of connector worker processes is high','','0','3','Indicates potential performance issues with the connector worker, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33725}<{$ZABBIX.SERVER.UTIL.MIN:"connector worker"}','0','','0','','0','Zabbix server: Utilization of connector worker processes over {$ZABBIX.SERVER.UTIL.MAX:"connector worker"}%','c6322f7a90d847b5a630bc9c64ce3c1b',''), ('23227','{32924}=3','Zabbix server: Proxy [{#PROXY.NAME}]: Zabbix proxy is not supported','','0','4','Zabbix proxy version is older than server previous LTS release version or server major version is older than proxy major version.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','d3b969b57fc74a2e96b8cf90f3159847',''), ('23229','{33822}>{$ZABBIX.SERVER.UTIL.MAX:"connector manager"}','Zabbix server: Utilization of connector manager processes is high','','0','3','Indicates potential performance issues with the connector manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33822}<{$ZABBIX.SERVER.UTIL.MIN:"connector manager"}','0','','0','','0','Zabbix server: Utilization of connector manager processes over {$ZABBIX.SERVER.UTIL.MAX:"connector manager"}%','abe4c864b41a4a43b2ce963ed55a3f17',''), ('23230','{33823}>{$ZABBIX.SERVER.UTIL.MAX:"connector worker"}','Zabbix server: Utilization of connector worker processes is high','','0','3','Indicates potential performance issues with the connector worker, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33823}<{$ZABBIX.SERVER.UTIL.MIN:"connector worker"}','0','','0','','0','Zabbix server: Utilization of connector worker processes over {$ZABBIX.SERVER.UTIL.MAX:"connector worker"}%','ba984299c08f44b2a99c6fee187bcf01',''), ('23231','{32929}=3','Zabbix server: Proxy [{#PROXY.NAME}]: Zabbix proxy is not supported','','0','4','Zabbix proxy version is older than server previous LTS release version or server major version is older than proxy major version.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','84365975ffa5450db47edd42adbae719',''), ('23232','length({32932})>0','Azure: There are errors in storages requests to API','','0','3','Zabbix has received errors in response to API requests.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','253f0835cd134d2591bb2be1b9dc9b29',''), ('23233','length({32933})>0','Azure Cosmos DB: There are errors in requests to API','','0','3','Zabbix has received errors in response to API requests.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','dfd484aa8a4e4b759e4e34c5318c7176',''), ('23234','({32934})<{$AZURE.DB.COSMOS.MONGO.AVAILABILITY}','Azure Cosmos DB: Cosmos DB for MongoDB account: Availability is low','','0','2','',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','c7649cd317f04a3d8fec0eebe3df6766',''), ('23235','({32935})<{$AZURE.STORAGE.ACC.AVAILABILITY:"{#NAME}"}','Azure: Storage account [{#NAME}]: Availability is low','','0','2','',NULL,'0','2','0','','0','','0','{ITEM.LASTVALUE1}','0','Azure: Storage account [{#NAME} availability is too low (less than {$AZURE.STORAGE.ACC.AVAILABILITY:"{#NAME}"}%)','6a0b3edebded4d848ad76f86f8152377',''), ('23236','({32936})<{$AZURE.STORAGE.ACC.BLOB.AVAILABILITY:"{#NAME}"}','Azure: Storage account [{#NAME}]: Blob Availability is low','','0','2','',NULL,'0','2','0','','0','','0','{ITEM.LASTVALUE1}','0','Azure: Storage account [{#NAME} blob availability are too low (less than {$AZURE.STORAGE.ACC.BLOB.AVAILABILITY:"{#NAME}"}%)','4cd8ac56b50c4120bf9de56bb1f06245',''), ('23237','({32937})<{$AZURE.STORAGE.ACC.TABLE.AVAILABILITY:"{#NAME}"}','Azure: Storage account [{#NAME}]: Table Availability is low','','0','2','',NULL,'0','2','0','','0','','0','{ITEM.LASTVALUE1}','0','Azure: Storage account [{#NAME} table availability is too low (less than {$AZURE.STORAGE.ACC.TABLE.AVAILABILITY:"{#NAME}"}%)','bfb1e82685224048ba8082447cad57ca',''), ('23238','length({32938}) > 0','GCP: Authorization has failed','','0','3','GCP: Authorization has failed. Check the authorization parameters and GCP API availability from a network segment, where Zabbix-server/proxy is located.',NULL,'0','0','0','','0','','0','','0','','74c0e16244314ab4a920e32faca50444',''), ('23239','{32939} >= {$CLOUD_SQL.MSSQL.CPU.UTIL.MAX}','GCP MSSQL: High CPU utilization','','0','3','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE}','0','','b8280e45fea8470e9f36f7f08e4a77e1',''), ('23240','{32940}=0','GCP MSSQL: Database engine is down','','0','3','Database engine is down. If an instance experiences unplanned (non-maintenance) downtime, the instance state will still be RUNNING, but the database engine state metric will report 0.',NULL,'0','0','0','','0','','0','','0','','b3c7b8e2e38a42fe9d2ae3c84b637e53',''), ('23241','{32941} >= {$CLOUD_SQL.MSSQL.DISK.UTIL.CRIT}','GCP MSSQL: Disk space is critically low','','0','3','Critical utilization of the disk space.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE}','0','','2cbc7e3008f24197963df4ea920ab5a8',''), ('23242','{32942} >= {$CLOUD_SQL.MSSQL.DISK.UTIL.WARN}','GCP MSSQL: Disk space is low','','0','2','High utilization of the storage space.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE}','0','','2569abbb94ca4df38cdd4f9d5a5df9fc',''), ('23243','{32943} = 10','GCP MSSQL: Failed to get the instance state','','0','3','Failed to get the instance state. Check access permissions to GCP API or service account.',NULL,'0','0','0','','0','','0','','0','','dff9067ad7de4ab1a4f83c9d482e6b71',''), ('23244','{32944} = 5','GCP MSSQL: Instance is in failed state','','0','3','The instance creation failed, or an operation left the instance in an own bad state.',NULL,'0','0','0','','0','','0','','0','','3d7e054340e94b09b085e508b9b76841',''), ('23245','{32945} = 4','GCP MSSQL: Instance is in maintenance','','0','1','The instance is down for maintenance.',NULL,'0','0','0','','0','','0','','0','','dd395fd3003f4fce847cd72309cdf7ec',''), ('23246','{32946} = 1','GCP MSSQL: Instance is in suspended state','','0','2','The instance is in suspended state. It is not available, for example, due to problems with billing.',NULL,'0','0','0','','0','','0','','0','','3c080bba511e44aab1139b66f00451ee',''), ('23247','{32947} = 6','GCP MSSQL: Instance is in unknown state','','0','3','The state of the instance is unknown.',NULL,'0','0','0','','0','','0','','0','','378b4d62582d416db7cb7fd6ed099ac9',''), ('23248','{32948} = 2','GCP MSSQL: Instance is stopped by the owner','','0','1','The instance has been stopped by the owner. It is not currently running, but it''s ready to be restarted.',NULL,'0','0','0','','0','','0','','0','','72ecba08f6424573a36b816da9695b89',''), ('23249','{32949} >= {$CLOUD_SQL.MSSQL.RAM.UTIL.MAX}','GCP MSSQL: High memory utilization','','0','4','RAM utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE}','0','','c5003533f3524b8b868a0c2f86b1fa9b',''), ('23250','{32950} >= {$CLOUD_SQL.MYSQL.CPU.UTIL.MAX}','GCP MySQL: High CPU utilization','','0','3','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE}','0','','5bf54c01665549c8a05f49db34c86191',''), ('23251','{32951}=0','GCP MySQL: Database engine is down','','0','3','Database engine is down. If an instance experiences unplanned (non-maintenance) downtime, the instance state will still be RUNNING, but the database engine state metric will report 0.',NULL,'0','0','0','','0','','0','','0','','a3eff8c422f5427e9b1c6abb9854f73c',''), ('23252','{32952} >= {$CLOUD_SQL.MYSQL.DISK.UTIL.CRIT}','GCP MySQL: Disk space is critically low','','0','3','Critical utilization of the disk space.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE}','0','','d5ade16fb0494ca6af61100a2e643702',''), ('23253','{32953} >= {$CLOUD_SQL.MYSQL.DISK.UTIL.WARN}','GCP MySQL: Disk space is low','','0','2','High utilization of the storage space.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE}','0','','3b5c84fee47f4376b19d0738b261c01b',''), ('23254','{32954} = 10','GCP MySQL: Failed to get the instance state','','0','3','Failed to get the instance state. Check access permissions to GCP API or service account.',NULL,'0','0','0','','0','','0','','0','','3b3adc89e0bb45a79a824121f49d2d02',''), ('23255','{32955} = 5','GCP MySQL: Instance is in failed state','','0','3','The instance creation failed, or an operation left the instance in an own bad state.',NULL,'0','0','0','','0','','0','','0','','65831fed3d19425c86933db4034ed565',''), ('23256','{32956} = 4','GCP MySQL: Instance is in maintenance','','0','1','The instance is down for maintenance.',NULL,'0','0','0','','0','','0','','0','','fae15d1ab46c418ebfdfdd73fb698b51',''), ('23257','{32957} = 1','GCP MySQL: Instance is in suspended state','','0','2','The instance is in suspended state. It is not available, for example, due to problems with billing.',NULL,'0','0','0','','0','','0','','0','','347215d307c8465cad41198f12b5ff68',''), ('23258','{32958} = 6','GCP MySQL: Instance is in unknown state','','0','3','The state of the instance is unknown.',NULL,'0','0','0','','0','','0','','0','','1387f9a2ef194d5bb5d1e548fc4eb8d3',''), ('23259','{32959} = 2','GCP MySQL: Instance is stopped by the owner','','0','1','The instance has been stopped by the owner. It is not currently running, but it''s ready to be restarted.',NULL,'0','0','0','','0','','0','','0','','9c66317433a24be985559fdb11907c70',''), ('23260','{32960} >= {$CLOUD_SQL.MYSQL.RAM.UTIL.MAX}','GCP MySQL: High memory utilization','','0','4','RAM utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE}','0','','82e3af43d3104b4ba641e0be56d11662',''), ('23261','{32961} >= {$CLOUD_SQL.PGSQL.CPU.UTIL.MAX}','GCP PostgreSQL: High CPU utilization','','0','3','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE}','0','','3ca3942121bd41029645a19fd3947416',''), ('23262','{32962}=0','GCP PostgreSQL: Database engine is down','','0','3','Database engine is down. If an instance experiences unplanned (non-maintenance) downtime, the instance state will still be RUNNING, but the database engine state metric will report 0.',NULL,'0','0','0','','0','','0','','0','','f7b0fc21edcf489ab174eb06dee4fabe',''), ('23263','{32963} >= {$CLOUD_SQL.PGSQL.DISK.UTIL.CRIT}','GCP PostgreSQL: Disk space is critically low','','0','3','Critical utilization of the disk space.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE}','0','','c4fa1d580ffd4546b82605f94da5d2ba',''), ('23264','{32964} >= {$CLOUD_SQL.PGSQL.DISK.UTIL.WARN}','GCP PostgreSQL: Disk space is low','','0','2','High utilization of the storage space.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE}','0','','186a707ca3194c32a894ae809177a7e2',''), ('23265','{32965} = 10','GCP PostgreSQL: Failed to get the instance state','','0','3','Failed to get the instance state. Check access permissions to GCP API or service account.',NULL,'0','0','0','','0','','0','','0','','596020e32d0c4193a6626c960b4b5be8',''), ('23266','{32966} = 5','GCP PostgreSQL: Instance is in failed state','','0','3','The instance creation failed, or an operation left the instance in an own bad state.',NULL,'0','0','0','','0','','0','','0','','1a2efb6f755444c0bab85d2778018eb1',''), ('23267','{32967} = 4','GCP PostgreSQL: Instance is in maintenance','','0','1','The instance is down for maintenance.',NULL,'0','0','0','','0','','0','','0','','aad6fb2d86c84e33868aacbf160c3d65',''), ('23268','{32968} = 1','GCP PostgreSQL: Instance is in suspended state','','0','2','The instance is in suspended state. It is not available, for example, due to problems with billing.',NULL,'0','0','0','','0','','0','','0','','959072ed00c4461196bef71618799b82',''), ('23269','{32969} = 6','GCP PostgreSQL: Instance is in unknown state','','0','3','The state of the instance is unknown.',NULL,'0','0','0','','0','','0','','0','','5f1084f744b444f3b803110baf703973',''), ('23270','{32970} = 2','GCP PostgreSQL: Instance is stopped by the owner','','0','1','The instance has been stopped by the owner. It is not currently running, but it''s ready to be restarted.',NULL,'0','0','0','','0','','0','','0','','fb0df2eb001649febb6fc6513e056fcc',''), ('23271','{32971} >= {$CLOUD_SQL.PGSQL.RAM.UTIL.MAX}','GCP PostgreSQL: High memory utilization','','0','4','RAM utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE}','0','','bbbdbd9c3c5b407491b359f98e4e3fa9',''), ('23272','{32972} >= {$GCE.CPU.UTIL.MAX}','GCP Compute Engine Instance: High CPU utilization','','0','3','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','1','','0','GCP Compute Engine Instance: High CPU utilization (over {$GCE.CPU.UTIL.MAX}% for 15m)','fb8e28649b4947e9a11d891e3126a3a1',''), ('23273','{32973} = 10','GCP Compute Engine Instance: Failed to get the instance state','','0','3','Failed to get the instance state. Check access permissions to GCP API or service account.',NULL,'0','0','0','','0','','1','','0','','96abd48a3e684e1b9b95fdd96d095188',''), ('23274','{32974} = 7','GCP Compute Engine Instance: Instance is in suspended state','','0','1','The VM is in a suspended state. You can resume the VM or delete it.',NULL,'0','0','0','','0','','1','','0','','1223f00a5e4b4bc8aa9e8ec08253c4cc',''), ('23275','{32975} = 4','GCP Compute Engine Instance: The instance is in repairing state','','0','2','The VM is being repaired. Repairing occurs when the VM encounters an internal error or the underlying machine is unavailable due to maintenance. During this time, the VM is unusable.',NULL,'0','0','0','','0','','1','','0','','d2144e2277ec458c80d2b948364f1924',''), ('23276','{32976} = 5','GCP Compute Engine Instance: The instance is in terminated state','','0','3','The VM is stopped. You stopped the VM, or the VM encountered a failure.',NULL,'0','0','0','','0','','1','','0','','4a010c2b1e6f4ec88dbbe97255b9bac4',''), ('23278','{32978} <> 0','GCP: Quota [{#GCE.QUOTA.NAME}] limit has been changed','','0','1','GCP Compute Engine: The limit for the `{#GCE.QUOTA.NAME}` quota has been changed.',NULL,'0','2','0','','0','','1','Current limit: {ITEM.VALUE}','0','','ac0d8842f0934dcead56d41f328c10d2',''), ('23279','{32979} >= {$GCP.GCE.QUOTA.PUSED.MIN.WARN:"{#GCE.QUOTA.NAME}"}','GCP: Quota [{#GCE.QUOTA.NAME}] usage is close to reaching the limit','','0','2','GCP Compute Engine: The usage percentage for the `{#GCE.QUOTA.NAME}` quota is close to reaching the limit.',NULL,'0','2','0','','0','','1','Usage: {#GCE.QUOTA.USAGE} | Limit: {#GCE.QUOTA.LIMIT} | Percentage {ITEM.VALUE}%','0','','ecce0204198d4edda88f84d4f25ba75c',''), ('23280','{32980} >= {$GCP.GCE.QUOTA.PUSED.MIN.CRIT:"{#GCE.QUOTA.NAME}"}','GCP: Quota [{#GCE.QUOTA.NAME}] usage is critically close to reaching the limit','','0','3','GCP Compute Engine: The usage percentage for the `{#GCE.QUOTA.NAME}` quota is critically close to reaching the limit.',NULL,'0','2','0','','0','','1','Usage: {#GCE.QUOTA.USAGE} | Limit: {#GCE.QUOTA.LIMIT} | Percentage {ITEM.VALUE}%','0','','bc894d5e4f694e428fcb32babe87c204',''), ('23282','{33009}>{$ZABBIX.PROXY.UTIL.MAX:"discovery manager"}','Zabbix proxy: Utilization of discovery manager processes is high','','0','3','Indicates potential performance issues with the discovery manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33009}<{$ZABBIX.PROXY.UTIL.MIN:"discovery manager"}','0','','0','','0','Zabbix proxy: Utilization of discovery manager processes over {$ZABBIX.PROXY.UTIL.MAX:"discovery manager"}%','e1dd2821756d489cb5443c924e57c356',''), ('23283','{33010}>{$ZABBIX.PROXY.UTIL.MAX:"discovery worker"}','Zabbix proxy: Utilization of discovery worker processes is high','','0','3','Indicates potential performance issues with the discovery worker, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33010}<{$ZABBIX.PROXY.UTIL.MIN:"discovery worker"}','0','','0','','0','Zabbix proxy: Utilization of discovery worker processes over {$ZABBIX.PROXY.UTIL.MAX:"discovery worker"}%','ff023c3fce664dff9fdcb3f8724f4832',''), ('23284','{33011}>{$ZABBIX.PROXY.UTIL.MAX:"discovery manager"}','Zabbix proxy: Utilization of discovery manager processes is high','','0','3','Indicates potential performance issues with the discovery manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33011}<{$ZABBIX.PROXY.UTIL.MIN:"discovery manager"}','0','','0','','0','Zabbix proxy: Utilization of discovery manager processes over {$ZABBIX.PROXY.UTIL.MAX:"discovery manager"}%','8d0651ac99ba4c28b9525885e04ecb98',''), ('23285','{33012}>{$ZABBIX.PROXY.UTIL.MAX:"discovery worker"}','Zabbix proxy: Utilization of discovery worker processes is high','','0','3','Indicates potential performance issues with the discovery worker, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33012}<{$ZABBIX.PROXY.UTIL.MIN:"discovery worker"}','0','','0','','0','Zabbix proxy: Utilization of discovery worker processes over {$ZABBIX.PROXY.UTIL.MAX:"discovery worker"}%','63c45f37a5cd41c091ba3af451325220',''), ('23286','{33726}>{$ZABBIX.SERVER.UTIL.MAX:"discovery manager"}','Zabbix server: Utilization of discovery manager processes is high','','0','3','Indicates potential performance issues with the discovery manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33726}<{$ZABBIX.SERVER.UTIL.MIN:"discovery manager"}','0','','0','','0','Zabbix server: Utilization of discovery manager processes over {$ZABBIX.SERVER.UTIL.MAX:"discovery manager"}%','5af0558db3264b43981aafa8969ce433',''), ('23287','{33727}>{$ZABBIX.SERVER.UTIL.MAX:"discovery worker"}','Zabbix server: Utilization of discovery worker processes is high','','0','3','Indicates potential performance issues with the discovery worker, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33727}<{$ZABBIX.SERVER.UTIL.MIN:"discovery worker"}','0','','0','','0','Zabbix server: Utilization of discovery worker processes over {$ZABBIX.SERVER.UTIL.MAX:"discovery worker"}%','8dc524466ce04c0e97b613305fee0153',''), ('23290','{33824}>{$ZABBIX.SERVER.UTIL.MAX:"discovery manager"}','Zabbix server: Utilization of discovery manager processes is high','','0','3','Indicates potential performance issues with the discovery manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33824}<{$ZABBIX.SERVER.UTIL.MIN:"discovery manager"}','0','','0','','0','Zabbix server: Utilization of discovery manager processes over {$ZABBIX.SERVER.UTIL.MAX:"discovery manager"}%','96418e054e834497baffbd9ed0a4f6bf',''), ('23291','{33825}>{$ZABBIX.SERVER.UTIL.MAX:"discovery worker"}','Zabbix server: Utilization of discovery worker processes is high','','0','3','Indicates potential performance issues with the discovery worker, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33825}<{$ZABBIX.SERVER.UTIL.MIN:"discovery worker"}','0','','0','','0','Zabbix server: Utilization of discovery worker processes over {$ZABBIX.SERVER.UTIL.MAX:"discovery worker"}%','fd92a81e2c614aa8826f7ff92fad801a',''), ('23292','{33023}>{$ZABBIX.PROXY.UTIL.MAX:"agent poller"}','Zabbix proxy: Utilization of agent poller processes is high','','0','3','Indicates potential performance issues with the agent poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33023}<{$ZABBIX.PROXY.UTIL.MIN:"agent poller"}','0','','0','','0','Zabbix proxy: Utilization of agent poller processes over {$ZABBIX.PROXY.UTIL.MAX:"agent poller"}%','5abbe55bf614492d982e4af0f11b01e2',''), ('23293','{33024}>{$ZABBIX.PROXY.UTIL.MAX:"http agent poller"}','Zabbix proxy: Utilization of http agent poller processes is high','','0','3','Indicates potential performance issues with the http agent poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33024}<{$ZABBIX.PROXY.UTIL.MIN:"http agent poller"}','0','','0','','0','Zabbix proxy: Utilization of http agent poller processes over {$ZABBIX.PROXY.UTIL.MAX:"http agent poller"}%','a5d7a54efea843c495795d14bbff166b',''), ('23294','{33025}>{$ZABBIX.PROXY.UTIL.MAX:"agent poller"}','Zabbix proxy: Utilization of agent poller processes is high','','0','3','Indicates potential performance issues with the agent poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33025}<{$ZABBIX.PROXY.UTIL.MIN:"agent poller"}','0','','0','','0','Zabbix proxy: Utilization of agent poller processes over {$ZABBIX.PROXY.UTIL.MAX:"agent poller"}%','c35b8290fb2840e9bb403f54ad0e7b97',''), ('23295','{33026}>{$ZABBIX.PROXY.UTIL.MAX:"http agent poller"}','Zabbix proxy: Utilization of http agent poller processes is high','','0','3','Indicates potential performance issues with the http agent poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33026}<{$ZABBIX.PROXY.UTIL.MIN:"http agent poller"}','0','','0','','0','Zabbix proxy: Utilization of http agent poller processes over {$ZABBIX.PROXY.UTIL.MAX:"http agent poller"}%','460ddec16c564c6dbc706b21747aa622',''), ('23296','{33027}=1','Zabbix proxy: Failed to fetch stats data','','0','2','Zabbix has not received statistics data for `{$ZABBIX.PROXY.NODATA_TIMEOUT}`.',NULL,'0','0','0','','0','','0','','0','Zabbix proxy: Failed to fetch stats data (or no data for {$ZABBIX.PROXY.NODATA_TIMEOUT})','2f314a33e06444d88fd99b5442b10a9e',''), ('23297','{33718}>{$ZABBIX.SERVER.UTIL.MAX:"agent poller"}','Zabbix server: Utilization of agent poller processes is high','','0','3','Indicates potential performance issues with the agent poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33718}<{$ZABBIX.SERVER.UTIL.MIN:"agent poller"}','0','','0','','0','Zabbix server: Utilization of agent poller processes over {$ZABBIX.SERVER.UTIL.MAX:"agent poller"}%','01c490b526144241930b908b64c92c97',''), ('23298','{33732}>{$ZABBIX.SERVER.UTIL.MAX:"http agent poller"}','Zabbix server: Utilization of http agent poller processes is high','','0','3','Indicates potential performance issues with the http agent poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33732}<{$ZABBIX.SERVER.UTIL.MIN:"http agent poller"}','0','','0','','0','Zabbix server: Utilization of http agent poller processes over {$ZABBIX.SERVER.UTIL.MAX:"http agent poller"}%','3ba6561155df4cebb1111a6f229c483a',''), ('23301','{33816}>{$ZABBIX.SERVER.UTIL.MAX:"agent poller"}','Zabbix server: Utilization of agent poller processes is high','','0','3','Indicates potential performance issues with the agent poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33816}<{$ZABBIX.SERVER.UTIL.MIN:"agent poller"}','0','','0','','0','Zabbix server: Utilization of agent poller processes over {$ZABBIX.SERVER.UTIL.MAX:"agent poller"}%','f47c5db67da54295950939e7f18ed062',''), ('23302','{33830}>{$ZABBIX.SERVER.UTIL.MAX:"http agent poller"}','Zabbix server: Utilization of http agent poller processes is high','','0','3','Indicates potential performance issues with the http agent poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33830}<{$ZABBIX.SERVER.UTIL.MIN:"http agent poller"}','0','','0','','0','Zabbix server: Utilization of http agent poller processes over {$ZABBIX.SERVER.UTIL.MAX:"http agent poller"}%','79604a0e6fe040b391f00d97ad11f56c',''), ('23303','{33034}=1','Zabbix server: Failed to fetch stats data','','0','2','Zabbix has not received statistics data for `{$ZABBIX.SERVER.NODATA_TIMEOUT}`.',NULL,'0','0','0','','0','','0','','0','Zabbix server: Failed to fetch stats data (or no data for {$ZABBIX.SERVER.NODATA_TIMEOUT})','07fbcbe743f84727838c982a51d36441',''), ('23304','length({33035})>0','AWS ECS Cluster: Failed to get alarms data','','0','2','Failed to get CloudWatch alarms for ECS Cluster.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','f8ff542b35a345e490910323d5dee19c',''), ('23305','{33036}>{$AWS.ECS.CLUSTER.CPU.UTIL.WARN}','AWS ECS Cluster: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','AWS ECS Cluster: High CPU utilization (over {$AWS.ECS.CLUSTER.CPU.UTIL.WARN}% for 15m)','5395c1d6d27c495a8972d2ea8ca8b02a',''), ('23306','{33037}>{$AWS.ECS.CLUSTER.MEMORY.UTIL.WARN}','AWS ECS Cluster: High memory utilization','','0','2','The system is running out of free memory.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','AWS ECS Cluster: High memory utilization (over {$AWS.ECS.CLUSTER.MEMORY.UTIL.WARN}% for 15m)','a7df755466704f339e5479aeeca3fe30',''), ('23307','length({33038})>0','AWS ECS Cluster: Failed to get metrics data','','0','2','Failed to get CloudWatch metrics for ECS Cluster.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','b475c468dbe0477f92b40122321235b0',''), ('23308','{33039}=2 and length({33040})>0','AWS ECS Cluster: [{#ALARM_NAME}] has ''Alarm'' state','','0','3','Alarm "{#ALARM_NAME}" has `Alarm` state. Reason: {ITEM.LASTVALUE2}',NULL,'0','2','0','','0','','0','','0','','25d14cc75ade4f7881825d5ab7864ca0',''), ('23309','{33041}=1','AWS ECS Cluster: [{#ALARM_NAME}] has ''Insufficient data'' state','','0','1','Either the alarm has just started, the metric is not available, or not enough data is available for the metric to determine the alarm state.',NULL,'0','2','0','','0','','0','','0','','50061fea24e744298732167898c34e5f',''), ('23310','{33042}>{$AWS.ECS.CLUSTER.SERVICE.CPU.UTIL.WARN}','AWS ECS Cluster: [{#AWS.ECS.SERVICE.NAME}]: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','AWS ECS Cluster: [{#AWS.ECS.SERVICE.NAME}]: High CPU utilization (over {$AWS.ECS.CLUSTER.SERVICE.CPU.UTIL.WARN}% for 15m)','3e8d8d35d5ad4f70ad792fe943a499d2',''), ('23311','{33043}>{$AWS.ECS.CLUSTER.SERVICE.MEMORY.UTIL.WARN}','AWS ECS Cluster: [{#AWS.ECS.SERVICE.NAME}]: High memory utilization','','0','2','The system is running out of free memory.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','AWS ECS Cluster: [{#AWS.ECS.SERVICE.NAME}]: High memory utilization (over {$AWS.ECS.CLUSTER.SERVICE.MEMORY.UTIL.WARN}% for 15m)','a1116a5e75f24b50864a0fb5ea7ad99d',''), ('23312','length({33044})>0','AWS ECS Serverless: Failed to get alarms data','','0','2','Failed to get CloudWatch alarms for ECS Cluster.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','76b9777749a041049faaa469daf82c4e',''), ('23313','{33045}>{$AWS.ECS.CLUSTER.CPU.UTIL.WARN}','AWS ECS Serverless: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','AWS ECS Serverless: High CPU utilization (over {$AWS.ECS.CLUSTER.CPU.UTIL.WARN}% for 15m)','d8b5d12b4c6b4b2386fe2540dc387fa7',''), ('23314','{33046}>{$AWS.ECS.CLUSTER.MEMORY.UTIL.WARN}','AWS ECS Serverless: High memory utilization','','0','2','The system is running out of free memory.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','AWS ECS Serverless: High memory utilization (over {$AWS.ECS.CLUSTER.MEMORY.UTIL.WARN}% for 15m)','2f0d82467a754fada1ab4f38ce2c2c5b',''), ('23315','length({33047})>0','AWS ECS Serverless: Failed to get metrics data','','0','2','Failed to get CloudWatch metrics for ECS Cluster.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','91ce423ddff44f0b8364e6d6470b15c5',''), ('23316','{33048}=2 and length({33049})>0','AWS ECS Serverless: [{#ALARM_NAME}] has ''Alarm'' state','','0','3','Alarm "{#ALARM_NAME}" has ''Alarm'' state. Reason: {ITEM.LASTVALUE2}',NULL,'0','2','0','','0','','0','','0','','64c6b0244f5a49f89465595d74b35880',''), ('23317','{33050}=1','AWS ECS Serverless: [{#ALARM_NAME}] has ''Insufficient data'' state','','0','1','Either the alarm has just started, the metric is not available, or not enough data is available for the metric to determine the alarm state.',NULL,'0','2','0','','0','','0','','0','','78c58e8dddd34d7cbb5a9bdaada6db6d',''), ('23318','{33051}>{$AWS.ECS.CLUSTER.SERVICE.CPU.UTIL.WARN}','AWS ECS Serverless: [{#AWS.ECS.SERVICE.NAME}]: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','AWS ECS Serverless: [{#AWS.ECS.SERVICE.NAME}]: High CPU utilization (over {$AWS.ECS.CLUSTER.SERVICE.CPU.UTIL.WARN}% for 15m)','9c0d75d7b6ad40e18afa52cbcde3c2d9',''), ('23319','{33052}>{$AWS.ECS.CLUSTER.SERVICE.MEMORY.UTIL.WARN}','AWS ECS Serverless: [{#AWS.ECS.SERVICE.NAME}]: High memory utilization','','0','2','The system is running out of free memory.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','AWS ECS Serverless: [{#AWS.ECS.SERVICE.NAME}]: High memory utilization (over {$AWS.ECS.CLUSTER.SERVICE.MEMORY.UTIL.WARN}% for 15m)','7146da954a6d40d4ad8aa83ee3bdb1eb',''), ('23320','{33053} >= {$GCE.RAM.UTIL.MAX}','GCP Compute Engine Instance: High memory utilization','','0','3','RAM utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','','0','GCP Compute Engine Instance: High memory utilization (over {$GCE.RAM.UTIL.MAX}% for 15m)','fa918889bcb84d3886254f00f0df288c',''), ('23321','{33054} >= ({$OPENSTACK.NOVA.INSTANCES.UTIL.WARN} / 100 * {33055})','OpenStack Nova: Current instances count is high','','0','2','Current instances count has exceeded {$OPENSTACK.NOVA.INSTANCES.UTIL.WARN}% of the max available instances count.',NULL,'0','0','0','','0','','0','Current: {ITEM.LASTVALUE1}, MAX: {ITEM.LASTVALUE2}','0','OpenStack Nova: Current instances count is high (used >= {$OPENSTACK.NOVA.INSTANCES.UTIL.WARN}%)','3dbae725014d4f289e20f002f2674dc7',''), ('23322','{33056} >= ({$OPENSTACK.NOVA.INSTANCES.UTIL.HIGH} / 100 * {33057})','OpenStack Nova: Current instances count is too high','','0','4','Current instances count has exceeded {$OPENSTACK.NOVA.INSTANCES.UTIL.HIGH}% of the max available instances count.',NULL,'0','0','0','','0','','0','Current: {ITEM.LASTVALUE1}, MAX: {ITEM.LASTVALUE2}','0','OpenStack Nova: Current instances count is too high (used >= {$OPENSTACK.NOVA.INSTANCES.UTIL.HIGH}%)','22592fabc09d416598fb4fb806048040',''), ('23323','{33058} >= ({$OPENSTACK.NOVA.RAM.UTIL.WARN} / 100 * {33059})','OpenStack Nova: Current RAM usage is high','','0','2','Current RAM usage has exceeded {$OPENSTACK.NOVA.RAM.UTIL.WARN}% of the max available RAM usage.',NULL,'0','0','0','','0','','0','Current: {ITEM.LASTVALUE1}, MAX: {ITEM.LASTVALUE2}','0','OpenStack Nova: Current RAM usage is high (used >= {$OPENSTACK.NOVA.RAM.UTIL.WARN}%)','c9d9eca4b3e540f491210b5c2312e1ba',''), ('23324','{33060} >= ({$OPENSTACK.NOVA.RAM.UTIL.HIGH} / 100 * {33061})','OpenStack Nova: Current RAM usage is too high','','0','4','Current RAM usage has exceeded {$OPENSTACK.NOVA.RAM.UTIL.HIGH}% of the max available RAM usage.',NULL,'0','0','0','','0','','0','Current: {ITEM.LASTVALUE1}, MAX: {ITEM.LASTVALUE2}','0','OpenStack Nova: Current RAM usage is too high (used >= {$OPENSTACK.NOVA.RAM.UTIL.HIGH}%)','9dfd643fb555419c9c3200a07cc7647e',''), ('23325','{33062} >= ({$OPENSTACK.NOVA.CPU.UTIL.WARN} / 100 * {33063})','OpenStack Nova: Current vCPU usage is high','','0','2','Current vCPU usage has exceeded {$OPENSTACK.NOVA.CPU.UTIL.WARN}% of the max available vCPU usage.',NULL,'0','0','0','','0','','0','Current: {ITEM.LASTVALUE1}, MAX: {ITEM.LASTVALUE2}','0','OpenStack Nova: Current vCPU usage is high (used >= {$OPENSTACK.NOVA.CPU.UTIL.WARN}%)','85b1a132602344e39a50ef10b29fca15',''), ('23326','{33064} >= ({$OPENSTACK.NOVA.CPU.UTIL.HIGH} / 100 * {33065})','OpenStack Nova: Current vCPU usage is too high','','0','4','Current vCPU usage has exceeded {$OPENSTACK.NOVA.CPU.UTIL.HIGH}% of the max available vCPU usage.',NULL,'0','0','0','','0','','0','Current: {ITEM.LASTVALUE1}, MAX: {ITEM.LASTVALUE2}','0','OpenStack Nova: Current vCPU usage is too high (used >= {$OPENSTACK.NOVA.CPU.UTIL.HIGH}%)','e62a7fb598b34a0cb5bee6bc0370f7dd',''), ('23327','{33066}=0','OpenStack Nova: Availability zone [{#ZONE_NAME}]: Zone is unavailable','','0','2','Availability zone is not available.',NULL,'0','2','0','','0','','1','Current zone state: {ITEM.LASTVALUE}','0','','0b4865c81de741b8a96574eeb450cf40',''), ('23328','{33067}=0','OpenStack Nova: Hypervisor [{#ID}]:[{#HOSTNAME}]: State is "down"','','0','2','State of the hypervisor is "down".',NULL,'0','2','0','','0','','1','Current state: {ITEM.LASTVALUE}','0','','5fb5ed829d9747499c385d268bf229ea',''), ('23329','{33068}=0','OpenStack Nova: Hypervisor [{#ID}]:[{#HOSTNAME}]: Status is "disabled"','','0','1','Status of the hypervisor is disabled.',NULL,'0','2','0','','0','','1','Current status: {ITEM.LASTVALUE}','0','','5022a6a84f884a31be1ff440a3c14732',''), ('23330','{33069}<>{33070} and length({33069})>0','OpenStack Nova: Hypervisor [{#ID}]:[{#HOSTNAME}]: Version has changed','','0','1','Version of the hypervisor has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','Current version: {ITEM.LASTVALUE}','0','','958ce612bb0a4b1ea67aba594dbd53b3',''), ('23331','{33071}<>{33072} and length({33071})>0','OpenStack Nova: Server [{#SERVER_ID}]:[{#SERVER_NAME}]: Status has changed','','0','1','Status of the server has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','Current status: {ITEM.LASTVALUE}','0','','490262a25fb842c9a9b83a2e0be83654',''), ('23332','{33073}=5','OpenStack Nova: Server [{#SERVER_ID}]:[{#SERVER_NAME}]: Status is "ERROR"','','0','4','Server is in "ERROR" status.',NULL,'0','2','0','','0','','1','Current status: {ITEM.LASTVALUE}','0','','7d2ca81f24154099b3857aeaadef114f',''), ('23333','{33074}=0 and length({33075})>=0','OpenStack Nova: Compute service [{#HOST}]:[{#BINARY}]:[{#ID}]: Status is "disabled"','','0','1','Status of the server is disabled. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','Current state: {ITEM.LASTVALUE1}, disabling reason: "{ITEM.VALUE2}"','0','','177fa631136c4340816ee9e2cf90f1ac',''), ('23334','{33076}=0','OpenStack Nova: Compute service [{#HOST}]:[{#BINARY}]:[{#ID}]: State is "down"','','0','2','State of the service is "down".',NULL,'0','2','0','','0','','1','Current state: {ITEM.LASTVALUE}','0','','9479c68ee2db4104ac44f47931d96929',''), ('23335','{33078} > 18000000','PostgreSQL: Oldest xid is too big','','0','3','',NULL,'0','0','0','','0','','0','','0','','4d32971898d441fb94d5f029649dddfa',''), ('23336','{33079}=0','PostgreSQL: Service is down','','0','4','Last test of a connection was unsuccessful.',NULL,'0','0','0','','0','','0','','0','','758e569b51954fcf82c7cb3fa391c882',''), ('23337','{33080} < 10m','PostgreSQL: Service has been restarted','','0','3','PostgreSQL uptime is less than 10 minutes.',NULL,'0','0','0','','0','','0','','0','PostgreSQL: Service has been restarted (uptime < 10m)','22077f0b0ee54becb43ef9ab808c3e43',''), ('23338','{33081} > {$PG.CONN_TOTAL_PCT.MAX.WARN}','PostgreSQL: Total number of connections is too high','','0','3','Total number of current connections exceeds the limit of {$PG.CONN_TOTAL_PCT.MAX.WARN}% out of the maximum number of concurrent connections to the database server (the "max_connections" setting).',NULL,'0','0','0','','0','','0','','0','PostgreSQL: Total number of connections is too high (over {$PG.CONN_TOTAL_PCT.MAX.WARN}% in 5m)','3b6662191c3b46ac930af02797a7162b',''), ('23339','{33082} > {$PG.CONFLICTS.MAX.WARN:"{#DBNAME}"}','PostgreSQL: DB [{#DBNAME}]: Too many recovery conflicts','','0','3','The primary and standby servers are in many ways loosely connected. Actions on the primary will have an effect on the standby. As a result, there is potential for negative interactions or conflicts between them. https://www.postgresql.org/docs/current/hot-standby.html#HOT-STANDBY-CONFLICT',NULL,'0','2','0','','0','','0','','0','PostgreSQL: DB [{#DBNAME}]: Too many recovery conflicts (over {$PG.CONFLICTS.MAX.WARN:"{#DBNAME}"} in 5m)','8dc225c8a2824e5cb62b0ce4dd11dc1e',''), ('23340','{33083} > {$PG.DEADLOCKS.MAX.WARN:"{#DBNAME}"}','PostgreSQL: DB [{#DBNAME}]: Deadlock occurred','','0','4','Number of deadlocks detected per second exceeds {$PG.DEADLOCKS.MAX.WARN:"{#DBNAME}"} for 5m.',NULL,'0','2','0','','0','','0','','0','PostgreSQL: DB [{#DBNAME}]: Deadlock occurred (over {$PG.DEADLOCKS.MAX.WARN:"{#DBNAME}"} in 5m)','7e9c3fad615448deafbd21abdac7936d',''), ('23341','{33084}>{$PG.SLOW_QUERIES.MAX.WARN:"{#DBNAME}"}','PostgreSQL: DB [{#DBNAME}]: Too many slow queries','','0','2','The number of detected slow queries exceeds the limit of {$PG.SLOW_QUERIES.MAX.WARN:"{#DBNAME}"}.',NULL,'0','2','0','','0','','0','','0','PostgreSQL: DB [{#DBNAME}]: Too many slow queries (over {$PG.SLOW_QUERIES.MAX.WARN:"{#DBNAME}"} in 5m)','bc790cd8e2c24638ad8a6552af1b9bbe',''), ('23342','length({33085})>0','Cisco SD-WAN: Authentication has failed','','0','3','',NULL,'0','0','0','','0','','0','','0','','9f98b660a10a4891910b0e3b42f90403',''), ('23343','length({33086})>0','Cisco SD-WAN: There are errors in the ''Get devices'' metric','','0','2','',NULL,'0','0','0','','0','','0','','0','','9cfcfbb6b6264c19a831a71cc47483a9',''), ('23344','{33087}=1','Cisco SD-WAN: Device certificate is invalid','','0','2','',NULL,'0','0','0','','0','','0','','0','','8a35b69998bd4819b3f9677fd4367d59',''), ('23345','{33088}>{$SDWAN.CPU.UTIL.CRIT}','Cisco SD-WAN: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Cisco SD-WAN: High CPU utilization (over {$SDWAN.CPU.UTIL.CRIT}% for 5m)','58cedf1e3f2e42a8a58d270ca0c385a8',''), ('23346','{33089}<>{33090} and length({33091})>0','Cisco SD-WAN: System name has changed','','0','1','System name has changed. Ack to close.',NULL,'0','0','0','','0','','1','','0','Cisco SD-WAN: System name has changed (new name: {ITEM.VALUE})','8658639567ed4eb5964b4543c5b3debe',''), ('23347','{33092}>{$SDWAN.MEMORY.UTIL.MAX}','Cisco SD-WAN: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Cisco SD-WAN: High memory utilization (>{$SDWAN.MEMORY.UTIL.MAX}% for 5m)','0f30b8dc5ebc44ea98a860b159501f99',''), ('23348','{33093}<>{33094} and length({33095})>0','Cisco SD-WAN: Operating system description has changed','','0','1','Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.',NULL,'0','0','0','','0','','1','','0','','b2c78cb56f7f40cfa8844f3f51293538',''), ('23349','{33096}<>0','Cisco SD-WAN: Device is not reachable','','0','2','Device is not reachable to the vManager and/or the entire network.',NULL,'0','0','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','d35babbd678f44c3a570fc9a896c58dc',''), ('23350','{33097}<>{33098} and length({33099})>0','Cisco SD-WAN: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Cisco SD-WAN: Device has been replaced (new serial number received)','a6ad77fe04684d1fa90fac2164519b31',''), ('23351','{33100}<10m','Cisco SD-WAN: Device has been restarted','','0','1','The host uptime is less than 10 minutes',NULL,'0','0','0','','0','','1','','0','Cisco SD-WAN: {HOST.NAME} has been restarted (uptime < 10m)','08ac00695a6c4e2a80dc9cb16d85de43',''), ('23352','length({33101})>0','Cisco SD-WAN: There are errors in the ''Get device data'' metric','','0','2','',NULL,'0','0','0','','0','','0','','0','','7e9b6cee9ddd47428d01d1a8cadb28fc',''), ('23353','length({33102})>0','Cisco SD-WAN: There are errors in the ''Get interfaces data'' metric','','0','2','',NULL,'0','0','0','','0','','0','','0','','03772a571b5c417297b11a612b48cb81',''), ('23354','length({33103})>0','Cisco SD-WAN: There are errors in the ''Get routes data'' metric','','0','2','',NULL,'0','0','0','','0','','0','','0','','edb75d50551643c999da9e93efd0ff1b',''), ('23355','{33104}<>0 and length({33105})>0','Cisco SD-WAN: Device state is not green','','0','3','The device current state is not green.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}, Reason: {ITEM.LASTVALUE2}','0','','fe3886ed10b94fd6b7cd99cba20809a4',''), ('23356','{33106}<{$SDWAN.MEMORY.AVAILABLE.MIN} and {33107}>0','Cisco SD-WAN: Lack of available memory','','0','3','',NULL,'0','0','0','','0','','0','Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}','0','Cisco SD-WAN: Lack of available memory (<{$SDWAN.MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2})','9e558d5397e34468bd845f3e3f0442ec',''), ('23357','{33108}/{33109}>{$SDWAN.LA.PER.CPU.MAX.WARN} and {33110}>0 and {33111}>0','Cisco SD-WAN: Load average is too high','','0','3','The load average per CPU is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}','0','Cisco SD-WAN: Load average is too high (per CPU load over {$SDWAN.LA.PER.CPU.MAX.WARN} for 5m)','f37b627ac23c411d935d08c1f6dafde9',''), ('23358','{33112}>{$SDWAN.FS.PUSED.MAX.CRIT:"{#FSNAME}"}','Cisco SD-WAN: ["{#FSNAME}"]: Disk space is critically low','','0','3','Utilization of the space is above {$VFS.FS.PUSED.MAX.CRIT:"{{FSNAME}}"}',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE1}','0','Cisco SD-WAN: ["{#FSNAME}"]: Disk space is critically low (used > {$SDWAN.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%)','22a27b82289c4904ba64cd6c8c33450d',''), ('23359','{33113}>{$SDWAN.FS.PUSED.MAX.WARN:"{#FSNAME}"}','Cisco SD-WAN: ["{#FSNAME}"]: Disk space is low','','0','2','Utilization of the space is above {$VFS.FS.PUSED.MAX.CRIT:"{{FSNAME}}"}',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE1}','0','Cisco SD-WAN: ["{#FSNAME}"]: Disk space is low (used > {$SDWAN.FS.PUSED.MAX.WARN:"{#FSNAME}"}%)','ff996c4f86ae4162b4b054e5c5e9b3ee',''), ('23360','{33114}<0 and {33115}>0 and {33116}<>0','Cisco SD-WAN: Interface ["{#IFNAME}"]: Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({33114}>0 and {33117}>0) or {33116}=0','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','0c34bf81f8f64cb7b5eecd2f2c76e1b1',''), ('23361','({33118}>({$SDWAN.IF.UTIL.MAX:"{#IFNAME}"}/100)*{33119} or {33120}>({$SDWAN.IF.UTIL.MAX:"{#IFNAME}"}/100)*{33119}) and {33119}>0','Cisco SD-WAN: Interface ["{#IFNAME}"]: High bandwidth usage','','0','2','The network interface utilization is close to its estimated maximum bandwidth.',NULL,'0','2','1','{33118}<(({$SDWAN.IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{33119} and {33120}<(({$SDWAN.IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{33119}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Cisco SD-WAN: Interface ["{#IFNAME}"]: High bandwidth usage (>{$SDWAN.IF.UTIL.MAX:"{#IFNAME}"}%)','2ba01de4c85346f4af88d6882ea700e2',''), ('23362','{33121}>{$SDWAN.IF.ERRORS.WARN:"{#IFNAME}"} or {33122}>{$SDWAN.IF.ERRORS.WARN:"{#IFNAME}"} or {33123}>{$SDWAN.IF.ERRORS.WARN:"{#IFNAME}"} or {33124}>{$SDWAN.IF.ERRORS.WARN:"{#IFNAME}"}','Cisco SD-WAN: Interface ["{#IFNAME}"]: High error rate','','0','2','It recovers when it is below 80% of the `{$SDWAN.IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{33125}<{$SDWAN.IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {33126}<{$SDWAN.IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {33127}<{$SDWAN.IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {33128}<{$SDWAN.IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Cisco SD-WAN: Interface ["{#IFNAME}"]: High error rate (>{$SDWAN.IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','44d899ec07a549229eedaba42e76c76d',''), ('23363','{$IFCONTROL:"{#IFNAME}"}=1 and {33129}=1 and ({33130}<>{33131})','Cisco SD-WAN: Interface ["{#IFNAME}"]: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operational status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, it does not fire for the ''eternal off'' interfaces). WARNING: If closed manually, it will not fire again on the next poll because of .diff.',NULL,'0','2','1','{33129}<>1 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','cfd9e53fc4ff459ba9aa121b7feb5e7d',''), ('23364','{33132}=0','HashiCorp Nomad: Client nodes API connection has failed','','0','3','Client nodes API connection has failed. Ensure that Nomad API URL and the necessary permissions have been defined correctly, check the service state and network connectivity between Nomad and Zabbix.',NULL,'0','0','0','','0','','1','','0',E'HashiCorp Nomad: Client nodes API connection has failed. HTTP response code: {{ITEM.VALUE}.regsub("HTTP\\/[\\d.]+\\s+(\\d{3})", \\1")}. Response message: {{ITEM.VALUE}.regsub("HTTP\\/[\\d.]+\\s+\\d{3}\\s+(.*)", \\1")}','f2e1cbbf808946ca902c1f378747e936',''), ('23365','{33133}=0','HashiCorp Nomad: Server-related API connection has failed','','0','3','Server-related API connection has failed. Ensure that Nomad API URL and the necessary permissions have been defined correctly, check the service state and network connectivity between Nomad and Zabbix.',NULL,'0','0','0','','0','','1','','0',E'HashiCorp Nomad: Server-related API connection has failed. HTTP response code: {{ITEM.VALUE}.regsub("HTTP\\/[\\d.]+\\s+(\\d{3})", \\1")}. Response message: {{ITEM.VALUE}.regsub("HTTP\\/[\\d.]+\\s+\\d{3}\\s+(.*)", \\1")}','1560c32cb7de4fc8a58cf537c7958205',''), ('23366','{33134} = 0','HashiCorp Nomad Client: Service [rpc] is down','','0','3','Cannot establish the connection to [rpc] service port {$NOMAD.CLIENT.RPC.PORT}. Check the Nomad state and network connectivity between Nomad and Zabbix.',NULL,'0','0','0','','0','','1','Service: rpc, Port: {$NOMAD.CLIENT.RPC.PORT}, State: {ITEM.LASTVALUE}','0','','f368ff4de45e4620963135836eb54092',''), ('23367','{33135} = 0','HashiCorp Nomad Client: Service [serf] is down','','0','3','Cannot establish the connection to [serf] service port {$NOMAD.CLIENT.SERF.PORT}. Check the Nomad state and network connectivity between Nomad and Zabbix.',NULL,'0','0','0','','0','','1','Service: serf, Port: {$NOMAD.CLIENT.SERF.PORT}, State: {ITEM.LASTVALUE}','0','','0108c9f85b48433c8b9864e41458994f',''), ('23368','{33136} > 0','HashiCorp Nomad Client: OOM killed allocations found','','0','2','OOM killed allocations found.',NULL,'0','0','0','','0','','1','OOM killed: {ITEM.LASTVALUE}','0','','747de32c46cb4d95851cee8a30c576b0',''), ('23369','{33137} >= {$NOMAD.CPU.UTIL.MIN}','HashiCorp Nomad Client: High CPU utilization','','0','3','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE}','0','HashiCorp Nomad Client: High CPU utilization: (over >= {$NOMAD.CPU.UTIL.MIN}% over last 10m)','59db4f1d22cb48fab0ced8ad9ec39a25',''), ('23370','{33138}=0','HashiCorp Nomad Client: Monitoring API connection has failed','','0','3','Monitoring API connection has failed. Ensure that Nomad API URL and the necessary permissions have been defined correctly, check the service state and network connectivity between Nomad and Zabbix.',NULL,'0','0','0','','0','','1','','0',E'HashiCorp Nomad Client: Monitoring API connection has failed. HTTP response code: {{ITEM.VALUE}.regsub("HTTP\\/[\\d.]+\\s+(\\d{3})", \\1")}. Response message: {{ITEM.VALUE}.regsub("HTTP\\/[\\d.]+\\s+\\d{3}\\s+(.*)", \\1")}','676e1535cde2424cbda78f18cd9084bf',''), ('23371','{33139}=0','HashiCorp Nomad Client: Allocations API connection has failed','','0','3','Allocations API connection has failed. Ensure that Nomad API URL and the necessary permissions have been defined correctly, check the service state and network connectivity between Nomad and Zabbix.',NULL,'0','0','0','','0','','1','','0',E'HashiCorp Nomad Client: Allocations API connection has failed. HTTP response code: {{ITEM.VALUE}.regsub("HTTP\\/[\\d.]+\\s+(\\d{3})", \\1")}. Response message: {{ITEM.VALUE}.regsub("HTTP\\/[\\d.]+\\s+\\d{3}\\s+(.*)", \\1")}','300f5fba0f45465aa6868a3f1d16633d',''), ('23372','{33140}=0','HashiCorp Nomad Client: Nodes API connection has failed','','0','3','Nodes API connection has failed. Ensure that Nomad API URL and the necessary permissions have been defined correctly, check the service state and network connectivity between Nomad and Zabbix.',NULL,'0','0','0','','0','','1','','0',E'HashiCorp Nomad Client: Nodes API connection has failed. HTTP response code: {{ITEM.VALUE}.regsub("HTTP\\/[\\d.]+\\s+(\\d{3})", \\1")}. Response message: {{ITEM.VALUE}.regsub("HTTP\\/[\\d.]+\\s+\\d{3}\\s+(.*)", \\1")}','3ea14e12d6154492a4505c4b51003ed3',''), ('23373','{33141} < 10m','HashiCorp Nomad Client: The host has been restarted','','0','2','The host uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','HashiCorp Nomad Client: The host has been restarted: (uptime < 10m)','74fe77871e8c4161b5944f30dd4d1c84',''), ('23374','{33142}<>0','HashiCorp Nomad Client: Nomad client version has changed','','0','1','Nomad client version has changed.',NULL,'0','0','0','','0','','1','','0','HashiCorp Nomad Client: Nomad client version has changed to {ITEM.LASTVALUE}','afac97bced6f49bc994ae633b662722c',''), ('23375','{33143} = 0','HashiCorp Nomad Server: Service [rpc] is down','','0','3','Cannot establish the connection to [rpc] service port {$NOMAD.SERVER.RPC.PORT}. Check the Nomad state and network connectivity between Nomad and Zabbix.',NULL,'0','0','0','','0','','1','Service: rpc, Port: {$NOMAD.SERVER.RPC.PORT}, State: {ITEM.LASTVALUE}','0','','0b534fa4c6cd4e89bd0a44ca8e810fa2',''), ('23376','{33144} = 0','HashiCorp Nomad Server: Service [serf] is down','','0','3','Cannot establish the connection to [serf] service port {$NOMAD.SERVER.SERF.PORT}. Check the Nomad state and network connectivity between Nomad and Zabbix.',NULL,'0','0','0','','0','','1','Service: serf, Port: {$NOMAD.SERVER.SERF.PORT}, State: {ITEM.LASTVALUE}','0','','00799e8927b547308fc9caab4ba2d24d',''), ('23377','{33145} < {$NOMAD.REDUNDANCY.MIN} and {33146} = 0','HashiCorp Nomad Server: Autopilot redundancy is low','','0','2','The autopilot redundancy is low. Cluster crash risk is high due to one more server failure.',NULL,'0','0','0','','0','','1','','0','HashiCorp Nomad Server: Autopilot redundancy is low (less than {$NOMAD.REDUNDANCY.MIN})','fbb6d007481a4aab8d107a1d25a8c7ad',''), ('23378','{33147} = 0 and {33148} = 0','HashiCorp Nomad Server: Autopilot is unhealthy','','0','3','The autopilot is in unhealthy state. The successful failover probability is extremely low.',NULL,'0','0','0','','0','','1','','0','','73c14eec055e47c6af6d8728ba0fb416',''), ('23379','{33149}=0','HashiCorp Nomad Server: Monitoring API connection has failed','','0','3','Monitoring API connection has failed. Ensure that Nomad API URL and the necessary permissions have been defined correctly, check the service state and network connectivity between Nomad and Zabbix.',NULL,'0','0','0','','0','','1','','0',E'HashiCorp Nomad Server: Monitoring API connection has failed. HTTP response code: {{ITEM.VALUE}.regsub("HTTP\\/[\\d.]+\\s+(\\d{3})", \\1")}. Response message: {{ITEM.VALUE}.regsub("HTTP\\/[\\d.]+\\s+\\d{3}\\s+(.*)", \\1")}','9dc8cd0bcbad4ee7a2afe45e33db53a7',''), ('23380','{33150} > 0 and {33151} = 0','HashiCorp Nomad Server: Dead jobs found','','0','2','Jobs with the `Dead` state discovered. Check the {$NOMAD.SERVER.API.SCHEME}://{HOST.IP}:{$NOMAD.SERVER.API.PORT}/v1/jobs URL for the details.',NULL,'0','0','0','','0','','1','Current amount: {ITEM.LASTVALUE}','0','','44dcd52ebf54404e871501a4c4825424',''), ('23381','{33152} <> 0','HashiCorp Nomad Server: Cluster role has changed','','0','1','Cluster role has changed.',NULL,'0','0','0','','0','','1','','0','HashiCorp Nomad Server: Cluster role has changed to {ITEM.LASTVALUE}','1bc6ee807acd4532a58b4527f8865c1c',''), ('23382','{33153} >= {$NOMAD.SERVER.LEADER.LATENCY} and {33154} = 0','HashiCorp Nomad Server: Leader last contact timeout exceeded','','0','2','The nomad.raft.leader.lastContact metric is a general indicator of Raft latency which can be used to observe how Raft timing is performing and guide infrastructure provisioning. If this number trends upwards, look at CPU, disk IOPs, and network latency. nomad.raft.leader.lastContact should not get too close to the leader lease timeout of 500ms.',NULL,'0','0','0','','0','','0','','0','HashiCorp Nomad Server: Leader last contact timeout exceeded: over {$NOMAD.SERVER.LEADER.LATENCY} for the last 5 minutes','65c69469e9354e81a632485a74bc711d',''), ('23383','{33155}=0','HashiCorp Nomad Server: Internal stats API connection has failed','','0','3','Internal stats API connection has failed. Ensure that Nomad API URL and the necessary permissions have been defined correctly, check the service state and network connectivity between Nomad and Zabbix.',NULL,'0','0','0','','0','','1','','0',E'HashiCorp Nomad Server: Internal stats API connection has failed. HTTP response code: {{ITEM.VALUE}.regsub("HTTP\\/[\\d.]+\\s+(\\d{3})", \\1")}. Response message: {{ITEM.VALUE}.regsub("HTTP\\/[\\d.]+\\s+\\d{3}\\s+(.*)", \\1")}','b60dd78bd2d24c22afec63a8b420bcd6',''), ('23384','{33156}<>0','HashiCorp Nomad Server: Nomad server version has changed','','0','1','Nomad server version has changed.',NULL,'0','0','0','','0','','1','','0','HashiCorp Nomad Server: Nomad server version has changed to {ITEM.LASTVALUE}','3c7dfd5ec21144b6b58c603d60142200',''), ('23385','({33157} / {33158})*100 <= {$NOMAD.RAM.AVAIL.MIN}','HashiCorp Nomad Client: High memory utilization','','0','3','RAM utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','RAM available: {ITEM.LASTVALUE1}, RAM total: {ITEM.LASTVALUE2}','0','HashiCorp Nomad Client: High memory utilization: (available < {$NOMAD.RAM.AVAIL.MIN}% over last 10m)','d41ae1c102d84eab9629565bcc9b51df',''), ('23386','{33159}/{33160}*100>{$NOMAD.OPEN.FDS.MAX}','HashiCorp Nomad Server: Current number of open files is too high','','0','2','Heavy file descriptor usage (i.e., near the process file descriptor limit) indicates a potential file descriptor exhaustion issue.',NULL,'0','0','0','','0','','0','','0','HashiCorp Nomad Server: Current number of open files is too high (over {$NOMAD.OPEN.FDS.MAX}% for 5m)','9b6d779864144e4e9e5e9924658d763e',''), ('23387','{33161} >= {$NOMAD.INODES.FREE.MIN.CRIT:"{#DEV.NAME}"}','HashiCorp Nomad Client: Running out of free inodes on [{#DEV.NAME}] device','','0','3','It may become impossible to write to a disk if there are no index nodes left. The following error messages may be returned as symptoms, even though the free space: - No space left on device; - Disk is full.',NULL,'0','2','0','','0','','1','Free inodes: {ITEM.VALUE}','0','HashiCorp Nomad Client: Running out of free inodes on [{#DEV.NAME}] (free < {$NOMAD.INODES.FREE.MIN.CRIT:"{#DEV.NAME}"}%)','433c2227305a4aeb82eb1d390621a81e',''), ('23388','{33162} >= {$NOMAD.INODES.FREE.MIN.WARN:"{#DEV.NAME}"}','HashiCorp Nomad Client: Running out of free inodes on [{#DEV.NAME}] device','','0','2','It may become impossible to write to a disk if there are no index nodes left. The following error messages may be returned as symptoms, even though the free space: - No space left on device; - Disk is full.',NULL,'0','2','0','','0','','1','Free inodes: {ITEM.VALUE}','0','HashiCorp Nomad Client: Running out of free inodes on [{#DEV.NAME}] (free < {$NOMAD.INODES.FREE.MIN.WARN:"{#DEV.NAME}"}%)','d0f2aacaada545c4a81d35f0eb454532',''), ('23389','{33163} >= {$NOMAD.DISK.UTIL.MIN.CRIT:"{#DEV.NAME}"}','HashiCorp Nomad Client: High disk [{#DEV.NAME}] utilization','','0','3','High disk [{#DEV.NAME}] utilization.',NULL,'0','2','0','','0','','1','Current utilization: {ITEM.LASTVALUE}','0','HashiCorp Nomad Client: Disk [{#DEV.NAME}] space low (utilization: >= {$NOMAD.DISK.UTIL.MIN.CRIT:"{#DEV.NAME}"}%)','b3e22e93d51a4a8d825b0bd2e45fc7a2',''), ('23390','{33164} >= {$NOMAD.DISK.UTIL.MIN.WARN:"{#DEV.NAME}"}','HashiCorp Nomad Client: High disk [{#DEV.NAME}] utilization','','0','2','High disk [{#DEV.NAME}] utilization.',NULL,'0','2','0','','0','','1','Current utilization: {ITEM.LASTVALUE}','0','HashiCorp Nomad Client: Disk [{#DEV.NAME}] space low (utilization: >= {$NOMAD.DISK.UTIL.MIN.WARN:"{#DEV.NAME}"}%)','05c3e6cd711f4a98a21c581a4437ffb5',''), ('23391','{33165} = 0 and {33166} = 1','HashiCorp Nomad Client: Driver [{#DRIVER.NAME}] is in unhealthy state','','0','2','The [{#DRIVER.NAME}] driver detected, but its state is unhealthy.',NULL,'0','2','0','','0','','1','','0','','5630f8b3585f4f5b8faf4a30d95755b8',''), ('23392','{33167} <> 0','HashiCorp Nomad Client: Driver [{#DRIVER.NAME}] detection state has changed','','0','1','The [{#DRIVER.NAME}] driver detection state has changed.',NULL,'0','2','0','','0','','1','Current state: {ITEM.LASTVALUE}','0','','576192afab06466f80c95c1b17c1e6fa',''), ('23393','{33168}>{$ZABBIX.PROXY.UTIL.MAX:"snmp poller"}','Zabbix proxy: Utilization of snmp poller processes is high','','0','3','Indicates potential performance issues with the snmp poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33168}<{$ZABBIX.PROXY.UTIL.MIN:"snmp poller"}','0','','0','','0','Zabbix proxy: Utilization of snmp poller processes over {$ZABBIX.PROXY.UTIL.MAX:"snmp poller"}%','811e08cb2382482db4054a4665e328d7',''), ('23394','{33169}>{$ZABBIX.PROXY.UTIL.MAX:"snmp poller"}','Zabbix proxy: Utilization of snmp poller processes is high','','0','3','Indicates potential performance issues with the snmp poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33169}<{$ZABBIX.PROXY.UTIL.MIN:"snmp poller"}','0','','0','','0','Zabbix proxy: Utilization of snmp poller processes over {$ZABBIX.PROXY.UTIL.MAX:"snmp poller"}%','e9c89574068443f89c369df8618506e6',''), ('23395','{33749}>{$ZABBIX.SERVER.UTIL.MAX:"snmp poller"}','Zabbix server: Utilization of snmp poller processes is high','','0','3','Indicates potential performance issues with the snmp poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33749}<{$ZABBIX.SERVER.UTIL.MIN:"snmp poller"}','0','','0','','0','Zabbix server: Utilization of snmp poller processes over {$ZABBIX.SERVER.UTIL.MAX:"snmp poller"}%','3fab1765b54b4036a03ca1fb69763e81',''), ('23397','{33847}>{$ZABBIX.SERVER.UTIL.MAX:"snmp poller"}','Zabbix server: Utilization of snmp poller processes is high','','0','3','Indicates potential performance issues with the snmp poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33847}<{$ZABBIX.SERVER.UTIL.MIN:"snmp poller"}','0','','0','','0','Zabbix server: Utilization of snmp poller processes over {$ZABBIX.SERVER.UTIL.MAX:"snmp poller"}%','18407657b6a647e292a3625180ccb313',''), ('23398','{33173}=3','Acronis: Alert [{#TYPE}]:[{#ALERT_ID}]: Alert has "critical" severity','','0','4','Alert has "critical" severity.',NULL,'0','2','0','','0','','1','Alert type: {#TYPE}, Current status: {ITEM.LASTVALUE}','0','Acronis: Alert [{#ALERT_ID}]: "critical" severity','f72a128c289540869ceeb4eb8a32519b',''), ('23399','{33174}=2','Acronis: Alert [{#TYPE}]:[{#ALERT_ID}]: Alert has "error" severity','','0','3','Alert has "error" severity.',NULL,'0','2','0','','0','','1','Alert type: {#TYPE}, Current status: {ITEM.LASTVALUE}','0','Acronis: Alert [{#ALERT_ID}]: "error" severity','360fcc25d3fe442194ddea76db8157be',''), ('23400','{33175}=1','Acronis: Alert [{#TYPE}]:[{#ALERT_ID}]: Alert has "warning" severity','','0','2','Alert has "warning" severity.',NULL,'0','2','0','','0','','1','Alert type: {#TYPE}, Current status: {ITEM.LASTVALUE}','0','Acronis: Alert [{#ALERT_ID}]: "warning" severity','687b26d91e6e448d911663f190328fb4',''), ('23401','{33176}<>{33177}','Acronis: Device [{#NAME}]:[{#ID}]: Previous machine backup run not successful','','0','3','Previous machine backup did not run successfully.',NULL,'0','2','0','','0','','1','Last scan: {ITEM.LASTVALUE2}, Last OK scan: {ITEM.LASTVALUE1}','0','','f0a9c94a81ef4018a76b73cb98780f1f',''), ('23402','{33178}<>{33179}','Acronis: Device [{#NAME}]:[{#ID}]: Previous patch management run not successful','','0','3','Previous patch management run did not run successfully.',NULL,'0','2','0','','0','','1','Last scan: {ITEM.LASTVALUE2}, Last OK scan: {ITEM.LASTVALUE1}','0','','5ce3f0bc18cd40878059b48ba436fa6d',''), ('23403','{33180}<>{33181}','Acronis: Device [{#NAME}]:[{#ID}]: Previous protection scan not successful','','0','3','Device has "error" protection status.',NULL,'0','2','0','','0','','1','Last scan: {ITEM.LASTVALUE2}, Last OK scan: {ITEM.LASTVALUE1}','0','','b0341da543c34c9491863a6fb8caea0c',''), ('23404','{33182}<>{33183}','Acronis: Device [{#NAME}]:[{#ID}]: Previous vulnerability assessment not successful','','0','3','Previous vulnerability assessment did not run successfully.',NULL,'0','2','0','','0','','1','Last scan: {ITEM.LASTVALUE2}, Last OK scan: {ITEM.LASTVALUE1}','0','','3c0f47531c1a435eb93d01107a6e0b3d',''), ('23405','{33184} < 1','Acronis: Device [{#NAME}]:[{#ID}]: Agent disabled','','0','1','Agent for this device is disabled for at least 3 minutes.',NULL,'0','2','0','','0','','1','Current score: {ITEM.LASTVALUE}','0','','7e33ba82ad90436c88beee8d32a3f29d',''), ('23406','{33389} < (now() + {$ACRONIS.CPC.OFFSET.SCHEDULED.BACKUP})','Acronis: Device [{#NAME}]:[{#ID}]: Scheduled machine backup failed to run','','0','2','Scheduled machine backup failed to run.',NULL,'0','2','0','','0','','1','Scheduled: {ITEM.LASTVALUE1}','0','','6a2c53a89d7748f89956464849d0b7de',''), ('23407','{33186} < {$ACRONIS.CPC.CYBERFIT.HIGH} and {33187} <> -1','Acronis: Device [{#NAME}]:[{#ID}]: CyberFit score critical','','0','4','CyberFit score for this device is critical for at least 3 minutes.',NULL,'0','2','0','','0','','1','Current score: {ITEM.LASTVALUE}','0','','0c7edd6256fc48c49316644faef8df0a',''), ('23408','{33188} < {$ACRONIS.CPC.CYBERFIT.WARN} and {33189} <> -1','Acronis: Device [{#NAME}]:[{#ID}]: CyberFit score low','','0','2','CyberFit score for this device is low for at least 3 minutes.',NULL,'0','2','0','','0','','1','Current score: {ITEM.LASTVALUE}','0','','4c841b8207d642b28dbd365983aac0ec',''), ('23409','{33390} < (now() + {$ACRONIS.CPC.OFFSET.SCHEDULED.PATCH})','Acronis: Device [{#NAME}]:[{#ID}]: Scheduled patch management failed to run','','0','2','Scheduled patch management failed to run.',NULL,'0','2','0','','0','','1','Scheduled: {ITEM.LASTVALUE1}','0','','7f82e95335b746c1a061b0ae811165a7',''), ('23410','{33391} < (now() + {$ACRONIS.CPC.OFFSET.SCHEDULED.ANTIMALWARE})','Acronis: Device [{#NAME}]:[{#ID}]: Scheduled antimalware scan failed to run','','0','2','Scheduled antimalware scan failed to run.',NULL,'0','2','0','','0','','1','Scheduled: {ITEM.LASTVALUE1}','0','','75156ffdb1ed4b90b594e50bce8752e5',''), ('23411','{33192}="error"','Acronis: Device [{#NAME}]:[{#ID}]: Protection status "error"','','0','3','Device has "error" protection status.',NULL,'0','2','0','','0','','1','Current status: {ITEM.LASTVALUE}','0','','0c38a47343cb4df4bda534982f344c15',''), ('23412','{33193}="warning"','Acronis: Device [{#NAME}]:[{#ID}]: Protection status "warning"','','0','2','Device has "warning" protection status.',NULL,'0','2','0','','0','','1','Current status: {ITEM.LASTVALUE}','0','','3338e8c43c2149819e0a48156d6ec21a',''), ('23413','{33392} < (now() + {$ACRONIS.CPC.OFFSET.SCHEDULED.VULNERABILITY})','Acronis: Device [{#NAME}]:[{#ID}]: Scheduled vulnerability assessment failed to run','','0','2','Scheduled vulnerability assessment failed to run.',NULL,'0','2','0','','0','','1','Scheduled: {ITEM.LASTVALUE1}','0','','b71001b751594fc5b4b9b38673133171',''), ('23414','{33195}<>0','Nextcloud: Number of installed apps has been changed','','0','1','Applications have been installed or removed.',NULL,'0','0','0','','0','','1','','0','','b0375ab303e74e7cadd911a4a2e98725',''), ('23415','{33196}<>0','Nextcloud: Application updates are available','','0','2','Updates are available for some of the installed applications.',NULL,'0','0','0','','0','','1','','0','','180c82d98b694f27bc44d1fc20ccd06e',''), ('23416','{33197} > {$NEXTCLOUD.CPU.LOAD.MAX}','Nextcloud: CPU load is too high','','0','3','High CPU load.',NULL,'0','0','0','','0','','0','','0','Nextcloud: CPU load is too high (over {$NEXTCLOUD.CPU.LOAD.MAX} for 5m)','481edcbc45174b35a2d44003aa101817',''), ('23417','{33198}=1 and length({33199})>0','Nextcloud: Database version has changed','','0','1','The Database version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Nextcloud: Database version has changed (new version: {ITEM.VALUE})','d59f8e583cc34c578946607433d254ca',''), ('23418','{33200}<{$NEXTCLOUD.STORAGE.FREE.MIN}','Nextcloud: Disk space is low','','0','3','Condition should be the following: - the disk free space is less than `{$NEXTCLOUD.STORAGE.FREE.MIN}`;',NULL,'0','0','0','','0','','1','','0','Nextcloud: Disk space is low (free < {$NEXTCLOUD.STORAGE.FREE.MIN})','6d9d52db83e34d83891cc3bb449d59b2',''), ('23419','{33201} > {$NEXTCLOUD.MEM.PUSED.MAX}','Nextcloud: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','Nextcloud: High memory utilization (>{$NEXTCLOUD.MEM.PUSED.MAX}% for 5m)','b1f8786b975c443bac5daf351c29cde5',''), ('23420','{33202} > {$NEXTCLOUD.PHP.MEM.PUSED.MAX}','Nextcloud: High PHP memory utilization','','0','3','The PHP is running out of free memory.',NULL,'0','0','0','','0','','0','','0','Nextcloud: High PHP memory utilization (>{$NEXTCLOUD.PHP.MEM.PUSED.MAX}% for 5m)','ee778919cf91495da4445974afa039e9',''), ('23421','{33203}=1 and length({33204})>0','Nextcloud: PHP version has changed','','0','1','The PHP version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Nextcloud: PHP version has changed (new version: {ITEM.VALUE})','ff6e12cb84bb494a9ffc692b28862a25',''), ('23422','{33205}<>"OK"','Nextcloud: Server information unavailable','','0','4','Failed to get server information.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE}','0','','b44c435b48264626ae2ec5cb610edac9',''), ('23423','{33206} > {$NEXTCLOUD.SWAP.PUSED.MAX}','Nextcloud: High swap utilization','','0','3','The system is running out of free swap.',NULL,'0','0','0','','0','','0','','0','Nextcloud: High swap utilization (>{$NEXTCLOUD.SWAP.PUSED.MAX}% for 5m)','da09c1862385450196651573aec00178',''), ('23424','{33207}=1 and length({33208})>0','Nextcloud: Version has changed','','0','1','Nextcloud version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Nextcloud: Version has changed (new version: {ITEM.VALUE})','e66591237ce643b0971e69b18a88a7cc',''), ('23425','{33209} = 1','Nextcloud: User "{#NEXTCLOUD.USER}" status changed','','0','1','User account status has changed.',NULL,'0','2','0','','0','','0','','0','','402851b8791c4f6da8f513e6e8c51f46',''), ('23426','{33210} > {$NEXTCLOUD.USER.MAX.INACTIVE:"{#NEXTCLOUD.USER}"}','Nextcloud: User "{#NEXTCLOUD.USER}": inactive','','0','1','The user has not logged in for more than {$NEXTCLOUD.USER.MAX.INACTIVE:"{#NEXTCLOUD.USER}"} days.',NULL,'0','2','0','','0','','0','','0','Nextcloud: User "{#NEXTCLOUD.USER}": inactive over {$NEXTCLOUD.USER.MAX.INACTIVE:"{#NEXTCLOUD.USER}"} days','d2392d1b6e974a2da32de3a1f20f54a6',''), ('23427','{33211} > {$NEXTCLOUD.USER.QUOTA.PUSED.MAX:"{#NEXTCLOUD.USER}"}','Nextcloud: User "{#NEXTCLOUD.USER}": High quota utilization','','0','2','More than {$NEXTCLOUD.USER.QUOTA.PUSED.MAX:"{#NEXTCLOUD.USER}"} percent of the allocated storage space has been used.',NULL,'0','2','0','','0','','0','','0','Nextcloud: User "{#NEXTCLOUD.USER}" High quota utilization (>{$NEXTCLOUD.USER.QUOTA.PUSED.MAX:"{#NEXTCLOUD.USER}"}% for 5m)','e39849b5b7394bd88002441afa27907c',''), ('23428','{33309}>=3','Meraki: VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: High average VPN connection loss (over >= {$MERAKI.VPN.LOSS.PERCENTILE%)','','0','3','',NULL,'0','2','0','','0','','0','{ITEM.LASTVALUE1}','0','Meraki: VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: High average VPN connection loss (over >= {$MERAKI.VPN.LOSS.PERCENTILE%)','3e3b9cdada9d451ea4be287bafd03cf4',''), ('23429','{33213}<>{33214} and length({33215})>0','PostgreSQL: Version has changed','','0','1','',NULL,'0','0','0','','0','','0','','0','PostgreSQL: Version has changed (new version value received: {ITEM.VALUE})','6b3ac2a19e114e1390e6e0793728f576',''), ('23430','{33216}<>{33217} and length({33218})>0','PostgreSQL: Version has changed','','0','1','',NULL,'0','0','0','','0','','0','','0','PostgreSQL: Version has changed (new version value received: {ITEM.VALUE})','fd409b64f83943edaf43845a12bf8ace',''), ('23431','{33219}=0','FortiGate: Unexpected response from API','','0','3','Received an unexpected response from API. It may be unavailable.',NULL,'0','0','0','','0','','0','','0','','8b8c03f1497f4f18a417d103267d2947',''), ('23432','{33220}>{$CPU.UTIL.WARN}','FortiGate: CPU utilization is high','','0','2','The CPU utilization is high.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','FortiGate: High CPU utilization (over {$CPU.UTIL.WARN}% for 5m)','4698d35fa5e242ef828ac4e3dba5bc09',''), ('23433','{33221}>{$CPU.UTIL.CRIT}','FortiGate: CPU utilization is too high','','0','4','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','FortiGate: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','170087cd8ebf4fc29093e5c1dbd86fea',''), ('23434','{$FIRMWARE.UPDATES.CONTROL}=1 and {33222}>0','FortiGate: New available firmware found','','0','1','New available firmware versions found to download. This trigger expression works as follows: 1. It can be triggered if there are one or more available firmware versions. 2. `{$FIRMWARE.UPDATES.CONTROL}=1` - a user can redefine context macro to value - 0. That marks this notification as not important. No new trigger will be fired if new firmware is found.',NULL,'0','0','0','','0','','1','','0','','da4a8352ffb94c15a62523a0b97460c4',''), ('23435','{33223}<>{33224} and length({33225})>0','FortiGate: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','FortiGate: Device has been replaced (new serial number received)','1426177b905e442fb2cdd963e8e8bba1',''), ('23436','length({33226})>0 and length({33227})>0 and {33228}=0','FortiGate: There are errors in the ''Get firmware info'' metric','','0','2','',NULL,'0','0','0','','0','','0','','0','','c4ab39fa9c104eaa8f9c5da529e416d8',''), ('23437','(100-{33229})<{$DISK.FREE.WARN}','FortiGate: Free disk space is low','','0','2','Left disk space is not enough.',NULL,'0','0','0','','0','','0','','0','FortiGate: Free disk space is less than {$DISK.FREE.WARN}%','649a5e3ba39e4e799835cdba8bba8d34',''), ('23438','(100-{33230})<{$DISK.FREE.CRIT}','FortiGate: Free disk space is too low','','0','4','Left disk space is too low.',NULL,'0','0','0','','0','','0','','0','FortiGate: Free disk space is less than {$DISK.FREE.CRIT}%','33c78beb669142baa66befba2456d810',''), ('23439','length({33231})>0 and length({33232})>0 and {33233}=0','FortiGate: There are errors in the ''Get firewall policies data'' metric','','0','2','',NULL,'0','0','0','','0','','0','','0','','a6f52f84c66c4d9b9831be03afc725b5',''), ('23440','{33234}>{$MEMORY.UTIL.WARN}','FortiGate: Memory utilization is high','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','FortiGate: High memory utilization (>{$MEMORY.UTIL.WARN}% for 5m)','0f0b467715bb420a80cae7a7df50177d',''), ('23441','{33235}>{$MEMORY.UTIL.CRIT}','FortiGate: Memory utilization is too high','','0','4','Free memory size is too low.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','FortiGate: High memory utilization (>{$MEMORY.UTIL.CRIT}% for 5m)','4cd6cb4e21154f8489de2ba73f32e62d',''), ('23442','{33236}<>{33237} and length({33238})>0','FortiGate: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','FortiGate: System name has changed (new name: {ITEM.VALUE})','a522d2cdd55947fabf1c152f6f6dd374',''), ('23443','length({33239})>0 and length({33240})>0 and {33241}=0','FortiGate: There are errors in the ''Get interfaces data'' metric','','0','2','',NULL,'0','0','0','','0','','0','','0','','20b8b33c1a36452ca280da95b8247409',''), ('23444','length({33242})>0 and length({33243})>0 and {33244}=0','FortiGate: There are errors in the ''Get resources data'' metric','','0','2','',NULL,'0','0','0','','0','','0','','0','','e6ed25293ca64de1ae01e2ab6c92f5c7',''), ('23445','length({33245})>0 and length({33246})>0 and {33247}=0','FortiGate: There are errors in the ''Get SD-WAN data'' metric','','0','2','',NULL,'0','0','0','','0','','0','','0','','b2ec3a4cf468449388a33f76688dc259',''), ('23446','length({33248})>0 and length({33249})>0 and {33250}=0','FortiGate: There are errors in the ''Get service licenses'' metric','','0','2','',NULL,'0','0','0','','0','','0','','0','','eeb819b2813f488ea3792a029f25a08d',''), ('23447','length({33251})>0 and length({33252})>0 and {33253}=0','FortiGate: There are errors in the ''Get system info'' metric','','0','2','',NULL,'0','0','0','','0','','0','','0','','3d1dbc0964db401fa9c10c1b126349e4',''), ('23448','{33254}<10m','FortiGate: Device has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','FortiGate: {HOST.NAME} has been restarted (uptime < 10m)','183385fa495442bcbd3eb28636ca5bb9',''), ('23449','{33255}=0','FortiGate: Port {$FGATE.API.PORT} is unavailable','','0','3','',NULL,'0','0','0','','0','','1','','0','','26abf8698af247d09c325ab1cb3e9903',''), ('23450','{35909}<0 and {35910}>0 and {35911}<>0','FortiGate: Interface [{#IFNAME}({#IFALIAS})]: Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({35909}>0 and {35912}>0) or {35911}=0','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','b21dcb60f79d4d6686209ff4bb0d4dad',''), ('23451','({35913}>({$NET.IF.UTIL.MAX:"{#IFNAME}"}/100)*{35914} or {35915}>({$NET.IF.UTIL.MAX:"{#IFNAME}"}/100)*{35914}) and {35914}>0','FortiGate: Interface [{#IFNAME}({#IFALIAS})]: High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{35913}<(({$NET.IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{35914} and {35915}<(({$NET.IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{35914}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','FortiGate: Interface [{#IFNAME}({#IFALIAS})]: High bandwidth usage (>{$NET.IF.UTIL.MAX:"{#IFNAME}"}%)','5aa7f2cacfc54b6eadfd9817b967725a',''), ('23452','{33263}>{$NET.IF.ERRORS.WARN:"{#IFKEY}"} or {33263}>{$NET.IF.ERRORS.WARN:"{#IFKEY}"}','FortiGate: Interface [{#IFNAME}({#IFALIAS})]: High error rate','','0','2','It recovers when it is below 80% of the `{$NET.IF.ERRORS.WARN:"{#IFKEY}"}` threshold.',NULL,'0','2','1','{33264}<{$NET.IF.ERRORS.WARN:"{#IFKEY}"}*0.8 and {33264}<{$NET.IF.ERRORS.WARN:"{#IFKEY}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','FortiGate: Interface [{#IFNAME}({#IFALIAS})]: High error rate (>{$NET.IF.ERRORS.WARN:"{#IFKEY}"} for 5m)','9ef845b9e393423f96403ea4c195859e',''), ('23453','{$NET.IF.CONTROL:"{#IFNAME}"}=1 and {33265}=1 and ({33266}<>{33267})','FortiGate: Interface [{#IFNAME}({#IFALIAS})]: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the interface link status is down. 2. `{$NET.IF.CONTROL:"{#IFNAME}"}=1` - a user can redefine context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface link is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the interface link status was up to (1) sometime before. WARNING: If closed manually, it will not fire again on the next poll because of .diff.',NULL,'0','2','1','{33265}<>1 or {$NET.IF.CONTROL:"{#IFNAME}"}=0','0','','1','Current status: {ITEM.LASTVALUE1}','0','','e03715db2ab3447ba3dda0e07c3bc604',''), ('23454','{33268}>{$SDWAN.HEALTH.IF.LOSS.WARN:"{#IFNAME}"}','FortiGate: SD-WAN [{#NAME}]:[{#IFNAME}]: High packets loss','','0','2','High level of packets loss detected.',NULL,'0','2','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','698f0a5da51f43359d917e296fa1a8c2',''), ('23455','{$SDWAN.HEALTH.IF.CONTROL:"{#NAME}"}=1 and {33269}=1 and ({33270}<>{33271})','FortiGate: SD-WAN [{#NAME}]:[{#IFNAME}]: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the interface status is down. 2. `{$SDWAN.HEALTH.IF.CONTROL:"{#NAME}"}=1` - a user can redefine context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down/error. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the interface status was up to (1) sometime before. WARNING: If closed manually, it will not fire again on the next poll because of .diff.',NULL,'0','2','1','{33269}<>1 or {$SDWAN.HEALTH.IF.CONTROL:"{#NAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','c109ba19ca4d43bd87ffd0a4c9e64784',''), ('23456','{$SDWAN.HEALTH.IF.CONTROL:"{#IFNAME}"}=1 and {33272}=2 and ({33273}<>{33274})','FortiGate: SD-WAN [{#NAME}]:[{#IFNAME}]: Link state is error','','0','3','This trigger expression works as follows: 1. It can be triggered if the interface status is error. 2. `{$SDWAN.HEALTH.IF.CONTROL:"{#IFNAME}"}=1` - a user can redefine context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down/error. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the interface status was up to (1) sometime before. WARNING: If closed manually, it will not fire again on the next poll because of .diff.',NULL,'0','2','1','{33272}<>2 or {$SDWAN.HEALTH.IF.CONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','d2e5eea705ea470785eeea8145e75f0b',''), ('23457','{$SDWAN.MEMBER.IF.CONTROL:"{#NAME}"}=1 and {33275}=1 and ({33276}<>{33277})','FortiGate: SD-WAN [{#ZONE}]:[{#NAME}]: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the interface status is down. 2. `{$SDWAN.MEMBER.IF.CONTROL:"{#NAME}"}=1` - a user can redefine context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the interface status was up to (1) sometime before. WARNING: If closed manually, it will not fire again on the next poll because of .diff.',NULL,'0','2','1','{33275}<>1 or {$SDWAN.MEMBER.IF.CONTROL:"{#NAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','858488d06b6f482bbec954d38ad066b3',''), ('23458','{$SERVICE.LICENSE.CONTROL:"{#KEY}"}=1 and ({33278} - now()) / 86400 < {$SERVICE.EXPIRY.WARN:"{#KEY}"} and {33278} > now()','FortiGate: Service [{#NAME}]: License expires soon','','0','2','This trigger expression works as follows: 1. It can be triggered if the license expires soon. 2. `{$SERVICE.LICENSE.CONTROL:"{#IFNAME}"}=1` - a user can redefine context macro to value - 0. That marks the license of this service as not important. No new trigger will be fired if this license expires.',NULL,'0','2','0','','0','','1','Current expiration date: {ITEM.LASTVALUE1}','0','FortiGate: Service [{#NAME}]: License expires soon (less than {$SERVICE.EXPIRY.WARN:"{#KEY}"} days)','4b921a823a5a4a2cbf35b140c26eb514',''), ('23459','{$SERVICE.LICENSE.CONTROL:"{#KEY}"}=1 and {33279}>5','FortiGate: Service [{#NAME}]: License status is unsuccessful','','0','3','This trigger expression works as follows: 1. It can be triggered if the license status is unsuccessful. 2. `{$SERVICE.LICENSE.CONTROL:"{#IFNAME}"}=1` - a user can redefine context macro to value - 0. That marks the license of this service as not important. No new trigger will be fired if this license is unsuccessful.',NULL,'0','2','0','','0','','1','Current status: {ITEM.LASTVALUE1}','0','FortiGate: Service [{#NAME}]: License status is {ITEM.LASTVALUE1}','ad27092f227545d48f550bb58e61dd4c',''), ('23460','{33280}=0','FortiGate: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','a25a713c59ec44689831c2c636757603',''), ('23461','{33281}>{$ICMP_LOSS_WARN} and {33281}<100','FortiGate: High ICMP ping loss','','0','2','ICMP ping loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','d1106ac3337548bda97fb89ce36c5ee5',''), ('23462','{33282}>{$ICMP_RESPONSE_TIME_WARN}','FortiGate: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','e04a8517551740d8b47a5dfc88dfe779',''), ('23463','{33283}>{$CPU.UTIL.CRIT}','FortiGate: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','FortiGate: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','86f157c9a85448cbac41ab5f8ee3d668',''), ('23464','{33284}<>{33285} and length({33286})>0','FortiGate: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','FortiGate: Device has been replaced (new serial number received)','0aa10f525bbb4bcd91debdb2f8b3afea',''), ('23465','{33287}<>{33288} and length({33289})>0','FortiGate: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','FortiGate: System name has changed (new name: {ITEM.VALUE})','9db3ed37da594694a560e8a85a3f7aae',''), ('23466','{33290}<10m','FortiGate: Device has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','FortiGate: {HOST.NAME} has been restarted (uptime < 10m)','5c16d6334cea466386455a7c5d071d18',''), ('23467','{33586}<{$DISK.FREE.CRIT}','FortiGate: Free disk space is too low','','0','4','Available disk space is too low.',NULL,'0','0','0','','0','','0','','0','FortiGate: Free disk space is less than {$DISK.FREE.CRIT}%','a323a6c7a5a54ad1bf0db0ec9441bf83',''), ('23468','{33292}>{$MEMORY.UTIL.MAX}','FortiGate: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','FortiGate: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','1ee0af9b389d4e5fafc5c08f46c9cc09',''), ('23469','{33293}=0','FortiGate: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e8dfc8ddd1a145ea92ab6446514a0ed5',''), ('23470','{33588}<0 and {33589}>0 and ( {33590}=6 or {33590}=7 or {33590}=11 or {33590}=62 or {33590}=69 or {33590}=117 ) and ({33591}<>2)','FortiGate: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({33588}>0 and {33592}>0) or ({33591}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','bb4f3ffe2fc44a78b1e7ab2b7b700696',''), ('23471','({33593}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{33594} or {33595}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{33594}) and {33594}>0','FortiGate: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{33593}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{33594} and {33595}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{33594}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','FortiGate: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','f2e0d7ffd8664f80bdd009462fa58060',''), ('23472','{33302}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {33303}>{$IF.ERRORS.WARN:"{#IFNAME}"}','FortiGate: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','The trigger recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{33304}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {33305}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','FortiGate: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','6ad2b85327c44f428c1416f611958783',''), ('23473','{$IFCONTROL:"{#IFNAME}"}=1 and {33306}=2 and ({33307}<>{33308})','FortiGate: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to "1" sometime before. WARNING: if closed manually - it will not fire again on the next poll, because of `.diff`.',NULL,'0','2','1','{33306}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','192a9f0c8ecb412fa7db65c839879269',''), ('23474','{33310}>=2','Kubernetes cluster state: Build [{#NAME}]: Build has failed','','0','2','',NULL,'0','2','0','','0','','0','','0','','b3364370ae954d69b7fad1ac3afd238b',''), ('23475','{33311}>=2','Kubernetes cluster state: Route [{#NAME}] with issue: Status is false','','0','2','',NULL,'0','2','0','','0','','0','','0','','98a6d7ba3a4049d693f5471819ee4b2e',''), ('23476','{33704}>{$ZABBIX.PROXY.UTIL.MAX:"proxy buffer"}','Zabbix proxy: Excessive proxy memory buffer usage','','0','3','Consider increasing ProxyMemoryBufferSize in the zabbix_proxy.conf configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix proxy: More than {$ZABBIX.PROXY.UTIL.MAX:"proxy buffer"}% used in the proxy memory buffer','9b6cb370c00f4ebda91cdf247adc4780',''), ('23477','{33711}>{$ZABBIX.PROXY.UTIL.MAX:"proxy buffer"}','Zabbix proxy: Excessive proxy memory buffer usage','','0','3','Consider increasing ProxyMemoryBufferSize in the zabbix_proxy.conf configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix proxy: More than {$ZABBIX.PROXY.UTIL.MAX:"proxy buffer"}% used in the proxy memory buffer','4c04e5a21a91485e9562ef951877a5f3',''), ('23478','{33314}>{$ORACLE.TBS.USED.PCT.FROM.MAX.WARN}','Oracle: ''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace usage from MAX is too high','','0','2','The usage of the tablespace `{#TABLESPACE}` from MAX exceeds `{$ORACLE.TBS.USED.PCT.FROM.MAX.WARN}`%',NULL,'0','2','0','','0','','0','','0','Oracle: ''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace utilization from MAX is too high (over {$ORACLE.TBS.USED.PCT.FROM.MAX.WARN}% for 5m).','dd246e51d0b343f0b18b18dc802dfbc2',''), ('23479','{33315}>{$ORACLE.TBS.USED.PCT.FROM.MAX.HIGH}','Oracle: ''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace utilization from MAX is too high','','0','4','The usage of the tablespace `{#TABLESPACE}` from MAX exceeds `{$ORACLE.TBS.USED.PCT.FROM.MAX.HIGH}`%',NULL,'0','2','0','','0','','0','','0','Oracle: ''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace utilization from MAX is too high (over {$ORACLE.TBS.USED.PCT.FROM.MAX.HIGH}% for 5m).','a82c07893e04440ea9c0e5e7f8f79602',''), ('23480','{33316}>{$ORACLE.TBS.USED.PCT.FROM.MAX.HIGH}','Oracle: ''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace usage from MAX is too high','','0','4','The usage of the tablespace `{#TABLESPACE}` from MAX exceeds `{$ORACLE.TBS.USED.PCT.FROM.MAX.HIGH}`%',NULL,'0','2','0','','0','','0','','0','Oracle: ''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace usage from MAX is too high (over {$ORACLE.TBS.USED.PCT.FROM.MAX.HIGH}% for 5m).','1db3eee269ea4554bc363338868c8830',''), ('23481','{33317}>{$ORACLE.TBS.USED.PCT.FROM.MAX.WARN}','Oracle: ''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace usage from MAX is too high','','0','2','The usage of the tablespace `{#TABLESPACE}` from MAX exceeds `{$ORACLE.TBS.USED.PCT.FROM.MAX.WARN}`%',NULL,'0','2','0','','0','','0','','0','Oracle: ''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace usage from MAX is too high (over {$ORACLE.TBS.USED.PCT.FROM.MAX.WARN}% for 5m).','062309da61ff407eb96201f530544a02',''), ('23482','length({33318})>0','HPE iLO: Failed to get data from API','','0','4','Failed to get data from API. Check the debug log for more information.',NULL,'0','0','0','','0','','0','','0','','b3327a76234b4ac6b049dec49bdd6a78',''), ('23483','{33319}=1 and length({33320})>0','HPE iLO: Computer system [{#SYSTEM_HOSTNAME}]: BIOS version has changed','','0','1','The current version of BIOS has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','HPE iLO: Computer system [{#SYSTEM_HOSTNAME}]: BIOS version has changed (new version: {ITEM.VALUE})','2f207309d0724a2e8e93c13967fc8eed',''), ('23484','{33321}=1 and length({33322})>0','HPE iLO: Computer system [{#SYSTEM_HOSTNAME}]: Computer system has been replaced','','0','1','The computer system serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','','060a4bcb1cdd463884fd95272464530d',''), ('23485','{33323}=2','HPE iLO: Computer system [{#SYSTEM_HOSTNAME}]: Computer system is in critical state','','0','4','The computer system is in critical condition that requires immediate attention.',NULL,'0','2','0','','0','','0','','0','','438fdce5e1374b5a94b0206cdd4a2728',''), ('23486','{33324}=1','HPE iLO: Computer system [{#SYSTEM_HOSTNAME}]: Computer system is in warning state','','0','2','The computer system is in condition that requires attention.',NULL,'0','2','0','','0','','0','','0','','704b86207b3a443a8359b3d75c92d0b4',''), ('23487','{33325}=1 and length({33326})>0','HPE iLO: Computer system [{#SYSTEM_HOSTNAME}]: Storage [{#STORAGE_ID}]: Controller [{#CONTROLLER_ID}]: Controller has been replaced','','0','1','The controller serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','','66694866af4e49d7becb699c29b73b3e',''), ('23488','{33327}=2','HPE iLO: Computer system [{#SYSTEM_HOSTNAME}]: Storage [{#STORAGE_ID}]: Controller [{#CONTROLLER_ID}]: Controller is in critical state','','0','4','The controller is in critical condition that requires immediate attention.',NULL,'0','2','0','','0','','0','','0','','c50abeed60fe4b5a95dd788606fbddda',''), ('23489','{33328}=1','HPE iLO: Computer system [{#SYSTEM_HOSTNAME}]: Storage [{#STORAGE_ID}]: Controller [{#CONTROLLER_ID}]: Controller is in warning state','','0','2','The controller is in condition that requires attention.',NULL,'0','2','0','','0','','0','','0','','b4fff1c834a04b66843937b1a56fe7d1',''), ('23490','{33329}=1 and length({33330})>0','HPE iLO: Computer system [{#SYSTEM_HOSTNAME}]: Storage [{#STORAGE_ID}]: Drive [{#DRIVE_ID}]: Drive has been replaced','','0','1','The drive serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','','723b48e56ef447ab940c0e6bb6ecddd6',''), ('23491','{33331}=1','HPE iLO: Computer system [{#SYSTEM_HOSTNAME}]: Storage [{#STORAGE_ID}]: Drive [{#DRIVE_ID}]: Drive has failed','','0','4','The drive has failed.',NULL,'0','2','0','','0','','0','','0','','e58f3af90e124520bf0c138979480913',''), ('23492','{33332}=3','HPE iLO: Computer system [{#SYSTEM_HOSTNAME}]: Storage [{#STORAGE_ID}]: Drive [{#DRIVE_ID}]: Drive is predicted to fail soon','','0','4','The drive is still working but predicted to fail soon.',NULL,'0','2','0','','0','','0','','0','','d78d4771170d4668bc6c2ca941bf85f1',''), ('23493','{33333}=2','HPE iLO: Chassis [{#CHASSIS_ID}]: Fan [{#FAN_NAME}]: Fan is in critical state','','0','4','The fan is in critical condition that requires immediate attention.',NULL,'0','2','0','','0','','0','','0','','c46cf15eae394d3a812ff660382a498c',''), ('23494','{33334}=1','HPE iLO: Chassis [{#CHASSIS_ID}]: Fan [{#FAN_NAME}]: Fan is in warning state','','0','2','The fan is in condition that requires attention.',NULL,'0','2','0','','0','','0','','0','','de0dd5f0180c433d8fcf77411c4af0d1',''), ('23495','{33335}=1 and length({33336})>0','HPE iLO: Manager [{#MANAGER_ID}]: Firmware version has changed','','0','1','The current firmware version of the manager has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','HPE iLO: Computer system [{#SYSTEM_HOSTNAME}]: Firmware version has changed (new version: {ITEM.VALUE})','d15f89292b3b4b309bee523a0d46217b',''), ('23496','{33337}=2','HPE iLO: Manager [{#MANAGER_ID}]: Manager is in critical state','','0','4','The manager is in critical condition that requires immediate attention.',NULL,'0','2','0','','0','','0','','0','','faa446c01db44748bf68b08f5d3491cd',''), ('23497','{33338}=1','HPE iLO: Manager [{#MANAGER_ID}]: Manager is in warning state','','0','2','The manager is in condition that requires attention.',NULL,'0','2','0','','0','','0','','0','','1835e489df4942d3bb6ffba0e68d838e',''), ('23498','{33339}=1 and length({33340})>0','HPE iLO: Chassis [{#CHASSIS_ID}]: PSU [{#PSU_ID}]: PSU has been replaced','','0','1','The PSU serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','','4a20457b63f14f9dba0e57a4a1be9336',''), ('23499','{33341}=2','HPE iLO: Chassis [{#CHASSIS_ID}]: PSU [{#PSU_ID}]: PSU is in critical state','','0','4','The PSU is in critical condition that requires immediate attention.',NULL,'0','2','0','','0','','0','','0','','5e35becc5b6f4a0b8aee83bd85053dfa',''), ('23500','{33342}=1','HPE iLO: Chassis [{#CHASSIS_ID}]: PSU [{#PSU_ID}]: PSU is in warning state','','0','2','The PSU is in condition that requires attention.',NULL,'0','2','0','','0','','0','','0','','6a905448f75c47c09392668b9b636117',''), ('23501','{33343}=2','HPE iLO: Chassis [{#CHASSIS_ID}]: Sensor [{#SENSOR_NAME}]: Sensor is in critical state','','0','4','The sensor is in critical condition that requires immediate attention.',NULL,'0','2','0','','0','','0','','0','','143900a50f0044f884fe04ba32afe38d',''), ('23502','{33344}=1','HPE iLO: Chassis [{#CHASSIS_ID}]: Sensor [{#SENSOR_NAME}]: Sensor is in warning state','','0','2','The sensor is in condition that requires attention.',NULL,'0','2','0','','0','','0','','0','','66c09f1d58ee436f96cb2d8e034fce05',''), ('23503','{33345}=2','HPE iLO: Computer system [{#SYSTEM_HOSTNAME}]: Storage [{#STORAGE_ID}]: Storage is in critical state','','0','4','The computer system is in critical condition that requires immediate attention.',NULL,'0','2','0','','0','','0','','0','','3cbf371fee974ae18cc48a5c8751d002',''), ('23504','{33346}=1','HPE iLO: Computer system [{#SYSTEM_HOSTNAME}]: Storage [{#STORAGE_ID}]: Storage is in warning state','','0','2','The computer system is in condition that requires attention.',NULL,'0','2','0','','0','','0','','0','','f7971c1b03874ba38d56e97cecb415f8',''), ('23505','{33347}=2','HPE iLO: Computer system [{#SYSTEM_HOSTNAME}]: Storage [{#STORAGE_ID}]: Volume [{#VOLUME_ID}]: Volume is in critical state','','0','4','The volume is in critical condition that requires immediate attention.',NULL,'0','2','0','','0','','0','','0','','eec0cede62004a56ac9ddce26be52f7f',''), ('23506','{33348}=1','HPE iLO: Computer system [{#SYSTEM_HOSTNAME}]: Storage [{#STORAGE_ID}]: Volume [{#VOLUME_ID}]: Volume is in warning state','','0','2','The volume is in condition that requires attention.',NULL,'0','2','0','','0','','0','','0','','fff82b7d4fea43ed8099fc43e1fc5421',''), ('23507','{33363}=0','MSSQL: AG ''{#GROUP_NAME}'': Primary replica recovery health in progress','','0','2','The primary replica is in the synchronization process.',NULL,'0','2','0','','0','','0','','0','','c472a4f8400e451db529d5e12b863216',''), ('23508','{33364}=0','MSSQL: AG ''{#GROUP_NAME}'': Secondary replica recovery health in progress','','0','2','The secondary replica is in the synchronization process.',NULL,'0','2','0','','0','','0','','0','','1fbf51eb9f8b432c8e0d9ec3af1cab44',''), ('23509','{33365}=0','MSSQL: AG ''{#GROUP_NAME}'': All replicas unhealthy','','0','5','None of the availability replicas have a healthy synchronization.',NULL,'0','2','0','','0','','0','','0','','2ee92e5ea41744ac9e27ffaa4313bdec',''), ('23510','{33366}=1','MSSQL: AG ''{#GROUP_NAME}'': Some replicas unhealthy','','0','4','The synchronization health of some, but not all, availability replicas is healthy.',NULL,'0','2','0','','0','','0','','0','','fd24c78f1db24186932d17d1145b6e92',''), ('23511','{33367}>0','MSSQL: AG ''{#GROUP_NAME}'' Local DB ''{#DBNAME}'': "{#DBNAME}" is {ITEM.VALUE}','','0','2','The local availability database has a non-working state.',NULL,'0','2','0','','0','','0','','0','','78923c9c52e74c80a77d418afe9e438d',''), ('23512','{33368}=0','MSSQL: AG ''{#GROUP_NAME}'' Local DB ''{#DBNAME}'': "{#DBNAME}" is Not healthy','','0','4','The synchronization state of the local availability database is "Not synchronizing".',NULL,'0','2','0','','0','','0','','0','','e51c10f9d86d458da9fdb7e21b4e0102',''), ('23513','{33369}=1','MSSQL: AG ''{#GROUP_NAME}'' Local DB ''{#DBNAME}'': "{#DBNAME}" is Partially healthy','','0','3','A database on a synchronous-commit availability replica is considered partially healthy if synchronization state is "Synchronizing".',NULL,'0','2','0','','0','','0','','0','','dc636f10f12c4f1ead597eca778561ec',''), ('23514','{33370}=3','MSSQL: Mirroring ''{#DBNAME}'': "{#DBNAME}" is {ITEM.VALUE}','','0','2','The state of the mirror database and of the database mirroring session is "Pending failover".',NULL,'0','2','0','','0','','0','','0','','323543b0df0e474abf9190a9630242b1',''), ('23515','{33371}=5','MSSQL: Mirroring ''{#DBNAME}'': "{#DBNAME}" is {ITEM.VALUE}','','0','4','The state of the mirror database and of the database mirroring session is "Not synchronized". The partners are not synchronized. A failover is not possible now.',NULL,'0','2','0','','0','','0','','0','','9a2bcdfb32654a55b8a75c8bf4331950',''), ('23516','{33372}>=0 and {33372}<=2','MSSQL: Mirroring ''{#DBNAME}'': "{#DBNAME}" is {ITEM.VALUE}','','0','1','The state of the mirror database and of the database mirroring session is "Suspended", "Disconnected from the other partner", or "Synchronizing".',NULL,'0','2','0','','0','','0','','0','','c673a7c4820840528a4aa1771a5a56d4',''), ('23517','{33373}=2','MSSQL: Mirroring ''{#DBNAME}'': "{#DBNAME}" Witness is disconnected','','0','2','The state of the witness in the database mirroring session of the database is "Disconnected".',NULL,'0','2','0','','0','','0','','0','','ec374424b79346c99f1d815e0815c799',''), ('23518','{33374}>{33375} and {33375}>{33376}','MSSQL: AG ''{#GROUP_NAME}'' Non-Local DB ''*{#REPLICA_NAME}*{#DBNAME}'': Log queue size is growing','','0','4','The log records of the primary database are not sent to the secondary databases.',NULL,'0','2','0','','0','','0','','0','','def3b1d47dac4d039bffcc78f955b433',''), ('23519','{33377}>{33378} and {33378}>{33379}','MSSQL: AG ''{#GROUP_NAME}'' Non-Local DB ''*{#REPLICA_NAME}*{#DBNAME}'': Redo log queue size is growing','','0','4','The log records in the log files of the secondary replica have not yet been redone.',NULL,'0','2','0','','0','','0','','0','','2102f244f58b4fe981d569fe0fe599a9',''), ('23520','{33380}=0 and {33381}=2','MSSQL: AG ''{#GROUP_NAME}'' Replica ''{#REPLICA_NAME}'': {#REPLICA_NAME} is disconnected','','0','2','The response of an availability replica to the "Disconnected" state depends on its role: On the primary replica, if a secondary replica is disconnected, its secondary databases are marked as "Not synchronized" on the primary replica, which waits for the secondary to reconnect; On a secondary replica, upon detecting that it is disconnected, the secondary replica attempts to reconnect to the primary replica.',NULL,'0','2','0','','0','','0','','0','','7c6afc5596e94af0979bd20d5ef542ea',''), ('23521','{33382}=0 or {33382}=1 or {33382}=3','MSSQL: AG ''{#GROUP_NAME}'' Replica ''{#REPLICA_NAME}'': {#REPLICA_NAME} is {ITEM.VALUE}','','0','2','The operational state of the replica in a given availability group is "Pending" or "Offline".',NULL,'0','2','0','','0','','0','','0','','0192e9d5795a4d46acb8de29f710edcd',''), ('23522','{33383}=4','MSSQL: AG ''{#GROUP_NAME}'' Replica ''{#REPLICA_NAME}'': {#REPLICA_NAME} is {ITEM.VALUE}','','0','3','The operational state of the replica in a given availability group is "Failed".',NULL,'0','2','0','','0','','0','','0','','3f2006b9ae114e01b442b34fec9373d3',''), ('23523','{33384}=5','MSSQL: AG ''{#GROUP_NAME}'' Replica ''{#REPLICA_NAME}'': {#REPLICA_NAME} is {ITEM.VALUE}','','0','4','The operational state of the replica in a given availability group is "Failed, no quorum".',NULL,'0','2','0','','0','','0','','0','','94ea79848a5048d8ae417df709b8d612',''), ('23524','{33385}=0','MSSQL: AG ''{#GROUP_NAME}'' Replica ''{#REPLICA_NAME}'': {#REPLICA_NAME} Recovery in progress','','0','1','At least one joined database has a database state other than "Online".',NULL,'0','2','0','','0','','0','','0','','58f508b855364d769e2be977793a03c8',''), ('23525','{33386}=0','MSSQL: AG ''{#GROUP_NAME}'' Replica ''{#REPLICA_NAME}'': {#REPLICA_NAME} is Not healthy','','0','3','At least one joined database is in the "Not synchronizing" state.',NULL,'0','2','0','','0','','0','','0','','f2f4d198ad2242088d867abe6fac4ecd',''), ('23526','{33387}=1','MSSQL: AG ''{#GROUP_NAME}'' Replica ''{#REPLICA_NAME}'': {#REPLICA_NAME} is Partially healthy','','0','2','Some replicas are not in the target synchronization state: synchronous-commit replicas should be synchronized, and asynchronous-commit replicas should be synchronizing.',NULL,'0','2','0','','0','','0','','0','','070af612aa7248588fc058d8f9fb9929',''), ('23527','length({33398})>0','AWS ELB ALB: Failed to get alarms data','','0','2','Failed to get CloudWatch alarms for Application Load Balancer.',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','AWS ELB ALB: Failed to get CloudWatch alarms for Application Load Balancer','3fd832d1a2cc4cff955554cbd8c4b3c7',''), ('23528','{33399}>{$AWS.HTTP.4XX.FAIL.MAX.WARN}','AWS ELB ALB: Too many HTTP 4XX error codes','','0','2','Too many requests failed with HTTP 4XX code.',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','AWS ELB ALB: Too many HTTP 4XX error codes (over {$AWS.HTTP.4XX.FAIL.MAX.WARN} for 5m)','922bd3ab505b420984c93dfdfc417a56',''), ('23529','{33400}>{$AWS.HTTP.5XX.FAIL.MAX.WARN}','AWS ELB ALB: Too many HTTP 5XX error codes','','0','2','Too many requests failed with HTTP 5XX code.',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','AWS ELB ALB: Too many HTTP 5XX error codes (over {$AWS.HTTP.5XX.FAIL.MAX.WARN} for 5m)','883fc396e7da4806943cd70688c057a3',''), ('23530','length({33401})>0','AWS ELB ALB: Failed to get metrics data','','0','2','Failed to get CloudWatch metrics for Application Load Balancer.',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','AWS ELB ALB: Failed to get CloudWatch metrics for Application Load Balancer','70282eb6c0c442f9a4f4c49b10f54a4d',''), ('23531','{33402}=2 and length({33403})>0','AWS ELB ALB: [{#ALARM_NAME}] has ''Alarm'' state','','0','3','The alarm `{#ALARM_NAME}` is in the ALARM state. Reason: `{ITEM.LASTVALUE2}`',NULL,'0','2','0','','0','','0','Reason: {ITEM.LASTVALUE2}','0','AWS ELB ALB: [{#ALARM_NAME}] has ''Alarm'' state (reason: {ITEM.LASTVALUE2})','a1b8587c80dd41ef8b185cf62e563bcb',''), ('23532','{33404}=1','AWS ELB ALB: [{#ALARM_NAME}] has ''Insufficient data'' state','','0','1','Either the alarm has just started, the metric is not available, or not enough data is available for the metric to determine the alarm state.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','AWS ELB ALB: [{#ALARM_NAME}] has ''Insufficient data'' state','b8bbc96a20bc4ab393d1fa76a3cf5254',''), ('23533','{33405}>{$MSSQL.AVERAGE_WAIT_TIME.MAX}','MSSQL: Total average wait time for locks is high','','0','2','An average wait time longer than 500 ms may indicate excessive blocking. This value should generally correlate to "Lock Waits/sec" and move up or down with it accordingly.',NULL,'0','0','0','','0','','0','','0','MSSQL: Total average wait time for locks is high (over {$MSSQL.AVERAGE_WAIT_TIME.MAX}ms for 5m)','7d284dc23d4649c79bf67e13f1edc83b',''), ('23534','{33406}<{$MSSQL.BUFFER_CACHE_RATIO.MIN.CRIT}','MSSQL: Percentage of the buffer cache efficiency is low','','0','4','Too low buffer cache hit ratio.',NULL,'0','0','0','','0','','0','','0','MSSQL: Percentage of the buffer cache efficiency is low (below {$MSSQL.BUFFER_CACHE_RATIO.MIN.CRIT}% for 5m)','9ee2397e2560447eb01d4d50cde5fa9d',''), ('23535','{33407}<{$MSSQL.BUFFER_CACHE_RATIO.MIN.WARN}','MSSQL: Percentage of the buffer cache efficiency is low','','0','2','Low buffer cache hit ratio.',NULL,'0','0','0','','0','','0','','0','MSSQL: Percentage of the buffer cache efficiency is low (below {$MSSQL.BUFFER_CACHE_RATIO.MIN.WARN}% for 5m)','c22ac1cbc5224eb98fde9f87c52a3724',''), ('23536','{33408}>{$MSSQL.FREE_LIST_STALLS.MAX}','MSSQL: Number of rps waiting for a free page is high','','0','2','Some requests have to wait for a free page.',NULL,'0','0','0','','0','','0','','0','MSSQL: Number of rps waiting for a free page is high (over {$MSSQL.FREE_LIST_STALLS.MAX} for 5m)','5cf3182a47694569b9d75822404b77f7',''), ('23537','{33409}>{$MSSQL.LAZY_WRITES.MAX}','MSSQL: Number of buffers written per second by the lazy writer is high','','0','2','The number of buffers written per second by the buffer manager''s lazy writer exceeds the threshold.',NULL,'0','0','0','','0','','0','','0','MSSQL: Number of buffers written per second by the lazy writer is high (over {$MSSQL.LAZY_WRITES.MAX} for 5m)','96698537fee846199197a25beecaafca',''), ('23538','{33410}>{$MSSQL.LOCK_REQUESTS.MAX}','MSSQL: Total number of locks per second is high','','0','2','Number of new locks and lock conversions per second requested from the lock manager is high.',NULL,'0','0','0','','0','','0','','0','MSSQL: Total number of locks per second is high (over {$MSSQL.LOCK_REQUESTS.MAX} for 5m)','19137e1b06fe4f1eaf5e76c5ae47d29d',''), ('23539','{33411}>{$MSSQL.LOCK_TIMEOUTS.MAX}','MSSQL: Total lock requests per second that timed out is high','','0','2','The total number of timed out lock requests per second, including requests for NOWAIT locks, is high.',NULL,'0','0','0','','0','','0','','0','MSSQL: Total lock requests per second that timed out is high (over {$MSSQL.LOCK_TIMEOUTS.MAX} for 5m)','a7313fad35804feeaddf544acb2a0d26',''), ('23540','{33412}>0','MSSQL: Some blocking is occurring for 5m','','0','3','Values greater than zero indicate at least some blocking is occurring, while a value of zero can quickly eliminate blocking as a potential root-cause problem.',NULL,'0','0','0','','0','','0','','0','','c4fb968a66784746a11feee64a8f98e8',''), ('23541','{33413}>{$MSSQL.DEADLOCKS.MAX}','MSSQL: Number of deadlocks is high','','0','3','Too many deadlocks are occurring currently.',NULL,'0','0','0','','0','','0','','0','MSSQL: Number of deadlocks is high (over {$MSSQL.DEADLOCKS.MAX} for 5m)','f0b039f08b694db1bbafe6b3d8d4e9ab',''), ('23542','{33414}<{$MSSQL.PAGE_LIFE_EXPECTANCY.MIN}','MSSQL: Page life expectancy is low','','0','4','The page stays in the buffer pool without references for less time than the threshold value.',NULL,'0','0','0','','0','','0','','0','MSSQL: Page life expectancy is low (less {$MSSQL.PAGE_LIFE_EXPECTANCY.MIN}min for 15m)','e47d0eeac246490cbeedb8ba1cf77e94',''), ('23543','{33415}>{$MSSQL.PAGE_READS.MAX}','MSSQL: Number of physical database page reads per second is high','','0','2','The physical database page reads are issued too frequently.',NULL,'0','0','0','','0','','0','','0','MSSQL: Number of physical database page reads per second is high (over {$MSSQL.PAGE_READS.MAX} for 5m)','5050b7c4e5a4445d9c4aae031b01115b',''), ('23544','{33416}>{$MSSQL.PAGE_WRITES.MAX}','MSSQL: Number of physical database page writes per second is high','','0','2','The physical database page writes are issued too frequently.',NULL,'0','0','0','','0','','0','','0','MSSQL: Number of physical database page writes per second is high (over {$MSSQL.PAGE_WRITES.MAX} for 5m)','48e32bec13d34ad88db7c9cc98d86a3b',''), ('23545','{33417} > {$MSSQL.PERCENT_COMPILATIONS.MAX}','MSSQL: Percent of ad hoc queries running is high','','0','2','The lower this value is, the better. High values often indicate excessive ad hoc querying and should be as low as possible. If excessive ad hoc querying is happening, try rewriting the queries as procedures or invoke the queries using `sp_executeSQL`. When rewriting isn''t possible, consider using a plan guide or setting the database to parameterization forced mode.',NULL,'0','0','0','','0','','0','','0','MSSQL: Percent of ad hoc queries running is over {$MSSQL.PERCENT_COMPILATIONS.MAX}% for 15m','cf0649863fe5421aa1dc279d1ca7e360',''), ('23546','{33418} > {$MSSQL.PERCENT_RECOMPILATIONS.MAX}','MSSQL: Percent of times statement recompiles is high','','0','2','This number should be at or near zero, since recompiles can cause deadlocks and exclusive compile locks. This counter''s value should follow in proportion to "Batch Requests/sec" and "SQL Compilations/sec".',NULL,'0','0','0','','0','','0','','0','MSSQL: Percent of times statement recompiles is over {$MSSQL.PERCENT_RECOMPILATIONS.MAX}% for 15m','1218fe12f4d542d99d997ede6cc30813',''), ('23547','{33419} > 0.001','MSSQL: Number of index and table scans exceeds index searches in the last 15m','','0','2','Index searches are preferable to index and table scans. For OLTP applications, optimize for more index searches and less scans (preferably, 1 full scan for every 1000 index searches). Index and table scans are expensive I/O operations.',NULL,'0','0','0','','0','','0','','0','','378cdaf994ea4167b7727996357d7564',''), ('23548','{33420}=1','MSSQL: Failed to fetch info data','','0','1','Zabbix has not received any data for items for the last 30 minutes.',NULL,'0','0','0','','0','','0','','0','MSSQL: Failed to fetch info data (or no data for 30m)','b64d08b9212645cd8bab9e35a8e29942',''), ('23549','{33421}<10m','MSSQL: Service has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','MSSQL: Service has been restarted (uptime < 10m)','4ab35137c34845c495bc3837ac1f6f9f',''), ('23550','{33422}<>{33423} and length({33424})>0','MSSQL: Version has changed','','0','1','MSSQL version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MSSQL: Version has changed (new version value received: {ITEM.VALUE})','12643eb3af884023ab61802559cde946',''), ('23551','{33425}>{$MSSQL.WORK_FILES.MAX}','MSSQL: Number of work files created per second is high','','0','3','Too many work files created per second to store temporary results for hash joins and hash aggregates.',NULL,'0','0','0','','0','','0','','0','MSSQL: Number of work files created per second is high (over {$MSSQL.WORK_FILES.MAX} for 5m)','6d25ee02edc14d7497b339627cc0c680',''), ('23552','{33426}>{$MSSQL.WORK_TABLES.MAX}','MSSQL: Number of work tables created per second is high','','0','3','Too many work tables created per second to store temporary results for query spool, LOB variables, XML variables, and cursors.',NULL,'0','0','0','','0','','0','','0','MSSQL: Number of work tables created per second is high (over {$MSSQL.WORK_TABLES.MAX} for 5m)','4cd0c8e7089144aeaeb10c4866e89b06',''), ('23553','{33427}<{$MSSQL.WORKTABLES_FROM_CACHE_RATIO.MIN.CRIT}','MSSQL: Percentage of work tables available from the work table cache is low','','0','4','A value less than 90% may indicate insufficient memory, since execution plans are being dropped, or, on 32-bit systems, may indicate the need for an upgrade to a 64-bit system.',NULL,'0','0','0','','0','','0','','0','MSSQL: Percentage of work tables available from the work table cache is low (below {$MSSQL.WORKTABLES_FROM_CACHE_RATIO.MIN.CRIT}% for 5m)','cb3dd51615d447379a3abda929faf881',''), ('23554','{33428}=0','MSSQL: Service is unavailable','','0','5','The TCP port of the MSSQL Server service is currently unavailable.',NULL,'0','0','0','','0','','0','','0','','2ea9eaf463144defbd85340a824f7986',''), ('23555','{33429} * 100 > 10 * {33430}','MSSQL: Too frequently using pointers','','0','2','Rows with VARCHAR columns can experience expansion when VARCHAR values are updated with a longer string. In the case where the row cannot fit in the existing page, the row migrates, and access to the row will traverse a pointer. This only happens on heaps (tables without clustered indexes). In cases where clustered indexes cannot be used, drop non-clustered indexes, build a clustered index to reorg pages and rows, drop the clustered index, then recreate non-clustered indexes.',NULL,'0','0','0','','0','','0','','0','','366fa3cfcba94e038ad77c2f5a2649a2',''), ('23556','{33431} > {$MSSQL.PERCENT_READAHEAD.MAX} / 100 * {33432}','MSSQL: Too many physical reads occurring','','0','2','If this value makes up even a sizeable minority of the total "Page Reads/sec" (say, greater than 20% of the total page reads), you may have too many physical reads occurring.',NULL,'0','0','0','','0','','0','','0','','274773f4bb9d4af798e8922b5054226b',''), ('23557','{33433}=0','MSSQL: AG ''{#GROUP_NAME}'': Primary replica recovery health in progress','','0','2','The primary replica is in the synchronization process.',NULL,'0','2','0','','0','','0','','0','','7f0c69068dd6415abd193555684ba39d',''), ('23558','{33434}=0','MSSQL: AG ''{#GROUP_NAME}'': Secondary replica recovery health in progress','','0','2','The secondary replica is in the synchronization process.',NULL,'0','2','0','','0','','0','','0','','4fc114d3f43741b38bdf7b8b73a6fe3e',''), ('23559','{33435}=0','MSSQL: AG ''{#GROUP_NAME}'': All replicas unhealthy','','0','5','None of the availability replicas have a healthy synchronization.',NULL,'0','2','0','','0','','0','','0','','1aa3dd01e7654dea903010b47f166596',''), ('23560','{33436}=1','MSSQL: AG ''{#GROUP_NAME}'': Some replicas unhealthy','','0','4','The synchronization health of some, but not all, availability replicas is healthy.',NULL,'0','2','0','','0','','0','','0','','02766fa029c14e85914e20b81f14be2c',''), ('23561','{33437}>{$MSSQL.BACKUP_LOG.CRIT:"{#DBNAME}"} and {$MSSQL.BACKUP_LOG.USED:"{#DBNAME}"}=1 and {33438}<>3','MSSQL: DB ''{#DBNAME}'': Log backup is old','','0','4','The log backup has not been executed for a long time.',NULL,'0','2','0','','0','','1','Time since last backup: {ITEM.LASTVALUE1}','0','MSSQL: DB ''{#DBNAME}'': Log backup older than {$MSSQL.BACKUP_LOG.CRIT:"{#DBNAME}"}','7b708b7c408f4b2fb5d1bc6d017d6c68',''), ('23562','{33439}>{$MSSQL.BACKUP_LOG.WARN:"{#DBNAME}"} and {$MSSQL.BACKUP_LOG.USED:"{#DBNAME}"}=1 and {33440}<>3','MSSQL: DB ''{#DBNAME}'': Log backup is old','','0','2','The log backup has not been executed for a long time.',NULL,'0','2','0','','0','','1','Time since last backup: {ITEM.LASTVALUE1}','0','MSSQL: DB ''{#DBNAME}'': Log backup older than {$MSSQL.BACKUP_LOG.WARN:"{#DBNAME}"}','dc580ac10b3f451686b8163bdf21b759',''), ('23563','{33441}>{$MSSQL.BACKUP_DIFF.CRIT:"{#DBNAME}"} and {$MSSQL.BACKUP_DIFF.USED:"{#DBNAME}"}=1','MSSQL: DB ''{#DBNAME}'': Diff backup is old','','0','4','The differential backup has not been executed for a long time.',NULL,'0','2','0','','0','','1','Time since last backup: {ITEM.LASTVALUE1}','0','MSSQL: DB ''{#DBNAME}'': Diff backup older than {$MSSQL.BACKUP_DIFF.CRIT:"{#DBNAME}"}','4ff9a2f1c06347a291e99eb4269d87a5',''), ('23564','{33442}>{$MSSQL.BACKUP_DIFF.WARN:"{#DBNAME}"} and {$MSSQL.BACKUP_DIFF.USED:"{#DBNAME}"}=1','MSSQL: DB ''{#DBNAME}'': Diff backup is old','','0','2','The differential backup has not been executed for a long time.',NULL,'0','2','0','','0','','1','Time since last backup: {ITEM.LASTVALUE1}','0','MSSQL: DB ''{#DBNAME}'': Diff backup older than {$MSSQL.BACKUP_DIFF.WARN:"{#DBNAME}"}','49260837210a4086a6f2a4183cefbf8c',''), ('23565','{33443}>{$MSSQL.BACKUP_FULL.CRIT:"{#DBNAME}"} and {$MSSQL.BACKUP_FULL.USED:"{#DBNAME}"}=1','MSSQL: DB ''{#DBNAME}'': Full backup is old','','0','4','The full backup has not been executed for a long time.',NULL,'0','2','0','','0','','1','Time since last backup: {ITEM.LASTVALUE1}','0','MSSQL: DB ''{#DBNAME}'': Full backup older than {$MSSQL.BACKUP_FULL.CRIT:"{#DBNAME}"}','ba1b19c9513f4adeba3e6f300c08748d',''), ('23566','{33444}>{$MSSQL.BACKUP_FULL.WARN:"{#DBNAME}"} and {$MSSQL.BACKUP_FULL.USED:"{#DBNAME}"}=1','MSSQL: DB ''{#DBNAME}'': Full backup is old','','0','2','The full backup has not been executed for a long time.',NULL,'0','2','0','','0','','1','Time since last backup: {ITEM.LASTVALUE1}','0','MSSQL: DB ''{#DBNAME}'': Full backup older than {$MSSQL.BACKUP_FULL.WARN:"{#DBNAME}"}','a8e099c8276f435cb4d55623be443db5',''), ('23567','{33445}>{$MSSQL.LOG_FLUSH_WAITS.MAX:"{#DBNAME}"}','MSSQL: DB ''{#DBNAME}'': Number of commits waiting for the log flush is high','','0','2','Too many commits are waiting for the log flush.',NULL,'0','2','0','','0','','0','','0','MSSQL: DB ''{#DBNAME}'': Number of commits waiting for the log flush is high (over {$MSSQL.LOG_FLUSH_WAITS.MAX:"{#DBNAME}"}/sec for 5m)','4bdf258b6902407cbcc7b27cc906ee48',''), ('23568','{33446}>{$MSSQL.LOG_FLUSH_WAIT_TIME.MAX:"{#DBNAME}"}','MSSQL: DB ''{#DBNAME}'': Total wait time to flush the log is high','','0','2','The wait time to flush the log is too long.',NULL,'0','2','0','','0','','0','','0','MSSQL: DB ''{#DBNAME}'': Total wait time to flush the log is high (over {$MSSQL.LOG_FLUSH_WAIT_TIME.MAX:"{#DBNAME}"}ms for 5m)','1baacf9d55d746599a28c407087ea5fb',''), ('23569','{33447}>{$MSSQL.PERCENT_LOG_USED.MAX:"{#DBNAME}"}','MSSQL: DB ''{#DBNAME}'': Percent of log usage is high','','0','2','There''s not enough space left in the log.',NULL,'0','2','0','','0','','0','','0','MSSQL: DB ''{#DBNAME}'': Percent of log usage is high (over {$MSSQL.PERCENT_LOG_USED.MAX:"{#DBNAME}"}% for 5m)','f2a80dfd54ca4e2391adbc7006118987',''), ('23570','{33448}>1','MSSQL: DB ''{#DBNAME}'': State is {ITEM.VALUE}','','0','4','The DB has a non-working state.',NULL,'0','2','0','','0','','0','','0','','0963794ed0b0483bbaa9dc0858c9f445',''), ('23571','{33449}=0','MSSQL: Job ''{#JOBNAME}'': Failed to run','','0','2','The last run of the job has failed.',NULL,'0','2','0','','0','','1','','0','','f404c4f644ee450ebbd269eb7c8897d9',''), ('23572','{35953}>{$MSSQL.JOB_DURATION.WARN:"{#JOBNAME}"}','MSSQL: Job ''{#JOBNAME}'': Job duration is high','','0','2','The job is taking too long.',NULL,'0','2','0','','0','','1','Job duration: {ITEM.LASTVALUE1}','0','MSSQL: Job ''{#JOBNAME}'': Job duration is greater than {$MSSQL.JOB_DURATION.WARN:"{#JOBNAME}"}','b8bf7358712242609e64ce60303eb80f',''), ('23573','{33451}>0','MSSQL: AG ''{#GROUP_NAME}'' Local DB ''{#DBNAME}'': "{#DBNAME}" is {ITEM.VALUE}','','0','2','The local availability database has a non-working state.',NULL,'0','2','0','','0','','0','','0','','7eb2d73718b0451790c5d81d63517c1b',''), ('23574','{33452}=0','MSSQL: AG ''{#GROUP_NAME}'' Local DB ''{#DBNAME}'': "{#DBNAME}" is Not healthy','','0','4','The synchronization state of the local availability database is "Not synchronizing".',NULL,'0','2','0','','0','','0','','0','','47ba6c51cf34498a991b68b341210eca',''), ('23575','{33453}=1','MSSQL: AG ''{#GROUP_NAME}'' Local DB ''{#DBNAME}'': "{#DBNAME}" is Partially healthy','','0','3','A database on a synchronous-commit availability replica is considered partially healthy if synchronization state is "Synchronizing".',NULL,'0','2','0','','0','','0','','0','','112b6ba5294946c7973d278392266439',''), ('23576','{33454}=3','MSSQL: Mirroring ''{#DBNAME}'': "{#DBNAME}" is {ITEM.VALUE}','','0','2','The state of the mirror database and of the database mirroring session is "Pending failover".',NULL,'0','2','0','','0','','0','','0','','33ef90679bcb47f09cc0c5372ea54fdc',''), ('23577','{33455}=5','MSSQL: Mirroring ''{#DBNAME}'': "{#DBNAME}" is {ITEM.VALUE}','','0','4','The state of the mirror database and of the database mirroring session is "Not synchronized". The partners are not synchronized. A failover is not possible now.',NULL,'0','2','0','','0','','0','','0','','4e7813c78c8f47808cfb5c970de2ad99',''), ('23578','{33456}>=0 and {33456}<=2','MSSQL: Mirroring ''{#DBNAME}'': "{#DBNAME}" is {ITEM.VALUE}','','0','1','The state of the mirror database and of the database mirroring session is "Suspended", "Disconnected from the other partner", or "Synchronizing".',NULL,'0','2','0','','0','','0','','0','','5554197e2079495ab49491ca0855ccee',''), ('23579','{33457}=2','MSSQL: Mirroring ''{#DBNAME}'': "{#DBNAME}" Witness is disconnected','','0','2','The state of the witness in the database mirroring session of the database is "Disconnected".',NULL,'0','2','0','','0','','0','','0','','3a3903f3008b4360a93e45d94f344a42',''), ('23580','{33458}>{33459} and {33459}>{33460}','MSSQL: AG ''{#GROUP_NAME}'' Non-Local DB ''*{#REPLICA_NAME}*{#DBNAME}'': Log queue size is growing','','0','4','The log records of the primary database are not sent to the secondary databases.',NULL,'0','2','0','','0','','0','','0','','16b1fc9ee0e340ac8f1742d04ffc6393',''), ('23581','{33461}>{33462} and {33462}>{33463}','MSSQL: AG ''{#GROUP_NAME}'' Non-Local DB ''*{#REPLICA_NAME}*{#DBNAME}'': Redo log queue size is growing','','0','4','The log records in the log files of the secondary replica have not yet been redone.',NULL,'0','2','0','','0','','0','','0','','b4748575543a451c85fa013e4867e38f',''), ('23582','{33464}=0 and {33465}=2','MSSQL: AG ''{#GROUP_NAME}'' Replica ''{#REPLICA_NAME}'': {#REPLICA_NAME} is disconnected','','0','2','The response of an availability replica to the "Disconnected" state depends on its role: On the primary replica, if a secondary replica is disconnected, its secondary databases are marked as "Not synchronized" on the primary replica, which waits for the secondary to reconnect; On a secondary replica, upon detecting that it is disconnected, the secondary replica attempts to reconnect to the primary replica.',NULL,'0','2','0','','0','','0','','0','','b6e37290b6b44d2888bdbfe53a949b63',''), ('23583','{33466}=0 or {33466}=1 or {33466}=3','MSSQL: AG ''{#GROUP_NAME}'' Replica ''{#REPLICA_NAME}'': {#REPLICA_NAME} is {ITEM.VALUE}','','0','2','The operational state of the replica in a given availability group is "Pending" or "Offline".',NULL,'0','2','0','','0','','0','','0','','7a05f5f0393f442d8e5d78669e9dd8cb',''), ('23584','{33467}=4','MSSQL: AG ''{#GROUP_NAME}'' Replica ''{#REPLICA_NAME}'': {#REPLICA_NAME} is {ITEM.VALUE}','','0','3','The operational state of the replica in a given availability group is "Failed".',NULL,'0','2','0','','0','','0','','0','','5f67fcecd9864c5a97c0bb7c8281cd81',''), ('23585','{33468}=5','MSSQL: AG ''{#GROUP_NAME}'' Replica ''{#REPLICA_NAME}'': {#REPLICA_NAME} is {ITEM.VALUE}','','0','4','The operational state of the replica in a given availability group is "Failed, no quorum".',NULL,'0','2','0','','0','','0','','0','','7e387d698f214c458a6e45d64191185e',''), ('23586','{33469}=0','MSSQL: AG ''{#GROUP_NAME}'' Replica ''{#REPLICA_NAME}'': {#REPLICA_NAME} Recovery in progress','','0','1','At least one joined database has a database state other than "Online".',NULL,'0','2','0','','0','','0','','0','','9c5f393288114e1081055f18c136dd07',''), ('23587','{33470}=0','MSSQL: AG ''{#GROUP_NAME}'' Replica ''{#REPLICA_NAME}'': {#REPLICA_NAME} is Not healthy','','0','3','At least one joined database is in the "Not synchronizing" state.',NULL,'0','2','0','','0','','0','','0','','57aef51f42cd4e40a1041bb6862fde27',''), ('23588','{33471}=1','MSSQL: AG ''{#GROUP_NAME}'' Replica ''{#REPLICA_NAME}'': {#REPLICA_NAME} is Partially healthy','','0','2','Some replicas are not in the target synchronization state: synchronous-commit replicas should be synchronized, and asynchronous-commit replicas should be synchronizing.',NULL,'0','2','0','','0','','0','','0','','e2ce3d5eb0174f1789ed01f3516f25dd',''), ('23589','length({33472}) > 0','YugabyteDB: Failed to fetch data','','0','2','Failed to fetch data about cluster.',NULL,'0','0','0','','0','','0','','0','','add4067f699f401887d259ee35b4d654',''), ('23590','{33473} > {$YUGABYTEDB.CONNECTION.UTILIZATION.WARN}','YugabyteDB Cluster: Average utilization of connections is high','','0','2','YugabyteDB Cluster uses more than {$YUGABYTEDB.CONNECTION.UTILIZATION.WARN}% of the connection limit.',NULL,'0','0','0','','0','','0','Current connections utilization: {ITEM.LASTVALUE1}','0','YugabyteDB Cluster: Average utilization of connections is high (over {$YUGABYTEDB.CONNECTION.UTILIZATION.WARN}% for 5m)','5caf42a5309a4f0f834b6058f4741a44',''), ('23591','{33474} > {$YUGABYTEDB.CONNECTION.UTILIZATION.CRIT}','YugabyteDB Cluster: Average utilization of connections is too high','','0','4','YugabyteDB Cluster uses more than {$YUGABYTEDB.CONNECTION.UTILIZATION.CRIT}% of the connection limit.',NULL,'0','0','0','','0','','0','Current connections utilization: {ITEM.LASTVALUE1}','0','YugabyteDB Cluster: Average utilization of connections is too high (over {$YUGABYTEDB.CONNECTION.UTILIZATION.CRIT}% for 5m)','68d2710963394afe8218178c98e88c62',''), ('23592','{33475} > {$YUGABYTEDB.CPU.UTILIZATION.WARN}','YugabyteDB Cluster: CPU utilization is high','','0','2','YugabyteDB Cluster CPU utilization is more than {$YUGABYTEDB.CPU.UTILIZATION.WARN}%. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','YugabyteDB Cluster: CPU utilization is high (over {$YUGABYTEDB.CPU.UTILIZATION.WARN}% for 5m)','22340ce9ea2e457fa4270498bfc53666',''), ('23593','{33476} > {$YUGABYTEDB.CPU.UTILIZATION.CRIT}','YugabyteDB Cluster: CPU utilization is too high','','0','4','YugabyteDB Cluster CPU utilization is more than {$YUGABYTEDB.CPU.UTILIZATION.CRIT}%. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','YugabyteDB Cluster: CPU utilization is too high (over {$YUGABYTEDB.CPU.UTILIZATION.CRIT}% for 5m)','ed88478e0a784c8dbbe95c20b08c167e',''), ('23594','{33477} > {$YUGABYTEDB.DISK.UTILIZATION.CRIT}','YugabyteDB Cluster: Storage space is critically low','','0','4','YugabyteDB Cluster uses more than {$YUGABYTEDB.DISK.UTILIZATION.CRIT}% of disk space.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','','3571704c29e040b198a6e72d7526c98a',''), ('23595','{33478} > {$YUGABYTEDB.DISK.UTILIZATION.WARN}','YugabyteDB Cluster: Storage space is low','','0','2','YugabyteDB Cluster uses more than {$YUGABYTEDB.DISK.UTILIZATION.WARN}% of disk space.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','','21623809368a43b0bdfb127f2fdea22c',''), ('23596','{33479} <> 0','YugabyteDB Cluster: Cluster is not healthy','','0','3','YugabyteDB Cluster is not healthy.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e111a563fb9947eda48a56ad5ef59891',''), ('23597','{33480} > {$YUGABYTEDB.MEMORY.CLUSTER.UTILIZATION.WARN}','YugabyteDB Cluster: Memory utilization is high','','0','2','YugabyteDB Cluster uses more than {$YUGABYTEDB.MEMORY.CLUSTER.UTILIZATION.WARN}% of memory.',NULL,'0','0','0','','0','','0','Current memory utilization: {ITEM.LASTVALUE1}','0','YugabyteDB Cluster: Memory utilization is high (>{$YUGABYTEDB.MEMORY.CLUSTER.UTILIZATION.WARN} for 5m)','5614204dbeca4b799989a13717824f07',''), ('23598','{33481} > {$YUGABYTEDB.MEMORY.CLUSTER.UTILIZATION.CRIT}','YugabyteDB Cluster: Memory utilization is too high','','0','4','YugabyteDB Cluster uses more than {$YUGABYTEDB.MEMORY.CLUSTER.UTILIZATION.CRIT}% of memory.',NULL,'0','0','0','','0','','0','Current memory utilization: {ITEM.LASTVALUE1}','0','YugabyteDB Cluster: Memory utilization is too high (>{$YUGABYTEDB.MEMORY.CLUSTER.UTILIZATION.CRIT} for 5m)','27a8c6b07e474581be53f5d896387f45',''), ('23599','{33482} <> {33483} and length({33484}) > 0','YugabyteDB Cluster: Cluster software version has changed','','0','1','YugabyteDB Cluster software version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current version: {ITEM.LASTVALUE1}','0','YugabyteDB Cluster: Cluster software version has changed (new version: {ITEM.VALUE})','27fdbe72229343029ede51c7705c28c4',''), ('23600','{33485} <> {33486} and length({33487}) > 0','YugabyteDB Cluster: YB controller version has changed','','0','1','YugabyteDB Cluster YB controller version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current version: {ITEM.LASTVALUE1}','0','YugabyteDB Cluster: YB controller version has changed (new version: {ITEM.VALUE})','d927b0d668fc413db697a2360ac806a6',''), ('23601','length({33488}) > 0 or length({33489}) > 0 or length({33490}) > 0','YugabyteDB Cluster: Failed to fetch data','','0','2','Failed to fetch data from the YugabyteDB API.',NULL,'0','0','0','','0','','0','','0','','12afa59565304d648e7a0165ea367a2a',''), ('23602','length({33491}) > 0 or length({33492}) > 0','YugabyteDB Cluster: Failed to fetch metric data','','0','2','Failed to fetch cluster metrics or cluster statistics.',NULL,'0','0','0','','0','','0','','0','','93ea4576b31f44ca8ceef6db0ff12e2d',''), ('23603','{33493} > {$YUGABYTEDB.IOPS.UTILIZATION.WARN}','YugabyteDB Cluster: YugabyteDB Node [{#NODE.NAME}]: Node disk IOPS utilization is high','','0','2','IOPS utilization on the node [{#NODE.NAME}] is more than {$YUGABYTEDB.IOPS.UTILIZATION.WARN}% of the provisioned IOPS.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','YugabyteDB Cluster: YugabyteDB Node [{#NODE.NAME}]: Node disk IOPS utilization is high (over {$YUGABYTEDB.IOPS.UTILIZATION.WARN} for 5m)','c19790737c854c8e8848781b5ccf5b1f',''), ('23604','{33494} > {$YUGABYTEDB.IOPS.UTILIZATION.CRIT}','YugabyteDB Cluster: YugabyteDB Node [{#NODE.NAME}]: Node disk IOPS utilization is too high','','0','4','IOPS utilization on the node [{#NODE.NAME}] is more than {$YUGABYTEDB.IOPS.UTILIZATION.CRIT}% of the provisioned IOPS.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','YugabyteDB Cluster: YugabyteDB Node [{#NODE.NAME}]: Node disk IOPS utilization is too high (over {$YUGABYTEDB.IOPS.UTILIZATION.CRIT} for 5m)','27f43e701e4e47c4aad2fa6c9a118fb1',''), ('23605','{33495} = 0','YugabyteDB Cluster: YugabyteDB Node [{#NODE.NAME}]: Node is down','','0','3','The node [{#NODE.NAME}] is down.',NULL,'0','2','0','','0','','0','','0','','3bdaff0934564a809dc565357c50486d',''), ('23606','{33496}=0','Check Point: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','b1d8e86983234d998ed7819d176dc406',''), ('23607','{33497}>{$ICMP_LOSS_WARN} and {33497}<100','Check Point: High ICMP ping loss','','0','2','ICMP packet loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','7fc82682e0c345e8aefd0c9a261f6890',''), ('23608','{33498}>{$ICMP_RESPONSE_TIME_WARN}','Check Point: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','95c6128f0ab84518af233627fe6f3e2b',''), ('23609','{33499}>{$CPU.UTIL.CRIT}','Check Point: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Check Point: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','b9df7717d21145dc86954380422671a9',''), ('23610','{33500}<>{33501} and length({33502})>0','Check Point: Device has been replaced','','0','1','The device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Check Point: Device has been replaced (new serial number received)','13644b6f980d409c865fab446296791b',''), ('23611','{33503}<>{33504} and length({33505})>0','Check Point: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Check Point: System name has changed (new name: {ITEM.VALUE})','d6891f768d354bd09adf47ea313a4ec8',''), ('23612','{33506}<10m','Check Point: Device has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Check Point: {HOST.NAME} has been restarted (uptime < 10m)','9c5b6ef7d033486189e045ad62d13991',''), ('23613','{33507}>{$MEMORY.UTIL.MAX}','Check Point: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','Check Point: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','e641a3b2e5ce41dabffed001b26c6075',''), ('23614','{33508}=0','Check Point: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','5d450a6a6d1f483da57164e6a32d1828',''), ('23615','{33509}/{33510}>{$LOAD_AVG_PER_CPU.MAX.WARN} and {33511}>0 and {33512}>0','Check Point: Load average is too high','','0','3','The load average per CPU is too high. The system may be slow to respond.',NULL,'0','0','0','','0','','0','Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}','0','Check Point: Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m)','dc26681b9d8244799f28c6bda3dded3c',''), ('23616','{33513}=3','Check Point: FAN {#SNMPINDEX}: Fan speed is out of range','','0','3','Please check the fan unit.',NULL,'0','2','1','{33514}=0','0','','0','Current state: {ITEM.LASTVALUE1}','0','','5e4f3ca3b93940adaf3a5f9e19aee9ec',''), ('23617','{33515}>{$FW.DROPPED.PACKETS.TH}','Check Point Firewall: Instance is currently fully utilized','','0','4','This trigger uses the number of dropped packets, an increase of which indicates that the instance is fully utilized.',NULL,'0','2','1','{33516}<={$FW.DROPPED.PACKETS.TH}','0','','0','Current value: {ITEM.LASTVALUE1}','0','Check Point Firewall: Number of dropped packets has been increased: >{$FW.DROPPED.PACKETS.TH}','424568aded01461bb1fe5583ef373418',''), ('23618','{33517}<0 and {33518}>0 and ( {33519}=6 or {33519}=7 or {33519}=11 or {33519}=62 or {33519}=69 or {33519}=117 ) and ({33520}<>2)','Check Point: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({33517}>0 and {33521}>0) or ({33520}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','4000bd86c3ca4597bc55accf186f49a2',''), ('23619','({33522}>({$NET.IF.UTIL.MAX:"{#IFNAME}"}/100)*{33523} or {33524}>({$NET.IF.UTIL.MAX:"{#IFNAME}"}/100)*{33523}) and {33523}>0','Check Point: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{33522}<(({$NET.IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{33523} and {33524}<(({$NET.IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{33523}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Check Point: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$NET.IF.UTIL.MAX:"{#IFNAME}"}%)','af4c27b4c8474728973ea1d3d0a78dff',''), ('23620','{33525}>{$NET.IF.ERRORS.WARN:"{#IFNAME}"} or {33526}>{$NET.IF.ERRORS.WARN:"{#IFNAME}"}','Check Point: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$NET.IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{33527}<{$NET.IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {33528}<{$NET.IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Check Point: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$NET.IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','d0d1f9f90be948c2ac0b3b40676a52bd',''), ('23621','{$NET.IF.CONTROL:"{#IFNAME}"}=1 and {33871}=2 and ({33872}<>{33873})','Check Point: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the interface link status is down. 2. `{$NET.IF.CONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface link is down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the interface link status was up to "1" sometime before. WARNING: If closed manually, it will not fire again on the next poll because of `diff`.',NULL,'0','2','1','{33871}<>2 or {$NET.IF.CONTROL:"{#IFNAME}"}=0','0','','1','Current status: {ITEM.LASTVALUE1}','0','','6cdb81b7e49a49a48cfc3f203a08ae6b',''), ('23622','{33532}=3','Check Point: PSU {#SNMPINDEX}: Power supply is in down state','','0','3','Please check the power supply unit for errors.',NULL,'0','2','1','{33533}=0','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c5fa57ebf5ea40f8a0172f9ed09ca232',''), ('23623','{$LICENSE.CONTROL:"{#SW.NAME}"}=1 and ({33534} - now()) / 86400 < {$LICENSE.EXPIRY.WARN:"{#SW.NAME}"} and {33534} > now()','Check Point: {#SW.NAME}: License expires soon','','0','2','This trigger expression works as follows: 1. It can be triggered if the license expires soon. 2. `{$LICENSE.CONTROL:"{#SW.NAME}"}=1` - a user can redefine the context macro to "0", marking the current license as not important. No new trigger will be fired if this license expires.',NULL,'0','2','0','','0','','1','Current expiration date: {ITEM.LASTVALUE1}','0','Check Point: {#SW.NAME}: License expires soon (less than {$LICENSE.EXPIRY.WARN:"{#SW.NAME}"} days)','645bfe77760d49d7a23344d9f910045b',''), ('23624','{$LICENSE.CONTROL:"{#SW.NAME}"}=1 and {35045} < now()','Check Point: {#SW.NAME}: License has been expired','','0','3','This trigger expression works as follows: 1. It can be triggered if the license has been expired. 2. `{$LICENSE.CONTROL:"{#SW.NAME}"}=1` - a user can redefine the context macro to "0", marking the current license as not important. No new trigger will be fired if this license is expired.',NULL,'0','2','0','','0','','1','Current expiration date: {ITEM.LASTVALUE1}','0','','b50b2374731344a4b5cea5096c5de848',''), ('23625','{33536}>{$TEMP.VALUE.CRIT:"{#SENSOR.NAME}"}','Check Point: {#SENSOR.NAME}: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values.',NULL,'0','2','1','{33537}<{$TEMP.VALUE.CRIT:"{#SENSOR.NAME}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Check Point: {#SENSOR.NAME}: Temperature is above critical threshold: >{$TEMP.VALUE.CRIT:"{#SENSOR.NAME}"}','8d99d20265644e11b04811df55ac351e',''), ('23626','{33538}>{$TEMP.VALUE.WARN:"{#SENSOR.NAME}"}','Check Point: {#SENSOR.NAME}: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values.',NULL,'0','2','1','{33539}<{$TEMP.VALUE.WARN:"{#SENSOR.NAME}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Check Point: {#SENSOR.NAME}: Temperature is above warning threshold: >{$TEMP.VALUE.WARN:"{#SENSOR.NAME}"}','1bf4c64452754e4e9c2d700a8111c05d',''), ('23627','{33540}<{$TEMP.VALUE.LOW:"{#SENSOR.NAME}"}','Check Point: {#SENSOR.NAME}: Temperature is too low','','0','3','This trigger uses temperature sensor values.',NULL,'0','2','1','{33541}>{$TEMP.VALUE.LOW:"{#SENSOR.NAME}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Check Point: {#SENSOR.NAME}: Temperature is too low: <{$TEMP.VALUE.LOW:"{#SENSOR.NAME}"}','c30e7ceef9b64ad1afbd9a08125c1fd8',''), ('23628','{33542}>{$DISK.PUSED.MAX.CRIT:"{#DISK.NAME}"} and ({33543}-{33544})<{$DISK.FREE.MIN.CRIT:"{#DISK.NAME}"}','Check Point: {#DISK.NAME}: Disk space is critically low','','0','3','Two conditions should match: 1. The first condition - utilization of the space should be above `{$DISK.PUSED.MAX.CRIT:"{#DISK.NAME}"}`. 2. The second condition should be one of the following: - the disk free space is less than `{$DISK.FREE.MIN.CRIT:"{#DISK.NAME}"}`; - the disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Check Point: {#DISK.NAME}: Disk space is critically low (used > {$DISK.PUSED.MAX.CRIT:"{#DISK.NAME}"}%)','d56142259e9b4a778a90f88fad2f5ca7',''), ('23629','{33545}>{$DISK.PUSED.MAX.WARN:"{#DISK.NAME}"} and ({33546}-{33547})<{$DISK.FREE.MIN.WARN:"{#DISK.NAME}"}','Check Point: {#DISK.NAME}: Disk space is low','','0','2','Two conditions should match: 1. The first condition - utilization of the space should be above `{$DISK.PUSED.MAX.WARN:"{#DISK.NAME}"}`. 2. The second condition should be one of the following: - the disk free space is less than `{$DISK.FREE.MIN.WARN:"{#DISK.NAME}"}`; - the disk will be full in less than 24 hours.',NULL,'0','2','0','','0','','1','Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})','0','Check Point: {#DISK.NAME}: Disk space is low (used > {$DISK.PUSED.MAX.WARN:"{#DISK.NAME}"}%)','edb173121bf94dc99e6626743b9ac3ad',''), ('23630','{$VPN.STATE.CONTROL:"{#VPN.NAME}"}=1 and {33548}=131','Check Point: VPN {#VPN.NAME}: Tunnel down','','0','3','This trigger expression works as follows: 1. It can be triggered if the current tunnel state is down. 2. `{$VPN.STATE.CONTROL:"{#VPN.NAME}"}=1` - a user can redefine the context macro to "0", marking this notification as not important. No new trigger will be fired if this tunnel is down.',NULL,'0','2','1','{33548}=3 or {$VPN.STATE.CONTROL:"{#VPN.NAME}"}=0','0','','1','Current status: {ITEM.LASTVALUE1}','0','','25261c25e01c4f4292e9e47b3eeef100',''), ('23631','{33549}=3','VMware: The [{#CLUSTER.NAME}] status is Red','','0','4','A cluster enabled for DRS becomes invalid (red) when the tree is no longer internally consistent, that is, when resource constraints are not observed. See also: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-resource-management/GUID-C7417CAA-BD38-41D0-9529-9E7A5898BB12.html',NULL,'0','2','0','','0','','0','','0','','9f7bcea84eb54fe5b79481267e6db341',''), ('23632','{33550}=2','VMware: The [{#CLUSTER.NAME}] status is Yellow','','0','3','A cluster becomes overcommitted (yellow) when the tree of resource pools and virtual machines is internally consistent but the cluster does not have the capacity to support all the resources reserved by the child resource pools. See also: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-resource-management/GUID-ED8240A0-FB54-4A31-BD3D-F23FE740F10C.html',NULL,'0','2','0','','0','','0','','0','','bf1e7838597241228506c5cfb7063950',''), ('23633','{33551}=3','VMware FQDN: The [{#CLUSTER.NAME}] status is Red','','0','4','A cluster enabled for DRS becomes invalid (red) when the tree is no longer internally consistent, that is, when resource constraints are not observed. See also: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-resource-management/GUID-C7417CAA-BD38-41D0-9529-9E7A5898BB12.html',NULL,'0','2','0','','0','','0','','0','','962adf853de24f589e34df7ddd560885',''), ('23634','{33552}=2','VMware FQDN: The [{#CLUSTER.NAME}] status is Yellow','','0','3','A cluster becomes overcommitted (yellow) when the tree of resource pools and virtual machines is internally consistent but the cluster does not have the capacity to support all the resources reserved by the child resource pools. See also: https://docs.vmware.com/en/VMware-vSphere/8.0/vsphere-resource-management/GUID-ED8240A0-FB54-4A31-BD3D-F23FE740F10C.html',NULL,'0','2','0','','0','','0','','0','','44d12ca67931452194d1e1071136015d',''), ('23635','{33553} = 0','OCI Autonomous DB: Database is not available','','0','4','Autonomous database is not available.',NULL,'0','0','0','','0','','0','','0','','21b1a5c7d7754eb6be30098b2df99a22',''), ('23636','{33554} >= {$OCI.AUTONOMOUS.DB.CPU.UTIL.WARN}','OCI Autonomous DB: Current CPU utilization is high','','0','2','Current CPU utilization has exceeded `{$OCI.AUTONOMOUS.DB.CPU.UTIL.WARN}`% of the max available value.',NULL,'0','0','0','','0','','0','Current: {ITEM.LASTVALUE1}','0','OCI Autonomous DB: Current CPU utilization is high (util >= {$OCI.AUTONOMOUS.DB.CPU.UTIL.WARN}%)','59fd2d0eff9f4f5493cd0de94ba57572',''), ('23637','{33555} >= {$OCI.AUTONOMOUS.DB.CPU.UTIL.HIGH}','OCI Autonomous DB: Current CPU utilization is too high','','0','4','Current CPU utilization has exceeded `{$OCI.AUTONOMOUS.DB.CPU.UTIL.HIGH}`% of the max available value.',NULL,'0','0','0','','0','','0','Current: {ITEM.LASTVALUE1}','0','OCI Autonomous DB: Current CPU utilization is too high (util >= {$OCI.AUTONOMOUS.DB.CPU.UTIL.HIGH}%)','f8a53ef11d2140649bc701660183c33d',''), ('23638','{33556} = 12','OCI Autonomous DB: Available, needs attention','','0','2','Autonomous database is available, but needs attention.',NULL,'0','0','0','','0','','0','','0','','bb790262359f4e35af895b1a69ad511c',''), ('23639','{33557} = 19 or {33557} = 20','OCI Autonomous DB: Database is not available or accessible','','0','4','Autonomous database is not available or accessible.',NULL,'0','0','0','','0','','0','','0','','18594a88549843c498d0e037f51afc59',''), ('23640','{33558} = 9','OCI Autonomous DB: Restore has failed','','0','2','Autonomous database restore has failed.',NULL,'0','0','0','','0','','0','','0','','4ee1a96f29ef461c8830667e19637911',''), ('23641','{33559}<>{33560}','OCI Autonomous DB: State has changed','','0','1','Autonomous database state has changed.',NULL,'0','0','0','','0','','1','Current state: {ITEM.LASTVALUE}','0','OCI Autonomous DB: State has changed (new state: {ITEM.VALUE})','783550ed705944259190fb10dae3f5a8',''), ('23642','{33561} = 0','OCI Autonomous DB: State unknown','','0','2','Autonomous database state is unknown.',NULL,'0','0','0','','0','','0','','0','','2bc79a5a19a544d39c6de861b94564af',''), ('23643','{33562} >= {$OCI.AUTONOMOUS.DB.STORAGE.UTIL.WARN}','OCI Autonomous DB: Current storage utilization is high','','0','2','Current storage utilization has exceeded `{$OCI.AUTONOMOUS.DB.STORAGE.UTIL.WARN}`% of the max available value.',NULL,'0','0','0','','0','','0','Current: {ITEM.LASTVALUE1}','0','OCI Autonomous DB: Current storage utilization is high (util >= {$OCI.AUTONOMOUS.DB.STORAGE.UTIL.WARN}%)','37bb41d830424ba2871e768957225add',''), ('23644','{33563} >= {$OCI.AUTONOMOUS.DB.STORAGE.UTIL.HIGH}','OCI Autonomous DB: Current storage utilization is too high','','0','4','Current storage utilization has exceeded `{$OCI.AUTONOMOUS.DB.STORAGE.UTIL.HIGH}`% of the max available value.',NULL,'0','0','0','','0','','0','Current: {ITEM.LASTVALUE1}','0','OCI Autonomous DB: Current storage utilization is too high (util >= {$OCI.AUTONOMOUS.DB.STORAGE.UTIL.HIGH}%)','8e16451106094713abaa624967026dc3',''), ('23645','{33564} = 0','OCI Block Volume: Block volume state unknown','','0','2','Block volume state is unknown.',NULL,'0','0','0','','0','','0','','0','','4ea859d86e29455aa4bdd2f3667894f6',''), ('23646','{33565} >= 4','OCI Block Volume: Block volume terminated or faulty','','0','4','Block volume state is "terminated"/"terminating" or "faulty".',NULL,'0','0','0','','0','','0','','0','','b8d9491d762f40c58fb1094fa0468d9e',''), ('23647','{33566} = 0','OCI Boot Volume: Boot volume state unknown','','0','2','Boot volume state is unknown.',NULL,'0','0','0','','0','','0','','0','','b31f698c5b164afc85a14acc813f463d',''), ('23648','{33567} >= 4','OCI Boot Volume: Boot volume terminated or faulty','','0','4','Boot volume state is "terminated"/"terminating" or "faulty".',NULL,'0','0','0','','0','','0','','0','','6525eef6dd6c4cb0a22a6442773c3cfa',''), ('23649','{33568} = 1','OCI Compute: Compute instance is not available','','0','4','Current instance availability.',NULL,'0','0','0','','0','','0','','0','','dbaee26c1de544d08fa6dd76ddc4c06a',''), ('23650','{33569} >= {$OCI.COMPUTE.CPU.UTIL.WARN}','OCI Compute: Current CPU utilization is high','','0','2','Current CPU utilization has exceeded `{$OCI.COMPUTE.CPU.UTIL.WARN}`% of the max available value.',NULL,'0','0','0','','0','','0','Current: {ITEM.LASTVALUE1}','0','OCI Compute: Current CPU utilization is high (util >= {$OCI.COMPUTE.CPU.UTIL.WARN}%)','38987527713b404f842e26ad12ce3015',''), ('23651','{33570} >= {$OCI.COMPUTE.CPU.UTIL.HIGH}','OCI Compute: Current CPU utilization is too high','','0','4','Current CPU utilization has exceeded `{$OCI.COMPUTE.CPU.UTIL.HIGH}`% of the max available value.',NULL,'0','0','0','','0','','0','Current: {ITEM.LASTVALUE1}','0','OCI Compute: Current CPU utilization is too high (util >= {$OCI.COMPUTE.CPU.UTIL.HIGH}%)','082ba105bf614996a68054ad8c7d7101',''), ('23652','{33571} >= {$OCI.COMPUTE.MEM.UTIL.WARN}','OCI Compute: Current memory utilization is high','','0','2','Current memory utilization has exceeded `{$OCI.COMPUTE.MEM.UTIL.WARN}`% of the max available value.',NULL,'0','0','0','','0','','0','Current: {ITEM.LASTVALUE1}','0','OCI Compute: Current memory utilization is high (util >= {$OCI.COMPUTE.MEM.UTIL.WARN}%)','9baaacf70a4446a7ae816afdc4db0ae8',''), ('23653','{33572} >= {$OCI.COMPUTE.MEM.UTIL.HIGH}','OCI Compute: Current memory utilization is too high','','0','4','Current memory utilization has exceeded `{$OCI.COMPUTE.MEM.UTIL.HIGH}`% of the max available value.',NULL,'0','0','0','','0','','0','Current: {ITEM.LASTVALUE1}','0','OCI Compute: Current memory utilization is too high (util >= {$OCI.COMPUTE.MEM.UTIL.HIGH}%)','3b894aa250f04ebdb63fb8a914fbd72a',''), ('23654','{33573}<>{33574}','OCI Compute: State has changed','','0','1','Compute instance state has changed.',NULL,'0','0','0','','0','','1','Current state: {ITEM.LASTVALUE}','0','OCI Compute: State has changed (new state: {ITEM.VALUE})','2bce7c23998f4331a5eca3507fc671d9',''), ('23655','{33575} = 3 or {33575} = 4','OCI VCN: VCN state terminated','','0','4','Virtual cloud network state is "terminated" or "terminating".',NULL,'0','0','0','','0','','0','','0','','8a5a94ea28db43df93e85d26703f9e7c',''), ('23656','{33576} = 0','OCI VCN: VCN state unknown','','0','2','Virtual cloud network state is unknown.',NULL,'0','0','0','','0','','0','','0','','80c3f4d6696c40a78ddb2c00378eeae1',''), ('23657','{33577}<>{33578} and length({33579})>0','OCI Object Storage: Object lifecycle management policy has changed','','0','1','The object lifecycle management policy configuration has changed.',NULL,'0','0','0','','0','','0','','0','','5d9652a8736247c2bcac15cf02012824',''), ('23658','{33580} >= 3','OCI Compute: VNIC [{#NAME}]: VNIC is not attached','','0','4','Virtual network interface card attachment status.',NULL,'0','2','0','','0','','0','','0','','7176da6364464cfcacadfcfe7e81fdb3',''), ('23659','{33581} = 1','OCI Compute: VNIC [{#NAME}]: Conntrack table full','','0','4','Virtual network interface card connection tracking table is full.',NULL,'0','2','0','','0','','0','','0','','4faafcd1719745749ae1e3b2c58a09d0',''), ('23660','{33582} >= {$OCI.COMPUTE.VNIC.CONNTRACK.UTIL.WARN}','OCI Compute: VNIC [{#NAME}]: Current conntrack table utilization is high','','0','2','Current conntrack table utilization has exceeded `{$OCI.COMPUTE.VNIC.CONNTRACK.UTIL.WARN}`% of the max available value.',NULL,'0','2','0','','0','','0','Current: {ITEM.LASTVALUE1}','0','OCI Compute: VNIC [{#NAME}]: Current conntrack table utilization is high (util >= {$OCI.COMPUTE.VNIC.CONNTRACK.UTIL.WARN}%)','c2fd382491624a74b2956be3dad187ea',''), ('23661','{33583} >= {$OCI.COMPUTE.VNIC.CONNTRACK.UTIL.HIGH}','OCI Compute: VNIC [{#NAME}]: Current conntrack table utilization is too high','','0','4','Current conntrack table utilization has exceeded `{$OCI.COMPUTE.VNIC.CONNTRACK.UTIL.HIGH}`% of the max available value.',NULL,'0','2','0','','0','','0','Current: {ITEM.LASTVALUE1}','0','OCI Compute: VNIC [{#NAME}]: Current conntrack table utilization is too high (util >= {$OCI.COMPUTE.VNIC.CONNTRACK.UTIL.HIGH}%)','cf98ffe12a2b413c9b1384e9ec167cbd',''), ('23662','{33584} = 3 or {33584} = 4','OCI VCN: Subnet [{#NAME}]: Subnet state terminated','','0','4','Virtual cloud network subnet state is "terminated" or "terminating".',NULL,'0','2','0','','0','','0','','0','','f048db860c0c4134acdbcbf19ea554eb',''), ('23663','{33585} = 0','OCI VCN: Subnet [{#NAME}]: Subnet state unknown','','0','2','Virtual cloud network subnet state is unknown.',NULL,'0','2','0','','0','','0','','0','','d34e5b8c571b41f9ba5dc11453431860',''), ('23664','{33587}<{$DISK.FREE.WARN}','FortiGate: Free disk space is low','','0','2','Available disk space is not enough.',NULL,'0','0','0','','0','','0','','0','FortiGate: Free disk space is less than {$DISK.FREE.WARN}%','424ab075f1ff46e1b64f9416dee4f3f7',''), ('23665','{33596}>{$SDWAN.HEALTH.IF.LOSS.WARN:"{#HNAME}"}','FortiGate: SD-WAN [{#HNAME}]:[{#IFNAME}]: High packets loss','','0','2','High level of packet loss detected.',NULL,'0','2','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','cdc2b26246a84feca7ad03b137cbad2a',''), ('23666','{$SDWAN.HEALTH.IF.CONTROL:"{#HNAME}"}=1 and {33597}=1 and ({33598}<>{33599})','FortiGate: SD-WAN [{#HNAME}]:[{#IFNAME}]: Health check state is dead','','0','3','This trigger expression works as follows: 1. It can be triggered if the health check state is dead. 2. `{$SDWAN.HEALTH.IF.CONTROL:"{#HNAME}"}=1` - a user can redefine the context macro to "0", marking this health check as not important. No new trigger will be fired if this health check is dead. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the health check state was up to "1" sometime before. WARNING: If closed manually, it will not fire again on the next poll because of `diff`.',NULL,'0','2','1','{33597}<>2 or {$SDWAN.HEALTH.IF.CONTROL:"{#HNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','65cfabab3fa64beaac6dd7d1513359a8',''), ('23667','{$VPN.STATE.CONTROL:"{#VPN.NAME}"}=1 and {33600}=1 and ({33601}<>{33602})','FortiGate: VPN {#VPN.NAME}: Tunnel down','','0','3','This trigger expression works as follows: 1. It can be triggered if the current tunnel state is down. 2. `{$VPN.STATE.CONTROL}=1` - a user can redefine the context macro to "0", marking this notification as not important. No new trigger will be fired if this tunnel is down.',NULL,'0','2','1','{33600}<>1 or {$VPN.STATE.CONTROL:"{#VPN.NAME}"}=0','0','','1','Current status: {ITEM.LASTVALUE1}','0','','20a833f3ba1c4c939a909fda92f01ffc',''), ('23668','{$WC.STATE.CONTROL:"{#WC.NAME}"}=1 and {33603}=1 and ({33604}<>{33605})','FortiGate: WTP {#WC.NAME}: Connection is down','','0','4','This trigger expression works as follows: 1. It can be triggered if the current connection status is `offLine`. 2. `{$WC.STATE.CONTROL}=1` - a user can redefine the context macro to "0", marking this notification as not important. No new trigger will be fired if this connection is down.',NULL,'0','2','1','{33603}=2 or {$WC.STATE.CONTROL:"{#WC.NAME}"}=0','0','','1','Current status: {ITEM.LASTVALUE1}','0','','93f58a2d4d9a4de9a8f0fe9e143a711a',''), ('23669','{$WC.UPDATE.CONTROL:"{#WC.NAME}"}=1 and {33606}=3 and ({33607}<>{33608})','FortiGate: WTP {#WC.NAME}: Receiving firmware update','','0','1','This trigger expression works as follows: 1. It can be triggered if the current connection status is `downloadingImage`. 2. `{$WC.UPDATE.CONTROL}=1` - a user can redefine the context macro to "0", marking this notification as not important. No new trigger will be fired if the status is `downloadingImage`.',NULL,'0','2','1','{33606}=2 or {$WC.UPDATE.CONTROL:"{#WC.NAME}"}=0','0','','1','Current status: {ITEM.LASTVALUE1}','0','','2e4f389bf3024d3780c4e894b340e5bb',''), ('23670','{$WC.UPDATE.CONTROL:"{#WC.NAME}"}=1 and {33609}=4 and ({33610}<>{33611})','FortiGate: WTP {#WC.NAME}: Sending firmware update','','0','1','This trigger expression works as follows: 1. It can be triggered if the current connection status is `connectedImage`. 2. `{$WC.UPDATE.CONTROL}=1` - a user can redefine the context macro to "0", marking this notification as not important. No new trigger will be fired if the status is `connectedImage`.',NULL,'0','2','1','{33609}=2 or {$WC.UPDATE.CONTROL:"{#WC.NAME}"}=0','0','','1','Current status: {ITEM.LASTVALUE1}','0','','01eca2e3a28b48db835ff7a5598b0ee7',''), ('23671','{33612}>{$WC.CPU.UTIL.CRIT:"{#WC.NAME}"}','FortiGate: WTP {#WC.NAME}: High CPU utilization','','0','2','The CPU utilization is too high.',NULL,'0','2','1','{33613}<{$WC.CPU.UTIL.CRIT:"{#WC.NAME}"}','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','FortiGate: WTP {#WC.NAME}: High CPU utilization (over {$WC.CPU.UTIL.CRIT:"{#WC.NAME}"}% for 5m)','97f5c94047194223a4059cd56816af69',''), ('23672','{33614}>{$WC.MEMORY.UTIL.MAX:"{#WC.NAME}"}','FortiGate: WTP {#WC.NAME}: High memory utilization','','0','2','The WTP is running out of free memory.',NULL,'0','2','1','{33615}<{$WC.MEMORY.UTIL.MAX:"{#WC.NAME}"}','0','','0','','0','FortiGate: WTP {#WC.NAME}: High memory utilization (>{$WC.MEMORY.UTIL.MAX:"{#WC.NAME}"}% for 5m)','aa29737221724f668ffe2478de0715cf',''), ('23673','{33616}<10m','FortiGate: WTP {#WC.NAME}: Session has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','2','0','','0','','1','','0','FortiGate: WTP {#WC.NAME}: Session has been restarted (uptime < 10m)','753d2ca60faa4bc99cafbbdafb54309e',''), ('23674','{33617}=3','VMware Hypervisor: Sensor [{#NAME}] health state is Red','','0','4','One or more components in the appliance might be in an unusable status and the appliance might soon become unresponsive.',NULL,'0','2','0','','0','','0','','0','','f591aa480fb94996be8225176bc9c95c',''), ('23675','{33618}=2','VMware Hypervisor: Sensor [{#NAME}] health state is Yellow','','0','3','One or more components in the appliance might soon become overloaded.',NULL,'0','2','0','','0','','0','','0','','c49e1b853f07417abb3812fd03da0bc3',''), ('23676','length({33619})>0','AWS ELB NLB: Failed to get alarms data','','0','2','Failed to get CloudWatch alarms for Network Load Balancer.',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','AWS ELB NLB: Failed to get CloudWatch alarms for Network Load Balancer','4319dc0d484b456a9343535db3c079f4',''), ('23677','length({33620})>0','AWS ELB NLB: Failed to get metrics data','','0','2','Failed to get CloudWatch metrics for Network Load Balancer.',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','AWS ELB NLB: Failed to get CloudWatch metrics for Network Load Balancer','c2ba26fed3324a2bb9b90493a99db088',''), ('23678','{33621}=2 and length({33622})>0','AWS ELB NLB: [{#ALARM_NAME}] has ''Alarm'' state','','0','3','The alarm `{#ALARM_NAME}` is in the ALARM state. Reason: `{ITEM.LASTVALUE2}`',NULL,'0','2','0','','0','','0','Reason: {ITEM.LASTVALUE2}','0','AWS ELB NLB: [{#ALARM_NAME}] has ''Alarm'' state (reason: {ITEM.LASTVALUE2})','a4558b07342b4e758cde7866e9027acf',''), ('23679','{33623}=1','AWS ELB NLB: [{#ALARM_NAME}] has ''Insufficient data'' state','','0','1','Either the alarm has just started, the metric is not available, or not enough data is available for the metric to determine the alarm state.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','AWS ELB NLB: [{#ALARM_NAME}] has ''Insufficient data'' state','0df06bb3cad742368204984c83f3c161',''), ('23680','{33624} = 0','AWS ELB NLB: [{#AWS.ELB.TARGET.GROUP.NAME}]: Target have become unhealthy','','0','3','This trigger helps in identifying when your targets have become unhealthy.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','AWS ELB NLB: [{#AWS.ELB.TARGET.GROUP.NAME}]: Healthy Host Count = 0','dd527fbba0a84a1b8abe77dc34f7474c',''), ('23681','{33625} > {$AWS.ELB.UNHEALTHY.HOST.MAX}','AWS ELB NLB: [{#AWS.ELB.TARGET.GROUP.NAME}]: Target have unhealthy host','','0','2','This trigger allows you to become aware when there are no more registered targets.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','AWS ELB NLB: [{#AWS.ELB.TARGET.GROUP.NAME}]: Unhealthy Host Count > {$AWS.ELB.UNHEALTHY.HOST.MAX}','8de0720e39eb4759bec17431a596c3d4',''), ('23682','{33630}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}','AIX: FS [{#FSNAME}]: Running out of free inodes','','0','3','Disk writing may fail if index nodes are exhausted, leading to error messages like "No space left on device" or "Disk is full", despite available free space.',NULL,'0','2','0','','0','','0','Free inodes: {ITEM.LASTVALUE1}','0','AIX: {#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%)','185959350a954c35a08ab6a9bf6c1d46',''), ('23683','{33631}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}','AIX: FS [{#FSNAME}]: Space is critically low','','0','3','The volume''s space usage exceeds the `{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%` limit. The trigger expression is based on the current used and maximum available spaces. Event name represents the total volume space, which can differ from the maximum available space, depending on the filesystem type.',NULL,'0','2','0','','0','','1','Space used: {{ITEM.LASTVALUE1}.fmtnum(1)}%','0','AIX: FS [{#FSNAME}]: Space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%, total {{?last(//vfs.fs.dependent.size[{#FSNAME},total])/1024/1024/1024}.fmtnum(1)}GB)','6b3a81f7c4a24307a099c07fb537a8ca',''), ('23684','{33634}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}','FreeBSD: FS [{#FSNAME}]: Running out of free inodes','','0','3','Disk writing may fail if index nodes are exhausted, leading to error messages like "No space left on device" or "Disk is full", despite available free space.',NULL,'0','2','0','','0','','0','Free inodes: {ITEM.LASTVALUE1}','0','FreeBSD: {#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%)','b9f632d35efd4958bd665ac0764c6da4',''), ('23685','{33635}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}','FreeBSD: FS [{#FSNAME}]: Space is critically low','','0','3','The volume''s space usage exceeds the `{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%` limit. The trigger expression is based on the current used and maximum available spaces. Event name represents the total volume space, which can differ from the maximum available space, depending on the filesystem type.',NULL,'0','2','0','','0','','1','Space used: {{ITEM.LASTVALUE1}.fmtnum(1)}%','0','FreeBSD: FS [{#FSNAME}]: Space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%, total {{?last(//vfs.fs.dependent.size[{#FSNAME},total])/1024/1024/1024}.fmtnum(1)}GB)','a14b0a2369404525aa1e079a16a222f1',''), ('23686','{33638}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}','HP-UX: FS [{#FSNAME}]: Running out of free inodes','','0','3','Disk writing may fail if index nodes are exhausted, leading to error messages like "No space left on device" or "Disk is full", despite available free space.',NULL,'0','2','0','','0','','0','Free inodes: {ITEM.LASTVALUE1}','0','HP-UX: {#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%)','5d4dfbb35c964fcabb0fe620721be04b',''), ('23687','{33639}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}','HP-UX: FS [{#FSNAME}]: Space is critically low','','0','3','The volume''s space usage exceeds the `{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%` limit. The trigger expression is based on the current used and maximum available spaces. Event name represents the total volume space, which can differ from the maximum available space, depending on the filesystem type.',NULL,'0','2','0','','0','','1','Space used: {{ITEM.LASTVALUE1}.fmtnum(1)}%','0','HP-UX: FS [{#FSNAME}]: Space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%, total {{?last(//vfs.fs.dependent.size[{#FSNAME},total])/1024/1024/1024}.fmtnum(1)}GB)','6092ea142cc94f128227189170903f69',''), ('23688','{33648}=0 and {33649}=1','Linux: FS [{#FSNAME}]: Filesystem has become read-only','','0','3','The filesystem has become read-only, possibly due to an I/O error. It is available only for Zabbix agents 6.4 and higher.',NULL,'0','2','1','{33649}=0','0','','1','','0','','a17990454b7e4f96b659e61f426453c8',''), ('23689','{33654}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}','macOS: FS [{#FSNAME}]: Running out of free inodes','','0','3','Disk writing may fail if index nodes are exhausted, leading to error messages like "No space left on device" or "Disk is full", despite available free space.',NULL,'0','2','0','','0','','0','Free inodes: {ITEM.LASTVALUE1}','0','macOS: {#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%)','a1173b22ee4443eda7132f784f5f17bd',''), ('23690','{33655}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}','macOS: FS [{#FSNAME}]: Space is critically low','','0','3','The volume''s space usage exceeds the `{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%` limit. The trigger expression is based on the current used and maximum available spaces. Event name represents the total volume space, which can differ from the maximum available space, depending on the filesystem type.',NULL,'0','2','0','','0','','1','Space used: {{ITEM.LASTVALUE1}.fmtnum(1)}%','0','macOS: FS [{#FSNAME}]: Space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%, total {{?last(//vfs.fs.dependent.size[{#FSNAME},total])/1024/1024/1024}.fmtnum(1)}GB)','7282d1a9ff1543f5afdb73b8fd985fec',''), ('23691','{33658}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}','OpenBSD: FS [{#FSNAME}]: Running out of free inodes','','0','3','Disk writing may fail if index nodes are exhausted, leading to error messages like "No space left on device" or "Disk is full", despite available free space.',NULL,'0','2','0','','0','','0','Free inodes: {ITEM.LASTVALUE1}','0','OpenBSD: {#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%)','25a43340efc94c8b982204a920441ff3',''), ('23692','{33659}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}','OpenBSD: FS [{#FSNAME}]: Space is critically low','','0','3','The volume''s space usage exceeds the `{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%` limit. The trigger expression is based on the current used and maximum available spaces. Event name represents the total volume space, which can differ from the maximum available space, depending on the filesystem type.',NULL,'0','2','0','','0','','1','Space used: {{ITEM.LASTVALUE1}.fmtnum(1)}%','0','OpenBSD: FS [{#FSNAME}]: Space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%, total {{?last(//vfs.fs.dependent.size[{#FSNAME},total])/1024/1024/1024}.fmtnum(1)}GB)','dfe8922f9bf94933a940133997df9997',''), ('23693','{33662}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}','Solaris: FS [{#FSNAME}]: Running out of free inodes','','0','3','Disk writing may fail if index nodes are exhausted, leading to error messages like "No space left on device" or "Disk is full", despite available free space.',NULL,'0','2','0','','0','','0','Free inodes: {ITEM.LASTVALUE1}','0','Solaris: {#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%)','dcf89ee9976944e3af1357fadc028d22',''), ('23694','{33663}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}','Solaris: FS [{#FSNAME}]: Space is critically low','','0','3','The volume''s space usage exceeds the `{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%` limit. The trigger expression is based on the current used and maximum available spaces. Event name represents the total volume space, which can differ from the maximum available space, depending on the filesystem type.',NULL,'0','2','0','','0','','1','Space used: {{ITEM.LASTVALUE1}.fmtnum(1)}%','0','Solaris: FS [{#FSNAME}]: Space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%, total {{?last(//vfs.fs.dependent.size[{#FSNAME},total])/1024/1024/1024}.fmtnum(1)}GB)','091ecfd7c946472aa370e98f1d97ffe6',''), ('23695','{33670}=1','HPE MSA 2040 Storage: Volume [{#NAME}]: Volume health is in degraded state','','0','2','Volume health is in degraded state.',NULL,'0','2','0','','0','','0','','0','','50c47bfc2b4f43d6990e7d1b81ecc0bf',''), ('23696','{33671}=2','HPE MSA 2040 Storage: Volume [{#NAME}]: Volume health is in fault state','','0','3','Volume health is in fault state.',NULL,'0','2','0','','0','','0','','0','','2ff830017b814e7ea50313ecbedc9894',''), ('23697','{33672}=3','HPE MSA 2040 Storage: Volume [{#NAME}]: Volume health is in unknown state','','0','1','Volume health is in unknown state.',NULL,'0','2','0','','0','','0','','0','','2e8c2a0a40b640d4bf6177171c4af48d',''), ('23698','{33673}=1','HPE MSA 2060 Storage: Volume [{#NAME}]: Volume health is in degraded state','','0','2','Volume health is in degraded state.',NULL,'0','2','0','','0','','0','','0','','79ead823825f456c92f336f684c6d240',''), ('23699','{33674}=2','HPE MSA 2060 Storage: Volume [{#NAME}]: Volume health is in fault state','','0','3','Volume health is in fault state.',NULL,'0','2','0','','0','','0','','0','','0f72a4a7263445a993f079b9548667ac',''), ('23700','{33675}=3','HPE MSA 2060 Storage: Volume [{#NAME}]: Volume health is in unknown state','','0','1','Volume health is in unknown state.',NULL,'0','2','0','','0','','0','','0','','f02eaa08134a4fa08b40643275e9841f',''), ('23701','length({33676})>0','Website by Browser: Failed to get metrics data','','0','4','Failed to get JSON with performance counters of the requested website ''{$WEBSITE.DOMAIN}''.',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Website by Browser: Failed to get JSON of the requested website ''{$WEBSITE.DOMAIN}''','56970ddca5b94afdb2186741edd85362',''), ('23702','{33677}>{$WEBSITE.NAVIGATION.LOAD.MAX.WARN}','Website by Browser: Website navigation load event time is too slow','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Website by Browser: Website {$WEBSITE.DOMAIN} navigation load event time > {$WEBSITE.NAVIGATION.LOAD.MAX.WARN}','a2d63bfe681848fdb984f3b579262086',''), ('23703','{33678}>{$WEBSITE.RESOURCE.LOAD.MAX.WARN}','Website by Browser: Website resource load event time is too slow','','0','2','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Website by Browser: Website {$WEBSITE.DOMAIN} resource load event time > ''{$WEBSITE.RESOURCE.LOAD.MAX.WARN}''','1f7fbe56f5bf49468fb597a2ff986cd7',''), ('23704','{33679}<=0','Jira Data Center: DB: Pool: Out of idle connections','','0','2','Fires when out of idle connections in database pool for 5 minutes.',NULL,'0','0','0','','0','','1','Idle connections: {ITEM.LASTVALUE1}','0','','5fd9800d1c3641c584e32106ea61e33d',''), ('23705','{33680}=0','Jira Data Center: DB: Connection lost','','0','3','Database connection lost',NULL,'0','0','0','','0','','1','Connection state: {ITEM.LASTVALUE1}','0','','524b7cb0ac9940ad80e11f1c93f1d7df',''), ('23706','{33681}<=0','Jira Data Center: HTTP: Pool: Out of idle connections','','0','2','All available connections are utilized. It can cause outages for users as the system is unable to serve their requests.',NULL,'0','0','0','','0','','1','active {ITEM.LASTVALUE1} from {ITEM.LASTVALUE2}','0','','7f0fde38527c4bb2930a1e57343c4422',''), ('23707','{33682}>0','Jira Data Center: Mail: Error queue contains one or more items','','0','2','A mail queue attempts to resend items up to 10 times. If the operation fails for the 11th time, the items are put into an error mail queue. You can remove items from the error mail queue in one of the following ways: - Manually clear the whole error queue. - Manually resend all items from the error queue to a mail queue. You should pay attention to the cases where an error mail queue item gets back to an error mail queue after you resend the items manually. These cases might indicate permanent performance issues.',NULL,'0','0','0','','0','','1','','0','','f0940aecb8f24e788dae0e62c81a0c65',''), ('23708','{33683}>0','Jira Data Center: Mail: Queue: Doesn’t empty over an extended period','','0','2','Might indicate SMTP performance or connection problems.',NULL,'0','0','0','','0','','1','','0','','6fc20e23f96f4bf8a856d1c86679cbd5',''), ('23709','{33684}={33685}','Jira Data Center: DB: Connection limit reached','','0','2','',NULL,'0','0','0','','0','','1','active {ITEM.LASTVALUE1} from {ITEM.LASTVALUE2}','0','','a91e17e5f510499eb6d0848703cf3df1',''), ('23710','100*{33686}/{33687}>{$JIRA_DC.DB.CONNECTION.USAGE.WARN}','Jira Data Center: DB: Connection usage is near the limit','','0','2','',NULL,'0','0','0','','0','','1','active {ITEM.LASTVALUE1} from {ITEM.LASTVALUE2}','0','Jira Data Center: DB: Connection usage is near the limit (above {$JIRA_DC.DB.CONNECTION.USAGE.WARN}%)','8de58465caad4a188a1a84140ec9ebcf',''), ('23711','{33688}=0 and {33689}>0','Jira Data Center: Mail: Queue job is not running','','0','3','It should be running when its queue is not empty. Might indicate SMTP server connection problems.',NULL,'0','0','0','','0','','1','','0','','7fc17e55907041c2a907310bd45f14be',''), ('23712','{33690}>{$JIRA_DC.STORAGE.LATENCY.WARN:"{#JMXCATEGORY01}"}','Jira Data Center: Storage [{#JMXCATEGORY01}]: Slow performance','','0','2','Fires when latency grows above the threshold: `{$JIRA_DC.STORAGE.LATENCY.WARN:"{#JMXCATEGORY01}"}`s',NULL,'0','2','0','','0','','1','Average latency: {ITEM.LASTVALUE1}','0','Jira Data Center: Storage [{#JMXCATEGORY01}]: Slow performance (latency > {$JIRA_DC.STORAGE.LATENCY.WARN:"{#JMXCATEGORY01}"}s)','7aaf19b9466942f7a2f4aed1fb5d5973',''), ('23713','{33691}>{$JIRA_DC.INDEXING.LATENCY.WARN:"{#JMXNAME}"}','Jira Data Center: Indexing [{#JMXNAME}]: Slow performance','','0','2','Fires when latency grows above the threshold: `{$JIRA_DC.INDEXING.LATENCY.WARN:"{#JMXNAME}"}`s',NULL,'0','2','0','','0','','1','Average latency: {ITEM.LASTVALUE1}','0','Jira Data Center: Indexing [{#JMXNAME}]: Slow performance (latency > {$JIRA_DC.INDEXING.LATENCY.WARN:"{#JMXNAME}"}s)','73c679de66e941fcbabe54cb9807fcf4',''), ('23714','{33692}>{$JIRA_DC.ISSUE.LATENCY.WARN:"{#JMXNAME}"}','Jira Data Center: Issue [{#JMXNAME}]: Slow operations','','0','2','Fires when latency grows above the threshold: `{$JIRA_DC.ISSUE.LATENCY.WARN:"{#JMXNAME}"}`s',NULL,'0','2','0','','0','','1','Average latency: {ITEM.LASTVALUE1}','0','Jira Data Center: Issue [{#JMXNAME}]: Slow operations (longer then {$JIRA_DC.ISSUE.LATENCY.WARN:"{#JMXNAME}"}s)','5df1f61ce5d24204bcef4b8f021ea98a',''), ('23715','{33693}=0','Jira Data Center: Mail [{#JMXCATEGORY01}-{#JMXNAME}]: Server disconnected','','0','3','Trigger is fired when discovered mail server `{#JMXCATEGORY01}-{#JMXNAME}` becomes unavailable',NULL,'0','2','0','','0','','1','Server state: {ITEM.LASTVALUE1}','0','','a28f2598b457479299d4fbf917d8189d',''), ('23716','{33694}>=0 * (100*{33695}/{33694}>{$JIRA_DC.LICENSE.USER.CAPACITY.WARN:"{#LICENSE.TYPE}"})','Jira Data Center: License [{#LICENSE.TYPE}]: Low user capacity','','0','2','Fires when relative user quantity grows above the threshold: `{$JIRA_DC.LICENSE.USER.CAPACITY.WARN:"{#LICENSE.TYPE}"}`%',NULL,'0','2','0','','0','','1','created {ITEM.LASTVALUE1} from {ITEM.LASTVALUE2}','0','Jira Data Center: License [{#LICENSE.TYPE}]: Low user capacity (created > {$JIRA_DC.LICENSE.USER.CAPACITY.WARN:"{#LICENSE.TYPE}"}%)','26439a9cf50f4dfea02e5c763feee50c',''), ('23717','{33696}>=0 * (({33696}-{33697})<=0)','Jira Data Center: License [{#LICENSE.TYPE}]: User count reached the limit','','0','3','Fires when user quantity reaches the limit. It won''t fire if the limit is disabled (set to `-1`).',NULL,'0','2','0','','0','','1','created {ITEM.LASTVALUE1} from {ITEM.LASTVALUE2}','0','','62e93342b6a64b999d485eab28c55bf1',''), ('23718','{33698}<{$VMWARE.DATASTORE.SPACE.CRIT}','VMware: [{#DATASTORE}]: Free space is critically low','','0','4','Datastore free space has fallen below the critical threshold.',NULL,'0','2','0','','0','','0','','0','VMware: Datastore free space is critically low ([{#DATASTORE}] free space < {$VMWARE.DATASTORE.SPACE.CRIT}%)','8783e6c0bb394763afecddfd49929a01',''), ('23719','{33699}<{$VMWARE.DATASTORE.SPACE.WARN}','VMware: [{#DATASTORE}]: Free space is low','','0','2','Datastore free space has fallen below the warning threshold.',NULL,'0','2','0','','0','','0','','0','VMware: Datastore free space is low ([{#DATASTORE}] free space < {$VMWARE.DATASTORE.SPACE.WARN}%)','201980a75d734a42b3fbe1b0d3c9f55c',''), ('23720','{33700}<{$VMWARE.HV.DATASTORE.SPACE.CRIT}','VMware Hypervisor: [{#DATASTORE}]: Free space is critically low','','0','4','Datastore free space has fallen below the critical threshold.',NULL,'0','2','0','','0','','0','','0','VMware Hypervisor: Datastore free space is critically low ([{#DATASTORE}] free space < {$VMWARE.HV.DATASTORE.SPACE.CRIT}%)','79c83ed72685487a9ef139c42eea1106',''), ('23721','{33701}<{$VMWARE.HV.DATASTORE.SPACE.WARN}','VMware Hypervisor: [{#DATASTORE}]: Free space is low','','0','2','Datastore free space has fallen below the warning threshold.',NULL,'0','2','0','','0','','0','','0','VMware Hypervisor: Datastore free space is low ([{#DATASTORE}] free space < {$VMWARE.HV.DATASTORE.SPACE.WARN}%)','5bc64ee899444a01a5bc315290256cdf',''), ('23722','{33702}<{$VMWARE.DATASTORE.SPACE.CRIT}','VMware FQDN: [{#DATASTORE}]: Free space is critically low','','0','4','Datastore free space has fallen below the critical threshold.',NULL,'0','2','0','','0','','0','','0','VMware FQDN: Datastore free space is critically low ([{#DATASTORE}] free space < {$VMWARE.DATASTORE.SPACE.CRIT}%)','8eaaf5e25c464162acf2c93c2fab4606',''), ('23723','{33703}<{$VMWARE.DATASTORE.SPACE.WARN}','VMware FQDN: [{#DATASTORE}]: Free space is low','','0','2','Datastore free space has fallen below the warning threshold.',NULL,'0','2','0','','0','','0','','0','VMware FQDN: Datastore free space is low ([{#DATASTORE}] free space < {$VMWARE.DATASTORE.SPACE.WARN}%)','574963524fda419baae5d07c32f2fb89',''), ('23724','{33709}>{$ZABBIX.PROXY.UTIL.MAX:"browser poller"}','Zabbix proxy: Utilization of browser poller processes is high','','0','3','Indicates potential performance issues with the browser poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33709}<{$ZABBIX.PROXY.UTIL.MIN:"browser poller"}','0','','0','','0','Zabbix proxy: Utilization of browser poller processes over {$ZABBIX.PROXY.UTIL.MAX:"browser poller"}%','5cdced4b0c064f62802c360fa84408db',''), ('23725','{33710}>{$ZABBIX.PROXY.UTIL.MAX:"internal poller"}','Zabbix proxy: Utilization of internal poller processes is high','','0','3','Indicates potential performance issues with the internal poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33710}<{$ZABBIX.PROXY.UTIL.MIN:"internal poller"}','0','','0','','0','Zabbix proxy: Utilization of internal poller processes over {$ZABBIX.PROXY.UTIL.MAX:"internal poller"}%','3bc0e6ab1a9e470682d049840df4ce5a',''), ('23726','{33716}>{$ZABBIX.PROXY.UTIL.MAX:"browser poller"}','Zabbix proxy: Utilization of browser poller processes is high','','0','3','Indicates potential performance issues with the browser poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33716}<{$ZABBIX.PROXY.UTIL.MIN:"browser poller"}','0','','0','','0','Zabbix proxy: Utilization of browser poller processes over {$ZABBIX.PROXY.UTIL.MAX:"browser poller"}%','8458680e160d4f2ba1d1d2c20453dfe4',''), ('23727','{33717}>{$ZABBIX.PROXY.UTIL.MAX:"internal poller"}','Zabbix proxy: Utilization of internal poller processes is high','','0','3','Indicates potential performance issues with the internal poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33717}<{$ZABBIX.PROXY.UTIL.MIN:"internal poller"}','0','','0','','0','Zabbix proxy: Utilization of internal poller processes over {$ZABBIX.PROXY.UTIL.MAX:"internal poller"}%','5bea08baaad04d4e8d15540e931e0336',''), ('23728','{33808}>{$ZABBIX.SERVER.UTIL.MAX:"browser poller"}','Zabbix server: Utilization of browser poller processes is high','','0','3','Indicates potential performance issues with the browser poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33808}<{$ZABBIX.SERVER.UTIL.MIN:"browser poller"}','0','','0','','0','Zabbix server: Utilization of browser poller processes over {$ZABBIX.SERVER.UTIL.MAX:"browser poller"}%','c260a09bb64c438bb4d3b720ecf51bc6',''), ('23729','{33809}>{$ZABBIX.SERVER.UTIL.MAX:"configuration syncer worker"}','Zabbix server: Utilization of configuration syncer worker processes is high','','0','3','Indicates potential performance issues with the configuration syncer worker, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33809}<{$ZABBIX.SERVER.UTIL.MIN:"configuration syncer worker"}','0','','0','','0','Zabbix server: Utilization of configuration syncer worker processes over {$ZABBIX.SERVER.UTIL.MAX:"configuration syncer worker"}%','c5fe6915d3a34e13b7a2fd1326e3781a',''), ('23730','{33810}>{$ZABBIX.SERVER.UTIL.MAX:"internal poller"}','Zabbix server: Utilization of internal poller processes is high','','0','3','Indicates potential performance issues with the internal poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33810}<{$ZABBIX.SERVER.UTIL.MIN:"internal poller"}','0','','0','','0','Zabbix server: Utilization of internal poller processes over {$ZABBIX.SERVER.UTIL.MAX:"internal poller"}%','9bf9a345764740b79eb7e36398992593',''), ('23731','{33811}>{$ZABBIX.SERVER.UTIL.MAX:"proxy group manager"}','Zabbix server: Utilization of proxy group manager processes is high','','0','3','Indicates potential performance issues with the proxy group manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33811}<{$ZABBIX.SERVER.UTIL.MIN:"proxy group manager"}','0','','0','','0','Zabbix server: Utilization of proxy group manager processes over {$ZABBIX.SERVER.UTIL.MAX:"proxy group manager"}%','67db7f858e0348feb7cfe26f2afa1bd6',''), ('23736','{33861}>{$ZABBIX.SERVER.UTIL.MAX:"browser poller"}','Zabbix server: Utilization of browser poller processes is high','','0','3','Indicates potential performance issues with the browser poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33861}<{$ZABBIX.SERVER.UTIL.MIN:"browser poller"}','0','','0','','0','Zabbix server: Utilization of browser poller processes over {$ZABBIX.SERVER.UTIL.MAX:"browser poller"}%','5c41e353d4a4442d992240214443ee4d',''), ('23737','{33862}>{$ZABBIX.SERVER.UTIL.MAX:"configuration syncer worker"}','Zabbix server: Utilization of configuration syncer worker processes is high','','0','3','Indicates potential performance issues with the configuration syncer worker, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33862}<{$ZABBIX.SERVER.UTIL.MIN:"configuration syncer worker"}','0','','0','','0','Zabbix server: Utilization of configuration syncer worker processes over {$ZABBIX.SERVER.UTIL.MAX:"configuration syncer worker"}%','4b33128b800f4d1384127b61a7dd7492',''), ('23738','{33863}>{$ZABBIX.SERVER.UTIL.MAX:"internal poller"}','Zabbix server: Utilization of internal poller processes is high','','0','3','Indicates potential performance issues with the internal poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33863}<{$ZABBIX.SERVER.UTIL.MIN:"internal poller"}','0','','0','','0','Zabbix server: Utilization of internal poller processes over {$ZABBIX.SERVER.UTIL.MAX:"internal poller"}%','a84501d9e5b74b4990a896f8719b980d',''), ('23739','{33864}>{$ZABBIX.SERVER.UTIL.MAX:"proxy group manager"}','Zabbix server: Utilization of proxy group manager processes is high','','0','3','Indicates potential performance issues with the proxy group manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{33864}<{$ZABBIX.SERVER.UTIL.MIN:"proxy group manager"}','0','','0','','0','Zabbix server: Utilization of proxy group manager processes over {$ZABBIX.SERVER.UTIL.MAX:"proxy group manager"}%','06bdef8b23c3459c99e180afdb1a8b2c',''), ('23740','{33865}=1','Azure VM Scale: Virtual machine scale set is degraded','','0','3','The resource is in a degraded state.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','a1aadc807a6d40bd8dd2049c0ead6e38',''), ('23741','{33866}=3','Azure VM Scale: Virtual machine scale set is in unknown state','','0','2','The resource state is unknown.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','c09bb8da8bb54c45b6d424a63ec892ae',''), ('23742','{33867}=2','Azure VM Scale: Virtual machine scale set is unavailable','','0','4','The resource state is unavailable.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','eff890c95f574ad09af82ad79803e733',''), ('23743','{33868}>{$AZURE.SCALESET.CPU.UTIL.CRIT}','Azure VM Scale: High CPU utilization','','0','4','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','Azure VM Scale: CPU utilization is high (over {$AZURE.SCALESET.CPU.UTIL.CRIT}% for last 5m)','a3706a6c3349429b89b6915a6b0fb5c1',''), ('23744','length({33869})>0','Azure VM Scale: There are errors in requests to API','','0','3','Zabbix has received errors in response to API requests.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','1d114800a6534498b52a2dd25e93d719',''), ('23745','{33870}>{$AZURE.SCALESET.VM.COUNT.CRIT}','Azure VM Scale: High amount of VMs in the scale set','','0','4','High amount of VMs in the scale set.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','Azure VM Scale: Number of VMs is high (over {$AZURE.SCALESET.VM.COUNT.CRIT} for last 5m)','cd77906ed04a42f28bb702bc513504a0',''), ('23746','length({33874})>0','VeloCloud: There are errors in edges item preprocessing script','','0','2','There are errors in aggregate script item.',NULL,'0','0','0','','0','','0','','0','','88f20b393ec74bddb483a03f27e16799',''), ('23747','length({33883})>0','AWS Lambda: Failed to get alarms data','','0','2','Failed to get CloudWatch alarms for the Lambda function.',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','AWS Lambda: Failed to get CloudWatch alarms for the Lambda function','77f2bf7f1086488289b1cf1931e8fd90',''), ('23748','length({33884})>0','AWS Lambda: Failed to get metrics data','','0','2','Failed to get CloudWatch metrics for the Lambda function.',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','AWS Lambda: Failed to get CloudWatch metrics for the Lambda function','95ed5e8c560f4c6e89ed9d1a754ed032',''), ('23749','{33885}=2 and length({33886})>0','AWS Lambda: [{#ALARM_NAME}] has ''Alarm'' state','','0','3','The alarm `{#ALARM_NAME}` is in the ALARM state. Reason: `{ITEM.LASTVALUE2}`',NULL,'0','2','0','','0','','0','Reason: {ITEM.LASTVALUE2}','0','AWS Lambda: [{#ALARM_NAME}] has ''Alarm'' state (reason: {ITEM.LASTVALUE2})','c3ce7372e8cf4ff48eee7f91870dc58d',''), ('23750','{33887}=1','AWS Lambda: [{#ALARM_NAME}] has ''Insufficient data'' state','','0','1','Either the alarm has just started, the metric is not available, or not enough data is available for the metric to determine the alarm state.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','AWS Lambda: [{#ALARM_NAME}] has ''Insufficient data'' state','fc0d5744b0284362897a2d3191727d66',''), ('23751','{33888}>{33889}','GitHub: The total number of issues has increased','','0','2','The total number of issues has increased which means that either a new issue (or multiple) has been opened.',NULL,'1','0','0','','0','','0','','0','','9a146a900ced45b09a09b402daae6f94',''), ('23752','{33890}>{33891}','GitHub: The total number of PRs has increased','','0','1','The total number of pull requests has increased which means that either a new pull request (or multiple) has been opened.',NULL,'1','0','0','','0','','0','','0','','7d834276726941cf9952c820e478ccf0',''), ('23753','length({33892})>0','GitHub: There are errors in requests to API','','0','3','Errors have been received in response to API requests. Check the latest values for details.',NULL,'0','0','0','','0','','0','','0','','fea49679a888491c96516b421703131b',''), ('23754','{33893}>{$GITHUB.REQUESTS.UTIL.WARN}','GitHub: API request limit utilization is high','','0','2','The API request limit utilization is high. It can be lowered by increasing the update intervals for script items (by setting up higher values in corresponding context macros). The trigger will be resolved automatically if the limit usage drops 5% below the trigger threshold. Information about request limits in GitHub REST API documentation: https://docs.github.com/en/rest/using-the-rest-api/rate-limits-for-the-rest-api?apiVersion=2022-11-28',NULL,'0','0','1','{33893}>{$GITHUB.REQUESTS.UTIL.WARN}-5','0','','0','','0','GitHub: API request limit utilization is high (usage is > {$GITHUB.REQUESTS.UTIL.WARN})','621ef82bf8f74f09a8c30b8a38085e9d',''), ('23755','{33894}>{$GITHUB.REQUESTS.UTIL.HIGH}','GitHub: API request limit utilization is very high','','0','3','The API request limit utilization is very high. It can be lowered by increasing the update intervals for script items (by setting up higher values in corresponding context macros). The trigger will be resolved automatically if the limit usage drops 5% below the trigger threshold. Information about request limits in GitHub REST API documentation: https://docs.github.com/en/rest/using-the-rest-api/rate-limits-for-the-rest-api?apiVersion=2022-11-28',NULL,'0','0','1','{33894}>{$GITHUB.REQUESTS.UTIL.HIGH}-5','0','','0','','0','GitHub: API request limit utilization is very high (usage is > {$GITHUB.REQUESTS.UTIL.HIGH})','9783018b6c394397aa093b4f8a1a4067',''), ('23756','{33895}=1','GitHub: No access to repository self-hosted runners','','0','3','Admin access to the repository is required to use this endpoint: https://docs.github.com/en/rest/actions/self-hosted-runners?apiVersion=2022-11-28#list-self-hosted-runners-for-a-repository',NULL,'0','0','0','','0','','0','','0','','30877fea1bd14e22b8b5c4a040001bb5',''), ('23757','{33896}=1 and {33897}=0','GitHub: Runner [{#RUNNER_NAME}]: The runner has become offline','','0','2','The runner was online previously, but is currently not connected to GitHub. This could be because the machine is offline, the self-hosted runner application is not running on the machine, or the self-hosted runner application cannot communicate with GitHub.',NULL,'0','2','0','','0','','0','','0','','3759039884e6486fb92f2a5abf7b1133',''), ('23758','{33898}=1','GitHub: Workflow [{#WORKFLOW_NAME}]: The workflow has failed','','0','2','The last workflow run has returned a "failure" conclusion.',NULL,'0','2','0','','0','','0','','0','','4a32968c1bf14ac8a47f8f398ce43ea3',''), ('23759','{33899}=1 and {33900}=0','GitHub: Workflow [{#WORKFLOW_NAME}]: The workflow has been in progress for too long','','0','2','The last workflow run has been in the "in_progress" status for too long. The default threshold is provided as an example and can be adjusted for relevant workflows with context macros.',NULL,'0','2','0','','0','','0','','0','GitHub: Workflow [{#WORKFLOW_NAME}]: The workflow has been in progress for too long (over {$GITHUB.WORKFLOW.STATUS.IN_PROGRESS.THRESH:"workflow_in_progress:{#WORKFLOW_NAME}"})','d89658cb7d8c4b75a8f526dee6dcf43f',''), ('23760','{33901}=0 and {33902}=0','GitHub: Workflow [{#WORKFLOW_NAME}]: The workflow has been in the queue for too long','','0','2','The last workflow run has been in the "queued" status for too long. This may mean that it has failed to be assigned to a runner. The default threshold is provided as an example and can be adjusted for relevant workflows with context macros.',NULL,'0','2','0','','0','','0','','0','GitHub: Workflow [{#WORKFLOW_NAME}]: The workflow has been in the queue for too long (over {$GITHUB.WORKFLOW.STATUS.QUEUED.THRESH:"workflow_queued:{#WORKFLOW_NAME}"})','f98d0332c53a453bb737f436a4f0d2c0',''), ('23761','length({33903})>0','Microsoft 365: Apps: There are errors in requests to API','','0','3','Zabbix has received errors in response to API requests.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','eab5ac8df92f43398ad62a2dacb53e98',''), ('23762','length({33904})>0','Microsoft 365: OneDrive: There are errors in requests to API','','0','3','Zabbix has received errors in response to API requests.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','b526cc91e49041a1ba4fac76b8f464c2',''), ('23763','length({33905})>0','Microsoft 365: Outlook: There are errors in requests to API','','0','3','Zabbix has received errors in response to API requests.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','79d0d9d9622347e2a7c937b7831ac01b',''), ('23764','length({33906})>0','Microsoft 365: Services: There are errors in requests to API','','0','3','Zabbix has received errors in response to API requests.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','54c11aad4113433a866272988a64c2bf',''), ('23765','length({33907})>0','Microsoft 365: SharePoint: There are errors in requests to API','','0','3','Zabbix has received errors in response to API requests.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','af3d4e3b2ca84ad39780d6d5e13afdee',''), ('23766','length({33908})>0','Microsoft 365: Teams: There are errors in requests to API','','0','3','Zabbix has received errors in response to API requests.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','18c8af3eea6f49b1ba795b476e218ab9',''), ('23767','{33909}=6','Microsoft 365: Services: {#NAME} is degraded.','','0','2','The service has the "Degraded" health status. An issue is confirmed that may affect the use of a service or feature. You might see this status if a service is performing slower than usual, there are intermittent interruptions, or if a feature isn''t working.',NULL,'0','2','0','','0','','1','{ITEM.LASTVALUE1}','0','','eaf40afe3cbf402f8148913e9b7baf98',''), ('23768','{33910}=7','Microsoft 365: Services: {#NAME} is interrupted.','','0','3','The service has the "Interruption" health status. An issue was determined that affects users being able to access the service. In this case, the issue is significant and can be reproduced consistently.',NULL,'0','2','0','','0','','1','{ITEM.LASTVALUE1}','0','','312dc15bd57b49dfb86a5185b6c2cefa',''), ('23769','length({33914})>0','VMware: Failed to get Overall Health VC State','','0','2','Failed to get data. Check debug log for more information.',NULL,'0','0','0','','0','','0','Current error: {ITEM.LASTVALUE}','0','','a11ed3829afb48fb99b9feb2dab4a45d',''), ('23770','{33915}>0 and {33915}<>6','VMware: Overall Health VC State is not Green','','0','3','One or more components in the appliance might be in an unusable status and the appliance might soon become unresponsive.',NULL,'0','0','0','','0','','0','Current Overall Health VC State: {ITEM.LASTVALUE}','0','','4058114acbc743e087f5b10e22c997d1',''), ('23771','{33916}=0','VMware Guest: Snapshot consolidation needed','','0','3','Snapshot consolidation needed.',NULL,'0','0','0','','0','','1','','0','','28627af63fe64e79b08ad752dee5205e',''), ('23772','{33917} <> 2','VMware Guest: VM is not running','','0','3','VMware virtual machine is not running.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6ebb2a2de81e4bacbb32d1b767c3cb04',''), ('23773','{33918} = 1','VMware Guest: VMware Tools is not running','','0','2','VMware Tools is not running on the VM.',NULL,'0','0','0','','0','','0','','0','','132d6e490fea42e390de64ce389ad538',''), ('23774','{33921}<>-1','VMware: {#VMWARE.ALARMS.NAME}','','0','0','{#VMWARE.ALARMS.DESC}',NULL,'0','2','0','','0','','0','','0','','ec5711e1881149ffbf67325f16b960a4',''), ('23775','{33922}<{$VMWARE.VM.FS.PFREE.MIN.CRIT:"{#FSNAME}"} and {$VMWARE.VM.FS.TRIGGER.USED:"{#FSNAME}"}=1','VMware Guest: [{#FSNAME}]: Disk space is critically low','','0','3','The disk free space on [{#FSNAME}] has been less than `{$VMWARE.VM.FS.PFREE.MIN.CRIT:"{#FSNAME}"}`% for 5m.',NULL,'0','2','0','','0','','1','Space free: {ITEM.LASTVALUE}','0','VMware Guest: [{#FSNAME}]: Disk space is critically low (below {$VMWARE.VM.FS.PFREE.MIN.CRIT:"{#FSNAME}"}% for 5m)','19c60e68a55d4910a278b6242ead7686',''), ('23776','{33923}<{$VMWARE.VM.FS.PFREE.MIN.WARN:"{#FSNAME}"} and {$VMWARE.VM.FS.TRIGGER.USED:"{#FSNAME}"}=1','VMware Guest: [{#FSNAME}]: Disk space is low','','0','2','The disk free space on [{#FSNAME}] has been less than `{$VMWARE.VM.FS.PFREE.MIN.WARN:"{#FSNAME}"}`% for 5m.',NULL,'0','2','0','','0','','1','Space free: {ITEM.LASTVALUE}','0','VMware Guest: [{#FSNAME}]: Disk space is low (below {$VMWARE.VM.FS.PFREE.MIN.WARN:"{#FSNAME}"}% for 5m)','cc995d4c595d46ee80954fd4bb3e0b1b',''), ('23777','length({33924})>0','VMware FQDN: Failed to get Overall Health VC State','','0','2','Failed to get data. Check debug log for more information.',NULL,'0','0','0','','0','','0','Current error: {ITEM.LASTVALUE}','0','','7fe1b44b0e7549d8af9030a1c58b2aa3',''), ('23778','{33925}>0 and {33925}<>6','VMware FQDN: Overall Health VC State is not Green','','0','3','One or more components in the appliance might be in an unusable status and the appliance might soon become unresponsive.',NULL,'0','0','0','','0','','0','Current Overall Health VC State: {ITEM.LASTVALUE}','0','','426ea642132848b8b77d42d2235c244c',''), ('23779','{33926}<>-1','VMware FQDN: {#VMWARE.ALARMS.NAME}','','0','0','{#VMWARE.ALARMS.DESC}',NULL,'0','2','0','','0','','0','','0','','156400a8c7c04b25b99c540824168a36',''), ('23780','{33927}<{$PROXY.GROUP.AVAIL.PERCENT.MIN}','Zabbix server: Proxy group [{#PROXY.GROUP.NAME}]: Availability too low','','0','2','The availability of proxies in a proxy group is below {$PROXY.GROUP.AVAIL.PERCENT.MIN}% for at least 3 minutes.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Zabbix server: Proxy group [{#PROXY.GROUP.NAME}]: Availability below {$PROXY.GROUP.AVAIL.PERCENT.MIN}%','bbbaf1aaa1a64e57bad2ec53cc0e96f6',''), ('23781','{33928}=-1','Zabbix server: Proxy group [{#PROXY.GROUP.NAME}]: Failover invalid value','','0','2','Proxy group failover has an invalid value.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','9d38306e2e1741eba5a910ccf380c484',''), ('23782','{33929}=-1','Zabbix server: Proxy group [{#PROXY.GROUP.NAME}]: Minimum number of proxies invalid value','','0','2','Proxy group minimum number of proxies has an invalid value.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','ba1aa13dc8204c76be4fa85a6411de4d',''), ('23783','{33930}=4','Zabbix server: Proxy group [{#PROXY.GROUP.NAME}]: Status "degrading"','','0','3','The state of the Zabbix proxy group is "degrading".',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','770cb8447a26472c9d825c874fccc030',''), ('23784','{33931}=1','Zabbix server: Proxy group [{#PROXY.GROUP.NAME}]: Status "offline"','','0','4','The state of the Zabbix proxy group is "offline".',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','ecd98a89c19045dea28c2c635f3b5db9',''), ('23785','{33932}<>{33933} and length({33934})>0','Zabbix server: Proxy group [{#PROXY.GROUP.NAME}]: Status changed','','0','1','The state of the Zabbix proxy group has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','e0c6041d678b46df8f633bda8ab24a1a',''), ('23792','{33952}<>{33953} and length({33954})>0','Huawei Dorado: Storage version has changed','','0','1','',NULL,'0','0','0','','0','','1','','0','Huawei Dorado: Version has changed (new version: {ITEM.VALUE})','eb140be38e9c4f51b105347ddffa6997',''), ('23793','{33955}=0','Huawei Dorado: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','914602a8433444a18ac0672f776b836e',''), ('23794','{33956}>{$ICMP_LOSS_WARN} and {33956}<100','Huawei Dorado: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','60f0ddb37f534c5baf4a7ad254d57ea7',''), ('23795','{33957}>{$ICMP_RESPONSE_TIME_WARN}','Huawei Dorado: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','9af7c5ff0d974d0abb51cd483e46e537',''), ('23796','{33958}<>{33959} and length({33960})>0','Huawei Dorado: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Huawei Dorado: System name has changed (new name: {ITEM.VALUE})','6beeaf5594eb46e183db9e725277e0b6',''), ('23797','{33961}=0','Huawei Dorado: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4c9c747fc91c493b9b35db7d1dcc1461',''), ('23798','({33962}>0 and {33962}<10m) or ({33962}=0 and {33963}<10m)','Huawei Dorado: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Huawei Dorado: {HOST.NAME} has been restarted (uptime < 10m)','41d6237c6623468ba232930318f7a335',''), ('23799','{33964}<>1','Huawei Dorado: BBU [{#ID}] on [{#LOCATION}]: Health status is not Normal','','0','4','',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','0870e96a18244b1a856ed22109c30120',''), ('23800','{33965}<>27','Huawei Dorado: BBU [{#ID}] on [{#LOCATION}]: Running status is not Online','','0','3','',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','cd796c86d0784168864b50a3c710fe4a',''), ('23801','{33966}>{$CPU.UTIL.CRIT}','Huawei Dorado: Controller [{#ID}]: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Huawei Dorado: Controller [{#ID}]: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','c24df0ffa9b04f22b0507abe1f600c61',''), ('23802','{33967}<>1','Huawei Dorado: Controller [{#ID}]: Health status is not Normal','','0','4','',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','c9abbb0c329b4fdfba9e10cd2edacbc0',''), ('23803','{35921}>{$HUAWEI.DORADO.MEM.MAX.WARN}','Huawei Dorado: Controller [{#ID}]: Memory usage is too high','','0','3','',NULL,'0','2','0','','0','','0','Current memory usage: {ITEM.LASTVALUE1}','0','Huawei Dorado: Controller [{#ID}]: Memory usage is too high (over {$HUAWEI.DORADO.MEM.MAX.WARN} for {$HUAWEI.DORADO.MEM.MAX.TIME})','7c5da0319c4f47e3a96f6d088bb29627',''), ('23804','{33969}<>{33970}','Huawei Dorado: Controller [{#ID}]: Role has been changed','','0','2','',NULL,'0','2','0','','0','','1','Current role: {ITEM.LASTVALUE1}','0','','b0952e778f38497eb1ea54e64d036bdd',''), ('23805','{33971}<>27','Huawei Dorado: Controller [{#ID}]: Running status is not Online','','0','3','',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','ecb968841d8e4a1781da9a095bd87582',''), ('23806','{33972}<>1','Huawei Dorado: Disk [{#MODEL}] on [{#LOCATION}]: Health status is not Normal','','0','4','',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','88bc0077cf754fe9beee20b00234ce9d',''), ('23807','{33973}<>27','Huawei Dorado: Disk [{#MODEL}] on [{#LOCATION}]: Running status is not Online','','0','3','',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','568c21eb9f2744e183ab6dcd15493277',''), ('23808','{35922}>{$HUAWEI.DORADO.DISK.TEMP.MAX.WARN:"{#MODEL}"}','Huawei Dorado: Disk [{#MODEL}] on [{#LOCATION}]: Temperature is too high','','0','4','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE}','0','Huawei Dorado: Disk [{#MODEL}] on [{#LOCATION}]: Temperature is too high (over {$HUAWEI.DORADO.DISK.TEMP.MAX.WARN:"{#MODEL}"} for {$HUAWEI.DORADO.DISK.TEMP.MAX.TIME})','aaf26be9ddff459692cd83187e66b5d4',''), ('23809','{33975}<>1','Huawei Dorado: Enclosure [{#NAME}]: Health status is not Normal','','0','4','',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','2df422b9873044b58246384d439077e0',''), ('23810','{33976}<>27','Huawei Dorado: Enclosure [{#NAME}]: Running status is not Online','','0','3','',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','3878efb681404801b078e68d03c1f422',''), ('23811','{35923}>{$HUAWEI.DORADO.TEMP.MAX.WARN}','Huawei Dorado: Enclosure [{#NAME}]: Temperature is too high','','0','4','',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE}','0','Huawei Dorado: Enclosure [{#NAME}]: Temperature is too high (over {$HUAWEI.DORADO.TEMP.MAX.WARN} for {$HUAWEI.DORADO.TEMP.MAX.TIME})','84056bbf218a43ccbf6a3c94fff53973',''), ('23812','{33978}<>1','Huawei Dorado: Fan [{#ID}] on [{#LOCATION}]: Health status is not Normal','','0','4','',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','61b916bc59964edaab00fb2f7fba7bdb',''), ('23813','{33979}<>2','Huawei Dorado: Fan [{#ID}] on [{#LOCATION}]: Running status is not Running','','0','3','',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','6fbecb53cd334f65a8fba8d1ab0d9218',''), ('23814','{35924}>{$HUAWEI.DORADO.LUN.IO.TIME.MAX.WARN}','Huawei Dorado: LUN [{#NAME}]: Average I/O response time is too high','','0','2','',NULL,'0','2','0','','0','','0','Current response time: {ITEM.LASTVALUE1}','0','Huawei Dorado: LUN [{#NAME}]: Average I/O response time is too high (over {$HUAWEI.DORADO.LUN.IO.TIME.MAX.WARN}μs for {$HUAWEI.DORADO.LUN.IO.TIME.MAX.TIME})','919c9c661e3f42dcba7cbceaebc05617',''), ('23815','{33981}<>1','Huawei Dorado: LUN [{#NAME}]: Status is not Normal','','0','3','',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','3ea80d4ef5294e9b86d9b500681b4816',''), ('23816','{33982}>{$CPU.UTIL.CRIT}','Huawei Dorado: Node [{#NODE}]: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Huawei Dorado: Node [{#NODE}]: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','c72396c32e084414baadfb348d3a1cea',''), ('23817','{33983}<>1','Huawei Dorado: Storage pool [{#NAME}]: Health status is not Normal','','0','4','',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','86016fd601704dd6943e952aa5f4bff6',''), ('23818','{33984}<>27','Huawei Dorado: Storage pool [{#NAME}]: Running status is not Online','','0','3','',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','462a2775a1c144eb9854bccab7d38ca0',''), ('23819','{33985}<10m','Apache: Service has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Apache: Service has been restarted (uptime < 10m)','2f9e1d5e188f4f6190088986f6fc3f70',''), ('23820','{33986}<>{33987} and length({33988})>0','Apache: Version has changed','','0','1','Apache version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Apache: Version has changed (new version: {ITEM.VALUE})','80d8c27a060347a4a852c3f6481244c3',''), ('23821','{33989}=1 and {33990}>0','Apache: Failed to fetch status page','','0','2','Zabbix has not received any data for items for the last 30 minutes.',NULL,'0','2','0','','0','','1','','0','Apache: Failed to fetch status page (or no data for 30m)','c848c1449cef42bd90af13e6767bd2c9',''), ('23822','{33991}=0 and {33992}>0','Apache: Service is down','','0','3','',NULL,'0','2','0','','0','','1','','0','','4b460b835cb14513b5aace3275827c79',''), ('23823','{33993}>{$APACHE.RESPONSE_TIME.MAX.WARN} and {33994}>0','Apache: Service response time is too high','','0','2','',NULL,'0','2','0','','0','','1','','0','Apache: Service response time is too high (over {$APACHE.RESPONSE_TIME.MAX.WARN}s for 5m)','93157365ee90446fa8191dfc5d623874',''), ('23824','{33995}=0','Apache: Process is not running','','0','4','',NULL,'0','2','0','','0','','0','','0','','653a0f021ece4993aaaef441172366b3',''), ('23825','({33996} - now()) / 86400 < {$CERT.EXPIRY.WARN}','Certificate: SSL certificate expires soon','','0','2','The SSL certificate should be updated or it will become untrusted.',NULL,'0','0','0','','0','','0','','0','Certificate: SSL certificate expires soon (less than {$CERT.EXPIRY.WARN} days)','1f7fc868d3ad428f8114278a4f27c77e',''), ('23826','{33997} <> {33998}','Certificate: Fingerprint has changed','','0','1','The SSL certificate fingerprint has changed. If you did not update the certificate, it may mean your certificate has been hacked. Acknowledge to close the problem manually. There could be multiple valid certificates on some installations. In this case, the trigger will have a false positive. You can ignore it or disable the trigger.',NULL,'0','0','0','','0','','1','','0','Certificate: Fingerprint has changed (new version: {ITEM.VALUE})','59089233c1ed4aa2b9316ccd9e443c49',''), ('23827','{33999}=1','Certificate: SSL certificate is invalid','','0','4','SSL certificate has expired or it is issued for another domain.',NULL,'0','0','0','','0','','0','','0','','faccfa7095aa4708bf6e1d60b2b57b1b',''), ('23828','{34000}<>{34001} and length({34002})>0','Nginx: Version has changed','','0','1','The Nginx version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Nginx: Version has changed (new version: {ITEM.VALUE})','bc987aa081b543b2becd7c0863553f27',''), ('23829','({34003}=0 or {34004}) and {34005}>0','Nginx: Failed to fetch stub status page','','0','2','Zabbix has not received any data for items for the last 30 minutes.',NULL,'0','2','0','','0','','1','','0','Nginx: Failed to fetch stub status page (or no data for 30m)','17f59999c0ee40788aa20979f396616b',''), ('23830','{34006} > {$NGINX.DROP_RATE.MAX.WARN} and {34007}>0','Nginx: High connections drop rate','','0','2','The rate of dropping connections has been greater than {$NGINX.DROP_RATE.MAX.WARN} for the last 5 minutes.',NULL,'0','2','0','','0','','0','Current rate: {ITEM.LASTVALUE1}','0','Nginx: High connections drop rate (more than {$NGINX.DROP_RATE.MAX.WARN} for 5m)','ff0d5f7f9ae740e3966af8cba9856a00',''), ('23831','{34008}=0 and {34009}>0','Nginx: Service is down','','0','3','',NULL,'0','2','0','','0','','1','','0','','5ed915dd28814134bcbf78738ad8173c',''), ('23832','{34010}>{$NGINX.RESPONSE_TIME.MAX.WARN} and {34011}>0','Nginx: Service response time is too high','','0','2','',NULL,'0','2','0','','0','','1','','0','Nginx: Service response time is too high (over {$NGINX.RESPONSE_TIME.MAX.WARN}s for 5m)','bc6c56323e694cd391f6a80ebbac0c35',''), ('23833','{34012}=0','Nginx: Process is not running','','0','4','',NULL,'0','2','0','','0','','0','','0','','c95c9632cded4bf48df1c736ec7078c5',''), ('23834','length({34013})>0','Nutanix: Failed to get alert data from the API','','0','4','Failed to get data from the API. Check the latest values for details.',NULL,'0','0','0','','0','','0','','0','','741e1271a7454b9ab0214ae39b04f9cb',''), ('23835','length({34014})>0','Nutanix: Failed to get metric data from the API','','0','4','Failed to get data from the API. Check the latest values for details.',NULL,'0','0','0','','0','','0','','0','','5ac8ddec162b4668b1df1493216792d6',''), ('23836','length({34015})>0','Nutanix: Failed to get alert data from the API','','0','4','Failed to get data from the API. Check the latest values for details.',NULL,'0','0','0','','0','','0','','0','','6dbb467d463e47dca35970591ef1446f',''), ('23837','length({34016})>0','Nutanix: Failed to get disk data from the API','','0','4','Failed to get data from the API. Check the latest values for details.',NULL,'0','0','0','','0','','0','','0','','a105b91b5d48438b93abc257b238e2c9',''), ('23838','{34017}=1','Nutanix: Host is in degraded status','','0','4','Host is in a degraded status. The host may soon become unavailable.',NULL,'0','0','0','','0','','0','','0','','f10f4b560bd140cabb3beb4ee1dbbf78',''), ('23839','length({34018})>0','Nutanix: Failed to get metric data from the API','','0','4','Failed to get data from the API. Check the latest values for details.',NULL,'0','0','0','','0','','0','','0','','f23095d512e845ae846a2b774b97de51',''), ('23840','length({34019})>0','Nutanix: Failed to get cluster data from the API','','0','4','Failed to get data from the API. Check the latest values for details.',NULL,'0','0','0','','0','','0','','0','','baf3ae722bd44a09a628f9c81c541259',''), ('23841','length({34020})>0','Nutanix: Failed to get host data from the API','','0','4','Failed to get data from the API. Check the latest values for details.',NULL,'0','0','0','','0','','0','','0','','56e915c86d4640c3b073cb8309bf1d6e',''), ('23842','length({34021})>0','Nutanix: Failed to get storage container data from the API','','0','4','Failed to get data from the API. Check the latest values for details.',NULL,'0','0','0','','0','','0','','0','','f46c6213084c4afe88065beb6cdcef33',''), ('23843','{34022}<>{34023}','Nutanix: Redundancy factor mismatched','','0','4','Current redundancy factor does not match the desired redundancy factor.',NULL,'0','0','0','','0','','0','','0','','95d69032f7d7426d8073524ecd72fcd4',''), ('23844','{34024} > {$PHP_FPM.QUEUE.WARN.MAX}','PHP-FPM: Queue utilization is high','','0','2','The queue for this pool has reached `{$PHP_FPM.QUEUE.WARN.MAX}%` of its maximum capacity. Items in the queue represent the current number of connections that have been initiated on this pool but not yet accepted.',NULL,'0','0','0','','0','','0','','0','PHP-FPM: Queue utilization is high (over {$PHP_FPM.QUEUE.WARN.MAX}% for 15m)','ffe46ce6fa4545ac8b2f035488c1b7ba',''), ('23845','{34025}<>{34026}','PHP-FPM: Manager changed','','0','1','The PHP-FPM manager has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','PHP-FPM: Manager changed (new value received: {ITEM.VALUE})','380943ae41cd48e5b903f433216f3cd1',''), ('23846','{34027}>0','PHP-FPM: Detected slow requests','','0','2','The PHP-FPM has detected a slow request. The slow request means that it took more time to execute than expected (defined in the configuration of your pool).',NULL,'0','0','0','','0','','0','','0','','4a25c3fecad74df7ba59be94dd1df7cf',''), ('23847','{34028}<10m','PHP-FPM: Pool has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','PHP-FPM: Pool has been restarted (uptime < 10m)','77e61db3d40d4bd1ba518d27dfd05491',''), ('23848','{34029}<>{34030} and length({34031})>0','PHP-FPM: Version has changed','','0','1','The PHP-FPM version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','PHP-FPM: Version has changed (new version: {ITEM.VALUE})','27684ff67232429dad79e0eae323945d',''), ('23849','{34032}=1 and {34033}>0','PHP-FPM: Failed to fetch info data','','0','1','Zabbix has not received any data for items for the last 30 minutes.',NULL,'0','2','0','','0','','1','','0','PHP-FPM: Failed to fetch info data (or no data for 30m)','f28aac156ea142c4b92e8d5a29ed79f2',''), ('23850','({34034}=0 or {34035}=1) and {34036}>0','PHP-FPM: Service is down','','0','4','',NULL,'0','2','0','','0','','1','','0','','f33109ac78a84debb66fa4ed92384f99',''), ('23851','{34037}=0','PHP-FPM: Process is not running','','0','4','',NULL,'0','2','0','','0','','0','','0','','86aabcdb709c4199b6c64e321875c60d',''), ('23852','{34038} / {34039} * 100 > {$PVE.LXC.DISK.PUSE.MAX.WARN:"{#LXC.ID}"}','Proxmox VE: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: high disk space usage','','0','2','Disk space usage.',NULL,'0','2','0','','0','','0','Current use: {ITEM.LASTVALUE1} of {ITEM.LASTVALUE2}','0','Proxmox VE: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})] high disk space usage (over {$PVE.LXC.DISK.PUSE.MAX.WARN:"{#LXC.ID}"}% usage)','1e362fac13634a3dabebbd6ceb59879f',''), ('23853','{34040}>{$MYSQL.ABORTED_CONN.MAX.WARN}','MySQL: Server has aborted connections','','0','3','The number of failed attempts to connect to the MySQL server is more than `{$MYSQL.ABORTED_CONN.MAX.WARN}` in the last 5 minutes.',NULL,'0','0','0','','0','','0','','0','MySQL: Server has aborted connections (over {$MYSQL.ABORTED_CONN.MAX.WARN} for 5m)','a8dbc39812ea4ce488dab64ee230c38c',''), ('23854','{34041}<{$MYSQL.BUFF_UTIL.MIN.WARN}','MySQL: Buffer pool utilization is too low','','0','2','The buffer pool utilization is less than `{$MYSQL.BUFF_UTIL.MIN.WARN}`% in the last 5 minutes. This means that there is a lot of unused RAM allocated for the buffer pool, which you can easily reallocate at the moment.',NULL,'0','0','0','','0','','0','','0','MySQL: Buffer pool utilization is too low (less than {$MYSQL.BUFF_UTIL.MIN.WARN}% for 5m)','69e652db80c145e4bf7a4d4e99e0cb35',''), ('23855','{34042}>0','MySQL: Refused connections','','0','3','Number of refused connections due to the `max_connections` limit being reached.',NULL,'0','0','0','','0','','0','','0','MySQL: Refused connections (max_connections limit reached)','4f4cdc4d19624598aaa68d18e13a45e4',''), ('23856','{34043}>{$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN}','MySQL: Number of on-disk temporary tables created per second is high','','0','2','The application using the database may be in need of query optimization.',NULL,'0','0','0','','0','','0','','0','MySQL: Number of on-disk temporary tables created per second is high (over {$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN} for 5m)','cc8af7c9017a4873a037b5a0a8f7ac5f',''), ('23857','{34044}>{$MYSQL.CREATED_TMP_FILES.MAX.WARN}','MySQL: Number of temporary files created per second is high','','0','2','The application using the database may be in need of query optimization.',NULL,'0','0','0','','0','','0','','0','MySQL: Number of temporary files created per second is high (over {$MYSQL.CREATED_TMP_FILES.MAX.WARN} for 5m)','92ef67f27f384dd899ddb2865e00273a',''), ('23858','{34045}>{$MYSQL.CREATED_TMP_TABLES.MAX.WARN}','MySQL: Number of internal temporary tables created per second is high','','0','2','The application using the database may be in need of query optimization.',NULL,'0','0','0','','0','','0','','0','MySQL: Number of internal temporary tables created per second is high (over {$MYSQL.CREATED_TMP_TABLES.MAX.WARN} for 5m)','1d927f1cbb3b4105accbaef3f0994f81',''), ('23859','{34046}=0','MySQL: Service is down','','0','4','MySQL is down.',NULL,'0','0','0','','0','','0','','0','','6fed4cabb4b349cd9a0f7e82e7706139',''), ('23860','{34047}>{$MYSQL.SLOW_QUERIES.MAX.WARN}','MySQL: Server has slow queries','','0','2','The number of slow queries is more than `{$MYSQL.SLOW_QUERIES.MAX.WARN}` in the last 5 minutes.',NULL,'0','0','0','','0','','0','','0','MySQL: Server has slow queries (over {$MYSQL.SLOW_QUERIES.MAX.WARN} for 5m)','28b12490a27641ce828ec4d2e80f81b6',''), ('23861','{34048}=1','MySQL: Failed to fetch info data','','0','1','Zabbix has not received any data for items for the last 30 minutes.',NULL,'0','0','0','','0','','0','','0','MySQL: Failed to fetch info data (or no data for 30m)','3449a131f65d44c487a3346529713dd2',''), ('23862','{34049}<10m','MySQL: Service has been restarted','','0','1','MySQL uptime is less than 10 minutes.',NULL,'0','0','0','','0','','0','','0','MySQL: Service has been restarted (uptime < 10m)','f92226addbf14463aea5aedc4f7bf7d8',''), ('23863','{34050}<>{34051} and length({34052})>0','MySQL: Version has changed','','0','1','The MySQL version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MySQL: Version has changed (new version value received: {ITEM.VALUE})','36ce1008736b4a109a060e1150fec15f',''), ('23864','{34053}>{$MYSQL.REPL_LAG.MAX.WARN}','MySQL: Replication lag is too high','','0','2','Replication delay is too long.',NULL,'0','2','0','','0','','0','','0','MySQL: Replication lag is too high (over {$MYSQL.REPL_LAG.MAX.WARN} for 5m)','a2d2da0c7df54bbfba3b1f50306c51d2',''), ('23865','{34054}=1','MySQL: The slave I/O thread is not connected to a replication master','','0','2','Whether the slave I/O thread is connected to the master.',NULL,'0','2','0','','0','','0','','0','','82ace91dce1c45b688ed62c438613510',''), ('23866','{34055}=1','MySQL: The slave I/O thread is not running','','0','3','Whether the I/O thread for reading the master''s binary log is running.',NULL,'0','2','0','','0','','0','','0','','3eab03819bb84d48bba973c7060dcada',''), ('23867','{34056}=1','MySQL: The SQL thread is not running','','0','2','Whether the SQL thread for executing events in the relay log is running.',NULL,'0','2','0','','0','','0','','0','','ee129bbeec9d42e1be803f58d0c6e1b9',''), ('23868','{34057}>{$MYSQL.ABORTED_CONN.MAX.WARN}','MySQL: Server has aborted connections','','0','3','The number of failed attempts to connect to the MySQL server is more than `{$MYSQL.ABORTED_CONN.MAX.WARN}` in the last 5 minutes.',NULL,'0','0','0','','0','','0','','0','MySQL: Server has aborted connections (over {$MYSQL.ABORTED_CONN.MAX.WARN} for 5m)','f49998d4098348378c661927155cd6bf',''), ('23869','{34058}<{$MYSQL.BUFF_UTIL.MIN.WARN}','MySQL: Buffer pool utilization is too low','','0','2','The buffer pool utilization is less than `{$MYSQL.BUFF_UTIL.MIN.WARN}`% in the last 5 minutes. This means that there is a lot of unused RAM allocated for the buffer pool, which you can easily reallocate at the moment.',NULL,'0','0','0','','0','','0','','0','MySQL: Buffer pool utilization is too low (less than {$MYSQL.BUFF_UTIL.MIN.WARN}% for 5m)','254756ed1bcb4ae3b342d34b86e1b6fc',''), ('23870','{34059}>0','MySQL: Refused connections','','0','3','Number of refused connections due to the `max_connections` limit being reached.',NULL,'0','0','0','','0','','0','','0','MySQL: Refused connections (max_connections limit reached)','8ce8e2bd4713435e83ccd036e84e1120',''), ('23871','{34060}>{$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN}','MySQL: Number of on-disk temporary tables created per second is high','','0','2','The application using the database may be in need of query optimization.',NULL,'0','0','0','','0','','0','','0','MySQL: Number of on-disk temporary tables created per second is high (over {$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN} for 5m)','5b6d0d6c7fee4fefb1ed58017818f223',''), ('23872','{34061}>{$MYSQL.CREATED_TMP_FILES.MAX.WARN}','MySQL: Number of temporary files created per second is high','','0','2','The application using the database may be in need of query optimization.',NULL,'0','0','0','','0','','0','','0','MySQL: Number of temporary files created per second is high (over {$MYSQL.CREATED_TMP_FILES.MAX.WARN} for 5m)','3c49bcc1e3e34d1ca6f1d1b5eeeeba9e',''), ('23873','{34062}>{$MYSQL.CREATED_TMP_TABLES.MAX.WARN}','MySQL: Number of internal temporary tables created per second is high','','0','2','The application using the database may be in need of query optimization.',NULL,'0','0','0','','0','','0','','0','MySQL: Number of internal temporary tables created per second is high (over {$MYSQL.CREATED_TMP_TABLES.MAX.WARN} for 5m)','ef985e5db11a49139b0022aaf80cb2d5',''), ('23874','{34063}=0','MySQL: Service is down','','0','4','MySQL is down.',NULL,'0','0','0','','0','','0','','0','','fd1b0391ac694aa89950426d75ed3646',''), ('23875','{34064}>{$MYSQL.SLOW_QUERIES.MAX.WARN}','MySQL: Server has slow queries','','0','2','The number of slow queries is more than `{$MYSQL.SLOW_QUERIES.MAX.WARN}` in the last 5 minutes.',NULL,'0','0','0','','0','','0','','0','MySQL: Server has slow queries (over {$MYSQL.SLOW_QUERIES.MAX.WARN} for 5m)','72cbaa89dfc7447aad99ac7a9ae78a17',''), ('23876','{34065}=1','MySQL: Failed to fetch info data','','0','1','Zabbix has not received any data for items for the last 30 minutes.',NULL,'0','0','0','','0','','0','','0','MySQL: Failed to fetch info data (or no data for 30m)','4e9e4b036c224c6a8f39a41e8ca2f225',''), ('23877','{34066}<10m','MySQL: Service has been restarted','','0','1','MySQL uptime is less than 10 minutes.',NULL,'0','0','0','','0','','0','','0','MySQL: Service has been restarted (uptime < 10m)','05c74a05d68445f38f4c5af591f0fbf8',''), ('23878','{34067}<>{34068} and length({34069})>0','MySQL: Version has changed','','0','1','The MySQL version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','MySQL: Version has changed (new version value received: {ITEM.VALUE})','87b33acf66644972b2a9c7daa4376634',''), ('23879','{34070}>{$MYSQL.REPL_LAG.MAX.WARN}','MySQL: Replication lag is too high','','0','2','Replication delay is too long.',NULL,'0','2','0','','0','','0','','0','MySQL: Replication lag is too high (over {$MYSQL.REPL_LAG.MAX.WARN} for 5m)','31ac7f52dfc84a93a00862e40295419c',''), ('23880','{34071}=1','MySQL: The slave I/O thread is not connected to a replication master','','0','2','Whether the slave I/O thread is connected to the master.',NULL,'0','2','0','','0','','0','','0','','fceb91bcca89405faf5c68845d475d55',''), ('23881','{34072}=1','MySQL: The slave I/O thread is not running','','0','3','Whether the I/O thread for reading the master''s binary log is running.',NULL,'0','2','0','','0','','0','','0','','7d4aa19570704ea5a571e73c19f57c73',''), ('23882','{34073}=1','MySQL: The SQL thread is not running','','0','2','Whether the SQL thread for executing events in the relay log is running.',NULL,'0','2','0','','0','','0','','0','','01397ed577884506aec546fc8c6f1b08',''), ('23883','{34074} > {$PG.CONN_TOTAL_PCT.MAX.WARN}','PostgreSQL: Total number of connections is too high','','0','3','Total number of current connections exceeds the limit of {$PG.CONN_TOTAL_PCT.MAX.WARN}% out of the maximum number of concurrent connections to the database server (the "max_connections" setting).',NULL,'0','0','0','','0','','0','','0','PostgreSQL: Total number of connections is too high (over {$PG.CONN_TOTAL_PCT.MAX.WARN} in 5m)','f07fbe410afa48e6a08da06f4af504c5',''), ('23884','{34075}>0','PostgreSQL: Dbstat: Checksum failures detected','','0','3','Data page checksum failures were detected on that DB instance: https://www.postgresql.org/docs/current/checksums.html',NULL,'0','0','0','','0','','0','','0','','15357041a8774ae19a6cfa64154a4395',''), ('23885','{34076} > 18000000','PostgreSQL: Oldest xid is too big','','0','3','',NULL,'0','0','0','','0','','0','','0','','233757fda5784d9fb264bd0d4a7765ac',''), ('23886','{34077}=0','PostgreSQL: Service is down','','0','4','Last test of a connection was unsuccessful.',NULL,'0','0','0','','0','','0','','0','','ab52bca5bae940cdad5b7eead56f2ff9',''), ('23887','{34078} < 10m','PostgreSQL: Service has been restarted','','0','3','PostgreSQL uptime is less than 10 minutes.',NULL,'0','0','0','','0','','0','','0','PostgreSQL: Service has been restarted (uptime < 10m)','ec3d8fb289234e84b300b83ce169137f',''), ('23888','{34079}<>{34080} and length({34081})>0','PostgreSQL: Version has changed','','0','1','',NULL,'0','0','0','','0','','0','','0','PostgreSQL: Version has changed (new version value received: {ITEM.VALUE})','0d8c3bf10b4e42f796f72136768ce6ab',''), ('23889','{34082}>0','PostgreSQL: DB [{#DBNAME}]: Checksum failures detected','','0','3','Data page checksum failures were detected on that database: https://www.postgresql.org/docs/current/checksums.html',NULL,'0','2','0','','0','','0','','0','','b0a2935d0a984233a530cf47d8fc606b',''), ('23890','{34083} > {$PG.CONFLICTS.MAX.WARN:"{#DBNAME}"}','PostgreSQL: DB [{#DBNAME}]: Too many recovery conflicts','','0','3','The primary and standby servers are in many ways loosely connected. Actions on the primary will have an effect on the standby. As a result, there is potential for negative interactions or conflicts between them. https://www.postgresql.org/docs/current/hot-standby.html#HOT-STANDBY-CONFLICT',NULL,'0','2','0','','0','','0','','0','PostgreSQL: DB [{#DBNAME}]: Too many recovery conflicts (over {$PG.CONFLICTS.MAX.WARN:"{#DBNAME}"} in 5m)','d156ed02bcad4123a827a3d7900bed1e',''), ('23891','{34084} > {$PG.DEADLOCKS.MAX.WARN:"{#DBNAME}"}','PostgreSQL: DB [{#DBNAME}]: Deadlock occurred','','0','4','Number of deadlocks detected per second exceeds {$PG.DEADLOCKS.MAX.WARN:"{#DBNAME}"} for 5m.',NULL,'0','2','0','','0','','0','','0','PostgreSQL: DB [{#DBNAME}]: Deadlock occurred (over {$PG.DEADLOCKS.MAX.WARN:"{#DBNAME}"} in 5m)','d188109b522b4ff896ed08fb04cf5f9d',''), ('23892','{34085}>{$PG.SLOW_QUERIES.MAX.WARN:"{#DBNAME}"}','PostgreSQL: DB [{#DBNAME}]: Too many slow queries','','0','2','The number of detected slow queries exceeds the limit of {$PG.SLOW_QUERIES.MAX.WARN:"{#DBNAME}"}.',NULL,'0','2','0','','0','','0','','0','PostgreSQL: DB [{#DBNAME}]: Too many slow queries (over {$PG.SLOW_QUERIES.MAX.WARN:"{#DBNAME}"} in 5m)','be059c5eb7b6442b8312ef58b2bc55cc',''), ('23893','{34086} > {$PG.CHECKPOINTS_REQ.MAX.WARN}','PostgreSQL: Required checkpoints occur too frequently','','0','3','Checkpoints are points in the sequence of transactions at which it is guaranteed that the heap and index data files have been updated with all information written before that checkpoint. At checkpoint time, all dirty data pages are flushed to disk and a special checkpoint record is written to the log file. https://www.postgresql.org/docs/current/wal-configuration.html',NULL,'0','0','0','','0','','0','','0','PostgreSQL: Required checkpoints occur too frequently (over {$PG.CHECKPOINTS_REQ.MAX.WARN})','62699d1627fe4141ac59291b138b4f7e',''), ('23894','{34087} = 1','PostgreSQL: Failed to get items','','0','2','Zabbix has not received any data for items for the last 30 minutes.',NULL,'0','0','0','','0','','0','','0','PostgreSQL: Failed to get items (no data for 30m)','33ad0c74e4a34656bd911ebc2920e70a',''), ('23895','{34088} < {$PG.CACHE_HITRATIO.MIN.WARN}','PostgreSQL: Cache hit ratio too low','','0','2','Cache hit ratio is lower than {$PG.CACHE_HITRATIO.MIN.WARN} for 5m.',NULL,'0','0','0','','0','','0','','0','PostgreSQL: Cache hit ratio too low (under {$PG.CACHE_HITRATIO.MIN.WARN} in 5m)','bd2fd99b03b54916963dd661c959dd2f',''), ('23896','{34089}<>{34090} and length({34091})>0','PostgreSQL: Configuration has changed','','0','1','PostgreSQL configuration has changed.',NULL,'0','0','0','','0','','0','','0','','483c370fa82f4c18ac9dbe7b07a4d7ff',''), ('23897','{34092} > {$PG.CONN_TOTAL_PCT.MAX.WARN}','PostgreSQL: Total number of connections is too high','','0','3','Total number of current connections exceeds the limit of {$PG.CONN_TOTAL_PCT.MAX.WARN}% out of the maximum number of concurrent connections to the database server (the "max_connections" setting).',NULL,'0','0','0','','0','','0','','0','PostgreSQL: Total number of connections is too high (over {$PG.CONN_TOTAL_PCT.MAX.WARN} in 5m)','b4673d7606514a6cb5b3ef61b5b05ce1',''), ('23898','{34093} > {$PG.PING_TIME.MAX.WARN}','PostgreSQL: Response too long','','0','3','Response is taking too long (over {$PG.PING_TIME.MAX.WARN} for 5m).',NULL,'0','0','0','','0','','0','','0','PostgreSQL: Response too long (over {$PG.PING_TIME.MAX.WARN})','0b54c409159f494c969c040d295b5cfb',''), ('23899','{34094} = 0','PostgreSQL: Service is down','','0','4','Last test of a connection was unsuccessful.',NULL,'0','0','0','','0','','0','','0','','32a43d55902d46b09f602dc89e3a2586',''), ('23900','{34095} > {$PG.REPL_LAG.MAX.WARN}','PostgreSQL: Streaming lag with master is too high','','0','3','Replication lag with master is higher than {$PG.REPL_LAG.MAX.WARN} for 5m.',NULL,'0','0','0','','0','','0','','0','PostgreSQL: Streaming lag with master is too high (over {$PG.REPL_LAG.MAX.WARN} in 5m)','99adc9f76c0b42a08c22271b9206ce18',''), ('23901','{34096}=0','PostgreSQL: Replication is down','','0','3','Replication is enabled and data streaming was down for 5m.',NULL,'0','0','0','','0','','0','','0','','63b498ebd0484bc59f701e4179ed4fb2',''), ('23902','{34097} < 10m','PostgreSQL: Service has been restarted','','0','3','PostgreSQL uptime is less than 10 minutes.',NULL,'0','0','0','','0','','0','','0','PostgreSQL: Service has been restarted (uptime < 10m)','a7c05ccff4c342018777471d1f3a17b7',''), ('23903','{34098}<>{34099} and length({34100})>0','PostgreSQL: Version has changed','','0','1','',NULL,'0','0','0','','0','','0','','0','PostgreSQL: Version has changed (new version value received: {ITEM.VALUE})','e06391b8cfe74fb5ad3b3bb2718b5e58',''), ('23904','{34101} > {$PG.CONFLICTS.MAX.WARN:"{#DBNAME}"}','PostgreSQL: DB [{#DBNAME}]: Too many recovery conflicts','','0','3','The primary and standby servers are in many ways loosely connected. Actions on the primary will have an effect on the standby. As a result, there is potential for negative interactions or conflicts between them. https://www.postgresql.org/docs/current/hot-standby.html#HOT-STANDBY-CONFLICT',NULL,'0','2','0','','0','','0','','0','PostgreSQL: DB [{#DBNAME}]: Too many recovery conflicts (over {$PG.CONFLICTS.MAX.WARN:"{#DBNAME}"} in 5m)','e35f79c06fba41dfb9d9c35e4a13a043',''), ('23905','{34102} > {$PG.DEADLOCKS.MAX.WARN:"{#DBNAME}"}','PostgreSQL: DB [{#DBNAME}]: Deadlock occurred','','0','4','Number of deadlocks detected per second exceeds {$PG.DEADLOCKS.MAX.WARN:"{#DBNAME}"} for 5m.',NULL,'0','2','0','','0','','0','','0','PostgreSQL: DB [{#DBNAME}]: Deadlock occurred (over {$PG.DEADLOCKS.MAX.WARN:"{#DBNAME}"} in 5m)','5243a46334674a06b52efdef93bce0ec',''), ('23906','{34103}<{$PG.FROZENXID_PCT_STOP.MIN.HIGH:"{#DBNAME}"}','PostgreSQL: DB [{#DBNAME}]: VACUUM FREEZE is required to prevent wraparound','','0','3','Preventing Transaction ID Wraparound Failures: https://www.postgresql.org/docs/current/routine-vacuuming.html#VACUUM-FOR-WRAPAROUND',NULL,'0','2','0','','0','','0','','0','PostgreSQL: DB [{#DBNAME}]: VACUUM FREEZE is required to prevent wraparound (frozen XID less than {$PG.FROZENXID_PCT_STOP.MIN.HIGH:"{#DBNAME}"} %)','0c207f7271ad4df19977722a976b8ccc',''), ('23907','{34104}>{$PG.LOCKS.MAX.WARN:"{#DBNAME}"}','PostgreSQL: DB [{#DBNAME}]: Number of locks is too high','','0','2','',NULL,'0','2','0','','0','','0','','0','PostgreSQL: DB [{#DBNAME}]: Number of locks is too high (over {$PG.LOCKS.MAX.WARN:"{#DBNAME}"} in 5m)','7a235edcda5d4482a9a3f3e5d741ee6e',''), ('23908','{34105}>{$PG.SLOW_QUERIES.MAX.WARN:"{#DBNAME}"}','PostgreSQL: DB [{#DBNAME}]: Too many slow queries','','0','2','The number of detected slow queries exceeds the limit of {$PG.SLOW_QUERIES.MAX.WARN:"{#DBNAME}"}.',NULL,'0','2','0','','0','','0','','0','PostgreSQL: DB [{#DBNAME}]: Too many slow queries (over {$PG.SLOW_QUERIES.MAX.WARN:"{#DBNAME}"} in 5m)','fe5e595cd37c40c3b99aa28a12575b3d',''), ('23909','{34106}=0','Juniper MX: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','07752b9c9851403a9ce753fcd122f808',''), ('23910','{34107}>{$JUNIPER.MX.ICMP_LOSS_WARN} and {34107}<100','Juniper MX: High ICMP ping loss','','0','2','ICMP packet loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','Juniper MX: High ICMP ping loss (over {$JUNIPER.MX.ICMP_LOSS_WARN}% for 5m)','e4cc0c30ff1544d68adfe9f3863e0f19',''), ('23911','{34108}>{$JUNIPER.MX.ICMP_RESPONSE_TIME_WARN}','Juniper MX: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','Juniper MX: High ICMP ping response time (over {$JUNIPER.MX.ICMP_RESPONSE_TIME_WARN}s for 5m)','d573e7a77408476e854de2e556480acc',''), ('23912','{34109}<>{34110} and length({34111})>0','Juniper MX: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Juniper MX: Device has been replaced (new serial number received)','317bc72900e24f4991798775b48bc641',''), ('23913','{34112}<>{34113} and length({34114})>0','Juniper MX: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Juniper MX: System name has changed (new name: {ITEM.VALUE})','faec7813bfc14e5da59bfaf7ad639461',''), ('23914','{34115}<>{34116} and length({34117})>0','Juniper MX: Operating system description has changed','','0','1','Operating system description has changed. Possible reasons - system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','007d3cb1343144cc9ee01d24df45082d',''), ('23915','{34118}=0','Juniper MX: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a30f49e7b715409abec697f303ccc46c',''), ('23916','({34119}>0 and {34119}<10m) or ({34119}=0 and {34120}<10m)','Juniper MX: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Juniper MX: {HOST.NAME} has been restarted (uptime < 10m)','4882bb9496ac40bc97c3c5278c0181c8',''), ('23917','{34121}<>6 and {34122}=2','Juniper MX: BGP AS [{#BGPM2_PEER_REMOTE_AS}] Peer [{#BGPM2_PEER_REMOTE_ADDR}]: is down','','0','4','Session [BGP AS [{#BGPM2_PEER_REMOTE_AS}] Peer [{#BGPM2_PEER_REMOTE_ADDR}]] is down, check the BGP configuration. For information on checking the BGP configuration, see https://www.juniper.net/documentation/us/en/software/junos/bgp/topics/topic-map/troubleshooting-bgp-sessions.html.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}, Status: {ITEM.LASTVALUE2}','0','','cdbf01b1b5bc4dfd8e53fe43efe8f6c0',''), ('23918','{34123}>{$JUNIPER.MX.CPU.UTIL.CRIT}','Juniper MX: System [{#SNMPVALUE}]: High CPU utilization','','0','3','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Juniper MX: System [{#SNMPVALUE}]: High CPU utilization (over {$JUNIPER.MX.CPU.UTIL.CRIT}% for 5m)','2739dd5737084c40ab83214560b5a750',''), ('23919','{34124}>{$JUNIPER.MX.MEMORY.UTIL.MAX}','Juniper MX: System [{#SNMPVALUE}]: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Juniper MX: System [{#SNMPVALUE}]: High memory utilization (>{$JUNIPER.MX.MEMORY.UTIL.MAX}% for 5m)','b88715979b6e4d56ab60dccdb6ce1089',''), ('23920','jsonpath({34125},"$.domLaneRxLaserPowerHighAlarm")="true"','Juniper MX: SFP [{#IFNAME}][{#IFALIAS}]: Rx power high','','0','2','Receiver laser power - high alarm threshold.',NULL,'0','2','0','','0','','0','Status alarm: "true"','0','Juniper MX: SFP [{#IFNAME}][{#IFALIAS}]: Rx laser power high on [{#LANEINDEX}] lane','06fa038e24c54f4db6d9ff0394c508b3',''), ('23921','jsonpath({34126},"$.domLaneRxLaserPowerLowAlarm")="true"','Juniper MX: SFP [{#IFNAME}][{#IFALIAS}]: Rx power low','','0','2','Receiver laser power - low alarm threshold.',NULL,'0','2','0','','0','','0','Status alarm: "true"','0','Juniper MX: SFP [{#IFNAME}][{#IFALIAS}]: Rx laser power low on [{#LANEINDEX}] lane','51f020c7950d4337b88f0006a8895700',''), ('23922','jsonpath({34127},"$.domLaneLaserTemperatureHighAlarm")="true"','Juniper MX: SFP [{#IFNAME}][{#IFALIAS}]: Temperature High','','0','2','Module temperature - high alarm threshold.',NULL,'0','2','0','','0','','0','Status alarm: "true"','0','Juniper MX: SFP [{#IFNAME}][{#IFALIAS}]: Laser temperature high on [{#LANEINDEX}] lane','24dc66bf852a444cb8a5e8190d6c585d',''), ('23923','jsonpath({34128},"$.domLaneLaserTemperatureLowAlarm")="true"','Juniper MX: SFP [{#IFNAME}][{#IFALIAS}]: Temperature Low','','0','2','Module temperature - low alarm threshold.',NULL,'0','2','0','','0','','0','Status alarm: "true"','0','Juniper MX: SFP [{#IFNAME}][{#IFALIAS}]: Laser temperature low on [{#LANEINDEX}] lane','030018ccb02e43af8ff228ca10c6175c',''), ('23924','jsonpath({34129},"$.domLaneTxLaserBiasCurrentHighAlarm")="true"','Juniper MX: SFP [{#IFNAME}][{#IFALIAS}]: Tx bias high','','0','2','Transmitter laser bias current - high alarm threshold.',NULL,'0','2','0','','0','','0','Status alarm: "true"','0','Juniper MX: SFP [{#IFNAME}][{#IFALIAS}]: Tx laser bias current high on [{#LANEINDEX}] lane','67575aa6971e4aa6987d61a3cd890a41',''), ('23925','jsonpath({34130},"$.domLaneTxLaserBiasCurrentLowAlarm")="true"','Juniper MX: SFP [{#IFNAME}][{#IFALIAS}]: Tx bias low','','0','2','Transmitter laser bias current - low alarm threshold.',NULL,'0','2','0','','0','','0','Status alarm: "true"','0','Juniper MX: SFP [{#IFNAME}][{#IFALIAS}]: Tx laser bias current low on [{#LANEINDEX}] lane','27b9d3d1af0c4c65bcf22e6d71c760af',''), ('23926','jsonpath({34131},"$.domLaneTxLaserOutputPowerHighAlarm")="true"','Juniper MX: SFP [{#IFNAME}][{#IFALIAS}]: Tx power high','','0','2','Transmitter laser power - high alarm threshold.',NULL,'0','2','0','','0','','0','Status alarm: "true"','0','Juniper MX: SFP [{#IFNAME}][{#IFALIAS}]: Tx laser power high on [{#LANEINDEX}] lane','c64e77302be84ff7bb7e2b4b2e33b6c7',''), ('23927','jsonpath({34132},"$.domLaneTxLaserOutputPowerLowAlarm")="true"','Juniper MX: SFP [{#IFNAME}][{#IFALIAS}]: Tx power low','','0','2','Transmitter laser power - low alarm threshold.',NULL,'0','2','0','','0','','0','Status alarm: "true"','0','Juniper MX: SFP [{#IFNAME}][{#IFALIAS}]: Tx laser power low on [{#LANEINDEX}] lane','e8ff233746604369b4419ca405990d5b',''), ('23928','{34133}=1','Juniper MX: Sensor [{#SNMPVALUE}]: Fan is in critical state','','0','3','Please check the Fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6c40d7e7701b4615a29b0e4eafb04aff',''), ('23929','{34134}<0 and {34135}>0 and ( {34136}=6 or {34136}=7 or {34136}=11 or {34136}=62 or {34136}=69 or {34136}=117 ) and ({34137}<>2)','Juniper MX: Interface [{#IFNAME}][{#IFALIAS}]: Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({34134}>0 and {34138}>0) or ({34137}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','140de6180ae64aeab26d898518392c54',''), ('23930','({34139}>({$JUNIPER.MX.IF.UTIL.MAX:"{#IFNAME}"}/100)*{34140} or {34141}>({$JUNIPER.MX.IF.UTIL.MAX:"{#IFNAME}"}/100)*{34140}) and {34140}>0','Juniper MX: Interface [{#IFNAME}][{#IFALIAS}]: High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{34139}<(({$JUNIPER.MX.IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{34140} and {34141}<(({$JUNIPER.MX.IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{34140}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Juniper MX: Interface [{#IFNAME}][{#IFALIAS}]: High bandwidth usage (>{$JUNIPER.MX.IF.UTIL.MAX:"{#IFNAME}"}%)','0a9b64496e794daaa3fd126a0f821fec',''), ('23931','{34142}>{$JUNIPER.MX.IF.ERRORS.WARN:"{#IFNAME}"} or {34143}>{$JUNIPER.MX.IF.ERRORS.WARN:"{#IFNAME}"}','Juniper MX: Interface [{#IFNAME}][{#IFALIAS}]: High error rate','','0','2','It recovers when it is below 80% of the `{$JUNIPER.MX.IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{34144}<{$JUNIPER.MX.IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {34145}<{$JUNIPER.MX.IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Juniper MX: Interface [{#IFNAME}][{#IFALIAS}]: High error rate (>{$JUNIPER.MX.IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','643b17bf71574d77bb06240af9c6fbc5',''), ('23932','{$JUNIPER.MX.IFCONTROL:"{#IFNAME}"}=1 and {34146}=2 and ({34147}<>{34148})','Juniper MX: Interface [{#IFNAME}][{#IFALIAS}]: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$JUNIPER.MX.IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of `.diff`.',NULL,'0','2','1','{34146}<>2 or {$JUNIPER.MX.IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','e6e97882d81242019bbb072a4b3cd9aa',''), ('23933','{34149}=2','Juniper MX: Interface [{#IFNAME}][{#IFALIAS}]: In half-duplex mode','','0','2','Please check autonegotiation settings and cabling.',NULL,'0','2','0','','0','','1','','0','','0e37a15e7be949d9a2706b298c4d4182',''), ('23934','{34150}<>{34151}','Juniper MX: OSPF Neighbor [{#OSPF_IP_ADDR}]: Number of relationship has changed','','0','2','The number of times the [{#OSPF_IP_ADDR}] neighbor relationship has changed.',NULL,'0','2','0','','0','','0','Number of relationship changes: {ITEM.LASTVALUE1}','0','','604dcfd4cee146aaa1c74bea48aec3fd',''), ('23935','{34152} = 1','Juniper MX: OSPF Neighbor [{#OSPF_IP_ADDR}]: State down','','0','3','OSPF neighbor [{#OSPF_IP_ADDR}] in operational state `down`.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','72fa4c432ac64c16a2eb624750813ff6',''), ('23936','{34153} = 3','Juniper MX: OSPF Neighbor [{#OSPF_IP_ADDR}]: State init','','0','3','OSPF neighbor [{#OSPF_IP_ADDR}] in operational state `init`.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','1b9b5f7074bd4321bfa000d5dfc8d487',''), ('23937','{34154}<>{34155}','Juniper MX: OSPFv3 Neighbor [{#OSPFV3_IP_ADDR}]: relationship has changed','','0','2','The number of times the [{#OSPFV3_IP_ADDR}] neighbor relationship has changed.',NULL,'0','2','0','','0','','0','Number of relationship changes: {ITEM.LASTVALUE1}','0','','25b9d8bd021646ecb3f0b6293b8c01b3',''), ('23938','{34156} = 1','Juniper MX: OSPFv3 Neighbor [{#OSPFV3_IP_ADDR}]: State down','','0','3','OSPF neighbor [{#OSPFV3_IP_ADDR}] in operational state `down`.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','acfa268322b044cdbdeef1d4c97b8c15',''), ('23939','{34157} = 3','Juniper MX: OSPFv3 Neighbor [{#OSPFV3_IP_ADDR}]: State init','','0','3','OSPFv3 neighbor [{#OSPFV3_IP_ADDR}] in operational state `init`.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','abbab005937b4c488205b70860ffc5a6',''), ('23940','{34158}=1','Juniper MX: Sensor [{#SNMPVALUE}]: Power supply is in critical state','','0','3','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','2e68ce04be164ea5a728639ad0dadd35',''), ('23941','{34159}>{$JUNIPER.MX.TEMP_CRIT:"{#SENSOR_INFO}"}','Juniper MX: Sensor [{#SENSOR_INFO}]: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as the temperature sensor status if available.',NULL,'0','2','1','{34160}<{$JUNIPER.MX.TEMP_CRIT:"{#SENSOR_INFO}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Juniper MX: Sensor [{#SENSOR_INFO}]: Temperature is above critical threshold: >{$JUNIPER.MX.TEMP_CRIT:"Juniper MX: Sensor [{#SENSOR_INFO}]"}','8ae058e6a8044f52b2f36159a089b5f1',''), ('23942','{34161}>{$JUNIPER.MX.TEMP_WARN:"{#SENSOR_INFO}"}','Juniper MX: Sensor [{#SENSOR_INFO}]: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as the temperature sensor status if available.',NULL,'0','2','1','{34162}<{$JUNIPER.MX.TEMP_WARN:"{#SENSOR_INFO}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Juniper MX: Sensor [{#SENSOR_INFO}]: Temperature is above warning threshold: >{$JUNIPER.MX.TEMP_WARN:"Juniper MX: Sensor [{#SENSOR_INFO}]"}','b48e691a3db64b9481c2b23b8f349dc3',''), ('23943','{34163}<{$JUNIPER.MX.TEMP_CRIT_LOW:"{#SENSOR_INFO}"}','Juniper MX: Sensor [{#SENSOR_INFO}]: Temperature is too low','','0','3','This trigger uses temperature sensor values as well as the temperature sensor status if available.',NULL,'0','2','1','{34164}>{$JUNIPER.MX.TEMP_CRIT_LOW:"{#SENSOR_INFO}"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Juniper MX: Sensor [{#SENSOR_INFO}]: Temperature is too low: <{$JUNIPER.MX.TEMP_CRIT_LOW:"Juniper MX: Sensor [{#SENSOR_INFO}]"}','eb9e6a9987584dedbae36d636569c03f',''), ('23944','{34165}=1','Azure SQL instance: Azure SQL managed instance is degraded','','0','3','The resource is in a degraded state.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','68d6f9d594f64579a7c6be464e126629',''), ('23945','{34166}=3','Azure SQL instance: Azure SQL managed instance is in unknown state','','0','2','The resource state is unknown.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','9a7ebcccf4684fad8523866fb489e06b',''), ('23946','{34167}=2','Azure SQL instance: Azure SQL managed instance is unavailable','','0','4','The resource state is unavailable.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','4a08e72f744e4a0faee2d2e29714d8b8',''), ('23947','{34168}=1','Azure SQL instance: Instance collation has changed','','0','3','Azure SQL managed instance collation has changed.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','5c8068386b0a47438713d2b4bd54954a',''), ('23948','{34169}>={$AZURE.SQL.INST.CPU.CRIT}','Azure SQL instance: Critically high CPU utilization','','0','3','CPU utilization is critically high.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE}','0','Azure SQL instance: Critically high CPU utilization: (over >= {$AZURE.SQL.INST.CPU.CRIT}% over last 10m)','553333ffdbf142539799e7a7b6e8af2b',''), ('23949','{34170}>={$AZURE.SQL.INST.CPU.WARN}','Azure SQL instance: High CPU utilization','','0','2','CPU utilization is too high.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE}','0','Azure SQL instance: High CPU utilization: (over >= {$AZURE.SQL.INST.CPU.WARN}% over last 10m)','7c5876872c644f8598a1fd275d4763d2',''), ('23950','length({34171})>0','Azure SQL instance: There are errors in requests to API','','0','3','Zabbix has received errors in response to API requests.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','35ec346076ca4c979897e91389d23eb7',''), ('23951','{35756}<>0','Azure SQL instance: Instance provisioning state has changed','','0','2','Azure SQL managed instance provisioning state has changed.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','08a59eccbb854b6db1711c9141231e94',''), ('23952','{34173}=1','Azure SQL instance: Instance state has changed','','0','2','Azure SQL managed instance state has changed.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','','9a51e2286f354820b89cd0d35586b99a',''), ('23953','{34174}>{$AZURE.SQL.INST.SPACE.CRIT}','Azure SQL instance: Storage free space is critically low','','0','3','The free storage space has been less than `{$AZURE.SQL.INST.SPACE.CRIT}`% for 5m.',NULL,'0','0','0','','0','','1','Space free: {ITEM.LASTVALUE}','0','Azure SQL instance: The free storage space is critically low (below {$AZURE.SQL.INST.SPACE.CRIT}% for 5m)','ed8c37e4f62b471385402e0bcf6cc47e',''), ('23954','{34175}>{$AZURE.SQL.INST.SPACE.WARN}','Azure SQL instance: Storage free space is low','','0','2','The free storage space has been less than `{$AZURE.SQL.INST.SPACE.WARN}`% for 5m.',NULL,'0','0','0','','0','','1','Space free: {ITEM.LASTVALUE}','0','Azure SQL instance: The free storage space is low (below {$AZURE.SQL.INST.SPACE.WARN}% for 5m)','bf8c527a0566490d829ae7654057a1ec',''), ('23955','length({34176})>0','PA-440: Failed to get device certificate data from the API','','0','4','Failed to get data from the API. Check the latest values for details.',NULL,'0','0','0','','0','','0','','0','','44ab6b7c72bd4ccbbab3daed1f229417',''), ('23956','length({34177})>0','PA-440: Failed to get certificate data from the API','','0','4','Failed to get data from the API. Check the latest values for details.',NULL,'0','0','0','','0','','0','','0','','a323a25e3808440ab38b412b62e14300',''), ('23957','length({34178})>0','PA-440: Failed to get environmental data from the API','','0','4','Failed to get data from the API. Check the latest values for details.',NULL,'0','0','0','','0','','0','','0','','c9ba92783cb74e64817790ff25e710d4',''), ('23958','length({34179})>0','PA-440: Failed to get HA data from the API','','0','4','Failed to get data from the API. Check the latest values for details.',NULL,'0','0','0','','0','','0','','0','','ed84f048159a47dc8b839d00c339cfc3',''), ('23959','length({34180})>0','PA-440: Failed to get license data from the API','','0','4','Failed to get data from the API. Check the latest values for details.',NULL,'0','0','0','','0','','0','','0','','475e2a36b81840cd9f4c4eb1f9d12109',''), ('23960','length({34181})>0','PA-440: Failed to get OSPF neighbor data from the API','','0','4','Failed to get data from the API. Check the latest values for details.',NULL,'0','0','0','','0','','0','','0','','b828df38af09484c8ed6c9fd726f8757',''), ('23961','length({34182})>0','PA-440: Failed to get OSPFv3 neighbor data from the API','','0','4','Failed to get data from the API. Check the latest values for details.',NULL,'0','0','0','','0','','0','','0','','c879700d2fc84426907962068eae225f',''), ('23962','length({34183})>0','PA-440: Failed to get session info data from the API','','0','4','Failed to get data from the API. Check the latest values for details.',NULL,'0','0','0','','0','','0','','0','','d7577936d64a4e7b9e62868dacce625d',''), ('23963','length({34184})>0','PA-440: Failed to get system info data from the API','','0','4','Failed to get data from the API. Check the latest values for details.',NULL,'0','0','0','','0','','0','','0','','38cd1ff8e5494e93a40662b9306c0807',''), ('23964','length({34185})>0','PA-440: Failed to get system state data from the API','','0','4','Failed to get data from the API. Check the latest values for details.',NULL,'0','0','0','','0','','0','','0','','920dc027510941a38648816064d8bf18',''), ('23965','{$PAN.PA440.BGP.CONTROL:"{#PEER}"}=1 and {34186}<10m','PA-440: BGP peer [{#PEER}]: Session status duration has been reset','','0','3','The duration of the session status with the peer has been reset.',NULL,'0','2','0','','0','','0','State duration: {ITEM.LASTVALUE}','0','','9aee65b49c89455e90e08a6d9c362a53',''), ('23966','{$PAN.PA440.BGP.CONTROL:"{#PEER}"}=1 and {34187}<>5 and {34187}<>0','PA-440: BGP peer [{#PEER}]: Session is not Established or Idle','','0','4','The session with the peer is not "Established" or "Idle".',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE}','0','','6d336040133543ada2e916338a6f77eb',''), ('23967','{34188}<{$PAN.PA440.CERT.DEVICE.EXPIRY.WARN}','PA-440: Device certificate: Expires soon','','0','2','The device certificate will expire in less than `{$PAN.PA440.CERT.DEVICE.EXPIRY.WARN}`.',NULL,'0','2','0','','0','','0','Device certificate expires in: {ITEM.LASTVALUE}','0','PA-440: Device certificate: Expires soon (less than {$PAN.PA440.CERT.DEVICE.EXPIRY.WARN} until it expires)','90156f312ddb48498f5475539317bfa3',''), ('23968','({34189} - now())<{$PAN.PA440.CERT.EXPIRY.WARN:"{#CERTNAME}"}','PA-440: Certificate [{#CERTNAME}]: Expires soon','','0','2','The certificate will expire in less than `{$PAN.PA440.CERT.EXPIRY.WARN:"{#CERTNAME}"}`.',NULL,'0','2','0','','0','','0','Certificate expires on: {ITEM.LASTVALUE}','0','PA-440: Certificate [{#CERTNAME}]: Expires soon (less than {$PAN.PA440.CERT.EXPIRY.WARN} until it expires)','bb48cead5efb4979bfd7ae72131b56a3',''), ('23969','({34190} - now())<0','PA-440: Certificate [{#CERTNAME}]: Has expired','','0','4','The certificate has expired.',NULL,'0','2','0','','0','','0','','0','','8d546a0d064941439f5a603854e1f484',''), ('23970','{34191}=6 and length({34192})>0','PA-440: HA is in "non-functional" state','','0','4','Error state due to a dataplane failure or a configuration mismatch such as: only one firewall configured for packet forwarding, VR sync, or QoS sync. In active/passive mode, all of the causes listed for the tentative state cause the non-functional state: - Failure of a firewall. - Failure of a monitored object (a link or path). - The firewall leaves the suspended or non-functional state. Information about high availability states: https://docs.paloaltonetworks.com/pan-os/11-1/pan-os-admin/high-availability/ha-firewall-states',NULL,'0','2','0','','0','','0','Current HA state: {ITEM.LASTVALUE}. State reason: {ITEM.LASTVALUE2}','0','','eff0a2435b98474eab352f796ea4811f',''), ('23971','{34193}=7 and not ({34194}=1 and {$PAN.PA440.HA.STATE.IGNORE_USER_SUSPENDED}=1)','PA-440: HA is in "suspended" state','','0','3','The device is disabled and won''t pass data traffic; although HA communications still occur, the device doesn''t participate in the HA election process. It can''t move to a HA functional state without user intervention. The following case is excluded from the trigger''s logic by default (can be changed by setting the `{$PAN.PA440.HA.STATE.IGNORE_USER_SUSPENDED}` macro value to "0"): the user suspends the device for HA manually. Information about high availability states: https://docs.paloaltonetworks.com/pan-os/11-1/pan-os-admin/high-availability/ha-firewall-states',NULL,'0','2','0','','0','','0','Current HA state: {ITEM.LASTVALUE}. State reason: {ITEM.LASTVALUE2}','0','','98000f629d564d1096d5e5763caf772c',''), ('23972','{34195}=5 and length({34196})>0','PA-440: HA is in "tentative" state','','0','3','State of a firewall (in an active/active configuration) caused by one of the following: - Failure of a firewall. - Failure of a monitored object (a link or path). - The firewall leaves the suspended or non-functional state. A firewall in the tentative state synchronizes sessions and configurations from the peer. Information about high availability states: https://docs.paloaltonetworks.com/pan-os/11-1/pan-os-admin/high-availability/ha-firewall-states',NULL,'0','2','0','','0','','0','Current HA state: {ITEM.LASTVALUE}. State reason: {ITEM.LASTVALUE2}','0','','dafe751acbb545ab8bb14358b7032a4e',''), ('23973','({34197}=1 and {34198}=2) or ({34197}=2 and {34198}=1) or ({34197}=3 and {34198}=4) or ({34197}=4 and {34198}=3)','PA-440: HA state has been changed','','0','4','The high availability state has changed. The following state transitions are checked: 1. Active-Passive HA mode: - "passive" > "active" - "active" > "passive" 2. Active-Active HA mode: - "active-secondary" > "active-primary" - "active-primary" > "active-secondary" Information about high availability states: https://docs.paloaltonetworks.com/pan-os/11-1/pan-os-admin/high-availability/ha-firewall-states',NULL,'0','2','0','','0','','0','Current HA state: {ITEM.LASTVALUE}','0','PA-440: HA state has been changed to "{ITEM.VALUE}"','abc088274f3f4eb996cd00832cb0bfa7',''), ('23974','{34199}=0','PA-440: Configuration is not synchronized with HA peer','','0','4','This trigger indicates that the configuration cannot be synchronized with the HA peer. Please debug this manually by checking the logs (Monitor > Logs > System).',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE}','0','','58498c3e502240239687ae446b3ff81f',''), ('23975','{34200}="down"','PA-440: HA link [{#HALINK}]: Link down','','0','4','The status of the high availability link is "down".',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE}','0','','a70728ec16c14f528ddcfcefdb1b4c94',''), ('23976','({34201}>({$PAN.PA440.IF.HW.UTIL.MAX:"{#IFNAME}"}/100)*{34202} or {34203}>({$PAN.PA440.IF.HW.UTIL.MAX:"{#IFNAME}"}/100)*{34202}) and {34202}>0','PA-440: Interface [{#IFNAME}]: High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{34201}<(({$PAN.PA440.IF.HW.UTIL.MAX:"{#IFNAME}"}-3)/100)*{34202} and {34203}<(({$PAN.PA440.IF.HW.UTIL.MAX:"{#IFNAME}"}-3)/100)*{34202}','0','','1','In: {ITEM.LASTVALUE}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','PA-440: Interface [{#IFNAME}]: High bandwidth usage (>{$PAN.PA440.IF.HW.UTIL.MAX:"{#IFNAME}"}%)','e4ae8d6b2c9b4962afdad9dfd93f2554',''), ('23977','{34204}>{$PAN.PA440.IF.HW.ERRORS.WARN:"{#IFNAME}"} or {34205}>{$PAN.PA440.IF.HW.ERRORS.WARN:"{#IFNAME}"}','PA-440: Interface [{#IFNAME}]: High error rate','','0','2','It recovers when it is below 80% of the `{$PAN.PA440.IF.HW.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{34206}<{$PAN.PA440.IF.HW.ERRORS.WARN:"{#IFNAME}"}*0.8 and {34207}<{$PAN.PA440.IF.HW.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','Errors in: {ITEM.LASTVALUE}, errors out: {ITEM.LASTVALUE2}','0','PA-440: Interface [{#IFNAME}]: High error rate (>{$PAN.PA440.IF.HW.ERRORS.WARN:"{#IFNAME}"} for 5m)','9056fb0e68c94a408a5c77d3d8de28fd',''), ('23978','{$PAN.PA440.IF.HW.CONTROL:"{#IFNAME}"}=1 and {34208}="down" and ({34208}<>{34209})','PA-440: Interface [{#IFNAME}]: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operational status is "down". 2. `{$PAN.PA440.IF.HW.CONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status has changed to "down" from some other state (it does not fire for "eternal off" interfaces). WARNING: if closed manually - it will not fire again on the next poll because of `last(/TEMPLATE_NAME/METRIC)<>last(/TEMPLATE_NAME/METRIC,#2)`.',NULL,'0','2','1','{34208}<>"down" or {$PAN.PA440.IF.HW.CONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE}','0','','a32d21255ee641329da2e64900862d83',''), ('23979','{34210}>{$PAN.PA440.IF.SW.ERRORS.WARN:"{#IFNAME}"}','PA-440: VSYS [{#VSYS}]: Interface [{#IFNAME}]: High error rate','','0','2','It recovers when it is below 80% of the `{$PAN.PA440.IF.SW.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{34211}<{$PAN.PA440.IF.SW.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','Errors in: {ITEM.LASTVALUE}','0','PA-440: VSYS [{#VSYS}]: Interface [{#IFNAME}]: High error rate (>{$PAN.PA440.IF.SW.ERRORS.WARN:"{#IFNAME}"} for 5m)','0d56493b020a42e2b967c183384437ac',''), ('23980','{34212}=1','PA-440: License [{#FEATURE}]: Has expired','','0','4','The license `{#DESCRIPTION}` has expired.',NULL,'0','2','0','','0','','1','Current license state: {ITEM.LASTVALUE}','0','','7afa85f66ba8421d89dde638c55ac051',''), ('23981','({34213} - now())<{$PAN.PA440.LICENSE.EXPIRY.WARN:"{#FEATURE}"}','PA-440: License [{#FEATURE}]: Expires soon','','0','2','The license will expire in less than `{$PAN.PA440.LICENSE.EXPIRY.WARN:"{#FEATURE}"}`.',NULL,'0','2','0','','0','','0','License expires on: {ITEM.LASTVALUE}','0','PA-440: License [{#FEATURE}]: Expires soon (less than {$PAN.PA440.LICENSE.EXPIRY.WARN:"{#FEATURE}"} until it expires)','5613f1f1fa5943669eb07010e04dee80',''), ('23982','{$PAN.PA440.OSPF.CONTROL:"{#NEIGHBORADDR}"}=1 and {34214}=1','PA-440: OSPF neighbor [{#NEIGHBORADDR}]: Neighbor is not found anymore','','0','4','The neighbor is not found anymore and the neighborship is gone. Please investigate if this is planned.',NULL,'0','2','0','','0','','0','','0','','25be340cf3f446dda2497627bb228e8b',''), ('23983','{$PAN.PA440.OSPF.CONTROL:"{#NEIGHBORADDR}"}=1 and {34215}<>"full" and {34215}<>"2way"','PA-440: OSPF neighbor [{#NEIGHBORADDR}]: Status is not full or 2way','','0','4','The status of the neighbor is not "full" or "2way". This may indicate issues with the OSPF session.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE}','0','','b8b45278b4e8421b8c7289dfb54f331e',''), ('23984','{$PAN.PA440.OSPFV3.CONTROL:"{#NEIGHBORADDR}"}=1 and {34216}=1','PA-440: OSPFv3 neighbor [{#NEIGHBORADDR}]: Neighbor is not found anymore','','0','4','The neighbor is not found anymore and the neighborship is gone. Please investigate if this is planned.',NULL,'0','2','0','','0','','0','','0','','d554fa457f5549d5ae8f991abc4841f4',''), ('23985','{$PAN.PA440.OSPFV3.CONTROL:"{#NEIGHBORADDR}"}=1 and {34217}<>"full" and {34217}<>"2way"','PA-440: OSPFv3 neighbor [{#NEIGHBORADDR}]: Status is not full or 2way','','0','4','The status of the neighbor is not "full" or "2way". This may indicate issues with the OSPF session.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE}','0','','d05690d42a264dffa07f33983bc85f59',''), ('23986','{34218}<>{34219} and length({34220})>0','Dell R660: Firmware has changed','','0','1','The firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','e6688a178fab46d59cc685a223767a12',''), ('23987','{34221}<>{34222} and length({34223})>0','Dell R660: Device has been replaced','','0','1','The device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Dell R660: Device has been replaced (new serial number received)','62ece039dea440c7999f0b93bc32c40a',''), ('23988','{34224}=3','Dell R660: Server is in a critical state','','0','3','Please check the device for faults.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','2ccd53402fea446283e24ebfe5b32bdd',''), ('23989','{34225}=2','Dell R660: Server is in a warning state','','0','2','Please check the device for warnings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d9c93ee01d284b319cdc1acc6919b834',''), ('23990','{34226}>={$DELL.HTTP.CPU.UTIL.WARN}','Dell R660: CPU utilization is high','','0','2','Current CPU utilization has exceeded `{$DELL.HTTP.CPU.UTIL.WARN}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R660: Current CPU utilization is high (util >= {$DELL.HTTP.CPU.UTIL.WARN}%)','d342f09969114891ae47b50e6e03aa80',''), ('23991','{34227}>={$DELL.HTTP.CPU.UTIL.HIGH}','Dell R660: CPU utilization is too high','','0','4','Current CPU utilization has exceeded `{$DELL.HTTP.CPU.UTIL.HIGH}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R660: Current CPU utilization is too high (util >= {$DELL.HTTP.CPU.UTIL.HIGH}%)','7e5960ded30e450a89a153ef1612b03e',''), ('23992','{34228}>={$DELL.HTTP.IO.UTIL.WARN}','Dell R660: IO utilization is high','','0','2','Current IO utilization has exceeded `{$DELL.HTTP.IO.UTIL.WARN}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R660: Current IO utilization is high (util >= {$DELL.HTTP.IO.UTIL.WARN}%)','1fe2219883964e9d9db2fbc83a62f854',''), ('23993','{34229}>={$DELL.HTTP.IO.UTIL.HIGH}','Dell R660: IO utilization is too high','','0','4','Current IO utilization has exceeded `{$DELL.HTTP.IO.UTIL.HIGH}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R660: Current IO utilization is too high (util >= {$DELL.HTTP.IO.UTIL.HIGH}%)','eab83e0592ec4de7b219ae8a7e9eb54c',''), ('23994','{34230}>={$DELL.HTTP.MEM.UTIL.WARN}','Dell R660: Memory utilization is high','','0','2','Current memory utilization has exceeded `{$DELL.HTTP.MEM.UTIL.WARN}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R660: Current memory utilization is high (util >= {$DELL.HTTP.MEM.UTIL.WARN}%)','9f3501907030474580f28cbd602eb951',''), ('23995','{34231}>={$DELL.HTTP.MEM.UTIL.HIGH}','Dell R660: Memory utilization is too high','','0','4','Current memory utilization has exceeded `{$DELL.HTTP.MEM.UTIL.HIGH}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R660: Current memory utilization is too high (util >= {$DELL.HTTP.MEM.UTIL.HIGH}%)','886fcdda4b7847fb9364d6c2f807641e',''), ('23996','{34232}>={$DELL.HTTP.SYS.UTIL.WARN}','Dell R660: SYS utilization is high','','0','2','Current SYS utilization has exceeded `{$DELL.HTTP.SYS.UTIL.WARN}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R660: Current SYS utilization is high (util >= {$DELL.HTTP.SYS.UTIL.WARN}%)','b9d668629940497dbf06e212f297dc2a',''), ('23997','{34233}>={$DELL.HTTP.SYS.UTIL.HIGH}','Dell R660: SYS utilization is too high','','0','4','Current SYS utilization has exceeded `{$DELL.HTTP.SYS.UTIL.HIGH}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R660: Current SYS utilization is too high (util >= {$DELL.HTTP.SYS.UTIL.HIGH}%)','be2e13c07a894816b6566101e31d017b',''), ('23998','{34234}=0','Dell R660: Redfish API service is unavailable','','0','4','The service is unavailable or does not accept TCP connections.',NULL,'0','0','0','','0','','0','','0','','28d07a7c2c914523b40d46bc8a19764a',''), ('23999','{34235}=3','Dell R660: Controller [{#CNTLR_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','61c75f4620e04c268abfa84f8dd0de95',''), ('24000','{34236}=2','Dell R660: Controller [{#CNTLR_NAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','5b2ce324b7ed499eb7b0ccaba5132cfa',''), ('24001','{34237}=3','Dell R660: Battery [{#BATTERY_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','24fe81eeb566444a9d97bd69b86a8929',''), ('24002','{34238}=2','Dell R660: Battery [{#BATTERY_NAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','5ca151f6f35b4dc6994f48ea3828f720',''), ('24003','{34239}=3','Dell R660: Fan [{#SENSOR_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','5b1c3844e374460799c186bbdfb57c4a',''), ('24004','{34240}=2','Dell R660: Fan [{#SENSOR_NAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','1d868e86dbf24639a90562a8e2adaa6f',''), ('24005','{34241}=3','Dell R660: Interface [{#IFNAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','73c7ef1f002141a8abe53562d2d711ab',''), ('24006','{34242}=2','Dell R660: Interface [{#IFNAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6afa44a6dfdc42129f40405ef2749d84',''), ('24007','{$DELL.HTTP.IFCONTROL:"{#IFNAME}"}=1 and ({34243}=2 and {34244}<>{34245})','Dell R660: Interface [{#IFNAME}]: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is Down (2). 2. `{$DELL.HTTP.IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is Down (2). 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for the "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll because of `.diff`.',NULL,'0','2','1','{34243}=1 or {$DELL.HTTP.IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','a0b08d93fbf042bda4cb17db3bfb8205',''), ('24008','{$DELL.HTTP.IFCONTROL:"{#IFNAME}"}=1 and ({34246}<2 and {34247}<>{34248})','Dell R660: Interface [{#IFNAME}]: Link status issue','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is Null (1) or Unknown (0). 2. `{$DELL.HTTP.IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is Null (1) or Unknown (0). 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for the "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll because of `.diff`.',NULL,'0','2','1','{34246}>=2 or {$DELL.HTTP.IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','1f1be4634d7344679afb26ecbab3955c',''), ('24009','{34249}<>{34250} and length({34251})>0','Dell R660: Physical disk [{#DISK_NAME}] has been replaced','','0','1','[{#DISK_NAME}] serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Dell R660: [{#DISK_NAME}] has been replaced (new serial number received)','bbe632a29504433791396747fd2b997c',''), ('24010','{34252}=3','Dell R660: Physical disk [{#DISK_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','f890c971cddc4c16a64bd35b716f9299',''), ('24011','{34253}=2','Dell R660: Physical disk [{#DISK_NAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e87e58bbb41d40e39f1d1fae29fd9e4d',''), ('24012','{34254}=3','Dell R660: Power supply [{#SENSOR_NAME}]: Current sensor: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a6b73b5c3bf74966b62044b9e0c6a269',''), ('24013','{34255}=2','Dell R660: Power supply [{#SENSOR_NAME}]: Current sensor: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','94f3feb429f346e89194533627a63a1c',''), ('24014','{34256}=3','Dell R660: Power supply [{#SENSOR_NAME}]: Voltage sensor: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','84715b0fca5348efb6b7e94f917d090f',''), ('24015','{34257}=2','Dell R660: Power supply [{#SENSOR_NAME}]: Voltage sensor: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','2dcf0f63718a48d1a7e194c5c4c47c83',''), ('24016','{34258}=3','Dell R660: Probe [{#SENSOR_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','004befed6db74f798e45e487809773dc',''), ('24017','{34259}=2','Dell R660: Probe [{#SENSOR_NAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','bd72de9242054f7e890424c4ef8401ac',''), ('24018','{34260}<8','Dell R660: Virtual disk [{#DISK_NAME}]: RAID status not OK','','0','3','Please check the disk for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','5669738f4dcc4cf892f2474227b52c26',''), ('24019','{34261}=3','Dell R660: Virtual disk [{#DISK_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b8e7795d584c41f083601b7d11119b49',''), ('24020','{34262}=2','Dell R660: Virtual disk [{#DISK_NAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','2c9da958cf3749869b504eeb80005d9b',''), ('24021','{34263}<>{34264} and length({34265})>0','Dell R660: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','06ad53c66cf241d285dd0e4a19b30105',''), ('24022','{34266}<>{34267} and length({34268})>0','Dell R660: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Dell R660: Device has been replaced (new serial number received)','ab50b7de4a004c1bb8bae012e87a9fae',''), ('24023','{34269}>0','Dell R660: Memory amount has changed','','0','3','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','9f583d671b3842798f0bd4d50d395c6e',''), ('24024','{34270}<>{34271} and length({34272})>0','Dell R660: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Dell R660: System name has changed (new name: {ITEM.VALUE})','59cb6156e1f84f0fb28beb51a8046da3',''), ('24025','{34273}={$DELL.SNMP.HEALTH.STATUS.DISASTER}','Dell R660: System is in unrecoverable state','','0','4','Please check the device for faults.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','81762ad908ba492c897572f690606da3',''), ('24026','{34274}={$DELL.SNMP.HEALTH.STATUS.CRIT}','Dell R660: System status is in critical state','','0','3','Please check the device for errors.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','04c60944973d402b9d3a0e96049c42ad',''), ('24027','{34275}={$DELL.SNMP.HEALTH.STATUS.WARN}','Dell R660: System status is in warning state','','0','2','Please check the device for warnings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','31fbf1a98d0646bd9082efc946e2a424',''), ('24028','{34276}<>{34277} and length({34278})>0','Dell R660: Operating system description has changed','','0','1','Operating system description has changed. Possibly, the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','d76ca22d7fd742efb84e04940fa9a846',''), ('24029','{34279}=0','Dell R660: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b7121bb9605148c299aa571ae0baaeac',''), ('24030','({34280}>0 and {34280}<10m) or ({34280}=0 and {34281}<10m)','Dell R660: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Dell R660: {HOST.NAME} has been restarted (uptime < 10m)','0c72f52ac52c46adab21c577c27381b1',''), ('24031','{34282}={$DELL.SNMP.DISK.ARRAY.STATUS.CRIT}','Dell R660: Controller [{#CNTLR_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','922d9b5a81a24331bc127c537cce7844',''), ('24032','{34283}={$DELL.SNMP.DISK.ARRAY.STATUS.FAIL}','Dell R660: Controller [{#CNTLR_NAME}]: Unrecoverable state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','651b100a1d6f4319af973417dcc846c8',''), ('24033','{34284}={$DELL.SNMP.DISK.ARRAY.STATUS.WARN}','Dell R660: Controller [{#CNTLR_NAME}]: Warning state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','aec00889d9d2419d8fd1e5b4cfc1095b',''), ('24034','{34285}={$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT}','Dell R660: Battery [{#BATTERY_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','30752fbc757f47b4a44ce2e348b4be1c',''), ('24035','{34286}<>{$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.OK}','Dell R660: Battery [{#BATTERY_NAME}]: Not in optimal state','','0','1','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c7c2724e188f4a568601d77f3f698212',''), ('24036','{34287}={$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.WARN}','Dell R660: Battery [{#BATTERY_NAME}]: Warning state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4c5fca69653e4b02a0646b1f06947893',''), ('24037','bitand({34288},128)=0','Dell R660: CPU [{#CPU_FQDD}]: Reading error','','0','3','MIB: IDRAC-MIB-SMIv2 CPU probe reading flag is not `processorPresent`.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','67364b2e5a8a4a98a51846d23449510e',''), ('24038','{34289}<>3','Dell R660: CPU [{#CPU_FQDD}]: Status is not OK','','0','3','MIB: IDRAC-MIB-SMIv2 CPU status is not OK.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','906617c75c7a4b9ebb8d5a8e0cfbb569',''), ('24039','{34290}={$DELL.SNMP.FAN.STATUS.CRIT:"criticalUpper"} or {34290}={$DELL.SNMP.FAN.STATUS.CRIT:"nonRecoverableUpper"} or {34290}={$DELL.SNMP.FAN.STATUS.CRIT:"criticalLower"} or {34290}={$DELL.SNMP.FAN.STATUS.CRIT:"nonRecoverableLower"} or {34290}={$DELL.SNMP.FAN.STATUS.CRIT:"failed"}','Dell R660: Fan [{#FAN_DESCR}]: Critical state','','0','3','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','5b8056a1bef340baa9c265719b644d6d',''), ('24040','{34291}={$DELL.SNMP.FAN.STATUS.WARN:"nonCriticalUpper"} or {34291}={$DELL.SNMP.FAN.STATUS.WARN:"nonCriticalLower"}','Dell R660: Fan [{#FAN_DESCR}]: Warning state','','0','2','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','01d33d235a964bb59c409ee6f802077a',''), ('24041','{34292}<>3','Dell R660: Memory [{#SNMPVALUE}]: Status is not OK','','0','3','MIB: IDRAC-MIB-SMIv2 Memory status is not OK.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','2d2d197d92d14a3b85e2a188bc76be2d',''), ('24042','{$DELL.SNMP.IFCONTROL:"{#NIC_FQDD}"}=1 and {34293}<>1 and {34293}<>{34294}','Dell R660: NIC [{#NIC_FQDD}/{#NIC_MAC}]: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is Down. 2. `{$DELL.SNMP.IFCONTROL:"{#NIC_FQDD}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is Down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for the "eternal off" interfaces.)',NULL,'0','2','1','{34293}=1 or {$DELL.SNMP.IFCONTROL:"{#NIC_FQDD}"}=0','0','','1','Current status: {ITEM.LASTVALUE1}','0','','9740ccc648034cbebc73167b6b6692f0',''), ('24043','{34295}<>3','Dell R660: NIC [{#NIC_FQDD}/{#NIC_MAC}]: Status is not OK','','0','3','MIB: IDRAC-MIB-SMIv2 Network interface status is not OK.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','e54d6f6ae07a4e608e4e3a2a0e2cb248',''), ('24044','{34296}<>{34297} and length({34298})>0','Dell R660: Physical disk [{#DISK_NAME}] has been replaced','','0','1','[{#DISK_NAME}] serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Dell R660: [{#DISK_NAME}] has been replaced (new serial number received)','387ab14c93784076b776a8dd6eac7cd5',''), ('24045','{34299}={$DELL.SNMP.DISK.SMART.STATUS.FAIL:"replaceDrive"} or {34299}={$DELL.SNMP.DISK.SMART.STATUS.FAIL:"replaceDriveSSDWearOut"}','Dell R660: Physical disk [{#DISK_NAME}]: S.M.A.R.T. failed','','0','4','Disk probably requires replacement.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','48741d6a36484dfba7edc893d1f06f68',''), ('24046','{34300}={$DELL.SNMP.DISK.STATUS.FAIL:"critical"} or {34300}={$DELL.SNMP.DISK.STATUS.FAIL:"nonRecoverable"}','Dell R660: Physical disk [{#DISK_NAME}]: Failed state','','0','4','Please check physical disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','090de34ecef14ebc8a6383a50b4255ad',''), ('24047','{34301}={$DELL.SNMP.DISK.STATUS.WARN:"nonCritical"}','Dell R660: Physical disk [{#DISK_NAME}]: Warning state','','0','2','Please check physical disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','11dffa72d07e43c5a63f624e126b38ac',''), ('24048','{34302}={$DELL.SNMP.PSU.STATUS.CRIT:"critical"} or {34302}={$DELL.SNMP.PSU.STATUS.CRIT:"nonRecoverable"}','Dell R660: Power supply [{#PSU_DESCR}]: Critical state','','0','3','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','14698cb8183340818414f36d05abb428',''), ('24049','{34303}={$DELL.SNMP.PSU.STATUS.WARN:"nonCritical"}','Dell R660: Power supply [{#PSU_DESCR}]: Warning state','','0','2','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','20c0b3af5ad24a1bbb29c759452f6620',''), ('24050','{34304}<>3','Dell R660: System battery [{#SNMPVALUE}]: Status is not OK','','0','3','MIB: IDRAC-MIB-SMIv2 System battery status is not OK.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','272f79a4c334434489c026133e7faea6',''), ('24051','{34305}={$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"criticalUpper"} or {34305}={$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"nonRecoverableUpper"} or {34305}={$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"criticalLower"} or {34305}={$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"nonRecoverableLower"}','Dell R660: Probe [{#SENSOR_LOCALE}]: Critical status','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','ad72d86ab2ff47e081d56d755c9f38cf',''), ('24052','{34306}<>{$DELL.SNMP.SENSOR.TEMP.STATUS.OK}','Dell R660: Probe [{#SENSOR_LOCALE}]: Not in optimal status','','0','1','Please check the device for faults.',NULL,'0','2','0','','0','','1','Current status: {ITEM.LASTVALUE1}','0','','2bedce1701084c30a4e443f6a5681bde',''), ('24053','{34307}={$DELL.SNMP.SENSOR.TEMP.STATUS.WARN:"nonCriticalUpper"} or {34307}={$DELL.SNMP.SENSOR.TEMP.STATUS.WARN:"nonCriticalLower"}','Dell R660: Probe [{#SENSOR_LOCALE}]: Warning status','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','abcff76920ca4f64b58f7bdcde618181',''), ('24054','{34308}={$DELL.SNMP.VDISK.STATUS.CRIT:"failed"}','Dell R660: Virtual disk [{#DISK_NAME}]: Failed state','','0','4','Please check the virtual disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','29cab0ba7b674b298435e7babd4d13d4',''), ('24055','{34309}={$DELL.SNMP.VDISK.STATUS.WARN:"degraded"}','Dell R660: Virtual disk [{#DISK_NAME}]: Warning state','','0','2','Please check the virtual disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','aeeb4eac4abc4b6bb92de1a22e9840eb',''), ('24056','{34310}<>3','Dell R660: Voltage probe [{#VPROBE_NAME}]: Status is not OK','','0','3','Please check the device''s voltage.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c68730ac9acf427b9c03c3d3a68197d5',''), ('24057','{34311}<>{34312} and length({34313})>0','Dell R720: Firmware has changed','','0','1','The firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','769dd4e6283f4e1e8a4c9271006f7123',''), ('24058','{34314}<>{34315} and length({34316})>0','Dell R720: Device has been replaced','','0','1','The device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Dell R720: Device has been replaced (new serial number received)','32a56bf761a24da5966512e13741824c',''), ('24059','{34317}=3','Dell R720: Server is in a critical state','','0','3','Please check the device for faults.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','231b61c2570141f1bae1a3ccd9083de5',''), ('24060','{34318}=2','Dell R720: Server is in a warning state','','0','2','Please check the device for warnings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','cac71a4bfffa4d87a15280fcbec67672',''), ('24061','{34319}>={$DELL.HTTP.CPU.UTIL.WARN}','Dell R720: CPU utilization is high','','0','2','Current CPU utilization has exceeded `{$DELL.HTTP.CPU.UTIL.WARN}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R720: Current CPU utilization is high (util >= {$DELL.HTTP.CPU.UTIL.WARN}%)','4ae5ed40c7ac4a4990f10afb0c578301',''), ('24062','{34320}>={$DELL.HTTP.CPU.UTIL.HIGH}','Dell R720: CPU utilization is too high','','0','4','Current CPU utilization has exceeded `{$DELL.HTTP.CPU.UTIL.HIGH}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R720: Current CPU utilization is too high (util >= {$DELL.HTTP.CPU.UTIL.HIGH}%)','5d20edd65b914aadb3354b13d52f417f',''), ('24063','{34321}>={$DELL.HTTP.IO.UTIL.WARN}','Dell R720: IO utilization is high','','0','2','Current IO utilization has exceeded `{$DELL.HTTP.IO.UTIL.WARN}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R720: Current IO utilization is high (util >= {$DELL.HTTP.IO.UTIL.WARN}%)','6a345bd704aa4b719399125716967468',''), ('24064','{34322}>={$DELL.HTTP.IO.UTIL.HIGH}','Dell R720: IO utilization is too high','','0','4','Current IO utilization has exceeded `{$DELL.HTTP.IO.UTIL.HIGH}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R720: Current IO utilization is too high (util >= {$DELL.HTTP.IO.UTIL.HIGH}%)','6d2c8ef6746d42299ffc53e0f837e095',''), ('24065','{34323}>={$DELL.HTTP.MEM.UTIL.WARN}','Dell R720: Memory utilization is high','','0','2','Current memory utilization has exceeded `{$DELL.HTTP.MEM.UTIL.WARN}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R720: Current memory utilization is high (util >= {$DELL.HTTP.MEM.UTIL.WARN}%)','8640e51d349b427a9d57923236c4036f',''), ('24066','{34324}>={$DELL.HTTP.MEM.UTIL.HIGH}','Dell R720: Memory utilization is too high','','0','4','Current memory utilization has exceeded `{$DELL.HTTP.MEM.UTIL.HIGH}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R720: Current memory utilization is too high (util >= {$DELL.HTTP.MEM.UTIL.HIGH}%)','f91f48c6bfc5482c8813c5830807640e',''), ('24067','{34325}>={$DELL.HTTP.SYS.UTIL.WARN}','Dell R720: SYS utilization is high','','0','2','Current SYS utilization has exceeded `{$DELL.HTTP.SYS.UTIL.WARN}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R720: Current SYS utilization is high (util >= {$DELL.HTTP.SYS.UTIL.WARN}%)','da48f40dafd44f788bfd9c87896273d9',''), ('24068','{34326}>={$DELL.HTTP.SYS.UTIL.HIGH}','Dell R720: SYS utilization is too high','','0','4','Current SYS utilization has exceeded `{$DELL.HTTP.SYS.UTIL.HIGH}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R720: Current SYS utilization is too high (util >= {$DELL.HTTP.SYS.UTIL.HIGH}%)','94d3375fe9af4d57b9542cd877546b02',''), ('24069','{34327}=0','Dell R720: Redfish API service is unavailable','','0','4','The service is unavailable or does not accept TCP connections.',NULL,'0','0','0','','0','','0','','0','','1a85b9c93c644fd98183df4fbda3a01f',''), ('24070','{34328}=3','Dell R720: Controller [{#CNTLR_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','0191687242b244d9a65b8f8befa7866a',''), ('24071','{34329}=2','Dell R720: Controller [{#CNTLR_NAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','fabb113a6da84fc88cc908c5dcd831fe',''), ('24072','{34330}=3','Dell R720: Battery [{#BATTERY_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d9cd2484dd874e0982eec6eb916abcad',''), ('24073','{34331}=2','Dell R720: Battery [{#BATTERY_NAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','59275951823f4a6f9064ff635141a652',''), ('24074','{34332}=3','Dell R720: Fan [{#SENSOR_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','1891291345094afba1011dae19127f56',''), ('24075','{34333}=2','Dell R720: Fan [{#SENSOR_NAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','0a1e65618388460f826d2da039f51221',''), ('24076','{34334}=3','Dell R720: Interface [{#IFNAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','387d93fe58134f3c9b7729580cfe5f50',''), ('24077','{34335}=2','Dell R720: Interface [{#IFNAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','61517c7e0c7c4dff9965aa55dcd3763e',''), ('24078','{$DELL.HTTP.IFCONTROL:"{#IFNAME}"}=1 and ({34336}=2 and {34337}<>{34338})','Dell R720: Interface [{#IFNAME}]: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is Down (2). 2. `{$DELL.HTTP.IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is Down (2). 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for the "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll because of `.diff`.',NULL,'0','2','1','{34336}=1 or {$DELL.HTTP.IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','6412618ea54a4bcaa7c781982b71547d',''), ('24079','{$DELL.HTTP.IFCONTROL:"{#IFNAME}"}=1 and ({34339}<2 and {34340}<>{34341})','Dell R720: Interface [{#IFNAME}]: Link status issue','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is Null (1) or Unknown (0). 2. `{$DELL.HTTP.IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is Null (1) or Unknown (0). 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for the "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll because of `.diff`.',NULL,'0','2','1','{34339}>=2 or {$DELL.HTTP.IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','f70149eb9e82492a93e49ee8f8cdd569',''), ('24080','{34342}<>{34343} and length({34344})>0','Dell R720: Physical disk [{#DISK_NAME}] has been replaced','','0','1','[{#DISK_NAME}] serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Dell R720: [{#DISK_NAME}] has been replaced (new serial number received)','8a2bdb0e21ae423cbbe771dec636f0e9',''), ('24081','{34345}=3','Dell R720: Physical disk [{#DISK_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6388b5ad43cf459e9c7a39ea2f942237',''), ('24082','{34346}=2','Dell R720: Physical disk [{#DISK_NAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','22533b6c80924f89a73f7ac538e9cad4',''), ('24083','{34347}=3','Dell R720: Power supply [{#SENSOR_NAME}]: Current sensor: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','99518a99a4134a87bde45f3826b1e6de',''), ('24084','{34348}=2','Dell R720: Power supply [{#SENSOR_NAME}]: Current sensor: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','fe67ff02dcbc416db42a750bce15f99c',''), ('24085','{34349}=3','Dell R720: Power supply [{#SENSOR_NAME}]: Voltage sensor: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','78d20bb4cecf46ffbcf22fe41bc7a746',''), ('24086','{34350}=2','Dell R720: Power supply [{#SENSOR_NAME}]: Voltage sensor: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','24c181c37a414fa8be6bdf56f741507f',''), ('24087','{34351}=3','Dell R720: Probe [{#SENSOR_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c5d0cc64c15d46c3bf3fcf1432b30901',''), ('24088','{34352}=2','Dell R720: Probe [{#SENSOR_NAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','0caf6c91495048d094018bbaa4dacfbf',''), ('24089','{34353}<8','Dell R720: Virtual disk [{#DISK_NAME}]: RAID status not OK','','0','3','Please check the disk for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','3f3e013e2e814e748cd7c6233090b787',''), ('24090','{34354}=3','Dell R720: Virtual disk [{#DISK_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','24f8c74df63d4a728cd2379b79ef204d',''), ('24091','{34355}=2','Dell R720: Virtual disk [{#DISK_NAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','ddde2d6ca20d4981a766719530e28911',''), ('24092','{34356}<>{34357} and length({34358})>0','Dell R720: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','46c22d9eca174756903b8c26ec69c792',''), ('24093','{34359}<>{34360} and length({34361})>0','Dell R720: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Dell R720: Device has been replaced (new serial number received)','1e3f0933fae74fc29c13177fe2cf6903',''), ('24094','{34362}>0','Dell R720: Memory amount has changed','','0','3','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','deb6d163f8824e489d9e64674d648d80',''), ('24095','{34363}<>{34364} and length({34365})>0','Dell R720: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Dell R720: System name has changed (new name: {ITEM.VALUE})','12327b9851254d28b1db193fbca51f9a',''), ('24096','{34366}={$DELL.SNMP.HEALTH.STATUS.DISASTER}','Dell R720: System is in unrecoverable state','','0','4','Please check the device for faults.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7b6bbbaf7a6f4ba084e812fc98aee033',''), ('24097','{34367}={$DELL.SNMP.HEALTH.STATUS.CRIT}','Dell R720: System status is in critical state','','0','3','Please check the device for errors.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','51bd134f73234388b1c9522468b73883',''), ('24098','{34368}={$DELL.SNMP.HEALTH.STATUS.WARN}','Dell R720: System status is in warning state','','0','2','Please check the device for warnings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e026d877c5e540b9ae06d44874e7ec5d',''), ('24099','{34369}<>{34370} and length({34371})>0','Dell R720: Operating system description has changed','','0','1','Operating system description has changed. Possibly, the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','2e07d3f10a114360b4189e47cfd777f8',''), ('24100','{34372}=0','Dell R720: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','f0b0662e38cd4aa6893dc3b5f89b9c81',''), ('24101','({34373}>0 and {34373}<10m) or ({34373}=0 and {34374}<10m)','Dell R720: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Dell R720: {HOST.NAME} has been restarted (uptime < 10m)','03411617acad4aeb8ddcb5e873ae1b73',''), ('24102','{34375}={$DELL.SNMP.DISK.ARRAY.STATUS.CRIT}','Dell R720: Controller [{#CNTLR_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c9298bbaac134cc39e268d0b94051fcc',''), ('24103','{34376}={$DELL.SNMP.DISK.ARRAY.STATUS.FAIL}','Dell R720: Controller [{#CNTLR_NAME}]: Unrecoverable state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','69ff155a6ecd4b709a1579641a711283',''), ('24104','{34377}={$DELL.SNMP.DISK.ARRAY.STATUS.WARN}','Dell R720: Controller [{#CNTLR_NAME}]: Warning state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','ddb5bca1ce3b45fa8da9197d4ac0f758',''), ('24105','{34378}={$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT}','Dell R720: Battery [{#BATTERY_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7c3cb436445949b5a28368cf4ce00fdc',''), ('24106','{34379}<>{$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.OK}','Dell R720: Battery [{#BATTERY_NAME}]: Not in optimal state','','0','1','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','8cd73ebf8055426883d8301ceeca51de',''), ('24107','{34380}={$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.WARN}','Dell R720: Battery [{#BATTERY_NAME}]: Warning state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','893e3d8d04e841058eafa43752546f1c',''), ('24108','bitand({34381},128)=0','Dell R720: CPU [{#CPU_FQDD}]: Reading error','','0','3','MIB: IDRAC-MIB-SMIv2 CPU probe reading flag is not `processorPresent`.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','1f919ce7df874574b764d1c3f17ed693',''), ('24109','{34382}<>3','Dell R720: CPU [{#CPU_FQDD}]: Status is not OK','','0','3','MIB: IDRAC-MIB-SMIv2 CPU status is not OK.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','54f006add0c7435b8cabaa361d8eb27e',''), ('24110','{34383}={$DELL.SNMP.FAN.STATUS.CRIT:"criticalUpper"} or {34383}={$DELL.SNMP.FAN.STATUS.CRIT:"nonRecoverableUpper"} or {34383}={$DELL.SNMP.FAN.STATUS.CRIT:"criticalLower"} or {34383}={$DELL.SNMP.FAN.STATUS.CRIT:"nonRecoverableLower"} or {34383}={$DELL.SNMP.FAN.STATUS.CRIT:"failed"}','Dell R720: Fan [{#FAN_DESCR}]: Critical state','','0','3','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','20e8c5ad48a44748a5223aa1f2c391dc',''), ('24111','{34384}={$DELL.SNMP.FAN.STATUS.WARN:"nonCriticalUpper"} or {34384}={$DELL.SNMP.FAN.STATUS.WARN:"nonCriticalLower"}','Dell R720: Fan [{#FAN_DESCR}]: Warning state','','0','2','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','791e1a7e913c467fb93209e75e33e7ca',''), ('24112','{34385}<>3','Dell R720: Memory [{#SNMPVALUE}]: Status is not OK','','0','3','MIB: IDRAC-MIB-SMIv2 Memory status is not OK.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','a2ba71923e31415ead86dc46fd7e665e',''), ('24113','{$DELL.SNMP.IFCONTROL:"{#NIC_FQDD}"}=1 and {34386}<>1 and {34386}<>{34387}','Dell R720: NIC [{#NIC_FQDD}/{#NIC_MAC}]: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is Down. 2. `{$DELL.SNMP.IFCONTROL:"{#NIC_FQDD}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is Down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for the "eternal off" interfaces.)',NULL,'0','2','1','{34386}=1 or {$DELL.SNMP.IFCONTROL:"{#NIC_FQDD}"}=0','0','','1','Current status: {ITEM.LASTVALUE1}','0','','a5455d074ae94d7daa4eb11d345e33fb',''), ('24114','{34388}<>3','Dell R720: NIC [{#NIC_FQDD}/{#NIC_MAC}]: Status is not OK','','0','3','MIB: IDRAC-MIB-SMIv2 Network interface status is not OK.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','a56df48040fd4ffcb6401cc7a407d303',''), ('24115','{34389}<>{34390} and length({34391})>0','Dell R720: Physical disk [{#DISK_NAME}] has been replaced','','0','1','[{#DISK_NAME}] serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Dell R720: [{#DISK_NAME}] has been replaced (new serial number received)','74b1394597ce4036b9eef76db92a9ac7',''), ('24116','{34392}={$DELL.SNMP.DISK.SMART.STATUS.FAIL:"replaceDrive"} or {34392}={$DELL.SNMP.DISK.SMART.STATUS.FAIL:"replaceDriveSSDWearOut"}','Dell R720: Physical disk [{#DISK_NAME}]: S.M.A.R.T. failed','','0','4','Disk probably requires replacement.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','85205e77583b4d82b408fd1bedb6e680',''), ('24117','{34393}={$DELL.SNMP.DISK.STATUS.FAIL:"critical"} or {34393}={$DELL.SNMP.DISK.STATUS.FAIL:"nonRecoverable"}','Dell R720: Physical disk [{#DISK_NAME}]: Failed state','','0','4','Please check physical disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','899cfe68ef4f4a8abf841c7efb7448a7',''), ('24118','{34394}={$DELL.SNMP.DISK.STATUS.WARN:"nonCritical"}','Dell R720: Physical disk [{#DISK_NAME}]: Warning state','','0','2','Please check physical disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','aaeaa0c4d26d4f8d878517efff99c624',''), ('24119','{34395}={$DELL.SNMP.PSU.STATUS.CRIT:"critical"} or {34395}={$DELL.SNMP.PSU.STATUS.CRIT:"nonRecoverable"}','Dell R720: Power supply [{#PSU_DESCR}]: Critical state','','0','3','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c3141535717d439fa74ffe068b0c61d5',''), ('24120','{34396}={$DELL.SNMP.PSU.STATUS.WARN:"nonCritical"}','Dell R720: Power supply [{#PSU_DESCR}]: Warning state','','0','2','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9b0d4e804b0c4918a7c3660f8772bc88',''), ('24121','{34397}<>3','Dell R720: System battery [{#SNMPVALUE}]: Status is not OK','','0','3','MIB: IDRAC-MIB-SMIv2 System battery status is not OK.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','d61b5c42fbe9451fb02e66cb65682a3d',''), ('24122','{34398}={$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"criticalUpper"} or {34398}={$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"nonRecoverableUpper"} or {34398}={$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"criticalLower"} or {34398}={$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"nonRecoverableLower"}','Dell R720: Probe [{#SENSOR_LOCALE}]: Critical status','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','6c9f6edf352f458a96ab3e388307afd6',''), ('24123','{34399}<>{$DELL.SNMP.SENSOR.TEMP.STATUS.OK}','Dell R720: Probe [{#SENSOR_LOCALE}]: Not in optimal status','','0','1','Please check the device for faults.',NULL,'0','2','0','','0','','1','Current status: {ITEM.LASTVALUE1}','0','','a897d28f37914cad92faaa3ffb218463',''), ('24124','{34400}={$DELL.SNMP.SENSOR.TEMP.STATUS.WARN:"nonCriticalUpper"} or {34400}={$DELL.SNMP.SENSOR.TEMP.STATUS.WARN:"nonCriticalLower"}','Dell R720: Probe [{#SENSOR_LOCALE}]: Warning status','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','44b9519b16e441028e7af08ae1ec4942',''), ('24125','{34401}={$DELL.SNMP.VDISK.STATUS.CRIT:"failed"}','Dell R720: Virtual disk [{#DISK_NAME}]: Failed state','','0','4','Please check the virtual disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','0bd27a473d694b9c8ddb59fe2711608a',''), ('24126','{34402}={$DELL.SNMP.VDISK.STATUS.WARN:"degraded"}','Dell R720: Virtual disk [{#DISK_NAME}]: Warning state','','0','2','Please check the virtual disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7ca47e8ba4a549b2a799d4e78adf5add',''), ('24127','{34403}<>3','Dell R720: Voltage probe [{#VPROBE_NAME}]: Status is not OK','','0','3','Please check the device''s voltage.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','68360a834efd4d0188a9d58d01b9429a',''), ('24128','{34404}<>{34405} and length({34406})>0','Dell R740: Firmware has changed','','0','1','The firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','e25c62f68b3f4c53a0680b651e99cdc7',''), ('24129','{34407}<>{34408} and length({34409})>0','Dell R740: Device has been replaced','','0','1','The device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Dell R740: Device has been replaced (new serial number received)','99d9055edb1a486cbfd064b794b37450',''), ('24130','{34410}=3','Dell R740: Server is in a critical state','','0','3','Please check the device for faults.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','99ebb04c198c4ce4ba5bb1eabe186d97',''), ('24131','{34411}=2','Dell R740: Server is in a warning state','','0','2','Please check the device for warnings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c36399ae3aef4f18944a92ecc539371d',''), ('24132','{34412}>={$DELL.HTTP.CPU.UTIL.WARN}','Dell R740: CPU utilization is high','','0','2','Current CPU utilization has exceeded `{$DELL.HTTP.CPU.UTIL.WARN}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R740: Current CPU utilization is high (util >= {$DELL.HTTP.CPU.UTIL.WARN}%)','acfc613fa7ef4aea8673fa9804804480',''), ('24133','{34413}>={$DELL.HTTP.CPU.UTIL.HIGH}','Dell R740: CPU utilization is too high','','0','4','Current CPU utilization has exceeded `{$DELL.HTTP.CPU.UTIL.HIGH}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R740: Current CPU utilization is too high (util >= {$DELL.HTTP.CPU.UTIL.HIGH}%)','a65d0e094829439da83b403d0373ad6c',''), ('24134','{34414}>={$DELL.HTTP.IO.UTIL.WARN}','Dell R740: IO utilization is high','','0','2','Current IO utilization has exceeded `{$DELL.HTTP.IO.UTIL.WARN}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R740: Current IO utilization is high (util >= {$DELL.HTTP.IO.UTIL.WARN}%)','a0912c7c62b342bbabc74fda99908c4e',''), ('24135','{34415}>={$DELL.HTTP.IO.UTIL.HIGH}','Dell R740: IO utilization is too high','','0','4','Current IO utilization has exceeded `{$DELL.HTTP.IO.UTIL.HIGH}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R740: Current IO utilization is too high (util >= {$DELL.HTTP.IO.UTIL.HIGH}%)','c94f37d12fa9446a81095caaf68e4c70',''), ('24136','{34416}>={$DELL.HTTP.MEM.UTIL.WARN}','Dell R740: Memory utilization is high','','0','2','Current memory utilization has exceeded `{$DELL.HTTP.MEM.UTIL.WARN}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R740: Current memory utilization is high (util >= {$DELL.HTTP.MEM.UTIL.WARN}%)','52c7a1c084f545b58ede5a24b06d0dda',''), ('24137','{34417}>={$DELL.HTTP.MEM.UTIL.HIGH}','Dell R740: Memory utilization is too high','','0','4','Current memory utilization has exceeded `{$DELL.HTTP.MEM.UTIL.HIGH}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R740: Current memory utilization is too high (util >= {$DELL.HTTP.MEM.UTIL.HIGH}%)','25d4b9b8fb244d58ab805e6f18ab3581',''), ('24138','{34418}>={$DELL.HTTP.SYS.UTIL.WARN}','Dell R740: SYS utilization is high','','0','2','Current SYS utilization has exceeded `{$DELL.HTTP.SYS.UTIL.WARN}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R740: Current SYS utilization is high (util >= {$DELL.HTTP.SYS.UTIL.WARN}%)','2813184ff5c44f128233860941ffe75b',''), ('24139','{34419}>={$DELL.HTTP.SYS.UTIL.HIGH}','Dell R740: SYS utilization is too high','','0','4','Current SYS utilization has exceeded `{$DELL.HTTP.SYS.UTIL.HIGH}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R740: Current SYS utilization is too high (util >= {$DELL.HTTP.SYS.UTIL.HIGH}%)','d29b786246364813a98664d892e1189b',''), ('24140','{34420}=0','Dell R740: Redfish API service is unavailable','','0','4','The service is unavailable or does not accept TCP connections.',NULL,'0','0','0','','0','','0','','0','','abc84a9051bc411eab4481b539e58f5c',''), ('24141','{34421}=3','Dell R740: Controller [{#CNTLR_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','50bdae400b1a434781b3f5f39573aab1',''), ('24142','{34422}=2','Dell R740: Controller [{#CNTLR_NAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','844f79aa364a4b66b1a99a3fec6aafbf',''), ('24143','{34423}=3','Dell R740: Battery [{#BATTERY_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','2692e6af995642f1af4c3c3b8a24a4d3',''), ('24144','{34424}=2','Dell R740: Battery [{#BATTERY_NAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e758c396c3fe4fc281afd2b68fa4fe25',''), ('24145','{34425}=3','Dell R740: Fan [{#SENSOR_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','509e958d1b4541c79916398a92f1f2da',''), ('24146','{34426}=2','Dell R740: Fan [{#SENSOR_NAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c9477efc33704403a118e2a1fa51f04e',''), ('24147','{34427}=3','Dell R740: Interface [{#IFNAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','cb3e3352f93c4297848e28295763a60c',''), ('24148','{34428}=2','Dell R740: Interface [{#IFNAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','207524d584ac4219be2d7bc15e6dd548',''), ('24149','{$DELL.HTTP.IFCONTROL:"{#IFNAME}"}=1 and ({34429}=2 and {34430}<>{34431})','Dell R740: Interface [{#IFNAME}]: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is Down (2). 2. `{$DELL.HTTP.IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is Down (2). 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for the "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll because of `.diff`.',NULL,'0','2','1','{34429}=1 or {$DELL.HTTP.IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','89063973565f43f3986438b83972413c',''), ('24150','{$DELL.HTTP.IFCONTROL:"{#IFNAME}"}=1 and ({34432}<2 and {34433}<>{34434})','Dell R740: Interface [{#IFNAME}]: Link status issue','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is Null (1) or Unknown (0). 2. `{$DELL.HTTP.IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is Null (1) or Unknown (0). 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for the "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll because of `.diff`.',NULL,'0','2','1','{34432}>=2 or {$DELL.HTTP.IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','00f838261fc74679a8908b413b466314',''), ('24151','{34435}<>{34436} and length({34437})>0','Dell R740: Physical disk [{#DISK_NAME}] has been replaced','','0','1','[{#DISK_NAME}] serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Dell R740: [{#DISK_NAME}] has been replaced (new serial number received)','2bdf2cb7c1964c259174f0bdc215f607',''), ('24152','{34438}=3','Dell R740: Physical disk [{#DISK_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d9a974b6bd41407196a337cc0836f090',''), ('24153','{34439}=2','Dell R740: Physical disk [{#DISK_NAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','2d241b609e6d49b29e3aa1e0cd67b797',''), ('24154','{34440}=3','Dell R740: Power supply [{#SENSOR_NAME}]: Current sensor: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d08b574968104c33a1626ebb2fe2b8fe',''), ('24155','{34441}=2','Dell R740: Power supply [{#SENSOR_NAME}]: Current sensor: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','0df0092cfa584e9aabae0dad854edccb',''), ('24156','{34442}=3','Dell R740: Power supply [{#SENSOR_NAME}]: Voltage sensor: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','55f8e3639ed44b198059eef924f17d6b',''), ('24157','{34443}=2','Dell R740: Power supply [{#SENSOR_NAME}]: Voltage sensor: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','1da44fa0377947788adf128188661f28',''), ('24158','{34444}=3','Dell R740: Probe [{#SENSOR_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d1cba1c87d9946baa59459c37ff65c61',''), ('24159','{34445}=2','Dell R740: Probe [{#SENSOR_NAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','0e6977fa7fa04e669a367dada93467f1',''), ('24160','{34446}<8','Dell R740: Virtual disk [{#DISK_NAME}]: RAID status not OK','','0','3','Please check the disk for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d20a78108211428682b98e9e3f1f495a',''), ('24161','{34447}=3','Dell R740: Virtual disk [{#DISK_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c09c76dcedd14a67a9f1910c7d8cfc44',''), ('24162','{34448}=2','Dell R740: Virtual disk [{#DISK_NAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e64abe29bebe470ea076cbffe0753c4a',''), ('24163','{34449}<>{34450} and length({34451})>0','Dell R740: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','b77eee80359e4fac87d36257d8adc38a',''), ('24164','{34452}<>{34453} and length({34454})>0','Dell R740: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Dell R740: Device has been replaced (new serial number received)','0610dd019a64431f954a41b58e34e0a1',''), ('24165','{34455}>0','Dell R740: Memory amount has changed','','0','3','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','1b12170aa1dd4b278e887bd20d3a7f00',''), ('24166','{34456}<>{34457} and length({34458})>0','Dell R740: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Dell R740: System name has changed (new name: {ITEM.VALUE})','bc5e7a8b73b6425d9ba59c7c1bb44276',''), ('24167','{34459}={$DELL.SNMP.HEALTH.STATUS.DISASTER}','Dell R740: System is in unrecoverable state','','0','4','Please check the device for faults.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','85a8a9c18082436d8fedeebfca0b7173',''), ('24168','{34460}={$DELL.SNMP.HEALTH.STATUS.CRIT}','Dell R740: System status is in critical state','','0','3','Please check the device for errors.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','f0cf8ea9011443b5bdb6cc92af5e63fb',''), ('24169','{34461}={$DELL.SNMP.HEALTH.STATUS.WARN}','Dell R740: System status is in warning state','','0','2','Please check the device for warnings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9fe1bfd6ae724365b5ce13edf0dc8823',''), ('24170','{34462}<>{34463} and length({34464})>0','Dell R740: Operating system description has changed','','0','1','Operating system description has changed. Possibly, the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','6dc4593b42f341799eac23ee792f765d',''), ('24171','{34465}=0','Dell R740: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c743348ae566468d93ac23508511443d',''), ('24172','({34466}>0 and {34466}<10m) or ({34466}=0 and {34467}<10m)','Dell R740: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Dell R740: {HOST.NAME} has been restarted (uptime < 10m)','88a6132f78a24d8ca66e8759526c2381',''), ('24173','{34468}={$DELL.SNMP.DISK.ARRAY.STATUS.CRIT}','Dell R740: Controller [{#CNTLR_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','ca19f66711ad4cc8acadcd6787102a56',''), ('24174','{34469}={$DELL.SNMP.DISK.ARRAY.STATUS.FAIL}','Dell R740: Controller [{#CNTLR_NAME}]: Unrecoverable state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9b0c2970eb304b4f8495a6caa6505ed9',''), ('24175','{34470}={$DELL.SNMP.DISK.ARRAY.STATUS.WARN}','Dell R740: Controller [{#CNTLR_NAME}]: Warning state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','3a36696db31040c6bc10d9180067dc52',''), ('24176','{34471}={$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT}','Dell R740: Battery [{#BATTERY_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','603c5383bea74ce3948294b01158b81c',''), ('24177','{34472}<>{$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.OK}','Dell R740: Battery [{#BATTERY_NAME}]: Not in optimal state','','0','1','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','8107d20d4dee4f18b9a3985f02471a00',''), ('24178','{34473}={$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.WARN}','Dell R740: Battery [{#BATTERY_NAME}]: Warning state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','79b0622881594658bfb7c8b7792d1053',''), ('24179','bitand({34474},128)=0','Dell R740: CPU [{#CPU_FQDD}]: Reading error','','0','3','MIB: IDRAC-MIB-SMIv2 CPU probe reading flag is not `processorPresent`.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','53311d57d9ea43cb9cc7494b51954143',''), ('24180','{34475}<>3','Dell R740: CPU [{#CPU_FQDD}]: Status is not OK','','0','3','MIB: IDRAC-MIB-SMIv2 CPU status is not OK.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','a5318c7465244e34915cae82ba3c7143',''), ('24181','{34476}={$DELL.SNMP.FAN.STATUS.CRIT:"criticalUpper"} or {34476}={$DELL.SNMP.FAN.STATUS.CRIT:"nonRecoverableUpper"} or {34476}={$DELL.SNMP.FAN.STATUS.CRIT:"criticalLower"} or {34476}={$DELL.SNMP.FAN.STATUS.CRIT:"nonRecoverableLower"} or {34476}={$DELL.SNMP.FAN.STATUS.CRIT:"failed"}','Dell R740: Fan [{#FAN_DESCR}]: Critical state','','0','3','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','8477018dfab24e389f2fdf1ee0036e43',''), ('24182','{34477}={$DELL.SNMP.FAN.STATUS.WARN:"nonCriticalUpper"} or {34477}={$DELL.SNMP.FAN.STATUS.WARN:"nonCriticalLower"}','Dell R740: Fan [{#FAN_DESCR}]: Warning state','','0','2','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','3da227c6a2e94e2f8631cee269d5a080',''), ('24183','{34478}<>3','Dell R740: Memory [{#SNMPVALUE}]: Status is not OK','','0','3','MIB: IDRAC-MIB-SMIv2 Memory status is not OK.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','8630f03f08ba45b3ade1065794d0dd25',''), ('24184','{$DELL.SNMP.IFCONTROL:"{#NIC_FQDD}"}=1 and {34479}<>1 and {34479}<>{34480}','Dell R740: NIC [{#NIC_FQDD}/{#NIC_MAC}]: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is Down. 2. `{$DELL.SNMP.IFCONTROL:"{#NIC_FQDD}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is Down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for the "eternal off" interfaces.)',NULL,'0','2','1','{34479}=1 or {$DELL.SNMP.IFCONTROL:"{#NIC_FQDD}"}=0','0','','1','Current status: {ITEM.LASTVALUE1}','0','','4f7bcd3f169f4d2794b4c2674a3ee183',''), ('24185','{34481}<>3','Dell R740: NIC [{#NIC_FQDD}/{#NIC_MAC}]: Status is not OK','','0','3','MIB: IDRAC-MIB-SMIv2 Network interface status is not OK.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','5e3abc09130e42aba1427e1b497d58e5',''), ('24186','{34482}<>{34483} and length({34484})>0','Dell R740: Physical disk [{#DISK_NAME}] has been replaced','','0','1','[{#DISK_NAME}] serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Dell R740: [{#DISK_NAME}] has been replaced (new serial number received)','df07ad54618b4b5db071f137edf18567',''), ('24187','{34485}={$DELL.SNMP.DISK.SMART.STATUS.FAIL:"replaceDrive"} or {34485}={$DELL.SNMP.DISK.SMART.STATUS.FAIL:"replaceDriveSSDWearOut"}','Dell R740: Physical disk [{#DISK_NAME}]: S.M.A.R.T. failed','','0','4','Disk probably requires replacement.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','cf5346652d2b46c1b03e778b93d46377',''), ('24188','{34486}={$DELL.SNMP.DISK.STATUS.FAIL:"critical"} or {34486}={$DELL.SNMP.DISK.STATUS.FAIL:"nonRecoverable"}','Dell R740: Physical disk [{#DISK_NAME}]: Failed state','','0','4','Please check physical disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','3c52af89a6eb466b9264ee55e1357962',''), ('24189','{34487}={$DELL.SNMP.DISK.STATUS.WARN:"nonCritical"}','Dell R740: Physical disk [{#DISK_NAME}]: Warning state','','0','2','Please check physical disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c844585cd3d94a389cc5fae05430fa10',''), ('24190','{34488}={$DELL.SNMP.PSU.STATUS.CRIT:"critical"} or {34488}={$DELL.SNMP.PSU.STATUS.CRIT:"nonRecoverable"}','Dell R740: Power supply [{#PSU_DESCR}]: Critical state','','0','3','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','ebd2ac9080434c619ee3fce7e009b8d5',''), ('24191','{34489}={$DELL.SNMP.PSU.STATUS.WARN:"nonCritical"}','Dell R740: Power supply [{#PSU_DESCR}]: Warning state','','0','2','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','1a83756fc34b481fa1a54f6ac1ea4b90',''), ('24192','{34490}<>3','Dell R740: System battery [{#SNMPVALUE}]: Status is not OK','','0','3','MIB: IDRAC-MIB-SMIv2 System battery status is not OK.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','eeabc8d55cf74ffc9849f4b9a98538b1',''), ('24193','{34491}={$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"criticalUpper"} or {34491}={$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"nonRecoverableUpper"} or {34491}={$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"criticalLower"} or {34491}={$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"nonRecoverableLower"}','Dell R740: Probe [{#SENSOR_LOCALE}]: Critical status','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','70db3d2915764af99ae09b7121b9007b',''), ('24194','{34492}<>{$DELL.SNMP.SENSOR.TEMP.STATUS.OK}','Dell R740: Probe [{#SENSOR_LOCALE}]: Not in optimal status','','0','1','Please check the device for faults.',NULL,'0','2','0','','0','','1','Current status: {ITEM.LASTVALUE1}','0','','2417be4d3f8b4ad781214a8644273267',''), ('24195','{34493}={$DELL.SNMP.SENSOR.TEMP.STATUS.WARN:"nonCriticalUpper"} or {34493}={$DELL.SNMP.SENSOR.TEMP.STATUS.WARN:"nonCriticalLower"}','Dell R740: Probe [{#SENSOR_LOCALE}]: Warning status','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','ee60cc886e5445049e0ae7054d0d825d',''), ('24196','{34494}={$DELL.SNMP.VDISK.STATUS.CRIT:"failed"}','Dell R740: Virtual disk [{#DISK_NAME}]: Failed state','','0','4','Please check the virtual disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','edb04e1e12e2435db574928f7a8df0fa',''), ('24197','{34495}={$DELL.SNMP.VDISK.STATUS.WARN:"degraded"}','Dell R740: Virtual disk [{#DISK_NAME}]: Warning state','','0','2','Please check the virtual disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','0716847961e24d3e9ff009aead84c39a',''), ('24198','{34496}<>3','Dell R740: Voltage probe [{#VPROBE_NAME}]: Status is not OK','','0','3','Please check the device''s voltage.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4e9fe74548d0436093a6343faaf06f00',''), ('24199','{34497}<>{34498} and length({34499})>0','Dell R750: Firmware has changed','','0','1','The firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','479b1531bed7454d97773967e23d53f1',''), ('24200','{34500}<>{34501} and length({34502})>0','Dell R750: Device has been replaced','','0','1','The device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Dell R750: Device has been replaced (new serial number received)','5c1ca8b9ce8146b2a7184e8e9b5f2eeb',''), ('24201','{34503}=3','Dell R750: Server is in a critical state','','0','3','Please check the device for faults.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','71471cc70f114c43adec7410a9c76d16',''), ('24202','{34504}=2','Dell R750: Server is in a warning state','','0','2','Please check the device for warnings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','ca10f6c7deda4c64b5bcc5db15d0a9c5',''), ('24203','{34505}>={$DELL.HTTP.CPU.UTIL.WARN}','Dell R750: CPU utilization is high','','0','2','Current CPU utilization has exceeded `{$DELL.HTTP.CPU.UTIL.WARN}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R750: Current CPU utilization is high (util >= {$DELL.HTTP.CPU.UTIL.WARN}%)','3da411d4c9324ece8e54a7eb841a0b00',''), ('24204','{34506}>={$DELL.HTTP.CPU.UTIL.HIGH}','Dell R750: CPU utilization is too high','','0','4','Current CPU utilization has exceeded `{$DELL.HTTP.CPU.UTIL.HIGH}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R750: Current CPU utilization is too high (util >= {$DELL.HTTP.CPU.UTIL.HIGH}%)','25ef27dc6f954cf684df80a45b82cb65',''), ('24205','{34507}>={$DELL.HTTP.IO.UTIL.WARN}','Dell R750: IO utilization is high','','0','2','Current IO utilization has exceeded `{$DELL.HTTP.IO.UTIL.WARN}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R750: Current IO utilization is high (util >= {$DELL.HTTP.IO.UTIL.WARN}%)','96bf746590ef41c5b4eb13e4b5775804',''), ('24206','{34508}>={$DELL.HTTP.IO.UTIL.HIGH}','Dell R750: IO utilization is too high','','0','4','Current IO utilization has exceeded `{$DELL.HTTP.IO.UTIL.HIGH}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R750: Current IO utilization is too high (util >= {$DELL.HTTP.IO.UTIL.HIGH}%)','04bb737e97e7462ab0b226169191eb86',''), ('24207','{34509}>={$DELL.HTTP.MEM.UTIL.WARN}','Dell R750: Memory utilization is high','','0','2','Current memory utilization has exceeded `{$DELL.HTTP.MEM.UTIL.WARN}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R750: Current memory utilization is high (util >= {$DELL.HTTP.MEM.UTIL.WARN}%)','c942008a07a140f5b2fc1552f190b240',''), ('24208','{34510}>={$DELL.HTTP.MEM.UTIL.HIGH}','Dell R750: Memory utilization is too high','','0','4','Current memory utilization has exceeded `{$DELL.HTTP.MEM.UTIL.HIGH}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R750: Current memory utilization is too high (util >= {$DELL.HTTP.MEM.UTIL.HIGH}%)','519ccd1746f84716848732a24d6c6adc',''), ('24209','{34511}>={$DELL.HTTP.SYS.UTIL.WARN}','Dell R750: SYS utilization is high','','0','2','Current SYS utilization has exceeded `{$DELL.HTTP.SYS.UTIL.WARN}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R750: Current SYS utilization is high (util >= {$DELL.HTTP.SYS.UTIL.WARN}%)','ad3b33164e5c44489b0a58824de01948',''), ('24210','{34512}>={$DELL.HTTP.SYS.UTIL.HIGH}','Dell R750: SYS utilization is too high','','0','4','Current SYS utilization has exceeded `{$DELL.HTTP.SYS.UTIL.HIGH}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R750: Current SYS utilization is too high (util >= {$DELL.HTTP.SYS.UTIL.HIGH}%)','39ffa53a535a41a5b6143b09afd2e04d',''), ('24211','{34513}=0','Dell R750: Redfish API service is unavailable','','0','4','The service is unavailable or does not accept TCP connections.',NULL,'0','0','0','','0','','0','','0','','5cb42d522d814335861831685b6a5e4a',''), ('24212','{34514}=3','Dell R750: Controller [{#CNTLR_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','413f12d3e6254eecbdf64042078ed85f',''), ('24213','{34515}=2','Dell R750: Controller [{#CNTLR_NAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7e5656e12a954c469fe206ba9bdc0894',''), ('24214','{34516}=3','Dell R750: Battery [{#BATTERY_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e70d701b4b1544f788c81ebc778baa7c',''), ('24215','{34517}=2','Dell R750: Battery [{#BATTERY_NAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','114de801bd8947df82bd3ac2a9488403',''), ('24216','{34518}=3','Dell R750: Fan [{#SENSOR_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','98e69cc779b74216bf87464de3dfd10f',''), ('24217','{34519}=2','Dell R750: Fan [{#SENSOR_NAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','56498b5a1a654f0ab75dfed48cc90519',''), ('24218','{34520}=3','Dell R750: Interface [{#IFNAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b52a77a9ed6040f8a774e90291ee8304',''), ('24219','{34521}=2','Dell R750: Interface [{#IFNAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','1e5ba94a3e61409890de06d2b7145046',''), ('24220','{$DELL.HTTP.IFCONTROL:"{#IFNAME}"}=1 and ({34522}=2 and {34523}<>{34524})','Dell R750: Interface [{#IFNAME}]: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is Down (2). 2. `{$DELL.HTTP.IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is Down (2). 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for the "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll because of `.diff`.',NULL,'0','2','1','{34522}=1 or {$DELL.HTTP.IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','14f89419376e4a9f87bb8a8fdce08c4d',''), ('24221','{$DELL.HTTP.IFCONTROL:"{#IFNAME}"}=1 and ({34525}<2 and {34526}<>{34527})','Dell R750: Interface [{#IFNAME}]: Link status issue','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is Null (1) or Unknown (0). 2. `{$DELL.HTTP.IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is Null (1) or Unknown (0). 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for the "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll because of `.diff`.',NULL,'0','2','1','{34525}>=2 or {$DELL.HTTP.IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','616f54f3f8c24efcb6cfd2dabddfb39a',''), ('24222','{34528}<>{34529} and length({34530})>0','Dell R750: Physical disk [{#DISK_NAME}] has been replaced','','0','1','[{#DISK_NAME}] serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Dell R750: [{#DISK_NAME}] has been replaced (new serial number received)','2cf59e5195f44f2294355ff8d7c92cd7',''), ('24223','{34531}=3','Dell R750: Physical disk [{#DISK_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','24c1d95610cb4379b771bad57ccf1c6a',''), ('24224','{34532}=2','Dell R750: Physical disk [{#DISK_NAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','569dc8a30a8e4cb8b83e15265a3cbf55',''), ('24225','{34533}=3','Dell R750: Power supply [{#SENSOR_NAME}]: Current sensor: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4079021e35c948e4aa221bd3d327cce7',''), ('24226','{34534}=2','Dell R750: Power supply [{#SENSOR_NAME}]: Current sensor: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d66e8b1ec51f4e62b773caa27c70610a',''), ('24227','{34535}=3','Dell R750: Power supply [{#SENSOR_NAME}]: Voltage sensor: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','1ac6f860ec194b2caea307904c52313a',''), ('24228','{34536}=2','Dell R750: Power supply [{#SENSOR_NAME}]: Voltage sensor: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a1f4d65962ff49d1a8fb060650299b9f',''), ('24229','{34537}=3','Dell R750: Probe [{#SENSOR_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','71d81774eea54ca8a3085b534a9a4352',''), ('24230','{34538}=2','Dell R750: Probe [{#SENSOR_NAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c0556a6e25e24c3ca8b666a35a929564',''), ('24231','{34539}<8','Dell R750: Virtual disk [{#DISK_NAME}]: RAID status not OK','','0','3','Please check the disk for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7cf1f17cf2ca4a4dbe1066d5bb372c28',''), ('24232','{34540}=3','Dell R750: Virtual disk [{#DISK_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e872fea6b96c4b9cad4b313d94723616',''), ('24233','{34541}=2','Dell R750: Virtual disk [{#DISK_NAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','916b4e10d26c4c6d99e3f40f5dc49c05',''), ('24234','{34542}<>{34543} and length({34544})>0','Dell R750: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','3cb240c2c5884c448a7ac399412dc00c',''), ('24235','{34545}<>{34546} and length({34547})>0','Dell R750: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Dell R750: Device has been replaced (new serial number received)','7e6fb4f6552d4643babba3d650f00c18',''), ('24236','{34548}>0','Dell R750: Memory amount has changed','','0','3','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','2f2f224a7ce3481eb04fd5c62530a57d',''), ('24237','{34549}<>{34550} and length({34551})>0','Dell R750: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Dell R750: System name has changed (new name: {ITEM.VALUE})','45b605bae5bd4bfa8c7ab042a3bde257',''), ('24238','{34552}={$DELL.SNMP.HEALTH.STATUS.DISASTER}','Dell R750: System is in unrecoverable state','','0','4','Please check the device for faults.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','58beec6c28a5424a862d427588b74207',''), ('24239','{34553}={$DELL.SNMP.HEALTH.STATUS.CRIT}','Dell R750: System status is in critical state','','0','3','Please check the device for errors.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','652439f2023d46bf8ba84d8ac0154ee2',''), ('24240','{34554}={$DELL.SNMP.HEALTH.STATUS.WARN}','Dell R750: System status is in warning state','','0','2','Please check the device for warnings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9702a49ff2034f3b98892d93c1060ff1',''), ('24241','{34555}<>{34556} and length({34557})>0','Dell R750: Operating system description has changed','','0','1','Operating system description has changed. Possibly, the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','2c37e6ae35404da199844a685b2ed28f',''), ('24242','{34558}=0','Dell R750: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','22caee353f3f4b74a150f8144f73eab2',''), ('24243','({34559}>0 and {34559}<10m) or ({34559}=0 and {34560}<10m)','Dell R750: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Dell R750: {HOST.NAME} has been restarted (uptime < 10m)','0eb0e7489c6a4e6b8a44fc2eae500006',''), ('24244','{34561}={$DELL.SNMP.DISK.ARRAY.STATUS.CRIT}','Dell R750: Controller [{#CNTLR_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','45ee39d107794f8584960b2a29ae24b6',''), ('24245','{34562}={$DELL.SNMP.DISK.ARRAY.STATUS.FAIL}','Dell R750: Controller [{#CNTLR_NAME}]: Unrecoverable state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c4bee8d38f5c466ba2dbf5c283e50b22',''), ('24246','{34563}={$DELL.SNMP.DISK.ARRAY.STATUS.WARN}','Dell R750: Controller [{#CNTLR_NAME}]: Warning state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','45546a22e8bf4c4c956efcc9bccd8f1e',''), ('24247','{34564}={$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT}','Dell R750: Battery [{#BATTERY_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','067d23b901264566a7c9286167e0bdc8',''), ('24248','{34565}<>{$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.OK}','Dell R750: Battery [{#BATTERY_NAME}]: Not in optimal state','','0','1','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','f304da869b0f4c7d9c0bc0c648399770',''), ('24249','{34566}={$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.WARN}','Dell R750: Battery [{#BATTERY_NAME}]: Warning state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','441c7e48188f4dd584cb5cfefb8b7d12',''), ('24250','bitand({34567},128)=0','Dell R750: CPU [{#CPU_FQDD}]: Reading error','','0','3','MIB: IDRAC-MIB-SMIv2 CPU probe reading flag is not `processorPresent`.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b6ab5fa13e0b4addb6bdb7054484905d',''), ('24251','{34568}<>3','Dell R750: CPU [{#CPU_FQDD}]: Status is not OK','','0','3','MIB: IDRAC-MIB-SMIv2 CPU status is not OK.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','cc4ce4de33484554b08466e06dee03ad',''), ('24252','{34569}={$DELL.SNMP.FAN.STATUS.CRIT:"criticalUpper"} or {34569}={$DELL.SNMP.FAN.STATUS.CRIT:"nonRecoverableUpper"} or {34569}={$DELL.SNMP.FAN.STATUS.CRIT:"criticalLower"} or {34569}={$DELL.SNMP.FAN.STATUS.CRIT:"nonRecoverableLower"} or {34569}={$DELL.SNMP.FAN.STATUS.CRIT:"failed"}','Dell R750: Fan [{#FAN_DESCR}]: Critical state','','0','3','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','63aa1fdbf4b34dca9ce5e4de80b2b669',''), ('24253','{34570}={$DELL.SNMP.FAN.STATUS.WARN:"nonCriticalUpper"} or {34570}={$DELL.SNMP.FAN.STATUS.WARN:"nonCriticalLower"}','Dell R750: Fan [{#FAN_DESCR}]: Warning state','','0','2','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','2c72a8abf92e41ae9775651d2804dd15',''), ('24254','{34571}<>3','Dell R750: Memory [{#SNMPVALUE}]: Status is not OK','','0','3','MIB: IDRAC-MIB-SMIv2 Memory status is not OK.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','240b28c42d24459ca26ad2b3b1918d99',''), ('24255','{$DELL.SNMP.IFCONTROL:"{#NIC_FQDD}"}=1 and {34572}<>1 and {34572}<>{34573}','Dell R750: NIC [{#NIC_FQDD}/{#NIC_MAC}]: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is Down. 2. `{$DELL.SNMP.IFCONTROL:"{#NIC_FQDD}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is Down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for the "eternal off" interfaces.)',NULL,'0','2','1','{34572}=1 or {$DELL.SNMP.IFCONTROL:"{#NIC_FQDD}"}=0','0','','1','Current status: {ITEM.LASTVALUE1}','0','','153bad63b97d4d439b0ef110c37633d4',''), ('24256','{34574}<>3','Dell R750: NIC [{#NIC_FQDD}/{#NIC_MAC}]: Status is not OK','','0','3','MIB: IDRAC-MIB-SMIv2 Network interface status is not OK.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','cc9b9a8e8f1541a98a4be1b1f119dc7b',''), ('24257','{34575}<>{34576} and length({34577})>0','Dell R750: Physical disk [{#DISK_NAME}] has been replaced','','0','1','[{#DISK_NAME}] serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Dell R750: [{#DISK_NAME}] has been replaced (new serial number received)','e120cd2329ea4a659c66ccc4ac46747a',''), ('24258','{34578}={$DELL.SNMP.DISK.SMART.STATUS.FAIL:"replaceDrive"} or {34578}={$DELL.SNMP.DISK.SMART.STATUS.FAIL:"replaceDriveSSDWearOut"}','Dell R750: Physical disk [{#DISK_NAME}]: S.M.A.R.T. failed','','0','4','Disk probably requires replacement.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','8bbead4d14754d9b88bf8304176c7bff',''), ('24259','{34579}={$DELL.SNMP.DISK.STATUS.FAIL:"critical"} or {34579}={$DELL.SNMP.DISK.STATUS.FAIL:"nonRecoverable"}','Dell R750: Physical disk [{#DISK_NAME}]: Failed state','','0','4','Please check physical disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','5ba3472c708444d0b8ed1bfec7557baf',''), ('24260','{34580}={$DELL.SNMP.DISK.STATUS.WARN:"nonCritical"}','Dell R750: Physical disk [{#DISK_NAME}]: Warning state','','0','2','Please check physical disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','bb250a8fe19d4d319b9b1c6d10c04774',''), ('24261','{34581}={$DELL.SNMP.PSU.STATUS.CRIT:"critical"} or {34581}={$DELL.SNMP.PSU.STATUS.CRIT:"nonRecoverable"}','Dell R750: Power supply [{#PSU_DESCR}]: Critical state','','0','3','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9653ab9642d649aca556a0daee76209c',''), ('24262','{34582}={$DELL.SNMP.PSU.STATUS.WARN:"nonCritical"}','Dell R750: Power supply [{#PSU_DESCR}]: Warning state','','0','2','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e29d34bc586a456691c835149b17d270',''), ('24263','{34583}<>3','Dell R750: System battery [{#SNMPVALUE}]: Status is not OK','','0','3','MIB: IDRAC-MIB-SMIv2 System battery status is not OK.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','513785a5de094c57a5b20a7a4e1db042',''), ('24264','{34584}={$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"criticalUpper"} or {34584}={$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"nonRecoverableUpper"} or {34584}={$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"criticalLower"} or {34584}={$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"nonRecoverableLower"}','Dell R750: Probe [{#SENSOR_LOCALE}]: Critical status','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','5fbbf20cc4114bcea47591e925a1b92c',''), ('24265','{34585}<>{$DELL.SNMP.SENSOR.TEMP.STATUS.OK}','Dell R750: Probe [{#SENSOR_LOCALE}]: Not in optimal status','','0','1','Please check the device for faults.',NULL,'0','2','0','','0','','1','Current status: {ITEM.LASTVALUE1}','0','','f16c3c5630c7493cba96d973e71b56f3',''), ('24266','{34586}={$DELL.SNMP.SENSOR.TEMP.STATUS.WARN:"nonCriticalUpper"} or {34586}={$DELL.SNMP.SENSOR.TEMP.STATUS.WARN:"nonCriticalLower"}','Dell R750: Probe [{#SENSOR_LOCALE}]: Warning status','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','e6635984c5764d78bc494d067382b452',''), ('24267','{34587}={$DELL.SNMP.VDISK.STATUS.CRIT:"failed"}','Dell R750: Virtual disk [{#DISK_NAME}]: Failed state','','0','4','Please check the virtual disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','137578978eae4687902fb0d156b24599',''), ('24268','{34588}={$DELL.SNMP.VDISK.STATUS.WARN:"degraded"}','Dell R750: Virtual disk [{#DISK_NAME}]: Warning state','','0','2','Please check the virtual disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','64b3ede11df34c48b0d5576a3f4afed2',''), ('24269','{34589}<>3','Dell R750: Voltage probe [{#VPROBE_NAME}]: Status is not OK','','0','3','Please check the device''s voltage.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d363ebd012514cf691c18e38d6e7a9c9',''), ('24270','{34590}<>{34591} and length({34592})>0','Dell R820: Firmware has changed','','0','1','The firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','16d23330f3274801b7ad216aae251587',''), ('24271','{34593}<>{34594} and length({34595})>0','Dell R820: Device has been replaced','','0','1','The device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Dell R820: Device has been replaced (new serial number received)','0ace6d0242b647519ddc539e990e2b75',''), ('24272','{34596}=3','Dell R820: Server is in a critical state','','0','3','Please check the device for faults.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','df55250997fd474e8323ccf7438354f8',''), ('24273','{34597}=2','Dell R820: Server is in a warning state','','0','2','Please check the device for warnings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','f805d7fdab4842018b68acf3608fbfc4',''), ('24274','{34598}>={$DELL.HTTP.CPU.UTIL.WARN}','Dell R820: CPU utilization is high','','0','2','Current CPU utilization has exceeded `{$DELL.HTTP.CPU.UTIL.WARN}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R820: Current CPU utilization is high (util >= {$DELL.HTTP.CPU.UTIL.WARN}%)','1feff28d5dd74c52a3978645f7cecd62',''), ('24275','{34599}>={$DELL.HTTP.CPU.UTIL.HIGH}','Dell R820: CPU utilization is too high','','0','4','Current CPU utilization has exceeded `{$DELL.HTTP.CPU.UTIL.HIGH}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R820: Current CPU utilization is too high (util >= {$DELL.HTTP.CPU.UTIL.HIGH}%)','069d0f8e16a1494d99bd45b96040ef12',''), ('24276','{34600}>={$DELL.HTTP.IO.UTIL.WARN}','Dell R820: IO utilization is high','','0','2','Current IO utilization has exceeded `{$DELL.HTTP.IO.UTIL.WARN}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R820: Current IO utilization is high (util >= {$DELL.HTTP.IO.UTIL.WARN}%)','0646200e61a7469c95471af24ddba10c',''), ('24277','{34601}>={$DELL.HTTP.IO.UTIL.HIGH}','Dell R820: IO utilization is too high','','0','4','Current IO utilization has exceeded `{$DELL.HTTP.IO.UTIL.HIGH}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R820: Current IO utilization is too high (util >= {$DELL.HTTP.IO.UTIL.HIGH}%)','f99ead65893143c39f0ebe9c1038524d',''), ('24278','{34602}>={$DELL.HTTP.MEM.UTIL.WARN}','Dell R820: Memory utilization is high','','0','2','Current memory utilization has exceeded `{$DELL.HTTP.MEM.UTIL.WARN}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R820: Current memory utilization is high (util >= {$DELL.HTTP.MEM.UTIL.WARN}%)','cd8f662e308f4c0ea7382962a0889812',''), ('24279','{34603}>={$DELL.HTTP.MEM.UTIL.HIGH}','Dell R820: Memory utilization is too high','','0','4','Current memory utilization has exceeded `{$DELL.HTTP.MEM.UTIL.HIGH}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R820: Current memory utilization is too high (util >= {$DELL.HTTP.MEM.UTIL.HIGH}%)','606b2c5625d844bb8a5641e351ab30fc',''), ('24280','{34604}>={$DELL.HTTP.SYS.UTIL.WARN}','Dell R820: SYS utilization is high','','0','2','Current SYS utilization has exceeded `{$DELL.HTTP.SYS.UTIL.WARN}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R820: Current SYS utilization is high (util >= {$DELL.HTTP.SYS.UTIL.WARN}%)','71a95d655db24c13b7ed1e89adf7cb43',''), ('24281','{34605}>={$DELL.HTTP.SYS.UTIL.HIGH}','Dell R820: SYS utilization is too high','','0','4','Current SYS utilization has exceeded `{$DELL.HTTP.SYS.UTIL.HIGH}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R820: Current SYS utilization is too high (util >= {$DELL.HTTP.SYS.UTIL.HIGH}%)','c3bfbc51feb54025a32d0a7e43cf9a7c',''), ('24282','{34606}=0','Dell R820: Redfish API service is unavailable','','0','4','The service is unavailable or does not accept TCP connections.',NULL,'0','0','0','','0','','0','','0','','f60ee17e012e4db39d3b2a008cf86653',''), ('24283','{34607}=3','Dell R820: Controller [{#CNTLR_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c3af9f97c0434999a9bd3fa94c4d3d2f',''), ('24284','{34608}=2','Dell R820: Controller [{#CNTLR_NAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d94ba5b002f54ff0ad1e0e148f83991b',''), ('24285','{34609}=3','Dell R820: Battery [{#BATTERY_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d46b6bd00f5748a48c707d3982047b88',''), ('24286','{34610}=2','Dell R820: Battery [{#BATTERY_NAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','0a59fa4da096415db825894138df0025',''), ('24287','{34611}=3','Dell R820: Fan [{#SENSOR_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','84c7300a4b7b46f2996e053ee52694cd',''), ('24288','{34612}=2','Dell R820: Fan [{#SENSOR_NAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','1ee66cb1005b433d89e4c0154d7f0d57',''), ('24289','{34613}=3','Dell R820: Interface [{#IFNAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','8a86d396b76f46bc808d83448dd02cdb',''), ('24290','{34614}=2','Dell R820: Interface [{#IFNAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','2f68a365826948779303dccd91bf253a',''), ('24291','{$DELL.HTTP.IFCONTROL:"{#IFNAME}"}=1 and ({34615}=2 and {34616}<>{34617})','Dell R820: Interface [{#IFNAME}]: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is Down (2). 2. `{$DELL.HTTP.IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is Down (2). 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for the "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll because of `.diff`.',NULL,'0','2','1','{34615}=1 or {$DELL.HTTP.IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','29836643e02f466298f610b4a4a6596c',''), ('24292','{$DELL.HTTP.IFCONTROL:"{#IFNAME}"}=1 and ({34618}<2 and {34619}<>{34620})','Dell R820: Interface [{#IFNAME}]: Link status issue','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is Null (1) or Unknown (0). 2. `{$DELL.HTTP.IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is Null (1) or Unknown (0). 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for the "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll because of `.diff`.',NULL,'0','2','1','{34618}>=2 or {$DELL.HTTP.IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','ab33e9a5cd6448eca97119bc6bf1e361',''), ('24293','{34621}<>{34622} and length({34623})>0','Dell R820: Physical disk [{#DISK_NAME}] has been replaced','','0','1','[{#DISK_NAME}] serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Dell R820: [{#DISK_NAME}] has been replaced (new serial number received)','abc54d3b7d044d7cb58ae291723f7a50',''), ('24294','{34624}=3','Dell R820: Physical disk [{#DISK_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4fe34ae6c61a4b18b86a60d6ed309b40',''), ('24295','{34625}=2','Dell R820: Physical disk [{#DISK_NAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','fc7eea49256c4b748a22c36c66b00026',''), ('24296','{34626}=3','Dell R820: Power supply [{#SENSOR_NAME}]: Current sensor: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4f0515fb0dfd46c7b3685a7b3ecbb81d',''), ('24297','{34627}=2','Dell R820: Power supply [{#SENSOR_NAME}]: Current sensor: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','f6fa16c7a2c7455b9acde6539ffec62c',''), ('24298','{34628}=3','Dell R820: Power supply [{#SENSOR_NAME}]: Voltage sensor: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','1602fd8e39654e5fb06cdf958a47cc7c',''), ('24299','{34629}=2','Dell R820: Power supply [{#SENSOR_NAME}]: Voltage sensor: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d7a5a00dc1794dcfbd4dba41cc0ab9e2',''), ('24300','{34630}=3','Dell R820: Probe [{#SENSOR_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e7cb237f1bdd48dfb1d4dad059a192ab',''), ('24301','{34631}=2','Dell R820: Probe [{#SENSOR_NAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','8edc7d146dd3428ea41de5f4c6de3299',''), ('24302','{34632}<8','Dell R820: Virtual disk [{#DISK_NAME}]: RAID status not OK','','0','3','Please check the disk for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','0fb5bb942b2c499ca4a7a14a2f81866f',''), ('24303','{34633}=3','Dell R820: Virtual disk [{#DISK_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','f81719285f6f41a19603b1f29439a701',''), ('24304','{34634}=2','Dell R820: Virtual disk [{#DISK_NAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','fb620d2cfe0045ee83c57f9699bf25f3',''), ('24305','{34635}<>{34636} and length({34637})>0','Dell R820: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','bf0330b9e03c40b3a8aa4f799ab4d677',''), ('24306','{34638}<>{34639} and length({34640})>0','Dell R820: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Dell R820: Device has been replaced (new serial number received)','85fc427d143b4bd784fc851464e30c60',''), ('24307','{34641}>0','Dell R820: Memory amount has changed','','0','3','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','d7121d536e9e472e84ed8521c66dc63b',''), ('24308','{34642}<>{34643} and length({34644})>0','Dell R820: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Dell R820: System name has changed (new name: {ITEM.VALUE})','34d5734804fd4e28960e76d85b26230b',''), ('24309','{34645}={$DELL.SNMP.HEALTH.STATUS.DISASTER}','Dell R820: System is in unrecoverable state','','0','4','Please check the device for faults.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4109ee28d6d54d568965c21fc147791c',''), ('24310','{34646}={$DELL.SNMP.HEALTH.STATUS.CRIT}','Dell R820: System status is in critical state','','0','3','Please check the device for errors.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','126c5d57fecc4785b1f620c413c5dd12',''), ('24311','{34647}={$DELL.SNMP.HEALTH.STATUS.WARN}','Dell R820: System status is in warning state','','0','2','Please check the device for warnings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','da0537de8fdb4cff88cd19ec031cf562',''), ('24312','{34648}<>{34649} and length({34650})>0','Dell R820: Operating system description has changed','','0','1','Operating system description has changed. Possibly, the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','b6a26d0134054b75b88dbcfcd3dc8d3c',''), ('24313','{34651}=0','Dell R820: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','81826abcb02d45b089024c47892bc52f',''), ('24314','({34652}>0 and {34652}<10m) or ({34652}=0 and {34653}<10m)','Dell R820: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Dell R820: {HOST.NAME} has been restarted (uptime < 10m)','75be35da1fa9433081562ce9c02af907',''), ('24315','{34654}={$DELL.SNMP.DISK.ARRAY.STATUS.CRIT}','Dell R820: Controller [{#CNTLR_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','dfe26fe9fe2d4cbfa48ac3e65fee1b95',''), ('24316','{34655}={$DELL.SNMP.DISK.ARRAY.STATUS.FAIL}','Dell R820: Controller [{#CNTLR_NAME}]: Unrecoverable state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','2d8e50f7be4e49da9c3e014393c07333',''), ('24317','{34656}={$DELL.SNMP.DISK.ARRAY.STATUS.WARN}','Dell R820: Controller [{#CNTLR_NAME}]: Warning state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9e70c7098eb24c62926abc8a88d66643',''), ('24318','{34657}={$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT}','Dell R820: Battery [{#BATTERY_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','cdc3002046db4124ab5396a832a31d33',''), ('24319','{34658}<>{$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.OK}','Dell R820: Battery [{#BATTERY_NAME}]: Not in optimal state','','0','1','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','0e80311a3cf04eb3b2119f4accbe8378',''), ('24320','{34659}={$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.WARN}','Dell R820: Battery [{#BATTERY_NAME}]: Warning state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','aa9dc7776f844a6fb414f3f1ec6df936',''), ('24321','bitand({34660},128)=0','Dell R820: CPU [{#CPU_FQDD}]: Reading error','','0','3','MIB: IDRAC-MIB-SMIv2 CPU probe reading flag is not `processorPresent`.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4a936613afb742aba3008630245d1a4b',''), ('24322','{34661}<>3','Dell R820: CPU [{#CPU_FQDD}]: Status is not OK','','0','3','MIB: IDRAC-MIB-SMIv2 CPU status is not OK.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','75a71a22dd4e4e18a6361475e951138d',''), ('24323','{34662}={$DELL.SNMP.FAN.STATUS.CRIT:"criticalUpper"} or {34662}={$DELL.SNMP.FAN.STATUS.CRIT:"nonRecoverableUpper"} or {34662}={$DELL.SNMP.FAN.STATUS.CRIT:"criticalLower"} or {34662}={$DELL.SNMP.FAN.STATUS.CRIT:"nonRecoverableLower"} or {34662}={$DELL.SNMP.FAN.STATUS.CRIT:"failed"}','Dell R820: Fan [{#FAN_DESCR}]: Critical state','','0','3','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','48b46c8badaa486da4cbb4815bebd5d8',''), ('24324','{34663}={$DELL.SNMP.FAN.STATUS.WARN:"nonCriticalUpper"} or {34663}={$DELL.SNMP.FAN.STATUS.WARN:"nonCriticalLower"}','Dell R820: Fan [{#FAN_DESCR}]: Warning state','','0','2','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','ad5ee26a70f0461d90ff13f2b4cc022b',''), ('24325','{34664}<>3','Dell R820: Memory [{#SNMPVALUE}]: Status is not OK','','0','3','MIB: IDRAC-MIB-SMIv2 Memory status is not OK.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','6fdceebb428e4961bc38c0f089eb8c16',''), ('24326','{$DELL.SNMP.IFCONTROL:"{#NIC_FQDD}"}=1 and {34665}<>1 and {34665}<>{34666}','Dell R820: NIC [{#NIC_FQDD}/{#NIC_MAC}]: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is Down. 2. `{$DELL.SNMP.IFCONTROL:"{#NIC_FQDD}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is Down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for the "eternal off" interfaces.)',NULL,'0','2','1','{34665}=1 or {$DELL.SNMP.IFCONTROL:"{#NIC_FQDD}"}=0','0','','1','Current status: {ITEM.LASTVALUE1}','0','','df1c4ad1e9a1481db69cee6ca8651674',''), ('24327','{34667}<>3','Dell R820: NIC [{#NIC_FQDD}/{#NIC_MAC}]: Status is not OK','','0','3','MIB: IDRAC-MIB-SMIv2 Network interface status is not OK.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','386e1c9194904163b6e42030e4ae357b',''), ('24328','{34668}<>{34669} and length({34670})>0','Dell R820: Physical disk [{#DISK_NAME}] has been replaced','','0','1','[{#DISK_NAME}] serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Dell R820: [{#DISK_NAME}] has been replaced (new serial number received)','ef809a7388a141009f0e955d2fd74913',''), ('24329','{34671}={$DELL.SNMP.DISK.SMART.STATUS.FAIL:"replaceDrive"} or {34671}={$DELL.SNMP.DISK.SMART.STATUS.FAIL:"replaceDriveSSDWearOut"}','Dell R820: Physical disk [{#DISK_NAME}]: S.M.A.R.T. failed','','0','4','Disk probably requires replacement.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','ef5b3157e92f4cd98b0b0ce19777a54e',''), ('24330','{34672}={$DELL.SNMP.DISK.STATUS.FAIL:"critical"} or {34672}={$DELL.SNMP.DISK.STATUS.FAIL:"nonRecoverable"}','Dell R820: Physical disk [{#DISK_NAME}]: Failed state','','0','4','Please check physical disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','8f80413f2f694cd7a293b9345872c99a',''), ('24331','{34673}={$DELL.SNMP.DISK.STATUS.WARN:"nonCritical"}','Dell R820: Physical disk [{#DISK_NAME}]: Warning state','','0','2','Please check physical disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','07beb08e93ba48aaa57d989d947a430e',''), ('24332','{34674}={$DELL.SNMP.PSU.STATUS.CRIT:"critical"} or {34674}={$DELL.SNMP.PSU.STATUS.CRIT:"nonRecoverable"}','Dell R820: Power supply [{#PSU_DESCR}]: Critical state','','0','3','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','260129e48fe24ba8af0b628c303d23a3',''), ('24333','{34675}={$DELL.SNMP.PSU.STATUS.WARN:"nonCritical"}','Dell R820: Power supply [{#PSU_DESCR}]: Warning state','','0','2','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','97957af2d68048879527882edf8bfe7e',''), ('24334','{34676}<>3','Dell R820: System battery [{#SNMPVALUE}]: Status is not OK','','0','3','MIB: IDRAC-MIB-SMIv2 System battery status is not OK.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','77dfa584df524f6c9e5bfef9f44012f7',''), ('24335','{34677}={$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"criticalUpper"} or {34677}={$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"nonRecoverableUpper"} or {34677}={$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"criticalLower"} or {34677}={$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"nonRecoverableLower"}','Dell R820: Probe [{#SENSOR_LOCALE}]: Critical status','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','bcc2ecc5b254457288547aacf59176eb',''), ('24336','{34678}<>{$DELL.SNMP.SENSOR.TEMP.STATUS.OK}','Dell R820: Probe [{#SENSOR_LOCALE}]: Not in optimal status','','0','1','Please check the device for faults.',NULL,'0','2','0','','0','','1','Current status: {ITEM.LASTVALUE1}','0','','c53be3b3a911410896fcd2e94bed62e1',''), ('24337','{34679}={$DELL.SNMP.SENSOR.TEMP.STATUS.WARN:"nonCriticalUpper"} or {34679}={$DELL.SNMP.SENSOR.TEMP.STATUS.WARN:"nonCriticalLower"}','Dell R820: Probe [{#SENSOR_LOCALE}]: Warning status','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','365c6cbbee2440c2a62e4d5376058f0a',''), ('24338','{34680}={$DELL.SNMP.VDISK.STATUS.CRIT:"failed"}','Dell R820: Virtual disk [{#DISK_NAME}]: Failed state','','0','4','Please check the virtual disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','194a88954cb543d6aabf8c42839d22b7',''), ('24339','{34681}={$DELL.SNMP.VDISK.STATUS.WARN:"degraded"}','Dell R820: Virtual disk [{#DISK_NAME}]: Warning state','','0','2','Please check the virtual disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a7f94854f30b420d9aa00cbab12d8418',''), ('24340','{34682}<>3','Dell R820: Voltage probe [{#VPROBE_NAME}]: Status is not OK','','0','3','Please check the device''s voltage.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b2c7a3c6ccc74b24a1261171038ef059',''), ('24341','{34683}<>{34684} and length({34685})>0','Dell R840: Firmware has changed','','0','1','The firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','d69a362c4ddb41afac0233aa5cbfe7f2',''), ('24342','{34686}<>{34687} and length({34688})>0','Dell R840: Device has been replaced','','0','1','The device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Dell R840: Device has been replaced (new serial number received)','7d3b78a42b2840dcac53aaad6fe0fd63',''), ('24343','{34689}=3','Dell R840: Server is in a critical state','','0','3','Please check the device for faults.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','66eddf4db30c4f33a04fd1e7779a512b',''), ('24344','{34690}=2','Dell R840: Server is in a warning state','','0','2','Please check the device for warnings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d7bd59c648884a2db4e40518c80e9a7a',''), ('24345','{34691}>={$DELL.HTTP.CPU.UTIL.WARN}','Dell R840: CPU utilization is high','','0','2','Current CPU utilization has exceeded `{$DELL.HTTP.CPU.UTIL.WARN}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R840: Current CPU utilization is high (util >= {$DELL.HTTP.CPU.UTIL.WARN}%)','d043506ca50e46688f4e2b5d16fbb6b0',''), ('24346','{34692}>={$DELL.HTTP.CPU.UTIL.HIGH}','Dell R840: CPU utilization is too high','','0','4','Current CPU utilization has exceeded `{$DELL.HTTP.CPU.UTIL.HIGH}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R840: Current CPU utilization is too high (util >= {$DELL.HTTP.CPU.UTIL.HIGH}%)','7402c280344d4d1481dc4f9363b114cb',''), ('24347','{34693}>={$DELL.HTTP.IO.UTIL.WARN}','Dell R840: IO utilization is high','','0','2','Current IO utilization has exceeded `{$DELL.HTTP.IO.UTIL.WARN}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R840: Current IO utilization is high (util >= {$DELL.HTTP.IO.UTIL.WARN}%)','9d9b98ba6f0f4a09b0fe866ac75a45d9',''), ('24348','{34694}>={$DELL.HTTP.IO.UTIL.HIGH}','Dell R840: IO utilization is too high','','0','4','Current IO utilization has exceeded `{$DELL.HTTP.IO.UTIL.HIGH}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R840: Current IO utilization is too high (util >= {$DELL.HTTP.IO.UTIL.HIGH}%)','6458115ca51b4f82a00f9f70f081168b',''), ('24349','{34695}>={$DELL.HTTP.MEM.UTIL.WARN}','Dell R840: Memory utilization is high','','0','2','Current memory utilization has exceeded `{$DELL.HTTP.MEM.UTIL.WARN}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R840: Current memory utilization is high (util >= {$DELL.HTTP.MEM.UTIL.WARN}%)','108975d790e84418852a3918ca9c721c',''), ('24350','{34696}>={$DELL.HTTP.MEM.UTIL.HIGH}','Dell R840: Memory utilization is too high','','0','4','Current memory utilization has exceeded `{$DELL.HTTP.MEM.UTIL.HIGH}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R840: Current memory utilization is too high (util >= {$DELL.HTTP.MEM.UTIL.HIGH}%)','28dbce9e2c374351853bce93a4d45533',''), ('24351','{34697}>={$DELL.HTTP.SYS.UTIL.WARN}','Dell R840: SYS utilization is high','','0','2','Current SYS utilization has exceeded `{$DELL.HTTP.SYS.UTIL.WARN}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R840: Current SYS utilization is high (util >= {$DELL.HTTP.SYS.UTIL.WARN}%)','4914f2bb5add4d1e879bd98e723cba68',''), ('24352','{34698}>={$DELL.HTTP.SYS.UTIL.HIGH}','Dell R840: SYS utilization is too high','','0','4','Current SYS utilization has exceeded `{$DELL.HTTP.SYS.UTIL.HIGH}`%.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Dell R840: Current SYS utilization is too high (util >= {$DELL.HTTP.SYS.UTIL.HIGH}%)','32dc9d0ef93649aaa05b80c1681ebd00',''), ('24353','{34699}=0','Dell R840: Redfish API service is unavailable','','0','4','The service is unavailable or does not accept TCP connections.',NULL,'0','0','0','','0','','0','','0','','890f7b925b324a9c8ddcbf900248983f',''), ('24354','{34700}=3','Dell R840: Controller [{#CNTLR_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c1c8af8e702d403290edcf852df5108f',''), ('24355','{34701}=2','Dell R840: Controller [{#CNTLR_NAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e3630192525a446e8ca77b4e1238d41c',''), ('24356','{34702}=3','Dell R840: Battery [{#BATTERY_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','8a71516737c14f868b530da03f79ac68',''), ('24357','{34703}=2','Dell R840: Battery [{#BATTERY_NAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','07861b4282664fea9ce13fe8b85fb204',''), ('24358','{34704}=3','Dell R840: Fan [{#SENSOR_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','97142359820f4285a288114ff6c7fa4e',''), ('24359','{34705}=2','Dell R840: Fan [{#SENSOR_NAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e8c5cf1fa754464986958957889784bb',''), ('24360','{34706}=3','Dell R840: Interface [{#IFNAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','15d95dacf91644de9d83a272c55a8c6f',''), ('24361','{34707}=2','Dell R840: Interface [{#IFNAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7a743bd6cbee4cfd984e9d9ecb704e0e',''), ('24362','{$DELL.HTTP.IFCONTROL:"{#IFNAME}"}=1 and ({34708}=2 and {34709}<>{34710})','Dell R840: Interface [{#IFNAME}]: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is Down (2). 2. `{$DELL.HTTP.IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is Down (2). 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for the "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll because of `.diff`.',NULL,'0','2','1','{34708}=1 or {$DELL.HTTP.IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','c9d3b02a01b54c0288576e797a06f5fd',''), ('24363','{$DELL.HTTP.IFCONTROL:"{#IFNAME}"}=1 and ({34711}<2 and {34712}<>{34713})','Dell R840: Interface [{#IFNAME}]: Link status issue','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is Null (1) or Unknown (0). 2. `{$DELL.HTTP.IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is Null (1) or Unknown (0). 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for the "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll because of `.diff`.',NULL,'0','2','1','{34711}>=2 or {$DELL.HTTP.IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','2422d2d24fa5470f955e813c6f8ab6da',''), ('24364','{34714}<>{34715} and length({34716})>0','Dell R840: Physical disk [{#DISK_NAME}] has been replaced','','0','1','[{#DISK_NAME}] serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Dell R840: [{#DISK_NAME}] has been replaced (new serial number received)','87a9b87047764511b47498182501953b',''), ('24365','{34717}=3','Dell R840: Physical disk [{#DISK_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6d3b4cf6c62541f09506487a2dc78139',''), ('24366','{34718}=2','Dell R840: Physical disk [{#DISK_NAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','bba8d0a074cb4663bedf508ccf2b0c21',''), ('24367','{34719}=3','Dell R840: Power supply [{#SENSOR_NAME}]: Current sensor: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9afb0fbb617e4b35a9b79136313a3056',''), ('24368','{34720}=2','Dell R840: Power supply [{#SENSOR_NAME}]: Current sensor: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','414c6fab2ad64985b074e8e46581a4d3',''), ('24369','{34721}=3','Dell R840: Power supply [{#SENSOR_NAME}]: Voltage sensor: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','20dbfa3bfbd2411fb47d688b08d491cc',''), ('24370','{34722}=2','Dell R840: Power supply [{#SENSOR_NAME}]: Voltage sensor: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','06f2eac8d2244a5caf95e304c08b3073',''), ('24371','{34723}=3','Dell R840: Probe [{#SENSOR_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','3c617590456f495eaa7a1b11dee0ae3a',''), ('24372','{34724}=2','Dell R840: Probe [{#SENSOR_NAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','0b1fdc118b6a4983ae522cf9f1efb07b',''), ('24373','{34725}<8','Dell R840: Virtual disk [{#DISK_NAME}]: RAID status not OK','','0','3','Please check the disk for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','d7399429cfed4a58b89ea0818198b554',''), ('24374','{34726}=3','Dell R840: Virtual disk [{#DISK_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4072075d6a1c443da08c67795b799d40',''), ('24375','{34727}=2','Dell R840: Virtual disk [{#DISK_NAME}]: Warning state','','0','2','Please check the device for warnings.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','1ac52018cc744f1ba54b04095d0d882f',''), ('24376','{34728}<>{34729} and length({34730})>0','Dell R840: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','26f924a3a9e1470891cb0d9e9136ad9d',''), ('24377','{34731}<>{34732} and length({34733})>0','Dell R840: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Dell R840: Device has been replaced (new serial number received)','8d1e926bb5f640b4bf8c8342b5cf1d56',''), ('24378','{34734}>0','Dell R840: Memory amount has changed','','0','3','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','c44165ebea1346c78970c1f8d96da0be',''), ('24379','{34735}<>{34736} and length({34737})>0','Dell R840: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Dell R840: System name has changed (new name: {ITEM.VALUE})','673eda315d9b4dfcb15509fa01fffac2',''), ('24380','{34738}={$DELL.SNMP.HEALTH.STATUS.DISASTER}','Dell R840: System is in unrecoverable state','','0','4','Please check the device for faults.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c3e8fd8fd0d0406d8c2d9a2c45eeecee',''), ('24381','{34739}={$DELL.SNMP.HEALTH.STATUS.CRIT}','Dell R840: System status is in critical state','','0','3','Please check the device for errors.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4b32809fad0e468bb5f1bd09c7078def',''), ('24382','{34740}={$DELL.SNMP.HEALTH.STATUS.WARN}','Dell R840: System status is in warning state','','0','2','Please check the device for warnings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a75745134dad4592a23c43ca77975d95',''), ('24383','{34741}<>{34742} and length({34743})>0','Dell R840: Operating system description has changed','','0','1','Operating system description has changed. Possibly, the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','4096c84c616743bfbfca9707e43a3db3',''), ('24384','{34744}=0','Dell R840: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6f00331597c0443a93c182a86040cca4',''), ('24385','({34745}>0 and {34745}<10m) or ({34745}=0 and {34746}<10m)','Dell R840: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Dell R840: {HOST.NAME} has been restarted (uptime < 10m)','93a63868ca09460e89d3f40f72259828',''), ('24386','{34747}={$DELL.SNMP.DISK.ARRAY.STATUS.CRIT}','Dell R840: Controller [{#CNTLR_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','149de042930a444d82d1a8016efaea2c',''), ('24387','{34748}={$DELL.SNMP.DISK.ARRAY.STATUS.FAIL}','Dell R840: Controller [{#CNTLR_NAME}]: Unrecoverable state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','2fb2ddb749ed450da886420fdc5da394',''), ('24388','{34749}={$DELL.SNMP.DISK.ARRAY.STATUS.WARN}','Dell R840: Controller [{#CNTLR_NAME}]: Warning state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b8cbc4a8cc404bcc83bf24af56997432',''), ('24389','{34750}={$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT}','Dell R840: Battery [{#BATTERY_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','3624b95de99c42ac948402a4ca13a616',''), ('24390','{34751}<>{$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.OK}','Dell R840: Battery [{#BATTERY_NAME}]: Not in optimal state','','0','1','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','560fd4dcbf4a4ee8b49ad8880b767591',''), ('24391','{34752}={$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.WARN}','Dell R840: Battery [{#BATTERY_NAME}]: Warning state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','dc5c489632c54cf3a393cc78e50020db',''), ('24392','bitand({34753},128)=0','Dell R840: CPU [{#CPU_FQDD}]: Reading error','','0','3','MIB: IDRAC-MIB-SMIv2 CPU probe reading flag is not `processorPresent`.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','723b859cb5a94d339c7d0cba9ad2dc8d',''), ('24393','{34754}<>3','Dell R840: CPU [{#CPU_FQDD}]: Status is not OK','','0','3','MIB: IDRAC-MIB-SMIv2 CPU status is not OK.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','66665f584f9a43c192cf995a4ef89f09',''), ('24394','{34755}={$DELL.SNMP.FAN.STATUS.CRIT:"criticalUpper"} or {34755}={$DELL.SNMP.FAN.STATUS.CRIT:"nonRecoverableUpper"} or {34755}={$DELL.SNMP.FAN.STATUS.CRIT:"criticalLower"} or {34755}={$DELL.SNMP.FAN.STATUS.CRIT:"nonRecoverableLower"} or {34755}={$DELL.SNMP.FAN.STATUS.CRIT:"failed"}','Dell R840: Fan [{#FAN_DESCR}]: Critical state','','0','3','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4c81607b448445b7859af43eefda9c88',''), ('24395','{34756}={$DELL.SNMP.FAN.STATUS.WARN:"nonCriticalUpper"} or {34756}={$DELL.SNMP.FAN.STATUS.WARN:"nonCriticalLower"}','Dell R840: Fan [{#FAN_DESCR}]: Warning state','','0','2','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9c23542532ca4414948cfaf5fb7976d2',''), ('24396','{34757}<>3','Dell R840: Memory [{#SNMPVALUE}]: Status is not OK','','0','3','MIB: IDRAC-MIB-SMIv2 Memory status is not OK.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','9ef225ff91114afdba9ee315c09a53c8',''), ('24397','{$DELL.SNMP.IFCONTROL:"{#NIC_FQDD}"}=1 and {34758}<>1 and {34758}<>{34759}','Dell R840: NIC [{#NIC_FQDD}/{#NIC_MAC}]: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is Down. 2. `{$DELL.SNMP.IFCONTROL:"{#NIC_FQDD}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is Down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for the "eternal off" interfaces.)',NULL,'0','2','1','{34758}=1 or {$DELL.SNMP.IFCONTROL:"{#NIC_FQDD}"}=0','0','','1','Current status: {ITEM.LASTVALUE1}','0','','1fe39881ec004b87a41c1d8d44479981',''), ('24398','{34760}<>3','Dell R840: NIC [{#NIC_FQDD}/{#NIC_MAC}]: Status is not OK','','0','3','MIB: IDRAC-MIB-SMIv2 Network interface status is not OK.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','5196e2886545427dbafe649cb3cd651f',''), ('24399','{34761}<>{34762} and length({34763})>0','Dell R840: Physical disk [{#DISK_NAME}] has been replaced','','0','1','[{#DISK_NAME}] serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Dell R840: [{#DISK_NAME}] has been replaced (new serial number received)','7d2a1a115b304ca5823618360675d43d',''), ('24400','{34764}={$DELL.SNMP.DISK.SMART.STATUS.FAIL:"replaceDrive"} or {34764}={$DELL.SNMP.DISK.SMART.STATUS.FAIL:"replaceDriveSSDWearOut"}','Dell R840: Physical disk [{#DISK_NAME}]: S.M.A.R.T. failed','','0','4','Disk probably requires replacement.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','3a648ce450cd4236bcda1b48f6cb840f',''), ('24401','{34765}={$DELL.SNMP.DISK.STATUS.FAIL:"critical"} or {34765}={$DELL.SNMP.DISK.STATUS.FAIL:"nonRecoverable"}','Dell R840: Physical disk [{#DISK_NAME}]: Failed state','','0','4','Please check physical disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','426d1d50afb04253b92a5b99c9e96206',''), ('24402','{34766}={$DELL.SNMP.DISK.STATUS.WARN:"nonCritical"}','Dell R840: Physical disk [{#DISK_NAME}]: Warning state','','0','2','Please check physical disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','1d0a3f13c2fd4bc8be2c4305850c984c',''), ('24403','{34767}={$DELL.SNMP.PSU.STATUS.CRIT:"critical"} or {34767}={$DELL.SNMP.PSU.STATUS.CRIT:"nonRecoverable"}','Dell R840: Power supply [{#PSU_DESCR}]: Critical state','','0','3','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','519b5f4f8c6f4b6b92eafb910c1e81eb',''), ('24404','{34768}={$DELL.SNMP.PSU.STATUS.WARN:"nonCritical"}','Dell R840: Power supply [{#PSU_DESCR}]: Warning state','','0','2','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','76ab0ba99e424e43b686d11049b40258',''), ('24405','{34769}<>3','Dell R840: System battery [{#SNMPVALUE}]: Status is not OK','','0','3','MIB: IDRAC-MIB-SMIv2 System battery status is not OK.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','9cc273d913d04f58af291d888fd942ff',''), ('24406','{34770}={$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"criticalUpper"} or {34770}={$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"nonRecoverableUpper"} or {34770}={$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"criticalLower"} or {34770}={$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"nonRecoverableLower"}','Dell R840: Probe [{#SENSOR_LOCALE}]: Critical status','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','d1e14d635c0945298c5319380f8ac2f9',''), ('24407','{34771}<>{$DELL.SNMP.SENSOR.TEMP.STATUS.OK}','Dell R840: Probe [{#SENSOR_LOCALE}]: Not in optimal status','','0','1','Please check the device for faults.',NULL,'0','2','0','','0','','1','Current status: {ITEM.LASTVALUE1}','0','','567f74a71047410c9dcb8d70298160b1',''), ('24408','{34772}={$DELL.SNMP.SENSOR.TEMP.STATUS.WARN:"nonCriticalUpper"} or {34772}={$DELL.SNMP.SENSOR.TEMP.STATUS.WARN:"nonCriticalLower"}','Dell R840: Probe [{#SENSOR_LOCALE}]: Warning status','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','da4cdf74306947e7a6d394cca92c8c70',''), ('24409','{34773}={$DELL.SNMP.VDISK.STATUS.CRIT:"failed"}','Dell R840: Virtual disk [{#DISK_NAME}]: Failed state','','0','4','Please check the virtual disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','443b942a8ea64600a6b1bdda2bb75ec3',''), ('24410','{34774}={$DELL.SNMP.VDISK.STATUS.WARN:"degraded"}','Dell R840: Virtual disk [{#DISK_NAME}]: Warning state','','0','2','Please check the virtual disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','be479b50bc2c4320afff5eef0292bc88',''), ('24411','{34775}<>3','Dell R840: Voltage probe [{#VPROBE_NAME}]: Status is not OK','','0','3','Please check the device''s voltage.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','74ee37bcbbcc4122814912218889da61',''), ('24412','{34776}<>{34777} and length({34778})>0','Dell iDRAC: Firmware has changed','','0','1','Firmware version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','480535363667492389588bf2e66a69d4',''), ('24413','{34779}<>{34780} and length({34781})>0','Dell iDRAC: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Dell iDRAC: Device has been replaced (new serial number received)','a4ad832c9a174442913b4b08b38eee83',''), ('24414','{34782}>0','Dell iDRAC: Memory amount has changed','','0','3','',NULL,'0','0','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','05bd4537d8b84a028658a9abbe9ab292',''), ('24415','{34783}<>{34784} and length({34785})>0','Dell iDRAC: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Dell iDRAC: System name has changed (new name: {ITEM.VALUE})','d10fc658e7324deaa5318f69d6161a88',''), ('24416','{34786}={$DELL.SNMP.HEALTH.STATUS.DISASTER}','Dell iDRAC: System is in unrecoverable state','','0','4','Please check the device for faults.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','c602802bb6f549e383832bc98c0b55dd',''), ('24417','{34787}={$DELL.SNMP.HEALTH.STATUS.CRIT}','Dell iDRAC: System status is in critical state','','0','3','Please check the device for errors.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4e6d3cd166454403a9113fcb8aac9330',''), ('24418','{34788}={$DELL.SNMP.HEALTH.STATUS.WARN}','Dell iDRAC: System status is in warning state','','0','2','Please check the device for warnings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','2b7b4a8610d9417c87fb620f5a8dc32b',''), ('24419','{34789}<>{34790} and length({34791})>0','Dell iDRAC: Operating system description has changed','','0','1','Operating system description has changed. Possibly, the system has been updated or replaced. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','','b724627a28704440aedb965cbacd7e66',''), ('24420','{34792}=0','Dell iDRAC: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','cffe4af5209841119605e7a82e9a8429',''), ('24421','({34793}>0 and {34793}<10m) or ({34793}=0 and {34794}<10m)','Dell iDRAC: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Dell iDRAC: {HOST.NAME} has been restarted (uptime < 10m)','e9fc724fff1840a9931ef9d379475349',''), ('24422','{34795}={$DELL.SNMP.DISK.ARRAY.STATUS.CRIT}','Dell iDRAC: Controller [{#CNTLR_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','1b2ce157d2d04bffac1f429f8cee7113',''), ('24423','{34796}={$DELL.SNMP.DISK.ARRAY.STATUS.FAIL}','Dell iDRAC: Controller [{#CNTLR_NAME}]: Unrecoverable state','','0','4','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','5f1c0af2106049c585a5ae79ede870ce',''), ('24424','{34797}={$DELL.SNMP.DISK.ARRAY.STATUS.WARN}','Dell iDRAC: Controller [{#CNTLR_NAME}]: Warning state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9b8f849ac0554122a11902de6ec63515',''), ('24425','{34798}={$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT}','Dell iDRAC: Battery [{#BATTERY_NAME}]: Critical state','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','0bdd6d7963104559bff7cbac7dea3dc4',''), ('24426','{34799}<>{$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.OK}','Dell iDRAC: Battery [{#BATTERY_NAME}]: Not in optimal state','','0','1','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','18fb7e2f1aa64fb291e0071ddfac5958',''), ('24427','{34800}={$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.WARN}','Dell iDRAC: Battery [{#BATTERY_NAME}]: Warning state','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e81d32b4b1f84102912443a415cd5c0d',''), ('24428','bitand({34801},128)=0','Dell iDRAC: CPU [{#CPU_FQDD}]: Reading error','','0','3','MIB: IDRAC-MIB-SMIv2 CPU probe reading flag is not `processorPresent`.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','64b14a62acc34a619e576c3565d09e93',''), ('24429','{34802}<>3','Dell iDRAC: CPU [{#CPU_FQDD}]: Status is not OK','','0','3','MIB: IDRAC-MIB-SMIv2 CPU status is not OK.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','654449144f9849a0878facf4313e5200',''), ('24430','{34803}={$DELL.SNMP.FAN.STATUS.CRIT:"criticalUpper"} or {34803}={$DELL.SNMP.FAN.STATUS.CRIT:"nonRecoverableUpper"} or {34803}={$DELL.SNMP.FAN.STATUS.CRIT:"criticalLower"} or {34803}={$DELL.SNMP.FAN.STATUS.CRIT:"nonRecoverableLower"} or {34803}={$DELL.SNMP.FAN.STATUS.CRIT:"failed"}','Dell iDRAC: Fan [{#FAN_DESCR}]: Critical state','','0','3','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9cd6812fe03c4d509b796bf08478f405',''), ('24431','{34804}={$DELL.SNMP.FAN.STATUS.WARN:"nonCriticalUpper"} or {34804}={$DELL.SNMP.FAN.STATUS.WARN:"nonCriticalLower"}','Dell iDRAC: Fan [{#FAN_DESCR}]: Warning state','','0','2','Please check the fan unit.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','e145f2dea918462892c77bab3159a7af',''), ('24432','{34805}<>3','Dell iDRAC: Memory [{#SNMPVALUE}]: Status is not OK','','0','3','MIB: IDRAC-MIB-SMIv2 Memory status is not OK.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','3cfbe9b6a47748128c61432cb4384c31',''), ('24433','{$DELL.SNMP.IFCONTROL:"{#NIC_FQDD}"}=1 and {34806}<>1 and {34806}<>{34807}','Dell iDRAC: NIC [{#NIC_FQDD}/{#NIC_MAC}]: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is Down. 2. `{$DELL.SNMP.IFCONTROL:"{#NIC_FQDD}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is Down. 3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for the "eternal off" interfaces.)',NULL,'0','2','1','{34806}=1 or {$DELL.SNMP.IFCONTROL:"{#NIC_FQDD}"}=0','0','','1','Current status: {ITEM.LASTVALUE1}','0','','09621009751a47f793f57ec8a4e075e3',''), ('24434','{34808}<>3','Dell iDRAC: NIC [{#NIC_FQDD}/{#NIC_MAC}]: Status is not OK','','0','3','MIB: IDRAC-MIB-SMIv2 Network interface status is not OK.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','e543d15060b749a88514935398fd205a',''), ('24435','{34809}<>{34810} and length({34811})>0','Dell iDRAC: Physical disk [{#DISK_NAME}] has been replaced','','0','1','[{#DISK_NAME}] serial number has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','','0','Dell iDRAC: [{#DISK_NAME}] has been replaced (new serial number received)','3b20b5da243745058b3ea71f04708fe8',''), ('24436','{34812}={$DELL.SNMP.DISK.SMART.STATUS.FAIL:"replaceDrive"} or {34812}={$DELL.SNMP.DISK.SMART.STATUS.FAIL:"replaceDriveSSDWearOut"}','Dell iDRAC: Physical disk [{#DISK_NAME}]: S.M.A.R.T. failed','','0','4','Disk probably requires replacement.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','075f00325b144501b2aeb8c8cf60fae4',''), ('24437','{34813}={$DELL.SNMP.DISK.STATUS.FAIL:"critical"} or {34813}={$DELL.SNMP.DISK.STATUS.FAIL:"nonRecoverable"}','Dell iDRAC: Physical disk [{#DISK_NAME}]: Failed state','','0','4','Please check physical disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','bb11db3c94d243939ebed85f822fc463',''), ('24438','{34814}={$DELL.SNMP.DISK.STATUS.WARN:"nonCritical"}','Dell iDRAC: Physical disk [{#DISK_NAME}]: Warning state','','0','2','Please check physical disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','f015ba5526194b4cba950ff3122b5458',''), ('24439','{34815}={$DELL.SNMP.PSU.STATUS.CRIT:"critical"} or {34815}={$DELL.SNMP.PSU.STATUS.CRIT:"nonRecoverable"}','Dell iDRAC: Power supply [{#PSU_DESCR}]: Critical state','','0','3','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','3ac24f7315a54a5dbc23876535db3334',''), ('24440','{34816}={$DELL.SNMP.PSU.STATUS.WARN:"nonCritical"}','Dell iDRAC: Power supply [{#PSU_DESCR}]: Warning state','','0','2','Please check the power supply unit for errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','2ff316509959494a8a74c67b1009b5e3',''), ('24441','{34817}<>3','Dell iDRAC: System battery [{#SNMPVALUE}]: Status is not OK','','0','3','MIB: IDRAC-MIB-SMIv2 System battery status is not OK.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','c061658b004644bc9ebea5cd1f90ddc2',''), ('24442','{34818}={$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"criticalUpper"} or {34818}={$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"nonRecoverableUpper"} or {34818}={$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"criticalLower"} or {34818}={$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"nonRecoverableLower"}','Dell iDRAC: Probe [{#SENSOR_LOCALE}]: Critical status','','0','3','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','5af8a8356842440a9946db4aa09c603b',''), ('24443','{34819}<>{$DELL.SNMP.SENSOR.TEMP.STATUS.OK}','Dell iDRAC: Probe [{#SENSOR_LOCALE}]: Not in optimal status','','0','1','Please check the device for faults.',NULL,'0','2','0','','0','','1','Current status: {ITEM.LASTVALUE1}','0','','46ef64bfb9cc416f823383dca2948a74',''), ('24444','{34820}={$DELL.SNMP.SENSOR.TEMP.STATUS.WARN:"nonCriticalUpper"} or {34820}={$DELL.SNMP.SENSOR.TEMP.STATUS.WARN:"nonCriticalLower"}','Dell iDRAC: Probe [{#SENSOR_LOCALE}]: Warning status','','0','2','Please check the device for faults.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','bddace35e48f4be4a01d4d7ba0a3dcc5',''), ('24445','{34821}={$DELL.SNMP.VDISK.STATUS.CRIT:"failed"}','Dell iDRAC: Virtual disk [{#DISK_NAME}]: Failed state','','0','4','Please check the virtual disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','12b1413a437d411ea9221e1b9713b379',''), ('24446','{34822}={$DELL.SNMP.VDISK.STATUS.WARN:"degraded"}','Dell iDRAC: Virtual disk [{#DISK_NAME}]: Warning state','','0','2','Please check the virtual disk for warnings or errors.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','40e17334c54447b2b8a6e8e0322d55e3',''), ('24447','{34823}<>3','Dell iDRAC: Voltage probe [{#VPROBE_NAME}]: Status is not OK','','0','3','Please check the device''s voltage.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4dbe99da982944209139ee4cd9b12b4c',''), ('24448','{34825}=1','Zabbix proxy: Wrong template assigned','','0','5','Check that the template has been selected correctly.',NULL,'0','0','0','','0','','1','','0','Zabbix proxy: Zabbix proxy template is assigned to Zabbix server','7c54b686ce754537b7f379ec1af4e630',''), ('24449','{34826}=1','Zabbix proxy: Wrong template assigned','','0','5','Check that the template has been selected correctly.',NULL,'0','0','0','','0','','1','','0','Zabbix proxy: Zabbix proxy template is assigned to Zabbix server','714e140b408d4b219fbee840e800b841',''), ('24450','{34827}>{$ZABBIX.PROXY.UTIL.MAX:"agent poller"}','Zabbix proxy: Utilization of agent poller processes is high','','0','3','Indicates potential performance issues with the agent poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34827}<{$ZABBIX.PROXY.UTIL.MIN:"agent poller"}','0','','0','','0','Zabbix proxy: Utilization of agent poller processes over {$ZABBIX.PROXY.UTIL.MAX:"agent poller"}%','2bc7af614177457381d7dac14073b167',''), ('24451','{34828}>{$ZABBIX.PROXY.UTIL.MAX:"availability manager"}','Zabbix proxy: Utilization of availability manager processes is high','','0','3','Indicates potential performance issues with the availability manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34828}<{$ZABBIX.PROXY.UTIL.MIN:"availability manager"}','0','','0','','0','Zabbix proxy: Utilization of availability manager processes over {$ZABBIX.PROXY.UTIL.MAX:"availability manager"}%','b93bf2d4f9094eefa462588f4121f339',''), ('24452','{34829}>{$ZABBIX.PROXY.UTIL.MAX:"browser poller"}','Zabbix proxy: Utilization of browser poller processes is high','','0','3','Indicates potential performance issues with the browser poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34829}<{$ZABBIX.PROXY.UTIL.MIN:"browser poller"}','0','','0','','0','Zabbix proxy: Utilization of browser poller processes over {$ZABBIX.PROXY.UTIL.MAX:"browser poller"}%','edc46311472f4d26a08989a1cc5fc4ad',''), ('24453','{34830}>{$ZABBIX.PROXY.UTIL.MAX:"configuration syncer"}','Zabbix proxy: Utilization of configuration syncer processes is high','','0','3','Indicates potential performance issues with the configuration syncer, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34830}<{$ZABBIX.PROXY.UTIL.MIN:"configuration syncer"}','0','','0','','0','Zabbix proxy: Utilization of configuration syncer processes over {$ZABBIX.PROXY.UTIL.MAX:"configuration syncer"}%','fdbac62718014e8ba5b9663ecd2c87cf',''), ('24454','{34831}>{$ZABBIX.PROXY.UTIL.MAX:"data sender"}','Zabbix proxy: Utilization of data sender processes is high','','0','3','Indicates potential performance issues with the data sender, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34831}<{$ZABBIX.PROXY.UTIL.MIN:"data sender"}','0','','0','','0','Zabbix proxy: Utilization of data sender processes over {$ZABBIX.PROXY.UTIL.MAX:"data sender"}%','638a37f1268d4545bd037b88eb0f46b5',''), ('24455','{34832}>{$ZABBIX.PROXY.UTIL.MAX:"discovery manager"}','Zabbix proxy: Utilization of discovery manager processes is high','','0','3','Indicates potential performance issues with the discovery manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34832}<{$ZABBIX.PROXY.UTIL.MIN:"discovery manager"}','0','','0','','0','Zabbix proxy: Utilization of discovery manager processes over {$ZABBIX.PROXY.UTIL.MAX:"discovery manager"}%','e4a34e7e45964602a329c04bedf0be11',''), ('24456','{34833}>{$ZABBIX.PROXY.UTIL.MAX:"discovery worker"}','Zabbix proxy: Utilization of discovery worker processes is high','','0','3','Indicates potential performance issues with the discovery worker, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34833}<{$ZABBIX.PROXY.UTIL.MIN:"discovery worker"}','0','','0','','0','Zabbix proxy: Utilization of discovery worker processes over {$ZABBIX.PROXY.UTIL.MAX:"discovery worker"}%','afd226d5a01c444bbe7ec7cc8e890385',''), ('24457','{34834}>{$ZABBIX.PROXY.UTIL.MAX:"history syncer"}','Zabbix proxy: Utilization of history syncer processes is high','','0','3','Indicates potential performance issues with the history syncer, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34834}<{$ZABBIX.PROXY.UTIL.MIN:"history syncer"}','0','','0','','0','Zabbix proxy: Utilization of history syncer processes over {$ZABBIX.PROXY.UTIL.MAX:"history syncer"}%','edc13a63baa94f898c5b90cffd568725',''), ('24458','{34835}>{$ZABBIX.PROXY.UTIL.MAX:"housekeeper"}','Zabbix proxy: Utilization of housekeeper processes is high','','0','3','Indicates potential performance issues with the housekeeper, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34835}<{$ZABBIX.PROXY.UTIL.MIN:"housekeeper"}','0','','0','','0','Zabbix proxy: Utilization of housekeeper processes over {$ZABBIX.PROXY.UTIL.MAX:"housekeeper"}%','6db57127f7b74e3293be2942442665a5',''), ('24459','{34836}>{$ZABBIX.PROXY.UTIL.MAX:"http agent poller"}','Zabbix proxy: Utilization of http agent poller processes is high','','0','3','Indicates potential performance issues with the http agent poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34836}<{$ZABBIX.PROXY.UTIL.MIN:"http agent poller"}','0','','0','','0','Zabbix proxy: Utilization of http agent poller processes over {$ZABBIX.PROXY.UTIL.MAX:"http agent poller"}%','2e968911946b437da198218d0c9c53d7',''), ('24460','{34837}>{$ZABBIX.PROXY.UTIL.MAX:"http poller"}','Zabbix proxy: Utilization of http poller processes is high','','0','3','Indicates potential performance issues with the http poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34837}<{$ZABBIX.PROXY.UTIL.MIN:"http poller"}','0','','0','','0','Zabbix proxy: Utilization of http poller processes over {$ZABBIX.PROXY.UTIL.MAX:"http poller"}%','a968792590324fd88c887619859b6aaa',''), ('24461','{34838}>{$ZABBIX.PROXY.UTIL.MAX:"icmp pinger"}','Zabbix proxy: Utilization of icmp pinger processes is high','','0','3','Indicates potential performance issues with the icmp pinger, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34838}<{$ZABBIX.PROXY.UTIL.MIN:"icmp pinger"}','0','','0','','0','Zabbix proxy: Utilization of icmp pinger processes over {$ZABBIX.PROXY.UTIL.MAX:"icmp pinger"}%','4accc46c86674786a09962d2ba865fad',''), ('24462','{34839}>{$ZABBIX.PROXY.UTIL.MAX:"internal poller"}','Zabbix proxy: Utilization of internal poller processes is high','','0','3','Indicates potential performance issues with the internal poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34839}<{$ZABBIX.PROXY.UTIL.MIN:"internal poller"}','0','','0','','0','Zabbix proxy: Utilization of internal poller processes over {$ZABBIX.PROXY.UTIL.MAX:"internal poller"}%','eb18c6abd7244d1b9addd5c0c411eef4',''), ('24463','{34840}>{$ZABBIX.PROXY.UTIL.MAX:"ipmi manager"}','Zabbix proxy: Utilization of ipmi manager processes is high','','0','3','Indicates potential performance issues with the ipmi manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34840}<{$ZABBIX.PROXY.UTIL.MIN:"ipmi manager"}','0','','0','','0','Zabbix proxy: Utilization of ipmi manager processes over {$ZABBIX.PROXY.UTIL.MAX:"ipmi manager"}%','8b7ba23a9571419985996aaa5545c093',''), ('24464','{34841}>{$ZABBIX.PROXY.UTIL.MAX:"ipmi poller"}','Zabbix proxy: Utilization of ipmi poller processes is high','','0','3','Indicates potential performance issues with the ipmi poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34841}<{$ZABBIX.PROXY.UTIL.MIN:"ipmi poller"}','0','','0','','0','Zabbix proxy: Utilization of ipmi poller processes over {$ZABBIX.PROXY.UTIL.MAX:"ipmi poller"}%','f108f03ff3174bf0be5bab5f8dd3edd9',''), ('24465','{34842}>{$ZABBIX.PROXY.UTIL.MAX:"java poller"}','Zabbix proxy: Utilization of java poller processes is high','','0','3','Indicates potential performance issues with the java poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34842}<{$ZABBIX.PROXY.UTIL.MIN:"java poller"}','0','','0','','0','Zabbix proxy: Utilization of java poller processes over {$ZABBIX.PROXY.UTIL.MAX:"java poller"}%','6e21610d53534d17a46e82ba77d94839',''), ('24466','{34843}>{$ZABBIX.PROXY.UTIL.MAX:"ODBC poller"}','Zabbix proxy: Utilization of ODBC poller processes is high','','0','3','Indicates potential performance issues with the ODBC poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34843}<{$ZABBIX.PROXY.UTIL.MIN:"ODBC poller"}','0','','0','','0','Zabbix proxy: Utilization of ODBC poller processes over {$ZABBIX.PROXY.UTIL.MAX:"ODBC poller"}%','f792aff9eafc495e82717b11e15c61eb',''), ('24467','{34844}>{$ZABBIX.PROXY.UTIL.MAX:"poller"}','Zabbix proxy: Utilization of poller processes is high','','0','3','Indicates potential performance issues with the poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34844}<{$ZABBIX.PROXY.UTIL.MIN:"poller"}','0','','0','','0','Zabbix proxy: Utilization of poller processes over {$ZABBIX.PROXY.UTIL.MAX:"poller"}%','b0e501fd7ee44bfb8e4b76b8ed3f7bcf',''), ('24468','{34845}>{$ZABBIX.PROXY.UTIL.MAX:"preprocessing manager"}','Zabbix proxy: Utilization of preprocessing manager processes is high','','0','3','Indicates potential performance issues with the preprocessing manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34845}<{$ZABBIX.PROXY.UTIL.MIN:"preprocessing manager"}','0','','0','','0','Zabbix proxy: Utilization of preprocessing manager processes over {$ZABBIX.PROXY.UTIL.MAX:"preprocessing manager"}%','16d99a3deb574313ac1c9d3514b2174e',''), ('24469','{34846}>{$ZABBIX.PROXY.UTIL.MAX:"preprocessing worker"}','Zabbix proxy: Utilization of preprocessing worker processes is high','','0','3','Indicates potential performance issues with the preprocessing worker, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34846}<{$ZABBIX.PROXY.UTIL.MIN:"preprocessing worker"}','0','','0','','0','Zabbix proxy: Utilization of preprocessing worker processes over {$ZABBIX.PROXY.UTIL.MAX:"preprocessing worker"}%','44b4036596a648249665be9bdaf99001',''), ('24470','{34847}>{$ZABBIX.PROXY.UTIL.MAX:"self-monitoring"}','Zabbix proxy: Utilization of self-monitoring processes is high','','0','3','Indicates potential performance issues with the self-monitoring, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34847}<{$ZABBIX.PROXY.UTIL.MIN:"self-monitoring"}','0','','0','','0','Zabbix proxy: Utilization of self-monitoring processes over {$ZABBIX.PROXY.UTIL.MAX:"self-monitoring"}%','bf4a1a0d24da4929afd8ef77cc8e0aee',''), ('24471','{34848}>{$ZABBIX.PROXY.UTIL.MAX:"snmp poller"}','Zabbix proxy: Utilization of snmp poller processes is high','','0','3','Indicates potential performance issues with the snmp poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34848}<{$ZABBIX.PROXY.UTIL.MIN:"snmp poller"}','0','','0','','0','Zabbix proxy: Utilization of snmp poller processes over {$ZABBIX.PROXY.UTIL.MAX:"snmp poller"}%','3fab2971d5eb46d8953bc34af262eef7',''), ('24472','{34849}>{$ZABBIX.PROXY.UTIL.MAX:"snmp trapper"}','Zabbix proxy: Utilization of snmp trapper processes is high','','0','3','Indicates potential performance issues with the snmp trapper, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34849}<{$ZABBIX.PROXY.UTIL.MIN:"snmp trapper"}','0','','0','','0','Zabbix proxy: Utilization of snmp trapper processes over {$ZABBIX.PROXY.UTIL.MAX:"snmp trapper"}%','c67d6cf7bb414ba5bf5e295323ceca3e',''), ('24473','{34850}>{$ZABBIX.PROXY.UTIL.MAX:"task manager"}','Zabbix proxy: Utilization of task manager processes is high','','0','3','Indicates potential performance issues with the task manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34850}<{$ZABBIX.PROXY.UTIL.MIN:"task manager"}','0','','0','','0','Zabbix proxy: Utilization of task manager processes over {$ZABBIX.PROXY.UTIL.MAX:"task manager"}%','fbba9326edf24178b4ef43de4c545fcc',''), ('24474','{34851}>{$ZABBIX.PROXY.UTIL.MAX:"trapper"}','Zabbix proxy: Utilization of trapper processes is high','','0','3','Indicates potential performance issues with the trapper, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34851}<{$ZABBIX.PROXY.UTIL.MIN:"trapper"}','0','','0','','0','Zabbix proxy: Utilization of trapper processes over {$ZABBIX.PROXY.UTIL.MAX:"trapper"}%','7ab1c8f1b661480da56f12d7e9df525d',''), ('24475','{34852}>{$ZABBIX.PROXY.UTIL.MAX:"unreachable poller"}','Zabbix proxy: Utilization of unreachable poller processes is high','','0','3','Indicates potential performance issues with the unreachable poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34852}<{$ZABBIX.PROXY.UTIL.MIN:"unreachable poller"}','0','','0','','0','Zabbix proxy: Utilization of unreachable poller processes over {$ZABBIX.PROXY.UTIL.MAX:"unreachable poller"}%','0dd4fe44dd7c45a589b95af7410e44e1',''), ('24476','{34853}>{$ZABBIX.PROXY.UTIL.MAX:"vmware collector"}','Zabbix proxy: Utilization of vmware collector processes is high','','0','3','Indicates potential performance issues with the vmware collector, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34853}<{$ZABBIX.PROXY.UTIL.MIN:"vmware collector"}','0','','0','','0','Zabbix proxy: Utilization of vmware collector processes over {$ZABBIX.PROXY.UTIL.MAX:"vmware collector"}%','e4c5051b01aa4c3bbad9237e7c593308',''), ('24477','{34854}>{$ZABBIX.PROXY.UTIL.MAX:"proxy buffer"}','Zabbix proxy: Excessive proxy memory buffer usage','','0','3','Consider increasing ProxyMemoryBufferSize in the zabbix_proxy.conf configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix proxy: More than {$ZABBIX.PROXY.UTIL.MAX:"proxy buffer"}% used in the proxy memory buffer','c784f7f231c34461a63d0a5cb2ce4a45',''), ('24478','{34855}=1','Zabbix proxy: Wrong template assigned','','0','5','Check that the template has been selected correctly.',NULL,'0','0','0','','0','','1','','0','Zabbix proxy: Zabbix proxy template is assigned to Zabbix server','315fc2009a02420cbe059ac199171d6d',''), ('24479','{34856}>{$ZABBIX.PROXY.UTIL.MAX:"configuration cache"}','Zabbix proxy: Excessive configuration cache usage','','0','3','Consider increasing `CacheSize` in the `zabbix_proxy.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix proxy: More than {$ZABBIX.PROXY.UTIL.MAX:"configuration cache"}% used in the configuration cache','523f092b9f8b41f9b652eeb7fdafe40c',''), ('24480','{34857}=1','Zabbix proxy: Failed to fetch stats data','','0','2','Zabbix has not received statistics data for `{$ZABBIX.PROXY.NODATA_TIMEOUT}`.',NULL,'0','0','0','','0','','0','','0','Zabbix proxy: Failed to fetch stats data (or no data for {$ZABBIX.PROXY.NODATA_TIMEOUT})','013a980007284540964d72be2de27a0d',''), ('24481','{34858}<10m','Zabbix proxy: {HOST.NAME} has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Zabbix proxy: {HOST.NAME} has been restarted (uptime < 10m)','187bc575a0a14bbc84ad86225ddbcb61',''), ('24482','{34859}<>{34860} and length({34861})>0','Zabbix proxy: Version has changed','','0','1','Zabbix proxy version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Zabbix proxy: Version has changed (new version: {ITEM.VALUE})','0a95e8c307074bc4ba9f55d9f172ff0a',''), ('24483','{34862}>{$ZABBIX.PROXY.UTIL.MAX:"vmware cache"}','Zabbix proxy: Excessive vmware cache usage','','0','3','Consider increasing `VMwareCacheSize` in the `zabbix_proxy.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix proxy: More than {$ZABBIX.PROXY.UTIL.MAX:"vmware cache"}% used in the vmware cache','04c4161b994046fe9d657da0a5a1c3db',''), ('24484','{34863}>{$ZABBIX.PROXY.UTIL.MAX:"history cache"}','Zabbix proxy: Excessive history cache usage','','0','3','Consider increasing `HistoryCacheSize` in the `zabbix_proxy.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix proxy: More than {$ZABBIX.PROXY.UTIL.MAX:"history cache"}% used in the history cache','042eaacf59f74383b29c0a8130ae4b16',''), ('24485','{34864}>{$ZABBIX.PROXY.UTIL.MAX:"index cache"}','Zabbix proxy: Excessive history index cache usage','','0','3','Consider increasing `HistoryIndexCacheSize` in the `zabbix_proxy.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix proxy: More than {$ZABBIX.PROXY.UTIL.MAX:"index cache"}% used in the history index cache','fa7be5e77ff04e728db5ee0369708dde',''), ('24486','{34865}>100','Zabbix proxy: More than 100 items have been missing data for over 10 minutes','','0','2','Indicates potential issues with network connectivity, agent failures, or unresponsive monitored resources that require attention.',NULL,'0','0','0','','0','','0','','0','','73460db4082c4feaac254b6ed790045a',''), ('24487','{34866}>{$ZABBIX.PROXY.UTIL.MAX:"agent poller"}','Zabbix proxy: Utilization of agent poller processes is high','','0','3','Indicates potential performance issues with the agent poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34866}<{$ZABBIX.PROXY.UTIL.MIN:"agent poller"}','0','','0','','0','Zabbix proxy: Utilization of agent poller processes over {$ZABBIX.PROXY.UTIL.MAX:"agent poller"}%','781f2b17fc384acebdcbb008a3f24bc1',''), ('24488','{34867}>{$ZABBIX.PROXY.UTIL.MAX:"availability manager"}','Zabbix proxy: Utilization of availability manager processes is high','','0','3','Indicates potential performance issues with the availability manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34867}<{$ZABBIX.PROXY.UTIL.MIN:"availability manager"}','0','','0','','0','Zabbix proxy: Utilization of availability manager processes over {$ZABBIX.PROXY.UTIL.MAX:"availability manager"}%','60c4627e26e24f5583b13ac51c652bb6',''), ('24489','{34868}>{$ZABBIX.PROXY.UTIL.MAX:"browser poller"}','Zabbix proxy: Utilization of browser poller processes is high','','0','3','Indicates potential performance issues with the browser poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34868}<{$ZABBIX.PROXY.UTIL.MIN:"browser poller"}','0','','0','','0','Zabbix proxy: Utilization of browser poller processes over {$ZABBIX.PROXY.UTIL.MAX:"browser poller"}%','9ceb9623900f4fd097c96be779088a1a',''), ('24490','{34869}>{$ZABBIX.PROXY.UTIL.MAX:"configuration syncer"}','Zabbix proxy: Utilization of configuration syncer processes is high','','0','3','Indicates potential performance issues with the configuration syncer, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34869}<{$ZABBIX.PROXY.UTIL.MIN:"configuration syncer"}','0','','0','','0','Zabbix proxy: Utilization of configuration syncer processes over {$ZABBIX.PROXY.UTIL.MAX:"configuration syncer"}%','4fc6ad715b6d4eea89c47e9a80cc1bd2',''), ('24491','{34870}>{$ZABBIX.PROXY.UTIL.MAX:"data sender"}','Zabbix proxy: Utilization of data sender processes is high','','0','3','Indicates potential performance issues with the data sender, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34870}<{$ZABBIX.PROXY.UTIL.MIN:"data sender"}','0','','0','','0','Zabbix proxy: Utilization of data sender processes over {$ZABBIX.PROXY.UTIL.MAX:"data sender"}%','53a13b3f8ae746a5aa698c48beeb782f',''), ('24492','{34871}>{$ZABBIX.PROXY.UTIL.MAX:"discovery manager"}','Zabbix proxy: Utilization of discovery manager processes is high','','0','3','Indicates potential performance issues with the discovery manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34871}<{$ZABBIX.PROXY.UTIL.MIN:"discovery manager"}','0','','0','','0','Zabbix proxy: Utilization of discovery manager processes over {$ZABBIX.PROXY.UTIL.MAX:"discovery manager"}%','ac5583b00510498ea9f0cf75835dc8c9',''), ('24493','{34872}>{$ZABBIX.PROXY.UTIL.MAX:"discovery worker"}','Zabbix proxy: Utilization of discovery worker processes is high','','0','3','Indicates potential performance issues with the discovery worker, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34872}<{$ZABBIX.PROXY.UTIL.MIN:"discovery worker"}','0','','0','','0','Zabbix proxy: Utilization of discovery worker processes over {$ZABBIX.PROXY.UTIL.MAX:"discovery worker"}%','2368cc40dca345dc81b4e06f6c652f5a',''), ('24494','{34873}>{$ZABBIX.PROXY.UTIL.MAX:"history syncer"}','Zabbix proxy: Utilization of history syncer processes is high','','0','3','Indicates potential performance issues with the history syncer, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34873}<{$ZABBIX.PROXY.UTIL.MIN:"history syncer"}','0','','0','','0','Zabbix proxy: Utilization of history syncer processes over {$ZABBIX.PROXY.UTIL.MAX:"history syncer"}%','f56becd9ed784dcf9f97fa703269b46e',''), ('24495','{34874}>{$ZABBIX.PROXY.UTIL.MAX:"housekeeper"}','Zabbix proxy: Utilization of housekeeper processes is high','','0','3','Indicates potential performance issues with the housekeeper, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34874}<{$ZABBIX.PROXY.UTIL.MIN:"housekeeper"}','0','','0','','0','Zabbix proxy: Utilization of housekeeper processes over {$ZABBIX.PROXY.UTIL.MAX:"housekeeper"}%','f81451219df048ce92a35b9673548358',''), ('24496','{34875}>{$ZABBIX.PROXY.UTIL.MAX:"http agent poller"}','Zabbix proxy: Utilization of http agent poller processes is high','','0','3','Indicates potential performance issues with the http agent poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34875}<{$ZABBIX.PROXY.UTIL.MIN:"http agent poller"}','0','','0','','0','Zabbix proxy: Utilization of http agent poller processes over {$ZABBIX.PROXY.UTIL.MAX:"http agent poller"}%','b0bd0d9770fc4276be324b97150c691c',''), ('24497','{34876}>{$ZABBIX.PROXY.UTIL.MAX:"http poller"}','Zabbix proxy: Utilization of http poller processes is high','','0','3','Indicates potential performance issues with the http poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34876}<{$ZABBIX.PROXY.UTIL.MIN:"http poller"}','0','','0','','0','Zabbix proxy: Utilization of http poller processes over {$ZABBIX.PROXY.UTIL.MAX:"http poller"}%','43b21d9aff8441cba1c0db97e7b193e0',''), ('24498','{34877}>{$ZABBIX.PROXY.UTIL.MAX:"icmp pinger"}','Zabbix proxy: Utilization of icmp pinger processes is high','','0','3','Indicates potential performance issues with the icmp pinger, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34877}<{$ZABBIX.PROXY.UTIL.MIN:"icmp pinger"}','0','','0','','0','Zabbix proxy: Utilization of icmp pinger processes over {$ZABBIX.PROXY.UTIL.MAX:"icmp pinger"}%','417d421e076342e5b38ab7a925dc7ee6',''), ('24499','{34878}>{$ZABBIX.PROXY.UTIL.MAX:"internal poller"}','Zabbix proxy: Utilization of internal poller processes is high','','0','3','Indicates potential performance issues with the internal poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34878}<{$ZABBIX.PROXY.UTIL.MIN:"internal poller"}','0','','0','','0','Zabbix proxy: Utilization of internal poller processes over {$ZABBIX.PROXY.UTIL.MAX:"internal poller"}%','60dacadac60641789e7f8eb2a6441498',''), ('24500','{34879}>{$ZABBIX.PROXY.UTIL.MAX:"ipmi manager"}','Zabbix proxy: Utilization of ipmi manager processes is high','','0','3','Indicates potential performance issues with the ipmi manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34879}<{$ZABBIX.PROXY.UTIL.MIN:"ipmi manager"}','0','','0','','0','Zabbix proxy: Utilization of ipmi manager processes over {$ZABBIX.PROXY.UTIL.MAX:"ipmi manager"}%','773bcda0a0d44428bd66f619df41a94d',''), ('24501','{34880}>{$ZABBIX.PROXY.UTIL.MAX:"ipmi poller"}','Zabbix proxy: Utilization of ipmi poller processes is high','','0','3','Indicates potential performance issues with the ipmi poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34880}<{$ZABBIX.PROXY.UTIL.MIN:"ipmi poller"}','0','','0','','0','Zabbix proxy: Utilization of ipmi poller processes over {$ZABBIX.PROXY.UTIL.MAX:"ipmi poller"}%','520d3b11a75c42cd911ec3e8639c7325',''), ('24502','{34881}>{$ZABBIX.PROXY.UTIL.MAX:"java poller"}','Zabbix proxy: Utilization of java poller processes is high','','0','3','Indicates potential performance issues with the java poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34881}<{$ZABBIX.PROXY.UTIL.MIN:"java poller"}','0','','0','','0','Zabbix proxy: Utilization of java poller processes over {$ZABBIX.PROXY.UTIL.MAX:"java poller"}%','48c63db097c94a52a13cfea9d53a5d6e',''), ('24503','{34882}>{$ZABBIX.PROXY.UTIL.MAX:"ODBC poller"}','Zabbix proxy: Utilization of ODBC poller processes is high','','0','3','Indicates potential performance issues with the ODBC poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34882}<{$ZABBIX.PROXY.UTIL.MIN:"ODBC poller"}','0','','0','','0','Zabbix proxy: Utilization of ODBC poller processes over {$ZABBIX.PROXY.UTIL.MAX:"ODBC poller"}%','d3d1b01114b14de1b5a432fb574713f1',''), ('24504','{34883}>{$ZABBIX.PROXY.UTIL.MAX:"poller"}','Zabbix proxy: Utilization of poller processes is high','','0','3','Indicates potential performance issues with the poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34883}<{$ZABBIX.PROXY.UTIL.MIN:"poller"}','0','','0','','0','Zabbix proxy: Utilization of poller processes over {$ZABBIX.PROXY.UTIL.MAX:"poller"}%','1d7cee57cd28400790ea8fea6901d0a9',''), ('24505','{34884}>{$ZABBIX.PROXY.UTIL.MAX:"preprocessing manager"}','Zabbix proxy: Utilization of preprocessing manager processes is high','','0','3','Indicates potential performance issues with the preprocessing manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34884}<{$ZABBIX.PROXY.UTIL.MIN:"preprocessing manager"}','0','','0','','0','Zabbix proxy: Utilization of preprocessing manager processes over {$ZABBIX.PROXY.UTIL.MAX:"preprocessing manager"}%','a3692dec8449492b8c1c0fc0ffc38ba7',''), ('24506','{34885}>{$ZABBIX.PROXY.UTIL.MAX:"preprocessing worker"}','Zabbix proxy: Utilization of preprocessing worker processes is high','','0','3','Indicates potential performance issues with the preprocessing worker, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34885}<{$ZABBIX.PROXY.UTIL.MIN:"preprocessing worker"}','0','','0','','0','Zabbix proxy: Utilization of preprocessing worker processes over {$ZABBIX.PROXY.UTIL.MAX:"preprocessing worker"}%','cbdfa6eab86547a9bcc15308cb24ecec',''), ('24507','{34886}>{$ZABBIX.PROXY.UTIL.MAX:"self-monitoring"}','Zabbix proxy: Utilization of self-monitoring processes is high','','0','3','Indicates potential performance issues with the self-monitoring, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34886}<{$ZABBIX.PROXY.UTIL.MIN:"self-monitoring"}','0','','0','','0','Zabbix proxy: Utilization of self-monitoring processes over {$ZABBIX.PROXY.UTIL.MAX:"self-monitoring"}%','8c731df045474ff78961106f51943a2d',''), ('24508','{34887}>{$ZABBIX.PROXY.UTIL.MAX:"snmp poller"}','Zabbix proxy: Utilization of snmp poller processes is high','','0','3','Indicates potential performance issues with the snmp poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34887}<{$ZABBIX.PROXY.UTIL.MIN:"snmp poller"}','0','','0','','0','Zabbix proxy: Utilization of snmp poller processes over {$ZABBIX.PROXY.UTIL.MAX:"snmp poller"}%','37f76a103450441c91dc980877685fdf',''), ('24509','{34888}>{$ZABBIX.PROXY.UTIL.MAX:"snmp trapper"}','Zabbix proxy: Utilization of snmp trapper processes is high','','0','3','Indicates potential performance issues with the snmp trapper, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34888}<{$ZABBIX.PROXY.UTIL.MIN:"snmp trapper"}','0','','0','','0','Zabbix proxy: Utilization of snmp trapper processes over {$ZABBIX.PROXY.UTIL.MAX:"snmp trapper"}%','125f0015cbab441f8fb585273b1be59d',''), ('24510','{34889}>{$ZABBIX.PROXY.UTIL.MAX:"task manager"}','Zabbix proxy: Utilization of task manager processes is high','','0','3','Indicates potential performance issues with the task manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34889}<{$ZABBIX.PROXY.UTIL.MIN:"task manager"}','0','','0','','0','Zabbix proxy: Utilization of task manager processes over {$ZABBIX.PROXY.UTIL.MAX:"task manager"}%','639ce0f06fa4454784458426fedce080',''), ('24511','{34890}>{$ZABBIX.PROXY.UTIL.MAX:"trapper"}','Zabbix proxy: Utilization of trapper processes is high','','0','3','Indicates potential performance issues with the trapper, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34890}<{$ZABBIX.PROXY.UTIL.MIN:"trapper"}','0','','0','','0','Zabbix proxy: Utilization of trapper processes over {$ZABBIX.PROXY.UTIL.MAX:"trapper"}%','dd4185cd7ff646ccaee1d7c36eba58b4',''), ('24512','{34891}>{$ZABBIX.PROXY.UTIL.MAX:"unreachable poller"}','Zabbix proxy: Utilization of unreachable poller processes is high','','0','3','Indicates potential performance issues with the unreachable poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34891}<{$ZABBIX.PROXY.UTIL.MIN:"unreachable poller"}','0','','0','','0','Zabbix proxy: Utilization of unreachable poller processes over {$ZABBIX.PROXY.UTIL.MAX:"unreachable poller"}%','353e0603f5454b92806bc27442e4675a',''), ('24513','{34892}>{$ZABBIX.PROXY.UTIL.MAX:"vmware collector"}','Zabbix proxy: Utilization of vmware collector processes is high','','0','3','Indicates potential performance issues with the vmware collector, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34892}<{$ZABBIX.PROXY.UTIL.MIN:"vmware collector"}','0','','0','','0','Zabbix proxy: Utilization of vmware collector processes over {$ZABBIX.PROXY.UTIL.MAX:"vmware collector"}%','19212b4c55a5412a8358486ccec73867',''), ('24514','{34893}>{$ZABBIX.PROXY.UTIL.MAX:"proxy buffer"}','Zabbix proxy: Excessive proxy memory buffer usage','','0','3','Consider increasing ProxyMemoryBufferSize in the zabbix_proxy.conf configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix proxy: More than {$ZABBIX.PROXY.UTIL.MAX:"proxy buffer"}% used in the proxy memory buffer','58582605c4644fffaabca8e403ae7529',''), ('24515','{34894}=1','Zabbix proxy: Wrong template assigned','','0','5','Check that the template has been selected correctly.',NULL,'0','0','0','','0','','1','','0','Zabbix proxy: Zabbix proxy template is assigned to Zabbix server','90d305b0cf7246c19aedc74b4c566148',''), ('24516','{34895}>{$ZABBIX.PROXY.UTIL.MAX:"configuration cache"}','Zabbix proxy: Excessive configuration cache usage','','0','3','Consider increasing `CacheSize` in the `zabbix_proxy.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix proxy: More than {$ZABBIX.PROXY.UTIL.MAX:"configuration cache"}% used in the configuration cache','280ce16d51a04a2c98574da85639df8a',''), ('24517','{34896}=1','Zabbix proxy: Failed to fetch stats data','','0','2','Zabbix has not received statistics data for `{$ZABBIX.PROXY.NODATA_TIMEOUT}`.',NULL,'0','0','0','','0','','0','','0','Zabbix proxy: Failed to fetch stats data (or no data for {$ZABBIX.PROXY.NODATA_TIMEOUT})','78ee655520bb495097142ba6b4ac30ab',''), ('24518','{34897}<10m','Zabbix proxy: {HOST.NAME} has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Zabbix proxy: {HOST.NAME} has been restarted (uptime < 10m)','f31a41c673c541e89fa0d4792506316a',''), ('24519','{34898}<>{34899} and length({34900})>0','Zabbix proxy: Version has changed','','0','1','Zabbix proxy version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Zabbix proxy: Version has changed (new version: {ITEM.VALUE})','2e0d640f83e14fd1940d195bbb133ed8',''), ('24520','{34901}>{$ZABBIX.PROXY.UTIL.MAX:"vmware cache"}','Zabbix proxy: Excessive vmware cache usage','','0','3','Consider increasing `VMwareCacheSize` in the `zabbix_proxy.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix proxy: More than {$ZABBIX.PROXY.UTIL.MAX:"vmware cache"}% used in the vmware cache','a0ed7fac6d7c4b1ea5e66e476dfdc9d1',''), ('24521','{34902}>{$ZABBIX.PROXY.UTIL.MAX:"history cache"}','Zabbix proxy: Excessive history cache usage','','0','3','Consider increasing `HistoryCacheSize` in the `zabbix_proxy.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix proxy: More than {$ZABBIX.PROXY.UTIL.MAX:"history cache"}% used in the history cache','eba5460898154090bb57db9b6f80aefb',''), ('24522','{34903}>{$ZABBIX.PROXY.UTIL.MAX:"index cache"}','Zabbix proxy: Excessive history index cache usage','','0','3','Consider increasing `HistoryIndexCacheSize` in the `zabbix_proxy.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix proxy: More than {$ZABBIX.PROXY.UTIL.MAX:"index cache"}% used in the history index cache','0ed6244bfe5f405face0941e87c9233a',''), ('24523','{34904}>100','Zabbix proxy: More than 100 items have been missing data for over 10 minutes','','0','2','Indicates potential issues with network connectivity, agent failures, or unresponsive monitored resources that require attention.',NULL,'0','0','0','','0','','0','','0','','1bdab54e366e423aa9320baeec90f57b',''), ('24524','{34905}=0','Zabbix server: Wrong template assigned','','0','5','Check that the template has been selected correctly.',NULL,'0','0','0','','0','','1','','0','Zabbix server: Zabbix server template is assigned to Zabbix proxy','49e7153a96e74b60aad73cd91a792098',''), ('24525','{34906}=0','Zabbix server: Wrong template assigned','','0','5','Check that the template has been selected correctly.',NULL,'0','0','0','','0','','1','','0','Zabbix server: Zabbix server template is assigned to Zabbix proxy','3b0969d950ac4f9e878d0f7d72d83af2',''), ('24526','{34907}>{$ZABBIX.SERVER.UTIL.MAX:"agent poller"}','Zabbix server: Utilization of agent poller processes is high','','0','3','Indicates potential performance issues with the agent poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34907}<{$ZABBIX.SERVER.UTIL.MIN:"agent poller"}','0','','0','','0','Zabbix server: Utilization of agent poller processes over {$ZABBIX.SERVER.UTIL.MAX:"agent poller"}%','6a89e07170e14a9c95154a64fb0248fc',''), ('24527','{34908}>{$ZABBIX.SERVER.UTIL.MAX:"alerter"}','Zabbix server: Utilization of alerter processes is high','','0','3','Indicates potential performance issues with the alerter, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34908}<{$ZABBIX.SERVER.UTIL.MIN:"alerter"}','0','','0','','0','Zabbix server: Utilization of alerter processes over {$ZABBIX.SERVER.UTIL.MAX:"alerter"}%','a1f644d8d3e34b658c57ef671422038d',''), ('24528','{34909}>{$ZABBIX.SERVER.UTIL.MAX:"alert manager"}','Zabbix server: Utilization of alert manager processes is high','','0','3','Indicates potential performance issues with the alert manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34909}<{$ZABBIX.SERVER.UTIL.MIN:"alert manager"}','0','','0','','0','Zabbix server: Utilization of alert manager processes over {$ZABBIX.SERVER.UTIL.MAX:"alert manager"}%','0a9ebdc127bf42ccbbeeeffe02b57095',''), ('24529','{34910}>{$ZABBIX.SERVER.UTIL.MAX:"alert syncer"}','Zabbix server: Utilization of alert syncer processes is high','','0','3','Indicates potential performance issues with the alert syncer, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34910}<{$ZABBIX.SERVER.UTIL.MIN:"alert syncer"}','0','','0','','0','Zabbix server: Utilization of alert syncer processes over {$ZABBIX.SERVER.UTIL.MAX:"alert syncer"}%','bc7ed4d8ea2a455d813ff1146a010a6f',''), ('24530','{34911}>{$ZABBIX.SERVER.UTIL.MAX:"availability manager"}','Zabbix server: Utilization of availability manager processes is high','','0','3','Indicates potential performance issues with the availability manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34911}<{$ZABBIX.SERVER.UTIL.MIN:"availability manager"}','0','','0','','0','Zabbix server: Utilization of availability manager processes over {$ZABBIX.SERVER.UTIL.MAX:"availability manager"}%','956b94177f544386bb4add58df433ca6',''), ('24531','{34912}>{$ZABBIX.SERVER.UTIL.MAX:"browser poller"}','Zabbix server: Utilization of browser poller processes is high','','0','3','Indicates potential performance issues with the browser poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34912}<{$ZABBIX.SERVER.UTIL.MIN:"browser poller"}','0','','0','','0','Zabbix server: Utilization of browser poller processes over {$ZABBIX.SERVER.UTIL.MAX:"browser poller"}%','8df9cc8b0e1f462cae4898c6a54020fc',''), ('24532','{34913}>{$ZABBIX.SERVER.UTIL.MAX:"configuration syncer"}','Zabbix server: Utilization of configuration syncer processes is high','','0','3','Indicates potential performance issues with the configuration syncer, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34913}<{$ZABBIX.SERVER.UTIL.MIN:"configuration syncer"}','0','','0','','0','Zabbix server: Utilization of configuration syncer processes over {$ZABBIX.SERVER.UTIL.MAX:"configuration syncer"}%','cb4f8f5ad7e24fbcbc64ab8006643124',''), ('24533','{34914}>{$ZABBIX.SERVER.UTIL.MAX:"configuration syncer worker"}','Zabbix server: Utilization of configuration syncer worker processes is high','','0','3','Indicates potential performance issues with the configuration syncer worker, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34914}<{$ZABBIX.SERVER.UTIL.MIN:"configuration syncer worker"}','0','','0','','0','Zabbix server: Utilization of configuration syncer worker processes over {$ZABBIX.SERVER.UTIL.MAX:"configuration syncer worker"}%','5e4ee9a96013447ebe40b745c105fd03',''), ('24534','{34915}>{$ZABBIX.SERVER.UTIL.MAX:"connector manager"}','Zabbix server: Utilization of connector manager processes is high','','0','3','Indicates potential performance issues with the connector manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34915}<{$ZABBIX.SERVER.UTIL.MIN:"connector manager"}','0','','0','','0','Zabbix server: Utilization of connector manager processes over {$ZABBIX.SERVER.UTIL.MAX:"connector manager"}%','eb8957d071b74a80bf3279444473cddb',''), ('24535','{34916}>{$ZABBIX.SERVER.UTIL.MAX:"connector worker"}','Zabbix server: Utilization of connector worker processes is high','','0','3','Indicates potential performance issues with the connector worker, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34916}<{$ZABBIX.SERVER.UTIL.MIN:"connector worker"}','0','','0','','0','Zabbix server: Utilization of connector worker processes over {$ZABBIX.SERVER.UTIL.MAX:"connector worker"}%','79881c61531b4446a8f3107127ce36ed',''), ('24536','{34917}>{$ZABBIX.SERVER.UTIL.MAX:"discovery manager"}','Zabbix server: Utilization of discovery manager processes is high','','0','3','Indicates potential performance issues with the discovery manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34917}<{$ZABBIX.SERVER.UTIL.MIN:"discovery manager"}','0','','0','','0','Zabbix server: Utilization of discovery manager processes over {$ZABBIX.SERVER.UTIL.MAX:"discovery manager"}%','622a1cf7158c407789313819e74310cd',''), ('24537','{34918}>{$ZABBIX.SERVER.UTIL.MAX:"discovery worker"}','Zabbix server: Utilization of discovery worker processes is high','','0','3','Indicates potential performance issues with the discovery worker, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34918}<{$ZABBIX.SERVER.UTIL.MIN:"discovery worker"}','0','','0','','0','Zabbix server: Utilization of discovery worker processes over {$ZABBIX.SERVER.UTIL.MAX:"discovery worker"}%','38b49ca5610244b782c66e068727264f',''), ('24538','{34919}>{$ZABBIX.SERVER.UTIL.MAX:"escalator"}','Zabbix server: Utilization of escalator processes is high','','0','3','Indicates potential performance issues with the escalator, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34919}<{$ZABBIX.SERVER.UTIL.MIN:"escalator"}','0','','0','','0','Zabbix server: Utilization of escalator processes over {$ZABBIX.SERVER.UTIL.MAX:"escalator"}%','21eb9b4f3b204a348738b74752c9927d',''), ('24539','{34920}>{$ZABBIX.SERVER.UTIL.MAX:"history poller"}','Zabbix server: Utilization of history poller processes is high','','0','3','Indicates potential performance issues with the history poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34920}<{$ZABBIX.SERVER.UTIL.MIN:"history poller"}','0','','0','','0','Zabbix server: Utilization of history poller processes over {$ZABBIX.SERVER.UTIL.MAX:"history poller"}%','a1886afb06824e1091220fbe5193461f',''), ('24540','{34921}>{$ZABBIX.SERVER.UTIL.MAX:"history syncer"}','Zabbix server: Utilization of history syncer processes is high','','0','3','Indicates potential performance issues with the history syncer, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34921}<{$ZABBIX.SERVER.UTIL.MIN:"history syncer"}','0','','0','','0','Zabbix server: Utilization of history syncer processes over {$ZABBIX.SERVER.UTIL.MAX:"history syncer"}%','f738b0289c324e78989436bb92493720',''), ('24541','{34922}>{$ZABBIX.SERVER.UTIL.MAX:"housekeeper"}','Zabbix server: Utilization of housekeeper processes is high','','0','3','Indicates potential performance issues with the housekeeper, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34922}<{$ZABBIX.SERVER.UTIL.MIN:"housekeeper"}','0','','0','','0','Zabbix server: Utilization of housekeeper processes over {$ZABBIX.SERVER.UTIL.MAX:"housekeeper"}%','96ceff1b787e41b0a02a2d2221f57f6e',''), ('24542','{34923}>{$ZABBIX.SERVER.UTIL.MAX:"http agent poller"}','Zabbix server: Utilization of http agent poller processes is high','','0','3','Indicates potential performance issues with the http agent poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34923}<{$ZABBIX.SERVER.UTIL.MIN:"http agent poller"}','0','','0','','0','Zabbix server: Utilization of http agent poller processes over {$ZABBIX.SERVER.UTIL.MAX:"http agent poller"}%','e4d7add47be94419824f333fcc48880f',''), ('24543','{34924}>{$ZABBIX.SERVER.UTIL.MAX:"http poller"}','Zabbix server: Utilization of http poller processes is high','','0','3','Indicates potential performance issues with the http poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34924}<{$ZABBIX.SERVER.UTIL.MIN:"http poller"}','0','','0','','0','Zabbix server: Utilization of http poller processes over {$ZABBIX.SERVER.UTIL.MAX:"http poller"}%','f254894eb0fb491989e803af02e707d2',''), ('24544','{34925}>{$ZABBIX.SERVER.UTIL.MAX:"icmp pinger"}','Zabbix server: Utilization of icmp pinger processes is high','','0','3','Indicates potential performance issues with the icmp pinger, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34925}<{$ZABBIX.SERVER.UTIL.MIN:"icmp pinger"}','0','','0','','0','Zabbix server: Utilization of icmp pinger processes over {$ZABBIX.SERVER.UTIL.MAX:"icmp pinger"}%','b1ebb6969696476da6a90c6f0d8de5eb',''), ('24545','{34926}>{$ZABBIX.SERVER.UTIL.MAX:"internal poller"}','Zabbix server: Utilization of internal poller processes is high','','0','3','Indicates potential performance issues with the internal poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34926}<{$ZABBIX.SERVER.UTIL.MIN:"internal poller"}','0','','0','','0','Zabbix server: Utilization of internal poller processes over {$ZABBIX.SERVER.UTIL.MAX:"internal poller"}%','99fad58c6c5244f58d71e4d45840f355',''), ('24546','{34927}>{$ZABBIX.SERVER.UTIL.MAX:"ipmi manager"}','Zabbix server: Utilization of ipmi manager processes is high','','0','3','Indicates potential performance issues with the ipmi manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34927}<{$ZABBIX.SERVER.UTIL.MIN:"ipmi manager"}','0','','0','','0','Zabbix server: Utilization of ipmi manager processes over {$ZABBIX.SERVER.UTIL.MAX:"ipmi manager"}%','19f8d398245a4fa993467451571eb06a',''), ('24547','{34928}>{$ZABBIX.SERVER.UTIL.MAX:"ipmi poller"}','Zabbix server: Utilization of ipmi poller processes is high','','0','3','Indicates potential performance issues with the ipmi poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34928}<{$ZABBIX.SERVER.UTIL.MIN:"ipmi poller"}','0','','0','','0','Zabbix server: Utilization of ipmi poller processes over {$ZABBIX.SERVER.UTIL.MAX:"ipmi poller"}%','eb82596e6a25422fbbb2da9910616557',''), ('24548','{34929}>{$ZABBIX.SERVER.UTIL.MAX:"java poller"}','Zabbix server: Utilization of java poller processes is high','','0','3','Indicates potential performance issues with the java poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34929}<{$ZABBIX.SERVER.UTIL.MIN:"java poller"}','0','','0','','0','Zabbix server: Utilization of java poller processes over {$ZABBIX.SERVER.UTIL.MAX:"java poller"}%','21114bc6d4be4ab393141ddc34eaec5f',''), ('24549','{34930}>{$ZABBIX.SERVER.UTIL.MAX:"LLD manager"}','Zabbix server: Utilization of LLD manager processes is high','','0','3','Indicates potential performance issues with the LLD manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34930}<{$ZABBIX.SERVER.UTIL.MIN:"LLD manager"}','0','','0','','0','Zabbix server: Utilization of LLD manager processes over {$ZABBIX.SERVER.UTIL.MAX:"LLD manager"}%','8b1e71a2be054aa9913b0d0ab980d7a3',''), ('24550','{34931}>{$ZABBIX.SERVER.UTIL.MAX:"LLD worker"}','Zabbix server: Utilization of LLD worker processes is high','','0','3','Indicates potential performance issues with the LLD worker, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34931}<{$ZABBIX.SERVER.UTIL.MIN:"LLD worker"}','0','','0','','0','Zabbix server: Utilization of LLD worker processes over {$ZABBIX.SERVER.UTIL.MAX:"LLD worker"}%','26ab68bbf6a54277aeaa51f41b413da6',''), ('24551','{34932}>{$ZABBIX.SERVER.UTIL.MAX:"ODBC poller"}','Zabbix server: Utilization of ODBC poller processes is high','','0','3','Indicates potential performance issues with the ODBC poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34932}<{$ZABBIX.SERVER.UTIL.MIN:"ODBC poller"}','0','','0','','0','Zabbix server: Utilization of ODBC poller processes over {$ZABBIX.SERVER.UTIL.MAX:"ODBC poller"}%','f089d9f2c2f844f5acd69be08a8e048a',''), ('24552','{34933}>{$ZABBIX.SERVER.UTIL.MAX:"poller"}','Zabbix server: Utilization of poller processes is high','','0','3','Indicates potential performance issues with the poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34933}<{$ZABBIX.SERVER.UTIL.MIN:"poller"}','0','','0','','0','Zabbix server: Utilization of poller processes over {$ZABBIX.SERVER.UTIL.MAX:"poller"}%','7d20639bec7a456685f7fce4bf70fb2e',''), ('24553','{34934}>{$ZABBIX.SERVER.UTIL.MAX:"preprocessing manager"}','Zabbix server: Utilization of preprocessing manager processes is high','','0','3','Indicates potential performance issues with the preprocessing manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34934}<{$ZABBIX.SERVER.UTIL.MIN:"preprocessing manager"}','0','','0','','0','Zabbix server: Utilization of preprocessing manager processes over {$ZABBIX.SERVER.UTIL.MAX:"preprocessing manager"}%','b7e3dc93732f49d49d2a2f28251a9927',''), ('24554','{34935}>{$ZABBIX.SERVER.UTIL.MAX:"preprocessing worker"}','Zabbix server: Utilization of preprocessing worker processes is high','','0','3','Indicates potential performance issues with the preprocessing worker, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34935}<{$ZABBIX.SERVER.UTIL.MIN:"preprocessing worker"}','0','','0','','0','Zabbix server: Utilization of preprocessing worker processes over {$ZABBIX.SERVER.UTIL.MAX:"preprocessing worker"}%','87573b80d7124db284f1be3137ac3243',''), ('24555','{34936}>{$ZABBIX.SERVER.UTIL.MAX:"proxy group manager"}','Zabbix server: Utilization of proxy group manager processes is high','','0','3','Indicates potential performance issues with the proxy group manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34936}<{$ZABBIX.SERVER.UTIL.MIN:"proxy group manager"}','0','','0','','0','Zabbix server: Utilization of proxy group manager processes over {$ZABBIX.SERVER.UTIL.MAX:"proxy group manager"}%','528a1cc095c3485682af50d837b05912',''), ('24556','{34937}>{$ZABBIX.SERVER.UTIL.MAX:"proxy poller"}','Zabbix server: Utilization of proxy poller processes is high','','0','3','Indicates potential performance issues with the proxy poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34937}<{$ZABBIX.SERVER.UTIL.MIN:"proxy poller"}','0','','0','','0','Zabbix server: Utilization of proxy poller processes over {$ZABBIX.SERVER.UTIL.MAX:"proxy poller"}%','76b0b9bc6e38423681ab359159f9ca32',''), ('24557','{34938}>{$ZABBIX.SERVER.UTIL.MAX:"report manager"}','Zabbix server: Utilization of report manager processes is high','','0','3','Indicates potential performance issues with the report manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34938}<{$ZABBIX.SERVER.UTIL.MIN:"report manager"}','0','','0','','0','Zabbix server: Utilization of report manager processes over {$ZABBIX.SERVER.UTIL.MAX:"report manager"}%','e4c4974ca3c540d9935bf2bf6a1a9f2f',''), ('24558','{34939}>{$ZABBIX.SERVER.UTIL.MAX:"report writer"}','Zabbix server: Utilization of report writer processes is high','','0','3','Indicates potential performance issues with the report writer, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34939}<{$ZABBIX.SERVER.UTIL.MIN:"report writer"}','0','','0','','0','Zabbix server: Utilization of report writer processes over {$ZABBIX.SERVER.UTIL.MAX:"report writer"}%','196346fa19dc43b6989c403da4bae618',''), ('24559','{34940}>{$ZABBIX.SERVER.UTIL.MAX:"self-monitoring"}','Zabbix server: Utilization of self-monitoring processes is high','','0','3','Indicates potential performance issues with the self-monitoring, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34940}<{$ZABBIX.SERVER.UTIL.MIN:"self-monitoring"}','0','','0','','0','Zabbix server: Utilization of self-monitoring processes over {$ZABBIX.SERVER.UTIL.MAX:"self-monitoring"}%','fe7628ada2c748d99d5e768f19d6925e',''), ('24560','{34941}>{$ZABBIX.SERVER.UTIL.MAX:"service manager"}','Zabbix server: Utilization of service manager processes is high','','0','3','Indicates potential performance issues with the service manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34941}<{$ZABBIX.SERVER.UTIL.MIN:"service manager"}','0','','0','','0','Zabbix server: Utilization of service manager processes over {$ZABBIX.SERVER.UTIL.MAX:"service manager"}%','273d3f4894754d92980827d67424626f',''), ('24561','{34942}>{$ZABBIX.SERVER.UTIL.MAX:"snmp poller"}','Zabbix server: Utilization of snmp poller processes is high','','0','3','Indicates potential performance issues with the snmp poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34942}<{$ZABBIX.SERVER.UTIL.MIN:"snmp poller"}','0','','0','','0','Zabbix server: Utilization of snmp poller processes over {$ZABBIX.SERVER.UTIL.MAX:"snmp poller"}%','8d67b86d96214e63aa4150957d0f5448',''), ('24562','{34943}>{$ZABBIX.SERVER.UTIL.MAX:"snmp trapper"}','Zabbix server: Utilization of snmp trapper processes is high','','0','3','Indicates potential performance issues with the snmp trapper, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34943}<{$ZABBIX.SERVER.UTIL.MIN:"snmp trapper"}','0','','0','','0','Zabbix server: Utilization of snmp trapper processes over {$ZABBIX.SERVER.UTIL.MAX:"snmp trapper"}%','6b792b961a894028885cca471e58ea7d',''), ('24563','{34944}>{$ZABBIX.SERVER.UTIL.MAX:"task manager"}','Zabbix server: Utilization of task manager processes is high','','0','3','Indicates potential performance issues with the task manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34944}<{$ZABBIX.SERVER.UTIL.MIN:"task manager"}','0','','0','','0','Zabbix server: Utilization of task manager processes over {$ZABBIX.SERVER.UTIL.MAX:"task manager"}%','54324394c6da4fec99824d20620e5130',''), ('24564','{34945}>{$ZABBIX.SERVER.UTIL.MAX:"timer"}','Zabbix server: Utilization of timer processes is high','','0','3','Indicates potential performance issues with the timer, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34945}<{$ZABBIX.SERVER.UTIL.MIN:"timer"}','0','','0','','0','Zabbix server: Utilization of timer processes over {$ZABBIX.SERVER.UTIL.MAX:"timer"}%','be3754033f584791aef90bf94cc03155',''), ('24565','{34946}>{$ZABBIX.SERVER.UTIL.MAX:"trapper"}','Zabbix server: Utilization of trapper processes is high','','0','3','Indicates potential performance issues with the trapper, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34946}<{$ZABBIX.SERVER.UTIL.MIN:"trapper"}','0','','0','','0','Zabbix server: Utilization of trapper processes over {$ZABBIX.SERVER.UTIL.MAX:"trapper"}%','499ac8c8ac274b0a9c4e1e4e2604c393',''), ('24566','{34947}>{$ZABBIX.SERVER.UTIL.MAX:"trigger housekeeper"}','Zabbix server: Utilization of trigger housekeeper processes is high','','0','3','Indicates potential performance issues with the trigger housekeeper, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34947}<{$ZABBIX.SERVER.UTIL.MIN:"trigger housekeeper"}','0','','0','','0','Zabbix server: Utilization of trigger housekeeper processes over {$ZABBIX.SERVER.UTIL.MAX:"trigger housekeeper"}%','2f024c50a951453abcd7a7998c270e9e',''), ('24567','{34948}>{$ZABBIX.SERVER.UTIL.MAX:"unreachable poller"}','Zabbix server: Utilization of unreachable poller processes is high','','0','3','Indicates potential performance issues with the unreachable poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34948}<{$ZABBIX.SERVER.UTIL.MIN:"unreachable poller"}','0','','0','','0','Zabbix server: Utilization of unreachable poller processes over {$ZABBIX.SERVER.UTIL.MAX:"unreachable poller"}%','cd76cc2f895349319716aa3533181529',''), ('24568','{34949}>{$ZABBIX.SERVER.UTIL.MAX:"vmware collector"}','Zabbix server: Utilization of vmware collector processes is high','','0','3','Indicates potential performance issues with the vmware collector, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34949}<{$ZABBIX.SERVER.UTIL.MIN:"vmware collector"}','0','','0','','0','Zabbix server: Utilization of vmware collector processes over {$ZABBIX.SERVER.UTIL.MAX:"vmware collector"}%','1aa12e51e357423ab198e6dcbba6e4f8',''), ('24569','{34950}>{$ZABBIX.SERVER.UTIL.MAX:"configuration cache"}','Zabbix server: Excessive configuration cache usage','','0','3','Consider increasing `CacheSize` in the `zabbix_server.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix server: More than {$ZABBIX.SERVER.UTIL.MAX:"configuration cache"}% used in the configuration cache','363da6f7c0ad4d289939d1e3ffdd8cf6',''), ('24570','{34951}=1','Zabbix server: Failed to fetch stats data','','0','2','Zabbix has not received statistics data for `{$ZABBIX.SERVER.NODATA_TIMEOUT}`.',NULL,'0','0','0','','0','','0','','0','Zabbix server: Failed to fetch stats data (or no data for {$ZABBIX.SERVER.NODATA_TIMEOUT})','a9eb076bb3234e05a46a6884c04a53aa',''), ('24571','{34952}=0','Zabbix server: Wrong template assigned','','0','5','Check that the template has been selected correctly.',NULL,'0','0','0','','0','','1','','0','Zabbix server: Zabbix server template is assigned to Zabbix proxy','a682723b57304a8a8fe824c97524c268',''), ('24572','{34953}>{$ZABBIX.SERVER.UTIL.MAX:"value cache"}','Zabbix server: Excessive value cache usage','','0','3','Consider increasing `ValueCacheSize` in the `zabbix_server.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix server: More than {$ZABBIX.SERVER.UTIL.MAX:"value cache"}% used in the value cache','3d2b9badc0ba4751b341127eca43b060',''), ('24573','{34954}=1','Zabbix server: Zabbix value cache working in low-memory mode','','0','4','Once low-memory mode has been switched on, the value cache will remain in this state for 24 hours, even if the problem that triggered this mode is resolved sooner.',NULL,'0','0','0','','0','','0','','0','','da2f0e99f5fb45009ee61f9801db17ce',''), ('24574','{34955}<>{34956} and length({34957})>0','Zabbix server: Version has changed','','0','1','Zabbix server version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Zabbix server: Version has changed (new version: {ITEM.VALUE})','067dbedff25c4536ace271693d5c404d',''), ('24575','{34958}>{$ZABBIX.SERVER.UTIL.MAX:"vmware cache"}','Zabbix server: Excessive vmware cache usage','','0','3','Consider increasing `VMwareCacheSize` in the `zabbix_server.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix server: More than {$ZABBIX.SERVER.UTIL.MAX:"vmware cache"}% used in the vmware cache','448b0d2931084946bdbe30994cc21a2a',''), ('24576','{34959}>{$ZABBIX.SERVER.UTIL.MAX:"history cache"}','Zabbix server: Excessive history cache usage','','0','3','Consider increasing `HistoryCacheSize` in the `zabbix_server.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix server: More than {$ZABBIX.SERVER.UTIL.MAX:"history cache"}% used in the history cache','0b0c54160c6442c6ac4ab3807d3e3cbf',''), ('24577','{34960}>{$ZABBIX.SERVER.UTIL.MAX:"index cache"}','Zabbix server: Excessive history index cache usage','','0','3','Consider increasing `HistoryIndexCacheSize` in the `zabbix_server.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix server: More than {$ZABBIX.SERVER.UTIL.MAX:"index cache"}% used in the history index cache','11838eec73024ff2abaa9473d3171bb4',''), ('24578','{34961}>{$ZABBIX.SERVER.UTIL.MAX:"trend cache"}','Zabbix server: Excessive trends cache usage','','0','3','Consider increasing `TrendCacheSize` in the `zabbix_server.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix server: More than {$ZABBIX.SERVER.UTIL.MAX:"trend cache"}% used in the trends cache','13b1ca9fa8f64deb9bd2bec2e919ee9a',''), ('24579','{34962}>100','Zabbix server: More than 100 items have been missing data for over 10 minutes','','0','2','Indicates potential issues with network connectivity, agent failures, or unresponsive monitored resources that require attention.',NULL,'0','0','0','','0','','0','','0','','3396dbfc687e4bbe80f9c38defbbb8e7',''), ('24580','{34963}>{$ZABBIX.SERVER.UTIL.MAX:"agent poller"}','Zabbix server: Utilization of agent poller processes is high','','0','3','Indicates potential performance issues with the agent poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34963}<{$ZABBIX.SERVER.UTIL.MIN:"agent poller"}','0','','0','','0','Zabbix server: Utilization of agent poller processes over {$ZABBIX.SERVER.UTIL.MAX:"agent poller"}%','52051812fdb04a63acda8c59090db059',''), ('24581','{34964}>{$ZABBIX.SERVER.UTIL.MAX:"alerter"}','Zabbix server: Utilization of alerter processes is high','','0','3','Indicates potential performance issues with the alerter, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34964}<{$ZABBIX.SERVER.UTIL.MIN:"alerter"}','0','','0','','0','Zabbix server: Utilization of alerter processes over {$ZABBIX.SERVER.UTIL.MAX:"alerter"}%','55929cbec22d4bceb43c05615cc30aa4',''), ('24582','{34965}>{$ZABBIX.SERVER.UTIL.MAX:"alert manager"}','Zabbix server: Utilization of alert manager processes is high','','0','3','Indicates potential performance issues with the alert manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34965}<{$ZABBIX.SERVER.UTIL.MIN:"alert manager"}','0','','0','','0','Zabbix server: Utilization of alert manager processes over {$ZABBIX.SERVER.UTIL.MAX:"alert manager"}%','161bc98198524413a00490196add9b2b',''), ('24583','{34966}>{$ZABBIX.SERVER.UTIL.MAX:"alert syncer"}','Zabbix server: Utilization of alert syncer processes is high','','0','3','Indicates potential performance issues with the alert syncer, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34966}<{$ZABBIX.SERVER.UTIL.MIN:"alert syncer"}','0','','0','','0','Zabbix server: Utilization of alert syncer processes over {$ZABBIX.SERVER.UTIL.MAX:"alert syncer"}%','bed49050d02e4be5b64d6763101f81f4',''), ('24584','{34967}>{$ZABBIX.SERVER.UTIL.MAX:"availability manager"}','Zabbix server: Utilization of availability manager processes is high','','0','3','Indicates potential performance issues with the availability manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34967}<{$ZABBIX.SERVER.UTIL.MIN:"availability manager"}','0','','0','','0','Zabbix server: Utilization of availability manager processes over {$ZABBIX.SERVER.UTIL.MAX:"availability manager"}%','7cda574ff0af44a88b3cde965dec3c1b',''), ('24585','{34968}>{$ZABBIX.SERVER.UTIL.MAX:"browser poller"}','Zabbix server: Utilization of browser poller processes is high','','0','3','Indicates potential performance issues with the browser poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34968}<{$ZABBIX.SERVER.UTIL.MIN:"browser poller"}','0','','0','','0','Zabbix server: Utilization of browser poller processes over {$ZABBIX.SERVER.UTIL.MAX:"browser poller"}%','8090b7e65f0743938d34d031c04786c2',''), ('24586','{34969}>{$ZABBIX.SERVER.UTIL.MAX:"configuration syncer"}','Zabbix server: Utilization of configuration syncer processes is high','','0','3','Indicates potential performance issues with the configuration syncer, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34969}<{$ZABBIX.SERVER.UTIL.MIN:"configuration syncer"}','0','','0','','0','Zabbix server: Utilization of configuration syncer processes over {$ZABBIX.SERVER.UTIL.MAX:"configuration syncer"}%','0968f49341bf4d4c90fb2a9281f0e61b',''), ('24587','{34970}>{$ZABBIX.SERVER.UTIL.MAX:"configuration syncer worker"}','Zabbix server: Utilization of configuration syncer worker processes is high','','0','3','Indicates potential performance issues with the configuration syncer worker, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34970}<{$ZABBIX.SERVER.UTIL.MIN:"configuration syncer worker"}','0','','0','','0','Zabbix server: Utilization of configuration syncer worker processes over {$ZABBIX.SERVER.UTIL.MAX:"configuration syncer worker"}%','b17ce9330f784c608e85c3d2d8e4665a',''), ('24588','{34971}>{$ZABBIX.SERVER.UTIL.MAX:"connector manager"}','Zabbix server: Utilization of connector manager processes is high','','0','3','Indicates potential performance issues with the connector manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34971}<{$ZABBIX.SERVER.UTIL.MIN:"connector manager"}','0','','0','','0','Zabbix server: Utilization of connector manager processes over {$ZABBIX.SERVER.UTIL.MAX:"connector manager"}%','aeea0a0f2394447483ba8274c072ee95',''), ('24589','{34972}>{$ZABBIX.SERVER.UTIL.MAX:"connector worker"}','Zabbix server: Utilization of connector worker processes is high','','0','3','Indicates potential performance issues with the connector worker, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34972}<{$ZABBIX.SERVER.UTIL.MIN:"connector worker"}','0','','0','','0','Zabbix server: Utilization of connector worker processes over {$ZABBIX.SERVER.UTIL.MAX:"connector worker"}%','0a12645bdd92487486281070bd3b6ff9',''), ('24590','{34973}>{$ZABBIX.SERVER.UTIL.MAX:"discovery manager"}','Zabbix server: Utilization of discovery manager processes is high','','0','3','Indicates potential performance issues with the discovery manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34973}<{$ZABBIX.SERVER.UTIL.MIN:"discovery manager"}','0','','0','','0','Zabbix server: Utilization of discovery manager processes over {$ZABBIX.SERVER.UTIL.MAX:"discovery manager"}%','96e3bce31fff4037a4586d0b815cf290',''), ('24591','{34974}>{$ZABBIX.SERVER.UTIL.MAX:"discovery worker"}','Zabbix server: Utilization of discovery worker processes is high','','0','3','Indicates potential performance issues with the discovery worker, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34974}<{$ZABBIX.SERVER.UTIL.MIN:"discovery worker"}','0','','0','','0','Zabbix server: Utilization of discovery worker processes over {$ZABBIX.SERVER.UTIL.MAX:"discovery worker"}%','134b0d08ae6b43a1b136793b3084bfd3',''), ('24592','{34975}>{$ZABBIX.SERVER.UTIL.MAX:"escalator"}','Zabbix server: Utilization of escalator processes is high','','0','3','Indicates potential performance issues with the escalator, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34975}<{$ZABBIX.SERVER.UTIL.MIN:"escalator"}','0','','0','','0','Zabbix server: Utilization of escalator processes over {$ZABBIX.SERVER.UTIL.MAX:"escalator"}%','bbb663f67af94a50bfc834487750385b',''), ('24593','{34976}>{$ZABBIX.SERVER.UTIL.MAX:"history poller"}','Zabbix server: Utilization of history poller processes is high','','0','3','Indicates potential performance issues with the history poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34976}<{$ZABBIX.SERVER.UTIL.MIN:"history poller"}','0','','0','','0','Zabbix server: Utilization of history poller processes over {$ZABBIX.SERVER.UTIL.MAX:"history poller"}%','f307a979059d46e2b4a77a7756728996',''), ('24594','{34977}>{$ZABBIX.SERVER.UTIL.MAX:"history syncer"}','Zabbix server: Utilization of history syncer processes is high','','0','3','Indicates potential performance issues with the history syncer, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34977}<{$ZABBIX.SERVER.UTIL.MIN:"history syncer"}','0','','0','','0','Zabbix server: Utilization of history syncer processes over {$ZABBIX.SERVER.UTIL.MAX:"history syncer"}%','dfe7bf1d932d4451906ccdf1716c06e5',''), ('24595','{34978}>{$ZABBIX.SERVER.UTIL.MAX:"housekeeper"}','Zabbix server: Utilization of housekeeper processes is high','','0','3','Indicates potential performance issues with the housekeeper, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34978}<{$ZABBIX.SERVER.UTIL.MIN:"housekeeper"}','0','','0','','0','Zabbix server: Utilization of housekeeper processes over {$ZABBIX.SERVER.UTIL.MAX:"housekeeper"}%','b69548aebe7646b69848b66ea9c55cdc',''), ('24596','{34979}>{$ZABBIX.SERVER.UTIL.MAX:"http agent poller"}','Zabbix server: Utilization of http agent poller processes is high','','0','3','Indicates potential performance issues with the http agent poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34979}<{$ZABBIX.SERVER.UTIL.MIN:"http agent poller"}','0','','0','','0','Zabbix server: Utilization of http agent poller processes over {$ZABBIX.SERVER.UTIL.MAX:"http agent poller"}%','e64d4c1bd8334e65a40fdf1212931eba',''), ('24597','{34980}>{$ZABBIX.SERVER.UTIL.MAX:"http poller"}','Zabbix server: Utilization of http poller processes is high','','0','3','Indicates potential performance issues with the http poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34980}<{$ZABBIX.SERVER.UTIL.MIN:"http poller"}','0','','0','','0','Zabbix server: Utilization of http poller processes over {$ZABBIX.SERVER.UTIL.MAX:"http poller"}%','6e0171b059c14e0e901b9fe6ae1b87b7',''), ('24598','{34981}>{$ZABBIX.SERVER.UTIL.MAX:"icmp pinger"}','Zabbix server: Utilization of icmp pinger processes is high','','0','3','Indicates potential performance issues with the icmp pinger, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34981}<{$ZABBIX.SERVER.UTIL.MIN:"icmp pinger"}','0','','0','','0','Zabbix server: Utilization of icmp pinger processes over {$ZABBIX.SERVER.UTIL.MAX:"icmp pinger"}%','1e25430b01b34700b0ff8133e18d5f87',''), ('24599','{34982}>{$ZABBIX.SERVER.UTIL.MAX:"internal poller"}','Zabbix server: Utilization of internal poller processes is high','','0','3','Indicates potential performance issues with the internal poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34982}<{$ZABBIX.SERVER.UTIL.MIN:"internal poller"}','0','','0','','0','Zabbix server: Utilization of internal poller processes over {$ZABBIX.SERVER.UTIL.MAX:"internal poller"}%','eb8a30975bef4bf4bafd4e69d7e94cd3',''), ('24600','{34983}>{$ZABBIX.SERVER.UTIL.MAX:"ipmi manager"}','Zabbix server: Utilization of ipmi manager processes is high','','0','3','Indicates potential performance issues with the ipmi manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34983}<{$ZABBIX.SERVER.UTIL.MIN:"ipmi manager"}','0','','0','','0','Zabbix server: Utilization of ipmi manager processes over {$ZABBIX.SERVER.UTIL.MAX:"ipmi manager"}%','5c1b160b10d4463092051485a3489ddf',''), ('24601','{34984}>{$ZABBIX.SERVER.UTIL.MAX:"ipmi poller"}','Zabbix server: Utilization of ipmi poller processes is high','','0','3','Indicates potential performance issues with the ipmi poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34984}<{$ZABBIX.SERVER.UTIL.MIN:"ipmi poller"}','0','','0','','0','Zabbix server: Utilization of ipmi poller processes over {$ZABBIX.SERVER.UTIL.MAX:"ipmi poller"}%','3118da52346341d880b440c83d41e17a',''), ('24602','{34985}>{$ZABBIX.SERVER.UTIL.MAX:"java poller"}','Zabbix server: Utilization of java poller processes is high','','0','3','Indicates potential performance issues with the java poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34985}<{$ZABBIX.SERVER.UTIL.MIN:"java poller"}','0','','0','','0','Zabbix server: Utilization of java poller processes over {$ZABBIX.SERVER.UTIL.MAX:"java poller"}%','16a9e28d6c1f4bc6b933623aa6e6b067',''), ('24603','{34986}>{$ZABBIX.SERVER.UTIL.MAX:"LLD manager"}','Zabbix server: Utilization of LLD manager processes is high','','0','3','Indicates potential performance issues with the LLD manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34986}<{$ZABBIX.SERVER.UTIL.MIN:"LLD manager"}','0','','0','','0','Zabbix server: Utilization of LLD manager processes over {$ZABBIX.SERVER.UTIL.MAX:"LLD manager"}%','9128e4acba994c4898ac265e556eb709',''), ('24604','{34987}>{$ZABBIX.SERVER.UTIL.MAX:"LLD worker"}','Zabbix server: Utilization of LLD worker processes is high','','0','3','Indicates potential performance issues with the LLD worker, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34987}<{$ZABBIX.SERVER.UTIL.MIN:"LLD worker"}','0','','0','','0','Zabbix server: Utilization of LLD worker processes over {$ZABBIX.SERVER.UTIL.MAX:"LLD worker"}%','495c1295b5fe43a78f5a86c2844022e3',''), ('24605','{34988}>{$ZABBIX.SERVER.UTIL.MAX:"ODBC poller"}','Zabbix server: Utilization of ODBC poller processes is high','','0','3','Indicates potential performance issues with the ODBC poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34988}<{$ZABBIX.SERVER.UTIL.MIN:"ODBC poller"}','0','','0','','0','Zabbix server: Utilization of ODBC poller processes over {$ZABBIX.SERVER.UTIL.MAX:"ODBC poller"}%','e790935b8a5d4e088dc2edff813ecbf9',''), ('24606','{34989}>{$ZABBIX.SERVER.UTIL.MAX:"poller"}','Zabbix server: Utilization of poller processes is high','','0','3','Indicates potential performance issues with the poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34989}<{$ZABBIX.SERVER.UTIL.MIN:"poller"}','0','','0','','0','Zabbix server: Utilization of poller processes over {$ZABBIX.SERVER.UTIL.MAX:"poller"}%','a2aa7457b1444736aee85b246317ece0',''), ('24607','{34990}>{$ZABBIX.SERVER.UTIL.MAX:"preprocessing manager"}','Zabbix server: Utilization of preprocessing manager processes is high','','0','3','Indicates potential performance issues with the preprocessing manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34990}<{$ZABBIX.SERVER.UTIL.MIN:"preprocessing manager"}','0','','0','','0','Zabbix server: Utilization of preprocessing manager processes over {$ZABBIX.SERVER.UTIL.MAX:"preprocessing manager"}%','27cf66b388224931b8b839a10f027b10',''), ('24608','{34991}>{$ZABBIX.SERVER.UTIL.MAX:"preprocessing worker"}','Zabbix server: Utilization of preprocessing worker processes is high','','0','3','Indicates potential performance issues with the preprocessing worker, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34991}<{$ZABBIX.SERVER.UTIL.MIN:"preprocessing worker"}','0','','0','','0','Zabbix server: Utilization of preprocessing worker processes over {$ZABBIX.SERVER.UTIL.MAX:"preprocessing worker"}%','b6d5460fe0c640169574c9fdf3538773',''), ('24609','{34992}>{$ZABBIX.SERVER.UTIL.MAX:"proxy group manager"}','Zabbix server: Utilization of proxy group manager processes is high','','0','3','Indicates potential performance issues with the proxy group manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34992}<{$ZABBIX.SERVER.UTIL.MIN:"proxy group manager"}','0','','0','','0','Zabbix server: Utilization of proxy group manager processes over {$ZABBIX.SERVER.UTIL.MAX:"proxy group manager"}%','da4eb00198b54da8b621136df8299c80',''), ('24610','{34993}>{$ZABBIX.SERVER.UTIL.MAX:"proxy poller"}','Zabbix server: Utilization of proxy poller processes is high','','0','3','Indicates potential performance issues with the proxy poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34993}<{$ZABBIX.SERVER.UTIL.MIN:"proxy poller"}','0','','0','','0','Zabbix server: Utilization of proxy poller processes over {$ZABBIX.SERVER.UTIL.MAX:"proxy poller"}%','df0010ebd7e848beadafba435765b1e0',''), ('24611','{34994}>{$ZABBIX.SERVER.UTIL.MAX:"report manager"}','Zabbix server: Utilization of report manager processes is high','','0','3','Indicates potential performance issues with the report manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34994}<{$ZABBIX.SERVER.UTIL.MIN:"report manager"}','0','','0','','0','Zabbix server: Utilization of report manager processes over {$ZABBIX.SERVER.UTIL.MAX:"report manager"}%','a5836478648f4448a8e3ce85d08daa4e',''), ('24612','{34995}>{$ZABBIX.SERVER.UTIL.MAX:"report writer"}','Zabbix server: Utilization of report writer processes is high','','0','3','Indicates potential performance issues with the report writer, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34995}<{$ZABBIX.SERVER.UTIL.MIN:"report writer"}','0','','0','','0','Zabbix server: Utilization of report writer processes over {$ZABBIX.SERVER.UTIL.MAX:"report writer"}%','545c0bf735524164b3d77e455d03e8af',''), ('24613','{34996}>{$ZABBIX.SERVER.UTIL.MAX:"self-monitoring"}','Zabbix server: Utilization of self-monitoring processes is high','','0','3','Indicates potential performance issues with the self-monitoring, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34996}<{$ZABBIX.SERVER.UTIL.MIN:"self-monitoring"}','0','','0','','0','Zabbix server: Utilization of self-monitoring processes over {$ZABBIX.SERVER.UTIL.MAX:"self-monitoring"}%','2a6c0c7ba1f4406695b938af44d6884d',''), ('24614','{34997}>{$ZABBIX.SERVER.UTIL.MAX:"service manager"}','Zabbix server: Utilization of service manager processes is high','','0','3','Indicates potential performance issues with the service manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34997}<{$ZABBIX.SERVER.UTIL.MIN:"service manager"}','0','','0','','0','Zabbix server: Utilization of service manager processes over {$ZABBIX.SERVER.UTIL.MAX:"service manager"}%','3b9a86fd759641a78bcd43cfccc625b3',''), ('24615','{34998}>{$ZABBIX.SERVER.UTIL.MAX:"snmp poller"}','Zabbix server: Utilization of snmp poller processes is high','','0','3','Indicates potential performance issues with the snmp poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34998}<{$ZABBIX.SERVER.UTIL.MIN:"snmp poller"}','0','','0','','0','Zabbix server: Utilization of snmp poller processes over {$ZABBIX.SERVER.UTIL.MAX:"snmp poller"}%','680e6203ce4849d0aa3b2ca16c9757f2',''), ('24616','{34999}>{$ZABBIX.SERVER.UTIL.MAX:"snmp trapper"}','Zabbix server: Utilization of snmp trapper processes is high','','0','3','Indicates potential performance issues with the snmp trapper, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{34999}<{$ZABBIX.SERVER.UTIL.MIN:"snmp trapper"}','0','','0','','0','Zabbix server: Utilization of snmp trapper processes over {$ZABBIX.SERVER.UTIL.MAX:"snmp trapper"}%','60a0295d8b7b471db7e42ab32223cc57',''), ('24617','{35000}>{$ZABBIX.SERVER.UTIL.MAX:"task manager"}','Zabbix server: Utilization of task manager processes is high','','0','3','Indicates potential performance issues with the task manager, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{35000}<{$ZABBIX.SERVER.UTIL.MIN:"task manager"}','0','','0','','0','Zabbix server: Utilization of task manager processes over {$ZABBIX.SERVER.UTIL.MAX:"task manager"}%','337a17c96f8f410790841f2f2807eba7',''), ('24618','{35001}>{$ZABBIX.SERVER.UTIL.MAX:"timer"}','Zabbix server: Utilization of timer processes is high','','0','3','Indicates potential performance issues with the timer, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{35001}<{$ZABBIX.SERVER.UTIL.MIN:"timer"}','0','','0','','0','Zabbix server: Utilization of timer processes over {$ZABBIX.SERVER.UTIL.MAX:"timer"}%','2498dbd86bc449b9afc80e4eeb6d19e9',''), ('24619','{35002}>{$ZABBIX.SERVER.UTIL.MAX:"trapper"}','Zabbix server: Utilization of trapper processes is high','','0','3','Indicates potential performance issues with the trapper, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{35002}<{$ZABBIX.SERVER.UTIL.MIN:"trapper"}','0','','0','','0','Zabbix server: Utilization of trapper processes over {$ZABBIX.SERVER.UTIL.MAX:"trapper"}%','414276c3e1f749cfa210b5c8978d38df',''), ('24620','{35003}>{$ZABBIX.SERVER.UTIL.MAX:"trigger housekeeper"}','Zabbix server: Utilization of trigger housekeeper processes is high','','0','3','Indicates potential performance issues with the trigger housekeeper, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{35003}<{$ZABBIX.SERVER.UTIL.MIN:"trigger housekeeper"}','0','','0','','0','Zabbix server: Utilization of trigger housekeeper processes over {$ZABBIX.SERVER.UTIL.MAX:"trigger housekeeper"}%','b84fd09565a3470d81d9483551e74a4c',''), ('24621','{35004}>{$ZABBIX.SERVER.UTIL.MAX:"unreachable poller"}','Zabbix server: Utilization of unreachable poller processes is high','','0','3','Indicates potential performance issues with the unreachable poller, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{35004}<{$ZABBIX.SERVER.UTIL.MIN:"unreachable poller"}','0','','0','','0','Zabbix server: Utilization of unreachable poller processes over {$ZABBIX.SERVER.UTIL.MAX:"unreachable poller"}%','6d110c9dcb49446b9ff76e1f8e25d250',''), ('24622','{35005}>{$ZABBIX.SERVER.UTIL.MAX:"vmware collector"}','Zabbix server: Utilization of vmware collector processes is high','','0','3','Indicates potential performance issues with the vmware collector, which may affect monitoring efficiency and response times.',NULL,'0','0','1','{35005}<{$ZABBIX.SERVER.UTIL.MIN:"vmware collector"}','0','','0','','0','Zabbix server: Utilization of vmware collector processes over {$ZABBIX.SERVER.UTIL.MAX:"vmware collector"}%','5248479b4921499bbe3004d7de0d5bec',''), ('24623','{35006}>{$ZABBIX.SERVER.UTIL.MAX:"configuration cache"}','Zabbix server: Excessive configuration cache usage','','0','3','Consider increasing `CacheSize` in the `zabbix_server.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix server: More than {$ZABBIX.SERVER.UTIL.MAX:"configuration cache"}% used in the configuration cache','1d6d78c512d34286950c00b7a0ceb810',''), ('24624','{35007}=1','Zabbix server: Failed to fetch stats data','','0','2','Zabbix has not received statistics data for `{$ZABBIX.SERVER.NODATA_TIMEOUT}`.',NULL,'0','0','0','','0','','0','','0','Zabbix server: Failed to fetch stats data (or no data for {$ZABBIX.SERVER.NODATA_TIMEOUT})','407dc6ff910a46dd9cb72d9ccce66fce',''), ('24625','{35008}=0','Zabbix server: Wrong template assigned','','0','5','Check that the template has been selected correctly.',NULL,'0','0','0','','0','','1','','0','Zabbix server: Zabbix server template is assigned to Zabbix proxy','b8f39d2f4b0a458eafde5d0442bf073f',''), ('24626','{35009}>{$ZABBIX.SERVER.UTIL.MAX:"value cache"}','Zabbix server: Excessive value cache usage','','0','3','Consider increasing `ValueCacheSize` in the `zabbix_server.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix server: More than {$ZABBIX.SERVER.UTIL.MAX:"value cache"}% used in the value cache','0d970aa35f8a4086b1a5534bdbbc7480',''), ('24627','{35010}=1','Zabbix server: Zabbix value cache working in low-memory mode','','0','4','Once low-memory mode has been switched on, the value cache will remain in this state for 24 hours, even if the problem that triggered this mode is resolved sooner.',NULL,'0','0','0','','0','','0','','0','','afa69411eaf94f029b319c2b03c969c6',''), ('24628','{35011}<>{35012} and length({35013})>0','Zabbix server: Version has changed','','0','1','Zabbix server version has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Zabbix server: Version has changed (new version: {ITEM.VALUE})','a5c77cd2518844c9a27ced51d57b0a69',''), ('24629','{35014}>{$ZABBIX.SERVER.UTIL.MAX:"vmware cache"}','Zabbix server: Excessive vmware cache usage','','0','3','Consider increasing `VMwareCacheSize` in the `zabbix_server.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix server: More than {$ZABBIX.SERVER.UTIL.MAX:"vmware cache"}% used in the vmware cache','8ef38ec3297344c48ee6a1c632481f2e',''), ('24630','{35015}>{$ZABBIX.SERVER.UTIL.MAX:"history cache"}','Zabbix server: Excessive history cache usage','','0','3','Consider increasing `HistoryCacheSize` in the `zabbix_server.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix server: More than {$ZABBIX.SERVER.UTIL.MAX:"history cache"}% used in the history cache','2cb075a78bf248aea1f18afe56a8406c',''), ('24631','{35016}>{$ZABBIX.SERVER.UTIL.MAX:"index cache"}','Zabbix server: Excessive history index cache usage','','0','3','Consider increasing `HistoryIndexCacheSize` in the `zabbix_server.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix server: More than {$ZABBIX.SERVER.UTIL.MAX:"index cache"}% used in the history index cache','4be3fd672e3c464b94a23fa3b51176df',''), ('24632','{35017}>{$ZABBIX.SERVER.UTIL.MAX:"trend cache"}','Zabbix server: Excessive trends cache usage','','0','3','Consider increasing `TrendCacheSize` in the `zabbix_server.conf` configuration file.',NULL,'0','0','0','','0','','0','','0','Zabbix server: More than {$ZABBIX.SERVER.UTIL.MAX:"trend cache"}% used in the trends cache','ae75c7ba703e42b7a443e14f3b47c38d',''), ('24633','{35018}>100','Zabbix server: More than 100 items have been missing data for over 10 minutes','','0','2','Indicates potential issues with network connectivity, agent failures, or unresponsive monitored resources that require attention.',NULL,'0','0','0','','0','','0','','0','','26f00ef4bbae4b94a8228232072722aa',''), ('24635','{35023}<>{35024}','Zabbix server: Cluster node [{#NODE.NAME}]: Status changed','','0','1','The state of the node has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','6b9b6640b1dd4307b65840d465d40431',''), ('24636','{35025}=3','Zabbix server: Proxy [{#PROXY.NAME}]: Zabbix proxy is not supported','','0','4','Zabbix proxy version is older than server previous LTS release version or server major version is older than proxy major version.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','d3f1ce16f1d343af955a2226d87efaa8',''), ('24637','{35026}=2','Zabbix server: Proxy [{#PROXY.NAME}]: Zabbix proxy is outdated','','0','2','Zabbix proxy version is older than server version, but is partially supported. Only data collection and remote execution is available.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','9558abc739f44660a03b3d273a689647',''), ('24638','{35027}>{$ZABBIX.PROXY.LAST_SEEN.MAX}','Zabbix server: Proxy [{#PROXY.NAME}]: Zabbix proxy last seen','','0','2','Zabbix proxy is not updating the configuration data.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Zabbix server: Proxy [{#PROXY.NAME}]: Zabbix proxy last seen more than {$ZABBIX.PROXY.LAST_SEEN.MAX} seconds ago','03c66875e25e450abc2cec1c44706de1',''), ('24639','{35028}=-1','Zabbix server: Proxy [{#PROXY.NAME}]: Zabbix proxy never seen','','0','2','Zabbix proxy is not updating the configuration data.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','df8e40481b814d00b3bbabc4f5bb80d7',''), ('24640','{35029}<>{35030}','Zabbix server: Cluster node [{#NODE.NAME}]: Status changed','','0','1','The state of the node has changed. Acknowledge to close the problem manually.',NULL,'0','2','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','3f5929a797014c4795ea812d14713da8',''), ('24641','{35031}=3','Zabbix server: Proxy [{#PROXY.NAME}]: Zabbix proxy is not supported','','0','4','Zabbix proxy version is older than server previous LTS release version or server major version is older than proxy major version.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','ebb05d922d0b4115a7f543ec27884bb0',''), ('24642','{35032}=2','Zabbix server: Proxy [{#PROXY.NAME}]: Zabbix proxy is outdated','','0','2','Zabbix proxy version is older than server version, but is partially supported. Only data collection and remote execution is available.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','ecb8145b4d1742c5b63b70571d578841',''), ('24643','{35033}>{$ZABBIX.PROXY.LAST_SEEN.MAX}','Zabbix server: Proxy [{#PROXY.NAME}]: Zabbix proxy last seen','','0','2','Zabbix proxy is not updating the configuration data.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Zabbix server: Proxy [{#PROXY.NAME}]: Zabbix proxy last seen more than {$ZABBIX.PROXY.LAST_SEEN.MAX} seconds ago','9e2c54be71674f98b10fc0b40c79d807',''), ('24644','{35034}=-1','Zabbix server: Proxy [{#PROXY.NAME}]: Zabbix proxy never seen','','0','2','Zabbix proxy is not updating the configuration data.',NULL,'0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','4fb72306aa814ac1a6f1376d012cab7b',''), ('24645','length({35035})>0','Azure Cost: There are errors in requests to API','','0','3','Zabbix has received errors in response to API requests.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','Azure Cost: Error in daily costs requests to API','503b3d5d008e4ad7b11384a3bd0c991c',''), ('24646','length({35036})>0','Azure Cost: There are errors in requests to API','','0','3','Zabbix has received errors in response to API requests.',NULL,'0','0','0','','0','','0','{ITEM.LASTVALUE1}','0','Azure Cost: Error in monthly costs requests to API','2ea11e17fd734dee80219e22a8073e01',''), ('24647','{35037}=1','Azure MSSQL DTU: Microsoft SQL database is degraded','','0','3','The resource is in a degraded state.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','6bf8f84c7b494c4da90ef5e47fa75627',''), ('24648','{35038}=3','Azure MSSQL DTU: Microsoft SQL database is in unknown state','','0','2','The resource state is unknown.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4196d310e6e84c61a0a7115116f10854',''), ('24649','{35039}=2','Azure MSSQL DTU: Microsoft SQL database is unavailable','','0','4','The resource state is unavailable.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b6f356182f3d4b0c88f52d88fce580b9',''), ('24650','{35040}>{$AZURE.DB.CPU.UTIL.CRIT}','Azure MSSQL DTU: High CPU utilization','','0','4','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','','97caae1175be4c21b2fd5a53d5be25d2',''), ('24651','length({35041})>0','Azure MSSQL DTU: There are errors in requests to API','','0','3','Zabbix has received errors in response to API requests.',NULL,'0','0','0','','0','','0','Current error: {ITEM.LASTVALUE1}','0','','a21b8c56bd914548949c277c77efbd4b',''), ('24652','{35042}>{$AZURE.DB.DTU.UTIL.CRIT}','Azure MSSQL DTU: High DTU utilization','','0','4','The DTU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','','eceb245b910841ceb8078ea8b3dbad1b',''), ('24653','{35043}>{$AZURE.DB.STORAGE.PUSED.CRIT}','Azure MSSQL DTU: Storage space is critically low','','0','3','Critical utilization of the storage space.',NULL,'0','0','0','','0','','0','Current space used: {ITEM.LASTVALUE1}%','0','','b13d1ed5b1144e0095dca50bcbba37ae',''), ('24654','{35044}>{$AZURE.DB.STORAGE.PUSED.WARN}','Azure MSSQL DTU: Storage space is low','','0','2','High utilization of the storage space.',NULL,'0','0','0','','0','','0','Current space used: {ITEM.LASTVALUE1}%','0','','74c7b9f109924177a37bc7717c6f39e0',''), ('24655','{35046}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35047}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','7662e3eded674ca996c98d5af253d767',''), ('24656','{35048}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35049}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','ad69a0bc0507456787ef21628985e22f',''), ('24657','{35050}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35051}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','d66e0fa34fbf4fc49ac5ebfed3f6dbb0',''), ('24658','{35052}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35053}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','d9e2f17aa26d47239ba7ee40d5b39759',''), ('24659','{35054}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35055}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','f6bcaf561a23406e84a22549aed2485d',''), ('24660','{35056}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35057}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','fcf0566a31b9400c9790638caad03e34',''), ('24661','{35058}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35059}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','306d44e9256041089e0499678d0a9b6b',''), ('24662','{35060}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35061}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','3ef08416c6e649469b036b730f756a35',''), ('24663','{35062}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35063}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','db4a2f3baf9c44058e81df8924c51714',''), ('24664','{35064}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35065}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','3de221d9357541e68cb0e949f58b0f3c',''), ('24665','{35066}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35067}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','21158d7b18b64861b373be6718006753',''), ('24666','{35068}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35069}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','c1c9783678e846ec88d1b68486abd5a0',''), ('24667','{35070}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35071}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','5b950c6be6494ba7b743a572a208fd42',''), ('24668','{35072}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35073}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','f091c3d0b2754d1a883ad9e5f96f7037',''), ('24669','{35074}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35075}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','e9c78b7e0b0d4d64b420b5802c91f02a',''), ('24670','{35076}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35077}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','67f8c41b8c4748a6b5ab836821e79610',''), ('24671','{35078}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35079}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','d18498b9f4df42fca625f01ec465d819',''), ('24672','{35080}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35081}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','b457b4345c694e3a9963b74c9c2992c6',''), ('24673','{35082}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35083}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','c84e4932a71849549be90027810335ea',''), ('24674','{35084}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35085}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','67d43cb946d94556bb921b0b120d58ee',''), ('24675','{35086}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35087}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','cd3aaf374f81487f98f0056920870782',''), ('24676','{35088}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35089}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','1e6346dade484f4aad2a63c03ebf32d4',''), ('24677','{35090}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35091}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','9eafc6dc38614e26a301d943f4f8dd5d',''), ('24678','{35092}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35093}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','d6cc20f91d5748fd85ab8743b5152be6',''), ('24679','{35094}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35095}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','c3b13c3d1f8c4d53b1fa67f9abc168bd',''), ('24680','{35096}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35097}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','80fd1bd8bf564aecbe37b77294c84ae6',''), ('24681','{35098}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35099}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','335090c080c04b909f1b46b404dd025c',''), ('24682','{35100}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35101}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','5b86f67e1e184ef79b7023760d951747',''), ('24683','{35102}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35103}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','c62972c2c47d403bb92d43ff7b9b5a20',''), ('24684','{35104}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35105}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','fc2ffec9e7054c82880a560da071781a',''), ('24685','{35106}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35107}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','09b73cf701ab4f4aac2fdbb4ff26e893',''), ('24686','{35108}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35109}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','3e86bb9cfaa5410d8b932f80c413e340',''), ('24687','{35110}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35111}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','5f52e2e9403544b987568c00046deaea',''), ('24688','{35112}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35113}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','6c46256f6d124cf9b3d602f7536a4788',''), ('24689','{35114}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35115}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','8b61d889f30e43f28102163a6284c8d4',''), ('24690','{35116}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35117}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','edbf42873c99405cb77d0eb3fd6986a8',''), ('24691','{35118}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35119}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','aa6398ab43ec491ab5aa96c8d8422112',''), ('24692','{35120}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35121}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','186b82ffb7934fe8a62a150970dc2468',''), ('24693','{35122}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35123}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','58357816e19b4c9986e8d26165c4f29a',''), ('24694','{35124}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35125}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','522ee0ddfd7e40a4b81612d4ba4266cf',''), ('24695','{35126}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35127}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','6a5b1f729c054ec7acc3665ffb831bcc',''), ('24696','{35128}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35129}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','f4198424045742619f84410ee7a2939c',''), ('24697','{35130}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35131}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','b3ce44c470a64dc49bc169c06bf9761d',''), ('24698','{35132}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35133}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','876a62a4aa6a449d888f1233c24c0dbc',''), ('24699','{35134}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35135}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','79304fcbafe349d4adeebe277858d23a',''), ('24700','{35136}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35137}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','80af013716d944e8be4cef996aabfef2',''), ('24701','{35138}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35139}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','ab46cd19e709417ebeb5c3b9964e2eee',''), ('24702','{35140}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35141}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','06e95d596af74a288b3787cb665255bb',''), ('24703','{35142}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35143}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','f399cf1f48d24ec3b3f33159cb7b4fe0',''), ('24704','{35144}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35145}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','0c240046f1434ffb8c2cba26e4b0e61d',''), ('24705','{35146}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35147}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','f810f58531c54e3bbcf6d0e677100237',''), ('24706','{35148}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35149}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','773c5f9316c44d8297b4fd3cdd236da1',''), ('24707','{35150}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35151}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','3d688fda4da843e192c26d955d8d8dd9',''), ('24708','{35152}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35153}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','2a21380034244b29878bbb198cca6712',''), ('24709','{35154}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35155}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','b32ecc16390c42bfbc0ad23305f59392',''), ('24710','{35156}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35157}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','fb39a804a60e4154ad6602fad05c399d',''), ('24711','{35158}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35159}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','e35e3256fd58439d923ca54b7e33e64c',''), ('24712','{35160}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35161}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','ea9da810d00445f3b4649f8aec0d9ef7',''), ('24713','{35162}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35163}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','28a883547a4449ea96c1168aef939a65',''), ('24714','{35164}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35165}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','760505068a3946edbd38294f867e08e5',''), ('24715','{35166}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35167}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','ac0cfe319121487fb2009436d27f4f2b',''), ('24716','{35168}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35169}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','c1c53cec6a204411b9739eac84447c2a',''), ('24717','{35170}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35171}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','f0d3f01db5d44b74826326048bca05a8',''), ('24718','{35172}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35173}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','dbfb3ba672c944149aea12b3f4a1cdbe',''), ('24719','{35174}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35175}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','8c4ffcc25b254dc29928ac1ac0272b7a',''), ('24720','{35176}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35177}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','df1aa24cf39947528099405c6cd311f4',''), ('24721','{35178}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35179}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','b3d35f977375429a8a0f4b76dabf294c',''), ('24722','{35180}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35181}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','3be96603ac0a474694bf53d2b8aa8487',''), ('24723','{35182}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35183}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','809c702cedf749b6b53f591ee37c56ba',''), ('24724','{35184}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35185}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','973e5d05599c4ee79d8cc210b004f38d',''), ('24725','{35186}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35187}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','58c9f09a52ed48f7b65a4ab6a7b19c35',''), ('24726','{35188}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35189}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','cfb884d37884407fbba3f93515020352',''), ('24727','{35190}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35191}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','3f1ce913660a493387485d5dab3ebfc4',''), ('24728','{35192}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35193}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','e7a78d2798b44c438a81c308d1a1c0ed',''), ('24729','{35194}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35195}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','890865ebc7ea41ef8e9d3c794395092b',''), ('24730','{35196}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35197}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','0c035a51301746588e0bc01bb0bf425a',''), ('24731','{35198}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35199}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','efc19507ca614ef487d0a9a637a8f7a6',''), ('24732','{35200}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35201}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','54b7d721900742acbb1548714c34c7c2',''), ('24733','{35202}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35203}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','50a28d8380d64feca6fb2691e2477fed',''), ('24734','{35204}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35205}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','6bd9170284ef49b4825cf347e1f43548',''), ('24735','{35206}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35207}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','ccda9a03941b42b0ac184e22aa23666c',''), ('24736','{35208}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35209}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','2c4b897afc03484fb7e435af025ac9a3',''), ('24737','{35210}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35211}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','8de55e3f0a2d46f69d430362b208654b',''), ('24738','{35212}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35213}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','5d4582baab9b4b98ba6d6e3e78678280',''), ('24739','{35214}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35215}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','9ab9bb63b838495f863feee9d62fcb72',''), ('24740','{35216}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35217}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','1f68799afde34df49dd0d693872aa19a',''), ('24741','{35218}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35219}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','21a3e86813114562a8e382bd3120030f',''), ('24742','{35220}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35221}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','52e3b8b493eb4ab09bacb707ed7454ab',''), ('24743','{35222}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35223}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','00ed3d5d280f47a1b20073e87f6ec6f0',''), ('24744','{35224}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35225}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','0e8120688a774b63823848119deaf4a5',''), ('24745','{35226}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35227}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','0e9494a8018f4943a84c1e6b6304439f',''), ('24746','{35228}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35229}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','6877c6d086354b5eac351ddbe1dc5656',''), ('24747','{35230}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35231}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','608d5359e01148a2b8dcc507a11f5ea3',''), ('24748','{35232}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35233}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','5eff445458ec4f2f9b9b9085f9487f7d',''), ('24749','{35234}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35235}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','3d9498b115df444981717267ccbe926b',''), ('24750','{35236}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35237}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','c3b94c3a222746cc9f88c5f44c3e882b',''), ('24751','{35238}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35239}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','9f6533c6505948abb10869f4d0a11070',''), ('24752','{35240}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35241}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','e683521cc3de43eaa7c8ecbbb360fb7d',''), ('24753','{35242}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35243}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','2d1bba8f19694737a6cb59e12289327c',''), ('24754','{35244}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35245}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','8db96c9e7d164b0fa6d2af61899ea427',''), ('24755','{35246}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35247}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','33c12e280a464d20960ae73341ea3dbe',''), ('24756','{35248}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35249}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','4fa5ef5d55fd4fc8a21516dbfb0ff7eb',''), ('24757','{35250}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35251}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','8aa17694ab184951b24093d8a765eae0',''), ('24758','{35252}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35253}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','3c33429067c84714b68c4bbd8f729bc7',''), ('24759','{35254}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35255}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','100002ca08614467b16f313dfeda6e68',''), ('24760','{35256}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35257}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','757ac3b43a62450f9e49885dd654167f',''), ('24761','{35258}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35259}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','71f8b72b4c7240a8a4e10b503a2aec9f',''), ('24762','{35260}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35261}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','818f218a8ee3455db507dcded146c3ea',''), ('24763','{35262}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35263}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','ae05e13963974301850e66f5e4f33a2c',''), ('24764','{35264}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35265}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','f5b55111b94e427082a07baa856bb4fb',''), ('24765','{35266}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35267}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','1e19d78e1b394165ab9dc6da8c072ab8',''), ('24766','{35268}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35269}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','588874bb24d64ca6b10179eab36fa7c2',''), ('24767','{35270}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35271}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','40cd8afdf46a4d03aa426cedd7ce7d9a',''), ('24768','{35272}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35273}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','ae2260c1ecdd44e48e72d43ce1936222',''), ('24769','{35274}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35275}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','6b909503dc46413fad04d4cf4d7b6939',''), ('24770','{35276}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35277}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','94833673685645f68729a8f98b5a213e',''), ('24771','{35278}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35279}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','aac8de5837494421a642793cc5a9009c',''), ('24772','{35280}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35281}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','3d4dc47de9db4049a4baebf68df16b1e',''), ('24773','{35282}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35283}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','cf105fee78774aa7ae119f2638528423',''), ('24774','{35284}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35285}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','1bf28981db8d414199c3fb7bd20e669a',''), ('24775','{35286}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35287}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','9084cab74227494d9ebd02ea9a4309d2',''), ('24776','{35288}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35289}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','5dc37a79bb254104a9a46383b14b0e3e',''), ('24777','{35290}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35291}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','35fd07bdd3d84ccab6172255af3989ac',''), ('24778','{35292}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35293}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','d26213a8d92e4845a7767a0a7fe340b6',''), ('24779','{35294}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35295}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','47e2acacb8414731b56ec86e1a9e3e3c',''), ('24780','{35296}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35297}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','69c54b6ef3a04343bd9df41153398067',''), ('24781','{35298}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35299}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','ba13b39c8a6146bf9b3b6d46fb71fcc6',''), ('24782','{35300}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35301}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','3a469cd75bac4782b18aff3011c766b3',''), ('24783','{35302}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35303}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','11f6f7f659a445e7930b7ab3532a8ebb',''), ('24784','{35304}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35305}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','3392f74fc5974701b62673f5c51700d4',''), ('24785','{35306}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35307}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','0e4acbc3bad54347a362cbf57c0464e3',''), ('24786','{35308}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35309}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','42c7cd22b6c74fc7b36f5b6593db02e5',''), ('24787','{35310}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35311}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','bf5e439b3dfe4a5b82df00c0ed291895',''), ('24788','{35312}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35313}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','bc428b5477294722a18477dc061a59e9',''), ('24789','{35314}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35315}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','21aa13901d7449a39f64a41cb151d687',''), ('24790','{35316}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35317}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','0a2cde44b8ea45178e0859ae7c1125e5',''), ('24791','{35318}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35319}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','0379f91f1b4e40d1b35c30ac538a8b61',''), ('24792','{35320}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35321}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','7d4b709e7b5c4e9aa68a9c6f8df69e75',''), ('24793','{35322}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35323}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','519c8f4f6a62492fbf739c2303f76aa5',''), ('24794','{35324}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35325}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','4b2e16580fe6436aa3e37813c83fde98',''), ('24795','{35326}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35327}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','6cf5bdc92724485ba64f5d06b01f4656',''), ('24796','{35328}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35329}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','2218bd775d8c421992346f40d0b38fa4',''), ('24797','{35330}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35331}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','093386c3b35f45bab6cea6d6396064b1',''), ('24798','{35332}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35333}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','17ac58cd999d49f1ae31bc6a9280f887',''), ('24799','{35334}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35335}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','4ec904a360ff48668e5273ba4dd223fa',''), ('24800','{35336}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35337}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','c8dcfe797232437991ab8da001e9855e',''), ('24801','{35338}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35339}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','90cea4e309944224abe0052a9eeb2e59',''), ('24802','{35340}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35341}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','b0718bee8c8d422683e5f9f2915a35c0',''), ('24803','{35342}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35343}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','bb57907f2cec4eeda6e7ace60d90a2f3',''), ('24804','{35344}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35345}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','7c1161969d7f490fba58d113a7cf9da2',''), ('24805','{35346}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35347}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','cc60802009c449eaa49992f38c176f8c',''), ('24806','{35348}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35349}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','f83dac15be7a4f6a891406fe1e307074',''), ('24807','{35350}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35351}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','7044f89f39fd4fa7ba1bc790e86fc960',''), ('24808','{35352}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35353}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','2cc0f3a6c39340b78e6b1795b90ee052',''), ('24809','{35354}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35355}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','5f460952122241d5900e83f68e097e32',''), ('24810','{35356}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35357}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','e729643fce2d43d8b5de5a5f3d0fa184',''), ('24811','{35358}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35359}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','23eaad92fd06421a94ed77347ed7805f',''), ('24812','{35360}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35361}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','e596c08e59974762a21d5e7c2bb06eb5',''), ('24813','{35362}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35363}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','8faa5c80c64545b8bde41c02bf450288',''), ('24814','{35364}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35365}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','6e77737e71a640b1b0832fb8a317a848',''), ('24815','{35366}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35367}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','9ea2d3a683994dcc816d7210cfda6f38',''), ('24816','{35368}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35369}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','82fc4ea36e9e4a388e38bf4fb5d46148',''), ('24817','{35370}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35371}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','5e2a48b70bb5491791e1e796d9b57700',''), ('24818','{35372}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35373}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','6064422d708f4ee3a54dd0dccd6c2ef4',''), ('24819','{35374}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35375}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','b61c653ea25c47f397288e7a6c88c343',''), ('24820','{35376}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35377}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','7f1abc774f4e48928a52a755f9655d33',''), ('24821','{35378}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35379}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','4c3b3b0c4e4c4903856c673ed34c32b2',''), ('24822','{35380}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35381}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','46ce97f9fd33406996e21d7c4cfe4615',''), ('24823','{35382}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35383}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','963f7342ba58427189be8e5d482bd1db',''), ('24824','{35384}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35385}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','3bc320302ce64512bf5cabdddbf8827a',''), ('24825','{35386}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35387}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','2341cc2581aa47629ba79efb0dde8f12',''), ('24826','{35388}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35389}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','310fc63d695d4d79adb61b152467dc6b',''), ('24827','{35390}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35391}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','45d51b9e79ce4086934b7a93837855fd',''), ('24828','{35392}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35393}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','84ea7da850864101a35eb96acb475dec',''), ('24829','{35394}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35395}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','43a5c40a58f541faa120a514dc47451e',''), ('24830','{35396}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35397}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','bb4a5e936ba74269b8a8fa2e1ca2b27e',''), ('24831','{35398}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35399}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','46754e9a44b04fdeabc9d6a1370505dc',''), ('24832','{35400}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35401}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','5b25032a33c3443585d74f3412f13d3e',''), ('24833','{35402}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35403}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','44f2b8515564492c9b2e68985f753cf9',''), ('24834','{35404}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35405}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','cd9978c41951477c9d3ef44f7d4d717c',''), ('24835','{35406}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35407}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','7475c0fe7374472db189a828aeca7b60',''), ('24836','{35408}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35409}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','225e0c1c96c94a32a84511107b71ea6d',''), ('24837','{35410}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35411}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','b5300fdf6fe8405d84fdd7a8821ac504',''), ('24838','{35412}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35413}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','e208be80d815435ea6fc35df960bd2f6',''), ('24839','{35414}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35415}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','7153cf7699df438d8d04e5d3163e37b3',''), ('24840','{35416}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35417}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','30adf35ae2764123a80f64e81c11c9dd',''), ('24841','{35418}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35419}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','788f637f7c28499cb0b8227bbcfddbf6',''), ('24842','{35420}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35421}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','f2952ccdadf0474a85e626eeae67ee8f',''), ('24843','{35422}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35423}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','fbd7daacdcde41fa9395a3dba62c7365',''), ('24844','{35424}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35425}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','732a162ce6aa424e8660882cccfaf40b',''), ('24845','{35426}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35427}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','64daf72dc6824976bbc28c0e76b9318c',''), ('24846','{35428}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35429}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','3a6e8742e68d4e4cb77931acec6202f2',''), ('24847','{35430}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35431}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','70bcead0c721429ea2140eb12e32e5a9',''), ('24848','{35432}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35433}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','04687ea5280b4448844b17afa9c655c6',''), ('24849','{35434}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35435}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','62fd1bbcbe9e4db7851ad08b75d9f54f',''), ('24850','{35436}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35437}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','9d035691d2344fa0bd64e6724828626e',''), ('24851','{35438}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35439}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','869eb891b56e4d499586a9e40fdb5f95',''), ('24852','{35440}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35441}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','5d18aa2f47154e999e9077f3cb06e3ed',''), ('24853','{35442}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35443}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','93deb16896994ddf8509332b293f078a',''), ('24854','{35444}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35445}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','bbe383abfe5a48ad8a0b4a9c943cfd11',''), ('24855','{35446}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35447}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','915d9a838c0945d0bad74aa2fb79da79',''), ('24856','{35448}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35449}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','9b3e19c885d34128b47b87d071d959f1',''), ('24857','{35450}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35451}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','921ad5dc74e44e139a523ef11dd2743e',''), ('24858','{35452}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35453}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','0501798bf83342c5ac1f960649163a58',''), ('24859','{35454}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35455}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','a1116b45b6e341dabc44b226c4741f97',''), ('24860','{35456}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35457}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','7b61f191e2634044a81981627fb52483',''), ('24861','{35458}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35459}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','c62859952edc45fd8c09a267e6badab9',''), ('24862','{35460}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35461}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','9980a1f6561c4b16935e204dfdf67c65',''), ('24863','{35462}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35463}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','c0be5c2bae7f45e780addd984a3f77c4',''), ('24864','{35464}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35465}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','ee368004b1f24293b8162d78b456a6d0',''), ('24865','{35466}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35467}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','75e1b534632a42d08535fc863c280536',''), ('24866','{35468}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35469}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','117c3a91044a4d6da15b235017caf99f',''), ('24867','{35470}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35471}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','b20c703b353f444bb6d77d45433108fe',''), ('24868','{35472}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35473}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','f63a8665f1bb4fce930c8e6d68ca9bc4',''), ('24869','{35474}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35475}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','61ef8b6e39fa4dfa9ad0398acab924a9',''), ('24870','{35476}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35477}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','92626f1037574adf9e25e175b6e5781b',''), ('24871','{35478}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35479}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','8c905104ec08406bbb9eef074386d533',''), ('24872','{35480}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35481}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','b78a65cb7a81475390b652bb998bad77',''), ('24873','{35482}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35483}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','d86c54c62fcd456aa879a23aa539fdc7',''), ('24874','{35484}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35485}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','0ce7d965b0ce4e259dad9ef1c964cf75',''), ('24875','{35486}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35487}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','e6e1ac1371c8479a8c9b30513f10c57b',''), ('24876','{35488}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35489}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','5f04a5beb30c4fc48c3553f41631ec8e',''), ('24877','{35490}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35491}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','1dc430575d5546c188615191fdc50ae7',''), ('24878','{35492}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35493}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','04ef546dd200411d84f167a5e1ffd8ce',''), ('24879','{35494}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35495}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','f24798b46eea407cb2bd9e38068e68d9',''), ('24880','{35496}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35497}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','81e424e84231418d888ca1a9126c29fa',''), ('24881','{35498}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35499}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','53bc0055eacf4e9d931498e89811e86e',''), ('24882','{35500}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35501}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','9635cda9637b4216adb68675640639c2',''), ('24883','{35502}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35503}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','216c4b7093ce4b1688c24031c61b9e53',''), ('24884','{35504}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35505}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','2c1aefbb49d84198b9dc5b633cc510cb',''), ('24885','{35506}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35507}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','e56cea52d6d64a62a02856a74e32601b',''), ('24886','{35508}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35509}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','77015cbdfaf8411ea08a78982b15885c',''), ('24887','{35510}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35511}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','c3a882d877f94cf7965984128c314f99',''), ('24888','{35512}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35513}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','9c97fd1e8cb94e53a8f8d1bd15b94dcf',''), ('24889','{35514}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35515}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','d4d0bf767e7741fc98d9f930ade655f3',''), ('24890','{35516}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35517}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','4299f4f1519a46ed86d4727cefa01c1e',''), ('24891','{35518}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35519}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','3cc5640941bc491e9cc23cc9b467952e',''), ('24892','{35520}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35521}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','420f9002f53646729666658f193c733e',''), ('24893','{35522}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35523}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','af33ef97881a4ab48686aa63676c7a2d',''), ('24894','{35524}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35525}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','8aa51a89c64f4626aa8646f9e1717669',''), ('24895','{35526}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35527}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','e9ab4a4bc78e47a19409d2bfe4d1d5fa',''), ('24896','{35528}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35529}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','1e81f6308a2748adbed17064d648b566',''), ('24897','{35530}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35531}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','3a679a3d653d42cabed24e238fa01c38',''), ('24898','{35532}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35533}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','88fc1612d1b14108a1d90313fa1cb0e7',''), ('24899','{35534}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35535}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','048ffb5e510746e6b56daec287db6739',''), ('24900','{35536}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35537}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','fcc70d3662ac49499a0f5bb68a13c007',''), ('24901','{35538}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35539}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','fac1eacc650b485faa1f05207a865ed6',''), ('24902','{35540}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35541}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','c604329ca3374ed5b29339c10070b9de',''), ('24903','{35542}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35543}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','37927a5941e245d9bce883ce155fefdf',''), ('24904','{35544}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35545}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','4f2a304aba6e45c7a0186d8b069be904',''), ('24905','{35546}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35547}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','7ab0db29abff475d908e9db2e86ee16a',''), ('24906','{35548}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35549}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','ae7e34f53a3d407d86484baffad515fe',''), ('24907','{35550}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35551}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','b9eee5f17d084ba7b6971aaf6165b313',''), ('24908','{35552}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35553}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','64193d2ccc1c4813b8585b5d3d81f962',''), ('24909','{35554}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35555}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','be0ff2612a014f2db296b4066c22cfdd',''), ('24910','{35556}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35557}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','3035592657fe4a6a89fcacbd05f84573',''), ('24911','{35558}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35559}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','5ae663e6743744bba8606334ab17eb60',''), ('24912','{35560}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35561}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','635d0ddc5ba6442bbb51ea451f502662',''), ('24913','{35562}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35563}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','d009789ee3204089bbd1e60b23fa757f',''), ('24914','{35564}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35565}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','51d2ea964a684bfa85e509e549be251b',''), ('24915','{35566}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35567}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','1cc47452c533402596797c5c6ae8351f',''), ('24916','{35568}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35569}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','49bf5605212f44e18a0a9f0e4afde82b',''), ('24917','{35570}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35571}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','d7d5fa71143e4601b41d24ce85031ed2',''), ('24918','{35572}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35573}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','2478f32c04984bd8a53cb9211953d7c2',''), ('24919','{35574}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35575}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','1c270c25cfdb4b44b35ad7115105dfbc',''), ('24920','{35576}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35577}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','3941319b74e64d8a921714b4748003f1',''), ('24921','{35578}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35579}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','4b669ac2471b442dbfd82e70b0dba586',''), ('24922','{35580}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35581}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','a3bcec91e98349fa9d53cb96aeb377ac',''), ('24923','{35582}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35583}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','9a03df6c9c3141e4845382ea5ae2d609',''), ('24924','{35584}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35585}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','f53807b0daa24b2f9bd3d6ab755008fb',''), ('24925','{35586}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35587}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','f7f22555f0524fab8addb969f565b12b',''), ('24926','{35588}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35589}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','a291daa1248f4bfca3bdded26cdd3562',''), ('24927','{35590}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35591}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','4952d45ee57747de90b71e7073da13bc',''), ('24928','{35592}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35593}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','d6ae3c415fa842339e6f1085296fdca3',''), ('24929','{35594}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35595}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','3baba3844f1644e29fa20addb4c483e4',''), ('24930','{35596}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35597}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','f81d3388b38845f1921e30332a487335',''), ('24931','{35598}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35599}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','b7ab6a1e8efd4accaeef15ed26b66308',''), ('24932','{35600}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35601}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','5a24a5c02664439da2ee76753e25ec8a',''), ('24933','{35602}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35603}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','c21ad0f3058d4a57a1dc137576217655',''), ('24934','{35604}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35605}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','de90614e78854f81822379c9b5ffc74e',''), ('24935','{35606}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35607}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','11e619b8b2144751995926ecc71add69',''), ('24936','{35608}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35609}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','931a8a585db94a6eadbaa2cc6ef7c730',''), ('24937','{35610}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35611}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','89ccd80168694f6cb7742f79ab2f02ae',''), ('24938','{35612}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35613}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','a27c393597ac4618846b7c9d906167c7',''), ('24939','{35614}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35615}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','648519d0cc5b4795ab917893a71f1872',''), ('24940','{35616}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35617}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','48244ed562b144c192177e64b06d268c',''), ('24941','{35618}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35619}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','1b239ec1f0834b6ebe1ebc974121504b',''), ('24942','{35620}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35621}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','d31b9428aef346d49ec00acd2388f657',''), ('24943','{35622}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35623}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','21775fd4ca0143838ea2c2c7c16c4b75',''), ('24944','{35624}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35625}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','7c75f3db8a8341819bb4455d4a6440e3',''), ('24945','{35626}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35627}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','3247cd9062894b59bb736c3c75bf2f67',''), ('24946','{35628}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35629}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','ce2928b0b45a4e74976c4ebb01f769b6',''), ('24947','{35630}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35631}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','9401397315604181973ac4a5e0c6a5ba',''), ('24948','{35632}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35633}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','466053cdfce44600bf1ff0ced3c4fce4',''), ('24949','{35634}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35635}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','0a16b13ef86e4b968690de77d4fdd851',''), ('24950','{35636}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35637}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','26ad73c494494a83a6b7eab785efe3ce',''), ('24951','{35638}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35639}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','19c2754a812c48bd87fd250aac01b97b',''), ('24952','{35640}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35641}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','fada5a58781c4684b70e7aea77a96040',''), ('24953','{35642}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35643}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','87d04ed8af6040f1b2230244b7ffcc18',''), ('24954','{35644}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35645}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','e5ca03c450eb4ccfa4dc94de0d6eeaaf',''), ('24955','{35646}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35647}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','3b40b247aeb14a6d833a3c67594938ae',''), ('24956','{35648}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35649}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','cf13c4a9be634dd09d1f14a9774a0009',''), ('24957','{35650}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35651}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','16f478f052aa47328ac6e23e778d353c',''), ('24958','{35652}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35653}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','8b2e3dedb9884c81a8370732a1f3a367',''), ('24959','{35654}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35655}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','c5c22051e035432eba2ad5f77da002c0',''), ('24960','{35656}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35657}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','9b49825517f44a7fa37d2d96abd8848b',''), ('24961','{35658}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35659}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','46615aebb0e2414b9094e5e25c0a6314',''), ('24962','{35660}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35661}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','db07d94668634efca75ab714cc2cf083',''), ('24963','{35662}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35663}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','664ab6cc5ce044af8d6899473ea0a8b1',''), ('24964','{35664}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35665}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','f81db05dfee24aaaa8cc27aca30e7455',''), ('24965','{35666}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35667}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','edab3732eb9a41f4b42da927ee8996a7',''), ('24966','{35668}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35669}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','0ef1463290ce45ab83838acb51e9d5ab',''), ('24967','{35670}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35671}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','725caccdc4fe495e93e2cfa438f52674',''), ('24968','{35672}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35673}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','ea9e2193843d4a71bd24bead9394685d',''), ('24969','{35674}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35675}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','ac521e5e0c9d416ba0f61563a85a66ff',''), ('24970','{35676}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35677}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','b5a55e90742148ae91fb30394d79a50a',''), ('24971','{35678}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35679}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','f5ccdff135ee46ed81889d2882d54b3a',''), ('24972','{35680}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35681}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','dd21e53afab64548ae180079d705dee5',''), ('24973','{35682}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35683}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','e51ab41e7ac142afabac3ddbe622fc0b',''), ('24974','{35684}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35685}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','8046c8fbb72f4cf3afe0154fc2e41d6d',''), ('24975','{35686}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35687}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','3a4f8decfaf44650bb4066141e36f42a',''), ('24976','{35688}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35689}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','db6e52bc27714f51bc61e7cc3c3ebad1',''), ('24977','{35690}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35691}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','9e1b2270bc144295a7b0edc2ba98c81b',''), ('24978','{35692}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35693}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','27e033be9fd94be2bbc3969e9cb51ac4',''), ('24979','{35694}>{$TEMP_CRIT:"CPU"}','MikroTik: CPU: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35695}<{$TEMP_CRIT:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"}','edcc83694dc847f8a8dcb7e192f96404',''), ('24980','{35696}>{$TEMP_WARN:"CPU"}','MikroTik: CPU: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35697}<{$TEMP_WARN:"CPU"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"}','1c380934165343a68345c761de9cbdb5',''), ('24981','{35698}<{$TEMP_CRIT_LOW:"CPU"}','MikroTik: CPU: Temperature is too low','','0','3','',NULL,'0','2','1','{35699}>{$TEMP_CRIT_LOW:"CPU"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"}','47a89879a7db47e9bf598e27f7c084e7',''), ('24982','{35700}>{$TEMP_CRIT:"Device"}','MikroTik: Device: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35701}<{$TEMP_CRIT:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"}','21afb343688c4c0e8189a7dbc4f441e1',''), ('24983','{35702}>{$TEMP_WARN:"Device"}','MikroTik: Device: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as temperature sensor status if available.',NULL,'0','2','1','{35703}<{$TEMP_WARN:"Device"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"}','0ba64ff53885473ca8dcd333a770a7ed',''), ('24984','{35704}<{$TEMP_CRIT_LOW:"Device"}','MikroTik: Device: Temperature is too low','','0','3','',NULL,'0','2','1','{35705}>{$TEMP_CRIT_LOW:"Device"}+3','0','','0','Current value: {ITEM.LASTVALUE1}','0','MikroTik: Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"}','cdbfc8fabf9f45fc95dedba327e30a1d',''), ('24985','length({35706})>0','Pure Storage FlashArray: There are errors in the ''Get storage array data'' metric','','0','2','An error occurred when trying to get array data from the Pure Storage FlashArray API.',NULL,'0','0','0','','0','','0','','0','','99e1a8dbf600466d99d898806a0d020a',''), ('24986','length({35707})>0','Pure Storage FlashArray: Authentication has failed','','0','3','An error occurred when trying to perform authentication in the Pure Storage FlashArray API.',NULL,'0','0','0','','0','','0','','0','','748fc12e196f429e8fe04a1ca27779f9',''), ('24987','length({35708})>0','Pure Storage FlashArray: There are errors in the ''Get certificates'' metric','','0','2','An error occurred when trying to get certificate data from the Pure Storage FlashArray API.',NULL,'0','0','0','','0','','0','','0','','dc6de5a835ac4e7e91c34f7b711957ce',''), ('24988','length({35709})>0','Pure Storage FlashArray: There are errors in the ''Get hardware data'' metric','','0','2','An error occurred when trying to get hardware data from the Pure Storage FlashArray API.',NULL,'0','0','0','','0','','0','','0','','0ee01011e18b4304b3baff456fa62787',''), ('24989','length({35710})>0','Pure Storage FlashArray: There are errors in the ''Get hosts'' metric','','0','2','An error occurred when trying to get host data from the Pure Storage FlashArray API.',NULL,'0','0','0','','0','','0','','0','','d72a25739d1d4a67947115fa1bad84a4',''), ('24990','length({35711})>0','Pure Storage FlashArray: There are errors in the ''Get network interfaces'' metric','','0','2','An error occurred when trying to get network interface data from the Pure Storage FlashArray API.',NULL,'0','0','0','','0','','0','','0','','577eaf4cb56345aca0a901da2fdaa7b1',''), ('24991','{35712}=0','Pure Storage FlashArray: Phone Home has been disabled','','0','2','Phone Home connects to the Pure1 service and uploads logs for continuous health monitoring.',NULL,'0','0','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','5a670b7f0c3e4dc9a5e2fff4cedf3810',''), ('24992','length({35713})>0','Pure Storage FlashArray: There are errors in the ''Get pods'' metric','','0','2','An error occurred when trying to get pod data from the Pure Storage FlashArray API.',NULL,'0','0','0','','0','','0','','0','','8eddd157ab93413cac5ba6a7cca2ce93',''), ('24993','{35714}=1','Pure Storage FlashArray: RemoteAssist has been enabled','','0','4','Purity''s administrator-controlled RemoteAssist feature enables a Technical Support Engineer to communicate directly with the FlashArray via a secure link, effectively establishing an additional administrative session for the duration of the diagnosis and service.',NULL,'0','0','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','eb043244987b4124b07018e94d99cd21',''), ('24994','length({35715})>0','Pure Storage FlashArray: There are errors in the ''Get volumes'' metric','','0','2','An error occurred when trying to get volume data from the Pure Storage FlashArray API.',NULL,'0','0','0','','0','','0','','0','','1ffc3c34fe294c6caf0936169b836627',''), ('24995','{35716}>0','Pure Storage FlashArray: Critical alerts have been detected','','0','4','Recommended to refer to the Pure Storage FlashArray web interface to check the alert details.',NULL,'0','0','0','','0','','0','Alerts number: {ITEM.LASTVALUE1}','0','','a56746a2863b4615ab0ed53f9396533d',''), ('24996','length({35717})>0','Pure Storage FlashArray: There are errors in the ''Get alerts data'' metric','','0','2','An error occurred when trying to get alert data from the Pure Storage FlashArray API.',NULL,'0','0','0','','0','','0','','0','','35cfac4bfa9a41c9bf61129d212cee27',''), ('24997','{35718}>0','Pure Storage FlashArray: Warning alerts have been detected','','0','2','Recommended to refer to the Pure Storage FlashArray web interface to check the alert details.',NULL,'0','0','0','','0','','0','Alerts number: {ITEM.LASTVALUE1}','0','','0f53729b5ba1413b87b40a67c930db93',''), ('24998','length({35719})>0','Pure Storage FlashArray: There are errors in the ''Get storage array data'' metric','','0','2','An error occurred when trying to get array data from the Pure Storage FlashArray API.',NULL,'0','0','0','','0','','0','','0','','4ca738840e004d2cb4f7e5839fe87d86',''), ('24999','length({35720})>0','Pure Storage FlashArray: Authentication has failed','','0','3','An error occurred when trying to perform authentication in the Pure Storage FlashArray API.',NULL,'0','0','0','','0','','0','','0','','bf2b0cb907c64c01bdaf4c26daaba937',''), ('25000','length({35721})>0','Pure Storage FlashArray: There are errors in the ''Get certificates'' metric','','0','2','An error occurred when trying to get certificate data from the Pure Storage FlashArray API.',NULL,'0','0','0','','0','','0','','0','','8f8183d63de847e28abc795e6f5ae1d0',''), ('25001','length({35722})>0','Pure Storage FlashArray: There are errors in the ''Get hardware data'' metric','','0','2','An error occurred when trying to get hardware data from the Pure Storage FlashArray API.',NULL,'0','0','0','','0','','0','','0','','c5afee5d034d4f78abe061d5f1774745',''), ('25002','length({35723})>0','Pure Storage FlashArray: There are errors in the ''Get hosts'' metric','','0','2','An error occurred when trying to get host data from the Pure Storage FlashArray API.',NULL,'0','0','0','','0','','0','','0','','6263e31c79bd4c348e5f5474e142f425',''), ('25003','length({35724})>0','Pure Storage FlashArray: There are errors in the ''Get network interfaces'' metric','','0','2','An error occurred when trying to get network interface data from the Pure Storage FlashArray API.',NULL,'0','0','0','','0','','0','','0','','25743805dce04ccfa21f4714cb96ec31',''), ('25004','{35725}=0','Pure Storage FlashArray: Phone Home has been disabled','','0','2','Phone Home connects to the Pure1 service and uploads logs for continuous health monitoring.',NULL,'0','0','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','9f233a1e8a96439c8e82b93e44d24219',''), ('25005','length({35726})>0','Pure Storage FlashArray: There are errors in the ''Get pods'' metric','','0','2','An error occurred when trying to get pod data from the Pure Storage FlashArray API.',NULL,'0','0','0','','0','','0','','0','','d0c9b57785a84604893b92e0bed0c7ec',''), ('25006','{35727}=1','Pure Storage FlashArray: RemoteAssist has been enabled','','0','4','Purity''s administrator-controlled RemoteAssist feature enables a Technical Support Engineer to communicate directly with the FlashArray via a secure link, effectively establishing an additional administrative session for the duration of the diagnosis and service.',NULL,'0','0','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','8991c7d3ca95466da03f4ac44fccb872',''), ('25007','length({35728})>0','Pure Storage FlashArray: There are errors in the ''Get support information'' metric','','0','2','An error occurred when trying to get support information from the Pure Storage FlashArray API.',NULL,'0','0','0','','0','','0','','0','','7bd0f901efc14b43b11809e82b6c2324',''), ('25008','length({35729})>0','Pure Storage FlashArray: There are errors in the ''Get volumes'' metric','','0','2','An error occurred when trying to get volume data from the Pure Storage FlashArray API.',NULL,'0','0','0','','0','','0','','0','','86ba540265d04be4bd86103b2d67f65e',''), ('25009','{35730} > 0 and ({35730} - now()) / 86400 < {$PURE.FLASHARRAY.CERT.EXPIRY.WARN}','Pure Storage FlashArray: Certificate [{#NAME}]: SSL certificate expires soon','','0','3','Consider reissuing and replacing the {#NAME} certificate.',NULL,'0','2','0','','0','','0','Expiration date: {ITEM.LASTVALUE1}','0','Pure Storage FlashArray: Certificate [{#NAME}]: SSL certificate expires soon (less than {$PURE.FLASHARRAY.CERT.EXPIRY.WARN} days)','1d5940586b7245908c4aa60f56458941',''), ('25010','{35731}<>{35732}','Pure Storage FlashArray: Controller [{#NAME}]: Mode has been changed','','0','3','The mode of the {#NAME} controller has changed.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','a31d230425d448bbb5f4963f9478893b',''), ('25011','{35733}<>1 and {35733}<>2','Pure Storage FlashArray: Controller [{#NAME}]: Controller is not ready','','0','3','Controller {#NAME} status is not "ready" or "updating".',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','7dfab62da75440e0bed46d02133a0f8f',''), ('25012','{35734}<>0 and {35734}<>2 and {35734}<>3','Pure Storage FlashArray: Drive [{#NAME}]: Problem on the drive','','0','3','Drive {#NAME} status is not "healthy", "updating", or "unused".',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','Pure Storage FlashArray: Drive [{#NAME}]: Drive is not healthy or is not ready for use','f29ae0ee3d7444a98183590045d53aa1',''), ('25013','{35735}<>0','Pure Storage FlashArray: Fan [{#NAME}]: Fan is not healthy','','0','3','Fan {#NAME} status is not "ok".',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','c2ec7d246be44c60bc86338ddee9e377',''), ('25014','{35736}<0 and {35737}>0','Pure Storage FlashArray: Interface [{#IFNAME}]: Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({35736}>0 and {35738}>0)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','d2655e4b69fb4c7194efe5020247cdc8',''), ('25015','{35739}<>0','Pure Storage FlashArray: Power supply [{#NAME}]: Power supply is not healthy','','0','3','Power supply component {#NAME} status is not "ok".',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','2b4700d8728f43f09f457bffc1f0f2f6',''), ('25016','{35740}<>0','Pure Storage FlashArray: Sensor [{#NAME}]: Sensor is not healthy','','0','3','Temperature sensor {#NAME} status is not "ok".',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','bdf2eaa567dc4c758f531d5d1126bbcd',''), ('25017','{35741}<>{35742}','Pure Storage FlashArray: Volume [{#NAME}]: Volume size has been changed','','0','2','Physical space occupied by the {#NAME} volume has been changed.',NULL,'0','2','0','','0','','0','Current size: {ITEM.LASTVALUE1}','0','','ef1f2b670134476386c847a817ea1eb2',''), ('25018','{35743} > 0 and ({35743} - now()) / 86400 < {$PURE.FLASHARRAY.CERT.EXPIRY.WARN}','Pure Storage FlashArray: Certificate [{#NAME}]: SSL certificate expires soon','','0','3','Consider reissuing and replacing the {#NAME} certificate.',NULL,'0','2','0','','0','','0','Expiration date: {ITEM.LASTVALUE1}','0','Pure Storage FlashArray: Certificate [{#NAME}]: SSL certificate expires soon (less than {$PURE.FLASHARRAY.CERT.EXPIRY.WARN} days)','85724fcc67f84a9a9634ac052e58062e',''), ('25019','{35744}<>{35745}','Pure Storage FlashArray: Controller [{#NAME}]: Mode has been changed','','0','3','The mode of the {#NAME} controller has changed.',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','2c47ef8f79394ffdb0927de83b46d35d',''), ('25020','{35746}<>1 and {35746}<>2','Pure Storage FlashArray: Controller [{#NAME}]: Controller is not ready','','0','3','Controller {#NAME} status is not "ready" or "updating".',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','42a734f18ddb415d9417beeef8526d1d',''), ('25021','{35747}<>0 and {35747}<>2 and {35747}<>3','Pure Storage FlashArray: Drive [{#NAME}]: Problem on the drive','','0','3','Drive {#NAME} status is not "healthy", "updating", or "unused".',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','Pure Storage FlashArray: Drive [{#NAME}]: Drive is not healthy or is not ready for use','f635d481852d4c5e8ba12e7091048f11',''), ('25022','{35748}<>0','Pure Storage FlashArray: Fan [{#NAME}]: Fan is not healthy','','0','3','Fan {#NAME} status is not "ok".',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','04a080d1563f4b50972fcb8f3bf92d66',''), ('25023','{35749}<0 and {35750}>0','Pure Storage FlashArray: Interface [{#IFNAME}]: Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({35749}>0 and {35751}>0)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','88475f72064649679937d01421dabb1d',''), ('25024','{35752}<>0','Pure Storage FlashArray: Power supply [{#NAME}]: Power supply is not healthy','','0','3','Power supply component {#NAME} status is not "ok".',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','9288ebad9d474acdb26897ff197a5776',''), ('25025','{35753}<>0','Pure Storage FlashArray: Sensor [{#NAME}]: Sensor is not healthy','','0','3','Temperature sensor {#NAME} status is not "ok".',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','04b761e9af01443ca2541828bb558431',''), ('25026','{35754}<>{35755}','Pure Storage FlashArray: Volume [{#NAME}]: Volume size has been changed','','0','2','Physical space occupied by the {#NAME} volume has been changed.',NULL,'0','2','0','','0','','0','Current size: {ITEM.LASTVALUE1}','0','','df02c79ca98240408376ab80921e6a32',''), ('25027','{35757}=1','Azure backup jobs: Azure vault is degraded','','0','3','The resource is in a degraded state.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','68ee9193a98c40778ee57ab2256082ec',''), ('25028','{35758}=3','Azure backup jobs: Azure vault is in unknown state','','0','2','The resource state is unknown.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','40b756bf271d46da94d3a9de2b892d88',''), ('25029','{35759}=2','Azure backup jobs: Azure vault is unavailable','','0','4','The resource state is unavailable.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','cecb9bb0945f4f21bb2ad3df02307641',''), ('25030','length({35760})>0','Azure backup jobs: There are errors in requests to API','','0','3','Zabbix has received errors in response to API requests.',NULL,'0','0','0','','0','','0','Error: {ITEM.LASTVALUE1}','0','','d70f2e4edb38492ea019abbfc1cbb82a',''), ('25031','{35761}>0','Azure backup jobs: Backup configuration job has appeared','','0','1','New backup configuration job has appeared.',NULL,'0','0','2','','0','','1','Current amount: {ITEM.LASTVALUE1}','0','','881f3faf12da40458266c62f047c3c1e',''), ('25032','{35762}>0','Azure backup jobs: Backup data deletion job has appeared','','0','2','New backup data deletion job has appeared.',NULL,'0','0','2','','0','','1','Current amount: {ITEM.LASTVALUE1}','0','','7d4a36701e3c4384991858c34017b04f',''), ('25033','{35763}>0','Azure backup jobs: Restore job has appeared','','0','3','New restore job has appeared.',NULL,'0','0','2','','0','','1','Current amount: {ITEM.LASTVALUE1}','0','','04f76f2f21a043169ac1fa11d42f72f3',''), ('25034','{35764}=6','Azure backup jobs: Job cancelled [{#JOB.NAME}]','','0','3','Job has received "Cancelled" status.',NULL,'0','2','0','','0','','1','Current status: {ITEM.LASTVALUE1}','0','Azure backup jobs: Job type [{#JOB.OPERATION}] for [{#JOB.FRIENDLY.NAME}] with ID [{#JOB.NAME}] has cancelled.','a3a8cb87e41546b0a6550375578cc651',''), ('25035','{35765}=4','Azure backup jobs: Job completed with warnings [{#JOB.NAME}]','','0','2','Job has received "Completed with warnings" status.',NULL,'0','2','0','','0','','1','Current status: {ITEM.LASTVALUE1}','0','Azure backup jobs: Job type [{#JOB.OPERATION}] for [{#JOB.FRIENDLY.NAME}] with ID [{#JOB.NAME}] has completed with warnings.','475a62e73f9c4a2abef6320c6909e7fa',''), ('25036','{35766}=7','Azure backup jobs: Job expired [{#JOB.NAME}]','','0','3','Job has received "Expired" status.',NULL,'0','2','0','','0','','1','Current status: {ITEM.LASTVALUE1}','0','Azure backup jobs: Job type [{#JOB.OPERATION}] for [{#JOB.FRIENDLY.NAME}] with ID [{#JOB.NAME}] has expired.','b7e43dbcd4914f228bb0687f585951ea',''), ('25037','{35767}=5','Azure backup jobs: Job failed [{#JOB.NAME}]','','0','4','Job has received "Failed" status.',NULL,'0','2','0','','0','','1','Current status: {ITEM.LASTVALUE1}','0','Azure backup jobs: Job type [{#JOB.OPERATION}] for [{#JOB.FRIENDLY.NAME}] with ID [{#JOB.NAME}] has failed.','f340de23cd004f1b94239dbcf7ec136e',''), ('25038','{35768}=0','Azure backup jobs: Job status unknown [{#JOB.NAME}]','','0','3','Job has received "Unknown" status.',NULL,'0','2','0','','0','','1','Current status: {ITEM.LASTVALUE1}','0','Azure backup jobs: Job type [{#JOB.OPERATION}] for [{#JOB.FRIENDLY.NAME}] with ID [{#JOB.NAME}] is in unknown status.','860b6d8bbefd4daba537e517dfb94007',''), ('25039','{35769}=0','TrueNAS CORE: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','2cf51ae664644a7f93950c3366d6f6b9',''), ('25040','{35770}>{$ICMP_LOSS_WARN} and {35770}<100','TrueNAS CORE: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','8593009de6804a56b3523f8ec53b784e',''), ('25041','{35771}>{$ICMP_RESPONSE_TIME_WARN}','TrueNAS CORE: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','d952f59905fb405dbdd807df08ae9a92',''), ('25042','{35772}<>{35773} and length({35774})>0','TrueNAS CORE: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','TrueNAS CORE: System name has changed (new name: {ITEM.VALUE})','4c3b96b22fa345c3a42fe17ed877b527',''), ('25043','{35775}=0','TrueNAS CORE: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','4c5e21bdc561429e9ce4f6f105aae7f6',''), ('25044','({35776}>0 and {35776}<10m) or ({35776}=0 and {35777}<10m)','TrueNAS CORE: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','TrueNAS CORE: {HOST.NAME} has been restarted (uptime < 10m)','6864f43129064a0bba5e659b514eb8d9',''), ('25045','{35778}<0 and {35779}>0 and ( {35780}=6 or {35780}=7 or {35780}=11 or {35780}=62 or {35780}=69 or {35780}=117 ) and ({35781}<>2)','TrueNAS CORE: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({35778}>0 and {35782}>0) or ({35781}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','486e833486c240379f6c7cb34172a402',''), ('25046','({35783}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{35784} or {35785}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{35784}) and {35784}>0','TrueNAS CORE: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{35783}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{35784} and {35785}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{35784}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','TrueNAS CORE: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','3b6a73abbc7943c687d579acedb84393',''), ('25047','{35786}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {35787}>{$IF.ERRORS.WARN:"{#IFNAME}"}','TrueNAS CORE: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{35788}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {35789}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','TrueNAS CORE: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','8ebbfbdd56984e4eb8f52f730aaca429',''), ('25048','{$IFCONTROL:"{#IFNAME}"}=1 and {35790}=2 and ({35791}<>{35792})','TrueNAS CORE: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{35790}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','7b3d635ed17b41fc9ac242f2e010be65',''), ('25049','{35795}>{$CISCO.FTD.CPU.UTIL.WARN}','Cisco Secure FTD: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Cisco Secure FTD: High CPU utilization (over {$CISCO.FTD.CPU.UTIL.WARN}% for 15m)','e54b01b249ea43978267ca1b053732e7',''), ('25050','length({35796})>0','Cisco Secure FTD: There are errors in the ''Get device metrics'' metric','','0','2','An error occurred when trying to get device metrics from the Cisco Secure FTD API.',NULL,'0','0','0','','0','','0','','0','','64081e3e64264352a1075dcdc16d8b7a',''), ('25051','{35797} >= {$CISCO.FTD.MEMORY.UTIL.WARN}','Cisco Secure FTD: High memory utilization','','0','3','RAM utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Cisco Secure FTD: High memory utilization (over {$CISCO.FTD.MEMORY.UTIL.WARN}% for 15m)','3d5da93aed4343dc8b7e20628a37d20a',''), ('25052','length({35798})>0','Cisco Secure FTD: There are errors in the ''Get operational metrics'' metric','','0','2','An error occurred when trying to get operational metrics from the Cisco Secure FTD API.',NULL,'0','0','0','','0','','0','','0','','d955d3cd1f5f4263ac37a004e047e5d5',''), ('25053','{35799}<>{35800} and length({35801})>0','Cisco Secure FTD: Device has been replaced','','0','1','The device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Cisco Secure FTD: Device has been replaced (new serial number received)','c8c683ef77a94e37a407b4879be29245',''), ('25054','{35802}<10m','Cisco Secure FTD: Device has been restarted','','0','1','The host uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Cisco Secure FTD: {HOST.NAME} has been restarted (uptime < 10m)','887632676fba481db8dd93a977a8d256',''), ('25055','{35803}>{$CISCO.FTD.CPU.UTIL.WARN:"{#NAME}"}','Cisco Secure FTD: High CPU [{#METRIC}] utilization','','0','2','CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Cisco Secure FTD: High CPU utilization (over {$CISCO.FTD.CPU.UTIL.WARN:"{#NAME}"}% for 15m)','1c5f0b2d3e4f4a6b8c9d0e1f2a3b4c5d',''), ('25056','{35804}=3','Cisco Secure FTD: Process [{#ID}]: Status failed','','0','3','Process `{#ID}` is the `failed` status.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9ef40026c8fe4dd389b43fa2e012ce0e',''), ('25057','{35805}=1','Cisco Secure FTD: Process [{#ID}]: Status stopped','','0','3','Process `{#ID}` is the `stopped` status.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','7737377bce104953b8e80c2700492c5d',''), ('25058','{35806}>{$CISCO.FTD.IF.ERRORS.WARN:"{#IFNAME}"}','Cisco Secure FTD: Interface [{#NAME}][{#DESCR}]: High input error rate','','0','2','Recovers when below 80% of the `{$CISCO.FTD.IF.ERRORS.WARN:"{#NAME}"}` threshold.',NULL,'0','2','1','{35807}<{$CISCO.FTD.IF.ERRORS.WARN:"{#NAME}"}*0.8','0','','0','Errors in: {ITEM.LASTVALUE1}','0','Cisco Secure FTD: Interface [{#NAME}][{#DESCR}]: High input error rate ( > {$CISCO.FTD.IF.ERRORS.WARN:"{#NAME}"} for 5m)','7493917bc86741a9b9e5407d91a3c41b',''), ('25059','{35808}>{$CISCO.FTD.IF.ERRORS.WARN:"{#IFNAME}"}','Cisco Secure FTD: Interface [{#NAME}][{#DESCR}]: High output error rate','','0','2','Recovers when below 80% of the `{$CISCO.FTD.IF.ERRORS.WARN:"{#NAME}"}` threshold.',NULL,'0','2','1','{35809}<{$CISCO.FTD.IF.ERRORS.WARN:"{#NAME}"}*0.8','0','','0','Errors in: {ITEM.LASTVALUE1}','0','Cisco Secure FTD: Interface [{#NAME}][{#DESCR}]: High output error rate ( > {$CISCO.FTD.IF.ERRORS.WARN:"{#NAME}"} for 5m)','58570e2bed7f47448e1c2d43e448cc78',''), ('25060','{$CISCO.FTD.IF.CONTROL:"{#IFNAME}"}=1 and ({35810}=0)','Cisco Secure FTD: Interface [{#NAME}][{#DESCR}]: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is `down`. 2. `{$CISCO.FTD.IF.CONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to`0`, marking this interface as not important. No new trigger will be fired if this interface is down.',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a7b1dd7b06654adaa9781efb2e5b5d42',''), ('25061','{35811}>{$CISCO.FTD.MEMORY.UTIL.WARN:"{#NAME}"}','Cisco Secure FTD: High memory utilization','','0','2','Memory utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Cisco Secure FTD: High memory utilization (over {$CISCO.FTD.MEMORY.UTIL.WARN:"{#NAME}"}% for 15m)','4891c9022137417996978480d3b8b58d',''), ('25062','{35812}>{$CISCO.FTD.TEMP.CRIT:"{#SENSOR}"}','Cisco Secure FTD: Temperature is above critical threshold','','0','4','This trigger uses temperature sensor values as well as the temperature sensor status, if available.',NULL,'0','2','1','{35813}<{$CISCO.FTD.TEMP.CRIT:"{#SENSOR}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco Secure FTD: Temperature is above critical threshold: >{$CISCO.FTD.TEMP.CRIT:"{#SENSOR}"}','bc9906f695ca493ea09cdf6b3934384e',''), ('25063','{35814}>{$CISCO.FTD.TEMP.WARN:"{#SENSOR}"}','Cisco Secure FTD: Temperature is above warning threshold','','0','2','This trigger uses temperature sensor values as well as the temperature sensor status, if available.',NULL,'0','2','1','{35815}<{$CISCO.FTD.TEMP.WARN:"{#SENSOR}"}-3','0','','0','Current value: {ITEM.LASTVALUE1}','0','Cisco Secure FTD: Temperature is above warning threshold: >{$CISCO.FTD.TEMP.WARN:"{#SENSOR}"}','1505adc302134e21bb6d2ebf881e27c4',''), ('25064','{35816}>{$CISCO.FTD.FS.PUSED.WARN:"{#FSNAME}"}','Cisco Secure FTD: FS [{#FSNAME}][{#FSMOUNT}]: Space is low','','0','2','The trigger expression is based on the current used and maximum available space. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Cisco Secure FTD: FS [{#FSNAME}][{#FSMOUNT}]: Space is low (utilization is over {$CISCO.FTD.FS.PUSED.WARN:"{#FSNAME}"}% for 15m)','687ebffa0c14403398cde19620cc6627',''), ('25065','length({35819})>0','Meraki: There are errors in ''Get inventory data'' metric','','0','2','',NULL,'0','0','0','','0','','0','','0','','af0fa91e3e03415683c3fa2761ad7328',''), ('25066','({35827} < {$ELASTICSEARCH.SINGLE.NODE.JVM.SPACE.MIN}) and {35828} = 1','Elasticsearch: Cluster does not have enough space (single node)','','0','4','The total number of bytes available to JVM in the file store is less than `{$ELASTICSEARCH.SINGLE.NODE.JVM.SPACE.MIN}`. This is the actual amount of free disk space the selected Elasticsearch node can use.',NULL,'0','0','0','','0','','0','','0','Elasticsearch: Space available to JVM (less than {$ELASTICSEARCH.SINGLE.NODE.JVM.SPACE.MIN})','8ea1516885734182befd20b5f74d799c',''), ('25067','{35829}>0','AWS Backup vault: Copy job has appeared','','0','2','New copy job has appeared.',NULL,'0','0','2','','0','','1','Current amount: {ITEM.LASTVALUE1}','0','','6a5ed839d0d049f58775e46ee86e83ee',''), ('25068','{35830}>0','AWS Backup vault: Restore job has appeared','','0','3','New restore job has appeared.',NULL,'0','0','2','','0','','1','Current amount: {ITEM.LASTVALUE1}','0','','31f7e20621f249138df7aea59df927dc',''), ('25069','{35831}=7','AWS Backup vault: Job failed [{#AWS.BACKUP_JOB.ID}]','','0','4','Job has failed.',NULL,'0','2','0','','0','','1','Current status: {ITEM.LASTVALUE1}','0','AWS Backup vault: Job type [{#AWS.BACKUP_JOB.TYPE}] for [{#AWS.BACKUP_JOB.RESOURCE_NAME}] with ID [{#AWS.BACKUP_JOB.ID}] has failed.','d32bba2d26514a2381a18415f26c7591',''), ('25070','{35832}=5','AWS Backup vault: Job has been aborted [{#AWS.BACKUP_JOB.ID}]','','0','3','Job has been aborted.',NULL,'0','2','0','','0','','1','Current status: {ITEM.LASTVALUE1}','0','AWS Backup vault: Job type [{#AWS.BACKUP_JOB.TYPE}] for [{#AWS.BACKUP_JOB.RESOURCE_NAME}] with ID [{#AWS.BACKUP_JOB.ID}] has been aborted.','06182df42e5d4777b8506726c2793dee',''), ('25071','{35833}=8','AWS Backup vault: Job has expired [{#AWS.BACKUP_JOB.ID}]','','0','2','Job expired.',NULL,'0','2','0','','0','','1','Current status: {ITEM.LASTVALUE1}','0','AWS Backup vault: Job type [{#AWS.BACKUP_JOB.TYPE}] for [{#AWS.BACKUP_JOB.RESOURCE_NAME}] with ID [{#AWS.BACKUP_JOB.ID}] has expired.','e1fb82528ca34849b75200b417036037',''), ('25072','{35834}=0','AWS Backup vault: Job is in an unknown state [{#AWS.BACKUP_JOB.ID}]','','0','2','Job is in unknown state.',NULL,'0','2','0','','0','','1','Current status: {ITEM.LASTVALUE1}','0','AWS Backup vault: Job type [{#AWS.BACKUP_JOB.TYPE}] for [{#AWS.BACKUP_JOB.RESOURCE_NAME}] with ID [{#AWS.BACKUP_JOB.ID}] is in an unknown state.','e449b1999f09469bbf71e531afebc26b',''), ('25073','{35835}=0','Aruba: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','96ced8bb055e498da2df9f24d8391fe4',''), ('25074','{35836}>{$ICMP_LOSS_WARN} and {35836}<100','Aruba: High ICMP ping loss','','0','2','ICMP packet loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','0fa5c9c675e042dc9245b51417d37cf7',''), ('25075','{35837}>{$ICMP_RESPONSE_TIME_WARN}','Aruba: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','Aruba: High ICMP ping response time (>{$ICMP_RESPONSE_TIME_WARN}s for 5m)','ebb0b6ec52054fb0b2d67552afe3b699',''), ('25076','{35838}<>{35839} and length({35840})>0','Aruba: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Aruba: System name has changed (new name: {ITEM.VALUE})','c441da1d3aa3434c9bfa461d2a8aeb3f',''), ('25077','{35841}=0','Aruba: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','b6f001323c8e4fd1bb1cf84dd8990a56',''), ('25078','({35842}>0 and {35842}<10m) or ({35842}=0 and {35843}<10m)','Aruba: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Aruba: {HOST.NAME} has been restarted (uptime < 10m)','28a227bae78343c58edb44e6bdc18543',''), ('25079','{35844}<>4','Aruba: Fan [{#SNMPVALUE}]: Status is not "Ok"','','0','3','The fan status is not "Ok".',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','90a16a650b1e4f62b6f55c9e6181d754',''), ('25080','{35845}=0','Aruba: OSPF area [{#SNMPVALUE}]: Status is not "Active"','','0','3','The status of OSPF area is not "Active".',NULL,'0','2','0','','0','','0','','0','Aruba: OSPF area [{#SNMPVALUE}]: Status is not "Active": {ITEM.LASTVALUE}','c3f79a1dfc9d4a0b8df21c847dddf0c7',''), ('25081','({35846}=2 or {35847}=2) and {35848}=1','Aruba: OSPF Interface [{#SNMPVALUE}]: State is "Down" or "Waiting"','','0','3','The OSPF Interface state is "Down" or "Waiting".',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','df52e7ccbf4c460cb02aac16bfd4565b',''), ('25082','{35849}=2 and {35850}=1','Aruba: OSPF interface [{#SNMPVALUE}]: Status is not "Active"','','0','3','The OSPF interface status is not "Active".',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','fe1350146a71445ea8a7765a2ce8f26e',''), ('25083','{35851}=0 and {35852}=0','Aruba: OSPF neighbor [{#SNMPVALUE}]: State is not "Full" or "Two way"','','0','3','The neighbor state is not "Full" or "Two way".',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','42118a5de26d4e64a116366ce4422513',''), ('25084','{35853}=0','Aruba: OSPF neighbor [{#SNMPVALUE}]: Status is not "Active"','','0','3','The neighbor status is not "Active".',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE1}','0','','afc09cf846ea499c9edcc86ad69155b5',''), ('25085','({35854}*100/{#ARUBA.POWER.SUPPLY.MAX.POWER}) > {$ARUBA.POWER.SUPPLY.THR.MAX}','Aruba: PSU [{#SNMPVALUE}]: High power utilization','','0','3','Instantaneous power supplied more than {$ARUBA.POWER.SUPPLY.THR.MAX} of maximum.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Aruba: PSU [{#SNMPVALUE}]: High power utilization: {ITEM.LASTVALUE} (>{$ARUBA.POWER.SUPPLY.THR.MAX} of maximum)','a3b4d18fb60144658f704b92a2eb2390',''), ('25086','{35855}<>1','Aruba: PSU [{#SNMPVALUE}]: State is not "Ok"','','0','3','The PSU status is not "Ok".',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','9b93888c69624f9c908a7601c04e20f9',''), ('25087','{35856}>{$ARUBA.CPU.UTIL.MAX}','Aruba: Generic SNMP: Module [{#SNMPVALUE}]: High CPU utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Aruba: Generic SNMP: Module [{#SNMPVALUE}]: High CPU utilization (>{$ARUBA.CPU.UTIL.MAX}% for 5m)','6e8a39fda423439883bc90a587371360',''), ('25088','{35857}>{$ARUBA.MEMORY.UTIL.MAX}','Aruba: Generic SNMP: Module [{#SNMPVALUE}]: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Aruba: Generic SNMP: Module [{#SNMPVALUE}]: High memory utilization (>{$ARUBA.MEMORY.UTIL.MAX}% for 5m)','8d630ee773474d8a8020c9888ce86a07',''), ('25089','{35858}<>"normal"','Aruba: Sensor [{#SNMPVALUE}]: State is not "normal"','','0','3','The current temperature sensor state is not "normal".',NULL,'0','2','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','Aruba: Sensor [{#SNMPVALUE}]: State is not "normal": {ITEM.LASTVALUE}','e3bdb244253344428a6571b2a76fd994',''), ('25090','{35859}>{#ARUBA.TEMPERATURE.MAX}','Aruba: Sensor [{#SNMPVALUE}]: High temperature','','0','3','The current temperature is greater than the threshold state.',NULL,'0','2','0','','0','','0','Current temperature: {ITEM.LASTVALUE1}','0','Aruba: Sensor [{#SNMPVALUE}]: High temperature (>{#ARUBA.TEMPERATURE.MAX} °C)','c6dd45c473b045c891a4436a2550c977',''), ('25091','{35860}<{#ARUBA.TEMPERATURE.MIN}','Aruba: Sensor [{#SNMPVALUE}]: Low temperature','','0','3','The current temperature is less than the threshold state.',NULL,'0','2','0','','0','','0','','0','Aruba: Sensor [{#SNMPVALUE}]: Low temperature (<{#ARUBA.TEMPERATURE.MIN} °C)','47ff244e82e448508b2223c0f955513c',''), ('25092','{35861}<0 and {35862}>0 and ( {35863}=6 or {35863}=7 or {35863}=11 or {35863}=62 or {35863}=69 or {35863}=117 ) and ({35864}<>2)','Aruba: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({35861}>0 and {35865}>0) or ({35864}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','e2beaf89f19d4ed29ce1db0731034a04',''), ('25093','({35866}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{35867} or {35868}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{35867}) and {35867}>0','Aruba: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{35866}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{35867} and {35868}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{35867}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Aruba: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','2d02987f53f543c7858f82e70a7c791a',''), ('25094','{35869}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {35870}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Aruba: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{35871}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {35872}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Aruba: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','205f155f4cc145218d006bdebfefb7a1',''), ('25095','{$IFCONTROL:"{#IFNAME}"}=1 and {35873}=2 and ({35874}<>{35875})','Aruba: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{35873}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','8d869d65193742558bd6eebb4c729498',''), ('25096','{35876}>{$CIENA.CPU.UTIL.CRIT}','Ciena: High CPU utilization','','0','2','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Ciena: High CPU utilization (over {$CIENA.CPU.UTIL.CRIT}% for 5m)','9381eddcc6c14189b073fa7ec1627eb5',''), ('25097','{35877}>{$CIENA.MEMORY.UTIL.MAX}','Ciena: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Ciena: High memory utilization (>{$CIENA.MEMORY.UTIL.MAX}% for 5m)','f4a8c13d12cd4800a0a7adbb07345167',''), ('25098','{35878}=0','Ciena: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','ee75be8f7f164985934e2c1be1c04e13',''), ('25099','{35879}>{$ICMP_LOSS_WARN} and {35879}<100','Ciena: High ICMP ping loss','','0','2','ICMP packets loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','','a97aab2e9d914087881a7045d27706ee',''), ('25100','{35880}>{$ICMP_RESPONSE_TIME_WARN}','Ciena: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','','8e79674a73714bf8873afb383df9a3dc',''), ('25101','{35881}<>{35882} and length({35883})>0','Ciena: Device has been replaced','','0','1','The Ciena device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Ciena: Device has been replaced (new serial number received)','e779b8999360405abf31a569f79933e3',''), ('25102','{35884}<>{35885} and length({35886})>0','Ciena: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','Ciena: System name has changed (new name: {ITEM.VALUE})','ccccd5869f544ceab91f7d83cfb72bba',''), ('25103','{35887}=0','Ciena: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','a3b4708a1ff34ee688655890c1bd4483',''), ('25104','({35888}>0 and {35888}<10m) or ({35888}=0 and {35889}<10m)','Ciena: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Ciena: {HOST.NAME} has been restarted (uptime < 10m)','d883855527e148ab97eb47db682116ea',''), ('25105','{35890}=3','Ciena: Fan [{#SNMPVALUE}]: Fan status is Failure','','0','3','The fan status is "failure".',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE}','0','','f8a3bae2cede4009a78336d538307db7',''), ('25106','{35891}=3','Ciena: PSU [{#SNMPVALUE}]: Status is Faulted','','0','3','The PSU status is "faulted".',NULL,'0','2','0','','0','','0','Current status: {ITEM.LASTVALUE}','0','','f52cf9bc73674a478c2d949878fed2f6',''), ('25107','{35892}>{#CIENA.TEMPERATURE.HIGH}','Ciena: Sensor [{#SNMPVALUE}]: High chassis temperature','','0','3','The current temperature is higher than the threshold state.',NULL,'0','2','0','','0','','0','','0','Ciena: Sensor [{#SNMPVALUE}]: High chassis temperature (>{#CIENA.TEMPERATURE.HIGH} °C)','a53a816efa4c49e08ccc18ea7bcd7046',''), ('25108','{35893}<{#CIENA.TEMPERATURE.LOW}','Ciena: Sensor [{#SNMPVALUE}]: Low chassis temperature','','0','3','The current temperature is lower than the threshold state.',NULL,'0','2','0','','0','','0','','0','Ciena: Sensor [{#SNMPVALUE}]: Low chassis temperature (<{#CIENA.TEMPERATURE.LOW} °C)','a484e0bb091c4abea5db311d91083d0f',''), ('25109','{35894}<0 and {35895}>0 and ( {35896}=6 or {35896}=7 or {35896}=11 or {35896}=62 or {35896}=69 or {35896}=117 ) and ({35897}<>2)','Ciena: Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({35894}>0 and {35898}>0) or ({35897}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','b8635b85feb247f59c7997ea4ca4b96a',''), ('25110','({35899}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{35900} or {35901}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{35900}) and {35900}>0','Ciena: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{35899}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{35900} and {35901}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{35900}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Ciena: Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','411150c8856242228b8092595808f10c',''), ('25111','{35902}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {35903}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Ciena: Interface {#IFNAME}({#IFALIAS}): High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{35904}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {35905}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Ciena: Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','86121173a53e471a9c22876b4c808e23',''), ('25112','{$IFCONTROL:"{#IFNAME}"}=1 and {35906}=2 and ({35907}<>{35908})','Ciena: Interface {#IFNAME}({#IFALIAS}): Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.',NULL,'0','2','1','{35906}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','6553917026ab486cb92e418c1a0c66a3',''), ('25113','length({35917})>0','Meraki: There are errors in ''Get status'' metric','','0','2','',NULL,'0','0','0','','0','','0','','0','','0f629d0aef6b456fb3d5b1a20ece54ac',''), ('25114','length({35918})>0','Meraki: There are errors in ''Get adaptive policy'' metric','','0','2','',NULL,'0','0','0','','0','','0','','0','','8312e99efbca4a4bbbba8858076186a9',''), ('25115','length({35919})>0','Meraki: There are errors in ''Get configuration changes'' metric','','0','2','',NULL,'0','0','0','','0','','0','','0','','ce83cc3e1a8a44168df7809d239743c3',''), ('25116','length({35920})>0','Meraki: There are errors in ''Get data'' metric','','0','2','',NULL,'0','0','0','','0','','0','','0','','adef482dadf240fbb211fe4c9b638fbc',''), ('25117','{35925}=0','Vyatta: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','295be4e3e67a4c428ddde66aefc8d8c3',''), ('25118','{35926}>{$VYATTA.ICMP.LOSS.WARN} and {35926}<100','Vyatta: High ICMP ping loss','','0','2','ICMP packet loss detected.',NULL,'0','0','0','','0','','0','Loss: {ITEM.LASTVALUE1}','0','Vyatta: High ICMP ping loss (over {$VYATTA.ICMP.LOSS.WARN}% for 5m)','f88294d91bd3444ebe8b417c5199c356',''), ('25119','{35927}>{$VYATTA.ICMP.RESPONSE.TIME.WARN}','Vyatta: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','Value: {ITEM.LASTVALUE1}','0','Vyatta: High ICMP ping response time (over {$VYATTA.ICMP.RESPONSE.TIME.WARN}s for 5m)','3a4aa6a5e1d942b0bb55c7fc05dde684',''), ('25120','{35928} > {$VYATTA.MEMORY.USED.WARN}','Vyatta: Memory utilization is high','','0','2','Memory utilization is high.',NULL,'0','0','0','','0','','0','','0','Vyatta: Memory utilization is high (>{$VYATTA.MEMORY.USED.WARN} for over 5m)','a56dca7d427d43f8958325a5f9152a09',''), ('25121','{35929} > {$VYATTA.MEMORY.USED.HIGH}','Vyatta: Memory utilization is too high','','0','4','Memory utilization is too high.',NULL,'0','0','0','','0','','0','','0','Vyatta: Memory utilization is too high (>{$VYATTA.MEMORY.USED.HIGH} for over 5m)','9e071152a1814b619c9d9d79c88c149c',''), ('25122','{35930}=0','Vyatta: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','Current state: {ITEM.LASTVALUE1}','0','','0990c1aadc3849bf881a4068ae97aedc',''), ('25123','({35931}>0 and {35931}<10m) or ({35931}=0 and {35932}<10m)','Vyatta: Host has been restarted','','0','2','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','1','','0','Vyatta: {HOST.NAME} has been restarted (uptime < 10m)','ab635805cfb74121827f3f31e985e875',''), ('25124','{35933} <> 2','Vyatta: CPU [{#DESCRIPTION}][{#SNMPINDEX}]: CPU abnormal state','','0','4','CPU utilization is too high.',NULL,'0','2','0','','0','','0','','0','','121927a633ba4d1d95d38457c7dca003',''), ('25125','{35934} > {$VYATTA.CPU.USED.WARN}','Vyatta: CPU [{#DESCRIPTION}][{#SNMPINDEX}]: CPU utilization is high','','0','2','CPU utilization is high.',NULL,'0','2','0','','0','','0','','0','Vyatta: CPU [{#DESCRIPTION}][{#SNMPINDEX}]: CPU utilization is high (>{$VYATTA.CPU.USED.WARN} for over 5m)','7948f5b2eaf44f3f99672fb4be7e3b6a',''), ('25126','{35935} > {$VYATTA.CPU.USED.HIGH}','Vyatta: CPU [{#DESCRIPTION}][{#SNMPINDEX}]: CPU utilization is too high','','0','4','CPU utilization is too high.',NULL,'0','2','0','','0','','0','','0','Vyatta: CPU [{#DESCRIPTION}][{#SNMPINDEX}]: CPU utilization is too high (>{$VYATTA.CPU.USED.HIGH} for over 5m)','780584cbd65c46339f4ba04b5b682e9d',''), ('25127','{35936}<0 and {35937}>0 and ( {35938}=6 or {35938}=7 or {35938}=11 or {35938}=62 or {35938}=69 or {35938}=117 ) and ({35939}<>2)','Vyatta: Interface [{#IFNAME}][{#IFALIAS}]: Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.',NULL,'0','2','1','({35936}>0 and {35940}>0) or ({35939}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','3873dd1e6a4449eb9d4b2f835549c082',''), ('25128','({35941}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{35942} or {35943}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{35942}) and {35942}>0','Vyatta: Interface [{#IFNAME}][{#IFALIAS}]: High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.',NULL,'0','2','1','{35941}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{35942} and {35943}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{35942}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Vyatta: Interface [{#IFNAME}][{#IFALIAS}]: High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','0cf252aaa8bf429c9c9c7340e8d83d0d',''), ('25129','{35944}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {35945}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Vyatta: Interface [{#IFNAME}][{#IFALIAS}]: High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.',NULL,'0','2','1','{35946}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {35947}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','Errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Vyatta: Interface [{#IFNAME}][{#IFALIAS}]: High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','63a2ca4b750546e1a95a7a6aadcdff6b',''), ('25130','{$VYATTA.IFCONTROL:"{#IFNAME}"}=1 and {35948}=2 and ({35949}<>{35950})','Vyatta: Interface [{#IFNAME}][{#IFALIAS}]: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$VYATTA.IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces). WARNING: if closed manually - it will not fire again on the next poll because of `.diff`.',NULL,'0','2','1','{35948}<>2 or {$VYATTA.IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','b832172ce9994c838920c04df3154c02',''), ('25131','{35951} > {$VYATTA.STORAGE.USED.WARN}','Vyatta: Storage [{#STORAGE_NAME}]: Storage utilization is high','','0','2','Storage utilization is high.',NULL,'0','2','0','','0','','0','','0','Vyatta: {#STORAGE}: Utilization is high (>{$VYATTA.STORAGE.USED.WARN} for over 5m)','7cc45fc012b64650a4705fec30ed539d',''), ('25132','{35952} > {$VYATTA.STORAGE.USED.HIGH}','Vyatta: Storage [{#STORAGE_NAME}]: Storage utilization is too high','','0','4','Storage utilization is too high.',NULL,'0','2','0','','0','','0','','0','Vyatta: {#STORAGE}: Utilization is high (>{$VYATTA.STORAGE.USED.HIGH} for over 5m)','3f2ca086a98f42bd974000e564d94ea7',''), ('25133','{35955}>0','SNS: Faulty HA link','','0','3','There is at least one faulty HA link.',NULL,'0','0','0','','0','','0','','0','SNS: Faulty HA link','93808f7abb4f40fdad41a174557de441',''), ('25134','{35956}<0','SNS: HA synchronization error','','0','3','The cluster HA is not synchronized properly.',NULL,'0','0','0','','0','','0','','0','SNS: HA synchronization error','c03dce70e912493d8a65942d381ab734',''), ('25135','{35957}>{$SNS.MEMORY.UTIL.MAX}','SNS: High memory utilization','','0','3','The system is running out of free memory.',NULL,'0','0','0','','0','','0','','0','SNS: High memory utilization (>{$SNS.MEMORY.UTIL.MAX}% for 5m)','aefdc86298f3437d8b16233515818d16',''), ('25136','{35958}=0','SNS: Unavailable by ICMP ping','','0','4','Last three attempts returned timeout. Please check device connectivity.',NULL,'0','0','0','','0','','0','','0','','ab962296020f44f08f1bd8eacce24723',''), ('25137','{35959}>{$SNS.ICMP.LOSS.WARN} and {35959}<100','SNS: High ICMP ping loss','','0','2','ICMP ping loss detected.',NULL,'0','0','0','','0','','0','','0','','02dfe125bff5452f8916962a407b0975',''), ('25138','{35960}>{$SNS.ICMP.RESPONSE.TIME.WARN}','SNS: High ICMP ping response time','','0','2','Average ICMP response time is too high.',NULL,'0','0','0','','0','','0','','0','','f4de52338acf4e4baf91c328688bb0ab',''), ('25139','{35961}<>{35962} and length({35963})>0','SNS: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','SNS: System name has changed (new name: {ITEM.VALUE})','15f4897a3e544effbfc99ce75a8e9d7a',''), ('25140','{35964}<>{35965} and length({35966})>0','SNS: Device has been replaced','','0','1','Device serial number has changed. Acknowledge to close the problem manually.',NULL,'0','0','0','','0','','1','','0','SNS: Device has been replaced (new serial number received)','4220ad1db8134603958030547495591c',''), ('25141','{35967}<10m','SNS: Device has been restarted','','0','1','Uptime is less than 10 minutes.',NULL,'0','0','0','','0','','0','','0','SNS: {HOST.NAME} has been restarted (uptime < 10m)','baf8de16b11b4f408c7a34869ebf53b8',''), ('25142','{35968}=0','SNS: No SNMP data collection','','0','2','SNMP is not available for polling. Please check device connectivity and SNMP settings.',NULL,'0','0','0','','0','','0','','0','','e300402891ea46be8cfd697d3936a339',''), ('25143','{35969}>{$SNS.CPU.UTIL.CRIT}','SNS: CPU [{#SNMPINDEX}]: CPU utilization too high','','0','4','The CPU utilization is too high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','SNS: CPU utilization too high (over {$SNS.CPU.UTIL.CRIT}% for 5m)','b5196431336b42b08b0beab3208c19de',''), ('25144','{35970}>{$SNS.CPU.UTIL.WARN}','SNS: CPU [{#SNMPINDEX}]: High CPU utilization','','0','2','The CPU utilization is high. The system might be slow to respond.',NULL,'0','2','0','','0','','0','','0','SNS: High CPU utilization (over {$SNS.CPU.UTIL.WARN}% for 5m)','889712b67ab549eaa8e76370d20dcddd',''), ('25145','{35971}=5','SNS: Health status firewall [{#HEALTH_ID}]: CPU is overheating','','0','4','The CPU is not working correctly and has raised an alarm.',NULL,'0','2','0','','0','','0','','0','SNS: The CPU is overheating','d2480be0a3d44a89bc27f3560bbe1e77',''), ('25146','{35972}=5','SNS: Health status firewall [{#HEALTH_ID}]: The disk is not working correctly','','0','4','The disks are not working correctly and have raised an alarm.',NULL,'0','2','0','','0','','0','','0','SNS: The disk is not working correctly','f9403a9d6f354c32ae42c719e8f2f4df',''), ('25147','{35973}=5','SNS: Health status firewall [{#HEALTH_ID}]: The fan is not working correctly','','0','3','The fans are not working correctly and have raised an alarm.',NULL,'0','2','0','','0','','0','','0','SNS: The fan is not working correctly','925e62403192466b9e5d79340fff7f18',''), ('25148','{35974}=5','SNS: Health status firewall [{#HEALTH_ID}]: HA link is down','','0','4','The HA link is not working (is down).',NULL,'0','2','0','','0','','0','','0','SNS: HA link is down','a8a3b2d803b64242a68c5dd66fdc7b38',''), ('25149','{35975}=5','SNS: Health status firewall [{#HEALTH_ID}]: Admin password is not secured','','0','4','The admin password is the default password; please change it.',NULL,'0','2','0','','0','','0','','0','SNS: Admin password is not secured','1eb323d145f246b48b0ca194b29f3638',''), ('25150','{35976}=5','SNS: Health status firewall [{#HEALTH_ID}]: The power supply is not working correctly','','0','4','The power supply is not working correctly and has raised an alarm.',NULL,'0','2','0','','0','','0','','0','SNS: The power supply is not working correctly','816a07c6a4ca4da7990a5d345a17a4cb',''), ('25151','{35977}=5','SNS: Health status firewall [{#HEALTH_ID}]: The RAID is not working correctly','','0','3','The RAID is not working in optimal mode and has raised an alarm.',NULL,'0','2','0','','0','','0','','0','SNS: The RAID is not working correctly','305c5ab2338349efad3bedcda622922d',''), ('25152','{35978}>{$SNS.MEMORY.UTIL.MAX}','SNS: Storage [{#STORAGE_DESCR}]: Utilization is high','','0','3','The data file is running out of free memory.',NULL,'0','2','0','','0','','0','','0','SNS: High storage utilization (>{$SNS.MEMORY.UTIL.MAX}% for 5m)','3e69f180bb9f4ae8a28a9d3433723f1f',''), ('25153','({35979}=4) or ({35979}=5)','SNS: Autoupdate [{#UPDATE_NAME}]: Not up to date','','0','1','The autoupdate is not up to date (never started or started more than a year ago).',NULL,'0','2','0','','0','','0','','0','SNS: Autoupdate not up to date','7226b9ba8d3947a59bf0d709b843b472',''); INSERT INTO triggers (triggerid,expression,description,url,status,priority,comments,templateid,type,flags,recovery_mode,recovery_expression,correlation_mode,correlation_tag,manual_close,opdata,discover,event_name,uuid,url_name) VALUES ('13075','{33803}>{$ZABBIX.SERVER.UTIL.MAX:"value cache"}','Zabbix server: Excessive value cache usage','','0','3','Consider increasing `ValueCacheSize` in the `zabbix_server.conf` configuration file.','13074','0','0','0','','0','','0','','0','Zabbix server: More than {$ZABBIX.SERVER.UTIL.MAX:"value cache"}% used in the value cache','',''), ('13436','{33801}>{$ZABBIX.SERVER.UTIL.MAX:"vmware collector"}','Zabbix server: Utilization of vmware collector processes is high','','0','3','Indicates potential performance issues with the vmware collector, which may affect monitoring efficiency and response times.','13097','0','0','1','{33801}<{$ZABBIX.SERVER.UTIL.MIN:"vmware collector"}','0','','0','','0','Zabbix server: Utilization of vmware collector processes over {$ZABBIX.SERVER.UTIL.MAX:"vmware collector"}%','',''), ('13467','{33764}>{$ZABBIX.SERVER.UTIL.MAX:"alerter"}','Zabbix server: Utilization of alerter processes is high','','0','3','Indicates potential performance issues with the alerter, which may affect monitoring efficiency and response times.','13080','0','0','1','{33764}<{$ZABBIX.SERVER.UTIL.MIN:"alerter"}','0','','0','','0','Zabbix server: Utilization of alerter processes over {$ZABBIX.SERVER.UTIL.MAX:"alerter"}%','',''), ('13468','{33768}>{$ZABBIX.SERVER.UTIL.MAX:"configuration syncer"}','Zabbix server: Utilization of configuration syncer processes is high','','0','3','Indicates potential performance issues with the configuration syncer, which may affect monitoring efficiency and response times.','13081','0','0','1','{33768}<{$ZABBIX.SERVER.UTIL.MIN:"configuration syncer"}','0','','0','','0','Zabbix server: Utilization of configuration syncer processes over {$ZABBIX.SERVER.UTIL.MAX:"configuration syncer"}%','',''), ('13471','{33773}>{$ZABBIX.SERVER.UTIL.MAX:"escalator"}','Zabbix server: Utilization of escalator processes is high','','0','3','Indicates potential performance issues with the escalator, which may affect monitoring efficiency and response times.','13084','0','0','1','{33773}<{$ZABBIX.SERVER.UTIL.MIN:"escalator"}','0','','0','','0','Zabbix server: Utilization of escalator processes over {$ZABBIX.SERVER.UTIL.MAX:"escalator"}%','',''), ('13472','{33775}>{$ZABBIX.SERVER.UTIL.MAX:"history syncer"}','Zabbix server: Utilization of history syncer processes is high','','0','3','Indicates potential performance issues with the history syncer, which may affect monitoring efficiency and response times.','13085','0','0','1','{33775}<{$ZABBIX.SERVER.UTIL.MIN:"history syncer"}','0','','0','','0','Zabbix server: Utilization of history syncer processes over {$ZABBIX.SERVER.UTIL.MAX:"history syncer"}%','',''), ('13473','{33776}>{$ZABBIX.SERVER.UTIL.MAX:"housekeeper"}','Zabbix server: Utilization of housekeeper processes is high','','0','3','Indicates potential performance issues with the housekeeper, which may affect monitoring efficiency and response times.','13086','0','0','1','{33776}<{$ZABBIX.SERVER.UTIL.MIN:"housekeeper"}','0','','0','','0','Zabbix server: Utilization of housekeeper processes over {$ZABBIX.SERVER.UTIL.MAX:"housekeeper"}%','',''), ('13474','{33778}>{$ZABBIX.SERVER.UTIL.MAX:"http poller"}','Zabbix server: Utilization of http poller processes is high','','0','3','Indicates potential performance issues with the http poller, which may affect monitoring efficiency and response times.','13087','0','0','1','{33778}<{$ZABBIX.SERVER.UTIL.MIN:"http poller"}','0','','0','','0','Zabbix server: Utilization of http poller processes over {$ZABBIX.SERVER.UTIL.MAX:"http poller"}%','',''), ('13475','{33779}>{$ZABBIX.SERVER.UTIL.MAX:"icmp pinger"}','Zabbix server: Utilization of icmp pinger processes is high','','0','3','Indicates potential performance issues with the icmp pinger, which may affect monitoring efficiency and response times.','13088','0','0','1','{33779}<{$ZABBIX.SERVER.UTIL.MIN:"icmp pinger"}','0','','0','','0','Zabbix server: Utilization of icmp pinger processes over {$ZABBIX.SERVER.UTIL.MAX:"icmp pinger"}%','',''), ('13476','{33781}>{$ZABBIX.SERVER.UTIL.MAX:"ipmi poller"}','Zabbix server: Utilization of ipmi poller processes is high','','0','3','Indicates potential performance issues with the ipmi poller, which may affect monitoring efficiency and response times.','13089','0','0','1','{33781}<{$ZABBIX.SERVER.UTIL.MIN:"ipmi poller"}','0','','0','','0','Zabbix server: Utilization of ipmi poller processes over {$ZABBIX.SERVER.UTIL.MAX:"ipmi poller"}%','',''), ('13477','{33782}>{$ZABBIX.SERVER.UTIL.MAX:"java poller"}','Zabbix server: Utilization of java poller processes is high','','0','3','Indicates potential performance issues with the java poller, which may affect monitoring efficiency and response times.','13275','0','0','1','{33782}<{$ZABBIX.SERVER.UTIL.MIN:"java poller"}','0','','0','','0','Zabbix server: Utilization of java poller processes over {$ZABBIX.SERVER.UTIL.MAX:"java poller"}%','',''), ('13479','{33786}>{$ZABBIX.SERVER.UTIL.MAX:"poller"}','Zabbix server: Utilization of poller processes is high','','0','3','Indicates potential performance issues with the poller, which may affect monitoring efficiency and response times.','13091','0','0','1','{33786}<{$ZABBIX.SERVER.UTIL.MIN:"poller"}','0','','0','','0','Zabbix server: Utilization of poller processes over {$ZABBIX.SERVER.UTIL.MAX:"poller"}%','',''), ('13480','{33789}>{$ZABBIX.SERVER.UTIL.MAX:"proxy poller"}','Zabbix server: Utilization of proxy poller processes is high','','0','3','Indicates potential performance issues with the proxy poller, which may affect monitoring efficiency and response times.','13092','0','0','1','{33789}<{$ZABBIX.SERVER.UTIL.MIN:"proxy poller"}','0','','0','','0','Zabbix server: Utilization of proxy poller processes over {$ZABBIX.SERVER.UTIL.MAX:"proxy poller"}%','',''), ('13481','{33792}>{$ZABBIX.SERVER.UTIL.MAX:"self-monitoring"}','Zabbix server: Utilization of self-monitoring processes is high','','0','3','Indicates potential performance issues with the self-monitoring, which may affect monitoring efficiency and response times.','13093','0','0','1','{33792}<{$ZABBIX.SERVER.UTIL.MIN:"self-monitoring"}','0','','0','','0','Zabbix server: Utilization of self-monitoring processes over {$ZABBIX.SERVER.UTIL.MAX:"self-monitoring"}%','',''), ('13482','{33795}>{$ZABBIX.SERVER.UTIL.MAX:"snmp trapper"}','Zabbix server: Utilization of snmp trapper processes is high','','0','3','Indicates potential performance issues with the snmp trapper, which may affect monitoring efficiency and response times.','13441','0','0','1','{33795}<{$ZABBIX.SERVER.UTIL.MIN:"snmp trapper"}','0','','0','','0','Zabbix server: Utilization of snmp trapper processes over {$ZABBIX.SERVER.UTIL.MAX:"snmp trapper"}%','',''), ('13483','{33797}>{$ZABBIX.SERVER.UTIL.MAX:"timer"}','Zabbix server: Utilization of timer processes is high','','0','3','Indicates potential performance issues with the timer, which may affect monitoring efficiency and response times.','13094','0','0','1','{33797}<{$ZABBIX.SERVER.UTIL.MIN:"timer"}','0','','0','','0','Zabbix server: Utilization of timer processes over {$ZABBIX.SERVER.UTIL.MAX:"timer"}%','',''), ('13484','{33798}>{$ZABBIX.SERVER.UTIL.MAX:"trapper"}','Zabbix server: Utilization of trapper processes is high','','0','3','Indicates potential performance issues with the trapper, which may affect monitoring efficiency and response times.','13095','0','0','1','{33798}<{$ZABBIX.SERVER.UTIL.MIN:"trapper"}','0','','0','','0','Zabbix server: Utilization of trapper processes over {$ZABBIX.SERVER.UTIL.MAX:"trapper"}%','',''), ('13485','{33800}>{$ZABBIX.SERVER.UTIL.MAX:"unreachable poller"}','Zabbix server: Utilization of unreachable poller processes is high','','0','3','Indicates potential performance issues with the unreachable poller, which may affect monitoring efficiency and response times.','13096','0','0','1','{33800}<{$ZABBIX.SERVER.UTIL.MIN:"unreachable poller"}','0','','0','','0','Zabbix server: Utilization of unreachable poller processes over {$ZABBIX.SERVER.UTIL.MAX:"unreachable poller"}%','',''), ('13486','{12895}>100','Zabbix server: More than 100 items have been missing data for over 10 minutes','','0','2','Indicates potential issues with network connectivity, agent failures, or unresponsive monitored resources that require attention.','13023','0','0','0','','0','','0','','0','','',''), ('13487','{33802}>{$ZABBIX.SERVER.UTIL.MAX:"configuration cache"}','Zabbix server: Excessive configuration cache usage','','0','3','Consider increasing `CacheSize` in the `zabbix_server.conf` configuration file.','13015','0','0','0','','0','','0','','0','Zabbix server: More than {$ZABBIX.SERVER.UTIL.MAX:"configuration cache"}% used in the configuration cache','',''), ('13488','{33805}>{$ZABBIX.SERVER.UTIL.MAX:"history cache"}','Zabbix server: Excessive history cache usage','','0','3','Consider increasing `HistoryCacheSize` in the `zabbix_server.conf` configuration file.','13073','0','0','0','','0','','0','','0','Zabbix server: More than {$ZABBIX.SERVER.UTIL.MAX:"history cache"}% used in the history cache','',''), ('13489','{33806}>{$ZABBIX.SERVER.UTIL.MAX:"index cache"}','Zabbix server: Excessive history index cache usage','','0','3','Consider increasing `HistoryIndexCacheSize` in the `zabbix_server.conf` configuration file.','13017','0','0','0','','0','','0','','0','Zabbix server: More than {$ZABBIX.SERVER.UTIL.MAX:"index cache"}% used in the history index cache','',''), ('13490','{33807}>{$ZABBIX.SERVER.UTIL.MAX:"trend cache"}','Zabbix server: Excessive trends cache usage','','0','3','Consider increasing `TrendCacheSize` in the `zabbix_server.conf` configuration file.','13019','0','0','0','','0','','0','','0','Zabbix server: More than {$ZABBIX.SERVER.UTIL.MAX:"trend cache"}% used in the trends cache','',''), ('13537','{33804}>{$ZABBIX.SERVER.UTIL.MAX:"vmware cache"}','Zabbix server: Excessive vmware cache usage','','0','3','Consider increasing `VMwareCacheSize` in the `zabbix_server.conf` configuration file.','13536','0','0','0','','0','','0','','0','Zabbix server: More than {$ZABBIX.SERVER.UTIL.MAX:"vmware cache"}% used in the vmware cache','',''), ('13558','{13161}=1','Zabbix server: Zabbix value cache working in low-memory mode','','0','4','Once low-memory mode has been switched on, the value cache will remain in this state for 24 hours, even if the problem that triggered this mode is resolved sooner.','13557','0','0','0','','0','','0','','0','','',''), ('13560','{33796}>{$ZABBIX.SERVER.UTIL.MAX:"task manager"}','Zabbix server: Utilization of task manager processes is high','','0','3','Indicates potential performance issues with the task manager, which may affect monitoring efficiency and response times.','13559','0','0','1','{33796}<{$ZABBIX.SERVER.UTIL.MIN:"task manager"}','0','','0','','0','Zabbix server: Utilization of task manager processes over {$ZABBIX.SERVER.UTIL.MAX:"task manager"}%','',''), ('13563','{33780}>{$ZABBIX.SERVER.UTIL.MAX:"ipmi manager"}','Zabbix server: Utilization of ipmi manager processes is high','','0','3','Indicates potential performance issues with the ipmi manager, which may affect monitoring efficiency and response times.','13562','0','0','1','{33780}<{$ZABBIX.SERVER.UTIL.MIN:"ipmi manager"}','0','','0','','0','Zabbix server: Utilization of ipmi manager processes over {$ZABBIX.SERVER.UTIL.MAX:"ipmi manager"}%','',''), ('13567','{33765}>{$ZABBIX.SERVER.UTIL.MAX:"alert manager"}','Zabbix server: Utilization of alert manager processes is high','','0','3','Indicates potential performance issues with the alert manager, which may affect monitoring efficiency and response times.','13566','0','0','1','{33765}<{$ZABBIX.SERVER.UTIL.MIN:"alert manager"}','0','','0','','0','Zabbix server: Utilization of alert manager processes over {$ZABBIX.SERVER.UTIL.MAX:"alert manager"}%','',''), ('13570','{33787}>{$ZABBIX.SERVER.UTIL.MAX:"preprocessing manager"}','Zabbix server: Utilization of preprocessing manager processes is high','','0','3','Indicates potential performance issues with the preprocessing manager, which may affect monitoring efficiency and response times.','13568','0','0','1','{33787}<{$ZABBIX.SERVER.UTIL.MIN:"preprocessing manager"}','0','','0','','0','Zabbix server: Utilization of preprocessing manager processes over {$ZABBIX.SERVER.UTIL.MAX:"preprocessing manager"}%','',''), ('13571','{33788}>{$ZABBIX.SERVER.UTIL.MAX:"preprocessing worker"}','Zabbix server: Utilization of preprocessing worker processes is high','','0','3','Indicates potential performance issues with the preprocessing worker, which may affect monitoring efficiency and response times.','13569','0','0','1','{33788}<{$ZABBIX.SERVER.UTIL.MIN:"preprocessing worker"}','0','','0','','0','Zabbix server: Utilization of preprocessing worker processes over {$ZABBIX.SERVER.UTIL.MAX:"preprocessing worker"}%','',''), ('15854','{33783}>{$ZABBIX.SERVER.UTIL.MAX:"LLD manager"}','Zabbix server: Utilization of LLD manager processes is high','','0','3','Indicates potential performance issues with the LLD manager, which may affect monitoring efficiency and response times.','15853','0','0','1','{33783}<{$ZABBIX.SERVER.UTIL.MIN:"LLD manager"}','0','','0','','0','Zabbix server: Utilization of LLD manager processes over {$ZABBIX.SERVER.UTIL.MAX:"LLD manager"}%','',''), ('15856','{33784}>{$ZABBIX.SERVER.UTIL.MAX:"LLD worker"}','Zabbix server: Utilization of LLD worker processes is high','','0','3','Indicates potential performance issues with the LLD worker, which may affect monitoring efficiency and response times.','15855','0','0','1','{33784}<{$ZABBIX.SERVER.UTIL.MIN:"LLD worker"}','0','','0','','0','Zabbix server: Utilization of LLD worker processes over {$ZABBIX.SERVER.UTIL.MAX:"LLD worker"}%','',''), ('16274','{33766}>{$ZABBIX.SERVER.UTIL.MAX:"alert syncer"}','Zabbix server: Utilization of alert syncer processes is high','','0','3','Indicates potential performance issues with the alert syncer, which may affect monitoring efficiency and response times.','16273','0','0','1','{33766}<{$ZABBIX.SERVER.UTIL.MIN:"alert syncer"}','0','','0','','0','Zabbix server: Utilization of alert syncer processes over {$ZABBIX.SERVER.UTIL.MAX:"alert syncer"}%','',''), ('17537','{33767}>{$ZABBIX.SERVER.UTIL.MAX:"availability manager"}','Zabbix server: Utilization of availability manager processes is high','','0','3','Indicates potential performance issues with the availability manager, which may affect monitoring efficiency and response times.','17535','0','0','1','{33767}<{$ZABBIX.SERVER.UTIL.MIN:"availability manager"}','0','','0','','0','Zabbix server: Utilization of availability manager processes over {$ZABBIX.SERVER.UTIL.MAX:"availability manager"}%','',''), ('17538','{33774}>{$ZABBIX.SERVER.UTIL.MAX:"history poller"}','Zabbix server: Utilization of history poller processes is high','','0','3','Indicates potential performance issues with the history poller, which may affect monitoring efficiency and response times.','17536','0','0','1','{33774}<{$ZABBIX.SERVER.UTIL.MIN:"history poller"}','0','','0','','0','Zabbix server: Utilization of history poller processes over {$ZABBIX.SERVER.UTIL.MAX:"history poller"}%','',''), ('18532','{33790}>{$ZABBIX.SERVER.UTIL.MAX:"report manager"}','Zabbix server: Utilization of report manager processes is high','','0','3','Indicates potential performance issues with the report manager, which may affect monitoring efficiency and response times.','18530','0','0','1','{33790}<{$ZABBIX.SERVER.UTIL.MIN:"report manager"}','0','','0','','0','Zabbix server: Utilization of report manager processes over {$ZABBIX.SERVER.UTIL.MAX:"report manager"}%','',''), ('18533','{33791}>{$ZABBIX.SERVER.UTIL.MAX:"report writer"}','Zabbix server: Utilization of report writer processes is high','','0','3','Indicates potential performance issues with the report writer, which may affect monitoring efficiency and response times.','18531','0','0','1','{33791}<{$ZABBIX.SERVER.UTIL.MIN:"report writer"}','0','','0','','0','Zabbix server: Utilization of report writer processes over {$ZABBIX.SERVER.UTIL.MAX:"report writer"}%','',''), ('18981','{33793}>{$ZABBIX.SERVER.UTIL.MAX:"service manager"}','Zabbix server: Utilization of service manager processes is high','','0','3','Indicates potential performance issues with the service manager, which may affect monitoring efficiency and response times.','18978','0','0','1','{33793}<{$ZABBIX.SERVER.UTIL.MIN:"service manager"}','0','','0','','0','Zabbix server: Utilization of service manager processes over {$ZABBIX.SERVER.UTIL.MAX:"service manager"}%','',''), ('18982','{33799}>{$ZABBIX.SERVER.UTIL.MAX:"trigger housekeeper"}','Zabbix server: Utilization of trigger housekeeper processes is high','','0','3','Indicates potential performance issues with the trigger housekeeper, which may affect monitoring efficiency and response times.','18979','0','0','1','{33799}<{$ZABBIX.SERVER.UTIL.MIN:"trigger housekeeper"}','0','','0','','0','Zabbix server: Utilization of trigger housekeeper processes over {$ZABBIX.SERVER.UTIL.MAX:"trigger housekeeper"}%','',''), ('18983','{23310}<>{23311} and length({23312})>0','Zabbix server: Version has changed','','0','1','Zabbix server version has changed. Acknowledge to close the problem manually.','18980','0','0','0','','0','','1','','0','Zabbix server: Version has changed (new version: {ITEM.VALUE})','',''), ('21195','{28244}<>{28245}','Zabbix server: Cluster node [{#NODE.NAME}]: Status changed','','0','1','The state of the node has changed. Acknowledge to close the problem manually.','21194','0','2','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','',''), ('21198','{33785}>{$ZABBIX.SERVER.UTIL.MAX:"ODBC poller"}','Zabbix server: Utilization of ODBC poller processes is high','','0','3','Indicates potential performance issues with the ODBC poller, which may affect monitoring efficiency and response times.','21197','0','0','1','{33785}<{$ZABBIX.SERVER.UTIL.MIN:"ODBC poller"}','0','','0','','0','Zabbix server: Utilization of ODBC poller processes over {$ZABBIX.SERVER.UTIL.MAX:"ODBC poller"}%','',''), ('22382','{30605}<{$KERNEL.MAXFILES.MIN}','Linux: Configured max number of open filedescriptors is too low','','0','1','','22368','0','0','0','','0','','0','','0','Linux: Configured max number of open filedescriptors is too low (< {$KERNEL.MAXFILES.MIN})','',''), ('22383','{30606}<{$KERNEL.MAXPROC.MIN}','Linux: Configured max number of processes is too low','','0','1','','22369','0','0','0','','0','','0','','0','Linux: Configured max number of processes is too low (< {$KERNEL.MAXPROC.MIN})','',''), ('22384','{30607}>{$CPU.UTIL.CRIT}','Linux: High CPU utilization','','0','2','CPU utilization is too high. The system might be slow to respond.','22370','0','0','0','','0','','0','Current utilization: {ITEM.LASTVALUE1}','0','Linux: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','',''), ('22385','{32783} and length({32784})>0','Linux: System name has changed','','0','1','The name of the system has changed. Acknowledge to close the problem manually.','22371','0','0','0','','0','','1','','0','Linux: System name has changed (new name: {ITEM.VALUE})','',''), ('22386','{33877}=0','Linux: System time is out of sync','','0','2','The host''s system time is different from Zabbix server time.','22372','0','0','1','{33878}=1','0','','1','','0','Linux: System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX})','',''), ('22387','{32785} and length({32786})>0','Linux: Operating system description has changed','','0','1','The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Acknowledge to close the problem manually.','22373','0','0','0','','0','','1','','0','','',''), ('22388','{30615}<10m','Linux: {HOST.NAME} has been restarted','','0','2','The host uptime is less than 10 minutes.','22374','0','0','0','','0','','1','','0','Linux: {HOST.NAME} has been restarted (uptime < 10m)','',''), ('22389','{30616}<>{30617}','Linux: /etc/passwd has been changed','','0','1','','22375','0','0','0','','0','','1','','0','','',''), ('22390','{30618}>{$MEMORY.UTIL.MAX}','Linux: High memory utilization','','0','3','The system is running out of free memory.','22376','0','0','0','','0','','0','','0','Linux: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','',''), ('22391','{30619}=0','Linux: Zabbix agent is not available','','0','3','For passive agents only, host availability is used with `{$AGENT.TIMEOUT}` as a time threshold.','22377','0','0','0','','0','','1','','0','Linux: Zabbix agent is not available (for {$AGENT.TIMEOUT})','',''), ('22392','{30620}/{30621}*100>80','Linux: Getting closer to process limit','','0','2','','22378','0','0','0','','0','','0','{ITEM.LASTVALUE1} active, {ITEM.LASTVALUE2} limit.','0','Linux: Getting closer to process limit (over 80% used)','',''), ('22393','{30955}<{$SWAP.PFREE.MIN.WARN} and {30956}>0','Linux: High swap space usage','','0','2','If there is no swap configured, this trigger is ignored.','22379','0','0','0','','0','','0','Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}','0','Linux: High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free)','',''), ('22394','{30957}<{$MEMORY.AVAILABLE.MIN} and {30958}>0','Linux: Lack of available memory','','0','3','The system is running out of memory.','22380','0','0','0','','0','','0','Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}','0','Linux: Lack of available memory (<{$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2})','',''), ('22395','{30626}/{30627}>{$LOAD_AVG_PER_CPU.MAX.WARN} and {30628}>0 and {30629}>0','Linux: Load average is too high','','0','3','The load average per CPU is too high. The system may be slow to respond.','22381','0','0','0','','0','','0','Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}','0','Linux: Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m)','',''), ('22404','{30995}<0 and {30996}>0 and ({30997}=6 or {30997}=1) and ({30998}<>2)','Linux: Interface {#IFNAME}: Ethernet has changed to lower speed than it was before','','0','1','This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge to close the problem manually.','22396','0','2','1','({30995}>0 and {30999}>0) or ({30998}=2)','0','','1','Current reported speed: {ITEM.LASTVALUE1}','0','','',''), ('22405','{30657}>{$IF.ERRORS.WARN:"{#IFNAME}"} or {30658}>{$IF.ERRORS.WARN:"{#IFNAME}"}','Linux: Interface {#IFNAME}: High error rate','','0','2','It recovers when it is below 80% of the `{$IF.ERRORS.WARN:"{#IFNAME}"}` threshold.','22397','0','2','1','{30659}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 and {30660}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8','0','','1','errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}','0','Linux: Interface {#IFNAME}: High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m)','',''), ('22406','{$IFCONTROL:"{#IFNAME}"}=1 and {30661}=2 and ({30662}<>{30663})','Linux: Interface {#IFNAME}: Link down','','0','3','This trigger expression works as follows: 1. It can be triggered if the operations status is down. 2. `{$IFCONTROL:"{#IFNAME}"}=1` - a user can redefine the context macro to "0", marking this interface as not important. No new trigger will be fired if this interface is down. 3. `last(/TEMPLATE_NAME/METRIC,#1)<>last(/TEMPLATE_NAME/METRIC,#2)` - the trigger fires only if the operational status was up to (1) sometime before (so, does not fire for "eternal off" interfaces.) WARNING: if closed manually - it will not fire again on the next poll, because of .diff.','22398','0','2','1','{30661}<>2 or {$IFCONTROL:"{#IFNAME}"}=0','0','','1','Current state: {ITEM.LASTVALUE1}','0','','',''), ('22407','{30664} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} or {30665} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"}','Linux: {#DEVNAME}: Disk read/write request responses are too high','','0','2','This trigger might indicate the disk `{#DEVNAME}` saturation.','22399','0','2','0','','0','','1','','0','Linux: {#DEVNAME}: Disk read/write request responses are too high (read > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} ms for 15m or write > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} ms for 15m)','',''), ('22408','{33642}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}','Linux: FS [{#FSNAME}]: Space is critically low','','0','3','The volume''s space usage exceeds the `{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%` limit. The trigger expression is based on the current used and maximum available spaces. Event name represents the total volume space, which can differ from the maximum available space, depending on the filesystem type.','22400','0','2','0','','0','','1','Space used: {{ITEM.LASTVALUE1}.fmtnum(1)}%','0','Linux: FS [{#FSNAME}]: Space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%, total {{?last(//vfs.fs.dependent.size[{#FSNAME},total])/1024/1024/1024}.fmtnum(1)}GB)','',''), ('22409','{33643}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}','Linux: FS [{#FSNAME}]: Space is low','','0','2','The volume''s space usage exceeds the `{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%` limit. The trigger expression is based on the current used and maximum available spaces. Event name represents the total volume space, which can differ from the maximum available space, depending on the filesystem type.','22401','0','2','0','','0','','1','Space used: {{ITEM.LASTVALUE1}.fmtnum(1)}%','0','Linux: FS [{#FSNAME}]: Space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%, total {{?last(//vfs.fs.dependent.size[{#FSNAME},total])/1024/1024/1024}.fmtnum(1)}GB)','',''), ('22410','{30674}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}','Linux: FS [{#FSNAME}]: Running out of free inodes','','0','3','Disk writing may fail if index nodes are exhausted, leading to error messages like "No space left on device" or "Disk is full", despite available free space.','22402','0','2','0','','0','','0','Free inodes: {ITEM.LASTVALUE1}','0','Linux: {#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%)','',''), ('22411','{30675}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}','Linux: FS [{#FSNAME}]: Running out of free inodes','','0','2','Disk writing may fail if index nodes are exhausted, leading to error messages like "No space left on device" or "Disk is full", despite available free space.','22403','0','2','0','','0','','0','Free inodes: {ITEM.LASTVALUE1}','0','Linux: FS [{#FSNAME}]: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%)','',''), ('22560','({31006}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{31007} or {31008}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{31007}) and {31007}>0','Linux: Interface {#IFNAME}: High bandwidth usage','','0','2','The utilization of the network interface is close to its estimated maximum bandwidth.','22558','0','2','1','{31006}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{31007} and {31008}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{31007}','0','','1','In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}','0','Linux: Interface {#IFNAME}: High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%)','',''), ('22988','{32923}=2','Zabbix server: Proxy [{#PROXY.NAME}]: Zabbix proxy is outdated','','0','2','Zabbix proxy version is older than server version, but is partially supported. Only data collection and remote execution is available.','22985','0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','',''), ('22989','{35022}>{$ZABBIX.PROXY.LAST_SEEN.MAX}','Zabbix server: Proxy [{#PROXY.NAME}]: Zabbix proxy last seen','','0','2','Zabbix proxy is not updating the configuration data.','22986','0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Zabbix server: Proxy [{#PROXY.NAME}]: Zabbix proxy last seen more than {$ZABBIX.PROXY.LAST_SEEN.MAX} seconds ago','',''), ('22990','{32530}=-1','Zabbix server: Proxy [{#PROXY.NAME}]: Zabbix proxy never seen','','0','2','Zabbix proxy is not updating the configuration data.','22987','0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','',''), ('23091','{32676}=0 and {32677}=1','Linux: FS [{#FSNAME}]: Filesystem has become read-only','','0','3','The filesystem has become read-only, possibly due to an I/O error. Available only for Zabbix agents 6.4 and higher.','23090','0','2','1','{32677}=0','0','','1','','0','','',''), ('23162','{32788}<>0','Linux: Number of installed packages has been changed','','0','2','','23161','0','0','0','','0','','1','','0','','',''), ('23225','{33769}>{$ZABBIX.SERVER.UTIL.MAX:"connector manager"}','Zabbix server: Utilization of connector manager processes is high','','0','3','Indicates potential performance issues with the connector manager, which may affect monitoring efficiency and response times.','23223','0','0','1','{33769}<{$ZABBIX.SERVER.UTIL.MIN:"connector manager"}','0','','0','','0','Zabbix server: Utilization of connector manager processes over {$ZABBIX.SERVER.UTIL.MAX:"connector manager"}%','',''), ('23226','{33770}>{$ZABBIX.SERVER.UTIL.MAX:"connector worker"}','Zabbix server: Utilization of connector worker processes is high','','0','3','Indicates potential performance issues with the connector worker, which may affect monitoring efficiency and response times.','23224','0','0','1','{33770}<{$ZABBIX.SERVER.UTIL.MIN:"connector worker"}','0','','0','','0','Zabbix server: Utilization of connector worker processes over {$ZABBIX.SERVER.UTIL.MAX:"connector worker"}%','',''), ('23228','{32925}=3','Zabbix server: Proxy [{#PROXY.NAME}]: Zabbix proxy is not supported','','0','4','Zabbix proxy version is older than server previous LTS release version or server major version is older than proxy major version.','23227','0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','',''), ('23288','{33771}>{$ZABBIX.SERVER.UTIL.MAX:"discovery manager"}','Zabbix server: Utilization of discovery manager processes is high','','0','3','Indicates potential performance issues with the discovery manager, which may affect monitoring efficiency and response times.','23286','0','0','1','{33771}<{$ZABBIX.SERVER.UTIL.MIN:"discovery manager"}','0','','0','','0','Zabbix server: Utilization of discovery manager processes over {$ZABBIX.SERVER.UTIL.MAX:"discovery manager"}%','',''), ('23289','{33772}>{$ZABBIX.SERVER.UTIL.MAX:"discovery worker"}','Zabbix server: Utilization of discovery worker processes is high','','0','3','Indicates potential performance issues with the discovery worker, which may affect monitoring efficiency and response times.','23287','0','0','1','{33772}<{$ZABBIX.SERVER.UTIL.MIN:"discovery worker"}','0','','0','','0','Zabbix server: Utilization of discovery worker processes over {$ZABBIX.SERVER.UTIL.MAX:"discovery worker"}%','',''), ('23299','{33763}>{$ZABBIX.SERVER.UTIL.MAX:"agent poller"}','Zabbix server: Utilization of agent poller processes is high','','0','3','Indicates potential performance issues with the agent poller, which may affect monitoring efficiency and response times.','23297','0','0','1','{33763}<{$ZABBIX.SERVER.UTIL.MIN:"agent poller"}','0','','0','','0','Zabbix server: Utilization of agent poller processes over {$ZABBIX.SERVER.UTIL.MAX:"agent poller"}%','',''), ('23300','{33777}>{$ZABBIX.SERVER.UTIL.MAX:"http agent poller"}','Zabbix server: Utilization of http agent poller processes is high','','0','3','Indicates potential performance issues with the http agent poller, which may affect monitoring efficiency and response times.','23298','0','0','1','{33777}<{$ZABBIX.SERVER.UTIL.MIN:"http agent poller"}','0','','0','','0','Zabbix server: Utilization of http agent poller processes over {$ZABBIX.SERVER.UTIL.MAX:"http agent poller"}%','',''), ('23396','{33794}>{$ZABBIX.SERVER.UTIL.MAX:"snmp poller"}','Zabbix server: Utilization of snmp poller processes is high','','0','3','Indicates potential performance issues with the snmp poller, which may affect monitoring efficiency and response times.','23395','0','0','1','{33794}<{$ZABBIX.SERVER.UTIL.MIN:"snmp poller"}','0','','0','','0','Zabbix server: Utilization of snmp poller processes over {$ZABBIX.SERVER.UTIL.MAX:"snmp poller"}%','',''), ('23732','{33812}>{$ZABBIX.SERVER.UTIL.MAX:"browser poller"}','Zabbix server: Utilization of browser poller processes is high','','0','3','Indicates potential performance issues with the browser poller, which may affect monitoring efficiency and response times.','23728','0','0','1','{33812}<{$ZABBIX.SERVER.UTIL.MIN:"browser poller"}','0','','0','','0','Zabbix server: Utilization of browser poller processes over {$ZABBIX.SERVER.UTIL.MAX:"browser poller"}%','',''), ('23733','{33813}>{$ZABBIX.SERVER.UTIL.MAX:"configuration syncer worker"}','Zabbix server: Utilization of configuration syncer worker processes is high','','0','3','Indicates potential performance issues with the configuration syncer worker, which may affect monitoring efficiency and response times.','23729','0','0','1','{33813}<{$ZABBIX.SERVER.UTIL.MIN:"configuration syncer worker"}','0','','0','','0','Zabbix server: Utilization of configuration syncer worker processes over {$ZABBIX.SERVER.UTIL.MAX:"configuration syncer worker"}%','',''), ('23734','{33814}>{$ZABBIX.SERVER.UTIL.MAX:"internal poller"}','Zabbix server: Utilization of internal poller processes is high','','0','3','Indicates potential performance issues with the internal poller, which may affect monitoring efficiency and response times.','23730','0','0','1','{33814}<{$ZABBIX.SERVER.UTIL.MIN:"internal poller"}','0','','0','','0','Zabbix server: Utilization of internal poller processes over {$ZABBIX.SERVER.UTIL.MAX:"internal poller"}%','',''), ('23735','{33815}>{$ZABBIX.SERVER.UTIL.MAX:"proxy group manager"}','Zabbix server: Utilization of proxy group manager processes is high','','0','3','Indicates potential performance issues with the proxy group manager, which may affect monitoring efficiency and response times.','23731','0','0','1','{33815}<{$ZABBIX.SERVER.UTIL.MIN:"proxy group manager"}','0','','0','','0','Zabbix server: Utilization of proxy group manager processes over {$ZABBIX.SERVER.UTIL.MAX:"proxy group manager"}%','',''), ('23786','{33935}<{$PROXY.GROUP.AVAIL.PERCENT.MIN}','Zabbix server: Proxy group [{#PROXY.GROUP.NAME}]: Availability too low','','0','2','The availability of proxies in a proxy group is below {$PROXY.GROUP.AVAIL.PERCENT.MIN}% for at least 3 minutes.','23780','0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','Zabbix server: Proxy group [{#PROXY.GROUP.NAME}]: Availability below {$PROXY.GROUP.AVAIL.PERCENT.MIN}%','',''), ('23787','{33936}=-1','Zabbix server: Proxy group [{#PROXY.GROUP.NAME}]: Failover invalid value','','0','2','Proxy group failover has an invalid value.','23781','0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','',''), ('23788','{33937}=-1','Zabbix server: Proxy group [{#PROXY.GROUP.NAME}]: Minimum number of proxies invalid value','','0','2','Proxy group minimum number of proxies has an invalid value.','23782','0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','',''), ('23789','{33938}=4','Zabbix server: Proxy group [{#PROXY.GROUP.NAME}]: Status "degrading"','','0','3','The state of the Zabbix proxy group is "degrading".','23783','0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','',''), ('23790','{33939}=1','Zabbix server: Proxy group [{#PROXY.GROUP.NAME}]: Status "offline"','','0','4','The state of the Zabbix proxy group is "offline".','23784','0','2','0','','0','','0','Current value: {ITEM.LASTVALUE1}','0','','',''), ('23791','{33940}<>{33941} and length({33942})>0','Zabbix server: Proxy group [{#PROXY.GROUP.NAME}]: Status changed','','0','1','The state of the Zabbix proxy group has changed. Acknowledge to close the problem manually.','23785','0','2','0','','0','','1','Current value: {ITEM.LASTVALUE1}','0','','',''), ('24634','{35019}=0','Zabbix server: Wrong template assigned','','0','5','Check that the template has been selected correctly.','24525','0','0','0','','0','','1','','0','Zabbix server: Zabbix server template is assigned to Zabbix proxy','',''); INSERT INTO trigger_depends (triggerdepid,triggerid_down,triggerid_up) VALUES ('48951','17412','17411'), ('48952','17414','17413'), ('48953','17416','17415'), ('48959','15948','15949'), ('48960','15950','15949'), ('48961','17429','17428'), ('48962','17431','17430'), ('48963','17433','17432'), ('48964','17355','17354'), ('48965','17358','17357'), ('48966','18960','18962'), ('48967','16743','16744'), ('48968','16784','16785'), ('48969','16790','16791'), ('48970','16892','16900'), ('48971','16894','16900'), ('48972','17459','17458'), ('48973','17463','17458'), ('48974','17471','17480'), ('48975','17476','17481'), ('48976','17478','17480'), ('48977','17479','17481'), ('48978','17483','17482'), ('48979','17486','17485'), ('48980','16646','16647'), ('48981','18965','16660'), ('48982','16809','16810'), ('48983','18966','16677'), ('48984','16902','16904'), ('48985','16904','16905'), ('48986','16906','16904'), ('48987','16909','16906'), ('48988','16910','16912'), ('48989','16912','16913'), ('48990','16914','16912'), ('48991','16917','16914'), ('48992','17962','17963'), ('48993','17962','17958'), ('48999','16752','16753'), ('49007','15961','15960'), ('49008','15962','15960'), ('49009','16679','15960'), ('49017','21255','21260'), ('49018','21256','21260'), ('49019','21257','21260'), ('49020','21258','21260'), ('49021','21259','21260'), ('49026','17101','17098'), ('49034','16270','16269'), ('49035','16448','16269'), ('49036','16265','16269'), ('49039','22593','22596'), ('49041','22595','22593'), ('49042','22595','22596'), ('49043','22598','22597'), ('49049','22607','22608'), ('49050','22609','22610'), ('49051','17503','17505'), ('49052','17512','17511'), ('49053','17513','17505'), ('49059','17519','17518'), ('49060','22612','17518'), ('49061','22613','22612'), ('49062','22613','17518'), ('49063','22613','17519'), ('49064','18918','18917'), ('49065','17973','17965'), ('49066','17974','17966'), ('49067','17540','17541'), ('49068','16833','16920'), ('49069','16920','16921'), ('49070','22644','22649'), ('49071','22646','22649'), ('49072','22652','22649'), ('49073','22654','22653'), ('49074','18987','18986'), ('49075','18989','18988'), ('49076','18993','18992'), ('49077','18994','18992'), ('49078','19009','19010'), ('49079','17978','17977'), ('49080','17980','17979'), ('49081','17984','17983'), ('49082','17985','17983'), ('49083','18000','18001'), ('49084','18225','18224'), ('49085','18237','18236'), ('49086','16929','16928'), ('49087','16940','17084'), ('49088','18537','18536'), ('49089','18539','18538'), ('49090','18541','18540'), ('49091','16719','16721'), ('49092','16975','16723'), ('49093','16729','16728'), ('49094','16730','16728'), ('49095','16756','16758'), ('49096','16979','16759'), ('49097','16765','16764'), ('49098','16766','16764'), ('49099','16734','16736'), ('49100','16983','16732'), ('49101','16741','16740'), ('49102','16742','16740'), ('49108','16997','16984'), ('49114','17391','17396'), ('49115','17395','17396'), ('49116','16683','16687'), ('49198','21544','21543'), ('49199','21545','21544'), ('49200','21545','21543'), ('49201','16492','21546'), ('49202','21547','21548'), ('49203','21548','21543'), ('49204','21549','21552'), ('49205','21550','21552'), ('49206','21551','21552'), ('49207','14318','14319'), ('49208','21555','21554'), ('49209','21556','21555'), ('49210','21556','21554'), ('49211','21559','21560'), ('49212','21560','21554'), ('49213','17554','15717'), ('49214','17555','15717'), ('49215','17555','17554'), ('49216','17556','15717'), ('49217','17557','15717'), ('49218','17557','17556'), ('49219','21561','21564'), ('49220','21562','21564'), ('49221','21563','21564'), ('49222','17559','17558'), ('49223','17561','17560'), ('49224','21567','21566'), ('49225','17563','17562'), ('49226','17565','17564'), ('49227','21570','21569'), ('49228','21571','21570'), ('49229','21571','21569'), ('49230','15721','15720'), ('49231','21573','21574'), ('49232','21574','21569'), ('49233','15394','15393'), ('49234','21575','21578'), ('49235','21576','21578'), ('49236','21577','21578'), ('49237','15392','15391'), ('49238','17322','14339'), ('49239','21580','21579'), ('49240','21581','21580'), ('49241','21581','21579'), ('49242','21584','21586'), ('49243','21586','21579'), ('49244','21588','21587'), ('49245','21589','21588'), ('49246','21589','21587'), ('49247','21592','21594'), ('49248','21594','21587'), ('49249','15382','15381'), ('49250','21595','21598'), ('49251','21596','21598'), ('49252','21597','21598'), ('49253','15380','15379'), ('49254','16504','16505'), ('49255','14372','14373'), ('49256','15386','15385'), ('49257','21599','21602'), ('49258','21600','21602'), ('49259','21601','21602'), ('49260','15384','15383'), ('49261','14380','14381'), ('49262','18299','18298'), ('49263','18300','18299'), ('49264','18300','18298'), ('49265','18303','18302'), ('49266','18309','18308'), ('49267','18311','18316'), ('49268','18312','18316'), ('49269','18313','18316'), ('49270','18314','18316'), ('49271','18315','18316'), ('49272','18319','18318'), ('49273','18321','18320'), ('49274','18323','18322'), ('49275','18326','18325'), ('49276','18327','18326'), ('49277','18327','18325'), ('49278','18330','18329'), ('49279','18336','18335'), ('49280','18338','18343'), ('49281','18339','18343'), ('49282','18340','18343'), ('49283','18341','18343'), ('49284','18342','18343'), ('49285','18346','18345'), ('49286','18348','18347'), ('49287','18350','18349'), ('49288','18353','18352'), ('49289','18354','18353'), ('49290','18354','18352'), ('49291','18357','18356'), ('49292','18363','18362'), ('49293','18365','18370'), ('49294','18366','18370'), ('49295','18367','18370'), ('49296','18368','18370'), ('49297','18369','18370'), ('49298','18373','18372'), ('49299','18375','18374'), ('49300','18377','18376'), ('49301','18380','18379'), ('49302','18381','18380'), ('49303','18381','18379'), ('49304','18384','18383'), ('49305','18390','18389'), ('49306','18392','18397'), ('49307','18393','18397'), ('49308','18394','18397'), ('49309','18395','18397'), ('49310','18396','18397'), ('49311','18400','18399'), ('49312','18402','18401'), ('49313','18404','18403'), ('49314','18407','18406'), ('49315','18408','18407'), ('49316','18408','18406'), ('49317','18411','18410'), ('49318','18417','18416'), ('49319','18419','18424'), ('49320','18420','18424'), ('49321','18421','18424'), ('49322','18422','18424'), ('49323','18423','18424'), ('49324','18427','18426'), ('49325','18429','18428'), ('49326','18431','18430'), ('49327','21604','21603'), ('49328','21605','21604'), ('49329','21605','21603'), ('49330','21609','21608'), ('49331','21610','21611'), ('49332','21611','21603'), ('49333','21613','21612'), ('49334','21614','21613'), ('49335','21614','21612'), ('49336','21617','21616'), ('49337','21618','21619'), ('49338','21619','21612'), ('49339','21621','21620'), ('49340','21622','21621'), ('49341','21622','21620'), ('49342','21625','21624'), ('49343','21626','21627'), ('49344','21627','21620'), ('49345','21630','21629'), ('49346','21633','21632'), ('49347','21635','21634'), ('49348','21640','21639'), ('49349','21642','21645'), ('49350','21643','21645'), ('49351','21644','21645'), ('49352','21648','21647'), ('49353','21650','21649'), ('49354','21655','21654'), ('49355','21657','21660'), ('49356','21658','21660'), ('49357','21659','21660'), ('49358','21662','21661'), ('49359','21664','21663'), ('49360','21667','21666'), ('49361','21668','21667'), ('49362','21668','21666'), ('49363','21670','21671'), ('49364','21671','21666'), ('49365','15334','15333'), ('49366','21672','21675'), ('49367','21673','21675'), ('49368','21674','21675'), ('49369','15332','15331'), ('49370','14460','14461'), ('49371','16523','21669'), ('49372','21678','21677'), ('49373','21679','21678'), ('49374','21679','21677'), ('49375','16525','21680'), ('49376','21681','21682'), ('49377','21682','21677'), ('49378','21683','21686'), ('49379','21684','21686'), ('49380','21685','21686'), ('49381','14476','14477'), ('49382','21688','21687'), ('49383','21689','21688'), ('49384','21689','21687'), ('49385','21691','21692'), ('49386','21692','21687'), ('49387','21693','21696'), ('49388','21694','21696'), ('49389','21695','21696'), ('49390','14495','14496'), ('49391','21699','21698'), ('49392','21700','21699'), ('49393','21700','21698'), ('49394','14511','17574'), ('49395','16530','21701'), ('49396','21702','21703'), ('49397','21703','21698'), ('49398','21704','21707'), ('49399','21705','21707'), ('49400','21706','21707'), ('49401','19666','19665'), ('49402','19667','19668'), ('49403','21710','21709'), ('49404','21711','21710'), ('49405','21711','21709'), ('49406','21713','21714'), ('49407','21714','21709'), ('49408','21715','21718'), ('49409','21716','21718'), ('49410','21717','21718'), ('49411','21721','21720'), ('49412','21722','21721'), ('49413','21722','21720'), ('49414','21724','21725'), ('49415','21725','21720'), ('49416','16532','21723'), ('49417','21726','21729'), ('49418','21727','21729'), ('49419','21728','21729'), ('49420','14551','14552'), ('49421','21732','21731'), ('49422','21733','21732'), ('49423','21733','21731'), ('49424','21735','21736'), ('49425','21736','21731'), ('49426','15374','15373'), ('49427','21737','21740'), ('49428','21738','21740'), ('49429','21739','21740'), ('49430','15376','15375'), ('49431','14914','14915'), ('49432','21743','21742'), ('49433','21744','21743'), ('49434','21744','21742'), ('49435','21746','21747'), ('49436','21747','21742'), ('49437','14589','14590'), ('49438','16538','21745'), ('49439','21748','21751'), ('49440','21749','21751'), ('49441','21750','21751'), ('49442','21754','21753'), ('49443','21755','21754'), ('49444','21755','21753'), ('49445','21757','21758'), ('49446','21758','21753'), ('49447','21759','21762'), ('49448','21760','21762'), ('49449','21761','21762'), ('49450','15338','15337'), ('49451','17333','17332'), ('49452','21764','21763'), ('49453','21765','21764'), ('49454','21765','21763'), ('49455','16540','21766'), ('49456','21767','21768'), ('49457','21768','21763'), ('49458','14624','14625'), ('49459','21769','21772'), ('49460','21770','21772'), ('49461','21771','21772'), ('49462','18434','18433'), ('49463','18435','18434'), ('49464','18435','18433'), ('49465','18438','18439'), ('49466','18439','18433'), ('49467','18441','18444'), ('49468','18442','18444'), ('49469','18443','18444'), ('49470','18446','18447'), ('49471','18450','18449'), ('49472','21775','21774'), ('49473','21776','21775'), ('49474','21776','21774'), ('49475','19681','21777'), ('49476','21778','21779'), ('49477','21779','21774'), ('49480','21780','21783'), ('49481','21781','21783'), ('49482','21782','21783'), ('49483','19696','19695'), ('49484','21785','21784'), ('49485','21786','21785'), ('49486','21786','21784'), ('49487','19709','21787'), ('49488','21788','21789'), ('49489','21789','21784'), ('49492','21790','21793'), ('49493','21791','21793'), ('49494','21792','21793'), ('49495','19724','19723'), ('49496','21795','21794'), ('49497','21796','21795'), ('49498','21796','21794'), ('49499','19737','21797'), ('49500','21798','21799'), ('49501','21799','21794'), ('49504','21800','21803'), ('49505','21801','21803'), ('49506','21802','21803'), ('49507','19752','19751'), ('49508','21805','21804'), ('49509','21806','21805'), ('49510','21806','21804'), ('49511','19765','21807'), ('49512','21808','21809'), ('49513','21809','21804'), ('49516','21810','21813'), ('49517','21811','21813'), ('49518','21812','21813'), ('49519','19780','19779'), ('49520','21815','21814'), ('49521','21816','21815'), ('49522','21816','21814'), ('49523','19793','21817'), ('49524','21818','21819'), ('49525','21819','21814'), ('49528','21820','21823'), ('49529','21821','21823'), ('49530','21822','21823'), ('49531','19808','19807'), ('49532','21825','21824'), ('49533','21826','21825'), ('49534','21826','21824'), ('49535','19821','21827'), ('49536','21828','21829'), ('49537','21829','21824'), ('49540','21830','21833'), ('49541','21831','21833'), ('49542','21832','21833'), ('49543','19836','19835'), ('49544','21835','21834'), ('49545','21836','21835'), ('49546','21836','21834'), ('49547','19849','21837'), ('49548','21838','21839'), ('49549','21839','21834'), ('49552','21840','21843'), ('49553','21841','21843'), ('49554','21842','21843'), ('49555','19864','19863'), ('49556','21845','21844'), ('49557','21846','21845'), ('49558','21846','21844'), ('49559','19877','21847'), ('49560','21848','21849'), ('49561','21849','21844'), ('49564','21850','21853'), ('49565','21851','21853'), ('49566','21852','21853'), ('49567','19892','19891'), ('49568','21855','21854'), ('49569','21856','21855'), ('49570','21856','21854'), ('49571','19905','21857'), ('49572','21858','21859'), ('49573','21859','21854'), ('49576','21860','21863'), ('49577','21861','21863'), ('49578','21862','21863'), ('49579','19920','19919'), ('49580','21865','21864'), ('49581','21866','21865'), ('49582','21866','21864'), ('49583','19933','21867'), ('49584','21868','21869'), ('49585','21869','21864'), ('49588','21870','21873'), ('49589','21871','21873'), ('49590','21872','21873'), ('49591','19948','19947'), ('49592','21875','21874'), ('49593','21876','21875'), ('49594','21876','21874'), ('49595','19961','21877'), ('49596','21878','21879'), ('49597','21879','21874'), ('49600','21880','21883'), ('49601','21881','21883'), ('49602','21882','21883'), ('49603','19976','19975'), ('49604','21885','21884'), ('49605','21886','21885'), ('49606','21886','21884'), ('49607','19989','21887'), ('49608','21888','21889'), ('49609','21889','21884'), ('49612','21890','21893'), ('49613','21891','21893'), ('49614','21892','21893'), ('49615','20004','20003'), ('49616','21895','21894'), ('49617','21896','21895'), ('49618','21896','21894'), ('49619','20017','21897'), ('49620','21898','21899'), ('49621','21899','21894'), ('49624','21900','21903'), ('49625','21901','21903'), ('49626','21902','21903'), ('49627','20032','20031'), ('49628','21905','21904'), ('49629','21906','21905'), ('49630','21906','21904'), ('49631','20045','21907'), ('49632','21908','21909'), ('49633','21909','21904'), ('49636','21910','21913'), ('49637','21911','21913'), ('49638','21912','21913'), ('49639','20060','20059'), ('49640','21915','21914'), ('49641','21916','21915'), ('49642','21916','21914'), ('49643','20073','21917'), ('49644','21918','21919'), ('49645','21919','21914'), ('49648','21920','21923'), ('49649','21921','21923'), ('49650','21922','21923'), ('49651','20088','20087'), ('49652','21925','21924'), ('49653','21926','21925'), ('49654','21926','21924'), ('49655','20101','21927'), ('49656','21928','21929'), ('49657','21929','21924'), ('49660','21930','21933'), ('49661','21931','21933'), ('49662','21932','21933'), ('49663','20116','20115'), ('49664','21935','21934'), ('49665','21936','21935'), ('49666','21936','21934'), ('49667','20129','21937'), ('49668','21938','21939'), ('49669','21939','21934'), ('49672','21940','21943'), ('49673','21941','21943'), ('49674','21942','21943'), ('49675','20144','20143'), ('49676','21945','21944'), ('49677','21946','21945'), ('49678','21946','21944'), ('49679','20157','21947'), ('49680','21948','21949'), ('49681','21949','21944'), ('49684','21950','21953'), ('49685','21951','21953'), ('49686','21952','21953'), ('49687','20172','20171'), ('49688','21955','21954'), ('49689','21956','21955'), ('49690','21956','21954'), ('49691','20185','21957'), ('49692','21958','21959'), ('49693','21959','21954'), ('49696','21960','21963'), ('49697','21961','21963'), ('49698','21962','21963'), ('49699','20200','20199'), ('49700','21965','21964'), ('49701','21966','21965'), ('49702','21966','21964'), ('49703','20213','21967'), ('49704','21968','21969'), ('49705','21969','21964'), ('49708','21970','21973'), ('49709','21971','21973'), ('49710','21972','21973'), ('49711','20228','20227'), ('49712','21975','21974'), ('49713','21976','21975'), ('49714','21976','21974'), ('49715','20241','21977'), ('49716','21978','21979'), ('49717','21979','21974'), ('49720','21980','21983'), ('49721','21981','21983'), ('49722','21982','21983'), ('49723','20256','20255'), ('49724','21985','21984'), ('49725','21986','21985'), ('49726','21986','21984'), ('49727','20269','21987'), ('49728','21988','21989'), ('49729','21989','21984'), ('49732','21990','21993'), ('49733','21991','21993'), ('49734','21992','21993'), ('49735','20284','20283'), ('49736','21995','21994'), ('49737','21996','21995'), ('49738','21996','21994'), ('49739','20297','21997'), ('49740','21998','21999'), ('49741','21999','21994'), ('49744','22000','22003'), ('49745','22001','22003'), ('49746','22002','22003'), ('49747','20312','20311'), ('49748','22005','22004'), ('49749','22006','22005'), ('49750','22006','22004'), ('49751','20325','22007'), ('49752','22008','22009'), ('49753','22009','22004'), ('49756','22010','22013'), ('49757','22011','22013'), ('49758','22012','22013'), ('49759','20340','20339'), ('49760','22015','22014'), ('49761','22016','22015'), ('49762','22016','22014'), ('49763','20353','22017'), ('49764','22018','22019'), ('49765','22019','22014'), ('49768','22020','22023'), ('49769','22021','22023'), ('49770','22022','22023'), ('49771','20368','20367'), ('49772','22025','22024'), ('49773','22026','22025'), ('49774','22026','22024'), ('49775','20381','22027'), ('49776','22028','22029'), ('49777','22029','22024'), ('49780','22030','22033'), ('49781','22031','22033'), ('49782','22032','22033'), ('49783','20396','20395'), ('49784','22035','22034'), ('49785','22036','22035'), ('49786','22036','22034'), ('49787','20409','22037'), ('49788','22038','22039'), ('49789','22039','22034'), ('49792','22040','22043'), ('49793','22041','22043'), ('49794','22042','22043'), ('49795','20424','20423'), ('49796','22045','22044'), ('49797','22046','22045'), ('49798','22046','22044'), ('49799','20437','22047'), ('49800','22048','22049'), ('49801','22049','22044'), ('49804','22050','22053'), ('49805','22051','22053'), ('49806','22052','22053'), ('49807','20452','20451'), ('49808','22055','22054'), ('49809','22056','22055'), ('49810','22056','22054'), ('49811','20465','22057'), ('49812','22058','22059'), ('49813','22059','22054'), ('49816','22060','22063'), ('49817','22061','22063'), ('49818','22062','22063'), ('49819','20480','20479'), ('49820','22065','22064'), ('49821','22066','22065'), ('49822','22066','22064'), ('49823','20493','22067'), ('49824','22068','22069'), ('49825','22069','22064'), ('49828','22070','22073'), ('49829','22071','22073'), ('49830','22072','22073'), ('49831','20508','20507'), ('49832','22075','22074'), ('49833','22076','22075'), ('49834','22076','22074'), ('49835','20521','22077'), ('49836','22078','22079'), ('49837','22079','22074'), ('49840','22080','22083'), ('49841','22081','22083'), ('49842','22082','22083'), ('49843','20536','20535'), ('49844','22085','22084'), ('49845','22086','22085'), ('49846','22086','22084'), ('49847','20549','22087'), ('49848','22088','22089'), ('49849','22089','22084'), ('49852','22090','22093'), ('49853','22091','22093'), ('49854','22092','22093'), ('49855','20564','20563'), ('49856','22095','22094'), ('49857','22096','22095'), ('49858','22096','22094'), ('49859','20577','22097'), ('49860','22098','22099'), ('49861','22099','22094'), ('49864','22100','22103'), ('49865','22101','22103'), ('49866','22102','22103'), ('49867','20592','20591'), ('49868','22105','22104'), ('49869','22106','22105'), ('49870','22106','22104'), ('49871','20605','22107'), ('49872','22108','22109'), ('49873','22109','22104'), ('49876','22110','22113'), ('49877','22111','22113'), ('49878','22112','22113'), ('49879','20620','20619'), ('49880','22115','22114'), ('49881','22116','22115'), ('49882','22116','22114'), ('49883','20633','22117'), ('49884','22118','22119'), ('49885','22119','22114'), ('49888','22120','22123'), ('49889','22121','22123'), ('49890','22122','22123'), ('49891','20648','20647'), ('49892','22125','22124'), ('49893','22126','22125'), ('49894','22126','22124'), ('49895','20661','22127'), ('49896','22128','22129'), ('49897','22129','22124'), ('49900','22130','22133'), ('49901','22131','22133'), ('49902','22132','22133'), ('49903','20676','20675'), ('49904','22135','22134'), ('49905','22136','22135'), ('49906','22136','22134'), ('49907','20689','22137'), ('49908','22138','22139'), ('49909','22139','22134'), ('49912','22140','22143'), ('49913','22141','22143'), ('49914','22142','22143'), ('49915','20704','20703'), ('49916','22145','22144'), ('49917','22146','22145'), ('49918','22146','22144'), ('49919','20717','22147'), ('49920','22148','22149'), ('49921','22149','22144'), ('49924','22150','22153'), ('49925','22151','22153'), ('49926','22152','22153'), ('49927','20732','20731'), ('49928','22155','22154'), ('49929','22156','22155'), ('49930','22156','22154'), ('49931','20745','22157'), ('49932','22158','22159'), ('49933','22159','22154'), ('49936','22160','22163'), ('49937','22161','22163'), ('49938','22162','22163'), ('49939','20760','20759'), ('49940','22165','22164'), ('49941','22166','22165'), ('49942','22166','22164'), ('49943','20773','22167'), ('49944','22168','22169'), ('49945','22169','22164'), ('49948','22170','22173'), ('49949','22171','22173'), ('49950','22172','22173'), ('49951','20788','20787'), ('49952','22175','22174'), ('49953','22176','22175'), ('49954','22176','22174'), ('49955','20801','22177'), ('49956','22178','22179'), ('49957','22179','22174'), ('49960','22180','22183'), ('49961','22181','22183'), ('49962','22182','22183'), ('49963','20816','20815'), ('49964','22185','22184'), ('49965','22186','22185'), ('49966','22186','22184'), ('49967','20829','22187'), ('49968','22188','22189'), ('49969','22189','22184'), ('49972','22190','22193'), ('49973','22191','22193'), ('49974','22192','22193'), ('49975','20844','20843'), ('49976','22195','22194'), ('49977','22196','22195'), ('49978','22196','22194'), ('49979','20857','22197'), ('49980','22198','22199'), ('49981','22199','22194'), ('49984','22200','22203'), ('49985','22201','22203'), ('49986','22202','22203'), ('49987','20872','20871'), ('49988','22205','22204'), ('49989','22206','22205'), ('49990','22206','22204'), ('49991','20885','22207'), ('49992','22208','22209'), ('49993','22209','22204'), ('49996','22210','22213'), ('49997','22211','22213'), ('49998','22212','22213'), ('49999','20900','20899'), ('50000','22215','22214'), ('50001','22216','22215'), ('50002','22216','22214'), ('50003','20913','22217'), ('50004','22218','22219'), ('50005','22219','22214'), ('50008','22220','22223'), ('50009','22221','22223'), ('50010','22222','22223'), ('50011','20928','20927'), ('50012','22225','22224'), ('50013','22226','22225'), ('50014','22226','22224'), ('50015','20941','22227'), ('50016','22228','22229'), ('50017','22229','22224'), ('50020','22230','22233'), ('50021','22231','22233'), ('50022','22232','22233'), ('50023','20956','20955'), ('50024','22235','22234'), ('50025','22236','22235'), ('50026','22236','22234'), ('50027','20969','22237'), ('50028','22238','22239'), ('50029','22239','22234'), ('50032','22240','22243'), ('50033','22241','22243'), ('50034','22242','22243'), ('50035','20984','20983'), ('50036','22245','22244'), ('50037','22246','22245'), ('50038','22246','22244'), ('50039','20997','22247'), ('50040','22248','22249'), ('50041','22249','22244'), ('50044','22250','22253'), ('50045','22251','22253'), ('50046','22252','22253'), ('50047','21012','21011'), ('50048','22255','22254'), ('50049','22256','22255'), ('50050','22256','22254'), ('50051','21025','22257'), ('50052','22258','22259'), ('50053','22259','22254'), ('50056','22260','22263'), ('50057','22261','22263'), ('50058','22262','22263'), ('50059','21040','21039'), ('50060','22265','22264'), ('50061','22266','22265'), ('50062','22266','22264'), ('50063','21053','22267'), ('50064','22268','22269'), ('50065','22269','22264'), ('50068','22270','22273'), ('50069','22271','22273'), ('50070','22272','22273'), ('50071','21068','21067'), ('50072','22275','22274'), ('50073','22276','22275'), ('50074','22276','22274'), ('50075','21081','22277'), ('50076','22278','22279'), ('50077','22279','22274'), ('50080','22280','22283'), ('50081','22281','22283'), ('50082','22282','22283'), ('50083','21096','21095'), ('50084','22285','22284'), ('50085','22286','22285'), ('50086','22286','22284'), ('50087','21109','22287'), ('50088','22288','22289'), ('50089','22289','22284'), ('50092','22290','22293'), ('50093','22291','22293'), ('50094','22292','22293'), ('50095','21124','21123'), ('50096','22295','22294'), ('50097','22296','22295'), ('50098','22296','22294'), ('50099','21137','22297'), ('50100','22298','22299'), ('50101','22299','22294'), ('50104','22300','22303'), ('50105','22301','22303'), ('50106','22302','22303'), ('50107','21152','21151'), ('50108','22305','22304'), ('50109','22306','22305'), ('50110','22306','22304'), ('50111','21165','22307'), ('50112','22308','22309'), ('50113','22309','22304'), ('50116','22310','22313'), ('50117','22311','22313'), ('50118','22312','22313'), ('50119','21180','21179'), ('50120','22315','22314'), ('50121','22316','22315'), ('50122','22316','22314'), ('50123','16543','22317'), ('50124','22318','22319'), ('50125','22319','22314'), ('50128','22320','22323'), ('50129','22321','22323'), ('50130','22322','22323'), ('50131','16547','16546'), ('50132','17576','17575'), ('50133','17578','17577'), ('50134','17628','17626'), ('50135','17629','17627'), ('50136','17632','17630'), ('50137','17633','17631'), ('50138','17635','17634'), ('50139','17637','17636'), ('50140','17686','17684'), ('50141','17687','17685'), ('50142','17690','17688'), ('50143','17691','17689'), ('50144','17693','17692'), ('50145','17695','17694'), ('50146','17730','17728'), ('50147','17731','17729'), ('50148','17734','17732'), ('50149','17735','17733'), ('50150','17737','17736'), ('50151','17754','17752'), ('50152','17755','17753'), ('50153','17757','17756'), ('50154','17819','17817'), ('50155','17820','17818'), ('50156','17823','17821'), ('50157','17824','17822'), ('50158','17826','17825'), ('50159','17860','17858'), ('50160','17861','17859'), ('50161','17864','17862'), ('50162','17865','17863'), ('50163','17899','17897'), ('50164','17900','17898'), ('50165','17903','17901'), ('50166','17904','17902'), ('50167','17906','17905'), ('50168','17908','17907'), ('50169','22325','22324'), ('50170','22326','22325'), ('50171','22326','22324'), ('50172','16549','22327'), ('50173','22328','22329'), ('50174','22329','22324'), ('50175','22330','22333'), ('50176','22331','22333'), ('50177','22332','22333'), ('50178','17910','17909'), ('50179','22335','22334'), ('50180','22336','22335'), ('50181','22336','22334'), ('50182','16551','16552'), ('50183','16555','22337'), ('50184','22338','22339'), ('50185','22339','22334'), ('50186','22340','22343'), ('50187','22341','22343'), ('50188','22342','22343'), ('50189','22346','22345'), ('50190','22347','22346'), ('50191','22347','22345'), ('50192','22349','22350'), ('50193','22350','22345'), ('50194','22351','22354'), ('50195','22352','22354'), ('50196','22353','22354'), ('50197','22356','22355'), ('50198','22357','22356'), ('50199','22357','22355'), ('50200','22359','22360'), ('50201','22360','22355'), ('50202','22361','22364'), ('50203','22362','22364'), ('50204','22363','22364'), ('50205','22369','22378'), ('50206','22383','22392'), ('50207','22370','22381'), ('50208','22384','22395'), ('50209','22373','22371'), ('50210','22387','22385'), ('50211','22375','22373'), ('50212','22389','22387'), ('50213','22375','22371'), ('50214','22389','22385'), ('50215','22376','22380'), ('50216','22390','22394'), ('50217','22379','22376'), ('50218','22393','22390'), ('50219','22379','22380'), ('50220','22393','22394'), ('50221','22396','22398'), ('50222','22558','22398'), ('50223','22397','22398'), ('50224','22401','22400'), ('50225','22403','22402'), ('50226','22404','22406'), ('50227','22560','22406'), ('50228','22405','22406'), ('50229','22409','22408'), ('50230','22411','22410'), ('50231','22414','22422'), ('50232','22415','22425'), ('50233','22418','22416'), ('50234','22420','22418'), ('50235','22420','22416'), ('50236','22421','22424'), ('50237','22423','22421'), ('50238','22423','22424'), ('50239','22426','22428'), ('50240','22561','22428'), ('50241','22427','22428'), ('50242','22431','22430'), ('50243','22433','22432'), ('50244','16141','16142'), ('50245','16146','16573'), ('50246','16143','16584'), ('50247','18152','18462'), ('50248','18150','18152'), ('50249','18150','18462'), ('50250','16152','16883'), ('50251','16153','16883'), ('50252','18463','16883'), ('50253','18464','16883'), ('50254','16156','16155'), ('50255','16158','16157'), ('50256','22435','22434'), ('50257','22436','22435'), ('50258','22436','22434'), ('50259','22438','22440'), ('50260','22439','22442'), ('50261','22440','22434'), ('50262','22441','22439'), ('50263','22441','22442'), ('50264','22445','22448'), ('50265','22446','22448'), ('50266','22447','22448'), ('50267','22451','22450'), ('50268','22453','22452'), ('50269','22457','22465'), ('50270','22458','22465'), ('50271','22459','22461'), ('50272','22460','22459'), ('50273','22460','22461'), ('50274','22467','22461'), ('50275','22468','22465'), ('50276','22469','22472'), ('50277','22470','22472'), ('50278','22471','22472'), ('50279','22473','22474'), ('50280','22473','22475'), ('50281','22478','22477'), ('50282','22480','22488'), ('50283','22481','22488'), ('50284','22482','22484'), ('50285','22483','22482'), ('50286','22483','22484'), ('50287','22489','22484'), ('50288','22490','22488'), ('50289','22491','22494'), ('50290','22492','22494'), ('50291','22493','22494'), ('50292','22495','22496'), ('50293','22495','22497'), ('50294','22500','22499'), ('50295','22502','22501'), ('50296','22503','22502'), ('50297','22503','22501'), ('50298','22506','22507'), ('50299','22507','22501'), ('50300','22508','22511'), ('50301','22509','22511'), ('50302','22510','22511'), ('50303','22513','22512'), ('50304','18596','18597'), ('50305','18629','18630'), ('50306','18662','18663'), ('50307','18695','18696'), ('50308','18728','18729'), ('50309','18947','18948'), ('50310','18794','18795'), ('50311','18495','18496'), ('50312','18831','18832'), ('50313','18864','18865'), ('50314','18897','18898'), ('50315','22516','22515'), ('50316','22517','22516'), ('50317','22517','22515'), ('50318','22519','22520'), ('50319','22520','22515'), ('50320','22522','22521'), ('50321','22523','22522'), ('50322','22523','22521'), ('50323','22525','22526'), ('50324','22526','22521'), ('50325','16772','16773'), ('50326','16771','16772'), ('50327','16771','16773'), ('50328','16769','16770'), ('50329','16768','16769'), ('50330','16768','16770'), ('50331','19230','19231'), ('50332','19233','19232'), ('50333','19235','19234'), ('50334','19236','19234'), ('50335','19236','19235'), ('50336','19238','19237'), ('50337','19239','19240'), ('50338','19242','19243'), ('50339','19245','19244'), ('50340','19247','19246'), ('50341','19249','19248'), ('50342','19251','19250'), ('50343','19253','19252'), ('50344','19255','19254'), ('50345','19258','19257'), ('50346','22528','22527'), ('50347','22529','22528'), ('50348','22529','22527'), ('50349','22531','22532'), ('50350','22532','22527'), ('50351','16488','16487'), ('50352','16485','16484'), ('50353','16486','16484'), ('50354','16486','16485'), ('50355','16480','16479'), ('50356','16482','16481'), ('50357','16475','16474'), ('50358','16471','16472'), ('50359','16468','16469'), ('50360','16459','16460'), ('50361','16462','16463'), ('50362','16465','16466'), ('50363','16477','16476'), ('50482','19467','19466'), ('50483','19471','19470'), ('50484','19473','19472'), ('50485','19474','19472'), ('50486','19474','19473'), ('50487','19476','19475'), ('50488','19478','19477'), ('50489','19480','19479'), ('50490','19482','19483'), ('50491','19484','19483'), ('50492','19486','19485'), ('50493','19509','19508'), ('50494','19513','19512'), ('50495','19517','19516'), ('50496','19519','19518'), ('50497','19520','19518'), ('50498','19520','19519'), ('50499','19522','19521'), ('50500','19524','19523'), ('50501','19526','19525'), ('50502','19528','19529'), ('50503','19530','19529'), ('50504','19532','19531'), ('50505','19555','19554'), ('50506','19559','19558'), ('50507','19563','19562'), ('50508','19565','19564'), ('50509','19566','19564'), ('50510','19566','19565'), ('50511','19568','19567'), ('50512','19570','19569'), ('50513','19572','19571'), ('50514','19574','19575'), ('50515','19576','19575'), ('50516','19578','19577'), ('50517','19601','19600'), ('50518','19605','19604'), ('50519','19609','19608'), ('50520','19611','19610'), ('50521','19612','19610'), ('50522','19612','19611'), ('50523','19614','19613'), ('50524','19616','19615'), ('50525','19618','19617'), ('50526','19620','19621'), ('50527','19622','19621'), ('50528','19624','19623'), ('50529','19647','19646'), ('50530','22540','22539'), ('50531','22541','22540'), ('50532','22541','22539'), ('50533','16440','16439'), ('50534','22543','22544'), ('50535','22544','22539'), ('50536','18003','15790'), ('50537','18004','15787'), ('50538','18005','15787'), ('50539','18005','18004'), ('50540','15786','15785'), ('50541','15784','15783'), ('50542','15794','15792'), ('50543','15793','15792'), ('50544','15782','15781'), ('50545','15797','15796'), ('50546','22546','22545'), ('50547','22547','22546'), ('50548','22547','22545'), ('50549','15825','15824'), ('50550','15826','15824'), ('50551','15826','15825'), ('50552','22549','22550'), ('50553','22550','22545'), ('50554','15828','15829'), ('50555','15831','15832'), ('50556','15834','15835'), ('50557','17141','17151'), ('50558','17142','17141'), ('50559','17142','17151'), ('50560','17143','17151'), ('50561','17144','17143'), ('50562','17144','17151'), ('50563','17146','17145'), ('50564','17147','17151'), ('50565','17148','17147'), ('50566','17148','17151'), ('50567','17150','17149'), ('50568','17152','17168'), ('50569','17153','17152'), ('50570','17153','17168'), ('50571','17154','17168'), ('50572','17155','17154'), ('50573','17155','17168'), ('50574','17156','17168'), ('50575','17157','17156'), ('50576','17157','17168'), ('50577','17158','17168'), ('50578','17159','17158'), ('50579','17159','17168'), ('50580','17160','17168'), ('50581','17161','17160'), ('50582','17161','17168'), ('50583','17163','17162'), ('50584','17164','17168'), ('50585','17165','17164'), ('50586','17165','17168'), ('50587','17166','17168'), ('50588','17167','17166'), ('50589','17167','17168'), ('50590','17169','17168'), ('50591','17170','17168'), ('50592','17170','17169'), ('50593','17171','17168'), ('50594','17172','17168'), ('50595','17172','17171'), ('50596','22552','22551'), ('50597','22553','22552'), ('50598','22553','22551'), ('50599','22555','22556'), ('50600','22556','22551'), ('50601','15845','15846'), ('50602','17223','17227'), ('50603','17226','17227'), ('50604','22666','22665'), ('50605','22677','22681'), ('50606','22683','22686'), ('50607','22684','22686'), ('50608','22685','22686'), ('50609','22695','22694'), ('50610','22726','22725'), ('50611','22742','22746'), ('50612','22748','22751'), ('50613','22749','22751'), ('50614','22750','22751'), ('50615','22760','22759'), ('50616','22791','22790'), ('50617','22807','22808'), ('50618','22846','22851'), ('50619','22847','22851'), ('50620','22848','22851'), ('50621','22849','22851'), ('50622','22850','22851'), ('50623','22573','22574'), ('50624','22582','22580'), ('50625','22585','22586'), ('50626','22876','22877'), ('50633','23039','23040'), ('50634','23041','23040'), ('50635','23043','23045'), ('50636','23044','23045'), ('50637','23046','23045'), ('50638','23051','23055'), ('50639','23052','23053'), ('50640','23054','23053'), ('50641','23059','23058'), ('50642','23060','23059'), ('50643','23060','23058'), ('50644','23063','23062'), ('50645','23069','23068'), ('50646','23070','23068'), ('50647','23072','23077'), ('50648','23073','23077'), ('50649','23074','23077'), ('50650','23075','23077'), ('50651','23076','23077'), ('50652','23080','23079'), ('50653','23081','23079'), ('50654','23085','23084'), ('50655','23129','23130'), ('50656','23133','23132'), ('50657','23137','23136'), ('50658','23139','23138'), ('50659','23140','23141'), ('50660','23144','23143'), ('50661','23146','23147'), ('50662','23152','23151'), ('50663','23154','23153'), ('50664','23155','23156'), ('50667','23164','22462'), ('50668','23165','22485'), ('50669','23171','23170'), ('50670','23172','23171'), ('50671','23172','23170'), ('50672','23174','23170'), ('50673','23175','23174'), ('50674','23177','23176'), ('50675','23178','23177'), ('50676','23178','23176'), ('50677','23190','23189'), ('50678','23203','23202'), ('50679','23206','23207'), ('50680','23208','23209'), ('50681','23210','23211'), ('50682','23212','23213'), ('50683','23232','22868'), ('50684','23240','23243'), ('50685','23240','23244'), ('50686','23240','23245'), ('50687','23240','23246'), ('50688','23240','23247'), ('50689','23240','23248'), ('50690','23242','23241'), ('50691','23251','23254'), ('50692','23251','23255'), ('50693','23251','23256'), ('50694','23251','23257'), ('50695','23251','23258'), ('50696','23251','23259'), ('50697','23253','23252'), ('50698','23262','23265'), ('50699','23262','23266'), ('50700','23262','23267'), ('50701','23262','23268'), ('50702','23262','23269'), ('50703','23262','23270'), ('50704','23264','23263'), ('50705','23279','23280'), ('50706','23321','23322'), ('50707','23323','23324'), ('50708','23325','23326'), ('50709','23331','23332'), ('50710','23345','23357'), ('50711','23347','23356'), ('50712','23348','23350'), ('50713','23359','23358'), ('50714','23360','23363'), ('50715','23361','23363'), ('50716','23362','23363'), ('50717','23371','23370'), ('50718','23372','23370'), ('50719','23383','23379'), ('50720','23388','23387'), ('50721','23390','23387'), ('50722','23399','23398'), ('50723','23400','23399'), ('50724','23408','23407'), ('50725','23412','23411'), ('50726','23431','23449'), ('50727','23432','23433'), ('50728','23436','23431'), ('50729','23437','23438'), ('50730','23439','23431'), ('50731','23440','23441'), ('50732','23443','23431'), ('50733','23444','23431'), ('50734','23445','23431'), ('50735','23446','23431'), ('50736','23447','23431'), ('50737','23450','23453'), ('50738','23451','23453'), ('50739','23452','23453'), ('50740','23461','23460'), ('50741','23462','23461'), ('50742','23462','23460'), ('50743','23469','23460'), ('50744','23470','23473'), ('50745','23471','23473'), ('50746','23472','23473'), ('50747','23478','23479'), ('50748','23481','23480'), ('50749','23486','23485'), ('50750','23489','23488'), ('50751','23492','23491'), ('50752','23494','23493'), ('50753','23497','23496'), ('50754','23500','23499'), ('50755','23502','23501'), ('50756','23504','23503'), ('50757','23506','23505'), ('50758','23535','23534'), ('50759','23548','23554'), ('50760','23562','23561'), ('50761','23564','23563'), ('50762','23566','23565'), ('50763','23590','23591'), ('50764','23592','23593'), ('50765','23595','23594'), ('50766','23597','23598'), ('50767','23603','23604'), ('50768','23607','23606'), ('50769','23608','23607'), ('50770','23608','23606'), ('50771','23614','23606'), ('50772','23618','23621'), ('50773','23619','23621'), ('50774','23620','23621'), ('50775','23626','23625'), ('50776','23629','23628'), ('50777','23632','23631'), ('50778','23634','23633'), ('50779','23635','23639'), ('50780','23636','23637'), ('50781','23641','23638'), ('50782','23641','23639'), ('50783','23641','23640'), ('50784','23641','23642'), ('50785','23643','23644'), ('50786','23645','23646'), ('50787','23647','23648'), ('50788','23650','23651'), ('50789','23652','23653'), ('50790','23660','23661'), ('50791','23664','23467'), ('50792','23674','17518'), ('50793','23675','23674'), ('50794','23675','17518'), ('50795','23675','17519'), ('50796','23681','23680'), ('50797','17115','23682'), ('50798','17114','23683'), ('50799','17121','23684'), ('50800','17120','23685'), ('50801','17124','23686'), ('50802','17123','23687'), ('50803','17129','23689'), ('50804','17128','23690'), ('50805','17135','23691'), ('50806','17134','23692'), ('50807','17140','23693'), ('50808','17139','23694'), ('50809','23702','23701'), ('50810','23703','23701'), ('50811','23708','23711'), ('50812','23716','23717'), ('50813','23719','23718'), ('50814','23721','23720'), ('50815','23723','23722'), ('50816','23754','23755'), ('50817','23773','23772'), ('50818','23776','23775'), ('50819','23783','23784'), ('50820','23785','23783'), ('50821','23789','23790'), ('50822','23791','23789'), ('50823','23794','23793'), ('50824','23795','23794'), ('50825','23795','23793'), ('50826','23797','23793'), ('50827','23798','23797'), ('50828','23821','23822'), ('50829','23823','23822'), ('50830','23825','23827'), ('50831','23829','23831'), ('50832','23830','23831'), ('50833','23832','23831'), ('50834','23853','23855'), ('50835','23861','23859'), ('50836','23865','23866'), ('50837','23867','23866'), ('50838','23868','23870'), ('50839','23876','23874'), ('50840','23880','23881'), ('50841','23882','23881'), ('50842','23894','23899'), ('50843','23898','23899'), ('50844','23910','23909'), ('50845','23911','23910'), ('50846','23911','23909'), ('50847','23914','23913'), ('50848','23915','23909'), ('50849','23916','23915'), ('50850','23929','23932'), ('50851','23930','23932'), ('50852','23931','23932'), ('50853','23942','23941'), ('50854','23948','23949'), ('50855','23953','23954'), ('50856','23968','23969'), ('50857','23976','23978'), ('50858','23977','23978'), ('50859','23989','23988'), ('50860','23990','23991'), ('50861','23992','23993'), ('50862','23994','23995'), ('50863','23996','23993'), ('50864','24000','23999'), ('50865','24002','24001'), ('50866','24004','24003'), ('50867','24006','24005'), ('50868','24011','24010'), ('50869','24013','24012'), ('50870','24015','24014'), ('50871','24017','24016'), ('50872','24020','24019'), ('50873','24027','24026'), ('50874','24031','24032'), ('50875','24033','24031'), ('50876','24033','24032'), ('50877','24035','24034'), ('50878','24035','24036'), ('50879','24036','24034'), ('50880','24040','24039'), ('50881','24045','24046'), ('50882','24047','24046'), ('50883','24049','24048'), ('50884','24052','24051'), ('50885','24052','24053'), ('50886','24053','24051'), ('50887','24055','24054'), ('50888','24060','24059'), ('50889','24061','24062'), ('50890','24063','24064'), ('50891','24065','24066'), ('50892','24067','24064'), ('50893','24071','24070'), ('50894','24073','24072'), ('50895','24075','24074'), ('50896','24077','24076'), ('50897','24082','24081'), ('50898','24084','24083'), ('50899','24086','24085'), ('50900','24088','24087'), ('50901','24091','24090'), ('50902','24098','24097'), ('50903','24102','24103'), ('50904','24104','24102'), ('50905','24104','24103'), ('50906','24106','24105'), ('50907','24106','24107'), ('50908','24107','24105'), ('50909','24111','24110'), ('50910','24116','24117'), ('50911','24118','24117'), ('50912','24120','24119'), ('50913','24123','24122'), ('50914','24123','24124'), ('50915','24124','24122'), ('50916','24126','24125'), ('50917','24131','24130'), ('50918','24132','24133'), ('50919','24134','24135'), ('50920','24136','24137'), ('50921','24138','24135'), ('50922','24142','24141'), ('50923','24144','24143'), ('50924','24146','24145'), ('50925','24148','24147'), ('50926','24153','24152'), ('50927','24155','24154'), ('50928','24157','24156'), ('50929','24159','24158'), ('50930','24162','24161'), ('50931','24169','24168'), ('50932','24173','24174'), ('50933','24175','24173'), ('50934','24175','24174'), ('50935','24177','24176'), ('50936','24177','24178'), ('50937','24178','24176'), ('50938','24182','24181'), ('50939','24187','24188'), ('50940','24189','24188'), ('50941','24191','24190'), ('50942','24194','24193'), ('50943','24194','24195'), ('50944','24195','24193'), ('50945','24197','24196'), ('50946','24202','24201'), ('50947','24203','24204'), ('50948','24205','24206'), ('50949','24207','24208'), ('50950','24209','24206'), ('50951','24213','24212'), ('50952','24215','24214'), ('50953','24217','24216'), ('50954','24219','24218'), ('50955','24224','24223'), ('50956','24226','24225'), ('50957','24228','24227'), ('50958','24230','24229'), ('50959','24233','24232'), ('50960','24240','24239'), ('50961','24244','24245'), ('50962','24246','24244'), ('50963','24246','24245'), ('50964','24248','24247'), ('50965','24248','24249'), ('50966','24249','24247'), ('50967','24253','24252'), ('50968','24258','24259'), ('50969','24260','24259'), ('50970','24262','24261'), ('50971','24265','24264'), ('50972','24265','24266'), ('50973','24266','24264'), ('50974','24268','24267'), ('50975','24273','24272'), ('50976','24274','24275'), ('50977','24276','24277'), ('50978','24278','24279'), ('50979','24280','24277'), ('50980','24284','24283'), ('50981','24286','24285'), ('50982','24288','24287'), ('50983','24290','24289'), ('50984','24295','24294'), ('50985','24297','24296'), ('50986','24299','24298'), ('50987','24301','24300'), ('50988','24304','24303'), ('50989','24311','24310'), ('50990','24315','24316'), ('50991','24317','24315'), ('50992','24317','24316'), ('50993','24319','24318'), ('50994','24319','24320'), ('50995','24320','24318'), ('50996','24324','24323'), ('50997','24329','24330'), ('50998','24331','24330'), ('50999','24333','24332'), ('51000','24336','24335'), ('51001','24336','24337'), ('51002','24337','24335'), ('51003','24339','24338'), ('51004','24344','24343'), ('51005','24345','24346'), ('51006','24347','24348'), ('51007','24349','24350'), ('51008','24351','24348'), ('51009','24355','24354'), ('51010','24357','24356'), ('51011','24359','24358'), ('51012','24361','24360'), ('51013','24366','24365'), ('51014','24368','24367'), ('51015','24370','24369'), ('51016','24372','24371'), ('51017','24375','24374'), ('51018','24382','24381'), ('51019','24386','24387'), ('51020','24388','24386'), ('51021','24388','24387'), ('51022','24390','24389'), ('51023','24390','24391'), ('51024','24391','24389'), ('51025','24395','24394'), ('51026','24400','24401'), ('51027','24402','24401'), ('51028','24404','24403'), ('51029','24407','24406'), ('51030','24407','24408'), ('51031','24408','24406'), ('51032','24410','24409'), ('51033','24418','24417'), ('51034','24422','24423'), ('51035','24424','24422'), ('51036','24424','24423'), ('51037','24426','24425'), ('51038','24426','24427'), ('51039','24427','24425'), ('51040','24431','24430'), ('51041','24436','24437'), ('51042','24438','24437'), ('51043','24440','24439'), ('51044','24443','24442'), ('51045','24443','24444'), ('51046','24444','24442'), ('51047','24446','24445'), ('51048','24654','24653'), ('51049','24656','24655'), ('51050','24659','24658'), ('51051','24662','24661'), ('51052','24665','24664'), ('51053','24668','24667'), ('51054','24671','24670'), ('51055','24674','24673'), ('51056','24677','24676'), ('51057','24680','24679'), ('51058','24683','24682'), ('51059','24686','24685'), ('51060','24689','24688'), ('51061','24692','24691'), ('51062','24695','24694'), ('51063','24698','24697'), ('51064','24701','24700'), ('51065','24704','24703'), ('51066','24707','24706'), ('51067','24710','24709'), ('51068','24713','24712'), ('51069','24716','24715'), ('51070','24719','24718'), ('51071','24722','24721'), ('51072','24725','24724'), ('51073','24728','24727'), ('51074','24731','24730'), ('51075','24734','24733'), ('51076','24737','24736'), ('51077','24740','24739'), ('51078','24743','24742'), ('51079','24746','24745'), ('51080','24749','24748'), ('51081','24752','24751'), ('51082','24755','24754'), ('51083','24758','24757'), ('51084','24761','24760'), ('51085','24764','24763'), ('51086','24767','24766'), ('51087','24770','24769'), ('51088','24773','24772'), ('51089','24776','24775'), ('51090','24779','24778'), ('51091','24782','24781'), ('51092','24785','24784'), ('51093','24788','24787'), ('51094','24791','24790'), ('51095','24794','24793'), ('51096','24797','24796'), ('51097','24800','24799'), ('51098','24803','24802'), ('51099','24806','24805'), ('51100','24809','24808'), ('51101','24812','24811'), ('51102','24815','24814'), ('51103','24818','24817'), ('51104','24821','24820'), ('51105','24824','24823'), ('51106','24827','24826'), ('51107','24830','24829'), ('51108','24833','24832'), ('51109','24836','24835'), ('51110','24839','24838'), ('51111','24842','24841'), ('51112','24845','24844'), ('51113','24848','24847'), ('51114','24851','24850'), ('51115','24854','24853'), ('51116','24857','24856'), ('51117','24860','24859'), ('51118','24863','24862'), ('51119','24866','24865'), ('51120','24869','24868'), ('51121','24872','24871'), ('51122','24875','24874'), ('51123','24878','24877'), ('51124','24881','24880'), ('51125','24884','24883'), ('51126','24887','24886'), ('51127','24890','24889'), ('51128','24893','24892'), ('51129','24896','24895'), ('51130','24899','24898'), ('51131','24902','24901'), ('51132','24905','24904'), ('51133','24908','24907'), ('51134','24911','24910'), ('51135','24914','24913'), ('51136','24917','24916'), ('51137','24920','24919'), ('51138','24923','24922'), ('51139','24926','24925'), ('51140','24929','24928'), ('51141','24932','24931'), ('51142','24935','24934'), ('51143','24938','24937'), ('51144','24941','24940'), ('51145','24944','24943'), ('51146','24947','24946'), ('51147','24950','24949'), ('51148','24953','24952'), ('51149','24956','24955'), ('51150','24959','24958'), ('51151','24962','24961'), ('51152','24965','24964'), ('51153','24968','24967'), ('51154','24971','24970'), ('51155','24974','24973'), ('51156','24977','24976'), ('51157','24980','24979'), ('51158','24983','24982'), ('51159','25040','25039'), ('51160','25041','25040'), ('51161','25041','25039'), ('51162','25043','25039'), ('51163','25044','25043'), ('51164','25045','25048'), ('51165','25046','25048'), ('51166','25047','25048'), ('51167','25058','25060'), ('51168','25059','25060'), ('51169','25063','25062'), ('51170','25074','25073'), ('51171','25075','25074'), ('51172','25075','25073'), ('51173','25077','25073'), ('51174','25078','25077'), ('51175','25092','25095'), ('51176','25093','25095'), ('51177','25094','25095'), ('51178','25099','25098'), ('51179','25100','25099'), ('51180','25100','25098'), ('51181','25103','25098'), ('51182','25104','25103'), ('51183','25109','25112'), ('51184','25110','25112'), ('51185','25111','25112'), ('51186','25118','25117'), ('51187','25119','25118'), ('51188','25119','25117'), ('51189','25120','25121'), ('51190','25122','25117'), ('51191','25123','25122'), ('51192','25125','25126'), ('51193','25127','25130'), ('51194','25128','25130'), ('51195','25129','25130'), ('51196','25131','25132'), ('51197','25137','25136'), ('51198','25138','25137'), ('51199','25138','25136'), ('51200','25142','25136'), ('51201','25144','25143'); INSERT INTO functions (functionid,itemid,triggerid,name,parameter) VALUES ('12653','22219','13023','min','$,10m'), ('12726','22859','13339','change','$'), ('12742','22899','13355','change','$'), ('12758','22939','13371','change','$'), ('12790','23019','13403','change','$'), ('12806','23059','13419','change','$'), ('12895','23271','13486','min','$,10m'), ('12949','23359','13520','min','$,10m'), ('13068','23115','13367','avg','$,5m'), ('13069','22922','13366','avg','$,5m'), ('13070','22918','13365','avg','$,5m'), ('13071','22917','13364','avg','$,5m'), ('13072','22882','13350','avg','$,5m'), ('13073','22878','13349','avg','$,5m'), ('13074','22877','13348','avg','$,5m'), ('13075','22962','13382','avg','$,5m'), ('13086','23042','13414','avg','$,5m'), ('13087','22842','13334','avg','$,5m'), ('13088','22838','13333','avg','$,5m'), ('13089','22837','13332','avg','$,5m'), ('13090','23007','13399','avg','$,5m'), ('13091','23002','13398','avg','$,5m'), ('13092','22998','13397','avg','$,5m'), ('13093','22997','13396','avg','$,5m'), ('13160','23661','13557','last','$'), ('13161','23662','13558','last','$'), ('16818','27213','15330','count','$,#1,"eq","{$FAN_CRIT_STATUS}"'), ('16819','27479','15331','count','$,#1,"eq","{$PSU_CRIT_STATUS}"'), ('16820','27479','15332','count','$,#1,"ne","{$PSU_OK_STATUS}"'), ('16821','27480','15333','count','$,#1,"eq","{$FAN_CRIT_STATUS}"'), ('16822','27480','15334','count','$,#1,"ne","{$FAN_OK_STATUS}"'), ('16829','27786','15337','count','$,#1,"eq","{$PSU_CRIT_STATUS}"'), ('16830','27786','15338','count','$,#1,"eq","{$PSU_WARN_STATUS}"'), ('16831','27787','15339','count','$,#1,"eq","{$FAN_CRIT_STATUS}"'), ('16832','27554','15340','count','$,#1,"eq","{$PSU_CRIT_STATUS}"'), ('16833','27555','15341','count','$,#1,"eq","{$FAN_CRIT_STATUS}"'), ('16890','27518','15366','count','$,#1,"eq","{$PSU_CRIT_STATUS}"'), ('16891','27519','15367','count','$,#1,"eq","{$FAN_CRIT_STATUS}"'), ('16895','27593','15369','count','$,#1,"eq","{$PSU_CRIT_STATUS}"'), ('16896','27595','15370','count','$,#1,"eq","{$FAN_CRIT_STATUS}"'), ('16897','27673','15371','count',E'$,#1,"eq","{$FAN_CRIT_STATUS:\\"fanError\\"}"'), ('16898','27673','15371','count',E'$,#1,"eq","{$FAN_CRIT_STATUS:\\"hardwareFaulty\\"}"'), ('16899','27674','15372','count',E'$,#1,"eq","{$PSU_CRIT_STATUS:\\"psuError\\"}"'), ('16900','27674','15372','count',E'$,#1,"eq","{$PSU_CRIT_STATUS:\\"rpsError\\"}"'), ('16901','27674','15372','count',E'$,#1,"eq","{$PSU_CRIT_STATUS:\\"hardwareFaulty\\"}"'), ('16902','28154','15373','count',E'$,#1,"eq","{$FAN_CRIT_STATUS:\\"bad\\"}"'), ('16903','28154','15374','count',E'$,#1,"eq","{$FAN_WARN_STATUS:\\"warning\\"}"'), ('16904','28155','15375','count',E'$,#1,"eq","{$PSU_CRIT_STATUS:\\"bad\\"}"'), ('16905','28155','15376','count',E'$,#1,"eq","{$PSU_WARN_STATUS:\\"warning\\"}"'), ('16906','27822','15377','count','$,#1,"eq","{$FAN_CRIT_STATUS}"'), ('16907','27823','15378','count','$,#1,"eq","{$PSU_CRIT_STATUS}"'), ('16908','27312','15379','count','$,#1,"eq","{$PSU_CRIT_STATUS}"'), ('16909','27312','15380','count','$,#1,"ne","{$PSU_OK_STATUS}"'), ('16910','27313','15381','count','$,#1,"eq","{$FAN_CRIT_STATUS}"'), ('16911','27313','15382','count','$,#1,"ne","{$FAN_OK_STATUS}"'), ('16912','27316','15383','count','$,#1,"eq","{$PSU_CRIT_STATUS}"'), ('16913','27316','15384','count','$,#1,"ne","{$PSU_OK_STATUS}"'), ('16914','27317','15385','count','$,#1,"eq","{$FAN_CRIT_STATUS}"'), ('16915','27317','15386','count','$,#1,"ne","{$FAN_OK_STATUS}"'), ('16924','27248','15391','count','$,#1,"eq","{$PSU_CRIT_STATUS}"'), ('16925','27248','15392','count','$,#1,"ne","{$PSU_OK_STATUS}"'), ('16926','27250','15393','count','$,#1,"eq","{$FAN_CRIT_STATUS}"'), ('16927','27250','15394','count','$,#1,"ne","{$FAN_OK_STATUS}"'), ('16928','27755','15395','count','$,#1,"eq","{$FAN_CRIT_STATUS}"'), ('16935','27942','15398','count',E'$,#1,"eq","{$FAN_CRIT_STATUS:\\"failed\\"}"'), ('16936','27943','15399','count',E'$,#1,"eq","{$PSU_CRIT_STATUS:\\"failed\\"}"'), ('17866','28326','15717','count','$,#1,"eq","{$FAN_CRIT_STATUS}"'), ('17869','28329','15719','count','$,#1,"eq","{$PSU_CRIT_STATUS}"'), ('17870','27238','15720','count','$,#1,"eq","{$HEALTH_CRIT_STATUS}"'), ('17871','27238','15721','count',E'$,#1,"eq","{$HEALTH_WARN_STATUS:\\"offline\\"}"'), ('17872','27238','15721','count',E'$,#1,"eq","{$HEALTH_WARN_STATUS:\\"testing\\"}"'), ('17873','27814','15722','count','$,#1,"eq","{$HEALTH_CRIT_STATUS}"'), ('17971','28411','15781','count','$,#1,"eq","{$PSU_CRIT_STATUS}"'), ('17972','28411','15782','count','$,#1,"eq","{$PSU_WARN_STATUS}"'), ('17973','28412','15783','count','$,#1,"eq","{$FAN_CRIT_STATUS}"'), ('17974','28412','15784','count','$,#1,"eq","{$FAN_WARN_STATUS}"'), ('17975','28413','15785','count','$,#1,"eq","{$DISK_ARRAY_CRIT_STATUS}"'), ('17976','28413','15786','count','$,#1,"eq","{$DISK_ARRAY_WARN_STATUS}"'), ('17977','28415','15787','count',E'$,#1,"eq","{$DISK_ARRAY_CACHE_CRIT_STATUS:\\"cacheModCriticalFailure\\"}"'), ('17983','28416','15790','count',E'$,#1,"eq","{$DISK_ARRAY_CACHE_BATTERY_CRIT_STATUS:\\"failed\\"}"'), ('17984','28416','15790','count',E'$,#1,"eq","{$DISK_ARRAY_CACHE_BATTERY_CRIT_STATUS:\\"capacitorFailed\\"}"'), ('17987','28417','15792','count','$,#1,"eq","{$DISK_FAIL_STATUS}"'), ('17988','28417','15793','count','$,#1,"eq","{$DISK_WARN_STATUS}"'), ('17989','28418','15794','count',E'$,#1,"eq","{$DISK_SMART_FAIL_STATUS:\\"replaceDrive\\"}"'), ('17990','28418','15794','count',E'$,#1,"eq","{$DISK_SMART_FAIL_STATUS:\\"replaceDriveSSDWearOut\\"}"'), ('17993','28423','15796','count','$,#1,"eq","{$VDISK_CRIT_STATUS}"'), ('17994','28423','15797','count','$,#1,"ne","{$VDISK_OK_STATUS}"'), ('18031','28465','15824','count','$,#1,"eq","{$HEALTH_DISASTER_STATUS}"'), ('18032','28465','15825','count','$,#1,"eq","{$HEALTH_CRIT_STATUS}"'), ('18033','28465','15826','count','$,#1,"eq","{$HEALTH_WARN_STATUS}"'), ('18042','28475','15831','avg','$,5m'), ('18043','28475','15831','max','$,5m'), ('18044','28475','15832','avg','$,5m'), ('18045','28475','15832','max','$,5m'), ('18046','28475','15833','avg','$,5m'), ('18047','28475','15833','min','$,5m'), ('18048','28476','15834','avg','$,5m'), ('18049','28476','15834','max','$,5m'), ('18050','28476','15835','avg','$,5m'), ('18051','28476','15835','max','$,5m'), ('18052','28476','15836','avg','$,5m'), ('18053','28476','15836','min','$,5m'), ('18054','28477','15837','count','$,#1,"ne","{$PSU_OK_STATUS}"'), ('18055','28478','15838','count','$,#1,"ne","{$FAN_OK_STATUS}"'), ('18056','28480','15839','count','$,#1,"ne","{$DISK_OK_STATUS}"'), ('18086','28541','15863','min','$,10m'), ('18109','28547','15886','last','$'), ('18117','28587','15894','min','$,10m'), ('18175','28775','15948','nodata','$,30m'), ('18176','28776','15949','last','$'), ('18177','28777','15950','min','$,5m'), ('18178','28791','15951','last','$'), ('18191','28822','15960','last','$'), ('18192','28823','15961','min','$,5m'), ('18193','28827','15962','min','$,5m'), ('18501','29395','16138','nodata','$,30m'), ('18505','29424','16141','last','$'), ('18506','29423','16142','last','$'), ('18507','29424','16142','last','$'), ('18510','29421','16144','last','$'), ('18513','29427','16146','min','$,5m'), ('18526','29442','16152','change','$'), ('18527','29442','16152','last','$'), ('18528','29443','16152','last','$'), ('18529','29444','16152','last','$'), ('18530','29442','16152','last','$,#2'), ('18531','29443','16153','change','$'), ('18532','29443','16153','last','$'), ('18533','29444','16153','last','$'), ('18534','29443','16153','last','$,#2'), ('18545','29447','16157','min','$,5m'), ('18546','29447','16158','min','$,5m'), ('18711','29696','16250','min','$,5m'), ('18715','29692','16254','last','$'), ('18719','29720','16258','min','$,5m'), ('18720','29738','16259','nodata','$,30m'), ('18726','29771','16264','min','$,5m'), ('18727','29775','16265','max','$,5m'), ('18730','29772','16268','last','$'), ('18731','29742','16269','last','$'), ('18732','29743','16270','min','$,5m'), ('18733','29803','16271','min','$,5m'), ('19090','29994','16439','count','$,#1,"eq","{$HEALTH_CRIT_STATUS}"'), ('19091','29994','16440','count','$,#1,"eq","{$HEALTH_WARN_STATUS}"'), ('19093','29998','16442','nodata','$,30m'), ('19098','29693','16446','last','$'), ('19099','29688','16447','last','$'), ('19100','29741','16448','nodata','$,30m'), ('19104','29774','16451','last','$'), ('19105','29773','16452','last','$'), ('19113','30066','16459','avg','$,5m'), ('19114','30066','16459','max','$,5m'), ('19115','30066','16460','avg','$,5m'), ('19116','30066','16460','max','$,5m'), ('19117','30066','16461','avg','$,5m'), ('19118','30066','16461','min','$,5m'), ('19119','30067','16462','avg','$,5m'), ('19120','30067','16462','max','$,5m'), ('19121','30067','16463','avg','$,5m'), ('19122','30067','16463','max','$,5m'), ('19123','30067','16464','avg','$,5m'), ('19124','30067','16464','min','$,5m'), ('19125','30068','16465','avg','$,5m'), ('19126','30068','16465','max','$,5m'), ('19127','30068','16466','avg','$,5m'), ('19128','30068','16466','max','$,5m'), ('19129','30068','16467','avg','$,5m'), ('19130','30068','16467','min','$,5m'), ('19131','30069','16468','avg','$,5m'), ('19132','30069','16468','max','$,5m'), ('19133','30069','16469','avg','$,5m'), ('19134','30069','16469','max','$,5m'), ('19135','30069','16470','avg','$,5m'), ('19136','30069','16470','min','$,5m'), ('19137','30070','16471','avg','$,5m'), ('19138','30070','16471','max','$,5m'), ('19139','30070','16472','avg','$,5m'), ('19140','30070','16472','max','$,5m'), ('19141','30070','16473','avg','$,5m'), ('19142','30070','16473','min','$,5m'), ('19143','30071','16474','count',E'$,#1,"eq","{$PSU_CRIT_STATUS:\\"inoperable\\"}"'), ('19144','30071','16475','count',E'$,#1,"eq","{$PSU_WARN_STATUS:\\"degraded\\"}"'), ('19145','30072','16476','count',E'$,#1,"eq","{$HEALTH_CRIT_STATUS:\\"computeFailed\\"}"'), ('19146','30072','16476','count',E'$,#1,"eq","{$HEALTH_CRIT_STATUS:\\"configFailure\\"}"'), ('19147','30072','16476','count',E'$,#1,"eq","{$HEALTH_CRIT_STATUS:\\"unconfigFailure\\"}"'), ('19148','30072','16476','count',E'$,#1,"eq","{$HEALTH_CRIT_STATUS:\\"inoperable\\"}"'), ('19149','30072','16477','count',E'$,#1,"eq","{$HEALTH_WARN_STATUS:\\"testFailed\\"}"'), ('19150','30072','16477','count',E'$,#1,"eq","{$HEALTH_WARN_STATUS:\\"thermalProblem\\"}"'), ('19151','30072','16477','count',E'$,#1,"eq","{$HEALTH_WARN_STATUS:\\"powerProblem\\"}"'), ('19152','30072','16477','count',E'$,#1,"eq","{$HEALTH_WARN_STATUS:\\"voltageProblem\\"}"'), ('19153','30072','16477','count',E'$,#1,"eq","{$HEALTH_WARN_STATUS:\\"diagnosticsFailed\\"}"'), ('19156','30075','16479','count',E'$,#1,"eq","{$FAN_CRIT_STATUS:\\"inoperable\\"}"'), ('19157','30075','16480','count',E'$,#1,"eq","{$FAN_WARN_STATUS:\\"degraded\\"}"'), ('19158','30076','16481','count',E'$,#1,"eq","{$DISK_FAIL_STATUS:\\"failed\\"}"'), ('19159','30076','16482','count',E'$,#1,"eq","{$DISK_CRIT_STATUS:\\"bad\\"}"'), ('19160','30076','16482','count',E'$,#1,"eq","{$DISK_CRIT_STATUS:\\"predictiveFailure\\"}"'), ('19161','30080','16483','count',E'$,#1,"ne","{$VDISK_OK_STATUS:\\"equipped\\"}"'), ('19162','30083','16484','count',E'$,#1,"eq","{$DISK_ARRAY_CRIT_STATUS:\\"inoperable\\"}"'), ('19163','30083','16485','count',E'$,#1,"eq","{$DISK_ARRAY_WARN_STATUS:\\"degraded\\"}"'), ('19164','30083','16486','count',E'$,#1,"ne","{$DISK_ARRAY_OK_STATUS:\\"operable\\"}"'), ('19165','30085','16487','count','$,#1,"eq","{$DISK_ARRAY_CACHE_BATTERY_CRIT_STATUS}"'), ('19166','30085','16488','count','$,#1,"ne","{$DISK_ARRAY_CACHE_BATTERY_OK_STATUS}"'), ('19171','27208','16491','min','$,5m'), ('19175','30091','16494','count','$,#1,"eq","{$PSU_CRIT_STATUS}"'), ('19176','30092','16495','count','$,#1,"eq","{$PSU_CRIT_STATUS}"'), ('19177','27240','16496','min','$,5m'), ('19185','27315','16504','avg','$,5m'), ('19186','27315','16504','max','$,5m'), ('19187','27315','16505','avg','$,5m'), ('19188','27315','16505','max','$,5m'), ('19189','27315','16506','avg','$,5m'), ('19190','27315','16506','min','$,5m'), ('19209','27478','16521','min','$,5m'), ('19213','27511','16524','min','$,5m'), ('19217','27547','16527','min','$,5m'), ('19219','27586','16529','min','$,5m'), ('19225','27671','16533','min','$,5m'), ('19227','28143','16535','min','$,5m'), ('19229','27753','16537','min','$,5m'), ('19235','28894','16541','min','$,5m'), ('19240','27904','16545','min','$,5m'), ('19249','27936','16548','min','$,5m'), ('19259','27975','16554','min','$,5m'), ('19263','30129','16557','count','$,#1,"eq","{$FAN_CRIT_STATUS}"'), ('19264','30130','16558','count','$,#1,"eq","{$PSU_CRIT_STATUS}"'), ('19265','28003','16559','min','$,5m'), ('19299','29420','16573','min','$,5m'), ('19300','29417','16573','last','$'), ('19301','29419','16573','last','$'), ('19302','29418','16573','last','$'), ('19456','30191','16644','last','$'), ('19459','30187','16646','min','$,5m'), ('19460','30188','16647','last','$'), ('19461','30199','16648','min','$,5m'), ('19462','30200','16649','min','$,5m'), ('19463','30201','16650','min','$,5m'), ('19464','30202','16651','min','$,5m'), ('19466','30208','16653','min','$,5m'), ('19467','30209','16654','min','$,5m'), ('19468','30196','16655','min','$,5m'), ('19469','30221','16656','min','$,5m'), ('19470','30224','16657','min','$,5m'), ('19471','30225','16658','min','$,5m'), ('19472','30226','16659','min','$,5m'), ('19474','30234','16661','last','$'), ('19479','30242','16665','min','$,5m'), ('19480','30243','16666','min','$,5m'), ('19481','30244','16667','min','$,5m'), ('19482','30245','16668','min','$,5m'), ('19484','30251','16670','min','$,5m'), ('19485','30252','16671','min','$,5m'), ('19486','30239','16672','min','$,5m'), ('19487','30264','16673','min','$,5m'), ('19488','30267','16674','min','$,5m'), ('19489','30268','16675','min','$,5m'), ('19490','30269','16676','min','$,5m'), ('19497','30322','16681','min','$,5m'), ('19498','30312','16681','last','$'), ('19501','30276','16683','nodata','$,30m'), ('19502','30317','16684','min','$,15m'), ('19503','30326','16685','last','$'), ('19504','30333','16686','last','$'), ('19505','30273','16687','last','$'), ('19511','30281','16691','last','$'), ('19512','30274','16692','min','$,5m'), ('19513','30298','16693','last','$'), ('19514','30347','16694','last','$'), ('19517','30398','16696','min','$,5m'), ('19548','29434','16710','min','$,15m'), ('19549','29435','16710','min','$,15m'), ('19558','30470','16719','min','$,5m'), ('19560','30454','16721','last','$'), ('19562','30432','16723','last','$'), ('19563','30445','16724','min','$,5m'), ('19564','30450','16725','last','$'), ('19567','30476','16727','min','$,5m'), ('19568','30477','16728','count','$,#1,"eq","No"'), ('19569','30477','16729','count','$,#1,"ne","Yes"'), ('19570','30478','16730','count','$,#1,"eq","No"'), ('19572','30481','16732','last','$'), ('19575','30505','16734','min','$,5m'), ('19577','30514','16736','last','$'), ('19578','30495','16737','min','$,5m'), ('19579','30519','16738','last','$'), ('19580','30524','16739','min','$,5m'), ('19581','30525','16740','count','$,#1,"eq","No"'), ('19582','30525','16741','count','$,#1,"ne","Yes"'), ('19583','30526','16742','count','$,#1,"eq","No"'), ('19584','30537','16743','nodata','$,30m'), ('19585','30530','16744','last','$'), ('19588','30599','16746','last','$'), ('19589','30604','16746','last','$'), ('19592','30614','16748','min','$,5m'), ('19593','30634','16748','last','$'), ('19594','30633','16749','min','$,5m'), ('19595','30632','16749','last','$'), ('19596','30631','16750','min','$,5m'), ('19597','30628','16751','min','$,5m'), ('19598','30627','16752','nodata','$,30m'), ('19599','30611','16753','last','$'), ('19600','30615','16754','last','$'), ('19603','30676','16756','min','$,5m'), ('19605','30660','16758','last','$'), ('19606','30638','16759','last','$'), ('19607','30651','16760','min','$,5m'), ('19608','30656','16761','last','$'), ('19611','30682','16763','min','$,5m'), ('19612','30683','16764','count','$,#1,"eq","No"'), ('19613','30683','16765','count','$,#1,"ne","Yes"'), ('19614','30684','16766','count','$,#1,"eq","No"'), ('19616','30689','16768','min','$,5m'), ('19617','30689','16769','min','$,5m'), ('19618','30689','16770','min','$,5m'), ('19619','30689','16771','min','$,5m'), ('19620','30689','16772','min','$,5m'), ('19621','30689','16773','min','$,5m'), ('19625','30710','16775','min','$,10m'), ('19626','30708','16776','change','$'), ('19627','30708','16777','change','$'), ('19628','30705','16778','last','$'), ('19629','30705','16779','last','$'), ('19630','30705','16780','last','$'), ('19631','30712','16781','min','$,10m'), ('19632','30699','16782','last','$'), ('19633','30696','16783','last','$'), ('19634','30692','16784','min','$,5m'), ('19635','30690','16785','last','$'), ('19636','30715','16786','min','$,5m'), ('19637','30716','16787','min','$,5m'), ('19638','30717','16788','min','$,5m'), ('19639','30714','16789','min','$,5m'), ('19640','30724','16790','min','$,1h'), ('19641','30724','16791','min','$,1h'), ('19642','30725','16792','last','$'), ('19643','30729','16793','min','$,5m'), ('19644','30733','16794','min','$,5m'), ('19645','30758','16795','min','$,5m'), ('19659','30789','16809','min','$,5m'), ('19660','30790','16810','last','$'), ('19674','30854','16824','min','$,5m'), ('19675','30858','16825','min','$,5m'), ('19676','30864','16826','min','$,5m'), ('19677','30862','16827','min','$,5m'), ('19679','30827','16829','last','$'), ('19680','30837','16830','min','$,5m'), ('19683','30846','16832','last','$'), ('19684','30846','16833','nodata','$,30m'), ('19687','30843','16835','min','$,5m'), ('19688','30880','16836','max','$,5m'), ('19689','30891','16836','last','$'), ('19690','30883','16837','min','$,5m'), ('19691','30884','16838','min','$,5m'), ('19692','30885','16839','min','$,5m'), ('19693','30890','16840','min','$,5m'), ('19792','30912','16886','last','$'), ('19796','30927','16889','min','$,5m'), ('19797','30944','16889','last','$'), ('19800','30945','16891','last','$'), ('19801','30924','16892','last','$'), ('19802','30954','16893','min','$,5m'), ('19803','30956','16894','nodata','$,30m'), ('19804','30960','16895','max','$,15m'), ('19805','30930','16896','min','$,5m'), ('19806','30931','16897','min','$,5m'), ('19809','30939','16899','last','$'), ('19810','30923','16900','last','$'), ('19811','30963','16901','min','$,5m'), ('19812','30968','16902','last','$'), ('19813','30975','16903','last','$'), ('19814','30984','16904','last','$'), ('19815','31004','16905','last','$'), ('19816','31006','16906','last','$'), ('19817','31007','16907','last','$'), ('19819','31009','16909','min','$,{$IIS.QUEUE.MAX.TIME}'), ('19820','31010','16910','last','$'), ('19821','31017','16911','last','$'), ('19822','31026','16912','last','$'), ('19823','31046','16913','last','$'), ('19824','31048','16914','last','$'), ('19825','31049','16915','last','$'), ('19827','31051','16917','min','$,{$IIS.QUEUE.MAX.TIME}'), ('19832','30821','16920','last','$'), ('19833','31054','16920','last','$'), ('19834','31054','16921','last','$'), ('19841','31092','16925','last','$'), ('19842','31095','16925','last','$'), ('19845','31056','16927','min','$,5m'), ('19846','31096','16928','max','$,5m'), ('19847','31096','16929','max','$,5m'), ('19848','31106','16930','min','$,5m'), ('19849','31114','16931','min','$,5m'), ('19850','31115','16932','min','$,5m'), ('19851','31116','16933','min','$,5m'), ('19852','31118','16934','min','$,5m'), ('19853','31062','16935','min','$,5m'), ('19854','31064','16936','max','$,15m'), ('19855','31066','16937','min','$,5m'), ('19856','31068','16938','min','$,5m'), ('19857','31082','16939','last','$'), ('19858','31082','16940','nodata','$,30m'), ('19863','31088','16944','max','$,5m'), ('19869','31142','16950','min','$,5m'), ('19870','31143','16951','min','$,5m'), ('19873','31148','16954','min','$,5m'), ('19874','31149','16955','last','$'), ('19896','31169','16972','min','$,5m'), ('19897','31170','16973','min','$,5m'), ('19898','31171','16974','min','$,5m'), ('19899','30450','16975','nodata','$,30m'), ('19900','31173','16976','min','$,5m'), ('19901','31174','16977','min','$,5m'), ('19902','31175','16978','min','$,5m'), ('19903','30656','16979','nodata','$,30m'), ('19904','31177','16980','min','$,5m'), ('19905','31179','16981','min','$,5m'), ('19906','31178','16982','min','$,5m'), ('19907','30519','16983','nodata','$,30m'), ('19908','31183','16984','max','$,#3'), ('19909','31184','16984','max','$,#3'), ('19910','31192','16985','min','$,5m'), ('19911','31193','16985','last','$'), ('19912','31200','16986','min','$,5m'), ('19913','31202','16986','last','$'), ('19914','31233','16987','min','$,5m'), ('19915','31234','16987','last','$'), ('19916','31216','16988','min','$,5m'), ('19917','31237','16988','last','$'), ('19922','31194','16991','max','$,5m'), ('19924','31190','16993','min','$,5m'), ('19925','31203','16994','min','$,5m'), ('19926','31211','16995','max','$,5m'), ('19927','31217','16996','last','$'), ('19928','31217','16997','nodata','$,5m'), ('19929','31218','16998','last','$'), ('19932','31184','17000','max','$,#3'), ('19947','31329','17014','min','$,5m'), ('19949','31282','17016','last','$'), ('19951','31357','17018','min','$,5m'), ('19952','31356','17019','min','$,5m'), ('20078','31517','17075','min','$,{$JMX.FILE.DESCRIPTORS.TIME}'), ('20079','31516','17075','last','$'), ('20080','31530','17076','find','$,,"like","Client"'), ('20081','31518','17077','min','$,{$JMX.CPU.LOAD.TIME}'), ('20082','31519','17078','nodata','$,5m'), ('20083','31520','17079','find','$,,"like","Server"'), ('20084','31070','17080','last','$'), ('20085','31066','17080','last','$'), ('20086','31554','17081','min','$,15m'), ('20087','31556','17082','min','$,15m'), ('20088','31555','17083','min','$,15m'), ('20089','31057','17084','last','$'), ('20096','31569','17088','last','$'), ('20101','31577','17092','min','$,#3'), ('20103','31579','17094','last','$'), ('20108','31603','17098','last','$'), ('20109','31603','17098','nodata','$,3m'), ('20111','31600','17100','min','$,#3'), ('20112','31598','17101','nodata','$,30m'), ('20113','31598','17102','last','$'), ('20128','22942','17113','last','$'), ('20131','22875','17116','last','$'), ('20132','22876','17117','last','$'), ('20133','22902','17118','last','$'), ('20134','22896','17119','last','$'), ('20137','22982','17122','last','$'), ('20140','23035','17125','last','$'), ('20141','23036','17126','last','$'), ('20142','23062','17127','last','$'), ('20145','22835','17130','last','$'), ('20146','22836','17131','last','$'), ('20147','22862','17132','last','$'), ('20148','22856','17133','last','$'), ('20151','22996','17136','last','$'), ('20152','23022','17137','last','$'), ('20153','23016','17138','last','$'), ('20156','26932','17141','last','$'), ('20157','26932','17142','last','$'), ('20158','26930','17143','last','$'), ('20159','26930','17144','last','$'), ('20160','26931','17145','last','$'), ('20161','26931','17146','last','$'), ('20162','26929','17147','last','$'), ('20163','26929','17148','last','$'), ('20164','26928','17149','last','$'), ('20165','26928','17150','last','$'), ('20166','26925','17151','last','$'), ('20167','26943','17152','last','$'), ('20168','26943','17153','last','$'), ('20169','26939','17154','last','$'), ('20170','26939','17155','last','$'), ('20171','26940','17156','last','$'), ('20172','26940','17157','last','$'), ('20173','26941','17158','last','$'), ('20174','26941','17159','last','$'), ('20175','26942','17160','last','$'), ('20176','26942','17161','last','$'), ('20177','26938','17162','last','$'), ('20178','26938','17163','last','$'), ('20179','26937','17164','last','$'), ('20180','26937','17165','last','$'), ('20181','26933','17166','last','$'), ('20182','26933','17167','last','$'), ('20183','26934','17168','last','$'), ('20184','26935','17169','last','$'), ('20185','26935','17170','last','$'), ('20186','26936','17171','last','$'), ('20187','26936','17172','last','$'), ('20188','31687','17173','min','$,5m'), ('20189','31710','17173','last','$'), ('20190','31705','17174','min','$,5m'), ('20191','31708','17174','last','$'), ('20192','31685','17175','min','$,5m'), ('20193','31738','17175','last','$'), ('20194','31723','17176','min','$,5m'), ('20195','31757','17176','last','$'), ('20200','31684','17179','last','$'), ('20201','31695','17180','max','$,5m'), ('20203','31709','17182','min','$,5m'), ('20204','31712','17183','min','$,5m'), ('20205','31718','17184','max','$,5m'), ('20206','31724','17185','nodata','$,30m'), ('20207','31724','17186','last','$'), ('20208','31696','17187','last','$'), ('20285','31788','17222','last','$'), ('20286','31788','17223','nodata','$,30m'), ('20287','31787','17224','last','$'), ('20290','31783','17226','min','$,5m'), ('20291','31782','17227','last','$'), ('20293','31808','17229','last','$'), ('20295','31810','17231','last','$'), ('20298','31815','17234','last','$'), ('20543','32166','17354','last','$'), ('20544','32166','17355','last','$'), ('20545','32120','17356','last','$'), ('20546','32170','17357','min','$,15m'), ('20547','32153','17357','last','$'), ('20548','32170','17358','min','$,15m'), ('20549','32160','17358','last','$'), ('20550','32175','17359','last','$'), ('20566','32272','17368','last','$'), ('20567','32259','17368','last','$'), ('20568','32261','17368','last','$'), ('20569','32272','17369','last','$'), ('20570','32260','17369','last','$'), ('20571','32261','17369','last','$'), ('20572','32239','17370','last','$'), ('20573','32274','17371','last','$'), ('20574','32263','17372','last','$'), ('20595','32392','17390','last','$'), ('20596','32375','17391','nodata','$,30m'), ('20597','32374','17392','max','$,5m'), ('20600','32402','17394','min','$,5m'), ('20601','32366','17395','min','$,5m'), ('20602','32367','17396','last','$'), ('20603','32370','17397','min','$,5m'), ('20604','32372','17398','max','$,5m'), ('20605','32377','17399','last','$'), ('20608','32408','17401','min','$,5m'), ('20609','32422','17402','min','$,5m'), ('20610','32434','17403','last','$'), ('20611','32409','17404','min','$,5m'), ('20612','32417','17405','min','$,5m'), ('20613','32436','17406','max','$,5m'), ('20614','32437','17407','max','$,5m'), ('20615','32438','17408','max','$,5m'), ('20616','32439','17409','max','$,5m'), ('20619','32444','17411','min','$,{$ACTIVEMQ.MEM.TIME:"{#JMXBROKERNAME}"}'), ('20620','32444','17412','min','$,{$ACTIVEMQ.MEM.TIME:"{#JMXBROKERNAME}"}'), ('20621','32446','17413','min','$,{$ACTIVEMQ.STORE.TIME:"{#JMXBROKERNAME}"}'), ('20622','32446','17414','min','$,{$ACTIVEMQ.STORE.TIME:"{#JMXBROKERNAME}"}'), ('20623','32448','17415','min','$,{$ACTIVEMQ.TEMP.TIME:"{#JMXBROKERNAME}"}'), ('20624','32448','17416','min','$,{$ACTIVEMQ.TEMP.TIME:"{#JMXBROKERNAME}"}'), ('20625','32449','17417','max','$,{$ACTIVEMQ.BROKER.CONSUMERS.MIN.TIME:"{#JMXBROKERNAME}"}'), ('20627','32452','17419','max','$,{$ACTIVEMQ.BROKER.PRODUCERS.MIN.TIME:"{#JMXBROKERNAME}"}'), ('20628','32453','17420','last','$'), ('20629','32456','17421','max','$,{$ACTIVEMQ.DESTINATION.CONSUMERS.MIN.TIME:"{#JMXDESTINATIONNAME}"}'), ('20630','32454','17421','last','$'), ('20631','32456','17421','min','$,{$ACTIVEMQ.DESTINATION.CONSUMERS.MIN.TIME:"{#JMXDESTINATIONNAME}"}'), ('20634','32461','17423','max','$,{$ACTIVEMQ.DESTINATION.PRODUCERS.MIN.TIME:"{#JMXDESTINATIONNAME}"}'), ('20635','32455','17423','last','$'), ('20636','32461','17423','min','$,{$ACTIVEMQ.DESTINATION.PRODUCERS.MIN.TIME:"{#JMXDESTINATIONNAME}"}'), ('20638','32460','17425','last','$'), ('20639','32460','17426','last','$'), ('20641','32486','17428','max','$,5m'), ('20642','32486','17429','max','$,5m'), ('20643','32487','17430','min','$,5m'), ('20644','32487','17431','min','$,5m'), ('20645','32491','17432','min','$,5m'), ('20646','32491','17433','max','$,5m'), ('20647','32493','17434','last','$'), ('20648','32537','17435','avg','$,{$MS.EXCHANGE.DB.PASSIVE.WRITE.TIME}'), ('20649','32534','17435','avg','$,{$MS.EXCHANGE.DB.PASSIVE.WRITE.TIME}'), ('20650','32529','17436','min','$,{$MS.EXCHANGE.DB.FAULTS.TIME}'), ('20651','32530','17437','avg','$,{$MS.EXCHANGE.LOG.STALLS.TIME}'), ('20652','32533','17438','min','$,{$MS.EXCHANGE.DB.ACTIVE.READ.TIME}'), ('20653','32534','17439','min','$,{$MS.EXCHANGE.DB.PASSIVE.READ.TIME}'), ('20654','32536','17440','min','$,{$MS.EXCHANGE.DB.ACTIVE.WRITE.TIME}'), ('20655','32540','17441','min','$,{$MS.EXCHANGE.RPC.TIME}'), ('20656','32542','17442','min','$,{$MS.EXCHANGE.RPC.COUNT.TIME}'), ('20657','32543','17443','min','$,{$MS.EXCHANGE.LDAP.TIME}'), ('20658','32544','17444','min','$,{$MS.EXCHANGE.LDAP.TIME}'), ('20659','32567','17445','avg','$,{$MS.EXCHANGE.DB.PASSIVE.WRITE.TIME}'), ('20660','32564','17445','avg','$,{$MS.EXCHANGE.DB.PASSIVE.WRITE.TIME}'), ('20661','32559','17446','min','$,{$MS.EXCHANGE.DB.FAULTS.TIME}'), ('20662','32560','17447','avg','$,{$MS.EXCHANGE.LOG.STALLS.TIME}'), ('20663','32563','17448','min','$,{$MS.EXCHANGE.DB.ACTIVE.READ.TIME}'), ('20664','32564','17449','min','$,{$MS.EXCHANGE.DB.PASSIVE.READ.TIME}'), ('20665','32566','17450','min','$,{$MS.EXCHANGE.DB.ACTIVE.WRITE.TIME}'), ('20666','32570','17451','min','$,{$MS.EXCHANGE.RPC.TIME}'), ('20667','32572','17452','min','$,{$MS.EXCHANGE.RPC.COUNT.TIME}'), ('20668','32573','17453','min','$,{$MS.EXCHANGE.LDAP.TIME}'), ('20669','32574','17454','min','$,{$MS.EXCHANGE.LDAP.TIME}'), ('20670','32584','17455','min','$,5m'), ('20671','32579','17455','last','$'), ('20674','32610','17457','min','$,5m'), ('20675','32576','17458','last','$'), ('20676','32577','17459','last','$'), ('20677','32599','17460','min','$,5m'), ('20678','32588','17461','min','$,5m'), ('20679','32597','17462','min','$,5m'), ('20680','32593','17463','nodata','$,30m'), ('20683','32626','17465','min','$,15m'), ('20684','32631','17466','min','$,5m'), ('20685','32633','17466','last','$'), ('20686','32632','17467','min','$,5m'), ('20687','32642','17468','min','$,15m'), ('20688','32656','17469','min','$,5m'), ('20689','32663','17470','max','$,15m'), ('20690','32667','17471','nodata','$,30m'), ('20691','32667','17472','last','$'), ('20692','32657','17473','min','$,15m'), ('20693','32655','17474','max','$,5m'), ('20694','32649','17475','min','$,15m'), ('20695','32647','17476','nodata','$,30m'), ('20696','32647','17477','last','$'), ('20697','32638','17478','min','$,5m'), ('20698','32637','17479','min','$,5m'), ('20699','32636','17480','last','$'), ('20700','32640','17481','last','$'), ('20701','32678','17482','last','$'), ('20702','32680','17483','nodata','$,30m'), ('20703','32680','17484','last','$'), ('20704','32689','17485','last','$'), ('20705','32690','17486','nodata','$,30m'), ('20706','32690','17487','last','$'), ('20707','32724','17488','last','$'), ('20708','32727','17489','last','$'), ('20709','32732','17490','last','$'), ('20710','32696','17491','nodata','$,15m'), ('20711','32696','17492','max','$,15m'), ('20712','32697','17493','last','$'), ('20715','32694','17495','max','$,15m'), ('20716','32714','17496','last','$'), ('20717','32715','17497','last','$'), ('20718','32717','17498','find','$,,"regexp","CONNECTED"'), ('20721','32766','17500','find','$,,"like","off"'), ('20722','32778','17501','min','$,{$TOMCAT.THREADS.MAX.TIME:"{#JMXNAME}"}'), ('20723','32779','17501','last','$'), ('20724','32804','17502','min','$,5m'), ('20725','32805','17502','last','$'), ('20726','32794','17503','last','$'), ('20727','32793','17504','last','$'), ('20728','32789','17505','last','$'), ('20731','32840','17507','max','$,1h'), ('20732','32848','17508','max','$,1h'), ('20733','32860','17509','max','$,1h'), ('20734','32802','17510','last','$'), ('20735','32872','17511','last','$'), ('20736','32873','17511','last','$'), ('20737','32872','17512','last','$'), ('20738','32873','17512','last','$'), ('20739','32871','17513','last','$'), ('20741','32909','17515','last','$'), ('20744','32913','17518','last','$'), ('20745','32913','17519','last','$'), ('20746','32912','17520','last','$'), ('20747','32970','17521','min','$,5m'), ('20748','32980','17521','last','$'), ('20749','32966','17522','min','$,5m'), ('20752','32977','17524','nodata','$,10m'), ('20756','33009','17527','last','$'), ('20757','33008','17527','last','$'), ('20758','33007','17528','min','$,5m'), ('20771','33091','17540','min','$,15m'), ('20772','33091','17541','min','$,15m'), ('20773','33079','17542','min','$,5m'), ('20774','33061','17543','nodata','$,15m'), ('20775','33059','17544','last','$'), ('20784','33174','17553','last','$'), ('20785','28325','17554','min','$,5m'), ('20786','28325','17555','min','$,5m'), ('20787','28325','17556','max','$,5m'), ('20788','28325','17557','max','$,5m'), ('20789','28323','17558','min','$,5m'), ('20790','28323','17559','min','$,5m'), ('20791','28323','17560','max','$,5m'), ('20792','28323','17561','max','$,5m'), ('20793','33183','17562','min','$,5m'), ('20794','33183','17563','min','$,5m'), ('20795','33183','17564','max','$,5m'), ('20796','33183','17565','max','$,5m'), ('20824','33199','17575','last','$'), ('20825','33199','17576','last','$'), ('20826','33185','17577','last','$'), ('20827','33185','17578','last','$'), ('20828','33192','17579','count','$,#3,"like","arrayCurrentOffset"'), ('20829','33192','17580','count','$,#3,"like","batterySenseDisconnected"'), ('20830','33192','17581','count','$,#3,"like","batterySenseOutOfRange"'), ('20831','33192','17582','count','$,#3,"like","controllerReset"'), ('20832','33192','17583','count','$,#3,"like","currentLimit"'), ('20833','33192','17584','count','$,#3,"like","currentMeasurementError"'), ('20834','33192','17585','count','$,#3,"like","eepromAccessFailure"'), ('20835','33192','17586','count','$,#3,"like","fp10SupplyOutOfRange"'), ('20836','33192','17587','count','$,#3,"like","heatsinkTempLimit"'), ('20837','33192','17588','count','$,#3,"like","heatsinkTempSensorOpen"'), ('20838','33192','17589','count','$,#3,"like","heatsinkTempSensorShorted"'), ('20839','33192','17590','count','$,#3,"like","hightInputVoltageLimit"'), ('20840','33192','17591','count','$,#3,"like","inductorTempLimit"'), ('20841','33192','17592','count','$,#3,"like","inductorTempSensorOpen"'), ('20842','33192','17593','count','$,#3,"like","inductorTempSensorShorted"'), ('20843','33192','17594','count','$,#3,"like","loadCurrentOffset"'), ('20844','33192','17595','count','$,#3,"like","loadLvd"'), ('20845','33192','17596','count','$,#3,"like","logTimeout"'), ('20846','33192','17597','count','$,#3,"like","mosfetOpen"'), ('20847','33192','17598','count','$,#3,"like","p12SupplyOutOfRange"'), ('20848','33192','17599','count','$,#3,"like","p33SupplyOutOfRange"'), ('20849','33192','17600','count','$,#3,"like","rtsDisconnected"'), ('20850','33192','17601','count','$,#3,"like","rtsShorted"'), ('20851','33192','17602','count','$,#3,"like","tb5v"'), ('20852','33192','17603','count','$,#3,"like","uncalibrated"'), ('20853','33191','17604','count','$,#3,"like","arrayHvd"'), ('20854','33191','17605','count','$,#3,"like","batteryHvd"'), ('20855','33191','17606','count','$,#3,"like","batteryLowVoltageDisconnect"'), ('20856','33191','17607','count','$,#3,"like","customSettingsEdit"'), ('20857','33191','17608','count','$,#3,"like","dipSwitchChanged"'), ('20858','33191','17609','count','$,#3,"like","localTempSensorDamaged"'), ('20859','33191','17610','count','$,#3,"like","mosfetSShorted"'), ('20860','33191','17611','count','$,#3,"like","overcurrent"'), ('20861','33191','17612','count','$,#3,"like","rtsNoLongerValid"'), ('20862','33191','17613','count','$,#3,"like","rtsShorted"'), ('20863','33191','17614','count','$,#3,"like","slaveTimeout"'), ('20864','33191','17615','count','$,#3,"like","software"'), ('20865','33190','17616','count','$,#3,"like","customSettingsEdit"'), ('20866','33190','17617','count','$,#3,"like","dipSwitchChanged"'), ('20867','33190','17618','count','$,#3,"like","externalShortCircuit"'), ('20868','33190','17619','count','$,#3,"like","highTempDisconnect"'), ('20869','33190','17620','count','$,#3,"like","loadHvd"'), ('20870','33190','17621','count','$,#3,"like","mosfetShorted"'), ('20871','33190','17622','count','$,#3,"like","overcurrent"'), ('20872','33190','17623','count','$,#3,"like","software"'), ('20874','33189','17625','nodata','$,5m'), ('20875','33186','17626','min','$,5m'), ('20876','33186','17627','max','$,5m'), ('20877','33186','17628','min','$,5m'), ('20878','33186','17629','max','$,5m'), ('20879','33206','17630','min','$,5m'), ('20880','33206','17631','max','$,5m'), ('20881','33206','17632','min','$,5m'), ('20882','33206','17633','max','$,5m'), ('20883','33222','17634','last','$'), ('20884','33222','17635','last','$'), ('20885','33217','17636','last','$'), ('20886','33217','17637','last','$'), ('20887','33208','17638','count','$,#3,"like","arrayCurrentOffset"'), ('20888','33208','17639','count','$,#3,"like","batterySenseDisconnected"'), ('20889','33208','17640','count','$,#3,"like","batterySenseOutOfRange"'), ('20890','33208','17641','count','$,#3,"like","batteryTempOutOfRange"'), ('20891','33208','17642','count','$,#3,"like","controllerReset"'), ('20892','33208','17643','count','$,#3,"like","currentLimit"'), ('20893','33208','17644','count','$,#3,"like","currentMeasurementError"'), ('20894','33208','17645','count','$,#3,"like","eepromAccessFailure"'), ('20895','33208','17646','count','$,#3,"like","fp10SupplyOutOfRange"'), ('20896','33208','17647','count','$,#3,"like","heatsinkTempLimit"'), ('20897','33208','17648','count','$,#3,"like","heatsinkTempSensorOpen"'), ('20898','33208','17649','count','$,#3,"like","heatsinkTempSensorShorted"'), ('20899','33208','17650','count','$,#3,"like","hightInputVoltageLimit"'), ('20900','33208','17651','count','$,#3,"like","loadCurrentOffset"'), ('20901','33208','17652','count','$,#3,"like","loadLvd"'), ('20902','33208','17653','count','$,#3,"like","logTimeout"'), ('20903','33208','17654','count','$,#3,"like","mosfetOpen"'), ('20904','33208','17655','count','$,#3,"like","p12SupplyOutOfRange"'), ('20905','33208','17656','count','$,#3,"like","p33SupplyOutOfRange"'), ('20906','33208','17657','count','$,#3,"like","rtsDisconnected"'), ('20907','33208','17658','count','$,#3,"like","rtsShorted"'), ('20908','33208','17659','count','$,#3,"like","uncalibrated"'), ('20909','33214','17660','count','$,#3,"like","arrayHvd"'), ('20910','33214','17661','count','$,#3,"like","batteryHvd"'), ('20911','33214','17662','count','$,#3,"like","batteryLowVoltageDisconnect"'), ('20912','33214','17663','count','$,#3,"like","customSettingsEdit"'), ('20913','33214','17664','count','$,#3,"like","dipSwitchChanged"'), ('20914','33214','17665','count','$,#3,"like","localTempSensorDamaged"'), ('20915','33214','17666','count','$,#3,"like","mosfetSShorted"'), ('20916','33214','17667','count','$,#3,"like","overcurrent"'), ('20917','33214','17668','count','$,#3,"like","p3Fault"'), ('20918','33214','17669','count','$,#3,"like","rtsNoLongerValid"'), ('20919','33214','17670','count','$,#3,"like","rtsShorted"'), ('20920','33214','17671','count','$,#3,"like","slaveTimeout"'), ('20921','33214','17672','count','$,#3,"like","software"'), ('20922','33213','17673','count','$,#3,"like","customSettingsEdit"'), ('20923','33213','17674','count','$,#3,"like","dipSwitchChanged"'), ('20924','33213','17675','count','$,#3,"like","externalShortCircuit"'), ('20925','33213','17676','count','$,#3,"like","highTempDisconnect"'), ('20926','33213','17677','count','$,#3,"like","loadHvd"'), ('20927','33213','17678','count','$,#3,"like","mosfetShorted"'), ('20928','33213','17679','count','$,#3,"like","overcurrent"'), ('20929','33213','17680','count','$,#3,"like","p3Fault"'), ('20930','33213','17681','count','$,#3,"like","software"'), ('20932','33212','17683','nodata','$,5m'), ('20933','33209','17684','min','$,5m'), ('20934','33209','17685','max','$,5m'), ('20935','33209','17686','min','$,5m'), ('20936','33209','17687','max','$,5m'), ('20937','33226','17688','min','$,5m'), ('20938','33226','17689','max','$,5m'), ('20939','33226','17690','min','$,5m'), ('20940','33226','17691','max','$,5m'), ('20941','33242','17692','last','$'), ('20942','33242','17693','last','$'), ('20943','33228','17694','last','$'), ('20944','33228','17695','last','$'), ('20945','33235','17696','count','$,#3,"like","currentLimit"'), ('20946','33235','17697','count','$,#3,"like","currentOffset"'), ('20947','33235','17698','count','$,#3,"like","heatsinkTempSensorOpen"'), ('20948','33235','17699','count','$,#3,"like","heatsinkTempSensorShorted"'), ('20949','33235','17700','count','$,#3,"like","highVaCurrentLimit"'), ('20950','33235','17701','count','$,#3,"like","mosfetSOpen"'), ('20951','33235','17702','count','$,#3,"like","p12VoltageReferenceOff"'), ('20952','33235','17703','count','$,#3,"like","rtsDisconnected"'), ('20953','33235','17704','count','$,#3,"like","rtsMiswire"'), ('20954','33235','17705','count','$,#3,"like","rtsShorted"'), ('20955','33235','17706','count','$,#3,"like","sspptHot"'), ('20956','33235','17707','count','$,#3,"like","systemMiswire"'), ('20957','33235','17708','count','$,#3,"like","uncalibrated"'), ('20958','33234','17709','count','$,#3,"like","arrayHvd"'), ('20959','33234','17710','count','$,#3,"like","batteryHvd"'), ('20960','33234','17711','count','$,#3,"like","customSettingsEdit"'), ('20961','33234','17712','count','$,#3,"like","localTempSensorDamaged"'), ('20962','33234','17713','count','$,#3,"like","mosfetSShorted"'), ('20963','33234','17714','count','$,#3,"like","overcurrent"'), ('20964','33234','17715','count','$,#3,"like","rtsNoLongerValid"'), ('20965','33234','17716','count','$,#3,"like","rtsShorted"'), ('20966','33234','17717','count','$,#3,"like","softwareFault"'), ('20967','33233','17718','count','$,#3,"like","customSettingsEdit"'), ('20968','33233','17719','count','$,#3,"like","externalShortCircuit"'), ('20969','33233','17720','count','$,#3,"like","highTempDisconnect"'), ('20970','33233','17721','count','$,#3,"like","loadHvd"'), ('20971','33233','17722','count','$,#3,"like","mosfetShorted"'), ('20972','33233','17723','count','$,#3,"like","overcurrent"'), ('20973','33233','17724','count','$,#3,"like","software"'), ('20974','33233','17725','count','$,#3,"like","unknownLoadFault"'), ('20976','33232','17727','nodata','$,5m'), ('20977','33229','17728','min','$,5m'), ('20978','33229','17729','max','$,5m'), ('20979','33229','17730','min','$,5m'), ('20980','33229','17731','max','$,5m'), ('20981','33249','17732','min','$,5m'), ('20982','33249','17733','max','$,5m'), ('20983','33249','17734','min','$,5m'), ('20984','33249','17735','max','$,5m'), ('20985','33252','17736','last','$'), ('20986','33252','17737','last','$'), ('20987','33253','17738','count','$,#3,"like","heatsinkTempSensorOpen"'), ('20988','33253','17739','count','$,#3,"like","heatsinkTempSensorShort"'), ('20989','33253','17740','count','$,#3,"like","suresineHot"'), ('20990','33253','17741','count','$,#3,"like","unknownAlarm"'), ('20991','33254','17742','count','$,#3,"like","customSettingsEdit"'), ('20992','33254','17743','count','$,#3,"like","dipSwitchChanged"'), ('20993','33254','17744','count','$,#3,"like","highVoltageDisconnect"'), ('20994','33254','17745','count','$,#3,"like","overcurrent"'), ('20995','33254','17746','count','$,#3,"like","reset"'), ('20996','33254','17747','count','$,#3,"like","software"'), ('20997','33254','17748','count','$,#3,"like","suresineHot"'), ('20998','33254','17749','count','$,#3,"like","unknownFault"'), ('21000','33255','17751','nodata','$,5m'), ('21001','33258','17752','min','$,5m'), ('21002','33258','17753','max','$,5m'), ('21003','33258','17754','min','$,5m'), ('21004','33258','17755','max','$,5m'), ('21005','33267','17756','last','$'), ('21006','33267','17757','last','$'), ('21007','33265','17758','count','$,#3,"like","alarm21Internal"'), ('21008','33265','17759','count','$,#3,"like","arrayCurrentOffset"'), ('21009','33265','17760','count','$,#3,"like","batterySense"'), ('21010','33265','17761','count','$,#3,"like","batterySenseDisconnected"'), ('21011','33265','17762','count','$,#3,"like","controllerWasReset"'), ('21012','33265','17763','count','$,#3,"like","currentLimit"'), ('21013','33265','17764','count','$,#3,"like","currentOffset"'), ('21014','33265','17765','count','$,#3,"like","derateLimit"'), ('21015','33265','17766','count','$,#3,"like","ee-i2cRetryLimit"'), ('21016','33265','17767','count','$,#3,"like","ethernetAlarm"'), ('21017','33265','17768','count','$,#3,"like","extflashFault"'), ('21018','33265','17769','count','$,#3,"like","fp12VoltageOutOfRange"'), ('21019','33265','17770','count','$,#3,"like","heatsinkTempSensorOpen"'), ('21020','33265','17771','count','$,#3,"like","heatsinkTempSensorShorted"'), ('21021','33265','17772','count','$,#3,"like","highArrayVCurrentLimit"'), ('21022','33265','17773','count','$,#3,"like","highTemperatureCurrentLimit"'), ('21023','33265','17774','count','$,#3,"like","highVoltageDisconnect"'), ('21024','33265','17775','count','$,#3,"like","lvd"'), ('21025','33265','17776','count','$,#3,"like","maxAdcValueReached"'), ('21026','33265','17777','count','$,#3,"like","mosfetSOpen"'), ('21027','33265','17778','count','$,#3,"like","p3VoltageOutOfRange"'), ('21028','33265','17779','count','$,#3,"like","p12VoltageOutOfRange"'), ('21029','33265','17780','count','$,#3,"like","rtsDisconnected"'), ('21030','33265','17781','count','$,#3,"like","rtsMiswire"'), ('21031','33265','17782','count','$,#3,"like","rtsShorted"'), ('21032','33265','17783','count','$,#3,"like","slaveControlFault"'), ('21033','33265','17784','count','$,#3,"like","software"'), ('21034','33265','17785','count','$,#3,"like","systemMiswire"'), ('21035','33265','17786','count','$,#3,"like","uncalibrated"'), ('21036','33264','17787','count','$,#3,"like","arrayHvd"'), ('21037','33264','17788','count','$,#3,"like","batteryHvd"'), ('21038','33264','17789','count','$,#3,"like","batteryLvd"'), ('21039','33264','17790','count','$,#3,"like","blockbusBoot"'), ('21040','33264','17791','count','$,#3,"like","chargeSlaveControlTimeout"'), ('21041','33264','17792','count','$,#3,"like","controllerWasReset"'), ('21042','33264','17793','count','$,#3,"like","currentSensorReferenceOutOfRange"'), ('21043','33264','17794','count','$,#3,"like","customSettingsEdit"'), ('21044','33264','17795','count','$,#3,"like","dipSwitchChange"'), ('21045','33264','17796','count','$,#3,"like","eepromRetryLimit"'), ('21046','33264','17797','count','$,#3,"like","fault16Software"'), ('21047','33264','17798','count','$,#3,"like","fault17Software"'), ('21048','33264','17799','count','$,#3,"like","fault18Software"'), ('21049','33264','17800','count','$,#3,"like","fault19Software"'), ('21050','33264','17801','count','$,#3,"like","fault20Software"'), ('21051','33264','17802','count','$,#3,"like","fault21Software"'), ('21052','33264','17803','count','$,#3,"like","fetShort"'), ('21053','33264','17804','count','$,#3,"like","fpgaVersion"'), ('21054','33264','17805','count','$,#3,"like","hscomm"'), ('21055','33264','17806','count','$,#3,"like","hscommMaster"'), ('21056','33264','17807','count','$,#3,"like","ia-refSlaveModeTimeout"'), ('21057','33264','17808','count','$,#3,"like","overcurrent"'), ('21058','33264','17809','count','$,#3,"like","powerboardCommunicationFault"'), ('21059','33264','17810','count','$,#3,"like","rs232SerialToMeterBridge"'), ('21060','33264','17811','count','$,#3,"like","rtsDisconnected"'), ('21061','33264','17812','count','$,#3,"like","rtsShorted"'), ('21062','33264','17813','count','$,#3,"like","slave"'), ('21063','33264','17814','count','$,#3,"like","softwareFault"'), ('21065','33263','17816','nodata','$,5m'), ('21066','33261','17817','min','$,5m'), ('21067','33261','17818','max','$,5m'), ('21068','33261','17819','min','$,5m'), ('21069','33261','17820','max','$,5m'), ('21070','33277','17821','min','$,5m'), ('21071','33277','17822','max','$,5m'), ('21072','33277','17823','min','$,5m'), ('21073','33277','17824','max','$,5m'), ('21074','33286','17825','last','$'), ('21075','33286','17826','last','$'), ('21076','33284','17827','count','$,#3,"like","batterySense"'), ('21077','33284','17828','count','$,#3,"like","batterySenseDisconnected"'), ('21078','33284','17829','count','$,#3,"like","controllerWasReset"'), ('21079','33284','17830','count','$,#3,"like","currentLimit"'), ('21080','33284','17831','count','$,#3,"like","currentOffset"'), ('21081','33284','17832','count','$,#3,"like","heatsinkTempSensorOpen"'), ('21082','33284','17833','count','$,#3,"like","heatsinkTempSensorShorted"'), ('21083','33284','17834','count','$,#3,"like","highArrayVCurrentLimit"'), ('21084','33284','17835','count','$,#3,"like","highTemperatureCurrentLimit"'), ('21085','33284','17836','count','$,#3,"like","highVoltageDisconnect"'), ('21086','33284','17837','count','$,#3,"like","maxAdcValueReached"'), ('21087','33284','17838','count','$,#3,"like","mosfetSOpen"'), ('21088','33284','17839','count','$,#3,"like","p12VoltageReferenceOff"'), ('21089','33284','17840','count','$,#3,"like","rtsDisconnected"'), ('21090','33284','17841','count','$,#3,"like","rtsMiswire"'), ('21091','33284','17842','count','$,#3,"like","rtsShorted"'), ('21092','33284','17843','count','$,#3,"like","systemMiswire"'), ('21093','33284','17844','count','$,#3,"like","uncalibrated"'), ('21094','33283','17845','count','$,#3,"like","arrayHvd"'), ('21095','33283','17846','count','$,#3,"like","batteryHvd"'), ('21096','33283','17847','count','$,#3,"like","customSettingsEdit"'), ('21097','33283','17848','count','$,#3,"like","dipSwitchChange"'), ('21098','33283','17849','count','$,#3,"like","eepromRetryLimit"'), ('21099','33283','17850','count','$,#3,"like","fetShort"'), ('21100','33283','17851','count','$,#3,"like","overcurrent"'), ('21101','33283','17852','count','$,#3,"like","rtsDisconnected"'), ('21102','33283','17853','count','$,#3,"like","rtsShorted"'), ('21103','33283','17854','count','$,#3,"like","slaveControlTimeout"'), ('21104','33283','17855','count','$,#3,"like","softwareFault"'), ('21106','33282','17857','nodata','$,5m'), ('21107','33280','17858','min','$,5m'), ('21108','33280','17859','max','$,5m'), ('21109','33280','17860','min','$,5m'), ('21110','33280','17861','max','$,5m'), ('21111','33296','17862','min','$,5m'), ('21112','33296','17863','max','$,5m'), ('21113','33296','17864','min','$,5m'), ('21114','33296','17865','max','$,5m'), ('21115','33301','17866','count','$,#3,"like","batterySense"'), ('21116','33301','17867','count','$,#3,"like","batterySenseDisconnected"'), ('21117','33301','17868','count','$,#3,"like","currentLimit"'), ('21118','33301','17869','count','$,#3,"like","currentOffset"'), ('21119','33301','17870','count','$,#3,"like","diversionLoadNearMax"'), ('21120','33301','17871','count','$,#3,"like","heatsinkTempSensorOpen"'), ('21121','33301','17872','count','$,#3,"like","heatsinkTempSensorShorted"'), ('21122','33301','17873','count','$,#3,"like","highVoltageDisconnect"'), ('21123','33301','17874','count','$,#3,"like","loadDisconnectState"'), ('21124','33301','17875','count','$,#3,"like","mosfetSOpen"'), ('21125','33301','17876','count','$,#3,"like","p12VoltageReferenceOff"'), ('21126','33301','17877','count','$,#3,"like","rtsDisconnected"'), ('21127','33301','17878','count','$,#3,"like","rtsMiswire"'), ('21128','33301','17879','count','$,#3,"like","rtsShorted"'), ('21129','33301','17880','count','$,#3,"like","systemMiswire"'), ('21130','33301','17881','count','$,#3,"like","tristarHot"'), ('21131','33301','17882','count','$,#3,"like","uncalibrated"'), ('21132','33302','17883','count','$,#3,"like","customSettingsEdit"'), ('21133','33302','17884','count','$,#3,"like","dipSwitchChange"'), ('21134','33302','17885','count','$,#3,"like","externalShort"'), ('21135','33302','17886','count','$,#3,"like","highVoltageDisconnect"'), ('21136','33302','17887','count','$,#3,"like","mosfetSShorted"'), ('21137','33302','17888','count','$,#3,"like","overcurrent"'), ('21138','33302','17889','count','$,#3,"like","reset"'), ('21139','33302','17890','count','$,#3,"like","rtsDisconnected"'), ('21140','33302','17891','count','$,#3,"like","rtsShorted"'), ('21141','33302','17892','count','$,#3,"like","softwareFault"'), ('21142','33302','17893','count','$,#3,"like","systemMiswire"'), ('21143','33302','17894','count','$,#3,"like","tristarHot"'), ('21145','33303','17896','nodata','$,5m'), ('21146','33304','17897','min','$,5m'), ('21147','33304','17898','max','$,5m'), ('21148','33304','17899','min','$,5m'), ('21149','33304','17900','max','$,5m'), ('21150','33312','17901','min','$,5m'), ('21151','33312','17902','max','$,5m'), ('21152','33312','17903','min','$,5m'), ('21153','33312','17904','max','$,5m'), ('21154','33315','17905','last','$'), ('21155','33315','17906','last','$'), ('21156','33318','17907','last','$'), ('21157','33318','17908','last','$'), ('21193','33359','17930','last','$'), ('21194','33360','17930','last','$'), ('21195','33357','17931','last','$'), ('21196','33358','17931','last','$'), ('21197','33361','17932','last','$'), ('21198','33362','17933','last','$'), ('21199','33365','17934','last','$'), ('21200','33367','17935','last','$'), ('21201','33368','17936','min','$,5m'), ('21202','33369','17937','min','$,{$FAS3220.FS.TIME:"{#FSNAME}"}'), ('21203','33374','17938','max','$,{$FAS3220.FS.TIME:"{#FSNAME}"}'), ('21204','33375','17939','last','$'), ('21205','33376','17940','last','$'), ('21206','33376','17941','last','$'), ('21211','33385','17943','last','$'), ('21212','33388','17943','last','$'), ('21213','33384','17944','last','$'), ('21214','33383','17944','last','$'), ('21227','31807','17949','min','$,10m'), ('21228','31809','17950','min','$,10m'), ('21229','31812','17951','min','$,10m'), ('21230','31814','17952','min','$,10m'), ('21231','33444','17953','last','$'), ('21232','33443','17953','last','$'), ('21233','33409','17954','last','$'), ('21234','33426','17954','last','$'), ('21235','33416','17955','last','$'), ('21236','33415','17955','last','$'), ('21237','33414','17956','last','$'), ('21238','33413','17956','last','$'), ('21239','33447','17957','min','$,5m'), ('21240','33397','17958','last','$'), ('21241','33392','17959','last','$'), ('21242','33417','17960','last','$'), ('21245','33475','17962','last','$'), ('21246','33473','17962','last','$'), ('21247','33476','17963','last','$'), ('21248','33473','17963','last','$'), ('21249','33480','17964','last','$'), ('21250','33506','17965','last','$'), ('21251','33504','17965','last','$'), ('21252','33505','17965','last','$'), ('21253','33506','17966','last','$'), ('21254','33504','17966','last','$'), ('21255','33505','17966','last','$'), ('21256','33518','17967','min','$,5m'), ('21262','33519','17971','last','$'), ('21266','33523','17973','last','$'), ('21267','33523','17974','last','$'), ('21268','33539','17975','last','$'), ('21269','33540','17975','last','$'), ('21275','33562','17977','min','$,5m'), ('21276','33553','17977','last','$'), ('21277','33562','17978','min','$,5m'), ('21278','33553','17978','last','$'), ('21279','33558','17979','min','$,5m'), ('21280','33557','17979','last','$'), ('21281','33558','17980','min','$,5m'), ('21282','33557','17980','last','$'), ('21283','33555','17981','min','$,5m'), ('21284','33560','17982','min','$,5m'), ('21285','33565','17983','min','$,5m'), ('21286','33565','17984','min','$,5m'), ('21287','33567','17985','min','$,15m'), ('21288','33568','17986','min','$,15m'), ('21289','33577','17987','last','$'), ('21290','33574','17987','last','$'), ('21291','33577','17988','change','$'), ('21292','33577','17989','change','$'), ('21295','33580','17991','nodata','$,10m'), ('21296','33580','17992','last','$'), ('21303','33600','17996','max','$,30m'), ('21304','33605','17997','max','$,30m'), ('21305','33610','17998','min','$,5m'), ('21306','33616','17999','last','$'), ('21307','33619','17999','last','$'), ('21308','33618','18000','min','$,5m'), ('21309','33617','18000','max','$,5m'), ('21310','33618','18001','min','$,5m'), ('21311','33617','18001','max','$,5m'), ('21312','30318','18002','last','$'), ('21313','30369','18002','min','$,5m'), ('21314','28416','18003','count',E'$,#1,"eq","{$DISK_ARRAY_CACHE_BATTERY_WARN_STATUS:\\"degraded\\"}"'), ('21315','28415','18004','count',E'$,#1,"eq","{$DISK_ARRAY_CACHE_WARN_STATUS:\\"cacheModDegradedFailsafeSpeed\\"}"'), ('21316','28415','18004','count',E'$,#1,"eq","{$DISK_ARRAY_CACHE_WARN_STATUS:\\"cacheReadCacheNotMapped\\"}"'), ('21317','28415','18004','count',E'$,#1,"eq","{$DISK_ARRAY_CACHE_WARN_STATUS:\\"cacheModFlashMemNotAttached\\"}"'), ('21318','28415','18005','count',E'$,#1,"ne","{$DISK_ARRAY_CACHE_OK_STATUS:\\"enabled\\"}"'), ('21319','28415','18005','last','$'), ('21320','33621','18006','last','$'), ('21321','33621','18007','last','$'), ('21322','33621','18008','last','$'), ('21323','33622','18009','last','$'), ('21324','33622','18010','last','$'), ('21325','33622','18011','last','$'), ('21326','33623','18012','last','$'), ('21327','33623','18013','last','$'), ('21328','33623','18014','last','$'), ('21329','33624','18015','last','$'), ('21330','33624','18016','last','$'), ('21331','33624','18017','last','$'), ('21332','33626','18018','last','$'), ('21333','33626','18019','last','$'), ('21334','33626','18020','last','$'), ('21335','33627','18021','last','$'), ('21336','33627','18022','last','$'), ('21337','33627','18023','last','$'), ('21338','33628','18024','last','$'), ('21339','33628','18025','last','$'), ('21340','33628','18026','last','$'), ('21341','33632','18027','last','$'), ('21342','33633','18028','last','$'), ('21348','33501','18033','min','$,5m'), ('21349','33598','18034','min','$,5m'), ('21350','33605','18034','max','$,5m'), ('21566','30089','18108','min','$,5m'), ('21567','30093','18109','min','$,5m'), ('21575','30105','18117','min','$,5m'), ('21576','30107','18118','min','$,5m'), ('21577','30108','18119','min','$,5m'), ('21578','30111','18120','min','$,5m'), ('21579','30112','18121','min','$,5m'), ('21580','30115','18122','min','$,5m'), ('21581','30116','18123','min','$,5m'), ('21582','30118','18124','min','$,5m'), ('21583','30120','18125','min','$,5m'), ('21584','30123','18126','min','$,5m'), ('21585','30126','18127','min','$,5m'), ('21586','30131','18128','min','$,5m'), ('21587','30136','18129','min','$,5m'), ('21637','29396','18152','min','$,5m'), ('21704','33703','18184','last','$'), ('21705','33704','18185','last','$'), ('21706','33705','18186','min','$,5m'), ('21707','33706','18187','last','$'), ('21708','33707','18188','min','$,{$HUAWEI.5300.MEM.MAX.TIME}'), ('21710','33709','18190','last','$'), ('21711','33711','18191','last','$'), ('21712','33712','18192','last','$'), ('21713','33713','18193','min','$,{$HUAWEI.5300.DISK.TEMP.MAX.TIME}'), ('21714','33714','18194','last','$'), ('21715','33715','18195','last','$'), ('21716','33716','18196','min','$,{$HUAWEI.5300.TEMP.MAX.TIME}'), ('21717','33717','18197','last','$'), ('21718','33718','18198','last','$'), ('21719','33719','18199','min','$,{$HUAWEI.5300.LUN.IO.TIME.MAX.TIME}'), ('21720','33729','18200','last','$'), ('21721','33730','18201','min','$,5m'), ('21722','33731','18202','min','$,{$HUAWEI.5300.NODE.IO.DELAY.MAX.TIME}'), ('21723','33739','18203','min','$,{$HUAWEI.5300.POOL.CAPACITY.THRESH.TIME}'), ('21724','33740','18204','last','$'), ('21725','33741','18205','last','$'), ('21726','33378','18206','min','$,5m'), ('21727','33381','18206','min','$,5m'), ('21728','33378','18206','max','$,5m'), ('21729','33381','18206','max','$,5m'), ('21730','33747','18207','last','$'), ('21731','33748','18208','last','$'), ('21732','33749','18209','last','$'), ('21733','33750','18210','last','$'), ('21734','33751','18211','last','$'), ('21735','33752','18212','last','$'), ('21736','33753','18213','last','$'), ('21737','33757','18214','last','$'), ('21738','33758','18215','last','$'), ('21739','33759','18216','last','$'), ('21740','33760','18217','last','$'), ('21741','33761','18218','last','$'), ('21742','33762','18219','last','$'), ('21743','33763','18220','last','$'), ('21744','33801','18221','min','$,5m'), ('21745','33800','18221','last','$'), ('21746','33801','18221','last','$'), ('21747','33798','18222','min','$,5m'), ('21748','33786','18223','min','$,5m'), ('21749','33766','18224','last','$'), ('21750','33784','18225','nodata','$,10m'), ('21751','33784','18226','last','$'), ('21756','33863','18229','min','$,5m'), ('21758','33875','18231','max','$,5m'), ('21759','33872','18232','max','$,5m'), ('21760','33918','18233','max','$,5m'), ('21761','33908','18234','min','$,5m'), ('21762','33907','18235','min','$,5m'), ('21763','33888','18236','last','$'), ('21764','33901','18237','nodata','$,10m'), ('21765','33901','18238','last','$'), ('21970','33944','18298','max','$,#3'), ('21971','33945','18299','min','$,5m'), ('21972','33946','18300','avg','$,5m'), ('21980','33957','18305','max','$,{$SNMP.TIMEOUT}'), ('21981','33966','18306','min','$,5m'), ('21984','33968','18308','last','$'), ('21985','33968','18309','last','$'), ('21986','33971','18310','min','$,5m'), ('21987','33978','18311','change','$'), ('21988','33978','18311','last','$'), ('21989','33980','18311','last','$'), ('21990','33979','18311','last','$'), ('21991','33978','18311','last','$,#2'), ('21992','33974','18312','avg','$,15m'), ('21993','33978','18312','last','$'), ('21994','33977','18313','avg','$,15m'), ('21995','33978','18313','last','$'), ('21996','33973','18314','min','$,5m'), ('21997','33973','18314','max','$,5m'), ('21998','33976','18315','min','$,5m'), ('21999','33976','18315','max','$,5m'), ('22000','33979','18316','last','$'), ('22001','33981','18317','last','$'), ('22002','33982','18318','last','$'), ('22003','33982','18318','last','$'), ('22004','33982','18319','last','$'), ('22005','33983','18320','last','$'), ('22006','33983','18321','last','$'), ('22007','33984','18322','avg','$,5m'), ('22008','33984','18322','max','$,5m'), ('22009','33984','18323','avg','$,5m'), ('22010','33984','18323','max','$,5m'), ('22011','33984','18324','avg','$,5m'), ('22012','33984','18324','min','$,5m'), ('22013','33985','18325','max','$,#3'), ('22014','33986','18326','min','$,5m'), ('22015','33987','18327','avg','$,5m'), ('22023','33998','18332','max','$,{$SNMP.TIMEOUT}'), ('22024','34007','18333','min','$,5m'), ('22027','34009','18335','last','$'), ('22028','34009','18336','last','$'), ('22029','34012','18337','min','$,5m'), ('22030','34019','18338','change','$'), ('22031','34019','18338','last','$'), ('22032','34021','18338','last','$'), ('22033','34020','18338','last','$'), ('22034','34019','18338','last','$,#2'), ('22035','34015','18339','avg','$,15m'), ('22036','34019','18339','last','$'), ('22037','34018','18340','avg','$,15m'), ('22038','34019','18340','last','$'), ('22039','34014','18341','min','$,5m'), ('22040','34014','18341','max','$,5m'), ('22041','34017','18342','min','$,5m'), ('22042','34017','18342','max','$,5m'), ('22043','34020','18343','last','$'), ('22044','34022','18344','last','$'), ('22045','34023','18345','last','$'), ('22046','34023','18345','last','$'), ('22047','34023','18346','last','$'), ('22048','34024','18347','last','$'), ('22049','34024','18348','last','$'), ('22050','34025','18349','avg','$,5m'), ('22051','34025','18349','max','$,5m'), ('22052','34025','18350','avg','$,5m'), ('22053','34025','18350','max','$,5m'), ('22054','34025','18351','avg','$,5m'), ('22055','34025','18351','min','$,5m'), ('22056','34026','18352','max','$,#3'), ('22057','34027','18353','min','$,5m'), ('22058','34028','18354','avg','$,5m'), ('22066','34039','18359','max','$,{$SNMP.TIMEOUT}'), ('22067','34048','18360','min','$,5m'), ('22070','34050','18362','last','$'), ('22071','34050','18363','last','$'), ('22072','34053','18364','min','$,5m'), ('22073','34060','18365','change','$'), ('22074','34060','18365','last','$'), ('22075','34062','18365','last','$'), ('22076','34061','18365','last','$'), ('22077','34060','18365','last','$,#2'), ('22078','34056','18366','avg','$,15m'), ('22079','34060','18366','last','$'), ('22080','34059','18367','avg','$,15m'), ('22081','34060','18367','last','$'), ('22082','34055','18368','min','$,5m'), ('22083','34055','18368','max','$,5m'), ('22084','34058','18369','min','$,5m'), ('22085','34058','18369','max','$,5m'), ('22086','34061','18370','last','$'), ('22087','34063','18371','last','$'), ('22088','34064','18372','last','$'), ('22089','34064','18372','last','$'), ('22090','34064','18373','last','$'), ('22091','34065','18374','last','$'), ('22092','34065','18375','last','$'), ('22093','34066','18376','avg','$,5m'), ('22094','34066','18376','max','$,5m'), ('22095','34066','18377','avg','$,5m'), ('22096','34066','18377','max','$,5m'), ('22097','34066','18378','avg','$,5m'), ('22098','34066','18378','min','$,5m'), ('22099','34067','18379','max','$,#3'), ('22100','34068','18380','min','$,5m'), ('22101','34069','18381','avg','$,5m'), ('22109','34080','18386','max','$,{$SNMP.TIMEOUT}'), ('22110','34089','18387','min','$,5m'), ('22113','34091','18389','last','$'), ('22114','34091','18390','last','$'), ('22115','34094','18391','min','$,5m'), ('22116','34101','18392','change','$'), ('22117','34101','18392','last','$'), ('22118','34103','18392','last','$'), ('22119','34102','18392','last','$'), ('22120','34101','18392','last','$,#2'), ('22121','34097','18393','avg','$,15m'), ('22122','34101','18393','last','$'), ('22123','34100','18394','avg','$,15m'), ('22124','34101','18394','last','$'), ('22125','34096','18395','min','$,5m'), ('22126','34096','18395','max','$,5m'), ('22127','34099','18396','min','$,5m'), ('22128','34099','18396','max','$,5m'), ('22129','34102','18397','last','$'), ('22130','34104','18398','last','$'), ('22131','34105','18399','last','$'), ('22132','34105','18399','last','$'), ('22133','34105','18400','last','$'), ('22134','34106','18401','last','$'), ('22135','34106','18402','last','$'), ('22136','34107','18403','avg','$,5m'), ('22137','34107','18403','max','$,5m'), ('22138','34107','18404','avg','$,5m'), ('22139','34107','18404','max','$,5m'), ('22140','34107','18405','avg','$,5m'), ('22141','34107','18405','min','$,5m'), ('22142','34108','18406','max','$,#3'), ('22143','34109','18407','min','$,5m'), ('22144','34110','18408','avg','$,5m'), ('22152','34121','18413','max','$,{$SNMP.TIMEOUT}'), ('22153','34130','18414','min','$,5m'), ('22156','34132','18416','last','$'), ('22157','34132','18417','last','$'), ('22158','34135','18418','min','$,5m'), ('22159','34142','18419','change','$'), ('22160','34142','18419','last','$'), ('22161','34144','18419','last','$'), ('22162','34143','18419','last','$'), ('22163','34142','18419','last','$,#2'), ('22164','34138','18420','avg','$,15m'), ('22165','34142','18420','last','$'), ('22166','34141','18421','avg','$,15m'), ('22167','34142','18421','last','$'), ('22168','34137','18422','min','$,5m'), ('22169','34137','18422','max','$,5m'), ('22170','34140','18423','min','$,5m'), ('22171','34140','18423','max','$,5m'), ('22172','34143','18424','last','$'), ('22173','34145','18425','last','$'), ('22174','34146','18426','last','$'), ('22175','34146','18426','last','$'), ('22176','34146','18427','last','$'), ('22177','34147','18428','last','$'), ('22178','34147','18429','last','$'), ('22179','34148','18430','avg','$,5m'), ('22180','34148','18430','max','$,5m'), ('22181','34148','18431','avg','$,5m'), ('22182','34148','18431','max','$,5m'), ('22183','34148','18432','avg','$,5m'), ('22184','34148','18432','min','$,5m'), ('22185','34149','18433','max','$,#3'), ('22188','34154','18436','min','$,5m'), ('22192','34160','18439','max','$,{$SNMP.TIMEOUT}'), ('22194','34170','18441','change','$'), ('22195','34170','18441','last','$'), ('22196','34172','18441','last','$'), ('22197','34171','18441','last','$'), ('22198','34170','18441','last','$,#2'), ('22199','34166','18442','avg','$,15m'), ('22200','34170','18442','last','$'), ('22201','34169','18442','avg','$,15m'), ('22202','34165','18443','min','$,5m'), ('22203','34168','18443','min','$,5m'), ('22204','34165','18443','max','$,5m'), ('22205','34168','18443','max','$,5m'), ('22208','28206','18445','count','$,#1,"eq","{$PSU.STATUS.CRIT}"'), ('22209','28201','18446','avg','$,5m'), ('22210','28200','18446','last','$'), ('22211','28201','18446','max','$,5m'), ('22212','28201','18447','avg','$,5m'), ('22213','28201','18447','max','$,5m'), ('22214','28201','18448','avg','$,5m'), ('22215','28201','18448','min','$,5m'), ('22224','34178','18451','min','$,5m'), ('22257','29436','18463','avg','$,15m'), ('22258','29442','18463','last','$'), ('22259','29437','18463','avg','$,15m'), ('22260','29439','18464','min','$,5m'), ('22261','29438','18464','min','$,5m'), ('22262','29439','18464','max','$,5m'), ('22263','29438','18464','max','$,5m'), ('22292','34204','18473','last','$'), ('22293','34202','18474','last','$'), ('22294','34202','18475','last','$'), ('22295','34201','18476','min','$,{$TIME.PERIOD}'), ('22299','34195','18480','min','$,{$TIME.PERIOD}'), ('22300','34195','18480','max','$,{$TIME.PERIOD}'), ('22301','34194','18481','min','$,{$TIME.PERIOD}'), ('22302','34194','18481','max','$,{$TIME.PERIOD}'), ('22303','34180','18482','min','$,{$TIME.PERIOD}'), ('22304','34191','18483','last','$'), ('22305','34191','18484','last','$'), ('22306','34191','18485','last','$'), ('22307','34191','18486','last','$'), ('22308','34191','18487','last','$'), ('22309','34191','18488','last','$'), ('22310','34191','18489','last','$'), ('22311','34191','18490','last','$'), ('22312','34191','18491','last','$'), ('22313','34191','18492','last','$'), ('22314','34191','18493','last','$'), ('22318','34206','18496','max','$,{$SNMP.TIMEOUT}'), ('22319','34214','18497','find','$,,"regexp","^(0)[0|1]{15}$"'), ('22321','34216','18499','min','$,{$TIME.PERIOD}'), ('22322','34219','18500','last','$'), ('22323','34219','18501','last','$'), ('22324','34219','18502','last','$'), ('22325','34222','18503','last','$'), ('22326','34222','18504','last','$'), ('22327','34222','18505','last','$'), ('22328','34225','18506','min','$,{$TIME.PERIOD}'), ('22329','34225','18506','max','$,{$TIME.PERIOD}'), ('22330','34240','18507','last','$'), ('22345','34281','18515','last','$'), ('22346','34284','18516','last','$'), ('22347','34285','18517','last','$'), ('22356','32451','18522','avg','$,{$ACTIVEMQ.MSG.RATE.WARN.TIME:"{#JMXBROKERNAME}"}'), ('22357','32458','18523','avg','$,{$ACTIVEMQ.MSG.RATE.WARN.TIME:"{#JMXDESTINATIONNAME}"}'), ('22358','32457','18523','avg','$,{$ACTIVEMQ.MSG.RATE.WARN.TIME:"{#JMXDESTINATIONNAME}"}'), ('22360','32462','18525','min','$,{$ACTIVEMQ.QUEUE.TIME:"{#JMXDESTINATIONNAME}"}'), ('22361','32621','18526','min','$,5m'), ('22362','32624','18526','last','$'), ('22363','32262','18527','avg','$,5m'), ('22364','32251','18527','avg','$,5m'), ('22371','31086','18534','min','$,5m'), ('22372','31087','18535','min','$,5m'), ('22379','34334','18542','last','$'), ('22381','30434','18544','max','$,5m'), ('22382','30640','18545','max','$,5m'), ('22383','30483','18546','max','$,5m'), ('22384','31704','18547','min','$,5m'), ('22385','31199','18548','min','$,5m'), ('22386','34339','18549','last','$'), ('22387','34340','18550','last','$'), ('22390','34351','18552','min','$,5m'), ('22391','34350','18552','last','$'), ('22392','34352','18553','last','$'), ('22393','34353','18554','last','$'), ('22394','34354','18555','last','$'), ('22395','34365','18556','min','$,5m'), ('22396','34365','18557','min','$,5m'), ('22397','34387','18558','min','$,5m'), ('22398','34388','18558','last','$'), ('22399','34385','18559','min','$,5m'), ('22400','34397','18560','min','$,5m'), ('22401','34393','18561','min','$,5m'), ('22402','34392','18562','max','$,5m'), ('22403','34391','18563','min','$,5m'), ('22404','34381','18564','min','$,5m'), ('22405','34379','18565','last','$'), ('22406','34376','18566','last','$'), ('22407','34373','18567','min','$,5m'), ('22408','34371','18568','last','$'), ('22411','34410','18570','min','$,5m'), ('22414','34422','18573','min','$,5m'), ('22415','34439','18574','last','$'), ('22416','34450','18575','min','$,5m'), ('22417','34451','18576','last','$'), ('22418','34473','18577','last','$'), ('22419','34471','18578','last','$'), ('22420','34471','18579','last','$'), ('22421','34470','18580','min','$,{$TIME.PERIOD}'), ('22422','34467','18581','min','$,{$TIME.PERIOD}'), ('22423','34467','18581','max','$,{$TIME.PERIOD}'), ('22424','34466','18582','min','$,{$TIME.PERIOD}'), ('22425','34466','18582','max','$,{$TIME.PERIOD}'), ('22426','34463','18583','min','$,{$TIME.PERIOD}'), ('22427','34452','18584','last','$'), ('22428','34452','18585','last','$'), ('22429','34452','18586','last','$'), ('22430','34452','18587','last','$'), ('22431','34452','18588','last','$'), ('22432','34452','18589','last','$'), ('22433','34452','18590','last','$'), ('22434','34452','18591','last','$'), ('22435','34452','18592','last','$'), ('22436','34452','18593','last','$'), ('22437','34452','18594','last','$'), ('22441','34475','18597','max','$,{$SNMP.TIMEOUT}'), ('22442','34484','18598','find','$,,"regexp","^(0)[0|1]{15}$"'), ('22443','34485','18599','find','$,,"regexp","^(0{16})$"'), ('22444','34486','18600','min','$,{$TIME.PERIOD}'), ('22445','34489','18601','last','$'), ('22446','34489','18602','last','$'), ('22447','34489','18603','last','$'), ('22448','34492','18604','last','$'), ('22449','34492','18605','last','$'), ('22450','34492','18606','last','$'), ('22451','34495','18607','min','$,{$TIME.PERIOD}'), ('22452','34495','18607','max','$,{$TIME.PERIOD}'), ('22453','34498','18608','min','$,{$TIME.PERIOD}'), ('22454','34498','18608','max','$,{$TIME.PERIOD}'), ('22455','34499','18609','last','$'), ('22456','34521','18610','last','$'), ('22457','34519','18611','last','$'), ('22458','34519','18612','last','$'), ('22459','34518','18613','min','$,{$TIME.PERIOD}'), ('22460','34515','18614','min','$,{$TIME.PERIOD}'), ('22461','34515','18614','max','$,{$TIME.PERIOD}'), ('22462','34514','18615','min','$,{$TIME.PERIOD}'), ('22463','34514','18615','max','$,{$TIME.PERIOD}'), ('22464','34511','18616','min','$,{$TIME.PERIOD}'), ('22465','34500','18617','last','$'), ('22466','34500','18618','last','$'), ('22467','34500','18619','last','$'), ('22468','34500','18620','last','$'), ('22469','34500','18621','last','$'), ('22470','34500','18622','last','$'), ('22471','34500','18623','last','$'), ('22472','34500','18624','last','$'), ('22473','34500','18625','last','$'), ('22474','34500','18626','last','$'), ('22475','34500','18627','last','$'), ('22479','34523','18630','max','$,{$SNMP.TIMEOUT}'), ('22480','34532','18631','find','$,,"regexp","^(0)[0|1]{15}$"'), ('22481','34533','18632','find','$,,"regexp","^(0{16})$"'), ('22482','34534','18633','min','$,{$TIME.PERIOD}'), ('22483','34537','18634','last','$'), ('22484','34537','18635','last','$'), ('22485','34537','18636','last','$'), ('22486','34540','18637','last','$'), ('22487','34540','18638','last','$'), ('22488','34540','18639','last','$'), ('22489','34543','18640','min','$,{$TIME.PERIOD}'), ('22490','34543','18640','max','$,{$TIME.PERIOD}'), ('22491','34546','18641','min','$,{$TIME.PERIOD}'), ('22492','34546','18641','max','$,{$TIME.PERIOD}'), ('22493','34547','18642','last','$'), ('22494','34569','18643','last','$'), ('22495','34567','18644','last','$'), ('22496','34567','18645','last','$'), ('22497','34566','18646','min','$,{$TIME.PERIOD}'), ('22498','34563','18647','min','$,{$TIME.PERIOD}'), ('22499','34563','18647','max','$,{$TIME.PERIOD}'), ('22500','34562','18648','min','$,{$TIME.PERIOD}'), ('22501','34562','18648','max','$,{$TIME.PERIOD}'), ('22502','34559','18649','min','$,{$TIME.PERIOD}'), ('22503','34548','18650','last','$'), ('22504','34548','18651','last','$'), ('22505','34548','18652','last','$'), ('22506','34548','18653','last','$'), ('22507','34548','18654','last','$'), ('22508','34548','18655','last','$'), ('22509','34548','18656','last','$'), ('22510','34548','18657','last','$'), ('22511','34548','18658','last','$'), ('22512','34548','18659','last','$'), ('22513','34548','18660','last','$'), ('22517','34571','18663','max','$,{$SNMP.TIMEOUT}'), ('22518','34580','18664','find','$,,"regexp","^(0)[0|1]{15}$"'), ('22519','34581','18665','find','$,,"regexp","^(0{16})$"'), ('22520','34582','18666','min','$,{$TIME.PERIOD}'), ('22521','34585','18667','last','$'), ('22522','34585','18668','last','$'), ('22523','34585','18669','last','$'), ('22524','34588','18670','last','$'), ('22525','34588','18671','last','$'), ('22526','34588','18672','last','$'), ('22527','34591','18673','min','$,{$TIME.PERIOD}'), ('22528','34591','18673','max','$,{$TIME.PERIOD}'), ('22529','34594','18674','min','$,{$TIME.PERIOD}'), ('22530','34594','18674','max','$,{$TIME.PERIOD}'), ('22531','34595','18675','last','$'), ('22532','34617','18676','last','$'), ('22533','34615','18677','last','$'), ('22534','34615','18678','last','$'), ('22535','34614','18679','min','$,{$TIME.PERIOD}'), ('22536','34611','18680','min','$,{$TIME.PERIOD}'), ('22537','34611','18680','max','$,{$TIME.PERIOD}'), ('22538','34610','18681','min','$,{$TIME.PERIOD}'), ('22539','34610','18681','max','$,{$TIME.PERIOD}'), ('22540','34607','18682','min','$,{$TIME.PERIOD}'), ('22541','34596','18683','last','$'), ('22542','34596','18684','last','$'), ('22543','34596','18685','last','$'), ('22544','34596','18686','last','$'), ('22545','34596','18687','last','$'), ('22546','34596','18688','last','$'), ('22547','34596','18689','last','$'), ('22548','34596','18690','last','$'), ('22549','34596','18691','last','$'), ('22550','34596','18692','last','$'), ('22551','34596','18693','last','$'), ('22555','34619','18696','max','$,{$SNMP.TIMEOUT}'), ('22556','34628','18697','find','$,,"regexp","^(0)[0|1]{15}$"'), ('22557','34629','18698','find','$,,"regexp","^(0{16})$"'), ('22558','34630','18699','min','$,{$TIME.PERIOD}'), ('22559','34633','18700','last','$'), ('22560','34633','18701','last','$'), ('22561','34633','18702','last','$'), ('22562','34636','18703','last','$'), ('22563','34636','18704','last','$'), ('22564','34636','18705','last','$'), ('22565','34639','18706','min','$,{$TIME.PERIOD}'), ('22566','34639','18706','max','$,{$TIME.PERIOD}'), ('22567','34642','18707','min','$,{$TIME.PERIOD}'), ('22568','34642','18707','max','$,{$TIME.PERIOD}'), ('22569','34643','18708','last','$'), ('22570','34665','18709','last','$'), ('22571','34663','18710','last','$'), ('22572','34663','18711','last','$'), ('22573','34662','18712','min','$,{$TIME.PERIOD}'), ('22574','34659','18713','min','$,{$TIME.PERIOD}'), ('22575','34659','18713','max','$,{$TIME.PERIOD}'), ('22576','34658','18714','min','$,{$TIME.PERIOD}'), ('22577','34658','18714','max','$,{$TIME.PERIOD}'), ('22578','34655','18715','min','$,{$TIME.PERIOD}'), ('22579','34644','18716','last','$'), ('22580','34644','18717','last','$'), ('22581','34644','18718','last','$'), ('22582','34644','18719','last','$'), ('22583','34644','18720','last','$'), ('22584','34644','18721','last','$'), ('22585','34644','18722','last','$'), ('22586','34644','18723','last','$'), ('22587','34644','18724','last','$'), ('22588','34644','18725','last','$'), ('22589','34644','18726','last','$'), ('22593','34667','18729','max','$,{$SNMP.TIMEOUT}'), ('22594','34676','18730','find','$,,"regexp","^(0)[0|1]{15}$"'), ('22595','34677','18731','find','$,,"regexp","^(0{16})$"'), ('22596','34678','18732','min','$,{$TIME.PERIOD}'), ('22597','34681','18733','last','$'), ('22598','34681','18734','last','$'), ('22599','34681','18735','last','$'), ('22600','34684','18736','last','$'), ('22601','34684','18737','last','$'), ('22602','34684','18738','last','$'), ('22603','34687','18739','min','$,{$TIME.PERIOD}'), ('22604','34687','18739','max','$,{$TIME.PERIOD}'), ('22605','34690','18740','min','$,{$TIME.PERIOD}'), ('22606','34690','18740','max','$,{$TIME.PERIOD}'), ('22645','34739','18774','last','$'), ('22646','34761','18775','last','$'), ('22647','34759','18776','last','$'), ('22648','34759','18777','last','$'), ('22649','34758','18778','min','$,{$TIME.PERIOD}'), ('22650','34755','18779','min','$,{$TIME.PERIOD}'), ('22651','34755','18779','max','$,{$TIME.PERIOD}'), ('22652','34754','18780','min','$,{$TIME.PERIOD}'), ('22653','34754','18780','max','$,{$TIME.PERIOD}'), ('22654','34751','18781','min','$,{$TIME.PERIOD}'), ('22655','34740','18782','last','$'), ('22656','34740','18783','last','$'), ('22657','34740','18784','last','$'), ('22658','34740','18785','last','$'), ('22659','34740','18786','last','$'), ('22660','34740','18787','last','$'), ('22661','34740','18788','last','$'), ('22662','34740','18789','last','$'), ('22663','34740','18790','last','$'), ('22664','34740','18791','last','$'), ('22665','34740','18792','last','$'), ('22669','34763','18795','max','$,{$SNMP.TIMEOUT}'), ('22670','34772','18796','find','$,,"regexp","^(0)[0|1]{15}$"'), ('22671','34773','18797','find','$,,"regexp","^(0{16})$"'), ('22672','34774','18798','min','$,{$TIME.PERIOD}'), ('22673','34777','18799','last','$'), ('22674','34777','18800','last','$'), ('22675','34777','18801','last','$'), ('22676','34780','18802','last','$'), ('22677','34780','18803','last','$'), ('22678','34780','18804','last','$'), ('22679','34783','18805','min','$,{$TIME.PERIOD}'), ('22680','34783','18805','max','$,{$TIME.PERIOD}'), ('22681','34786','18806','min','$,{$TIME.PERIOD}'), ('22682','34786','18806','max','$,{$TIME.PERIOD}'), ('22683','34787','18807','last','$'), ('22686','34215','18809','find','$,,"regexp","^(0{16})$"'), ('22687','34792','18810','min','$,{$TIME.PERIOD}'), ('22688','34792','18810','max','$,{$TIME.PERIOD}'), ('22689','34793','18811','last','$'), ('22690','34815','18812','last','$'), ('22691','34813','18813','last','$'), ('22692','34813','18814','last','$'), ('22693','34812','18815','min','$,{$TIME.PERIOD}'), ('22694','34809','18816','min','$,{$TIME.PERIOD}'), ('22695','34809','18816','max','$,{$TIME.PERIOD}'), ('22696','34808','18817','min','$,{$TIME.PERIOD}'), ('22697','34808','18817','max','$,{$TIME.PERIOD}'), ('22698','34805','18818','min','$,{$TIME.PERIOD}'), ('22699','34794','18819','last','$'), ('22700','34794','18820','last','$'), ('22701','34794','18821','last','$'), ('22702','34794','18822','last','$'), ('22703','34794','18823','last','$'), ('22704','34794','18824','last','$'), ('22705','34794','18825','last','$'), ('22706','34794','18826','last','$'), ('22707','34794','18827','last','$'), ('22708','34794','18828','last','$'), ('22709','34794','18829','last','$'), ('22713','34817','18832','max','$,{$SNMP.TIMEOUT}'), ('22714','34826','18833','find','$,,"regexp","^(0)[0|1]{15}$"'), ('22715','34827','18834','find','$,,"regexp","^(0{16})$"'), ('22716','34828','18835','min','$,{$TIME.PERIOD}'), ('22717','34831','18836','last','$'), ('22718','34831','18837','last','$'), ('22719','34831','18838','last','$'), ('22720','34834','18839','last','$'), ('22721','34834','18840','last','$'), ('22722','34834','18841','last','$'), ('22723','34837','18842','min','$,{$TIME.PERIOD}'), ('22724','34837','18842','max','$,{$TIME.PERIOD}'), ('22725','34840','18843','min','$,{$TIME.PERIOD}'), ('22726','34840','18843','max','$,{$TIME.PERIOD}'), ('22727','34841','18844','last','$'), ('22728','34863','18845','last','$'), ('22729','34861','18846','last','$'), ('22730','34861','18847','last','$'), ('22731','34860','18848','min','$,{$TIME.PERIOD}'), ('22732','34857','18849','min','$,{$TIME.PERIOD}'), ('22733','34857','18849','max','$,{$TIME.PERIOD}'), ('22734','34856','18850','min','$,{$TIME.PERIOD}'), ('22735','34856','18850','max','$,{$TIME.PERIOD}'), ('22736','34853','18851','min','$,{$TIME.PERIOD}'), ('22737','34842','18852','last','$'), ('22738','34842','18853','last','$'), ('22739','34842','18854','last','$'), ('22740','34842','18855','last','$'), ('22741','34842','18856','last','$'), ('22742','34842','18857','last','$'), ('22743','34842','18858','last','$'), ('22744','34842','18859','last','$'), ('22745','34842','18860','last','$'), ('22746','34842','18861','last','$'), ('22747','34842','18862','last','$'), ('22751','34865','18865','max','$,{$SNMP.TIMEOUT}'), ('22752','34874','18866','find','$,,"regexp","^(0)[0|1]{15}$"'), ('22753','34875','18867','find','$,,"regexp","^(0{16})$"'), ('22754','34876','18868','min','$,{$TIME.PERIOD}'), ('22755','34879','18869','last','$'), ('22756','34879','18870','last','$'), ('22757','34879','18871','last','$'), ('22758','34882','18872','last','$'), ('22759','34882','18873','last','$'), ('22760','34882','18874','last','$'), ('22761','34885','18875','min','$,{$TIME.PERIOD}'), ('22762','34885','18875','max','$,{$TIME.PERIOD}'), ('22763','34888','18876','min','$,{$TIME.PERIOD}'), ('22764','34888','18876','max','$,{$TIME.PERIOD}'), ('22765','34889','18877','last','$'), ('22766','34911','18878','last','$'), ('22767','34909','18879','last','$'), ('22768','34909','18880','last','$'), ('22769','34908','18881','min','$,{$TIME.PERIOD}'), ('22770','34905','18882','min','$,{$TIME.PERIOD}'), ('22771','34905','18882','max','$,{$TIME.PERIOD}'), ('22772','34904','18883','min','$,{$TIME.PERIOD}'), ('22773','34904','18883','max','$,{$TIME.PERIOD}'), ('22774','34901','18884','min','$,{$TIME.PERIOD}'), ('22775','34890','18885','last','$'), ('22776','34890','18886','last','$'), ('22777','34890','18887','last','$'), ('22778','34890','18888','last','$'), ('22779','34890','18889','last','$'), ('22780','34890','18890','last','$'), ('22781','34890','18891','last','$'), ('22782','34890','18892','last','$'), ('22783','34890','18893','last','$'), ('22784','34890','18894','last','$'), ('22785','34890','18895','last','$'), ('22789','34913','18898','max','$,{$SNMP.TIMEOUT}'), ('22790','34922','18899','find','$,,"regexp","^(0)[0|1]{15}$"'), ('22791','34923','18900','find','$,,"regexp","^(0{16})$"'), ('22792','34924','18901','min','$,{$TIME.PERIOD}'), ('22793','34927','18902','last','$'), ('22794','34927','18903','last','$'), ('22795','34927','18904','last','$'), ('22796','34930','18905','last','$'), ('22797','34930','18906','last','$'), ('22798','34930','18907','last','$'), ('22799','34933','18908','min','$,{$TIME.PERIOD}'), ('22800','34933','18908','max','$,{$TIME.PERIOD}'), ('22801','34936','18909','min','$,{$TIME.PERIOD}'), ('22802','34936','18909','max','$,{$TIME.PERIOD}'), ('22977','30960','16895','min','$,15m'), ('23029','32840','17507','min','$,1h'), ('23030','32848','17508','min','$,1h'), ('23031','32860','17509','min','$,1h'), ('23106','34937','18910','last','$'), ('23116','34949','18914','nodata','$,15m'), ('23117','34949','18915','last','$'), ('23121','34961','18917','find','$,,"like","ok"'), ('23122','34960','18918','find','$,,"like","running"'), ('23126','35001','18920','min','$,5m'), ('23127','34997','18920','last','$'), ('23128','34982','18921','max','$,5m'), ('23129','34981','18922','last','$'), ('23130','34999','18923','last','$'), ('23131','34998','18924','last','$'), ('23132','34996','18925','min','$,5m'), ('23133','35014','18926','last','$'), ('23134','35016','18927','last','$'), ('23135','35038','18928','last','$'), ('23136','35036','18929','last','$'), ('23137','35036','18930','last','$'), ('23138','35035','18931','min','$,{$TIME.PERIOD}'), ('23143','35028','18934','min','$,{$TIME.PERIOD}'), ('23144','35017','18935','last','$'), ('23145','35017','18936','last','$'), ('23146','35017','18937','last','$'), ('23147','35017','18938','last','$'), ('23148','35017','18939','last','$'), ('23149','35017','18940','last','$'), ('23150','35017','18941','last','$'), ('23151','35017','18942','last','$'), ('23152','35017','18943','last','$'), ('23153','35017','18944','last','$'), ('23154','35017','18945','last','$'), ('23159','35040','18948','max','$,{$SNMP.TIMEOUT}'), ('23160','35049','18949','find','$,,"regexp","^(0)[0|1]{15}$"'), ('23161','35050','18950','find','$,,"regexp","^(0{16})$"'), ('23162','35051','18951','min','$,{$TIME.PERIOD}'), ('23163','35054','18952','last','$'), ('23164','35054','18953','last','$'), ('23165','35054','18954','last','$'), ('23166','35057','18955','last','$'), ('23167','35057','18956','last','$'), ('23168','35057','18957','last','$'), ('23169','35060','18958','min','$,{$TIME.PERIOD}'), ('23170','35060','18958','max','$,{$TIME.PERIOD}'), ('23171','35063','18959','min','$,{$TIME.PERIOD}'), ('23172','35063','18959','max','$,{$TIME.PERIOD}'), ('23173','32442','17410','last','$,#1'), ('23174','32442','17410','last','$,#2'), ('23175','32442','17410','last','$'), ('23176','30911','16887','last','$,#1'), ('23177','30911','16887','last','$,#2'), ('23178','30911','16887','last','$'), ('23179','28790','15952','last','$,#1'), ('23180','28790','15952','last','$,#2'), ('23181','28790','15952','last','$'), ('23182','32165','17353','last','$,#1'), ('23183','32165','17353','last','$,#2'), ('23184','32165','17353','last','$'), ('23185','35068','18960','last','$'), ('23186','35072','18961','last','$'), ('23187','35072','18961','last','$,#2'), ('23188','35075','18962','find','$,,"like","invalid"'), ('23189','35101','18963','max','$,#3'), ('23190','35079','18964','min','$,#3'), ('23191','30547','16745','last','$,#1'), ('23192','30547','16745','last','$,#2'), ('23193','30547','16745','last','$'), ('23194','30598','16747','last','$,#1'), ('23195','30598','16747','last','$,#2'), ('23196','30598','16747','last','$'), ('23197','30943','16890','last','$,#1'), ('23198','30943','16890','last','$,#2'), ('23199','30943','16890','last','$'), ('23200','30937','16898','last','$,#1'), ('23201','30937','16898','last','$,#2'), ('23202','30937','16898','last','$'), ('23203','32607','17456','last','$,#1'), ('23204','32607','17456','last','$,#2'), ('23205','32607','17456','last','$'), ('23206','30192','16645','last','$,#1'), ('23207','30192','16645','last','$,#2'), ('23208','30192','16645','last','$'), ('23209','30203','16652','count','$,#5,"eq","DOWN"'), ('23210','30227','16660','count','$,#5,"eq","DOWN"'), ('23211','35125','18965','find','$,#3,"regexp","(?:L[4-7]OK|^$)"'), ('23212','30235','16662','last','$,#1'), ('23213','30235','16662','last','$,#2'), ('23214','30235','16662','last','$'), ('23215','30246','16669','count','$,#5,"eq","DOWN"'), ('23216','30270','16677','count','$,#5,"eq","DOWN"'), ('23217','35150','18966','find','$,#3,"regexp","(?:L[4-7]OK|^$)"'), ('23218','31008','16908','last','$,#1'), ('23219','31008','16908','last','$,#2'), ('23220','31050','16916','last','$,#1'), ('23221','31050','16916','last','$,#2'), ('23222','33464','17961','last','$,#1'), ('23223','33464','17961','last','$,#2'), ('23224','33464','17961','last','$'), ('23225','32698','17494','last','$,#1'), ('23226','32698','17494','last','$,#2'), ('23227','32698','17494','last','$'), ('23228','30636','16755','last','$,#1'), ('23229','30636','16755','last','$,#2'), ('23230','30636','16755','last','$'), ('23231','28820','15958','last','$,#1'), ('23232','28820','15958','last','$,#2'), ('23233','28820','15958','last','$'), ('23234','28833','15963','last','$,#1'), ('23235','28833','15963','last','$,#2'), ('23236','28833','15963','last','$'), ('23237','35168','18967','min','$,5m'), ('23238','35174','18968','last','$'), ('23239','35176','18969','nodata','$,30m'), ('23240','35176','18970','last','$'), ('23241','35171','18971','last','$,#1'), ('23242','35171','18971','last','$,#2'), ('23243','35171','18971','last','$'), ('23244','35213','18972','sum','$,5m'), ('23245','35211','18972','sum','$,5m'), ('23246','35212','18973','sum','$,5m'), ('23247','35211','18973','sum','$,5m'), ('23248','35208','18974','find','$,,"like","up"'), ('23249','35208','18974','find','$,,"like","down"'), ('23250','35258','18975','find','$,,"like","up"'), ('23251','35258','18975','find','$,,"like","down"'), ('23252','31586','17091','last','$,#1'), ('23253','31586','17091','last','$,#2'), ('23254','31578','17095','last','$,#1'), ('23255','31578','17095','last','$,#2'), ('23256','31578','17095','last','$'), ('23257','31605','17099','last','$,#1'), ('23258','31605','17099','last','$,#2'), ('23259','31611','17103','last','$,#1'), ('23260','31611','17103','last','$,#2'), ('23261','31611','17103','last','$'), ('23262','30025','16445','last','$,#1'), ('23263','30025','16445','last','$,#2'), ('23264','30025','16445','last','$'), ('23265','30045','16450','last','$,#1'), ('23266','30045','16450','last','$,#2'), ('23267','30045','16450','last','$'), ('23268','33636','18030','last','$,#1'), ('23269','33636','18030','last','$,#2'), ('23270','32292','17373','last','$,#1'), ('23271','32292','17373','last','$,#2'), ('23272','32292','17373','last','$'), ('23273','35266','18976','last','$'), ('23274','35269','18977','last','$'), ('23275','28511','17499','last','$,#1'), ('23276','28511','17499','last','$,#2'), ('23277','28511','17499','last','$'), ('23278','32788','17506','last','$,#1'), ('23279','32788','17506','last','$,#2'), ('23280','32788','17506','last','$'), ('23281','33655','18032','last','$,#1'), ('23282','33655','18032','last','$,#2'), ('23283','33655','18032','last','$'), ('23284','34941','18911','last','$,#1'), ('23285','34941','18911','last','$,#2'), ('23286','34941','18911','last','$'), ('23287','34947','18912','last','$,#1'), ('23288','34947','18912','last','$,#2'), ('23289','34947','18912','last','$'), ('23290','34948','18913','last','$,#1'), ('23291','34948','18913','last','$,#2'), ('23292','34948','18913','last','$'), ('23293','34962','18916','last','$,#1'), ('23294','34962','18916','last','$,#2'), ('23295','34962','18916','last','$'), ('23296','34974','18919','last','$,#1'), ('23297','34974','18919','last','$,#2'), ('23298','34974','18919','last','$'), ('23305','35273','18980','last','$,#1'), ('23306','35273','18980','last','$,#2'), ('23307','35273','18980','last','$'), ('23310','35276','18983','last','$,#1'), ('23311','35276','18983','last','$,#2'), ('23312','35276','18983','last','$'), ('23314','31053','16919','last','$,#1'), ('23315','31053','16919','last','$,#2'), ('23316','31053','16919','last','$'), ('23319','32975','17523','last','$,#1'), ('23320','32975','17523','last','$,#2'), ('23321','32975','17523','last','$'), ('23322','32978','17526','last','$,#1'), ('23323','32978','17526','last','$,#2'), ('23324','32978','17526','last','$'), ('23325','33508','17968','last','$,#1'), ('23326','33508','17968','last','$,#2'), ('23327','33508','17968','last','$'), ('23328','33499','17970','last','$,#1'), ('23329','33499','17970','last','$,#2'), ('23330','33499','17970','last','$'), ('23331','33524','17972','last','$,#1'), ('23332','33524','17972','last','$,#2'), ('23333','33525','17972','last','$,#1'), ('23334','33525','17972','last','$,#2'), ('23335','33526','17972','last','$,#1'), ('23336','33526','17972','last','$,#2'), ('23337','33528','17976','last','$,#1'), ('23338','33528','17976','last','$,#2'), ('23339','33527','17976','last','$,#1'), ('23340','33527','17976','last','$,#2'), ('23341','33538','17976','last','$,#1'), ('23342','33538','17976','last','$,#2'), ('23343','33540','17976','last','$,#1'), ('23344','33540','17976','last','$,#2'), ('23345','33539','17976','last','$,#1'), ('23346','33539','17976','last','$,#2'), ('23347','31052','16918','last','$,#1'), ('23348','31052','16918','last','$,#2'), ('23349','31052','16918','last','$'), ('23350','22933','13368','last','$,#1'), ('23351','22933','13368','last','$,#2'), ('23352','22938','13370','last','$,#1'), ('23353','22938','13370','last','$,#2'), ('23354','22941','13372','last','$,#1'), ('23355','22941','13372','last','$,#2'), ('23356','22893','13352','last','$,#1'), ('23357','22893','13352','last','$,#2'), ('23358','22898','13354','last','$,#1'), ('23359','22898','13354','last','$,#2'), ('23360','22901','13356','last','$,#1'), ('23361','22901','13356','last','$,#2'), ('23362','22973','13384','last','$,#1'), ('23363','22973','13384','last','$,#2'), ('23364','22978','13386','last','$,#1'), ('23365','22978','13386','last','$,#2'), ('23366','22981','13388','last','$,#1'), ('23367','22981','13388','last','$,#2'), ('23368','23053','13416','last','$,#1'), ('23369','23053','13416','last','$,#2'), ('23370','23058','13418','last','$,#1'), ('23371','23058','13418','last','$,#2'), ('23372','23061','13420','last','$,#1'), ('23373','23061','13420','last','$,#2'), ('23374','22853','13336','last','$,#1'), ('23375','22853','13336','last','$,#2'), ('23376','22858','13338','last','$,#1'), ('23377','22858','13338','last','$,#2'), ('23378','22861','13340','last','$,#1'), ('23379','22861','13340','last','$,#2'), ('23380','23013','13400','last','$,#1'), ('23381','23013','13400','last','$,#2'), ('23382','23018','13402','last','$,#1'), ('23383','23018','13402','last','$,#2'), ('23384','23021','13404','last','$,#1'), ('23385','23021','13404','last','$,#2'), ('23386','33062','17539','last','$,#1'), ('23387','33062','17539','last','$,#2'), ('23388','33062','17539','last','$'), ('23389','30829','16831','last','$,#1'), ('23390','30829','16831','last','$,#2'), ('23391','30829','16831','last','$'), ('23392','30822','16834','last','$,#1'), ('23393','30822','16834','last','$,#2'), ('23394','30822','16834','last','$'), ('23395','35300','18986','min','$,5m'), ('23396','35291','18986','last','$'), ('23397','35300','18987','min','$,5m'), ('23398','35291','18987','last','$'), ('23399','35296','18988','min','$,5m'), ('23400','35295','18988','last','$'), ('23401','35296','18989','min','$,5m'), ('23402','35295','18989','last','$'), ('23403','35293','18990','min','$,5m'), ('23404','35298','18991','min','$,5m'), ('23405','35303','18992','min','$,5m'), ('23406','35303','18993','min','$,5m'), ('23407','35305','18994','min','$,15m'), ('23408','35306','18995','min','$,15m'), ('23409','35315','18996','last','$'), ('23410','35312','18996','last','$'), ('23411','35315','18997','change','$'), ('23412','35315','18998','change','$'), ('23413','35316','18999','last','$,#1'), ('23414','35316','18999','last','$,#2'), ('23415','35316','18999','last','$'), ('23416','35318','19000','nodata','$,10m'), ('23417','35318','19001','last','$'), ('23418','35323','19002','last','$,#1'), ('23419','35323','19002','last','$,#2'), ('23420','35323','19002','last','$'), ('23421','35336','19003','min','$,5m'), ('23422','35343','19003','max','$,5m'), ('23423','35337','19004','last','$,#1'), ('23424','35337','19004','last','$,#2'), ('23425','35337','19004','last','$'), ('23426','35338','19005','max','$,30m'), ('23427','35343','19006','max','$,30m'), ('23428','35348','19007','min','$,5m'), ('23429','35354','19008','last','$'), ('23430','35357','19008','last','$'), ('23431','35356','19009','min','$,5m'), ('23432','35355','19009','max','$,5m'), ('23433','35356','19010','min','$,5m'), ('23434','35355','19010','max','$,5m'), ('23435','33578','17990','last','$,#1'), ('23436','33578','17990','last','$,#2'), ('23437','33578','17990','last','$'), ('23438','33585','17993','last','$,#1'), ('23439','33585','17993','last','$,#2'), ('23440','33585','17993','last','$'), ('23441','33599','17995','last','$,#1'), ('23442','33599','17995','last','$,#2'), ('23443','33599','17995','last','$'), ('23444','33807','18227','last','$,#1'), ('23445','33807','18227','last','$,#2'), ('23446','33807','18227','last','$'), ('23447','33852','19011','last','$,#1'), ('23448','33852','19011','last','$,#2'), ('23449','33919','18239','last','$,#1'), ('23450','33919','18239','last','$,#2'), ('23451','33919','18239','last','$'), ('23452','31085','16941','last','$,#1'), ('23453','31085','16941','last','$,#2'), ('23454','31085','16941','last','$'), ('23455','30431','16726','last','$,#1'), ('23456','30431','16726','last','$,#2'), ('23457','30431','16726','last','$'), ('23458','30637','16762','last','$,#1'), ('23459','30637','16762','last','$,#2'), ('23460','30637','16762','last','$'), ('23461','30480','16733','last','$,#1'), ('23462','30480','16733','last','$,#2'), ('23463','30480','16733','last','$'), ('23464','31748','17177','last','$,#1'), ('23465','31748','17177','last','$,#2'), ('23466','31748','17177','last','$'), ('23467','31749','17178','last','$,#1'), ('23468','31749','17178','last','$,#2'), ('23469','31749','17178','last','$'), ('23470','31760','17188','last','$,#1'), ('23471','31760','17188','last','$,#2'), ('23472','31760','17188','last','$'), ('23481','31244','16989','last','$,#1'), ('23482','31244','16989','last','$,#2'), ('23483','31244','16989','last','$'), ('23484','31245','16990','last','$,#1'), ('23485','31245','16990','last','$,#2'), ('23486','31245','16990','last','$'), ('23487','31189','16999','last','$,#1'), ('23488','31189','16999','last','$,#2'), ('23489','31189','16999','last','$'), ('23498','32373','17393','last','$,#1'), ('23499','32373','17393','last','$,#2'), ('23500','32373','17393','last','$'), ('23501','32378','17400','last','$,#1'), ('23502','32378','17400','last','$,#2'), ('23503','32378','17400','last','$'), ('23504','30275','16682','last','$,#1'), ('23505','30275','16682','last','$,#2'), ('23506','30275','16682','last','$'), ('23507','30306','16688','last','$,#1'), ('23508','30306','16688','last','$,#2'), ('23509','30286','16689','last','$,#1'), ('23510','30286','16689','last','$,#2'), ('23511','30286','16689','last','$'), ('23512','30283','16690','last','$,#1'), ('23513','30283','16690','last','$,#2'), ('23514','30283','16690','last','$'), ('23515','34341','18551','last','$,#1'), ('23516','34341','18551','last','$,#2'), ('23517','34341','18551','last','$'), ('23518','34398','18569','last','$,#1'), ('23519','34398','18569','last','$,#2'), ('23520','34398','18569','last','$'), ('23707','30086','16492','last','$,#1'), ('23708','30086','16492','last','$,#2'), ('23709','30086','16492','last','$'), ('23710','27214','14322','last','$,#1'), ('23711','27214','14322','last','$,#2'), ('23712','27214','14322','last','$'), ('23713','28328','15718','last','$,#1'), ('23714','28328','15718','last','$,#2'), ('23715','28328','15718','last','$'), ('23716','27236','14337','last','$,#1'), ('23717','27236','14337','last','$,#2'), ('23718','27236','14337','last','$'), ('23719','27237','14336','last','$,#1'), ('23720','27237','14336','last','$,#2'), ('23721','27237','14336','last','$'), ('23722','27295','14364','last','$,#1'), ('23723','27295','14364','last','$,#2'), ('23724','27295','14364','last','$'), ('23725','27296','14363','last','$,#1'), ('23726','27296','14363','last','$,#2'), ('23727','27296','14363','last','$'), ('23728','27297','14365','last','$,#1'), ('23729','27297','14365','last','$,#2'), ('23730','27297','14365','last','$'), ('23731','27320','14383','last','$,#1'), ('23732','27320','14383','last','$,#2'), ('23733','27320','14383','last','$'), ('23734','35362','19012','last','$'), ('23735','35363','19013','max','$,{$SNMP.TIMEOUT}'), ('23736','35369','19014','min','$,5m'), ('23737','35372','19015','min','$,5m'), ('23738','35382','19016','last','$'), ('23739','35382','19016','last','$,#1'), ('23740','35382','19016','last','$,#2'), ('23741','35394','19017','last','$,#1'), ('23742','35394','19017','last','$,#2'), ('23743','35394','19017','last','$'), ('23744','33951','18301','last','$,#1'), ('23745','33951','18301','last','$,#2'), ('23746','33951','18301','last','$'), ('23747','33953','18302','last','$,#1'), ('23748','33953','18302','last','$,#2'), ('23749','33953','18302','last','$'), ('23750','33955','18303','last','$,#1'), ('23751','33955','18303','last','$,#2'), ('23752','33955','18303','last','$'), ('23753','33967','18307','last','$,#1'), ('23754','33967','18307','last','$,#2'), ('23755','33967','18307','last','$'), ('23756','33992','18328','last','$,#1'), ('23757','33992','18328','last','$,#2'), ('23758','33992','18328','last','$'), ('23759','33994','18329','last','$,#1'), ('23760','33994','18329','last','$,#2'), ('23761','33994','18329','last','$'), ('23762','33996','18330','last','$,#1'), ('23763','33996','18330','last','$,#2'), ('23764','33996','18330','last','$'), ('23765','34008','18334','last','$,#1'), ('23766','34008','18334','last','$,#2'), ('23767','34008','18334','last','$'), ('23768','34033','18355','last','$,#1'), ('23769','34033','18355','last','$,#2'), ('23770','34033','18355','last','$'), ('23771','34035','18356','last','$,#1'), ('23772','34035','18356','last','$,#2'), ('23773','34035','18356','last','$'), ('23774','34037','18357','last','$,#1'), ('23775','34037','18357','last','$,#2'), ('23776','34037','18357','last','$'), ('23777','34049','18361','last','$,#1'), ('23778','34049','18361','last','$,#2'), ('23779','34049','18361','last','$'), ('23780','34074','18382','last','$,#1'), ('23781','34074','18382','last','$,#2'), ('23782','34074','18382','last','$'), ('23783','34076','18383','last','$,#1'), ('23784','34076','18383','last','$,#2'), ('23785','34076','18383','last','$'), ('23786','34078','18384','last','$,#1'), ('23787','34078','18384','last','$,#2'), ('23788','34078','18384','last','$'), ('23789','34090','18388','last','$,#1'), ('23790','34090','18388','last','$,#2'), ('23791','34090','18388','last','$'), ('23792','34115','18409','last','$,#1'), ('23793','34115','18409','last','$,#2'), ('23794','34115','18409','last','$'), ('23795','34117','18410','last','$,#1'), ('23796','34117','18410','last','$,#2'), ('23797','34117','18410','last','$'), ('23798','34119','18411','last','$,#1'), ('23799','34119','18411','last','$,#2'), ('23800','34119','18411','last','$'), ('23801','34131','18415','last','$,#1'), ('23802','34131','18415','last','$,#2'), ('23803','34131','18415','last','$'), ('23840','27483','14463','last','$,#1'), ('23841','27483','14463','last','$,#2'), ('23842','27483','14463','last','$'), ('23843','27481','16523','last','$,#1'), ('23844','27481','16523','last','$,#2'), ('23845','27481','16523','last','$'), ('23846','27509','14474','last','$,#1'), ('23847','27509','14474','last','$,#2'), ('23848','27509','14474','last','$'), ('23849','30106','16525','last','$,#1'), ('23850','30106','16525','last','$,#2'), ('23851','30106','16525','last','$'), ('23852','27544','14493','last','$,#1'), ('23853','27544','14493','last','$,#2'), ('23854','27544','14493','last','$'), ('23855','27545','14492','last','$,#1'), ('23856','27545','14492','last','$,#2'), ('23857','27545','14492','last','$'), ('23858','27579','14515','last','$,#1'), ('23859','27579','14515','last','$,#2'), ('23860','27579','14515','last','$'), ('23861','27582','14514','last','$,#1'), ('23862','27582','14514','last','$,#2'), ('23863','27582','14514','last','$'), ('23864','30109','16530','last','$,#1'), ('23865','30109','16530','last','$,#2'), ('23866','30109','16530','last','$'), ('23870','35408','19019','last','$'), ('23871','35423','19020','max','$,{$SNMP.TIMEOUT}'), ('23873','35444','19022','last','$'), ('23874','35445','19023','last','$'), ('23875','35452','19024','last','$'), ('23882','35495','19028','last','$'), ('23883','35495','19028','last','$,#2'), ('23884','35501','19028','last','$'), ('23885','35501','19028','last','$,#2'), ('23886','27677','14557','last','$,#1'), ('23887','27677','14557','last','$,#2'), ('23888','27677','14557','last','$'), ('23889','27678','14556','last','$,#1'), ('23890','27678','14556','last','$,#2'), ('23891','27678','14556','last','$'), ('23892','27675','16532','last','$,#1'), ('23893','27675','16532','last','$,#2'), ('23894','27675','16532','last','$'), ('23895','28141','14913','last','$,#1'), ('23896','28141','14913','last','$,#2'), ('23897','28141','14913','last','$'), ('23898','28142','14912','last','$,#1'), ('23899','28142','14912','last','$,#2'), ('23900','28142','14912','last','$'), ('23901','27750','14592','last','$,#1'), ('23902','27750','14592','last','$,#2'), ('23903','27750','14592','last','$'), ('23904','27749','16538','last','$,#1'), ('23905','27749','16538','last','$,#2'), ('23906','27749','16538','last','$'), ('23907','27777','14603','last','$,#1'), ('23908','27777','14603','last','$,#2'), ('23909','27777','14603','last','$'), ('23910','27785','14607','last','$,#1'), ('23911','27785','14607','last','$,#2'), ('23912','27785','14607','last','$'), ('23913','27813','14621','last','$,#1'), ('23914','27813','14621','last','$,#2'), ('23915','27813','14621','last','$'), ('23916','30117','16540','last','$,#1'), ('23917','30117','16540','last','$,#2'), ('23918','30117','16540','last','$'), ('23919','34157','18437','last','$,#1'), ('23920','34157','18437','last','$,#2'), ('23921','34157','18437','last','$'), ('23922','28204','14937','last','$,#1'), ('23923','28204','14937','last','$,#2'), ('23924','28204','14937','last','$'), ('23925','34171','18444','last','$'), ('23926','34171','18444','last','$,#1'), ('23927','34171','18444','last','$,#2'), ('23928','27895','14662','last','$,#1'), ('23929','27895','14662','last','$,#2'), ('23930','27895','14662','last','$'), ('23931','27894','14661','last','$,#1'), ('23932','27894','14661','last','$,#2'), ('23933','27894','14661','last','$'), ('23934','30119','16543','last','$,#1'), ('23935','30119','16543','last','$,#2'), ('23936','30119','16543','last','$'), ('23937','27931','14680','last','$,#1'), ('23938','27931','14680','last','$,#2'), ('23939','27931','14680','last','$'), ('23940','30121','16549','last','$,#1'), ('23941','30121','16549','last','$,#2'), ('23942','30121','16549','last','$'), ('23943','27967','14699','last','$,#1'), ('23944','27967','14699','last','$,#2'), ('23945','27967','14699','last','$'), ('23946','27970','14698','last','$,#1'), ('23947','27970','14698','last','$,#2'), ('23948','27970','14698','last','$'), ('23949','30125','16555','last','$,#1'), ('23950','30125','16555','last','$,#2'), ('23951','30125','16555','last','$'), ('23952','27998','14710','last','$,#1'), ('23953','27998','14710','last','$,#2'), ('23954','27998','14710','last','$'), ('23955','27999','14709','last','$,#1'), ('23956','27999','14709','last','$,#2'), ('23957','27999','14709','last','$'), ('23958','28027','14724','last','$,#1'), ('23959','28027','14724','last','$,#2'), ('23960','28027','14724','last','$'), ('23961','35532','19029','max','$,{$SNMP.TIMEOUT}'), ('23962','35534','19030','last','$,#1'), ('23963','35534','19030','last','$,#2'), ('23964','35534','19030','last','$'), ('23965','35537','19031','last','$'), ('23966','35539','19032','last','$,#1'), ('23967','35539','19032','last','$,#2'), ('23968','35539','19032','last','$'), ('23969','35540','19033','find','$,,"like","moduleNoDefect"'), ('23971','35547','19035','min','$,5m'), ('23972','35549','19036','min','$,5m'), ('23973','35550','19037','min','$,5m'), ('23974','35552','19038','min','$,5m'), ('23975','35555','19039','last','$'), ('23976','35555','19039','last','$,#1'), ('23977','35555','19039','last','$,#2'), ('23978','35560','19040','last','$'), ('23979','35560','19040','last','$,#1'), ('23980','35560','19040','last','$,#2'), ('23981','35562','19041','last','$'), ('23982','35563','19042','last','$'), ('23983','35564','19043','max','$,{$SNMP.TIMEOUT}'), ('23984','35566','19044','min','$,5m'), ('23985','35567','19045','last','$,#1'), ('23986','35567','19045','last','$,#2'), ('23987','35567','19045','last','$'), ('23988','35570','19046','last','$'), ('23989','35572','19047','last','$,#1'), ('23990','35572','19047','last','$,#2'), ('23991','35572','19047','last','$'), ('23993','35580','19049','min','$,5m'), ('23994','35588','19050','last','$'), ('23995','35588','19050','last','$,#1'), ('23996','35588','19050','last','$,#2'), ('23997','35598','19051','last','$'), ('23998','35598','19052','last','$'), ('23999','35602','19053','last','$,#1'), ('24000','35602','19053','last','$,#2'), ('24001','35602','19053','last','$'), ('24002','35606','19054','last','$'), ('24003','35607','19055','last','$'), ('24004','35608','19056','max','$,{$SNMP.TIMEOUT}'), ('24005','35610','19057','min','$,5m'), ('24006','35611','19058','last','$,#1'), ('24007','35611','19058','last','$,#2'), ('24008','35611','19058','last','$'), ('24009','35614','19059','last','$'), ('24010','35616','19060','last','$,#1'), ('24011','35616','19060','last','$,#2'), ('24012','35616','19060','last','$'), ('24014','35622','19062','last','$'), ('24015','35630','19063','last','$'), ('24016','35630','19063','last','$,#1'), ('24017','35630','19063','last','$,#2'), ('24018','35640','19064','last','$'), ('24019','35641','19065','last','$'), ('24020','35642','19066','max','$,{$SNMP.TIMEOUT}'), ('24021','35646','19067','last','$'), ('24023','35658','19069','min','$,5m'), ('24024','35659','19070','min','$,5m'), ('24025','35660','19071','last','$'), ('24026','35661','19072','min','$,5m'), ('24027','35671','19073','min','$,5m'), ('24028','35677','19074','min','$,5m'), ('24029','35676','19075','min','$,5m'), ('24030','35674','19076','min','$,5m'), ('24031','35667','19077','last','$'), ('24032','35667','19077','last','$,#1'), ('24033','35667','19077','last','$,#2'), ('24034','35689','19078','last','$'), ('24035','35689','19078','last','$,#1'), ('24036','35689','19078','last','$,#2'), ('24037','35695','19079','find','$,,"like","moduleNoDefect"'), ('24038','35696','19080','last','$,#1'), ('24039','35696','19080','last','$,#2'), ('24040','35696','19080','last','$'), ('24041','35698','19081','last','$,#1'), ('24042','35698','19081','last','$,#2'), ('24043','35698','19081','last','$'), ('24044','35699','19082','last','$,#1'), ('24045','35699','19082','last','$,#2'), ('24046','35699','19082','last','$'), ('24047','35700','19083','last','$,#1'), ('24048','35700','19083','last','$,#2'), ('24049','35700','19083','last','$'), ('24050','35703','19084','last','$,#1'), ('24051','35703','19084','last','$,#2'), ('24052','35703','19084','last','$'), ('24053','35706','19085','last','$'), ('24054','35707','19086','last','$'), ('24055','35708','19087','last','$'), ('24056','35709','19088','max','$,{$SNMP.TIMEOUT}'), ('24057','35713','19089','last','$'), ('24059','35725','19091','min','$,5m'), ('24060','35726','19092','min','$,5m'), ('24061','35727','19093','last','$'), ('24062','35728','19094','min','$,5m'), ('24063','35738','19095','min','$,5m'), ('24064','35744','19096','min','$,5m'), ('24065','35743','19097','min','$,5m'), ('24066','35741','19098','min','$,5m'), ('24067','35734','19099','last','$'), ('24068','35734','19099','last','$,#1'), ('24069','35734','19099','last','$,#2'), ('24070','35756','19100','last','$'), ('24071','35756','19100','last','$,#1'), ('24072','35756','19100','last','$,#2'), ('24073','35762','19101','find','$,,"like","moduleNoDefect"'), ('24074','35763','19102','last','$,#1'), ('24075','35763','19102','last','$,#2'), ('24076','35763','19102','last','$'), ('24077','35765','19103','last','$,#1'), ('24078','35765','19103','last','$,#2'), ('24079','35765','19103','last','$'), ('24080','35766','19104','last','$,#1'), ('24081','35766','19104','last','$,#2'), ('24082','35766','19104','last','$'), ('24083','35767','19105','last','$,#1'), ('24084','35767','19105','last','$,#2'), ('24085','35767','19105','last','$'), ('24086','35770','19106','last','$,#1'), ('24087','35770','19106','last','$,#2'), ('24088','35770','19106','last','$'), ('24089','35773','19107','last','$'), ('24090','35774','19108','last','$'), ('24091','35775','19109','last','$'), ('24092','35776','19110','max','$,{$SNMP.TIMEOUT}'), ('24093','35778','19111','last','$,#1'), ('24094','35778','19111','last','$,#2'), ('24095','35778','19111','last','$'), ('24096','35781','19112','last','$'), ('24097','35783','19113','last','$,#1'), ('24098','35783','19113','last','$,#2'), ('24099','35783','19113','last','$'), ('24100','35784','19114','find','$,,"like","moduleNoDefect"'), ('24102','35791','19116','last','$'), ('24103','35793','19117','min','$,5m'), ('24104','35795','19118','min','$,5m'), ('24105','35796','19119','min','$,5m'), ('24106','35798','19120','min','$,5m'), ('24107','35801','19121','last','$'), ('24108','35801','19121','last','$,#1'), ('24109','35801','19121','last','$,#2'), ('24110','35806','19122','last','$'), ('24111','35806','19122','last','$,#1'), ('24112','35806','19122','last','$,#2'), ('24113','35808','19123','last','$'), ('24114','35809','19124','last','$'), ('24115','35810','19125','max','$,{$SNMP.TIMEOUT}'), ('24116','35812','19126','min','$,5m'), ('24117','35813','19127','last','$,#1'), ('24118','35813','19127','last','$,#2'), ('24119','35813','19127','last','$'), ('24120','35816','19128','last','$'), ('24121','35818','19129','last','$,#1'), ('24122','35818','19129','last','$,#2'), ('24123','35818','19129','last','$'), ('24125','35830','19131','last','$'), ('24126','35830','19131','last','$,#1'), ('24127','35830','19131','last','$,#2'), ('24128','35840','19132','last','$'), ('24129','35840','19133','last','$'), ('24130','35844','19134','last','$,#1'), ('24131','35844','19134','last','$,#2'), ('24132','35844','19134','last','$'), ('24133','35848','19135','max','$,{$SNMP.TIMEOUT}'), ('24134','35850','19136','min','$,5m'), ('24135','35851','19137','last','$,#1'), ('24136','35851','19137','last','$,#2'), ('24137','35851','19137','last','$'), ('24138','35854','19138','last','$'), ('24139','35856','19139','last','$,#1'), ('24140','35856','19139','last','$,#2'), ('24141','35856','19139','last','$'), ('24143','35864','19141','min','$,5m'), ('24144','35872','19142','last','$'), ('24145','35872','19142','last','$,#1'), ('24146','35872','19142','last','$,#2'), ('24147','35882','19143','last','$'), ('24148','35882','19144','last','$'), ('24149','35886','19145','last','$,#1'), ('24150','35886','19145','last','$,#2'), ('24151','35886','19145','last','$'), ('24152','35890','19146','last','$'), ('24153','35891','19147','last','$'), ('24154','35892','19148','max','$,{$SNMP.TIMEOUT}'), ('24155','35894','19149','min','$,5m'), ('24156','35895','19150','last','$,#1'), ('24157','35895','19150','last','$,#2'), ('24158','35895','19150','last','$'), ('24159','35898','19151','last','$'), ('24160','35900','19152','last','$,#1'), ('24161','35900','19152','last','$,#2'), ('24162','35900','19152','last','$'), ('24164','35908','19154','min','$,5m'), ('24165','35916','19155','last','$'), ('24166','35916','19155','last','$,#1'), ('24167','35916','19155','last','$,#2'), ('24168','35926','19156','last','$'), ('24169','35926','19157','last','$'), ('24170','35930','19158','last','$,#1'), ('24171','35930','19158','last','$,#2'), ('24172','35930','19158','last','$'), ('24173','35934','19159','last','$'), ('24174','35935','19160','last','$'), ('24175','35936','19161','max','$,{$SNMP.TIMEOUT}'), ('24176','35938','19162','min','$,5m'), ('24177','35939','19163','last','$,#1'), ('24178','35939','19163','last','$,#2'), ('24179','35939','19163','last','$'), ('24180','35942','19164','last','$'), ('24181','35944','19165','last','$,#1'), ('24182','35944','19165','last','$,#2'), ('24183','35944','19165','last','$'), ('24185','35952','19167','last','$'), ('24186','35960','19168','last','$'), ('24187','35960','19168','last','$,#1'), ('24188','35960','19168','last','$,#2'), ('24189','35970','19169','last','$'), ('24190','35970','19170','last','$'), ('24191','35974','19171','last','$,#1'), ('24192','35974','19171','last','$,#2'), ('24193','35974','19171','last','$'), ('24194','35978','19172','last','$'), ('24195','35979','19173','last','$'), ('24196','35980','19174','max','$,{$SNMP.TIMEOUT}'), ('24197','35982','19175','min','$,5m'), ('24198','35983','19176','last','$,#1'), ('24199','35983','19176','last','$,#2'), ('24200','35983','19176','last','$'), ('24201','35986','19177','last','$'), ('24202','35988','19178','last','$,#1'), ('24203','35988','19178','last','$,#2'), ('24204','35988','19178','last','$'), ('24206','35996','19180','last','$'), ('24207','36004','19181','last','$'), ('24208','36004','19181','last','$,#1'), ('24209','36004','19181','last','$,#2'), ('24210','36014','19182','last','$'), ('24211','36014','19183','last','$'), ('24212','36018','19184','last','$,#1'), ('24213','36018','19184','last','$,#2'), ('24214','36018','19184','last','$'), ('24215','36022','19185','last','$'), ('24216','36023','19186','last','$'), ('24217','36024','19187','max','$,{$SNMP.TIMEOUT}'), ('24218','36026','19188','min','$,5m'), ('24219','36027','19189','last','$,#1'), ('24220','36027','19189','last','$,#2'), ('24221','36027','19189','last','$'), ('24222','36030','19190','min','$,5m'), ('24223','36031','19191','last','$'), ('24224','36033','19192','last','$,#1'), ('24225','36033','19192','last','$,#2'), ('24226','36033','19192','last','$'), ('24228','36041','19194','last','$'), ('24229','36049','19195','last','$'), ('24230','36049','19195','last','$,#1'), ('24231','36049','19195','last','$,#2'), ('24232','36059','19196','last','$'), ('24233','36059','19197','last','$'), ('24234','36063','19198','last','$,#1'), ('24235','36063','19198','last','$,#2'), ('24236','36063','19198','last','$'), ('24237','36067','19199','last','$'), ('24238','36068','19200','last','$'), ('24239','36069','19201','max','$,{$SNMP.TIMEOUT}'), ('24240','36071','19202','min','$,5m'), ('24241','36072','19203','last','$,#1'), ('24242','36072','19203','last','$,#2'), ('24243','36072','19203','last','$'), ('24244','36075','19204','min','$,5m'), ('24245','36076','19205','last','$'), ('24246','36078','19206','last','$,#1'), ('24247','36078','19206','last','$,#2'), ('24248','36078','19206','last','$'), ('24250','36086','19208','last','$'), ('24251','36094','19209','last','$'), ('24252','36094','19209','last','$,#1'), ('24253','36094','19209','last','$,#2'), ('24254','36104','19210','last','$'), ('24255','36104','19211','last','$'), ('24256','36108','19212','last','$,#1'), ('24257','36108','19212','last','$,#2'), ('24258','36108','19212','last','$'), ('24259','36112','19213','last','$'), ('24260','36113','19214','last','$'), ('24261','36114','19215','max','$,{$SNMP.TIMEOUT}'), ('24262','36116','19216','min','$,5m'), ('24263','36117','19217','last','$,#1'), ('24264','36117','19217','last','$,#2'), ('24265','36117','19217','last','$'), ('24266','36120','19218','last','$'), ('24267','36122','19219','last','$,#1'), ('24268','36122','19219','last','$,#2'), ('24269','36122','19219','last','$'), ('24271','36131','19221','last','$'), ('24272','36132','19222','min','$,5m'), ('24273','36140','19223','last','$'), ('24274','36140','19223','last','$,#1'), ('24275','36140','19223','last','$,#2'), ('24276','36150','19224','last','$'), ('24277','36150','19225','last','$'), ('24278','36154','19226','last','$,#1'), ('24279','36154','19226','last','$,#2'), ('24280','36154','19226','last','$'), ('24281','36158','19227','last','$'), ('24282','36159','19228','last','$'), ('24338','29414','16584','last','$,#1'), ('24339','29414','16584','last','$,#2'), ('24340','29414','16584','last','$'), ('24341','29428','16143','last','$,#1'), ('24342','29428','16143','last','$,#2'), ('24343','29428','16143','last','$'), ('24344','29444','16883','last','$'), ('24345','29444','16883','last','$,#1'), ('24346','29444','16883','last','$,#2'), ('24371','34456','18595','last','$,#1'), ('24372','34456','18595','last','$,#2'), ('24373','34456','18595','last','$'), ('24374','34504','18628','last','$,#1'), ('24375','34504','18628','last','$,#2'), ('24376','34504','18628','last','$'), ('24377','34552','18661','last','$,#1'), ('24378','34552','18661','last','$,#2'), ('24379','34552','18661','last','$'), ('24380','34600','18694','last','$,#1'), ('24381','34600','18694','last','$,#2'), ('24382','34600','18694','last','$'), ('24383','34648','18727','last','$,#1'), ('24384','34648','18727','last','$,#2'), ('24385','34648','18727','last','$'), ('24386','35021','18946','last','$,#1'), ('24387','35021','18946','last','$,#2'), ('24388','35021','18946','last','$'), ('24389','34744','18793','last','$,#1'), ('24390','34744','18793','last','$,#2'), ('24391','34744','18793','last','$'), ('24392','34788','18808','last','$,#1'), ('24393','34788','18808','last','$,#2'), ('24394','34788','18808','last','$'), ('24395','34798','18830','last','$,#1'), ('24396','34798','18830','last','$,#2'), ('24397','34798','18830','last','$'), ('24398','34846','18863','last','$,#1'), ('24399','34846','18863','last','$,#2'), ('24400','34846','18863','last','$'), ('24401','34894','18896','last','$,#1'), ('24402','34894','18896','last','$,#2'), ('24403','34894','18896','last','$'), ('24404','33694','18183','last','$,#1'), ('24405','33694','18183','last','$,#2'), ('24406','33694','18183','last','$'), ('24407','33708','18189','last','$,#1'), ('24408','33708','18189','last','$,#2'), ('24409','34248','18508','last','$,#1'), ('24410','34248','18508','last','$,#2'), ('24411','34248','18508','last','$'), ('24412','34273','18509','last','$,#1'), ('24413','34273','18509','last','$,#2'), ('24414','34273','18509','last','$'), ('24415','34274','18510','last','$,#1'), ('24416','34274','18510','last','$,#2'), ('24417','34274','18510','last','$'), ('24418','34275','18511','last','$,#1'), ('24419','34275','18511','last','$,#2'), ('24420','34275','18511','last','$'), ('24421','34278','18512','last','$,#1'), ('24422','34278','18512','last','$,#2'), ('24423','34278','18512','last','$'), ('24424','34279','18513','last','$,#1'), ('24425','34279','18513','last','$,#2'), ('24426','34279','18513','last','$'), ('24427','34280','18514','last','$,#1'), ('24428','34280','18514','last','$,#2'), ('24429','34280','18514','last','$'), ('24430','34286','18518','last','$,#1'), ('24431','34286','18518','last','$,#2'), ('24432','34286','18518','last','$'), ('24433','34288','18519','last','$,#1'), ('24434','34288','18519','last','$,#2'), ('24435','34288','18519','last','$'), ('24436','34290','18520','last','$,#1'), ('24437','34290','18520','last','$,#2'), ('24438','34290','18520','last','$'), ('24439','34310','18521','last','$,#1'), ('24440','34310','18521','last','$,#2'), ('24441','34310','18521','last','$'), ('24442','33348','17929','last','$'), ('24443','33349','17929','last','$,#1'), ('24444','33349','17929','last','$,#2'), ('24445','30688','16767','last','$,#1'), ('24446','30688','16767','last','$,#2'), ('24447','36163','19229','last','$,#1'), ('24448','36163','19229','last','$,#2'), ('24449','36163','19229','last','$'), ('24451','36167','19231','max','$,{$SNMP.TIMEOUT}'), ('24452','36178','19232','last','$'), ('24453','36178','19233','last','$'), ('24454','36180','19234','last','$'), ('24455','36180','19235','last','$'), ('24456','36180','19236','last','$'), ('24457','36181','19237','last','$'), ('24458','36181','19238','last','$'), ('24459','36185','19239','min','$,5m'), ('24460','36190','19239','min','$,5m'), ('24461','36194','19240','last','$'), ('24462','36194','19240','last','$,#1'), ('24463','36194','19240','last','$,#2'), ('24464','36198','19241','last','$,#1'), ('24465','36198','19241','last','$,#2'), ('24466','36198','19241','last','$'), ('24467','36200','19242','last','$'), ('24468','36200','19243','last','$'), ('24469','36201','19244','last','$'), ('24470','36201','19245','last','$'), ('24471','36202','19246','avg','$,5m'), ('24472','36202','19246','max','$,5m'), ('24473','36202','19247','avg','$,5m'), ('24474','36202','19247','max','$,5m'), ('24475','36203','19248','avg','$,5m'), ('24476','36203','19248','max','$,5m'), ('24477','36203','19249','avg','$,5m'), ('24478','36203','19249','max','$,5m'), ('24479','36204','19250','avg','$,5m'), ('24480','36204','19250','max','$,5m'), ('24481','36204','19251','avg','$,5m'), ('24482','36204','19251','max','$,5m'), ('24483','36205','19252','avg','$,5m'), ('24484','36205','19252','max','$,5m'), ('24485','36205','19253','avg','$,5m'), ('24486','36205','19253','max','$,5m'), ('24487','36206','19254','avg','$,5m'), ('24488','36206','19254','max','$,5m'), ('24489','36206','19255','avg','$,5m'), ('24490','36206','19255','max','$,5m'), ('24491','36208','19256','last','$,#1'), ('24492','36208','19256','last','$,#2'), ('24493','36208','19256','last','$'), ('24494','36209','19257','last','$'), ('24495','36209','19258','last','$'), ('24496','36212','19259','last','$'), ('24497','30074','16478','last','$,#1'), ('24498','30074','16478','last','$,#2'), ('24499','30074','16478','last','$'), ('24788','36544','19464','last','$,#1'), ('24789','36544','19464','last','$,#2'), ('24790','36544','19464','last','$'), ('24791','36546','19465','last','$,#1'), ('24792','36546','19465','last','$,#2'), ('24793','36546','19465','last','$'), ('24794','36549','19466','last','$'), ('24795','36549','19467','last','$'), ('24797','36552','19469','max','$,{$SNMP.TIMEOUT}'), ('24798','36567','19470','last','$'), ('24799','36567','19471','last','$'), ('24800','36568','19472','last','$'), ('24801','36568','19473','last','$'), ('24802','36568','19474','last','$'), ('24803','36570','19475','last','$'), ('24804','36570','19476','last','$'), ('24805','36571','19477','last','$'), ('24806','36571','19478','last','$'), ('24807','36572','19479','last','$'), ('24808','36572','19480','last','$'), ('24809','36575','19481','last','$,#1'), ('24810','36575','19481','last','$,#2'), ('24811','36575','19481','last','$'), ('24812','36577','19482','last','$'), ('24813','36578','19483','last','$'), ('24814','36578','19484','last','$'), ('24815','36579','19485','last','$'), ('24816','36579','19486','last','$'), ('24817','36580','19487','last','$'), ('24818','36580','19488','last','$'), ('24819','36580','19489','last','$'), ('24820','36582','19490','last','$'), ('24821','36582','19491','last','$'), ('24822','36582','19492','last','$'), ('24823','36584','19493','last','$'), ('24824','36584','19494','last','$'), ('24825','36584','19495','last','$'), ('24826','36587','19496','last','$'), ('24827','36587','19497','last','$'), ('24828','36587','19498','last','$'), ('24829','36589','19499','last','$'), ('24830','36589','19500','last','$'), ('24831','36589','19501','last','$'), ('24832','36591','19502','last','$'), ('24833','36591','19503','last','$'), ('24834','36591','19504','last','$'), ('24835','36593','19505','last','$'), ('24836','36593','19506','last','$'), ('24837','36593','19507','last','$'), ('24838','36597','19508','last','$'), ('24839','36597','19509','last','$'), ('24840','36601','19510','last','$,#1'), ('24841','36601','19510','last','$,#2'), ('24842','36601','19510','last','$'), ('24843','36603','19511','last','$,#1'), ('24844','36603','19511','last','$,#2'), ('24845','36603','19511','last','$'), ('24846','36606','19512','last','$'), ('24847','36606','19513','last','$'), ('24849','36609','19515','max','$,{$SNMP.TIMEOUT}'), ('24850','36624','19516','last','$'), ('24851','36624','19517','last','$'), ('24852','36625','19518','last','$'), ('24853','36625','19519','last','$'), ('24854','36625','19520','last','$'), ('24855','36627','19521','last','$'), ('24856','36627','19522','last','$'), ('24857','36628','19523','last','$'), ('24858','36628','19524','last','$'), ('24859','36629','19525','last','$'), ('24860','36629','19526','last','$'), ('24861','36632','19527','last','$,#1'), ('24862','36632','19527','last','$,#2'), ('24863','36632','19527','last','$'), ('24864','36634','19528','last','$'), ('24865','36635','19529','last','$'), ('24866','36635','19530','last','$'), ('24867','36636','19531','last','$'), ('24868','36636','19532','last','$'), ('24869','36637','19533','last','$'), ('24870','36637','19534','last','$'), ('24871','36637','19535','last','$'), ('24872','36639','19536','last','$'), ('24873','36639','19537','last','$'), ('24874','36639','19538','last','$'), ('24875','36641','19539','last','$'), ('24876','36641','19540','last','$'), ('24877','36641','19541','last','$'), ('24878','36644','19542','last','$'), ('24879','36644','19543','last','$'), ('24880','36644','19544','last','$'), ('24881','36646','19545','last','$'), ('24882','36646','19546','last','$'), ('24883','36646','19547','last','$'), ('24884','36648','19548','last','$'), ('24885','36648','19549','last','$'), ('24886','36648','19550','last','$'), ('24887','36650','19551','last','$'), ('24888','36650','19552','last','$'), ('24889','36650','19553','last','$'), ('24890','36654','19554','last','$'), ('24891','36654','19555','last','$'), ('24892','36658','19556','last','$,#1'), ('24893','36658','19556','last','$,#2'), ('24894','36658','19556','last','$'), ('24895','36660','19557','last','$,#1'), ('24896','36660','19557','last','$,#2'), ('24897','36660','19557','last','$'), ('24898','36663','19558','last','$'), ('24899','36663','19559','last','$'), ('24901','36666','19561','max','$,{$SNMP.TIMEOUT}'), ('24902','36681','19562','last','$'), ('24903','36681','19563','last','$'), ('24904','36682','19564','last','$'), ('24905','36682','19565','last','$'), ('24906','36682','19566','last','$'), ('24907','36684','19567','last','$'), ('24908','36684','19568','last','$'), ('24909','36685','19569','last','$'), ('24910','36685','19570','last','$'), ('24911','36686','19571','last','$'), ('24912','36686','19572','last','$'), ('24913','36689','19573','last','$,#1'), ('24914','36689','19573','last','$,#2'), ('24915','36689','19573','last','$'), ('24916','36691','19574','last','$'), ('24917','36692','19575','last','$'), ('24918','36692','19576','last','$'), ('24919','36693','19577','last','$'), ('24920','36693','19578','last','$'), ('24921','36694','19579','last','$'), ('24922','36694','19580','last','$'), ('24923','36694','19581','last','$'), ('24924','36696','19582','last','$'), ('24925','36696','19583','last','$'), ('24926','36696','19584','last','$'), ('24927','36698','19585','last','$'), ('24928','36698','19586','last','$'), ('24929','36698','19587','last','$'), ('24930','36701','19588','last','$'), ('24931','36701','19589','last','$'), ('24932','36701','19590','last','$'), ('24933','36703','19591','last','$'), ('24934','36703','19592','last','$'), ('24935','36703','19593','last','$'), ('24936','36705','19594','last','$'), ('24937','36705','19595','last','$'), ('24938','36705','19596','last','$'), ('24939','36707','19597','last','$'), ('24940','36707','19598','last','$'), ('24941','36707','19599','last','$'), ('24942','36711','19600','last','$'), ('24943','36711','19601','last','$'), ('24944','36715','19602','last','$,#1'), ('24945','36715','19602','last','$,#2'), ('24946','36715','19602','last','$'), ('24947','36717','19603','last','$,#1'), ('24948','36717','19603','last','$,#2'), ('24949','36717','19603','last','$'), ('24950','36720','19604','last','$'), ('24951','36720','19605','last','$'), ('24953','36723','19607','max','$,{$SNMP.TIMEOUT}'), ('24954','36738','19608','last','$'), ('24955','36738','19609','last','$'), ('24956','36739','19610','last','$'), ('24957','36739','19611','last','$'), ('24958','36739','19612','last','$'), ('24959','36741','19613','last','$'), ('24960','36741','19614','last','$'), ('24961','36742','19615','last','$'), ('24962','36742','19616','last','$'), ('24963','36743','19617','last','$'), ('24964','36743','19618','last','$'), ('24965','36746','19619','last','$,#1'), ('24966','36746','19619','last','$,#2'), ('24967','36746','19619','last','$'), ('24968','36748','19620','last','$'), ('24969','36749','19621','last','$'), ('24970','36749','19622','last','$'), ('24971','36750','19623','last','$'), ('24972','36750','19624','last','$'), ('24973','36751','19625','last','$'), ('24974','36751','19626','last','$'), ('24975','36751','19627','last','$'), ('24976','36753','19628','last','$'), ('24977','36753','19629','last','$'), ('24978','36753','19630','last','$'), ('24979','36755','19631','last','$'), ('24980','36755','19632','last','$'), ('24981','36755','19633','last','$'), ('24982','36758','19634','last','$'), ('24983','36758','19635','last','$'), ('24984','36758','19636','last','$'), ('24985','36760','19637','last','$'), ('24986','36760','19638','last','$'), ('24987','36760','19639','last','$'), ('24988','36762','19640','last','$'), ('24989','36762','19641','last','$'), ('24990','36762','19642','last','$'), ('24991','36764','19643','last','$'), ('24992','36764','19644','last','$'), ('24993','36764','19645','last','$'), ('24994','36768','19646','last','$'), ('24995','36768','19647','last','$'), ('24996','28391','15762','last','$,#1'), ('24997','28391','15762','last','$,#2'), ('24998','28391','15762','last','$'), ('24999','28419','15795','last','$,#1'), ('25000','28419','15795','last','$,#2'), ('25001','28419','15795','last','$'), ('25002','28467','15827','last','$,#1'), ('25003','28467','15827','last','$,#2'), ('25004','28467','15827','last','$'), ('25005','31786','17225','last','$,#1'), ('25006','31786','17225','last','$,#2'), ('25007','31786','17225','last','$'), ('25008','36771','19648','min','$,10m'), ('25009','36770','19649','min','$,10m'), ('25010','36769','19650','min','$,10m'), ('25011','36773','19651','nodata','$,30m'), ('25012','36773','19652','last','$'), ('25013','36782','19653','last','$'), ('25014','36794','19654','find','$,,"like","errored"'), ('25015','36796','19655','last','$'), ('25016','36805','19656','min','$,5m'), ('25017','36798','19657','last','$'), ('25018','36812','19658','last','$,#1'), ('25019','36812','19658','last','$,#2'), ('25020','36812','19658','last','$'), ('25021','36816','19659','min','$,5m'), ('25022','35414','19018','last','$,#1'), ('25023','35414','19018','last','$,#2'), ('25024','35414','19018','last','$'), ('25025','36823','19660','count','$,10m,"ne","3"'), ('25026','36823','19660','count','$,10m,"ne","4"'), ('25027','36822','19661','last','$'), ('25028','36822','19662','last','$'), ('25029','35478','19025','last','$'), ('25030','35480','19025','last','$'), ('25031','35444','19663','last','$'), ('25032','35445','19664','last','$'), ('25033','35446','19665','last','$'), ('25034','35446','19666','last','$'), ('25035','36824','19667','count','$,120m,"ne","1"'), ('25036','36825','19668','count','$,120m,"ne","1"'), ('25060','36847','19679','last','$,#1'), ('25061','36847','19679','last','$,#2'), ('25062','36847','19679','last','$'), ('25063','36849','19680','last','$,#1'), ('25064','36849','19680','last','$,#2'), ('25065','36849','19680','last','$'), ('25066','36850','19681','last','$,#1'), ('25067','36850','19681','last','$,#2'), ('25068','36850','19681','last','$'), ('25069','36853','19682','min','$,5m'), ('25070','36861','19683','min','$,5m'), ('25083','36864','19690','max','$,5m'), ('25084','36865','19691','max','$,5m'), ('25085','36866','19692','max','$,5m'), ('25086','36867','19693','max','$,5m'), ('25087','36876','19694','last','$'), ('25119','36901','19707','last','$,#1'), ('25120','36901','19707','last','$,#2'), ('25121','36901','19707','last','$'), ('25122','36903','19708','last','$,#1'), ('25123','36903','19708','last','$,#2'), ('25124','36903','19708','last','$'), ('25125','36904','19709','last','$,#1'), ('25126','36904','19709','last','$,#2'), ('25127','36904','19709','last','$'), ('25128','36907','19710','min','$,5m'), ('25129','36915','19711','min','$,5m'), ('25142','36918','19718','max','$,5m'), ('25143','36919','19719','max','$,5m'), ('25144','36920','19720','max','$,5m'), ('25145','36921','19721','max','$,5m'), ('25146','36930','19722','last','$'), ('25178','36955','19735','last','$,#1'), ('25179','36955','19735','last','$,#2'), ('25180','36955','19735','last','$'), ('25181','36957','19736','last','$,#1'), ('25182','36957','19736','last','$,#2'), ('25183','36957','19736','last','$'), ('25184','36958','19737','last','$,#1'), ('25185','36958','19737','last','$,#2'), ('25186','36958','19737','last','$'), ('25187','36961','19738','min','$,5m'), ('25188','36969','19739','min','$,5m'), ('25201','36972','19746','max','$,5m'), ('25202','36973','19747','max','$,5m'), ('25203','36974','19748','max','$,5m'), ('25204','36975','19749','max','$,5m'), ('25205','36984','19750','last','$'), ('25237','37009','19763','last','$,#1'), ('25238','37009','19763','last','$,#2'), ('25239','37009','19763','last','$'), ('25240','37011','19764','last','$,#1'), ('25241','37011','19764','last','$,#2'), ('25242','37011','19764','last','$'), ('25243','37012','19765','last','$,#1'), ('25244','37012','19765','last','$,#2'), ('25245','37012','19765','last','$'), ('25246','37015','19766','min','$,5m'), ('25247','37023','19767','min','$,5m'), ('25260','37026','19774','max','$,5m'), ('25261','37027','19775','max','$,5m'), ('25262','37028','19776','max','$,5m'), ('25263','37029','19777','max','$,5m'), ('25264','37038','19778','last','$'), ('25296','37063','19791','last','$,#1'), ('25297','37063','19791','last','$,#2'), ('25298','37063','19791','last','$'), ('25299','37065','19792','last','$,#1'), ('25300','37065','19792','last','$,#2'), ('25301','37065','19792','last','$'), ('25302','37066','19793','last','$,#1'), ('25303','37066','19793','last','$,#2'), ('25304','37066','19793','last','$'), ('25305','37069','19794','min','$,5m'), ('25306','37077','19795','min','$,5m'), ('25319','37080','19802','max','$,5m'), ('25320','37081','19803','max','$,5m'), ('25321','37082','19804','max','$,5m'), ('25322','37083','19805','max','$,5m'), ('25323','37092','19806','last','$'), ('25355','37117','19819','last','$,#1'), ('25356','37117','19819','last','$,#2'), ('25357','37117','19819','last','$'), ('25358','37119','19820','last','$,#1'), ('25359','37119','19820','last','$,#2'), ('25360','37119','19820','last','$'), ('25361','37120','19821','last','$,#1'), ('25362','37120','19821','last','$,#2'), ('25363','37120','19821','last','$'), ('25364','37123','19822','min','$,5m'), ('25365','37131','19823','min','$,5m'), ('25378','37134','19830','max','$,5m'), ('25379','37135','19831','max','$,5m'), ('25380','37136','19832','max','$,5m'), ('25381','37137','19833','max','$,5m'), ('25382','37146','19834','last','$'), ('25414','37171','19847','last','$,#1'), ('25415','37171','19847','last','$,#2'), ('25416','37171','19847','last','$'), ('25417','37173','19848','last','$,#1'), ('25418','37173','19848','last','$,#2'), ('25419','37173','19848','last','$'), ('25420','37174','19849','last','$,#1'), ('25421','37174','19849','last','$,#2'), ('25422','37174','19849','last','$'), ('25423','37177','19850','min','$,5m'), ('25424','37185','19851','min','$,5m'), ('25437','37188','19858','max','$,5m'), ('25438','37189','19859','max','$,5m'), ('25439','37190','19860','max','$,5m'), ('25440','37191','19861','max','$,5m'), ('25441','37200','19862','last','$'), ('25473','37225','19875','last','$,#1'), ('25474','37225','19875','last','$,#2'), ('25475','37225','19875','last','$'), ('25476','37227','19876','last','$,#1'), ('25477','37227','19876','last','$,#2'), ('25478','37227','19876','last','$'), ('25479','37228','19877','last','$,#1'), ('25480','37228','19877','last','$,#2'), ('25481','37228','19877','last','$'), ('25482','37231','19878','min','$,5m'), ('25483','37239','19879','min','$,5m'), ('25496','37242','19886','max','$,5m'), ('25497','37243','19887','max','$,5m'), ('25498','37244','19888','max','$,5m'), ('25499','37245','19889','max','$,5m'), ('25500','37254','19890','last','$'), ('25532','37279','19903','last','$,#1'), ('25533','37279','19903','last','$,#2'), ('25534','37279','19903','last','$'), ('25535','37281','19904','last','$,#1'), ('25536','37281','19904','last','$,#2'), ('25537','37281','19904','last','$'), ('25538','37282','19905','last','$,#1'), ('25539','37282','19905','last','$,#2'), ('25540','37282','19905','last','$'), ('25541','37285','19906','min','$,5m'), ('25542','37293','19907','min','$,5m'), ('25555','37296','19914','max','$,5m'), ('25556','37297','19915','max','$,5m'), ('25557','37298','19916','max','$,5m'), ('25558','37299','19917','max','$,5m'), ('25559','37308','19918','last','$'), ('25591','37333','19931','last','$,#1'), ('25592','37333','19931','last','$,#2'), ('25593','37333','19931','last','$'), ('25594','37335','19932','last','$,#1'), ('25595','37335','19932','last','$,#2'), ('25596','37335','19932','last','$'), ('25597','37336','19933','last','$,#1'), ('25598','37336','19933','last','$,#2'), ('25599','37336','19933','last','$'), ('25600','37339','19934','min','$,5m'), ('25601','37347','19935','min','$,5m'), ('25614','37350','19942','max','$,5m'), ('25615','37351','19943','max','$,5m'), ('25616','37352','19944','max','$,5m'), ('25617','37353','19945','max','$,5m'), ('25618','37362','19946','last','$'), ('25650','37387','19959','last','$,#1'), ('25651','37387','19959','last','$,#2'), ('25652','37387','19959','last','$'), ('25653','37389','19960','last','$,#1'), ('25654','37389','19960','last','$,#2'), ('25655','37389','19960','last','$'), ('25656','37390','19961','last','$,#1'), ('25657','37390','19961','last','$,#2'), ('25658','37390','19961','last','$'), ('25659','37393','19962','min','$,5m'), ('25660','37401','19963','min','$,5m'), ('25673','37404','19970','max','$,5m'), ('25674','37405','19971','max','$,5m'), ('25675','37406','19972','max','$,5m'), ('25676','37407','19973','max','$,5m'), ('25677','37416','19974','last','$'), ('25709','37441','19987','last','$,#1'), ('25710','37441','19987','last','$,#2'), ('25711','37441','19987','last','$'), ('25712','37443','19988','last','$,#1'), ('25713','37443','19988','last','$,#2'), ('25714','37443','19988','last','$'), ('25715','37444','19989','last','$,#1'), ('25716','37444','19989','last','$,#2'), ('25717','37444','19989','last','$'), ('25718','37447','19990','min','$,5m'), ('25719','37455','19991','min','$,5m'), ('25732','37458','19998','max','$,5m'), ('25733','37459','19999','max','$,5m'), ('25734','37460','20000','max','$,5m'), ('25735','37461','20001','max','$,5m'), ('25736','37470','20002','last','$'), ('25768','37495','20015','last','$,#1'), ('25769','37495','20015','last','$,#2'), ('25770','37495','20015','last','$'), ('25771','37497','20016','last','$,#1'), ('25772','37497','20016','last','$,#2'), ('25773','37497','20016','last','$'), ('25774','37498','20017','last','$,#1'), ('25775','37498','20017','last','$,#2'), ('25776','37498','20017','last','$'), ('25777','37501','20018','min','$,5m'), ('25778','37509','20019','min','$,5m'), ('25791','37512','20026','max','$,5m'), ('25792','37513','20027','max','$,5m'), ('25793','37514','20028','max','$,5m'), ('25794','37515','20029','max','$,5m'), ('25795','37524','20030','last','$'), ('25827','37549','20043','last','$,#1'), ('25828','37549','20043','last','$,#2'), ('25829','37549','20043','last','$'), ('25830','37551','20044','last','$,#1'), ('25831','37551','20044','last','$,#2'), ('25832','37551','20044','last','$'), ('25833','37552','20045','last','$,#1'), ('25834','37552','20045','last','$,#2'), ('25835','37552','20045','last','$'), ('25836','37555','20046','min','$,5m'), ('25837','37563','20047','min','$,5m'), ('25850','37566','20054','max','$,5m'), ('25851','37567','20055','max','$,5m'), ('25852','37568','20056','max','$,5m'), ('25853','37569','20057','max','$,5m'), ('25854','37578','20058','last','$'), ('25886','37603','20071','last','$,#1'), ('25887','37603','20071','last','$,#2'), ('25888','37603','20071','last','$'), ('25889','37605','20072','last','$,#1'), ('25890','37605','20072','last','$,#2'), ('25891','37605','20072','last','$'), ('25892','37606','20073','last','$,#1'), ('25893','37606','20073','last','$,#2'), ('25894','37606','20073','last','$'), ('25895','37609','20074','min','$,5m'), ('25896','37617','20075','min','$,5m'), ('25909','37620','20082','max','$,5m'), ('25910','37621','20083','max','$,5m'), ('25911','37622','20084','max','$,5m'), ('25912','37623','20085','max','$,5m'), ('25913','37632','20086','last','$'), ('25945','37657','20099','last','$,#1'), ('25946','37657','20099','last','$,#2'), ('25947','37657','20099','last','$'), ('25948','37659','20100','last','$,#1'), ('25949','37659','20100','last','$,#2'), ('25950','37659','20100','last','$'), ('25951','37660','20101','last','$,#1'), ('25952','37660','20101','last','$,#2'), ('25953','37660','20101','last','$'), ('25954','37663','20102','min','$,5m'), ('25955','37671','20103','min','$,5m'), ('25968','37674','20110','max','$,5m'), ('25969','37675','20111','max','$,5m'), ('25970','37676','20112','max','$,5m'), ('25971','37677','20113','max','$,5m'), ('25972','37686','20114','last','$'), ('26004','37711','20127','last','$,#1'), ('26005','37711','20127','last','$,#2'), ('26006','37711','20127','last','$'), ('26007','37713','20128','last','$,#1'), ('26008','37713','20128','last','$,#2'), ('26009','37713','20128','last','$'), ('26010','37714','20129','last','$,#1'), ('26011','37714','20129','last','$,#2'), ('26012','37714','20129','last','$'), ('26013','37717','20130','min','$,5m'), ('26014','37725','20131','min','$,5m'), ('26027','37728','20138','max','$,5m'), ('26028','37729','20139','max','$,5m'), ('26029','37730','20140','max','$,5m'), ('26030','37731','20141','max','$,5m'), ('26031','37740','20142','last','$'), ('26063','37765','20155','last','$,#1'), ('26064','37765','20155','last','$,#2'), ('26065','37765','20155','last','$'), ('26066','37767','20156','last','$,#1'), ('26067','37767','20156','last','$,#2'), ('26068','37767','20156','last','$'), ('26069','37768','20157','last','$,#1'), ('26070','37768','20157','last','$,#2'), ('26071','37768','20157','last','$'), ('26072','37771','20158','min','$,5m'), ('26073','37779','20159','min','$,5m'), ('26086','37782','20166','max','$,5m'), ('26087','37783','20167','max','$,5m'), ('26088','37784','20168','max','$,5m'), ('26089','37785','20169','max','$,5m'), ('26090','37794','20170','last','$'), ('26122','37819','20183','last','$,#1'), ('26123','37819','20183','last','$,#2'), ('26124','37819','20183','last','$'), ('26125','37821','20184','last','$,#1'), ('26126','37821','20184','last','$,#2'), ('26127','37821','20184','last','$'), ('26128','37822','20185','last','$,#1'), ('26129','37822','20185','last','$,#2'), ('26130','37822','20185','last','$'), ('26131','37825','20186','min','$,5m'), ('26132','37833','20187','min','$,5m'), ('26145','37836','20194','max','$,5m'), ('26146','37837','20195','max','$,5m'), ('26147','37838','20196','max','$,5m'), ('26148','37839','20197','max','$,5m'), ('26149','37848','20198','last','$'), ('26181','37873','20211','last','$,#1'), ('26182','37873','20211','last','$,#2'), ('26183','37873','20211','last','$'), ('26184','37875','20212','last','$,#1'), ('26185','37875','20212','last','$,#2'), ('26186','37875','20212','last','$'), ('26187','37876','20213','last','$,#1'), ('26188','37876','20213','last','$,#2'), ('26189','37876','20213','last','$'), ('26190','37879','20214','min','$,5m'), ('26191','37887','20215','min','$,5m'), ('26204','37890','20222','max','$,5m'), ('26205','37891','20223','max','$,5m'), ('26206','37892','20224','max','$,5m'), ('26207','37893','20225','max','$,5m'), ('26208','37902','20226','last','$'), ('26240','37927','20239','last','$,#1'), ('26241','37927','20239','last','$,#2'), ('26242','37927','20239','last','$'), ('26243','37929','20240','last','$,#1'), ('26244','37929','20240','last','$,#2'), ('26245','37929','20240','last','$'), ('26246','37930','20241','last','$,#1'), ('26247','37930','20241','last','$,#2'), ('26248','37930','20241','last','$'), ('26249','37933','20242','min','$,5m'), ('26250','37941','20243','min','$,5m'), ('26263','37944','20250','max','$,5m'), ('26264','37945','20251','max','$,5m'), ('26265','37946','20252','max','$,5m'), ('26266','37947','20253','max','$,5m'), ('26267','37956','20254','last','$'), ('26299','37981','20267','last','$,#1'), ('26300','37981','20267','last','$,#2'), ('26301','37981','20267','last','$'), ('26302','37983','20268','last','$,#1'), ('26303','37983','20268','last','$,#2'), ('26304','37983','20268','last','$'), ('26305','37984','20269','last','$,#1'), ('26306','37984','20269','last','$,#2'), ('26307','37984','20269','last','$'), ('26308','37987','20270','min','$,5m'), ('26309','37995','20271','min','$,5m'), ('26322','37998','20278','max','$,5m'), ('26323','37999','20279','max','$,5m'), ('26324','38000','20280','max','$,5m'), ('26325','38001','20281','max','$,5m'), ('26326','38010','20282','last','$'), ('26358','38035','20295','last','$,#1'), ('26359','38035','20295','last','$,#2'), ('26360','38035','20295','last','$'), ('26361','38037','20296','last','$,#1'), ('26362','38037','20296','last','$,#2'), ('26363','38037','20296','last','$'), ('26364','38038','20297','last','$,#1'), ('26365','38038','20297','last','$,#2'), ('26366','38038','20297','last','$'), ('26367','38041','20298','min','$,5m'), ('26368','38049','20299','min','$,5m'), ('26381','38052','20306','max','$,5m'), ('26382','38053','20307','max','$,5m'), ('26383','38054','20308','max','$,5m'), ('26384','38055','20309','max','$,5m'), ('26385','38064','20310','last','$'), ('26417','38089','20323','last','$,#1'), ('26418','38089','20323','last','$,#2'), ('26419','38089','20323','last','$'), ('26420','38091','20324','last','$,#1'), ('26421','38091','20324','last','$,#2'), ('26422','38091','20324','last','$'), ('26423','38092','20325','last','$,#1'), ('26424','38092','20325','last','$,#2'), ('26425','38092','20325','last','$'), ('26426','38095','20326','min','$,5m'), ('26427','38103','20327','min','$,5m'), ('26440','38106','20334','max','$,5m'), ('26441','38107','20335','max','$,5m'), ('26442','38108','20336','max','$,5m'), ('26443','38109','20337','max','$,5m'), ('26444','38118','20338','last','$'), ('26476','38143','20351','last','$,#1'), ('26477','38143','20351','last','$,#2'), ('26478','38143','20351','last','$'), ('26479','38145','20352','last','$,#1'), ('26480','38145','20352','last','$,#2'), ('26481','38145','20352','last','$'), ('26482','38146','20353','last','$,#1'), ('26483','38146','20353','last','$,#2'), ('26484','38146','20353','last','$'), ('26485','38149','20354','min','$,5m'), ('26486','38157','20355','min','$,5m'), ('26499','38160','20362','max','$,5m'), ('26500','38161','20363','max','$,5m'), ('26501','38162','20364','max','$,5m'), ('26502','38163','20365','max','$,5m'), ('26503','38172','20366','last','$'), ('26535','38197','20379','last','$,#1'), ('26536','38197','20379','last','$,#2'), ('26537','38197','20379','last','$'), ('26538','38199','20380','last','$,#1'), ('26539','38199','20380','last','$,#2'), ('26540','38199','20380','last','$'), ('26541','38200','20381','last','$,#1'), ('26542','38200','20381','last','$,#2'), ('26543','38200','20381','last','$'), ('26544','38203','20382','min','$,5m'), ('26545','38211','20383','min','$,5m'), ('26558','38214','20390','max','$,5m'), ('26559','38215','20391','max','$,5m'), ('26560','38216','20392','max','$,5m'), ('26561','38217','20393','max','$,5m'), ('26562','38226','20394','last','$'), ('26594','38251','20407','last','$,#1'), ('26595','38251','20407','last','$,#2'), ('26596','38251','20407','last','$'), ('26597','38253','20408','last','$,#1'), ('26598','38253','20408','last','$,#2'), ('26599','38253','20408','last','$'), ('26600','38254','20409','last','$,#1'), ('26601','38254','20409','last','$,#2'), ('26602','38254','20409','last','$'), ('26603','38257','20410','min','$,5m'), ('26604','38265','20411','min','$,5m'), ('26617','38268','20418','max','$,5m'), ('26618','38269','20419','max','$,5m'), ('26619','38270','20420','max','$,5m'), ('26620','38271','20421','max','$,5m'), ('26621','38280','20422','last','$'), ('26653','38305','20435','last','$,#1'), ('26654','38305','20435','last','$,#2'), ('26655','38305','20435','last','$'), ('26656','38307','20436','last','$,#1'), ('26657','38307','20436','last','$,#2'), ('26658','38307','20436','last','$'), ('26659','38308','20437','last','$,#1'), ('26660','38308','20437','last','$,#2'), ('26661','38308','20437','last','$'), ('26662','38311','20438','min','$,5m'), ('26663','38319','20439','min','$,5m'), ('26676','38322','20446','max','$,5m'), ('26677','38323','20447','max','$,5m'), ('26678','38324','20448','max','$,5m'), ('26679','38325','20449','max','$,5m'), ('26680','38334','20450','last','$'), ('26712','38359','20463','last','$,#1'), ('26713','38359','20463','last','$,#2'), ('26714','38359','20463','last','$'), ('26715','38361','20464','last','$,#1'), ('26716','38361','20464','last','$,#2'), ('26717','38361','20464','last','$'), ('26718','38362','20465','last','$,#1'), ('26719','38362','20465','last','$,#2'), ('26720','38362','20465','last','$'), ('26721','38365','20466','min','$,5m'), ('26722','38373','20467','min','$,5m'), ('26735','38376','20474','max','$,5m'), ('26736','38377','20475','max','$,5m'), ('26737','38378','20476','max','$,5m'), ('26738','38379','20477','max','$,5m'), ('26739','38388','20478','last','$'), ('26771','38413','20491','last','$,#1'), ('26772','38413','20491','last','$,#2'), ('26773','38413','20491','last','$'), ('26774','38415','20492','last','$,#1'), ('26775','38415','20492','last','$,#2'), ('26776','38415','20492','last','$'), ('26777','38416','20493','last','$,#1'), ('26778','38416','20493','last','$,#2'), ('26779','38416','20493','last','$'), ('26780','38419','20494','min','$,5m'), ('26781','38427','20495','min','$,5m'), ('26794','38430','20502','max','$,5m'), ('26795','38431','20503','max','$,5m'), ('26796','38432','20504','max','$,5m'), ('26797','38433','20505','max','$,5m'), ('26798','38442','20506','last','$'), ('26830','38467','20519','last','$,#1'), ('26831','38467','20519','last','$,#2'), ('26832','38467','20519','last','$'), ('26833','38469','20520','last','$,#1'), ('26834','38469','20520','last','$,#2'), ('26835','38469','20520','last','$'), ('26836','38470','20521','last','$,#1'), ('26837','38470','20521','last','$,#2'), ('26838','38470','20521','last','$'), ('26839','38473','20522','min','$,5m'), ('26840','38481','20523','min','$,5m'), ('26853','38484','20530','max','$,5m'), ('26854','38485','20531','max','$,5m'), ('26855','38486','20532','max','$,5m'), ('26856','38487','20533','max','$,5m'), ('26857','38496','20534','last','$'), ('26889','38521','20547','last','$,#1'), ('26890','38521','20547','last','$,#2'), ('26891','38521','20547','last','$'), ('26892','38523','20548','last','$,#1'), ('26893','38523','20548','last','$,#2'), ('26894','38523','20548','last','$'), ('26895','38524','20549','last','$,#1'), ('26896','38524','20549','last','$,#2'), ('26897','38524','20549','last','$'), ('26898','38527','20550','min','$,5m'), ('26899','38535','20551','min','$,5m'), ('26912','38538','20558','max','$,5m'), ('26913','38539','20559','max','$,5m'), ('26914','38540','20560','max','$,5m'), ('26915','38541','20561','max','$,5m'), ('26916','38550','20562','last','$'), ('26948','38575','20575','last','$,#1'), ('26949','38575','20575','last','$,#2'), ('26950','38575','20575','last','$'), ('26951','38577','20576','last','$,#1'), ('26952','38577','20576','last','$,#2'), ('26953','38577','20576','last','$'), ('26954','38578','20577','last','$,#1'), ('26955','38578','20577','last','$,#2'), ('26956','38578','20577','last','$'), ('26957','38581','20578','min','$,5m'), ('26958','38589','20579','min','$,5m'), ('26971','38592','20586','max','$,5m'), ('26972','38593','20587','max','$,5m'), ('26973','38594','20588','max','$,5m'), ('26974','38595','20589','max','$,5m'), ('26975','38604','20590','last','$'), ('27007','38629','20603','last','$,#1'), ('27008','38629','20603','last','$,#2'), ('27009','38629','20603','last','$'), ('27010','38631','20604','last','$,#1'), ('27011','38631','20604','last','$,#2'), ('27012','38631','20604','last','$'), ('27013','38632','20605','last','$,#1'), ('27014','38632','20605','last','$,#2'), ('27015','38632','20605','last','$'), ('27016','38635','20606','min','$,5m'), ('27017','38643','20607','min','$,5m'), ('27030','38646','20614','max','$,5m'), ('27031','38647','20615','max','$,5m'), ('27032','38648','20616','max','$,5m'), ('27033','38649','20617','max','$,5m'), ('27034','38658','20618','last','$'), ('27066','38683','20631','last','$,#1'), ('27067','38683','20631','last','$,#2'), ('27068','38683','20631','last','$'), ('27069','38685','20632','last','$,#1'), ('27070','38685','20632','last','$,#2'), ('27071','38685','20632','last','$'), ('27072','38686','20633','last','$,#1'), ('27073','38686','20633','last','$,#2'), ('27074','38686','20633','last','$'), ('27075','38689','20634','min','$,5m'), ('27076','38697','20635','min','$,5m'), ('27089','38700','20642','max','$,5m'), ('27090','38701','20643','max','$,5m'), ('27091','38702','20644','max','$,5m'), ('27092','38703','20645','max','$,5m'), ('27093','38712','20646','last','$'), ('27125','38737','20659','last','$,#1'), ('27126','38737','20659','last','$,#2'), ('27127','38737','20659','last','$'), ('27128','38739','20660','last','$,#1'), ('27129','38739','20660','last','$,#2'), ('27130','38739','20660','last','$'), ('27131','38740','20661','last','$,#1'), ('27132','38740','20661','last','$,#2'), ('27133','38740','20661','last','$'), ('27134','38743','20662','min','$,5m'), ('27135','38751','20663','min','$,5m'), ('27148','38754','20670','max','$,5m'), ('27149','38755','20671','max','$,5m'), ('27150','38756','20672','max','$,5m'), ('27151','38757','20673','max','$,5m'), ('27152','38766','20674','last','$'), ('27184','38791','20687','last','$,#1'), ('27185','38791','20687','last','$,#2'), ('27186','38791','20687','last','$'), ('27187','38793','20688','last','$,#1'), ('27188','38793','20688','last','$,#2'), ('27189','38793','20688','last','$'), ('27190','38794','20689','last','$,#1'), ('27191','38794','20689','last','$,#2'), ('27192','38794','20689','last','$'), ('27193','38797','20690','min','$,5m'), ('27194','38805','20691','min','$,5m'), ('27207','38808','20698','max','$,5m'), ('27208','38809','20699','max','$,5m'), ('27209','38810','20700','max','$,5m'), ('27210','38811','20701','max','$,5m'), ('27211','38820','20702','last','$'), ('27243','38845','20715','last','$,#1'), ('27244','38845','20715','last','$,#2'), ('27245','38845','20715','last','$'), ('27246','38847','20716','last','$,#1'), ('27247','38847','20716','last','$,#2'), ('27248','38847','20716','last','$'), ('27249','38848','20717','last','$,#1'), ('27250','38848','20717','last','$,#2'), ('27251','38848','20717','last','$'), ('27252','38851','20718','min','$,5m'), ('27253','38859','20719','min','$,5m'), ('27266','38862','20726','max','$,5m'), ('27267','38863','20727','max','$,5m'), ('27268','38864','20728','max','$,5m'), ('27269','38865','20729','max','$,5m'), ('27270','38874','20730','last','$'), ('27302','38899','20743','last','$,#1'), ('27303','38899','20743','last','$,#2'), ('27304','38899','20743','last','$'), ('27305','38901','20744','last','$,#1'), ('27306','38901','20744','last','$,#2'), ('27307','38901','20744','last','$'), ('27308','38902','20745','last','$,#1'), ('27309','38902','20745','last','$,#2'), ('27310','38902','20745','last','$'), ('27311','38905','20746','min','$,5m'), ('27312','38913','20747','min','$,5m'), ('27325','38916','20754','max','$,5m'), ('27326','38917','20755','max','$,5m'), ('27327','38918','20756','max','$,5m'), ('27328','38919','20757','max','$,5m'), ('27329','38928','20758','last','$'), ('27361','38953','20771','last','$,#1'), ('27362','38953','20771','last','$,#2'), ('27363','38953','20771','last','$'), ('27364','38955','20772','last','$,#1'), ('27365','38955','20772','last','$,#2'), ('27366','38955','20772','last','$'), ('27367','38956','20773','last','$,#1'), ('27368','38956','20773','last','$,#2'), ('27369','38956','20773','last','$'), ('27370','38959','20774','min','$,5m'), ('27371','38967','20775','min','$,5m'), ('27384','38970','20782','max','$,5m'), ('27385','38971','20783','max','$,5m'), ('27386','38972','20784','max','$,5m'), ('27387','38973','20785','max','$,5m'), ('27388','38982','20786','last','$'), ('27420','39007','20799','last','$,#1'), ('27421','39007','20799','last','$,#2'), ('27422','39007','20799','last','$'), ('27423','39009','20800','last','$,#1'), ('27424','39009','20800','last','$,#2'), ('27425','39009','20800','last','$'), ('27426','39010','20801','last','$,#1'), ('27427','39010','20801','last','$,#2'), ('27428','39010','20801','last','$'), ('27429','39013','20802','min','$,5m'), ('27430','39021','20803','min','$,5m'), ('27443','39024','20810','max','$,5m'), ('27444','39025','20811','max','$,5m'), ('27445','39026','20812','max','$,5m'), ('27446','39027','20813','max','$,5m'), ('27447','39036','20814','last','$'), ('27479','39061','20827','last','$,#1'), ('27480','39061','20827','last','$,#2'), ('27481','39061','20827','last','$'), ('27482','39063','20828','last','$,#1'), ('27483','39063','20828','last','$,#2'), ('27484','39063','20828','last','$'), ('27485','39064','20829','last','$,#1'), ('27486','39064','20829','last','$,#2'), ('27487','39064','20829','last','$'), ('27488','39067','20830','min','$,5m'), ('27489','39075','20831','min','$,5m'), ('27502','39078','20838','max','$,5m'), ('27503','39079','20839','max','$,5m'), ('27504','39080','20840','max','$,5m'), ('27505','39081','20841','max','$,5m'), ('27506','39090','20842','last','$'), ('27538','39115','20855','last','$,#1'), ('27539','39115','20855','last','$,#2'), ('27540','39115','20855','last','$'), ('27541','39117','20856','last','$,#1'), ('27542','39117','20856','last','$,#2'), ('27543','39117','20856','last','$'), ('27544','39118','20857','last','$,#1'), ('27545','39118','20857','last','$,#2'), ('27546','39118','20857','last','$'), ('27547','39121','20858','min','$,5m'), ('27548','39129','20859','min','$,5m'), ('27561','39132','20866','max','$,5m'), ('27562','39133','20867','max','$,5m'), ('27563','39134','20868','max','$,5m'), ('27564','39135','20869','max','$,5m'), ('27565','39144','20870','last','$'), ('27597','39169','20883','last','$,#1'), ('27598','39169','20883','last','$,#2'), ('27599','39169','20883','last','$'), ('27600','39171','20884','last','$,#1'), ('27601','39171','20884','last','$,#2'), ('27602','39171','20884','last','$'), ('27603','39172','20885','last','$,#1'), ('27604','39172','20885','last','$,#2'), ('27605','39172','20885','last','$'), ('27606','39175','20886','min','$,5m'), ('27607','39183','20887','min','$,5m'), ('27620','39186','20894','max','$,5m'), ('27621','39187','20895','max','$,5m'), ('27622','39188','20896','max','$,5m'), ('27623','39189','20897','max','$,5m'), ('27624','39198','20898','last','$'), ('27656','39223','20911','last','$,#1'), ('27657','39223','20911','last','$,#2'), ('27658','39223','20911','last','$'), ('27659','39225','20912','last','$,#1'), ('27660','39225','20912','last','$,#2'), ('27661','39225','20912','last','$'), ('27662','39226','20913','last','$,#1'), ('27663','39226','20913','last','$,#2'), ('27664','39226','20913','last','$'), ('27665','39229','20914','min','$,5m'), ('27666','39237','20915','min','$,5m'), ('27679','39240','20922','max','$,5m'), ('27680','39241','20923','max','$,5m'), ('27681','39242','20924','max','$,5m'), ('27682','39243','20925','max','$,5m'), ('27683','39252','20926','last','$'), ('27715','39277','20939','last','$,#1'), ('27716','39277','20939','last','$,#2'), ('27717','39277','20939','last','$'), ('27718','39279','20940','last','$,#1'), ('27719','39279','20940','last','$,#2'), ('27720','39279','20940','last','$'), ('27721','39280','20941','last','$,#1'), ('27722','39280','20941','last','$,#2'), ('27723','39280','20941','last','$'), ('27724','39283','20942','min','$,5m'), ('27725','39291','20943','min','$,5m'), ('27738','39294','20950','max','$,5m'), ('27739','39295','20951','max','$,5m'), ('27740','39296','20952','max','$,5m'), ('27741','39297','20953','max','$,5m'), ('27742','39306','20954','last','$'), ('27774','39331','20967','last','$,#1'), ('27775','39331','20967','last','$,#2'), ('27776','39331','20967','last','$'), ('27777','39333','20968','last','$,#1'), ('27778','39333','20968','last','$,#2'), ('27779','39333','20968','last','$'), ('27780','39334','20969','last','$,#1'), ('27781','39334','20969','last','$,#2'), ('27782','39334','20969','last','$'), ('27783','39337','20970','min','$,5m'), ('27784','39345','20971','min','$,5m'), ('27797','39348','20978','max','$,5m'), ('27798','39349','20979','max','$,5m'), ('27799','39350','20980','max','$,5m'), ('27800','39351','20981','max','$,5m'), ('27801','39360','20982','last','$'), ('27833','39385','20995','last','$,#1'), ('27834','39385','20995','last','$,#2'), ('27835','39385','20995','last','$'), ('27836','39387','20996','last','$,#1'), ('27837','39387','20996','last','$,#2'), ('27838','39387','20996','last','$'), ('27839','39388','20997','last','$,#1'), ('27840','39388','20997','last','$,#2'), ('27841','39388','20997','last','$'), ('27842','39391','20998','min','$,5m'), ('27843','39399','20999','min','$,5m'), ('27856','39402','21006','max','$,5m'), ('27857','39403','21007','max','$,5m'), ('27858','39404','21008','max','$,5m'), ('27859','39405','21009','max','$,5m'), ('27860','39414','21010','last','$'), ('27892','39439','21023','last','$,#1'), ('27893','39439','21023','last','$,#2'), ('27894','39439','21023','last','$'), ('27895','39441','21024','last','$,#1'), ('27896','39441','21024','last','$,#2'), ('27897','39441','21024','last','$'), ('27898','39442','21025','last','$,#1'), ('27899','39442','21025','last','$,#2'), ('27900','39442','21025','last','$'), ('27901','39445','21026','min','$,5m'), ('27902','39453','21027','min','$,5m'), ('27915','39456','21034','max','$,5m'), ('27916','39457','21035','max','$,5m'), ('27917','39458','21036','max','$,5m'), ('27918','39459','21037','max','$,5m'), ('27919','39468','21038','last','$'), ('27951','39493','21051','last','$,#1'), ('27952','39493','21051','last','$,#2'), ('27953','39493','21051','last','$'), ('27954','39495','21052','last','$,#1'), ('27955','39495','21052','last','$,#2'), ('27956','39495','21052','last','$'), ('27957','39496','21053','last','$,#1'), ('27958','39496','21053','last','$,#2'), ('27959','39496','21053','last','$'), ('27960','39499','21054','min','$,5m'), ('27961','39507','21055','min','$,5m'), ('27974','39510','21062','max','$,5m'), ('27975','39511','21063','max','$,5m'), ('27976','39512','21064','max','$,5m'), ('27977','39513','21065','max','$,5m'), ('27978','39522','21066','last','$'), ('28010','39547','21079','last','$,#1'), ('28011','39547','21079','last','$,#2'), ('28012','39547','21079','last','$'), ('28013','39549','21080','last','$,#1'), ('28014','39549','21080','last','$,#2'), ('28015','39549','21080','last','$'), ('28016','39550','21081','last','$,#1'), ('28017','39550','21081','last','$,#2'), ('28018','39550','21081','last','$'), ('28019','39553','21082','min','$,5m'), ('28020','39561','21083','min','$,5m'), ('28033','39564','21090','max','$,5m'), ('28034','39565','21091','max','$,5m'), ('28035','39566','21092','max','$,5m'), ('28036','39567','21093','max','$,5m'), ('28037','39576','21094','last','$'), ('28069','39601','21107','last','$,#1'), ('28070','39601','21107','last','$,#2'), ('28071','39601','21107','last','$'), ('28072','39603','21108','last','$,#1'), ('28073','39603','21108','last','$,#2'), ('28074','39603','21108','last','$'), ('28075','39604','21109','last','$,#1'), ('28076','39604','21109','last','$,#2'), ('28077','39604','21109','last','$'), ('28078','39607','21110','min','$,5m'), ('28079','39615','21111','min','$,5m'), ('28092','39618','21118','max','$,5m'), ('28093','39619','21119','max','$,5m'), ('28094','39620','21120','max','$,5m'), ('28095','39621','21121','max','$,5m'), ('28096','39630','21122','last','$'), ('28128','39655','21135','last','$,#1'), ('28129','39655','21135','last','$,#2'), ('28130','39655','21135','last','$'), ('28131','39657','21136','last','$,#1'), ('28132','39657','21136','last','$,#2'), ('28133','39657','21136','last','$'), ('28134','39658','21137','last','$,#1'), ('28135','39658','21137','last','$,#2'), ('28136','39658','21137','last','$'), ('28137','39661','21138','min','$,5m'), ('28138','39669','21139','min','$,5m'), ('28151','39672','21146','max','$,5m'), ('28152','39673','21147','max','$,5m'), ('28153','39674','21148','max','$,5m'), ('28154','39675','21149','max','$,5m'), ('28155','39684','21150','last','$'), ('28187','39709','21163','last','$,#1'), ('28188','39709','21163','last','$,#2'), ('28189','39709','21163','last','$'), ('28190','39711','21164','last','$,#1'), ('28191','39711','21164','last','$,#2'), ('28192','39711','21164','last','$'), ('28193','39712','21165','last','$,#1'), ('28194','39712','21165','last','$,#2'), ('28195','39712','21165','last','$'), ('28196','39715','21166','min','$,5m'), ('28197','39723','21167','min','$,5m'), ('28210','39726','21174','max','$,5m'), ('28211','39727','21175','max','$,5m'), ('28212','39728','21176','max','$,5m'), ('28213','39729','21177','max','$,5m'), ('28214','39738','21178','last','$'), ('28223','39745','21181','last','$'), ('28224','39746','21182','nodata','$,30m'), ('28225','39747','21183','last','$,#1'), ('28226','39747','21183','last','$,#2'), ('28227','39747','21183','last','$'), ('28228','39748','21184','last','$,#1'), ('28229','39748','21184','last','$,#2'), ('28230','39748','21184','last','$'), ('28231','39742','21185','last','$,#1'), ('28232','39742','21185','last','$,#2'), ('28233','39756','21186','last','$'), ('28234','39760','21187','last','$'), ('28235','39761','21188','last','$'), ('28236','39762','21189','last','$,#1'), ('28237','39762','21189','last','$,#2'), ('28238','39767','21190','last','$'), ('28239','39779','21191','last','$'), ('28242','39811','21194','last','$,#1'), ('28243','39811','21194','last','$,#2'), ('28244','39815','21195','last','$,#1'), ('28245','39815','21195','last','$,#2'), ('28246','39820','21196','last','$,#1'), ('28247','39820','21196','last','$,#2'), ('28248','35442','19021','last','$'), ('28249','35487','19026','last','$'), ('28250','35484','19026','last','$'), ('28258','32459','18524','last','$'), ('28259','39846','21202','min','$,5m'), ('28262','39850','21205','min','$,5m'), ('28263','39880','21206','min','$,5m'), ('28264','39938','21207','last','$'), ('28291','39975','21224','count','$,10m, "regexp","^(1|4|5)$"'), ('28292','39986','21225','min','$,5m'), ('28293','39995','21226','min','$,5m'), ('28294','39997','21227','min','$,5m'), ('28299','40060','21231','min','$,10m'), ('28300','40066','21231','min','$,10m'), ('28301','40063','21231','min','$,10m'), ('28310','40093','21237','last','$'), ('28311','40091','21237','last','$'), ('28315','40119','21241','last','$'), ('28316','40120','21242','last','$'), ('28317','40121','21243','last','$'), ('28318','40128','21244','last','$'), ('28319','40132','21245','min','$,#3'), ('28320','40135','21246','min','$,#3'), ('28326','40136','21250','max','$,{$SNMP.TIMEOUT}'), ('28336','40150','21255','change','$'), ('28337','40150','21255','last','$'), ('28338','40172','21255','last','$'), ('28339','40149','21255','last','$'), ('28340','40150','21255','last','$,#2'), ('28341','40163','21256','avg','$,15m'), ('28342','40150','21256','last','$'), ('28343','40152','21257','avg','$,15m'), ('28344','40150','21257','last','$'), ('28345','40168','21258','min','$,5m'), ('28346','40168','21258','max','$,5m'), ('28347','40157','21259','min','$,5m'), ('28348','40157','21259','max','$,5m'), ('28349','40149','21260','last','$'), ('28360','31573','17089','min','$,15m'), ('28361','31593','17097','min','$,15m'), ('28362','33018','17533','avg','$,10m'), ('28363','23347','13521','avg','$,10m'), ('28364','23360','13534','avg','$,10m'), ('28368','23350','13523','avg','$,10m'), ('28369','23353','13524','avg','$,10m'), ('28370','23354','13525','avg','$,10m'), ('28371','23356','13526','avg','$,10m'), ('28372','25368','13564','avg','$,10m'), ('28373','23355','13527','avg','$,10m'), ('28374','23349','13528','avg','$,10m'), ('28375','39826','21201','avg','$,10m'), ('28376','23348','13529','avg','$,10m'), ('28377','28618','15913','avg','$,10m'), ('28378','28619','15914','avg','$,10m'), ('28379','23343','13530','avg','$,10m'), ('28380','23344','13531','avg','$,10m'), ('28381','25369','13565','avg','$,10m'), ('28382','23345','13532','avg','$,10m'), ('28383','23346','13533','avg','$,10m'), ('28384','28250','15641','avg','$,10m'), ('28389','40184','21265','last','$'), ('28390','40181','21266','last','$,#1'), ('28391','40181','21266','last','$,#2'), ('28392','40181','21266','last','$'), ('28393','33012','17529','avg','$,10m'), ('28394','28600','15895','avg','$,10m'), ('28395','28601','15896','avg','$,10m'), ('28399','28613','15899','avg','$,10m'), ('28400','28612','15900','avg','$,10m'), ('28401','28611','15901','avg','$,10m'), ('28402','28610','15902','avg','$,10m'), ('28403','28609','15903','avg','$,10m'), ('28404','28608','15904','avg','$,10m'), ('28405','28607','15905','avg','$,10m'), ('28406','39825','21200','avg','$,10m'), ('28407','28606','15906','avg','$,10m'), ('28408','28605','15907','avg','$,10m'), ('28409','28604','15908','avg','$,10m'), ('28410','28603','15909','avg','$,10m'), ('28411','28602','15910','avg','$,10m'), ('28412','28616','15911','avg','$,10m'), ('28413','28588','15912','avg','$,10m'), ('28418','40188','21267','avg','$,10m'), ('28419','40189','21268','avg','$,10m'), ('28420','40186','21269','last','$'), ('28421','33868','18228','last','$'), ('28422','33850','18228','last','$'), ('28714','40478','21543','max','$,#3'), ('28715','40482','21544','min','$,5m'), ('28716','40487','21545','avg','$,5m'), ('28717','40481','21546','last','$,#1'), ('28718','40481','21546','last','$,#2'), ('28719','40481','21546','last','$'), ('28721','40488','21548','max','$,{$SNMP.TIMEOUT}'), ('28722','40497','21549','change','$'), ('28723','40497','21549','last','$'), ('28724','40499','21549','last','$'), ('28725','40498','21549','last','$'), ('28726','40497','21549','last','$,#2'), ('28727','40493','21550','avg','$,15m'), ('28728','40497','21550','last','$'), ('28729','40496','21550','avg','$,15m'), ('28730','40492','21551','min','$,5m'), ('28731','40495','21551','min','$,5m'), ('28732','40492','21551','max','$,5m'), ('28733','40495','21551','max','$,5m'), ('28734','40498','21552','last','$'), ('28735','40498','21552','last','$,#1'), ('28736','40498','21552','last','$,#2'), ('28737','40500','21553','last','$'), ('28738','40501','21554','max','$,#3'), ('28739','40502','21555','min','$,5m'), ('28740','40503','21556','avg','$,5m'), ('28741','40506','21557','min','$,5m'), ('28742','40509','21558','last','$,#1'), ('28743','40509','21558','last','$,#2'), ('28744','40509','21558','last','$'), ('28746','40512','21560','max','$,{$SNMP.TIMEOUT}'), ('28747','40523','21561','change','$'), ('28748','40523','21561','last','$'), ('28749','40525','21561','last','$'), ('28750','40524','21561','last','$'), ('28751','40523','21561','last','$,#2'), ('28752','40519','21562','avg','$,15m'), ('28753','40523','21562','last','$'), ('28754','40522','21562','avg','$,15m'), ('28755','40518','21563','min','$,5m'), ('28756','40521','21563','min','$,5m'), ('28757','40518','21563','max','$,5m'), ('28758','40521','21563','max','$,5m'), ('28759','40524','21564','last','$'), ('28760','40524','21564','last','$,#1'), ('28761','40524','21564','last','$,#2'), ('28762','40526','21565','last','$'), ('28771','40532','21568','min','$,5m'), ('28772','40533','21569','max','$,#3'), ('28773','40534','21570','min','$,5m'), ('28774','40535','21571','avg','$,5m'), ('28775','40540','21572','last','$,#1'), ('28776','40540','21572','last','$,#2'), ('28777','40540','21572','last','$'), ('28779','40543','21574','max','$,{$SNMP.TIMEOUT}'), ('28780','40551','21575','change','$'), ('28781','40551','21575','last','$'), ('28782','40553','21575','last','$'), ('28783','40552','21575','last','$'), ('28784','40551','21575','last','$,#2'), ('28785','40547','21576','avg','$,15m'), ('28786','40551','21576','last','$'), ('28787','40550','21576','avg','$,15m'), ('28788','40546','21577','min','$,5m'), ('28789','40549','21577','min','$,5m'), ('28790','40546','21577','max','$,5m'), ('28791','40549','21577','max','$,5m'), ('28792','40552','21578','last','$'), ('28793','40552','21578','last','$,#1'), ('28794','40552','21578','last','$,#2'), ('28795','40554','21579','max','$,#3'), ('28796','40555','21580','min','$,5m'), ('28797','40556','21581','avg','$,5m'), ('28798','40559','21582','min','$,5m'), ('28799','40562','21583','last','$,#1'), ('28800','40562','21583','last','$,#2'), ('28801','40562','21583','last','$'), ('28803','40565','21585','min','$,5m'), ('28804','40566','21586','max','$,{$SNMP.TIMEOUT}'), ('28805','40567','21587','max','$,#3'), ('28806','40568','21588','min','$,5m'), ('28807','40569','21589','avg','$,5m'), ('28808','40572','21590','min','$,5m'), ('28809','40575','21591','last','$,#1'), ('28810','40575','21591','last','$,#2'), ('28811','40575','21591','last','$'), ('28813','40578','21593','min','$,5m'), ('28814','40579','21594','max','$,{$SNMP.TIMEOUT}'), ('28815','40588','21595','change','$'), ('28816','40588','21595','last','$'), ('28817','40590','21595','last','$'), ('28818','40589','21595','last','$'), ('28819','40588','21595','last','$,#2'), ('28820','40584','21596','avg','$,15m'), ('28821','40588','21596','last','$'), ('28822','40587','21596','avg','$,15m'), ('28823','40583','21597','min','$,5m'), ('28824','40586','21597','min','$,5m'), ('28825','40583','21597','max','$,5m'), ('28826','40586','21597','max','$,5m'), ('28827','40589','21598','last','$'), ('28828','40589','21598','last','$,#1'), ('28829','40589','21598','last','$,#2'), ('28830','40597','21599','change','$'), ('28831','40597','21599','last','$'), ('28832','40599','21599','last','$'), ('28833','40598','21599','last','$'), ('28834','40597','21599','last','$,#2'), ('28835','40593','21600','avg','$,15m'), ('28836','40597','21600','last','$'), ('28837','40596','21600','avg','$,15m'), ('28838','40592','21601','min','$,5m'), ('28839','40595','21601','min','$,5m'), ('28840','40592','21601','max','$,5m'), ('28841','40595','21601','max','$,5m'), ('28842','40598','21602','last','$'), ('28843','40598','21602','last','$,#1'), ('28844','40598','21602','last','$,#2'), ('28845','40600','21603','max','$,#3'), ('28846','40601','21604','min','$,5m'), ('28847','40602','21605','avg','$,5m'), ('28848','40605','21606','min','$,5m'), ('28849','40608','21607','last','$,#1'), ('28850','40608','21607','last','$,#2'), ('28851','40608','21607','last','$'), ('28852','40610','21608','last','$,#1'), ('28853','40610','21608','last','$,#2'), ('28854','40610','21608','last','$'), ('28855','40612','21609','last','$,#1'), ('28856','40612','21609','last','$,#2'), ('28857','40612','21609','last','$'), ('28859','40614','21611','max','$,{$SNMP.TIMEOUT}'), ('28860','40615','21612','max','$,#3'), ('28861','40616','21613','min','$,5m'), ('28862','40617','21614','avg','$,5m'), ('28863','40622','21615','last','$,#1'), ('28864','40622','21615','last','$,#2'), ('28865','40622','21615','last','$'), ('28866','40624','21616','last','$,#1'), ('28867','40624','21616','last','$,#2'), ('28868','40624','21616','last','$'), ('28869','40626','21617','last','$,#1'), ('28870','40626','21617','last','$,#2'), ('28871','40626','21617','last','$'), ('28873','40628','21619','max','$,{$SNMP.TIMEOUT}'), ('28874','40629','21620','max','$,#3'), ('28875','40630','21621','min','$,5m'), ('28876','40631','21622','avg','$,5m'), ('28877','40636','21623','last','$,#1'), ('28878','40636','21623','last','$,#2'), ('28879','40636','21623','last','$'), ('28880','40638','21624','last','$,#1'), ('28881','40638','21624','last','$,#2'), ('28882','40638','21624','last','$'), ('28883','40640','21625','last','$,#1'), ('28884','40640','21625','last','$,#2'), ('28885','40640','21625','last','$'), ('28887','40642','21627','max','$,{$SNMP.TIMEOUT}'), ('28888','40663','21628','last','$,#1'), ('28889','40663','21628','last','$,#2'), ('28890','40663','21628','last','$'), ('28891','40664','21629','count',E'$,#1,"eq","{$FAN_CRIT_STATUS:\\"critical\\"}"'), ('28892','40664','21629','count',E'$,#1,"eq","{$FAN_CRIT_STATUS:\\"shutdown\\"}"'), ('28893','40664','21630','count',E'$,#1,"eq","{$FAN_WARN_STATUS:\\"warning\\"}"'), ('28894','40664','21630','count',E'$,#1,"eq","{$FAN_WARN_STATUS:\\"notFunctioning\\"}"'), ('28895','40667','21631','min','$,5m'), ('28896','40668','21632','count',E'$,#1,"eq","{$PSU_CRIT_STATUS:\\"critical\\"}"'), ('28897','40668','21632','count',E'$,#1,"eq","{$PSU_CRIT_STATUS:\\"shutdown\\"}"'), ('28898','40668','21633','count',E'$,#1,"eq","{$PSU_WARN_STATUS:\\"warning\\"}"'), ('28899','40668','21633','count',E'$,#1,"eq","{$PSU_WARN_STATUS:\\"notFunctioning\\"}"'), ('28900','40670','21634','avg','$,5m'), ('28901','40669','21634','last','$'), ('28902','40670','21634','max','$,5m'), ('28903','40670','21635','avg','$,5m'), ('28904','40669','21635','last','$'), ('28905','40670','21635','max','$,5m'), ('28906','40670','21636','avg','$,5m'), ('28907','40670','21636','min','$,5m'), ('28908','40671','21637','min','$,5m'), ('28909','40672','21638','last','$,#1'), ('28910','40672','21638','last','$,#2'), ('28911','40672','21638','last','$'), ('28912','40673','21639','count',E'$,#1,"eq","{$FAN_CRIT_STATUS:\\"critical\\"}"'), ('28913','40673','21639','count',E'$,#1,"eq","{$FAN_CRIT_STATUS:\\"shutdown\\"}"'), ('28914','40673','21640','count',E'$,#1,"eq","{$FAN_WARN_STATUS:\\"warning\\"}"'), ('28915','40673','21640','count',E'$,#1,"eq","{$FAN_WARN_STATUS:\\"notFunctioning\\"}"'), ('28916','40676','21641','min','$,5m'), ('28917','40683','21642','change','$'), ('28918','40683','21642','last','$'), ('28919','40685','21642','last','$'), ('28920','40684','21642','last','$'), ('28921','40683','21642','last','$,#2'), ('28922','40679','21643','avg','$,15m'), ('28923','40683','21643','last','$'), ('28924','40682','21643','avg','$,15m'), ('28925','40678','21644','min','$,5m'), ('28926','40681','21644','min','$,5m'), ('28927','40678','21644','max','$,5m'), ('28928','40681','21644','max','$,5m'), ('28929','40684','21645','last','$'), ('28930','40684','21645','last','$,#1'), ('28931','40684','21645','last','$,#2'), ('28932','40686','21646','last','$'), ('28933','40687','21647','count',E'$,#1,"eq","{$PSU_CRIT_STATUS:\\"critical\\"}"'), ('28934','40687','21647','count',E'$,#1,"eq","{$PSU_CRIT_STATUS:\\"shutdown\\"}"'), ('28935','40687','21648','count',E'$,#1,"eq","{$PSU_WARN_STATUS:\\"warning\\"}"'), ('28936','40687','21648','count',E'$,#1,"eq","{$PSU_WARN_STATUS:\\"notFunctioning\\"}"'), ('28937','40689','21649','avg','$,5m'), ('28938','40688','21649','last','$'), ('28939','40689','21649','max','$,5m'), ('28940','40689','21650','avg','$,5m'), ('28941','40688','21650','last','$'), ('28942','40689','21650','max','$,5m'), ('28943','40689','21651','avg','$,5m'), ('28944','40689','21651','min','$,5m'), ('28945','40690','21652','min','$,5m'), ('28946','40691','21653','last','$,#1'), ('28947','40691','21653','last','$,#2'), ('28948','40691','21653','last','$'), ('28949','40692','21654','count',E'$,#1,"eq","{$FAN_CRIT_STATUS:\\"critical\\"}"'), ('28950','40692','21654','count',E'$,#1,"eq","{$FAN_CRIT_STATUS:\\"shutdown\\"}"'), ('28951','40692','21655','count',E'$,#1,"eq","{$FAN_WARN_STATUS:\\"warning\\"}"'), ('28952','40692','21655','count',E'$,#1,"eq","{$FAN_WARN_STATUS:\\"notFunctioning\\"}"'), ('28953','40695','21656','min','$,5m'), ('28954','40702','21657','change','$'), ('28955','40702','21657','last','$'), ('28956','40704','21657','last','$'), ('28957','40703','21657','last','$'), ('28958','40702','21657','last','$,#2'), ('28959','40698','21658','avg','$,15m'), ('28960','40702','21658','last','$'), ('28961','40701','21658','avg','$,15m'), ('28962','40697','21659','min','$,5m'), ('28963','40700','21659','min','$,5m'), ('28964','40697','21659','max','$,5m'), ('28965','40700','21659','max','$,5m'), ('28966','40703','21660','last','$'), ('28967','40703','21660','last','$,#1'), ('28968','40703','21660','last','$,#2'), ('28969','40705','21661','count',E'$,#1,"eq","{$PSU_CRIT_STATUS:\\"critical\\"}"'), ('28970','40705','21661','count',E'$,#1,"eq","{$PSU_CRIT_STATUS:\\"shutdown\\"}"'), ('28971','40705','21662','count',E'$,#1,"eq","{$PSU_WARN_STATUS:\\"warning\\"}"'), ('28972','40705','21662','count',E'$,#1,"eq","{$PSU_WARN_STATUS:\\"notFunctioning\\"}"'), ('28973','40707','21663','avg','$,5m'), ('28974','40706','21663','last','$'), ('28975','40707','21663','max','$,5m'), ('28976','40707','21664','avg','$,5m'), ('28977','40706','21664','last','$'), ('28978','40707','21664','max','$,5m'), ('28979','40707','21665','avg','$,5m'), ('28980','40707','21665','min','$,5m'), ('28981','40708','21666','max','$,#3'), ('28982','40709','21667','min','$,5m'), ('28983','40710','21668','avg','$,5m'), ('28984','40715','21669','last','$,#1'), ('28985','40715','21669','last','$,#2'), ('28986','40715','21669','last','$'), ('28988','40718','21671','max','$,{$SNMP.TIMEOUT}'), ('28989','40727','21672','change','$'), ('28990','40727','21672','last','$'), ('28991','40729','21672','last','$'), ('28992','40728','21672','last','$'), ('28993','40727','21672','last','$,#2'), ('28994','40723','21673','avg','$,15m'), ('28995','40727','21673','last','$'), ('28996','40726','21673','avg','$,15m'), ('28997','40722','21674','min','$,5m'), ('28998','40725','21674','min','$,5m'), ('28999','40722','21674','max','$,5m'), ('29000','40725','21674','max','$,5m'), ('29001','40728','21675','last','$'), ('29002','40728','21675','last','$,#1'), ('29003','40728','21675','last','$,#2'), ('29004','40730','21676','last','$'), ('29005','40731','21677','max','$,#3'), ('29006','40732','21678','min','$,5m'), ('29007','40733','21679','avg','$,5m'), ('29008','40738','21680','last','$,#1'), ('29009','40738','21680','last','$,#2'), ('29010','40738','21680','last','$'), ('29012','40741','21682','max','$,{$SNMP.TIMEOUT}'), ('29013','40749','21683','change','$'), ('29014','40749','21683','last','$'), ('29015','40751','21683','last','$'), ('29016','40750','21683','last','$'), ('29017','40749','21683','last','$,#2'), ('29018','40745','21684','avg','$,15m'), ('29019','40749','21684','last','$'), ('29020','40748','21684','avg','$,15m'), ('29021','40744','21685','min','$,5m'), ('29022','40747','21685','min','$,5m'), ('29023','40744','21685','max','$,5m'), ('29024','40747','21685','max','$,5m'), ('29025','40750','21686','last','$'), ('29026','40750','21686','last','$,#1'), ('29027','40750','21686','last','$,#2'), ('29028','40752','21687','max','$,#3'), ('29029','40753','21688','min','$,5m'), ('29030','40754','21689','avg','$,5m'), ('29031','40759','21690','last','$,#1'), ('29032','40759','21690','last','$,#2'), ('29033','40759','21690','last','$'), ('29035','40762','21692','max','$,{$SNMP.TIMEOUT}'), ('29036','40771','21693','change','$'), ('29037','40771','21693','last','$'), ('29038','40773','21693','last','$'), ('29039','40772','21693','last','$'), ('29040','40771','21693','last','$,#2'), ('29041','40767','21694','avg','$,15m'), ('29042','40771','21694','last','$'), ('29043','40770','21694','avg','$,15m'), ('29044','40766','21695','min','$,5m'), ('29045','40769','21695','min','$,5m'), ('29046','40766','21695','max','$,5m'), ('29047','40769','21695','max','$,5m'), ('29048','40772','21696','last','$'), ('29049','40772','21696','last','$,#1'), ('29050','40772','21696','last','$,#2'), ('29051','40774','21697','last','$'), ('29052','40775','21698','max','$,#3'), ('29053','40780','21699','min','$,5m'), ('29054','40784','21700','avg','$,5m'), ('29055','40778','21701','last','$,#1'), ('29056','40778','21701','last','$,#2'), ('29057','40778','21701','last','$'), ('29059','40785','21703','max','$,{$SNMP.TIMEOUT}'), ('29060','40794','21704','change','$'), ('29061','40794','21704','last','$'), ('29062','40796','21704','last','$'), ('29063','40795','21704','last','$'), ('29064','40794','21704','last','$,#2'), ('29065','40790','21705','avg','$,15m'), ('29066','40794','21705','last','$'), ('29067','40793','21705','avg','$,15m'), ('29068','40789','21706','min','$,5m'), ('29069','40792','21706','min','$,5m'), ('29070','40789','21706','max','$,5m'), ('29071','40792','21706','max','$,5m'), ('29072','40795','21707','last','$'), ('29073','40795','21707','last','$,#1'), ('29074','40795','21707','last','$,#2'), ('29075','40797','21708','last','$'), ('29076','40798','21709','max','$,#3'), ('29077','40799','21710','min','$,5m'), ('29078','40800','21711','avg','$,5m'), ('29079','40805','21712','last','$,#1'), ('29080','40805','21712','last','$,#2'), ('29081','40805','21712','last','$'), ('29083','40808','21714','max','$,{$SNMP.TIMEOUT}'), ('29084','40817','21715','change','$'), ('29085','40817','21715','last','$'), ('29086','40819','21715','last','$'), ('29087','40818','21715','last','$'), ('29088','40817','21715','last','$,#2'), ('29089','40813','21716','avg','$,15m'), ('29090','40817','21716','last','$'), ('29091','40816','21716','avg','$,15m'), ('29092','40812','21717','min','$,5m'), ('29093','40815','21717','min','$,5m'), ('29094','40812','21717','max','$,5m'), ('29095','40815','21717','max','$,5m'), ('29096','40818','21718','last','$'), ('29097','40818','21718','last','$,#1'), ('29098','40818','21718','last','$,#2'), ('29099','40820','21719','last','$'), ('29100','40821','21720','max','$,#3'), ('29101','40822','21721','min','$,5m'), ('29102','40823','21722','avg','$,5m'), ('29103','40828','21723','last','$,#1'), ('29104','40828','21723','last','$,#2'), ('29105','40828','21723','last','$'), ('29107','40831','21725','max','$,{$SNMP.TIMEOUT}'), ('29108','40840','21726','change','$'), ('29109','40840','21726','last','$'), ('29110','40842','21726','last','$'), ('29111','40841','21726','last','$'), ('29112','40840','21726','last','$,#2'), ('29113','40836','21727','avg','$,15m'), ('29114','40840','21727','last','$'), ('29115','40839','21727','avg','$,15m'), ('29116','40835','21728','min','$,5m'), ('29117','40838','21728','min','$,5m'), ('29118','40835','21728','max','$,5m'), ('29119','40838','21728','max','$,5m'), ('29120','40841','21729','last','$'), ('29121','40841','21729','last','$,#1'), ('29122','40841','21729','last','$,#2'), ('29123','40843','21730','last','$'), ('29124','40844','21731','max','$,#3'), ('29125','40845','21732','min','$,5m'), ('29126','40846','21733','avg','$,5m'), ('29127','40851','21734','last','$,#1'), ('29128','40851','21734','last','$,#2'), ('29129','40851','21734','last','$'), ('29131','40854','21736','max','$,{$SNMP.TIMEOUT}'), ('29132','40863','21737','change','$'), ('29133','40863','21737','last','$'), ('29134','40865','21737','last','$'), ('29135','40864','21737','last','$'), ('29136','40863','21737','last','$,#2'), ('29137','40859','21738','avg','$,15m'), ('29138','40863','21738','last','$'), ('29139','40862','21738','avg','$,15m'), ('29140','40858','21739','min','$,5m'), ('29141','40861','21739','min','$,5m'), ('29142','40858','21739','max','$,5m'), ('29143','40861','21739','max','$,5m'), ('29144','40864','21740','last','$'), ('29145','40864','21740','last','$,#1'), ('29146','40864','21740','last','$,#2'), ('29147','40866','21741','last','$'), ('29148','40867','21742','max','$,#3'), ('29149','40868','21743','min','$,5m'), ('29150','40869','21744','avg','$,5m'), ('29151','40874','21745','last','$,#1'), ('29152','40874','21745','last','$,#2'), ('29153','40874','21745','last','$'), ('29155','40877','21747','max','$,{$SNMP.TIMEOUT}'), ('29156','40886','21748','change','$'), ('29157','40886','21748','last','$'), ('29158','40888','21748','last','$'), ('29159','40887','21748','last','$'), ('29160','40886','21748','last','$,#2'), ('29161','40882','21749','avg','$,15m'), ('29162','40886','21749','last','$'), ('29163','40885','21749','avg','$,15m'), ('29164','40881','21750','min','$,5m'), ('29165','40884','21750','min','$,5m'), ('29166','40881','21750','max','$,5m'), ('29167','40884','21750','max','$,5m'), ('29168','40887','21751','last','$'), ('29169','40887','21751','last','$,#1'), ('29170','40887','21751','last','$,#2'), ('29171','40889','21752','last','$'), ('29172','40890','21753','max','$,#3'), ('29173','40891','21754','min','$,5m'), ('29174','40892','21755','avg','$,5m'), ('29175','40897','21756','last','$,#1'), ('29176','40897','21756','last','$,#2'), ('29177','40897','21756','last','$'), ('29179','40900','21758','max','$,{$SNMP.TIMEOUT}'), ('29180','40908','21759','change','$'), ('29181','40908','21759','last','$'), ('29182','40910','21759','last','$'), ('29183','40909','21759','last','$'), ('29184','40908','21759','last','$,#2'), ('29185','40904','21760','avg','$,15m'), ('29186','40908','21760','last','$'), ('29187','40907','21760','avg','$,15m'), ('29188','40903','21761','min','$,5m'), ('29189','40906','21761','min','$,5m'), ('29190','40903','21761','max','$,5m'), ('29191','40906','21761','max','$,5m'), ('29192','40909','21762','last','$'), ('29193','40909','21762','last','$,#1'), ('29194','40909','21762','last','$,#2'), ('29195','40911','21763','max','$,#3'), ('29196','40912','21764','min','$,5m'), ('29197','40913','21765','avg','$,5m'), ('29198','40918','21766','last','$,#1'), ('29199','40918','21766','last','$,#2'), ('29200','40918','21766','last','$'), ('29202','40921','21768','max','$,{$SNMP.TIMEOUT}'), ('29203','40930','21769','change','$'), ('29204','40930','21769','last','$'), ('29205','40932','21769','last','$'), ('29206','40931','21769','last','$'), ('29207','40930','21769','last','$,#2'), ('29208','40926','21770','avg','$,15m'), ('29209','40930','21770','last','$'), ('29210','40929','21770','avg','$,15m'), ('29211','40925','21771','min','$,5m'), ('29212','40928','21771','min','$,5m'), ('29213','40925','21771','max','$,5m'), ('29214','40928','21771','max','$,5m'), ('29215','40931','21772','last','$'), ('29216','40931','21772','last','$,#1'), ('29217','40931','21772','last','$,#2'), ('29218','40933','21773','last','$'), ('29219','40934','21774','max','$,#3'), ('29220','40939','21775','min','$,5m'), ('29221','40943','21776','avg','$,5m'), ('29222','40935','21777','last','$,#1'), ('29223','40935','21777','last','$,#2'), ('29224','40935','21777','last','$'), ('29226','40944','21779','max','$,{$SNMP.TIMEOUT}'), ('29227','40952','21780','change','$'), ('29228','40952','21780','last','$'), ('29229','40954','21780','last','$'), ('29230','40953','21780','last','$'), ('29231','40952','21780','last','$,#2'), ('29232','40948','21781','avg','$,15m'), ('29233','40952','21781','last','$'), ('29234','40951','21781','avg','$,15m'), ('29235','40947','21782','min','$,5m'), ('29236','40950','21782','min','$,5m'), ('29237','40947','21782','max','$,5m'), ('29238','40950','21782','max','$,5m'), ('29239','40953','21783','last','$'), ('29240','40953','21783','last','$,#1'), ('29241','40953','21783','last','$,#2'), ('29242','40955','21784','max','$,#3'), ('29243','40960','21785','min','$,5m'), ('29244','40964','21786','avg','$,5m'), ('29245','40956','21787','last','$,#1'), ('29246','40956','21787','last','$,#2'), ('29247','40956','21787','last','$'), ('29249','40965','21789','max','$,{$SNMP.TIMEOUT}'), ('29250','40973','21790','change','$'), ('29251','40973','21790','last','$'), ('29252','40975','21790','last','$'), ('29253','40974','21790','last','$'), ('29254','40973','21790','last','$,#2'), ('29255','40969','21791','avg','$,15m'), ('29256','40973','21791','last','$'), ('29257','40972','21791','avg','$,15m'), ('29258','40968','21792','min','$,5m'), ('29259','40971','21792','min','$,5m'), ('29260','40968','21792','max','$,5m'), ('29261','40971','21792','max','$,5m'), ('29262','40974','21793','last','$'), ('29263','40974','21793','last','$,#1'), ('29264','40974','21793','last','$,#2'), ('29265','40976','21794','max','$,#3'), ('29266','40981','21795','min','$,5m'), ('29267','40985','21796','avg','$,5m'), ('29268','40977','21797','last','$,#1'), ('29269','40977','21797','last','$,#2'), ('29270','40977','21797','last','$'), ('29272','40986','21799','max','$,{$SNMP.TIMEOUT}'), ('29273','40994','21800','change','$'), ('29274','40994','21800','last','$'), ('29275','40996','21800','last','$'), ('29276','40995','21800','last','$'), ('29277','40994','21800','last','$,#2'), ('29278','40990','21801','avg','$,15m'), ('29279','40994','21801','last','$'), ('29280','40993','21801','avg','$,15m'), ('29281','40989','21802','min','$,5m'), ('29282','40992','21802','min','$,5m'), ('29283','40989','21802','max','$,5m'), ('29284','40992','21802','max','$,5m'), ('29285','40995','21803','last','$'), ('29286','40995','21803','last','$,#1'), ('29287','40995','21803','last','$,#2'), ('29288','40997','21804','max','$,#3'), ('29289','41002','21805','min','$,5m'), ('29290','41006','21806','avg','$,5m'), ('29291','40998','21807','last','$,#1'), ('29292','40998','21807','last','$,#2'), ('29293','40998','21807','last','$'), ('29295','41007','21809','max','$,{$SNMP.TIMEOUT}'), ('29296','41015','21810','change','$'), ('29297','41015','21810','last','$'), ('29298','41017','21810','last','$'), ('29299','41016','21810','last','$'), ('29300','41015','21810','last','$,#2'), ('29301','41011','21811','avg','$,15m'), ('29302','41015','21811','last','$'), ('29303','41014','21811','avg','$,15m'), ('29304','41010','21812','min','$,5m'), ('29305','41013','21812','min','$,5m'), ('29306','41010','21812','max','$,5m'), ('29307','41013','21812','max','$,5m'), ('29308','41016','21813','last','$'), ('29309','41016','21813','last','$,#1'), ('29310','41016','21813','last','$,#2'), ('29311','41018','21814','max','$,#3'), ('29312','41023','21815','min','$,5m'), ('29313','41027','21816','avg','$,5m'), ('29314','41019','21817','last','$,#1'), ('29315','41019','21817','last','$,#2'), ('29316','41019','21817','last','$'), ('29318','41028','21819','max','$,{$SNMP.TIMEOUT}'), ('29319','41036','21820','change','$'), ('29320','41036','21820','last','$'), ('29321','41038','21820','last','$'), ('29322','41037','21820','last','$'), ('29323','41036','21820','last','$,#2'), ('29324','41032','21821','avg','$,15m'), ('29325','41036','21821','last','$'), ('29326','41035','21821','avg','$,15m'), ('29327','41031','21822','min','$,5m'), ('29328','41034','21822','min','$,5m'), ('29329','41031','21822','max','$,5m'), ('29330','41034','21822','max','$,5m'), ('29331','41037','21823','last','$'), ('29332','41037','21823','last','$,#1'), ('29333','41037','21823','last','$,#2'), ('29334','41039','21824','max','$,#3'), ('29335','41044','21825','min','$,5m'), ('29336','41048','21826','avg','$,5m'), ('29337','41040','21827','last','$,#1'), ('29338','41040','21827','last','$,#2'), ('29339','41040','21827','last','$'), ('29341','41049','21829','max','$,{$SNMP.TIMEOUT}'), ('29342','41057','21830','change','$'), ('29343','41057','21830','last','$'), ('29344','41059','21830','last','$'), ('29345','41058','21830','last','$'), ('29346','41057','21830','last','$,#2'), ('29347','41053','21831','avg','$,15m'), ('29348','41057','21831','last','$'), ('29349','41056','21831','avg','$,15m'), ('29350','41052','21832','min','$,5m'), ('29351','41055','21832','min','$,5m'), ('29352','41052','21832','max','$,5m'), ('29353','41055','21832','max','$,5m'), ('29354','41058','21833','last','$'), ('29355','41058','21833','last','$,#1'), ('29356','41058','21833','last','$,#2'), ('29357','41060','21834','max','$,#3'), ('29358','41065','21835','min','$,5m'), ('29359','41069','21836','avg','$,5m'), ('29360','41061','21837','last','$,#1'), ('29361','41061','21837','last','$,#2'), ('29362','41061','21837','last','$'), ('29364','41070','21839','max','$,{$SNMP.TIMEOUT}'), ('29365','41078','21840','change','$'), ('29366','41078','21840','last','$'), ('29367','41080','21840','last','$'), ('29368','41079','21840','last','$'), ('29369','41078','21840','last','$,#2'), ('29370','41074','21841','avg','$,15m'), ('29371','41078','21841','last','$'), ('29372','41077','21841','avg','$,15m'), ('29373','41073','21842','min','$,5m'), ('29374','41076','21842','min','$,5m'), ('29375','41073','21842','max','$,5m'), ('29376','41076','21842','max','$,5m'), ('29377','41079','21843','last','$'), ('29378','41079','21843','last','$,#1'), ('29379','41079','21843','last','$,#2'), ('29380','41081','21844','max','$,#3'), ('29381','41086','21845','min','$,5m'), ('29382','41090','21846','avg','$,5m'), ('29383','41082','21847','last','$,#1'), ('29384','41082','21847','last','$,#2'), ('29385','41082','21847','last','$'), ('29387','41091','21849','max','$,{$SNMP.TIMEOUT}'), ('29388','41099','21850','change','$'), ('29389','41099','21850','last','$'), ('29390','41101','21850','last','$'), ('29391','41100','21850','last','$'), ('29392','41099','21850','last','$,#2'), ('29393','41095','21851','avg','$,15m'), ('29394','41099','21851','last','$'), ('29395','41098','21851','avg','$,15m'), ('29396','41094','21852','min','$,5m'), ('29397','41097','21852','min','$,5m'), ('29398','41094','21852','max','$,5m'), ('29399','41097','21852','max','$,5m'), ('29400','41100','21853','last','$'), ('29401','41100','21853','last','$,#1'), ('29402','41100','21853','last','$,#2'), ('29403','41102','21854','max','$,#3'), ('29404','41107','21855','min','$,5m'), ('29405','41111','21856','avg','$,5m'), ('29406','41103','21857','last','$,#1'), ('29407','41103','21857','last','$,#2'), ('29408','41103','21857','last','$'), ('29410','41112','21859','max','$,{$SNMP.TIMEOUT}'), ('29411','41120','21860','change','$'), ('29412','41120','21860','last','$'), ('29413','41122','21860','last','$'), ('29414','41121','21860','last','$'), ('29415','41120','21860','last','$,#2'), ('29416','41116','21861','avg','$,15m'), ('29417','41120','21861','last','$'), ('29418','41119','21861','avg','$,15m'), ('29419','41115','21862','min','$,5m'), ('29420','41118','21862','min','$,5m'), ('29421','41115','21862','max','$,5m'), ('29422','41118','21862','max','$,5m'), ('29423','41121','21863','last','$'), ('29424','41121','21863','last','$,#1'), ('29425','41121','21863','last','$,#2'), ('29426','41123','21864','max','$,#3'), ('29427','41128','21865','min','$,5m'), ('29428','41132','21866','avg','$,5m'), ('29429','41124','21867','last','$,#1'), ('29430','41124','21867','last','$,#2'), ('29431','41124','21867','last','$'), ('29433','41133','21869','max','$,{$SNMP.TIMEOUT}'), ('29434','41141','21870','change','$'), ('29435','41141','21870','last','$'), ('29436','41143','21870','last','$'), ('29437','41142','21870','last','$'), ('29438','41141','21870','last','$,#2'), ('29439','41137','21871','avg','$,15m'), ('29440','41141','21871','last','$'), ('29441','41140','21871','avg','$,15m'), ('29442','41136','21872','min','$,5m'), ('29443','41139','21872','min','$,5m'), ('29444','41136','21872','max','$,5m'), ('29445','41139','21872','max','$,5m'), ('29446','41142','21873','last','$'), ('29447','41142','21873','last','$,#1'), ('29448','41142','21873','last','$,#2'), ('29449','41144','21874','max','$,#3'), ('29450','41149','21875','min','$,5m'), ('29451','41153','21876','avg','$,5m'), ('29452','41145','21877','last','$,#1'), ('29453','41145','21877','last','$,#2'), ('29454','41145','21877','last','$'), ('29456','41154','21879','max','$,{$SNMP.TIMEOUT}'), ('29457','41162','21880','change','$'), ('29458','41162','21880','last','$'), ('29459','41164','21880','last','$'), ('29460','41163','21880','last','$'), ('29461','41162','21880','last','$,#2'), ('29462','41158','21881','avg','$,15m'), ('29463','41162','21881','last','$'), ('29464','41161','21881','avg','$,15m'), ('29465','41157','21882','min','$,5m'), ('29466','41160','21882','min','$,5m'), ('29467','41157','21882','max','$,5m'), ('29468','41160','21882','max','$,5m'), ('29469','41163','21883','last','$'), ('29470','41163','21883','last','$,#1'), ('29471','41163','21883','last','$,#2'), ('29472','41165','21884','max','$,#3'), ('29473','41170','21885','min','$,5m'), ('29474','41174','21886','avg','$,5m'), ('29475','41166','21887','last','$,#1'), ('29476','41166','21887','last','$,#2'), ('29477','41166','21887','last','$'), ('29479','41175','21889','max','$,{$SNMP.TIMEOUT}'), ('29480','41183','21890','change','$'), ('29481','41183','21890','last','$'), ('29482','41185','21890','last','$'), ('29483','41184','21890','last','$'), ('29484','41183','21890','last','$,#2'), ('29485','41179','21891','avg','$,15m'), ('29486','41183','21891','last','$'), ('29487','41182','21891','avg','$,15m'), ('29488','41178','21892','min','$,5m'), ('29489','41181','21892','min','$,5m'), ('29490','41178','21892','max','$,5m'), ('29491','41181','21892','max','$,5m'), ('29492','41184','21893','last','$'), ('29493','41184','21893','last','$,#1'), ('29494','41184','21893','last','$,#2'), ('29495','41186','21894','max','$,#3'), ('29496','41191','21895','min','$,5m'), ('29497','41195','21896','avg','$,5m'), ('29498','41187','21897','last','$,#1'), ('29499','41187','21897','last','$,#2'), ('29500','41187','21897','last','$'), ('29502','41196','21899','max','$,{$SNMP.TIMEOUT}'), ('29503','41204','21900','change','$'), ('29504','41204','21900','last','$'), ('29505','41206','21900','last','$'), ('29506','41205','21900','last','$'), ('29507','41204','21900','last','$,#2'), ('29508','41200','21901','avg','$,15m'), ('29509','41204','21901','last','$'), ('29510','41203','21901','avg','$,15m'), ('29511','41199','21902','min','$,5m'), ('29512','41202','21902','min','$,5m'), ('29513','41199','21902','max','$,5m'), ('29514','41202','21902','max','$,5m'), ('29515','41205','21903','last','$'), ('29516','41205','21903','last','$,#1'), ('29517','41205','21903','last','$,#2'), ('29518','41207','21904','max','$,#3'), ('29519','41212','21905','min','$,5m'), ('29520','41216','21906','avg','$,5m'), ('29521','41208','21907','last','$,#1'), ('29522','41208','21907','last','$,#2'), ('29523','41208','21907','last','$'), ('29525','41217','21909','max','$,{$SNMP.TIMEOUT}'), ('29526','41225','21910','change','$'), ('29527','41225','21910','last','$'), ('29528','41227','21910','last','$'), ('29529','41226','21910','last','$'), ('29530','41225','21910','last','$,#2'), ('29531','41221','21911','avg','$,15m'), ('29532','41225','21911','last','$'), ('29533','41224','21911','avg','$,15m'), ('29534','41220','21912','min','$,5m'), ('29535','41223','21912','min','$,5m'), ('29536','41220','21912','max','$,5m'), ('29537','41223','21912','max','$,5m'), ('29538','41226','21913','last','$'), ('29539','41226','21913','last','$,#1'), ('29540','41226','21913','last','$,#2'), ('29541','41228','21914','max','$,#3'), ('29542','41233','21915','min','$,5m'), ('29543','41237','21916','avg','$,5m'), ('29544','41229','21917','last','$,#1'), ('29545','41229','21917','last','$,#2'), ('29546','41229','21917','last','$'), ('29548','41238','21919','max','$,{$SNMP.TIMEOUT}'), ('29549','41246','21920','change','$'), ('29550','41246','21920','last','$'), ('29551','41248','21920','last','$'), ('29552','41247','21920','last','$'), ('29553','41246','21920','last','$,#2'), ('29554','41242','21921','avg','$,15m'), ('29555','41246','21921','last','$'), ('29556','41245','21921','avg','$,15m'), ('29557','41241','21922','min','$,5m'), ('29558','41244','21922','min','$,5m'), ('29559','41241','21922','max','$,5m'), ('29560','41244','21922','max','$,5m'), ('29561','41247','21923','last','$'), ('29562','41247','21923','last','$,#1'), ('29563','41247','21923','last','$,#2'), ('29564','41249','21924','max','$,#3'), ('29565','41254','21925','min','$,5m'), ('29566','41258','21926','avg','$,5m'), ('29567','41250','21927','last','$,#1'), ('29568','41250','21927','last','$,#2'), ('29569','41250','21927','last','$'), ('29571','41259','21929','max','$,{$SNMP.TIMEOUT}'), ('29572','41267','21930','change','$'), ('29573','41267','21930','last','$'), ('29574','41269','21930','last','$'), ('29575','41268','21930','last','$'), ('29576','41267','21930','last','$,#2'), ('29577','41263','21931','avg','$,15m'), ('29578','41267','21931','last','$'), ('29579','41266','21931','avg','$,15m'), ('29580','41262','21932','min','$,5m'), ('29581','41265','21932','min','$,5m'), ('29582','41262','21932','max','$,5m'), ('29583','41265','21932','max','$,5m'), ('29584','41268','21933','last','$'), ('29585','41268','21933','last','$,#1'), ('29586','41268','21933','last','$,#2'), ('29587','41270','21934','max','$,#3'), ('29588','41275','21935','min','$,5m'), ('29589','41279','21936','avg','$,5m'), ('29590','41271','21937','last','$,#1'), ('29591','41271','21937','last','$,#2'), ('29592','41271','21937','last','$'), ('29594','41280','21939','max','$,{$SNMP.TIMEOUT}'), ('29595','41288','21940','change','$'), ('29596','41288','21940','last','$'), ('29597','41290','21940','last','$'), ('29598','41289','21940','last','$'), ('29599','41288','21940','last','$,#2'), ('29600','41284','21941','avg','$,15m'), ('29601','41288','21941','last','$'), ('29602','41287','21941','avg','$,15m'), ('29603','41283','21942','min','$,5m'), ('29604','41286','21942','min','$,5m'), ('29605','41283','21942','max','$,5m'), ('29606','41286','21942','max','$,5m'), ('29607','41289','21943','last','$'), ('29608','41289','21943','last','$,#1'), ('29609','41289','21943','last','$,#2'), ('29610','41291','21944','max','$,#3'), ('29611','41296','21945','min','$,5m'), ('29612','41300','21946','avg','$,5m'), ('29613','41292','21947','last','$,#1'), ('29614','41292','21947','last','$,#2'), ('29615','41292','21947','last','$'), ('29617','41301','21949','max','$,{$SNMP.TIMEOUT}'), ('29618','41309','21950','change','$'), ('29619','41309','21950','last','$'), ('29620','41311','21950','last','$'), ('29621','41310','21950','last','$'), ('29622','41309','21950','last','$,#2'), ('29623','41305','21951','avg','$,15m'), ('29624','41309','21951','last','$'), ('29625','41308','21951','avg','$,15m'), ('29626','41304','21952','min','$,5m'), ('29627','41307','21952','min','$,5m'), ('29628','41304','21952','max','$,5m'), ('29629','41307','21952','max','$,5m'), ('29630','41310','21953','last','$'), ('29631','41310','21953','last','$,#1'), ('29632','41310','21953','last','$,#2'), ('29633','41312','21954','max','$,#3'), ('29634','41317','21955','min','$,5m'), ('29635','41321','21956','avg','$,5m'), ('29636','41313','21957','last','$,#1'), ('29637','41313','21957','last','$,#2'), ('29638','41313','21957','last','$'), ('29640','41322','21959','max','$,{$SNMP.TIMEOUT}'), ('29641','41330','21960','change','$'), ('29642','41330','21960','last','$'), ('29643','41332','21960','last','$'), ('29644','41331','21960','last','$'), ('29645','41330','21960','last','$,#2'), ('29646','41326','21961','avg','$,15m'), ('29647','41330','21961','last','$'), ('29648','41329','21961','avg','$,15m'), ('29649','41325','21962','min','$,5m'), ('29650','41328','21962','min','$,5m'), ('29651','41325','21962','max','$,5m'), ('29652','41328','21962','max','$,5m'), ('29653','41331','21963','last','$'), ('29654','41331','21963','last','$,#1'), ('29655','41331','21963','last','$,#2'), ('29656','41333','21964','max','$,#3'), ('29657','41338','21965','min','$,5m'), ('29658','41342','21966','avg','$,5m'), ('29659','41334','21967','last','$,#1'), ('29660','41334','21967','last','$,#2'), ('29661','41334','21967','last','$'), ('29663','41343','21969','max','$,{$SNMP.TIMEOUT}'), ('29664','41351','21970','change','$'), ('29665','41351','21970','last','$'), ('29666','41353','21970','last','$'), ('29667','41352','21970','last','$'), ('29668','41351','21970','last','$,#2'), ('29669','41347','21971','avg','$,15m'), ('29670','41351','21971','last','$'), ('29671','41350','21971','avg','$,15m'), ('29672','41346','21972','min','$,5m'), ('29673','41349','21972','min','$,5m'), ('29674','41346','21972','max','$,5m'), ('29675','41349','21972','max','$,5m'), ('29676','41352','21973','last','$'), ('29677','41352','21973','last','$,#1'), ('29678','41352','21973','last','$,#2'), ('29679','41354','21974','max','$,#3'), ('29680','41359','21975','min','$,5m'), ('29681','41363','21976','avg','$,5m'), ('29682','41355','21977','last','$,#1'), ('29683','41355','21977','last','$,#2'), ('29684','41355','21977','last','$'), ('29686','41364','21979','max','$,{$SNMP.TIMEOUT}'), ('29687','41372','21980','change','$'), ('29688','41372','21980','last','$'), ('29689','41374','21980','last','$'), ('29690','41373','21980','last','$'), ('29691','41372','21980','last','$,#2'), ('29692','41368','21981','avg','$,15m'), ('29693','41372','21981','last','$'), ('29694','41371','21981','avg','$,15m'), ('29695','41367','21982','min','$,5m'), ('29696','41370','21982','min','$,5m'), ('29697','41367','21982','max','$,5m'), ('29698','41370','21982','max','$,5m'), ('29699','41373','21983','last','$'), ('29700','41373','21983','last','$,#1'), ('29701','41373','21983','last','$,#2'), ('29702','41375','21984','max','$,#3'), ('29703','41380','21985','min','$,5m'), ('29704','41384','21986','avg','$,5m'), ('29705','41376','21987','last','$,#1'), ('29706','41376','21987','last','$,#2'), ('29707','41376','21987','last','$'), ('29709','41385','21989','max','$,{$SNMP.TIMEOUT}'), ('29710','41393','21990','change','$'), ('29711','41393','21990','last','$'), ('29712','41395','21990','last','$'), ('29713','41394','21990','last','$'), ('29714','41393','21990','last','$,#2'), ('29715','41389','21991','avg','$,15m'), ('29716','41393','21991','last','$'), ('29717','41392','21991','avg','$,15m'), ('29718','41388','21992','min','$,5m'), ('29719','41391','21992','min','$,5m'), ('29720','41388','21992','max','$,5m'), ('29721','41391','21992','max','$,5m'), ('29722','41394','21993','last','$'), ('29723','41394','21993','last','$,#1'), ('29724','41394','21993','last','$,#2'), ('29725','41396','21994','max','$,#3'), ('29726','41401','21995','min','$,5m'), ('29727','41405','21996','avg','$,5m'), ('29728','41397','21997','last','$,#1'), ('29729','41397','21997','last','$,#2'), ('29730','41397','21997','last','$'), ('29732','41406','21999','max','$,{$SNMP.TIMEOUT}'), ('29733','41414','22000','change','$'), ('29734','41414','22000','last','$'), ('29735','41416','22000','last','$'), ('29736','41415','22000','last','$'), ('29737','41414','22000','last','$,#2'), ('29738','41410','22001','avg','$,15m'), ('29739','41414','22001','last','$'), ('29740','41413','22001','avg','$,15m'), ('29741','41409','22002','min','$,5m'), ('29742','41412','22002','min','$,5m'), ('29743','41409','22002','max','$,5m'), ('29744','41412','22002','max','$,5m'), ('29745','41415','22003','last','$'), ('29746','41415','22003','last','$,#1'), ('29747','41415','22003','last','$,#2'), ('29748','41417','22004','max','$,#3'), ('29749','41422','22005','min','$,5m'), ('29750','41426','22006','avg','$,5m'), ('29751','41418','22007','last','$,#1'), ('29752','41418','22007','last','$,#2'), ('29753','41418','22007','last','$'), ('29755','41427','22009','max','$,{$SNMP.TIMEOUT}'), ('29756','41435','22010','change','$'), ('29757','41435','22010','last','$'), ('29758','41437','22010','last','$'), ('29759','41436','22010','last','$'), ('29760','41435','22010','last','$,#2'), ('29761','41431','22011','avg','$,15m'), ('29762','41435','22011','last','$'), ('29763','41434','22011','avg','$,15m'), ('29764','41430','22012','min','$,5m'), ('29765','41433','22012','min','$,5m'), ('29766','41430','22012','max','$,5m'), ('29767','41433','22012','max','$,5m'), ('29768','41436','22013','last','$'), ('29769','41436','22013','last','$,#1'), ('29770','41436','22013','last','$,#2'), ('29771','41438','22014','max','$,#3'), ('29772','41443','22015','min','$,5m'), ('29773','41447','22016','avg','$,5m'), ('29774','41439','22017','last','$,#1'), ('29775','41439','22017','last','$,#2'), ('29776','41439','22017','last','$'), ('29778','41448','22019','max','$,{$SNMP.TIMEOUT}'), ('29779','41456','22020','change','$'), ('29780','41456','22020','last','$'), ('29781','41458','22020','last','$'), ('29782','41457','22020','last','$'), ('29783','41456','22020','last','$,#2'), ('29784','41452','22021','avg','$,15m'), ('29785','41456','22021','last','$'), ('29786','41455','22021','avg','$,15m'), ('29787','41451','22022','min','$,5m'), ('29788','41454','22022','min','$,5m'), ('29789','41451','22022','max','$,5m'), ('29790','41454','22022','max','$,5m'), ('29791','41457','22023','last','$'), ('29792','41457','22023','last','$,#1'), ('29793','41457','22023','last','$,#2'), ('29794','41459','22024','max','$,#3'), ('29795','41464','22025','min','$,5m'), ('29796','41468','22026','avg','$,5m'), ('29797','41460','22027','last','$,#1'), ('29798','41460','22027','last','$,#2'), ('29799','41460','22027','last','$'), ('29801','41469','22029','max','$,{$SNMP.TIMEOUT}'), ('29802','41477','22030','change','$'), ('29803','41477','22030','last','$'), ('29804','41479','22030','last','$'), ('29805','41478','22030','last','$'), ('29806','41477','22030','last','$,#2'), ('29807','41473','22031','avg','$,15m'), ('29808','41477','22031','last','$'), ('29809','41476','22031','avg','$,15m'), ('29810','41472','22032','min','$,5m'), ('29811','41475','22032','min','$,5m'), ('29812','41472','22032','max','$,5m'), ('29813','41475','22032','max','$,5m'), ('29814','41478','22033','last','$'), ('29815','41478','22033','last','$,#1'), ('29816','41478','22033','last','$,#2'), ('29817','41480','22034','max','$,#3'), ('29818','41485','22035','min','$,5m'), ('29819','41489','22036','avg','$,5m'), ('29820','41481','22037','last','$,#1'), ('29821','41481','22037','last','$,#2'), ('29822','41481','22037','last','$'), ('29824','41490','22039','max','$,{$SNMP.TIMEOUT}'), ('29825','41498','22040','change','$'), ('29826','41498','22040','last','$'), ('29827','41500','22040','last','$'), ('29828','41499','22040','last','$'), ('29829','41498','22040','last','$,#2'), ('29830','41494','22041','avg','$,15m'), ('29831','41498','22041','last','$'), ('29832','41497','22041','avg','$,15m'), ('29833','41493','22042','min','$,5m'), ('29834','41496','22042','min','$,5m'), ('29835','41493','22042','max','$,5m'), ('29836','41496','22042','max','$,5m'), ('29837','41499','22043','last','$'), ('29838','41499','22043','last','$,#1'), ('29839','41499','22043','last','$,#2'), ('29840','41501','22044','max','$,#3'), ('29841','41506','22045','min','$,5m'), ('29842','41510','22046','avg','$,5m'), ('29843','41502','22047','last','$,#1'), ('29844','41502','22047','last','$,#2'), ('29845','41502','22047','last','$'), ('29847','41511','22049','max','$,{$SNMP.TIMEOUT}'), ('29848','41519','22050','change','$'), ('29849','41519','22050','last','$'), ('29850','41521','22050','last','$'), ('29851','41520','22050','last','$'), ('29852','41519','22050','last','$,#2'), ('29853','41515','22051','avg','$,15m'), ('29854','41519','22051','last','$'), ('29855','41518','22051','avg','$,15m'), ('29856','41514','22052','min','$,5m'), ('29857','41517','22052','min','$,5m'), ('29858','41514','22052','max','$,5m'), ('29859','41517','22052','max','$,5m'), ('29860','41520','22053','last','$'), ('29861','41520','22053','last','$,#1'), ('29862','41520','22053','last','$,#2'), ('29863','41522','22054','max','$,#3'), ('29864','41527','22055','min','$,5m'), ('29865','41531','22056','avg','$,5m'), ('29866','41523','22057','last','$,#1'), ('29867','41523','22057','last','$,#2'), ('29868','41523','22057','last','$'), ('29870','41532','22059','max','$,{$SNMP.TIMEOUT}'), ('29871','41540','22060','change','$'), ('29872','41540','22060','last','$'), ('29873','41542','22060','last','$'), ('29874','41541','22060','last','$'), ('29875','41540','22060','last','$,#2'), ('29876','41536','22061','avg','$,15m'), ('29877','41540','22061','last','$'), ('29878','41539','22061','avg','$,15m'), ('29879','41535','22062','min','$,5m'), ('29880','41538','22062','min','$,5m'), ('29881','41535','22062','max','$,5m'), ('29882','41538','22062','max','$,5m'), ('29883','41541','22063','last','$'), ('29884','41541','22063','last','$,#1'), ('29885','41541','22063','last','$,#2'), ('29886','41543','22064','max','$,#3'), ('29887','41548','22065','min','$,5m'), ('29888','41552','22066','avg','$,5m'), ('29889','41544','22067','last','$,#1'), ('29890','41544','22067','last','$,#2'), ('29891','41544','22067','last','$'), ('29893','41553','22069','max','$,{$SNMP.TIMEOUT}'), ('29894','41561','22070','change','$'), ('29895','41561','22070','last','$'), ('29896','41563','22070','last','$'), ('29897','41562','22070','last','$'), ('29898','41561','22070','last','$,#2'), ('29899','41557','22071','avg','$,15m'), ('29900','41561','22071','last','$'), ('29901','41560','22071','avg','$,15m'), ('29902','41556','22072','min','$,5m'), ('29903','41559','22072','min','$,5m'), ('29904','41556','22072','max','$,5m'), ('29905','41559','22072','max','$,5m'), ('29906','41562','22073','last','$'), ('29907','41562','22073','last','$,#1'), ('29908','41562','22073','last','$,#2'), ('29909','41564','22074','max','$,#3'), ('29910','41569','22075','min','$,5m'), ('29911','41573','22076','avg','$,5m'), ('29912','41565','22077','last','$,#1'), ('29913','41565','22077','last','$,#2'), ('29914','41565','22077','last','$'), ('29916','41574','22079','max','$,{$SNMP.TIMEOUT}'), ('29917','41582','22080','change','$'), ('29918','41582','22080','last','$'), ('29919','41584','22080','last','$'), ('29920','41583','22080','last','$'), ('29921','41582','22080','last','$,#2'), ('29922','41578','22081','avg','$,15m'), ('29923','41582','22081','last','$'), ('29924','41581','22081','avg','$,15m'), ('29925','41577','22082','min','$,5m'), ('29926','41580','22082','min','$,5m'), ('29927','41577','22082','max','$,5m'), ('29928','41580','22082','max','$,5m'), ('29929','41583','22083','last','$'), ('29930','41583','22083','last','$,#1'), ('29931','41583','22083','last','$,#2'), ('29932','41585','22084','max','$,#3'), ('29933','41590','22085','min','$,5m'), ('29934','41594','22086','avg','$,5m'), ('29935','41586','22087','last','$,#1'), ('29936','41586','22087','last','$,#2'), ('29937','41586','22087','last','$'), ('29939','41595','22089','max','$,{$SNMP.TIMEOUT}'), ('29940','41603','22090','change','$'), ('29941','41603','22090','last','$'), ('29942','41605','22090','last','$'), ('29943','41604','22090','last','$'), ('29944','41603','22090','last','$,#2'), ('29945','41599','22091','avg','$,15m'), ('29946','41603','22091','last','$'), ('29947','41602','22091','avg','$,15m'), ('29948','41598','22092','min','$,5m'), ('29949','41601','22092','min','$,5m'), ('29950','41598','22092','max','$,5m'), ('29951','41601','22092','max','$,5m'), ('29952','41604','22093','last','$'), ('29953','41604','22093','last','$,#1'), ('29954','41604','22093','last','$,#2'), ('29955','41606','22094','max','$,#3'), ('29956','41611','22095','min','$,5m'), ('29957','41615','22096','avg','$,5m'), ('29958','41607','22097','last','$,#1'), ('29959','41607','22097','last','$,#2'), ('29960','41607','22097','last','$'), ('29962','41616','22099','max','$,{$SNMP.TIMEOUT}'), ('29963','41624','22100','change','$'), ('29964','41624','22100','last','$'), ('29965','41626','22100','last','$'), ('29966','41625','22100','last','$'), ('29967','41624','22100','last','$,#2'), ('29968','41620','22101','avg','$,15m'), ('29969','41624','22101','last','$'), ('29970','41623','22101','avg','$,15m'), ('29971','41619','22102','min','$,5m'), ('29972','41622','22102','min','$,5m'), ('29973','41619','22102','max','$,5m'), ('29974','41622','22102','max','$,5m'), ('29975','41625','22103','last','$'), ('29976','41625','22103','last','$,#1'), ('29977','41625','22103','last','$,#2'), ('29978','41627','22104','max','$,#3'), ('29979','41632','22105','min','$,5m'), ('29980','41636','22106','avg','$,5m'), ('29981','41628','22107','last','$,#1'), ('29982','41628','22107','last','$,#2'), ('29983','41628','22107','last','$'), ('29985','41637','22109','max','$,{$SNMP.TIMEOUT}'), ('29986','41645','22110','change','$'), ('29987','41645','22110','last','$'), ('29988','41647','22110','last','$'), ('29989','41646','22110','last','$'), ('29990','41645','22110','last','$,#2'), ('29991','41641','22111','avg','$,15m'), ('29992','41645','22111','last','$'), ('29993','41644','22111','avg','$,15m'), ('29994','41640','22112','min','$,5m'), ('29995','41643','22112','min','$,5m'), ('29996','41640','22112','max','$,5m'), ('29997','41643','22112','max','$,5m'), ('29998','41646','22113','last','$'), ('29999','41646','22113','last','$,#1'), ('30000','41646','22113','last','$,#2'), ('30001','41648','22114','max','$,#3'), ('30002','41653','22115','min','$,5m'), ('30003','41657','22116','avg','$,5m'), ('30004','41649','22117','last','$,#1'), ('30005','41649','22117','last','$,#2'), ('30006','41649','22117','last','$'), ('30008','41658','22119','max','$,{$SNMP.TIMEOUT}'), ('30009','41666','22120','change','$'), ('30010','41666','22120','last','$'), ('30011','41668','22120','last','$'), ('30012','41667','22120','last','$'), ('30013','41666','22120','last','$,#2'), ('30014','41662','22121','avg','$,15m'), ('30015','41666','22121','last','$'), ('30016','41665','22121','avg','$,15m'), ('30017','41661','22122','min','$,5m'), ('30018','41664','22122','min','$,5m'), ('30019','41661','22122','max','$,5m'), ('30020','41664','22122','max','$,5m'), ('30021','41667','22123','last','$'), ('30022','41667','22123','last','$,#1'), ('30023','41667','22123','last','$,#2'), ('30024','41669','22124','max','$,#3'), ('30025','41674','22125','min','$,5m'), ('30026','41678','22126','avg','$,5m'), ('30027','41670','22127','last','$,#1'), ('30028','41670','22127','last','$,#2'), ('30029','41670','22127','last','$'), ('30031','41679','22129','max','$,{$SNMP.TIMEOUT}'), ('30032','41687','22130','change','$'), ('30033','41687','22130','last','$'), ('30034','41689','22130','last','$'), ('30035','41688','22130','last','$'), ('30036','41687','22130','last','$,#2'), ('30037','41683','22131','avg','$,15m'), ('30038','41687','22131','last','$'), ('30039','41686','22131','avg','$,15m'), ('30040','41682','22132','min','$,5m'), ('30041','41685','22132','min','$,5m'), ('30042','41682','22132','max','$,5m'), ('30043','41685','22132','max','$,5m'), ('30044','41688','22133','last','$'), ('30045','41688','22133','last','$,#1'), ('30046','41688','22133','last','$,#2'), ('30047','41690','22134','max','$,#3'), ('30048','41695','22135','min','$,5m'), ('30049','41699','22136','avg','$,5m'), ('30050','41691','22137','last','$,#1'), ('30051','41691','22137','last','$,#2'), ('30052','41691','22137','last','$'), ('30054','41700','22139','max','$,{$SNMP.TIMEOUT}'), ('30055','41708','22140','change','$'), ('30056','41708','22140','last','$'), ('30057','41710','22140','last','$'), ('30058','41709','22140','last','$'), ('30059','41708','22140','last','$,#2'), ('30060','41704','22141','avg','$,15m'), ('30061','41708','22141','last','$'), ('30062','41707','22141','avg','$,15m'), ('30063','41703','22142','min','$,5m'), ('30064','41706','22142','min','$,5m'), ('30065','41703','22142','max','$,5m'), ('30066','41706','22142','max','$,5m'), ('30067','41709','22143','last','$'), ('30068','41709','22143','last','$,#1'), ('30069','41709','22143','last','$,#2'), ('30070','41711','22144','max','$,#3'), ('30071','41716','22145','min','$,5m'), ('30072','41720','22146','avg','$,5m'), ('30073','41712','22147','last','$,#1'), ('30074','41712','22147','last','$,#2'), ('30075','41712','22147','last','$'), ('30077','41721','22149','max','$,{$SNMP.TIMEOUT}'), ('30078','41729','22150','change','$'), ('30079','41729','22150','last','$'), ('30080','41731','22150','last','$'), ('30081','41730','22150','last','$'), ('30082','41729','22150','last','$,#2'), ('30083','41725','22151','avg','$,15m'), ('30084','41729','22151','last','$'), ('30085','41728','22151','avg','$,15m'), ('30086','41724','22152','min','$,5m'), ('30087','41727','22152','min','$,5m'), ('30088','41724','22152','max','$,5m'), ('30089','41727','22152','max','$,5m'), ('30090','41730','22153','last','$'), ('30091','41730','22153','last','$,#1'), ('30092','41730','22153','last','$,#2'), ('30093','41732','22154','max','$,#3'), ('30094','41737','22155','min','$,5m'), ('30095','41741','22156','avg','$,5m'), ('30096','41733','22157','last','$,#1'), ('30097','41733','22157','last','$,#2'), ('30098','41733','22157','last','$'), ('30100','41742','22159','max','$,{$SNMP.TIMEOUT}'), ('30101','41750','22160','change','$'), ('30102','41750','22160','last','$'), ('30103','41752','22160','last','$'), ('30104','41751','22160','last','$'), ('30105','41750','22160','last','$,#2'), ('30106','41746','22161','avg','$,15m'), ('30107','41750','22161','last','$'), ('30108','41749','22161','avg','$,15m'), ('30109','41745','22162','min','$,5m'), ('30110','41748','22162','min','$,5m'), ('30111','41745','22162','max','$,5m'), ('30112','41748','22162','max','$,5m'), ('30113','41751','22163','last','$'), ('30114','41751','22163','last','$,#1'), ('30115','41751','22163','last','$,#2'), ('30116','41753','22164','max','$,#3'), ('30117','41758','22165','min','$,5m'), ('30118','41762','22166','avg','$,5m'), ('30119','41754','22167','last','$,#1'), ('30120','41754','22167','last','$,#2'), ('30121','41754','22167','last','$'), ('30123','41763','22169','max','$,{$SNMP.TIMEOUT}'), ('30124','41771','22170','change','$'), ('30125','41771','22170','last','$'), ('30126','41773','22170','last','$'), ('30127','41772','22170','last','$'), ('30128','41771','22170','last','$,#2'), ('30129','41767','22171','avg','$,15m'), ('30130','41771','22171','last','$'), ('30131','41770','22171','avg','$,15m'), ('30132','41766','22172','min','$,5m'), ('30133','41769','22172','min','$,5m'), ('30134','41766','22172','max','$,5m'), ('30135','41769','22172','max','$,5m'), ('30136','41772','22173','last','$'), ('30137','41772','22173','last','$,#1'), ('30138','41772','22173','last','$,#2'), ('30139','41774','22174','max','$,#3'), ('30140','41779','22175','min','$,5m'), ('30141','41783','22176','avg','$,5m'), ('30142','41775','22177','last','$,#1'), ('30143','41775','22177','last','$,#2'), ('30144','41775','22177','last','$'), ('30146','41784','22179','max','$,{$SNMP.TIMEOUT}'), ('30147','41792','22180','change','$'), ('30148','41792','22180','last','$'), ('30149','41794','22180','last','$'), ('30150','41793','22180','last','$'), ('30151','41792','22180','last','$,#2'), ('30152','41788','22181','avg','$,15m'), ('30153','41792','22181','last','$'), ('30154','41791','22181','avg','$,15m'), ('30155','41787','22182','min','$,5m'), ('30156','41790','22182','min','$,5m'), ('30157','41787','22182','max','$,5m'), ('30158','41790','22182','max','$,5m'), ('30159','41793','22183','last','$'), ('30160','41793','22183','last','$,#1'), ('30161','41793','22183','last','$,#2'), ('30162','41795','22184','max','$,#3'), ('30163','41800','22185','min','$,5m'), ('30164','41804','22186','avg','$,5m'), ('30165','41796','22187','last','$,#1'), ('30166','41796','22187','last','$,#2'), ('30167','41796','22187','last','$'), ('30169','41805','22189','max','$,{$SNMP.TIMEOUT}'), ('30170','41813','22190','change','$'), ('30171','41813','22190','last','$'), ('30172','41815','22190','last','$'), ('30173','41814','22190','last','$'), ('30174','41813','22190','last','$,#2'), ('30175','41809','22191','avg','$,15m'), ('30176','41813','22191','last','$'), ('30177','41812','22191','avg','$,15m'), ('30178','41808','22192','min','$,5m'), ('30179','41811','22192','min','$,5m'), ('30180','41808','22192','max','$,5m'), ('30181','41811','22192','max','$,5m'), ('30182','41814','22193','last','$'), ('30183','41814','22193','last','$,#1'), ('30184','41814','22193','last','$,#2'), ('30185','41816','22194','max','$,#3'), ('30186','41821','22195','min','$,5m'), ('30187','41825','22196','avg','$,5m'), ('30188','41817','22197','last','$,#1'), ('30189','41817','22197','last','$,#2'), ('30190','41817','22197','last','$'), ('30192','41826','22199','max','$,{$SNMP.TIMEOUT}'), ('30193','41834','22200','change','$'), ('30194','41834','22200','last','$'), ('30195','41836','22200','last','$'), ('30196','41835','22200','last','$'), ('30197','41834','22200','last','$,#2'), ('30198','41830','22201','avg','$,15m'), ('30199','41834','22201','last','$'), ('30200','41833','22201','avg','$,15m'), ('30201','41829','22202','min','$,5m'), ('30202','41832','22202','min','$,5m'), ('30203','41829','22202','max','$,5m'), ('30204','41832','22202','max','$,5m'), ('30205','41835','22203','last','$'), ('30206','41835','22203','last','$,#1'), ('30207','41835','22203','last','$,#2'), ('30208','41837','22204','max','$,#3'), ('30209','41842','22205','min','$,5m'), ('30210','41846','22206','avg','$,5m'), ('30211','41838','22207','last','$,#1'), ('30212','41838','22207','last','$,#2'), ('30213','41838','22207','last','$'), ('30215','41847','22209','max','$,{$SNMP.TIMEOUT}'), ('30216','41855','22210','change','$'), ('30217','41855','22210','last','$'), ('30218','41857','22210','last','$'), ('30219','41856','22210','last','$'), ('30220','41855','22210','last','$,#2'), ('30221','41851','22211','avg','$,15m'), ('30222','41855','22211','last','$'), ('30223','41854','22211','avg','$,15m'), ('30224','41850','22212','min','$,5m'), ('30225','41853','22212','min','$,5m'), ('30226','41850','22212','max','$,5m'), ('30227','41853','22212','max','$,5m'), ('30228','41856','22213','last','$'), ('30229','41856','22213','last','$,#1'), ('30230','41856','22213','last','$,#2'), ('30231','41858','22214','max','$,#3'), ('30232','41863','22215','min','$,5m'), ('30233','41867','22216','avg','$,5m'), ('30234','41859','22217','last','$,#1'), ('30235','41859','22217','last','$,#2'), ('30236','41859','22217','last','$'), ('30238','41868','22219','max','$,{$SNMP.TIMEOUT}'), ('30239','41876','22220','change','$'), ('30240','41876','22220','last','$'), ('30241','41878','22220','last','$'), ('30242','41877','22220','last','$'), ('30243','41876','22220','last','$,#2'), ('30244','41872','22221','avg','$,15m'), ('30245','41876','22221','last','$'), ('30246','41875','22221','avg','$,15m'), ('30247','41871','22222','min','$,5m'), ('30248','41874','22222','min','$,5m'), ('30249','41871','22222','max','$,5m'), ('30250','41874','22222','max','$,5m'), ('30251','41877','22223','last','$'), ('30252','41877','22223','last','$,#1'), ('30253','41877','22223','last','$,#2'), ('30254','41879','22224','max','$,#3'), ('30255','41884','22225','min','$,5m'), ('30256','41888','22226','avg','$,5m'), ('30257','41880','22227','last','$,#1'), ('30258','41880','22227','last','$,#2'), ('30259','41880','22227','last','$'), ('30261','41889','22229','max','$,{$SNMP.TIMEOUT}'), ('30262','41897','22230','change','$'), ('30263','41897','22230','last','$'), ('30264','41899','22230','last','$'), ('30265','41898','22230','last','$'), ('30266','41897','22230','last','$,#2'), ('30267','41893','22231','avg','$,15m'), ('30268','41897','22231','last','$'), ('30269','41896','22231','avg','$,15m'), ('30270','41892','22232','min','$,5m'), ('30271','41895','22232','min','$,5m'), ('30272','41892','22232','max','$,5m'), ('30273','41895','22232','max','$,5m'), ('30274','41898','22233','last','$'), ('30275','41898','22233','last','$,#1'), ('30276','41898','22233','last','$,#2'), ('30277','41900','22234','max','$,#3'), ('30278','41905','22235','min','$,5m'), ('30279','41909','22236','avg','$,5m'), ('30280','41901','22237','last','$,#1'), ('30281','41901','22237','last','$,#2'), ('30282','41901','22237','last','$'), ('30284','41910','22239','max','$,{$SNMP.TIMEOUT}'), ('30285','41918','22240','change','$'), ('30286','41918','22240','last','$'), ('30287','41920','22240','last','$'), ('30288','41919','22240','last','$'), ('30289','41918','22240','last','$,#2'), ('30290','41914','22241','avg','$,15m'), ('30291','41918','22241','last','$'), ('30292','41917','22241','avg','$,15m'), ('30293','41913','22242','min','$,5m'), ('30294','41916','22242','min','$,5m'), ('30295','41913','22242','max','$,5m'), ('30296','41916','22242','max','$,5m'), ('30297','41919','22243','last','$'), ('30298','41919','22243','last','$,#1'), ('30299','41919','22243','last','$,#2'), ('30300','41921','22244','max','$,#3'), ('30301','41926','22245','min','$,5m'), ('30302','41930','22246','avg','$,5m'), ('30303','41922','22247','last','$,#1'), ('30304','41922','22247','last','$,#2'), ('30305','41922','22247','last','$'), ('30307','41931','22249','max','$,{$SNMP.TIMEOUT}'), ('30308','41939','22250','change','$'), ('30309','41939','22250','last','$'), ('30310','41941','22250','last','$'), ('30311','41940','22250','last','$'), ('30312','41939','22250','last','$,#2'), ('30313','41935','22251','avg','$,15m'), ('30314','41939','22251','last','$'), ('30315','41938','22251','avg','$,15m'), ('30316','41934','22252','min','$,5m'), ('30317','41937','22252','min','$,5m'), ('30318','41934','22252','max','$,5m'), ('30319','41937','22252','max','$,5m'), ('30320','41940','22253','last','$'), ('30321','41940','22253','last','$,#1'), ('30322','41940','22253','last','$,#2'), ('30323','41942','22254','max','$,#3'), ('30324','41947','22255','min','$,5m'), ('30325','41951','22256','avg','$,5m'), ('30326','41943','22257','last','$,#1'), ('30327','41943','22257','last','$,#2'), ('30328','41943','22257','last','$'), ('30330','41952','22259','max','$,{$SNMP.TIMEOUT}'), ('30331','41960','22260','change','$'), ('30332','41960','22260','last','$'), ('30333','41962','22260','last','$'), ('30334','41961','22260','last','$'), ('30335','41960','22260','last','$,#2'), ('30336','41956','22261','avg','$,15m'), ('30337','41960','22261','last','$'), ('30338','41959','22261','avg','$,15m'), ('30339','41955','22262','min','$,5m'), ('30340','41958','22262','min','$,5m'), ('30341','41955','22262','max','$,5m'), ('30342','41958','22262','max','$,5m'), ('30343','41961','22263','last','$'), ('30344','41961','22263','last','$,#1'), ('30345','41961','22263','last','$,#2'), ('30346','41963','22264','max','$,#3'), ('30347','41968','22265','min','$,5m'), ('30348','41972','22266','avg','$,5m'), ('30349','41964','22267','last','$,#1'), ('30350','41964','22267','last','$,#2'), ('30351','41964','22267','last','$'), ('30353','41973','22269','max','$,{$SNMP.TIMEOUT}'), ('30354','41981','22270','change','$'), ('30355','41981','22270','last','$'), ('30356','41983','22270','last','$'), ('30357','41982','22270','last','$'), ('30358','41981','22270','last','$,#2'), ('30359','41977','22271','avg','$,15m'), ('30360','41981','22271','last','$'), ('30361','41980','22271','avg','$,15m'), ('30362','41976','22272','min','$,5m'), ('30363','41979','22272','min','$,5m'), ('30364','41976','22272','max','$,5m'), ('30365','41979','22272','max','$,5m'), ('30366','41982','22273','last','$'), ('30367','41982','22273','last','$,#1'), ('30368','41982','22273','last','$,#2'), ('30369','41984','22274','max','$,#3'), ('30370','41989','22275','min','$,5m'), ('30371','41993','22276','avg','$,5m'), ('30372','41985','22277','last','$,#1'), ('30373','41985','22277','last','$,#2'), ('30374','41985','22277','last','$'), ('30376','41994','22279','max','$,{$SNMP.TIMEOUT}'), ('30377','42002','22280','change','$'), ('30378','42002','22280','last','$'), ('30379','42004','22280','last','$'), ('30380','42003','22280','last','$'), ('30381','42002','22280','last','$,#2'), ('30382','41998','22281','avg','$,15m'), ('30383','42002','22281','last','$'), ('30384','42001','22281','avg','$,15m'), ('30385','41997','22282','min','$,5m'), ('30386','42000','22282','min','$,5m'), ('30387','41997','22282','max','$,5m'), ('30388','42000','22282','max','$,5m'), ('30389','42003','22283','last','$'), ('30390','42003','22283','last','$,#1'), ('30391','42003','22283','last','$,#2'), ('30392','42005','22284','max','$,#3'), ('30393','42010','22285','min','$,5m'), ('30394','42014','22286','avg','$,5m'), ('30395','42006','22287','last','$,#1'), ('30396','42006','22287','last','$,#2'), ('30397','42006','22287','last','$'), ('30399','42015','22289','max','$,{$SNMP.TIMEOUT}'), ('30400','42023','22290','change','$'), ('30401','42023','22290','last','$'), ('30402','42025','22290','last','$'), ('30403','42024','22290','last','$'), ('30404','42023','22290','last','$,#2'), ('30405','42019','22291','avg','$,15m'), ('30406','42023','22291','last','$'), ('30407','42022','22291','avg','$,15m'), ('30408','42018','22292','min','$,5m'), ('30409','42021','22292','min','$,5m'), ('30410','42018','22292','max','$,5m'), ('30411','42021','22292','max','$,5m'), ('30412','42024','22293','last','$'), ('30413','42024','22293','last','$,#1'), ('30414','42024','22293','last','$,#2'), ('30415','42026','22294','max','$,#3'), ('30416','42031','22295','min','$,5m'), ('30417','42035','22296','avg','$,5m'), ('30418','42027','22297','last','$,#1'), ('30419','42027','22297','last','$,#2'), ('30420','42027','22297','last','$'), ('30422','42036','22299','max','$,{$SNMP.TIMEOUT}'), ('30423','42044','22300','change','$'), ('30424','42044','22300','last','$'), ('30425','42046','22300','last','$'), ('30426','42045','22300','last','$'), ('30427','42044','22300','last','$,#2'), ('30428','42040','22301','avg','$,15m'), ('30429','42044','22301','last','$'), ('30430','42043','22301','avg','$,15m'), ('30431','42039','22302','min','$,5m'), ('30432','42042','22302','min','$,5m'), ('30433','42039','22302','max','$,5m'), ('30434','42042','22302','max','$,5m'), ('30435','42045','22303','last','$'), ('30436','42045','22303','last','$,#1'), ('30437','42045','22303','last','$,#2'), ('30438','42047','22304','max','$,#3'), ('30439','42052','22305','min','$,5m'), ('30440','42056','22306','avg','$,5m'), ('30441','42048','22307','last','$,#1'), ('30442','42048','22307','last','$,#2'), ('30443','42048','22307','last','$'), ('30445','42057','22309','max','$,{$SNMP.TIMEOUT}'), ('30446','42065','22310','change','$'), ('30447','42065','22310','last','$'), ('30448','42067','22310','last','$'), ('30449','42066','22310','last','$'), ('30450','42065','22310','last','$,#2'), ('30451','42061','22311','avg','$,15m'), ('30452','42065','22311','last','$'), ('30453','42064','22311','avg','$,15m'), ('30454','42060','22312','min','$,5m'), ('30455','42063','22312','min','$,5m'), ('30456','42060','22312','max','$,5m'), ('30457','42063','22312','max','$,5m'), ('30458','42066','22313','last','$'), ('30459','42066','22313','last','$,#1'), ('30460','42066','22313','last','$,#2'), ('30461','42068','22314','max','$,#3'), ('30462','42073','22315','min','$,5m'), ('30463','42077','22316','avg','$,5m'), ('30464','42069','22317','last','$,#1'), ('30465','42069','22317','last','$,#2'), ('30466','42069','22317','last','$'), ('30468','42078','22319','max','$,{$SNMP.TIMEOUT}'), ('30469','42086','22320','change','$'), ('30470','42086','22320','last','$'), ('30471','42088','22320','last','$'), ('30472','42087','22320','last','$'), ('30473','42086','22320','last','$,#2'), ('30474','42082','22321','avg','$,15m'), ('30475','42086','22321','last','$'), ('30476','42085','22321','avg','$,15m'), ('30477','42081','22322','min','$,5m'), ('30478','42084','22322','min','$,5m'), ('30479','42081','22322','max','$,5m'), ('30480','42084','22322','max','$,5m'), ('30481','42087','22323','last','$'), ('30482','42087','22323','last','$,#1'), ('30483','42087','22323','last','$,#2'), ('30484','42089','22324','max','$,#3'), ('30485','42094','22325','min','$,5m'), ('30486','42098','22326','avg','$,5m'), ('30487','42090','22327','last','$,#1'), ('30488','42090','22327','last','$,#2'), ('30489','42090','22327','last','$'), ('30491','42099','22329','max','$,{$SNMP.TIMEOUT}'), ('30492','42107','22330','change','$'), ('30493','42107','22330','last','$'), ('30494','42109','22330','last','$'), ('30495','42108','22330','last','$'), ('30496','42107','22330','last','$,#2'), ('30497','42103','22331','avg','$,15m'), ('30498','42107','22331','last','$'), ('30499','42106','22331','avg','$,15m'), ('30500','42102','22332','min','$,5m'), ('30501','42105','22332','min','$,5m'), ('30502','42102','22332','max','$,5m'), ('30503','42105','22332','max','$,5m'), ('30504','42108','22333','last','$'), ('30505','42108','22333','last','$,#1'), ('30506','42108','22333','last','$,#2'), ('30507','42110','22334','max','$,#3'), ('30508','42115','22335','min','$,5m'), ('30509','42119','22336','avg','$,5m'), ('30510','42113','22337','last','$,#1'), ('30511','42113','22337','last','$,#2'), ('30512','42113','22337','last','$'), ('30514','42120','22339','max','$,{$SNMP.TIMEOUT}'), ('30515','42129','22340','change','$'), ('30516','42129','22340','last','$'), ('30517','42131','22340','last','$'), ('30518','42130','22340','last','$'), ('30519','42129','22340','last','$,#2'), ('30520','42125','22341','avg','$,15m'), ('30521','42129','22341','last','$'), ('30522','42128','22341','avg','$,15m'), ('30523','42124','22342','min','$,5m'), ('30524','42127','22342','min','$,5m'), ('30525','42124','22342','max','$,5m'), ('30526','42127','22342','max','$,5m'), ('30527','42130','22343','last','$'), ('30528','42130','22343','last','$,#1'), ('30529','42130','22343','last','$,#2'), ('30530','42132','22344','last','$'), ('30531','42133','22345','max','$,#3'), ('30532','42134','22346','min','$,5m'), ('30533','42135','22347','avg','$,5m'), ('30534','42140','22348','last','$,#1'), ('30535','42140','22348','last','$,#2'), ('30536','42140','22348','last','$'), ('30538','42143','22350','max','$,{$SNMP.TIMEOUT}'), ('30539','42151','22351','change','$'), ('30540','42151','22351','last','$'), ('30541','42153','22351','last','$'), ('30542','42152','22351','last','$'), ('30543','42151','22351','last','$,#2'), ('30544','42147','22352','avg','$,15m'), ('30545','42151','22352','last','$'), ('30546','42150','22352','avg','$,15m'), ('30547','42146','22353','min','$,5m'), ('30548','42149','22353','min','$,5m'), ('30549','42146','22353','max','$,5m'), ('30550','42149','22353','max','$,5m'), ('30551','42152','22354','last','$'), ('30552','42152','22354','last','$,#1'), ('30553','42152','22354','last','$,#2'), ('30554','42154','22355','max','$,#3'), ('30555','42159','22356','min','$,5m'), ('30556','42163','22357','avg','$,5m'), ('30557','42155','22358','last','$,#1'), ('30558','42155','22358','last','$,#2'), ('30559','42155','22358','last','$'), ('30561','42164','22360','max','$,{$SNMP.TIMEOUT}'), ('30562','42172','22361','change','$'), ('30563','42172','22361','last','$'), ('30564','42174','22361','last','$'), ('30565','42173','22361','last','$'), ('30566','42172','22361','last','$,#2'), ('30567','42168','22362','avg','$,15m'), ('30568','42172','22362','last','$'), ('30569','42171','22362','avg','$,15m'), ('30570','42167','22363','min','$,5m'), ('30571','42170','22363','min','$,5m'), ('30572','42167','22363','max','$,5m'), ('30573','42170','22363','max','$,5m'), ('30574','42173','22364','last','$'), ('30575','42173','22364','last','$,#1'), ('30576','42173','22364','last','$,#2'), ('30577','42178','22365','max','$,{$AGENT.TIMEOUT}'), ('30578','42182','22366','max','$,{$AGENT.TIMEOUT}'), ('30579','42186','22367','max','$,{$AGENT.TIMEOUT}'), ('30580','42211','22368','last','$'), ('30581','42212','22369','last','$'), ('30582','42267','22370','min','$,5m'), ('30590','42200','22374','last','$'), ('30591','42202','22375','last','$,#1'), ('30592','42202','22375','last','$,#2'), ('30593','42268','22376','min','$,5m'), ('30594','42226','22377','max','$,{$AGENT.TIMEOUT}'), ('30595','42213','22378','last','$'), ('30596','42212','22378','last','$'), ('30601','42209','22381','min','$,5m'), ('30602','42220','22381','last','$'), ('30603','42217','22381','last','$'), ('30604','42219','22381','last','$'), ('30605','42251','22382','last','$'), ('30606','42252','22383','last','$'), ('30607','42269','22384','min','$,5m'), ('30615','42240','22388','last','$'), ('30616','42242','22389','last','$,#1'), ('30617','42242','22389','last','$,#2'), ('30618','42270','22390','min','$,5m'), ('30619','42266','22391','max','$,{$AGENT.TIMEOUT}'), ('30620','42253','22392','last','$'), ('30621','42252','22392','last','$'), ('30626','42249','22395','min','$,5m'), ('30627','42260','22395','last','$'), ('30628','42257','22395','last','$'), ('30629','42259','22395','last','$'), ('30634','42278','22397','min','$,5m'), ('30635','42281','22397','min','$,5m'), ('30636','42278','22397','max','$,5m'), ('30637','42281','22397','max','$,5m'), ('30638','42283','22398','last','$'), ('30639','42283','22398','last','$,#1'), ('30640','42283','22398','last','$,#2'), ('30641','42285','22399','min','$,15m'), ('30642','42286','22399','min','$,15m'), ('30651','42288','22402','min','$,5m'), ('30652','42288','22403','min','$,5m'), ('30657','42293','22405','min','$,5m'), ('30658','42296','22405','min','$,5m'), ('30659','42293','22405','max','$,5m'), ('30660','42296','22405','max','$,5m'), ('30661','42298','22406','last','$'), ('30662','42298','22406','last','$,#1'), ('30663','42298','22406','last','$,#2'), ('30664','42300','22407','min','$,15m'), ('30665','42301','22407','min','$,15m'), ('30674','42303','22410','min','$,5m'), ('30675','42303','22411','min','$,5m'), ('30676','42340','22412','nodata','$,{$AGENT.NODATA_TIMEOUT}'), ('30677','42343','22413','last','$'), ('30678','42344','22414','last','$'), ('30679','42358','22415','min','$,5m'), ('30687','42332','22419','last','$'), ('30688','42334','22420','last','$,#1'), ('30689','42334','22420','last','$,#2'), ('30690','42359','22421','min','$,5m'), ('30691','42345','22422','last','$'), ('30692','42344','22422','last','$'), ('30697','42341','22425','min','$,5m'), ('30698','42352','22425','last','$'), ('30699','42349','22425','last','$'), ('30700','42351','22425','last','$'), ('30705','42364','22427','min','$,5m'), ('30706','42367','22427','min','$,5m'), ('30707','42364','22427','max','$,5m'), ('30708','42367','22427','max','$,5m'), ('30709','42369','22428','last','$'), ('30710','42369','22428','last','$,#1'), ('30711','42369','22428','last','$,#2'), ('30712','42371','22429','min','$,15m'), ('30713','42372','22429','min','$,15m'), ('30722','42374','22432','min','$,5m'), ('30723','42374','22433','min','$,5m'), ('30724','42384','22434','max','$,#3'), ('30725','42397','22435','min','$,5m'), ('30726','42408','22436','avg','$,5m'), ('30727','42396','22437','last','$,#1'), ('30728','42396','22437','last','$,#2'), ('30729','42396','22437','last','$'), ('30731','42386','22439','min','$,5m'), ('30732','42409','22440','max','$,{$SNMP.TIMEOUT}'), ('30737','42404','22443','min','$,5m'), ('30738','42401','22443','last','$'), ('30739','42403','22443','last','$'), ('30740','42402','22443','last','$'), ('30741','42442','22444','min','$,5m'), ('30742','42431','22445','change','$'), ('30743','42431','22445','last','$'), ('30744','42433','22445','last','$'), ('30745','42432','22445','last','$'), ('30746','42431','22445','last','$,#2'), ('30747','42427','22446','avg','$,15m'), ('30748','42431','22446','last','$'), ('30749','42430','22446','avg','$,15m'), ('30750','42426','22447','min','$,5m'), ('30751','42429','22447','min','$,5m'), ('30752','42426','22447','max','$,5m'), ('30753','42429','22447','max','$,5m'), ('30754','42432','22448','last','$'), ('30755','42432','22448','last','$,#1'), ('30756','42432','22448','last','$,#2'), ('30757','42434','22449','last','$'), ('30766','42438','22452','min','$,5m'), ('30767','42438','22453','min','$,5m'), ('30768','42446','22454','max','$,{$AGENT.TIMEOUT}'), ('30769','42450','22455','max','$,{$AGENT.TIMEOUT}'), ('30770','42454','22456','max','$,{$AGENT.TIMEOUT}'), ('30771','42482','22457','max','$,5m'), ('30772','42480','22458','min','$,5m'), ('30773','42476','22459','min','$,5m'), ('30774','42475','22460','min','$,5m'), ('30775','42469','22461','min','$,5m'), ('30780','42462','22464','last','$'), ('30781','42459','22465','min','$,5m'), ('30782','42485','22466','max','$,{$AGENT.TIMEOUT}'), ('30783','42472','22467','min','$,5m'), ('30784','42457','22467','last','$'), ('30787','42509','22469','change','$'), ('30788','42509','22469','last','$'), ('30789','42510','22469','last','$'), ('30790','42493','22470','avg','$,15m'), ('30791','42509','22470','last','$'), ('30792','42496','22470','avg','$,15m'), ('30793','42492','22471','min','$,5m'), ('30794','42495','22471','min','$,5m'), ('30795','42492','22471','max','$,5m'), ('30796','42495','22471','max','$,5m'), ('30797','42510','22472','last','$'), ('30798','42510','22472','last','$,#1'), ('30799','42510','22472','last','$,#2'), ('30800','42497','22473','min','$,15m'), ('30801','42499','22474','min','$,15m'), ('30802','42500','22475','min','$,15m'), ('30803','42505','22476','min','$,#3'), ('30812','42527','22479','nodata','$,{$AGENT.NODATA_TIMEOUT}'), ('30813','42538','22480','max','$,5m'), ('30814','42536','22481','min','$,5m'), ('30815','42532','22482','min','$,5m'), ('30816','42531','22483','min','$,5m'), ('30817','42525','22484','min','$,5m'), ('30822','42518','22487','last','$'), ('30823','42515','22488','min','$,5m'), ('30824','42528','22489','min','$,5m'), ('30825','42541','22489','last','$'), ('30828','42565','22491','change','$'), ('30829','42565','22491','last','$'), ('30830','42566','22491','last','$'), ('30831','42549','22492','avg','$,15m'), ('30832','42565','22492','last','$'), ('30833','42552','22492','avg','$,15m'), ('30834','42548','22493','min','$,5m'), ('30835','42551','22493','min','$,5m'), ('30836','42548','22493','max','$,5m'), ('30837','42551','22493','max','$,5m'), ('30838','42566','22494','last','$'), ('30839','42566','22494','last','$,#1'), ('30840','42566','22494','last','$,#2'), ('30841','42553','22495','min','$,15m'), ('30842','42555','22496','min','$,15m'), ('30843','42556','22497','min','$,15m'), ('30844','42561','22498','min','$,#3'), ('30853','42568','22501','max','$,#3'), ('30854','42569','22502','min','$,5m'), ('30855','42570','22503','avg','$,5m'), ('30856','42573','22504','min','$,5m'), ('30857','42576','22505','last','$,#1'), ('30858','42576','22505','last','$,#2'), ('30859','42576','22505','last','$'), ('30861','42579','22507','max','$,{$SNMP.TIMEOUT}'), ('30862','42589','22508','change','$'), ('30863','42589','22508','last','$'), ('30864','42591','22508','last','$'), ('30865','42590','22508','last','$'), ('30866','42589','22508','last','$,#2'), ('30867','42585','22509','avg','$,15m'), ('30868','42589','22509','last','$'), ('30869','42588','22509','avg','$,15m'), ('30870','42584','22510','min','$,5m'), ('30871','42587','22510','min','$,5m'), ('30872','42584','22510','max','$,5m'), ('30873','42587','22510','max','$,5m'), ('30874','42590','22511','last','$'), ('30875','42590','22511','last','$,#1'), ('30876','42590','22511','last','$,#2'), ('30885','42597','22514','min','$,5m'), ('30886','42598','22515','max','$,#3'), ('30887','42599','22516','min','$,5m'), ('30888','42600','22517','avg','$,5m'), ('30889','42605','22518','last','$,#1'), ('30890','42605','22518','last','$,#2'), ('30891','42605','22518','last','$'), ('30893','42608','22520','max','$,{$SNMP.TIMEOUT}'), ('30894','42609','22521','max','$,#3'), ('30895','42610','22522','min','$,5m'), ('30896','42611','22523','avg','$,5m'), ('30897','42616','22524','last','$,#1'), ('30898','42616','22524','last','$,#2'), ('30899','42616','22524','last','$'), ('30901','42619','22526','max','$,{$SNMP.TIMEOUT}'), ('30902','42620','22527','max','$,#3'), ('30903','42621','22528','min','$,5m'), ('30904','42622','22529','avg','$,5m'), ('30905','42627','22530','last','$,#1'), ('30906','42627','22530','last','$,#2'), ('30907','42627','22530','last','$'), ('30909','42630','22532','max','$,{$SNMP.TIMEOUT}'), ('30918','42642','22539','max','$,#3'), ('30919','42643','22540','min','$,5m'), ('30920','42644','22541','avg','$,5m'), ('30921','42649','22542','last','$,#1'), ('30922','42649','22542','last','$,#2'), ('30923','42649','22542','last','$'), ('30925','42652','22544','max','$,{$SNMP.TIMEOUT}'), ('30926','42653','22545','max','$,#3'), ('30927','42654','22546','min','$,5m'), ('30928','42655','22547','avg','$,5m'), ('30929','42660','22548','last','$,#1'), ('30930','42660','22548','last','$,#2'), ('30931','42660','22548','last','$'), ('30933','42663','22550','max','$,{$SNMP.TIMEOUT}'), ('30934','42664','22551','max','$,#3'), ('30935','42665','22552','min','$,5m'), ('30936','42666','22553','avg','$,5m'), ('30937','42671','22554','last','$,#1'), ('30938','42671','22554','last','$,#2'), ('30939','42671','22554','last','$'), ('30941','42674','22556','max','$,{$SNMP.TIMEOUT}'), ('30943','42676','22557','min','$,5m'), ('30944','34150','18434','min','$,5m'), ('30945','34151','18435','avg','$,5m'), ('30946','28202','18440','count','$,#1,"eq","{$FAN_CRIT_STATUS}"'), ('30947','42196','22379','max','$,5m'), ('30948','42198','22379','last','$'), ('30951','42203','22380','max','$,5m'), ('30952','42205','22380','last','$'), ('30955','42236','22393','max','$,5m'), ('30956','42238','22393','last','$'), ('30957','42243','22394','max','$,5m'), ('30958','42245','22394','last','$'), ('30959','42328','22423','max','$,5m'), ('30960','42330','22423','last','$'), ('30963','42335','22424','max','$,5m'), ('30964','42337','22424','last','$'), ('30967','29397','18150','max','$,5m'), ('30968','29401','18150','last','$'), ('30969','29402','18462','max','$,5m'), ('30970','29403','18462','last','$'), ('30973','42394','22441','max','$,5m'), ('30974','42393','22441','last','$'), ('30977','42391','22442','max','$,5m'), ('30978','42387','22442','last','$'), ('30979','35032','18932','min','$,{$TIME.PERIOD}'), ('30980','35032','18932','max','$,{$TIME.PERIOD}'), ('30981','35031','18933','min','$,{$TIME.PERIOD}'), ('30982','35031','18933','max','$,{$TIME.PERIOD}'), ('30985','42679','22396','change','$'), ('30986','42679','22396','last','$'), ('30987','42284','22396','last','$'), ('30988','42283','22396','last','$'), ('30989','42679','22396','last','$,#2'), ('30995','42681','22404','change','$'), ('30996','42681','22404','last','$'), ('30997','42299','22404','last','$'), ('30998','42298','22404','last','$'), ('30999','42681','22404','last','$,#2'), ('31000','42279','22558','avg','$,15m'), ('31001','42679','22558','last','$'), ('31002','42282','22558','avg','$,15m'), ('31006','42294','22560','avg','$,15m'), ('31007','42681','22560','last','$'), ('31008','42297','22560','avg','$,15m'), ('31009','42682','22426','change','$'), ('31010','42682','22426','last','$'), ('31011','42370','22426','last','$'), ('31012','42369','22426','last','$'), ('31013','42682','22426','last','$,#2'), ('31019','42365','22561','avg','$,15m'), ('31020','42682','22561','last','$'), ('31021','42368','22561','avg','$,15m'), ('31026','31546','17066','min','$,{$JMX.HEAP.MEM.USAGE.TIME}'), ('31027','31545','17066','last','$'), ('31028','31549','17067','min','$,{$JMX.NONHEAP.MEM.USAGE.TIME}'), ('31029','31548','17067','last','$'), ('31030','42690','22563','min','$,{$JMX.MP.USAGE.TIME:"{#JMXNAME}"}'), ('31031','42689','22563','last','$'), ('31043','42725','22566','last','$'), ('31044','42734','22567','min','$,#3'), ('31045','42734','22568','max','$,#3'), ('31054','42738','22569','last','$'), ('31055','42751','22570','last','$'), ('31056','42756','22571','min','$,5m'), ('31057','42755','22571','last','$'), ('31058','42752','22572','min','$,5m'), ('31059','42759','22573','last','$'), ('31060','42760','22574','last','$'), ('31061','42773','22575','min','$,5m'), ('31062','42774','22575','last','$'), ('31063','42767','22576','min','$,5m'), ('31064','42762','22576','last','$'), ('31065','42765','22577','min','$,5m'), ('31066','42766','22577','last','$'), ('31067','42761','22578','min','$,5m'), ('31068','42777','22579','last','$,#1'), ('31069','42777','22579','last','$,#2'), ('31070','42777','22579','last','$'), ('31071','42770','22580','last','$'), ('31072','42768','22581','last','$,#1'), ('31073','42768','22581','last','$,#2'), ('31074','42768','22581','last','$'), ('31075','42763','22582','last','$'), ('31076','42783','22583','min','$,5m'), ('31077','42782','22583','last','$'), ('31078','42779','22584','min','$,5m'), ('31079','42786','22585','last','$'), ('31080','42787','22586','last','$'), ('31081','42789','22587','min','$,5m'), ('31082','42790','22587','last','$'), ('31090','42810','22593','min','$,5m'), ('31092','42828','22595','min','$,5m'), ('31093','42829','22595','last','$'), ('31094','42805','22596','min','$,5m'), ('31095','42809','22596','last','$'), ('31096','42818','22597','min','$,5m'), ('31097','42821','22597','last','$'), ('31098','42819','22597','last','$'), ('31099','42820','22597','last','$'), ('31100','42876','22598','min','$,5m'), ('31115','42856','22605','avg','$,5m'), ('31116','42856','22606','avg','$,5m'), ('31117','42858','22607','min','$,5m'), ('31118','42857','22607','last','$'), ('31119','42858','22608','min','$,5m'), ('31120','42857','22608','last','$'), ('31121','42863','22609','min','$,5m'), ('31122','42861','22609','last','$'), ('31123','42863','22610','min','$,5m'), ('31124','42861','22610','last','$'), ('31125','42862','22611','last','$'), ('31128','42884','22614','min','$,5m'), ('31247','27212','14319','avg','$,5m'), ('31248','27212','14319','max','$,5m'), ('31249','27212','14318','avg','$,5m'), ('31250','27212','14318','max','$,5m'), ('31251','27212','14320','avg','$,5m'), ('31252','27212','14320','min','$,5m'), ('31253','40527','21566','last','$'), ('31254','40528','21566','last','$'), ('31255','40529','21566','last','$'), ('31256','40527','21566','timeleft','$,1h,100'), ('31257','40527','21567','last','$'), ('31258','40528','21567','last','$'), ('31259','40529','21567','last','$'), ('31260','40527','21567','timeleft','$,1h,100'), ('31261','27247','17322','avg','$,5m'), ('31262','27246','17322','last','$'), ('31263','27247','17322','max','$,5m'), ('31264','27247','14339','avg','$,5m'), ('31265','27247','14339','max','$,5m'), ('31266','27247','14340','avg','$,5m'), ('31267','27247','14340','min','$,5m'), ('31268','27314','14373','avg','$,5m'), ('31269','27314','14373','max','$,5m'), ('31270','27314','14372','avg','$,5m'), ('31271','27314','14372','max','$,5m'), ('31272','27314','14374','avg','$,5m'), ('31273','27314','14374','min','$,5m'), ('31274','27318','14381','avg','$,5m'), ('31275','27318','14381','max','$,5m'), ('31276','27318','14380','avg','$,5m'), ('31277','27318','14380','max','$,5m'), ('31278','27318','14382','avg','$,5m'), ('31279','27318','14382','min','$,5m'), ('31280','27485','14461','avg','$,5m'), ('31281','27485','14461','max','$,5m'), ('31282','27485','14460','avg','$,5m'), ('31283','27485','14460','max','$,5m'), ('31284','27485','14462','avg','$,5m'), ('31285','27485','14462','min','$,5m'), ('31286','27517','14477','avg','$,5m'), ('31287','27517','14477','max','$,5m'), ('31288','27517','14476','avg','$,5m'), ('31289','27517','14476','max','$,5m'), ('31290','27517','14478','avg','$,5m'), ('31291','27517','14478','min','$,5m'), ('31292','27553','14496','avg','$,5m'), ('31293','27553','14496','max','$,5m'), ('31294','27553','14495','avg','$,5m'), ('31295','27553','14495','max','$,5m'), ('31296','27553','14497','avg','$,5m'), ('31297','27553','14497','min','$,5m'), ('31298','27584','14511','avg','$,5m'), ('31299','27584','14511','max','$,5m'), ('31300','27584','14513','avg','$,5m'), ('31301','27584','14513','min','$,5m'), ('31302','27584','17574','avg','$,5m'), ('31303','27585','17574','last','$'), ('31304','27584','17574','max','$,5m'), ('31305','27672','14552','avg','$,5m'), ('31306','27672','14552','max','$,5m'), ('31307','27672','14551','avg','$,5m'), ('31308','27672','14551','max','$,5m'), ('31309','27672','14553','avg','$,5m'), ('31310','27672','14553','min','$,5m'), ('31311','28150','14915','avg','$,5m'), ('31312','28150','14915','max','$,5m'), ('31313','28150','14914','avg','$,5m'), ('31314','28150','14914','max','$,5m'), ('31315','28150','14916','avg','$,5m'), ('31316','28150','14916','min','$,5m'), ('31317','27751','14590','avg','$,5m'), ('31318','27751','14590','max','$,5m'), ('31319','27751','14589','avg','$,5m'), ('31320','27751','14589','max','$,5m'), ('31321','27751','14591','avg','$,5m'), ('31322','27751','14591','min','$,5m'), ('31323','27784','17332','avg','$,5m'), ('31324','27783','17332','last','$'), ('31325','27784','17332','max','$,5m'), ('31326','27784','17333','avg','$,5m'), ('31327','27783','17333','last','$'), ('31328','27784','17333','max','$,5m'), ('31329','27784','14606','avg','$,5m'), ('31330','27784','14606','min','$,5m'), ('31331','27821','14625','avg','$,5m'), ('31332','27821','14625','max','$,5m'), ('31333','27821','14624','avg','$,5m'), ('31334','27821','14624','max','$,5m'), ('31335','27821','14626','avg','$,5m'), ('31336','27821','14626','min','$,5m'), ('31337','34173','18449','last','$'), ('31338','34174','18449','last','$'), ('31339','34175','18449','last','$'), ('31340','34173','18449','timeleft','$,1h,100'), ('31341','34173','18450','last','$'), ('31342','34174','18450','last','$'), ('31343','34175','18450','last','$'), ('31344','34173','18450','timeleft','$,1h,100'), ('31345','27941','17909','avg','$,5m'), ('31346','27940','17909','last','$'), ('31347','27941','17909','max','$,5m'), ('31348','27941','17910','avg','$,5m'), ('31349','27940','17910','last','$'), ('31350','27941','17910','max','$,5m'), ('31351','27941','14683','avg','$,5m'), ('31352','27941','14683','min','$,5m'), ('31353','30124','16552','avg','$,5m'), ('31354','30124','16552','max','$,5m'), ('31355','30124','16551','avg','$,5m'), ('31356','30124','16551','max','$,5m'), ('31357','30124','16553','avg','$,5m'), ('31358','30124','16553','min','$,5m'), ('31423','28474','15829','avg','$,5m'), ('31424','28474','15829','max','$,5m'), ('31425','28474','15828','avg','$,5m'), ('31426','28474','15828','max','$,5m'), ('31427','28474','15830','avg','$,5m'), ('31428','28474','15830','min','$,5m'), ('31429','28495','15846','avg','$,5m'), ('31430','28495','15846','max','$,5m'), ('31431','28495','15845','avg','$,5m'), ('31432','28495','15845','max','$,5m'), ('31433','28495','15847','avg','$,5m'), ('31434','28495','15847','min','$,5m'), ('31439','42959','22641','last','$'), ('31440','42973','22642','last','$'), ('31441','42962','22643','min','$,5m'), ('31442','42931','22644','last','$'), ('31443','42942','22645','min','$,5m'), ('31444','42956','22646','nodata','$,5m'), ('31445','42956','22647','last','$'), ('31446','42957','22648','last','$'), ('31447','42957','22648','last','$,#2'), ('31448','42930','22649','last','$'), ('31449','42967','22650','min','$,10m'), ('31450','42966','22650','last','$'), ('31451','42937','22651','last','$'), ('31452','42943','22651','last','$'), ('31453','42932','22652','last','$'), ('31454','42956','22652','last','$'), ('31455','42987','22653','max','$,5m'), ('31456','42987','22653','min','$,5m'), ('31457','42987','22654','max','$,5m'), ('31458','42987','22654','min','$,5m'), ('31459','43028','22655','last','$'), ('31460','43022','22656','last','$'), ('31461','43046','22657','nodata','$,10m'), ('31462','43046','22658','last','$'), ('31463','43050','22659','last','$'), ('31470','43119','22664','last','$'), ('31471','43127','22665','max','$,#3'), ('31472','43127','22666','max','$,#3'), ('31473','43106','22667','last','$,#1'), ('31474','43106','22667','last','$,#2'), ('31475','43106','22667','last','$'), ('31476','43090','22668','min','$,5m'), ('31477','43089','22668','last','$'), ('31478','43140','22669','last','$'), ('31479','43140','22670','last','$'), ('31480','43158','22671','last','$,#1'), ('31481','43158','22671','last','$,#2'), ('31482','43158','22671','last','$'), ('31483','43161','22672','last','$'), ('31484','43164','22673','last','$'), ('31486','43077','22660','min','$,{$AGENT.TIMEOUT}'), ('31488','43078','22661','min','$,{$AGENT.TIMEOUT}'), ('31490','43079','22662','min','$,{$AGENT.TIMEOUT}'), ('31491','43080','22663','min','$,{$AGENT.TIMEOUT}'), ('31492','36877','19695','last','$'), ('31493','36878','19695','last','$'), ('31494','36879','19695','last','$'), ('31495','36877','19695','timeleft','$,1h,100'), ('31496','36877','19696','last','$'), ('31497','36878','19696','last','$'), ('31498','36879','19696','last','$'), ('31499','36877','19696','timeleft','$,1h,100'), ('31500','36931','19723','last','$'), ('31501','36932','19723','last','$'), ('31502','36933','19723','last','$'), ('31503','36931','19723','timeleft','$,1h,100'), ('31504','36931','19724','last','$'), ('31505','36932','19724','last','$'), ('31506','36933','19724','last','$'), ('31507','36931','19724','timeleft','$,1h,100'), ('31508','36985','19751','last','$'), ('31509','36986','19751','last','$'), ('31510','36987','19751','last','$'), ('31511','36985','19751','timeleft','$,1h,100'), ('31512','36985','19752','last','$'), ('31513','36986','19752','last','$'), ('31514','36987','19752','last','$'), ('31515','36985','19752','timeleft','$,1h,100'), ('31516','37039','19779','last','$'), ('31517','37040','19779','last','$'), ('31518','37041','19779','last','$'), ('31519','37039','19779','timeleft','$,1h,100'), ('31520','37039','19780','last','$'), ('31521','37040','19780','last','$'), ('31522','37041','19780','last','$'), ('31523','37039','19780','timeleft','$,1h,100'), ('31524','37093','19807','last','$'), ('31525','37094','19807','last','$'), ('31526','37095','19807','last','$'), ('31527','37093','19807','timeleft','$,1h,100'), ('31528','37093','19808','last','$'), ('31529','37094','19808','last','$'), ('31530','37095','19808','last','$'), ('31531','37093','19808','timeleft','$,1h,100'), ('31532','37147','19835','last','$'), ('31533','37148','19835','last','$'), ('31534','37149','19835','last','$'), ('31535','37147','19835','timeleft','$,1h,100'), ('31536','37147','19836','last','$'), ('31537','37148','19836','last','$'), ('31538','37149','19836','last','$'), ('31539','37147','19836','timeleft','$,1h,100'), ('31540','37201','19863','last','$'), ('31541','37202','19863','last','$'), ('31542','37203','19863','last','$'), ('31543','37201','19863','timeleft','$,1h,100'), ('31544','37201','19864','last','$'), ('31545','37202','19864','last','$'), ('31546','37203','19864','last','$'), ('31547','37201','19864','timeleft','$,1h,100'), ('31548','37255','19891','last','$'), ('31549','37256','19891','last','$'), ('31550','37257','19891','last','$'), ('31551','37255','19891','timeleft','$,1h,100'), ('31552','37255','19892','last','$'), ('31553','37256','19892','last','$'), ('31554','37257','19892','last','$'), ('31555','37255','19892','timeleft','$,1h,100'), ('31556','37309','19919','last','$'), ('31557','37310','19919','last','$'), ('31558','37311','19919','last','$'), ('31559','37309','19919','timeleft','$,1h,100'), ('31560','37309','19920','last','$'), ('31561','37310','19920','last','$'), ('31562','37311','19920','last','$'), ('31563','37309','19920','timeleft','$,1h,100'), ('31564','37363','19947','last','$'), ('31565','37364','19947','last','$'), ('31566','37365','19947','last','$'), ('31567','37363','19947','timeleft','$,1h,100'), ('31568','37363','19948','last','$'), ('31569','37364','19948','last','$'), ('31570','37365','19948','last','$'), ('31571','37363','19948','timeleft','$,1h,100'), ('31572','37417','19975','last','$'), ('31573','37418','19975','last','$'), ('31574','37419','19975','last','$'), ('31575','37417','19975','timeleft','$,1h,100'), ('31576','37417','19976','last','$'), ('31577','37418','19976','last','$'), ('31578','37419','19976','last','$'), ('31579','37417','19976','timeleft','$,1h,100'), ('31580','37471','20003','last','$'), ('31581','37472','20003','last','$'), ('31582','37473','20003','last','$'), ('31583','37471','20003','timeleft','$,1h,100'), ('31584','37471','20004','last','$'), ('31585','37472','20004','last','$'), ('31586','37473','20004','last','$'), ('31587','37471','20004','timeleft','$,1h,100'), ('31588','37525','20031','last','$'), ('31589','37526','20031','last','$'), ('31590','37527','20031','last','$'), ('31591','37525','20031','timeleft','$,1h,100'), ('31592','37525','20032','last','$'), ('31593','37526','20032','last','$'), ('31594','37527','20032','last','$'), ('31595','37525','20032','timeleft','$,1h,100'), ('31596','37579','20059','last','$'), ('31597','37580','20059','last','$'), ('31598','37581','20059','last','$'), ('31599','37579','20059','timeleft','$,1h,100'), ('31600','37579','20060','last','$'), ('31601','37580','20060','last','$'), ('31602','37581','20060','last','$'), ('31603','37579','20060','timeleft','$,1h,100'), ('31604','37633','20087','last','$'), ('31605','37634','20087','last','$'), ('31606','37635','20087','last','$'), ('31607','37633','20087','timeleft','$,1h,100'), ('31608','37633','20088','last','$'), ('31609','37634','20088','last','$'), ('31610','37635','20088','last','$'), ('31611','37633','20088','timeleft','$,1h,100'), ('31612','37687','20115','last','$'), ('31613','37688','20115','last','$'), ('31614','37689','20115','last','$'), ('31615','37687','20115','timeleft','$,1h,100'), ('31616','37687','20116','last','$'), ('31617','37688','20116','last','$'), ('31618','37689','20116','last','$'), ('31619','37687','20116','timeleft','$,1h,100'), ('31620','37741','20143','last','$'), ('31621','37742','20143','last','$'), ('31622','37743','20143','last','$'), ('31623','37741','20143','timeleft','$,1h,100'), ('31624','37741','20144','last','$'), ('31625','37742','20144','last','$'), ('31626','37743','20144','last','$'), ('31627','37741','20144','timeleft','$,1h,100'), ('31628','37795','20171','last','$'), ('31629','37796','20171','last','$'), ('31630','37797','20171','last','$'), ('31631','37795','20171','timeleft','$,1h,100'), ('31632','37795','20172','last','$'), ('31633','37796','20172','last','$'), ('31634','37797','20172','last','$'), ('31635','37795','20172','timeleft','$,1h,100'), ('31636','37849','20199','last','$'), ('31637','37850','20199','last','$'), ('31638','37851','20199','last','$'), ('31639','37849','20199','timeleft','$,1h,100'), ('31640','37849','20200','last','$'), ('31641','37850','20200','last','$'), ('31642','37851','20200','last','$'), ('31643','37849','20200','timeleft','$,1h,100'), ('31644','37903','20227','last','$'), ('31645','37904','20227','last','$'), ('31646','37905','20227','last','$'), ('31647','37903','20227','timeleft','$,1h,100'), ('31648','37903','20228','last','$'), ('31649','37904','20228','last','$'), ('31650','37905','20228','last','$'), ('31651','37903','20228','timeleft','$,1h,100'), ('31652','37957','20255','last','$'), ('31653','37958','20255','last','$'), ('31654','37959','20255','last','$'), ('31655','37957','20255','timeleft','$,1h,100'), ('31656','37957','20256','last','$'), ('31657','37958','20256','last','$'), ('31658','37959','20256','last','$'), ('31659','37957','20256','timeleft','$,1h,100'), ('31660','38011','20283','last','$'), ('31661','38012','20283','last','$'), ('31662','38013','20283','last','$'), ('31663','38011','20283','timeleft','$,1h,100'), ('31664','38011','20284','last','$'), ('31665','38012','20284','last','$'), ('31666','38013','20284','last','$'), ('31667','38011','20284','timeleft','$,1h,100'), ('31668','38065','20311','last','$'), ('31669','38066','20311','last','$'), ('31670','38067','20311','last','$'), ('31671','38065','20311','timeleft','$,1h,100'), ('31672','38065','20312','last','$'), ('31673','38066','20312','last','$'), ('31674','38067','20312','last','$'), ('31675','38065','20312','timeleft','$,1h,100'), ('31676','38119','20339','last','$'), ('31677','38120','20339','last','$'), ('31678','38121','20339','last','$'), ('31679','38119','20339','timeleft','$,1h,100'), ('31680','38119','20340','last','$'), ('31681','38120','20340','last','$'), ('31682','38121','20340','last','$'), ('31683','38119','20340','timeleft','$,1h,100'), ('31684','38173','20367','last','$'), ('31685','38174','20367','last','$'), ('31686','38175','20367','last','$'), ('31687','38173','20367','timeleft','$,1h,100'), ('31688','38173','20368','last','$'), ('31689','38174','20368','last','$'), ('31690','38175','20368','last','$'), ('31691','38173','20368','timeleft','$,1h,100'), ('31692','38227','20395','last','$'), ('31693','38228','20395','last','$'), ('31694','38229','20395','last','$'), ('31695','38227','20395','timeleft','$,1h,100'), ('31696','38227','20396','last','$'), ('31697','38228','20396','last','$'), ('31698','38229','20396','last','$'), ('31699','38227','20396','timeleft','$,1h,100'), ('31700','38281','20423','last','$'), ('31701','38282','20423','last','$'), ('31702','38283','20423','last','$'), ('31703','38281','20423','timeleft','$,1h,100'), ('31704','38281','20424','last','$'), ('31705','38282','20424','last','$'), ('31706','38283','20424','last','$'), ('31707','38281','20424','timeleft','$,1h,100'), ('31708','38335','20451','last','$'), ('31709','38336','20451','last','$'), ('31710','38337','20451','last','$'), ('31711','38335','20451','timeleft','$,1h,100'), ('31712','38335','20452','last','$'), ('31713','38336','20452','last','$'), ('31714','38337','20452','last','$'), ('31715','38335','20452','timeleft','$,1h,100'), ('31716','38389','20479','last','$'), ('31717','38390','20479','last','$'), ('31718','38391','20479','last','$'), ('31719','38389','20479','timeleft','$,1h,100'), ('31720','38389','20480','last','$'), ('31721','38390','20480','last','$'), ('31722','38391','20480','last','$'), ('31723','38389','20480','timeleft','$,1h,100'), ('31724','38443','20507','last','$'), ('31725','38444','20507','last','$'), ('31726','38445','20507','last','$'), ('31727','38443','20507','timeleft','$,1h,100'), ('31728','38443','20508','last','$'), ('31729','38444','20508','last','$'), ('31730','38445','20508','last','$'), ('31731','38443','20508','timeleft','$,1h,100'), ('31732','38497','20535','last','$'), ('31733','38498','20535','last','$'), ('31734','38499','20535','last','$'), ('31735','38497','20535','timeleft','$,1h,100'), ('31736','38497','20536','last','$'), ('31737','38498','20536','last','$'), ('31738','38499','20536','last','$'), ('31739','38497','20536','timeleft','$,1h,100'), ('31740','38551','20563','last','$'), ('31741','38552','20563','last','$'), ('31742','38553','20563','last','$'), ('31743','38551','20563','timeleft','$,1h,100'), ('31744','38551','20564','last','$'), ('31745','38552','20564','last','$'), ('31746','38553','20564','last','$'), ('31747','38551','20564','timeleft','$,1h,100'), ('31748','38605','20591','last','$'), ('31749','38606','20591','last','$'), ('31750','38607','20591','last','$'), ('31751','38605','20591','timeleft','$,1h,100'), ('31752','38605','20592','last','$'), ('31753','38606','20592','last','$'), ('31754','38607','20592','last','$'), ('31755','38605','20592','timeleft','$,1h,100'), ('31756','38659','20619','last','$'), ('31757','38660','20619','last','$'), ('31758','38661','20619','last','$'), ('31759','38659','20619','timeleft','$,1h,100'), ('31760','38659','20620','last','$'), ('31761','38660','20620','last','$'), ('31762','38661','20620','last','$'), ('31763','38659','20620','timeleft','$,1h,100'), ('31764','38713','20647','last','$'), ('31765','38714','20647','last','$'), ('31766','38715','20647','last','$'), ('31767','38713','20647','timeleft','$,1h,100'), ('31768','38713','20648','last','$'), ('31769','38714','20648','last','$'), ('31770','38715','20648','last','$'), ('31771','38713','20648','timeleft','$,1h,100'), ('31772','38767','20675','last','$'), ('31773','38768','20675','last','$'), ('31774','38769','20675','last','$'), ('31775','38767','20675','timeleft','$,1h,100'), ('31776','38767','20676','last','$'), ('31777','38768','20676','last','$'), ('31778','38769','20676','last','$'), ('31779','38767','20676','timeleft','$,1h,100'), ('31780','38821','20703','last','$'), ('31781','38822','20703','last','$'), ('31782','38823','20703','last','$'), ('31783','38821','20703','timeleft','$,1h,100'), ('31784','38821','20704','last','$'), ('31785','38822','20704','last','$'), ('31786','38823','20704','last','$'), ('31787','38821','20704','timeleft','$,1h,100'), ('31788','38875','20731','last','$'), ('31789','38876','20731','last','$'), ('31790','38877','20731','last','$'), ('31791','38875','20731','timeleft','$,1h,100'), ('31792','38875','20732','last','$'), ('31793','38876','20732','last','$'), ('31794','38877','20732','last','$'), ('31795','38875','20732','timeleft','$,1h,100'), ('31796','38929','20759','last','$'), ('31797','38930','20759','last','$'), ('31798','38931','20759','last','$'), ('31799','38929','20759','timeleft','$,1h,100'), ('31800','38929','20760','last','$'), ('31801','38930','20760','last','$'), ('31802','38931','20760','last','$'), ('31803','38929','20760','timeleft','$,1h,100'), ('31804','38983','20787','last','$'), ('31805','38984','20787','last','$'), ('31806','38985','20787','last','$'), ('31807','38983','20787','timeleft','$,1h,100'), ('31808','38983','20788','last','$'), ('31809','38984','20788','last','$'), ('31810','38985','20788','last','$'), ('31811','38983','20788','timeleft','$,1h,100'), ('31812','39037','20815','last','$'), ('31813','39038','20815','last','$'), ('31814','39039','20815','last','$'), ('31815','39037','20815','timeleft','$,1h,100'), ('31816','39037','20816','last','$'), ('31817','39038','20816','last','$'), ('31818','39039','20816','last','$'), ('31819','39037','20816','timeleft','$,1h,100'), ('31820','39091','20843','last','$'), ('31821','39092','20843','last','$'), ('31822','39093','20843','last','$'), ('31823','39091','20843','timeleft','$,1h,100'), ('31824','39091','20844','last','$'), ('31825','39092','20844','last','$'), ('31826','39093','20844','last','$'), ('31827','39091','20844','timeleft','$,1h,100'), ('31828','39145','20871','last','$'), ('31829','39146','20871','last','$'), ('31830','39147','20871','last','$'), ('31831','39145','20871','timeleft','$,1h,100'), ('31832','39145','20872','last','$'), ('31833','39146','20872','last','$'), ('31834','39147','20872','last','$'), ('31835','39145','20872','timeleft','$,1h,100'), ('31836','39199','20899','last','$'), ('31837','39200','20899','last','$'), ('31838','39201','20899','last','$'), ('31839','39199','20899','timeleft','$,1h,100'), ('31840','39199','20900','last','$'), ('31841','39200','20900','last','$'), ('31842','39201','20900','last','$'), ('31843','39199','20900','timeleft','$,1h,100'), ('31844','39253','20927','last','$'), ('31845','39254','20927','last','$'), ('31846','39255','20927','last','$'), ('31847','39253','20927','timeleft','$,1h,100'), ('31848','39253','20928','last','$'), ('31849','39254','20928','last','$'), ('31850','39255','20928','last','$'), ('31851','39253','20928','timeleft','$,1h,100'), ('31852','39307','20955','last','$'), ('31853','39308','20955','last','$'), ('31854','39309','20955','last','$'), ('31855','39307','20955','timeleft','$,1h,100'), ('31856','39307','20956','last','$'), ('31857','39308','20956','last','$'), ('31858','39309','20956','last','$'), ('31859','39307','20956','timeleft','$,1h,100'), ('31860','39361','20983','last','$'), ('31861','39362','20983','last','$'), ('31862','39363','20983','last','$'), ('31863','39361','20983','timeleft','$,1h,100'), ('31864','39361','20984','last','$'), ('31865','39362','20984','last','$'), ('31866','39363','20984','last','$'), ('31867','39361','20984','timeleft','$,1h,100'), ('31868','39415','21011','last','$'), ('31869','39416','21011','last','$'), ('31870','39417','21011','last','$'), ('31871','39415','21011','timeleft','$,1h,100'), ('31872','39415','21012','last','$'), ('31873','39416','21012','last','$'), ('31874','39417','21012','last','$'), ('31875','39415','21012','timeleft','$,1h,100'), ('31876','39469','21039','last','$'), ('31877','39470','21039','last','$'), ('31878','39471','21039','last','$'), ('31879','39469','21039','timeleft','$,1h,100'), ('31880','39469','21040','last','$'), ('31881','39470','21040','last','$'), ('31882','39471','21040','last','$'), ('31883','39469','21040','timeleft','$,1h,100'), ('31884','39523','21067','last','$'), ('31885','39524','21067','last','$'), ('31886','39525','21067','last','$'), ('31887','39523','21067','timeleft','$,1h,100'), ('31888','39523','21068','last','$'), ('31889','39524','21068','last','$'), ('31890','39525','21068','last','$'), ('31891','39523','21068','timeleft','$,1h,100'), ('31892','39577','21095','last','$'), ('31893','39578','21095','last','$'), ('31894','39579','21095','last','$'), ('31895','39577','21095','timeleft','$,1h,100'), ('31896','39577','21096','last','$'), ('31897','39578','21096','last','$'), ('31898','39579','21096','last','$'), ('31899','39577','21096','timeleft','$,1h,100'), ('31900','39631','21123','last','$'), ('31901','39632','21123','last','$'), ('31902','39633','21123','last','$'), ('31903','39631','21123','timeleft','$,1h,100'), ('31904','39631','21124','last','$'), ('31905','39632','21124','last','$'), ('31906','39633','21124','last','$'), ('31907','39631','21124','timeleft','$,1h,100'), ('31908','39685','21151','last','$'), ('31909','39686','21151','last','$'), ('31910','39687','21151','last','$'), ('31911','39685','21151','timeleft','$,1h,100'), ('31912','39685','21152','last','$'), ('31913','39686','21152','last','$'), ('31914','39687','21152','last','$'), ('31915','39685','21152','timeleft','$,1h,100'), ('31916','39739','21179','last','$'), ('31917','39740','21179','last','$'), ('31918','39741','21179','last','$'), ('31919','39739','21179','timeleft','$,1h,100'), ('31920','39739','21180','last','$'), ('31921','39740','21180','last','$'), ('31922','39741','21180','last','$'), ('31923','39739','21180','timeleft','$,1h,100'), ('31924','27906','16546','last','$'), ('31925','27907','16546','last','$'), ('31926','27908','16546','last','$'), ('31927','27906','16546','timeleft','$,1h,100'), ('31928','27906','16547','last','$'), ('31929','27907','16547','last','$'), ('31930','27908','16547','last','$'), ('31931','27906','16547','timeleft','$,1h,100'), ('31932','43176','22677','last','$'), ('31933','43178','22678','last','$'), ('31934','43178','22679','last','$'), ('31935','43178','22680','last','$'), ('31936','43175','22681','max','$,5m'), ('31937','43213','22682','min','$,5m'), ('31938','43203','22683','last','$'), ('31939','43203','22684','last','$'), ('31940','43203','22685','last','$'), ('31941','43198','22686','last','$'), ('31942','43218','22687','last','$'), ('31943','43222','22688','last','$'), ('31944','43222','22689','last','$'), ('31945','43222','22690','last','$'), ('31946','43227','22691','last','$'), ('31947','43227','22692','last','$'), ('31948','43227','22693','last','$'), ('31949','43194','22694','min','$,5m'), ('31950','43194','22695','min','$,5m'), ('31951','43232','22696','last','$'), ('31952','43232','22697','last','$'), ('31953','43232','22698','last','$'), ('31954','43245','22699','last','$'), ('31955','43245','22700','last','$'), ('31956','43245','22701','last','$'), ('31957','43245','22702','last','$'), ('31958','43245','22703','last','$'), ('31959','43245','22704','last','$'), ('31960','43245','22705','last','$'), ('31961','43245','22706','last','$'), ('31962','43245','22707','last','$'), ('31963','43245','22708','last','$'), ('31964','43246','22709','last','$'), ('31965','43246','22710','last','$'), ('31966','43246','22711','last','$'), ('31967','43251','22712','last','$'), ('31968','43251','22713','last','$'), ('31969','43251','22714','last','$'), ('31970','43251','22715','last','$'), ('31971','43251','22716','last','$'), ('31972','43252','22717','last','$'), ('31973','43252','22718','last','$'), ('31974','43252','22719','last','$'), ('31975','43254','22720','last','$'), ('31976','43254','22721','last','$'), ('31977','43254','22722','last','$'), ('31978','43257','22723','last','$'), ('31979','43257','22724','last','$'), ('31980','43195','22725','min','$,5m'), ('31981','43195','22726','min','$,5m'), ('31982','43260','22727','last','$'), ('31983','43260','22728','last','$'), ('31984','43260','22729','last','$'), ('31985','43261','22730','last','$'), ('31986','43261','22731','last','$'), ('31987','43261','22732','last','$'), ('31988','43262','22733','last','$'), ('31989','43262','22734','last','$'), ('31990','43262','22735','last','$'), ('31991','43264','22736','last','$'), ('31992','43264','22737','last','$'), ('31993','43264','22738','last','$'), ('31994','43267','22739','last','$'), ('31995','43267','22740','last','$'), ('31996','43267','22741','last','$'), ('31997','43283','22742','last','$'), ('31998','43285','22743','last','$'), ('31999','43285','22744','last','$'), ('32000','43285','22745','last','$'), ('32001','43282','22746','max','$,5m'), ('32002','43327','22747','min','$,5m'), ('32003','43317','22748','last','$'), ('32004','43317','22749','last','$'), ('32005','43317','22750','last','$'), ('32006','43312','22751','last','$'), ('32007','43332','22752','last','$'), ('32008','43337','22753','last','$'), ('32009','43337','22754','last','$'), ('32010','43337','22755','last','$'), ('32011','43342','22756','last','$'), ('32012','43342','22757','last','$'), ('32013','43342','22758','last','$'), ('32014','43302','22759','min','$,5m'), ('32015','43302','22760','min','$,5m'), ('32016','43347','22761','last','$'), ('32017','43347','22762','last','$'), ('32018','43347','22763','last','$'), ('32019','43361','22764','last','$'), ('32020','43361','22765','last','$'), ('32021','43361','22766','last','$'), ('32022','43361','22767','last','$'), ('32023','43361','22768','last','$'), ('32024','43361','22769','last','$'), ('32025','43361','22770','last','$'), ('32026','43361','22771','last','$'), ('32027','43361','22772','last','$'), ('32028','43361','22773','last','$'), ('32029','43362','22774','last','$'), ('32030','43362','22775','last','$'), ('32031','43362','22776','last','$'), ('32032','43367','22777','last','$'), ('32033','43367','22778','last','$'), ('32034','43367','22779','last','$'), ('32035','43367','22780','last','$'), ('32036','43367','22781','last','$'), ('32037','43368','22782','last','$'), ('32038','43368','22783','last','$'), ('32039','43368','22784','last','$'), ('32040','43370','22785','last','$'), ('32041','43370','22786','last','$'), ('32042','43370','22787','last','$'), ('32043','43373','22788','last','$'), ('32044','43373','22789','last','$'), ('32045','43307','22790','min','$,5m'), ('32046','43307','22791','min','$,5m'), ('32047','43377','22792','last','$'), ('32048','43377','22793','last','$'), ('32049','43377','22794','last','$'), ('32050','43378','22795','last','$'), ('32051','43378','22796','last','$'), ('32052','43378','22797','last','$'), ('32053','43379','22798','last','$'), ('32054','43379','22799','last','$'), ('32055','43379','22800','last','$'), ('32056','43381','22801','last','$'), ('32057','43381','22802','last','$'), ('32058','43381','22803','last','$'), ('32059','43384','22804','last','$'), ('32060','43384','22805','last','$'), ('32061','43384','22806','last','$'), ('32062','43406','22807','last','$'), ('32063','43398','22808','max','$,5m'), ('32064','43424','22809','last','$'), ('32065','43424','22810','last','$'), ('32066','43447','22811','last','$'), ('32067','43448','22812','last','$'), ('32068','43449','22813','last','$'), ('32069','43450','22814','last','$'), ('32070','43455','22815','last','$'), ('32071','43455','22816','last','$'), ('32072','43455','22817','last','$'), ('32073','43463','22818','last','$'), ('32074','43465','22819','last','$'), ('32075','43465','22820','last','$'), ('32076','43469','22821','last','$'), ('32077','43469','22822','last','$'), ('32078','43473','22823','last','$'), ('32079','43473','22824','last','$'), ('32080','43500','22825','last','$'), ('32081','43512','22826','max','$,5m'), ('32082','43522','22827','last','$'), ('32083','43521','22828','min','$,15m'), ('32084','43516','22829','max','$,5m'), ('32085','43515','22830','max','$,5m'), ('32086','43509','22831','last','$'), ('32087','43503','22832','last','$'), ('32088','43502','22833','last','$'), ('32089','43525','22834','last','$'), ('32090','43529','22835','last','$'), ('32091','43530','22835','last','$'), ('32092','43529','22836','last','$'), ('32093','43543','22837','last','$'), ('32094','43542','22838','max','$,5m'), ('32095','43547','22839','last','$'), ('32096','43556','22840','last','$'), ('32097','43563','22841','last','$'), ('32098','43555','22842','last','$'), ('32099','43552','22843','min','$,#3'), ('32100','43549','22844','min','$,#3'), ('32101','43564','22845','max','$,{$SNMP.TIMEOUT}'), ('32102','43569','22846','change','$'), ('32103','43569','22846','last','$'), ('32104','43591','22846','last','$'), ('32105','43568','22846','last','$'), ('32106','43569','22846','last','$,#2'), ('32107','43582','22847','avg','$,15m'), ('32108','43569','22847','last','$'), ('32109','43571','22848','avg','$,15m'), ('32110','43569','22848','last','$'), ('32111','43587','22849','min','$,5m'), ('32112','43587','22849','max','$,5m'), ('32113','43576','22850','min','$,5m'), ('32114','43576','22850','max','$,5m'), ('32115','43568','22851','last','$'), ('32116','43596','22852','last','$'), ('32117','43621','22853','max','$,5m'), ('32118','43623','22854','max','$,5m'), ('32119','43625','22855','min','$,15m'), ('32120','43629','22856','max','$,5m'), ('32121','43620','22857','max','$,5m'), ('32122','43633','22858','last','$'), ('32123','43638','22859','last','$'), ('32124','43639','22860','last','$'), ('32125','43600','22861','last','$'), ('32126','43646','22862','last','$'), ('32127','43647','22862','last','$'), ('32128','43646','22863','last','$'), ('32129','43709','22864','last','$'), ('32130','43697','22865','last','$'), ('32131','43712','22866','last','$'), ('32132','43713','22866','last','$'), ('32133','43712','22867','last','$'), ('32134','43716','22868','last','$'), ('32135','43743','22869','last','$'), ('32136','43743','22870','last','$'), ('32137','43743','22871','last','$'), ('32138','43749','22872','min','$,5m'), ('32139','43763','22873','last','$'), ('32140','31303','22874','last','$'), ('32141','31358','22875','last','$'), ('32144','43770','21547','last','$'), ('32145','40480','21547','last','$'), ('32146','43771','21559','last','$'), ('32147','40511','21559','last','$'), ('32148','43772','21573','last','$'), ('32149','40542','21573','last','$'), ('32150','43773','21584','last','$'), ('32151','40564','21584','last','$'), ('32152','43774','21592','last','$'), ('32153','40577','21592','last','$'), ('32154','43775','18304','last','$'), ('32155','33956','18304','last','$'), ('32156','43776','18331','last','$'), ('32157','33997','18331','last','$'), ('32158','43777','18358','last','$'), ('32159','34038','18358','last','$'), ('32160','43778','18385','last','$'), ('32161','34079','18385','last','$'), ('32162','43779','18412','last','$'), ('32163','34120','18412','last','$'), ('32164','43780','21610','last','$'), ('32165','40613','21610','last','$'), ('32166','43781','21618','last','$'), ('32167','40627','21618','last','$'), ('32168','43782','21626','last','$'), ('32169','40641','21626','last','$'), ('32170','43783','21670','last','$'), ('32171','40717','21670','last','$'), ('32172','43784','21681','last','$'), ('32173','40740','21681','last','$'), ('32174','43785','21691','last','$'), ('32175','40761','21691','last','$'), ('32176','43786','21702','last','$'), ('32177','40776','21702','last','$'), ('32178','43787','21713','last','$'), ('32179','40807','21713','last','$'), ('32180','43788','21724','last','$'), ('32181','40830','21724','last','$'), ('32182','43789','21735','last','$'), ('32183','40853','21735','last','$'), ('32184','43790','21746','last','$'), ('32185','40876','21746','last','$'), ('32186','43791','21757','last','$'), ('32187','40899','21757','last','$'), ('32188','43792','21767','last','$'), ('32189','40920','21767','last','$'), ('32192','43794','21778','last','$'), ('32193','40936','21778','last','$'), ('32194','43795','21788','last','$'), ('32195','40957','21788','last','$'), ('32196','43796','21798','last','$'), ('32197','40978','21798','last','$'), ('32198','43797','21808','last','$'), ('32199','40999','21808','last','$'), ('32200','43798','21818','last','$'), ('32201','41020','21818','last','$'), ('32202','43799','21828','last','$'), ('32203','41041','21828','last','$'), ('32204','43800','21838','last','$'), ('32205','41062','21838','last','$'), ('32206','43801','21848','last','$'), ('32207','41083','21848','last','$'), ('32208','43802','21858','last','$'), ('32209','41104','21858','last','$'), ('32210','43803','21868','last','$'), ('32211','41125','21868','last','$'), ('32212','43804','21878','last','$'), ('32213','41146','21878','last','$'), ('32214','43805','21888','last','$'), ('32215','41167','21888','last','$'), ('32216','43806','21898','last','$'), ('32217','41188','21898','last','$'), ('32218','43807','21908','last','$'), ('32219','41209','21908','last','$'), ('32220','43808','21918','last','$'), ('32221','41230','21918','last','$'), ('32222','43809','21928','last','$'), ('32223','41251','21928','last','$'), ('32224','43810','21938','last','$'), ('32225','41272','21938','last','$'), ('32226','43811','21948','last','$'), ('32227','41293','21948','last','$'), ('32228','43812','21958','last','$'), ('32229','41314','21958','last','$'), ('32230','43813','21968','last','$'), ('32231','41335','21968','last','$'), ('32232','43814','21978','last','$'), ('32233','41356','21978','last','$'), ('32234','43815','21988','last','$'), ('32235','41377','21988','last','$'), ('32236','43816','21998','last','$'), ('32237','41398','21998','last','$'), ('32238','43817','22008','last','$'), ('32239','41419','22008','last','$'), ('32240','43818','22018','last','$'), ('32241','41440','22018','last','$'), ('32242','43819','22028','last','$'), ('32243','41461','22028','last','$'), ('32244','43820','22038','last','$'), ('32245','41482','22038','last','$'), ('32246','43821','22048','last','$'), ('32247','41503','22048','last','$'), ('32248','43822','22058','last','$'), ('32249','41524','22058','last','$'), ('32250','43823','22068','last','$'), ('32251','41545','22068','last','$'), ('32252','43824','22078','last','$'), ('32253','41566','22078','last','$'), ('32254','43825','22088','last','$'), ('32255','41587','22088','last','$'), ('32256','43826','22098','last','$'), ('32257','41608','22098','last','$'), ('32258','43827','22108','last','$'), ('32259','41629','22108','last','$'), ('32260','43828','22118','last','$'), ('32261','41650','22118','last','$'), ('32262','43829','22128','last','$'), ('32263','41671','22128','last','$'), ('32264','43830','22138','last','$'), ('32265','41692','22138','last','$'), ('32266','43831','22148','last','$'), ('32267','41713','22148','last','$'), ('32268','43832','22158','last','$'), ('32269','41734','22158','last','$'), ('32270','43833','22168','last','$'), ('32271','41755','22168','last','$'), ('32272','43834','22178','last','$'), ('32273','41776','22178','last','$'), ('32274','43835','22188','last','$'), ('32275','41797','22188','last','$'), ('32276','43836','22198','last','$'), ('32277','41818','22198','last','$'), ('32278','43837','22208','last','$'), ('32279','41839','22208','last','$'), ('32280','43838','22218','last','$'), ('32281','41860','22218','last','$'), ('32282','43839','22228','last','$'), ('32283','41881','22228','last','$'), ('32284','43840','22238','last','$'), ('32285','41902','22238','last','$'), ('32286','43841','22248','last','$'), ('32287','41923','22248','last','$'), ('32288','43842','22258','last','$'), ('32289','41944','22258','last','$'), ('32290','43843','22268','last','$'), ('32291','41965','22268','last','$'), ('32292','43844','22278','last','$'), ('32293','41986','22278','last','$'), ('32294','43845','22288','last','$'), ('32295','42007','22288','last','$'), ('32296','43846','22298','last','$'), ('32297','42028','22298','last','$'), ('32298','43847','22308','last','$'), ('32299','42049','22308','last','$'), ('32300','43848','22318','last','$'), ('32301','42070','22318','last','$'), ('32302','43849','17624','last','$'), ('32303','33189','17624','last','$'), ('32304','43850','17682','last','$'), ('32305','33212','17682','last','$'), ('32306','43851','17726','last','$'), ('32307','33232','17726','last','$'), ('32308','43852','17750','last','$'), ('32309','33255','17750','last','$'), ('32310','43853','17815','last','$'), ('32311','33263','17815','last','$'), ('32312','43854','17856','last','$'), ('32313','33282','17856','last','$'), ('32314','43855','17895','last','$'), ('32315','33303','17895','last','$'), ('32316','43856','22328','last','$'), ('32317','42091','22328','last','$'), ('32318','43857','22338','last','$'), ('32319','42111','22338','last','$'), ('32320','43858','22349','last','$'), ('32321','42142','22349','last','$'), ('32322','43859','22359','last','$'), ('32323','42156','22359','last','$'), ('32324','43860','19034','last','$'), ('32325','35541','19034','last','$'), ('32326','43861','19048','last','$'), ('32327','35573','19048','last','$'), ('32328','43862','19061','last','$'), ('32329','35617','19061','last','$'), ('32330','43863','19068','last','$'), ('32331','35648','19068','last','$'), ('32332','43864','19090','last','$'), ('32333','35715','19090','last','$'), ('32334','43865','19115','last','$'), ('32335','35785','19115','last','$'), ('32336','43866','19130','last','$'), ('32337','35819','19130','last','$'), ('32338','43867','19140','last','$'), ('32339','35857','19140','last','$'), ('32340','43868','19153','last','$'), ('32341','35901','19153','last','$'), ('32342','43869','19166','last','$'), ('32343','35945','19166','last','$'), ('32344','43870','19179','last','$'), ('32345','35989','19179','last','$'), ('32346','43871','19193','last','$'), ('32347','36034','19193','last','$'), ('32348','43872','19207','last','$'), ('32349','36079','19207','last','$'), ('32350','43873','19220','last','$'), ('32351','36123','19220','last','$'), ('32352','43874','22438','last','$'), ('32353','42392','22438','last','$'), ('32354','43875','22506','last','$'), ('32355','42578','22506','last','$'), ('32378','43887','22519','last','$'), ('32379','42607','22519','last','$'), ('32380','43888','22525','last','$'), ('32381','42618','22525','last','$'), ('32382','43889','19230','last','$'), ('32383','36165','19230','last','$'), ('32384','43890','22531','last','$'), ('32385','42629','22531','last','$'), ('32396','43896','19468','last','$'), ('32397','36550','19468','last','$'), ('32398','43897','19514','last','$'), ('32399','36607','19514','last','$'), ('32400','43898','19560','last','$'), ('32401','36664','19560','last','$'), ('32402','43899','19606','last','$'), ('32403','36721','19606','last','$'), ('32404','43900','22543','last','$'), ('32405','42651','22543','last','$'), ('32406','43904','22876','last','$'), ('32407','43902','22877','max','$,5m'), ('32408','43933','22878','last','$'), ('32409','43933','22879','last','$'), ('32410','43933','22880','last','$'), ('32411','43936','22881','last','$'), ('32412','43938','22882','last','$'), ('32413','43938','22883','last','$'), ('32414','43938','22884','last','$'), ('32415','43939','22885','last','$'), ('32416','43939','22886','last','$'), ('32417','43939','22887','last','$'), ('32418','43939','22888','last','$'), ('32419','43940','22889','last','$'), ('32420','43940','22890','last','$'), ('32421','43940','22891','last','$'), ('32422','43943','22892','last','$'), ('32423','43949','22893','last','$'), ('32424','43948','22893','last','$'), ('32425','43949','22894','last','$'), ('32426','43948','22894','last','$'), ('32427','43949','22895','last','$'), ('32428','43948','22895','last','$'), ('32429','43948','22896','last','$'), ('32430','43948','22897','last','$'), ('32431','43947','22898','last','$'), ('32432','43947','22899','last','$'), ('32433','43947','22900','last','$'), ('32434','43967','22901','last','$'), ('32435','43967','22902','last','$'), ('32436','43967','22903','last','$'), ('32437','43969','22904','last','$'), ('32438','43969','22905','last','$'), ('32439','43969','22906','last','$'), ('32440','43976','22907','last','$'), ('32441','43976','22908','last','$'), ('32442','43976','22909','last','$'), ('32443','43976','22910','last','$'), ('32444','43977','22911','last','$'), ('32445','43977','22912','last','$'), ('32446','43977','22913','last','$'), ('32447','43979','22914','last','$'), ('32448','43979','22915','last','$'), ('32449','43979','22916','last','$'), ('32450','43982','22917','last','$'), ('32451','43982','22918','last','$'), ('32452','43982','22919','last','$'), ('32453','43984','22920','last','$'), ('32454','43984','22921','last','$'), ('32455','43984','22922','last','$'), ('32456','43987','22923','last','$'), ('32457','43990','22924','last','$'), ('32458','43990','22925','last','$'), ('32459','43990','22926','last','$'), ('32460','43991','22927','last','$'), ('32461','43992','22927','last','$'), ('32462','43993','22928','last','$'), ('32463','43993','22929','last','$'), ('32464','43993','22930','last','$'), ('32465','44001','22931','last','$'), ('32466','44001','22932','last','$'), ('32467','44001','22933','last','$'), ('32468','44002','22934','last','$'), ('32469','44002','22935','last','$'), ('32470','44003','22936','last','$'), ('32471','44003','22937','last','$'), ('32472','44003','22938','last','$'), ('32473','44005','22939','last','$'), ('32474','44005','22940','last','$'), ('32475','44008','22941','last','$'), ('32476','44015','22942','last','$'), ('32477','44015','22943','last','$'), ('32478','44015','22944','last','$'), ('32479','44016','22945','last','$'), ('32480','44016','22946','last','$'), ('32481','44016','22947','last','$'), ('32482','44016','22948','last','$'), ('32483','44017','22949','last','$'), ('32484','44017','22950','last','$'), ('32485','44017','22951','last','$'), ('32486','44022','22952','last','$'), ('32487','44023','22952','last','$'), ('32488','44030','22953','last','$'), ('32489','44031','22953','last','$'), ('32490','44030','22954','last','$'), ('32491','44030','22955','last','$'), ('32492','44030','22956','last','$'), ('32493','44030','22957','last','$'), ('32494','44032','22958','last','$'), ('32495','44032','22959','last','$'), ('32496','44032','22960','last','$'), ('32497','44037','22961','last','$'), ('32498','44037','22962','last','$'), ('32499','44037','22963','last','$'), ('32500','44037','22964','last','$'), ('32501','44038','22965','last','$'), ('32502','44038','22966','last','$'), ('32503','44038','22967','last','$'), ('32504','44042','22968','last','$'), ('32505','44042','22969','last','$'), ('32506','44042','22970','last','$'), ('32507','44042','22971','last','$'), ('32508','44043','22972','last','$'), ('32509','44043','22973','last','$'), ('32510','44043','22974','last','$'), ('32511','44046','22975','last','$'), ('32512','44046','22976','last','$'), ('32513','44046','22977','last','$'), ('32514','44046','22978','last','$'), ('32515','44047','22979','last','$'), ('32516','44047','22980','last','$'), ('32517','44047','22981','last','$'), ('32518','44049','22982','last','$'), ('32519','44049','22983','last','$'), ('32520','44049','22984','last','$'), ('32521','44050','22549','last','$'), ('32522','42662','22549','last','$'), ('32523','44051','22555','last','$'), ('32524','42673','22555','last','$'), ('32527','44064','22987','last','$,#1'), ('32530','44075','22990','last','$,#1'), ('32533','44088','22993','last','$,#1'), ('32534','44173','22994','last','$'), ('32535','44173','22995','last','$'), ('32536','44173','22996','last','$'), ('32538','44175','22998','min','$,5m'), ('32539','44174','22999','last','$'), ('32540','44165','23000','last','$'), ('32541','44165','23001','last','$'), ('32542','44192','23002','last','$'), ('32543','44192','23003','last','$'), ('32544','44192','23004','last','$'), ('32546','44196','23006','min','$,5m'), ('32547','44195','23007','last','$'), ('32548','44193','23008','min','$,5m'), ('32549','44187','23009','last','$'), ('32550','44187','23010','last','$'), ('32555','42486','22468','max','$,5m'), ('32556','42464','22468','last','$'), ('32557','42542','22490','max','$,5m'), ('32558','42520','22490','last','$'), ('32560','44263','23012','last','$'), ('32561','44263','23013','last','$'), ('32562','44263','23014','last','$'), ('32563','44267','23015','min','$,5m'), ('32564','44266','23016','last','$'), ('32565','44259','23017','min','$,5m'), ('32566','44254','23018','last','$'), ('32567','44254','23019','last','$'), ('32568','44284','23020','last','$'), ('32569','44284','23021','last','$'), ('32570','44284','23022','last','$'), ('32571','44289','23023','min','$,5m'), ('32572','44288','23024','last','$'), ('32573','44286','23025','min','$,5m'), ('32574','44279','23026','last','$'), ('32575','44279','23027','last','$'), ('32576','44301','23028','last','$'), ('32577','44303','23029','last','$'), ('32578','44304','23030','last','$'), ('32580','44305','23032','last','$'), ('32581','44306','23033','last','$'), ('32582','44307','23034','last','$'), ('32583','44308','23035','last','$'), ('32584','44319','23036','min','$,#3'), ('32585','44320','23037','min','$,#3'), ('32586','44321','23038','last','$'), ('32587','30896','23039','nodata','$,30m'), ('32588','44339','23039','last','$'), ('32589','28743','23040','last','$'), ('32590','44339','23040','last','$'), ('32591','28748','23041','min','$,5m'), ('32592','44339','23041','last','$'), ('32593','44339','23042','last','$'), ('32597','28816','23044','min','$,5m'), ('32598','44347','23044','last','$'), ('32599','28810','23045','last','$'), ('32600','44347','23045','last','$'), ('32601','28805','23046','min','$,5m'), ('32602','44347','23046','last','$'), ('32603','44347','23047','last','$'), ('32604','31579','23048','nodata','$,30m'), ('32605','44355','23048','last','$'), ('32606','31587','23049','last','$'), ('32607','31587','23049','nodata','$,3m'), ('32608','44355','23049','last','$'), ('32609','44355','23050','last','$'), ('32610','29654','23051','nodata','$,30m'), ('32611','44365','23051','last','$'), ('32612','29695','23052','max','$,5m'), ('32613','44365','23052','last','$'), ('32614','29655','23053','last','$'), ('32615','44365','23053','last','$'), ('32616','29660','23054','min','$,5m'), ('32617','44365','23054','last','$'), ('32618','44365','23055','last','$'), ('32623','44381','23058','max','$,#3'), ('32624','44382','23059','min','$,5m'), ('32625','44383','23060','avg','$,5m'), ('32626','44388','23061','change','$'), ('32627','44388','23061','last','$'), ('32628','44390','23062','change','$'), ('32629','44390','23062','last','$'), ('32630','44392','23063','change','$'), ('32631','44392','23063','last','$'), ('32632','44393','23064','last','$'), ('32633','44394','23065','max','$,{$SNMP.TIMEOUT}'), ('32634','44403','23066','min','$,5m'), ('32635','44404','23067','change','$'), ('32636','44404','23067','last','$'), ('32637','44405','23068','last','$'), ('32638','44405','23069','last','$'), ('32639','44405','23070','last','$'), ('32640','44408','23071','min','$,5m'), ('32641','44415','23072','change','$'), ('32642','44415','23072','last','$'), ('32643','44417','23072','find','$,#1,"regexp","^(6|7|11|62|69|117)$"'), ('32644','44416','23072','last','$'), ('32645','44415','23072','last','$,#2'), ('32646','44411','23073','avg','$,15m'), ('32647','44415','23073','last','$'), ('32648','44414','23074','avg','$,15m'), ('32649','44415','23074','last','$'), ('32650','44410','23075','min','$,5m'), ('32651','44410','23075','max','$,5m'), ('32652','44413','23076','min','$,5m'), ('32653','44413','23076','max','$,5m'), ('32654','44416','23077','last','$'), ('32655','44416','23077','change','$'), ('32656','44418','23078','last','$'), ('32657','44419','23079','last','$'), ('32658','44419','23080','last','$'), ('32659','44419','23081','find','$,#1,"regexp",{$PSU.PROBLEM.STATES}'), ('32660','44420','23082','last','$'), ('32661','44420','23083','last','$'), ('32662','44421','23084','avg','$,5m'), ('32663','44421','23084','max','$,5m'), ('32664','44421','23085','avg','$,5m'), ('32665','44421','23085','max','$,5m'), ('32666','44421','23086','avg','$,5m'), ('32667','44421','23086','min','$,5m'), ('32668','44429','23087','last','$,#2'), ('32669','44429','23087','last','$'), ('32670','44432','23088','last','$,#2'), ('32671','44432','23088','last','$'), ('32672','44435','23089','last','$,#2'), ('32673','44435','23089','last','$'), ('32674','44440','23090','last','$,#2'), ('32675','44440','23090','last','$'), ('32676','44441','23091','last','$,#2'), ('32677','44441','23091','last','$'), ('32678','44444','23092','last','$,#2'), ('32679','44444','23092','last','$'), ('32680','44449','23093','last','$,#2'), ('32681','44449','23093','last','$'), ('32682','44452','23094','last','$,#2'), ('32683','44452','23094','last','$'), ('32684','44463','23095','last','$,#1'), ('32685','44463','23096','last','$,#1'), ('32686','44464','23097','last','$'), ('32687','44465','23098','last','$,#1'), ('32688','44465','23098','last','$,#2'), ('32689','44465','23098','last','$'), ('32690','44476','23099','last','$,#1'), ('32691','44482','23100','last','$,#1'), ('32692','44482','23101','last','$,#1'), ('32693','44483','23102','last','$,#1'), ('32694','44483','23103','last','$,#1'), ('32695','44484','23104','last','$,#1'), ('32696','44484','23105','last','$,#1'), ('32697','44484','23105','last','$,#2'), ('32698','44487','23106','last','$,#1'), ('32701','44495','23107','last','$'), ('32702','44505','23108','find','$,,"like","Failed"'), ('32703','44514','23109','find','$,,"like","Failed"'), ('32704','44517','23110','last','$'), ('32705','44518','23111','last','$'), ('32706','44524','23112','last','$'), ('32707','44546','23113','last','$'), ('32708','44546','23114','last','$'), ('32709','44546','23115','last','$'), ('32710','44554','23116','min','$,5m'), ('32711','44552','23117','last','$'), ('32712','44539','23118','last','$'), ('32713','44539','23119','last','$'), ('32714','44581','23120','last','$'), ('32715','44581','23121','last','$'), ('32716','44581','23122','last','$'), ('32717','44577','23123','min','$,5m'), ('32718','44575','23124','last','$'), ('32719','44566','23125','last','$'), ('32720','44566','23126','last','$'), ('32721','44593','23127','last','$'), ('32722','44594','23128','last','$'), ('32723','44595','23128','last','$'), ('32724','44596','23129','last','$,#1'), ('32725','44596','23129','last','$,#2'), ('32726','44596','23130','last','$'), ('32727','44597','23131','last','$,#1'), ('32728','44597','23131','last','$,#2'), ('32729','44600','23132','min','$,5m'), ('32730','44600','23133','min','$,5m'), ('32731','44601','23134','last','$,#1'), ('32732','44601','23134','last','$,#2'), ('32733','44601','23135','last','$'), ('32734','44605','23136','last','$'), ('32735','44605','23137','last','$,#1'), ('32736','44605','23137','last','$,#2'), ('32737','44607','23138','min','$,5m'), ('32738','44607','23139','min','$,5m'), ('32740','44608','23141','min','$,5m'), ('32741','44616','23142','last','$'), ('32742','44619','23143','min','$,5m'), ('32743','44619','23144','min','$,5m'), ('32744','44620','23145','last','$'), ('32745','44621','23145','last','$'), ('32746','44622','23146','last','$,#1'), ('32747','44622','23146','last','$,#2'), ('32748','44622','23147','last','$'), ('32749','44623','23148','last','$,#1'), ('32750','44623','23148','last','$,#2'), ('32751','44624','23149','last','$,#1'), ('32752','44624','23149','last','$,#2'), ('32753','44624','23150','last','$'), ('32754','44628','23151','last','$'), ('32755','44628','23152','last','$,#1'), ('32756','44628','23152','last','$,#2'), ('32757','44630','23153','min','$,5m'), ('32758','44630','23154','min','$,5m'), ('32760','44631','23156','min','$,5m'), ('32779','42191','22371','change','$'), ('32780','42191','22371','last','$'), ('32781','42194','22373','change','$'), ('32782','42194','22373','last','$'), ('32783','42231','22385','change','$'), ('32784','42231','22385','last','$'), ('32785','42234','22387','change','$'), ('32786','42234','22387','last','$'), ('32787','42195','23161','change','$'), ('32788','42235','23162','change','$'), ('32789','42323','22416','change','$'), ('32790','42323','22416','last','$'), ('32791','42326','22418','change','$'), ('32792','42326','22418','last','$'), ('32793','42327','23163','change','$'), ('32794','42468','22462','change','$'), ('32795','42468','22462','last','$'), ('32796','44634','23164','change','$'), ('32797','44634','23164','last','$'), ('32798','42524','22485','change','$'), ('32799','42524','22485','last','$'), ('32800','44635','23165','change','$'), ('32801','44635','23165','last','$'), ('32802','44646','23166','last','$'), ('32803','44656','23167','max','$,{$AGENT.TIMEOUT}'), ('32804','44658','23168','nodata','$,{$AGENT.NODATA_TIMEOUT}'), ('32805','44660','23169','min','$,{$AGENT.TIMEOUT}'), ('32806','44661','23170','max','$,#3'), ('32807','44662','23171','min','$,5m'), ('32808','44663','23172','avg','$,5m'), ('32811','44672','23174','max','$,{$SNMP.TIMEOUT}'), ('32812','44667','23175','last','$'), ('32813','44670','23175','last','$'), ('32814','44673','23176','max','$,#3'), ('32815','44674','23177','min','$,5m'), ('32816','44675','23178','avg','$,5m'), ('32817','44679','23179','count','$,#2'), ('32818','44679','23179','last','$'), ('32819','44679','23179','last','$,#2'), ('32820','44679','23180','count','$,#2'), ('32821','44679','23180','last','$'), ('32822','44679','23180','last','$,#2'), ('32823','44679','23181','count','$,#2'), ('32824','44679','23181','last','$'), ('32825','44679','23181','last','$,#2'), ('32826','44679','23182','count','$,#2'), ('32827','44679','23182','last','$'), ('32828','44679','23182','last','$,#2'), ('32829','44679','23183','count','$,#2'), ('32830','44679','23183','last','$'), ('32831','44679','23183','last','$,#2'), ('32832','44679','23184','count','$,#2'), ('32833','44679','23184','last','$'), ('32834','44679','23184','last','$,#2'), ('32835','44679','23185','count','$,#2'), ('32836','44679','23185','last','$'), ('32837','44679','23185','last','$,#2'), ('32838','44679','23186','count','$,#2'), ('32839','44679','23186','last','$'), ('32840','44679','23186','last','$,#2'), ('32841','44682','23187','last','$'), ('32842','44681','23188','last','$,#1'), ('32843','44681','23188','last','$,#2'), ('32844','44681','23188','last','$'), ('32845','44680','23189','avg','$,5m'), ('32846','44680','23190','avg','$,5m'), ('32848','44700','23192','count','$,#2'), ('32849','44700','23192','last','$'), ('32850','44700','23192','last','$,#2'), ('32851','44700','23193','count','$,#2'), ('32852','44700','23193','last','$'), ('32853','44700','23193','last','$,#2'), ('32854','44700','23194','count','$,#2'), ('32855','44700','23194','last','$'), ('32856','44700','23194','last','$,#2'), ('32857','44700','23195','count','$,#2'), ('32858','44700','23195','last','$'), ('32859','44700','23195','last','$,#2'), ('32860','44700','23196','count','$,#2'), ('32861','44700','23196','last','$'), ('32862','44700','23196','last','$,#2'), ('32863','44700','23197','count','$,#2'), ('32864','44700','23197','last','$'), ('32865','44700','23197','last','$,#2'), ('32866','44700','23198','count','$,#2'), ('32867','44700','23198','last','$'), ('32868','44700','23198','last','$,#2'), ('32869','44700','23199','count','$,#2'), ('32870','44700','23199','last','$'), ('32871','44700','23199','last','$,#2'), ('32872','44703','23200','last','$'), ('32873','44702','23201','last','$,#1'), ('32874','44702','23201','last','$,#2'), ('32875','44702','23201','last','$'), ('32876','44701','23202','avg','$,5m'), ('32877','44701','23203','avg','$,5m'), ('32879','44719','23205','count','$,2m,,2'), ('32880','44737','23206','last','$'), ('32881','44760','23206','last','$'), ('32882','44737','23207','last','$'), ('32883','44760','23207','last','$'), ('32884','44736','23208','last','$'), ('32885','44759','23208','last','$'), ('32886','44736','23209','last','$'), ('32887','44759','23209','last','$'), ('32888','44735','23210','last','$'), ('32889','44760','23210','last','$'), ('32890','44735','23211','last','$'), ('32891','44760','23211','last','$'), ('32892','44734','23212','last','$'), ('32893','44759','23212','last','$'), ('32894','44734','23213','last','$'), ('32895','44759','23213','last','$'), ('32896','44761','23214','last','$'), ('32897','44755','23214','last','$'), ('32898','44754','23215','last','$'), ('32899','44753','23216','last','$'), ('32900','44752','23217','last','$'), ('32901','44751','23218','last','$'), ('32902','44750','23219','last','$'), ('32903','44741','23220','last','$'), ('32904','44763','21229','min','$,{$KUBE.REPLICA.MISMATCH.EVAL_PERIOD:"deployment:{#NAMESPACE}:{#NAME}"}'), ('32905','40044','21229','last','$'), ('32906','40043','21229','last','$'), ('32907','44775','21235','min','$,{$KUBE.REPLICA.MISMATCH.EVAL_PERIOD:"replicaset:{#NAMESPACE}:{#NAME}"}'), ('32908','40089','21235','last','$'), ('32909','40087','21235','last','$'), ('32910','44776','21236','min','$,{$KUBE.REPLICA.MISMATCH.EVAL_PERIOD:"statefulset:{#NAMESPACE}:{#NAME}"}'), ('32911','40090','21236','last','$'), ('32912','40093','21236','last','$'), ('32913','44770','23221','count','$,2m,,3'), ('32914','44774','23222','count','$,2m,,5'), ('32922','44060','22985','last','$,#1'), ('32923','44071','22988','last','$,#1'), ('32924','44060','23227','last','$,#1'), ('32925','44071','23228','last','$,#1'), ('32928','44084','22991','last','$,#1'), ('32929','44084','23231','last','$,#1'), ('32930','44180','22997','min','$,5m'), ('32931','44197','23005','min','$,5m'), ('32932','44797','23232','last','$'), ('32933','44809','23233','last','$'), ('32934','44801','23234','min','$,#3'), ('32935','44843','23235','min','$,#3'), ('32936','44845','23236','min','$,#3'), ('32937','44830','23237','min','$,#3'), ('32938','44885','23238','last','$'), ('32939','44914','23239','min','$,5m'), ('32940','44872','23240','last','$'), ('32941','44918','23241','last','$'), ('32942','44918','23242','last','$'), ('32943','44867','23243','last','$'), ('32944','44867','23244','last','$'), ('32945','44867','23245','last','$'), ('32946','44867','23246','last','$'), ('32947','44867','23247','last','$'), ('32948','44867','23248','last','$'), ('32949','44893','23249','min','$,5m'), ('32950','44957','23250','min','$,5m'), ('32951','44875','23251','last','$'), ('32952','44953','23252','last','$'), ('32953','44953','23253','last','$'), ('32954','44874','23254','last','$'), ('32955','44874','23255','last','$'), ('32956','44874','23256','last','$'), ('32957','44874','23257','last','$'), ('32958','44874','23258','last','$'), ('32959','44874','23259','last','$'), ('32960','44940','23260','min','$,5m'), ('32961','44988','23261','min','$,5m'), ('32962','44879','23262','last','$'), ('32963','44984','23263','last','$'), ('32964','44984','23264','last','$'), ('32965','44880','23265','last','$'), ('32966','44880','23266','last','$'), ('32967','44880','23267','last','$'), ('32968','44880','23268','last','$'), ('32969','44880','23269','last','$'), ('32970','44880','23270','last','$'), ('32971','44977','23271','min','$,5m'), ('32972','45023','23272','min','$,15m'), ('32973','44884','23273','last','$'), ('32974','44884','23274','last','$'), ('32975','44884','23275','last','$'), ('32976','44884','23276','last','$'), ('32978','45077','23278','change','$'), ('32979','45078','23279','last','$'), ('32980','45078','23280','last','$'), ('32981','44669','23173','last','$,#1'), ('32982','44669','23173','last','$,#2'), ('32983','44669','23173','last','$'), ('32984','43793','18438','last','$'), ('32985','34159','18438','last','$'), ('32986','43876','18596','last','$'), ('32987','34453','18596','last','$'), ('32988','43877','18629','last','$'), ('32989','34501','18629','last','$'), ('32990','43878','18662','last','$'), ('32991','34549','18662','last','$'), ('32992','43879','18695','last','$'), ('32993','34597','18695','last','$'), ('32994','43880','18728','last','$'), ('32995','34645','18728','last','$'), ('32996','43881','18947','last','$'), ('32997','35018','18947','last','$'), ('32998','43882','18794','last','$'), ('32999','34741','18794','last','$'), ('33000','43883','18495','last','$'), ('33001','34181','18495','last','$'), ('33002','43884','18831','last','$'), ('33003','34795','18831','last','$'), ('33004','43885','18864','last','$'), ('33005','34843','18864','last','$'), ('33006','43886','18897','last','$'), ('33007','34891','18897','last','$'), ('33009','45489','23282','avg','$,10m'), ('33010','45490','23283','avg','$,10m'), ('33011','45492','23284','avg','$,10m'), ('33012','45493','23285','avg','$,10m'), ('33019','39974','21223','last','$'), ('33020','39974','21223','min','$,15m'), ('33021','40071','21232','last','$'), ('33022','40071','21232','min','$,15m'), ('33023','45511','23292','avg','$,10m'), ('33024','45512','23293','avg','$,10m'), ('33025','45513','23294','avg','$,10m'), ('33026','45514','23295','avg','$,10m'), ('33027','28599','23296','nodata','$,{$ZABBIX.PROXY.NODATA_TIMEOUT}'), ('33034','28543','23303','nodata','$,{$ZABBIX.SERVER.NODATA_TIMEOUT}'), ('33035','45532','23304','last','$'), ('33036','45535','23305','min','$,15m'), ('33037','45536','23306','min','$,15m'), ('33038','45537','23307','last','$'), ('33039','45557','23308','last','$'), ('33040','45558','23308','last','$'), ('33041','45557','23309','last','$'), ('33042','45546','23310','min','$,15m'), ('33043','45549','23311','min','$,15m'), ('33044','45562','23312','last','$'), ('33045','45564','23313','min','$,15m'), ('33046','45568','23314','min','$,15m'), ('33047','45569','23315','last','$'), ('33048','45593','23316','last','$'), ('33049','45594','23316','last','$'), ('33050','45593','23317','last','$'), ('33051','45578','23318','min','$,15m'), ('33052','45583','23319','min','$,15m'), ('33053','45017','23320','min','$,15m'), ('33054','45606','23321','last','$'), ('33055','45607','23321','last','$'), ('33056','45606','23322','last','$'), ('33057','45607','23322','last','$'), ('33058','45608','23323','last','$'), ('33059','45609','23323','last','$'), ('33060','45608','23324','last','$'), ('33061','45609','23324','last','$'), ('33062','45610','23325','last','$'), ('33063','45611','23325','last','$'), ('33064','45610','23326','last','$'), ('33065','45611','23326','last','$'), ('33066','45624','23327','last','$'), ('33067','45625','23328','last','$'), ('33068','45626','23329','last','$'), ('33069','45627','23330','last','$'), ('33070','45627','23330','last','$,#2'), ('33071','45618','23331','last','$'), ('33072','45618','23331','last','$,#2'), ('33073','45618','23332','last','$'), ('33074','45630','23333','last','$'), ('33075','45628','23333','last','$'), ('33076','45629','23334','last','$'), ('33077','31287','17017','last','$'), ('33078','45647','23335','last','$'), ('33079','45646','23336','last','$'), ('33080','45640','23337','last','$'), ('33081','45671','23338','min','$,5m'), ('33082','45728','23339','min','$,5m'), ('33083','45729','23340','min','$,5m'), ('33084','45716','23341','min','$,5m'), ('33085','45748','23342','last','$'), ('33086','45779','23343','last','$'), ('33087','45763','23344','last','$'), ('33088','45786','23345','min','$,5m'), ('33089','45773','23346','last','$,#1'), ('33090','45773','23346','last','$,#2'), ('33091','45773','23346','last','$'), ('33092','45744','23347','min','$,5m'), ('33093','45761','23348','last','$,#1'), ('33094','45761','23348','last','$,#2'), ('33095','45761','23348','last','$'), ('33096','45759','23349','last','$'), ('33097','45757','23350','last','$,#1'), ('33098','45757','23350','last','$,#2'), ('33099','45757','23350','last','$'), ('33100','45754','23351','last','$'), ('33101','45752','23352','last','$'), ('33102','45751','23353','last','$'), ('33103','45778','23354','last','$'), ('33104','45756','23355','last','$'), ('33105','45755','23355','last','$'), ('33106','45774','23356','max','$,5m'), ('33107','45777','23356','last','$'), ('33108','45766','23357','min','$,5m'), ('33109','45769','23357','last','$'), ('33110','45767','23357','last','$'), ('33111','45768','23357','last','$'), ('33112','45795','23358','last','$'), ('33113','45795','23359','last','$'), ('33114','45809','23360','change','$'), ('33115','45809','23360','last','$'), ('33116','45810','23360','last','$'), ('33117','45809','23360','last','$,#2'), ('33118','45803','23361','avg','$,15m'), ('33119','45809','23361','last','$'), ('33120','45808','23361','avg','$,15m'), ('33121','45800','23362','min','$,5m'), ('33122','45805','23362','min','$,5m'), ('33123','45802','23362','min','$,5m'), ('33124','45807','23362','min','$,5m'), ('33125','45800','23362','max','$,5m'), ('33126','45805','23362','max','$,5m'), ('33127','45802','23362','max','$,5m'), ('33128','45807','23362','max','$,5m'), ('33129','45810','23363','last','$'), ('33130','45810','23363','last','$,#1'), ('33131','45810','23363','last','$,#2'), ('33132','45863','23364','find','$,,"like","{$NOMAD.API.RESPONSE.SUCCESS}"'), ('33133','45866','23365','find','$,,"like","{$NOMAD.API.RESPONSE.SUCCESS}"'), ('33134','45854','23366','last','$'), ('33135','45855','23367','last','$'), ('33136','45898','23368','last','$'), ('33137','45904','23369','min','$, 10m'), ('33138','45871','23370','find','$,,"like","{$NOMAD.API.RESPONSE.SUCCESS}"'), ('33139','45870','23371','find','$,,"like","{$NOMAD.API.RESPONSE.SUCCESS}"'), ('33140','45868','23372','find','$,,"like","{$NOMAD.API.RESPONSE.SUCCESS}"'), ('33141','45882','23373','last','$'), ('33142','45872','23374','change','$'), ('33143','45859','23375','last','$'), ('33144','45861','23376','last','$'), ('33145','45988','23377','last','$'), ('33146','45988','23377','nodata','$,5m'), ('33147','45987','23378','last','$'), ('33148','45987','23378','nodata','$,5m'), ('33149','45874','23379','find','$,,"like","{$NOMAD.API.RESPONSE.SUCCESS}"'), ('33150','46018','23380','last','$'), ('33151','46018','23380','nodata','$,5m'), ('33152','45875','23381','change','$'), ('33153','45928','23382','min','$,5m'), ('33154','45928','23382','nodata','$,5m'), ('33155','45877','23383','find','$,,"like","{$NOMAD.API.RESPONSE.SUCCESS}"'), ('33156','45873','23384','change','$'), ('33157','45881','23385','min','$, 10m'), ('33158','45890','23385','last','$'), ('33159','45996','23386','min','$,5m'), ('33160','45997','23386','last','$'), ('33161','46041','23387','min','$,5m'), ('33162','46041','23388','min','$,5m'), ('33163','46044','23389','min','$,5m'), ('33164','46044','23390','min','$,5m'), ('33165','46028','23391','last','$'), ('33166','46027','23391','last','$'), ('33167','46027','23392','change','$'), ('33168','46045','23393','avg','$,10m'), ('33169','46046','23394','avg','$,10m'), ('33173','46065','23398','last','$'), ('33174','46065','23399','last','$'), ('33175','46065','23400','last','$'), ('33176','46081','23401','max','$,1m'), ('33177','46080','23401','max','$,1m'), ('33178','46077','23402','max','$,1m'), ('33179','46075','23402','max','$,1m'), ('33180','46073','23403','last','$'), ('33181','46072','23403','last','$'), ('33182','46069','23404','max','$,1m'), ('33183','46084','23404','max','$,1m'), ('33184','46067','23405','max','$,3m'), ('33186','46079','23407','min','$,3m'), ('33187','46079','23407','max','$,3m'), ('33188','46079','23408','min','$,3m'), ('33189','46079','23408','max','$,3m'), ('33192','46071','23411','last','$'), ('33193','46071','23412','last','$'), ('33195','46113','23414','change','$'), ('33196','46112','23415','last','$'), ('33197','46110','23416','min','$,5m'), ('33198','46105','23417','change','$'), ('33199','46105','23417','last','$'), ('33200','46104','23418','last','$'), ('33201','46100','23419','min','$,5m'), ('33202','46097','23420','min','$,5m'), ('33203','46092','23421','change','$'), ('33204','46092','23421','last','$'), ('33205','46091','23422','last','$'), ('33206','46089','23423','min','$,5m'), ('33207','46115','23424','change','$'), ('33208','46115','23424','last','$'), ('33209','46119','23425','change','$'), ('33210','46120','23426','last','$'), ('33211','46124','23427','min','$,5m'), ('33213','46130','23429','last','$,#1'), ('33214','46130','23429','last','$,#2'), ('33215','46130','23429','last','$'), ('33216','46131','23430','last','$,#1'), ('33217','46131','23430','last','$,#2'), ('33218','46131','23430','last','$'), ('33219','46162','23431','last','$'), ('33220','46143','23432','min','$,5m'), ('33221','46143','23433','min','$,5m'), ('33222','46147','23434','last','$'), ('33223','46141','23435','last','$,#1'), ('33224','46141','23435','last','$,#2'), ('33225','46141','23435','last','$'), ('33226','46140','23436','last','$'), ('33227','46140','23436','last','$,#1:now-1m'), ('33228','46140','23436','nodata','$,2m'), ('33229','46158','23437','last','$'), ('33230','46158','23438','last','$'), ('33231','46157','23439','last','$'), ('33232','46157','23439','last','$,#1:now-1m'), ('33233','46157','23439','nodata','$,2m'), ('33234','46154','23440','min','$,5m'), ('33235','46154','23441','min','$,5m'), ('33236','46153','23442','last','$,#1'), ('33237','46153','23442','last','$,#2'), ('33238','46153','23442','last','$'), ('33239','46151','23443','last','$'), ('33240','46151','23443','last','$,#1:now-1m'), ('33241','46151','23443','nodata','$,2m'), ('33242','46150','23444','last','$'), ('33243','46150','23444','last','$,#1:now-1m'), ('33244','46150','23444','nodata','$,2m'), ('33245','46148','23445','last','$'), ('33246','46148','23445','last','$,#1:now-1m'), ('33247','46148','23445','nodata','$,2m'), ('33248','46146','23446','last','$'), ('33249','46146','23446','last','$,#1:now-1m'), ('33250','46146','23446','nodata','$,2m'), ('33251','46144','23447','last','$'), ('33252','46144','23447','last','$,#1:now-1m'), ('33253','46144','23447','nodata','$,2m'), ('33254','46142','23448','last','$'), ('33255','46132','23449','last','$'), ('33263','46182','23452','min','$,5m'), ('33264','46182','23452','max','$,5m'), ('33265','46188','23453','last','$'), ('33266','46188','23453','last','$,#1'), ('33267','46188','23453','last','$,#2'), ('33268','46192','23454','min','$,5m'), ('33269','46195','23455','last','$'), ('33270','46195','23455','last','$,#1'), ('33271','46195','23455','last','$,#2'), ('33272','46195','23456','last','$'), ('33273','46195','23456','last','$,#1'), ('33274','46195','23456','last','$,#2'), ('33275','46196','23457','last','$'), ('33276','46196','23457','last','$,#1'), ('33277','46196','23457','last','$,#2'), ('33278','46204','23458','last','$'), ('33279','46205','23459','last','$'), ('33280','46212','23460','max','$,#3'), ('33281','46225','23461','min','$,5m'), ('33282','46235','23462','avg','$,5m'), ('33283','46230','23463','min','$,5m'), ('33284','46226','23464','last','$,#1'), ('33285','46226','23464','last','$,#2'), ('33286','46226','23464','last','$'), ('33287','46213','23465','last','$,#1'), ('33288','46213','23465','last','$,#2'), ('33289','46213','23465','last','$'), ('33290','46222','23466','last','$'), ('33292','46214','23468','min','$,5m'), ('33293','46236','23469','max','$,{$SNMP.TIMEOUT}'), ('33302','46239','23472','min','$,5m'), ('33303','46242','23472','min','$,5m'), ('33304','46239','23472','max','$,5m'), ('33305','46242','23472','max','$,5m'), ('33306','46245','23473','last','$'), ('33307','46245','23473','last','$,#1'), ('33308','46245','23473','last','$,#2'), ('33309','44329','23428','count','$,#3,,"{$MERAKI.VPN.LOSS.PERCENTILE}"'), ('33310','46301','23474','count','$,2m,"ge",6'), ('33311','46307','23475','count','$,2m,,0'), ('33314','46317','23478','min','$,5m'), ('33315','46317','23479','min','$,5m'), ('33316','46318','23480','min','$,5m'), ('33317','46318','23481','min','$,5m'), ('33318','46320','23482','last','$'), ('33319','46339','23483','change','$'), ('33320','46339','23483','last','$'), ('33321','46341','23484','change','$'), ('33322','46341','23484','last','$'), ('33323','46342','23485','last','$'), ('33324','46342','23486','last','$'), ('33325','46348','23487','change','$'), ('33326','46348','23487','last','$'), ('33327','46349','23488','last','$'), ('33328','46349','23489','last','$'), ('33329','46354','23490','change','$'), ('33330','46354','23490','last','$'), ('33331','46355','23491','last','$'), ('33332','46355','23492','last','$'), ('33333','46357','23493','last','$'), ('33334','46357','23494','last','$'), ('33335','46358','23495','change','$'), ('33336','46358','23495','last','$'), ('33337','46360','23496','last','$'), ('33338','46360','23497','last','$'), ('33339','46365','23498','change','$'), ('33340','46365','23498','last','$'), ('33341','46366','23499','last','$'), ('33342','46366','23500','last','$'), ('33343','46367','23501','last','$'), ('33344','46367','23502','last','$'), ('33345','46369','23503','last','$'), ('33346','46369','23504','last','$'), ('33347','46372','23505','last','$'), ('33348','46372','23506','last','$'), ('33354','33631','18029','last','$'), ('33355','34327','18540','last','$'), ('33356','46449','18540','last','$'), ('33357','34327','18541','last','$'), ('33358','46449','18541','last','$'), ('33359','34326','18536','last','$'), ('33360','34326','18537','last','$'), ('33361','34329','18538','last','$'), ('33362','34329','18539','last','$'), ('33363','46423','23507','last','$'), ('33364','46425','23508','last','$'), ('33365','46426','23509','last','$'), ('33366','46426','23510','last','$'), ('33367','46428','23511','last','$'), ('33368','46429','23512','last','$'), ('33369','46429','23513','last','$'), ('33370','46433','23514','last','$'), ('33371','46433','23515','last','$'), ('33372','46433','23516','last','$'), ('33373','46434','23517','last','$'), ('33374','46435','23518','last','$,#1'), ('33375','46435','23518','last','$,#2'), ('33376','46435','23518','last','$,#3'), ('33377','46436','23519','last','$,#1'), ('33378','46436','23519','last','$,#2'), ('33379','46436','23519','last','$,#3'), ('33380','46442','23520','last','$'), ('33381','46447','23520','last','$'), ('33382','46445','23521','last','$'), ('33383','46445','23522','last','$'), ('33384','46445','23523','last','$'), ('33385','46446','23524','last','$'), ('33386','46448','23525','last','$'), ('33387','46448','23526','last','$'), ('33388','34436','18571','min','$,5m'), ('33389','46082','23406','last','$'), ('33390','46078','23409','last','$'), ('33391','46074','23410','last','$'), ('33392','46070','23413','last','$'), ('33393','28804','23043','find',E'$,,"iregexp","HTTP\\\\/[\\\\d.]+\\\\s+200"'), ('33394','28804','23043','nodata','$,30m'), ('33395','44347','23043','last','$'), ('33396','28821','16679','find',E'$,,"iregexp","HTTP\\\\/[\\\\d.]+\\\\s+200"'), ('33397','28821','16679','nodata','$,30m'), ('33398','46455','23527','last','$'), ('33399','46464','23528','min','$,5m'), ('33400','46465','23529','min','$,5m'), ('33401','46473','23530','last','$'), ('33402','46501','23531','last','$'), ('33403','46502','23531','last','$'), ('33404','46501','23532','last','$'), ('33405','46506','23533','min','$,5m'), ('33406','46540','23534','max','$,5m'), ('33407','46540','23535','max','$,5m'), ('33408','46551','23536','min','$,5m'), ('33409','46558','23537','min','$,5m'), ('33410','46559','23538','min','$,5m'), ('33411','46560','23539','min','$,5m'), ('33412','46561','23540','min','$,5m'), ('33413','46570','23541','min','$,5m'), ('33414','46572','23542','max','$,15m'), ('33415','46574','23543','min','$,5m'), ('33416','46576','23544','min','$,5m'), ('33417','46513','23545','min','$,15m'), ('33418','46514','23546','min','$,15m'), ('33419','46519','23547','min','$,15m'), ('33420','46533','23548','nodata','$,30m'), ('33421','46533','23549','last','$'), ('33422','46520','23550','last','$,#1'), ('33423','46520','23550','last','$,#2'), ('33424','46520','23550','last','$'), ('33425','46591','23551','min','$,5m'), ('33426','46592','23552','min','$,5m'), ('33427','46593','23553','max','$,5m'), ('33428','46521','23554','last','$'), ('33429','46550','23555','last','$'), ('33430','46539','23555','last','$'), ('33431','46578','23556','last','$'), ('33432','46574','23556','last','$'), ('33433','46603','23557','last','$'), ('33434','46605','23558','last','$'), ('33435','46606','23559','last','$'), ('33436','46606','23560','last','$'), ('33437','46637','23561','last','$'), ('33438','46638','23561','last','$'), ('33439','46637','23562','last','$'), ('33440','46638','23562','last','$'), ('33441','46633','23563','last','$'), ('33442','46633','23564','last','$'), ('33443','46635','23565','last','$'), ('33444','46635','23566','last','$'), ('33445','46645','23567','min','$,5m'), ('33446','46646','23568','min','$,5m'), ('33447','46650','23569','min','$,5m'), ('33448','46651','23570','last','$'), ('33449','46657','23571','last','$'), ('33451','46611','23573','last','$'), ('33452','46612','23574','last','$'), ('33453','46612','23575','last','$'), ('33454','46616','23576','last','$'), ('33455','46616','23577','last','$'), ('33456','46616','23578','last','$'), ('33457','46617','23579','last','$'), ('33458','46618','23580','last','$,#1'), ('33459','46618','23580','last','$,#2'), ('33460','46618','23580','last','$,#3'), ('33461','46619','23581','last','$,#1'), ('33462','46619','23581','last','$,#2'), ('33463','46619','23581','last','$,#3'), ('33464','46625','23582','last','$'), ('33465','46630','23582','last','$'), ('33466','46628','23583','last','$'), ('33467','46628','23584','last','$'), ('33468','46628','23585','last','$'), ('33469','46629','23586','last','$'), ('33470','46631','23587','last','$'), ('33471','46631','23588','last','$'), ('33472','46668','23589','last','$'), ('33473','46660','23590','min','$,5m'), ('33474','46660','23591','min','$,5m'), ('33475','46672','23592','min','$,5m'), ('33476','46672','23593','min','$,5m'), ('33477','46661','23594','min','$,5m'), ('33478','46661','23595','min','$,5m'), ('33479','46680','23596','last','$,#1'), ('33480','46663','23597','min','$,5m'), ('33481','46663','23598','min','$,5m'), ('33482','46692','23599','last','$,#1'), ('33483','46692','23599','last','$,#2'), ('33484','46692','23599','last','$'), ('33485','46696','23600','last','$,#1'), ('33486','46696','23600','last','$,#2'), ('33487','46696','23600','last','$'), ('33488','46722','23601','last','$'), ('33489','46721','23601','last','$'), ('33490','46679','23601','last','$'), ('33491','46690','23602','last','$'), ('33492','46683','23602','last','$'), ('33493','46726','23603','min','$,5m'), ('33494','46726','23604','min','$,5m'), ('33495','46742','23605','max','$,3m'), ('33496','46746','23606','max','$,#3'), ('33497','46747','23607','min','$,5m'), ('33498','46748','23608','avg','$,5m'), ('33499','46767','23609','min','$,5m'), ('33500','46772','23610','last','$,#1'), ('33501','46772','23610','last','$,#2'), ('33502','46772','23610','last','$'), ('33503','46774','23611','last','$,#1'), ('33504','46774','23611','last','$,#2'), ('33505','46774','23611','last','$'), ('33506','46776','23612','last','$'), ('33507','46782','23613','min','$,5m'), ('33508','46786','23614','max','$,{$SNMP.TIMEOUT}'), ('33509','46760','23615','min','$,5m'), ('33510','46763','23615','last','$'), ('33511','46761','23615','last','$'), ('33512','46762','23615','last','$'), ('33513','46813','23616','count','$,#3,"eq",1'), ('33514','46813','23616','max','$,#3'), ('33515','46806','23617','avg','$,5m'), ('33516','46806','23617','max','$,5m'), ('33517','46820','23618','change','$'), ('33518','46820','23618','last','$'), ('33519','46822','23618','last','$'), ('33520','46821','23618','last','$'), ('33521','46820','23618','last','$,#2'), ('33522','46816','23619','avg','$,15m'), ('33523','46820','23619','last','$'), ('33524','46819','23619','avg','$,15m'), ('33525','46815','23620','min','$,5m'), ('33526','46818','23620','min','$,5m'), ('33527','46815','23620','max','$,5m'), ('33528','46818','23620','max','$,5m'), ('33532','46823','23622','count','$,#3,"eq",1'), ('33533','46823','23622','max','$,#3'), ('33534','46824','23623','last','$'), ('33536','46829','23625','avg','$,5m'), ('33537','46829','23625','max','$,5m'), ('33538','46829','23626','avg','$,5m'), ('33539','46829','23626','max','$,5m'), ('33540','46829','23627','avg','$,5m'), ('33541','46829','23627','min','$,5m'), ('33542','46832','23628','last','$'), ('33543','46833','23628','last','$'), ('33544','46834','23628','last','$'), ('33545','46832','23629','last','$'), ('33546','46833','23629','last','$'), ('33547','46834','23629','last','$'), ('33548','46843','23630','last','$'), ('33549','31663','23631','last','$'), ('33550','31663','23632','last','$'), ('33551','32958','23633','last','$'), ('33552','32958','23634','last','$'), ('33553','46862','23635','last','$'), ('33554','46866','23636','min','$,5m'), ('33555','46866','23637','min','$,5m'), ('33556','46848','23638','last','$'), ('33557','46848','23639','last','$'), ('33558','46848','23640','last','$'), ('33559','46848','23641','last','$,#1'), ('33560','46848','23641','last','$,#2'), ('33561','46848','23642','last','$'), ('33562','46891','23643','min','$,5m'), ('33563','46891','23644','min','$,5m'), ('33564','46850','23645','min','$,5m'), ('33565','46850','23646','min','$,5m'), ('33566','46852','23647','min','$,5m'), ('33567','46852','23648','min','$,5m'), ('33568','46853','23649','last','$'), ('33569','46914','23650','min','$,5m'), ('33570','46914','23651','min','$,5m'), ('33571','46921','23652','min','$,5m'), ('33572','46921','23653','min','$,5m'), ('33573','46855','23654','last','$,#1'), ('33574','46855','23654','last','$,#2'), ('33575','46857','23655','min','$,5m'), ('33576','46857','23656','min','$,5m'), ('33577','46861','23657','last','$,#1'), ('33578','46861','23657','last','$,#2'), ('33579','46861','23657','last','$'), ('33580','46942','23658','min','$,5m'), ('33581','46948','23659','min','$,5m'), ('33582','46949','23660','min','$,5m'), ('33583','46949','23661','min','$,5m'), ('33584','46957','23662','min','$,5m'), ('33585','46957','23663','min','$,5m'), ('33586','46220','23467','last','$'), ('33587','46220','23664','last','$'), ('33588','46244','23470','change','$'), ('33589','46244','23470','last','$'), ('33590','46246','23470','last','$'), ('33591','46245','23470','last','$'), ('33592','46244','23470','last','$,#2'), ('33593','46240','23471','avg','$,15m'), ('33594','46244','23471','last','$'), ('33595','46243','23471','avg','$,15m'), ('33596','47021','23665','min','$,5m'), ('33597','47024','23666','last','$'), ('33598','47024','23666','last','$,#1'), ('33599','47024','23666','last','$,#2'), ('33600','47034','23667','last','$'), ('33601','47034','23667','last','$,#1'), ('33602','47034','23667','last','$,#2'), ('33603','47040','23668','last','$'), ('33604','47040','23668','last','$,#1'), ('33605','47040','23668','last','$,#2'), ('33606','47040','23669','last','$'), ('33607','47040','23669','last','$,#1'), ('33608','47040','23669','last','$,#2'), ('33609','47040','23670','last','$'), ('33610','47040','23670','last','$,#1'), ('33611','47040','23670','last','$,#2'), ('33612','47041','23671','min','$,5m'), ('33613','47041','23671','max','$,5m'), ('33614','47050','23672','min','$,5m'), ('33615','47050','23672','max','$,5m'), ('33616','47062','23673','last','$'), ('33617','47068','23674','last','$'), ('33618','47068','23675','last','$'), ('33619','47076','23676','last','$'), ('33620','47082','23677','last','$'), ('33621','47111','23678','last','$'), ('33622','47112','23678','last','$'), ('33623','47111','23679','last','$'), ('33624','47109','23680','last','$'), ('33625','47110','23681','last','$'), ('33626','44608','23140','min','$,5m'), ('33627','44631','23155','min','$,5m'), ('33628','22949','17115','min','$,5m'), ('33629','47113','17114','min','$,5m'), ('33630','22949','23682','min','$,5m'), ('33631','47113','23683','min','$,5m'), ('33632','22909','17121','min','$,5m'), ('33633','47114','17120','min','$,5m'), ('33634','22909','23684','min','$,5m'), ('33635','47114','23685','min','$,5m'), ('33636','22989','17124','min','$,5m'), ('33637','47115','17123','min','$,5m'), ('33638','22989','23686','min','$,5m'), ('33639','47115','23687','min','$,5m'), ('33640','42289','22400','min','$,5m'), ('33641','42289','22401','min','$,5m'), ('33642','42304','22408','min','$,5m'), ('33643','42304','22409','min','$,5m'), ('33644','42375','22430','min','$,5m'), ('33645','42375','22431','min','$,5m'), ('33646','29433','16155','min','$,5m'), ('33647','29433','16156','min','$,5m'), ('33648','47119','23688','last','$,#2'), ('33649','47119','23688','last','$'), ('33650','42439','22450','min','$,5m'), ('33651','42439','22451','min','$,5m'), ('33652','23069','17129','min','$,5m'), ('33653','47122','17128','min','$,5m'), ('33654','23069','23689','min','$,5m'), ('33655','47122','23690','min','$,5m'), ('33656','22869','17135','min','$,5m'), ('33657','47123','17134','min','$,5m'), ('33658','22869','23691','min','$,5m'), ('33659','47123','23692','min','$,5m'), ('33660','23029','17140','min','$,5m'), ('33661','47124','17139','min','$,5m'), ('33662','23029','23693','min','$,5m'), ('33663','47124','23694','min','$,5m'), ('33664','42506','22477','min','$,5m'), ('33665','42506','22478','min','$,5m'), ('33666','42562','22499','min','$,5m'), ('33667','42562','22500','min','$,5m'), ('33668','42592','22512','min','$,5m'), ('33669','42592','22513','min','$,5m'), ('33670','47129','23695','last','$'), ('33671','47129','23696','last','$'), ('33672','47129','23697','last','$'), ('33673','47130','23698','last','$'), ('33674','47130','23699','last','$'), ('33675','47130','23700','last','$'), ('33676','47132','23701','last','$'), ('33677','47136','23702','last','$'), ('33678','47149','23703','last','$'), ('33679','47175','23704','min','$,5m'), ('33680','47176','23705','max','$,3m'), ('33681','47178','23706','min','$,5m'), ('33682','47183','23707','max','$,5m'), ('33683','47184','23708','min','$,30m'), ('33684','47160','23709','min','$,5m'), ('33685','47159','23709','last','$'), ('33686','47160','23710','min','$,5m'), ('33687','47159','23710','last','$'), ('33688','47181','23711','max','$,15m'), ('33689','47184','23711','min','$,15m'), ('33690','47192','23712','min','$,5m'), ('33691','47193','23713','min','$,5m'), ('33692','47194','23714','min','$,5m'), ('33693','47195','23715','max','$,5m'), ('33694','47198','23716','last','$'), ('33695','47197','23716','last','$'), ('33696','47198','23717','last','$'), ('33697','47197','23717','last','$'), ('33698','31665','23718','last','$'), ('33699','31665','23719','last','$'), ('33700','32948','23720','last','$'), ('33701','32948','23721','last','$'), ('33702','32960','23722','last','$'), ('33703','32960','23723','last','$'), ('33704','46308','23476','max','$,10m'), ('33705','23357','13517','max','$,10m'), ('33706','28251','15640','max','$,10m'), ('33707','23342','13518','max','$,10m'), ('33708','23341','13519','max','$,10m'), ('33709','47199','23724','avg','$,10m'), ('33710','47200','23725','avg','$,10m'), ('33711','46311','23477','max','$,10m'), ('33712','28599','15890','max','$,10m'), ('33713','28598','15893','max','$,10m'), ('33714','28597','15891','max','$,10m'), ('33715','28596','15892','max','$,10m'), ('33716','47201','23726','avg','$,10m'), ('33717','47202','23727','avg','$,10m'), ('33718','45515','23297','avg','$,10m'), ('33719','22424','13080','avg','$,10m'), ('33720','25370','13566','avg','$,10m'), ('33721','29822','16273','avg','$,10m'), ('33722','33022','17535','avg','$,10m'), ('33723','22412','13081','avg','$,10m'), ('33724','44786','23223','avg','$,10m'), ('33725','44787','23224','avg','$,10m'), ('33726','45495','23286','avg','$,10m'), ('33727','45496','23287','avg','$,10m'), ('33728','22422','13084','avg','$,10m'), ('33729','33023','17536','avg','$,10m'), ('33730','22406','13085','avg','$,10m'), ('33731','22408','13086','avg','$,10m'), ('33732','45516','23298','avg','$,10m'), ('33733','22402','13087','avg','$,10m'), ('33734','22418','13088','avg','$,10m'), ('33735','25366','13562','avg','$,10m'), ('33736','22416','13089','avg','$,10m'), ('33737','22689','13275','avg','$,10m'), ('33738','28535','15853','avg','$,10m'), ('33739','28537','15855','avg','$,10m'), ('33740','39822','21197','avg','$,10m'), ('33741','22399','13091','avg','$,10m'), ('33742','25665','13568','avg','$,10m'), ('33743','25666','13569','avg','$,10m'), ('33744','22420','13092','avg','$,10m'), ('33745','34317','18530','avg','$,10m'), ('33746','34316','18531','avg','$,10m'), ('33747','22414','13093','avg','$,10m'), ('33748','35274','18978','avg','$,10m'), ('33749','46047','23395','avg','$,10m'), ('33750','23171','13441','avg','$,10m'), ('33751','23663','13559','avg','$,10m'), ('33752','22426','13094','avg','$,10m'), ('33753','22404','13095','avg','$,10m'), ('33754','35272','18979','avg','$,10m'), ('33755','22400','13096','avg','$,10m'), ('33756','22401','13097','avg','$,10m'), ('33757','22189','13015','max','$,10m'), ('33758','22191','13074','max','$,10m'), ('33759','23634','13536','max','$,10m'), ('33760','22183','13073','max','$,10m'), ('33761','22396','13017','max','$,10m'), ('33762','22185','13019','max','$,10m'), ('33763','45517','23299','avg','$,10m'), ('33764','23252','13467','avg','$,10m'), ('33765','25371','13567','avg','$,10m'), ('33766','29823','16274','avg','$,10m'), ('33767','33026','17537','avg','$,10m'), ('33768','23253','13468','avg','$,10m'), ('33769','44789','23225','avg','$,10m'), ('33770','44790','23226','avg','$,10m'), ('33771','45498','23288','avg','$,10m'), ('33772','45499','23289','avg','$,10m'), ('33773','23256','13471','avg','$,10m'), ('33774','33027','17538','avg','$,10m'), ('33775','23257','13472','avg','$,10m'), ('33776','23258','13473','avg','$,10m'), ('33777','45518','23300','avg','$,10m'), ('33778','23259','13474','avg','$,10m'), ('33779','23260','13475','avg','$,10m'), ('33780','25367','13563','avg','$,10m'), ('33781','23261','13476','avg','$,10m'), ('33782','23262','13477','avg','$,10m'), ('33783','28536','15854','avg','$,10m'), ('33784','28538','15856','avg','$,10m'), ('33785','39823','21198','avg','$,10m'), ('33786','23264','13479','avg','$,10m'), ('33787','25667','13570','avg','$,10m'), ('33788','25668','13571','avg','$,10m'), ('33789','23265','13480','avg','$,10m'), ('33790','34319','18532','avg','$,10m'), ('33791','34318','18533','avg','$,10m'), ('33792','23266','13481','avg','$,10m'), ('33793','35277','18981','avg','$,10m'), ('33794','46048','23396','avg','$,10m'), ('33795','23267','13482','avg','$,10m'), ('33796','23664','13560','avg','$,10m'), ('33797','23268','13483','avg','$,10m'), ('33798','23269','13484','avg','$,10m'), ('33799','35275','18982','avg','$,10m'), ('33800','23270','13485','avg','$,10m'), ('33801','23328','13436','avg','$,10m'), ('33802','23273','13487','max','$,10m'), ('33803','23620','13075','max','$,10m'), ('33804','23635','13537','max','$,10m'), ('33805','23274','13488','max','$,10m'), ('33806','23275','13489','max','$,10m'), ('33807','23276','13490','max','$,10m'), ('33808','47203','23728','avg','$,10m'), ('33809','47204','23729','avg','$,10m'), ('33810','47205','23730','avg','$,10m'), ('33811','47206','23731','avg','$,10m'), ('33812','47207','23732','avg','$,10m'), ('33813','47208','23733','avg','$,10m'), ('33814','47209','23734','avg','$,10m'), ('33815','47210','23735','avg','$,10m'), ('33816','45519','23301','avg','$,10m'), ('33817','28561','15864','avg','$,10m'), ('33818','28563','15865','avg','$,10m'), ('33819','29821','16272','avg','$,10m'), ('33820','33016','17531','avg','$,10m'), ('33821','28564','15866','avg','$,10m'), ('33822','44792','23229','avg','$,10m'), ('33823','44793','23230','avg','$,10m'), ('33824','45501','23290','avg','$,10m'), ('33825','45502','23291','avg','$,10m'), ('33826','28566','15868','avg','$,10m'), ('33827','33017','17532','avg','$,10m'), ('33828','28567','15869','avg','$,10m'), ('33829','28568','15870','avg','$,10m'), ('33830','45520','23302','avg','$,10m'), ('33831','28569','15871','avg','$,10m'), ('33832','28570','15872','avg','$,10m'), ('33833','28562','15873','avg','$,10m'), ('33834','28571','15874','avg','$,10m'), ('33835','28573','15875','avg','$,10m'), ('33836','28582','15888','avg','$,10m'), ('33837','28583','15889','avg','$,10m'), ('33838','39824','21199','avg','$,10m'), ('33839','28574','15876','avg','$,10m'), ('33840','28575','15877','avg','$,10m'), ('33841','28576','15878','avg','$,10m'), ('33842','28577','15879','avg','$,10m'), ('33843','34314','18528','avg','$,10m'), ('33844','34315','18529','avg','$,10m'), ('33845','28578','15880','avg','$,10m'), ('33846','35279','18984','avg','$,10m'), ('33847','46049','23397','avg','$,10m'), ('33848','28579','15881','avg','$,10m'), ('33849','28580','15882','avg','$,10m'), ('33850','28572','15883','avg','$,10m'), ('33851','28581','15884','avg','$,10m'), ('33852','35278','18985','avg','$,10m'), ('33853','28552','15885','avg','$,10m'), ('33854','28559','15887','avg','$,10m'), ('33855','28543','15857','max','$,10m'), ('33856','28544','15862','max','$,10m'), ('33857','28548','15861','max','$,10m'), ('33858','28549','15858','max','$,10m'), ('33859','28542','15859','max','$,10m'), ('33860','28551','15860','max','$,10m'), ('33861','47211','23736','avg','$,10m'), ('33862','47212','23737','avg','$,10m'), ('33863','47213','23738','avg','$,10m'), ('33864','47214','23739','avg','$,10m'), ('33865','47227','23740','last','$'), ('33866','47227','23741','last','$'), ('33867','47227','23742','last','$'), ('33868','47230','23743','min','$,5m'), ('33869','47244','23744','last','$'), ('33870','47274','23745','min','$,5m'), ('33871','46821','23621','last','$'), ('33872','46821','23621','last','$,#1'), ('33873','46821','23621','last','$,#2'), ('33874','47280','23746','last','$'), ('33875','42192','22372','fuzzytime','$,{$SYSTEM.FUZZYTIME.MAX}'), ('33876','42192','22372','fuzzytime','$,{$SYSTEM.FUZZYTIME.MIN}'), ('33877','42232','22386','fuzzytime','$,{$SYSTEM.FUZZYTIME.MAX}'), ('33878','42232','22386','fuzzytime','$,{$SYSTEM.FUZZYTIME.MIN}'), ('33879','29398','16139','fuzzytime','$,{$SYSTEM.FUZZYTIME.MAX}'), ('33880','29398','16139','fuzzytime','$,{$SYSTEM.FUZZYTIME.MIN}'), ('33881','42467','22463','fuzzytime','$,{$SYSTEM.FUZZYTIME.MAX}'), ('33882','42467','22463','fuzzytime','$,{$SYSTEM.FUZZYTIME.MIN}'), ('33883','47284','23747','last','$'), ('33884','47293','23748','last','$'), ('33885','47298','23749','last','$'), ('33886','47299','23749','last','$'), ('33887','47298','23750','last','$'), ('33888','47310','23751','last','$'), ('33889','47310','23751','last','$,#2'), ('33890','47313','23752','last','$'), ('33891','47313','23752','last','$,#2'), ('33892','47315','23753','last','$'), ('33893','47322','23754','max','$,1h'), ('33894','47322','23755','max','$,1h'), ('33895','47323','23756','find','$,,"iregexp","Must have admin rights to Repository"'), ('33896','47332','23757','last','$,#2'), ('33897','47332','23757','last','$'), ('33898','47333','23758','last','$'), ('33899','47336','23759','last','$'), ('33900','47336','23759','changecount','$,{$GITHUB.WORKFLOW.STATUS.IN_PROGRESS.THRESH:"workflow_in_progress:{#WORKFLOW_NAME}"}'), ('33901','47336','23760','last','$'), ('33902','47336','23760','changecount','$,{$GITHUB.WORKFLOW.STATUS.QUEUED.THRESH:"workflow_queued:{#WORKFLOW_NAME}"}'), ('33903','47359','23761','last','$'), ('33904','47380','23762','last','$'), ('33905','47405','23763','last','$'), ('33906','47427','23764','last','$'), ('33907','47428','23765','last','$'), ('33908','47499','23766','last','$'), ('33909','47514','23767','last','$'), ('33910','47514','23768','last','$'), ('33914','47529','23769','last','$'), ('33915','47530','23770','last','$'), ('33916','47517','23771','last','$'), ('33917','47519','23772','last','$'), ('33918','47520','23773','last','$'), ('33919','42879','22612','last','$'), ('33920','42879','22613','last','$'), ('33921','47542','23774','last','$'), ('33922','32944','23775','max','$,5m'), ('33923','32944','23776','max','$,5m'), ('33924','47545','23777','last','$'), ('33925','47546','23778','last','$'), ('33926','47550','23779','last','$'), ('33927','47559','23780','max','$,3m'), ('33928','47561','23781','last','$,#1'), ('33929','47562','23782','last','$,#1'), ('33930','47563','23783','last','$,#1'), ('33931','47563','23784','last','$,#1'), ('33932','47563','23785','last','$,#1'), ('33933','47563','23785','last','$,#2'), ('33934','47563','23785','last','$'), ('33935','47564','23786','max','$,3m'), ('33936','47566','23787','last','$,#1'), ('33937','47567','23788','last','$,#1'), ('33938','47568','23789','last','$,#1'), ('33939','47568','23790','last','$,#1'), ('33940','47568','23791','last','$,#1'), ('33941','47568','23791','last','$,#2'), ('33942','47568','23791','last','$'), ('33943','40036','21228','count','$,#2,"ne","True"'), ('33944','40036','21228','last','$'), ('33945','40036','21228','count','$,#3,"eq","True"'), ('33946','40052','21230','count','$,#2,"ne","ok"'), ('33947','40052','21230','last','$'), ('33948','40052','21230','count','$,#3,"eq","ok"'), ('33949','40085','21234','count','$,#2,"ne","ok"'), ('33950','40085','21234','last','$'), ('33951','40085','21234','count','$,#3,"eq","ok"'), ('33952','47580','23792','last','$,#1'), ('33953','47580','23792','last','$,#2'), ('33954','47580','23792','last','$'), ('33955','47581','23793','max','$,#3'), ('33956','47582','23794','min','$,5m'), ('33957','47583','23795','avg','$,5m'), ('33958','47589','23796','last','$,#1'), ('33959','47589','23796','last','$,#2'), ('33960','47589','23796','last','$'), ('33961','47592','23797','max','$,{$SNMP.TIMEOUT}'), ('33962','47587','23798','last','$'), ('33963','47590','23798','last','$'), ('33964','47601','23799','last','$'), ('33965','47602','23800','last','$'), ('33966','47603','23801','min','$,5m'), ('33967','47604','23802','last','$'), ('33969','47606','23804','last','$,#1'), ('33970','47606','23804','last','$,#2'), ('33971','47607','23805','last','$'), ('33972','47608','23806','last','$'), ('33973','47609','23807','last','$'), ('33975','47611','23809','last','$'), ('33976','47612','23810','last','$'), ('33978','47614','23812','last','$'), ('33979','47615','23813','last','$'), ('33981','47626','23815','last','$'), ('33982','47630','23816','min','$,5m'), ('33983','47636','23817','last','$'), ('33984','47637','23818','last','$'), ('33985','47646','23819','last','$'), ('33986','47647','23820','last','$,#1'), ('33987','47647','23820','last','$,#2'), ('33988','47647','23820','last','$'), ('33989','47641','23821','nodata','$,30m'), ('33990','47671','23821','last','$'), ('33991','47639','23822','last','$'), ('33992','47671','23822','last','$'), ('33993','47638','23823','min','$,5m'), ('33994','47671','23823','last','$'), ('33995','47671','23824','last','$'), ('33996','47679','23825','last','$'), ('33997','47683','23826','last','$'), ('33998','47683','23826','last','$,#2'), ('33999','47686','23827','find','$,,"like","invalid"'), ('34000','47701','23828','last','$,#1'), ('34001','47701','23828','last','$,#2'), ('34002','47701','23828','last','$'), ('34003','47691','23829','find',E'$,,"iregexp","HTTP\\\\/[\\\\d.]+\\\\s+200"'), ('34004','47691','23829','nodata','$,30m'), ('34005','47705','23829','last','$'), ('34006','47694','23830','min','$,5m'), ('34007','47705','23830','last','$'), ('34008','47689','23831','last','$'), ('34009','47705','23831','last','$'), ('34010','47688','23832','min','$,5m'), ('34011','47705','23832','last','$'), ('34012','47705','23833','last','$'), ('34013','47717','23834','last','$'), ('34014','47782','23835','last','$'), ('34015','47813','23836','last','$'), ('34016','47827','23837','last','$'), ('34017','47832','23838','last','$'), ('34018','47893','23839','last','$'), ('34019','47922','23840','last','$'), ('34020','47923','23841','last','$'), ('34021','47924','23842','last','$'), ('34022','47783','23843','last','$'), ('34023','47784','23843','last','$'), ('34024','47958','23844','min','$,15m'), ('34025','47973','23845','last','$,#1'), ('34026','47973','23845','last','$,#2'), ('34027','47974','23846','min','$,#3'), ('34028','47976','23847','last','$'), ('34029','47977','23848','last','$,#1'), ('34030','47977','23848','last','$,#2'), ('34031','47977','23848','last','$'), ('34032','47976','23849','nodata','$,30m'), ('34033','47981','23849','last','$'), ('34034','47968','23850','last','$'), ('34035','47968','23850','nodata','$,3m'), ('34036','47981','23850','last','$'), ('34037','47981','23851','last','$'), ('34038','47985','23852','min','$,5m'), ('34039','47986','23852','last','$'), ('34040','47994','23853','min','$,5m'), ('34041','47988','23854','max','$,5m'), ('34042','48005','23855','last','$'), ('34043','48009','23856','min','$,5m'), ('34044','48010','23857','min','$,5m'), ('34045','48011','23858','min','$,5m'), ('34046','47991','23859','last','$'), ('34047','48029','23860','min','$,5m'), ('34048','48034','23861','nodata','$,30m'), ('34049','48034','23862','last','$'), ('34050','47992','23863','last','$,#1'), ('34051','47992','23863','last','$,#2'), ('34052','47992','23863','last','$'), ('34053','48045','23864','min','$,5m'), ('34054','48046','23865','count','$,#1,"ne","Yes"'), ('34055','48046','23866','count','$,#1,"eq","No"'), ('34056','48047','23867','count','$,#1,"eq","No"'), ('34057','48056','23868','min','$,5m'), ('34058','48050','23869','max','$,5m'), ('34059','48067','23870','last','$'), ('34060','48071','23871','min','$,5m'), ('34061','48072','23872','min','$,5m'), ('34062','48073','23873','min','$,5m'), ('34063','48053','23874','last','$'), ('34064','48091','23875','min','$,5m'), ('34065','48096','23876','nodata','$,30m'), ('34066','48096','23877','last','$'), ('34067','48054','23878','last','$,#1'), ('34068','48054','23878','last','$,#2'), ('34069','48054','23878','last','$'), ('34070','48107','23879','min','$,5m'), ('34071','48108','23880','count','$,#1,"ne","Yes"'), ('34072','48108','23881','count','$,#1,"eq","No"'), ('34073','48109','23882','count','$,#1,"eq","No"'), ('34074','48154','23883','min','$,5m'), ('34075','48160','23884','last','$'), ('34076','48120','23885','last','$'), ('34077','48121','23886','last','$'), ('34078','48129','23887','last','$'), ('34079','48130','23888','last','$,#1'), ('34080','48130','23888','last','$,#2'), ('34081','48130','23888','last','$'), ('34082','48189','23889','last','$'), ('34083','48190','23890','min','$,5m'), ('34084','48191','23891','min','$,5m'), ('34085','48214','23892','min','$,5m'), ('34086','48245','23893','last','$'), ('34087','48223','23894','nodata','$,30m'), ('34088','48224','23895','max','$,5m'), ('34089','48225','23896','last','$,#1'), ('34090','48225','23896','last','$,#2'), ('34091','48225','23896','last','$'), ('34092','48255','23897','min','$,5m'), ('34093','48229','23898','min','$,5m'), ('34094','48230','23899','last','$'), ('34095','48233','23900','min','$,5m'), ('34096','48235','23901','max','$,5m'), ('34097','48237','23902','last','$'), ('34098','48238','23903','last','$,#1'), ('34099','48238','23903','last','$,#2'), ('34100','48238','23903','last','$'), ('34101','48276','23904','min','$,5m'), ('34102','48277','23905','min','$,5m'), ('34103','48269','23906','last','$'), ('34104','48270','23907','min','$,5m'), ('34105','48290','23908','min','$,5m'), ('34106','48296','23909','max','$,#3'), ('34107','48297','23910','min','$,5m'), ('34108','48298','23911','avg','$,5m'), ('34109','48311','23912','last','$,#1'), ('34110','48311','23912','last','$,#2'), ('34111','48311','23912','last','$'), ('34112','48314','23913','last','$,#1'), ('34113','48314','23913','last','$,#2'), ('34114','48314','23913','last','$'), ('34115','48317','23914','last','$,#1'), ('34116','48317','23914','last','$,#2'), ('34117','48317','23914','last','$'), ('34118','48319','23915','max','$,{$JUNIPER.MX.SNMP.TIMEOUT}'), ('34119','48312','23916','last','$'), ('34120','48315','23916','last','$'), ('34121','48333','23917','last','$,#3'), ('34122','48334','23917','last','$'), ('34123','48340','23918','min','$,5m'), ('34124','48341','23919','min','$,5m'), ('34125','48342','23920','last','$'), ('34126','48342','23921','last','$'), ('34127','48342','23922','last','$'), ('34128','48342','23923','last','$'), ('34129','48342','23924','last','$'), ('34130','48342','23925','last','$'), ('34131','48342','23926','last','$'), ('34132','48342','23927','last','$'), ('34133','48345','23928','count','$,#1,"eq","{$JUNIPER.MX.FAN_CRIT_STATUS}"'), ('34134','48352','23929','change','$'), ('34135','48352','23929','last','$'), ('34136','48354','23929','last','$'), ('34137','48353','23929','last','$'), ('34138','48352','23929','last','$,#2'), ('34139','48348','23930','avg','$,15m'), ('34140','48352','23930','last','$'), ('34141','48351','23930','avg','$,15m'), ('34142','48347','23931','min','$,5m'), ('34143','48350','23931','min','$,5m'), ('34144','48347','23931','max','$,5m'), ('34145','48350','23931','max','$,5m'), ('34146','48353','23932','last','$'), ('34147','48353','23932','last','$,#1'), ('34148','48353','23932','last','$,#2'), ('34149','48355','23933','last','$'), ('34150','48356','23934','last','$,#1'), ('34151','48356','23934','last','$,#2'), ('34152','48359','23935','last','$'), ('34153','48359','23936','last','$'), ('34154','48360','23937','last','$,#1'), ('34155','48360','23937','last','$,#2'), ('34156','48363','23938','last','$'), ('34157','48363','23939','last','$'), ('34158','48364','23940','count','$,#1,"eq","{$JUNIPER.MX.PSU_CRIT_STATUS}"'), ('34159','48367','23941','avg','$,5m'), ('34160','48367','23941','max','$,5m'), ('34161','48367','23942','avg','$,5m'), ('34162','48367','23942','max','$,5m'), ('34163','48367','23943','avg','$,5m'), ('34164','48367','23943','min','$,5m'), ('34165','48371','23944','last','$'), ('34166','48371','23945','last','$'), ('34167','48371','23946','last','$'), ('34168','48374','23947','change','$'), ('34169','48376','23948','min','$, 10m'), ('34170','48376','23949','min','$, 10m'), ('34171','48377','23950','last','$'), ('34173','48380','23952','change','$'), ('34174','48369','23953','min','$,5m'), ('34175','48369','23954','min','$,5m'), ('34176','48396','23955','last','$'), ('34177','48397','23956','last','$'), ('34178','48400','23957','last','$'), ('34179','48402','23958','last','$'), ('34180','48404','23959','last','$'), ('34181','48407','23960','last','$'), ('34182','48408','23961','last','$'), ('34183','48416','23962','last','$'), ('34184','48417','23963','last','$'), ('34185','48418','23964','last','$'), ('34186','48435','23965','last','$'), ('34187','48436','23966','last','$'), ('34188','48438','23967','last','$'), ('34189','48439','23968','last','$'), ('34190','48439','23969','last','$'), ('34191','48441','23970','last','$'), ('34192','48440','23970','last','$'), ('34193','48441','23971','last','$'), ('34194','48440','23971','find','$,,"iregexp","^User requested$"'), ('34195','48441','23972','last','$'), ('34196','48440','23972','last','$'), ('34197','48441','23973','last','$'), ('34198','48441','23973','last','$,#2'), ('34199','48443','23974','count','$,{$PAN.PA440.HA.CONFIG_SYNC.THRESH},"iregexp","^(?:synchronized|synchronization in progress)$"'), ('34200','48445','23975','last','$'), ('34201','48446','23976','avg','$,15m'), ('34202','48451','23976','last','$'), ('34203','48447','23976','avg','$,15m'), ('34204','48449','23977','min','$,5m'), ('34205','48450','23977','min','$,5m'), ('34206','48449','23977','max','$,5m'), ('34207','48450','23977','max','$,5m'), ('34208','48452','23978','last','$'), ('34209','48452','23978','last','$,#2'), ('34210','48456','23979','min','$,5m'), ('34211','48456','23979','max','$,5m'), ('34212','48457','23980','last','$'), ('34213','48458','23981','last','$'), ('34214','48459','23982','nodata','$,5m'), ('34215','48459','23983','last','$'), ('34216','48460','23984','nodata','$,5m'), ('34217','48460','23985','last','$'), ('34218','48467','23986','last','$,#1'), ('34219','48467','23986','last','$,#2'), ('34220','48467','23986','last','$'), ('34221','48469','23987','last','$,#1'), ('34222','48469','23987','last','$,#2'), ('34223','48469','23987','last','$'), ('34224','48470','23988','last','$,'), ('34225','48470','23989','last','$,'), ('34226','48471','23990','min','$,5m'), ('34227','48471','23991','min','$,5m'), ('34228','48472','23992','min','$,5m'), ('34229','48472','23993','min','$,5m'), ('34230','48473','23994','min','$,5m'), ('34231','48473','23995','min','$,5m'), ('34232','48474','23996','min','$,5m'), ('34233','48474','23997','min','$,5m'), ('34234','48466','23998','last','$'), ('34235','48486','23999','last','$,'), ('34236','48486','24000','last','$,'), ('34237','48487','24001','last','$,'), ('34238','48487','24002','last','$,'), ('34239','48507','24003','last','$,'), ('34240','48507','24004','last','$,'), ('34241','48489','24005','last','$,'), ('34242','48489','24006','last','$,'), ('34243','48492','24007','last','$,'), ('34244','48492','24007','last','$,#1'), ('34245','48492','24007','last','$,#2'), ('34246','48492','24008','last','$,'), ('34247','48492','24008','last','$,#1'), ('34248','48492','24008','last','$,#2'), ('34249','48495','24009','last','$,#1'), ('34250','48495','24009','last','$,#2'), ('34251','48495','24009','last','$'), ('34252','48497','24010','last','$,'), ('34253','48497','24011','last','$,'), ('34254','48508','24012','last','$,'), ('34255','48508','24013','last','$,'), ('34256','48510','24014','last','$,'), ('34257','48510','24015','last','$,'), ('34258','48512','24016','last','$,'), ('34259','48512','24017','last','$,'), ('34260','48500','24018','last','$,'), ('34261','48504','24019','last','$,'), ('34262','48504','24020','last','$,'), ('34263','48523','24021','last','$,#1'), ('34264','48523','24021','last','$,#2'), ('34265','48523','24021','last','$'), ('34266','48525','24022','last','$,#1'), ('34267','48525','24022','last','$,#2'), ('34268','48525','24022','last','$'), ('34269','48528','24023','change','$'), ('34270','48530','24024','last','$,#1'), ('34271','48530','24024','last','$,#2'), ('34272','48530','24024','last','$'), ('34273','48536','24025','last','$'), ('34274','48536','24026','last','$'), ('34275','48536','24027','last','$'), ('34276','48537','24028','last','$,#1'), ('34277','48537','24028','last','$,#2'), ('34278','48537','24028','last','$'), ('34279','48541','24029','max','$,{$DELL.SNMP.TIMEOUT}'), ('34280','48526','24030','last','$'), ('34281','48532','24030','last','$'), ('34282','48555','24031','last','$'), ('34283','48555','24032','last','$'), ('34284','48555','24033','last','$'), ('34285','48556','24034','last','$'), ('34286','48556','24035','last','$'), ('34287','48556','24036','last','$'), ('34288','48557','24037','last','$,#1'), ('34289','48558','24038','last','$,#1'), ('34290','48560','24039','last','$'), ('34291','48560','24040','last','$'), ('34292','48562','24041','last','$,#1'), ('34293','48563','24042','last','$,#1'), ('34294','48563','24042','last','$,#2'), ('34295','48564','24043','last','$,#1'), ('34296','48567','24044','last','$,#1'), ('34297','48567','24044','last','$,#2'), ('34298','48567','24044','last','$'), ('34299','48569','24045','last','$'), ('34300','48570','24046','last','$'), ('34301','48570','24047','last','$'), ('34302','48571','24048','last','$'), ('34303','48571','24049','last','$'), ('34304','48572','24050','last','$,#1'), ('34305','48573','24051','last','$'), ('34306','48573','24052','last','$'), ('34307','48573','24053','last','$'), ('34308','48579','24054','last','$'), ('34309','48579','24055','last','$'), ('34310','48581','24056','last','$'), ('34311','36215','24057','last','$,#1'), ('34312','36215','24057','last','$,#2'), ('34313','36215','24057','last','$'), ('34314','36217','24058','last','$,#1'), ('34315','36217','24058','last','$,#2'), ('34316','36217','24058','last','$'), ('34317','36218','24059','last','$,'), ('34318','36218','24060','last','$,'), ('34319','48587','24061','min','$,5m'), ('34320','48587','24062','min','$,5m'), ('34321','48588','24063','min','$,5m'), ('34322','48588','24064','min','$,5m'), ('34323','48589','24065','min','$,5m'), ('34324','48589','24066','min','$,5m'), ('34325','48590','24067','min','$,5m'), ('34326','48590','24068','min','$,5m'), ('34327','36214','24069','last','$'), ('34328','48602','24070','last','$,'), ('34329','48602','24071','last','$,'), ('34330','48603','24072','last','$,'), ('34331','48603','24073','last','$,'), ('34332','48623','24074','last','$,'), ('34333','48623','24075','last','$,'), ('34334','48605','24076','last','$,'), ('34335','48605','24077','last','$,'), ('34336','48608','24078','last','$,'), ('34337','48608','24078','last','$,#1'), ('34338','48608','24078','last','$,#2'), ('34339','48608','24079','last','$,'), ('34340','48608','24079','last','$,#1'), ('34341','48608','24079','last','$,#2'), ('34342','48611','24080','last','$,#1'), ('34343','48611','24080','last','$,#2'), ('34344','48611','24080','last','$'), ('34345','48613','24081','last','$,'), ('34346','48613','24082','last','$,'), ('34347','48624','24083','last','$,'), ('34348','48624','24084','last','$,'), ('34349','48626','24085','last','$,'), ('34350','48626','24086','last','$,'), ('34351','48628','24087','last','$,'), ('34352','48628','24088','last','$,'), ('34353','48616','24089','last','$,'), ('34354','48620','24090','last','$,'), ('34355','48620','24091','last','$,'), ('34356','36257','24092','last','$,#1'), ('34357','36257','24092','last','$,#2'), ('34358','36257','24092','last','$'), ('34359','36259','24093','last','$,#1'), ('34360','36259','24093','last','$,#2'), ('34361','36259','24093','last','$'), ('34362','48638','24094','change','$'), ('34363','36261','24095','last','$,#1'), ('34364','36261','24095','last','$,#2'), ('34365','36261','24095','last','$'), ('34366','36263','24096','last','$'), ('34367','36263','24097','last','$'), ('34368','36263','24098','last','$'), ('34369','36264','24099','last','$,#1'), ('34370','36264','24099','last','$,#2'), ('34371','36264','24099','last','$'), ('34372','36267','24100','max','$,{$DELL.SNMP.TIMEOUT}'), ('34373','48637','24101','last','$'), ('34374','48641','24101','last','$'), ('34375','36277','24102','last','$'), ('34376','36277','24103','last','$'), ('34377','36277','24104','last','$'), ('34378','48652','24105','last','$'), ('34379','48652','24106','last','$'), ('34380','48652','24107','last','$'), ('34381','48653','24108','last','$,#1'), ('34382','48654','24109','last','$,#1'), ('34383','48656','24110','last','$'), ('34384','48656','24111','last','$'), ('34385','48658','24112','last','$,#1'), ('34386','48659','24113','last','$,#1'), ('34387','48659','24113','last','$,#2'), ('34388','48660','24114','last','$,#1'), ('34389','36282','24115','last','$,#1'), ('34390','36282','24115','last','$,#2'), ('34391','36282','24115','last','$'), ('34392','36284','24116','last','$'), ('34393','36285','24117','last','$'), ('34394','36285','24118','last','$'), ('34395','36286','24119','last','$'), ('34396','36286','24120','last','$'), ('34397','48661','24121','last','$,#1'), ('34398','36287','24122','last','$'), ('34399','36287','24123','last','$'), ('34400','36287','24124','last','$'), ('34401','36293','24125','last','$'), ('34402','36293','24126','last','$'), ('34403','48664','24127','last','$'), ('34404','36297','24128','last','$,#1'), ('34405','36297','24128','last','$,#2'), ('34406','36297','24128','last','$'), ('34407','36299','24129','last','$,#1'), ('34408','36299','24129','last','$,#2'), ('34409','36299','24129','last','$'), ('34410','36300','24130','last','$,'), ('34411','36300','24131','last','$,'), ('34412','48670','24132','min','$,5m'), ('34413','48670','24133','min','$,5m'), ('34414','48671','24134','min','$,5m'), ('34415','48671','24135','min','$,5m'), ('34416','48672','24136','min','$,5m'), ('34417','48672','24137','min','$,5m'), ('34418','48673','24138','min','$,5m'), ('34419','48673','24139','min','$,5m'), ('34420','36296','24140','last','$'), ('34421','48685','24141','last','$,'), ('34422','48685','24142','last','$,'), ('34423','48686','24143','last','$,'), ('34424','48686','24144','last','$,'), ('34425','48706','24145','last','$,'), ('34426','48706','24146','last','$,'), ('34427','48688','24147','last','$,'), ('34428','48688','24148','last','$,'), ('34429','48691','24149','last','$,'), ('34430','48691','24149','last','$,#1'), ('34431','48691','24149','last','$,#2'), ('34432','48691','24150','last','$,'), ('34433','48691','24150','last','$,#1'), ('34434','48691','24150','last','$,#2'), ('34435','48694','24151','last','$,#1'), ('34436','48694','24151','last','$,#2'), ('34437','48694','24151','last','$'), ('34438','48696','24152','last','$,'), ('34439','48696','24153','last','$,'), ('34440','48707','24154','last','$,'), ('34441','48707','24155','last','$,'), ('34442','48709','24156','last','$,'), ('34443','48709','24157','last','$,'), ('34444','48711','24158','last','$,'), ('34445','48711','24159','last','$,'), ('34446','48699','24160','last','$,'), ('34447','48703','24161','last','$,'), ('34448','48703','24162','last','$,'), ('34449','36339','24163','last','$,#1'), ('34450','36339','24163','last','$,#2'), ('34451','36339','24163','last','$'), ('34452','36341','24164','last','$,#1'), ('34453','36341','24164','last','$,#2'), ('34454','36341','24164','last','$'), ('34455','48721','24165','change','$'), ('34456','36343','24166','last','$,#1'), ('34457','36343','24166','last','$,#2'), ('34458','36343','24166','last','$'), ('34459','36345','24167','last','$'), ('34460','36345','24168','last','$'), ('34461','36345','24169','last','$'), ('34462','36346','24170','last','$,#1'), ('34463','36346','24170','last','$,#2'), ('34464','36346','24170','last','$'), ('34465','36349','24171','max','$,{$DELL.SNMP.TIMEOUT}'), ('34466','48720','24172','last','$'), ('34467','48724','24172','last','$'), ('34468','36359','24173','last','$'), ('34469','36359','24174','last','$'), ('34470','36359','24175','last','$'), ('34471','48735','24176','last','$'), ('34472','48735','24177','last','$'), ('34473','48735','24178','last','$'), ('34474','48736','24179','last','$,#1'), ('34475','48737','24180','last','$,#1'), ('34476','48739','24181','last','$'), ('34477','48739','24182','last','$'), ('34478','48741','24183','last','$,#1'), ('34479','48742','24184','last','$,#1'), ('34480','48742','24184','last','$,#2'), ('34481','48743','24185','last','$,#1'), ('34482','36364','24186','last','$,#1'), ('34483','36364','24186','last','$,#2'), ('34484','36364','24186','last','$'), ('34485','36366','24187','last','$'), ('34486','36367','24188','last','$'), ('34487','36367','24189','last','$'), ('34488','36368','24190','last','$'), ('34489','36368','24191','last','$'), ('34490','48744','24192','last','$,#1'), ('34491','36369','24193','last','$'), ('34492','36369','24194','last','$'), ('34493','36369','24195','last','$'), ('34494','36375','24196','last','$'), ('34495','36375','24197','last','$'), ('34496','48747','24198','last','$'), ('34497','48755','24199','last','$,#1'), ('34498','48755','24199','last','$,#2'), ('34499','48755','24199','last','$'), ('34500','48757','24200','last','$,#1'), ('34501','48757','24200','last','$,#2'), ('34502','48757','24200','last','$'), ('34503','48758','24201','last','$,'), ('34504','48758','24202','last','$,'), ('34505','48759','24203','min','$,5m'), ('34506','48759','24204','min','$,5m'), ('34507','48760','24205','min','$,5m'), ('34508','48760','24206','min','$,5m'), ('34509','48761','24207','min','$,5m'), ('34510','48761','24208','min','$,5m'), ('34511','48762','24209','min','$,5m'), ('34512','48762','24210','min','$,5m'), ('34513','48754','24211','last','$'), ('34514','48774','24212','last','$,'), ('34515','48774','24213','last','$,'), ('34516','48775','24214','last','$,'), ('34517','48775','24215','last','$,'), ('34518','48795','24216','last','$,'), ('34519','48795','24217','last','$,'), ('34520','48777','24218','last','$,'), ('34521','48777','24219','last','$,'), ('34522','48780','24220','last','$,'), ('34523','48780','24220','last','$,#1'), ('34524','48780','24220','last','$,#2'), ('34525','48780','24221','last','$,'), ('34526','48780','24221','last','$,#1'), ('34527','48780','24221','last','$,#2'), ('34528','48783','24222','last','$,#1'), ('34529','48783','24222','last','$,#2'), ('34530','48783','24222','last','$'), ('34531','48785','24223','last','$,'), ('34532','48785','24224','last','$,'), ('34533','48796','24225','last','$,'), ('34534','48796','24226','last','$,'), ('34535','48798','24227','last','$,'), ('34536','48798','24228','last','$,'), ('34537','48800','24229','last','$,'), ('34538','48800','24230','last','$,'), ('34539','48788','24231','last','$,'), ('34540','48792','24232','last','$,'), ('34541','48792','24233','last','$,'), ('34542','48811','24234','last','$,#1'), ('34543','48811','24234','last','$,#2'), ('34544','48811','24234','last','$'), ('34545','48813','24235','last','$,#1'), ('34546','48813','24235','last','$,#2'), ('34547','48813','24235','last','$'), ('34548','48816','24236','change','$'), ('34549','48818','24237','last','$,#1'), ('34550','48818','24237','last','$,#2'), ('34551','48818','24237','last','$'), ('34552','48824','24238','last','$'), ('34553','48824','24239','last','$'), ('34554','48824','24240','last','$'), ('34555','48825','24241','last','$,#1'), ('34556','48825','24241','last','$,#2'), ('34557','48825','24241','last','$'), ('34558','48829','24242','max','$,{$DELL.SNMP.TIMEOUT}'), ('34559','48814','24243','last','$'), ('34560','48820','24243','last','$'), ('34561','48843','24244','last','$'), ('34562','48843','24245','last','$'), ('34563','48843','24246','last','$'), ('34564','48844','24247','last','$'), ('34565','48844','24248','last','$'), ('34566','48844','24249','last','$'), ('34567','48845','24250','last','$,#1'), ('34568','48846','24251','last','$,#1'), ('34569','48848','24252','last','$'), ('34570','48848','24253','last','$'), ('34571','48850','24254','last','$,#1'), ('34572','48851','24255','last','$,#1'), ('34573','48851','24255','last','$,#2'), ('34574','48852','24256','last','$,#1'), ('34575','48855','24257','last','$,#1'), ('34576','48855','24257','last','$,#2'), ('34577','48855','24257','last','$'), ('34578','48857','24258','last','$'), ('34579','48858','24259','last','$'), ('34580','48858','24260','last','$'), ('34581','48859','24261','last','$'), ('34582','48859','24262','last','$'), ('34583','48860','24263','last','$,#1'), ('34584','48861','24264','last','$'), ('34585','48861','24265','last','$'), ('34586','48861','24266','last','$'), ('34587','48867','24267','last','$'), ('34588','48867','24268','last','$'), ('34589','48869','24269','last','$'), ('34590','36379','24270','last','$,#1'), ('34591','36379','24270','last','$,#2'), ('34592','36379','24270','last','$'), ('34593','36381','24271','last','$,#1'), ('34594','36381','24271','last','$,#2'), ('34595','36381','24271','last','$'), ('34596','36382','24272','last','$,'), ('34597','36382','24273','last','$,'), ('34598','48875','24274','min','$,5m'), ('34599','48875','24275','min','$,5m'), ('34600','48876','24276','min','$,5m'), ('34601','48876','24277','min','$,5m'), ('34602','48877','24278','min','$,5m'), ('34603','48877','24279','min','$,5m'), ('34604','48878','24280','min','$,5m'), ('34605','48878','24281','min','$,5m'), ('34606','36378','24282','last','$'), ('34607','48890','24283','last','$,'), ('34608','48890','24284','last','$,'), ('34609','48891','24285','last','$,'), ('34610','48891','24286','last','$,'), ('34611','48911','24287','last','$,'), ('34612','48911','24288','last','$,'), ('34613','48893','24289','last','$,'), ('34614','48893','24290','last','$,'), ('34615','48896','24291','last','$,'), ('34616','48896','24291','last','$,#1'), ('34617','48896','24291','last','$,#2'), ('34618','48896','24292','last','$,'), ('34619','48896','24292','last','$,#1'), ('34620','48896','24292','last','$,#2'), ('34621','48899','24293','last','$,#1'), ('34622','48899','24293','last','$,#2'), ('34623','48899','24293','last','$'), ('34624','48901','24294','last','$,'), ('34625','48901','24295','last','$,'), ('34626','48912','24296','last','$,'), ('34627','48912','24297','last','$,'), ('34628','48914','24298','last','$,'), ('34629','48914','24299','last','$,'), ('34630','48916','24300','last','$,'), ('34631','48916','24301','last','$,'), ('34632','48904','24302','last','$,'), ('34633','48908','24303','last','$,'), ('34634','48908','24304','last','$,'), ('34635','36421','24305','last','$,#1'), ('34636','36421','24305','last','$,#2'), ('34637','36421','24305','last','$'), ('34638','36423','24306','last','$,#1'), ('34639','36423','24306','last','$,#2'), ('34640','36423','24306','last','$'), ('34641','48926','24307','change','$'), ('34642','36425','24308','last','$,#1'), ('34643','36425','24308','last','$,#2'), ('34644','36425','24308','last','$'), ('34645','36427','24309','last','$'), ('34646','36427','24310','last','$'), ('34647','36427','24311','last','$'), ('34648','36428','24312','last','$,#1'), ('34649','36428','24312','last','$,#2'), ('34650','36428','24312','last','$'), ('34651','36431','24313','max','$,{$DELL.SNMP.TIMEOUT}'), ('34652','48925','24314','last','$'), ('34653','48929','24314','last','$'), ('34654','36441','24315','last','$'), ('34655','36441','24316','last','$'), ('34656','36441','24317','last','$'), ('34657','48940','24318','last','$'), ('34658','48940','24319','last','$'), ('34659','48940','24320','last','$'), ('34660','48941','24321','last','$,#1'), ('34661','48942','24322','last','$,#1'), ('34662','48944','24323','last','$'), ('34663','48944','24324','last','$'), ('34664','48946','24325','last','$,#1'), ('34665','48947','24326','last','$,#1'), ('34666','48947','24326','last','$,#2'), ('34667','48948','24327','last','$,#1'), ('34668','36446','24328','last','$,#1'), ('34669','36446','24328','last','$,#2'), ('34670','36446','24328','last','$'), ('34671','36448','24329','last','$'), ('34672','36449','24330','last','$'), ('34673','36449','24331','last','$'), ('34674','36450','24332','last','$'), ('34675','36450','24333','last','$'), ('34676','48949','24334','last','$,#1'), ('34677','36451','24335','last','$'), ('34678','36451','24336','last','$'), ('34679','36451','24337','last','$'), ('34680','36457','24338','last','$'), ('34681','36457','24339','last','$'), ('34682','48952','24340','last','$'), ('34683','36461','24341','last','$,#1'), ('34684','36461','24341','last','$,#2'), ('34685','36461','24341','last','$'), ('34686','36463','24342','last','$,#1'), ('34687','36463','24342','last','$,#2'), ('34688','36463','24342','last','$'), ('34689','36464','24343','last','$,'), ('34690','36464','24344','last','$,'), ('34691','48958','24345','min','$,5m'), ('34692','48958','24346','min','$,5m'), ('34693','48959','24347','min','$,5m'), ('34694','48959','24348','min','$,5m'), ('34695','48960','24349','min','$,5m'), ('34696','48960','24350','min','$,5m'), ('34697','48961','24351','min','$,5m'), ('34698','48961','24352','min','$,5m'), ('34699','36460','24353','last','$'), ('34700','48973','24354','last','$,'), ('34701','48973','24355','last','$,'), ('34702','48974','24356','last','$,'), ('34703','48974','24357','last','$,'), ('34704','48994','24358','last','$,'), ('34705','48994','24359','last','$,'), ('34706','48976','24360','last','$,'), ('34707','48976','24361','last','$,'), ('34708','48979','24362','last','$,'), ('34709','48979','24362','last','$,#1'), ('34710','48979','24362','last','$,#2'), ('34711','48979','24363','last','$,'), ('34712','48979','24363','last','$,#1'), ('34713','48979','24363','last','$,#2'), ('34714','48982','24364','last','$,#1'), ('34715','48982','24364','last','$,#2'), ('34716','48982','24364','last','$'), ('34717','48984','24365','last','$,'), ('34718','48984','24366','last','$,'), ('34719','48995','24367','last','$,'), ('34720','48995','24368','last','$,'), ('34721','48997','24369','last','$,'), ('34722','48997','24370','last','$,'), ('34723','48999','24371','last','$,'), ('34724','48999','24372','last','$,'), ('34725','48987','24373','last','$,'), ('34726','48991','24374','last','$,'), ('34727','48991','24375','last','$,'), ('34728','36503','24376','last','$,#1'), ('34729','36503','24376','last','$,#2'), ('34730','36503','24376','last','$'), ('34731','36505','24377','last','$,#1'), ('34732','36505','24377','last','$,#2'), ('34733','36505','24377','last','$'), ('34734','49009','24378','change','$'), ('34735','36507','24379','last','$,#1'), ('34736','36507','24379','last','$,#2'), ('34737','36507','24379','last','$'), ('34738','36509','24380','last','$'), ('34739','36509','24381','last','$'), ('34740','36509','24382','last','$'), ('34741','36510','24383','last','$,#1'), ('34742','36510','24383','last','$,#2'), ('34743','36510','24383','last','$'), ('34744','36513','24384','max','$,{$DELL.SNMP.TIMEOUT}'), ('34745','49008','24385','last','$'), ('34746','49012','24385','last','$'), ('34747','36523','24386','last','$'), ('34748','36523','24387','last','$'), ('34749','36523','24388','last','$'), ('34750','49023','24389','last','$'), ('34751','49023','24390','last','$'), ('34752','49023','24391','last','$'), ('34753','49024','24392','last','$,#1'), ('34754','49025','24393','last','$,#1'), ('34755','49027','24394','last','$'), ('34756','49027','24395','last','$'), ('34757','49029','24396','last','$,#1'), ('34758','49030','24397','last','$,#1'), ('34759','49030','24397','last','$,#2'), ('34760','49031','24398','last','$,#1'), ('34761','36528','24399','last','$,#1'), ('34762','36528','24399','last','$,#2'), ('34763','36528','24399','last','$'), ('34764','36530','24400','last','$'), ('34765','36531','24401','last','$'), ('34766','36531','24402','last','$'), ('34767','36532','24403','last','$'), ('34768','36532','24404','last','$'), ('34769','49032','24405','last','$,#1'), ('34770','36533','24406','last','$'), ('34771','36533','24407','last','$'), ('34772','36533','24408','last','$'), ('34773','36539','24409','last','$'), ('34774','36539','24410','last','$'), ('34775','49035','24411','last','$'), ('34776','49046','24412','last','$,#1'), ('34777','49046','24412','last','$,#2'), ('34778','49046','24412','last','$'), ('34779','49048','24413','last','$,#1'), ('34780','49048','24413','last','$,#2'), ('34781','49048','24413','last','$'), ('34782','49051','24414','change','$'), ('34783','49053','24415','last','$,#1'), ('34784','49053','24415','last','$,#2'), ('34785','49053','24415','last','$'), ('34786','49059','24416','last','$'), ('34787','49059','24417','last','$'), ('34788','49059','24418','last','$'), ('34789','49060','24419','last','$,#1'), ('34790','49060','24419','last','$,#2'), ('34791','49060','24419','last','$'), ('34792','42641','24420','max','$,{$DELL.SNMP.TIMEOUT}'), ('34793','49049','24421','last','$'), ('34794','49055','24421','last','$'), ('34795','49072','24422','last','$'), ('34796','49072','24423','last','$'), ('34797','49072','24424','last','$'), ('34798','49073','24425','last','$'), ('34799','49073','24426','last','$'), ('34800','49073','24427','last','$'), ('34801','49074','24428','last','$,#1'), ('34802','49075','24429','last','$,#1'), ('34803','49077','24430','last','$'), ('34804','49077','24431','last','$'), ('34805','49079','24432','last','$,#1'), ('34806','49080','24433','last','$,#1'), ('34807','49080','24433','last','$,#2'), ('34808','49081','24434','last','$,#1'), ('34809','49084','24435','last','$,#1'), ('34810','49084','24435','last','$,#2'), ('34811','49084','24435','last','$'), ('34812','49086','24436','last','$'), ('34813','49087','24437','last','$'), ('34814','49087','24438','last','$'), ('34815','49088','24439','last','$'), ('34816','49088','24440','last','$'), ('34817','49089','24441','last','$,#1'), ('34818','49090','24442','last','$'), ('34819','49090','24443','last','$'), ('34820','49090','24444','last','$'), ('34821','49096','24445','last','$'), ('34822','49096','24446','last','$'), ('34823','49098','24447','last','$'), ('34824','43170','22674','last','$'), ('34825','49107','24448','last','$'), ('34826','49100','24449','last','$'), ('34827','49110','24450','avg','$,10m'), ('34828','49111','24451','avg','$,10m'), ('34829','49112','24452','avg','$,10m'), ('34830','49113','24453','avg','$,10m'), ('34831','49114','24454','avg','$,10m'), ('34832','49115','24455','avg','$,10m'), ('34833','49116','24456','avg','$,10m'), ('34834','49117','24457','avg','$,10m'), ('34835','49118','24458','avg','$,10m'), ('34836','49119','24459','avg','$,10m'), ('34837','49120','24460','avg','$,10m'), ('34838','49121','24461','avg','$,10m'), ('34839','49122','24462','avg','$,10m'), ('34840','49123','24463','avg','$,10m'), ('34841','49124','24464','avg','$,10m'), ('34842','49125','24465','avg','$,10m'), ('34843','49126','24466','avg','$,10m'), ('34844','49127','24467','avg','$,10m'), ('34845','49128','24468','avg','$,10m'), ('34846','49129','24469','avg','$,10m'), ('34847','49130','24470','avg','$,10m'), ('34848','49131','24471','avg','$,10m'), ('34849','49132','24472','avg','$,10m'), ('34850','49133','24473','avg','$,10m'), ('34851','49134','24474','avg','$,10m'), ('34852','49135','24475','avg','$,10m'), ('34853','49136','24476','avg','$,10m'), ('34854','49137','24477','max','$,10m'), ('34855','49140','24478','last','$'), ('34856','49141','24479','max','$,10m'), ('34857','49141','24480','nodata','$,{$ZABBIX.PROXY.NODATA_TIMEOUT}'), ('34858','49143','24481','last','$'), ('34859','49144','24482','last','$,#1'), ('34860','49144','24482','last','$,#2'), ('34861','49144','24482','last','$'), ('34862','49145','24483','max','$,10m'), ('34863','49146','24484','max','$,10m'), ('34864','49147','24485','max','$,10m'), ('34865','49101','24486','min','$,10m'), ('34866','49157','24487','avg','$,10m'), ('34867','49158','24488','avg','$,10m'), ('34868','49159','24489','avg','$,10m'), ('34869','49160','24490','avg','$,10m'), ('34870','49161','24491','avg','$,10m'), ('34871','49162','24492','avg','$,10m'), ('34872','49163','24493','avg','$,10m'), ('34873','49164','24494','avg','$,10m'), ('34874','49165','24495','avg','$,10m'), ('34875','49166','24496','avg','$,10m'), ('34876','49167','24497','avg','$,10m'), ('34877','49168','24498','avg','$,10m'), ('34878','49169','24499','avg','$,10m'), ('34879','49170','24500','avg','$,10m'), ('34880','49171','24501','avg','$,10m'), ('34881','49172','24502','avg','$,10m'), ('34882','49173','24503','avg','$,10m'), ('34883','49174','24504','avg','$,10m'), ('34884','49175','24505','avg','$,10m'), ('34885','49176','24506','avg','$,10m'), ('34886','49177','24507','avg','$,10m'), ('34887','49178','24508','avg','$,10m'), ('34888','49179','24509','avg','$,10m'), ('34889','49180','24510','avg','$,10m'), ('34890','49181','24511','avg','$,10m'), ('34891','49182','24512','avg','$,10m'), ('34892','49183','24513','avg','$,10m'), ('34893','49184','24514','max','$,10m'), ('34894','49187','24515','last','$'), ('34895','49188','24516','max','$,10m'), ('34896','49188','24517','nodata','$,{$ZABBIX.PROXY.NODATA_TIMEOUT}'), ('34897','49190','24518','last','$'), ('34898','49191','24519','last','$,#1'), ('34899','49191','24519','last','$,#2'), ('34900','49191','24519','last','$'), ('34901','49192','24520','max','$,10m'), ('34902','49193','24521','max','$,10m'), ('34903','49194','24522','max','$,10m'), ('34904','49104','24523','min','$,10m'), ('34905','49210','24524','last','$'), ('34906','49202','24525','last','$'), ('34907','49215','24526','avg','$,10m'), ('34908','49216','24527','avg','$,10m'), ('34909','49217','24528','avg','$,10m'), ('34910','49218','24529','avg','$,10m'), ('34911','49219','24530','avg','$,10m'), ('34912','49220','24531','avg','$,10m'), ('34913','49221','24532','avg','$,10m'), ('34914','49222','24533','avg','$,10m'), ('34915','49223','24534','avg','$,10m'), ('34916','49224','24535','avg','$,10m'), ('34917','49225','24536','avg','$,10m'), ('34918','49226','24537','avg','$,10m'), ('34919','49227','24538','avg','$,10m'), ('34920','49228','24539','avg','$,10m'), ('34921','49229','24540','avg','$,10m'), ('34922','49230','24541','avg','$,10m'), ('34923','49231','24542','avg','$,10m'), ('34924','49232','24543','avg','$,10m'), ('34925','49233','24544','avg','$,10m'), ('34926','49234','24545','avg','$,10m'), ('34927','49235','24546','avg','$,10m'), ('34928','49236','24547','avg','$,10m'), ('34929','49237','24548','avg','$,10m'), ('34930','49238','24549','avg','$,10m'), ('34931','49239','24550','avg','$,10m'), ('34932','49240','24551','avg','$,10m'), ('34933','49241','24552','avg','$,10m'), ('34934','49242','24553','avg','$,10m'), ('34935','49243','24554','avg','$,10m'), ('34936','49244','24555','avg','$,10m'), ('34937','49245','24556','avg','$,10m'), ('34938','49246','24557','avg','$,10m'), ('34939','49247','24558','avg','$,10m'), ('34940','49248','24559','avg','$,10m'), ('34941','49249','24560','avg','$,10m'), ('34942','49250','24561','avg','$,10m'), ('34943','49251','24562','avg','$,10m'), ('34944','49252','24563','avg','$,10m'), ('34945','49253','24564','avg','$,10m'), ('34946','49254','24565','avg','$,10m'), ('34947','49255','24566','avg','$,10m'), ('34948','49256','24567','avg','$,10m'), ('34949','49257','24568','avg','$,10m'), ('34950','49258','24569','max','$,10m'), ('34951','49258','24570','nodata','$,{$ZABBIX.SERVER.NODATA_TIMEOUT}'), ('34952','49259','24571','last','$'), ('34953','49262','24572','max','$,10m'), ('34954','49265','24573','last','$'), ('34955','49266','24574','last','$,#1'), ('34956','49266','24574','last','$,#2'), ('34957','49266','24574','last','$'), ('34958','49267','24575','max','$,10m'), ('34959','49269','24576','max','$,10m'), ('34960','49270','24577','max','$,10m'), ('34961','49271','24578','max','$,10m'), ('34962','49203','24579','min','$,10m'), ('34963','49284','24580','avg','$,10m'), ('34964','49285','24581','avg','$,10m'), ('34965','49286','24582','avg','$,10m'), ('34966','49287','24583','avg','$,10m'), ('34967','49288','24584','avg','$,10m'), ('34968','49289','24585','avg','$,10m'), ('34969','49290','24586','avg','$,10m'), ('34970','49291','24587','avg','$,10m'), ('34971','49292','24588','avg','$,10m'), ('34972','49293','24589','avg','$,10m'), ('34973','49294','24590','avg','$,10m'), ('34974','49295','24591','avg','$,10m'), ('34975','49296','24592','avg','$,10m'), ('34976','49297','24593','avg','$,10m'), ('34977','49298','24594','avg','$,10m'), ('34978','49299','24595','avg','$,10m'), ('34979','49300','24596','avg','$,10m'), ('34980','49301','24597','avg','$,10m'), ('34981','49302','24598','avg','$,10m'), ('34982','49303','24599','avg','$,10m'), ('34983','49304','24600','avg','$,10m'), ('34984','49305','24601','avg','$,10m'), ('34985','49306','24602','avg','$,10m'), ('34986','49307','24603','avg','$,10m'), ('34987','49308','24604','avg','$,10m'), ('34988','49309','24605','avg','$,10m'), ('34989','49310','24606','avg','$,10m'), ('34990','49311','24607','avg','$,10m'), ('34991','49312','24608','avg','$,10m'), ('34992','49313','24609','avg','$,10m'), ('34993','49314','24610','avg','$,10m'), ('34994','49315','24611','avg','$,10m'), ('34995','49316','24612','avg','$,10m'), ('34996','49317','24613','avg','$,10m'), ('34997','49318','24614','avg','$,10m'), ('34998','49319','24615','avg','$,10m'), ('34999','49320','24616','avg','$,10m'), ('35000','49321','24617','avg','$,10m'), ('35001','49322','24618','avg','$,10m'), ('35002','49323','24619','avg','$,10m'), ('35003','49324','24620','avg','$,10m'), ('35004','49325','24621','avg','$,10m'), ('35005','49326','24622','avg','$,10m'), ('35006','49327','24623','max','$,10m'), ('35007','49327','24624','nodata','$,{$ZABBIX.SERVER.NODATA_TIMEOUT}'), ('35008','49328','24625','last','$'), ('35009','49331','24626','max','$,10m'), ('35010','49334','24627','last','$'), ('35011','49335','24628','last','$,#1'), ('35012','49335','24628','last','$,#2'), ('35013','49335','24628','last','$'), ('35014','49336','24629','max','$,10m'), ('35015','49338','24630','max','$,10m'), ('35016','49339','24631','max','$,10m'), ('35017','49340','24632','max','$,10m'), ('35018','49206','24633','min','$,10m'), ('35019','49209','24634','last','$'), ('35020','44088','22992','last','$,#1'), ('35021','44064','22986','last','$,#1'), ('35022','44075','22989','last','$,#1'), ('35023','49358','24635','last','$,#1'), ('35024','49358','24635','last','$,#2'), ('35025','49366','24636','last','$,#1'), ('35026','49366','24637','last','$,#1'), ('35027','49370','24638','last','$,#1'), ('35028','49370','24639','last','$,#1'), ('35029','49363','24640','last','$,#1'), ('35030','49363','24640','last','$,#2'), ('35031','49377','24641','last','$,#1'), ('35032','49377','24642','last','$,#1'), ('35033','49381','24643','last','$,#1'), ('35034','49381','24644','last','$,#1'), ('35035','49388','24645','last','$'), ('35036','49389','24646','last','$'), ('35037','49391','24647','last','$'), ('35038','49391','24648','last','$'), ('35039','49391','24649','last','$'), ('35040','49394','24650','min','$,5m'), ('35041','49395','24651','last','$'), ('35042','49399','24652','min','$,5m'), ('35043','49409','24653','last','$'), ('35044','49409','24654','last','$'), ('35045','46824','23624','last','$'), ('35046','49420','24655','avg','$,5m'), ('35047','49420','24655','max','$,5m'), ('35048','49420','24656','avg','$,5m'), ('35049','49420','24656','max','$,5m'), ('35050','49420','24657','avg','$,5m'), ('35051','49420','24657','min','$,5m'), ('35052','49421','24658','avg','$,5m'), ('35053','49421','24658','max','$,5m'), ('35054','49421','24659','avg','$,5m'), ('35055','49421','24659','max','$,5m'), ('35056','49421','24660','avg','$,5m'), ('35057','49421','24660','min','$,5m'), ('35058','49424','24661','avg','$,5m'), ('35059','49424','24661','max','$,5m'), ('35060','49424','24662','avg','$,5m'), ('35061','49424','24662','max','$,5m'), ('35062','49424','24663','avg','$,5m'), ('35063','49424','24663','min','$,5m'), ('35064','49425','24664','avg','$,5m'), ('35065','49425','24664','max','$,5m'), ('35066','49425','24665','avg','$,5m'), ('35067','49425','24665','max','$,5m'), ('35068','49425','24666','avg','$,5m'), ('35069','49425','24666','min','$,5m'), ('35070','49428','24667','avg','$,5m'), ('35071','49428','24667','max','$,5m'), ('35072','49428','24668','avg','$,5m'), ('35073','49428','24668','max','$,5m'), ('35074','49428','24669','avg','$,5m'), ('35075','49428','24669','min','$,5m'), ('35076','49429','24670','avg','$,5m'), ('35077','49429','24670','max','$,5m'), ('35078','49429','24671','avg','$,5m'), ('35079','49429','24671','max','$,5m'), ('35080','49429','24672','avg','$,5m'), ('35081','49429','24672','min','$,5m'), ('35082','49432','24673','avg','$,5m'), ('35083','49432','24673','max','$,5m'), ('35084','49432','24674','avg','$,5m'), ('35085','49432','24674','max','$,5m'), ('35086','49432','24675','avg','$,5m'), ('35087','49432','24675','min','$,5m'), ('35088','49433','24676','avg','$,5m'), ('35089','49433','24676','max','$,5m'), ('35090','49433','24677','avg','$,5m'), ('35091','49433','24677','max','$,5m'), ('35092','49433','24678','avg','$,5m'), ('35093','49433','24678','min','$,5m'), ('35094','49436','24679','avg','$,5m'), ('35095','49436','24679','max','$,5m'), ('35096','49436','24680','avg','$,5m'), ('35097','49436','24680','max','$,5m'), ('35098','49436','24681','avg','$,5m'), ('35099','49436','24681','min','$,5m'), ('35100','49437','24682','avg','$,5m'), ('35101','49437','24682','max','$,5m'), ('35102','49437','24683','avg','$,5m'), ('35103','49437','24683','max','$,5m'), ('35104','49437','24684','avg','$,5m'), ('35105','49437','24684','min','$,5m'), ('35106','49440','24685','avg','$,5m'), ('35107','49440','24685','max','$,5m'), ('35108','49440','24686','avg','$,5m'), ('35109','49440','24686','max','$,5m'), ('35110','49440','24687','avg','$,5m'), ('35111','49440','24687','min','$,5m'), ('35112','49441','24688','avg','$,5m'), ('35113','49441','24688','max','$,5m'), ('35114','49441','24689','avg','$,5m'), ('35115','49441','24689','max','$,5m'), ('35116','49441','24690','avg','$,5m'), ('35117','49441','24690','min','$,5m'), ('35118','49444','24691','avg','$,5m'), ('35119','49444','24691','max','$,5m'), ('35120','49444','24692','avg','$,5m'), ('35121','49444','24692','max','$,5m'), ('35122','49444','24693','avg','$,5m'), ('35123','49444','24693','min','$,5m'), ('35124','49445','24694','avg','$,5m'), ('35125','49445','24694','max','$,5m'), ('35126','49445','24695','avg','$,5m'), ('35127','49445','24695','max','$,5m'), ('35128','49445','24696','avg','$,5m'), ('35129','49445','24696','min','$,5m'), ('35130','49448','24697','avg','$,5m'), ('35131','49448','24697','max','$,5m'), ('35132','49448','24698','avg','$,5m'), ('35133','49448','24698','max','$,5m'), ('35134','49448','24699','avg','$,5m'), ('35135','49448','24699','min','$,5m'), ('35136','49449','24700','avg','$,5m'), ('35137','49449','24700','max','$,5m'), ('35138','49449','24701','avg','$,5m'), ('35139','49449','24701','max','$,5m'), ('35140','49449','24702','avg','$,5m'), ('35141','49449','24702','min','$,5m'), ('35142','49452','24703','avg','$,5m'), ('35143','49452','24703','max','$,5m'), ('35144','49452','24704','avg','$,5m'), ('35145','49452','24704','max','$,5m'), ('35146','49452','24705','avg','$,5m'), ('35147','49452','24705','min','$,5m'), ('35148','49453','24706','avg','$,5m'), ('35149','49453','24706','max','$,5m'), ('35150','49453','24707','avg','$,5m'), ('35151','49453','24707','max','$,5m'), ('35152','49453','24708','avg','$,5m'), ('35153','49453','24708','min','$,5m'), ('35154','49456','24709','avg','$,5m'), ('35155','49456','24709','max','$,5m'), ('35156','49456','24710','avg','$,5m'), ('35157','49456','24710','max','$,5m'), ('35158','49456','24711','avg','$,5m'), ('35159','49456','24711','min','$,5m'), ('35160','49457','24712','avg','$,5m'), ('35161','49457','24712','max','$,5m'), ('35162','49457','24713','avg','$,5m'), ('35163','49457','24713','max','$,5m'), ('35164','49457','24714','avg','$,5m'), ('35165','49457','24714','min','$,5m'), ('35166','49460','24715','avg','$,5m'), ('35167','49460','24715','max','$,5m'), ('35168','49460','24716','avg','$,5m'), ('35169','49460','24716','max','$,5m'), ('35170','49460','24717','avg','$,5m'), ('35171','49460','24717','min','$,5m'), ('35172','49461','24718','avg','$,5m'), ('35173','49461','24718','max','$,5m'), ('35174','49461','24719','avg','$,5m'), ('35175','49461','24719','max','$,5m'), ('35176','49461','24720','avg','$,5m'), ('35177','49461','24720','min','$,5m'), ('35178','49464','24721','avg','$,5m'), ('35179','49464','24721','max','$,5m'), ('35180','49464','24722','avg','$,5m'), ('35181','49464','24722','max','$,5m'), ('35182','49464','24723','avg','$,5m'), ('35183','49464','24723','min','$,5m'), ('35184','49465','24724','avg','$,5m'), ('35185','49465','24724','max','$,5m'), ('35186','49465','24725','avg','$,5m'), ('35187','49465','24725','max','$,5m'), ('35188','49465','24726','avg','$,5m'), ('35189','49465','24726','min','$,5m'), ('35190','49468','24727','avg','$,5m'), ('35191','49468','24727','max','$,5m'), ('35192','49468','24728','avg','$,5m'), ('35193','49468','24728','max','$,5m'), ('35194','49468','24729','avg','$,5m'), ('35195','49468','24729','min','$,5m'), ('35196','49469','24730','avg','$,5m'), ('35197','49469','24730','max','$,5m'), ('35198','49469','24731','avg','$,5m'), ('35199','49469','24731','max','$,5m'), ('35200','49469','24732','avg','$,5m'), ('35201','49469','24732','min','$,5m'), ('35202','49472','24733','avg','$,5m'), ('35203','49472','24733','max','$,5m'), ('35204','49472','24734','avg','$,5m'), ('35205','49472','24734','max','$,5m'), ('35206','49472','24735','avg','$,5m'), ('35207','49472','24735','min','$,5m'), ('35208','49473','24736','avg','$,5m'), ('35209','49473','24736','max','$,5m'), ('35210','49473','24737','avg','$,5m'), ('35211','49473','24737','max','$,5m'), ('35212','49473','24738','avg','$,5m'), ('35213','49473','24738','min','$,5m'), ('35214','49476','24739','avg','$,5m'), ('35215','49476','24739','max','$,5m'), ('35216','49476','24740','avg','$,5m'), ('35217','49476','24740','max','$,5m'), ('35218','49476','24741','avg','$,5m'), ('35219','49476','24741','min','$,5m'), ('35220','49477','24742','avg','$,5m'), ('35221','49477','24742','max','$,5m'), ('35222','49477','24743','avg','$,5m'), ('35223','49477','24743','max','$,5m'), ('35224','49477','24744','avg','$,5m'), ('35225','49477','24744','min','$,5m'), ('35226','49480','24745','avg','$,5m'), ('35227','49480','24745','max','$,5m'), ('35228','49480','24746','avg','$,5m'), ('35229','49480','24746','max','$,5m'), ('35230','49480','24747','avg','$,5m'), ('35231','49480','24747','min','$,5m'), ('35232','49481','24748','avg','$,5m'), ('35233','49481','24748','max','$,5m'), ('35234','49481','24749','avg','$,5m'), ('35235','49481','24749','max','$,5m'), ('35236','49481','24750','avg','$,5m'), ('35237','49481','24750','min','$,5m'), ('35238','49484','24751','avg','$,5m'), ('35239','49484','24751','max','$,5m'), ('35240','49484','24752','avg','$,5m'), ('35241','49484','24752','max','$,5m'), ('35242','49484','24753','avg','$,5m'), ('35243','49484','24753','min','$,5m'), ('35244','49485','24754','avg','$,5m'), ('35245','49485','24754','max','$,5m'), ('35246','49485','24755','avg','$,5m'), ('35247','49485','24755','max','$,5m'), ('35248','49485','24756','avg','$,5m'), ('35249','49485','24756','min','$,5m'), ('35250','49488','24757','avg','$,5m'), ('35251','49488','24757','max','$,5m'), ('35252','49488','24758','avg','$,5m'), ('35253','49488','24758','max','$,5m'), ('35254','49488','24759','avg','$,5m'), ('35255','49488','24759','min','$,5m'), ('35256','49489','24760','avg','$,5m'), ('35257','49489','24760','max','$,5m'), ('35258','49489','24761','avg','$,5m'), ('35259','49489','24761','max','$,5m'), ('35260','49489','24762','avg','$,5m'), ('35261','49489','24762','min','$,5m'), ('35262','49492','24763','avg','$,5m'), ('35263','49492','24763','max','$,5m'), ('35264','49492','24764','avg','$,5m'), ('35265','49492','24764','max','$,5m'), ('35266','49492','24765','avg','$,5m'), ('35267','49492','24765','min','$,5m'), ('35268','49493','24766','avg','$,5m'), ('35269','49493','24766','max','$,5m'), ('35270','49493','24767','avg','$,5m'), ('35271','49493','24767','max','$,5m'), ('35272','49493','24768','avg','$,5m'), ('35273','49493','24768','min','$,5m'), ('35274','49496','24769','avg','$,5m'), ('35275','49496','24769','max','$,5m'), ('35276','49496','24770','avg','$,5m'), ('35277','49496','24770','max','$,5m'), ('35278','49496','24771','avg','$,5m'), ('35279','49496','24771','min','$,5m'), ('35280','49497','24772','avg','$,5m'), ('35281','49497','24772','max','$,5m'), ('35282','49497','24773','avg','$,5m'), ('35283','49497','24773','max','$,5m'), ('35284','49497','24774','avg','$,5m'), ('35285','49497','24774','min','$,5m'), ('35286','49500','24775','avg','$,5m'), ('35287','49500','24775','max','$,5m'), ('35288','49500','24776','avg','$,5m'), ('35289','49500','24776','max','$,5m'), ('35290','49500','24777','avg','$,5m'), ('35291','49500','24777','min','$,5m'), ('35292','49501','24778','avg','$,5m'), ('35293','49501','24778','max','$,5m'), ('35294','49501','24779','avg','$,5m'), ('35295','49501','24779','max','$,5m'), ('35296','49501','24780','avg','$,5m'), ('35297','49501','24780','min','$,5m'), ('35298','49504','24781','avg','$,5m'), ('35299','49504','24781','max','$,5m'), ('35300','49504','24782','avg','$,5m'), ('35301','49504','24782','max','$,5m'), ('35302','49504','24783','avg','$,5m'), ('35303','49504','24783','min','$,5m'), ('35304','49505','24784','avg','$,5m'), ('35305','49505','24784','max','$,5m'), ('35306','49505','24785','avg','$,5m'), ('35307','49505','24785','max','$,5m'), ('35308','49505','24786','avg','$,5m'), ('35309','49505','24786','min','$,5m'), ('35310','49508','24787','avg','$,5m'), ('35311','49508','24787','max','$,5m'), ('35312','49508','24788','avg','$,5m'), ('35313','49508','24788','max','$,5m'), ('35314','49508','24789','avg','$,5m'), ('35315','49508','24789','min','$,5m'), ('35316','49509','24790','avg','$,5m'), ('35317','49509','24790','max','$,5m'), ('35318','49509','24791','avg','$,5m'), ('35319','49509','24791','max','$,5m'), ('35320','49509','24792','avg','$,5m'), ('35321','49509','24792','min','$,5m'), ('35322','49512','24793','avg','$,5m'), ('35323','49512','24793','max','$,5m'), ('35324','49512','24794','avg','$,5m'), ('35325','49512','24794','max','$,5m'), ('35326','49512','24795','avg','$,5m'), ('35327','49512','24795','min','$,5m'), ('35328','49513','24796','avg','$,5m'), ('35329','49513','24796','max','$,5m'), ('35330','49513','24797','avg','$,5m'), ('35331','49513','24797','max','$,5m'), ('35332','49513','24798','avg','$,5m'), ('35333','49513','24798','min','$,5m'), ('35334','49516','24799','avg','$,5m'), ('35335','49516','24799','max','$,5m'), ('35336','49516','24800','avg','$,5m'), ('35337','49516','24800','max','$,5m'), ('35338','49516','24801','avg','$,5m'), ('35339','49516','24801','min','$,5m'), ('35340','49517','24802','avg','$,5m'), ('35341','49517','24802','max','$,5m'), ('35342','49517','24803','avg','$,5m'), ('35343','49517','24803','max','$,5m'), ('35344','49517','24804','avg','$,5m'), ('35345','49517','24804','min','$,5m'), ('35346','49520','24805','avg','$,5m'), ('35347','49520','24805','max','$,5m'), ('35348','49520','24806','avg','$,5m'), ('35349','49520','24806','max','$,5m'), ('35350','49520','24807','avg','$,5m'), ('35351','49520','24807','min','$,5m'), ('35352','49521','24808','avg','$,5m'), ('35353','49521','24808','max','$,5m'), ('35354','49521','24809','avg','$,5m'), ('35355','49521','24809','max','$,5m'), ('35356','49521','24810','avg','$,5m'), ('35357','49521','24810','min','$,5m'), ('35358','49524','24811','avg','$,5m'), ('35359','49524','24811','max','$,5m'), ('35360','49524','24812','avg','$,5m'), ('35361','49524','24812','max','$,5m'), ('35362','49524','24813','avg','$,5m'), ('35363','49524','24813','min','$,5m'), ('35364','49525','24814','avg','$,5m'), ('35365','49525','24814','max','$,5m'), ('35366','49525','24815','avg','$,5m'), ('35367','49525','24815','max','$,5m'), ('35368','49525','24816','avg','$,5m'), ('35369','49525','24816','min','$,5m'), ('35370','49528','24817','avg','$,5m'), ('35371','49528','24817','max','$,5m'), ('35372','49528','24818','avg','$,5m'), ('35373','49528','24818','max','$,5m'), ('35374','49528','24819','avg','$,5m'), ('35375','49528','24819','min','$,5m'), ('35376','49529','24820','avg','$,5m'), ('35377','49529','24820','max','$,5m'), ('35378','49529','24821','avg','$,5m'), ('35379','49529','24821','max','$,5m'), ('35380','49529','24822','avg','$,5m'), ('35381','49529','24822','min','$,5m'), ('35382','49532','24823','avg','$,5m'), ('35383','49532','24823','max','$,5m'), ('35384','49532','24824','avg','$,5m'), ('35385','49532','24824','max','$,5m'), ('35386','49532','24825','avg','$,5m'), ('35387','49532','24825','min','$,5m'), ('35388','49533','24826','avg','$,5m'), ('35389','49533','24826','max','$,5m'), ('35390','49533','24827','avg','$,5m'), ('35391','49533','24827','max','$,5m'), ('35392','49533','24828','avg','$,5m'), ('35393','49533','24828','min','$,5m'), ('35394','49536','24829','avg','$,5m'), ('35395','49536','24829','max','$,5m'), ('35396','49536','24830','avg','$,5m'), ('35397','49536','24830','max','$,5m'), ('35398','49536','24831','avg','$,5m'), ('35399','49536','24831','min','$,5m'), ('35400','49537','24832','avg','$,5m'), ('35401','49537','24832','max','$,5m'), ('35402','49537','24833','avg','$,5m'), ('35403','49537','24833','max','$,5m'), ('35404','49537','24834','avg','$,5m'), ('35405','49537','24834','min','$,5m'), ('35406','49540','24835','avg','$,5m'), ('35407','49540','24835','max','$,5m'), ('35408','49540','24836','avg','$,5m'), ('35409','49540','24836','max','$,5m'), ('35410','49540','24837','avg','$,5m'), ('35411','49540','24837','min','$,5m'), ('35412','49541','24838','avg','$,5m'), ('35413','49541','24838','max','$,5m'), ('35414','49541','24839','avg','$,5m'), ('35415','49541','24839','max','$,5m'), ('35416','49541','24840','avg','$,5m'), ('35417','49541','24840','min','$,5m'), ('35418','49544','24841','avg','$,5m'), ('35419','49544','24841','max','$,5m'), ('35420','49544','24842','avg','$,5m'), ('35421','49544','24842','max','$,5m'), ('35422','49544','24843','avg','$,5m'), ('35423','49544','24843','min','$,5m'), ('35424','49545','24844','avg','$,5m'), ('35425','49545','24844','max','$,5m'), ('35426','49545','24845','avg','$,5m'), ('35427','49545','24845','max','$,5m'), ('35428','49545','24846','avg','$,5m'), ('35429','49545','24846','min','$,5m'), ('35430','49548','24847','avg','$,5m'), ('35431','49548','24847','max','$,5m'), ('35432','49548','24848','avg','$,5m'), ('35433','49548','24848','max','$,5m'), ('35434','49548','24849','avg','$,5m'), ('35435','49548','24849','min','$,5m'), ('35436','49549','24850','avg','$,5m'), ('35437','49549','24850','max','$,5m'), ('35438','49549','24851','avg','$,5m'), ('35439','49549','24851','max','$,5m'), ('35440','49549','24852','avg','$,5m'), ('35441','49549','24852','min','$,5m'), ('35442','49552','24853','avg','$,5m'), ('35443','49552','24853','max','$,5m'), ('35444','49552','24854','avg','$,5m'), ('35445','49552','24854','max','$,5m'), ('35446','49552','24855','avg','$,5m'), ('35447','49552','24855','min','$,5m'), ('35448','49553','24856','avg','$,5m'), ('35449','49553','24856','max','$,5m'), ('35450','49553','24857','avg','$,5m'), ('35451','49553','24857','max','$,5m'), ('35452','49553','24858','avg','$,5m'), ('35453','49553','24858','min','$,5m'), ('35454','49556','24859','avg','$,5m'), ('35455','49556','24859','max','$,5m'), ('35456','49556','24860','avg','$,5m'), ('35457','49556','24860','max','$,5m'), ('35458','49556','24861','avg','$,5m'), ('35459','49556','24861','min','$,5m'), ('35460','49557','24862','avg','$,5m'), ('35461','49557','24862','max','$,5m'), ('35462','49557','24863','avg','$,5m'), ('35463','49557','24863','max','$,5m'), ('35464','49557','24864','avg','$,5m'), ('35465','49557','24864','min','$,5m'), ('35466','49560','24865','avg','$,5m'), ('35467','49560','24865','max','$,5m'), ('35468','49560','24866','avg','$,5m'), ('35469','49560','24866','max','$,5m'), ('35470','49560','24867','avg','$,5m'), ('35471','49560','24867','min','$,5m'), ('35472','49561','24868','avg','$,5m'), ('35473','49561','24868','max','$,5m'), ('35474','49561','24869','avg','$,5m'), ('35475','49561','24869','max','$,5m'), ('35476','49561','24870','avg','$,5m'), ('35477','49561','24870','min','$,5m'), ('35478','49564','24871','avg','$,5m'), ('35479','49564','24871','max','$,5m'), ('35480','49564','24872','avg','$,5m'), ('35481','49564','24872','max','$,5m'), ('35482','49564','24873','avg','$,5m'), ('35483','49564','24873','min','$,5m'), ('35484','49565','24874','avg','$,5m'), ('35485','49565','24874','max','$,5m'), ('35486','49565','24875','avg','$,5m'), ('35487','49565','24875','max','$,5m'), ('35488','49565','24876','avg','$,5m'), ('35489','49565','24876','min','$,5m'), ('35490','49568','24877','avg','$,5m'), ('35491','49568','24877','max','$,5m'), ('35492','49568','24878','avg','$,5m'), ('35493','49568','24878','max','$,5m'), ('35494','49568','24879','avg','$,5m'), ('35495','49568','24879','min','$,5m'), ('35496','49569','24880','avg','$,5m'), ('35497','49569','24880','max','$,5m'), ('35498','49569','24881','avg','$,5m'), ('35499','49569','24881','max','$,5m'), ('35500','49569','24882','avg','$,5m'), ('35501','49569','24882','min','$,5m'), ('35502','49572','24883','avg','$,5m'), ('35503','49572','24883','max','$,5m'), ('35504','49572','24884','avg','$,5m'), ('35505','49572','24884','max','$,5m'), ('35506','49572','24885','avg','$,5m'), ('35507','49572','24885','min','$,5m'), ('35508','49573','24886','avg','$,5m'), ('35509','49573','24886','max','$,5m'), ('35510','49573','24887','avg','$,5m'), ('35511','49573','24887','max','$,5m'), ('35512','49573','24888','avg','$,5m'), ('35513','49573','24888','min','$,5m'), ('35514','49576','24889','avg','$,5m'), ('35515','49576','24889','max','$,5m'), ('35516','49576','24890','avg','$,5m'), ('35517','49576','24890','max','$,5m'), ('35518','49576','24891','avg','$,5m'), ('35519','49576','24891','min','$,5m'), ('35520','49577','24892','avg','$,5m'), ('35521','49577','24892','max','$,5m'), ('35522','49577','24893','avg','$,5m'), ('35523','49577','24893','max','$,5m'), ('35524','49577','24894','avg','$,5m'), ('35525','49577','24894','min','$,5m'), ('35526','49580','24895','avg','$,5m'), ('35527','49580','24895','max','$,5m'), ('35528','49580','24896','avg','$,5m'), ('35529','49580','24896','max','$,5m'), ('35530','49580','24897','avg','$,5m'), ('35531','49580','24897','min','$,5m'), ('35532','49581','24898','avg','$,5m'), ('35533','49581','24898','max','$,5m'), ('35534','49581','24899','avg','$,5m'), ('35535','49581','24899','max','$,5m'), ('35536','49581','24900','avg','$,5m'), ('35537','49581','24900','min','$,5m'), ('35538','49584','24901','avg','$,5m'), ('35539','49584','24901','max','$,5m'), ('35540','49584','24902','avg','$,5m'), ('35541','49584','24902','max','$,5m'), ('35542','49584','24903','avg','$,5m'), ('35543','49584','24903','min','$,5m'), ('35544','49585','24904','avg','$,5m'), ('35545','49585','24904','max','$,5m'), ('35546','49585','24905','avg','$,5m'), ('35547','49585','24905','max','$,5m'), ('35548','49585','24906','avg','$,5m'), ('35549','49585','24906','min','$,5m'), ('35550','49588','24907','avg','$,5m'), ('35551','49588','24907','max','$,5m'), ('35552','49588','24908','avg','$,5m'), ('35553','49588','24908','max','$,5m'), ('35554','49588','24909','avg','$,5m'), ('35555','49588','24909','min','$,5m'), ('35556','49589','24910','avg','$,5m'), ('35557','49589','24910','max','$,5m'), ('35558','49589','24911','avg','$,5m'), ('35559','49589','24911','max','$,5m'), ('35560','49589','24912','avg','$,5m'), ('35561','49589','24912','min','$,5m'), ('35562','49592','24913','avg','$,5m'), ('35563','49592','24913','max','$,5m'), ('35564','49592','24914','avg','$,5m'), ('35565','49592','24914','max','$,5m'), ('35566','49592','24915','avg','$,5m'), ('35567','49592','24915','min','$,5m'), ('35568','49593','24916','avg','$,5m'), ('35569','49593','24916','max','$,5m'), ('35570','49593','24917','avg','$,5m'), ('35571','49593','24917','max','$,5m'), ('35572','49593','24918','avg','$,5m'), ('35573','49593','24918','min','$,5m'), ('35574','49596','24919','avg','$,5m'), ('35575','49596','24919','max','$,5m'), ('35576','49596','24920','avg','$,5m'), ('35577','49596','24920','max','$,5m'), ('35578','49596','24921','avg','$,5m'), ('35579','49596','24921','min','$,5m'), ('35580','49597','24922','avg','$,5m'), ('35581','49597','24922','max','$,5m'), ('35582','49597','24923','avg','$,5m'), ('35583','49597','24923','max','$,5m'), ('35584','49597','24924','avg','$,5m'), ('35585','49597','24924','min','$,5m'), ('35586','49600','24925','avg','$,5m'), ('35587','49600','24925','max','$,5m'), ('35588','49600','24926','avg','$,5m'), ('35589','49600','24926','max','$,5m'), ('35590','49600','24927','avg','$,5m'), ('35591','49600','24927','min','$,5m'), ('35592','49601','24928','avg','$,5m'), ('35593','49601','24928','max','$,5m'), ('35594','49601','24929','avg','$,5m'), ('35595','49601','24929','max','$,5m'), ('35596','49601','24930','avg','$,5m'), ('35597','49601','24930','min','$,5m'), ('35598','49604','24931','avg','$,5m'), ('35599','49604','24931','max','$,5m'), ('35600','49604','24932','avg','$,5m'), ('35601','49604','24932','max','$,5m'), ('35602','49604','24933','avg','$,5m'), ('35603','49604','24933','min','$,5m'), ('35604','49605','24934','avg','$,5m'), ('35605','49605','24934','max','$,5m'), ('35606','49605','24935','avg','$,5m'), ('35607','49605','24935','max','$,5m'), ('35608','49605','24936','avg','$,5m'), ('35609','49605','24936','min','$,5m'), ('35610','49608','24937','avg','$,5m'), ('35611','49608','24937','max','$,5m'), ('35612','49608','24938','avg','$,5m'), ('35613','49608','24938','max','$,5m'), ('35614','49608','24939','avg','$,5m'), ('35615','49608','24939','min','$,5m'), ('35616','49609','24940','avg','$,5m'), ('35617','49609','24940','max','$,5m'), ('35618','49609','24941','avg','$,5m'), ('35619','49609','24941','max','$,5m'), ('35620','49609','24942','avg','$,5m'), ('35621','49609','24942','min','$,5m'), ('35622','49612','24943','avg','$,5m'), ('35623','49612','24943','max','$,5m'), ('35624','49612','24944','avg','$,5m'), ('35625','49612','24944','max','$,5m'), ('35626','49612','24945','avg','$,5m'), ('35627','49612','24945','min','$,5m'), ('35628','49613','24946','avg','$,5m'), ('35629','49613','24946','max','$,5m'), ('35630','49613','24947','avg','$,5m'), ('35631','49613','24947','max','$,5m'), ('35632','49613','24948','avg','$,5m'), ('35633','49613','24948','min','$,5m'), ('35634','49616','24949','avg','$,5m'), ('35635','49616','24949','max','$,5m'), ('35636','49616','24950','avg','$,5m'), ('35637','49616','24950','max','$,5m'), ('35638','49616','24951','avg','$,5m'), ('35639','49616','24951','min','$,5m'), ('35640','49617','24952','avg','$,5m'), ('35641','49617','24952','max','$,5m'), ('35642','49617','24953','avg','$,5m'), ('35643','49617','24953','max','$,5m'), ('35644','49617','24954','avg','$,5m'), ('35645','49617','24954','min','$,5m'), ('35646','49620','24955','avg','$,5m'), ('35647','49620','24955','max','$,5m'), ('35648','49620','24956','avg','$,5m'), ('35649','49620','24956','max','$,5m'), ('35650','49620','24957','avg','$,5m'), ('35651','49620','24957','min','$,5m'), ('35652','49621','24958','avg','$,5m'), ('35653','49621','24958','max','$,5m'), ('35654','49621','24959','avg','$,5m'), ('35655','49621','24959','max','$,5m'), ('35656','49621','24960','avg','$,5m'), ('35657','49621','24960','min','$,5m'), ('35658','49624','24961','avg','$,5m'), ('35659','49624','24961','max','$,5m'), ('35660','49624','24962','avg','$,5m'), ('35661','49624','24962','max','$,5m'), ('35662','49624','24963','avg','$,5m'), ('35663','49624','24963','min','$,5m'), ('35664','49625','24964','avg','$,5m'), ('35665','49625','24964','max','$,5m'), ('35666','49625','24965','avg','$,5m'), ('35667','49625','24965','max','$,5m'), ('35668','49625','24966','avg','$,5m'), ('35669','49625','24966','min','$,5m'), ('35670','49628','24967','avg','$,5m'), ('35671','49628','24967','max','$,5m'), ('35672','49628','24968','avg','$,5m'), ('35673','49628','24968','max','$,5m'), ('35674','49628','24969','avg','$,5m'), ('35675','49628','24969','min','$,5m'), ('35676','49629','24970','avg','$,5m'), ('35677','49629','24970','max','$,5m'), ('35678','49629','24971','avg','$,5m'), ('35679','49629','24971','max','$,5m'), ('35680','49629','24972','avg','$,5m'), ('35681','49629','24972','min','$,5m'), ('35682','49632','24973','avg','$,5m'), ('35683','49632','24973','max','$,5m'), ('35684','49632','24974','avg','$,5m'), ('35685','49632','24974','max','$,5m'), ('35686','49632','24975','avg','$,5m'), ('35687','49632','24975','min','$,5m'), ('35688','49633','24976','avg','$,5m'), ('35689','49633','24976','max','$,5m'), ('35690','49633','24977','avg','$,5m'), ('35691','49633','24977','max','$,5m'), ('35692','49633','24978','avg','$,5m'), ('35693','49633','24978','min','$,5m'), ('35694','49636','24979','avg','$,5m'), ('35695','49636','24979','max','$,5m'), ('35696','49636','24980','avg','$,5m'), ('35697','49636','24980','max','$,5m'), ('35698','49636','24981','avg','$,5m'), ('35699','49636','24981','min','$,5m'), ('35700','49637','24982','avg','$,5m'), ('35701','49637','24982','max','$,5m'), ('35702','49637','24983','avg','$,5m'), ('35703','49637','24983','max','$,5m'), ('35704','49637','24984','avg','$,5m'), ('35705','49637','24984','min','$,5m'), ('35706','49660','24985','last','$'), ('35707','49641','24986','last','$'), ('35708','49678','24987','last','$'), ('35709','49679','24988','last','$'), ('35710','49680','24989','last','$'), ('35711','49681','24990','last','$'), ('35712','49682','24991','last','$'), ('35713','49683','24992','last','$'), ('35714','49684','24993','last','$'), ('35715','49685','24994','last','$'), ('35716','49686','24995','last','$'), ('35717','49687','24996','last','$'), ('35718','49688','24997','last','$'), ('35719','49691','24998','last','$'), ('35720','49650','24999','last','$'), ('35721','49710','25000','last','$'), ('35722','49711','25001','last','$'), ('35723','49712','25002','last','$'), ('35724','49713','25003','last','$'), ('35725','49714','25004','last','$'), ('35726','49715','25005','last','$'), ('35727','49716','25006','last','$'), ('35728','49717','25007','last','$'), ('35729','49718','25008','last','$'), ('35730','49763','25009','last','$'), ('35731','49765','25010','last','$,#1'), ('35732','49765','25010','last','$,#2'), ('35733','49767','25011','last','$'), ('35734','49771','25012','last','$'), ('35735','49772','25013','last','$'), ('35736','49788','25014','change','$'), ('35737','49788','25014','last','$'), ('35738','49788','25014','last','$,#2'), ('35739','49793','25015','last','$'), ('35740','49795','25016','last','$'), ('35741','49801','25017','last','$,#1'), ('35742','49801','25017','last','$,#2'), ('35743','49814','25018','last','$'), ('35744','49816','25019','last','$,#1'), ('35745','49816','25019','last','$,#2'), ('35746','49818','25020','last','$'), ('35747','49822','25021','last','$'), ('35748','49823','25022','last','$'), ('35749','49840','25023','change','$'), ('35750','49840','25023','last','$'), ('35751','49840','25023','last','$,#2'), ('35752','49846','25024','last','$'), ('35753','49848','25025','last','$'), ('35754','49855','25026','last','$,#1'), ('35755','49855','25026','last','$,#2'), ('35756','48378','23951','change','$'), ('35757','49867','25027','last','$'), ('35758','49867','25028','last','$'), ('35759','49867','25029','last','$'), ('35760','49868','25030','last','$'), ('35761','49870','25031','change','$'), ('35762','49871','25032','change','$'), ('35763','49876','25033','change','$'), ('35764','49881','25034','last','$'), ('35765','49881','25035','last','$'), ('35766','49881','25036','last','$'), ('35767','49881','25037','last','$'), ('35768','49881','25038','last','$'), ('35769','42792','25039','max','$,#3'), ('35770','42813','25040','min','$,5m'), ('35771','42815','25041','avg','$,5m'), ('35772','42825','25042','last','$,#1'), ('35773','42825','25042','last','$,#2'), ('35774','42825','25042','last','$'), ('35775','42833','25043','max','$,{$SNMP.TIMEOUT}'), ('35776','49926','25044','last','$'), ('35777','49928','25044','last','$'), ('35778','49943','25045','change','$'), ('35779','49943','25045','last','$'), ('35780','49945','25045','last','$'), ('35781','49944','25045','last','$'), ('35782','49943','25045','last','$,#2'), ('35783','49939','25046','avg','$,15m'), ('35784','49943','25046','last','$'), ('35785','49942','25046','avg','$,15m'), ('35786','49938','25047','min','$,5m'), ('35787','49941','25047','min','$,5m'), ('35788','49938','25047','max','$,5m'), ('35789','49941','25047','max','$,5m'), ('35790','49944','25048','last','$'), ('35791','49944','25048','last','$,#1'), ('35792','49944','25048','last','$,#2'), ('35793','49946','18031','last','$'), ('35794','32895','18031','last','$'), ('35795','49951','25049','min','$,15m'), ('35796','49952','25050','last','$'), ('35797','49957','25051','min','$,15m'), ('35798','49959','25052','last','$'), ('35799','49960','25053','last','$,#1'), ('35800','49960','25053','last','$,#2'), ('35801','49960','25053','last','$'), ('35802','49965','25054','last','$'), ('35803','49981','25055','min','$,15m'), ('35804','49983','25056','last','$'), ('35805','49983','25057','last','$'), ('35806','49995','25058','min','$,5m'), ('35807','49995','25058','max','$,5m'), ('35808','49998','25059','min','$,5m'), ('35809','49998','25059','max','$,5m'), ('35810','50000','25060','last','$'), ('35811','49988','25061','min','$,15m'), ('35812','49991','25062','avg','$,5m'), ('35813','49991','25062','max','$,5m'), ('35814','49991','25063','avg','$,5m'), ('35815','49991','25063','max','$,5m'), ('35816','49993','25064','min','$,15m'), ('35817','35486','19027','last','$'), ('35818','35483','19027','last','$'), ('35819','50012','25065','last','$'), ('35820','44696','23191','last','$'), ('35821','50014','23191','last','$'), ('35822','44717','23204','last','$'), ('35823','50015','23204','last','$'), ('35824','30697','16774','last','$'), ('35825','30698','16774','last','$'), ('35826','30709','16774','last','$'), ('35827','30698','25066','last','$'), ('35828','30709','25066','last','$'), ('35829','50021','25067','change','$'), ('35830','50023','25068','change','$'), ('35831','50038','25069','last','$'), ('35832','50038','25070','last','$'), ('35833','50038','25071','last','$'), ('35834','50038','25072','last','$'), ('35835','50046','25073','max','$,#3'), ('35836','50047','25074','min','$,5m'), ('35837','50048','25075','avg','$,5m'), ('35838','50055','25076','last','$,#1'), ('35839','50055','25076','last','$,#2'), ('35840','50055','25076','last','$'), ('35841','50058','25077','max','$,{$SNMP.TIMEOUT}'), ('35842','50053','25078','last','$'), ('35843','50056','25078','last','$'), ('35844','50068','25079','last','$'), ('35845','50074','25080','count','$,#2,"eq",1'), ('35846','50080','25081','count','$,#2,"eq",3'), ('35847','50080','25081','count','$,#2,"eq",1'), ('35848','50076','25081','last','$'), ('35849','50081','25082','count','$,#2,"ne",1'), ('35850','50076','25082','last','$'), ('35851','50088','25083','count','$,#2,"eq",8'), ('35852','50088','25083','count','$,#2,"eq",4'), ('35853','50089','25084','count','$,#2,"eq",1'), ('35854','50090','25085','last','$'), ('35855','50091','25086','last','$'), ('35856','50094','25087','min','$,5m'), ('35857','50095','25088','min','$,5m'), ('35858','50101','25089','last','$'), ('35859','50102','25090','min','$,5m'), ('35860','50102','25091','max','$,5m'), ('35861','50109','25092','change','$'), ('35862','50109','25092','last','$'), ('35863','50111','25092','last','$'), ('35864','50110','25092','last','$'), ('35865','50109','25092','last','$,#2'), ('35866','50105','25093','avg','$,15m'), ('35867','50109','25093','last','$'), ('35868','50108','25093','avg','$,15m'), ('35869','50104','25094','min','$,5m'), ('35870','50107','25094','min','$,5m'), ('35871','50104','25094','max','$,5m'), ('35872','50107','25094','max','$,5m'), ('35873','50110','25095','last','$'), ('35874','50110','25095','last','$,#1'), ('35875','50110','25095','last','$,#2'), ('35876','50112','25096','min','$,5m'), ('35877','50115','25097','min','$,5m'), ('35878','50116','25098','max','$,#3'), ('35879','50117','25099','min','$,5m'), ('35880','50118','25100','avg','$,5m'), ('35881','50125','25101','last','$,#1'), ('35882','50125','25101','last','$,#2'), ('35883','50125','25101','last','$'), ('35884','50129','25102','last','$,#1'), ('35885','50129','25102','last','$,#2'), ('35886','50129','25102','last','$'), ('35887','50134','25103','max','$,{$SNMP.TIMEOUT}'), ('35888','50126','25104','last','$'), ('35889','50130','25104','last','$'), ('35890','50140','25105','last','$'), ('35891','50141','25106','last','$'), ('35892','50142','25107','min','$,5m'), ('35893','50142','25108','max','$,5m'), ('35894','50149','25109','change','$'), ('35895','50149','25109','last','$'), ('35896','50151','25109','last','$'), ('35897','50150','25109','last','$'), ('35898','50149','25109','last','$,#2'), ('35899','50145','25110','avg','$,15m'), ('35900','50149','25110','last','$'), ('35901','50148','25110','avg','$,15m'), ('35902','50144','25111','min','$,5m'), ('35903','50147','25111','min','$,5m'), ('35904','50144','25111','max','$,5m'), ('35905','50147','25111','max','$,5m'), ('35906','50150','25112','last','$'), ('35907','50150','25112','last','$,#1'), ('35908','50150','25112','last','$,#2'), ('35909','46187','23450','change','$'), ('35910','46187','23450','last','$'), ('35911','46188','23450','last','$'), ('35912','46187','23450','last','$,#2'), ('35913','46181','23451','avg','$,15m'), ('35914','46187','23451','last','$'), ('35915','46184','23451','avg','$,15m'), ('35916','50155','23031','last','$'), ('35917','50152','25113','last','$'), ('35918','50154','25114','last','$'), ('35919','50156','25115','last','$'), ('35920','50157','25116','last','$'), ('35921','47605','23803','min','$,{$HUAWEI.DORADO.MEM.MAX.TIME}'), ('35922','47610','23808','min','$,{$HUAWEI.DORADO.DISK.TEMP.MAX.TIME}'), ('35923','47613','23811','min','$,{$HUAWEI.DORADO.TEMP.MAX.TIME}'), ('35924','47624','23814','min','$,{$HUAWEI.DORADO.LUN.IO.TIME.MAX.TIME}'), ('35925','50211','25117','max','$,#3'), ('35926','50212','25118','min','$,5m'), ('35927','50213','25119','avg','$,5m'), ('35928','50224','25120','min','$, 5m'), ('35929','50224','25121','min','$, 5m'), ('35930','50229','25122','max','$,{$VYATTA.SNMP.TIMEOUT}'), ('35931','50227','25123','last','$'), ('35932','50228','25123','last','$'), ('35933','50234','25124','last','$'), ('35934','50235','25125','min','$, 5m'), ('35935','50235','25126','min','$, 5m'), ('35936','50242','25127','change','$'), ('35937','50242','25127','last','$'), ('35938','50244','25127','last','$'), ('35939','50243','25127','last','$'), ('35940','50242','25127','last','$,#2'), ('35941','50238','25128','avg','$,15m'), ('35942','50242','25128','last','$'), ('35943','50241','25128','avg','$,15m'), ('35944','50237','25129','min','$,5m'), ('35945','50240','25129','min','$,5m'), ('35946','50237','25129','max','$,5m'), ('35947','50240','25129','max','$,5m'), ('35948','50243','25130','last','$'), ('35949','50243','25130','last','$,#1'), ('35950','50243','25130','last','$,#2'), ('35951','50233','25131','min','$, 5m'), ('35952','50233','25132','min','$, 5m'), ('35953','46658','23572','last','$'), ('35954','34335','18543','last','$'), ('35955','50251','25133','last','$,#1'), ('35956','50255','25134','last','$,#1'), ('35957','50262','25135','min','$,5m'), ('35958','50263','25136','max','$,#3'), ('35959','50264','25137','min','$,5m'), ('35960','50265','25138','avg','$,5m'), ('35961','50271','25139','last','$,#1'), ('35962','50271','25139','last','$,#2'), ('35963','50271','25139','last','$'), ('35964','50273','25140','last','$,#1'), ('35965','50273','25140','last','$,#2'), ('35966','50273','25140','last','$'), ('35967','50288','25141','last','$'), ('35968','50292','25142','max','$,{$SNS.SNMP.TIMEOUT}'), ('35969','50314','25143','min','$,5m'), ('35970','50314','25144','min','$,5m'), ('35971','50333','25145','last','$'), ('35972','50335','25146','last','$'), ('35973','50336','25147','last','$'), ('35974','50337','25148','last','$'), ('35975','50340','25149','last','$'), ('35976','50341','25150','last','$'), ('35977','50342','25151','last','$'), ('35978','50312','25152','min','$,5m'), ('35979','50366','25153','last','$'); INSERT INTO graphs (graphid,name,width,height,yaxismin,yaxismax,templateid,show_work_period,show_triggers,graphtype,show_legend,show_3d,percent_left,percent_right,ymin_type,ymax_type,ymin_itemid,ymax_itemid,flags,discover,uuid) VALUES ('456','OpenBSD: CPU utilization','900','200','0','100',NULL,'1','0','1','1','0','0','0','1','1',NULL,NULL,'0','0','512ed29b170642d285b14a7e9b2d43de'), ('457','OpenBSD: CPU load','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','765b83f3f7a246aa893eff4f19600326'), ('458','OpenBSD: Swap usage','600','340','0','100',NULL,'0','0','2','1','1','0','0','0','0',NULL,NULL,'0','0','8a422a49defb413ca16b1e8515b59e00'), ('459','OpenBSD: CPU jumps','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','947de3b0729948b0ae2f03342a7e3f9f'), ('462','FreeBSD: CPU utilization','900','200','0','100',NULL,'1','0','1','1','0','0','0','1','1',NULL,NULL,'0','0','ecdccd78d75d4255948995b510acfefb'), ('463','FreeBSD: CPU load','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','ac8b187522904c0880ea16a2b8727dfc'), ('464','FreeBSD: Swap usage','600','340','0','100',NULL,'0','0','2','1','1','0','0','0','0',NULL,NULL,'0','0','23ade54acd87415080578379ab2cca6b'), ('465','FreeBSD: CPU jumps','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3ed928729f2d41139a42ca3ee0204551'), ('469','AIX: CPU load','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','260417d4613d405986406c272f54a5aa'), ('471','AIX: CPU jumps','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','a3a5bc3b07f34793bb1c8cfc688ba8a9'), ('472','Interface {#IFNAME}: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','366a988491344fd487561d02ed499fe0'), ('474','HP-UX: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','8c47ac69fba642f4827fcad01b3a0379'), ('475','HP-UX: CPU load','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','808ceffbcb844def962b03d6fa7a3496'), ('478','Interface {#IFNAME}: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','dec3568ab5e7457da4a81d32a8ba2b72'), ('480','CPU utilization','900','200','0','100',NULL,'1','0','1','1','0','0','0','1','1',NULL,NULL,'0','0','2b7e4221d79e4db8bf0463e0bb347eb0'), ('481','CPU load','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','f66887f0152c484d80b8fe77d5fd2cdd'), ('482','Swap usage','600','340','0','100',NULL,'0','0','2','1','1','0','0','0','0',NULL,NULL,'0','0','061e20f2db6e4a43b35780702b3ebbfa'), ('483','CPU jumps','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','9a3df2f49bf24b4597c6e488e1016f78'), ('484','Interface {#IFNAME}: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','61d0d627f36e4b1b97fec7857ac99ac1'), ('487','macOS: CPU load','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','f0e648fb4c5345748b11a7bdb05f6526'), ('492','Interface {#IFNAME}: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','1f52d0c9ee934eb3a5198ab53fdf4679'), ('493','Interface {#IFNAME}: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','c79845ab3101451c8f0fe033b5b2166e'), ('494','macOS: Network traffic on en0','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','5c4b08f992c541dbb02835bbd4f0a55e'), ('498','AIX: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','a2eeb8269edf4de7ac13b7ceb1260b75'), ('540','AIX: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2664343cd69444e0a16850083845838f'), ('541','FreeBSD: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','191f6c7b63204fd091d2e82c4f4b678a'), ('542','HP-UX: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4cf12f1ea3934cb99f76c20916067a71'), ('543','macOS: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','2',NULL,'23063','0','0','5c942cb1fe5b440aa9428d45ee85e09c'), ('544','OpenBSD: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','18bbcc8bba0840fc8353b90caa3e657f'), ('545','Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','2',NULL,'23023','0','0','150f0e2062a844a9a8bfcaca92ffbf39'), ('651','Intel SR1530 IPMI: Fan speed and ambient temperature','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e1fff55999a6420f987659ca0dc8c102'), ('652','Intel SR1530 IPMI: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','bec82c29b93c4841a89d0978a899c70b'), ('653','Intel SR1630 IPMI: Fan speed and temperature','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','aab06155f8aa4bc991603a3c8c335d6e'), ('654','Intel SR1630 IPMI: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d4e77359d3fe4a75b0bbf9d7919834da'), ('668','Alcatel Timetra TiMOS: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','7300eff1609b497aa7628ed83b36a481'), ('671','Brocade FC: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','8d1edf299fde462bbca5ceaf1b439223'), ('694','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','d5ec0b9ce1f04b0abd0b4bfe6aa28f6b'), ('698','D-Link DES 7200: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','7d05108847574098a7a15db5faf12b7c'), ('701','D-Link DES_DGS Switch: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','cd6d0f71490c4bbe82a72ca52d9d3044'), ('704','Extreme EXOS: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','9dc8bc10d4044889bd53c56f1da45c60'), ('708','{#MODULE_NAME}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','2f7801aa39bd486bb9d2ff751c98559b'), ('714','{#ENT_NAME}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','29cf1159b56b4cf086a980609efaf046'), ('724','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','1e6e64b461dc4010a582d2f39fcfa4f8'), ('727','Netgear Fastpath: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','bcd1db5068794edd9a3d74f32bd018ed'), ('730','QTech QSW: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','037fef94d6d64392b0ed9143f8623586'), ('733','#{#SNMPVALUE}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','6ec1580dfdcb46ec933cf2e4ef3122da'), ('736','Ubiquiti AirOS: Load average','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','acb2b7447a6449a591db186a4db81643'), ('775','HP Enterprise Switch: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','d282b8d685c547a58645c1cc63b00571'), ('836','Apache: Current async connections{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','066b53ed2244414ca3090498eb035c27'), ('837','Apache: Current async processes{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','dbaa0c2468cc40fca977fb382d19cb78'), ('838','Apache: Requests per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','a3998992f7504a12826e3c4d592836b5'), ('839','Apache: Workers total','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'0','0','78e59f1b5eb747019f92921ac5ef48b0'), ('840','Apache: Worker states','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','1629062b5cd74b67af9a60226a79f8f1'), ('841','Nginx: Connections by state','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ba234158aeca468a8592d944f9aae691'), ('842','Nginx: Connections per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','b82a5b89864a47638421458f3e74563d'), ('843','Nginx: Requests per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','a2d2fec823514df09731381304c245e9'), ('845','Nginx: Connections by state','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','aedcbacee74f4b0c861546c56e0fa9ab'), ('846','Nginx: Connections per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','6feb26e5eb3246c0adb8d151b1443859'), ('847','Nginx: Requests per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','43a87936b35d4d28a658f810c2162a72'), ('856','{#SNMPVALUE}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','7cc53c92b6be4fc59d2928e73f6fe8c3'), ('952','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','cf143a7bb6d548fc9d3b089dcbb47ccf'), ('954','{#DEVNAME}: Disk read/write rates','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','bad3d3ba32534ef194a4837d666ddccb'), ('955','{#DEVNAME}: Disk average waiting time','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','13a5a74a99734449b08075bbb25bb498'), ('956','{#DEVNAME}: Disk utilization and queue','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','aa53b66adaac4e62863ea2dd59ba3ea1'), ('957','Linux: System load','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','f9cbf136d01040ffa18753fb40d55f79'), ('958','Linux: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','9cd184535b6b4fd5978a302bdedeac0b'), ('959','Linux: CPU usage','900','200','0','100',NULL,'1','1','1','1','0','0','0','1','1',NULL,NULL,'0','0','09ebf28dc8504ab2bfd07130d1f6ca91'), ('960','Linux: CPU jumps','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','bb8bb267b32b46bfa2a6277b65730396'), ('961','Linux: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','81e79ef1219a4c48af1f740017bbde6a'), ('962','Linux: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','1383a8b57e6743de946c8a43016ee2f7'), ('963','Linux: Swap usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','567684533d2442b286119c7d392e2bb7'), ('1000','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages status','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','03c88aa9d8b94389aafcf607dff1756f'), ('1001','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a6223df79d334c29ada36ba20729b885'), ('1007','RabbitMQ: File descriptors','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','132133fc0fd04002a5a50fc0d5169e6a'), ('1008','RabbitMQ: Disk free','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','72472749150041d59a52ce5abb3dc03e'), ('1009','RabbitMQ: Memory used','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','a5949ccf83434f1fb26cfe0a3671085e'), ('1010','RabbitMQ: Sockets','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','7e5fec850547465091a38f78268a207f'), ('1011','RabbitMQ: Node status','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','358fb67c294d4486a79797818ebde851'), ('1012','RabbitMQ: Uptime','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','bf2b0b66f4d94549aae9cbe04dfe9bd2'), ('1014','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages status','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','adba8787c1d14670a5ca3bf07d9dc663'), ('1015','RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','4e6b194fd13f4b97a66ee4d335958003'), ('1016','RabbitMQ: Connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2d72cf70b71a414680cc667c27141653'), ('1017','RabbitMQ: Queues','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','987d5621410d4dc6b66fb72e9aca2357'), ('1018','RabbitMQ: Messages','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','6a66846adab54906800f80ac025b2003'), ('1019','RabbitMQ: Messages status','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','a4a33e6004f34a8cb2709aae632f456d'), ('1020','RabbitMQ: Messages per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','fe3139da95aa4fc7a7db4aac87c52c03'), ('1021','RabbitMQ: File descriptors','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','71eff9e96a8b46acbe1cf00d1e0cc388'), ('1022','RabbitMQ: Disk free','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','02f7ec07b4384795bbf5212e9ea06fb0'), ('1023','RabbitMQ: Memory used','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d4e9c478e03c4ecab7538c3baa77f61f'), ('1024','RabbitMQ: Sockets','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','f3c071a0c20340f1bf86ecd66b911bb2'), ('1025','RabbitMQ: Node status','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e6497c3e2847407ca8f912e34d9357b4'), ('1026','RabbitMQ: Uptime','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','415ce1917ecc4575bcbeeaf3b01df4cb'), ('1027','RabbitMQ: Connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2dbd4f9285a34786a210c6e16d87ed85'), ('1028','RabbitMQ: Queues','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3205b991eb5443e680b571b23b4a1721'), ('1029','RabbitMQ: Messages','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','dca08567e6ce4dcbb60f72a431de5ddf'), ('1030','RabbitMQ: Messages status','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','94fa39136a0d42b2997dd3b9a7581621'), ('1031','RabbitMQ: Messages per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ad303b1816a84248a347ef4773bf2c44'), ('1032','Alcatel Timetra TiMOS: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','e404b522555e4f9092930ce870649828'), ('1033','Alcatel Timetra TiMOS: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','111cde007d8342f9b743f08f12380ec3'), ('1034','Brocade FC: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','d1e06bb17c2f458699664bfa61c12496'), ('1042','#{#SNMPINDEX}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','69c63b7fb65347cc9301b02e1f9cd45e'), ('1043','{#SNMPINDEX}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','b1d8dafbce0c4b6abc0ad18f2a91d1e3'), ('1044','#{#SNMPVALUE}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','769bb6f6d6cd455fbbcd1e75e44d24ec'), ('1045','#{#SNMPVALUE}: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','672315e9b8dc4858be7a991bed4f06fc'), ('1046','#{#SNMPVALUE}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','886d032483584e379210c9f05f65b98e'), ('1047','{#MODULE_NAME}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','ff71369f73174bc0baf98f6da6f82d97'), ('1048','#{#SNMPVALUE}: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','aebb1527b1264e319bce23354c4ff200'), ('1049','#{#SNMPVALUE}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','87cafd79e372498a87bd6fa283482256'), ('1050','{#ENT_NAME}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','ff65fc169cd343bbb866033bccd51abf'), ('1051','{#SNMPVALUE}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','646779d729d8417383eb0e1240a69767'), ('1052','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','82acee070ff1461ba0cdff337184da97'), ('1053','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','42efab7c7fae46729b2ad410b0be57cc'), ('1054','Netgear Fastpath: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','1cb7d7036dfe4999b0489cc8bfa254aa'), ('1055','Netgear Fastpath: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','88124449b8984ee6bca46269d1d3f1ae'), ('1056','QTech QSW: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','2d662728c6ca4ff1a690a3eb2ab2e51b'), ('1057','#{#SNMPVALUE}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','7c0b7c99942e41348c2dc3350f2323cc'), ('1058','Ubiquiti AirOS: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','cbce9bb057b14b8eb81f8cbb463442d6'), ('1075','HAProxy: Backend {#PXNAME} Redispatched requests and retried connections per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a8518997e8ce40339f5d2384a011f3ba'), ('1076','HAProxy: Frontend {#PXNAME} Errors and denials per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','30141ef1c5bf4c4a9cca0f8ce2ea3373'), ('1077','HAProxy: Frontend {#PXNAME} In/Out traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f6a6bb900b4e45c9af863e6e0aa9af8a'), ('1078','HAProxy: Frontend {#PXNAME} Requests and sessions per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','065d1ef09a404cf1bcc67f0e987482ab'), ('1079','HAProxy: Frontend {#PXNAME} Responses by HTTP code','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'2','0','3ce6177d02a045219cec0d348b970860'), ('1080','HAProxy: {#PXNAME} {#SVNAME} Response time and time in queue','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e3e10b66deb14b33a436481cc34eeb84'), ('1081','HAProxy: Backend {#PXNAME} Redispatched requests and retried connections per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2160a789b142498cb2d3e401ee992edb'), ('1082','HAProxy: Frontend {#PXNAME} Errors and denials per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','29c858f57e5447758c9bb39008ba7aa9'), ('1083','HAProxy: Frontend {#PXNAME} In/Out traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b7db5c68269b46d4b009f5a6c769e13e'), ('1084','HAProxy: Frontend {#PXNAME} Requests and sessions per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1550af17c1fe4509922b87dd7d60e8b7'), ('1085','HAProxy: Frontend {#PXNAME} Responses by HTTP code','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'2','0','82817ba44621444c90f7b4dc8abb3107'), ('1086','HAProxy: {#PXNAME} {#SVNAME} Response time and time in queue','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5e1c8f6bf6c04ef6a60ce221c44c6ab6'), ('1087','Redis: Memory usage{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e26f8c31c3654febbeda2ffb97438c36'), ('1088','DB {#DB}: Keys','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3271f3a143dc43f38a674b6cbae8cd0d'), ('1089','Redis slave {#SLAVE_IP}:{#SLAVE_PORT}: Replication lag bytes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0bce553a5a1240e2b097754dba8f6939'), ('1090','Redis: Replication lag time{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','bbc5fb3021be4c3381e48fe623b611f0'), ('1091','Redis: Clients','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','c04e813d482a4709b13aa2a98911e11d'), ('1092','Redis: Commands','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','8643a1b690dc456b8daacc4b2b0810d4'), ('1093','Redis: CPU','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','765c0125e8d549dc88279f65f38b6ed9'), ('1094','Redis: Expired keys','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','fd25ac6239064cd29dc1939cd15005de'), ('1095','Redis: Keyspace','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','24cff7af388e41a8899e2916f12224d1'), ('1096','Redis: Memory','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','a3ea32878f25481998e0fde7ba00a11b'), ('1097','Redis: Memory fragmentation','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ff8d6320a8e246a39d35ccb93220eb3a'), ('1098','Redis: Network','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','b3db4cc8247647faae0d3c2389f37d80'), ('1099','Redis: Persistence','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','81fde2046d2340119b2002da2b75df16'), ('1100','Redis: Slaves','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','1ace370516b74875977788d44ab478e5'), ('1101','Redis: Slowlog','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','8dd9935cb7a24004b9783c3f1a445f1b'), ('1102','Redis: Uptime','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','32d954e849e64fe99bd8846b54aadede'), ('1109','MySQL: Bandwidth','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','6ebb6f300b4a4ada80908ce11cae9e95'), ('1110','MySQL: Connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ea03bd4cc0f948f38ea638fe93f2ac69'), ('1111','MySQL: InnoDB buffer pool','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ee3890503acf44c58fcfedf3c5008656'), ('1112','MySQL: Operations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','a6296310a0cf4ffcad7b119c5089ef1f'), ('1113','MySQL: Queries','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ce723556c4974152a8eda029dbdad1bc'), ('1114','MySQL: Threads','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e7653013a2d94596a89c93f5352220df'), ('1115','MySQL: Bandwidth','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3522a11cae374d08a751f419e51748e1'), ('1116','MySQL: Connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','51a6827371434314b76eaed17db0e09e'), ('1117','MySQL: InnoDB buffer pool','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','07edad9e34394a689dc294c8ec27a37e'), ('1118','MySQL: Operations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','93bb7077e60047e59ac3fd308044722a'), ('1119','MySQL: Queries','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','172ad44d7cef4c20b08b4babf8969805'), ('1120','MySQL: Threads','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','1ce62612e1174b3fa91bde29ccaa27ef'), ('1121','Container {#NAME}: CPU usage','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'2','0','72e32a60dc064affb3bb6785bae50e37'), ('1122','Container {#NAME}: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ef48f834b7d543169b21caff1e1d2ade'), ('1123','Container {#NAME}: Network packets','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5cc619d6da2046928ad6d0c28a0e4186'), ('1124','Container {#NAME}: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1952afdd7ab54a65b7f839fd6490f9ff'), ('1125','Docker: Containers','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','5959831c9ec840f3af4ec7031f5213aa'), ('1126','Docker: Goroutines','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','b9131437fcc24587b47ef6dd5d51e15b'), ('1127','Docker: Images','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','130ff603f0cd4ac4844817ccede8cfac'), ('1128','Docker: Memory total','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','5115b03abf71402db63c59b570e83dba'), ('1129','Docker: Size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','815866ae9f77447bbf15a1b91f7c7708'), ('1130','Memcached: Commands','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','72cf2b87802c4eeca5411946e6b1a29b'), ('1131','Memcached: Connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3d738b083ce04ffa8d4bd9bf2e394f6a'), ('1132','Memcached: Connections rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','195f209046ba426c9e57c6a317c76ef4'), ('1133','Memcached: Keyspace','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','8ace604110bf4a4d9eb7a4b6add0492d'), ('1134','Memcached: Network','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','bb6305e9a84749669433e53cd2b7b8b8'), ('1135','Memcached: Uptime','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','599a96c18e214610a41afadef8f11e11'), ('1136','MySQL: Bandwidth','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','b744bfe679fc48afbad8fe219fe88bb5'), ('1137','MySQL: Connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','5fea4f7834644e0a80562c92b61c68d2'), ('1138','MySQL: InnoDB buffer pool','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d54d16a2b4d54bbd9a2a6669631ef96d'), ('1139','MySQL: Operations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2e962ad1647d4ccfb6db420a4c196d23'), ('1140','MySQL: Queries','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','04e6ec47b0de4476b5c7a65ae012ca23'), ('1141','MySQL: Threads','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','974ac20701394b60823abbb84420d166'), ('1142','IPMI: {#SENSOR_ID}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','85099badf8d547d89f498cf29bcd51a8'), ('1143','ES {#ES.NODE}: Latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0725d91f63b64346bbef2c20d2901e9b'), ('1144','ES {#ES.NODE}: Query load','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5196ed75f24d48f7ae55b564b8d925e5'), ('1145','ES {#ES.NODE}: Refresh thread pool','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6d0e4fde0eeb47b6af4c9f40311b384d'), ('1146','ES {#ES.NODE}: Search thread pool','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','9abe085b960d40bf8a99c88ec3564a8d'), ('1147','ES {#ES.NODE}: Write thread pool','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','689492a2614642a1a5d3279c42b29e85'), ('1148','ES: Cluster health','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','50f90b092fa24658b83b131fa7a3f2ce'), ('1159','ClickHouse: {#DB}.{#TABLE}: Replica log activity','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','131e0d19c35f4d87aa62b7766e6e1db3'), ('1160','ClickHouse: {#DB}.{#TABLE}: Replica queues','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','195f5d50a1f0488b9db5d2f1e6a6e8c3'), ('1161','ClickHouse: Current activity','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','fc2f8de59c874876addb08ec633338d4'), ('1162','ClickHouse: Current connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','b1b66d510e424965b7e82b902e0f2e58'), ('1163','ClickHouse: Distributed','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','59935d9f612f468b97288d9a0dc62b26'), ('1164','ClickHouse: Insert/Merge bytes rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','edd18c769edd442cba00adf97ae4192a'), ('1165','ClickHouse: Insert/Merge rows rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','0fd813049e7449b69366021ffa0d3ec7'), ('1166','ClickHouse: Memory Usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','5a688818d4fa44f687aa8415abddc7c0'), ('1167','ClickHouse: Memory Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ba22cf13ef6f46299651d15fb860016d'), ('1168','ClickHouse: Queries rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','9593c61ecdfa4c83ab9421ed85a82f36'), ('1169','ClickHouse: Syscalls in fly','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','eaa80cf006e84d26903cf1004a268a31'), ('1170','ClickHouse: Uptime','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','eda00404a372434ea4f511c219bf3295'), ('1172','Apache: Current async connections{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','4845e6716bd74e7698406e6d8389eba5'), ('1173','Apache: Current async processes{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','19ecb4e04c3742daac1a0e06d5f98c0c'), ('1174','Apache: Requests per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','dfc5334e77ce45d286145cc08d036f38'), ('1175','Apache: Worker states','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','6f646e8c11b04e8a835b81bc17824593'), ('1176','Apache: Workers total','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'0','0','121c2d4feb0b4b53b027f1566107ab29'), ('1177','Etcd: File descriptors','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','18baccd03c0f4814a42d32b51334787d'), ('1178','Etcd: gRPC client traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','eefd07cf30d84cc4b84f802468363200'), ('1179','Etcd: gRPC requests rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','c53ee0dba42d4a1f8afedbe0f6e42785'), ('1180','Etcd: HTTP requests rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','520ff92815d84e0f84e9296d249c04ae'), ('1181','Etcd: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','90af5b2f75b7402693bad7a8f371ab8e'), ('1182','Etcd: Proposals rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','59cd15292ad04ebd902a7d3080b53838'), ('1183','Etcd: Read/Write rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','b374fab55bcc452e9279214ddb2c8024'), ('1184','IIS: Cache hits percentage','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'0','0','3a0454724c9a444cbeb3ad0da2a3a560'), ('1185','IIS: Cache misses','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4a0a6a0b83f34a88aa753206227304da'), ('1186','IIS: Requests rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','16cfe68447114012bd93fef6dac80be9'), ('1187','IIS: Cache hits percentage','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'0','0','e3b3f8f973204070a37b9eb861e2a079'), ('1188','IIS: Cache misses','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2ac5f3ee169b4e79ad6f08e4dffbffeb'), ('1189','IIS: Requests rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4c488d9247ca49ac8b33d655ccbca2b3'), ('1190','DB ''{#DBNAME}'': Log size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ac52c952ba954065bbbb5c722630cd0b'), ('1191','DB ''{#DBNAME}'': Size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','9553b9169f5e441abecfde1c07ca1a4e'), ('1193','MSSQL: Access methods','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d2db0e08beb6445a8b5dd9fb46249265'), ('1194','MSSQL: Auto-params','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','f22186d86d9346fe9e1f3292e1f0017c'), ('1195','MSSQL: Cache objects','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','24ef7368fb364616892c4928ba6167c6'), ('1196','MSSQL: Compilations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','1f713999d38745b6bb2828e397a32970'), ('1197','MSSQL: Database pages','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','91af398cfb86472ba4a69e3df0816be7'), ('1198','MSSQL: Errors','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','0c9aaf223d6f4ba9bd17b0289af4bbe2'), ('1199','MSSQL: Locks','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e35985317393409b9a764adcb05f07d0'), ('1200','MSSQL: Logins per second and Logouts per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','8796ad9cc04f48cdbe8ef2cb5f429997'), ('1201','MSSQL: Memory/cache load','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','bc588f8933d846a19accdb66eb29ccb9'), ('1202','MSSQL: Memory grants outstanding and pending','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3d431f6cc6d34ef5820f2a24f3872b41'), ('1203','MSSQL: Page life expectancy','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','0f0bc58e0c18421591d265f81c000021'), ('1204','MSSQL: Pages','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2b1d0e42f61a4312998775d21f7cabb7'), ('1205','MSSQL: Processes blocked','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2e9273b0472c4a3e9049bea3548301d5'), ('1206','MSSQL: Server memory','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','f124ce3778bd4722bf0d2d598ac31b0f'), ('1207','MSSQL: Transactions','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','59ffd52c5c334d20870fc209c6c61398'), ('1208','MSSQL: Waits per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','6979c0bcba0e4ac08c6bfefa0c648d40'), ('1209','MSSQL: Wait times','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','41cc736d93ce45d6aeb6dede77c97f08'), ('1212','Oracle: Datafiles','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','72ad9e81bb5147e6827499143d256068'), ('1213','Oracle: PGA','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','dba3f3b856114d50b826a15cacd1d896'), ('1214',E'Oracle: Physical Read\\Write Rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3d1c6ffe69f34695b30d132d99d41dbb'), ('1215',E'Oracle: Physical Read\\Write Rate, Bytes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','5002e9a128524991b16dbea89e0f4b07'), ('1216','Oracle: Processes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','044e0b3a485547b7b41939a78be80784'), ('1217','Oracle: Sessions','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','eef29b959d334e4b9ba3a4d83a571f1f'), ('1218','Oracle: SGA Memory Usage','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'0','0','dd6a3c604ba446e793526564527c5c2f'), ('1219','DB [{#DBNAME}]: Locks','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','af6eac83efc94d2a9f4a3501207fb5ce'), ('1220','DB [{#DBNAME}]: Number of bloating tables','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','9a518b4bf0f04609863bf9dc4c7f1ea2'), ('1221','DB [{#DBNAME}]: pg_stat_database metrics','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','4d46d39a1d1146c19a57b2b5b8086708'), ('1222','DB [{#DBNAME}]: Size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','86853d8590344bad84aab1deb3d1cffc'), ('1250','ClassLoading: Class Loader','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','69184fc10a914cc78637625cc6cc554c'), ('1259','OperatingSystem: File Descriptors','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','39c14cff77694bddb836b63609d9ae92'), ('1260','Threading: Threads','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','397d90097f3f4237ac45d929ffd513e5'), ('1261','DB ''{#DBNAME}'': Number of Log changes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','49d3be5c3ce34cfc9c13456a2ae301f6'), ('1262','PHP-FPM: Process','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','36cd028132d94585877ad5726f0f9e3d'), ('1263','PHP-FPM: Queue','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','768a3e8aaa4741239887b55be5842f4a'), ('1264','PHP-FPM: Process','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','6c69974487f34fea9850ac63fd45adbc'), ('1265','PHP-FPM: Queue','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','250e7f6e07064675872b81a8881f4f31'), ('1268','Oracle: Datafiles','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','292f08d249d344db882a3447cc268ca6'), ('1269','Oracle: PGA','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4b4d2430750c4885b4764c3b602dc091'), ('1270',E'Oracle: Physical Read\\Write Rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4e02f667b98042f6ac538692a074a982'), ('1271',E'Oracle: Physical Read\\Write Rate, Bytes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2bfd6cda93da4201a73c3d16caea8284'), ('1272','Oracle: Processes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e51ad4ba7cca491faf7564a8d26bc1da'), ('1273','Oracle: Sessions','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3323be96dd454a92ade913ab6c2b589c'), ('1274','Oracle: SGA Memory Usage','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'0','0','ad7c9a7b4c7a4b4885cb1e91e7e79d3d'), ('1275','Asterisk: Calls stats','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','92b561a0aee24da9a7d9875f2293316d'), ('1276','Asterisk: IAX peers','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','0e5d56155a1240108a4ffc2f3dc041be'), ('1277','Asterisk: PJSIP peers','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','fd5b051daaf64df89856bec400bbc3a0'), ('1278','Asterisk: SIP peers','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2781590218fe4cc9ade68446e5d11aa2'), ('1339','Ceph: [osd.{#OSDNAME}] OSD latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c88d53bfa7b8456aa70b4d7a2cb63ef5'), ('1343','Ceph: Cluster bandwidth','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','fac43ab599344f1da374bd091f6b618b'), ('1344','Ceph: Cluster I/O','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4191a30a9a7c4e5aa48d96238ca8f20c'), ('1345','Ceph: Free space','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'0','0','515e2c5239f94ee7a52ecdb834079e06'), ('1346','Ceph: Overall OSD latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','8714a8cf50bd43c2b54e410a439d320b'), ('1347','Ceph: Overall OSD utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','716d959b255a47779b9aaf376be8ba03'), ('1356','Squid: DNS lookup statistics','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d8bb2c1dac8a4cb5999d29227a8510e6'), ('1357','Squid: Domain name (FQDN) cache statistics','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e301cc76e0ff4e22bc66a46b19230c33'), ('1358','Squid: File descriptor usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','22556883f0a04b6999013d1a5ce58382'), ('1359','Squid: HTTP Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','647af850b9914d7b803c7f509f4c4f71'), ('1360','Squid: IP address cache statistics','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','c3d9ac16b3e24067b1041b93ee8aaebe'), ('1361','Squid: Memory','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','7b9f0d0f6558432b83375e2fcd082812'), ('1362','Squid: Objects cache statistics','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d4b916fb3ea14e55b3e9799b85d8e40b'), ('1363','Squid: Service timing statistics','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','af823298924d47b09e17eeff093da448'), ('1380','DB [{#DBNAME}]: Block hit/read','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','3f8124b817f2437096c620d62ec2e055'), ('1381','DB [{#DBNAME}]: Database size','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','6bd0a0d65b8d43ad946b145cf8a8b533'), ('1382','DB [{#DBNAME}]: Events','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','41e765d906324595a396d8985b204ff5'), ('1383','DB [{#DBNAME}]: Locks','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','2b260fdf7623476095429434b5c79041'), ('1384','DB [{#DBNAME}]: Queries','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','8a60a92b41b146f49145b86bab559b2e'), ('1385','DB [{#DBNAME}]: Slow queries','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','93518b06f71e46ada3dabefa1726b867'), ('1386','DB [{#DBNAME}]: Temp files','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','779b872280ad46c7a6cdf95c2df7c646'), ('1387','DB [{#DBNAME}]: Tuples','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','f10be22e3bac4d66936c34ec99446c64'), ('1388','PostgreSQL bgwriter','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','6b4b92c62cb94e10b11f218ed35f6211'), ('1389','PostgreSQL checkpoints','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','4a105d193df64be7898ac19a2f07faa4'), ('1390','PostgreSQL connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','8d41d719832049a5a1fcd6f4da67fb6a'), ('1391','PostgreSQL ping','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','1e9a55ee61824779a9f46f42ec21abef'), ('1392','PostgreSQL replication lag','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','d8cf31fc39584a63b9384d9c3ebf40ee'), ('1393','PostgreSQL transactions','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','10d1de74e9d848399ca038055e5cc8ce'), ('1394','PostgreSQL uptime','900','200','0','100',NULL,'1','0','0','1','0','0','0','1','0',NULL,NULL,'0','0','45fe7967596741129b4f2462922636bf'), ('1395','PostgreSQL WAL','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','93ca2dc7a3ff4a458c45e2a56390ce72'), ('1396','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','4f6bc67c40eb441189ec233f926f19ec'), ('1397','Broker {#JMXBROKERNAME}: Messages rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','465b9319e0dc4728a2733c69521e9e81'), ('1398','Broker {#JMXBROKERNAME}: Producers and consumers','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','9cdb5b2bed724f45a305a8434d28c105'), ('1399','Broker {#JMXBROKERNAME}: Resources usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6b018bbe9d154d2d865b7922eaa7ae28'), ('1400','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','006f397fbb664f9981b9228808870239'), ('1401','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Messages rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1c9a999ec2b94942ad10f408b470b1a2'), ('1402','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Producers and consumers','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0854230a67bc4d29b3b3dc2cb7eeaefa'), ('1403','Ceph: [{#POOLNAME}] Pool bandwidth','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1a469f2c99214b1ba7fe3a7520e43439'), ('1404','Ceph: [{#POOLNAME}] Pool I/O','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','7870932ea335481db1c23224dfb33f60'), ('1405','Ceph: [{#POOLNAME}] Pool Usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3da48042fdaa4c01825c3eea7ab5af6b'), ('1406','Database Counters [{#INSTANCE}]: Read and write stats','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d3de0d2651bf49bc856c3354437cea70'), ('1407','Domain Controller [{#INSTANCE}]: Timings','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','68caa8f72b21476f8f18695843c14328'), ('1408','MS Exchange [Client Access Server]: Request rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','47dd0ffded994286a6110082c1693433'), ('1409','Database Counters [{#INSTANCE}]: Read and write stats','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3749d38f7b7f478486c1181aeabd19c1'), ('1410','Domain Controller [{#INSTANCE}]: Timings','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','004b61b0e602483780f7c944219cf110'), ('1411','MS Exchange [Client Access Server]: Request rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d1e720c28aba4d48a522d509bdd7d324'), ('1412','GitLab: Database: Connection pool','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','f6c30e56b54e478ea2708e302197b83b'), ('1413','GitLab: HTTP requests rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ebffb6f63cf5400ab6a518612c5e857f'), ('1414','GitLab: Redis requests rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','14d4a4cc843e4c15bd72b680c18ffdd6'), ('1415','GitLab: Ruby: File descriptors','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2eafabff82a240258c50a77655f77fd9'), ('1416','GitLab: Ruby: RSS memory','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','1c6b8a24e76f4b7390e8e8742afbedec'), ('1417','{#HOSTNAME}: DataNode {#HOSTNAME} DFS size','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'2','0','c497416bcce1416ebcede7fc491ccdba'), ('1418','Kafka: Broker throughput','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','0371c1e9aa924fb89bffa87c26e88481'), ('1419','Kafka: ISR shrinks/expands rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','7a7ce78d88bc483ca07efb5c4e639c1f'), ('1420','Kafka: Leader election rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','bd0b892058df48d5939f2ab9de9c2768'), ('1421','Kafka: Pending deletes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','de66fc0c0dc44fbca5fa44f9cd4716ff'), ('1422','Kafka: Purgatory size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','451bd85a6db249f1a43ac38d4361f925'), ('1423','Kafka: Requests failed rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','aaef8edde7e34c33acad4e0820991bd6'), ('1424','Kafka: Requests performance','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','35b4211374b74b68aceec66cc875816d'), ('1425','Kafka: Temporary memory size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3b531111e8194edd87d497b9fee7084c'), ('1426','Kafka: ZooKeeper connections rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e5f69b35415b49168fba4ffa10e75f25'), ('1427','{#JMXNAME}: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','87de97d55baa4be1964652957a051fc2'), ('1428','{#JMXHOST}{#JMXCONTEXT}: Sessions','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','dfd46f5443f9438fb21ae23dfd4010c0'), ('1429','{#JMXNAME}: Worker threads','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d8236335204a42488c6221c8b2d31e77'), ('1430','Vault: Cache rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','b4fc517d099340558fe813c6fb8c6be2'), ('1431','Vault: Expiring leases','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','81fa6888cef7496eb46a15f11e8a238c'), ('1432','Vault: K/V secret engine entries','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','a96e30071bef4da6839e405ae5b183c5'), ('1433','Vault: Requests rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e7e470ee9e914d4d9fc81b598889f873'), ('1434','Vault: Runtime memory','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2e4eda3a71b74e14a0c4843a96a53dbc'), ('1435','Vault: Token checks','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','db2043aa454a440995a178e342d3eca5'), ('1436','Vault: Token lookup','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','39770778f73c49b0a333d313b76f4020'), ('1437','Vault: Tokens count','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','6b23dff0bd364416b520cca9dab56b47'), ('1438','Zookeeper client {#TYPE} [{#CLIENT}]: Latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','9ea4e5af47124317ba7f4502af97bc9c'), ('1439','Zookeeper client {#TYPE} [{#CLIENT}]: Packets','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b41e4ca001fe4a6789b1b4490861bd26'), ('1440','Zookeeper: File descriptors usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','0553c91abfac4f8fb452b6b367055261'), ('1441','Zookeeper: Latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e4a53bcc70fa4688832dce28ca5f9c4a'), ('1442','Zookeeper: Nodes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','34d7f20585404aabac415c832c09a7ed'), ('1443','Zookeeper: Packets','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','8724517184844ee79c47f36b895cd564'), ('1447',E'{#JMXKEYSPACE}.{#JMXSCOPE}: Read\\Write latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5e293f31be1e46e2ac406afda9ba4d95'), ('1448','{#JMXKEYSPACE}.{#JMXSCOPE}: Requests rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1db58a329f9c4306921fbeb6a089cfcf'), ('1449','Apache Cassandra: Client connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','445735b15ac84e42b21dbe7c44dce812'), ('1450','Apache Cassandra: Client requests rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2ce1833420ba4abc9bdea906d2c1238b'), ('1451',E'Apache Cassandra: Client requests Read\\Write latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','c30ffc0f46304bf6aab699d39d8d6d4c'), ('1452','Apache Cassandra: Dropped Messages','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','5397e6b2349f45169b155e9a99b2b295'), ('1453','Apache Cassandra: KeyCache Hit rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','f82e4d8e2f84434e90baff030d46d10e'), ('1454','Apache Cassandra: Nodes state','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','0f0f2544748d460b9d526573f7b11d70'), ('1455',E'Apache Cassandra: Tables Read\\Write latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','f499150da9ad4376ba528cd4be3af89a'), ('1456','Application [{#APPLICATION_NAME}]: Replication lag','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e79dfe2d436d49da898772a9e7345825'), ('1457','Voltage: Battery/Load{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','480e4c11060a4e34851b48bf7b9c5bb1'), ('1458','Array: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','0662dc480c2b487e9f9afc389166a15b'), ('1459','Current: Charge/Load','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','94bbfd8a60a8412998ff617011db9372'), ('1460','Temperature: Ambient/Battery/Heatsink','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','02652b1251244702bf28f691e72ba27e'), ('1461','Voltage: Battery/Load{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','8ecd4f88627a4dadb132fdbb6d911b6b'), ('1462','Array: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','730d1e1e43224d1ea7b08f53988a7a60'), ('1463','Current: Charge/Load','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','252a40cfba4242deac69f8ed77a04b84'), ('1464','Temperature: Ambient/Battery/Heatsink','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','94e4d2db752b4c54a8b497516b515fe0'), ('1465','Voltage: Battery/Load{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b3520796c85a45df954633bc5f87d80b'), ('1466','Array: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','6090c266226d431193b00fb3db49ae07'), ('1467','Current: Charge/Load','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ad5b73c7352747a6930c9d8647f70bf1'), ('1468','Temperature: Ambient/Battery/Heatsink','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','7b96265600a748728d881f5dfee485d2'), ('1469','Voltage: Battery{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6cdc54f509c045b0880af6f7f901b6ab'), ('1470','Current: A/C Load','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','45df99d33eb0472e946d2f6f7a5a2745'), ('1471','Temperature: Heatsink','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e15d5c71b19444f18d5917519d3fdb74'), ('1472','Battery: Voltage{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','592990e094e842f68463ab542878d5a9'), ('1473','Array: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','6627675fc86645a88d7be9a80c91a8b4'), ('1474','Battery: Current','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','711c5f397c5e4031b36070d20debcc13'), ('1475','Battery: Output Power (Watts)','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','12163228805449dcb48116a1a0b470d9'), ('1476','Temperature: Battery/Heatsink','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','09e9cd48bb6241e8b667e6e1b9f7c3ad'), ('1477','Battery: Voltage{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f95cafe8c2a744908e3a290b0b2f6252'), ('1478','Array: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','8cdd58f62fcc4ca89d114fbe7eddc26d'), ('1479','Battery: Current','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','067062eca2b34488a9defc3aa002c88c'), ('1480','Battery: Output Power (Watts)','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','1889ace5679d4f63b59237812b5d0718'), ('1481','Temperature: Battery/Heatsink','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','87918502df2743e1be04a02b02c44b61'), ('1482','Battery: Voltage{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','bbdea967f4f34a299dd8d9bee43f2841'), ('1483','Array: Voltage{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','9886a05be4a74a82a208e3a5950f022d'), ('1484','Battery: Charge Current{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','cd64c57669314d2e9526fbc580034c81'), ('1485','Load: Current{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','91ee10b435144218ab3dfac8f6bf7bdd'), ('1486','Load: Voltage{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b4b595193e0c40a2b390f7ce6eefba4a'), ('1487','Temperature: Battery/Heatsink','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ce3aa40eac5f4ee199ed214752304e19'), ('1496','Node {#NODE.NAME}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','5e87cb453b3f41138d75783eabeeb17b'), ('1497','{#VSERVER}{#FSNAME}: Free space','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'2','0','938f484a19454b8d9c80be5dbc1887df'), ('1498','Node {#NODE}: port {#IFNAME} ({#TYPE}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','252ef20da69f43fd90afd5a560fdbd1e'), ('1499','Computer [{#DISPLAY_NAME}]: Physical memory','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6296f12b13934006bd462eb4937ca248'), ('1500','Computer [{#DISPLAY_NAME}]: Swap space','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b8dcbbaf33d54a0fab3780a5fdd541e0'), ('1501','Jenkins: Executors','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3fdcf5d5d81f4bf3b854984917cb3d32'), ('1502','Jenkins: Queues','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','6278f5e2def74f2ba8e92872d26a8940'), ('1503','Hikvision camera: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','30cfa75b2afb490f8448a63366577144'), ('1504','Hikvision camera: Memory','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','0cd19b0f8f57435e8b3e1284574e4b79'), ('1505','Data region {#JMXNAME}: Checkpoint buffer utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0ac5a59cc5a64e2ea6bc6e266919ecca'), ('1506','Data region {#JMXNAME}: DataRegion utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','330be15755ca4b5dbee88e21b2e58df2'), ('1507','[{#JMXIGNITEINSTANCENAME}]: Jobs current state','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','40e5feb97990445da11d8d8f49643882'), ('1508','[{#JMXIGNITEINSTANCENAME}]: Jobs rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','cd3eedf54f44492d83138e3f8adf2564'), ('1509','[{#JMXIGNITEINSTANCENAME}]: Communication messages rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','9a116cfc05bc46d1bab248048f125a78'), ('1510','[{#JMXIGNITEINSTANCENAME}]: Discovery messages rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','348631d78d0644209001b054f18b2dc9'), ('1511','[{#JMXIGNITEINSTANCENAME}]: Transactions','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a10ff3fbfd92437ca24cddd82afe3572'), ('1512','[{#JMXIGNITEINSTANCENAME}]: Transactions rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0f84dd85e01d475fa1257085814800da'), ('1513','Cache group [{#JMXNAME}]: Partitions','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ffb5efed84144196a631b0bdef33a13e'), ('1514','Thread pool [{#JMXNAME}]: Thread pool size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','112c375ee9264c1996ea8c35e467f4a4'), ('1515','Cache group [{#JMXGROUP}]: Cache hits','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','50482d45d20a42e581cfdb0a40a9a9dc'), ('1516','Cache group [{#JMXGROUP}]: Cache ops','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1ce594e3eed64627a337e690b772a741'), ('1517','Cache group [{#JMXGROUP}]: Cache transactions','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','91e7fb726cf24bbf9aab6467b9e3a217'), ('1518','Controller {#ID}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','ac083f05484846e6a8c4799410e1f566'), ('1519','LUN {#NAME}: LUN I/O','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','36d1eb7893f54db28afb1f4725aef1a1'), ('1520','LUN {#NAME}: LUN I/O latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f86ef671d9454bb8878835ba1c96ba20'), ('1521','LUN {#NAME}: LUN traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','eb10b5b56a964c2ba7870d2dc7cf787b'), ('1522','Node {#NODE}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','62f3a059a92a454eba1a71fb3a62b787'), ('1523','Node {#NODE}: Node I/O','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1061657e43594c139c49125c1710a10a'), ('1524','Node {#NODE}: Node traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','81b69fee1dde49e0b0fbe5c06077d289'), ('1525','Pool {#NAME}: Capacity','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6a2ef2bf36e44139b8550d7f1950669a'), ('1526','OceanStor 5300 V5: Capacity','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','9401d60314c441a5a04d7a9709c6970e'), ('1527','MongoDB {#DBNAME}.{#COLLECTION}: Locks','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','76e921eae63a49b99102d880d5844a46'), ('1528','MongoDB {#DBNAME}.{#COLLECTION}: Locks time','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ab97504abcc844d5a408d4b7cf85e5a5'), ('1529','MongoDB {#DBNAME}.{#COLLECTION}: Operations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','dcfc8fcc0b484c8baea14525aa212dc2'), ('1530','MongoDB {#DBNAME}.{#COLLECTION}: Operations time','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','554ac3ac477c47cfbaaba3d6419109f0'), ('1531','MongoDB {#DBNAME}: Collections stats','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e65fcfed4eca4d518b5e6b5b6085ede8'), ('1532','MongoDB {#DBNAME}: Disk usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5dc13b4aebf24a1b8448c26d93b42d7a'), ('1533','MongoDB: Replication lag time [{#RS_NAME}]','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','52724c49dd544470916eab1301be30da'), ('1534','MongoDB: Active clients','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','b018e24581464b0282df09fb9d6fc129'), ('1535','MongoDB: Activity','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','815c7f2a6dd941df9bc10bc9153e0e97'), ('1536','MongoDB: Connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d7787063a8614cb4afdf41811a8ade59'), ('1537','MongoDB: Cursors','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','230bda1ddd4a45b6a2f11dbea252276e'), ('1538','MongoDB: Documents','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','509211f5f33d4c57a49c5416b2f33937'), ('1539','MongoDB: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','f47175a50c6f488b993d3b04ecb28af4'), ('1540','MongoDB: Network','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','f1311a6b0d5f4564898d6679a45c438d'), ('1541','MongoDB: Operations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','27c36a56bdca436d8a0fe43c9ee8233b'), ('1542','MongoDB: Queued operations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e228af86d0a34bd4b494cb6b8cda2ad8'), ('1543','MongoDB {#DBNAME}: Disk usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','44e0e02d1e9a420b9dc917d8cf4bf983'), ('1544','MongoDB cluster: Connection pool','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','311d33ada96e4910a350e62abc6d5321'), ('1545','MongoDB cluster: Connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','71a5a2d563d64bceacd564fe25b4d49e'), ('1546','MongoDB cluster: Cursors','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','b4277ddaf3c5486cacba0f9b7208c5b2'), ('1547','MongoDB cluster: Network','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d612246739784b9b9403dee6024493ce'), ('1548','MongoDB cluster: Operations rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4228deefccae4cd2959b183ba3e36295'), ('1549','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','00035facb3f3457fb24582f664c2401d'), ('1550','{#SNMPVALUE}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','4c4a6a5124eb4cc0b32de032f4e9e3db'), ('1551','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','00ed7485a75e4192979c950b279593d8'), ('1552','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','ab67e338f5784971b7b5a1cac20097fb'), ('1553','{#SNMPVALUE}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','e86ef2331d1644ca80b28f0855a7a7e9'), ('1554','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f277c62e4c614924a79715beae06a63b'), ('1555','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','e032e542ed064edc8a5b5a297a0f4839'), ('1556','{#SNMPVALUE}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','25de5d0bebc34c5d9bdf8e181c53588c'), ('1557','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6be27bc4e258470bb324ef8f90295e92'), ('1558','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','54afe104c5dc41f18b6cee29e505463c'), ('1559','{#SNMPVALUE}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','2d34cc29f3f24decb910e5e99bad064a'), ('1560','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','bc8d1b63791943aabb62d861a86e2754'), ('1561','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','af1ac970bce54108bec634e986711c65'), ('1562','{#SNMPVALUE}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','5d8987ea729748048c3fb5381c6930aa'), ('1563','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2f07fa8de9f94fdfab762af30d7ac17a'), ('1564','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','cabe6db1b71f42d9bc3cef730221a14b'), ('1565','{#FSNAME}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','323ae8e8795543958fe6affc78a3853c'), ('1566','{#MEMNAME}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','bc2042eaf8244d28891e6d71414847da'), ('1567','Mellanox: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','89bf34a1c3db423caa4fbeae774fa9cf'), ('1569','APC UPS: Output','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d4b2320e0515407cb32afa388f91cd29'), ('1570','APC UPS: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4988c266dc15493592112371b061f9e2'), ('1571','{#VOLUMENAME}: Volume latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5f9bc8697c9c4e22ab55781366fbb9c4'), ('1572','{#VOLUMENAME}: Volume size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2d38bfca52f14cd1a16eafef531c2a05'), ('1573','NetApp AFF A700: Cluster IOPS','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','840b4c30198c48e1b161d1b2deee26c8'), ('1574','NetApp AFF A700: Cluster latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','34c781f1f9e944ca8010118483470ad9'), ('1575','NetApp AFF A700: Cluster throughput','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','8754fe099580424b84a4b51031a09fa1'), ('1576','ClickHouse: Zookeeper exceptions rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','c90d0b21105e42bd9f4399d77ba0a81a'), ('1577','TiDB cluster: Storage Usage[{#SINGLETON}]','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','270de7aa73cf454cb147a3f5b39ebb35'), ('1578','TiDB: File descriptors','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ee25671d0b5446348341be56967a74b2'), ('1579','TiDB: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','fb29a5ea3a62416f8eeee804a6f83c46'), ('1580','TiDB: Server query rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','5ab746ad86ef4710948263d4d6157742'), ('1581','TiKV: Scheduler priority commands rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','cdca8a2bb2bb486da8c57740acc431d6'), ('1582','TiKV: Snapshot state count','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','93a38153ed8b44a49849cb1f920f50a4'), ('1583','APC UPS Galaxy 3500: Capacity of the UPS batteries','900','200','0','100',NULL,'1','1','2','1','0','0','0','0','0',NULL,NULL,'0','0','c4f0ae3090394d1d8918227f1a002702'), ('1584','APC UPS Galaxy 3500: Output','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d8c7c0451bfd40bf9feb085fb6c5fcf0'), ('1585','APC UPS Galaxy 3500: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ad9f9b407ae24dd8ba7d2a652bb21fe7'), ('1586','APC Smart-UPS 2200 RM: Capacity of the UPS batteries','900','200','0','100',NULL,'1','1','2','1','0','0','0','0','0',NULL,NULL,'0','0','3ea53e2a8a4b4d6e80cd991a20f20ce8'), ('1587','APC Smart-UPS 2200 RM: Output','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3d687b2515494fe191fccaaca5c40333'), ('1588','APC Smart-UPS 2200 RM: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','17a289b5764947758d8eb20425e229d2'), ('1589','APC Smart-UPS 3000 XLM: Capacity of the UPS batteries','900','200','0','100',NULL,'1','1','2','1','0','0','0','0','0',NULL,NULL,'0','0','a7185c07025e46c6a3b86c29d9f749b0'), ('1590','APC Smart-UPS 3000 XLM: Output','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3c778f0c837d4979abb39aabe0cb321e'), ('1591','APC Smart-UPS 3000 XLM: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','5f44db14cfc94ae7adf98f8cf1f4b647'), ('1592','APC Smart-UPS RT 1000 RM XL: Capacity of the UPS batteries','900','200','0','100',NULL,'1','1','2','1','0','0','0','0','0',NULL,NULL,'0','0','566f3eed2c324e5faa80f4170cb40b5b'), ('1593','APC Smart-UPS RT 1000 RM XL: Output','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','09da5776f4ff4e978e488a12f33dc8bc'), ('1594','APC Smart-UPS RT 1000 RM XL: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','df0833759bae450e8125c3fb76519775'), ('1595','APC Smart-UPS RT 1000 XL: Capacity of the UPS batteries','900','200','0','100',NULL,'1','1','2','1','0','0','0','0','0',NULL,NULL,'0','0','a0d8e0338b8d4fd2bd6fdf537373d63c'), ('1596','APC Smart-UPS RT 1000 XL: Output','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','0817d2550d9642fe95ce182dce5cefd8'), ('1597','APC Smart-UPS RT 1000 XL: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ce2f4070e7a14d8283d0a8aff0fcd5e6'), ('1601','APC Smart-UPS SRT 8000: Capacity of the UPS batteries','900','200','0','100',NULL,'1','1','2','1','0','0','0','0','0',NULL,NULL,'0','0','e040a4ac7b024c4c878c8145b34969aa'), ('1602','APC Smart-UPS SRT 8000: Output','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','7cd3c6f5dcaf40e28cbc0ac9e3c35d7a'), ('1603','APC Smart-UPS SRT 8000: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2fe4eba0af2745c994ad3d6abfe30140'), ('1604','APC UPS: Capacity of the UPS batteries','900','200','0','100',NULL,'1','1','2','1','0','0','0','0','0',NULL,NULL,'0','0','2f54cf3da7be49108736e46afe0b5904'), ('1605','APC UPS Symmetra LX: Capacity of the UPS batteries','900','200','0','100',NULL,'1','1','2','1','0','0','0','0','0',NULL,NULL,'0','0','265f3050b3b94cbeae6fefdae02ea992'), ('1606','APC UPS Symmetra LX: Output','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2ef61780d42c4d61bcb89faf08691d08'), ('1607','APC UPS Symmetra LX: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4432ed7ca97d4d989b253383037f48ee'), ('1608','APC UPS Symmetra RM: Capacity of the UPS batteries','900','200','0','100',NULL,'1','1','2','1','0','0','0','0','0',NULL,NULL,'0','0','ea7ef2682549402eb23b0d9df313ee25'), ('1609','APC UPS Symmetra RM: Output','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d340e1d477bc4bc4b099c94b1fe6d2da'), ('1610','APC UPS Symmetra RM: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','42f5e7154634464fabafe352508b50db'), ('1611','APC UPS Symmetra RX: Capacity of the UPS batteries','900','200','0','100',NULL,'1','1','2','1','0','0','0','0','0',NULL,NULL,'0','0','69ef37f00b0249bb98f381b483280dd1'), ('1612','APC UPS Symmetra RX: Output','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','782c8a349b7f4f93a65aeaa058454b14'), ('1613','APC UPS Symmetra RX: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','8bc9d8e4bb284134b67498daccb85d5e'), ('1614','{#JMX_DATA_SOURCE}: Cache operations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','322b26787ab444db90a1be3da2717dd2'), ('1615','{#JMX_DATA_SOURCE}: Connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','65db851d241b4fe4b6a5d9796d475e55'), ('1616','Listener {#HTTP_LISTENER}: Requests','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','980c07db8fc5450db560a94df1250bf5'), ('1617','Listener {#HTTP_LISTENER}: Throughput','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','7d982b6efde6432f9d3f96a4300eae00'), ('1618','WildFly: Transactions','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','69e213dfd33d49a8b057068a89e4cef1'), ('1619','APC Smart-UPS SRT 5000: Capacity of the UPS batteries','900','200','0','100',NULL,'1','1','2','1','0','0','0','0','0',NULL,NULL,'0','0','fb922a035a6748e28dc892af3331dae4'), ('1620','APC Smart-UPS SRT 5000: Output','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4317390560354b369a884abcbce9a026'), ('1621','APC Smart-UPS SRT 5000: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','595018e4c5d8406a805aed647cd2f5d1'), ('1622','Cloudflare: Bandwidth','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','09e113216680490c9dd15805474bcac7'), ('1623','Cloudflare: Caching','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ed4ef5ce4a6a4c5692c22079d8879e0e'), ('1624','Cloudflare: DNS requests','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','25df26cece41403d864f1ced5901bffa'), ('1625','Cloudflare: HTTP response codes over time','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3fb3b089a115420bbc051c14fcd2f3aa'), ('1626','Cloudflare: HTTP responses ratio over time','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','c9e1708427a84182a406faec327bb6f1'), ('1627','Cloudflare: IPs and threats','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','6a0da78eec23423ab084a0760f1691be'), ('1628','Cloudflare: Web requests','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','659df99629a341449c77baf7a9b99b77'), ('1629','HAProxy: Backend {#PXNAME} In/Out traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','70bf1a17304e495dae74b86b93ac9773'), ('1630','HAProxy: Backend {#PXNAME} Responses by HTTP code','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'2','0','50d592985cd74d0a95904971dc40767d'), ('1631','HAProxy: {#PXNAME} {#SVNAME} In/Out traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','15210cbf31ab459ca77d35206255f317'), ('1632','HAProxy: {#PXNAME} {#SVNAME} Responses by HTTP code','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'2','0','09fb856698f441b29103e3b8c8bcb8dd'), ('1633','HAProxy: Backend {#PXNAME} In/Out traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','47e7dc2c8ff2424eb81f396f83dbb2c0'), ('1634','HAProxy: Backend {#PXNAME} Responses by HTTP code','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'2','0','816e4062fc7b45bea96c2a2fbc171088'), ('1635','HAProxy: {#PXNAME} {#SVNAME} In/Out traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b7170d909b78413daa7057320d4280d8'), ('1636','HAProxy: {#PXNAME} {#SVNAME} Responses by HTTP code','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'2','0','d9b0d6babaf04daa942f121aab2d5b9c'), ('1637','Nginx: HTTP location zone [{#NAME}]: Requests','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','85880c097a1c47bfafa35de05304abbc'), ('1638','Nginx: HTTP location zone [{#NAME}]: Responses','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6b05907e4c544986b977a1b496ca92e2'), ('1639','Nginx: HTTP server zone [{#NAME}]: Requests','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ba4bc0201f0741078e1512fd79bddf59'), ('1640','Nginx: HTTP server zone [{#NAME}]: Responses','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5870e9a861f046b3946c2464c6c5007d'), ('1641','Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','63582bcbe4c741e88cd64a43ff1b7d9d'), ('1642','Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Responses','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','49cd8f25969d486ab4482b4986b1815a'), ('1643','Nginx: Resolver [{#NAME}]: Requests','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','7c91ca5b8477468fa19c56b621e0c32a'), ('1644','Nginx: Resolver [{#NAME}]: Responses','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e3535ce974114e6188752937c1bdb2c7'), ('1645','Nginx: Stream server zone [{#NAME}]: Sessions','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f833112506e941d791057925c58bd1d9'), ('1646','Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','abb23d681d0a461db00648b412b176c8'), ('1647','Nginx: Connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','a8b239f2f21a471fa3ac6a10a0419e9c'), ('1648','Nginx: Requests','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4be7153e244b4c28a53c527aa9fd5706'), ('1649','Nginx: SSL','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','b1c647610c974bc8aad4fb55e1e3c8d3'), ('1650','Nginx: Uptime','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','b2da29d4951745db8a66a076eb99d0aa'), ('1663','Data region {#JMXNAME}: Checkpoint buffer utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f9410067b582451aa0b2675391504a65'), ('1664','Data region {#JMXNAME}: DataRegion utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6f2ffd3ba45c4803864d049e7bfbbf18'), ('1665','GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs current state','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ca84e5c7fc76473392a30a3073e9cb25'), ('1666','GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','93e01a53b9054a83a6461e3526f63ee3'), ('1667','GridGain [{#JMXIGNITEINSTANCENAME}]: Communication messages rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ca090aa6d7e449e880b43cdbbd80d991'), ('1668','GridGain [{#JMXIGNITEINSTANCENAME}]: Discovery messages rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a44983a855934d3ea5d2eaa1421df147'), ('1669','GridGain [{#JMXIGNITEINSTANCENAME}]: Transactions','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','82d772972cec4454b95d69343040b2b5'), ('1670','GridGain [{#JMXIGNITEINSTANCENAME}]: Transactions rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ad74079d5ef741918d25f059c1950839'), ('1671','Cache group [{#JMXNAME}]: Partitions','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','da32480debef4e2baec58a7cf1131357'), ('1672','Thread pool [{#JMXNAME}]: Thread pool size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d3db21cd80664dc4b6847456e15b2b3e'), ('1673','Cache group [{#JMXGROUP}]: Cache hits','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','8c453a6631b34c96b39375aff2e51ac3'), ('1674','Cache group [{#JMXGROUP}]: Cache ops','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','de80d7645ec347c3a547e9d8d41edc3a'), ('1675','Cache group [{#JMXGROUP}]: Cache transactions','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','20b825d52d8241a79405768faf0e202d'), ('1676','Cisco ASAv: CPU[{#SNMPINDEX}] Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c3d95f2670f346cda44b3def5a835379'), ('1677','Cisco ASAv: Memory[{#SNMPVALUE}] Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','388a69f2dfad42ac934d3f09c5e0efd1'), ('1678','Cisco ASAv: {#CISCO.IF.NAME}: Packets traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5e94c9468d7d40ba9705bcfe01f7c24e'), ('1679','Cisco ASAv: {#CISCO.IF.NAME}: Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','1e252a00f1a14e99b06498a659a0d1d5'), ('1680','Cisco ASAv: {#CISCO.IF.NAME} Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','4609522ac9a545b3a5b38129e5110174'), ('1681','Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','bed8a06cbbc24144813d0c515bd09328'), ('1682','F5 BIG-IP: Sensor [{#SLOT.INDEX}:{#TEMP.INDEX}] temperature','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1b43fb6913274a34ab6ad122d5db38ba'), ('1683','F5 BIG-IP: Voltage [{#VOLT.INDEX}] value','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b5b1a26c3c9043d79eff63272c3e4b8d'), ('1684','F5 BIG-IP: FAN [{#FAN.INDEX}] speed','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f0a043ed6fb249e489f143350b681a63'), ('1685','F5 BIG-IP: Sensor [{#TEMP.INDEX}] temperature','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ceea250c715948f3907290738451c328'), ('1686','F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Usage ratio, avg 1m','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','64c251a6b0384d2ea7d5b498c7fe6422'), ('1687','F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Usage ratio, avg 5m','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3fd0ca58d8f14e06afa2c58f9d1b46f3'), ('1688','F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Usage ratio, avg 5s','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','dba5e4f4c3714f438eacba4b213ce640'), ('1689','F5 BIG-IP: Sensor [{#CPU.SENSOR.SLOT}:{#CPU.SENSOR.INDEX}] FAN speed','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','714b13fd29ec47009f183d44ddaa8df6'), ('1690','F5 BIG-IP: Sensor [{#CPU.SENSOR.SLOT}:{#CPU.SENSOR.INDEX}] temperature','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','be756734cec74d9fb427fb1d515c7888'), ('1691','F5 BIG-IP: Mount point [{#PART.NAME}]: Blocks','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ed63eb409eb2497bb9dc7721ac789022'), ('1692','F5 BIG-IP: Host [{#HOST.ID}]: Memory','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3414dd36b37e434f9c28eacc0e8c58b9'), ('1693','F5 BIG-IP: Host [{#HOST.ID}]: Swap','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','4b7815c72f264209b288c019541a09e6'), ('1694','F5 BIG-IP: Module [{#MODULE.NAME}] resource usage ratio','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','cfc1606bfbdd40b095620e32e646e2fd'), ('1695','F5 BIG-IP: Interface [{#IF.NAME}]','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f784ab335a314bd7b328c0fe5053f5f7'), ('1696','F5 BIG-IP: Node [{#NODE.NAME}] network ratio','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','920bf6830fae4d168a3d9fc772a8f25c'), ('1697','F5 BIG-IP: Pool [{#POOL.NAME}] network ratio','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a077af6d72a447a99a35f2daa8b0205e'), ('1698','F5 BIG-IP: Virtual server [{#VSERVER.NAME}] network','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b49ee8a27f634c238317663d7cc9d426'), ('1699','F5 BIG-IP: Virtual server [{#VSERVER.NAME}] usage ratio','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','17d18d4117f943d18873972584f3374e'), ('1700','F5 BIG-IP: TCP/UDP statistics','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','9530ea135466433cb25f73ed78960960'), ('1701','ZYXEL AAM1212-51 / IES-612: ADSL port {#SNMPINDEX}: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','09d34a6f9dd2499b8759e15301eefdb5'), ('1702','ZYXEL AAM1212-51 / IES-612: Ethernet port {#SNMPINDEX}: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','4f5b714c04a44fbb9a64399c831b2980'), ('1703','ZYXEL AAM1212-51 / IES-612: "Temperature {#ZYXEL.TEMP.ID}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','00cd199f1e114fcbafbd3dd19c1b2f47'), ('1704','ZYXEL AAM1212-51 / IES-612: Nominal "{#ZYXEL.VOLT.NOMINAL}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','afdd9501f85c4c9f9a81b8f16968990b'), ('1705','ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Packets traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a4b7fd4158464655a71732de5ebc9a9d'), ('1706','ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','4e20dd0297a94188a6e4032df91432dc'), ('1707','ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','c57f41ad6c084a358668e4d7a57b902e'), ('1708','ZYXEL ES3500-8PD: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c114cc7fee5c4c8fa3301db0eb3b60f7'), ('1709','ZYXEL ES3500-8PD: Temperature "{#ZYXEL.TEMP.ID}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a1931b48befb4c76a4d5a7ff6c15cbaf'), ('1710','ZYXEL ES3500-8PD: Nominal "{#ZYXEL.VOLT.NOMINAL}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','94ee588ae558416da5bcf4c199797d93'), ('1711','ZYXEL ES3500-8PD: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','2d266c1cab6e462b89975538acc18266'), ('1712','ZYXEL GS-4012F: Fan #{#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','9c17e54a98324a9bb35c3a4234efe55f'), ('1713','ZYXEL GS-4012F: Port {#SNMPINDEX}: Packets traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1cad0c1a40a8472da2edee9cd889e6cf'), ('1714','ZYXEL GS-4012F: Port {#SNMPINDEX}: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ca2e18634f87486987251a2894eabaa0'), ('1715','ZYXEL GS-4012F: Port {#SNMPINDEX}: Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','3223519ee24947c5a82b584fc3f2dd3d'), ('1716','ZYXEL GS-4012F: Temperature "{#ZYXEL.TEMP.ID}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f2dbed78c1d2440480cff0d1b243a546'), ('1717','ZYXEL GS-4012F: Nominal "{#ZYXEL.VOLT.NOMINAL}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','021bf935acc542d89a0a26120e995671'), ('1718','ZYXEL GS-4012F: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','966ba518f4e045ed98d2edf65df45078'), ('1719','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Packet buffer utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','83573a387ef24596bf7e4171506a9ea5'), ('1720','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c9a9a54478ba46bbb91b4945c977a823'), ('1721','ZYXEL IES-500x: Fan #{#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','79f318a961b5418e888de36f8ffe17e7'), ('1722','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0b72c4f49d434e0c9a7de3a6617511ea'), ('1723','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Packets traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a98704946d534a06909de85a05d75224'), ('1724','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','184fddf8b22047e6a7ff4c5837642e60'), ('1725','ZYXEL IES-500x: Port {#SNMPINDEX}: Packets traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','cb09087451b3472ab5d04f18c829acc9'), ('1726','ZYXEL IES-500x: Port {#SNMPINDEX}: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','82fd413110454b88ab811229cc598eeb'), ('1727','ZYXEL IES-500x: Port {#SNMPINDEX}: Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','c4cbf45592f8421eacc85a833509a819'), ('1728','ZYXEL IES-500x: "Temperature Slot {#ZYXEL.SLOT.ID} Sensor: {#ZYXEL.TEMP.ID}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3b8799c609344e749de0da409b666714'), ('1729','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Nominal "{#ZYXEL.VOLT.NOMINAL}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','bf0cfa212f934287b8dd3e405f8d1de3'), ('1730','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Packet buffer utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','fcb46fd73a884e60b1ba3d4e8873bbce'), ('1731','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6c3837433afe4a1cb64038c62743be15'), ('1732','ZYXEL IES-6000: Fan #{#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','48736da52a8947e6a69cef3a9980bfbb'), ('1733','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c85c2345f80448feb2253a10ec16778a'), ('1734','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Packets traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e8a72d0fe2d745ffbffae11b379297e4'), ('1735','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','60c44917db2045c19efd64718a9f37cf'), ('1736','ZYXEL IES-6000: Port {#SNMPINDEX}: Packets traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','006679b6dfd64b65ad13de41be74783d'), ('1737','ZYXEL IES-6000: Port {#SNMPINDEX}: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6c545945185743b2929edf1b81fe0872'), ('1738','ZYXEL IES-6000: Port {#SNMPINDEX}: Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','b7085154d7694b9aba49b56bc412d458'), ('1739','ZYXEL IES-6000: "Temperature Slot {#ZYXEL.SLOT.ID} Sensor: {#ZYXEL.TEMP.ID}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','8e885ce1061b4400abce9eaad1271ea1'), ('1740','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Nominal "{#ZYXEL.VOLT.NOMINAL}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d7f01a58a08a4403818242a907152f78'), ('1741','ZYXEL IES1248-51: Fan #{#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f8d2136dab70403a98da660bcf4c02a2'), ('1742','ZYXEL IES1248-51: ADSL port {#SNMPINDEX}: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','7c9c5ff332394b97a311225de08b6bc6'), ('1743','ZYXEL IES1248-51: Ethernet port {#SNMPINDEX}: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1988adb1e96b423a8df3c55ea2f63d47'), ('1744','ZYXEL IES1248-51: "Temperature {#ZYXEL.TEMP.ID}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a5ec11a8936746c492fcf2e4462c7ca7'), ('1745','ZYXEL IES1248-51: Nominal "{#ZYXEL.VOLT.NOMINAL}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ebbc2726558c4504aa6bd22844d0bc83'), ('1746','ZYXEL MES-3528: Port {#SNMPINDEX}: Packets traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d021344604284e9ca127851ae1cb95ff'), ('1747','ZYXEL MES-3528: Port {#SNMPINDEX}: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','936c27e914044b0eb31f874995c0571c'), ('1748','ZYXEL MES-3528: Port {#SNMPINDEX}: Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','f50ceeef9c6446a685127383176fe811'), ('1749','ZYXEL MES-3528: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ed8f780aa61845309aebfa522e3e9f3d'), ('1750','ZYXEL MES-3528: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','6a05d499aec2421e9a7e758fba82255a'), ('1751','ZYXEL MES3500-10: Port {#SNMPINDEX}: Packets traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','914bb954a2ef42939825074378d001bc'), ('1752','ZYXEL MES3500-10: Port {#SNMPINDEX}: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','9b6213d6ab0248bd9bfd62a5af0846a7'), ('1753','ZYXEL MES3500-10: Port {#SNMPINDEX}: Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','c209a6e8cdb748978b90584432f0a09e'), ('1754','ZYXEL MES3500-10: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1b5db1876c0a4acf9d45ac26a9739778'), ('1755','ZYXEL MES3500-10: Temperature "{#ZYXEL.TEMP.ID}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0c7b7b235f174e048bd3da37d1ed0913'), ('1756','ZYXEL MES3500-10: Nominal "{#ZYXEL.VOLT.NOMINAL}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','909d64e8063647de90f9fd61375c40a9'), ('1757','ZYXEL MES3500-10: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','d44501ff36e1430da2080397868bb8aa'), ('1758','ZYXEL MES3500-24: Port {#SNMPINDEX}: Packets traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2b07fe7c9bd14177b8cc8c05e3975ac9'), ('1759','ZYXEL MES3500-24: Port {#SNMPINDEX}: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b4c385f72ca243c8a7681c8220229d8d'), ('1760','ZYXEL MES3500-24: Port {#SNMPINDEX}: Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','ae845a9a10204c40a1a044002f5b1a72'), ('1761','ZYXEL MES3500-24: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','14b916383368427cad794b92d5d706e9'), ('1762','ZYXEL MES3500-24: Temperature "{#ZYXEL.TEMP.ID}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5e06e88aca5b492aa9c623e4ef727b5d'), ('1763','ZYXEL MES3500-24: Nominal "{#ZYXEL.VOLT.NOMINAL}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','40f7ab2435d345279b8a7a52bad06dcd'), ('1764','ZYXEL MES3500-24: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','ae7d968e6ec942efb4e0b20fd75a5eac'), ('1765','ZYXEL MGS-3712: Fan #{#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','06d4f886b788464fad9f0da91d78b0e4'), ('1766','ZYXEL MGS-3712: Port {#SNMPINDEX}: Packets traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b2bed2a4ab7b42119009f4aabd979656'), ('1767','ZYXEL MGS-3712: Port {#SNMPINDEX}: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','489edc6b24844d8cb5c718a8a4d45a3c'), ('1768','ZYXEL MGS-3712: Port {#SNMPINDEX}: Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','1466f28d9f014bb39396cda181630fc4'), ('1769','ZYXEL MGS-3712: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2d432abf28354f4193d93b21bc5f1507'), ('1770','ZYXEL MGS-3712: Temperature "{#ZYXEL.TEMP.ID}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','952122594bf14cad9ce00e202209388a'), ('1771','ZYXEL MGS-3712: Nominal "{#ZYXEL.VOLT.NOMINAL}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','67b6c6c6085e45cbbb58fb93c1b6eb2f'), ('1772','ZYXEL MGS-3712: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','21c2da2f53e44f6a8b3fc722e415b4c8'), ('1773','ZYXEL MGS-3712F: Fan #{#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','09b10e607e14466d8c49512955f6f30e'), ('1774','ZYXEL MGS-3712F: Port {#SNMPINDEX}: Packets traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6d6da920b3b841d2a348016bfa4fd529'), ('1775','ZYXEL MGS-3712F: Port {#SNMPINDEX}: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','337c2059cb87491fbacae5690da55ca7'), ('1776','ZYXEL MGS-3712F: Port {#SNMPINDEX}: Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','3e75d1f6271943eaaf19644716fe4e40'), ('1777','ZYXEL MGS-3712F: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1ea36937222d40b0a714b47fb0fceb36'), ('1778','ZYXEL MGS-3712F: Temperature "{#ZYXEL.TEMP.ID}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','75294455e2ce4c2cb902c6b58549c8d8'), ('1779','ZYXEL MGS-3712F: Nominal "{#ZYXEL.VOLT.NOMINAL}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','fd954391176a47728eec01caed2234b5'), ('1780','ZYXEL MGS-3712F: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','85bd11f116ef4e3b9695dc783c625f05'), ('1781','ZYXEL MES3500-24S: Fan #{#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ed81cba771d34db3b50262ff0bbc73b4'), ('1782','ZYXEL MES3500-24S: Port {#SNMPINDEX}: Packets traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','86f5f836fba94de9aed70cf58c6cf1d4'), ('1783','ZYXEL MES3500-24S: Port {#SNMPINDEX}: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f9f04b1fffeb49d3995957c026a5de5b'), ('1784','ZYXEL MES3500-24S: Port {#SNMPINDEX}: Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','a9d922236e12416a85f07c7caff3e3cb'), ('1785','ZYXEL MES3500-24S: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e5e5d83e9f9e429fb51ff79245335065'), ('1786','ZYXEL MES3500-24S: Temperature "{#ZYXEL.TEMPDESCRIPTION}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c238ae64f1ca4e948b36cb423669c864'), ('1787','ZYXEL MES3500-24S: Nominal "{#ZYXEL.DESCRIPTION}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a94a590eed624cac8ece4ff2956419d8'), ('1788','ZYXEL MES3500-24S: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','055310b8a5c94d94aeeaf75ff5d2de55'), ('1789','ZYXEL MGS3520-28x: Fan #{#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','8599554de97e46e2bb7d3575d97f9453'), ('1790','ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Packets traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a7a2aec27f0045eba26e86e8cb08853a'), ('1791','ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b5446d1f3394422d81ca94dd617d6e95'), ('1792','ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','7314e57ea54c42d2ac6a341943204c04'), ('1793','ZYXEL MGS3520-28x: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5d6e873606684351a68d649a8f7cd5d4'), ('1794','ZYXEL MGS3520-28x: Temperature "{#ZYXEL.TEMPDESCRIPTION}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','96fcc6df9a324347a550dd0df84ac15a'), ('1795','ZYXEL MGS3520-28x: Nominal "{#ZYXEL.DESCRIPTION}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','74f0c4aba0db42869c1797c0631b7d03'), ('1796','ZYXEL MGS3520-28x: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','13d4a0c9f81647c8ba9f712617c45402'), ('1797','ZYXEL XGS-4728F: Fan #{#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','96aed516a0254866b0d0b43095b8a5b7'), ('1798','ZYXEL XGS-4728F: Port {#SNMPINDEX}: Packets traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','18c2bd830caa49308459d64ef85cfc71'), ('1799','ZYXEL XGS-4728F: Port {#SNMPINDEX}: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a8c07b7801d64c24bfedf10ea193f697'), ('1800','ZYXEL XGS-4728F: Port {#SNMPINDEX}: Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','37e8454c3fa04f88be36d875638110c6'), ('1801','ZYXEL XGS-4728F: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','109ff7d258524b82bdbf4662e612795b'), ('1802','ZYXEL XGS-4728F: Temperature "{#ZYXEL.TEMP.ID}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1068300241bb430b8c51048303922e55'), ('1803','ZYXEL XGS-4728F: Nominal "{#ZYXEL.VOLT.NOMINAL}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','560c37d174e741a6a2590d17574123ed'), ('1804','ZYXEL XGS-4728F: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','dfd68fb23bf349068005997de6b0515a'), ('1805','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d5e5f60602cc41ba8e0b79a63644bf08'), ('1806','Repo [{#SLUG}]: Builds','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b13d986ae110458a80d74f32bb267ed7'), ('1807','InfluxDB: [{#ORG_NAME}]: Query requests','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','925d6b2f79b2479ab031118d795811fb'), ('1808','InfluxDB: [{#ORG_NAME}]: Query traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','01921ee545c540bd8c0d51429bcce11b'), ('1809','InfluxDB: Tasks runs','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','dd6b62b969594ddbb82895a8f8fc5623'), ('1811','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','473d7e39becc4c56bef6687d3e197dd8'), ('1812','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','38deeca2121f4698834d9f8c984be4bf'), ('1813','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','bff3cf781de1430d81a20a71a055e35d'), ('1814','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','852cd213b59640f09cd62303fa4c0d9d'), ('1816','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','5154454506aa483b8683638345709c0f'), ('1817','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','7cbf0b34c2154834b34f25ef18c70748'), ('1818','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','ec4206d099ad41b79c2c65f1c684a8ae'), ('1819','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','5ba0ddfa9e4444bca1221b9ba2f833ce'), ('1821','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','d8eb7cb6b67348c0911756a89bfffe99'), ('1822','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','15c4b3a688e4485ca2ab76a990e43ce1'), ('1823','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','ee6f2f6f632a4e04849e64251bcd7eeb'), ('1824','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','0d8972aadf0f4e19bb93ce9bed6723fa'), ('1826','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','4bd6447ec4e54e45b12893adf4a92bc3'), ('1827','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3048504b46b7470ca54ef976cf973411'), ('1828','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','7fb9b943f8ce49a88f48095d24f9efda'), ('1829','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','7c3a67d410e44adc9ec226715dcbe88d'), ('1831','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','0c73159da76a4b61bbc7c8116af9d7fc'), ('1832','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','43b1fee8802d46ed838db745daff8be1'), ('1833','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','8a71589751e94467973c7f52af45f440'), ('1834','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','745d4ccb40fc47299aa0fce0d534ff7d'), ('1836','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','7ad0424405ea4a1d9e9269d3f4c70fdd'), ('1837','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','687618f8d1c74502b6cf0fa90bd634a1'), ('1838','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','07380c601c834361b6ccec958d64a643'), ('1839','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','e1b400bae7da404e8e808dfeb54bc2ce'), ('1841','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','29baf5d5e81846de97fd1dd470d55583'), ('1842','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','610a541bb14d4913bf2da6621c34e374'), ('1843','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','d9d444f2cfd5498d857d74aed0678406'), ('1844','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','4ed5a17cbf3b46d2a68d6e29a71147c9'), ('1846','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','01ef650a4abb4a1f9ff59f507ba15528'), ('1847','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','594db09a7c024245a5eead39296b3c2c'), ('1848','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','2cd5ec756edb4c189a003a1cfa4f5cb4'), ('1849','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','4e79fe4d16424ead95e1d5ea25382120'), ('1851','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','58020e927fcb4113a0339a9f2458f711'), ('1852','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e95ab4bef8354ea2bd66e421a2c63460'), ('1853','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','f724179d92fa44b4adc25a2808522fc6'), ('1854','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','0dc1b1e2370940a2974ce4e00c2aa27e'), ('1856','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','3370f88daa5947b3b23514c98202cd48'), ('1857','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','cfccdd73e3b246c9b2b4f9b242964699'), ('1858','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','719dcbc5a85e4d3e99a7906e8b9ee28d'), ('1859','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','b7c290c65f1b4af7b22627824350bb21'), ('1861','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','1695386899b54ad5b5b3e9268f323801'), ('1862','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6c9bc962ee1040c8b1c0a3b3d2353b61'), ('1863','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','90c58f1e92914a32a4189f0029a5a5fc'), ('1864','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','7b8e1c45b866470fb94ead58b60e852c'), ('1866','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','13064af8424048bca2e925c4bc050700'), ('1867','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2d92488ff5874fbb9b13065df937a315'), ('1868','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','379200cf5dd64fcf8986b18d9ecc4cd5'), ('1869','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','9bda3903ad57436e831cfabedbf8295f'), ('1871','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','9be53d92e0294bd095ee45b175187503'), ('1872','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','512de641fee14826b8c0f7c3d16e176f'), ('1873','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','a58c6530ebe04f54ad52abca0629ca3d'), ('1874','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','68f84aa153e54bc29be28a81d70f99e8'), ('1876','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','f5d0c8258423411d86e9daf1a14418b1'), ('1877','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','8099417bb7b44a5da8e0d7d05fc3c6e4'), ('1878','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','1ef7e8e42a954db4b7293a080a00bc9d'), ('1879','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','f06f354dfd2b4ca881efdece1f8ed149'), ('1881','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','f3bb0b7df1904d698e1ec9e5c6b1254d'), ('1882','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','68b35ab5b6314e7c919cbcb7a6a5983c'), ('1883','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','a3cb6c6211b745469b2e42d7f10d2fda'), ('1884','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','c16ba646be654f1ba85a9fa5955e15de'), ('1886','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','f4d14cb6ccdd44ccb5e43d449baa8d65'), ('1887','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5cdf7db912de4880950b91606659976a'), ('1888','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','3923f122da254a36b7c89cf96d85dc02'), ('1889','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','f68d99090e0c421288deee125650eba0'), ('1891','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','7af56504cad442c68f801cbfff17952b'), ('1892','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','efcb23bafcdc48f1b64090c437c18799'), ('1893','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','e4d5a4fb28804aacb284c58ce3b8cc09'), ('1894','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','468ff969bf854e30b118c517caa85d82'), ('1896','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','acbf5458996a46428574c0a90df0958b'), ('1897','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','52ae7c9217d64fc89821768bb16df21c'), ('1898','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','712ea2b949224520bcde3bc03428d21e'), ('1899','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','c8af9bb0fa0f47d1a1ee3a36d346483f'), ('1901','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','aec4c254cd944a1f8ac6bc911e6ab77c'), ('1902','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','15a4213a18ae489f8f11aa948a075e68'), ('1903','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','7924cfc798e048918fc496133557bea2'), ('1904','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','cc0355295c4545f08e2499321ac6a787'), ('1906','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','00464f2edb3f47cdbd60b0801ffeff2a'), ('1907','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2c2721344ed74562912a7c7526f84314'), ('1908','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','9a733d07f30643769872935987fbbc14'), ('1909','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','ae3d51bc351f4da7a17565928cfe6e0b'), ('1911','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','57470db47a7543ae906b1a567f31b0df'), ('1912','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6223ee7e40ed4b0ebfeb64a48d8401b9'), ('1913','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','71de1b81db87432bbd66eafdc123e767'), ('1914','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','a586c06ba9ad4299a4f26cde5c14478d'), ('1916','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','cd07ebaa31e84139be82ee2f018656ca'), ('1917','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3691a1aa1379413ea25118524890d3be'), ('1918','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','94e91ae74ed048fdaee82856f500f28b'), ('1919','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','bc108737d87842138ef5e53d50950722'), ('1921','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','5add7060d926465da9707003ba6e69e7'), ('1922','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b19bb2dd693444b8b1cfc5b3e53ef8e8'), ('1923','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','ae2d847c53c14a619217843f10c9695e'), ('1924','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','1db45fd5a6664e6e954ba08a305faaa4'), ('1926','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','355ef2168d414a4ebce1cc754e9f53e8'), ('1927','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','97b0559a53d64cd1aa0e0dfd1720c15b'), ('1928','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','228fb326e5f94c4f8df119f610be831f'), ('1929','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','33edde1a5a2946b9aef99e55e6bea4fa'), ('1931','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','22d8af79856d488a947501bb351d3431'), ('1932','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','895e92a3343f40a393cfae577148bc73'), ('1933','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','f93f28ba09be4fadac28a304b1050c00'), ('1934','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','1dae33c6c10340ffa674ad86d3eded57'), ('1936','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','50d486acb91e4c3d801caa22b74d46d3'), ('1937','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','badd6b852574497db920e2fd65c42cf6'), ('1938','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','5d51c5894f3745c58fbd83fe408b38f8'), ('1939','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','24acb886bb9343bcaf125e58419e67a9'), ('1941','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','8153f104b6d54637a07df2a38faade77'), ('1942','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e95b0db7e92b43fa8bd9c357027c4fcb'), ('1943','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','3ce597bd788841829b006adfc17034a2'), ('1944','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','2fbbbe5c78d14824a1a2234769e4e687'), ('1946','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','f44de058c1ac47a182203d3ebb97e1ad'), ('1947','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','417c7efde3d44f27894d47ac2f6ce025'), ('1948','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','f85b7f7ab6a4454ebd777f5b8cc00900'), ('1949','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','4c949d698efc46ca8b4db208fbffbf79'), ('1951','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','c23045bfa1ef442490ecc2d3c9120018'), ('1952','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5e4a66d716554e8da4f9d85f5a5ba138'), ('1953','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','17e8f43e55f74e8a9d648003153eae55'), ('1954','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','00dee725174d41488e156ed07764be15'), ('1956','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','b14c854295504c2fbbb0481bebd5db00'), ('1957','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0e692d0869b14d84a2aafd12aa424d29'), ('1958','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','a6a6dffb9d24445aaf4de5d0c5f386e0'), ('1959','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','7a77d8dfe791413ea16222e4159c7ef4'), ('1961','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','1d1ce73e95dc4ad9b20d19010e524344'), ('1962','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d1ff1951fe214755acf84088b44616cd'), ('1963','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','b3730be1499f4aa094217acb7a84148f'), ('1964','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','c03e4e6d267d4529a68fd193f9f4923d'), ('1966','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','cc63e64026b24e5ea1324ecc1049f5e9'), ('1967','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c0d3b6d20f554a9c8014d9cf9d0f9055'), ('1968','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','2a6511d5067b4377936d922609939d6c'), ('1969','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','9e157495c5ef4961beff72c4f500c2a1'), ('1971','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','b98fcdee076b497e84bb8613d2697b6e'), ('1972','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1a664f38671a469793eab15850dda3a5'), ('1973','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','35d96744ce7f47e292c09f85c114c549'), ('1974','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','a7d7e7246e46435ea688b55a66652dfd'), ('1976','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','ff17c33d5a8743f8aff8a2b2a0ab314e'), ('1977','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','72f1bbbe190e48d8a45c4b2bf13e9f19'), ('1978','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','d2c0b6dba77f4a9b99dc4e3693227514'), ('1979','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','8704623362864987b9f699a2c8fff1d0'), ('1981','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','e1da6708532c4582a7404ccce8e5f1c0'), ('1982','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1bc26beb83ed42d1a5818082ca17e1e5'), ('1983','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','c64a26d248d344d5bf8f64d7265fd7f9'), ('1984','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','443e4ca5308d4e839fce0b7fc1da4932'), ('1986','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','ee998c9684054b1299161b15b243729f'), ('1987','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','bc3bcbb9babe4f3d8a27de335ab2352e'), ('1988','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','15c1c509c03540449b26d7ae9ce99cdd'), ('1989','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','f74fdb024a054e26881e5e90804f9fee'), ('1991','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','ae1265d4feac404f874035b440c0704b'), ('1992','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ab60feb4736e4a50988b1d721e1caacf'), ('1993','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','34f9709c906243f0bc22557121a55f03'), ('1994','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','94e38f4bb3614d12917ffd17a0d544a1'), ('1996','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','7fe947fc9d9e480a8d0fa0eac5c893ba'), ('1997','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a48cfa3fb1e443448d7b2a2d5f93ac3b'), ('1998','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','9f02d5eaea4c4b7cbc3211d80841fa58'), ('1999','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','ebe8e5c8da874fdebb1f42864ca6b3e2'), ('2001','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','9334f197c1014cdcbc079895467af3dc'), ('2002','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','847089ea1c2245b198b3a176b2d27fab'), ('2003','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','3e3f290cf0054136af76e39706d521ad'), ('2004','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','6b29037c9b0143c883790da6cc9c2a28'), ('2006','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','d49245850291438f9eb06c588a2f28cd'), ('2007','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f1de2d4d636e4fafa6ec513988f3eac2'), ('2008','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','1c6cfa9ff24044cebe60949a50aae44d'), ('2009','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','a444848444fc4c06bdec32a9bf7fcf17'), ('2011','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','28b696fbb7ce4cf4941932ceb04700cb'), ('2012','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','360063285da04ed29523562086c769c4'), ('2013','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','baa457270f57426da7d271df998f8c83'), ('2014','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','8a6c7b5e3e4d4cc580e3f323fbc623b4'), ('2016','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','32c572f1f36545299c21cb9a3b46365f'), ('2017','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','00e2b89ffee645e4ac3d95a4219d63ab'), ('2018','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','eafa602b8f4a4d6883fcd65555057190'), ('2019','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','5a5125a0a5554baa842e1f41fcba86cb'), ('2021','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','9fc1b8a3fef146648e8e34ad5be8f5e3'), ('2022','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','7972b1fd0ffc46148f1a8f27bf4ac1b6'), ('2023','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','2854850c8c14498b9256fd64027455d6'), ('2024','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','ee6f5b2202f14999b71f5713fdbf15fa'), ('2026','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','2567831d8429484887c61f9606cee3aa'), ('2027','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3faa534c23d641348044d56d871307f0'), ('2028','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','15a9b60d61574e46a0684cf9ec893347'), ('2029','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','36790292e1ba4b8db9cd6f9420e8ef06'), ('2031','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','7e342bf419d54f9081e0447dbd3d40ae'), ('2032','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c2d5d609a81e41c0b16f1537239761cd'), ('2033','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','a552f5e0c0cc44cfaf344d581d522885'), ('2034','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','9d12a71550b440b4b4b9574a523b5b5b'), ('2036','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','36b36fdd03504844b5df446a542abc10'), ('2037','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e00f330b8e514a87b6d08c298b7d03f6'), ('2038','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','2bcf421df683424fa9bff018ec7135b7'), ('2039','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','00b301e0452b4c43abdba945529c667d'), ('2041','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','150c76d3d44a4025904f4b0b57ff37be'), ('2042','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','aa8108d017b74c4e81bc5bb4c659ff18'), ('2043','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','edc8dcfebff945e6b3131aa3d12e497c'), ('2044','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','a927d6e3b4f7401281acf19a4f83dae9'), ('2046','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','1646642b07fd4dcaa99e1ad91cf34b52'), ('2047','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d96cc35ffec845a0bfdc742d9c789011'), ('2048','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','afe07c8019d5460f9624577328d8c3a6'), ('2049','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','c80620de3cdf4e42820898df686e2935'), ('2051','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','37edfa6825394b30b3742eac201a3a58'), ('2052','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','709b83b504d5409091a71fc4351f06f7'), ('2053','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','b5b0436352614bf1ab0f84731dc4f627'), ('2054','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','1df82d3644a941869ea2fe632982e2aa'), ('2056','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','2c545076c11b4783b2bd951b38a58618'), ('2057','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3336863bfebf4480aeac28755c770954'), ('2058','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','277327e948d24186a0723bc0fe4debf4'), ('2059','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','e05047c0d48043218995a5342d291480'), ('2061','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','8dd00c34191d4daab61d4b9b9abe76af'), ('2062','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','70a56aeed598461e8d41997d056b83fd'), ('2063','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','a7e05919813b4ebb9fc0e4535d342807'), ('2064','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','60d570c2447d418f90d0a64842f970b0'), ('2066','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','308c726fa1ac419490b645f68bde63de'), ('2067','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3282106194e14f4e935d10a97d85a536'), ('2068','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','9d68b0bd14fb432bb730cf1c69098dd7'), ('2069','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','0840a833bec844fcbbbda3398b8f2d81'), ('2071','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','d8f0a7f28ec647eebdeb1db630e63249'), ('2072','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','955940cc271f48b89a14caebc9cd7adf'), ('2073','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','37977ee583bd41ba95521c2907457999'), ('2074','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','91052db6edb34215856dfe7479114987'), ('2076','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','29d6c58dd153437a9a62c95fdaa0d016'), ('2077','Interface {#IFNAME}({#IFALIAS}): Modem Signal. {#SNMPINDEX}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0d03f46cbb0c44b99e6369bd256a6cfb'), ('2078','Disk-{#SNMPINDEX}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','43b64db05b454192adb237afed0b7b02'), ('2079','Mikrotik: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','7416ed490d2649a19930540ed8bfff7d'), ('2080','Gateway [{#NAME}]: Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d8d9b176f439436ba6fe69ec8bc6409e'), ('2081','Link [{#NAME}]:[{#IP}]: Best loss','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d117ffc6c5f245099209ca3a471cc63f'), ('2082','Link [{#NAME}]:[{#IP}]: Bytes summary','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','951febf02caa4d4aa1417f8b8d11d89c'), ('2083','Link [{#NAME}]:[{#IP}]: Packets summary','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c656365e5c77496fac4c0a7d80d6cfd3'), ('2084','SDWAN Peer [{#NAME}]:[{#TYPE}]: {#EDGE.ID}: Path overview','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','36438b5369794ea8a9147ec7675bc1a6'), ('2085','Kubernetes API: ["{#VERB}"] Requests latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a974cb068f184b7385bf5eb2e4ba084a'), ('2086','Kubernetes API: HTTP requests rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','749ed49ec625449db0a345d639f7d8fd'), ('2087','Kubernetes Controller Manager: ["{#NAME}"] Workqueue add rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','40113b2f3fe04e9dbfd4d6dc204be7ce'), ('2088','Kubernetes Controller Manager: ["{#NAME}"] Workqueue depth','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','99bd6b4904964738a2ba7f165cc78d9c'), ('2089','Kubernetes Controller Manager: ["{#NAME}"] Workqueue latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','4f823f87056b42d29a284f8e2614b76f'), ('2090','Kubernetes Controller Manager: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','23af35d1d9af40e2ace1915ab8df7eec'), ('2091','Kubernetes Controller Manager: REST Client query rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','908af34b10044af9b028e5e024eb89b3'), ('2092','Kubernetes: [{#OP_TYPE}] Operations latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3a32d1b4253b48078279b24fdf8f3476'), ('2094','Kubernetes Scheduler: ["{#RESULT}"] E2e latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','be0cb738e2a346f8a24cabf0f76a6e6a'), ('2096','Kubernetes Scheduler: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','dd98f209541449f4a476718c46a0e721'), ('2097','Kubernetes Scheduler: REST Client query rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','fd57f67690424eb6a2e5bee610c305ad'), ('2099','Kubernetes Scheduler: Scheduling attempts rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4ee3ca9852a2440ea100e21291ac9103'), ('2102','Interface [{#IFNAME}({#IFALIAS})]: Inbound packet filter traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','4679de2da218418e9564f0cc5a13e31a'), ('2103','Interface [{#IFNAME}({#IFALIAS})]: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3acc01b7ad11441ca2ea4dab13274efa'), ('2104','Interface [{#IFNAME}({#IFALIAS})]: Outbound packet filter traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','58b7aa7618274c9e9285d4c0b63c2ca8'), ('2110','PFSense: Packet filter reason codes','900','200','0','100',NULL,'1','1','1','1','0','0','0','1','0',NULL,NULL,'0','0','cd45a63b52d7470db6b4574027433c8e'), ('2123','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','58eba6a5a57f49608fb62b9d270e98c6'), ('2124','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ecce7b4f1bf844239328705e46958c85'), ('2125','{#FSNAME}: Disk space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','9d5287bdf6cb4bbb9cada4c24b9ecd17'), ('2126','{#MEMNAME}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','1094490b59674fb58ca36cf6543b3bdb'), ('2127','Arista: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','9d75893b596e448e9fe0fb3a851b0ab2'), ('2128','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0ca148aeaadd45b6bd32e9ecde4127df'), ('2129','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','96d099e3a5c142ce8c3bc1e88cb65d5e'), ('2130','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6367b40612f94d9b9a3b2d4276268190'), ('2131','Brocade: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','569601f45b394cc68ddf75f37c086ec2'), ('2132','Brocade: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','d999400f4c7c43c7a1f0af7bbc82bd36'), ('2133','Brocade: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','e9b341d71fde4609b1e38d917042fd3b'), ('2134','Brocade: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','06183d560def4fcb8ba81469e4d53c67'), ('2135','{#SNMPVALUE}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','dd0520d162fe4230900d33472944677f'), ('2136','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','e93fccb08b3a4150b986a54eaccbd1c5'), ('2137','{#SNMPVALUE}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','9b18855195cc45a8a84550544bc6d7e7'), ('2138','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','171ff5fe2b1543aa869ab56f800b52a5'), ('2139','{#SNMPVALUE}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','9e61506351cf4f16be21dcbed8875293'), ('2140','{#SNMPVALUE}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','bf9a1faae91243b18133486b0421314b'), ('2141','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','fc6dd0ab86e7496d9b43103c13ba6a65'), ('2142','Cisco IOS: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','8c8379b8b21048d4b2ba3781a2392b69'), ('2143','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2841f46964a74c56b5d16233c924bc58'), ('2144','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','688599e428b04777be52f49a860d8ba6'), ('2145','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5742d0a3c579424e951c8b48f626fe4e'), ('2146','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','910004d1f3354f80bf57a36efc1b7156'), ('2147','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','22241d9edde64631a50cea85c11f4433'), ('2148','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','220602812c8e4507a236a945fe3ec539'), ('2149','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','79cf619c4c4947a2be6bd0d1440d3ca9'), ('2150','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2a0d7c12dc4146399cda6b80a1b75f26'), ('2151','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','148e429035204c199b146850c94dae71'), ('2152','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','bdb09ef524a34b65aaee2c574cd77bde'), ('2153','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f8bbfd7785b54c6c8d48bb23340748c9'), ('2154','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e717bd84cf5f4d02b80537b10483af81'), ('2155','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','625ca63a5c744a3896af126018dccfd1'), ('2156','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0594fca19f084adaaab11ab876ab303a'), ('2157','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a6b64d432afc465d9816a55de2cb4a79'), ('2158','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','acb45b1477594e53a0fbc1af74c0ef2d'), ('2159','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','877800605f9f473e93ca08ea1e0fa25d'), ('2160','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','244bb4d31f8240959e1496d3ed88ca95'), ('2161','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','93da4c226ca84d9ca20e4496b2e2201f'), ('2162','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','18284f037cd04993b3eb236ab3616781'), ('2163','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','84a67bfc0ec444dfaba6eef5e651c244'), ('2164','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c78f1a22b8a540e2a0d2b2f5672d4810'), ('2165','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3e3ce3b1ea2f40eb9d32244326247a16'), ('2166','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','939d3dd20774413386677ddee8eab5eb'), ('2167','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a4e49eeebc8e4129b586f92ee8a0c51e'), ('2168','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','490128f059d24904ab5e6ef0454ea3d4'), ('2169','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','748a89b01346486f8241d73272e2c669'), ('2170','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b9376c60bb114fc4b6c018d068dd6d7b'), ('2171','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','4262ac5550524146acac664b0bd65f3f'), ('2172','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5781cd59d9864144817fbe3a258d9cb6'), ('2173','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','cfa3941d81bb423bb0d282cd87ffc599'), ('2174','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','defce00a7d8e47abbf3f3126d138c6bb'), ('2175','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','35c60c8ed9ad40b3ae44021cb50649c6'), ('2176','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','8063d2bd97224c4794ac9af17a724f85'), ('2177','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b88abc1dd12d46ce86ca491699c6bddf'), ('2178','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6d1f89e29e334ce885510f21e327cec1'), ('2179','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','447b17f420a143e0ace94d75858e28fd'), ('2180','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','7b2f6006d6a64efe96366c1dfa220f1e'), ('2181','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5921d8fc6ee94d1d9d8f96ba34215c1c'), ('2182','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2db7e672a25341008a6928fca2bb0c81'), ('2183','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a99459605b774ff19684b24f62b1c5fd'), ('2184','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ff833b0eb23a4e5d9ae1eb534d7ef0f3'), ('2185','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1dde48f425814a8391c26327dab3d9e3'), ('2186','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d87bbff565484898a444d2015bcefd56'), ('2187','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','aaaa92c62d944ee9a09f600af7ec1e03'), ('2188','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','aeecc40859234efd954770c664faabc4'), ('2189','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f0e06f6423b4486f8d56c7fb7cf210d6'), ('2190','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','7352b3dabe82417b9dc31bafdd28e555'), ('2191','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','53a5526a801b4c01853a7bcfac8245be'), ('2192','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','977ce93695aa468b88f4cf33d2fdc79d'), ('2193','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','8a0efdf4dfd94a398a09d2df1037802d'), ('2194','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6f6c52b8c09140358b7c058d397903d0'), ('2195','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','20e634246d814e808e00940e9606607e'), ('2196','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d23b57867776455cb272851a73ea227f'), ('2197','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','73c5e6335b24436f82f141c0c0f4fec5'), ('2198','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','9133b7a0e09d4f248dfb8b6a0f4dabd5'), ('2199','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e5f8b95c8bbc479ebad65e967591956b'), ('2200','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','50f1876239d24cfc93478d4839fa2956'), ('2201','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0b818f0991254d05b2e7434e1a4e3f31'), ('2202','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','66f5c80600ec4220bf365e5f138948a1'), ('2203','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','29c240aec2bf440c9e69751f16c6aec8'), ('2204','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6744532b53474f93944f103e71a61612'), ('2205','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','37f70e8457bc4c8c8578bb63d9243843'), ('2206','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e68556274dda430aa646c2c299d26c6a'), ('2207','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6c0e720cb0f24bf4a8cfbebb2759dde9'), ('2208','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','7edcc1da1c1343a094028153e8f74fdb'), ('2209','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','986751c7fdb14537a5b525a0829f3b63'), ('2210','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','bd2e806179a24ca6bd4b2a8d13810061'), ('2211','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','756cecebd5e04ffc8f535fa20412734d'), ('2212','Interface {#IFNAME}: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','50ced0f22d9d478eb4b639ef64e242ab'), ('2213','{#DEVNAME}: Disk average waiting time','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5e9b35b27b90489390d397758fbfdf64'), ('2214','{#DEVNAME}: Disk read/write rates','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d436d6d5456c44f0a534bf1f681d5039'), ('2215','{#DEVNAME}: Disk utilization and queue','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c42e4045e0974e89a306c57fb188c4fa'), ('2222','Linux: CPU jumps','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4a72646168d545c398c92e09c975a966'), ('2223','Linux: CPU usage','900','200','0','100',NULL,'1','1','1','1','0','0','0','1','1',NULL,NULL,'0','0','f217c30162b24c9190785fad1ec83b73'), ('2224','Linux: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','668ae470ea33444bb40e3b83b97659c3'), ('2225','Linux: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','f260a63bc3b04c3b80b47f83bb05ed9c'), ('2226','Linux: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','bac7a8fb7e014696b54d262bf40e5b12'), ('2227','Linux: Processes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','fa49531c9c3d4087b2205bed6ed0469f'), ('2228','Linux: Swap usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','1ca6e2d883114853bd402110c3fd211e'), ('2229','Linux: System load','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','1b8cc9470a5040d79090a3e5dfcb0a76'), ('2238','Interface {#IFNAME}: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6e2814a0ef824df7b418bbd86b260181'), ('2239','{#DEVNAME}: Disk average waiting time','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','feca6a365b8d49d2a66ff4bfac089fc8'), ('2240','{#DEVNAME}: Disk read/write rates','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b136583f822a4d48a52a17f4bb0d07d9'), ('2241','{#DEVNAME}: Disk utilization and queue','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','8863772fb82b49a891ea50cbec5cdd05'), ('2243','Linux: CPU jumps','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2e4890b0db694721b1e903ecf01c612c'), ('2244','Linux: CPU usage','900','200','0','100',NULL,'1','1','1','1','0','0','0','1','1',NULL,NULL,'0','0','27b4612871004ca282f7d91057150800'), ('2245','Linux: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','3bebe4d0071441f4b95170fd0278a4dd'), ('2246','Linux: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','a4d67a1cd253431faaedf888dad90e72'), ('2247','Linux: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','4aaf22daf96b4b29ad3a2e935f4e2d4c'), ('2248','Linux: Processes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','60078a7b24494a41a3595650b113ee1d'), ('2249','Linux: Swap usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','a70c0c13381a4fb68eaeb66226ffe2bb'), ('2250','Linux: System load','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','d47109e977ec4362a3f3bb5e7708b48a'), ('2251','Linux: CPU usage{#SINGLETON}','900','200','0','100',NULL,'1','1','1','1','0','0','0','1','1',NULL,NULL,'2','0','fe9835f96dfd4912933e1c3db7943fdf'), ('2252','Linux: CPU utilization{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','22a742f192bb42a3b80e62b214eab9a8'), ('2253','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c09b8ad9356741fcb9560446b50d8cf0'), ('2254','{#DEVNAME}: Disk read/write rates','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','76f7583a5256463a82d60c0fef3c6a7f'), ('2256','Linux: CPU jumps','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ff743a3e32e7497b9b98173b3611687f'), ('2257','Linux: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','16b11e6079864c71a7d068276a8e8650'), ('2258','Linux: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','5cd95425d8fe4705833995ccfb484c66'), ('2259','Linux: Swap usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','421c99e9076c4f24931206255577c988'), ('2260','Linux: System load','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','feff7234e6cc420e94acc3c0dab0a61e'), ('2261','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5cbfad75590746718cf4eabbeeea43f3'), ('2262','{#DEVNAME}: Disk average queue length','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6d37f811023b4f65a071b1deb9b1b8ec'), ('2263','{#DEVNAME}: Disk average waiting time','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f54bdfb7e0c7471f80b8ca599bc4f904'), ('2264','{#DEVNAME}: Disk read/write rates','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','339a20ba0d3f4ba4a05aee0611124819'), ('2265','{#DEVNAME}: Disk utilization and queue','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','bc71dc24634742028a5c8384dcaa0f32'), ('2266','FS [{#FSLABEL}({#FSNAME})]: Space utilization chart','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','f80e47b8d4db4c378f25056c02b72382'), ('2267','Windows: CPU jumps','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','02ec085b49614b30a45287a7e88a8da1'), ('2268','Windows: CPU usage','900','200','0','100',NULL,'1','1','1','1','0','0','0','1','1',NULL,NULL,'0','0','0c2db401fe574282ab0beb6955049330'), ('2269','Windows: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','5de711b16f3845659289483f6deb4761'), ('2270','Windows: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','1b86c8f6fe3343e6838c5d02f4f64b2b'), ('2271','Windows: Swap usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','518f6bcdcefc4cf493244798ccd09ec1'), ('2272','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1181f5ffedb643d4953c9fd5df14a21e'), ('2273','{#DEVNAME}: Disk average queue length','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e249ca7462a14508bdbdbf748102015a'), ('2274','{#DEVNAME}: Disk average waiting time','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','790265fa66e14e97badadfce392ef8df'), ('2275','{#DEVNAME}: Disk read/write rates','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','024945537eab4facb18483b6f3ce8d3e'), ('2276','{#DEVNAME}: Disk utilization and queue','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','70de55df5604410d8a67cdca31957b03'), ('2277','FS [{#FSLABEL}({#FSNAME})]: Space utilization chart','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','8d0581d07b92406aa9f007f6d03ad24e'), ('2278','Windows: CPU jumps','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','133a9930f45b448abbf35fe3a00d10c6'), ('2279','Windows: CPU usage','900','200','0','100',NULL,'1','1','1','1','0','0','0','1','1',NULL,NULL,'0','0','2a650f6de7804835a9a02db021649fca'), ('2280','Windows: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','0865f60b2cd845aea2f2daad93c3bf83'), ('2281','Windows: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','f09c95d4637140c89a7b43165906db96'), ('2282','Windows: Swap usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','441075d89a7045c283a7da9dd74e2a1b'), ('2283','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','616105fbea704079b1257feb370367a5'), ('2284','FS [{#FSNAME}]: Space utilization chart','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','2c1a1d995f8646dd82739a56e411ccf4'), ('2285','{#MEMNAME}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','864bc9c487984f68b4da443b8af6c448'), ('2286','Windows: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','1be13ea06a404fc88ced6c6a972290c8'), ('2287','GarbageCollector: Garbage Collector {#JMXNAME} collections per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','4794916f3ad84955a5406f9c6aea2792'), ('2288','Memory pool: Memory pool {#JMXNAME}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','70552d982dfa4455ac8c5c5c847f6248'), ('2289','Kubernetes Scheduler: [{#SINGLETON}]Binding latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1c8da2cb32ae4dfaa0d16cff0cecfc43'), ('2290','Kubernetes Scheduler: [{#SINGLETON}]Scheduling algorithm duration','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','94607df22a1c49e5aa290fd50e9c2238'), ('2291','[{#LOCATION}, {#COUNTRY}]: Atmospheric pressure','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','62ba0562f77d46e0b04a387d82c1a51e'), ('2292','[{#LOCATION}, {#COUNTRY}]: Rain volume','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6196267a6d974ef2acbebdb9b33f6b71'), ('2293','[{#LOCATION}, {#COUNTRY}]: Snow volume','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','27b47b89606e43f5a4180e9dde29d7d6'), ('2294','[{#LOCATION}, {#COUNTRY}]: Temperature','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3561e247237548f3a26c702924d05894'), ('2295','Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: CPU usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','faad4c399e6047ea9fd95ffea40ce511'), ('2296','Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Disk usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2a850f53e5064ee3b4fb99aa191d411d'), ('2297','Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','54e79a1949ed40988a3901acf21bc3af'), ('2298','Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Network usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c6f2970f22294c7d8de7548a177596de'), ('2299','Proxmox: Node [{#NODE.NAME}]: CPU usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6c4fddd2a12d4e87987e47611e4a925f'), ('2300','Proxmox: Node [{#NODE.NAME}]: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0d59c329f12b494ebc8ff458a6b4714a'), ('2301','Proxmox: Node [{#NODE.NAME}]: Network usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f07213b83a964aac9f51e2857936bef2'), ('2302','Proxmox: Node [{#NODE.NAME}]: Root filesystem usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f24340ea09324dd594f84c140f2797cc'), ('2303','Proxmox: Node [{#NODE.NAME}]: Swap usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f47c4c734737403d97a630f5f10b7d84'), ('2304','Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: CPU usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','602ae1d9d65149ada7aa56cc2d7d9309'), ('2305','Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Disk usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','391421ce25c74c14abe35723965f3357'), ('2306','Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','8522e98f30104f67bfdd1aff8b94d280'), ('2308','Proxmox: Storage [{#NODE.NAME}/{#STORAGE.NAME}]: Usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','726dbf7dd13b40c8b240cb58f753a9bf'), ('2309','TrueNAS CORE: CPU usage{#SINGLETON}','900','200','0','100',NULL,'1','1','1','1','0','0','0','1','1',NULL,NULL,'2','0','ef6bd369fc964266a4324f314d5dbdc2'), ('2310','TrueNAS CORE: CPU utilization{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','11de3174f0e24212bedd1ef81429db9d'), ('2312','Dataset [{#DATASET_NAME}]: Space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','38637298316543bdb9f2c291285f8077'), ('2313','Pool [{#POOLNAME}]: Read/write rates','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','8c2ed6ea842941b3b306efe87df844be'), ('2314','Pool [{#POOLNAME}]: Space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','497e60420e314ec3a3de904042ae4756'), ('2315','TrueNAS CORE: ZFS volume [{#ZVOL_NAME}]: Space usage','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','18746b4b3cfb4d1baf06df7b05a047f9'), ('2316','TrueNAS CORE: [{#DEVNAME}]: Read/write rates','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c6e277b4a9e949df9e7bfd6adefc65b5'), ('2317','TrueNAS CORE: ARC hit ratio','900','200','0','100',NULL,'1','1','1','1','0','0','0','1','0',NULL,NULL,'0','0','621f703356cb4522bef8f1c89732c9cb'), ('2318','TrueNAS CORE: CPU jumps','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','977c98430b1241988206b56b3fc40091'), ('2319','TrueNAS CORE: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','5c95f63eaaf049cab4884b2785c5d382'), ('2320','TrueNAS CORE: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','a36f52864942457894638adef660a775'), ('2321','TrueNAS CORE: Swap usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','bd67954025d145c8a0eb2f21d53a52f5'), ('2322','TrueNAS CORE: System load','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','f7a0b78f1f814e2b94cec941168eafaa'), ('2323','DB [{#DBNAME}]: Queries','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','98f4c88e15b742fb80e1ecd8aeab970d'), ('2324','DB [{#DBNAME}]: Slow queries','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','918a6fd8bd0e49c98f759778f44ab606'), ('2325','CockroachDB: Storage [{#STORE}]: Bytes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','4cd837e243f14174a6d259b359e4f90d'), ('2326','CockroachDB: Storage [{#STORE}]: Capacity','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f5054466f5834071ad9e3bd50764ba29'), ('2327','CockroachDB: Storage [{#STORE}]: Queue processing failures','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e6763dafd3c54e0787eae612921e35f8'), ('2328','CockroachDB: Storage [{#STORE}]: Ranges','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0c4977666e5e4af1b5e1f840284fe7d0'), ('2329','CockroachDB: Storage [{#STORE}]: Replica quiescence','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','811d38ab09494628ae6ac36aa54c1795'), ('2330','CockroachDB: CPU Time','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4706e010045343cfa5a6d211ec6c0efd'), ('2331','CockroachDB: Disk: r/w, rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','5d194c6e35c64bfd88a801668bc5ac49'), ('2332','CockroachDB: Disk: r/w IOPS, rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','7808c1bcbf8b4672b5d8a7c26ec97745'), ('2333','CockroachDB: File descriptors','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','1206fc26b6c342b9a85b4a9ea4b1f8b5'), ('2334','CockroachDB: KV transactions','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','919586b301534623b16d5aadef0de5a6'), ('2335','CockroachDB: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','0bc7a266933e407c85e903cfb6b2b7c9'), ('2336','CockroachDB: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4f02255476334f79a9373c1966a1b787'), ('2337','CockroachDB: SQL: Traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','b6f9d3cda4a5451da3d90107960e91b7'), ('2338','CockroachDB: SQL statements','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','76bfd0743c63481db9793e3c55181bc9'), ('2339','CockroachDB: SQL transactions','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','53151cd0e61d487485f8d201c6881d59'), ('2340','CockroachDB: Time series','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','0c313bd2041942649c1f1c441e812388'), ('2341','Envoy Proxy: [{#CLUSTER_NAME}] HTTP requests','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a1ecd91cb0a44c39923d4b806aae4039'), ('2342','Envoy Proxy: [{#CLUSTER_NAME}] Upstream traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','46f4d9b835274a7dafdda64563f482a9'), ('2343','Envoy Proxy: [{#CLUSTER_NAME}] Downstream traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','71b114ee64d34d74a32b18e2f7d25d8c'), ('2344','Envoy Proxy: Clusters','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','9cf06c8169944ee2974499a4f2764903'), ('2345','Envoy Proxy: Clusters operations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','6453eec1ce9141b0a505d278f842ea1c'), ('2346','Envoy Proxy: Connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','0ac65256c79e4eb992afae8fdb7035c9'), ('2347','Envoy Proxy: Filesystem operations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d06a958289aa4c7a84851f5c9333e746'), ('2348','Envoy Proxy: Listener manager','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d3d8733f333942849eadabb86049b5bf'), ('2349','Envoy Proxy: Listeners operations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','90ef97d5dfd44349bc08c89acc0b7ec3'), ('2350','Envoy Proxy: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ca3646c18e79468d884af478afab7b0e'), ('2351','Consul: Catalog operations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2411147c0f4a425394a64fcd3dc231f0'), ('2352','Consul: File descriptors','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','929c2527abaf447f9909003e6a43d799'), ('2353','Consul: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','6a987c1499f145ff8b68281f4fef3424'), ('2354','Consul: Serf member operations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ba792478fe3140709a06a852560307fd'), ('2355','Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Network usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','7141231d90914090a285f35b5630deda'), ('2356','Controller [{#CONTROLLER.ID}]: Cache: Write utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','93aeac1a193e43d3a93a3892bd26b0ff'), ('2357','Controller [{#CONTROLLER.ID}]: Cache usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a7432b24cd834aa0be9dec3935641dfb'), ('2358','Controller [{#CONTROLLER.ID}]: Controller CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','fca4007d4dd1491dbceba1644b50e1b5'), ('2359','Controller [{#CONTROLLER.ID}]: Data transfer rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0b2598db582546308d092c9e7889e698'), ('2360','Controller [{#CONTROLLER.ID}]: Disk operations rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0793bb861e874a2c8e7e60a4c40bc34e'), ('2361','Disk group [{#NAME}]: Average response time','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1d5b8a7246a845678a938da75b7e32cc'), ('2362','Disk group [{#NAME}]: Data transfer rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b718bd4950f64abb892ba3bfe738ad49'), ('2363','Disk group [{#NAME}]: Disk operations rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','55d7871c891446b086860f8c861fc3f7'), ('2364','Disk group [{#NAME}]: Space utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','234be7ebf50e42f6a098662f1fffba03'), ('2365','Fan [{#DURABLE.ID}]: Speed','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','44c2c9cdec6247cf8f4d0e2bd7e0e372'), ('2366','Pool [{#NAME}]: Space utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','001c0a805d3a40bf86632b498883519d'), ('2367','Power supply [{#DURABLE.ID}]: Temperature','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','538040f8853648058e10830ddc2cba70'), ('2368','Volume [{#NAME}]: Cache usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','20d2047e3f024e5197362375601415eb'), ('2369','Volume [{#NAME}]: Data transfer rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0b11191f26464e79add18302e245a9cc'), ('2370','Volume [{#NAME}]: Disk operations rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','133ef12b0cbc49a1a37c594f5c498643'), ('2371','Volume [{#NAME}]: Space utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f8c4f07925404bc0b1e3ada45358580a'), ('2372','Controller [{#CONTROLLER.ID}]: Cache: Write utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a0bac1256ecf42fb9e980a49e52f008e'), ('2373','Controller [{#CONTROLLER.ID}]: Cache usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2b3343a641304872a82c84e1b918f8b3'), ('2374','Controller [{#CONTROLLER.ID}]: Controller CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ed2117af47d94be9bed0632a0b662a25'), ('2375','Controller [{#CONTROLLER.ID}]: Data transfer rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','27b53c540cae45da9b2e13cbbb1ab821'), ('2376','Controller [{#CONTROLLER.ID}]: Disk operations rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ce3c794ac9424be5a104b812680cc77b'), ('2377','Disk group [{#NAME}]: Average response time','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e1f7331965524670b8c44c0b0d8eb99b'), ('2378','Disk group [{#NAME}]: Data transfer rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1354b947316a46be8dc696c29f408a6b'), ('2379','Disk group [{#NAME}]: Disk operations rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f7f556011add4cd6b0fe8e4545c607a0'), ('2380','Disk group [{#NAME}]: Space utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','495a941dc4ef45e8b60d6a94bb1fbdcd'), ('2381','Fan [{#DURABLE.ID}]: Speed','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1def9fd4627d4552bf34e8ce35f3cd46'), ('2382','Pool [{#NAME}]: Space utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','93151c5760fb405498d1df049185ffe7'), ('2383','Volume [{#NAME}]: Cache usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','8905b826b774473991f74b927716322e'), ('2384','Volume [{#NAME}]: Data transfer rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1bd9df7bab9c4f3a978810c82cc61f42'), ('2385','Volume [{#NAME}]: Disk operations rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','24dfc70c5d724f13ac1cec6b229c7fe9'), ('2386','Volume [{#NAME}]: Space utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5a316cdf8c6f42acb3cb7a158861145a'), ('2387','CPG [{#NAME}]: CPG space','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c5d1e864f752465eae8822c06d635aeb'), ('2388','CPG [{#NAME}]: Number of virtual volumes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1ef5d5b0090c4f168da6f842972af688'), ('2389','CPG [{#NAME}]: Raw space','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','4c15694d488f42d6bc5b9caf4fe9e049'), ('2390','CPG [{#NAME}]: Snapshot administration space','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0ffb02e0b9144e0583489ca1d1c8d2dd'), ('2391','CPG [{#NAME}]: Snapshot data space','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d64484828dda48cbbf7dc0f8a9c2f34d'), ('2392','CPG [{#NAME}]: User data space','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','dd590898a3644130b897f57e8837cb3a'), ('2393','Volume [{#NAME}]: Administrative space','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','8c7139d2b7d94773ad6ef813c7fa59c9'), ('2394','Volume [{#NAME}]: Capacity efficiency: Ratio','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c74b88d4e61d4264b804965854eb1da1'), ('2395','Volume [{#NAME}]: Capacity efficiency: Space saved','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d2a75ebb20c94eb4ab5e6a9b13d1d439'), ('2396','Volume [{#NAME}]: Snapshot space','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','7214605009354fd382368ec8699d5474'), ('2397','Volume [{#NAME}]: User space','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0ad9f609419340168bf7f49de98e0135'), ('2398','HPE Primera: Capacity','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','79e292a64d9247c486812db7a62c0eda'), ('2399','AWS EBS: [{#VOLUME_ID}]: Volume read/write bytes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','dbf87c66b9034e1ab40f3a2d4adb1a5a'), ('2400','AWS EBS: [{#VOLUME_ID}]: Volume read/write ops','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','97faf8177efd46f2b90a7078e532f623'), ('2401','AWS EBS: [{#VOLUME_ID}]: Volume read/write time','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c27e794ff80a4335874ae9b58c8ce6b8'), ('2402','AWS EC2: Disk read/write bytes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','397c46285f674ac389c59f1c828ae179'), ('2403','AWS EC2: Disk read/write rates','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','21b7ec1e5e1445e287855e3d1a12c2bc'), ('2404','AWS EC2: Network packets','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','a1244a6a4b6641388546988257e905dc'), ('2405','AWS EC2: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','45e96dbc8dff48eeadd18c69b085863f'), ('2406','Interface [{#IFNAME}({#IFALIAS})]: Inbound packet filter traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d9c786ac274149ac9145499a85d25c35'), ('2407','Interface [{#IFNAME}({#IFALIAS})]: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ab44b919a9d94955b27bf9a4499e4bf5'), ('2408','Interface [{#IFNAME}({#IFALIAS})]: Outbound packet filter traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','21b603de7402416fb2f472e56010f5f6'), ('2409','OPNsense: Packet filter reason codes','900','200','0','100',NULL,'1','1','1','1','0','0','0','1','0',NULL,NULL,'0','0','45c34572c76f4128a3aa779a4ccda241'), ('2410','AWS RDS: [{#SINGLETON}]Operations Latency (commit/select)','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3a753d02e4b8465a9f4da698c2acd387'), ('2411','AWS RDS: [{#SINGLETON}]Operations Throughput (commit/select)','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c856d61be8594efda8f87396c6ba31f9'), ('2412','AWS RDS: [{#SINGLETON}]DML/DDL Latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','981fd77559f247908b58ffcf883ade78'), ('2413','AWS RDS: [{#SINGLETON}]DML/DDL Throughput','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','7277bbc0b7c0427697348c8a182b954f'), ('2414','AWS RDS: [{#SINGLETON}]Operations Latency (insert/delete/update)','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','13a9823d2a2444b7867859aacca47022'), ('2415','AWS RDS: [{#SINGLETON}]Operations Throughput(insert/delete/update)','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','72117fc5b5434711ab15f07f117b22bd'), ('2416','AWS RDS: Disk read/write IOPS','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','f2178fe21bc4454a9d3eee3b17ef11bc'), ('2417','AWS RDS: Disk read/write latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e0fbc3a0256c41cf99acb307921f448f'), ('2418','AWS RDS: Disk read/write throughput','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','a479a587e0c5484293e939ff56060270'), ('2419','AWS RDS: Local storage read/write IOPS','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4f76da00f7ea417d9156a8ab21b2d61f'), ('2420','AWS RDS: Local storage read/write latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','a38ee12797874a57bd30307d1ba7b589'), ('2421','AWS RDS: Local storage read/write throughput','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','f2a25a07efea46d1836188bf9cdb12d2'), ('2422','AWS RDS: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','05c0cf7b37664e06a0fd74f62761fe5e'), ('2423','Azure: Data disk read/write Bps','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','781dd83ed494465bbf2c16efbc753a51'), ('2424','Azure: Data disk read/write IOPS','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','7d198b2f6186498ab39ece80f3f7b30e'), ('2425','Azure: Disk read/write bytes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','a2d0eb282276486896067f8a30f8ea51'), ('2426','Azure: Disk read/write IOPS','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','58a8c6942314408ab0e88b15d53f67e5'), ('2427','Azure: Flows','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','b427ad3dbb8d4f8caf1edfb0cab04733'), ('2428','Azure: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','f0f37dc8840a45ba8e8cb62f5fea6804'), ('2429','Azure: OS disk read/write Bps','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','41bd1642704c4d3fbe4fb34c8c389320'), ('2430','Azure: OS disk read/write IOPS','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','df77fe1de4ae46f98744ff73ed427b3b'), ('2431','Azure: Premium data disk cache read','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3051d683b44b48ee94030465254abc7f'), ('2432','Azure: Premium OS disk cache read','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d727dc11deaa46b282892552c9b03752'), ('2433','Enclosure [{#NAME}]: Power capacity','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1f9d74b503f14765ad6a054f604f3e28'), ('2434','Storage pool [{#NAME}]: Capacity','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a248b84392c44b4bbf9594550b35b8f8'), ('2435','Storage system [{#NAME}]: Capacity','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c5c21884eb714c009dc0289f426b62e7'), ('2436','Storage volume [{#NAME}]: Capacity','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f5530d63e0704ad884731cffc3a50051'), ('2437','Azure MySQL: Connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','750ae48e6ef749c19a06f4bbe716f92f'), ('2438','Azure MySQL: Connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','360a24b56be74cf48df3135008437824'), ('2439','Azure MySQL: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','f929f47602734f82a79f22a5f4446f61'), ('2440','Azure MySQL: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','dc6840162405481ebc1c3c98fdfcaef1'), ('2441','Azure MySQL: Server log storage utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3fcf43fd338e4902874d940fc0bec8b9'), ('2442','Azure MySQL: Storage utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','bdc178e6faaa4850badc0c60c7c80d40'), ('2443','Azure MySQL: Storage utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4210e6b4ed8744589dce88217e961a56'), ('2445','Azure PostgreSQL: Connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2b60e8b1fd7c43f4ac61812e43c0e1ca'), ('2446','Azure PostgreSQL: Connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','c76cf8ec6a584af6be815ec4a9257a8c'), ('2447','Azure PostgreSQL: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','a4679d243b574bea84397c980723c68b'), ('2448','Azure PostgreSQL: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','8bc17d843775414ea971e640e1fe5ec0'), ('2449','Azure PostgreSQL: Server log storage utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','9e750a5a462b4429ac5a36a72bd60c66'), ('2450','Azure PostgreSQL: Storage utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','5fa13cfbdd784475818fae06ff94f879'), ('2451','Azure PostgreSQL: Storage utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','9ecd071a77364c4486fa5f63125cd985'), ('2452','Uplink [{#IP}]: [{#UPLINK}]: Latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','4e9d84e08b32489c8c3a2cbbd4c6119a'), ('2453','Uplink [{#IP}]: [{#UPLINK}]: Loss','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','ebf262afc6d94d29b9831d418fb07edb'), ('2454','VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: jitter','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','0794dc9d06844ee89099322f60382fc7'), ('2455','VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','dd05787b5e0e4b4b870258b25c1a0503'), ('2456','VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: loss','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','c0ff7a5798cd4aa181223763d8962229'), ('2457','Apache: Memory usage[{#APACHE.NAME}]','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d317a2ccde4f4a2ab20e983b27ae64e2'), ('2458','Nginx: Memory usage[{#NGINX.NAME}]','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','69ca908afa1d468d983a263d06910925'), ('2459','PHP-FPM: Memory usage[{#PHP_FPM.NAME}]','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','628b350f5fb6439fb4965f4e053f66d5'), ('2460','RabbitMQ: Memory usage[{#RABBITMQ.NAME}]','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','180a5d36d48f44fbaf6f86c5cf9e10f9'), ('2461','#{#SNMPINDEX}: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','477691193b1e43b595f421644926d5a7'), ('2462','{#SNMPVALUE}: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','12fcbac74d9b4874b6065c20bd6b2901'), ('2463','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','34e5de605fd54d43979c2ed35b0bdc80'), ('2464','{#SNMPVALUE}: Temperature','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','821343c6c4614842b05c85ba57e054ae'), ('2465','Service [{#SERVICE.NAME}, {#SERVICE.JOB}]: jobs statuses','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','53190fc52e094018926ca5351198aace'), ('2466','Control-M: Jobs statistics','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','afbfbcdb9b0949c7851fc809049d573f'), ('2467','Azure Microsoft SQL: Connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3b278de1b81a4be7acc865568962c323'), ('2468','Azure Microsoft SQL: Connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','62a9a5e1fb044a52a0b534bd4eeea914'), ('2469','Azure Microsoft SQL: CPU usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','fe250a5f509d45babea9fcd12accbcac'), ('2470','Azure Microsoft SQL: CPU usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','083d307db8954fc59e8e5cfccefc16c1'), ('2471','Azure Microsoft SQL: Storage utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ec5714017c744484be8c264d24a0e694'), ('2472','Azure Microsoft SQL: Storage utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','f541b6591683433aba4b3e58a8ad1e5c'), ('2473','ASM ''{#DGNAME}'': ASM disk group ''{#DGNAME}''','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f42e49e6743f4b08b5bdc3ab284b26f3'), ('2474','''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace ''{#TABLESPACE}''','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','4b20cce21abb453f9aab0dbce75ff060'), ('2475','ASM ''{#DGNAME}'': ASM disk group ''{#DGNAME}''','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','75f9f07dbae84443900aad10095e37f9'), ('2476','''{#CON_NAME}'' TBS ''{#TABLESPACE}'': Tablespace ''{#TABLESPACE}''','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a9f3bc52aa0340feb35600ad249e82d3'), ('2477','Process [{#NAME}]: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b8f5b539152445fdbadbfba92adad1bf'), ('2478','Control-M: Server state','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','349829f644cd472d8caeae0059ca8527'), ('2479','NameNode: DataNodes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','632a641116194105983cc581b1bd890d'), ('2480','NameNode: NMs','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','96ef586f2f554d028efcbb75b4c7024b'), ('2481','Node [{#NAME}] Allocatable: Pod limits','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','646efb7b19f5408dba2f3fe2d6a92213'), ('2482','Disk [{#DISK_NAME}]'': Temperature','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0334f7b454644a7cb25864a67dfbf158'), ('2483','Azure: Capacity by storage [{#NAME}]','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d569e0daf1974df58584432805f95557'), ('2484','Azure: Transactions by storage [{#NAME}]','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','9c87dfb9ed7e4c1ea32c8e35c6e23381'), ('2485','Azure MongoDB: Latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','89256a1eba8c49d2b7469a68ff050ac5'), ('2486','Azure MongoDB: Requests','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','a1225fc27d334c5bbb5043e3d468bf02'), ('2487','Azure MongoDB: Usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','07168aaf3abb42f6b61746cc6e2d2910'), ('2488','GCP Compute Engine: Quota [{#GCE.QUOTA.NAME}]: Usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','45de6eacbed84c82bfe9175fcf84e0c3'), ('2489','GCP Cloud SQL PostgreSQL: Database [{#PGSQL.DB.NAME}]: Tuples','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','8ba7dd12152243b4a5a438bd649f96c1'), ('2490','GCP Compute Engine: Disk [{#GCE.DISK.NAME}]: Read/Write bytes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','9af0456af3d74041b678ceeccbc036fc'), ('2491','GCP Compute Engine: Disk [{#GCE.DISK.NAME}]: Read/Write operations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','542185ffc8b3485f8955b63c46a50b83'), ('2492','GCP Cloud SQL MSSQL: Disk read/write operations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','1ff7d04868284c07829382c44301fe0e'), ('2493','GCP Cloud SQL MSSQL: Disk usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','0ef4b456168d4ecd87c3dc68092c673d'), ('2494','GCP Cloud SQL MSSQL: Memory Read/Writes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','09b009aa17f1410bb926043b4c7c39e4'), ('2495','GCP Cloud SQL MSSQL: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3273bee668e84b26911307ea4c1f620f'), ('2496','GCP Cloud SQL MSSQL: Memory workflow','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4d5afffa67804f4da73474d2ee26bd5d'), ('2497','GCP Cloud SQL MSSQL: Network traffic','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'0','0','558283815ab2414f8da6387724a784a3'), ('2498','GCP Cloud SQL MSSQL: Replication data','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','0bfd3e8be20c4b5a88b23f16aff4eb82'), ('2499','GCP Cloud SQL MSSQL: Transactions','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','922d35bf685b473ca9848a9b9e7e34c3'), ('2500','GCP Cloud SQL MySQL: Disk read/write operations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','935c2f388185469f82100541d9efb2c7'), ('2501','GCP Cloud SQL MySQL: Disk usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','1b0ea2b38fe740b197ecbcfdd7464b02'), ('2502','GCP Cloud SQL MySQL: Lags','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e94b7e8241b544e2beb4ea95db3e139f'), ('2503','GCP Cloud SQL MySQL: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4378be58ccff4592a1b54838b90e9ea8'), ('2504','GCP Cloud SQL MySQL: Network traffic','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'0','0','c23964e5e54541ccb3c8b7b5f5a4b24d'), ('2505','GCP Cloud SQL MySQL: pages','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e680755183ec4927893e03f8d83bc0f2'), ('2506','GCP Cloud SQL MySQL: Queries','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e447dd13336446b1a965e92d7ddeaf96'), ('2507','GCP Cloud SQL PostgreSQL: Disk read/write operations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e2e4ef0a2c1a43d68ae9f4ee881f070e'), ('2508','GCP Cloud SQL PostgreSQL: Disk usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','707d5cca2ba349f18088d00ef7657eef'), ('2509','GCP Cloud SQL PostgreSQL: Lags','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','30fe61bafae64ae6b29dacd68e9a6b3b'), ('2510','GCP Cloud SQL PostgreSQL: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','897843c1fef540c2ab033c9bad0e9de1'), ('2511','GCP Cloud SQL PostgreSQL: Network traffic','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'0','0','8a61208f44c94cf5bfcb851c4de6412a'), ('2512','GCP Cloud SQL PostgreSQL: Transaction age','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','bf09992b7f324703b3d51250e47d37f4'), ('2513','GCP Cloud SQL PostgreSQL: Transactions count','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','5c567b9d1ef14fcb93eef332fccbe198'), ('2514','GCP Cloud SQL PostgreSQL: WAL archiving','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e96be84efaf7445fbfd8cf707b585fe7'), ('2515','GCP Compute Engine: CPU usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','aa6edbd13ec74ee4b30de2c68823e6aa'), ('2516','GCP Compute Engine: Memory swapping','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','a87f4b9849e34f96b7026f4abc8499a1'), ('2517','GCP Compute Engine: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','5aef2c89a0fa41cd889d87a618cc10bd'), ('2518','GCP Compute Engine: Network traffic','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'0','0','c1c8ebb71d9542ea8b59cef775a6bd65'), ('2519','Oracle: Cache Hit Ratios','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','41d6905fa6654468b7e872973265c5b6'), ('2520','Oracle: Sort Operations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3bbd3756a40d40f4b80851eb288d7822'), ('2521','Oracle: Cache Hit Ratios','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','cf491b94c7674160ba36e2105026c834'), ('2522','Oracle: Sort Operations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','48e400ae300642d2ac1b3f3e9d47acc0'), ('2523','TiDB cluster: Stores number by states[{#SINGLETON}]','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','929dfe6f2ad74c9983ef6b11884b3abc'), ('2524','AWS Cost: [{#AWS.BILLING.SERVICE.NAME}]: Month [{#AWS.BILLING.MONTH}] Blended cost','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b267e0ae08d34a7dae730848577aea68'), ('2525','AWS Cost: Service [{#AWS.BILLING.SERVICE.NAME}]: Blended daily cost','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','71646982ab55405dbc10f200e8050c93'), ('2526','AWS Cost: [{#AWS.BILLING.MONTH}]: Monthly blended cost','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3e01a98ed70149e3a6a083bb103aa496'), ('2527','AWS ECS Cluster Service: [{#AWS.ECS.SERVICE.NAME}]: CPU Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e4034a72c2834434b5b15f96469e97ff'), ('2528','AWS ECS Cluster Service: [{#AWS.ECS.SERVICE.NAME}]: Memory Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5c5da1e0886740ed80d43597c2b6ee96'), ('2529','AWS ECS Cluster Service: [{#AWS.ECS.SERVICE.NAME}]: Network','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2057845fb9b641299c7406f1c1127710'), ('2530','AWS ECS Cluster: CPU Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e962b86d53c749b6914c3d50fb8757ff'), ('2531','AWS ECS Cluster: Memory Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','5f9d5878b5954d59bee0ca5d977f3dc7'), ('2532','AWS ECS Cluster: Network','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','503c0a606b1440f4bc02f115196ef9ad'), ('2533','AWS ECS Cluster Service: [{#AWS.ECS.SERVICE.NAME}]: CPU Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2c511d8c02bb47e6954bce0e8d35d713'), ('2534','AWS ECS Cluster Service: [{#AWS.ECS.SERVICE.NAME}]: Memory Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','962375e2a79a4b26b8c1f42f008158ae'), ('2535','AWS ECS Cluster Service: [{#AWS.ECS.SERVICE.NAME}]: Network','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0823c8464d1d4f0ba4aef10f02c24cb3'), ('2536','AWS ECS Cluster: CPU Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','22143acf16da404cbb4a770d47a16e64'), ('2537','AWS ECS Cluster: Disk Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e9bb6696b7f34beb9ba207821cb9c4e1'), ('2538','AWS ECS Cluster: Memory Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','fefa5004db6f44c4a10cbebd00a82280'), ('2539','AWS ECS Cluster: Network','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','b2e46c9ceafd495998fd98957e3f7414'), ('2540','Tenant [{#TENANT_ID}]: Total disk utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d456ccd13e38476bb43a948fd42fae1d'), ('2541','Tenant [{#TENANT_ID}]: Total hours utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','97466fabfd21468584658ffe480d7e22'), ('2542','Tenant [{#TENANT_ID}]: Total memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a6b67816bd694539b0ebb77255ab479c'), ('2543','Tenant [{#TENANT_ID}]: Total vCPUs utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b8b3899c252945138cc8e241f37d8d40'), ('2544','Nova: Instances utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','462db790ba6c451b8d2d4f4669ed11b5'), ('2545','Nova: RAM utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d65df309a6ae47f48ebf245257750e58'), ('2546','Nova: vCPUs utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','5c7434d968b64c118138e413758630c0'), ('2547','DB [{#DBNAME}]: Locks','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','7b2e7e0542174a7a996bac8014f9a664'), ('2548','DB [{#DBNAME}]: Number of bloating tables','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','70065416f33d4a3a9046576a344e965a'), ('2549','DB [{#DBNAME}]: pg_stat_database metrics','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f9162816d4f740dd8e4863c726b64105'), ('2550','DB [{#DBNAME}]: Queries','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','79b2ba5736054e8a93e70d7af063a0b9'), ('2551','DB [{#DBNAME}]: Size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','7ee8911784824e8380dd07235779a5ea'), ('2552','DB [{#DBNAME}]: Slow queries','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','88a09d63e9214cf1bf8ee82ae485f442'), ('2553','Application [{#APPLICATION_NAME}]: Replication lag','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','52b70e3a3691467d8ca7a420d2f7f3c5'), ('2554','["{#FSNAME}"]: Disk space usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','aa107bd964b34bd69610aee0918e49f7'), ('2555','Interface ["{#IFNAME}"]: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','58a8bbf3bcef4d5b944b5d46f3248e86'), ('2556','Route [{#LOCAL} => {#REMOTE}]: Route statistic','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','da406cac8d844a2182b9ae0b9ed5451a'), ('2557','SD-WAN: CPU usage','900','200','0','100',NULL,'1','1','1','1','0','0','0','1','1',NULL,NULL,'0','0','8c9d1474c4384aacb045da2c7414e63b'), ('2558','SD-WAN: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','9a99dcc198154d5189012fcbb2550c53'), ('2559','SD-WAN: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','b35de32ff8244417b59614f0e5a47b29'), ('2560','SD-WAN: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','a7a3543654d24a3eb922c81edbc45a46'), ('2561','SD-WAN: Processes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','164b95f665dc4cec8eabebdcd5417ae9'), ('2562','SD-WAN: System load','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','29d55fad7a034b00a8a67bba8ad794a7'), ('2563','Mantis BT: [{#NAME}] Issues by priority','400','400','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','ae0b82f566b9487fa8eeb78565858616'), ('2564','Mantis BT: [{#NAME}] Issues by resolution','400','400','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','09d08c384bfb4bc28f7620cc8e50ada5'), ('2565','Mantis BT: [{#NAME}] Issues by severity','400','400','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','4f53368cdfff4d6ebdd9dde250e620fe'), ('2566','Mantis BT: [{#NAME}] Issues by status','400','400','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','ef79603b8e6f4acc99e62f59e651f7c5'), ('2567','Mantis BT: [{#NAME}] Issues total','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3b03ebc9ff5544ce9011aedbdf51976a'), ('2568','HashiCorp Nomad Client: Job ["{#JOB.NAME}"] task ["{#JOB.TASK.GROUP}"] namespace ["{#JOB.NAMESPACE}"] memory utilization','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'2','0','2c82c2841f414986b26fc6890707d36d'), ('2569','HashiCorp Nomad Client: Job [{#JOB.NAME}] task ["{#JOB.TASK.GROUP}"] namespace ["{#JOB.NAMESPACE}"] CPU throttling','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','bb8bbdb0180f4b35800144deec4456bb'), ('2570','HashiCorp Nomad Client: Job [{#JOB.NAME}] task ["{#JOB.TASK.GROUP}"] namespace ["{#JOB.NAMESPACE}"] CPU utilization','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','1',NULL,NULL,'2','0','f25a5178570e44ecac6a48cb8351cdd3'), ('2571','HashiCorp Nomad Client: Disk ["{#DEV.NAME}"] usage','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'2','0','e29168187396478ebec8c80825da070d'), ('2572','HashiCorp Nomad Client: Disk ["{#DEV.NAME}"] utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3b9290be87e94bd5987eb595debe5f26'), ('2573','HashiCorp Nomad Client: CPU utilization','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'0','0','a221474b1f494f8e85edfefd3a86b2ad'), ('2574','HashiCorp Nomad Client: Memory allocation','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'0','0','b36e33cf629444d096a222d4b806f10d'), ('2575','HashiCorp Nomad Client: Memory utilization','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'0','0','a5658f2456f745ca9de427ce3bc4fc98'), ('2576','HashiCorp Nomad Server: BoltDB operations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','5028c6df64d3442f8fda2bb1fbc5f6e9'), ('2577','HashiCorp Nomad Server: BoltDB pages','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','71832cf8ab4c4607985719e19646fcc7'), ('2578','HashiCorp Nomad Server: BoltDB timers','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','cc4f2fccc25840f0ba2049554c360080'), ('2579','HashiCorp Nomad Server: Raft timers','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','fb8cbf7d131445f6ade454b7b7e2e748'), ('2580','Device [{#NAME}]:[{#ID}]: CyberFit score','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','feba1571ed4a47d5a5bbbb16153983b0'), ('2581','Acronis CPC: Alerts overview','900','200','0','100',NULL,'1','1','2','1','0','0','0','0','0',NULL,NULL,'0','0','1950de4a315f487f9382d82c2dba1778'), ('2582','Nextcloud: User "{#NEXTCLOUD.USER}": Quota','900','200','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','54e9ed6ca0e44cbb9c7d309e5bc9aa1b'), ('2583','Nextcloud: User "{#NEXTCLOUD.USER}": Quota, history','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'2','0','298d3eca259c47b28c03e25b007128fb'), ('2584','Nextcloud: Active users','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','46bd62563ab9414b868818271a8715ee'), ('2585','Nextcloud: CPU load','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','1',NULL,NULL,'0','0','7dbbcf04d99842f39292a29b1b71b3de'), ('2586','Nextcloud: Database: size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','fff2891ee9f04a9abc259a4cafd4a2a1'), ('2587','Nextcloud: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','1',NULL,NULL,'0','0','ced411f851ea4c11805d6bbdd3f20c61'), ('2588','FW Policy [{#FWNAME}]: Active sessions','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1bbf600910de437dbc88f9340ebd7afd'), ('2589','FW Policy [{#FWNAME}]: Hits into the policy','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','28abccb8b1c94ca787e38a773c0e282c'), ('2590','FW Policy [{#FWNAME}]: Policy processing','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b449d42f646b4318a862fa786387d783'), ('2591','Interface [{#IFNAME}({#IFALIAS})]: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5d5b2b5c35a7433999f29f4f22a6d380'), ('2592','SD-WAN [{#NAME}]:[{#IFNAME}]: Packets statistics','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','8e0ad9c4444b418fb0a632e4126470be'), ('2593','SD-WAN [{#NAME}]:[{#IFNAME}]: Performance','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','11741f72e04a4c57a1183baee74ea396'), ('2594','SD-WAN [{#ZONE}]:[{#NAME}]: Bandwidth','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6de8957f4392467bb61f4b970a8073b2'), ('2595','SD-WAN [{#ZONE}]:[{#NAME}]: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','25f114f8837b4b4f811725e035affb80'), ('2596','FortiGate: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','e7cf2dc608fb463594298f1c710ba435'), ('2597','FortiGate: Disk usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','1f88c77c5e7f4886af17fa7f3fea69b9'), ('2598','FortiGate: Disk utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','d2419e09ca7a46388a3b7876e1eea09f'), ('2599','FortiGate: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','25a31e8022864e8e95cb6587f3eefdb3'), ('2600','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ab9438c6f148404e8853f1e8046147e6'), ('2601','FortiGate: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','10704dd2fbe3420884903ec095f80f57'), ('2602','FortiGate: Disk usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','1adeceeb1cd345aa88bb69e66b34557a'), ('2603','FortiGate: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','50e99d0db49c4d88b2aff88e63834b6d'), ('2604','FortiGate: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','a444a1d380e542d2b0390fd94af5eb9a'), ('2605','Meraki: license [{#LICENSE.ID}] date','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','302613b208c24c8191d4fccb2d941cbb'), ('2606','HPE iLO: Computer system [{#SYSTEM_HOSTNAME}]: Resources usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','04f4386139054afea962586af56afd46'), ('2607','HPE iLO: Chassis [{#CHASSIS_ID}]: Fan [{#FAN_NAME}]: Speed, in %','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','f38e4d46dbe647c0a1cafb4f034d6fa2'), ('2608','HPE iLO: Chassis [{#CHASSIS_ID}]: PSU [{#PSU_ID}]: Last power output','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','34dea1e5a61b48fd9fe98af7752bf8b4'), ('2609','HPE iLO: Chassis [{#CHASSIS_ID}]: PSU [{#PSU_ID}]: Line input voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','4325a96130604ad3a03165f7573f2980'), ('2610','HPE iLO: Chassis [{#CHASSIS_ID}]: Sensor [{#SENSOR_NAME}]: Temperature','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','4e9fadd38f52413a8c5d24b53971d5be'), ('2611','Azure: Storage account [{#NAME}] egress','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6bae0cf983104e0fada61468902949e1'), ('2612','Azure: Storage account [{#NAME}] ingress','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','8860c37426104045a7f9feb6cc370db4'), ('2613','Daily Cost: "{#AZURE.SERVICE.NAME}","{#AZURE.BILLING.METER}","{#AZURE.BILLING.METER.SUBCATEGORY}","{#AZURE.RESOURCE.GROUP}"','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2a1e03e65b1c40cba783493871e245d5'), ('2614','Azure Cost: Month ["{#AZURE.BILLING.MONTH}"] cost','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','347342d3d0cc478bab33036872570cdb'), ('2615','Azure Cost: ["{#AZURE.RESOURCE.LOCATION}"]: Month ["{#AZURE.BILLING.MONTH}"] cost','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e3df27afabb147d3ae07e1a2fa36e89a'), ('2616','Azure Cost: ["{#AZURE.RESOURCE.GROUP}"]: Month ["{#AZURE.BILLING.MONTH}"] cost','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','fab17244d2c648e089c57c99615af537'), ('2617','Azure Cost: ["{#AZURE.SERVICE.NAME}"]: Month ["{#AZURE.BILLING.MONTH}"] cost','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','31f1e30f99ed426d81b48411cc7ffd7f'), ('2618','Azure: Percentage CPU','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','39ca70fc12cf4c6d9fdc23e8562b2f13'), ('2619','Mirroring ''{#DBNAME}'': States','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','9bf9203bd4b449b39e288fbb79f9d627'), ('2620','AWS ELB ALB Target Groups: [{#AWS.ELB.TARGET.GROUP.NAME}]: Healthy Host','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f426eff334d449ff9ec0a2ff8f6ee103'), ('2621','AWS ELB ALB Target Groups: [{#AWS.ELB.TARGET.GROUP.NAME}]: Healthy State DNS','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f6f8d317322a420ab4e0025b3b284a98'), ('2622','AWS ELB ALB Target Groups: [{#AWS.ELB.TARGET.GROUP.NAME}]: Healthy State Routing','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','40922ff1845141c7a2488fe24debeae0'), ('2623','AWS ELB ALB Target Groups: [{#AWS.ELB.TARGET.GROUP.NAME}]: Unhealthy Host','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a2668f5bf6a240a296b047c1b979f9dc'), ('2624','AWS ELB ALB Target Groups: [{#AWS.ELB.TARGET.GROUP.NAME}]: Unhealthy State DNS','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','54645b74585c4b45a971c13d1127698d'), ('2625','AWS ELB ALB Target Groups: [{#AWS.ELB.TARGET.GROUP.NAME}]: Unhealthy State Routing','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','8da12e20218e4367968b8fcf0f56991a'), ('2626','AWS ELB ALB Target Groups: [{#AWS.ELB.TARGET.GROUP.NAME}]: HTTP Code Target Group','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ec38c670cabf422ea79f41866c90ee66'), ('2627','AWS ELB ALB: Connection Count','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','b19f7d65ad1d469d8396b03111d38e52'), ('2628','AWS ELB ALB: Consumed LCUs and Processed Bytes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','fb034590cbc34b0aa297b77c1f320684'), ('2629','AWS ELB ALB: HTTP Code','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','a711d08edbd04abe890ab2b8cdf6d41b'), ('2630','AWS ELB ALB: Requests Count and Response Time','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4ee7ac4174b74f869e04dab5d76219ab'), ('2631','DB ''{#DBNAME}'': Log size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','8175463b48da43b596b0fd733dfa1b2e'), ('2632','DB ''{#DBNAME}'': Number of Log changes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','768ec0884405473fb269f8b465b214e6'), ('2633','DB ''{#DBNAME}'': Size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d60af32a941e41ed9d0a65f996df89e4'), ('2634','Mirroring ''{#DBNAME}'': States','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','37c8f69765e3456bbfdfbe096c78e910'), ('2635','MSSQL: Access methods','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','7d06995b2daf4496a3f4856e5c562e59'), ('2636','MSSQL: Auto-params','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','c1df070c49994a9fb3b15a3f9f15cf59'), ('2637','MSSQL: Cache objects','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','15b49ae51375483182c927a06c7e094a'), ('2638','MSSQL: Compilations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','b3422c184eb7476e97e5b0f09bb70160'), ('2639','MSSQL: Database pages','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ecc056aa9b4d4da3b41f6ad7ec8d600c'), ('2640','MSSQL: Errors','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','b1decdef518c43c3bc8813b028e04025'), ('2641','MSSQL: Locks','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','6dff1806a75343a6a81a94c5fee6a632'), ('2642','MSSQL: Logins per second and Logouts per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ef6f803fbb744e8faa04673b5e3f5b38'), ('2643','MSSQL: Memory/cache load','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','b68986ff810f4336ad907d550f973b56'), ('2644','MSSQL: Memory grants outstanding and pending','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','335d81ea81384d1e85de7527598ce3f6'), ('2645','MSSQL: Page life expectancy','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','157c122b6d474441b4f95b91beee5730'), ('2646','MSSQL: Pages','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','fff870597f4649d2a72941fb972d201c'), ('2647','MSSQL: Processes blocked','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3297eadad79f4f7d8597f0eccb0af926'), ('2648','MSSQL: Server memory','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','418dc893929c4f62beb361dcaaa6c56a'), ('2649','MSSQL: Transactions','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','31467ce0afe24b2fa1a547f28eebc24a'), ('2650','MSSQL: Waits per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e35b61f7a547477cba31c9949be61f5e'), ('2651','MSSQL: Wait times','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ae485dce95974187a046b9743f32f629'), ('2652','YugabyteDB Keyspace [{#KEYSPACE.NAME}]: Keyspace size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','193792ab844947e88ca58c20292d6666'), ('2653','YugabyteDB Node [{#NODE.NAME}]: Node disk IOPS number','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d8c91639bca24d709bcdd8d788ba940c'), ('2654','YugabyteDB Node [{#NODE.NAME}]: SST size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e8020fae71e54c98bc3c5ed9b585fead'), ('2655','YugabyteDB Cluster: Average latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2b52c11e2a8e4281b76aed17facd5666'), ('2656','YugabyteDB Cluster: Connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','719c31e55e1d41cfa7e3735ea6250593'), ('2657','YugabyteDB Cluster: Connections utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','f7fb23fb03b149cd908bf040dda9ff6c'), ('2658','YugabyteDB Cluster: CPU usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','67ada72929dd445c96687b1782ff773e'), ('2659','YugabyteDB Cluster: Disc space usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','effb3cb75dc14d62b9a704c7358bd1f3'), ('2660','YugabyteDB Cluster: Disc space utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','3c13b0a318dd4a609cc67a10124274dc'), ('2661','YugabyteDB Cluster: Disk operations number','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','f0983e69bb504ff6afe07d09bf5cb5a2'), ('2662','YugabyteDB Cluster: Disk usage rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2ed45b6d26874d30abc14ba798b73cb1'), ('2663','YugabyteDB Cluster: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','fb9ea2cc4af642f19ce384764838fce7'), ('2664','YugabyteDB Cluster: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','5fb91db735074557abd584a5cac434d3'), ('2665','YugabyteDB Cluster: Network error','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','c845efa993de438899899f722f02cb11'), ('2666','YugabyteDB Cluster: Network rate','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','50d707e6f8584688a52049df58ad39d4'), ('2667','YugabyteDB Cluster: YCQL latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d69b497ed5204b07994128984c776102'), ('2668','YugabyteDB Cluster: YCQL operations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2c8bdf3c24ec47d481fdcac99be6a450'), ('2669','YugabyteDB Cluster: YSQL latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','17ac5a90c1b14300898fd23429e3dd11'), ('2670','YugabyteDB Cluster: YSQL operations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','aadd49cf14f84aacaf34b3d7963be2b3'), ('2671','CPU Core {#CPU.ID}: CPU usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','a28d9820ad3747bebbb4d15ff0b7ce6b'), ('2672','FAN {#SNMPINDEX}: Fan speed','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','7a2b8b229cc64130980db46dddd990d7'), ('2673','Check Point Firewall: Concurrent connections{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','06c3a0000af94b88bce5d7fe0dbca184'), ('2674','Check Point Firewall: Processed packets{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','7eb0b600fc7b41e9806f1032bbdc2508'), ('2675','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','eba9534785bf494fade918edcbafee2d'), ('2676','{#SENSOR.NAME}: Temperature','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','147ecfdde31a4ab88d6fb53a67477dea'), ('2677','{#DISK.NAME}: Disk usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','589eef3a19144fb68b32a018d83b3839'), ('2678','{#SENSOR.NAME}: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d95b5de9111a42a8a52f4876ea888beb'), ('2679','Check Point: CPU jumps','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','7d3fdc1e26eb4748989a6d0c2eb09d61'), ('2680','Check Point: CPU usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','d3d422bf223645e5bab85a8c88651160'), ('2681','Check Point: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','51d21d313a3d4f2bad3ef221affe141c'), ('2682','Check Point: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','0fe8af91daf1483d84650141a28d9748'), ('2683','Check Point: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','d5c5d886667e4bf8b22c526fe6f40f9e'), ('2684','Check Point: System load','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','f8957207dcd04c78a1a040d720634881'), ('2685','Check Point: VPN packets processed','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','349bd025bfde428d977739556e527698'), ('2686','VNIC [{#NAME}]: Network bytes in','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','7a02ebf104a24f3ebd1631003dc7365c'), ('2687','VNIC [{#NAME}]: Network bytes out','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','50306b25bef24d95acd2d9ae9e0c1f6f'), ('2688','VNIC [{#NAME}]: Network packets dropped by connection tracking table','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','4f3c1eabc2be43b68c4a76a6bed17761'), ('2689','VNIC [{#NAME}]: Network packets dropped by security list','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3d9f549442ac455eb0e5296594eac004'), ('2690','VNIC [{#NAME}]: Network packets in','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2c4626b63df0468caef94e405e499aaa'), ('2691','VNIC [{#NAME}]: Network packets out','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','4fe14e23a0414b8787749aababc35ceb'), ('2692','VNIC [{#NAME}]: Smartnic buffer drops','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','fdaad88126dd486b948348e993217c8f'), ('2693','OCI Autonomous DB: Connection latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','97956d8f4b084cf38c8e46c842e806f5'), ('2694','OCI Autonomous DB: CPU time','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','adcd338dbf2746c980929932575ed953'), ('2695','OCI Autonomous DB: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','1324dac0566447fa9ae3808fb79a65e1'), ('2696','OCI Autonomous DB: DB time','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','14ffe3b6eb084fdeac6cbdefdb356a3b'), ('2697','OCI Autonomous DB: Execute count','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','464902ef122a438bba519071f29df0c8'), ('2698','OCI Autonomous DB: Parse count failures','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','a23cf1625b5d4f6c848a6f7236dbeb6b'), ('2699','OCI Autonomous DB: Parse count hard','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e13b6b26310d4954a2df15244a7b2de9'), ('2700','OCI Autonomous DB: Parse count total','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','75997227333c46de87199c0247d5bdb5'), ('2701','OCI Autonomous DB: Physical read/write total bytes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e160cc5a9e22404a91e2bdcc33e22108'), ('2702','OCI Autonomous DB: Physical reads/writes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2def3ab2a81a4b6abfb2b209f134c1af'), ('2703','OCI Autonomous DB: Query latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','fd5d001fb93a409db9ebfdc66d0a8861'), ('2704','OCI Autonomous DB: Session logical reads','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','71a7e76a9bc34cc58abd77ef76d9ed4a'), ('2705','OCI Autonomous DB: Session stats','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','c03100979bbf485dbd5c36900ec73469'), ('2706','OCI Autonomous DB: SQL*Net client bytes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e8f1cdda63e44ca9a5b73bbd8c55ffa0'), ('2707','OCI Autonomous DB: SQL*Net DBLink bytes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','c485b41073d341a98e5aa239fc7afd21'), ('2708','OCI Autonomous DB: Statements','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','8adb6f1a0b3242be8142fc62370db900'), ('2709','OCI Autonomous DB: Storage stats','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2579982f4501490283fe2cbcf90330f0'), ('2710','OCI Autonomous DB: Storage utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d96a821b6e6e4557a40e87246d2ffdfe'), ('2711','OCI Autonomous DB: User calls','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3040bdaf0f8c49a68b80dbe60f8f9c9a'), ('2712','OCI Autonomous DB: User commits','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2620ae19fd7243d2ac37daabf9dbce46'), ('2713','OCI Autonomous DB: User rollbacks','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','1e5d6a326c7e45cb83f7689c9a4bfce1'), ('2714','OCI Autonomous DB: Wait time','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3d55d19a57b34764a5f5cdc364204849'), ('2715','OCI Block Volume: Operations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','68f6c72e67f947b29f879b89a205d59c'), ('2716','OCI Block Volume: Throughput','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','16076dfa25244b5093e8985ca2e3f18c'), ('2717','OCI Block Volume: VPUs/GB','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','6078da9c1eb249548536663e57e7743c'), ('2718','OCI Boot Volume: Operations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','265e1b5e20084bfb9ab272996915b45d'), ('2719','OCI Boot Volume: Throughput','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','7e8aa92414d5431f80fdb1d1981d25f9'), ('2720','OCI Boot Volume: VPUs/GB','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','fdfb060d0823480abe77581503f82a96'), ('2721','OCI Compute: Cpu utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','70f0b43207cd4e28bf93e0b41ad45a10'), ('2722','OCI Compute: Disk bytes read','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','944bf71570b549ce8682d3f1beea5c57'), ('2723','OCI Compute: Disk bytes read I/O','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','39ece65d2b2b402abee59432cc3a3cea'), ('2724','OCI Compute: Disk bytes write I/O','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','f073ce71549946509fe9f021b3c2d2e9'), ('2725','OCI Compute: Disk bytes written','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','784735022c1e40fc9cf7d065e95124f3'), ('2726','OCI Compute: Memory allocation stalls','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','9f4a1426c49f47bfade03875a6af0a60'), ('2727','OCI Compute: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','db9ad56d9e334de0a3ba7f6c3862fb76'), ('2728','OCI Compute: Network bytes in','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','609ba54782934bb8b60696588bf57038'), ('2729','OCI Compute: Network bytes out','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','807729ba0afb4710a33307286d5c027a'), ('2730','OCI Object Storage: Bucket size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','fa3fab6874614a3cbea45dee87660253'), ('2731','OCI Object Storage: Client-side error count','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2c32d269e0274b26a40b0b5069abda7c'), ('2732','OCI Object Storage: First byte latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','445af3dbf17e4046b5350fd1b4b3734b'), ('2733','OCI Object Storage: Incomplete multipart upload size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','15fb3f080d6244a48d1a7c98f69a2793'), ('2734','OCI Object Storage: Overall latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','0f71c9aa038d437fa28312c58d417ad1'), ('2735','OCI Object Storage: Requests','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','49c9abb27e194d1788ee1c62688ff57b'), ('2736','CPU Core {#CPU.ID}: Average usage per core','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','e504c1a69c4d4fd781ab3083c801f04b'), ('2737','HA {#HA.ID}: Bytes processed','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0ffb9affa29643f1b7a098e9c77ac412'), ('2738','HA {#HA.ID}: CPU usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c0b2565a140547dc94065bebceea2cd4'), ('2739','HA {#HA.ID}: HA events','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','10a28c1634e24df2bcb2f0c6187a1459'), ('2740','HA {#HA.ID}: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','206b306fff5f49838f52584038299df9'), ('2741','HA {#HA.ID}: Network bandwidth usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3ec1552b04014d848419d66fd17e2fe4'), ('2742','HA {#HA.ID}: Packets processed','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b076c55d490b48e3a98491f3132f49ac'), ('2743','SD-WAN [{#HNAME}]:[{#IFNAME}]: Packets statistics','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d4bfff72a3684c84becf9d58760c26ad'), ('2744','SD-WAN [{#HNAME}]:[{#IFNAME}]: Performance','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','12048d7400ba4246bcc20ba85825f6d2'), ('2745','SoC3 {#CPU.ID}: Packets flow','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','fcef7d91b3d94d4ebd12cfe1eb3d077e'), ('2746','WTP {#WC.NAME}: Clients','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','cabd8db04db74f05b431378b4f0fb68f'), ('2747','WTP {#WC.NAME}: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','0b76d54781b94d78a9c5b19912bbb94e'), ('2748','WTP {#WC.NAME}: Performance','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','b6d8cd72b1e34b719b4deca047afeac9'), ('2749','FortiGate: IPS statistics','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','37a96e0d20fe4084901087278327a24b'), ('2750','AWS ELB NLB Target Groups: [{#AWS.ELB.TARGET.GROUP.NAME}]: Healthy Host','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c83f16408b0e42b1b985fa02e00d49da'), ('2751','AWS ELB NLB Target Groups: [{#AWS.ELB.TARGET.GROUP.NAME}]: Unhealthy Host','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2ddcf506cb344d58a8b2b555c0b90952'), ('2752','AWS ELB NLB: Concurrent Flows Count','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','07118e148b0744ec98750733d1b5284c'), ('2753','AWS ELB NLB: Concurrent Flows Count TCP','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','a13750d46d834d65a881396ecedaa813'), ('2754','AWS ELB NLB: Concurrent Flows Count TLS','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3b4ccb4dc50b4bf49ef45b517a65e6e8'), ('2755','AWS ELB NLB: Concurrent Flows Count UDP','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','670bad5c2264431cb60b3a0b9c5cf111'), ('2756','AWS ELB NLB: Consumed LCUs and Processed Bytes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','c16c89c1a5da4aafbd8151f982cade2d'), ('2757','AWS ELB NLB: Consumed LCUs TCP and Processed Bytes TCP','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','c5718fb3ddfd4642ba2dbd914a1fe6ac'), ('2758','AWS ELB NLB: Consumed LCUs TLS and Processed Bytes TLS','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','7b5d11acc0dc4d19b4d0a797570400e7'), ('2759','AWS ELB NLB: Consumed LCUs UDP and Processed Bytes UDP','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','355fb45cbaef4dfb9050ca84fbfba83b'), ('2760','AWS ELB NLB: New Flow Count','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e2023c7d365b45629ccf61f853229bcb'), ('2761','AWS ELB NLB: Peak Packets per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','457264f4a11a4a4dbac3314875b04ac0'), ('2762','AWS ELB NLB: Security Group Blocked Flow Count ICMP','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','7db2aa4f6f454b06ba3c9e01259a1a24'), ('2763','AWS ELB NLB: Security Group Blocked Flow Count TCP','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','bf724b8819804cb385f6448f2f6133ac'), ('2764','AWS ELB NLB: Security Group Blocked Flow Count UDP','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3162f3656a154c9280bda0539c6e102c'), ('2765','AWS ELB NLB: TCP Reset Count','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','561b3f02b2964c5d8dce2b2b6d2556d4'), ('2766','AWS ELB NLB: TLS Negotiation Error Count','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','87c58ec6a1ee4c9abde81e10af999d79'), ('2767','FS [{#FSTYPE}({#FSNAME})]: Space usage graph, in % (relative to max available)','600','340','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','6649ab6a9568418493be79dfb63b07b4'), ('2768','FS [{#FSTYPE}({#FSNAME})]: Space utilization chart (relative to total)','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','cfd16b36331145a881249d88e105c731'), ('2769','FS [{#FSTYPE}({#FSNAME})]: Space usage graph, in % (relative to max available)','600','340','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','6c07aee93f0f4da696112b276ef7ca65'), ('2770','FS [{#FSTYPE}({#FSNAME})]: Space utilization chart (relative to total)','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','7db8f820b1f74bae9bd1a7dbe08c2ef5'), ('2771','FS [{#FSTYPE}({#FSNAME})]: Space usage graph, in % (relative to max available)','600','340','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','b2339666d71349a1a3eb320245edebb7'), ('2772','FS [{#FSTYPE}({#FSNAME})]: Space utilization chart (relative to total)','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','79e18c9b083b4381b9f436b6494b9e4b'), ('2773','FS [{#FSTYPE}({#FSNAME})]: Space usage graph, in % (relative to max available)','600','340','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','c2a31e9370b342b1942cc5308fd63a2c'), ('2774','FS [{#FSTYPE}({#FSNAME})]: Space utilization chart (relative to total)','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','bb209e7862ad4f8f8f7efcd003146e97'), ('2777','FS [{#FSTYPE}({#FSNAME})]: Space usage graph, in % (relative to max available)','600','340','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','7af98afdf5ad43c9b77dddbe4e68b84f'), ('2778','FS [{#FSTYPE}({#FSNAME})]: Space utilization chart (relative to total)','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','1c4fcab8d16440529fb3f2347cd04f51'), ('2779','FS [{#FSTYPE}({#FSNAME})]: Space usage graph, in % (relative to max available)','600','340','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','4c6237d835a34d458de8cf2c108d1290'), ('2780','FS [{#FSTYPE}({#FSNAME})]: Space utilization chart (relative to total)','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','1febfc95ae1945b3a620cc49264d0eae'), ('2781','FS [{#FSNAME}]: Space usage graph, in % (relative to max available)','600','340','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','528473595e39475ebb9b2150447f3280'), ('2782','FS [{#FSNAME}]: Space utilization chart (relative to total)','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','e5e83dc2bb384b2a96fae9cdbf0baba7'), ('2783','FS [{#FSTYPE}({#FSNAME})]: Space usage graph, in % (relative to max available)','600','340','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','b0cd424a8eac438ba76df6052a2bdab6'), ('2784','FS [{#FSTYPE}({#FSNAME})]: Space utilization chart (relative to total)','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','110b798942874e9d817d6028b1ea2101'), ('2785','FS [{#FSTYPE}({#FSNAME})]: Space usage graph, in % (relative to max available)','600','340','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','5ea3f4e5af7a468fa4b7ba5dc6a9144d'), ('2786','FS [{#FSTYPE}({#FSNAME})]: Space utilization chart (relative to total)','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','8b5ab39870b248b28e7099a2801b9c2d'), ('2787','FS [{#FSTYPE}({#FSNAME})]: Space usage graph, in % (relative to max available)','600','340','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','e6dd13c45cac48db8aead11e9af0cd9d'), ('2788','FS [{#FSTYPE}({#FSNAME})]: Space utilization chart (relative to total)','600','340','0','100',NULL,'1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0','38a43d8fa8fb40f2aa59dd6a8f069f90'), ('2789','FS [{#FSLABEL}({#FSNAME})]: Space usage graph, in %','600','340','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','b948d7a79a974b2b9f5d32c4a19d7410'), ('2790','FS [{#FSLABEL}({#FSNAME})]: Space usage graph, in %','600','340','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','478c7beb397a48318994fc96acc2c4da'), ('2791','FS [{#FSNAME}]: Space usage graph, in %','600','340','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','323304e5268b4430984706d38ac77a96'), ('2792','Performance Navigation Timing','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','c373d777570a42fda3cea03d24bed67f'), ('2793','Performance Resource Timing','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3301237b56ea455b8e1344bb467d11b0'), ('2794','Storage [{#JMXCATEGORY01}]: Latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5f5f61fe9bc848be87789a8ac6e2fbb2'), ('2795','Mail [{#JMXCATEGORY01},{#JMXNAME}]: State and failures','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f51ddde64f414715bb5074f96cee8768'), ('2796','License [{#LICENSE.TYPE}]: Users','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','c79af894d8b944f6bbedf86dfe1a5e84'), ('2797','CPU Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','36ff6447ea4f403eb0f13dc6322c99ea'), ('2798','Data disk IOPS read/write','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','66b7d2f063064a1b8912e2b2e57d2d40'), ('2799','Data disk read/write Bps','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','9bbdd448793e41b6b8aef38c7cad41c6'), ('2800','Disk IOPS read/write','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2d0a30934cf7444f89fe031178599abc'), ('2801','Disk read/write bytes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','7b724a3805d84dbb99fcbf5c2fd633b4'), ('2802','Flows','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e4d6ccffbf274347a3fdade920467ae2'), ('2803','Network traffic, bytes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','9109c16ec3b540118aff0e458fb00580'), ('2804','OS disk IOPS read/write','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','079e812dd9af48cda80993ad9b3a59d0'), ('2805','OS disk read/write Bps','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','de643aefc3b340e3a4cd81216a78709d'), ('2806','Premium data disk cache read','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','dd3b9363272949d8a1fef02f6c14229d'), ('2807','Premium OS disk cache read','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','8a432a338a9540b4888f9f019164acdb'), ('2808','Virtual machine count','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','8d04afa2c9d2459e926a9c20af37e4f8'), ('2809','AWS Lambda: Async dropped events','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','af2dcb92a19a47c2a6f8d1ea78794553'), ('2810','AWS Lambda: Async event age','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','c6d59fa52671477db6865874acedec1b'), ('2811','AWS Lambda: Asynchronous events','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2b98a8ff2c584419b962ed0cb3fe8809'), ('2812','AWS Lambda: Concurrent executions','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','8eb1c4bbb3974048a76e4c84bdfa25a5'), ('2813','AWS Lambda: Duration','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','7e1dad2ad49d4c0487e4e724594331fa'), ('2814','AWS Lambda: Errors','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','07288fd5c2ff4806a6749e114d0cf93d'), ('2815','AWS Lambda: Invocations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','cc854ebac57143629b49f1fae3598d8b'), ('2816','AWS Lambda: Throttles','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','c16f61d853474a0f9a251327873ef62e'), ('2817','AWS Lambda: Unreserved concurrent executions','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d01c132670fb4347b591ddb96900fa99'), ('2818','Branch [{#BRANCH_NAME}]: Number of commits','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','369c8e6bf49b4b348258d77126386769'), ('2819','Health percentage score{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','d3234c15dc844899ae1bdd473229279f'), ('2820','Number of issues','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','774218efca844a978b61077f0e253ddf'), ('2821','Number of PRs','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','a6de9d61e5f74a5f97946792c7c101fe'), ('2822','Number of releases and tags','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','794cb86105c14f1aab297634292d8b67'), ('2823','Requests limit usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','94173b91d3bf40a6a9188f0efecaabdd'), ('2824','Requests limit utilization, in %','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','7e33e0dd5faa45418defd8e5e7f07e49'), ('2825','Apps: Office, user count','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','31bda44b06aa4776b9827c07c084be32'), ('2826','Apps: Platform, user count','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','0d20b6626d4e4a99ac7822d2d5bbb0fa'), ('2827','Apps: Users, by app','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ce9d576ef0c04c6a80a00b4095b2ed44'), ('2828','OneDrive: Business sites, active/total','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d7ba1bdfe6534c27a0d01cf9a84c7eb6'), ('2829','OneDrive: File count, active/total','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','88b75a01c7b541eca8480d821508e9db'), ('2830','OneDrive: Files, activity','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4d7df5535bf24a3bbe69b823be31bbcf'), ('2831','OneDrive: Users, activity','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','6975a23a719f40f2928468331f004617'), ('2832','Outlook: Activity, emails sent/receive/read','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','167557c1299e42d4bf514544ca248bab'), ('2833','Outlook: Activity, meetings created/interacted','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','62ecec3ead3b4fbda519e34cd2f7e59f'), ('2834','Outlook: Mailbox, active/total','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','410245360e6b4b8abc5578a9fea9aed9'), ('2835','Outlook: User count, app usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e5495197b747402f840a0a36fc2d3822'), ('2836','Outlook: User count, emails sent/receive/read','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','1820edb683844f5ba7aab911314f9148'), ('2837','Outlook: User count, meetings created/interacted','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2bc072171a974632ac16f17c55a6e6db'), ('2838','SharePoint: File count, active/total','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','368ccbec6efc4be0acafc376bed02c86'), ('2839','SharePoint: Files, activity','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','8b74bc9ef37f4126b5c2e570c674c101'), ('2840','SharePoint: Sites, active/total','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d56dec11b20d40adb288f54799d52626'), ('2841','SharePoint: Users, activity','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e904e8075548406c8eea9a5576817ef1'), ('2842','Teams: Device usage (guests), by device type','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2c9b134db13844f59054cc81b2135edc'), ('2843','Teams: Device usage (total), by device type','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e2c59d05b05c4a32aa027cfb6d2c2f67'), ('2844','Teams: Device usage (users), by device type','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','072347b5896d477ea875520211e7d71b'), ('2845','Teams: User activity, audio/video/screen share duration','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','7535ecb32e0147d686562ba988d3c655'), ('2846','Teams: User count (total), by activity','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','fcb3abcbd08b48db85b065ebf90ae9b8'), ('2847','Controller [{#ID}]: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','edfad14e047a49769c363c76f176e295'), ('2848','LUN [{#NAME}]: LUN I/O','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e6e60a64dc2540ab963a910ed4de7a51'), ('2849','LUN [{#NAME}]: LUN I/O latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','46bdcee9618d4074b3ac6367146951a5'), ('2850','LUN [{#NAME}]: LUN traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2ac150dce55249e3951edf46eb1cb0df'), ('2851','Node [{#NODE}]: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','26e44f9399fd4d1f8504d8cbccab3a56'), ('2852','Node [{#NODE}]: Node I/O','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5909816dcac74dd492cde0b964ac0705'), ('2853','Node [{#NODE}]: Node traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d69a0f1bf42a4fe6bdcd4bb10318effb'), ('2854','Storage pool [{#NAME}]: Capacity','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','7c57d0ba8e4144ba903104648709590e'), ('2855','Capacity','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','b4c9351df38148929d02371a49b751e4'), ('2856','Apache: Current async connections{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','43fb144dfa5b47afbdd146231e185c13'), ('2857','Apache: Current async processes{#SINGLETON}','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1ab50e84f1d94ea98bb7e5c9d0cf159c'), ('2858','Apache: Memory usage[{#APACHE.NAME}]','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5427aef4eaad4519b193b38cdc71fde1'), ('2859','Apache: Requests per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3461ebdbfb024405a8e8da6c3e970d0d'), ('2860','Apache: Worker states','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','0183d7d9c05843b19db5b4ba94f99350'), ('2861','Apache: Workers total','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'0','0','c82c849b07564ca29e58df3b984c1da9'), ('2862','Nginx: Memory usage[{#NGINX.NAME}]','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','60d7f859559246fe902edd8a12ab4c70'), ('2863','Nginx: Connections by state','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','5321b82a5beb4688b29f369acd0191c1'), ('2864','Nginx: Connections per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','993c7b78c337451992a048be7ed028e4'), ('2865','Nginx: Requests per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d22b45b11f2746ae8a26b54417a67424'), ('2866','Disk [{#DISK.SERIAL}]: Space: Logical usage and Used','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a9da4fc17600434b9abecd02a9e3d9f3'), ('2867','Disk [{#DISK.SERIAL}]: Space: Total and Used','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a225393ead3e4218be09cc19ba84392e'), ('2868','Container [{#STORAGE.CONTAINER.NAME}]: Space: Total and Used','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b067c9f9467b4760b43235aa453ee424'), ('2869','Content Cache: Hit rate, %','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','65515b97fe634d65a85a1d364887c67b'), ('2870','Content Cache: Hit rate, %','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','10cc868569aa457194f23f000d76c42c'), ('2871','Content Cache: Memory, bytes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','47934bfa13084fa4a3986796298e0b47'), ('2872','Content Cache: Memory, bytes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','7573a56ef8c147b7af2a3d6208af7169'), ('2873','Content Cache: SSD usage, bytes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d044e823d54444c4985f653685b9b438'), ('2874','Content Cache: SSD usage, bytes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','6ec9ec1bcf17441fbe2fa2130a154f4e'), ('2875','General: IO, bandwidth','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3ef6efe82e004c9bb274e8f653a1ae9e'), ('2876','General: IO, bandwidth','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','75c38f9f8c1c4760bff3f73f97de2f81'), ('2877','General: IO, latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','9630f812813549d8909ee46d06b38a7b'), ('2878','General: IO, latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','c987de890149423184078af71fa4929e'), ('2879','General: IOPS','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','03b6d22744a5461f937f481cf1ca0854'), ('2880','General: IOPS','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','6ba2e066462543b1a5c732d4fe692f94'), ('2881','General: Read IO / Write IO','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'0','0','b0881e58124f4e3c8967177a18293b01'), ('2882','General: Read IO / Write IO','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'0','0','ef5cc6450ff849d6bb17bca58f1ded6e'), ('2883','Hypervisor: CPU usage, %','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','2eb73e5623dc444d9296efb721b44534'), ('2884','Hypervisor: CPU usage, %','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','d81d699dcc8f40928fc200919a6d18ca'), ('2885','Hypervisor: IO, bandwidth','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','80d34c61ea8b436caf6d295b2330c4fd'), ('2886','Hypervisor: IO, bandwidth','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d0053e62420149cdaea9ea121d35b12f'), ('2887','Hypervisor: IO, latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','167229af868b49b5a0c66eaa3c6fad93'), ('2888','Hypervisor: IO, latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4856dc8a3c1c4932bbcf6a2c2a98a33e'), ('2889','Hypervisor: IOPS','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','f8a6865e91c44452bcfd26fdaefa42ba'), ('2890','Hypervisor: IOPS','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','1829358efd7445bbbf3d05233eb6d45d'), ('2891','Hypervisor: Memory usage, %','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','9da8e4c6642d4150ac5d45f1cb817253'), ('2892','Hypervisor: Memory usage, %','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','d95d9844425b4db5af1346aeac315021'), ('2893','Hypervisor: Received, bytes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','943cbd42a13147bdb76a5a171351b5c0'), ('2894','Hypervisor: Transmitted, bytes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e60a52fb92a043258b962457ea0cd616'), ('2895','IO overview','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ad7e987b56954a51b898f9aa09b2ef89'), ('2896','IOPS overview','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','c1ea65971d3d4816a68c9cf608939e0f'), ('2897','IOPS overview','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','0dc058779ebb484e85cc886ea431f669'), ('2898','Storage Controller: IO','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','66c94c9ea2264d96864df112f09b7d5f'), ('2899','Storage Controller: IO','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','be009461151d40f2a8e655eb3e9381fe'), ('2900','Storage Controller: IO, bandwidth','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ed97331326f14627900146141aff0333'), ('2901','Storage Controller: IO, bandwidth','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','b6529f70381a4762b0bf965be9a52e2f'), ('2902','Storage Controller: IOPS','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3a8aa7c3dc2d44ed8ab3c54fa092797d'), ('2903','Storage Controller: IOPS','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','031f1610f18441b9b96c8bb47e8913ac'), ('2904','Storage Controller: Read IO / Write IO','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'0','0','baa376dae2024a5f83b5d84120878fd5'), ('2905','Storage Controller: Read IO / Write IO','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'0','0','d52026a6d40844fbadc9b5e02f0e02ef'), ('2906','Storage Tier: Das-sata','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'0','0','ac4df503b04a4f339c5d39bd72fd3832'), ('2907','Storage Tier: Das-sata','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'0','0','c0740b2c536646ceb85aabeca052e2cb'), ('2908','Storage Tier: Free, bytes','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','1edd2ff1710649ed9e037b2a00dc9f22'), ('2909','Storage Tier: SSD','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'0','0','ff4e11828c9244c2b4021c826bec0700'), ('2910','Storage Tier: SSD','900','200','0','100',NULL,'1','1','1','1','0','0','0','0','0',NULL,NULL,'0','0','12fb09594c2f449182e641e5f12f32d0'), ('2911','PHP-FPM: Memory usage[{#PHP_FPM.NAME}]','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3e0a2769bfd74c72bba0736e483fa3a1'), ('2912','PHP-FPM: Process','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','493023e7a76b4bbba062c7fa79c6395c'), ('2913','PHP-FPM: Queue','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4555442cca864b45ba34904f4e8d44d8'), ('2914','Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Disk space usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a35e067d4a3f45a89714c5ca8ad82fe5'), ('2915','MySQL: Bandwidth','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','723784c0caba4856a7bb1e934c3ac54a'), ('2916','MySQL: Connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','689482bd6602443f8b9dcdb16598a68e'), ('2917','MySQL: InnoDB buffer pool','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','cdfec90ec0894187a52050f3fc738be7'), ('2918','MySQL: Operations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','494552acd11044ef8fbea28d81c02e7d'), ('2919','MySQL: Queries','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ec0107cf2ef4499ca6522a66bc915dbd'), ('2920','MySQL: Threads','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3e3616b5661546c98d20e9b1ef32c214'), ('2921','MySQL: Bandwidth','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','46d0f938ec754758a116c68b53d51cb7'), ('2922','MySQL: Connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','0273aa8a2b5c4672a27fcf735ccfc1de'), ('2923','MySQL: InnoDB buffer pool','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','1614ceed2cb74addb9eb35330dea7ad2'), ('2924','MySQL: Operations','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','43dcf7e893754c1ab12b3cf90c890f13'), ('2925','MySQL: Queries','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e1553784c34149a0bbe1e4ab2abc5a26'), ('2926','MySQL: Threads','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','7547747e0c744353b98fcc914870035c'), ('2927','DB [{#DBNAME}]: Locks','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2c0fea3adf254d41b123fb69202c51fe'), ('2928','DB [{#DBNAME}]: Number of bloating tables','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','96144801ca8a4c02ac88c49f0fb4eb7c'), ('2929','DB [{#DBNAME}]: pg_stat_database metrics','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','55268d2bc7224902836b8ec683b82865'), ('2930','DB [{#DBNAME}]: Queries','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','7d0246026bae4e6680f19626fba2bc02'), ('2931','DB [{#DBNAME}]: Size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','9a4b7b68ae0f4291a970e3e1838368c6'), ('2932','DB [{#DBNAME}]: Slow queries','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','31c3e16c49ba486db9f6f92714d927b6'), ('2933','Application [{#APPLICATION_NAME}]: Replication lag','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3942169cc1eb4715a5f2ca0ee58c33df'), ('2934','DB [{#DBNAME}]: Block hit/read','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','692254ddbb2646ed8f8f73e28d400d28'), ('2935','DB [{#DBNAME}]: Database size','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','0faea1cf0ef4422cabc9af14f3e774e9'), ('2936','DB [{#DBNAME}]: Events','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','61a7e55b8e614ae58a5e8675babba974'), ('2937','DB [{#DBNAME}]: Locks','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','1ef3d8b8ac0d48d9b19551ceb60de933'), ('2938','DB [{#DBNAME}]: Queries','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','27541a985dc04626836b8c11a038f328'), ('2939','DB [{#DBNAME}]: Slow queries','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','7d858a9a047b453096471773f8a31063'), ('2940','DB [{#DBNAME}]: Temp files','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','806181664b4b4e44b28a099b0281edad'), ('2941','DB [{#DBNAME}]: Tuples','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'2','0','e652d9ffb74b4abab75f811dd696bf21'), ('2942','PostgreSQL bgwriter','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','0f8ec9f5313348bfbe3b11836f6011d6'), ('2943','PostgreSQL checkpoints','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','c15a7590e6594541acb6327852af11fa'), ('2944','PostgreSQL connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','6748cbe523f44028bc84899cf3c68881'), ('2945','PostgreSQL ping','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','5705f8c49a6343b39e4a1a574f14b16d'), ('2946','PostgreSQL replication lag','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','8687fc6723b8477ba4c909b4d348303c'), ('2947','PostgreSQL transactions','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','245d91951a8048d1ad091cdcacb5bbeb'), ('2948','PostgreSQL uptime','900','200','0','100',NULL,'1','0','0','1','0','0','0','1','0',NULL,NULL,'0','0','dc9cd08e1f6a4e3594eef539b3d00df9'), ('2949','PostgreSQL WAL','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0','1fd6ffdc171146d6b05d9891ab56312c'), ('2950','Juniper MX: System [{#SNMPVALUE}]: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','409271fb7c764e94890fdf37dece3135'), ('2951','Juniper MX: System [{#SNMPVALUE}]: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','fe3ee4ee1f8648de90d1462ba268963a'), ('2952','Juniper MX: Interface [{#IFNAME}][{#IFALIAS}]: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','4200eaa606f94c35a4a9ab787c752761'), ('2953','Average CPU percentage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','73faeee0b6934fb4983c035b60782ca7'), ('2954','IO bytes read/write','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','bcc8df046b3646ed8a14d462b761885e'), ('2955','IO request count','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ac14ada6a3164e26b81686912e0b10a9'), ('2956','Storage space used','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','2',NULL,'48381','0','0','32f7809d7cae4a61a603b6b8d4161570'), ('2957','Storage space utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2e1c34a01d3a4501be1ed64d45332424'), ('2958','Virtual core count','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','4f14da1ce6d041ff8bdcc06a172f2734'), ('2959','Interface [{#IFNAME}]: Network traffic (bits, per second)','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','8b770f2163c747c1a5ce35586235d266'), ('2960','Interface [{#IFNAME}]: Network traffic (packets, per second)','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','01523de30af74fe7bb11354c13ef01cd'), ('2961','VSYS [{#VSYS}]: Interface [{#IFNAME}]: Network traffic (bits, per second)','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2f6b291347914c36b106b6365eb937e9'), ('2962','VSYS [{#VSYS}]: Interface [{#IFNAME}]: Network traffic (packets, per second)','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ee8dff49f3174c7ab056dc7e4232c9ae'), ('2963','Dell R660: Fan [{#SENSOR_NAME}]: Speed','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','035fa59950af4f0caf91f4de59189ed5'), ('2964','Dell R660: Interface [{#IFNAME}]: Speed','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','461971c0e09446a5ae341bfc40dec119'), ('2965','Dell R660: Physical disk [{#DISK_NAME}]: Size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e8963658181440d9b9fd711103ea7a89'), ('2966','Dell R660: Power supply [{#SENSOR_NAME}]: Current','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','4675b21a22ed4da6a018670f88fe06a2'), ('2967','Dell R660: Power supply [{#SENSOR_NAME}]: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','18e119c61b284952890d3168aeba7e09'), ('2968','Dell R660: Probe [{#SENSOR_NAME}]: Value','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d30bc3325ef2458a8381ea06ede80762'), ('2969','Dell R660: Virtual disk [{#DISK_NAME}]: Size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','4897862f7316481a9447bc70dd54214b'), ('2970','Dell R660: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','09fa360f516e4a8b84b88f0e503a806d'), ('2971','Dell R660: IO utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e232b8717dd745b99d49ce3a0f22825e'), ('2972','Dell R660: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','f6b5a4da810742b3b1d8c77462483a10'), ('2973','Dell R660: SYS utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','82b7ad603aac49c4a952691f251bab87'), ('2974','Dell R660: Fan [{#FAN_DESCR}]: Speed','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','8572ad519aba4125bca793fa58c3ee7a'), ('2975','Dell R660: Physical disk [{#DISK_NAME}]: Size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','7041ed04c6f14703b36b52aa68b49b2e'), ('2976','Dell R660: Probe [{#SENSOR_LOCALE}]: Value','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e6fa96c07eed45f4be0c3c63b3782804'), ('2977','Dell R660: Virtual disk [{#DISK_NAME}]: Size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','7128dd52533e43c582946dc346c6882b'), ('2978','Dell R660: Voltage probe [{#VPROBE_NAME}]: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2c0c884b124b4abc8869cdac905df0ef'), ('2979','Dell R660: Uptime','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','92c35ca847fb44cbae6542f1b11e41da'), ('2980','Dell R720: Fan [{#SENSOR_NAME}]: Speed','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','397182a555474330931e10f0248e9513'), ('2981','Dell R720: Interface [{#IFNAME}]: Speed','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2d3252a28935443a933639129990e047'), ('2982','Dell R720: Physical disk [{#DISK_NAME}]: Size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','873074e10cb64926b18e44ea530c3985'), ('2983','Dell R720: Power supply [{#SENSOR_NAME}]: Current','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5dffa4cc9acb43da8fce1ccbac9a3c5a'), ('2984','Dell R720: Power supply [{#SENSOR_NAME}]: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','26df3cf020a64d1082ed36aba8797c58'), ('2985','Dell R720: Probe [{#SENSOR_NAME}]: Value','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2a9b93d23f7e439bb74b0f0368b641be'), ('2986','Dell R720: Virtual disk [{#DISK_NAME}]: Size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','99b58f87335341169cf01075c3e33d30'), ('2987','Dell R720: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','fd69ef33a56a4a53864205a41e944242'), ('2988','Dell R720: IO utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','901625ceb44e4891bfc5bff5fcb47cff'), ('2989','Dell R720: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','a3b920c8d78b4259ae3c83df84410000'), ('2990','Dell R720: SYS utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','670ede1de7c349a299881c3d79f891ba'), ('2991','Dell R720: Fan [{#FAN_DESCR}]: Speed','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','32ac4de62079442c839ac548abd71e52'), ('2992','Dell R720: Physical disk [{#DISK_NAME}]: Size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3b54483c46bb4038a3fb60070b1ab41b'), ('2993','Dell R720: Probe [{#SENSOR_LOCALE}]: Value','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','857150f6f2ff4fec9fb80e3235adb830'), ('2994','Dell R720: Virtual disk [{#DISK_NAME}]: Size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','7f5fdaf45edf49f4bde8c86147949c50'), ('2995','Dell R720: Voltage probe [{#VPROBE_NAME}]: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','441e248166f64944aec3abc9e296c980'), ('2996','Dell R720: Uptime','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','36ecb02a52704e5987c5736fd650722d'), ('2997','Dell R740: Fan [{#SENSOR_NAME}]: Speed','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c273950f4653461f9ff91f6103eb8ea9'), ('2998','Dell R740: Interface [{#IFNAME}]: Speed','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2675aedb87374afdbed6651d4ad5336d'), ('2999','Dell R740: Physical disk [{#DISK_NAME}]: Size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3f090c14cd35436fb6777ea0a2952414'), ('3000','Dell R740: Power supply [{#SENSOR_NAME}]: Current','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c44728c06cc7486c868544c3c5777aed'), ('3001','Dell R740: Power supply [{#SENSOR_NAME}]: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ba35106532cb4e038a86bde3f7f33085'), ('3002','Dell R740: Probe [{#SENSOR_NAME}]: Value','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f37adc6452aa4a0aa111ad8797f0f6ec'), ('3003','Dell R740: Virtual disk [{#DISK_NAME}]: Size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b3cc98e3860546369e9a5508210c0c5e'), ('3004','Dell R740: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','62006f5c2fda42298fb59f3350693491'), ('3005','Dell R740: IO utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','23fa96d23e42490886045cd50d5295f3'), ('3006','Dell R740: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','1578ffaa25bf4906aaa27ae8b9d53b0c'), ('3007','Dell R740: SYS utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','a80589e70f93461a92fc95a5708550c8'), ('3008','Dell R740: Fan [{#FAN_DESCR}]: Speed','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a6e39ba6f8d74833954a7adc6d7d14bc'), ('3009','Dell R740: Physical disk [{#DISK_NAME}]: Size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','de00bac6c7fa44fdb26f02d8b4462841'), ('3010','Dell R740: Probe [{#SENSOR_LOCALE}]: Value','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','54313cfd1117447f9564987b2149bb8b'), ('3011','Dell R740: Virtual disk [{#DISK_NAME}]: Size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3433748046f54048abadd9c85fb76a21'), ('3012','Dell R740: Voltage probe [{#VPROBE_NAME}]: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','6477186594ae45d8824ec8a26d260b0c'), ('3013','Dell R740: Uptime','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','0b67dc9462dd4bb6beebe9a8c0b5001f'), ('3014','Dell R750: Fan [{#SENSOR_NAME}]: Speed','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5512fb8c939e4777a4e8440d1afe473a'), ('3015','Dell R750: Interface [{#IFNAME}]: Speed','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','30caeb71fa0c4fda86bcc2e5fd420ec3'), ('3016','Dell R750: Physical disk [{#DISK_NAME}]: Size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','680fda00a8864d6fbabe2d74055beb10'), ('3017','Dell R750: Power supply [{#SENSOR_NAME}]: Current','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','18a6ba72261f45248c5d6b7775b003bb'), ('3018','Dell R750: Power supply [{#SENSOR_NAME}]: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1c2fdb8764664403ac21dce61bd887af'), ('3019','Dell R750: Probe [{#SENSOR_NAME}]: Value','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1e598bba591c47f6ac1447b70974284c'), ('3020','Dell R750: Virtual disk [{#DISK_NAME}]: Size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','92dda4f99e7e453babc83bff7ff5fc81'), ('3021','Dell R750: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','f013dc8df1c14dd18d0bd4b5ba7107ea'), ('3022','Dell R750: IO utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','c853ecbd5a094bdca722755f53530dcd'), ('3023','Dell R750: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','f392e951f84d49d79a95203dcb708437'), ('3024','Dell R750: SYS utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','d9218627e1174e698f1322c0cc0f5a5f'), ('3025','Dell R750: Fan [{#FAN_DESCR}]: Speed','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e666babd7a6b4e4794cbf60fb6efd1df'), ('3026','Dell R750: Physical disk [{#DISK_NAME}]: Size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','69ca1bbae9134f0da26c6cf926c35722'), ('3027','Dell R750: Probe [{#SENSOR_LOCALE}]: Value','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5e901b5fc45c4000948a857441691f7d'), ('3028','Dell R750: Virtual disk [{#DISK_NAME}]: Size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c8acd3090578488f9772d4d8e50d2082'), ('3029','Dell R750: Voltage probe [{#VPROBE_NAME}]: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','82d83fc0210443678ed4221d1cd50caa'), ('3030','Dell R750: Uptime','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ea6ee813804a4eb1863bb631535f6c8c'), ('3031','Dell R820: Fan [{#SENSOR_NAME}]: Speed','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','17eb03f7bdb746abb5f395ea4383d669'), ('3032','Dell R820: Interface [{#IFNAME}]: Speed','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','04c75b6bfaf14608a0845c313829f08f'), ('3033','Dell R820: Physical disk [{#DISK_NAME}]: Size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','7f948b79dcd84f9798a77c9643cf87c9'), ('3034','Dell R820: Power supply [{#SENSOR_NAME}]: Current','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','79887275746b4d7686e7204e0be5f4e2'), ('3035','Dell R820: Power supply [{#SENSOR_NAME}]: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0687e35b0de04d9d87ade4b4c9e05ff6'), ('3036','Dell R820: Probe [{#SENSOR_NAME}]: Value','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1575af71deae4faaacf2927b8a06df80'), ('3037','Dell R820: Virtual disk [{#DISK_NAME}]: Size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','759e99496b4644ce9606d4c9cc5f7b16'), ('3038','Dell R820: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e4b1e16f35f5445dad9d49876c8def60'), ('3039','Dell R820: IO utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','81516d7d799044fb83b166ecc7c280f8'), ('3040','Dell R820: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','c8efb88c2b654975bfba21c5a292ee75'), ('3041','Dell R820: SYS utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','05822555cf8e4f33a559d1973e9776bb'), ('3042','Dell R820: Fan [{#FAN_DESCR}]: Speed','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0fb616bc58b8480893047514cf7425bf'), ('3043','Dell R820: Physical disk [{#DISK_NAME}]: Size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','7d235725b2e24ef3843ec59f597e26c7'), ('3044','Dell R820: Probe [{#SENSOR_LOCALE}]: Value','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','17bc3aea55c443a2b04b1a23b8462e66'), ('3045','Dell R820: Virtual disk [{#DISK_NAME}]: Size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b129721d9c064bec908414d69fd6173c'), ('3046','Dell R820: Voltage probe [{#VPROBE_NAME}]: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','37267e51adc1418c8f14ef391f719340'), ('3047','Dell R820: Uptime','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','28d29c2050784efa961c8c8a38195917'), ('3048','Dell R840: Fan [{#SENSOR_NAME}]: Speed','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a07e33e727054074957e95f9b2049ab7'), ('3049','Dell R840: Interface [{#IFNAME}]: Speed','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','82c7193482c6496abeeee2ca1869787b'), ('3050','Dell R840: Physical disk [{#DISK_NAME}]: Size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','8dc2255aa49b49a8b815cf153b580b5e'), ('3051','Dell R840: Power supply [{#SENSOR_NAME}]: Current','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','75e804154af84501a5460ffe74ffe5b5'), ('3052','Dell R840: Power supply [{#SENSOR_NAME}]: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','31d669f53bf64ac09ed74d793618ac9b'), ('3053','Dell R840: Probe [{#SENSOR_NAME}]: Value','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','dcf65d35e3e640a08ee7d32816857f09'), ('3054','Dell R840: Virtual disk [{#DISK_NAME}]: Size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2922d5a405cb442cbd7e7c1c6e9441a1'), ('3055','Dell R840: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','a0444e242bcf432b9464d2fe8edbe9e3'), ('3056','Dell R840: IO utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','893045a4df4c44e6966833c8c5e2d05a'), ('3057','Dell R840: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','1ab63e40fcd54d22a96e1ba6ba7038e2'), ('3058','Dell R840: SYS utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ce878cd735004169938aefc97e4043aa'), ('3059','Dell R840: Fan [{#FAN_DESCR}]: Speed','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3ca078011770494280453bce2c2198fe'), ('3060','Dell R840: Physical disk [{#DISK_NAME}]: Size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2b64a7034bb3455196e2716e622ce404'), ('3061','Dell R840: Probe [{#SENSOR_LOCALE}]: Value','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','aec83bed731d402a841088d092bd6400'), ('3062','Dell R840: Virtual disk [{#DISK_NAME}]: Size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','630725a2e858465ba6c3a6b5b8982d93'), ('3063','Dell R840: Voltage probe [{#VPROBE_NAME}]: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c40ac46b891f4ed892c532c8ff73ea50'), ('3064','Dell R840: Uptime','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','b0782a6e652a457b8004ae0436d2b3b0'), ('3065','Dell iDRAC: Fan [{#FAN_DESCR}]: Speed','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','9730d69d3b0b4b05955b1619662d490b'), ('3066','Dell iDRAC: Physical disk [{#DISK_NAME}]: Size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5a2fa4233d0e4f3f95726a5746dd7a2b'), ('3067','Dell iDRAC: Probe [{#SENSOR_LOCALE}]: Value','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','55f3bc4d2f2f4af38d8096c83229295e'), ('3068','Dell iDRAC: Virtual disk [{#DISK_NAME}]: Size','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ff72a3e5fe7b49e78dd32610b9102f4d'), ('3069','Dell iDRAC: Voltage probe [{#VPROBE_NAME}]: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','be17ace74d2b4d70bed4f4e826a3a41f'), ('3070','Dell iDRAC: Uptime','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','60e8a8f99b374a73b8ebb95abe5d098f'), ('3071','Azure Microsoft SQL: Connections','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','a266fd856e0f49288ee96b98c6fce4b9'), ('3072','Azure Microsoft SQL: DTU usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','0849698704cb40cab4ce62d3eb093717'), ('3073','Azure Microsoft SQL: Storage utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','3aebd39180de4314a7129d2c5deb6b6a'), ('3074','Drive [{#NAME}]: Capacity','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1ef6267285804c4c8994ec197ad7eb54'), ('3075','Host [{#NAME}]: Operation latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','077a05cbbbcf4b86a200235ef843b144'), ('3076','Host [{#NAME}]: Read/write throughput','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','72253c19ec1441fd8474fcb2f8d59623'), ('3077','Host [{#NAME}]: Requests per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','75b44e10db2c4652a3a4affeb9153c23'), ('3078','Host [{#NAME}]: Space','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','2b1554f56cae4cb0a71ac25af2443045'), ('3079','Interface [{#IFNAME}]: Speed','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','8e3eb09b1c03460286381b8491be48c8'), ('3080','Power supply [{#NAME}]: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','1cf1118b11d84830804c6f97437877e5'), ('3081','Sensor [{#NAME}]: Temperature','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e386829dbc6a4d98920100e8011cc11f'), ('3082','Volume [{#NAME}]: Operation latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','47f783920c744bd7889e546b90082b4a'), ('3083','Volume [{#NAME}]: Read/write throughput','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','5584b1764e1c442687e920659995f71b'), ('3084','Volume [{#NAME}]: Requests per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','9fbcdb66f14f4111a987d1328d11f8a0'), ('3085','Volume [{#NAME}]: Space','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','26e566a88462416c8f0829d47c15128d'), ('3086','Drive [{#NAME}]: Capacity','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','9ebe1a25885a4cc2a09ce54e512bf9df'), ('3087','Host [{#NAME}]: Operation latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','b6946844871941cfa2b29bb12ef27d7c'), ('3088','Host [{#NAME}]: Read/write throughput','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','38aeb1f11b234829be5bc07572f52c9f'), ('3089','Host [{#NAME}]: Requests per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','9ad04f712e1d4020bc217845142fef43'), ('3090','Host [{#NAME}]: Space','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f032b259f4e6471fa8381cdd8b7ba0d7'), ('3091','Interface [{#IFNAME}]: Speed','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','803097c68d004c5c8f66bb32688239aa'), ('3092','Pod [{#NAME}]: Quota','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','10ce99eab47a425dbf4ffd7a11dec3a0'), ('3093','Power supply [{#NAME}]: Voltage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e1610483759a41cea3b9c4adf3474399'), ('3094','Sensor [{#NAME}]: Temperature','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','9503fc3b89674c7185f162fe150ed2a1'), ('3095','Volume [{#NAME}]: Operation latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','c1892f0a8bab42e58597788ea3c6571d'), ('3096','Volume [{#NAME}]: Read/write throughput','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','ee5830d4ac6b484fbc9e6f87b7a5e9b0'), ('3097','Volume [{#NAME}]: Requests per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','d15e0ade1de9422eaabe8356b67245d9'), ('3098','Volume [{#NAME}]: Space','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','741b5ad72b354d83a3c60ac7e7b95a1d'), ('3099','Array operation latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','8beedac73b0d4f1d99d070e833387014'), ('3100','Array operation latency','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','abcd6ce5245c48b689fdbc37dbe9c277'), ('3101','Array read/write throughput','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','00bd33322bd248708c836557a93fbefa'), ('3102','Array read/write throughput','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','a15810fcd5dc4131a9263bd1c8dd66e3'), ('3103','Array requests per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','e5777cd6a0e844a8a3203114a8761eef'), ('3104','Array requests per second','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','2af7200064f04041871c8883ebed3305'), ('3105','Array space','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','f7fd269311624609940f9b8c803291db'), ('3106','Array space','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','81354a0ede2a43ecbee5805128a1f856'), ('3107','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','dacff40c560e41529c48d9025104b2bb'), ('3108','Cisco Secure FTD: CPU Utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','63c998c8625c45ac8e29802bfa83f4e1'), ('3109','Generic SNMP: Module [{#SNMPVALUE}]: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','9e0c9d09d27d4d02a296abf3ccd55910'), ('3110','Generic SNMP: Module [{#SNMPVALUE}]: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','ef659d7d40ba4d77aedbaf57e6a2c04f'), ('3111','Sensor [{#SNMPVALUE}]: Temperature','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f3a97e48f8e448d084035248a5c5c1cf'), ('3112','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f2626428025f4c4c88f4f2e32d7d6892'), ('3113','Ciena: Sensor [{#SNMPVALUE}]: Temperature','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','f90cac3fc8964b9e874d0fc160ac0304'), ('3114','Interface {#IFNAME}({#IFALIAS}): Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0b365ca9e76b4329ab68e567ddc1ca17'), ('3115','Ciena: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','652efbd1e8d44865acfc633866116b5a'), ('3116','Ciena: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0','376c15f14b414caab715650ce9c86e0f'), ('3117','CPU [{#DESCRIPTION}][{#SNMPINDEX}]: CPU utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','488302ccbe4047d0abbbb0c9a115a4e7'), ('3118','Interface [{#IFNAME}][{#IFALIAS}]: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','0049016b880945a5b129d172c74bc0ca'), ('3119','Interface [{#IFNAME}][{#IFALIAS}]: Packets discarded','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','a2d6187ba68246269bfc96ee57ede300'), ('3120','Interface [{#IFNAME}][{#IFALIAS}]: Packets with errors','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','9a161f45a8804d119fff8e41a4b2a4c9'), ('3121','Storage [{#STORAGE_NAME}]: Storage utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0','b8d837f4ca7440dd81d1da5af7d7a087'), ('3122','Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','ab9f0c1098fd46a991ee8afab8987916'), ('3123','SNS: CPU [{#CPU_ID}]: Temperature degrees in celsius','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','3009cfbebcea42289116107645cc08ea'), ('3124','SNS: CPU [{#SNMPINDEX}]: Usage in %','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','f5eebe195e3141019a1dace85415cf23'), ('3125','SNS: Interface [{#IF_NAME}]: Network traffic','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0','e4ab949e8b4d4fe09aab03740e12864d'), ('3126','SNS: Memory usage','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','b975fcc533c24f2d99f03b424cf23779'), ('3127','SNS: Memory utilization','900','200','0','100',NULL,'1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0','1f8d7ea4dd0f4a5ea68b6ff3174c4c7f'); INSERT INTO graphs (graphid,name,width,height,yaxismin,yaxismax,templateid,show_work_period,show_triggers,graphtype,show_legend,show_3d,percent_left,percent_right,ymin_type,ymax_type,ymin_itemid,ymax_itemid,flags,discover,uuid) VALUES ('2217','Interface {#IFNAME}: Network traffic','900','200','0','100','2212','1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0',''), ('2218','{#DEVNAME}: Disk average waiting time','900','200','0','100','2213','1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0',''), ('2219','{#DEVNAME}: Disk read/write rates','900','200','0','100','2214','1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0',''), ('2220','{#DEVNAME}: Disk utilization and queue','900','200','0','100','2215','1','1','0','1','0','0','0','0','0',NULL,NULL,'2','0',''), ('2230','Linux: CPU jumps','900','200','0','100','2222','1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0',''), ('2231','Linux: CPU usage','900','200','0','100','2223','1','1','1','1','0','0','0','1','1',NULL,NULL,'0','0',''), ('2232','Linux: CPU utilization','900','200','0','100','2224','1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0',''), ('2233','Linux: Memory usage','900','200','0','100','2225','1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0',''), ('2234','Linux: Memory utilization','900','200','0','100','2226','1','1','0','1','0','0','0','1','1',NULL,NULL,'0','0',''), ('2235','Linux: Processes','900','200','0','100','2227','1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0',''), ('2236','Linux: Swap usage','900','200','0','100','2228','1','1','0','1','0','0','0','0','0',NULL,NULL,'0','0',''), ('2237','Linux: System load','900','200','0','100','2229','1','1','0','1','0','0','0','1','0',NULL,NULL,'0','0',''), ('2775','FS [{#FSTYPE}({#FSNAME})]: Space usage graph, in % (relative to max available)','600','340','0','100','2773','1','1','0','1','0','0','0','1','1',NULL,NULL,'2','0',''), ('2776','FS [{#FSTYPE}({#FSNAME})]: Space utilization chart (relative to total)','600','340','0','100','2774','1','1','2','1','1','0','0','0','0',NULL,NULL,'2','0',''); INSERT INTO graphs_items (gitemid,graphid,itemid,drawtype,sortorder,color,yaxisside,calc_fnc,type) VALUES ('86612','2217','42294','5','0','199C0D','0','2','0'), ('86613','2217','42297','2','1','F63100','0','2','0'), ('86614','2217','42296','0','2','00611C','1','2','0'), ('86615','2217','42293','0','3','F7941D','1','2','0'), ('86616','2217','42295','0','4','FC6EA3','1','2','0'), ('86617','2217','42292','0','5','6C59DC','1','2','0'), ('86618','2218','42300','0','0','199C0D','0','2','0'), ('86619','2218','42301','5','1','F63100','0','2','0'), ('86620','2219','42314','0','0','199C0D','0','2','0'), ('86621','2219','42317','5','1','F63100','0','2','0'), ('86622','2220','42313','0','0','199C0D','1','2','0'), ('86623','2220','42316','5','1','F63100','0','2','0'), ('86674','2230','42261','0','0','199C0D','0','2','0'), ('86675','2230','42256','0','1','F63100','0','2','0'), ('86676','2231','42229','0','0','199C0D','0','2','0'), ('86677','2231','42230','0','1','F63100','0','2','0'), ('86678','2231','42248','0','2','00611C','0','2','0'), ('86679','2231','42258','0','3','F7941D','0','2','0'), ('86680','2231','42246','0','4','FC6EA3','0','2','0'), ('86681','2231','42265','0','5','6C59DC','0','2','0'), ('86682','2231','42247','0','6','C7A72D','0','2','0'), ('86683','2231','42262','0','7','BA2A5D','0','2','0'), ('86684','2231','42263','0','8','F230E0','0','2','0'), ('86685','2232','42269','5','0','199C0D','0','2','0'), ('86686','2233','42245','2','0','199C0D','0','2','0'), ('86687','2233','42243','5','1','F63100','0','2','0'), ('86688','2234','42270','5','0','199C0D','0','2','0'), ('86689','2235','42253','0','0','199C0D','0','2','0'), ('86690','2235','42254','0','1','F63100','0','2','0'), ('86692','2236','42228','0','0','199C0D','0','2','0'), ('86693','2236','42238','0','1','F63100','0','2','0'), ('86694','2237','42249','0','0','199C0D','0','2','0'), ('86695','2237','42257','0','1','F63100','0','2','0'), ('86696','2237','42259','0','2','00611C','0','2','0'), ('86697','2237','42260','0','3','F7941D','1','2','0'), ('241040','2775','42304','1','0','F63100','0','7','0'), ('241041','2776','42305','0','0','787878','0','9','2'), ('241042','2776','42306','0','1','F63100','0','9','0'), ('241043','2776','47117','0','2','199C09','0','9','0'), ('362055','2580','46079','0','0','199C0D','0','2','0'), ('362056','2581','46057','0','0','1EA7FD','0','2','0'), ('362057','2581','46058','0','1','66BF3C','0','2','0'), ('362058','2581','46059','0','2','E69D00','0','2','0'), ('362059','2581','46056','0','3','FF4400','0','2','0'), ('362060','2581','46055','0','4','E8083E','0','2','0'), ('362061','1397','32451','5','0','199C0D','0','2','0'), ('362062','1397','32450','5','1','F63100','0','2','0'), ('362063','1398','32452','5','0','199C0D','0','2','0'), ('362064','1398','32449','5','1','F63100','0','2','0'), ('362065','1399','32444','5','0','199C0D','0','2','0'), ('362066','1399','32446','5','1','F63100','0','2','0'), ('362067','1399','32448','5','2','00611C','0','2','0'), ('362068','1400','32460','5','0','199C0D','0','2','0'), ('362069','1401','32458','5','0','199C0D','0','2','0'), ('362070','1401','32457','5','1','F63100','0','2','0'), ('362071','1402','32461','5','0','199C0D','0','2','0'), ('362072','1402','32456','5','1','F63100','0','2','0'), ('362073','1172','30918','0','0','199C0D','0','2','0'), ('362074','1172','30919','0','1','F63100','0','2','0'), ('362075','1172','30920','0','2','00611C','0','2','0'), ('362076','1172','30921','2','3','F7941D','0','2','0'), ('362077','1173','30922','5','0','199C0D','0','2','0'), ('362078','2457','44342','2','0','199C0D','0','2','0'), ('362079','2457','44341','2','1','F63100','0','2','0'), ('362080','1174','30913','5','0','199C0D','0','2','0'), ('362081','1175','30906','0','0','199C0D','0','2','0'), ('362082','1175','30908','0','1','F63100','0','2','0'), ('362083','1175','30915','0','2','00611C','0','2','0'), ('362084','1175','30897','0','3','F7941D','0','2','0'), ('362085','1175','30901','0','4','FC6EA3','0','2','0'), ('362086','1175','30899','0','5','6C59DC','0','2','0'), ('362087','1175','30907','0','6','C7A72D','0','2','0'), ('362088','1175','30905','0','7','BA2A5D','0','2','0'), ('362089','1175','30904','0','8','F230E0','0','2','0'), ('362090','1175','30900','0','9','5CCD18','0','2','0'), ('362091','1175','30898','0','10','BB2A02','0','2','0'), ('362092','1176','30910','0','0','199C0D','0','2','0'), ('362093','1176','30909','0','1','F63100','0','2','0'), ('362094','2856','47665','0','0','199C0D','0','2','0'), ('362095','2856','47666','0','1','F63100','0','2','0'), ('362096','2856','47667','0','2','00611C','0','2','0'), ('362097','2856','47668','2','3','F7941D','0','2','0'), ('362098','2857','47669','5','0','199C0D','0','2','0'), ('362099','2858','47674','2','0','199C0D','0','2','0'), ('362100','2858','47673','2','1','F63100','0','2','0'), ('362101','2859','47645','5','0','199C0D','0','2','0'), ('362102','2860','47650','0','0','199C0D','0','2','0'), ('362103','2860','47648','0','1','F63100','0','2','0'), ('362104','2860','47653','0','2','00611C','0','2','0'), ('362105','2860','47654','0','3','F7941D','0','2','0'), ('362106','2860','47655','0','4','FC6EA3','0','2','0'), ('362107','2860','47657','0','5','6C59DC','0','2','0'), ('362108','2860','47649','0','6','C7A72D','0','2','0'), ('362109','2860','47651','0','7','BA2A5D','0','2','0'), ('362110','2860','47652','0','8','F230E0','0','2','0'), ('362111','2860','47656','0','9','5CCD18','0','2','0'), ('362112','2860','47658','0','10','BB2A02','0','2','0'), ('362113','2861','47659','0','0','199C0D','0','2','0'), ('362114','2861','47660','0','1','F63100','0','2','0'), ('362115','836','28798','0','0','199C0D','0','2','0'), ('362116','836','28799','0','1','F63100','0','2','0'), ('362117','836','28800','0','2','00611C','0','2','0'), ('362118','836','28801','2','3','F7941D','0','2','0'), ('362119','837','28803','5','0','199C0D','0','2','0'), ('362120','838','28793','5','0','199C0D','0','2','0'), ('362121','840','28787','0','0','199C0D','0','2','0'), ('362122','840','28784','0','1','F63100','0','2','0'), ('362123','840','28782','0','2','00611C','0','2','0'), ('362124','840','28781','0','3','F7941D','0','2','0'), ('362125','840','28780','0','4','FC6EA3','0','2','0'), ('362126','840','28778','0','5','6C59DC','0','2','0'), ('362127','840','28786','0','6','C7A72D','0','2','0'), ('362128','840','28785','0','7','BA2A5D','0','2','0'), ('362129','840','28783','0','8','F230E0','0','2','0'), ('362130','840','28779','0','9','5CCD18','0','2','0'), ('362131','840','28796','0','10','BB2A02','0','2','0'), ('362132','839','28789','0','0','199C0D','0','2','0'), ('362133','839','28788','0','1','F63100','0','2','0'), ('362134','1339','32172','0','0','199C0D','0','2','0'), ('362135','1339','32173','0','1','F63100','0','2','0'), ('362136','1403','32511','0','0','199C0D','0','2','0'), ('362137','1403','32514','0','1','F63100','0','2','0'), ('362138','1404','32512','0','0','199C0D','0','2','0'), ('362139','1404','32515','0','1','F63100','0','2','0'), ('362140','1405','32507','0','0','199C0D','0','2','0'), ('362141','1405','32508','0','1','F63100','0','2','0'), ('362142','1405','32513','0','2','00611C','0','2','0'), ('362143','1343','32135','0','0','199C0D','0','2','0'), ('362144','1343','32142','0','1','F63100','0','2','0'), ('362145','1344','32167','0','0','199C0D','0','2','0'), ('362146','1344','32136','0','1','F63100','0','2','0'), ('362147','1345','32141','0','0','199C0D','0','2','0'), ('362148','1345','32138','0','1','F63100','0','2','0'), ('362149','1346','32156','2','0','199C0D','0','2','0'), ('362150','1346','32158','0','1','F63100','0','2','0'), ('362151','1346','32159','0','2','00611C','0','2','0'), ('362152','1346','32154','2','3','F7941D','0','2','0'), ('362153','1346','32155','0','4','FC6EA3','0','2','0'), ('362154','1346','32146','0','5','6C59DC','0','2','0'), ('362155','1347','32150','2','0','199C0D','0','2','0'), ('362156','1347','32151','0','1','F63100','0','2','0'), ('362157','1347','32152','0','2','00611C','0','2','0'), ('362158','1622','35078','0','0','199C0D','0','2','0'), ('362159','1622','35091','0','1','F63100','0','2','0'), ('362160','1622','35098','0','2','00611C','0','2','0'), ('362161','1622','35100','0','3','F7941D','0','2','0'), ('362162','1622','35099','0','4','FC6EA3','0','2','0'), ('362163','1623','35090','0','0','199C0D','0','2','0'), ('362164','1623','35101','0','1','F63100','0','2','0'), ('362165','1624','35097','0','0','199C0D','0','2','0'), ('362166','1624','35096','0','1','F63100','0','2','0'), ('362167','1624','35095','0','2','00611C','0','2','0'), ('362168','1625','35089','0','0','199C0D','0','2','0'), ('362169','1625','35088','0','1','F63100','0','2','0'), ('362170','1625','35087','0','2','00611C','0','2','0'), ('362171','1625','35086','0','3','F7941D','0','2','0'), ('362172','1625','35085','0','4','FC6EA3','0','2','0'), ('362173','1626','35079','0','0','199C0D','0','2','0'), ('362174','1626','35082','0','1','F63100','0','2','0'), ('362175','1627','35080','0','0','199C0D','0','2','0'), ('362176','1627','35102','0','1','F63100','0','2','0'), ('362177','1628','35093','0','0','199C0D','0','2','0'), ('362178','1628','35092','0','1','F63100','0','2','0'), ('362179','1628','35081','0','2','00611C','0','2','0'), ('362180','1628','35084','0','3','F7941D','0','2','0'), ('362181','1628','35083','0','4','FC6EA3','0','2','0'), ('362182','2351','43111','0','0','199C0D','0','2','0'), ('362183','2351','43121','0','1','F63100','0','2','0'), ('362184','2352','43090','5','0','199C0D','0','2','0'), ('362185','2352','43089','2','1','F63100','0','2','0'), ('362186','2353','43132','0','0','199C0D','0','2','0'), ('362187','2353','43091','0','1','F63100','0','2','0'), ('362188','2354','43098','0','0','199C0D','0','2','0'), ('362189','2354','43096','0','1','F63100','0','2','0'), ('362190','2354','43084','0','2','00611C','0','2','0'), ('362191','2354','43093','0','3','F7941D','0','2','0'), ('362192','2354','43094','0','4','FC6EA3','0','2','0'), ('362193','2465','44477','4','0','29235c','0','2','0'), ('362194','2465','44478','4','1','7e286e','0','2','0'), ('362195','2465','44480','4','2','c73464','0','2','0'), ('362196','2465','44479','4','3','f66343','0','2','0'), ('362197','2465','44481','4','4','ffa600','0','2','0'), ('362198','2465','44475','0','5','00FF00','1','2','0'), ('362199','2465','44476','0','6','FF0000','0','2','0'), ('362200','2466','44466','0','0','00FF00','0','2','0'), ('362201','2466','44467','0','1','0000FF','0','2','0'), ('362202','2478','44464','0','0','00FF00','0','2','0'), ('362203','1121','30606','0','0','199C0D','0','2','0'), ('362204','1121','30590','0','1','F63100','0','2','0'), ('362205','1121','30582','0','2','00611C','0','2','0'), ('362206','1122','30580','5','0','199C0D','0','2','0'), ('362207','1122','30578','5','1','F63100','0','2','0'), ('362208','1123','30586','2','0','199C0D','0','2','0'), ('362209','1123','30608','2','1','F63100','0','2','0'), ('362210','1123','30585','2','2','00611C','0','2','0'), ('362211','1123','30589','2','3','F7941D','0','2','0'), ('362212','1123','30584','2','4','FC6EA3','0','2','0'), ('362213','1123','30588','2','5','6C59DC','0','2','0'), ('362214','1124','30583','2','0','199C0D','0','2','0'), ('362215','1124','30587','2','1','F63100','0','2','0'), ('362216','1125','30555','5','0','199C0D','0','2','0'), ('362217','1125','30554','2','1','F63100','0','2','0'), ('362218','1125','30556','2','2','00611C','0','2','0'), ('362219','1125','30557','2','3','F7941D','0','2','0'), ('362220','1126','30565','5','0','199C0D','0','2','0'), ('362221','1127','30567','2','0','199C0D','0','2','0'), ('362222','1127','30568','2','1','F63100','0','2','0'), ('362223','1128','30536','2','0','199C0D','0','2','0'), ('362224','1129','30566','2','0','199C0D','0','2','0'), ('362225','1129','30549','2','1','F63100','0','2','0'), ('362226','1129','30553','2','2','00611C','0','2','0'), ('362227','1129','30570','2','3','F7941D','0','2','0'), ('362228','1143','30714','0','0','199C0D','0','2','0'), ('362229','1143','30716','0','1','F63100','0','2','0'), ('362230','1143','30717','0','2','00611C','0','2','0'), ('362231','1143','30715','0','3','F7941D','0','2','0'), ('362232','1144','30753','0','0','199C0D','0','2','0'), ('362233','1144','30738','0','1','F63100','0','2','0'), ('362234','1145','30718','0','0','199C0D','0','2','0'), ('362235','1145','30737','0','1','F63100','0','2','0'), ('362236','1145','30727','0','2','00611C','0','2','0'), ('362237','1145','30729','0','3','F7941D','0','2','0'), ('362238','1146','30730','0','0','199C0D','0','2','0'), ('362239','1146','30732','0','1','F63100','0','2','0'), ('362240','1146','30731','0','2','00611C','0','2','0'), ('362241','1146','30733','0','3','F7941D','0','2','0'), ('362242','1147','30734','0','0','199C0D','0','2','0'), ('362243','1147','30736','0','1','F63100','0','2','0'), ('362244','1147','30735','0','2','00611C','0','2','0'), ('362245','1147','30758','0','3','F7941D','0','2','0'), ('362246','1148','30711','0','0','199C0D','0','2','0'), ('362247','1148','30706','0','1','F63100','0','2','0'), ('362248','1148','30710','0','2','00611C','0','2','0'), ('362249','1148','30712','0','3','F7941D','0','2','0'), ('362250','1148','30702','0','4','FC6EA3','0','2','0'), ('362251','1148','30707','0','5','6C59DC','0','2','0'), ('362252','1148','30704','0','6','C7A72D','0','2','0'), ('362253','2341','43058','0','0','199C0D','0','2','0'), ('362254','2341','43059','0','1','F63100','0','2','0'), ('362255','2341','43052','0','2','00611C','0','2','0'), ('362256','2341','43057','0','3','F7941D','0','2','0'), ('362257','2341','43066','0','4','FC6EA3','0','2','0'), ('362258','2342','43063','0','0','199C0D','0','2','0'), ('362259','2342','43061','0','1','F63100','0','2','0'), ('362260','2343','43068','0','0','199C0D','0','2','0'), ('362261','2343','43070','0','1','F63100','0','2','0'), ('362262','2344','43019','0','0','199C0D','0','2','0'), ('362263','2344','43042','0','1','F63100','0','2','0'), ('362264','2345','43044','0','0','199C0D','0','2','0'), ('362265','2345','43043','0','1','F63100','0','2','0'), ('362266','2345','43045','0','2','00611C','0','2','0'), ('362267','2345','43034','0','3','F7941D','0','2','0'), ('362268','2346','43023','0','0','199C0D','0','2','0'), ('362269','2346','43025','0','1','F63100','0','2','0'), ('362270','2347','43040','0','0','199C0D','0','2','0'), ('362271','2347','43041','0','1','F63100','0','2','0'), ('362272','2347','43039','0','2','00611C','0','2','0'), ('362273','2347','43038','0','3','F7941D','0','2','0'), ('362274','2348','43031','0','0','199C0D','0','2','0'), ('362275','2348','43020','0','1','F63100','0','2','0'), ('362276','2348','43033','0','2','00611C','0','2','0'), ('362277','2349','43036','0','0','199C0D','0','2','0'), ('362278','2349','43035','0','1','F63100','0','2','0'), ('362279','2349','43037','0','2','00611C','0','2','0'), ('362280','2349','43032','0','3','F7941D','0','2','0'), ('362281','2350','43024','0','0','199C0D','0','2','0'), ('362282','2350','43025','0','1','F63100','0','2','0'), ('362283','2350','43026','0','2','00611C','0','2','0'), ('362284','1177','30927','5','0','199C0D','0','2','0'), ('362285','1177','30944','2','1','F63100','0','2','0'), ('362286','1178','30935','0','0','199C0D','0','2','0'), ('362287','1178','30942','0','1','F63100','0','2','0'), ('362288','1179','30949','0','0','199C0D','0','2','0'), ('362289','1179','30950','0','1','F63100','0','2','0'), ('362290','1179','30951','0','2','00611C','0','2','0'), ('362291','1180','30952','0','0','199C0D','0','2','0'), ('362292','1180','30954','0','1','F63100','0','2','0'), ('362293','1180','30955','0','2','00611C','0','2','0'), ('362294','1181','30936','5','0','199C0D','0','2','0'), ('362295','1181','30940','5','1','F63100','0','2','0'), ('362296','1182','30930','0','0','199C0D','0','2','0'), ('362297','1182','30929','0','1','F63100','0','2','0'), ('362298','1182','30928','0','2','00611C','0','2','0'), ('362299','1182','30931','2','3','F7941D','1','2','0'), ('362300','1183','30934','0','0','199C0D','0','2','0'), ('362301','1183','30941','0','1','F63100','0','2','0'), ('362302','1406','32532','0','0','199C0D','1','2','0'), ('362303','1406','32535','0','1','F63100','1','2','0'), ('362304','1406','32533','0','2','00611C','0','2','0'), ('362305','1406','32534','0','3','F7941D','0','2','0'), ('362306','1406','32536','0','4','FC6EA3','0','2','0'), ('362307','1406','32537','0','5','6C59DC','0','2','0'), ('362308','1407','32543','0','0','199C0D','0','2','0'), ('362309','1407','32544','0','1','F63100','0','2','0'), ('362310','1408','32518','0','0','199C0D','0','2','0'), ('362311','1408','32521','0','1','F63100','0','2','0'), ('362312','1408','32523','0','2','00611C','0','2','0'), ('362313','1408','32524','0','3','F7941D','0','2','0'), ('362314','1409','32562','0','0','199C0D','1','2','0'), ('362315','1409','32565','0','1','F63100','1','2','0'), ('362316','1409','32563','0','2','00611C','0','2','0'), ('362317','1409','32564','0','3','F7941D','0','2','0'), ('362318','1409','32566','0','4','FC6EA3','0','2','0'), ('362319','1409','32567','0','5','6C59DC','0','2','0'), ('362320','1410','32573','0','0','199C0D','0','2','0'), ('362321','1410','32574','0','1','F63100','0','2','0'), ('362322','1411','32548','0','0','199C0D','0','2','0'), ('362323','1411','32551','0','1','F63100','0','2','0'), ('362324','1411','32553','0','2','00611C','0','2','0'), ('362325','1411','32554','0','3','F7941D','0','2','0'), ('362326','2287','42686','0','0','199C0D','0','2','0'), ('362327','2288','42689','0','0','199C0D','0','2','0'), ('362328','2288','42688','0','1','F63100','0','2','0'), ('362329','2288','42690','0','2','00611C','0','2','0'), ('362330','1250','31527','0','0','199C0D','0','2','0'), ('362331','1250','31529','0','1','F63100','0','2','0'), ('362332','1250','31499','0','2','00611C','0','2','0'), ('362333','1259','31516','0','0','199C0D','0','2','0'), ('362334','1259','31517','0','1','F63100','0','2','0'), ('362335','1260','31523','0','0','199C0D','0','2','0'), ('362336','1260','31522','0','1','F63100','0','2','0'), ('362337','1260','31524','0','2','00611C','0','2','0'), ('362338','2818','47328','0','0','199C0D','0','2','0'), ('362339','2819','47330','0','0','199C0D','0','2','0'), ('362340','2820','47310','0','0','199C0D','0','2','0'), ('362341','2820','47309','0','1','F63100','0','2','0'), ('362342','2820','47308','0','2','00611C','0','2','0'), ('362343','2821','47313','0','0','199C0D','0','2','0'), ('362344','2821','47312','0','1','F63100','0','2','0'), ('362345','2821','47311','0','2','00611C','0','2','0'), ('362346','2822','47303','0','0','199C0D','0','2','0'), ('362347','2822','47306','0','1','F63100','0','2','0'), ('362348','2823','47320','0','0','199C0D','0','2','0'), ('362349','2823','47321','0','1','F63100','0','2','0'), ('362350','2824','47322','0','0','199C0D','0','2','0'), ('362351','1412','32601','0','0','199C0D','0','2','0'), ('362352','1412','32602','0','1','F63100','0','2','0'), ('362353','1412','32603','0','2','00611C','0','2','0'), ('362354','1412','32604','0','3','F7941D','0','2','0'), ('362355','1412','32606','0','4','FC6EA3','0','2','0'), ('362356','1412','32605','2','5','6C59DC','0','2','0'), ('362357','1413','32608','0','0','199C0D','0','2','0'), ('362358','1413','32610','0','1','F63100','0','2','0'), ('362359','1413','32611','0','2','00611C','0','2','0'), ('362360','1414','32582','2','0','199C0D','0','2','0'), ('362361','1414','32580','2','1','F63100','0','2','0'), ('362362','1414','32581','2','2','00611C','0','2','0'), ('362363','1414','32597','0','3','F7941D','1','2','0'), ('362364','1414','32599','0','4','FC6EA3','1','2','0'), ('362365','1414','32588','0','5','6C59DC','1','2','0'), ('362366','1415','32583','0','0','199C0D','0','2','0'), ('362367','1415','32584','0','1','F63100','0','2','0'), ('362368','1415','32585','0','2','00611C','0','2','0'), ('362369','1415','32579','2','3','F7941D','0','2','0'), ('362370','1416','32587','0','0','199C0D','0','2','0'), ('362371','1416','32590','0','1','F63100','0','2','0'), ('362372','1416','32589','0','2','00611C','0','2','0'), ('362373','1417','32673','0','0','199C0D','0','2','0'), ('362374','1417','32679','0','1','F63100','0','2','0'), ('362375','2479','32666','0','0','199C0D','0','7','0'), ('362376','2479','32656','0','1','F63100','0','7','0'), ('362377','2479','32665','0','2','00611C','0','7','0'), ('362378','2480','32655','0','0','199C0D','0','7','0'), ('362379','2480','32652','0','1','F63100','0','7','0'), ('362380','2480','32651','0','2','00611C','0','7','0'), ('362381','2480','32650','0','3','F7941D','0','7','0'), ('362382','2480','32649','0','4','FC6EA3','0','7','0'), ('362383','1629','35114','5','0','199C0D','0','2','0'), ('362384','1629','35113','5','1','F63100','0','2','0'), ('362385','1075','30204','0','0','199C0D','0','2','0'), ('362386','1075','30205','0','1','F63100','0','2','0'), ('362387','1630','35112','0','0','199C0D','0','2','0'), ('362388','1630','35111','0','1','F63100','0','2','0'), ('362389','1630','35110','0','2','00611C','0','2','0'), ('362390','1630','35108','0','3','F7941D','0','2','0'), ('362391','1630','35105','0','4','FC6EA3','0','2','0'), ('362392','1076','30209','0','0','199C0D','0','2','0'), ('362393','1076','30208','0','1','F63100','0','2','0'), ('362394','1077','30206','5','0','199C0D','0','2','0'), ('362395','1077','30207','5','1','F63100','0','2','0'), ('362396','1078','30216','0','0','199C0D','0','2','0'), ('362397','1078','30215','0','1','F63100','0','2','0'), ('362398','1079','30210','0','0','199C0D','0','2','0'), ('362399','1079','30211','0','1','F63100','0','2','0'), ('362400','1079','30212','0','2','00611C','0','2','0'), ('362401','1079','30213','0','3','F7941D','0','2','0'), ('362402','1079','30214','0','4','FC6EA3','0','2','0'), ('362403','1631','35127','5','0','199C0D','0','2','0'), ('362404','1631','35126','5','1','F63100','0','2','0'), ('362405','1632','35124','0','0','199C0D','0','2','0'), ('362406','1632','35123','0','1','F63100','0','2','0'), ('362407','1632','35122','0','2','00611C','0','2','0'), ('362408','1632','30222','0','3','F7941D','0','2','0'), ('362409','1632','30223','0','4','FC6EA3','0','2','0'), ('362410','1080','30226','0','0','199C0D','0','2','0'), ('362411','1080','30225','0','1','F63100','0','2','0'), ('362412','1633','35139','5','0','199C0D','0','2','0'), ('362413','1633','35138','5','1','F63100','0','2','0'), ('362414','1081','30247','0','0','199C0D','0','2','0'), ('362415','1081','30248','0','1','F63100','0','2','0'), ('362416','1634','35137','0','0','199C0D','0','2','0'), ('362417','1634','35136','0','1','F63100','0','2','0'), ('362418','1634','35135','0','2','00611C','0','2','0'), ('362419','1634','35133','0','3','F7941D','0','2','0'), ('362420','1634','35130','0','4','FC6EA3','0','2','0'), ('362421','1082','30252','0','0','199C0D','0','2','0'), ('362422','1082','30251','0','1','F63100','0','2','0'), ('362423','1083','30249','5','0','199C0D','0','2','0'), ('362424','1083','30250','5','1','F63100','0','2','0'), ('362425','1084','30259','0','0','199C0D','0','2','0'), ('362426','1084','30258','0','1','F63100','0','2','0'), ('362427','1085','30253','0','0','199C0D','0','2','0'), ('362428','1085','30254','0','1','F63100','0','2','0'), ('362429','1085','30255','0','2','00611C','0','2','0'), ('362430','1085','30256','0','3','F7941D','0','2','0'), ('362431','1085','30257','0','4','FC6EA3','0','2','0'), ('362432','1635','35152','5','0','199C0D','0','2','0'), ('362433','1635','35151','5','1','F63100','0','2','0'), ('362434','1636','35149','0','0','199C0D','0','2','0'), ('362435','1636','35148','0','1','F63100','0','2','0'), ('362436','1636','35147','0','2','00611C','0','2','0'), ('362437','1636','30265','0','3','F7941D','0','2','0'), ('362438','1636','30266','0','4','FC6EA3','0','2','0'), ('362439','1086','30269','0','0','199C0D','0','2','0'), ('362440','1086','30268','0','1','F63100','0','2','0'), ('362441','1184','30982','0','0','199C0D','0','2','0'), ('362442','1184','30980','0','1','F63100','0','2','0'), ('362443','1185','30983','0','0','199C0D','0','2','0'), ('362444','1185','30981','0','1','F63100','0','2','0'), ('362445','1186','30976','0','0','199C0D','0','2','0'), ('362446','1186','30985','0','1','F63100','0','2','0'), ('362447','1186','30997','0','2','00611C','0','2','0'), ('362448','1186','30970','0','3','F7941D','0','2','0'), ('362449','1186','30973','0','4','FC6EA3','0','2','0'), ('362450','1186','30995','0','5','6C59DC','0','2','0'), ('362451','1186','30998','0','6','C7A72D','0','2','0'), ('362452','1186','30978','0','7','BA2A5D','0','2','0'), ('362453','1187','31024','0','0','199C0D','0','2','0'), ('362454','1187','31022','0','1','F63100','0','2','0'), ('362455','1188','31025','0','0','199C0D','0','2','0'), ('362456','1188','31023','0','1','F63100','0','2','0'), ('362457','1189','31018','0','0','199C0D','0','2','0'), ('362458','1189','31027','0','1','F63100','0','2','0'), ('362459','1189','31039','0','2','00611C','0','2','0'), ('362460','1189','31012','0','3','F7941D','0','2','0'), ('362461','1189','31015','0','4','FC6EA3','0','2','0'), ('362462','1189','31037','0','5','6C59DC','0','2','0'), ('362463','1189','31040','0','6','C7A72D','0','2','0'), ('362464','1189','31020','0','7','BA2A5D','0','2','0'), ('362465','1499','33478','0','0','199C0D','0','2','0'), ('362466','1499','33467','0','1','F63100','0','2','0'), ('362467','1500','33468','0','0','199C0D','0','2','0'), ('362468','1500','33479','0','1','F63100','0','2','0'), ('362469','1501','33442','0','0','199C0D','0','2','0'), ('362470','1501','33441','0','1','F63100','0','2','0'), ('362471','1501','33440','0','2','00611C','0','2','0'), ('362472','1502','33423','0','0','199C0D','0','2','0'), ('362473','1502','33419','0','1','F63100','0','2','0'), ('362474','1502','33422','0','2','00611C','0','2','0'), ('362475','1502','33421','0','3','F7941D','0','2','0'), ('362476','1502','33412','0','4','FC6EA3','0','2','0'), ('362477','2794','47192','0','0','199C0D','0','2','0'), ('362478','2795','47195','1','0','199C0D','0','2','0'), ('362479','2795','47196','2','1','F63100','1','2','0'), ('362480','2796','47197','1','0','F63100','0','2','0'), ('362481','2796','47198','1','1','199C0D','0','2','0'), ('362482','1418','32700','0','0','199C0D','0','2','0'), ('362483','1418','32699','0','1','F63100','0','2','0'), ('362484','1419','32710','0','0','199C0D','0','2','0'), ('362485','1419','32709','0','1','F63100','0','2','0'), ('362486','1420','32693','0','0','199C0D','0','2','0'), ('362487','1420','32724','0','1','F63100','0','2','0'), ('362488','1421','32730','0','0','199C0D','0','2','0'), ('362489','1421','32731','0','1','F63100','0','2','0'), ('362490','1421','32728','0','2','00611C','0','2','0'), ('362491','1421','32729','0','3','F7941D','0','2','0'), ('362492','1422','32705','0','0','199C0D','0','2','0'), ('362493','1422','32706','0','1','F63100','0','2','0'), ('362494','1423','32702','0','0','199C0D','0','2','0'), ('362495','1423','32703','0','1','F63100','0','2','0'), ('362496','1424','32708','0','0','199C0D','0','2','0'), ('362497','1424','32722','2','1','F63100','0','2','0'), ('362498','1424','32695','0','2','00611C','0','2','0'), ('362499','1424','32753','0','3','F7941D','0','2','0'), ('362500','1424','32740','2','4','FC6EA3','0','2','0'), ('362501','1424','32723','0','5','6C59DC','0','2','0'), ('362502','1424','32747','0','6','C7A72D','0','2','0'), ('362503','1424','32748','2','7','BA2A5D','0','2','0'), ('362504','1424','32749','0','8','F230E0','0','2','0'), ('362505','1424','32750','0','9','5CCD18','0','2','0'), ('362506','1424','32751','2','10','BB2A02','0','2','0'), ('362507','1424','32752','0','11','AC41A5','0','2','0'), ('362508','1425','32746','0','0','199C0D','0','2','0'), ('362509','1425','32745','2','1','F63100','0','2','0'), ('362510','1425','32744','0','2','00611C','0','2','0'), ('362511','1425','32743','0','3','F7941D','0','2','0'), ('362512','1425','32742','0','4','FC6EA3','0','2','0'), ('362513','1426','32720','0','0','199C0D','0','2','0'), ('362514','1426','32721','0','1','F63100','0','2','0'), ('362515','1426','32719','0','2','00611C','0','2','0'), ('362516','1426','32718','0','3','F7941D','0','2','0'), ('362517','2085','39861','0','0','199C0D','0','2','0'), ('362518','2085','39863','0','1','F63100','0','2','0'), ('362519','2085','39864','0','2','00611C','0','2','0'), ('362520','2085','39862','0','3','F7941D','0','2','0'), ('362521','2086','39849','0','0','199C0D','0','2','0'), ('362522','2086','39833','0','1','F63100','0','2','0'), ('362523','2086','39848','0','2','00611C','0','2','0'), ('362524','2086','39832','0','3','F7941D','0','2','0'), ('362525','2086','39847','0','4','FC6EA3','0','2','0'), ('362526','2086','39831','0','5','6C59DC','0','2','0'), ('362527','2086','39846','0','6','C7A72D','0','2','0'), ('362528','2086','39850','0','7','BA2A5D','0','2','0'), ('362529','2086','39841','0','8','F230E0','0','2','0'), ('362530','2087','39900','0','0','199C0D','0','2','0'), ('362531','2088','39901','0','0','199C0D','0','2','0'), ('362532','2089','39892','0','0','199C0D','0','2','0'), ('362533','2089','39893','0','1','F63100','0','2','0'), ('362534','2089','39890','0','2','00611C','0','2','0'), ('362535','2089','39891','0','3','F7941D','0','2','0'), ('362536','2089','39896','0','4','FC6EA3','0','2','0'), ('362537','2089','39897','0','5','6C59DC','0','2','0'), ('362538','2089','39895','0','6','C7A72D','0','2','0'), ('362539','2089','39894','0','7','BA2A5D','0','2','0'), ('362540','2090','39888','0','0','199C0D','0','2','0'), ('362541','2090','39887','0','1','F63100','0','2','0'), ('362542','2091','39880','0','0','199C0D','0','2','0'), ('362543','2091','39879','0','1','F63100','0','2','0'), ('362544','2091','39878','0','2','00611C','0','2','0'), ('362545','2091','39877','0','3','F7941D','0','2','0'), ('362546','2092','39922','0','0','199C0D','0','2','0'), ('362547','2092','39923','0','1','F63100','0','2','0'), ('362548','2092','39924','0','2','00611C','0','2','0'), ('362549','2092','39921','0','3','F7941D','0','2','0'), ('362550','2481','44758','2','1','4CAF50','0','2','0'), ('362551','2481','44755','2','2','AB47BC','0','2','0'), ('362552','2481','44761','5','3','1E88E5','0','4','0'), ('362553','2094','40004','0','0','199C0D','0','2','0'), ('362554','2094','40003','0','1','F63100','0','2','0'), ('362555','2094','40005','0','2','00611C','0','2','0'), ('362556','2094','40006','0','3','F7941D','0','2','0'), ('362557','2289','42693','0','0','199C0D','0','2','0'), ('362558','2289','42692','0','1','F63100','0','2','0'), ('362559','2289','42694','0','2','00611C','0','2','0'), ('362560','2289','42695','0','3','F7941D','0','2','0'), ('362561','2290','42697','0','0','199C0D','0','2','0'), ('362562','2290','42696','0','1','F63100','0','2','0'), ('362563','2290','42698','0','2','00611C','0','2','0'), ('362564','2290','42699','0','3','F7941D','0','2','0'), ('362565','2096','39994','0','0','199C0D','0','2','0'), ('362566','2096','39993','0','1','F63100','0','2','0'), ('362567','2097','39986','0','0','199C0D','0','2','0'), ('362568','2097','39988','0','1','F63100','0','2','0'), ('362569','2097','39990','0','2','00611C','0','2','0'), ('362570','2097','39998','0','3','F7941D','0','2','0'), ('362571','2099','39996','0','0','199C0D','0','2','0'), ('362572','2099','39997','0','1','F63100','0','2','0'), ('362573','2099','39995','0','2','00611C','0','2','0'), ('362574','2563','45849','0','0','199C0D','0','9','0'), ('362575','2563','45850','0','1','F63100','0','9','0'), ('362576','2563','45848','0','2','00611C','0','9','0'), ('362577','2563','45835','0','3','F7941D','0','9','0'), ('362578','2563','45847','0','4','FC6EA3','0','9','0'), ('362579','2563','45836','0','5','6C59DC','0','9','0'), ('362580','2564','45842','0','0','199C0D','0','9','0'), ('362581','2564','45845','0','1','F63100','0','9','0'), ('362582','2564','45841','0','2','00611C','0','9','0'), ('362583','2564','45839','0','3','F7941D','0','9','0'), ('362584','2564','45844','0','4','FC6EA3','0','9','0'), ('362585','2564','45846','0','5','6C59DC','0','9','0'), ('362586','2564','45843','0','6','C7A72D','0','9','0'), ('362587','2564','45840','0','7','BA2A5D','0','9','0'), ('362588','2564','45838','0','8','F230E0','0','9','0'), ('362589','2565','45821','0','0','199C0D','0','9','0'), ('362590','2565','45831','0','1','F63100','0','9','0'), ('362591','2565','45832','0','2','00611C','0','9','0'), ('362592','2565','45830','0','3','F7941D','0','9','0'), ('362593','2565','45833','0','4','FC6EA3','0','9','0'), ('362594','2565','45834','0','5','6C59DC','0','9','0'), ('362595','2565','45851','0','6','C7A72D','0','9','0'), ('362596','2565','45837','0','7','BA2A5D','0','9','0'), ('362597','2566','45824','0','0','199C0D','0','9','0'), ('362598','2566','45823','0','1','F63100','0','9','0'), ('362599','2566','45827','0','2','00611C','0','9','0'), ('362600','2566','45828','0','3','F7941D','0','9','0'), ('362601','2566','45825','0','4','FC6EA3','0','9','0'), ('362602','2566','45829','0','5','6C59DC','0','9','0'), ('362603','2566','45826','0','6','C7A72D','0','9','0'), ('362604','2567','45822','0','0','199C0D','0','7','0'), ('362605','1130','30613','0','0','199C0D','0','2','0'), ('362606','1130','30635','0','1','F63100','0','2','0'), ('362607','1130','30625','0','2','00611C','0','2','0'), ('362608','1131','30632','5','0','199C0D','0','2','0'), ('362609','1131','30633','5','1','F63100','0','2','0'), ('362610','1131','30629','5','2','00611C','0','2','0'), ('362611','1132','30630','2','0','199C0D','0','2','0'), ('362612','1132','30628','2','1','F63100','0','2','0'), ('362613','1132','30631','2','2','00611C','0','2','0'), ('362614','1133','30619','0','0','199C0D','0','2','0'), ('362615','1133','30618','0','1','F63100','0','2','0'), ('362616','1134','30623','5','0','199C0D','0','2','0'), ('362617','1134','30622','5','1','F63100','0','2','0'), ('362618','1135','30615','0','0','199C0D','0','2','0'), ('362619','2825','47362','0','0','199C0D','0','2','0'), ('362620','2825','47366','0','1','F63100','0','2','0'), ('362621','2825','47360','0','2','00611C','0','2','0'), ('362622','2825','47363','0','3','F7941D','0','2','0'), ('362623','2825','47361','0','4','FC6EA3','0','2','0'), ('362624','2825','47365','0','5','6C59DC','0','2','0'), ('362625','2826','47371','0','0','199C0D','0','2','0'), ('362626','2826','47367','0','1','F63100','0','2','0'), ('362627','2826','47368','0','2','00611C','0','2','0'), ('362628','2826','47370','0','3','F7941D','0','2','0'), ('362629','2827','47373','0','0','199C0D','0','2','0'), ('362630','2827','47372','0','1','F63100','0','2','0'), ('362631','2827','47374','0','2','00611C','0','2','0'), ('362632','2827','47376','0','3','F7941D','0','2','0'), ('362633','2827','47377','0','4','FC6EA3','0','2','0'), ('362634','2827','47379','0','5','6C59DC','0','2','0'), ('362635','2827','47378','0','6','C7A72D','0','2','0'), ('362636','2828','47391','0','0','199C0D','0','2','0'), ('362637','2828','47389','0','1','F63100','0','2','0'), ('362638','2829','47388','0','0','199C0D','0','2','0'), ('362639','2829','47386','0','1','F63100','0','2','0'), ('362640','2830','47385','0','0','199C0D','0','2','0'), ('362641','2830','47384','0','1','F63100','0','2','0'), ('362642','2830','47383','0','2','00611C','0','2','0'), ('362643','2830','47382','0','3','F7941D','0','2','0'), ('362644','2831','47398','0','0','199C0D','0','2','0'), ('362645','2831','47397','0','1','F63100','0','2','0'), ('362646','2831','47396','0','2','00611C','0','2','0'), ('362647','2831','47395','0','3','F7941D','0','2','0'), ('362648','2832','47404','0','0','199C0D','0','2','0'), ('362649','2832','47402','0','1','F63100','0','2','0'), ('362650','2832','47401','0','2','00611C','0','2','0'), ('362651','2833','47399','0','0','199C0D','0','2','0'), ('362652','2833','47400','0','1','F63100','0','2','0'), ('362653','2834','47409','0','0','199C0D','0','2','0'), ('362654','2834','47406','0','1','F63100','0','2','0'), ('362655','2835','47414','0','0','199C0D','0','2','0'), ('362656','2835','47413','0','1','F63100','0','2','0'), ('362657','2835','47426','0','2','00611C','0','2','0'), ('362658','2835','47417','0','3','F7941D','0','2','0'), ('362659','2835','47425','0','4','FC6EA3','0','2','0'), ('362660','2835','47418','0','5','6C59DC','0','2','0'), ('362661','2835','47412','0','6','C7A72D','0','2','0'), ('362662','2835','47424','0','7','BA2A5D','0','2','0'), ('362663','2836','47423','0','0','199C0D','0','2','0'), ('362664','2836','47420','0','1','F63100','0','2','0'), ('362665','2836','47419','0','2','00611C','0','2','0'), ('362666','2837','47415','0','0','199C0D','0','2','0'), ('362667','2837','47416','0','1','F63100','0','2','0'), ('362668','2838','47436','0','0','199C0D','0','2','0'), ('362669','2838','47434','0','1','F63100','0','2','0'), ('362670','2839','47433','0','0','199C0D','0','2','0'), ('362671','2839','47432','0','1','F63100','0','2','0'), ('362672','2839','47431','0','2','00611C','0','2','0'), ('362673','2839','47430','0','3','F7941D','0','2','0'), ('362674','2840','47443','0','0','199C0D','0','2','0'), ('362675','2840','47442','0','1','F63100','0','2','0'), ('362676','2841','47450','0','0','199C0D','0','2','0'), ('362677','2841','47449','0','1','F63100','0','2','0'), ('362678','2841','47448','0','2','00611C','0','2','0'), ('362679','2841','47447','0','3','F7941D','0','2','0'), ('362680','2841','47451','0','4','FC6EA3','0','2','0'), ('362681','2842','47482','0','0','199C0D','0','2','0'), ('362682','2842','47477','0','1','F63100','0','2','0'), ('362683','2842','47479','0','2','00611C','0','2','0'), ('362684','2842','47481','0','3','F7941D','0','2','0'), ('362685','2842','47483','0','4','FC6EA3','0','2','0'), ('362686','2842','47478','0','5','6C59DC','0','2','0'), ('362687','2842','47480','0','6','C7A72D','0','2','0'), ('362688','2843','47490','0','0','199C0D','0','2','0'), ('362689','2843','47484','0','1','F63100','0','2','0'), ('362690','2843','47486','0','2','00611C','0','2','0'), ('362691','2843','47488','0','3','F7941D','0','2','0'), ('362692','2843','47491','0','4','FC6EA3','0','2','0'), ('362693','2843','47485','0','5','6C59DC','0','2','0'), ('362694','2843','47487','0','6','C7A72D','0','2','0'), ('362695','2844','47497','0','0','199C0D','0','2','0'), ('362696','2844','47492','0','1','F63100','0','2','0'), ('362697','2844','47494','0','2','00611C','0','2','0'), ('362698','2844','47496','0','3','F7941D','0','2','0'), ('362699','2844','47498','0','4','FC6EA3','0','2','0'), ('362700','2844','47493','0','5','6C59DC','0','2','0'), ('362701','2844','47495','0','6','C7A72D','0','2','0'), ('362702','2845','47466','0','0','199C0D','0','2','0'), ('362703','2845','47468','0','1','F63100','0','2','0'), ('362704','2845','47467','0','2','00611C','0','2','0'), ('362705','2846','47506','0','0','199C0D','0','2','0'), ('362706','2846','47507','0','1','F63100','0','2','0'), ('362707','2846','47504','0','2','00611C','0','2','0'), ('362708','2846','47505','0','3','F7941D','0','2','0'), ('362709','2582','46123','0','0','81C784','0','2','0'), ('362710','2582','46126','0','1','FF5722','0','2','0'), ('362711','2583','46123','0','0','81C784','0','2','0'), ('362712','2583','46126','0','1','FF5722','0','2','0'), ('362713','2584','46102','5','0','81C784','0','2','0'), ('362714','2584','46086','0','1','FFD54F','0','2','0'), ('362715','2584','46114','2','2','FF5722','0','2','0'), ('362716','2585','46110','5','0','81C784','0','2','0'), ('362717','2585','46109','0','1','FFD54F','0','2','0'), ('362718','2585','46108','2','2','FF5722','0','2','0'), ('362719','2586','46107','5','0','81C784','0','2','0'), ('362720','2587','46100','5','0','81C784','0','2','0'), ('362721','2587','46089','0','1','FFD54F','0','2','0'), ('362722','2587','46097','2','2','FF5722','0','2','0'), ('362723','2587','46094','0','3','64B5F6','0','2','0'), ('362724','2458','44350','2','0','199C0D','0','2','0'), ('362725','2458','44349','2','1','F63100','0','2','0'), ('362726','841','28813','2','0','199C0D','0','2','0'), ('362727','841','28811','0','1','F63100','0','2','0'), ('362728','841','28812','0','2','00611C','0','2','0'), ('362729','841','28814','0','3','F7941D','0','2','0'), ('362730','842','28817','0','0','199C0D','0','2','0'), ('362731','842','28815','0','1','F63100','0','2','0'), ('362732','842','28816','0','2','00611C','0','2','0'), ('362733','843','28818','5','0','199C0D','0','2','0'), ('362734','2862','47708','2','0','199C0D','0','2','0'), ('362735','2862','47707','2','1','F63100','0','2','0'), ('362736','2863','47693','2','0','199C0D','0','2','0'), ('362737','2863','47697','0','1','F63100','0','2','0'), ('362738','2863','47698','0','2','00611C','0','2','0'), ('362739','2863','47696','0','3','F7941D','0','2','0'), ('362740','2864','47692','0','0','199C0D','0','2','0'), ('362741','2864','47695','0','1','F63100','0','2','0'), ('362742','2864','47694','0','2','00611C','0','2','0'), ('362743','2865','47700','5','0','199C0D','0','2','0'), ('362744','845','28829','2','0','199C0D','0','2','0'), ('362745','845','28831','0','1','F63100','0','2','0'), ('362746','845','28832','0','2','00611C','0','2','0'), ('362747','845','28830','0','3','F7941D','0','2','0'), ('362748','846','28826','0','0','199C0D','0','2','0'), ('362749','846','28828','0','1','F63100','0','2','0'), ('362750','846','28827','0','2','00611C','0','2','0'), ('362751','847','28825','5','0','199C0D','0','2','0'), ('362752','1637','35187','5','0','199C0D','0','2','0'), ('362753','1638','35189','5','0','199C0D','0','2','0'), ('362754','1638','35188','5','1','F63100','0','2','0'), ('362755','1638','35190','5','2','00611C','0','2','0'), ('362756','1638','35191','5','3','F7941D','0','2','0'), ('362757','1638','35192','5','4','FC6EA3','0','2','0'), ('362758','1639','35198','5','0','199C0D','0','2','0'), ('362759','1640','35200','5','0','199C0D','0','2','0'), ('362760','1640','35199','5','1','F63100','0','2','0'), ('362761','1640','35201','5','2','00611C','0','2','0'), ('362762','1640','35202','5','3','F7941D','0','2','0'), ('362763','1640','35203','5','4','FC6EA3','0','2','0'), ('362764','1641','35221','5','0','199C0D','0','2','0'), ('362765','1641','35220','5','1','F63100','0','2','0'), ('362766','1641','35219','5','2','00611C','0','2','0'), ('362767','1642','35214','5','0','199C0D','0','2','0'), ('362768','1642','35216','5','1','F63100','0','2','0'), ('362769','1642','35207','5','2','00611C','0','2','0'), ('362770','1642','35213','5','3','F7941D','0','2','0'), ('362771','1642','35212','5','4','FC6EA3','0','2','0'), ('362772','1643','35228','5','0','199C0D','0','2','0'), ('362773','1643','35229','5','1','F63100','0','2','0'), ('362774','1643','35227','5','2','00611C','0','2','0'), ('362775','1644','35231','5','0','199C0D','0','2','0'), ('362776','1644','35230','5','1','F63100','0','2','0'), ('362777','1644','35235','5','2','00611C','0','2','0'), ('362778','1644','35233','5','3','F7941D','0','2','0'), ('362779','1644','35232','5','4','FC6EA3','0','2','0'), ('362780','1644','35234','5','5','6C59DC','0','2','0'), ('362781','1644','35236','5','6','C7A72D','0','2','0'), ('362782','1644','35237','5','7','BA2A5D','0','2','0'), ('362783','1645','35243','5','0','199C0D','0','2','0'), ('362784','1645','35244','5','1','F63100','0','2','0'), ('362785','1645','35245','5','2','00611C','0','2','0'), ('362786','1646','35252','5','0','199C0D','0','2','0'), ('362787','1646','35253','5','1','F63100','0','2','0'), ('362788','1646','35254','5','2','00611C','0','2','0'), ('362789','1647','35172','5','0','199C0D','0','2','0'), ('362790','1647','35168','5','1','F63100','0','2','0'), ('362791','1647','35164','5','2','00611C','0','2','0'), ('362792','1647','35163','5','3','F7941D','0','2','0'), ('362793','1648','35170','5','0','199C0D','0','2','0'), ('362794','1649','35167','5','0','199C0D','0','2','0'), ('362795','1649','35166','5','1','F63100','0','2','0'), ('362796','1649','35165','5','2','00611C','0','2','0'), ('362797','1650','35176','0','0','199C0D','0','2','0'), ('362798','2568','46036','0','0','199C0D','0','2','0'), ('362799','2568','46037','0','1','F63100','0','2','0'), ('362800','2568','46038','0','2','00611C','0','2','0'), ('362801','2568','46039','0','3','F7941D','0','2','0'), ('362802','2569','46032','0','0','199C0D','0','2','0'), ('362803','2569','46031','0','1','F63100','0','2','0'), ('362804','2570','46030','0','0','199C0D','0','2','0'), ('362805','2570','46033','0','1','F63100','0','2','0'), ('362806','2570','46035','0','2','00611C','0','2','0'), ('362807','2571','46042','0','0','199C0D','0','2','0'), ('362808','2571','46040','0','1','F63100','0','2','0'), ('362809','2571','46043','0','2','00611C','0','2','0'), ('362810','2572','46041','0','0','199C0D','0','2','0'), ('362811','2572','46044','0','1','F63100','0','2','0'), ('362812','2573','45900','0','0','199C0D','0','2','0'), ('362813','2573','45899','0','1','F63100','0','2','0'), ('362814','2573','45904','0','2','00611C','0','2','0'), ('362815','2573','45897','0','3','F7941D','0','2','0'), ('362816','2574','45888','0','0','199C0D','0','2','0'), ('362817','2574','45883','0','1','F63100','0','2','0'), ('362818','2575','45881','0','0','199C0D','0','2','0'), ('362819','2575','45891','0','1','F63100','0','2','0'), ('362820','2575','45890','0','2','00611C','0','2','0'), ('362821','2575','45889','0','3','F7941D','0','2','0'), ('362822','2576','45927','0','0','199C0D','0','2','0'), ('362823','2576','45925','0','1','F63100','0','2','0'), ('362824','2576','45920','0','2','00611C','0','2','0'), ('362825','2576','45919','0','3','F7941D','0','2','0'), ('362826','2577','45957','0','0','199C0D','0','2','0'), ('362827','2577','45917','0','1','F63100','0','2','0'), ('362828','2577','45959','0','2','00611C','0','2','0'), ('362829','2577','45905','0','3','F7941D','0','2','0'), ('362830','2578','45926','0','0','199C0D','0','2','0'), ('362831','2578','45921','0','1','F63100','0','2','0'), ('362832','2578','45918','0','2','00611C','0','2','0'), ('362833','2579','45908','0','0','199C0D','0','2','0'), ('362834','2579','45915','0','1','F63100','0','2','0'), ('362835','2579','45930','0','2','00611C','0','2','0'), ('362836','2579','45914','0','3','F7941D','0','2','0'), ('362837','2866','47953','5','0','0040FF','0','2','0'), ('362838','2866','47950','5','1','00BFFF','0','2','0'), ('362839','2867','47953','5','0','0040FF','0','2','0'), ('362840','2867','47945','5','1','00BFFF','0','2','0'), ('362841','2868','47957','5','0','0040FF','0','2','0'), ('362842','2868','47954','5','1','00BFFF','0','2','0'), ('362843','2869','47720','5','0','0040FF','0','2','0'), ('362844','2870','47815','5','0','0040FF','0','2','0'), ('362845','2871','47721','5','0','00BFFF','0','2','0'), ('362846','2871','47726','5','1','FF0080','0','2','0'), ('362847','2871','47724','5','2','0040FF','0','2','0'), ('362848','2872','47816','5','0','00BFFF','0','2','0'), ('362849','2872','47821','5','1','FF0080','0','2','0'), ('362850','2872','47819','5','2','0040FF','0','2','0'), ('362851','2873','47722','5','0','00BFFF','0','2','0'), ('362852','2873','47725','5','1','FF0080','0','2','0'), ('362853','2873','47727','5','2','0040FF','0','2','0'), ('362854','2874','47817','5','0','00BFFF','0','2','0'), ('362855','2874','47820','5','1','FF0080','0','2','0'), ('362856','2874','47822','5','2','0040FF','0','2','0'), ('362857','2875','47733','5','0','00BFFF','0','2','0'), ('362858','2875','47738','5','1','FF0080','0','2','0'), ('362859','2875','47748','5','2','0040FF','0','2','0'), ('362860','2876','47834','5','0','00BFFF','0','2','0'), ('362861','2876','47839','5','1','FF0080','0','2','0'), ('362862','2876','47849','5','2','0040FF','0','2','0'), ('362863','2877','47734','5','0','00BFFF','0','2','0'), ('362864','2877','47739','5','1','FF0080','0','2','0'), ('362865','2877','47749','5','2','0040FF','0','2','0'), ('362866','2878','47835','5','0','00BFFF','0','2','0'), ('362867','2878','47840','5','1','FF0080','0','2','0'), ('362868','2878','47850','5','2','0040FF','0','2','0'), ('362869','2879','47751','5','0','00BFFF','0','2','0'), ('362870','2879','47752','5','1','FF0080','0','2','0'), ('362871','2879','47753','5','2','0040FF','0','2','0'), ('362872','2880','47852','5','0','00BFFF','0','2','0'), ('362873','2880','47853','5','1','FF0080','0','2','0'), ('362874','2880','47854','5','2','0040FF','0','2','0'), ('362875','2881','47750','0','0','0040FF','0','2','0'), ('362876','2881','47740','0','1','00BFFF','0','2','0'), ('362877','2882','47851','0','0','0040FF','0','2','0'), ('362878','2882','47841','0','1','00BFFF','0','2','0'), ('362879','2883','47763','5','0','0040FF','0','2','0'), ('362880','2884','47871','5','0','0040FF','0','2','0'), ('362881','2885','47765','5','0','00BFFF','0','2','0'), ('362882','2885','47768','5','1','FF0080','0','2','0'), ('362883','2885','47775','5','2','0040FF','0','2','0'), ('362884','2886','47873','5','0','00BFFF','0','2','0'), ('362885','2886','47876','5','1','FF0080','0','2','0'), ('362886','2886','47883','5','2','0040FF','0','2','0'), ('362887','2887','47766','5','0','00BFFF','0','2','0'), ('362888','2887','47769','5','1','FF0080','0','2','0'), ('362889','2887','47776','5','2','0040FF','0','2','0'), ('362890','2888','47874','5','0','00BFFF','0','2','0'), ('362891','2888','47877','5','1','FF0080','0','2','0'), ('362892','2888','47884','5','2','0040FF','0','2','0'), ('362893','2889','47777','5','0','00BFFF','0','2','0'), ('362894','2889','47778','5','1','FF0080','0','2','0'), ('362895','2889','47779','5','2','0040FF','0','2','0'), ('362896','2890','47885','5','0','00BFFF','0','2','0'), ('362897','2890','47886','5','1','FF0080','0','2','0'), ('362898','2890','47887','5','2','0040FF','0','2','0'), ('362899','2891','47780','5','0','FF465C','0','2','0'), ('362900','2892','47888','5','0','FF465C','0','2','0'), ('362901','2893','47890','5','0','0040FF','0','2','0'), ('362902','2894','47892','5','0','FF465C','0','2','0'), ('362903','2895','47732','5','0','00BFFF','0','2','0'), ('362904','2895','47764','5','1','FF0080','0','2','0'), ('362905','2895','47785','5','2','0040FF','0','2','0'), ('362906','2896','47751','5','0','00BFFF','0','2','0'), ('362907','2896','47777','5','1','FF0080','0','2','0'), ('362908','2896','47802','5','2','0040FF','0','2','0'), ('362909','2897','47852','5','0','00BFFF','0','2','0'), ('362910','2897','47885','5','1','FF0080','0','2','0'), ('362911','2897','47911','5','2','0040FF','0','2','0'), ('362912','2898','47785','5','0','00BFFF','0','2','0'), ('362913','2898','47788','5','1','FF0080','0','2','0'), ('362914','2898','47797','5','2','0040FF','0','2','0'), ('362915','2899','47894','5','0','00BFFF','0','2','0'), ('362916','2899','47897','5','1','FF0080','0','2','0'), ('362917','2899','47906','5','2','0040FF','0','2','0'), ('362918','2900','47786','5','0','00BFFF','0','2','0'), ('362919','2900','47789','5','1','FF0080','0','2','0'), ('362920','2900','47798','5','2','0040FF','0','2','0'), ('362921','2901','47895','5','0','00BFFF','0','2','0'), ('362922','2901','47898','5','1','FF0080','0','2','0'), ('362923','2901','47907','5','2','0040FF','0','2','0'), ('362924','2902','47802','5','0','00BFFF','0','2','0'), ('362925','2902','47803','5','1','FF0080','0','2','0'), ('362926','2902','47804','5','2','0040FF','0','2','0'), ('362927','2903','47911','5','0','00BFFF','0','2','0'), ('362928','2903','47912','5','1','FF0080','0','2','0'), ('362929','2903','47913','5','2','0040FF','0','2','0'), ('362930','2904','47792','0','0','FF0080','0','2','0'), ('362931','2904','47801','0','1','00BFFF','0','2','0'), ('362932','2905','47901','0','0','FF0080','0','2','0'), ('362933','2905','47910','0','1','00BFFF','0','2','0'), ('362934','2906','47806','0','0','00BFFF','0','2','0'), ('362935','2906','47807','0','1','0040FF','0','2','0'), ('362936','2907','47915','0','0','00BFFF','0','2','0'), ('362937','2907','47916','0','1','0040FF','0','2','0'), ('362938','2908','47806','5','0','00BFFF','0','2','0'), ('362939','2908','47809','5','1','0040FF','0','2','0'), ('362940','2909','47809','0','0','00BFFF','0','2','0'), ('362941','2909','47810','0','1','0040FF','0','2','0'), ('362942','2910','47918','0','0','00BFFF','0','2','0'), ('362943','2910','47919','0','1','0040FF','0','2','0'), ('362944','2291','42731','0','0','199C0D','0','2','0'), ('362945','2292','42732','0','0','199C0D','0','2','0'), ('362946','2293','42733','0','0','199C0D','0','2','0'), ('362947','2294','42734','0','0','199C0D','0','2','0'), ('362948','2406','43586','0','0','1A7C11','0','2','0'), ('362949','2406','43566','0','1','F63100','0','2','0'), ('362950','2406','43584','0','2','2774A4','0','2','0'), ('362951','2406','43590','0','3','A54F10','0','2','0'), ('362952','2406','43585','0','4','6C59DC','1','2','0'), ('362953','2406','43579','0','5','FC6EA3','1','2','0'), ('362954','2406','43583','0','6','AC8C14','1','2','0'), ('362955','2406','43589','0','7','611F27','1','2','0'), ('362956','2407','43582','5','0','1A7C11','0','2','0'), ('362957','2407','43571','2','1','2774A4','0','2','0'), ('362958','2407','43576','0','2','F63100','1','2','0'), ('362959','2407','43587','0','3','A54F10','1','2','0'), ('362960','2407','43577','0','4','FC6EA3','1','2','0'), ('362961','2407','43588','0','5','6C59DC','1','2','0'), ('362962','2408','43575','0','0','1A7C11','0','2','0'), ('362963','2408','43581','0','1','F63100','0','2','0'), ('362964','2408','43573','0','2','2774A4','0','2','0'), ('362965','2408','43578','0','3','A54F10','0','2','0'), ('362966','2408','43574','0','4','6C59DC','1','2','0'), ('362967','2408','43580','0','5','FC6EA3','1','2','0'), ('362968','2408','43572','0','6','AC8C14','1','2','0'), ('362969','2408','43567','0','7','611F27','1','2','0'), ('362970','2409','43560','0','0','199C0D','0','2','0'), ('362971','2409','43562','0','1','F63100','0','2','0'), ('362972','2409','43561','0','2','00611C','0','2','0'), ('362973','2409','43557','0','3','F7941D','0','2','0'), ('362974','2409','43558','0','4','FC6EA3','0','2','0'), ('362975','2409','43559','0','5','6C59DC','0','2','0'), ('362976','2102','40167','0','0','1A7C11','0','2','0'), ('362977','2102','40147','0','1','F63100','0','2','0'), ('362978','2102','40165','0','2','2774A4','0','2','0'), ('362979','2102','40171','0','3','A54F10','0','2','0'), ('362980','2102','40166','0','4','6C59DC','1','2','0'), ('362981','2102','40160','0','5','FC6EA3','1','2','0'), ('362982','2102','40164','0','6','AC8C14','1','2','0'), ('362983','2102','40170','0','7','611F27','1','2','0'), ('362984','2103','40163','5','0','1A7C11','0','2','0'), ('362985','2103','40152','2','1','2774A4','0','2','0'), ('362986','2103','40157','0','2','F63100','1','2','0'), ('362987','2103','40168','0','3','A54F10','1','2','0'), ('362988','2103','40158','0','4','FC6EA3','1','2','0'), ('362989','2103','40169','0','5','6C59DC','1','2','0'), ('362990','2104','40156','0','0','1A7C11','0','2','0'), ('362991','2104','40162','0','1','F63100','0','2','0'), ('362992','2104','40154','0','2','2774A4','0','2','0'), ('362993','2104','40159','0','3','A54F10','0','2','0'), ('362994','2104','40155','0','4','6C59DC','1','2','0'), ('362995','2104','40161','0','5','FC6EA3','1','2','0'), ('362996','2104','40153','0','6','AC8C14','1','2','0'), ('362997','2104','40148','0','7','611F27','1','2','0'), ('362998','2110','40124','0','0','199C0D','0','2','0'), ('362999','2110','40122','0','1','F63100','0','2','0'), ('363000','2110','40123','0','2','00611C','0','2','0'), ('363001','2110','40126','0','3','F7941D','0','2','0'), ('363002','2110','40117','0','4','FC6EA3','0','2','0'), ('363003','2110','40125','0','5','6C59DC','0','2','0'), ('363004','2459','44358','2','0','199C0D','0','2','0'), ('363005','2459','44357','2','1','F63100','0','2','0'), ('363006','1262','31592','0','0','199C0D','0','2','0'), ('363007','1262','31584','0','1','F63100','0','2','0'), ('363008','1262','31582','0','2','00611C','0','2','0'), ('363009','1262','31585','0','3','F7941D','0','2','0'), ('363010','1263','31591','0','0','199C0D','0','2','0'), ('363011','1263','31583','0','1','F63100','0','2','0'), ('363012','1263','31590','0','2','00611C','0','2','0'), ('363013','2911','47984','2','0','199C0D','0','2','0'), ('363014','2911','47983','2','1','F63100','0','2','0'), ('363015','2912','47971','0','0','199C0D','0','2','0'), ('363016','2912','47970','0','1','F63100','0','2','0'), ('363017','2912','47972','0','2','00611C','0','2','0'), ('363018','2912','47969','0','3','F7941D','0','2','0'), ('363019','2913','47964','0','0','199C0D','0','2','0'), ('363020','2913','47963','0','1','F63100','0','2','0'), ('363021','2913','47965','0','2','00611C','0','2','0'), ('363022','1264','31602','0','0','199C0D','0','2','0'), ('363023','1264','31597','0','1','F63100','0','2','0'), ('363024','1264','31601','0','2','00611C','0','2','0'), ('363025','1264','31604','0','3','F7941D','0','2','0'), ('363026','1265','31609','0','0','199C0D','0','2','0'), ('363027','1265','31610','0','1','F63100','0','2','0'), ('363028','1265','31608','0','2','00611C','0','2','0'), ('363029','2477','44652','2','0','199C0D','0','2','0'), ('363030','2477','44649','2','1','F63100','0','2','0'), ('363031','2295','42752','5','0','199C0D','0','2','0'), ('363032','2914','47985','5','0','199C0D','0','2','0'), ('363033','2914','47986','5','1','F63100','0','2','0'), ('363034','2296','42754','5','0','199C0D','0','2','0'), ('363035','2296','42753','5','1','F63100','0','2','0'), ('363036','2297','42756','5','0','199C0D','0','2','0'), ('363037','2297','42755','5','1','F63100','0','2','0'), ('363038','2298','42757','5','0','199C0D','0','2','0'), ('363039','2298','42758','5','1','F63100','0','2','0'), ('363040','2299','42761','5','0','199C0D','0','2','0'), ('363041','2299','42769','5','1','F63100','0','2','0'), ('363042','2299','42776','5','2','00611C','0','2','0'), ('363043','2300','42773','5','0','199C0D','0','2','0'), ('363044','2300','42774','5','1','F63100','0','2','0'), ('363045','2301','42772','5','0','199C0D','0','2','0'), ('363046','2301','42771','5','1','F63100','0','2','0'), ('363047','2302','42767','5','0','199C0D','0','2','0'), ('363048','2302','42762','5','1','F63100','0','2','0'), ('363049','2303','42765','5','0','199C0D','0','2','0'), ('363050','2303','42766','5','1','F63100','0','2','0'), ('363051','2304','42779','5','0','199C0D','0','2','0'), ('363052','2305','42781','5','0','199C0D','0','2','0'), ('363053','2305','42780','5','1','F63100','0','2','0'), ('363054','2306','42783','5','0','199C0D','0','2','0'), ('363055','2306','42782','5','1','F63100','0','2','0'), ('363056','2355','42784','5','0','199C0D','0','2','0'), ('363057','2355','42785','5','1','F63100','0','2','0'), ('363058','2308','42789','5','0','199C0D','0','2','0'), ('363059','2308','42790','5','1','F63100','0','2','0'), ('363060','2460','44368','2','0','199C0D','0','2','0'), ('363061','2460','44367','2','1','F63100','0','2','0'), ('363062','1001','29729','0','0','199C0D','0','2','0'), ('363063','1001','29728','0','1','F63100','0','2','0'), ('363064','1001','29727','0','2','00611C','0','2','0'), ('363065','1001','29725','0','3','F7941D','0','2','0'), ('363066','1001','29723','0','4','FC6EA3','0','2','0'), ('363067','1001','29733','0','5','6C59DC','0','2','0'), ('363068','1001','29737','0','6','C7A72D','0','2','0'), ('363069','1001','29731','0','7','BA2A5D','0','2','0'), ('363070','1000','29720','0','0','199C0D','0','2','0'), ('363071','1000','29730','0','1','F63100','0','2','0'), ('363072','1000','29721','0','2','00611C','0','2','0'), ('363073','1000','29726','0','3','F7941D','0','2','0'), ('363074','1000','29724','0','4','FC6EA3','0','2','0'), ('363075','1000','29734','0','5','6C59DC','0','2','0'), ('363076','1000','29722','0','6','C7A72D','0','2','0'), ('363077','1000','29732','0','7','BA2A5D','0','2','0'), ('363078','1027','30022','0','0','199C0D','0','2','0'), ('363079','1027','30021','0','1','F63100','0','2','0'), ('363080','1027','30019','0','2','00611C','0','2','0'), ('363081','1008','29698','5','0','199C0D','0','2','0'), ('363082','1008','29700','2','1','FF0000','0','2','0'), ('363083','1007','29691','0','0','199C0D','0','2','0'), ('363084','1009','29687','5','0','199C0D','0','2','0'), ('363085','1009','29694','2','1','FF0000','0','2','0'), ('363086','1029','30017','0','0','199C0D','0','2','0'), ('363087','1029','30016','0','1','F63100','0','2','0'), ('363088','1029','30015','0','2','00611C','0','2','0'), ('363089','1031','30007','0','0','199C0D','0','2','0'), ('363090','1031','30013','0','1','F63100','0','2','0'), ('363091','1031','30011','0','2','00611C','0','2','0'), ('363092','1031','30009','0','3','F7941D','0','2','0'), ('363093','1031','30005','0','4','FC6EA3','0','2','0'), ('363094','1031','30003','0','5','6C59DC','0','2','0'), ('363095','1031','30023','0','6','C7A72D','0','2','0'), ('363096','1031','30001','0','7','BA2A5D','0','2','0'), ('363097','1030','30008','0','0','199C0D','0','2','0'), ('363098','1030','30014','0','1','F63100','0','2','0'), ('363099','1030','30012','0','2','00611C','0','2','0'), ('363100','1030','30010','0','3','F7941D','0','2','0'), ('363101','1030','30006','0','4','FC6EA3','0','2','0'), ('363102','1030','30004','0','5','6C59DC','0','2','0'), ('363103','1030','30000','0','6','C7A72D','0','2','0'), ('363104','1030','30002','0','7','BA2A5D','0','2','0'), ('363105','1011','29695','2','0','199C0D','0','2','0'), ('363106','1028','30020','5','0','199C0D','0','2','0'), ('363107','1010','29701','5','0','199C0D','0','2','0'), ('363108','1010','29697','0','1','F63100','0','2','0'), ('363109','1012','29692','0','0','199C0D','0','2','0'), ('363110','1015','29812','0','0','199C0D','0','2','0'), ('363111','1015','29811','0','1','F63100','0','2','0'), ('363112','1015','29810','0','2','00611C','0','2','0'), ('363113','1015','29808','0','3','F7941D','0','2','0'), ('363114','1015','29806','0','4','FC6EA3','0','2','0'), ('363115','1015','29816','0','5','6C59DC','0','2','0'), ('363116','1015','29820','0','6','C7A72D','0','2','0'), ('363117','1015','29814','0','7','BA2A5D','0','2','0'), ('363118','1014','29803','0','0','199C0D','0','2','0'), ('363119','1014','29813','0','1','F63100','0','2','0'), ('363120','1014','29804','0','2','00611C','0','2','0'), ('363121','1014','29809','0','3','F7941D','0','2','0'), ('363122','1014','29807','0','4','FC6EA3','0','2','0'), ('363123','1014','29817','0','5','6C59DC','0','2','0'), ('363124','1014','29805','0','6','C7A72D','0','2','0'), ('363125','1014','29815','0','7','BA2A5D','0','2','0'), ('363126','1016','29768','0','0','199C0D','0','2','0'), ('363127','1016','29767','0','1','F63100','0','2','0'), ('363128','1016','29765','0','2','00611C','0','2','0'), ('363129','1022','29782','5','0','199C0D','0','2','0'), ('363130','1022','29781','2','1','FF0000','0','2','0'), ('363131','1021','29783','0','0','199C0D','0','2','0'), ('363132','1023','29780','5','0','199C0D','0','2','0'), ('363133','1023','29784','2','1','FF0000','0','2','0'), ('363134','1018','29763','0','0','199C0D','0','2','0'), ('363135','1018','29762','0','1','F63100','0','2','0'), ('363136','1018','29761','0','2','00611C','0','2','0'), ('363137','1020','29753','0','0','199C0D','0','2','0'), ('363138','1020','29759','0','1','F63100','0','2','0'), ('363139','1020','29757','0','2','00611C','0','2','0'), ('363140','1020','29755','0','3','F7941D','0','2','0'), ('363141','1020','29751','0','4','FC6EA3','0','2','0'), ('363142','1020','29749','0','5','6C59DC','0','2','0'), ('363143','1020','29769','0','6','C7A72D','0','2','0'), ('363144','1020','29747','0','7','BA2A5D','0','2','0'), ('363145','1019','29754','0','0','199C0D','0','2','0'), ('363146','1019','29760','0','1','F63100','0','2','0'), ('363147','1019','29758','0','2','00611C','0','2','0'), ('363148','1019','29756','0','3','F7941D','0','2','0'), ('363149','1019','29752','0','4','FC6EA3','0','2','0'), ('363150','1019','29750','0','5','6C59DC','0','2','0'), ('363151','1019','29746','0','6','C7A72D','0','2','0'), ('363152','1019','29748','0','7','BA2A5D','0','2','0'), ('363153','1025','29775','2','0','199C0D','0','2','0'), ('363154','1017','29766','5','0','199C0D','0','2','0'), ('363155','1024','29776','5','0','199C0D','0','2','0'), ('363156','1024','29777','0','1','F63100','0','2','0'), ('363157','1026','29772','0','0','199C0D','0','2','0'), ('363158','1356','32276','0','0','199C0D','0','2','0'), ('363159','1356','32275','0','1','F63100','0','2','0'), ('363160','1357','32281','0','0','199C0D','0','2','0'), ('363161','1357','32267','0','1','F63100','0','2','0'), ('363162','1357','32279','0','2','00611C','0','2','0'), ('363163','1358','32268','0','0','199C0D','0','2','0'), ('363164','1358','32274','0','1','F63100','0','2','0'), ('363165','1358','32271','0','2','00611C','0','2','0'), ('363166','1359','32288','0','0','199C0D','0','2','0'), ('363167','1359','32291','0','1','F63100','0','2','0'), ('363168','1360','32247','0','0','199C0D','0','2','0'), ('363169','1360','32245','0','1','F63100','0','2','0'), ('363170','1360','32246','0','2','00611C','0','2','0'), ('363171','1361','32248','0','0','199C0D','0','2','0'), ('363172','1361','32249','0','1','F63100','0','2','0'), ('363173','1361','32250','0','2','00611C','0','2','0'), ('363174','1362','32240','0','0','199C0D','0','2','0'), ('363175','1362','32273','0','1','F63100','0','2','0'), ('363176','1363','32282','0','0','199C0D','0','2','0'), ('363177','1363','32283','0','1','F63100','0','2','0'), ('363178','1363','32289','0','2','00611C','0','2','0'), ('363179','1363','32290','0','3','F7941D','0','2','0'), ('363180','1363','32286','0','4','FC6EA3','0','2','0'), ('363181','1363','32287','0','5','6C59DC','0','2','0'), ('363182','1363','32241','0','6','C7A72D','0','2','0'), ('363183','1363','32242','0','7','BA2A5D','0','2','0'), ('363184','1363','32243','0','8','F230E0','0','2','0'), ('363185','1363','32244','0','9','5CCD18','0','2','0'), ('363186','1363','32277','0','10','BB2A02','0','2','0'), ('363187','1363','32278','0','11','AC41A5','0','2','0'), ('363188','1427','32768','5','0','199C0D','0','2','0'), ('363189','1427','32767','5','1','F63100','0','2','0'), ('363190','1428','32774','5','0','199C0D','0','2','0'), ('363191','1428','32772','5','1','F63100','0','2','0'), ('363192','1428','32775','5','2','00611C','0','2','0'), ('363193','1428','32773','5','3','F7941D','0','2','0'), ('363194','1429','32779','5','0','199C0D','0','2','0'), ('363195','1429','32777','5','1','F63100','0','2','0'), ('363196','1429','32778','5','2','00611C','0','2','0'), ('363197','1806','36785','0','0','199C0D','0','2','0'), ('363198','1806','36786','0','1','F63100','0','2','0'), ('363199','1806','36787','0','2','00611C','0','2','0'), ('363200','2309','42845','0','0','199C0D','0','2','0'), ('363201','2309','42846','0','1','F63100','0','2','0'), ('363202','2309','42844','0','2','00611C','0','2','0'), ('363203','2309','42843','0','3','F7941D','0','2','0'), ('363204','2309','42842','0','4','FC6EA3','0','2','0'), ('363205','2310','42876','5','0','199C0D','0','2','0'), ('363206','3107','49939','5','0','199C0D','0','2','0'), ('363207','3107','49942','2','1','F63100','0','2','0'), ('363208','3107','49941','0','2','00611C','1','2','0'), ('363209','3107','49938','0','3','F7941D','1','2','0'), ('363210','3107','49940','0','4','FC6EA3','1','2','0'), ('363211','3107','49937','0','5','6C59DC','1','2','0'), ('363212','2482','42856','0','0','199C0D','0','2','0'), ('363213','2312','42859','0','0','969696','0','9','2'), ('363214','2312','42860','0','1','C80000','0','9','0'), ('363215','2313','42864','0','0','199C0D','0','2','0'), ('363216','2313','42868','5','1','F63100','0','2','0'), ('363217','2314','42866','0','0','969696','0','9','2'), ('363218','2314','42867','0','1','C80000','0','9','0'), ('363219','2315','42871','0','0','969696','0','9','2'), ('363220','2315','42872','0','1','C80000','0','9','0'), ('363221','2316','42873','0','0','199C0D','0','2','0'), ('363222','2316','42875','5','1','F63100','0','2','0'), ('363223','2317','42824','0','0','199C0D','0','2','0'), ('363224','2317','42811','0','1','F63100','0','2','0'), ('363225','2318','42822','0','0','199C0D','0','2','0'), ('363226','2318','42817','0','1','F63100','0','2','0'), ('363227','2319','42809','2','0','199C0D','0','2','0'), ('363228','2319','42805','5','1','F63100','0','2','0'), ('363229','2320','42810','5','0','199C0D','0','2','0'), ('363230','2321','42827','0','0','199C0D','0','2','0'), ('363231','2321','42829','0','1','F63100','0','2','0'), ('363232','2322','42818','0','0','199C0D','0','2','0'), ('363233','2322','42819','0','1','F63100','0','2','0'), ('363234','2322','42820','0','2','00611C','0','2','0'), ('363235','2322','42821','0','3','F7941D','1','2','0'), ('363236','1430','32837','2','0','199C0D','0','2','0'), ('363237','1430','32836','2','1','F63100','0','2','0'), ('363238','1430','32835','2','2','00611C','0','2','0'), ('363239','1431','32856','5','0','199C0D','0','2','0'), ('363240','1432','32828','5','0','199C0D','0','2','0'), ('363241','1433','32847','5','0','34bdeb','0','2','0'), ('363242','1434','32797','5','0','199C0D','0','2','0'), ('363243','1434','32796','5','1','F63100','0','2','0'), ('363244','1434','32801','2','2','00611C','0','2','0'), ('363245','1435','32834','5','0','199C0D','0','2','0'), ('363246','1436','32819','5','0','199C0D','0','2','0'), ('363247','1437','32826','5','0','199C0D','0','2','0'), ('363248','2792','47133','0','0','199C0D','0','2','0'), ('363249','2792','47141','0','1','F63100','0','2','0'), ('363250','2792','47142','0','2','00611C','0','2','0'), ('363251','2792','47134','0','3','F7941D','0','2','0'), ('363252','2792','47138','0','4','FC6EA3','0','2','0'), ('363253','2792','47140','0','5','6C59DC','0','2','0'), ('363254','2792','47137','0','6','C7A72D','0','2','0'), ('363255','2792','47139','0','7','BA2A5D','0','2','0'), ('363256','2793','47145','0','0','199C0D','0','2','0'), ('363257','2793','47153','0','1','F63100','0','2','0'), ('363258','2793','47154','0','2','00611C','0','2','0'), ('363259','2793','47146','0','3','F7941D','0','2','0'), ('363260','2793','47148','0','4','FC6EA3','0','2','0'), ('363261','2793','47152','0','5','6C59DC','0','2','0'), ('363262','2793','47150','0','6','C7A72D','0','2','0'), ('363263','2793','47151','0','7','BA2A5D','0','2','0'), ('363264','1614','34976','0','0','199C0D','0','2','0'), ('363265','1614','34975','0','1','F63100','0','2','0'), ('363266','1614','34978','0','2','00611C','0','2','0'), ('363267','1614','34979','0','3','F7941D','0','2','0'), ('363268','1614','34980','0','4','FC6EA3','0','2','0'), ('363269','1615','34982','0','0','199C0D','0','2','0'), ('363270','1615','34997','0','1','F63100','0','2','0'), ('363271','1615','35001','0','2','00611C','0','2','0'), ('363272','1615','35000','0','3','F7941D','0','2','0'), ('363273','1615','34998','0','4','FC6EA3','0','2','0'), ('363274','1615','34996','0','5','6C59DC','0','2','0'), ('363275','1616','35015','0','0','199C0D','0','2','0'), ('363276','1616','35014','0','1','F63100','0','2','0'), ('363277','1617','35012','0','0','199C0D','0','2','0'), ('363278','1617','35013','0','1','F63100','0','2','0'), ('363279','1618','34951','0','0','199C0D','0','2','0'), ('363280','1618','34952','0','1','F63100','0','2','0'), ('363281','1618','34953','0','2','00611C','0','2','0'), ('363282','1618','34954','0','3','F7941D','0','2','0'), ('363283','1618','34956','0','4','FC6EA3','0','2','0'), ('363284','1618','34950','0','5','6C59DC','0','2','0'), ('363285','1618','34957','0','6','C7A72D','0','2','0'), ('363286','1618','34959','0','7','BA2A5D','0','2','0'), ('363287','1618','34965','0','8','F230E0','0','2','0'), ('363288','1438','33001','0','0','199C0D','0','2','0'), ('363289','1438','33002','0','1','F63100','0','2','0'), ('363290','1438','33000','2','2','00611C','0','2','0'), ('363291','1439','33005','0','0','199C0D','0','2','0'), ('363292','1439','33004','0','1','F63100','0','2','0'), ('363293','1440','32980','0','0','199C0D','0','2','0'), ('363294','1440','32970','0','1','F63100','0','2','0'), ('363295','1441','32967','0','0','199C0D','0','2','0'), ('363296','1441','32968','0','1','F63100','0','2','0'), ('363297','1441','32995','2','2','00611C','0','2','0'), ('363298','1442','32997','0','0','199C0D','0','2','0'), ('363299','1442','32984','0','1','F63100','0','2','0'), ('363300','1443','32973','0','0','199C0D','0','2','0'), ('363301','1443','32971','0','1','F63100','0','2','0'), ('363302','1503','33518','5','0','1A7C11','0','2','0'), ('363303','1504','33501','0','0','1A7C11','0','2','0'), ('363304','2524','45526','5','0','2E7D32','0','2','0'), ('363305','2525','45527','5','0','2E7D32','0','2','0'), ('363306','2526','45528','5','0','2E7D32','0','2','0'), ('363307','2399','43533','0','0','199C0D','0','2','0'), ('363308','2399','43531','0','1','F63100','0','2','0'), ('363309','2400','43532','0','0','199C0D','0','2','0'), ('363310','2400','43537','0','1','F63100','0','2','0'), ('363311','2401','43534','0','0','199C0D','0','2','0'), ('363312','2401','43535','0','1','F63100','0','2','0'), ('363313','2527','45546','5','0','2196F3','0','2','0'), ('363314','2528','45549','5','0','2196F3','0','2','0'), ('363315','2529','45552','0','0','199C0D','0','2','0'), ('363316','2529','45553','0','1','F63100','0','2','0'), ('363317','2533','45578','5','0','2196F3','0','2','0'), ('363318','2534','45583','5','0','2196F3','0','2','0'), ('363319','2535','45586','0','0','199C0D','0','2','0'), ('363320','2535','45587','0','1','F63100','0','2','0'), ('363321','2620','46488','5','0','199C0D','0','2','0'), ('363322','2621','46489','5','0','199C0D','0','2','0'), ('363323','2622','46490','5','0','199C0D','0','2','0'), ('363324','2626','46491','2','0','199C0D','0','2','0'), ('363325','2626','46492','2','1','F63100','0','2','0'), ('363326','2626','46493','2','2','00611C','0','2','0'), ('363327','2626','46494','2','3','F7941D','0','2','0'), ('363328','2623','46497','5','0','FF0000','0','2','0'), ('363329','2624','46499','5','0','FF0000','0','2','0'), ('363330','2625','46500','5','0','FF0000','0','2','0'), ('363331','2750','47109','5','0','199C0D','0','2','0'), ('363332','2751','47110','5','0','FF0000','0','2','0'), ('363333','2410','43652','0','0','199C0D','0','2','0'), ('363334','2410','43658','0','1','F63100','0','2','0'), ('363335','2411','43653','0','0','199C0D','0','2','0'), ('363336','2411','43659','0','1','F63100','0','2','0'), ('363337','2412','43678','0','0','199C0D','0','2','0'), ('363338','2412','43673','0','1','F63100','0','2','0'), ('363339','2413','43677','0','0','199C0D','0','2','0'), ('363340','2413','43664','0','1','F63100','0','2','0'), ('363341','2414','43672','0','0','199C0D','0','2','0'), ('363342','2414','43676','0','1','F63100','0','2','0'), ('363343','2414','43665','0','2','00611C','0','2','0'), ('363344','2415','43671','0','0','199C0D','0','2','0'), ('363345','2415','43675','0','1','F63100','0','2','0'), ('363346','2415','43683','0','2','00611C','0','2','0'), ('363347','2402','43520','0','0','199C0D','0','2','0'), ('363348','2402','43518','0','1','F63100','0','2','0'), ('363349','2403','43519','0','0','199C0D','0','2','0'), ('363350','2403','43517','0','1','F63100','0','2','0'), ('363351','2404','43506','0','0','199C0D','0','2','0'), ('363352','2404','43505','0','1','F63100','0','2','0'), ('363353','2405','43508','0','0','199C0D','0','2','0'), ('363354','2405','43507','0','1','F63100','0','2','0'), ('363355','2530','45535','5','0','2196F3','0','2','0'), ('363356','2536','45564','5','0','2196F3','0','2','0'), ('363357','2537','45565','5','0','2196F3','0','2','0'), ('363358','2531','45536','5','0','2196F3','0','2','0'), ('363359','2538','45568','5','0','2196F3','0','2','0'), ('363360','2532','45538','0','0','199C0D','0','2','0'), ('363361','2532','45539','0','1','F63100','0','2','0'), ('363362','2539','45570','0','0','199C0D','0','2','0'), ('363363','2539','45571','0','1','F63100','0','2','0'), ('363364','2627','46454','2','0','199C0D','0','2','0'), ('363365','2627','46474','2','1','F63100','0','2','0'), ('363366','2627','46477','2','2','00611C','0','2','0'), ('363367','2627','46480','2','3','F7941D','0','2','0'), ('363368','2628','46461','5','0','199C0D','0','2','0'), ('363369','2628','46476','5','1','F63100','1','2','0'), ('363370','2629','46463','2','0','199C0D','0','2','0'), ('363371','2629','46464','2','1','F63100','0','2','0'), ('363372','2629','46465','2','2','00611C','0','2','0'), ('363373','2630','46478','5','0','199C0D','0','2','0'), ('363374','2630','46481','5','1','F63100','1','2','0'), ('363375','2752','47072','5','0','199C0D','0','2','0'), ('363376','2752','47083','5','1','F63100','0','2','0'), ('363377','2753','47073','5','0','199C0D','0','2','0'), ('363378','2753','47084','5','1','F63100','0','2','0'), ('363379','2754','47074','5','0','199C0D','0','2','0'), ('363380','2754','47085','5','1','F63100','0','2','0'), ('363381','2755','47075','5','0','199C0D','0','2','0'), ('363382','2755','47086','5','1','F63100','0','2','0'), ('363383','2756','47077','5','0','199C0D','0','2','0'), ('363384','2756','47089','5','1','F63100','1','2','0'), ('363385','2757','47078','5','0','199C0D','0','2','0'), ('363386','2757','47090','5','1','F63100','1','2','0'), ('363387','2758','47079','5','0','199C0D','0','2','0'), ('363388','2758','47091','5','1','F63100','1','2','0'), ('363389','2759','47080','5','0','199C0D','0','2','0'), ('363390','2759','47092','5','1','F63100','1','2','0'), ('363391','2760','47083','2','0','199C0D','0','2','0'), ('363392','2760','47084','2','1','F63100','0','2','0'), ('363393','2760','47085','2','2','00611C','0','2','0'), ('363394','2760','47086','2','3','F7941D','0','2','0'), ('363395','2761','47087','5','0','199C0D','0','2','0'), ('363396','2762','47094','5','0','199C0D','0','2','0'), ('363397','2762','47097','5','1','F63100','0','2','0'), ('363398','2763','47095','5','0','199C0D','0','2','0'), ('363399','2763','47098','5','1','F63100','0','2','0'), ('363400','2764','47096','5','0','199C0D','0','2','0'), ('363401','2764','47099','5','1','F63100','0','2','0'), ('363402','2765','47101','2','0','199C0D','0','2','0'), ('363403','2765','47102','2','1','F63100','0','2','0'), ('363404','2765','47103','2','2','00611C','0','2','0'), ('363405','2766','47081','5','0','199C0D','0','2','0'), ('363406','2766','47100','5','1','F63100','0','2','0'), ('363407','2809','47285','2','0','199C0D','0','2','0'), ('363408','2810','47287','2','0','199C0D','0','2','0'), ('363409','2811','47286','2','0','199C0D','0','2','0'), ('363410','2812','47288','2','0','199C0D','0','2','0'), ('363411','2813','47290','2','0','199C0D','0','2','0'), ('363412','2814','47291','2','0','199C0D','0','2','0'), ('363413','2815','47292','2','0','199C0D','0','2','0'), ('363414','2816','47289','2','0','199C0D','0','2','0'), ('363415','2816','47294','2','1','F63100','0','2','0'), ('363416','2817','47295','2','0','199C0D','0','2','0'), ('363417','2416','43605','0','0','199C0D','0','2','0'), ('363418','2416','43612','0','1','F63100','0','2','0'), ('363419','2417','43598','0','0','199C0D','0','2','0'), ('363420','2417','43614','0','1','F63100','0','2','0'), ('363421','2418','43602','0','0','199C0D','0','2','0'), ('363422','2418','43616','0','1','F63100','0','2','0'), ('363423','2419','43613','0','0','199C0D','0','2','0'), ('363424','2419','43617','0','1','F63100','0','2','0'), ('363425','2420','43599','0','0','199C0D','0','2','0'), ('363426','2420','43615','0','1','F63100','0','2','0'), ('363427','2421','43603','0','0','199C0D','0','2','0'), ('363428','2421','43641','0','1','F63100','0','2','0'), ('363429','2422','43618','0','0','199C0D','0','2','0'), ('363430','2422','43619','0','1','F63100','0','2','0'), ('363431','2422','43631','0','2','00611C','0','2','0'), ('363432','2483','44865','0','0','199C0D','0','2','0'), ('363433','2483','44846','0','1','F63100','0','2','0'), ('363434','2483','44832','0','2','00611C','0','2','0'), ('363435','2483','44856','0','3','F7941D','0','2','0'), ('363436','2483','44841','0','4','FC6EA3','0','2','0'), ('363437','2611','44854','0','0','199C0D','0','2','0'), ('363438','2611','44849','0','1','F63100','0','2','0'), ('363439','2611','44834','0','2','00611C','0','2','0'), ('363440','2611','44858','0','3','F7941D','0','2','0'), ('363441','2611','44823','0','4','FC6EA3','0','2','0'), ('363442','2612','44831','0','0','199C0D','0','2','0'), ('363443','2612','44851','0','1','F63100','0','2','0'), ('363444','2612','44836','0','2','00611C','0','2','0'), ('363445','2612','44859','0','3','F7941D','0','2','0'), ('363446','2612','44824','0','4','FC6EA3','0','2','0'), ('363447','2484','44840','0','0','199C0D','0','2','0'), ('363448','2484','44844','0','1','F63100','0','2','0'), ('363449','2484','44839','0','2','00611C','0','2','0'), ('363450','2484','44842','0','3','F7941D','0','2','0'), ('363451','2484','44828','0','4','FC6EA3','0','2','0'), ('363452','2613','46403','5','0','2E7D32','0','2','0'), ('363453','2614','46404','5','0','2E7D32','0','2','0'), ('363454','2615','46405','5','0','2E7D32','0','2','0'), ('363455','2616','46406','5','0','2E7D32','0','2','0'), ('363456','2617','46407','5','0','2E7D32','0','2','0'), ('363457','2953','48376','0','0','199C0D','0','2','0'), ('363458','2423','43744','0','0','199C0D','0','2','0'), ('363459','2423','43761','0','1','F63100','0','2','0'), ('363460','2424','43755','0','0','199C0D','0','2','0'), ('363461','2424','43762','0','1','F63100','0','2','0'), ('363462','2425','43764','0','0','199C0D','0','2','0'), ('363463','2425','43766','0','1','F63100','0','2','0'), ('363464','2426','43765','0','0','199C0D','0','2','0'), ('363465','2426','43756','0','1','F63100','0','2','0'), ('363466','2427','43742','0','0','199C0D','0','2','0'), ('363467','2427','43741','0','1','F63100','0','2','0'), ('363468','2427','43729','0','2','00611C','0','2','0'), ('363469','2427','43719','0','3','F7941D','0','2','0'), ('363470','2428','43721','0','0','199C0D','0','2','0'), ('363471','2428','43722','0','1','F63100','0','2','0'), ('363472','2429','43718','0','0','199C0D','0','2','0'), ('363473','2429','43734','0','1','F63100','0','2','0'), ('363474','2430','43728','0','0','199C0D','0','2','0'), ('363475','2430','43735','0','1','F63100','0','2','0'), ('363476','2618','43749','0','0','199C0D','0','2','0'), ('363477','2431','43736','0','0','199C0D','0','2','0'), ('363478','2431','43737','0','1','F63100','0','2','0'), ('363479','2432','43738','0','0','199C0D','0','2','0'), ('363480','2432','43739','0','1','F63100','0','2','0'), ('363481','2467','44556','0','0','199C0D','0','2','0'), ('363482','2467','44557','0','1','F63100','0','2','0'), ('363483','2467','44549','0','2','00611C','0','2','0'), ('363484','3071','49393','0','0','199C0D','0','2','0'), ('363485','3071','49392','0','1','F63100','0','2','0'), ('363486','3071','49401','0','2','00611C','0','2','0'), ('363487','2468','44579','0','0','199C0D','0','2','0'), ('363488','2468','44580','0','1','F63100','0','2','0'), ('363489','2468','44572','0','2','00611C','0','2','0'), ('363490','2469','44555','0','0','199C0D','0','2','0'), ('363491','2469','44553','0','1','F63100','0','2','0'), ('363492','2470','44578','0','0','199C0D','0','2','0'), ('363493','2470','44576','0','1','F63100','0','2','0'), ('363494','3072','49398','0','0','199C0D','0','2','0'), ('363495','3072','49400','0','1','F63100','0','2','0'), ('363496','2471','44538','0','0','199C0D','0','2','0'), ('363497','2471','44543','0','1','F63100','0','2','0'), ('363498','3073','49410','0','0','199C0D','0','2','0'), ('363499','3073','49407','0','1','F63100','0','2','0'), ('363500','2472','44565','0','0','199C0D','0','2','0'), ('363501','2472','44567','0','1','F63100','0','2','0'), ('363502','2485','44802','0','0','199C0D','0','2','0'), ('363503','2485','44804','0','1','F63100','0','2','0'), ('363504','2485','44803','0','2','00611C','0','2','0'), ('363505','2485','44805','0','3','F7941D','0','2','0'), ('363506','2486','44817','0','0','199C0D','0','2','0'), ('363507','2486','44800','0','1','F63100','0','2','0'), ('363508','2486','44812','0','2','00611C','0','2','0'), ('363509','2486','44811','0','3','F7941D','0','2','0'), ('363510','2486','44810','0','4','FC6EA3','0','2','0'), ('363511','2487','44816','0','0','199C0D','0','2','0'), ('363512','2487','44813','0','1','F63100','0','2','0'), ('363513','2487','44814','0','2','00611C','0','2','0'), ('363514','2437','44179','0','0','199C0D','0','2','0'), ('363515','2437','44178','0','1','F63100','0','2','0'), ('363516','2437','44180','0','2','00611C','0','2','0'), ('363517','2438','44198','0','0','199C0D','0','2','0'), ('363518','2438','44197','0','1','F63100','0','2','0'), ('363519','2439','44171','0','0','199C0D','0','2','0'), ('363520','2439','44170','0','1','F63100','0','2','0'), ('363521','2440','44190','0','0','199C0D','0','2','0'), ('363522','2440','44191','0','1','F63100','0','2','0'), ('363523','2441','44184','0','0','199C0D','0','2','0'), ('363524','2441','44186','0','1','F63100','0','2','0'), ('363525','2443','44181','0','0','199C0D','0','2','0'), ('363526','2443','44166','0','1','F63100','0','2','0'), ('363527','2442','44199','0','0','199C0D','0','2','0'), ('363528','2442','44188','0','1','F63100','0','2','0'), ('363529','2445','44272','0','0','199C0D','0','2','0'), ('363530','2445','44270','0','1','F63100','0','2','0'), ('363531','2445','44271','0','2','00611C','0','2','0'), ('363532','2446','44291','0','0','199C0D','0','2','0'), ('363533','2446','44290','0','1','F63100','0','2','0'), ('363534','2447','44258','0','0','199C0D','0','2','0'), ('363535','2447','44257','0','1','F63100','0','2','0'), ('363536','2448','44285','0','0','199C0D','0','2','0'), ('363537','2448','44283','0','1','F63100','0','2','0'), ('363538','2449','44276','0','0','199C0D','0','2','0'), ('363539','2449','44278','0','1','F63100','0','2','0'), ('363540','2450','44252','0','0','199C0D','0','2','0'), ('363541','2450','44255','0','1','F63100','0','2','0'), ('363542','2451','44292','0','0','199C0D','0','2','0'), ('363543','2451','44280','0','1','F63100','0','2','0'), ('363544','2797','47230','0','0','199C0D','0','2','0'), ('363545','2798','47241','0','0','199C0D','0','2','0'), ('363546','2798','47243','0','1','F63100','0','2','0'), ('363547','2799','47240','0','0','199C0D','0','2','0'), ('363548','2799','47242','0','1','F63100','0','2','0'), ('363549','2800','47246','0','0','199C0D','0','2','0'), ('363550','2800','47248','0','1','F63100','0','2','0'), ('363551','2801','47245','0','0','199C0D','0','2','0'), ('363552','2801','47247','0','1','F63100','0','2','0'), ('363553','2802','47249','0','0','199C0D','0','2','0'), ('363554','2802','47251','0','1','F63100','0','2','0'), ('363555','2802','47250','0','2','00611C','0','2','0'), ('363556','2802','47252','0','3','F7941D','0','2','0'), ('363557','2954','48372','0','0','199C0D','0','2','0'), ('363558','2954','48373','0','1','F63100','0','2','0'), ('363559','2955','48379','0','0','199C0D','0','2','0'), ('363560','2803','47253','0','0','199C0D','0','2','0'), ('363561','2803','47254','0','1','F63100','0','2','0'), ('363562','2804','47265','0','0','199C0D','0','2','0'), ('363563','2804','47267','0','1','F63100','0','2','0'), ('363564','2805','47264','0','0','199C0D','0','2','0'), ('363565','2805','47266','0','1','F63100','0','2','0'), ('363566','2806','47268','0','0','199C0D','0','2','0'), ('363567','2806','47269','0','1','F63100','0','2','0'), ('363568','2807','47270','0','0','199C0D','0','2','0'), ('363569','2807','47271','0','1','F63100','0','2','0'), ('363570','2956','48382','0','0','199C0D','0','2','0'), ('363571','2957','48369','0','0','199C0D','0','2','0'), ('363572','2958','48375','0','0','199C0D','0','2','0'), ('363573','2808','47274','0','0','199C0D','0','2','0'), ('363574','2488','45079','5','0','199C0D','0','2','0'), ('363575','2488','45077','2','1','F63100','0','1','0'), ('363576','2489','45058','0','0','199C0D','0','2','0'), ('363577','2489','45059','0','1','F63100','0','2','0'), ('363578','2489','45055','0','2','00611C','0','2','0'), ('363579','2489','45056','0','3','F7941D','0','2','0'), ('363580','2489','45054','0','4','FC6EA3','0','2','0'), ('363581','2490','45073','0','0','199C0D','0','2','0'), ('363582','2490','45075','0','1','F63100','0','2','0'), ('363583','2491','45074','0','0','199C0D','0','2','0'), ('363584','2491','45076','0','1','F63100','0','2','0'), ('363585','2492','44917','0','0','199C0D','0','2','0'), ('363586','2492','44919','0','1','F63100','0','2','0'), ('363587','2493','44915','2','0','199C0D','0','1','0'), ('363588','2493','44907','5','1','F63100','0','2','0'), ('363589','2494','44897','0','0','199C0D','0','2','0'), ('363590','2494','44904','0','1','F63100','0','2','0'), ('363591','2495','44890','2','0','199C0D','0','1','0'), ('363592','2495','44892','5','1','F63100','0','2','0'), ('363593','2496','44921','0','0','199C0D','0','2','0'), ('363594','2496','44922','0','1','F63100','0','2','0'), ('363595','2496','44923','0','2','00611C','0','2','0'), ('363596','2496','44905','0','3','F7941D','0','2','0'), ('363597','2497','44889','0','0','199C0D','0','2','0'), ('363598','2497','44896','0','1','F63100','0','2','0'), ('363599','2498','44925','0','0','199C0D','0','2','0'), ('363600','2498','44927','0','1','F63100','0','2','0'), ('363601','2498','44929','0','2','00611C','0','2','0'), ('363602','2499','44898','0','0','199C0D','0','2','0'), ('363603','2499','44899','0','1','F63100','0','2','0'), ('363604','2499','44900','0','2','00611C','0','2','0'), ('363605','2499','44901','0','3','F7941D','0','2','0'), ('363606','2499','44902','0','4','FC6EA3','0','2','0'), ('363607','2499','44903','0','5','6C59DC','0','2','0'), ('363608','2499','44924','0','6','C7A72D','0','2','0'), ('363609','2500','44954','0','0','199C0D','0','2','0'), ('363610','2500','44952','0','1','F63100','0','2','0'), ('363611','2501','44955','2','0','199C0D','0','1','0'), ('363612','2501','44956','5','1','F63100','0','2','0'), ('363613','2502','44961','0','0','199C0D','0','2','0'), ('363614','2502','44962','0','1','F63100','0','2','0'), ('363615','2503','44943','2','0','199C0D','0','1','0'), ('363616','2503','44941','5','1','F63100','0','2','0'), ('363617','2504','44938','0','0','199C0D','0','2','0'), ('363618','2504','44937','0','1','F63100','0','2','0'), ('363619','2505','44950','0','0','199C0D','0','2','0'), ('363620','2505','44951','0','1','F63100','0','2','0'), ('363621','2505','44949','0','2','00611C','0','2','0'), ('363622','2505','44946','0','3','F7941D','0','2','0'), ('363623','2505','44944','0','4','FC6EA3','0','2','0'), ('363624','2506','44932','0','0','199C0D','0','2','0'), ('363625','2506','44958','0','1','F63100','0','2','0'), ('363626','2507','44985','0','0','199C0D','0','2','0'), ('363627','2507','44983','0','1','F63100','0','2','0'), ('363628','2508','44986','2','0','199C0D','0','1','0'), ('363629','2508','44987','5','1','F63100','0','2','0'), ('363630','2509','44993','0','0','199C0D','0','2','0'), ('363631','2509','44995','0','1','F63100','0','2','0'), ('363632','2509','44990','0','2','00611C','0','2','0'), ('363633','2509','44994','0','3','F7941D','0','2','0'), ('363634','2509','44996','0','4','FC6EA3','0','2','0'), ('363635','2509','44998','0','5','6C59DC','0','2','0'), ('363636','2510','44982','2','0','199C0D','0','1','0'), ('363637','2510','44980','5','1','F63100','0','2','0'), ('363638','2511','44978','0','0','199C0D','0','2','0'), ('363639','2511','44976','0','1','F63100','0','2','0'), ('363640','2512','44974','0','0','199C0D','0','2','0'), ('363641','2512','44972','0','1','F63100','0','2','0'), ('363642','2512','44973','0','2','00611C','0','2','0'), ('363643','2512','44971','0','3','F7941D','0','2','0'), ('363644','2513','44968','0','0','199C0D','0','2','0'), ('363645','2513','44967','0','1','F63100','0','2','0'), ('363646','2514','44991','0','0','199C0D','0','2','0'), ('363647','2514','44992','0','1','F63100','0','2','0'), ('363648','2515','45025','0','0','199C0D','0','2','0'), ('363649','2515','45024','0','1','F63100','0','2','0'), ('363650','2516','45012','0','0','199C0D','0','2','0'), ('363651','2516','45013','0','1','F63100','0','2','0'), ('363652','2517','45016','2','0','199C0D','0','2','0'), ('363653','2517','45015','5','1','F63100','0','2','0'), ('363654','2518','45022','0','0','199C0D','0','2','0'), ('363655','2518','45011','0','1','F63100','0','2','0'), ('363656','2518','45010','0','2','00611C','0','2','0'), ('363657','2518','45007','0','3','F7941D','0','2','0'), ('363658','2518','45006','0','4','FC6EA3','0','2','0'), ('363659','2518','45003','0','5','6C59DC','0','2','0'), ('363660','2540','45631','0','0','199C0D','0','2','0'), ('363661','2541','45632','0','0','199C0D','0','2','0'), ('363662','2542','45633','0','0','199C0D','0','2','0'), ('363663','2543','45634','0','0','199C0D','0','2','0'), ('363664','2544','45606','0','0','00FF00','0','2','0'), ('363665','2544','45607','4','1','FF0000','0','2','0'), ('363666','2545','45608','0','0','00FF00','0','2','0'), ('363667','2545','45609','4','1','FF0000','0','2','0'), ('363668','2546','45610','0','0','00FF00','0','2','0'), ('363669','2546','45611','4','1','FF0000','0','2','0'), ('363670','2686','46947','0','0','00D936','0','2','0'), ('363671','2687','46946','0','0','2196F3','0','2','0'), ('363672','2688','46949','0','0','199C0D','1','2','0'), ('363673','2688','46953','0','1','00D936','0','2','0'), ('363674','2688','46950','0','2','0208bf','0','2','0'), ('363675','2689','46953','0','0','00D936','0','2','0'), ('363676','2689','46950','0','1','0208bf','0','2','0'), ('363677','2690','46955','0','0','00D936','0','2','0'), ('363678','2690','46954','0','1','008C23','0','2','0'), ('363679','2691','46952','0','0','2196F3','0','2','0'), ('363680','2691','46951','0','1','0208bf','0','2','0'), ('363681','2692','46956','0','0','199C0D','0','2','0'), ('363682','2692','46944','0','1','F63100','0','2','0'), ('363683','2693','46868','0','0','199C0D','0','2','0'), ('363684','2694','46865','0','0','199C0D','0','2','0'), ('363685','2695','46866','0','0','199C0D','0','2','0'), ('363686','2696','46892','0','0','199C0D','0','2','0'), ('363687','2697','46867','0','0','199C0D','0','2','0'), ('363688','2698','46873','0','0','199C0D','0','2','0'), ('363689','2699','46874','0','0','199C0D','0','2','0'), ('363690','2700','46875','0','0','199C0D','0','2','0'), ('363691','2701','46876','0','0','199C0D','0','2','0'), ('363692','2701','46878','0','1','F63100','0','2','0'), ('363693','2702','46877','0','0','199C0D','0','2','0'), ('363694','2702','46879','0','1','F63100','0','2','0'), ('363695','2703','46869','0','0','199C0D','0','2','0'), ('363696','2704','46870','0','0','199C0D','0','2','0'), ('363697','2705','46882','0','0','199C0D','0','2','0'), ('363698','2705','46864','0','1','F63100','0','2','0'), ('363699','2705','46871','0','2','00611C','0','2','0'), ('363700','2705','46872','0','3','F7941D','0','2','0'), ('363701','2706','46883','0','0','199C0D','0','2','0'), ('363702','2706','46885','0','1','F63100','0','2','0'), ('363703','2707','46884','0','0','199C0D','0','2','0'), ('363704','2707','46886','0','1','F63100','0','2','0'), ('363705','2708','46887','0','0','199C0D','0','2','0'), ('363706','2708','46880','0','1','F63100','0','2','0'), ('363707','2708','46893','0','2','00611C','0','2','0'), ('363708','2709','46889','0','0','199C0D','0','2','0'), ('363709','2709','46888','0','1','F63100','0','2','0'), ('363710','2709','46890','0','2','00611C','0','2','0'), ('363711','2710','46891','0','0','199C0D','0','2','0'), ('363712','2711','46894','0','0','199C0D','0','2','0'), ('363713','2712','46895','0','0','199C0D','0','2','0'), ('363714','2713','46896','0','0','199C0D','0','2','0'), ('363715','2714','46897','0','0','199C0D','0','2','0'), ('363716','2715','46900','0','0','199C0D','0','2','0'), ('363717','2715','46905','0','1','F63100','0','2','0'), ('363718','2715','46901','0','2','00611C','0','2','0'), ('363719','2715','46898','0','3','F7941D','1','2','0'), ('363720','2716','46899','0','0','199C0D','0','2','0'), ('363721','2716','46904','0','1','F63100','0','2','0'), ('363722','2716','46902','0','2','00611C','1','2','0'), ('363723','2717','46903','0','0','199C0D','0','2','0'), ('363724','2718','46908','0','0','199C0D','0','2','0'), ('363725','2718','46913','0','1','F63100','0','2','0'), ('363726','2718','46909','0','2','00611C','0','2','0'), ('363727','2718','46906','0','3','F7941D','1','2','0'), ('363728','2719','46907','0','0','199C0D','0','2','0'), ('363729','2719','46912','0','1','F63100','0','2','0'), ('363730','2719','46910','0','2','00611C','1','2','0'), ('363731','2720','46911','0','0','199C0D','0','2','0'), ('363732','2721','46914','0','0','199C0D','0','2','0'), ('363733','2722','46917','0','0','199C0D','0','2','0'), ('363734','2723','46915','0','0','199C0D','0','2','0'), ('363735','2724','46916','0','0','199C0D','0','2','0'), ('363736','2725','46918','0','0','199C0D','0','2','0'), ('363737','2726','46920','0','0','199C0D','0','2','0'), ('363738','2727','46921','0','0','199C0D','0','2','0'), ('363739','2728','46922','0','0','00D936','0','2','0'), ('363740','2729','46923','0','0','2196F3','0','2','0'), ('363741','2730','46931','0','0','199C0D','0','2','0'), ('363742','2730','46927','0','1','F63100','1','2','0'), ('363743','2731','46924','0','0','199C0D','0','2','0'), ('363744','2732','46925','0','0','199C0D','0','2','0'), ('363745','2733','46932','0','0','199C0D','0','2','0'), ('363746','2734','46926','0','0','199C0D','0','2','0'), ('363747','2735','46928','0','0','199C0D','0','2','0'), ('363748','2735','46929','0','1','F63100','0','2','0'), ('363749','2735','46930','0','2','00611C','0','2','0'), ('363750','1447','33113','0','0','199C0D','0','2','0'), ('363751','1447','33112','0','1','F63100','0','2','0'), ('363752','1447','33099','0','2','00611C','0','2','0'), ('363753','1447','33098','0','3','F7941D','0','2','0'), ('363754','1448','33125','0','0','199C0D','0','2','0'), ('363755','1448','33110','0','1','F63100','0','2','0'), ('363756','1449','33080','2','0','199C0D','0','2','0'), ('363757','1449','33081','2','1','F63100','0','2','0'), ('363758','1450','33089','2','0','199C0D','0','2','0'), ('363759','1450','33085','2','1','F63100','0','2','0'), ('363760','1451','33082','2','0','199C0D','0','2','0'), ('363761','1451','33086','2','1','F63100','0','2','0'), ('363762','1451','33083','0','2','00611C','0','2','0'), ('363763','1451','33084','0','3','F7941D','0','2','0'), ('363764','1451','33087','0','4','FC6EA3','0','2','0'), ('363765','1451','33088','0','5','6C59DC','0','2','0'), ('363766','1452','33093','2','0','199C0D','0','2','0'), ('363767','1452','33092','2','1','F63100','0','2','0'), ('363768','1453','33077','2','0','199C0D','0','2','0'), ('363769','1453','33063','2','1','F63100','0','2','0'), ('363770','1454','33094','0','0','199C0D','0','2','0'), ('363771','1454','33059','0','1','F63100','0','2','0'), ('363772','1455','33066','2','0','199C0D','0','2','0'), ('363773','1455','33071','2','1','F63100','0','2','0'), ('363774','1455','33067','0','2','00611C','0','2','0'), ('363775','1455','33068','0','3','F7941D','0','2','0'), ('363776','1455','33072','0','4','FC6EA3','0','2','0'), ('363777','1455','33073','0','5','6C59DC','0','2','0'), ('363778','1159','30886','0','0','199C0D','0','2','0'), ('363779','1159','30887','0','1','F63100','0','2','0'), ('363780','1160','30888','0','0','199C0D','0','2','0'), ('363781','1160','30882','0','1','F63100','0','2','0'), ('363782','1160','30890','0','2','00611C','0','2','0'), ('363783','1160','30881','0','3','F7941D','0','2','0'), ('363784','1160','30889','0','4','FC6EA3','0','2','0'), ('363785','1161','30847','2','0','199C0D','0','2','0'), ('363786','1161','30872','2','1','F63100','0','2','0'), ('363787','1162','30853','2','0','199C0D','0','2','0'), ('363788','1162','30849','2','1','F63100','0','2','0'), ('363789','1162','30852','2','2','00611C','0','2','0'), ('363790','1162','30851','2','3','F7941D','0','2','0'), ('363791','1162','30848','2','4','FC6EA3','0','2','0'), ('363792','1163','30856','0','0','199C0D','0','2','0'), ('363793','1163','30855','0','1','F63100','0','2','0'), ('363794','1163','30854','2','2','00611C','1','2','0'), ('363795','1164','30859','2','0','199C0D','0','2','0'), ('363796','1164','30870','2','1','F63100','0','2','0'), ('363797','1165','30860','2','0','199C0D','0','2','0'), ('363798','1165','30871','2','1','F63100','0','2','0'), ('363799','1166','30868','0','0','199C0D','0','2','0'), ('363800','1166','30869','0','1','F63100','0','2','0'), ('363801','1166','30867','0','2','00611C','0','2','0'), ('363802','1166','30866','0','3','F7941D','0','2','0'), ('363803','1166','30865','0','4','FC6EA3','0','2','0'), ('363804','1167','30850','5','0','199C0D','0','2','0'), ('363805','1167','30863','5','1','F63100','0','2','0'), ('363806','1167','30861','5','2','00611C','0','2','0'), ('363807','1168','30833','2','0','199C0D','0','2','0'), ('363808','1168','30841','2','1','F63100','0','2','0'), ('363809','1168','30857','2','2','00611C','0','2','0'), ('363810','1169','30834','2','0','199C0D','0','2','0'), ('363811','1169','30831','2','1','F63100','0','2','0'), ('363812','1170','30846','0','0','199C0D','0','2','0'), ('363813','1576','34320','0','0','199C0D','0','2','0'), ('363814','1576','30845','0','1','F63100','0','2','0'), ('363815','1576','30842','0','2','00611C','0','2','0'), ('363816','1576','30873','2','3','F7941D','1','2','0'), ('363817','2325','42995','0','0','199C0D','0','2','0'), ('363818','2325','42993','0','1','F63100','0','2','0'), ('363819','2326','42991','0','0','199C0D','0','2','0'), ('363820','2326','42992','0','1','F63100','0','2','0'), ('363821','2326','43017','0','2','00611C','0','2','0'), ('363822','2327','42989','0','0','199C0D','0','2','0'), ('363823','2327','43003','0','1','F63100','0','2','0'), ('363824','2327','43015','0','2','00611C','0','2','0'), ('363825','2327','43014','0','3','F7941D','0','2','0'), ('363826','2327','43016','0','4','FC6EA3','0','2','0'), ('363827','2327','43013','0','5','6C59DC','0','2','0'), ('363828','2327','43012','0','6','C7A72D','0','2','0'), ('363829','2327','43011','0','7','BA2A5D','0','2','0'), ('363830','2328','43010','0','0','199C0D','0','2','0'), ('363831','2328','43002','0','1','F63100','0','2','0'), ('363832','2328','43009','0','2','00611C','0','2','0'), ('363833','2328','43008','0','3','F7941D','0','2','0'), ('363834','2329','43005','0','0','199C0D','0','2','0'), ('363835','2329','43004','0','1','F63100','0','2','0'), ('363836','2330','42964','0','0','199C0D','0','2','0'), ('363837','2330','42963','0','1','F63100','0','2','0'), ('363838','2331','42971','0','0','199C0D','0','2','0'), ('363839','2331','42961','0','1','F63100','0','2','0'), ('363840','2332','42969','0','0','199C0D','0','2','0'), ('363841','2332','42970','0','1','F63100','0','2','0'), ('363842','2333','42966','0','0','199C0D','0','2','0'), ('363843','2333','42967','0','1','F63100','0','2','0'), ('363844','2334','42978','0','0','199C0D','0','2','0'), ('363845','2334','42977','0','1','F63100','0','2','0'), ('363846','2335','42985','0','0','199C0D','0','2','0'), ('363847','2335','42982','0','1','F63100','0','2','0'), ('363848','2335','42983','0','2','00611C','0','2','0'), ('363849','2335','42980','0','3','F7941D','0','2','0'), ('363850','2335','42981','0','4','FC6EA3','0','2','0'), ('363851','2336','42960','0','0','199C0D','0','2','0'), ('363852','2336','42945','0','1','F63100','0','2','0'), ('363853','2337','42934','0','0','199C0D','0','2','0'), ('363854','2337','42935','0','1','F63100','0','2','0'), ('363855','2338','42948','0','0','199C0D','0','2','0'), ('363856','2338','42947','0','1','F63100','0','2','0'), ('363857','2338','42946','0','2','00611C','0','2','0'), ('363858','2338','42940','0','3','F7941D','0','2','0'), ('363859','2339','42951','0','0','199C0D','0','2','0'), ('363860','2339','42950','0','1','F63100','0','2','0'), ('363861','2339','42953','0','2','00611C','0','2','0'), ('363862','2339','42949','0','3','F7941D','0','2','0'), ('363863','2340','42955','0','0','199C0D','0','2','0'), ('363864','2340','42954','0','1','F63100','0','2','0'), ('363865','1663','35291','2','0','199C0D','0','2','0'), ('363866','1663','35300','0','1','F63100','0','2','0'), ('363867','1664','35295','2','0','199C0D','0','2','0'), ('363868','1664','35296','0','1','F63100','0','2','0'), ('363869','1665','35301','0','0','199C0D','0','2','0'), ('363870','1665','35306','0','1','F63100','0','2','0'), ('363871','1665','35304','0','2','00611C','0','2','0'), ('363872','1665','35302','0','3','F7941D','0','2','0'), ('363873','1666','35308','0','0','199C0D','0','2','0'), ('363874','1666','35310','0','1','F63100','0','2','0'), ('363875','1666','35309','0','2','00611C','0','2','0'), ('363876','1667','35322','0','0','199C0D','0','2','0'), ('363877','1667','35320','0','1','F63100','0','2','0'), ('363878','1668','35329','0','0','199C0D','0','2','0'), ('363879','1668','35330','0','1','F63100','0','2','0'), ('363880','1669','35332','0','0','199C0D','0','2','0'), ('363881','1669','35334','0','1','F63100','0','2','0'), ('363882','1670','35335','0','0','199C0D','0','2','0'), ('363883','1670','35333','0','1','F63100','0','2','0'), ('363884','1671','35338','0','0','199C0D','0','2','0'), ('363885','1671','35341','0','1','F63100','0','2','0'), ('363886','1671','35339','0','2','00611C','0','2','0'), ('363887','1671','35340','0','3','F7941D','0','2','0'), ('363888','1672','35347','0','0','199C0D','0','2','0'), ('363889','1672','35346','0','1','F63100','0','2','0'), ('363890','1672','35345','0','2','00611C','0','2','0'), ('363891','1673','35350','0','0','199C0D','0','2','0'), ('363892','1673','35351','0','1','F63100','0','2','0'), ('363893','1674','35349','0','0','199C0D','0','2','0'), ('363894','1674','35352','0','1','F63100','0','2','0'), ('363895','1674','35353','0','2','00611C','0','2','0'), ('363896','1675','35355','0','0','199C0D','0','2','0'), ('363897','1675','35356','0','1','F63100','0','2','0'), ('363898','1505','33553','2','0','199C0D','0','2','0'), ('363899','1505','33562','0','1','F63100','0','2','0'), ('363900','1506','33557','2','0','199C0D','0','2','0'), ('363901','1506','33558','0','1','F63100','0','2','0'), ('363902','1507','33563','0','0','199C0D','0','2','0'), ('363903','1507','33568','0','1','F63100','0','2','0'), ('363904','1507','33566','0','2','00611C','0','2','0'), ('363905','1507','33564','0','3','F7941D','0','2','0'), ('363906','1508','33570','0','0','199C0D','0','2','0'), ('363907','1508','33572','0','1','F63100','0','2','0'), ('363908','1508','33571','0','2','00611C','0','2','0'), ('363909','1509','33584','0','0','199C0D','0','2','0'), ('363910','1509','33582','0','1','F63100','0','2','0'), ('363911','1510','33591','0','0','199C0D','0','2','0'), ('363912','1510','33592','0','1','F63100','0','2','0'), ('363913','1511','33594','0','0','199C0D','0','2','0'), ('363914','1511','33596','0','1','F63100','0','2','0'), ('363915','1512','33597','0','0','199C0D','0','2','0'), ('363916','1512','33595','0','1','F63100','0','2','0'), ('363917','1513','33600','0','0','199C0D','0','2','0'), ('363918','1513','33603','0','1','F63100','0','2','0'), ('363919','1513','33601','0','2','00611C','0','2','0'), ('363920','1513','33602','0','3','F7941D','0','2','0'), ('363921','1514','33609','0','0','199C0D','0','2','0'), ('363922','1514','33608','0','1','F63100','0','2','0'), ('363923','1514','33607','0','2','00611C','0','2','0'), ('363924','1515','33612','0','0','199C0D','0','2','0'), ('363925','1515','33613','0','1','F63100','0','2','0'), ('363926','1516','33611','0','0','199C0D','0','2','0'), ('363927','1516','33614','0','1','F63100','0','2','0'), ('363928','1516','33615','0','2','00611C','0','2','0'), ('363929','1517','33617','0','0','199C0D','0','2','0'), ('363930','1517','33618','0','1','F63100','0','2','0'), ('363931','1807','36817','0','0','199C0D','0','2','0'), ('363932','1807','36816','0','1','F63100','0','2','0'), ('363933','1808','36815','0','0','199C0D','0','2','0'), ('363934','1808','36814','0','1','F63100','0','2','0'), ('363935','1808','36818','0','2','00611C','0','2','0'), ('363936','1808','36819','0','3','F7941D','0','2','0'), ('363937','1809','36805','0','0','199C0D','0','2','0'), ('363938','1809','36804','0','1','F63100','0','2','0'), ('363939','1527','33819','0','0','199C0D','0','2','0'), ('363940','1527','33839','0','1','F63100','0','2','0'), ('363941','1528','33820','0','0','199C0D','0','2','0'), ('363942','1528','33816','0','1','F63100','0','2','0'), ('363943','1529','33826','0','0','199C0D','0','2','0'), ('363944','1529','33831','0','1','F63100','0','2','0'), ('363945','1529','33829','0','2','00611C','0','2','0'), ('363946','1529','33821','0','3','F7941D','0','2','0'), ('363947','1529','33825','0','4','FC6EA3','0','2','0'), ('363948','1529','33833','0','5','6C59DC','0','2','0'), ('363949','1529','33823','2','6','C7A72D','0','2','0'), ('363950','1530','33828','0','0','199C0D','0','2','0'), ('363951','1530','33832','0','1','F63100','0','2','0'), ('363952','1530','33830','0','2','00611C','0','2','0'), ('363953','1530','33822','0','3','F7941D','0','2','0'), ('363954','1530','33815','0','4','FC6EA3','0','2','0'), ('363955','1530','33834','0','5','6C59DC','0','2','0'), ('363956','1530','33824','2','6','C7A72D','0','2','0'), ('363957','1531','33840','0','0','199C0D','0','2','0'), ('363958','1531','33845','0','1','F63100','0','2','0'), ('363959','1532','33844','0','0','199C0D','0','2','0'), ('363960','1532','33847','0','1','F63100','0','2','0'), ('363961','1532','33843','0','2','00611C','0','2','0'), ('363962','1532','33841','0','3','F7941D','0','2','0'), ('363963','1533','33863','2','0','199C0D','0','2','0'), ('363964','1534','33792','2','0','199C0D','0','2','0'), ('363965','1534','33791','0','1','F63100','0','2','0'), ('363966','1534','33793','0','2','00611C','0','2','0'), ('363967','1535','33802','0','0','199C0D','0','2','0'), ('363968','1535','33770','0','1','F63100','0','2','0'), ('363969','1536','33800','0','0','199C0D','0','2','0'), ('363970','1536','33799','0','1','F63100','0','2','0'), ('363971','1536','33801','0','2','00611C','0','2','0'), ('363972','1537','33798','0','0','199C0D','0','2','0'), ('363973','1537','33806','0','1','F63100','0','2','0'), ('363974','1537','33774','0','2','00611C','0','2','0'), ('363975','1538','33769','0','0','199C0D','0','2','0'), ('363976','1538','33787','0','1','F63100','0','2','0'), ('363977','1538','33789','0','2','00611C','0','2','0'), ('363978','1538','33790','0','3','F7941D','0','2','0'), ('363979','1539','33785','0','0','199C0D','0','2','0'), ('363980','1539','33772','0','1','F63100','0','2','0'), ('363981','1539','33773','0','2','00611C','0','2','0'), ('363982','1539','33771','0','3','F7941D','0','2','0'), ('363983','1540','33776','0','0','199C0D','0','2','0'), ('363984','1540','33775','0','1','F63100','0','2','0'), ('363985','1541','33782','0','0','199C0D','0','2','0'), ('363986','1541','33781','0','1','F63100','0','2','0'), ('363987','1541','33780','0','2','00611C','0','2','0'), ('363988','1541','33783','0','3','F7941D','0','2','0'), ('363989','1541','33777','0','4','FC6EA3','0','2','0'), ('363990','1541','33778','0','5','6C59DC','0','2','0'), ('363991','1542','33804','2','0','199C0D','0','2','0'), ('363992','1542','33803','2','1','F63100','0','2','0'), ('363993','1542','33805','2','2','00611C','0','2','0'), ('363994','1543','33937','0','0','199C0D','0','2','0'), ('363995','1543','33940','0','1','F63100','0','2','0'), ('363996','1543','33936','0','2','00611C','0','2','0'), ('363997','1543','33934','0','3','F7941D','0','2','0'), ('363998','1544','33915','0','0','199C0D','0','2','0'), ('363999','1544','33911','0','1','F63100','0','2','0'), ('364000','1544','33912','0','2','00611C','0','2','0'), ('364001','1544','33910','0','3','F7941D','0','2','0'), ('364002','1544','33914','0','4','FC6EA3','0','2','0'), ('364003','1545','33918','0','0','199C0D','0','2','0'), ('364004','1545','33905','0','1','F63100','0','2','0'), ('364005','1545','33917','0','2','00611C','0','2','0'), ('364006','1545','33916','2','3','F7941D','1','2','0'), ('364007','1546','33908','0','0','199C0D','0','2','0'), ('364008','1546','33909','0','1','F63100','0','2','0'), ('364009','1546','33902','0','2','00611C','0','2','0'), ('364010','1547','33893','0','0','199C0D','0','2','0'), ('364011','1547','33892','0','1','F63100','0','2','0'), ('364012','1548','33899','2','0','199C0D','0','2','0'), ('364013','1548','33898','2','1','F63100','0','2','0'), ('364014','1548','33895','2','2','00611C','0','2','0'), ('364015','1548','33900','2','3','F7941D','0','2','0'), ('364016','1548','33896','2','4','FC6EA3','0','2','0'), ('364017','1548','33891','2','5','6C59DC','0','2','0'), ('364018','2631','46642','0','0','199C0D','0','2','0'), ('364019','2631','46643','0','1','F63100','0','2','0'), ('364020','2632','46647','0','0','199C0D','0','2','0'), ('364021','2632','46648','0','1','F63100','0','2','0'), ('364022','2632','46649','0','2','00611C','0','2','0'), ('364023','2633','46640','0','0','199C0D','0','2','0'), ('364024','2634','46616','0','0','199C0D','0','2','0'), ('364025','2634','46617','0','1','F63100','0','2','0'), ('364026','2635','46550','0','0','199C0D','0','2','0'), ('364027','2635','46552','0','1','F63100','0','2','0'), ('364028','2635','46554','0','2','00611C','0','2','0'), ('364029','2635','46575','0','3','F7941D','0','2','0'), ('364030','2635','46591','0','4','FC6EA3','0','2','0'), ('364031','2635','46592','0','5','6C59DC','0','2','0'), ('364032','2636','46534','0','0','199C0D','0','2','0'), ('364033','2636','46549','0','1','F63100','0','2','0'), ('364034','2636','46579','0','2','00611C','0','2','0'), ('364035','2636','46588','0','3','F7941D','0','2','0'), ('364036','2637','46543','0','0','199C0D','0','2','0'), ('364037','2637','46542','0','1','F63100','0','2','0'), ('364038','2638','46580','0','0','199C0D','0','2','0'), ('364039','2638','46581','0','1','F63100','0','2','0'), ('364040','2639','46546','0','0','199C0D','0','2','0'), ('364041','2639','46583','0','1','F63100','0','2','0'), ('364042','2640','46548','0','0','199C0D','0','2','0'), ('364043','2640','46571','0','1','F63100','0','2','0'), ('364044','2640','46555','0','2','00611C','0','2','0'), ('364045','2640','46556','0','3','F7941D','0','2','0'), ('364046','2640','46590','0','4','FC6EA3','0','2','0'), ('364047','2641','46559','0','0','199C0D','0','2','0'), ('364048','2641','46560','0','1','F63100','0','2','0'), ('364049','2641','46570','0','2','00611C','0','2','0'), ('364050','2641','46561','0','3','F7941D','0','2','0'), ('364051','2641','46506','0','4','FC6EA3','0','2','0'), ('364052','2642','46563','0','0','199C0D','0','2','0'), ('364053','2642','46564','0','1','F63100','0','2','0'), ('364054','2643','46541','0','0','199C0D','0','2','0'), ('364055','2643','46540','0','1','F63100','0','2','0'), ('364056','2644','46568','0','0','199C0D','0','2','0'), ('364057','2644','46569','0','1','F63100','0','2','0'), ('364058','2645','46572','0','0','199C0D','0','2','0'), ('364059','2646','46573','0','0','199C0D','0','2','0'), ('364060','2646','46574','0','1','F63100','0','2','0'), ('364061','2646','46576','0','2','00611C','0','2','0'), ('364062','2646','46578','0','3','F7941D','0','2','0'), ('364063','2646','46545','0','4','FC6EA3','0','2','0'), ('364064','2646','46551','0','5','6C59DC','0','2','0'), ('364065','2646','46558','0','6','C7A72D','0','2','0'), ('364066','2647','46577','0','0','199C0D','0','2','0'), ('364067','2648','46584','0','0','199C0D','0','2','0'), ('364068','2648','46586','0','1','F63100','0','2','0'), ('364069','2648','46553','0','2','00611C','0','2','0'), ('364070','2648','46567','0','3','F7941D','0','2','0'), ('364071','2649','46587','0','0','199C0D','0','2','0'), ('364072','2649','46539','0','1','F63100','0','2','0'), ('364073','2650','46557','0','0','199C0D','0','2','0'), ('364074','2650','46561','0','1','F63100','0','2','0'), ('364075','2651','46505','0','0','199C0D','0','2','0'), ('364076','2651','46585','0','1','F63100','0','2','0'), ('364077','2651','46506','0','2','00611C','0','2','0'), ('364078','2651','46562','0','3','F7941D','0','2','0'), ('364079','1190','31140','0','0','199C0D','0','2','0'), ('364080','1190','31141','0','1','F63100','0','2','0'), ('364081','1261','31145','0','0','199C0D','0','2','0'), ('364082','1261','31146','0','1','F63100','0','2','0'), ('364083','1261','31147','0','2','00611C','0','2','0'), ('364084','1191','31138','0','0','199C0D','0','2','0'), ('364085','2619','46433','0','0','199C0D','0','2','0'), ('364086','2619','46434','0','1','F63100','0','2','0'), ('364087','1193','31092','0','0','199C0D','0','2','0'), ('364088','1193','31108','0','1','F63100','0','2','0'), ('364089','1193','31110','0','2','00611C','0','2','0'), ('364090','1193','31067','0','3','F7941D','0','2','0'), ('364091','1193','31086','0','4','FC6EA3','0','2','0'), ('364092','1193','31087','0','5','6C59DC','0','2','0'), ('364093','1194','31120','0','0','199C0D','0','2','0'), ('364094','1194','31105','0','1','F63100','0','2','0'), ('364095','1194','31071','0','2','00611C','0','2','0'), ('364096','1194','31081','0','3','F7941D','0','2','0'), ('364097','1195','31098','0','0','199C0D','0','2','0'), ('364098','1195','31099','0','1','F63100','0','2','0'), ('364099','1196','31072','0','0','199C0D','0','2','0'), ('364100','1196','31073','0','1','F63100','0','2','0'), ('364101','1197','31103','0','0','199C0D','0','2','0'), ('364102','1197','31074','0','1','F63100','0','2','0'), ('364103','1198','31104','0','0','199C0D','0','2','0'), ('364104','1198','31063','0','1','F63100','0','2','0'), ('364105','1198','31111','0','2','00611C','0','2','0'), ('364106','1198','31112','0','3','F7941D','0','2','0'), ('364107','1198','31084','0','4','FC6EA3','0','2','0'), ('364108','1199','31115','0','0','199C0D','0','2','0'), ('364109','1199','31116','0','1','F63100','0','2','0'), ('364110','1199','31062','0','2','00611C','0','2','0'), ('364111','1199','31118','0','3','F7941D','0','2','0'), ('364112','1199','31056','0','4','FC6EA3','0','2','0'), ('364113','1200','31107','0','0','199C0D','0','2','0'), ('364114','1200','31090','0','1','F63100','0','2','0'), ('364115','1201','31097','0','0','199C0D','0','2','0'), ('364116','1201','31096','0','1','F63100','0','2','0'), ('364117','1202','31089','0','0','199C0D','0','2','0'), ('364118','1202','31061','0','1','F63100','0','2','0'), ('364119','1203','31064','0','0','199C0D','0','2','0'), ('364120','1204','31065','0','0','199C0D','0','2','0'), ('364121','1204','31066','0','1','F63100','0','2','0'), ('364122','1204','31068','0','2','00611C','0','2','0'), ('364123','1204','31070','0','3','F7941D','0','2','0'), ('364124','1204','31101','0','4','FC6EA3','0','2','0'), ('364125','1204','31106','0','5','6C59DC','0','2','0'), ('364126','1204','31114','0','6','C7A72D','0','2','0'), ('364127','1205','31069','0','0','199C0D','0','2','0'), ('364128','1206','31076','0','0','199C0D','0','2','0'), ('364129','1206','31078','0','1','F63100','0','2','0'), ('364130','1206','31109','0','2','00611C','0','2','0'), ('364131','1206','31075','0','3','F7941D','0','2','0'), ('364132','1207','31080','0','0','199C0D','0','2','0'), ('364133','1207','31095','0','1','F63100','0','2','0'), ('364134','1208','31113','0','0','199C0D','0','2','0'), ('364135','1208','31118','0','1','F63100','0','2','0'), ('364136','1209','31058','0','0','199C0D','0','2','0'), ('364137','1209','31077','0','1','F63100','0','2','0'), ('364138','1209','31056','0','2','00611C','0','2','0'), ('364139','1209','31117','0','3','F7941D','0','2','0'), ('364140','1109','30453','5','0','199C0D','0','2','0'), ('364141','1109','30455','5','1','F63100','0','2','0'), ('364142','1110','30471','0','0','199C0D','0','2','0'), ('364143','1110','30470','0','1','F63100','0','2','0'), ('364144','1110','30466','0','2','00611C','0','2','0'), ('364145','1110','30441','0','3','F7941D','0','2','0'), ('364146','1111','30463','0','0','199C0D','0','2','0'), ('364147','1111','30452','0','1','F63100','0','2','0'), ('364148','1111','30451','0','2','00611C','0','2','0'), ('364149','1111','30437','0','3','F7941D','0','2','0'), ('364150','1112','30456','0','0','199C0D','0','2','0'), ('364151','1112','30457','0','1','F63100','0','2','0'), ('364152','1112','30458','0','2','00611C','0','2','0'), ('364153','1112','30459','0','3','F7941D','0','2','0'), ('364154','1113','30442','0','0','199C0D','0','2','0'), ('364155','1113','30444','0','1','F63100','0','2','0'), ('364156','1113','30445','0','2','00611C','0','2','0'), ('364157','1114','30446','0','0','199C0D','0','2','0'), ('364158','1114','30447','0','1','F63100','0','2','0'), ('364159','1114','31168','0','2','00611C','0','2','0'), ('364160','1114','30449','0','3','F7941D','0','2','0'), ('364161','1136','30659','5','0','199C0D','0','2','0'), ('364162','1136','30661','5','1','F63100','0','2','0'), ('364163','1137','30677','0','0','199C0D','0','2','0'), ('364164','1137','30676','0','1','F63100','0','2','0'), ('364165','1137','30672','0','2','00611C','0','2','0'), ('364166','1137','30647','0','3','F7941D','0','2','0'), ('364167','1138','30669','0','0','199C0D','0','2','0'), ('364168','1138','30658','0','1','F63100','0','2','0'), ('364169','1138','30657','0','2','00611C','0','2','0'), ('364170','1138','30643','0','3','F7941D','0','2','0'), ('364171','1139','30662','0','0','199C0D','0','2','0'), ('364172','1139','30663','0','1','F63100','0','2','0'), ('364173','1139','30664','0','2','00611C','0','2','0'), ('364174','1139','30665','0','3','F7941D','0','2','0'), ('364175','1140','30648','0','0','199C0D','0','2','0'), ('364176','1140','30650','0','1','F63100','0','2','0'), ('364177','1140','30651','0','2','00611C','0','2','0'), ('364178','1141','30652','0','0','199C0D','0','2','0'), ('364179','1141','30653','0','1','F63100','0','2','0'), ('364180','1141','31172','0','2','00611C','0','2','0'), ('364181','1141','30655','0','3','F7941D','0','2','0'), ('364182','2915','47996','5','0','199C0D','0','2','0'), ('364183','2915','47997','5','1','F63100','0','2','0'), ('364184','2916','47993','0','0','199C0D','0','2','0'), ('364185','2916','47994','0','1','F63100','0','2','0'), ('364186','2916','48002','0','2','00611C','0','2','0'), ('364187','2916','48024','0','3','F7941D','0','2','0'), ('364188','2917','48012','0','0','199C0D','0','2','0'), ('364189','2917','48013','0','1','F63100','0','2','0'), ('364190','2917','48017','0','2','00611C','0','2','0'), ('364191','2917','48015','0','3','F7941D','0','2','0'), ('364192','2918','47998','0','0','199C0D','0','2','0'), ('364193','2918','47999','0','1','F63100','0','2','0'), ('364194','2918','48000','0','2','00611C','0','2','0'), ('364195','2918','48001','0','3','F7941D','0','2','0'), ('364196','2919','48027','0','0','199C0D','0','2','0'), ('364197','2919','48028','0','1','F63100','0','2','0'), ('364198','2919','48029','0','2','00611C','0','2','0'), ('364199','2920','48030','0','0','199C0D','0','2','0'), ('364200','2920','48031','0','1','F63100','0','2','0'), ('364201','2920','48032','0','2','00611C','0','2','0'), ('364202','2920','48033','0','3','F7941D','0','2','0'), ('364203','2921','48058','5','0','199C0D','0','2','0'), ('364204','2921','48059','5','1','F63100','0','2','0'), ('364205','2922','48055','0','0','199C0D','0','2','0'), ('364206','2922','48056','0','1','F63100','0','2','0'), ('364207','2922','48064','0','2','00611C','0','2','0'), ('364208','2922','48086','0','3','F7941D','0','2','0'), ('364209','2923','48074','0','0','199C0D','0','2','0'), ('364210','2923','48075','0','1','F63100','0','2','0'), ('364211','2923','48079','0','2','00611C','0','2','0'), ('364212','2923','48077','0','3','F7941D','0','2','0'), ('364213','2924','48060','0','0','199C0D','0','2','0'), ('364214','2924','48061','0','1','F63100','0','2','0'), ('364215','2924','48062','0','2','00611C','0','2','0'), ('364216','2924','48063','0','3','F7941D','0','2','0'), ('364217','2925','48089','0','0','199C0D','0','2','0'), ('364218','2925','48090','0','1','F63100','0','2','0'), ('364219','2925','48091','0','2','00611C','0','2','0'), ('364220','2926','48092','0','0','199C0D','0','2','0'), ('364221','2926','48093','0','1','F63100','0','2','0'), ('364222','2926','48094','0','2','00611C','0','2','0'), ('364223','2926','48095','0','3','F7941D','0','2','0'), ('364224','1115','30506','5','0','199C0D','0','2','0'), ('364225','1115','30507','5','1','F63100','0','2','0'), ('364226','1116','30504','0','0','199C0D','0','2','0'), ('364227','1116','30505','0','1','F63100','0','2','0'), ('364228','1116','30518','0','2','00611C','0','2','0'), ('364229','1116','30492','0','3','F7941D','0','2','0'), ('364230','1117','30493','0','0','199C0D','0','2','0'), ('364231','1117','30500','0','1','F63100','0','2','0'), ('364232','1117','30486','0','2','00611C','0','2','0'), ('364233','1117','30488','0','3','F7941D','0','2','0'), ('364234','1118','30508','0','0','199C0D','0','2','0'), ('364235','1118','30509','0','1','F63100','0','2','0'), ('364236','1118','30503','0','2','00611C','0','2','0'), ('364237','1118','30510','0','3','F7941D','0','2','0'), ('364238','1119','30491','0','0','199C0D','0','2','0'), ('364239','1119','30494','0','1','F63100','0','2','0'), ('364240','1119','30495','0','2','00611C','0','2','0'), ('364241','1120','30496','0','0','199C0D','0','2','0'), ('364242','1120','30497','0','1','F63100','0','2','0'), ('364243','1120','31176','0','2','00611C','0','2','0'), ('364244','1120','30499','0','3','F7941D','0','2','0'), ('364245','2473','44598','0','0','199C0D','0','2','0'), ('364246','2473','44599','0','1','F63100','0','2','0'), ('364247','2474','44602','0','0','199C0D','0','2','0'), ('364248','2474','44604','0','1','F63100','0','2','0'), ('364249','2474','44606','0','2','00611C','0','2','0'), ('364250','2519','31732','0','0','199C0D','0','2','0'), ('364251','2519','31752','0','1','F63100','0','2','0'), ('364252','1268','31685','0','0','199C0D','0','2','0'), ('364253','1268','31738','0','1','F63100','0','2','0'), ('364254','1269','31723','0','0','199C0D','0','2','0'), ('364255','1269','31757','0','1','F63100','0','2','0'), ('364256','1269','31721','0','2','00611C','0','2','0'), ('364257','1270','31728','0','0','199C0D','0','2','0'), ('364258','1270','31759','0','1','F63100','0','2','0'), ('364259','1271','31745','0','0','199C0D','0','2','0'), ('364260','1271','31727','0','1','F63100','0','2','0'), ('364261','1272','31687','0','0','199C0D','0','2','0'), ('364262','1272','31710','0','1','F63100','0','2','0'), ('364263','1273','31705','0','0','199C0D','0','2','0'), ('364264','1273','31703','0','1','F63100','0','2','0'), ('364265','1273','31706','0','2','00611C','0','2','0'), ('364266','1273','31701','0','3','F7941D','0','2','0'), ('364267','1273','31708','0','4','FC6EA3','0','2','0'), ('364268','1274','31715','0','0','199C0D','0','2','0'), ('364269','1274','31726','0','1','F63100','0','2','0'), ('364270','1274','31717','0','2','00611C','0','2','0'), ('364271','1274','31716','0','3','F7941D','0','2','0'), ('364272','1274','31714','0','4','FC6EA3','0','2','0'), ('364273','1274','31713','0','5','6C59DC','0','2','0'), ('364274','2520','31755','0','0','199C0D','0','2','0'), ('364275','2520','31739','0','1','F63100','0','2','0'), ('364276','2475','44617','0','0','199C0D','0','2','0'), ('364277','2475','44618','0','1','F63100','0','2','0'), ('364278','2476','44625','0','0','199C0D','0','2','0'), ('364279','2476','44627','0','1','F63100','0','2','0'), ('364280','2476','44629','0','2','00611C','0','2','0'), ('364281','2521','31227','0','0','199C0D','0','2','0'), ('364282','2521','31248','0','1','F63100','0','2','0'), ('364283','1212','31233','0','0','199C0D','0','2','0'), ('364284','1212','31234','0','1','F63100','0','2','0'), ('364285','1213','31216','0','0','199C0D','0','2','0'), ('364286','1213','31237','0','1','F63100','0','2','0'), ('364287','1213','31214','0','2','00611C','0','2','0'), ('364288','1214','31191','0','0','199C0D','0','2','0'), ('364289','1214','31221','0','1','F63100','0','2','0'), ('364290','1215','31206','0','0','199C0D','0','2','0'), ('364291','1215','31220','0','1','F63100','0','2','0'), ('364292','1216','31192','0','0','199C0D','0','2','0'), ('364293','1216','31193','0','1','F63100','0','2','0'), ('364294','1217','31200','0','0','199C0D','0','2','0'), ('364295','1217','31197','0','1','F63100','0','2','0'), ('364296','1217','31201','0','2','00611C','0','2','0'), ('364297','1217','31198','0','3','F7941D','0','2','0'), ('364298','1217','31202','0','4','FC6EA3','0','2','0'), ('364299','1218','31207','0','0','199C0D','0','2','0'), ('364300','1218','31208','0','1','F63100','0','2','0'), ('364301','1218','31210','0','2','00611C','0','2','0'), ('364302','1218','31209','0','3','F7941D','0','2','0'), ('364303','1218','31219','0','4','FC6EA3','0','2','0'), ('364304','1218','31205','0','5','6C59DC','0','2','0'), ('364305','2522','31252','0','0','199C0D','0','2','0'), ('364306','2522','31235','0','1','F63100','0','2','0'), ('364307','1380','32423','0','0','199C0D','0','2','0'), ('364308','1380','32421','0','1','F63100','0','2','0'), ('364309','1381','32405','0','0','199C0D','0','2','0'), ('364310','1382','32426','5','0','199C0D','0','2','0'), ('364311','1382','32408','0','1','F63100','0','2','0'), ('364312','1382','32422','0','2','00611C','0','2','0'), ('364313','1382','32425','0','3','F7941D','0','2','0'), ('364314','1383','32409','0','0','199C0D','0','2','0'), ('364315','1384','32419','0','0','199C0D','1','2','0'), ('364316','1384','32416','0','1','F63100','1','2','0'), ('364317','1384','32413','0','2','00611C','1','2','0'), ('364318','1384','32418','5','3','F7941D','0','2','0'), ('364319','1384','32415','5','4','FC6EA3','0','2','0'), ('364320','1384','32412','5','5','6C59DC','0','2','0'), ('364321','1385','32420','0','0','199C0D','0','2','0'), ('364322','1385','32417','0','1','F63100','0','2','0'), ('364323','1385','32414','0','2','00611C','0','2','0'), ('364324','1386','32433','5','0','199C0D','0','2','0'), ('364325','1386','32432','0','1','F63100','1','2','0'), ('364326','1387','32431','0','0','199C0D','0','2','0'), ('364327','1387','32430','0','1','F63100','0','2','0'), ('364328','1387','32429','0','2','00611C','0','2','0'), ('364329','1387','32428','0','3','F7941D','0','2','0'), ('364330','1387','32427','0','4','FC6EA3','0','2','0'), ('364331','1388','32386','0','0','199C0D','1','2','0'), ('364332','1388','32391','0','1','F63100','1','2','0'), ('364333','1388','32387','0','2','00611C','1','2','0'), ('364334','1388','32390','0','3','F7941D','1','2','0'), ('364335','1388','32395','0','4','FC6EA3','0','2','0'), ('364336','1388','32389','0','5','6C59DC','0','2','0'), ('364337','1389','32393','0','0','199C0D','0','2','0'), ('364338','1389','32392','0','1','F63100','0','2','0'), ('364339','1389','32394','0','2','00611C','1','2','0'), ('364340','1389','32388','0','3','F7941D','1','2','0'), ('364341','1390','32401','5','0','199C0D','1','2','0'), ('364342','1390','32402','0','1','F63100','0','2','0'), ('364343','1390','32397','0','2','00611C','1','2','0'), ('364344','1390','32398','0','3','F7941D','1','2','0'), ('364345','1390','32399','0','4','FC6EA3','1','2','0'), ('364346','1390','32400','0','5','6C59DC','1','2','0'), ('364347','1390','32396','0','6','C7A72D','1','2','0'), ('364348','1391','32367','5','0','199C0D','0','2','0'), ('364349','1391','32366','0','1','F63100','1','2','0'), ('364350','1392','32370','0','0','199C0D','0','2','0'), ('364351','1393','32382','0','0','199C0D','1','2','0'), ('364352','1393','32381','0','1','F63100','1','2','0'), ('364353','1393','32383','0','2','00611C','1','2','0'), ('364354','1393','32384','0','3','F7941D','1','2','0'), ('364355','1394','32377','0','0','199C0D','0','2','0'), ('364356','1394','32374','0','1','F63100','1','2','0'), ('364357','1395','32403','0','0','199C0D','0','2','0'), ('364358','1395','32385','0','1','F63100','1','2','0'), ('364359','1219','31363','5','0','199C0D','0','2','0'), ('364360','1219','31346','0','1','F63100','0','2','0'), ('364361','1219','31345','0','2','00611C','0','2','0'), ('364362','1219','31344','0','3','F7941D','0','2','0'), ('364363','1219','31343','0','4','FC6EA3','0','2','0'), ('364364','1219','31342','0','5','6C59DC','0','2','0'), ('364365','1219','31340','0','6','C7A72D','0','2','0'), ('364366','1219','31339','0','7','BA2A5D','0','2','0'), ('364367','1219','31341','0','8','F230E0','0','2','0'), ('364368','1220','31337','5','0','199C0D','0','2','0'), ('364369','1221','31360','0','0','199C0D','0','2','0'), ('364370','1221','31359','0','1','F63100','0','2','0'), ('364371','1221','31357','0','2','00611C','0','2','0'), ('364372','1221','31356','0','3','F7941D','0','2','0'), ('364373','1221','31354','0','4','FC6EA3','0','2','0'), ('364374','1221','31353','0','5','6C59DC','0','2','0'), ('364375','1221','31352','0','6','C7A72D','0','2','0'), ('364376','1221','31350','0','7','BA2A5D','0','2','0'), ('364377','1221','31351','0','8','F230E0','0','2','0'), ('364378','1221','31338','0','9','5CCD18','0','2','0'), ('364379','1221','31349','0','10','BB2A02','0','2','0'), ('364380','1221','31348','0','11','AC41A5','0','2','0'), ('364381','1221','31347','0','12','89ABF8','0','2','0'), ('364382','2323','42881','0','0','199C0D','1','2','0'), ('364383','2323','42885','0','1','F63100','1','2','0'), ('364384','2323','42888','0','2','00611C','1','2','0'), ('364385','2323','42883','5','3','F7941D','0','2','0'), ('364386','2323','42886','5','4','FC6EA3','0','2','0'), ('364387','2323','42889','5','5','6C59DC','0','2','0'), ('364388','1222','31336','5','0','199C0D','0','2','0'), ('364389','2324','42882','0','0','199C0D','0','2','0'), ('364390','2324','42884','0','1','F63100','0','2','0'), ('364391','2324','42887','0','2','00611C','0','2','0'), ('364392','1456','33178','0','0','199C0D','0','2','0'), ('364393','1456','33179','0','1','F63100','0','2','0'), ('364394','1456','33180','0','2','00611C','0','2','0'), ('364395','2927','48210','5','0','199C0D','0','2','0'), ('364396','2927','48202','0','1','F63100','0','2','0'), ('364397','2927','48203','0','2','00611C','0','2','0'), ('364398','2927','48204','0','3','F7941D','0','2','0'), ('364399','2927','48205','0','4','FC6EA3','0','2','0'), ('364400','2927','48206','0','5','6C59DC','0','2','0'), ('364401','2927','48207','0','6','C7A72D','0','2','0'), ('364402','2927','48208','0','7','BA2A5D','0','2','0'), ('364403','2927','48209','0','8','F230E0','0','2','0'), ('364404','2928','48179','5','0','199C0D','0','2','0'), ('364405','2929','48185','0','0','199C0D','0','2','0'), ('364406','2929','48186','0','1','F63100','0','2','0'), ('364407','2929','48190','0','2','00611C','0','2','0'), ('364408','2929','48191','0','3','F7941D','0','2','0'), ('364409','2929','48193','0','4','FC6EA3','0','2','0'), ('364410','2929','48194','0','5','6C59DC','0','2','0'), ('364411','2929','48195','0','6','C7A72D','0','2','0'), ('364412','2929','48196','0','7','BA2A5D','0','2','0'), ('364413','2929','48197','0','8','F230E0','0','2','0'), ('364414','2929','48198','0','9','5CCD18','0','2','0'), ('364415','2929','48199','0','10','BB2A02','0','2','0'), ('364416','2929','48200','0','11','AC41A5','0','2','0'), ('364417','2929','48201','0','12','89ABF8','0','2','0'), ('364418','2930','48212','0','0','199C0D','1','2','0'), ('364419','2930','48215','0','1','F63100','1','2','0'), ('364420','2930','48218','0','2','00611C','1','2','0'), ('364421','2930','48213','5','3','F7941D','0','2','0'), ('364422','2930','48216','5','4','FC6EA3','0','2','0'), ('364423','2930','48219','5','5','6C59DC','0','2','0'), ('364424','2931','48180','5','0','199C0D','0','2','0'), ('364425','2932','48211','0','0','199C0D','0','2','0'), ('364426','2932','48214','0','1','F63100','0','2','0'), ('364427','2932','48217','0','2','00611C','0','2','0'), ('364428','2933','48220','0','0','199C0D','0','2','0'), ('364429','2933','48221','0','1','F63100','0','2','0'), ('364430','2933','48222','0','2','00611C','0','2','0'), ('364431','2934','48274','0','0','199C0D','0','2','0'), ('364432','2934','48275','0','1','F63100','0','2','0'), ('364433','2935','48264','0','0','199C0D','0','2','0'), ('364434','2936','48285','5','0','199C0D','0','2','0'), ('364435','2936','48276','0','1','F63100','0','2','0'), ('364436','2936','48277','0','2','00611C','0','2','0'), ('364437','2936','48286','0','3','F7941D','0','2','0'), ('364438','2937','48270','0','0','199C0D','0','2','0'), ('364439','2938','48288','0','0','199C0D','1','2','0'), ('364440','2938','48291','0','1','F63100','1','2','0'), ('364441','2938','48294','0','2','00611C','1','2','0'), ('364442','2938','48289','5','3','F7941D','0','2','0'), ('364443','2938','48292','5','4','FC6EA3','0','2','0'), ('364444','2938','48295','5','5','6C59DC','0','2','0'), ('364445','2939','48287','0','0','199C0D','0','2','0'), ('364446','2939','48290','0','1','F63100','0','2','0'), ('364447','2939','48293','0','2','00611C','0','2','0'), ('364448','2940','48278','5','0','199C0D','0','2','0'), ('364449','2940','48279','0','1','F63100','1','2','0'), ('364450','2941','48280','0','0','199C0D','0','2','0'), ('364451','2941','48281','0','1','F63100','0','2','0'), ('364452','2941','48282','0','2','00611C','0','2','0'), ('364453','2941','48283','0','3','F7941D','0','2','0'), ('364454','2941','48284','0','4','FC6EA3','0','2','0'), ('364455','2942','48240','0','0','199C0D','1','2','0'), ('364456','2942','48244','0','1','F63100','1','2','0'), ('364457','2942','48241','0','2','00611C','1','2','0'), ('364458','2942','48243','0','3','F7941D','1','2','0'), ('364459','2942','48249','0','4','FC6EA3','0','2','0'), ('364460','2942','48242','0','5','6C59DC','0','2','0'), ('364461','2943','48246','0','0','199C0D','0','2','0'), ('364462','2943','48245','0','1','F63100','0','2','0'), ('364463','2943','48247','0','2','00611C','1','2','0'), ('364464','2943','48248','0','3','F7941D','1','2','0'), ('364465','2944','48254','5','0','199C0D','1','2','0'), ('364466','2944','48255','0','1','F63100','0','2','0'), ('364467','2944','48250','0','2','00611C','1','2','0'), ('364468','2944','48251','0','3','F7941D','1','2','0'), ('364469','2944','48252','0','4','FC6EA3','1','2','0'), ('364470','2944','48253','0','5','6C59DC','1','2','0'), ('364471','2944','48256','0','6','C7A72D','1','2','0'), ('364472','2945','48230','5','0','199C0D','0','2','0'), ('364473','2945','48229','0','1','F63100','1','2','0'), ('364474','2946','48233','0','0','199C0D','0','2','0'), ('364475','2947','48257','0','0','199C0D','1','2','0'), ('364476','2947','48258','0','1','F63100','1','2','0'), ('364477','2947','48259','0','2','00611C','1','2','0'), ('364478','2947','48260','0','3','F7941D','1','2','0'), ('364479','2948','48237','0','0','199C0D','0','2','0'), ('364480','2948','48224','0','1','F63100','1','2','0'), ('364481','2949','48262','0','0','199C0D','0','2','0'), ('364482','2949','48261','0','1','F63100','1','2','0'), ('364483','2547','45711','5','0','199C0D','0','2','0'), ('364484','2547','45721','0','1','F63100','0','2','0'), ('364485','2547','45722','0','2','00611C','0','2','0'), ('364486','2547','45714','0','3','F7941D','0','2','0'), ('364487','2547','45706','0','4','FC6EA3','0','2','0'), ('364488','2547','45707','0','5','6C59DC','0','2','0'), ('364489','2547','45708','0','6','C7A72D','0','2','0'), ('364490','2547','45709','0','7','BA2A5D','0','2','0'), ('364491','2547','45710','0','8','F230E0','0','2','0'), ('364492','2548','45700','5','0','199C0D','0','2','0'), ('364493','2549','45724','0','0','199C0D','0','2','0'), ('364494','2549','45725','0','1','F63100','0','2','0'), ('364495','2549','45728','0','2','00611C','0','2','0'), ('364496','2549','45729','0','3','F7941D','0','2','0'), ('364497','2549','45730','0','4','FC6EA3','0','2','0'), ('364498','2549','45732','0','5','6C59DC','0','2','0'), ('364499','2549','45733','0','6','C7A72D','0','2','0'), ('364500','2549','45734','0','7','BA2A5D','0','2','0'), ('364501','2549','45735','0','8','F230E0','0','2','0'), ('364502','2549','45736','0','9','5CCD18','0','2','0'), ('364503','2549','45737','0','10','BB2A02','0','2','0'), ('364504','2549','45738','0','11','AC41A5','0','2','0'), ('364505','2549','45731','0','12','89ABF8','0','2','0'), ('364506','2550','45720','0','0','199C0D','1','2','0'), ('364507','2550','45717','0','1','F63100','1','2','0'), ('364508','2550','45713','0','2','00611C','1','2','0'), ('364509','2550','45715','5','3','F7941D','0','2','0'), ('364510','2550','45718','5','4','FC6EA3','0','2','0'), ('364511','2550','45739','5','5','6C59DC','0','2','0'), ('364512','2551','45701','5','0','199C0D','0','2','0'), ('364513','2552','45712','0','0','199C0D','0','2','0'), ('364514','2552','45716','0','1','F63100','0','2','0'), ('364515','2552','45719','0','2','00611C','0','2','0'), ('364516','2553','45740','0','0','199C0D','0','2','0'), ('364517','2553','45741','0','1','F63100','0','2','0'), ('364518','2553','45742','0','2','00611C','0','2','0'), ('364519','1087','30346','0','0','199C0D','0','2','0'), ('364520','1087','30345','0','1','F63100','0','2','0'), ('364521','1088','30350','5','0','199C0D','0','2','0'), ('364522','1088','30349','5','1','F63100','0','2','0'), ('364523','1089','30396','2','0','199C0D','0','2','0'), ('364524','1090','30398','2','0','199C0D','0','2','0'), ('364525','1091','30322','5','0','199C0D','0','2','0'), ('364526','1091','30277','5','1','F63100','0','2','0'), ('364527','1092','30284','0','0','199C0D','0','2','0'), ('364528','1093','30313','5','0','199C0D','0','2','0'), ('364529','1093','30314','0','1','F63100','0','2','0'), ('364530','1093','30315','5','2','00611C','0','2','0'), ('364531','1093','30316','0','3','F7941D','0','2','0'), ('364532','1094','30279','2','0','199C0D','0','2','0'), ('364533','1094','30280','2','1','F63100','0','2','0'), ('364534','1095','30290','0','0','199C0D','0','2','0'), ('364535','1095','30293','0','1','F63100','0','2','0'), ('364536','1096','30318','5','0','199C0D','0','2','0'), ('364537','1096','30308','2','1','F63100','0','2','0'), ('364538','1096','30320','2','2','00611C','0','2','0'), ('364539','1097','30317','2','0','199C0D','0','2','0'), ('364540','1098','30289','5','0','199C0D','0','2','0'), ('364541','1098','30291','5','1','F63100','0','2','0'), ('364542','1099','30334','2','0','199C0D','0','2','0'), ('364543','1099','30325','2','1','F63100','0','2','0'), ('364544','1100','30306','5','0','199C0D','0','2','0'), ('364545','1101','30274','5','0','199C0D','0','2','0'), ('364546','1102','30281','0','0','199C0D','0','2','0'), ('364547','1577','34351','0','0','199C0D','0','2','0'), ('364548','1577','34350','0','1','F63100','0','2','0'), ('364549','2523','34358','0','0','199C0D','0','2','0'), ('364550','2523','34353','0','1','F63100','0','2','0'), ('364551','2523','34357','0','2','00611C','0','2','0'), ('364552','2523','34354','0','3','F7941D','0','2','0'), ('364553','2523','34356','0','4','FC6EA3','0','2','0'), ('364554','2523','34352','0','5','6C59DC','0','2','0'), ('364555','2523','34355','0','6','C7A72D','0','2','0'), ('364556','1578','34387','5','0','199C0D','0','2','0'), ('364557','1578','34388','2','1','F63100','0','2','0'), ('364558','1579','34393','0','0','199C0D','0','2','0'), ('364559','1579','34386','0','1','F63100','0','2','0'), ('364560','1580','34370','0','0','199C0D','0','2','0'), ('364561','1580','34384','0','1','F63100','0','2','0'), ('364562','1580','34383','0','2','00611C','0','2','0'), ('364563','1581','34438','0','0','199C0D','0','2','0'), ('364564','1581','34413','0','1','F63100','0','2','0'), ('364565','1581','34427','0','2','00611C','0','2','0'), ('364566','1582','34420','0','0','199C0D','0','2','0'), ('364567','1582','34419','0','1','F63100','0','2','0'), ('364568','1582','34418','0','2','00611C','0','2','0'), ('364569','2652','46735','5','0','199C0D','0','2','0'), ('364570','2652','46733','5','1','F63100','0','2','0'), ('364571','2653','46726','5','0','199C0D','1','2','0'), ('364572','2653','46737','0','1','F63100','0','2','0'), ('364573','2653','46744','0','2','00611C','0','2','0'), ('364574','2654','46741','5','0','199C0D','0','2','0'), ('364575','2654','46740','0','1','F63100','0','2','0'), ('364576','2655','46695','5','0','199C0D','0','2','0'), ('364577','2655','46691','5','1','F63100','0','2','0'), ('364578','2656','46669','5','0','199C0D','0','2','0'), ('364579','2656','46671','2','1','F63100','0','2','0'), ('364580','2656','46670','2','2','00611C','0','2','0'), ('364581','2657','46660','5','0','199C0D','0','2','0'), ('364582','2658','46672','5','0','199C0D','0','2','0'), ('364583','2659','46673','0','0','199C0D','0','2','0'), ('364584','2659','46676','5','1','F63100','0','2','0'), ('364585','2660','46661','5','0','199C0D','0','2','0'), ('364586','2661','46678','2','0','199C0D','0','2','0'), ('364587','2661','46675','2','1','F63100','0','2','0'), ('364588','2662','46677','2','0','199C0D','0','2','0'), ('364589','2662','46674','2','1','F63100','0','2','0'), ('364590','2663','46682','5','0','199C0D','0','2','0'), ('364591','2663','46681','2','1','F63100','0','2','0'), ('364592','2664','46663','5','0','199C0D','0','2','0'), ('364593','2665','46687','0','0','199C0D','0','2','0'), ('364594','2665','46685','0','1','F63100','0','2','0'), ('364595','2666','46686','5','0','199C0D','0','2','0'), ('364596','2666','46684','5','1','F63100','0','2','0'), ('364597','2667','46703','0','0','199C0D','0','2','0'), ('364598','2667','46707','0','1','F63100','0','2','0'), ('364599','2667','46697','0','2','00611C','0','2','0'), ('364600','2667','46699','0','3','F7941D','0','2','0'), ('364601','2667','46701','0','4','FC6EA3','0','2','0'), ('364602','2667','46705','0','5','6C59DC','0','2','0'), ('364603','2668','46704','0','0','199C0D','0','2','0'), ('364604','2668','46708','0','1','F63100','0','2','0'), ('364605','2668','46698','0','2','00611C','0','2','0'), ('364606','2668','46700','0','3','F7941D','0','2','0'), ('364607','2668','46702','0','4','FC6EA3','0','2','0'), ('364608','2668','46706','0','5','6C59DC','0','2','0'), ('364609','2669','46715','0','0','199C0D','0','2','0'), ('364610','2669','46719','0','1','F63100','0','2','0'), ('364611','2669','46709','0','2','00611C','0','2','0'), ('364612','2669','46711','0','3','F7941D','0','2','0'), ('364613','2669','46713','0','4','FC6EA3','0','2','0'), ('364614','2669','46717','0','5','6C59DC','0','2','0'), ('364615','2670','46716','0','0','199C0D','0','2','0'), ('364616','2670','46720','0','1','F63100','0','2','0'), ('364617','2670','46710','0','2','00611C','0','2','0'), ('364618','2670','46712','0','3','F7941D','0','2','0'), ('364619','2670','46714','0','4','FC6EA3','0','2','0'), ('364620','2670','46718','0','5','6C59DC','0','2','0'), ('364621','2123','40493','5','0','199C0D','0','2','0'), ('364622','2123','40496','2','1','F63100','0','2','0'), ('364623','2123','40495','0','2','00611C','1','2','0'), ('364624','2123','40492','0','3','F7941D','1','2','0'), ('364625','2123','40494','0','4','FC6EA3','1','2','0'), ('364626','2123','40491','0','5','6C59DC','1','2','0'), ('364627','668','27208','5','0','199C0D','0','2','0'), ('364628','1032','30088','2','0','199C0D','0','2','0'), ('364629','1032','30087','5','1','F63100','0','2','0'), ('364630','1033','30089','5','0','199C0D','0','2','0'), ('364631','2124','40519','5','0','199C0D','0','2','0'), ('364632','2124','40522','2','1','F63100','0','2','0'), ('364633','2124','40521','0','2','00611C','1','2','0'), ('364634','2124','40518','0','3','F7941D','1','2','0'), ('364635','2124','40520','0','4','FC6EA3','1','2','0'), ('364636','2124','40517','0','5','6C59DC','1','2','0'), ('364637','2125','40528','0','0','969696','0','9','2'), ('364638','2125','40529','0','1','C80000','0','9','0'), ('364639','2126','40532','5','0','199C0D','0','2','0'), ('364640','2127','40506','5','0','199C0D','0','2','0'), ('364641','3109','50094','5','0','199C0D','0','2','0'), ('364642','3110','50095','5','0','199C0D','0','2','0'), ('364643','3111','50102','5','0','199C0D','0','2','0'), ('364644','3112','50105','5','0','199C0D','0','2','0'), ('364645','3112','50108','2','1','F63100','0','2','0'), ('364646','3112','50107','0','2','00611C','1','2','0'), ('364647','3112','50104','0','3','F7941D','1','2','0'), ('364648','3112','50106','0','4','FC6EA3','1','2','0'), ('364649','3112','50103','0','5','6C59DC','1','2','0'), ('364650','2128','40547','5','0','199C0D','0','2','0'), ('364651','2128','40550','2','1','F63100','0','2','0'), ('364652','2128','40549','0','2','00611C','1','2','0'), ('364653','2128','40546','0','3','F7941D','1','2','0'), ('364654','2128','40548','0','4','FC6EA3','1','2','0'), ('364655','2128','40545','0','5','6C59DC','1','2','0'), ('364656','671','27240','5','0','199C0D','0','2','0'), ('364657','1034','30093','5','0','199C0D','0','2','0'), ('364658','2129','40584','5','0','199C0D','0','2','0'), ('364659','2129','40587','2','1','F63100','0','2','0'), ('364660','2129','40586','0','2','00611C','1','2','0'), ('364661','2129','40583','0','3','F7941D','1','2','0'), ('364662','2129','40585','0','4','FC6EA3','1','2','0'), ('364663','2129','40582','0','5','6C59DC','1','2','0'), ('364664','2130','40593','5','0','199C0D','0','2','0'), ('364665','2130','40596','2','1','F63100','0','2','0'), ('364666','2130','40595','0','2','00611C','1','2','0'), ('364667','2130','40592','0','3','F7941D','1','2','0'), ('364668','2130','40594','0','4','FC6EA3','1','2','0'), ('364669','2130','40591','0','5','6C59DC','1','2','0'), ('364670','2131','40559','5','0','199C0D','0','2','0'), ('364671','2132','40572','5','0','199C0D','0','2','0'), ('364672','2133','40565','5','0','199C0D','0','2','0'), ('364673','2134','40578','5','0','199C0D','0','2','0'), ('364674','2671','46809','0','0','199C0D','0','2','0'), ('364675','2671','46810','0','1','F63100','0','2','0'), ('364676','2671','46808','0','2','00611C','0','2','0'), ('364677','2672','46812','0','0','199C0D','0','2','0'), ('364678','2673','46799','5','0','199C0D','0','2','0'), ('364679','2673','46798','2','1','F63100','1','2','0'), ('364680','2674','46797','0','0','199C0D','0','2','0'), ('364681','2674','46804','0','1','F63100','0','2','0'), ('364682','2674','46800','0','2','00611C','0','2','0'), ('364683','2674','46803','0','3','F7941D','0','2','0'), ('364684','2675','46816','5','0','199C0D','0','2','0'), ('364685','2675','46819','2','1','F63100','0','2','0'), ('364686','2675','46818','0','2','00611C','1','2','0'), ('364687','2675','46815','0','3','F7941D','1','2','0'), ('364688','2675','46817','0','4','FC6EA3','1','2','0'), ('364689','2675','46814','0','5','6C59DC','1','2','0'), ('364690','2676','46829','0','0','199C0D','0','2','0'), ('364691','2677','46833','0','0','199C0D','0','2','0'), ('364692','2677','46834','0','1','F63100','0','2','0'), ('364693','2677','46830','0','2','00611C','0','2','0'), ('364694','2678','46835','0','0','199C0D','0','2','0'), ('364695','2679','46764','0','0','199C0D','0','2','0'), ('364696','2679','46759','0','1','F63100','0','2','0'), ('364697','2680','46765','0','0','199C0D','0','2','0'), ('364698','2680','46766','0','1','F63100','0','2','0'), ('364699','2680','46758','0','2','00611C','0','2','0'), ('364700','2681','46767','0','0','199C0D','0','2','0'), ('364701','2682','46780','0','0','199C0D','0','2','0'), ('364702','2682','46778','0','1','F63100','0','2','0'), ('364703','2682','46781','0','2','00611C','0','2','0'), ('364704','2683','46782','5','0','199C0D','0','2','0'), ('364705','2684','46760','0','0','199C0D','0','2','0'), ('364706','2684','46761','0','1','F63100','0','2','0'), ('364707','2684','46762','0','2','00611C','0','2','0'), ('364708','2684','46763','0','3','F7941D','1','2','0'), ('364709','2685','46784','0','0','199C0D','0','2','0'), ('364710','2685','46783','0','1','F63100','0','2','0'), ('364711','3113','50142','5','0','199C0D','0','2','0'), ('364712','3114','50145','5','0','199C0D','0','2','0'), ('364713','3114','50148','2','1','F63100','0','2','0'), ('364714','3114','50147','0','2','00611C','1','2','0'), ('364715','3114','50144','0','3','F7941D','1','2','0'), ('364716','3114','50146','0','4','FC6EA3','1','2','0'), ('364717','3114','50143','0','5','6C59DC','1','2','0'), ('364718','3115','50112','5','0','199C0D','0','2','0'), ('364719','3116','50115','5','0','199C0D','0','2','0'), ('364720','1676','35369','0','0','199C0D','0','2','0'), ('364721','1677','35372','0','0','199C0D','0','2','0'), ('364722','1678','35379','0','0','199C0D','0','2','0'), ('364723','1678','35386','0','1','F63100','0','2','0'), ('364724','1678','35377','0','2','00611C','0','2','0'), ('364725','1678','35384','0','3','F7941D','0','2','0'), ('364726','1678','35376','0','4','FC6EA3','0','2','0'), ('364727','1678','35383','0','5','6C59DC','0','2','0'), ('364728','1679','35387','0','0','199C0D','0','2','0'), ('364729','1679','35380','0','1','F63100','0','2','0'), ('364730','1680','35378','0','0','199C0D','0','2','0'), ('364731','1680','35385','0','1','F63100','0','2','0'), ('364732','1681','35403','0','0','199C0D','0','2','0'), ('364733','1681','35404','0','1','F63100','0','2','0'), ('364734','1549','33966','5','0','1A7C11','0','2','0'), ('364735','1550','33971','5','0','1A7C11','0','2','0'), ('364736','1551','33974','5','0','1A7C11','0','2','0'), ('364737','1551','33977','2','1','2774A4','0','2','0'), ('364738','1551','33976','0','2','F63100','1','2','0'), ('364739','1551','33973','0','3','A54F10','1','2','0'), ('364740','1551','33975','0','4','FC6EA3','1','2','0'), ('364741','1551','33972','0','5','6C59DC','1','2','0'), ('364742','1552','34007','5','0','1A7C11','0','2','0'), ('364743','1553','34012','5','0','1A7C11','0','2','0'), ('364744','1554','34015','5','0','1A7C11','0','2','0'), ('364745','1554','34018','2','1','2774A4','0','2','0'), ('364746','1554','34017','0','2','F63100','1','2','0'), ('364747','1554','34014','0','3','A54F10','1','2','0'), ('364748','1554','34016','0','4','FC6EA3','1','2','0'), ('364749','1554','34013','0','5','6C59DC','1','2','0'), ('364750','1555','34048','5','0','1A7C11','0','2','0'), ('364751','1556','34053','5','0','1A7C11','0','2','0'), ('364752','1557','34056','5','0','1A7C11','0','2','0'), ('364753','1557','34059','2','1','2774A4','0','2','0'), ('364754','1557','34058','0','2','F63100','1','2','0'), ('364755','1557','34055','0','3','A54F10','1','2','0'), ('364756','1557','34057','0','4','FC6EA3','1','2','0'), ('364757','1557','34054','0','5','6C59DC','1','2','0'), ('364758','1558','34089','5','0','1A7C11','0','2','0'), ('364759','1559','34094','5','0','1A7C11','0','2','0'), ('364760','1560','34097','5','0','1A7C11','0','2','0'), ('364761','1560','34100','2','1','2774A4','0','2','0'), ('364762','1560','34099','0','2','F63100','1','2','0'), ('364763','1560','34096','0','3','A54F10','1','2','0'), ('364764','1560','34098','0','4','FC6EA3','1','2','0'), ('364765','1560','34095','0','5','6C59DC','1','2','0'), ('364766','1561','34130','5','0','1A7C11','0','2','0'), ('364767','1562','34135','5','0','1A7C11','0','2','0'), ('364768','1563','34138','5','0','1A7C11','0','2','0'), ('364769','1563','34141','2','1','2774A4','0','2','0'), ('364770','1563','34140','0','2','F63100','1','2','0'), ('364771','1563','34137','0','3','A54F10','1','2','0'), ('364772','1563','34139','0','4','FC6EA3','1','2','0'), ('364773','1563','34136','0','5','6C59DC','1','2','0'), ('364774','2461','44403','5','0','1A7C11','0','2','0'), ('364775','2462','44408','5','0','1A7C11','0','2','0'), ('364776','2463','44411','5','0','1A7C11','0','2','0'), ('364777','2463','44414','2','1','2774A4','0','2','0'), ('364778','2463','44413','0','2','F63100','1','2','0'), ('364779','2463','44410','0','3','A54F10','1','2','0'), ('364780','2463','44412','0','4','FC6EA3','1','2','0'), ('364781','2463','44409','0','5','6C59DC','1','2','0'), ('364782','2464','44421','5','0','1A7C11','0','2','0'), ('364783','2554','45796','5','0','199C0D','0','2','0'), ('364784','2554','45797','2','1','F63100','0','2','0'), ('364785','2555','45803','5','0','199C0D','0','2','0'), ('364786','2555','45808','2','1','F63100','0','2','0'), ('364787','2555','45799','0','2','00611C','1','2','0'), ('364788','2555','45804','0','3','F7941D','1','2','0'), ('364789','2555','45801','0','4','FC6EA3','1','2','0'), ('364790','2555','45806','0','5','6C59DC','1','2','0'), ('364791','2555','45800','0','6','C7A72D','1','2','0'), ('364792','2555','45805','0','7','BA2A5D','1','2','0'), ('364793','2555','45802','0','8','F230E0','1','2','0'), ('364794','2555','45807','0','9','5CCD18','1','2','0'), ('364795','2556','45812','0','0','199C0D','0','2','0'), ('364796','2556','45811','0','1','F63100','0','2','0'), ('364797','2556','45813','0','2','00611C','1','2','0'), ('364798','2557','45764','0','0','199C0D','0','2','0'), ('364799','2557','45770','0','1','F63100','0','2','0'), ('364800','2557','45772','0','2','00611C','0','2','0'), ('364801','2558','45786','5','0','199C0D','0','2','0'), ('364802','2559','45777','2','0','199C0D','0','2','0'), ('364803','2559','45774','5','1','F63100','0','2','0'), ('364804','2560','45744','5','0','199C0D','0','2','0'), ('364805','2561','45760','0','0','199C0D','0','2','0'), ('364806','2562','45766','0','0','199C0D','0','2','0'), ('364807','2562','45767','0','1','F63100','0','2','0'), ('364808','2562','45768','0','2','00611C','0','2','0'), ('364809','2562','45769','0','3','F7941D','1','2','0'), ('364810','3108','49951','5','0','2196F3','0','2','0'), ('364811','2136','40671','5','0','199C0D','0','2','0'), ('364812','2137','40676','5','0','199C0D','0','2','0'), ('364813','2138','40679','5','0','199C0D','0','2','0'), ('364814','2138','40682','2','1','F63100','0','2','0'), ('364815','2138','40681','0','2','00611C','1','2','0'), ('364816','2138','40678','0','3','F7941D','1','2','0'), ('364817','2138','40680','0','4','FC6EA3','1','2','0'), ('364818','2138','40677','0','5','6C59DC','1','2','0'), ('364819','2135','40667','5','0','199C0D','0','2','0'), ('364820','2139','40690','5','0','199C0D','0','2','0'), ('364821','2140','40695','5','0','199C0D','0','2','0'), ('364822','2141','40698','5','0','199C0D','0','2','0'), ('364823','2141','40701','2','1','F63100','0','2','0'), ('364824','2141','40700','0','2','00611C','1','2','0'), ('364825','2141','40697','0','3','F7941D','1','2','0'), ('364826','2141','40699','0','4','FC6EA3','1','2','0'), ('364827','2141','40696','0','5','6C59DC','1','2','0'), ('364828','2142','40605','5','0','199C0D','0','2','0'), ('364829','694','27478','5','0','199C0D','0','2','0'), ('364830','1042','30105','5','0','199C0D','0','2','0'), ('364831','2143','40723','5','0','199C0D','0','2','0'), ('364832','2143','40726','2','1','F63100','0','2','0'), ('364833','2143','40725','0','2','00611C','1','2','0'), ('364834','2143','40722','0','3','F7941D','1','2','0'), ('364835','2143','40724','0','4','FC6EA3','1','2','0'), ('364836','2143','40721','0','5','6C59DC','1','2','0'), ('364837','1043','30107','5','0','199C0D','0','2','0'), ('364838','2144','40745','5','0','199C0D','0','2','0'), ('364839','2144','40748','2','1','F63100','0','2','0'), ('364840','2144','40747','0','2','00611C','1','2','0'), ('364841','2144','40744','0','3','F7941D','1','2','0'), ('364842','2144','40746','0','4','FC6EA3','1','2','0'), ('364843','2144','40743','0','5','6C59DC','1','2','0'), ('364844','698','27511','5','0','199C0D','0','2','0'), ('364845','1044','30108','5','0','199C0D','0','2','0'), ('364846','2145','40767','5','0','199C0D','0','2','0'), ('364847','2145','40770','2','1','F63100','0','2','0'), ('364848','2145','40769','0','2','00611C','1','2','0'), ('364849','2145','40766','0','3','F7941D','1','2','0'), ('364850','2145','40768','0','4','FC6EA3','1','2','0'), ('364851','2145','40765','0','5','6C59DC','1','2','0'), ('364852','701','27547','5','0','199C0D','0','2','0'), ('364853','1045','27591','2','0','199C0D','0','2','0'), ('364854','1045','30110','5','1','F63100','0','2','0'), ('364855','1046','30111','5','0','199C0D','0','2','0'), ('364856','2146','40790','5','0','199C0D','0','2','0'), ('364857','2146','40793','2','1','F63100','0','2','0'), ('364858','2146','40792','0','2','00611C','1','2','0'), ('364859','2146','40789','0','3','F7941D','1','2','0'), ('364860','2146','40791','0','4','FC6EA3','1','2','0'), ('364861','2146','40788','0','5','6C59DC','1','2','0'), ('364862','704','27586','5','0','199C0D','0','2','0'), ('364863','1682','35439','0','0','199C0D','0','2','0'), ('364864','1683','35441','0','0','199C0D','0','2','0'), ('364865','1684','35443','0','0','199C0D','0','2','0'), ('364866','1685','35446','0','0','199C0D','0','2','0'), ('364867','1686','35450','0','0','199C0D','0','2','0'), ('364868','1686','35465','0','1','F63100','0','2','0'), ('364869','1686','35456','0','2','00611C','0','2','0'), ('364870','1686','35447','0','3','F7941D','0','2','0'), ('364871','1686','35468','0','4','FC6EA3','0','2','0'), ('364872','1686','35471','0','5','6C59DC','0','2','0'), ('364873','1686','35459','0','6','C7A72D','0','2','0'), ('364874','1687','35449','0','0','199C0D','0','2','0'), ('364875','1687','35464','0','1','F63100','0','2','0'), ('364876','1687','35455','0','2','00611C','0','2','0'), ('364877','1687','35461','0','3','F7941D','0','2','0'), ('364878','1687','35467','0','4','FC6EA3','0','2','0'), ('364879','1687','35470','0','5','6C59DC','0','2','0'), ('364880','1687','35457','0','6','C7A72D','0','2','0'), ('364881','1688','35473','0','0','199C0D','0','2','0'), ('364882','1688','35463','0','1','F63100','0','2','0'), ('364883','1688','35454','0','2','00611C','0','2','0'), ('364884','1688','35472','0','3','F7941D','0','2','0'), ('364885','1688','35466','0','4','FC6EA3','0','2','0'), ('364886','1688','35469','0','5','6C59DC','0','2','0'), ('364887','1688','35458','0','6','C7A72D','0','2','0'), ('364888','1689','35474','0','0','199C0D','0','2','0'), ('364889','1690','35476','0','0','199C0D','0','2','0'), ('364890','1691','35478','0','0','199C0D','0','2','0'), ('364891','1691','35480','0','1','F63100','0','2','0'), ('364892','1692','35487','0','0','199C0D','0','2','0'), ('364893','1692','35484','0','1','F63100','0','2','0'), ('364894','1693','35486','0','0','199C0D','0','2','0'), ('364895','1693','35483','0','1','F63100','0','2','0'), ('364896','1694','35490','0','0','199C0D','0','2','0'), ('364897','1694','35488','0','1','F63100','0','2','0'), ('364898','1694','35489','0','2','00611C','0','2','0'), ('364899','1695','35497','0','0','199C0D','0','2','0'), ('364900','1695','35493','0','1','F63100','1','2','0'), ('364901','1695','35503','0','2','00611C','0','2','0'), ('364902','1695','35499','0','3','F7941D','1','2','0'), ('364903','1695','35496','0','4','FC6EA3','0','2','0'), ('364904','1695','35502','0','5','6C59DC','0','2','0'), ('364905','1696','35508','0','0','199C0D','0','2','0'), ('364906','1696','35507','0','1','F63100','1','2','0'), ('364907','1696','35510','0','2','00611C','0','2','0'), ('364908','1696','35509','0','3','F7941D','1','2','0'), ('364909','1697','35516','0','0','199C0D','0','2','0'), ('364910','1697','35515','0','1','F63100','1','2','0'), ('364911','1697','35518','0','2','00611C','0','2','0'), ('364912','1697','35517','0','3','F7941D','1','2','0'), ('364913','1698','35524','0','0','199C0D','0','2','0'), ('364914','1698','35523','0','1','F63100','1','2','0'), ('364915','1698','35526','0','2','00611C','0','2','0'), ('364916','1698','35525','0','3','F7941D','1','2','0'), ('364917','1699','35531','0','0','199C0D','0','2','0'), ('364918','1699','35529','0','1','F63100','0','2','0'), ('364919','1699','35530','0','2','00611C','0','2','0'), ('364920','1700','35411','0','0','199C0D','0','2','0'), ('364921','1700','35409','0','1','F63100','0','2','0'), ('364922','1700','35407','0','2','00611C','0','2','0'), ('364923','1700','35413','0','3','F7941D','0','2','0'), ('364924','1700','35412','0','4','FC6EA3','0','2','0'), ('364925','1700','35410','0','5','6C59DC','0','2','0'), ('364926','2588','46178','0','0','199C0D','0','2','0'), ('364927','2589','46175','0','0','199C0D','0','2','0'), ('364928','2590','46180','5','0','199C0D','0','2','0'), ('364929','2590','46176','5','1','F63100','0','2','0'), ('364930','2590','46174','2','2','00611C','0','2','0'), ('364931','2591','46181','5','0','199C0D','0','2','0'), ('364932','2591','46184','2','1','F63100','0','2','0'), ('364933','2591','46182','0','2','00611C','1','2','0'), ('364934','2591','46185','0','3','F7941D','1','2','0'), ('364935','2591','46183','0','4','FC6EA3','1','2','0'), ('364936','2591','46186','0','5','6C59DC','1','2','0'), ('364937','2592','46193','0','0','199C0D','0','2','0'), ('364938','2592','46194','0','1','F63100','0','2','0'), ('364939','2592','46192','2','2','00611C','1','2','0'), ('364940','2593','46190','0','0','199C0D','0','2','0'), ('364941','2593','46191','0','1','F63100','1','2','0'), ('364942','2594','46201','0','0','199C0D','0','2','0'), ('364943','2594','46197','0','1','F63100','0','2','0'), ('364944','2595','46202','2','0','199C0D','0','2','0'), ('364945','2595','46198','5','1','F63100','0','2','0'), ('364946','2596','46143','0','0','199C0D','0','2','0'), ('364947','2597','46160','0','0','199C0D','0','2','0'), ('364948','2597','46159','0','1','F63100','0','2','0'), ('364949','2597','46161','0','2','00611C','0','2','0'), ('364950','2598','46158','0','0','199C0D','0','2','0'), ('364951','2599','46154','0','0','199C0D','0','2','0'), ('364952','2736','47002','0','0','199C0D','0','2','0'), ('364953','2736','47003','0','1','F63100','0','2','0'), ('364954','2736','47001','0','2','00611C','0','2','0'), ('364955','2737','47005','0','0','199C0D','0','2','0'), ('364956','2738','47007','0','0','199C0D','0','2','0'), ('364957','2739','47009','0','0','199C0D','0','2','0'), ('364958','2739','47004','0','1','F63100','0','2','0'), ('364959','2740','47010','0','0','199C0D','0','2','0'), ('364960','2741','47011','0','0','199C0D','0','2','0'), ('364961','2742','47012','0','0','199C0D','0','2','0'), ('364962','2600','46240','5','0','199C0D','0','2','0'), ('364963','2600','46243','2','1','F63100','0','2','0'), ('364964','2600','46242','0','2','00611C','1','2','0'), ('364965','2600','46239','0','3','F7941D','1','2','0'), ('364966','2600','46241','0','4','FC6EA3','1','2','0'), ('364967','2600','46238','0','5','6C59DC','1','2','0'), ('364968','2743','47022','0','0','199C0D','0','2','0'), ('364969','2743','47023','0','1','F63100','0','2','0'), ('364970','2743','47021','2','2','00611C','1','2','0'), ('364971','2744','47019','0','0','199C0D','0','2','0'), ('364972','2744','47020','0','1','F63100','1','2','0'), ('364973','2745','47025','0','0','199C0D','0','2','0'), ('364974','2745','47026','0','1','F63100','0','2','0'), ('364975','2745','47027','0','2','00611C','0','2','0'), ('364976','2746','47039','0','0','199C0D','0','2','0'), ('364977','2747','47059','0','0','199C0D','0','2','0'), ('364978','2747','47060','0','1','F63100','0','2','0'), ('364979','2748','47041','0','0','199C0D','0','2','0'), ('364980','2748','47050','0','1','F63100','0','2','0'), ('364981','2601','46230','0','0','199C0D','0','2','0'), ('364982','2602','46219','0','0','199C0D','0','2','0'), ('364983','2602','46221','0','1','F63100','0','2','0'), ('364984','2749','46974','0','0','199C0D','1','2','0'), ('364985','2749','46983','2','1','F63100','0','2','0'), ('364986','2749','46977','0','2','00611C','0','2','0'), ('364987','2749','46978','0','3','F7941D','0','2','0'), ('364988','2749','46981','0','4','FC6EA3','0','2','0'), ('364989','2749','46980','0','5','6C59DC','0','2','0'), ('364990','2749','46979','0','6','C7A72D','0','2','0'), ('364991','2749','46976','0','7','BA2A5D','0','2','0'), ('364992','2749','46982','0','8','F230E0','0','2','0'), ('364993','2603','46216','0','0','199C0D','0','2','0'), ('364994','2603','46217','0','1','F63100','0','2','0'), ('364995','2604','46214','0','0','199C0D','0','2','0'), ('364996','2147','40813','5','0','199C0D','0','2','0'), ('364997','2147','40816','2','1','F63100','0','2','0'), ('364998','2147','40815','0','2','00611C','1','2','0'), ('364999','2147','40812','0','3','F7941D','1','2','0'), ('365000','2147','40814','0','4','FC6EA3','1','2','0'), ('365001','2147','40811','0','5','6C59DC','1','2','0'), ('365002','708','27671','5','0','199C0D','0','2','0'), ('365003','1047','30112','5','0','199C0D','0','2','0'), ('365004','2148','40836','5','0','199C0D','0','2','0'), ('365005','2148','40839','2','1','F63100','0','2','0'), ('365006','2148','40838','0','2','00611C','1','2','0'), ('365007','2148','40835','0','3','F7941D','1','2','0'), ('365008','2148','40837','0','4','FC6EA3','1','2','0'), ('365009','2148','40834','0','5','6C59DC','1','2','0'), ('365010','1048','30114','2','0','199C0D','0','2','0'), ('365011','1048','30113','5','1','F63100','0','2','0'), ('365012','1049','30115','5','0','199C0D','0','2','0'), ('365013','2149','40859','5','0','199C0D','0','2','0'), ('365014','2149','40862','2','1','F63100','0','2','0'), ('365015','2149','40861','0','2','00611C','1','2','0'), ('365016','2149','40858','0','3','F7941D','1','2','0'), ('365017','2149','40860','0','4','FC6EA3','1','2','0'), ('365018','2149','40857','0','5','6C59DC','1','2','0'), ('365019','775','28143','5','0','199C0D','0','2','0'), ('365020','714','27753','5','0','199C0D','0','2','0'), ('365021','1050','30116','5','0','199C0D','0','2','0'), ('365022','2150','40882','5','0','199C0D','0','2','0'), ('365023','2150','40885','2','1','F63100','0','2','0'), ('365024','2150','40884','0','2','00611C','1','2','0'), ('365025','2150','40881','0','3','F7941D','1','2','0'), ('365026','2150','40883','0','4','FC6EA3','1','2','0'), ('365027','2150','40880','0','5','6C59DC','1','2','0'), ('365028','2151','40904','5','0','199C0D','0','2','0'), ('365029','2151','40907','2','1','F63100','0','2','0'), ('365030','2151','40906','0','2','00611C','1','2','0'), ('365031','2151','40903','0','3','F7941D','1','2','0'), ('365032','2151','40905','0','4','FC6EA3','1','2','0'), ('365033','2151','40902','0','5','6C59DC','1','2','0'), ('365034','2950','48340','5','0','199C0D','0','2','0'), ('365035','2951','48341','5','0','199C0D','0','2','0'), ('365036','2952','48348','5','0','199C0D','0','2','0'), ('365037','2952','48351','2','1','F63100','0','2','0'), ('365038','2952','48350','0','2','00611C','1','2','0'), ('365039','2952','48347','0','3','F7941D','1','2','0'), ('365040','2952','48349','0','4','FC6EA3','1','2','0'), ('365041','2952','48346','0','5','6C59DC','1','2','0'), ('365042','856','28894','5','0','199C0D','0','2','0'), ('365043','1051','30118','5','0','199C0D','0','2','0'), ('365044','2152','40926','5','0','199C0D','0','2','0'), ('365045','2152','40929','2','1','F63100','0','2','0'), ('365046','2152','40928','0','2','00611C','1','2','0'), ('365047','2152','40925','0','3','F7941D','1','2','0'), ('365048','2152','40927','0','4','FC6EA3','1','2','0'), ('365049','2152','40924','0','5','6C59DC','1','2','0'), ('365050','1564','34166','5','0','199C0D','0','2','0'), ('365051','1564','34169','2','1','F63100','0','2','0'), ('365052','1564','34168','0','2','00611C','1','2','0'), ('365053','1564','34165','0','3','F7941D','1','2','0'), ('365054','1564','34167','0','4','FC6EA3','1','2','0'), ('365055','1564','34164','0','5','6C59DC','1','2','0'), ('365056','1565','34174','0','0','969696','0','9','2'), ('365057','1565','34175','0','1','C80000','0','9','0'), ('365058','1566','34178','5','0','199C0D','0','2','0'), ('365059','1567','34154','5','0','199C0D','0','2','0'), ('365060','2452','44319','0','0','199C0D','0','2','0'), ('365061','2453','44320','0','0','199C0D','0','2','0'), ('365062','2605','46278','0','0','199C0D','0','2','0'), ('365063','2605','46281','0','1','F63100','0','2','0'), ('365064','2454','44323','0','0','199C0D','0','2','0'), ('365065','2454','44330','0','1','F63100','0','2','0'), ('365066','2454','44325','0','2','00611C','0','2','0'), ('365067','2455','44326','0','0','199C0D','0','2','0'), ('365068','2455','44327','0','1','F63100','0','2','0'), ('365069','2455','44328','0','2','00611C','0','2','0'), ('365070','2456','44329','0','0','199C0D','0','2','0'), ('365071','2456','44330','0','1','F63100','0','2','0'), ('365072','2456','44331','0','2','00611C','0','2','0'), ('365073','1811','36861','5','0','199C0D','0','2','0'), ('365074','1812','36867','0','0','199C0D','0','2','0'), ('365075','1812','36865','0','1','F63100','0','2','0'), ('365076','1812','36864','0','2','00611C','0','2','0'), ('365077','1812','36866','0','3','F7941D','0','2','0'), ('365078','2153','40948','5','0','199C0D','0','2','0'), ('365079','2153','40951','2','1','F63100','0','2','0'), ('365080','2153','40950','0','2','00611C','1','2','0'), ('365081','2153','40947','0','3','F7941D','1','2','0'), ('365082','2153','40949','0','4','FC6EA3','1','2','0'), ('365083','2153','40946','0','5','6C59DC','1','2','0'), ('365084','1813','36878','0','0','969696','0','9','2'), ('365085','1813','36879','0','1','C80000','0','9','0'), ('365086','1814','36853','5','0','199C0D','0','2','0'), ('365087','1816','36915','5','0','199C0D','0','2','0'), ('365088','1817','36921','0','0','199C0D','0','2','0'), ('365089','1817','36919','0','1','F63100','0','2','0'), ('365090','1817','36918','0','2','00611C','0','2','0'), ('365091','1817','36920','0','3','F7941D','0','2','0'), ('365092','2154','40969','5','0','199C0D','0','2','0'), ('365093','2154','40972','2','1','F63100','0','2','0'), ('365094','2154','40971','0','2','00611C','1','2','0'), ('365095','2154','40968','0','3','F7941D','1','2','0'), ('365096','2154','40970','0','4','FC6EA3','1','2','0'), ('365097','2154','40967','0','5','6C59DC','1','2','0'), ('365098','1818','36932','0','0','969696','0','9','2'), ('365099','1818','36933','0','1','C80000','0','9','0'), ('365100','1819','36907','5','0','199C0D','0','2','0'), ('365101','1821','36969','5','0','199C0D','0','2','0'), ('365102','1822','36975','0','0','199C0D','0','2','0'), ('365103','1822','36973','0','1','F63100','0','2','0'), ('365104','1822','36972','0','2','00611C','0','2','0'), ('365105','1822','36974','0','3','F7941D','0','2','0'), ('365106','2155','40990','5','0','199C0D','0','2','0'), ('365107','2155','40993','2','1','F63100','0','2','0'), ('365108','2155','40992','0','2','00611C','1','2','0'), ('365109','2155','40989','0','3','F7941D','1','2','0'), ('365110','2155','40991','0','4','FC6EA3','1','2','0'), ('365111','2155','40988','0','5','6C59DC','1','2','0'), ('365112','1823','36986','0','0','969696','0','9','2'), ('365113','1823','36987','0','1','C80000','0','9','0'), ('365114','1824','36961','5','0','199C0D','0','2','0'), ('365115','1826','37023','5','0','199C0D','0','2','0'), ('365116','1827','37029','0','0','199C0D','0','2','0'), ('365117','1827','37027','0','1','F63100','0','2','0'), ('365118','1827','37026','0','2','00611C','0','2','0'), ('365119','1827','37028','0','3','F7941D','0','2','0'), ('365120','2156','41011','5','0','199C0D','0','2','0'), ('365121','2156','41014','2','1','F63100','0','2','0'), ('365122','2156','41013','0','2','00611C','1','2','0'), ('365123','2156','41010','0','3','F7941D','1','2','0'), ('365124','2156','41012','0','4','FC6EA3','1','2','0'), ('365125','2156','41009','0','5','6C59DC','1','2','0'), ('365126','1828','37040','0','0','969696','0','9','2'), ('365127','1828','37041','0','1','C80000','0','9','0'), ('365128','1829','37015','5','0','199C0D','0','2','0'), ('365129','1831','37077','5','0','199C0D','0','2','0'), ('365130','1832','37083','0','0','199C0D','0','2','0'), ('365131','1832','37081','0','1','F63100','0','2','0'), ('365132','1832','37080','0','2','00611C','0','2','0'), ('365133','1832','37082','0','3','F7941D','0','2','0'), ('365134','2157','41032','5','0','199C0D','0','2','0'), ('365135','2157','41035','2','1','F63100','0','2','0'), ('365136','2157','41034','0','2','00611C','1','2','0'), ('365137','2157','41031','0','3','F7941D','1','2','0'), ('365138','2157','41033','0','4','FC6EA3','1','2','0'), ('365139','2157','41030','0','5','6C59DC','1','2','0'), ('365140','1833','37094','0','0','969696','0','9','2'), ('365141','1833','37095','0','1','C80000','0','9','0'), ('365142','1834','37069','5','0','199C0D','0','2','0'), ('365143','1836','37131','5','0','199C0D','0','2','0'), ('365144','1837','37137','0','0','199C0D','0','2','0'), ('365145','1837','37135','0','1','F63100','0','2','0'), ('365146','1837','37134','0','2','00611C','0','2','0'), ('365147','1837','37136','0','3','F7941D','0','2','0'), ('365148','2158','41053','5','0','199C0D','0','2','0'), ('365149','2158','41056','2','1','F63100','0','2','0'), ('365150','2158','41055','0','2','00611C','1','2','0'), ('365151','2158','41052','0','3','F7941D','1','2','0'), ('365152','2158','41054','0','4','FC6EA3','1','2','0'), ('365153','2158','41051','0','5','6C59DC','1','2','0'), ('365154','1838','37148','0','0','969696','0','9','2'), ('365155','1838','37149','0','1','C80000','0','9','0'), ('365156','1839','37123','5','0','199C0D','0','2','0'), ('365157','1841','37185','5','0','199C0D','0','2','0'), ('365158','1842','37191','0','0','199C0D','0','2','0'), ('365159','1842','37189','0','1','F63100','0','2','0'), ('365160','1842','37188','0','2','00611C','0','2','0'), ('365161','1842','37190','0','3','F7941D','0','2','0'), ('365162','2159','41074','5','0','199C0D','0','2','0'), ('365163','2159','41077','2','1','F63100','0','2','0'), ('365164','2159','41076','0','2','00611C','1','2','0'), ('365165','2159','41073','0','3','F7941D','1','2','0'), ('365166','2159','41075','0','4','FC6EA3','1','2','0'), ('365167','2159','41072','0','5','6C59DC','1','2','0'), ('365168','1843','37202','0','0','969696','0','9','2'), ('365169','1843','37203','0','1','C80000','0','9','0'), ('365170','1844','37177','5','0','199C0D','0','2','0'), ('365171','1846','37239','5','0','199C0D','0','2','0'), ('365172','1847','37245','0','0','199C0D','0','2','0'), ('365173','1847','37243','0','1','F63100','0','2','0'), ('365174','1847','37242','0','2','00611C','0','2','0'), ('365175','1847','37244','0','3','F7941D','0','2','0'), ('365176','2160','41095','5','0','199C0D','0','2','0'), ('365177','2160','41098','2','1','F63100','0','2','0'), ('365178','2160','41097','0','2','00611C','1','2','0'), ('365179','2160','41094','0','3','F7941D','1','2','0'), ('365180','2160','41096','0','4','FC6EA3','1','2','0'), ('365181','2160','41093','0','5','6C59DC','1','2','0'), ('365182','1848','37256','0','0','969696','0','9','2'), ('365183','1848','37257','0','1','C80000','0','9','0'), ('365184','1849','37231','5','0','199C0D','0','2','0'), ('365185','1851','37293','5','0','199C0D','0','2','0'), ('365186','1852','37299','0','0','199C0D','0','2','0'), ('365187','1852','37297','0','1','F63100','0','2','0'), ('365188','1852','37296','0','2','00611C','0','2','0'), ('365189','1852','37298','0','3','F7941D','0','2','0'), ('365190','2161','41116','5','0','199C0D','0','2','0'), ('365191','2161','41119','2','1','F63100','0','2','0'), ('365192','2161','41118','0','2','00611C','1','2','0'), ('365193','2161','41115','0','3','F7941D','1','2','0'), ('365194','2161','41117','0','4','FC6EA3','1','2','0'), ('365195','2161','41114','0','5','6C59DC','1','2','0'), ('365196','1853','37310','0','0','969696','0','9','2'), ('365197','1853','37311','0','1','C80000','0','9','0'), ('365198','1854','37285','5','0','199C0D','0','2','0'), ('365199','1856','37347','5','0','199C0D','0','2','0'), ('365200','1857','37353','0','0','199C0D','0','2','0'), ('365201','1857','37351','0','1','F63100','0','2','0'), ('365202','1857','37350','0','2','00611C','0','2','0'), ('365203','1857','37352','0','3','F7941D','0','2','0'), ('365204','2162','41137','5','0','199C0D','0','2','0'), ('365205','2162','41140','2','1','F63100','0','2','0'), ('365206','2162','41139','0','2','00611C','1','2','0'), ('365207','2162','41136','0','3','F7941D','1','2','0'), ('365208','2162','41138','0','4','FC6EA3','1','2','0'), ('365209','2162','41135','0','5','6C59DC','1','2','0'), ('365210','1858','37364','0','0','969696','0','9','2'), ('365211','1858','37365','0','1','C80000','0','9','0'), ('365212','1859','37339','5','0','199C0D','0','2','0'), ('365213','1861','37401','5','0','199C0D','0','2','0'), ('365214','1862','37407','0','0','199C0D','0','2','0'), ('365215','1862','37405','0','1','F63100','0','2','0'), ('365216','1862','37404','0','2','00611C','0','2','0'), ('365217','1862','37406','0','3','F7941D','0','2','0'), ('365218','2163','41158','5','0','199C0D','0','2','0'), ('365219','2163','41161','2','1','F63100','0','2','0'), ('365220','2163','41160','0','2','00611C','1','2','0'), ('365221','2163','41157','0','3','F7941D','1','2','0'), ('365222','2163','41159','0','4','FC6EA3','1','2','0'), ('365223','2163','41156','0','5','6C59DC','1','2','0'), ('365224','1863','37418','0','0','969696','0','9','2'), ('365225','1863','37419','0','1','C80000','0','9','0'), ('365226','1864','37393','5','0','199C0D','0','2','0'), ('365227','1866','37455','5','0','199C0D','0','2','0'), ('365228','1867','37461','0','0','199C0D','0','2','0'), ('365229','1867','37459','0','1','F63100','0','2','0'), ('365230','1867','37458','0','2','00611C','0','2','0'), ('365231','1867','37460','0','3','F7941D','0','2','0'), ('365232','2164','41179','5','0','199C0D','0','2','0'), ('365233','2164','41182','2','1','F63100','0','2','0'), ('365234','2164','41181','0','2','00611C','1','2','0'), ('365235','2164','41178','0','3','F7941D','1','2','0'), ('365236','2164','41180','0','4','FC6EA3','1','2','0'), ('365237','2164','41177','0','5','6C59DC','1','2','0'), ('365238','1868','37472','0','0','969696','0','9','2'), ('365239','1868','37473','0','1','C80000','0','9','0'), ('365240','1869','37447','5','0','199C0D','0','2','0'), ('365241','1871','37509','5','0','199C0D','0','2','0'), ('365242','1872','37515','0','0','199C0D','0','2','0'), ('365243','1872','37513','0','1','F63100','0','2','0'), ('365244','1872','37512','0','2','00611C','0','2','0'), ('365245','1872','37514','0','3','F7941D','0','2','0'), ('365246','2165','41200','5','0','199C0D','0','2','0'), ('365247','2165','41203','2','1','F63100','0','2','0'), ('365248','2165','41202','0','2','00611C','1','2','0'), ('365249','2165','41199','0','3','F7941D','1','2','0'), ('365250','2165','41201','0','4','FC6EA3','1','2','0'), ('365251','2165','41198','0','5','6C59DC','1','2','0'), ('365252','1873','37526','0','0','969696','0','9','2'), ('365253','1873','37527','0','1','C80000','0','9','0'), ('365254','1874','37501','5','0','199C0D','0','2','0'), ('365255','1876','37563','5','0','199C0D','0','2','0'), ('365256','1877','37569','0','0','199C0D','0','2','0'), ('365257','1877','37567','0','1','F63100','0','2','0'), ('365258','1877','37566','0','2','00611C','0','2','0'), ('365259','1877','37568','0','3','F7941D','0','2','0'), ('365260','2166','41221','5','0','199C0D','0','2','0'), ('365261','2166','41224','2','1','F63100','0','2','0'), ('365262','2166','41223','0','2','00611C','1','2','0'), ('365263','2166','41220','0','3','F7941D','1','2','0'), ('365264','2166','41222','0','4','FC6EA3','1','2','0'), ('365265','2166','41219','0','5','6C59DC','1','2','0'), ('365266','1878','37580','0','0','969696','0','9','2'), ('365267','1878','37581','0','1','C80000','0','9','0'), ('365268','1879','37555','5','0','199C0D','0','2','0'), ('365269','1881','37617','5','0','199C0D','0','2','0'), ('365270','1882','37623','0','0','199C0D','0','2','0'), ('365271','1882','37621','0','1','F63100','0','2','0'), ('365272','1882','37620','0','2','00611C','0','2','0'), ('365273','1882','37622','0','3','F7941D','0','2','0'), ('365274','2167','41242','5','0','199C0D','0','2','0'), ('365275','2167','41245','2','1','F63100','0','2','0'), ('365276','2167','41244','0','2','00611C','1','2','0'), ('365277','2167','41241','0','3','F7941D','1','2','0'), ('365278','2167','41243','0','4','FC6EA3','1','2','0'), ('365279','2167','41240','0','5','6C59DC','1','2','0'), ('365280','1883','37634','0','0','969696','0','9','2'), ('365281','1883','37635','0','1','C80000','0','9','0'), ('365282','1884','37609','5','0','199C0D','0','2','0'), ('365283','1886','37671','5','0','199C0D','0','2','0'), ('365284','1887','37677','0','0','199C0D','0','2','0'), ('365285','1887','37675','0','1','F63100','0','2','0'), ('365286','1887','37674','0','2','00611C','0','2','0'), ('365287','1887','37676','0','3','F7941D','0','2','0'), ('365288','2168','41263','5','0','199C0D','0','2','0'), ('365289','2168','41266','2','1','F63100','0','2','0'), ('365290','2168','41265','0','2','00611C','1','2','0'), ('365291','2168','41262','0','3','F7941D','1','2','0'), ('365292','2168','41264','0','4','FC6EA3','1','2','0'), ('365293','2168','41261','0','5','6C59DC','1','2','0'), ('365294','1888','37688','0','0','969696','0','9','2'), ('365295','1888','37689','0','1','C80000','0','9','0'), ('365296','1889','37663','5','0','199C0D','0','2','0'), ('365297','1891','37725','5','0','199C0D','0','2','0'), ('365298','1892','37731','0','0','199C0D','0','2','0'), ('365299','1892','37729','0','1','F63100','0','2','0'), ('365300','1892','37728','0','2','00611C','0','2','0'), ('365301','1892','37730','0','3','F7941D','0','2','0'), ('365302','2169','41284','5','0','199C0D','0','2','0'), ('365303','2169','41287','2','1','F63100','0','2','0'), ('365304','2169','41286','0','2','00611C','1','2','0'), ('365305','2169','41283','0','3','F7941D','1','2','0'), ('365306','2169','41285','0','4','FC6EA3','1','2','0'), ('365307','2169','41282','0','5','6C59DC','1','2','0'), ('365308','1893','37742','0','0','969696','0','9','2'), ('365309','1893','37743','0','1','C80000','0','9','0'), ('365310','1894','37717','5','0','199C0D','0','2','0'), ('365311','1896','37779','5','0','199C0D','0','2','0'), ('365312','1897','37785','0','0','199C0D','0','2','0'), ('365313','1897','37783','0','1','F63100','0','2','0'), ('365314','1897','37782','0','2','00611C','0','2','0'), ('365315','1897','37784','0','3','F7941D','0','2','0'), ('365316','2170','41305','5','0','199C0D','0','2','0'), ('365317','2170','41308','2','1','F63100','0','2','0'), ('365318','2170','41307','0','2','00611C','1','2','0'), ('365319','2170','41304','0','3','F7941D','1','2','0'), ('365320','2170','41306','0','4','FC6EA3','1','2','0'), ('365321','2170','41303','0','5','6C59DC','1','2','0'), ('365322','1898','37796','0','0','969696','0','9','2'), ('365323','1898','37797','0','1','C80000','0','9','0'), ('365324','1899','37771','5','0','199C0D','0','2','0'), ('365325','1901','37833','5','0','199C0D','0','2','0'), ('365326','1902','37839','0','0','199C0D','0','2','0'), ('365327','1902','37837','0','1','F63100','0','2','0'), ('365328','1902','37836','0','2','00611C','0','2','0'), ('365329','1902','37838','0','3','F7941D','0','2','0'), ('365330','2171','41326','5','0','199C0D','0','2','0'), ('365331','2171','41329','2','1','F63100','0','2','0'), ('365332','2171','41328','0','2','00611C','1','2','0'), ('365333','2171','41325','0','3','F7941D','1','2','0'), ('365334','2171','41327','0','4','FC6EA3','1','2','0'), ('365335','2171','41324','0','5','6C59DC','1','2','0'), ('365336','1903','37850','0','0','969696','0','9','2'), ('365337','1903','37851','0','1','C80000','0','9','0'), ('365338','1904','37825','5','0','199C0D','0','2','0'), ('365339','1906','37887','5','0','199C0D','0','2','0'), ('365340','1907','37893','0','0','199C0D','0','2','0'), ('365341','1907','37891','0','1','F63100','0','2','0'), ('365342','1907','37890','0','2','00611C','0','2','0'), ('365343','1907','37892','0','3','F7941D','0','2','0'), ('365344','2172','41347','5','0','199C0D','0','2','0'), ('365345','2172','41350','2','1','F63100','0','2','0'), ('365346','2172','41349','0','2','00611C','1','2','0'), ('365347','2172','41346','0','3','F7941D','1','2','0'), ('365348','2172','41348','0','4','FC6EA3','1','2','0'), ('365349','2172','41345','0','5','6C59DC','1','2','0'), ('365350','1908','37904','0','0','969696','0','9','2'), ('365351','1908','37905','0','1','C80000','0','9','0'), ('365352','1909','37879','5','0','199C0D','0','2','0'), ('365353','1911','37941','5','0','199C0D','0','2','0'), ('365354','1912','37947','0','0','199C0D','0','2','0'), ('365355','1912','37945','0','1','F63100','0','2','0'), ('365356','1912','37944','0','2','00611C','0','2','0'), ('365357','1912','37946','0','3','F7941D','0','2','0'), ('365358','2173','41368','5','0','199C0D','0','2','0'), ('365359','2173','41371','2','1','F63100','0','2','0'), ('365360','2173','41370','0','2','00611C','1','2','0'), ('365361','2173','41367','0','3','F7941D','1','2','0'), ('365362','2173','41369','0','4','FC6EA3','1','2','0'), ('365363','2173','41366','0','5','6C59DC','1','2','0'), ('365364','1913','37958','0','0','969696','0','9','2'), ('365365','1913','37959','0','1','C80000','0','9','0'), ('365366','1914','37933','5','0','199C0D','0','2','0'), ('365367','1916','37995','5','0','199C0D','0','2','0'), ('365368','1917','38001','0','0','199C0D','0','2','0'), ('365369','1917','37999','0','1','F63100','0','2','0'), ('365370','1917','37998','0','2','00611C','0','2','0'), ('365371','1917','38000','0','3','F7941D','0','2','0'), ('365372','2174','41389','5','0','199C0D','0','2','0'), ('365373','2174','41392','2','1','F63100','0','2','0'), ('365374','2174','41391','0','2','00611C','1','2','0'), ('365375','2174','41388','0','3','F7941D','1','2','0'), ('365376','2174','41390','0','4','FC6EA3','1','2','0'), ('365377','2174','41387','0','5','6C59DC','1','2','0'), ('365378','1918','38012','0','0','969696','0','9','2'), ('365379','1918','38013','0','1','C80000','0','9','0'), ('365380','1919','37987','5','0','199C0D','0','2','0'), ('365381','1921','38049','5','0','199C0D','0','2','0'), ('365382','1922','38055','0','0','199C0D','0','2','0'), ('365383','1922','38053','0','1','F63100','0','2','0'), ('365384','1922','38052','0','2','00611C','0','2','0'), ('365385','1922','38054','0','3','F7941D','0','2','0'), ('365386','2175','41410','5','0','199C0D','0','2','0'), ('365387','2175','41413','2','1','F63100','0','2','0'), ('365388','2175','41412','0','2','00611C','1','2','0'), ('365389','2175','41409','0','3','F7941D','1','2','0'), ('365390','2175','41411','0','4','FC6EA3','1','2','0'), ('365391','2175','41408','0','5','6C59DC','1','2','0'), ('365392','1923','38066','0','0','969696','0','9','2'), ('365393','1923','38067','0','1','C80000','0','9','0'), ('365394','1924','38041','5','0','199C0D','0','2','0'), ('365395','1926','38103','5','0','199C0D','0','2','0'), ('365396','1927','38109','0','0','199C0D','0','2','0'), ('365397','1927','38107','0','1','F63100','0','2','0'), ('365398','1927','38106','0','2','00611C','0','2','0'), ('365399','1927','38108','0','3','F7941D','0','2','0'), ('365400','2176','41431','5','0','199C0D','0','2','0'), ('365401','2176','41434','2','1','F63100','0','2','0'), ('365402','2176','41433','0','2','00611C','1','2','0'), ('365403','2176','41430','0','3','F7941D','1','2','0'), ('365404','2176','41432','0','4','FC6EA3','1','2','0'), ('365405','2176','41429','0','5','6C59DC','1','2','0'), ('365406','1928','38120','0','0','969696','0','9','2'), ('365407','1928','38121','0','1','C80000','0','9','0'), ('365408','1929','38095','5','0','199C0D','0','2','0'), ('365409','1931','38157','5','0','199C0D','0','2','0'), ('365410','1932','38163','0','0','199C0D','0','2','0'), ('365411','1932','38161','0','1','F63100','0','2','0'), ('365412','1932','38160','0','2','00611C','0','2','0'), ('365413','1932','38162','0','3','F7941D','0','2','0'), ('365414','2177','41452','5','0','199C0D','0','2','0'), ('365415','2177','41455','2','1','F63100','0','2','0'), ('365416','2177','41454','0','2','00611C','1','2','0'), ('365417','2177','41451','0','3','F7941D','1','2','0'), ('365418','2177','41453','0','4','FC6EA3','1','2','0'), ('365419','2177','41450','0','5','6C59DC','1','2','0'), ('365420','1933','38174','0','0','969696','0','9','2'), ('365421','1933','38175','0','1','C80000','0','9','0'), ('365422','1934','38149','5','0','199C0D','0','2','0'), ('365423','1936','38211','5','0','199C0D','0','2','0'), ('365424','1937','38217','0','0','199C0D','0','2','0'), ('365425','1937','38215','0','1','F63100','0','2','0'), ('365426','1937','38214','0','2','00611C','0','2','0'), ('365427','1937','38216','0','3','F7941D','0','2','0'), ('365428','2178','41473','5','0','199C0D','0','2','0'), ('365429','2178','41476','2','1','F63100','0','2','0'), ('365430','2178','41475','0','2','00611C','1','2','0'), ('365431','2178','41472','0','3','F7941D','1','2','0'), ('365432','2178','41474','0','4','FC6EA3','1','2','0'), ('365433','2178','41471','0','5','6C59DC','1','2','0'), ('365434','1938','38228','0','0','969696','0','9','2'), ('365435','1938','38229','0','1','C80000','0','9','0'), ('365436','1939','38203','5','0','199C0D','0','2','0'), ('365437','1941','38265','5','0','199C0D','0','2','0'), ('365438','1942','38271','0','0','199C0D','0','2','0'), ('365439','1942','38269','0','1','F63100','0','2','0'), ('365440','1942','38268','0','2','00611C','0','2','0'), ('365441','1942','38270','0','3','F7941D','0','2','0'), ('365442','2179','41494','5','0','199C0D','0','2','0'), ('365443','2179','41497','2','1','F63100','0','2','0'), ('365444','2179','41496','0','2','00611C','1','2','0'), ('365445','2179','41493','0','3','F7941D','1','2','0'), ('365446','2179','41495','0','4','FC6EA3','1','2','0'), ('365447','2179','41492','0','5','6C59DC','1','2','0'), ('365448','1943','38282','0','0','969696','0','9','2'), ('365449','1943','38283','0','1','C80000','0','9','0'), ('365450','1944','38257','5','0','199C0D','0','2','0'), ('365451','1946','38319','5','0','199C0D','0','2','0'), ('365452','1947','38325','0','0','199C0D','0','2','0'), ('365453','1947','38323','0','1','F63100','0','2','0'), ('365454','1947','38322','0','2','00611C','0','2','0'), ('365455','1947','38324','0','3','F7941D','0','2','0'), ('365456','2180','41515','5','0','199C0D','0','2','0'), ('365457','2180','41518','2','1','F63100','0','2','0'), ('365458','2180','41517','0','2','00611C','1','2','0'), ('365459','2180','41514','0','3','F7941D','1','2','0'), ('365460','2180','41516','0','4','FC6EA3','1','2','0'), ('365461','2180','41513','0','5','6C59DC','1','2','0'), ('365462','1948','38336','0','0','969696','0','9','2'), ('365463','1948','38337','0','1','C80000','0','9','0'), ('365464','1949','38311','5','0','199C0D','0','2','0'), ('365465','1951','38373','5','0','199C0D','0','2','0'), ('365466','1952','38379','0','0','199C0D','0','2','0'), ('365467','1952','38377','0','1','F63100','0','2','0'), ('365468','1952','38376','0','2','00611C','0','2','0'), ('365469','1952','38378','0','3','F7941D','0','2','0'), ('365470','2181','41536','5','0','199C0D','0','2','0'), ('365471','2181','41539','2','1','F63100','0','2','0'), ('365472','2181','41538','0','2','00611C','1','2','0'), ('365473','2181','41535','0','3','F7941D','1','2','0'), ('365474','2181','41537','0','4','FC6EA3','1','2','0'), ('365475','2181','41534','0','5','6C59DC','1','2','0'), ('365476','1953','38390','0','0','969696','0','9','2'), ('365477','1953','38391','0','1','C80000','0','9','0'), ('365478','1954','38365','5','0','199C0D','0','2','0'), ('365479','1956','38427','5','0','199C0D','0','2','0'), ('365480','1957','38433','0','0','199C0D','0','2','0'), ('365481','1957','38431','0','1','F63100','0','2','0'), ('365482','1957','38430','0','2','00611C','0','2','0'), ('365483','1957','38432','0','3','F7941D','0','2','0'), ('365484','2182','41557','5','0','199C0D','0','2','0'), ('365485','2182','41560','2','1','F63100','0','2','0'), ('365486','2182','41559','0','2','00611C','1','2','0'), ('365487','2182','41556','0','3','F7941D','1','2','0'), ('365488','2182','41558','0','4','FC6EA3','1','2','0'), ('365489','2182','41555','0','5','6C59DC','1','2','0'), ('365490','1958','38444','0','0','969696','0','9','2'), ('365491','1958','38445','0','1','C80000','0','9','0'), ('365492','1959','38419','5','0','199C0D','0','2','0'), ('365493','1961','38481','5','0','199C0D','0','2','0'), ('365494','1962','38487','0','0','199C0D','0','2','0'), ('365495','1962','38485','0','1','F63100','0','2','0'), ('365496','1962','38484','0','2','00611C','0','2','0'), ('365497','1962','38486','0','3','F7941D','0','2','0'), ('365498','2183','41578','5','0','199C0D','0','2','0'), ('365499','2183','41581','2','1','F63100','0','2','0'), ('365500','2183','41580','0','2','00611C','1','2','0'), ('365501','2183','41577','0','3','F7941D','1','2','0'), ('365502','2183','41579','0','4','FC6EA3','1','2','0'), ('365503','2183','41576','0','5','6C59DC','1','2','0'), ('365504','1963','38498','0','0','969696','0','9','2'), ('365505','1963','38499','0','1','C80000','0','9','0'), ('365506','1964','38473','5','0','199C0D','0','2','0'), ('365507','1966','38535','5','0','199C0D','0','2','0'), ('365508','1967','38541','0','0','199C0D','0','2','0'), ('365509','1967','38539','0','1','F63100','0','2','0'), ('365510','1967','38538','0','2','00611C','0','2','0'), ('365511','1967','38540','0','3','F7941D','0','2','0'), ('365512','2184','41599','5','0','199C0D','0','2','0'), ('365513','2184','41602','2','1','F63100','0','2','0'), ('365514','2184','41601','0','2','00611C','1','2','0'), ('365515','2184','41598','0','3','F7941D','1','2','0'), ('365516','2184','41600','0','4','FC6EA3','1','2','0'), ('365517','2184','41597','0','5','6C59DC','1','2','0'), ('365518','1968','38552','0','0','969696','0','9','2'), ('365519','1968','38553','0','1','C80000','0','9','0'), ('365520','1969','38527','5','0','199C0D','0','2','0'), ('365521','1971','38589','5','0','199C0D','0','2','0'), ('365522','1972','38595','0','0','199C0D','0','2','0'), ('365523','1972','38593','0','1','F63100','0','2','0'), ('365524','1972','38592','0','2','00611C','0','2','0'), ('365525','1972','38594','0','3','F7941D','0','2','0'), ('365526','2185','41620','5','0','199C0D','0','2','0'), ('365527','2185','41623','2','1','F63100','0','2','0'), ('365528','2185','41622','0','2','00611C','1','2','0'), ('365529','2185','41619','0','3','F7941D','1','2','0'), ('365530','2185','41621','0','4','FC6EA3','1','2','0'), ('365531','2185','41618','0','5','6C59DC','1','2','0'), ('365532','1973','38606','0','0','969696','0','9','2'), ('365533','1973','38607','0','1','C80000','0','9','0'), ('365534','1974','38581','5','0','199C0D','0','2','0'), ('365535','1976','38643','5','0','199C0D','0','2','0'), ('365536','1977','38649','0','0','199C0D','0','2','0'), ('365537','1977','38647','0','1','F63100','0','2','0'), ('365538','1977','38646','0','2','00611C','0','2','0'), ('365539','1977','38648','0','3','F7941D','0','2','0'), ('365540','2186','41641','5','0','199C0D','0','2','0'), ('365541','2186','41644','2','1','F63100','0','2','0'), ('365542','2186','41643','0','2','00611C','1','2','0'), ('365543','2186','41640','0','3','F7941D','1','2','0'), ('365544','2186','41642','0','4','FC6EA3','1','2','0'), ('365545','2186','41639','0','5','6C59DC','1','2','0'), ('365546','1978','38660','0','0','969696','0','9','2'), ('365547','1978','38661','0','1','C80000','0','9','0'), ('365548','1979','38635','5','0','199C0D','0','2','0'), ('365549','1981','38697','5','0','199C0D','0','2','0'), ('365550','1982','38703','0','0','199C0D','0','2','0'), ('365551','1982','38701','0','1','F63100','0','2','0'), ('365552','1982','38700','0','2','00611C','0','2','0'), ('365553','1982','38702','0','3','F7941D','0','2','0'), ('365554','2187','41662','5','0','199C0D','0','2','0'), ('365555','2187','41665','2','1','F63100','0','2','0'), ('365556','2187','41664','0','2','00611C','1','2','0'), ('365557','2187','41661','0','3','F7941D','1','2','0'), ('365558','2187','41663','0','4','FC6EA3','1','2','0'), ('365559','2187','41660','0','5','6C59DC','1','2','0'), ('365560','1983','38714','0','0','969696','0','9','2'), ('365561','1983','38715','0','1','C80000','0','9','0'), ('365562','1984','38689','5','0','199C0D','0','2','0'), ('365563','1986','38751','5','0','199C0D','0','2','0'), ('365564','1987','38757','0','0','199C0D','0','2','0'), ('365565','1987','38755','0','1','F63100','0','2','0'), ('365566','1987','38754','0','2','00611C','0','2','0'), ('365567','1987','38756','0','3','F7941D','0','2','0'), ('365568','2188','41683','5','0','199C0D','0','2','0'), ('365569','2188','41686','2','1','F63100','0','2','0'), ('365570','2188','41685','0','2','00611C','1','2','0'), ('365571','2188','41682','0','3','F7941D','1','2','0'), ('365572','2188','41684','0','4','FC6EA3','1','2','0'), ('365573','2188','41681','0','5','6C59DC','1','2','0'), ('365574','1988','38768','0','0','969696','0','9','2'), ('365575','1988','38769','0','1','C80000','0','9','0'), ('365576','1989','38743','5','0','199C0D','0','2','0'), ('365577','1991','38805','5','0','199C0D','0','2','0'), ('365578','1992','38811','0','0','199C0D','0','2','0'), ('365579','1992','38809','0','1','F63100','0','2','0'), ('365580','1992','38808','0','2','00611C','0','2','0'), ('365581','1992','38810','0','3','F7941D','0','2','0'), ('365582','2189','41704','5','0','199C0D','0','2','0'), ('365583','2189','41707','2','1','F63100','0','2','0'), ('365584','2189','41706','0','2','00611C','1','2','0'), ('365585','2189','41703','0','3','F7941D','1','2','0'), ('365586','2189','41705','0','4','FC6EA3','1','2','0'), ('365587','2189','41702','0','5','6C59DC','1','2','0'), ('365588','1993','38822','0','0','969696','0','9','2'), ('365589','1993','38823','0','1','C80000','0','9','0'), ('365590','1994','38797','5','0','199C0D','0','2','0'), ('365591','1996','38859','5','0','199C0D','0','2','0'), ('365592','1997','38865','0','0','199C0D','0','2','0'), ('365593','1997','38863','0','1','F63100','0','2','0'), ('365594','1997','38862','0','2','00611C','0','2','0'), ('365595','1997','38864','0','3','F7941D','0','2','0'), ('365596','2190','41725','5','0','199C0D','0','2','0'), ('365597','2190','41728','2','1','F63100','0','2','0'), ('365598','2190','41727','0','2','00611C','1','2','0'), ('365599','2190','41724','0','3','F7941D','1','2','0'), ('365600','2190','41726','0','4','FC6EA3','1','2','0'), ('365601','2190','41723','0','5','6C59DC','1','2','0'), ('365602','1998','38876','0','0','969696','0','9','2'), ('365603','1998','38877','0','1','C80000','0','9','0'), ('365604','1999','38851','5','0','199C0D','0','2','0'), ('365605','2001','38913','5','0','199C0D','0','2','0'), ('365606','2002','38919','0','0','199C0D','0','2','0'), ('365607','2002','38917','0','1','F63100','0','2','0'), ('365608','2002','38916','0','2','00611C','0','2','0'), ('365609','2002','38918','0','3','F7941D','0','2','0'), ('365610','2191','41746','5','0','199C0D','0','2','0'), ('365611','2191','41749','2','1','F63100','0','2','0'), ('365612','2191','41748','0','2','00611C','1','2','0'), ('365613','2191','41745','0','3','F7941D','1','2','0'), ('365614','2191','41747','0','4','FC6EA3','1','2','0'), ('365615','2191','41744','0','5','6C59DC','1','2','0'), ('365616','2003','38930','0','0','969696','0','9','2'), ('365617','2003','38931','0','1','C80000','0','9','0'), ('365618','2004','38905','5','0','199C0D','0','2','0'), ('365619','2006','38967','5','0','199C0D','0','2','0'), ('365620','2007','38973','0','0','199C0D','0','2','0'), ('365621','2007','38971','0','1','F63100','0','2','0'), ('365622','2007','38970','0','2','00611C','0','2','0'), ('365623','2007','38972','0','3','F7941D','0','2','0'), ('365624','2192','41767','5','0','199C0D','0','2','0'), ('365625','2192','41770','2','1','F63100','0','2','0'), ('365626','2192','41769','0','2','00611C','1','2','0'), ('365627','2192','41766','0','3','F7941D','1','2','0'), ('365628','2192','41768','0','4','FC6EA3','1','2','0'), ('365629','2192','41765','0','5','6C59DC','1','2','0'), ('365630','2008','38984','0','0','969696','0','9','2'), ('365631','2008','38985','0','1','C80000','0','9','0'), ('365632','2009','38959','5','0','199C0D','0','2','0'), ('365633','2011','39021','5','0','199C0D','0','2','0'), ('365634','2012','39027','0','0','199C0D','0','2','0'), ('365635','2012','39025','0','1','F63100','0','2','0'), ('365636','2012','39024','0','2','00611C','0','2','0'), ('365637','2012','39026','0','3','F7941D','0','2','0'), ('365638','2193','41788','5','0','199C0D','0','2','0'), ('365639','2193','41791','2','1','F63100','0','2','0'), ('365640','2193','41790','0','2','00611C','1','2','0'), ('365641','2193','41787','0','3','F7941D','1','2','0'), ('365642','2193','41789','0','4','FC6EA3','1','2','0'), ('365643','2193','41786','0','5','6C59DC','1','2','0'), ('365644','2013','39038','0','0','969696','0','9','2'), ('365645','2013','39039','0','1','C80000','0','9','0'), ('365646','2014','39013','5','0','199C0D','0','2','0'), ('365647','2016','39075','5','0','199C0D','0','2','0'), ('365648','2017','39081','0','0','199C0D','0','2','0'), ('365649','2017','39079','0','1','F63100','0','2','0'), ('365650','2017','39078','0','2','00611C','0','2','0'), ('365651','2017','39080','0','3','F7941D','0','2','0'), ('365652','2194','41809','5','0','199C0D','0','2','0'), ('365653','2194','41812','2','1','F63100','0','2','0'), ('365654','2194','41811','0','2','00611C','1','2','0'), ('365655','2194','41808','0','3','F7941D','1','2','0'), ('365656','2194','41810','0','4','FC6EA3','1','2','0'), ('365657','2194','41807','0','5','6C59DC','1','2','0'), ('365658','2018','39092','0','0','969696','0','9','2'), ('365659','2018','39093','0','1','C80000','0','9','0'), ('365660','2019','39067','5','0','199C0D','0','2','0'), ('365661','2021','39129','5','0','199C0D','0','2','0'), ('365662','2022','39135','0','0','199C0D','0','2','0'), ('365663','2022','39133','0','1','F63100','0','2','0'), ('365664','2022','39132','0','2','00611C','0','2','0'), ('365665','2022','39134','0','3','F7941D','0','2','0'), ('365666','2195','41830','5','0','199C0D','0','2','0'), ('365667','2195','41833','2','1','F63100','0','2','0'), ('365668','2195','41832','0','2','00611C','1','2','0'), ('365669','2195','41829','0','3','F7941D','1','2','0'), ('365670','2195','41831','0','4','FC6EA3','1','2','0'), ('365671','2195','41828','0','5','6C59DC','1','2','0'), ('365672','2023','39146','0','0','969696','0','9','2'), ('365673','2023','39147','0','1','C80000','0','9','0'), ('365674','2024','39121','5','0','199C0D','0','2','0'), ('365675','2026','39183','5','0','199C0D','0','2','0'), ('365676','2027','39189','0','0','199C0D','0','2','0'), ('365677','2027','39187','0','1','F63100','0','2','0'), ('365678','2027','39186','0','2','00611C','0','2','0'), ('365679','2027','39188','0','3','F7941D','0','2','0'), ('365680','2196','41851','5','0','199C0D','0','2','0'), ('365681','2196','41854','2','1','F63100','0','2','0'), ('365682','2196','41853','0','2','00611C','1','2','0'), ('365683','2196','41850','0','3','F7941D','1','2','0'), ('365684','2196','41852','0','4','FC6EA3','1','2','0'), ('365685','2196','41849','0','5','6C59DC','1','2','0'), ('365686','2028','39200','0','0','969696','0','9','2'), ('365687','2028','39201','0','1','C80000','0','9','0'), ('365688','2029','39175','5','0','199C0D','0','2','0'), ('365689','2031','39237','5','0','199C0D','0','2','0'), ('365690','2032','39243','0','0','199C0D','0','2','0'), ('365691','2032','39241','0','1','F63100','0','2','0'), ('365692','2032','39240','0','2','00611C','0','2','0'), ('365693','2032','39242','0','3','F7941D','0','2','0'), ('365694','2197','41872','5','0','199C0D','0','2','0'), ('365695','2197','41875','2','1','F63100','0','2','0'), ('365696','2197','41874','0','2','00611C','1','2','0'), ('365697','2197','41871','0','3','F7941D','1','2','0'), ('365698','2197','41873','0','4','FC6EA3','1','2','0'), ('365699','2197','41870','0','5','6C59DC','1','2','0'), ('365700','2033','39254','0','0','969696','0','9','2'), ('365701','2033','39255','0','1','C80000','0','9','0'), ('365702','2034','39229','5','0','199C0D','0','2','0'), ('365703','2036','39291','5','0','199C0D','0','2','0'), ('365704','2037','39297','0','0','199C0D','0','2','0'), ('365705','2037','39295','0','1','F63100','0','2','0'), ('365706','2037','39294','0','2','00611C','0','2','0'), ('365707','2037','39296','0','3','F7941D','0','2','0'), ('365708','2198','41893','5','0','199C0D','0','2','0'), ('365709','2198','41896','2','1','F63100','0','2','0'), ('365710','2198','41895','0','2','00611C','1','2','0'), ('365711','2198','41892','0','3','F7941D','1','2','0'), ('365712','2198','41894','0','4','FC6EA3','1','2','0'), ('365713','2198','41891','0','5','6C59DC','1','2','0'), ('365714','2038','39308','0','0','969696','0','9','2'), ('365715','2038','39309','0','1','C80000','0','9','0'), ('365716','2039','39283','5','0','199C0D','0','2','0'), ('365717','2041','39345','5','0','199C0D','0','2','0'), ('365718','2042','39351','0','0','199C0D','0','2','0'), ('365719','2042','39349','0','1','F63100','0','2','0'), ('365720','2042','39348','0','2','00611C','0','2','0'), ('365721','2042','39350','0','3','F7941D','0','2','0'), ('365722','2199','41914','5','0','199C0D','0','2','0'), ('365723','2199','41917','2','1','F63100','0','2','0'), ('365724','2199','41916','0','2','00611C','1','2','0'), ('365725','2199','41913','0','3','F7941D','1','2','0'), ('365726','2199','41915','0','4','FC6EA3','1','2','0'), ('365727','2199','41912','0','5','6C59DC','1','2','0'), ('365728','2043','39362','0','0','969696','0','9','2'), ('365729','2043','39363','0','1','C80000','0','9','0'), ('365730','2044','39337','5','0','199C0D','0','2','0'), ('365731','2046','39399','5','0','199C0D','0','2','0'), ('365732','2047','39405','0','0','199C0D','0','2','0'), ('365733','2047','39403','0','1','F63100','0','2','0'), ('365734','2047','39402','0','2','00611C','0','2','0'), ('365735','2047','39404','0','3','F7941D','0','2','0'), ('365736','2200','41935','5','0','199C0D','0','2','0'), ('365737','2200','41938','2','1','F63100','0','2','0'), ('365738','2200','41937','0','2','00611C','1','2','0'), ('365739','2200','41934','0','3','F7941D','1','2','0'), ('365740','2200','41936','0','4','FC6EA3','1','2','0'), ('365741','2200','41933','0','5','6C59DC','1','2','0'), ('365742','2048','39416','0','0','969696','0','9','2'), ('365743','2048','39417','0','1','C80000','0','9','0'), ('365744','2049','39391','5','0','199C0D','0','2','0'), ('365745','2051','39453','5','0','199C0D','0','2','0'), ('365746','2052','39459','0','0','199C0D','0','2','0'), ('365747','2052','39457','0','1','F63100','0','2','0'), ('365748','2052','39456','0','2','00611C','0','2','0'), ('365749','2052','39458','0','3','F7941D','0','2','0'), ('365750','2201','41956','5','0','199C0D','0','2','0'), ('365751','2201','41959','2','1','F63100','0','2','0'), ('365752','2201','41958','0','2','00611C','1','2','0'), ('365753','2201','41955','0','3','F7941D','1','2','0'), ('365754','2201','41957','0','4','FC6EA3','1','2','0'), ('365755','2201','41954','0','5','6C59DC','1','2','0'), ('365756','2053','39470','0','0','969696','0','9','2'), ('365757','2053','39471','0','1','C80000','0','9','0'), ('365758','2054','39445','5','0','199C0D','0','2','0'), ('365759','2056','39507','5','0','199C0D','0','2','0'), ('365760','2057','39513','0','0','199C0D','0','2','0'), ('365761','2057','39511','0','1','F63100','0','2','0'), ('365762','2057','39510','0','2','00611C','0','2','0'), ('365763','2057','39512','0','3','F7941D','0','2','0'), ('365764','2202','41977','5','0','199C0D','0','2','0'), ('365765','2202','41980','2','1','F63100','0','2','0'), ('365766','2202','41979','0','2','00611C','1','2','0'), ('365767','2202','41976','0','3','F7941D','1','2','0'), ('365768','2202','41978','0','4','FC6EA3','1','2','0'), ('365769','2202','41975','0','5','6C59DC','1','2','0'), ('365770','2058','39524','0','0','969696','0','9','2'), ('365771','2058','39525','0','1','C80000','0','9','0'), ('365772','2059','39499','5','0','199C0D','0','2','0'), ('365773','2061','39561','5','0','199C0D','0','2','0'), ('365774','2062','39567','0','0','199C0D','0','2','0'), ('365775','2062','39565','0','1','F63100','0','2','0'), ('365776','2062','39564','0','2','00611C','0','2','0'), ('365777','2062','39566','0','3','F7941D','0','2','0'), ('365778','2203','41998','5','0','199C0D','0','2','0'), ('365779','2203','42001','2','1','F63100','0','2','0'), ('365780','2203','42000','0','2','00611C','1','2','0'), ('365781','2203','41997','0','3','F7941D','1','2','0'), ('365782','2203','41999','0','4','FC6EA3','1','2','0'), ('365783','2203','41996','0','5','6C59DC','1','2','0'), ('365784','2063','39578','0','0','969696','0','9','2'), ('365785','2063','39579','0','1','C80000','0','9','0'), ('365786','2064','39553','5','0','199C0D','0','2','0'), ('365787','2066','39615','5','0','199C0D','0','2','0'), ('365788','2067','39621','0','0','199C0D','0','2','0'), ('365789','2067','39619','0','1','F63100','0','2','0'), ('365790','2067','39618','0','2','00611C','0','2','0'), ('365791','2067','39620','0','3','F7941D','0','2','0'), ('365792','2204','42019','5','0','199C0D','0','2','0'), ('365793','2204','42022','2','1','F63100','0','2','0'), ('365794','2204','42021','0','2','00611C','1','2','0'), ('365795','2204','42018','0','3','F7941D','1','2','0'), ('365796','2204','42020','0','4','FC6EA3','1','2','0'), ('365797','2204','42017','0','5','6C59DC','1','2','0'), ('365798','2068','39632','0','0','969696','0','9','2'), ('365799','2068','39633','0','1','C80000','0','9','0'), ('365800','2069','39607','5','0','199C0D','0','2','0'), ('365801','2071','39669','5','0','199C0D','0','2','0'), ('365802','2072','39675','0','0','199C0D','0','2','0'), ('365803','2072','39673','0','1','F63100','0','2','0'), ('365804','2072','39672','0','2','00611C','0','2','0'), ('365805','2072','39674','0','3','F7941D','0','2','0'), ('365806','2205','42040','5','0','199C0D','0','2','0'), ('365807','2205','42043','2','1','F63100','0','2','0'), ('365808','2205','42042','0','2','00611C','1','2','0'), ('365809','2205','42039','0','3','F7941D','1','2','0'), ('365810','2205','42041','0','4','FC6EA3','1','2','0'), ('365811','2205','42038','0','5','6C59DC','1','2','0'), ('365812','2073','39686','0','0','969696','0','9','2'), ('365813','2073','39687','0','1','C80000','0','9','0'), ('365814','2074','39661','5','0','199C0D','0','2','0'), ('365815','2076','39723','5','0','199C0D','0','2','0'), ('365816','2077','39729','0','0','199C0D','0','2','0'), ('365817','2077','39727','0','1','F63100','0','2','0'), ('365818','2077','39726','0','2','00611C','0','2','0'), ('365819','2077','39728','0','3','F7941D','0','2','0'), ('365820','2206','42061','5','0','199C0D','0','2','0'), ('365821','2206','42064','2','1','F63100','0','2','0'), ('365822','2206','42063','0','2','00611C','1','2','0'), ('365823','2206','42060','0','3','F7941D','1','2','0'), ('365824','2206','42062','0','4','FC6EA3','1','2','0'), ('365825','2206','42059','0','5','6C59DC','1','2','0'), ('365826','2078','39740','0','0','969696','0','9','2'), ('365827','2078','39741','0','1','C80000','0','9','0'), ('365828','2079','39715','5','0','199C0D','0','2','0'), ('365829','724','27904','5','0','199C0D','0','2','0'), ('365830','1396','32439','0','0','199C0D','0','2','0'), ('365831','1396','32437','0','1','F63100','0','2','0'), ('365832','1396','32436','0','2','00611C','0','2','0'), ('365833','1396','32438','0','3','F7941D','0','2','0'), ('365834','2207','42082','5','0','199C0D','0','2','0'), ('365835','2207','42085','2','1','F63100','0','2','0'), ('365836','2207','42084','0','2','00611C','1','2','0'), ('365837','2207','42081','0','3','F7941D','1','2','0'), ('365838','2207','42083','0','4','FC6EA3','1','2','0'), ('365839','2207','42080','0','5','6C59DC','1','2','0'), ('365840','1052','27907','0','0','969696','0','9','2'), ('365841','1052','27908','0','1','C80000','0','9','0'), ('365842','1053','30120','5','0','199C0D','0','2','0'), ('365843','1457','33206','5','0','199C0D','0','2','0'), ('365844','1457','33193','5','1','F63100','0','2','0'), ('365845','1458','33195','5','0','199C0D','0','2','0'), ('365846','1458','33203','5','1','F63100','0','2','0'), ('365847','1458','33202','5','2','00611C','0','2','0'), ('365848','1459','33200','5','0','199C0D','0','2','0'), ('365849','1459','33194','5','1','F63100','0','2','0'), ('365850','1460','33187','5','0','199C0D','0','2','0'), ('365851','1460','33186','5','1','F63100','0','2','0'), ('365852','1460','33204','5','2','00611C','0','2','0'), ('365853','1461','33226','5','0','199C0D','0','2','0'), ('365854','1461','33215','5','1','F63100','0','2','0'), ('365855','1462','33207','5','0','199C0D','0','2','0'), ('365856','1463','33223','5','0','199C0D','0','2','0'), ('365857','1463','33218','5','1','F63100','0','2','0'), ('365858','1464','33210','5','0','199C0D','0','2','0'), ('365859','1464','33209','5','1','F63100','0','2','0'), ('365860','1464','33224','5','2','00611C','0','2','0'), ('365861','1465','33249','5','0','199C0D','0','2','0'), ('365862','1465','33236','5','1','F63100','0','2','0'), ('365863','1466','33238','5','0','199C0D','0','2','0'), ('365864','1466','33246','5','1','F63100','0','2','0'), ('365865','1466','33245','5','2','00611C','0','2','0'), ('365866','1467','33243','5','0','199C0D','0','2','0'), ('365867','1467','33237','5','1','F63100','0','2','0'), ('365868','1468','33230','5','0','199C0D','0','2','0'), ('365869','1468','33229','5','1','F63100','0','2','0'), ('365870','1468','33247','5','2','00611C','0','2','0'), ('365871','1469','33258','5','0','199C0D','0','2','0'), ('365872','1470','33251','5','0','199C0D','0','2','0'), ('365873','1471','33256','5','0','199C0D','0','2','0'), ('365874','1472','33277','5','0','199C0D','0','2','0'), ('365875','1473','33274','5','0','199C0D','0','2','0'), ('365876','1473','33273','5','1','F63100','0','2','0'), ('365877','1473','33272','5','2','00611C','0','2','0'), ('365878','1474','33270','5','0','199C0D','0','2','0'), ('365879','1475','33269','5','0','199C0D','0','2','0'), ('365880','1476','33261','5','0','199C0D','0','2','0'), ('365881','1476','33275','5','1','F63100','0','2','0'), ('365882','1477','33296','5','0','199C0D','0','2','0'), ('365883','1478','33293','5','0','199C0D','0','2','0'), ('365884','1478','33292','5','1','F63100','0','2','0'), ('365885','1478','33291','5','2','00611C','0','2','0'), ('365886','1479','33289','5','0','199C0D','0','2','0'), ('365887','1480','33288','5','0','199C0D','0','2','0'), ('365888','1481','33280','5','0','199C0D','0','2','0'), ('365889','1481','33294','5','1','F63100','0','2','0'), ('365890','1482','33312','5','0','199C0D','0','2','0'), ('365891','1483','33313','5','0','199C0D','0','2','0'), ('365892','1484','33314','5','0','199C0D','0','2','0'), ('365893','1485','33319','5','0','199C0D','0','2','0'), ('365894','1486','33320','5','0','199C0D','0','2','0'), ('365895','1487','33304','5','0','199C0D','0','2','0'), ('365896','1487','33305','5','1','F63100','0','2','0'), ('365897','2208','42103','5','0','199C0D','0','2','0'), ('365898','2208','42106','2','1','F63100','0','2','0'), ('365899','2208','42105','0','2','00611C','1','2','0'), ('365900','2208','42102','0','3','F7941D','1','2','0'), ('365901','2208','42104','0','4','FC6EA3','1','2','0'), ('365902','2208','42101','0','5','6C59DC','1','2','0'), ('365903','727','27936','5','0','199C0D','0','2','0'), ('365904','1054','27935','2','0','199C0D','0','2','0'), ('365905','1054','30122','5','1','F63100','0','2','0'), ('365906','1055','30123','5','0','199C0D','0','2','0'), ('365907','2959','48446','0','0','199C0D','0','2','0'), ('365908','2959','48447','0','1','F63100','0','2','0'), ('365909','2960','48448','0','0','199C0D','0','2','0'), ('365910','2960','48449','0','1','F63100','0','2','0'), ('365911','2960','48450','0','2','00611C','0','2','0'), ('365912','2961','48453','0','0','199C0D','0','2','0'), ('365913','2961','48454','0','1','F63100','0','2','0'), ('365914','2962','48455','0','0','199C0D','0','2','0'), ('365915','2962','48456','0','1','F63100','0','2','0'), ('365916','2209','42125','5','0','199C0D','0','2','0'), ('365917','2209','42128','2','1','F63100','0','2','0'), ('365918','2209','42127','0','2','00611C','1','2','0'), ('365919','2209','42124','0','3','F7941D','1','2','0'), ('365920','2209','42126','0','4','FC6EA3','1','2','0'), ('365921','2209','42123','0','5','6C59DC','1','2','0'), ('365922','730','27975','5','0','199C0D','0','2','0'), ('365923','1056','30126','5','0','199C0D','0','2','0'), ('365924','3123','50313','0','0','1A7C11','0','7','0'), ('365925','3124','50314','0','0','1A7C11','0','7','0'), ('365926','3125','50350','0','0','1A7C11','0','7','0'), ('365927','3125','50356','0','1','274482','0','7','0'), ('365928','3125','50349','0','2','F63100','0','7','0'), ('365929','3125','50355','0','3','2774A4','0','7','0'), ('365930','3125','50351','0','4','6C59DC','0','7','0'), ('365931','3125','50357','0','5','AC8C14','0','7','0'), ('365932','3125','50343','0','6','A54F10','0','7','0'), ('365933','3125','50344','0','7','FC6EA3','0','7','0'), ('365934','3126','50260','0','0','274482','0','7','0'), ('365935','3126','50256','0','1','1A7C11','0','7','0'), ('365936','3126','50261','0','2','F63100','0','7','0'), ('365937','3127','50262','0','0','1A7C11','0','7','0'), ('365938','733','28003','5','0','199C0D','0','2','0'), ('365939','1057','30131','5','0','199C0D','0','2','0'), ('365940','2210','42147','5','0','199C0D','0','2','0'), ('365941','2210','42150','2','1','F63100','0','2','0'), ('365942','2210','42149','0','2','00611C','1','2','0'), ('365943','2210','42146','0','3','F7941D','1','2','0'), ('365944','2210','42148','0','4','FC6EA3','1','2','0'), ('365945','2210','42145','0','5','6C59DC','1','2','0'), ('365946','2211','42168','5','0','199C0D','0','2','0'), ('365947','2211','42171','2','1','F63100','0','2','0'), ('365948','2211','42170','0','2','00611C','1','2','0'), ('365949','2211','42167','0','3','F7941D','1','2','0'), ('365950','2211','42169','0','4','FC6EA3','1','2','0'), ('365951','2211','42166','0','5','6C59DC','1','2','0'), ('365952','736','28031','0','0','199C0D','0','2','0'), ('365953','736','49416','0','1','F63100','0','2','0'), ('365954','736','49417','0','2','00611C','0','2','0'), ('365955','1058','30136','5','0','199C0D','0','2','0'), ('365956','2080','39768','0','0','199C0D','0','2','0'), ('365957','2080','39769','0','1','F63100','0','2','0'), ('365958','2080','39770','0','2','00611C','0','2','0'), ('365959','2080','39771','0','3','F7941D','0','2','0'), ('365960','2081','39772','0','0','199C0D','0','2','0'), ('365961','2081','39773','0','1','F63100','0','2','0'), ('365962','2082','39774','0','0','199C0D','0','2','0'), ('365963','2082','39775','0','1','F63100','0','2','0'), ('365964','2082','39780','0','2','00611C','0','2','0'), ('365965','2083','39777','0','0','199C0D','0','2','0'), ('365966','2083','39778','0','1','F63100','0','2','0'), ('365967','2083','39781','0','2','00611C','0','2','0'), ('365968','2084','39792','0','0','199C0D','0','2','0'), ('365969','2084','39790','0','1','F63100','0','2','0'), ('365970','2084','39793','0','2','00611C','0','2','0'), ('365971','2084','39795','0','3','F7941D','0','2','0'), ('365972','2084','39796','0','4','FC6EA3','0','2','0'), ('365973','3117','50235','5','0','199C0D','0','2','0'), ('365974','3118','50238','5','0','199C0D','0','2','0'), ('365975','3118','50241','5','1','F63100','0','2','0'), ('365976','3119','50236','5','0','199C0D','0','2','0'), ('365977','3119','50239','5','1','F63100','0','2','0'), ('365978','3120','50237','5','0','199C0D','0','2','0'), ('365979','3120','50240','5','1','F63100','0','2','0'), ('365980','3121','50233','5','0','199C0D','0','2','0'), ('365981','3122','50223','5','0','199C0D','0','2','0'), ('365982','3122','50222','5','1','F63100','0','2','0'), ('365983','3122','50224','5','2','00611C','0','2','0'), ('365984','1701','35553','0','0','199C0D','0','2','0'), ('365985','1701','35556','0','1','F63100','0','2','0'), ('365986','1702','35558','0','0','199C0D','0','2','0'), ('365987','1702','35561','0','1','F63100','0','2','0'), ('365988','1703','35562','0','0','199C0D','0','2','0'), ('365989','1704','35563','0','0','199C0D','0','2','0'), ('365990','1705','35592','0','0','199C0D','0','2','0'), ('365991','1705','35584','0','1','F63100','0','2','0'), ('365992','1705','35594','0','2','00611C','0','2','0'), ('365993','1705','35586','0','3','F7941D','0','2','0'), ('365994','1705','35595','0','4','FC6EA3','0','2','0'), ('365995','1705','35587','0','5','6C59DC','0','2','0'), ('365996','1706','35593','0','0','199C0D','0','2','0'), ('365997','1706','35585','0','1','F63100','0','2','0'), ('365998','1707','35583','0','0','199C0D','0','2','0'), ('365999','1707','35591','0','1','F63100','0','2','0'), ('366000','1708','35598','0','0','199C0D','0','2','0'), ('366001','1709','35606','0','0','199C0D','0','2','0'), ('366002','1710','35607','0','0','199C0D','0','2','0'), ('366003','1711','35566','5','0','199C0D','0','2','0'), ('366004','1712','35622','0','0','199C0D','0','2','0'), ('366005','1713','35634','0','0','199C0D','0','2','0'), ('366006','1713','35626','0','1','F63100','0','2','0'), ('366007','1713','35636','0','2','00611C','0','2','0'), ('366008','1713','35628','0','3','F7941D','0','2','0'), ('366009','1713','35637','0','4','FC6EA3','0','2','0'), ('366010','1713','35629','0','5','6C59DC','0','2','0'), ('366011','1714','35635','0','0','199C0D','0','2','0'), ('366012','1714','35627','0','1','F63100','0','2','0'), ('366013','1715','35625','0','0','199C0D','0','2','0'), ('366014','1715','35633','0','1','F63100','0','2','0'), ('366015','1716','35640','0','0','199C0D','0','2','0'), ('366016','1717','35641','0','0','199C0D','0','2','0'), ('366017','1718','35610','5','0','199C0D','0','2','0'), ('366018','1719','35658','0','0','199C0D','0','2','0'), ('366019','1720','35659','0','0','199C0D','0','2','0'), ('366020','1721','35660','0','0','199C0D','0','2','0'), ('366021','1722','35661','0','0','199C0D','0','2','0'), ('366022','1723','35669','0','0','199C0D','0','2','0'), ('366023','1723','35679','0','1','F63100','0','2','0'), ('366024','1723','35670','0','2','00611C','0','2','0'), ('366025','1723','35665','0','3','F7941D','0','2','0'), ('366026','1723','35672','0','4','FC6EA3','0','2','0'), ('366027','1723','35666','0','5','6C59DC','0','2','0'), ('366028','1724','35663','0','0','199C0D','0','2','0'), ('366029','1724','35664','0','1','F63100','0','2','0'), ('366030','1725','35686','0','0','199C0D','0','2','0'), ('366031','1725','35693','0','1','F63100','0','2','0'), ('366032','1725','35684','0','2','00611C','0','2','0'), ('366033','1725','35691','0','3','F7941D','0','2','0'), ('366034','1725','35683','0','4','FC6EA3','0','2','0'), ('366035','1725','35690','0','5','6C59DC','0','2','0'), ('366036','1726','35685','0','0','199C0D','0','2','0'), ('366037','1726','35692','0','1','F63100','0','2','0'), ('366038','1727','35694','0','0','199C0D','0','2','0'), ('366039','1727','35687','0','1','F63100','0','2','0'), ('366040','1728','35707','0','0','199C0D','0','2','0'), ('366041','1729','35708','0','0','199C0D','0','2','0'), ('366042','1730','35725','0','0','199C0D','0','2','0'), ('366043','1731','35726','0','0','199C0D','0','2','0'), ('366044','1732','35727','0','0','199C0D','0','2','0'), ('366045','1733','35728','0','0','199C0D','0','2','0'), ('366046','1734','35736','0','0','199C0D','0','2','0'), ('366047','1734','35746','0','1','F63100','0','2','0'), ('366048','1734','35737','0','2','00611C','0','2','0'), ('366049','1734','35732','0','3','F7941D','0','2','0'), ('366050','1734','35739','0','4','FC6EA3','0','2','0'), ('366051','1734','35733','0','5','6C59DC','0','2','0'), ('366052','1735','35730','0','0','199C0D','0','2','0'), ('366053','1735','35731','0','1','F63100','0','2','0'), ('366054','1736','35753','0','0','199C0D','0','2','0'), ('366055','1736','35760','0','1','F63100','0','2','0'), ('366056','1736','35751','0','2','00611C','0','2','0'), ('366057','1736','35758','0','3','F7941D','0','2','0'), ('366058','1736','35750','0','4','FC6EA3','0','2','0'), ('366059','1736','35757','0','5','6C59DC','0','2','0'), ('366060','1737','35752','0','0','199C0D','0','2','0'), ('366061','1737','35759','0','1','F63100','0','2','0'), ('366062','1738','35761','0','0','199C0D','0','2','0'), ('366063','1738','35754','0','1','F63100','0','2','0'), ('366064','1739','35774','0','0','199C0D','0','2','0'), ('366065','1740','35775','0','0','199C0D','0','2','0'), ('366066','1741','35791','0','0','199C0D','0','2','0'), ('366067','1742','35799','0','0','199C0D','0','2','0'), ('366068','1742','35802','0','1','F63100','0','2','0'), ('366069','1743','35804','0','0','199C0D','0','2','0'), ('366070','1743','35807','0','1','F63100','0','2','0'), ('366071','1744','35808','0','0','199C0D','0','2','0'), ('366072','1745','35809','0','0','199C0D','0','2','0'), ('366073','1746','35834','0','0','199C0D','0','2','0'), ('366074','1746','35826','0','1','F63100','0','2','0'), ('366075','1746','35836','0','2','00611C','0','2','0'), ('366076','1746','35828','0','3','F7941D','0','2','0'), ('366077','1746','35837','0','4','FC6EA3','0','2','0'), ('366078','1746','35829','0','5','6C59DC','0','2','0'), ('366079','1747','35835','0','0','199C0D','0','2','0'), ('366080','1747','35827','0','1','F63100','0','2','0'), ('366081','1748','35825','0','0','199C0D','0','2','0'), ('366082','1748','35833','0','1','F63100','0','2','0'), ('366083','1749','35840','0','0','199C0D','0','2','0'), ('366084','1750','35812','5','0','199C0D','0','2','0'), ('366085','1751','35876','0','0','199C0D','0','2','0'), ('366086','1751','35868','0','1','F63100','0','2','0'), ('366087','1751','35878','0','2','00611C','0','2','0'), ('366088','1751','35870','0','3','F7941D','0','2','0'), ('366089','1751','35879','0','4','FC6EA3','0','2','0'), ('366090','1751','35871','0','5','6C59DC','0','2','0'), ('366091','1752','35877','0','0','199C0D','0','2','0'), ('366092','1752','35869','0','1','F63100','0','2','0'), ('366093','1753','35867','0','0','199C0D','0','2','0'), ('366094','1753','35875','0','1','F63100','0','2','0'), ('366095','1754','35882','0','0','199C0D','0','2','0'), ('366096','1755','35890','0','0','199C0D','0','2','0'), ('366097','1756','35891','0','0','199C0D','0','2','0'), ('366098','1757','35850','5','0','199C0D','0','2','0'), ('366099','1758','35920','0','0','199C0D','0','2','0'), ('366100','1758','35912','0','1','F63100','0','2','0'), ('366101','1758','35922','0','2','00611C','0','2','0'), ('366102','1758','35914','0','3','F7941D','0','2','0'), ('366103','1758','35923','0','4','FC6EA3','0','2','0'), ('366104','1758','35915','0','5','6C59DC','0','2','0'), ('366105','1759','35921','0','0','199C0D','0','2','0'), ('366106','1759','35913','0','1','F63100','0','2','0'), ('366107','1760','35911','0','0','199C0D','0','2','0'), ('366108','1760','35919','0','1','F63100','0','2','0'), ('366109','1761','35926','0','0','199C0D','0','2','0'), ('366110','1762','35934','0','0','199C0D','0','2','0'), ('366111','1763','35935','0','0','199C0D','0','2','0'), ('366112','1764','35894','5','0','199C0D','0','2','0'), ('366113','1765','35952','0','0','199C0D','0','2','0'), ('366114','1766','35964','0','0','199C0D','0','2','0'), ('366115','1766','35956','0','1','F63100','0','2','0'), ('366116','1766','35966','0','2','00611C','0','2','0'), ('366117','1766','35958','0','3','F7941D','0','2','0'), ('366118','1766','35967','0','4','FC6EA3','0','2','0'), ('366119','1766','35959','0','5','6C59DC','0','2','0'), ('366120','1767','35965','0','0','199C0D','0','2','0'), ('366121','1767','35957','0','1','F63100','0','2','0'), ('366122','1768','35955','0','0','199C0D','0','2','0'), ('366123','1768','35963','0','1','F63100','0','2','0'), ('366124','1769','35970','0','0','199C0D','0','2','0'), ('366125','1770','35978','0','0','199C0D','0','2','0'), ('366126','1771','35979','0','0','199C0D','0','2','0'), ('366127','1772','35938','5','0','199C0D','0','2','0'), ('366128','1773','35996','0','0','199C0D','0','2','0'), ('366129','1774','36008','0','0','199C0D','0','2','0'), ('366130','1774','36000','0','1','F63100','0','2','0'), ('366131','1774','36010','0','2','00611C','0','2','0'), ('366132','1774','36002','0','3','F7941D','0','2','0'), ('366133','1774','36011','0','4','FC6EA3','0','2','0'), ('366134','1774','36003','0','5','6C59DC','0','2','0'), ('366135','1775','36009','0','0','199C0D','0','2','0'), ('366136','1775','36001','0','1','F63100','0','2','0'), ('366137','1776','35999','0','0','199C0D','0','2','0'), ('366138','1776','36007','0','1','F63100','0','2','0'), ('366139','1777','36014','0','0','199C0D','0','2','0'), ('366140','1778','36022','0','0','199C0D','0','2','0'), ('366141','1779','36023','0','0','199C0D','0','2','0'), ('366142','1780','35982','5','0','199C0D','0','2','0'), ('366143','1781','36041','0','0','199C0D','0','2','0'), ('366144','1782','36053','0','0','199C0D','0','2','0'), ('366145','1782','36045','0','1','F63100','0','2','0'), ('366146','1782','36055','0','2','00611C','0','2','0'), ('366147','1782','36047','0','3','F7941D','0','2','0'), ('366148','1782','36056','0','4','FC6EA3','0','2','0'), ('366149','1782','36048','0','5','6C59DC','0','2','0'), ('366150','1783','36054','0','0','199C0D','0','2','0'), ('366151','1783','36046','0','1','F63100','0','2','0'), ('366152','1784','36044','0','0','199C0D','0','2','0'), ('366153','1784','36052','0','1','F63100','0','2','0'), ('366154','1785','36059','0','0','199C0D','0','2','0'), ('366155','1786','36067','0','0','199C0D','0','2','0'), ('366156','1787','36068','0','0','199C0D','0','2','0'), ('366157','1788','36026','5','0','199C0D','0','2','0'), ('366158','1789','36086','0','0','199C0D','0','2','0'), ('366159','1790','36098','0','0','199C0D','0','2','0'), ('366160','1790','36090','0','1','F63100','0','2','0'), ('366161','1790','36100','0','2','00611C','0','2','0'), ('366162','1790','36092','0','3','F7941D','0','2','0'), ('366163','1790','36101','0','4','FC6EA3','0','2','0'), ('366164','1790','36093','0','5','6C59DC','0','2','0'), ('366165','1791','36099','0','0','199C0D','0','2','0'), ('366166','1791','36091','0','1','F63100','0','2','0'), ('366167','1792','36089','0','0','199C0D','0','2','0'), ('366168','1792','36097','0','1','F63100','0','2','0'), ('366169','1793','36104','0','0','199C0D','0','2','0'), ('366170','1794','36112','0','0','199C0D','0','2','0'), ('366171','1795','36113','0','0','199C0D','0','2','0'), ('366172','1796','36071','5','0','199C0D','0','2','0'), ('366173','1797','36131','0','0','199C0D','0','2','0'), ('366174','1798','36144','0','0','199C0D','0','2','0'), ('366175','1798','36136','0','1','F63100','0','2','0'), ('366176','1798','36146','0','2','00611C','0','2','0'), ('366177','1798','36138','0','3','F7941D','0','2','0'), ('366178','1798','36147','0','4','FC6EA3','0','2','0'), ('366179','1798','36139','0','5','6C59DC','0','2','0'), ('366180','1799','36145','0','0','199C0D','0','2','0'), ('366181','1799','36137','0','1','F63100','0','2','0'), ('366182','1800','36135','0','0','199C0D','0','2','0'), ('366183','1800','36143','0','1','F63100','0','2','0'), ('366184','1801','36150','0','0','199C0D','0','2','0'), ('366185','1802','36158','0','0','199C0D','0','2','0'), ('366186','1803','36159','0','0','199C0D','0','2','0'), ('366187','1804','36116','5','0','199C0D','0','2','0'), ('366188','472','22945','0','0','199C0D','0','2','0'), ('366189','472','22946','0','1','F63100','0','2','0'), ('366190','2767','47113','1','0','F63100','0','7','0'), ('366191','2768','22950','0','0','787878','0','9','2'), ('366192','2768','22951','0','1','F63100','0','9','0'), ('366193','2768','22948','0','2','199C09','0','9','0'), ('366194','471','22924','0','0','199C0D','0','2','0'), ('366195','471','22920','0','1','F63100','0','2','0'), ('366196','469','22922','0','0','199C0D','0','2','0'), ('366197','469','22923','0','1','F63100','0','2','0'), ('366198','469','22921','0','2','00611C','0','2','0'), ('366199','498','23109','0','0','199C0D','0','2','0'), ('366200','498','23112','0','1','F63100','0','2','0'), ('366201','498','23115','0','2','00611C','0','2','0'), ('366202','498','23113','0','3','F7941D','0','2','0'), ('366203','498','23114','0','4','FC6EA3','0','2','0'), ('366204','498','23110','0','5','6C59DC','0','2','0'), ('366205','540','22942','0','0','199C0D','0','2','0'), ('366206','492','23073','5','0','00AA00','0','2','0'), ('366207','492','23074','5','1','3333FF','0','2','0'), ('366208','2769','47114','1','0','F63100','0','7','0'), ('366209','2770','22910','0','0','787878','0','9','2'), ('366210','2770','22911','0','1','F63100','0','9','0'), ('366211','2770','22908','0','2','199C09','0','9','0'), ('366212','465','22884','0','0','009900','0','2','0'), ('366213','465','22880','0','1','000099','0','2','0'), ('366214','463','22882','0','0','009900','0','2','0'), ('366215','463','22883','0','1','000099','0','2','0'), ('366216','463','22881','0','2','990000','0','2','0'), ('366217','462','22886','0','0','009999','0','2','0'), ('366218','462','22888','0','1','990099','0','2','0'), ('366219','462','22891','0','2','990000','0','2','0'), ('366220','462','22892','0','3','000099','0','2','0'), ('366221','462','22885','0','4','009900','0','2','0'), ('366222','541','22902','5','0','00C800','0','2','0'), ('366223','464','22897','0','0','AA0000','0','2','2'), ('366224','464','22895','0','1','00AA00','0','2','0'), ('366225','478','22985','0','0','199C0D','0','2','0'), ('366226','478','22986','0','1','F63100','0','2','0'), ('366227','2771','47115','1','0','F63100','0','7','0'), ('366228','2772','22990','0','0','787878','0','9','2'), ('366229','2772','22991','0','1','F63100','0','9','0'), ('366230','2772','22988','0','2','199C09','0','9','0'), ('366231','475','22962','0','0','199C0D','0','2','0'), ('366232','475','22963','0','1','F63100','0','2','0'), ('366233','475','22961','0','2','00611C','0','2','0'), ('366234','474','22968','0','0','199C0D','0','2','0'), ('366235','474','22971','0','1','F63100','0','2','0'), ('366236','474','22972','0','2','00611C','0','2','0'), ('366237','474','22965','0','3','F7941D','0','2','0'), ('366238','542','22982','0','0','199C0D','0','2','0'), ('366239','2212','42279','5','0','199C0D','0','2','0'), ('366240','2212','42282','2','1','F63100','0','2','0'), ('366241','2212','42281','0','2','00611C','1','2','0'), ('366242','2212','42278','0','3','F7941D','1','2','0'), ('366243','2212','42280','0','4','FC6EA3','1','2','0'), ('366244','2212','42277','0','5','6C59DC','1','2','0'), ('366245','2213','42285','0','0','199C0D','0','2','0'), ('366246','2213','42286','5','1','F63100','0','2','0'), ('366247','2214','42308','0','0','199C0D','0','2','0'), ('366248','2214','42311','5','1','F63100','0','2','0'), ('366249','2215','42307','0','0','199C0D','1','2','0'), ('366250','2215','42310','5','1','F63100','0','2','0'), ('366251','2773','42289','1','0','F63100','0','7','0'), ('366252','2774','42290','0','0','787878','0','9','2'), ('366253','2774','42291','0','1','F63100','0','9','0'), ('366254','2774','47116','0','2','199C09','0','9','0'), ('366255','2222','42221','0','0','199C0D','0','2','0'), ('366256','2222','42216','0','1','F63100','0','2','0'), ('366257','2223','42189','0','0','199C0D','0','2','0'), ('366258','2223','42190','0','1','F63100','0','2','0'), ('366259','2223','42208','0','2','00611C','0','2','0'), ('366260','2223','42218','0','3','F7941D','0','2','0'), ('366261','2223','42206','0','4','FC6EA3','0','2','0'), ('366262','2223','42225','0','5','6C59DC','0','2','0'), ('366263','2223','42207','0','6','C7A72D','0','2','0'), ('366264','2223','42222','0','7','BA2A5D','0','2','0'), ('366265','2223','42223','0','8','F230E0','0','2','0'), ('366266','2224','42267','5','0','199C0D','0','2','0'), ('366267','2225','42205','2','0','199C0D','0','2','0'), ('366268','2225','42203','5','1','F63100','0','2','0'), ('366269','2226','42268','5','0','199C0D','0','2','0'), ('366270','2227','42213','0','0','199C0D','0','2','0'), ('366271','2227','42214','0','1','F63100','0','2','0'), ('366272','2228','42188','0','0','199C0D','0','2','0'), ('366273','2228','42198','0','1','F63100','0','2','0'), ('366274','2229','42209','0','0','199C0D','0','2','0'), ('366275','2229','42217','0','1','F63100','0','2','0'), ('366276','2229','42219','0','2','00611C','0','2','0'), ('366277','2229','42220','0','3','F7941D','1','2','0'), ('366278','2238','42365','5','0','199C0D','0','2','0'), ('366279','2238','42368','2','1','F63100','0','2','0'), ('366280','2238','42367','0','2','00611C','1','2','0'), ('366281','2238','42364','0','3','F7941D','1','2','0'), ('366282','2238','42366','0','4','FC6EA3','1','2','0'), ('366283','2238','42363','0','5','6C59DC','1','2','0'), ('366284','2239','42371','0','0','199C0D','0','2','0'), ('366285','2239','42372','5','1','F63100','0','2','0'), ('366286','2240','42379','0','0','199C0D','0','2','0'), ('366287','2240','42382','5','1','F63100','0','2','0'), ('366288','2241','42378','0','0','199C0D','1','2','0'), ('366289','2241','42381','5','1','F63100','0','2','0'), ('366290','2777','42375','1','0','F63100','0','7','0'), ('366291','2778','42376','0','0','787878','0','9','2'), ('366292','2778','42377','0','1','F63100','0','9','0'), ('366293','2778','47118','0','2','199C09','0','9','0'), ('366294','2243','42353','0','0','199C0D','0','2','0'), ('366295','2243','42348','0','1','F63100','0','2','0'), ('366296','2244','42321','0','0','199C0D','0','2','0'), ('366297','2244','42322','0','1','F63100','0','2','0'), ('366298','2244','42339','0','2','00611C','0','2','0'), ('366299','2244','42350','0','3','F7941D','0','2','0'), ('366300','2244','42338','0','4','FC6EA3','0','2','0'), ('366301','2244','42357','0','5','6C59DC','0','2','0'), ('366302','2244','42329','0','6','C7A72D','0','2','0'), ('366303','2244','42354','0','7','BA2A5D','0','2','0'), ('366304','2244','42355','0','8','F230E0','0','2','0'), ('366305','2245','42358','5','0','199C0D','0','2','0'), ('366306','2246','42337','2','0','199C0D','0','2','0'), ('366307','2246','42335','5','1','F63100','0','2','0'), ('366308','2247','42359','5','0','199C0D','0','2','0'), ('366309','2248','42345','0','0','199C0D','0','2','0'), ('366310','2248','42346','0','1','F63100','0','2','0'), ('366311','2249','42320','0','0','199C0D','0','2','0'), ('366312','2249','42330','0','1','F63100','0','2','0'), ('366313','2250','42341','0','0','199C0D','0','2','0'), ('366314','2250','42349','0','1','F63100','0','2','0'), ('366315','2250','42351','0','2','00611C','0','2','0'), ('366316','2250','42352','0','3','F7941D','1','2','0'), ('366317','952','29436','5','0','199C0D','0','2','0'), ('366318','952','29437','2','1','F63100','0','2','0'), ('366319','952','29438','0','2','00611C','1','2','0'), ('366320','952','29439','0','3','F7941D','1','2','0'), ('366321','952','29441','0','4','FC6EA3','1','2','0'), ('366322','952','29440','0','5','6C59DC','1','2','0'), ('366323','955','29434','0','0','199C0D','0','2','0'), ('366324','955','29435','5','1','F63100','0','2','0'), ('366325','954','29448','0','0','199C0D','0','2','0'), ('366326','954','29449','5','1','F63100','0','2','0'), ('366327','956','29452','0','0','199C0D','1','2','0'), ('366328','956','29453','5','1','F63100','0','2','0'), ('366329','2779','29433','1','0','F63100','0','7','0'), ('366330','2780','29446','0','0','787878','0','9','2'), ('366331','2780','29432','0','1','F63100','0','9','0'), ('366332','2780','29445','0','2','199C09','0','9','0'), ('366333','960','29405','0','0','199C0D','0','2','0'), ('366334','960','29406','0','1','F63100','0','2','0'), ('366335','959','29426','0','0','199C0D','0','2','0'), ('366336','959','29413','0','1','F63100','0','2','0'), ('366337','959','29411','0','2','00611C','0','2','0'), ('366338','959','29410','0','3','F7941D','0','2','0'), ('366339','959','29399','0','4','FC6EA3','0','2','0'), ('366340','959','29409','0','5','6C59DC','0','2','0'), ('366341','959','29412','0','6','C7A72D','0','2','0'), ('366342','959','29408','0','7','BA2A5D','0','2','0'), ('366343','959','29407','0','8','F230E0','0','2','0'), ('366344','958','29427','5','0','199C0D','0','2','0'), ('366345','962','29403','2','0','199C0D','0','2','0'), ('366346','962','29402','5','1','F63100','0','2','0'), ('366347','961','29396','5','0','199C0D','0','2','0'), ('366348','963','29400','0','0','199C0D','0','2','0'), ('366349','963','29401','0','1','F63100','0','2','0'), ('366350','957','29420','0','0','199C0D','0','2','0'), ('366351','957','29419','0','1','F63100','0','2','0'), ('366352','957','29418','0','2','00611C','0','2','0'), ('366353','957','29417','0','3','F7941D','1','2','0'), ('366354','2251','42423','0','0','199C0D','0','2','0'), ('366355','2251','42424','0','1','F63100','0','2','0'), ('366356','2251','42420','0','2','00611C','0','2','0'), ('366357','2251','42419','0','3','F7941D','0','2','0'), ('366358','2251','42422','0','4','FC6EA3','0','2','0'), ('366359','2251','42418','0','5','6C59DC','0','2','0'), ('366360','2251','42421','0','6','C7A72D','0','2','0'), ('366361','2251','42415','0','7','BA2A5D','0','2','0'), ('366362','2251','42416','0','8','F230E0','0','2','0'), ('366363','2252','42442','5','0','199C0D','0','2','0'), ('366364','2253','42427','5','0','199C0D','0','2','0'), ('366365','2253','42430','2','1','F63100','0','2','0'), ('366366','2253','42429','0','2','00611C','1','2','0'), ('366367','2253','42426','0','3','F7941D','1','2','0'), ('366368','2253','42428','0','4','FC6EA3','1','2','0'), ('366369','2253','42425','0','5','6C59DC','1','2','0'), ('366370','2254','42435','0','0','199C0D','0','2','0'), ('366371','2254','42437','5','1','F63100','0','2','0'), ('366372','2781','42439','1','0','F63100','0','7','0'), ('366373','2782','42440','0','0','787878','0','9','2'), ('366374','2782','42441','0','1','F63100','0','9','0'), ('366375','2782','47121','0','2','199C09','0','9','0'), ('366376','2256','42400','0','0','199C0D','0','2','0'), ('366377','2256','42405','0','1','F63100','0','2','0'), ('366378','2257','42387','2','0','199C0D','0','2','0'), ('366379','2257','42391','5','1','F63100','0','2','0'), ('366380','2258','42386','5','0','199C0D','0','2','0'), ('366381','2259','42395','0','0','199C0D','0','2','0'), ('366382','2259','42393','0','1','F63100','0','2','0'), ('366383','2260','42404','0','0','199C0D','0','2','0'), ('366384','2260','42403','0','1','F63100','0','2','0'), ('366385','2260','42402','0','2','00611C','0','2','0'), ('366386','2260','42401','0','3','F7941D','1','2','0'), ('366387','2783','47122','1','0','F63100','0','7','0'), ('366388','2784','23070','0','0','787878','0','9','2'), ('366389','2784','23071','0','1','F63100','0','9','0'), ('366390','2784','23068','0','2','199C09','0','9','0'), ('366391','487','23042','0','0','009900','0','2','0'), ('366392','487','23043','0','1','000099','0','2','0'), ('366393','487','23041','0','2','990000','0','2','0'), ('366394','543','23062','5','0','00C800','0','2','0'), ('366395','494','23077','5','0','00AA00','0','2','0'), ('366396','494','23078','5','1','3333FF','0','2','0'), ('366397','493','23075','5','0','00AA00','0','2','0'), ('366398','493','23076','5','1','3333FF','0','2','0'), ('366399','2785','47123','1','0','F63100','0','7','0'), ('366400','2786','22870','0','0','787878','0','9','2'), ('366401','2786','22871','0','1','F63100','0','9','0'), ('366402','2786','22868','0','2','199C09','0','9','0'), ('366403','459','22844','0','0','009900','0','2','0'), ('366404','459','22840','0','1','000099','0','2','0'), ('366405','457','22842','0','0','009900','0','2','0'), ('366406','457','22843','0','1','000099','0','2','0'), ('366407','457','22841','0','2','990000','0','2','0'), ('366408','456','22846','0','0','009999','0','2','0'), ('366409','456','22848','0','1','990099','0','2','0'), ('366410','456','22851','0','2','990000','0','2','0'), ('366411','456','22852','0','3','000099','0','2','0'), ('366412','456','22845','0','4','009900','0','2','0'), ('366413','544','22862','0','0','00C800','0','2','0'), ('366414','458','22857','0','0','AA0000','0','2','2'), ('366415','458','22855','0','1','00AA00','0','2','0'), ('366416','484','23025','5','0','00AA00','0','2','0'), ('366417','484','23026','5','1','3333FF','0','2','0'), ('366418','2787','47124','1','0','F63100','0','7','0'), ('366419','2788','23030','0','0','787878','0','9','2'), ('366420','2788','23031','0','1','F63100','0','9','0'), ('366421','2788','23028','0','2','199C09','0','9','0'), ('366422','483','23004','0','0','009900','0','2','0'), ('366423','483','23000','0','1','000099','0','2','0'), ('366424','481','23002','0','0','009900','0','2','0'), ('366425','481','23003','0','1','000099','0','2','0'), ('366426','481','23001','0','2','990000','0','2','0'), ('366427','480','23007','0','0','999900','0','2','0'), ('366428','480','23011','0','1','990000','0','2','0'), ('366429','480','23012','0','2','000099','0','2','0'), ('366430','480','23005','0','3','009900','0','2','0'), ('366431','545','23022','5','0','00C800','0','2','0'), ('366432','482','23017','0','0','AA0000','0','2','2'), ('366433','482','23015','0','1','00AA00','0','2','0'), ('366434','2261','42493','5','0','199C0D','0','2','0'), ('366435','2261','42496','2','1','F63100','0','2','0'), ('366436','2261','42495','0','2','00611C','1','2','0'), ('366437','2261','42492','0','3','F7941D','1','2','0'), ('366438','2261','42494','0','4','FC6EA3','1','2','0'), ('366439','2261','42491','0','5','6C59DC','1','2','0'), ('366440','2262','42498','0','0','199C0D','0','2','0'), ('366441','2262','42501','0','1','F63100','0','2','0'), ('366442','2263','42499','0','0','199C0D','0','2','0'), ('366443','2263','42500','5','1','F63100','0','2','0'), ('366444','2264','42503','0','0','199C0D','0','2','0'), ('366445','2264','42504','5','1','F63100','0','2','0'), ('366446','2265','42502','0','0','199C0D','1','2','0'), ('366447','2265','42497','5','1','F63100','0','2','0'), ('366448','2789','42506','1','0','F63100','0','7','0'), ('366449','2266','42507','0','0','787878','0','9','2'), ('366450','2266','42508','0','1','F63100','0','9','0'), ('366451','2266','47125','0','2','199C09','0','9','0'), ('366452','2267','42473','0','0','199C0D','0','2','0'), ('366453','2267','42476','0','1','F63100','0','2','0'), ('366454','2268','42474','0','0','199C0D','0','2','0'), ('366455','2268','42475','0','1','F63100','0','2','0'), ('366456','2269','42469','5','0','199C0D','0','2','0'), ('366457','2270','42459','5','0','199C0D','0','2','0'), ('366458','2271','42465','0','0','199C0D','0','2','0'), ('366459','2271','42464','0','1','F63100','0','2','0'), ('366460','2272','42549','5','0','199C0D','0','2','0'), ('366461','2272','42552','2','1','F63100','0','2','0'), ('366462','2272','42551','0','2','00611C','1','2','0'), ('366463','2272','42548','0','3','F7941D','1','2','0'), ('366464','2272','42550','0','4','FC6EA3','1','2','0'), ('366465','2272','42547','0','5','6C59DC','1','2','0'), ('366466','2273','42554','0','0','199C0D','0','2','0'), ('366467','2273','42557','0','1','F63100','0','2','0'), ('366468','2274','42555','0','0','199C0D','0','2','0'), ('366469','2274','42556','5','1','F63100','0','2','0'), ('366470','2275','42559','0','0','199C0D','0','2','0'), ('366471','2275','42560','5','1','F63100','0','2','0'), ('366472','2276','42558','0','0','199C0D','1','2','0'), ('366473','2276','42553','5','1','F63100','0','2','0'), ('366474','2790','42562','1','0','F63100','0','7','0'), ('366475','2277','42563','0','0','787878','0','9','2'), ('366476','2277','42564','0','1','F63100','0','9','0'), ('366477','2277','47126','0','2','199C09','0','9','0'), ('366478','2278','42529','0','0','199C0D','0','2','0'), ('366479','2278','42532','0','1','F63100','0','2','0'), ('366480','2279','42530','0','0','199C0D','0','2','0'), ('366481','2279','42531','0','1','F63100','0','2','0'), ('366482','2280','42525','5','0','199C0D','0','2','0'), ('366483','2281','42515','5','0','199C0D','0','2','0'), ('366484','2282','42521','0','0','199C0D','0','2','0'), ('366485','2282','42520','0','1','F63100','0','2','0'), ('366486','2283','42585','5','0','199C0D','0','2','0'), ('366487','2283','42588','2','1','F63100','0','2','0'), ('366488','2283','42587','0','2','00611C','1','2','0'), ('366489','2283','42584','0','3','F7941D','1','2','0'), ('366490','2283','42586','0','4','FC6EA3','1','2','0'), ('366491','2283','42583','0','5','6C59DC','1','2','0'), ('366492','2791','42592','1','0','F63100','0','7','0'), ('366493','2284','42593','0','0','969696','0','9','2'), ('366494','2284','42594','0','1','C80000','0','9','0'), ('366495','2285','42597','5','0','F63100','0','2','0'), ('366496','2286','42573','5','0','199C0D','0','2','0'), ('366497','1583','34451','0','0','199C0D','0','2','0'), ('366498','1584','34465','0','0','199C0D','0','2','0'), ('366499','1584','34463','0','1','F63100','0','2','0'), ('366500','1585','34466','0','0','199C0D','0','2','0'), ('366501','1585','34462','0','1','F63100','0','2','0'), ('366502','1586','34499','0','0','199C0D','0','2','0'), ('366503','1587','34513','0','0','199C0D','0','2','0'), ('366504','1587','34511','0','1','F63100','0','2','0'), ('366505','1588','34514','0','0','199C0D','0','2','0'), ('366506','1588','34510','0','1','F63100','0','2','0'), ('366507','1589','34547','0','0','199C0D','0','2','0'), ('366508','1590','34561','0','0','199C0D','0','2','0'), ('366509','1590','34559','0','1','F63100','0','2','0'), ('366510','1591','34562','0','0','199C0D','0','2','0'), ('366511','1591','34558','0','1','F63100','0','2','0'), ('366512','1592','34595','0','0','199C0D','0','2','0'), ('366513','1593','34609','0','0','199C0D','0','2','0'), ('366514','1593','34607','0','1','F63100','0','2','0'), ('366515','1594','34610','0','0','199C0D','0','2','0'), ('366516','1594','34606','0','1','F63100','0','2','0'), ('366517','1595','34643','0','0','199C0D','0','2','0'), ('366518','1596','34657','0','0','199C0D','0','2','0'), ('366519','1596','34655','0','1','F63100','0','2','0'), ('366520','1597','34658','0','0','199C0D','0','2','0'), ('366521','1597','34654','0','1','F63100','0','2','0'), ('366522','1619','35016','0','0','199C0D','0','2','0'), ('366523','1620','35030','0','0','199C0D','0','2','0'), ('366524','1620','35028','0','1','F63100','0','2','0'), ('366525','1621','35031','0','0','199C0D','0','2','0'), ('366526','1621','35027','0','1','F63100','0','2','0'), ('366527','1601','34739','0','0','199C0D','0','2','0'), ('366528','1602','34753','0','0','199C0D','0','2','0'), ('366529','1602','34751','0','1','F63100','0','2','0'), ('366530','1603','34754','0','0','199C0D','0','2','0'), ('366531','1603','34750','0','1','F63100','0','2','0'), ('366532','1604','34787','0','0','199C0D','0','2','0'), ('366533','1569','34192','0','0','199C0D','0','2','0'), ('366534','1569','34180','0','1','F63100','0','2','0'), ('366535','1570','34194','0','0','199C0D','0','2','0'), ('366536','1570','34190','0','1','F63100','0','2','0'), ('366537','1605','34793','0','0','199C0D','0','2','0'), ('366538','1606','34807','0','0','199C0D','0','2','0'), ('366539','1606','34805','0','1','F63100','0','2','0'), ('366540','1607','34808','0','0','199C0D','0','2','0'), ('366541','1607','34804','0','1','F63100','0','2','0'), ('366542','1608','34841','0','0','199C0D','0','2','0'), ('366543','1609','34855','0','0','199C0D','0','2','0'), ('366544','1609','34853','0','1','F63100','0','2','0'), ('366545','1610','34856','0','0','199C0D','0','2','0'), ('366546','1610','34852','0','1','F63100','0','2','0'), ('366547','1611','34889','0','0','199C0D','0','2','0'), ('366548','1612','34903','0','0','199C0D','0','2','0'), ('366549','1612','34901','0','1','F63100','0','2','0'), ('366550','1613','34904','0','0','199C0D','0','2','0'), ('366551','1613','34900','0','1','F63100','0','2','0'), ('366552','2356','43215','0','0','199C0D','0','2','0'), ('366553','2357','43196','0','0','199C0D','0','2','0'), ('366554','2357','43208','0','1','F63100','0','2','0'), ('366555','2357','43217','0','2','00611C','0','2','0'), ('366556','2357','43216','0','3','F7941D','0','2','0'), ('366557','2358','43213','0','0','199C0D','0','2','0'), ('366558','2359','43212','0','0','199C0D','0','2','0'), ('366559','2359','43210','0','1','F63100','0','2','0'), ('366560','2360','43209','0','0','199C0D','0','2','0'), ('366561','2360','43197','0','1','F63100','0','2','0'), ('366562','2361','43230','0','0','199C0D','0','2','0'), ('366563','2361','43244','0','1','F63100','0','2','0'), ('366564','2362','43243','0','0','199C0D','0','2','0'), ('366565','2362','43241','0','1','F63100','0','2','0'), ('366566','2363','43240','0','0','199C0D','0','2','0'), ('366567','2363','43237','0','1','F63100','0','2','0'), ('366568','2364','43236','0','0','199C0D','0','2','0'), ('366569','2364','43234','0','1','F63100','0','2','0'), ('366570','2365','43253','0','0','199C0D','0','2','0'), ('366571','2366','43258','0','0','199C0D','0','2','0'), ('366572','2366','43259','0','1','F63100','0','2','0'), ('366573','2367','43268','0','0','199C0D','0','2','0'), ('366574','2368','43269','0','0','199C0D','0','2','0'), ('366575','2368','43270','0','1','F63100','0','2','0'), ('366576','2368','43271','0','2','00611C','0','2','0'), ('366577','2368','43272','0','3','F7941D','0','2','0'), ('366578','2369','43273','0','0','199C0D','0','2','0'), ('366579','2369','43275','0','1','F63100','0','2','0'), ('366580','2370','43276','0','0','199C0D','0','2','0'), ('366581','2370','43278','0','1','F63100','0','2','0'), ('366582','2371','43279','0','0','199C0D','0','2','0'), ('366583','2371','43280','0','1','F63100','0','2','0'), ('366584','2372','43329','0','0','199C0D','0','2','0'), ('366585','2373','43310','0','0','199C0D','0','2','0'), ('366586','2373','43322','0','1','F63100','0','2','0'), ('366587','2373','43331','0','2','00611C','0','2','0'), ('366588','2373','43330','0','3','F7941D','0','2','0'), ('366589','2374','43327','0','0','199C0D','0','2','0'), ('366590','2375','43326','0','0','199C0D','0','2','0'), ('366591','2375','43324','0','1','F63100','0','2','0'), ('366592','2376','43323','0','0','199C0D','0','2','0'), ('366593','2376','43311','0','1','F63100','0','2','0'), ('366594','2377','43345','0','0','199C0D','0','2','0'), ('366595','2377','43360','0','1','F63100','0','2','0'), ('366596','2378','43356','0','0','199C0D','0','2','0'), ('366597','2378','43354','0','1','F63100','0','2','0'), ('366598','2379','43353','0','0','199C0D','0','2','0'), ('366599','2379','43346','0','1','F63100','0','2','0'), ('366600','2380','43304','0','0','199C0D','0','2','0'), ('366601','2380','43303','0','1','F63100','0','2','0'), ('366602','2381','43369','0','0','199C0D','0','2','0'), ('366603','2382','43305','0','0','199C0D','0','2','0'), ('366604','2382','43306','0','1','F63100','0','2','0'), ('366605','2383','43388','0','0','199C0D','0','2','0'), ('366606','2383','43389','0','1','F63100','0','2','0'), ('366607','2383','43390','0','2','00611C','0','2','0'), ('366608','2383','43391','0','3','F7941D','0','2','0'), ('366609','2384','43392','0','0','199C0D','0','2','0'), ('366610','2384','43394','0','1','F63100','0','2','0'), ('366611','2385','43395','0','0','199C0D','0','2','0'), ('366612','2385','43397','0','1','F63100','0','2','0'), ('366613','2386','43309','0','0','199C0D','0','2','0'), ('366614','2386','43308','0','1','F63100','0','2','0'), ('366615','2387','43429','0','0','199C0D','0','2','0'), ('366616','2387','43428','0','1','F63100','0','2','0'), ('366617','2387','43427','0','2','00611C','0','2','0'), ('366618','2388','43421','0','0','199C0D','0','2','0'), ('366619','2388','43444','0','1','F63100','0','2','0'), ('366620','2388','43423','0','2','00611C','0','2','0'), ('366621','2389','43433','0','0','199C0D','0','2','0'), ('366622','2389','43443','0','1','F63100','0','2','0'), ('366623','2389','43442','0','2','00611C','0','2','0'), ('366624','2390','43439','0','0','199C0D','0','2','0'), ('366625','2390','43438','0','1','F63100','0','2','0'), ('366626','2390','43441','0','2','00611C','0','2','0'), ('366627','2390','43440','0','3','F7941D','0','2','0'), ('366628','2391','43435','0','0','199C0D','0','2','0'), ('366629','2391','43434','0','1','F63100','0','2','0'), ('366630','2391','43437','0','2','00611C','0','2','0'), ('366631','2391','43436','0','3','F7941D','0','2','0'), ('366632','2392','43431','0','0','199C0D','0','2','0'), ('366633','2392','43430','0','1','F63100','0','2','0'), ('366634','2392','43432','0','2','00611C','0','2','0'), ('366635','2392','43422','0','3','F7941D','0','2','0'), ('366636','2393','43492','0','0','199C0D','0','2','0'), ('366637','2393','43491','0','1','F63100','0','2','0'), ('366638','2393','43490','0','2','00611C','0','2','0'), ('366639','2393','43489','0','3','F7941D','0','2','0'), ('366640','2394','43471','0','0','199C0D','0','2','0'), ('366641','2394','43494','0','1','F63100','0','2','0'), ('366642','2395','43484','0','0','199C0D','0','2','0'), ('366643','2395','43495','0','1','F63100','0','2','0'), ('366644','2395','43493','0','2','00611C','0','2','0'), ('366645','2396','43488','0','0','199C0D','0','2','0'), ('366646','2396','43487','0','1','F63100','0','2','0'), ('366647','2396','43486','0','2','00611C','0','2','0'), ('366648','2396','43485','0','3','F7941D','0','2','0'), ('366649','2397','43481','0','0','199C0D','0','2','0'), ('366650','2397','43480','0','1','F63100','0','2','0'), ('366651','2397','43479','0','2','00611C','0','2','0'), ('366652','2397','43478','0','3','F7941D','0','2','0'), ('366653','2398','43412','0','0','199C0D','0','2','0'), ('366654','2398','43411','0','1','F63100','0','2','0'), ('366655','2398','43410','0','2','00611C','0','2','0'), ('366656','2398','43409','0','3','F7941D','0','2','0'), ('366657','1518','33705','5','0','199C0D','0','2','0'), ('366658','1519','33724','0','0','199C0D','0','2','0'), ('366659','1519','33722','0','1','F63100','0','2','0'), ('366660','1519','33726','0','2','00611C','0','2','0'), ('366661','1520','33719','0','0','199C0D','0','2','0'), ('366662','1520','33720','0','1','F63100','0','2','0'), ('366663','1520','33721','0','2','00611C','0','2','0'), ('366664','1521','33725','0','0','199C0D','0','2','0'), ('366665','1521','33723','0','1','F63100','0','2','0'), ('366666','1521','33727','0','2','00611C','0','2','0'), ('366667','1522','33730','5','0','199C0D','0','2','0'), ('366668','1523','33734','0','0','199C0D','0','2','0'), ('366669','1523','33732','0','1','F63100','0','2','0'), ('366670','1523','33736','0','2','00611C','0','2','0'), ('366671','1524','33735','0','0','199C0D','0','2','0'), ('366672','1524','33733','0','1','F63100','0','2','0'), ('366673','1524','33737','0','2','00611C','0','2','0'), ('366674','1525','33743','0','0','199C0D','0','2','0'), ('366675','1525','33742','0','1','F63100','0','2','0'), ('366676','1525','33738','0','2','00611C','0','2','0'), ('366677','1526','33692','0','0','199C0D','0','2','0'), ('366678','1526','33693','0','1','F63100','0','2','0'), ('366679','2847','47603','5','0','199C0D','0','2','0'), ('366680','2848','47621','0','0','199C0D','0','2','0'), ('366681','2848','47620','0','1','F63100','0','2','0'), ('366682','2848','47622','0','2','00611C','0','2','0'), ('366683','2849','47624','0','0','199C0D','0','2','0'), ('366684','2849','47623','0','1','F63100','0','2','0'), ('366685','2849','47625','0','2','00611C','0','2','0'), ('366686','2850','47617','0','0','199C0D','0','2','0'), ('366687','2850','47616','0','1','F63100','0','2','0'), ('366688','2850','47618','0','2','00611C','0','2','0'), ('366689','2851','47630','5','0','199C0D','0','2','0'), ('366690','2852','47632','0','0','199C0D','0','2','0'), ('366691','2852','47631','0','1','F63100','0','2','0'), ('366692','2852','47633','0','2','00611C','0','2','0'), ('366693','2853','47628','0','0','199C0D','0','2','0'), ('366694','2853','47627','0','1','F63100','0','2','0'), ('366695','2853','47629','0','2','00611C','0','2','0'), ('366696','2854','47635','0','0','199C0D','0','2','0'), ('366697','2854','47634','0','1','F63100','0','2','0'), ('366698','2854','50177','0','2','00611C','0','2','0'), ('366699','2855','47570','0','0','199C0D','0','2','0'), ('366700','2855','47571','0','1','F63100','0','2','0'), ('366701','1571','34269','0','0','199C0D','0','2','0'), ('366702','1571','34270','0','1','F63100','0','2','0'), ('366703','1571','34271','0','2','00611C','0','2','0'), ('366704','1571','34272','0','3','F7941D','0','2','0'), ('366705','1572','34311','0','0','199C0D','0','2','0'), ('366706','1572','34301','0','1','F63100','0','2','0'), ('366707','1573','34243','0','0','199C0D','0','2','0'), ('366708','1573','34244','0','1','F63100','0','2','0'), ('366709','1573','34246','0','2','00611C','0','2','0'), ('366710','1573','34245','0','3','F7941D','0','2','0'), ('366711','1574','34239','0','0','199C0D','0','2','0'), ('366712','1574','34227','0','1','F63100','0','2','0'), ('366713','1574','34236','0','2','00611C','0','2','0'), ('366714','1574','34237','0','3','F7941D','0','2','0'), ('366715','1575','34253','0','0','199C0D','0','2','0'), ('366716','1575','34252','0','1','F63100','0','2','0'), ('366717','1575','34249','0','2','00611C','0','2','0'), ('366718','1575','34251','0','3','F7941D','0','2','0'), ('366719','1496','33368','5','0','199C0D','0','2','0'), ('366720','1497','33371','0','0','199C0D','0','2','0'), ('366721','1497','33371','0','1','F63100','0','2','0'), ('366722','1498','33379','5','0','199C0D','0','2','0'), ('366723','1498','33382','2','1','F63100','0','2','0'), ('366724','1498','33381','0','2','00611C','1','2','0'), ('366725','1498','33378','0','3','F7941D','1','2','0'), ('366726','1498','33380','0','4','FC6EA3','1','2','0'), ('366727','1498','33377','0','5','6C59DC','1','2','0'), ('366728','3074','49769','0','0','199C0D','0','2','0'), ('366729','3075','49780','0','0','199C0D','0','2','0'), ('366730','3075','49781','0','1','F63100','0','2','0'), ('366731','3076','49784','0','0','199C0D','0','2','0'), ('366732','3076','49774','0','1','F63100','0','2','0'), ('366733','3077','49775','0','0','199C0D','0','2','0'), ('366734','3077','49783','0','1','F63100','0','2','0'), ('366735','3078','49776','2','0','199C0D','1','2','0'), ('366736','3078','49782','0','1','F63100','0','2','0'), ('366737','3078','49777','0','2','00611C','0','2','0'), ('366738','3079','49788','0','0','199C0D','0','2','0'), ('366739','3080','49794','0','0','199C0D','0','2','0'), ('366740','3081','49796','0','0','199C0D','0','2','0'), ('366741','3082','49805','0','0','199C0D','0','2','0'), ('366742','3082','49806','0','1','F63100','0','2','0'), ('366743','3083','49809','0','0','199C0D','0','2','0'), ('366744','3083','49798','0','1','F63100','0','2','0'), ('366745','3084','49799','0','0','199C0D','0','2','0'), ('366746','3084','49808','0','1','F63100','0','2','0'), ('366747','3085','49801','2','0','199C0D','1','2','0'), ('366748','3085','49800','0','1','F63100','0','2','0'), ('366749','3085','49807','0','2','00611C','0','2','0'), ('366750','3085','49802','0','3','F7941D','0','2','0'), ('366751','3086','49820','0','0','199C0D','0','2','0'), ('366752','3087','49831','0','0','199C0D','0','2','0'), ('366753','3087','49832','0','1','F63100','0','2','0'), ('366754','3088','49836','0','0','199C0D','0','2','0'), ('366755','3088','49825','0','1','F63100','0','2','0'), ('366756','3089','49826','0','0','199C0D','0','2','0'), ('366757','3089','49835','0','1','F63100','0','2','0'), ('366758','3090','49827','2','0','199C0D','1','2','0'), ('366759','3090','49834','0','1','F63100','0','2','0'), ('366760','3090','49828','0','2','00611C','0','2','0'), ('366761','3091','49840','0','0','199C0D','0','2','0'), ('366762','3092','49842','0','0','199C0D','0','2','0'), ('366763','3093','49847','0','0','199C0D','0','2','0'), ('366764','3094','49849','0','0','199C0D','0','2','0'), ('366765','3095','49859','0','0','199C0D','0','2','0'), ('366766','3095','49860','0','1','F63100','0','2','0'), ('366767','3096','49864','0','0','199C0D','0','2','0'), ('366768','3096','49852','0','1','F63100','0','2','0'), ('366769','3097','49853','0','0','199C0D','0','2','0'), ('366770','3097','49863','0','1','F63100','0','2','0'), ('366771','3098','49855','2','0','199C0D','1','2','0'), ('366772','3098','49854','0','1','F63100','0','2','0'), ('366773','3098','49862','0','2','00611C','0','2','0'), ('366774','3098','49856','0','3','F7941D','0','2','0'), ('366775','3099','49671','0','0','199C0D','0','2','0'), ('366776','3099','49672','0','1','F63100','0','2','0'), ('366777','3099','49670','0','2','00611C','0','2','0'), ('366778','3100','49704','0','0','199C0D','0','2','0'), ('366779','3100','49705','0','1','F63100','0','2','0'), ('366780','3100','49703','0','2','00611C','0','2','0'), ('366781','3101','49677','0','0','199C0D','0','2','0'), ('366782','3101','49663','0','1','F63100','0','2','0'), ('366783','3102','49709','0','0','199C0D','0','2','0'), ('366784','3102','49696','0','1','F63100','0','2','0'), ('366785','3103','49664','0','0','199C0D','0','2','0'), ('366786','3103','49676','0','1','F63100','0','2','0'), ('366787','3104','49697','0','0','199C0D','0','2','0'), ('366788','3104','49708','0','1','F63100','0','2','0'), ('366789','3105','49658','2','0','199C0D','1','2','0'), ('366790','3105','49665','0','1','F63100','0','2','0'), ('366791','3105','49666','0','2','00611C','0','2','0'), ('366792','3105','49675','0','3','F7941D','0','2','0'), ('366793','3105','49667','0','4','FC6EA3','0','2','0'), ('366794','3106','49689','2','0','199C0D','1','2','0'), ('366795','3106','49698','0','1','F63100','0','2','0'), ('366796','3106','49699','0','2','00611C','0','2','0'), ('366797','3106','49695','0','3','F7941D','0','2','0'), ('366798','3106','49700','0','4','FC6EA3','0','2','0'), ('366799','1142','30689','0','0','199C0D','0','2','0'), ('366800','1805','36187','5','0','199C0D','0','2','0'), ('366801','1805','36192','2','1','F63100','0','2','0'), ('366802','1805','36190','0','2','00611C','1','2','0'), ('366803','1805','36185','0','3','F7941D','1','2','0'), ('366804','1805','36189','0','4','FC6EA3','1','2','0'), ('366805','1805','36184','0','5','6C59DC','1','2','0'), ('366806','2963','48506','0','0','199C0D','0','2','0'), ('366807','2964','48490','0','0','199C0D','0','2','0'), ('366808','2965','48496','0','0','199C0D','0','2','0'), ('366809','2966','48509','0','0','199C0D','0','2','0'), ('366810','2967','48511','0','0','199C0D','0','2','0'), ('366811','2968','48513','0','0','199C0D','0','2','0'), ('366812','2969','48502','0','0','199C0D','0','2','0'), ('366813','2970','48471','0','0','199C0D','0','2','0'), ('366814','2971','48472','0','0','199C0D','0','2','0'), ('366815','2972','48473','0','0','199C0D','0','2','0'), ('366816','2973','48474','0','0','199C0D','0','2','0'), ('366817','2974','48559','0','0','199C0D','0','2','0'), ('366818','2975','48568','0','0','199C0D','0','2','0'), ('366819','2976','48574','0','0','199C0D','0','2','0'), ('366820','2977','48577','0','0','199C0D','0','2','0'), ('366821','2978','48582','0','0','199C0D','0','2','0'), ('366822','2979','48526','0','0','199C0D','0','2','0'), ('366823','2979','48532','0','1','F63100','0','2','0'), ('366824','2980','48622','0','0','199C0D','0','2','0'), ('366825','2981','48606','0','0','199C0D','0','2','0'), ('366826','2982','48612','0','0','199C0D','0','2','0'), ('366827','2983','48625','0','0','199C0D','0','2','0'), ('366828','2984','48627','0','0','199C0D','0','2','0'), ('366829','2985','48629','0','0','199C0D','0','2','0'), ('366830','2986','48618','0','0','199C0D','0','2','0'), ('366831','2987','48587','0','0','199C0D','0','2','0'), ('366832','2988','48588','0','0','199C0D','0','2','0'), ('366833','2989','48589','0','0','199C0D','0','2','0'), ('366834','2990','48590','0','0','199C0D','0','2','0'), ('366835','2991','48655','0','0','199C0D','0','2','0'), ('366836','2992','36283','0','0','199C0D','0','2','0'), ('366837','2993','36288','0','0','199C0D','0','2','0'), ('366838','2994','36291','0','0','199C0D','0','2','0'), ('366839','2995','48665','0','0','199C0D','0','2','0'), ('366840','2996','48637','0','0','199C0D','0','2','0'), ('366841','2996','48641','0','1','F63100','0','2','0'), ('366842','2997','48705','0','0','199C0D','0','2','0'), ('366843','2998','48689','0','0','199C0D','0','2','0'), ('366844','2999','48695','0','0','199C0D','0','2','0'), ('366845','3000','48708','0','0','199C0D','0','2','0'), ('366846','3001','48710','0','0','199C0D','0','2','0'), ('366847','3002','48712','0','0','199C0D','0','2','0'), ('366848','3003','48701','0','0','199C0D','0','2','0'), ('366849','3004','48670','0','0','199C0D','0','2','0'), ('366850','3005','48671','0','0','199C0D','0','2','0'), ('366851','3006','48672','0','0','199C0D','0','2','0'), ('366852','3007','48673','0','0','199C0D','0','2','0'), ('366853','3008','48738','0','0','199C0D','0','2','0'), ('366854','3009','36365','0','0','199C0D','0','2','0'), ('366855','3010','36370','0','0','199C0D','0','2','0'), ('366856','3011','36373','0','0','199C0D','0','2','0'), ('366857','3012','48748','0','0','199C0D','0','2','0'), ('366858','3013','48720','0','0','199C0D','0','2','0'), ('366859','3013','48724','0','1','F63100','0','2','0'), ('366860','3014','48794','0','0','199C0D','0','2','0'), ('366861','3015','48778','0','0','199C0D','0','2','0'), ('366862','3016','48784','0','0','199C0D','0','2','0'), ('366863','3017','48797','0','0','199C0D','0','2','0'), ('366864','3018','48799','0','0','199C0D','0','2','0'), ('366865','3019','48801','0','0','199C0D','0','2','0'), ('366866','3020','48790','0','0','199C0D','0','2','0'), ('366867','3021','48759','0','0','199C0D','0','2','0'), ('366868','3022','48760','0','0','199C0D','0','2','0'), ('366869','3023','48761','0','0','199C0D','0','2','0'), ('366870','3024','48762','0','0','199C0D','0','2','0'), ('366871','3025','48847','0','0','199C0D','0','2','0'), ('366872','3026','48856','0','0','199C0D','0','2','0'), ('366873','3027','48862','0','0','199C0D','0','2','0'), ('366874','3028','48865','0','0','199C0D','0','2','0'), ('366875','3029','48870','0','0','199C0D','0','2','0'), ('366876','3030','48814','0','0','199C0D','0','2','0'), ('366877','3030','48820','0','1','F63100','0','2','0'), ('366878','3031','48910','0','0','199C0D','0','2','0'), ('366879','3032','48894','0','0','199C0D','0','2','0'), ('366880','3033','48900','0','0','199C0D','0','2','0'), ('366881','3034','48913','0','0','199C0D','0','2','0'), ('366882','3035','48915','0','0','199C0D','0','2','0'), ('366883','3036','48917','0','0','199C0D','0','2','0'), ('366884','3037','48906','0','0','199C0D','0','2','0'), ('366885','3038','48875','0','0','199C0D','0','2','0'), ('366886','3039','48876','0','0','199C0D','0','2','0'), ('366887','3040','48877','0','0','199C0D','0','2','0'), ('366888','3041','48878','0','0','199C0D','0','2','0'), ('366889','3042','48943','0','0','199C0D','0','2','0'), ('366890','3043','36447','0','0','199C0D','0','2','0'), ('366891','3044','36452','0','0','199C0D','0','2','0'), ('366892','3045','36455','0','0','199C0D','0','2','0'), ('366893','3046','48953','0','0','199C0D','0','2','0'), ('366894','3047','48925','0','0','199C0D','0','2','0'), ('366895','3047','48929','0','1','F63100','0','2','0'), ('366896','3048','48993','0','0','199C0D','0','2','0'), ('366897','3049','48977','0','0','199C0D','0','2','0'), ('366898','3050','48983','0','0','199C0D','0','2','0'), ('366899','3051','48996','0','0','199C0D','0','2','0'), ('366900','3052','48998','0','0','199C0D','0','2','0'), ('366901','3053','49000','0','0','199C0D','0','2','0'), ('366902','3054','48989','0','0','199C0D','0','2','0'), ('366903','3055','48958','0','0','199C0D','0','2','0'), ('366904','3056','48959','0','0','199C0D','0','2','0'), ('366905','3057','48960','0','0','199C0D','0','2','0'), ('366906','3058','48961','0','0','199C0D','0','2','0'), ('366907','3059','49026','0','0','199C0D','0','2','0'), ('366908','3060','36529','0','0','199C0D','0','2','0'), ('366909','3061','36534','0','0','199C0D','0','2','0'), ('366910','3062','36537','0','0','199C0D','0','2','0'), ('366911','3063','49036','0','0','199C0D','0','2','0'), ('366912','3064','49008','0','0','199C0D','0','2','0'), ('366913','3064','49012','0','1','F63100','0','2','0'), ('366914','3065','49076','0','0','199C0D','0','2','0'), ('366915','3066','49085','0','0','199C0D','0','2','0'), ('366916','3067','49091','0','0','199C0D','0','2','0'), ('366917','3068','49094','0','0','199C0D','0','2','0'), ('366918','3069','49099','0','0','199C0D','0','2','0'), ('366919','3070','49049','0','0','199C0D','0','2','0'), ('366920','3070','49055','0','1','F63100','0','2','0'), ('366921','2606','46344','0','0','199C0D','0','2','0'), ('366922','2606','46345','0','1','F63100','0','2','0'), ('366923','2606','46346','0','2','00611C','0','2','0'), ('366924','2607','46356','0','0','199C0D','0','2','0'), ('366925','2608','46362','0','0','199C0D','0','2','0'), ('366926','2609','46363','0','0','199C0D','0','2','0'), ('366927','2610','46368','0','0','199C0D','0','2','0'), ('366928','2433','43954','0','0','199C0D','0','2','0'), ('366929','2433','43953','0','1','F63100','0','2','0'), ('366930','2433','43952','0','2','00611C','0','2','0'), ('366931','2433','43963','0','3','F7941D','0','2','0'), ('366932','2433','43964','0','4','FC6EA3','0','2','0'), ('366933','2433','43959','0','5','6C59DC','0','2','0'), ('366934','2434','44033','0','0','199C0D','0','2','0'), ('366935','2434','44034','0','1','F63100','0','2','0'), ('366936','2434','44035','0','2','00611C','0','2','0'), ('366937','2435','44039','0','0','199C0D','0','2','0'), ('366938','2435','44040','0','1','F63100','0','2','0'), ('366939','2435','44041','0','2','00611C','0','2','0'), ('366940','2436','44044','0','0','199C0D','0','2','0'), ('366941','2436','44045','0','1','F63100','0','2','0'), ('366942','651','26928','0','0','199C0D','0','2','0'), ('366943','651','26927','0','1','F63100','0','2','0'), ('366944','652','26925','0','0','199C0D','0','2','0'), ('366945','652','26932','0','1','F63100','0','2','0'), ('366946','652','26930','0','2','00611C','0','2','0'), ('366947','652','26931','0','3','F7941D','0','2','0'), ('366948','652','26929','0','4','FC6EA3','0','2','0'), ('366949','652','26926','0','5','6C59DC','0','2','0'), ('366950','653','26933','0','0','199C0D','0','2','0'), ('366951','653','26943','0','1','F63100','0','2','0'), ('366952','653','26935','0','2','00611C','0','2','0'), ('366953','653','26936','0','3','F7941D','0','2','0'), ('366954','654','26934','0','0','199C0D','0','2','0'), ('366955','654','26939','0','1','F63100','0','2','0'), ('366956','654','26942','0','2','00611C','0','2','0'), ('366957','654','26938','0','3','F7941D','0','2','0'), ('366958','654','26937','0','4','FC6EA3','0','2','0'), ('366959','1275','31794','0','0','199C0D','0','2','0'), ('366960','1275','31792','0','1','F63100','0','2','0'), ('366961','1275','31800','0','2','00611C','1','2','0'), ('366962','1276','36771','0','0','199C0D','0','2','0'), ('366963','1276','33390','0','1','F63100','0','2','0'), ('366964','1276','31799','0','2','00611C','0','2','0'), ('366965','1276','31797','0','3','F7941D','0','2','0'), ('366966','1277','36770','0','0','199C0D','0','2','0'), ('366967','1277','33389','0','1','F63100','0','2','0'), ('366968','1277','31795','0','2','00611C','0','2','0'), ('366969','1278','36769','0','0','199C0D','0','2','0'), ('366970','1278','31793','0','1','F63100','0','2','0'), ('366971','1278','31802','0','2','00611C','0','2','0'), ('366972','1278','31790','0','3','F7941D','0','2','0'), ('366973','1278','31791','0','4','FC6EA3','0','2','0'); INSERT INTO hostmacro (hostmacroid,hostid,macro,value,description,type,automatic) VALUES ('393','10207','{$TEMP_CRIT}','75','','0','0'), ('394','10207','{$TEMP_WARN}','65','','0','0'), ('395','10207','{$PSU_CRIT_STATUS}','4','','0','0'), ('396','10207','{$FAN_CRIT_STATUS}','4','','0','0'), ('399','10207','{$TEMP_CRIT_LOW}','5','','0','0'), ('402','10208','{$TEMP_CRIT}','75','','0','0'), ('403','10208','{$TEMP_WARN}','65','','0','0'), ('404','10208','{$HEALTH_CRIT_STATUS}','4','','0','0'), ('405','10208','{$HEALTH_WARN_STATUS:"offline"}','2','','0','0'), ('406','10208','{$HEALTH_WARN_STATUS:"testing"}','3','','0','0'), ('407','10208','{$TEMP_WARN_STATUS}','5','','0','0'), ('408','10208','{$PSU_CRIT_STATUS}','2','','0','0'), ('409','10208','{$FAN_CRIT_STATUS}','2','','0','0'), ('410','10208','{$PSU_OK_STATUS}','4','','0','0'), ('411','10208','{$FAN_OK_STATUS}','4','','0','0'), ('414','10208','{$TEMP_CRIT_LOW}','5','','0','0'), ('417','10210','{$TEMP_CRIT}','75','','0','0'), ('418','10210','{$TEMP_WARN}','65','','0','0'), ('419','10210','{$PSU_CRIT_STATUS}','3','','0','0'), ('420','10210','{$FAN_CRIT_STATUS}','3','','0','0'), ('421','10210','{$PSU_OK_STATUS}','2','','0','0'), ('422','10210','{$FAN_OK_STATUS}','2','','0','0'), ('425','10210','{$TEMP_CRIT_LOW}','5','','0','0'), ('428','10211','{$TEMP_CRIT}','75','','0','0'), ('429','10211','{$TEMP_WARN}','65','','0','0'), ('430','10211','{$PSU_CRIT_STATUS}','3','','0','0'), ('431','10211','{$FAN_CRIT_STATUS}','3','','0','0'), ('432','10211','{$PSU_OK_STATUS}','2','','0','0'), ('433','10211','{$FAN_OK_STATUS}','2','','0','0'), ('436','10211','{$TEMP_CRIT_LOW}','5','','0','0'), ('469','10221','{$TEMP_CRIT}','65','','0','0'), ('470','10221','{$TEMP_WARN}','55','','0','0'), ('471','10221','{$PSU_CRIT_STATUS}','2','','0','0'), ('472','10221','{$FAN_CRIT_STATUS}','2','','0','0'), ('473','10221','{$PSU_OK_STATUS}','1','','0','0'), ('474','10221','{$FAN_OK_STATUS}','1','','0','0'), ('477','10221','{$TEMP_CRIT_LOW}','5','','0','0'), ('480','10222','{$TEMP_CRIT}','75','','0','0'), ('481','10222','{$TEMP_WARN}','65','','0','0'), ('482','10222','{$PSU_CRIT_STATUS}','5','','0','0'), ('483','10222','{$FAN_CRIT_STATUS}','5','','0','0'), ('486','10222','{$TEMP_CRIT_LOW}','5','','0','0'), ('489','10223','{$TEMP_CRIT}','75','','0','0'), ('490','10223','{$TEMP_WARN}','65','','0','0'), ('491','10223','{$PSU_CRIT_STATUS}','4','','0','0'), ('492','10223','{$FAN_CRIT_STATUS}','2','','0','0'), ('495','10223','{$TEMP_CRIT_LOW}','5','','0','0'), ('498','10224','{$TEMP_CRIT}','65','','0','0'), ('499','10224','{$TEMP_WARN}','55','','0','0'), ('500','10224','{$TEMP_CRIT_STATUS}','1','','0','0'), ('501','10224','{$PSU_CRIT_STATUS}','3','','0','0'), ('502','10224','{$FAN_CRIT_STATUS}','2','','0','0'), ('507','10224','{$TEMP_CRIT_LOW}','5','','0','0'), ('510','10227','{$FAN_CRIT_STATUS:"fanError"}','41','','0','0'), ('511','10227','{$FAN_CRIT_STATUS:"hardwareFaulty"}','91','','0','0'), ('512','10227','{$PSU_CRIT_STATUS:"psuError"}','51','','0','0'), ('513','10227','{$PSU_CRIT_STATUS:"rpsError"}','61','','0','0'), ('514','10227','{$PSU_CRIT_STATUS:"hardwareFaulty"}','91','','0','0'), ('517','10227','{$TEMP_CRIT}','60','','0','0'), ('518','10227','{$TEMP_WARN}','50','','0','0'), ('519','10227','{$TEMP_CRIT_LOW}','5','','0','0'), ('533','10229','{$FAN_CRIT_STATUS}','2','','0','0'), ('536','10229','{$TEMP_CRIT}','60','','0','0'), ('537','10229','{$TEMP_WARN}','50','','0','0'), ('538','10229','{$TEMP_CRIT_LOW}','5','','0','0'), ('541','10230','{$TEMP_CRIT_STATUS}','3','','0','0'), ('542','10230','{$TEMP_WARN_STATUS}','2','','0','0'), ('543','10230','{$PSU_CRIT_STATUS}','3','','0','0'), ('544','10230','{$FAN_CRIT_STATUS}','3','','0','0'), ('547','10230','{$TEMP_CRIT}','60','','0','0'), ('548','10230','{$TEMP_WARN}','50','','0','0'), ('549','10230','{$TEMP_CRIT_LOW}','5','','0','0'), ('552','10231','{$TEMP_CRIT:"Routing Engine"}','80','','0','0'), ('553','10231','{$TEMP_WARN:"Routing Engine"}','70','','0','0'), ('554','10231','{$HEALTH_CRIT_STATUS}','3','','0','0'), ('555','10231','{$FAN_CRIT_STATUS}','6','','0','0'), ('556','10231','{$PSU_CRIT_STATUS}','6','','0','0'), ('559','10231','{$TEMP_CRIT}','60','','0','0'), ('560','10231','{$TEMP_WARN}','50','','0','0'), ('561','10231','{$TEMP_CRIT_LOW}','5','','0','0'), ('572','10233','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('573','10233','{$TEMP_WARN:"CPU"}','70','','0','0'), ('576','10233','{$TEMP_CRIT}','60','','0','0'), ('577','10233','{$TEMP_WARN}','50','','0','0'), ('578','10233','{$TEMP_CRIT_LOW}','5','','0','0'), ('581','10234','{$TEMP_WARN_STATUS}','2','','0','0'), ('582','10234','{$TEMP_CRIT_STATUS}','3','','0','0'), ('583','10234','{$PSU_CRIT_STATUS:"failed"}','2','','0','0'), ('584','10234','{$FAN_CRIT_STATUS:"failed"}','2','','0','0'), ('587','10234','{$TEMP_CRIT}','60','','0','0'), ('588','10234','{$TEMP_WARN}','50','','0','0'), ('589','10234','{$TEMP_CRIT_LOW}','5','','0','0'), ('592','10235','{$TEMP_CRIT}','75','','0','0'), ('593','10235','{$TEMP_WARN}','65','','0','0'), ('594','10235','{$PSU_CRIT_STATUS}','1','','0','0'), ('595','10235','{$FAN_CRIT_STATUS}','1','','0','0'), ('619','10250','{$FAN_CRIT_STATUS:"bad"}','2','','0','0'), ('620','10250','{$PSU_CRIT_STATUS:"bad"}','2','','0','0'), ('625','10250','{$TEMP_CRIT}','60','','0','0'), ('626','10250','{$TEMP_WARN}','50','','0','0'), ('627','10250','{$TEMP_CRIT_LOW}','5','','0','0'), ('647','10230','{$PSU_WARN_STATUS}','4','','0','0'), ('656','10250','{$FAN_WARN_STATUS:"warning"}','3','','0','0'), ('657','10250','{$PSU_WARN_STATUS:"warning"}','3','','0','0'), ('659','10254','{$FAN_CRIT_STATUS}','3','','0','0'), ('661','10254','{$PSU_CRIT_STATUS}','2','','0','0'), ('712','10256','{$DISK_ARRAY_CACHE_BATTERY_CRIT_STATUS:"capacitorFailed"}','7','','0','0'), ('713','10256','{$DISK_ARRAY_CACHE_BATTERY_CRIT_STATUS:"failed"}','4','','0','0'), ('714','10256','{$DISK_ARRAY_CACHE_BATTERY_WARN_STATUS:"degraded"}','5','','0','0'), ('715','10256','{$DISK_ARRAY_CACHE_BATTERY_WARN_STATUS:"notPresent"}','6','','0','0'), ('716','10256','{$DISK_ARRAY_CACHE_CRIT_STATUS:"cacheModCriticalFailure"}','8','','0','0'), ('717','10256','{$DISK_ARRAY_CACHE_OK_STATUS:"enabled"}','3','','0','0'), ('718','10256','{$DISK_ARRAY_CACHE_WARN_STATUS:"cacheModDegradedFailsafeSpeed"}','7','','0','0'), ('719','10256','{$DISK_ARRAY_CACHE_WARN_STATUS:"cacheModFlashMemNotAttached"}','6','','0','0'), ('720','10256','{$DISK_ARRAY_CACHE_WARN_STATUS:"cacheReadCacheNotMapped"}','9','','0','0'), ('721','10256','{$DISK_ARRAY_CACHE_WARN_STATUS:"invalid"}','2','','0','0'), ('722','10256','{$DISK_ARRAY_CRIT_STATUS}','4','','0','0'), ('723','10256','{$DISK_ARRAY_WARN_STATUS}','3','','0','0'), ('724','10256','{$DISK_FAIL_STATUS}','3','','0','0'), ('725','10256','{$DISK_SMART_FAIL_STATUS:"replaceDrive"}','3','','0','0'), ('726','10256','{$DISK_SMART_FAIL_STATUS:"replaceDriveSSDWearOut"}','4','','0','0'), ('727','10256','{$DISK_WARN_STATUS}','4','','0','0'), ('728','10256','{$FAN_CRIT_STATUS}','4','','0','0'), ('729','10256','{$FAN_WARN_STATUS}','3','','0','0'), ('730','10256','{$HEALTH_CRIT_STATUS}','4','','0','0'), ('731','10256','{$HEALTH_WARN_STATUS}','3','','0','0'), ('732','10256','{$PSU_CRIT_STATUS}','4','','0','0'), ('733','10256','{$PSU_WARN_STATUS}','3','','0','0'), ('739','10256','{$VDISK_CRIT_STATUS}','3','','0','0'), ('740','10256','{$VDISK_OK_STATUS}','2','','0','0'), ('752','10258','{$DISK_OK_STATUS}','Normal','','0','0'), ('753','10258','{$FAN_OK_STATUS}','Normal','','0','0'), ('754','10258','{$HEALTH_CRIT_STATUS}','2','','0','0'), ('755','10258','{$HEALTH_DISASTER_STATUS}','0','','0','0'), ('756','10258','{$HEALTH_WARN_STATUS}','4','','0','0'), ('757','10258','{$PSU_OK_STATUS}','Normal','','0','0'), ('758','10258','{$TEMP_CRIT:"Ambient"}','35','','0','0'), ('759','10258','{$TEMP_CRIT_LOW}','5','','0','0'), ('760','10258','{$TEMP_CRIT}','60','','0','0'), ('761','10258','{$TEMP_WARN:"Ambient"}','30','','0','0'), ('762','10258','{$TEMP_WARN}','50','','0','0'), ('763','10259','{$TEMP_CRIT_LOW}','5','','0','0'), ('764','10259','{$TEMP_CRIT}','60','','0','0'), ('765','10259','{$TEMP_WARN}','50','','0','0'), ('808','10264','{$APACHE.PROCESS_NAME}','(httpd|apache2)','The process name filter for the Apache process discovery.','0','0'), ('809','10264','{$APACHE.RESPONSE_TIME.MAX.WARN}','10','The maximum Apache response time expressed in seconds for a trigger expression.','0','0'), ('810','10264','{$APACHE.STATUS.HOST}','127.0.0.1','The hostname or IP address of the Apache status page.','0','0'), ('811','10264','{$APACHE.STATUS.PATH}','server-status?auto','The URL path.','0','0'), ('812','10264','{$APACHE.STATUS.PORT}','80','The port of the Apache status page.','0','0'), ('813','10265','{$APACHE.RESPONSE_TIME.MAX.WARN}','10','The maximum Apache response time expressed in seconds for a trigger expression.','0','0'), ('814','10265','{$APACHE.STATUS.PATH}','server-status?auto','The URL path.','0','0'), ('815','10265','{$APACHE.STATUS.PORT}','80','The port of the Apache status page.','0','0'), ('816','10265','{$APACHE.STATUS.SCHEME}','http','The request scheme, which may be either HTTP or HTTPS.','0','0'), ('817','10266','{$NGINX.DROP_RATE.MAX.WARN}','1','The critical rate of the dropped connections for a trigger expression.','0','0'), ('818','10266','{$NGINX.RESPONSE_TIME.MAX.WARN}','10','The maximum response time of Nginx expressed in seconds for a trigger expression.','0','0'), ('819','10266','{$NGINX.STUB_STATUS.HOST}','localhost','The hostname or IP address of the Nginx host or Nginx container of `astub_status`.','0','0'), ('820','10266','{$NGINX.STUB_STATUS.PATH}','basic_status','The path of the `Nginx stub_status` page.','0','0'), ('821','10266','{$NGINX.STUB_STATUS.PORT}','80','The port of the `Nginx stub_status` host or container.','0','0'), ('822','10267','{$NGINX.DROP_RATE.MAX.WARN}','1','The critical rate of the dropped connections for a trigger expression.','0','0'), ('823','10267','{$NGINX.RESPONSE_TIME.MAX.WARN}','10','The maximum response time of Nginx expressed in seconds for a trigger expression.','0','0'), ('824','10267','{$NGINX.STUB_STATUS.PATH}','basic_status','The path of the `Nginx stub_status` page.','0','0'), ('825','10267','{$NGINX.STUB_STATUS.PORT}','80','The port of the `Nginx stub_status` host or container.','0','0'), ('826','10267','{$NGINX.STUB_STATUS.SCHEME}','http','The protocol http or https of Nginx stub_status host or container.','0','0'), ('897','10285','{$CPU.UTIL.CRIT}','90','Critical threshold of CPU utilization expressed in %.','0','0'), ('898','10285','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('899','10285','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('900','10285','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('901','10285','{$KERNEL.MAXFILES.MIN}','256','','0','0'), ('902','10285','{$LOAD_AVG_PER_CPU.MAX.WARN}','1.5','Load per CPU considered sustainable. Tune if needed.','0','0'), ('903','10285','{$MEMORY.AVAILABLE.MIN}','20M','Used as a threshold in the memory available trigger.','0','0'), ('904','10285','{$MEMORY.UTIL.MAX}','90','Used as a threshold in the memory utilization trigger.','0','0'), ('905','10285','{$NET.IF.IFALIAS.MATCHES}','^.*$','Used in network interface discovery rule filters.','0','0'), ('906','10285','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('907','10285','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('908','10285','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9A-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0` bridge by default.','0','0'), ('909','10285','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used in network interface discovery rule filters.','0','0'), ('910','10285','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^notpresent$','Ignore `notpresent(1)`.','0','0'), ('911','10285','{$NODE_EXPORTER_PORT}','9100','TCP Port node_exporter is listening on.','0','0'), ('912','10285','{$SWAP.PFREE.MIN.WARN}','50','Warning threshold of the minimum free swap.','0','0'), ('913','10285','{$SYSTEM.FUZZYTIME.MAX}','60s','The upper threshold for difference of system time.','0','0'), ('914','10285','{$VFS.DEV.DEVNAME.MATCHES}','.+','Used in block device discovery. Can be overridden on the host or linked template level.','0','0'), ('915','10285','{$VFS.DEV.DEVNAME.NOT_MATCHES}','^(loop[0-9]*|sd[a-z][0-9]+|nbd[0-9]+|sr[0-9]+|fd[0-9]+|dm-[0-9]+|ram[0-9]+|ploop[a-z0-9]+|md[0-9]*|hcp[0-9]*|zram[0-9]*)','Used in block device discovery. Can be overridden on the host or linked template level.','0','0'), ('916','10285','{$VFS.DEV.READ.AWAIT.WARN}','20','Disk read average response time (in ms) before the trigger fires.','0','0'), ('917','10285','{$VFS.DEV.WRITE.AWAIT.WARN}','20','Disk write average response time (in ms) before the trigger fires.','0','0'), ('918','10285','{$VFS.FS.FSDEVICE.MATCHES}','^.+$','Used in filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('919','10285','{$VFS.FS.FSDEVICE.NOT_MATCHES}',E'^\\s$','Used in filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('920','10285','{$VFS.FS.FSNAME.MATCHES}','.+','Used in filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('921','10285','{$VFS.FS.FSNAME.NOT_MATCHES}','^(/dev|/sys|/run|/proc|.+/shm$)','Used in filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('922','10285','{$VFS.FS.FSTYPE.MATCHES}','^(btrfs|ext2|ext3|ext4|reiser|xfs|ffs|ufs|jfs|jfs2|vxfs|hfs|apfs|refs|ntfs|fat32|zfs)$','Used in filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('923','10285','{$VFS.FS.FSTYPE.NOT_MATCHES}',E'^\\s$','Used in filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('924','10285','{$VFS.FS.INODE.PFREE.MIN.CRIT}','10','The critical threshold of the filesystem metadata utilization.','0','0'), ('925','10285','{$VFS.FS.INODE.PFREE.MIN.WARN}','20','The warning threshold of the filesystem metadata utilization.','0','0'), ('926','10285','{$VFS.FS.PUSED.MAX.CRIT}','90','The critical threshold of the filesystem utilization.','0','0'), ('927','10285','{$VFS.FS.PUSED.MAX.WARN}','80','The warning threshold of the filesystem utilization.','0','0'), ('991','10300','{$RABBITMQ.API.PASSWORD}','zabbix','','0','0'), ('992','10300','{$RABBITMQ.API.PORT}','15672','The port of the RabbitMQ API endpoint.','0','0'), ('993','10300','{$RABBITMQ.API.USER}','zbx_monitor','','0','0'), ('995','10300','{$RABBITMQ.LLD.FILTER.EXCHANGE.MATCHES}','.*','This macro is used in the discovery of exchanges. It can be overridden at host level or its linked template level.','0','0'), ('996','10300','{$RABBITMQ.LLD.FILTER.EXCHANGE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in the discovery of exchanges. It can be overridden at host level or its linked template level.','0','0'), ('997','10301','{$RABBITMQ.API.HOST}','127.0.0.1','The hostname or IP of the API endpoint for the RabbitMQ.','0','0'), ('998','10301','{$RABBITMQ.API.PASSWORD}','zabbix','','0','0'), ('999','10301','{$RABBITMQ.API.PORT}','15672','The port of the RabbitMQ API endpoint.','0','0'), ('1000','10301','{$RABBITMQ.API.USER}','zbx_monitor','','0','0'), ('1001','10301','{$RABBITMQ.CLUSTER.NAME}','rabbit','The name of the RabbitMQ cluster.','0','0'), ('1002','10301','{$RABBITMQ.LLD.FILTER.QUEUE.MATCHES}','.*','This macro is used in the discovery of queues. It can be overridden at host level or its linked template level.','0','0'), ('1003','10301','{$RABBITMQ.LLD.FILTER.QUEUE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in the discovery of queues. It can be overridden at host level or its linked template level.','0','0'), ('1004','10301','{$RABBITMQ.MESSAGES.MAX.WARN}','1000','The maximum number of messages in the queue for a trigger expression.','0','0'), ('1005','10301','{$RABBITMQ.PROCESS_NAME}','beam.smp','The process name filter for the RabbitMQ process discovery.','0','0'), ('1006','10301','{$RABBITMQ.RESPONSE_TIME.MAX.WARN}','10','The maximum response time by the RabbitMQ expressed in seconds for a trigger expression.','0','0'), ('1007','10302','{$RABBITMQ.API.PASSWORD}','zabbix','','0','0'), ('1008','10302','{$RABBITMQ.API.PORT}','15672','The port of the RabbitMQ API endpoint.','0','0'), ('1009','10302','{$RABBITMQ.API.SCHEME}','http','The request scheme, which may be HTTP or HTTPS.','0','0'), ('1010','10302','{$RABBITMQ.API.USER}','zbx_monitor','','0','0'), ('1012','10302','{$RABBITMQ.LLD.FILTER.EXCHANGE.MATCHES}','.*','This macro is used in the discovery of exchanges. It can be overridden at host level or its linked template level.','0','0'), ('1013','10302','{$RABBITMQ.LLD.FILTER.EXCHANGE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in the discovery of exchanges. It can be overridden at host level or its linked template level.','0','0'), ('1014','10303','{$RABBITMQ.API.PASSWORD}','zabbix','','0','0'), ('1015','10303','{$RABBITMQ.API.PORT}','15672','The port of the RabbitMQ API endpoint.','0','0'), ('1016','10303','{$RABBITMQ.API.SCHEME}','http','The request scheme, which may be HTTP or HTTPS.','0','0'), ('1017','10303','{$RABBITMQ.API.USER}','zbx_monitor','','0','0'), ('1018','10303','{$RABBITMQ.CLUSTER.NAME}','rabbit','The name of the RabbitMQ cluster.','0','0'), ('1019','10303','{$RABBITMQ.LLD.FILTER.QUEUE.MATCHES}','.*','This macro is used in the discovery of queues. It can be overridden at host level or its linked template level.','0','0'), ('1020','10303','{$RABBITMQ.LLD.FILTER.QUEUE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in the discovery of queues. It can be overridden at host level or its linked template level.','0','0'), ('1021','10303','{$RABBITMQ.MESSAGES.MAX.WARN}','1000','The maximum number of messages in the queue for a trigger expression.','0','0'), ('1022','10303','{$RABBITMQ.RESPONSE_TIME.MAX.WARN}','10','The maximum response time by the RabbitMQ expressed in seconds for a trigger expression.','0','0'), ('1091','10300','{$RABBITMQ.API.CLUSTER_HOST}','127.0.0.1','The hostname or IP of the API endpoint for the RabbitMQ cluster.','0','0'), ('1092','10304','{$DISK_ARRAY_CACHE_BATTERY_CRIT_STATUS}','2','','0','0'), ('1093','10304','{$DISK_ARRAY_CACHE_BATTERY_OK_STATUS}','1','','0','0'), ('1094','10304','{$DISK_ARRAY_CRIT_STATUS:"inoperable"}','2','','0','0'), ('1095','10304','{$DISK_ARRAY_OK_STATUS:"operable"}','1','','0','0'), ('1096','10304','{$DISK_ARRAY_WARN_STATUS:"degraded"}','3','','0','0'), ('1097','10304','{$DISK_CRIT_STATUS:"bad"}','16','','0','0'), ('1098','10304','{$DISK_CRIT_STATUS:"predictiveFailure"}','11','','0','0'), ('1099','10304','{$DISK_FAIL_STATUS:"failed"}','9','','0','0'), ('1100','10304','{$FAN_CRIT_STATUS:"inoperable"}','2','','0','0'), ('1101','10304','{$FAN_WARN_STATUS:"degraded"}','3','','0','0'), ('1102','10304','{$HEALTH_CRIT_STATUS:"computeFailed"}','30','','0','0'), ('1103','10304','{$HEALTH_CRIT_STATUS:"configFailure"}','33','','0','0'), ('1104','10304','{$HEALTH_CRIT_STATUS:"inoperable"}','60','','0','0'), ('1105','10304','{$HEALTH_CRIT_STATUS:"unconfigFailure"}','34','','0','0'), ('1106','10304','{$HEALTH_WARN_STATUS:"diagnosticsFailed"}','204','','0','0'), ('1107','10304','{$HEALTH_WARN_STATUS:"powerProblem"}','62','','0','0'), ('1108','10304','{$HEALTH_WARN_STATUS:"testFailed"}','35','','0','0'), ('1109','10304','{$HEALTH_WARN_STATUS:"thermalProblem"}','60','','0','0'), ('1110','10304','{$HEALTH_WARN_STATUS:"voltageProblem"}','62','','0','0'), ('1111','10304','{$PSU_CRIT_STATUS:"inoperable"}','2','','0','0'), ('1112','10304','{$PSU_WARN_STATUS:"degraded"}','3','','0','0'), ('1113','10304','{$TEMP_CRIT:"Ambient"}','35','','0','0'), ('1114','10304','{$TEMP_CRIT_LOW}','5','','0','0'), ('1115','10304','{$TEMP_CRIT}','60','','0','0'), ('1116','10304','{$TEMP_WARN:"Ambient"}','30','','0','0'), ('1117','10304','{$TEMP_WARN}','50','','0','0'), ('1118','10304','{$VDISK_OK_STATUS:"equipped"}','10','','0','0'), ('1119','10207','{$CPU.UTIL.CRIT}','90','','0','0'), ('1120','10207','{$MEMORY.UTIL.MAX}','90','','0','0'), ('1121','10208','{$CPU.UTIL.CRIT}','90','','0','0'), ('1122','10208','{$MEMORY.UTIL.MAX}','90','','0','0'), ('1129','10221','{$CPU.UTIL.CRIT}','90','','0','0'), ('1130','10221','{$MEMORY.UTIL.MAX}','90','','0','0'), ('1131','10222','{$CPU.UTIL.CRIT}','90','','0','0'), ('1132','10222','{$MEMORY.UTIL.MAX}','90','','0','0'), ('1133','10223','{$CPU.UTIL.CRIT}','90','','0','0'), ('1134','10223','{$MEMORY.UTIL.MAX}','90','','0','0'), ('1135','10224','{$CPU.UTIL.CRIT}','90','','0','0'), ('1136','10224','{$MEMORY.UTIL.MAX}','90','','0','0'), ('1137','10227','{$CPU.UTIL.CRIT}','90','','0','0'), ('1138','10227','{$MEMORY.UTIL.MAX}','90','','0','0'), ('1139','10250','{$CPU.UTIL.CRIT}','90','','0','0'), ('1140','10250','{$MEMORY.UTIL.MAX}','90','','0','0'), ('1141','10229','{$CPU.UTIL.CRIT}','90','','0','0'), ('1142','10229','{$MEMORY.UTIL.MAX}','90','','0','0'), ('1143','10231','{$CPU.UTIL.CRIT}','90','','0','0'), ('1144','10231','{$MEMORY.UTIL.MAX}','90','','0','0'), ('1145','10233','{$CPU.UTIL.CRIT}','90','','0','0'), ('1146','10233','{$MEMORY.UTIL.MAX}','90','','0','0'), ('1147','10233','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('1148','10233','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('1149','10234','{$CPU.UTIL.CRIT}','90','','0','0'), ('1150','10234','{$MEMORY.UTIL.MAX}','90','','0','0'), ('1151','10235','{$CPU.UTIL.CRIT}','90','','0','0'), ('1152','10235','{$MEMORY.UTIL.MAX}','90','','0','0'), ('1153','10235','{$TEMP_CRIT_LOW}','5','','0','0'), ('1154','10236','{$CPU.UTIL.CRIT}','90','','0','0'), ('1155','10236','{$MEMORY.UTIL.MAX}','90','','0','0'), ('1157','10237','{$MEMORY.UTIL.MAX}','90','','0','0'), ('1158','10254','{$MEMORY.NAME.NOT_MATCHES}','(Buffer|Cache)','Filter is overridden to ignore RAM(Cache) and RAM(Buffers) memory objects.','0','0'), ('1159','10254','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('1160','10254','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('1173','10308','{$HAPROXY.BACK_ERESP.MAX.WARN}','10','Maximum of responses with error on BACKEND for trigger expression.','0','0'), ('1174','10308','{$HAPROXY.BACK_QCUR.MAX.WARN}','10','Maximum number of requests on BACKEND unassigned in queue for trigger expression.','0','0'), ('1175','10308','{$HAPROXY.BACK_QTIME.MAX.WARN}','10s','Maximum of average time spent in queue on BACKEND for trigger expression.','0','0'), ('1176','10308','{$HAPROXY.BACK_RTIME.MAX.WARN}','10s','Maximum of average BACKEND response time for trigger expression.','0','0'), ('1177','10308','{$HAPROXY.FRONT_DREQ.MAX.WARN}','10','The HAProxy maximum denied requests for trigger expression.','0','0'), ('1178','10308','{$HAPROXY.FRONT_EREQ.MAX.WARN}','10','The HAProxy maximum number of request errors for trigger expression.','0','0'), ('1179','10308','{$HAPROXY.FRONT_SUTIL.MAX.WARN}','80','Maximum of session usage percentage on frontend for trigger expression.','0','0'), ('1180','10308','{$HAPROXY.RESPONSE_TIME.MAX.WARN}','10s','The HAProxy stats page maximum response time in seconds for trigger expression.','0','0'), ('1181','10308','{$HAPROXY.SERVER_ERESP.MAX.WARN}','10','Maximum of responses with error on server for trigger expression.','0','0'), ('1182','10308','{$HAPROXY.SERVER_QCUR.MAX.WARN}','10','Maximum number of requests on server unassigned in queue for trigger expression.','0','0'), ('1183','10308','{$HAPROXY.SERVER_QTIME.MAX.WARN}','10s','Maximum of average time spent in queue on server for trigger expression.','0','0'), ('1184','10308','{$HAPROXY.SERVER_RTIME.MAX.WARN}','10s','Maximum of average server response time for trigger expression.','0','0'), ('1185','10308','{$HAPROXY.STATS.PATH}','stats','The path of HAProxy stats page.','0','0'), ('1186','10308','{$HAPROXY.STATS.PORT}','8404','The port of the HAProxy stats host or container.','0','0'), ('1187','10308','{$HAPROXY.STATS.SCHEME}','http','The scheme of HAProxy stats page(http/https).','0','0'), ('1188','10309','{$HAPROXY.BACK_ERESP.MAX.WARN}','10','Maximum of responses with error on Backend for trigger expression.','0','0'), ('1189','10309','{$HAPROXY.BACK_QCUR.MAX.WARN}','10','Maximum number of requests on Backend unassigned in queue for trigger expression.','0','0'), ('1190','10309','{$HAPROXY.BACK_QTIME.MAX.WARN}','10s','Maximum of average time spent in queue on Backend for trigger expression.','0','0'), ('1191','10309','{$HAPROXY.BACK_RTIME.MAX.WARN}','10s','Maximum of average Backend response time for trigger expression.','0','0'), ('1192','10309','{$HAPROXY.FRONT_DREQ.MAX.WARN}','10','The HAProxy maximum denied requests for trigger expression.','0','0'), ('1193','10309','{$HAPROXY.FRONT_EREQ.MAX.WARN}','10','The HAProxy maximum number of request errors for trigger expression.','0','0'), ('1194','10309','{$HAPROXY.FRONT_SUTIL.MAX.WARN}','80','Maximum of session usage percentage on frontend for trigger expression.','0','0'), ('1195','10309','{$HAPROXY.PASSWORD}','','The password of the HAProxy stats page.','0','0'), ('1196','10309','{$HAPROXY.RESPONSE_TIME.MAX.WARN}','10s','The HAProxy stats page maximum response time in seconds for trigger expression.','0','0'), ('1197','10309','{$HAPROXY.SERVER_ERESP.MAX.WARN}','10','Maximum of responses with error on server for trigger expression.','0','0'), ('1198','10309','{$HAPROXY.SERVER_QCUR.MAX.WARN}','10','Maximum number of requests on server unassigned in queue for trigger expression.','0','0'), ('1199','10309','{$HAPROXY.SERVER_QTIME.MAX.WARN}','10s','Maximum of average time spent in queue on server for trigger expression.','0','0'), ('1200','10309','{$HAPROXY.SERVER_RTIME.MAX.WARN}','10s','Maximum of average server response time for trigger expression.','0','0'), ('1202','10309','{$HAPROXY.STATS.PATH}','stats','The path of the HAProxy stats page.','0','0'), ('1203','10309','{$HAPROXY.STATS.PORT}','8404','The port of the HAProxy stats host or container.','0','0'), ('1204','10309','{$HAPROXY.STATS.SCHEME}','http','The scheme of HAProxy stats page (http/https).','0','0'), ('1205','10309','{$HAPROXY.USERNAME}','','The username of the HAProxy stats page.','0','0'), ('1206','10310','{$REDIS.CLIENTS.PRC.MAX.WARN}','80','Maximum percentage of connected clients','0','0'), ('1207','10310','{$REDIS.CONN.URI}','tcp://localhost:6379','Connection string in the URI format (password is not used). This param overwrites a value configured in the "Server" option of the configuration file (if it''s set), otherwise, the plugin''s default value is used: "tcp://localhost:6379"','0','0'), ('1208','10310','{$REDIS.LLD.FILTER.DB.MATCHES}','.*','Filter of discoverable databases','0','0'), ('1209','10310','{$REDIS.LLD.FILTER.DB.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered databases','0','0'), ('1210','10310','{$REDIS.LLD.PROCESS_NAME}','redis-server','Redis server process name for LLD','0','0'), ('1211','10310','{$REDIS.MEM.FRAG_RATIO.MAX.WARN}','1.5','Maximum memory fragmentation ratio','0','0'), ('1212','10310','{$REDIS.MEM.PUSED.MAX.WARN}','90','Maximum percentage of memory used','0','0'), ('1213','10310','{$REDIS.PROCESS_NAME}','redis-server','Redis server process name','0','0'), ('1214','10310','{$REDIS.REPL.LAG.MAX.WARN}','30s','Maximum replication lag in seconds','0','0'), ('1215','10310','{$REDIS.SLOWLOG.COUNT.MAX.WARN}','1','Maximum number of slowlog entries per second','0','0'), ('1242','10316','{$MYSQL.ABORTED_CONN.MAX.WARN}','3','Number of failed attempts to connect to the MySQL server for trigger expressions.','0','0'), ('1243','10316','{$MYSQL.BUFF_UTIL.MIN.WARN}','50','The minimum buffer pool utilization in percentage for trigger expressions.','0','0'), ('1244','10316','{$MYSQL.HOST}','127.0.0.1','Hostname or IP of MySQL host or container.','0','0'), ('1245','10316','{$MYSQL.PORT}','3306','MySQL service port.','0','0'), ('1246','10316','{$MYSQL.REPL_LAG.MAX.WARN}','30m','Amount of time the slave is behind the master for trigger expressions.','0','0'), ('1247','10316','{$MYSQL.SLOW_QUERIES.MAX.WARN}','3','Number of slow queries for trigger expressions.','0','0'), ('1248','10317','{$MYSQL.ABORTED_CONN.MAX.WARN}','3','Number of failed attempts to connect to the MySQL server for trigger expressions.','0','0'), ('1249','10317','{$MYSQL.BUFF_UTIL.MIN.WARN}','50','The minimum buffer pool utilization in percentage for trigger expressions.','0','0'), ('1250','10317','{$MYSQL.DSN}','','System data source name.','0','0'), ('1251','10317','{$MYSQL.PASSWORD}','','MySQL user password.','0','0'), ('1252','10317','{$MYSQL.REPL_LAG.MAX.WARN}','30m','Amount of time the slave is behind the master for trigger expressions.','0','0'), ('1253','10317','{$MYSQL.SLOW_QUERIES.MAX.WARN}','3','Number of slow queries for trigger expressions.','0','0'), ('1254','10317','{$MYSQL.USER}','','MySQL username.','0','0'), ('1255','10318','{$DOCKER.LLD.FILTER.CONTAINER.MATCHES}','.*','Filter of discoverable containers.','0','0'), ('1256','10318','{$DOCKER.LLD.FILTER.CONTAINER.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered containers.','0','0'), ('1257','10318','{$DOCKER.LLD.FILTER.IMAGE.MATCHES}','.*','Filter of discoverable images.','0','0'), ('1258','10318','{$DOCKER.LLD.FILTER.IMAGE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered images.','0','0'), ('1259','10319','{$MEMCACHED.CONN.PRC.MAX.WARN}','80','Maximum percentage of connected clients','0','0'), ('1260','10319','{$MEMCACHED.CONN.QUEUED.MAX.WARN}','1','Maximum number of queued connections per second','0','0'), ('1261','10319','{$MEMCACHED.CONN.THROTTLED.MAX.WARN}','1','Maximum number of throttled connections per second','0','0'), ('1262','10319','{$MEMCACHED.CONN.URI}','tcp://localhost:11211','Connection string in the URI format (password is not used). This param overwrites a value configured in the "Plugins.Memcached.Uri" option of the configuration file (if it''s set), otherwise, the plugin''s default value is used: "tcp://localhost:11211"','0','0'), ('1263','10319','{$MEMCACHED.MEM.PUSED.MAX.WARN}','90','Maximum percentage of memory used','0','0'), ('1264','10320','{$MYSQL.ABORTED_CONN.MAX.WARN}','3','Number of failed attempts to connect to the MySQL server for trigger expressions.','0','0'), ('1265','10320','{$MYSQL.BUFF_UTIL.MIN.WARN}','50','The minimum buffer pool utilization in percentage for trigger expressions.','0','0'), ('1266','10320','{$MYSQL.DSN}','','System data source name such as .','0','0'), ('1267','10320','{$MYSQL.PASSWORD}','','MySQL user password.','0','0'), ('1268','10320','{$MYSQL.REPL_LAG.MAX.WARN}','30m','Amount of time the slave is behind the master for trigger expressions.','0','0'), ('1269','10320','{$MYSQL.SLOW_QUERIES.MAX.WARN}','3','Number of slow queries for trigger expressions.','0','0'), ('1270','10320','{$MYSQL.USER}','','MySQL user name.','0','0'), ('1271','10321','{$IPMI.PASSWORD}','','This macro is used for access to BMC. It can be overridden on the host or linked template level.','0','0'), ('1272','10321','{$IPMI.SENSOR_TYPE.MATCHES}','.*','This macro is used in sensors discovery. It can be overridden on the host or linked template level.','0','0'), ('1273','10321','{$IPMI.SENSOR_TYPE.NOT_MATCHES}','invalid','This macro is used in sensors discovery. It can be overridden on the host or linked template level.','0','0'), ('1274','10321','{$IPMI.USER}','','This macro is used for access to BMC. It can be overridden on the host or linked template level.','0','0'), ('1275','10322','{$ELASTICSEARCH.FETCH_LATENCY.MAX.WARN}','100','Maximum of fetch latency in milliseconds for trigger expression.','0','0'), ('1276','10322','{$ELASTICSEARCH.FLUSH_LATENCY.MAX.WARN}','100','Maximum of flush latency in milliseconds for trigger expression.','0','0'), ('1277','10322','{$ELASTICSEARCH.HEAP_USED.MAX.CRIT}','95','The maximum percent in the use of JVM heap for critically trigger expression.','0','0'), ('1278','10322','{$ELASTICSEARCH.HEAP_USED.MAX.WARN}','85','The maximum percent in the use of JVM heap for warning trigger expression.','0','0'), ('1279','10322','{$ELASTICSEARCH.INDEXING_LATENCY.MAX.WARN}','100','Maximum of indexing latency in milliseconds for trigger expression.','0','0'), ('1280','10322','{$ELASTICSEARCH.PASSWORD}','','The password of the Elasticsearch.','0','0'), ('1281','10322','{$ELASTICSEARCH.PORT}','9200','The port of the Elasticsearch host.','0','0'), ('1282','10322','{$ELASTICSEARCH.QUERY_LATENCY.MAX.WARN}','100','Maximum of query latency in milliseconds for trigger expression.','0','0'), ('1283','10322','{$ELASTICSEARCH.RESPONSE_TIME.MAX.WARN}','10s','The ES cluster maximum response time in seconds for trigger expression.','0','0'), ('1284','10322','{$ELASTICSEARCH.SCHEME}','http','The scheme of the Elasticsearch (http/https).','0','0'), ('1285','10322','{$ELASTICSEARCH.USERNAME}','','The username of the Elasticsearch.','0','0'), ('1286','10323','{$CLICKHOUSE.DELAYED.FILES.DISTRIBUTED.COUNT.MAX.WARN}','600','Maximum size of distributed files queue to insert for trigger expression.','0','0'), ('1287','10323','{$CLICKHOUSE.DELAYED.INSERTS.MAX.WARN}','0','Maximum number of delayed inserts for trigger expression.','0','0'), ('1288','10323','{$CLICKHOUSE.LLD.FILTER.DB.MATCHES}','.*','Filter of discoverable databases','0','0'), ('1289','10323','{$CLICKHOUSE.LLD.FILTER.DB.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered databases','0','0'), ('1290','10323','{$CLICKHOUSE.LLD.FILTER.DICT.MATCHES}','.*','Filter of discoverable dictionaries','0','0'), ('1291','10323','{$CLICKHOUSE.LLD.FILTER.DICT.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered dictionaries','0','0'), ('1292','10323','{$CLICKHOUSE.LOG_POSITION.DIFF.MAX.WARN}','30','Maximum diff between log_pointer and log_max_index.','0','0'), ('1293','10323','{$CLICKHOUSE.NETWORK.ERRORS.MAX.WARN}','5','Maximum number of network errors for trigger expression','0','0'), ('1294','10323','{$CLICKHOUSE.PARTS.PER.PARTITION.WARN}','300','Maximum number of parts per partition for trigger expression.','0','0'), ('1295','10323','{$CLICKHOUSE.PASSWORD}','zabbix_pass','','0','0'), ('1296','10323','{$CLICKHOUSE.PORT}','8123','The port of ClickHouse HTTP endpoint','0','0'), ('1297','10323','{$CLICKHOUSE.QUERY_TIME.MAX.WARN}','600','Maximum ClickHouse query time in seconds for trigger expression','0','0'), ('1298','10323','{$CLICKHOUSE.QUEUE.SIZE.MAX.WARN}','20','Maximum size of the queue for operations waiting to be performed for trigger expression.','0','0'), ('1299','10323','{$CLICKHOUSE.REPLICA.MAX.WARN}','600','Replication lag across all tables for trigger expression.','0','0'), ('1300','10323','{$CLICKHOUSE.SCHEME}','http','Request scheme which may be http or https','0','0'), ('1301','10323','{$CLICKHOUSE.USER}','zabbix','','0','0'), ('1302','10264','{$APACHE.STATUS.SCHEME}','http','The request scheme, which may be either HTTP or HTTPS.','0','0'), ('1303','10324','{$ETCD.GRPC_CODE.MATCHES}','.*','The filter of discoverable gRPC codes. See more details on https://github.com/grpc/grpc/blob/master/doc/statuscodes.md.','0','0'), ('1304','10324','{$ETCD.GRPC_CODE.NOT_MATCHES}','CHANGE_IF_NEEDED','The filter to exclude discovered gRPC codes. See more details on https://github.com/grpc/grpc/blob/master/doc/statuscodes.md.','0','0'), ('1305','10324','{$ETCD.GRPC_CODE.TRIGGER.MATCHES}','Aborted|Unavailable','The filter of discoverable gRPC codes, which will create triggers.','0','0'), ('1306','10324','{$ETCD.GRPC.ERRORS.MAX.WARN}','1','The maximum number of gRPC request failures.','0','0'), ('1307','10324','{$ETCD.HTTP.FAIL.MAX.WARN}','2','The maximum number of HTTP request failures.','0','0'), ('1308','10324','{$ETCD.LEADER.CHANGES.MAX.WARN}','5','The maximum number of leader changes.','0','0'), ('1309','10324','{$ETCD.OPEN.FDS.MAX.WARN}','90','The maximum percentage of used file descriptors.','0','0'), ('1310','10324','{$ETCD.PASSWORD}','','','0','0'), ('1311','10324','{$ETCD.PORT}','2379','The port of the `etcd` API endpoint.','0','0'), ('1312','10324','{$ETCD.PROPOSAL.FAIL.MAX.WARN}','2','The maximum number of proposal failures.','0','0'), ('1313','10324','{$ETCD.PROPOSAL.PENDING.MAX.WARN}','5','The maximum number of proposals in queue.','0','0'), ('1314','10324','{$ETCD.SCHEME}','http','The request scheme which may be `http` or `https`.','0','0'), ('1315','10324','{$ETCD.USER}','','','0','0'), ('1316','10325','{$IIS.APPPOOL.MATCHES}','.+','This macro is used in application pools discovery. Can be overridden on the host or linked template level.','0','0'), ('1317','10325','{$IIS.APPPOOL.MONITORED}','1','Monitoring status for discovered application pools. Use context to avoid trigger firing for specific application pools. "1" - enabled, "0" - disabled.','0','0'), ('1318','10325','{$IIS.APPPOOL.NOT_MATCHES}','','This macro is used in application pools discovery. Can be overridden on the host or linked template level.','0','0'), ('1319','10325','{$IIS.PORT}','80','Listening port.','0','0'), ('1320','10325','{$IIS.QUEUE.MAX.TIME}','5m','The time during which the queue length may exceed the threshold.','0','0'), ('1321','10325','{$IIS.QUEUE.MAX.WARN}','','Maximum application pool''s request queue length for trigger expression.','0','0'), ('1322','10325','{$IIS.SERVICE}','http','The service (http/https/etc) for port check. See "net.tcp.service" documentation page for more information: https://www.zabbix.com/documentation/7.0/manual/config/items/itemtypes/simple_checks','0','0'), ('1323','10326','{$IIS.APPPOOL.MATCHES}','.+','This macro is used in application pools discovery. Can be overridden on the host or linked template level.','0','0'), ('1324','10326','{$IIS.APPPOOL.MONITORED}','1','Monitoring status for discovered application pools. Use context to avoid trigger firing for specific application pools. "1" - enabled, "0" - disabled.','0','0'), ('1325','10326','{$IIS.APPPOOL.NOT_MATCHES}','','This macro is used in application pools discovery. Can be overridden on the host or linked template level.','0','0'), ('1326','10326','{$IIS.PORT}','80','Listening port.','0','0'), ('1327','10326','{$IIS.QUEUE.MAX.TIME}','5m','The time during which the queue length may exceed the threshold.','0','0'), ('1328','10326','{$IIS.QUEUE.MAX.WARN}','','Maximum application pool''s request queue length for trigger expression.','0','0'), ('1329','10326','{$IIS.SERVICE}','http','The service (http/https/etc) for port check. See "net.tcp.service" documentation page for more information: https://www.zabbix.com/documentation/7.0/manual/config/items/itemtypes/simple_checks','0','0'), ('1330','10327','{$MSSQL.AVERAGE_WAIT_TIME.MAX}','500','The maximum average wait time, in milliseconds - for the trigger expression.','0','0'), ('1331','10327','{$MSSQL.BUFFER_CACHE_RATIO.MIN.CRIT}','30','The minimum buffer cache hit ratio, in percent - for the High trigger expression.','0','0'), ('1332','10327','{$MSSQL.BUFFER_CACHE_RATIO.MIN.WARN}','50','The minimum buffer cache hit ratio, in percent - for the Warning trigger expression.','0','0'), ('1333','10327','{$MSSQL.DBNAME.MATCHES}','.*','This macro is used in database discovery. It can be overridden on the host or linked template level.','0','0'), ('1334','10327','{$MSSQL.DBNAME.NOT_MATCHES}','master|tempdb|model|msdb','This macro is used in database discovery. It can be overridden on the host or linked template level.','0','0'), ('1335','10327','{$MSSQL.DEADLOCKS.MAX}','1','The maximum deadlocks per second - for the trigger expression.','0','0'), ('1336','10327','{$MSSQL.DSN}','','System data source name.','0','0'), ('1337','10327','{$MSSQL.FREE_LIST_STALLS.MAX}','2','The maximum free list stalls per second - for the trigger expression.','0','0'), ('1339','10327','{$MSSQL.LAZY_WRITES.MAX}','20','The maximum lazy writes per second - for the trigger expression.','0','0'), ('1340','10327','{$MSSQL.LOCK_REQUESTS.MAX}','1000','The maximum lock requests per second - for the trigger expression.','0','0'), ('1341','10327','{$MSSQL.LOCK_TIMEOUTS.MAX}','1','The maximum lock timeouts per second - for the trigger expression.','0','0'), ('1342','10327','{$MSSQL.LOG_FLUSH_WAIT_TIME.MAX}','1','The maximum log flush wait time, in milliseconds - for the trigger expression.','0','0'), ('1343','10327','{$MSSQL.LOG_FLUSH_WAITS.MAX}','1','The maximum log flush waits per second - for the trigger expression.','0','0'), ('1346','10327','{$MSSQL.PAGE_LIFE_EXPECTANCY.MIN}','300','The minimum page life expectancy - for the trigger expression.','0','0'), ('1347','10327','{$MSSQL.PAGE_READS.MAX}','90','The maximum page reads per second - for the trigger expression.','0','0'), ('1348','10327','{$MSSQL.PAGE_WRITES.MAX}','90','The maximum page writes per second - for the trigger expression.','0','0'), ('1349','10327','{$MSSQL.PASSWORD}','','MSSQL user password.','0','0'), ('1350','10327','{$MSSQL.PERCENT_COMPILATIONS.MAX}','10','The maximum percentage of Transact-SQL compilations - for the trigger expression.','0','0'), ('1351','10327','{$MSSQL.PERCENT_LOG_USED.MAX}','80','The maximum percentage of log used - for the trigger expression.','0','0'), ('1352','10327','{$MSSQL.PERCENT_READAHEAD.MAX}','20','The maximum percentage of pages read per second in anticipation of use - for the trigger expression.','0','0'), ('1353','10327','{$MSSQL.PERCENT_RECOMPILATIONS.MAX}','10','The maximum percentage of Transact-SQL recompilations - for the trigger expression.','0','0'), ('1354','10327','{$MSSQL.PORT}','1433','MSSQL TCP port.','0','0'), ('1355','10327','{$MSSQL.USER}','','MSSQL username.','0','0'), ('1356','10327','{$MSSQL.WORK_FILES.MAX}','20','The maximum number of work files created per second - for the trigger expression.','0','0'), ('1357','10327','{$MSSQL.WORK_TABLES.MAX}','20','The maximum number of work tables created per second - for the trigger expression.','0','0'), ('1358','10327','{$MSSQL.WORKTABLES_FROM_CACHE_RATIO.MIN.CRIT}','90','The minimum percentage of work tables from the cache ratio - for the High trigger expression.','0','0'), ('1359','10316','{$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN}','10','The maximum number of temporary tables created on a disk per second for trigger expressions.','0','0'), ('1360','10316','{$MYSQL.CREATED_TMP_FILES.MAX.WARN}','10','The maximum number of temporary files created on a disk per second for trigger expressions.','0','0'), ('1361','10316','{$MYSQL.CREATED_TMP_TABLES.MAX.WARN}','30','The maximum number of temporary tables created in memory per second for trigger expressions.','0','0'), ('1362','10320','{$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN}','10','The maximum number of temporary tables created on a disk per second for trigger expressions.','0','0'), ('1363','10320','{$MYSQL.CREATED_TMP_FILES.MAX.WARN}','10','The maximum number of temporary files created on a disk per second for trigger expressions.','0','0'), ('1364','10320','{$MYSQL.CREATED_TMP_TABLES.MAX.WARN}','30','The maximum number of temporary tables created in memory per second for trigger expressions.','0','0'), ('1365','10317','{$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN}','10','The maximum number of temporary tables created on a disk per second for trigger expressions.','0','0'), ('1366','10317','{$MYSQL.CREATED_TMP_FILES.MAX.WARN}','10','The maximum number of temporary files created on a disk per second for trigger expressions.','0','0'), ('1367','10317','{$MYSQL.CREATED_TMP_TABLES.MAX.WARN}','30','The maximum number of temporary tables created in memory per second for trigger expressions.','0','0'), ('1368','10328','{$ORACLE.ASM.USED.PCT.MAX.HIGH}','95','The maximum percentage of used space in the Automatic Storage Management (ASM) disk group for the High trigger expression.','0','0'), ('1369','10328','{$ORACLE.ASM.USED.PCT.MAX.WARN}','90','The maximum percentage of used space in the Automatic Storage Management (ASM) disk group for the Warning trigger expression.','0','0'), ('1370','10328','{$ORACLE.CONCURRENCY.MAX.WARN}','80','The maximum percentage of session concurrency for the Warning trigger expression.','0','0'), ('1371','10328','{$ORACLE.DB.FILE.MAX.WARN}','80','The maximum percentage of used database files for the Warning trigger expression.','0','0'), ('1372','10328','{$ORACLE.DBNAME.MATCHES}','.*','Used in database discovery. It can be overridden on the host or linked template level.','0','0'), ('1373','10328','{$ORACLE.DBNAME.NOT_MATCHES}',E'PDB\\$SEED','Used in database discovery. It can be overridden on the host or linked template level.','0','0'), ('1375','10328','{$ORACLE.EXPIRE.PASSWORD.MIN.WARN}','7','The number of days before the password expires for the Warning trigger expression.','0','0'), ('1376','10328','{$ORACLE.PASSWORD}','','Oracle user''s password.','0','0'), ('1377','10328','{$ORACLE.PGA.USE.MAX.WARN}','90','Alert threshold for the maximum percentage of the Program Global Area (PGA) usage for the Warning trigger expression.','0','0'), ('1378','10328','{$ORACLE.PORT}','1521','Oracle Database TCP port.','0','0'), ('1379','10328','{$ORACLE.PROCESSES.MAX.WARN}','80','Alert threshold for the maximum percentage of active processes for the Warning trigger expression.','0','0'), ('1380','10328','{$ORACLE.REDO.MIN.WARN}','3','Alert threshold for the minimum number of redo logs for the Warning trigger expression.','0','0'), ('1381','10328','{$ORACLE.SESSION.LOCK.MAX.TIME}','600','The maximum duration of the session lock in seconds to count the session as a prolongedly locked query.','0','0'), ('1382','10328','{$ORACLE.SESSION.LONG.LOCK.MAX.WARN}','3','Alert threshold for the maximum number of the prolongedly locked sessions for the Warning trigger expression.','0','0'), ('1383','10328','{$ORACLE.SESSIONS.LOCK.MAX.WARN}','20','Alert threshold for the maximum percentage of locked sessions for the Warning trigger expression.','0','0'), ('1384','10328','{$ORACLE.SESSIONS.MAX.WARN}','80','Alert threshold for the maximum percentage of active sessions for the Warning trigger expression.','0','0'), ('1385','10328','{$ORACLE.SHARED.FREE.MIN.WARN}','5','Alert threshold for the minimum percentage of free shared pool for the Warning trigger expression.','0','0'), ('1386','10328','{$ORACLE.TABLESPACE.NAME.MATCHES}','.*','Used in tablespace discovery. It can be overridden on the host or linked template level.','0','0'), ('1387','10328','{$ORACLE.TABLESPACE.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in tablespace discovery. It can be overridden on the host or linked template level.','0','0'), ('1388','10328','{$ORACLE.TBS.USED.PCT.MAX.HIGH}','95','High severity alert threshold for the maximum percentage of tablespace usage (used bytes/allocated bytes) for the High trigger expression.','0','0'), ('1389','10328','{$ORACLE.TBS.USED.PCT.MAX.WARN}','90','Warning severity alert threshold for the maximum percentage of tablespace usage (used bytes/allocated bytes) for the Warning trigger expression.','0','0'), ('1390','10328','{$ORACLE.USER}','','Oracle username.','0','0'), ('1391','10329','{$PG.CONFLICTS.MAX.WARN}','0','Maximum number of recovery conflicts for trigger expression.','0','0'), ('1392','10329','{$PG.CONN_TOTAL_PCT.MAX.WARN}','90','Maximum percentage of current connections for trigger expression.','0','0'), ('1393','10329','{$PG.DEADLOCKS.MAX.WARN}','0','Maximum number of detected deadlocks for trigger expression.','0','0'), ('1394','10329','{$PG.LLD.FILTER.DBNAME}','.+','Filter of discoverable databases.','0','0'), ('1395','10329','{$PG.PASSWORD}','','PostgreSQL user password.','0','0'), ('1397','10329','{$PG.USER}','zbx_monitor','PostgreSQL username.','0','0'), ('1398','10169','{$JMX.CPU.LOAD.MAX}','85','A threshold in percent for CPU utilization trigger.','0','0'), ('1399','10169','{$JMX.CPU.LOAD.TIME}','5m','The time during which the CPU utilization may exceed the threshold.','0','0'), ('1400','10169','{$JMX.FILE.DESCRIPTORS.MAX}','85','A threshold in percent for file descriptors count trigger.','0','0'), ('1401','10169','{$JMX.FILE.DESCRIPTORS.TIME}','3m','The time during which the file descriptors count may exceed the threshold.','0','0'), ('1402','10169','{$JMX.HEAP.MEM.USAGE.MAX}','85','A threshold in percent for Heap memory utilization trigger.','0','0'), ('1403','10169','{$JMX.HEAP.MEM.USAGE.TIME}','10m','The time during which the Heap memory utilization may exceed the threshold.','0','0'), ('1404','10169','{$JMX.MP.USAGE.MAX}','85','A threshold in percent for memory pools utilization trigger. Use a context to change the threshold for a specific pool.','0','0'), ('1405','10169','{$JMX.MP.USAGE.TIME}','10m','The time during which the memory pools utilization may exceed the threshold.','0','0'), ('1406','10169','{$JMX.NONHEAP.MEM.USAGE.MAX}','85','A threshold in percent for Non-heap memory utilization trigger.','0','0'), ('1407','10169','{$JMX.NONHEAP.MEM.USAGE.TIME}','10m','The time during which the Non-heap memory utilization may exceed the threshold.','0','0'), ('1408','10330','{$PHP_FPM.HOST}','localhost','The hostname or IP address of the PHP-FPM status for a host or container.','0','0'), ('1409','10330','{$PHP_FPM.PING.PAGE}','ping','The path of the PHP-FPM ping page.','0','0'), ('1410','10330','{$PHP_FPM.PING.REPLY}','pong','The expected reply to the ping.','0','0'), ('1411','10330','{$PHP_FPM.PORT}','80','The port of the PHP-FPM status host or container.','0','0'), ('1412','10330','{$PHP_FPM.PROCESS_NAME}','php-fpm','The process name filter for the PHP-FPM process discovery. May vary depending on your OS distribution.','0','0'), ('1413','10330','{$PHP_FPM.QUEUE.WARN.MAX}','80','The maximum percent of the PHP-FPM queue usage for a trigger expression.','0','0'), ('1414','10330','{$PHP_FPM.STATUS.PAGE}','status','The path of the PHP-FPM status page.','0','0'), ('1415','10331','{$PHP_FPM.HOST}','localhost','The hostname or IP address of the PHP-FPM status for a host or container.','0','0'), ('1416','10331','{$PHP_FPM.PING.PAGE}','ping','The path of the PHP-FPM ping page.','0','0'), ('1417','10331','{$PHP_FPM.PING.REPLY}','pong','The expected reply to the ping.','0','0'), ('1418','10331','{$PHP_FPM.PORT}','80','The port of the PHP-FPM status host or container.','0','0'), ('1419','10331','{$PHP_FPM.QUEUE.WARN.MAX}','80','The maximum percent of the PHP-FPM queue usage for a trigger expression.','0','0'), ('1420','10331','{$PHP_FPM.SCHEME}','http','Request scheme which may be http or https','0','0'), ('1421','10331','{$PHP_FPM.STATUS.PAGE}','status','The path of the PHP-FPM status page.','0','0'), ('1425','10335','{$ORACLE.ASM.USED.PCT.MAX.HIGH}','95','The maximum percentage of used space in the Automatic Storage Management (ASM) disk group for the High trigger expression.','0','0'), ('1426','10335','{$ORACLE.ASM.USED.PCT.MAX.WARN}','90','The maximum percentage of used space in the Automatic Storage Management (ASM) disk group for the Warning trigger expression.','0','0'), ('1427','10335','{$ORACLE.CONCURRENCY.MAX.WARN}','80','The maximum percentage of session concurrency for the Warning trigger expression.','0','0'), ('1428','10335','{$ORACLE.CONNSTRING}','tcp://localhost:1521','Oracle URI or a session name.','0','0'), ('1429','10335','{$ORACLE.DB.FILE.MAX.WARN}','80','The maximum percentage of used database files for the Warning trigger expression.','0','0'), ('1430','10335','{$ORACLE.DBNAME.MATCHES}','.*','Used in database discovery. It can be overridden on the host or linked template level.','0','0'), ('1431','10335','{$ORACLE.DBNAME.NOT_MATCHES}',E'PDB\\$SEED','Used in database discovery. It can be overridden on the host or linked template level.','0','0'), ('1432','10335','{$ORACLE.EXPIRE.PASSWORD.MIN.WARN}','7','The number of days before the password expires for the Warning trigger expression.','0','0'), ('1433','10335','{$ORACLE.PASSWORD}','zabbix_password','Oracle user''s password.','0','0'), ('1434','10335','{$ORACLE.PGA.USE.MAX.WARN}','90','Alert threshold for the maximum percentage of the Program Global Area (PGA) usage for the Warning trigger expression.','0','0'), ('1435','10335','{$ORACLE.PROCESSES.MAX.WARN}','80','Alert threshold for the maximum percentage of active processes for the Warning trigger expression.','0','0'), ('1436','10335','{$ORACLE.REDO.MIN.WARN}','3','Alert threshold for the minimum number of redo logs for the Warning trigger expression.','0','0'), ('1437','10335','{$ORACLE.SERVICE}','ORA','Oracle Service Name.','0','0'), ('1438','10335','{$ORACLE.SESSION.LOCK.MAX.TIME}','600','The maximum duration of the session lock in seconds to count the session as a prolongedly locked query.','0','0'), ('1439','10335','{$ORACLE.SESSION.LONG.LOCK.MAX.WARN}','3','Alert threshold for the maximum number of the prolongedly locked sessions for the Warning trigger expression.','0','0'), ('1440','10335','{$ORACLE.SESSIONS.LOCK.MAX.WARN}','20','Alert threshold for the maximum percentage of locked sessions for the Warning trigger expression.','0','0'), ('1441','10335','{$ORACLE.SESSIONS.MAX.WARN}','80','Alert threshold for the maximum percentage of active sessions for the Warning trigger expression.','0','0'), ('1442','10335','{$ORACLE.SHARED.FREE.MIN.WARN}','5','Alert threshold for the minimum percentage of free shared pool for the Warning trigger expression.','0','0'), ('1443','10335','{$ORACLE.TABLESPACE.NAME.MATCHES}','.*','Used in tablespace discovery. It can be overridden on the host or linked template level.','0','0'), ('1444','10335','{$ORACLE.TABLESPACE.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in tablespace discovery. It can be overridden on the host or linked template level.','0','0'), ('1445','10335','{$ORACLE.TBS.USED.PCT.MAX.HIGH}','95','High severity alert threshold for the maximum percentage of tablespace usage (used bytes/allocated bytes) for the High trigger expression.','0','0'), ('1446','10335','{$ORACLE.TBS.USED.PCT.MAX.WARN}','90','Warning severity alert threshold for the maximum percentage of tablespace usage (used bytes/allocated bytes) for the Warning trigger expression.','0','0'), ('1447','10335','{$ORACLE.USER}','zabbix','Oracle username.','0','0'), ('1448','10336','{$AMI.PORT}','5038','AMI port number for checking service availability.','0','0'), ('1449','10336','{$AMI.QUEUE_CALLERS.MAX.WARN}','10','The maximum number of callers in a queue for trigger expression.','0','0'), ('1450','10336','{$AMI.RESPONSE_TIME.MAX.WARN}','10s','The Asterisk Manager API page maximum response time in seconds for trigger expression.','0','0'), ('1451','10336','{$AMI.SECRET}','zabbix','The Asterisk Manager secret.','0','0'), ('1452','10336','{$AMI.TRUNK_ACTIVE_CHANNELS.MAX.WARN}','28','The maximum number of busy channels of a trunk for trigger expression.','0','0'), ('1453','10336','{$AMI.TRUNK_REGEXP}','trunk','The regexp for the identification of trunk peers.','0','0'), ('1454','10336','{$AMI.URL}','http://asterisk:8088/asterisk/rawman','The Asterisk Manager API URL in the format `://://rawman`.','0','0'), ('1455','10336','{$AMI.USERNAME}','zabbix','The Asterisk Manager name.','0','0'), ('1534','10353','{$CEPH.API.KEY}','zabbix_pass','','0','0'), ('1535','10353','{$CEPH.CONNSTRING}','https://localhost:8003','','0','0'), ('1536','10353','{$CEPH.USER}','zabbix','','0','0'), ('1542','10355','{$SQUID.FILE.DESC.WARN.MIN}','100','The threshold for minimum number of available file descriptors','0','0'), ('1543','10355','{$SQUID.HTTP.PORT}','3128','http_port configured in squid.conf (Default: 3128)','0','0'), ('1544','10355','{$SQUID.PAGE.FAULT.WARN}','90','The threshold for sys page faults rate in percent of received HTTP requests','0','0'), ('1545','10355','{$SQUID.SNMP.COMMUNITY}','public','SNMP community allowed by ACL in squid.conf','0','0'), ('1546','10355','{$SQUID.SNMP.PORT}','3401','snmp_port configured in squid.conf (Default: 3401)','0','0'), ('1568','10357','{$PG.CACHE_HITRATIO.MIN.WARN}','90','Minimum cache hit ratio percentage for trigger expression.','0','0'), ('1569','10357','{$PG.CHECKPOINTS_REQ.MAX.WARN}','5','Maximum required checkpoint occurrences for trigger expression.','0','0'), ('1570','10357','{$PG.CONFLICTS.MAX.WARN}','0','Maximum number of recovery conflicts for trigger expression.','0','0'), ('1572','10357','{$PG.CONN_TOTAL_PCT.MAX.WARN}','90','Maximum percentage of current connections for trigger expression.','0','0'), ('1575','10357','{$PG.DEADLOCKS.MAX.WARN}','0','Maximum number of detected deadlocks for trigger expression.','0','0'), ('1576','10357','{$PG.FROZENXID_PCT_STOP.MIN.HIGH}','75','Minimum frozen XID before stop percentage for trigger expression.','0','0'), ('1577','10357','{$PG.HOST}','localhost','Hostname or IP of PostgreSQL host.','0','0'), ('1578','10357','{$PG.LLD.FILTER.DBNAME}','.+','Filter of discoverable databases.','0','0'), ('1579','10357','{$PG.LOCKS.MAX.WARN}','100','Maximum number of locks for trigger expression.','0','0'), ('1580','10357','{$PG.PING_TIME.MAX.WARN}','1s','Maximum time of connection response for trigger expression.','0','0'), ('1581','10357','{$PG.PORT}','5432','PostgreSQL service port.','0','0'), ('1582','10357','{$PG.QUERY_ETIME.MAX.WARN}','30','Execution time limit for count of slow queries.','0','0'), ('1583','10357','{$PG.REPL_LAG.MAX.WARN}','10m','Maximum replication lag time for trigger expression.','0','0'), ('1584','10357','{$PG.SLOW_QUERIES.MAX.WARN}','5','Slow queries count threshold for a trigger.','0','0'), ('1588','10357','{$PG.USER}','zbx_monitor','PostgreSQL username.','0','0'), ('1589','10233','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('1590','10233','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('1591','10233','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('1592','10233','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('1593','10233','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('1594','10233','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('1595','10358','{$ACTIVEMQ.BROKER.CONSUMERS.MIN.HIGH}','1','Minimum amount of consumers for broker. Can be used with broker name as context.','0','0'), ('1596','10358','{$ACTIVEMQ.BROKER.CONSUMERS.MIN.TIME}','5m','Time during which there may be no consumers on destination. Can be used with broker name as context.','0','0'), ('1597','10358','{$ACTIVEMQ.BROKER.PRODUCERS.MIN.HIGH}','1','Minimum amount of producers for broker. Can be used with broker name as context.','0','0'), ('1598','10358','{$ACTIVEMQ.BROKER.PRODUCERS.MIN.TIME}','5m','Time during which there may be no producers on broker. Can be used with broker name as context.','0','0'), ('1599','10358','{$ACTIVEMQ.DESTINATION.CONSUMERS.MIN.HIGH}','1','Minimum amount of consumers for destination. Can be used with destination name as context.','0','0'), ('1600','10358','{$ACTIVEMQ.DESTINATION.CONSUMERS.MIN.TIME}','10m','Time during which there may be no consumers in destination. Can be used with destination name as context.','0','0'), ('1601','10358','{$ACTIVEMQ.DESTINATION.PRODUCERS.MIN.HIGH}','1','Minimum amount of producers for destination. Can be used with destination name as context.','0','0'), ('1602','10358','{$ACTIVEMQ.DESTINATION.PRODUCERS.MIN.TIME}','10m','Time during which there may be no producers on destination. Can be used with destination name as context.','0','0'), ('1604','10358','{$ACTIVEMQ.LLD.FILTER.BROKER.MATCHES}','.*','Filter of discoverable discovered brokers','0','0'), ('1605','10358','{$ACTIVEMQ.LLD.FILTER.BROKER.NOT_MATCHES}','CHANGE IF NEEDED','Filter to exclude discovered brokers','0','0'), ('1606','10358','{$ACTIVEMQ.LLD.FILTER.DESTINATION.MATCHES}','.*','Filter of discoverable discovered destinations','0','0'), ('1607','10358','{$ACTIVEMQ.LLD.FILTER.DESTINATION.NOT_MATCHES}','CHANGE IF NEEDED','Filter to exclude discovered destinations','0','0'), ('1608','10358','{$ACTIVEMQ.MEM.MAX.HIGH}','90','Memory threshold for HIGH trigger. Can be used with destination or broker name as context.','0','0'), ('1609','10358','{$ACTIVEMQ.MEM.MAX.WARN}','75','Memory threshold for AVERAGE trigger. Can be used with destination or broker name as context.','0','0'), ('1610','10358','{$ACTIVEMQ.MEM.TIME}','5m','Time during which the metric can be above the threshold. Can be used with destination or broker name as context.','0','0'), ('1611','10358','{$ACTIVEMQ.MSG.RATE.WARN.TIME}','15m','The time for message enqueue/dequeue rate. Can be used with destination or broker name as context.','0','0'), ('1612','10358','{$ACTIVEMQ.PASSWORD}','activemq','Password for JMX','0','0'), ('1613','10358','{$ACTIVEMQ.PORT}','1099','Port for JMX','0','0'), ('1614','10358','{$ACTIVEMQ.QUEUE.ENABLED}','1','Use this to disable alerting for specific destination. 1 = enabled, 0 = disabled. Can be used with destination name as context.','0','0'), ('1615','10358','{$ACTIVEMQ.QUEUE.TIME}','10m','Time during which the QueueSize can be higher than threshold. Can be used with destination name as context.','0','0'), ('1616','10358','{$ACTIVEMQ.QUEUE.WARN}','100','Threshold for QueueSize. Can be used with destination name as context.','0','0'), ('1617','10358','{$ACTIVEMQ.STORE.MAX.HIGH}','90','Storage threshold for HIGH trigger. Can be used with broker name as context.','0','0'), ('1618','10358','{$ACTIVEMQ.STORE.MAX.WARN}','75','Storage threshold for AVERAGE trigger. Can be used with broker name as context.','0','0'), ('1619','10358','{$ACTIVEMQ.STORE.TIME}','5m','Time during which the metric can be above the threshold. Can be used with destination or broker name as context.','0','0'), ('1620','10358','{$ACTIVEMQ.TEMP.MAX.HIGH}','90','Temp threshold for HIGH trigger. Can be used with broker name as context.','0','0'), ('1621','10358','{$ACTIVEMQ.TEMP.MAX.WARN}','75','Temp threshold for AVERAGE trigger. Can be used with broker name as context.','0','0'), ('1622','10358','{$ACTIVEMQ.TEMP.TIME}','5m','Time during which the metric can be above the threshold. Can be used with destination or broker name as context.','0','0'), ('1623','10358','{$ACTIVEMQ.TOTAL.CONSUMERS.COUNT}','TotalConsumerCount','Attribute for TotalConsumerCount per destination. Used to suppress destination''s triggers when the count of consumers on the broker is lower than threshold.','0','0'), ('1624','10358','{$ACTIVEMQ.TOTAL.PRODUCERS.COUNT}','TotalProducerCount','Attribute for TotalProducerCount per destination. Used to suppress destination''s triggers when the count of consumers on the broker is lower than threshold.','0','0'), ('1625','10358','{$ACTIVEMQ.USER}','admin','User for JMX','0','0'), ('1626','10359','{$ARANET.API.ENDPOINT}','https://aranet.cloud/api','Aranet Cloud API endpoint.','0','0'), ('1627','10359','{$ARANET.API.PASSWORD}','','Aranet Cloud password.','0','0'), ('1628','10359','{$ARANET.API.SPACE_NAME}','','Aranet Cloud organization name.','0','0'), ('1629','10359','{$ARANET.API.USERNAME}','','Aranet Cloud username.','0','0'), ('1630','10359','{$ARANET.BATT.VOLTAGE.MIN.CRIT}','2','Battery voltage critical threshold.','0','0'), ('1631','10359','{$ARANET.BATT.VOLTAGE.MIN.WARN}','1','Battery voltage warning threshold.','0','0'), ('1632','10359','{$ARANET.CO2.MAX.CRIT}','1000','CO2 critical threshold.','0','0'), ('1633','10359','{$ARANET.CO2.MAX.WARN}','600','CO2 warning threshold.','0','0'), ('1634','10359','{$ARANET.HUMIDITY.MAX.WARN}','70','Maximum humidity threshold.','0','0'), ('1635','10359','{$ARANET.HUMIDITY.MIN.WARN}','20','Minimum humidity threshold.','0','0'), ('1636','10359','{$ARANET.LAST_UPDATE.MAX.WARN}','1h','Data update delay threshold.','0','0'), ('1637','10359','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}','.+','Filter of discoverable sensors by gateway id.','0','0'), ('1638','10359','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}','.+','Filter of discoverable sensors by gateway name.','0','0'), ('1639','10359','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discoverable sensors by gateway name.','0','0'), ('1640','10359','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}','.+','Filter of discoverable sensors by id.','0','0'), ('1641','10359','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}','.+','Filter of discoverable sensors by name.','0','0'), ('1642','10359','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discoverable sensors by name.','0','0'), ('1643','10360','{$MS.EXCHANGE.DB.ACTIVE.READ.TIME}','5m','The time during which the active database read operations latency may exceed the threshold.','0','0'), ('1644','10360','{$MS.EXCHANGE.DB.ACTIVE.READ.WARN}','0.02','Threshold for active database read operations latency trigger.','0','0'), ('1645','10360','{$MS.EXCHANGE.DB.ACTIVE.WRITE.TIME}','10m','The time during which the active database write operations latency may exceed the threshold.','0','0'), ('1646','10360','{$MS.EXCHANGE.DB.ACTIVE.WRITE.WARN}','0.05','Threshold for active database write operations latency trigger.','0','0'), ('1647','10360','{$MS.EXCHANGE.DB.FAULTS.TIME}','5m','The time during which the database page faults may exceed the threshold.','0','0'), ('1648','10360','{$MS.EXCHANGE.DB.FAULTS.WARN}','0','Threshold for database page faults trigger.','0','0'), ('1649','10360','{$MS.EXCHANGE.DB.PASSIVE.READ.TIME}','5m','The time during which the passive database read operations latency may exceed the threshold.','0','0'), ('1650','10360','{$MS.EXCHANGE.DB.PASSIVE.READ.WARN}','0.2','Threshold for passive database read operations latency trigger.','0','0'), ('1651','10360','{$MS.EXCHANGE.DB.PASSIVE.WRITE.TIME}','10m','The time during which the passive database write operations latency may exceed the threshold.','0','0'), ('1652','10360','{$MS.EXCHANGE.LDAP.TIME}','5m','The time during which the LDAP metrics may exceed the threshold.','0','0'), ('1653','10360','{$MS.EXCHANGE.LDAP.WARN}','0.05','Threshold for LDAP triggers.','0','0'), ('1654','10360','{$MS.EXCHANGE.LOG.STALLS.TIME}','10m','The time during which the log records stalled may exceed the threshold.','0','0'), ('1655','10360','{$MS.EXCHANGE.LOG.STALLS.WARN}','100','Threshold for log records stalled trigger.','0','0'), ('1656','10360','{$MS.EXCHANGE.PERF.INTERVAL}','60','Update interval for perf_counter_en items.','0','0'), ('1657','10360','{$MS.EXCHANGE.RPC.COUNT.TIME}','5m','The time during which the RPC total requests may exceed the threshold.','0','0'), ('1658','10360','{$MS.EXCHANGE.RPC.COUNT.WARN}','70','Threshold for LDAP triggers.','0','0'), ('1659','10360','{$MS.EXCHANGE.RPC.TIME}','10m','The time during which the RPC requests latency may exceed the threshold.','0','0'), ('1660','10360','{$MS.EXCHANGE.RPC.WARN}','0.05','Threshold for RPC requests latency trigger.','0','0'), ('1661','10361','{$MS.EXCHANGE.DB.ACTIVE.READ.TIME}','5m','The time during which the active database read operations latency may exceed the threshold.','0','0'), ('1662','10361','{$MS.EXCHANGE.DB.ACTIVE.READ.WARN}','0.02','Threshold for active database read operations latency trigger.','0','0'), ('1663','10361','{$MS.EXCHANGE.DB.ACTIVE.WRITE.TIME}','10m','The time during which the active database write operations latency may exceed the threshold.','0','0'), ('1664','10361','{$MS.EXCHANGE.DB.ACTIVE.WRITE.WARN}','0.05','Threshold for active database write operations latency trigger.','0','0'), ('1665','10361','{$MS.EXCHANGE.DB.FAULTS.TIME}','5m','The time during which the database page faults may exceed the threshold.','0','0'), ('1666','10361','{$MS.EXCHANGE.DB.FAULTS.WARN}','0','Threshold for database page faults trigger.','0','0'), ('1667','10361','{$MS.EXCHANGE.DB.PASSIVE.READ.TIME}','5m','The time during which the passive database read operations latency may exceed the threshold.','0','0'), ('1668','10361','{$MS.EXCHANGE.DB.PASSIVE.READ.WARN}','0.2','Threshold for passive database read operations latency trigger.','0','0'), ('1669','10361','{$MS.EXCHANGE.DB.PASSIVE.WRITE.TIME}','10m','The time during which the passive database write operations latency may exceed the threshold.','0','0'), ('1670','10361','{$MS.EXCHANGE.LDAP.TIME}','5m','The time during which the LDAP metrics may exceed the threshold.','0','0'), ('1671','10361','{$MS.EXCHANGE.LDAP.WARN}','0.05','Threshold for LDAP triggers.','0','0'), ('1672','10361','{$MS.EXCHANGE.LOG.STALLS.TIME}','10m','The time during which the log records stalled may exceed the threshold.','0','0'), ('1673','10361','{$MS.EXCHANGE.LOG.STALLS.WARN}','100','Threshold for log records stalled trigger.','0','0'), ('1674','10361','{$MS.EXCHANGE.PERF.INTERVAL}','60','Update interval for perf_counter_en items.','0','0'), ('1675','10361','{$MS.EXCHANGE.RPC.COUNT.TIME}','5m','The time during which the RPC total requests may exceed the threshold.','0','0'), ('1676','10361','{$MS.EXCHANGE.RPC.COUNT.WARN}','70','Threshold for LDAP triggers.','0','0'), ('1677','10361','{$MS.EXCHANGE.RPC.TIME}','10m','The time during which the RPC requests latency may exceed the threshold.','0','0'), ('1678','10361','{$MS.EXCHANGE.RPC.WARN}','0.05','Threshold for RPC requests latency trigger.','0','0'), ('1679','10362','{$GITLAB.HTTP.FAIL.MAX.WARN}','2','The maximum number of HTTP request failures for a trigger expression.','0','0'), ('1680','10362','{$GITLAB.OPEN.FDS.MAX.WARN}','90','The maximum percentage of used file descriptors for a trigger expression.','0','0'), ('1682','10362','{$GITLAB.PUMA.QUEUE.MAX.WARN}','1','The maximum number of Puma queued requests for a trigger expression.','0','0'), ('1683','10362','{$GITLAB.PUMA.UTILIZATION.MAX.WARN}','90','The maximum percentage of Puma thread utilization for a trigger expression.','0','0'), ('1684','10362','{$GITLAB.REDIS.FAIL.MAX.WARN}','2','The maximum number of Redis client exceptions for a trigger expression.','0','0'), ('1685','10362','{$GITLAB.UNICORN.QUEUE.MAX.WARN}','1','The maximum number of Unicorn queued requests for a trigger expression.','0','0'), ('1686','10362','{$GITLAB.UNICORN.UTILIZATION.MAX.WARN}','90','The maximum percentage of Unicorn workers utilization for a trigger expression.','0','0'), ('1687','10362','{$GITLAB.URL}','http://localhost','URL of a GitLab instance.','0','0'), ('1688','10363','{$HADOOP.CAPACITY_REMAINING.MIN.WARN}','20','The Hadoop cluster capacity remaining percent for trigger expression.','0','0'), ('1689','10363','{$HADOOP.NAMENODE.HOST}','NameNode','The Hadoop NameNode host IP address or FQDN.','0','0'), ('1690','10363','{$HADOOP.NAMENODE.PORT}','9870','The Hadoop NameNode Web-UI port.','0','0'), ('1691','10363','{$HADOOP.NAMENODE.RESPONSE_TIME.MAX.WARN}','10s','The Hadoop NameNode API page maximum response time in seconds for trigger expression.','0','0'), ('1692','10363','{$HADOOP.RESOURCEMANAGER.HOST}','ResourceManager','The Hadoop ResourceManager host IP address or FQDN.','0','0'), ('1693','10363','{$HADOOP.RESOURCEMANAGER.PORT}','8088','The Hadoop ResourceManager Web-UI port.','0','0'), ('1694','10363','{$HADOOP.RESOURCEMANAGER.RESPONSE_TIME.MAX.WARN}','10s','The Hadoop ResourceManager API page maximum response time in seconds for trigger expression.','0','0'), ('1695','10364','{$KAFKA.NET_PROC_AVG_IDLE.MIN.WARN}','30','The minimum Network processor average idle percent for trigger expression.','0','0'), ('1696','10364','{$KAFKA.PASSWORD}','zabbix','','0','0'), ('1697','10364','{$KAFKA.REQUEST_HANDLER_AVG_IDLE.MIN.WARN}','30','The minimum Request handler average idle percent for trigger expression.','0','0'), ('1698','10364','{$KAFKA.TOPIC.MATCHES}','.*','Filter of discoverable topics','0','0'), ('1699','10364','{$KAFKA.TOPIC.NOT_MATCHES}','__consumer_offsets','Filter to exclude discovered topics','0','0'), ('1700','10364','{$KAFKA.USER}','zabbix','','0','0'), ('1703','10260','{$TOMCAT.PASSWORD}','','Password for JMX','0','0'), ('1704','10260','{$TOMCAT.THREADS.MAX.PCT}','75','Threshold for busy worker threads trigger. Can be used with {#JMXNAME} as context.','0','0'), ('1705','10260','{$TOMCAT.THREADS.MAX.TIME}','5m','The time during which the number of busy threads can exceed the threshold. Can be used with {#JMXNAME} as context.','0','0'), ('1706','10260','{$TOMCAT.USER}','','User for JMX','0','0'), ('1707','10365','{$VAULT.API.PORT}','8200','Vault port.','0','0'), ('1708','10365','{$VAULT.API.SCHEME}','http','Vault API scheme.','0','0'), ('1709','10365','{$VAULT.HOST}','','Vault host name.','0','0'), ('1710','10365','{$VAULT.LEADERSHIP.LOSSES.MAX.WARN}','5','Maximum number of Vault leadership losses.','0','0'), ('1711','10365','{$VAULT.LEADERSHIP.SETUP.FAILED.MAX.WARN}','5','Maximum number of Vault leadership setup failed.','0','0'), ('1712','10365','{$VAULT.LEADERSHIP.STEPDOWNS.MAX.WARN}','5','Maximum number of Vault leadership step downs.','0','0'), ('1713','10365','{$VAULT.LLD.FILTER.STORAGE.MATCHES}','.+','Filter of discoverable storage backends.','0','0'), ('1714','10365','{$VAULT.OPEN.FDS.MAX.WARN}','90','Maximum percentage of used file descriptors for trigger expression.','0','0'), ('1715','10365','{$VAULT.TOKEN}','','Vault auth token.','0','0'), ('1716','10365','{$VAULT.TOKEN.ACCESSORS}','','Vault accessors separated by spaces for monitoring token expiration time.','0','0'), ('1717','10365','{$VAULT.TOKEN.TTL.MIN.CRIT}','3d','Token TTL critical threshold.','0','0'), ('1718','10365','{$VAULT.TOKEN.TTL.MIN.WARN}','7d','Token TTL warning threshold.','0','0'), ('1719','10333','{$VMWARE.HV.UUID}','{#HV.UUID}','UUID of hypervisor.','0','0'), ('1720','10334','{$VMWARE.VM.UUID}','{#VM.UUID}','UUID of guest virtual machine.','0','0'), ('1721','10367','{$VMWARE.HV.UUID}','{#HV.UUID}','UUID of hypervisor.','0','0'), ('1722','10368','{$VMWARE.VM.UUID}','{#VM.UUID}','UUID of guest virtual machine.','0','0'), ('1723','10369','{$ZOOKEEPER.COMMAND_URL}','commands','The URL for listing and issuing commands relative to the root URL (admin.commandURL).','0','0'), ('1724','10369','{$ZOOKEEPER.FILE_DESCRIPTORS.MAX.WARN}','85','Maximum percentage of file descriptors usage alert threshold (for trigger expression).','0','0'), ('1725','10369','{$ZOOKEEPER.OUTSTANDING_REQ.MAX.WARN}','10','Maximum number of outstanding requests (for trigger expression).','0','0'), ('1726','10369','{$ZOOKEEPER.PENDING_SYNCS.MAX.WARN}','10','Maximum number of pending syncs from the followers (for trigger expression).','0','0'), ('1727','10369','{$ZOOKEEPER.PORT}','8080','The port the embedded Jetty server listens on (admin.serverPort).','0','0'), ('1728','10369','{$ZOOKEEPER.SCHEME}','http','Request scheme which may be http or https','0','0'), ('1729','10370','{$CASSANDRA.KEY_SPACE.MATCHES}','.*','Filter of discoverable key spaces','0','0'), ('1730','10370','{$CASSANDRA.KEY_SPACE.NOT_MATCHES}','(system|system_auth|system_distributed|system_schema)','Filter to exclude discovered key spaces','0','0'), ('1731','10370','{$CASSANDRA.PASSWORD}','zabbix','','0','0'), ('1732','10370','{$CASSANDRA.PENDING_TASKS.MAX.HIGH}','500','','0','0'), ('1733','10370','{$CASSANDRA.PENDING_TASKS.MAX.WARN}','350','','0','0'), ('1734','10370','{$CASSANDRA.USER}','zabbix','','0','0'), ('1735','10316','{$MYSQL.INNODB_LOG_FILES}','2','Number of physical files in the InnoDB redo log for calculating `innodb_log_file_size`.','0','0'), ('1736','10320','{$MYSQL.INNODB_LOG_FILES}','2','Number of physical files in the InnoDB redo log for calculating `innodb_log_file_size`.','0','0'), ('1737','10317','{$MYSQL.INNODB_LOG_FILES}','2','Number of physical files in the InnoDB redo log for calculating `innodb_log_file_size`.','0','0'), ('1738','10335','{$ORACLE.TBS.UTIL.PCT.MAX.HIGH}','90','High severity alert threshold for the maximum percentage of tablespace utilization (allocated bytes/max bytes) for the High trigger expression.','0','0'), ('1739','10335','{$ORACLE.TBS.UTIL.PCT.MAX.WARN}','80','Warning severity alert threshold for the maximum percentage of tablespace utilization (allocated bytes/max bytes) for the High trigger expression.','0','0'), ('1740','10328','{$ORACLE.TBS.UTIL.PCT.MAX.HIGH}','90','High severity alert threshold for the maximum percentage of tablespace utilization (allocated bytes/max bytes) for the High trigger expression.','0','0'), ('1741','10328','{$ORACLE.TBS.UTIL.PCT.MAX.WARN}','80','Warning severity alert threshold for the maximum percentage of tablespace utilization (allocated bytes/max bytes) for the High trigger expression.','0','0'), ('1742','10329','{$PG.DATABASE}','postgres','Default PostgreSQL database for the connection.','0','0'), ('1743','10329','{$PG.LLD.FILTER.APPLICATION}','.+','Filter of discoverable applications.','0','0'), ('1744','10371','{$BATTERY.TEMP.MAX.CRIT}','60','Battery high temperature critical value','0','0'), ('1745','10371','{$BATTERY.TEMP.MAX.WARN}','45','Battery high temperature warning value','0','0'), ('1746','10371','{$BATTERY.TEMP.MIN.CRIT}','-20','Battery low temperature critical value','0','0'), ('1747','10371','{$BATTERY.TEMP.MIN.WARN}','0','Battery low temperature warning value','0','0'), ('1748','10371','{$CHARGE.STATE.CRIT}','4','fault','0','0'), ('1749','10371','{$CHARGE.STATE.WARN}','2','disconnect','0','0'), ('1750','10371','{$LOAD.STATE.CRIT:"fault"}','4','fault','0','0'), ('1751','10371','{$LOAD.STATE.CRIT:"lvd"}','3','lvd','0','0'), ('1752','10371','{$LOAD.STATE.WARN:"disconnect"}','5','disconnect','0','0'), ('1753','10371','{$LOAD.STATE.WARN:"lvdWarning"}','2','lvdWarning','0','0'), ('1754','10371','{$LOAD.STATE.WARN:"override"}','7','override','0','0'), ('1755','10371','{$VOLTAGE.MAX.CRIT}','','','0','0'), ('1756','10371','{$VOLTAGE.MAX.WARN}','','','0','0'), ('1757','10371','{$VOLTAGE.MIN.CRIT}','','','0','0'), ('1758','10371','{$VOLTAGE.MIN.WARN}','','','0','0'), ('1759','10372','{$BATTERY.TEMP.MAX.CRIT}','60','Battery high temperature critical value','0','0'), ('1760','10372','{$BATTERY.TEMP.MAX.WARN}','45','Battery high temperature warning value','0','0'), ('1761','10372','{$BATTERY.TEMP.MIN.CRIT}','-20','Battery low temperature critical value','0','0'), ('1762','10372','{$BATTERY.TEMP.MIN.WARN}','0','Battery low temperature warning value','0','0'), ('1763','10372','{$CHARGE.STATE.CRIT}','4','fault','0','0'), ('1764','10372','{$CHARGE.STATE.WARN}','2','disconnect','0','0'), ('1765','10372','{$LOAD.STATE.CRIT:"fault"}','4','fault','0','0'), ('1766','10372','{$LOAD.STATE.CRIT:"lvd"}','3','lvd','0','0'), ('1767','10372','{$LOAD.STATE.WARN:"disconnect"}','5','disconnect','0','0'), ('1768','10372','{$LOAD.STATE.WARN:"lvdWarning"}','2','lvdWarning','0','0'), ('1769','10372','{$LOAD.STATE.WARN:"override"}','7','override','0','0'), ('1770','10372','{$VOLTAGE.MAX.CRIT}','','','0','0'), ('1771','10372','{$VOLTAGE.MAX.WARN}','','','0','0'), ('1772','10372','{$VOLTAGE.MIN.CRIT}','','','0','0'), ('1773','10372','{$VOLTAGE.MIN.WARN}','','','0','0'), ('1774','10373','{$BATTERY.TEMP.MAX.CRIT}','60','Battery high temperature critical value','0','0'), ('1775','10373','{$BATTERY.TEMP.MAX.WARN}','45','Battery high temperature warning value','0','0'), ('1776','10373','{$BATTERY.TEMP.MIN.CRIT}','-20','Battery low temperature critical value','0','0'), ('1777','10373','{$BATTERY.TEMP.MIN.WARN}','0','Battery low temperature warning value','0','0'), ('1778','10373','{$CHARGE.STATE.CRIT}','4','fault','0','0'), ('1779','10373','{$CHARGE.STATE.WARN}','2','disconnect','0','0'), ('1780','10373','{$LOAD.STATE.CRIT:"fault"}','4','fault','0','0'), ('1781','10373','{$LOAD.STATE.CRIT:"lvd"}','3','lvd','0','0'), ('1782','10373','{$LOAD.STATE.WARN:"disconnect"}','5','disconnect','0','0'), ('1783','10373','{$LOAD.STATE.WARN:"lvdWarning"}','2','lvdWarning','0','0'), ('1784','10373','{$LOAD.STATE.WARN:"override"}','7','override','0','0'), ('1785','10373','{$VOLTAGE.MAX.CRIT}','','','0','0'), ('1786','10373','{$VOLTAGE.MAX.WARN}','','','0','0'), ('1787','10373','{$VOLTAGE.MIN.CRIT}','','','0','0'), ('1788','10373','{$VOLTAGE.MIN.WARN}','','','0','0'), ('1789','10374','{$BATTERY.TEMP.MAX.CRIT}','60','Battery high temperature critical value','0','0'), ('1790','10374','{$BATTERY.TEMP.MAX.WARN}','45','Battery high temperature warning value','0','0'), ('1791','10374','{$BATTERY.TEMP.MIN.CRIT}','-20','Battery low temperature critical value','0','0'), ('1792','10374','{$BATTERY.TEMP.MIN.WARN}','0','Battery low temperature warning value','0','0'), ('1793','10374','{$CHARGE.STATE.CRIT}','4','fault','0','0'), ('1794','10374','{$CHARGE.STATE.WARN}','2','disconnect','0','0'), ('1795','10374','{$LOAD.STATE.CRIT:"fault"}','4','fault','0','0'), ('1796','10374','{$LOAD.STATE.CRIT:"lvd"}','3','lvd','0','0'), ('1797','10374','{$LOAD.STATE.WARN:"disconnect"}','5','disconnect','0','0'), ('1798','10374','{$LOAD.STATE.WARN:"lvdWarning"}','2','lvdWarning','0','0'), ('1799','10374','{$LOAD.STATE.WARN:"override"}','7','override','0','0'), ('1800','10374','{$VOLTAGE.MAX.CRIT}','','','0','0'), ('1801','10374','{$VOLTAGE.MAX.WARN}','','','0','0'), ('1802','10374','{$VOLTAGE.MIN.CRIT}','','','0','0'), ('1803','10374','{$VOLTAGE.MIN.WARN}','','','0','0'), ('1804','10375','{$BATTERY.TEMP.MAX.CRIT}','60','Battery high temperature critical value','0','0'), ('1805','10375','{$BATTERY.TEMP.MAX.WARN}','45','Battery high temperature warning value','0','0'), ('1806','10375','{$BATTERY.TEMP.MIN.CRIT}','-20','Battery low temperature critical value','0','0'), ('1807','10375','{$BATTERY.TEMP.MIN.WARN}','0','Battery low temperature warning value','0','0'), ('1808','10375','{$CHARGE.STATE.CRIT}','4','fault','0','0'), ('1809','10375','{$CHARGE.STATE.WARN}','2','disconnect','0','0'), ('1810','10375','{$LOAD.STATE.CRIT:"fault"}','4','fault','0','0'), ('1811','10375','{$LOAD.STATE.CRIT:"lvd"}','3','lvd','0','0'), ('1812','10375','{$LOAD.STATE.WARN:"disconnect"}','5','disconnect','0','0'), ('1813','10375','{$LOAD.STATE.WARN:"lvdWarning"}','2','lvdWarning','0','0'), ('1814','10375','{$LOAD.STATE.WARN:"override"}','7','override','0','0'), ('1815','10375','{$VOLTAGE.MAX.CRIT}','','','0','0'), ('1816','10375','{$VOLTAGE.MAX.WARN}','','','0','0'), ('1817','10375','{$VOLTAGE.MIN.CRIT}','','','0','0'), ('1818','10375','{$VOLTAGE.MIN.WARN}','','','0','0'), ('1819','10376','{$BATTERY.TEMP.MAX.CRIT}','60','Battery high temperature critical value','0','0'), ('1820','10376','{$BATTERY.TEMP.MAX.WARN}','45','Battery high temperature warning value','0','0'), ('1821','10376','{$BATTERY.TEMP.MIN.CRIT}','-20','Battery low temperature critical value','0','0'), ('1822','10376','{$BATTERY.TEMP.MIN.WARN}','0','Battery low temperature warning value','0','0'), ('1823','10376','{$CHARGE.STATE.CRIT}','4','fault','0','0'), ('1824','10376','{$CHARGE.STATE.WARN}','2','disconnect','0','0'), ('1825','10376','{$LOAD.STATE.CRIT:"fault"}','4','fault','0','0'), ('1826','10376','{$LOAD.STATE.CRIT:"lvd"}','3','lvd','0','0'), ('1827','10376','{$LOAD.STATE.WARN:"disconnect"}','5','disconnect','0','0'), ('1828','10376','{$LOAD.STATE.WARN:"lvdWarning"}','2','lvdWarning','0','0'), ('1829','10376','{$LOAD.STATE.WARN:"override"}','7','override','0','0'), ('1830','10376','{$VOLTAGE.MAX.CRIT}','','','0','0'), ('1831','10376','{$VOLTAGE.MAX.WARN}','','','0','0'), ('1832','10376','{$VOLTAGE.MIN.CRIT}','','','0','0'), ('1833','10376','{$VOLTAGE.MIN.WARN}','','','0','0'), ('1834','10377','{$BATTERY.TEMP.MAX.CRIT}','60','Battery high temperature critical value','0','0'), ('1835','10377','{$BATTERY.TEMP.MAX.WARN}','45','Battery high temperature warning value','0','0'), ('1836','10377','{$BATTERY.TEMP.MIN.CRIT}','-20','Battery low temperature critical value','0','0'), ('1837','10377','{$BATTERY.TEMP.MIN.WARN}','0','Battery low temperature warning value','0','0'), ('1838','10377','{$CHARGE.STATE.CRIT}','4','fault','0','0'), ('1839','10377','{$CHARGE.STATE.WARN}','2','disconnect','0','0'), ('1840','10377','{$LOAD.STATE.CRIT:"fault"}','4','fault','0','0'), ('1841','10377','{$LOAD.STATE.CRIT:"lvd"}','3','lvd','0','0'), ('1842','10377','{$LOAD.STATE.WARN:"disconnect"}','5','disconnect','0','0'), ('1843','10377','{$LOAD.STATE.WARN:"lvdWarning"}','2','lvdWarning','0','0'), ('1844','10377','{$LOAD.STATE.WARN:"override"}','7','override','0','0'), ('1845','10377','{$VOLTAGE.MAX.CRIT}','','','0','0'), ('1846','10377','{$VOLTAGE.MAX.WARN}','','','0','0'), ('1847','10377','{$VOLTAGE.MIN.CRIT}','','','0','0'), ('1848','10377','{$VOLTAGE.MIN.WARN}','','','0','0'), ('1853','10378','{$CPU.UTIL.CRIT}','90','The critical threshold of the CPU utilization expressed in %.','0','0'), ('1854','10378','{$FAS3220.FS.AVAIL.MIN.CRIT}','10G','Minimum available space on the disk. Can be used with {#FSNAME} as context.','0','0'), ('1855','10378','{$FAS3220.FS.NAME.MATCHES}','.*','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0','0'), ('1856','10378','{$FAS3220.FS.NAME.NOT_MATCHES}','snapshot','This macro is used in filesystems discovery. Can be overridden on the host or linked template level.','0','0'), ('1857','10378','{$FAS3220.FS.PUSED.MAX.CRIT}','90','Maximum percentage of disk used. Can be used with {#FSNAME} as context.','0','0'), ('1858','10378','{$FAS3220.FS.TIME}','10m','The time during which disk usage may exceed the threshold. Can be used with {#FSNAME} as context.','0','0'), ('1859','10378','{$FAS3220.FS.TYPE.MATCHES}','.*','This macro is used in filesystems discovery. Can be overridden on the host or linked template level. Value should be integer: 2 - flexibleVolume, 3 - aggregate, 4 - stripedAggregate, 5 - stripedVolume.','0','0'), ('1860','10378','{$FAS3220.FS.TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in filesystems discovery. Can be overridden on the host or linked template level. Value should be integer: 2 - flexibleVolume, 3 - aggregate, 4 - stripedAggregate, 5 - stripedVolume.','0','0'), ('1861','10378','{$FAS3220.FS.USE.PCT}','1','Macro define what threshold will be used for disk space trigger: 0 - use Bytes ({$FAS3220.FS.AVAIL.MIN.CRIT}) 1 - use percents ({$FAS3220.FS.PUSED.MAX.CRIT}) Can be used with {#FSNAME} as context.','0','0'), ('1862','10378','{$FAS3220.NET.PORT.NAME.MATCHES}','.*','This macro is used in net ports discovery. Can be overridden on the host or linked template level.','0','0'), ('1863','10378','{$FAS3220.NET.PORT.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in net ports discovery. Can be overridden on the host or linked template level.','0','0'), ('1864','10378','{$FAS3220.NET.PORT.ROLE.MATCHES}','.*','This macro is used in net ports discovery. Can be overridden on the host or linked template level. {#ROLE} is integer. Possible values: 0 - undef 1 - cluster 2 - data 3 - node-mgmt 4 - intercluster 5 - cluster-mgmt','0','0'), ('1865','10378','{$FAS3220.NET.PORT.ROLE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in net ports discovery. Can be overridden on the host or linked template level. {#ROLE} is integer. Possible values: 0 - undef 1 - cluster 2 - data 3 - node-mgmt 4 - intercluster 5 - cluster-mgmt','0','0'), ('1866','10378','{$FAS3220.NET.PORT.TYPE.MATCHES}','.*','This macro is used in net ports discovery. Can be overridden on the host or linked template level. {#TYPE} is integer. Possible values: physical, if-group, vlan, undef.','0','0'), ('1867','10378','{$FAS3220.NET.PORT.TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in net ports discovery. Can be overridden on the host or linked template level. {#TYPE} is integer. Possible values: physical, if-group, vlan, undef.','0','0'), ('1868','10378','{$IF.ERRORS.WARN}','','','0','0'), ('1869','10378','{$IF.UTIL.MAX}','95','','0','0'), ('1870','10379','{$JENKINS.API.KEY}','','API key to access Metrics Servlet','0','0'), ('1871','10379','{$JENKINS.API.TOKEN}','','API token for HTTP BASIC authentication.','0','0'), ('1872','10379','{$JENKINS.FILE_DESCRIPTORS.MAX.WARN}','85','Maximum percentage of file descriptors usage alert threshold (for trigger expression).','0','0'), ('1873','10379','{$JENKINS.JOB.HEALTH.SCORE.MIN.WARN}','50','Minimum job''s health score (for trigger expression).','0','0'), ('1874','10379','{$JENKINS.PING.REPLY}','pong','Expected reply to the ping.','0','0'), ('1875','10379','{$JENKINS.URL}','','Jenkins URL in the format `://:`','0','0'), ('1876','10379','{$JENKINS.USER}','zabbix','Username for HTTP BASIC authentication','0','0'), ('1877','10380','{$CPU.UTIL.CRIT}','90','','0','0'), ('1878','10380','{$HIKVISION_ISAPI_PORT}','80','ISAPI port on device','0','0'), ('1879','10380','{$HIKVISION_MAIN_CHANNEL_ID}','101','Main video stream ID','0','0'), ('1880','10380','{$HIKVISION_STREAM_HEIGHT}','1080','Main video stream image height','0','0'), ('1881','10380','{$HIKVISION_STREAM_WIDTH}','1920','Main video stream image width','0','0'), ('1882','10380','{$MEMORY.UTIL.MAX}','95','','0','0'), ('1883','10380','{$PASSWORD}','','','1','0'), ('1884','10380','{$USER}','admin','','0','0'), ('1885','10381','{$IGNITE.CHECKPOINT.PUSED.MAX.HIGH}','80','The maximum percent of checkpoint buffer utilization for high trigger expression.','0','0'), ('1886','10381','{$IGNITE.CHECKPOINT.PUSED.MAX.WARN}','66','The maximum percent of checkpoint buffer utilization for warning trigger expression.','0','0'), ('1887','10381','{$IGNITE.DATA.REGION.PUSED.MAX.HIGH}','90','The maximum percent of data region utilization for high trigger expression.','0','0'), ('1888','10381','{$IGNITE.DATA.REGION.PUSED.MAX.WARN}','80','The maximum percent of data region utilization for warning trigger expression.','0','0'), ('1889','10381','{$IGNITE.JOBS.QUEUE.MAX.WARN}','10','The maximum number of queued jobs for trigger expression.','0','0'), ('1890','10381','{$IGNITE.LLD.FILTER.CACHE.MATCHES}','.*','Filter of discoverable cache groups.','0','0'), ('1891','10381','{$IGNITE.LLD.FILTER.CACHE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered cache groups.','0','0'), ('1892','10381','{$IGNITE.LLD.FILTER.DATA.REGION.MATCHES}','.*','Filter of discoverable data regions.','0','0'), ('1893','10381','{$IGNITE.LLD.FILTER.DATA.REGION.NOT_MATCHES}','^(sysMemPlc|TxLog)$','Filter to exclude discovered data regions.','0','0'), ('1894','10381','{$IGNITE.LLD.FILTER.THREAD.POOL.MATCHES}','.*','Filter of discoverable thread pools.','0','0'), ('1895','10381','{$IGNITE.LLD.FILTER.THREAD.POOL.NOT_MATCHES}','^(GridCallbackExecutor|GridRebalanceStripedExecutor|GridDataStreamExecutor|StripedExecutor)$','Filter to exclude discovered thread pools.','0','0'), ('1896','10381','{$IGNITE.PASSWORD}','','','0','0'), ('1897','10381','{$IGNITE.PME.DURATION.MAX.HIGH}','60000','The maximum PME duration in ms for high trigger expression.','0','0'), ('1898','10381','{$IGNITE.PME.DURATION.MAX.WARN}','10000','The maximum PME duration in ms for warning trigger expression.','0','0'), ('1899','10381','{$IGNITE.THREAD.QUEUE.MAX.WARN}','1000','Threshold for thread pool queue size. Can be used with thread pool name as context.','0','0'), ('1900','10381','{$IGNITE.THREADS.COUNT.MAX.WARN}','1000','The maximum number of running threads for trigger expression.','0','0'), ('1901','10381','{$IGNITE.USER}','zabbix','','0','0'), ('1902','10382','{$SHAREPOINT.GET_INTERVAL}','1m','','0','0'), ('1903','10382','{$SHAREPOINT.LLD.FILTER.FULL_PATH.MATCHES}','^/','Filter of discoverable dictionaries by full path.','0','0'), ('1904','10382','{$SHAREPOINT.LLD.FILTER.FULL_PATH.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered dictionaries by full path.','0','0'), ('1905','10382','{$SHAREPOINT.LLD.FILTER.NAME.MATCHES}','.*','Filter of discoverable dictionaries by name.','0','0'), ('1906','10382','{$SHAREPOINT.LLD.FILTER.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered dictionaries by name.','0','0'), ('1907','10382','{$SHAREPOINT.LLD.FILTER.TYPE.MATCHES}','FOLDER','Filter of discoverable types.','0','0'), ('1908','10382','{$SHAREPOINT.LLD.FILTER.TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered types.','0','0'), ('1909','10382','{$SHAREPOINT.LLD_INTERVAL}','3h','','0','0'), ('1911','10382','{$SHAREPOINT.PASSWORD}','','','1','0'), ('1912','10382','{$SHAREPOINT.ROOT}','/Shared Documents','','0','0'), ('1913','10382','{$SHAREPOINT.URL}','','Portal page URL. For example http://sharepoint.companyname.local/','0','0'), ('1914','10382','{$SHAREPOINT.USER}','','','0','0'), ('1923','10385','{$CPU.UTIL.CRIT}','90','The critical threshold of the CPU utilization expressed in %.','0','0'), ('1924','10385','{$HUAWEI.5300.DISK.TEMP.MAX.TIME}','5m','The time during which temperature of disk may exceed the threshold.','0','0'), ('1925','10385','{$HUAWEI.5300.DISK.TEMP.MAX.WARN}','45','Maximum temperature of disk. Can be used with {#MODEL} as context.','0','0'), ('1926','10385','{$HUAWEI.5300.LUN.IO.TIME.MAX.TIME}','5m','The time during which average I/O response time of LUN may exceed the threshold.','0','0'), ('1927','10385','{$HUAWEI.5300.LUN.IO.TIME.MAX.WARN}','100','Maximum average I/O response time of LUN in milliseconds.','0','0'), ('1928','10385','{$HUAWEI.5300.MEM.MAX.TIME}','5m','The time during which memory usage may exceed the threshold.','0','0'), ('1929','10385','{$HUAWEI.5300.MEM.MAX.WARN}','90','Maximum percentage of memory used','0','0'), ('1930','10385','{$HUAWEI.5300.NODE.IO.DELAY.MAX.TIME}','5m','The time during which average I/O latency of node may exceed the threshold.','0','0'), ('1931','10385','{$HUAWEI.5300.NODE.IO.DELAY.MAX.WARN}','20','Maximum average I/O latency of node in milliseconds.','0','0'), ('1932','10385','{$HUAWEI.5300.POOL.CAPACITY.THRESH.TIME}','5m','The time during which free capacity may exceed the {#THRESHOLD} from hwInfoStoragePoolFullThreshold.','0','0'), ('1933','10385','{$HUAWEI.5300.TEMP.MAX.TIME}','3m','The time during which temperature of enclosure may exceed the threshold.','0','0'), ('1934','10385','{$HUAWEI.5300.TEMP.MAX.WARN}','35','Maximum temperature of enclosure','0','0'), ('1935','10386','{$MONGODB.CONNS.PCT.USED.MAX.WARN}','80','Maximum percentage of used connections','0','0'), ('1936','10386','{$MONGODB.CONNSTRING}','tcp://localhost:27017','Connection string in the URI format (password is not used). This param overwrites a value configured in the "Server" option of the configuration file (if it''s set), otherwise, the plugin''s default value is used: "tcp://localhost:27017"','0','0'), ('1937','10386','{$MONGODB.CURSOR.OPEN.MAX.WARN}','10000','Maximum number of open cursors','0','0'), ('1938','10386','{$MONGODB.CURSOR.TIMEOUT.MAX.WARN}','1','Maximum number of cursors timing out per second','0','0'), ('1939','10386','{$MONGODB.LLD.FILTER.COLLECTION.MATCHES}','.*','Filter of discoverable collections','0','0'), ('1940','10386','{$MONGODB.LLD.FILTER.COLLECTION.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered collections','0','0'), ('1941','10386','{$MONGODB.LLD.FILTER.DB.MATCHES}','.*','Filter of discoverable databases','0','0'), ('1942','10386','{$MONGODB.LLD.FILTER.DB.NOT_MATCHES}','(admin|config|local)','Filter to exclude discovered databases','0','0'), ('1943','10386','{$MONGODB.PASSWORD}','','MongoDB user password','0','0'), ('1944','10386','{$MONGODB.REPL.LAG.MAX.WARN}','10s','Maximum replication lag in seconds','0','0'), ('1945','10386','{$MONGODB.USER}','','MongoDB username','0','0'), ('1946','10386','{$MONGODB.WIRED_TIGER.TICKETS.AVAILABLE.MIN.WARN}','5','Minimum number of available WiredTiger read or write tickets remaining','0','0'), ('1947','10387','{$MONGODB.CONNS.AVAILABLE.MIN.WARN}','1000','Minimum number of available connections','0','0'), ('1948','10387','{$MONGODB.CONNSTRING}','tcp://localhost:27017','Connection string in the URI format (password is not used). This param overwrites a value configured in the "Server" option of the configuration file (if it''s set), otherwise, the plugin''s default value is used: "tcp://localhost:27017"','0','0'), ('1949','10387','{$MONGODB.CURSOR.OPEN.MAX.WARN}','10000','Maximum number of open cursors','0','0'), ('1950','10387','{$MONGODB.CURSOR.TIMEOUT.MAX.WARN}','1','Maximum number of cursors timing out per second','0','0'), ('1951','10387','{$MONGODB.LLD.FILTER.COLLECTION.MATCHES}','.*','Filter of discoverable collections','0','0'), ('1952','10387','{$MONGODB.LLD.FILTER.COLLECTION.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered collections','0','0'), ('1953','10387','{$MONGODB.LLD.FILTER.DB.MATCHES}','.*','Filter of discoverable databases','0','0'), ('1954','10387','{$MONGODB.LLD.FILTER.DB.NOT_MATCHES}','(admin|config|local)','Filter to exclude discovered databases','0','0'), ('1955','10387','{$MONGODB.PASSWORD}','','MongoDB user password','0','0'), ('1956','10387','{$MONGODB.USER}','','MongoDB username','0','0'), ('1957','10388','{$MONGODB.CONNSTRING}','{#MONGOD_URI}','Connection string in the URI format (password is not used).','0','0'), ('1958','10389','{$MONGODB.CONNSTRING}','{#MONGOD_URI}','Connection string in the URI format (password is not used).','0','0'), ('1959','10390','{$CPU.UTIL.CRIT}','90','','0','0'), ('1960','10390','{$ICMP_LOSS_WARN}','20','','0','0'), ('1961','10390','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0','0'), ('1962','10390','{$IF.ERRORS.WARN}','2','','0','0'), ('1963','10390','{$IF.UTIL.MAX}','90','','0','0'), ('1964','10390','{$IFCONTROL}','1','','0','0'), ('1965','10390','{$MEMORY.UTIL.MAX}','90','','0','0'), ('1966','10390','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','','0','0'), ('1967','10390','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0','0'), ('1968','10390','{$NET.IF.IFALIAS.MATCHES}','.*','','0','0'), ('1969','10390','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('1970','10390','{$NET.IF.IFDESCR.MATCHES}','.*','','0','0'), ('1971','10390','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('1972','10390','{$NET.IF.IFNAME.MATCHES}','^.*$','','0','0'), ('1973','10390','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0','0'), ('1974','10390','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0','0'), ('1975','10390','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0','0'), ('1976','10390','{$NET.IF.IFTYPE.MATCHES}','.*','','0','0'), ('1977','10390','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('1978','10390','{$SNMP.TIMEOUT}','5m','','0','0'), ('1979','10390','{$TEMP_CRIT}','60','','0','0'), ('1980','10390','{$TEMP_CRIT_LOW}','5','','0','0'), ('1981','10390','{$TEMP_WARN}','50','','0','0'), ('1982','10391','{$CPU.UTIL.CRIT}','90','','0','0'), ('1983','10391','{$ICMP_LOSS_WARN}','20','','0','0'), ('1984','10391','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0','0'), ('1985','10391','{$IF.ERRORS.WARN}','2','','0','0'), ('1986','10391','{$IF.UTIL.MAX}','90','','0','0'), ('1987','10391','{$IFCONTROL}','1','','0','0'), ('1988','10391','{$MEMORY.UTIL.MAX}','90','','0','0'), ('1989','10391','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','','0','0'), ('1990','10391','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0','0'), ('1991','10391','{$NET.IF.IFALIAS.MATCHES}','.*','','0','0'), ('1992','10391','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('1993','10391','{$NET.IF.IFDESCR.MATCHES}','.*','','0','0'), ('1994','10391','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('1995','10391','{$NET.IF.IFNAME.MATCHES}','^.*$','','0','0'), ('1996','10391','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0','0'), ('1997','10391','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0','0'), ('1998','10391','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0','0'), ('1999','10391','{$NET.IF.IFTYPE.MATCHES}','.*','','0','0'), ('2000','10391','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('2001','10391','{$SNMP.TIMEOUT}','5m','','0','0'), ('2002','10391','{$TEMP_CRIT}','60','','0','0'), ('2003','10391','{$TEMP_CRIT_LOW}','5','','0','0'), ('2004','10391','{$TEMP_WARN}','50','','0','0'), ('2005','10392','{$CPU.UTIL.CRIT}','90','','0','0'), ('2006','10392','{$ICMP_LOSS_WARN}','20','','0','0'), ('2007','10392','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0','0'), ('2008','10392','{$IF.ERRORS.WARN}','2','','0','0'), ('2009','10392','{$IF.UTIL.MAX}','90','','0','0'), ('2010','10392','{$IFCONTROL}','1','','0','0'), ('2011','10392','{$MEMORY.UTIL.MAX}','90','','0','0'), ('2012','10392','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','','0','0'), ('2013','10392','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0','0'), ('2014','10392','{$NET.IF.IFALIAS.MATCHES}','.*','','0','0'), ('2015','10392','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('2016','10392','{$NET.IF.IFDESCR.MATCHES}','.*','','0','0'), ('2017','10392','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('2018','10392','{$NET.IF.IFNAME.MATCHES}','^.*$','','0','0'), ('2019','10392','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0','0'), ('2020','10392','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0','0'), ('2021','10392','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0','0'), ('2022','10392','{$NET.IF.IFTYPE.MATCHES}','.*','','0','0'), ('2023','10392','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('2024','10392','{$SNMP.TIMEOUT}','5m','','0','0'), ('2025','10392','{$TEMP_CRIT}','60','','0','0'), ('2026','10392','{$TEMP_CRIT_LOW}','5','','0','0'), ('2027','10392','{$TEMP_WARN}','50','','0','0'), ('2028','10393','{$CPU.UTIL.CRIT}','90','','0','0'), ('2029','10393','{$ICMP_LOSS_WARN}','20','','0','0'), ('2030','10393','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0','0'), ('2031','10393','{$IF.ERRORS.WARN}','2','','0','0'), ('2032','10393','{$IF.UTIL.MAX}','90','','0','0'), ('2033','10393','{$IFCONTROL}','1','','0','0'), ('2034','10393','{$MEMORY.UTIL.MAX}','90','','0','0'), ('2035','10393','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','','0','0'), ('2036','10393','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0','0'), ('2037','10393','{$NET.IF.IFALIAS.MATCHES}','.*','','0','0'), ('2038','10393','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('2039','10393','{$NET.IF.IFDESCR.MATCHES}','.*','','0','0'), ('2040','10393','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('2041','10393','{$NET.IF.IFNAME.MATCHES}','^.*$','','0','0'), ('2042','10393','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0','0'), ('2043','10393','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0','0'), ('2044','10393','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0','0'), ('2045','10393','{$NET.IF.IFTYPE.MATCHES}','.*','','0','0'), ('2046','10393','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('2047','10393','{$SNMP.TIMEOUT}','5m','','0','0'), ('2048','10393','{$TEMP_CRIT}','60','','0','0'), ('2049','10393','{$TEMP_CRIT_LOW}','5','','0','0'), ('2050','10393','{$TEMP_WARN}','50','','0','0'), ('2051','10394','{$CPU.UTIL.CRIT}','90','','0','0'), ('2052','10394','{$ICMP_LOSS_WARN}','20','','0','0'), ('2053','10394','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0','0'), ('2054','10394','{$IF.ERRORS.WARN}','2','','0','0'), ('2055','10394','{$IF.UTIL.MAX}','90','','0','0'), ('2056','10394','{$IFCONTROL}','1','','0','0'), ('2057','10394','{$MEMORY.UTIL.MAX}','90','','0','0'), ('2058','10394','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','','0','0'), ('2059','10394','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0','0'), ('2060','10394','{$NET.IF.IFALIAS.MATCHES}','.*','','0','0'), ('2061','10394','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('2062','10394','{$NET.IF.IFDESCR.MATCHES}','.*','','0','0'), ('2063','10394','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('2064','10394','{$NET.IF.IFNAME.MATCHES}','^.*$','','0','0'), ('2065','10394','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0','0'), ('2066','10394','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0','0'), ('2067','10394','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0','0'), ('2068','10394','{$NET.IF.IFTYPE.MATCHES}','.*','','0','0'), ('2069','10394','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('2070','10394','{$SNMP.TIMEOUT}','5m','','0','0'), ('2071','10394','{$TEMP_CRIT}','60','','0','0'), ('2072','10394','{$TEMP_CRIT_LOW}','5','','0','0'), ('2073','10394','{$TEMP_WARN}','50','','0','0'), ('2074','10251','{$CPU.UTIL.CRIT}','90','','0','0'), ('2076','10251','{$ICMP.LOSS.WARN}','20','','0','0'), ('2077','10251','{$ICMP.RESPONSE_TIME.WARN}','0.15','','0','0'), ('2080','10251','{$IFCONTROL}','1','','0','0'), ('2081','10251','{$MEMORY.NAME.MATCHES}','.*','This macro is used in memory discovery. Can be overridden on the host level.','0','0'), ('2082','10251','{$MEMORY.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in memory discovery. Can be overridden on the host level if you need to filter out results.','0','0'), ('2083','10251','{$MEMORY.TYPE.MATCHES}',E'.*(\\.2|hrStorageRam)$','This macro is used in memory discovery. Can be overridden on the host level.','0','0'), ('2084','10251','{$MEMORY.TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in memory discovery. Can be overridden on the host level if you need to filter out results.','0','0'), ('2085','10251','{$MEMORY.UTIL.MAX}','90','The warning threshold of the "Physical memory: Memory utilization" item.','0','0'), ('2086','10251','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','','0','0'), ('2087','10251','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status.','0','0'), ('2088','10251','{$NET.IF.IFALIAS.MATCHES}','.*','','0','0'), ('2089','10251','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('2090','10251','{$NET.IF.IFDESCR.MATCHES}','.*','','0','0'), ('2091','10251','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('2092','10251','{$NET.IF.IFNAME.MATCHES}','^.*$','','0','0'), ('2093','10251','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default.','0','0'), ('2094','10251','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0','0'), ('2095','10251','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6).','0','0'), ('2096','10251','{$NET.IF.IFTYPE.MATCHES}','.*','','0','0'), ('2097','10251','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('2098','10251','{$PSU.STATUS.CRIT}','2','The critical value of the PSU sensor for trigger expression.','0','0'), ('2099','10251','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0','0'), ('2100','10251','{$TEMP.MAX.CRIT}','60','The temperature maximum critical value for trigger expression.','0','0'), ('2101','10251','{$TEMP.MAX.WARN}','50','The temperature maximum warning value for trigger expression.','0','0'), ('2102','10251','{$TEMP.MIN.CRIT}','5','The temperature minimum critical value for trigger expression.','0','0'), ('2103','10251','{$TEMP.STATUS.WARN}','3','The critical value of the TEMP sensor for trigger expression.','0','0'), ('2104','10251','{$VFS.FS.FSNAME.MATCHES}','.+','This macro is used in filesystems discovery. Can be overridden on the host level.','0','0'), ('2105','10251','{$VFS.FS.FSNAME.NOT_MATCHES}','^(/dev|/sys|/$|/run|/proc|.+/shm$)','This macro is used in filesystems discovery. Can be overridden on the host level.','0','0'), ('2106','10251','{$VFS.FS.FSTYPE.MATCHES}',E'.*(\\.4|\\.9|hrStorageFixedDisk|hrStorageFlashMemory)$','This macro is used in filesystems discovery. Can be overridden on the host level.','0','0'), ('2107','10251','{$VFS.FS.FSTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in filesystems discovery. Can be overridden on the host level.','0','0'), ('2110','10395','{$BATTERY.TEMP.MAX.WARN}','55','Maximum battery temperature for trigger expression.','0','0'), ('2113','10395','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0','0'), ('2114','10395','{$TIME.PERIOD}','15m','Time period for trigger expression.','0','0'), ('2115','10395','{$UPS.INPUT_FREQ.MAX.WARN}','50.3','Maximum input frequency for trigger expression.','0','0'), ('2116','10395','{$UPS.INPUT_FREQ.MIN.WARN}','49.7','Minimum input frequency for trigger expression.','0','0'), ('2117','10395','{$UPS.INPUT_VOLT.MAX.WARN}','243','Maximum input voltage for trigger expression.','0','0'), ('2118','10395','{$UPS.INPUT_VOLT.MIN.WARN}','197','Minimum input voltage for trigger expression.','0','0'), ('2119','10395','{$UPS.OUTPUT.MAX.WARN}','80','Maximum output load in % for trigger expression.','0','0'), ('2120','10396','{$HTTP.AGENT.TIMEOUT}','5s','The HTTP agent timeout to wait for a response from AFF700.','0','0'), ('2121','10396','{$PASSWORD}','','AFF700 user password.','0','0'), ('2122','10396','{$URL}','','AFF700 cluster URL address.','0','0'), ('2123','10396','{$USERNAME}','','AFF700 user name.','0','0'), ('2124','10327','{$MSSQL.BACKUP_DIFF.CRIT}','6d','The maximum of days without a differential backup - for the High trigger expression.','0','0'), ('2125','10327','{$MSSQL.BACKUP_DIFF.WARN}','3d','The maximum of days without a differential backup - for the Warning trigger expression.','0','0'), ('2127','10327','{$MSSQL.BACKUP_FULL.CRIT}','10d','The maximum of days without a full backup - for the High trigger expression.','0','0'), ('2128','10327','{$MSSQL.BACKUP_FULL.WARN}','9d','The maximum of days without a full backup - for the Warning trigger expression.','0','0'), ('2129','10327','{$MSSQL.BACKUP_LOG.CRIT}','8h','The maximum of days without a log backup - for the High trigger expression.','0','0'), ('2130','10327','{$MSSQL.BACKUP_LOG.WARN}','4h','The maximum of days without a log backup - for the Warning trigger expression.','0','0'), ('2131','10327','{$MSSQL.JOB.MATCHES}','.*','This macro is used in job discovery. It can be overridden on the host or linked template level.','0','0'), ('2132','10327','{$MSSQL.JOB.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in job discovery. It can be overridden on the host or linked template level.','0','0'), ('2133','10397','{$PD.MISS_REGION.MAX.WARN}','100','Maximum number of missed regions','0','0'), ('2134','10397','{$PD.PORT}','2379','The port of PD server metrics web endpoint','0','0'), ('2135','10397','{$PD.STORAGE_USAGE.MAX.WARN}','80','Maximum percentage of cluster space used','0','0'), ('2136','10397','{$PD.URL}','localhost','PD server URL','0','0'), ('2137','10398','{$TIDB.DDL.WAITING.MAX.WARN}','5','Maximum number of DDL tasks that are waiting','0','0'), ('2138','10398','{$TIDB.GC_ACTIONS.ERRORS.MAX.WARN}','1','Maximum number of GC-related operations failures','0','0'), ('2139','10398','{$TIDB.HEAP.USAGE.MAX.WARN}','10G','Maximum heap memory used','0','0'), ('2140','10398','{$TIDB.MONITOR_KEEP_ALIVE.MAX.WARN}','10','Minimum number of keep alive operations','0','0'), ('2141','10398','{$TIDB.OPEN.FDS.MAX.WARN}','90','Maximum percentage of used file descriptors','0','0'), ('2142','10398','{$TIDB.PORT}','10080','The port of TiDB server metrics web endpoint','0','0'), ('2143','10398','{$TIDB.REGION_ERROR.MAX.WARN}','50','Maximum number of region related errors','0','0'), ('2144','10398','{$TIDB.SCHEMA_LEASE_ERRORS.MAX.WARN}','0','Maximum number of schema lease errors','0','0'), ('2145','10398','{$TIDB.SCHEMA_LOAD_ERRORS.MAX.WARN}','1','Maximum number of load schema errors','0','0'), ('2146','10398','{$TIDB.TIME_JUMP_BACK.MAX.WARN}','1','Maximum number of times that the operating system rewinds every second','0','0'), ('2147','10398','{$TIDB.URL}','localhost','TiDB server URL','0','0'), ('2149','10399','{$TIKV.PENDING_COMMANDS.MAX.WARN}','1','Maximum number of pending commands','0','0'), ('2150','10399','{$TIKV.PENDING_TASKS.MAX.WARN}','1','Maximum number of tasks currently running by the worker or pending','0','0'), ('2151','10399','{$TIKV.PORT}','20180','The port of TiKV server metrics web endpoint','0','0'), ('2152','10399','{$TIKV.STORE.ERRORS.MAX.WARN}','1','Maximum number of failure messages','0','0'), ('2153','10399','{$TIKV.URL}','localhost','TiKV server URL','0','0'), ('2154','10400','{$BATTERY.CAPACITY.MIN.WARN}','50','Minimum battery capacity percentage for trigger expression.','0','0'), ('2155','10400','{$BATTERY.TEMP.MAX.WARN}','55','Maximum battery temperature for trigger expression.','0','0'), ('2156','10400','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0','0'), ('2157','10400','{$TIME.PERIOD}','15m','Time period for trigger expression.','0','0'), ('2158','10400','{$UPS.INPUT_FREQ.MAX.WARN}','50.3','Maximum input frequency for trigger expression.','0','0'), ('2159','10400','{$UPS.INPUT_FREQ.MIN.WARN}','49.7','Minimum input frequency for trigger expression.','0','0'), ('2160','10400','{$UPS.INPUT_VOLT.MAX.WARN}','243','Maximum input voltage for trigger expression.','0','0'), ('2161','10400','{$UPS.INPUT_VOLT.MIN.WARN}','197','Minimum input voltage for trigger expression.','0','0'), ('2162','10400','{$UPS.OUTPUT.MAX.WARN}','80','Maximum output load in % for trigger expression.','0','0'), ('2163','10401','{$BATTERY.CAPACITY.MIN.WARN}','50','Minimum battery capacity percentage for trigger expression.','0','0'), ('2164','10401','{$BATTERY.TEMP.MAX.WARN}','55','Maximum battery temperature for trigger expression.','0','0'), ('2165','10401','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0','0'), ('2166','10401','{$TIME.PERIOD}','15m','Time period for trigger expression.','0','0'), ('2167','10401','{$UPS.INPUT_FREQ.MAX.WARN}','50.3','Maximum input frequency for trigger expression.','0','0'), ('2168','10401','{$UPS.INPUT_FREQ.MIN.WARN}','49.7','Minimum input frequency for trigger expression.','0','0'), ('2169','10401','{$UPS.INPUT_VOLT.MAX.WARN}','243','Maximum input voltage for trigger expression.','0','0'), ('2170','10401','{$UPS.INPUT_VOLT.MIN.WARN}','197','Minimum input voltage for trigger expression.','0','0'), ('2171','10401','{$UPS.OUTPUT.MAX.WARN}','80','Maximum output load in % for trigger expression.','0','0'), ('2172','10402','{$BATTERY.CAPACITY.MIN.WARN}','50','Minimum battery capacity percentage for trigger expression.','0','0'), ('2173','10402','{$BATTERY.TEMP.MAX.WARN}','55','Maximum battery temperature for trigger expression.','0','0'), ('2174','10402','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0','0'), ('2175','10402','{$TIME.PERIOD}','15m','Time period for trigger expression.','0','0'), ('2176','10402','{$UPS.INPUT_FREQ.MAX.WARN}','50.3','Maximum input frequency for trigger expression.','0','0'), ('2177','10402','{$UPS.INPUT_FREQ.MIN.WARN}','49.7','Minimum input frequency for trigger expression.','0','0'), ('2178','10402','{$UPS.INPUT_VOLT.MAX.WARN}','243','Maximum input voltage for trigger expression.','0','0'), ('2179','10402','{$UPS.INPUT_VOLT.MIN.WARN}','197','Minimum input voltage for trigger expression.','0','0'), ('2180','10402','{$UPS.OUTPUT.MAX.WARN}','80','Maximum output load in % for trigger expression.','0','0'), ('2181','10403','{$BATTERY.CAPACITY.MIN.WARN}','50','Minimum battery capacity percentage for trigger expression.','0','0'), ('2182','10403','{$BATTERY.TEMP.MAX.WARN}','55','Maximum battery temperature for trigger expression.','0','0'), ('2183','10403','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0','0'), ('2184','10403','{$TIME.PERIOD}','15m','Time period for trigger expression.','0','0'), ('2185','10403','{$UPS.INPUT_FREQ.MAX.WARN}','50.3','Maximum input frequency for trigger expression.','0','0'), ('2186','10403','{$UPS.INPUT_FREQ.MIN.WARN}','49.7','Minimum input frequency for trigger expression.','0','0'), ('2187','10403','{$UPS.INPUT_VOLT.MAX.WARN}','243','Maximum input voltage for trigger expression.','0','0'), ('2188','10403','{$UPS.INPUT_VOLT.MIN.WARN}','197','Minimum input voltage for trigger expression.','0','0'), ('2189','10403','{$UPS.OUTPUT.MAX.WARN}','80','Maximum output load in % for trigger expression.','0','0'), ('2190','10404','{$BATTERY.CAPACITY.MIN.WARN}','50','Minimum battery capacity percentage for trigger expression.','0','0'), ('2191','10404','{$BATTERY.TEMP.MAX.WARN}','55','Maximum battery temperature for trigger expression.','0','0'), ('2192','10404','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0','0'), ('2193','10404','{$TIME.PERIOD}','15m','Time period for trigger expression.','0','0'), ('2194','10404','{$UPS.INPUT_FREQ.MAX.WARN}','50.3','Maximum input frequency for trigger expression.','0','0'), ('2195','10404','{$UPS.INPUT_FREQ.MIN.WARN}','49.7','Minimum input frequency for trigger expression.','0','0'), ('2196','10404','{$UPS.INPUT_VOLT.MAX.WARN}','243','Maximum input voltage for trigger expression.','0','0'), ('2197','10404','{$UPS.INPUT_VOLT.MIN.WARN}','197','Minimum input voltage for trigger expression.','0','0'), ('2198','10404','{$UPS.OUTPUT.MAX.WARN}','80','Maximum output load in % for trigger expression.','0','0'), ('2208','10406','{$BATTERY.CAPACITY.MIN.WARN}','50','Minimum battery capacity percentage for trigger expression.','0','0'), ('2209','10406','{$BATTERY.TEMP.MAX.WARN}','55','Maximum battery temperature for trigger expression.','0','0'), ('2210','10406','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0','0'), ('2211','10406','{$TIME.PERIOD}','15m','Time period for trigger expression.','0','0'), ('2212','10406','{$UPS.INPUT_FREQ.MAX.WARN}','50.3','Maximum input frequency for trigger expression.','0','0'), ('2213','10406','{$UPS.INPUT_FREQ.MIN.WARN}','49.7','Minimum input frequency for trigger expression.','0','0'), ('2214','10406','{$UPS.INPUT_VOLT.MAX.WARN}','243','Maximum input voltage for trigger expression.','0','0'), ('2215','10406','{$UPS.INPUT_VOLT.MIN.WARN}','197','Minimum input voltage for trigger expression.','0','0'), ('2216','10406','{$UPS.OUTPUT.MAX.WARN}','80','Maximum output load in % for trigger expression.','0','0'), ('2217','10395','{$BATTERY.CAPACITY.MIN.WARN}','50','Minimum battery capacity percentage for trigger expression.','0','0'), ('2218','10407','{$BATTERY.CAPACITY.MIN.WARN}','50','Minimum battery capacity percentage for trigger expression.','0','0'), ('2219','10407','{$BATTERY.TEMP.MAX.WARN}','55','Maximum battery temperature for trigger expression.','0','0'), ('2220','10407','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0','0'), ('2221','10407','{$TIME.PERIOD}','15m','Time period for trigger expression.','0','0'), ('2222','10407','{$UPS.INPUT_FREQ.MAX.WARN}','50.3','Maximum input frequency for trigger expression.','0','0'), ('2223','10407','{$UPS.INPUT_FREQ.MIN.WARN}','49.7','Minimum input frequency for trigger expression.','0','0'), ('2224','10407','{$UPS.INPUT_VOLT.MAX.WARN}','243','Maximum input voltage for trigger expression.','0','0'), ('2225','10407','{$UPS.INPUT_VOLT.MIN.WARN}','197','Minimum input voltage for trigger expression.','0','0'), ('2226','10407','{$UPS.OUTPUT.MAX.WARN}','80','Maximum output load in % for trigger expression.','0','0'), ('2227','10408','{$BATTERY.CAPACITY.MIN.WARN}','50','Minimum battery capacity percentage for trigger expression.','0','0'), ('2228','10408','{$BATTERY.TEMP.MAX.WARN}','55','Maximum battery temperature for trigger expression.','0','0'), ('2229','10408','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0','0'), ('2230','10408','{$TIME.PERIOD}','15m','Time period for trigger expression.','0','0'), ('2231','10408','{$UPS.INPUT_FREQ.MAX.WARN}','50.3','Maximum input frequency for trigger expression.','0','0'), ('2232','10408','{$UPS.INPUT_FREQ.MIN.WARN}','49.7','Minimum input frequency for trigger expression.','0','0'), ('2233','10408','{$UPS.INPUT_VOLT.MAX.WARN}','243','Maximum input voltage for trigger expression.','0','0'), ('2234','10408','{$UPS.INPUT_VOLT.MIN.WARN}','197','Minimum input voltage for trigger expression.','0','0'), ('2235','10408','{$UPS.OUTPUT.MAX.WARN}','80','Maximum output load in % for trigger expression.','0','0'), ('2236','10409','{$BATTERY.CAPACITY.MIN.WARN}','50','Minimum battery capacity percentage for trigger expression.','0','0'), ('2237','10409','{$BATTERY.TEMP.MAX.WARN}','55','Maximum battery temperature for trigger expression.','0','0'), ('2238','10409','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0','0'), ('2239','10409','{$TIME.PERIOD}','15m','Time period for trigger expression.','0','0'), ('2240','10409','{$UPS.INPUT_FREQ.MAX.WARN}','50.3','Maximum input frequency for trigger expression.','0','0'), ('2241','10409','{$UPS.INPUT_FREQ.MIN.WARN}','49.7','Minimum input frequency for trigger expression.','0','0'), ('2242','10409','{$UPS.INPUT_VOLT.MAX.WARN}','243','Maximum input voltage for trigger expression.','0','0'), ('2243','10409','{$UPS.INPUT_VOLT.MIN.WARN}','197','Minimum input voltage for trigger expression.','0','0'), ('2244','10409','{$UPS.OUTPUT.MAX.WARN}','80','Maximum output load in % for trigger expression.','0','0'), ('2245','10410','{$WILDFLY.DEPLOYMENT.MATCHES}','.*','Filter of discoverable deployments','0','0'), ('2246','10410','{$WILDFLY.DEPLOYMENT.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered deployments','0','0'), ('2247','10410','{$WILDFLY.JMX.PROTOCOL}','remote+http','','0','0'), ('2248','10410','{$WILDFLY.PASSWORD}','zabbix','','0','0'), ('2249','10410','{$WILDFLY.SERVER.MATCHES}','.*','Filter of discoverable servers','0','0'), ('2250','10410','{$WILDFLY.SERVER.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered servers','0','0'), ('2251','10410','{$WILDFLY.USER}','zabbix','','0','0'), ('2252','10411','{$WILDFLY.CONN.USAGE.WARN.MAX}','80','The maximum connection usage percent for trigger expression.','0','0'), ('2253','10411','{$WILDFLY.CONN.WAIT.MAX.WARN}','300','The maximum number of waiting connections for trigger expression.','0','0'), ('2254','10411','{$WILDFLY.DEPLOYMENT.MATCHES}','.*','Filter of discoverable deployments','0','0'), ('2255','10411','{$WILDFLY.DEPLOYMENT.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered deployments','0','0'), ('2256','10411','{$WILDFLY.JMX.PROTOCOL}','remote+http','','0','0'), ('2257','10411','{$WILDFLY.PASSWORD}','zabbix','','0','0'), ('2258','10411','{$WILDFLY.USER}','zabbix','','0','0'), ('2259','10412','{$BATTERY.CAPACITY.MIN.WARN}','50','Minimum battery capacity percentage for trigger expression.','0','0'), ('2260','10412','{$BATTERY.TEMP.MAX.WARN}','55','Maximum battery temperature for trigger expression.','0','0'), ('2261','10412','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0','0'), ('2262','10412','{$TIME.PERIOD}','15m','Time period for trigger expression.','0','0'), ('2263','10412','{$UPS.INPUT_FREQ.MAX.WARN}','50.3','Maximum input frequency for trigger expression.','0','0'), ('2264','10412','{$UPS.INPUT_FREQ.MIN.WARN}','49.7','Minimum input frequency for trigger expression.','0','0'), ('2265','10412','{$UPS.INPUT_VOLT.MAX.WARN}','243','Maximum input voltage for trigger expression.','0','0'), ('2266','10412','{$UPS.INPUT_VOLT.MIN.WARN}','197','Minimum input voltage for trigger expression.','0','0'), ('2267','10412','{$UPS.OUTPUT.MAX.WARN}','80','Maximum output load in % for trigger expression.','0','0'), ('2268','10413','{$CERT.EXPIRY.WARN}','7','Number of days until the certificate expires.','0','0'), ('2269','10413','{$CERT.WEBSITE.HOSTNAME}','','The website DNS name for the connection.','0','0'), ('2270','10413','{$CERT.WEBSITE.IP}','','The website IP address for the connection.','0','0'), ('2271','10413','{$CERT.WEBSITE.PORT}','443','The TLS/SSL port number of the website.','0','0'), ('2272','10414','{$CLOUDFLARE.API.TOKEN}','','Your Cloudflare API Token.','1','0'), ('2273','10414','{$CLOUDFLARE.API.URL}','https://api.cloudflare.com/client/v4','The URL of Cloudflare API endpoint.','0','0'), ('2274','10414','{$CLOUDFLARE.CACHED_BANDWIDTH.MIN.WARN}','50','Minimum of cached bandwidth in %.','0','0'), ('2275','10414','{$CLOUDFLARE.ERRORS.MAX.WARN}','30','Maximum responses with errors in %.','0','0'), ('2277','10414','{$CLOUDFLARE.ZONE_ID}','','Your Cloudflare Site Zone ID.','1','0'), ('2278','10415','{$NGINX.API.ENDPOINT}','','NGINX Plus API URL in the format `://://`.','0','0'), ('2279','10415','{$NGINX.DROP_RATE.MAX.WARN}','1','The critical rate of the dropped connections for a trigger expression.','0','0'), ('2280','10415','{$NGINX.HTTP.UPSTREAM.4XX.MAX.WARN}','5','The maximum percentage of errors with the status code `4xx` (for a trigger expression).','0','0'), ('2281','10415','{$NGINX.HTTP.UPSTREAM.5XX.MAX.WARN}','5','The maximum percentage of errors with the status code `5xx` (for a trigger expression).','0','0'), ('2282','10415','{$NGINX.LLD.FILTER.HTTP.LOCATION.ZONE.MATCHES}','.*','The filter to include the necessary discovered HTTP location zones.','0','0'), ('2283','10415','{$NGINX.LLD.FILTER.HTTP.LOCATION.ZONE.NOT_MATCHES}','CHANGE_IF_NEEDED','The filter to exclude discovered HTTP location zones.','0','0'), ('2284','10415','{$NGINX.LLD.FILTER.HTTP.UPSTREAM.MATCHES}','.*','The filter to include the necessary discovered HTTP upstreams.','0','0'), ('2285','10415','{$NGINX.LLD.FILTER.HTTP.UPSTREAM.NOT_MATCHES}','CHANGE_IF_NEEDED','The filter to exclude discovered HTTP upstreams.','0','0'), ('2286','10415','{$NGINX.LLD.FILTER.HTTP.ZONE.MATCHES}','.*','The filter to include the necessary discovered HTTP server zones.','0','0'), ('2287','10415','{$NGINX.LLD.FILTER.HTTP.ZONE.NOT_MATCHES}','CHANGE_IF_NEEDED','The filter to exclude discovered HTTP server zones.','0','0'), ('2288','10415','{$NGINX.LLD.FILTER.RESOLVER.MATCHES}','.*','The filter to include the necessary discovered `Resolvers`.','0','0'), ('2289','10415','{$NGINX.LLD.FILTER.RESOLVER.NOT_MATCHES}','CHANGE_IF_NEEDED','The filter to exclude discovered `Resolvers`.','0','0'), ('2290','10415','{$NGINX.LLD.FILTER.STREAM.UPSTREAM.MATCHES}','.*','The filter to include the necessary discovered upstreams of the "stream" directive.','0','0'), ('2291','10415','{$NGINX.LLD.FILTER.STREAM.UPSTREAM.NOT_MATCHES}','CHANGE_IF_NEEDED','The filter to exclude discovered upstreams of the "stream" directive','0','0'), ('2292','10415','{$NGINX.LLD.FILTER.STREAM.ZONE.MATCHES}','.*','The filter to include discovered server zones of the "stream" directive.','0','0'), ('2293','10415','{$NGINX.LLD.FILTER.STREAM.ZONE.NOT_MATCHES}','CHANGE_IF_NEEDED','The filter to exclude discovered server zones of the "stream" directive.','0','0'), ('2294','10416','{$SYSTEMD.ACTIVESTATE.SERVICE.MATCHES}','.+','Filter of systemd service units by active state.','0','0'), ('2295','10416','{$SYSTEMD.ACTIVESTATE.SERVICE.NOT_MATCHES}','^inactive$','Filter of systemd service units by active state.','0','0'), ('2296','10416','{$SYSTEMD.ACTIVESTATE.SOCKET.MATCHES}','.+','Filter of systemd socket units by active state.','0','0'), ('2297','10416','{$SYSTEMD.ACTIVESTATE.SOCKET.NOT_MATCHES}','^inactive$','Filter of systemd socket units by active state.','0','0'), ('2298','10416','{$SYSTEMD.NAME.SERVICE.MATCHES}','.+','Filter of systemd service units by name.','0','0'), ('2299','10416','{$SYSTEMD.NAME.SERVICE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter of systemd service units by name.','0','0'), ('2300','10416','{$SYSTEMD.NAME.SOCKET.MATCHES}','.+','Filter of systemd socket units by name.','0','0'), ('2301','10416','{$SYSTEMD.NAME.SOCKET.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter of systemd socket units by name.','0','0'), ('2302','10416','{$SYSTEMD.UNITFILESTATE.SERVICE.MATCHES}','^enabled$','Filter of systemd service units by unit file state.','0','0'), ('2303','10416','{$SYSTEMD.UNITFILESTATE.SERVICE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter of systemd service units by unit file state.','0','0'), ('2304','10416','{$SYSTEMD.UNITFILESTATE.SOCKET.MATCHES}','^enabled$','Filter of systemd socket units by unit file state.','0','0'), ('2305','10416','{$SYSTEMD.UNITFILESTATE.SOCKET.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter of systemd socket units by unit file state.','0','0'), ('2306','10417','{$GRIDGAIN.CHECKPOINT.PUSED.MAX.HIGH}','80','The maximum percent of checkpoint buffer utilization for high trigger expression.','0','0'), ('2307','10417','{$GRIDGAIN.CHECKPOINT.PUSED.MAX.WARN}','66','The maximum percent of checkpoint buffer utilization for warning trigger expression.','0','0'), ('2308','10417','{$GRIDGAIN.DATA.REGION.PUSED.MAX.HIGH}','90','The maximum percent of data region utilization for high trigger expression.','0','0'), ('2309','10417','{$GRIDGAIN.DATA.REGION.PUSED.MAX.WARN}','80','The maximum percent of data region utilization for warning trigger expression.','0','0'), ('2310','10417','{$GRIDGAIN.JOBS.QUEUE.MAX.WARN}','10','The maximum number of queued jobs for trigger expression.','0','0'), ('2311','10417','{$GRIDGAIN.LLD.FILTER.CACHE.MATCHES}','.*','Filter of discoverable cache groups.','0','0'), ('2312','10417','{$GRIDGAIN.LLD.FILTER.CACHE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered cache groups.','0','0'), ('2313','10417','{$GRIDGAIN.LLD.FILTER.DATA.REGION.MATCHES}','.*','Filter of discoverable data regions.','0','0'), ('2314','10417','{$GRIDGAIN.LLD.FILTER.DATA.REGION.NOT_MATCHES}','^(sysMemPlc|TxLog)$','Filter to exclude discovered data regions.','0','0'), ('2315','10417','{$GRIDGAIN.LLD.FILTER.THREAD.POOL.MATCHES}','.*','Filter of discoverable thread pools.','0','0'), ('2316','10417','{$GRIDGAIN.LLD.FILTER.THREAD.POOL.NOT_MATCHES}','^(GridCallbackExecutor|GridRebalanceStripedExecutor|GridDataStreamExecutor|StripedExecutor)$','Filter to exclude discovered thread pools.','0','0'), ('2317','10417','{$GRIDGAIN.PASSWORD}','','','0','0'), ('2318','10417','{$GRIDGAIN.PME.DURATION.MAX.HIGH}','60000','The maximum PME duration in ms for high trigger expression.','0','0'), ('2319','10417','{$GRIDGAIN.PME.DURATION.MAX.WARN}','10000','The maximum PME duration in ms for warning trigger expression.','0','0'), ('2320','10417','{$GRIDGAIN.THREAD.QUEUE.MAX.WARN}','1000','Threshold for thread pool queue size. Can be used with thread pool name as context.','0','0'), ('2321','10417','{$GRIDGAIN.THREADS.COUNT.MAX.WARN}','1000','The maximum number of running threads for trigger expression.','0','0'), ('2322','10417','{$GRIDGAIN.USER}','zabbix','','0','0'), ('2323','10418','{$CISCO.LLD.FILTER.IF.ADMIN.MATCHES}','1','Filter of discoverable interfaces by admin status. 1 - Up 2 - Down 3 - Testing','0','0'), ('2324','10418','{$CISCO.LLD.FILTER.IF.ADMIN.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered interfaces by admin status.','0','0'), ('2325','10418','{$CISCO.LLD.FILTER.IF.CONTROL.MATCHES}','.*','Filter triggers by discoverable interface names. Used in overrides. Triggers will only be created for interfaces whose names contain the value of the macro.','0','0'), ('2326','10418','{$CISCO.LLD.FILTER.IF.DESC.MATCHES}','.*','Filter by discoverable interface description.','0','0'), ('2327','10418','{$CISCO.LLD.FILTER.IF.DESC.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered interfaces by description.','0','0'), ('2328','10418','{$CISCO.LLD.FILTER.IF.NAME.MATCHES}','.*','Filter by discoverable interface names.','0','0'), ('2329','10418','{$CISCO.LLD.FILTER.IF.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered interfaces by name.','0','0'), ('2330','10418','{$CPU.UTIL.CRIT}','90','','0','0'), ('2331','10418','{$MEMORY.UTIL.MAX}','90','','0','0'), ('2332','10418','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0','0'), ('2333','10419','{$BIGIP.CERT.MIN}','7','Minimum number of days before certificate expiration.','0','0'), ('2334','10419','{$BIGIP.CPU.UTIL.WARN.MAX}','85','The warning threshold of the CPU utilization expressed in %.','0','0'), ('2335','10419','{$BIGIP.CPU.UTIL.WARN.MIN}','65','The recovery threshold of the CPU utilization expressed in %.','0','0'), ('2336','10419','{$BIGIP.FS.FREE.WARN.MAX}','20','The recovery threshold of the file system utilization in %.','0','0'), ('2337','10419','{$BIGIP.FS.FREE.WARN.MIN}','10','The warning threshold of the file system utilization in %.','0','0'), ('2338','10419','{$BIGIP.LLD.FILTER.PART.NAME.MATCHES}','.*','Filter of discoverable mount point names.','0','0'), ('2339','10419','{$BIGIP.LLD.FILTER.PART.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by mount point names.','0','0'), ('2340','10419','{$BIGIP.MEMORY.UTIL.WARN.MAX}','85','The warning threshold of the memory utilization in %.','0','0'), ('2341','10419','{$BIGIP.MEMORY.UTIL.WARN.MIN}','65','The recovery threshold of the memory utilization in %.','0','0'), ('2342','10419','{$BIGIP.SWAP.UTIL.WARN.MAX}','85','The warning threshold of the swap utilization in %.','0','0'), ('2343','10419','{$BIGIP.SWAP.UTIL.WARN.MIN}','65','The recovery threshold of the swap utilization in %.','0','0'), ('2344','10419','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0','0'), ('2345','10420','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0','0'), ('2346','10420','{$ZYXEL.ADSL.ATN.MAX}','40','Type the maximum signal attenuation','0','0'), ('2347','10420','{$ZYXEL.ADSL.SNR.MIN}','8','Type the minimum signal to noise margin (0-31 dB)','0','0'), ('2348','10420','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}','CHANGE_IF_NEEDED','Triggers will be created only for interfaces whose description contains the value of this macro','0','0'), ('2349','10420','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.MATCHES}','.*','Filter of discoverable link types.','0','0'), ('2350','10420','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.NOT_MATCHES}','2','Filter to exclude discovered by link types.','0','0'), ('2351','10421','{$CPU.UTIL.CRIT}','90','','0','0'), ('2352','10421','{$MEMORY.UTIL.MAX}','90','','0','0'), ('2353','10421','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0','0'), ('2354','10421','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}','CHANGE_IF_NEEDED','Triggers will be created only for interfaces whose description contains the value of this macro','0','0'), ('2355','10421','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}','1|2','Filter of discoverable link types. 0 - Down link 1 - Cooper link 2 - Fiber link','0','0'), ('2356','10421','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by link types.','0','0'), ('2357','10421','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}','.*','Filter by discoverable interface names.','0','0'), ('2358','10421','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered interfaces by name.','0','0'), ('2359','10421','{$ZYXEL.LLD.FILTER.SFP.STATUS.MATCHES}','1|2','Filter of discoverable status. 0 - OK with DDM 1 - OK without DDM 2 - nonoperational','0','0'), ('2360','10421','{$ZYXEL.LLD.FILTER.SFP.STATUS.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by status.','0','0'), ('2361','10421','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.MATCHES}','.*','Filter by discoverable SFP modules name.','0','0'), ('2362','10421','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.NOT_MATCHES}','N/A','Filter to exclude discovered SFP modules by name.','0','0'), ('2363','10421','{$ZYXEL.LLD.SFP.UPDATE}','10m','Receiving data from the SFP module is slow, we do not recommend setting the interval less than 10 minutes.','0','0'), ('2364','10422','{$CPU.UTIL.CRIT}','90','','0','0'), ('2365','10422','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0','0'), ('2366','10422','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}','CHANGE_IF_NEEDED','Triggers will be created only for interfaces whose description contains the value of this macro','0','0'), ('2367','10422','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}','1|2','Filter of discoverable link types. 0 - Down link 1 - Cooper link 2 - Fiber link','0','0'), ('2368','10422','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by link types.','0','0'), ('2369','10422','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}','.*','Filter by discoverable interface names.','0','0'), ('2370','10422','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered interfaces by name.','0','0'), ('2371','10423','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0','0'), ('2372','10423','{$ZYXEL.ADSL.ATN.MAX}','40','Type the maximum signal attenuation','0','0'), ('2373','10423','{$ZYXEL.ADSL.SNR.MIN}','8','Type the minimum signal to noise margin (0-31 dB)','0','0'), ('2374','10423','{$ZYXEL.LLD.FILTER.SLOT.STATUS.NOT_MATCHES}','1','Filter to exclude discovered slots by status.','0','0'), ('2375','10423','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}','CHANGE_IF_NEEDED','Triggers will be created only for interfaces whose description contains the value of this macro','0','0'), ('2376','10423','{$ZYXEL.LLD.FILTER.IF.DESC.MATCHES}','.*','Filter by discoverable interface names.','0','0'), ('2377','10423','{$ZYXEL.LLD.FILTER.IF.DESC.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered interfaces by name.','0','0'), ('2378','10423','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.MATCHES}','.*','Filter of discoverable link types.','0','0'), ('2379','10423','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.NOT_MATCHES}','2','Filter to exclude discovered by link types.','0','0'), ('2380','10423','{$ZYXEL.LLD.FILTER.SLOT.STATUS.MATCHES}','.*','Filter by discoverable slot status.','0','0'), ('2381','10424','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0','0'), ('2382','10424','{$ZYXEL.ADSL.ATN.MAX}','40','Type the maximum signal attenuation','0','0'), ('2383','10424','{$ZYXEL.ADSL.SNR.MIN}','8','Type the minimum signal to noise margin (0-31 dB)','0','0'), ('2384','10424','{$ZYXEL.LLD.FILTER.SLOT.STATUS.NOT_MATCHES}','1','Filter to exclude discovered slots by status.','0','0'), ('2385','10424','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}','CHANGE_IF_NEEDED','Triggers will be created only for interfaces whose description contains the value of this macro','0','0'), ('2386','10424','{$ZYXEL.LLD.FILTER.IF.DESC.MATCHES}','.*','Filter by discoverable interface names.','0','0'), ('2387','10424','{$ZYXEL.LLD.FILTER.IF.DESC.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered interfaces by name.','0','0'), ('2388','10424','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.MATCHES}','.*','Filter of discoverable link types.','0','0'), ('2389','10424','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.NOT_MATCHES}','2','Filter to exclude discovered by link types.','0','0'), ('2390','10424','{$ZYXEL.LLD.FILTER.SLOT.STATUS.MATCHES}','.*','Filter by discoverable slot status.','0','0'), ('2391','10425','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0','0'), ('2392','10425','{$ZYXEL.ADSL.ATN.MAX}','40','Type the maximum signal attenuation','0','0'), ('2393','10425','{$ZYXEL.ADSL.SNR.MIN}','8','Type the minimum signal to noise margin (0-31 dB)','0','0'), ('2394','10425','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}','CHANGE_IF_NEEDED','Triggers will be created only for interfaces whose description contains the value of this macro','0','0'), ('2395','10425','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.MATCHES}','.*','Filter of discoverable link types.','0','0'), ('2396','10425','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.NOT_MATCHES}','2','Filter to exclude discovered by link types.','0','0'), ('2397','10426','{$CPU.UTIL.CRIT}','90','','0','0'), ('2398','10426','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0','0'), ('2399','10426','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}','CHANGE_IF_NEEDED','Triggers will be created only for interfaces whose description contains the value of this macro','0','0'), ('2400','10426','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}','1|2','Filter of discoverable link types. 0 - Down link 1 - Cooper link 2 - Fiber link','0','0'), ('2401','10426','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by link types.','0','0'), ('2402','10426','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}','.*','Filter by discoverable interface names.','0','0'), ('2403','10426','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered interfaces by name.','0','0'), ('2404','10426','{$ZYXEL.LLD.FILTER.SFP.STATUS.MATCHES}','1|2','Filter of discoverable status. 0 - OK with DDM 1 - OK without DDM 2 - nonoperational','0','0'), ('2405','10426','{$ZYXEL.LLD.FILTER.SFP.STATUS.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by status.','0','0'), ('2406','10426','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.MATCHES}','.*','Filter by discoverable SFP modules name.','0','0'), ('2407','10426','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.NOT_MATCHES}','N/A','Filter to exclude discovered SFP modules by name.','0','0'), ('2408','10426','{$ZYXEL.LLD.SFP.UPDATE}','10m','Receiving data from the SFP module is slow, we do not recommend setting the interval less than 10 minutes.','0','0'), ('2409','10427','{$CPU.UTIL.CRIT}','90','','0','0'), ('2410','10427','{$MEMORY.UTIL.MAX}','90','','0','0'), ('2411','10427','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0','0'), ('2412','10427','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}','CHANGE_IF_NEEDED','Triggers will be created only for interfaces whose description contains the value of this macro','0','0'), ('2413','10427','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}','1|2','Filter of discoverable link types. 0 - Down link 1 - Cooper link 2 - Fiber link','0','0'), ('2414','10427','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by link types.','0','0'), ('2415','10427','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}','.*','Filter by discoverable interface names.','0','0'), ('2416','10427','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered interfaces by name.','0','0'), ('2417','10427','{$ZYXEL.LLD.FILTER.SFP.STATUS.MATCHES}','1|2','Filter of discoverable status. 0 - OK with DDM 1 - OK without DDM 2 - nonoperational','0','0'), ('2418','10427','{$ZYXEL.LLD.FILTER.SFP.STATUS.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by status.','0','0'), ('2419','10427','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.MATCHES}','.*','Filter by discoverable SFP modules name.','0','0'), ('2420','10427','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.NOT_MATCHES}','N/A','Filter to exclude discovered SFP modules by name.','0','0'), ('2421','10427','{$ZYXEL.LLD.SFP.UPDATE}','10m','Receiving data from the SFP module is slow, we do not recommend setting the interval less than 10 minutes.','0','0'), ('2422','10428','{$CPU.UTIL.CRIT}','90','','0','0'), ('2423','10428','{$MEMORY.UTIL.MAX}','90','','0','0'), ('2424','10428','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0','0'), ('2425','10428','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}','CHANGE_IF_NEEDED','Triggers will be created only for interfaces whose description contains the value of this macro','0','0'), ('2426','10428','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}','1|2','Filter of discoverable link types. 0 - Down link 1 - Cooper link 2 - Fiber link','0','0'), ('2427','10428','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by link types.','0','0'), ('2428','10428','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}','.*','Filter by discoverable interface names.','0','0'), ('2429','10428','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered interfaces by name.','0','0'), ('2430','10428','{$ZYXEL.LLD.FILTER.SFP.STATUS.MATCHES}','1|2','Filter of discoverable status. 0 - OK with DDM 1 - OK without DDM 2 - nonoperational','0','0'), ('2431','10428','{$ZYXEL.LLD.FILTER.SFP.STATUS.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by status.','0','0'), ('2432','10428','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.MATCHES}','.*','Filter by discoverable SFP modules name.','0','0'), ('2433','10428','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.NOT_MATCHES}','N/A','Filter to exclude discovered SFP modules by name.','0','0'), ('2434','10428','{$ZYXEL.LLD.SFP.UPDATE}','10m','Receiving data from the SFP module is slow, we do not recommend setting the interval less than 10 minutes.','0','0'), ('2435','10429','{$CPU.UTIL.CRIT}','90','','0','0'), ('2436','10429','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0','0'), ('2437','10429','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}','CHANGE_IF_NEEDED','Triggers will be created only for interfaces whose description contains the value of this macro','0','0'), ('2438','10429','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}','1|2','Filter of discoverable link types. 0 - Down link 1 - Cooper link 2 - Fiber link','0','0'), ('2439','10429','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by link types.','0','0'), ('2440','10429','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}','.*','Filter by discoverable interface names.','0','0'), ('2441','10429','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered interfaces by name.','0','0'), ('2442','10429','{$ZYXEL.LLD.FILTER.SFP.STATUS.MATCHES}','1|2','Filter of discoverable status. 0 - OK with DDM 1 - OK without DDM 2 - nonoperational','0','0'), ('2443','10429','{$ZYXEL.LLD.FILTER.SFP.STATUS.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by status.','0','0'), ('2444','10429','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.MATCHES}','.*','Filter by discoverable SFP modules name.','0','0'), ('2445','10429','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.NOT_MATCHES}','N/A','Filter to exclude discovered SFP modules by name.','0','0'), ('2446','10429','{$ZYXEL.LLD.SFP.UPDATE}','10m','Receiving data from the SFP module is slow, we do not recommend setting the interval less than 10 minutes.','0','0'), ('2447','10430','{$CPU.UTIL.CRIT}','90','','0','0'), ('2448','10430','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0','0'), ('2449','10430','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}','CHANGE_IF_NEEDED','Triggers will be created only for interfaces whose description contains the value of this macro','0','0'), ('2450','10430','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}','1|2','Filter of discoverable link types. 0 - Down link 1 - Cooper link 2 - Fiber link','0','0'), ('2451','10430','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by link types.','0','0'), ('2452','10430','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}','.*','Filter by discoverable interface names.','0','0'), ('2453','10430','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered interfaces by name.','0','0'), ('2454','10430','{$ZYXEL.LLD.FILTER.SFP.STATUS.MATCHES}','1|2','Filter of discoverable status. 0 - OK with DDM 1 - OK without DDM 2 - nonoperational','0','0'), ('2455','10430','{$ZYXEL.LLD.FILTER.SFP.STATUS.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by status.','0','0'), ('2456','10430','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.MATCHES}','.*','Filter by discoverable SFP modules name.','0','0'), ('2457','10430','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.NOT_MATCHES}','N/A','Filter to exclude discovered SFP modules by name.','0','0'), ('2458','10430','{$ZYXEL.LLD.SFP.UPDATE}','10m','Receiving data from the SFP module is slow, we do not recommend setting the interval less than 10 minutes.','0','0'), ('2459','10431','{$CPU.UTIL.CRIT}','90','','0','0'), ('2460','10431','{$MEMORY.UTIL.MAX}','90','','0','0'), ('2461','10431','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0','0'), ('2462','10431','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}','CHANGE_IF_NEEDED','Triggers will be created only for interfaces whose description contains the value of this macro','0','0'), ('2463','10431','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}','1|2|3|4','Filter of discoverable link types. 0 - Down link 1 - Cooper link 2 - Fiber link 3 - XFP 4 - CX4','0','0'), ('2464','10431','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by link types.','0','0'), ('2465','10431','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}','.*','Filter by discoverable interface names.','0','0'), ('2466','10431','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered interfaces by name.','0','0'), ('2467','10431','{$ZYXEL.LLD.FILTER.SFP.STATUS.MATCHES}','1|2','Filter of discoverable status. 0 - OK with DDM 1 - OK without DDM 2 - nonoperational','0','0'), ('2468','10431','{$ZYXEL.LLD.FILTER.SFP.STATUS.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by status.','0','0'), ('2469','10431','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.MATCHES}','.*','Filter by discoverable SFP modules name.','0','0'), ('2470','10431','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.NOT_MATCHES}','N/A','Filter to exclude discovered SFP modules by name.','0','0'), ('2471','10431','{$ZYXEL.LLD.SFP.UPDATE}','10m','Receiving data from the SFP module is slow, we do not recommend setting the interval less than 10 minutes.','0','0'), ('2472','10432','{$CPU.UTIL.CRIT}','90','','0','0'), ('2473','10432','{$MEMORY.UTIL.MAX}','90','','0','0'), ('2474','10432','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0','0'), ('2475','10432','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}','CHANGE_IF_NEEDED','Triggers will be created only for interfaces whose description contains the value of this macro','0','0'), ('2476','10432','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}','1|2|3|4','Filter of discoverable link types. 0 - Down link 1 - Cooper link 2 - Fiber link 3 - XFP 4 - CX4','0','0'), ('2477','10432','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by link types.','0','0'), ('2478','10432','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}','.*','Filter by discoverable interface names.','0','0'), ('2479','10432','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered interfaces by name.','0','0'), ('2480','10432','{$ZYXEL.LLD.FILTER.SFP.STATUS.MATCHES}','1|2','Filter of discoverable status. 0 - OK with DDM 1 - OK without DDM 2 - nonoperational','0','0'), ('2481','10432','{$ZYXEL.LLD.FILTER.SFP.STATUS.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by status.','0','0'), ('2482','10432','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.MATCHES}','.*','Filter by discoverable SFP modules name.','0','0'), ('2483','10432','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.NOT_MATCHES}','N/A','Filter to exclude discovered SFP modules by name.','0','0'), ('2484','10432','{$ZYXEL.LLD.SFP.UPDATE}','10m','Receiving data from the SFP module is slow, we do not recommend setting the interval less than 10 minutes.','0','0'), ('2485','10433','{$CPU.UTIL.CRIT}','90','','0','0'), ('2486','10433','{$MEMORY.UTIL.MAX}','90','','0','0'), ('2487','10433','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0','0'), ('2488','10433','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}','CHANGE_IF_NEEDED','Triggers will be created only for interfaces whose description contains the value of this macro','0','0'), ('2489','10433','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}','1|2','Filter of discoverable link types. 0 - Down link 1 - Cooper link 2 - Fiber link','0','0'), ('2490','10433','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by link types.','0','0'), ('2491','10433','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}','.*','Filter by discoverable interface names.','0','0'), ('2492','10433','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered interfaces by name.','0','0'), ('2493','10433','{$ZYXEL.LLD.FILTER.SFP.STATUS.MATCHES}','1|2','Filter of discoverable status. 0 - OK with DDM 1 - OK without DDM 2 - nonoperational','0','0'), ('2494','10433','{$ZYXEL.LLD.FILTER.SFP.STATUS.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered by status.','0','0'), ('2495','10433','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.MATCHES}','.*','Filter by discoverable SFP modules name.','0','0'), ('2496','10433','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.NOT_MATCHES}','N/A','Filter to exclude discovered SFP modules by name.','0','0'), ('2497','10433','{$ZYXEL.LLD.SFP.UPDATE}','10m','Receiving data from the SFP module is slow, we do not recommend setting the interval less than 10 minutes.','0','0'), ('2498','10434','{$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT}','2','The cache battery critical state for trigger expression.','0','0'), ('2499','10434','{$DISK.ARRAY.CACHE.BATTERY.STATUS.OK}','1','The cache battery normal state for trigger expression.','0','0'), ('2500','10434','{$DISK.ARRAY.STATUS.CRIT:"inoperable"}','2','The array controller critical state for trigger expression.','0','0'), ('2501','10434','{$DISK.ARRAY.STATUS.OK:"operable"}','1','The array controller normal state for trigger expression.','0','0'), ('2502','10434','{$DISK.ARRAY.STATUS.WARN:"degraded"}','3','The array controller warning state for trigger expression.','0','0'), ('2503','10434','{$DISK.STATUS.CRIT:"bad"}','16','The disk critical state for trigger expression.','0','0'), ('2504','10434','{$DISK.STATUS.CRIT:"predictiveFailure"}','11','The disk critical state for trigger expression.','0','0'), ('2505','10434','{$DISK.STATUS.FAIL:"failed"}','9','The disk fail state for trigger expression.','0','0'), ('2506','10434','{$FAN.STATUS.CRIT:"inoperable"}','2','The critical value of the FAN sensor for trigger expression.','0','0'), ('2507','10434','{$FAN.STATUS.WARN:"degraded"}','3','The warning value of the FAN sensor for trigger expression.','0','0'), ('2508','10434','{$HEALTH.STATUS.CRIT:"computeFailed"}','30','The unit health critical state for trigger expression.','0','0'), ('2509','10434','{$HEALTH.STATUS.CRIT:"configFailure"}','33','The unit health critical state for trigger expression.','0','0'), ('2510','10434','{$HEALTH.STATUS.CRIT:"inoperable"}','60','The unit health critical state for trigger expression.','0','0'), ('2511','10434','{$HEALTH.STATUS.CRIT:"unconfigFailure"}','34','The unit health critical state for trigger expression.','0','0'), ('2512','10434','{$HEALTH.STATUS.WARN:"diagnosticsFailed"}','204','The unit health warning state for trigger expression.','0','0'), ('2513','10434','{$HEALTH.STATUS.WARN:"powerProblem"}','62','The unit health warning state for trigger expression.','0','0'), ('2514','10434','{$HEALTH.STATUS.WARN:"testFailed"}','35','The unit health warning state for trigger expression.','0','0'), ('2515','10434','{$HEALTH.STATUS.WARN:"thermalProblem"}','60','The unit health warning state for trigger expression.','0','0'), ('2516','10434','{$HEALTH.STATUS.WARN:"voltageProblem"}','62','The unit health warning state for trigger expression.','0','0'), ('2517','10434','{$IF.ERRORS.WARN}','2','','0','0'), ('2518','10434','{$IFCONTROL}','1','','0','0'), ('2519','10434','{$NET.IFADMINSTATUS.MATCHES}','^.*','This macro is used in network interface discovery. Can be overridden on the host level.','0','0'), ('2520','10434','{$NET.IFADMINSTATUS.NOT_MATCHES}','^2$','This macro is used in network interface discovery. Can be overridden on the host level. Ignore down(2) administrative status by default.','0','0'), ('2521','10434','{$NET.IFALIAS.MATCHES}','.*','This macro is used in network interface discovery. Can be overridden on the host level.','0','0'), ('2522','10434','{$NET.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in network interface discovery. Can be overridden on the host level.','0','0'), ('2523','10434','{$NET.IFDESCR.MATCHES}','.*','This macro is used in network interface discovery. Can be overridden on the host level.','0','0'), ('2524','10434','{$NET.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in network interface discovery. Can be overridden on the host level.','0','0'), ('2525','10434','{$NET.IFNAME.MATCHES}','^.*$','This macro is used in network interface discovery. Can be overridden on the host level.','0','0'), ('2526','10434','{$NET.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12}|sup-fc0)','This macro is used in network interface discovery. Can be overridden on the host level. Filter out loopbacks, sup-fc0, nulls, docker veth links and docker0 bridge by default.','0','0'), ('2527','10434','{$NET.IFOPERSTATUS.MATCHES}','^.*$','This macro is used in network interface discovery. Can be overridden on the host level.','0','0'), ('2528','10434','{$NET.IFOPERSTATUS.NOT_MATCHES}','^6$','This macro is used in network interface discovery. Can be overridden on the host level. Ignore notPresent(6) by default.','0','0'), ('2529','10434','{$NET.IFTYPE.MATCHES}','.*','This macro is used in network interface discovery. Can be overridden on the host level.','0','0'), ('2530','10434','{$NET.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in network interface discovery. Can be overridden on the host level.','0','0'), ('2531','10434','{$PSU.STATUS.CRIT:"inoperable"}','2','The critical value of the PSU sensor for trigger expression.','0','0'), ('2532','10434','{$PSU.STATUS.WARN:"degraded"}','3','The warning value of the PSU sensor for trigger expression.','0','0'), ('2533','10434','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0','0'), ('2534','10434','{$TEMP.MAX.CRIT:"Ambient"}','35','The temperature maximum critical value for trigger expression.','0','0'), ('2535','10434','{$TEMP.MAX.WARN:"Ambient"}','30','The temperature maximum warning value for trigger expression.','0','0'), ('2536','10434','{$VDISK.STATUS.OK:"equipped"}','10','The vdisk normal state for trigger expression.','0','0'), ('2685','10443','{$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:"capacitorFailed"}','7','The critical status of the disk array cache battery for trigger expression.','0','0'), ('2686','10443','{$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:"failed"}','4','The critical status of the disk array cache battery for trigger expression.','0','0'), ('2687','10443','{$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN:"degraded"}','5','The warning status of the disk array cache battery for trigger expression.','0','0'), ('2688','10443','{$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN:"notPresent"}','6','The warning status of the disk array cache battery for trigger expression.','0','0'), ('2689','10443','{$DISK.ARRAY.CACHE.STATUS.CRIT:"cacheModCriticalFailure"}','8','The critical status of the disk array cache for trigger expression.','0','0'), ('2690','10443','{$DISK.ARRAY.CACHE.STATUS.OK:"enabled"}','3','The normal status of the disk array cache for trigger expression.','0','0'), ('2691','10443','{$DISK.ARRAY.CACHE.STATUS.WARN:"cacheModDegradedFailsafeSpeed"}','7','The warning status of the disk array cache for trigger expression.','0','0'), ('2692','10443','{$DISK.ARRAY.CACHE.STATUS.WARN:"cacheModFlashMemNotAttached"}','6','The warning status of the disk array cache for trigger expression.','0','0'), ('2693','10443','{$DISK.ARRAY.CACHE.STATUS.WARN:"cacheReadCacheNotMapped"}','9','The warning status of the disk array cache for trigger expression.','0','0'), ('2694','10443','{$DISK.ARRAY.CACHE.STATUS.WARN:"invalid"}','2','The warning status of the disk array cache for trigger expression.','0','0'), ('2695','10443','{$DISK.ARRAY.STATUS.CRIT}','4','The critical status of the disk array for trigger expression.','0','0'), ('2696','10443','{$DISK.ARRAY.STATUS.WARN}','3','The warning status of the disk array for trigger expression.','0','0'), ('2697','10443','{$DISK.SMART.STATUS.FAIL:"replaceDrive"}','3','The critical S.M.A.R.T status of the disk for trigger expression.','0','0'), ('2698','10443','{$DISK.SMART.STATUS.FAIL:"replaceDriveSSDWearOut"}','4','The critical S.M.A.R.T status of the disk for trigger expression.','0','0'), ('2699','10443','{$DISK.STATUS.FAIL}','3','The critical status of the disk for trigger expression.','0','0'), ('2700','10443','{$DISK.STATUS.WARN}','4','The warning status of the disk for trigger expression.','0','0'), ('2701','10443','{$FAN.STATUS.CRIT}','4','The critical value of the FAN sensor for trigger expression.','0','0'), ('2702','10443','{$FAN.STATUS.WARN}','3','The warning value of the FAN sensor for trigger expression.','0','0'), ('2703','10443','{$HEALTH.STATUS.CRIT}','4','The critical status of the health for trigger expression.','0','0'), ('2704','10443','{$HEALTH.STATUS.WARN}','3','The warning status of the health for trigger expression.','0','0'), ('2705','10443','{$PSU.STATUS.CRIT}','4','The critical value of the PSU sensor for trigger expression.','0','0'), ('2706','10443','{$PSU.STATUS.WARN}','3','The warning value of the PSU sensor for trigger expression.','0','0'), ('2707','10443','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0','0'), ('2708','10443','{$VDISK.STATUS.CRIT}','3','The critical status of the virtual disk for trigger expression.','0','0'), ('2709','10443','{$VDISK.STATUS.OK}','2','The normal status of the virtual disk for trigger expression.','0','0'), ('2710','10444','{$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:"capacitorFailed"}','7','The critical status of the disk array cache battery for trigger expression.','0','0'), ('2711','10444','{$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:"failed"}','4','The critical status of the disk array cache battery for trigger expression.','0','0'), ('2712','10444','{$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN:"degraded"}','5','The warning status of the disk array cache battery for trigger expression.','0','0'), ('2713','10444','{$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN:"notPresent"}','6','The warning status of the disk array cache battery for trigger expression.','0','0'), ('2714','10444','{$DISK.ARRAY.CACHE.STATUS.CRIT:"cacheModCriticalFailure"}','8','The critical status of the disk array cache for trigger expression.','0','0'), ('2715','10444','{$DISK.ARRAY.CACHE.STATUS.OK:"enabled"}','3','The normal status of the disk array cache for trigger expression.','0','0'), ('2716','10444','{$DISK.ARRAY.CACHE.STATUS.WARN:"cacheModDegradedFailsafeSpeed"}','7','The warning status of the disk array cache for trigger expression.','0','0'), ('2717','10444','{$DISK.ARRAY.CACHE.STATUS.WARN:"cacheModFlashMemNotAttached"}','6','The warning status of the disk array cache for trigger expression.','0','0'), ('2718','10444','{$DISK.ARRAY.CACHE.STATUS.WARN:"cacheReadCacheNotMapped"}','9','The warning status of the disk array cache for trigger expression.','0','0'), ('2719','10444','{$DISK.ARRAY.CACHE.STATUS.WARN:"invalid"}','2','The warning status of the disk array cache for trigger expression.','0','0'), ('2720','10444','{$DISK.ARRAY.STATUS.CRIT}','4','The critical status of the disk array for trigger expression.','0','0'), ('2721','10444','{$DISK.ARRAY.STATUS.WARN}','3','The warning status of the disk array for trigger expression.','0','0'), ('2722','10444','{$DISK.SMART.STATUS.FAIL:"replaceDrive"}','3','The critical S.M.A.R.T status of the disk for trigger expression.','0','0'), ('2723','10444','{$DISK.SMART.STATUS.FAIL:"replaceDriveSSDWearOut"}','4','The critical S.M.A.R.T status of the disk for trigger expression.','0','0'), ('2724','10444','{$DISK.STATUS.FAIL}','3','The critical status of the disk for trigger expression.','0','0'), ('2725','10444','{$DISK.STATUS.WARN}','4','The warning status of the disk for trigger expression.','0','0'), ('2726','10444','{$FAN.STATUS.CRIT}','4','The critical value of the FAN sensor for trigger expression.','0','0'), ('2727','10444','{$FAN.STATUS.WARN}','3','The warning value of the FAN sensor for trigger expression.','0','0'), ('2728','10444','{$HEALTH.STATUS.CRIT}','4','The critical status of the health for trigger expression.','0','0'), ('2729','10444','{$HEALTH.STATUS.WARN}','3','The warning status of the health for trigger expression.','0','0'), ('2730','10444','{$PSU.STATUS.CRIT}','4','The critical value of the PSU sensor for trigger expression.','0','0'), ('2731','10444','{$PSU.STATUS.WARN}','3','The warning value of the PSU sensor for trigger expression.','0','0'), ('2732','10444','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0','0'), ('2733','10444','{$VDISK.STATUS.CRIT}','3','The critical status of the virtual disk for trigger expression.','0','0'), ('2734','10444','{$VDISK.STATUS.OK}','2','The normal status of the virtual disk for trigger expression.','0','0'), ('2735','10445','{$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:"capacitorFailed"}','7','The critical status of the disk array cache battery for trigger expression.','0','0'), ('2736','10445','{$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:"failed"}','4','The critical status of the disk array cache battery for trigger expression.','0','0'), ('2737','10445','{$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN:"degraded"}','5','The warning status of the disk array cache battery for trigger expression.','0','0'), ('2738','10445','{$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN:"notPresent"}','6','The warning status of the disk array cache battery for trigger expression.','0','0'), ('2739','10445','{$DISK.ARRAY.CACHE.STATUS.CRIT:"cacheModCriticalFailure"}','8','The critical status of the disk array cache for trigger expression.','0','0'), ('2740','10445','{$DISK.ARRAY.CACHE.STATUS.OK:"enabled"}','3','The normal status of the disk array cache for trigger expression.','0','0'), ('2741','10445','{$DISK.ARRAY.CACHE.STATUS.WARN:"cacheModDegradedFailsafeSpeed"}','7','The warning status of the disk array cache for trigger expression.','0','0'), ('2742','10445','{$DISK.ARRAY.CACHE.STATUS.WARN:"cacheModFlashMemNotAttached"}','6','The warning status of the disk array cache for trigger expression.','0','0'), ('2743','10445','{$DISK.ARRAY.CACHE.STATUS.WARN:"cacheReadCacheNotMapped"}','9','The warning status of the disk array cache for trigger expression.','0','0'), ('2744','10445','{$DISK.ARRAY.CACHE.STATUS.WARN:"invalid"}','2','The warning status of the disk array cache for trigger expression.','0','0'), ('2745','10445','{$DISK.ARRAY.STATUS.CRIT}','4','The critical status of the disk array for trigger expression.','0','0'), ('2746','10445','{$DISK.ARRAY.STATUS.WARN}','3','The warning status of the disk array for trigger expression.','0','0'), ('2747','10445','{$DISK.SMART.STATUS.FAIL:"replaceDrive"}','3','The critical S.M.A.R.T status of the disk for trigger expression.','0','0'), ('2748','10445','{$DISK.SMART.STATUS.FAIL:"replaceDriveSSDWearOut"}','4','The critical S.M.A.R.T status of the disk for trigger expression.','0','0'), ('2749','10445','{$DISK.STATUS.FAIL}','3','The critical status of the disk for trigger expression.','0','0'), ('2750','10445','{$DISK.STATUS.WARN}','4','The warning status of the disk for trigger expression.','0','0'), ('2751','10445','{$FAN.STATUS.CRIT}','4','The critical value of the FAN sensor for trigger expression.','0','0'), ('2752','10445','{$FAN.STATUS.WARN}','3','The warning value of the FAN sensor for trigger expression.','0','0'), ('2753','10445','{$HEALTH.STATUS.CRIT}','4','The critical status of the health for trigger expression.','0','0'), ('2754','10445','{$HEALTH.STATUS.WARN}','3','The warning status of the health for trigger expression.','0','0'), ('2755','10445','{$PSU.STATUS.CRIT}','4','The critical value of the PSU sensor for trigger expression.','0','0'), ('2756','10445','{$PSU.STATUS.WARN}','3','The warning value of the PSU sensor for trigger expression.','0','0'), ('2757','10445','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0','0'), ('2758','10445','{$VDISK.STATUS.CRIT}','3','The critical status of the virtual disk for trigger expression.','0','0'), ('2759','10445','{$VDISK.STATUS.OK}','2','The normal status of the virtual disk for trigger expression.','0','0'), ('2760','10446','{$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:"capacitorFailed"}','7','The critical status of the disk array cache battery for trigger expression.','0','0'), ('2761','10446','{$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:"failed"}','4','The critical status of the disk array cache battery for trigger expression.','0','0'), ('2762','10446','{$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN:"degraded"}','5','The warning status of the disk array cache battery for trigger expression.','0','0'), ('2763','10446','{$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN:"notPresent"}','6','The warning status of the disk array cache battery for trigger expression.','0','0'), ('2764','10446','{$DISK.ARRAY.CACHE.STATUS.CRIT:"cacheModCriticalFailure"}','8','The critical status of the disk array cache for trigger expression.','0','0'), ('2765','10446','{$DISK.ARRAY.CACHE.STATUS.OK:"enabled"}','3','The normal status of the disk array cache for trigger expression.','0','0'), ('2766','10446','{$DISK.ARRAY.CACHE.STATUS.WARN:"cacheModDegradedFailsafeSpeed"}','7','The warning status of the disk array cache for trigger expression.','0','0'), ('2767','10446','{$DISK.ARRAY.CACHE.STATUS.WARN:"cacheModFlashMemNotAttached"}','6','The warning status of the disk array cache for trigger expression.','0','0'), ('2768','10446','{$DISK.ARRAY.CACHE.STATUS.WARN:"cacheReadCacheNotMapped"}','9','The warning status of the disk array cache for trigger expression.','0','0'), ('2769','10446','{$DISK.ARRAY.CACHE.STATUS.WARN:"invalid"}','2','The warning status of the disk array cache for trigger expression.','0','0'), ('2770','10446','{$DISK.ARRAY.STATUS.CRIT}','4','The critical status of the disk array for trigger expression.','0','0'), ('2771','10446','{$DISK.ARRAY.STATUS.WARN}','3','The warning status of the disk array for trigger expression.','0','0'), ('2772','10446','{$DISK.SMART.STATUS.FAIL:"replaceDrive"}','3','The critical S.M.A.R.T status of the disk for trigger expression.','0','0'), ('2773','10446','{$DISK.SMART.STATUS.FAIL:"replaceDriveSSDWearOut"}','4','The critical S.M.A.R.T status of the disk for trigger expression.','0','0'), ('2774','10446','{$DISK.STATUS.FAIL}','3','The critical status of the disk for trigger expression.','0','0'), ('2775','10446','{$DISK.STATUS.WARN}','4','The warning status of the disk for trigger expression.','0','0'), ('2776','10446','{$FAN.STATUS.CRIT}','4','The critical value of the FAN sensor for trigger expression.','0','0'), ('2777','10446','{$FAN.STATUS.WARN}','3','The warning value of the FAN sensor for trigger expression.','0','0'), ('2778','10446','{$HEALTH.STATUS.CRIT}','4','The critical status of the health for trigger expression.','0','0'), ('2779','10446','{$HEALTH.STATUS.WARN}','3','The warning status of the health for trigger expression.','0','0'), ('2780','10446','{$PSU.STATUS.CRIT}','4','The critical value of the PSU sensor for trigger expression.','0','0'), ('2781','10446','{$PSU.STATUS.WARN}','3','The warning value of the PSU sensor for trigger expression.','0','0'), ('2782','10446','{$SNMP.TIMEOUT}','5m','The time interval for SNMP agent availability trigger expression.','0','0'), ('2783','10446','{$VDISK.STATUS.CRIT}','3','The critical status of the virtual disk for trigger expression.','0','0'), ('2784','10446','{$VDISK.STATUS.OK}','2','The normal status of the virtual disk for trigger expression.','0','0'), ('2785','10336','{$AMI.TRUNK_ACTIVE_CHANNELS_TOTAL.MAX.WARN:"IAX"}','28','The total maximum number of busy channels of IAX trunks for trigger expression.','0','0'), ('2786','10336','{$AMI.TRUNK_ACTIVE_CHANNELS_TOTAL.MAX.WARN:"PJSIP"}','28','The total maximum number of busy channels of PJSIP trunks for trigger expression.','0','0'), ('2787','10336','{$AMI.TRUNK_ACTIVE_CHANNELS_TOTAL.MAX.WARN:"SIP"}','28','The total maximum number of busy channels of SIP trunks for trigger expression.','0','0'), ('2788','10447','{$TRAVIS.API.TOKEN}','','Travis API Token','0','0'), ('2789','10447','{$TRAVIS.API.URL}','api.travis-ci.com','Travis API URL','0','0'), ('2790','10447','{$TRAVIS.BUILDS.SUCCESS.PERCENT}','80','Percent of successful builds in the repo (for trigger expression)','0','0'), ('2791','10448','{$INFLUXDB.API.TOKEN}','','InfluxDB API Authorization Token','0','0'), ('2792','10448','{$INFLUXDB.ORG_NAME.MATCHES}','.*','Filter of discoverable organizations','0','0'), ('2793','10448','{$INFLUXDB.ORG_NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered organizations','0','0'), ('2794','10448','{$INFLUXDB.REQ.FAIL.MAX.WARN}','2','Maximum number of query requests failures for trigger expression.','0','0'), ('2795','10448','{$INFLUXDB.TASK.RUN.FAIL.MAX.WARN}','2','Maximum number of tasks runs failures for trigger expression.','0','0'), ('2796','10448','{$INFLUXDB.URL}','http://localhost:8086','InfluxDB instance URL','0','0'), ('2797','10419','{$BIGIP.TEMP.HIGH}','50','The critical threshold of the temperature in °C','0','0'), ('2798','10419','{$BIGIP.TEMP.WARN}','45','The warning threshold of the temperature in °C','0','0'), ('2799','10449','{$CPU.UTIL.CRIT}','90','','0','0'), ('2800','10449','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('2801','10449','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('2802','10449','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('2803','10449','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('2804','10449','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('2805','10449','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('2806','10449','{$MEMORY.UTIL.MAX}','90','','0','0'), ('2807','10449','{$TEMP_CRIT}','60','','0','0'), ('2808','10449','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('2809','10449','{$TEMP_CRIT_LOW}','5','','0','0'), ('2810','10449','{$TEMP_WARN}','50','','0','0'), ('2811','10449','{$TEMP_WARN:"CPU"}','70','','0','0'), ('2812','10449','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('2813','10449','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('2814','10450','{$CPU.UTIL.CRIT}','90','','0','0'), ('2815','10450','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('2816','10450','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('2817','10450','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('2818','10450','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('2819','10450','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('2820','10450','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('2821','10450','{$MEMORY.UTIL.MAX}','90','','0','0'), ('2822','10450','{$TEMP_CRIT}','60','','0','0'), ('2823','10450','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('2824','10450','{$TEMP_CRIT_LOW}','5','','0','0'), ('2825','10450','{$TEMP_WARN}','50','','0','0'), ('2826','10450','{$TEMP_WARN:"CPU"}','70','','0','0'), ('2827','10450','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('2828','10450','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('2829','10451','{$CPU.UTIL.CRIT}','90','','0','0'), ('2830','10451','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('2831','10451','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('2832','10451','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('2833','10451','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('2834','10451','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('2835','10451','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('2836','10451','{$MEMORY.UTIL.MAX}','90','','0','0'), ('2837','10451','{$TEMP_CRIT}','60','','0','0'), ('2838','10451','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('2839','10451','{$TEMP_CRIT_LOW}','5','','0','0'), ('2840','10451','{$TEMP_WARN}','50','','0','0'), ('2841','10451','{$TEMP_WARN:"CPU"}','70','','0','0'), ('2842','10451','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('2843','10451','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('2844','10452','{$CPU.UTIL.CRIT}','90','','0','0'), ('2845','10452','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('2846','10452','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('2847','10452','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('2848','10452','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('2849','10452','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('2850','10452','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('2851','10452','{$MEMORY.UTIL.MAX}','90','','0','0'), ('2852','10452','{$TEMP_CRIT}','60','','0','0'), ('2853','10452','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('2854','10452','{$TEMP_CRIT_LOW}','5','','0','0'), ('2855','10452','{$TEMP_WARN}','50','','0','0'), ('2856','10452','{$TEMP_WARN:"CPU"}','70','','0','0'), ('2857','10452','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('2858','10452','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('2859','10453','{$CPU.UTIL.CRIT}','90','','0','0'), ('2860','10453','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('2861','10453','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('2862','10453','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('2863','10453','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('2864','10453','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('2865','10453','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('2866','10453','{$MEMORY.UTIL.MAX}','90','','0','0'), ('2867','10453','{$TEMP_CRIT}','60','','0','0'), ('2868','10453','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('2869','10453','{$TEMP_CRIT_LOW}','5','','0','0'), ('2870','10453','{$TEMP_WARN}','50','','0','0'), ('2871','10453','{$TEMP_WARN:"CPU"}','70','','0','0'), ('2872','10453','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('2873','10453','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('2874','10454','{$CPU.UTIL.CRIT}','90','','0','0'), ('2875','10454','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('2876','10454','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('2877','10454','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('2878','10454','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('2879','10454','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('2880','10454','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('2881','10454','{$MEMORY.UTIL.MAX}','90','','0','0'), ('2882','10454','{$TEMP_CRIT}','60','','0','0'), ('2883','10454','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('2884','10454','{$TEMP_CRIT_LOW}','5','','0','0'), ('2885','10454','{$TEMP_WARN}','50','','0','0'), ('2886','10454','{$TEMP_WARN:"CPU"}','70','','0','0'), ('2887','10454','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('2888','10454','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('2889','10455','{$CPU.UTIL.CRIT}','90','','0','0'), ('2890','10455','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('2891','10455','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('2892','10455','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('2893','10455','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('2894','10455','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('2895','10455','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('2896','10455','{$MEMORY.UTIL.MAX}','90','','0','0'), ('2897','10455','{$TEMP_CRIT}','60','','0','0'), ('2898','10455','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('2899','10455','{$TEMP_CRIT_LOW}','5','','0','0'), ('2900','10455','{$TEMP_WARN}','50','','0','0'), ('2901','10455','{$TEMP_WARN:"CPU"}','70','','0','0'), ('2902','10455','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('2903','10455','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('2904','10456','{$CPU.UTIL.CRIT}','90','','0','0'), ('2905','10456','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('2906','10456','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('2907','10456','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('2908','10456','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('2909','10456','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('2910','10456','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('2911','10456','{$MEMORY.UTIL.MAX}','90','','0','0'), ('2912','10456','{$TEMP_CRIT}','60','','0','0'), ('2913','10456','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('2914','10456','{$TEMP_CRIT_LOW}','5','','0','0'), ('2915','10456','{$TEMP_WARN}','50','','0','0'), ('2916','10456','{$TEMP_WARN:"CPU"}','70','','0','0'), ('2917','10456','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('2918','10456','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('2919','10457','{$CPU.UTIL.CRIT}','90','','0','0'), ('2920','10457','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('2921','10457','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('2922','10457','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('2923','10457','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('2924','10457','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('2925','10457','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('2926','10457','{$MEMORY.UTIL.MAX}','90','','0','0'), ('2927','10457','{$TEMP_CRIT}','60','','0','0'), ('2928','10457','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('2929','10457','{$TEMP_CRIT_LOW}','5','','0','0'), ('2930','10457','{$TEMP_WARN}','50','','0','0'), ('2931','10457','{$TEMP_WARN:"CPU"}','70','','0','0'), ('2932','10457','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('2933','10457','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('2934','10458','{$CPU.UTIL.CRIT}','90','','0','0'), ('2935','10458','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('2936','10458','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('2937','10458','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('2938','10458','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('2939','10458','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('2940','10458','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('2941','10458','{$MEMORY.UTIL.MAX}','90','','0','0'), ('2942','10458','{$TEMP_CRIT}','60','','0','0'), ('2943','10458','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('2944','10458','{$TEMP_CRIT_LOW}','5','','0','0'), ('2945','10458','{$TEMP_WARN}','50','','0','0'), ('2946','10458','{$TEMP_WARN:"CPU"}','70','','0','0'), ('2947','10458','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('2948','10458','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('2949','10459','{$CPU.UTIL.CRIT}','90','','0','0'), ('2950','10459','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('2951','10459','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('2952','10459','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('2953','10459','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('2954','10459','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('2955','10459','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('2956','10459','{$MEMORY.UTIL.MAX}','90','','0','0'), ('2957','10459','{$TEMP_CRIT}','60','','0','0'), ('2958','10459','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('2959','10459','{$TEMP_CRIT_LOW}','5','','0','0'), ('2960','10459','{$TEMP_WARN}','50','','0','0'), ('2961','10459','{$TEMP_WARN:"CPU"}','70','','0','0'), ('2962','10459','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('2963','10459','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('2964','10460','{$CPU.UTIL.CRIT}','90','','0','0'), ('2965','10460','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('2966','10460','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('2967','10460','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('2968','10460','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('2969','10460','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('2970','10460','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('2971','10460','{$MEMORY.UTIL.MAX}','90','','0','0'), ('2972','10460','{$TEMP_CRIT}','60','','0','0'), ('2973','10460','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('2974','10460','{$TEMP_CRIT_LOW}','5','','0','0'), ('2975','10460','{$TEMP_WARN}','50','','0','0'), ('2976','10460','{$TEMP_WARN:"CPU"}','70','','0','0'), ('2977','10460','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('2978','10460','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('2979','10461','{$CPU.UTIL.CRIT}','90','','0','0'), ('2980','10461','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('2981','10461','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('2982','10461','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('2983','10461','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('2984','10461','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('2985','10461','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('2986','10461','{$MEMORY.UTIL.MAX}','90','','0','0'), ('2987','10461','{$TEMP_CRIT}','60','','0','0'), ('2988','10461','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('2989','10461','{$TEMP_CRIT_LOW}','5','','0','0'), ('2990','10461','{$TEMP_WARN}','50','','0','0'), ('2991','10461','{$TEMP_WARN:"CPU"}','70','','0','0'), ('2992','10461','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('2993','10461','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('2994','10462','{$CPU.UTIL.CRIT}','90','','0','0'), ('2995','10462','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('2996','10462','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('2997','10462','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('2998','10462','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('2999','10462','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3000','10462','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3001','10462','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3002','10462','{$TEMP_CRIT}','60','','0','0'), ('3003','10462','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3004','10462','{$TEMP_CRIT_LOW}','5','','0','0'), ('3005','10462','{$TEMP_WARN}','50','','0','0'), ('3006','10462','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3007','10462','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3008','10462','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3009','10463','{$CPU.UTIL.CRIT}','90','','0','0'), ('3010','10463','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3011','10463','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3012','10463','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3013','10463','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3014','10463','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3015','10463','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3016','10463','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3017','10463','{$TEMP_CRIT}','60','','0','0'), ('3018','10463','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3019','10463','{$TEMP_CRIT_LOW}','5','','0','0'), ('3020','10463','{$TEMP_WARN}','50','','0','0'), ('3021','10463','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3022','10463','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3023','10463','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3024','10464','{$CPU.UTIL.CRIT}','90','','0','0'), ('3025','10464','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3026','10464','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3027','10464','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3028','10464','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3029','10464','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3030','10464','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3031','10464','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3032','10464','{$TEMP_CRIT}','60','','0','0'), ('3033','10464','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3034','10464','{$TEMP_CRIT_LOW}','5','','0','0'), ('3035','10464','{$TEMP_WARN}','50','','0','0'), ('3036','10464','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3037','10464','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3038','10464','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3039','10465','{$CPU.UTIL.CRIT}','90','','0','0'), ('3040','10465','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3041','10465','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3042','10465','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3043','10465','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3044','10465','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3045','10465','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3046','10465','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3047','10465','{$TEMP_CRIT}','60','','0','0'), ('3048','10465','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3049','10465','{$TEMP_CRIT_LOW}','5','','0','0'), ('3050','10465','{$TEMP_WARN}','50','','0','0'), ('3051','10465','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3052','10465','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3053','10465','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3054','10466','{$CPU.UTIL.CRIT}','90','','0','0'), ('3055','10466','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3056','10466','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3057','10466','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3058','10466','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3059','10466','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3060','10466','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3061','10466','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3062','10466','{$TEMP_CRIT}','60','','0','0'), ('3063','10466','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3064','10466','{$TEMP_CRIT_LOW}','5','','0','0'), ('3065','10466','{$TEMP_WARN}','50','','0','0'), ('3066','10466','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3067','10466','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3068','10466','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3069','10467','{$CPU.UTIL.CRIT}','90','','0','0'), ('3070','10467','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3071','10467','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3072','10467','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3073','10467','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3074','10467','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3075','10467','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3076','10467','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3077','10467','{$TEMP_CRIT}','60','','0','0'), ('3078','10467','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3079','10467','{$TEMP_CRIT_LOW}','5','','0','0'), ('3080','10467','{$TEMP_WARN}','50','','0','0'), ('3081','10467','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3082','10467','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3083','10467','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3084','10468','{$CPU.UTIL.CRIT}','90','','0','0'), ('3085','10468','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3086','10468','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3087','10468','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3088','10468','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3089','10468','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3090','10468','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3091','10468','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3092','10468','{$TEMP_CRIT}','60','','0','0'), ('3093','10468','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3094','10468','{$TEMP_CRIT_LOW}','5','','0','0'), ('3095','10468','{$TEMP_WARN}','50','','0','0'), ('3096','10468','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3097','10468','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3098','10468','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3099','10469','{$CPU.UTIL.CRIT}','90','','0','0'), ('3100','10469','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3101','10469','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3102','10469','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3103','10469','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3104','10469','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3105','10469','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3106','10469','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3107','10469','{$TEMP_CRIT}','60','','0','0'), ('3108','10469','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3109','10469','{$TEMP_CRIT_LOW}','5','','0','0'), ('3110','10469','{$TEMP_WARN}','50','','0','0'), ('3111','10469','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3112','10469','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3113','10469','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3114','10470','{$CPU.UTIL.CRIT}','90','','0','0'), ('3115','10470','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3116','10470','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3117','10470','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3118','10470','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3119','10470','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3120','10470','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3121','10470','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3122','10470','{$TEMP_CRIT}','60','','0','0'), ('3123','10470','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3124','10470','{$TEMP_CRIT_LOW}','5','','0','0'), ('3125','10470','{$TEMP_WARN}','50','','0','0'), ('3126','10470','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3127','10470','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3128','10470','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3129','10471','{$CPU.UTIL.CRIT}','90','','0','0'), ('3130','10471','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3131','10471','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3132','10471','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3133','10471','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3134','10471','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3135','10471','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3136','10471','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3137','10471','{$TEMP_CRIT}','60','','0','0'), ('3138','10471','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3139','10471','{$TEMP_CRIT_LOW}','5','','0','0'), ('3140','10471','{$TEMP_WARN}','50','','0','0'), ('3141','10471','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3142','10471','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3143','10471','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3144','10472','{$CPU.UTIL.CRIT}','90','','0','0'), ('3145','10472','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3146','10472','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3147','10472','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3148','10472','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3149','10472','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3150','10472','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3151','10472','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3152','10472','{$TEMP_CRIT}','60','','0','0'), ('3153','10472','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3154','10472','{$TEMP_CRIT_LOW}','5','','0','0'), ('3155','10472','{$TEMP_WARN}','50','','0','0'), ('3156','10472','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3157','10472','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3158','10472','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3159','10473','{$CPU.UTIL.CRIT}','90','','0','0'), ('3160','10473','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3161','10473','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3162','10473','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3163','10473','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3164','10473','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3165','10473','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3166','10473','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3167','10473','{$TEMP_CRIT}','60','','0','0'), ('3168','10473','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3169','10473','{$TEMP_CRIT_LOW}','5','','0','0'), ('3170','10473','{$TEMP_WARN}','50','','0','0'), ('3171','10473','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3172','10473','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3173','10473','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3174','10474','{$CPU.UTIL.CRIT}','90','','0','0'), ('3175','10474','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3176','10474','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3177','10474','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3178','10474','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3179','10474','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3180','10474','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3181','10474','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3182','10474','{$TEMP_CRIT}','60','','0','0'), ('3183','10474','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3184','10474','{$TEMP_CRIT_LOW}','5','','0','0'), ('3185','10474','{$TEMP_WARN}','50','','0','0'), ('3186','10474','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3187','10474','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3188','10474','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3189','10475','{$CPU.UTIL.CRIT}','90','','0','0'), ('3190','10475','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3191','10475','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3192','10475','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3193','10475','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3194','10475','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3195','10475','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3196','10475','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3197','10475','{$TEMP_CRIT}','60','','0','0'), ('3198','10475','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3199','10475','{$TEMP_CRIT_LOW}','5','','0','0'), ('3200','10475','{$TEMP_WARN}','50','','0','0'), ('3201','10475','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3202','10475','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3203','10475','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3204','10476','{$CPU.UTIL.CRIT}','90','','0','0'), ('3205','10476','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3206','10476','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3207','10476','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3208','10476','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3209','10476','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3210','10476','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3211','10476','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3212','10476','{$TEMP_CRIT}','60','','0','0'), ('3213','10476','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3214','10476','{$TEMP_CRIT_LOW}','5','','0','0'), ('3215','10476','{$TEMP_WARN}','50','','0','0'), ('3216','10476','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3217','10476','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3218','10476','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3219','10477','{$CPU.UTIL.CRIT}','90','','0','0'), ('3220','10477','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3221','10477','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3222','10477','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3223','10477','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3224','10477','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3225','10477','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3226','10477','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3227','10477','{$TEMP_CRIT}','60','','0','0'), ('3228','10477','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3229','10477','{$TEMP_CRIT_LOW}','5','','0','0'), ('3230','10477','{$TEMP_WARN}','50','','0','0'), ('3231','10477','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3232','10477','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3233','10477','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3234','10478','{$CPU.UTIL.CRIT}','90','','0','0'), ('3235','10478','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3236','10478','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3237','10478','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3238','10478','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3239','10478','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3240','10478','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3241','10478','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3242','10478','{$TEMP_CRIT}','60','','0','0'), ('3243','10478','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3244','10478','{$TEMP_CRIT_LOW}','5','','0','0'), ('3245','10478','{$TEMP_WARN}','50','','0','0'), ('3246','10478','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3247','10478','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3248','10478','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3249','10479','{$CPU.UTIL.CRIT}','90','','0','0'), ('3250','10479','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3251','10479','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3252','10479','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3253','10479','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3254','10479','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3255','10479','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3256','10479','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3257','10479','{$TEMP_CRIT}','60','','0','0'), ('3258','10479','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3259','10479','{$TEMP_CRIT_LOW}','5','','0','0'), ('3260','10479','{$TEMP_WARN}','50','','0','0'), ('3261','10479','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3262','10479','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3263','10479','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3264','10480','{$CPU.UTIL.CRIT}','90','','0','0'), ('3265','10480','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3266','10480','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3267','10480','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3268','10480','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3269','10480','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3270','10480','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3271','10480','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3272','10480','{$TEMP_CRIT}','60','','0','0'), ('3273','10480','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3274','10480','{$TEMP_CRIT_LOW}','5','','0','0'), ('3275','10480','{$TEMP_WARN}','50','','0','0'), ('3276','10480','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3277','10480','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3278','10480','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3279','10481','{$CPU.UTIL.CRIT}','90','','0','0'), ('3280','10481','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3281','10481','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3282','10481','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3283','10481','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3284','10481','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3285','10481','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3286','10481','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3287','10481','{$TEMP_CRIT}','60','','0','0'), ('3288','10481','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3289','10481','{$TEMP_CRIT_LOW}','5','','0','0'), ('3290','10481','{$TEMP_WARN}','50','','0','0'), ('3291','10481','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3292','10481','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3293','10481','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3294','10482','{$CPU.UTIL.CRIT}','90','','0','0'), ('3295','10482','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3296','10482','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3297','10482','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3298','10482','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3299','10482','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3300','10482','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3301','10482','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3302','10482','{$TEMP_CRIT}','60','','0','0'), ('3303','10482','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3304','10482','{$TEMP_CRIT_LOW}','5','','0','0'), ('3305','10482','{$TEMP_WARN}','50','','0','0'), ('3306','10482','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3307','10482','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3308','10482','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3309','10483','{$CPU.UTIL.CRIT}','90','','0','0'), ('3310','10483','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3311','10483','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3312','10483','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3313','10483','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3314','10483','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3315','10483','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3316','10483','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3317','10483','{$TEMP_CRIT}','60','','0','0'), ('3318','10483','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3319','10483','{$TEMP_CRIT_LOW}','5','','0','0'), ('3320','10483','{$TEMP_WARN}','50','','0','0'), ('3321','10483','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3322','10483','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3323','10483','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3324','10484','{$CPU.UTIL.CRIT}','90','','0','0'), ('3325','10484','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3326','10484','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3327','10484','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3328','10484','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3329','10484','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3330','10484','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3331','10484','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3332','10484','{$TEMP_CRIT}','60','','0','0'), ('3333','10484','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3334','10484','{$TEMP_CRIT_LOW}','5','','0','0'), ('3335','10484','{$TEMP_WARN}','50','','0','0'), ('3336','10484','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3337','10484','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3338','10484','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3339','10485','{$CPU.UTIL.CRIT}','90','','0','0'), ('3340','10485','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3341','10485','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3342','10485','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3343','10485','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3344','10485','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3345','10485','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3346','10485','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3347','10485','{$TEMP_CRIT}','60','','0','0'), ('3348','10485','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3349','10485','{$TEMP_CRIT_LOW}','5','','0','0'), ('3350','10485','{$TEMP_WARN}','50','','0','0'), ('3351','10485','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3352','10485','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3353','10485','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3354','10486','{$CPU.UTIL.CRIT}','90','','0','0'), ('3355','10486','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3356','10486','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3357','10486','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3358','10486','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3359','10486','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3360','10486','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3361','10486','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3362','10486','{$TEMP_CRIT}','60','','0','0'), ('3363','10486','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3364','10486','{$TEMP_CRIT_LOW}','5','','0','0'), ('3365','10486','{$TEMP_WARN}','50','','0','0'), ('3366','10486','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3367','10486','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3368','10486','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3369','10487','{$CPU.UTIL.CRIT}','90','','0','0'), ('3370','10487','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3371','10487','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3372','10487','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3373','10487','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3374','10487','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3375','10487','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3376','10487','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3377','10487','{$TEMP_CRIT}','60','','0','0'), ('3378','10487','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3379','10487','{$TEMP_CRIT_LOW}','5','','0','0'), ('3380','10487','{$TEMP_WARN}','50','','0','0'), ('3381','10487','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3382','10487','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3383','10487','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3384','10488','{$CPU.UTIL.CRIT}','90','','0','0'), ('3385','10488','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3386','10488','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3387','10488','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3388','10488','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3389','10488','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3390','10488','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3391','10488','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3392','10488','{$TEMP_CRIT}','60','','0','0'), ('3393','10488','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3394','10488','{$TEMP_CRIT_LOW}','5','','0','0'), ('3395','10488','{$TEMP_WARN}','50','','0','0'), ('3396','10488','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3397','10488','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3398','10488','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3399','10489','{$CPU.UTIL.CRIT}','90','','0','0'), ('3400','10489','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3401','10489','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3402','10489','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3403','10489','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3404','10489','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3405','10489','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3406','10489','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3407','10489','{$TEMP_CRIT}','60','','0','0'), ('3408','10489','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3409','10489','{$TEMP_CRIT_LOW}','5','','0','0'), ('3410','10489','{$TEMP_WARN}','50','','0','0'), ('3411','10489','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3412','10489','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3413','10489','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3414','10490','{$CPU.UTIL.CRIT}','90','','0','0'), ('3415','10490','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3416','10490','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3417','10490','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3418','10490','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3419','10490','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3420','10490','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3421','10490','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3422','10490','{$TEMP_CRIT}','60','','0','0'), ('3423','10490','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3424','10490','{$TEMP_CRIT_LOW}','5','','0','0'), ('3425','10490','{$TEMP_WARN}','50','','0','0'), ('3426','10490','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3427','10490','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3428','10490','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3429','10491','{$CPU.UTIL.CRIT}','90','','0','0'), ('3430','10491','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3431','10491','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3432','10491','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3433','10491','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3434','10491','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3435','10491','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3436','10491','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3437','10491','{$TEMP_CRIT}','60','','0','0'), ('3438','10491','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3439','10491','{$TEMP_CRIT_LOW}','5','','0','0'), ('3440','10491','{$TEMP_WARN}','50','','0','0'), ('3441','10491','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3442','10491','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3443','10491','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3444','10492','{$CPU.UTIL.CRIT}','90','','0','0'), ('3445','10492','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3446','10492','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3447','10492','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3448','10492','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3449','10492','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3450','10492','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3451','10492','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3452','10492','{$TEMP_CRIT}','60','','0','0'), ('3453','10492','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3454','10492','{$TEMP_CRIT_LOW}','5','','0','0'), ('3455','10492','{$TEMP_WARN}','50','','0','0'), ('3456','10492','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3457','10492','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3458','10492','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3459','10493','{$CPU.UTIL.CRIT}','90','','0','0'), ('3460','10493','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3461','10493','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3462','10493','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3463','10493','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3464','10493','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3465','10493','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3466','10493','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3467','10493','{$TEMP_CRIT}','60','','0','0'), ('3468','10493','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3469','10493','{$TEMP_CRIT_LOW}','5','','0','0'), ('3470','10493','{$TEMP_WARN}','50','','0','0'), ('3471','10493','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3472','10493','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3473','10493','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3474','10494','{$CPU.UTIL.CRIT}','90','','0','0'), ('3475','10494','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3476','10494','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3477','10494','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3478','10494','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3479','10494','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3480','10494','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3481','10494','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3482','10494','{$TEMP_CRIT}','60','','0','0'), ('3483','10494','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3484','10494','{$TEMP_CRIT_LOW}','5','','0','0'), ('3485','10494','{$TEMP_WARN}','50','','0','0'), ('3486','10494','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3487','10494','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3488','10494','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3489','10495','{$CPU.UTIL.CRIT}','90','','0','0'), ('3490','10495','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3491','10495','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3492','10495','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3493','10495','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3494','10495','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3495','10495','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3496','10495','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3497','10495','{$TEMP_CRIT}','60','','0','0'), ('3498','10495','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3499','10495','{$TEMP_CRIT_LOW}','5','','0','0'), ('3500','10495','{$TEMP_WARN}','50','','0','0'), ('3501','10495','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3502','10495','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3503','10495','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3504','10496','{$CPU.UTIL.CRIT}','90','','0','0'), ('3505','10496','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3506','10496','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3507','10496','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3508','10496','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3509','10496','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3510','10496','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3511','10496','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3512','10496','{$TEMP_CRIT}','60','','0','0'), ('3513','10496','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3514','10496','{$TEMP_CRIT_LOW}','5','','0','0'), ('3515','10496','{$TEMP_WARN}','50','','0','0'), ('3516','10496','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3517','10496','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3518','10496','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3519','10497','{$CPU.UTIL.CRIT}','90','','0','0'), ('3520','10497','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3521','10497','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3522','10497','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3523','10497','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3524','10497','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3525','10497','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3526','10497','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3527','10497','{$TEMP_CRIT}','60','','0','0'), ('3528','10497','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3529','10497','{$TEMP_CRIT_LOW}','5','','0','0'), ('3530','10497','{$TEMP_WARN}','50','','0','0'), ('3531','10497','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3532','10497','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3533','10497','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3534','10498','{$CPU.UTIL.CRIT}','90','','0','0'), ('3535','10498','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3536','10498','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3537','10498','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3538','10498','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3539','10498','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3540','10498','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3541','10498','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3542','10498','{$TEMP_CRIT}','60','','0','0'), ('3543','10498','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3544','10498','{$TEMP_CRIT_LOW}','5','','0','0'), ('3545','10498','{$TEMP_WARN}','50','','0','0'), ('3546','10498','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3547','10498','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3548','10498','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3549','10499','{$CPU.UTIL.CRIT}','90','','0','0'), ('3550','10499','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3551','10499','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3552','10499','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3553','10499','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3554','10499','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3555','10499','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3556','10499','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3557','10499','{$TEMP_CRIT}','60','','0','0'), ('3558','10499','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3559','10499','{$TEMP_CRIT_LOW}','5','','0','0'), ('3560','10499','{$TEMP_WARN}','50','','0','0'), ('3561','10499','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3562','10499','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3563','10499','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3564','10500','{$CPU.UTIL.CRIT}','90','','0','0'), ('3565','10500','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3566','10500','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3567','10500','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3568','10500','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3569','10500','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3570','10500','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3571','10500','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3572','10500','{$TEMP_CRIT}','60','','0','0'), ('3573','10500','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3574','10500','{$TEMP_CRIT_LOW}','5','','0','0'), ('3575','10500','{$TEMP_WARN}','50','','0','0'), ('3576','10500','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3577','10500','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3578','10500','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3579','10501','{$CPU.UTIL.CRIT}','90','','0','0'), ('3580','10501','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3581','10501','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3582','10501','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3583','10501','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3584','10501','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3585','10501','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3586','10501','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3587','10501','{$TEMP_CRIT}','60','','0','0'), ('3588','10501','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3589','10501','{$TEMP_CRIT_LOW}','5','','0','0'), ('3590','10501','{$TEMP_WARN}','50','','0','0'), ('3591','10501','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3592','10501','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3593','10501','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3594','10502','{$CPU.UTIL.CRIT}','90','','0','0'), ('3595','10502','{$IFNAME.LTEMODEM.MATCHES}','^lte','This macro is used in LTE modem discovery. It can be overridden on the host.','0','0'), ('3596','10502','{$IFNAME.WIFI.MATCHES}','WIFI','This macro is used in CAPsMAN AP channel discovery. It can be overridden on the host level.','0','0'), ('3597','10502','{$LTEMODEM.RSRP.MIN.WARN}','-100','The LTE modem RSRP minimum value for warning trigger expression.','0','0'), ('3598','10502','{$LTEMODEM.RSRQ.MIN.WARN}','-20','The LTE modem RSRQ minimum value for warning trigger expression.','0','0'), ('3599','10502','{$LTEMODEM.RSSI.MIN.WARN}','-100','The LTE modem RSSI minimum value for warning trigger expression.','0','0'), ('3600','10502','{$LTEMODEM.SINR.MIN.WARN}','0','The LTE modem SINR minimum value for warning trigger expression.','0','0'), ('3601','10502','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3602','10502','{$TEMP_CRIT}','60','','0','0'), ('3603','10502','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3604','10502','{$TEMP_CRIT_LOW}','5','','0','0'), ('3605','10502','{$TEMP_WARN}','50','','0','0'), ('3606','10502','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3607','10502','{$VFS.FS.PUSED.MAX.CRIT}','90','','0','0'), ('3608','10502','{$VFS.FS.PUSED.MAX.WARN}','80','','0','0'), ('3609','10503','{$VELOCLOUD.LLD.EDGES.FILTER.MATCHES}','.*','Filter for discoverable edges.','0','0'), ('3610','10503','{$VELOCLOUD.LLD.EDGES.FILTER.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered edges.','0','0'), ('3611','10503','{$VELOCLOUD.LLD.GATEWAYS.FILTER.MATCHES}','.*','Filter for discoverable gateways.','0','0'), ('3612','10503','{$VELOCLOUD.LLD.GATEWAYS.FILTER.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered gateways.','0','0'), ('3613','10503','{$VELOCLOUD.LLD.LINKS.FILTER.MATCHES}','.*','Filter for discoverable links.','0','0'), ('3614','10503','{$VELOCLOUD.LLD.LINKS.FILTER.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered links.','0','0'), ('3615','10503','{$VELOCLOUD.TOKEN}','','VMware SD-WAN Orchestrator API Token.','0','0'), ('3616','10503','{$VELOCLOUD.URL}','','VMware SD-WAN Orchestrator URL. e.g vco.velocloud.net.','0','0'), ('3617','10328','{$ORACLE.DRIVER}','','Oracle driver path. For example: `/usr/lib/oracle/21/client64/lib/libsqora.so.21.1`','0','0'), ('3618','10328','{$ORACLE.SERVICE}','','Oracle Service Name.','0','0'), ('3619','10358','{$ACTIVEMQ.EXPIRED.WARN}','0','Threshold for expired messages count. Can be used with destination name as context.','0','0'), ('3621','10504','{$KUBE.API.HTTP.CLIENT.ERROR}','2','Maximum number of HTTP client requests failures used for trigger.','0','0'), ('3622','10504','{$KUBE.API.HTTP.SERVER.ERROR}','2','Maximum number of HTTP server requests failures used for trigger.','0','0'), ('3623','10504','{$KUBE.API.SERVER.URL}','https://localhost:6443/metrics','Kubernetes API server metrics endpoint URL.','0','0'), ('3624','10504','{$KUBE.API.TOKEN}','','API Authorization Token.','0','0'), ('3625','10505','{$KUBE.CONTROLLER.HTTP.CLIENT.ERROR}','2','Maximum number of HTTP client requests failures used for trigger.','0','0'), ('3626','10505','{$KUBE.CONTROLLER.SERVER.URL}','https://localhost:10257/metrics','Kubernetes Controller manager metrics endpoint URL.','0','0'), ('3628','10506','{$KUBE.API.TOKEN}','','Service account bearer token.','0','0'), ('3629','10506','{$KUBE.KUBELET.URL}','https://localhost:10250','Kubernetes Kubelet instance URL.','0','0'), ('3631','10507','{$KUBE.API.TOKEN}','','Service account bearer token.','0','0'), ('3632','10507','{$KUBE.LLD.FILTER.NODE.MATCHES}','.*','Filter of discoverable nodes.','0','0'), ('3633','10507','{$KUBE.LLD.FILTER.NODE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered nodes.','0','0'), ('3634','10507','{$KUBE.LLD.FILTER.NODE.ROLE.MATCHES}','.*','Filter of discoverable nodes by role.','0','0'), ('3635','10507','{$KUBE.LLD.FILTER.NODE.ROLE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered node by role.','0','0'), ('3640','10507','{$KUBE.LLD.FILTER.POD.NAMESPACE.MATCHES}','.*','Filter of discoverable pods by namespace.','0','0'), ('3641','10507','{$KUBE.LLD.FILTER.POD.NAMESPACE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered pods by namespace.','0','0'), ('3642','10507','{$KUBE.NODE.FILTER.ANNOTATIONS}','','Annotations to filter nodes (regex in values are supported). See the template''s README.md for details.','0','0'), ('3643','10507','{$KUBE.NODE.FILTER.LABELS}','','Labels to filter nodes (regex in values are supported). See the template''s README.md for details.','0','0'), ('3644','10507','{$KUBE.POD.FILTER.ANNOTATIONS}','','Annotations to filter pods (regex in values are supported). See the template''s README.md for details.','0','0'), ('3645','10507','{$KUBE.POD.FILTER.LABELS}','','Labels to filter Pods (regex in values are supported). See the template''s README.md for details.','0','0'), ('3648','10509','{$KUBE.SCHEDULER.ERROR}','2','Maximum number of scheduling failures with ''error'' used for trigger.','0','0'), ('3649','10509','{$KUBE.SCHEDULER.HTTP.CLIENT.ERROR}','2','Maximum number of HTTP client requests failures used for trigger.','0','0'), ('3650','10509','{$KUBE.SCHEDULER.SERVER.URL}','https://localhost:10259/metrics','Kubernetes Scheduler metrics endpoint URL.','0','0'), ('3652','10509','{$KUBE.SCHEDULER.UNSCHEDULABLE}','2','Maximum number of scheduling failures with ''unschedulable'' used for trigger.','0','0'), ('3655','10510','{$KUBE.API.TOKEN}','','Service account bearer token.','0','0'), ('3656','10510','{$KUBE.API_SERVER.PORT}','6443','Kubernetes API servers metrics endpoint port. Used in ControlPlane LLD.','0','0'), ('3657','10510','{$KUBE.API_SERVER.SCHEME}','https','Kubernetes API servers metrics endpoint scheme. Used in ControlPlane LLD.','0','0'), ('3658','10510','{$KUBE.CONTROLLER_MANAGER.PORT}','10257','Kubernetes Controller manager metrics endpoint port. Used in ControlPlane LLD.','0','0'), ('3659','10510','{$KUBE.CONTROLLER_MANAGER.SCHEME}','https','Kubernetes Controller manager metrics endpoint scheme. Used in ControlPlane LLD.','0','0'), ('3660','10510','{$KUBE.KUBELET.PORT}','10250','Kubernetes Kubelet metrics endpoint port. Used in Kubelet LLD.','0','0'), ('3661','10510','{$KUBE.KUBELET.SCHEME}','https','Kubernetes Kubelet metrics endpoint scheme. Used in Kubelet LLD.','0','0'), ('3662','10510','{$KUBE.LLD.FILTER.NAMESPACE.MATCHES}','.*','Filter of discoverable metrics by namespace.','0','0'), ('3663','10510','{$KUBE.LLD.FILTER.NAMESPACE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered metrics by namespace.','0','0'), ('3664','10510','{$KUBE.LLD.FILTER.NODE.MATCHES}','.*','Filter of discoverable nodes by nodename.','0','0'), ('3665','10510','{$KUBE.LLD.FILTER.NODE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered nodes by nodename.','0','0'), ('3668','10510','{$KUBE.SCHEDULER.PORT}','10259','Kubernetes Scheduler metrics endpoint port. Used in ControlPlane LLD.','0','0'), ('3669','10510','{$KUBE.SCHEDULER.SCHEME}','https','Kubernetes Scheduler metrics endpoint scheme. Used in ControlPlane LLD.','0','0'), ('3670','10510','{$KUBE.STATE.ENDPOINT.NAME}','zabbix-kube-state-metrics','Endpoint name for kube-state-metrics service (check with `kubectl get ep -n monitoring -owide`).','0','0'), ('3671','10511','{$KUBE.API.SERVER.URL}','{#KUBE.API.SERVER.URL}','','0','0'), ('3672','10512','{$KUBE.CONTROLLER.SERVER.URL}','{#KUBE.CONTROLLER.SERVER.URL}','','0','0'), ('3673','10513','{$KUBE.SCHEDULER.SERVER.URL}','{#KUBE.SCHEDULER.SERVER.URL}','','0','0'), ('3674','10514','{$KUBE.KUBELET.URL}','{#KUBE.KUBELET.URL}','','0','0'), ('3678','10515','{$IF.ERRORS.WARN}','2','Threshold of error packets rate for warning trigger. Can be used with interface name as context.','0','0'), ('3679','10515','{$IF.UTIL.MAX}','90','Threshold of interface bandwidth utilization for warning trigger in %. Can be used with interface name as context.','0','0'), ('3680','10515','{$IFCONTROL}','1','Macro for operational state of the interface for link down trigger. Can be used with interface name as context.','0','0'), ('3684','10515','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','This macro is used in filters of network interfaces discovery rule.','0','0'), ('3685','10515','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status.','0','0'), ('3686','10515','{$NET.IF.IFALIAS.MATCHES}','.*','This macro is used in filters of network interfaces discovery rule.','0','0'), ('3687','10515','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in filters of network interfaces discovery rule.','0','0'), ('3688','10515','{$NET.IF.IFDESCR.MATCHES}','.*','This macro is used in filters of network interfaces discovery rule.','0','0'), ('3689','10515','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in filters of network interfaces discovery rule.','0','0'), ('3691','10515','{$NET.IF.IFNAME.NOT_MATCHES}','(^pflog[0-9.]*$|^pfsync[0-9.]*$)','This macro is used in filters of network interfaces discovery rule.','0','0'), ('3692','10515','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','This macro is used in filters of network interfaces discovery rule.','0','0'), ('3693','10515','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6).','0','0'), ('3694','10515','{$NET.IF.IFTYPE.MATCHES}','.*','This macro is used in filters of network interfaces discovery rule.','0','0'), ('3695','10515','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in filters of network interfaces discovery rule.','0','0'), ('3696','10515','{$SNMP.TIMEOUT}','5m','The time interval for SNMP availability trigger.','0','0'), ('3697','10515','{$SOURCE.TRACKING.TABLE.UTIL.MAX}','90','Threshold of source tracking table utilization trigger in %.','0','0'), ('3698','10515','{$STATE.TABLE.UTIL.MAX}','90','Threshold of state table utilization trigger in %.','0','0'), ('3710','10173','{$VMWARE.PASSWORD}','','VMware service `{$USERNAME}` user password.','1','0'), ('3711','10173','{$VMWARE.URL}','','VMware service (vCenter or ESX hypervisor) SDK URL (https://servername/sdk).','0','0'), ('3712','10173','{$VMWARE.USERNAME}','','VMware service user name.','0','0'), ('3713','10174','{$VMWARE.PASSWORD}','','VMware service `{$USERNAME}` user password.','1','0'), ('3714','10174','{$VMWARE.URL}','','VMware service (vCenter or ESX hypervisor) SDK URL (https://servername/sdk).','0','0'), ('3715','10174','{$VMWARE.USERNAME}','','VMware service user name.','0','0'), ('3716','10175','{$VMWARE.PASSWORD}','','VMware service `{$USERNAME}` user password.','1','0'), ('3717','10175','{$VMWARE.URL}','','VMware service (vCenter or ESX hypervisor) SDK URL (https://servername/sdk).','0','0'), ('3718','10175','{$VMWARE.USERNAME}','','VMware service user name.','0','0'), ('3719','10366','{$VMWARE.PASSWORD}','','VMware service `{$USERNAME}` user password.','1','0'), ('3720','10366','{$VMWARE.URL}','','VMware service (vCenter or ESX hypervisor) SDK URL (https://servername/sdk).','0','0'), ('3721','10366','{$VMWARE.USERNAME}','','VMware service user name.','0','0'), ('3722','10048','{$ZABBIX.PROXY.UTIL.MAX}','75','Default maximum threshold for percentage utilization triggers (use macro context for specification).','0','0'), ('3723','10048','{$ZABBIX.PROXY.UTIL.MIN}','65','Default minimum threshold for percentage utilization triggers (use macro context for specification).','0','0'), ('3724','10262','{$ZABBIX.PROXY.ADDRESS}','','IP/DNS/network mask list of proxies to be remotely queried (default is 127.0.0.1).','0','0'), ('3725','10262','{$ZABBIX.PROXY.PORT}','','Port of proxy to be remotely queried (default is 10051).','0','0'), ('3726','10262','{$ZABBIX.PROXY.UTIL.MAX}','75','Default maximum threshold for percentage utilization triggers (use macro context for specification).','0','0'), ('3727','10262','{$ZABBIX.PROXY.UTIL.MIN}','65','Default minimum threshold for percentage utilization triggers (use macro context for specification).','0','0'), ('3728','10357','{$PG.PASSWORD}','','PostgreSQL user password.','0','0'), ('3743','10207','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('3744','10207','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('3745','10207','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('3746','10207','{$IF.UTIL.MAX}','90','','0','0'), ('3747','10207','{$IFCONTROL}','1','','0','0'), ('3748','10207','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','','0','0'), ('3749','10207','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0','0'), ('3750','10207','{$NET.IF.IFALIAS.MATCHES}','.*','','0','0'), ('3751','10207','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('3752','10207','{$NET.IF.IFDESCR.MATCHES}','.*','','0','0'), ('3753','10207','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('3754','10207','{$NET.IF.IFNAME.MATCHES}','^.*$','','0','0'), ('3755','10207','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0','0'), ('3756','10207','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0','0'), ('3757','10207','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0','0'), ('3758','10207','{$NET.IF.IFTYPE.MATCHES}','.*','','0','0'), ('3759','10207','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('3760','10207','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('3761','10254','{$CPU.UTIL.CRIT}','90','','0','0'), ('3762','10254','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('3763','10254','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('3764','10254','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('3765','10254','{$IF.UTIL.MAX}','90','','0','0'), ('3766','10254','{$IFCONTROL}','1','','0','0'), ('3767','10254','{$MEMORY.NAME.MATCHES}','.*','This macro is used in memory discovery. Can be overridden on the host or linked template level.','0','0'), ('3768','10254','{$MEMORY.TYPE.MATCHES}',E'.*(\\.2|hrStorageRam)$','This macro is used in memory discovery. Can be overridden on the host or linked template level.','0','0'), ('3769','10254','{$MEMORY.TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in memory discovery. Can be overridden on the host or linked template level if you need to filter out results.','0','0'), ('3770','10254','{$MEMORY.UTIL.MAX}','90','The warning threshold of the "Physical memory: Memory utilization" item.','0','0'), ('3771','10254','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','','0','0'), ('3772','10254','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0','0'), ('3773','10254','{$NET.IF.IFALIAS.MATCHES}','.*','','0','0'), ('3774','10254','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('3775','10254','{$NET.IF.IFDESCR.MATCHES}','.*','','0','0'), ('3776','10254','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('3777','10254','{$NET.IF.IFNAME.MATCHES}','^.*$','','0','0'), ('3778','10254','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0','0'), ('3779','10254','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0','0'), ('3780','10254','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0','0'), ('3781','10254','{$NET.IF.IFTYPE.MATCHES}','.*','','0','0'), ('3782','10254','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('3783','10254','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('3784','10254','{$VFS.FS.FSNAME.MATCHES}','.+','Used in filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('3785','10254','{$VFS.FS.FSNAME.NOT_MATCHES}','^(/dev|/sys|/run|/proc|.+/shm$)','Used in filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('3786','10254','{$VFS.FS.FSTYPE.MATCHES}',E'.*(\\.4|\\.9|hrStorageFixedDisk|hrStorageFlashMemory)$','Used in filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('3787','10254','{$VFS.FS.FSTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('3788','10208','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('3789','10208','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('3790','10208','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('3791','10208','{$IF.UTIL.MAX}','90','','0','0'), ('3792','10208','{$IFCONTROL}','1','','0','0'), ('3793','10208','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','','0','0'), ('3794','10208','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0','0'), ('3795','10208','{$NET.IF.IFALIAS.MATCHES}','.*','','0','0'), ('3796','10208','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('3797','10208','{$NET.IF.IFDESCR.MATCHES}','.*','','0','0'), ('3798','10208','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('3799','10208','{$NET.IF.IFNAME.MATCHES}','^.*$','','0','0'), ('3800','10208','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0','0'), ('3801','10208','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0','0'), ('3802','10208','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0','0'), ('3803','10208','{$NET.IF.IFTYPE.MATCHES}','.*','','0','0'), ('3804','10208','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('3805','10208','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('3806','10210','{$CPU.UTIL.CRIT}','90','','0','0'), ('3807','10210','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('3808','10210','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('3809','10210','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('3810','10210','{$IF.UTIL.MAX}','90','','0','0'), ('3811','10210','{$IFCONTROL}','1','','0','0'), ('3812','10210','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3813','10210','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','','0','0'), ('3814','10210','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0','0'), ('3815','10210','{$NET.IF.IFALIAS.MATCHES}','.*','','0','0'), ('3816','10210','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('3817','10210','{$NET.IF.IFDESCR.MATCHES}','.*','','0','0'), ('3818','10210','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('3819','10210','{$NET.IF.IFNAME.MATCHES}','^.*$','','0','0'), ('3820','10210','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0','0'), ('3821','10210','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0','0'), ('3822','10210','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0','0'), ('3823','10210','{$NET.IF.IFTYPE.MATCHES}','.*','','0','0'), ('3824','10210','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('3825','10210','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('3826','10211','{$CPU.UTIL.CRIT}','90','','0','0'), ('3827','10211','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('3828','10211','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('3829','10211','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('3830','10211','{$IF.UTIL.MAX}','90','','0','0'), ('3831','10211','{$IFCONTROL}','1','','0','0'), ('3832','10211','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3833','10211','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','','0','0'), ('3834','10211','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0','0'), ('3835','10211','{$NET.IF.IFALIAS.MATCHES}','.*','','0','0'), ('3836','10211','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('3837','10211','{$NET.IF.IFDESCR.MATCHES}','.*','','0','0'), ('3838','10211','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('3839','10211','{$NET.IF.IFNAME.MATCHES}','^.*$','','0','0'), ('3840','10211','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0','0'), ('3841','10211','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0','0'), ('3842','10211','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0','0'), ('3843','10211','{$NET.IF.IFTYPE.MATCHES}','.*','','0','0'), ('3844','10211','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('3845','10211','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('3846','10220','{$CPU.UTIL.CRIT}','90','','0','0'), ('3847','10220','{$FAN_CRIT_STATUS:"critical"}','3','','0','0'), ('3848','10220','{$FAN_CRIT_STATUS:"shutdown"}','4','','0','0'), ('3849','10220','{$FAN_WARN_STATUS:"notFunctioning"}','6','','0','0'), ('3850','10220','{$FAN_WARN_STATUS:"warning"}','2','','0','0'), ('3851','10220','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('3852','10220','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('3853','10220','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3854','10220','{$PSU_CRIT_STATUS:"critical"}','3','','0','0'), ('3855','10220','{$PSU_CRIT_STATUS:"shutdown"}','4','','0','0'), ('3856','10220','{$PSU_WARN_STATUS:"notFunctioning"}','6','','0','0'), ('3857','10220','{$PSU_WARN_STATUS:"warning"}','2','','0','0'), ('3858','10220','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('3859','10220','{$TEMP_CRIT}','60','','0','0'), ('3860','10220','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3861','10220','{$TEMP_CRIT_LOW}','5','','0','0'), ('3862','10220','{$TEMP_CRIT_STATUS}','3','','0','0'), ('3863','10220','{$TEMP_DISASTER_STATUS}','4','','0','0'), ('3864','10220','{$TEMP_WARN}','50','','0','0'), ('3865','10220','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3866','10220','{$TEMP_WARN_STATUS}','2','','0','0'), ('3867','10218','{$CPU.UTIL.CRIT}','90','','0','0'), ('3868','10218','{$FAN_CRIT_STATUS:"critical"}','3','','0','0'), ('3869','10218','{$FAN_CRIT_STATUS:"shutdown"}','4','','0','0'), ('3870','10218','{$FAN_WARN_STATUS:"notFunctioning"}','6','','0','0'), ('3871','10218','{$FAN_WARN_STATUS:"warning"}','2','','0','0'), ('3872','10218','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('3873','10218','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('3874','10218','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('3875','10218','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('3876','10218','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('3877','10218','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3878','10218','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('3879','10218','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('3880','10218','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('3881','10218','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('3882','10218','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('3883','10218','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('3884','10218','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('3885','10218','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('3886','10218','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('3887','10218','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('3888','10218','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('3889','10218','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('3890','10218','{$PSU_CRIT_STATUS:"critical"}','3','','0','0'), ('3891','10218','{$PSU_CRIT_STATUS:"shutdown"}','4','','0','0'), ('3892','10218','{$PSU_WARN_STATUS:"notFunctioning"}','6','','0','0'), ('3893','10218','{$PSU_WARN_STATUS:"warning"}','2','','0','0'), ('3894','10218','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('3895','10218','{$TEMP_CRIT}','60','','0','0'), ('3896','10218','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3897','10218','{$TEMP_CRIT_LOW}','5','','0','0'), ('3898','10218','{$TEMP_CRIT_STATUS}','3','','0','0'), ('3899','10218','{$TEMP_DISASTER_STATUS}','4','','0','0'), ('3900','10218','{$TEMP_WARN}','50','','0','0'), ('3901','10218','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3902','10218','{$TEMP_WARN_STATUS}','2','','0','0'), ('3903','10253','{$CPU.UTIL.CRIT}','90','','0','0'), ('3904','10253','{$FAN_CRIT_STATUS:"critical"}','3','','0','0'), ('3905','10253','{$FAN_CRIT_STATUS:"shutdown"}','4','','0','0'), ('3906','10253','{$FAN_WARN_STATUS:"notFunctioning"}','6','','0','0'), ('3907','10253','{$FAN_WARN_STATUS:"warning"}','2','','0','0'), ('3908','10253','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('3909','10253','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('3910','10253','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('3911','10253','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('3912','10253','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('3913','10253','{$MEMORY.UTIL.MAX}','90','','0','0'), ('3914','10253','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('3915','10253','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('3916','10253','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('3917','10253','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('3918','10253','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('3919','10253','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('3920','10253','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('3921','10253','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('3922','10253','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('3923','10253','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('3924','10253','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('3925','10253','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('3926','10253','{$PSU_CRIT_STATUS:"critical"}','3','','0','0'), ('3927','10253','{$PSU_CRIT_STATUS:"shutdown"}','4','','0','0'), ('3928','10253','{$PSU_WARN_STATUS:"notFunctioning"}','6','','0','0'), ('3929','10253','{$PSU_WARN_STATUS:"warning"}','2','','0','0'), ('3930','10253','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('3931','10253','{$TEMP_CRIT}','60','','0','0'), ('3932','10253','{$TEMP_CRIT:"CPU"}','75','','0','0'), ('3933','10253','{$TEMP_CRIT_LOW}','5','','0','0'), ('3934','10253','{$TEMP_CRIT_STATUS}','3','','0','0'), ('3935','10253','{$TEMP_DISASTER_STATUS}','4','','0','0'), ('3936','10253','{$TEMP_WARN}','50','','0','0'), ('3937','10253','{$TEMP_WARN:"CPU"}','70','','0','0'), ('3938','10253','{$TEMP_WARN_STATUS}','2','','0','0'), ('3939','10221','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('3940','10221','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('3941','10221','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('3942','10221','{$IF.UTIL.MAX}','90','','0','0'), ('3943','10221','{$IFCONTROL}','1','','0','0'), ('3944','10221','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','','0','0'), ('3945','10221','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0','0'), ('3946','10221','{$NET.IF.IFALIAS.MATCHES}','.*','','0','0'), ('3947','10221','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('3948','10221','{$NET.IF.IFDESCR.MATCHES}','.*','','0','0'), ('3949','10221','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('3950','10221','{$NET.IF.IFNAME.MATCHES}','^.*$','','0','0'), ('3951','10221','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0','0'), ('3952','10221','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0','0'), ('3953','10221','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0','0'), ('3954','10221','{$NET.IF.IFTYPE.MATCHES}','.*','','0','0'), ('3955','10221','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('3956','10221','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('3957','10222','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('3958','10222','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('3959','10222','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('3960','10222','{$IF.UTIL.MAX}','90','','0','0'), ('3961','10222','{$IFCONTROL}','1','','0','0'), ('3962','10222','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','','0','0'), ('3963','10222','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0','0'), ('3964','10222','{$NET.IF.IFALIAS.MATCHES}','.*','','0','0'), ('3965','10222','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('3966','10222','{$NET.IF.IFDESCR.MATCHES}','.*','','0','0'), ('3967','10222','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('3968','10222','{$NET.IF.IFNAME.MATCHES}','^.*$','','0','0'), ('3969','10222','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0','0'), ('3970','10222','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0','0'), ('3971','10222','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0','0'), ('3972','10222','{$NET.IF.IFTYPE.MATCHES}','.*','','0','0'), ('3973','10222','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('3974','10222','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('3975','10223','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('3976','10223','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('3977','10223','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('3978','10223','{$IF.UTIL.MAX}','90','','0','0'), ('3979','10223','{$IFCONTROL}','1','','0','0'), ('3980','10223','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','','0','0'), ('3981','10223','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0','0'), ('3982','10223','{$NET.IF.IFALIAS.MATCHES}','.*','','0','0'), ('3983','10223','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('3984','10223','{$NET.IF.IFDESCR.MATCHES}','.*','','0','0'), ('3985','10223','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('3986','10223','{$NET.IF.IFNAME.MATCHES}','^.*$','','0','0'), ('3987','10223','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0','0'), ('3988','10223','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0','0'), ('3989','10223','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0','0'), ('3990','10223','{$NET.IF.IFTYPE.MATCHES}','.*','','0','0'), ('3991','10223','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('3992','10223','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('3993','10224','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('3994','10224','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('3995','10224','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('3996','10224','{$IF.UTIL.MAX}','90','','0','0'), ('3997','10224','{$IFCONTROL}','1','','0','0'), ('3998','10224','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','','0','0'), ('3999','10224','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0','0'), ('4000','10224','{$NET.IF.IFALIAS.MATCHES}','.*','','0','0'), ('4001','10224','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('4002','10224','{$NET.IF.IFDESCR.MATCHES}','.*','','0','0'), ('4003','10224','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('4004','10224','{$NET.IF.IFNAME.MATCHES}','^.*$','','0','0'), ('4005','10224','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0','0'), ('4006','10224','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0','0'), ('4007','10224','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0','0'), ('4008','10224','{$NET.IF.IFTYPE.MATCHES}','.*','','0','0'), ('4009','10224','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('4010','10224','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4011','10226','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4012','10226','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4013','10226','{$IF.ERRORS.WARN}','2','','0','0'), ('4014','10226','{$IF.UTIL.MAX}','95','','0','0'), ('4015','10226','{$IFCONTROL}','1','','0','0'), ('4016','10226','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','','0','0'), ('4017','10226','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0','0'), ('4018','10226','{$NET.IF.IFDESCR.MATCHES}','.*','','0','0'), ('4019','10226','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('4020','10226','{$NET.IF.IFNAME.MATCHES}','^.*$','','0','0'), ('4021','10226','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0','0'), ('4022','10226','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0','0'), ('4023','10226','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0','0'), ('4024','10226','{$NET.IF.IFTYPE.MATCHES}','.*','','0','0'), ('4025','10226','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('4026','10226','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4027','10227','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4028','10227','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4029','10227','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4030','10227','{$IF.UTIL.MAX}','90','','0','0'), ('4031','10227','{$IFCONTROL}','1','','0','0'), ('4032','10227','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','','0','0'), ('4033','10227','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0','0'), ('4034','10227','{$NET.IF.IFALIAS.MATCHES}','.*','','0','0'), ('4035','10227','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('4036','10227','{$NET.IF.IFDESCR.MATCHES}','.*','','0','0'), ('4037','10227','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('4038','10227','{$NET.IF.IFNAME.MATCHES}','^.*$','','0','0'), ('4039','10227','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0','0'), ('4040','10227','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0','0'), ('4041','10227','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0','0'), ('4042','10227','{$NET.IF.IFTYPE.MATCHES}','.*','','0','0'), ('4043','10227','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('4044','10227','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4045','10250','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4046','10250','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4047','10250','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4048','10250','{$IF.UTIL.MAX}','90','','0','0'), ('4049','10250','{$IFCONTROL}','1','','0','0'), ('4050','10250','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','','0','0'), ('4051','10250','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0','0'), ('4052','10250','{$NET.IF.IFALIAS.MATCHES}','.*','','0','0'), ('4053','10250','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('4054','10250','{$NET.IF.IFDESCR.MATCHES}','.*','','0','0'), ('4055','10250','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('4056','10250','{$NET.IF.IFNAME.MATCHES}','^.*$','','0','0'), ('4057','10250','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0','0'), ('4058','10250','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0','0'), ('4059','10250','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0','0'), ('4060','10250','{$NET.IF.IFTYPE.MATCHES}','.*','','0','0'), ('4061','10250','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('4062','10250','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4063','10229','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4064','10229','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4065','10229','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4066','10229','{$IF.UTIL.MAX}','90','','0','0'), ('4067','10229','{$IFCONTROL}','1','','0','0'), ('4068','10229','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','','0','0'), ('4069','10229','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0','0'), ('4070','10229','{$NET.IF.IFALIAS.MATCHES}','.*','','0','0'), ('4071','10229','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('4072','10229','{$NET.IF.IFDESCR.MATCHES}','.*','','0','0'), ('4073','10229','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('4074','10229','{$NET.IF.IFNAME.MATCHES}','^.*$','','0','0'), ('4075','10229','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0','0'), ('4076','10229','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0','0'), ('4077','10229','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0','0'), ('4078','10229','{$NET.IF.IFTYPE.MATCHES}','.*','','0','0'), ('4079','10229','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('4080','10229','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4081','10230','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4082','10230','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4083','10230','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4084','10230','{$IF.UTIL.MAX}','90','','0','0'), ('4085','10230','{$IFCONTROL}','1','','0','0'), ('4086','10230','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','','0','0'), ('4087','10230','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0','0'), ('4088','10230','{$NET.IF.IFALIAS.MATCHES}','.*','','0','0'), ('4089','10230','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('4090','10230','{$NET.IF.IFDESCR.MATCHES}','.*','','0','0'), ('4091','10230','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('4092','10230','{$NET.IF.IFNAME.MATCHES}','^.*$','','0','0'), ('4093','10230','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0','0'), ('4094','10230','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0','0'), ('4095','10230','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0','0'), ('4096','10230','{$NET.IF.IFTYPE.MATCHES}','.*','','0','0'), ('4097','10230','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('4098','10230','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4099','10231','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4100','10231','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4101','10231','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4102','10231','{$IF.UTIL.MAX}','90','','0','0'), ('4103','10231','{$IFCONTROL}','1','','0','0'), ('4104','10231','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','','0','0'), ('4105','10231','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0','0'), ('4106','10231','{$NET.IF.IFALIAS.MATCHES}','.*','','0','0'), ('4107','10231','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('4108','10231','{$NET.IF.IFDESCR.MATCHES}','.*','','0','0'), ('4109','10231','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('4110','10231','{$NET.IF.IFNAME.MATCHES}','^.*$','','0','0'), ('4111','10231','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0','0'), ('4112','10231','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0','0'), ('4113','10231','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0','0'), ('4114','10231','{$NET.IF.IFTYPE.MATCHES}','.*','','0','0'), ('4115','10231','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('4116','10231','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4117','10449','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4118','10449','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4119','10449','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4120','10449','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4121','10449','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4122','10449','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4123','10449','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4124','10449','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4125','10449','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4126','10449','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4127','10449','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4128','10449','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4129','10449','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4130','10449','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4131','10449','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4132','10449','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4133','10449','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4134','10449','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4135','10450','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4136','10450','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4137','10450','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4138','10450','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4139','10450','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4140','10450','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4141','10450','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4142','10450','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4143','10450','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4144','10450','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4145','10450','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4146','10450','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4147','10450','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4148','10450','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4149','10450','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4150','10450','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4151','10450','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4152','10450','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4153','10451','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4154','10451','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4155','10451','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4156','10451','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4157','10451','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4158','10451','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4159','10451','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4160','10451','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4161','10451','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4162','10451','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4163','10451','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4164','10451','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4165','10451','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4166','10451','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4167','10451','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4168','10451','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4169','10451','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4170','10451','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4171','10452','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4172','10452','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4173','10452','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4174','10452','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4175','10452','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4176','10452','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4177','10452','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4178','10452','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4179','10452','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4180','10452','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4181','10452','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4182','10452','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4183','10452','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4184','10452','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4185','10452','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4186','10452','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4187','10452','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4188','10452','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4189','10453','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4190','10453','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4191','10453','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4192','10453','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4193','10453','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4194','10453','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4195','10453','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4196','10453','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4197','10453','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4198','10453','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4199','10453','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4200','10453','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4201','10453','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4202','10453','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4203','10453','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4204','10453','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4205','10453','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4206','10453','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4207','10454','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4208','10454','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4209','10454','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4210','10454','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4211','10454','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4212','10454','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4213','10454','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4214','10454','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4215','10454','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4216','10454','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4217','10454','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4218','10454','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4219','10454','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4220','10454','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4221','10454','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4222','10454','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4223','10454','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4224','10454','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4225','10455','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4226','10455','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4227','10455','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4228','10455','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4229','10455','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4230','10455','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4231','10455','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4232','10455','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4233','10455','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4234','10455','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4235','10455','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4236','10455','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4237','10455','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4238','10455','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4239','10455','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4240','10455','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4241','10455','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4242','10455','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4243','10456','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4244','10456','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4245','10456','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4246','10456','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4247','10456','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4248','10456','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4249','10456','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4250','10456','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4251','10456','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4252','10456','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4253','10456','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4254','10456','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4255','10456','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4256','10456','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4257','10456','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4258','10456','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4259','10456','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4260','10456','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4261','10457','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4262','10457','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4263','10457','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4264','10457','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4265','10457','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4266','10457','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4267','10457','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4268','10457','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4269','10457','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4270','10457','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4271','10457','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4272','10457','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4273','10457','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4274','10457','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4275','10457','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4276','10457','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4277','10457','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4278','10457','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4279','10458','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4280','10458','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4281','10458','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4282','10458','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4283','10458','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4284','10458','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4285','10458','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4286','10458','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4287','10458','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4288','10458','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4289','10458','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4290','10458','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4291','10458','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4292','10458','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4293','10458','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4294','10458','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4295','10458','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4296','10458','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4297','10459','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4298','10459','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4299','10459','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4300','10459','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4301','10459','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4302','10459','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4303','10459','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4304','10459','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4305','10459','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4306','10459','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4307','10459','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4308','10459','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4309','10459','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4310','10459','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4311','10459','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4312','10459','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4313','10459','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4314','10459','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4315','10460','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4316','10460','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4317','10460','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4318','10460','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4319','10460','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4320','10460','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4321','10460','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4322','10460','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4323','10460','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4324','10460','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4325','10460','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4326','10460','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4327','10460','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4328','10460','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4329','10460','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4330','10460','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4331','10460','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4332','10460','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4333','10461','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4334','10461','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4335','10461','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4336','10461','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4337','10461','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4338','10461','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4339','10461','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4340','10461','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4341','10461','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4342','10461','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4343','10461','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4344','10461','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4345','10461','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4346','10461','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4347','10461','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4348','10461','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4349','10461','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4350','10461','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4351','10462','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4352','10462','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4353','10462','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4354','10462','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4355','10462','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4356','10462','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4357','10462','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4358','10462','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4359','10462','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4360','10462','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4361','10462','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4362','10462','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4363','10462','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4364','10462','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4365','10462','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4366','10462','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4367','10462','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4368','10462','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4369','10463','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4370','10463','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4371','10463','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4372','10463','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4373','10463','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4374','10463','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4375','10463','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4376','10463','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4377','10463','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4378','10463','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4379','10463','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4380','10463','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4381','10463','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4382','10463','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4383','10463','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4384','10463','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4385','10463','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4386','10463','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4387','10464','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4388','10464','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4389','10464','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4390','10464','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4391','10464','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4392','10464','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4393','10464','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4394','10464','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4395','10464','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4396','10464','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4397','10464','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4398','10464','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4399','10464','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4400','10464','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4401','10464','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4402','10464','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4403','10464','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4404','10464','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4405','10465','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4406','10465','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4407','10465','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4408','10465','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4409','10465','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4410','10465','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4411','10465','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4412','10465','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4413','10465','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4414','10465','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4415','10465','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4416','10465','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4417','10465','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4418','10465','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4419','10465','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4420','10465','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4421','10465','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4422','10465','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4423','10466','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4424','10466','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4425','10466','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4426','10466','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4427','10466','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4428','10466','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4429','10466','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4430','10466','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4431','10466','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4432','10466','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4433','10466','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4434','10466','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4435','10466','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4436','10466','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4437','10466','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4438','10466','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4439','10466','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4440','10466','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4441','10467','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4442','10467','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4443','10467','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4444','10467','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4445','10467','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4446','10467','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4447','10467','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4448','10467','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4449','10467','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4450','10467','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4451','10467','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4452','10467','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4453','10467','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4454','10467','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4455','10467','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4456','10467','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4457','10467','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4458','10467','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4459','10468','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4460','10468','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4461','10468','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4462','10468','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4463','10468','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4464','10468','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4465','10468','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4466','10468','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4467','10468','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4468','10468','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4469','10468','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4470','10468','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4471','10468','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4472','10468','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4473','10468','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4474','10468','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4475','10468','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4476','10468','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4477','10469','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4478','10469','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4479','10469','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4480','10469','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4481','10469','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4482','10469','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4483','10469','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4484','10469','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4485','10469','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4486','10469','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4487','10469','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4488','10469','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4489','10469','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4490','10469','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4491','10469','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4492','10469','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4493','10469','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4494','10469','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4495','10470','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4496','10470','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4497','10470','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4498','10470','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4499','10470','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4500','10470','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4501','10470','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4502','10470','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4503','10470','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4504','10470','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4505','10470','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4506','10470','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4507','10470','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4508','10470','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4509','10470','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4510','10470','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4511','10470','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4512','10470','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4513','10471','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4514','10471','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4515','10471','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4516','10471','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4517','10471','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4518','10471','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4519','10471','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4520','10471','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4521','10471','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4522','10471','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4523','10471','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4524','10471','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4525','10471','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4526','10471','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4527','10471','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4528','10471','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4529','10471','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4530','10471','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4531','10472','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4532','10472','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4533','10472','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4534','10472','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4535','10472','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4536','10472','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4537','10472','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4538','10472','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4539','10472','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4540','10472','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4541','10472','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4542','10472','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4543','10472','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4544','10472','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4545','10472','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4546','10472','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4547','10472','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4548','10472','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4549','10473','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4550','10473','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4551','10473','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4552','10473','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4553','10473','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4554','10473','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4555','10473','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4556','10473','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4557','10473','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4558','10473','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4559','10473','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4560','10473','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4561','10473','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4562','10473','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4563','10473','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4564','10473','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4565','10473','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4566','10473','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4567','10474','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4568','10474','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4569','10474','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4570','10474','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4571','10474','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4572','10474','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4573','10474','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4574','10474','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4575','10474','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4576','10474','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4577','10474','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4578','10474','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4579','10474','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4580','10474','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4581','10474','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4582','10474','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4583','10474','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4584','10474','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4585','10475','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4586','10475','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4587','10475','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4588','10475','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4589','10475','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4590','10475','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4591','10475','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4592','10475','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4593','10475','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4594','10475','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4595','10475','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4596','10475','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4597','10475','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4598','10475','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4599','10475','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4600','10475','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4601','10475','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4602','10475','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4603','10476','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4604','10476','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4605','10476','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4606','10476','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4607','10476','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4608','10476','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4609','10476','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4610','10476','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4611','10476','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4612','10476','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4613','10476','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4614','10476','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4615','10476','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4616','10476','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4617','10476','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4618','10476','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4619','10476','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4620','10476','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4621','10477','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4622','10477','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4623','10477','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4624','10477','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4625','10477','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4626','10477','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4627','10477','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4628','10477','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4629','10477','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4630','10477','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4631','10477','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4632','10477','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4633','10477','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4634','10477','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4635','10477','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4636','10477','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4637','10477','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4638','10477','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4639','10478','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4640','10478','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4641','10478','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4642','10478','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4643','10478','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4644','10478','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4645','10478','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4646','10478','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4647','10478','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4648','10478','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4649','10478','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4650','10478','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4651','10478','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4652','10478','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4653','10478','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4654','10478','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4655','10478','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4656','10478','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4657','10479','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4658','10479','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4659','10479','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4660','10479','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4661','10479','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4662','10479','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4663','10479','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4664','10479','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4665','10479','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4666','10479','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4667','10479','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4668','10479','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4669','10479','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4670','10479','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4671','10479','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4672','10479','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4673','10479','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4674','10479','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4675','10480','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4676','10480','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4677','10480','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4678','10480','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4679','10480','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4680','10480','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4681','10480','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4682','10480','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4683','10480','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4684','10480','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4685','10480','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4686','10480','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4687','10480','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4688','10480','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4689','10480','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4690','10480','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4691','10480','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4692','10480','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4693','10481','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4694','10481','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4695','10481','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4696','10481','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4697','10481','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4698','10481','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4699','10481','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4700','10481','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4701','10481','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4702','10481','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4703','10481','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4704','10481','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4705','10481','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4706','10481','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4707','10481','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4708','10481','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4709','10481','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4710','10481','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4711','10482','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4712','10482','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4713','10482','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4714','10482','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4715','10482','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4716','10482','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4717','10482','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4718','10482','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4719','10482','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4720','10482','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4721','10482','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4722','10482','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4723','10482','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4724','10482','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4725','10482','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4726','10482','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4727','10482','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4728','10482','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4729','10483','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4730','10483','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4731','10483','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4732','10483','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4733','10483','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4734','10483','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4735','10483','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4736','10483','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4737','10483','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4738','10483','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4739','10483','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4740','10483','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4741','10483','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4742','10483','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4743','10483','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4744','10483','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4745','10483','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4746','10483','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4747','10484','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4748','10484','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4749','10484','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4750','10484','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4751','10484','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4752','10484','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4753','10484','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4754','10484','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4755','10484','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4756','10484','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4757','10484','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4758','10484','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4759','10484','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4760','10484','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4761','10484','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4762','10484','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4763','10484','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4764','10484','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4765','10485','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4766','10485','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4767','10485','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4768','10485','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4769','10485','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4770','10485','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4771','10485','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4772','10485','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4773','10485','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4774','10485','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4775','10485','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4776','10485','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4777','10485','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4778','10485','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4779','10485','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4780','10485','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4781','10485','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4782','10485','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4783','10486','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4784','10486','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4785','10486','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4786','10486','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4787','10486','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4788','10486','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4789','10486','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4790','10486','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4791','10486','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4792','10486','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4793','10486','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4794','10486','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4795','10486','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4796','10486','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4797','10486','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4798','10486','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4799','10486','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4800','10486','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4801','10487','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4802','10487','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4803','10487','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4804','10487','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4805','10487','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4806','10487','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4807','10487','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4808','10487','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4809','10487','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4810','10487','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4811','10487','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4812','10487','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4813','10487','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4814','10487','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4815','10487','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4816','10487','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4817','10487','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4818','10487','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4819','10488','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4820','10488','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4821','10488','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4822','10488','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4823','10488','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4824','10488','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4825','10488','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4826','10488','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4827','10488','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4828','10488','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4829','10488','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4830','10488','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4831','10488','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4832','10488','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4833','10488','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4834','10488','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4835','10488','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4836','10488','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4837','10489','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4838','10489','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4839','10489','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4840','10489','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4841','10489','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4842','10489','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4843','10489','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4844','10489','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4845','10489','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4846','10489','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4847','10489','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4848','10489','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4849','10489','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4850','10489','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4851','10489','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4852','10489','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4853','10489','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4854','10489','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4855','10490','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4856','10490','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4857','10490','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4858','10490','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4859','10490','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4860','10490','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4861','10490','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4862','10490','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4863','10490','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4864','10490','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4865','10490','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4866','10490','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4867','10490','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4868','10490','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4869','10490','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4870','10490','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4871','10490','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4872','10490','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4873','10491','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4874','10491','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4875','10491','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4876','10491','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4877','10491','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4878','10491','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4879','10491','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4880','10491','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4881','10491','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4882','10491','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4883','10491','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4884','10491','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4885','10491','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4886','10491','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4887','10491','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4888','10491','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4889','10491','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4890','10491','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4891','10492','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4892','10492','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4893','10492','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4894','10492','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4895','10492','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4896','10492','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4897','10492','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4898','10492','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4899','10492','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4900','10492','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4901','10492','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4902','10492','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4903','10492','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4904','10492','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4905','10492','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4906','10492','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4907','10492','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4908','10492','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4909','10493','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4910','10493','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4911','10493','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4912','10493','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4913','10493','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4914','10493','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4915','10493','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4916','10493','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4917','10493','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4918','10493','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4919','10493','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4920','10493','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4921','10493','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4922','10493','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4923','10493','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4924','10493','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4925','10493','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4926','10493','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4927','10494','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4928','10494','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4929','10494','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4930','10494','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4931','10494','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4932','10494','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4933','10494','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4934','10494','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4935','10494','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4936','10494','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4937','10494','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4938','10494','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4939','10494','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4940','10494','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4941','10494','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4942','10494','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4943','10494','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4944','10494','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4945','10495','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4946','10495','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4947','10495','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4948','10495','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4949','10495','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4950','10495','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4951','10495','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4952','10495','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4953','10495','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4954','10495','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4955','10495','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4956','10495','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4957','10495','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4958','10495','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4959','10495','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4960','10495','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4961','10495','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4962','10495','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4963','10496','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4964','10496','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4965','10496','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4966','10496','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4967','10496','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4968','10496','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4969','10496','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4970','10496','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4971','10496','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4972','10496','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4973','10496','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4974','10496','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4975','10496','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4976','10496','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4977','10496','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4978','10496','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4979','10496','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4980','10496','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4981','10497','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('4982','10497','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('4983','10497','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('4984','10497','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('4985','10497','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('4986','10497','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('4987','10497','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('4988','10497','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4989','10497','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4990','10497','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4991','10497','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4992','10497','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4993','10497','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('4994','10497','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('4995','10497','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('4996','10497','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('4997','10497','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('4998','10497','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('4999','10498','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('5000','10498','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('5001','10498','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('5002','10498','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('5003','10498','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('5004','10498','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('5005','10498','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('5006','10498','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('5007','10498','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('5008','10498','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('5009','10498','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('5010','10498','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('5011','10498','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('5012','10498','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('5013','10498','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('5014','10498','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('5015','10498','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('5016','10498','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('5017','10499','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('5018','10499','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('5019','10499','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('5020','10499','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('5021','10499','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('5022','10499','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('5023','10499','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('5024','10499','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('5025','10499','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('5026','10499','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('5027','10499','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('5028','10499','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('5029','10499','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('5030','10499','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('5031','10499','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('5032','10499','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('5033','10499','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('5034','10499','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('5035','10500','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('5036','10500','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('5037','10500','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('5038','10500','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('5039','10500','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('5040','10500','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('5041','10500','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('5042','10500','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('5043','10500','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('5044','10500','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('5045','10500','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('5046','10500','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('5047','10500','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('5048','10500','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('5049','10500','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('5050','10500','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('5051','10500','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('5052','10500','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('5053','10501','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('5054','10501','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('5055','10501','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('5056','10501','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('5057','10501','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('5058','10501','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('5059','10501','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('5060','10501','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('5061','10501','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('5062','10501','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('5063','10501','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('5064','10501','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('5065','10501','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('5066','10501','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('5067','10501','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('5068','10501','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('5069','10501','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('5070','10501','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('5071','10502','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('5072','10502','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('5073','10502','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('5074','10502','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('5075','10502','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('5076','10502','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('5077','10502','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('5078','10502','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('5079','10502','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('5080','10502','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('5081','10502','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('5082','10502','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('5083','10502','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('5084','10502','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('5085','10502','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('5086','10502','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('5087','10502','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('5088','10502','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('5089','10233','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('5090','10233','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('5091','10233','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('5092','10233','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('5093','10233','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('5094','10233','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('5095','10233','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('5096','10233','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('5097','10233','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('5098','10233','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('5099','10233','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('5100','10233','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('5101','10233','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('5102','10233','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('5103','10233','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('5104','10233','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('5105','10233','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('5106','10233','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('5107','10234','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('5108','10234','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('5109','10234','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('5110','10234','{$IF.UTIL.MAX}','90','','0','0'), ('5111','10234','{$IFCONTROL}','1','','0','0'), ('5112','10234','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','','0','0'), ('5113','10234','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0','0'), ('5114','10234','{$NET.IF.IFALIAS.MATCHES}','.*','','0','0'), ('5115','10234','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('5116','10234','{$NET.IF.IFDESCR.MATCHES}','.*','','0','0'), ('5117','10234','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('5118','10234','{$NET.IF.IFNAME.MATCHES}','^.*$','','0','0'), ('5119','10234','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0','0'), ('5120','10234','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0','0'), ('5121','10234','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0','0'), ('5122','10234','{$NET.IF.IFTYPE.MATCHES}','.*','','0','0'), ('5123','10234','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('5124','10234','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('5125','10235','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('5126','10235','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('5127','10235','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('5128','10235','{$IF.UTIL.MAX}','90','','0','0'), ('5129','10235','{$IFCONTROL}','1','','0','0'), ('5130','10235','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','','0','0'), ('5131','10235','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0','0'), ('5132','10235','{$NET.IF.IFALIAS.MATCHES}','.*','','0','0'), ('5133','10235','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('5134','10235','{$NET.IF.IFDESCR.MATCHES}','.*','','0','0'), ('5135','10235','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('5136','10235','{$NET.IF.IFNAME.MATCHES}','^.*$','','0','0'), ('5137','10235','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0','0'), ('5138','10235','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0','0'), ('5139','10235','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0','0'), ('5140','10235','{$NET.IF.IFTYPE.MATCHES}','.*','','0','0'), ('5141','10235','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('5142','10235','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('5143','10236','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('5144','10236','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('5145','10236','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('5146','10236','{$IF.UTIL.MAX}','95','','0','0'), ('5147','10236','{$IFCONTROL}','1','','0','0'), ('5148','10236','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','','0','0'), ('5149','10236','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0','0'), ('5150','10236','{$NET.IF.IFDESCR.MATCHES}','.*','','0','0'), ('5151','10236','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('5152','10236','{$NET.IF.IFNAME.MATCHES}','^.*$','','0','0'), ('5153','10236','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0','0'), ('5154','10236','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0','0'), ('5155','10236','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0','0'), ('5156','10236','{$NET.IF.IFTYPE.MATCHES}','.*','','0','0'), ('5157','10236','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('5158','10236','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('5159','10237','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('5160','10237','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('5161','10237','{$IF.ERRORS.WARN}','2','','0','0'), ('5162','10237','{$IF.UTIL.MAX}','95','','0','0'), ('5163','10237','{$IFCONTROL}','1','','0','0'), ('5164','10237','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','','0','0'), ('5165','10237','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0','0'), ('5166','10237','{$NET.IF.IFDESCR.MATCHES}','.*','','0','0'), ('5167','10237','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('5168','10237','{$NET.IF.IFNAME.MATCHES}','^.*$','','0','0'), ('5169','10237','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0','0'), ('5170','10237','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0','0'), ('5171','10237','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0','0'), ('5172','10237','{$NET.IF.IFTYPE.MATCHES}','.*','','0','0'), ('5173','10237','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('5174','10237','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('5175','10076','{$AGENT.TIMEOUT}','3m','Timeout after which the agent is considered unavailable. Works only for agents reachable from Zabbix server/proxy (in passive mode).','0','0'), ('5176','10075','{$AGENT.TIMEOUT}','3m','Timeout after which the agent is considered unavailable. Works only for agents reachable from Zabbix server/proxy (in passive mode).','0','0'), ('5177','10077','{$AGENT.TIMEOUT}','3m','The timeout after which the agent is considered unavailable. It works only for the agents reachable from Zabbix server/proxy (in passive mode).','0','0'), ('5178','10001','{$AGENT.TIMEOUT}','3m','Timeout after which agent is considered unavailable. Works only for agents reachable from Zabbix server/proxy (passive mode).','0','0'), ('5179','10001','{$CPU.UTIL.CRIT}','90','Critical threshold of CPU utilization expressed in %.','0','0'), ('5180','10001','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('5181','10001','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('5182','10001','{$KERNEL.MAXFILES.MIN}','256','','0','0'), ('5183','10001','{$KERNEL.MAXPROC.MIN}','1024','','0','0'), ('5184','10001','{$LOAD_AVG_PER_CPU.MAX.WARN}','1.5','The CPU load per core is considered sustainable. If necessary, it can be tuned.','0','0'), ('5185','10001','{$MEMORY.AVAILABLE.MIN}','20M','Used as a threshold in the available memory trigger.','0','0'), ('5186','10001','{$MEMORY.UTIL.MAX}','90','Used as a threshold in the memory utilization trigger.','0','0'), ('5187','10001','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('5188','10001','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9A-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0` bridge by default.','0','0'), ('5189','10001','{$SWAP.PFREE.MIN.WARN}','50','The warning threshold of the minimum free swap.','0','0'), ('5190','10001','{$SYSTEM.FUZZYTIME.MAX}','60s','The upper threshold for difference of system time.','0','0'), ('5191','10001','{$VFS.DEV.DEVNAME.MATCHES}','.+','Used for block device discovery. Can be overridden on the host or linked template level.','0','0'), ('5192','10001','{$VFS.DEV.DEVNAME.NOT_MATCHES}','^(loop[0-9]*|sd[a-z][0-9]+|nbd[0-9]+|sr[0-9]+|fd[0-9]+|dm-[0-9]+|ram[0-9]+|ploop[a-z0-9]+|md[0-9]*|hcp[0-9]*|zram[0-9]*)','Used for block device discovery. Can be overridden on the host or linked template level.','0','0'), ('5193','10001','{$VFS.DEV.READ.AWAIT.WARN}','20','The average response time (in ms) of disk read before the trigger fires.','0','0'), ('5194','10001','{$VFS.DEV.WRITE.AWAIT.WARN}','20','The average response time (in ms) of disk write before the trigger fires.','0','0'), ('5195','10001','{$VFS.FS.FSNAME.MATCHES}','.+','Used for filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('5196','10001','{$VFS.FS.FSNAME.NOT_MATCHES}','^(/dev|/sys|/run|/proc|.+/shm$)','Used for filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('5197','10001','{$VFS.FS.FSTYPE.MATCHES}','^(btrfs|ext2|ext3|ext4|reiser|xfs|ffs|ufs|jfs|jfs2|vxfs|hfs|apfs|refs|ntfs|fat32|zfs)$','Used for filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('5198','10001','{$VFS.FS.FSTYPE.NOT_MATCHES}',E'^\\s$','Used for filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('5199','10001','{$VFS.FS.INODE.PFREE.MIN.CRIT}','10','The critical threshold of the filesystem metadata utilization.','0','0'), ('5200','10001','{$VFS.FS.INODE.PFREE.MIN.WARN}','20','The warning threshold of the filesystem metadata utilization.','0','0'), ('5201','10001','{$VFS.FS.PUSED.MAX.CRIT}','90','The critical threshold of the filesystem utilization.','0','0'), ('5202','10001','{$VFS.FS.PUSED.MAX.WARN}','80','The warning threshold of the filesystem utilization.','0','0'), ('5203','10343','{$AGENT.NODATA_TIMEOUT}','30m','No data timeout for active agents. Consider to keep it relatively high.','0','0'), ('5204','10343','{$CPU.UTIL.CRIT}','90','Critical threshold of CPU utilization expressed in %.','0','0'), ('5205','10343','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('5206','10343','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('5207','10343','{$KERNEL.MAXFILES.MIN}','256','','0','0'), ('5208','10343','{$KERNEL.MAXPROC.MIN}','1024','','0','0'), ('5209','10343','{$LOAD_AVG_PER_CPU.MAX.WARN}','1.5','The CPU load per core is considered sustainable. If necessary, it can be tuned.','0','0'), ('5210','10343','{$MEMORY.AVAILABLE.MIN}','20M','Used as a thresholdin the memory available trigger.','0','0'), ('5211','10343','{$MEMORY.UTIL.MAX}','90','Used as a thresholdin the memory utilization trigger.','0','0'), ('5212','10343','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('5213','10343','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9A-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0` bridge by default.','0','0'), ('5214','10343','{$SWAP.PFREE.MIN.WARN}','50','The warning threshold of the minimum free swap.','0','0'), ('5216','10343','{$VFS.DEV.DEVNAME.MATCHES}','.+','Used for block device discovery. Can be overridden on the host or linked template level.','0','0'), ('5217','10343','{$VFS.DEV.DEVNAME.NOT_MATCHES}','^(loop[0-9]*|sd[a-z][0-9]+|nbd[0-9]+|sr[0-9]+|fd[0-9]+|dm-[0-9]+|ram[0-9]+|ploop[a-z0-9]+|md[0-9]*|hcp[0-9]*|zram[0-9]*)','Used for block device discovery. Can be overridden on the host or linked template level.','0','0'), ('5218','10343','{$VFS.DEV.READ.AWAIT.WARN}','20','The average response time (in ms) of disk read before the trigger fires.','0','0'), ('5219','10343','{$VFS.DEV.WRITE.AWAIT.WARN}','20','The average response time (in ms) of disk write before the trigger fires.','0','0'), ('5220','10343','{$VFS.FS.FSNAME.MATCHES}','.+','Used for filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('5221','10343','{$VFS.FS.FSNAME.NOT_MATCHES}','^(/dev|/sys|/run|/proc|.+/shm$)','Used for filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('5222','10343','{$VFS.FS.FSTYPE.MATCHES}','^(btrfs|ext2|ext3|ext4|reiser|xfs|ffs|ufs|jfs|jfs2|vxfs|hfs|apfs|refs|ntfs|fat32|zfs)$','Used for filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('5223','10343','{$VFS.FS.FSTYPE.NOT_MATCHES}',E'^\\s$','Used for filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('5224','10343','{$VFS.FS.INODE.PFREE.MIN.CRIT}','10','The critical threshold of the filesystem metadata utilization.','0','0'), ('5225','10343','{$VFS.FS.INODE.PFREE.MIN.WARN}','20','The warning threshold of the filesystem metadata utilization.','0','0'), ('5226','10343','{$VFS.FS.PUSED.MAX.CRIT}','90','The critical threshold of the filesystem utilization.','0','0'), ('5227','10343','{$VFS.FS.PUSED.MAX.WARN}','80','The warning threshold of the filesystem utilization.','0','0'), ('5228','10248','{$CPU.UTIL.CRIT}','90','Critical threshold of CPU utilization expressed in %.','0','0'), ('5229','10248','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('5230','10248','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('5231','10248','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('5232','10248','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('5233','10248','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('5234','10248','{$LOAD_AVG_PER_CPU.MAX.WARN}','1.5','Load per CPU considered sustainable. Tune if needed.','0','0'), ('5235','10248','{$MEMORY.AVAILABLE.MIN}','20M','Used as a threshold in the available memory trigger.','0','0'), ('5236','10248','{$MEMORY.UTIL.MAX}','90','Used as a threshold in the memory utilization trigger.','0','0'), ('5237','10248','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('5238','10248','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('5239','10248','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('5240','10248','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('5241','10248','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('5242','10248','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('5243','10248','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('5244','10248','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('5245','10248','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('5246','10248','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('5247','10248','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('5248','10248','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('5249','10248','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('5250','10248','{$SWAP.PFREE.MIN.WARN}','50','The warning threshold of the minimum free swap.','0','0'), ('5251','10248','{$VFS.DEV.DEVNAME.MATCHES}','.+','Used in block device discovery. Can be overridden on the host or linked template level.','0','0'), ('5252','10248','{$VFS.DEV.DEVNAME.NOT_MATCHES}','^(loop[0-9]*|sd[a-z][0-9]+|nbd[0-9]+|sr[0-9]+|fd[0-9]+|dm-[0-9]+|ram[0-9]+|ploop[a-z0-9]+|md[0-9]*|hcp[0-9]*|zram[0-9]*)','Used in block device discovery. Can be overridden on the host or linked template level.','0','0'), ('5253','10248','{$VFS.FS.FSNAME.MATCHES}','.+','Used in filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('5254','10248','{$VFS.FS.FSNAME.NOT_MATCHES}','^(/dev|/sys|/run|/proc|.+/shm$)','Used in filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('5257','10248','{$VFS.FS.INODE.PFREE.MIN.CRIT}','10','The critical threshold of the filesystem metadata utilization.','0','0'), ('5258','10248','{$VFS.FS.INODE.PFREE.MIN.WARN}','20','The warning threshold of the filesystem metadata utilization.','0','0'), ('5259','10248','{$VFS.FS.PUSED.MAX.CRIT}','90','The critical threshold of the filesystem utilization.','0','0'), ('5260','10248','{$VFS.FS.PUSED.MAX.WARN}','80','The warning threshold of the filesystem utilization.','0','0'), ('5261','10079','{$AGENT.TIMEOUT}','3m','Timeout after which the agent is considered unavailable. Works only for agents reachable from Zabbix server/proxy (in passive mode).','0','0'), ('5262','10074','{$AGENT.TIMEOUT}','3m','Timeout after which the agent is considered unavailable. Works only for agents reachable from Zabbix server/proxy (in passive mode).','0','0'), ('5263','10078','{$AGENT.TIMEOUT}','3m','Timeout after which the agent is considered unavailable. Works only for agents reachable from Zabbix server/proxy (in passive mode).','0','0'), ('5264','10081','{$AGENT.TIMEOUT}','3m','Timeout after which agent is considered unavailable. Works only for agents reachable from Zabbix server/proxy (passive mode).','0','0'), ('5265','10081','{$CPU.INTERRUPT.CRIT.MAX}','50','The critical threshold of the % Interrupt Time counter.','0','0'), ('5266','10081','{$CPU.PRIV.CRIT.MAX}','30','The threshold of the % Privileged Time counter.','0','0'), ('5267','10081','{$CPU.QUEUE.CRIT.MAX}','3','The threshold of the Processor Queue Length counter.','0','0'), ('5268','10081','{$CPU.UTIL.CRIT}','90','The critical threshold of the CPU utilization expressed in %.','0','0'), ('5269','10081','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('5270','10081','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('5271','10081','{$IFCONTROL}','1','Macro for the interface operational state for the "link down" trigger. Can be used with interface name as context.','0','0'), ('5272','10081','{$MEM.PAGE_SEC.CRIT.MAX}','1000','The warning threshold of the Memory Pages/sec counter.','0','0'), ('5273','10081','{$MEM.PAGE_TABLE_CRIT.MIN}','5000','The warning threshold of the Free System Page Table Entries counter.','0','0'), ('5274','10081','{$MEMORY.UTIL.MAX}','90','The warning threshold of the Memory util item.','0','0'), ('5275','10081','{$NET.IF.IFALIAS.MATCHES}','.*','Used in Network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('5276','10081','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_THIS','Used in Network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('5277','10081','{$NET.IF.IFDESCR.MATCHES}','.*','Used in Network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('5278','10081','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_THIS','Used in Network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('5279','10081','{$NET.IF.IFNAME.MATCHES}','.*','Used in Network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('5280','10081','{$NET.IF.IFNAME.NOT_MATCHES}','Miniport|Virtual|Teredo|Kernel|Loopback|Bluetooth|HTTPS|6to4|QoS|Layer','Used in Network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('5281','10081','{$SERVICE.NAME.MATCHES}','^.*$','Used in Service discovery. Can be overridden on the host or linked template level.','0','0'), ('5282','10081','{$SERVICE.NAME.NOT_MATCHES}',E'^(?:RemoteRegistry|MMCSS|gupdate|SysmonLog|clr_optimization_v.+|sppsvc|gpsvc|Pml Driver HPZ12|Net Driver HPZ12|MapsBroker|IntelAudioService|Intel\\(R\\) TPM Provisioning Service|dbupdate|DoSvc|CDPUserSvc_.+|WpnUserService_.+|OneSyncSvc_.+|WbioSrvc|BITS|tiledatamodelsvc|GISvc|ShellHWDetection|TrustedInstaller|TabletInputService|CDPSvc|wuauserv|edgeupdate|cbdhsvc_.+)$','Used in Service discovery. Can be overridden on the host or linked template level.','0','0'), ('5283','10081','{$SERVICE.STARTUPNAME.MATCHES}','^(?:automatic|automatic delayed)$','Used in Service discovery. Can be overridden on the host or linked template level.','0','0'), ('5284','10081','{$SERVICE.STARTUPNAME.NOT_MATCHES}','^(?:manual|disabled)$','Used in Service discovery. Can be overridden on the host or linked template level.','0','0'), ('5285','10081','{$SWAP.PFREE.MIN.WARN}','20','The warning threshold of the minimum free swap.','0','0'), ('5286','10081','{$SYSTEM.FUZZYTIME.MAX}','60s','The upper threshold for difference of system time.','0','0'), ('5287','10081','{$VFS.DEV.DEVNAME.MATCHES}','.*','Used in physical disk discovery. Can be overridden on the host or linked template level.','0','0'), ('5288','10081','{$VFS.DEV.DEVNAME.NOT_MATCHES}','_Total','Used in physical disk discovery. Can be overridden on the host or linked template level.','0','0'), ('5289','10081','{$VFS.DEV.READ.AWAIT.WARN}','0.02','Disk read average response time (in s) before the trigger fires.','0','0'), ('5290','10081','{$VFS.DEV.UTIL.MAX.WARN}','95','The warning threshold of disk time utilization in percent.','0','0'), ('5291','10081','{$VFS.DEV.WRITE.AWAIT.WARN}','0.02','Disk write average response time (in s) before the trigger fires.','0','0'), ('5292','10081','{$VFS.FS.FSDRIVETYPE.MATCHES}','fixed','Used in filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('5293','10081','{$VFS.FS.FSDRIVETYPE.NOT_MATCHES}',E'^\\s$','Used in filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('5294','10081','{$VFS.FS.FSNAME.MATCHES}','.*','Used in filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('5295','10081','{$VFS.FS.FSNAME.NOT_MATCHES}','^(?:/dev|/sys|/run|/proc|.+/shm$)','Used in filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('5296','10081','{$VFS.FS.FSTYPE.MATCHES}','.*','Used in filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('5297','10081','{$VFS.FS.FSTYPE.NOT_MATCHES}',E'^\\s$','Used in filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('5298','10081','{$VFS.FS.PUSED.MAX.CRIT}','90','The critical threshold of the filesystem utilization.','0','0'), ('5299','10081','{$VFS.FS.PUSED.MAX.WARN}','80','The warning threshold of the filesystem utilization.','0','0'), ('5300','10351','{$AGENT.NODATA_TIMEOUT}','30m','No data timeout for active agents. Consider to keep it relatively high.','0','0'), ('5301','10351','{$CPU.INTERRUPT.CRIT.MAX}','50','The critical threshold of the % Interrupt Time counter.','0','0'), ('5302','10351','{$CPU.PRIV.CRIT.MAX}','30','The threshold of the % Privileged Time counter.','0','0'), ('5303','10351','{$CPU.QUEUE.CRIT.MAX}','3','The threshold of the Processor Queue Length counter.','0','0'), ('5304','10351','{$CPU.UTIL.CRIT}','90','The critical threshold of the CPU utilization expressed in %.','0','0'), ('5305','10351','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('5306','10351','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('5307','10351','{$IFCONTROL}','1','Macro for the interface operational state for the "link down" trigger. Can be used with interface name as context.','0','0'), ('5308','10351','{$MEM.PAGE_SEC.CRIT.MAX}','1000','The warning threshold of the Memory Pages/sec counter.','0','0'), ('5309','10351','{$MEM.PAGE_TABLE_CRIT.MIN}','5000','The warning threshold of the Free System Page Table Entries counter.','0','0'), ('5310','10351','{$MEMORY.UTIL.MAX}','90','The warning threshold of the Memory util item.','0','0'), ('5311','10351','{$NET.IF.IFALIAS.MATCHES}','.*','Used in Network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('5312','10351','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_THIS','Used in Network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('5313','10351','{$NET.IF.IFDESCR.MATCHES}','.*','Used in Network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('5314','10351','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_THIS','Used in Network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('5315','10351','{$NET.IF.IFNAME.MATCHES}','.*','Used in Network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('5316','10351','{$NET.IF.IFNAME.NOT_MATCHES}','Miniport|Virtual|Teredo|Kernel|Loopback|Bluetooth|HTTPS|6to4|QoS|Layer','Used in Network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('5317','10351','{$SERVICE.NAME.MATCHES}','^.*$','Used in Service discovery. Can be overridden on the host or linked template level.','0','0'), ('5318','10351','{$SERVICE.NAME.NOT_MATCHES}',E'^(?:RemoteRegistry|MMCSS|gupdate|SysmonLog|clr_optimization_v.+|sppsvc|gpsvc|Pml Driver HPZ12|Net Driver HPZ12|MapsBroker|IntelAudioService|Intel\\(R\\) TPM Provisioning Service|dbupdate|DoSvc|CDPUserSvc_.+|WpnUserService_.+|OneSyncSvc_.+|WbioSrvc|BITS|tiledatamodelsvc|GISvc|ShellHWDetection|TrustedInstaller|TabletInputService|CDPSvc|wuauserv|edgeupdate|cbdhsvc_.+)$','Used in Service discovery. Can be overridden on the host or linked template level.','0','0'), ('5319','10351','{$SERVICE.STARTUPNAME.MATCHES}','^(?:automatic|automatic delayed)$','Used in Service discovery. Can be overridden on the host or linked template level.','0','0'), ('5320','10351','{$SERVICE.STARTUPNAME.NOT_MATCHES}','^(?:manual|disabled)$','Used in Service discovery. Can be overridden on the host or linked template level.','0','0'), ('5321','10351','{$SWAP.PFREE.MIN.WARN}','20','The warning threshold of the minimum free swap.','0','0'), ('5323','10351','{$VFS.DEV.DEVNAME.MATCHES}','.*','Used in physical disk discovery. Can be overridden on the host or linked template level.','0','0'), ('5324','10351','{$VFS.DEV.DEVNAME.NOT_MATCHES}','_Total','Used in physical disk discovery. Can be overridden on the host or linked template level.','0','0'), ('5325','10351','{$VFS.DEV.READ.AWAIT.WARN}','0.02','Disk read average response time (in s) before the trigger fires.','0','0'), ('5326','10351','{$VFS.DEV.UTIL.MAX.WARN}','95','The warning threshold of disk time utilization in percent.','0','0'), ('5327','10351','{$VFS.DEV.WRITE.AWAIT.WARN}','0.02','Disk write average response time (in s) before the trigger fires.','0','0'), ('5328','10351','{$VFS.FS.FSDRIVETYPE.MATCHES}','fixed','Used in filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('5329','10351','{$VFS.FS.FSDRIVETYPE.NOT_MATCHES}',E'^\\s$','Used in filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('5330','10351','{$VFS.FS.FSNAME.MATCHES}','.*','Used in filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('5331','10351','{$VFS.FS.FSNAME.NOT_MATCHES}','^(?:/dev|/sys|/run|/proc|.+/shm$)','Used in filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('5332','10351','{$VFS.FS.FSTYPE.MATCHES}','.*','Used in filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('5333','10351','{$VFS.FS.FSTYPE.NOT_MATCHES}',E'^\\s$','Used in filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('5334','10351','{$VFS.FS.PUSED.MAX.CRIT}','90','The critical threshold of the filesystem utilization.','0','0'), ('5335','10351','{$VFS.FS.PUSED.MAX.WARN}','80','The warning threshold of the filesystem utilization.','0','0'), ('5336','10249','{$CPU.UTIL.CRIT}','90','Critical threshold of CPU utilization expressed in %.','0','0'), ('5337','10249','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('5338','10249','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('5339','10249','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('5340','10249','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('5341','10249','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('5342','10249','{$MEMORY.NAME.MATCHES}','.*','Used in memory discovery. Can be overridden on the host or linked template level.','0','0'), ('5343','10249','{$MEMORY.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in memory discovery. Can be overridden on the host or linked template level if you need to filter out results.','0','0'), ('5344','10249','{$MEMORY.TYPE.MATCHES}',E'.*(\\.2|hrStorageRam)$','Used in memory discovery. Can be overridden on the host or linked template level.','0','0'), ('5345','10249','{$MEMORY.TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in memory discovery. Can be overridden on the host or linked template level if you need to filter out results.','0','0'), ('5346','10249','{$MEMORY.UTIL.MAX}','90','The warning threshold of the "Physical memory: Memory utilization" item.','0','0'), ('5347','10249','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*$','Used in network interface discovery rule filters.','0','0'), ('5348','10249','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('5349','10249','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('5350','10249','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('5351','10249','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('5352','10249','{$NET.IF.IFDESCR.NOT_MATCHES}','Miniport|Virtual|Teredo|Kernel|Loopback|Bluetooth|HTTPS|6to4|QoS|Layer|isatap|ISATAP','Used in network interface discovery rule filters.','0','0'), ('5353','10249','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('5354','10249','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0` bridge by default.','0','0'), ('5355','10249','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('5356','10249','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('5357','10249','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('5358','10249','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('5359','10249','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('5360','10249','{$VFS.FS.FSNAME.MATCHES}','.+','Used in filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('5361','10249','{$VFS.FS.FSNAME.NOT_MATCHES}','^(/dev|/sys|/run|/proc|.+/shm$)','Used in filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('5362','10249','{$VFS.FS.FSTYPE.MATCHES}',E'.*(\\.4|\\.9|hrStorageFixedDisk|hrStorageFlashMemory)$','Used in filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('5363','10249','{$VFS.FS.FSTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('5364','10249','{$VFS.FS.PUSED.MAX.CRIT}','90','The critical threshold of the filesystem utilization.','0','0'), ('5365','10249','{$VFS.FS.PUSED.MAX.WARN}','80','The warning threshold of the filesystem utilization.','0','0'), ('5366','10385','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('5367','10385','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('5368','10385','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('5369','10378','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('5370','10378','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('5371','10378','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('5372','10304','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('5373','10304','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('5374','10304','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('5378','10256','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('5379','10256','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('5380','10256','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('5381','10258','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('5382','10258','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('5383','10258','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('5384','10259','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('5385','10259','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('5386','10259','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('5387','10251','{$FAN_CRIT_STATUS}','3','The critical value of the FAN sensor for trigger expression.','0','0'), ('5388','10251','{$ICMP_LOSS_WARN}','20','','0','0'), ('5389','10251','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0','0'), ('5390','10507','{$KUBE.NODES.ENDPOINT.NAME}','zabbix-zabbix-helm-chart-agent','Kubernetes nodes endpoint name. See "kubectl -n monitoring get ep".','0','0'), ('5391','10001','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('5393','10343','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('5395','10169','{$JMX.MEM.POOL.NAME.MATCHES}','Old Gen|G1|Perm Gen|Code Cache|Tenured Gen','This macro used in memory pool discovery as a filter.','0','0'), ('5396','10169','{$JMX.PASSWORD}','','JMX password.','0','0'), ('5397','10169','{$JMX.USER}','','JMX username.','0','0'), ('5398','10505','{$KUBE.API.TOKEN}','','API Authorization Token','0','0'), ('5399','10506','{$KUBE.KUBELET.CADVISOR.ENDPOINT}','/metrics/cadvisor','cAdvisor metrics from Kubelet /metrics/cadvisor endpoint.','0','0'), ('5400','10506','{$KUBE.KUBELET.METRIC.ENDPOINT}','/metrics','Kubelet /metrics endpoint.','0','0'), ('5401','10506','{$KUBE.KUBELET.PODS.ENDPOINT}','/pods','Kubelet /pods endpoint.','0','0'), ('5403','10509','{$KUBE.API.TOKEN}','','API Authorization Token.','0','0'), ('5404','10510','{$KUBE.API.COMPONENTSTATUSES.ENDPOINT}','/api/v1/componentstatuses','Kubernetes API componentstatuses endpoint /api/v1/componentstatuses','0','0'), ('5405','10510','{$KUBE.API.LIVEZ.ENDPOINT}','/livez','Kubernetes API livez endpoint /livez','0','0'), ('5406','10510','{$KUBE.API.READYZ.ENDPOINT}','/readyz','Kubernetes API readyz endpoint /readyz','0','0'), ('5407','10510','{$KUBE.API.URL}','https://kubernetes.default.svc.cluster.local:443','Kubernetes API endpoint URL in the format ://:','0','0'), ('5408','10516','{$LANG}','en','List of available languages https://openweathermap.org/current#multi.','0','0'), ('5409','10516','{$LOCATION}','Riga','Locations can be set by few ways: 1. by geo coordinates (for example: 56.95,24.0833) 2. by location name (for example: Riga) 3. by location ID. Link to the list of city ID: http://bulk.openweathermap.org/sample/city.list.json.gz 4. by zip/post code with a country code (for example: 94040,us) A few locations can be added to the macro at the same time by `|` delimiter. For example: `43.81821,7.76115|Riga|2643743|94040,us`. Please note that API requests by city name, zip-codes and city id will be deprecated soon.','0','0'), ('5410','10516','{$OPENWEATHERMAP.API.ENDPOINT}','api.openweathermap.org/data/2.5/weather?','OpenWeatherMap API endpoint.','0','0'), ('5411','10516','{$OPENWEATHERMAP.API.TOKEN}','','Specify openweathermap API key.','1','0'), ('5413','10516','{$TEMP.CRIT.HIGH}','30','Threshold for high temperature trigger.','0','0'), ('5414','10516','{$TEMP.CRIT.LOW}','-20','Threshold for low temperature trigger.','0','0'), ('5415','10516','{$UNITS}','metric','Available units of measurement are standard, metric and imperial https://openweathermap.org/current#data.','0','0'), ('5418','10517','{$PVE.CPU.PUSE.MAX.WARN}','90','Maximum used CPU in percentage.','0','0'), ('5419','10517','{$PVE.LXC.CPU.PUSE.MAX.WARN}','90','Maximum used CPU in percentage.','0','0'), ('5420','10517','{$PVE.LXC.MEMORY.PUSE.MAX.WARN}','90','Maximum used memory in percentage.','0','0'), ('5421','10517','{$PVE.MEMORY.PUSE.MAX.WARN}','90','Maximum used memory in percentage.','0','0'), ('5422','10517','{$PVE.ROOT.PUSE.MAX.WARN}','90','Maximum used root space in percentage.','0','0'), ('5423','10517','{$PVE.STORAGE.PUSE.MAX.WARN}','90','Maximum used storage space in percentage.','0','0'), ('5424','10517','{$PVE.SWAP.PUSE.MAX.WARN}','90','Maximum used swap space in percentage.','0','0'), ('5425','10517','{$PVE.TOKEN.ID}','USER@REALM!TOKENID','API tokens allow stateless access to most parts of the REST API by another system, software or API client.','0','0'), ('5426','10517','{$PVE.TOKEN.SECRET}','xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx','Secret key.','0','0'), ('5427','10517','{$PVE.URL.PORT}','8006','The API uses the HTTPS protocol and the server listens to port 8006 by default.','0','0'), ('5428','10517','{$PVE.VM.CPU.PUSE.MAX.WARN}','90','Maximum used CPU in percentage.','0','0'), ('5429','10517','{$PVE.VM.MEMORY.PUSE.MAX.WARN}','90','Maximum used memory in percentage.','0','0'), ('5430','10300','{$RABBITMQ.API.SCHEME}','http','The request scheme, which may be HTTP or HTTPS.','0','0'), ('5431','10301','{$RABBITMQ.API.SCHEME}','http','The request scheme, which may be HTTP or HTTPS.','0','0'), ('5432','10518','{$CPU.UTIL.CRIT}','90','Threshold of CPU utilization for warning trigger in %.','0','0'), ('5433','10518','{$DATASET.FREE.MIN.CRIT}','5G','This macro is used for trigger expression. It can be overridden on the host or linked on the template level.','0','0'), ('5434','10518','{$DATASET.FREE.MIN.WARN}','5G','This macro is used for trigger expression. It can be overridden on the host or linked on the template level.','0','0'), ('5435','10518','{$DATASET.NAME.MATCHES}','.+','This macro is used in datasets discovery. Can be overridden on the host or linked template level','0','0'), ('5436','10518','{$DATASET.NAME.NOT_MATCHES}',E'^(boot|.+\\.system(.+)?$)','This macro is used in datasets discovery. Can be overridden on the host or linked template level','0','0'), ('5437','10518','{$DATASET.PUSED.MAX.CRIT}','90','Threshold of used dataset space for average severity trigger in %.','0','0'), ('5438','10518','{$DATASET.PUSED.MAX.WARN}','80','Threshold of used dataset space for warning trigger in %.','0','0'), ('5439','10518','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('5440','10518','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('5441','10518','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('5442','10518','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('5443','10518','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('5444','10518','{$LOAD_AVG_PER_CPU.MAX.WARN}','1.5','Load per CPU considered sustainable. Tune if needed.','0','0'), ('5445','10518','{$MEMORY.AVAILABLE.MIN}','20M','Threshold of available memory for trigger in bytes.','0','0'), ('5446','10518','{$MEMORY.UTIL.MAX}','90','Threshold of memory utilization for trigger in %','0','0'), ('5447','10518','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('5448','10518','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('5449','10518','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('5450','10518','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('5451','10518','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('5452','10518','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('5454','10518','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('5455','10518','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('5456','10518','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('5457','10518','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('5458','10518','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('5459','10518','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('5460','10518','{$SWAP.PFREE.MIN.WARN}','50','Threshold of free swap space for warning trigger in %.','0','0'), ('5461','10518','{$TEMPERATURE.MAX.CRIT}','65','This macro is used for trigger expression. It can be overridden on the host or linked on the template level.','0','0'), ('5462','10518','{$TEMPERATURE.MAX.WARN}','50','This macro is used for trigger expression. It can be overridden on the host or linked on the template level.','0','0'), ('5463','10518','{$VFS.DEV.DEVNAME.MATCHES}','.+','This macro is used in block devices discovery. Can be overridden on the host or linked template level','0','0'), ('5464','10518','{$VFS.DEV.DEVNAME.NOT_MATCHES}','^(loop[0-9]*|sd[a-z][0-9]+|nbd[0-9]+|sr[0-9]+|fd[0-9]+|dm-[0-9]+|ram[0-9]+|ploop[a-z0-9]+|md[0-9]*|hcp[0-9]*|cd[0-9]*|pass[0-9]*|zram[0-9]*)','This macro is used in block devices discovery. Can be overridden on the host or linked template level','0','0'), ('5465','10518','{$ZPOOL.FREE.MIN.CRIT}','5G','This macro is used for trigger expression. It can be overridden on the host or linked on the template level.','0','0'), ('5466','10518','{$ZPOOL.FREE.MIN.WARN}','5G','This macro is used for trigger expression. It can be overridden on the host or linked on the template level.','0','0'), ('5467','10518','{$ZPOOL.PUSED.MAX.CRIT}','90','Threshold of used pool space for average severity trigger in %.','0','0'), ('5468','10518','{$ZPOOL.PUSED.MAX.WARN}','80','Threshold of used pool space for warning trigger in %.','0','0'), ('5469','10329','{$PG.QUERY_ETIME.MAX.WARN}','30','Execution time limit for count of slow queries.','0','0'), ('5470','10329','{$PG.SLOW_QUERIES.MAX.WARN}','5','Slow queries count threshold for a trigger.','0','0'), ('5487','10254','{$VFS.FS.FREE.MIN.CRIT}','5G','The critical threshold of the filesystem utilization.','0','0'), ('5488','10254','{$VFS.FS.FREE.MIN.WARN}','10G','The warning threshold of the filesystem utilization.','0','0'), ('5489','10251','{$VFS.FS.FREE.MIN.CRIT}','5G','The critical threshold of the filesystem utilization.','0','0'), ('5490','10251','{$VFS.FS.FREE.MIN.WARN}','10G','The warning threshold of the filesystem utilization.','0','0'), ('5505','10519','{$COCKROACHDB.API.PORT}','8080','The port of CockroachDB API and Prometheus endpoint.','0','0'), ('5506','10519','{$COCKROACHDB.API.SCHEME}','http','Request scheme which may be http or https.','0','0'), ('5507','10519','{$COCKROACHDB.CERT.CA.EXPIRY.WARN}','90','Number of days until the CA certificate expires.','0','0'), ('5508','10519','{$COCKROACHDB.CERT.NODE.EXPIRY.WARN}','30','Number of days until the node certificate expires.','0','0'), ('5509','10519','{$COCKROACHDB.CLOCK.OFFSET.MAX.WARN}','300','Maximum clock offset of the node against the rest of the cluster in milliseconds for trigger expression.','0','0'), ('5510','10519','{$COCKROACHDB.OPEN.FDS.MAX.WARN}','80','Maximum percentage of used file descriptors.','0','0'), ('5511','10519','{$COCKROACHDB.STATEMENTS.ERRORS.MAX.WARN}','2','Maximum number of SQL statements errors for trigger expression.','0','0'), ('5512','10519','{$COCKROACHDB.STORE.USED.MIN.CRIT}','10','The critical threshold of the available disk space in percent.','0','0'), ('5513','10519','{$COCKROACHDB.STORE.USED.MIN.WARN}','20','The warning threshold of the available disk space in percent.','0','0'), ('5514','10520','{$ENVOY.CERT.MIN}','7','Minimum number of days before certificate expiration used for trigger expression.','0','0'), ('5515','10520','{$ENVOY.METRICS.PATH}','/stats/prometheus','The path Zabbix will scrape metrics in prometheus format from.','0','0'), ('5516','10520','{$ENVOY.URL}','http://localhost:9901','Instance URL.','0','0'), ('5517','10521','{$CONSUL.LLD.FILTER.LOCAL_SERVICE_NAME.MATCHES}','.*','Filter of discoverable discovered services on local node.','0','0'), ('5518','10521','{$CONSUL.LLD.FILTER.LOCAL_SERVICE_NAME.NOT_MATCHES}','CHANGE IF NEEDED','Filter to exclude discovered services on local node.','0','0'), ('5521','10521','{$CONSUL.NODE.API.URL}','http://localhost:8500','Consul instance URL.','0','0'), ('5522','10521','{$CONSUL.NODE.HEALTH_SCORE.MAX.HIGH}','4','Maximum acceptable value of node''s health score for AVERAGE trigger expression.','0','0'), ('5523','10521','{$CONSUL.NODE.HEALTH_SCORE.MAX.WARN}','2','Maximum acceptable value of node''s health score for WARNING trigger expression.','0','0'), ('5524','10521','{$CONSUL.OPEN.FDS.MAX.WARN}','90','Maximum percentage of used file descriptors.','0','0'), ('5525','10521','{$CONSUL.TOKEN}','','Consul auth token.','0','0'), ('5526','10522','{$CONSUL.API.PORT}','8500','Consul API port. Using in node LLD.','0','0'), ('5527','10522','{$CONSUL.API.SCHEME}','http','Consul API scheme. Using in node LLD.','0','0'), ('5528','10522','{$CONSUL.CLUSTER.URL}','http://localhost:8500','Consul cluster URL.','0','0'), ('5529','10522','{$CONSUL.LLD.FILTER.NODE_NAME.MATCHES}','.*','Filter of discoverable discovered nodes.','0','0'), ('5530','10522','{$CONSUL.LLD.FILTER.NODE_NAME.NOT_MATCHES}','CHANGE IF NEEDED','Filter to exclude discovered nodes.','0','0'), ('5531','10522','{$CONSUL.LLD.FILTER.SERVICE_NAME.MATCHES}','.*','Filter of discoverable discovered services.','0','0'), ('5532','10522','{$CONSUL.LLD.FILTER.SERVICE_NAME.NOT_MATCHES}','CHANGE IF NEEDED','Filter to exclude discovered services.','0','0'), ('5533','10522','{$CONSUL.SERVICE_NODES.CRITICAL.MAX.AVG}','0','Maximum number of service nodes in status ''critical'' for trigger expression. Can be used with context.','0','0'), ('5534','10522','{$CONSUL.TOKEN}','','Consul auth token.','0','0'), ('5535','10523','{$CONSUL.NODE.API.URL}','{#NODE_API_URL}','Consul instance URL','0','0'), ('5536','10361','{$AGENT.TIMEOUT}','5m','Timeout after which agent is considered unavailable.','0','0'), ('5537','10326','{$AGENT.TIMEOUT}','5m','Timeout after which agent is considered unavailable.','0','0'), ('5539','10343','{$AGENT.TIMEOUT}','5m','Timeout after which agent is considered unavailable.','0','0'), ('5540','10351','{$AGENT.TIMEOUT}','5m','Timeout after which agent is considered unavailable.','0','0'), ('5541','10524','{$HPE.MSA.API.PASSWORD}','','Specify password for API.','1','0'), ('5542','10524','{$HPE.MSA.API.PORT}','443','Connection port for API.','0','0'), ('5543','10524','{$HPE.MSA.API.SCHEME}','https','Connection scheme for API.','0','0'), ('5544','10524','{$HPE.MSA.API.USERNAME}','zabbix','Specify user name for API.','0','0'), ('5545','10524','{$HPE.MSA.CONTROLLER.CPU.UTIL.CRIT}','90','The critical threshold of the CPU utilization expressed in %.','0','0'), ('5546','10524','{$HPE.MSA.DATA.TIMEOUT}','30s','Response timeout for API.','0','0'), ('5547','10524','{$HPE.MSA.DISKS.GROUP.PUSED.MAX.CRIT}','90','The critical threshold of the disk group space utilization in %.','0','0'), ('5548','10524','{$HPE.MSA.DISKS.GROUP.PUSED.MAX.WARN}','80','The warning threshold of the disk group space utilization in %.','0','0'), ('5549','10524','{$HPE.MSA.POOL.PUSED.MAX.CRIT}','90','The critical threshold of the pool space utilization in %.','0','0'), ('5550','10524','{$HPE.MSA.POOL.PUSED.MAX.WARN}','80','The warning threshold of the pool space utilization in %.','0','0'), ('5551','10525','{$HPE.MSA.API.PASSWORD}','','Specify password for API.','1','0'), ('5552','10525','{$HPE.MSA.API.PORT}','443','Connection port for API.','0','0'), ('5553','10525','{$HPE.MSA.API.SCHEME}','https','Connection scheme for API.','0','0'), ('5554','10525','{$HPE.MSA.API.USERNAME}','zabbix','Specify user name for API.','0','0'), ('5555','10525','{$HPE.MSA.CONTROLLER.CPU.UTIL.CRIT}','90','The critical threshold of the CPU utilization expressed in %.','0','0'), ('5556','10525','{$HPE.MSA.DATA.TIMEOUT}','30s','Response timeout for API.','0','0'), ('5557','10525','{$HPE.MSA.DISKS.GROUP.PUSED.MAX.CRIT}','90','The critical threshold of the disk group space utilization in %.','0','0'), ('5558','10525','{$HPE.MSA.DISKS.GROUP.PUSED.MAX.WARN}','80','The warning threshold of the disk group space utilization in %.','0','0'), ('5559','10525','{$HPE.MSA.POOL.PUSED.MAX.CRIT}','90','The critical threshold of the pool space utilization in %.','0','0'), ('5560','10525','{$HPE.MSA.POOL.PUSED.MAX.WARN}','80','The warning threshold of the pool space utilization in %.','0','0'), ('5561','10526','{$HPE.PRIMERA.API.PASSWORD}','','Specify password for WSAPI.','1','0'), ('5562','10526','{$HPE.PRIMERA.API.PORT}','443','The WSAPI port.','0','0'), ('5563','10526','{$HPE.PRIMERA.API.SCHEME}','https','The WSAPI scheme (http/https).','0','0'), ('5564','10526','{$HPE.PRIMERA.API.USERNAME}','zabbix','Specify user name for WSAPI.','0','0'), ('5565','10526','{$HPE.PRIMERA.CPG.NAME.MATCHES}','.*','This macro is used in filters of CPGs discovery rule.','0','0'), ('5566','10526','{$HPE.PRIMERA.CPG.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in filters of CPGs discovery rule.','0','0'), ('5567','10526','{$HPE.PRIMERA.DATA.TIMEOUT}','15s','Response timeout for WSAPI.','0','0'), ('5568','10526','{$HPE.PRIMERA.LLD.FILTER.TASK.NAME.MATCHES}','CHANGE_IF_NEEDED','Filter of discoverable tasks by name.','0','0'), ('5569','10526','{$HPE.PRIMERA.LLD.FILTER.TASK.NAME.NOT_MATCHES}','.*','Filter to exclude discovered tasks by name.','0','0'), ('5570','10526','{$HPE.PRIMERA.LLD.FILTER.TASK.TYPE.MATCHES}','.*','Filter of discoverable tasks by type.','0','0'), ('5571','10526','{$HPE.PRIMERA.LLD.FILTER.TASK.TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered tasks by type.','0','0'), ('5572','10526','{$HPE.PRIMERA.VOLUME.NAME.MATCHES}','.*','This macro is used in filters of volume discovery rule.','0','0'), ('5573','10526','{$HPE.PRIMERA.VOLUME.NAME.NOT_MATCHES}','^(admin|.srdata|.mgmtdata)$','This macro is used in filters of volume discovery rule.','0','0'), ('5574','10527','{$AWS.ACCESS.KEY.ID}','','Access key ID.','0','0'), ('5575','10527','{$AWS.EBS.BURST.CREDIT.BALANCE.MIN.WARN}','20','Minimum percentage of Byte credits remaining for trigger expression.','0','0'), ('5576','10527','{$AWS.EBS.BYTE.CREDIT.BALANCE.MIN.WARN}','20','Minimum percentage of Byte credits remaining for trigger expression.','0','0'), ('5577','10527','{$AWS.EBS.IO.CREDIT.BALANCE.MIN.WARN}','20','Minimum percentage of I/O credits remaining for trigger expression.','0','0'), ('5578','10527','{$AWS.EC2.CPU.CREDIT.BALANCE.MIN.WARN}','50','Minimum number of free earned CPU credits for trigger expression.','0','0'), ('5579','10527','{$AWS.EC2.CPU.CREDIT.SURPLUS.BALANCE.MAX.WARN}','100','Maximum number of spent CPU Surplus credits for trigger expression.','0','0'), ('5580','10527','{$AWS.EC2.CPU.UTIL.WARN.MAX}','85','The warning threshold of the CPU utilization expressed in %.','0','0'), ('5581','10527','{$AWS.EC2.INSTANCE.ID}','','EC2 instance ID.','0','0'), ('5582','10527','{$AWS.EC2.LLD.FILTER.ALARM_NAME.MATCHES}','.*','Filter of discoverable alarms by name.','0','0'), ('5583','10527','{$AWS.EC2.LLD.FILTER.ALARM_NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered alarms by name.','0','0'), ('5584','10527','{$AWS.EC2.LLD.FILTER.ALARM_SERVICE_NAMESPACE.MATCHES}','.*','Filter of discoverable alarms by namespace.','0','0'), ('5585','10527','{$AWS.EC2.LLD.FILTER.ALARM_SERVICE_NAMESPACE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered alarms by namespace.','0','0'), ('5586','10527','{$AWS.EC2.LLD.FILTER.VOLUME_TYPE.MATCHES}','.*','Filter of discoverable volumes by type.','0','0'), ('5587','10527','{$AWS.EC2.LLD.FILTER.VOLUME_TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered volumes by type.','0','0'), ('5588','10527','{$AWS.REGION}','us-west-1','Amazon EC2 Region code.','0','0'), ('5589','10527','{$AWS.SECRET.ACCESS.KEY}','','Secret access key.','0','0'), ('5590','10521','{$CONSUL.LLD.FILTER.SERVICE_NAMESPACE.MATCHES}','.*','Filter of discoverable discovered service by namespace on local node. Enterprise only, in case of Open Source version Namespace will be set to ''None''.','0','0'), ('5591','10521','{$CONSUL.LLD.FILTER.SERVICE_NAMESPACE.NOT_MATCHES}','CHANGE IF NEEDED','Filter to exclude discovered service by namespace on local node. Enterprise only, in case of Open Source version Namespace will be set to ''None''.','0','0'), ('5592','10522','{$CONSUL.NAMESPACE}','','Consul service namespace. Enterprise only, in case of Open Source version leave this macro empty. Do not specify this macro to get all of services.','0','0'), ('5593','10528','{$IF.ERRORS.WARN}','2','Threshold of error packets rate for warning trigger. Can be used with interface name as context.','0','0'), ('5594','10528','{$IF.UTIL.MAX}','90','Threshold of interface bandwidth utilization for warning trigger in %. Can be used with interface name as context.','0','0'), ('5595','10528','{$IFCONTROL}','1','Macro for operational state of the interface for link down trigger. Can be used with interface name as context.','0','0'), ('5596','10528','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','This macro is used in filters of network interfaces discovery rule.','0','0'), ('5597','10528','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status.','0','0'), ('5598','10528','{$NET.IF.IFALIAS.MATCHES}','.*','This macro is used in filters of network interfaces discovery rule.','0','0'), ('5599','10528','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in filters of network interfaces discovery rule.','0','0'), ('5600','10528','{$NET.IF.IFDESCR.MATCHES}','.*','This macro is used in filters of network interfaces discovery rule.','0','0'), ('5601','10528','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in filters of network interfaces discovery rule.','0','0'), ('5603','10528','{$NET.IF.IFNAME.NOT_MATCHES}','(^pflog[0-9.]*$|^pfsync[0-9.]*$)','This macro is used in filters of network interfaces discovery rule.','0','0'), ('5604','10528','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','This macro is used in filters of network interfaces discovery rule.','0','0'), ('5605','10528','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6).','0','0'), ('5606','10528','{$NET.IF.IFTYPE.MATCHES}','.*','This macro is used in filters of network interfaces discovery rule.','0','0'), ('5607','10528','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in filters of network interfaces discovery rule.','0','0'), ('5608','10528','{$SNMP.TIMEOUT}','5m','The time interval for SNMP availability trigger.','0','0'), ('5609','10528','{$SOURCE.TRACKING.TABLE.UTIL.MAX}','90','Threshold of source tracking table utilization trigger in %.','0','0'), ('5610','10528','{$STATE.TABLE.UTIL.MAX}','90','Threshold of state table utilization trigger in %.','0','0'), ('5611','10529','{$AWS.ACCESS.KEY.ID}','','Access key ID.','0','0'), ('5612','10529','{$AWS.EBS.BYTE.CREDIT.BALANCE.MIN.WARN}','20','Minimum percentage of Byte credits remaining for trigger expression.','0','0'), ('5613','10529','{$AWS.EBS.IO.CREDIT.BALANCE.MIN.WARN}','20','Minimum percentage of I/O credits remaining for trigger expression.','0','0'), ('5614','10529','{$AWS.RDS.BURST.CREDIT.BALANCE.MIN.WARN}','20','Minimum percentage of Byte credits remaining for trigger expression.','0','0'), ('5615','10529','{$AWS.RDS.CPU.CREDIT.BALANCE.MIN.WARN}','50','Minimum number of free earned CPU credits for trigger expression.','0','0'), ('5616','10529','{$AWS.RDS.CPU.UTIL.WARN.MAX}','85','The warning threshold of the CPU utilization expressed in %.','0','0'), ('5617','10529','{$AWS.RDS.INSTANCE.ID}','','RDS DB Instance identifier.','0','0'), ('5618','10529','{$AWS.RDS.LLD.FILTER.ALARM_NAME.MATCHES}','.*','Filter of discoverable alarms by name.','0','0'), ('5619','10529','{$AWS.RDS.LLD.FILTER.ALARM_NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered alarms by name.','0','0'), ('5620','10529','{$AWS.RDS.LLD.FILTER.ALARM_SERVICE_NAMESPACE.MATCHES}','.*','Filter of discoverable alarms by namespace.','0','0'), ('5621','10529','{$AWS.RDS.LLD.FILTER.ALARM_SERVICE_NAMESPACE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered alarms by namespace.','0','0'), ('5622','10529','{$AWS.RDS.LLD.FILTER.EVENT_CATEGORY.MATCHES}','.*','Filter of discoverable events by category.','0','0'), ('5623','10529','{$AWS.RDS.LLD.FILTER.EVENT_CATEGORY.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered events by category.','0','0'), ('5624','10529','{$AWS.RDS.LLD.FILTER.EVENT_SOURCE_TYPE.MATCHES}','.*','Filter of discoverable events by source type.','0','0'), ('5625','10529','{$AWS.RDS.LLD.FILTER.EVENT_SOURCE_TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered events by source type.','0','0'), ('5626','10529','{$AWS.REGION}','us-west-1','Amazon RDS Region code.','0','0'), ('5627','10529','{$AWS.SECRET.ACCESS.KEY}','','Secret access key.','1','0'), ('5628','10530','{$AWS.ACCESS.KEY.ID}','','Access key ID.','0','0'), ('5630','10530','{$AWS.S3.BUCKET.NAME}','','S3 bucket name.','0','0'), ('5632','10530','{$AWS.S3.LLD.FILTER.ALARM_NAME.MATCHES}','.*','Filter of discoverable alarms by name.','0','0'), ('5633','10530','{$AWS.S3.LLD.FILTER.ALARM_NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered alarms by name.','0','0'), ('5634','10530','{$AWS.SECRET.ACCESS.KEY}','','Secret access key.','1','0'), ('5636','10531','{$AZURE.DATA.TIMEOUT}','15s','API response timeout.','0','0'), ('5637','10531','{$AZURE.PASSWORD}','','Microsoft Azure password.','1','0'), ('5640','10531','{$AZURE.VM.LOCATION.MATCHES}','.*','This macro is used in virtual machines discovery rule.','0','0'), ('5642','10531','{$AZURE.VM.NAME.MATCHES}','.*','This macro is used in virtual machines discovery rule.','0','0'), ('5647','10532','{$AZURE.DATA.TIMEOUT}','15s','API response timeout.','0','0'), ('5648','10532','{$AZURE.PASSWORD}','','Microsoft Azure password.','1','0'), ('5652','10532','{$AZURE.VM.CPU.UTIL.CRIT}','90','The critical threshold of CPU utilization, expressed in %.','0','0'), ('5654','10534','{$HPE.SYNERGY.API.PASSWORD}','','Specify password for API.','1','0'), ('5655','10534','{$HPE.SYNERGY.API.PORT}','443','The API port.','0','0'), ('5656','10534','{$HPE.SYNERGY.API.SCHEME}','https','The API scheme (http/https).','0','0'), ('5657','10534','{$HPE.SYNERGY.API.USERNAME}','zabbix','Specify user name for API.','0','0'), ('5658','10534','{$HPE.SYNERGY.DATA.TIMEOUT}','15s','Response timeout for API.','0','0'), ('5659','10535','{$AWS.ACCESS.KEY.ID}','','Access key ID.','0','0'), ('5660','10535','{$AWS.EC2.LLD.FILTER.NAME.MATCHES}','.*','Filter of discoverable EC2 instances by namespace.','0','0'), ('5661','10535','{$AWS.EC2.LLD.FILTER.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered EC2 instances by namespace.','0','0'), ('5662','10535','{$AWS.RDS.LLD.FILTER.NAME.MATCHES}','.*','Filter of discoverable RDS instances by namespace.','0','0'), ('5663','10535','{$AWS.RDS.LLD.FILTER.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered RDS instances by namespace.','0','0'), ('5665','10535','{$AWS.S3.LLD.FILTER.NAME.MATCHES}','.*','Filter of discoverable S3 buckets by namespace.','0','0'), ('5666','10535','{$AWS.S3.LLD.FILTER.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered S3 buckets by namespace.','0','0'), ('5667','10535','{$AWS.SECRET.ACCESS.KEY}','','Secret access key.','1','0'), ('5668','10536','{$AWS.EC2.INSTANCE.ID}','{#AWS.EC2.INSTANCE.ID}','EC2 instance ID.','0','0'), ('5669','10537','{$AWS.RDS.INSTANCE.ID}','{#AWS.RDS.INSTANCE.ID}','RDS instance ID.','0','0'), ('5671','10538','{$AWS.S3.BUCKET.NAME}','{#AWS.S3.NAME}','S3 bucket name.','0','0'), ('5672','10538','{$AWS.S3.FILTER.ID}','1','S3 bucket requests filter identifier.','0','0'), ('5675','10362','{$GITLAB.HEALTH.TOKEN}','','The token path for Gitlab health check. Example `?token=your_token`','0','0'), ('5676','10531','{$AZURE.MYSQL.DB.LOCATION.MATCHES}','.*','This macro is used in MySQL servers discovery rule.','0','0'), ('5678','10531','{$AZURE.MYSQL.DB.NAME.MATCHES}','.*','This macro is used in MySQL servers discovery rule.','0','0'), ('5683','10539','{$AZURE.DATA.TIMEOUT}','15s','API response timeout.','0','0'), ('5685','10539','{$AZURE.DB.CPU.UTIL.CRIT}','90','The critical threshold of CPU utilization, expressed in %.','0','0'), ('5687','10539','{$AZURE.DB.STORAGE.PUSED.CRIT}','90','The critical threshold of the storage utilization, expressed in %.','0','0'), ('5688','10539','{$AZURE.DB.STORAGE.PUSED.WARN}','80','The warning threshold of the storage utilization, expressed in %.','0','0'), ('5689','10539','{$AZURE.PASSWORD}','','Microsoft Azure password.','1','0'), ('5694','10540','{$AZURE.DATA.TIMEOUT}','15s','API response timeout.','0','0'), ('5695','10540','{$AZURE.DB.CPU.UTIL.CRIT}','90','The critical threshold of CPU utilization, expressed in %.','0','0'), ('5697','10540','{$AZURE.DB.MEMORY.UTIL.CRIT}','90','The critical threshold of memory utilization, expressed in %.','0','0'), ('5698','10540','{$AZURE.DB.STORAGE.PUSED.CRIT}','90','The critical threshold of storage utilization, expressed in %.','0','0'), ('5699','10540','{$AZURE.DB.STORAGE.PUSED.WARN}','80','The warning threshold of storage utilization, expressed in %.','0','0'), ('5700','10540','{$AZURE.PASSWORD}','','Microsoft Azure password.','1','0'), ('5705','10419','{$BIGIP.LLD.OVERRIDE.PART.FILTER_LOW_SPACE_TRIGGER}',E'^(?:/usr|/opt/\\.sdm/(?:usr|lib|lib64))$','Partitions that low free space trigger should ignore.','0','0'), ('5708','10531','{$AZURE.PGSQL.DB.LOCATION.MATCHES}','.*','This macro is used in PostgreSQL servers discovery rule.','0','0'), ('5710','10531','{$AZURE.PGSQL.DB.NAME.MATCHES}','.*','This macro is used in PostgreSQL servers discovery rule.','0','0'), ('5713','10543','{$AZURE.DATA.TIMEOUT}','15s','API response timeout.','0','0'), ('5714','10543','{$AZURE.DB.CPU.UTIL.CRIT}','90','The critical threshold of CPU utilization, expressed in %.','0','0'), ('5715','10543','{$AZURE.DB.MEMORY.UTIL.CRIT}','90','The critical threshold of memory utilization, expressed in %.','0','0'), ('5716','10543','{$AZURE.DB.STORAGE.PUSED.CRIT}','90','The critical threshold of storage utilization, expressed in %.','0','0'), ('5717','10543','{$AZURE.DB.STORAGE.PUSED.WARN}','80','The warning threshold of storage utilization, expressed in %.','0','0'), ('5718','10543','{$AZURE.PASSWORD}','','Microsoft Azure password.','1','0'), ('5723','10544','{$AZURE.DATA.TIMEOUT}','15s','API response timeout.','0','0'), ('5724','10544','{$AZURE.DB.CPU.UTIL.CRIT}','90','The critical threshold of CPU utilization, expressed in %.','0','0'), ('5725','10544','{$AZURE.DB.MEMORY.UTIL.CRIT}','90','The critical threshold of memory utilization, expressed in %.','0','0'), ('5726','10544','{$AZURE.DB.STORAGE.PUSED.CRIT}','90','The critical threshold of storage utilization, expressed in %.','0','0'), ('5727','10544','{$AZURE.DB.STORAGE.PUSED.WARN}','80','The warning threshold of storage utilization, expressed in %.','0','0'), ('5728','10544','{$AZURE.PASSWORD}','','Microsoft Azure password.','1','0'), ('5733','10546','{$MERAKI.API.URL}','api.meraki.com/api/v1','Cisco Meraki dashboard API URL, e.g., api.meraki.com/api/v1','0','0'), ('5734','10546','{$MERAKI.DEVICE.NAME.MATCHES}','.+','This macro is used in devices discovery. Can be overridden on the host or linked template level.','0','0'), ('5735','10546','{$MERAKI.DEVICE.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in devices discovery. Can be overridden on the host or linked template level.','0','0'), ('5736','10546','{$MERAKI.HTTP_PROXY}','','HTTP proxy for API requests. You can specify it using the format [protocol://][username[:password]@]proxy.example.com[:port]. See documentation at https://www.zabbix.com/documentation/7.0/manual/config/items/itemtypes/http','0','0'), ('5737','10546','{$MERAKI.ORGANIZATION.NAME.MATCHES}','.+','This macro is used in organizations discovery. Can be overridden on the host or linked template level.','0','0'), ('5738','10546','{$MERAKI.ORGANIZATION.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in organizations discovery. Can be overridden on the host or linked template level.','0','0'), ('5739','10546','{$MERAKI.TOKEN}','','Cisco Meraki dashboard API token.','1','0'), ('5740','10547','{$MERAKI.API.URL}','api.meraki.com/api/v1','Cisco Meraki dashboard API URL, e.g., api.meraki.com/api/v1','0','0'), ('5741','10547','{$MERAKI.DEVICE.LATENCY}','0.15','Devices uplink latency threshold, in seconds.','0','0'), ('5742','10547','{$MERAKI.DEVICE.LOSS}','15','Devices uplink loss threshold, in percent.','0','0'), ('5743','10547','{$MERAKI.HTTP_PROXY}','','HTTP proxy for API requests. You can specify it using the format [protocol://][username[:password]@]proxy.example.com[:port]. See documentation at https://www.zabbix.com/documentation/7.0/manual/config/items/itemtypes/http','0','0'), ('5744','10547','{$MERAKI.TOKEN}','','Cisco Meraki dashboard API token.','1','0'), ('5745','10548','{$MERAKI.API.URL}','api.meraki.com/api/v1','Cisco Meraki dashboard API URL, e.g., api.meraki.com/api/v1','0','0'), ('5746','10548','{$MERAKI.CONFIG.CHANGE.TIMESPAN}','1200','Timespan in seconds for gathering configuration change log. Used in the metric configuration and in the URL query.','0','0'), ('5747','10548','{$MERAKI.HTTP_PROXY}','','HTTP proxy for API requests. You can specify it using the format [protocol://][username[:password]@]proxy.example.com[:port]. See documentation at https://www.zabbix.com/documentation/7.0/manual/config/items/itemtypes/http','0','0'), ('5748','10548','{$MERAKI.LICENSE.EXPIRE}','86400','Time in seconds for license to expire.','0','0'), ('5749','10548','{$MERAKI.TOKEN}','','Cisco Meraki dashboard API token.','1','0'), ('5750','10549','{$MAC}','{#MAC}','MAC address of the device.','0','0'), ('5751','10549','{$NETWORK.ID}','{#NETWORK.ID}','Network ID of the device.','0','0'), ('5752','10549','{$ORGANIZATION_ID}','{#ORGANIZATION_ID}','Organization ID of the device.','0','0'), ('5753','10549','{$SERIAL}','{#SERIAL}','Serial number of the device.','0','0'), ('5754','10550','{$ID}','{#ID}','ID of the organization.','0','0'), ('5755','10266','{$NGINX.PROCESS_NAME}','nginx','The process name filter for the Nginx process discovery.','0','0'), ('5756','10527','{$AWS.PROXY}','','Sets HTTP proxy value. If this macro is empty then no proxy is used.','0','0'), ('5757','10535','{$AWS.PROXY}','','Sets HTTP proxy value. If this macro is empty then no proxy is used.','0','0'), ('5758','10529','{$AWS.PROXY}','','Sets HTTP proxy value. If this macro is empty then no proxy is used.','0','0'), ('5759','10530','{$AWS.PROXY}','','Sets HTTP proxy value. If this macro is empty then no proxy is used.','0','0'), ('5760','10551','{$CISCO.LLD.FILTER.FAN.NAME.MATCHES}',E'^(?:Fan Module-\\d+|PowerSupply-\\d+ Fan-\\d+)$','It leaves only the matching fan names as indicated in the filter string.','0','0'), ('5761','10551','{$CISCO.LLD.FILTER.PSU.NAME.MATCHES}',E'^(?:PowerSupply-\\d+)$','It leaves only the matching power supply names as indicated in the filter string.','0','0'), ('5762','10551','{$CPU.UTIL.CRIT}','90','','0','0'), ('5763','10551','{$ENT_CLASS.NOT_MATCHES}','3','The filter excludes chassis (3) class from Serial discovery. The chassis (3) are polled with a regular item.','0','0'), ('5764','10551','{$ENT_SN.MATCHES}','.+','The filter retrieves only existing serial number strings.','0','0'), ('5765','10551','{$ICMP_LOSS_WARN}','20','','0','0'), ('5766','10551','{$ICMP_RESPONSE_TIME_WARN}','0.15','','0','0'), ('5767','10551','{$IF.ERRORS.WARN}','2','','0','0'), ('5768','10551','{$IF.UTIL.MAX}','90','','0','0'), ('5769','10551','{$IFCONTROL}','1','','0','0'), ('5770','10551','{$MEMORY.UTIL.MAX}','90','','0','0'), ('5771','10551','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','','0','0'), ('5772','10551','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','If the administrative status is down (2), then an interface is excluded.','0','0'), ('5773','10551','{$NET.IF.IFALIAS.MATCHES}','.*','','0','0'), ('5774','10551','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('5775','10551','{$NET.IF.IFDESCR.MATCHES}','.*','','0','0'), ('5776','10551','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('5777','10551','{$NET.IF.IFNAME.MATCHES}','^.*$','','0','0'), ('5778','10551','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','It filters out `loopbacks`, `nulls`, `docker veth` links and `docker0 bridge` by default.','0','0'), ('5779','10551','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0','0'), ('5780','10551','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','If the operational status is `notPresent (6)`, then an interface is excluded.','0','0'), ('5781','10551','{$NET.IF.IFTYPE.MATCHES}','.*','','0','0'), ('5782','10551','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('5783','10551','{$PSU.PROBLEM.STATES}','^(1|4|5|6|7|9|10|11|12)$','The PSU states list for average trigger priority.','0','0'), ('5784','10551','{$SNMP.TIMEOUT}','5m','','0','0'), ('5785','10551','{$TEMP_CRIT}','60','','0','0'), ('5786','10551','{$TEMP_CRIT:regex:"BACK"}','70','','0','0'), ('5787','10551','{$TEMP_CRIT:regex:"CPU"}','90','','0','0'), ('5788','10551','{$TEMP_CRIT:regex:"FRONT"}','80','','0','0'), ('5789','10551','{$TEMP_CRIT:regex:"SUN1"}','110','','0','0'), ('5790','10551','{$TEMP_CRIT:regex:"Transceiver"}','75','','0','0'), ('5791','10551','{$TEMP_CRIT_LOW}','5','','0','0'), ('5792','10551','{$TEMP_WARN}','50','','0','0'), ('5793','10551','{$TEMP_WARN:regex:"BACK"}','42','','0','0'), ('5794','10551','{$TEMP_WARN:regex:"CPU"}','80','','0','0'), ('5795','10551','{$TEMP_WARN:regex:"FRONT"}','70','','0','0'), ('5796','10551','{$TEMP_WARN:regex:"SUN1"}','90','','0','0'), ('5797','10551','{$TEMP_WARN:regex:"Transceiver"}','70','','0','0'), ('5798','10547','{$MERAKI.DEVICE.LOSS.LATENCY.IP.MATCHES}',E'^((25[0-5]|(2[0-4]|1\\d|[1-9]|)\\d)\\.?\\b){4}$','This macro is used in loss and latency checks discovery. Can be overridden on the host or linked template level.','0','0'), ('5799','10547','{$MERAKI.DEVICE.LOSS.LATENCY.IP.NOT_MATCHES}','^null$','This macro is used in loss and latency checks discovery. Can be overridden on the host or linked template level.','0','0'), ('5800','10547','{$MERAKI.DEVICE.UPLINK.MATCHES}','.*','This macro is used in loss and latency checks discovery. Can be overridden on the host or linked template level.','0','0'), ('5801','10547','{$MERAKI.DEVICE.UPLINK.NOT_MATCHES}','^null$','This macro is used in loss and latency checks discovery. Can be overridden on the host or linked template level.','0','0'), ('5802','10552','{$API.TOKEN}','','A token to use for API connections.','1','0'), ('5803','10552','{$API.URI.ENDPOINT}','','The API endpoint is a URI - for example, `https://monitored.controlm.instance:8443/automation-api`.','0','0'), ('5804','10553','{$API.TOKEN}','','A token to use for API connections.','1','0'), ('5805','10553','{$API.URI.ENDPOINT}','','The API endpoint is a URI - for example, `https://monitored.controlm.instance:8443/automation-api`.','0','0'), ('5806','10553','{$SERVER.NAME}','','The name of the Control-M server.','0','0'), ('5807','10554','{$SERVER.NAME}','{#SERVER.NAME}','','0','0'), ('5808','10555','{$CREATED.AFTER}','7','Returns sessions that are created after chosen days.','0','0'), ('5809','10555','{$JOB.NAME.MATCHES}','.*','This macro is used in discovery rule to evaluate the states of jobs.','0','0'), ('5810','10555','{$JOB.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in discovery rule to evaluate the states of jobs.','0','0'), ('5811','10555','{$JOB.STATUS.MATCHES}','.*','This macro is used in discovery rule to evaluate the states of jobs.','0','0'), ('5812','10555','{$JOB.STATUS.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in discovery rule to evaluate the states of jobs.','0','0'), ('5813','10555','{$JOB.TYPE.MATCHES}','.*','This macro is used in discovery rule to evaluate the states of jobs.','0','0'), ('5814','10555','{$JOB.TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in discovery rule to evaluate the states of jobs.','0','0'), ('5815','10555','{$PROXIES.NAME.MATCHES}','.*','This macro is used in proxies discovery rule.','0','0'), ('5816','10555','{$PROXIES.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in proxies discovery rule.','0','0'), ('5817','10555','{$PROXIES.TYPE.MATCHES}','.*','This macro is used in proxies discovery rule.','0','0'), ('5818','10555','{$PROXIES.TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in proxies discovery rule.','0','0'), ('5819','10555','{$REPOSITORIES.NAME.MATCHES}','.*','This macro is used in repositories discovery rule.','0','0'), ('5820','10555','{$REPOSITORIES.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in repositories discovery rule.','0','0'), ('5821','10555','{$REPOSITORIES.TYPE.MATCHES}','.*','This macro is used in repositories discovery rule.','0','0'), ('5822','10555','{$REPOSITORIES.TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in repositories discovery rule.','0','0'), ('5823','10555','{$SESSION.NAME.MATCHES}','.*','This macro is used in discovery rule to evaluate sessions.','0','0'), ('5824','10555','{$SESSION.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in discovery rule to evaluate sessions.','0','0'), ('5825','10555','{$SESSION.TYPE.MATCHES}','.*','This macro is used in discovery rule to evaluate sessions.','0','0'), ('5826','10555','{$SESSION.TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in discovery rule to evaluate sessions.','0','0'), ('5827','10555','{$VEEAM.API.URL}','https://localhost:9419','The Veeam API endpoint is a URL in the format `://:`.','0','0'), ('5828','10555','{$VEEAM.DATA.TIMEOUT}','10','A response timeout for the API.','0','0'), ('5829','10555','{$VEEAM.HTTP.PROXY}','','Sets the HTTP proxy to `http_proxy` value. If this parameter is empty, then no proxy is used.','0','0'), ('5830','10555','{$VEEAM.PASSWORD}','','The `password` of the Veeam Backup and Replication account. It is used to obtain an access token.','1','0'), ('5831','10555','{$VEEAM.USER}','','The `username` of the Veeam Backup and Replication account. It is used to obtain an access token.','1','0'), ('5832','10556','{$BACKUP.NAME.MATCHES}','.*','This macro is used in backup discovery rule.','0','0'), ('5833','10556','{$BACKUP.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in backup discovery rule.','0','0'), ('5834','10556','{$BACKUP.TYPE.MATCHES}','.*','This macro is used in backup discovery rule.','0','0'), ('5835','10556','{$BACKUP.TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in backup discovery rule.','0','0'), ('5836','10556','{$VEEAM.MANAGER.API.URL}','https://localhost:9398','Veeam Backup Enterprise Manager API endpoint is a URL in the format: `://:`.','0','0'), ('5837','10556','{$VEEAM.MANAGER.DATA.TIMEOUT}','10','A response timeout for API.','0','0'), ('5838','10556','{$VEEAM.MANAGER.HTTP.PROXY}','','Sets the HTTP proxy to `http_proxy` value. If this parameter is empty, then no proxy is used.','0','0'), ('5839','10556','{$VEEAM.MANAGER.JOB.MAX.FAIL}','5','The maximum score of failed jobs (for a trigger expression).','0','0'), ('5840','10556','{$VEEAM.MANAGER.JOB.MAX.WARN}','10','The maximum score of warning jobs (for a trigger expression).','0','0'), ('5841','10556','{$VEEAM.MANAGER.PASSWORD}','','The `password` of the Veeam Backup Enterprise Manager account.','1','0'), ('5842','10556','{$VEEAM.MANAGER.USER}','','The `user name` of the Veeam Backup Enterprise Manager account .','1','0'), ('5843','10531','{$AZURE.MSSQL.DB.LOCATION.MATCHES}','.*','This macro is used in Microsoft SQL databases discovery rule.','0','0'), ('5845','10531','{$AZURE.MSSQL.DB.NAME.MATCHES}','.*','This macro is used in Microsoft SQL databases discovery rule.','0','0'), ('5849','10557','{$AZURE.DATA.TIMEOUT}','15s','API response timeout.','0','0'), ('5850','10557','{$AZURE.DB.CPU.UTIL.CRIT}','90','The critical threshold of CPU utilization, expressed in %.','0','0'), ('5851','10557','{$AZURE.DB.MEMORY.UTIL.CRIT}','90','The critical threshold of memory utilization, expressed in %.','0','0'), ('5852','10557','{$AZURE.DB.STORAGE.PUSED.CRIT}','90','The critical threshold of storage utilization, expressed in %.','0','0'), ('5853','10557','{$AZURE.DB.STORAGE.PUSED.WARN}','80','The warning threshold of storage utilization, expressed in %.','0','0'), ('5854','10557','{$AZURE.PASSWORD}','','Microsoft Azure password.','1','0'), ('5859','10558','{$AZURE.DATA.TIMEOUT}','15s','API response timeout.','0','0'), ('5860','10558','{$AZURE.DB.CPU.UTIL.CRIT}','90','The critical threshold of CPU utilization, expressed in %.','0','0'), ('5861','10558','{$AZURE.DB.MEMORY.UTIL.CRIT}','90','The critical threshold of memory utilization, expressed in %.','0','0'), ('5862','10558','{$AZURE.DB.STORAGE.PUSED.CRIT}','90','The critical threshold of storage utilization, expressed in %.','0','0'), ('5863','10558','{$AZURE.DB.STORAGE.PUSED.WARN}','80','The warning threshold of storage utilization, expressed in %.','0','0'), ('5864','10558','{$AZURE.PASSWORD}','','Microsoft Azure password.','1','0'), ('5869','10560','{$PROC.NAME.MATCHES}','','This macro is used in the discovery of processes. It can be overridden on a host-level or on a linked template-level.','0','0'), ('5870','10560','{$PROC.NAME.NOT_MATCHES}','','This macro is used in the discovery of processes. It can be overridden on a host-level or on a linked template-level.','0','0'), ('5871','10561','{$AGENT.TIMEOUT}','3m','Timeout after which agent is considered unavailable. Works only for agents reachable from Zabbix server/proxy (passive mode).','0','0'), ('5872','10562','{$AGENT.NODATA_TIMEOUT}','30m','No data timeout for active agents. Consider to keep it relatively high.','0','0'), ('5873','10562','{$AGENT.TIMEOUT}','5m','Timeout after which agent is considered unavailable.','0','0'), ('5874','10563','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('5875','10563','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('5876','10563','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('5877','10564','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('5878','10564','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('5879','10565','{$SMART.DISK.NAME.MATCHES}','^.*$','This macro is used in the filter of attribute and disk discoveries. It can be overridden on the host or linked on the template level.','0','0'), ('5880','10565','{$SMART.DISK.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in the filter of attribute and disk discoveries. It can be overridden on the host or linked on the template level.','0','0'), ('5881','10565','{$SMART.TEMPERATURE.MAX.CRIT}','65','This macro is used for trigger expression. It can be overridden on the host or linked on the template level.','0','0'), ('5882','10565','{$SMART.TEMPERATURE.MAX.WARN}','50','This macro is used for trigger expression. It can be overridden on the host or linked on the template level.','0','0'), ('5883','10566','{$SMART.DISK.NAME.MATCHES}','^.*$','This macro is used in the filter of attribute and disk discoveries. It can be overridden on the host or linked on the template level.','0','0'), ('5884','10566','{$SMART.DISK.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in the filter of attribute and disk discoveries. It can be overridden on the host or linked on the template level.','0','0'), ('5885','10566','{$SMART.TEMPERATURE.MAX.CRIT}','65','This macro is used for trigger expression. It can be overridden on the host or linked on the template level.','0','0'), ('5886','10566','{$SMART.TEMPERATURE.MAX.WARN}','50','This macro is used for trigger expression. It can be overridden on the host or linked on the template level.','0','0'), ('5887','10264','{$APACHE.PROCESS.NAME.PARAMETER}','','The process name of the Apache web server used in the item key `proc.get`. It could be specified if the correct process name is known.','0','0'), ('5888','10507','{$KUBE.HTTP.PROXY}','','Sets the HTTP proxy to `http_proxy` value. If this parameter is empty, then no proxy is used.','0','0'), ('5889','10567','{$VFS.FS.FSNAME.NOT_MATCHES}','^/(dev|sys|run|proc|etc/.+|.+/shm|hostfs/root/var/lib/docker/.+)$','This macro is used in filesystems discovery. Can be overridden on the host or linked template level','0','0'), ('5890','10567','{$VFS.FS.FSTYPE.NOT_MATCHES}','^(autofs|binfmt_misc|cgroup|configfs|debugfs|devpts|devtmpfs|fusectl|hugetlbfs|mqueue|overlay|proc|procfs|pstore|rpc_pipefs|securityfs|sysfs|tracefs)$','This macro is used in filesystems discovery. Can be overridden on the host or linked template level','0','0'), ('5891','10510','{$KUBE.LLD.FILTER.PV.MATCHES}','.*','Filter of discoverable persistent volumes by name.','0','0'), ('5892','10510','{$KUBE.LLD.FILTER.PV.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered persistent volumes by name.','0','0'), ('5893','10510','{$KUBE.REPLICA.MISMATCH.EVAL_PERIOD}','#5','The evaluation period range which is used for calculation of expressions in trigger prototypes (time period or value range). Can be used with context.','0','0'), ('5894','10266','{$NGINX.PROCESS.NAME.PARAMETER}','','The process name of the Nginx server used in the item key `proc.get`. It could be specified if the correct process name is known.','0','0'), ('5895','10330','{$PHP_FPM.PROCESS.NAME.PARAMETER}','','The process name of the PHP-FPM used in the item key `proc.get`. It could be specified if the correct process name is known.','0','0'), ('5896','10301','{$RABBITMQ.PROCESS.NAME.PARAMETER}','','The process name of the RabbitMQ server used in the item key `proc.get`. It could be specified if the correct process name is known.','0','0'), ('5897','10531','{$AZURE.APP.ID}','','The App ID of Microsoft Azure.','0','0'), ('5898','10531','{$AZURE.COSMOS.MONGO.DB.LOCATION.MATCHES}','.*','This macro is used in Microsoft Cosmos DB account discovery rule.','0','0'), ('5899','10531','{$AZURE.COSMOS.MONGO.DB.LOCATION.NOT.MATCHES}','CHANGE_IF_NEEDED','This macro is used in Microsoft Cosmos DB account discovery rule.','0','0'), ('5900','10531','{$AZURE.COSMOS.MONGO.DB.NAME.MATCHES}','.*','This macro is used in Microsoft Cosmos DB account discovery rule.','0','0'), ('5901','10531','{$AZURE.COSMOS.MONGO.DB.NAME.NOT.MATCHES}','CHANGE_IF_NEEDED','This macro is used in Microsoft Cosmos DB account discovery rule.','0','0'), ('5902','10531','{$AZURE.MSSQL.DB.LOCATION.NOT.MATCHES}','CHANGE_IF_NEEDED','This macro is used in Microsoft SQL databases discovery rule.','0','0'), ('5903','10531','{$AZURE.MSSQL.DB.NAME.NOT.MATCHES}','CHANGE_IF_NEEDED','This macro is used in Microsoft SQL databases discovery rule.','0','0'), ('5904','10531','{$AZURE.MSSQL.DB.SIZE.NOT.MATCHES}','^System$','This macro is used in Microsoft SQL databases discovery rule.','0','0'), ('5905','10531','{$AZURE.MYSQL.DB.LOCATION.NOT.MATCHES}','CHANGE_IF_NEEDED','This macro is used in MySQL servers discovery rule.','0','0'), ('5906','10531','{$AZURE.MYSQL.DB.NAME.NOT.MATCHES}','CHANGE_IF_NEEDED','This macro is used in MySQL servers discovery rule.','0','0'), ('5907','10531','{$AZURE.PGSQL.DB.LOCATION.NOT.MATCHES}','CHANGE_IF_NEEDED','This macro is used in PostgreSQL servers discovery rule.','0','0'), ('5908','10531','{$AZURE.PGSQL.DB.NAME.NOT.MATCHES}','CHANGE_IF_NEEDED','This macro is used in PostgreSQL servers discovery rule.','0','0'), ('5909','10531','{$AZURE.RESOURCE.GROUP.MATCHES}','.*','This macro is used in discovery rules.','0','0'), ('5910','10531','{$AZURE.RESOURCE.GROUP.NOT.MATCHES}','CHANGE_IF_NEEDED','This macro is used in discovery rules.','0','0'), ('5911','10531','{$AZURE.STORAGE.ACC.AVAILABILITY}','70','The warning threshold of the storage account availability.','0','0'), ('5912','10531','{$AZURE.STORAGE.ACC.BLOB.AVAILABILITY}','70','The warning threshold of the storage account blob services availability.','0','0'), ('5913','10531','{$AZURE.STORAGE.ACC.LOCATION.MATCHES}','.*','This macro is used in storage accounts discovery rule.','0','0'), ('5914','10531','{$AZURE.STORAGE.ACC.LOCATION.NOT.MATCHES}','CHANGE_IF_NEEDED','This macro is used in storage accounts discovery rule.','0','0'), ('5915','10531','{$AZURE.STORAGE.ACC.NAME.MATCHES}','.*','This macro is used in storage accounts discovery rule.','0','0'), ('5916','10531','{$AZURE.STORAGE.ACC.NAME.NOT.MATCHES}','CHANGE_IF_NEEDED','This macro is used in storage accounts discovery rule.','0','0'), ('5917','10531','{$AZURE.STORAGE.ACC.TABLE.AVAILABILITY}','70','The warning threshold of the storage account table services availability.','0','0'), ('5918','10531','{$AZURE.SUBSCRIPTION.ID}','','Microsoft Azure subscription ID.','0','0'), ('5919','10531','{$AZURE.TENANT.ID}','','Microsoft Azure tenant ID.','0','0'), ('5920','10531','{$AZURE.VM.LOCATION.NOT.MATCHES}','CHANGE_IF_NEEDED','This macro is used in virtual machines discovery rule.','0','0'), ('5921','10531','{$AZURE.VM.NAME.NOT.MATCHES}','CHANGE_IF_NEEDED','This macro is used in virtual machines discovery rule.','0','0'), ('5922','10557','{$AZURE.APP.ID}','','The App ID of Microsoft Azure.','0','0'), ('5923','10557','{$AZURE.RESOURCE.ID}','','Microsoft Azure Microsoft SQL database ID.','0','0'), ('5924','10557','{$AZURE.SUBSCRIPTION.ID}','','Microsoft Azure subscription ID.','0','0'), ('5925','10557','{$AZURE.TENANT.ID}','','Microsoft Azure tenant ID.','0','0'), ('5926','10558','{$AZURE.APP.ID}','','The App ID of Microsoft Azure.','0','0'), ('5927','10558','{$AZURE.RESOURCE.ID}','','Microsoft Azure Microsoft SQL database ID.','0','0'), ('5928','10558','{$AZURE.SUBSCRIPTION.ID}','','Microsoft Azure subscription ID.','0','0'), ('5929','10558','{$AZURE.TENANT.ID}','','Microsoft Azure tenant ID.','0','0'), ('5930','10539','{$AZURE.APP.ID}','','The App ID of Microsoft Azure.','0','0'), ('5931','10539','{$AZURE.DB.ABORTED.CONN.MAX.WARN}','25','The number of failed attempts to connect to the MySQL server for a trigger expression.','0','0'), ('5932','10539','{$AZURE.RESOURCE.ID}','','Microsoft Azure MySQL server ID.','0','0'), ('5933','10539','{$AZURE.SUBSCRIPTION.ID}','','Microsoft Azure subscription ID.','0','0'), ('5934','10539','{$AZURE.TENANT.ID}','','Microsoft Azure tenant ID.','0','0'), ('5935','10540','{$AZURE.APP.ID}','','The App ID of Microsoft Azure.','0','0'), ('5936','10540','{$AZURE.DB.FAILED.CONN.MAX.WARN}','25','The number of failed attempts to connect to the MySQL server for trigger expression.','0','0'), ('5937','10540','{$AZURE.RESOURCE.ID}','','Microsoft Azure MySQL server ID.','0','0'), ('5938','10540','{$AZURE.SUBSCRIPTION.ID}','','Microsoft Azure subscription ID.','0','0'), ('5939','10540','{$AZURE.TENANT.ID}','','Microsoft Azure tenant ID.','0','0'), ('5940','10543','{$AZURE.APP.ID}','','The App ID of Microsoft Azure.','0','0'), ('5941','10543','{$AZURE.RESOURCE.ID}','','Microsoft Azure PostgreSQL server ID.','0','0'), ('5942','10543','{$AZURE.SUBSCRIPTION.ID}','','Microsoft Azure subscription ID.','0','0'), ('5943','10543','{$AZURE.TENANT.ID}','','Microsoft Azure tenant ID.','0','0'), ('5944','10544','{$AZURE.APP.ID}','','The App ID of Microsoft Azure.','0','0'), ('5945','10544','{$AZURE.RESOURCE.ID}','','Microsoft Azure PostgreSQL server ID.','0','0'), ('5946','10544','{$AZURE.SUBSCRIPTION.ID}','','Microsoft Azure subscription ID.','0','0'), ('5947','10544','{$AZURE.TENANT.ID}','','Microsoft Azure tenant ID.','0','0'), ('5948','10532','{$AZURE.APP.ID}','','The App ID of Microsoft Azure.','0','0'), ('5949','10532','{$AZURE.RESOURCE.ID}','','Microsoft Azure virtual machine ID.','0','0'), ('5950','10532','{$AZURE.SUBSCRIPTION.ID}','','Microsoft Azure subscription ID.','0','0'), ('5951','10532','{$AZURE.TENANT.ID}','','Microsoft Azure tenant ID.','0','0'), ('5952','10568','{$AZURE.APP.ID}','','The App ID of Microsoft Azure.','0','0'), ('5953','10568','{$AZURE.DATA.TIMEOUT}','15s','API response timeout.','0','0'), ('5954','10568','{$AZURE.DB.COSMOS.MONGO.AVAILABILITY}','70','The warning threshold of the Cosmos DB for MongoDB service availability.','0','0'), ('5955','10568','{$AZURE.PASSWORD}','','Microsoft Azure password.','1','0'), ('5956','10568','{$AZURE.RESOURCE.ID}','','Microsoft Azure Cosmos DB ID.','0','0'), ('5957','10568','{$AZURE.SUBSCRIPTION.ID}','','Microsoft Azure subscription ID.','0','0'), ('5958','10568','{$AZURE.TENANT.ID}','','Microsoft Azure tenant ID.','0','0'), ('5959','10533','{$AZURE.RESOURCE.ID}','{#ID}','','0','0'), ('5960','10541','{$AZURE.RESOURCE.ID}','{#ID}','','0','0'), ('5961','10545','{$AZURE.RESOURCE.ID}','{#ID}','','0','0'), ('5962','10559','{$AZURE.RESOURCE.ID}','{#ID}','','0','0'), ('5963','10569','{$AZURE.RESOURCE.ID}','{#ID}','','0','0'), ('5964','10570','{$GCP.AUTH.FREQUENCY}','45m','The update interval for the GCP Authorization item, which also equals to the access token regeneration request frequency. Check the template documentation notes carefully for more details.','0','0'), ('5965','10570','{$GCP.CLIENT.EMAIL}','','Service account client e-mail.','0','0'), ('5966','10570','{$GCP.DATA.TIMEOUT}','15s','A response timeout for an API.','0','0'), ('5967','10570','{$GCP.GCE.INST.NAME.MATCHES}','.*','The filter to include GCP Compute Engine instances by namespace.','0','0'), ('5968','10570','{$GCP.GCE.INST.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','The filter to exclude GCP Compute Engine instances by namespace.','0','0'), ('5969','10570','{$GCP.GCE.QUOTA.MATCHES}','.*','The filter to include GCP Compute Engine project quotas by namespace.','0','0'), ('5970','10570','{$GCP.GCE.QUOTA.NOT_MATCHES}','CHANGE_IF_NEEDED','The filter to exclude GCP Compute Engine project quotas by namespace.','0','0'), ('5971','10570','{$GCP.GCE.QUOTA.PUSED.MIN.CRIT}','95','GCP Compute Engine project quota critical quota utilization threshold.','0','0'), ('5972','10570','{$GCP.GCE.QUOTA.PUSED.MIN.WARN}','80','GCP Compute Engine project quota warning utilization threshold.','0','0'), ('5973','10570','{$GCP.GCE.ZONE.MATCHES}','.*','The filter to include GCP Compute Engine instances by zone.','0','0'), ('5974','10570','{$GCP.GCE.ZONE.NOT_MATCHES}','CHANGE_IF_NEEDED','The filter to exclude GCP Compute Engine instances by zone.','0','0'), ('5975','10570','{$GCP.MSSQL.INST.NAME.MATCHES}','.*','The filter to include GCP Cloud SQL MSSQL instances by namespace.','0','0'), ('5976','10570','{$GCP.MSSQL.INST.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','The filter to exclude GCP Cloud SQL MSSQL instances by namespace.','0','0'), ('5977','10570','{$GCP.MSSQL.INST.TYPE.MATCHES}','.*','The filter to include GCP Cloud SQL MSSQL instances by type (standalone/replica).','0','0'), ('5978','10570','{$GCP.MSSQL.INST.TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','The filter to exclude GCP Cloud SQL MSSQL instances by type (standalone/replica). Set a macro value ''CLOUD_SQL_INSTANCE'' to exclude standalone Instances or ''READ_REPLICA_INSTANCE'' to exclude read-only Replicas.','0','0'), ('5979','10570','{$GCP.MSSQL.ZONE.MATCHES}','.*','The filter to include GCP Cloud SQL MSSQL instances by zone.','0','0'), ('5980','10570','{$GCP.MSSQL.ZONE.NOT_MATCHES}','CHANGE_IF_NEEDED','The filter to exclude GCP Cloud SQL MSSQL instances by zone.','0','0'), ('5981','10570','{$GCP.MYSQL.INST.NAME.MATCHES}','.*','The filter to include GCP Cloud SQL MySQL instances by namespace.','0','0'), ('5982','10570','{$GCP.MYSQL.INST.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','The filter to exclude GCP Cloud SQL MySQL instances by namespace.','0','0'), ('5983','10570','{$GCP.MYSQL.INST.TYPE.MATCHES}','.*','The filter to include GCP Cloud SQL MySQL instances by type (standalone/replica).','0','0'), ('5984','10570','{$GCP.MYSQL.INST.TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','The filter to exclude GCP Cloud SQL MySQL instances by type (standalone/replica). Set a macro value ''CLOUD_SQL_INSTANCE'' to exclude standalone Instances or ''READ_REPLICA_INSTANCE'' to exclude read-only Replicas.','0','0'), ('5985','10570','{$GCP.MYSQL.ZONE.MATCHES}','.*','The filter to include GCP Cloud SQL MySQL instances by zone.','0','0'), ('5986','10570','{$GCP.MYSQL.ZONE.NOT_MATCHES}','CHANGE_IF_NEEDED','The filter to exclude GCP Cloud SQL MySQL instances by zone.','0','0'), ('5987','10570','{$GCP.PGSQL.INST.NAME.MATCHES}','.*','The filter to include GCP Cloud SQL PostgreSQL instances by namespace.','0','0'), ('5988','10570','{$GCP.PGSQL.INST.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','The filter to exclude GCP Cloud SQL PostgreSQL instances by namespace.','0','0'), ('5989','10570','{$GCP.PGSQL.INST.TYPE.MATCHES}','.*','The filter to include GCP Cloud SQL PostgreSQL instances by type (standalone/replica).','0','0'), ('5990','10570','{$GCP.PGSQL.INST.TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','The filter to exclude GCP Cloud SQL PostgreSQL instances by type (standalone/replica). Set a macro value ''CLOUD_SQL_INSTANCE'' to exclude standalone Instances or ''READ_REPLICA_INSTANCE'' to exclude read-only Replicas.','0','0'), ('5991','10570','{$GCP.PGSQL.ZONE.MATCHES}','.*','The filter to include GCP Cloud SQL PostgreSQL instances by zone.','0','0'), ('5992','10570','{$GCP.PGSQL.ZONE.NOT_MATCHES}','CHANGE_IF_NEEDED','The filter to exclude GCP Cloud SQL PostgreSQL instances by zone.','0','0'), ('5993','10570','{$GCP.PRIVATE.KEY}','','Service account private key data.','1','0'), ('5994','10570','{$GCP.PRIVATE.KEY.ID}','','Service account private key id.','1','0'), ('5995','10570','{$GCP.PROJECT.ID}','','GCP project ID.','0','0'), ('5996','10571','{$CLOUD_SQL.MSSQL.CPU.UTIL.MAX}','95','GCP Cloud SQL MSSQL instance CPU usage threshold.','0','0'), ('5997','10571','{$CLOUD_SQL.MSSQL.DB.NAME.MATCHES}','.*','The filter to include GCP Cloud SQL MSSQL databases by namespace.','0','0'), ('5998','10571','{$CLOUD_SQL.MSSQL.DB.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','The filter to exclude GCP Cloud SQL MSSQL databases by namespace.','0','0'), ('5999','10571','{$CLOUD_SQL.MSSQL.DISK.UTIL.CRIT}','90','GCP Cloud SQL MSSQL instance critical disk usage threshold.','0','0'), ('6000','10571','{$CLOUD_SQL.MSSQL.DISK.UTIL.WARN}','80','GCP Cloud SQL MSSQL instance warning disk usage threshold.','0','0'), ('6001','10571','{$CLOUD_SQL.MSSQL.RAM.UTIL.MAX}','90','GCP Cloud SQL MSSQL instance RAM usage threshold.','0','0'), ('6002','10571','{$CLOUD_SQL.MSSQL.RES.NAME.MATCHES}','.*','The filter to include GCP Cloud SQL MSSQL resources by namespace.','0','0'), ('6003','10571','{$CLOUD_SQL.MSSQL.RES.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','The filter to exclude GCP Cloud SQL MSSQL resources by namespace.','0','0'), ('6004','10571','{$CLOUD_SQL.MSSQL.SCHEDULER.ID.MATCHES}','.*','The filter to include GCP Cloud SQL MSSQL schedulers by namespace.','0','0'), ('6005','10571','{$CLOUD_SQL.MSSQL.SCHEDULER.ID.NOT_MATCHES}','CHANGE_IF_NEEDED','The filter to exclude GCP Cloud SQL MSSQL schedulers by namespace.','0','0'), ('6006','10571','{$GCP.DATA.TIMEOUT}','15s','A response timeout for an API.','0','0'), ('6007','10571','{$GCP.TIME.WINDOW}','5m','Time interval for the data requests. Supported usage type: 1. The default update interval for most of the items. 2. The minimal time window for the data requested in the Monitoring Query Language REST API request.','0','0'), ('6008','10572','{$GCP.DATA.TIMEOUT}','15s','A response timeout for an API.','0','0'), ('6009','10572','{$GCP.TIME.WINDOW}','5m','Time interval for the data requests. Supported usage type: 1. The default update interval for most of the items. 2. The minimal time window for the data requested in the Monitoring Query Language REST API request.','0','0'), ('6010','10573','{$CLOUD_SQL.MYSQL.CPU.UTIL.MAX}','95','GCP Cloud SQL MySQL instance CPU usage threshold.','0','0'), ('6011','10573','{$CLOUD_SQL.MYSQL.DISK.UTIL.CRIT}','90','GCP Cloud SQL MySQL instance critical disk usage threshold.','0','0'), ('6012','10573','{$CLOUD_SQL.MYSQL.DISK.UTIL.WARN}','80','GCP Cloud SQL MySQL instance warning disk usage threshold.','0','0'), ('6013','10573','{$CLOUD_SQL.MYSQL.RAM.UTIL.MAX}','90','GCP Cloud SQL MySQL instance RAM usage threshold.','0','0'), ('6014','10573','{$GCP.DATA.TIMEOUT}','15s','A response timeout for an API.','0','0'), ('6015','10573','{$GCP.TIME.WINDOW}','5m','Time interval for the data requests. Supported usage type: 1. The default update interval for most of the items. 2. The minimal time window for the data requested in the Monitoring Query Language REST API request.','0','0'), ('6016','10574','{$GCP.DATA.TIMEOUT}','15s','A response timeout for an API.','0','0'), ('6017','10574','{$GCP.TIME.WINDOW}','5m','Time interval for the data requests. Supported usage type: 1. The default update interval for most of the items. 2. The minimal time window for the data requested in the Monitoring Query Language REST API request.','0','0'), ('6018','10575','{$CLOUD_SQL.PGSQL.CPU.UTIL.MAX}','95','GCP Cloud SQL PostgreSQL instance CPU usage threshold.','0','0'), ('6019','10575','{$CLOUD_SQL.PGSQL.DISK.UTIL.CRIT}','90','GCP Cloud SQL PostgreSQL instance critical disk usage threshold.','0','0'), ('6020','10575','{$CLOUD_SQL.PGSQL.DISK.UTIL.WARN}','80','GCP Cloud SQL PostgreSQL instance warning disk usage threshold.','0','0'), ('6021','10575','{$CLOUD_SQL.PGSQL.RAM.UTIL.MAX}','90','GCP Cloud SQL PostgreSQL instance RAM usage threshold.','0','0'), ('6022','10575','{$GCP.CLOUD_SQL.DB.NAME.MATCHES}','.*','The filter to include GCP Cloud SQL PostgreSQL databases by namespace.','0','0'), ('6023','10575','{$GCP.CLOUD_SQL.DB.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','The filter to exclude GCP Cloud SQL PostgreSQL databases by namespace.','0','0'), ('6024','10575','{$GCP.DATA.TIMEOUT}','15s','A response timeout for an API.','0','0'), ('6025','10575','{$GCP.TIME.WINDOW}','5m','Time interval for the data requests. Supported usage type: 1. The default update interval for most of the items. 2. The minimal time window for the data requested in the Monitoring Query Language REST API request.','0','0'), ('6026','10576','{$GCP.DATA.TIMEOUT}','15s','A response timeout for an API.','0','0'), ('6027','10576','{$GCP.TIME.WINDOW}','5m','Time interval for the data requests. Supported usage type: 1. The default update interval for most of the items. 2. The minimal time window for the data requested in the Monitoring Query Language REST API request.','0','0'), ('6028','10577','{$GCE.CPU.UTIL.MAX}','95','GCP Compute Engine instance CPU utilization threshold.','0','0'), ('6029','10577','{$GCE.DISK.DEV_TYPE.MATCHES}','.*','The filter to include GCP Compute Engine disks by device type.','0','0'), ('6030','10577','{$GCE.DISK.DEV_TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','The filter to exclude GCP Compute Engine disks by device type.','0','0'), ('6031','10577','{$GCE.DISK.NAME.MATCHES}','.*','The filter to include GCP Compute Engine disks by namespace.','0','0'), ('6032','10577','{$GCE.DISK.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','The filter to exclude GCP Compute Engine disks by namespace.','0','0'), ('6033','10577','{$GCE.DISK.STOR_TYPE.MATCHES}','.*','The filter to include GCP Compute Engine disks by storage type.','0','0'), ('6034','10577','{$GCE.DISK.STOR_TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','The filter to exclude GCP Compute Engine disks by storage type.','0','0'), ('6035','10577','{$GCE.RAM.UTIL.MAX}','90','GCP Compute Engine instance RAM utilization threshold.','0','0'), ('6036','10577','{$GCP.DATA.TIMEOUT}','15s','A response timeout for an API.','0','0'), ('6037','10577','{$GCP.TIME.WINDOW}','5m','Time interval for the data requests. Supported usage type: 1. The default update interval for most of the items. 2. The minimal time window for the data requested in the Monitoring Query Language REST API request.','0','0'), ('6038','10578','{$CLOUD_SQL.HIGH.AVAILABILITY}','{#CLOUD_SQL.INSTANCE.HIGH.AVAIL}','GCP Cloud SQL instance high availability definition. Required for metrics filtration.','0','0'), ('6039','10578','{$CLOUD_SQL.MSSQL.AUDITED}','{#MSSQL.AUDITED}','GCP Cloud SQL MSSQL audit enabled definition. Required for metrics filtration.','0','0'), ('6040','10578','{$GCP.AUTH.TOKEN}','{#GCP.AUTH.TOKEN}','Google Cloud Platform authorization token.','0','0'), ('6041','10578','{$GCP.PROJECT.ID}','{#GCP.PROJECT.ID}','GCP Project Id.','0','0'), ('6042','10579','{$CLOUD_SQL.HIGH.AVAILABILITY}','{#CLOUD_SQL.INSTANCE.HIGH.AVAIL}','GCP Cloud SQL instance high availability definition.','0','0'), ('6043','10579','{$GCP.AUTH.TOKEN}','{#GCP.AUTH.TOKEN}','Google Cloud Platform authorization token.','0','0'), ('6044','10579','{$GCP.PROJECT.ID}','{#GCP.PROJECT.ID}','GCP Project Id.','0','0'), ('6045','10580','{$CLOUD_SQL.HIGH.AVAILABILITY}','{#CLOUD_SQL.INSTANCE.HIGH.AVAIL}','GCP Cloud SQL instance high availability definition.','0','0'), ('6046','10580','{$GCP.AUTH.TOKEN}','{#GCP.AUTH.TOKEN}','Google Cloud Platform authorization token.','0','0'), ('6047','10580','{$GCP.PROJECT.ID}','{#GCP.PROJECT.ID}','GCP project id.','0','0'), ('6048','10581','{$GCE.INSTANCE.ZONE}','{#GCE.INSTANCE.ZONE}','Instance zone (location).','0','0'), ('6049','10581','{$GCE.INTEGRITY.STATE}','{#GCE.INTEGRITY.STATE}','Instance integrity metrics status.','0','0'), ('6050','10581','{$GCE.MACHINE.TYPE}','{#GCE.MACHINE.TYPE}','Instance machine type.','0','0'), ('6051','10581','{$GCP.AUTH.TOKEN}','{#GCP.AUTH.TOKEN}','Google Cloud Platform authorization token.','0','0'), ('6052','10581','{$GCP.PROJECT.ID}','{#GCP.PROJECT.ID}','GCP project id.','0','0'), ('6053','10323','{$CLICKHOUSE.LLD.FILTER.TABLE.MATCHES}','.*','Filter of discoverable tables','0','0'), ('6054','10323','{$CLICKHOUSE.LLD.FILTER.TABLE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered tables','0','0'), ('6055','10335','{$ORACLE.TABLESPACE.CONTAINER.MATCHES}','.*','Used in tablespace discovery. It can be overridden on the host or linked template level.','0','0'), ('6056','10335','{$ORACLE.TABLESPACE.CONTAINER.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in tablespace discovery. It can be overridden on the host or linked template level.','0','0'), ('6057','10328','{$ORACLE.TABLESPACE.CONTAINER.MATCHES}','.*','Used in tablespace discovery. It can be overridden on the host or linked template level.','0','0'), ('6058','10328','{$ORACLE.TABLESPACE.CONTAINER.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in tablespace discovery. It can be overridden on the host or linked template level.','0','0'), ('6059','10507','{$KUBE.API.URL}','https://kubernetes.default.svc.cluster.local:443','Kubernetes API endpoint URL in the format ://:','0','0'), ('6060','10510','{$KUBE.CONTROL_PLANE.TAINT}','node-role.kubernetes.io/control-plane','Taint that applies to control plane nodes. Change if needed. Used in ControlPlane LLD.','0','0'), ('6061','10510','{$KUBE.HTTP.PROXY}','','Sets the HTTP proxy to `http_proxy` value. If this parameter is empty, then no proxy is used.','0','0'), ('6062','10510','{$KUBE.KUBELET.FILTER.ANNOTATIONS}','','Node annotations to filter Kubelets (regex in values are supported). See the template''s README.md for details.','0','0'), ('6063','10510','{$KUBE.KUBELET.FILTER.LABELS}','','Node labels to filter Kubelets (regex in values are supported). See the template''s README.md for details.','0','0'), ('6064','10510','{$KUBE.LLD.FILTER.KUBELET_NODE.MATCHES}','.*','Filter of discoverable Kubelets by nodename.','0','0'), ('6065','10510','{$KUBE.LLD.FILTER.KUBELET_NODE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered Kubelets by nodename.','0','0'), ('6066','10262','{$ZABBIX.PROXY.NODATA_TIMEOUT}','5m','The time threshold after which statistics are considered unavailable. Used in trigger expressions.','0','0'), ('6067','10261','{$ZABBIX.SERVER.ADDRESS}','','IP/DNS/network mask list of servers to be remotely queried (default is 127.0.0.1).','0','0'), ('6068','10261','{$ZABBIX.SERVER.NODATA_TIMEOUT}','5m','The time threshold after which statistics are considered unavailable. Used in trigger expressions.','0','0'), ('6069','10261','{$ZABBIX.SERVER.PORT}','','Port of server to be remotely queried (default is 10051).','0','0'), ('6070','10582','{$AWS.ACCESS.KEY.ID}','','Access key ID.','0','0'), ('6071','10582','{$AWS.BILLING.LLD.FILTER.SERVICE.MATCHES}','.*','Filter of discoverable discovered billing service by name.','0','0'), ('6072','10582','{$AWS.BILLING.LLD.FILTER.SERVICE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered billing service by name.','0','0'), ('6073','10582','{$AWS.BILLING.REGION}','us-east-1','Amazon Billing region code.','0','0'), ('6074','10582','{$AWS.PROXY}','','Sets HTTP proxy value. If this macro is empty, then no proxy is used.','0','0'), ('6075','10582','{$AWS.SECRET.ACCESS.KEY}','','Secret access key.','1','0'), ('6076','10583','{$AWS.ACCESS.KEY.ID}','','Access key ID.','0','0'), ('6077','10583','{$AWS.ECS.CLUSTER.CPU.UTIL.WARN}','70','The warning threshold of the cluster CPU utilization expressed in %.','0','0'), ('6078','10583','{$AWS.ECS.CLUSTER.MEMORY.UTIL.WARN}','70','The warning threshold of the cluster memory utilization expressed in %.','0','0'), ('6079','10583','{$AWS.ECS.CLUSTER.NAME}','','ECS cluster name.','0','0'), ('6080','10583','{$AWS.ECS.CLUSTER.SERVICE.CPU.UTIL.WARN}','80','The warning threshold of the cluster service CPU utilization expressed in %.','0','0'), ('6081','10583','{$AWS.ECS.CLUSTER.SERVICE.MEMORY.UTIL.WARN}','80','The warning threshold of the cluster service memory utilization expressed in %.','0','0'), ('6082','10583','{$AWS.ECS.LLD.FILTER.ALARM_NAME.MATCHES}','.*','Filter of discoverable alarms by name.','0','0'), ('6083','10583','{$AWS.ECS.LLD.FILTER.ALARM_NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered alarms by name.','0','0'), ('6084','10583','{$AWS.ECS.LLD.FILTER.SERVICE.MATCHES}','.*','Filter of discoverable services by name.','0','0'), ('6085','10583','{$AWS.ECS.LLD.FILTER.SERVICE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered services by name.','0','0'), ('6086','10583','{$AWS.PROXY}','','Sets HTTP proxy value. If this macro is empty then no proxy is used.','0','0'), ('6087','10583','{$AWS.REGION}','us-west-1','Amazon ECS Region code.','0','0'), ('6088','10583','{$AWS.SECRET.ACCESS.KEY}','','Secret access key.','1','0'), ('6089','10584','{$AWS.ACCESS.KEY.ID}','','Access key ID.','0','0'), ('6090','10584','{$AWS.ECS.CLUSTER.CPU.UTIL.WARN}','70','The warning threshold of the cluster CPU utilization expressed in %.','0','0'), ('6091','10584','{$AWS.ECS.CLUSTER.MEMORY.UTIL.WARN}','70','The warning threshold of the cluster memory utilization expressed in %.','0','0'), ('6092','10584','{$AWS.ECS.CLUSTER.NAME}','','ECS cluster name.','0','0'), ('6093','10584','{$AWS.ECS.CLUSTER.SERVICE.CPU.UTIL.WARN}','80','The warning threshold of the cluster service CPU utilization expressed in %.','0','0'), ('6094','10584','{$AWS.ECS.CLUSTER.SERVICE.MEMORY.UTIL.WARN}','80','The warning threshold of the cluster service memory utilization expressed in %.','0','0'), ('6095','10584','{$AWS.ECS.LLD.FILTER.ALARM_NAME.MATCHES}','.*','Filter of discoverable alarms by name.','0','0'), ('6096','10584','{$AWS.ECS.LLD.FILTER.ALARM_NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered alarms by name.','0','0'), ('6097','10584','{$AWS.ECS.LLD.FILTER.SERVICE.MATCHES}','.*','Filter of discoverable services by name.','0','0'), ('6098','10584','{$AWS.ECS.LLD.FILTER.SERVICE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered services by name.','0','0'), ('6099','10584','{$AWS.PROXY}','','Sets HTTP proxy value. If this macro is empty then no proxy is used.','0','0'), ('6100','10584','{$AWS.REGION}','us-west-1','Amazon ECS Region code.','0','0'), ('6101','10584','{$AWS.SECRET.ACCESS.KEY}','','Secret access key.','1','0'), ('6102','10535','{$AWS.ECS.LLD.FILTER.NAME.MATCHES}','.*','Filter of discoverable ECS clusters by name.','0','0'), ('6103','10535','{$AWS.ECS.LLD.FILTER.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered ECS clusters by name.','0','0'), ('6104','10535','{$AWS.ECS.LLD.FILTER.STATUS.MATCHES}','ACTIVE','Filter of discoverable ECS clusters by status.','0','0'), ('6105','10535','{$AWS.ECS.LLD.FILTER.STATUS.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered ECS clusters by status.','0','0'), ('6106','10585','{$AWS.ECS.CLUSTER.NAME}','{#AWS.ECS.CLUSTER.NAME}','ECS cluster name.','0','0'), ('6107','10531','{$AZURE.PROXY}','','Sets the HTTP proxy value. If this macro is empty, then no proxy is used.','0','0'), ('6108','10568','{$AZURE.PROXY}','','Sets the HTTP proxy value. If this macro is empty, then no proxy is used.','0','0'), ('6109','10557','{$AZURE.PROXY}','','Sets the HTTP proxy value. If this macro is empty, then no proxy is used.','0','0'), ('6110','10558','{$AZURE.PROXY}','','Sets the HTTP proxy value. If this macro is empty, then no proxy is used.','0','0'), ('6111','10539','{$AZURE.PROXY}','','Sets the HTTP proxy value. If this macro is empty, then no proxy is used.','0','0'), ('6112','10540','{$AZURE.PROXY}','','Sets the HTTP proxy value. If this macro is empty, then no proxy is used.','0','0'), ('6113','10543','{$AZURE.PROXY}','','Sets the HTTP proxy value. If this macro is empty, then no proxy is used.','0','0'), ('6114','10544','{$AZURE.PROXY}','','Sets the HTTP proxy value. If this macro is empty, then no proxy is used.','0','0'), ('6115','10532','{$AZURE.PROXY}','','Sets the HTTP proxy value. If this macro is empty, then no proxy is used.','0','0'), ('6116','10586','{$OPENSTACK.APP.CRED.ID}','','Application credential ID for monitoring user access.','0','0'), ('6117','10586','{$OPENSTACK.APP.CRED.SECRET}','','Application credential password for monitoring user access.','1','0'), ('6118','10586','{$OPENSTACK.AUTH.INTERVAL}','50m','API token regeneration interval, in minutes. By default, OpenStack API tokens expire after 60m.','0','0'), ('6119','10586','{$OPENSTACK.HTTP.PROXY}','','Sets the HTTP proxy for the authorization item. Host prototypes will also use this value for HTTP proxy. If this parameter is empty, then no proxy is used.','0','0'), ('6120','10586','{$OPENSTACK.KEYSTONE.API.ENDPOINT}','','API endpoint for Identity Service, e.g., https://local.openstack:5000.','0','0'), ('6121','10587','{$OPENSTACK.AVAILABILITY_ZONE.DISCOVERY.NAME.MATCHES}','.*','Sets the zone name regex filter to use in availability zone discovery for including.','0','0'), ('6122','10587','{$OPENSTACK.AVAILABILITY_ZONE.DISCOVERY.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the zone name regex filter to use in availability zone discovery for excluding.','0','0'), ('6123','10587','{$OPENSTACK.HTTP.PROXY}','','Sets the HTTP proxy for script and HTTP agent items. If this parameter is empty, then no proxy is used.','0','0'), ('6124','10587','{$OPENSTACK.HYPERVISOR.DISCOVERY.HOSTNAME.MATCHES}','.*','Sets the hostname regex filter to use in hypervisor discovery for including.','0','0'), ('6125','10587','{$OPENSTACK.HYPERVISOR.DISCOVERY.HOSTNAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the hostname regex filter to use in hypervisor discovery for excluding.','0','0'), ('6126','10587','{$OPENSTACK.HYPERVISOR.DISCOVERY.IP.MATCHES}','.*','Sets the host IP address regex filter to use in hypervisor discovery for including.','0','0'), ('6127','10587','{$OPENSTACK.HYPERVISOR.DISCOVERY.IP.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the host IP address regex filter to use in hypervisor discovery for excluding.','0','0'), ('6128','10587','{$OPENSTACK.HYPERVISOR.DISCOVERY.TYPE.MATCHES}','.*','Sets the type regex filter to use in hypervisor discovery for including.','0','0'), ('6129','10587','{$OPENSTACK.HYPERVISOR.DISCOVERY.TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the type regex filter to use in hypervisor discovery for excluding.','0','0'), ('6130','10587','{$OPENSTACK.NOVA.CPU.UTIL.HIGH}','90','Sets the percentage threshold for creating a high severity event about vCPU resource usage.','0','0'), ('6131','10587','{$OPENSTACK.NOVA.CPU.UTIL.WARN}','75','Sets the percentage threshold for creating a warning severity event about vCPU resource usage.','0','0'), ('6132','10587','{$OPENSTACK.NOVA.INSTANCES.UTIL.HIGH}','90','Sets the percentage threshold for creating a high severity event about instances resource count.','0','0'), ('6133','10587','{$OPENSTACK.NOVA.INSTANCES.UTIL.WARN}','75','Sets the percentage threshold for creating a warning severity event about instances resource count.','0','0'), ('6134','10587','{$OPENSTACK.NOVA.INTERVAL.AVAILABILITY_ZONE}','3m','Interval for availability zone HTTP agent item query.','0','0'), ('6135','10587','{$OPENSTACK.NOVA.INTERVAL.HYPERVISOR}','3m','Interval for hypervisor HTTP agent item query.','0','0'), ('6136','10587','{$OPENSTACK.NOVA.INTERVAL.LIMITS}','3m','Interval for absolute limit HTTP agent item query.','0','0'), ('6137','10587','{$OPENSTACK.NOVA.INTERVAL.SERVERS}','3m','Interval for server HTTP agent item queries.','0','0'), ('6138','10587','{$OPENSTACK.NOVA.INTERVAL.SERVICES}','3m','Interval for service HTTP agent item query.','0','0'), ('6139','10587','{$OPENSTACK.NOVA.INTERVAL.TENANTS}','3m','Interval for tenant HTTP agent item query.','0','0'), ('6140','10587','{$OPENSTACK.NOVA.RAM.UTIL.HIGH}','90','Sets the percentage threshold for creating a high severity event about RAM resource usage.','0','0'), ('6141','10587','{$OPENSTACK.NOVA.RAM.UTIL.WARN}','75','Sets the percentage threshold for creating a warning severity event about RAM resource usage.','0','0'), ('6142','10587','{$OPENSTACK.NOVA.SERVICE.URL}','','API endpoint for Nova Service, e.g., https://local.openstack:8774/v2.1.','0','0'), ('6143','10587','{$OPENSTACK.NOVA.TENANT.PERIOD}','m','Period for which tenant usage statistics will be queried. Possible values are: ''y'' - current year until now, ''m'' - current month until now, ''w'' - current week until now, ''d'' - current day until now.','0','0'), ('6144','10587','{$OPENSTACK.SERVER.DISCOVERY.NAME.MATCHES}','.*','Sets the server name regex filter to use in server discovery for including.','0','0'), ('6145','10587','{$OPENSTACK.SERVER.DISCOVERY.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the server name regex filter to use in server discovery for excluding.','0','0'), ('6146','10587','{$OPENSTACK.SERVICES.DISCOVERY.BINARY.MATCHES}','.*','Sets the binary name regex filter to use in compute services discovery for including.','0','0'), ('6147','10587','{$OPENSTACK.SERVICES.DISCOVERY.BINARY.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the binary name regex filter to use in compute services discovery for excluding.','0','0'), ('6148','10587','{$OPENSTACK.SERVICES.DISCOVERY.HOST.MATCHES}','.*','Sets the host name regex filter to use in compute services discovery for including.','0','0'), ('6149','10587','{$OPENSTACK.SERVICES.DISCOVERY.HOST.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the host name regex filter to use in compute services discovery for excluding.','0','0'), ('6150','10587','{$OPENSTACK.TOKEN}','','API token for the monitoring user.','1','0'), ('6151','10588','{$OPENSTACK.NOVA.SERVICE.URL}','{#SERVICE_URL}','OpenStack Nova service path.','0','0'), ('6152','10588','{$OPENSTACK.TOKEN}','{#TOKEN}','OpenStack authorization token.','0','0'), ('6153','10357','{$PG.DATABASE}','postgres','Default PostgreSQL database for the connection.','0','0'), ('6154','10589','{$PG.CONFLICTS.MAX.WARN}','0','Maximum number of recovery conflicts for trigger expression.','0','0'), ('6155','10589','{$PG.CONN_TOTAL_PCT.MAX.WARN}','90','Maximum percentage of current connections for trigger expression.','0','0'), ('6156','10589','{$PG.DATABASE}','postgres','Default PostgreSQL database for the connection.','0','0'), ('6157','10589','{$PG.DEADLOCKS.MAX.WARN}','0','Maximum number of detected deadlocks for trigger expression.','0','0'), ('6160','10589','{$PG.LLD.FILTER.APPLICATION}','.+','Filter of discoverable applications.','0','0'), ('6161','10589','{$PG.LLD.FILTER.DBNAME}','.+','Filter of discoverable databases.','0','0'), ('6162','10589','{$PG.PASSWORD}','','PostgreSQL user password.','0','0'), ('6164','10589','{$PG.QUERY_ETIME.MAX.WARN}','30','Execution time limit for count of slow queries.','0','0'), ('6165','10589','{$PG.SLOW_QUERIES.MAX.WARN}','5','Slow queries count threshold for a trigger.','0','0'), ('6166','10589','{$PG.USER}','zbx_monitor','PostgreSQL username.','0','0'), ('6167','10590','{$SDWAN.API.PASSWORD}','','Cisco SD-WAN Monitor API password.','1','0'), ('6168','10590','{$SDWAN.API.URL}','','Cisco SD-WAN Monitor API URL.','0','0'), ('6169','10590','{$SDWAN.API.USERNAME}','','Cisco SD-WAN Monitor API username.','1','0'), ('6170','10590','{$SDWAN.AUTH.FREQUENCY}','1h','The update interval for the Cisco SD-WAN Authentication item, which also equals the access token regeneration request frequency. Check the template documentation notes carefully for more details.','0','0'), ('6171','10590','{$SDWAN.DATA.TIMEOUT}','15s','A response timeout for an API.','0','0'), ('6172','10590','{$SDWAN.DEVICE.NAME.MATCHES}','.*','This macro is used in device discovery. Can be overridden on the host or linked template level.','0','0'), ('6173','10590','{$SDWAN.DEVICE.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in device discovery. Can be overridden on the host or linked template level.','0','0'), ('6174','10590','{$SDWAN.HTTP_PROXY}','','HTTP proxy for API requests. You can specify it using the format [protocol://][username[:password]@]proxy.example.com[:port]. See the documentation at https://www.zabbix.com/documentation/7.0/manual/config/items/itemtypes/http','0','0'), ('6175','10591','{$IFCONTROL}','1','Macro for operational state of the interface for the link down trigger. Can be used with the interface name as context.','0','0'), ('6176','10591','{$SDWAN.API.URL}','','Cisco SD-WAN Monitor API URL.','0','0'), ('6177','10591','{$SDWAN.CPU.UTIL.CRIT}','90','Critical threshold of the CPU utilization, expressed in %.','0','0'), ('6178','10591','{$SDWAN.DATA.TIMEOUT}','15s','Response timeout for an API.','0','0'), ('6179','10591','{$SDWAN.FS.PUSED.MAX.CRIT}','90','Critical threshold of the filesystem utilization. Can be used with the filesystem name as context.','0','0'), ('6180','10591','{$SDWAN.FS.PUSED.MAX.WARN}','80','Warning threshold of the filesystem utilization. Can be used with the filesystem name as context.','0','0'), ('6181','10591','{$SDWAN.HTTP_PROXY}','','HTTP proxy for API requests. You can specify it using the format [protocol://][username[:password]@]proxy.example.com[:port]. See the documentation at https://www.zabbix.com/documentation/7.0/manual/config/items/itemtypes/http','0','0'), ('6182','10591','{$SDWAN.IF.ERRORS.WARN}','2','Threshold of the error packets rate for the warning trigger. Can be used with the interface name as context.','0','0'), ('6183','10591','{$SDWAN.IF.UTIL.MAX}','90','This macro is used as a threshold in the interface utilization trigger. Can be used with the interface name as context.','0','0'), ('6184','10591','{$SDWAN.LA.PER.CPU.MAX.WARN}','1.5','Load per CPU considered sustainable. Tune if needed.','0','0'), ('6185','10591','{$SDWAN.LLD.FILTER.FSNAME.MATCHES}','.*','Filter of discoverable filesystems by name.','0','0'), ('6186','10591','{$SDWAN.LLD.FILTER.FSNAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discoverable filesystems by name.','0','0'), ('6187','10591','{$SDWAN.LLD.FILTER.IFNAME.MATCHES}','.*','Filter of discoverable interfaces by name.','0','0'), ('6188','10591','{$SDWAN.LLD.FILTER.IFNAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discoverable interfaces by name.','0','0'), ('6189','10591','{$SDWAN.MEMORY.AVAILABLE.MIN}','100K','This macro is used as a threshold in the memory available trigger.','0','0'), ('6190','10591','{$SDWAN.MEMORY.UTIL.MAX}','90','Critical threshold of the memory utilization, expressed in %.','0','0'), ('6191','10591','{$SDWAN.ROUTES.FREQUENCY}','1h','Update interval for the Routes item, expressed in hours.','0','0'), ('6192','10591','{$SDWAN.TOKEN}','','Cisco SD-WAN Monitor API token.','1','0'), ('6193','10592','{$SDWAN.AUTH.SESSION}','{#COOKIE}','Cisco SD-WAN authentication session.','0','0'), ('6194','10592','{$SDWAN.AUTH.TOKEN}','{#TOKEN}','Cisco SD-WAN authentication token.','0','0'), ('6195','10592','{$SDWAN.DEVICE_ID}','{#ID}','ID of the device.','0','0'), ('6196','10593','{$MANTIS.HTTP.PROXY}','','Proxy for http requests.','0','0'), ('6197','10593','{$MANTIS.LLD.FILTER.PROJECTS.MATCHES}','.*','Filter of discoverable projects.','0','0'), ('6198','10593','{$MANTIS.LLD.FILTER.PROJECTS.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered projects.','0','0'), ('6199','10593','{$MANTIS.TOKEN}','','MantisBT Token.','1','0'), ('6200','10593','{$MANTIS.URL}','','MantisBT URL.','0','0'), ('6201','10594','{$NOMAD.API.RESPONSE.SUCCESS}','200','HTTP API successful response code. Availability triggers threshold. Change, if needed.','0','0'), ('6202','10594','{$NOMAD.CLIENT.DC.MATCHES}','.*','The filter to include HashiCorp Nomad clients by datacenter belonging.','0','0'), ('6203','10594','{$NOMAD.CLIENT.DC.NOT_MATCHES}','CHANGE_IF_NEEDED','The filter to exclude HashiCorp Nomad clients by datacenter belonging.','0','0'), ('6204','10594','{$NOMAD.CLIENT.NAME.MATCHES}','.*','The filter to include HashiCorp Nomad clients by name.','0','0'), ('6205','10594','{$NOMAD.CLIENT.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','The filter to exclude HashiCorp Nomad clients by name.','0','0'), ('6206','10594','{$NOMAD.CLIENT.SCHEDULE.ELIGIBILITY.MATCHES}','.*','The filter to include HashiCorp Nomad clients by scheduling eligibility.','0','0'), ('6207','10594','{$NOMAD.CLIENT.SCHEDULE.ELIGIBILITY.NOT_MATCHES}','CHANGE_IF_NEEDED','The filter to exclude HashiCorp Nomad clients by scheduling eligibility.','0','0'), ('6208','10594','{$NOMAD.DATA.TIMEOUT}','15s','Response timeout for an API.','0','0'), ('6209','10594','{$NOMAD.ENDPOINT.API.URL}','http://localhost:4646','API endpoint URL for one of the Nomad cluster members.','0','0'), ('6210','10594','{$NOMAD.HTTP.PROXY}','','Sets the HTTP proxy for script and HTTP agent items. If this parameter is empty, then no proxy is used.','0','0'), ('6211','10594','{$NOMAD.SERVER.DC.MATCHES}','.*','The filter to include HashiCorp Nomad servers by datacenter belonging.','0','0'), ('6212','10594','{$NOMAD.SERVER.DC.NOT_MATCHES}','CHANGE_IF_NEEDED','The filter to exclude HashiCorp Nomad servers by datacenter belonging.','0','0'), ('6213','10594','{$NOMAD.SERVER.NAME.MATCHES}','.*','The filter to include HashiCorp Nomad servers by name.','0','0'), ('6214','10594','{$NOMAD.SERVER.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','The filter to exclude HashiCorp Nomad servers by name.','0','0'), ('6215','10594','{$NOMAD.TOKEN}','','Nomad authentication token.','0','0'), ('6216','10595','{$NOMAD.API.RESPONSE.SUCCESS}','200','HTTP API successful response code. Availability triggers threshold. Change, if needed.','0','0'), ('6217','10595','{$NOMAD.CLIENT.API.PORT}','4646','Nomad client API port.','0','0'), ('6218','10595','{$NOMAD.CLIENT.API.SCHEME}','http','Nomad client API scheme.','0','0'), ('6219','10595','{$NOMAD.CLIENT.OPEN.FDS.MAX.WARN}','90','Maximum percentage of used file descriptors.','0','0'), ('6220','10595','{$NOMAD.CLIENT.RPC.PORT}','4647','Nomad RPC service port.','0','0'), ('6221','10595','{$NOMAD.CLIENT.SERF.PORT}','4648','Nomad serf service port.','0','0'), ('6222','10595','{$NOMAD.CPU.UTIL.MIN}','90','CPU utilization threshold. Measured as a percentage.','0','0'), ('6223','10595','{$NOMAD.DATA.TIMEOUT}','15s','Response timeout for an API.','0','0'), ('6224','10595','{$NOMAD.DISK.NAME.MATCHES}','.*','The filter to include HashiCorp Nomad client disks by name.','0','0'), ('6225','10595','{$NOMAD.DISK.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','The filter to exclude HashiCorp Nomad client disks by name.','0','0'), ('6226','10595','{$NOMAD.DRIVER.DETECT.MATCHES}','.*','The filter to include HashiCorp Nomad client drivers by detection state. Possible filtering values: `true`, `false`.','0','0'), ('6227','10595','{$NOMAD.DRIVER.DETECT.NOT_MATCHES}','CHANGE_IF_NEEDED','The filter to exclude HashiCorp Nomad client drivers by detection state. Possible filtering values: `true`, `false`.','0','0'), ('6228','10595','{$NOMAD.DRIVER.NAME.MATCHES}','.*','The filter to include HashiCorp Nomad client drivers by name.','0','0'), ('6229','10595','{$NOMAD.DRIVER.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','The filter to exclude HashiCorp Nomad client drivers by name.','0','0'), ('6230','10595','{$NOMAD.HTTP.PROXY}','','Sets the HTTP proxy for HTTP agent item. If this parameter is empty, then no proxy is used.','0','0'), ('6231','10595','{$NOMAD.INODES.FREE.MIN.CRIT}','10','Critical threshold of the filesystem metadata utilization. Measured as a percentage.','0','0'), ('6232','10595','{$NOMAD.INODES.FREE.MIN.WARN}','20','Warning threshold of the filesystem metadata utilization. Measured as a percentage.','0','0'), ('6233','10595','{$NOMAD.JOB.NAME.MATCHES}','.*','The filter to include HashiCorp Nomad client jobs by name.','0','0'), ('6234','10595','{$NOMAD.JOB.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','The filter to exclude HashiCorp Nomad client jobs by name.','0','0'), ('6235','10595','{$NOMAD.JOB.NAMESPACE.MATCHES}','.*','The filter to include HashiCorp Nomad client jobs by namespace.','0','0'), ('6236','10595','{$NOMAD.JOB.NAMESPACE.NOT_MATCHES}','CHANGE_IF_NEEDED','The filter to exclude HashiCorp Nomad client jobs by namespace.','0','0'), ('6237','10595','{$NOMAD.JOB.TASK.GROUP.MATCHES}','.*','The filter to include HashiCorp Nomad client jobs by task group belonging.','0','0'), ('6238','10595','{$NOMAD.JOB.TASK.GROUP.NOT_MATCHES}','CHANGE_IF_NEEDED','The filter to exclude HashiCorp Nomad client jobs by task group belonging.','0','0'), ('6239','10595','{$NOMAD.JOB.TYPE.MATCHES}','.*','The filter to include HashiCorp Nomad client jobs by type.','0','0'), ('6240','10595','{$NOMAD.JOB.TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','The filter to exclude HashiCorp Nomad client jobs by type.','0','0'), ('6241','10595','{$NOMAD.RAM.AVAIL.MIN}','5','CPU utilization threshold. Measured as a percentage.','0','0'), ('6242','10595','{$NOMAD.TOKEN}','','Nomad authentication token.','0','0'), ('6243','10596','{$NOMAD.API.RESPONSE.SUCCESS}','200','HTTP API successful response code. Availability triggers threshold. Change, if needed.','0','0'), ('6244','10596','{$NOMAD.DATA.TIMEOUT}','15s','Response timeout for an API.','0','0'), ('6245','10596','{$NOMAD.HTTP.PROXY}','','Sets the HTTP proxy for HTTP agent item. If this parameter is empty, then no proxy is used.','0','0'), ('6246','10596','{$NOMAD.OPEN.FDS.MAX}','90','Maximum percentage of used file descriptors.','0','0'), ('6247','10596','{$NOMAD.REDUNDANCY.MIN}','1','Amount of redundant servers to keep the cluster safe. Default value - ''1'' for the 3-nodes cluster. Change if needed.','0','0'), ('6248','10596','{$NOMAD.SERVER.API.PORT}','4646','Nomad SERVER API port.','0','0'), ('6249','10596','{$NOMAD.SERVER.API.SCHEME}','http','Nomad SERVER API scheme.','0','0'), ('6250','10596','{$NOMAD.SERVER.LEADER.LATENCY}','0.3s','Leader last contact latency threshold.','0','0'), ('6251','10596','{$NOMAD.SERVER.RPC.PORT}','4647','Nomad RPC service port.','0','0'), ('6252','10596','{$NOMAD.SERVER.SERF.PORT}','4648','Nomad serf service port.','0','0'), ('6253','10596','{$NOMAD.TOKEN}','','Nomad authentication token.','0','0'), ('6254','10582','{$AWS.BILLING.MONTH}','11','Months to get historical data from AWS Cost Explore API, no more than 12 months.','0','0'), ('6257','10599','{$ACRONIS.CPC.AUTH.CLIENT.ID}','','Client ID for API user access.','0','0'), ('6258','10599','{$ACRONIS.CPC.AUTH.INTERVAL}','110m','API token regeneration interval, in minutes. By default, Acronis Cyber Protect Cloud tokens expire after 2 hours.','0','0'), ('6259','10599','{$ACRONIS.CPC.AUTH.SECRET}','','Secret for API user access.','1','0'), ('6260','10599','{$ACRONIS.CPC.DATACENTER.URL}','','Acronis Cyber Protect Cloud datacenter URL, e.g., https://eu2-cloud.acronis.com.','0','0'), ('6261','10599','{$ACRONIS.CPC.HTTP.PROXY}','','Sets the HTTP proxy for the authorization item. Host prototypes will also use this value for HTTP proxy. If this parameter is empty, then no proxy is used.','0','0'), ('6262','10599','{$ACRONIS.CPC.PATH.ACCOUNT.MANAGEMENT}','/api/2','Sub-path for the Account Management API.','0','0'), ('6263','10600','{$ACRONIS.CPC.ACCESS_TOKEN}','','API access token.','1','0'), ('6264','10600','{$ACRONIS.CPC.ALERT.DISCOVERY.CATEGORY.MATCHES}','.*','Sets the alert category regex filter to use in alert discovery for including.','0','0'), ('6265','10600','{$ACRONIS.CPC.ALERT.DISCOVERY.CATEGORY.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the alert category regex filter to use in alert discovery for excluding.','0','0'), ('6266','10600','{$ACRONIS.CPC.ALERT.DISCOVERY.RESOURCE.MATCHES}','.*','Sets the alert resource name regex filter to use in alert discovery for including.','0','0'), ('6267','10600','{$ACRONIS.CPC.ALERT.DISCOVERY.RESOURCE.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the alert resource name regex filter to use in alert discovery for excluding.','0','0'), ('6268','10600','{$ACRONIS.CPC.ALERT.DISCOVERY.SEVERITY.MATCHES}','.*','Sets the alert severity regex filter to use in alert discovery for including.','0','0'), ('6269','10600','{$ACRONIS.CPC.ALERT.DISCOVERY.SEVERITY.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the alert severity regex filter to use in alert discovery for excluding.','0','0'), ('6270','10600','{$ACRONIS.CPC.CUSTOMER.DISCOVERY.KIND.MATCHES}','customer','Sets the customer name regex filter to use in customer discovery for including.','0','0'), ('6271','10600','{$ACRONIS.CPC.CUSTOMER.DISCOVERY.NAME.MATCHES}','.*','Sets the customer name regex filter to use in customer discovery for including.','0','0'), ('6272','10600','{$ACRONIS.CPC.CUSTOMER.DISCOVERY.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the customer name regex filter to use in customer discovery for excluding.','0','0'), ('6273','10600','{$ACRONIS.CPC.CYBERFIT.HIGH}','579','CyberFit score threshold for "high" severity trigger.','0','0'), ('6274','10600','{$ACRONIS.CPC.CYBERFIT.WARN}','669','CyberFit score threshold for "warning" severity trigger.','0','0'), ('6275','10600','{$ACRONIS.CPC.DATACENTER.URL}','','Acronis Cyber Protect Cloud datacenter URL, e.g., https://eu2-cloud.acronis.com.','0','0'), ('6276','10600','{$ACRONIS.CPC.DEVICE.DISCOVERY.TENANT.MATCHES}','.*','Sets the tenant name regex filter to use in device discovery for including.','0','0'), ('6277','10600','{$ACRONIS.CPC.DEVICE.DISCOVERY.TENANT.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the tenant name regex filter to use in device discovery for excluding.','0','0'), ('6278','10600','{$ACRONIS.CPC.DEVICE.RESOURCE.TYPE}','resource.machine','Comma separated list of resource types for devices retrieval.','0','0'), ('6279','10600','{$ACRONIS.CPC.HTTP.PROXY}','','Sets the HTTP proxy for the authorization item. Host prototypes will also use this value for HTTP proxy. If this parameter is empty, then no proxy is used.','0','0'), ('6280','10600','{$ACRONIS.CPC.MSP.TENANT.UUID}','','UUID for MSP.','0','0'), ('6281','10600','{$ACRONIS.CPC.PATH.ACCOUNT.MANAGEMENT}','/api/2','Sub-path for the Account Management API.','0','0'), ('6282','10600','{$ACRONIS.CPC.PATH.AGENTS}','/api/agent_manager/v2','Sub-path for the Agents API.','0','0'), ('6283','10600','{$ACRONIS.CPC.PATH.ALERTS}','/api/alert_manager/v1','Sub-path for the Alerts API.','0','0'), ('6284','10600','{$ACRONIS.CPC.PATH.RESOURCE.MANAGEMENT}','/api/resource_management/v4','Sub-path for the Resource Management API.','0','0'), ('6285','10601','{$ACRONIS.CPC.ACCESS_TOKEN}','{#ACCESS_TOKEN}','Acronis CPC API access token.','0','0'), ('6286','10601','{$ACRONIS.CPC.MSP.TENANT.UUID}','{#SCOPE}','UUID of API client tenant.','0','0'), ('6287','10546','{$MERAKI.DEVICE.STATUS.MATCHES}','.*','This macro is used in devices discovery. Can be overridden on the host or linked template level.','0','0'), ('6288','10546','{$MERAKI.DEVICE.STATUS.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in devices discovery. Can be overridden on the host or linked template level.','0','0'), ('6289','10548','{$MERAKI.LLD.UPLINK.NETWORK.NAME.MATCHES}','.*','This macro is used in uplinks discovery. Can be overridden on the host or linked template level.','0','0'), ('6290','10548','{$MERAKI.LLD.UPLINK.NETWORK.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in uplinks discovery. Can be overridden on the host or linked template level.','0','0'), ('6291','10548','{$MERAKI.LLD.UPLINK.ROLE.MATCHES}','.*','This macro is used in uplinks discovery. Can be overridden on the host or linked template level.','0','0'), ('6292','10548','{$MERAKI.LLD.UPLINK.ROLE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in uplinks discovery. Can be overridden on the host or linked template level.','0','0'), ('6293','10548','{$MERAKI.LLD.VPN.NETWORK.NAME.MATCHES}','.*','This macro is used in VPN stats discovery. Can be overridden on the host or linked template level.','0','0'), ('6294','10548','{$MERAKI.LLD.VPN.NETWORK.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in VPN stats discovery. Can be overridden on the host or linked template level.','0','0'), ('6295','10548','{$MERAKI.LLD.VPN.PEER.NETWORK.NAME.MATCHES}','.*','This macro is used in VPN stats discovery. Can be overridden on the host or linked template level.','0','0'), ('6296','10548','{$MERAKI.LLD.VPN.PEER.NETWORK.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in VPN stats discovery. Can be overridden on the host or linked template level.','0','0'), ('6297','10548','{$MERAKI.LLD.VPN.RECEIVER.UPLINK.MATCHES}','.*','This macro is used in VPN stats discovery. Can be overridden on the host or linked template level.','0','0'), ('6298','10548','{$MERAKI.LLD.VPN.RECEIVER.UPLINK.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in VPN stats discovery. Can be overridden on the host or linked template level.','0','0'), ('6299','10548','{$MERAKI.LLD.VPN.SENDER.UPLINK.MATCHES}','.*','This macro is used in VPN stats discovery. Can be overridden on the host or linked template level.','0','0'), ('6300','10548','{$MERAKI.LLD.VPN.SENDER.UPLINK.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in VPN stats discovery. Can be overridden on the host or linked template level.','0','0'), ('6301','10602','{$NEXTCLOUD.ADDRESS}','127.0.0.1','IP or DNS name of Nextcloud server.','0','0'), ('6302','10602','{$NEXTCLOUD.CPU.LOAD.MAX}','95','CPU load threshold (the number of processes in the system run queue).','0','0'), ('6303','10602','{$NEXTCLOUD.LLD.FILTER.USER.MATCHES}','.*','Filter of discoverable users by name.','0','0'), ('6304','10602','{$NEXTCLOUD.LLD.FILTER.USER.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered users by name.','0','0'), ('6305','10602','{$NEXTCLOUD.MEM.PUSED.MAX}','90','Memory utilization threshold.','0','0'), ('6306','10602','{$NEXTCLOUD.PHP.MEM.PUSED.MAX}','90','PHP memory utilization threshold.','0','0'), ('6307','10602','{$NEXTCLOUD.PROXY}','','Proxy HTTP(S) address.','0','0'), ('6308','10602','{$NEXTCLOUD.SCHEMA}','https','HTTP or HTTPS protocol of Nextcloud.','0','0'), ('6309','10602','{$NEXTCLOUD.STORAGE.FREE.MIN}','1G','Free space threshold.','0','0'), ('6310','10602','{$NEXTCLOUD.SWAP.PUSED.MAX}','90','Swap utilization threshold.','0','0'), ('6311','10602','{$NEXTCLOUD.USER.MAX.INACTIVE}','30','How many days a user can be inactive.','0','0'), ('6312','10602','{$NEXTCLOUD.USER.NAME}','root','Nextcloud username.','0','0'), ('6313','10602','{$NEXTCLOUD.USER.PASSWORD}','','Nextcloud user password.','1','0'), ('6314','10602','{$NEXTCLOUD.USER.QUOTA.PUSED.MAX}','90','Storage utilization threshold.','0','0'), ('6315','10582','{$AWS.AUTH_TYPE}','access_key','Authorization method. Possible values: `access_key`, `assume_role`, `role_base`.','0','0'), ('6316','10527','{$AWS.AUTH_TYPE}','access_key','Authorization method. Possible values: `access_key`, `assume_role`, `role_base`.','0','0'), ('6317','10583','{$AWS.AUTH_TYPE}','access_key','Authorization method. Possible values: `access_key`, `assume_role`, `role_base`.','0','0'), ('6318','10584','{$AWS.AUTH_TYPE}','access_key','Authorization method. Possible values: `access_key`, `assume_role`, `role_base`.','0','0'), ('6319','10535','{$AWS.AUTH_TYPE}','access_key','Authorization method. Possible values: `access_key`, `assume_role`, `role_base`.','0','0'), ('6320','10535','{$AWS.EC2.LLD.FILTER.REGION.MATCHES}','.*','Filter of discoverable EC2 instances by region.','0','0'), ('6321','10535','{$AWS.EC2.LLD.FILTER.REGION.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered EC2 instances by region.','0','0'), ('6322','10535','{$AWS.ECS.LLD.FILTER.REGION.MATCHES}','.*','Filter of discoverable ECS clusters by region.','0','0'), ('6323','10535','{$AWS.ECS.LLD.FILTER.REGION.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered ECS clusters by region.','0','0'), ('6324','10535','{$AWS.RDS.LLD.FILTER.REGION.MATCHES}','.*','Filter of discoverable RDS instances by region.','0','0'), ('6325','10535','{$AWS.RDS.LLD.FILTER.REGION.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered RDS instances by region.','0','0'), ('6328','10536','{$AWS.REGION}','{#AWS.EC2.INSTANCE.REGION}','Amazon EC2 Region code.','0','0'), ('6329','10585','{$AWS.REGION}','{#AWS.ECS.CLUSTER.REGION}','ECS cluster region.','0','0'), ('6330','10537','{$AWS.REGION}','{#AWS.RDS.REGION}','RDS instance region.','0','0'), ('6331','10529','{$AWS.AUTH_TYPE}','access_key','Authorization method. Possible values: `access_key`, `assume_role`, `role_base`.','0','0'), ('6332','10530','{$AWS.AUTH_TYPE}','access_key','Authorization method. Possible values: `access_key`, `assume_role`, `role_base`.','0','0'), ('6333','10547','{$MERAKI.UPLINK.LL.TIMESPAN}','180','Timespan in seconds for getting device uplinks loss and quality stats. Used in the metric configuration and in the JavaScript API query. Must be between 1 and 86400 seconds.','0','0'), ('6335','10548','{$MERAKI.VPN.STATS.TIMESPAN}','180','Timespan in seconds for getting organization appliance VPN stats. Used in the metric configuration and in the JavaScript API query. Must be between 1 and 86400 seconds.','0','0'), ('6336','10603','{$CPU.UTIL.CRIT}','95','Threshold of CPU utilization for critical trigger in %.','0','0'), ('6337','10603','{$CPU.UTIL.WARN}','85','Threshold of CPU utilization for warning trigger in %.','0','0'), ('6338','10603','{$DISK.FREE.CRIT}','10','Threshold of disk free space for critical trigger in %.','0','0'), ('6339','10603','{$DISK.FREE.WARN}','20','Threshold of disk free space for warning trigger in %.','0','0'), ('6340','10603','{$FGATE.API.FQDN}','','FortiGate API FQDN/IP (ex. ngfw.example.com).','0','0'), ('6341','10603','{$FGATE.API.PORT}','80','The port of FortiGate API endpoint.','0','0'), ('6342','10603','{$FGATE.API.TOKEN}','','FortiGate API token.','1','0'), ('6343','10603','{$FGATE.DATA.TIMEOUT}','15s','Response timeout for an API.','0','0'), ('6344','10603','{$FGATE.HTTP.PROXY}','','HTTP proxy for API requests. You can specify it using the format [protocol://][username[:password]@]proxy.example.com[:port]. See the documentation at https://www.zabbix.com/documentation/7.0/manual/config/items/itemtypes/http','0','0'), ('6345','10603','{$FGATE.SCHEME}','http','Request scheme which may be http or https.','0','0'), ('6346','10603','{$FIRMWARE.UPDATES.CONTROL}','1','This macro is used in "New available firmware found" trigger.','0','0'), ('6347','10603','{$FWP.FWACTION.MATCHES}','.*','This macro is used in Firewall policies discovery. Can be overridden on the host or linked template level.','0','0'), ('6348','10603','{$FWP.FWACTION.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in Firewall policies discovery. Can be overridden on the host or linked template level.','0','0'), ('6349','10603','{$FWP.FWNAME.MATCHES}','.*','This macro is used in Firewall policies discovery. Can be overridden on the host or linked template level.','0','0'), ('6350','10603','{$FWP.FWNAME.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in Firewall policies discovery. Can be overridden on the host or linked template level.','0','0'), ('6351','10603','{$FWP.FWTYPE.MATCHES}','.*','This macro is used in Firewall policies discovery. Can be overridden on the host or linked template level.','0','0'), ('6352','10603','{$FWP.FWTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in Firewall policies discovery. Can be overridden on the host or linked template level.','0','0'), ('6353','10603','{$MEMORY.UTIL.CRIT}','90','Threshold of memory utilization for critical trigger in %.','0','0'), ('6354','10603','{$MEMORY.UTIL.WARN}','80','Threshold of memory utilization for warning trigger in %.','0','0'), ('6355','10603','{$NET.IF.CONTROL}','1','Macro for operational state of the interface for "Link down" trigger. Can be used with interface name as context.','0','0'), ('6356','10603','{$NET.IF.ERRORS.WARN}','2','Threshold of error packets rate for warning trigger. Can be used with interface name as context.','0','0'), ('6357','10603','{$NET.IF.IFALIAS.MATCHES}','.*','This macro is used in Network interfaces discovery. Can be overridden on the host or linked template level.','0','0'), ('6358','10603','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in Network interfaces discovery. Can be overridden on the host or linked template level.','0','0'), ('6359','10603','{$NET.IF.IFDESCR.MATCHES}','.*','This macro is used in Network interfaces discovery. Can be overridden on the host or linked template level.','0','0'), ('6360','10603','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in Network interfaces discovery. Can be overridden on the host or linked template level.','0','0'), ('6361','10603','{$NET.IF.IFNAME.MATCHES}','.*','This macro is used in Network interfaces discovery. Can be overridden on the host or linked template level.','0','0'), ('6362','10603','{$NET.IF.IFNAME.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in Network interfaces discovery. Can be overridden on the host or linked template level.','0','0'), ('6363','10603','{$NET.IF.IFSTATUS.MATCHES}','.*','This macro is used in Network interfaces discovery. Can be overridden on the host or linked template level.','0','0'), ('6364','10603','{$NET.IF.IFSTATUS.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in Network interfaces discovery. Can be overridden on the host or linked template level.','0','0'), ('6365','10603','{$NET.IF.IFTYPE.MATCHES}','.*','This macro is used in Network interfaces discovery. Can be overridden on the host or linked template level.','0','0'), ('6366','10603','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in Network interfaces discovery. Can be overridden on the host or linked template level.','0','0'), ('6367','10603','{$NET.IF.UTIL.MAX}','95','Threshold of interface bandwidth utilization for warning trigger in %. Can be used with interface name as context.','0','0'), ('6368','10603','{$SDWAN.HEALTH.ID.MATCHES}','.*','This macro is used in SD-WAN health-checks discovery. Can be overridden on the host or linked template level.','0','0'), ('6369','10603','{$SDWAN.HEALTH.ID.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in SD-WAN health-checks discovery. Can be overridden on the host or linked template level.','0','0'), ('6370','10603','{$SDWAN.HEALTH.IF.CONTROL}','1','Macro for the interface state for "Link down" trigger. Can be used with interface name as context.','0','0'), ('6371','10603','{$SDWAN.HEALTH.IF.LOSS.WARN}','20','Threshold of packets loss for warning trigger in %. Can be used with interface name as context.','0','0'), ('6372','10603','{$SDWAN.HEALTH.IFNAME.MATCHES}','.*','This macro is used in SD-WAN health-checks discovery. Can be overridden on the host or linked template level.','0','0'), ('6373','10603','{$SDWAN.HEALTH.IFNAME.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in SD-WAN health-checks discovery. Can be overridden on the host or linked template level.','0','0'), ('6374','10603','{$SDWAN.HEALTH.NAME.MATCHES}','.*','This macro is used in SD-WAN health-checks discovery. Can be overridden on the host or linked template level.','0','0'), ('6375','10603','{$SDWAN.HEALTH.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in SD-WAN health-checks discovery. Can be overridden on the host or linked template level.','0','0'), ('6376','10603','{$SDWAN.HEALTH.STATUS.MATCHES}','.*','This macro is used in SD-WAN health-checks discovery. Can be overridden on the host or linked template level.','0','0'), ('6377','10603','{$SDWAN.HEALTH.STATUS.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in SD-WAN health-checks discovery. Can be overridden on the host or linked template level.','0','0'), ('6378','10603','{$SDWAN.MEMBER.ID.MATCHES}','.*','This macro is used in SD-WAN members discovery. Can be overridden on the host or linked template level.','0','0'), ('6379','10603','{$SDWAN.MEMBER.ID.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in SD-WAN members discovery. Can be overridden on the host or linked template level.','0','0'), ('6380','10603','{$SDWAN.MEMBER.IF.CONTROL}','1','Macro for the interface state for "Link down" trigger. Can be used with interface name as context.','0','0'), ('6381','10603','{$SDWAN.MEMBER.NAME.MATCHES}','.*','This macro is used in SD-WAN members discovery. Can be overridden on the host or linked template level.','0','0'), ('6382','10603','{$SDWAN.MEMBER.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in SD-WAN members discovery. Can be overridden on the host or linked template level.','0','0'), ('6383','10603','{$SDWAN.MEMBER.STATUS.MATCHES}','.*','This macro is used in SD-WAN members discovery. Can be overridden on the host or linked template level.','0','0'), ('6384','10603','{$SDWAN.MEMBER.STATUS.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in SD-WAN members discovery. Can be overridden on the host or linked template level.','0','0'), ('6385','10603','{$SDWAN.MEMBER.ZONE.MATCHES}','.*','This macro is used in SD-WAN members discovery. Can be overridden on the host or linked template level.','0','0'), ('6386','10603','{$SDWAN.MEMBER.ZONE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in SD-WAN members discovery. Can be overridden on the host or linked template level.','0','0'), ('6387','10603','{$SERVICE.EXPIRY.WARN}','7','Number of days until the license expires.','0','0'), ('6388','10603','{$SERVICE.KEY.MATCHES}','.*','This macro is used in Service discovery. Can be overridden on the host or linked template level.','0','0'), ('6389','10603','{$SERVICE.KEY.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in Service discovery. Can be overridden on the host or linked template level.','0','0'), ('6390','10603','{$SERVICE.LICENSE.CONTROL}','1','This macro is used in Service discovery. Can be used with interface name as context.','0','0'), ('6391','10603','{$SERVICE.STATUS.MATCHES}','.*','This macro is used in Service discovery. Can be overridden on the host or linked template level.','0','0'), ('6392','10603','{$SERVICE.STATUS.NOT_MATCHES}','(no_support|no_license)','This macro is used in Service discovery. Can be overridden on the host or linked template level.','0','0'), ('6393','10603','{$SERVICE.TYPE.MATCHES}','.*','This macro is used in Service discovery. Can be overridden on the host or linked template level.','0','0'), ('6394','10603','{$SERVICE.TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in Service discovery. Can be overridden on the host or linked template level.','0','0'), ('6395','10604','{$CPU.UTIL.CRIT}','90','Threshold of CPU utilization for Warning trigger in %.','0','0'), ('6397','10604','{$ICMP_LOSS_WARN}','20','Threshold of ICMP packet loss for Warning trigger in %.','0','0'), ('6398','10604','{$ICMP_RESPONSE_TIME_WARN}','0.15','Threshold of average ICMP response time for Warning trigger in seconds.','0','0'), ('6399','10604','{$IF.ERRORS.WARN}','2','Threshold of error packet rate for Warning trigger. Can be used with interface name as context.','0','0'), ('6400','10604','{$IF.UTIL.MAX}','95','Threshold of interface bandwidth utilization for Warning trigger in %. Can be used with interface name as context.','0','0'), ('6401','10604','{$IFCONTROL}','1','Macro for operational state of interface for "Link down" trigger. Can be used with interface name as context.','0','0'), ('6402','10604','{$MEMORY.UTIL.MAX}','90','Threshold of memory utilization for trigger in %.','0','0'), ('6403','10604','{$NET.IF.IFADMINSTATUS.MATCHES}','.*','Used in Network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('6404','10604','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Used in Network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('6405','10604','{$NET.IF.IFALIAS.MATCHES}','.*','Used in Network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('6406','10604','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in Network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('6407','10604','{$NET.IF.IFDESCR.MATCHES}','.*','Used in Network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('6408','10604','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in Network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('6409','10604','{$NET.IF.IFNAME.MATCHES}','.*','Used in Network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('6410','10604','{$NET.IF.IFNAME.NOT_MATCHES}','(^[Ll]o[0-9.]*$)','Used in Network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('6411','10604','{$NET.IF.IFOPERSTATUS.MATCHES}','.*','Used in Network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('6412','10604','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Used in Network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('6413','10604','{$NET.IF.IFTYPE.MATCHES}','.*','Used in Network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('6414','10604','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in Network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('6415','10604','{$SNMP.TIMEOUT}','5m','The time interval for SNMP availability trigger.','0','0'), ('6416','10548','{$MERAKI.ADMIN.NAME.MATCHES}','.*','Filter of discoverable admins in organization.','0','0'), ('6417','10548','{$MERAKI.ADMIN.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered admins in organization.','0','0'), ('6418','10548','{$MERAKI.ADMIN.ORG.ACCESS.MATCHES}','.*','Filter of discoverable admins in organization.','0','0'), ('6419','10548','{$MERAKI.ADMIN.ORG.ACCESS.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered admins in organization.','0','0'), ('6420','10548','{$MERAKI.LICENSE.STATE.MATCHES}','.*','Filter of discoverable license.','0','0'), ('6421','10548','{$MERAKI.LICENSE.STATE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered license.','0','0'), ('6422','10548','{$MERAKI.LICENSE.TYPE.MATCHES}','.*','Filter of discoverable license.','0','0'), ('6423','10548','{$MERAKI.LICENSE.TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered license.','0','0'), ('6424','10548','{$MERAKI.SAML.ORG.ACCESS.MATCHES}','.*','Filter of discoverable SAML role.','0','0'), ('6425','10548','{$MERAKI.SAML.ORG.ACCESS.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered SAML role.','0','0'), ('6426','10548','{$MERAKI.SAML.ROLE.MATCHES}','.*','Filter of discoverable SAML role.','0','0'), ('6427','10548','{$MERAKI.SAML.ROLE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered SAML role.','0','0'), ('6428','10548','{$MERAKI.VPN.LOSS.PERCENTILE}','90','Average VPN connection loss percentage. Used in the trigger expression','0','0'), ('6429','10510','{$OPENSHIFT.STATE.ENDPOINT.NAME}','openshift-state-metrics','OpenShift state endpoint name.','0','0'), ('6430','10335','{$ORACLE.TBS.USED.PCT.FROM.MAX.HIGH}','95','High severity alert threshold for the maximum percentage of tablespace usage (used bytes/max bytes) for the High trigger expression.','0','0'), ('6431','10335','{$ORACLE.TBS.USED.PCT.FROM.MAX.WARN}','90','Warning severity alert threshold for the maximum percentage of tablespace usage from maximum tablespace size (used bytes/max bytes) for the Warning trigger expression.','0','0'), ('6432','10328','{$ORACLE.TBS.USED.PCT.FROM.MAX.HIGH}','95','High severity alert threshold for the maximum percentage of tablespace usage (used bytes/max bytes) for the High trigger expression.','0','0'), ('6433','10328','{$ORACLE.TBS.USED.PCT.FROM.MAX.WARN}','90','Warning severity alert threshold for the maximum percentage of tablespace usage from maximum tablespace size (used bytes/max bytes) for the Warning trigger expression.','0','0'), ('6434','10605','{$ILO.COMPUTER_SYSTEM.DISCOVERY.HOSTNAME.MATCHES}','.+','The computer system hostname regex filter to use in computer systems related metrics discovery for including. Can be used with the following context to include metrics of the particular entity: System, Storage, Controller, Drive, Volume.','0','0'), ('6435','10605','{$ILO.COMPUTER_SYSTEM.DISCOVERY.HOSTNAME.NOT_MATCHES}','CHANGE_IF_NEEDED','The computer system hostname regex filter to use in computer systems related metrics discovery for excluding. Can be used with the following context to exclude metrics of the particular entity: System, Storage, Controller, Drive, Volume.','0','0'), ('6436','10605','{$ILO.COMPUTER_SYSTEM.DISCOVERY.TYPE.MATCHES}','.+','The computer system type regex filter to use in computer systems related metrics discovery for including. Can be used with the following context to include metrics of the particular entity: System, Storage, Controller, Drive, Volume.','0','0'), ('6437','10605','{$ILO.COMPUTER_SYSTEM.DISCOVERY.TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','The computer system type regex filter to use in computer systems related metrics discovery for excluding. Can be used with the following context to exclude metrics of the particular entity: System, Storage, Controller, Drive, Volume.','0','0'), ('6438','10605','{$ILO.HTTP_PROXY}','','The HTTP proxy for script items (set if needed). If the macro is empty, then no proxy is used.','0','0'), ('6439','10605','{$ILO.INTERVAL}','1m','The update interval for the script item that retrieves data from API.','0','0'), ('6440','10605','{$ILO.PASSWORD}','','The password of the user that is used for monitoring.','1','0'), ('6441','10605','{$ILO.SENSOR.DISCOVERY.CONTEXT.MATCHES}','.+','The sensor physical context regex filter to use in temperature sensors discovery for including.','0','0'), ('6442','10605','{$ILO.SENSOR.DISCOVERY.CONTEXT.NOT_MATCHES}','CHANGE_IF_NEEDED','The sensor physical context regex filter to use in temperature sensors discovery for excluding.','0','0'), ('6443','10605','{$ILO.SENSOR.DISCOVERY.NAME.MATCHES}','.+','The sensor name regex filter to use in temperature sensors discovery for including.','0','0'), ('6444','10605','{$ILO.SENSOR.DISCOVERY.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','The sensor name regex filter to use in temperature sensors discovery for excluding.','0','0'), ('6445','10605','{$ILO.TIMEOUT}','15s','The timeout threshold for the script item that retrieves data from API.','0','0'), ('6446','10605','{$ILO.URL}','','The iLO API endpoint in the format "://[:port]/" (port is optional).','0','0'), ('6447','10605','{$ILO.USER}','','The name of the user that is used for monitoring.','0','0'), ('6448','10382','{$SHAREPOINT.MAX_HEALTH_SCORE}','5','Must be in the range from 0 to 10 in details: https://docs.microsoft.com/en-us/openspecs/sharepoint_protocols/ms-wsshp/c60ddeb6-4113-4a73-9e97-26b5c3907d33','0','0'), ('6449','10530','{$AWS.S3.LLD.FILTER.ID.NAME.MATCHES}','.*','Filter of discoverable request metrics by filter ID name.','0','0'), ('6450','10530','{$AWS.S3.LLD.FILTER.ID.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered request metrics by filter ID name.','0','0'), ('6451','10530','{$AWS.S3.UPDATE.INTERVAL}','1800','Interval in seconds for getting request metrics. Used in the metric configuration and in the JavaScript API query. Must be between 1 and 86400 seconds.','0','0'), ('6452','10606','{$AZURE.APP.ID}','','The App ID of Microsoft Azure.','0','0'), ('6453','10606','{$AZURE.BILLING.MONTH}','11','Months to get historical data from Azure Cost Management API, no more than 11 (plus current month). The time period for pulling the data cannot exceed 1 year.','0','0'), ('6454','10606','{$AZURE.DATA.TIMEOUT}','60s','API response timeout.','0','0'), ('6455','10606','{$AZURE.LLD.FILTER.RESOURCE.GROUP.MATCHES}','.*','Filter of discoverable resource groups by name.','0','0'), ('6456','10606','{$AZURE.LLD.FILTER.RESOURCE.GROUP.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered resource groups by name.','0','0'), ('6457','10606','{$AZURE.LLD.FILTER.RESOURCE.LOCATION.MATCHES}','.*','Filter of discoverable locations by name.','0','0'), ('6458','10606','{$AZURE.LLD.FILTER.RESOURCE.LOCATION.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered locations by name.','0','0'), ('6459','10606','{$AZURE.LLD.FILTER.SERVICE.MATCHES}','.*','Filter of discoverable services by name.','0','0'), ('6460','10606','{$AZURE.LLD.FILTER.SERVICE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered services by name.','0','0'), ('6461','10606','{$AZURE.PASSWORD}','','Microsoft Azure password.','1','0'), ('6462','10606','{$AZURE.PROXY}','','Sets the HTTP proxy value. If this macro is empty, then no proxy is used.','0','0'), ('6463','10606','{$AZURE.TENANT.ID}','','Microsoft Azure tenant ID.','0','0'), ('6464','10570','{$GCP.PROXY}','','Sets HTTP proxy value. If this macro is empty then no proxy is used.','0','0'), ('6465','10571','{$GCP.PROXY}','','Sets HTTP proxy value. If this macro is empty then no proxy is used.','0','0'), ('6466','10572','{$GCP.PROXY}','','Sets HTTP proxy value. If this macro is empty then no proxy is used.','0','0'), ('6467','10573','{$GCP.PROXY}','','Sets HTTP proxy value. If this macro is empty then no proxy is used.','0','0'), ('6468','10574','{$GCP.PROXY}','','Sets HTTP proxy value. If this macro is empty then no proxy is used.','0','0'), ('6469','10575','{$GCP.PROXY}','','Sets HTTP proxy value. If this macro is empty then no proxy is used.','0','0'), ('6470','10576','{$GCP.PROXY}','','Sets HTTP proxy value. If this macro is empty then no proxy is used.','0','0'), ('6471','10577','{$GCP.PROXY}','','Sets HTTP proxy value. If this macro is empty then no proxy is used.','0','0'), ('6472','10327','{$MSSQL.BACKUP_DIFF.USED}','1','The flag for checking the age of a differential backup. If set to a value other than "1", the trigger expression for the differential backup age will not fire. Can be used with context for database name.','0','0'), ('6473','10327','{$MSSQL.BACKUP_FULL.USED}','1','The flag for checking the age of a full backup. If set to a value other than "1", the trigger expression for the full backup age will not fire. Can be used with context for database name.','0','0'), ('6474','10327','{$MSSQL.BACKUP_LOG.USED}','1','The flag for checking the age of a log backup. If set to a value other than "1", the trigger expression for the log backup age will not fire. Can be used with context for database name.','0','0'), ('6475','10399','{$TIKV.COPROCESSOR.ERRORS.MAX.WARN}','1','Maximum number of coprocessor request errors','0','0'), ('6476','10546','{$MERAKI.DATA.TIMEOUT}','60','Response timeout for an API.','0','0'), ('6477','10547','{$MERAKI.DATA.TIMEOUT}','60','Response timeout for an API.','0','0'), ('6478','10547','{$MERAKI.GET.STATUS.INTERVAL}','300','Update interval for get status item.','0','0'), ('6479','10548','{$MERAKI.DATA.TIMEOUT}','60','Response timeout for an API.','0','0'), ('6480','10600','{$ACRONIS.CPC.OFFSET.SCHEDULED.ANTIMALWARE}','-180','Offset time in seconds for scheduled antimalware scan trigger check.','0','0'), ('6481','10600','{$ACRONIS.CPC.OFFSET.SCHEDULED.BACKUP}','-180','Offset time in seconds for scheduled backup run trigger check.','0','0'), ('6482','10600','{$ACRONIS.CPC.OFFSET.SCHEDULED.PATCH}','-180','Offset time in seconds for scheduled patch management run trigger check.','0','0'), ('6483','10600','{$ACRONIS.CPC.OFFSET.SCHEDULED.VULNERABILITY}','-180','Offset time in seconds for scheduled vulnerability assessment run trigger check.','0','0'), ('6484','10583','{$AWS.ECS.LLD.FILTER.ALARM_SERVICE_NAMESPACE.MATCHES}','.*','Filter of discoverable alarms by namespace.','0','0'), ('6485','10583','{$AWS.ECS.LLD.FILTER.ALARM_SERVICE_NAMESPACE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered alarms by namespace.','0','0'), ('6486','10584','{$AWS.ECS.LLD.FILTER.ALARM_SERVICE_NAMESPACE.MATCHES}','.*','Filter of discoverable alarms by namespace.','0','0'), ('6487','10584','{$AWS.ECS.LLD.FILTER.ALARM_SERVICE_NAMESPACE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered alarms by namespace.','0','0'), ('6488','10607','{$AWS.ACCESS.KEY.ID}','','Access key ID.','0','0'), ('6489','10607','{$AWS.AUTH_TYPE}','access_key','Authorization method. Possible values: `access_key`, `assume_role`, `role_base`.','0','0'), ('6490','10607','{$AWS.DATA.TIMEOUT}','60s','API response timeout.','0','0'), ('6491','10607','{$AWS.ELB.ARN}','','Amazon Resource Names (ARN) of the load balancer.','0','0'), ('6492','10607','{$AWS.ELB.LLD.FILTER.ALARM_NAME.MATCHES}','.*','Filter of discoverable alarms by name.','0','0'), ('6493','10607','{$AWS.ELB.LLD.FILTER.ALARM_NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered alarms by name.','0','0'), ('6494','10607','{$AWS.ELB.LLD.FILTER.ALARM_SERVICE_NAMESPACE.MATCHES}','.*','Filter of discoverable alarms by namespace.','0','0'), ('6495','10607','{$AWS.ELB.LLD.FILTER.ALARM_SERVICE_NAMESPACE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered alarms by namespace.','0','0'), ('6496','10607','{$AWS.ELB.LLD.FILTER.TARGET.GROUP.MATCHES}','.*','Filter of discoverable target groups by name.','0','0'), ('6497','10607','{$AWS.ELB.LLD.FILTER.TARGET.GROUP.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered target groups by name.','0','0'), ('6498','10607','{$AWS.HTTP.4XX.FAIL.MAX.WARN}','5','Maximum number of HTTP request failures for a trigger expression.','0','0'), ('6499','10607','{$AWS.HTTP.5XX.FAIL.MAX.WARN}','5','Maximum number of HTTP request failures for a trigger expression.','0','0'), ('6500','10607','{$AWS.PROXY}','','Sets the HTTP proxy value. If this macro is empty, no proxy is used.','0','0'), ('6501','10607','{$AWS.REGION}','us-west-1','AWS Application Load Balancer region code.','0','0'), ('6502','10607','{$AWS.SECRET.ACCESS.KEY}','','Secret access key.','0','0'), ('6503','10535','{$AWS.DATA.TIMEOUT}','60s','A response timeout for an API.','0','0'), ('6504','10535','{$AWS.ELB.LLD.FILTER.NAME.MATCHES}','.*','Filter of discoverable ELB load balancers by name.','0','0'), ('6505','10535','{$AWS.ELB.LLD.FILTER.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered ELB load balancers by name.','0','0'), ('6506','10535','{$AWS.ELB.LLD.FILTER.REGION.MATCHES}','.*','Filter of discoverable ELB load balancers by region.','0','0'), ('6507','10535','{$AWS.ELB.LLD.FILTER.REGION.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered ELB load balancers by region.','0','0'), ('6508','10535','{$AWS.ELB.LLD.FILTER.STATE.MATCHES}','active','Filter of discoverable ELB load balancers by status.','0','0'), ('6509','10535','{$AWS.ELB.LLD.FILTER.STATE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered ELB load balancer by status.','0','0'), ('6510','10608','{$AWS.ELB.ARN}','{#AWS.ELB.ARN}','The Amazon Resource Names (ARN) of the load balancers.','0','0'), ('6511','10608','{$AWS.ELB.NAME}','{#AWS.ELB.NAME}','ELB load balancer name.','0','0'), ('6512','10608','{$AWS.REGION}','{#AWS.ELB.REGION}','ELB load balancer region.','0','0'), ('6513','10609','{$MSSQL.AVERAGE_WAIT_TIME.MAX}','500','The maximum average wait time, in milliseconds - for the trigger expression.','0','0'), ('6514','10609','{$MSSQL.BACKUP_DIFF.CRIT}','6d','The maximum of days without a differential backup - for the High trigger expression.','0','0'), ('6515','10609','{$MSSQL.BACKUP_DIFF.USED}','1','The flag for checking the age of a differential backup. If set to a value other than "1", the trigger expression for the differential backup age will not fire. Can be used with context for database name.','0','0'), ('6516','10609','{$MSSQL.BACKUP_DIFF.WARN}','3d','The maximum of days without a differential backup - for the Warning trigger expression.','0','0'), ('6518','10609','{$MSSQL.BACKUP_FULL.CRIT}','10d','The maximum of days without a full backup - for the High trigger expression.','0','0'), ('6519','10609','{$MSSQL.BACKUP_FULL.USED}','1','The flag for checking the age of a full backup. If set to a value other than "1", the trigger expression for the full backup age will not fire. Can be used with context for database name.','0','0'), ('6520','10609','{$MSSQL.BACKUP_FULL.WARN}','9d','The maximum of days without a full backup - for the Warning trigger expression.','0','0'), ('6521','10609','{$MSSQL.BACKUP_LOG.CRIT}','8h','The maximum of days without a log backup - for the High trigger expression.','0','0'), ('6522','10609','{$MSSQL.BACKUP_LOG.USED}','1','The flag for checking the age of a log backup. If set to a value other than "1", the trigger expression for the log backup age will not fire. Can be used with context for database name.','0','0'), ('6523','10609','{$MSSQL.BACKUP_LOG.WARN}','4h','The maximum of days without a log backup - for the Warning trigger expression.','0','0'), ('6524','10609','{$MSSQL.BUFFER_CACHE_RATIO.MIN.CRIT}','30','The minimum buffer cache hit ratio, in percent - for the High trigger expression.','0','0'), ('6525','10609','{$MSSQL.BUFFER_CACHE_RATIO.MIN.WARN}','50','The minimum buffer cache hit ratio, in percent - for the Warning trigger expression.','0','0'), ('6526','10609','{$MSSQL.DBNAME.MATCHES}','.*','This macro is used in database discovery. It can be overridden on the host or linked template level.','0','0'), ('6527','10609','{$MSSQL.DBNAME.NOT_MATCHES}','master|tempdb|model|msdb','This macro is used in database discovery. It can be overridden on the host or linked template level.','0','0'), ('6528','10609','{$MSSQL.DEADLOCKS.MAX}','1','The maximum deadlocks per second - for the trigger expression.','0','0'), ('6529','10609','{$MSSQL.FREE_LIST_STALLS.MAX}','2','The maximum free list stalls per second - for the trigger expression.','0','0'), ('6530','10609','{$MSSQL.JOB.MATCHES}','.*','This macro is used in job discovery. It can be overridden on the host or linked template level.','0','0'), ('6531','10609','{$MSSQL.JOB.NOT_MATCHES}','CHANGE_IF_NEEDED','This macro is used in job discovery. It can be overridden on the host or linked template level.','0','0'), ('6532','10609','{$MSSQL.LAZY_WRITES.MAX}','20','The maximum lazy writes per second - for the trigger expression.','0','0'), ('6533','10609','{$MSSQL.LOCK_REQUESTS.MAX}','1000','The maximum lock requests per second - for the trigger expression.','0','0'), ('6534','10609','{$MSSQL.LOCK_TIMEOUTS.MAX}','1','The maximum lock timeouts per second - for the trigger expression.','0','0'), ('6535','10609','{$MSSQL.LOG_FLUSH_WAITS.MAX}','1','The maximum log flush waits per second - for the trigger expression.','0','0'), ('6536','10609','{$MSSQL.LOG_FLUSH_WAIT_TIME.MAX}','1','The maximum log flush wait time, in milliseconds - for the trigger expression.','0','0'), ('6537','10609','{$MSSQL.PAGE_LIFE_EXPECTANCY.MIN}','300','The minimum page life expectancy - for the trigger expression.','0','0'), ('6538','10609','{$MSSQL.PAGE_READS.MAX}','90','The maximum page reads per second - for the trigger expression.','0','0'), ('6539','10609','{$MSSQL.PAGE_WRITES.MAX}','90','The maximum page writes per second - for the trigger expression.','0','0'), ('6540','10609','{$MSSQL.PASSWORD}','','MSSQL user password.','0','0'), ('6541','10609','{$MSSQL.PERCENT_COMPILATIONS.MAX}','10','The maximum percentage of Transact-SQL compilations - for the trigger expression.','0','0'), ('6542','10609','{$MSSQL.PERCENT_LOG_USED.MAX}','80','The maximum percentage of log used - for the trigger expression.','0','0'), ('6543','10609','{$MSSQL.PERCENT_READAHEAD.MAX}','20','The maximum percentage of pages read per second in anticipation of use - for the trigger expression.','0','0'), ('6544','10609','{$MSSQL.PERCENT_RECOMPILATIONS.MAX}','10','The maximum percentage of Transact-SQL recompilations - for the trigger expression.','0','0'), ('6545','10609','{$MSSQL.PORT}','1433','MSSQL TCP port.','0','0'), ('6546','10609','{$MSSQL.URI}','','Connection string.','0','0'), ('6547','10609','{$MSSQL.USER}','','MSSQL username.','0','0'), ('6548','10609','{$MSSQL.WORKTABLES_FROM_CACHE_RATIO.MIN.CRIT}','90','The minimum percentage of work tables from the cache ratio - for the High trigger expression.','0','0'), ('6549','10609','{$MSSQL.WORK_FILES.MAX}','20','The maximum number of work files created per second - for the trigger expression.','0','0'), ('6550','10609','{$MSSQL.WORK_TABLES.MAX}','20','The maximum number of work tables created per second - for the trigger expression.','0','0'), ('6551','10610','{$YUGABYTEDB.ACCESS.TOKEN}','','Access token for the YugabyteDB API.','0','0'), ('6552','10610','{$YUGABYTEDB.ACCOUNT.ID}','','YugabyteDB account ID.','0','0'), ('6553','10610','{$YUGABYTEDB.PROJECT.ID}','','YugabyteDB project ID.','0','0'), ('6554','10610','{$YUGABYTEDB.PROXY}','','Sets the HTTP proxy value. If this macro is empty, then no proxy is used.','0','0'), ('6555','10611','{$YUGABYTEDB.CLUSTER.ID}','','ID of cluster.','0','0'), ('6556','10611','{$YUGABYTEDB.CLUSTER.NAME}','','Name of cluster.','0','0'), ('6557','10611','{$YUGABYTEDB.CONNECTION.UTILIZATION.CRIT}','90','The percentage of connections in the cluster - for the High trigger expression.','0','0'), ('6558','10611','{$YUGABYTEDB.CONNECTION.UTILIZATION.WARN}','75','The percentage of connections in the cluster - for the Warning trigger expression.','0','0'), ('6559','10611','{$YUGABYTEDB.CPU.UTILIZATION.CRIT}','90','The threshold of CPU utilization for the High trigger expression, expressed in percent.','0','0'), ('6560','10611','{$YUGABYTEDB.CPU.UTILIZATION.WARN}','75','The threshold of CPU utilization for the Warning trigger expression, expressed in percent.','0','0'), ('6561','10611','{$YUGABYTEDB.DISK.UTILIZATION.CRIT}','90','The percentage of disk use in the cluster - for the High trigger expression.','0','0'), ('6562','10611','{$YUGABYTEDB.DISK.UTILIZATION.WARN}','75','The percentage of disk use in the cluster - for the Warning trigger expression.','0','0'), ('6563','10611','{$YUGABYTEDB.IOPS.UTILIZATION.CRIT}','90','The percentage of IOPS use on the node - for the High trigger expression.','0','0'), ('6564','10611','{$YUGABYTEDB.IOPS.UTILIZATION.WARN}','75','The percentage of IOPS use on the node - for the Warning trigger expression.','0','0'), ('6565','10611','{$YUGABYTEDB.MEMORY.CLUSTER.UTILIZATION.CRIT}','90','The percentage of memory use on the cluster - for the High trigger expression.','0','0'), ('6566','10611','{$YUGABYTEDB.MEMORY.CLUSTER.UTILIZATION.WARN}','70','The percentage of memory use on the cluster - for the Warning trigger expression.','0','0'), ('6567','10611','{$YUGABYTEDB.PROXY}','','Sets the HTTP proxy value. If this macro is empty, then no proxy is used.','0','0'), ('6568','10612','{$YUGABYTEDB.CLUSTER.ID}','{#CLUSTER.ID}','ID of cluster.','0','0'), ('6569','10612','{$YUGABYTEDB.CLUSTER.NAME}','{#CLUSTER.NAME}','Name of cluster.','0','0'), ('6570','10613','{$CPU.UTIL.CRIT}','90','Threshold of CPU utilization for the Warning trigger in %.','0','0'), ('6571','10613','{$DISK.FREE.MIN.CRIT}','5G','Critical threshold of disk space usage.','0','0'), ('6572','10613','{$DISK.FREE.MIN.WARN}','10G','Warning threshold of disk space usage.','0','0'), ('6573','10613','{$DISK.NAME.MATCHES}','.+','Used in Storage discovery. Can be overridden on the host or linked template level.','0','0'), ('6574','10613','{$DISK.NAME.NOT_MATCHES}','^(/dev|/sys|/run|/proc|.+/shm$)','Used in Storage discovery. Can be overridden on the host or linked template level.','0','0'), ('6575','10613','{$DISK.PUSED.MAX.CRIT}','90','Disk utilization threshold for Critical trigger in %.','0','0'), ('6576','10613','{$DISK.PUSED.MAX.WARN}','80','Disk utilization threshold for Warning trigger in %.','0','0'), ('6577','10613','{$FW.DROPPED.PACKETS.TH}','0','Used in Firewall discovery.','0','0'), ('6578','10613','{$ICMP_LOSS_WARN}','20','Threshold of ICMP packet loss for the Warning trigger in %.','0','0'), ('6579','10613','{$ICMP_RESPONSE_TIME_WARN}','0.15','Threshold of average ICMP response time for the Warning trigger in seconds.','0','0'), ('6580','10613','{$LICENSE.CONTROL}','1','Used in Software blade discovery. Can be overridden on the host or linked template level.','0','0'), ('6581','10613','{$LICENSE.EXPIRY.WARN}','7','Number of days until the license expires.','0','0'), ('6582','10613','{$LOAD_AVG_PER_CPU.MAX.WARN}','1.5','Load per CPU considered sustainable. Change if needed.','0','0'), ('6583','10613','{$MEMORY.UTIL.MAX}','90','Warning threshold for the item "Physical memory: Memory utilization".','0','0'), ('6584','10613','{$NET.IF.CONTROL}','1','Macro for the interface operational state for the "Link down" trigger. Can be used with the interface name as context.','0','0'), ('6585','10613','{$NET.IF.ERRORS.WARN}','2','Threshold of error packet rate for the Warning trigger. Can be used with the interface name as context.','0','0'), ('6586','10613','{$NET.IF.IFADMINSTATUS.MATCHES}','.*','Used in Network interfaces discovery. Can be overridden on the host or linked template level.','0','0'), ('6587','10613','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Used in Network interfaces discovery. Can be overridden on the host or linked template level.','0','0'), ('6588','10613','{$NET.IF.IFALIAS.MATCHES}','.*','Used in Network interfaces discovery. Can be overridden on the host or linked template level.','0','0'), ('6589','10613','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in Network interfaces discovery. Can be overridden on the host or linked template level.','0','0'), ('6590','10613','{$NET.IF.IFDESCR.MATCHES}','.*','Used in Network interfaces discovery. Can be overridden on the host or linked template level.','0','0'), ('6591','10613','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in Network interfaces discovery. Can be overridden on the host or linked template level.','0','0'), ('6592','10613','{$NET.IF.IFNAME.MATCHES}','.*','Used in Network interfaces discovery. Can be overridden on the host or linked template level.','0','0'), ('6593','10613','{$NET.IF.IFNAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in Network interfaces discovery. Can be overridden on the host or linked template level.','0','0'), ('6594','10613','{$NET.IF.IFOPERSTATUS.MATCHES}','.*','Used in Network interfaces discovery. Can be overridden on the host or linked template level.','0','0'), ('6595','10613','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Used in Network interfaces discovery. Can be overridden on the host or linked template level.','0','0'), ('6596','10613','{$NET.IF.IFTYPE.MATCHES}','.*','Used in Network interfaces discovery. Can be overridden on the host or linked template level.','0','0'), ('6597','10613','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in Network interfaces discovery. Can be overridden on the host or linked template level.','0','0'), ('6598','10613','{$NET.IF.UTIL.MAX}','95','Threshold of interface bandwidth utilization for the Warning trigger in %. Can be used with interface name as context.','0','0'), ('6599','10613','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('6600','10613','{$SW.NAME.MATCHES}','.*','Used in Software blade discovery. Can be overridden on the host or linked template level.','0','0'), ('6601','10613','{$SW.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in Software blade discovery. Can be overridden on the host or linked template level.','0','0'), ('6602','10613','{$TEMP.NAME.MATCHES}','.*','Used in Temperature discovery. Can be overridden on the host or linked template level.','0','0'), ('6603','10613','{$TEMP.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in Temperature discovery. Can be overridden on the host or linked template level.','0','0'), ('6604','10613','{$TEMP.VALUE.CRIT}','75','Used in Temperature discovery. Can be overridden on the host or linked template level.','0','0'), ('6605','10613','{$TEMP.VALUE.LOW}','5','Used in Temperature discovery. Can be overridden on the host or linked template level.','0','0'), ('6606','10613','{$TEMP.VALUE.WARN}','65','Used in Temperature discovery. Can be overridden on the host or linked template level.','0','0'), ('6607','10613','{$VOLT.NAME.MATCHES}','.*','Used in Voltage discovery. Can be overridden on the host or linked template level.','0','0'), ('6608','10613','{$VOLT.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in Voltage discovery. Can be overridden on the host or linked template level.','0','0'), ('6609','10613','{$VPN.NAME.MATCHES}','.*','Used in VPN discovery. Can be overridden on the host or linked template level.','0','0'), ('6610','10613','{$VPN.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in VPN discovery. Can be overridden on the host or linked template level.','0','0'), ('6611','10613','{$VPN.STATE.CONTROL}','1','Used in the "Tunnel down" trigger. Can be used with the interface name as context.','0','0'), ('6612','10614','{$OCI.AUTONOMOUS.DB.CPU.UTIL.HIGH}','90','Sets the percentage threshold for creating a "high" severity event about CPU resource utilization.','0','0'), ('6613','10614','{$OCI.AUTONOMOUS.DB.CPU.UTIL.WARN}','75','Sets the percentage threshold for creating a "warning" severity event about CPU resource utilization.','0','0'), ('6614','10614','{$OCI.AUTONOMOUS.DB.STORAGE.UTIL.HIGH}','90','Sets the percentage threshold for creating a "high" severity event about storage resource utilization.','0','0'), ('6615','10614','{$OCI.AUTONOMOUS.DB.STORAGE.UTIL.WARN}','75','Sets the percentage threshold for creating a "warning" severity event about storage resource utilization.','0','0'), ('6616','10614','{$OCI.HTTP.PROXY}','','Set an HTTP proxy for OCI API requests if needed.','0','0'), ('6617','10614','{$OCI.HTTP.RETURN.CODE.OK}','200','Set the HTTP return code that represents an OK response from the API. The default is "200", but can vary, for example, if a proxy is used.','0','0'), ('6618','10615','{$OCI.HTTP.PROXY}','','Set an HTTP proxy for OCI API requests if needed.','0','0'), ('6619','10615','{$OCI.HTTP.RETURN.CODE.OK}','200','Set the HTTP return code that represents an OK response from the API. The default is "200", but can vary, for example, if a proxy is used.','0','0'), ('6620','10616','{$OCI.HTTP.PROXY}','','Set an HTTP proxy for OCI API requests if needed.','0','0'), ('6621','10616','{$OCI.HTTP.RETURN.CODE.OK}','200','Set the HTTP return code that represents an OK response from the API. The default is "200", but can vary, for example, if a proxy is used.','0','0'), ('6622','10617','{$OCI.API.AUTONOMOUS.DB.HOST}','','Host for OCI Autonomous Database API endpoint.','0','0'), ('6623','10617','{$OCI.API.CORE.HOST}','','Host for OCI Core Services API endpoint.','0','0'), ('6624','10617','{$OCI.API.FINGERPRINT}','','Fingerprint of private key.','1','0'), ('6625','10617','{$OCI.API.OBJECT.STORAGE.HOST}','','Host for OCI Object Storage API endpoint.','0','0'), ('6626','10617','{$OCI.API.PRIVATE.KEY}','','Entire private key for API access.','1','0'), ('6627','10617','{$OCI.API.TELEMETRY.HOST}','','Host for OCI Monitoring API endpoint.','0','0'), ('6628','10617','{$OCI.API.TENANCY}','','OCID of tenancy.','0','0'), ('6629','10617','{$OCI.API.USER}','','OCID of user.','0','0'), ('6630','10617','{$OCI.AUTONOMOUS.DB.DISCOVERY.NAME.MATCHES}','.*','Sets the regex string of autonomous database names to allow in discovery.','0','0'), ('6631','10617','{$OCI.AUTONOMOUS.DB.DISCOVERY.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the regex string of autonomous database names to ignore in discovery.','0','0'), ('6632','10617','{$OCI.AUTONOMOUS.DB.DISCOVERY.STATE.MATCHES}','.*','Sets the regex string of autonomous database states to allow in discovery.','0','0'), ('6633','10617','{$OCI.AUTONOMOUS.DB.DISCOVERY.STATE.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the regex string of autonomous database states to ignore in discovery.','0','0'), ('6634','10617','{$OCI.COMPUTE.DISCOVERY.NAME.MATCHES}','.*','Sets the regex string of compute instance names to allow in discovery.','0','0'), ('6635','10617','{$OCI.COMPUTE.DISCOVERY.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the regex string of compute instance names to ignore in discovery.','0','0'), ('6636','10617','{$OCI.COMPUTE.DISCOVERY.STATE.MATCHES}','.*','Sets the regex string of compute instance states to allow in discovery.','0','0'), ('6637','10617','{$OCI.COMPUTE.DISCOVERY.STATE.NOT_MATCHES}','TERMINATED','Sets the regex string of compute instance states to ignore in discovery.','0','0'), ('6638','10617','{$OCI.HTTP.PROXY}','','Set an HTTP proxy for OCI API requests if needed.','0','0'), ('6639','10617','{$OCI.HTTP.RETURN.CODE.OK}','200','Set the HTTP return code that represents an OK response from the API. The default is "200", but can vary, for example, if a proxy is used.','0','0'), ('6640','10617','{$OCI.OBJECT.STORAGE.DISCOVERY.NAME.MATCHES}','.*','Set an HTTP proxy for OCI API requests if needed.','0','0'), ('6641','10617','{$OCI.OBJECT.STORAGE.DISCOVERY.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Set an HTTP proxy for OCI API requests if needed.','0','0'), ('6642','10617','{$OCI.VCN.DISCOVERY.NAME.MATCHES}','.*','Sets the regex string of virtual cloud network names to allow in discovery.','0','0'), ('6643','10617','{$OCI.VCN.DISCOVERY.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the regex string of virtual cloud network names to ignore in discovery.','0','0'), ('6644','10617','{$OCI.VCN.DISCOVERY.STATE.MATCHES}','.*','Sets the regex string of virtual cloud network states to allow in discovery.','0','0'), ('6645','10617','{$OCI.VCN.DISCOVERY.STATE.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the regex string of virtual cloud network states to ignore in discovery.','0','0'), ('6646','10617','{$OCI.VOLUME.BLOCK.DISCOVERY.NAME.MATCHES}','.*','Sets the regex string of block volume names to allow in discovery.','0','0'), ('6647','10617','{$OCI.VOLUME.BLOCK.DISCOVERY.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the regex string of block volume names to ignore in discovery.','0','0'), ('6648','10617','{$OCI.VOLUME.BLOCK.DISCOVERY.STATE.MATCHES}','.*','Sets the regex string of block volume states to allow in discovery.','0','0'), ('6649','10617','{$OCI.VOLUME.BLOCK.DISCOVERY.STATE.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the regex string of block volume states to ignore in discovery.','0','0'), ('6650','10617','{$OCI.VOLUME.BOOT.DISCOVERY.NAME.MATCHES}','.*','Sets the regex string of boot volume names to allow in discovery.','0','0'), ('6651','10617','{$OCI.VOLUME.BOOT.DISCOVERY.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the regex string of boot volume names to ignore in discovery.','0','0'), ('6652','10617','{$OCI.VOLUME.BOOT.DISCOVERY.STATE.MATCHES}','.*','Sets the regex string of boot volume states to allow in discovery.','0','0'), ('6653','10617','{$OCI.VOLUME.BOOT.DISCOVERY.STATE.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the regex string of boot volume states to ignore in discovery.','0','0'), ('6654','10618','{$OCI.COMPUTE.CPU.UTIL.HIGH}','90','Sets the percentage threshold for creating a "high" severity event about CPU resource utilization.','0','0'), ('6655','10618','{$OCI.COMPUTE.CPU.UTIL.WARN}','75','Sets the percentage threshold for creating a "warning" severity event about CPU resource utilization.','0','0'), ('6656','10618','{$OCI.COMPUTE.MEM.UTIL.HIGH}','90','Sets the percentage threshold for creating a "high" severity event about memory resource utilization.','0','0'), ('6657','10618','{$OCI.COMPUTE.MEM.UTIL.WARN}','75','Sets the percentage threshold for creating a "warning" severity event about memory resource utilization.','0','0'), ('6658','10618','{$OCI.COMPUTE.VNIC.CONNTRACK.UTIL.HIGH}','90','Sets the percentage threshold for creating a "high" severity event about VNIC connection tracking table utilization.','0','0'), ('6659','10618','{$OCI.COMPUTE.VNIC.CONNTRACK.UTIL.WARN}','75','Sets the percentage threshold for creating a "warning" severity event about VNIC connection tracking table utilization.','0','0'), ('6660','10618','{$OCI.COMPUTE.VNIC.DISCOVERY.NAME.MATCHES}','.*','Sets the regex string of VNIC names to allow in discovery.','0','0'), ('6661','10618','{$OCI.COMPUTE.VNIC.DISCOVERY.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the regex string of VNIC names to ignore in discovery.','0','0'), ('6662','10618','{$OCI.COMPUTE.VNIC.DISCOVERY.STATE.MATCHES}','.*','Sets the regex string of VNIC states to allow in discovery.','0','0'), ('6663','10618','{$OCI.COMPUTE.VNIC.DISCOVERY.STATE.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the regex string of VNIC states to ignore in discovery.','0','0'), ('6664','10618','{$OCI.HTTP.PROXY}','','Set an HTTP proxy for OCI API requests if needed.','0','0'), ('6665','10618','{$OCI.HTTP.RETURN.CODE.OK}','200','Set the HTTP return code that represents an OK response from the API. The default is "200", but can vary, for example, if a proxy is used.','0','0'), ('6666','10619','{$OCI.HTTP.PROXY}','','Set an HTTP proxy for OCI API requests if needed.','0','0'), ('6667','10619','{$OCI.HTTP.RETURN.CODE.OK}','200','Set the HTTP return code that represents an OK response from the API. The default is "200", but can vary, for example, if a proxy is used.','0','0'), ('6668','10619','{$OCI.VCN.SUBNET.DISCOVERY.NAME.MATCHES}','.*','Sets the regex string of VCN subnet names to allow in discovery.','0','0'), ('6669','10619','{$OCI.VCN.SUBNET.DISCOVERY.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the regex string of VCN subnet names to ignore in discovery.','0','0'), ('6670','10619','{$OCI.VCN.SUBNET.DISCOVERY.STATE.MATCHES}','.*','Sets the regex string of VCN subnet states to allow in discovery.','0','0'), ('6671','10619','{$OCI.VCN.SUBNET.DISCOVERY.STATE.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the regex string of VCN subnet states to ignore in discovery.','0','0'), ('6672','10620','{$OCI.HTTP.PROXY}','','Set an HTTP proxy for OCI API requests if needed.','0','0'), ('6673','10620','{$OCI.HTTP.RETURN.CODE.OK}','200','Set the HTTP return code that represents an OK response from the API. The default is "200", but can vary, for example, if a proxy is used.','0','0'), ('6674','10621','{$OCI.VOLUME.BLOCK.ID}','{#ID}','Block volume ID.','0','0'), ('6675','10622','{$OCI.VOLUME.BOOT.ID}','{#ID}','Boot volume ID.','0','0'), ('6676','10623','{$OCI.COMPUTE.AVAILABILITY.DOMAIN}','{#DOMAIN}','Availability domain for instance.','0','0'), ('6677','10623','{$OCI.COMPUTE.INSTANCE.ID}','{#ID}','ID of OCI compute instance.','0','0'), ('6678','10624','{$OCI.AUTONOMOUS.DB.ID}','{#ID}','ID of OCI autonomous database.','0','0'), ('6679','10625','{$OCI.OBJECT.STORAGE.BUCKET}','{#NAME}','Object storage bucket name.','0','0'), ('6680','10626','{$OCI.VCN.ID}','{#ID}','ID of the OCI VCN (virtual cloud network).','0','0'), ('6681','10604','{$DISK.FREE.CRIT}','10','Threshold of disk free space for Critical trigger in %.','0','0'), ('6682','10604','{$DISK.FREE.WARN}','20','Threshold of disk free space for Warning trigger in %.','0','0'), ('6683','10604','{$HA.MEMBER.SN.MATCHES}','.*','Used in HA member discovery. Can be overridden on the host or linked template level.','0','0'), ('6684','10604','{$HA.MEMBER.SN.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in HA member discovery. Can be overridden on the host or linked template level.','0','0'), ('6685','10604','{$SDWAN.HEALTH.IF.CONTROL}','1','Used in "Health check state is dead" trigger. Can be used with health check name as context.','0','0'), ('6686','10604','{$SDWAN.HEALTH.IF.LOSS.WARN}','20','Threshold of packet loss for Warning trigger in %. Can be used with health check name as context.','0','0'), ('6687','10604','{$SDWAN.HEALTH.NAME.MATCHES}','.*','Used in SD-WAN health-check discovery. Can be overridden on the host or linked template level.','0','0'), ('6688','10604','{$SDWAN.HEALTH.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in SD-WAN health-check discovery. Can be overridden on the host or linked template level.','0','0'), ('6689','10604','{$VDOM.NAME.MATCHES}','.*','Used in Virtual domain discovery. Can be overridden on the host or linked template level.','0','0'), ('6690','10604','{$VDOM.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in Virtual domain discovery. Can be overridden on the host or linked template level.','0','0'), ('6691','10604','{$VPN.NAME.MATCHES}','.*','Used in VPN tunnel discovery. Can be overridden on the host or linked template level.','0','0'), ('6692','10604','{$VPN.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in VPN tunnel discovery. Can be overridden on the host or linked template level.','0','0'), ('6693','10604','{$VPN.STATE.CONTROL}','1','Used in "Tunnel down" trigger. Can be used with interface name as context.','0','0'), ('6694','10604','{$WC.CPU.UTIL.CRIT}','90','Threshold of WTP CPU utilization for Warning trigger in %. Can be used with interface name as context.','0','0'), ('6695','10604','{$WC.MEMORY.UTIL.MAX}','90','Threshold of WTP memory utilization for trigger in %. Can be used with interface name as context.','0','0'), ('6696','10604','{$WC.NAME.MATCHES}','.*','Used in Wireless discovery. Can be overridden on the host or linked template level.','0','0'), ('6697','10604','{$WC.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in Wireless discovery. Can be overridden on the host or linked template level.','0','0'), ('6698','10604','{$WC.STATE.CONTROL}','1','Used in "Connection down" trigger. Can be used with interface name as context.','0','0'), ('6699','10604','{$WC.UPDATE.CONTROL}','1','Used in "Receiving firmware update" trigger. Can be used with interface name as context.','0','0'), ('6700','10173','{$VMWARE.HV.SENSOR.DISCOVERY}','false','Set "true"/"false" to enable or disable monitoring of hardware sensors.','0','0'), ('6701','10173','{$VMWARE.HV.SENSOR.DISCOVERY.NAME.MATCHES}','.*','Sets the regex string of hardware sensor names to be allowed in discovery.','0','0'), ('6702','10173','{$VMWARE.HV.SENSOR.DISCOVERY.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the regex string of hardware sensor names to be ignored in discovery.','0','0'), ('6703','10175','{$VMWARE.HV.SENSOR.DISCOVERY}','false','Set to "true"/"false" to enable or disable the monitoring of hardware sensors.','0','0'), ('6704','10175','{$VMWARE.HV.SENSOR.DISCOVERY.NAME.MATCHES}','.*','Sets the regex string of hardware sensor names to be allowed in discovery.','0','0'), ('6705','10175','{$VMWARE.HV.SENSOR.DISCOVERY.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the regex string of hardware sensor names to be ignored in discovery.','0','0'), ('6706','10366','{$VMWARE.HV.SENSOR.DISCOVERY}','false','Set "true"/"false" to enable or disable monitoring of hardware sensors.','0','0'), ('6707','10366','{$VMWARE.HV.SENSOR.DISCOVERY.NAME.MATCHES}','.*','Sets the regex string of hardware sensor names to be allowed in discovery.','0','0'), ('6708','10366','{$VMWARE.HV.SENSOR.DISCOVERY.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the regex string of hardware sensor names to be ignored in discovery.','0','0'), ('6709','10265','{$APACHE.STATUS.HOST}','','The hostname or IP address of the Apache status page host.','0','0'), ('6710','10322','{$ELASTICSEARCH.HOST}','','The hostname or IP address of the Elasticsearch host.','0','0'), ('6711','10324','{$ETCD.HOST}','','The hostname or IP address of the `etcd` API endpoint.','0','0'), ('6712','10308','{$HAPROXY.STATS.HOST}','localhost','The hostname or IP address of the HAProxy stats host or container.','0','0'), ('6713','10309','{$HAPROXY.STATS.HOST}','','The hostname or IP address of the HAProxy stats host or container.','0','0'), ('6714','10267','{$NGINX.STUB_STATUS.HOST}','','The hostname or IP address of the Nginx host or Nginx container of a stub_status.','0','0'), ('6715','10517','{$PVE.URL.HOST}','','The hostname or IP address of the Proxmox VE API host.','0','0'), ('6716','10302','{$RABBITMQ.API.CLUSTER_HOST}','','The hostname or IP of the API endpoint for the RabbitMQ cluster.','0','0'), ('6717','10303','{$RABBITMQ.API.HOST}','','The hostname or IP of the API endpoint for the RabbitMQ.','0','0'), ('6718','10260','{$TOMCAT.LLD.FILTER.MANAGER.MATCHES}','.*','Filter for discoverable managers.','0','0'), ('6719','10260','{$TOMCAT.LLD.FILTER.MANAGER.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude managers.','0','0'), ('6720','10260','{$TOMCAT.LLD.FILTER.REQUEST_PROCESSOR.MATCHES}','.*','Filter for discoverable global request processors.','0','0'), ('6721','10260','{$TOMCAT.LLD.FILTER.REQUEST_PROCESSOR.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude global request processors.','0','0'), ('6722','10260','{$TOMCAT.LLD.FILTER.THREAD_POOL.MATCHES}','.*','Filter for discoverable thread pools.','0','0'), ('6723','10260','{$TOMCAT.LLD.FILTER.THREAD_POOL.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude thread pools.','0','0'), ('6724','10369','{$ZOOKEEPER.HOST}','','The hostname or IP address of the Apache Zookeeper host.','0','0'), ('6725','10380','{$HIKVISION_ISAPI_HOST}','','The hostname or IP address of the Hikvision ISAPI host.','0','0'), ('6726','10627','{$AWS.ACCESS.KEY.ID}','','Access key ID.','0','0'), ('6727','10627','{$AWS.AUTH_TYPE}','access_key','Authorization method. Possible values: `access_key`, `assume_role`, `role_base`.','0','0'), ('6728','10627','{$AWS.DATA.TIMEOUT}','60s','API response timeout.','0','0'), ('6729','10627','{$AWS.ELB.ARN}','','Amazon Resource Names (ARN) of the load balancer.','0','0'), ('6730','10627','{$AWS.ELB.LLD.FILTER.ALARM_NAME.MATCHES}','.*','Filter of discoverable alarms by name.','0','0'), ('6731','10627','{$AWS.ELB.LLD.FILTER.ALARM_NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered alarms by name.','0','0'), ('6732','10627','{$AWS.ELB.LLD.FILTER.ALARM_SERVICE_NAMESPACE.MATCHES}','.*','Filter of discoverable alarms by namespace.','0','0'), ('6733','10627','{$AWS.ELB.LLD.FILTER.ALARM_SERVICE_NAMESPACE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered alarms by namespace.','0','0'), ('6734','10627','{$AWS.ELB.LLD.FILTER.TARGET.GROUP.MATCHES}','.*','Filter of discoverable target groups by name.','0','0'), ('6735','10627','{$AWS.ELB.LLD.FILTER.TARGET.GROUP.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered target groups by name.','0','0'), ('6736','10627','{$AWS.ELB.UNHEALTHY.HOST.MAX}','0','Maximum number of unhealthy hosts for a trigger expression.','0','0'), ('6737','10627','{$AWS.PROXY}','','Sets the HTTP proxy value. If this macro is empty, no proxy is used.','0','0'), ('6738','10627','{$AWS.REGION}','us-west-1','AWS Network Load Balancer region code.','0','0'), ('6739','10627','{$AWS.SECRET.ACCESS.KEY}','','Secret access key.','0','0'), ('6740','10323','{$CLICKHOUSE.HOST}','','The hostname or IP address of the ClickHouse HTTP endpoint.','0','0'), ('6741','10519','{$COCKROACHDB.API.HOST}','','The hostname or IP address of the CockroachDB host.','0','0'), ('6742','10609','{$MSSQL.HOST}','localhost','The hostname or IP address of the MSSQL instance.','0','0'), ('6743','10327','{$MSSQL.HOST}','localhost','The hostname or IP address of the MSSQL instance.','0','0'), ('6744','10316','{$MYSQL.DBNAME.MATCHES}','.+','Filter of discoverable databases.','0','0'), ('6745','10316','{$MYSQL.DBNAME.NOT_MATCHES}','information_schema','Filter to exclude discovered databases.','0','0'), ('6746','10320','{$MYSQL.DBNAME.MATCHES}','.+','Filter of discoverable databases.','0','0'), ('6747','10320','{$MYSQL.DBNAME.NOT_MATCHES}','information_schema','Filter to exclude discovered databases.','0','0'), ('6748','10317','{$MYSQL.DBNAME.MATCHES}','.+','Filter of discoverable databases.','0','0'), ('6749','10317','{$MYSQL.DBNAME.NOT_MATCHES}','information_schema','Filter to exclude discovered databases.','0','0'), ('6750','10328','{$ORACLE.HOST}','','The hostname or IP address of the Oracle DB instance.','0','0'), ('6751','10076','{$VFS.FS.FSNAME.MATCHES}','.+','Used for filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('6752','10076','{$VFS.FS.FSNAME.NOT_MATCHES}','^(/dev|/sys|/run|/proc|.+/shm$)','Used for filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('6753','10076','{$VFS.FS.FSTYPE.MATCHES}','^(btrfs|ext2|ext3|ext4|reiser|xfs|ffs|ufs|jfs|jfs2|vxfs|hfs|apfs|refs|ntfs|fat32|zfs)$','Used for filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('6754','10076','{$VFS.FS.FSTYPE.NOT_MATCHES}',E'^\\s$','Used for filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('6755','10076','{$VFS.FS.INODE.PFREE.MIN.CRIT}','10','The critical threshold of the filesystem metadata utilization.','0','0'), ('6756','10076','{$VFS.FS.INODE.PFREE.MIN.WARN}','20','The warning threshold of the filesystem metadata utilization.','0','0'), ('6757','10076','{$VFS.FS.PUSED.MAX.CRIT}','90','The critical threshold of the filesystem utilization.','0','0'), ('6758','10076','{$VFS.FS.PUSED.MAX.WARN}','80','The warning threshold of the filesystem utilization.','0','0'), ('6759','10075','{$VFS.FS.FSNAME.MATCHES}','.+','Used for filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('6760','10075','{$VFS.FS.FSNAME.NOT_MATCHES}','^(/dev|/sys|/run|/proc|.+/shm$)','Used for filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('6761','10075','{$VFS.FS.FSTYPE.MATCHES}','^(btrfs|ext2|ext3|ext4|reiser|xfs|ffs|ufs|jfs|jfs2|vxfs|hfs|apfs|refs|ntfs|fat32|zfs)$','Used for filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('6762','10075','{$VFS.FS.FSTYPE.NOT_MATCHES}',E'^\\s$','Used for filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('6763','10075','{$VFS.FS.INODE.PFREE.MIN.CRIT}','10','The critical threshold of the filesystem metadata utilization.','0','0'), ('6764','10075','{$VFS.FS.INODE.PFREE.MIN.WARN}','20','The warning threshold of the filesystem metadata utilization.','0','0'), ('6765','10075','{$VFS.FS.PUSED.MAX.CRIT}','90','The critical threshold of the filesystem utilization.','0','0'), ('6766','10075','{$VFS.FS.PUSED.MAX.WARN}','80','The warning threshold of the filesystem utilization.','0','0'), ('6767','10077','{$VFS.FS.FSNAME.MATCHES}','.+','Used for filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('6768','10077','{$VFS.FS.FSNAME.NOT_MATCHES}','^(/dev|/sys|/run|/proc|.+/shm$)','Used for filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('6769','10077','{$VFS.FS.FSTYPE.MATCHES}','^(btrfs|ext2|ext3|ext4|reiser|xfs|ffs|ufs|jfs|jfs2|vxfs|hfs|apfs|refs|ntfs|fat32|zfs)$','Used for filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('6770','10077','{$VFS.FS.FSTYPE.NOT_MATCHES}',E'^\\s$','Used for filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('6771','10077','{$VFS.FS.INODE.PFREE.MIN.CRIT}','10','The critical threshold of the filesystem metadata utilization.','0','0'), ('6772','10077','{$VFS.FS.INODE.PFREE.MIN.WARN}','20','The warning threshold of the filesystem metadata utilization.','0','0'), ('6773','10077','{$VFS.FS.PUSED.MAX.CRIT}','90','The critical threshold of the filesystem utilization.','0','0'), ('6774','10077','{$VFS.FS.PUSED.MAX.WARN}','80','The warning threshold of the filesystem utilization.','0','0'), ('6775','10285','{$NODE_EXPORTER_HOST}','','The hostname or IP address of the node_exporter host.','0','0'), ('6776','10248','{$VFS.FS.FSDEVICE.MATCHES}','.+','Used in filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('6777','10248','{$VFS.FS.FSDEVICE.NOT_MATCHES}','.*(tmpfs|shm)$','Used in filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('6778','10079','{$VFS.FS.FSNAME.MATCHES}','.+','Used for filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('6779','10079','{$VFS.FS.FSNAME.NOT_MATCHES}','^(/dev|/sys|/run|/proc|.+/shm$)','Used for filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('6780','10079','{$VFS.FS.FSTYPE.MATCHES}','^(btrfs|ext2|ext3|ext4|reiser|xfs|ffs|ufs|jfs|jfs2|vxfs|hfs|apfs|refs|ntfs|fat32|zfs)$','Used for filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('6781','10079','{$VFS.FS.FSTYPE.NOT_MATCHES}',E'^\\s$','Used for filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('6782','10079','{$VFS.FS.INODE.PFREE.MIN.CRIT}','10','The critical threshold of the filesystem metadata utilization.','0','0'), ('6783','10079','{$VFS.FS.INODE.PFREE.MIN.WARN}','20','The warning threshold of the filesystem metadata utilization.','0','0'), ('6784','10079','{$VFS.FS.PUSED.MAX.CRIT}','90','The critical threshold of the filesystem utilization.','0','0'), ('6785','10079','{$VFS.FS.PUSED.MAX.WARN}','80','The warning threshold of the filesystem utilization.','0','0'), ('6786','10074','{$VFS.FS.FSNAME.MATCHES}','.+','Used for filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('6787','10074','{$VFS.FS.FSNAME.NOT_MATCHES}','^(/dev|/sys|/run|/proc|.+/shm$)','Used for filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('6788','10074','{$VFS.FS.FSTYPE.MATCHES}','^(btrfs|ext2|ext3|ext4|reiser|xfs|ffs|ufs|jfs|jfs2|vxfs|hfs|apfs|refs|ntfs|fat32|zfs)$','Used for filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('6789','10074','{$VFS.FS.FSTYPE.NOT_MATCHES}',E'^\\s$','Used for filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('6790','10074','{$VFS.FS.INODE.PFREE.MIN.CRIT}','10','The critical threshold of the filesystem metadata utilization.','0','0'), ('6791','10074','{$VFS.FS.INODE.PFREE.MIN.WARN}','20','The warning threshold of the filesystem metadata utilization.','0','0'), ('6792','10074','{$VFS.FS.PUSED.MAX.CRIT}','90','The critical threshold of the filesystem utilization.','0','0'), ('6793','10074','{$VFS.FS.PUSED.MAX.WARN}','80','The warning threshold of the filesystem utilization.','0','0'), ('6794','10078','{$VFS.FS.FSNAME.MATCHES}','.+','Used for filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('6795','10078','{$VFS.FS.FSNAME.NOT_MATCHES}','^(/dev|/sys|/run|/proc|.+/shm$)','Used for filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('6796','10078','{$VFS.FS.FSTYPE.MATCHES}','^(btrfs|ext2|ext3|ext4|reiser|xfs|ffs|ufs|jfs|jfs2|vxfs|hfs|apfs|refs|ntfs|fat32|zfs)$','Used for filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('6797','10078','{$VFS.FS.FSTYPE.NOT_MATCHES}',E'^\\s$','Used for filesystem discovery. Can be overridden on the host or linked template level.','0','0'), ('6798','10078','{$VFS.FS.INODE.PFREE.MIN.CRIT}','10','The critical threshold of the filesystem metadata utilization.','0','0'), ('6799','10078','{$VFS.FS.INODE.PFREE.MIN.WARN}','20','The warning threshold of the filesystem metadata utilization.','0','0'), ('6800','10078','{$VFS.FS.PUSED.MAX.CRIT}','90','The critical threshold of the filesystem utilization.','0','0'), ('6801','10078','{$VFS.FS.PUSED.MAX.WARN}','80','The warning threshold of the filesystem utilization.','0','0'), ('6802','10524','{$HPE.MSA.API.HOST}','','The hostname or IP address of the API host.','0','0'), ('6803','10525','{$HPE.MSA.API.HOST}','','The hostname or IP address of the API host.','0','0'), ('6804','10526','{$HPE.PRIMERA.API.HOST}','','The hostname or IP address of the API host.','0','0'), ('6805','10534','{$HPE.SYNERGY.API.HOST}','','The hostname or IP address of the API host.','0','0'), ('6806','10336','{$AMI.HOST}','','The hostname or IP address of the Asterisk Manager API host.','0','0'), ('6807','10628','{$WEBSITE.BROWSER}','chrome','Browser to be used for data collection.','0','0'), ('6808','10628','{$WEBSITE.DOMAIN}','www.example.com','The domain name.','0','0'), ('6809','10628','{$WEBSITE.GET.DATA.INTERVAL}','0s;m/15','Update interval for get raw data item.','0','0'), ('6810','10628','{$WEBSITE.NAVIGATION.LOAD.MAX.WARN}','5','The maximum browser response time expressed in seconds for a trigger expression.','0','0'), ('6811','10628','{$WEBSITE.PATH}','','The path to resource.','0','0'), ('6812','10628','{$WEBSITE.RESOURCE.LOAD.MAX.WARN}','5','The maximum browser response time expressed in seconds for a trigger expression.','0','0'), ('6813','10628','{$WEBSITE.SCHEME}','https','The request scheme, which may be either HTTP or HTTPS.','0','0'), ('6814','10628','{$WEBSITE.SCREEN.HEIGHT}','1080','Screen size height in pixels, used for screenshot.','0','0'), ('6815','10628','{$WEBSITE.SCREEN.WIDTH}','1920','Screen size width in pixels, used for screenshot.','0','0'), ('6816','10226','{$NET.IF.IFALIAS.MATCHES}','.*','','0','0'), ('6817','10226','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('6818','10236','{$NET.IF.IFALIAS.MATCHES}','.*','','0','0'), ('6819','10236','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('6820','10237','{$NET.IF.IFALIAS.MATCHES}','.*','','0','0'), ('6821','10237','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('6822','10629','{$JIRA_DC.DB.CONNECTION.USAGE.WARN}','80','Warning threshold for database connections usage (%).','0','0'), ('6823','10629','{$JIRA_DC.INDEXING.LATENCY.WARN}','5','Warning threshold for indexing operation latency (in seconds).','0','0'), ('6824','10629','{$JIRA_DC.ISSUE.LATENCY.WARN}','5','Warning threshold for issue operation latency (in seconds).','0','0'), ('6825','10629','{$JIRA_DC.LICENSE.USER.CAPACITY.WARN}','80','User capacity warning threshold (%).','0','0'), ('6826','10629','{$JIRA_DC.LLD.FILTER.MATCHES.HOMEFOLDERS}','local|share','Used for storage metric discovery.','0','0'), ('6827','10629','{$JIRA_DC.LLD.FILTER.MATCHES.INDEXING}','.*','Used for indexing metric discovery.','0','0'), ('6828','10629','{$JIRA_DC.LLD.FILTER.MATCHES.ISSUE}','.*','Used for issue discovery.','0','0'), ('6829','10629','{$JIRA_DC.LLD.FILTER.MATCHES.LICENSE}','.*','Used for license discovery.','0','0'), ('6830','10629','{$JIRA_DC.LLD.FILTER.MATCHES.MAIL}','.*','Used for mail server connection metric discovery.','0','0'), ('6831','10629','{$JIRA_DC.LLD.FILTER.NOT.MATCHES.HOMEFOLDERS}','NO MATCH','Used for storage metric discovery.','0','0'), ('6832','10629','{$JIRA_DC.LLD.FILTER.NOT.MATCHES.INDEXING}','NO MATCH','Used for indexing metric discovery.','0','0'), ('6833','10629','{$JIRA_DC.LLD.FILTER.NOT.MATCHES.ISSUE}','NO MATCH','Used for issue discovery.','0','0'), ('6834','10629','{$JIRA_DC.LLD.FILTER.NOT.MATCHES.LICENSE}','NO MATCH','Used for license discovery.','0','0'), ('6835','10629','{$JIRA_DC.LLD.FILTER.NOT.MATCHES.MAIL}','NO MATCH','Used for mail server connection metric discovery.','0','0'), ('6836','10629','{$JIRA_DC.STORAGE.LATENCY.WARN}','5','Warning threshold for storage write operation latency (in seconds).','0','0'), ('6837','10629','{$JMX.PASSWORD}','','Password for JMX.','1','0'), ('6838','10629','{$JMX.USER}','','User for JMX.','0','0'), ('6839','10173','{$VMWARE.DATASTORE.SPACE.CRIT}','10','The critical threshold of the datastore free space.','0','0'), ('6840','10173','{$VMWARE.DATASTORE.SPACE.WARN}','20','The warning threshold of the datastore free space.','0','0'), ('6841','10175','{$VMWARE.HV.DATASTORE.SPACE.CRIT}','10','The critical threshold of the datastore free space.','0','0'), ('6842','10175','{$VMWARE.HV.DATASTORE.SPACE.WARN}','20','The warning threshold of the datastore free space.','0','0'), ('6843','10366','{$VMWARE.DATASTORE.SPACE.CRIT}','10','The critical threshold of the datastore free space.','0','0'), ('6844','10366','{$VMWARE.DATASTORE.SPACE.WARN}','20','The warning threshold of the datastore free space.','0','0'), ('6845','10047','{$ZABBIX.SERVER.UTIL.MAX}','75','Default maximum threshold for percentage utilization triggers (use macro context for specification).','0','0'), ('6846','10047','{$ZABBIX.SERVER.UTIL.MAX:"value cache"}','95','Maximum threshold for the value cache utilization trigger.','0','0'), ('6847','10047','{$ZABBIX.SERVER.UTIL.MIN}','65','Default minimum threshold for percentage utilization triggers (use macro context for specification).','0','0'), ('6848','10261','{$ZABBIX.SERVER.UTIL.MAX}','75','Default maximum threshold for percentage utilization triggers (use macro context for specification).','0','0'), ('6849','10261','{$ZABBIX.SERVER.UTIL.MAX:"value cache"}','95','Maximum threshold for value cache utilization triggers.','0','0'), ('6850','10261','{$ZABBIX.SERVER.UTIL.MIN}','65','Default minimum threshold for percentage utilization triggers (use macro context for specification).','0','0'), ('6851','10531','{$AZURE.SCALESET.LOCATION.MATCHES}','.*','This macro is used in virtual machine scale sets discovery rule.','0','0'), ('6852','10531','{$AZURE.SCALESET.LOCATION.NOT.MATCHES}','CHANGE_IF_NEEDED','This macro is used in virtual machine scale sets discovery rule.','0','0'), ('6853','10531','{$AZURE.SCALESET.NAME.MATCHES}','.*','This macro is used in virtual machine scale sets discovery rule.','0','0'), ('6854','10531','{$AZURE.SCALESET.NAME.NOT.MATCHES}','CHANGE_IF_NEEDED','This macro is used in virtual machine scale sets discovery rule.','0','0'), ('6855','10630','{$AZURE.APP.ID}','','The App ID of Microsoft Azure.','0','0'), ('6856','10630','{$AZURE.DATA.TIMEOUT}','15s','API response timeout.','0','0'), ('6857','10630','{$AZURE.PASSWORD}','','Microsoft Azure password.','1','0'), ('6858','10630','{$AZURE.PROXY}','','Sets the HTTP proxy value. If this macro is empty, then no proxy is used.','0','0'), ('6859','10630','{$AZURE.RESOURCE.ID}','','Microsoft Azure virtual machine ID.','0','0'), ('6860','10630','{$AZURE.SCALESET.CPU.UTIL.CRIT}','90','The critical threshold of CPU utilization, expressed in %.','0','0'), ('6861','10630','{$AZURE.SCALESET.VM.COUNT.CRIT}','100','The critical amount of virtual machines in the scale set.','0','0'), ('6862','10630','{$AZURE.SUBSCRIPTION.ID}','','Microsoft Azure subscription ID.','0','0'), ('6863','10630','{$AZURE.TENANT.ID}','','Microsoft Azure tenant ID.','0','0'), ('6864','10631','{$AZURE.RESOURCE.ID}','{#ID}','','0','0'), ('6865','10617','{$OCI.API.COMPARTMENT.AUTONOMOUS.DB}','','Compartment OCIDs for autonomous databases. Can be a single value or a comma separated list of values.','0','0'), ('6866','10617','{$OCI.API.COMPARTMENT.COMPUTE}','','Compartment OCIDs for compute instances. Can be a single value or a comma separated list of values.','0','0'), ('6867','10617','{$OCI.API.COMPARTMENT.OBJECT.STORAGE}','','Compartment OCIDs for object storage buckets. Can be a single value or a comma separated list of values.','0','0'), ('6868','10617','{$OCI.API.COMPARTMENT.VCN}','','Compartment OCIDs for virtual cloud networks. Can be a single value or a comma separated list of values.','0','0'), ('6869','10617','{$OCI.API.COMPARTMENT.VOLUME.BLOCK}','','Compartment OCIDs for block volumes. Can be a single value or a comma separated list of values.','0','0'), ('6870','10617','{$OCI.API.COMPARTMENT.VOLUME.BOOT}','','Compartment OCIDs for boot volumes. Can be a single value or a comma separated list of values.','0','0'), ('6871','10621','{$OCI.VOLUME.BLOCK.COMPARTMENT.ID}','{#COMPARTMENT}','Block volume compartment ID.','0','0'), ('6872','10622','{$OCI.VOLUME.BOOT.COMPARTMENT.ID}','{#COMPARTMENT}','Boot volume compartment ID.','0','0'), ('6873','10623','{$OCI.COMPUTE.COMPARTMENT.ID}','{#COMPARTMENT}','Compartment ID of OCI compute instance.','0','0'), ('6874','10624','{$OCI.AUTONOMOUS.DB.COMPARTMENT.ID}','{#COMPARTMENT}','Autonomous database compartment ID.','0','0'), ('6875','10625','{$OCI.OBJECT.STORAGE.COMPARTMENT.ID}','{#COMPARTMENT}','Object storage bucket compartment ID.','0','0'), ('6876','10626','{$OCI.VCN.COMPARTMENT.ID}','{#COMPARTMENT}','Compartment ID of OCI VCN (virtual cloud network).','0','0'), ('6877','10001','{$SYSTEM.FUZZYTIME.MIN}','10s','The lower threshold for difference of system time. Used in recovery expression to avoid trigger flapping.','0','0'), ('6878','10285','{$SYSTEM.FUZZYTIME.MIN}','10s','The lower threshold for difference of system time. Used in recovery expression to avoid trigger flapping.','0','0'), ('6879','10081','{$SYSTEM.FUZZYTIME.MIN}','10s','The lower threshold for difference of system time. Used in recovery expression to avoid trigger flapping.','0','0'), ('6880','10632','{$AWS.ACCESS.KEY.ID}','','Access key ID.','0','0'), ('6881','10632','{$AWS.AUTH_TYPE}','access_key','Authorization method. Possible values: `access_key`, `assume_role`, `role_base`.','0','0'), ('6882','10632','{$AWS.DATA.TIMEOUT}','60s','API response timeout.','0','0'), ('6883','10632','{$AWS.LAMBDA.ARN}','','The Amazon Resource Names (ARN) of the Lambda function.','0','0'), ('6884','10632','{$AWS.LAMBDA.LLD.FILTER.ALARM_NAME.MATCHES}','.*','Filter of discoverable alarms by name.','0','0'), ('6885','10632','{$AWS.LAMBDA.LLD.FILTER.ALARM_NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered alarms by name.','0','0'), ('6886','10632','{$AWS.LAMBDA.LLD.FILTER.ALARM_SERVICE_NAMESPACE.MATCHES}','.*','Filter of discoverable alarms by namespace.','0','0'), ('6887','10632','{$AWS.LAMBDA.LLD.FILTER.ALARM_SERVICE_NAMESPACE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered alarms by namespace.','0','0'), ('6888','10632','{$AWS.PROXY}','','Sets the HTTP proxy value. If this macro is empty, no proxy is used.','0','0'), ('6889','10632','{$AWS.REGION}','us-west-1','AWS Lambda function region code.','0','0'), ('6890','10632','{$AWS.SECRET.ACCESS.KEY}','','Secret access key.','1','0'), ('6891','10535','{$AWS.LAMBDA.LLD.FILTER.NAME.MATCHES}','.*','Filter of discoverable Lambda functions by name.','0','0'), ('6892','10535','{$AWS.LAMBDA.LLD.FILTER.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered Lambda functions by name.','0','0'), ('6893','10535','{$AWS.LAMBDA.LLD.FILTER.REGION.MATCHES}','.*','Filter of discoverable Lambda functions by region.','0','0'), ('6894','10535','{$AWS.LAMBDA.LLD.FILTER.REGION.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered Lambda functions by region.','0','0'), ('6895','10535','{$AWS.LAMBDA.LLD.FILTER.RUNTIME.MATCHES}','.*','Filter of discoverable Lambda functions by Runtime.','0','0'), ('6896','10535','{$AWS.LAMBDA.LLD.FILTER.RUNTIME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered Lambda functions by Runtime.','0','0'), ('6897','10633','{$AWS.LAMBDA.ARN}','{#AWS.LAMBDA.ARN}','The Amazon Resource Names (ARN) of the Lambda function.','0','0'), ('6898','10633','{$AWS.LAMBDA.NAME}','{#AWS.LAMBDA.NAME}','Lambda function name.','0','0'), ('6899','10633','{$AWS.REGION}','{#AWS.LAMBDA.REGION}','Lambda function region.','0','0'), ('6900','10535','{$AWS.DESCRIBE.REGION}','us-east-1','Region used in POST request `DescribeRegions`.','0','0'), ('6901','10535','{$AWS.REQUEST.REGION}','us-east-1','Region used in GET request `ListBuckets`.','0','0'), ('6902','10634','{$GITHUB.API.TOKEN}','','Set the access token here.','1','0'), ('6903','10634','{$GITHUB.API.URL}','https://api.github.com/','Set the API URL here.','0','0'), ('6904','10634','{$GITHUB.API_VERSION}','2022-11-28','The API version that is used in headers for HTTP requests.','0','0'), ('6905','10634','{$GITHUB.BRANCH.NAME.MATCHES}','.+','The repository branch name regex filter to use in branch-related metric discovery - for including.','0','0'), ('6906','10634','{$GITHUB.BRANCH.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','The repository branch name regex filter to use in branch-related metric discovery - for excluding.','0','0'), ('6907','10634','{$GITHUB.HTTP_PROXY}','','The HTTP proxy for script items (set if needed). If the macro is empty, then no proxy is used.','0','0'), ('6908','10634','{$GITHUB.INTERVAL}','1m','The update interval for the script items that retrieve data from the API. Can be used with context if needed (check the context values in relevant items).','0','0'), ('6909','10634','{$GITHUB.INTERVAL:"get_(branches|workflows)"}','1h','The update interval for the script items that retrieve the branches and workflows. Used only for related metric discovery.','0','0'), ('6910','10634','{$GITHUB.INTERVAL:"get_repo"}','15m','The update interval for the script item that retrieves the repository information.','0','0'), ('6911','10634','{$GITHUB.INTERVAL:"get_runners"}','15m','The update interval for the script item that retrieves the information about self-hosted runners.','0','0'), ('6912','10634','{$GITHUB.INTERVAL:regex:"get_(tags|releases|issues)_count"}','1h','The update interval for the script items that retrieve the number of tags, releases, issues, and pull requests (total, open, closed).','0','0'), ('6913','10634','{$GITHUB.INTERVAL:regex:"get_commits_count:.+"}','1h','The update interval for the script items that retrieve the commits count in discovered branches.','0','0'), ('6914','10634','{$GITHUB.INTERVAL:regex:"get_last_run:.+"}','15m','The update interval for the script items that retrieve the information about the last workflow run results.','0','0'), ('6915','10634','{$GITHUB.REPO.NAME}','','Set the repository name here.','0','0'), ('6916','10634','{$GITHUB.REPO.OWNER}','','Set the repository owner here.','0','0'), ('6917','10634','{$GITHUB.REQUESTS.UTIL.HIGH}','90','The threshold percentage of utilized API requests in a High trigger expression.','0','0'), ('6918','10634','{$GITHUB.REQUESTS.UTIL.WARN}','80','The threshold percentage of utilized API requests in a Warning trigger expression.','0','0'), ('6919','10634','{$GITHUB.RESULTS_PER_PAGE}','100','The number of results to fetch per page. Can be used with context and adjusted if needed (check the context values in script parameters of relevant items).','0','0'), ('6920','10634','{$GITHUB.RUNNER.NAME.MATCHES}','.+','The repository self-hosted runner name regex filter to use in discovering metrics related to the self-hosted runner - for including.','0','0'), ('6921','10634','{$GITHUB.RUNNER.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','The repository self-hosted runner name regex filter to use in discovering metrics related to the self-hosted runner - for excluding.','0','0'), ('6922','10634','{$GITHUB.RUNNER.OS.MATCHES}','.+','The repository self-hosted runner OS regex filter to use in discovering metrics related to the self-hosted runner - for including.','0','0'), ('6923','10634','{$GITHUB.RUNNER.OS.NOT_MATCHES}','CHANGE_IF_NEEDED','The repository self-hosted runner OS regex filter to use in discovering metrics related to the self-hosted runner - for excluding.','0','0'), ('6924','10634','{$GITHUB.TIMEOUT}','15s','The timeout threshold for the script items that retrieve data from the API. Can be used with context if needed (check the context values in relevant items).','0','0'), ('6925','10634','{$GITHUB.USER_AGENT}','Zabbix/7.0','The user agent that is used in headers for HTTP requests.','0','0'), ('6926','10634','{$GITHUB.WORKFLOW.NAME.MATCHES}','.+','The repository workflow name regex filter to use in workflow-related metric discovery - for including.','0','0'), ('6927','10634','{$GITHUB.WORKFLOW.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','The repository workflow name regex filter to use in workflow-related metric discovery - for excluding.','0','0'), ('6928','10634','{$GITHUB.WORKFLOW.STATE.MATCHES}','active','The repository workflow state regex filter to use in workflow-related metric discovery - for including.','0','0'), ('6929','10634','{$GITHUB.WORKFLOW.STATE.NOT_MATCHES}','CHANGE_IF_NEEDED','The repository workflow state regex filter to use in workflow-related metric discovery - for excluding.','0','0'), ('6930','10634','{$GITHUB.WORKFLOW.STATUS.IN_PROGRESS.THRESH}','24h','The time threshold used in the trigger of a workflow run that has been in the queue for too long. Can be used with context if needed.','0','0'), ('6931','10634','{$GITHUB.WORKFLOW.STATUS.QUEUED.THRESH}','1h','The time threshold used in the trigger of a workflow run that has been in the queue for too long. Can be used with context if needed.','0','0'), ('6932','10635','{$MS365.API.TIMEOUT}','15s','API response timeout.','0','0'), ('6933','10635','{$MS365.APP.ID}','','Microsoft application ID.','0','0'), ('6934','10635','{$MS365.HTTP.PROXY}','','Sets the HTTP proxy value. If this macro is empty, then no proxy is used.','0','0'), ('6935','10635','{$MS365.PASSWORD}','','The secret for the registered Microsoft application.','1','0'), ('6936','10635','{$MS365.SERVICE.NAME.MATCHES}','.*','This macro is used in the Microsoft cloud service discovery rule.','0','0'), ('6937','10635','{$MS365.SERVICE.NAME.NOT.MATCHES}','CHANGE_IF_NEEDED','This macro is used in the Microsoft cloud service discovery rule.','0','0'), ('6938','10635','{$MS365.TENANT.ID}','','Microsoft tenant ID.','0','0'), ('6939','10173','{$VMWARE.PROXY}','','Sets the HTTP proxy for script items. If this parameter is empty, then no proxy is used.','0','0'), ('6940','10173','{$VMWARE.VM.POWERSTATE}','poweredOn|poweredOff|suspended','Possibility to filter out VMs by power state.','0','0'), ('6941','10174','{$VMWARE.VM.FS.PFREE.MIN.CRIT}','10','VMware guest free space threshold for the critical trigger.','0','0'), ('6942','10174','{$VMWARE.VM.FS.PFREE.MIN.WARN}','20','VMware guest free space threshold for the warning trigger.','0','0'), ('6943','10174','{$VMWARE.VM.FS.TRIGGER.USED}','0','VMware guest used free space trigger. Set to "1"/"0" to enable or disable the trigger.','0','0'), ('6944','10366','{$VMWARE.PROXY}','','Sets the HTTP proxy for script items. If this parameter is empty, then no proxy is used.','0','0'), ('6945','10366','{$VMWARE.VM.POWERSTATE}','poweredOn|poweredOff|suspended','Possibility to filter out VMs by power state.','0','0'), ('6946','10047','{$PROXY.GROUP.AVAIL.PERCENT.MIN}','75','Minimum threshold for the proxy group availability percentage triggers.','0','0'), ('6947','10047','{$PROXY.GROUP.DISCOVERY.NAME.MATCHES}','.*','Filter to include discovered proxy groups by their name.','0','0'), ('6948','10047','{$PROXY.GROUP.DISCOVERY.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered proxy groups by their name.','0','0'), ('6949','10582','{$AWS.ASSUME.ROLE.ARN}','','ARN assume role; add when using the `assume_role` authorization method.','0','0'), ('6950','10582','{$AWS.STS.REGION}','us-east-1','Region used in assume role request.','0','0'), ('6951','10527','{$AWS.ASSUME.ROLE.ARN}','','ARN assume role; add when using the `assume_role` authorization method.','0','0'), ('6952','10527','{$AWS.STS.REGION}','us-east-1','Region used in assume role request.','0','0'), ('6953','10583','{$AWS.ASSUME.ROLE.ARN}','','ARN assume role; add when using the `assume_role` authorization method.','0','0'), ('6954','10583','{$AWS.STS.REGION}','us-east-1','Region used in assume role request.','0','0'), ('6955','10584','{$AWS.ASSUME.ROLE.ARN}','','ARN assume role; add when using the `assume_role` authorization method.','0','0'), ('6956','10584','{$AWS.STS.REGION}','us-east-1','Region used in assume role request.','0','0'), ('6957','10607','{$AWS.ASSUME.ROLE.ARN}','','ARN assume role; add when using the `assume_role` authorization method.','0','0'), ('6958','10607','{$AWS.STS.REGION}','us-east-1','Region used in assume role request.','0','0'), ('6959','10627','{$AWS.ASSUME.ROLE.ARN}','','ARN assume role; add when using the `assume_role` authorization method.','0','0'), ('6960','10627','{$AWS.STS.REGION}','us-east-1','Region used in assume role request.','0','0'), ('6961','10632','{$AWS.ASSUME.ROLE.ARN}','','ARN assume role; add when using the `assume_role` authorization method.','0','0'), ('6962','10632','{$AWS.STS.REGION}','us-east-1','Region used in assume role request.','0','0'), ('6963','10535','{$AWS.ASSUME.ROLE.ARN}','','ARN assume role; add when using the `assume_role` authorization method.','0','0'), ('6964','10535','{$AWS.STS.REGION}','us-east-1','Region used in assume role request.','0','0'), ('6965','10529','{$AWS.ASSUME.ROLE.ARN}','','ARN assume role; add when using the `assume_role` authorization method.','0','0'), ('6966','10529','{$AWS.STS.REGION}','us-east-1','Region used in assume role request.','0','0'), ('6967','10530','{$AWS.ASSUME.ROLE.ARN}','','ARN assume role; add when using the `assume_role` authorization method.','0','0'), ('6968','10530','{$AWS.REQUEST.REGION}','us-east-1','Region used in GET request `ListBuckets`.','0','0'), ('6969','10530','{$AWS.STS.REGION}','us-east-1','Region used in assume role request.','0','0'), ('6970','10329','{$PG.CONNSTRING.AGENT2}','tcp://localhost:5432','URI or named session of the PostgreSQL instance.','0','0'), ('6971','10589','{$PG.CONNSTRING.ODBC}','Servername=localhost;Port=5432;Driver=/usr/lib64/psqlodbcw.so','Connection string for the PostgreSQL instance.','0','0'), ('6972','10636','{$CPU.UTIL.CRIT}','90','The critical threshold of CPU utilization expressed in %.','0','0'), ('6981','10636','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('6982','10636','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('6983','10636','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('6984','10637','{$APACHE.PROCESS.NAME.PARAMETER}','','The process name of the Apache web server used in the item key `proc.get`. It could be specified if the correct process name is known.','0','0'), ('6985','10637','{$APACHE.PROCESS_NAME}','(httpd|apache2)','The process name filter for the Apache process discovery.','0','0'), ('6986','10637','{$APACHE.RESPONSE_TIME.MAX.WARN}','10','The maximum Apache response time expressed in seconds for a trigger expression.','0','0'), ('6987','10637','{$APACHE.STATUS.HOST}','127.0.0.1','The hostname or IP address of the Apache status page.','0','0'), ('6988','10637','{$APACHE.STATUS.PATH}','server-status?auto','The URL path.','0','0'), ('6989','10637','{$APACHE.STATUS.PORT}','80','The port of the Apache status page.','0','0'), ('6990','10637','{$APACHE.STATUS.SCHEME}','http','The request scheme, which may be either HTTP or HTTPS.','0','0'), ('6991','10638','{$CERT.EXPIRY.WARN}','7','Number of days until the certificate expires.','0','0'), ('6992','10638','{$CERT.WEBSITE.HOSTNAME}','','The website DNS name for the connection.','0','0'), ('6993','10638','{$CERT.WEBSITE.IP}','','The website IP address for the connection.','0','0'), ('6994','10638','{$CERT.WEBSITE.PORT}','443','The TLS/SSL port number of the website.','0','0'), ('6995','10639','{$NGINX.DROP_RATE.MAX.WARN}','1','The critical rate of the dropped connections for a trigger expression.','0','0'), ('6996','10639','{$NGINX.PROCESS.NAME.PARAMETER}','','The process name of the Nginx server used in the item key `proc.get`. It could be specified if the correct process name is known.','0','0'), ('6997','10639','{$NGINX.PROCESS_NAME}','nginx','The process name filter for the Nginx process discovery.','0','0'), ('6998','10639','{$NGINX.RESPONSE_TIME.MAX.WARN}','10','The maximum response time of Nginx expressed in seconds for a trigger expression.','0','0'), ('6999','10639','{$NGINX.STUB_STATUS.HOST}','localhost','The hostname or IP address of the Nginx host or Nginx container of `astub_status`.','0','0'), ('7000','10639','{$NGINX.STUB_STATUS.PATH}','basic_status','The path of the `Nginx stub_status` page.','0','0'), ('7001','10639','{$NGINX.STUB_STATUS.PORT}','80','The port of the `Nginx stub_status` host or container.','0','0'), ('7002','10640','{$NUTANIX.ALERT.DISCOVERY.NAME.MATCHES}','.*','Filter of discoverable Nutanix alerts by name.','0','0'), ('7003','10640','{$NUTANIX.ALERT.DISCOVERY.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered Nutanix alerts by name.','0','0'), ('7004','10640','{$NUTANIX.ALERT.DISCOVERY.SEVERITY.MATCHES}','.*','Filter to exclude discovered Nutanix alerts by severity. Set all possible severities for filtering in the range 0-2. "0" - Info, "1" - Warning, "2" - Critical.','0','0'), ('7005','10640','{$NUTANIX.ALERT.DISCOVERY.STATE.MATCHES}','.*','Filter to exclude discovered Nutanix alerts by state. Set "1" for filtering only problem alerts or "0" for resolved ones.','0','0'), ('7006','10640','{$NUTANIX.CLUSTER.UUID}','','UUID of the cluster.','0','0'), ('7007','10640','{$NUTANIX.PASSWORD}','','Nutanix API password.','1','0'), ('7008','10640','{$NUTANIX.PRISM.ELEMENT.IP}','','Set the Nutanix API IP here.','0','0'), ('7009','10640','{$NUTANIX.PRISM.ELEMENT.PORT}','9440','Set the Nutanix API port here.','0','0'), ('7010','10640','{$NUTANIX.PROXY}','','Sets the HTTP proxy value. If this macro is empty, then no proxy is used.','0','0'), ('7011','10640','{$NUTANIX.TIMEOUT}','10s','API response timeout.','0','0'), ('7012','10640','{$NUTANIX.USER}','','Nutanix API username.','0','0'), ('7013','10641','{$NUTANIX.ALERT.DISCOVERY.NAME.MATCHES}','.*','Filter of discoverable Nutanix alerts by name.','0','0'), ('7014','10641','{$NUTANIX.ALERT.DISCOVERY.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered Nutanix alerts by name.','0','0'), ('7015','10641','{$NUTANIX.ALERT.DISCOVERY.SEVERITY.MATCHES}','.*','Filter to exclude discovered Nutanix alerts by severity. Set all possible severities for filtering in the range 0-2. "0" - Info, "1" - Warning, "2" - Critical.','0','0'), ('7016','10641','{$NUTANIX.ALERT.DISCOVERY.STATE.MATCHES}','.*','Filter to exclude discovered Nutanix alerts by state. Set "1" for filtering only problem alerts or "0" for resolved ones.','0','0'), ('7017','10641','{$NUTANIX.HOST.UUID}','','UUID of the host.','0','0'), ('7018','10641','{$NUTANIX.PASSWORD}','','Nutanix API password.','1','0'), ('7019','10641','{$NUTANIX.PRISM.ELEMENT.IP}','','Set the Nutanix API IP here.','0','0'), ('7020','10641','{$NUTANIX.PRISM.ELEMENT.PORT}','9440','Set the Nutanix API port here.','0','0'), ('7021','10641','{$NUTANIX.PROXY}','','Sets the HTTP proxy value. If this macro is empty, then no proxy is used.','0','0'), ('7022','10641','{$NUTANIX.TIMEOUT}','10s','API response timeout.','0','0'), ('7023','10641','{$NUTANIX.USER}','','Nutanix API username.','0','0'), ('7024','10642','{$NUTANIX.CLUSTER.DISCOVERY.NAME.MATCHES}','.*','Filter of discoverable Nutanix clusters by name.','0','0'), ('7025','10642','{$NUTANIX.CLUSTER.DISCOVERY.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered Nutanix clusters by name.','0','0'), ('7026','10642','{$NUTANIX.HOST.DISCOVERY.NAME.MATCHES}','.*','Filter of discoverable Nutanix hosts by name.','0','0'), ('7027','10642','{$NUTANIX.HOST.DISCOVERY.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered Nutanix hosts by name.','0','0'), ('7028','10642','{$NUTANIX.PASSWORD}','','Nutanix API password.','1','0'), ('7029','10642','{$NUTANIX.PRISM.ELEMENT.IP}','','Set the Nutanix API IP here.','0','0'), ('7030','10642','{$NUTANIX.PRISM.ELEMENT.PORT}','9440','Set the Nutanix API port here.','0','0'), ('7031','10642','{$NUTANIX.PROXY}','','Sets the HTTP proxy value. If this macro is empty, then no proxy is used.','0','0'), ('7032','10642','{$NUTANIX.STORAGE.CONTAINER.DISCOVERY.NAME.MATCHES}','.*','Filter of discoverable storage containers by name.','0','0'), ('7033','10642','{$NUTANIX.STORAGE.CONTAINER.DISCOVERY.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered storage containers by name.','0','0'), ('7034','10642','{$NUTANIX.USER}','','Nutanix API username.','0','0'), ('7035','10643','{$NUTANIX.CLUSTER.UUID}','{#NUTANIX.CLUSTER.UUID}','UUID of the cluster.','0','0'), ('7036','10644','{$NUTANIX.HOST.UUID}','{#NUTANIX.HOST.UUID}','UUID of the host.','0','0'), ('7037','10645','{$PHP_FPM.HOST}','localhost','The hostname or IP address of the PHP-FPM status for a host or container.','0','0'), ('7038','10645','{$PHP_FPM.PING.PAGE}','ping','The path of the PHP-FPM ping page.','0','0'), ('7039','10645','{$PHP_FPM.PING.REPLY}','pong','The expected reply to the ping.','0','0'), ('7040','10645','{$PHP_FPM.PORT}','80','The port of the PHP-FPM status host or container.','0','0'), ('7041','10645','{$PHP_FPM.PROCESS.NAME.PARAMETER}','','The process name of the PHP-FPM used in the item key `proc.get`. It could be specified if the correct process name is known.','0','0'), ('7042','10645','{$PHP_FPM.PROCESS_NAME}','php-fpm','The process name filter for the PHP-FPM process discovery. May vary depending on your OS distribution.','0','0'), ('7043','10645','{$PHP_FPM.QUEUE.WARN.MAX}','80','The maximum percent of the PHP-FPM queue usage for a trigger expression.','0','0'), ('7044','10645','{$PHP_FPM.STATUS.PAGE}','status','The path of the PHP-FPM status page.','0','0'), ('7045','10517','{$PVE.LXC.DISK.PUSE.MAX.WARN}','90','Maximum used disk in percentage.','0','0'), ('7046','10175','{$VMWARE.HV.UUID}','','UUID of hypervisor.','0','0'), ('7047','10646','{$MYSQL.ABORTED_CONN.MAX.WARN}','3','Number of failed attempts to connect to the MySQL server for trigger expressions.','0','0'), ('7048','10646','{$MYSQL.BUFF_UTIL.MIN.WARN}','50','The minimum buffer pool utilization in percentage for trigger expressions.','0','0'), ('7049','10646','{$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN}','10','The maximum number of temporary tables created on a disk per second for trigger expressions.','0','0'), ('7050','10646','{$MYSQL.CREATED_TMP_FILES.MAX.WARN}','10','The maximum number of temporary files created on a disk per second for trigger expressions.','0','0'), ('7051','10646','{$MYSQL.CREATED_TMP_TABLES.MAX.WARN}','30','The maximum number of temporary tables created in memory per second for trigger expressions.','0','0'), ('7052','10646','{$MYSQL.DBNAME.MATCHES}','.+','Filter of discoverable databases.','0','0'), ('7053','10646','{$MYSQL.DBNAME.NOT_MATCHES}','information_schema','Filter to exclude discovered databases.','0','0'), ('7054','10646','{$MYSQL.DSN}','','System data source name such as .','0','0'), ('7055','10646','{$MYSQL.INNODB_LOG_FILES}','2','Number of physical files in the InnoDB redo log for calculating `innodb_log_file_size`.','0','0'), ('7056','10646','{$MYSQL.PASSWORD}','','MySQL user password.','0','0'), ('7057','10646','{$MYSQL.REPL_LAG.MAX.WARN}','30m','Amount of time the slave is behind the master for trigger expressions.','0','0'), ('7058','10646','{$MYSQL.SLOW_QUERIES.MAX.WARN}','3','Number of slow queries for trigger expressions.','0','0'), ('7059','10646','{$MYSQL.USER}','','MySQL user name.','0','0'), ('7060','10647','{$MYSQL.ABORTED_CONN.MAX.WARN}','3','Number of failed attempts to connect to the MySQL server for trigger expressions.','0','0'), ('7061','10647','{$MYSQL.BUFF_UTIL.MIN.WARN}','50','The minimum buffer pool utilization in percentage for trigger expressions.','0','0'), ('7062','10647','{$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN}','10','The maximum number of temporary tables created on a disk per second for trigger expressions.','0','0'), ('7063','10647','{$MYSQL.CREATED_TMP_FILES.MAX.WARN}','10','The maximum number of temporary files created on a disk per second for trigger expressions.','0','0'), ('7064','10647','{$MYSQL.CREATED_TMP_TABLES.MAX.WARN}','30','The maximum number of temporary tables created in memory per second for trigger expressions.','0','0'), ('7065','10647','{$MYSQL.DBNAME.MATCHES}','.+','Filter of discoverable databases.','0','0'), ('7066','10647','{$MYSQL.DBNAME.NOT_MATCHES}','information_schema','Filter to exclude discovered databases.','0','0'), ('7067','10647','{$MYSQL.HOST}','127.0.0.1','Hostname or IP of MySQL host or container.','0','0'), ('7068','10647','{$MYSQL.INNODB_LOG_FILES}','2','Number of physical files in the InnoDB redo log for calculating `innodb_log_file_size`.','0','0'), ('7069','10647','{$MYSQL.PORT}','3306','MySQL service port.','0','0'), ('7070','10647','{$MYSQL.REPL_LAG.MAX.WARN}','30m','Amount of time the slave is behind the master for trigger expressions.','0','0'), ('7071','10647','{$MYSQL.SLOW_QUERIES.MAX.WARN}','3','Number of slow queries for trigger expressions.','0','0'), ('7072','10648','{$PG.CONFLICTS.MAX.WARN}','0','Maximum number of recovery conflicts for trigger expression.','0','0'), ('7073','10648','{$PG.CONNSTRING.AGENT2}','tcp://localhost:5432','URI or named session of the PostgreSQL instance.','0','0'), ('7074','10648','{$PG.CONN_TOTAL_PCT.MAX.WARN}','90','Maximum percentage of current connections for trigger expression.','0','0'), ('7075','10648','{$PG.DATABASE}','postgres','Default PostgreSQL database for the connection.','0','0'), ('7076','10648','{$PG.DEADLOCKS.MAX.WARN}','0','Maximum number of detected deadlocks for trigger expression.','0','0'), ('7077','10648','{$PG.LLD.FILTER.APPLICATION}','.+','Filter of discoverable applications.','0','0'), ('7078','10648','{$PG.LLD.FILTER.DBNAME}','.+','Filter of discoverable databases.','0','0'), ('7079','10648','{$PG.PASSWORD}','','PostgreSQL user password.','0','0'), ('7080','10648','{$PG.QUERY_ETIME.MAX.WARN}','30','Execution time limit for count of slow queries.','0','0'), ('7081','10648','{$PG.SLOW_QUERIES.MAX.WARN}','5','Slow queries count threshold for a trigger.','0','0'), ('7082','10648','{$PG.USER}','zbx_monitor','PostgreSQL username.','0','0'), ('7083','10649','{$PG.CACHE_HITRATIO.MIN.WARN}','90','Minimum cache hit ratio percentage for trigger expression.','0','0'), ('7084','10649','{$PG.CHECKPOINTS_REQ.MAX.WARN}','5','Maximum required checkpoint occurrences for trigger expression.','0','0'), ('7085','10649','{$PG.CONFLICTS.MAX.WARN}','0','Maximum number of recovery conflicts for trigger expression.','0','0'), ('7086','10649','{$PG.CONN_TOTAL_PCT.MAX.WARN}','90','Maximum percentage of current connections for trigger expression.','0','0'), ('7087','10649','{$PG.DATABASE}','postgres','Default PostgreSQL database for the connection.','0','0'), ('7088','10649','{$PG.DEADLOCKS.MAX.WARN}','0','Maximum number of detected deadlocks for trigger expression.','0','0'), ('7089','10649','{$PG.FROZENXID_PCT_STOP.MIN.HIGH}','75','Minimum frozen XID before stop percentage for trigger expression.','0','0'), ('7090','10649','{$PG.HOST}','localhost','Hostname or IP of PostgreSQL host.','0','0'), ('7091','10649','{$PG.LLD.FILTER.DBNAME}','.+','Filter of discoverable databases.','0','0'), ('7092','10649','{$PG.LOCKS.MAX.WARN}','100','Maximum number of locks for trigger expression.','0','0'), ('7093','10649','{$PG.PASSWORD}','','PostgreSQL user password.','0','0'), ('7094','10649','{$PG.PING_TIME.MAX.WARN}','1s','Maximum time of connection response for trigger expression.','0','0'), ('7095','10649','{$PG.PORT}','5432','PostgreSQL service port.','0','0'), ('7096','10649','{$PG.QUERY_ETIME.MAX.WARN}','30','Execution time limit for count of slow queries.','0','0'), ('7097','10649','{$PG.REPL_LAG.MAX.WARN}','10m','Maximum replication lag time for trigger expression.','0','0'), ('7098','10649','{$PG.SLOW_QUERIES.MAX.WARN}','5','Slow queries count threshold for a trigger.','0','0'), ('7099','10649','{$PG.USER}','zbx_monitor','PostgreSQL username.','0','0'), ('7100','10650','{$JUNIPER.MX.CPU.UTIL.CRIT}','90','Threshold of CPU utilization for trigger in %. Can be used with interface name as context.','0','0'), ('7101','10650','{$JUNIPER.MX.FAN_CRIT_STATUS}','6','Threshold of status sensor for trigger. All statuses defined in valuemap `JUNIPER-MIB::jnxOperatingState`.','0','0'), ('7102','10650','{$JUNIPER.MX.ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('7103','10650','{$JUNIPER.MX.ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('7104','10650','{$JUNIPER.MX.IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('7105','10650','{$JUNIPER.MX.IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('7106','10650','{$JUNIPER.MX.IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('7107','10650','{$JUNIPER.MX.MEMORY.UTIL.MAX}','90','Threshold of memory utilization for trigger in %. Can be used with interface name as context.','0','0'), ('7108','10650','{$JUNIPER.MX.NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('7109','10650','{$JUNIPER.MX.NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignores `down(2)` administrative status','0','0'), ('7110','10650','{$JUNIPER.MX.NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('7111','10650','{$JUNIPER.MX.NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('7112','10650','{$JUNIPER.MX.NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('7113','10650','{$JUNIPER.MX.NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('7114','10650','{$JUNIPER.MX.NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('7115','10650','{$JUNIPER.MX.NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out loopbacks, nulls, docker `veth` links, and `docker0 bridge` by default.','0','0'), ('7116','10650','{$JUNIPER.MX.NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('7117','10650','{$JUNIPER.MX.NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignores `notPresent(6)`','0','0'), ('7118','10650','{$JUNIPER.MX.NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('7119','10650','{$JUNIPER.MX.NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('7120','10650','{$JUNIPER.MX.PSU_CRIT_STATUS}','6','Threshold of status sensor for trigger. All statuses defined in valuemap `JUNIPER-MIB::jnxOperatingState`.','0','0'), ('7121','10650','{$JUNIPER.MX.SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('7122','10650','{$JUNIPER.MX.TEMP_CRIT}','60','Threshold of temperature sensor for trigger. Can be used with interface name as context.','0','0'), ('7123','10650','{$JUNIPER.MX.TEMP_CRIT:"Routing Engine"}','80','Threshold of temperature sensor for trigger. Used for Routing Engine.','0','0'), ('7124','10650','{$JUNIPER.MX.TEMP_CRIT_LOW}','5','Threshold of temperature sensor for trigger. Can be used with interface name as context.','0','0'), ('7125','10650','{$JUNIPER.MX.TEMP_WARN}','50','Threshold of temperature sensor for trigger. Can be used with interface name as context.','0','0'), ('7126','10650','{$JUNIPER.MX.TEMP_WARN:"Routing Engine"}','70','Threshold of temperature sensor for trigger. Used for Routing Engine.','0','0'), ('7127','10531','{$AZURE.SQL.INST.LOCATION.MATCHES}','.*','This macro is used in Azure SQL Managed Instance discovery rule.','0','0'), ('7128','10531','{$AZURE.SQL.INST.LOCATION.NOT.MATCHES}','CHANGE_IF_NEEDED','This macro is used in Azure SQL Managed Instance discovery rule.','0','0'), ('7129','10531','{$AZURE.SQL.INST.NAME.MATCHES}','.*','This macro is used in Azure SQL Managed Instance discovery rule.','0','0'), ('7130','10531','{$AZURE.SQL.INST.NAME.NOT.MATCHES}','CHANGE_IF_NEEDED','This macro is used in Azure SQL Managed Instance discovery rule.','0','0'), ('7131','10651','{$AZURE.APP.ID}','','The App ID of Microsoft Azure.','0','0'), ('7132','10651','{$AZURE.DATA.TIMEOUT}','15s','API response timeout.','0','0'), ('7133','10651','{$AZURE.PASSWORD}','','Microsoft Azure password.','1','0'), ('7134','10651','{$AZURE.PROXY}','','Sets the HTTP proxy value. If this macro is empty, then no proxy is used.','0','0'), ('7135','10651','{$AZURE.RESOURCE.ID}','','Microsoft Azure SQL managed instance ID.','0','0'), ('7136','10651','{$AZURE.SQL.INST.CPU.CRIT}','90','CPU utilization critical threshold, expressed in %.','0','0'), ('7137','10651','{$AZURE.SQL.INST.CPU.WARN}','80','CPU utilization warning threshold, expressed in %.','0','0'), ('7138','10651','{$AZURE.SQL.INST.SPACE.CRIT}','90','Storage space critical threshold, expressed in %.','0','0'), ('7139','10651','{$AZURE.SQL.INST.SPACE.WARN}','80','Storage space warning threshold, expressed in %.','0','0'), ('7140','10651','{$AZURE.SUBSCRIPTION.ID}','','Microsoft Azure subscription ID.','0','0'), ('7141','10651','{$AZURE.TENANT.ID}','','Microsoft Azure tenant ID.','0','0'), ('7142','10652','{$AZURE.RESOURCE.ID}','{#ID}','','0','0'), ('7143','10609','{$MSSQL.QUORUM.MEMBER.DISCOVERY.NAME.MATCHES}','.*','Filter to include discovered quorum member by name.','0','0'), ('7144','10609','{$MSSQL.QUORUM.MEMBER.DISCOVERY.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered quorum member by name.','0','0'), ('7145','10327','{$MSSQL.QUORUM.MEMBER.DISCOVERY.NAME.MATCHES}','.*','Filter to include discovered quorum member by name.','0','0'), ('7146','10327','{$MSSQL.QUORUM.MEMBER.DISCOVERY.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered quorum member by name.','0','0'), ('7147','10653','{$PAN.PA440.API.URL}','','The firewall XML API endpoint in the format `://[:port]/api` (port is optional).','0','0'), ('7148','10653','{$PAN.PA440.BGP.CONTROL}','1','The BGP session triggers will fire only for peers where the context macro equals "1".','0','0'), ('7149','10653','{$PAN.PA440.BGP.PEER.GROUP.MATCHES}','.+','The BGP peer group regex filter to use in BGP peer discovery - for including.','0','0'), ('7150','10653','{$PAN.PA440.BGP.PEER.GROUP.NOT_MATCHES}','CHANGE_IF_NEEDED','The BGP peer group regex filter to use in BGP peer discovery - for excluding.','0','0'), ('7151','10653','{$PAN.PA440.BGP.PEER.NAME.MATCHES}','.+','The BGP peer name regex filter to use in BGP peer discovery - for including.','0','0'), ('7152','10653','{$PAN.PA440.BGP.PEER.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','The BGP peer name regex filter to use in BGP peer discovery - for excluding.','0','0'), ('7153','10653','{$PAN.PA440.CERT.DEVICE.EXPIRY.WARN}','7d','The time threshold until the device certificate expires; used in the device certificate expiry trigger. Can be set to an evaluation period in seconds (time suffixes can be used).','0','0'), ('7154','10653','{$PAN.PA440.CERT.EXPIRY.WARN}','7d','The time threshold until the certificate expires; used in the certificate expiry trigger. Can be set to an evaluation period in seconds (time suffixes can be used). Can be used with the certificate name as context.','0','0'), ('7155','10653','{$PAN.PA440.CERT.NAME.MATCHES}','.+','The certificate name regex filter to use in certificate discovery - for including.','0','0'), ('7156','10653','{$PAN.PA440.CERT.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','The certificate name regex filter to use in certificate discovery - for excluding.','0','0'), ('7157','10653','{$PAN.PA440.HA.CONFIG_SYNC.THRESH}','#1','The threshold for the configuration synchronization trigger. Can be set to an evaluation period in seconds (time suffixes can be used) or an evaluation range of the latest collected values (if preceded by a hash mark).','0','0'), ('7158','10653','{$PAN.PA440.HA.STATE.IGNORE_USER_SUSPENDED}','1','Controls whether the HA "suspended" state trigger should fire if the state is caused by the user request. "1" - ignored, "0" - not ignored.','0','0'), ('7159','10653','{$PAN.PA440.HTTP_PROXY}','','The HTTP proxy for HTTP agent items (set if needed). If the macro is empty, then no proxy is used.','0','0'), ('7160','10653','{$PAN.PA440.IF.HW.CONTROL}','1','The link status triggers will fire only for hardware interfaces where the context macro equals "1".','0','0'), ('7161','10653','{$PAN.PA440.IF.HW.ERRORS.WARN}','2','The warning threshold of the packet error rate for hardware interfaces. Can be used with the hardware interface name as context.','0','0'), ('7162','10653','{$PAN.PA440.IF.HW.IFNAME.MATCHES}','.+','The interface name regex filter to use in hardware interface discovery - for including.','0','0'), ('7163','10653','{$PAN.PA440.IF.HW.IFNAME.NOT_MATCHES}','^(?:tunnel|vlan|loopback)$','The interface name regex filter to use in hardware interface discovery - for excluding.','0','0'), ('7164','10653','{$PAN.PA440.IF.HW.UTIL.MAX}','90','The threshold in the hardware interface utilization triggers.','0','0'), ('7165','10653','{$PAN.PA440.IF.SW.ERRORS.WARN}','2','The warning threshold of the packet error rate for logical interfaces. Can be used with the logical interface name as context.','0','0'), ('7166','10653','{$PAN.PA440.IF.SW.IFNAME.MATCHES}','.+','The interface name regex filter to use in logical interface discovery - for including.','0','0'), ('7167','10653','{$PAN.PA440.IF.SW.IFNAME.NOT_MATCHES}','^(?:tunnel|vlan|loopback)$','The interface name regex filter to use in logical interface discovery - for excluding.','0','0'), ('7168','10653','{$PAN.PA440.IF.SW.IFZONE.MATCHES}','.+','The interface zone name regex filter to use in logical interface discovery - for including.','0','0'), ('7169','10653','{$PAN.PA440.IF.SW.IFZONE.NOT_MATCHES}','CHANGE_IF_NEEDED','The interface zone name regex filter to use in logical interface discovery - for excluding.','0','0'), ('7170','10653','{$PAN.PA440.IF.SW.VSYS.MATCHES}','.+','The interface virtual system name regex filter to use in logical interface discovery - for including.','0','0'), ('7171','10653','{$PAN.PA440.IF.SW.VSYS.NOT_MATCHES}','CHANGE_IF_NEEDED','The interface virtual system name regex filter to use in logical interface discovery - for excluding.','0','0'), ('7172','10653','{$PAN.PA440.LICENSE.DESC.MATCHES}','.+','The license feature description regex filter to use in license discovery - for including.','0','0'), ('7173','10653','{$PAN.PA440.LICENSE.DESC.NOT_MATCHES}','CHANGE_IF_NEEDED','The license feature description regex filter to use in license discovery - for excluding.','0','0'), ('7174','10653','{$PAN.PA440.LICENSE.EXPIRY.WARN}','7d','The time threshold until the license expires; used in the license expiry trigger. Can be set to an evaluation period in seconds (time suffixes can be used). Can be used with the license feature name as context.','0','0'), ('7175','10653','{$PAN.PA440.LICENSE.FEATURE.MATCHES}','.+','The license feature name regex filter to use in license discovery - for including.','0','0'), ('7176','10653','{$PAN.PA440.LICENSE.FEATURE.NOT_MATCHES}','CHANGE_IF_NEEDED','The license feature name regex filter to use in license discovery - for excluding.','0','0'), ('7177','10653','{$PAN.PA440.OSPF.CONTROL}','1','The OSPF neighbor triggers will fire only for neighbors where the context macro equals "1".','0','0'), ('7178','10653','{$PAN.PA440.OSPF.NEIGHBOR.ADDR.MATCHES}','.+','The OSPF neighbor address regex filter to use in OSPF neighbor discovery - for including.','0','0'), ('7179','10653','{$PAN.PA440.OSPF.NEIGHBOR.ADDR.NOT_MATCHES}','CHANGE_IF_NEEDED','The OSPF neighbor address regex filter to use in OSPF neighbor discovery - for excluding.','0','0'), ('7180','10653','{$PAN.PA440.OSPF.NEIGHBOR.AREA.MATCHES}','.+','The OSPF neighbor area regex filter to use in OSPF neighbor discovery - for including.','0','0'), ('7181','10653','{$PAN.PA440.OSPF.NEIGHBOR.AREA.NOT_MATCHES}','CHANGE_IF_NEEDED','The OSPF neighbor area regex filter to use in OSPF neighbor discovery - for excluding.','0','0'), ('7182','10653','{$PAN.PA440.OSPFV3.CONTROL}','1','The OSPFv3 neighbor triggers will fire only for neighbors where the context macro equals "1".','0','0'), ('7183','10653','{$PAN.PA440.OSPFV3.NEIGHBOR.ADDR.MATCHES}','.+','The OSPFv3 neighbor address regex filter to use in OSPFv3 neighbor discovery - for including.','0','0'), ('7184','10653','{$PAN.PA440.OSPFV3.NEIGHBOR.ADDR.NOT_MATCHES}','CHANGE_IF_NEEDED','The OSPFv3 neighbor address regex filter to use in OSPFv3 neighbor discovery - for excluding.','0','0'), ('7185','10653','{$PAN.PA440.OSPFV3.NEIGHBOR.AREA.MATCHES}','.+','The OSPFv3 neighbor area regex filter to use in OSPFv3 neighbor discovery - for including.','0','0'), ('7186','10653','{$PAN.PA440.OSPFV3.NEIGHBOR.AREA.NOT_MATCHES}','CHANGE_IF_NEEDED','The OSPFv3 neighbor area regex filter to use in OSPFv3 neighbor discovery - for excluding.','0','0'), ('7187','10653','{$PAN.PA440.PASSWORD}','','The password of the user that is used for monitoring.','1','0'), ('7188','10653','{$PAN.PA440.TIMEOUT}','15s','The timeout threshold for the HTTP items that retrieve data from the API.','0','0'), ('7189','10653','{$PAN.PA440.USER}','zbx_monitor','The name of the user that is used for monitoring.','0','0'), ('7190','10654','{$DELL.HTTP.API.PASSWORD}','','The Dell iDRAC user password.','1','0'), ('7191','10654','{$DELL.HTTP.API.URL}','','The Dell iDRAC Redfish API URL in the format `://:`.','0','0'), ('7192','10654','{$DELL.HTTP.API.USER}','','The Dell iDRAC username.','0','0'), ('7193','10654','{$DELL.HTTP.CPU.UTIL.HIGH}','90','Sets the percentage threshold for creating a "high" severity event about CPU utilization.','0','0'), ('7194','10654','{$DELL.HTTP.CPU.UTIL.WARN}','75','Sets the percentage threshold for creating a "warning" severity event about CPU utilization.','0','0'), ('7195','10654','{$DELL.HTTP.IFCONTROL}','1','Link status trigger will be fired only for interfaces that have the context macro equal to "1".','0','0'), ('7196','10654','{$DELL.HTTP.IO.UTIL.HIGH}','90','Sets the percentage threshold for creating a "high" severity event about IO utilization.','0','0'), ('7197','10654','{$DELL.HTTP.IO.UTIL.WARN}','75','Sets the percentage threshold for creating a "warning" severity event about IO utilization.','0','0'), ('7198','10654','{$DELL.HTTP.MEM.UTIL.HIGH}','90','Sets the percentage threshold for creating a "high" severity event about memory utilization.','0','0'), ('7199','10654','{$DELL.HTTP.MEM.UTIL.WARN}','75','Sets the percentage threshold for creating a "warning" severity event about memory utilization.','0','0'), ('7200','10654','{$DELL.HTTP.PROXY}','','Set an HTTP proxy for Redfish API requests if needed.','0','0'), ('7201','10654','{$DELL.HTTP.REQUEST.TIMEOUT}','10s','Set the timeout for HTTP requests.','0','0'), ('7202','10654','{$DELL.HTTP.RETURN.CODE.OK}','200','Set the HTTP return code that represents an OK response from the API. The default is "200", but can vary, for example, if a proxy is used.','0','0'), ('7203','10654','{$DELL.HTTP.SYS.UTIL.HIGH}','90','Sets the percentage threshold for creating a "high" severity event about SYS utilization.','0','0'), ('7204','10654','{$DELL.HTTP.SYS.UTIL.WARN}','75','Sets the percentage threshold for creating a "warning" severity event about SYS utilization.','0','0'), ('7205','10655','{$DELL.SNMP.DISCOVERY.VOLTAGE.NAME.MATCHES}','^.*Voltage.*$','Sets the regex string of voltage probe names to allow in discovery.','0','0'), ('7206','10655','{$DELL.SNMP.DISCOVERY.VOLTAGE.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the regex string of voltage probe names to ignore in discovery.','0','0'), ('7207','10655','{$DELL.SNMP.DISCOVERY.VOLTAGE.TYPE.MATCHES}','18|16','Sets the regex string of voltage probe types to allow in discovery.','0','0'), ('7208','10655','{$DELL.SNMP.DISCOVERY.VOLTAGE.TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the regex string of voltage probe types to ignore in discovery.','0','0'), ('7209','10655','{$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT}','3','The critical status of the disk array cache battery for the trigger expression.','0','0'), ('7210','10655','{$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.OK}','2','The OK status of the disk array cache battery for the trigger expression.','0','0'), ('7211','10655','{$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.WARN}','4','The warning status of the disk array cache battery for the trigger expression.','0','0'), ('7212','10655','{$DELL.SNMP.DISK.ARRAY.STATUS.CRIT}','5','The critical status of the disk array for the trigger expression.','0','0'), ('7213','10655','{$DELL.SNMP.DISK.ARRAY.STATUS.FAIL}','6','The disaster status of the disk array for the trigger expression.','0','0'), ('7214','10655','{$DELL.SNMP.DISK.ARRAY.STATUS.WARN}','4','The warning status of the disk array for the trigger expression.','0','0'), ('7215','10655','{$DELL.SNMP.DISK.SMART.STATUS.FAIL}','1','The critical S.M.A.R.T status of the disk for the trigger expression.','0','0'), ('7216','10655','{$DELL.SNMP.DISK.STATUS.FAIL:"critical"}','5','The critical status of the disk for the trigger expression.','0','0'), ('7217','10655','{$DELL.SNMP.DISK.STATUS.FAIL:"nonRecoverable"}','6','The critical status of the disk for the trigger expression.','0','0'), ('7218','10655','{$DELL.SNMP.DISK.STATUS.WARN:"nonCritical"}','4','The warning status of the disk for the trigger expression.','0','0'), ('7219','10655','{$DELL.SNMP.FAN.STATUS.CRIT:"criticalLower"}','8','The critical value of the FAN sensor for the trigger expression.','0','0'), ('7220','10655','{$DELL.SNMP.FAN.STATUS.CRIT:"criticalUpper"}','5','The critical value of the FAN sensor for the trigger expression.','0','0'), ('7221','10655','{$DELL.SNMP.FAN.STATUS.CRIT:"failed"}','10','The critical value of the FAN sensor for the trigger expression.','0','0'), ('7222','10655','{$DELL.SNMP.FAN.STATUS.CRIT:"nonRecoverableLower"}','9','The critical value of the FAN sensor for the trigger expression.','0','0'), ('7223','10655','{$DELL.SNMP.FAN.STATUS.CRIT:"nonRecoverableUpper"}','6','The critical value of the FAN sensor for the trigger expression.','0','0'), ('7224','10655','{$DELL.SNMP.FAN.STATUS.WARN:"nonCriticalLower"}','7','The warning value of the FAN sensor for the trigger expression.','0','0'), ('7225','10655','{$DELL.SNMP.FAN.STATUS.WARN:"nonCriticalUpper"}','4','The warning value of the FAN sensor for the trigger expression.','0','0'), ('7226','10655','{$DELL.SNMP.HEALTH.STATUS.CRIT}','5','The critical status of health for the trigger expression.','0','0'), ('7227','10655','{$DELL.SNMP.HEALTH.STATUS.DISASTER}','6','The disaster status of health for the trigger expression.','0','0'), ('7228','10655','{$DELL.SNMP.HEALTH.STATUS.WARN}','4','The warning status of health for the trigger expression.','0','0'), ('7229','10655','{$DELL.SNMP.IFCONTROL}','1','The link status trigger will be fired only for interfaces that have the context macro equal to "1".','0','0'), ('7230','10655','{$DELL.SNMP.PSU.STATUS.CRIT:"critical"}','5','The critical value of the PSU sensor for the trigger expression.','0','0'), ('7231','10655','{$DELL.SNMP.PSU.STATUS.CRIT:"nonRecoverable"}','6','The critical value of the PSU sensor for the trigger expression.','0','0'), ('7232','10655','{$DELL.SNMP.PSU.STATUS.WARN:"nonCritical"}','4','The warning value of the PSU sensor for the trigger expression.','0','0'), ('7233','10655','{$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"criticalLower"}','8','The critical status of the temperature probe for the trigger expression.','0','0'), ('7234','10655','{$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"criticalUpper"}','5','The critical status of the temperature probe for the trigger expression.','0','0'), ('7235','10655','{$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"nonRecoverableLower"}','9','The critical status of the temperature probe for the trigger expression.','0','0'), ('7236','10655','{$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"nonRecoverableUpper"}','6','The critical status of the temperature probe for the trigger expression.','0','0'), ('7237','10655','{$DELL.SNMP.SENSOR.TEMP.STATUS.OK}','3','The OK status of the temperature probe for the trigger expression.','0','0'), ('7238','10655','{$DELL.SNMP.SENSOR.TEMP.STATUS.WARN:"nonCriticalLower"}','7','The warning status of the temperature probe for the trigger expression.','0','0'), ('7239','10655','{$DELL.SNMP.SENSOR.TEMP.STATUS.WARN:"nonCriticalUpper"}','4','The warning status of the temperature probe for the trigger expression.','0','0'), ('7240','10655','{$DELL.SNMP.TIMEOUT}','5m','The time interval for the SNMP agent availability trigger expression.','0','0'), ('7241','10655','{$DELL.SNMP.VDISK.STATUS.CRIT:"failed"}','3','The critical status of the virtual disk for the trigger expression.','0','0'), ('7242','10655','{$DELL.SNMP.VDISK.STATUS.WARN:"degraded"}','4','The warning status of the virtual disk for the trigger expression.','0','0'), ('7243','10435','{$DELL.HTTP.API.PASSWORD}','','The Dell iDRAC user password.','1','0'), ('7244','10435','{$DELL.HTTP.API.URL}','','The Dell iDRAC Redfish API URL in the format `://:`.','0','0'), ('7245','10435','{$DELL.HTTP.API.USER}','','The Dell iDRAC username.','0','0'), ('7246','10435','{$DELL.HTTP.CPU.UTIL.HIGH}','90','Sets the percentage threshold for creating a "high" severity event about CPU utilization.','0','0'), ('7247','10435','{$DELL.HTTP.CPU.UTIL.WARN}','75','Sets the percentage threshold for creating a "warning" severity event about CPU utilization.','0','0'), ('7248','10435','{$DELL.HTTP.IFCONTROL}','1','Link status trigger will be fired only for interfaces that have the context macro equal to "1".','0','0'), ('7249','10435','{$DELL.HTTP.IO.UTIL.HIGH}','90','Sets the percentage threshold for creating a "high" severity event about IO utilization.','0','0'), ('7250','10435','{$DELL.HTTP.IO.UTIL.WARN}','75','Sets the percentage threshold for creating a "warning" severity event about IO utilization.','0','0'), ('7251','10435','{$DELL.HTTP.MEM.UTIL.HIGH}','90','Sets the percentage threshold for creating a "high" severity event about memory utilization.','0','0'), ('7252','10435','{$DELL.HTTP.MEM.UTIL.WARN}','75','Sets the percentage threshold for creating a "warning" severity event about memory utilization.','0','0'), ('7253','10435','{$DELL.HTTP.PROXY}','','Set an HTTP proxy for Redfish API requests if needed.','0','0'), ('7254','10435','{$DELL.HTTP.REQUEST.TIMEOUT}','10s','Set the timeout for HTTP requests.','0','0'), ('7255','10435','{$DELL.HTTP.RETURN.CODE.OK}','200','Set the HTTP return code that represents an OK response from the API. The default is "200", but can vary, for example, if a proxy is used.','0','0'), ('7256','10435','{$DELL.HTTP.SYS.UTIL.HIGH}','90','Sets the percentage threshold for creating a "high" severity event about SYS utilization.','0','0'), ('7257','10435','{$DELL.HTTP.SYS.UTIL.WARN}','75','Sets the percentage threshold for creating a "warning" severity event about SYS utilization.','0','0'), ('7258','10436','{$DELL.SNMP.DISCOVERY.VOLTAGE.NAME.MATCHES}','^.*Voltage.*$','Sets the regex string of voltage probe names to allow in discovery.','0','0'), ('7259','10436','{$DELL.SNMP.DISCOVERY.VOLTAGE.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the regex string of voltage probe names to ignore in discovery.','0','0'), ('7260','10436','{$DELL.SNMP.DISCOVERY.VOLTAGE.TYPE.MATCHES}','18|16','Sets the regex string of voltage probe types to allow in discovery.','0','0'), ('7261','10436','{$DELL.SNMP.DISCOVERY.VOLTAGE.TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the regex string of voltage probe types to ignore in discovery.','0','0'), ('7262','10436','{$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT}','3','The critical status of the disk array cache battery for the trigger expression.','0','0'), ('7263','10436','{$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.OK}','2','The OK status of the disk array cache battery for the trigger expression.','0','0'), ('7264','10436','{$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.WARN}','4','The warning status of the disk array cache battery for the trigger expression.','0','0'), ('7265','10436','{$DELL.SNMP.DISK.ARRAY.STATUS.CRIT}','5','The critical status of the disk array for the trigger expression.','0','0'), ('7266','10436','{$DELL.SNMP.DISK.ARRAY.STATUS.FAIL}','6','The disaster status of the disk array for the trigger expression.','0','0'), ('7267','10436','{$DELL.SNMP.DISK.ARRAY.STATUS.WARN}','4','The warning status of the disk array for the trigger expression.','0','0'), ('7268','10436','{$DELL.SNMP.DISK.SMART.STATUS.FAIL}','1','The critical S.M.A.R.T status of the disk for the trigger expression.','0','0'), ('7269','10436','{$DELL.SNMP.DISK.STATUS.FAIL:"critical"}','5','The critical status of the disk for the trigger expression.','0','0'), ('7270','10436','{$DELL.SNMP.DISK.STATUS.FAIL:"nonRecoverable"}','6','The critical status of the disk for the trigger expression.','0','0'), ('7271','10436','{$DELL.SNMP.DISK.STATUS.WARN:"nonCritical"}','4','The warning status of the disk for the trigger expression.','0','0'), ('7272','10436','{$DELL.SNMP.FAN.STATUS.CRIT:"criticalLower"}','8','The critical value of the FAN sensor for the trigger expression.','0','0'), ('7273','10436','{$DELL.SNMP.FAN.STATUS.CRIT:"criticalUpper"}','5','The critical value of the FAN sensor for the trigger expression.','0','0'), ('7274','10436','{$DELL.SNMP.FAN.STATUS.CRIT:"failed"}','10','The critical value of the FAN sensor for the trigger expression.','0','0'), ('7275','10436','{$DELL.SNMP.FAN.STATUS.CRIT:"nonRecoverableLower"}','9','The critical value of the FAN sensor for the trigger expression.','0','0'), ('7276','10436','{$DELL.SNMP.FAN.STATUS.CRIT:"nonRecoverableUpper"}','6','The critical value of the FAN sensor for the trigger expression.','0','0'), ('7277','10436','{$DELL.SNMP.FAN.STATUS.WARN:"nonCriticalLower"}','7','The warning value of the FAN sensor for the trigger expression.','0','0'), ('7278','10436','{$DELL.SNMP.FAN.STATUS.WARN:"nonCriticalUpper"}','4','The warning value of the FAN sensor for the trigger expression.','0','0'), ('7279','10436','{$DELL.SNMP.HEALTH.STATUS.CRIT}','5','The critical status of health for the trigger expression.','0','0'), ('7280','10436','{$DELL.SNMP.HEALTH.STATUS.DISASTER}','6','The disaster status of health for the trigger expression.','0','0'), ('7281','10436','{$DELL.SNMP.HEALTH.STATUS.WARN}','4','The warning status of health for the trigger expression.','0','0'), ('7282','10436','{$DELL.SNMP.IFCONTROL}','1','The link status trigger will be fired only for interfaces that have the context macro equal to "1".','0','0'), ('7283','10436','{$DELL.SNMP.PSU.STATUS.CRIT:"critical"}','5','The critical value of the PSU sensor for the trigger expression.','0','0'), ('7284','10436','{$DELL.SNMP.PSU.STATUS.CRIT:"nonRecoverable"}','6','The critical value of the PSU sensor for the trigger expression.','0','0'), ('7285','10436','{$DELL.SNMP.PSU.STATUS.WARN:"nonCritical"}','4','The warning value of the PSU sensor for the trigger expression.','0','0'), ('7286','10436','{$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"criticalLower"}','8','The critical status of the temperature probe for the trigger expression.','0','0'), ('7287','10436','{$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"criticalUpper"}','5','The critical status of the temperature probe for the trigger expression.','0','0'), ('7288','10436','{$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"nonRecoverableLower"}','9','The critical status of the temperature probe for the trigger expression.','0','0'), ('7289','10436','{$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"nonRecoverableUpper"}','6','The critical status of the temperature probe for the trigger expression.','0','0'), ('7290','10436','{$DELL.SNMP.SENSOR.TEMP.STATUS.OK}','3','The OK status of the temperature probe for the trigger expression.','0','0'), ('7291','10436','{$DELL.SNMP.SENSOR.TEMP.STATUS.WARN:"nonCriticalLower"}','7','The warning status of the temperature probe for the trigger expression.','0','0'), ('7292','10436','{$DELL.SNMP.SENSOR.TEMP.STATUS.WARN:"nonCriticalUpper"}','4','The warning status of the temperature probe for the trigger expression.','0','0'), ('7293','10436','{$DELL.SNMP.TIMEOUT}','5m','The time interval for the SNMP agent availability trigger expression.','0','0'), ('7294','10436','{$DELL.SNMP.VDISK.STATUS.CRIT:"failed"}','3','The critical status of the virtual disk for the trigger expression.','0','0'), ('7295','10436','{$DELL.SNMP.VDISK.STATUS.WARN:"degraded"}','4','The warning status of the virtual disk for the trigger expression.','0','0'), ('7296','10437','{$DELL.HTTP.API.PASSWORD}','','The Dell iDRAC user password.','1','0'), ('7297','10437','{$DELL.HTTP.API.URL}','','The Dell iDRAC Redfish API URL in the format `://:`.','0','0'), ('7298','10437','{$DELL.HTTP.API.USER}','','The Dell iDRAC username.','0','0'), ('7299','10437','{$DELL.HTTP.CPU.UTIL.HIGH}','90','Sets the percentage threshold for creating a "high" severity event about CPU utilization.','0','0'), ('7300','10437','{$DELL.HTTP.CPU.UTIL.WARN}','75','Sets the percentage threshold for creating a "warning" severity event about CPU utilization.','0','0'), ('7301','10437','{$DELL.HTTP.IFCONTROL}','1','Link status trigger will be fired only for interfaces that have the context macro equal to "1".','0','0'), ('7302','10437','{$DELL.HTTP.IO.UTIL.HIGH}','90','Sets the percentage threshold for creating a "high" severity event about IO utilization.','0','0'), ('7303','10437','{$DELL.HTTP.IO.UTIL.WARN}','75','Sets the percentage threshold for creating a "warning" severity event about IO utilization.','0','0'), ('7304','10437','{$DELL.HTTP.MEM.UTIL.HIGH}','90','Sets the percentage threshold for creating a "high" severity event about memory utilization.','0','0'), ('7305','10437','{$DELL.HTTP.MEM.UTIL.WARN}','75','Sets the percentage threshold for creating a "warning" severity event about memory utilization.','0','0'), ('7306','10437','{$DELL.HTTP.PROXY}','','Set an HTTP proxy for Redfish API requests if needed.','0','0'), ('7307','10437','{$DELL.HTTP.REQUEST.TIMEOUT}','10s','Set the timeout for HTTP requests.','0','0'), ('7308','10437','{$DELL.HTTP.RETURN.CODE.OK}','200','Set the HTTP return code that represents an OK response from the API. The default is "200", but can vary, for example, if a proxy is used.','0','0'), ('7309','10437','{$DELL.HTTP.SYS.UTIL.HIGH}','90','Sets the percentage threshold for creating a "high" severity event about SYS utilization.','0','0'), ('7310','10437','{$DELL.HTTP.SYS.UTIL.WARN}','75','Sets the percentage threshold for creating a "warning" severity event about SYS utilization.','0','0'), ('7311','10438','{$DELL.SNMP.DISCOVERY.VOLTAGE.NAME.MATCHES}','^.*Voltage.*$','Sets the regex string of voltage probe names to allow in discovery.','0','0'), ('7312','10438','{$DELL.SNMP.DISCOVERY.VOLTAGE.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the regex string of voltage probe names to ignore in discovery.','0','0'), ('7313','10438','{$DELL.SNMP.DISCOVERY.VOLTAGE.TYPE.MATCHES}','18|16','Sets the regex string of voltage probe types to allow in discovery.','0','0'), ('7314','10438','{$DELL.SNMP.DISCOVERY.VOLTAGE.TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the regex string of voltage probe types to ignore in discovery.','0','0'), ('7315','10438','{$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT}','3','The critical status of the disk array cache battery for the trigger expression.','0','0'), ('7316','10438','{$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.OK}','2','The OK status of the disk array cache battery for the trigger expression.','0','0'), ('7317','10438','{$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.WARN}','4','The warning status of the disk array cache battery for the trigger expression.','0','0'), ('7318','10438','{$DELL.SNMP.DISK.ARRAY.STATUS.CRIT}','5','The critical status of the disk array for the trigger expression.','0','0'), ('7319','10438','{$DELL.SNMP.DISK.ARRAY.STATUS.FAIL}','6','The disaster status of the disk array for the trigger expression.','0','0'), ('7320','10438','{$DELL.SNMP.DISK.ARRAY.STATUS.WARN}','4','The warning status of the disk array for the trigger expression.','0','0'), ('7321','10438','{$DELL.SNMP.DISK.SMART.STATUS.FAIL}','1','The critical S.M.A.R.T status of the disk for the trigger expression.','0','0'), ('7322','10438','{$DELL.SNMP.DISK.STATUS.FAIL:"critical"}','5','The critical status of the disk for the trigger expression.','0','0'), ('7323','10438','{$DELL.SNMP.DISK.STATUS.FAIL:"nonRecoverable"}','6','The critical status of the disk for the trigger expression.','0','0'), ('7324','10438','{$DELL.SNMP.DISK.STATUS.WARN:"nonCritical"}','4','The warning status of the disk for the trigger expression.','0','0'), ('7325','10438','{$DELL.SNMP.FAN.STATUS.CRIT:"criticalLower"}','8','The critical value of the FAN sensor for the trigger expression.','0','0'), ('7326','10438','{$DELL.SNMP.FAN.STATUS.CRIT:"criticalUpper"}','5','The critical value of the FAN sensor for the trigger expression.','0','0'), ('7327','10438','{$DELL.SNMP.FAN.STATUS.CRIT:"failed"}','10','The critical value of the FAN sensor for the trigger expression.','0','0'), ('7328','10438','{$DELL.SNMP.FAN.STATUS.CRIT:"nonRecoverableLower"}','9','The critical value of the FAN sensor for the trigger expression.','0','0'), ('7329','10438','{$DELL.SNMP.FAN.STATUS.CRIT:"nonRecoverableUpper"}','6','The critical value of the FAN sensor for the trigger expression.','0','0'), ('7330','10438','{$DELL.SNMP.FAN.STATUS.WARN:"nonCriticalLower"}','7','The warning value of the FAN sensor for the trigger expression.','0','0'), ('7331','10438','{$DELL.SNMP.FAN.STATUS.WARN:"nonCriticalUpper"}','4','The warning value of the FAN sensor for the trigger expression.','0','0'), ('7332','10438','{$DELL.SNMP.HEALTH.STATUS.CRIT}','5','The critical status of health for the trigger expression.','0','0'), ('7333','10438','{$DELL.SNMP.HEALTH.STATUS.DISASTER}','6','The disaster status of health for the trigger expression.','0','0'), ('7334','10438','{$DELL.SNMP.HEALTH.STATUS.WARN}','4','The warning status of health for the trigger expression.','0','0'), ('7335','10438','{$DELL.SNMP.IFCONTROL}','1','The link status trigger will be fired only for interfaces that have the context macro equal to "1".','0','0'), ('7336','10438','{$DELL.SNMP.PSU.STATUS.CRIT:"critical"}','5','The critical value of the PSU sensor for the trigger expression.','0','0'), ('7337','10438','{$DELL.SNMP.PSU.STATUS.CRIT:"nonRecoverable"}','6','The critical value of the PSU sensor for the trigger expression.','0','0'), ('7338','10438','{$DELL.SNMP.PSU.STATUS.WARN:"nonCritical"}','4','The warning value of the PSU sensor for the trigger expression.','0','0'), ('7339','10438','{$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"criticalLower"}','8','The critical status of the temperature probe for the trigger expression.','0','0'), ('7340','10438','{$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"criticalUpper"}','5','The critical status of the temperature probe for the trigger expression.','0','0'), ('7341','10438','{$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"nonRecoverableLower"}','9','The critical status of the temperature probe for the trigger expression.','0','0'), ('7342','10438','{$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"nonRecoverableUpper"}','6','The critical status of the temperature probe for the trigger expression.','0','0'), ('7343','10438','{$DELL.SNMP.SENSOR.TEMP.STATUS.OK}','3','The OK status of the temperature probe for the trigger expression.','0','0'), ('7344','10438','{$DELL.SNMP.SENSOR.TEMP.STATUS.WARN:"nonCriticalLower"}','7','The warning status of the temperature probe for the trigger expression.','0','0'), ('7345','10438','{$DELL.SNMP.SENSOR.TEMP.STATUS.WARN:"nonCriticalUpper"}','4','The warning status of the temperature probe for the trigger expression.','0','0'), ('7346','10438','{$DELL.SNMP.TIMEOUT}','5m','The time interval for the SNMP agent availability trigger expression.','0','0'), ('7347','10438','{$DELL.SNMP.VDISK.STATUS.CRIT:"failed"}','3','The critical status of the virtual disk for the trigger expression.','0','0'), ('7348','10438','{$DELL.SNMP.VDISK.STATUS.WARN:"degraded"}','4','The warning status of the virtual disk for the trigger expression.','0','0'), ('7349','10656','{$DELL.HTTP.API.PASSWORD}','','The Dell iDRAC user password.','1','0'), ('7350','10656','{$DELL.HTTP.API.URL}','','The Dell iDRAC Redfish API URL in the format `://:`.','0','0'), ('7351','10656','{$DELL.HTTP.API.USER}','','The Dell iDRAC username.','0','0'), ('7352','10656','{$DELL.HTTP.CPU.UTIL.HIGH}','90','Sets the percentage threshold for creating a "high" severity event about CPU utilization.','0','0'), ('7353','10656','{$DELL.HTTP.CPU.UTIL.WARN}','75','Sets the percentage threshold for creating a "warning" severity event about CPU utilization.','0','0'), ('7354','10656','{$DELL.HTTP.IFCONTROL}','1','Link status trigger will be fired only for interfaces that have the context macro equal to "1".','0','0'), ('7355','10656','{$DELL.HTTP.IO.UTIL.HIGH}','90','Sets the percentage threshold for creating a "high" severity event about IO utilization.','0','0'), ('7356','10656','{$DELL.HTTP.IO.UTIL.WARN}','75','Sets the percentage threshold for creating a "warning" severity event about IO utilization.','0','0'), ('7357','10656','{$DELL.HTTP.MEM.UTIL.HIGH}','90','Sets the percentage threshold for creating a "high" severity event about memory utilization.','0','0'), ('7358','10656','{$DELL.HTTP.MEM.UTIL.WARN}','75','Sets the percentage threshold for creating a "warning" severity event about memory utilization.','0','0'), ('7359','10656','{$DELL.HTTP.PROXY}','','Set an HTTP proxy for Redfish API requests if needed.','0','0'), ('7360','10656','{$DELL.HTTP.REQUEST.TIMEOUT}','10s','Set the timeout for HTTP requests.','0','0'), ('7361','10656','{$DELL.HTTP.RETURN.CODE.OK}','200','Set the HTTP return code that represents an OK response from the API. The default is "200", but can vary, for example, if a proxy is used.','0','0'), ('7362','10656','{$DELL.HTTP.SYS.UTIL.HIGH}','90','Sets the percentage threshold for creating a "high" severity event about SYS utilization.','0','0'), ('7363','10656','{$DELL.HTTP.SYS.UTIL.WARN}','75','Sets the percentage threshold for creating a "warning" severity event about SYS utilization.','0','0'), ('7364','10657','{$DELL.SNMP.DISCOVERY.VOLTAGE.NAME.MATCHES}','^.*Voltage.*$','Sets the regex string of voltage probe names to allow in discovery.','0','0'), ('7365','10657','{$DELL.SNMP.DISCOVERY.VOLTAGE.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the regex string of voltage probe names to ignore in discovery.','0','0'), ('7366','10657','{$DELL.SNMP.DISCOVERY.VOLTAGE.TYPE.MATCHES}','18|16','Sets the regex string of voltage probe types to allow in discovery.','0','0'), ('7367','10657','{$DELL.SNMP.DISCOVERY.VOLTAGE.TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the regex string of voltage probe types to ignore in discovery.','0','0'), ('7368','10657','{$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT}','3','The critical status of the disk array cache battery for the trigger expression.','0','0'), ('7369','10657','{$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.OK}','2','The OK status of the disk array cache battery for the trigger expression.','0','0'), ('7370','10657','{$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.WARN}','4','The warning status of the disk array cache battery for the trigger expression.','0','0'), ('7371','10657','{$DELL.SNMP.DISK.ARRAY.STATUS.CRIT}','5','The critical status of the disk array for the trigger expression.','0','0'), ('7372','10657','{$DELL.SNMP.DISK.ARRAY.STATUS.FAIL}','6','The disaster status of the disk array for the trigger expression.','0','0'), ('7373','10657','{$DELL.SNMP.DISK.ARRAY.STATUS.WARN}','4','The warning status of the disk array for the trigger expression.','0','0'), ('7374','10657','{$DELL.SNMP.DISK.SMART.STATUS.FAIL}','1','The critical S.M.A.R.T status of the disk for the trigger expression.','0','0'), ('7375','10657','{$DELL.SNMP.DISK.STATUS.FAIL:"critical"}','5','The critical status of the disk for the trigger expression.','0','0'), ('7376','10657','{$DELL.SNMP.DISK.STATUS.FAIL:"nonRecoverable"}','6','The critical status of the disk for the trigger expression.','0','0'), ('7377','10657','{$DELL.SNMP.DISK.STATUS.WARN:"nonCritical"}','4','The warning status of the disk for the trigger expression.','0','0'), ('7378','10657','{$DELL.SNMP.FAN.STATUS.CRIT:"criticalLower"}','8','The critical value of the FAN sensor for the trigger expression.','0','0'), ('7379','10657','{$DELL.SNMP.FAN.STATUS.CRIT:"criticalUpper"}','5','The critical value of the FAN sensor for the trigger expression.','0','0'), ('7380','10657','{$DELL.SNMP.FAN.STATUS.CRIT:"failed"}','10','The critical value of the FAN sensor for the trigger expression.','0','0'), ('7381','10657','{$DELL.SNMP.FAN.STATUS.CRIT:"nonRecoverableLower"}','9','The critical value of the FAN sensor for the trigger expression.','0','0'), ('7382','10657','{$DELL.SNMP.FAN.STATUS.CRIT:"nonRecoverableUpper"}','6','The critical value of the FAN sensor for the trigger expression.','0','0'), ('7383','10657','{$DELL.SNMP.FAN.STATUS.WARN:"nonCriticalLower"}','7','The warning value of the FAN sensor for the trigger expression.','0','0'), ('7384','10657','{$DELL.SNMP.FAN.STATUS.WARN:"nonCriticalUpper"}','4','The warning value of the FAN sensor for the trigger expression.','0','0'), ('7385','10657','{$DELL.SNMP.HEALTH.STATUS.CRIT}','5','The critical status of health for the trigger expression.','0','0'), ('7386','10657','{$DELL.SNMP.HEALTH.STATUS.DISASTER}','6','The disaster status of health for the trigger expression.','0','0'), ('7387','10657','{$DELL.SNMP.HEALTH.STATUS.WARN}','4','The warning status of health for the trigger expression.','0','0'), ('7388','10657','{$DELL.SNMP.IFCONTROL}','1','The link status trigger will be fired only for interfaces that have the context macro equal to "1".','0','0'), ('7389','10657','{$DELL.SNMP.PSU.STATUS.CRIT:"critical"}','5','The critical value of the PSU sensor for the trigger expression.','0','0'), ('7390','10657','{$DELL.SNMP.PSU.STATUS.CRIT:"nonRecoverable"}','6','The critical value of the PSU sensor for the trigger expression.','0','0'), ('7391','10657','{$DELL.SNMP.PSU.STATUS.WARN:"nonCritical"}','4','The warning value of the PSU sensor for the trigger expression.','0','0'), ('7392','10657','{$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"criticalLower"}','8','The critical status of the temperature probe for the trigger expression.','0','0'), ('7393','10657','{$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"criticalUpper"}','5','The critical status of the temperature probe for the trigger expression.','0','0'), ('7394','10657','{$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"nonRecoverableLower"}','9','The critical status of the temperature probe for the trigger expression.','0','0'), ('7395','10657','{$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"nonRecoverableUpper"}','6','The critical status of the temperature probe for the trigger expression.','0','0'), ('7396','10657','{$DELL.SNMP.SENSOR.TEMP.STATUS.OK}','3','The OK status of the temperature probe for the trigger expression.','0','0'), ('7397','10657','{$DELL.SNMP.SENSOR.TEMP.STATUS.WARN:"nonCriticalLower"}','7','The warning status of the temperature probe for the trigger expression.','0','0'), ('7398','10657','{$DELL.SNMP.SENSOR.TEMP.STATUS.WARN:"nonCriticalUpper"}','4','The warning status of the temperature probe for the trigger expression.','0','0'), ('7399','10657','{$DELL.SNMP.TIMEOUT}','5m','The time interval for the SNMP agent availability trigger expression.','0','0'), ('7400','10657','{$DELL.SNMP.VDISK.STATUS.CRIT:"failed"}','3','The critical status of the virtual disk for the trigger expression.','0','0'), ('7401','10657','{$DELL.SNMP.VDISK.STATUS.WARN:"degraded"}','4','The warning status of the virtual disk for the trigger expression.','0','0'), ('7402','10439','{$DELL.HTTP.API.PASSWORD}','','The Dell iDRAC user password.','1','0'), ('7403','10439','{$DELL.HTTP.API.URL}','','The Dell iDRAC Redfish API URL in the format `://:`.','0','0'), ('7404','10439','{$DELL.HTTP.API.USER}','','The Dell iDRAC username.','0','0'), ('7405','10439','{$DELL.HTTP.CPU.UTIL.HIGH}','90','Sets the percentage threshold for creating a "high" severity event about CPU utilization.','0','0'), ('7406','10439','{$DELL.HTTP.CPU.UTIL.WARN}','75','Sets the percentage threshold for creating a "warning" severity event about CPU utilization.','0','0'), ('7407','10439','{$DELL.HTTP.IFCONTROL}','1','Link status trigger will be fired only for interfaces that have the context macro equal to "1".','0','0'), ('7408','10439','{$DELL.HTTP.IO.UTIL.HIGH}','90','Sets the percentage threshold for creating a "high" severity event about IO utilization.','0','0'), ('7409','10439','{$DELL.HTTP.IO.UTIL.WARN}','75','Sets the percentage threshold for creating a "warning" severity event about IO utilization.','0','0'), ('7410','10439','{$DELL.HTTP.MEM.UTIL.HIGH}','90','Sets the percentage threshold for creating a "high" severity event about memory utilization.','0','0'), ('7411','10439','{$DELL.HTTP.MEM.UTIL.WARN}','75','Sets the percentage threshold for creating a "warning" severity event about memory utilization.','0','0'), ('7412','10439','{$DELL.HTTP.PROXY}','','Set an HTTP proxy for Redfish API requests if needed.','0','0'), ('7413','10439','{$DELL.HTTP.REQUEST.TIMEOUT}','10s','Set the timeout for HTTP requests.','0','0'), ('7414','10439','{$DELL.HTTP.RETURN.CODE.OK}','200','Set the HTTP return code that represents an OK response from the API. The default is "200", but can vary, for example, if a proxy is used.','0','0'), ('7415','10439','{$DELL.HTTP.SYS.UTIL.HIGH}','90','Sets the percentage threshold for creating a "high" severity event about SYS utilization.','0','0'), ('7416','10439','{$DELL.HTTP.SYS.UTIL.WARN}','75','Sets the percentage threshold for creating a "warning" severity event about SYS utilization.','0','0'), ('7417','10440','{$DELL.SNMP.DISCOVERY.VOLTAGE.NAME.MATCHES}','^.*Voltage.*$','Sets the regex string of voltage probe names to allow in discovery.','0','0'), ('7418','10440','{$DELL.SNMP.DISCOVERY.VOLTAGE.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the regex string of voltage probe names to ignore in discovery.','0','0'), ('7419','10440','{$DELL.SNMP.DISCOVERY.VOLTAGE.TYPE.MATCHES}','18|16','Sets the regex string of voltage probe types to allow in discovery.','0','0'), ('7420','10440','{$DELL.SNMP.DISCOVERY.VOLTAGE.TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the regex string of voltage probe types to ignore in discovery.','0','0'), ('7421','10440','{$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT}','3','The critical status of the disk array cache battery for the trigger expression.','0','0'), ('7422','10440','{$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.OK}','2','The OK status of the disk array cache battery for the trigger expression.','0','0'), ('7423','10440','{$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.WARN}','4','The warning status of the disk array cache battery for the trigger expression.','0','0'), ('7424','10440','{$DELL.SNMP.DISK.ARRAY.STATUS.CRIT}','5','The critical status of the disk array for the trigger expression.','0','0'), ('7425','10440','{$DELL.SNMP.DISK.ARRAY.STATUS.FAIL}','6','The disaster status of the disk array for the trigger expression.','0','0'), ('7426','10440','{$DELL.SNMP.DISK.ARRAY.STATUS.WARN}','4','The warning status of the disk array for the trigger expression.','0','0'), ('7427','10440','{$DELL.SNMP.DISK.SMART.STATUS.FAIL}','1','The critical S.M.A.R.T status of the disk for the trigger expression.','0','0'), ('7428','10440','{$DELL.SNMP.DISK.STATUS.FAIL:"critical"}','5','The critical status of the disk for the trigger expression.','0','0'), ('7429','10440','{$DELL.SNMP.DISK.STATUS.FAIL:"nonRecoverable"}','6','The critical status of the disk for the trigger expression.','0','0'), ('7430','10440','{$DELL.SNMP.DISK.STATUS.WARN:"nonCritical"}','4','The warning status of the disk for the trigger expression.','0','0'), ('7431','10440','{$DELL.SNMP.FAN.STATUS.CRIT:"criticalLower"}','8','The critical value of the FAN sensor for the trigger expression.','0','0'), ('7432','10440','{$DELL.SNMP.FAN.STATUS.CRIT:"criticalUpper"}','5','The critical value of the FAN sensor for the trigger expression.','0','0'), ('7433','10440','{$DELL.SNMP.FAN.STATUS.CRIT:"failed"}','10','The critical value of the FAN sensor for the trigger expression.','0','0'), ('7434','10440','{$DELL.SNMP.FAN.STATUS.CRIT:"nonRecoverableLower"}','9','The critical value of the FAN sensor for the trigger expression.','0','0'), ('7435','10440','{$DELL.SNMP.FAN.STATUS.CRIT:"nonRecoverableUpper"}','6','The critical value of the FAN sensor for the trigger expression.','0','0'), ('7436','10440','{$DELL.SNMP.FAN.STATUS.WARN:"nonCriticalLower"}','7','The warning value of the FAN sensor for the trigger expression.','0','0'), ('7437','10440','{$DELL.SNMP.FAN.STATUS.WARN:"nonCriticalUpper"}','4','The warning value of the FAN sensor for the trigger expression.','0','0'), ('7438','10440','{$DELL.SNMP.HEALTH.STATUS.CRIT}','5','The critical status of health for the trigger expression.','0','0'), ('7439','10440','{$DELL.SNMP.HEALTH.STATUS.DISASTER}','6','The disaster status of health for the trigger expression.','0','0'), ('7440','10440','{$DELL.SNMP.HEALTH.STATUS.WARN}','4','The warning status of health for the trigger expression.','0','0'), ('7441','10440','{$DELL.SNMP.IFCONTROL}','1','The link status trigger will be fired only for interfaces that have the context macro equal to "1".','0','0'), ('7442','10440','{$DELL.SNMP.PSU.STATUS.CRIT:"critical"}','5','The critical value of the PSU sensor for the trigger expression.','0','0'), ('7443','10440','{$DELL.SNMP.PSU.STATUS.CRIT:"nonRecoverable"}','6','The critical value of the PSU sensor for the trigger expression.','0','0'), ('7444','10440','{$DELL.SNMP.PSU.STATUS.WARN:"nonCritical"}','4','The warning value of the PSU sensor for the trigger expression.','0','0'), ('7445','10440','{$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"criticalLower"}','8','The critical status of the temperature probe for the trigger expression.','0','0'), ('7446','10440','{$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"criticalUpper"}','5','The critical status of the temperature probe for the trigger expression.','0','0'), ('7447','10440','{$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"nonRecoverableLower"}','9','The critical status of the temperature probe for the trigger expression.','0','0'), ('7448','10440','{$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"nonRecoverableUpper"}','6','The critical status of the temperature probe for the trigger expression.','0','0'), ('7449','10440','{$DELL.SNMP.SENSOR.TEMP.STATUS.OK}','3','The OK status of the temperature probe for the trigger expression.','0','0'), ('7450','10440','{$DELL.SNMP.SENSOR.TEMP.STATUS.WARN:"nonCriticalLower"}','7','The warning status of the temperature probe for the trigger expression.','0','0'), ('7451','10440','{$DELL.SNMP.SENSOR.TEMP.STATUS.WARN:"nonCriticalUpper"}','4','The warning status of the temperature probe for the trigger expression.','0','0'), ('7452','10440','{$DELL.SNMP.TIMEOUT}','5m','The time interval for the SNMP agent availability trigger expression.','0','0'), ('7453','10440','{$DELL.SNMP.VDISK.STATUS.CRIT:"failed"}','3','The critical status of the virtual disk for the trigger expression.','0','0'), ('7454','10440','{$DELL.SNMP.VDISK.STATUS.WARN:"degraded"}','4','The warning status of the virtual disk for the trigger expression.','0','0'), ('7455','10441','{$DELL.HTTP.API.PASSWORD}','','The Dell iDRAC user password.','1','0'), ('7456','10441','{$DELL.HTTP.API.URL}','','The Dell iDRAC Redfish API URL in the format `://:`.','0','0'), ('7457','10441','{$DELL.HTTP.API.USER}','','The Dell iDRAC username.','0','0'), ('7458','10441','{$DELL.HTTP.CPU.UTIL.HIGH}','90','Sets the percentage threshold for creating a "high" severity event about CPU utilization.','0','0'), ('7459','10441','{$DELL.HTTP.CPU.UTIL.WARN}','75','Sets the percentage threshold for creating a "warning" severity event about CPU utilization.','0','0'), ('7460','10441','{$DELL.HTTP.IFCONTROL}','1','Link status trigger will be fired only for interfaces that have the context macro equal to "1".','0','0'), ('7461','10441','{$DELL.HTTP.IO.UTIL.HIGH}','90','Sets the percentage threshold for creating a "high" severity event about IO utilization.','0','0'), ('7462','10441','{$DELL.HTTP.IO.UTIL.WARN}','75','Sets the percentage threshold for creating a "warning" severity event about IO utilization.','0','0'), ('7463','10441','{$DELL.HTTP.MEM.UTIL.HIGH}','90','Sets the percentage threshold for creating a "high" severity event about memory utilization.','0','0'), ('7464','10441','{$DELL.HTTP.MEM.UTIL.WARN}','75','Sets the percentage threshold for creating a "warning" severity event about memory utilization.','0','0'), ('7465','10441','{$DELL.HTTP.PROXY}','','Set an HTTP proxy for Redfish API requests if needed.','0','0'), ('7466','10441','{$DELL.HTTP.REQUEST.TIMEOUT}','10s','Set the timeout for HTTP requests.','0','0'), ('7467','10441','{$DELL.HTTP.RETURN.CODE.OK}','200','Set the HTTP return code that represents an OK response from the API. The default is "200", but can vary, for example, if a proxy is used.','0','0'), ('7468','10441','{$DELL.HTTP.SYS.UTIL.HIGH}','90','Sets the percentage threshold for creating a "high" severity event about SYS utilization.','0','0'), ('7469','10441','{$DELL.HTTP.SYS.UTIL.WARN}','75','Sets the percentage threshold for creating a "warning" severity event about SYS utilization.','0','0'), ('7470','10442','{$DELL.SNMP.DISCOVERY.VOLTAGE.NAME.MATCHES}','^.*Voltage.*$','Sets the regex string of voltage probe names to allow in discovery.','0','0'), ('7471','10442','{$DELL.SNMP.DISCOVERY.VOLTAGE.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the regex string of voltage probe names to ignore in discovery.','0','0'), ('7472','10442','{$DELL.SNMP.DISCOVERY.VOLTAGE.TYPE.MATCHES}','18|16','Sets the regex string of voltage probe types to allow in discovery.','0','0'), ('7473','10442','{$DELL.SNMP.DISCOVERY.VOLTAGE.TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the regex string of voltage probe types to ignore in discovery.','0','0'), ('7474','10442','{$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT}','3','The critical status of the disk array cache battery for the trigger expression.','0','0'), ('7475','10442','{$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.OK}','2','The OK status of the disk array cache battery for the trigger expression.','0','0'), ('7476','10442','{$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.WARN}','4','The warning status of the disk array cache battery for the trigger expression.','0','0'), ('7477','10442','{$DELL.SNMP.DISK.ARRAY.STATUS.CRIT}','5','The critical status of the disk array for the trigger expression.','0','0'), ('7478','10442','{$DELL.SNMP.DISK.ARRAY.STATUS.FAIL}','6','The disaster status of the disk array for the trigger expression.','0','0'), ('7479','10442','{$DELL.SNMP.DISK.ARRAY.STATUS.WARN}','4','The warning status of the disk array for the trigger expression.','0','0'), ('7480','10442','{$DELL.SNMP.DISK.SMART.STATUS.FAIL}','1','The critical S.M.A.R.T status of the disk for the trigger expression.','0','0'), ('7481','10442','{$DELL.SNMP.DISK.STATUS.FAIL:"critical"}','5','The critical status of the disk for the trigger expression.','0','0'), ('7482','10442','{$DELL.SNMP.DISK.STATUS.FAIL:"nonRecoverable"}','6','The critical status of the disk for the trigger expression.','0','0'), ('7483','10442','{$DELL.SNMP.DISK.STATUS.WARN:"nonCritical"}','4','The warning status of the disk for the trigger expression.','0','0'), ('7484','10442','{$DELL.SNMP.FAN.STATUS.CRIT:"criticalLower"}','8','The critical value of the FAN sensor for the trigger expression.','0','0'), ('7485','10442','{$DELL.SNMP.FAN.STATUS.CRIT:"criticalUpper"}','5','The critical value of the FAN sensor for the trigger expression.','0','0'), ('7486','10442','{$DELL.SNMP.FAN.STATUS.CRIT:"failed"}','10','The critical value of the FAN sensor for the trigger expression.','0','0'), ('7487','10442','{$DELL.SNMP.FAN.STATUS.CRIT:"nonRecoverableLower"}','9','The critical value of the FAN sensor for the trigger expression.','0','0'), ('7488','10442','{$DELL.SNMP.FAN.STATUS.CRIT:"nonRecoverableUpper"}','6','The critical value of the FAN sensor for the trigger expression.','0','0'), ('7489','10442','{$DELL.SNMP.FAN.STATUS.WARN:"nonCriticalLower"}','7','The warning value of the FAN sensor for the trigger expression.','0','0'), ('7490','10442','{$DELL.SNMP.FAN.STATUS.WARN:"nonCriticalUpper"}','4','The warning value of the FAN sensor for the trigger expression.','0','0'), ('7491','10442','{$DELL.SNMP.HEALTH.STATUS.CRIT}','5','The critical status of health for the trigger expression.','0','0'), ('7492','10442','{$DELL.SNMP.HEALTH.STATUS.DISASTER}','6','The disaster status of health for the trigger expression.','0','0'), ('7493','10442','{$DELL.SNMP.HEALTH.STATUS.WARN}','4','The warning status of health for the trigger expression.','0','0'), ('7494','10442','{$DELL.SNMP.IFCONTROL}','1','The link status trigger will be fired only for interfaces that have the context macro equal to "1".','0','0'), ('7495','10442','{$DELL.SNMP.PSU.STATUS.CRIT:"critical"}','5','The critical value of the PSU sensor for the trigger expression.','0','0'), ('7496','10442','{$DELL.SNMP.PSU.STATUS.CRIT:"nonRecoverable"}','6','The critical value of the PSU sensor for the trigger expression.','0','0'), ('7497','10442','{$DELL.SNMP.PSU.STATUS.WARN:"nonCritical"}','4','The warning value of the PSU sensor for the trigger expression.','0','0'), ('7498','10442','{$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"criticalLower"}','8','The critical status of the temperature probe for the trigger expression.','0','0'), ('7499','10442','{$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"criticalUpper"}','5','The critical status of the temperature probe for the trigger expression.','0','0'), ('7500','10442','{$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"nonRecoverableLower"}','9','The critical status of the temperature probe for the trigger expression.','0','0'), ('7501','10442','{$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"nonRecoverableUpper"}','6','The critical status of the temperature probe for the trigger expression.','0','0'), ('7502','10442','{$DELL.SNMP.SENSOR.TEMP.STATUS.OK}','3','The OK status of the temperature probe for the trigger expression.','0','0'), ('7503','10442','{$DELL.SNMP.SENSOR.TEMP.STATUS.WARN:"nonCriticalLower"}','7','The warning status of the temperature probe for the trigger expression.','0','0'), ('7504','10442','{$DELL.SNMP.SENSOR.TEMP.STATUS.WARN:"nonCriticalUpper"}','4','The warning status of the temperature probe for the trigger expression.','0','0'), ('7505','10442','{$DELL.SNMP.TIMEOUT}','5m','The time interval for the SNMP agent availability trigger expression.','0','0'), ('7506','10442','{$DELL.SNMP.VDISK.STATUS.CRIT:"failed"}','3','The critical status of the virtual disk for the trigger expression.','0','0'), ('7507','10442','{$DELL.SNMP.VDISK.STATUS.WARN:"degraded"}','4','The warning status of the virtual disk for the trigger expression.','0','0'), ('7508','10255','{$DELL.SNMP.DISCOVERY.VOLTAGE.NAME.MATCHES}','^.*Voltage.*$','Sets the regex string of voltage probe names to allow in discovery.','0','0'), ('7509','10255','{$DELL.SNMP.DISCOVERY.VOLTAGE.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the regex string of voltage probe names to ignore in discovery.','0','0'), ('7510','10255','{$DELL.SNMP.DISCOVERY.VOLTAGE.TYPE.MATCHES}','18|16','Sets the regex string of voltage probe types to allow in discovery.','0','0'), ('7511','10255','{$DELL.SNMP.DISCOVERY.VOLTAGE.TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the regex string of voltage probe types to ignore in discovery.','0','0'), ('7512','10255','{$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT}','3','The critical status of the disk array cache battery for the trigger expression.','0','0'), ('7513','10255','{$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.OK}','2','The OK status of the disk array cache battery for the trigger expression.','0','0'), ('7514','10255','{$DELL.SNMP.DISK.ARRAY.CACHE.BATTERY.STATUS.WARN}','4','The warning status of the disk array cache battery for the trigger expression.','0','0'), ('7515','10255','{$DELL.SNMP.DISK.ARRAY.STATUS.CRIT}','5','The critical status of the disk array for the trigger expression.','0','0'), ('7516','10255','{$DELL.SNMP.DISK.ARRAY.STATUS.FAIL}','6','The disaster status of the disk array for the trigger expression.','0','0'), ('7517','10255','{$DELL.SNMP.DISK.ARRAY.STATUS.WARN}','4','The warning status of the disk array for the trigger expression.','0','0'), ('7518','10255','{$DELL.SNMP.DISK.SMART.STATUS.FAIL}','1','The critical S.M.A.R.T status of the disk for the trigger expression.','0','0'), ('7519','10255','{$DELL.SNMP.DISK.STATUS.FAIL:"critical"}','5','The critical status of the disk for the trigger expression.','0','0'), ('7520','10255','{$DELL.SNMP.DISK.STATUS.FAIL:"nonRecoverable"}','6','The critical status of the disk for the trigger expression.','0','0'), ('7521','10255','{$DELL.SNMP.DISK.STATUS.WARN:"nonCritical"}','4','The warning status of the disk for the trigger expression.','0','0'), ('7522','10255','{$DELL.SNMP.FAN.STATUS.CRIT:"criticalLower"}','8','The critical value of the FAN sensor for the trigger expression.','0','0'), ('7523','10255','{$DELL.SNMP.FAN.STATUS.CRIT:"criticalUpper"}','5','The critical value of the FAN sensor for the trigger expression.','0','0'), ('7524','10255','{$DELL.SNMP.FAN.STATUS.CRIT:"failed"}','10','The critical value of the FAN sensor for the trigger expression.','0','0'), ('7525','10255','{$DELL.SNMP.FAN.STATUS.CRIT:"nonRecoverableLower"}','9','The critical value of the FAN sensor for the trigger expression.','0','0'), ('7526','10255','{$DELL.SNMP.FAN.STATUS.CRIT:"nonRecoverableUpper"}','6','The critical value of the FAN sensor for the trigger expression.','0','0'), ('7527','10255','{$DELL.SNMP.FAN.STATUS.WARN:"nonCriticalLower"}','7','The warning value of the FAN sensor for the trigger expression.','0','0'), ('7528','10255','{$DELL.SNMP.FAN.STATUS.WARN:"nonCriticalUpper"}','4','The warning value of the FAN sensor for the trigger expression.','0','0'), ('7529','10255','{$DELL.SNMP.HEALTH.STATUS.CRIT}','5','The critical status of health for the trigger expression.','0','0'), ('7530','10255','{$DELL.SNMP.HEALTH.STATUS.DISASTER}','6','The disaster status of health for the trigger expression.','0','0'), ('7531','10255','{$DELL.SNMP.HEALTH.STATUS.WARN}','4','The warning status of health for the trigger expression.','0','0'), ('7532','10255','{$DELL.SNMP.IFCONTROL}','1','The link status trigger will be fired only for interfaces that have the context macro equal to "1".','0','0'), ('7533','10255','{$DELL.SNMP.PSU.STATUS.CRIT:"critical"}','5','The critical value of the PSU sensor for the trigger expression.','0','0'), ('7534','10255','{$DELL.SNMP.PSU.STATUS.CRIT:"nonRecoverable"}','6','The critical value of the PSU sensor for the trigger expression.','0','0'), ('7535','10255','{$DELL.SNMP.PSU.STATUS.WARN:"nonCritical"}','4','The warning value of the PSU sensor for the trigger expression.','0','0'), ('7536','10255','{$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"criticalLower"}','8','The critical status of the temperature probe for the trigger expression.','0','0'), ('7537','10255','{$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"criticalUpper"}','5','The critical status of the temperature probe for the trigger expression.','0','0'), ('7538','10255','{$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"nonRecoverableLower"}','9','The critical status of the temperature probe for the trigger expression.','0','0'), ('7539','10255','{$DELL.SNMP.SENSOR.TEMP.STATUS.CRIT:"nonRecoverableUpper"}','6','The critical status of the temperature probe for the trigger expression.','0','0'), ('7540','10255','{$DELL.SNMP.SENSOR.TEMP.STATUS.OK}','3','The OK status of the temperature probe for the trigger expression.','0','0'), ('7541','10255','{$DELL.SNMP.SENSOR.TEMP.STATUS.WARN:"nonCriticalLower"}','7','The warning status of the temperature probe for the trigger expression.','0','0'), ('7542','10255','{$DELL.SNMP.SENSOR.TEMP.STATUS.WARN:"nonCriticalUpper"}','4','The warning status of the temperature probe for the trigger expression.','0','0'), ('7543','10255','{$DELL.SNMP.TIMEOUT}','5m','The time interval for the SNMP agent availability trigger expression.','0','0'), ('7544','10255','{$DELL.SNMP.VDISK.STATUS.CRIT:"failed"}','3','The critical status of the virtual disk for the trigger expression.','0','0'), ('7545','10255','{$DELL.SNMP.VDISK.STATUS.WARN:"degraded"}','4','The warning status of the virtual disk for the trigger expression.','0','0'), ('7546','10658','{$ZABBIX.PROXY.ADDRESS}','','IP/DNS/network mask list of proxies to be remotely queried (default is 127.0.0.1).','0','0'), ('7547','10658','{$ZABBIX.PROXY.NODATA_TIMEOUT}','5m','The time threshold after which statistics are considered unavailable. Used in trigger expressions.','0','0'), ('7548','10658','{$ZABBIX.PROXY.PORT}','','Port of proxy to be remotely queried (default is 10051).','0','0'), ('7549','10658','{$ZABBIX.PROXY.UTIL.MAX}','75','Default maximum threshold for percentage utilization triggers (use macro context for specification).','0','0'), ('7550','10658','{$ZABBIX.PROXY.UTIL.MIN}','65','Default minimum threshold for percentage utilization triggers (use macro context for specification).','0','0'), ('7551','10659','{$ZABBIX.PROXY.ADDRESS}','','IP/DNS/network mask list of proxies to be remotely queried (default is 127.0.0.1).','0','0'), ('7552','10659','{$ZABBIX.PROXY.NODATA_TIMEOUT}','5m','The time threshold after which statistics are considered unavailable. Used in trigger expressions.','0','0'), ('7553','10659','{$ZABBIX.PROXY.PORT}','','Port of proxy to be remotely queried (default is 10051).','0','0'), ('7554','10659','{$ZABBIX.PROXY.UTIL.MAX}','75','Default maximum threshold for percentage utilization triggers (use macro context for specification).','0','0'), ('7555','10659','{$ZABBIX.PROXY.UTIL.MIN}','65','Default minimum threshold for percentage utilization triggers (use macro context for specification).','0','0'), ('7556','10261','{$ZABBIX.PROXY.LAST_SEEN.MAX}','600','The maximum number of seconds that Zabbix proxy has not been seen.','0','0'), ('7557','10047','{$ZABBIX.PROXY.LAST_SEEN.MAX}','600','The maximum number of seconds that Zabbix proxy has not been seen.','0','0'), ('7558','10660','{$ZABBIX.PROXY.LAST_SEEN.MAX}','600','The maximum number of seconds that Zabbix proxy has not been seen.','0','0'), ('7559','10660','{$ZABBIX.SERVER.ADDRESS}','','IP/DNS/network mask list of servers to be remotely queried (default is 127.0.0.1).','0','0'), ('7560','10660','{$ZABBIX.SERVER.NODATA_TIMEOUT}','5m','The time threshold after which statistics are considered unavailable. Used in trigger expressions.','0','0'), ('7561','10660','{$ZABBIX.SERVER.PORT}','','Port of server to be remotely queried (default is 10051).','0','0'), ('7562','10660','{$ZABBIX.SERVER.UTIL.MAX}','75','Default maximum threshold for percentage utilization triggers (use macro context for specification).','0','0'), ('7563','10660','{$ZABBIX.SERVER.UTIL.MAX:"value cache"}','95','Maximum threshold for value cache utilization triggers.','0','0'), ('7564','10660','{$ZABBIX.SERVER.UTIL.MIN}','65','Default minimum threshold for percentage utilization triggers (use macro context for specification).','0','0'), ('7565','10661','{$ZABBIX.PROXY.LAST_SEEN.MAX}','600','The maximum number of seconds that Zabbix proxy has not been seen.','0','0'), ('7566','10661','{$ZABBIX.SERVER.ADDRESS}','','IP/DNS/network mask list of servers to be remotely queried (default is 127.0.0.1).','0','0'), ('7567','10661','{$ZABBIX.SERVER.NODATA_TIMEOUT}','5m','The time threshold after which statistics are considered unavailable. Used in trigger expression.','0','0'), ('7568','10661','{$ZABBIX.SERVER.PORT}','','Port of server to be remotely queried (default is 10051).','0','0'), ('7569','10661','{$ZABBIX.SERVER.UTIL.MAX}','75','Default maximum threshold for percentage utilization triggers (use macro context for specification).','0','0'), ('7570','10661','{$ZABBIX.SERVER.UTIL.MAX:"value cache"}','95','Maximum threshold for value cache utilization triggers.','0','0'), ('7571','10661','{$ZABBIX.SERVER.UTIL.MIN}','65','Default minimum threshold for percentage utilization triggers (use macro context for specification).','0','0'), ('7572','10606','{$AZURE.SUBSCRIPTION.ID}','','Microsoft Azure subscription ID.','0','0'), ('7573','10662','{$AZURE.APP.ID}','','The App ID of Microsoft Azure.','0','0'), ('7574','10662','{$AZURE.DATA.TIMEOUT}','15s','API response timeout.','0','0'), ('7575','10662','{$AZURE.DB.CPU.UTIL.CRIT}','90','The critical threshold of CPU utilization, expressed in %.','0','0'), ('7576','10662','{$AZURE.DB.DTU.UTIL.CRIT}','90','The critical threshold of DTU utilization, expressed in %.','0','0'), ('7577','10662','{$AZURE.DB.MEMORY.UTIL.CRIT}','90','The critical threshold of memory utilization, expressed in %.','0','0'), ('7578','10662','{$AZURE.DB.STORAGE.PUSED.CRIT}','90','The critical threshold of storage utilization, expressed in %.','0','0'), ('7579','10662','{$AZURE.DB.STORAGE.PUSED.WARN}','80','The warning threshold of storage utilization, expressed in %.','0','0'), ('7580','10662','{$AZURE.PASSWORD}','','Microsoft Azure password.','1','0'), ('7581','10662','{$AZURE.PROXY}','','Sets the HTTP proxy value. If this macro is empty, then no proxy is used.','0','0'), ('7582','10662','{$AZURE.RESOURCE.ID}','','Microsoft Azure SQL DTU-based database ID.','0','0'), ('7583','10662','{$AZURE.SUBSCRIPTION.ID}','','Microsoft Azure subscription ID.','0','0'), ('7584','10662','{$AZURE.TENANT.ID}','','Microsoft Azure tenant ID.','0','0'), ('7585','10663','{$PURE.FLASHARRAY.API.PASSWORD}','','Pure Storage FlashArray Web interface password.','1','0'), ('7586','10663','{$PURE.FLASHARRAY.API.TOKEN}','','Pure Storage FlashArray API token.','1','0'), ('7587','10663','{$PURE.FLASHARRAY.API.URL}','','Pure Storage FlashArray Web interface URL.','0','0'), ('7588','10663','{$PURE.FLASHARRAY.API.USERNAME}','','Pure Storage FlashArray Web interface username.','1','0'), ('7589','10663','{$PURE.FLASHARRAY.API.VERSION}','1.19','Pure Storage FlashArray API version.','0','0'), ('7590','10663','{$PURE.FLASHARRAY.CERT.EXPIRY.WARN}','7','Number of days until the certificate expires.','0','0'), ('7591','10663','{$PURE.FLASHARRAY.CERT.LLD.FILTER.NAME.MATCHES}','.*','Filter of discoverable certificates by name.','0','0'), ('7592','10663','{$PURE.FLASHARRAY.CERT.LLD.FILTER.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discoverable certificates by name.','0','0'), ('7593','10663','{$PURE.FLASHARRAY.CTRL.LLD.FILTER.INDEX.MATCHES}','.*','Filter of discoverable controllers by index.','0','0'), ('7594','10663','{$PURE.FLASHARRAY.CTRL.LLD.FILTER.INDEX.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discoverable controllers by index.','0','0'), ('7595','10663','{$PURE.FLASHARRAY.DATA.TIMEOUT}','15s','Response timeout for the API.','0','0'), ('7596','10663','{$PURE.FLASHARRAY.DRIVE.LLD.FILTER.NAME.MATCHES}','.*','Filter of discoverable storage drives by name.','0','0'), ('7597','10663','{$PURE.FLASHARRAY.DRIVE.LLD.FILTER.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discoverable storage drives by name.','0','0'), ('7598','10663','{$PURE.FLASHARRAY.FAN.LLD.FILTER.INDEX.MATCHES}','.*','Filter of discoverable fans by index.','0','0'), ('7599','10663','{$PURE.FLASHARRAY.FAN.LLD.FILTER.INDEX.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discoverable fans by index.','0','0'), ('7600','10663','{$PURE.FLASHARRAY.HOST.LLD.FILTER.GROUP.MATCHES}','.*','Filter of discoverable hosts by group.','0','0'), ('7601','10663','{$PURE.FLASHARRAY.HOST.LLD.FILTER.GROUP.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discoverable hosts by group.','0','0'), ('7602','10663','{$PURE.FLASHARRAY.HOST.LLD.FILTER.NAME.MATCHES}','.*','Filter of discoverable hosts by name.','0','0'), ('7603','10663','{$PURE.FLASHARRAY.HOST.LLD.FILTER.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discoverable hosts by name.','0','0'), ('7604','10663','{$PURE.FLASHARRAY.HTTP_PROXY}','','HTTP proxy for API requests. You can specify it using the format [protocol://][username[:password]@]proxy.example.com[:port]. For more details, see the documentation at https://www.zabbix.com/documentation/7.0/manual/config/items/itemtypes/http','0','0'), ('7605','10663','{$PURE.FLASHARRAY.NETIF.LLD.FILTER.NAME.MATCHES}','.*','Filter of discoverable network interfaces by name.','0','0'), ('7606','10663','{$PURE.FLASHARRAY.NETIF.LLD.FILTER.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discoverable network interfaces by name.','0','0'), ('7607','10663','{$PURE.FLASHARRAY.POD.LLD.FILTER.NAME.MATCHES}','.*','Filter of discoverable storage pods by name.','0','0'), ('7608','10663','{$PURE.FLASHARRAY.POD.LLD.FILTER.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discoverable storage pods by name.','0','0'), ('7609','10663','{$PURE.FLASHARRAY.POWER.LLD.FILTER.INDEX.MATCHES}','.*','Filter of discoverable power supply components by index.','0','0'), ('7610','10663','{$PURE.FLASHARRAY.POWER.LLD.FILTER.INDEX.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discoverable power supply components by index.','0','0'), ('7611','10663','{$PURE.FLASHARRAY.TEMP.LLD.FILTER.INDEX.MATCHES}','.*','Filter of discoverable temperature sensors by index.','0','0'), ('7612','10663','{$PURE.FLASHARRAY.TEMP.LLD.FILTER.INDEX.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discoverable temperature sensors by index.','0','0'), ('7613','10663','{$PURE.FLASHARRAY.VOLUME.LLD.FILTER.NAME.MATCHES}','.*','Filter of discoverable storage volumes by name.','0','0'), ('7614','10663','{$PURE.FLASHARRAY.VOLUME.LLD.FILTER.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discoverable storage volumes by name.','0','0'), ('7615','10664','{$PURE.FLASHARRAY.API.TOKEN}','','Pure Storage FlashArray API token.','1','0'), ('7616','10664','{$PURE.FLASHARRAY.API.URL}','','Pure Storage FlashArray Web interface URL.','0','0'), ('7617','10664','{$PURE.FLASHARRAY.API.VERSION}','2.36','Pure Storage FlashArray API version.','0','0'), ('7618','10664','{$PURE.FLASHARRAY.CERT.EXPIRY.WARN}','7','Number of days until the certificate expires.','0','0'), ('7619','10664','{$PURE.FLASHARRAY.CERT.LLD.FILTER.NAME.MATCHES}','.*','Filter of discoverable certificates by name.','0','0'), ('7620','10664','{$PURE.FLASHARRAY.CERT.LLD.FILTER.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discoverable certificates by name.','0','0'), ('7621','10664','{$PURE.FLASHARRAY.CTRL.LLD.FILTER.INDEX.MATCHES}','.*','Filter of discoverable controllers by index.','0','0'), ('7622','10664','{$PURE.FLASHARRAY.CTRL.LLD.FILTER.INDEX.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discoverable controllers by index.','0','0'), ('7623','10664','{$PURE.FLASHARRAY.DATA.TIMEOUT}','15s','Response timeout for the API.','0','0'), ('7624','10664','{$PURE.FLASHARRAY.DRIVE.LLD.FILTER.NAME.MATCHES}','.*','Filter of discoverable storage drives by name.','0','0'), ('7625','10664','{$PURE.FLASHARRAY.DRIVE.LLD.FILTER.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discoverable storage drives by name.','0','0'), ('7626','10664','{$PURE.FLASHARRAY.FAN.LLD.FILTER.INDEX.MATCHES}','.*','Filter of discoverable fans by index.','0','0'), ('7627','10664','{$PURE.FLASHARRAY.FAN.LLD.FILTER.INDEX.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discoverable fans by index.','0','0'), ('7628','10664','{$PURE.FLASHARRAY.HOST.LLD.FILTER.GROUP.MATCHES}','.*','Filter of discoverable hosts by group.','0','0'), ('7629','10664','{$PURE.FLASHARRAY.HOST.LLD.FILTER.GROUP.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discoverable hosts by group.','0','0'), ('7630','10664','{$PURE.FLASHARRAY.HOST.LLD.FILTER.NAME.MATCHES}','.*','Filter of discoverable hosts by name.','0','0'), ('7631','10664','{$PURE.FLASHARRAY.HOST.LLD.FILTER.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discoverable hosts by name.','0','0'), ('7632','10664','{$PURE.FLASHARRAY.HTTP_PROXY}','','HTTP proxy for API requests. You can specify it using the format [protocol://][username[:password]@]proxy.example.com[:port]. For more details, see the documentation at https://www.zabbix.com/documentation/7.0/manual/config/items/itemtypes/http','0','0'), ('7633','10664','{$PURE.FLASHARRAY.NETIF.LLD.FILTER.NAME.MATCHES}','.*','Filter of discoverable network interfaces by name.','0','0'), ('7634','10664','{$PURE.FLASHARRAY.NETIF.LLD.FILTER.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discoverable network interfaces by name.','0','0'), ('7635','10664','{$PURE.FLASHARRAY.POD.LLD.FILTER.NAME.MATCHES}','.*','Filter of discoverable storage pods by name.','0','0'), ('7636','10664','{$PURE.FLASHARRAY.POD.LLD.FILTER.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discoverable storage pods by name.','0','0'), ('7637','10664','{$PURE.FLASHARRAY.POWER.LLD.FILTER.INDEX.MATCHES}','.*','Filter of discoverable power supply components by index.','0','0'), ('7638','10664','{$PURE.FLASHARRAY.POWER.LLD.FILTER.INDEX.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discoverable power supply components by index.','0','0'), ('7639','10664','{$PURE.FLASHARRAY.TEMP.LLD.FILTER.INDEX.MATCHES}','.*','Filter of discoverable temperature sensors by index.','0','0'), ('7640','10664','{$PURE.FLASHARRAY.TEMP.LLD.FILTER.INDEX.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discoverable temperature sensors by index.','0','0'), ('7641','10664','{$PURE.FLASHARRAY.VOLUME.LLD.FILTER.NAME.MATCHES}','.*','Filter of discoverable storage volumes by name.','0','0'), ('7642','10664','{$PURE.FLASHARRAY.VOLUME.LLD.FILTER.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discoverable storage volumes by name.','0','0'), ('7643','10531','{$AZURE.VAULT.LOCATION.MATCHES}','.*','This macro is used in Azure Vault discovery rule.','0','0'), ('7644','10531','{$AZURE.VAULT.LOCATION.NOT.MATCHES}','CHANGE_IF_NEEDED','This macro is used in Azure Vault discovery rule.','0','0'), ('7645','10531','{$AZURE.VAULT.NAME.MATCHES}','.*','This macro is used in Azure Vault discovery rule.','0','0'), ('7646','10531','{$AZURE.VAULT.NAME.NOT.MATCHES}','CHANGE_IF_NEEDED','This macro is used in Azure Vault discovery rule.','0','0'), ('7647','10665','{$AZURE.APP.ID}','','The App ID of Microsoft Azure.','0','0'), ('7648','10665','{$AZURE.DATA.TIMEOUT}','15s','API response timeout.','0','0'), ('7649','10665','{$AZURE.JOBS.FRIENDLY.NAME.MATCHES}','.*','Set the regex string to include backup jobs based on `entityFriendlyName`.','0','0'), ('7650','10665','{$AZURE.JOBS.FRIENDLY.NAME.NOT.MATCHES}','CHANGE_IF_NEEDED','Set the regex string to exclude backup jobs based on `entityFriendlyName`.','0','0'), ('7651','10665','{$AZURE.JOBS.OPERATION.MATCHES}','.*','Set the regex string to include backup jobs based on operation type.','0','0'), ('7652','10665','{$AZURE.JOBS.OPERATION.NOT.MATCHES}','CHANGE_IF_NEEDED','Set the regex string to exclude backup jobs based on operation type.','0','0'), ('7653','10665','{$AZURE.JOBS.STATUS.MATCHES}','.*','Set the regex string to include backup jobs based on status.','0','0'), ('7654','10665','{$AZURE.JOBS.STATUS.NOT.MATCHES}','CHANGE_IF_NEEDED','Set the regex string to exclude backup jobs based on status.','0','0'), ('7655','10665','{$AZURE.PASSWORD}','','Microsoft Azure password.','1','0'), ('7656','10665','{$AZURE.PROXY}','','Sets the HTTP proxy value. If this macro is empty, then no proxy is used.','0','0'), ('7657','10665','{$AZURE.RESOURCE.ID}','','Microsoft Azure vault resource ID.','0','0'), ('7658','10665','{$AZURE.SUBSCRIPTION.ID}','','Microsoft Azure subscription ID.','0','0'), ('7659','10665','{$AZURE.TENANT.ID}','','Microsoft Azure tenant ID.','0','0'), ('7660','10665','{$AZURE.VAULT.PERIOD}','7','The number of days over which to retrieve backup jobs.','0','0'), ('7661','10666','{$AZURE.RESOURCE.ID}','{#ID}','','0','0'), ('7662','10518','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('7663','10535','{$AWS.ASSUME.ROLE.AUTH.METADATA}','false','Add when using the `assume_role` through instance metadata or environment authorization method. Possible values: `false`, `true`.','0','0'), ('7664','10582','{$AWS.ASSUME.ROLE.AUTH.METADATA}','false','Add when using the `assume_role` through instance metadata or environment authorization method. Possible values: `false`, `true`.','0','0'), ('7665','10527','{$AWS.ASSUME.ROLE.AUTH.METADATA}','false','Add when using the `assume_role` through instance metadata or environment authorization method. Possible values: `false`, `true`.','0','0'), ('7666','10583','{$AWS.ASSUME.ROLE.AUTH.METADATA}','false','Add when using the `assume_role` through instance metadata or environment authorization method. Possible values: `false`, `true`.','0','0'), ('7667','10584','{$AWS.ASSUME.ROLE.AUTH.METADATA}','false','Add when using the `assume_role` through instance metadata or environment authorization method. Possible values: `false`, `true`.','0','0'), ('7668','10607','{$AWS.ASSUME.ROLE.AUTH.METADATA}','false','Add when using the `assume_role` through instance metadata or environment authorization method. Possible values: `false`, `true`.','0','0'), ('7669','10627','{$AWS.ASSUME.ROLE.AUTH.METADATA}','false','Add when using the `assume_role` through instance metadata or environment authorization method. Possible values: `false`, `true`.','0','0'), ('7670','10632','{$AWS.ASSUME.ROLE.AUTH.METADATA}','false','Add when using the `assume_role` through instance metadata or environment authorization method. Possible values: `false`, `true`.','0','0'), ('7671','10529','{$AWS.ASSUME.ROLE.AUTH.METADATA}','false','Add when using the `assume_role` through instance metadata or environment authorization method. Possible values: `false`, `true`.','0','0'), ('7672','10530','{$AWS.ASSUME.ROLE.AUTH.METADATA}','false','Add when using the `assume_role` through instance metadata or environment authorization method. Possible values: `false`, `true`.','0','0'), ('7673','10667','{$CISCO.FTD.API.PASSWORD}','','Cisco Secure Firewall Threat Defense REST API password.','1','0'), ('7674','10667','{$CISCO.FTD.API.URL}','','Cisco Secure Firewall Threat Defense REST API URL. Format example: `https://ftd.example.com/api/fdm/latest`','0','0'), ('7675','10667','{$CISCO.FTD.API.USERNAME}','','Cisco Secure Firewall Threat Defense REST API username.','0','0'), ('7676','10667','{$CISCO.FTD.CPU.UTIL.WARN}','80','Warning threshold for FTD CPU utilization, expressed as a percentage.','0','0'), ('7677','10667','{$CISCO.FTD.DATA.INTERVAL}','1m','Update interval for the HTTP item that retrieves data from the API. Can be used with context if needed (check the context values in relevant items).','0','0'), ('7678','10667','{$CISCO.FTD.DATA.TIMEOUT}','15s','Response timeout for the Cisco Secure Firewall Threat Defense REST API.','0','0'), ('7679','10667','{$CISCO.FTD.FS.PUSED.WARN}','80','Threshold for the filesystem utilization trigger. Can be used with the filesystem name as context.','0','0'), ('7680','10667','{$CISCO.FTD.HTTP_PROXY}','','HTTP proxy for API requests. You can specify it using the format `[protocol://][username[:password]@]proxy.example.com[:port]`. For more details, see the documentation at https://www.zabbix.com/documentation/7.0/manual/config/items/itemtypes/http','0','0'), ('7681','10667','{$CISCO.FTD.IF.CONTROL}','1','Macro for the operational state of the interface for the "link down" trigger. Can be used with the interface name as context.','0','0'), ('7682','10667','{$CISCO.FTD.IF.ERRORS.WARN}','2','Threshold for the error packet rate warning trigger. Can be used with the interface name as context.','0','0'), ('7683','10667','{$CISCO.FTD.LLD.FILTER.ASP.STATS.NAME.MATCHES}','.*','Filter for discoverable Accelerated Security Path dropped packets or connections by name.','0','0'), ('7684','10667','{$CISCO.FTD.LLD.FILTER.ASP.STATS.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered Accelerated Security Path dropped packets or connections by name.','0','0'), ('7685','10667','{$CISCO.FTD.LLD.FILTER.CONN.STATS.NAME.MATCHES}','.*','Filter for discoverable connections by name.','0','0'), ('7686','10667','{$CISCO.FTD.LLD.FILTER.CONN.STATS.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered connections by name.','0','0'), ('7687','10667','{$CISCO.FTD.LLD.FILTER.CPU.NAME.MATCHES}','.*','Filter for discoverable CPUs by name.','0','0'), ('7688','10667','{$CISCO.FTD.LLD.FILTER.CPU.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered CPUs by name.','0','0'), ('7689','10667','{$CISCO.FTD.LLD.FILTER.FSMOUNT.MATCHES}','.*','Filter for discoverable filesystems by mount point.','0','0'), ('7690','10667','{$CISCO.FTD.LLD.FILTER.FSMOUNT.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered filesystems by mount point.','0','0'), ('7691','10667','{$CISCO.FTD.LLD.FILTER.FSNAME.MATCHES}','.*','Filter for discoverable filesystems by name.','0','0'), ('7692','10667','{$CISCO.FTD.LLD.FILTER.FSNAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered filesystems by name.','0','0'), ('7693','10667','{$CISCO.FTD.LLD.FILTER.IF.DESCR.MATCHES}','.*','Filter for discoverable interface descriptions.','0','0'), ('7694','10667','{$CISCO.FTD.LLD.FILTER.IF.DESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered interfaces by description.','0','0'), ('7695','10667','{$CISCO.FTD.LLD.FILTER.IF.NAME.MATCHES}','.*','Filter for discoverable interface names.','0','0'), ('7696','10667','{$CISCO.FTD.LLD.FILTER.IF.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered interfaces by name.','0','0'), ('7697','10667','{$CISCO.FTD.LLD.FILTER.PROCESS.NAME.MATCHES}','.*','Filter for discoverable processes by name.','0','0'), ('7698','10667','{$CISCO.FTD.LLD.FILTER.PROCESS.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered processes by name.','0','0'), ('7699','10667','{$CISCO.FTD.LLD.FILTER.SENSOR.NAME.MATCHES}','.*','Filter for discoverable temperature sensors by name.','0','0'), ('7700','10667','{$CISCO.FTD.LLD.FILTER.SENSOR.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered temperature sensors by name.','0','0'), ('7701','10667','{$CISCO.FTD.LLD.FILTER.SNORT.ID.MATCHES}','.*','Filter for discoverable Snort and IDS/IPS statistics by name.','0','0'), ('7702','10667','{$CISCO.FTD.LLD.FILTER.SNORT.ID.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered Snort and IDS/IPS statistics by name.','0','0'), ('7703','10667','{$CISCO.FTD.LLD.FILTER.THROUGHPUT.INTERFACE.NAME.MATCHES}','.*','Filter for discoverable throughput interfaces by name.','0','0'), ('7704','10667','{$CISCO.FTD.LLD.FILTER.THROUGHPUT.INTERFACE.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discoverable throughput interfaces by name.','0','0'), ('7705','10667','{$CISCO.FTD.MEMORY.UTIL.WARN}','80','Warning threshold for FTD memory utilization, expressed as a percentage.','0','0'), ('7706','10667','{$CISCO.FTD.TEMP.CRIT}','60','Critical threshold for the temperature sensor trigger. Can be used with the interface name as context.','0','0'), ('7707','10667','{$CISCO.FTD.TEMP.WARN}','50','Warning threshold for the temperature sensor trigger. Can be used with the interface name as context.','0','0'), ('7708','10322','{$ELASTICSEARCH.SINGLE.NODE.JVM.SPACE.MIN}','10G','Minimum free space available to JVM in single node instance in bytes for trigger expression.','0','0'), ('7709','10535','{$AWS.BACKUP_VAULT.LLD.FILTER.NAME.MATCHES}','.*','Filter of discoverable backup vaults by name.','0','0'), ('7710','10535','{$AWS.BACKUP_VAULT.LLD.FILTER.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered backup vaults by name.','0','0'), ('7711','10535','{$AWS.BACKUP_VAULT.LLD.FILTER.REGION.MATCHES}','.*','Filter of discoverable backup vaults by region.','0','0'), ('7712','10535','{$AWS.BACKUP_VAULT.LLD.FILTER.REGION.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered backup vaults by region.','0','0'), ('7713','10668','{$AWS.ACCESS.KEY.ID}','','Access key ID.','0','0'), ('7714','10668','{$AWS.ASSUME.ROLE.ARN}','','ARN assume role; add when using the `assume_role` authorization method.','0','0'), ('7715','10668','{$AWS.ASSUME.ROLE.AUTH.METADATA}','false','Add when using the `assume_role` through instance metadata or environment authorization method. Possible values: `false`, `true`.','0','0'), ('7716','10668','{$AWS.AUTH_TYPE}','access_key','Authorization method. Possible values: `access_key`, `assume_role`, `role_base`.','0','0'), ('7717','10668','{$AWS.BACKUP_JOB.PERIOD}','7','The number of days over which to retrieve backup jobs.','0','0'), ('7718','10668','{$AWS.BACKUP_JOB.RESOURCE_NAME.MATCHES}','.*','Filter of discoverable jobs by resource name.','0','0'), ('7719','10668','{$AWS.BACKUP_JOB.RESOURCE_NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered jobs by resource name.','0','0'), ('7720','10668','{$AWS.BACKUP_JOB.RESOURCE_TYPE.MATCHES}','.*','Filter of discoverable jobs by resource type.','0','0'), ('7721','10668','{$AWS.BACKUP_JOB.RESOURCE_TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered jobs by resource type.','0','0'), ('7722','10668','{$AWS.BACKUP_JOB.STATE.MATCHES}','.*','Filter of discoverable jobs by state.','0','0'), ('7723','10668','{$AWS.BACKUP_JOB.STATE.NOT_MATCHES}','CHANGE_IF_NEEDED','Filter to exclude discovered jobs by state.','0','0'), ('7724','10668','{$AWS.BACKUP_VAULT.NAME}','','AWS backup vault name.','0','0'), ('7725','10668','{$AWS.DATA.TIMEOUT}','60s','API response timeout.','0','0'), ('7726','10668','{$AWS.PROXY}','','Sets the HTTP proxy value. If this macro is empty, no proxy is used.','0','0'), ('7727','10668','{$AWS.REGION}','us-west-1','AWS backup vault region code.','0','0'), ('7728','10668','{$AWS.SECRET.ACCESS.KEY}','','Secret access key.','1','0'), ('7729','10668','{$AWS.STS.REGION}','us-east-1','Region used in assume role request.','0','0'), ('7730','10669','{$AWS.BACKUP_VAULT.NAME}','{#AWS.BACKUP_VAULT.NAME}','Backup vault name.','0','0'), ('7731','10669','{$AWS.REGION}','{#AWS.BACKUP_VAULT.REGION}','Backup vault region code.','0','0'), ('7732','10670','{$ARUBA.CPU.UTIL.MAX}','90','Threshold of CPU utilization expressed in %.','0','0'), ('7733','10670','{$ARUBA.MEMORY.UTIL.MAX}','90','Threshold of memory utilization expressed in %.','0','0'), ('7734','10670','{$ARUBA.POWER.SUPPLY.THR.MAX}','90','Threshold of power utilization expressed in %.','0','0'), ('7735','10670','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('7736','10670','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of average ICMP response time in seconds.','0','0'), ('7737','10670','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('7738','10670','{$IF.UTIL.MAX}','95','','0','0'), ('7739','10670','{$IFCONTROL}','1','','0','0'), ('7740','10670','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','','0','0'), ('7741','10670','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore down(2) administrative status','0','0'), ('7742','10670','{$NET.IF.IFALIAS.MATCHES}','.*','','0','0'), ('7743','10670','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('7744','10670','{$NET.IF.IFDESCR.MATCHES}','.*','','0','0'), ('7745','10670','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('7746','10670','{$NET.IF.IFNAME.MATCHES}','^.*$','','0','0'), ('7747','10670','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filter out loopbacks, nulls, docker veth links and docker0 bridge by default','0','0'), ('7748','10670','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','','0','0'), ('7749','10670','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore notPresent(6)','0','0'), ('7750','10670','{$NET.IF.IFTYPE.MATCHES}','.*','','0','0'), ('7751','10670','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','','0','0'), ('7752','10670','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('7753','10671','{$CIENA.CPU.UTIL.CRIT}','90','Threshold of CPU utilization expressed in %.','0','0'), ('7754','10671','{$CIENA.MEMORY.UTIL.MAX}','90','Threshold of memory utilization expressed in %.','0','0'), ('7755','10671','{$ICMP_LOSS_WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('7756','10671','{$ICMP_RESPONSE_TIME_WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('7757','10671','{$IF.ERRORS.WARN}','2','Warning threshold of error packet rate. Can be used with interface name as context.','0','0'), ('7758','10671','{$IF.UTIL.MAX}','90','Used as a threshold in the interface utilization trigger.','0','0'), ('7759','10671','{$IFCONTROL}','1','Link status trigger will be fired only for interfaces where the context macro equals "1".','0','0'), ('7760','10671','{$NET.IF.IFADMINSTATUS.MATCHES}','^.*','Used in network interface discovery rule filters.','0','0'), ('7761','10671','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}','^2$','Ignore `down(2)` administrative status','0','0'), ('7762','10671','{$NET.IF.IFALIAS.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('7763','10671','{$NET.IF.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('7764','10671','{$NET.IF.IFDESCR.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('7765','10671','{$NET.IF.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('7766','10671','{$NET.IF.IFNAME.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('7767','10671','{$NET.IF.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Filters out `loopbacks`, `nulls`, docker `veth` links and `docker0 bridge` by default.','0','0'), ('7768','10671','{$NET.IF.IFOPERSTATUS.MATCHES}','^.*$','Used for network interface discovery. Can be overridden on the host or linked template level.','0','0'), ('7769','10671','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}','^6$','Ignore `notPresent(6)`','0','0'), ('7770','10671','{$NET.IF.IFTYPE.MATCHES}','.*','Used in network interface discovery rule filters.','0','0'), ('7771','10671','{$NET.IF.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Used in network interface discovery rule filters.','0','0'), ('7772','10671','{$SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('7773','10547','{$MERAKI.GET.INVENTORY.INTERVAL}','12h','The update interval for the script item that retrieves inventory data from API.','0','0'), ('7774','10636','{$HUAWEI.DORADO.DISK.TEMP.MAX.TIME}','5m','The time during which the disk temperature may exceed the threshold.','0','0'), ('7775','10636','{$HUAWEI.DORADO.DISK.TEMP.MAX.WARN}','45','Maximum disk temperature. Can be used with `{#MODEL}` as context.','0','0'), ('7776','10636','{$HUAWEI.DORADO.LUN.IO.TIME.MAX.TIME}','5m','The time during which the average I/O response time of a LUN may exceed the threshold.','0','0'), ('7777','10636','{$HUAWEI.DORADO.LUN.IO.TIME.MAX.WARN}','0.0001','Maximum average I/O response time of a LUN in seconds.','0','0'), ('7778','10636','{$HUAWEI.DORADO.MEM.MAX.TIME}','5m','The time during which memory usage may exceed the threshold.','0','0'), ('7779','10636','{$HUAWEI.DORADO.MEM.MAX.WARN}','90','Maximum percentage of memory used.','0','0'), ('7780','10636','{$HUAWEI.DORADO.TEMP.MAX.TIME}','3m','The time during which the enclosure temperature may exceed the threshold.','0','0'), ('7781','10636','{$HUAWEI.DORADO.TEMP.MAX.WARN}','35','Maximum enclosure temperature.','0','0'), ('7782','10565','{$SMART.DISK.DISCOVERY.TYPE}','name','This macro is responsible for changing how SMART disks get discovered. Only "name" or "id" values allowed.','0','0'), ('7783','10566','{$SMART.DISK.DISCOVERY.TYPE}','name','This macro is responsible for changing how SMART disks get discovered. Only "name" or "id" values allowed.','0','0'), ('7784','10672','{$VYATTA.CPU.USED.HIGH}','95','High severity threshold of CPU utilization.','0','0'), ('7785','10672','{$VYATTA.CPU.USED.WARN}','80','Warning threshold of CPU utilization.','0','0'), ('7786','10672','{$VYATTA.DISCOVERY.CPU.MATCHES}',E'^.+\\.3$','Sets the OID regex filter to use in CPU discovery for including. Matches `hrDeviceProcessor` from MIB: HOST-RESOURCES-TYPES - the device type identifier used for a CPU.','0','0'), ('7787','10672','{$VYATTA.DISCOVERY.CPU.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the OID regex filter to use in CPU discovery for excluding. Matches `hrDeviceProcessor` from MIB: HOST-RESOURCES-TYPES - the device type identifier used for a CPU.','0','0'), ('7788','10672','{$VYATTA.DISCOVERY.IFACE.ADMINSTATUS.MATCHES}','.*','Sets the administrative status regex filter to use in network interface discovery for including.','0','0'), ('7789','10672','{$VYATTA.DISCOVERY.IFACE.ADMINSTATUS.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the administrative status regex filter to use in network interface discovery for excluding.','0','0'), ('7790','10672','{$VYATTA.DISCOVERY.IFACE.IFALIAS.MATCHES}','.*','Sets the alias regex filter to use in network interface discovery for including.','0','0'), ('7791','10672','{$VYATTA.DISCOVERY.IFACE.IFALIAS.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the alias regex filter to use in network interface discovery for excluding.','0','0'), ('7792','10672','{$VYATTA.DISCOVERY.IFACE.IFDESCR.MATCHES}','.*','Sets the description regex filter to use in network interface discovery for including.','0','0'), ('7793','10672','{$VYATTA.DISCOVERY.IFACE.IFDESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the description regex filter to use in network interface discovery for excluding.','0','0'), ('7794','10672','{$VYATTA.DISCOVERY.IFACE.IFNAME.MATCHES}','^.*$','Sets the name regex filter to use in network interface discovery for including.','0','0'), ('7795','10672','{$VYATTA.DISCOVERY.IFACE.IFNAME.NOT_MATCHES}','(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9a-z]+$|docker[0-9]+|br-[a-z0-9]{12})','Sets the name regex filter to use in network interface discovery for excluding. Filters out `loopbacks`, `nulls`, docker `veth` links, and `docker0 bridge` by default.','0','0'), ('7796','10672','{$VYATTA.DISCOVERY.IFACE.IFOPERSTATUS.MATCHES}','^.*$','Sets the operative status regex filter to use in network interface discovery for including.','0','0'), ('7797','10672','{$VYATTA.DISCOVERY.IFACE.IFOPERSTATUS.NOT_MATCHES}','^6$','Sets the operative status regex filter to use in network interface discovery for excluding. Ignore `notPresent(6)`.','0','0'), ('7798','10672','{$VYATTA.DISCOVERY.IFACE.IFTYPE.MATCHES}','.*','Sets the type regex filter to use in network interface discovery for including.','0','0'), ('7799','10672','{$VYATTA.DISCOVERY.IFACE.IFTYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the type regex filter to use in network interface discovery for excluding.','0','0'), ('7800','10672','{$VYATTA.DISCOVERY.STORAGE.NAME.MATCHES}','.*','Sets the name regex filter to use in storage discovery for including.','0','0'), ('7801','10672','{$VYATTA.DISCOVERY.STORAGE.NAME.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the name regex filter to use in storage discovery for excluding.','0','0'), ('7802','10672','{$VYATTA.DISCOVERY.STORAGE.TYPE.MATCHES}',E'.*(\\.4|hrStorageFixedDisk)$','Sets the type regex filter to use in storage discovery for including.','0','0'), ('7803','10672','{$VYATTA.DISCOVERY.STORAGE.TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets the type regex filter to use in storage discovery for excluding.','0','0'), ('7804','10672','{$VYATTA.ICMP.LOSS.WARN}','20','Warning threshold of ICMP packet loss in %.','0','0'), ('7805','10672','{$VYATTA.ICMP.RESPONSE.TIME.WARN}','0.15','Warning threshold of the average ICMP response time in seconds.','0','0'), ('7806','10672','{$VYATTA.IFCONTROL}','1','Macro for the operational state of the interface for the link down trigger. Can be used with the interface name as context.','0','0'), ('7807','10672','{$VYATTA.MEMORY.USED.HIGH}','95','High severity threshold of memory utilization.','0','0'), ('7808','10672','{$VYATTA.MEMORY.USED.WARN}','80','Warning threshold of memory utilization.','0','0'), ('7809','10672','{$VYATTA.SNMP.TIMEOUT}','5m','Time interval for the SNMP availability trigger.','0','0'), ('7810','10672','{$VYATTA.STORAGE.USED.HIGH}','95','High severity threshold of storage utilization.','0','0'), ('7811','10672','{$VYATTA.STORAGE.USED.WARN}','80','Warning threshold of storage utilization.','0','0'), ('7812','10609','{$MSSQL.JOB_DURATION.WARN}','1h','The maximum job duration - for the Warning trigger expression.','0','0'), ('7813','10327','{$MSSQL.JOB_DURATION.WARN}','1h','The maximum job duration - for the Warning trigger expression.','0','0'), ('7814','10673','{$SNS.CPU.UTIL.CRIT}','95','Threshold of CPU utilization for Critical trigger in %.','0','0'), ('7815','10673','{$SNS.CPU.UTIL.WARN}','85','Threshold of CPU utilization for Warning trigger in %.','0','0'), ('7816','10673','{$SNS.DISK.FREE.CRIT}','10','Threshold of free disk space for Critical trigger in %.','0','0'), ('7817','10673','{$SNS.DISK.FREE.WARN}','20','Threshold of free disk space for Warning trigger in %.','0','0'), ('7818','10673','{$SNS.ICMP.LOSS.WARN}','20','Threshold of ICMP packet loss for Warning trigger in %.','0','0'), ('7819','10673','{$SNS.ICMP.RESPONSE.TIME.WARN}','0.15','Threshold of average ICMP response time for Warning trigger in seconds.','0','0'), ('7820','10673','{$SNS.MEMORY.UTIL.MAX}','90','Threshold for memory utilization trigger in %.','0','0'), ('7821','10673','{$SNS.NET.IF.IFNAME.MATCHES}','.*','Sets regex string of network interface names to allow in discovery.','0','0'), ('7822','10673','{$SNS.NET.IF.IFNAME.NOT_MATCHES}','^(sslvpn|ipsec)','Sets regex string of network interface names to ignore in discovery.','0','0'), ('7823','10673','{$SNS.SNMP.INTERVAL}','1m','Time interval for SNMP agent items.','0','0'), ('7824','10673','{$SNS.SNMP.TIMEOUT}','5m','Time interval for SNMP availability trigger.','0','0'), ('7825','10673','{$SNS.STORAGE.DESCR.MATCHES}','^(/data|/log)$','Sets regex string of storage descriptions to allow in discovery.','0','0'), ('7826','10673','{$SNS.STORAGE.DESCR.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets regex string of storage descriptions to ignore in discovery.','0','0'), ('7827','10673','{$SNS.STORAGE.TYPE.MATCHES}','.1.3.6.1.2.1.25.2.1.4','Sets regex string of storage types to allow in discovery.','0','0'), ('7828','10673','{$SNS.STORAGE.TYPE.NOT_MATCHES}','CHANGE_IF_NEEDED','Sets regex string of storage types to ignore in discovery.','0','0'), ('7829','10534','{$HPE.SYNERGY.API.LOGIN_DOMAIN}','LOCAL','User domain.','0','0'); INSERT INTO hosts_groups (hostgroupid,hostid,groupid) VALUES ('92','10084','4'), ('176','10169','12'), ('188','10048','12'), ('189','10047','12'), ('191','10076','10'), ('192','10075','10'), ('193','10077','10'), ('194','10001','10'), ('195','10079','10'), ('196','10074','10'), ('197','10078','10'), ('198','10081','10'), ('199','10171','11'), ('200','10172','11'), ('233','10207','9'), ('234','10208','9'), ('236','10210','9'), ('237','10211','9'), ('244','10218','9'), ('246','10220','9'), ('247','10221','9'), ('248','10222','9'), ('249','10223','9'), ('250','10224','9'), ('252','10226','9'), ('253','10227','9'), ('255','10229','9'), ('256','10230','9'), ('257','10231','9'), ('259','10233','9'), ('260','10234','9'), ('261','10235','9'), ('262','10236','9'), ('263','10237','9'), ('274','10248','10'), ('275','10249','10'), ('276','10250','9'), ('277','10251','9'), ('279','10253','9'), ('280','10254','9'), ('281','10255','11'), ('282','10256','11'), ('284','10258','11'), ('285','10259','11'), ('286','10260','12'), ('287','10261','12'), ('288','10262','12'), ('290','10264','12'), ('291','10265','12'), ('292','10266','12'), ('293','10267','12'), ('311','10285','10'), ('326','10300','12'), ('327','10301','12'), ('328','10302','12'), ('329','10303','12'), ('330','10304','11'), ('334','10308','12'), ('335','10309','12'), ('336','10310','13'), ('342','10316','13'), ('343','10317','13'), ('344','10318','12'), ('345','10319','12'), ('346','10320','13'), ('347','10321','11'), ('348','10322','12'), ('349','10323','13'), ('350','10324','12'), ('351','10325','12'), ('352','10326','12'), ('353','10327','13'), ('354','10328','13'), ('355','10329','13'), ('356','10330','12'), ('357','10331','12'), ('359','10173','12'), ('360','10174','12'), ('361','10175','12'), ('362','10335','13'), ('363','10336','15'), ('370','10343','10'), ('378','10351','10'), ('380','10353','12'), ('384','10357','13'), ('385','10358','12'), ('386','10359','12'), ('387','10360','12'), ('388','10361','12'), ('389','10362','12'), ('390','10363','12'), ('391','10364','12'), ('392','10365','12'), ('393','10366','12'), ('394','10369','12'), ('395','10370','13'), ('403','10378','16'), ('404','10379','12'), ('405','10380','17'), ('406','10381','13'), ('407','10382','12'), ('410','10385','16'), ('411','10386','13'), ('412','10387','13'), ('418','10395','18'), ('419','10396','16'), ('420','10397','13'), ('421','10398','13'), ('422','10399','13'), ('423','10400','18'), ('424','10401','18'), ('425','10402','18'), ('426','10403','18'), ('427','10404','18'), ('429','10406','18'), ('430','10407','18'), ('431','10408','18'), ('432','10409','18'), ('433','10410','12'), ('434','10411','12'), ('435','10412','18'), ('436','10413','12'), ('437','10414','12'), ('438','10415','12'), ('439','10416','12'), ('440','10417','13'), ('441','10418','9'), ('442','10419','9'), ('443','10420','9'), ('444','10421','9'), ('445','10422','9'), ('446','10423','9'), ('447','10424','9'), ('448','10425','9'), ('449','10426','9'), ('450','10427','9'), ('451','10428','9'), ('452','10429','9'), ('453','10430','9'), ('454','10431','9'), ('455','10432','9'), ('456','10433','9'), ('457','10434','11'), ('458','10435','11'), ('459','10436','11'), ('460','10437','11'), ('461','10438','11'), ('462','10439','11'), ('463','10440','11'), ('464','10441','11'), ('465','10442','11'), ('466','10443','11'), ('467','10444','11'), ('468','10445','11'), ('469','10446','11'), ('470','10447','12'), ('471','10448','12'), ('472','10449','9'), ('473','10450','9'), ('474','10451','9'), ('475','10452','9'), ('476','10453','9'), ('477','10454','9'), ('478','10455','9'), ('479','10456','9'), ('480','10457','9'), ('481','10458','9'), ('482','10459','9'), ('483','10460','9'), ('484','10461','9'), ('485','10462','9'), ('486','10463','9'), ('487','10464','9'), ('488','10465','9'), ('489','10466','9'), ('490','10467','9'), ('491','10468','9'), ('492','10469','9'), ('493','10470','9'), ('494','10471','9'), ('495','10472','9'), ('496','10473','9'), ('497','10474','9'), ('498','10475','9'), ('499','10476','9'), ('500','10477','9'), ('501','10478','9'), ('502','10479','9'), ('503','10480','9'), ('504','10481','9'), ('505','10482','9'), ('506','10483','9'), ('507','10484','9'), ('508','10485','9'), ('509','10486','9'), ('510','10487','9'), ('511','10488','9'), ('512','10489','9'), ('513','10490','9'), ('514','10491','9'), ('515','10492','9'), ('516','10493','9'), ('517','10494','9'), ('518','10495','9'), ('519','10496','9'), ('520','10497','9'), ('521','10498','9'), ('522','10499','9'), ('523','10500','9'), ('524','10501','9'), ('525','10502','9'), ('526','10503','9'), ('527','10504','12'), ('528','10505','12'), ('529','10506','12'), ('530','10507','12'), ('531','10509','12'), ('532','10510','12'), ('533','10515','12'), ('534','10390','9'), ('535','10391','9'), ('536','10392','9'), ('537','10393','9'), ('538','10394','9'), ('539','10355','12'), ('540','10371','9'), ('541','10372','9'), ('542','10373','9'), ('543','10374','9'), ('544','10375','9'), ('545','10376','9'), ('546','10377','9'), ('547','10516','12'), ('548','10517','12'), ('549','10518','12'), ('550','10519','13'), ('551','10520','12'), ('552','10521','12'), ('553','10522','12'), ('554','10524','16'), ('555','10525','16'), ('556','10526','16'), ('557','10527','21'), ('558','10528','12'), ('559','10529','21'), ('560','10530','21'), ('561','10531','21'), ('562','10532','21'), ('563','10534','11'), ('564','10535','21'), ('565','10539','21'), ('566','10540','21'), ('568','10543','21'), ('569','10544','21'), ('570','10546','12'), ('571','10546','9'), ('572','10547','12'), ('573','10547','9'), ('574','10548','12'), ('575','10548','9'), ('576','10551','9'), ('577','10552','12'), ('578','10553','12'), ('579','10555','12'), ('580','10556','12'), ('581','10557','21'), ('582','10558','21'), ('583','10560','12'), ('584','10561','12'), ('585','10562','12'), ('586','10563','9'), ('587','10564','9'), ('588','10565','11'), ('589','10566','11'), ('590','10568','21'), ('591','10570','21'), ('592','10571','21'), ('593','10572','21'), ('594','10573','21'), ('595','10574','21'), ('596','10575','21'), ('597','10576','21'), ('598','10577','21'), ('599','10582','21'), ('600','10583','21'), ('601','10584','21'), ('602','10586','21'), ('603','10587','21'), ('604','10589','13'), ('605','10590','12'), ('606','10590','9'), ('607','10591','12'), ('608','10591','9'), ('609','10593','12'), ('610','10594','12'), ('611','10595','12'), ('612','10596','12'), ('613','10599','12'), ('614','10600','12'), ('615','10602','12'), ('616','10603','9'), ('617','10604','9'), ('618','10605','11'), ('619','10606','21'), ('620','10607','21'), ('621','10609','13'), ('622','10610','13'), ('623','10611','13'), ('624','10613','9'), ('625','10614','21'), ('626','10615','21'), ('627','10616','21'), ('628','10617','21'), ('629','10618','21'), ('630','10619','21'), ('631','10620','21'), ('632','10627','21'), ('633','10628','12'), ('634','10629','12'), ('635','10630','21'), ('636','10632','21'), ('637','10634','12'), ('638','10635','12'), ('639','10636','16'), ('640','10637','12'), ('641','10638','12'), ('642','10639','12'), ('643','10640','12'), ('644','10641','12'), ('645','10642','12'), ('646','10645','12'), ('647','10646','13'), ('648','10647','13'), ('649','10648','13'), ('650','10649','13'), ('651','10650','9'), ('652','10651','21'), ('653','10653','9'), ('654','10654','11'), ('655','10655','11'), ('656','10656','11'), ('657','10657','11'), ('658','10658','12'), ('659','10659','12'), ('660','10660','12'), ('661','10661','12'), ('662','10662','21'), ('663','10663','16'), ('664','10664','16'), ('665','10665','21'), ('666','10667','9'), ('667','10668','21'), ('668','10670','9'), ('669','10671','9'), ('670','10672','9'), ('671','10673','9'), ('672','10673','10'); INSERT INTO hosts_templates (hosttemplateid,hostid,templateid,link_type) VALUES ('38','10084','10047','0'), ('39','10084','10001','0'), ('290','10333','10175','0'), ('291','10334','10174','0'), ('308','10367','10175','0'), ('309','10368','10174','0'), ('312','10388','10386','0'), ('313','10389','10386','0'), ('425','10511','10504','0'), ('426','10512','10505','0'), ('427','10513','10509','0'), ('428','10514','10506','0'), ('429','10523','10521','0'), ('430','10533','10532','0'), ('431','10536','10527','0'), ('432','10537','10529','0'), ('433','10538','10530','0'), ('434','10549','10547','0'), ('435','10550','10548','0'), ('436','10554','10553','0'), ('437','10567','10001','0'), ('438','10578','10571','0'), ('439','10579','10573','0'), ('440','10580','10575','0'), ('441','10581','10577','0'), ('442','10588','10587','0'), ('443','10592','10591','0'), ('444','10597','10595','0'), ('445','10598','10596','0'), ('446','10601','10600','0'), ('448','10612','10611','0'), ('449','10621','10615','0'), ('450','10622','10616','0'), ('451','10623','10618','0'), ('452','10624','10614','0'), ('453','10625','10620','0'), ('454','10626','10619','0'), ('455','10631','10630','0'), ('456','10633','10632','0'), ('457','10643','10640','0'), ('458','10644','10641','0'), ('459','10652','10651','0'), ('460','10666','10665','0'), ('461','10669','10668','0'); INSERT INTO valuemap_mapping (valuemap_mappingid,valuemapid,value,newvalue,type,sortorder) VALUES ('25','13','0','Down','0','0'), ('26','13','1','Up','0','1'), ('27','14','0','Down','0','0'), ('28','14','1','Up','0','1'), ('29','15','0','Down','0','0'), ('30','15','1','Up','0','1'), ('31','16','0','Down','0','0'), ('32','16','1','Up','0','1'), ('33','17','0','Down','0','0'), ('34','17','1','Up','0','1'), ('35','18','0','Down','0','0'), ('36','18','1','Up','0','1'), ('37','19','0','Down','0','0'), ('38','19','1','Up','0','1'), ('39','20','0','Down','0','0'), ('40','20','1','Up','0','1'), ('41','21','0','Down','0','0'), ('42','21','1','Up','0','1'), ('43','22','0','Down','0','0'), ('44','22','1','Up','0','1'), ('45','23','0','Down','0','0'), ('46','23','1','Up','0','1'), ('47','24','0','Down','0','0'), ('48','24','1','Up','0','1'), ('49','25','0','Down','0','0'), ('50','25','1','Up','0','1'), ('51','26','0','Down','0','0'), ('52','26','1','Up','0','1'), ('53','27','0','Down','0','0'), ('54','27','1','Up','0','1'), ('55','28','0','Down','0','0'), ('56','28','1','Up','0','1'), ('57','29','0','Down','0','0'), ('58','29','1','Up','0','1'), ('59','30','0','Down','0','0'), ('60','30','1','Up','0','1'), ('61','31','0','Down','0','0'), ('62','31','1','Up','0','1'), ('63','32','0','Down','0','0'), ('64','32','1','Up','0','1'), ('65','33','0','Down','0','0'), ('66','33','1','Up','0','1'), ('67','34','0','Down','0','0'), ('68','34','1','Up','0','1'), ('69','35','0','Down','0','0'), ('70','35','1','Up','0','1'), ('71','36','0','Down','0','0'), ('72','36','1','Up','0','1'), ('73','37','0','Down','0','0'), ('74','37','1','Up','0','1'), ('75','38','0','Down','0','0'), ('76','38','1','Up','0','1'), ('77','39','0','Down','0','0'), ('78','39','1','Up','0','1'), ('79','40','0','Down','0','0'), ('80','40','1','Up','0','1'), ('81','41','0','Down','0','0'), ('82','41','1','Up','0','1'), ('83','42','0','Down','0','0'), ('84','42','1','Up','0','1'), ('85','43','0','Down','0','0'), ('86','43','1','Up','0','1'), ('87','44','0','Down','0','0'), ('88','44','1','Up','0','1'), ('98','46','0','Running','0','0'), ('99','46','1','Paused','0','1'), ('100','46','3','Pause pending','0','3'), ('101','46','4','Continue pending','0','4'), ('102','46','5','Stop pending','0','5'), ('103','46','6','Stopped','0','6'), ('104','46','7','Unknown','0','7'), ('105','46','255','No such service','0','8'), ('106','46','2','Start pending','0','2'), ('107','47','0','Running','0','0'), ('108','47','1','Paused','0','1'), ('109','47','3','Pause pending','0','3'), ('110','47','4','Continue pending','0','4'), ('111','47','5','Stop pending','0','5'), ('112','47','6','Stopped','0','6'), ('113','47','7','Unknown','0','7'), ('114','47','255','No such service','0','8'), ('115','47','2','Start pending','0','2'), ('127','51','0','Powered off','0','0'), ('128','51','1','Powered on','0','1'), ('129','51','2','Suspended','0','2'), ('130','52','0','Gray','0','0'), ('131','52','1','Green','0','1'), ('132','52','2','Yellow','0','2'), ('133','52','3','Red','0','3'), ('134','53','0','Gray','0','0'), ('135','53','1','Green','0','1'), ('136','53','2','Yellow','0','2'), ('137','53','3','Red','0','3'), ('138','54','0','Gray','0','0'), ('139','54','1','Green','0','1'), ('140','54','2','Yellow','0','2'), ('141','54','3','Red','0','3'), ('142','55','0','Normal','0','0'), ('143','55','1','Low memory','0','1'), ('144','56','0','Normal','0','0'), ('145','56','1','Low memory','0','1'), ('146','57','1','ok','0','0'), ('147','57','2','unavailable','0','1'), ('148','57','3','nonoperational','0','2'), ('149','58','1','ok','0','0'), ('150','58','2','unavailable','0','1'), ('151','58','3','nonoperational','0','2'), ('179','64','1','notpresent','0','1'), ('180','64','2','down','0','2'), ('181','64','4','testing','0','4'), ('182','64','5','dormant','0','5'), ('183','64','6','up','0','6'), ('1055','71','1','deviceStateUnknown','0','0'), ('1056','71','2','deviceNotEquipped','0','1'), ('1057','71','3','deviceStateOk','0','2'), ('1058','71','4','deviceStateFailed','0','3'), ('1059','71','5','deviceStateOutOfService','0','4'), ('1060','72','1','unknown','0','0'), ('1061','72','2','faulty','0','1'), ('1062','72','3','below-min','0','2'), ('1063','72','4','nominal','0','3'), ('1064','72','5','above-max','0','4'), ('1065','72','6','absent','0','5'), ('1066','73','1','online','0','0'), ('1067','73','2','offline','0','1'), ('1068','73','3','testing','0','2'), ('1069','73','4','faulty','0','3'), ('1070','74','1','other','0','0'), ('1071','74','2','normal','0','1'), ('1072','74','3','failure','0','2'), ('1073','75','1','other','0','0'), ('1074','75','2','normal','0','1'), ('1075','75','3','failure','0','2'), ('1076','76','1','other','0','0'), ('1077','76','2','normal','0','1'), ('1078','76','3','failure','0','2'), ('1079','77','1','other','0','0'), ('1080','77','2','normal','0','1'), ('1081','77','3','failure','0','2'), ('1088','79','1','up','0','0'), ('1089','79','2','down','0','1'), ('1090','79','3','absent','0','2'), ('1091','80','1','up','0','0'), ('1092','80','2','down','0','1'), ('1093','80','3','absent','0','2'), ('1094','81','1','noexist','0','0'), ('1095','81','2','existnopower','0','1'), ('1096','81','3','existreadypower','0','2'), ('1097','81','4','normal','0','3'), ('1098','81','5','powerbutabnormal','0','4'), ('1099','81','6','unknown','0','5'), ('1100','82','0','other','0','0'), ('1101','82','1','working','0','1'), ('1102','82','2','fail','0','2'), ('1103','82','3','speed-0','0','3'), ('1104','82','4','speed-low','0','4'), ('1105','82','5','speed-middle','0','5'), ('1106','82','6','speed-high','0','6'), ('1107','83','0','other','0','0'), ('1108','83','1','lowVoltage','0','1'), ('1109','83','2','overCurrent','0','2'), ('1110','83','3','working','0','3'), ('1111','83','4','fail','0','4'), ('1112','83','5','connect','0','5'), ('1113','83','6','disconnect','0','6'), ('1114','84','1','true - on','0','0'), ('1115','84','2','false - off','0','1'), ('1116','85','1','alarm','0','0'), ('1117','85','2','normal','0','1'), ('1118','86','1','notPresent','0','0'), ('1119','86','2','presentOK','0','1'), ('1120','86','3','presentNotOK','0','2'), ('1121','86','4','presentPowerOff','0','3'), ('1122','87','1','notSupported','0','0'), ('1123','87','2','normal','0','1'), ('1124','87','3','postFailure','0','2'), ('1125','87','4','entityAbsent','0','3'), ('1126','87','11','poeError','0','4'), ('1127','87','21','stackError','0','5'), ('1128','87','22','stackPortBlocked','0','6'), ('1129','87','23','stackPortFailed','0','7'), ('1130','87','31','sfpRecvError','0','8'), ('1131','87','32','sfpSendError','0','9'), ('1132','87','33','sfpBothError','0','10'), ('1133','87','41','fanError','0','11'), ('1134','87','51','psuError','0','12'), ('1135','87','61','rpsError','0','13'), ('1136','87','71','moduleFaulty','0','14'), ('1137','87','81','sensorError','0','15'), ('1138','87','91','hardwareFaulty','0','16'), ('1139','88','1','unknown','0','0'), ('1140','88','2','bad','0','1'), ('1141','88','3','warning','0','2'), ('1142','88','4','good','0','3'), ('1143','88','5','notPresent','0','4'), ('1144','89','1','normal','0','0'), ('1145','89','2','abnormal','0','1'), ('1146','90','1','online','0','0'), ('1147','90','2','operational','0','1'), ('1148','90','3','failed','0','2'), ('1149','90','4','offline','0','3'), ('1150','91','1','invalid','0','0'), ('1151','91','2','bad','0','1'), ('1152','91','3','warning','0','2'), ('1153','91','4','good','0','3'), ('1154','91','5','disabled','0','4'), ('1155','92','1','unknown','0','0'), ('1156','92','2','disabled','0','1'), ('1157','92','3','failed','0','2'), ('1158','92','4','warning','0','3'), ('1159','92','5','standby','0','4'), ('1160','92','6','engaged','0','5'), ('1161','92','7','redundant','0','6'), ('1162','92','8','notPresent','0','7'), ('1163','93','1','other','0','0'), ('1164','93','2','off','0','1'), ('1165','93','3','on - RedAlarm','0','2'), ('1166','94','1','unknown','0','0'), ('1167','94','2','running','0','1'), ('1168','94','3','ready','0','2'), ('1169','94','4','reset','0','3'), ('1170','94','5','runningAtFullSpeed','0','4'), ('1171','94','6','down or off','0','5'), ('1172','94','7','standby','0','6'), ('1173','95','1','unknown','0','0'), ('1174','95','2','disabled','0','1'), ('1175','95','3','enabled','0','2'), ('1176','95','4','testing','0','3'), ('1177','96','1','unknown','0','0'), ('1178','96','2','disabled','0','1'), ('1179','96','3','enabled','0','2'), ('1180','96','4','testing','0','3'), ('1181','97','1','operational','0','0'), ('1182','97','2','failed','0','1'), ('1183','97','3','powering','0','2'), ('1184','97','4','notpowering','0','3'), ('1185','97','5','notpresent','0','4'), ('1186','98','1','operational','0','0'), ('1187','98','2','failed','0','1'), ('1188','98','3','powering','0','2'), ('1189','98','4','notpowering','0','3'), ('1190','98','5','notpresent','0','4'), ('1191','99','1','normal','0','0'), ('1192','99','2','warning','0','1'), ('1193','99','3','critical','0','2'), ('1194','99','4','shutdown','0','3'), ('1195','99','5','notpresent','0','4'), ('1196','99','6','notoperational','0','5'), ('1197','100','0','normal','0','0'), ('1198','100','1','abnormal','0','1'), ('1199','101','0','normal','0','0'), ('1200','101','1','abnormal','0','1'), ('1201','101','2','not available','0','2'), ('1202','102','1','other','0','0'), ('1203','102','2','ok','0','1'), ('1204','102','3','degraded','0','2'), ('1205','102','4','failed','0','3'), ('1206','103','1','other','0','0'), ('1207','103','2','unknown','0','1'), ('1208','103','3','system','0','2'), ('1209','103','4','systemBoard','0','3'), ('1210','103','5','ioBoard','0','4'), ('1211','103','6','cpu','0','5'), ('1212','103','7','memory','0','6'), ('1213','103','8','storage','0','7'), ('1214','103','9','removableMedia','0','8'), ('1215','103','10','powerSupply','0','9'), ('1216','103','11','ambient','0','10'), ('1217','103','12','chassis','0','11'), ('1218','103','13','bridgeCard','0','12'), ('1219','104','1','other','0','0'), ('1220','104','2','ida','0','1'), ('1221','104','3','idaExpansion','0','2'), ('1222','104','4','ida-2','0','3'), ('1223','104','5','smart','0','4'), ('1224','104','6','smart-2e','0','5'), ('1225','104','7','smart-2p','0','6'), ('1226','104','8','smart-2sl','0','7'), ('1227','104','9','smart-3100es','0','8'), ('1228','104','10','smart-3200','0','9'), ('1229','104','11','smart-2dh','0','10'), ('1230','104','12','smart-221','0','11'), ('1231','104','13','sa-4250es','0','12'), ('1232','104','14','sa-4200','0','13'), ('1233','104','15','sa-integrated','0','14'), ('1234','104','16','sa-431','0','15'), ('1235','104','17','sa-5300','0','16'), ('1236','104','18','raidLc2','0','17'), ('1237','104','19','sa-5i','0','18'), ('1238','104','20','sa-532','0','19'), ('1239','104','21','sa-5312','0','20'), ('1240','104','22','sa-641','0','21'), ('1241','104','23','sa-642','0','22'), ('1242','104','24','sa-6400','0','23'), ('1243','104','25','sa-6400em','0','24'), ('1244','104','26','sa-6i','0','25'), ('1245','104','27','sa-generic','0','26'), ('1246','104','29','sa-p600','0','27'), ('1247','104','30','sa-p400','0','28'), ('1248','104','31','sa-e200','0','29'), ('1249','104','32','sa-e200i','0','30'), ('1250','104','33','sa-p400i','0','31'), ('1251','104','34','sa-p800','0','32'), ('1252','104','35','sa-e500','0','33'), ('1253','104','36','sa-p700m','0','34'), ('1254','104','37','sa-p212','0','35'), ('1255','104','38','sa-p410','0','36'), ('1256','104','39','sa-p410i','0','37'), ('1257','104','40','sa-p411','0','38'), ('1258','104','41','sa-b110i','0','39'), ('1259','104','42','sa-p712m','0','40'), ('1260','104','43','sa-p711m','0','41'), ('1261','104','44','sa-p812','0','42'), ('1262','104','45','sw-1210m','0','43'), ('1263','104','46','sa-p220i','0','44'), ('1264','104','47','sa-p222','0','45'), ('1265','104','48','sa-p420','0','46'), ('1266','104','49','sa-p420i','0','47'), ('1267','104','50','sa-p421','0','48'), ('1268','104','51','sa-b320i','0','49'), ('1269','104','52','sa-p822','0','50'), ('1270','104','53','sa-p721m','0','51'), ('1271','104','54','sa-b120i','0','52'), ('1272','104','55','hps-1224','0','53'), ('1273','104','56','hps-1228','0','54'), ('1274','104','57','hps-1228m','0','55'), ('1275','104','58','sa-p822se','0','56'), ('1276','104','59','hps-1224e','0','57'), ('1277','104','60','hps-1228e','0','58'), ('1278','104','61','hps-1228em','0','59'), ('1279','104','62','sa-p230i','0','60'), ('1280','104','63','sa-p430i','0','61'), ('1281','104','64','sa-p430','0','62'), ('1282','104','65','sa-p431','0','63'), ('1283','104','66','sa-p731m','0','64'), ('1284','104','67','sa-p830i','0','65'), ('1285','104','68','sa-p830','0','66'), ('1286','104','69','sa-p831','0','67'), ('1287','104','70','sa-p530','0','68'), ('1288','104','71','sa-p531','0','69'), ('1289','104','72','sa-p244br','0','70'), ('1290','104','73','sa-p246br','0','71'), ('1291','104','74','sa-p440','0','72'), ('1292','104','75','sa-p440ar','0','73'), ('1293','104','76','sa-p441','0','74'), ('1294','104','77','sa-p741m','0','75'), ('1295','104','78','sa-p840','0','76'), ('1296','104','79','sa-p841','0','77'), ('1297','104','80','sh-h240ar','0','78'), ('1298','104','81','sh-h244br','0','79'), ('1299','104','82','sh-h240','0','80'), ('1300','104','83','sh-h241','0','81'), ('1301','104','84','sa-b140i','0','82'), ('1302','104','85','sh-generic','0','83'), ('1303','104','88','sa-p840ar','0','84'), ('1304','105','1','other','0','0'), ('1305','105','2','ok','0','1'), ('1306','105','3','failed','0','2'), ('1307','105','4','predictiveFailure','0','3'), ('1308','106','0','nonRecoverable','0','0'), ('1309','106','2','critical','0','1'), ('1310','106','4','nonCritical','0','2'), ('1311','106','255','normal','0','3'), ('1312','107','1','other','0','0'), ('1313','107','2','unknown','0','1'), ('1314','107','3','ok','0','2'), ('1315','107','4','nonCritical','0','3'), ('1316','107','5','critical','0','4'), ('1317','107','6','nonRecoverable','0','5'), ('1318','108','1','other','0','0'), ('1319','108','2','unknown','0','1'), ('1320','108','3','ok','0','2'), ('1321','108','4','nonCriticalUpper','0','3'), ('1322','108','5','criticalUpper','0','4'), ('1323','108','6','nonRecoverableUpper','0','5'), ('1324','108','7','nonCriticalLower','0','6'), ('1325','108','8','criticalLower','0','7'), ('1326','108','9','nonRecoverableLower','0','8'), ('1327','108','10','failed','0','9'), ('1328','109','1','other','0','0'), ('1329','109','2','unknown','0','1'), ('1330','109','3','ok','0','2'), ('1331','109','4','nonCritical','0','3'), ('1332','109','5','critical','0','4'), ('1333','109','6','nonRecoverable','0','5'), ('1334','110','0','ok','0','0'), ('1335','110','1','failed','0','1'), ('1336','111','1','Unknown','0','0'), ('1337','111','2','HDD','0','1'), ('1338','111','3','SSD','0','2'), ('1339','112','1','Unknown','0','0'), ('1340','112','2','Ready','0','1'), ('1341','112','3','Failed','0','2'), ('1342','112','4','Degraded','0','3'), ('1343','112','5','Missing','0','4'), ('1344','112','6','Charging','0','5'), ('1345','112','7','Below threshold','0','6'), ('1346','113','1','Other','0','0'), ('1347','113','2','RAID-0','0','1'), ('1348','113','3','RAID-1','0','2'), ('1349','113','4','RAID-5','0','3'), ('1350','113','5','RAID-6','0','4'), ('1351','113','6','RAID-10','0','5'), ('1352','113','7','RAID-50','0','6'), ('1353','113','8','RAID-60','0','7'), ('1354','113','9','Concatenated RAID 1','0','8'), ('1355','113','10','Concatenated RAID 5','0','9'), ('1356','114','1','Not applicable','0','0'), ('1357','114','2','Reconstructing','0','1'), ('1358','114','3','Resynching','0','2'), ('1359','114','4','Initializing','0','3'), ('1360','114','5','Background init','0','4'), ('1361','115','1','Write Through','0','0'), ('1362','115','2','Write Back','0','1'), ('1363','115','3','Force Write Back','0','2'), ('1364','116','1','Unknown','0','0'), ('1365','116','2','Online','0','1'), ('1366','116','3','Failed','0','2'), ('1367','116','4','Degraded','0','3'), ('1368','117','1','other','0','0'), ('1369','117','2','ok','0','1'), ('1370','117','3','replaceDrive','0','2'), ('1371','117','4','replaceDriveSSDWearOut','0','3'), ('1372','118','1','other','0','0'), ('1373','118','2','invalid','0','1'), ('1374','118','3','enabled','0','2'), ('1375','118','4','tmpDisabled','0','3'), ('1376','118','5','permDisabled','0','4'), ('1377','118','6','cacheModFlashMemNotAttached','0','5'), ('1378','118','7','cacheModDegradedFailsafeSpeed','0','6'), ('1379','118','8','cacheModCriticalFailure','0','7'), ('1380','118','9','cacheReadCacheNotMapped','0','8'), ('1381','119','1','Other','0','0'), ('1382','119','2','Ok','0','1'), ('1383','119','3','Recharging','0','2'), ('1384','119','4','Failed','0','3'), ('1385','119','5','Degraded','0','4'), ('1386','119','6','Not Present','0','5'), ('1387','119','7','Capacitor failed','0','6'), ('1388','120','1','Other','0','0'), ('1389','120','2','rotatingPlatters','0','1'), ('1390','120','3','solidState','0','2'), ('1391','121','0','other','0','0'), ('1392','121','2','none','0','1'), ('1393','121','3','RAID-1/RAID-10','0','2'), ('1394','121','4','RAID-4','0','3'), ('1395','121','5','RAID-5','0','4'), ('1396','121','7','RAID-6','0','5'), ('1397','121','8','RAID-50','0','6'), ('1398','121','9','RAID-60','0','7'), ('1399','121','10','RAID-1 ADM','0','8'), ('1400','121','11','RAID-10 ADM','0','9'), ('1401','122','1','other','0','0'), ('1402','122','2','ok','0','1'), ('1403','122','3','failed','0','2'), ('1404','122','4','unconfigured','0','3'), ('1405','122','5','recovering','0','4'), ('1406','122','6','readyForRebuild','0','5'), ('1407','122','7','rebuilding','0','6'), ('1408','122','8','wrongDrive','0','7'), ('1409','122','9','badConnect','0','8'), ('1410','122','10','overheating','0','9'), ('1411','122','11','shutdown','0','10'), ('1412','122','12','expanding','0','11'), ('1413','122','13','notAvailable','0','12'), ('1414','122','14','queuedForExpansion','0','13'), ('1415','122','15','multipathAccessDegraded','0','14'), ('1416','122','16','erasing','0','15'), ('1417','122','17','predictiveSpareRebuildReady','0','16'), ('1418','122','18','rapidParityInitInProgress','0','17'), ('1419','122','19','rapidParityInitPending','0','18'), ('1420','122','20','noAccessEncryptedNoCntlrKey','0','19'), ('1421','122','21','unencryptedToEncryptedInProgress','0','20'), ('1422','122','22','newLogDrvKeyRekeyInProgress','0','21'), ('1423','122','23','noAccessEncryptedCntlrEncryptnNotEnbld','0','22'), ('1424','122','24','unencryptedToEncryptedNotStarted','0','23'), ('1425','122','25','newLogDrvKeyRekeyRequestReceived','0','24'), ('1426','123','0','Master','0','0'), ('1427','123','1','Standby','0','1'), ('1428','124','0','Master','0','0'), ('1429','124','1','Standby','0','1'), ('1430','125','0','Down','0','0'), ('1431','125','1','Up','0','1'), ('1432','125','2','Master','0','2'), ('1433','126','0','Down','0','0'), ('1434','126','1','Up','0','1'), ('1435','126','2','Master','0','2'), ('1500','128','0','from KA9Q: NET/ROM pseudo','0','0'), ('1501','128','1','Ethernet','0','1'), ('1502','128','2','Experimental Ethernet','0','2'), ('1503','128','3','AX.25 Level 2','0','3'), ('1504','128','4','PROnet token ring','0','4'), ('1505','128','5','Chaosnet','0','5'), ('1506','128','6','IEEE 802.2 Ethernet/TR/TB','0','6'), ('1507','128','7','ARCnet','0','7'), ('1508','128','8','APPLEtalk','0','8'), ('1509','128','15','Frame Relay DLCI','0','9'), ('1510','128','19','ATM','0','10'), ('1511','128','23','Metricom STRIP (new IANA id)','0','11'), ('1512','128','24','IEEE 1394 IPv4 - RFC 2734','0','12'), ('1513','128','27','EUI-64','0','13'), ('1514','128','32','InfiniBand','0','14'), ('1515','128','256','ARPHRD_SLIP','0','15'), ('1516','128','257','ARPHRD_CSLIP','0','16'), ('1517','128','258','ARPHRD_SLIP6','0','17'), ('1518','128','259','ARPHRD_CSLIP6','0','18'), ('1519','128','260','Notional KISS type','0','19'), ('1520','128','264','ARPHRD_ADAPT','0','20'), ('1521','128','270','ARPHRD_ROSE','0','21'), ('1522','128','271','CCITT X.25','0','22'), ('1523','128','272','Boards with X.25 in firmware','0','23'), ('1524','128','280','Controller Area Network','0','24'), ('1525','128','512','ARPHRD_PPP','0','25'), ('1526','128','513','Cisco HDLC','0','26'), ('1527','128','516','LAPB','0','27'), ('1528','128','517','Digital''s DDCMP protocol','0','28'), ('1529','128','518','Raw HDLC','0','29'), ('1530','128','519','Raw IP','0','30'), ('1531','128','768','IPIP tunnel','0','31'), ('1532','128','769','IP6IP6 tunnel','0','32'), ('1533','128','770','Frame Relay Access Device','0','33'), ('1534','128','771','SKIP vif','0','34'), ('1535','128','772','Loopback device','0','35'), ('1536','128','773','Localtalk device','0','36'), ('1537','128','774','Fiber Distributed Data Interface','0','37'), ('1538','128','775','AP1000 BIF','0','38'), ('1539','128','776','sit0 device - IPv6-in-IPv4','0','39'), ('1540','128','777','IP over DDP tunneller','0','40'), ('1541','128','778','GRE over IP','0','41'), ('1542','128','779','PIMSM register interface','0','42'), ('1543','128','780','High Performance Parallel Interface','0','43'), ('1544','128','781','Nexus 64Mbps Ash','0','44'), ('1545','128','782','Acorn Econet','0','45'), ('1546','128','783','Linux-IrDA','0','46'), ('1547','128','784','Point to point fibrechannel','0','47'), ('1548','128','785','Fibrechannel arbitrated loop','0','48'), ('1549','128','786','Fibrechannel public loop','0','49'), ('1550','128','787','Fibrechannel fabric','0','50'), ('1551','128','800','Magic type ident for TR','0','51'), ('1552','128','801','IEEE 802.11','0','52'), ('1553','128','802','IEEE 802.11 + Prism2 header','0','53'), ('1554','128','803','IEEE 802.11 + radiotap header','0','54'), ('1555','128','804','ARPHRD_IEEE802154','0','55'), ('1556','128','805','IEEE 802.15.4 network monitor','0','56'), ('1557','128','820','PhoNet media type','0','57'), ('1558','128','821','PhoNet pipe header','0','58'), ('1559','128','822','CAIF media type','0','59'), ('1560','128','823','GRE over IPv6','0','60'), ('1561','128','824','Netlink header','0','61'), ('1562','128','825','IPv6 over LoWPAN','0','62'), ('1563','128','826','Vsock monitor header','0','63'), ('1682','134','0','Failed','0','0'), ('1683','134','1','Ok','0','1'), ('1684','135','0','Failed','0','0'), ('1685','135','1','Ok','0','1'), ('1686','136','0','Ok','0','0'), ('1687','136','1','Alarm','0','1'), ('1688','137','0','Ok','0','0'), ('1689','137','1','Alarm','0','1'), ('1690','138','0','unknown','0','0'), ('1691','138','1','operable','0','1'), ('1692','138','2','inoperable','0','2'), ('1693','138','3','degraded','0','3'), ('1694','138','4','poweredOff','0','4'), ('1695','138','5','powerProblem','0','5'), ('1696','138','6','removed','0','6'), ('1697','138','7','voltageProblem','0','7'), ('1698','138','8','thermalProblem','0','8'), ('1699','138','9','performanceProblem','0','9'), ('1700','138','10','accessibilityProblem','0','10'), ('1701','138','11','identityUnestablishable','0','11'), ('1702','138','12','biosPostTimeout','0','12'), ('1703','138','13','disabled','0','13'), ('1704','138','14','malformedFru','0','14'), ('1705','138','15','backplanePortProblem','0','15'), ('1706','138','16','chassisIntrusion','0','16'), ('1707','138','51','fabricConnProblem','0','17'), ('1708','138','52','fabricUnsupportedConn','0','18'), ('1709','138','81','config','0','19'), ('1710','138','82','equipmentProblem','0','20'), ('1711','138','83','decommissioning','0','21'), ('1712','138','84','chassisLimitExceeded','0','22'), ('1713','138','100','notSupported','0','23'), ('1714','138','101','discovery','0','24'), ('1715','138','102','discoveryFailed','0','25'), ('1716','138','103','identify','0','26'), ('1717','138','104','postFailure','0','27'), ('1718','138','105','upgradeProblem','0','28'), ('1719','138','106','peerCommProblem','0','29'), ('1720','138','107','autoUpgrade','0','30'), ('1721','138','108','linkActivateBlocked','0','31'), ('1722','139','0','indeterminate','0','0'), ('1723','139','1','unassociated','0','1'), ('1724','139','10','ok','0','2'), ('1725','139','11','discovery','0','3'), ('1726','139','12','config','0','4'), ('1727','139','13','unconfig','0','5'), ('1728','139','14','powerOff','0','6'), ('1729','139','15','restart','0','7'), ('1730','139','20','maintenance','0','8'), ('1731','139','21','test','0','9'), ('1732','139','29','computeMismatch','0','10'), ('1733','139','30','computeFailed','0','11'), ('1734','139','31','degraded','0','12'), ('1735','139','32','discoveryFailed','0','13'), ('1736','139','33','configFailure','0','14'), ('1737','139','34','unconfigFailed','0','15'), ('1738','139','35','testFailed','0','16'), ('1739','139','36','maintenanceFailed','0','17'), ('1740','139','40','removed','0','18'), ('1741','139','41','disabled','0','19'), ('1742','139','50','inaccessible','0','20'), ('1743','139','60','thermalProblem','0','21'), ('1744','139','61','powerProblem','0','22'), ('1745','139','62','voltageProblem','0','23'), ('1746','139','63','inoperable','0','24'), ('1747','139','101','decommissioning','0','25'), ('1748','139','201','biosRestore','0','26'), ('1749','139','202','cmosReset','0','27'), ('1750','139','203','diagnostics','0','28'), ('1751','139','204','diagnosticsFailed','0','29'), ('1752','139','210','pendingReboot','0','30'), ('1753','139','211','pendingReassociation','0','31'), ('1754','139','212','svnicNotPresent','0','32'), ('1755','140','0','unknown','0','0'), ('1756','140','1','online','0','1'), ('1757','140','2','unconfiguredGood','0','2'), ('1758','140','3','globalHotSpare','0','3'), ('1759','140','4','dedicatedHotSpare','0','4'), ('1760','140','5','jbod','0','5'), ('1761','140','6','offline','0','6'), ('1762','140','7','rebuilding','0','7'), ('1763','140','8','copyback','0','8'), ('1764','140','9','failed','0','9'), ('1765','140','10','unconfiguredBad','0','10'), ('1766','140','11','predictiveFailure','0','11'), ('1767','140','12','disabledForRemoval','0','12'), ('1768','140','13','foreignConfiguration','0','13'), ('1769','140','14','zeroing','0','14'), ('1770','140','15','good','0','15'), ('1771','140','16','bad','0','16'), ('1772','140','17','lockedForeignConfiguration','0','17'), ('1773','141','0','unspecified','0','0'), ('1774','141','1','simple','0','1'), ('1775','141','2','mirror','0','2'), ('1776','141','3','stripe','0','3'), ('1777','141','4','raid','0','4'), ('1778','141','5','stripeParity','0','5'), ('1779','141','6','stripeDualParity','0','6'), ('1780','141','7','mirrorStripe','0','7'), ('1781','141','8','stripeParityStripe','0','8'), ('1782','141','9','stripeDualParityStripe','0','9'), ('1783','142','0','unknown','0','0'), ('1784','142','1','empty','0','1'), ('1785','142','10','equipped','0','2'), ('1786','142','11','missing','0','3'), ('1787','142','12','mismatch','0','4'), ('1788','142','13','equippedNotPrimary','0','5'), ('1789','142','14','equippedSlave','0','6'), ('1790','142','15','mismatchSlave','0','7'), ('1791','142','16','missingSlave','0','8'), ('1792','142','20','equippedIdentityUnestablishable','0','9'), ('1793','142','21','mismatchIdentityUnestablishable','0','10'), ('1794','142','22','equippedWithMalformedFru','0','11'), ('1795','142','30','inaccessible','0','12'), ('1796','142','40','unauthorized','0','13'), ('1797','142','100','notSupported','0','14'), ('1798','142','101','equippedUnsupported','0','15'), ('1799','142','102','equippedDiscNotStarted','0','16'), ('1800','142','103','equippedDiscInProgress','0','17'), ('1801','142','104','equippedDiscError','0','18'), ('1802','142','105','equippedDiscUnknown','0','19'), ('1803','143','0','Error','0','0'), ('1804','143','1','Ok','0','1'), ('1805','144','0','No','0','0'), ('1806','144','1','Yes','0','1'), ('1809','147','0','False','0','0'), ('1810','147','1','True','0','1'), ('1811','148','0','green','0','0'), ('1812','148','1','yellow','0','1'), ('1813','148','2','red','0','2'), ('1814','148','255','unknown','0','3'), ('1815','149','0','False','0','0'), ('1816','149','1','True','0','1'), ('1817','150','0','Failed','0','0'), ('1818','150','1','Ok','0','1'), ('1819','151','0','No','0','0'), ('1820','151','1','Yes','0','1'), ('1821','152','1','Uninitialized','0','0'), ('1822','152','2','Initialized','0','1'), ('1823','152','3','Running','0','2'), ('1824','152','4','Disabling','0','3'), ('1825','152','5','Disabled','0','4'), ('1826','152','6','Shutdown Pending','0','5'), ('1827','152','7','Delete Pending','0','6'), ('1828','153','1','Uninitialized','0','0'), ('1829','153','2','Initialized','0','1'), ('1830','153','3','Running','0','2'), ('1831','153','4','Disabling','0','3'), ('1832','153','5','Disabled','0','4'), ('1833','153','6','Shutdown Pending','0','5'), ('1834','153','7','Delete Pending','0','6'), ('1835','154','0','ONLINE','0','0'), ('1836','154','1','RESTORING','0','1'), ('1837','154','2','RECOVERING','0','2'), ('1838','154','3','RECOVERY_PENDING','0','3'), ('1839','154','4','SUSPECT','0','4'), ('1840','154','5','EMERGENCY','0','5'), ('1841','154','6','OFFLINE','0','6'), ('1842','154','7','COPYING','0','7'), ('1843','154','10','OFFLINE_SECONDARY','0','8'), ('1844','155','0','Disconnected','0','0'), ('1845','155','1','Connected','0','1'), ('1846','156','0','Not joined','0','0'), ('1847','156','1','Joined, standalone instance','0','1'), ('1848','156','2','Joined, failover cluster instance','0','2'), ('1849','157','0','Pending failover','0','0'), ('1850','157','1','Pending','0','1'), ('1851','157','2','Online','0','2'), ('1852','157','3','Offline','0','3'), ('1853','157','4','Failed','0','4'), ('1854','157','5','Failed, no quorum','0','5'), ('1855','157','6','Replica is not local','0','6'), ('1856','158','0','In progress','0','0'), ('1857','158','1','Online','0','1'), ('1858','158','2','Replica is not local','0','2'), ('1859','159','0','Resolving','0','0'), ('1860','159','1','Primary','0','1'), ('1861','159','2','Secondary','0','2'), ('1862','160','0','Not healthy','0','0'), ('1863','160','1','Partially healthy','0','1'), ('1864','160','2','Healthy','0','2'), ('1865','161','0','No','0','0'), ('1866','161','1','Yes','0','1'), ('1867','162','0','Suspended','0','0'), ('1868','162','1','Disconnected from the other partner','0','1'), ('1869','162','2','Synchronizing','0','2'), ('1870','162','3','Pending failover','0','3'), ('1871','162','4','Synchronized','0','4'), ('1872','162','5','The partners are not synchronized. Failover is not possible now.','0','5'), ('1873','162','6','The partners are synchronized. Failover is potentially possible.','0','6'), ('1874','162','7','Database is inaccessible or is not mirrored','0','7'), ('1875','163','0','Database is inaccessible or is not mirrored','0','0'), ('1876','163','1','Principal','0','1'), ('1877','163','2','Mirror','0','2'), ('1878','164','0','Unknown state','0','0'), ('1879','164','1','Off [asynchronous]','0','1'), ('1880','164','2','Full [synchronous]','0','2'), ('1881','164','3','Database is inaccessible or is not mirrored','0','3'), ('1882','165','0','Unknown','0','0'), ('1883','165','1','Connected','0','1'), ('1884','165','2','Disconnected','0','2'), ('1885','165','3','No witness exists','0','3'), ('1886','166','0','Unknown','0','0'), ('1887','166','1','Mounted','0','1'), ('1888','166','2','Read Only','0','2'), ('1889','166','3','Read-Write','0','3'), ('1890','166','4','Read Only with Apply','0','4'), ('1891','167','0','Unknown','0','0'), ('1892','167','1','Mounted','0','1'), ('1893','167','2','Read Only','0','2'), ('1894','167','3','Read-Write','0','3'), ('1895','167','4','Read Only with Apply','0','4'), ('1896','168','0','Unknown','0','0'), ('1897','168','1','Snapshot standby','0','1'), ('1898','168','2','Logical standby','0','2'), ('1899','168','3','Physical standby','0','3'), ('1900','168','4','Primary','0','4'), ('1901','168','5','Far sync','0','5'), ('1902','169','0','Unknown','0','0'), ('1903','169','1','Snapshot standby','0','1'), ('1904','169','2','Logical standby','0','2'), ('1905','169','3','Physical standby','0','3'), ('1906','169','4','Primary','0','4'), ('1907','169','5','Far sync','0','5'), ('1908','170','0','Unknown','0','0'), ('1909','170','1','Started','0','1'), ('1910','170','2','Mounted','0','2'), ('1911','170','3','Open','0','3'), ('1912','170','4','Open migrate','0','4'), ('1913','171','0','Unknown','0','0'), ('1914','171','1','Started','0','1'), ('1915','171','2','Mounted','0','2'), ('1916','171','3','Open','0','3'), ('1917','171','4','Open migrate','0','4'), ('1918','172','0','Unknown','0','0'), ('1919','172','1','Primary','0','1'), ('1920','172','2','Secondary','0','2'), ('1921','173','0','Unknown','0','0'), ('1922','173','1','Primary','0','1'), ('1923','173','2','Secondary','0','2'), ('1924','174','0','Unknown','0','0'), ('1925','174','1','Stopped','0','1'), ('1926','174','2','Started','0','2'), ('1927','174','3','Failed','0','3'), ('1928','175','0','Unknown','0','0'), ('1929','175','1','Stopped','0','1'), ('1930','175','2','Started','0','2'), ('1931','175','3','Failed','0','3'), ('1932','176','0','Unknown','0','0'), ('1933','176','1','Online','0','1'), ('1934','176','2','Offline','0','2'), ('1935','176','3','Read-Only','0','3'), ('1936','177','0','Unknown','0','0'), ('1937','177','1','Online','0','1'), ('1938','177','2','Offline','0','2'), ('1939','177','3','Read-Only','0','3'), ('1940','178','0','Unknown','0','0'), ('1941','178','1','Error','0','1'), ('1942','178','2','Deferred','0','2'), ('1943','178','3','Valid','0','3'), ('1944','179','0','Unknown','0','0'), ('1945','179','1','Error','0','1'), ('1946','179','2','Deferred','0','2'), ('1947','179','3','Valid','0','3'), ('1948','180','0','No','0','0'), ('1949','180','1','Yes','0','1'), ('1950','181','0','No','0','0'), ('1951','181','1','Yes','0','1'), ('1952','182','0','NOARCHIVELOG','0','0'), ('1953','182','1','ARCHIVELOG','0','1'), ('1954','182','2','MANUAL','0','2'), ('1955','183','0','NOARCHIVELOG','0','0'), ('1956','183','1','ARCHIVELOG','0','1'), ('1957','183','2','MANUAL','0','2'), ('1958','184','0','HEALTH_OK','0','0'), ('1959','184','1','HEALTH_WARN','0','1'), ('1960','184','2','HEALTH_ERR','0','2'), ('1961','185','0','Passive','0','0'), ('1962','185','1','Active','0','1'), ('1963','186','0','Passive','0','0'), ('1964','186','1','Active','0','1'), ('1965','187','0','Dismounted','0','0'), ('1966','187','1','Mounted','0','1'), ('1967','187','2','Healthy','0','2'), ('1968','188','0','Dismounted','0','0'), ('1969','188','1','Mounted','0','1'), ('1970','188','2','Healthy','0','2'), ('1971','189','0','Failed','0','0'), ('1972','189','1','Ok','0','1'), ('1973','190','0','Inactive','0','0'), ('1974','190','1','Active','0','1'), ('1975','191','0','False','0','0'), ('1976','191','1','True','0','1'), ('1977','192','0','Start','0','0'), ('1978','192','1','NightCheck','0','1'), ('1979','192','2','Disconnect','0','2'), ('1980','192','3','Night','0','3'), ('1981','192','4','Fault','0','4'), ('1982','192','5','BulkMppt','0','5'), ('1983','192','6','Absorption','0','6'), ('1984','192','7','Float','0','7'), ('1985','192','8','Equalize','0','8'), ('1986','192','9','Slave','0','9'), ('1987','192','10','Fixed','0','10'), ('1988','193','0','Start','0','0'), ('1989','193','1','Normal','0','1'), ('1990','193','2','LvdWarning','0','2'), ('1991','193','3','Lvd','0','3'), ('1992','193','4','Fault','0','4'), ('1993','193','5','Disconnect','0','5'), ('1994','193','6','NormalOff','0','6'), ('1995','193','7','Override','0','7'), ('1996','193','8','NotUsed','0','8'), ('1997','194','0','Start','0','0'), ('1998','194','1','NightCheck','0','1'), ('1999','194','2','Disconnect','0','2'), ('2000','194','3','Night','0','3'), ('2001','194','4','Fault','0','4'), ('2002','194','5','Bulk','0','5'), ('2003','194','6','Pwm','0','6'), ('2004','194','7','Float','0','7'), ('2005','194','8','Equalize','0','8'), ('2006','195','0','Start','0','0'), ('2007','195','1','Normal','0','1'), ('2008','195','2','LvdWarning','0','2'), ('2009','195','3','Lvd','0','3'), ('2010','195','4','Fault','0','4'), ('2011','195','5','Disconnect','0','5'), ('2012','195','6','NormalOff','0','6'), ('2013','195','7','Override','0','7'), ('2014','195','8','NotUsed','0','8'), ('2015','196','0','Start','0','0'), ('2016','196','1','NightCheck','0','1'), ('2017','196','2','Disconnect','0','2'), ('2018','196','3','Night','0','3'), ('2019','196','4','Fault','0','4'), ('2020','196','5','BulkMppt','0','5'), ('2021','196','6','Pwm','0','6'), ('2022','196','7','Float','0','7'), ('2023','196','8','Equalize','0','8'), ('2024','197','0','Start','0','0'), ('2025','197','1','Normal','0','1'), ('2026','197','2','LvdWarning','0','2'), ('2027','197','3','Lvd','0','3'), ('2028','197','4','Fault','0','4'), ('2029','197','5','Disconnect','0','5'), ('2030','197','6','NormalOff','0','6'), ('2031','197','7','Override','0','7'), ('2032','197','8','NotUsed','0','8'), ('2033','198','0','Start','0','0'), ('2034','198','1','LoadOn','0','1'), ('2035','198','2','LvdWarning','0','2'), ('2036','198','3','LowVoltageDisconnect','0','3'), ('2037','198','4','Fault','0','4'), ('2038','198','5','Disconnect','0','5'), ('2039','198','6','NormalOff','0','6'), ('2040','198','7','UnknownState','0','7'), ('2041','198','8','Standby','0','8'), ('2042','199','0','Start','0','0'), ('2043','199','1','NightCheck','0','1'), ('2044','199','2','Disconnect','0','2'), ('2045','199','3','Night','0','3'), ('2046','199','4','Fault','0','4'), ('2047','199','5','Mppt','0','5'), ('2048','199','6','Absorption','0','6'), ('2049','199','7','Float','0','7'), ('2050','199','8','Equalize','0','8'), ('2051','199','9','Slave','0','9'), ('2052','199','10','Fixed','0','10'), ('2053','200','0','Start','0','0'), ('2054','200','1','NightCheck','0','1'), ('2055','200','2','Disconnect','0','2'), ('2056','200','3','Night','0','3'), ('2057','200','4','Fault','0','4'), ('2058','200','5','Mppt','0','5'), ('2059','200','6','Absorption','0','6'), ('2060','200','7','Float','0','7'), ('2061','200','8','Equalize','0','8'), ('2062','200','9','Slave','0','9'), ('2063','201','0','Start','0','0'), ('2064','201','1','NightCheck','0','1'), ('2065','201','2','Disconnect','0','2'), ('2066','201','3','Night','0','3'), ('2067','201','4','Fault','0','4'), ('2068','201','5','Bulk','0','5'), ('2069','201','6','Absorption','0','6'), ('2070','201','7','Float','0','7'), ('2071','201','8','Equalize','0','8'), ('2072','202','0','Charge','0','0'), ('2073','202','1','LoadControl','0','1'), ('2074','202','2','Diversion','0','2'), ('2075','202','3','Lighting','0','3'), ('2076','203','0','Start','0','0'), ('2077','203','1','Normal','0','1'), ('2078','203','2','LvdWarning','0','2'), ('2079','203','3','Lvd','0','3'), ('2080','203','4','Fault','0','4'), ('2081','203','5','Disconnect','0','5'), ('2082','203','6','LvdWarning1','0','6'), ('2083','203','7','OverrideLvd','0','7'), ('2084','203','8','Equalize','0','8'), ('2085','204','1','OK','0','0'), ('2086','204','2','Unknown reason','0','1'), ('2087','204','3','Disabled by operator','0','2'), ('2088','204','4','Interconnect offline','0','3'), ('2089','204','5','Disabled by partner','0','4'), ('2090','204','6','Takeover failed','0','5'), ('2091','204','7','Mailbox is in degraded state','0','6'), ('2092','204','8','Partner mailbox is in uninitialised state','0','7'), ('2093','204','9','Mailbox version mismatch','0','8'), ('2094','204','10','NVRAM size mismatch','0','9'), ('2095','204','11','Kernel version mismatch','0','10'), ('2096','204','12','Partner is in booting stage','0','11'), ('2097','204','13','Disk shelf is too hot','0','12'), ('2098','204','14','Partner is performing revert','0','13'), ('2099','204','15','Node is performing revert','0','14'), ('2100','204','16','Same time partner is also trying to take us over','0','15'), ('2101','204','17','Already in takenover mode','0','16'), ('2102','204','18','NVRAM log unsynchronized','0','17'), ('2103','204','19','State of backup mailbox is doubtful','0','18'), ('2104','205','1','Not configured','0','0'), ('2105','205','2','Enabled','0','1'), ('2106','205','3','Disabled','0','2'), ('2107','205','4','Takeover by partner disabled','0','3'), ('2108','205','5','This node dead','0','4'), ('2109','206','1','OK','0','0'), ('2110','206','2','Partially discharged','0','1'), ('2111','206','3','Fully discharged','0','2'), ('2112','206','4','Not present','0','3'), ('2113','206','5','Near end of life','0','4'), ('2114','206','6','At end of life','0','5'), ('2115','206','7','Unknown','0','6'), ('2116','206','8','Overcharged','0','7'), ('2117','206','9','Fully charged','0','8'), ('2118','207','0','Healthy','0','0'), ('2119','207','1','Degraded','0','1'), ('2120','208','0','Undef','0','0'), ('2121','208','1','Off','0','1'), ('2122','208','2','UP','0','2'), ('2123','208','3','DOWN','0','3'), ('2124','209','0','Undef','0','0'), ('2125','209','1','Cluster','0','1'), ('2126','209','2','Data','0','2'), ('2127','209','3','Node-MGMT','0','3'), ('2128','209','4','Intercluster','0','4'), ('2129','209','5','Cluster-MGMT','0','5'), ('2130','210','0','Undef','0','0'), ('2131','210','1','Auto','0','1'), ('2132','210','2','10 Mb/s','0','2'), ('2133','210','3','100 Mb/s','0','3'), ('2134','210','4','10 Gb/s','0','4'), ('2135','210','5','100 Gb/s','0','5'), ('2136','211','0','False','0','0'), ('2137','211','1','True','0','1'), ('2138','212','0','Online','0','0'), ('2139','212','1','Offline','0','1'), ('2140','213','0','False','0','0'), ('2141','213','1','True','0','1'), ('2142','214','0','Failed','0','0'), ('2143','214','1','Ok','0','1'), ('2144','215','0','Down','0','0'), ('2145','215','1','Up','0','1'), ('2146','216','0','OK','0','0'), ('2147','216','1','Unauthorized','0','1'), ('2148','216','2','Connection error','0','2'), ('2149','217','1','other','0','0'), ('2150','217','2','ok','0','1'), ('2151','217','3','degraded','0','2'), ('2152','217','4','failed','0','3'), ('2153','218','100','Continue','0','0'), ('2154','218','101','Switching Protocols','0','1'), ('2155','218','102','Processing','0','2'), ('2156','218','200','OK','0','3'), ('2157','218','201','Created','0','4'), ('2158','218','202','Accepted','0','5'), ('2159','218','203','Non-Authoritative Information','0','6'), ('2160','218','204','No Content','0','7'), ('2161','218','205','Reset Content','0','8'), ('2162','218','206','Partial Content','0','9'), ('2163','218','207','Multi-Status','0','10'), ('2164','218','208','Already Reported','0','11'), ('2165','218','226','IM Used','0','12'), ('2166','218','300','Multiple Choices','0','13'), ('2167','218','301','Moved Permanently','0','14'), ('2168','218','302','Found','0','15'), ('2169','218','303','See Other','0','16'), ('2170','218','304','Not Modified','0','17'), ('2171','218','305','Use Proxy','0','18'), ('2172','218','306','Switch Proxy','0','19'), ('2173','218','307','Temporary Redirect','0','20'), ('2174','218','308','Permanent Redirect/Resume Incomplete','0','21'), ('2175','218','400','Bad Request','0','22'), ('2176','218','401','Unauthorized','0','23'), ('2177','218','402','Payment Required','0','24'), ('2178','218','403','Forbidden','0','25'), ('2179','218','404','Not Found','0','26'), ('2180','218','405','Method Not Allowed','0','27'), ('2181','218','406','Not Acceptable','0','28'), ('2182','218','407','Proxy Authentication Required','0','29'), ('2183','218','408','Request Timeout','0','30'), ('2184','218','409','Conflict','0','31'), ('2185','218','410','Gone','0','32'), ('2186','218','411','Length Required','0','33'), ('2187','218','412','Precondition Failed','0','34'), ('2188','218','413','Payload Too Large','0','35'), ('2189','218','414','Request-URI Too Long','0','36'), ('2190','218','415','Unsupported Media Type','0','37'), ('2191','218','416','Requested Range Not Satisfiable','0','38'), ('2192','218','417','Expectation Failed','0','39'), ('2193','218','418','I''m a Teapot','0','40'), ('2194','218','419','Authentication Timeout','0','41'), ('2195','218','420','Method Failure/Enhance Your Calm','0','42'), ('2196','218','421','Misdirected Request','0','43'), ('2197','218','422','Unprocessable Entity','0','44'), ('2198','218','423','Locked','0','45'), ('2199','218','424','Failed Dependency','0','46'), ('2200','218','426','Upgrade Required','0','47'), ('2201','218','428','Precondition Required','0','48'), ('2202','218','429','Too Many Requests','0','49'), ('2203','218','431','Request Header Fields Too Large','0','50'), ('2204','218','440','Login Timeout','0','51'), ('2205','218','444','No Response','0','52'), ('2206','218','449','Retry With','0','53'), ('2207','218','450','Blocked by Windows Parental Controls','0','54'), ('2208','218','451','Unavailable for Legal Reasons/Redirect','0','55'), ('2209','218','494','Request Header Too Large','0','56'), ('2210','218','495','Cert Error','0','57'), ('2211','218','496','No Cert','0','58'), ('2212','218','497','HTTP to HTTPS','0','59'), ('2213','218','498','Token Expired/Invalid','0','60'), ('2214','218','499','Client Closed Request/Token Required','0','61'), ('2215','218','500','Internal Server Error','0','62'), ('2216','218','501','Not Implemented','0','63'), ('2217','218','502','Bad Gateway','0','64'), ('2218','218','503','Service Unavailable','0','65'), ('2219','218','504','Gateway Timeout','0','66'), ('2220','218','505','HTTP Version Not Supported','0','67'), ('2221','218','506','Variant Also Negotiates','0','68'), ('2222','218','507','Insufficient Storage','0','69'), ('2223','218','508','Loop Detected','0','70'), ('2224','218','509','Bandwidth Limit Exceeded','0','71'), ('2225','218','510','Not Extended','0','72'), ('2226','218','511','Network Authentication Required','0','73'), ('2227','218','520','Unknown Error','0','74'), ('2228','218','598','Network Read Timeout Error','0','75'), ('2229','218','599','Network Connect Timeout Error','0','76'), ('2230','219','0','Normal','0','0'), ('2231','219','1','Master','0','1'), ('2232','219','2','Slave','0','2'), ('2233','220','0','Undefined','0','0'), ('2234','220','1','Normal','0','1'), ('2235','220','2','Fault','0','2'), ('2236','220','3','Pre-fail','0','3'), ('2237','220','4','Partially broken','0','4'), ('2238','220','5','Degraded','0','5'), ('2239','220','6','Bad sectors found','0','6'), ('2240','220','7','Bit errors found','0','7'), ('2241','220','8','Consistent','0','8'), ('2242','220','9','Inconsistent','0','9'), ('2243','220','10','Busy','0','10'), ('2244','220','11','No input','0','11'), ('2245','220','12','Low battery','0','12'), ('2246','220','13','Single link fault','0','13'), ('2247','220','14','Invalid','0','14'), ('2248','220','15','Write protect','0','15'), ('2249','221','1','Normal','0','0'), ('2250','221','2','Faulty','0','1'), ('2251','221','3','Unformatted','0','2'), ('2252','221','4','Formatting','0','3'), ('2253','222','0','Undefined','0','0'), ('2254','222','1','Normal','0','1'), ('2255','222','2','Running','0','2'), ('2256','222','3','Not running','0','3'), ('2257','222','4','Not existed','0','4'), ('2258','222','5','Sleep in high temperature','0','5'), ('2259','222','6','Starting','0','6'), ('2260','222','7','Power failure protection','0','7'), ('2261','222','8','Spin down','0','8'), ('2262','222','9','Started','0','9'), ('2263','222','10','Link Up','0','10'), ('2264','222','11','Link Down','0','11'), ('2265','222','12','Powering on','0','12'), ('2266','222','13','Powered off','0','13'), ('2267','222','14','Pre-copy','0','14'), ('2268','222','15','Copyback','0','15'), ('2269','222','16','Reconstruction','0','16'), ('2270','222','17','Expansion','0','17'), ('2271','222','18','Unformatted','0','18'), ('2272','222','19','Formatting','0','19'), ('2273','222','20','Unmapped','0','20'), ('2274','222','21','Initial synchronizing','0','21'), ('2275','222','22','Consistent','0','22'), ('2276','222','23','Synchronizing','0','23'), ('2277','222','24','Synchronized','0','24'), ('2278','222','25','Unsynchronized','0','25'), ('2279','222','26','Split','0','26'), ('2280','222','27','Online','0','27'), ('2281','222','28','Offline','0','28'), ('2282','222','29','Locked','0','29'), ('2283','222','30','Enabled','0','30'), ('2284','222','31','Disabled','0','31'), ('2285','222','32','Balancing','0','32'), ('2286','222','33','To be recovered','0','33'), ('2287','222','34','Interrupted','0','34'), ('2288','222','35','Invalid','0','35'), ('2289','222','36','Not start','0','36'), ('2290','222','37','Queuing','0','37'), ('2291','222','38','Stopped','0','38'), ('2292','222','39','Copying','0','39'), ('2293','222','40','Completed','0','40'), ('2294','222','41','Paused','0','41'), ('2295','222','42','Reverse synchronizing','0','42'), ('2296','222','43','Activated','0','43'), ('2297','222','44','Restore','0','44'), ('2298','222','45','Inactive','0','45'), ('2299','222','46','Idle','0','46'), ('2300','222','47','Powering off','0','47'), ('2301','222','48','Charging','0','48'), ('2302','222','49','Charging completed','0','49'), ('2303','222','50','Discharging','0','50'), ('2304','222','51','Upgrading','0','51'), ('2305','222','52','Power Lost','0','52'), ('2306','222','53','Initializing','0','53'), ('2307','222','54','Apply change','0','54'), ('2308','222','55','Online disable','0','55'), ('2309','222','56','Offline disable','0','56'), ('2310','222','57','Online frozen','0','57'), ('2311','222','58','Offline frozen','0','58'), ('2312','222','59','Closed','0','59'), ('2313','222','60','Removing','0','60'), ('2314','222','61','In service','0','61'), ('2315','222','62','Out of service','0','62'), ('2316','222','63','Running normal','0','63'), ('2317','222','64','Running fail','0','64'), ('2318','222','65','Running success','0','65'), ('2319','222','66','Running success','0','66'), ('2320','222','67','Running failed','0','67'), ('2321','222','68','Waiting','0','68'), ('2322','222','69','Canceling','0','69'), ('2323','222','70','Canceled','0','70'), ('2324','222','71','About to synchronize','0','71'), ('2325','222','72','Synchronizing data','0','72'), ('2326','222','73','Failed to synchronize','0','73'), ('2327','222','74','Fault','0','74'), ('2328','222','75','Migrating','0','75'), ('2329','222','76','Migrated','0','76'), ('2330','222','77','Activating','0','77'), ('2331','222','78','Deactivating','0','78'), ('2332','222','79','Start failed','0','79'), ('2333','222','80','Stop failed','0','80'), ('2334','222','81','Decommissioning','0','81'), ('2335','222','82','Decommissioned','0','82'), ('2336','222','83','Recommissioning','0','83'), ('2337','222','84','Replacing node','0','84'), ('2338','222','85','Scheduling','0','85'), ('2339','222','86','Pausing','0','86'), ('2340','222','87','Suspending','0','87'), ('2341','222','88','Suspended','0','88'), ('2342','222','89','Overload','0','89'), ('2343','222','90','To be switch','0','90'), ('2344','222','91','Switching','0','91'), ('2345','222','92','To be cleanup','0','92'), ('2346','222','93','Forced start','0','93'), ('2347','222','94','Error','0','94'), ('2348','222','95','Job completed','0','95'), ('2349','222','96','Partition Migrating','0','96'), ('2350','222','97','Mount','0','97'), ('2351','222','98','Umount','0','98'), ('2352','222','99','INSTALLING','0','99'), ('2353','222','100','To Be Synchronized','0','100'), ('2354','222','101','Connecting','0','101'), ('2355','222','102','Service Switching','0','102'), ('2356','222','103','Power-on failed','0','103'), ('2357','222','104','REPAIRING','0','104'), ('2358','222','105','abnormal','0','105'), ('2359','222','106','Deleting','0','106'), ('2360','222','107','Modifying','0','107'), ('2361','222','108','Running(clearing data)','0','108'), ('2362','222','109','Running(synchronizing data)','0','109'), ('2363','223','0','Failed','0','0'), ('2364','223','1','Ok','0','1'), ('2365','223','2','Error','0','2'), ('2366','134','2','Error','0','2'), ('2367','224','0','Failed','0','0'), ('2368','224','1','Ok','0','1'), ('2369','224','2','Error','0','2'), ('2370','135','2','Error','0','2'), ('2371','225','0','False','0','0'), ('2372','225','1','True','0','1'), ('2373','226','0','STARTUP','0','0'), ('2374','226','1','PRIMARY','0','1'), ('2375','226','2','SECONDARY','0','2'), ('2376','226','3','RECOVERING','0','3'), ('2377','226','5','STARTUP2','0','4'), ('2378','226','6','UNKNOWN','0','5'), ('2379','226','7','ARBITER','0','6'), ('2380','226','8','DOWN','0','7'), ('2381','226','9','ROLLBACK','0','8'), ('2382','226','10','REMOVED','0','9'), ('2383','227','0','Down','0','0'), ('2384','227','1','Up','0','1'), ('2385','228','0','False','0','0'), ('2386','228','1','True','0','1'), ('2387','229','0','Down','0','0'), ('2388','229','1','Up','0','1'), ('2389','230','1','normal','0','0'), ('2390','230','2','warning','0','1'), ('2391','230','3','critical','0','2'), ('2392','230','4','shutdown','0','3'), ('2393','230','5','notPresent','0','4'), ('2394','230','6','notFunctioning','0','5'), ('2395','231','1','unknown','0','0'), ('2396','231','2','halfDuplex','0','1'), ('2397','231','3','fullDuplex','0','2'), ('2398','232','1','up','0','0'), ('2399','232','2','down','0','1'), ('2400','232','3','testing','0','2'), ('2401','232','4','unknown','0','3'), ('2402','232','5','dormant','0','4'), ('2403','232','6','notPresent','0','5'), ('2404','232','7','lowerLayerDown','0','6'), ('2405','233','1','other','0','0'), ('2406','233','2','regular1822','0','1'), ('2407','233','3','hdh1822','0','2'), ('2408','233','4','ddnX25','0','3'), ('2409','233','5','rfc877x25','0','4'), ('2410','233','6','ethernetCsmacd','0','5'), ('2411','233','7','iso88023Csmacd','0','6'), ('2412','233','8','iso88024TokenBus','0','7'), ('2413','233','9','iso88025TokenRing','0','8'), ('2414','233','10','iso88026Man','0','9'), ('2415','233','11','starLan','0','10'), ('2416','233','12','proteon10Mbit','0','11'), ('2417','233','13','proteon80Mbit','0','12'), ('2418','233','14','hyperchannel','0','13'), ('2419','233','15','fddi','0','14'), ('2420','233','16','lapb','0','15'), ('2421','233','17','sdlc','0','16'), ('2422','233','18','ds1','0','17'), ('2423','233','19','e1','0','18'), ('2424','233','20','basicISDN','0','19'), ('2425','233','21','primaryISDN','0','20'), ('2426','233','22','propPointToPointSerial','0','21'), ('2427','233','23','ppp','0','22'), ('2428','233','24','softwareLoopback','0','23'), ('2429','233','25','eon','0','24'), ('2430','233','26','ethernet3Mbit','0','25'), ('2431','233','27','nsip','0','26'), ('2432','233','28','slip','0','27'), ('2433','233','29','ultra','0','28'), ('2434','233','30','ds3','0','29'), ('2435','233','31','sip','0','30'), ('2436','233','32','frameRelay','0','31'), ('2437','233','33','rs232','0','32'), ('2438','233','34','para','0','33'), ('2439','233','35','arcnet','0','34'), ('2440','233','36','arcnetPlus','0','35'), ('2441','233','37','atm','0','36'), ('2442','233','38','miox25','0','37'), ('2443','233','39','sonet','0','38'), ('2444','233','40','x25ple','0','39'), ('2445','233','41','iso88022llc','0','40'), ('2446','233','42','localTalk','0','41'), ('2447','233','43','smdsDxi','0','42'), ('2448','233','44','frameRelayService','0','43'), ('2449','233','45','v35','0','44'), ('2450','233','46','hssi','0','45'), ('2451','233','47','hippi','0','46'), ('2452','233','48','modem','0','47'), ('2453','233','49','aal5','0','48'), ('2454','233','50','sonetPath','0','49'), ('2455','233','51','sonetVT','0','50'), ('2456','233','52','smdsIcip','0','51'), ('2457','233','53','propVirtual','0','52'), ('2458','233','54','propMultiplexor','0','53'), ('2459','233','55','ieee80212','0','54'), ('2460','233','56','fibreChannel','0','55'), ('2461','233','57','hippiInterface','0','56'), ('2462','233','58','frameRelayInterconnect','0','57'), ('2463','233','59','aflane8023','0','58'), ('2464','233','60','aflane8025','0','59'), ('2465','233','61','cctEmul','0','60'), ('2466','233','62','fastEther','0','61'), ('2467','233','63','isdn','0','62'), ('2468','233','64','v11','0','63'), ('2469','233','65','v36','0','64'), ('2470','233','66','g703at64k','0','65'), ('2471','233','67','g703at2mb','0','66'), ('2472','233','68','qllc','0','67'), ('2473','233','69','fastEtherFX','0','68'), ('2474','233','70','channel','0','69'), ('2475','233','71','ieee80211','0','70'), ('2476','233','72','ibm370parChan','0','71'), ('2477','233','73','escon','0','72'), ('2478','233','74','dlsw','0','73'), ('2479','233','75','isdns','0','74'), ('2480','233','76','isdnu','0','75'), ('2481','233','77','lapd','0','76'), ('2482','233','78','ipSwitch','0','77'), ('2483','233','79','rsrb','0','78'), ('2484','233','80','atmLogical','0','79'), ('2485','233','81','ds0','0','80'), ('2486','233','82','ds0Bundle','0','81'), ('2487','233','83','bsc','0','82'), ('2488','233','84','async','0','83'), ('2489','233','85','cnr','0','84'), ('2490','233','86','iso88025Dtr','0','85'), ('2491','233','87','eplrs','0','86'), ('2492','233','88','arap','0','87'), ('2493','233','89','propCnls','0','88'), ('2494','233','90','hostPad','0','89'), ('2495','233','91','termPad','0','90'), ('2496','233','92','frameRelayMPI','0','91'), ('2497','233','93','x213','0','92'), ('2498','233','94','adsl','0','93'), ('2499','233','95','radsl','0','94'), ('2500','233','96','sdsl','0','95'), ('2501','233','97','vdsl','0','96'), ('2502','233','98','iso88025CRFPInt','0','97'), ('2503','233','99','myrinet','0','98'), ('2504','233','100','voiceEM','0','99'), ('2505','233','101','voiceFXO','0','100'), ('2506','233','102','voiceFXS','0','101'), ('2507','233','103','voiceEncap','0','102'), ('2508','233','104','voiceOverIp','0','103'), ('2509','233','105','atmDxi','0','104'), ('2510','233','106','atmFuni','0','105'), ('2511','233','107','atmIma','0','106'), ('2512','233','108','pppMultilinkBundle','0','107'), ('2513','233','109','ipOverCdlc','0','108'), ('2514','233','110','ipOverClaw','0','109'), ('2515','233','111','stackToStack','0','110'), ('2516','233','112','virtualIpAddress','0','111'), ('2517','233','113','mpc','0','112'), ('2518','233','114','ipOverAtm','0','113'), ('2519','233','115','iso88025Fiber','0','114'), ('2520','233','116','tdlc','0','115'), ('2521','233','117','gigabitEthernet','0','116'), ('2522','233','118','hdlc','0','117'), ('2523','233','119','lapf','0','118'), ('2524','233','120','v37','0','119'), ('2525','233','121','x25mlp','0','120'), ('2526','233','122','x25huntGroup','0','121'), ('2527','233','123','trasnpHdlc','0','122'), ('2528','233','124','interleave','0','123'), ('2529','233','125','fast','0','124'), ('2530','233','126','ip','0','125'), ('2531','233','127','docsCableMaclayer','0','126'), ('2532','233','128','docsCableDownstream','0','127'), ('2533','233','129','docsCableUpstream','0','128'), ('2534','233','130','a12MppSwitch','0','129'), ('2535','233','131','tunnel','0','130'), ('2536','233','132','coffee','0','131'), ('2537','233','133','ces','0','132'), ('2538','233','134','atmSubInterface','0','133'), ('2539','233','135','l2vlan','0','134'), ('2540','233','136','l3ipvlan','0','135'), ('2541','233','137','l3ipxvlan','0','136'), ('2542','233','138','digitalPowerline','0','137'), ('2543','233','139','mediaMailOverIp','0','138'), ('2544','233','140','dtm','0','139'), ('2545','233','141','dcn','0','140'), ('2546','233','142','ipForward','0','141'), ('2547','233','143','msdsl','0','142'), ('2548','233','144','ieee1394','0','143'), ('2549','233','145','if-gsn','0','144'), ('2550','233','146','dvbRccMacLayer','0','145'), ('2551','233','147','dvbRccDownstream','0','146'), ('2552','233','148','dvbRccUpstream','0','147'), ('2553','233','149','atmVirtual','0','148'), ('2554','233','150','mplsTunnel','0','149'), ('2555','233','151','srp','0','150'), ('2556','233','152','voiceOverAtm','0','151'), ('2557','233','153','voiceOverFrameRelay','0','152'), ('2558','233','154','idsl','0','153'), ('2559','233','155','compositeLink','0','154'), ('2560','233','156','ss7SigLink','0','155'), ('2561','233','157','propWirelessP2P','0','156'), ('2562','233','158','frForward','0','157'), ('2563','233','159','rfc1483','0','158'), ('2564','233','160','usb','0','159'), ('2565','233','161','ieee8023adLag','0','160'), ('2566','233','162','bgppolicyaccounting','0','161'), ('2567','233','163','frf16MfrBundle','0','162'), ('2568','233','164','h323Gatekeeper','0','163'), ('2569','233','165','h323Proxy','0','164'), ('2570','233','166','mpls','0','165'), ('2571','233','167','mfSigLink','0','166'), ('2572','233','168','hdsl2','0','167'), ('2573','233','169','shdsl','0','168'), ('2574','233','170','ds1FDL','0','169'), ('2575','233','171','pos','0','170'), ('2576','233','172','dvbAsiIn','0','171'), ('2577','233','173','dvbAsiOut','0','172'), ('2578','233','174','plc','0','173'), ('2579','233','175','nfas','0','174'), ('2580','233','176','tr008','0','175'), ('2581','233','177','gr303RDT','0','176'), ('2582','233','178','gr303IDT','0','177'), ('2583','233','179','isup','0','178'), ('2584','233','180','propDocsWirelessMaclayer','0','179'), ('2585','233','181','propDocsWirelessDownstream','0','180'), ('2586','233','182','propDocsWirelessUpstream','0','181'), ('2587','233','183','hiperlan2','0','182'), ('2588','233','184','propBWAp2Mp','0','183'), ('2589','233','185','sonetOverheadChannel','0','184'), ('2590','233','186','digitalWrapperOverheadChannel','0','185'), ('2591','233','187','aal2','0','186'), ('2592','233','188','radioMAC','0','187'), ('2593','233','189','atmRadio','0','188'), ('2594','233','190','imt','0','189'), ('2595','233','191','mvl','0','190'), ('2596','233','192','reachDSL','0','191'), ('2597','233','193','frDlciEndPt','0','192'), ('2598','233','194','atmVciEndPt','0','193'), ('2599','233','195','opticalChannel','0','194'), ('2600','233','196','opticalTransport','0','195'), ('2601','233','197','propAtm','0','196'), ('2602','233','198','voiceOverCable','0','197'), ('2603','233','199','infiniband','0','198'), ('2604','233','200','teLink','0','199'), ('2605','233','201','q2931','0','200'), ('2606','233','202','virtualTg','0','201'), ('2607','233','203','sipTg','0','202'), ('2608','233','204','sipSig','0','203'), ('2609','233','205','docsCableUpstreamChannel','0','204'), ('2610','233','206','econet','0','205'), ('2611','233','207','pon155','0','206'), ('2612','233','208','pon622','0','207'), ('2613','233','209','bridge','0','208'), ('2614','233','210','linegroup','0','209'), ('2615','233','211','voiceEMFGD','0','210'), ('2616','233','212','voiceFGDEANA','0','211'), ('2617','233','213','voiceDID','0','212'), ('2618','233','214','mpegTransport','0','213'), ('2619','233','215','sixToFour','0','214'), ('2620','233','216','gtp','0','215'), ('2621','233','217','pdnEtherLoop1','0','216'), ('2622','233','218','pdnEtherLoop2','0','217'), ('2623','233','219','opticalChannelGroup','0','218'), ('2624','233','220','homepna','0','219'), ('2625','233','221','gfp','0','220'), ('2626','233','222','ciscoISLvlan','0','221'), ('2627','233','223','actelisMetaLOOP','0','222'), ('2628','233','224','fcipLink','0','223'), ('2629','233','225','rpr','0','224'), ('2630','233','226','qam','0','225'), ('2631','233','227','lmp','0','226'), ('2632','233','228','cblVectaStar','0','227'), ('2633','233','229','docsCableMCmtsDownstream','0','228'), ('2634','233','230','adsl2','0','229'), ('2635','233','231','macSecControlledIF','0','230'), ('2636','233','232','macSecUncontrolledIF','0','231'), ('2637','233','233','aviciOpticalEther','0','232'), ('2638','233','234','atmbond','0','233'), ('2639','233','235','voiceFGDOS','0','234'), ('2640','233','236','mocaVersion1','0','235'), ('2641','233','237','ieee80216WMAN','0','236'), ('2642','233','238','adsl2plus','0','237'), ('2643','233','239','dvbRcsMacLayer','0','238'), ('2644','233','240','dvbTdm','0','239'), ('2645','233','241','dvbRcsTdma','0','240'), ('2646','233','242','x86Laps','0','241'), ('2647','233','243','wwanPP','0','242'), ('2648','233','244','wwanPP2','0','243'), ('2649','233','245','voiceEBS','0','244'), ('2650','233','246','ifPwType','0','245'), ('2651','233','247','ilan','0','246'), ('2652','233','248','pip','0','247'), ('2653','233','249','aluELP','0','248'), ('2654','233','250','gpon','0','249'), ('2655','233','251','vdsl2','0','250'), ('2656','233','252','capwapDot11Profile','0','251'), ('2657','233','253','capwapDot11Bss','0','252'), ('2658','233','254','capwapWtpVirtualRadio','0','253'), ('2659','233','255','bits','0','254'), ('2660','233','256','docsCableUpstreamRfPort','0','255'), ('2661','233','257','cableDownstreamRfPort','0','256'), ('2662','233','258','vmwareVirtualNic','0','257'), ('2663','233','259','ieee802154','0','258'), ('2664','233','260','otnOdu','0','259'), ('2665','233','261','otnOtu','0','260'), ('2666','233','262','ifVfiType','0','261'), ('2667','233','263','g9981','0','262'), ('2668','233','264','g9982','0','263'), ('2669','233','265','g9983','0','264'), ('2670','233','266','aluEpon','0','265'), ('2671','233','267','aluEponOnu','0','266'), ('2672','233','268','aluEponPhysicalUni','0','267'), ('2673','233','269','aluEponLogicalLink','0','268'), ('2674','233','270','aluGponOnu','0','269'), ('2675','233','271','aluGponPhysicalUni','0','270'), ('2676','233','272','vmwareNicTeam','0','271'), ('2677','233','277','docsOfdmDownstream','0','272'), ('2678','233','278','docsOfdmaUpstream','0','273'), ('2679','233','279','gfast','0','274'), ('2680','233','280','sdci','0','275'), ('2681','233','281','xboxWireless','0','276'), ('2682','233','282','fastdsl','0','277'), ('2683','233','283','docsCableScte55d1FwdOob','0','278'), ('2684','233','284','docsCableScte55d1RetOob','0','279'), ('2685','233','285','docsCableScte55d2DsOob','0','280'), ('2686','233','286','docsCableScte55d2UsOob','0','281'), ('2687','233','287','docsCableNdf','0','282'), ('2688','233','288','docsCableNdr','0','283'), ('2689','233','289','ptm','0','284'), ('2690','233','290','ghn','0','285'), ('2691','234','0','Down','0','0'), ('2692','234','1','Up','0','1'), ('2693','235','0','not available','0','0'), ('2694','235','1','available','0','1'), ('2695','235','2','unknown','0','2'), ('2696','236','1','normal','0','0'), ('2697','236','2','warning','0','1'), ('2698','236','3','critical','0','2'), ('2699','236','4','shutdown','0','3'), ('2700','236','5','notPresent','0','4'), ('2701','236','6','notFunctioning','0','5'), ('2702','237','1','unknown','0','0'), ('2703','237','2','halfDuplex','0','1'), ('2704','237','3','fullDuplex','0','2'), ('2705','238','1','up','0','0'), ('2706','238','2','down','0','1'), ('2707','238','3','testing','0','2'), ('2708','238','4','unknown','0','3'), ('2709','238','5','dormant','0','4'), ('2710','238','6','notPresent','0','5'), ('2711','238','7','lowerLayerDown','0','6'), ('2712','239','1','other','0','0'), ('2713','239','2','regular1822','0','1'), ('2714','239','3','hdh1822','0','2'), ('2715','239','4','ddnX25','0','3'), ('2716','239','5','rfc877x25','0','4'), ('2717','239','6','ethernetCsmacd','0','5'), ('2718','239','7','iso88023Csmacd','0','6'), ('2719','239','8','iso88024TokenBus','0','7'), ('2720','239','9','iso88025TokenRing','0','8'), ('2721','239','10','iso88026Man','0','9'), ('2722','239','11','starLan','0','10'), ('2723','239','12','proteon10Mbit','0','11'), ('2724','239','13','proteon80Mbit','0','12'), ('2725','239','14','hyperchannel','0','13'), ('2726','239','15','fddi','0','14'), ('2727','239','16','lapb','0','15'), ('2728','239','17','sdlc','0','16'), ('2729','239','18','ds1','0','17'), ('2730','239','19','e1','0','18'), ('2731','239','20','basicISDN','0','19'), ('2732','239','21','primaryISDN','0','20'), ('2733','239','22','propPointToPointSerial','0','21'), ('2734','239','23','ppp','0','22'), ('2735','239','24','softwareLoopback','0','23'), ('2736','239','25','eon','0','24'), ('2737','239','26','ethernet3Mbit','0','25'), ('2738','239','27','nsip','0','26'), ('2739','239','28','slip','0','27'), ('2740','239','29','ultra','0','28'), ('2741','239','30','ds3','0','29'), ('2742','239','31','sip','0','30'), ('2743','239','32','frameRelay','0','31'), ('2744','239','33','rs232','0','32'), ('2745','239','34','para','0','33'), ('2746','239','35','arcnet','0','34'), ('2747','239','36','arcnetPlus','0','35'), ('2748','239','37','atm','0','36'), ('2749','239','38','miox25','0','37'), ('2750','239','39','sonet','0','38'), ('2751','239','40','x25ple','0','39'), ('2752','239','41','iso88022llc','0','40'), ('2753','239','42','localTalk','0','41'), ('2754','239','43','smdsDxi','0','42'), ('2755','239','44','frameRelayService','0','43'), ('2756','239','45','v35','0','44'), ('2757','239','46','hssi','0','45'), ('2758','239','47','hippi','0','46'), ('2759','239','48','modem','0','47'), ('2760','239','49','aal5','0','48'), ('2761','239','50','sonetPath','0','49'), ('2762','239','51','sonetVT','0','50'), ('2763','239','52','smdsIcip','0','51'), ('2764','239','53','propVirtual','0','52'), ('2765','239','54','propMultiplexor','0','53'), ('2766','239','55','ieee80212','0','54'), ('2767','239','56','fibreChannel','0','55'), ('2768','239','57','hippiInterface','0','56'), ('2769','239','58','frameRelayInterconnect','0','57'), ('2770','239','59','aflane8023','0','58'), ('2771','239','60','aflane8025','0','59'), ('2772','239','61','cctEmul','0','60'), ('2773','239','62','fastEther','0','61'), ('2774','239','63','isdn','0','62'), ('2775','239','64','v11','0','63'), ('2776','239','65','v36','0','64'), ('2777','239','66','g703at64k','0','65'), ('2778','239','67','g703at2mb','0','66'), ('2779','239','68','qllc','0','67'), ('2780','239','69','fastEtherFX','0','68'), ('2781','239','70','channel','0','69'), ('2782','239','71','ieee80211','0','70'), ('2783','239','72','ibm370parChan','0','71'), ('2784','239','73','escon','0','72'), ('2785','239','74','dlsw','0','73'), ('2786','239','75','isdns','0','74'), ('2787','239','76','isdnu','0','75'), ('2788','239','77','lapd','0','76'), ('2789','239','78','ipSwitch','0','77'), ('2790','239','79','rsrb','0','78'), ('2791','239','80','atmLogical','0','79'), ('2792','239','81','ds0','0','80'), ('2793','239','82','ds0Bundle','0','81'), ('2794','239','83','bsc','0','82'), ('2795','239','84','async','0','83'), ('2796','239','85','cnr','0','84'), ('2797','239','86','iso88025Dtr','0','85'), ('2798','239','87','eplrs','0','86'), ('2799','239','88','arap','0','87'), ('2800','239','89','propCnls','0','88'), ('2801','239','90','hostPad','0','89'), ('2802','239','91','termPad','0','90'), ('2803','239','92','frameRelayMPI','0','91'), ('2804','239','93','x213','0','92'), ('2805','239','94','adsl','0','93'), ('2806','239','95','radsl','0','94'), ('2807','239','96','sdsl','0','95'), ('2808','239','97','vdsl','0','96'), ('2809','239','98','iso88025CRFPInt','0','97'), ('2810','239','99','myrinet','0','98'), ('2811','239','100','voiceEM','0','99'), ('2812','239','101','voiceFXO','0','100'), ('2813','239','102','voiceFXS','0','101'), ('2814','239','103','voiceEncap','0','102'), ('2815','239','104','voiceOverIp','0','103'), ('2816','239','105','atmDxi','0','104'), ('2817','239','106','atmFuni','0','105'), ('2818','239','107','atmIma','0','106'), ('2819','239','108','pppMultilinkBundle','0','107'), ('2820','239','109','ipOverCdlc','0','108'), ('2821','239','110','ipOverClaw','0','109'), ('2822','239','111','stackToStack','0','110'), ('2823','239','112','virtualIpAddress','0','111'), ('2824','239','113','mpc','0','112'), ('2825','239','114','ipOverAtm','0','113'), ('2826','239','115','iso88025Fiber','0','114'), ('2827','239','116','tdlc','0','115'), ('2828','239','117','gigabitEthernet','0','116'), ('2829','239','118','hdlc','0','117'), ('2830','239','119','lapf','0','118'), ('2831','239','120','v37','0','119'), ('2832','239','121','x25mlp','0','120'), ('2833','239','122','x25huntGroup','0','121'), ('2834','239','123','trasnpHdlc','0','122'), ('2835','239','124','interleave','0','123'), ('2836','239','125','fast','0','124'), ('2837','239','126','ip','0','125'), ('2838','239','127','docsCableMaclayer','0','126'), ('2839','239','128','docsCableDownstream','0','127'), ('2840','239','129','docsCableUpstream','0','128'), ('2841','239','130','a12MppSwitch','0','129'), ('2842','239','131','tunnel','0','130'), ('2843','239','132','coffee','0','131'), ('2844','239','133','ces','0','132'), ('2845','239','134','atmSubInterface','0','133'), ('2846','239','135','l2vlan','0','134'), ('2847','239','136','l3ipvlan','0','135'), ('2848','239','137','l3ipxvlan','0','136'), ('2849','239','138','digitalPowerline','0','137'), ('2850','239','139','mediaMailOverIp','0','138'), ('2851','239','140','dtm','0','139'), ('2852','239','141','dcn','0','140'), ('2853','239','142','ipForward','0','141'), ('2854','239','143','msdsl','0','142'), ('2855','239','144','ieee1394','0','143'), ('2856','239','145','if-gsn','0','144'), ('2857','239','146','dvbRccMacLayer','0','145'), ('2858','239','147','dvbRccDownstream','0','146'), ('2859','239','148','dvbRccUpstream','0','147'), ('2860','239','149','atmVirtual','0','148'), ('2861','239','150','mplsTunnel','0','149'), ('2862','239','151','srp','0','150'), ('2863','239','152','voiceOverAtm','0','151'), ('2864','239','153','voiceOverFrameRelay','0','152'), ('2865','239','154','idsl','0','153'), ('2866','239','155','compositeLink','0','154'), ('2867','239','156','ss7SigLink','0','155'), ('2868','239','157','propWirelessP2P','0','156'), ('2869','239','158','frForward','0','157'), ('2870','239','159','rfc1483','0','158'), ('2871','239','160','usb','0','159'), ('2872','239','161','ieee8023adLag','0','160'), ('2873','239','162','bgppolicyaccounting','0','161'), ('2874','239','163','frf16MfrBundle','0','162'), ('2875','239','164','h323Gatekeeper','0','163'), ('2876','239','165','h323Proxy','0','164'), ('2877','239','166','mpls','0','165'), ('2878','239','167','mfSigLink','0','166'), ('2879','239','168','hdsl2','0','167'), ('2880','239','169','shdsl','0','168'), ('2881','239','170','ds1FDL','0','169'), ('2882','239','171','pos','0','170'), ('2883','239','172','dvbAsiIn','0','171'), ('2884','239','173','dvbAsiOut','0','172'), ('2885','239','174','plc','0','173'), ('2886','239','175','nfas','0','174'), ('2887','239','176','tr008','0','175'), ('2888','239','177','gr303RDT','0','176'), ('2889','239','178','gr303IDT','0','177'), ('2890','239','179','isup','0','178'), ('2891','239','180','propDocsWirelessMaclayer','0','179'), ('2892','239','181','propDocsWirelessDownstream','0','180'), ('2893','239','182','propDocsWirelessUpstream','0','181'), ('2894','239','183','hiperlan2','0','182'), ('2895','239','184','propBWAp2Mp','0','183'), ('2896','239','185','sonetOverheadChannel','0','184'), ('2897','239','186','digitalWrapperOverheadChannel','0','185'), ('2898','239','187','aal2','0','186'), ('2899','239','188','radioMAC','0','187'), ('2900','239','189','atmRadio','0','188'), ('2901','239','190','imt','0','189'), ('2902','239','191','mvl','0','190'), ('2903','239','192','reachDSL','0','191'), ('2904','239','193','frDlciEndPt','0','192'), ('2905','239','194','atmVciEndPt','0','193'), ('2906','239','195','opticalChannel','0','194'), ('2907','239','196','opticalTransport','0','195'), ('2908','239','197','propAtm','0','196'), ('2909','239','198','voiceOverCable','0','197'), ('2910','239','199','infiniband','0','198'), ('2911','239','200','teLink','0','199'), ('2912','239','201','q2931','0','200'), ('2913','239','202','virtualTg','0','201'), ('2914','239','203','sipTg','0','202'), ('2915','239','204','sipSig','0','203'), ('2916','239','205','docsCableUpstreamChannel','0','204'), ('2917','239','206','econet','0','205'), ('2918','239','207','pon155','0','206'), ('2919','239','208','pon622','0','207'), ('2920','239','209','bridge','0','208'), ('2921','239','210','linegroup','0','209'), ('2922','239','211','voiceEMFGD','0','210'), ('2923','239','212','voiceFGDEANA','0','211'), ('2924','239','213','voiceDID','0','212'), ('2925','239','214','mpegTransport','0','213'), ('2926','239','215','sixToFour','0','214'), ('2927','239','216','gtp','0','215'), ('2928','239','217','pdnEtherLoop1','0','216'), ('2929','239','218','pdnEtherLoop2','0','217'), ('2930','239','219','opticalChannelGroup','0','218'), ('2931','239','220','homepna','0','219'), ('2932','239','221','gfp','0','220'), ('2933','239','222','ciscoISLvlan','0','221'), ('2934','239','223','actelisMetaLOOP','0','222'), ('2935','239','224','fcipLink','0','223'), ('2936','239','225','rpr','0','224'), ('2937','239','226','qam','0','225'), ('2938','239','227','lmp','0','226'), ('2939','239','228','cblVectaStar','0','227'), ('2940','239','229','docsCableMCmtsDownstream','0','228'), ('2941','239','230','adsl2','0','229'), ('2942','239','231','macSecControlledIF','0','230'), ('2943','239','232','macSecUncontrolledIF','0','231'), ('2944','239','233','aviciOpticalEther','0','232'), ('2945','239','234','atmbond','0','233'), ('2946','239','235','voiceFGDOS','0','234'), ('2947','239','236','mocaVersion1','0','235'), ('2948','239','237','ieee80216WMAN','0','236'), ('2949','239','238','adsl2plus','0','237'), ('2950','239','239','dvbRcsMacLayer','0','238'), ('2951','239','240','dvbTdm','0','239'), ('2952','239','241','dvbRcsTdma','0','240'), ('2953','239','242','x86Laps','0','241'), ('2954','239','243','wwanPP','0','242'), ('2955','239','244','wwanPP2','0','243'), ('2956','239','245','voiceEBS','0','244'), ('2957','239','246','ifPwType','0','245'), ('2958','239','247','ilan','0','246'), ('2959','239','248','pip','0','247'), ('2960','239','249','aluELP','0','248'), ('2961','239','250','gpon','0','249'), ('2962','239','251','vdsl2','0','250'), ('2963','239','252','capwapDot11Profile','0','251'), ('2964','239','253','capwapDot11Bss','0','252'), ('2965','239','254','capwapWtpVirtualRadio','0','253'), ('2966','239','255','bits','0','254'), ('2967','239','256','docsCableUpstreamRfPort','0','255'), ('2968','239','257','cableDownstreamRfPort','0','256'), ('2969','239','258','vmwareVirtualNic','0','257'), ('2970','239','259','ieee802154','0','258'), ('2971','239','260','otnOdu','0','259'), ('2972','239','261','otnOtu','0','260'), ('2973','239','262','ifVfiType','0','261'), ('2974','239','263','g9981','0','262'), ('2975','239','264','g9982','0','263'), ('2976','239','265','g9983','0','264'), ('2977','239','266','aluEpon','0','265'), ('2978','239','267','aluEponOnu','0','266'), ('2979','239','268','aluEponPhysicalUni','0','267'), ('2980','239','269','aluEponLogicalLink','0','268'), ('2981','239','270','aluGponOnu','0','269'), ('2982','239','271','aluGponPhysicalUni','0','270'), ('2983','239','272','vmwareNicTeam','0','271'), ('2984','239','277','docsOfdmDownstream','0','272'), ('2985','239','278','docsOfdmaUpstream','0','273'), ('2986','239','279','gfast','0','274'), ('2987','239','280','sdci','0','275'), ('2988','239','281','xboxWireless','0','276'), ('2989','239','282','fastdsl','0','277'), ('2990','239','283','docsCableScte55d1FwdOob','0','278'), ('2991','239','284','docsCableScte55d1RetOob','0','279'), ('2992','239','285','docsCableScte55d2DsOob','0','280'), ('2993','239','286','docsCableScte55d2UsOob','0','281'), ('2994','239','287','docsCableNdf','0','282'), ('2995','239','288','docsCableNdr','0','283'), ('2996','239','289','ptm','0','284'), ('2997','239','290','ghn','0','285'), ('2998','240','0','Down','0','0'), ('2999','240','1','Up','0','1'), ('3000','241','0','not available','0','0'), ('3001','241','1','available','0','1'), ('3002','241','2','unknown','0','2'), ('3003','242','1','normal','0','0'), ('3004','242','2','warning','0','1'), ('3005','242','3','critical','0','2'), ('3006','242','4','shutdown','0','3'), ('3007','242','5','notPresent','0','4'), ('3008','242','6','notFunctioning','0','5'), ('3009','243','1','unknown','0','0'), ('3010','243','2','halfDuplex','0','1'), ('3011','243','3','fullDuplex','0','2'), ('3012','244','1','up','0','0'), ('3013','244','2','down','0','1'), ('3014','244','3','testing','0','2'), ('3015','244','4','unknown','0','3'), ('3016','244','5','dormant','0','4'), ('3017','244','6','notPresent','0','5'), ('3018','244','7','lowerLayerDown','0','6'), ('3019','245','1','other','0','0'), ('3020','245','2','regular1822','0','1'), ('3021','245','3','hdh1822','0','2'), ('3022','245','4','ddnX25','0','3'), ('3023','245','5','rfc877x25','0','4'), ('3024','245','6','ethernetCsmacd','0','5'), ('3025','245','7','iso88023Csmacd','0','6'), ('3026','245','8','iso88024TokenBus','0','7'), ('3027','245','9','iso88025TokenRing','0','8'), ('3028','245','10','iso88026Man','0','9'), ('3029','245','11','starLan','0','10'), ('3030','245','12','proteon10Mbit','0','11'), ('3031','245','13','proteon80Mbit','0','12'), ('3032','245','14','hyperchannel','0','13'), ('3033','245','15','fddi','0','14'), ('3034','245','16','lapb','0','15'), ('3035','245','17','sdlc','0','16'), ('3036','245','18','ds1','0','17'), ('3037','245','19','e1','0','18'), ('3038','245','20','basicISDN','0','19'), ('3039','245','21','primaryISDN','0','20'), ('3040','245','22','propPointToPointSerial','0','21'), ('3041','245','23','ppp','0','22'), ('3042','245','24','softwareLoopback','0','23'), ('3043','245','25','eon','0','24'), ('3044','245','26','ethernet3Mbit','0','25'), ('3045','245','27','nsip','0','26'), ('3046','245','28','slip','0','27'), ('3047','245','29','ultra','0','28'), ('3048','245','30','ds3','0','29'), ('3049','245','31','sip','0','30'), ('3050','245','32','frameRelay','0','31'), ('3051','245','33','rs232','0','32'), ('3052','245','34','para','0','33'), ('3053','245','35','arcnet','0','34'), ('3054','245','36','arcnetPlus','0','35'), ('3055','245','37','atm','0','36'), ('3056','245','38','miox25','0','37'), ('3057','245','39','sonet','0','38'), ('3058','245','40','x25ple','0','39'), ('3059','245','41','iso88022llc','0','40'), ('3060','245','42','localTalk','0','41'), ('3061','245','43','smdsDxi','0','42'), ('3062','245','44','frameRelayService','0','43'), ('3063','245','45','v35','0','44'), ('3064','245','46','hssi','0','45'), ('3065','245','47','hippi','0','46'), ('3066','245','48','modem','0','47'), ('3067','245','49','aal5','0','48'), ('3068','245','50','sonetPath','0','49'), ('3069','245','51','sonetVT','0','50'), ('3070','245','52','smdsIcip','0','51'), ('3071','245','53','propVirtual','0','52'), ('3072','245','54','propMultiplexor','0','53'), ('3073','245','55','ieee80212','0','54'), ('3074','245','56','fibreChannel','0','55'), ('3075','245','57','hippiInterface','0','56'), ('3076','245','58','frameRelayInterconnect','0','57'), ('3077','245','59','aflane8023','0','58'), ('3078','245','60','aflane8025','0','59'), ('3079','245','61','cctEmul','0','60'), ('3080','245','62','fastEther','0','61'), ('3081','245','63','isdn','0','62'), ('3082','245','64','v11','0','63'), ('3083','245','65','v36','0','64'), ('3084','245','66','g703at64k','0','65'), ('3085','245','67','g703at2mb','0','66'), ('3086','245','68','qllc','0','67'), ('3087','245','69','fastEtherFX','0','68'), ('3088','245','70','channel','0','69'), ('3089','245','71','ieee80211','0','70'), ('3090','245','72','ibm370parChan','0','71'), ('3091','245','73','escon','0','72'), ('3092','245','74','dlsw','0','73'), ('3093','245','75','isdns','0','74'), ('3094','245','76','isdnu','0','75'), ('3095','245','77','lapd','0','76'), ('3096','245','78','ipSwitch','0','77'), ('3097','245','79','rsrb','0','78'), ('3098','245','80','atmLogical','0','79'), ('3099','245','81','ds0','0','80'), ('3100','245','82','ds0Bundle','0','81'), ('3101','245','83','bsc','0','82'), ('3102','245','84','async','0','83'), ('3103','245','85','cnr','0','84'), ('3104','245','86','iso88025Dtr','0','85'), ('3105','245','87','eplrs','0','86'), ('3106','245','88','arap','0','87'), ('3107','245','89','propCnls','0','88'), ('3108','245','90','hostPad','0','89'), ('3109','245','91','termPad','0','90'), ('3110','245','92','frameRelayMPI','0','91'), ('3111','245','93','x213','0','92'), ('3112','245','94','adsl','0','93'), ('3113','245','95','radsl','0','94'), ('3114','245','96','sdsl','0','95'), ('3115','245','97','vdsl','0','96'), ('3116','245','98','iso88025CRFPInt','0','97'), ('3117','245','99','myrinet','0','98'), ('3118','245','100','voiceEM','0','99'), ('3119','245','101','voiceFXO','0','100'), ('3120','245','102','voiceFXS','0','101'), ('3121','245','103','voiceEncap','0','102'), ('3122','245','104','voiceOverIp','0','103'), ('3123','245','105','atmDxi','0','104'), ('3124','245','106','atmFuni','0','105'), ('3125','245','107','atmIma','0','106'), ('3126','245','108','pppMultilinkBundle','0','107'), ('3127','245','109','ipOverCdlc','0','108'), ('3128','245','110','ipOverClaw','0','109'), ('3129','245','111','stackToStack','0','110'), ('3130','245','112','virtualIpAddress','0','111'), ('3131','245','113','mpc','0','112'), ('3132','245','114','ipOverAtm','0','113'), ('3133','245','115','iso88025Fiber','0','114'), ('3134','245','116','tdlc','0','115'), ('3135','245','117','gigabitEthernet','0','116'), ('3136','245','118','hdlc','0','117'), ('3137','245','119','lapf','0','118'), ('3138','245','120','v37','0','119'), ('3139','245','121','x25mlp','0','120'), ('3140','245','122','x25huntGroup','0','121'), ('3141','245','123','trasnpHdlc','0','122'), ('3142','245','124','interleave','0','123'), ('3143','245','125','fast','0','124'), ('3144','245','126','ip','0','125'), ('3145','245','127','docsCableMaclayer','0','126'), ('3146','245','128','docsCableDownstream','0','127'), ('3147','245','129','docsCableUpstream','0','128'), ('3148','245','130','a12MppSwitch','0','129'), ('3149','245','131','tunnel','0','130'), ('3150','245','132','coffee','0','131'), ('3151','245','133','ces','0','132'), ('3152','245','134','atmSubInterface','0','133'), ('3153','245','135','l2vlan','0','134'), ('3154','245','136','l3ipvlan','0','135'), ('3155','245','137','l3ipxvlan','0','136'), ('3156','245','138','digitalPowerline','0','137'), ('3157','245','139','mediaMailOverIp','0','138'), ('3158','245','140','dtm','0','139'), ('3159','245','141','dcn','0','140'), ('3160','245','142','ipForward','0','141'), ('3161','245','143','msdsl','0','142'), ('3162','245','144','ieee1394','0','143'), ('3163','245','145','if-gsn','0','144'), ('3164','245','146','dvbRccMacLayer','0','145'), ('3165','245','147','dvbRccDownstream','0','146'), ('3166','245','148','dvbRccUpstream','0','147'), ('3167','245','149','atmVirtual','0','148'), ('3168','245','150','mplsTunnel','0','149'), ('3169','245','151','srp','0','150'), ('3170','245','152','voiceOverAtm','0','151'), ('3171','245','153','voiceOverFrameRelay','0','152'), ('3172','245','154','idsl','0','153'), ('3173','245','155','compositeLink','0','154'), ('3174','245','156','ss7SigLink','0','155'), ('3175','245','157','propWirelessP2P','0','156'), ('3176','245','158','frForward','0','157'), ('3177','245','159','rfc1483','0','158'), ('3178','245','160','usb','0','159'), ('3179','245','161','ieee8023adLag','0','160'), ('3180','245','162','bgppolicyaccounting','0','161'), ('3181','245','163','frf16MfrBundle','0','162'), ('3182','245','164','h323Gatekeeper','0','163'), ('3183','245','165','h323Proxy','0','164'), ('3184','245','166','mpls','0','165'), ('3185','245','167','mfSigLink','0','166'), ('3186','245','168','hdsl2','0','167'), ('3187','245','169','shdsl','0','168'), ('3188','245','170','ds1FDL','0','169'), ('3189','245','171','pos','0','170'), ('3190','245','172','dvbAsiIn','0','171'), ('3191','245','173','dvbAsiOut','0','172'), ('3192','245','174','plc','0','173'), ('3193','245','175','nfas','0','174'), ('3194','245','176','tr008','0','175'), ('3195','245','177','gr303RDT','0','176'), ('3196','245','178','gr303IDT','0','177'), ('3197','245','179','isup','0','178'), ('3198','245','180','propDocsWirelessMaclayer','0','179'), ('3199','245','181','propDocsWirelessDownstream','0','180'), ('3200','245','182','propDocsWirelessUpstream','0','181'), ('3201','245','183','hiperlan2','0','182'), ('3202','245','184','propBWAp2Mp','0','183'), ('3203','245','185','sonetOverheadChannel','0','184'), ('3204','245','186','digitalWrapperOverheadChannel','0','185'), ('3205','245','187','aal2','0','186'), ('3206','245','188','radioMAC','0','187'), ('3207','245','189','atmRadio','0','188'), ('3208','245','190','imt','0','189'), ('3209','245','191','mvl','0','190'), ('3210','245','192','reachDSL','0','191'), ('3211','245','193','frDlciEndPt','0','192'), ('3212','245','194','atmVciEndPt','0','193'), ('3213','245','195','opticalChannel','0','194'), ('3214','245','196','opticalTransport','0','195'), ('3215','245','197','propAtm','0','196'), ('3216','245','198','voiceOverCable','0','197'), ('3217','245','199','infiniband','0','198'), ('3218','245','200','teLink','0','199'), ('3219','245','201','q2931','0','200'), ('3220','245','202','virtualTg','0','201'), ('3221','245','203','sipTg','0','202'), ('3222','245','204','sipSig','0','203'), ('3223','245','205','docsCableUpstreamChannel','0','204'), ('3224','245','206','econet','0','205'), ('3225','245','207','pon155','0','206'), ('3226','245','208','pon622','0','207'), ('3227','245','209','bridge','0','208'), ('3228','245','210','linegroup','0','209'), ('3229','245','211','voiceEMFGD','0','210'), ('3230','245','212','voiceFGDEANA','0','211'), ('3231','245','213','voiceDID','0','212'), ('3232','245','214','mpegTransport','0','213'), ('3233','245','215','sixToFour','0','214'), ('3234','245','216','gtp','0','215'), ('3235','245','217','pdnEtherLoop1','0','216'), ('3236','245','218','pdnEtherLoop2','0','217'), ('3237','245','219','opticalChannelGroup','0','218'), ('3238','245','220','homepna','0','219'), ('3239','245','221','gfp','0','220'), ('3240','245','222','ciscoISLvlan','0','221'), ('3241','245','223','actelisMetaLOOP','0','222'), ('3242','245','224','fcipLink','0','223'), ('3243','245','225','rpr','0','224'), ('3244','245','226','qam','0','225'), ('3245','245','227','lmp','0','226'), ('3246','245','228','cblVectaStar','0','227'), ('3247','245','229','docsCableMCmtsDownstream','0','228'), ('3248','245','230','adsl2','0','229'), ('3249','245','231','macSecControlledIF','0','230'), ('3250','245','232','macSecUncontrolledIF','0','231'), ('3251','245','233','aviciOpticalEther','0','232'), ('3252','245','234','atmbond','0','233'), ('3253','245','235','voiceFGDOS','0','234'), ('3254','245','236','mocaVersion1','0','235'), ('3255','245','237','ieee80216WMAN','0','236'), ('3256','245','238','adsl2plus','0','237'), ('3257','245','239','dvbRcsMacLayer','0','238'), ('3258','245','240','dvbTdm','0','239'), ('3259','245','241','dvbRcsTdma','0','240'), ('3260','245','242','x86Laps','0','241'), ('3261','245','243','wwanPP','0','242'), ('3262','245','244','wwanPP2','0','243'), ('3263','245','245','voiceEBS','0','244'), ('3264','245','246','ifPwType','0','245'), ('3265','245','247','ilan','0','246'), ('3266','245','248','pip','0','247'), ('3267','245','249','aluELP','0','248'), ('3268','245','250','gpon','0','249'), ('3269','245','251','vdsl2','0','250'), ('3270','245','252','capwapDot11Profile','0','251'), ('3271','245','253','capwapDot11Bss','0','252'), ('3272','245','254','capwapWtpVirtualRadio','0','253'), ('3273','245','255','bits','0','254'), ('3274','245','256','docsCableUpstreamRfPort','0','255'), ('3275','245','257','cableDownstreamRfPort','0','256'), ('3276','245','258','vmwareVirtualNic','0','257'), ('3277','245','259','ieee802154','0','258'), ('3278','245','260','otnOdu','0','259'), ('3279','245','261','otnOtu','0','260'), ('3280','245','262','ifVfiType','0','261'), ('3281','245','263','g9981','0','262'), ('3282','245','264','g9982','0','263'), ('3283','245','265','g9983','0','264'), ('3284','245','266','aluEpon','0','265'), ('3285','245','267','aluEponOnu','0','266'), ('3286','245','268','aluEponPhysicalUni','0','267'), ('3287','245','269','aluEponLogicalLink','0','268'), ('3288','245','270','aluGponOnu','0','269'), ('3289','245','271','aluGponPhysicalUni','0','270'), ('3290','245','272','vmwareNicTeam','0','271'), ('3291','245','277','docsOfdmDownstream','0','272'), ('3292','245','278','docsOfdmaUpstream','0','273'), ('3293','245','279','gfast','0','274'), ('3294','245','280','sdci','0','275'), ('3295','245','281','xboxWireless','0','276'), ('3296','245','282','fastdsl','0','277'), ('3297','245','283','docsCableScte55d1FwdOob','0','278'), ('3298','245','284','docsCableScte55d1RetOob','0','279'), ('3299','245','285','docsCableScte55d2DsOob','0','280'), ('3300','245','286','docsCableScte55d2UsOob','0','281'), ('3301','245','287','docsCableNdf','0','282'), ('3302','245','288','docsCableNdr','0','283'), ('3303','245','289','ptm','0','284'), ('3304','245','290','ghn','0','285'), ('3305','246','0','Down','0','0'), ('3306','246','1','Up','0','1'), ('3307','247','0','not available','0','0'), ('3308','247','1','available','0','1'), ('3309','247','2','unknown','0','2'), ('3310','248','1','normal','0','0'), ('3311','248','2','warning','0','1'), ('3312','248','3','critical','0','2'), ('3313','248','4','shutdown','0','3'), ('3314','248','5','notPresent','0','4'), ('3315','248','6','notFunctioning','0','5'), ('3316','249','1','unknown','0','0'), ('3317','249','2','halfDuplex','0','1'), ('3318','249','3','fullDuplex','0','2'), ('3319','250','1','up','0','0'), ('3320','250','2','down','0','1'), ('3321','250','3','testing','0','2'), ('3322','250','4','unknown','0','3'), ('3323','250','5','dormant','0','4'), ('3324','250','6','notPresent','0','5'), ('3325','250','7','lowerLayerDown','0','6'), ('3326','251','1','other','0','0'), ('3327','251','2','regular1822','0','1'), ('3328','251','3','hdh1822','0','2'), ('3329','251','4','ddnX25','0','3'), ('3330','251','5','rfc877x25','0','4'), ('3331','251','6','ethernetCsmacd','0','5'), ('3332','251','7','iso88023Csmacd','0','6'), ('3333','251','8','iso88024TokenBus','0','7'), ('3334','251','9','iso88025TokenRing','0','8'), ('3335','251','10','iso88026Man','0','9'), ('3336','251','11','starLan','0','10'), ('3337','251','12','proteon10Mbit','0','11'), ('3338','251','13','proteon80Mbit','0','12'), ('3339','251','14','hyperchannel','0','13'), ('3340','251','15','fddi','0','14'), ('3341','251','16','lapb','0','15'), ('3342','251','17','sdlc','0','16'), ('3343','251','18','ds1','0','17'), ('3344','251','19','e1','0','18'), ('3345','251','20','basicISDN','0','19'), ('3346','251','21','primaryISDN','0','20'), ('3347','251','22','propPointToPointSerial','0','21'), ('3348','251','23','ppp','0','22'), ('3349','251','24','softwareLoopback','0','23'), ('3350','251','25','eon','0','24'), ('3351','251','26','ethernet3Mbit','0','25'), ('3352','251','27','nsip','0','26'), ('3353','251','28','slip','0','27'), ('3354','251','29','ultra','0','28'), ('3355','251','30','ds3','0','29'), ('3356','251','31','sip','0','30'), ('3357','251','32','frameRelay','0','31'), ('3358','251','33','rs232','0','32'), ('3359','251','34','para','0','33'), ('3360','251','35','arcnet','0','34'), ('3361','251','36','arcnetPlus','0','35'), ('3362','251','37','atm','0','36'), ('3363','251','38','miox25','0','37'), ('3364','251','39','sonet','0','38'), ('3365','251','40','x25ple','0','39'), ('3366','251','41','iso88022llc','0','40'), ('3367','251','42','localTalk','0','41'), ('3368','251','43','smdsDxi','0','42'), ('3369','251','44','frameRelayService','0','43'), ('3370','251','45','v35','0','44'), ('3371','251','46','hssi','0','45'), ('3372','251','47','hippi','0','46'), ('3373','251','48','modem','0','47'), ('3374','251','49','aal5','0','48'), ('3375','251','50','sonetPath','0','49'), ('3376','251','51','sonetVT','0','50'), ('3377','251','52','smdsIcip','0','51'), ('3378','251','53','propVirtual','0','52'), ('3379','251','54','propMultiplexor','0','53'), ('3380','251','55','ieee80212','0','54'), ('3381','251','56','fibreChannel','0','55'), ('3382','251','57','hippiInterface','0','56'), ('3383','251','58','frameRelayInterconnect','0','57'), ('3384','251','59','aflane8023','0','58'), ('3385','251','60','aflane8025','0','59'), ('3386','251','61','cctEmul','0','60'), ('3387','251','62','fastEther','0','61'), ('3388','251','63','isdn','0','62'), ('3389','251','64','v11','0','63'), ('3390','251','65','v36','0','64'), ('3391','251','66','g703at64k','0','65'), ('3392','251','67','g703at2mb','0','66'), ('3393','251','68','qllc','0','67'), ('3394','251','69','fastEtherFX','0','68'), ('3395','251','70','channel','0','69'), ('3396','251','71','ieee80211','0','70'), ('3397','251','72','ibm370parChan','0','71'), ('3398','251','73','escon','0','72'), ('3399','251','74','dlsw','0','73'), ('3400','251','75','isdns','0','74'), ('3401','251','76','isdnu','0','75'), ('3402','251','77','lapd','0','76'), ('3403','251','78','ipSwitch','0','77'), ('3404','251','79','rsrb','0','78'), ('3405','251','80','atmLogical','0','79'), ('3406','251','81','ds0','0','80'), ('3407','251','82','ds0Bundle','0','81'), ('3408','251','83','bsc','0','82'), ('3409','251','84','async','0','83'), ('3410','251','85','cnr','0','84'), ('3411','251','86','iso88025Dtr','0','85'), ('3412','251','87','eplrs','0','86'), ('3413','251','88','arap','0','87'), ('3414','251','89','propCnls','0','88'), ('3415','251','90','hostPad','0','89'), ('3416','251','91','termPad','0','90'), ('3417','251','92','frameRelayMPI','0','91'), ('3418','251','93','x213','0','92'), ('3419','251','94','adsl','0','93'), ('3420','251','95','radsl','0','94'), ('3421','251','96','sdsl','0','95'), ('3422','251','97','vdsl','0','96'), ('3423','251','98','iso88025CRFPInt','0','97'), ('3424','251','99','myrinet','0','98'), ('3425','251','100','voiceEM','0','99'), ('3426','251','101','voiceFXO','0','100'), ('3427','251','102','voiceFXS','0','101'), ('3428','251','103','voiceEncap','0','102'), ('3429','251','104','voiceOverIp','0','103'), ('3430','251','105','atmDxi','0','104'), ('3431','251','106','atmFuni','0','105'), ('3432','251','107','atmIma','0','106'), ('3433','251','108','pppMultilinkBundle','0','107'), ('3434','251','109','ipOverCdlc','0','108'), ('3435','251','110','ipOverClaw','0','109'), ('3436','251','111','stackToStack','0','110'), ('3437','251','112','virtualIpAddress','0','111'), ('3438','251','113','mpc','0','112'), ('3439','251','114','ipOverAtm','0','113'), ('3440','251','115','iso88025Fiber','0','114'), ('3441','251','116','tdlc','0','115'), ('3442','251','117','gigabitEthernet','0','116'), ('3443','251','118','hdlc','0','117'), ('3444','251','119','lapf','0','118'), ('3445','251','120','v37','0','119'), ('3446','251','121','x25mlp','0','120'), ('3447','251','122','x25huntGroup','0','121'), ('3448','251','123','trasnpHdlc','0','122'), ('3449','251','124','interleave','0','123'), ('3450','251','125','fast','0','124'), ('3451','251','126','ip','0','125'), ('3452','251','127','docsCableMaclayer','0','126'), ('3453','251','128','docsCableDownstream','0','127'), ('3454','251','129','docsCableUpstream','0','128'), ('3455','251','130','a12MppSwitch','0','129'), ('3456','251','131','tunnel','0','130'), ('3457','251','132','coffee','0','131'), ('3458','251','133','ces','0','132'), ('3459','251','134','atmSubInterface','0','133'), ('3460','251','135','l2vlan','0','134'), ('3461','251','136','l3ipvlan','0','135'), ('3462','251','137','l3ipxvlan','0','136'), ('3463','251','138','digitalPowerline','0','137'), ('3464','251','139','mediaMailOverIp','0','138'), ('3465','251','140','dtm','0','139'), ('3466','251','141','dcn','0','140'), ('3467','251','142','ipForward','0','141'), ('3468','251','143','msdsl','0','142'), ('3469','251','144','ieee1394','0','143'), ('3470','251','145','if-gsn','0','144'), ('3471','251','146','dvbRccMacLayer','0','145'), ('3472','251','147','dvbRccDownstream','0','146'), ('3473','251','148','dvbRccUpstream','0','147'), ('3474','251','149','atmVirtual','0','148'), ('3475','251','150','mplsTunnel','0','149'), ('3476','251','151','srp','0','150'), ('3477','251','152','voiceOverAtm','0','151'), ('3478','251','153','voiceOverFrameRelay','0','152'), ('3479','251','154','idsl','0','153'), ('3480','251','155','compositeLink','0','154'), ('3481','251','156','ss7SigLink','0','155'), ('3482','251','157','propWirelessP2P','0','156'), ('3483','251','158','frForward','0','157'), ('3484','251','159','rfc1483','0','158'), ('3485','251','160','usb','0','159'), ('3486','251','161','ieee8023adLag','0','160'), ('3487','251','162','bgppolicyaccounting','0','161'), ('3488','251','163','frf16MfrBundle','0','162'), ('3489','251','164','h323Gatekeeper','0','163'), ('3490','251','165','h323Proxy','0','164'), ('3491','251','166','mpls','0','165'), ('3492','251','167','mfSigLink','0','166'), ('3493','251','168','hdsl2','0','167'), ('3494','251','169','shdsl','0','168'), ('3495','251','170','ds1FDL','0','169'), ('3496','251','171','pos','0','170'), ('3497','251','172','dvbAsiIn','0','171'), ('3498','251','173','dvbAsiOut','0','172'), ('3499','251','174','plc','0','173'), ('3500','251','175','nfas','0','174'), ('3501','251','176','tr008','0','175'), ('3502','251','177','gr303RDT','0','176'), ('3503','251','178','gr303IDT','0','177'), ('3504','251','179','isup','0','178'), ('3505','251','180','propDocsWirelessMaclayer','0','179'), ('3506','251','181','propDocsWirelessDownstream','0','180'), ('3507','251','182','propDocsWirelessUpstream','0','181'), ('3508','251','183','hiperlan2','0','182'), ('3509','251','184','propBWAp2Mp','0','183'), ('3510','251','185','sonetOverheadChannel','0','184'), ('3511','251','186','digitalWrapperOverheadChannel','0','185'), ('3512','251','187','aal2','0','186'), ('3513','251','188','radioMAC','0','187'), ('3514','251','189','atmRadio','0','188'), ('3515','251','190','imt','0','189'), ('3516','251','191','mvl','0','190'), ('3517','251','192','reachDSL','0','191'), ('3518','251','193','frDlciEndPt','0','192'), ('3519','251','194','atmVciEndPt','0','193'), ('3520','251','195','opticalChannel','0','194'), ('3521','251','196','opticalTransport','0','195'), ('3522','251','197','propAtm','0','196'), ('3523','251','198','voiceOverCable','0','197'), ('3524','251','199','infiniband','0','198'), ('3525','251','200','teLink','0','199'), ('3526','251','201','q2931','0','200'), ('3527','251','202','virtualTg','0','201'), ('3528','251','203','sipTg','0','202'), ('3529','251','204','sipSig','0','203'), ('3530','251','205','docsCableUpstreamChannel','0','204'), ('3531','251','206','econet','0','205'), ('3532','251','207','pon155','0','206'), ('3533','251','208','pon622','0','207'), ('3534','251','209','bridge','0','208'), ('3535','251','210','linegroup','0','209'), ('3536','251','211','voiceEMFGD','0','210'), ('3537','251','212','voiceFGDEANA','0','211'), ('3538','251','213','voiceDID','0','212'), ('3539','251','214','mpegTransport','0','213'), ('3540','251','215','sixToFour','0','214'), ('3541','251','216','gtp','0','215'), ('3542','251','217','pdnEtherLoop1','0','216'), ('3543','251','218','pdnEtherLoop2','0','217'), ('3544','251','219','opticalChannelGroup','0','218'), ('3545','251','220','homepna','0','219'), ('3546','251','221','gfp','0','220'), ('3547','251','222','ciscoISLvlan','0','221'), ('3548','251','223','actelisMetaLOOP','0','222'), ('3549','251','224','fcipLink','0','223'), ('3550','251','225','rpr','0','224'), ('3551','251','226','qam','0','225'), ('3552','251','227','lmp','0','226'), ('3553','251','228','cblVectaStar','0','227'), ('3554','251','229','docsCableMCmtsDownstream','0','228'), ('3555','251','230','adsl2','0','229'), ('3556','251','231','macSecControlledIF','0','230'), ('3557','251','232','macSecUncontrolledIF','0','231'), ('3558','251','233','aviciOpticalEther','0','232'), ('3559','251','234','atmbond','0','233'), ('3560','251','235','voiceFGDOS','0','234'), ('3561','251','236','mocaVersion1','0','235'), ('3562','251','237','ieee80216WMAN','0','236'), ('3563','251','238','adsl2plus','0','237'), ('3564','251','239','dvbRcsMacLayer','0','238'), ('3565','251','240','dvbTdm','0','239'), ('3566','251','241','dvbRcsTdma','0','240'), ('3567','251','242','x86Laps','0','241'), ('3568','251','243','wwanPP','0','242'), ('3569','251','244','wwanPP2','0','243'), ('3570','251','245','voiceEBS','0','244'), ('3571','251','246','ifPwType','0','245'), ('3572','251','247','ilan','0','246'), ('3573','251','248','pip','0','247'), ('3574','251','249','aluELP','0','248'), ('3575','251','250','gpon','0','249'), ('3576','251','251','vdsl2','0','250'), ('3577','251','252','capwapDot11Profile','0','251'), ('3578','251','253','capwapDot11Bss','0','252'), ('3579','251','254','capwapWtpVirtualRadio','0','253'), ('3580','251','255','bits','0','254'), ('3581','251','256','docsCableUpstreamRfPort','0','255'), ('3582','251','257','cableDownstreamRfPort','0','256'), ('3583','251','258','vmwareVirtualNic','0','257'), ('3584','251','259','ieee802154','0','258'), ('3585','251','260','otnOdu','0','259'), ('3586','251','261','otnOtu','0','260'), ('3587','251','262','ifVfiType','0','261'), ('3588','251','263','g9981','0','262'), ('3589','251','264','g9982','0','263'), ('3590','251','265','g9983','0','264'), ('3591','251','266','aluEpon','0','265'), ('3592','251','267','aluEponOnu','0','266'), ('3593','251','268','aluEponPhysicalUni','0','267'), ('3594','251','269','aluEponLogicalLink','0','268'), ('3595','251','270','aluGponOnu','0','269'), ('3596','251','271','aluGponPhysicalUni','0','270'), ('3597','251','272','vmwareNicTeam','0','271'), ('3598','251','277','docsOfdmDownstream','0','272'), ('3599','251','278','docsOfdmaUpstream','0','273'), ('3600','251','279','gfast','0','274'), ('3601','251','280','sdci','0','275'), ('3602','251','281','xboxWireless','0','276'), ('3603','251','282','fastdsl','0','277'), ('3604','251','283','docsCableScte55d1FwdOob','0','278'), ('3605','251','284','docsCableScte55d1RetOob','0','279'), ('3606','251','285','docsCableScte55d2DsOob','0','280'), ('3607','251','286','docsCableScte55d2UsOob','0','281'), ('3608','251','287','docsCableNdf','0','282'), ('3609','251','288','docsCableNdr','0','283'), ('3610','251','289','ptm','0','284'), ('3611','251','290','ghn','0','285'), ('3612','252','0','Down','0','0'), ('3613','252','1','Up','0','1'), ('3614','253','0','not available','0','0'), ('3615','253','1','available','0','1'), ('3616','253','2','unknown','0','2'), ('3617','254','1','normal','0','0'), ('3618','254','2','warning','0','1'), ('3619','254','3','critical','0','2'), ('3620','254','4','shutdown','0','3'), ('3621','254','5','notPresent','0','4'), ('3622','254','6','notFunctioning','0','5'), ('3623','255','1','unknown','0','0'), ('3624','255','2','halfDuplex','0','1'), ('3625','255','3','fullDuplex','0','2'), ('3626','256','1','up','0','0'), ('3627','256','2','down','0','1'), ('3628','256','3','testing','0','2'), ('3629','256','4','unknown','0','3'), ('3630','256','5','dormant','0','4'), ('3631','256','6','notPresent','0','5'), ('3632','256','7','lowerLayerDown','0','6'), ('3633','257','1','other','0','0'), ('3634','257','2','regular1822','0','1'), ('3635','257','3','hdh1822','0','2'), ('3636','257','4','ddnX25','0','3'), ('3637','257','5','rfc877x25','0','4'), ('3638','257','6','ethernetCsmacd','0','5'), ('3639','257','7','iso88023Csmacd','0','6'), ('3640','257','8','iso88024TokenBus','0','7'), ('3641','257','9','iso88025TokenRing','0','8'), ('3642','257','10','iso88026Man','0','9'), ('3643','257','11','starLan','0','10'), ('3644','257','12','proteon10Mbit','0','11'), ('3645','257','13','proteon80Mbit','0','12'), ('3646','257','14','hyperchannel','0','13'), ('3647','257','15','fddi','0','14'), ('3648','257','16','lapb','0','15'), ('3649','257','17','sdlc','0','16'), ('3650','257','18','ds1','0','17'), ('3651','257','19','e1','0','18'), ('3652','257','20','basicISDN','0','19'), ('3653','257','21','primaryISDN','0','20'), ('3654','257','22','propPointToPointSerial','0','21'), ('3655','257','23','ppp','0','22'), ('3656','257','24','softwareLoopback','0','23'), ('3657','257','25','eon','0','24'), ('3658','257','26','ethernet3Mbit','0','25'), ('3659','257','27','nsip','0','26'), ('3660','257','28','slip','0','27'), ('3661','257','29','ultra','0','28'), ('3662','257','30','ds3','0','29'), ('3663','257','31','sip','0','30'), ('3664','257','32','frameRelay','0','31'), ('3665','257','33','rs232','0','32'), ('3666','257','34','para','0','33'), ('3667','257','35','arcnet','0','34'), ('3668','257','36','arcnetPlus','0','35'), ('3669','257','37','atm','0','36'), ('3670','257','38','miox25','0','37'), ('3671','257','39','sonet','0','38'), ('3672','257','40','x25ple','0','39'), ('3673','257','41','iso88022llc','0','40'), ('3674','257','42','localTalk','0','41'), ('3675','257','43','smdsDxi','0','42'), ('3676','257','44','frameRelayService','0','43'), ('3677','257','45','v35','0','44'), ('3678','257','46','hssi','0','45'), ('3679','257','47','hippi','0','46'), ('3680','257','48','modem','0','47'), ('3681','257','49','aal5','0','48'), ('3682','257','50','sonetPath','0','49'), ('3683','257','51','sonetVT','0','50'), ('3684','257','52','smdsIcip','0','51'), ('3685','257','53','propVirtual','0','52'), ('3686','257','54','propMultiplexor','0','53'), ('3687','257','55','ieee80212','0','54'), ('3688','257','56','fibreChannel','0','55'), ('3689','257','57','hippiInterface','0','56'), ('3690','257','58','frameRelayInterconnect','0','57'), ('3691','257','59','aflane8023','0','58'), ('3692','257','60','aflane8025','0','59'), ('3693','257','61','cctEmul','0','60'), ('3694','257','62','fastEther','0','61'), ('3695','257','63','isdn','0','62'), ('3696','257','64','v11','0','63'), ('3697','257','65','v36','0','64'), ('3698','257','66','g703at64k','0','65'), ('3699','257','67','g703at2mb','0','66'), ('3700','257','68','qllc','0','67'), ('3701','257','69','fastEtherFX','0','68'), ('3702','257','70','channel','0','69'), ('3703','257','71','ieee80211','0','70'), ('3704','257','72','ibm370parChan','0','71'), ('3705','257','73','escon','0','72'), ('3706','257','74','dlsw','0','73'), ('3707','257','75','isdns','0','74'), ('3708','257','76','isdnu','0','75'), ('3709','257','77','lapd','0','76'), ('3710','257','78','ipSwitch','0','77'), ('3711','257','79','rsrb','0','78'), ('3712','257','80','atmLogical','0','79'), ('3713','257','81','ds0','0','80'), ('3714','257','82','ds0Bundle','0','81'), ('3715','257','83','bsc','0','82'), ('3716','257','84','async','0','83'), ('3717','257','85','cnr','0','84'), ('3718','257','86','iso88025Dtr','0','85'), ('3719','257','87','eplrs','0','86'), ('3720','257','88','arap','0','87'), ('3721','257','89','propCnls','0','88'), ('3722','257','90','hostPad','0','89'), ('3723','257','91','termPad','0','90'), ('3724','257','92','frameRelayMPI','0','91'), ('3725','257','93','x213','0','92'), ('3726','257','94','adsl','0','93'), ('3727','257','95','radsl','0','94'), ('3728','257','96','sdsl','0','95'), ('3729','257','97','vdsl','0','96'), ('3730','257','98','iso88025CRFPInt','0','97'), ('3731','257','99','myrinet','0','98'), ('3732','257','100','voiceEM','0','99'), ('3733','257','101','voiceFXO','0','100'), ('3734','257','102','voiceFXS','0','101'), ('3735','257','103','voiceEncap','0','102'), ('3736','257','104','voiceOverIp','0','103'), ('3737','257','105','atmDxi','0','104'), ('3738','257','106','atmFuni','0','105'), ('3739','257','107','atmIma','0','106'), ('3740','257','108','pppMultilinkBundle','0','107'), ('3741','257','109','ipOverCdlc','0','108'), ('3742','257','110','ipOverClaw','0','109'), ('3743','257','111','stackToStack','0','110'), ('3744','257','112','virtualIpAddress','0','111'), ('3745','257','113','mpc','0','112'), ('3746','257','114','ipOverAtm','0','113'), ('3747','257','115','iso88025Fiber','0','114'), ('3748','257','116','tdlc','0','115'), ('3749','257','117','gigabitEthernet','0','116'), ('3750','257','118','hdlc','0','117'), ('3751','257','119','lapf','0','118'), ('3752','257','120','v37','0','119'), ('3753','257','121','x25mlp','0','120'), ('3754','257','122','x25huntGroup','0','121'), ('3755','257','123','trasnpHdlc','0','122'), ('3756','257','124','interleave','0','123'), ('3757','257','125','fast','0','124'), ('3758','257','126','ip','0','125'), ('3759','257','127','docsCableMaclayer','0','126'), ('3760','257','128','docsCableDownstream','0','127'), ('3761','257','129','docsCableUpstream','0','128'), ('3762','257','130','a12MppSwitch','0','129'), ('3763','257','131','tunnel','0','130'), ('3764','257','132','coffee','0','131'), ('3765','257','133','ces','0','132'), ('3766','257','134','atmSubInterface','0','133'), ('3767','257','135','l2vlan','0','134'), ('3768','257','136','l3ipvlan','0','135'), ('3769','257','137','l3ipxvlan','0','136'), ('3770','257','138','digitalPowerline','0','137'), ('3771','257','139','mediaMailOverIp','0','138'), ('3772','257','140','dtm','0','139'), ('3773','257','141','dcn','0','140'), ('3774','257','142','ipForward','0','141'), ('3775','257','143','msdsl','0','142'), ('3776','257','144','ieee1394','0','143'), ('3777','257','145','if-gsn','0','144'), ('3778','257','146','dvbRccMacLayer','0','145'), ('3779','257','147','dvbRccDownstream','0','146'), ('3780','257','148','dvbRccUpstream','0','147'), ('3781','257','149','atmVirtual','0','148'), ('3782','257','150','mplsTunnel','0','149'), ('3783','257','151','srp','0','150'), ('3784','257','152','voiceOverAtm','0','151'), ('3785','257','153','voiceOverFrameRelay','0','152'), ('3786','257','154','idsl','0','153'), ('3787','257','155','compositeLink','0','154'), ('3788','257','156','ss7SigLink','0','155'), ('3789','257','157','propWirelessP2P','0','156'), ('3790','257','158','frForward','0','157'), ('3791','257','159','rfc1483','0','158'), ('3792','257','160','usb','0','159'), ('3793','257','161','ieee8023adLag','0','160'), ('3794','257','162','bgppolicyaccounting','0','161'), ('3795','257','163','frf16MfrBundle','0','162'), ('3796','257','164','h323Gatekeeper','0','163'), ('3797','257','165','h323Proxy','0','164'), ('3798','257','166','mpls','0','165'), ('3799','257','167','mfSigLink','0','166'), ('3800','257','168','hdsl2','0','167'), ('3801','257','169','shdsl','0','168'), ('3802','257','170','ds1FDL','0','169'), ('3803','257','171','pos','0','170'), ('3804','257','172','dvbAsiIn','0','171'), ('3805','257','173','dvbAsiOut','0','172'), ('3806','257','174','plc','0','173'), ('3807','257','175','nfas','0','174'), ('3808','257','176','tr008','0','175'), ('3809','257','177','gr303RDT','0','176'), ('3810','257','178','gr303IDT','0','177'), ('3811','257','179','isup','0','178'), ('3812','257','180','propDocsWirelessMaclayer','0','179'), ('3813','257','181','propDocsWirelessDownstream','0','180'), ('3814','257','182','propDocsWirelessUpstream','0','181'), ('3815','257','183','hiperlan2','0','182'), ('3816','257','184','propBWAp2Mp','0','183'), ('3817','257','185','sonetOverheadChannel','0','184'), ('3818','257','186','digitalWrapperOverheadChannel','0','185'), ('3819','257','187','aal2','0','186'), ('3820','257','188','radioMAC','0','187'), ('3821','257','189','atmRadio','0','188'), ('3822','257','190','imt','0','189'), ('3823','257','191','mvl','0','190'), ('3824','257','192','reachDSL','0','191'), ('3825','257','193','frDlciEndPt','0','192'), ('3826','257','194','atmVciEndPt','0','193'), ('3827','257','195','opticalChannel','0','194'), ('3828','257','196','opticalTransport','0','195'), ('3829','257','197','propAtm','0','196'), ('3830','257','198','voiceOverCable','0','197'), ('3831','257','199','infiniband','0','198'), ('3832','257','200','teLink','0','199'), ('3833','257','201','q2931','0','200'), ('3834','257','202','virtualTg','0','201'), ('3835','257','203','sipTg','0','202'), ('3836','257','204','sipSig','0','203'), ('3837','257','205','docsCableUpstreamChannel','0','204'), ('3838','257','206','econet','0','205'), ('3839','257','207','pon155','0','206'), ('3840','257','208','pon622','0','207'), ('3841','257','209','bridge','0','208'), ('3842','257','210','linegroup','0','209'), ('3843','257','211','voiceEMFGD','0','210'), ('3844','257','212','voiceFGDEANA','0','211'), ('3845','257','213','voiceDID','0','212'), ('3846','257','214','mpegTransport','0','213'), ('3847','257','215','sixToFour','0','214'), ('3848','257','216','gtp','0','215'), ('3849','257','217','pdnEtherLoop1','0','216'), ('3850','257','218','pdnEtherLoop2','0','217'), ('3851','257','219','opticalChannelGroup','0','218'), ('3852','257','220','homepna','0','219'), ('3853','257','221','gfp','0','220'), ('3854','257','222','ciscoISLvlan','0','221'), ('3855','257','223','actelisMetaLOOP','0','222'), ('3856','257','224','fcipLink','0','223'), ('3857','257','225','rpr','0','224'), ('3858','257','226','qam','0','225'), ('3859','257','227','lmp','0','226'), ('3860','257','228','cblVectaStar','0','227'), ('3861','257','229','docsCableMCmtsDownstream','0','228'), ('3862','257','230','adsl2','0','229'), ('3863','257','231','macSecControlledIF','0','230'), ('3864','257','232','macSecUncontrolledIF','0','231'), ('3865','257','233','aviciOpticalEther','0','232'), ('3866','257','234','atmbond','0','233'), ('3867','257','235','voiceFGDOS','0','234'), ('3868','257','236','mocaVersion1','0','235'), ('3869','257','237','ieee80216WMAN','0','236'), ('3870','257','238','adsl2plus','0','237'), ('3871','257','239','dvbRcsMacLayer','0','238'), ('3872','257','240','dvbTdm','0','239'), ('3873','257','241','dvbRcsTdma','0','240'), ('3874','257','242','x86Laps','0','241'), ('3875','257','243','wwanPP','0','242'), ('3876','257','244','wwanPP2','0','243'), ('3877','257','245','voiceEBS','0','244'), ('3878','257','246','ifPwType','0','245'), ('3879','257','247','ilan','0','246'), ('3880','257','248','pip','0','247'), ('3881','257','249','aluELP','0','248'), ('3882','257','250','gpon','0','249'), ('3883','257','251','vdsl2','0','250'), ('3884','257','252','capwapDot11Profile','0','251'), ('3885','257','253','capwapDot11Bss','0','252'), ('3886','257','254','capwapWtpVirtualRadio','0','253'), ('3887','257','255','bits','0','254'), ('3888','257','256','docsCableUpstreamRfPort','0','255'), ('3889','257','257','cableDownstreamRfPort','0','256'), ('3890','257','258','vmwareVirtualNic','0','257'), ('3891','257','259','ieee802154','0','258'), ('3892','257','260','otnOdu','0','259'), ('3893','257','261','otnOtu','0','260'), ('3894','257','262','ifVfiType','0','261'), ('3895','257','263','g9981','0','262'), ('3896','257','264','g9982','0','263'), ('3897','257','265','g9983','0','264'), ('3898','257','266','aluEpon','0','265'), ('3899','257','267','aluEponOnu','0','266'), ('3900','257','268','aluEponPhysicalUni','0','267'), ('3901','257','269','aluEponLogicalLink','0','268'), ('3902','257','270','aluGponOnu','0','269'), ('3903','257','271','aluGponPhysicalUni','0','270'), ('3904','257','272','vmwareNicTeam','0','271'), ('3905','257','277','docsOfdmDownstream','0','272'), ('3906','257','278','docsOfdmaUpstream','0','273'), ('3907','257','279','gfast','0','274'), ('3908','257','280','sdci','0','275'), ('3909','257','281','xboxWireless','0','276'), ('3910','257','282','fastdsl','0','277'), ('3911','257','283','docsCableScte55d1FwdOob','0','278'), ('3912','257','284','docsCableScte55d1RetOob','0','279'), ('3913','257','285','docsCableScte55d2DsOob','0','280'), ('3914','257','286','docsCableScte55d2UsOob','0','281'), ('3915','257','287','docsCableNdf','0','282'), ('3916','257','288','docsCableNdr','0','283'), ('3917','257','289','ptm','0','284'), ('3918','257','290','ghn','0','285'), ('3919','258','0','Down','0','0'), ('3920','258','1','Up','0','1'), ('3921','259','0','not available','0','0'), ('3922','259','1','available','0','1'), ('3923','259','2','unknown','0','2'), ('3924','260','1','up','0','0'), ('3925','260','2','down','0','1'), ('3926','260','4','unknown','0','3'), ('3927','260','5','dormant','0','4'), ('3928','260','6','notPresent','0','5'), ('3929','260','7','lowerLayerDown','0','6'), ('3930','261','1','other','0','0'), ('3931','261','2','regular1822','0','1'), ('3932','261','3','hdh1822','0','2'), ('3933','261','4','ddnX25','0','3'), ('3934','261','5','rfc877x25','0','4'), ('3935','261','6','ethernetCsmacd','0','5'), ('3936','261','7','iso88023Csmacd','0','6'), ('3937','261','8','iso88024TokenBus','0','7'), ('3938','261','9','iso88025TokenRing','0','8'), ('3939','261','10','iso88026Man','0','9'), ('3940','261','11','starLan','0','10'), ('3941','261','12','proteon10Mbit','0','11'), ('3942','261','13','proteon80Mbit','0','12'), ('3943','261','14','hyperchannel','0','13'), ('3944','261','15','fddi','0','14'), ('3945','261','16','lapb','0','15'), ('3946','261','17','sdlc','0','16'), ('3947','261','18','ds1','0','17'), ('3948','261','19','e1','0','18'), ('3949','261','20','basicISDN','0','19'), ('3950','261','21','primaryISDN','0','20'), ('3951','261','22','propPointToPointSerial','0','21'), ('3952','261','23','ppp','0','22'), ('3953','261','24','softwareLoopback','0','23'), ('3954','261','25','eon','0','24'), ('3955','261','26','ethernet3Mbit','0','25'), ('3956','261','27','nsip','0','26'), ('3957','261','28','slip','0','27'), ('3958','261','29','ultra','0','28'), ('3959','261','30','ds3','0','29'), ('3960','261','31','sip','0','30'), ('3961','261','32','frameRelay','0','31'), ('3962','261','33','rs232','0','32'), ('3963','261','34','para','0','33'), ('3964','261','35','arcnet','0','34'), ('3965','261','36','arcnetPlus','0','35'), ('3966','261','37','atm','0','36'), ('3967','261','38','miox25','0','37'), ('3968','261','39','sonet','0','38'), ('3969','261','40','x25ple','0','39'), ('3970','261','41','iso88022llc','0','40'), ('3971','261','42','localTalk','0','41'), ('3972','261','43','smdsDxi','0','42'), ('3973','261','44','frameRelayService','0','43'), ('3974','261','45','v35','0','44'), ('3975','261','46','hssi','0','45'), ('3976','261','47','hippi','0','46'), ('3977','261','48','modem','0','47'), ('3978','261','49','aal5','0','48'), ('3979','261','50','sonetPath','0','49'), ('3980','261','51','sonetVT','0','50'), ('3981','261','52','smdsIcip','0','51'), ('3982','261','53','propVirtual','0','52'), ('3983','261','54','propMultiplexor','0','53'), ('3984','261','55','ieee80212','0','54'), ('3985','261','56','fibreChannel','0','55'), ('3986','261','57','hippiInterface','0','56'), ('3987','261','58','frameRelayInterconnect','0','57'), ('3988','261','59','aflane8023','0','58'), ('3989','261','60','aflane8025','0','59'), ('3990','261','61','cctEmul','0','60'), ('3991','261','62','fastEther','0','61'), ('3992','261','63','isdn','0','62'), ('3993','261','64','v11','0','63'), ('3994','261','65','v36','0','64'), ('3995','261','66','g703at64k','0','65'), ('3996','261','67','g703at2mb','0','66'), ('3997','261','68','qllc','0','67'), ('3998','261','69','fastEtherFX','0','68'), ('3999','261','70','channel','0','69'), ('4000','261','71','ieee80211','0','70'), ('4001','261','72','ibm370parChan','0','71'), ('4002','261','73','escon','0','72'), ('4003','261','74','dlsw','0','73'), ('4004','261','75','isdns','0','74'), ('4005','261','76','isdnu','0','75'), ('4006','261','77','lapd','0','76'), ('4007','261','78','ipSwitch','0','77'), ('4008','261','79','rsrb','0','78'), ('4009','261','80','atmLogical','0','79'), ('4010','261','81','ds0','0','80'), ('4011','261','82','ds0Bundle','0','81'), ('4012','261','83','bsc','0','82'), ('4013','261','84','async','0','83'), ('4014','261','85','cnr','0','84'), ('4015','261','86','iso88025Dtr','0','85'), ('4016','261','87','eplrs','0','86'), ('4017','261','88','arap','0','87'), ('4018','261','89','propCnls','0','88'), ('4019','261','90','hostPad','0','89'), ('4020','261','91','termPad','0','90'), ('4021','261','92','frameRelayMPI','0','91'), ('4022','261','93','x213','0','92'), ('4023','261','94','adsl','0','93'), ('4024','261','95','radsl','0','94'), ('4025','261','96','sdsl','0','95'), ('4026','261','97','vdsl','0','96'), ('4027','261','98','iso88025CRFPInt','0','97'), ('4028','261','99','myrinet','0','98'), ('4029','261','100','voiceEM','0','99'), ('4030','261','101','voiceFXO','0','100'), ('4031','261','102','voiceFXS','0','101'), ('4032','261','103','voiceEncap','0','102'), ('4033','261','104','voiceOverIp','0','103'), ('4034','261','105','atmDxi','0','104'), ('4035','261','106','atmFuni','0','105'), ('4036','261','107','atmIma','0','106'), ('4037','261','108','pppMultilinkBundle','0','107'), ('4038','261','109','ipOverCdlc','0','108'), ('4039','261','110','ipOverClaw','0','109'), ('4040','261','111','stackToStack','0','110'), ('4041','261','112','virtualIpAddress','0','111'), ('4042','261','113','mpc','0','112'), ('4043','261','114','ipOverAtm','0','113'), ('4044','261','115','iso88025Fiber','0','114'), ('4045','261','116','tdlc','0','115'), ('4046','261','117','gigabitEthernet','0','116'), ('4047','261','118','hdlc','0','117'), ('4048','261','119','lapf','0','118'), ('4049','261','120','v37','0','119'), ('4050','261','121','x25mlp','0','120'), ('4051','261','122','x25huntGroup','0','121'), ('4052','261','123','trasnpHdlc','0','122'), ('4053','261','124','interleave','0','123'), ('4054','261','125','fast','0','124'), ('4055','261','126','ip','0','125'), ('4056','261','127','docsCableMaclayer','0','126'), ('4057','261','128','docsCableDownstream','0','127'), ('4058','261','129','docsCableUpstream','0','128'), ('4059','261','130','a12MppSwitch','0','129'), ('4060','261','131','tunnel','0','130'), ('4061','261','132','coffee','0','131'), ('4062','261','133','ces','0','132'), ('4063','261','134','atmSubInterface','0','133'), ('4064','261','135','l2vlan','0','134'), ('4065','261','136','l3ipvlan','0','135'), ('4066','261','137','l3ipxvlan','0','136'), ('4067','261','138','digitalPowerline','0','137'), ('4068','261','139','mediaMailOverIp','0','138'), ('4069','261','140','dtm','0','139'), ('4070','261','141','dcn','0','140'), ('4071','261','142','ipForward','0','141'), ('4072','261','143','msdsl','0','142'), ('4073','261','144','ieee1394','0','143'), ('4074','261','145','if-gsn','0','144'), ('4075','261','146','dvbRccMacLayer','0','145'), ('4076','261','147','dvbRccDownstream','0','146'), ('4077','261','148','dvbRccUpstream','0','147'), ('4078','261','149','atmVirtual','0','148'), ('4079','261','150','mplsTunnel','0','149'), ('4080','261','151','srp','0','150'), ('4081','261','152','voiceOverAtm','0','151'), ('4082','261','153','voiceOverFrameRelay','0','152'), ('4083','261','154','idsl','0','153'), ('4084','261','155','compositeLink','0','154'), ('4085','261','156','ss7SigLink','0','155'), ('4086','261','157','propWirelessP2P','0','156'), ('4087','261','158','frForward','0','157'), ('4088','261','159','rfc1483','0','158'), ('4089','261','160','usb','0','159'), ('4090','261','161','ieee8023adLag','0','160'), ('4091','261','162','bgppolicyaccounting','0','161'), ('4092','261','163','frf16MfrBundle','0','162'), ('4093','261','164','h323Gatekeeper','0','163'), ('4094','261','165','h323Proxy','0','164'), ('4095','261','166','mpls','0','165'), ('4096','261','167','mfSigLink','0','166'), ('4097','261','168','hdsl2','0','167'), ('4098','261','169','shdsl','0','168'), ('4099','261','170','ds1FDL','0','169'), ('4100','261','171','pos','0','170'), ('4101','261','172','dvbAsiIn','0','171'), ('4102','261','173','dvbAsiOut','0','172'), ('4103','261','174','plc','0','173'), ('4104','261','175','nfas','0','174'), ('4105','261','176','tr008','0','175'), ('4106','261','177','gr303RDT','0','176'), ('4107','261','178','gr303IDT','0','177'), ('4108','261','179','isup','0','178'), ('4109','261','180','propDocsWirelessMaclayer','0','179'), ('4110','261','181','propDocsWirelessDownstream','0','180'), ('4111','261','182','propDocsWirelessUpstream','0','181'), ('4112','261','183','hiperlan2','0','182'), ('4113','261','184','propBWAp2Mp','0','183'), ('4114','261','185','sonetOverheadChannel','0','184'), ('4115','261','186','digitalWrapperOverheadChannel','0','185'), ('4116','261','187','aal2','0','186'), ('4117','261','188','radioMAC','0','187'), ('4118','261','189','atmRadio','0','188'), ('4119','261','190','imt','0','189'), ('4120','261','191','mvl','0','190'), ('4121','261','192','reachDSL','0','191'), ('4122','261','193','frDlciEndPt','0','192'), ('4123','261','194','atmVciEndPt','0','193'), ('4124','261','195','opticalChannel','0','194'), ('4125','261','196','opticalTransport','0','195'), ('4126','261','197','propAtm','0','196'), ('4127','261','198','voiceOverCable','0','197'), ('4128','261','199','infiniband','0','198'), ('4129','261','200','teLink','0','199'), ('4130','261','201','q2931','0','200'), ('4131','261','202','virtualTg','0','201'), ('4132','261','203','sipTg','0','202'), ('4133','261','204','sipSig','0','203'), ('4134','261','205','docsCableUpstreamChannel','0','204'), ('4135','261','206','econet','0','205'), ('4136','261','207','pon155','0','206'), ('4137','261','208','pon622','0','207'), ('4138','261','209','bridge','0','208'), ('4139','261','210','linegroup','0','209'), ('4140','261','211','voiceEMFGD','0','210'), ('4141','261','212','voiceFGDEANA','0','211'), ('4142','261','213','voiceDID','0','212'), ('4143','261','214','mpegTransport','0','213'), ('4144','261','215','sixToFour','0','214'), ('4145','261','216','gtp','0','215'), ('4146','261','217','pdnEtherLoop1','0','216'), ('4147','261','218','pdnEtherLoop2','0','217'), ('4148','261','219','opticalChannelGroup','0','218'), ('4149','261','220','homepna','0','219'), ('4150','261','221','gfp','0','220'), ('4151','261','222','ciscoISLvlan','0','221'), ('4152','261','223','actelisMetaLOOP','0','222'), ('4153','261','224','fcipLink','0','223'), ('4154','261','225','rpr','0','224'), ('4155','261','226','qam','0','225'), ('4156','261','227','lmp','0','226'), ('4157','261','228','cblVectaStar','0','227'), ('4158','261','229','docsCableMCmtsDownstream','0','228'), ('4159','261','230','adsl2','0','229'), ('4160','261','231','macSecControlledIF','0','230'), ('4161','261','232','macSecUncontrolledIF','0','231'), ('4162','261','233','aviciOpticalEther','0','232'), ('4163','261','234','atmbond','0','233'), ('4164','261','235','voiceFGDOS','0','234'), ('4165','261','236','mocaVersion1','0','235'), ('4166','261','237','ieee80216WMAN','0','236'), ('4167','261','238','adsl2plus','0','237'), ('4168','261','239','dvbRcsMacLayer','0','238'), ('4169','261','240','dvbTdm','0','239'), ('4170','261','241','dvbRcsTdma','0','240'), ('4171','261','242','x86Laps','0','241'), ('4172','261','243','wwanPP','0','242'), ('4173','261','244','wwanPP2','0','243'), ('4174','261','245','voiceEBS','0','244'), ('4175','261','246','ifPwType','0','245'), ('4176','261','247','ilan','0','246'), ('4177','261','248','pip','0','247'), ('4178','261','249','aluELP','0','248'), ('4179','261','250','gpon','0','249'), ('4180','261','251','vdsl2','0','250'), ('4181','261','252','capwapDot11Profile','0','251'), ('4182','261','253','capwapDot11Bss','0','252'), ('4183','261','254','capwapWtpVirtualRadio','0','253'), ('4184','261','255','bits','0','254'), ('4185','261','256','docsCableUpstreamRfPort','0','255'), ('4186','261','257','cableDownstreamRfPort','0','256'), ('4187','261','258','vmwareVirtualNic','0','257'), ('4188','261','259','ieee802154','0','258'), ('4189','261','260','otnOdu','0','259'), ('4190','261','261','otnOtu','0','260'), ('4191','261','262','ifVfiType','0','261'), ('4192','261','263','g9981','0','262'), ('4193','261','264','g9982','0','263'), ('4194','261','265','g9983','0','264'), ('4195','261','266','aluEpon','0','265'), ('4196','261','267','aluEponOnu','0','266'), ('4197','261','268','aluEponPhysicalUni','0','267'), ('4198','261','269','aluEponLogicalLink','0','268'), ('4199','261','270','aluGponOnu','0','269'), ('4200','261','271','aluGponPhysicalUni','0','270'), ('4201','261','272','vmwareNicTeam','0','271'), ('4202','261','277','docsOfdmDownstream','0','272'), ('4203','261','278','docsOfdmaUpstream','0','273'), ('4204','261','279','gfast','0','274'), ('4205','261','280','sdci','0','275'), ('4206','261','281','xboxWireless','0','276'), ('4207','261','282','fastdsl','0','277'), ('4208','261','283','docsCableScte55d1FwdOob','0','278'), ('4209','261','284','docsCableScte55d1RetOob','0','279'), ('4210','261','285','docsCableScte55d2DsOob','0','280'), ('4211','261','286','docsCableScte55d2UsOob','0','281'), ('4212','261','287','docsCableNdf','0','282'), ('4213','261','288','docsCableNdr','0','283'), ('4214','261','289','ptm','0','284'), ('4215','261','290','ghn','0','285'), ('4216','262','0','Down','0','0'), ('4217','262','1','Up','0','1'), ('4218','263','0','not available','0','0'), ('4219','263','1','available','0','1'), ('4220','263','2','unknown','0','2'), ('4221','264','1','Normal','0','0'), ('4222','264','2','Warning','0','1'), ('4223','264','3','Critical','0','2'), ('4224','264','4','Not applicable','0','3'), ('4225','265','1','no Battery Needs Replacing','0','0'), ('4226','265','2','battery Needs Replacing','0','1'), ('4227','266','1','no Transfer','0','0'), ('4228','266','2','High Line Voltage','0','1'), ('4229','266','3','Brownout','0','2'), ('4230','266','4','Blackout','0','3'), ('4231','266','5','Small Momentary Sag','0','4'), ('4232','266','6','Deep Momentary Sag','0','5'), ('4233','266','7','Small Momentary Spike','0','6'), ('4234','266','8','Large Momentary Spike','0','7'), ('4235','266','9','Self Test','0','8'), ('4236','266','10','Rate of Voltage Change','0','9'), ('4237','267','1','Unknown','0','0'), ('4238','267','2','Normal','0','1'), ('4239','267','3','Low','0','2'), ('4240','267','4','In Fault Condition','0','3'), ('4243','269','0','not available','0','0'), ('4244','269','1','available','0','1'), ('4245','269','2','unknown','0','2'), ('4246','270','0','Failed','0','0'), ('4247','270','1','Succeeded','0','1'), ('4248','270','2','Retry','0','2'), ('4249','270','3','Canceled','0','3'), ('4250','270','4','Running','0','4'), ('4251','270','5','Unknown','0','5'), ('4252','271','0','Down','0','0'), ('4253','271','1','Up','0','1'), ('4254','272','0','Down','0','0'), ('4255','272','1','Up','0','1'), ('4256','273','1','Normal','0','0'), ('4257','273','2','Warning','0','1'), ('4258','273','3','Critical','0','2'), ('4259','273','4','Not applicable','0','3'), ('4260','274','1','no Battery Needs Replacing','0','0'), ('4261','274','2','battery Needs Replacing','0','1'), ('4262','275','1','no Transfer','0','0'), ('4263','275','2','High Line Voltage','0','1'), ('4264','275','3','Brownout','0','2'), ('4265','275','4','Blackout','0','3'), ('4266','275','5','Small Momentary Sag','0','4'), ('4267','275','6','Deep Momentary Sag','0','5'), ('4268','275','7','Small Momentary Spike','0','6'), ('4269','275','8','Large Momentary Spike','0','7'), ('4270','275','9','Self Test','0','8'), ('4271','275','10','Rate of Voltage Change','0','9'), ('4272','276','1','Unknown','0','0'), ('4273','276','2','Normal','0','1'), ('4274','276','3','Low','0','2'), ('4275','276','4','In Fault Condition','0','3'), ('4276','277','1','Unknown','0','0'), ('4277','277','2','Online','0','1'), ('4278','277','3','On Battery','0','2'), ('4279','277','4','On Smart Boost','0','3'), ('4280','277','5','Timed Sleeping','0','4'), ('4281','277','6','Software Bypass','0','5'), ('4282','277','7','Off','0','6'), ('4283','277','8','Rebooting','0','7'), ('4284','277','9','Switched Bypass','0','8'), ('4285','277','10','Hardware Failure Bypass','0','9'), ('4286','277','11','Sleeping Until Power Return','0','10'), ('4287','277','12','On Smart Trim','0','11'), ('4288','277','13','Eco Mode','0','12'), ('4289','277','14','Hot Standby','0','13'), ('4290','277','15','On Battery Test','0','14'), ('4291','277','16','Emergency Static Bypass','0','15'), ('4292','277','17','Static Bypass Standby','0','16'), ('4293','277','18','Power Saving Mode','0','17'), ('4294','277','19','Spot Mode','0','18'), ('4295','277','20','E-Conversion','0','19'), ('4296','277','21','Charger Spotmode','0','20'), ('4297','277','22','Inverter Spotmode','0','21'), ('4298','277','23','Active Load','0','22'), ('4299','277','24','Battery Discharge Spotmode','0','23'), ('4300','277','25','Inverter Standby','0','24'), ('4301','277','26','Charger Only','0','25'), ('4302','278','0','not available','0','0'), ('4303','278','1','available','0','1'), ('4304','278','2','unknown','0','2'), ('4305','279','1','Normal','0','0'), ('4306','279','2','Warning','0','1'), ('4307','279','3','Critical','0','2'), ('4308','279','4','Not applicable','0','3'), ('4309','280','1','no Battery Needs Replacing','0','0'), ('4310','280','2','battery Needs Replacing','0','1'), ('4311','281','1','no Transfer','0','0'), ('4312','281','2','High Line Voltage','0','1'), ('4313','281','3','Brownout','0','2'), ('4314','281','4','Blackout','0','3'), ('4315','281','5','Small Momentary Sag','0','4'), ('4316','281','6','Deep Momentary Sag','0','5'), ('4317','281','7','Small Momentary Spike','0','6'), ('4318','281','8','Large Momentary Spike','0','7'), ('4319','281','9','Self Test','0','8'), ('4320','281','10','Rate of Voltage Change','0','9'), ('4321','282','1','Unknown','0','0'), ('4322','282','2','Normal','0','1'), ('4323','282','3','Low','0','2'), ('4324','282','4','In Fault Condition','0','3'), ('4325','283','1','Unknown','0','0'), ('4326','283','2','Online','0','1'), ('4327','283','3','On Battery','0','2'), ('4328','283','4','On Smart Boost','0','3'), ('4329','283','5','Timed Sleeping','0','4'), ('4330','283','6','Software Bypass','0','5'), ('4331','283','7','Off','0','6'), ('4332','283','8','Rebooting','0','7'), ('4333','283','9','Switched Bypass','0','8'), ('4334','283','10','Hardware Failure Bypass','0','9'), ('4335','283','11','Sleeping Until Power Return','0','10'), ('4336','283','12','On Smart Trim','0','11'), ('4337','283','13','Eco Mode','0','12'), ('4338','283','14','Hot Standby','0','13'), ('4339','283','15','On Battery Test','0','14'), ('4340','283','16','Emergency Static Bypass','0','15'), ('4341','283','17','Static Bypass Standby','0','16'), ('4342','283','18','Power Saving Mode','0','17'), ('4343','283','19','Spot Mode','0','18'), ('4344','283','20','E-Conversion','0','19'), ('4345','283','21','Charger Spotmode','0','20'), ('4346','283','22','Inverter Spotmode','0','21'), ('4347','283','23','Active Load','0','22'), ('4348','283','24','Battery Discharge Spotmode','0','23'), ('4349','283','25','Inverter Standby','0','24'), ('4350','283','26','Charger Only','0','25'), ('4351','284','0','not available','0','0'), ('4352','284','1','available','0','1'), ('4353','284','2','unknown','0','2'), ('4354','285','1','Normal','0','0'), ('4355','285','2','Warning','0','1'), ('4356','285','3','Critical','0','2'), ('4357','285','4','Not applicable','0','3'), ('4358','286','1','no Battery Needs Replacing','0','0'), ('4359','286','2','battery Needs Replacing','0','1'), ('4360','287','1','no Transfer','0','0'), ('4361','287','2','High Line Voltage','0','1'), ('4362','287','3','Brownout','0','2'), ('4363','287','4','Blackout','0','3'), ('4364','287','5','Small Momentary Sag','0','4'), ('4365','287','6','Deep Momentary Sag','0','5'), ('4366','287','7','Small Momentary Spike','0','6'), ('4367','287','8','Large Momentary Spike','0','7'), ('4368','287','9','Self Test','0','8'), ('4369','287','10','Rate of Voltage Change','0','9'), ('4370','288','1','Unknown','0','0'), ('4371','288','2','Normal','0','1'), ('4372','288','3','Low','0','2'), ('4373','288','4','In Fault Condition','0','3'), ('4374','289','1','Unknown','0','0'), ('4375','289','2','Online','0','1'), ('4376','289','3','On Battery','0','2'), ('4377','289','4','On Smart Boost','0','3'), ('4378','289','5','Timed Sleeping','0','4'), ('4379','289','6','Software Bypass','0','5'), ('4380','289','7','Off','0','6'), ('4381','289','8','Rebooting','0','7'), ('4382','289','9','Switched Bypass','0','8'), ('4383','289','10','Hardware Failure Bypass','0','9'), ('4384','289','11','Sleeping Until Power Return','0','10'), ('4385','289','12','On Smart Trim','0','11'), ('4386','289','13','Eco Mode','0','12'), ('4387','289','14','Hot Standby','0','13'), ('4388','289','15','On Battery Test','0','14'), ('4389','289','16','Emergency Static Bypass','0','15'), ('4390','289','17','Static Bypass Standby','0','16'), ('4391','289','18','Power Saving Mode','0','17'), ('4392','289','19','Spot Mode','0','18'), ('4393','289','20','E-Conversion','0','19'), ('4394','289','21','Charger Spotmode','0','20'), ('4395','289','22','Inverter Spotmode','0','21'), ('4396','289','23','Active Load','0','22'), ('4397','289','24','Battery Discharge Spotmode','0','23'), ('4398','289','25','Inverter Standby','0','24'), ('4399','289','26','Charger Only','0','25'), ('4400','290','0','not available','0','0'), ('4401','290','1','available','0','1'), ('4402','290','2','unknown','0','2'), ('4403','291','1','Normal','0','0'), ('4404','291','2','Warning','0','1'), ('4405','291','3','Critical','0','2'), ('4406','291','4','Not applicable','0','3'), ('4407','292','1','no Battery Needs Replacing','0','0'), ('4408','292','2','battery Needs Replacing','0','1'), ('4409','293','1','no Transfer','0','0'), ('4410','293','2','High Line Voltage','0','1'), ('4411','293','3','Brownout','0','2'), ('4412','293','4','Blackout','0','3'), ('4413','293','5','Small Momentary Sag','0','4'), ('4414','293','6','Deep Momentary Sag','0','5'), ('4415','293','7','Small Momentary Spike','0','6'), ('4416','293','8','Large Momentary Spike','0','7'), ('4417','293','9','Self Test','0','8'), ('4418','293','10','Rate of Voltage Change','0','9'), ('4419','294','1','Unknown','0','0'), ('4420','294','2','Normal','0','1'), ('4421','294','3','Low','0','2'), ('4422','294','4','In Fault Condition','0','3'), ('4423','295','1','Unknown','0','0'), ('4424','295','2','Online','0','1'), ('4425','295','3','On Battery','0','2'), ('4426','295','4','On Smart Boost','0','3'), ('4427','295','5','Timed Sleeping','0','4'), ('4428','295','6','Software Bypass','0','5'), ('4429','295','7','Off','0','6'), ('4430','295','8','Rebooting','0','7'), ('4431','295','9','Switched Bypass','0','8'), ('4432','295','10','Hardware Failure Bypass','0','9'), ('4433','295','11','Sleeping Until Power Return','0','10'), ('4434','295','12','On Smart Trim','0','11'), ('4435','295','13','Eco Mode','0','12'), ('4436','295','14','Hot Standby','0','13'), ('4437','295','15','On Battery Test','0','14'), ('4438','295','16','Emergency Static Bypass','0','15'), ('4439','295','17','Static Bypass Standby','0','16'), ('4440','295','18','Power Saving Mode','0','17'), ('4441','295','19','Spot Mode','0','18'), ('4442','295','20','E-Conversion','0','19'), ('4443','295','21','Charger Spotmode','0','20'), ('4444','295','22','Inverter Spotmode','0','21'), ('4445','295','23','Active Load','0','22'), ('4446','295','24','Battery Discharge Spotmode','0','23'), ('4447','295','25','Inverter Standby','0','24'), ('4448','295','26','Charger Only','0','25'), ('4449','296','0','not available','0','0'), ('4450','296','1','available','0','1'), ('4451','296','2','unknown','0','2'), ('4452','297','1','Normal','0','0'), ('4453','297','2','Warning','0','1'), ('4454','297','3','Critical','0','2'), ('4455','297','4','Not applicable','0','3'), ('4456','298','1','no Battery Needs Replacing','0','0'), ('4457','298','2','battery Needs Replacing','0','1'), ('4458','299','1','no Transfer','0','0'), ('4459','299','2','High Line Voltage','0','1'), ('4460','299','3','Brownout','0','2'), ('4461','299','4','Blackout','0','3'), ('4462','299','5','Small Momentary Sag','0','4'), ('4463','299','6','Deep Momentary Sag','0','5'), ('4464','299','7','Small Momentary Spike','0','6'), ('4465','299','8','Large Momentary Spike','0','7'), ('4466','299','9','Self Test','0','8'), ('4467','299','10','Rate of Voltage Change','0','9'), ('4468','300','1','Unknown','0','0'), ('4469','300','2','Normal','0','1'), ('4470','300','3','Low','0','2'), ('4471','300','4','In Fault Condition','0','3'), ('4472','301','1','Unknown','0','0'), ('4473','301','2','Online','0','1'), ('4474','301','3','On Battery','0','2'), ('4475','301','4','On Smart Boost','0','3'), ('4476','301','5','Timed Sleeping','0','4'), ('4477','301','6','Software Bypass','0','5'), ('4478','301','7','Off','0','6'), ('4479','301','8','Rebooting','0','7'), ('4480','301','9','Switched Bypass','0','8'), ('4481','301','10','Hardware Failure Bypass','0','9'), ('4482','301','11','Sleeping Until Power Return','0','10'), ('4483','301','12','On Smart Trim','0','11'), ('4484','301','13','Eco Mode','0','12'), ('4485','301','14','Hot Standby','0','13'), ('4486','301','15','On Battery Test','0','14'), ('4487','301','16','Emergency Static Bypass','0','15'), ('4488','301','17','Static Bypass Standby','0','16'), ('4489','301','18','Power Saving Mode','0','17'), ('4490','301','19','Spot Mode','0','18'), ('4491','301','20','E-Conversion','0','19'), ('4492','301','21','Charger Spotmode','0','20'), ('4493','301','22','Inverter Spotmode','0','21'), ('4494','301','23','Active Load','0','22'), ('4495','301','24','Battery Discharge Spotmode','0','23'), ('4496','301','25','Inverter Standby','0','24'), ('4497','301','26','Charger Only','0','25'), ('4498','302','0','not available','0','0'), ('4499','302','1','available','0','1'), ('4500','302','2','unknown','0','2'), ('4550','309','1','Normal','0','0'), ('4551','309','2','Warning','0','1'), ('4552','309','3','Critical','0','2'), ('4553','309','4','Not applicable','0','3'), ('4554','310','1','no Battery Needs Replacing','0','0'), ('4555','310','2','battery Needs Replacing','0','1'), ('4556','311','1','no Transfer','0','0'), ('4557','311','2','High Line Voltage','0','1'), ('4558','311','3','Brownout','0','2'), ('4559','311','4','Blackout','0','3'), ('4560','311','5','Small Momentary Sag','0','4'), ('4561','311','6','Deep Momentary Sag','0','5'), ('4562','311','7','Small Momentary Spike','0','6'), ('4563','311','8','Large Momentary Spike','0','7'), ('4564','311','9','Self Test','0','8'), ('4565','311','10','Rate of Voltage Change','0','9'), ('4566','312','1','Unknown','0','0'), ('4567','312','2','Normal','0','1'), ('4568','312','3','Low','0','2'), ('4569','312','4','In Fault Condition','0','3'), ('4570','313','1','Unknown','0','0'), ('4571','313','2','Online','0','1'), ('4572','313','3','On Battery','0','2'), ('4573','313','4','On Smart Boost','0','3'), ('4574','313','5','Timed Sleeping','0','4'), ('4575','313','6','Software Bypass','0','5'), ('4576','313','7','Off','0','6'), ('4577','313','8','Rebooting','0','7'), ('4578','313','9','Switched Bypass','0','8'), ('4579','313','10','Hardware Failure Bypass','0','9'), ('4580','313','11','Sleeping Until Power Return','0','10'), ('4581','313','12','On Smart Trim','0','11'), ('4582','313','13','Eco Mode','0','12'), ('4583','313','14','Hot Standby','0','13'), ('4584','313','15','On Battery Test','0','14'), ('4585','313','16','Emergency Static Bypass','0','15'), ('4586','313','17','Static Bypass Standby','0','16'), ('4587','313','18','Power Saving Mode','0','17'), ('4588','313','19','Spot Mode','0','18'), ('4589','313','20','E-Conversion','0','19'), ('4590','313','21','Charger Spotmode','0','20'), ('4591','313','22','Inverter Spotmode','0','21'), ('4592','313','23','Active Load','0','22'), ('4593','313','24','Battery Discharge Spotmode','0','23'), ('4594','313','25','Inverter Standby','0','24'), ('4595','313','26','Charger Only','0','25'), ('4596','314','0','not available','0','0'), ('4597','314','1','available','0','1'), ('4598','314','2','unknown','0','2'), ('4599','315','1','Unknown','0','0'), ('4600','315','2','Online','0','1'), ('4601','315','3','On Battery','0','2'), ('4602','315','4','On Smart Boost','0','3'), ('4603','315','5','Timed Sleeping','0','4'), ('4604','315','6','Software Bypass','0','5'), ('4605','315','7','Off','0','6'), ('4606','315','8','Rebooting','0','7'), ('4607','315','9','Switched Bypass','0','8'), ('4608','315','10','Hardware Failure Bypass','0','9'), ('4609','315','11','Sleeping Until Power Return','0','10'), ('4610','315','12','On Smart Trim','0','11'), ('4611','315','13','Eco Mode','0','12'), ('4612','315','14','Hot Standby','0','13'), ('4613','315','15','On Battery Test','0','14'), ('4614','315','16','Emergency Static Bypass','0','15'), ('4615','315','17','Static Bypass Standby','0','16'), ('4616','315','18','Power Saving Mode','0','17'), ('4617','315','19','Spot Mode','0','18'), ('4618','315','20','E-Conversion','0','19'), ('4619','315','21','Charger Spotmode','0','20'), ('4620','315','22','Inverter Spotmode','0','21'), ('4621','315','23','Active Load','0','22'), ('4622','315','24','Battery Discharge Spotmode','0','23'), ('4623','315','25','Inverter Standby','0','24'), ('4624','315','26','Charger Only','0','25'), ('4625','316','1','Normal','0','0'), ('4626','316','2','Warning','0','1'), ('4627','316','3','Critical','0','2'), ('4628','316','4','Not applicable','0','3'), ('4629','317','1','no Battery Needs Replacing','0','0'), ('4630','317','2','battery Needs Replacing','0','1'), ('4631','318','1','no Transfer','0','0'), ('4632','318','2','High Line Voltage','0','1'), ('4633','318','3','Brownout','0','2'), ('4634','318','4','Blackout','0','3'), ('4635','318','5','Small Momentary Sag','0','4'), ('4636','318','6','Deep Momentary Sag','0','5'), ('4637','318','7','Small Momentary Spike','0','6'), ('4638','318','8','Large Momentary Spike','0','7'), ('4639','318','9','Self Test','0','8'), ('4640','318','10','Rate of Voltage Change','0','9'), ('4641','319','1','Unknown','0','0'), ('4642','319','2','Normal','0','1'), ('4643','319','3','Low','0','2'), ('4644','319','4','In Fault Condition','0','3'), ('4645','320','1','Unknown','0','0'), ('4646','320','2','Online','0','1'), ('4647','320','3','On Battery','0','2'), ('4648','320','4','On Smart Boost','0','3'), ('4649','320','5','Timed Sleeping','0','4'), ('4650','320','6','Software Bypass','0','5'), ('4651','320','7','Off','0','6'), ('4652','320','8','Rebooting','0','7'), ('4653','320','9','Switched Bypass','0','8'), ('4654','320','10','Hardware Failure Bypass','0','9'), ('4655','320','11','Sleeping Until Power Return','0','10'), ('4656','320','12','On Smart Trim','0','11'), ('4657','320','13','Eco Mode','0','12'), ('4658','320','14','Hot Standby','0','13'), ('4659','320','15','On Battery Test','0','14'), ('4660','320','16','Emergency Static Bypass','0','15'), ('4661','320','17','Static Bypass Standby','0','16'), ('4662','320','18','Power Saving Mode','0','17'), ('4663','320','19','Spot Mode','0','18'), ('4664','320','20','E-Conversion','0','19'), ('4665','320','21','Charger Spotmode','0','20'), ('4666','320','22','Inverter Spotmode','0','21'), ('4667','320','23','Active Load','0','22'), ('4668','320','24','Battery Discharge Spotmode','0','23'), ('4669','320','25','Inverter Standby','0','24'), ('4670','320','26','Charger Only','0','25'), ('4671','321','0','not available','0','0'), ('4672','321','1','available','0','1'), ('4673','321','2','unknown','0','2'), ('4674','322','1','Normal','0','0'), ('4675','322','2','Warning','0','1'), ('4676','322','3','Critical','0','2'), ('4677','322','4','Not applicable','0','3'), ('4678','323','1','no Battery Needs Replacing','0','0'), ('4679','323','2','battery Needs Replacing','0','1'), ('4680','324','1','no Transfer','0','0'), ('4681','324','2','High Line Voltage','0','1'), ('4682','324','3','Brownout','0','2'), ('4683','324','4','Blackout','0','3'), ('4684','324','5','Small Momentary Sag','0','4'), ('4685','324','6','Deep Momentary Sag','0','5'), ('4686','324','7','Small Momentary Spike','0','6'), ('4687','324','8','Large Momentary Spike','0','7'), ('4688','324','9','Self Test','0','8'), ('4689','324','10','Rate of Voltage Change','0','9'), ('4690','325','1','Unknown','0','0'), ('4691','325','2','Normal','0','1'), ('4692','325','3','Low','0','2'), ('4693','325','4','In Fault Condition','0','3'), ('4694','326','1','Unknown','0','0'), ('4695','326','2','Online','0','1'), ('4696','326','3','On Battery','0','2'), ('4697','326','4','On Smart Boost','0','3'), ('4698','326','5','Timed Sleeping','0','4'), ('4699','326','6','Software Bypass','0','5'), ('4700','326','7','Off','0','6'), ('4701','326','8','Rebooting','0','7'), ('4702','326','9','Switched Bypass','0','8'), ('4703','326','10','Hardware Failure Bypass','0','9'), ('4704','326','11','Sleeping Until Power Return','0','10'), ('4705','326','12','On Smart Trim','0','11'), ('4706','326','13','Eco Mode','0','12'), ('4707','326','14','Hot Standby','0','13'), ('4708','326','15','On Battery Test','0','14'), ('4709','326','16','Emergency Static Bypass','0','15'), ('4710','326','17','Static Bypass Standby','0','16'), ('4711','326','18','Power Saving Mode','0','17'), ('4712','326','19','Spot Mode','0','18'), ('4713','326','20','E-Conversion','0','19'), ('4714','326','21','Charger Spotmode','0','20'), ('4715','326','22','Inverter Spotmode','0','21'), ('4716','326','23','Active Load','0','22'), ('4717','326','24','Battery Discharge Spotmode','0','23'), ('4718','326','25','Inverter Standby','0','24'), ('4719','326','26','Charger Only','0','25'), ('4720','327','0','not available','0','0'), ('4721','327','1','available','0','1'), ('4722','327','2','unknown','0','2'), ('4723','328','1','Normal','0','0'), ('4724','328','2','Warning','0','1'), ('4725','328','3','Critical','0','2'), ('4726','328','4','Not applicable','0','3'), ('4727','329','1','no Battery Needs Replacing','0','0'), ('4728','329','2','battery Needs Replacing','0','1'), ('4729','330','1','no Transfer','0','0'), ('4730','330','2','High Line Voltage','0','1'), ('4731','330','3','Brownout','0','2'), ('4732','330','4','Blackout','0','3'), ('4733','330','5','Small Momentary Sag','0','4'), ('4734','330','6','Deep Momentary Sag','0','5'), ('4735','330','7','Small Momentary Spike','0','6'), ('4736','330','8','Large Momentary Spike','0','7'), ('4737','330','9','Self Test','0','8'), ('4738','330','10','Rate of Voltage Change','0','9'), ('4739','331','1','Unknown','0','0'), ('4740','331','2','Normal','0','1'), ('4741','331','3','Low','0','2'), ('4742','331','4','In Fault Condition','0','3'), ('4743','332','1','Unknown','0','0'), ('4744','332','2','Online','0','1'), ('4745','332','3','On Battery','0','2'), ('4746','332','4','On Smart Boost','0','3'), ('4747','332','5','Timed Sleeping','0','4'), ('4748','332','6','Software Bypass','0','5'), ('4749','332','7','Off','0','6'), ('4750','332','8','Rebooting','0','7'), ('4751','332','9','Switched Bypass','0','8'), ('4752','332','10','Hardware Failure Bypass','0','9'), ('4753','332','11','Sleeping Until Power Return','0','10'), ('4754','332','12','On Smart Trim','0','11'), ('4755','332','13','Eco Mode','0','12'), ('4756','332','14','Hot Standby','0','13'), ('4757','332','15','On Battery Test','0','14'), ('4758','332','16','Emergency Static Bypass','0','15'), ('4759','332','17','Static Bypass Standby','0','16'), ('4760','332','18','Power Saving Mode','0','17'), ('4761','332','19','Spot Mode','0','18'), ('4762','332','20','E-Conversion','0','19'), ('4763','332','21','Charger Spotmode','0','20'), ('4764','332','22','Inverter Spotmode','0','21'), ('4765','332','23','Active Load','0','22'), ('4766','332','24','Battery Discharge Spotmode','0','23'), ('4767','332','25','Inverter Standby','0','24'), ('4768','332','26','Charger Only','0','25'), ('4769','333','0','not available','0','0'), ('4770','333','1','available','0','1'), ('4771','333','2','unknown','0','2'), ('4772','334','0','False','0','0'), ('4773','334','1','True','0','1'), ('4774','335','0','False','0','0'), ('4775','335','1','True','0','1'), ('4776','336','1','Normal','0','0'), ('4777','336','2','Warning','0','1'), ('4778','336','3','Critical','0','2'), ('4779','336','4','Not applicable','0','3'), ('4780','337','1','no Battery Needs Replacing','0','0'), ('4781','337','2','battery Needs Replacing','0','1'), ('4782','338','1','no Transfer','0','0'), ('4783','338','2','High Line Voltage','0','1'), ('4784','338','3','Brownout','0','2'), ('4785','338','4','Blackout','0','3'), ('4786','338','5','Small Momentary Sag','0','4'), ('4787','338','6','Deep Momentary Sag','0','5'), ('4788','338','7','Small Momentary Spike','0','6'), ('4789','338','8','Large Momentary Spike','0','7'), ('4790','338','9','Self Test','0','8'), ('4791','338','10','Rate of Voltage Change','0','9'), ('4792','339','1','Unknown','0','0'), ('4793','339','2','Normal','0','1'), ('4794','339','3','Low','0','2'), ('4795','339','4','In Fault Condition','0','3'), ('4796','340','1','Unknown','0','0'), ('4797','340','2','Online','0','1'), ('4798','340','3','On Battery','0','2'), ('4799','340','4','On Smart Boost','0','3'), ('4800','340','5','Timed Sleeping','0','4'), ('4801','340','6','Software Bypass','0','5'), ('4802','340','7','Off','0','6'), ('4803','340','8','Rebooting','0','7'), ('4804','340','9','Switched Bypass','0','8'), ('4805','340','10','Hardware Failure Bypass','0','9'), ('4806','340','11','Sleeping Until Power Return','0','10'), ('4807','340','12','On Smart Trim','0','11'), ('4808','340','13','Eco Mode','0','12'), ('4809','340','14','Hot Standby','0','13'), ('4810','340','15','On Battery Test','0','14'), ('4811','340','16','Emergency Static Bypass','0','15'), ('4812','340','17','Static Bypass Standby','0','16'), ('4813','340','18','Power Saving Mode','0','17'), ('4814','340','19','Spot Mode','0','18'), ('4815','340','20','E-Conversion','0','19'), ('4816','340','21','Charger Spotmode','0','20'), ('4817','340','22','Inverter Spotmode','0','21'), ('4818','340','23','Active Load','0','22'), ('4819','340','24','Battery Discharge Spotmode','0','23'), ('4820','340','25','Inverter Standby','0','24'), ('4821','340','26','Charger Only','0','25'), ('4822','341','0','not available','0','0'), ('4823','341','1','available','0','1'), ('4824','341','2','unknown','0','2'), ('4825','342','0','-','0','0'), ('4826','342','1','Y','0','1'), ('4827','343','0','-','0','0'), ('4828','343','1','Y','0','1'), ('4829','344','0','unknown','0','0'), ('4830','344','1','active','0','1'), ('4831','344','2','reloading','0','2'), ('4832','344','3','inactive','0','3'), ('4833','344','4','failed','0','4'), ('4834','344','5','activating','0','5'), ('4835','344','6','deactivating','0','6'), ('4836','345','0','unknown','0','0'), ('4837','345','1','enabled','0','1'), ('4838','345','2','enabled-runtime','0','2'), ('4839','345','3','linked','0','3'), ('4840','345','4','linked-runtime','0','4'), ('4841','345','5','masked','0','5'), ('4842','345','6','masked-runtime','0','6'), ('4843','345','7','static','0','7'), ('4844','345','8','disabled','0','8'), ('4845','345','9','invalid','0','9'), ('4846','346','0','unknown','0','0'), ('4847','346','1','loaded','0','1'), ('4848','346','2','error','0','2'), ('4849','346','3','masked','0','3'), ('4850','347','1','none','0','0'), ('4851','347','2','other','0','1'), ('4852','347','3','hmacMd5','0','2'), ('4853','347','4','hmacSha','0','3'), ('4854','348','1','none','0','0'), ('4855','348','2','des','0','1'), ('4856','348','3','des3','0','2'), ('4857','348','4','rc4','0','3'), ('4858','348','5','rc5','0','4'), ('4859','348','6','idea','0','5'), ('4860','348','7','cast','0','6'), ('4861','348','8','blowfish','0','7'), ('4862','348','9','aes','0','8'), ('4863','349','1','Up','0','0'), ('4864','349','2','Down','0','1'), ('4865','349','3','Testing','0','2'), ('4866','350','1','Up','0','0'), ('4867','350','2','Down','0','1'), ('4868','350','3','Testing','0','2'), ('4869','350','4','Unknown','0','3'), ('4870','350','5','Dormant','0','4'), ('4871','350','6','NotPresent','0','5'), ('4872','350','7','lowerLayerDown','0','6'), ('4873','351','1','other','0','0'), ('4874','351','2','ipsec','0','1'), ('4875','351','3','l2tp','0','2'), ('4876','351','4','l2tpoveripsxe','0','3'), ('4877','351','5','pptp','0','4'), ('4878','351','6','l2f','0','5'), ('4879','351','7','ssl','0','6'), ('4880','352','1','none','0','0'), ('4881','352','2','other','0','1'), ('4882','352','3','radius','0','2'), ('4883','352','4','tacacsplus','0','3'), ('4884','352','5','kerberos','0','4'), ('4885','352','6','local','0','5'), ('4886','352','7','ldap','0','6'), ('4887','352','8','ntlm','0','7'), ('4888','352','9','sdi','0','8'), ('4889','353','1','other','0','0'), ('4890','353','2','unknown','0','1'), ('4891','353','3','chassis','0','2'), ('4892','353','4','backplane','0','3'), ('4893','353','5','container','0','4'), ('4894','353','6','powerSupply','0','5'), ('4895','353','7','fan','0','6'), ('4896','353','8','sensor','0','7'), ('4897','353','9','module','0','8'), ('4898','353','10','port','0','9'), ('4899','353','11','stack','0','10'), ('4900','353','12','cpu','0','11'), ('4901','354','0','not available','0','0'), ('4902','354','1','available','0','1'), ('4903','354','2','unknown','0','2'), ('4904','355','0','bad','0','0'), ('4905','355','1','good','0','1'), ('4906','355','2','notpresent','0','2'), ('4907','356','1','none','0','0'), ('4908','356','2','minimum','0','1'), ('4909','356','3','nominal','0','2'), ('4910','356','4','dedicated','0','3'), ('4911','356','5','custom','0','4'), ('4912','357','0','none','0','0'), ('4913','357','1','txrx','0','1'), ('4914','357','2','tx','0','2'), ('4915','357','3','rx','0','3'), ('4916','358','0','not available','0','0'), ('4917','358','1','available','0','1'), ('4918','358','2','unknown','0','2'), ('4919','359','0','not available','0','0'), ('4920','359','1','available','0','1'), ('4921','359','2','unknown','0','2'), ('4922','360','1','Up','0','0'), ('4923','360','2','Down','0','1'), ('4924','360','3','Testing','0','2'), ('4925','361','1','Up','0','0'), ('4926','361','2','Down','0','1'), ('4927','361','3','Testing','0','2'), ('4928','361','4','Unknown','0','3'), ('4929','361','5','Dormant','0','4'), ('4930','361','6','NotPresent','0','5'), ('4931','361','7','lowerLayerDown','0','6'), ('4932','362','0','not available','0','0'), ('4933','362','1','available','0','1'), ('4934','362','2','unknown','0','2'), ('4935','363','0','Down','0','0'), ('4936','363','1','Cooper','0','1'), ('4937','363','2','Fiber','0','2'), ('4938','364','0','auto','0','0'), ('4939','364','1','10M half','0','1'), ('4940','364','2','10M full','0','2'), ('4941','364','3','100M half','0','3'), ('4942','364','4','100M full','0','4'), ('4943','364','5','1G full','0','5'), ('4944','365','1','Up','0','0'), ('4945','365','2','Down','0','1'), ('4946','365','3','Testing','0','2'), ('4947','366','1','Up','0','0'), ('4948','366','2','Down','0','1'), ('4949','366','3','Testing','0','2'), ('4950','366','4','Unknown','0','3'), ('4951','366','5','Dormant','0','4'), ('4952','366','6','NotPresent','0','5'), ('4953','366','7','lowerLayerDown','0','6'), ('4954','367','1','OK with DDM','0','0'), ('4955','367','2','OK without DDM','0','1'), ('4956','367','3','nonoperational','0','2'), ('4957','368','0','not available','0','0'), ('4958','368','1','available','0','1'), ('4959','368','2','unknown','0','2'), ('4960','369','0','Down','0','0'), ('4961','369','1','Cooper','0','1'), ('4962','369','2','Fiber','0','2'), ('4963','370','0','auto','0','0'), ('4964','370','1','10M half','0','1'), ('4965','370','2','10M full','0','2'), ('4966','370','3','100M half','0','3'), ('4967','370','4','100M full','0','4'), ('4968','370','5','1G full','0','5'), ('4969','371','1','Up','0','0'), ('4970','371','2','Down','0','1'), ('4971','371','3','Testing','0','2'), ('4972','372','1','Up','0','0'), ('4973','372','2','Down','0','1'), ('4974','372','3','Testing','0','2'), ('4975','372','4','Unknown','0','3'), ('4976','372','5','Dormant','0','4'), ('4977','372','6','NotPresent','0','5'), ('4978','372','7','lowerLayerDown','0','6'), ('4979','373','0','not available','0','0'), ('4980','373','1','available','0','1'), ('4981','373','2','unknown','0','2'), ('4982','374','1','Empty','0','0'), ('4983','374','2','Up','0','1'), ('4984','374','3','Down','0','2'), ('4985','374','4','Testing','0','3'), ('4986','374','5','Standby','0','4'), ('4987','375','1','unknown','0','0'), ('4988','375','101','msc1000G','0','1'), ('4989','375','102','alc1248G_51','0','2'), ('4990','375','103','alc1248G_53','0','3'), ('4991','375','104','slc1248G_22','0','4'), ('4992','375','105','vlc1224G_41','0','5'), ('4993','375','106','msc1024G','0','6'), ('4994','375','107','alc1272G_51','0','7'), ('4995','375','108','vop1248G_61_SIP','0','8'), ('4996','375','109','msc1000GA','0','9'), ('4997','375','110','vlc1324G_51','0','10'), ('4998','375','111','msc1224G','0','11'), ('4999','375','112','vop1248G_61_H248','0','12'), ('5000','375','113','vlc1348G_51','0','13'), ('5001','375','114','elc1220G_55','0','14'), ('5002','375','115','msc1024GA','0','15'), ('5003','375','116','vlc1324G_53','0','16'), ('5004','375','117','ima1408G_81','0','17'), ('5005','375','118','vlc1424G_56','0','18'), ('5006','375','119','slc1348G_22','0','19'), ('5007','375','120','vlc1348G_53','0','20'), ('5008','375','121','alc1372G_51','0','21'), ('5009','375','122','msc1024GB','0','22'), ('5010','375','123','msc1224GB','0','23'), ('5011','375','124','vop1372G_61_H248','0','24'), ('5012','376','1','Up','0','0'), ('5013','376','2','Down','0','1'), ('5014','376','3','Testing','0','2'), ('5015','377','1','Up','0','0'), ('5016','377','2','Down','0','1'), ('5017','377','3','Testing','0','2'), ('5018','377','4','Unknown','0','3'), ('5019','377','5','Dormant','0','4'), ('5020','377','6','NotPresent','0','5'), ('5021','377','7','lowerLayerDown','0','6'), ('5022','378','0','not available','0','0'), ('5023','378','1','available','0','1'), ('5024','378','2','unknown','0','2'), ('5025','379','1','Empty','0','0'), ('5026','379','2','Up','0','1'), ('5027','379','3','Down','0','2'), ('5028','379','4','Testing','0','3'), ('5029','379','5','Standby','0','4'), ('5030','380','1','unknown','0','0'), ('5031','380','101','msc1000G','0','1'), ('5032','380','102','alc1248G_51','0','2'), ('5033','380','103','alc1248G_53','0','3'), ('5034','380','104','slc1248G_22','0','4'), ('5035','380','105','vlc1224G_41','0','5'), ('5036','380','106','msc1024G','0','6'), ('5037','380','107','alc1272G_51','0','7'), ('5038','380','108','vop1248G_61_SIP','0','8'), ('5039','380','109','msc1000GA','0','9'), ('5040','380','110','vlc1324G_51','0','10'), ('5041','380','111','msc1224G','0','11'), ('5042','380','112','vop1248G_61_H248','0','12'), ('5043','380','113','vlc1348G_51','0','13'), ('5044','380','114','elc1220G_55','0','14'), ('5045','380','115','msc1024GA','0','15'), ('5046','380','116','vlc1324G_53','0','16'), ('5047','380','117','ima1408G_81','0','17'), ('5048','380','118','vlc1424G_56','0','18'), ('5049','380','119','slc1348G_22','0','19'), ('5050','380','120','vlc1348G_53','0','20'), ('5051','380','121','alc1372G_51','0','21'), ('5052','380','122','msc1024GB','0','22'), ('5053','380','123','msc1224GB','0','23'), ('5054','380','124','vop1372G_61_H248','0','24'), ('5055','381','1','Up','0','0'), ('5056','381','2','Down','0','1'), ('5057','381','3','Testing','0','2'), ('5058','382','1','Up','0','0'), ('5059','382','2','Down','0','1'), ('5060','382','3','Testing','0','2'), ('5061','382','4','Unknown','0','3'), ('5062','382','5','Dormant','0','4'), ('5063','382','6','NotPresent','0','5'), ('5064','382','7','lowerLayerDown','0','6'), ('5065','383','0','not available','0','0'), ('5066','383','1','available','0','1'), ('5067','383','2','unknown','0','2'), ('5068','384','1','Up','0','0'), ('5069','384','2','Down','0','1'), ('5070','384','3','Testing','0','2'), ('5071','385','1','Up','0','0'), ('5072','385','2','Down','0','1'), ('5073','385','3','Testing','0','2'), ('5074','385','4','Unknown','0','3'), ('5075','385','5','Dormant','0','4'), ('5076','385','6','NotPresent','0','5'), ('5077','385','7','lowerLayerDown','0','6'), ('5078','386','0','not available','0','0'), ('5079','386','1','available','0','1'), ('5080','386','2','unknown','0','2'), ('5081','387','0','Down','0','0'), ('5082','387','1','Cooper','0','1'), ('5083','387','2','Fiber','0','2'), ('5084','388','0','auto','0','0'), ('5085','388','1','10M half','0','1'), ('5086','388','2','10M full','0','2'), ('5087','388','3','100M half','0','3'), ('5088','388','4','100M full','0','4'), ('5089','388','5','1G full','0','5'), ('5090','389','1','Up','0','0'), ('5091','389','2','Down','0','1'), ('5092','389','3','Testing','0','2'), ('5093','390','1','Up','0','0'), ('5094','390','2','Down','0','1'), ('5095','390','3','Testing','0','2'), ('5096','390','4','Unknown','0','3'), ('5097','390','5','Dormant','0','4'), ('5098','390','6','NotPresent','0','5'), ('5099','390','7','lowerLayerDown','0','6'), ('5100','391','1','OK with DDM','0','0'), ('5101','391','2','OK without DDM','0','1'), ('5102','391','3','nonoperational','0','2'), ('5103','392','0','not available','0','0'), ('5104','392','1','available','0','1'), ('5105','392','2','unknown','0','2'), ('5106','393','0','Down','0','0'), ('5107','393','1','Cooper','0','1'), ('5108','393','2','Fiber','0','2'), ('5109','394','0','auto','0','0'), ('5110','394','1','10M half','0','1'), ('5111','394','2','10M full','0','2'), ('5112','394','3','100M half','0','3'), ('5113','394','4','100M full','0','4'), ('5114','394','5','1G full','0','5'), ('5115','395','1','Up','0','0'), ('5116','395','2','Down','0','1'), ('5117','395','3','Testing','0','2'), ('5118','396','1','Up','0','0'), ('5119','396','2','Down','0','1'), ('5120','396','3','Testing','0','2'), ('5121','396','4','Unknown','0','3'), ('5122','396','5','Dormant','0','4'), ('5123','396','6','NotPresent','0','5'), ('5124','396','7','lowerLayerDown','0','6'), ('5125','397','1','OK with DDM','0','0'), ('5126','397','2','OK without DDM','0','1'), ('5127','397','3','nonoperational','0','2'), ('5128','398','0','not available','0','0'), ('5129','398','1','available','0','1'), ('5130','398','2','unknown','0','2'), ('5131','399','0','Down','0','0'), ('5132','399','1','Cooper','0','1'), ('5133','399','2','Fiber','0','2'), ('5134','400','0','auto','0','0'), ('5135','400','1','10M half','0','1'), ('5136','400','2','10M full','0','2'), ('5137','400','3','100M half','0','3'), ('5138','400','4','100M full','0','4'), ('5139','400','5','1G full','0','5'), ('5140','401','1','Up','0','0'), ('5141','401','2','Down','0','1'), ('5142','401','3','Testing','0','2'), ('5143','402','1','Up','0','0'), ('5144','402','2','Down','0','1'), ('5145','402','3','Testing','0','2'), ('5146','402','4','Unknown','0','3'), ('5147','402','5','Dormant','0','4'), ('5148','402','6','NotPresent','0','5'), ('5149','402','7','lowerLayerDown','0','6'), ('5150','403','1','OK with DDM','0','0'), ('5151','403','2','OK without DDM','0','1'), ('5152','403','3','nonoperational','0','2'), ('5153','404','0','not available','0','0'), ('5154','404','1','available','0','1'), ('5155','404','2','unknown','0','2'), ('5156','405','0','Down','0','0'), ('5157','405','1','Cooper','0','1'), ('5158','405','2','Fiber','0','2'), ('5159','406','0','auto','0','0'), ('5160','406','1','10M half','0','1'), ('5161','406','2','10M full','0','2'), ('5162','406','3','100M half','0','3'), ('5163','406','4','100M full','0','4'), ('5164','406','5','1G full','0','5'), ('5165','407','1','Up','0','0'), ('5166','407','2','Down','0','1'), ('5167','407','3','Testing','0','2'), ('5168','408','1','Up','0','0'), ('5169','408','2','Down','0','1'), ('5170','408','3','Testing','0','2'), ('5171','408','4','Unknown','0','3'), ('5172','408','5','Dormant','0','4'), ('5173','408','6','NotPresent','0','5'), ('5174','408','7','lowerLayerDown','0','6'), ('5175','409','1','OK with DDM','0','0'), ('5176','409','2','OK without DDM','0','1'), ('5177','409','3','nonoperational','0','2'), ('5178','410','0','not available','0','0'), ('5179','410','1','available','0','1'), ('5180','410','2','unknown','0','2'), ('5181','411','0','Down','0','0'), ('5182','411','1','Cooper','0','1'), ('5183','411','2','Fiber','0','2'), ('5184','412','0','auto','0','0'), ('5185','412','1','10M half','0','1'), ('5186','412','2','10M full','0','2'), ('5187','412','3','100M half','0','3'), ('5188','412','4','100M full','0','4'), ('5189','412','5','1G full','0','5'), ('5190','413','1','Up','0','0'), ('5191','413','2','Down','0','1'), ('5192','413','3','Testing','0','2'), ('5193','414','1','Up','0','0'), ('5194','414','2','Down','0','1'), ('5195','414','3','Testing','0','2'), ('5196','414','4','Unknown','0','3'), ('5197','414','5','Dormant','0','4'), ('5198','414','6','NotPresent','0','5'), ('5199','414','7','lowerLayerDown','0','6'), ('5200','415','1','OK with DDM','0','0'), ('5201','415','2','OK without DDM','0','1'), ('5202','415','3','nonoperational','0','2'), ('5203','416','0','not available','0','0'), ('5204','416','1','available','0','1'), ('5205','416','2','unknown','0','2'), ('5206','417','0','Down','0','0'), ('5207','417','1','Cooper','0','1'), ('5208','417','2','Fiber','0','2'), ('5209','417','3','XFP','0','3'), ('5210','417','4','CX4','0','4'), ('5211','418','0','auto','0','0'), ('5212','418','1','10M half','0','1'), ('5213','418','2','10M full','0','2'), ('5214','418','3','100M half','0','3'), ('5215','418','4','100M full','0','4'), ('5216','418','5','1G full','0','5'), ('5217','418','6','10G full','0','6'), ('5218','418','7','12G full','0','7'), ('5219','418','8','40G full','0','8'), ('5220','418','9','1G auto','0','9'), ('5221','419','1','Up','0','0'), ('5222','419','2','Down','0','1'), ('5223','419','3','Testing','0','2'), ('5224','420','1','Up','0','0'), ('5225','420','2','Down','0','1'), ('5226','420','3','Testing','0','2'), ('5227','420','4','Unknown','0','3'), ('5228','420','5','Dormant','0','4'), ('5229','420','6','NotPresent','0','5'), ('5230','420','7','lowerLayerDown','0','6'), ('5231','421','1','OK with DDM','0','0'), ('5232','421','2','OK without DDM','0','1'), ('5233','421','3','nonoperational','0','2'), ('5234','422','0','not available','0','0'), ('5235','422','1','available','0','1'), ('5236','422','2','unknown','0','2'), ('5237','423','0','Down','0','0'), ('5238','423','1','Cooper','0','1'), ('5239','423','2','Fiber','0','2'), ('5240','423','3','XFP','0','3'), ('5241','423','4','CX4','0','4'), ('5242','424','0','auto','0','0'), ('5243','424','1','10M half','0','1'), ('5244','424','2','10M full','0','2'), ('5245','424','3','100M half','0','3'), ('5246','424','4','100M full','0','4'), ('5247','424','5','1G full','0','5'), ('5248','424','6','10G full','0','6'), ('5249','424','7','12G full','0','7'), ('5250','424','8','40G full','0','8'), ('5251','424','9','1G auto','0','9'), ('5252','425','1','Up','0','0'), ('5253','425','2','Down','0','1'), ('5254','425','3','Testing','0','2'), ('5255','426','1','Up','0','0'), ('5256','426','2','Down','0','1'), ('5257','426','3','Testing','0','2'), ('5258','426','4','Unknown','0','3'), ('5259','426','5','Dormant','0','4'), ('5260','426','6','NotPresent','0','5'), ('5261','426','7','lowerLayerDown','0','6'), ('5262','427','1','OK with DDM','0','0'), ('5263','427','2','OK without DDM','0','1'), ('5264','427','3','nonoperational','0','2'), ('5265','428','0','not available','0','0'), ('5266','428','1','available','0','1'), ('5267','428','2','unknown','0','2'), ('5268','429','0','Down','0','0'), ('5269','429','1','Cooper','0','1'), ('5270','429','2','Fiber','0','2'), ('5271','429','3','XFP','0','3'), ('5272','429','4','CX4','0','4'), ('5273','430','0','auto','0','0'), ('5274','430','1','10M half','0','1'), ('5275','430','2','10M full','0','2'), ('5276','430','3','100M half','0','3'), ('5277','430','4','100M full','0','4'), ('5278','430','5','1G full','0','5'), ('5279','431','1','Up','0','0'), ('5280','431','2','Down','0','1'), ('5281','431','3','Testing','0','2'), ('5282','432','1','Up','0','0'), ('5283','432','2','Down','0','1'), ('5284','432','3','Testing','0','2'), ('5285','432','4','Unknown','0','3'), ('5286','432','5','Dormant','0','4'), ('5287','432','6','NotPresent','0','5'), ('5288','432','7','lowerLayerDown','0','6'), ('5289','433','1','OK with DDM','0','0'), ('5290','433','2','OK without DDM','0','1'), ('5291','433','3','nonoperational','0','2'), ('5292','434','0','unknown','0','0'), ('5293','434','1','operable','0','1'), ('5294','434','2','inoperable','0','2'), ('5295','434','3','degraded','0','3'), ('5296','434','4','poweredOff','0','4'), ('5297','434','5','powerProblem','0','5'), ('5298','434','6','removed','0','6'), ('5299','434','7','voltageProblem','0','7'), ('5300','434','8','thermalProblem','0','8'), ('5301','434','9','performanceProblem','0','9'), ('5302','434','10','accessibilityProblem','0','10'), ('5303','434','11','identityUnestablishable','0','11'), ('5304','434','12','biosPostTimeout','0','12'), ('5305','434','13','disabled','0','13'), ('5306','434','14','malformedFru','0','14'), ('5307','434','15','backplanePortProblem','0','15'), ('5308','434','16','chassisIntrusion','0','16'), ('5309','434','51','fabricConnProblem','0','17'), ('5310','434','52','fabricUnsupportedConn','0','18'), ('5311','434','81','config','0','19'), ('5312','434','82','equipmentProblem','0','20'), ('5313','434','83','decommissioning','0','21'), ('5314','434','84','chassisLimitExceeded','0','22'), ('5315','434','100','notSupported','0','23'), ('5316','434','101','discovery','0','24'), ('5317','434','102','discoveryFailed','0','25'), ('5318','434','103','identify','0','26'), ('5319','434','104','postFailure','0','27'), ('5320','434','105','upgradeProblem','0','28'), ('5321','434','106','peerCommProblem','0','29'), ('5322','434','107','autoUpgrade','0','30'), ('5323','434','108','linkActivateBlocked','0','31'), ('5324','435','0','unknown','0','0'), ('5325','435','1','empty','0','1'), ('5326','435','10','equipped','0','2'), ('5327','435','11','missing','0','3'), ('5328','435','12','mismatch','0','4'), ('5329','435','13','equippedNotPrimary','0','5'), ('5330','435','14','equippedSlave','0','6'), ('5331','435','15','mismatchSlave','0','7'), ('5332','435','16','missingSlave','0','8'), ('5333','435','20','equippedIdentityUnestablishable','0','9'), ('5334','435','21','mismatchIdentityUnestablishable','0','10'), ('5335','435','22','equippedWithMalformedFru','0','11'), ('5336','435','30','inaccessible','0','12'), ('5337','435','40','unauthorized','0','13'), ('5338','435','100','notSupported','0','14'), ('5339','435','101','equippedUnsupported','0','15'), ('5340','435','102','equippedDiscNotStarted','0','16'), ('5341','435','103','equippedDiscInProgress','0','17'), ('5342','435','104','equippedDiscError','0','18'), ('5343','435','105','equippedDiscUnknown','0','19'), ('5344','436','0','indeterminate','0','0'), ('5345','436','1','unassociated','0','1'), ('5346','436','10','ok','0','2'), ('5347','436','11','discovery','0','3'), ('5348','436','12','config','0','4'), ('5349','436','13','unconfig','0','5'), ('5350','436','14','powerOff','0','6'), ('5351','436','15','restart','0','7'), ('5352','436','20','maintenance','0','8'), ('5353','436','21','test','0','9'), ('5354','436','29','computeMismatch','0','10'), ('5355','436','30','computeFailed','0','11'), ('5356','436','31','degraded','0','12'), ('5357','436','32','discoveryFailed','0','13'), ('5358','436','33','configFailure','0','14'), ('5359','436','34','unconfigFailed','0','15'), ('5360','436','35','testFailed','0','16'), ('5361','436','36','maintenanceFailed','0','17'), ('5362','436','40','removed','0','18'), ('5363','436','41','disabled','0','19'), ('5364','436','50','inaccessible','0','20'), ('5365','436','60','thermalProblem','0','21'), ('5366','436','61','powerProblem','0','22'), ('5367','436','62','voltageProblem','0','23'), ('5368','436','63','inoperable','0','24'), ('5369','436','101','decommissioning','0','25'), ('5370','436','201','biosRestore','0','26'), ('5371','436','202','cmosReset','0','27'), ('5372','436','203','diagnostics','0','28'), ('5373','436','204','diagnosticsFailed','0','29'), ('5374','436','210','pendingReboot','0','30'), ('5375','436','211','pendingReassociation','0','31'), ('5376','436','212','svnicNotPresent','0','32'), ('5377','437','0','unspecified','0','0'), ('5378','437','1','simple','0','1'), ('5379','437','2','mirror','0','2'), ('5380','437','3','stripe','0','3'), ('5381','437','4','raid','0','4'), ('5382','437','5','stripeParity','0','5'), ('5383','437','6','stripeDualParity','0','6'), ('5384','437','7','mirrorStripe','0','7'), ('5385','437','8','stripeParityStripe','0','8'), ('5386','437','9','stripeDualParityStripe','0','9'), ('5387','438','0','unknown','0','0'), ('5388','438','1','online','0','1'), ('5389','438','2','unconfiguredGood','0','2'), ('5390','438','3','globalHotSpare','0','3'), ('5391','438','4','dedicatedHotSpare','0','4'), ('5392','438','5','jbod','0','5'), ('5393','438','6','offline','0','6'), ('5394','438','7','rebuilding','0','7'), ('5395','438','8','copyback','0','8'), ('5396','438','9','failed','0','9'), ('5397','438','10','unconfiguredBad','0','10'), ('5398','438','11','predictiveFailure','0','11'), ('5399','438','12','disabledForRemoval','0','12'), ('5400','438','13','foreignConfiguration','0','13'), ('5401','438','14','zeroing','0','14'), ('5402','438','15','good','0','15'), ('5403','438','16','bad','0','16'), ('5404','438','17','lockedForeignConfiguration','0','17'), ('5405','439','0','unspecified','0','0'), ('5406','439','1','hdd','0','1'), ('5407','439','2','ssd','0','2'), ('5408','439','3','nvme','0','3'), ('5409','440','1','up','0','0'), ('5410','440','2','down','0','1'), ('5411','440','3','testing','0','2'), ('5412','440','4','unknown','0','3'), ('5413','440','5','dormant','0','4'), ('5414','440','6','notPresent','0','5'), ('5415','440','7','lowerLayerDown','0','6'), ('5416','441','1','other','0','0'), ('5417','441','2','regular1822','0','1'), ('5418','441','3','hdh1822','0','2'), ('5419','441','4','ddnX25','0','3'), ('5420','441','5','rfc877x25','0','4'), ('5421','441','6','ethernetCsmacd','0','5'), ('5422','441','7','iso88023Csmacd','0','6'), ('5423','441','8','iso88024TokenBus','0','7'), ('5424','441','9','iso88025TokenRing','0','8'), ('5425','441','10','iso88026Man','0','9'), ('5426','441','11','starLan','0','10'), ('5427','441','12','proteon10Mbit','0','11'), ('5428','441','13','proteon80Mbit','0','12'), ('5429','441','14','hyperchannel','0','13'), ('5430','441','15','fddi','0','14'), ('5431','441','16','lapb','0','15'), ('5432','441','17','sdlc','0','16'), ('5433','441','18','ds1','0','17'), ('5434','441','19','e1','0','18'), ('5435','441','20','basicISDN','0','19'), ('5436','441','21','primaryISDN','0','20'), ('5437','441','22','propPointToPointSerial','0','21'), ('5438','441','23','ppp','0','22'), ('5439','441','24','softwareLoopback','0','23'), ('5440','441','25','eon','0','24'), ('5441','441','26','ethernet3Mbit','0','25'), ('5442','441','27','nsip','0','26'), ('5443','441','28','slip','0','27'), ('5444','441','29','ultra','0','28'), ('5445','441','30','ds3','0','29'), ('5446','441','31','sip','0','30'), ('5447','441','32','frameRelay','0','31'), ('5448','441','33','rs232','0','32'), ('5449','441','34','para','0','33'), ('5450','441','35','arcnet','0','34'), ('5451','441','36','arcnetPlus','0','35'), ('5452','441','37','atm','0','36'), ('5453','441','38','miox25','0','37'), ('5454','441','39','sonet','0','38'), ('5455','441','40','x25ple','0','39'), ('5456','441','41','iso88022llc','0','40'), ('5457','441','42','localTalk','0','41'), ('5458','441','43','smdsDxi','0','42'), ('5459','441','44','frameRelayService','0','43'), ('5460','441','45','v35','0','44'), ('5461','441','46','hssi','0','45'), ('5462','441','47','hippi','0','46'), ('5463','441','48','modem','0','47'), ('5464','441','49','aal5','0','48'), ('5465','441','50','sonetPath','0','49'), ('5466','441','51','sonetVT','0','50'), ('5467','441','52','smdsIcip','0','51'), ('5468','441','53','propVirtual','0','52'), ('5469','441','54','propMultiplexor','0','53'), ('5470','441','55','ieee80212','0','54'), ('5471','441','56','fibreChannel','0','55'), ('5472','441','57','hippiInterface','0','56'), ('5473','441','58','frameRelayInterconnect','0','57'), ('5474','441','59','aflane8023','0','58'), ('5475','441','60','aflane8025','0','59'), ('5476','441','61','cctEmul','0','60'), ('5477','441','62','fastEther','0','61'), ('5478','441','63','isdn','0','62'), ('5479','441','64','v11','0','63'), ('5480','441','65','v36','0','64'), ('5481','441','66','g703at64k','0','65'), ('5482','441','67','g703at2mb','0','66'), ('5483','441','68','qllc','0','67'), ('5484','441','69','fastEtherFX','0','68'), ('5485','441','70','channel','0','69'), ('5486','441','71','ieee80211','0','70'), ('5487','441','72','ibm370parChan','0','71'), ('5488','441','73','escon','0','72'), ('5489','441','74','dlsw','0','73'), ('5490','441','75','isdns','0','74'), ('5491','441','76','isdnu','0','75'), ('5492','441','77','lapd','0','76'), ('5493','441','78','ipSwitch','0','77'), ('5494','441','79','rsrb','0','78'), ('5495','441','80','atmLogical','0','79'), ('5496','441','81','ds0','0','80'), ('5497','441','82','ds0Bundle','0','81'), ('5498','441','83','bsc','0','82'), ('5499','441','84','async','0','83'), ('5500','441','85','cnr','0','84'), ('5501','441','86','iso88025Dtr','0','85'), ('5502','441','87','eplrs','0','86'), ('5503','441','88','arap','0','87'), ('5504','441','89','propCnls','0','88'), ('5505','441','90','hostPad','0','89'), ('5506','441','91','termPad','0','90'), ('5507','441','92','frameRelayMPI','0','91'), ('5508','441','93','x213','0','92'), ('5509','441','94','adsl','0','93'), ('5510','441','95','radsl','0','94'), ('5511','441','96','sdsl','0','95'), ('5512','441','97','vdsl','0','96'), ('5513','441','98','iso88025CRFPInt','0','97'), ('5514','441','99','myrinet','0','98'), ('5515','441','100','voiceEM','0','99'), ('5516','441','101','voiceFXO','0','100'), ('5517','441','102','voiceFXS','0','101'), ('5518','441','103','voiceEncap','0','102'), ('5519','441','104','voiceOverIp','0','103'), ('5520','441','105','atmDxi','0','104'), ('5521','441','106','atmFuni','0','105'), ('5522','441','107','atmIma','0','106'), ('5523','441','108','pppMultilinkBundle','0','107'), ('5524','441','109','ipOverCdlc','0','108'), ('5525','441','110','ipOverClaw','0','109'), ('5526','441','111','stackToStack','0','110'), ('5527','441','112','virtualIpAddress','0','111'), ('5528','441','113','mpc','0','112'), ('5529','441','114','ipOverAtm','0','113'), ('5530','441','115','iso88025Fiber','0','114'), ('5531','441','116','tdlc','0','115'), ('5532','441','117','gigabitEthernet','0','116'), ('5533','441','118','hdlc','0','117'), ('5534','441','119','lapf','0','118'), ('5535','441','120','v37','0','119'), ('5536','441','121','x25mlp','0','120'), ('5537','441','122','x25huntGroup','0','121'), ('5538','441','123','trasnpHdlc','0','122'), ('5539','441','124','interleave','0','123'), ('5540','441','125','fast','0','124'), ('5541','441','126','ip','0','125'), ('5542','441','127','docsCableMaclayer','0','126'), ('5543','441','128','docsCableDownstream','0','127'), ('5544','441','129','docsCableUpstream','0','128'), ('5545','441','130','a12MppSwitch','0','129'), ('5546','441','131','tunnel','0','130'), ('5547','441','132','coffee','0','131'), ('5548','441','133','ces','0','132'), ('5549','441','134','atmSubInterface','0','133'), ('5550','441','135','l2vlan','0','134'), ('5551','441','136','l3ipvlan','0','135'), ('5552','441','137','l3ipxvlan','0','136'), ('5553','441','138','digitalPowerline','0','137'), ('5554','441','139','mediaMailOverIp','0','138'), ('5555','441','140','dtm','0','139'), ('5556','441','141','dcn','0','140'), ('5557','441','142','ipForward','0','141'), ('5558','441','143','msdsl','0','142'), ('5559','441','144','ieee1394','0','143'), ('5560','441','145','if-gsn','0','144'), ('5561','441','146','dvbRccMacLayer','0','145'), ('5562','441','147','dvbRccDownstream','0','146'), ('5563','441','148','dvbRccUpstream','0','147'), ('5564','441','149','atmVirtual','0','148'), ('5565','441','150','mplsTunnel','0','149'), ('5566','441','151','srp','0','150'), ('5567','441','152','voiceOverAtm','0','151'), ('5568','441','153','voiceOverFrameRelay','0','152'), ('5569','441','154','idsl','0','153'), ('5570','441','155','compositeLink','0','154'), ('5571','441','156','ss7SigLink','0','155'), ('5572','441','157','propWirelessP2P','0','156'), ('5573','441','158','frForward','0','157'), ('5574','441','159','rfc1483','0','158'), ('5575','441','160','usb','0','159'), ('5576','441','161','ieee8023adLag','0','160'), ('5577','441','162','bgppolicyaccounting','0','161'), ('5578','441','163','frf16MfrBundle','0','162'), ('5579','441','164','h323Gatekeeper','0','163'), ('5580','441','165','h323Proxy','0','164'), ('5581','441','166','mpls','0','165'), ('5582','441','167','mfSigLink','0','166'), ('5583','441','168','hdsl2','0','167'), ('5584','441','169','shdsl','0','168'), ('5585','441','170','ds1FDL','0','169'), ('5586','441','171','pos','0','170'), ('5587','441','172','dvbAsiIn','0','171'), ('5588','441','173','dvbAsiOut','0','172'), ('5589','441','174','plc','0','173'), ('5590','441','175','nfas','0','174'), ('5591','441','176','tr008','0','175'), ('5592','441','177','gr303RDT','0','176'), ('5593','441','178','gr303IDT','0','177'), ('5594','441','179','isup','0','178'), ('5595','441','180','propDocsWirelessMaclayer','0','179'), ('5596','441','181','propDocsWirelessDownstream','0','180'), ('5597','441','182','propDocsWirelessUpstream','0','181'), ('5598','441','183','hiperlan2','0','182'), ('5599','441','184','propBWAp2Mp','0','183'), ('5600','441','185','sonetOverheadChannel','0','184'), ('5601','441','186','digitalWrapperOverheadChannel','0','185'), ('5602','441','187','aal2','0','186'), ('5603','441','188','radioMAC','0','187'), ('5604','441','189','atmRadio','0','188'), ('5605','441','190','imt','0','189'), ('5606','441','191','mvl','0','190'), ('5607','441','192','reachDSL','0','191'), ('5608','441','193','frDlciEndPt','0','192'), ('5609','441','194','atmVciEndPt','0','193'), ('5610','441','195','opticalChannel','0','194'), ('5611','441','196','opticalTransport','0','195'), ('5612','441','197','propAtm','0','196'), ('5613','441','198','voiceOverCable','0','197'), ('5614','441','199','infiniband','0','198'), ('5615','441','200','teLink','0','199'), ('5616','441','201','q2931','0','200'), ('5617','441','202','virtualTg','0','201'), ('5618','441','203','sipTg','0','202'), ('5619','441','204','sipSig','0','203'), ('5620','441','205','docsCableUpstreamChannel','0','204'), ('5621','441','206','econet','0','205'), ('5622','441','207','pon155','0','206'), ('5623','441','208','pon622','0','207'), ('5624','441','209','bridge','0','208'), ('5625','441','210','linegroup','0','209'), ('5626','441','211','voiceEMFGD','0','210'), ('5627','441','212','voiceFGDEANA','0','211'), ('5628','441','213','voiceDID','0','212'), ('5629','441','214','mpegTransport','0','213'), ('5630','441','215','sixToFour','0','214'), ('5631','441','216','gtp','0','215'), ('5632','441','217','pdnEtherLoop1','0','216'), ('5633','441','218','pdnEtherLoop2','0','217'), ('5634','441','219','opticalChannelGroup','0','218'), ('5635','441','220','homepna','0','219'), ('5636','441','221','gfp','0','220'), ('5637','441','222','ciscoISLvlan','0','221'), ('5638','441','223','actelisMetaLOOP','0','222'), ('5639','441','224','fcipLink','0','223'), ('5640','441','225','rpr','0','224'), ('5641','441','226','qam','0','225'), ('5642','441','227','lmp','0','226'), ('5643','441','228','cblVectaStar','0','227'), ('5644','441','229','docsCableMCmtsDownstream','0','228'), ('5645','441','230','adsl2','0','229'), ('5646','441','231','macSecControlledIF','0','230'), ('5647','441','232','macSecUncontrolledIF','0','231'), ('5648','441','233','aviciOpticalEther','0','232'), ('5649','441','234','atmbond','0','233'), ('5650','441','235','voiceFGDOS','0','234'), ('5651','441','236','mocaVersion1','0','235'), ('5652','441','237','ieee80216WMAN','0','236'), ('5653','441','238','adsl2plus','0','237'), ('5654','441','239','dvbRcsMacLayer','0','238'), ('5655','441','240','dvbTdm','0','239'), ('5656','441','241','dvbRcsTdma','0','240'), ('5657','441','242','x86Laps','0','241'), ('5658','441','243','wwanPP','0','242'), ('5659','441','244','wwanPP2','0','243'), ('5660','441','245','voiceEBS','0','244'), ('5661','441','246','ifPwType','0','245'), ('5662','441','247','ilan','0','246'), ('5663','441','248','pip','0','247'), ('5664','441','249','aluELP','0','248'), ('5665','441','250','gpon','0','249'), ('5666','441','251','vdsl2','0','250'), ('5667','441','252','capwapDot11Profile','0','251'), ('5668','441','253','capwapDot11Bss','0','252'), ('5669','441','254','capwapWtpVirtualRadio','0','253'), ('5670','441','255','bits','0','254'), ('5671','441','256','docsCableUpstreamRfPort','0','255'), ('5672','441','257','cableDownstreamRfPort','0','256'), ('5673','441','258','vmwareVirtualNic','0','257'), ('5674','441','259','ieee802154','0','258'), ('5675','441','260','otnOdu','0','259'), ('5676','441','261','otnOtu','0','260'), ('5677','441','262','ifVfiType','0','261'), ('5678','441','263','g9981','0','262'), ('5679','441','264','g9982','0','263'), ('5680','441','265','g9983','0','264'), ('5681','441','266','aluEpon','0','265'), ('5682','441','267','aluEponOnu','0','266'), ('5683','441','268','aluEponPhysicalUni','0','267'), ('5684','441','269','aluEponLogicalLink','0','268'), ('5685','441','270','aluGponOnu','0','269'), ('5686','441','271','aluGponPhysicalUni','0','270'), ('5687','441','272','vmwareNicTeam','0','271'), ('5688','441','277','docsOfdmDownstream','0','272'), ('5689','441','278','docsOfdmaUpstream','0','273'), ('5690','441','279','gfast','0','274'), ('5691','441','280','sdci','0','275'), ('5692','441','281','xboxWireless','0','276'), ('5693','441','282','fastdsl','0','277'), ('5694','441','283','docsCableScte55d1FwdOob','0','278'), ('5695','441','284','docsCableScte55d1RetOob','0','279'), ('5696','441','285','docsCableScte55d2DsOob','0','280'), ('5697','441','286','docsCableScte55d2UsOob','0','281'), ('5698','441','287','docsCableNdf','0','282'), ('5699','441','288','docsCableNdr','0','283'), ('5700','441','289','ptm','0','284'), ('5701','441','290','ghn','0','285'), ('5702','442','0','not available','0','0'), ('5703','442','1','available','0','1'), ('5704','442','2','unknown','0','2'), ('5708','444','1','Unknown','0','0'), ('5709','444','2','Ready','0','1'), ('5710','444','3','Failed','0','2'), ('5711','444','4','Degraded','0','3'), ('5712','444','5','Missing','0','4'), ('5713','444','6','Charging','0','5'), ('5714','444','7','Below threshold','0','6'), ('5715','445','0','ok','0','0'), ('5716','445','1','failed','0','1'), ('5717','446','1','other','0','0'), ('5718','446','2','unknown','0','1'), ('5719','446','3','ok','0','2'), ('5720','446','4','nonCritical','0','3'), ('5721','446','5','critical','0','4'), ('5722','446','6','nonRecoverable','0','5'), ('5723','447','1','other','0','0'), ('5724','447','2','unknown','0','1'), ('5725','447','3','ok','0','2'), ('5726','447','4','nonCritical','0','3'), ('5727','447','5','critical','0','4'), ('5728','447','6','nonRecoverable','0','5'), ('5729','448','1','Unknown','0','0'), ('5730','448','2','HDD','0','1'), ('5731','448','3','SSD','0','2'), ('5732','449','1','other','0','0'), ('5733','449','2','unknown','0','1'), ('5734','449','3','ok','0','2'), ('5735','449','4','nonCriticalUpper','0','3'), ('5736','449','5','criticalUpper','0','4'), ('5737','449','6','nonRecoverableUpper','0','5'), ('5738','449','7','nonCriticalLower','0','6'), ('5739','449','8','criticalLower','0','7'), ('5740','449','9','nonRecoverableLower','0','8'), ('5741','449','10','failed','0','9'), ('5742','450','1','Other','0','0'), ('5743','450','2','RAID-0','0','1'), ('5744','450','3','RAID-1','0','2'), ('5745','450','4','RAID-5','0','3'), ('5746','450','5','RAID-6','0','4'), ('5747','450','6','RAID-10','0','5'), ('5748','450','7','RAID-50','0','6'), ('5749','450','8','RAID-60','0','7'), ('5750','450','9','Concatenated RAID 1','0','8'), ('5751','450','10','Concatenated RAID 5','0','9'), ('5752','451','1','Not applicable','0','0'), ('5753','451','2','Reconstructing','0','1'), ('5754','451','3','Resynching','0','2'), ('5755','451','4','Initializing','0','3'), ('5756','451','5','Background init','0','4'), ('5757','452','1','No Read Ahead','0','0'), ('5758','452','2','Read Ahead','0','1'), ('5759','452','3','Adaptive Read Ahead','0','2'), ('5760','453','1','Unknown','0','0'), ('5761','453','2','Online','0','1'), ('5762','453','3','Failed','0','2'), ('5763','453','4','Degraded','0','3'), ('5764','454','1','Write Through','0','0'), ('5765','454','2','Write Back','0','1'), ('5766','454','3','Force Write Back','0','2'), ('5767','455','0','not available','0','0'), ('5768','455','1','available','0','1'), ('5769','455','2','unknown','0','2'), ('5773','457','1','Unknown','0','0'), ('5774','457','2','Ready','0','1'), ('5775','457','3','Failed','0','2'), ('5776','457','4','Degraded','0','3'), ('5777','457','5','Missing','0','4'), ('5778','457','6','Charging','0','5'), ('5779','457','7','Below threshold','0','6'), ('5780','458','0','ok','0','0'), ('5781','458','1','failed','0','1'), ('5782','459','1','other','0','0'), ('5783','459','2','unknown','0','1'), ('5784','459','3','ok','0','2'), ('5785','459','4','nonCritical','0','3'), ('5786','459','5','critical','0','4'), ('5787','459','6','nonRecoverable','0','5'), ('5788','460','1','other','0','0'), ('5789','460','2','unknown','0','1'), ('5790','460','3','ok','0','2'), ('5791','460','4','nonCritical','0','3'), ('5792','460','5','critical','0','4'), ('5793','460','6','nonRecoverable','0','5'), ('5794','461','1','Unknown','0','0'), ('5795','461','2','HDD','0','1'), ('5796','461','3','SSD','0','2'), ('5797','462','1','other','0','0'), ('5798','462','2','unknown','0','1'), ('5799','462','3','ok','0','2'), ('5800','462','4','nonCriticalUpper','0','3'), ('5801','462','5','criticalUpper','0','4'), ('5802','462','6','nonRecoverableUpper','0','5'), ('5803','462','7','nonCriticalLower','0','6'), ('5804','462','8','criticalLower','0','7'), ('5805','462','9','nonRecoverableLower','0','8'), ('5806','462','10','failed','0','9'), ('5807','463','1','Other','0','0'), ('5808','463','2','RAID-0','0','1'), ('5809','463','3','RAID-1','0','2'), ('5810','463','4','RAID-5','0','3'), ('5811','463','5','RAID-6','0','4'), ('5812','463','6','RAID-10','0','5'), ('5813','463','7','RAID-50','0','6'), ('5814','463','8','RAID-60','0','7'), ('5815','463','9','Concatenated RAID 1','0','8'), ('5816','463','10','Concatenated RAID 5','0','9'), ('5817','464','1','Not applicable','0','0'), ('5818','464','2','Reconstructing','0','1'), ('5819','464','3','Resynching','0','2'), ('5820','464','4','Initializing','0','3'), ('5821','464','5','Background init','0','4'), ('5822','465','1','No Read Ahead','0','0'), ('5823','465','2','Read Ahead','0','1'), ('5824','465','3','Adaptive Read Ahead','0','2'), ('5825','466','1','Unknown','0','0'), ('5826','466','2','Online','0','1'), ('5827','466','3','Failed','0','2'), ('5828','466','4','Degraded','0','3'), ('5829','467','1','Write Through','0','0'), ('5830','467','2','Write Back','0','1'), ('5831','467','3','Force Write Back','0','2'), ('5832','468','0','not available','0','0'), ('5833','468','1','available','0','1'), ('5834','468','2','unknown','0','2'), ('5885','479','1','Unknown','0','0'), ('5886','479','2','Ready','0','1'), ('5887','479','3','Failed','0','2'), ('5888','479','4','Degraded','0','3'), ('5889','479','5','Missing','0','4'), ('5890','479','6','Charging','0','5'), ('5891','479','7','Below threshold','0','6'), ('5892','480','0','ok','0','0'), ('5893','480','1','failed','0','1'), ('5894','481','1','other','0','0'), ('5895','481','2','unknown','0','1'), ('5896','481','3','ok','0','2'), ('5897','481','4','nonCritical','0','3'), ('5898','481','5','critical','0','4'), ('5899','481','6','nonRecoverable','0','5'), ('5900','482','1','other','0','0'), ('5901','482','2','unknown','0','1'), ('5902','482','3','ok','0','2'), ('5903','482','4','nonCritical','0','3'), ('5904','482','5','critical','0','4'), ('5905','482','6','nonRecoverable','0','5'), ('5906','483','1','Unknown','0','0'), ('5907','483','2','HDD','0','1'), ('5908','483','3','SSD','0','2'), ('5909','484','1','other','0','0'), ('5910','484','2','unknown','0','1'), ('5911','484','3','ok','0','2'), ('5912','484','4','nonCriticalUpper','0','3'), ('5913','484','5','criticalUpper','0','4'), ('5914','484','6','nonRecoverableUpper','0','5'), ('5915','484','7','nonCriticalLower','0','6'), ('5916','484','8','criticalLower','0','7'), ('5917','484','9','nonRecoverableLower','0','8'), ('5918','484','10','failed','0','9'), ('5919','485','1','Other','0','0'), ('5920','485','2','RAID-0','0','1'), ('5921','485','3','RAID-1','0','2'), ('5922','485','4','RAID-5','0','3'), ('5923','485','5','RAID-6','0','4'), ('5924','485','6','RAID-10','0','5'), ('5925','485','7','RAID-50','0','6'), ('5926','485','8','RAID-60','0','7'), ('5927','485','9','Concatenated RAID 1','0','8'), ('5928','485','10','Concatenated RAID 5','0','9'), ('5929','486','1','Not applicable','0','0'), ('5930','486','2','Reconstructing','0','1'), ('5931','486','3','Resynching','0','2'), ('5932','486','4','Initializing','0','3'), ('5933','486','5','Background init','0','4'), ('5934','487','1','No Read Ahead','0','0'), ('5935','487','2','Read Ahead','0','1'), ('5936','487','3','Adaptive Read Ahead','0','2'), ('5937','488','1','Unknown','0','0'), ('5938','488','2','Online','0','1'), ('5939','488','3','Failed','0','2'), ('5940','488','4','Degraded','0','3'), ('5941','489','1','Write Through','0','0'), ('5942','489','2','Write Back','0','1'), ('5943','489','3','Force Write Back','0','2'), ('5944','490','0','not available','0','0'), ('5945','490','1','available','0','1'), ('5946','490','2','unknown','0','2'), ('5950','492','1','Unknown','0','0'), ('5951','492','2','Ready','0','1'), ('5952','492','3','Failed','0','2'), ('5953','492','4','Degraded','0','3'), ('5954','492','5','Missing','0','4'), ('5955','492','6','Charging','0','5'), ('5956','492','7','Below threshold','0','6'), ('5957','493','0','ok','0','0'), ('5958','493','1','failed','0','1'), ('5959','494','1','other','0','0'), ('5960','494','2','unknown','0','1'), ('5961','494','3','ok','0','2'), ('5962','494','4','nonCritical','0','3'), ('5963','494','5','critical','0','4'), ('5964','494','6','nonRecoverable','0','5'), ('5965','495','1','other','0','0'), ('5966','495','2','unknown','0','1'), ('5967','495','3','ok','0','2'), ('5968','495','4','nonCritical','0','3'), ('5969','495','5','critical','0','4'), ('5970','495','6','nonRecoverable','0','5'), ('5971','496','1','Unknown','0','0'), ('5972','496','2','HDD','0','1'), ('5973','496','3','SSD','0','2'), ('5974','497','1','other','0','0'), ('5975','497','2','unknown','0','1'), ('5976','497','3','ok','0','2'), ('5977','497','4','nonCriticalUpper','0','3'), ('5978','497','5','criticalUpper','0','4'), ('5979','497','6','nonRecoverableUpper','0','5'), ('5980','497','7','nonCriticalLower','0','6'), ('5981','497','8','criticalLower','0','7'), ('5982','497','9','nonRecoverableLower','0','8'), ('5983','497','10','failed','0','9'), ('5984','498','1','Other','0','0'), ('5985','498','2','RAID-0','0','1'), ('5986','498','3','RAID-1','0','2'), ('5987','498','4','RAID-5','0','3'), ('5988','498','5','RAID-6','0','4'), ('5989','498','6','RAID-10','0','5'), ('5990','498','7','RAID-50','0','6'), ('5991','498','8','RAID-60','0','7'), ('5992','498','9','Concatenated RAID 1','0','8'), ('5993','498','10','Concatenated RAID 5','0','9'), ('5994','499','1','Not applicable','0','0'), ('5995','499','2','Reconstructing','0','1'), ('5996','499','3','Resynching','0','2'), ('5997','499','4','Initializing','0','3'), ('5998','499','5','Background init','0','4'), ('5999','500','1','No Read Ahead','0','0'), ('6000','500','2','Read Ahead','0','1'), ('6001','500','3','Adaptive Read Ahead','0','2'), ('6002','501','1','Unknown','0','0'), ('6003','501','2','Online','0','1'), ('6004','501','3','Failed','0','2'), ('6005','501','4','Degraded','0','3'), ('6006','502','1','Write Through','0','0'), ('6007','502','2','Write Back','0','1'), ('6008','502','3','Force Write Back','0','2'), ('6009','503','0','not available','0','0'), ('6010','503','1','available','0','1'), ('6011','503','2','unknown','0','2'), ('6012','504','1','other','0','0'), ('6013','504','2','ok','0','1'), ('6014','504','3','degraded','0','2'), ('6015','504','4','failed','0','3'), ('6016','505','1','other','0','0'), ('6017','505','2','unknown','0','1'), ('6018','505','3','system','0','2'), ('6019','505','4','systemBoard','0','3'), ('6020','505','5','ioBoard','0','4'), ('6021','505','6','cpu','0','5'), ('6022','505','7','memory','0','6'), ('6023','505','8','storage','0','7'), ('6024','505','9','removableMedia','0','8'), ('6025','505','10','powerSupply','0','9'), ('6026','505','11','ambient','0','10'), ('6027','505','12','chassis','0','11'), ('6028','505','13','bridgeCard','0','12'), ('6029','506','1','Other','0','0'), ('6030','506','2','Ok','0','1'), ('6031','506','3','Recharging','0','2'), ('6032','506','4','Failed','0','3'), ('6033','506','5','Degraded','0','4'), ('6034','506','6','Not Present','0','5'), ('6035','506','7','Capacitor failed','0','6'), ('6036','507','1','other','0','0'), ('6037','507','2','invalid','0','1'), ('6038','507','3','enabled','0','2'), ('6039','507','4','tmpDisabled','0','3'), ('6040','507','5','permDisabled','0','4'), ('6041','507','6','cacheModFlashMemNotAttached','0','5'), ('6042','507','7','cacheModDegradedFailsafeSpeed','0','6'), ('6043','507','8','cacheModCriticalFailure','0','7'), ('6044','507','9','cacheReadCacheNotMapped','0','8'), ('6045','508','1','other','0','0'), ('6046','508','2','ida','0','1'), ('6047','508','3','idaExpansion','0','2'), ('6048','508','4','ida-2','0','3'), ('6049','508','5','smart','0','4'), ('6050','508','6','smart-2e','0','5'), ('6051','508','7','smart-2p','0','6'), ('6052','508','8','smart-2sl','0','7'), ('6053','508','9','smart-3100es','0','8'), ('6054','508','10','smart-3200','0','9'), ('6055','508','11','smart-2dh','0','10'), ('6056','508','12','smart-221','0','11'), ('6057','508','13','sa-4250es','0','12'), ('6058','508','14','sa-4200','0','13'), ('6059','508','15','sa-integrated','0','14'), ('6060','508','16','sa-431','0','15'), ('6061','508','17','sa-5300','0','16'), ('6062','508','18','raidLc2','0','17'), ('6063','508','19','sa-5i','0','18'), ('6064','508','20','sa-532','0','19'), ('6065','508','21','sa-5312','0','20'), ('6066','508','22','sa-641','0','21'), ('6067','508','23','sa-642','0','22'), ('6068','508','24','sa-6400','0','23'), ('6069','508','25','sa-6400em','0','24'), ('6070','508','26','sa-6i','0','25'), ('6071','508','27','sa-generic','0','26'), ('6072','508','29','sa-p600','0','27'), ('6073','508','30','sa-p400','0','28'), ('6074','508','31','sa-e200','0','29'), ('6075','508','32','sa-e200i','0','30'), ('6076','508','33','sa-p400i','0','31'), ('6077','508','34','sa-p800','0','32'), ('6078','508','35','sa-e500','0','33'), ('6079','508','36','sa-p700m','0','34'), ('6080','508','37','sa-p212','0','35'), ('6081','508','38','sa-p410','0','36'), ('6082','508','39','sa-p410i','0','37'), ('6083','508','40','sa-p411','0','38'), ('6084','508','41','sa-b110i','0','39'), ('6085','508','42','sa-p712m','0','40'), ('6086','508','43','sa-p711m','0','41'), ('6087','508','44','sa-p812','0','42'), ('6088','508','45','sw-1210m','0','43'), ('6089','508','46','sa-p220i','0','44'), ('6090','508','47','sa-p222','0','45'), ('6091','508','48','sa-p420','0','46'), ('6092','508','49','sa-p420i','0','47'), ('6093','508','50','sa-p421','0','48'), ('6094','508','51','sa-b320i','0','49'), ('6095','508','52','sa-p822','0','50'), ('6096','508','53','sa-p721m','0','51'), ('6097','508','54','sa-b120i','0','52'), ('6098','508','55','hps-1224','0','53'), ('6099','508','56','hps-1228','0','54'), ('6100','508','57','hps-1228m','0','55'), ('6101','508','58','sa-p822se','0','56'), ('6102','508','59','hps-1224e','0','57'), ('6103','508','60','hps-1228e','0','58'), ('6104','508','61','hps-1228em','0','59'), ('6105','508','62','sa-p230i','0','60'), ('6106','508','63','sa-p430i','0','61'), ('6107','508','64','sa-p430','0','62'), ('6108','508','65','sa-p431','0','63'), ('6109','508','66','sa-p731m','0','64'), ('6110','508','67','sa-p830i','0','65'), ('6111','508','68','sa-p830','0','66'), ('6112','508','69','sa-p831','0','67'), ('6113','508','70','sa-p530','0','68'), ('6114','508','71','sa-p531','0','69'), ('6115','508','72','sa-p244br','0','70'), ('6116','508','73','sa-p246br','0','71'), ('6117','508','74','sa-p440','0','72'), ('6118','508','75','sa-p440ar','0','73'), ('6119','508','76','sa-p441','0','74'), ('6120','508','77','sa-p741m','0','75'), ('6121','508','78','sa-p840','0','76'), ('6122','508','79','sa-p841','0','77'), ('6123','508','80','sh-h240ar','0','78'), ('6124','508','81','sh-h244br','0','79'), ('6125','508','82','sh-h240','0','80'), ('6126','508','83','sh-h241','0','81'), ('6127','508','84','sa-b140i','0','82'), ('6128','508','85','sh-generic','0','83'), ('6129','508','86','sa-p240nr','0','84'), ('6130','508','87','sh-h240nr','0','85'), ('6131','508','88','sa-p840ar','0','86'), ('6132','508','89','sa-p542d','0','87'), ('6133','508','90','s100i','0','88'), ('6134','508','91','e208i-p','0','89'), ('6135','508','92','e208i-a','0','90'), ('6136','508','93','e208i-c','0','91'), ('6137','508','94','e208e-p','0','92'), ('6138','508','95','p204i-b','0','93'), ('6139','508','96','p204i-c','0','94'), ('6140','508','97','p408i-p','0','95'), ('6141','508','98','p408i-a','0','96'), ('6142','508','99','p408e-p','0','97'), ('6143','508','100','p408i-c','0','98'), ('6144','508','101','p408e-m','0','99'), ('6145','508','102','p416ie-m','0','100'), ('6146','508','103','p816i-a','0','101'), ('6147','508','104','p408i-sb','0','102'), ('6148','509','0','other','0','0'), ('6149','509','2','none','0','1'), ('6150','509','3','RAID-1/RAID-10','0','2'), ('6151','509','4','RAID-4','0','3'), ('6152','509','5','RAID-5','0','4'), ('6153','509','7','RAID-6','0','5'), ('6154','509','8','RAID-50','0','6'), ('6155','509','9','RAID-60','0','7'), ('6156','509','10','RAID-1 ADM','0','8'), ('6157','509','11','RAID-10 ADM','0','9'), ('6158','510','1','other','0','0'), ('6159','510','2','ok','0','1'), ('6160','510','3','failed','0','2'), ('6161','510','4','unconfigured','0','3'), ('6162','510','5','recovering','0','4'), ('6163','510','6','readyForRebuild','0','5'), ('6164','510','7','rebuilding','0','6'), ('6165','510','8','wrongDrive','0','7'), ('6166','510','9','badConnect','0','8'), ('6167','510','10','overheating','0','9'), ('6168','510','11','shutdown','0','10'), ('6169','510','12','expanding','0','11'), ('6170','510','13','notAvailable','0','12'), ('6171','510','14','queuedForExpansion','0','13'), ('6172','510','15','multipathAccessDegraded','0','14'), ('6173','510','16','erasing','0','15'), ('6174','510','17','predictiveSpareRebuildReady','0','16'), ('6175','510','18','rapidParityInitInProgress','0','17'), ('6176','510','19','rapidParityInitPending','0','18'), ('6177','510','20','noAccessEncryptedNoCntlrKey','0','19'), ('6178','510','21','unencryptedToEncryptedInProgress','0','20'), ('6179','510','22','newLogDrvKeyRekeyInProgress','0','21'), ('6180','510','23','noAccessEncryptedCntlrEncryptnNotEnbld','0','22'), ('6181','510','24','unencryptedToEncryptedNotStarted','0','23'), ('6182','510','25','newLogDrvKeyRekeyRequestReceived','0','24'), ('6183','511','1','Other','0','0'), ('6184','511','2','rotatingPlatters','0','1'), ('6185','511','3','solidState','0','2'), ('6186','512','1','other','0','0'), ('6187','512','2','ok','0','1'), ('6188','512','3','replaceDrive','0','2'), ('6189','512','4','replaceDriveSSDWearOut','0','3'), ('6190','513','1','other','0','0'), ('6191','513','2','ok','0','1'), ('6192','513','3','failed','0','2'), ('6193','513','4','predictiveFailure','0','3'), ('6194','514','1','unknown','0','0'), ('6195','514','2','ok','0','1'), ('6196','514','3','generalFailure','0','2'), ('6197','514','4','linkFailure','0','3'), ('6198','515','1','other','0','0'), ('6199','515','2','ok','0','1'), ('6200','515','3','degraded','0','2'), ('6201','515','4','failed','0','3'), ('6202','516','0','not available','0','0'), ('6203','516','1','available','0','1'), ('6204','516','2','unknown','0','2'), ('6205','517','1','other','0','0'), ('6206','517','2','ok','0','1'), ('6207','517','3','degraded','0','2'), ('6208','517','4','failed','0','3'), ('6209','518','1','other','0','0'), ('6210','518','2','unknown','0','1'), ('6211','518','3','system','0','2'), ('6212','518','4','systemBoard','0','3'), ('6213','518','5','ioBoard','0','4'), ('6214','518','6','cpu','0','5'), ('6215','518','7','memory','0','6'), ('6216','518','8','storage','0','7'), ('6217','518','9','removableMedia','0','8'), ('6218','518','10','powerSupply','0','9'), ('6219','518','11','ambient','0','10'), ('6220','518','12','chassis','0','11'), ('6221','518','13','bridgeCard','0','12'), ('6222','519','1','Other','0','0'), ('6223','519','2','Ok','0','1'), ('6224','519','3','Recharging','0','2'), ('6225','519','4','Failed','0','3'), ('6226','519','5','Degraded','0','4'), ('6227','519','6','Not Present','0','5'), ('6228','519','7','Capacitor failed','0','6'), ('6229','520','1','other','0','0'), ('6230','520','2','invalid','0','1'), ('6231','520','3','enabled','0','2'), ('6232','520','4','tmpDisabled','0','3'), ('6233','520','5','permDisabled','0','4'), ('6234','520','6','cacheModFlashMemNotAttached','0','5'), ('6235','520','7','cacheModDegradedFailsafeSpeed','0','6'), ('6236','520','8','cacheModCriticalFailure','0','7'), ('6237','520','9','cacheReadCacheNotMapped','0','8'), ('6238','521','1','other','0','0'), ('6239','521','2','ida','0','1'), ('6240','521','3','idaExpansion','0','2'), ('6241','521','4','ida-2','0','3'), ('6242','521','5','smart','0','4'), ('6243','521','6','smart-2e','0','5'), ('6244','521','7','smart-2p','0','6'), ('6245','521','8','smart-2sl','0','7'), ('6246','521','9','smart-3100es','0','8'), ('6247','521','10','smart-3200','0','9'), ('6248','521','11','smart-2dh','0','10'), ('6249','521','12','smart-221','0','11'), ('6250','521','13','sa-4250es','0','12'), ('6251','521','14','sa-4200','0','13'), ('6252','521','15','sa-integrated','0','14'), ('6253','521','16','sa-431','0','15'), ('6254','521','17','sa-5300','0','16'), ('6255','521','18','raidLc2','0','17'), ('6256','521','19','sa-5i','0','18'), ('6257','521','20','sa-532','0','19'), ('6258','521','21','sa-5312','0','20'), ('6259','521','22','sa-641','0','21'), ('6260','521','23','sa-642','0','22'), ('6261','521','24','sa-6400','0','23'), ('6262','521','25','sa-6400em','0','24'), ('6263','521','26','sa-6i','0','25'), ('6264','521','27','sa-generic','0','26'), ('6265','521','29','sa-p600','0','27'), ('6266','521','30','sa-p400','0','28'), ('6267','521','31','sa-e200','0','29'), ('6268','521','32','sa-e200i','0','30'), ('6269','521','33','sa-p400i','0','31'), ('6270','521','34','sa-p800','0','32'), ('6271','521','35','sa-e500','0','33'), ('6272','521','36','sa-p700m','0','34'), ('6273','521','37','sa-p212','0','35'), ('6274','521','38','sa-p410','0','36'), ('6275','521','39','sa-p410i','0','37'), ('6276','521','40','sa-p411','0','38'), ('6277','521','41','sa-b110i','0','39'), ('6278','521','42','sa-p712m','0','40'), ('6279','521','43','sa-p711m','0','41'), ('6280','521','44','sa-p812','0','42'), ('6281','521','45','sw-1210m','0','43'), ('6282','521','46','sa-p220i','0','44'), ('6283','521','47','sa-p222','0','45'), ('6284','521','48','sa-p420','0','46'), ('6285','521','49','sa-p420i','0','47'), ('6286','521','50','sa-p421','0','48'), ('6287','521','51','sa-b320i','0','49'), ('6288','521','52','sa-p822','0','50'), ('6289','521','53','sa-p721m','0','51'), ('6290','521','54','sa-b120i','0','52'), ('6291','521','55','hps-1224','0','53'), ('6292','521','56','hps-1228','0','54'), ('6293','521','57','hps-1228m','0','55'), ('6294','521','58','sa-p822se','0','56'), ('6295','521','59','hps-1224e','0','57'), ('6296','521','60','hps-1228e','0','58'), ('6297','521','61','hps-1228em','0','59'), ('6298','521','62','sa-p230i','0','60'), ('6299','521','63','sa-p430i','0','61'), ('6300','521','64','sa-p430','0','62'), ('6301','521','65','sa-p431','0','63'), ('6302','521','66','sa-p731m','0','64'), ('6303','521','67','sa-p830i','0','65'), ('6304','521','68','sa-p830','0','66'), ('6305','521','69','sa-p831','0','67'), ('6306','521','70','sa-p530','0','68'), ('6307','521','71','sa-p531','0','69'), ('6308','521','72','sa-p244br','0','70'), ('6309','521','73','sa-p246br','0','71'), ('6310','521','74','sa-p440','0','72'), ('6311','521','75','sa-p440ar','0','73'), ('6312','521','76','sa-p441','0','74'), ('6313','521','77','sa-p741m','0','75'), ('6314','521','78','sa-p840','0','76'), ('6315','521','79','sa-p841','0','77'), ('6316','521','80','sh-h240ar','0','78'), ('6317','521','81','sh-h244br','0','79'), ('6318','521','82','sh-h240','0','80'), ('6319','521','83','sh-h241','0','81'), ('6320','521','84','sa-b140i','0','82'), ('6321','521','85','sh-generic','0','83'), ('6322','521','86','sa-p240nr','0','84'), ('6323','521','87','sh-h240nr','0','85'), ('6324','521','88','sa-p840ar','0','86'), ('6325','521','89','sa-p542d','0','87'), ('6326','521','90','s100i','0','88'), ('6327','521','91','e208i-p','0','89'), ('6328','521','92','e208i-a','0','90'), ('6329','521','93','e208i-c','0','91'), ('6330','521','94','e208e-p','0','92'), ('6331','521','95','p204i-b','0','93'), ('6332','521','96','p204i-c','0','94'), ('6333','521','97','p408i-p','0','95'), ('6334','521','98','p408i-a','0','96'), ('6335','521','99','p408e-p','0','97'), ('6336','521','100','p408i-c','0','98'), ('6337','521','101','p408e-m','0','99'), ('6338','521','102','p416ie-m','0','100'), ('6339','521','103','p816i-a','0','101'), ('6340','521','104','p408i-sb','0','102'), ('6341','522','0','other','0','0'), ('6342','522','2','none','0','1'), ('6343','522','3','RAID-1/RAID-10','0','2'), ('6344','522','4','RAID-4','0','3'), ('6345','522','5','RAID-5','0','4'), ('6346','522','7','RAID-6','0','5'), ('6347','522','8','RAID-50','0','6'), ('6348','522','9','RAID-60','0','7'), ('6349','522','10','RAID-1 ADM','0','8'), ('6350','522','11','RAID-10 ADM','0','9'), ('6351','523','1','other','0','0'), ('6352','523','2','ok','0','1'), ('6353','523','3','failed','0','2'), ('6354','523','4','unconfigured','0','3'), ('6355','523','5','recovering','0','4'), ('6356','523','6','readyForRebuild','0','5'), ('6357','523','7','rebuilding','0','6'), ('6358','523','8','wrongDrive','0','7'), ('6359','523','9','badConnect','0','8'), ('6360','523','10','overheating','0','9'), ('6361','523','11','shutdown','0','10'), ('6362','523','12','expanding','0','11'), ('6363','523','13','notAvailable','0','12'), ('6364','523','14','queuedForExpansion','0','13'), ('6365','523','15','multipathAccessDegraded','0','14'), ('6366','523','16','erasing','0','15'), ('6367','523','17','predictiveSpareRebuildReady','0','16'), ('6368','523','18','rapidParityInitInProgress','0','17'), ('6369','523','19','rapidParityInitPending','0','18'), ('6370','523','20','noAccessEncryptedNoCntlrKey','0','19'), ('6371','523','21','unencryptedToEncryptedInProgress','0','20'), ('6372','523','22','newLogDrvKeyRekeyInProgress','0','21'), ('6373','523','23','noAccessEncryptedCntlrEncryptnNotEnbld','0','22'), ('6374','523','24','unencryptedToEncryptedNotStarted','0','23'), ('6375','523','25','newLogDrvKeyRekeyRequestReceived','0','24'), ('6376','524','1','Other','0','0'), ('6377','524','2','rotatingPlatters','0','1'), ('6378','524','3','solidState','0','2'), ('6379','525','1','other','0','0'), ('6380','525','2','ok','0','1'), ('6381','525','3','replaceDrive','0','2'), ('6382','525','4','replaceDriveSSDWearOut','0','3'), ('6383','526','1','other','0','0'), ('6384','526','2','ok','0','1'), ('6385','526','3','failed','0','2'), ('6386','526','4','predictiveFailure','0','3'), ('6387','527','1','unknown','0','0'), ('6388','527','2','ok','0','1'), ('6389','527','3','generalFailure','0','2'), ('6390','527','4','linkFailure','0','3'), ('6391','528','1','other','0','0'), ('6392','528','2','ok','0','1'), ('6393','528','3','degraded','0','2'), ('6394','528','4','failed','0','3'), ('6395','529','0','not available','0','0'), ('6396','529','1','available','0','1'), ('6397','529','2','unknown','0','2'), ('6398','530','1','other','0','0'), ('6399','530','2','ok','0','1'), ('6400','530','3','degraded','0','2'), ('6401','530','4','failed','0','3'), ('6402','531','1','other','0','0'), ('6403','531','2','unknown','0','1'), ('6404','531','3','system','0','2'), ('6405','531','4','systemBoard','0','3'), ('6406','531','5','ioBoard','0','4'), ('6407','531','6','cpu','0','5'), ('6408','531','7','memory','0','6'), ('6409','531','8','storage','0','7'), ('6410','531','9','removableMedia','0','8'), ('6411','531','10','powerSupply','0','9'), ('6412','531','11','ambient','0','10'), ('6413','531','12','chassis','0','11'), ('6414','531','13','bridgeCard','0','12'), ('6415','532','1','Other','0','0'), ('6416','532','2','Ok','0','1'), ('6417','532','3','Recharging','0','2'), ('6418','532','4','Failed','0','3'), ('6419','532','5','Degraded','0','4'), ('6420','532','6','Not Present','0','5'), ('6421','532','7','Capacitor failed','0','6'), ('6422','533','1','other','0','0'), ('6423','533','2','invalid','0','1'), ('6424','533','3','enabled','0','2'), ('6425','533','4','tmpDisabled','0','3'), ('6426','533','5','permDisabled','0','4'), ('6427','533','6','cacheModFlashMemNotAttached','0','5'), ('6428','533','7','cacheModDegradedFailsafeSpeed','0','6'), ('6429','533','8','cacheModCriticalFailure','0','7'), ('6430','533','9','cacheReadCacheNotMapped','0','8'), ('6431','534','1','other','0','0'), ('6432','534','2','ida','0','1'), ('6433','534','3','idaExpansion','0','2'), ('6434','534','4','ida-2','0','3'), ('6435','534','5','smart','0','4'), ('6436','534','6','smart-2e','0','5'), ('6437','534','7','smart-2p','0','6'), ('6438','534','8','smart-2sl','0','7'), ('6439','534','9','smart-3100es','0','8'), ('6440','534','10','smart-3200','0','9'), ('6441','534','11','smart-2dh','0','10'), ('6442','534','12','smart-221','0','11'), ('6443','534','13','sa-4250es','0','12'), ('6444','534','14','sa-4200','0','13'), ('6445','534','15','sa-integrated','0','14'), ('6446','534','16','sa-431','0','15'), ('6447','534','17','sa-5300','0','16'), ('6448','534','18','raidLc2','0','17'), ('6449','534','19','sa-5i','0','18'), ('6450','534','20','sa-532','0','19'), ('6451','534','21','sa-5312','0','20'), ('6452','534','22','sa-641','0','21'), ('6453','534','23','sa-642','0','22'), ('6454','534','24','sa-6400','0','23'), ('6455','534','25','sa-6400em','0','24'), ('6456','534','26','sa-6i','0','25'), ('6457','534','27','sa-generic','0','26'), ('6458','534','29','sa-p600','0','27'), ('6459','534','30','sa-p400','0','28'), ('6460','534','31','sa-e200','0','29'), ('6461','534','32','sa-e200i','0','30'), ('6462','534','33','sa-p400i','0','31'), ('6463','534','34','sa-p800','0','32'), ('6464','534','35','sa-e500','0','33'), ('6465','534','36','sa-p700m','0','34'), ('6466','534','37','sa-p212','0','35'), ('6467','534','38','sa-p410','0','36'), ('6468','534','39','sa-p410i','0','37'), ('6469','534','40','sa-p411','0','38'), ('6470','534','41','sa-b110i','0','39'), ('6471','534','42','sa-p712m','0','40'), ('6472','534','43','sa-p711m','0','41'), ('6473','534','44','sa-p812','0','42'), ('6474','534','45','sw-1210m','0','43'), ('6475','534','46','sa-p220i','0','44'), ('6476','534','47','sa-p222','0','45'), ('6477','534','48','sa-p420','0','46'), ('6478','534','49','sa-p420i','0','47'), ('6479','534','50','sa-p421','0','48'), ('6480','534','51','sa-b320i','0','49'), ('6481','534','52','sa-p822','0','50'), ('6482','534','53','sa-p721m','0','51'), ('6483','534','54','sa-b120i','0','52'), ('6484','534','55','hps-1224','0','53'), ('6485','534','56','hps-1228','0','54'), ('6486','534','57','hps-1228m','0','55'), ('6487','534','58','sa-p822se','0','56'), ('6488','534','59','hps-1224e','0','57'), ('6489','534','60','hps-1228e','0','58'), ('6490','534','61','hps-1228em','0','59'), ('6491','534','62','sa-p230i','0','60'), ('6492','534','63','sa-p430i','0','61'), ('6493','534','64','sa-p430','0','62'), ('6494','534','65','sa-p431','0','63'), ('6495','534','66','sa-p731m','0','64'), ('6496','534','67','sa-p830i','0','65'), ('6497','534','68','sa-p830','0','66'), ('6498','534','69','sa-p831','0','67'), ('6499','534','70','sa-p530','0','68'), ('6500','534','71','sa-p531','0','69'), ('6501','534','72','sa-p244br','0','70'), ('6502','534','73','sa-p246br','0','71'), ('6503','534','74','sa-p440','0','72'), ('6504','534','75','sa-p440ar','0','73'), ('6505','534','76','sa-p441','0','74'), ('6506','534','77','sa-p741m','0','75'), ('6507','534','78','sa-p840','0','76'), ('6508','534','79','sa-p841','0','77'), ('6509','534','80','sh-h240ar','0','78'), ('6510','534','81','sh-h244br','0','79'), ('6511','534','82','sh-h240','0','80'), ('6512','534','83','sh-h241','0','81'), ('6513','534','84','sa-b140i','0','82'), ('6514','534','85','sh-generic','0','83'), ('6515','534','86','sa-p240nr','0','84'), ('6516','534','87','sh-h240nr','0','85'), ('6517','534','88','sa-p840ar','0','86'), ('6518','534','89','sa-p542d','0','87'), ('6519','534','90','s100i','0','88'), ('6520','534','91','e208i-p','0','89'), ('6521','534','92','e208i-a','0','90'), ('6522','534','93','e208i-c','0','91'), ('6523','534','94','e208e-p','0','92'), ('6524','534','95','p204i-b','0','93'), ('6525','534','96','p204i-c','0','94'), ('6526','534','97','p408i-p','0','95'), ('6527','534','98','p408i-a','0','96'), ('6528','534','99','p408e-p','0','97'), ('6529','534','100','p408i-c','0','98'), ('6530','534','101','p408e-m','0','99'), ('6531','534','102','p416ie-m','0','100'), ('6532','534','103','p816i-a','0','101'), ('6533','534','104','p408i-sb','0','102'), ('6534','535','0','other','0','0'), ('6535','535','2','none','0','1'), ('6536','535','3','RAID-1/RAID-10','0','2'), ('6537','535','4','RAID-4','0','3'), ('6538','535','5','RAID-5','0','4'), ('6539','535','7','RAID-6','0','5'), ('6540','535','8','RAID-50','0','6'), ('6541','535','9','RAID-60','0','7'), ('6542','535','10','RAID-1 ADM','0','8'), ('6543','535','11','RAID-10 ADM','0','9'), ('6544','536','1','other','0','0'), ('6545','536','2','ok','0','1'), ('6546','536','3','failed','0','2'), ('6547','536','4','unconfigured','0','3'), ('6548','536','5','recovering','0','4'), ('6549','536','6','readyForRebuild','0','5'), ('6550','536','7','rebuilding','0','6'), ('6551','536','8','wrongDrive','0','7'), ('6552','536','9','badConnect','0','8'), ('6553','536','10','overheating','0','9'), ('6554','536','11','shutdown','0','10'), ('6555','536','12','expanding','0','11'), ('6556','536','13','notAvailable','0','12'), ('6557','536','14','queuedForExpansion','0','13'), ('6558','536','15','multipathAccessDegraded','0','14'), ('6559','536','16','erasing','0','15'), ('6560','536','17','predictiveSpareRebuildReady','0','16'), ('6561','536','18','rapidParityInitInProgress','0','17'), ('6562','536','19','rapidParityInitPending','0','18'), ('6563','536','20','noAccessEncryptedNoCntlrKey','0','19'), ('6564','536','21','unencryptedToEncryptedInProgress','0','20'), ('6565','536','22','newLogDrvKeyRekeyInProgress','0','21'), ('6566','536','23','noAccessEncryptedCntlrEncryptnNotEnbld','0','22'), ('6567','536','24','unencryptedToEncryptedNotStarted','0','23'), ('6568','536','25','newLogDrvKeyRekeyRequestReceived','0','24'), ('6569','537','1','Other','0','0'), ('6570','537','2','rotatingPlatters','0','1'), ('6571','537','3','solidState','0','2'), ('6572','538','1','other','0','0'), ('6573','538','2','ok','0','1'), ('6574','538','3','replaceDrive','0','2'), ('6575','538','4','replaceDriveSSDWearOut','0','3'), ('6576','539','1','other','0','0'), ('6577','539','2','ok','0','1'), ('6578','539','3','failed','0','2'), ('6579','539','4','predictiveFailure','0','3'), ('6580','540','1','unknown','0','0'), ('6581','540','2','ok','0','1'), ('6582','540','3','generalFailure','0','2'), ('6583','540','4','linkFailure','0','3'), ('6584','541','1','other','0','0'), ('6585','541','2','ok','0','1'), ('6586','541','3','degraded','0','2'), ('6587','541','4','failed','0','3'), ('6588','542','0','not available','0','0'), ('6589','542','1','available','0','1'), ('6590','542','2','unknown','0','2'), ('6591','543','1','other','0','0'), ('6592','543','2','ok','0','1'), ('6593','543','3','degraded','0','2'), ('6594','543','4','failed','0','3'), ('6595','544','1','other','0','0'), ('6596','544','2','unknown','0','1'), ('6597','544','3','system','0','2'), ('6598','544','4','systemBoard','0','3'), ('6599','544','5','ioBoard','0','4'), ('6600','544','6','cpu','0','5'), ('6601','544','7','memory','0','6'), ('6602','544','8','storage','0','7'), ('6603','544','9','removableMedia','0','8'), ('6604','544','10','powerSupply','0','9'), ('6605','544','11','ambient','0','10'), ('6606','544','12','chassis','0','11'), ('6607','544','13','bridgeCard','0','12'), ('6608','545','1','Other','0','0'), ('6609','545','2','Ok','0','1'), ('6610','545','3','Recharging','0','2'), ('6611','545','4','Failed','0','3'), ('6612','545','5','Degraded','0','4'), ('6613','545','6','Not Present','0','5'), ('6614','545','7','Capacitor failed','0','6'), ('6615','546','1','other','0','0'), ('6616','546','2','invalid','0','1'), ('6617','546','3','enabled','0','2'), ('6618','546','4','tmpDisabled','0','3'), ('6619','546','5','permDisabled','0','4'), ('6620','546','6','cacheModFlashMemNotAttached','0','5'), ('6621','546','7','cacheModDegradedFailsafeSpeed','0','6'), ('6622','546','8','cacheModCriticalFailure','0','7'), ('6623','546','9','cacheReadCacheNotMapped','0','8'), ('6624','547','1','other','0','0'), ('6625','547','2','ida','0','1'), ('6626','547','3','idaExpansion','0','2'), ('6627','547','4','ida-2','0','3'), ('6628','547','5','smart','0','4'), ('6629','547','6','smart-2e','0','5'), ('6630','547','7','smart-2p','0','6'), ('6631','547','8','smart-2sl','0','7'), ('6632','547','9','smart-3100es','0','8'), ('6633','547','10','smart-3200','0','9'), ('6634','547','11','smart-2dh','0','10'), ('6635','547','12','smart-221','0','11'), ('6636','547','13','sa-4250es','0','12'), ('6637','547','14','sa-4200','0','13'), ('6638','547','15','sa-integrated','0','14'), ('6639','547','16','sa-431','0','15'), ('6640','547','17','sa-5300','0','16'), ('6641','547','18','raidLc2','0','17'), ('6642','547','19','sa-5i','0','18'), ('6643','547','20','sa-532','0','19'), ('6644','547','21','sa-5312','0','20'), ('6645','547','22','sa-641','0','21'), ('6646','547','23','sa-642','0','22'), ('6647','547','24','sa-6400','0','23'), ('6648','547','25','sa-6400em','0','24'), ('6649','547','26','sa-6i','0','25'), ('6650','547','27','sa-generic','0','26'), ('6651','547','29','sa-p600','0','27'), ('6652','547','30','sa-p400','0','28'), ('6653','547','31','sa-e200','0','29'), ('6654','547','32','sa-e200i','0','30'), ('6655','547','33','sa-p400i','0','31'), ('6656','547','34','sa-p800','0','32'), ('6657','547','35','sa-e500','0','33'), ('6658','547','36','sa-p700m','0','34'), ('6659','547','37','sa-p212','0','35'), ('6660','547','38','sa-p410','0','36'), ('6661','547','39','sa-p410i','0','37'), ('6662','547','40','sa-p411','0','38'), ('6663','547','41','sa-b110i','0','39'), ('6664','547','42','sa-p712m','0','40'), ('6665','547','43','sa-p711m','0','41'), ('6666','547','44','sa-p812','0','42'), ('6667','547','45','sw-1210m','0','43'), ('6668','547','46','sa-p220i','0','44'), ('6669','547','47','sa-p222','0','45'), ('6670','547','48','sa-p420','0','46'), ('6671','547','49','sa-p420i','0','47'), ('6672','547','50','sa-p421','0','48'), ('6673','547','51','sa-b320i','0','49'), ('6674','547','52','sa-p822','0','50'), ('6675','547','53','sa-p721m','0','51'), ('6676','547','54','sa-b120i','0','52'), ('6677','547','55','hps-1224','0','53'), ('6678','547','56','hps-1228','0','54'), ('6679','547','57','hps-1228m','0','55'), ('6680','547','58','sa-p822se','0','56'), ('6681','547','59','hps-1224e','0','57'), ('6682','547','60','hps-1228e','0','58'), ('6683','547','61','hps-1228em','0','59'), ('6684','547','62','sa-p230i','0','60'), ('6685','547','63','sa-p430i','0','61'), ('6686','547','64','sa-p430','0','62'), ('6687','547','65','sa-p431','0','63'), ('6688','547','66','sa-p731m','0','64'), ('6689','547','67','sa-p830i','0','65'), ('6690','547','68','sa-p830','0','66'), ('6691','547','69','sa-p831','0','67'), ('6692','547','70','sa-p530','0','68'), ('6693','547','71','sa-p531','0','69'), ('6694','547','72','sa-p244br','0','70'), ('6695','547','73','sa-p246br','0','71'), ('6696','547','74','sa-p440','0','72'), ('6697','547','75','sa-p440ar','0','73'), ('6698','547','76','sa-p441','0','74'), ('6699','547','77','sa-p741m','0','75'), ('6700','547','78','sa-p840','0','76'), ('6701','547','79','sa-p841','0','77'), ('6702','547','80','sh-h240ar','0','78'), ('6703','547','81','sh-h244br','0','79'), ('6704','547','82','sh-h240','0','80'), ('6705','547','83','sh-h241','0','81'), ('6706','547','84','sa-b140i','0','82'), ('6707','547','85','sh-generic','0','83'), ('6708','547','86','sa-p240nr','0','84'), ('6709','547','87','sh-h240nr','0','85'), ('6710','547','88','sa-p840ar','0','86'), ('6711','547','89','sa-p542d','0','87'), ('6712','547','90','s100i','0','88'), ('6713','547','91','e208i-p','0','89'), ('6714','547','92','e208i-a','0','90'), ('6715','547','93','e208i-c','0','91'), ('6716','547','94','e208e-p','0','92'), ('6717','547','95','p204i-b','0','93'), ('6718','547','96','p204i-c','0','94'), ('6719','547','97','p408i-p','0','95'), ('6720','547','98','p408i-a','0','96'), ('6721','547','99','p408e-p','0','97'), ('6722','547','100','p408i-c','0','98'), ('6723','547','101','p408e-m','0','99'), ('6724','547','102','p416ie-m','0','100'), ('6725','547','103','p816i-a','0','101'), ('6726','547','104','p408i-sb','0','102'), ('6727','548','0','other','0','0'), ('6728','548','2','none','0','1'), ('6729','548','3','RAID-1/RAID-10','0','2'), ('6730','548','4','RAID-4','0','3'), ('6731','548','5','RAID-5','0','4'), ('6732','548','7','RAID-6','0','5'), ('6733','548','8','RAID-50','0','6'), ('6734','548','9','RAID-60','0','7'), ('6735','548','10','RAID-1 ADM','0','8'), ('6736','548','11','RAID-10 ADM','0','9'), ('6737','549','1','other','0','0'), ('6738','549','2','ok','0','1'), ('6739','549','3','failed','0','2'), ('6740','549','4','unconfigured','0','3'), ('6741','549','5','recovering','0','4'), ('6742','549','6','readyForRebuild','0','5'), ('6743','549','7','rebuilding','0','6'), ('6744','549','8','wrongDrive','0','7'), ('6745','549','9','badConnect','0','8'), ('6746','549','10','overheating','0','9'), ('6747','549','11','shutdown','0','10'), ('6748','549','12','expanding','0','11'), ('6749','549','13','notAvailable','0','12'), ('6750','549','14','queuedForExpansion','0','13'), ('6751','549','15','multipathAccessDegraded','0','14'), ('6752','549','16','erasing','0','15'), ('6753','549','17','predictiveSpareRebuildReady','0','16'), ('6754','549','18','rapidParityInitInProgress','0','17'), ('6755','549','19','rapidParityInitPending','0','18'), ('6756','549','20','noAccessEncryptedNoCntlrKey','0','19'), ('6757','549','21','unencryptedToEncryptedInProgress','0','20'), ('6758','549','22','newLogDrvKeyRekeyInProgress','0','21'), ('6759','549','23','noAccessEncryptedCntlrEncryptnNotEnbld','0','22'), ('6760','549','24','unencryptedToEncryptedNotStarted','0','23'), ('6761','549','25','newLogDrvKeyRekeyRequestReceived','0','24'), ('6762','550','1','Other','0','0'), ('6763','550','2','rotatingPlatters','0','1'), ('6764','550','3','solidState','0','2'), ('6765','551','1','other','0','0'), ('6766','551','2','ok','0','1'), ('6767','551','3','replaceDrive','0','2'), ('6768','551','4','replaceDriveSSDWearOut','0','3'), ('6769','552','1','other','0','0'), ('6770','552','2','ok','0','1'), ('6771','552','3','failed','0','2'), ('6772','552','4','predictiveFailure','0','3'), ('6773','553','1','unknown','0','0'), ('6774','553','2','ok','0','1'), ('6775','553','3','generalFailure','0','2'), ('6776','553','4','linkFailure','0','3'), ('6777','554','1','other','0','0'), ('6778','554','2','ok','0','1'), ('6779','554','3','degraded','0','2'), ('6780','554','4','failed','0','3'), ('6781','555','0','not available','0','0'), ('6782','555','1','available','0','1'), ('6783','555','2','unknown','0','2'), ('6784','556','0','Failed','0','0'), ('6785','556','1','Ok','0','1'), ('6786','557','0','none','0','0'), ('6787','557','1','enabled','0','1'), ('6788','557','2','disabled','0','2'), ('6789','557','3','disabledbyparent','0','3'), ('6790','558','0','none','0','0'), ('6791','558','1','green','0','1'), ('6792','558','2','yellow','0','2'), ('6793','558','3','red','0','3'), ('6794','558','4','blue','0','4'), ('6795','558','5','gray','0','5'), ('6796','559','0','unknown','0','0'), ('6797','559','1','offline','0','1'), ('6798','559','2','forcedOffline','0','2'), ('6799','559','3','standby','0','3'), ('6800','559','4','active','0','4'), ('6801','560','0','unknown','0','0'), ('6802','560','1','syncing','0','1'), ('6803','560','2','needManualSync','0','2'), ('6804','560','3','inSync','0','3'), ('6805','560','4','syncFailed','0','4'), ('6806','560','5','syncDisconnected','0','5'), ('6807','560','6','standalone','0','6'), ('6808','560','7','awaitingInitialSync','0','7'), ('6809','560','8','incompatibleVersion','0','8'), ('6810','560','9','partialSync','0','9'), ('6811','561','0','PENDING','0','0'), ('6812','561','1','ACTIVATED','0','1'), ('6813','561','10','UNKNOWN','0','2'), ('6814','562','0','UNCONFIGURED','0','0'), ('6815','562','1','READY','0','1'), ('6816','562','2','PENDING_INIT','0','2'), ('6817','562','3','FAILED','0','3'), ('6818','562','10','UNKNOWN','0','4'), ('6819','563','0','OFFLINE','0','0'), ('6820','563','1','CONNECTED','0','1'), ('6821','563','2','NEVER_ACTIVATED','0','2'), ('6822','563','10','UNKNOWN','0','3'), ('6823','564','0','UNSTABLE','0','0'), ('6824','564','1','STABLE','0','1'), ('6825','564','2','DISCONNECTED','0','2'), ('6826','564','10','UNKNOWN','0','3'), ('6831','64','0','unknown','0','0'), ('6832','64','3','lowerlayerdown','0','3'), ('6833','565','0','Standby','0','0'), ('6834','565','1','Stopped','0','1'), ('6835','565','2','Unavailable','0','2'), ('6836','565','3','Active','0','3'), ('6837','566','0','Standby','0','0'), ('6838','566','1','Stopped','0','1'), ('6839','566','2','Unavailable','0','2'), ('6840','566','3','Active','0','3'), ('6841','260','3','testing','0','2'), ('6842','567','0','backup','0','0'), ('6843','567','1','master','0','1'), ('6844','568','1','True','0','0'), ('6845','568','2','False','0','1'), ('6846','568','3','Unknown','0','2'), ('6847','569','1','True','0','0'), ('6848','569','2','False','0','1'), ('6849','569','3','Unknown','0','2'), ('6850','570','1','Pending','0','0'), ('6851','570','2','Running','0','1'), ('6852','570','3','Succeeded','0','2'), ('6853','570','4','Failed','0','3'), ('6854','570','5','Unknown','0','4'), ('6855','571','1','up','0','0'), ('6856','571','2','down','0','1'), ('6857','571','3','testing','0','2'), ('6858','571','4','unknown','0','3'), ('6859','571','5','dormant','0','4'), ('6860','571','6','notPresent','0','5'), ('6861','571','7','lowerLayerDown','0','6'), ('6862','572','1','other','0','0'), ('6863','572','2','regular1822','0','1'), ('6864','572','3','hdh1822','0','2'), ('6865','572','4','ddnX25','0','3'), ('6866','572','5','rfc877x25','0','4'), ('6867','572','6','ethernetCsmacd','0','5'), ('6868','572','7','iso88023Csmacd','0','6'), ('6869','572','8','iso88024TokenBus','0','7'), ('6870','572','9','iso88025TokenRing','0','8'), ('6871','572','10','iso88026Man','0','9'), ('6872','572','11','starLan','0','10'), ('6873','572','12','proteon10Mbit','0','11'), ('6874','572','13','proteon80Mbit','0','12'), ('6875','572','14','hyperchannel','0','13'), ('6876','572','15','fddi','0','14'), ('6877','572','16','lapb','0','15'), ('6878','572','17','sdlc','0','16'), ('6879','572','18','ds1','0','17'), ('6880','572','19','e1','0','18'), ('6881','572','20','basicISDN','0','19'), ('6882','572','21','primaryISDN','0','20'), ('6883','572','22','propPointToPointSerial','0','21'), ('6884','572','23','ppp','0','22'), ('6885','572','24','softwareLoopback','0','23'), ('6886','572','25','eon','0','24'), ('6887','572','26','ethernet3Mbit','0','25'), ('6888','572','27','nsip','0','26'), ('6889','572','28','slip','0','27'), ('6890','572','29','ultra','0','28'), ('6891','572','30','ds3','0','29'), ('6892','572','31','sip','0','30'), ('6893','572','32','frameRelay','0','31'), ('6894','572','33','rs232','0','32'), ('6895','572','34','para','0','33'), ('6896','572','35','arcnet','0','34'), ('6897','572','36','arcnetPlus','0','35'), ('6898','572','37','atm','0','36'), ('6899','572','38','miox25','0','37'), ('6900','572','39','sonet','0','38'), ('6901','572','40','x25ple','0','39'), ('6902','572','41','iso88022llc','0','40'), ('6903','572','42','localTalk','0','41'), ('6904','572','43','smdsDxi','0','42'), ('6905','572','44','frameRelayService','0','43'), ('6906','572','45','v35','0','44'), ('6907','572','46','hssi','0','45'), ('6908','572','47','hippi','0','46'), ('6909','572','48','modem','0','47'), ('6910','572','49','aal5','0','48'), ('6911','572','50','sonetPath','0','49'), ('6912','572','51','sonetVT','0','50'), ('6913','572','52','smdsIcip','0','51'), ('6914','572','53','propVirtual','0','52'), ('6915','572','54','propMultiplexor','0','53'), ('6916','572','55','ieee80212','0','54'), ('6917','572','56','fibreChannel','0','55'), ('6918','572','57','hippiInterface','0','56'), ('6919','572','58','frameRelayInterconnect','0','57'), ('6920','572','59','aflane8023','0','58'), ('6921','572','60','aflane8025','0','59'), ('6922','572','61','cctEmul','0','60'), ('6923','572','62','fastEther','0','61'), ('6924','572','63','isdn','0','62'), ('6925','572','64','v11','0','63'), ('6926','572','65','v36','0','64'), ('6927','572','66','g703at64k','0','65'), ('6928','572','67','g703at2mb','0','66'), ('6929','572','68','qllc','0','67'), ('6930','572','69','fastEtherFX','0','68'), ('6931','572','70','channel','0','69'), ('6932','572','71','ieee80211','0','70'), ('6933','572','72','ibm370parChan','0','71'), ('6934','572','73','escon','0','72'), ('6935','572','74','dlsw','0','73'), ('6936','572','75','isdns','0','74'), ('6937','572','76','isdnu','0','75'), ('6938','572','77','lapd','0','76'), ('6939','572','78','ipSwitch','0','77'), ('6940','572','79','rsrb','0','78'), ('6941','572','80','atmLogical','0','79'), ('6942','572','81','ds0','0','80'), ('6943','572','82','ds0Bundle','0','81'), ('6944','572','83','bsc','0','82'), ('6945','572','84','async','0','83'), ('6946','572','85','cnr','0','84'), ('6947','572','86','iso88025Dtr','0','85'), ('6948','572','87','eplrs','0','86'), ('6949','572','88','arap','0','87'), ('6950','572','89','propCnls','0','88'), ('6951','572','90','hostPad','0','89'), ('6952','572','91','termPad','0','90'), ('6953','572','92','frameRelayMPI','0','91'), ('6954','572','93','x213','0','92'), ('6955','572','94','adsl','0','93'), ('6956','572','95','radsl','0','94'), ('6957','572','96','sdsl','0','95'), ('6958','572','97','vdsl','0','96'), ('6959','572','98','iso88025CRFPInt','0','97'), ('6960','572','99','myrinet','0','98'), ('6961','572','100','voiceEM','0','99'), ('6962','572','101','voiceFXO','0','100'), ('6963','572','102','voiceFXS','0','101'), ('6964','572','103','voiceEncap','0','102'), ('6965','572','104','voiceOverIp','0','103'), ('6966','572','105','atmDxi','0','104'), ('6967','572','106','atmFuni','0','105'), ('6968','572','107','atmIma','0','106'), ('6969','572','108','pppMultilinkBundle','0','107'), ('6970','572','109','ipOverCdlc','0','108'), ('6971','572','110','ipOverClaw','0','109'), ('6972','572','111','stackToStack','0','110'), ('6973','572','112','virtualIpAddress','0','111'), ('6974','572','113','mpc','0','112'), ('6975','572','114','ipOverAtm','0','113'), ('6976','572','115','iso88025Fiber','0','114'), ('6977','572','116','tdlc','0','115'), ('6978','572','117','gigabitEthernet','0','116'), ('6979','572','118','hdlc','0','117'), ('6980','572','119','lapf','0','118'), ('6981','572','120','v37','0','119'), ('6982','572','121','x25mlp','0','120'), ('6983','572','122','x25huntGroup','0','121'), ('6984','572','123','trasnpHdlc','0','122'), ('6985','572','124','interleave','0','123'), ('6986','572','125','fast','0','124'), ('6987','572','126','ip','0','125'), ('6988','572','127','docsCableMaclayer','0','126'), ('6989','572','128','docsCableDownstream','0','127'), ('6990','572','129','docsCableUpstream','0','128'), ('6991','572','130','a12MppSwitch','0','129'), ('6992','572','131','tunnel','0','130'), ('6993','572','132','coffee','0','131'), ('6994','572','133','ces','0','132'), ('6995','572','134','atmSubInterface','0','133'), ('6996','572','135','l2vlan','0','134'), ('6997','572','136','l3ipvlan','0','135'), ('6998','572','137','l3ipxvlan','0','136'), ('6999','572','138','digitalPowerline','0','137'), ('7000','572','139','mediaMailOverIp','0','138'), ('7001','572','140','dtm','0','139'), ('7002','572','141','dcn','0','140'), ('7003','572','142','ipForward','0','141'), ('7004','572','143','msdsl','0','142'), ('7005','572','144','ieee1394','0','143'), ('7006','572','145','if-gsn','0','144'), ('7007','572','146','dvbRccMacLayer','0','145'), ('7008','572','147','dvbRccDownstream','0','146'), ('7009','572','148','dvbRccUpstream','0','147'), ('7010','572','149','atmVirtual','0','148'), ('7011','572','150','mplsTunnel','0','149'), ('7012','572','151','srp','0','150'), ('7013','572','152','voiceOverAtm','0','151'), ('7014','572','153','voiceOverFrameRelay','0','152'), ('7015','572','154','idsl','0','153'), ('7016','572','155','compositeLink','0','154'), ('7017','572','156','ss7SigLink','0','155'), ('7018','572','157','propWirelessP2P','0','156'), ('7019','572','158','frForward','0','157'), ('7020','572','159','rfc1483','0','158'), ('7021','572','160','usb','0','159'), ('7022','572','161','ieee8023adLag','0','160'), ('7023','572','162','bgppolicyaccounting','0','161'), ('7024','572','163','frf16MfrBundle','0','162'), ('7025','572','164','h323Gatekeeper','0','163'), ('7026','572','165','h323Proxy','0','164'), ('7027','572','166','mpls','0','165'), ('7028','572','167','mfSigLink','0','166'), ('7029','572','168','hdsl2','0','167'), ('7030','572','169','shdsl','0','168'), ('7031','572','170','ds1FDL','0','169'), ('7032','572','171','pos','0','170'), ('7033','572','172','dvbAsiIn','0','171'), ('7034','572','173','dvbAsiOut','0','172'), ('7035','572','174','plc','0','173'), ('7036','572','175','nfas','0','174'), ('7037','572','176','tr008','0','175'), ('7038','572','177','gr303RDT','0','176'), ('7039','572','178','gr303IDT','0','177'), ('7040','572','179','isup','0','178'), ('7041','572','180','propDocsWirelessMaclayer','0','179'), ('7042','572','181','propDocsWirelessDownstream','0','180'), ('7043','572','182','propDocsWirelessUpstream','0','181'), ('7044','572','183','hiperlan2','0','182'), ('7045','572','184','propBWAp2Mp','0','183'), ('7046','572','185','sonetOverheadChannel','0','184'), ('7047','572','186','digitalWrapperOverheadChannel','0','185'), ('7048','572','187','aal2','0','186'), ('7049','572','188','radioMAC','0','187'), ('7050','572','189','atmRadio','0','188'), ('7051','572','190','imt','0','189'), ('7052','572','191','mvl','0','190'), ('7053','572','192','reachDSL','0','191'), ('7054','572','193','frDlciEndPt','0','192'), ('7055','572','194','atmVciEndPt','0','193'), ('7056','572','195','opticalChannel','0','194'), ('7057','572','196','opticalTransport','0','195'), ('7058','572','197','propAtm','0','196'), ('7059','572','198','voiceOverCable','0','197'), ('7060','572','199','infiniband','0','198'), ('7061','572','200','teLink','0','199'), ('7062','572','201','q2931','0','200'), ('7063','572','202','virtualTg','0','201'), ('7064','572','203','sipTg','0','202'), ('7065','572','204','sipSig','0','203'), ('7066','572','205','docsCableUpstreamChannel','0','204'), ('7067','572','206','econet','0','205'), ('7068','572','207','pon155','0','206'), ('7069','572','208','pon622','0','207'), ('7070','572','209','bridge','0','208'), ('7071','572','210','linegroup','0','209'), ('7072','572','211','voiceEMFGD','0','210'), ('7073','572','212','voiceFGDEANA','0','211'), ('7074','572','213','voiceDID','0','212'), ('7075','572','214','mpegTransport','0','213'), ('7076','572','215','sixToFour','0','214'), ('7077','572','216','gtp','0','215'), ('7078','572','217','pdnEtherLoop1','0','216'), ('7079','572','218','pdnEtherLoop2','0','217'), ('7080','572','219','opticalChannelGroup','0','218'), ('7081','572','220','homepna','0','219'), ('7082','572','221','gfp','0','220'), ('7083','572','222','ciscoISLvlan','0','221'), ('7084','572','223','actelisMetaLOOP','0','222'), ('7085','572','224','fcipLink','0','223'), ('7086','572','225','rpr','0','224'), ('7087','572','226','qam','0','225'), ('7088','572','227','lmp','0','226'), ('7089','572','228','cblVectaStar','0','227'), ('7090','572','229','docsCableMCmtsDownstream','0','228'), ('7091','572','230','adsl2','0','229'), ('7092','572','231','macSecControlledIF','0','230'), ('7093','572','232','macSecUncontrolledIF','0','231'), ('7094','572','233','aviciOpticalEther','0','232'), ('7095','572','234','atmbond','0','233'), ('7096','572','235','voiceFGDOS','0','234'), ('7097','572','236','mocaVersion1','0','235'), ('7098','572','237','ieee80216WMAN','0','236'), ('7099','572','238','adsl2plus','0','237'), ('7100','572','239','dvbRcsMacLayer','0','238'), ('7101','572','240','dvbTdm','0','239'), ('7102','572','241','dvbRcsTdma','0','240'), ('7103','572','242','x86Laps','0','241'), ('7104','572','243','wwanPP','0','242'), ('7105','572','244','wwanPP2','0','243'), ('7106','572','245','voiceEBS','0','244'), ('7107','572','246','ifPwType','0','245'), ('7108','572','247','ilan','0','246'), ('7109','572','248','pip','0','247'), ('7110','572','249','aluELP','0','248'), ('7111','572','250','gpon','0','249'), ('7112','572','251','vdsl2','0','250'), ('7113','572','252','capwapDot11Profile','0','251'), ('7114','572','253','capwapDot11Bss','0','252'), ('7115','572','254','capwapWtpVirtualRadio','0','253'), ('7116','572','255','bits','0','254'), ('7117','572','256','docsCableUpstreamRfPort','0','255'), ('7118','572','257','cableDownstreamRfPort','0','256'), ('7119','572','258','vmwareVirtualNic','0','257'), ('7120','572','259','ieee802154','0','258'), ('7121','572','260','otnOdu','0','259'), ('7122','572','261','otnOtu','0','260'), ('7123','572','262','ifVfiType','0','261'), ('7124','572','263','g9981','0','262'), ('7125','572','264','g9982','0','263'), ('7126','572','265','g9983','0','264'), ('7127','572','266','aluEpon','0','265'), ('7128','572','267','aluEponOnu','0','266'), ('7129','572','268','aluEponPhysicalUni','0','267'), ('7130','572','269','aluEponLogicalLink','0','268'), ('7131','572','270','aluGponOnu','0','269'), ('7132','572','271','aluGponPhysicalUni','0','270'), ('7133','572','272','vmwareNicTeam','0','271'), ('7134','572','277','docsOfdmDownstream','0','272'), ('7135','572','278','docsOfdmaUpstream','0','273'), ('7136','572','279','gfast','0','274'), ('7137','572','280','sdci','0','275'), ('7138','572','281','xboxWireless','0','276'), ('7139','572','282','fastdsl','0','277'), ('7140','572','283','docsCableScte55d1FwdOob','0','278'), ('7141','572','284','docsCableScte55d1RetOob','0','279'), ('7142','572','285','docsCableScte55d2DsOob','0','280'), ('7143','572','286','docsCableScte55d2UsOob','0','281'), ('7144','572','287','docsCableNdf','0','282'), ('7145','572','288','docsCableNdr','0','283'), ('7146','572','289','ptm','0','284'), ('7147','572','290','ghn','0','285'), ('7148','573','0','not running','0','0'), ('7149','573','2','running','0','1'), ('7152','575','1','true','0','0'), ('7153','575','2','false','0','1'), ('7154','576','0','not available','0','0'), ('7155','576','1','available','0','1'), ('7156','576','2','unknown','0','2'), ('7159','578','1','unknown','0','0'), ('7160','578','2','halfDuplex','0','1'), ('7161','578','3','fullDuplex','0','2'), ('7162','579','1','up','0','0'), ('7163','579','2','down','0','1'), ('7164','579','4','unknown','0','2'), ('7165','579','5','dormant','0','3'), ('7166','579','6','notPresent','0','4'), ('7167','579','7','lowerLayerDown','0','5'), ('7168','580','1','other','0','0'), ('7169','580','2','regular1822','0','1'), ('7170','580','3','hdh1822','0','2'), ('7171','580','4','ddnX25','0','3'), ('7172','580','5','rfc877x25','0','4'), ('7173','580','6','ethernetCsmacd','0','5'), ('7174','580','7','iso88023Csmacd','0','6'), ('7175','580','8','iso88024TokenBus','0','7'), ('7176','580','9','iso88025TokenRing','0','8'), ('7177','580','10','iso88026Man','0','9'), ('7178','580','11','starLan','0','10'), ('7179','580','12','proteon10Mbit','0','11'), ('7180','580','13','proteon80Mbit','0','12'), ('7181','580','14','hyperchannel','0','13'), ('7182','580','15','fddi','0','14'), ('7183','580','16','lapb','0','15'), ('7184','580','17','sdlc','0','16'), ('7185','580','18','ds1','0','17'), ('7186','580','19','e1','0','18'), ('7187','580','20','basicISDN','0','19'), ('7188','580','21','primaryISDN','0','20'), ('7189','580','22','propPointToPointSerial','0','21'), ('7190','580','23','ppp','0','22'), ('7191','580','24','softwareLoopback','0','23'), ('7192','580','25','eon','0','24'), ('7193','580','26','ethernet3Mbit','0','25'), ('7194','580','27','nsip','0','26'), ('7195','580','28','slip','0','27'), ('7196','580','29','ultra','0','28'), ('7197','580','30','ds3','0','29'), ('7198','580','31','sip','0','30'), ('7199','580','32','frameRelay','0','31'), ('7200','580','33','rs232','0','32'), ('7201','580','34','para','0','33'), ('7202','580','35','arcnet','0','34'), ('7203','580','36','arcnetPlus','0','35'), ('7204','580','37','atm','0','36'), ('7205','580','38','miox25','0','37'), ('7206','580','39','sonet','0','38'), ('7207','580','40','x25ple','0','39'), ('7208','580','41','iso88022llc','0','40'), ('7209','580','42','localTalk','0','41'), ('7210','580','43','smdsDxi','0','42'), ('7211','580','44','frameRelayService','0','43'), ('7212','580','45','v35','0','44'), ('7213','580','46','hssi','0','45'), ('7214','580','47','hippi','0','46'), ('7215','580','48','modem','0','47'), ('7216','580','49','aal5','0','48'), ('7217','580','50','sonetPath','0','49'), ('7218','580','51','sonetVT','0','50'), ('7219','580','52','smdsIcip','0','51'), ('7220','580','53','propVirtual','0','52'), ('7221','580','54','propMultiplexor','0','53'), ('7222','580','55','ieee80212','0','54'), ('7223','580','56','fibreChannel','0','55'), ('7224','580','57','hippiInterface','0','56'), ('7225','580','58','frameRelayInterconnect','0','57'), ('7226','580','59','aflane8023','0','58'), ('7227','580','60','aflane8025','0','59'), ('7228','580','61','cctEmul','0','60'), ('7229','580','62','fastEther','0','61'), ('7230','580','63','isdn','0','62'), ('7231','580','64','v11','0','63'), ('7232','580','65','v36','0','64'), ('7233','580','66','g703at64k','0','65'), ('7234','580','67','g703at2mb','0','66'), ('7235','580','68','qllc','0','67'), ('7236','580','69','fastEtherFX','0','68'), ('7237','580','70','channel','0','69'), ('7238','580','71','ieee80211','0','70'), ('7239','580','72','ibm370parChan','0','71'), ('7240','580','73','escon','0','72'), ('7241','580','74','dlsw','0','73'), ('7242','580','75','isdns','0','74'), ('7243','580','76','isdnu','0','75'), ('7244','580','77','lapd','0','76'), ('7245','580','78','ipSwitch','0','77'), ('7246','580','79','rsrb','0','78'), ('7247','580','80','atmLogical','0','79'), ('7248','580','81','ds0','0','80'), ('7249','580','82','ds0Bundle','0','81'), ('7250','580','83','bsc','0','82'), ('7251','580','84','async','0','83'), ('7252','580','85','cnr','0','84'), ('7253','580','86','iso88025Dtr','0','85'), ('7254','580','87','eplrs','0','86'), ('7255','580','88','arap','0','87'), ('7256','580','89','propCnls','0','88'), ('7257','580','90','hostPad','0','89'), ('7258','580','91','termPad','0','90'), ('7259','580','92','frameRelayMPI','0','91'), ('7260','580','93','x213','0','92'), ('7261','580','94','adsl','0','93'), ('7262','580','95','radsl','0','94'), ('7263','580','96','sdsl','0','95'), ('7264','580','97','vdsl','0','96'), ('7265','580','98','iso88025CRFPInt','0','97'), ('7266','580','99','myrinet','0','98'), ('7267','580','100','voiceEM','0','99'), ('7268','580','101','voiceFXO','0','100'), ('7269','580','102','voiceFXS','0','101'), ('7270','580','103','voiceEncap','0','102'), ('7271','580','104','voiceOverIp','0','103'), ('7272','580','105','atmDxi','0','104'), ('7273','580','106','atmFuni','0','105'), ('7274','580','107','atmIma','0','106'), ('7275','580','108','pppMultilinkBundle','0','107'), ('7276','580','109','ipOverCdlc','0','108'), ('7277','580','110','ipOverClaw','0','109'), ('7278','580','111','stackToStack','0','110'), ('7279','580','112','virtualIpAddress','0','111'), ('7280','580','113','mpc','0','112'), ('7281','580','114','ipOverAtm','0','113'), ('7282','580','115','iso88025Fiber','0','114'), ('7283','580','116','tdlc','0','115'), ('7284','580','117','gigabitEthernet','0','116'), ('7285','580','118','hdlc','0','117'), ('7286','580','119','lapf','0','118'), ('7287','580','120','v37','0','119'), ('7288','580','121','x25mlp','0','120'), ('7289','580','122','x25huntGroup','0','121'), ('7290','580','123','trasnpHdlc','0','122'), ('7291','580','124','interleave','0','123'), ('7292','580','125','fast','0','124'), ('7293','580','126','ip','0','125'), ('7294','580','127','docsCableMaclayer','0','126'), ('7295','580','128','docsCableDownstream','0','127'), ('7296','580','129','docsCableUpstream','0','128'), ('7297','580','130','a12MppSwitch','0','129'), ('7298','580','131','tunnel','0','130'), ('7299','580','132','coffee','0','131'), ('7300','580','133','ces','0','132'), ('7301','580','134','atmSubInterface','0','133'), ('7302','580','135','l2vlan','0','134'), ('7303','580','136','l3ipvlan','0','135'), ('7304','580','137','l3ipxvlan','0','136'), ('7305','580','138','digitalPowerline','0','137'), ('7306','580','139','mediaMailOverIp','0','138'), ('7307','580','140','dtm','0','139'), ('7308','580','141','dcn','0','140'), ('7309','580','142','ipForward','0','141'), ('7310','580','143','msdsl','0','142'), ('7311','580','144','ieee1394','0','143'), ('7312','580','145','if-gsn','0','144'), ('7313','580','146','dvbRccMacLayer','0','145'), ('7314','580','147','dvbRccDownstream','0','146'), ('7315','580','148','dvbRccUpstream','0','147'), ('7316','580','149','atmVirtual','0','148'), ('7317','580','150','mplsTunnel','0','149'), ('7318','580','151','srp','0','150'), ('7319','580','152','voiceOverAtm','0','151'), ('7320','580','153','voiceOverFrameRelay','0','152'), ('7321','580','154','idsl','0','153'), ('7322','580','155','compositeLink','0','154'), ('7323','580','156','ss7SigLink','0','155'), ('7324','580','157','propWirelessP2P','0','156'), ('7325','580','158','frForward','0','157'), ('7326','580','159','rfc1483','0','158'), ('7327','580','160','usb','0','159'), ('7328','580','161','ieee8023adLag','0','160'), ('7329','580','162','bgppolicyaccounting','0','161'), ('7330','580','163','frf16MfrBundle','0','162'), ('7331','580','164','h323Gatekeeper','0','163'), ('7332','580','165','h323Proxy','0','164'), ('7333','580','166','mpls','0','165'), ('7334','580','167','mfSigLink','0','166'), ('7335','580','168','hdsl2','0','167'), ('7336','580','169','shdsl','0','168'), ('7337','580','170','ds1FDL','0','169'), ('7338','580','171','pos','0','170'), ('7339','580','172','dvbAsiIn','0','171'), ('7340','580','173','dvbAsiOut','0','172'), ('7341','580','174','plc','0','173'), ('7342','580','175','nfas','0','174'), ('7343','580','176','tr008','0','175'), ('7344','580','177','gr303RDT','0','176'), ('7345','580','178','gr303IDT','0','177'), ('7346','580','179','isup','0','178'), ('7347','580','180','propDocsWirelessMaclayer','0','179'), ('7348','580','181','propDocsWirelessDownstream','0','180'), ('7349','580','182','propDocsWirelessUpstream','0','181'), ('7350','580','183','hiperlan2','0','182'), ('7351','580','184','propBWAp2Mp','0','183'), ('7352','580','185','sonetOverheadChannel','0','184'), ('7353','580','186','digitalWrapperOverheadChannel','0','185'), ('7354','580','187','aal2','0','186'), ('7355','580','188','radioMAC','0','187'), ('7356','580','189','atmRadio','0','188'), ('7357','580','190','imt','0','189'), ('7358','580','191','mvl','0','190'), ('7359','580','192','reachDSL','0','191'), ('7360','580','193','frDlciEndPt','0','192'), ('7361','580','194','atmVciEndPt','0','193'), ('7362','580','195','opticalChannel','0','194'), ('7363','580','196','opticalTransport','0','195'), ('7364','580','197','propAtm','0','196'), ('7365','580','198','voiceOverCable','0','197'), ('7366','580','199','infiniband','0','198'), ('7367','580','200','teLink','0','199'), ('7368','580','201','q2931','0','200'), ('7369','580','202','virtualTg','0','201'), ('7370','580','203','sipTg','0','202'), ('7371','580','204','sipSig','0','203'), ('7372','580','205','docsCableUpstreamChannel','0','204'), ('7373','580','206','econet','0','205'), ('7374','580','207','pon155','0','206'), ('7375','580','208','pon622','0','207'), ('7376','580','209','bridge','0','208'), ('7377','580','210','linegroup','0','209'), ('7378','580','211','voiceEMFGD','0','210'), ('7379','580','212','voiceFGDEANA','0','211'), ('7380','580','213','voiceDID','0','212'), ('7381','580','214','mpegTransport','0','213'), ('7382','580','215','sixToFour','0','214'), ('7383','580','216','gtp','0','215'), ('7384','580','217','pdnEtherLoop1','0','216'), ('7385','580','218','pdnEtherLoop2','0','217'), ('7386','580','219','opticalChannelGroup','0','218'), ('7387','580','220','homepna','0','219'), ('7388','580','221','gfp','0','220'), ('7389','580','222','ciscoISLvlan','0','221'), ('7390','580','223','actelisMetaLOOP','0','222'), ('7391','580','224','fcipLink','0','223'), ('7392','580','225','rpr','0','224'), ('7393','580','226','qam','0','225'), ('7394','580','227','lmp','0','226'), ('7395','580','228','cblVectaStar','0','227'), ('7396','580','229','docsCableMCmtsDownstream','0','228'), ('7397','580','230','adsl2','0','229'), ('7398','580','231','macSecControlledIF','0','230'), ('7399','580','232','macSecUncontrolledIF','0','231'), ('7400','580','233','aviciOpticalEther','0','232'), ('7401','580','234','atmbond','0','233'), ('7402','580','235','voiceFGDOS','0','234'), ('7403','580','236','mocaVersion1','0','235'), ('7404','580','237','ieee80216WMAN','0','236'), ('7405','580','238','adsl2plus','0','237'), ('7406','580','239','dvbRcsMacLayer','0','238'), ('7407','580','240','dvbTdm','0','239'), ('7408','580','241','dvbRcsTdma','0','240'), ('7409','580','242','x86Laps','0','241'), ('7410','580','243','wwanPP','0','242'), ('7411','580','244','wwanPP2','0','243'), ('7412','580','245','voiceEBS','0','244'), ('7413','580','246','ifPwType','0','245'), ('7414','580','247','ilan','0','246'), ('7415','580','248','pip','0','247'), ('7416','580','249','aluELP','0','248'), ('7417','580','250','gpon','0','249'), ('7418','580','251','vdsl2','0','250'), ('7419','580','252','capwapDot11Profile','0','251'), ('7420','580','253','capwapDot11Bss','0','252'), ('7421','580','254','capwapWtpVirtualRadio','0','253'), ('7422','580','255','bits','0','254'), ('7423','580','256','docsCableUpstreamRfPort','0','255'), ('7424','580','257','cableDownstreamRfPort','0','256'), ('7425','580','258','vmwareVirtualNic','0','257'), ('7426','580','259','ieee802154','0','258'), ('7427','580','260','otnOdu','0','259'), ('7428','580','261','otnOtu','0','260'), ('7429','580','262','ifVfiType','0','261'), ('7430','580','263','g9981','0','262'), ('7431','580','264','g9982','0','263'), ('7432','580','265','g9983','0','264'), ('7433','580','266','aluEpon','0','265'), ('7434','580','267','aluEponOnu','0','266'), ('7435','580','268','aluEponPhysicalUni','0','267'), ('7436','580','269','aluEponLogicalLink','0','268'), ('7437','580','270','aluGponOnu','0','269'), ('7438','580','271','aluGponPhysicalUni','0','270'), ('7439','580','272','vmwareNicTeam','0','271'), ('7440','580','277','docsOfdmDownstream','0','272'), ('7441','580','278','docsOfdmaUpstream','0','273'), ('7442','580','279','gfast','0','274'), ('7443','580','280','sdci','0','275'), ('7444','580','281','xboxWireless','0','276'), ('7445','580','282','fastdsl','0','277'), ('7446','580','283','docsCableScte55d1FwdOob','0','278'), ('7447','580','284','docsCableScte55d1RetOob','0','279'), ('7448','580','285','docsCableScte55d2DsOob','0','280'), ('7449','580','286','docsCableScte55d2UsOob','0','281'), ('7450','580','287','docsCableNdf','0','282'), ('7451','580','288','docsCableNdr','0','283'), ('7452','580','289','ptm','0','284'), ('7453','580','290','ghn','0','285'), ('7454','581','0','Down','0','0'), ('7455','581','1','Up','0','1'), ('7456','582','0','not available','0','0'), ('7457','582','1','available','0','1'), ('7458','582','2','unknown','0','2'), ('7459','583','1','unknown','0','0'), ('7460','583','2','halfDuplex','0','1'), ('7461','583','3','fullDuplex','0','2'), ('7462','584','1','up','0','0'), ('7463','584','2','down','0','1'), ('7464','584','4','unknown','0','2'), ('7465','584','5','dormant','0','3'), ('7466','584','6','notPresent','0','4'), ('7467','584','7','lowerLayerDown','0','5'), ('7468','585','1','other','0','0'), ('7469','585','2','regular1822','0','1'), ('7470','585','3','hdh1822','0','2'), ('7471','585','4','ddnX25','0','3'), ('7472','585','5','rfc877x25','0','4'), ('7473','585','6','ethernetCsmacd','0','5'), ('7474','585','7','iso88023Csmacd','0','6'), ('7475','585','8','iso88024TokenBus','0','7'), ('7476','585','9','iso88025TokenRing','0','8'), ('7477','585','10','iso88026Man','0','9'), ('7478','585','11','starLan','0','10'), ('7479','585','12','proteon10Mbit','0','11'), ('7480','585','13','proteon80Mbit','0','12'), ('7481','585','14','hyperchannel','0','13'), ('7482','585','15','fddi','0','14'), ('7483','585','16','lapb','0','15'), ('7484','585','17','sdlc','0','16'), ('7485','585','18','ds1','0','17'), ('7486','585','19','e1','0','18'), ('7487','585','20','basicISDN','0','19'), ('7488','585','21','primaryISDN','0','20'), ('7489','585','22','propPointToPointSerial','0','21'), ('7490','585','23','ppp','0','22'), ('7491','585','24','softwareLoopback','0','23'), ('7492','585','25','eon','0','24'), ('7493','585','26','ethernet3Mbit','0','25'), ('7494','585','27','nsip','0','26'), ('7495','585','28','slip','0','27'), ('7496','585','29','ultra','0','28'), ('7497','585','30','ds3','0','29'), ('7498','585','31','sip','0','30'), ('7499','585','32','frameRelay','0','31'), ('7500','585','33','rs232','0','32'), ('7501','585','34','para','0','33'), ('7502','585','35','arcnet','0','34'), ('7503','585','36','arcnetPlus','0','35'), ('7504','585','37','atm','0','36'), ('7505','585','38','miox25','0','37'), ('7506','585','39','sonet','0','38'), ('7507','585','40','x25ple','0','39'), ('7508','585','41','iso88022llc','0','40'), ('7509','585','42','localTalk','0','41'), ('7510','585','43','smdsDxi','0','42'), ('7511','585','44','frameRelayService','0','43'), ('7512','585','45','v35','0','44'), ('7513','585','46','hssi','0','45'), ('7514','585','47','hippi','0','46'), ('7515','585','48','modem','0','47'), ('7516','585','49','aal5','0','48'), ('7517','585','50','sonetPath','0','49'), ('7518','585','51','sonetVT','0','50'), ('7519','585','52','smdsIcip','0','51'), ('7520','585','53','propVirtual','0','52'), ('7521','585','54','propMultiplexor','0','53'), ('7522','585','55','ieee80212','0','54'), ('7523','585','56','fibreChannel','0','55'), ('7524','585','57','hippiInterface','0','56'), ('7525','585','58','frameRelayInterconnect','0','57'), ('7526','585','59','aflane8023','0','58'), ('7527','585','60','aflane8025','0','59'), ('7528','585','61','cctEmul','0','60'), ('7529','585','62','fastEther','0','61'), ('7530','585','63','isdn','0','62'), ('7531','585','64','v11','0','63'), ('7532','585','65','v36','0','64'), ('7533','585','66','g703at64k','0','65'), ('7534','585','67','g703at2mb','0','66'), ('7535','585','68','qllc','0','67'), ('7536','585','69','fastEtherFX','0','68'), ('7537','585','70','channel','0','69'), ('7538','585','71','ieee80211','0','70'), ('7539','585','72','ibm370parChan','0','71'), ('7540','585','73','escon','0','72'), ('7541','585','74','dlsw','0','73'), ('7542','585','75','isdns','0','74'), ('7543','585','76','isdnu','0','75'), ('7544','585','77','lapd','0','76'), ('7545','585','78','ipSwitch','0','77'), ('7546','585','79','rsrb','0','78'), ('7547','585','80','atmLogical','0','79'), ('7548','585','81','ds0','0','80'), ('7549','585','82','ds0Bundle','0','81'), ('7550','585','83','bsc','0','82'), ('7551','585','84','async','0','83'), ('7552','585','85','cnr','0','84'), ('7553','585','86','iso88025Dtr','0','85'), ('7554','585','87','eplrs','0','86'), ('7555','585','88','arap','0','87'), ('7556','585','89','propCnls','0','88'), ('7557','585','90','hostPad','0','89'), ('7558','585','91','termPad','0','90'), ('7559','585','92','frameRelayMPI','0','91'), ('7560','585','93','x213','0','92'), ('7561','585','94','adsl','0','93'), ('7562','585','95','radsl','0','94'), ('7563','585','96','sdsl','0','95'), ('7564','585','97','vdsl','0','96'), ('7565','585','98','iso88025CRFPInt','0','97'), ('7566','585','99','myrinet','0','98'), ('7567','585','100','voiceEM','0','99'), ('7568','585','101','voiceFXO','0','100'), ('7569','585','102','voiceFXS','0','101'), ('7570','585','103','voiceEncap','0','102'), ('7571','585','104','voiceOverIp','0','103'), ('7572','585','105','atmDxi','0','104'), ('7573','585','106','atmFuni','0','105'), ('7574','585','107','atmIma','0','106'), ('7575','585','108','pppMultilinkBundle','0','107'), ('7576','585','109','ipOverCdlc','0','108'), ('7577','585','110','ipOverClaw','0','109'), ('7578','585','111','stackToStack','0','110'), ('7579','585','112','virtualIpAddress','0','111'), ('7580','585','113','mpc','0','112'), ('7581','585','114','ipOverAtm','0','113'), ('7582','585','115','iso88025Fiber','0','114'), ('7583','585','116','tdlc','0','115'), ('7584','585','117','gigabitEthernet','0','116'), ('7585','585','118','hdlc','0','117'), ('7586','585','119','lapf','0','118'), ('7587','585','120','v37','0','119'), ('7588','585','121','x25mlp','0','120'), ('7589','585','122','x25huntGroup','0','121'), ('7590','585','123','trasnpHdlc','0','122'), ('7591','585','124','interleave','0','123'), ('7592','585','125','fast','0','124'), ('7593','585','126','ip','0','125'), ('7594','585','127','docsCableMaclayer','0','126'), ('7595','585','128','docsCableDownstream','0','127'), ('7596','585','129','docsCableUpstream','0','128'), ('7597','585','130','a12MppSwitch','0','129'), ('7598','585','131','tunnel','0','130'), ('7599','585','132','coffee','0','131'), ('7600','585','133','ces','0','132'), ('7601','585','134','atmSubInterface','0','133'), ('7602','585','135','l2vlan','0','134'), ('7603','585','136','l3ipvlan','0','135'), ('7604','585','137','l3ipxvlan','0','136'), ('7605','585','138','digitalPowerline','0','137'), ('7606','585','139','mediaMailOverIp','0','138'), ('7607','585','140','dtm','0','139'), ('7608','585','141','dcn','0','140'), ('7609','585','142','ipForward','0','141'), ('7610','585','143','msdsl','0','142'), ('7611','585','144','ieee1394','0','143'), ('7612','585','145','if-gsn','0','144'), ('7613','585','146','dvbRccMacLayer','0','145'), ('7614','585','147','dvbRccDownstream','0','146'), ('7615','585','148','dvbRccUpstream','0','147'), ('7616','585','149','atmVirtual','0','148'), ('7617','585','150','mplsTunnel','0','149'), ('7618','585','151','srp','0','150'), ('7619','585','152','voiceOverAtm','0','151'), ('7620','585','153','voiceOverFrameRelay','0','152'), ('7621','585','154','idsl','0','153'), ('7622','585','155','compositeLink','0','154'), ('7623','585','156','ss7SigLink','0','155'), ('7624','585','157','propWirelessP2P','0','156'), ('7625','585','158','frForward','0','157'), ('7626','585','159','rfc1483','0','158'), ('7627','585','160','usb','0','159'), ('7628','585','161','ieee8023adLag','0','160'), ('7629','585','162','bgppolicyaccounting','0','161'), ('7630','585','163','frf16MfrBundle','0','162'), ('7631','585','164','h323Gatekeeper','0','163'), ('7632','585','165','h323Proxy','0','164'), ('7633','585','166','mpls','0','165'), ('7634','585','167','mfSigLink','0','166'), ('7635','585','168','hdsl2','0','167'), ('7636','585','169','shdsl','0','168'), ('7637','585','170','ds1FDL','0','169'), ('7638','585','171','pos','0','170'), ('7639','585','172','dvbAsiIn','0','171'), ('7640','585','173','dvbAsiOut','0','172'), ('7641','585','174','plc','0','173'), ('7642','585','175','nfas','0','174'), ('7643','585','176','tr008','0','175'), ('7644','585','177','gr303RDT','0','176'), ('7645','585','178','gr303IDT','0','177'), ('7646','585','179','isup','0','178'), ('7647','585','180','propDocsWirelessMaclayer','0','179'), ('7648','585','181','propDocsWirelessDownstream','0','180'), ('7649','585','182','propDocsWirelessUpstream','0','181'), ('7650','585','183','hiperlan2','0','182'), ('7651','585','184','propBWAp2Mp','0','183'), ('7652','585','185','sonetOverheadChannel','0','184'), ('7653','585','186','digitalWrapperOverheadChannel','0','185'), ('7654','585','187','aal2','0','186'), ('7655','585','188','radioMAC','0','187'), ('7656','585','189','atmRadio','0','188'), ('7657','585','190','imt','0','189'), ('7658','585','191','mvl','0','190'), ('7659','585','192','reachDSL','0','191'), ('7660','585','193','frDlciEndPt','0','192'), ('7661','585','194','atmVciEndPt','0','193'), ('7662','585','195','opticalChannel','0','194'), ('7663','585','196','opticalTransport','0','195'), ('7664','585','197','propAtm','0','196'), ('7665','585','198','voiceOverCable','0','197'), ('7666','585','199','infiniband','0','198'), ('7667','585','200','teLink','0','199'), ('7668','585','201','q2931','0','200'), ('7669','585','202','virtualTg','0','201'), ('7670','585','203','sipTg','0','202'), ('7671','585','204','sipSig','0','203'), ('7672','585','205','docsCableUpstreamChannel','0','204'), ('7673','585','206','econet','0','205'), ('7674','585','207','pon155','0','206'), ('7675','585','208','pon622','0','207'), ('7676','585','209','bridge','0','208'), ('7677','585','210','linegroup','0','209'), ('7678','585','211','voiceEMFGD','0','210'), ('7679','585','212','voiceFGDEANA','0','211'), ('7680','585','213','voiceDID','0','212'), ('7681','585','214','mpegTransport','0','213'), ('7682','585','215','sixToFour','0','214'), ('7683','585','216','gtp','0','215'), ('7684','585','217','pdnEtherLoop1','0','216'), ('7685','585','218','pdnEtherLoop2','0','217'), ('7686','585','219','opticalChannelGroup','0','218'), ('7687','585','220','homepna','0','219'), ('7688','585','221','gfp','0','220'), ('7689','585','222','ciscoISLvlan','0','221'), ('7690','585','223','actelisMetaLOOP','0','222'), ('7691','585','224','fcipLink','0','223'), ('7692','585','225','rpr','0','224'), ('7693','585','226','qam','0','225'), ('7694','585','227','lmp','0','226'), ('7695','585','228','cblVectaStar','0','227'), ('7696','585','229','docsCableMCmtsDownstream','0','228'), ('7697','585','230','adsl2','0','229'), ('7698','585','231','macSecControlledIF','0','230'), ('7699','585','232','macSecUncontrolledIF','0','231'), ('7700','585','233','aviciOpticalEther','0','232'), ('7701','585','234','atmbond','0','233'), ('7702','585','235','voiceFGDOS','0','234'), ('7703','585','236','mocaVersion1','0','235'), ('7704','585','237','ieee80216WMAN','0','236'), ('7705','585','238','adsl2plus','0','237'), ('7706','585','239','dvbRcsMacLayer','0','238'), ('7707','585','240','dvbTdm','0','239'), ('7708','585','241','dvbRcsTdma','0','240'), ('7709','585','242','x86Laps','0','241'), ('7710','585','243','wwanPP','0','242'), ('7711','585','244','wwanPP2','0','243'), ('7712','585','245','voiceEBS','0','244'), ('7713','585','246','ifPwType','0','245'), ('7714','585','247','ilan','0','246'), ('7715','585','248','pip','0','247'), ('7716','585','249','aluELP','0','248'), ('7717','585','250','gpon','0','249'), ('7718','585','251','vdsl2','0','250'), ('7719','585','252','capwapDot11Profile','0','251'), ('7720','585','253','capwapDot11Bss','0','252'), ('7721','585','254','capwapWtpVirtualRadio','0','253'), ('7722','585','255','bits','0','254'), ('7723','585','256','docsCableUpstreamRfPort','0','255'), ('7724','585','257','cableDownstreamRfPort','0','256'), ('7725','585','258','vmwareVirtualNic','0','257'), ('7726','585','259','ieee802154','0','258'), ('7727','585','260','otnOdu','0','259'), ('7728','585','261','otnOtu','0','260'), ('7729','585','262','ifVfiType','0','261'), ('7730','585','263','g9981','0','262'), ('7731','585','264','g9982','0','263'), ('7732','585','265','g9983','0','264'), ('7733','585','266','aluEpon','0','265'), ('7734','585','267','aluEponOnu','0','266'), ('7735','585','268','aluEponPhysicalUni','0','267'), ('7736','585','269','aluEponLogicalLink','0','268'), ('7737','585','270','aluGponOnu','0','269'), ('7738','585','271','aluGponPhysicalUni','0','270'), ('7739','585','272','vmwareNicTeam','0','271'), ('7740','585','277','docsOfdmDownstream','0','272'), ('7741','585','278','docsOfdmaUpstream','0','273'), ('7742','585','279','gfast','0','274'), ('7743','585','280','sdci','0','275'), ('7744','585','281','xboxWireless','0','276'), ('7745','585','282','fastdsl','0','277'), ('7746','585','283','docsCableScte55d1FwdOob','0','278'), ('7747','585','284','docsCableScte55d1RetOob','0','279'), ('7748','585','285','docsCableScte55d2DsOob','0','280'), ('7749','585','286','docsCableScte55d2UsOob','0','281'), ('7750','585','287','docsCableNdf','0','282'), ('7751','585','288','docsCableNdr','0','283'), ('7752','585','289','ptm','0','284'), ('7753','585','290','ghn','0','285'), ('7754','586','0','Down','0','0'), ('7755','586','1','Up','0','1'), ('7756','587','0','not available','0','0'), ('7757','587','1','available','0','1'), ('7758','587','2','unknown','0','2'), ('7759','588','1','up','0','0'), ('7760','588','2','down','0','1'), ('7761','588','4','unknown','0','2'), ('7762','588','5','dormant','0','3'), ('7763','588','6','notPresent','0','4'), ('7764','588','7','lowerLayerDown','0','5'), ('7765','589','1','other','0','0'), ('7766','589','2','regular1822','0','1'), ('7767','589','3','hdh1822','0','2'), ('7768','589','4','ddnX25','0','3'), ('7769','589','5','rfc877x25','0','4'), ('7770','589','6','ethernetCsmacd','0','5'), ('7771','589','7','iso88023Csmacd','0','6'), ('7772','589','8','iso88024TokenBus','0','7'), ('7773','589','9','iso88025TokenRing','0','8'), ('7774','589','10','iso88026Man','0','9'), ('7775','589','11','starLan','0','10'), ('7776','589','12','proteon10Mbit','0','11'), ('7777','589','13','proteon80Mbit','0','12'), ('7778','589','14','hyperchannel','0','13'), ('7779','589','15','fddi','0','14'), ('7780','589','16','lapb','0','15'), ('7781','589','17','sdlc','0','16'), ('7782','589','18','ds1','0','17'), ('7783','589','19','e1','0','18'), ('7784','589','20','basicISDN','0','19'), ('7785','589','21','primaryISDN','0','20'), ('7786','589','22','propPointToPointSerial','0','21'), ('7787','589','23','ppp','0','22'), ('7788','589','24','softwareLoopback','0','23'), ('7789','589','25','eon','0','24'), ('7790','589','26','ethernet3Mbit','0','25'), ('7791','589','27','nsip','0','26'), ('7792','589','28','slip','0','27'), ('7793','589','29','ultra','0','28'), ('7794','589','30','ds3','0','29'), ('7795','589','31','sip','0','30'), ('7796','589','32','frameRelay','0','31'), ('7797','589','33','rs232','0','32'), ('7798','589','34','para','0','33'), ('7799','589','35','arcnet','0','34'), ('7800','589','36','arcnetPlus','0','35'), ('7801','589','37','atm','0','36'), ('7802','589','38','miox25','0','37'), ('7803','589','39','sonet','0','38'), ('7804','589','40','x25ple','0','39'), ('7805','589','41','iso88022llc','0','40'), ('7806','589','42','localTalk','0','41'), ('7807','589','43','smdsDxi','0','42'), ('7808','589','44','frameRelayService','0','43'), ('7809','589','45','v35','0','44'), ('7810','589','46','hssi','0','45'), ('7811','589','47','hippi','0','46'), ('7812','589','48','modem','0','47'), ('7813','589','49','aal5','0','48'), ('7814','589','50','sonetPath','0','49'), ('7815','589','51','sonetVT','0','50'), ('7816','589','52','smdsIcip','0','51'), ('7817','589','53','propVirtual','0','52'), ('7818','589','54','propMultiplexor','0','53'), ('7819','589','55','ieee80212','0','54'), ('7820','589','56','fibreChannel','0','55'), ('7821','589','57','hippiInterface','0','56'), ('7822','589','58','frameRelayInterconnect','0','57'), ('7823','589','59','aflane8023','0','58'), ('7824','589','60','aflane8025','0','59'), ('7825','589','61','cctEmul','0','60'), ('7826','589','62','fastEther','0','61'), ('7827','589','63','isdn','0','62'), ('7828','589','64','v11','0','63'), ('7829','589','65','v36','0','64'), ('7830','589','66','g703at64k','0','65'), ('7831','589','67','g703at2mb','0','66'), ('7832','589','68','qllc','0','67'), ('7833','589','69','fastEtherFX','0','68'), ('7834','589','70','channel','0','69'), ('7835','589','71','ieee80211','0','70'), ('7836','589','72','ibm370parChan','0','71'), ('7837','589','73','escon','0','72'), ('7838','589','74','dlsw','0','73'), ('7839','589','75','isdns','0','74'), ('7840','589','76','isdnu','0','75'), ('7841','589','77','lapd','0','76'), ('7842','589','78','ipSwitch','0','77'), ('7843','589','79','rsrb','0','78'), ('7844','589','80','atmLogical','0','79'), ('7845','589','81','ds0','0','80'), ('7846','589','82','ds0Bundle','0','81'), ('7847','589','83','bsc','0','82'), ('7848','589','84','async','0','83'), ('7849','589','85','cnr','0','84'), ('7850','589','86','iso88025Dtr','0','85'), ('7851','589','87','eplrs','0','86'), ('7852','589','88','arap','0','87'), ('7853','589','89','propCnls','0','88'), ('7854','589','90','hostPad','0','89'), ('7855','589','91','termPad','0','90'), ('7856','589','92','frameRelayMPI','0','91'), ('7857','589','93','x213','0','92'), ('7858','589','94','adsl','0','93'), ('7859','589','95','radsl','0','94'), ('7860','589','96','sdsl','0','95'), ('7861','589','97','vdsl','0','96'), ('7862','589','98','iso88025CRFPInt','0','97'), ('7863','589','99','myrinet','0','98'), ('7864','589','100','voiceEM','0','99'), ('7865','589','101','voiceFXO','0','100'), ('7866','589','102','voiceFXS','0','101'), ('7867','589','103','voiceEncap','0','102'), ('7868','589','104','voiceOverIp','0','103'), ('7869','589','105','atmDxi','0','104'), ('7870','589','106','atmFuni','0','105'), ('7871','589','107','atmIma','0','106'), ('7872','589','108','pppMultilinkBundle','0','107'), ('7873','589','109','ipOverCdlc','0','108'), ('7874','589','110','ipOverClaw','0','109'), ('7875','589','111','stackToStack','0','110'), ('7876','589','112','virtualIpAddress','0','111'), ('7877','589','113','mpc','0','112'), ('7878','589','114','ipOverAtm','0','113'), ('7879','589','115','iso88025Fiber','0','114'), ('7880','589','116','tdlc','0','115'), ('7881','589','117','gigabitEthernet','0','116'), ('7882','589','118','hdlc','0','117'), ('7883','589','119','lapf','0','118'), ('7884','589','120','v37','0','119'), ('7885','589','121','x25mlp','0','120'), ('7886','589','122','x25huntGroup','0','121'), ('7887','589','123','trasnpHdlc','0','122'), ('7888','589','124','interleave','0','123'), ('7889','589','125','fast','0','124'), ('7890','589','126','ip','0','125'), ('7891','589','127','docsCableMaclayer','0','126'), ('7892','589','128','docsCableDownstream','0','127'), ('7893','589','129','docsCableUpstream','0','128'), ('7894','589','130','a12MppSwitch','0','129'), ('7895','589','131','tunnel','0','130'), ('7896','589','132','coffee','0','131'), ('7897','589','133','ces','0','132'), ('7898','589','134','atmSubInterface','0','133'), ('7899','589','135','l2vlan','0','134'), ('7900','589','136','l3ipvlan','0','135'), ('7901','589','137','l3ipxvlan','0','136'), ('7902','589','138','digitalPowerline','0','137'), ('7903','589','139','mediaMailOverIp','0','138'), ('7904','589','140','dtm','0','139'), ('7905','589','141','dcn','0','140'), ('7906','589','142','ipForward','0','141'), ('7907','589','143','msdsl','0','142'), ('7908','589','144','ieee1394','0','143'), ('7909','589','145','if-gsn','0','144'), ('7910','589','146','dvbRccMacLayer','0','145'), ('7911','589','147','dvbRccDownstream','0','146'), ('7912','589','148','dvbRccUpstream','0','147'), ('7913','589','149','atmVirtual','0','148'), ('7914','589','150','mplsTunnel','0','149'), ('7915','589','151','srp','0','150'), ('7916','589','152','voiceOverAtm','0','151'), ('7917','589','153','voiceOverFrameRelay','0','152'), ('7918','589','154','idsl','0','153'), ('7919','589','155','compositeLink','0','154'), ('7920','589','156','ss7SigLink','0','155'), ('7921','589','157','propWirelessP2P','0','156'), ('7922','589','158','frForward','0','157'), ('7923','589','159','rfc1483','0','158'), ('7924','589','160','usb','0','159'), ('7925','589','161','ieee8023adLag','0','160'), ('7926','589','162','bgppolicyaccounting','0','161'), ('7927','589','163','frf16MfrBundle','0','162'), ('7928','589','164','h323Gatekeeper','0','163'), ('7929','589','165','h323Proxy','0','164'), ('7930','589','166','mpls','0','165'), ('7931','589','167','mfSigLink','0','166'), ('7932','589','168','hdsl2','0','167'), ('7933','589','169','shdsl','0','168'), ('7934','589','170','ds1FDL','0','169'), ('7935','589','171','pos','0','170'), ('7936','589','172','dvbAsiIn','0','171'), ('7937','589','173','dvbAsiOut','0','172'), ('7938','589','174','plc','0','173'), ('7939','589','175','nfas','0','174'), ('7940','589','176','tr008','0','175'), ('7941','589','177','gr303RDT','0','176'), ('7942','589','178','gr303IDT','0','177'), ('7943','589','179','isup','0','178'), ('7944','589','180','propDocsWirelessMaclayer','0','179'), ('7945','589','181','propDocsWirelessDownstream','0','180'), ('7946','589','182','propDocsWirelessUpstream','0','181'), ('7947','589','183','hiperlan2','0','182'), ('7948','589','184','propBWAp2Mp','0','183'), ('7949','589','185','sonetOverheadChannel','0','184'), ('7950','589','186','digitalWrapperOverheadChannel','0','185'), ('7951','589','187','aal2','0','186'), ('7952','589','188','radioMAC','0','187'), ('7953','589','189','atmRadio','0','188'), ('7954','589','190','imt','0','189'), ('7955','589','191','mvl','0','190'), ('7956','589','192','reachDSL','0','191'), ('7957','589','193','frDlciEndPt','0','192'), ('7958','589','194','atmVciEndPt','0','193'), ('7959','589','195','opticalChannel','0','194'), ('7960','589','196','opticalTransport','0','195'), ('7961','589','197','propAtm','0','196'), ('7962','589','198','voiceOverCable','0','197'), ('7963','589','199','infiniband','0','198'), ('7964','589','200','teLink','0','199'), ('7965','589','201','q2931','0','200'), ('7966','589','202','virtualTg','0','201'), ('7967','589','203','sipTg','0','202'), ('7968','589','204','sipSig','0','203'), ('7969','589','205','docsCableUpstreamChannel','0','204'), ('7970','589','206','econet','0','205'), ('7971','589','207','pon155','0','206'), ('7972','589','208','pon622','0','207'), ('7973','589','209','bridge','0','208'), ('7974','589','210','linegroup','0','209'), ('7975','589','211','voiceEMFGD','0','210'), ('7976','589','212','voiceFGDEANA','0','211'), ('7977','589','213','voiceDID','0','212'), ('7978','589','214','mpegTransport','0','213'), ('7979','589','215','sixToFour','0','214'), ('7980','589','216','gtp','0','215'), ('7981','589','217','pdnEtherLoop1','0','216'), ('7982','589','218','pdnEtherLoop2','0','217'), ('7983','589','219','opticalChannelGroup','0','218'), ('7984','589','220','homepna','0','219'), ('7985','589','221','gfp','0','220'), ('7986','589','222','ciscoISLvlan','0','221'), ('7987','589','223','actelisMetaLOOP','0','222'), ('7988','589','224','fcipLink','0','223'), ('7989','589','225','rpr','0','224'), ('7990','589','226','qam','0','225'), ('7991','589','227','lmp','0','226'), ('7992','589','228','cblVectaStar','0','227'), ('7993','589','229','docsCableMCmtsDownstream','0','228'), ('7994','589','230','adsl2','0','229'), ('7995','589','231','macSecControlledIF','0','230'), ('7996','589','232','macSecUncontrolledIF','0','231'), ('7997','589','233','aviciOpticalEther','0','232'), ('7998','589','234','atmbond','0','233'), ('7999','589','235','voiceFGDOS','0','234'), ('8000','589','236','mocaVersion1','0','235'), ('8001','589','237','ieee80216WMAN','0','236'), ('8002','589','238','adsl2plus','0','237'), ('8003','589','239','dvbRcsMacLayer','0','238'), ('8004','589','240','dvbTdm','0','239'), ('8005','589','241','dvbRcsTdma','0','240'), ('8006','589','242','x86Laps','0','241'), ('8007','589','243','wwanPP','0','242'), ('8008','589','244','wwanPP2','0','243'), ('8009','589','245','voiceEBS','0','244'), ('8010','589','246','ifPwType','0','245'), ('8011','589','247','ilan','0','246'), ('8012','589','248','pip','0','247'), ('8013','589','249','aluELP','0','248'), ('8014','589','250','gpon','0','249'), ('8015','589','251','vdsl2','0','250'), ('8016','589','252','capwapDot11Profile','0','251'), ('8017','589','253','capwapDot11Bss','0','252'), ('8018','589','254','capwapWtpVirtualRadio','0','253'), ('8019','589','255','bits','0','254'), ('8020','589','256','docsCableUpstreamRfPort','0','255'), ('8021','589','257','cableDownstreamRfPort','0','256'), ('8022','589','258','vmwareVirtualNic','0','257'), ('8023','589','259','ieee802154','0','258'), ('8024','589','260','otnOdu','0','259'), ('8025','589','261','otnOtu','0','260'), ('8026','589','262','ifVfiType','0','261'), ('8027','589','263','g9981','0','262'), ('8028','589','264','g9982','0','263'), ('8029','589','265','g9983','0','264'), ('8030','589','266','aluEpon','0','265'), ('8031','589','267','aluEponOnu','0','266'), ('8032','589','268','aluEponPhysicalUni','0','267'), ('8033','589','269','aluEponLogicalLink','0','268'), ('8034','589','270','aluGponOnu','0','269'), ('8035','589','271','aluGponPhysicalUni','0','270'), ('8036','589','272','vmwareNicTeam','0','271'), ('8037','589','277','docsOfdmDownstream','0','272'), ('8038','589','278','docsOfdmaUpstream','0','273'), ('8039','589','279','gfast','0','274'), ('8040','589','280','sdci','0','275'), ('8041','589','281','xboxWireless','0','276'), ('8042','589','282','fastdsl','0','277'), ('8043','589','283','docsCableScte55d1FwdOob','0','278'), ('8044','589','284','docsCableScte55d1RetOob','0','279'), ('8045','589','285','docsCableScte55d2DsOob','0','280'), ('8046','589','286','docsCableScte55d2UsOob','0','281'), ('8047','589','287','docsCableNdf','0','282'), ('8048','589','288','docsCableNdr','0','283'), ('8049','589','289','ptm','0','284'), ('8050','589','290','ghn','0','285'), ('8051','590','0','Down','0','0'), ('8052','590','1','Up','0','1'), ('8053','591','0','not available','0','0'), ('8054','591','1','available','0','1'), ('8055','591','2','unknown','0','2'), ('8056','592','1','up','0','0'), ('8057','592','2','down','0','1'), ('8058','592','4','unknown','0','2'), ('8059','592','5','dormant','0','3'), ('8060','592','6','notPresent','0','4'), ('8061','592','7','lowerLayerDown','0','5'), ('8062','593','1','other','0','0'), ('8063','593','2','regular1822','0','1'), ('8064','593','3','hdh1822','0','2'), ('8065','593','4','ddnX25','0','3'), ('8066','593','5','rfc877x25','0','4'), ('8067','593','6','ethernetCsmacd','0','5'), ('8068','593','7','iso88023Csmacd','0','6'), ('8069','593','8','iso88024TokenBus','0','7'), ('8070','593','9','iso88025TokenRing','0','8'), ('8071','593','10','iso88026Man','0','9'), ('8072','593','11','starLan','0','10'), ('8073','593','12','proteon10Mbit','0','11'), ('8074','593','13','proteon80Mbit','0','12'), ('8075','593','14','hyperchannel','0','13'), ('8076','593','15','fddi','0','14'), ('8077','593','16','lapb','0','15'), ('8078','593','17','sdlc','0','16'), ('8079','593','18','ds1','0','17'), ('8080','593','19','e1','0','18'), ('8081','593','20','basicISDN','0','19'), ('8082','593','21','primaryISDN','0','20'), ('8083','593','22','propPointToPointSerial','0','21'), ('8084','593','23','ppp','0','22'), ('8085','593','24','softwareLoopback','0','23'), ('8086','593','25','eon','0','24'), ('8087','593','26','ethernet3Mbit','0','25'), ('8088','593','27','nsip','0','26'), ('8089','593','28','slip','0','27'), ('8090','593','29','ultra','0','28'), ('8091','593','30','ds3','0','29'), ('8092','593','31','sip','0','30'), ('8093','593','32','frameRelay','0','31'), ('8094','593','33','rs232','0','32'), ('8095','593','34','para','0','33'), ('8096','593','35','arcnet','0','34'), ('8097','593','36','arcnetPlus','0','35'), ('8098','593','37','atm','0','36'), ('8099','593','38','miox25','0','37'), ('8100','593','39','sonet','0','38'), ('8101','593','40','x25ple','0','39'), ('8102','593','41','iso88022llc','0','40'), ('8103','593','42','localTalk','0','41'), ('8104','593','43','smdsDxi','0','42'), ('8105','593','44','frameRelayService','0','43'), ('8106','593','45','v35','0','44'), ('8107','593','46','hssi','0','45'), ('8108','593','47','hippi','0','46'), ('8109','593','48','modem','0','47'), ('8110','593','49','aal5','0','48'), ('8111','593','50','sonetPath','0','49'), ('8112','593','51','sonetVT','0','50'), ('8113','593','52','smdsIcip','0','51'), ('8114','593','53','propVirtual','0','52'), ('8115','593','54','propMultiplexor','0','53'), ('8116','593','55','ieee80212','0','54'), ('8117','593','56','fibreChannel','0','55'), ('8118','593','57','hippiInterface','0','56'), ('8119','593','58','frameRelayInterconnect','0','57'), ('8120','593','59','aflane8023','0','58'), ('8121','593','60','aflane8025','0','59'), ('8122','593','61','cctEmul','0','60'), ('8123','593','62','fastEther','0','61'), ('8124','593','63','isdn','0','62'), ('8125','593','64','v11','0','63'), ('8126','593','65','v36','0','64'), ('8127','593','66','g703at64k','0','65'), ('8128','593','67','g703at2mb','0','66'), ('8129','593','68','qllc','0','67'), ('8130','593','69','fastEtherFX','0','68'), ('8131','593','70','channel','0','69'), ('8132','593','71','ieee80211','0','70'), ('8133','593','72','ibm370parChan','0','71'), ('8134','593','73','escon','0','72'), ('8135','593','74','dlsw','0','73'), ('8136','593','75','isdns','0','74'), ('8137','593','76','isdnu','0','75'), ('8138','593','77','lapd','0','76'), ('8139','593','78','ipSwitch','0','77'), ('8140','593','79','rsrb','0','78'), ('8141','593','80','atmLogical','0','79'), ('8142','593','81','ds0','0','80'), ('8143','593','82','ds0Bundle','0','81'), ('8144','593','83','bsc','0','82'), ('8145','593','84','async','0','83'), ('8146','593','85','cnr','0','84'), ('8147','593','86','iso88025Dtr','0','85'), ('8148','593','87','eplrs','0','86'), ('8149','593','88','arap','0','87'), ('8150','593','89','propCnls','0','88'), ('8151','593','90','hostPad','0','89'), ('8152','593','91','termPad','0','90'), ('8153','593','92','frameRelayMPI','0','91'), ('8154','593','93','x213','0','92'), ('8155','593','94','adsl','0','93'), ('8156','593','95','radsl','0','94'), ('8157','593','96','sdsl','0','95'), ('8158','593','97','vdsl','0','96'), ('8159','593','98','iso88025CRFPInt','0','97'), ('8160','593','99','myrinet','0','98'), ('8161','593','100','voiceEM','0','99'), ('8162','593','101','voiceFXO','0','100'), ('8163','593','102','voiceFXS','0','101'), ('8164','593','103','voiceEncap','0','102'), ('8165','593','104','voiceOverIp','0','103'), ('8166','593','105','atmDxi','0','104'), ('8167','593','106','atmFuni','0','105'), ('8168','593','107','atmIma','0','106'), ('8169','593','108','pppMultilinkBundle','0','107'), ('8170','593','109','ipOverCdlc','0','108'), ('8171','593','110','ipOverClaw','0','109'), ('8172','593','111','stackToStack','0','110'), ('8173','593','112','virtualIpAddress','0','111'), ('8174','593','113','mpc','0','112'), ('8175','593','114','ipOverAtm','0','113'), ('8176','593','115','iso88025Fiber','0','114'), ('8177','593','116','tdlc','0','115'), ('8178','593','117','gigabitEthernet','0','116'), ('8179','593','118','hdlc','0','117'), ('8180','593','119','lapf','0','118'), ('8181','593','120','v37','0','119'), ('8182','593','121','x25mlp','0','120'), ('8183','593','122','x25huntGroup','0','121'), ('8184','593','123','trasnpHdlc','0','122'), ('8185','593','124','interleave','0','123'), ('8186','593','125','fast','0','124'), ('8187','593','126','ip','0','125'), ('8188','593','127','docsCableMaclayer','0','126'), ('8189','593','128','docsCableDownstream','0','127'), ('8190','593','129','docsCableUpstream','0','128'), ('8191','593','130','a12MppSwitch','0','129'), ('8192','593','131','tunnel','0','130'), ('8193','593','132','coffee','0','131'), ('8194','593','133','ces','0','132'), ('8195','593','134','atmSubInterface','0','133'), ('8196','593','135','l2vlan','0','134'), ('8197','593','136','l3ipvlan','0','135'), ('8198','593','137','l3ipxvlan','0','136'), ('8199','593','138','digitalPowerline','0','137'), ('8200','593','139','mediaMailOverIp','0','138'), ('8201','593','140','dtm','0','139'), ('8202','593','141','dcn','0','140'), ('8203','593','142','ipForward','0','141'), ('8204','593','143','msdsl','0','142'), ('8205','593','144','ieee1394','0','143'), ('8206','593','145','if-gsn','0','144'), ('8207','593','146','dvbRccMacLayer','0','145'), ('8208','593','147','dvbRccDownstream','0','146'), ('8209','593','148','dvbRccUpstream','0','147'), ('8210','593','149','atmVirtual','0','148'), ('8211','593','150','mplsTunnel','0','149'), ('8212','593','151','srp','0','150'), ('8213','593','152','voiceOverAtm','0','151'), ('8214','593','153','voiceOverFrameRelay','0','152'), ('8215','593','154','idsl','0','153'), ('8216','593','155','compositeLink','0','154'), ('8217','593','156','ss7SigLink','0','155'), ('8218','593','157','propWirelessP2P','0','156'), ('8219','593','158','frForward','0','157'), ('8220','593','159','rfc1483','0','158'), ('8221','593','160','usb','0','159'), ('8222','593','161','ieee8023adLag','0','160'), ('8223','593','162','bgppolicyaccounting','0','161'), ('8224','593','163','frf16MfrBundle','0','162'), ('8225','593','164','h323Gatekeeper','0','163'), ('8226','593','165','h323Proxy','0','164'), ('8227','593','166','mpls','0','165'), ('8228','593','167','mfSigLink','0','166'), ('8229','593','168','hdsl2','0','167'), ('8230','593','169','shdsl','0','168'), ('8231','593','170','ds1FDL','0','169'), ('8232','593','171','pos','0','170'), ('8233','593','172','dvbAsiIn','0','171'), ('8234','593','173','dvbAsiOut','0','172'), ('8235','593','174','plc','0','173'), ('8236','593','175','nfas','0','174'), ('8237','593','176','tr008','0','175'), ('8238','593','177','gr303RDT','0','176'), ('8239','593','178','gr303IDT','0','177'), ('8240','593','179','isup','0','178'), ('8241','593','180','propDocsWirelessMaclayer','0','179'), ('8242','593','181','propDocsWirelessDownstream','0','180'), ('8243','593','182','propDocsWirelessUpstream','0','181'), ('8244','593','183','hiperlan2','0','182'), ('8245','593','184','propBWAp2Mp','0','183'), ('8246','593','185','sonetOverheadChannel','0','184'), ('8247','593','186','digitalWrapperOverheadChannel','0','185'), ('8248','593','187','aal2','0','186'), ('8249','593','188','radioMAC','0','187'), ('8250','593','189','atmRadio','0','188'), ('8251','593','190','imt','0','189'), ('8252','593','191','mvl','0','190'), ('8253','593','192','reachDSL','0','191'), ('8254','593','193','frDlciEndPt','0','192'), ('8255','593','194','atmVciEndPt','0','193'), ('8256','593','195','opticalChannel','0','194'), ('8257','593','196','opticalTransport','0','195'), ('8258','593','197','propAtm','0','196'), ('8259','593','198','voiceOverCable','0','197'), ('8260','593','199','infiniband','0','198'), ('8261','593','200','teLink','0','199'), ('8262','593','201','q2931','0','200'), ('8263','593','202','virtualTg','0','201'), ('8264','593','203','sipTg','0','202'), ('8265','593','204','sipSig','0','203'), ('8266','593','205','docsCableUpstreamChannel','0','204'), ('8267','593','206','econet','0','205'), ('8268','593','207','pon155','0','206'), ('8269','593','208','pon622','0','207'), ('8270','593','209','bridge','0','208'), ('8271','593','210','linegroup','0','209'), ('8272','593','211','voiceEMFGD','0','210'), ('8273','593','212','voiceFGDEANA','0','211'), ('8274','593','213','voiceDID','0','212'), ('8275','593','214','mpegTransport','0','213'), ('8276','593','215','sixToFour','0','214'), ('8277','593','216','gtp','0','215'), ('8278','593','217','pdnEtherLoop1','0','216'), ('8279','593','218','pdnEtherLoop2','0','217'), ('8280','593','219','opticalChannelGroup','0','218'), ('8281','593','220','homepna','0','219'), ('8282','593','221','gfp','0','220'), ('8283','593','222','ciscoISLvlan','0','221'), ('8284','593','223','actelisMetaLOOP','0','222'), ('8285','593','224','fcipLink','0','223'), ('8286','593','225','rpr','0','224'), ('8287','593','226','qam','0','225'), ('8288','593','227','lmp','0','226'), ('8289','593','228','cblVectaStar','0','227'), ('8290','593','229','docsCableMCmtsDownstream','0','228'), ('8291','593','230','adsl2','0','229'), ('8292','593','231','macSecControlledIF','0','230'), ('8293','593','232','macSecUncontrolledIF','0','231'), ('8294','593','233','aviciOpticalEther','0','232'), ('8295','593','234','atmbond','0','233'), ('8296','593','235','voiceFGDOS','0','234'), ('8297','593','236','mocaVersion1','0','235'), ('8298','593','237','ieee80216WMAN','0','236'), ('8299','593','238','adsl2plus','0','237'), ('8300','593','239','dvbRcsMacLayer','0','238'), ('8301','593','240','dvbTdm','0','239'), ('8302','593','241','dvbRcsTdma','0','240'), ('8303','593','242','x86Laps','0','241'), ('8304','593','243','wwanPP','0','242'), ('8305','593','244','wwanPP2','0','243'), ('8306','593','245','voiceEBS','0','244'), ('8307','593','246','ifPwType','0','245'), ('8308','593','247','ilan','0','246'), ('8309','593','248','pip','0','247'), ('8310','593','249','aluELP','0','248'), ('8311','593','250','gpon','0','249'), ('8312','593','251','vdsl2','0','250'), ('8313','593','252','capwapDot11Profile','0','251'), ('8314','593','253','capwapDot11Bss','0','252'), ('8315','593','254','capwapWtpVirtualRadio','0','253'), ('8316','593','255','bits','0','254'), ('8317','593','256','docsCableUpstreamRfPort','0','255'), ('8318','593','257','cableDownstreamRfPort','0','256'), ('8319','593','258','vmwareVirtualNic','0','257'), ('8320','593','259','ieee802154','0','258'), ('8321','593','260','otnOdu','0','259'), ('8322','593','261','otnOtu','0','260'), ('8323','593','262','ifVfiType','0','261'), ('8324','593','263','g9981','0','262'), ('8325','593','264','g9982','0','263'), ('8326','593','265','g9983','0','264'), ('8327','593','266','aluEpon','0','265'), ('8328','593','267','aluEponOnu','0','266'), ('8329','593','268','aluEponPhysicalUni','0','267'), ('8330','593','269','aluEponLogicalLink','0','268'), ('8331','593','270','aluGponOnu','0','269'), ('8332','593','271','aluGponPhysicalUni','0','270'), ('8333','593','272','vmwareNicTeam','0','271'), ('8334','593','277','docsOfdmDownstream','0','272'), ('8335','593','278','docsOfdmaUpstream','0','273'), ('8336','593','279','gfast','0','274'), ('8337','593','280','sdci','0','275'), ('8338','593','281','xboxWireless','0','276'), ('8339','593','282','fastdsl','0','277'), ('8340','593','283','docsCableScte55d1FwdOob','0','278'), ('8341','593','284','docsCableScte55d1RetOob','0','279'), ('8342','593','285','docsCableScte55d2DsOob','0','280'), ('8343','593','286','docsCableScte55d2UsOob','0','281'), ('8344','593','287','docsCableNdf','0','282'), ('8345','593','288','docsCableNdr','0','283'), ('8346','593','289','ptm','0','284'), ('8347','593','290','ghn','0','285'), ('8348','594','0','Down','0','0'), ('8349','594','1','Up','0','1'), ('8350','595','0','not available','0','0'), ('8351','595','1','available','0','1'), ('8352','595','2','unknown','0','2'), ('8353','596','1','up','0','0'), ('8354','596','2','down','0','1'), ('8355','596','4','unknown','0','2'), ('8356','596','5','dormant','0','3'), ('8357','596','6','notPresent','0','4'), ('8358','596','7','lowerLayerDown','0','5'), ('8359','597','1','other','0','0'), ('8360','597','2','regular1822','0','1'), ('8361','597','3','hdh1822','0','2'), ('8362','597','4','ddnX25','0','3'), ('8363','597','5','rfc877x25','0','4'), ('8364','597','6','ethernetCsmacd','0','5'), ('8365','597','7','iso88023Csmacd','0','6'), ('8366','597','8','iso88024TokenBus','0','7'), ('8367','597','9','iso88025TokenRing','0','8'), ('8368','597','10','iso88026Man','0','9'), ('8369','597','11','starLan','0','10'), ('8370','597','12','proteon10Mbit','0','11'), ('8371','597','13','proteon80Mbit','0','12'), ('8372','597','14','hyperchannel','0','13'), ('8373','597','15','fddi','0','14'), ('8374','597','16','lapb','0','15'), ('8375','597','17','sdlc','0','16'), ('8376','597','18','ds1','0','17'), ('8377','597','19','e1','0','18'), ('8378','597','20','basicISDN','0','19'), ('8379','597','21','primaryISDN','0','20'), ('8380','597','22','propPointToPointSerial','0','21'), ('8381','597','23','ppp','0','22'), ('8382','597','24','softwareLoopback','0','23'), ('8383','597','25','eon','0','24'), ('8384','597','26','ethernet3Mbit','0','25'), ('8385','597','27','nsip','0','26'), ('8386','597','28','slip','0','27'), ('8387','597','29','ultra','0','28'), ('8388','597','30','ds3','0','29'), ('8389','597','31','sip','0','30'), ('8390','597','32','frameRelay','0','31'), ('8391','597','33','rs232','0','32'), ('8392','597','34','para','0','33'), ('8393','597','35','arcnet','0','34'), ('8394','597','36','arcnetPlus','0','35'), ('8395','597','37','atm','0','36'), ('8396','597','38','miox25','0','37'), ('8397','597','39','sonet','0','38'), ('8398','597','40','x25ple','0','39'), ('8399','597','41','iso88022llc','0','40'), ('8400','597','42','localTalk','0','41'), ('8401','597','43','smdsDxi','0','42'), ('8402','597','44','frameRelayService','0','43'), ('8403','597','45','v35','0','44'), ('8404','597','46','hssi','0','45'), ('8405','597','47','hippi','0','46'), ('8406','597','48','modem','0','47'), ('8407','597','49','aal5','0','48'), ('8408','597','50','sonetPath','0','49'), ('8409','597','51','sonetVT','0','50'), ('8410','597','52','smdsIcip','0','51'), ('8411','597','53','propVirtual','0','52'), ('8412','597','54','propMultiplexor','0','53'), ('8413','597','55','ieee80212','0','54'), ('8414','597','56','fibreChannel','0','55'), ('8415','597','57','hippiInterface','0','56'), ('8416','597','58','frameRelayInterconnect','0','57'), ('8417','597','59','aflane8023','0','58'), ('8418','597','60','aflane8025','0','59'), ('8419','597','61','cctEmul','0','60'), ('8420','597','62','fastEther','0','61'), ('8421','597','63','isdn','0','62'), ('8422','597','64','v11','0','63'), ('8423','597','65','v36','0','64'), ('8424','597','66','g703at64k','0','65'), ('8425','597','67','g703at2mb','0','66'), ('8426','597','68','qllc','0','67'), ('8427','597','69','fastEtherFX','0','68'), ('8428','597','70','channel','0','69'), ('8429','597','71','ieee80211','0','70'), ('8430','597','72','ibm370parChan','0','71'), ('8431','597','73','escon','0','72'), ('8432','597','74','dlsw','0','73'), ('8433','597','75','isdns','0','74'), ('8434','597','76','isdnu','0','75'), ('8435','597','77','lapd','0','76'), ('8436','597','78','ipSwitch','0','77'), ('8437','597','79','rsrb','0','78'), ('8438','597','80','atmLogical','0','79'), ('8439','597','81','ds0','0','80'), ('8440','597','82','ds0Bundle','0','81'), ('8441','597','83','bsc','0','82'), ('8442','597','84','async','0','83'), ('8443','597','85','cnr','0','84'), ('8444','597','86','iso88025Dtr','0','85'), ('8445','597','87','eplrs','0','86'), ('8446','597','88','arap','0','87'), ('8447','597','89','propCnls','0','88'), ('8448','597','90','hostPad','0','89'), ('8449','597','91','termPad','0','90'), ('8450','597','92','frameRelayMPI','0','91'), ('8451','597','93','x213','0','92'), ('8452','597','94','adsl','0','93'), ('8453','597','95','radsl','0','94'), ('8454','597','96','sdsl','0','95'), ('8455','597','97','vdsl','0','96'), ('8456','597','98','iso88025CRFPInt','0','97'), ('8457','597','99','myrinet','0','98'), ('8458','597','100','voiceEM','0','99'), ('8459','597','101','voiceFXO','0','100'), ('8460','597','102','voiceFXS','0','101'), ('8461','597','103','voiceEncap','0','102'), ('8462','597','104','voiceOverIp','0','103'), ('8463','597','105','atmDxi','0','104'), ('8464','597','106','atmFuni','0','105'), ('8465','597','107','atmIma','0','106'), ('8466','597','108','pppMultilinkBundle','0','107'), ('8467','597','109','ipOverCdlc','0','108'), ('8468','597','110','ipOverClaw','0','109'), ('8469','597','111','stackToStack','0','110'), ('8470','597','112','virtualIpAddress','0','111'), ('8471','597','113','mpc','0','112'), ('8472','597','114','ipOverAtm','0','113'), ('8473','597','115','iso88025Fiber','0','114'), ('8474','597','116','tdlc','0','115'), ('8475','597','117','gigabitEthernet','0','116'), ('8476','597','118','hdlc','0','117'), ('8477','597','119','lapf','0','118'), ('8478','597','120','v37','0','119'), ('8479','597','121','x25mlp','0','120'), ('8480','597','122','x25huntGroup','0','121'), ('8481','597','123','trasnpHdlc','0','122'), ('8482','597','124','interleave','0','123'), ('8483','597','125','fast','0','124'), ('8484','597','126','ip','0','125'), ('8485','597','127','docsCableMaclayer','0','126'), ('8486','597','128','docsCableDownstream','0','127'), ('8487','597','129','docsCableUpstream','0','128'), ('8488','597','130','a12MppSwitch','0','129'), ('8489','597','131','tunnel','0','130'), ('8490','597','132','coffee','0','131'), ('8491','597','133','ces','0','132'), ('8492','597','134','atmSubInterface','0','133'), ('8493','597','135','l2vlan','0','134'), ('8494','597','136','l3ipvlan','0','135'), ('8495','597','137','l3ipxvlan','0','136'), ('8496','597','138','digitalPowerline','0','137'), ('8497','597','139','mediaMailOverIp','0','138'), ('8498','597','140','dtm','0','139'), ('8499','597','141','dcn','0','140'), ('8500','597','142','ipForward','0','141'), ('8501','597','143','msdsl','0','142'), ('8502','597','144','ieee1394','0','143'), ('8503','597','145','if-gsn','0','144'), ('8504','597','146','dvbRccMacLayer','0','145'), ('8505','597','147','dvbRccDownstream','0','146'), ('8506','597','148','dvbRccUpstream','0','147'), ('8507','597','149','atmVirtual','0','148'), ('8508','597','150','mplsTunnel','0','149'), ('8509','597','151','srp','0','150'), ('8510','597','152','voiceOverAtm','0','151'), ('8511','597','153','voiceOverFrameRelay','0','152'), ('8512','597','154','idsl','0','153'), ('8513','597','155','compositeLink','0','154'), ('8514','597','156','ss7SigLink','0','155'), ('8515','597','157','propWirelessP2P','0','156'), ('8516','597','158','frForward','0','157'), ('8517','597','159','rfc1483','0','158'), ('8518','597','160','usb','0','159'), ('8519','597','161','ieee8023adLag','0','160'), ('8520','597','162','bgppolicyaccounting','0','161'), ('8521','597','163','frf16MfrBundle','0','162'), ('8522','597','164','h323Gatekeeper','0','163'), ('8523','597','165','h323Proxy','0','164'), ('8524','597','166','mpls','0','165'), ('8525','597','167','mfSigLink','0','166'), ('8526','597','168','hdsl2','0','167'), ('8527','597','169','shdsl','0','168'), ('8528','597','170','ds1FDL','0','169'), ('8529','597','171','pos','0','170'), ('8530','597','172','dvbAsiIn','0','171'), ('8531','597','173','dvbAsiOut','0','172'), ('8532','597','174','plc','0','173'), ('8533','597','175','nfas','0','174'), ('8534','597','176','tr008','0','175'), ('8535','597','177','gr303RDT','0','176'), ('8536','597','178','gr303IDT','0','177'), ('8537','597','179','isup','0','178'), ('8538','597','180','propDocsWirelessMaclayer','0','179'), ('8539','597','181','propDocsWirelessDownstream','0','180'), ('8540','597','182','propDocsWirelessUpstream','0','181'), ('8541','597','183','hiperlan2','0','182'), ('8542','597','184','propBWAp2Mp','0','183'), ('8543','597','185','sonetOverheadChannel','0','184'), ('8544','597','186','digitalWrapperOverheadChannel','0','185'), ('8545','597','187','aal2','0','186'), ('8546','597','188','radioMAC','0','187'), ('8547','597','189','atmRadio','0','188'), ('8548','597','190','imt','0','189'), ('8549','597','191','mvl','0','190'), ('8550','597','192','reachDSL','0','191'), ('8551','597','193','frDlciEndPt','0','192'), ('8552','597','194','atmVciEndPt','0','193'), ('8553','597','195','opticalChannel','0','194'), ('8554','597','196','opticalTransport','0','195'), ('8555','597','197','propAtm','0','196'), ('8556','597','198','voiceOverCable','0','197'), ('8557','597','199','infiniband','0','198'), ('8558','597','200','teLink','0','199'), ('8559','597','201','q2931','0','200'), ('8560','597','202','virtualTg','0','201'), ('8561','597','203','sipTg','0','202'), ('8562','597','204','sipSig','0','203'), ('8563','597','205','docsCableUpstreamChannel','0','204'), ('8564','597','206','econet','0','205'), ('8565','597','207','pon155','0','206'), ('8566','597','208','pon622','0','207'), ('8567','597','209','bridge','0','208'), ('8568','597','210','linegroup','0','209'), ('8569','597','211','voiceEMFGD','0','210'), ('8570','597','212','voiceFGDEANA','0','211'), ('8571','597','213','voiceDID','0','212'), ('8572','597','214','mpegTransport','0','213'), ('8573','597','215','sixToFour','0','214'), ('8574','597','216','gtp','0','215'), ('8575','597','217','pdnEtherLoop1','0','216'), ('8576','597','218','pdnEtherLoop2','0','217'), ('8577','597','219','opticalChannelGroup','0','218'), ('8578','597','220','homepna','0','219'), ('8579','597','221','gfp','0','220'), ('8580','597','222','ciscoISLvlan','0','221'), ('8581','597','223','actelisMetaLOOP','0','222'), ('8582','597','224','fcipLink','0','223'), ('8583','597','225','rpr','0','224'), ('8584','597','226','qam','0','225'), ('8585','597','227','lmp','0','226'), ('8586','597','228','cblVectaStar','0','227'), ('8587','597','229','docsCableMCmtsDownstream','0','228'), ('8588','597','230','adsl2','0','229'), ('8589','597','231','macSecControlledIF','0','230'), ('8590','597','232','macSecUncontrolledIF','0','231'), ('8591','597','233','aviciOpticalEther','0','232'), ('8592','597','234','atmbond','0','233'), ('8593','597','235','voiceFGDOS','0','234'), ('8594','597','236','mocaVersion1','0','235'), ('8595','597','237','ieee80216WMAN','0','236'), ('8596','597','238','adsl2plus','0','237'), ('8597','597','239','dvbRcsMacLayer','0','238'), ('8598','597','240','dvbTdm','0','239'), ('8599','597','241','dvbRcsTdma','0','240'), ('8600','597','242','x86Laps','0','241'), ('8601','597','243','wwanPP','0','242'), ('8602','597','244','wwanPP2','0','243'), ('8603','597','245','voiceEBS','0','244'), ('8604','597','246','ifPwType','0','245'), ('8605','597','247','ilan','0','246'), ('8606','597','248','pip','0','247'), ('8607','597','249','aluELP','0','248'), ('8608','597','250','gpon','0','249'), ('8609','597','251','vdsl2','0','250'), ('8610','597','252','capwapDot11Profile','0','251'), ('8611','597','253','capwapDot11Bss','0','252'), ('8612','597','254','capwapWtpVirtualRadio','0','253'), ('8613','597','255','bits','0','254'), ('8614','597','256','docsCableUpstreamRfPort','0','255'), ('8615','597','257','cableDownstreamRfPort','0','256'), ('8616','597','258','vmwareVirtualNic','0','257'), ('8617','597','259','ieee802154','0','258'), ('8618','597','260','otnOdu','0','259'), ('8619','597','261','otnOtu','0','260'), ('8620','597','262','ifVfiType','0','261'), ('8621','597','263','g9981','0','262'), ('8622','597','264','g9982','0','263'), ('8623','597','265','g9983','0','264'), ('8624','597','266','aluEpon','0','265'), ('8625','597','267','aluEponOnu','0','266'), ('8626','597','268','aluEponPhysicalUni','0','267'), ('8627','597','269','aluEponLogicalLink','0','268'), ('8628','597','270','aluGponOnu','0','269'), ('8629','597','271','aluGponPhysicalUni','0','270'), ('8630','597','272','vmwareNicTeam','0','271'), ('8631','597','277','docsOfdmDownstream','0','272'), ('8632','597','278','docsOfdmaUpstream','0','273'), ('8633','597','279','gfast','0','274'), ('8634','597','280','sdci','0','275'), ('8635','597','281','xboxWireless','0','276'), ('8636','597','282','fastdsl','0','277'), ('8637','597','283','docsCableScte55d1FwdOob','0','278'), ('8638','597','284','docsCableScte55d1RetOob','0','279'), ('8639','597','285','docsCableScte55d2DsOob','0','280'), ('8640','597','286','docsCableScte55d2UsOob','0','281'), ('8641','597','287','docsCableNdf','0','282'), ('8642','597','288','docsCableNdr','0','283'), ('8643','597','289','ptm','0','284'), ('8644','597','290','ghn','0','285'), ('8645','598','0','Down','0','0'), ('8646','598','1','Up','0','1'), ('8647','599','0','not available','0','0'), ('8648','599','1','available','0','1'), ('8649','599','2','unknown','0','2'), ('8650','600','1','normal','0','0'), ('8651','600','2','warning','0','1'), ('8652','600','3','critical','0','2'), ('8653','600','4','shutdown','0','3'), ('8654','600','5','notPresent','0','4'), ('8655','600','6','notFunctioning','0','5'), ('8656','601','0','Down','0','0'), ('8657','601','1','Up','0','1'), ('8658','602','0','not available','0','0'), ('8659','602','1','available','0','1'), ('8660','602','2','unknown','0','2'), ('8661','603','1','normal','0','0'), ('8662','603','2','warning','0','1'), ('8663','603','3','critical','0','2'), ('8664','603','4','shutdown','0','3'), ('8665','603','5','notPresent','0','4'), ('8666','603','6','notFunctioning','0','5'), ('8667','604','1','unknown','0','0'), ('8668','604','2','halfDuplex','0','1'), ('8669','604','3','fullDuplex','0','2'), ('8670','605','1','up','0','0'), ('8671','605','2','down','0','1'), ('8672','605','4','unknown','0','2'), ('8673','605','5','dormant','0','3'), ('8674','605','6','notPresent','0','4'), ('8675','605','7','lowerLayerDown','0','5'), ('8676','606','1','other','0','0'), ('8677','606','2','regular1822','0','1'), ('8678','606','3','hdh1822','0','2'), ('8679','606','4','ddnX25','0','3'), ('8680','606','5','rfc877x25','0','4'), ('8681','606','6','ethernetCsmacd','0','5'), ('8682','606','7','iso88023Csmacd','0','6'), ('8683','606','8','iso88024TokenBus','0','7'), ('8684','606','9','iso88025TokenRing','0','8'), ('8685','606','10','iso88026Man','0','9'), ('8686','606','11','starLan','0','10'), ('8687','606','12','proteon10Mbit','0','11'), ('8688','606','13','proteon80Mbit','0','12'), ('8689','606','14','hyperchannel','0','13'), ('8690','606','15','fddi','0','14'), ('8691','606','16','lapb','0','15'), ('8692','606','17','sdlc','0','16'), ('8693','606','18','ds1','0','17'), ('8694','606','19','e1','0','18'), ('8695','606','20','basicISDN','0','19'), ('8696','606','21','primaryISDN','0','20'), ('8697','606','22','propPointToPointSerial','0','21'), ('8698','606','23','ppp','0','22'), ('8699','606','24','softwareLoopback','0','23'), ('8700','606','25','eon','0','24'), ('8701','606','26','ethernet3Mbit','0','25'), ('8702','606','27','nsip','0','26'), ('8703','606','28','slip','0','27'), ('8704','606','29','ultra','0','28'), ('8705','606','30','ds3','0','29'), ('8706','606','31','sip','0','30'), ('8707','606','32','frameRelay','0','31'), ('8708','606','33','rs232','0','32'), ('8709','606','34','para','0','33'), ('8710','606','35','arcnet','0','34'), ('8711','606','36','arcnetPlus','0','35'), ('8712','606','37','atm','0','36'), ('8713','606','38','miox25','0','37'), ('8714','606','39','sonet','0','38'), ('8715','606','40','x25ple','0','39'), ('8716','606','41','iso88022llc','0','40'), ('8717','606','42','localTalk','0','41'), ('8718','606','43','smdsDxi','0','42'), ('8719','606','44','frameRelayService','0','43'), ('8720','606','45','v35','0','44'), ('8721','606','46','hssi','0','45'), ('8722','606','47','hippi','0','46'), ('8723','606','48','modem','0','47'), ('8724','606','49','aal5','0','48'), ('8725','606','50','sonetPath','0','49'), ('8726','606','51','sonetVT','0','50'), ('8727','606','52','smdsIcip','0','51'), ('8728','606','53','propVirtual','0','52'), ('8729','606','54','propMultiplexor','0','53'), ('8730','606','55','ieee80212','0','54'), ('8731','606','56','fibreChannel','0','55'), ('8732','606','57','hippiInterface','0','56'), ('8733','606','58','frameRelayInterconnect','0','57'), ('8734','606','59','aflane8023','0','58'), ('8735','606','60','aflane8025','0','59'), ('8736','606','61','cctEmul','0','60'), ('8737','606','62','fastEther','0','61'), ('8738','606','63','isdn','0','62'), ('8739','606','64','v11','0','63'), ('8740','606','65','v36','0','64'), ('8741','606','66','g703at64k','0','65'), ('8742','606','67','g703at2mb','0','66'), ('8743','606','68','qllc','0','67'), ('8744','606','69','fastEtherFX','0','68'), ('8745','606','70','channel','0','69'), ('8746','606','71','ieee80211','0','70'), ('8747','606','72','ibm370parChan','0','71'), ('8748','606','73','escon','0','72'), ('8749','606','74','dlsw','0','73'), ('8750','606','75','isdns','0','74'), ('8751','606','76','isdnu','0','75'), ('8752','606','77','lapd','0','76'), ('8753','606','78','ipSwitch','0','77'), ('8754','606','79','rsrb','0','78'), ('8755','606','80','atmLogical','0','79'), ('8756','606','81','ds0','0','80'), ('8757','606','82','ds0Bundle','0','81'), ('8758','606','83','bsc','0','82'), ('8759','606','84','async','0','83'), ('8760','606','85','cnr','0','84'), ('8761','606','86','iso88025Dtr','0','85'), ('8762','606','87','eplrs','0','86'), ('8763','606','88','arap','0','87'), ('8764','606','89','propCnls','0','88'), ('8765','606','90','hostPad','0','89'), ('8766','606','91','termPad','0','90'), ('8767','606','92','frameRelayMPI','0','91'), ('8768','606','93','x213','0','92'), ('8769','606','94','adsl','0','93'), ('8770','606','95','radsl','0','94'), ('8771','606','96','sdsl','0','95'), ('8772','606','97','vdsl','0','96'), ('8773','606','98','iso88025CRFPInt','0','97'), ('8774','606','99','myrinet','0','98'), ('8775','606','100','voiceEM','0','99'), ('8776','606','101','voiceFXO','0','100'), ('8777','606','102','voiceFXS','0','101'), ('8778','606','103','voiceEncap','0','102'), ('8779','606','104','voiceOverIp','0','103'), ('8780','606','105','atmDxi','0','104'), ('8781','606','106','atmFuni','0','105'), ('8782','606','107','atmIma','0','106'), ('8783','606','108','pppMultilinkBundle','0','107'), ('8784','606','109','ipOverCdlc','0','108'), ('8785','606','110','ipOverClaw','0','109'), ('8786','606','111','stackToStack','0','110'), ('8787','606','112','virtualIpAddress','0','111'), ('8788','606','113','mpc','0','112'), ('8789','606','114','ipOverAtm','0','113'), ('8790','606','115','iso88025Fiber','0','114'), ('8791','606','116','tdlc','0','115'), ('8792','606','117','gigabitEthernet','0','116'), ('8793','606','118','hdlc','0','117'), ('8794','606','119','lapf','0','118'), ('8795','606','120','v37','0','119'), ('8796','606','121','x25mlp','0','120'), ('8797','606','122','x25huntGroup','0','121'), ('8798','606','123','trasnpHdlc','0','122'), ('8799','606','124','interleave','0','123'), ('8800','606','125','fast','0','124'), ('8801','606','126','ip','0','125'), ('8802','606','127','docsCableMaclayer','0','126'), ('8803','606','128','docsCableDownstream','0','127'), ('8804','606','129','docsCableUpstream','0','128'), ('8805','606','130','a12MppSwitch','0','129'), ('8806','606','131','tunnel','0','130'), ('8807','606','132','coffee','0','131'), ('8808','606','133','ces','0','132'), ('8809','606','134','atmSubInterface','0','133'), ('8810','606','135','l2vlan','0','134'), ('8811','606','136','l3ipvlan','0','135'), ('8812','606','137','l3ipxvlan','0','136'), ('8813','606','138','digitalPowerline','0','137'), ('8814','606','139','mediaMailOverIp','0','138'), ('8815','606','140','dtm','0','139'), ('8816','606','141','dcn','0','140'), ('8817','606','142','ipForward','0','141'), ('8818','606','143','msdsl','0','142'), ('8819','606','144','ieee1394','0','143'), ('8820','606','145','if-gsn','0','144'), ('8821','606','146','dvbRccMacLayer','0','145'), ('8822','606','147','dvbRccDownstream','0','146'), ('8823','606','148','dvbRccUpstream','0','147'), ('8824','606','149','atmVirtual','0','148'), ('8825','606','150','mplsTunnel','0','149'), ('8826','606','151','srp','0','150'), ('8827','606','152','voiceOverAtm','0','151'), ('8828','606','153','voiceOverFrameRelay','0','152'), ('8829','606','154','idsl','0','153'), ('8830','606','155','compositeLink','0','154'), ('8831','606','156','ss7SigLink','0','155'), ('8832','606','157','propWirelessP2P','0','156'), ('8833','606','158','frForward','0','157'), ('8834','606','159','rfc1483','0','158'), ('8835','606','160','usb','0','159'), ('8836','606','161','ieee8023adLag','0','160'), ('8837','606','162','bgppolicyaccounting','0','161'), ('8838','606','163','frf16MfrBundle','0','162'), ('8839','606','164','h323Gatekeeper','0','163'), ('8840','606','165','h323Proxy','0','164'), ('8841','606','166','mpls','0','165'), ('8842','606','167','mfSigLink','0','166'), ('8843','606','168','hdsl2','0','167'), ('8844','606','169','shdsl','0','168'), ('8845','606','170','ds1FDL','0','169'), ('8846','606','171','pos','0','170'), ('8847','606','172','dvbAsiIn','0','171'), ('8848','606','173','dvbAsiOut','0','172'), ('8849','606','174','plc','0','173'), ('8850','606','175','nfas','0','174'), ('8851','606','176','tr008','0','175'), ('8852','606','177','gr303RDT','0','176'), ('8853','606','178','gr303IDT','0','177'), ('8854','606','179','isup','0','178'), ('8855','606','180','propDocsWirelessMaclayer','0','179'), ('8856','606','181','propDocsWirelessDownstream','0','180'), ('8857','606','182','propDocsWirelessUpstream','0','181'), ('8858','606','183','hiperlan2','0','182'), ('8859','606','184','propBWAp2Mp','0','183'), ('8860','606','185','sonetOverheadChannel','0','184'), ('8861','606','186','digitalWrapperOverheadChannel','0','185'), ('8862','606','187','aal2','0','186'), ('8863','606','188','radioMAC','0','187'), ('8864','606','189','atmRadio','0','188'), ('8865','606','190','imt','0','189'), ('8866','606','191','mvl','0','190'), ('8867','606','192','reachDSL','0','191'), ('8868','606','193','frDlciEndPt','0','192'), ('8869','606','194','atmVciEndPt','0','193'), ('8870','606','195','opticalChannel','0','194'), ('8871','606','196','opticalTransport','0','195'), ('8872','606','197','propAtm','0','196'), ('8873','606','198','voiceOverCable','0','197'), ('8874','606','199','infiniband','0','198'), ('8875','606','200','teLink','0','199'), ('8876','606','201','q2931','0','200'), ('8877','606','202','virtualTg','0','201'), ('8878','606','203','sipTg','0','202'), ('8879','606','204','sipSig','0','203'), ('8880','606','205','docsCableUpstreamChannel','0','204'), ('8881','606','206','econet','0','205'), ('8882','606','207','pon155','0','206'), ('8883','606','208','pon622','0','207'), ('8884','606','209','bridge','0','208'), ('8885','606','210','linegroup','0','209'), ('8886','606','211','voiceEMFGD','0','210'), ('8887','606','212','voiceFGDEANA','0','211'), ('8888','606','213','voiceDID','0','212'), ('8889','606','214','mpegTransport','0','213'), ('8890','606','215','sixToFour','0','214'), ('8891','606','216','gtp','0','215'), ('8892','606','217','pdnEtherLoop1','0','216'), ('8893','606','218','pdnEtherLoop2','0','217'), ('8894','606','219','opticalChannelGroup','0','218'), ('8895','606','220','homepna','0','219'), ('8896','606','221','gfp','0','220'), ('8897','606','222','ciscoISLvlan','0','221'), ('8898','606','223','actelisMetaLOOP','0','222'), ('8899','606','224','fcipLink','0','223'), ('8900','606','225','rpr','0','224'), ('8901','606','226','qam','0','225'), ('8902','606','227','lmp','0','226'), ('8903','606','228','cblVectaStar','0','227'), ('8904','606','229','docsCableMCmtsDownstream','0','228'), ('8905','606','230','adsl2','0','229'), ('8906','606','231','macSecControlledIF','0','230'), ('8907','606','232','macSecUncontrolledIF','0','231'), ('8908','606','233','aviciOpticalEther','0','232'), ('8909','606','234','atmbond','0','233'), ('8910','606','235','voiceFGDOS','0','234'), ('8911','606','236','mocaVersion1','0','235'), ('8912','606','237','ieee80216WMAN','0','236'), ('8913','606','238','adsl2plus','0','237'), ('8914','606','239','dvbRcsMacLayer','0','238'), ('8915','606','240','dvbTdm','0','239'), ('8916','606','241','dvbRcsTdma','0','240'), ('8917','606','242','x86Laps','0','241'), ('8918','606','243','wwanPP','0','242'), ('8919','606','244','wwanPP2','0','243'), ('8920','606','245','voiceEBS','0','244'), ('8921','606','246','ifPwType','0','245'), ('8922','606','247','ilan','0','246'), ('8923','606','248','pip','0','247'), ('8924','606','249','aluELP','0','248'), ('8925','606','250','gpon','0','249'), ('8926','606','251','vdsl2','0','250'), ('8927','606','252','capwapDot11Profile','0','251'), ('8928','606','253','capwapDot11Bss','0','252'), ('8929','606','254','capwapWtpVirtualRadio','0','253'), ('8930','606','255','bits','0','254'), ('8931','606','256','docsCableUpstreamRfPort','0','255'), ('8932','606','257','cableDownstreamRfPort','0','256'), ('8933','606','258','vmwareVirtualNic','0','257'), ('8934','606','259','ieee802154','0','258'), ('8935','606','260','otnOdu','0','259'), ('8936','606','261','otnOtu','0','260'), ('8937','606','262','ifVfiType','0','261'), ('8938','606','263','g9981','0','262'), ('8939','606','264','g9982','0','263'), ('8940','606','265','g9983','0','264'), ('8941','606','266','aluEpon','0','265'), ('8942','606','267','aluEponOnu','0','266'), ('8943','606','268','aluEponPhysicalUni','0','267'), ('8944','606','269','aluEponLogicalLink','0','268'), ('8945','606','270','aluGponOnu','0','269'), ('8946','606','271','aluGponPhysicalUni','0','270'), ('8947','606','272','vmwareNicTeam','0','271'), ('8948','606','277','docsOfdmDownstream','0','272'), ('8949','606','278','docsOfdmaUpstream','0','273'), ('8950','606','279','gfast','0','274'), ('8951','606','280','sdci','0','275'), ('8952','606','281','xboxWireless','0','276'), ('8953','606','282','fastdsl','0','277'), ('8954','606','283','docsCableScte55d1FwdOob','0','278'), ('8955','606','284','docsCableScte55d1RetOob','0','279'), ('8956','606','285','docsCableScte55d2DsOob','0','280'), ('8957','606','286','docsCableScte55d2UsOob','0','281'), ('8958','606','287','docsCableNdf','0','282'), ('8959','606','288','docsCableNdr','0','283'), ('8960','606','289','ptm','0','284'), ('8961','606','290','ghn','0','285'), ('8962','607','0','Down','0','0'), ('8963','607','1','Up','0','1'), ('8964','608','0','not available','0','0'), ('8965','608','1','available','0','1'), ('8966','608','2','unknown','0','2'), ('8967','609','1','normal','0','0'), ('8968','609','2','warning','0','1'), ('8969','609','3','critical','0','2'), ('8970','609','4','shutdown','0','3'), ('8971','609','5','notPresent','0','4'), ('8972','609','6','notFunctioning','0','5'), ('8973','610','1','up','0','0'), ('8974','610','2','down','0','1'), ('8975','610','4','unknown','0','2'), ('8976','610','5','dormant','0','3'), ('8977','610','6','notPresent','0','4'), ('8978','610','7','lowerLayerDown','0','5'), ('8979','611','1','other','0','0'), ('8980','611','2','regular1822','0','1'), ('8981','611','3','hdh1822','0','2'), ('8982','611','4','ddnX25','0','3'), ('8983','611','5','rfc877x25','0','4'), ('8984','611','6','ethernetCsmacd','0','5'), ('8985','611','7','iso88023Csmacd','0','6'), ('8986','611','8','iso88024TokenBus','0','7'), ('8987','611','9','iso88025TokenRing','0','8'), ('8988','611','10','iso88026Man','0','9'), ('8989','611','11','starLan','0','10'), ('8990','611','12','proteon10Mbit','0','11'), ('8991','611','13','proteon80Mbit','0','12'), ('8992','611','14','hyperchannel','0','13'), ('8993','611','15','fddi','0','14'), ('8994','611','16','lapb','0','15'), ('8995','611','17','sdlc','0','16'), ('8996','611','18','ds1','0','17'), ('8997','611','19','e1','0','18'), ('8998','611','20','basicISDN','0','19'), ('8999','611','21','primaryISDN','0','20'), ('9000','611','22','propPointToPointSerial','0','21'), ('9001','611','23','ppp','0','22'), ('9002','611','24','softwareLoopback','0','23'), ('9003','611','25','eon','0','24'), ('9004','611','26','ethernet3Mbit','0','25'), ('9005','611','27','nsip','0','26'), ('9006','611','28','slip','0','27'), ('9007','611','29','ultra','0','28'), ('9008','611','30','ds3','0','29'), ('9009','611','31','sip','0','30'), ('9010','611','32','frameRelay','0','31'), ('9011','611','33','rs232','0','32'), ('9012','611','34','para','0','33'), ('9013','611','35','arcnet','0','34'), ('9014','611','36','arcnetPlus','0','35'), ('9015','611','37','atm','0','36'), ('9016','611','38','miox25','0','37'), ('9017','611','39','sonet','0','38'), ('9018','611','40','x25ple','0','39'), ('9019','611','41','iso88022llc','0','40'), ('9020','611','42','localTalk','0','41'), ('9021','611','43','smdsDxi','0','42'), ('9022','611','44','frameRelayService','0','43'), ('9023','611','45','v35','0','44'), ('9024','611','46','hssi','0','45'), ('9025','611','47','hippi','0','46'), ('9026','611','48','modem','0','47'), ('9027','611','49','aal5','0','48'), ('9028','611','50','sonetPath','0','49'), ('9029','611','51','sonetVT','0','50'), ('9030','611','52','smdsIcip','0','51'), ('9031','611','53','propVirtual','0','52'), ('9032','611','54','propMultiplexor','0','53'), ('9033','611','55','ieee80212','0','54'), ('9034','611','56','fibreChannel','0','55'), ('9035','611','57','hippiInterface','0','56'), ('9036','611','58','frameRelayInterconnect','0','57'), ('9037','611','59','aflane8023','0','58'), ('9038','611','60','aflane8025','0','59'), ('9039','611','61','cctEmul','0','60'), ('9040','611','62','fastEther','0','61'), ('9041','611','63','isdn','0','62'), ('9042','611','64','v11','0','63'), ('9043','611','65','v36','0','64'), ('9044','611','66','g703at64k','0','65'), ('9045','611','67','g703at2mb','0','66'), ('9046','611','68','qllc','0','67'), ('9047','611','69','fastEtherFX','0','68'), ('9048','611','70','channel','0','69'), ('9049','611','71','ieee80211','0','70'), ('9050','611','72','ibm370parChan','0','71'), ('9051','611','73','escon','0','72'), ('9052','611','74','dlsw','0','73'), ('9053','611','75','isdns','0','74'), ('9054','611','76','isdnu','0','75'), ('9055','611','77','lapd','0','76'), ('9056','611','78','ipSwitch','0','77'), ('9057','611','79','rsrb','0','78'), ('9058','611','80','atmLogical','0','79'), ('9059','611','81','ds0','0','80'), ('9060','611','82','ds0Bundle','0','81'), ('9061','611','83','bsc','0','82'), ('9062','611','84','async','0','83'), ('9063','611','85','cnr','0','84'), ('9064','611','86','iso88025Dtr','0','85'), ('9065','611','87','eplrs','0','86'), ('9066','611','88','arap','0','87'), ('9067','611','89','propCnls','0','88'), ('9068','611','90','hostPad','0','89'), ('9069','611','91','termPad','0','90'), ('9070','611','92','frameRelayMPI','0','91'), ('9071','611','93','x213','0','92'), ('9072','611','94','adsl','0','93'), ('9073','611','95','radsl','0','94'), ('9074','611','96','sdsl','0','95'), ('9075','611','97','vdsl','0','96'), ('9076','611','98','iso88025CRFPInt','0','97'), ('9077','611','99','myrinet','0','98'), ('9078','611','100','voiceEM','0','99'), ('9079','611','101','voiceFXO','0','100'), ('9080','611','102','voiceFXS','0','101'), ('9081','611','103','voiceEncap','0','102'), ('9082','611','104','voiceOverIp','0','103'), ('9083','611','105','atmDxi','0','104'), ('9084','611','106','atmFuni','0','105'), ('9085','611','107','atmIma','0','106'), ('9086','611','108','pppMultilinkBundle','0','107'), ('9087','611','109','ipOverCdlc','0','108'), ('9088','611','110','ipOverClaw','0','109'), ('9089','611','111','stackToStack','0','110'), ('9090','611','112','virtualIpAddress','0','111'), ('9091','611','113','mpc','0','112'), ('9092','611','114','ipOverAtm','0','113'), ('9093','611','115','iso88025Fiber','0','114'), ('9094','611','116','tdlc','0','115'), ('9095','611','117','gigabitEthernet','0','116'), ('9096','611','118','hdlc','0','117'), ('9097','611','119','lapf','0','118'), ('9098','611','120','v37','0','119'), ('9099','611','121','x25mlp','0','120'), ('9100','611','122','x25huntGroup','0','121'), ('9101','611','123','trasnpHdlc','0','122'), ('9102','611','124','interleave','0','123'), ('9103','611','125','fast','0','124'), ('9104','611','126','ip','0','125'), ('9105','611','127','docsCableMaclayer','0','126'), ('9106','611','128','docsCableDownstream','0','127'), ('9107','611','129','docsCableUpstream','0','128'), ('9108','611','130','a12MppSwitch','0','129'), ('9109','611','131','tunnel','0','130'), ('9110','611','132','coffee','0','131'), ('9111','611','133','ces','0','132'), ('9112','611','134','atmSubInterface','0','133'), ('9113','611','135','l2vlan','0','134'), ('9114','611','136','l3ipvlan','0','135'), ('9115','611','137','l3ipxvlan','0','136'), ('9116','611','138','digitalPowerline','0','137'), ('9117','611','139','mediaMailOverIp','0','138'), ('9118','611','140','dtm','0','139'), ('9119','611','141','dcn','0','140'), ('9120','611','142','ipForward','0','141'), ('9121','611','143','msdsl','0','142'), ('9122','611','144','ieee1394','0','143'), ('9123','611','145','if-gsn','0','144'), ('9124','611','146','dvbRccMacLayer','0','145'), ('9125','611','147','dvbRccDownstream','0','146'), ('9126','611','148','dvbRccUpstream','0','147'), ('9127','611','149','atmVirtual','0','148'), ('9128','611','150','mplsTunnel','0','149'), ('9129','611','151','srp','0','150'), ('9130','611','152','voiceOverAtm','0','151'), ('9131','611','153','voiceOverFrameRelay','0','152'), ('9132','611','154','idsl','0','153'), ('9133','611','155','compositeLink','0','154'), ('9134','611','156','ss7SigLink','0','155'), ('9135','611','157','propWirelessP2P','0','156'), ('9136','611','158','frForward','0','157'), ('9137','611','159','rfc1483','0','158'), ('9138','611','160','usb','0','159'), ('9139','611','161','ieee8023adLag','0','160'), ('9140','611','162','bgppolicyaccounting','0','161'), ('9141','611','163','frf16MfrBundle','0','162'), ('9142','611','164','h323Gatekeeper','0','163'), ('9143','611','165','h323Proxy','0','164'), ('9144','611','166','mpls','0','165'), ('9145','611','167','mfSigLink','0','166'), ('9146','611','168','hdsl2','0','167'), ('9147','611','169','shdsl','0','168'), ('9148','611','170','ds1FDL','0','169'), ('9149','611','171','pos','0','170'), ('9150','611','172','dvbAsiIn','0','171'), ('9151','611','173','dvbAsiOut','0','172'), ('9152','611','174','plc','0','173'), ('9153','611','175','nfas','0','174'), ('9154','611','176','tr008','0','175'), ('9155','611','177','gr303RDT','0','176'), ('9156','611','178','gr303IDT','0','177'), ('9157','611','179','isup','0','178'), ('9158','611','180','propDocsWirelessMaclayer','0','179'), ('9159','611','181','propDocsWirelessDownstream','0','180'), ('9160','611','182','propDocsWirelessUpstream','0','181'), ('9161','611','183','hiperlan2','0','182'), ('9162','611','184','propBWAp2Mp','0','183'), ('9163','611','185','sonetOverheadChannel','0','184'), ('9164','611','186','digitalWrapperOverheadChannel','0','185'), ('9165','611','187','aal2','0','186'), ('9166','611','188','radioMAC','0','187'), ('9167','611','189','atmRadio','0','188'), ('9168','611','190','imt','0','189'), ('9169','611','191','mvl','0','190'), ('9170','611','192','reachDSL','0','191'), ('9171','611','193','frDlciEndPt','0','192'), ('9172','611','194','atmVciEndPt','0','193'), ('9173','611','195','opticalChannel','0','194'), ('9174','611','196','opticalTransport','0','195'), ('9175','611','197','propAtm','0','196'), ('9176','611','198','voiceOverCable','0','197'), ('9177','611','199','infiniband','0','198'), ('9178','611','200','teLink','0','199'), ('9179','611','201','q2931','0','200'), ('9180','611','202','virtualTg','0','201'), ('9181','611','203','sipTg','0','202'), ('9182','611','204','sipSig','0','203'), ('9183','611','205','docsCableUpstreamChannel','0','204'), ('9184','611','206','econet','0','205'), ('9185','611','207','pon155','0','206'), ('9186','611','208','pon622','0','207'), ('9187','611','209','bridge','0','208'), ('9188','611','210','linegroup','0','209'), ('9189','611','211','voiceEMFGD','0','210'), ('9190','611','212','voiceFGDEANA','0','211'), ('9191','611','213','voiceDID','0','212'), ('9192','611','214','mpegTransport','0','213'), ('9193','611','215','sixToFour','0','214'), ('9194','611','216','gtp','0','215'), ('9195','611','217','pdnEtherLoop1','0','216'), ('9196','611','218','pdnEtherLoop2','0','217'), ('9197','611','219','opticalChannelGroup','0','218'), ('9198','611','220','homepna','0','219'), ('9199','611','221','gfp','0','220'), ('9200','611','222','ciscoISLvlan','0','221'), ('9201','611','223','actelisMetaLOOP','0','222'), ('9202','611','224','fcipLink','0','223'), ('9203','611','225','rpr','0','224'), ('9204','611','226','qam','0','225'), ('9205','611','227','lmp','0','226'), ('9206','611','228','cblVectaStar','0','227'), ('9207','611','229','docsCableMCmtsDownstream','0','228'), ('9208','611','230','adsl2','0','229'), ('9209','611','231','macSecControlledIF','0','230'), ('9210','611','232','macSecUncontrolledIF','0','231'), ('9211','611','233','aviciOpticalEther','0','232'), ('9212','611','234','atmbond','0','233'), ('9213','611','235','voiceFGDOS','0','234'), ('9214','611','236','mocaVersion1','0','235'), ('9215','611','237','ieee80216WMAN','0','236'), ('9216','611','238','adsl2plus','0','237'), ('9217','611','239','dvbRcsMacLayer','0','238'), ('9218','611','240','dvbTdm','0','239'), ('9219','611','241','dvbRcsTdma','0','240'), ('9220','611','242','x86Laps','0','241'), ('9221','611','243','wwanPP','0','242'), ('9222','611','244','wwanPP2','0','243'), ('9223','611','245','voiceEBS','0','244'), ('9224','611','246','ifPwType','0','245'), ('9225','611','247','ilan','0','246'), ('9226','611','248','pip','0','247'), ('9227','611','249','aluELP','0','248'), ('9228','611','250','gpon','0','249'), ('9229','611','251','vdsl2','0','250'), ('9230','611','252','capwapDot11Profile','0','251'), ('9231','611','253','capwapDot11Bss','0','252'), ('9232','611','254','capwapWtpVirtualRadio','0','253'), ('9233','611','255','bits','0','254'), ('9234','611','256','docsCableUpstreamRfPort','0','255'), ('9235','611','257','cableDownstreamRfPort','0','256'), ('9236','611','258','vmwareVirtualNic','0','257'), ('9237','611','259','ieee802154','0','258'), ('9238','611','260','otnOdu','0','259'), ('9239','611','261','otnOtu','0','260'), ('9240','611','262','ifVfiType','0','261'), ('9241','611','263','g9981','0','262'), ('9242','611','264','g9982','0','263'), ('9243','611','265','g9983','0','264'), ('9244','611','266','aluEpon','0','265'), ('9245','611','267','aluEponOnu','0','266'), ('9246','611','268','aluEponPhysicalUni','0','267'), ('9247','611','269','aluEponLogicalLink','0','268'), ('9248','611','270','aluGponOnu','0','269'), ('9249','611','271','aluGponPhysicalUni','0','270'), ('9250','611','272','vmwareNicTeam','0','271'), ('9251','611','277','docsOfdmDownstream','0','272'), ('9252','611','278','docsOfdmaUpstream','0','273'), ('9253','611','279','gfast','0','274'), ('9254','611','280','sdci','0','275'), ('9255','611','281','xboxWireless','0','276'), ('9256','611','282','fastdsl','0','277'), ('9257','611','283','docsCableScte55d1FwdOob','0','278'), ('9258','611','284','docsCableScte55d1RetOob','0','279'), ('9259','611','285','docsCableScte55d2DsOob','0','280'), ('9260','611','286','docsCableScte55d2UsOob','0','281'), ('9261','611','287','docsCableNdf','0','282'), ('9262','611','288','docsCableNdr','0','283'), ('9263','611','289','ptm','0','284'), ('9264','611','290','ghn','0','285'), ('9265','612','0','Down','0','0'), ('9266','612','1','Up','0','1'), ('9267','613','0','not available','0','0'), ('9268','613','1','available','0','1'), ('9269','613','2','unknown','0','2'), ('9270','614','1','unknown','0','0'), ('9271','614','2','halfDuplex','0','1'), ('9272','614','3','fullDuplex','0','2'), ('9273','615','1','up','0','0'), ('9274','615','2','down','0','1'), ('9275','615','4','unknown','0','2'), ('9276','615','5','dormant','0','3'), ('9277','615','6','notPresent','0','4'), ('9278','615','7','lowerLayerDown','0','5'), ('9279','616','1','other','0','0'), ('9280','616','2','regular1822','0','1'), ('9281','616','3','hdh1822','0','2'), ('9282','616','4','ddnX25','0','3'), ('9283','616','5','rfc877x25','0','4'), ('9284','616','6','ethernetCsmacd','0','5'), ('9285','616','7','iso88023Csmacd','0','6'), ('9286','616','8','iso88024TokenBus','0','7'), ('9287','616','9','iso88025TokenRing','0','8'), ('9288','616','10','iso88026Man','0','9'), ('9289','616','11','starLan','0','10'), ('9290','616','12','proteon10Mbit','0','11'), ('9291','616','13','proteon80Mbit','0','12'), ('9292','616','14','hyperchannel','0','13'), ('9293','616','15','fddi','0','14'), ('9294','616','16','lapb','0','15'), ('9295','616','17','sdlc','0','16'), ('9296','616','18','ds1','0','17'), ('9297','616','19','e1','0','18'), ('9298','616','20','basicISDN','0','19'), ('9299','616','21','primaryISDN','0','20'), ('9300','616','22','propPointToPointSerial','0','21'), ('9301','616','23','ppp','0','22'), ('9302','616','24','softwareLoopback','0','23'), ('9303','616','25','eon','0','24'), ('9304','616','26','ethernet3Mbit','0','25'), ('9305','616','27','nsip','0','26'), ('9306','616','28','slip','0','27'), ('9307','616','29','ultra','0','28'), ('9308','616','30','ds3','0','29'), ('9309','616','31','sip','0','30'), ('9310','616','32','frameRelay','0','31'), ('9311','616','33','rs232','0','32'), ('9312','616','34','para','0','33'), ('9313','616','35','arcnet','0','34'), ('9314','616','36','arcnetPlus','0','35'), ('9315','616','37','atm','0','36'), ('9316','616','38','miox25','0','37'), ('9317','616','39','sonet','0','38'), ('9318','616','40','x25ple','0','39'), ('9319','616','41','iso88022llc','0','40'), ('9320','616','42','localTalk','0','41'), ('9321','616','43','smdsDxi','0','42'), ('9322','616','44','frameRelayService','0','43'), ('9323','616','45','v35','0','44'), ('9324','616','46','hssi','0','45'), ('9325','616','47','hippi','0','46'), ('9326','616','48','modem','0','47'), ('9327','616','49','aal5','0','48'), ('9328','616','50','sonetPath','0','49'), ('9329','616','51','sonetVT','0','50'), ('9330','616','52','smdsIcip','0','51'), ('9331','616','53','propVirtual','0','52'), ('9332','616','54','propMultiplexor','0','53'), ('9333','616','55','ieee80212','0','54'), ('9334','616','56','fibreChannel','0','55'), ('9335','616','57','hippiInterface','0','56'), ('9336','616','58','frameRelayInterconnect','0','57'), ('9337','616','59','aflane8023','0','58'), ('9338','616','60','aflane8025','0','59'), ('9339','616','61','cctEmul','0','60'), ('9340','616','62','fastEther','0','61'), ('9341','616','63','isdn','0','62'), ('9342','616','64','v11','0','63'), ('9343','616','65','v36','0','64'), ('9344','616','66','g703at64k','0','65'), ('9345','616','67','g703at2mb','0','66'), ('9346','616','68','qllc','0','67'), ('9347','616','69','fastEtherFX','0','68'), ('9348','616','70','channel','0','69'), ('9349','616','71','ieee80211','0','70'), ('9350','616','72','ibm370parChan','0','71'), ('9351','616','73','escon','0','72'), ('9352','616','74','dlsw','0','73'), ('9353','616','75','isdns','0','74'), ('9354','616','76','isdnu','0','75'), ('9355','616','77','lapd','0','76'), ('9356','616','78','ipSwitch','0','77'), ('9357','616','79','rsrb','0','78'), ('9358','616','80','atmLogical','0','79'), ('9359','616','81','ds0','0','80'), ('9360','616','82','ds0Bundle','0','81'), ('9361','616','83','bsc','0','82'), ('9362','616','84','async','0','83'), ('9363','616','85','cnr','0','84'), ('9364','616','86','iso88025Dtr','0','85'), ('9365','616','87','eplrs','0','86'), ('9366','616','88','arap','0','87'), ('9367','616','89','propCnls','0','88'), ('9368','616','90','hostPad','0','89'), ('9369','616','91','termPad','0','90'), ('9370','616','92','frameRelayMPI','0','91'), ('9371','616','93','x213','0','92'), ('9372','616','94','adsl','0','93'), ('9373','616','95','radsl','0','94'), ('9374','616','96','sdsl','0','95'), ('9375','616','97','vdsl','0','96'), ('9376','616','98','iso88025CRFPInt','0','97'), ('9377','616','99','myrinet','0','98'), ('9378','616','100','voiceEM','0','99'), ('9379','616','101','voiceFXO','0','100'), ('9380','616','102','voiceFXS','0','101'), ('9381','616','103','voiceEncap','0','102'), ('9382','616','104','voiceOverIp','0','103'), ('9383','616','105','atmDxi','0','104'), ('9384','616','106','atmFuni','0','105'), ('9385','616','107','atmIma','0','106'), ('9386','616','108','pppMultilinkBundle','0','107'), ('9387','616','109','ipOverCdlc','0','108'), ('9388','616','110','ipOverClaw','0','109'), ('9389','616','111','stackToStack','0','110'), ('9390','616','112','virtualIpAddress','0','111'), ('9391','616','113','mpc','0','112'), ('9392','616','114','ipOverAtm','0','113'), ('9393','616','115','iso88025Fiber','0','114'), ('9394','616','116','tdlc','0','115'), ('9395','616','117','gigabitEthernet','0','116'), ('9396','616','118','hdlc','0','117'), ('9397','616','119','lapf','0','118'), ('9398','616','120','v37','0','119'), ('9399','616','121','x25mlp','0','120'), ('9400','616','122','x25huntGroup','0','121'), ('9401','616','123','trasnpHdlc','0','122'), ('9402','616','124','interleave','0','123'), ('9403','616','125','fast','0','124'), ('9404','616','126','ip','0','125'), ('9405','616','127','docsCableMaclayer','0','126'), ('9406','616','128','docsCableDownstream','0','127'), ('9407','616','129','docsCableUpstream','0','128'), ('9408','616','130','a12MppSwitch','0','129'), ('9409','616','131','tunnel','0','130'), ('9410','616','132','coffee','0','131'), ('9411','616','133','ces','0','132'), ('9412','616','134','atmSubInterface','0','133'), ('9413','616','135','l2vlan','0','134'), ('9414','616','136','l3ipvlan','0','135'), ('9415','616','137','l3ipxvlan','0','136'), ('9416','616','138','digitalPowerline','0','137'), ('9417','616','139','mediaMailOverIp','0','138'), ('9418','616','140','dtm','0','139'), ('9419','616','141','dcn','0','140'), ('9420','616','142','ipForward','0','141'), ('9421','616','143','msdsl','0','142'), ('9422','616','144','ieee1394','0','143'), ('9423','616','145','if-gsn','0','144'), ('9424','616','146','dvbRccMacLayer','0','145'), ('9425','616','147','dvbRccDownstream','0','146'), ('9426','616','148','dvbRccUpstream','0','147'), ('9427','616','149','atmVirtual','0','148'), ('9428','616','150','mplsTunnel','0','149'), ('9429','616','151','srp','0','150'), ('9430','616','152','voiceOverAtm','0','151'), ('9431','616','153','voiceOverFrameRelay','0','152'), ('9432','616','154','idsl','0','153'), ('9433','616','155','compositeLink','0','154'), ('9434','616','156','ss7SigLink','0','155'), ('9435','616','157','propWirelessP2P','0','156'), ('9436','616','158','frForward','0','157'), ('9437','616','159','rfc1483','0','158'), ('9438','616','160','usb','0','159'), ('9439','616','161','ieee8023adLag','0','160'), ('9440','616','162','bgppolicyaccounting','0','161'), ('9441','616','163','frf16MfrBundle','0','162'), ('9442','616','164','h323Gatekeeper','0','163'), ('9443','616','165','h323Proxy','0','164'), ('9444','616','166','mpls','0','165'), ('9445','616','167','mfSigLink','0','166'), ('9446','616','168','hdsl2','0','167'), ('9447','616','169','shdsl','0','168'), ('9448','616','170','ds1FDL','0','169'), ('9449','616','171','pos','0','170'), ('9450','616','172','dvbAsiIn','0','171'), ('9451','616','173','dvbAsiOut','0','172'), ('9452','616','174','plc','0','173'), ('9453','616','175','nfas','0','174'), ('9454','616','176','tr008','0','175'), ('9455','616','177','gr303RDT','0','176'), ('9456','616','178','gr303IDT','0','177'), ('9457','616','179','isup','0','178'), ('9458','616','180','propDocsWirelessMaclayer','0','179'), ('9459','616','181','propDocsWirelessDownstream','0','180'), ('9460','616','182','propDocsWirelessUpstream','0','181'), ('9461','616','183','hiperlan2','0','182'), ('9462','616','184','propBWAp2Mp','0','183'), ('9463','616','185','sonetOverheadChannel','0','184'), ('9464','616','186','digitalWrapperOverheadChannel','0','185'), ('9465','616','187','aal2','0','186'), ('9466','616','188','radioMAC','0','187'), ('9467','616','189','atmRadio','0','188'), ('9468','616','190','imt','0','189'), ('9469','616','191','mvl','0','190'), ('9470','616','192','reachDSL','0','191'), ('9471','616','193','frDlciEndPt','0','192'), ('9472','616','194','atmVciEndPt','0','193'), ('9473','616','195','opticalChannel','0','194'), ('9474','616','196','opticalTransport','0','195'), ('9475','616','197','propAtm','0','196'), ('9476','616','198','voiceOverCable','0','197'), ('9477','616','199','infiniband','0','198'), ('9478','616','200','teLink','0','199'), ('9479','616','201','q2931','0','200'), ('9480','616','202','virtualTg','0','201'), ('9481','616','203','sipTg','0','202'), ('9482','616','204','sipSig','0','203'), ('9483','616','205','docsCableUpstreamChannel','0','204'), ('9484','616','206','econet','0','205'), ('9485','616','207','pon155','0','206'), ('9486','616','208','pon622','0','207'), ('9487','616','209','bridge','0','208'), ('9488','616','210','linegroup','0','209'), ('9489','616','211','voiceEMFGD','0','210'), ('9490','616','212','voiceFGDEANA','0','211'), ('9491','616','213','voiceDID','0','212'), ('9492','616','214','mpegTransport','0','213'), ('9493','616','215','sixToFour','0','214'), ('9494','616','216','gtp','0','215'), ('9495','616','217','pdnEtherLoop1','0','216'), ('9496','616','218','pdnEtherLoop2','0','217'), ('9497','616','219','opticalChannelGroup','0','218'), ('9498','616','220','homepna','0','219'), ('9499','616','221','gfp','0','220'), ('9500','616','222','ciscoISLvlan','0','221'), ('9501','616','223','actelisMetaLOOP','0','222'), ('9502','616','224','fcipLink','0','223'), ('9503','616','225','rpr','0','224'), ('9504','616','226','qam','0','225'), ('9505','616','227','lmp','0','226'), ('9506','616','228','cblVectaStar','0','227'), ('9507','616','229','docsCableMCmtsDownstream','0','228'), ('9508','616','230','adsl2','0','229'), ('9509','616','231','macSecControlledIF','0','230'), ('9510','616','232','macSecUncontrolledIF','0','231'), ('9511','616','233','aviciOpticalEther','0','232'), ('9512','616','234','atmbond','0','233'), ('9513','616','235','voiceFGDOS','0','234'), ('9514','616','236','mocaVersion1','0','235'), ('9515','616','237','ieee80216WMAN','0','236'), ('9516','616','238','adsl2plus','0','237'), ('9517','616','239','dvbRcsMacLayer','0','238'), ('9518','616','240','dvbTdm','0','239'), ('9519','616','241','dvbRcsTdma','0','240'), ('9520','616','242','x86Laps','0','241'), ('9521','616','243','wwanPP','0','242'), ('9522','616','244','wwanPP2','0','243'), ('9523','616','245','voiceEBS','0','244'), ('9524','616','246','ifPwType','0','245'), ('9525','616','247','ilan','0','246'), ('9526','616','248','pip','0','247'), ('9527','616','249','aluELP','0','248'), ('9528','616','250','gpon','0','249'), ('9529','616','251','vdsl2','0','250'), ('9530','616','252','capwapDot11Profile','0','251'), ('9531','616','253','capwapDot11Bss','0','252'), ('9532','616','254','capwapWtpVirtualRadio','0','253'), ('9533','616','255','bits','0','254'), ('9534','616','256','docsCableUpstreamRfPort','0','255'), ('9535','616','257','cableDownstreamRfPort','0','256'), ('9536','616','258','vmwareVirtualNic','0','257'), ('9537','616','259','ieee802154','0','258'), ('9538','616','260','otnOdu','0','259'), ('9539','616','261','otnOtu','0','260'), ('9540','616','262','ifVfiType','0','261'), ('9541','616','263','g9981','0','262'), ('9542','616','264','g9982','0','263'), ('9543','616','265','g9983','0','264'), ('9544','616','266','aluEpon','0','265'), ('9545','616','267','aluEponOnu','0','266'), ('9546','616','268','aluEponPhysicalUni','0','267'), ('9547','616','269','aluEponLogicalLink','0','268'), ('9548','616','270','aluGponOnu','0','269'), ('9549','616','271','aluGponPhysicalUni','0','270'), ('9550','616','272','vmwareNicTeam','0','271'), ('9551','616','277','docsOfdmDownstream','0','272'), ('9552','616','278','docsOfdmaUpstream','0','273'), ('9553','616','279','gfast','0','274'), ('9554','616','280','sdci','0','275'), ('9555','616','281','xboxWireless','0','276'), ('9556','616','282','fastdsl','0','277'), ('9557','616','283','docsCableScte55d1FwdOob','0','278'), ('9558','616','284','docsCableScte55d1RetOob','0','279'), ('9559','616','285','docsCableScte55d2DsOob','0','280'), ('9560','616','286','docsCableScte55d2UsOob','0','281'), ('9561','616','287','docsCableNdf','0','282'), ('9562','616','288','docsCableNdr','0','283'), ('9563','616','289','ptm','0','284'), ('9564','616','290','ghn','0','285'), ('9565','617','0','Down','0','0'), ('9566','617','1','Up','0','1'), ('9567','618','0','not available','0','0'), ('9568','618','1','available','0','1'), ('9569','618','2','unknown','0','2'), ('9570','619','1','up','0','0'), ('9571','619','2','down','0','1'), ('9572','619','4','unknown','0','2'), ('9573','619','5','dormant','0','3'), ('9574','619','6','notPresent','0','4'), ('9575','619','7','lowerLayerDown','0','5'), ('9576','620','1','other','0','0'), ('9577','620','2','regular1822','0','1'), ('9578','620','3','hdh1822','0','2'), ('9579','620','4','ddnX25','0','3'), ('9580','620','5','rfc877x25','0','4'), ('9581','620','6','ethernetCsmacd','0','5'), ('9582','620','7','iso88023Csmacd','0','6'), ('9583','620','8','iso88024TokenBus','0','7'), ('9584','620','9','iso88025TokenRing','0','8'), ('9585','620','10','iso88026Man','0','9'), ('9586','620','11','starLan','0','10'), ('9587','620','12','proteon10Mbit','0','11'), ('9588','620','13','proteon80Mbit','0','12'), ('9589','620','14','hyperchannel','0','13'), ('9590','620','15','fddi','0','14'), ('9591','620','16','lapb','0','15'), ('9592','620','17','sdlc','0','16'), ('9593','620','18','ds1','0','17'), ('9594','620','19','e1','0','18'), ('9595','620','20','basicISDN','0','19'), ('9596','620','21','primaryISDN','0','20'), ('9597','620','22','propPointToPointSerial','0','21'), ('9598','620','23','ppp','0','22'), ('9599','620','24','softwareLoopback','0','23'), ('9600','620','25','eon','0','24'), ('9601','620','26','ethernet3Mbit','0','25'), ('9602','620','27','nsip','0','26'), ('9603','620','28','slip','0','27'), ('9604','620','29','ultra','0','28'), ('9605','620','30','ds3','0','29'), ('9606','620','31','sip','0','30'), ('9607','620','32','frameRelay','0','31'), ('9608','620','33','rs232','0','32'), ('9609','620','34','para','0','33'), ('9610','620','35','arcnet','0','34'), ('9611','620','36','arcnetPlus','0','35'), ('9612','620','37','atm','0','36'), ('9613','620','38','miox25','0','37'), ('9614','620','39','sonet','0','38'), ('9615','620','40','x25ple','0','39'), ('9616','620','41','iso88022llc','0','40'), ('9617','620','42','localTalk','0','41'), ('9618','620','43','smdsDxi','0','42'), ('9619','620','44','frameRelayService','0','43'), ('9620','620','45','v35','0','44'), ('9621','620','46','hssi','0','45'), ('9622','620','47','hippi','0','46'), ('9623','620','48','modem','0','47'), ('9624','620','49','aal5','0','48'), ('9625','620','50','sonetPath','0','49'), ('9626','620','51','sonetVT','0','50'), ('9627','620','52','smdsIcip','0','51'), ('9628','620','53','propVirtual','0','52'), ('9629','620','54','propMultiplexor','0','53'), ('9630','620','55','ieee80212','0','54'), ('9631','620','56','fibreChannel','0','55'), ('9632','620','57','hippiInterface','0','56'), ('9633','620','58','frameRelayInterconnect','0','57'), ('9634','620','59','aflane8023','0','58'), ('9635','620','60','aflane8025','0','59'), ('9636','620','61','cctEmul','0','60'), ('9637','620','62','fastEther','0','61'), ('9638','620','63','isdn','0','62'), ('9639','620','64','v11','0','63'), ('9640','620','65','v36','0','64'), ('9641','620','66','g703at64k','0','65'), ('9642','620','67','g703at2mb','0','66'), ('9643','620','68','qllc','0','67'), ('9644','620','69','fastEtherFX','0','68'), ('9645','620','70','channel','0','69'), ('9646','620','71','ieee80211','0','70'), ('9647','620','72','ibm370parChan','0','71'), ('9648','620','73','escon','0','72'), ('9649','620','74','dlsw','0','73'), ('9650','620','75','isdns','0','74'), ('9651','620','76','isdnu','0','75'), ('9652','620','77','lapd','0','76'), ('9653','620','78','ipSwitch','0','77'), ('9654','620','79','rsrb','0','78'), ('9655','620','80','atmLogical','0','79'), ('9656','620','81','ds0','0','80'), ('9657','620','82','ds0Bundle','0','81'), ('9658','620','83','bsc','0','82'), ('9659','620','84','async','0','83'), ('9660','620','85','cnr','0','84'), ('9661','620','86','iso88025Dtr','0','85'), ('9662','620','87','eplrs','0','86'), ('9663','620','88','arap','0','87'), ('9664','620','89','propCnls','0','88'), ('9665','620','90','hostPad','0','89'), ('9666','620','91','termPad','0','90'), ('9667','620','92','frameRelayMPI','0','91'), ('9668','620','93','x213','0','92'), ('9669','620','94','adsl','0','93'), ('9670','620','95','radsl','0','94'), ('9671','620','96','sdsl','0','95'), ('9672','620','97','vdsl','0','96'), ('9673','620','98','iso88025CRFPInt','0','97'), ('9674','620','99','myrinet','0','98'), ('9675','620','100','voiceEM','0','99'), ('9676','620','101','voiceFXO','0','100'), ('9677','620','102','voiceFXS','0','101'), ('9678','620','103','voiceEncap','0','102'), ('9679','620','104','voiceOverIp','0','103'), ('9680','620','105','atmDxi','0','104'), ('9681','620','106','atmFuni','0','105'), ('9682','620','107','atmIma','0','106'), ('9683','620','108','pppMultilinkBundle','0','107'), ('9684','620','109','ipOverCdlc','0','108'), ('9685','620','110','ipOverClaw','0','109'), ('9686','620','111','stackToStack','0','110'), ('9687','620','112','virtualIpAddress','0','111'), ('9688','620','113','mpc','0','112'), ('9689','620','114','ipOverAtm','0','113'), ('9690','620','115','iso88025Fiber','0','114'), ('9691','620','116','tdlc','0','115'), ('9692','620','117','gigabitEthernet','0','116'), ('9693','620','118','hdlc','0','117'), ('9694','620','119','lapf','0','118'), ('9695','620','120','v37','0','119'), ('9696','620','121','x25mlp','0','120'), ('9697','620','122','x25huntGroup','0','121'), ('9698','620','123','trasnpHdlc','0','122'), ('9699','620','124','interleave','0','123'), ('9700','620','125','fast','0','124'), ('9701','620','126','ip','0','125'), ('9702','620','127','docsCableMaclayer','0','126'), ('9703','620','128','docsCableDownstream','0','127'), ('9704','620','129','docsCableUpstream','0','128'), ('9705','620','130','a12MppSwitch','0','129'), ('9706','620','131','tunnel','0','130'), ('9707','620','132','coffee','0','131'), ('9708','620','133','ces','0','132'), ('9709','620','134','atmSubInterface','0','133'), ('9710','620','135','l2vlan','0','134'), ('9711','620','136','l3ipvlan','0','135'), ('9712','620','137','l3ipxvlan','0','136'), ('9713','620','138','digitalPowerline','0','137'), ('9714','620','139','mediaMailOverIp','0','138'), ('9715','620','140','dtm','0','139'), ('9716','620','141','dcn','0','140'), ('9717','620','142','ipForward','0','141'), ('9718','620','143','msdsl','0','142'), ('9719','620','144','ieee1394','0','143'), ('9720','620','145','if-gsn','0','144'), ('9721','620','146','dvbRccMacLayer','0','145'), ('9722','620','147','dvbRccDownstream','0','146'), ('9723','620','148','dvbRccUpstream','0','147'), ('9724','620','149','atmVirtual','0','148'), ('9725','620','150','mplsTunnel','0','149'), ('9726','620','151','srp','0','150'), ('9727','620','152','voiceOverAtm','0','151'), ('9728','620','153','voiceOverFrameRelay','0','152'), ('9729','620','154','idsl','0','153'), ('9730','620','155','compositeLink','0','154'), ('9731','620','156','ss7SigLink','0','155'), ('9732','620','157','propWirelessP2P','0','156'), ('9733','620','158','frForward','0','157'), ('9734','620','159','rfc1483','0','158'), ('9735','620','160','usb','0','159'), ('9736','620','161','ieee8023adLag','0','160'), ('9737','620','162','bgppolicyaccounting','0','161'), ('9738','620','163','frf16MfrBundle','0','162'), ('9739','620','164','h323Gatekeeper','0','163'), ('9740','620','165','h323Proxy','0','164'), ('9741','620','166','mpls','0','165'), ('9742','620','167','mfSigLink','0','166'), ('9743','620','168','hdsl2','0','167'), ('9744','620','169','shdsl','0','168'), ('9745','620','170','ds1FDL','0','169'), ('9746','620','171','pos','0','170'), ('9747','620','172','dvbAsiIn','0','171'), ('9748','620','173','dvbAsiOut','0','172'), ('9749','620','174','plc','0','173'), ('9750','620','175','nfas','0','174'), ('9751','620','176','tr008','0','175'), ('9752','620','177','gr303RDT','0','176'), ('9753','620','178','gr303IDT','0','177'), ('9754','620','179','isup','0','178'), ('9755','620','180','propDocsWirelessMaclayer','0','179'), ('9756','620','181','propDocsWirelessDownstream','0','180'), ('9757','620','182','propDocsWirelessUpstream','0','181'), ('9758','620','183','hiperlan2','0','182'), ('9759','620','184','propBWAp2Mp','0','183'), ('9760','620','185','sonetOverheadChannel','0','184'), ('9761','620','186','digitalWrapperOverheadChannel','0','185'), ('9762','620','187','aal2','0','186'), ('9763','620','188','radioMAC','0','187'), ('9764','620','189','atmRadio','0','188'), ('9765','620','190','imt','0','189'), ('9766','620','191','mvl','0','190'), ('9767','620','192','reachDSL','0','191'), ('9768','620','193','frDlciEndPt','0','192'), ('9769','620','194','atmVciEndPt','0','193'), ('9770','620','195','opticalChannel','0','194'), ('9771','620','196','opticalTransport','0','195'), ('9772','620','197','propAtm','0','196'), ('9773','620','198','voiceOverCable','0','197'), ('9774','620','199','infiniband','0','198'), ('9775','620','200','teLink','0','199'), ('9776','620','201','q2931','0','200'), ('9777','620','202','virtualTg','0','201'), ('9778','620','203','sipTg','0','202'), ('9779','620','204','sipSig','0','203'), ('9780','620','205','docsCableUpstreamChannel','0','204'), ('9781','620','206','econet','0','205'), ('9782','620','207','pon155','0','206'), ('9783','620','208','pon622','0','207'), ('9784','620','209','bridge','0','208'), ('9785','620','210','linegroup','0','209'), ('9786','620','211','voiceEMFGD','0','210'), ('9787','620','212','voiceFGDEANA','0','211'), ('9788','620','213','voiceDID','0','212'), ('9789','620','214','mpegTransport','0','213'), ('9790','620','215','sixToFour','0','214'), ('9791','620','216','gtp','0','215'), ('9792','620','217','pdnEtherLoop1','0','216'), ('9793','620','218','pdnEtherLoop2','0','217'), ('9794','620','219','opticalChannelGroup','0','218'), ('9795','620','220','homepna','0','219'), ('9796','620','221','gfp','0','220'), ('9797','620','222','ciscoISLvlan','0','221'), ('9798','620','223','actelisMetaLOOP','0','222'), ('9799','620','224','fcipLink','0','223'), ('9800','620','225','rpr','0','224'), ('9801','620','226','qam','0','225'), ('9802','620','227','lmp','0','226'), ('9803','620','228','cblVectaStar','0','227'), ('9804','620','229','docsCableMCmtsDownstream','0','228'), ('9805','620','230','adsl2','0','229'), ('9806','620','231','macSecControlledIF','0','230'), ('9807','620','232','macSecUncontrolledIF','0','231'), ('9808','620','233','aviciOpticalEther','0','232'), ('9809','620','234','atmbond','0','233'), ('9810','620','235','voiceFGDOS','0','234'), ('9811','620','236','mocaVersion1','0','235'), ('9812','620','237','ieee80216WMAN','0','236'), ('9813','620','238','adsl2plus','0','237'), ('9814','620','239','dvbRcsMacLayer','0','238'), ('9815','620','240','dvbTdm','0','239'), ('9816','620','241','dvbRcsTdma','0','240'), ('9817','620','242','x86Laps','0','241'), ('9818','620','243','wwanPP','0','242'), ('9819','620','244','wwanPP2','0','243'), ('9820','620','245','voiceEBS','0','244'), ('9821','620','246','ifPwType','0','245'), ('9822','620','247','ilan','0','246'), ('9823','620','248','pip','0','247'), ('9824','620','249','aluELP','0','248'), ('9825','620','250','gpon','0','249'), ('9826','620','251','vdsl2','0','250'), ('9827','620','252','capwapDot11Profile','0','251'), ('9828','620','253','capwapDot11Bss','0','252'), ('9829','620','254','capwapWtpVirtualRadio','0','253'), ('9830','620','255','bits','0','254'), ('9831','620','256','docsCableUpstreamRfPort','0','255'), ('9832','620','257','cableDownstreamRfPort','0','256'), ('9833','620','258','vmwareVirtualNic','0','257'), ('9834','620','259','ieee802154','0','258'), ('9835','620','260','otnOdu','0','259'), ('9836','620','261','otnOtu','0','260'), ('9837','620','262','ifVfiType','0','261'), ('9838','620','263','g9981','0','262'), ('9839','620','264','g9982','0','263'), ('9840','620','265','g9983','0','264'), ('9841','620','266','aluEpon','0','265'), ('9842','620','267','aluEponOnu','0','266'), ('9843','620','268','aluEponPhysicalUni','0','267'), ('9844','620','269','aluEponLogicalLink','0','268'), ('9845','620','270','aluGponOnu','0','269'), ('9846','620','271','aluGponPhysicalUni','0','270'), ('9847','620','272','vmwareNicTeam','0','271'), ('9848','620','277','docsOfdmDownstream','0','272'), ('9849','620','278','docsOfdmaUpstream','0','273'), ('9850','620','279','gfast','0','274'), ('9851','620','280','sdci','0','275'), ('9852','620','281','xboxWireless','0','276'), ('9853','620','282','fastdsl','0','277'), ('9854','620','283','docsCableScte55d1FwdOob','0','278'), ('9855','620','284','docsCableScte55d1RetOob','0','279'), ('9856','620','285','docsCableScte55d2DsOob','0','280'), ('9857','620','286','docsCableScte55d2UsOob','0','281'), ('9858','620','287','docsCableNdf','0','282'), ('9859','620','288','docsCableNdr','0','283'), ('9860','620','289','ptm','0','284'), ('9861','620','290','ghn','0','285'), ('9862','621','0','Down','0','0'), ('9863','621','1','Up','0','1'), ('9864','622','0','not available','0','0'), ('9865','622','1','available','0','1'), ('9866','622','2','unknown','0','2'), ('9867','623','1','unknown','0','0'), ('9868','623','2','halfDuplex','0','1'), ('9869','623','3','fullDuplex','0','2'), ('9870','624','1','up','0','0'), ('9871','624','2','down','0','1'), ('9872','624','4','unknown','0','2'), ('9873','624','5','dormant','0','3'), ('9874','624','6','notPresent','0','4'), ('9875','624','7','lowerLayerDown','0','5'), ('9876','625','1','other','0','0'), ('9877','625','2','regular1822','0','1'), ('9878','625','3','hdh1822','0','2'), ('9879','625','4','ddnX25','0','3'), ('9880','625','5','rfc877x25','0','4'), ('9881','625','6','ethernetCsmacd','0','5'), ('9882','625','7','iso88023Csmacd','0','6'), ('9883','625','8','iso88024TokenBus','0','7'), ('9884','625','9','iso88025TokenRing','0','8'), ('9885','625','10','iso88026Man','0','9'), ('9886','625','11','starLan','0','10'), ('9887','625','12','proteon10Mbit','0','11'), ('9888','625','13','proteon80Mbit','0','12'), ('9889','625','14','hyperchannel','0','13'), ('9890','625','15','fddi','0','14'), ('9891','625','16','lapb','0','15'), ('9892','625','17','sdlc','0','16'), ('9893','625','18','ds1','0','17'), ('9894','625','19','e1','0','18'), ('9895','625','20','basicISDN','0','19'), ('9896','625','21','primaryISDN','0','20'), ('9897','625','22','propPointToPointSerial','0','21'), ('9898','625','23','ppp','0','22'), ('9899','625','24','softwareLoopback','0','23'), ('9900','625','25','eon','0','24'), ('9901','625','26','ethernet3Mbit','0','25'), ('9902','625','27','nsip','0','26'), ('9903','625','28','slip','0','27'), ('9904','625','29','ultra','0','28'), ('9905','625','30','ds3','0','29'), ('9906','625','31','sip','0','30'), ('9907','625','32','frameRelay','0','31'), ('9908','625','33','rs232','0','32'), ('9909','625','34','para','0','33'), ('9910','625','35','arcnet','0','34'), ('9911','625','36','arcnetPlus','0','35'), ('9912','625','37','atm','0','36'), ('9913','625','38','miox25','0','37'), ('9914','625','39','sonet','0','38'), ('9915','625','40','x25ple','0','39'), ('9916','625','41','iso88022llc','0','40'), ('9917','625','42','localTalk','0','41'), ('9918','625','43','smdsDxi','0','42'), ('9919','625','44','frameRelayService','0','43'), ('9920','625','45','v35','0','44'), ('9921','625','46','hssi','0','45'), ('9922','625','47','hippi','0','46'), ('9923','625','48','modem','0','47'), ('9924','625','49','aal5','0','48'), ('9925','625','50','sonetPath','0','49'), ('9926','625','51','sonetVT','0','50'), ('9927','625','52','smdsIcip','0','51'), ('9928','625','53','propVirtual','0','52'), ('9929','625','54','propMultiplexor','0','53'), ('9930','625','55','ieee80212','0','54'), ('9931','625','56','fibreChannel','0','55'), ('9932','625','57','hippiInterface','0','56'), ('9933','625','58','frameRelayInterconnect','0','57'), ('9934','625','59','aflane8023','0','58'), ('9935','625','60','aflane8025','0','59'), ('9936','625','61','cctEmul','0','60'), ('9937','625','62','fastEther','0','61'), ('9938','625','63','isdn','0','62'), ('9939','625','64','v11','0','63'), ('9940','625','65','v36','0','64'), ('9941','625','66','g703at64k','0','65'), ('9942','625','67','g703at2mb','0','66'), ('9943','625','68','qllc','0','67'), ('9944','625','69','fastEtherFX','0','68'), ('9945','625','70','channel','0','69'), ('9946','625','71','ieee80211','0','70'), ('9947','625','72','ibm370parChan','0','71'), ('9948','625','73','escon','0','72'), ('9949','625','74','dlsw','0','73'), ('9950','625','75','isdns','0','74'), ('9951','625','76','isdnu','0','75'), ('9952','625','77','lapd','0','76'), ('9953','625','78','ipSwitch','0','77'), ('9954','625','79','rsrb','0','78'), ('9955','625','80','atmLogical','0','79'), ('9956','625','81','ds0','0','80'), ('9957','625','82','ds0Bundle','0','81'), ('9958','625','83','bsc','0','82'), ('9959','625','84','async','0','83'), ('9960','625','85','cnr','0','84'), ('9961','625','86','iso88025Dtr','0','85'), ('9962','625','87','eplrs','0','86'), ('9963','625','88','arap','0','87'), ('9964','625','89','propCnls','0','88'), ('9965','625','90','hostPad','0','89'), ('9966','625','91','termPad','0','90'), ('9967','625','92','frameRelayMPI','0','91'), ('9968','625','93','x213','0','92'), ('9969','625','94','adsl','0','93'), ('9970','625','95','radsl','0','94'), ('9971','625','96','sdsl','0','95'), ('9972','625','97','vdsl','0','96'), ('9973','625','98','iso88025CRFPInt','0','97'), ('9974','625','99','myrinet','0','98'), ('9975','625','100','voiceEM','0','99'), ('9976','625','101','voiceFXO','0','100'), ('9977','625','102','voiceFXS','0','101'), ('9978','625','103','voiceEncap','0','102'), ('9979','625','104','voiceOverIp','0','103'), ('9980','625','105','atmDxi','0','104'), ('9981','625','106','atmFuni','0','105'), ('9982','625','107','atmIma','0','106'), ('9983','625','108','pppMultilinkBundle','0','107'), ('9984','625','109','ipOverCdlc','0','108'), ('9985','625','110','ipOverClaw','0','109'), ('9986','625','111','stackToStack','0','110'), ('9987','625','112','virtualIpAddress','0','111'), ('9988','625','113','mpc','0','112'), ('9989','625','114','ipOverAtm','0','113'), ('9990','625','115','iso88025Fiber','0','114'), ('9991','625','116','tdlc','0','115'), ('9992','625','117','gigabitEthernet','0','116'), ('9993','625','118','hdlc','0','117'), ('9994','625','119','lapf','0','118'), ('9995','625','120','v37','0','119'), ('9996','625','121','x25mlp','0','120'), ('9997','625','122','x25huntGroup','0','121'), ('9998','625','123','trasnpHdlc','0','122'), ('9999','625','124','interleave','0','123'), ('10000','625','125','fast','0','124'), ('10001','625','126','ip','0','125'), ('10002','625','127','docsCableMaclayer','0','126'), ('10003','625','128','docsCableDownstream','0','127'), ('10004','625','129','docsCableUpstream','0','128'), ('10005','625','130','a12MppSwitch','0','129'), ('10006','625','131','tunnel','0','130'), ('10007','625','132','coffee','0','131'), ('10008','625','133','ces','0','132'), ('10009','625','134','atmSubInterface','0','133'), ('10010','625','135','l2vlan','0','134'), ('10011','625','136','l3ipvlan','0','135'), ('10012','625','137','l3ipxvlan','0','136'), ('10013','625','138','digitalPowerline','0','137'), ('10014','625','139','mediaMailOverIp','0','138'), ('10015','625','140','dtm','0','139'), ('10016','625','141','dcn','0','140'), ('10017','625','142','ipForward','0','141'), ('10018','625','143','msdsl','0','142'), ('10019','625','144','ieee1394','0','143'), ('10020','625','145','if-gsn','0','144'), ('10021','625','146','dvbRccMacLayer','0','145'), ('10022','625','147','dvbRccDownstream','0','146'), ('10023','625','148','dvbRccUpstream','0','147'), ('10024','625','149','atmVirtual','0','148'), ('10025','625','150','mplsTunnel','0','149'), ('10026','625','151','srp','0','150'), ('10027','625','152','voiceOverAtm','0','151'), ('10028','625','153','voiceOverFrameRelay','0','152'), ('10029','625','154','idsl','0','153'), ('10030','625','155','compositeLink','0','154'), ('10031','625','156','ss7SigLink','0','155'), ('10032','625','157','propWirelessP2P','0','156'), ('10033','625','158','frForward','0','157'), ('10034','625','159','rfc1483','0','158'), ('10035','625','160','usb','0','159'), ('10036','625','161','ieee8023adLag','0','160'), ('10037','625','162','bgppolicyaccounting','0','161'), ('10038','625','163','frf16MfrBundle','0','162'), ('10039','625','164','h323Gatekeeper','0','163'), ('10040','625','165','h323Proxy','0','164'), ('10041','625','166','mpls','0','165'), ('10042','625','167','mfSigLink','0','166'), ('10043','625','168','hdsl2','0','167'), ('10044','625','169','shdsl','0','168'), ('10045','625','170','ds1FDL','0','169'), ('10046','625','171','pos','0','170'), ('10047','625','172','dvbAsiIn','0','171'), ('10048','625','173','dvbAsiOut','0','172'), ('10049','625','174','plc','0','173'), ('10050','625','175','nfas','0','174'), ('10051','625','176','tr008','0','175'), ('10052','625','177','gr303RDT','0','176'), ('10053','625','178','gr303IDT','0','177'), ('10054','625','179','isup','0','178'), ('10055','625','180','propDocsWirelessMaclayer','0','179'), ('10056','625','181','propDocsWirelessDownstream','0','180'), ('10057','625','182','propDocsWirelessUpstream','0','181'), ('10058','625','183','hiperlan2','0','182'), ('10059','625','184','propBWAp2Mp','0','183'), ('10060','625','185','sonetOverheadChannel','0','184'), ('10061','625','186','digitalWrapperOverheadChannel','0','185'), ('10062','625','187','aal2','0','186'), ('10063','625','188','radioMAC','0','187'), ('10064','625','189','atmRadio','0','188'), ('10065','625','190','imt','0','189'), ('10066','625','191','mvl','0','190'), ('10067','625','192','reachDSL','0','191'), ('10068','625','193','frDlciEndPt','0','192'), ('10069','625','194','atmVciEndPt','0','193'), ('10070','625','195','opticalChannel','0','194'), ('10071','625','196','opticalTransport','0','195'), ('10072','625','197','propAtm','0','196'), ('10073','625','198','voiceOverCable','0','197'), ('10074','625','199','infiniband','0','198'), ('10075','625','200','teLink','0','199'), ('10076','625','201','q2931','0','200'), ('10077','625','202','virtualTg','0','201'), ('10078','625','203','sipTg','0','202'), ('10079','625','204','sipSig','0','203'), ('10080','625','205','docsCableUpstreamChannel','0','204'), ('10081','625','206','econet','0','205'), ('10082','625','207','pon155','0','206'), ('10083','625','208','pon622','0','207'), ('10084','625','209','bridge','0','208'), ('10085','625','210','linegroup','0','209'), ('10086','625','211','voiceEMFGD','0','210'), ('10087','625','212','voiceFGDEANA','0','211'), ('10088','625','213','voiceDID','0','212'), ('10089','625','214','mpegTransport','0','213'), ('10090','625','215','sixToFour','0','214'), ('10091','625','216','gtp','0','215'), ('10092','625','217','pdnEtherLoop1','0','216'), ('10093','625','218','pdnEtherLoop2','0','217'), ('10094','625','219','opticalChannelGroup','0','218'), ('10095','625','220','homepna','0','219'), ('10096','625','221','gfp','0','220'), ('10097','625','222','ciscoISLvlan','0','221'), ('10098','625','223','actelisMetaLOOP','0','222'), ('10099','625','224','fcipLink','0','223'), ('10100','625','225','rpr','0','224'), ('10101','625','226','qam','0','225'), ('10102','625','227','lmp','0','226'), ('10103','625','228','cblVectaStar','0','227'), ('10104','625','229','docsCableMCmtsDownstream','0','228'), ('10105','625','230','adsl2','0','229'), ('10106','625','231','macSecControlledIF','0','230'), ('10107','625','232','macSecUncontrolledIF','0','231'), ('10108','625','233','aviciOpticalEther','0','232'), ('10109','625','234','atmbond','0','233'), ('10110','625','235','voiceFGDOS','0','234'), ('10111','625','236','mocaVersion1','0','235'), ('10112','625','237','ieee80216WMAN','0','236'), ('10113','625','238','adsl2plus','0','237'), ('10114','625','239','dvbRcsMacLayer','0','238'), ('10115','625','240','dvbTdm','0','239'), ('10116','625','241','dvbRcsTdma','0','240'), ('10117','625','242','x86Laps','0','241'), ('10118','625','243','wwanPP','0','242'), ('10119','625','244','wwanPP2','0','243'), ('10120','625','245','voiceEBS','0','244'), ('10121','625','246','ifPwType','0','245'), ('10122','625','247','ilan','0','246'), ('10123','625','248','pip','0','247'), ('10124','625','249','aluELP','0','248'), ('10125','625','250','gpon','0','249'), ('10126','625','251','vdsl2','0','250'), ('10127','625','252','capwapDot11Profile','0','251'), ('10128','625','253','capwapDot11Bss','0','252'), ('10129','625','254','capwapWtpVirtualRadio','0','253'), ('10130','625','255','bits','0','254'), ('10131','625','256','docsCableUpstreamRfPort','0','255'), ('10132','625','257','cableDownstreamRfPort','0','256'), ('10133','625','258','vmwareVirtualNic','0','257'), ('10134','625','259','ieee802154','0','258'), ('10135','625','260','otnOdu','0','259'), ('10136','625','261','otnOtu','0','260'), ('10137','625','262','ifVfiType','0','261'), ('10138','625','263','g9981','0','262'), ('10139','625','264','g9982','0','263'), ('10140','625','265','g9983','0','264'), ('10141','625','266','aluEpon','0','265'), ('10142','625','267','aluEponOnu','0','266'), ('10143','625','268','aluEponPhysicalUni','0','267'), ('10144','625','269','aluEponLogicalLink','0','268'), ('10145','625','270','aluGponOnu','0','269'), ('10146','625','271','aluGponPhysicalUni','0','270'), ('10147','625','272','vmwareNicTeam','0','271'), ('10148','625','277','docsOfdmDownstream','0','272'), ('10149','625','278','docsOfdmaUpstream','0','273'), ('10150','625','279','gfast','0','274'), ('10151','625','280','sdci','0','275'), ('10152','625','281','xboxWireless','0','276'), ('10153','625','282','fastdsl','0','277'), ('10154','625','283','docsCableScte55d1FwdOob','0','278'), ('10155','625','284','docsCableScte55d1RetOob','0','279'), ('10156','625','285','docsCableScte55d2DsOob','0','280'), ('10157','625','286','docsCableScte55d2UsOob','0','281'), ('10158','625','287','docsCableNdf','0','282'), ('10159','625','288','docsCableNdr','0','283'), ('10160','625','289','ptm','0','284'), ('10161','625','290','ghn','0','285'), ('10162','626','0','Down','0','0'), ('10163','626','1','Up','0','1'), ('10164','627','0','not available','0','0'), ('10165','627','1','available','0','1'), ('10166','627','2','unknown','0','2'), ('10167','628','1','unknown','0','0'), ('10168','628','2','halfDuplex','0','1'), ('10169','628','3','fullDuplex','0','2'), ('10170','629','1','up','0','0'), ('10171','629','2','down','0','1'), ('10172','629','4','unknown','0','2'), ('10173','629','5','dormant','0','3'), ('10174','629','6','notPresent','0','4'), ('10175','629','7','lowerLayerDown','0','5'), ('10176','630','1','other','0','0'), ('10177','630','2','regular1822','0','1'), ('10178','630','3','hdh1822','0','2'), ('10179','630','4','ddnX25','0','3'), ('10180','630','5','rfc877x25','0','4'), ('10181','630','6','ethernetCsmacd','0','5'), ('10182','630','7','iso88023Csmacd','0','6'), ('10183','630','8','iso88024TokenBus','0','7'), ('10184','630','9','iso88025TokenRing','0','8'), ('10185','630','10','iso88026Man','0','9'), ('10186','630','11','starLan','0','10'), ('10187','630','12','proteon10Mbit','0','11'), ('10188','630','13','proteon80Mbit','0','12'), ('10189','630','14','hyperchannel','0','13'), ('10190','630','15','fddi','0','14'), ('10191','630','16','lapb','0','15'), ('10192','630','17','sdlc','0','16'), ('10193','630','18','ds1','0','17'), ('10194','630','19','e1','0','18'), ('10195','630','20','basicISDN','0','19'), ('10196','630','21','primaryISDN','0','20'), ('10197','630','22','propPointToPointSerial','0','21'), ('10198','630','23','ppp','0','22'), ('10199','630','24','softwareLoopback','0','23'), ('10200','630','25','eon','0','24'), ('10201','630','26','ethernet3Mbit','0','25'), ('10202','630','27','nsip','0','26'), ('10203','630','28','slip','0','27'), ('10204','630','29','ultra','0','28'), ('10205','630','30','ds3','0','29'), ('10206','630','31','sip','0','30'), ('10207','630','32','frameRelay','0','31'), ('10208','630','33','rs232','0','32'), ('10209','630','34','para','0','33'), ('10210','630','35','arcnet','0','34'), ('10211','630','36','arcnetPlus','0','35'), ('10212','630','37','atm','0','36'), ('10213','630','38','miox25','0','37'), ('10214','630','39','sonet','0','38'), ('10215','630','40','x25ple','0','39'), ('10216','630','41','iso88022llc','0','40'), ('10217','630','42','localTalk','0','41'), ('10218','630','43','smdsDxi','0','42'), ('10219','630','44','frameRelayService','0','43'), ('10220','630','45','v35','0','44'), ('10221','630','46','hssi','0','45'), ('10222','630','47','hippi','0','46'), ('10223','630','48','modem','0','47'), ('10224','630','49','aal5','0','48'), ('10225','630','50','sonetPath','0','49'), ('10226','630','51','sonetVT','0','50'), ('10227','630','52','smdsIcip','0','51'), ('10228','630','53','propVirtual','0','52'), ('10229','630','54','propMultiplexor','0','53'), ('10230','630','55','ieee80212','0','54'), ('10231','630','56','fibreChannel','0','55'), ('10232','630','57','hippiInterface','0','56'), ('10233','630','58','frameRelayInterconnect','0','57'), ('10234','630','59','aflane8023','0','58'), ('10235','630','60','aflane8025','0','59'), ('10236','630','61','cctEmul','0','60'), ('10237','630','62','fastEther','0','61'), ('10238','630','63','isdn','0','62'), ('10239','630','64','v11','0','63'), ('10240','630','65','v36','0','64'), ('10241','630','66','g703at64k','0','65'), ('10242','630','67','g703at2mb','0','66'), ('10243','630','68','qllc','0','67'), ('10244','630','69','fastEtherFX','0','68'), ('10245','630','70','channel','0','69'), ('10246','630','71','ieee80211','0','70'), ('10247','630','72','ibm370parChan','0','71'), ('10248','630','73','escon','0','72'), ('10249','630','74','dlsw','0','73'), ('10250','630','75','isdns','0','74'), ('10251','630','76','isdnu','0','75'), ('10252','630','77','lapd','0','76'), ('10253','630','78','ipSwitch','0','77'), ('10254','630','79','rsrb','0','78'), ('10255','630','80','atmLogical','0','79'), ('10256','630','81','ds0','0','80'), ('10257','630','82','ds0Bundle','0','81'), ('10258','630','83','bsc','0','82'), ('10259','630','84','async','0','83'), ('10260','630','85','cnr','0','84'), ('10261','630','86','iso88025Dtr','0','85'), ('10262','630','87','eplrs','0','86'), ('10263','630','88','arap','0','87'), ('10264','630','89','propCnls','0','88'), ('10265','630','90','hostPad','0','89'), ('10266','630','91','termPad','0','90'), ('10267','630','92','frameRelayMPI','0','91'), ('10268','630','93','x213','0','92'), ('10269','630','94','adsl','0','93'), ('10270','630','95','radsl','0','94'), ('10271','630','96','sdsl','0','95'), ('10272','630','97','vdsl','0','96'), ('10273','630','98','iso88025CRFPInt','0','97'), ('10274','630','99','myrinet','0','98'), ('10275','630','100','voiceEM','0','99'), ('10276','630','101','voiceFXO','0','100'), ('10277','630','102','voiceFXS','0','101'), ('10278','630','103','voiceEncap','0','102'), ('10279','630','104','voiceOverIp','0','103'), ('10280','630','105','atmDxi','0','104'), ('10281','630','106','atmFuni','0','105'), ('10282','630','107','atmIma','0','106'), ('10283','630','108','pppMultilinkBundle','0','107'), ('10284','630','109','ipOverCdlc','0','108'), ('10285','630','110','ipOverClaw','0','109'), ('10286','630','111','stackToStack','0','110'), ('10287','630','112','virtualIpAddress','0','111'), ('10288','630','113','mpc','0','112'), ('10289','630','114','ipOverAtm','0','113'), ('10290','630','115','iso88025Fiber','0','114'), ('10291','630','116','tdlc','0','115'), ('10292','630','117','gigabitEthernet','0','116'), ('10293','630','118','hdlc','0','117'), ('10294','630','119','lapf','0','118'), ('10295','630','120','v37','0','119'), ('10296','630','121','x25mlp','0','120'), ('10297','630','122','x25huntGroup','0','121'), ('10298','630','123','trasnpHdlc','0','122'), ('10299','630','124','interleave','0','123'), ('10300','630','125','fast','0','124'), ('10301','630','126','ip','0','125'), ('10302','630','127','docsCableMaclayer','0','126'), ('10303','630','128','docsCableDownstream','0','127'), ('10304','630','129','docsCableUpstream','0','128'), ('10305','630','130','a12MppSwitch','0','129'), ('10306','630','131','tunnel','0','130'), ('10307','630','132','coffee','0','131'), ('10308','630','133','ces','0','132'), ('10309','630','134','atmSubInterface','0','133'), ('10310','630','135','l2vlan','0','134'), ('10311','630','136','l3ipvlan','0','135'), ('10312','630','137','l3ipxvlan','0','136'), ('10313','630','138','digitalPowerline','0','137'), ('10314','630','139','mediaMailOverIp','0','138'), ('10315','630','140','dtm','0','139'), ('10316','630','141','dcn','0','140'), ('10317','630','142','ipForward','0','141'), ('10318','630','143','msdsl','0','142'), ('10319','630','144','ieee1394','0','143'), ('10320','630','145','if-gsn','0','144'), ('10321','630','146','dvbRccMacLayer','0','145'), ('10322','630','147','dvbRccDownstream','0','146'), ('10323','630','148','dvbRccUpstream','0','147'), ('10324','630','149','atmVirtual','0','148'), ('10325','630','150','mplsTunnel','0','149'), ('10326','630','151','srp','0','150'), ('10327','630','152','voiceOverAtm','0','151'), ('10328','630','153','voiceOverFrameRelay','0','152'), ('10329','630','154','idsl','0','153'), ('10330','630','155','compositeLink','0','154'), ('10331','630','156','ss7SigLink','0','155'), ('10332','630','157','propWirelessP2P','0','156'), ('10333','630','158','frForward','0','157'), ('10334','630','159','rfc1483','0','158'), ('10335','630','160','usb','0','159'), ('10336','630','161','ieee8023adLag','0','160'), ('10337','630','162','bgppolicyaccounting','0','161'), ('10338','630','163','frf16MfrBundle','0','162'), ('10339','630','164','h323Gatekeeper','0','163'), ('10340','630','165','h323Proxy','0','164'), ('10341','630','166','mpls','0','165'), ('10342','630','167','mfSigLink','0','166'), ('10343','630','168','hdsl2','0','167'), ('10344','630','169','shdsl','0','168'), ('10345','630','170','ds1FDL','0','169'), ('10346','630','171','pos','0','170'), ('10347','630','172','dvbAsiIn','0','171'), ('10348','630','173','dvbAsiOut','0','172'), ('10349','630','174','plc','0','173'), ('10350','630','175','nfas','0','174'), ('10351','630','176','tr008','0','175'), ('10352','630','177','gr303RDT','0','176'), ('10353','630','178','gr303IDT','0','177'), ('10354','630','179','isup','0','178'), ('10355','630','180','propDocsWirelessMaclayer','0','179'), ('10356','630','181','propDocsWirelessDownstream','0','180'), ('10357','630','182','propDocsWirelessUpstream','0','181'), ('10358','630','183','hiperlan2','0','182'), ('10359','630','184','propBWAp2Mp','0','183'), ('10360','630','185','sonetOverheadChannel','0','184'), ('10361','630','186','digitalWrapperOverheadChannel','0','185'), ('10362','630','187','aal2','0','186'), ('10363','630','188','radioMAC','0','187'), ('10364','630','189','atmRadio','0','188'), ('10365','630','190','imt','0','189'), ('10366','630','191','mvl','0','190'), ('10367','630','192','reachDSL','0','191'), ('10368','630','193','frDlciEndPt','0','192'), ('10369','630','194','atmVciEndPt','0','193'), ('10370','630','195','opticalChannel','0','194'), ('10371','630','196','opticalTransport','0','195'), ('10372','630','197','propAtm','0','196'), ('10373','630','198','voiceOverCable','0','197'), ('10374','630','199','infiniband','0','198'), ('10375','630','200','teLink','0','199'), ('10376','630','201','q2931','0','200'), ('10377','630','202','virtualTg','0','201'), ('10378','630','203','sipTg','0','202'), ('10379','630','204','sipSig','0','203'), ('10380','630','205','docsCableUpstreamChannel','0','204'), ('10381','630','206','econet','0','205'), ('10382','630','207','pon155','0','206'), ('10383','630','208','pon622','0','207'), ('10384','630','209','bridge','0','208'), ('10385','630','210','linegroup','0','209'), ('10386','630','211','voiceEMFGD','0','210'), ('10387','630','212','voiceFGDEANA','0','211'), ('10388','630','213','voiceDID','0','212'), ('10389','630','214','mpegTransport','0','213'), ('10390','630','215','sixToFour','0','214'), ('10391','630','216','gtp','0','215'), ('10392','630','217','pdnEtherLoop1','0','216'), ('10393','630','218','pdnEtherLoop2','0','217'), ('10394','630','219','opticalChannelGroup','0','218'), ('10395','630','220','homepna','0','219'), ('10396','630','221','gfp','0','220'), ('10397','630','222','ciscoISLvlan','0','221'), ('10398','630','223','actelisMetaLOOP','0','222'), ('10399','630','224','fcipLink','0','223'), ('10400','630','225','rpr','0','224'), ('10401','630','226','qam','0','225'), ('10402','630','227','lmp','0','226'), ('10403','630','228','cblVectaStar','0','227'), ('10404','630','229','docsCableMCmtsDownstream','0','228'), ('10405','630','230','adsl2','0','229'), ('10406','630','231','macSecControlledIF','0','230'), ('10407','630','232','macSecUncontrolledIF','0','231'), ('10408','630','233','aviciOpticalEther','0','232'), ('10409','630','234','atmbond','0','233'), ('10410','630','235','voiceFGDOS','0','234'), ('10411','630','236','mocaVersion1','0','235'), ('10412','630','237','ieee80216WMAN','0','236'), ('10413','630','238','adsl2plus','0','237'), ('10414','630','239','dvbRcsMacLayer','0','238'), ('10415','630','240','dvbTdm','0','239'), ('10416','630','241','dvbRcsTdma','0','240'), ('10417','630','242','x86Laps','0','241'), ('10418','630','243','wwanPP','0','242'), ('10419','630','244','wwanPP2','0','243'), ('10420','630','245','voiceEBS','0','244'), ('10421','630','246','ifPwType','0','245'), ('10422','630','247','ilan','0','246'), ('10423','630','248','pip','0','247'), ('10424','630','249','aluELP','0','248'), ('10425','630','250','gpon','0','249'), ('10426','630','251','vdsl2','0','250'), ('10427','630','252','capwapDot11Profile','0','251'), ('10428','630','253','capwapDot11Bss','0','252'), ('10429','630','254','capwapWtpVirtualRadio','0','253'), ('10430','630','255','bits','0','254'), ('10431','630','256','docsCableUpstreamRfPort','0','255'), ('10432','630','257','cableDownstreamRfPort','0','256'), ('10433','630','258','vmwareVirtualNic','0','257'), ('10434','630','259','ieee802154','0','258'), ('10435','630','260','otnOdu','0','259'), ('10436','630','261','otnOtu','0','260'), ('10437','630','262','ifVfiType','0','261'), ('10438','630','263','g9981','0','262'), ('10439','630','264','g9982','0','263'), ('10440','630','265','g9983','0','264'), ('10441','630','266','aluEpon','0','265'), ('10442','630','267','aluEponOnu','0','266'), ('10443','630','268','aluEponPhysicalUni','0','267'), ('10444','630','269','aluEponLogicalLink','0','268'), ('10445','630','270','aluGponOnu','0','269'), ('10446','630','271','aluGponPhysicalUni','0','270'), ('10447','630','272','vmwareNicTeam','0','271'), ('10448','630','277','docsOfdmDownstream','0','272'), ('10449','630','278','docsOfdmaUpstream','0','273'), ('10450','630','279','gfast','0','274'), ('10451','630','280','sdci','0','275'), ('10452','630','281','xboxWireless','0','276'), ('10453','630','282','fastdsl','0','277'), ('10454','630','283','docsCableScte55d1FwdOob','0','278'), ('10455','630','284','docsCableScte55d1RetOob','0','279'), ('10456','630','285','docsCableScte55d2DsOob','0','280'), ('10457','630','286','docsCableScte55d2UsOob','0','281'), ('10458','630','287','docsCableNdf','0','282'), ('10459','630','288','docsCableNdr','0','283'), ('10460','630','289','ptm','0','284'), ('10461','630','290','ghn','0','285'), ('10462','631','0','Down','0','0'), ('10463','631','1','Up','0','1'), ('10464','632','0','not available','0','0'), ('10465','632','1','available','0','1'), ('10466','632','2','unknown','0','2'), ('10467','633','1','unknown','0','0'), ('10468','633','2','halfDuplex','0','1'), ('10469','633','3','fullDuplex','0','2'), ('10470','634','1','up','0','0'), ('10471','634','2','down','0','1'), ('10472','634','4','unknown','0','2'), ('10473','634','5','dormant','0','3'), ('10474','634','6','notPresent','0','4'), ('10475','634','7','lowerLayerDown','0','5'), ('10476','635','1','other','0','0'), ('10477','635','2','regular1822','0','1'), ('10478','635','3','hdh1822','0','2'), ('10479','635','4','ddnX25','0','3'), ('10480','635','5','rfc877x25','0','4'), ('10481','635','6','ethernetCsmacd','0','5'), ('10482','635','7','iso88023Csmacd','0','6'), ('10483','635','8','iso88024TokenBus','0','7'), ('10484','635','9','iso88025TokenRing','0','8'), ('10485','635','10','iso88026Man','0','9'), ('10486','635','11','starLan','0','10'), ('10487','635','12','proteon10Mbit','0','11'), ('10488','635','13','proteon80Mbit','0','12'), ('10489','635','14','hyperchannel','0','13'), ('10490','635','15','fddi','0','14'), ('10491','635','16','lapb','0','15'), ('10492','635','17','sdlc','0','16'), ('10493','635','18','ds1','0','17'), ('10494','635','19','e1','0','18'), ('10495','635','20','basicISDN','0','19'), ('10496','635','21','primaryISDN','0','20'), ('10497','635','22','propPointToPointSerial','0','21'), ('10498','635','23','ppp','0','22'), ('10499','635','24','softwareLoopback','0','23'), ('10500','635','25','eon','0','24'), ('10501','635','26','ethernet3Mbit','0','25'), ('10502','635','27','nsip','0','26'), ('10503','635','28','slip','0','27'), ('10504','635','29','ultra','0','28'), ('10505','635','30','ds3','0','29'), ('10506','635','31','sip','0','30'), ('10507','635','32','frameRelay','0','31'), ('10508','635','33','rs232','0','32'), ('10509','635','34','para','0','33'), ('10510','635','35','arcnet','0','34'), ('10511','635','36','arcnetPlus','0','35'), ('10512','635','37','atm','0','36'), ('10513','635','38','miox25','0','37'), ('10514','635','39','sonet','0','38'), ('10515','635','40','x25ple','0','39'), ('10516','635','41','iso88022llc','0','40'), ('10517','635','42','localTalk','0','41'), ('10518','635','43','smdsDxi','0','42'), ('10519','635','44','frameRelayService','0','43'), ('10520','635','45','v35','0','44'), ('10521','635','46','hssi','0','45'), ('10522','635','47','hippi','0','46'), ('10523','635','48','modem','0','47'), ('10524','635','49','aal5','0','48'), ('10525','635','50','sonetPath','0','49'), ('10526','635','51','sonetVT','0','50'), ('10527','635','52','smdsIcip','0','51'), ('10528','635','53','propVirtual','0','52'), ('10529','635','54','propMultiplexor','0','53'), ('10530','635','55','ieee80212','0','54'), ('10531','635','56','fibreChannel','0','55'), ('10532','635','57','hippiInterface','0','56'), ('10533','635','58','frameRelayInterconnect','0','57'), ('10534','635','59','aflane8023','0','58'), ('10535','635','60','aflane8025','0','59'), ('10536','635','61','cctEmul','0','60'), ('10537','635','62','fastEther','0','61'), ('10538','635','63','isdn','0','62'), ('10539','635','64','v11','0','63'), ('10540','635','65','v36','0','64'), ('10541','635','66','g703at64k','0','65'), ('10542','635','67','g703at2mb','0','66'), ('10543','635','68','qllc','0','67'), ('10544','635','69','fastEtherFX','0','68'), ('10545','635','70','channel','0','69'), ('10546','635','71','ieee80211','0','70'), ('10547','635','72','ibm370parChan','0','71'), ('10548','635','73','escon','0','72'), ('10549','635','74','dlsw','0','73'), ('10550','635','75','isdns','0','74'), ('10551','635','76','isdnu','0','75'), ('10552','635','77','lapd','0','76'), ('10553','635','78','ipSwitch','0','77'), ('10554','635','79','rsrb','0','78'), ('10555','635','80','atmLogical','0','79'), ('10556','635','81','ds0','0','80'), ('10557','635','82','ds0Bundle','0','81'), ('10558','635','83','bsc','0','82'), ('10559','635','84','async','0','83'), ('10560','635','85','cnr','0','84'), ('10561','635','86','iso88025Dtr','0','85'), ('10562','635','87','eplrs','0','86'), ('10563','635','88','arap','0','87'), ('10564','635','89','propCnls','0','88'), ('10565','635','90','hostPad','0','89'), ('10566','635','91','termPad','0','90'), ('10567','635','92','frameRelayMPI','0','91'), ('10568','635','93','x213','0','92'), ('10569','635','94','adsl','0','93'), ('10570','635','95','radsl','0','94'), ('10571','635','96','sdsl','0','95'), ('10572','635','97','vdsl','0','96'), ('10573','635','98','iso88025CRFPInt','0','97'), ('10574','635','99','myrinet','0','98'), ('10575','635','100','voiceEM','0','99'), ('10576','635','101','voiceFXO','0','100'), ('10577','635','102','voiceFXS','0','101'), ('10578','635','103','voiceEncap','0','102'), ('10579','635','104','voiceOverIp','0','103'), ('10580','635','105','atmDxi','0','104'), ('10581','635','106','atmFuni','0','105'), ('10582','635','107','atmIma','0','106'), ('10583','635','108','pppMultilinkBundle','0','107'), ('10584','635','109','ipOverCdlc','0','108'), ('10585','635','110','ipOverClaw','0','109'), ('10586','635','111','stackToStack','0','110'), ('10587','635','112','virtualIpAddress','0','111'), ('10588','635','113','mpc','0','112'), ('10589','635','114','ipOverAtm','0','113'), ('10590','635','115','iso88025Fiber','0','114'), ('10591','635','116','tdlc','0','115'), ('10592','635','117','gigabitEthernet','0','116'), ('10593','635','118','hdlc','0','117'), ('10594','635','119','lapf','0','118'), ('10595','635','120','v37','0','119'), ('10596','635','121','x25mlp','0','120'), ('10597','635','122','x25huntGroup','0','121'), ('10598','635','123','trasnpHdlc','0','122'), ('10599','635','124','interleave','0','123'), ('10600','635','125','fast','0','124'), ('10601','635','126','ip','0','125'), ('10602','635','127','docsCableMaclayer','0','126'), ('10603','635','128','docsCableDownstream','0','127'), ('10604','635','129','docsCableUpstream','0','128'), ('10605','635','130','a12MppSwitch','0','129'), ('10606','635','131','tunnel','0','130'), ('10607','635','132','coffee','0','131'), ('10608','635','133','ces','0','132'), ('10609','635','134','atmSubInterface','0','133'), ('10610','635','135','l2vlan','0','134'), ('10611','635','136','l3ipvlan','0','135'), ('10612','635','137','l3ipxvlan','0','136'), ('10613','635','138','digitalPowerline','0','137'), ('10614','635','139','mediaMailOverIp','0','138'), ('10615','635','140','dtm','0','139'), ('10616','635','141','dcn','0','140'), ('10617','635','142','ipForward','0','141'), ('10618','635','143','msdsl','0','142'), ('10619','635','144','ieee1394','0','143'), ('10620','635','145','if-gsn','0','144'), ('10621','635','146','dvbRccMacLayer','0','145'), ('10622','635','147','dvbRccDownstream','0','146'), ('10623','635','148','dvbRccUpstream','0','147'), ('10624','635','149','atmVirtual','0','148'), ('10625','635','150','mplsTunnel','0','149'), ('10626','635','151','srp','0','150'), ('10627','635','152','voiceOverAtm','0','151'), ('10628','635','153','voiceOverFrameRelay','0','152'), ('10629','635','154','idsl','0','153'), ('10630','635','155','compositeLink','0','154'), ('10631','635','156','ss7SigLink','0','155'), ('10632','635','157','propWirelessP2P','0','156'), ('10633','635','158','frForward','0','157'), ('10634','635','159','rfc1483','0','158'), ('10635','635','160','usb','0','159'), ('10636','635','161','ieee8023adLag','0','160'), ('10637','635','162','bgppolicyaccounting','0','161'), ('10638','635','163','frf16MfrBundle','0','162'), ('10639','635','164','h323Gatekeeper','0','163'), ('10640','635','165','h323Proxy','0','164'), ('10641','635','166','mpls','0','165'), ('10642','635','167','mfSigLink','0','166'), ('10643','635','168','hdsl2','0','167'), ('10644','635','169','shdsl','0','168'), ('10645','635','170','ds1FDL','0','169'), ('10646','635','171','pos','0','170'), ('10647','635','172','dvbAsiIn','0','171'), ('10648','635','173','dvbAsiOut','0','172'), ('10649','635','174','plc','0','173'), ('10650','635','175','nfas','0','174'), ('10651','635','176','tr008','0','175'), ('10652','635','177','gr303RDT','0','176'), ('10653','635','178','gr303IDT','0','177'), ('10654','635','179','isup','0','178'), ('10655','635','180','propDocsWirelessMaclayer','0','179'), ('10656','635','181','propDocsWirelessDownstream','0','180'), ('10657','635','182','propDocsWirelessUpstream','0','181'), ('10658','635','183','hiperlan2','0','182'), ('10659','635','184','propBWAp2Mp','0','183'), ('10660','635','185','sonetOverheadChannel','0','184'), ('10661','635','186','digitalWrapperOverheadChannel','0','185'), ('10662','635','187','aal2','0','186'), ('10663','635','188','radioMAC','0','187'), ('10664','635','189','atmRadio','0','188'), ('10665','635','190','imt','0','189'), ('10666','635','191','mvl','0','190'), ('10667','635','192','reachDSL','0','191'), ('10668','635','193','frDlciEndPt','0','192'), ('10669','635','194','atmVciEndPt','0','193'), ('10670','635','195','opticalChannel','0','194'), ('10671','635','196','opticalTransport','0','195'), ('10672','635','197','propAtm','0','196'), ('10673','635','198','voiceOverCable','0','197'), ('10674','635','199','infiniband','0','198'), ('10675','635','200','teLink','0','199'), ('10676','635','201','q2931','0','200'), ('10677','635','202','virtualTg','0','201'), ('10678','635','203','sipTg','0','202'), ('10679','635','204','sipSig','0','203'), ('10680','635','205','docsCableUpstreamChannel','0','204'), ('10681','635','206','econet','0','205'), ('10682','635','207','pon155','0','206'), ('10683','635','208','pon622','0','207'), ('10684','635','209','bridge','0','208'), ('10685','635','210','linegroup','0','209'), ('10686','635','211','voiceEMFGD','0','210'), ('10687','635','212','voiceFGDEANA','0','211'), ('10688','635','213','voiceDID','0','212'), ('10689','635','214','mpegTransport','0','213'), ('10690','635','215','sixToFour','0','214'), ('10691','635','216','gtp','0','215'), ('10692','635','217','pdnEtherLoop1','0','216'), ('10693','635','218','pdnEtherLoop2','0','217'), ('10694','635','219','opticalChannelGroup','0','218'), ('10695','635','220','homepna','0','219'), ('10696','635','221','gfp','0','220'), ('10697','635','222','ciscoISLvlan','0','221'), ('10698','635','223','actelisMetaLOOP','0','222'), ('10699','635','224','fcipLink','0','223'), ('10700','635','225','rpr','0','224'), ('10701','635','226','qam','0','225'), ('10702','635','227','lmp','0','226'), ('10703','635','228','cblVectaStar','0','227'), ('10704','635','229','docsCableMCmtsDownstream','0','228'), ('10705','635','230','adsl2','0','229'), ('10706','635','231','macSecControlledIF','0','230'), ('10707','635','232','macSecUncontrolledIF','0','231'), ('10708','635','233','aviciOpticalEther','0','232'), ('10709','635','234','atmbond','0','233'), ('10710','635','235','voiceFGDOS','0','234'), ('10711','635','236','mocaVersion1','0','235'), ('10712','635','237','ieee80216WMAN','0','236'), ('10713','635','238','adsl2plus','0','237'), ('10714','635','239','dvbRcsMacLayer','0','238'), ('10715','635','240','dvbTdm','0','239'), ('10716','635','241','dvbRcsTdma','0','240'), ('10717','635','242','x86Laps','0','241'), ('10718','635','243','wwanPP','0','242'), ('10719','635','244','wwanPP2','0','243'), ('10720','635','245','voiceEBS','0','244'), ('10721','635','246','ifPwType','0','245'), ('10722','635','247','ilan','0','246'), ('10723','635','248','pip','0','247'), ('10724','635','249','aluELP','0','248'), ('10725','635','250','gpon','0','249'), ('10726','635','251','vdsl2','0','250'), ('10727','635','252','capwapDot11Profile','0','251'), ('10728','635','253','capwapDot11Bss','0','252'), ('10729','635','254','capwapWtpVirtualRadio','0','253'), ('10730','635','255','bits','0','254'), ('10731','635','256','docsCableUpstreamRfPort','0','255'), ('10732','635','257','cableDownstreamRfPort','0','256'), ('10733','635','258','vmwareVirtualNic','0','257'), ('10734','635','259','ieee802154','0','258'), ('10735','635','260','otnOdu','0','259'), ('10736','635','261','otnOtu','0','260'), ('10737','635','262','ifVfiType','0','261'), ('10738','635','263','g9981','0','262'), ('10739','635','264','g9982','0','263'), ('10740','635','265','g9983','0','264'), ('10741','635','266','aluEpon','0','265'), ('10742','635','267','aluEponOnu','0','266'), ('10743','635','268','aluEponPhysicalUni','0','267'), ('10744','635','269','aluEponLogicalLink','0','268'), ('10745','635','270','aluGponOnu','0','269'), ('10746','635','271','aluGponPhysicalUni','0','270'), ('10747','635','272','vmwareNicTeam','0','271'), ('10748','635','277','docsOfdmDownstream','0','272'), ('10749','635','278','docsOfdmaUpstream','0','273'), ('10750','635','279','gfast','0','274'), ('10751','635','280','sdci','0','275'), ('10752','635','281','xboxWireless','0','276'), ('10753','635','282','fastdsl','0','277'), ('10754','635','283','docsCableScte55d1FwdOob','0','278'), ('10755','635','284','docsCableScte55d1RetOob','0','279'), ('10756','635','285','docsCableScte55d2DsOob','0','280'), ('10757','635','286','docsCableScte55d2UsOob','0','281'), ('10758','635','287','docsCableNdf','0','282'), ('10759','635','288','docsCableNdr','0','283'), ('10760','635','289','ptm','0','284'), ('10761','635','290','ghn','0','285'), ('10762','636','0','Down','0','0'), ('10763','636','1','Up','0','1'), ('10764','637','0','not available','0','0'), ('10765','637','1','available','0','1'), ('10766','637','2','unknown','0','2'), ('10767','638','1','unknown','0','0'), ('10768','638','2','halfDuplex','0','1'), ('10769','638','3','fullDuplex','0','2'), ('10770','639','1','up','0','0'), ('10771','639','2','down','0','1'), ('10772','639','4','unknown','0','2'), ('10773','639','5','dormant','0','3'), ('10774','639','6','notPresent','0','4'), ('10775','639','7','lowerLayerDown','0','5'), ('10776','640','1','other','0','0'), ('10777','640','2','regular1822','0','1'), ('10778','640','3','hdh1822','0','2'), ('10779','640','4','ddnX25','0','3'), ('10780','640','5','rfc877x25','0','4'), ('10781','640','6','ethernetCsmacd','0','5'), ('10782','640','7','iso88023Csmacd','0','6'), ('10783','640','8','iso88024TokenBus','0','7'), ('10784','640','9','iso88025TokenRing','0','8'), ('10785','640','10','iso88026Man','0','9'), ('10786','640','11','starLan','0','10'), ('10787','640','12','proteon10Mbit','0','11'), ('10788','640','13','proteon80Mbit','0','12'), ('10789','640','14','hyperchannel','0','13'), ('10790','640','15','fddi','0','14'), ('10791','640','16','lapb','0','15'), ('10792','640','17','sdlc','0','16'), ('10793','640','18','ds1','0','17'), ('10794','640','19','e1','0','18'), ('10795','640','20','basicISDN','0','19'), ('10796','640','21','primaryISDN','0','20'), ('10797','640','22','propPointToPointSerial','0','21'), ('10798','640','23','ppp','0','22'), ('10799','640','24','softwareLoopback','0','23'), ('10800','640','25','eon','0','24'), ('10801','640','26','ethernet3Mbit','0','25'), ('10802','640','27','nsip','0','26'), ('10803','640','28','slip','0','27'), ('10804','640','29','ultra','0','28'), ('10805','640','30','ds3','0','29'), ('10806','640','31','sip','0','30'), ('10807','640','32','frameRelay','0','31'), ('10808','640','33','rs232','0','32'), ('10809','640','34','para','0','33'), ('10810','640','35','arcnet','0','34'), ('10811','640','36','arcnetPlus','0','35'), ('10812','640','37','atm','0','36'), ('10813','640','38','miox25','0','37'), ('10814','640','39','sonet','0','38'), ('10815','640','40','x25ple','0','39'), ('10816','640','41','iso88022llc','0','40'), ('10817','640','42','localTalk','0','41'), ('10818','640','43','smdsDxi','0','42'), ('10819','640','44','frameRelayService','0','43'), ('10820','640','45','v35','0','44'), ('10821','640','46','hssi','0','45'), ('10822','640','47','hippi','0','46'), ('10823','640','48','modem','0','47'), ('10824','640','49','aal5','0','48'), ('10825','640','50','sonetPath','0','49'), ('10826','640','51','sonetVT','0','50'), ('10827','640','52','smdsIcip','0','51'), ('10828','640','53','propVirtual','0','52'), ('10829','640','54','propMultiplexor','0','53'), ('10830','640','55','ieee80212','0','54'), ('10831','640','56','fibreChannel','0','55'), ('10832','640','57','hippiInterface','0','56'), ('10833','640','58','frameRelayInterconnect','0','57'), ('10834','640','59','aflane8023','0','58'), ('10835','640','60','aflane8025','0','59'), ('10836','640','61','cctEmul','0','60'), ('10837','640','62','fastEther','0','61'), ('10838','640','63','isdn','0','62'), ('10839','640','64','v11','0','63'), ('10840','640','65','v36','0','64'), ('10841','640','66','g703at64k','0','65'), ('10842','640','67','g703at2mb','0','66'), ('10843','640','68','qllc','0','67'), ('10844','640','69','fastEtherFX','0','68'), ('10845','640','70','channel','0','69'), ('10846','640','71','ieee80211','0','70'), ('10847','640','72','ibm370parChan','0','71'), ('10848','640','73','escon','0','72'), ('10849','640','74','dlsw','0','73'), ('10850','640','75','isdns','0','74'), ('10851','640','76','isdnu','0','75'), ('10852','640','77','lapd','0','76'), ('10853','640','78','ipSwitch','0','77'), ('10854','640','79','rsrb','0','78'), ('10855','640','80','atmLogical','0','79'), ('10856','640','81','ds0','0','80'), ('10857','640','82','ds0Bundle','0','81'), ('10858','640','83','bsc','0','82'), ('10859','640','84','async','0','83'), ('10860','640','85','cnr','0','84'), ('10861','640','86','iso88025Dtr','0','85'), ('10862','640','87','eplrs','0','86'), ('10863','640','88','arap','0','87'), ('10864','640','89','propCnls','0','88'), ('10865','640','90','hostPad','0','89'), ('10866','640','91','termPad','0','90'), ('10867','640','92','frameRelayMPI','0','91'), ('10868','640','93','x213','0','92'), ('10869','640','94','adsl','0','93'), ('10870','640','95','radsl','0','94'), ('10871','640','96','sdsl','0','95'), ('10872','640','97','vdsl','0','96'), ('10873','640','98','iso88025CRFPInt','0','97'), ('10874','640','99','myrinet','0','98'), ('10875','640','100','voiceEM','0','99'), ('10876','640','101','voiceFXO','0','100'), ('10877','640','102','voiceFXS','0','101'), ('10878','640','103','voiceEncap','0','102'), ('10879','640','104','voiceOverIp','0','103'), ('10880','640','105','atmDxi','0','104'), ('10881','640','106','atmFuni','0','105'), ('10882','640','107','atmIma','0','106'), ('10883','640','108','pppMultilinkBundle','0','107'), ('10884','640','109','ipOverCdlc','0','108'), ('10885','640','110','ipOverClaw','0','109'), ('10886','640','111','stackToStack','0','110'), ('10887','640','112','virtualIpAddress','0','111'), ('10888','640','113','mpc','0','112'), ('10889','640','114','ipOverAtm','0','113'), ('10890','640','115','iso88025Fiber','0','114'), ('10891','640','116','tdlc','0','115'), ('10892','640','117','gigabitEthernet','0','116'), ('10893','640','118','hdlc','0','117'), ('10894','640','119','lapf','0','118'), ('10895','640','120','v37','0','119'), ('10896','640','121','x25mlp','0','120'), ('10897','640','122','x25huntGroup','0','121'), ('10898','640','123','trasnpHdlc','0','122'), ('10899','640','124','interleave','0','123'), ('10900','640','125','fast','0','124'), ('10901','640','126','ip','0','125'), ('10902','640','127','docsCableMaclayer','0','126'), ('10903','640','128','docsCableDownstream','0','127'), ('10904','640','129','docsCableUpstream','0','128'), ('10905','640','130','a12MppSwitch','0','129'), ('10906','640','131','tunnel','0','130'), ('10907','640','132','coffee','0','131'), ('10908','640','133','ces','0','132'), ('10909','640','134','atmSubInterface','0','133'), ('10910','640','135','l2vlan','0','134'), ('10911','640','136','l3ipvlan','0','135'), ('10912','640','137','l3ipxvlan','0','136'), ('10913','640','138','digitalPowerline','0','137'), ('10914','640','139','mediaMailOverIp','0','138'), ('10915','640','140','dtm','0','139'), ('10916','640','141','dcn','0','140'), ('10917','640','142','ipForward','0','141'), ('10918','640','143','msdsl','0','142'), ('10919','640','144','ieee1394','0','143'), ('10920','640','145','if-gsn','0','144'), ('10921','640','146','dvbRccMacLayer','0','145'), ('10922','640','147','dvbRccDownstream','0','146'), ('10923','640','148','dvbRccUpstream','0','147'), ('10924','640','149','atmVirtual','0','148'), ('10925','640','150','mplsTunnel','0','149'), ('10926','640','151','srp','0','150'), ('10927','640','152','voiceOverAtm','0','151'), ('10928','640','153','voiceOverFrameRelay','0','152'), ('10929','640','154','idsl','0','153'), ('10930','640','155','compositeLink','0','154'), ('10931','640','156','ss7SigLink','0','155'), ('10932','640','157','propWirelessP2P','0','156'), ('10933','640','158','frForward','0','157'), ('10934','640','159','rfc1483','0','158'), ('10935','640','160','usb','0','159'), ('10936','640','161','ieee8023adLag','0','160'), ('10937','640','162','bgppolicyaccounting','0','161'), ('10938','640','163','frf16MfrBundle','0','162'), ('10939','640','164','h323Gatekeeper','0','163'), ('10940','640','165','h323Proxy','0','164'), ('10941','640','166','mpls','0','165'), ('10942','640','167','mfSigLink','0','166'), ('10943','640','168','hdsl2','0','167'), ('10944','640','169','shdsl','0','168'), ('10945','640','170','ds1FDL','0','169'), ('10946','640','171','pos','0','170'), ('10947','640','172','dvbAsiIn','0','171'), ('10948','640','173','dvbAsiOut','0','172'), ('10949','640','174','plc','0','173'), ('10950','640','175','nfas','0','174'), ('10951','640','176','tr008','0','175'), ('10952','640','177','gr303RDT','0','176'), ('10953','640','178','gr303IDT','0','177'), ('10954','640','179','isup','0','178'), ('10955','640','180','propDocsWirelessMaclayer','0','179'), ('10956','640','181','propDocsWirelessDownstream','0','180'), ('10957','640','182','propDocsWirelessUpstream','0','181'), ('10958','640','183','hiperlan2','0','182'), ('10959','640','184','propBWAp2Mp','0','183'), ('10960','640','185','sonetOverheadChannel','0','184'), ('10961','640','186','digitalWrapperOverheadChannel','0','185'), ('10962','640','187','aal2','0','186'), ('10963','640','188','radioMAC','0','187'), ('10964','640','189','atmRadio','0','188'), ('10965','640','190','imt','0','189'), ('10966','640','191','mvl','0','190'), ('10967','640','192','reachDSL','0','191'), ('10968','640','193','frDlciEndPt','0','192'), ('10969','640','194','atmVciEndPt','0','193'), ('10970','640','195','opticalChannel','0','194'), ('10971','640','196','opticalTransport','0','195'), ('10972','640','197','propAtm','0','196'), ('10973','640','198','voiceOverCable','0','197'), ('10974','640','199','infiniband','0','198'), ('10975','640','200','teLink','0','199'), ('10976','640','201','q2931','0','200'), ('10977','640','202','virtualTg','0','201'), ('10978','640','203','sipTg','0','202'), ('10979','640','204','sipSig','0','203'), ('10980','640','205','docsCableUpstreamChannel','0','204'), ('10981','640','206','econet','0','205'), ('10982','640','207','pon155','0','206'), ('10983','640','208','pon622','0','207'), ('10984','640','209','bridge','0','208'), ('10985','640','210','linegroup','0','209'), ('10986','640','211','voiceEMFGD','0','210'), ('10987','640','212','voiceFGDEANA','0','211'), ('10988','640','213','voiceDID','0','212'), ('10989','640','214','mpegTransport','0','213'), ('10990','640','215','sixToFour','0','214'), ('10991','640','216','gtp','0','215'), ('10992','640','217','pdnEtherLoop1','0','216'), ('10993','640','218','pdnEtherLoop2','0','217'), ('10994','640','219','opticalChannelGroup','0','218'), ('10995','640','220','homepna','0','219'), ('10996','640','221','gfp','0','220'), ('10997','640','222','ciscoISLvlan','0','221'), ('10998','640','223','actelisMetaLOOP','0','222'), ('10999','640','224','fcipLink','0','223'), ('11000','640','225','rpr','0','224'), ('11001','640','226','qam','0','225'), ('11002','640','227','lmp','0','226'), ('11003','640','228','cblVectaStar','0','227'), ('11004','640','229','docsCableMCmtsDownstream','0','228'), ('11005','640','230','adsl2','0','229'), ('11006','640','231','macSecControlledIF','0','230'), ('11007','640','232','macSecUncontrolledIF','0','231'), ('11008','640','233','aviciOpticalEther','0','232'), ('11009','640','234','atmbond','0','233'), ('11010','640','235','voiceFGDOS','0','234'), ('11011','640','236','mocaVersion1','0','235'), ('11012','640','237','ieee80216WMAN','0','236'), ('11013','640','238','adsl2plus','0','237'), ('11014','640','239','dvbRcsMacLayer','0','238'), ('11015','640','240','dvbTdm','0','239'), ('11016','640','241','dvbRcsTdma','0','240'), ('11017','640','242','x86Laps','0','241'), ('11018','640','243','wwanPP','0','242'), ('11019','640','244','wwanPP2','0','243'), ('11020','640','245','voiceEBS','0','244'), ('11021','640','246','ifPwType','0','245'), ('11022','640','247','ilan','0','246'), ('11023','640','248','pip','0','247'), ('11024','640','249','aluELP','0','248'), ('11025','640','250','gpon','0','249'), ('11026','640','251','vdsl2','0','250'), ('11027','640','252','capwapDot11Profile','0','251'), ('11028','640','253','capwapDot11Bss','0','252'), ('11029','640','254','capwapWtpVirtualRadio','0','253'), ('11030','640','255','bits','0','254'), ('11031','640','256','docsCableUpstreamRfPort','0','255'), ('11032','640','257','cableDownstreamRfPort','0','256'), ('11033','640','258','vmwareVirtualNic','0','257'), ('11034','640','259','ieee802154','0','258'), ('11035','640','260','otnOdu','0','259'), ('11036','640','261','otnOtu','0','260'), ('11037','640','262','ifVfiType','0','261'), ('11038','640','263','g9981','0','262'), ('11039','640','264','g9982','0','263'), ('11040','640','265','g9983','0','264'), ('11041','640','266','aluEpon','0','265'), ('11042','640','267','aluEponOnu','0','266'), ('11043','640','268','aluEponPhysicalUni','0','267'), ('11044','640','269','aluEponLogicalLink','0','268'), ('11045','640','270','aluGponOnu','0','269'), ('11046','640','271','aluGponPhysicalUni','0','270'), ('11047','640','272','vmwareNicTeam','0','271'), ('11048','640','277','docsOfdmDownstream','0','272'), ('11049','640','278','docsOfdmaUpstream','0','273'), ('11050','640','279','gfast','0','274'), ('11051','640','280','sdci','0','275'), ('11052','640','281','xboxWireless','0','276'), ('11053','640','282','fastdsl','0','277'), ('11054','640','283','docsCableScte55d1FwdOob','0','278'), ('11055','640','284','docsCableScte55d1RetOob','0','279'), ('11056','640','285','docsCableScte55d2DsOob','0','280'), ('11057','640','286','docsCableScte55d2UsOob','0','281'), ('11058','640','287','docsCableNdf','0','282'), ('11059','640','288','docsCableNdr','0','283'), ('11060','640','289','ptm','0','284'), ('11061','640','290','ghn','0','285'), ('11062','641','0','Down','0','0'), ('11063','641','1','Up','0','1'), ('11064','642','0','not available','0','0'), ('11065','642','1','available','0','1'), ('11066','642','2','unknown','0','2'), ('11067','643','1','unknown','0','0'), ('11068','643','2','halfDuplex','0','1'), ('11069','643','3','fullDuplex','0','2'), ('11070','644','1','up','0','0'), ('11071','644','2','down','0','1'), ('11072','644','4','unknown','0','2'), ('11073','644','5','dormant','0','3'), ('11074','644','6','notPresent','0','4'), ('11075','644','7','lowerLayerDown','0','5'), ('11076','645','1','other','0','0'), ('11077','645','2','regular1822','0','1'), ('11078','645','3','hdh1822','0','2'), ('11079','645','4','ddnX25','0','3'), ('11080','645','5','rfc877x25','0','4'), ('11081','645','6','ethernetCsmacd','0','5'), ('11082','645','7','iso88023Csmacd','0','6'), ('11083','645','8','iso88024TokenBus','0','7'), ('11084','645','9','iso88025TokenRing','0','8'), ('11085','645','10','iso88026Man','0','9'), ('11086','645','11','starLan','0','10'), ('11087','645','12','proteon10Mbit','0','11'), ('11088','645','13','proteon80Mbit','0','12'), ('11089','645','14','hyperchannel','0','13'), ('11090','645','15','fddi','0','14'), ('11091','645','16','lapb','0','15'), ('11092','645','17','sdlc','0','16'), ('11093','645','18','ds1','0','17'), ('11094','645','19','e1','0','18'), ('11095','645','20','basicISDN','0','19'), ('11096','645','21','primaryISDN','0','20'), ('11097','645','22','propPointToPointSerial','0','21'), ('11098','645','23','ppp','0','22'), ('11099','645','24','softwareLoopback','0','23'), ('11100','645','25','eon','0','24'), ('11101','645','26','ethernet3Mbit','0','25'), ('11102','645','27','nsip','0','26'), ('11103','645','28','slip','0','27'), ('11104','645','29','ultra','0','28'), ('11105','645','30','ds3','0','29'), ('11106','645','31','sip','0','30'), ('11107','645','32','frameRelay','0','31'), ('11108','645','33','rs232','0','32'), ('11109','645','34','para','0','33'), ('11110','645','35','arcnet','0','34'), ('11111','645','36','arcnetPlus','0','35'), ('11112','645','37','atm','0','36'), ('11113','645','38','miox25','0','37'), ('11114','645','39','sonet','0','38'), ('11115','645','40','x25ple','0','39'), ('11116','645','41','iso88022llc','0','40'), ('11117','645','42','localTalk','0','41'), ('11118','645','43','smdsDxi','0','42'), ('11119','645','44','frameRelayService','0','43'), ('11120','645','45','v35','0','44'), ('11121','645','46','hssi','0','45'), ('11122','645','47','hippi','0','46'), ('11123','645','48','modem','0','47'), ('11124','645','49','aal5','0','48'), ('11125','645','50','sonetPath','0','49'), ('11126','645','51','sonetVT','0','50'), ('11127','645','52','smdsIcip','0','51'), ('11128','645','53','propVirtual','0','52'), ('11129','645','54','propMultiplexor','0','53'), ('11130','645','55','ieee80212','0','54'), ('11131','645','56','fibreChannel','0','55'), ('11132','645','57','hippiInterface','0','56'), ('11133','645','58','frameRelayInterconnect','0','57'), ('11134','645','59','aflane8023','0','58'), ('11135','645','60','aflane8025','0','59'), ('11136','645','61','cctEmul','0','60'), ('11137','645','62','fastEther','0','61'), ('11138','645','63','isdn','0','62'), ('11139','645','64','v11','0','63'), ('11140','645','65','v36','0','64'), ('11141','645','66','g703at64k','0','65'), ('11142','645','67','g703at2mb','0','66'), ('11143','645','68','qllc','0','67'), ('11144','645','69','fastEtherFX','0','68'), ('11145','645','70','channel','0','69'), ('11146','645','71','ieee80211','0','70'), ('11147','645','72','ibm370parChan','0','71'), ('11148','645','73','escon','0','72'), ('11149','645','74','dlsw','0','73'), ('11150','645','75','isdns','0','74'), ('11151','645','76','isdnu','0','75'), ('11152','645','77','lapd','0','76'), ('11153','645','78','ipSwitch','0','77'), ('11154','645','79','rsrb','0','78'), ('11155','645','80','atmLogical','0','79'), ('11156','645','81','ds0','0','80'), ('11157','645','82','ds0Bundle','0','81'), ('11158','645','83','bsc','0','82'), ('11159','645','84','async','0','83'), ('11160','645','85','cnr','0','84'), ('11161','645','86','iso88025Dtr','0','85'), ('11162','645','87','eplrs','0','86'), ('11163','645','88','arap','0','87'), ('11164','645','89','propCnls','0','88'), ('11165','645','90','hostPad','0','89'), ('11166','645','91','termPad','0','90'), ('11167','645','92','frameRelayMPI','0','91'), ('11168','645','93','x213','0','92'), ('11169','645','94','adsl','0','93'), ('11170','645','95','radsl','0','94'), ('11171','645','96','sdsl','0','95'), ('11172','645','97','vdsl','0','96'), ('11173','645','98','iso88025CRFPInt','0','97'), ('11174','645','99','myrinet','0','98'), ('11175','645','100','voiceEM','0','99'), ('11176','645','101','voiceFXO','0','100'), ('11177','645','102','voiceFXS','0','101'), ('11178','645','103','voiceEncap','0','102'), ('11179','645','104','voiceOverIp','0','103'), ('11180','645','105','atmDxi','0','104'), ('11181','645','106','atmFuni','0','105'), ('11182','645','107','atmIma','0','106'), ('11183','645','108','pppMultilinkBundle','0','107'), ('11184','645','109','ipOverCdlc','0','108'), ('11185','645','110','ipOverClaw','0','109'), ('11186','645','111','stackToStack','0','110'), ('11187','645','112','virtualIpAddress','0','111'), ('11188','645','113','mpc','0','112'), ('11189','645','114','ipOverAtm','0','113'), ('11190','645','115','iso88025Fiber','0','114'), ('11191','645','116','tdlc','0','115'), ('11192','645','117','gigabitEthernet','0','116'), ('11193','645','118','hdlc','0','117'), ('11194','645','119','lapf','0','118'), ('11195','645','120','v37','0','119'), ('11196','645','121','x25mlp','0','120'), ('11197','645','122','x25huntGroup','0','121'), ('11198','645','123','trasnpHdlc','0','122'), ('11199','645','124','interleave','0','123'), ('11200','645','125','fast','0','124'), ('11201','645','126','ip','0','125'), ('11202','645','127','docsCableMaclayer','0','126'), ('11203','645','128','docsCableDownstream','0','127'), ('11204','645','129','docsCableUpstream','0','128'), ('11205','645','130','a12MppSwitch','0','129'), ('11206','645','131','tunnel','0','130'), ('11207','645','132','coffee','0','131'), ('11208','645','133','ces','0','132'), ('11209','645','134','atmSubInterface','0','133'), ('11210','645','135','l2vlan','0','134'), ('11211','645','136','l3ipvlan','0','135'), ('11212','645','137','l3ipxvlan','0','136'), ('11213','645','138','digitalPowerline','0','137'), ('11214','645','139','mediaMailOverIp','0','138'), ('11215','645','140','dtm','0','139'), ('11216','645','141','dcn','0','140'), ('11217','645','142','ipForward','0','141'), ('11218','645','143','msdsl','0','142'), ('11219','645','144','ieee1394','0','143'), ('11220','645','145','if-gsn','0','144'), ('11221','645','146','dvbRccMacLayer','0','145'), ('11222','645','147','dvbRccDownstream','0','146'), ('11223','645','148','dvbRccUpstream','0','147'), ('11224','645','149','atmVirtual','0','148'), ('11225','645','150','mplsTunnel','0','149'), ('11226','645','151','srp','0','150'), ('11227','645','152','voiceOverAtm','0','151'), ('11228','645','153','voiceOverFrameRelay','0','152'), ('11229','645','154','idsl','0','153'), ('11230','645','155','compositeLink','0','154'), ('11231','645','156','ss7SigLink','0','155'), ('11232','645','157','propWirelessP2P','0','156'), ('11233','645','158','frForward','0','157'), ('11234','645','159','rfc1483','0','158'), ('11235','645','160','usb','0','159'), ('11236','645','161','ieee8023adLag','0','160'), ('11237','645','162','bgppolicyaccounting','0','161'), ('11238','645','163','frf16MfrBundle','0','162'), ('11239','645','164','h323Gatekeeper','0','163'), ('11240','645','165','h323Proxy','0','164'), ('11241','645','166','mpls','0','165'), ('11242','645','167','mfSigLink','0','166'), ('11243','645','168','hdsl2','0','167'), ('11244','645','169','shdsl','0','168'), ('11245','645','170','ds1FDL','0','169'), ('11246','645','171','pos','0','170'), ('11247','645','172','dvbAsiIn','0','171'), ('11248','645','173','dvbAsiOut','0','172'), ('11249','645','174','plc','0','173'), ('11250','645','175','nfas','0','174'), ('11251','645','176','tr008','0','175'), ('11252','645','177','gr303RDT','0','176'), ('11253','645','178','gr303IDT','0','177'), ('11254','645','179','isup','0','178'), ('11255','645','180','propDocsWirelessMaclayer','0','179'), ('11256','645','181','propDocsWirelessDownstream','0','180'), ('11257','645','182','propDocsWirelessUpstream','0','181'), ('11258','645','183','hiperlan2','0','182'), ('11259','645','184','propBWAp2Mp','0','183'), ('11260','645','185','sonetOverheadChannel','0','184'), ('11261','645','186','digitalWrapperOverheadChannel','0','185'), ('11262','645','187','aal2','0','186'), ('11263','645','188','radioMAC','0','187'), ('11264','645','189','atmRadio','0','188'), ('11265','645','190','imt','0','189'), ('11266','645','191','mvl','0','190'), ('11267','645','192','reachDSL','0','191'), ('11268','645','193','frDlciEndPt','0','192'), ('11269','645','194','atmVciEndPt','0','193'), ('11270','645','195','opticalChannel','0','194'), ('11271','645','196','opticalTransport','0','195'), ('11272','645','197','propAtm','0','196'), ('11273','645','198','voiceOverCable','0','197'), ('11274','645','199','infiniband','0','198'), ('11275','645','200','teLink','0','199'), ('11276','645','201','q2931','0','200'), ('11277','645','202','virtualTg','0','201'), ('11278','645','203','sipTg','0','202'), ('11279','645','204','sipSig','0','203'), ('11280','645','205','docsCableUpstreamChannel','0','204'), ('11281','645','206','econet','0','205'), ('11282','645','207','pon155','0','206'), ('11283','645','208','pon622','0','207'), ('11284','645','209','bridge','0','208'), ('11285','645','210','linegroup','0','209'), ('11286','645','211','voiceEMFGD','0','210'), ('11287','645','212','voiceFGDEANA','0','211'), ('11288','645','213','voiceDID','0','212'), ('11289','645','214','mpegTransport','0','213'), ('11290','645','215','sixToFour','0','214'), ('11291','645','216','gtp','0','215'), ('11292','645','217','pdnEtherLoop1','0','216'), ('11293','645','218','pdnEtherLoop2','0','217'), ('11294','645','219','opticalChannelGroup','0','218'), ('11295','645','220','homepna','0','219'), ('11296','645','221','gfp','0','220'), ('11297','645','222','ciscoISLvlan','0','221'), ('11298','645','223','actelisMetaLOOP','0','222'), ('11299','645','224','fcipLink','0','223'), ('11300','645','225','rpr','0','224'), ('11301','645','226','qam','0','225'), ('11302','645','227','lmp','0','226'), ('11303','645','228','cblVectaStar','0','227'), ('11304','645','229','docsCableMCmtsDownstream','0','228'), ('11305','645','230','adsl2','0','229'), ('11306','645','231','macSecControlledIF','0','230'), ('11307','645','232','macSecUncontrolledIF','0','231'), ('11308','645','233','aviciOpticalEther','0','232'), ('11309','645','234','atmbond','0','233'), ('11310','645','235','voiceFGDOS','0','234'), ('11311','645','236','mocaVersion1','0','235'), ('11312','645','237','ieee80216WMAN','0','236'), ('11313','645','238','adsl2plus','0','237'), ('11314','645','239','dvbRcsMacLayer','0','238'), ('11315','645','240','dvbTdm','0','239'), ('11316','645','241','dvbRcsTdma','0','240'), ('11317','645','242','x86Laps','0','241'), ('11318','645','243','wwanPP','0','242'), ('11319','645','244','wwanPP2','0','243'), ('11320','645','245','voiceEBS','0','244'), ('11321','645','246','ifPwType','0','245'), ('11322','645','247','ilan','0','246'), ('11323','645','248','pip','0','247'), ('11324','645','249','aluELP','0','248'), ('11325','645','250','gpon','0','249'), ('11326','645','251','vdsl2','0','250'), ('11327','645','252','capwapDot11Profile','0','251'), ('11328','645','253','capwapDot11Bss','0','252'), ('11329','645','254','capwapWtpVirtualRadio','0','253'), ('11330','645','255','bits','0','254'), ('11331','645','256','docsCableUpstreamRfPort','0','255'), ('11332','645','257','cableDownstreamRfPort','0','256'), ('11333','645','258','vmwareVirtualNic','0','257'), ('11334','645','259','ieee802154','0','258'), ('11335','645','260','otnOdu','0','259'), ('11336','645','261','otnOtu','0','260'), ('11337','645','262','ifVfiType','0','261'), ('11338','645','263','g9981','0','262'), ('11339','645','264','g9982','0','263'), ('11340','645','265','g9983','0','264'), ('11341','645','266','aluEpon','0','265'), ('11342','645','267','aluEponOnu','0','266'), ('11343','645','268','aluEponPhysicalUni','0','267'), ('11344','645','269','aluEponLogicalLink','0','268'), ('11345','645','270','aluGponOnu','0','269'), ('11346','645','271','aluGponPhysicalUni','0','270'), ('11347','645','272','vmwareNicTeam','0','271'), ('11348','645','277','docsOfdmDownstream','0','272'), ('11349','645','278','docsOfdmaUpstream','0','273'), ('11350','645','279','gfast','0','274'), ('11351','645','280','sdci','0','275'), ('11352','645','281','xboxWireless','0','276'), ('11353','645','282','fastdsl','0','277'), ('11354','645','283','docsCableScte55d1FwdOob','0','278'), ('11355','645','284','docsCableScte55d1RetOob','0','279'), ('11356','645','285','docsCableScte55d2DsOob','0','280'), ('11357','645','286','docsCableScte55d2UsOob','0','281'), ('11358','645','287','docsCableNdf','0','282'), ('11359','645','288','docsCableNdr','0','283'), ('11360','645','289','ptm','0','284'), ('11361','645','290','ghn','0','285'), ('11362','646','0','Down','0','0'), ('11363','646','1','Up','0','1'), ('11364','647','0','not available','0','0'), ('11365','647','1','available','0','1'), ('11366','647','2','unknown','0','2'), ('11367','648','1','unknown','0','0'), ('11368','648','2','halfDuplex','0','1'), ('11369','648','3','fullDuplex','0','2'), ('11370','649','1','up','0','0'), ('11371','649','2','down','0','1'), ('11372','649','4','unknown','0','2'), ('11373','649','5','dormant','0','3'), ('11374','649','6','notPresent','0','4'), ('11375','649','7','lowerLayerDown','0','5'), ('11376','650','1','other','0','0'), ('11377','650','2','regular1822','0','1'), ('11378','650','3','hdh1822','0','2'), ('11379','650','4','ddnX25','0','3'), ('11380','650','5','rfc877x25','0','4'), ('11381','650','6','ethernetCsmacd','0','5'), ('11382','650','7','iso88023Csmacd','0','6'), ('11383','650','8','iso88024TokenBus','0','7'), ('11384','650','9','iso88025TokenRing','0','8'), ('11385','650','10','iso88026Man','0','9'), ('11386','650','11','starLan','0','10'), ('11387','650','12','proteon10Mbit','0','11'), ('11388','650','13','proteon80Mbit','0','12'), ('11389','650','14','hyperchannel','0','13'), ('11390','650','15','fddi','0','14'), ('11391','650','16','lapb','0','15'), ('11392','650','17','sdlc','0','16'), ('11393','650','18','ds1','0','17'), ('11394','650','19','e1','0','18'), ('11395','650','20','basicISDN','0','19'), ('11396','650','21','primaryISDN','0','20'), ('11397','650','22','propPointToPointSerial','0','21'), ('11398','650','23','ppp','0','22'), ('11399','650','24','softwareLoopback','0','23'), ('11400','650','25','eon','0','24'), ('11401','650','26','ethernet3Mbit','0','25'), ('11402','650','27','nsip','0','26'), ('11403','650','28','slip','0','27'), ('11404','650','29','ultra','0','28'), ('11405','650','30','ds3','0','29'), ('11406','650','31','sip','0','30'), ('11407','650','32','frameRelay','0','31'), ('11408','650','33','rs232','0','32'), ('11409','650','34','para','0','33'), ('11410','650','35','arcnet','0','34'), ('11411','650','36','arcnetPlus','0','35'), ('11412','650','37','atm','0','36'), ('11413','650','38','miox25','0','37'), ('11414','650','39','sonet','0','38'), ('11415','650','40','x25ple','0','39'), ('11416','650','41','iso88022llc','0','40'), ('11417','650','42','localTalk','0','41'), ('11418','650','43','smdsDxi','0','42'), ('11419','650','44','frameRelayService','0','43'), ('11420','650','45','v35','0','44'), ('11421','650','46','hssi','0','45'), ('11422','650','47','hippi','0','46'), ('11423','650','48','modem','0','47'), ('11424','650','49','aal5','0','48'), ('11425','650','50','sonetPath','0','49'), ('11426','650','51','sonetVT','0','50'), ('11427','650','52','smdsIcip','0','51'), ('11428','650','53','propVirtual','0','52'), ('11429','650','54','propMultiplexor','0','53'), ('11430','650','55','ieee80212','0','54'), ('11431','650','56','fibreChannel','0','55'), ('11432','650','57','hippiInterface','0','56'), ('11433','650','58','frameRelayInterconnect','0','57'), ('11434','650','59','aflane8023','0','58'), ('11435','650','60','aflane8025','0','59'), ('11436','650','61','cctEmul','0','60'), ('11437','650','62','fastEther','0','61'), ('11438','650','63','isdn','0','62'), ('11439','650','64','v11','0','63'), ('11440','650','65','v36','0','64'), ('11441','650','66','g703at64k','0','65'), ('11442','650','67','g703at2mb','0','66'), ('11443','650','68','qllc','0','67'), ('11444','650','69','fastEtherFX','0','68'), ('11445','650','70','channel','0','69'), ('11446','650','71','ieee80211','0','70'), ('11447','650','72','ibm370parChan','0','71'), ('11448','650','73','escon','0','72'), ('11449','650','74','dlsw','0','73'), ('11450','650','75','isdns','0','74'), ('11451','650','76','isdnu','0','75'), ('11452','650','77','lapd','0','76'), ('11453','650','78','ipSwitch','0','77'), ('11454','650','79','rsrb','0','78'), ('11455','650','80','atmLogical','0','79'), ('11456','650','81','ds0','0','80'), ('11457','650','82','ds0Bundle','0','81'), ('11458','650','83','bsc','0','82'), ('11459','650','84','async','0','83'), ('11460','650','85','cnr','0','84'), ('11461','650','86','iso88025Dtr','0','85'), ('11462','650','87','eplrs','0','86'), ('11463','650','88','arap','0','87'), ('11464','650','89','propCnls','0','88'), ('11465','650','90','hostPad','0','89'), ('11466','650','91','termPad','0','90'), ('11467','650','92','frameRelayMPI','0','91'), ('11468','650','93','x213','0','92'), ('11469','650','94','adsl','0','93'), ('11470','650','95','radsl','0','94'), ('11471','650','96','sdsl','0','95'), ('11472','650','97','vdsl','0','96'), ('11473','650','98','iso88025CRFPInt','0','97'), ('11474','650','99','myrinet','0','98'), ('11475','650','100','voiceEM','0','99'), ('11476','650','101','voiceFXO','0','100'), ('11477','650','102','voiceFXS','0','101'), ('11478','650','103','voiceEncap','0','102'), ('11479','650','104','voiceOverIp','0','103'), ('11480','650','105','atmDxi','0','104'), ('11481','650','106','atmFuni','0','105'), ('11482','650','107','atmIma','0','106'), ('11483','650','108','pppMultilinkBundle','0','107'), ('11484','650','109','ipOverCdlc','0','108'), ('11485','650','110','ipOverClaw','0','109'), ('11486','650','111','stackToStack','0','110'), ('11487','650','112','virtualIpAddress','0','111'), ('11488','650','113','mpc','0','112'), ('11489','650','114','ipOverAtm','0','113'), ('11490','650','115','iso88025Fiber','0','114'), ('11491','650','116','tdlc','0','115'), ('11492','650','117','gigabitEthernet','0','116'), ('11493','650','118','hdlc','0','117'), ('11494','650','119','lapf','0','118'), ('11495','650','120','v37','0','119'), ('11496','650','121','x25mlp','0','120'), ('11497','650','122','x25huntGroup','0','121'), ('11498','650','123','trasnpHdlc','0','122'), ('11499','650','124','interleave','0','123'), ('11500','650','125','fast','0','124'), ('11501','650','126','ip','0','125'), ('11502','650','127','docsCableMaclayer','0','126'), ('11503','650','128','docsCableDownstream','0','127'), ('11504','650','129','docsCableUpstream','0','128'), ('11505','650','130','a12MppSwitch','0','129'), ('11506','650','131','tunnel','0','130'), ('11507','650','132','coffee','0','131'), ('11508','650','133','ces','0','132'), ('11509','650','134','atmSubInterface','0','133'), ('11510','650','135','l2vlan','0','134'), ('11511','650','136','l3ipvlan','0','135'), ('11512','650','137','l3ipxvlan','0','136'), ('11513','650','138','digitalPowerline','0','137'), ('11514','650','139','mediaMailOverIp','0','138'), ('11515','650','140','dtm','0','139'), ('11516','650','141','dcn','0','140'), ('11517','650','142','ipForward','0','141'), ('11518','650','143','msdsl','0','142'), ('11519','650','144','ieee1394','0','143'), ('11520','650','145','if-gsn','0','144'), ('11521','650','146','dvbRccMacLayer','0','145'), ('11522','650','147','dvbRccDownstream','0','146'), ('11523','650','148','dvbRccUpstream','0','147'), ('11524','650','149','atmVirtual','0','148'), ('11525','650','150','mplsTunnel','0','149'), ('11526','650','151','srp','0','150'), ('11527','650','152','voiceOverAtm','0','151'), ('11528','650','153','voiceOverFrameRelay','0','152'), ('11529','650','154','idsl','0','153'), ('11530','650','155','compositeLink','0','154'), ('11531','650','156','ss7SigLink','0','155'), ('11532','650','157','propWirelessP2P','0','156'), ('11533','650','158','frForward','0','157'), ('11534','650','159','rfc1483','0','158'), ('11535','650','160','usb','0','159'), ('11536','650','161','ieee8023adLag','0','160'), ('11537','650','162','bgppolicyaccounting','0','161'), ('11538','650','163','frf16MfrBundle','0','162'), ('11539','650','164','h323Gatekeeper','0','163'), ('11540','650','165','h323Proxy','0','164'), ('11541','650','166','mpls','0','165'), ('11542','650','167','mfSigLink','0','166'), ('11543','650','168','hdsl2','0','167'), ('11544','650','169','shdsl','0','168'), ('11545','650','170','ds1FDL','0','169'), ('11546','650','171','pos','0','170'), ('11547','650','172','dvbAsiIn','0','171'), ('11548','650','173','dvbAsiOut','0','172'), ('11549','650','174','plc','0','173'), ('11550','650','175','nfas','0','174'), ('11551','650','176','tr008','0','175'), ('11552','650','177','gr303RDT','0','176'), ('11553','650','178','gr303IDT','0','177'), ('11554','650','179','isup','0','178'), ('11555','650','180','propDocsWirelessMaclayer','0','179'), ('11556','650','181','propDocsWirelessDownstream','0','180'), ('11557','650','182','propDocsWirelessUpstream','0','181'), ('11558','650','183','hiperlan2','0','182'), ('11559','650','184','propBWAp2Mp','0','183'), ('11560','650','185','sonetOverheadChannel','0','184'), ('11561','650','186','digitalWrapperOverheadChannel','0','185'), ('11562','650','187','aal2','0','186'), ('11563','650','188','radioMAC','0','187'), ('11564','650','189','atmRadio','0','188'), ('11565','650','190','imt','0','189'), ('11566','650','191','mvl','0','190'), ('11567','650','192','reachDSL','0','191'), ('11568','650','193','frDlciEndPt','0','192'), ('11569','650','194','atmVciEndPt','0','193'), ('11570','650','195','opticalChannel','0','194'), ('11571','650','196','opticalTransport','0','195'), ('11572','650','197','propAtm','0','196'), ('11573','650','198','voiceOverCable','0','197'), ('11574','650','199','infiniband','0','198'), ('11575','650','200','teLink','0','199'), ('11576','650','201','q2931','0','200'), ('11577','650','202','virtualTg','0','201'), ('11578','650','203','sipTg','0','202'), ('11579','650','204','sipSig','0','203'), ('11580','650','205','docsCableUpstreamChannel','0','204'), ('11581','650','206','econet','0','205'), ('11582','650','207','pon155','0','206'), ('11583','650','208','pon622','0','207'), ('11584','650','209','bridge','0','208'), ('11585','650','210','linegroup','0','209'), ('11586','650','211','voiceEMFGD','0','210'), ('11587','650','212','voiceFGDEANA','0','211'), ('11588','650','213','voiceDID','0','212'), ('11589','650','214','mpegTransport','0','213'), ('11590','650','215','sixToFour','0','214'), ('11591','650','216','gtp','0','215'), ('11592','650','217','pdnEtherLoop1','0','216'), ('11593','650','218','pdnEtherLoop2','0','217'), ('11594','650','219','opticalChannelGroup','0','218'), ('11595','650','220','homepna','0','219'), ('11596','650','221','gfp','0','220'), ('11597','650','222','ciscoISLvlan','0','221'), ('11598','650','223','actelisMetaLOOP','0','222'), ('11599','650','224','fcipLink','0','223'), ('11600','650','225','rpr','0','224'), ('11601','650','226','qam','0','225'), ('11602','650','227','lmp','0','226'), ('11603','650','228','cblVectaStar','0','227'), ('11604','650','229','docsCableMCmtsDownstream','0','228'), ('11605','650','230','adsl2','0','229'), ('11606','650','231','macSecControlledIF','0','230'), ('11607','650','232','macSecUncontrolledIF','0','231'), ('11608','650','233','aviciOpticalEther','0','232'), ('11609','650','234','atmbond','0','233'), ('11610','650','235','voiceFGDOS','0','234'), ('11611','650','236','mocaVersion1','0','235'), ('11612','650','237','ieee80216WMAN','0','236'), ('11613','650','238','adsl2plus','0','237'), ('11614','650','239','dvbRcsMacLayer','0','238'), ('11615','650','240','dvbTdm','0','239'), ('11616','650','241','dvbRcsTdma','0','240'), ('11617','650','242','x86Laps','0','241'), ('11618','650','243','wwanPP','0','242'), ('11619','650','244','wwanPP2','0','243'), ('11620','650','245','voiceEBS','0','244'), ('11621','650','246','ifPwType','0','245'), ('11622','650','247','ilan','0','246'), ('11623','650','248','pip','0','247'), ('11624','650','249','aluELP','0','248'), ('11625','650','250','gpon','0','249'), ('11626','650','251','vdsl2','0','250'), ('11627','650','252','capwapDot11Profile','0','251'), ('11628','650','253','capwapDot11Bss','0','252'), ('11629','650','254','capwapWtpVirtualRadio','0','253'), ('11630','650','255','bits','0','254'), ('11631','650','256','docsCableUpstreamRfPort','0','255'), ('11632','650','257','cableDownstreamRfPort','0','256'), ('11633','650','258','vmwareVirtualNic','0','257'), ('11634','650','259','ieee802154','0','258'), ('11635','650','260','otnOdu','0','259'), ('11636','650','261','otnOtu','0','260'), ('11637','650','262','ifVfiType','0','261'), ('11638','650','263','g9981','0','262'), ('11639','650','264','g9982','0','263'), ('11640','650','265','g9983','0','264'), ('11641','650','266','aluEpon','0','265'), ('11642','650','267','aluEponOnu','0','266'), ('11643','650','268','aluEponPhysicalUni','0','267'), ('11644','650','269','aluEponLogicalLink','0','268'), ('11645','650','270','aluGponOnu','0','269'), ('11646','650','271','aluGponPhysicalUni','0','270'), ('11647','650','272','vmwareNicTeam','0','271'), ('11648','650','277','docsOfdmDownstream','0','272'), ('11649','650','278','docsOfdmaUpstream','0','273'), ('11650','650','279','gfast','0','274'), ('11651','650','280','sdci','0','275'), ('11652','650','281','xboxWireless','0','276'), ('11653','650','282','fastdsl','0','277'), ('11654','650','283','docsCableScte55d1FwdOob','0','278'), ('11655','650','284','docsCableScte55d1RetOob','0','279'), ('11656','650','285','docsCableScte55d2DsOob','0','280'), ('11657','650','286','docsCableScte55d2UsOob','0','281'), ('11658','650','287','docsCableNdf','0','282'), ('11659','650','288','docsCableNdr','0','283'), ('11660','650','289','ptm','0','284'), ('11661','650','290','ghn','0','285'), ('11662','651','0','Down','0','0'), ('11663','651','1','Up','0','1'), ('11664','652','0','not available','0','0'), ('11665','652','1','available','0','1'), ('11666','652','2','unknown','0','2'), ('11667','653','1','up','0','0'), ('11668','653','2','down','0','1'), ('11669','653','4','unknown','0','2'), ('11670','653','5','dormant','0','3'), ('11671','653','6','notPresent','0','4'), ('11672','653','7','lowerLayerDown','0','5'), ('11673','654','1','other','0','0'), ('11674','654','2','regular1822','0','1'), ('11675','654','3','hdh1822','0','2'), ('11676','654','4','ddnX25','0','3'), ('11677','654','5','rfc877x25','0','4'), ('11678','654','6','ethernetCsmacd','0','5'), ('11679','654','7','iso88023Csmacd','0','6'), ('11680','654','8','iso88024TokenBus','0','7'), ('11681','654','9','iso88025TokenRing','0','8'), ('11682','654','10','iso88026Man','0','9'), ('11683','654','11','starLan','0','10'), ('11684','654','12','proteon10Mbit','0','11'), ('11685','654','13','proteon80Mbit','0','12'), ('11686','654','14','hyperchannel','0','13'), ('11687','654','15','fddi','0','14'), ('11688','654','16','lapb','0','15'), ('11689','654','17','sdlc','0','16'), ('11690','654','18','ds1','0','17'), ('11691','654','19','e1','0','18'), ('11692','654','20','basicISDN','0','19'), ('11693','654','21','primaryISDN','0','20'), ('11694','654','22','propPointToPointSerial','0','21'), ('11695','654','23','ppp','0','22'), ('11696','654','24','softwareLoopback','0','23'), ('11697','654','25','eon','0','24'), ('11698','654','26','ethernet3Mbit','0','25'), ('11699','654','27','nsip','0','26'), ('11700','654','28','slip','0','27'), ('11701','654','29','ultra','0','28'), ('11702','654','30','ds3','0','29'), ('11703','654','31','sip','0','30'), ('11704','654','32','frameRelay','0','31'), ('11705','654','33','rs232','0','32'), ('11706','654','34','para','0','33'), ('11707','654','35','arcnet','0','34'), ('11708','654','36','arcnetPlus','0','35'), ('11709','654','37','atm','0','36'), ('11710','654','38','miox25','0','37'), ('11711','654','39','sonet','0','38'), ('11712','654','40','x25ple','0','39'), ('11713','654','41','iso88022llc','0','40'), ('11714','654','42','localTalk','0','41'), ('11715','654','43','smdsDxi','0','42'), ('11716','654','44','frameRelayService','0','43'), ('11717','654','45','v35','0','44'), ('11718','654','46','hssi','0','45'), ('11719','654','47','hippi','0','46'), ('11720','654','48','modem','0','47'), ('11721','654','49','aal5','0','48'), ('11722','654','50','sonetPath','0','49'), ('11723','654','51','sonetVT','0','50'), ('11724','654','52','smdsIcip','0','51'), ('11725','654','53','propVirtual','0','52'), ('11726','654','54','propMultiplexor','0','53'), ('11727','654','55','ieee80212','0','54'), ('11728','654','56','fibreChannel','0','55'), ('11729','654','57','hippiInterface','0','56'), ('11730','654','58','frameRelayInterconnect','0','57'), ('11731','654','59','aflane8023','0','58'), ('11732','654','60','aflane8025','0','59'), ('11733','654','61','cctEmul','0','60'), ('11734','654','62','fastEther','0','61'), ('11735','654','63','isdn','0','62'), ('11736','654','64','v11','0','63'), ('11737','654','65','v36','0','64'), ('11738','654','66','g703at64k','0','65'), ('11739','654','67','g703at2mb','0','66'), ('11740','654','68','qllc','0','67'), ('11741','654','69','fastEtherFX','0','68'), ('11742','654','70','channel','0','69'), ('11743','654','71','ieee80211','0','70'), ('11744','654','72','ibm370parChan','0','71'), ('11745','654','73','escon','0','72'), ('11746','654','74','dlsw','0','73'), ('11747','654','75','isdns','0','74'), ('11748','654','76','isdnu','0','75'), ('11749','654','77','lapd','0','76'), ('11750','654','78','ipSwitch','0','77'), ('11751','654','79','rsrb','0','78'), ('11752','654','80','atmLogical','0','79'), ('11753','654','81','ds0','0','80'), ('11754','654','82','ds0Bundle','0','81'), ('11755','654','83','bsc','0','82'), ('11756','654','84','async','0','83'), ('11757','654','85','cnr','0','84'), ('11758','654','86','iso88025Dtr','0','85'), ('11759','654','87','eplrs','0','86'), ('11760','654','88','arap','0','87'), ('11761','654','89','propCnls','0','88'), ('11762','654','90','hostPad','0','89'), ('11763','654','91','termPad','0','90'), ('11764','654','92','frameRelayMPI','0','91'), ('11765','654','93','x213','0','92'), ('11766','654','94','adsl','0','93'), ('11767','654','95','radsl','0','94'), ('11768','654','96','sdsl','0','95'), ('11769','654','97','vdsl','0','96'), ('11770','654','98','iso88025CRFPInt','0','97'), ('11771','654','99','myrinet','0','98'), ('11772','654','100','voiceEM','0','99'), ('11773','654','101','voiceFXO','0','100'), ('11774','654','102','voiceFXS','0','101'), ('11775','654','103','voiceEncap','0','102'), ('11776','654','104','voiceOverIp','0','103'), ('11777','654','105','atmDxi','0','104'), ('11778','654','106','atmFuni','0','105'), ('11779','654','107','atmIma','0','106'), ('11780','654','108','pppMultilinkBundle','0','107'), ('11781','654','109','ipOverCdlc','0','108'), ('11782','654','110','ipOverClaw','0','109'), ('11783','654','111','stackToStack','0','110'), ('11784','654','112','virtualIpAddress','0','111'), ('11785','654','113','mpc','0','112'), ('11786','654','114','ipOverAtm','0','113'), ('11787','654','115','iso88025Fiber','0','114'), ('11788','654','116','tdlc','0','115'), ('11789','654','117','gigabitEthernet','0','116'), ('11790','654','118','hdlc','0','117'), ('11791','654','119','lapf','0','118'), ('11792','654','120','v37','0','119'), ('11793','654','121','x25mlp','0','120'), ('11794','654','122','x25huntGroup','0','121'), ('11795','654','123','trasnpHdlc','0','122'), ('11796','654','124','interleave','0','123'), ('11797','654','125','fast','0','124'), ('11798','654','126','ip','0','125'), ('11799','654','127','docsCableMaclayer','0','126'), ('11800','654','128','docsCableDownstream','0','127'), ('11801','654','129','docsCableUpstream','0','128'), ('11802','654','130','a12MppSwitch','0','129'), ('11803','654','131','tunnel','0','130'), ('11804','654','132','coffee','0','131'), ('11805','654','133','ces','0','132'), ('11806','654','134','atmSubInterface','0','133'), ('11807','654','135','l2vlan','0','134'), ('11808','654','136','l3ipvlan','0','135'), ('11809','654','137','l3ipxvlan','0','136'), ('11810','654','138','digitalPowerline','0','137'), ('11811','654','139','mediaMailOverIp','0','138'), ('11812','654','140','dtm','0','139'), ('11813','654','141','dcn','0','140'), ('11814','654','142','ipForward','0','141'), ('11815','654','143','msdsl','0','142'), ('11816','654','144','ieee1394','0','143'), ('11817','654','145','if-gsn','0','144'), ('11818','654','146','dvbRccMacLayer','0','145'), ('11819','654','147','dvbRccDownstream','0','146'), ('11820','654','148','dvbRccUpstream','0','147'), ('11821','654','149','atmVirtual','0','148'), ('11822','654','150','mplsTunnel','0','149'), ('11823','654','151','srp','0','150'), ('11824','654','152','voiceOverAtm','0','151'), ('11825','654','153','voiceOverFrameRelay','0','152'), ('11826','654','154','idsl','0','153'), ('11827','654','155','compositeLink','0','154'), ('11828','654','156','ss7SigLink','0','155'), ('11829','654','157','propWirelessP2P','0','156'), ('11830','654','158','frForward','0','157'), ('11831','654','159','rfc1483','0','158'), ('11832','654','160','usb','0','159'), ('11833','654','161','ieee8023adLag','0','160'), ('11834','654','162','bgppolicyaccounting','0','161'), ('11835','654','163','frf16MfrBundle','0','162'), ('11836','654','164','h323Gatekeeper','0','163'), ('11837','654','165','h323Proxy','0','164'), ('11838','654','166','mpls','0','165'), ('11839','654','167','mfSigLink','0','166'), ('11840','654','168','hdsl2','0','167'), ('11841','654','169','shdsl','0','168'), ('11842','654','170','ds1FDL','0','169'), ('11843','654','171','pos','0','170'), ('11844','654','172','dvbAsiIn','0','171'), ('11845','654','173','dvbAsiOut','0','172'), ('11846','654','174','plc','0','173'), ('11847','654','175','nfas','0','174'), ('11848','654','176','tr008','0','175'), ('11849','654','177','gr303RDT','0','176'), ('11850','654','178','gr303IDT','0','177'), ('11851','654','179','isup','0','178'), ('11852','654','180','propDocsWirelessMaclayer','0','179'), ('11853','654','181','propDocsWirelessDownstream','0','180'), ('11854','654','182','propDocsWirelessUpstream','0','181'), ('11855','654','183','hiperlan2','0','182'), ('11856','654','184','propBWAp2Mp','0','183'), ('11857','654','185','sonetOverheadChannel','0','184'), ('11858','654','186','digitalWrapperOverheadChannel','0','185'), ('11859','654','187','aal2','0','186'), ('11860','654','188','radioMAC','0','187'), ('11861','654','189','atmRadio','0','188'), ('11862','654','190','imt','0','189'), ('11863','654','191','mvl','0','190'), ('11864','654','192','reachDSL','0','191'), ('11865','654','193','frDlciEndPt','0','192'), ('11866','654','194','atmVciEndPt','0','193'), ('11867','654','195','opticalChannel','0','194'), ('11868','654','196','opticalTransport','0','195'), ('11869','654','197','propAtm','0','196'), ('11870','654','198','voiceOverCable','0','197'), ('11871','654','199','infiniband','0','198'), ('11872','654','200','teLink','0','199'), ('11873','654','201','q2931','0','200'), ('11874','654','202','virtualTg','0','201'), ('11875','654','203','sipTg','0','202'), ('11876','654','204','sipSig','0','203'), ('11877','654','205','docsCableUpstreamChannel','0','204'), ('11878','654','206','econet','0','205'), ('11879','654','207','pon155','0','206'), ('11880','654','208','pon622','0','207'), ('11881','654','209','bridge','0','208'), ('11882','654','210','linegroup','0','209'), ('11883','654','211','voiceEMFGD','0','210'), ('11884','654','212','voiceFGDEANA','0','211'), ('11885','654','213','voiceDID','0','212'), ('11886','654','214','mpegTransport','0','213'), ('11887','654','215','sixToFour','0','214'), ('11888','654','216','gtp','0','215'), ('11889','654','217','pdnEtherLoop1','0','216'), ('11890','654','218','pdnEtherLoop2','0','217'), ('11891','654','219','opticalChannelGroup','0','218'), ('11892','654','220','homepna','0','219'), ('11893','654','221','gfp','0','220'), ('11894','654','222','ciscoISLvlan','0','221'), ('11895','654','223','actelisMetaLOOP','0','222'), ('11896','654','224','fcipLink','0','223'), ('11897','654','225','rpr','0','224'), ('11898','654','226','qam','0','225'), ('11899','654','227','lmp','0','226'), ('11900','654','228','cblVectaStar','0','227'), ('11901','654','229','docsCableMCmtsDownstream','0','228'), ('11902','654','230','adsl2','0','229'), ('11903','654','231','macSecControlledIF','0','230'), ('11904','654','232','macSecUncontrolledIF','0','231'), ('11905','654','233','aviciOpticalEther','0','232'), ('11906','654','234','atmbond','0','233'), ('11907','654','235','voiceFGDOS','0','234'), ('11908','654','236','mocaVersion1','0','235'), ('11909','654','237','ieee80216WMAN','0','236'), ('11910','654','238','adsl2plus','0','237'), ('11911','654','239','dvbRcsMacLayer','0','238'), ('11912','654','240','dvbTdm','0','239'), ('11913','654','241','dvbRcsTdma','0','240'), ('11914','654','242','x86Laps','0','241'), ('11915','654','243','wwanPP','0','242'), ('11916','654','244','wwanPP2','0','243'), ('11917','654','245','voiceEBS','0','244'), ('11918','654','246','ifPwType','0','245'), ('11919','654','247','ilan','0','246'), ('11920','654','248','pip','0','247'), ('11921','654','249','aluELP','0','248'), ('11922','654','250','gpon','0','249'), ('11923','654','251','vdsl2','0','250'), ('11924','654','252','capwapDot11Profile','0','251'), ('11925','654','253','capwapDot11Bss','0','252'), ('11926','654','254','capwapWtpVirtualRadio','0','253'), ('11927','654','255','bits','0','254'), ('11928','654','256','docsCableUpstreamRfPort','0','255'), ('11929','654','257','cableDownstreamRfPort','0','256'), ('11930','654','258','vmwareVirtualNic','0','257'), ('11931','654','259','ieee802154','0','258'), ('11932','654','260','otnOdu','0','259'), ('11933','654','261','otnOtu','0','260'), ('11934','654','262','ifVfiType','0','261'), ('11935','654','263','g9981','0','262'), ('11936','654','264','g9982','0','263'), ('11937','654','265','g9983','0','264'), ('11938','654','266','aluEpon','0','265'), ('11939','654','267','aluEponOnu','0','266'), ('11940','654','268','aluEponPhysicalUni','0','267'), ('11941','654','269','aluEponLogicalLink','0','268'), ('11942','654','270','aluGponOnu','0','269'), ('11943','654','271','aluGponPhysicalUni','0','270'), ('11944','654','272','vmwareNicTeam','0','271'), ('11945','654','277','docsOfdmDownstream','0','272'), ('11946','654','278','docsOfdmaUpstream','0','273'), ('11947','654','279','gfast','0','274'), ('11948','654','280','sdci','0','275'), ('11949','654','281','xboxWireless','0','276'), ('11950','654','282','fastdsl','0','277'), ('11951','654','283','docsCableScte55d1FwdOob','0','278'), ('11952','654','284','docsCableScte55d1RetOob','0','279'), ('11953','654','285','docsCableScte55d2DsOob','0','280'), ('11954','654','286','docsCableScte55d2UsOob','0','281'), ('11955','654','287','docsCableNdf','0','282'), ('11956','654','288','docsCableNdr','0','283'), ('11957','654','289','ptm','0','284'), ('11958','654','290','ghn','0','285'), ('11959','655','0','Down','0','0'), ('11960','655','1','Up','0','1'), ('11961','656','0','not available','0','0'), ('11962','656','1','available','0','1'), ('11963','656','2','unknown','0','2'), ('11964','657','1','unknown','0','0'), ('11965','657','2','halfDuplex','0','1'), ('11966','657','3','fullDuplex','0','2'), ('11967','658','1','up','0','0'), ('11968','658','2','down','0','1'), ('11969','658','4','unknown','0','2'), ('11970','658','5','dormant','0','3'), ('11971','658','6','notPresent','0','4'), ('11972','658','7','lowerLayerDown','0','5'), ('11973','659','1','other','0','0'), ('11974','659','2','regular1822','0','1'), ('11975','659','3','hdh1822','0','2'), ('11976','659','4','ddnX25','0','3'), ('11977','659','5','rfc877x25','0','4'), ('11978','659','6','ethernetCsmacd','0','5'), ('11979','659','7','iso88023Csmacd','0','6'), ('11980','659','8','iso88024TokenBus','0','7'), ('11981','659','9','iso88025TokenRing','0','8'), ('11982','659','10','iso88026Man','0','9'), ('11983','659','11','starLan','0','10'), ('11984','659','12','proteon10Mbit','0','11'), ('11985','659','13','proteon80Mbit','0','12'), ('11986','659','14','hyperchannel','0','13'), ('11987','659','15','fddi','0','14'), ('11988','659','16','lapb','0','15'), ('11989','659','17','sdlc','0','16'), ('11990','659','18','ds1','0','17'), ('11991','659','19','e1','0','18'), ('11992','659','20','basicISDN','0','19'), ('11993','659','21','primaryISDN','0','20'), ('11994','659','22','propPointToPointSerial','0','21'), ('11995','659','23','ppp','0','22'), ('11996','659','24','softwareLoopback','0','23'), ('11997','659','25','eon','0','24'), ('11998','659','26','ethernet3Mbit','0','25'), ('11999','659','27','nsip','0','26'), ('12000','659','28','slip','0','27'), ('12001','659','29','ultra','0','28'), ('12002','659','30','ds3','0','29'), ('12003','659','31','sip','0','30'), ('12004','659','32','frameRelay','0','31'), ('12005','659','33','rs232','0','32'), ('12006','659','34','para','0','33'), ('12007','659','35','arcnet','0','34'), ('12008','659','36','arcnetPlus','0','35'), ('12009','659','37','atm','0','36'), ('12010','659','38','miox25','0','37'), ('12011','659','39','sonet','0','38'), ('12012','659','40','x25ple','0','39'), ('12013','659','41','iso88022llc','0','40'), ('12014','659','42','localTalk','0','41'), ('12015','659','43','smdsDxi','0','42'), ('12016','659','44','frameRelayService','0','43'), ('12017','659','45','v35','0','44'), ('12018','659','46','hssi','0','45'), ('12019','659','47','hippi','0','46'), ('12020','659','48','modem','0','47'), ('12021','659','49','aal5','0','48'), ('12022','659','50','sonetPath','0','49'), ('12023','659','51','sonetVT','0','50'), ('12024','659','52','smdsIcip','0','51'), ('12025','659','53','propVirtual','0','52'), ('12026','659','54','propMultiplexor','0','53'), ('12027','659','55','ieee80212','0','54'), ('12028','659','56','fibreChannel','0','55'), ('12029','659','57','hippiInterface','0','56'), ('12030','659','58','frameRelayInterconnect','0','57'), ('12031','659','59','aflane8023','0','58'), ('12032','659','60','aflane8025','0','59'), ('12033','659','61','cctEmul','0','60'), ('12034','659','62','fastEther','0','61'), ('12035','659','63','isdn','0','62'), ('12036','659','64','v11','0','63'), ('12037','659','65','v36','0','64'), ('12038','659','66','g703at64k','0','65'), ('12039','659','67','g703at2mb','0','66'), ('12040','659','68','qllc','0','67'), ('12041','659','69','fastEtherFX','0','68'), ('12042','659','70','channel','0','69'), ('12043','659','71','ieee80211','0','70'), ('12044','659','72','ibm370parChan','0','71'), ('12045','659','73','escon','0','72'), ('12046','659','74','dlsw','0','73'), ('12047','659','75','isdns','0','74'), ('12048','659','76','isdnu','0','75'), ('12049','659','77','lapd','0','76'), ('12050','659','78','ipSwitch','0','77'), ('12051','659','79','rsrb','0','78'), ('12052','659','80','atmLogical','0','79'), ('12053','659','81','ds0','0','80'), ('12054','659','82','ds0Bundle','0','81'), ('12055','659','83','bsc','0','82'), ('12056','659','84','async','0','83'), ('12057','659','85','cnr','0','84'), ('12058','659','86','iso88025Dtr','0','85'), ('12059','659','87','eplrs','0','86'), ('12060','659','88','arap','0','87'), ('12061','659','89','propCnls','0','88'), ('12062','659','90','hostPad','0','89'), ('12063','659','91','termPad','0','90'), ('12064','659','92','frameRelayMPI','0','91'), ('12065','659','93','x213','0','92'), ('12066','659','94','adsl','0','93'), ('12067','659','95','radsl','0','94'), ('12068','659','96','sdsl','0','95'), ('12069','659','97','vdsl','0','96'), ('12070','659','98','iso88025CRFPInt','0','97'), ('12071','659','99','myrinet','0','98'), ('12072','659','100','voiceEM','0','99'), ('12073','659','101','voiceFXO','0','100'), ('12074','659','102','voiceFXS','0','101'), ('12075','659','103','voiceEncap','0','102'), ('12076','659','104','voiceOverIp','0','103'), ('12077','659','105','atmDxi','0','104'), ('12078','659','106','atmFuni','0','105'), ('12079','659','107','atmIma','0','106'), ('12080','659','108','pppMultilinkBundle','0','107'), ('12081','659','109','ipOverCdlc','0','108'), ('12082','659','110','ipOverClaw','0','109'), ('12083','659','111','stackToStack','0','110'), ('12084','659','112','virtualIpAddress','0','111'), ('12085','659','113','mpc','0','112'), ('12086','659','114','ipOverAtm','0','113'), ('12087','659','115','iso88025Fiber','0','114'), ('12088','659','116','tdlc','0','115'), ('12089','659','117','gigabitEthernet','0','116'), ('12090','659','118','hdlc','0','117'), ('12091','659','119','lapf','0','118'), ('12092','659','120','v37','0','119'), ('12093','659','121','x25mlp','0','120'), ('12094','659','122','x25huntGroup','0','121'), ('12095','659','123','trasnpHdlc','0','122'), ('12096','659','124','interleave','0','123'), ('12097','659','125','fast','0','124'), ('12098','659','126','ip','0','125'), ('12099','659','127','docsCableMaclayer','0','126'), ('12100','659','128','docsCableDownstream','0','127'), ('12101','659','129','docsCableUpstream','0','128'), ('12102','659','130','a12MppSwitch','0','129'), ('12103','659','131','tunnel','0','130'), ('12104','659','132','coffee','0','131'), ('12105','659','133','ces','0','132'), ('12106','659','134','atmSubInterface','0','133'), ('12107','659','135','l2vlan','0','134'), ('12108','659','136','l3ipvlan','0','135'), ('12109','659','137','l3ipxvlan','0','136'), ('12110','659','138','digitalPowerline','0','137'), ('12111','659','139','mediaMailOverIp','0','138'), ('12112','659','140','dtm','0','139'), ('12113','659','141','dcn','0','140'), ('12114','659','142','ipForward','0','141'), ('12115','659','143','msdsl','0','142'), ('12116','659','144','ieee1394','0','143'), ('12117','659','145','if-gsn','0','144'), ('12118','659','146','dvbRccMacLayer','0','145'), ('12119','659','147','dvbRccDownstream','0','146'), ('12120','659','148','dvbRccUpstream','0','147'), ('12121','659','149','atmVirtual','0','148'), ('12122','659','150','mplsTunnel','0','149'), ('12123','659','151','srp','0','150'), ('12124','659','152','voiceOverAtm','0','151'), ('12125','659','153','voiceOverFrameRelay','0','152'), ('12126','659','154','idsl','0','153'), ('12127','659','155','compositeLink','0','154'), ('12128','659','156','ss7SigLink','0','155'), ('12129','659','157','propWirelessP2P','0','156'), ('12130','659','158','frForward','0','157'), ('12131','659','159','rfc1483','0','158'), ('12132','659','160','usb','0','159'), ('12133','659','161','ieee8023adLag','0','160'), ('12134','659','162','bgppolicyaccounting','0','161'), ('12135','659','163','frf16MfrBundle','0','162'), ('12136','659','164','h323Gatekeeper','0','163'), ('12137','659','165','h323Proxy','0','164'), ('12138','659','166','mpls','0','165'), ('12139','659','167','mfSigLink','0','166'), ('12140','659','168','hdsl2','0','167'), ('12141','659','169','shdsl','0','168'), ('12142','659','170','ds1FDL','0','169'), ('12143','659','171','pos','0','170'), ('12144','659','172','dvbAsiIn','0','171'), ('12145','659','173','dvbAsiOut','0','172'), ('12146','659','174','plc','0','173'), ('12147','659','175','nfas','0','174'), ('12148','659','176','tr008','0','175'), ('12149','659','177','gr303RDT','0','176'), ('12150','659','178','gr303IDT','0','177'), ('12151','659','179','isup','0','178'), ('12152','659','180','propDocsWirelessMaclayer','0','179'), ('12153','659','181','propDocsWirelessDownstream','0','180'), ('12154','659','182','propDocsWirelessUpstream','0','181'), ('12155','659','183','hiperlan2','0','182'), ('12156','659','184','propBWAp2Mp','0','183'), ('12157','659','185','sonetOverheadChannel','0','184'), ('12158','659','186','digitalWrapperOverheadChannel','0','185'), ('12159','659','187','aal2','0','186'), ('12160','659','188','radioMAC','0','187'), ('12161','659','189','atmRadio','0','188'), ('12162','659','190','imt','0','189'), ('12163','659','191','mvl','0','190'), ('12164','659','192','reachDSL','0','191'), ('12165','659','193','frDlciEndPt','0','192'), ('12166','659','194','atmVciEndPt','0','193'), ('12167','659','195','opticalChannel','0','194'), ('12168','659','196','opticalTransport','0','195'), ('12169','659','197','propAtm','0','196'), ('12170','659','198','voiceOverCable','0','197'), ('12171','659','199','infiniband','0','198'), ('12172','659','200','teLink','0','199'), ('12173','659','201','q2931','0','200'), ('12174','659','202','virtualTg','0','201'), ('12175','659','203','sipTg','0','202'), ('12176','659','204','sipSig','0','203'), ('12177','659','205','docsCableUpstreamChannel','0','204'), ('12178','659','206','econet','0','205'), ('12179','659','207','pon155','0','206'), ('12180','659','208','pon622','0','207'), ('12181','659','209','bridge','0','208'), ('12182','659','210','linegroup','0','209'), ('12183','659','211','voiceEMFGD','0','210'), ('12184','659','212','voiceFGDEANA','0','211'), ('12185','659','213','voiceDID','0','212'), ('12186','659','214','mpegTransport','0','213'), ('12187','659','215','sixToFour','0','214'), ('12188','659','216','gtp','0','215'), ('12189','659','217','pdnEtherLoop1','0','216'), ('12190','659','218','pdnEtherLoop2','0','217'), ('12191','659','219','opticalChannelGroup','0','218'), ('12192','659','220','homepna','0','219'), ('12193','659','221','gfp','0','220'), ('12194','659','222','ciscoISLvlan','0','221'), ('12195','659','223','actelisMetaLOOP','0','222'), ('12196','659','224','fcipLink','0','223'), ('12197','659','225','rpr','0','224'), ('12198','659','226','qam','0','225'), ('12199','659','227','lmp','0','226'), ('12200','659','228','cblVectaStar','0','227'), ('12201','659','229','docsCableMCmtsDownstream','0','228'), ('12202','659','230','adsl2','0','229'), ('12203','659','231','macSecControlledIF','0','230'), ('12204','659','232','macSecUncontrolledIF','0','231'), ('12205','659','233','aviciOpticalEther','0','232'), ('12206','659','234','atmbond','0','233'), ('12207','659','235','voiceFGDOS','0','234'), ('12208','659','236','mocaVersion1','0','235'), ('12209','659','237','ieee80216WMAN','0','236'), ('12210','659','238','adsl2plus','0','237'), ('12211','659','239','dvbRcsMacLayer','0','238'), ('12212','659','240','dvbTdm','0','239'), ('12213','659','241','dvbRcsTdma','0','240'), ('12214','659','242','x86Laps','0','241'), ('12215','659','243','wwanPP','0','242'), ('12216','659','244','wwanPP2','0','243'), ('12217','659','245','voiceEBS','0','244'), ('12218','659','246','ifPwType','0','245'), ('12219','659','247','ilan','0','246'), ('12220','659','248','pip','0','247'), ('12221','659','249','aluELP','0','248'), ('12222','659','250','gpon','0','249'), ('12223','659','251','vdsl2','0','250'), ('12224','659','252','capwapDot11Profile','0','251'), ('12225','659','253','capwapDot11Bss','0','252'), ('12226','659','254','capwapWtpVirtualRadio','0','253'), ('12227','659','255','bits','0','254'), ('12228','659','256','docsCableUpstreamRfPort','0','255'), ('12229','659','257','cableDownstreamRfPort','0','256'), ('12230','659','258','vmwareVirtualNic','0','257'), ('12231','659','259','ieee802154','0','258'), ('12232','659','260','otnOdu','0','259'), ('12233','659','261','otnOtu','0','260'), ('12234','659','262','ifVfiType','0','261'), ('12235','659','263','g9981','0','262'), ('12236','659','264','g9982','0','263'), ('12237','659','265','g9983','0','264'), ('12238','659','266','aluEpon','0','265'), ('12239','659','267','aluEponOnu','0','266'), ('12240','659','268','aluEponPhysicalUni','0','267'), ('12241','659','269','aluEponLogicalLink','0','268'), ('12242','659','270','aluGponOnu','0','269'), ('12243','659','271','aluGponPhysicalUni','0','270'), ('12244','659','272','vmwareNicTeam','0','271'), ('12245','659','277','docsOfdmDownstream','0','272'), ('12246','659','278','docsOfdmaUpstream','0','273'), ('12247','659','279','gfast','0','274'), ('12248','659','280','sdci','0','275'), ('12249','659','281','xboxWireless','0','276'), ('12250','659','282','fastdsl','0','277'), ('12251','659','283','docsCableScte55d1FwdOob','0','278'), ('12252','659','284','docsCableScte55d1RetOob','0','279'), ('12253','659','285','docsCableScte55d2DsOob','0','280'), ('12254','659','286','docsCableScte55d2UsOob','0','281'), ('12255','659','287','docsCableNdf','0','282'), ('12256','659','288','docsCableNdr','0','283'), ('12257','659','289','ptm','0','284'), ('12258','659','290','ghn','0','285'), ('12259','660','0','Down','0','0'), ('12260','660','1','Up','0','1'), ('12261','661','0','not available','0','0'), ('12262','661','1','available','0','1'), ('12263','661','2','unknown','0','2'), ('12264','662','1','up','0','0'), ('12265','662','2','down','0','1'), ('12266','662','4','unknown','0','2'), ('12267','662','5','dormant','0','3'), ('12268','662','6','notPresent','0','4'), ('12269','662','7','lowerLayerDown','0','5'), ('12270','663','1','other','0','0'), ('12271','663','2','regular1822','0','1'), ('12272','663','3','hdh1822','0','2'), ('12273','663','4','ddnX25','0','3'), ('12274','663','5','rfc877x25','0','4'), ('12275','663','6','ethernetCsmacd','0','5'), ('12276','663','7','iso88023Csmacd','0','6'), ('12277','663','8','iso88024TokenBus','0','7'), ('12278','663','9','iso88025TokenRing','0','8'), ('12279','663','10','iso88026Man','0','9'), ('12280','663','11','starLan','0','10'), ('12281','663','12','proteon10Mbit','0','11'), ('12282','663','13','proteon80Mbit','0','12'), ('12283','663','14','hyperchannel','0','13'), ('12284','663','15','fddi','0','14'), ('12285','663','16','lapb','0','15'), ('12286','663','17','sdlc','0','16'), ('12287','663','18','ds1','0','17'), ('12288','663','19','e1','0','18'), ('12289','663','20','basicISDN','0','19'), ('12290','663','21','primaryISDN','0','20'), ('12291','663','22','propPointToPointSerial','0','21'), ('12292','663','23','ppp','0','22'), ('12293','663','24','softwareLoopback','0','23'), ('12294','663','25','eon','0','24'), ('12295','663','26','ethernet3Mbit','0','25'), ('12296','663','27','nsip','0','26'), ('12297','663','28','slip','0','27'), ('12298','663','29','ultra','0','28'), ('12299','663','30','ds3','0','29'), ('12300','663','31','sip','0','30'), ('12301','663','32','frameRelay','0','31'), ('12302','663','33','rs232','0','32'), ('12303','663','34','para','0','33'), ('12304','663','35','arcnet','0','34'), ('12305','663','36','arcnetPlus','0','35'), ('12306','663','37','atm','0','36'), ('12307','663','38','miox25','0','37'), ('12308','663','39','sonet','0','38'), ('12309','663','40','x25ple','0','39'), ('12310','663','41','iso88022llc','0','40'), ('12311','663','42','localTalk','0','41'), ('12312','663','43','smdsDxi','0','42'), ('12313','663','44','frameRelayService','0','43'), ('12314','663','45','v35','0','44'), ('12315','663','46','hssi','0','45'), ('12316','663','47','hippi','0','46'), ('12317','663','48','modem','0','47'), ('12318','663','49','aal5','0','48'), ('12319','663','50','sonetPath','0','49'), ('12320','663','51','sonetVT','0','50'), ('12321','663','52','smdsIcip','0','51'), ('12322','663','53','propVirtual','0','52'), ('12323','663','54','propMultiplexor','0','53'), ('12324','663','55','ieee80212','0','54'), ('12325','663','56','fibreChannel','0','55'), ('12326','663','57','hippiInterface','0','56'), ('12327','663','58','frameRelayInterconnect','0','57'), ('12328','663','59','aflane8023','0','58'), ('12329','663','60','aflane8025','0','59'), ('12330','663','61','cctEmul','0','60'), ('12331','663','62','fastEther','0','61'), ('12332','663','63','isdn','0','62'), ('12333','663','64','v11','0','63'), ('12334','663','65','v36','0','64'), ('12335','663','66','g703at64k','0','65'), ('12336','663','67','g703at2mb','0','66'), ('12337','663','68','qllc','0','67'), ('12338','663','69','fastEtherFX','0','68'), ('12339','663','70','channel','0','69'), ('12340','663','71','ieee80211','0','70'), ('12341','663','72','ibm370parChan','0','71'), ('12342','663','73','escon','0','72'), ('12343','663','74','dlsw','0','73'), ('12344','663','75','isdns','0','74'), ('12345','663','76','isdnu','0','75'), ('12346','663','77','lapd','0','76'), ('12347','663','78','ipSwitch','0','77'), ('12348','663','79','rsrb','0','78'), ('12349','663','80','atmLogical','0','79'), ('12350','663','81','ds0','0','80'), ('12351','663','82','ds0Bundle','0','81'), ('12352','663','83','bsc','0','82'), ('12353','663','84','async','0','83'), ('12354','663','85','cnr','0','84'), ('12355','663','86','iso88025Dtr','0','85'), ('12356','663','87','eplrs','0','86'), ('12357','663','88','arap','0','87'), ('12358','663','89','propCnls','0','88'), ('12359','663','90','hostPad','0','89'), ('12360','663','91','termPad','0','90'), ('12361','663','92','frameRelayMPI','0','91'), ('12362','663','93','x213','0','92'), ('12363','663','94','adsl','0','93'), ('12364','663','95','radsl','0','94'), ('12365','663','96','sdsl','0','95'), ('12366','663','97','vdsl','0','96'), ('12367','663','98','iso88025CRFPInt','0','97'), ('12368','663','99','myrinet','0','98'), ('12369','663','100','voiceEM','0','99'), ('12370','663','101','voiceFXO','0','100'), ('12371','663','102','voiceFXS','0','101'), ('12372','663','103','voiceEncap','0','102'), ('12373','663','104','voiceOverIp','0','103'), ('12374','663','105','atmDxi','0','104'), ('12375','663','106','atmFuni','0','105'), ('12376','663','107','atmIma','0','106'), ('12377','663','108','pppMultilinkBundle','0','107'), ('12378','663','109','ipOverCdlc','0','108'), ('12379','663','110','ipOverClaw','0','109'), ('12380','663','111','stackToStack','0','110'), ('12381','663','112','virtualIpAddress','0','111'), ('12382','663','113','mpc','0','112'), ('12383','663','114','ipOverAtm','0','113'), ('12384','663','115','iso88025Fiber','0','114'), ('12385','663','116','tdlc','0','115'), ('12386','663','117','gigabitEthernet','0','116'), ('12387','663','118','hdlc','0','117'), ('12388','663','119','lapf','0','118'), ('12389','663','120','v37','0','119'), ('12390','663','121','x25mlp','0','120'), ('12391','663','122','x25huntGroup','0','121'), ('12392','663','123','trasnpHdlc','0','122'), ('12393','663','124','interleave','0','123'), ('12394','663','125','fast','0','124'), ('12395','663','126','ip','0','125'), ('12396','663','127','docsCableMaclayer','0','126'), ('12397','663','128','docsCableDownstream','0','127'), ('12398','663','129','docsCableUpstream','0','128'), ('12399','663','130','a12MppSwitch','0','129'), ('12400','663','131','tunnel','0','130'), ('12401','663','132','coffee','0','131'), ('12402','663','133','ces','0','132'), ('12403','663','134','atmSubInterface','0','133'), ('12404','663','135','l2vlan','0','134'), ('12405','663','136','l3ipvlan','0','135'), ('12406','663','137','l3ipxvlan','0','136'), ('12407','663','138','digitalPowerline','0','137'), ('12408','663','139','mediaMailOverIp','0','138'), ('12409','663','140','dtm','0','139'), ('12410','663','141','dcn','0','140'), ('12411','663','142','ipForward','0','141'), ('12412','663','143','msdsl','0','142'), ('12413','663','144','ieee1394','0','143'), ('12414','663','145','if-gsn','0','144'), ('12415','663','146','dvbRccMacLayer','0','145'), ('12416','663','147','dvbRccDownstream','0','146'), ('12417','663','148','dvbRccUpstream','0','147'), ('12418','663','149','atmVirtual','0','148'), ('12419','663','150','mplsTunnel','0','149'), ('12420','663','151','srp','0','150'), ('12421','663','152','voiceOverAtm','0','151'), ('12422','663','153','voiceOverFrameRelay','0','152'), ('12423','663','154','idsl','0','153'), ('12424','663','155','compositeLink','0','154'), ('12425','663','156','ss7SigLink','0','155'), ('12426','663','157','propWirelessP2P','0','156'), ('12427','663','158','frForward','0','157'), ('12428','663','159','rfc1483','0','158'), ('12429','663','160','usb','0','159'), ('12430','663','161','ieee8023adLag','0','160'), ('12431','663','162','bgppolicyaccounting','0','161'), ('12432','663','163','frf16MfrBundle','0','162'), ('12433','663','164','h323Gatekeeper','0','163'), ('12434','663','165','h323Proxy','0','164'), ('12435','663','166','mpls','0','165'), ('12436','663','167','mfSigLink','0','166'), ('12437','663','168','hdsl2','0','167'), ('12438','663','169','shdsl','0','168'), ('12439','663','170','ds1FDL','0','169'), ('12440','663','171','pos','0','170'), ('12441','663','172','dvbAsiIn','0','171'), ('12442','663','173','dvbAsiOut','0','172'), ('12443','663','174','plc','0','173'), ('12444','663','175','nfas','0','174'), ('12445','663','176','tr008','0','175'), ('12446','663','177','gr303RDT','0','176'), ('12447','663','178','gr303IDT','0','177'), ('12448','663','179','isup','0','178'), ('12449','663','180','propDocsWirelessMaclayer','0','179'), ('12450','663','181','propDocsWirelessDownstream','0','180'), ('12451','663','182','propDocsWirelessUpstream','0','181'), ('12452','663','183','hiperlan2','0','182'), ('12453','663','184','propBWAp2Mp','0','183'), ('12454','663','185','sonetOverheadChannel','0','184'), ('12455','663','186','digitalWrapperOverheadChannel','0','185'), ('12456','663','187','aal2','0','186'), ('12457','663','188','radioMAC','0','187'), ('12458','663','189','atmRadio','0','188'), ('12459','663','190','imt','0','189'), ('12460','663','191','mvl','0','190'), ('12461','663','192','reachDSL','0','191'), ('12462','663','193','frDlciEndPt','0','192'), ('12463','663','194','atmVciEndPt','0','193'), ('12464','663','195','opticalChannel','0','194'), ('12465','663','196','opticalTransport','0','195'), ('12466','663','197','propAtm','0','196'), ('12467','663','198','voiceOverCable','0','197'), ('12468','663','199','infiniband','0','198'), ('12469','663','200','teLink','0','199'), ('12470','663','201','q2931','0','200'), ('12471','663','202','virtualTg','0','201'), ('12472','663','203','sipTg','0','202'), ('12473','663','204','sipSig','0','203'), ('12474','663','205','docsCableUpstreamChannel','0','204'), ('12475','663','206','econet','0','205'), ('12476','663','207','pon155','0','206'), ('12477','663','208','pon622','0','207'), ('12478','663','209','bridge','0','208'), ('12479','663','210','linegroup','0','209'), ('12480','663','211','voiceEMFGD','0','210'), ('12481','663','212','voiceFGDEANA','0','211'), ('12482','663','213','voiceDID','0','212'), ('12483','663','214','mpegTransport','0','213'), ('12484','663','215','sixToFour','0','214'), ('12485','663','216','gtp','0','215'), ('12486','663','217','pdnEtherLoop1','0','216'), ('12487','663','218','pdnEtherLoop2','0','217'), ('12488','663','219','opticalChannelGroup','0','218'), ('12489','663','220','homepna','0','219'), ('12490','663','221','gfp','0','220'), ('12491','663','222','ciscoISLvlan','0','221'), ('12492','663','223','actelisMetaLOOP','0','222'), ('12493','663','224','fcipLink','0','223'), ('12494','663','225','rpr','0','224'), ('12495','663','226','qam','0','225'), ('12496','663','227','lmp','0','226'), ('12497','663','228','cblVectaStar','0','227'), ('12498','663','229','docsCableMCmtsDownstream','0','228'), ('12499','663','230','adsl2','0','229'), ('12500','663','231','macSecControlledIF','0','230'), ('12501','663','232','macSecUncontrolledIF','0','231'), ('12502','663','233','aviciOpticalEther','0','232'), ('12503','663','234','atmbond','0','233'), ('12504','663','235','voiceFGDOS','0','234'), ('12505','663','236','mocaVersion1','0','235'), ('12506','663','237','ieee80216WMAN','0','236'), ('12507','663','238','adsl2plus','0','237'), ('12508','663','239','dvbRcsMacLayer','0','238'), ('12509','663','240','dvbTdm','0','239'), ('12510','663','241','dvbRcsTdma','0','240'), ('12511','663','242','x86Laps','0','241'), ('12512','663','243','wwanPP','0','242'), ('12513','663','244','wwanPP2','0','243'), ('12514','663','245','voiceEBS','0','244'), ('12515','663','246','ifPwType','0','245'), ('12516','663','247','ilan','0','246'), ('12517','663','248','pip','0','247'), ('12518','663','249','aluELP','0','248'), ('12519','663','250','gpon','0','249'), ('12520','663','251','vdsl2','0','250'), ('12521','663','252','capwapDot11Profile','0','251'), ('12522','663','253','capwapDot11Bss','0','252'), ('12523','663','254','capwapWtpVirtualRadio','0','253'), ('12524','663','255','bits','0','254'), ('12525','663','256','docsCableUpstreamRfPort','0','255'), ('12526','663','257','cableDownstreamRfPort','0','256'), ('12527','663','258','vmwareVirtualNic','0','257'), ('12528','663','259','ieee802154','0','258'), ('12529','663','260','otnOdu','0','259'), ('12530','663','261','otnOtu','0','260'), ('12531','663','262','ifVfiType','0','261'), ('12532','663','263','g9981','0','262'), ('12533','663','264','g9982','0','263'), ('12534','663','265','g9983','0','264'), ('12535','663','266','aluEpon','0','265'), ('12536','663','267','aluEponOnu','0','266'), ('12537','663','268','aluEponPhysicalUni','0','267'), ('12538','663','269','aluEponLogicalLink','0','268'), ('12539','663','270','aluGponOnu','0','269'), ('12540','663','271','aluGponPhysicalUni','0','270'), ('12541','663','272','vmwareNicTeam','0','271'), ('12542','663','277','docsOfdmDownstream','0','272'), ('12543','663','278','docsOfdmaUpstream','0','273'), ('12544','663','279','gfast','0','274'), ('12545','663','280','sdci','0','275'), ('12546','663','281','xboxWireless','0','276'), ('12547','663','282','fastdsl','0','277'), ('12548','663','283','docsCableScte55d1FwdOob','0','278'), ('12549','663','284','docsCableScte55d1RetOob','0','279'), ('12550','663','285','docsCableScte55d2DsOob','0','280'), ('12551','663','286','docsCableScte55d2UsOob','0','281'), ('12552','663','287','docsCableNdf','0','282'), ('12553','663','288','docsCableNdr','0','283'), ('12554','663','289','ptm','0','284'), ('12555','663','290','ghn','0','285'), ('12556','664','0','Down','0','0'), ('12557','664','1','Up','0','1'), ('12558','665','0','not available','0','0'), ('12559','665','1','available','0','1'), ('12560','665','2','unknown','0','2'), ('12561','666','1','up','0','0'), ('12562','666','2','down','0','1'), ('12563','666','4','unknown','0','2'), ('12564','666','5','dormant','0','3'), ('12565','666','6','notPresent','0','4'), ('12566','666','7','lowerLayerDown','0','5'), ('12567','667','1','other','0','0'), ('12568','667','2','regular1822','0','1'), ('12569','667','3','hdh1822','0','2'), ('12570','667','4','ddnX25','0','3'), ('12571','667','5','rfc877x25','0','4'), ('12572','667','6','ethernetCsmacd','0','5'), ('12573','667','7','iso88023Csmacd','0','6'), ('12574','667','8','iso88024TokenBus','0','7'), ('12575','667','9','iso88025TokenRing','0','8'), ('12576','667','10','iso88026Man','0','9'), ('12577','667','11','starLan','0','10'), ('12578','667','12','proteon10Mbit','0','11'), ('12579','667','13','proteon80Mbit','0','12'), ('12580','667','14','hyperchannel','0','13'), ('12581','667','15','fddi','0','14'), ('12582','667','16','lapb','0','15'), ('12583','667','17','sdlc','0','16'), ('12584','667','18','ds1','0','17'), ('12585','667','19','e1','0','18'), ('12586','667','20','basicISDN','0','19'), ('12587','667','21','primaryISDN','0','20'), ('12588','667','22','propPointToPointSerial','0','21'), ('12589','667','23','ppp','0','22'), ('12590','667','24','softwareLoopback','0','23'), ('12591','667','25','eon','0','24'), ('12592','667','26','ethernet3Mbit','0','25'), ('12593','667','27','nsip','0','26'), ('12594','667','28','slip','0','27'), ('12595','667','29','ultra','0','28'), ('12596','667','30','ds3','0','29'), ('12597','667','31','sip','0','30'), ('12598','667','32','frameRelay','0','31'), ('12599','667','33','rs232','0','32'), ('12600','667','34','para','0','33'), ('12601','667','35','arcnet','0','34'), ('12602','667','36','arcnetPlus','0','35'), ('12603','667','37','atm','0','36'), ('12604','667','38','miox25','0','37'), ('12605','667','39','sonet','0','38'), ('12606','667','40','x25ple','0','39'), ('12607','667','41','iso88022llc','0','40'), ('12608','667','42','localTalk','0','41'), ('12609','667','43','smdsDxi','0','42'), ('12610','667','44','frameRelayService','0','43'), ('12611','667','45','v35','0','44'), ('12612','667','46','hssi','0','45'), ('12613','667','47','hippi','0','46'), ('12614','667','48','modem','0','47'), ('12615','667','49','aal5','0','48'), ('12616','667','50','sonetPath','0','49'), ('12617','667','51','sonetVT','0','50'), ('12618','667','52','smdsIcip','0','51'), ('12619','667','53','propVirtual','0','52'), ('12620','667','54','propMultiplexor','0','53'), ('12621','667','55','ieee80212','0','54'), ('12622','667','56','fibreChannel','0','55'), ('12623','667','57','hippiInterface','0','56'), ('12624','667','58','frameRelayInterconnect','0','57'), ('12625','667','59','aflane8023','0','58'), ('12626','667','60','aflane8025','0','59'), ('12627','667','61','cctEmul','0','60'), ('12628','667','62','fastEther','0','61'), ('12629','667','63','isdn','0','62'), ('12630','667','64','v11','0','63'), ('12631','667','65','v36','0','64'), ('12632','667','66','g703at64k','0','65'), ('12633','667','67','g703at2mb','0','66'), ('12634','667','68','qllc','0','67'), ('12635','667','69','fastEtherFX','0','68'), ('12636','667','70','channel','0','69'), ('12637','667','71','ieee80211','0','70'), ('12638','667','72','ibm370parChan','0','71'), ('12639','667','73','escon','0','72'), ('12640','667','74','dlsw','0','73'), ('12641','667','75','isdns','0','74'), ('12642','667','76','isdnu','0','75'), ('12643','667','77','lapd','0','76'), ('12644','667','78','ipSwitch','0','77'), ('12645','667','79','rsrb','0','78'), ('12646','667','80','atmLogical','0','79'), ('12647','667','81','ds0','0','80'), ('12648','667','82','ds0Bundle','0','81'), ('12649','667','83','bsc','0','82'), ('12650','667','84','async','0','83'), ('12651','667','85','cnr','0','84'), ('12652','667','86','iso88025Dtr','0','85'), ('12653','667','87','eplrs','0','86'), ('12654','667','88','arap','0','87'), ('12655','667','89','propCnls','0','88'), ('12656','667','90','hostPad','0','89'), ('12657','667','91','termPad','0','90'), ('12658','667','92','frameRelayMPI','0','91'), ('12659','667','93','x213','0','92'), ('12660','667','94','adsl','0','93'), ('12661','667','95','radsl','0','94'), ('12662','667','96','sdsl','0','95'), ('12663','667','97','vdsl','0','96'), ('12664','667','98','iso88025CRFPInt','0','97'), ('12665','667','99','myrinet','0','98'), ('12666','667','100','voiceEM','0','99'), ('12667','667','101','voiceFXO','0','100'), ('12668','667','102','voiceFXS','0','101'), ('12669','667','103','voiceEncap','0','102'), ('12670','667','104','voiceOverIp','0','103'), ('12671','667','105','atmDxi','0','104'), ('12672','667','106','atmFuni','0','105'), ('12673','667','107','atmIma','0','106'), ('12674','667','108','pppMultilinkBundle','0','107'), ('12675','667','109','ipOverCdlc','0','108'), ('12676','667','110','ipOverClaw','0','109'), ('12677','667','111','stackToStack','0','110'), ('12678','667','112','virtualIpAddress','0','111'), ('12679','667','113','mpc','0','112'), ('12680','667','114','ipOverAtm','0','113'), ('12681','667','115','iso88025Fiber','0','114'), ('12682','667','116','tdlc','0','115'), ('12683','667','117','gigabitEthernet','0','116'), ('12684','667','118','hdlc','0','117'), ('12685','667','119','lapf','0','118'), ('12686','667','120','v37','0','119'), ('12687','667','121','x25mlp','0','120'), ('12688','667','122','x25huntGroup','0','121'), ('12689','667','123','trasnpHdlc','0','122'), ('12690','667','124','interleave','0','123'), ('12691','667','125','fast','0','124'), ('12692','667','126','ip','0','125'), ('12693','667','127','docsCableMaclayer','0','126'), ('12694','667','128','docsCableDownstream','0','127'), ('12695','667','129','docsCableUpstream','0','128'), ('12696','667','130','a12MppSwitch','0','129'), ('12697','667','131','tunnel','0','130'), ('12698','667','132','coffee','0','131'), ('12699','667','133','ces','0','132'), ('12700','667','134','atmSubInterface','0','133'), ('12701','667','135','l2vlan','0','134'), ('12702','667','136','l3ipvlan','0','135'), ('12703','667','137','l3ipxvlan','0','136'), ('12704','667','138','digitalPowerline','0','137'), ('12705','667','139','mediaMailOverIp','0','138'), ('12706','667','140','dtm','0','139'), ('12707','667','141','dcn','0','140'), ('12708','667','142','ipForward','0','141'), ('12709','667','143','msdsl','0','142'), ('12710','667','144','ieee1394','0','143'), ('12711','667','145','if-gsn','0','144'), ('12712','667','146','dvbRccMacLayer','0','145'), ('12713','667','147','dvbRccDownstream','0','146'), ('12714','667','148','dvbRccUpstream','0','147'), ('12715','667','149','atmVirtual','0','148'), ('12716','667','150','mplsTunnel','0','149'), ('12717','667','151','srp','0','150'), ('12718','667','152','voiceOverAtm','0','151'), ('12719','667','153','voiceOverFrameRelay','0','152'), ('12720','667','154','idsl','0','153'), ('12721','667','155','compositeLink','0','154'), ('12722','667','156','ss7SigLink','0','155'), ('12723','667','157','propWirelessP2P','0','156'), ('12724','667','158','frForward','0','157'), ('12725','667','159','rfc1483','0','158'), ('12726','667','160','usb','0','159'), ('12727','667','161','ieee8023adLag','0','160'), ('12728','667','162','bgppolicyaccounting','0','161'), ('12729','667','163','frf16MfrBundle','0','162'), ('12730','667','164','h323Gatekeeper','0','163'), ('12731','667','165','h323Proxy','0','164'), ('12732','667','166','mpls','0','165'), ('12733','667','167','mfSigLink','0','166'), ('12734','667','168','hdsl2','0','167'), ('12735','667','169','shdsl','0','168'), ('12736','667','170','ds1FDL','0','169'), ('12737','667','171','pos','0','170'), ('12738','667','172','dvbAsiIn','0','171'), ('12739','667','173','dvbAsiOut','0','172'), ('12740','667','174','plc','0','173'), ('12741','667','175','nfas','0','174'), ('12742','667','176','tr008','0','175'), ('12743','667','177','gr303RDT','0','176'), ('12744','667','178','gr303IDT','0','177'), ('12745','667','179','isup','0','178'), ('12746','667','180','propDocsWirelessMaclayer','0','179'), ('12747','667','181','propDocsWirelessDownstream','0','180'), ('12748','667','182','propDocsWirelessUpstream','0','181'), ('12749','667','183','hiperlan2','0','182'), ('12750','667','184','propBWAp2Mp','0','183'), ('12751','667','185','sonetOverheadChannel','0','184'), ('12752','667','186','digitalWrapperOverheadChannel','0','185'), ('12753','667','187','aal2','0','186'), ('12754','667','188','radioMAC','0','187'), ('12755','667','189','atmRadio','0','188'), ('12756','667','190','imt','0','189'), ('12757','667','191','mvl','0','190'), ('12758','667','192','reachDSL','0','191'), ('12759','667','193','frDlciEndPt','0','192'), ('12760','667','194','atmVciEndPt','0','193'), ('12761','667','195','opticalChannel','0','194'), ('12762','667','196','opticalTransport','0','195'), ('12763','667','197','propAtm','0','196'), ('12764','667','198','voiceOverCable','0','197'), ('12765','667','199','infiniband','0','198'), ('12766','667','200','teLink','0','199'), ('12767','667','201','q2931','0','200'), ('12768','667','202','virtualTg','0','201'), ('12769','667','203','sipTg','0','202'), ('12770','667','204','sipSig','0','203'), ('12771','667','205','docsCableUpstreamChannel','0','204'), ('12772','667','206','econet','0','205'), ('12773','667','207','pon155','0','206'), ('12774','667','208','pon622','0','207'), ('12775','667','209','bridge','0','208'), ('12776','667','210','linegroup','0','209'), ('12777','667','211','voiceEMFGD','0','210'), ('12778','667','212','voiceFGDEANA','0','211'), ('12779','667','213','voiceDID','0','212'), ('12780','667','214','mpegTransport','0','213'), ('12781','667','215','sixToFour','0','214'), ('12782','667','216','gtp','0','215'), ('12783','667','217','pdnEtherLoop1','0','216'), ('12784','667','218','pdnEtherLoop2','0','217'), ('12785','667','219','opticalChannelGroup','0','218'), ('12786','667','220','homepna','0','219'), ('12787','667','221','gfp','0','220'), ('12788','667','222','ciscoISLvlan','0','221'), ('12789','667','223','actelisMetaLOOP','0','222'), ('12790','667','224','fcipLink','0','223'), ('12791','667','225','rpr','0','224'), ('12792','667','226','qam','0','225'), ('12793','667','227','lmp','0','226'), ('12794','667','228','cblVectaStar','0','227'), ('12795','667','229','docsCableMCmtsDownstream','0','228'), ('12796','667','230','adsl2','0','229'), ('12797','667','231','macSecControlledIF','0','230'), ('12798','667','232','macSecUncontrolledIF','0','231'), ('12799','667','233','aviciOpticalEther','0','232'), ('12800','667','234','atmbond','0','233'), ('12801','667','235','voiceFGDOS','0','234'), ('12802','667','236','mocaVersion1','0','235'), ('12803','667','237','ieee80216WMAN','0','236'), ('12804','667','238','adsl2plus','0','237'), ('12805','667','239','dvbRcsMacLayer','0','238'), ('12806','667','240','dvbTdm','0','239'), ('12807','667','241','dvbRcsTdma','0','240'), ('12808','667','242','x86Laps','0','241'), ('12809','667','243','wwanPP','0','242'), ('12810','667','244','wwanPP2','0','243'), ('12811','667','245','voiceEBS','0','244'), ('12812','667','246','ifPwType','0','245'), ('12813','667','247','ilan','0','246'), ('12814','667','248','pip','0','247'), ('12815','667','249','aluELP','0','248'), ('12816','667','250','gpon','0','249'), ('12817','667','251','vdsl2','0','250'), ('12818','667','252','capwapDot11Profile','0','251'), ('12819','667','253','capwapDot11Bss','0','252'), ('12820','667','254','capwapWtpVirtualRadio','0','253'), ('12821','667','255','bits','0','254'), ('12822','667','256','docsCableUpstreamRfPort','0','255'), ('12823','667','257','cableDownstreamRfPort','0','256'), ('12824','667','258','vmwareVirtualNic','0','257'), ('12825','667','259','ieee802154','0','258'), ('12826','667','260','otnOdu','0','259'), ('12827','667','261','otnOtu','0','260'), ('12828','667','262','ifVfiType','0','261'), ('12829','667','263','g9981','0','262'), ('12830','667','264','g9982','0','263'), ('12831','667','265','g9983','0','264'), ('12832','667','266','aluEpon','0','265'), ('12833','667','267','aluEponOnu','0','266'), ('12834','667','268','aluEponPhysicalUni','0','267'), ('12835','667','269','aluEponLogicalLink','0','268'), ('12836','667','270','aluGponOnu','0','269'), ('12837','667','271','aluGponPhysicalUni','0','270'), ('12838','667','272','vmwareNicTeam','0','271'), ('12839','667','277','docsOfdmDownstream','0','272'), ('12840','667','278','docsOfdmaUpstream','0','273'), ('12841','667','279','gfast','0','274'), ('12842','667','280','sdci','0','275'), ('12843','667','281','xboxWireless','0','276'), ('12844','667','282','fastdsl','0','277'), ('12845','667','283','docsCableScte55d1FwdOob','0','278'), ('12846','667','284','docsCableScte55d1RetOob','0','279'), ('12847','667','285','docsCableScte55d2DsOob','0','280'), ('12848','667','286','docsCableScte55d2UsOob','0','281'), ('12849','667','287','docsCableNdf','0','282'), ('12850','667','288','docsCableNdr','0','283'), ('12851','667','289','ptm','0','284'), ('12852','667','290','ghn','0','285'), ('12853','668','0','Down','0','0'), ('12854','668','1','Up','0','1'), ('12855','669','0','not available','0','0'), ('12856','669','1','available','0','1'), ('12857','669','2','unknown','0','2'), ('12858','670','1','up','0','0'), ('12859','670','2','down','0','1'), ('12860','670','4','unknown','0','2'), ('12861','670','5','dormant','0','3'), ('12862','670','6','notPresent','0','4'), ('12863','670','7','lowerLayerDown','0','5'), ('12864','671','1','other','0','0'), ('12865','671','2','regular1822','0','1'), ('12866','671','3','hdh1822','0','2'), ('12867','671','4','ddnX25','0','3'), ('12868','671','5','rfc877x25','0','4'), ('12869','671','6','ethernetCsmacd','0','5'), ('12870','671','7','iso88023Csmacd','0','6'), ('12871','671','8','iso88024TokenBus','0','7'), ('12872','671','9','iso88025TokenRing','0','8'), ('12873','671','10','iso88026Man','0','9'), ('12874','671','11','starLan','0','10'), ('12875','671','12','proteon10Mbit','0','11'), ('12876','671','13','proteon80Mbit','0','12'), ('12877','671','14','hyperchannel','0','13'), ('12878','671','15','fddi','0','14'), ('12879','671','16','lapb','0','15'), ('12880','671','17','sdlc','0','16'), ('12881','671','18','ds1','0','17'), ('12882','671','19','e1','0','18'), ('12883','671','20','basicISDN','0','19'), ('12884','671','21','primaryISDN','0','20'), ('12885','671','22','propPointToPointSerial','0','21'), ('12886','671','23','ppp','0','22'), ('12887','671','24','softwareLoopback','0','23'), ('12888','671','25','eon','0','24'), ('12889','671','26','ethernet3Mbit','0','25'), ('12890','671','27','nsip','0','26'), ('12891','671','28','slip','0','27'), ('12892','671','29','ultra','0','28'), ('12893','671','30','ds3','0','29'), ('12894','671','31','sip','0','30'), ('12895','671','32','frameRelay','0','31'), ('12896','671','33','rs232','0','32'), ('12897','671','34','para','0','33'), ('12898','671','35','arcnet','0','34'), ('12899','671','36','arcnetPlus','0','35'), ('12900','671','37','atm','0','36'), ('12901','671','38','miox25','0','37'), ('12902','671','39','sonet','0','38'), ('12903','671','40','x25ple','0','39'), ('12904','671','41','iso88022llc','0','40'), ('12905','671','42','localTalk','0','41'), ('12906','671','43','smdsDxi','0','42'), ('12907','671','44','frameRelayService','0','43'), ('12908','671','45','v35','0','44'), ('12909','671','46','hssi','0','45'), ('12910','671','47','hippi','0','46'), ('12911','671','48','modem','0','47'), ('12912','671','49','aal5','0','48'), ('12913','671','50','sonetPath','0','49'), ('12914','671','51','sonetVT','0','50'), ('12915','671','52','smdsIcip','0','51'), ('12916','671','53','propVirtual','0','52'), ('12917','671','54','propMultiplexor','0','53'), ('12918','671','55','ieee80212','0','54'), ('12919','671','56','fibreChannel','0','55'), ('12920','671','57','hippiInterface','0','56'), ('12921','671','58','frameRelayInterconnect','0','57'), ('12922','671','59','aflane8023','0','58'), ('12923','671','60','aflane8025','0','59'), ('12924','671','61','cctEmul','0','60'), ('12925','671','62','fastEther','0','61'), ('12926','671','63','isdn','0','62'), ('12927','671','64','v11','0','63'), ('12928','671','65','v36','0','64'), ('12929','671','66','g703at64k','0','65'), ('12930','671','67','g703at2mb','0','66'), ('12931','671','68','qllc','0','67'), ('12932','671','69','fastEtherFX','0','68'), ('12933','671','70','channel','0','69'), ('12934','671','71','ieee80211','0','70'), ('12935','671','72','ibm370parChan','0','71'), ('12936','671','73','escon','0','72'), ('12937','671','74','dlsw','0','73'), ('12938','671','75','isdns','0','74'), ('12939','671','76','isdnu','0','75'), ('12940','671','77','lapd','0','76'), ('12941','671','78','ipSwitch','0','77'), ('12942','671','79','rsrb','0','78'), ('12943','671','80','atmLogical','0','79'), ('12944','671','81','ds0','0','80'), ('12945','671','82','ds0Bundle','0','81'), ('12946','671','83','bsc','0','82'), ('12947','671','84','async','0','83'), ('12948','671','85','cnr','0','84'), ('12949','671','86','iso88025Dtr','0','85'), ('12950','671','87','eplrs','0','86'), ('12951','671','88','arap','0','87'), ('12952','671','89','propCnls','0','88'), ('12953','671','90','hostPad','0','89'), ('12954','671','91','termPad','0','90'), ('12955','671','92','frameRelayMPI','0','91'), ('12956','671','93','x213','0','92'), ('12957','671','94','adsl','0','93'), ('12958','671','95','radsl','0','94'), ('12959','671','96','sdsl','0','95'), ('12960','671','97','vdsl','0','96'), ('12961','671','98','iso88025CRFPInt','0','97'), ('12962','671','99','myrinet','0','98'), ('12963','671','100','voiceEM','0','99'), ('12964','671','101','voiceFXO','0','100'), ('12965','671','102','voiceFXS','0','101'), ('12966','671','103','voiceEncap','0','102'), ('12967','671','104','voiceOverIp','0','103'), ('12968','671','105','atmDxi','0','104'), ('12969','671','106','atmFuni','0','105'), ('12970','671','107','atmIma','0','106'), ('12971','671','108','pppMultilinkBundle','0','107'), ('12972','671','109','ipOverCdlc','0','108'), ('12973','671','110','ipOverClaw','0','109'), ('12974','671','111','stackToStack','0','110'), ('12975','671','112','virtualIpAddress','0','111'), ('12976','671','113','mpc','0','112'), ('12977','671','114','ipOverAtm','0','113'), ('12978','671','115','iso88025Fiber','0','114'), ('12979','671','116','tdlc','0','115'), ('12980','671','117','gigabitEthernet','0','116'), ('12981','671','118','hdlc','0','117'), ('12982','671','119','lapf','0','118'), ('12983','671','120','v37','0','119'), ('12984','671','121','x25mlp','0','120'), ('12985','671','122','x25huntGroup','0','121'), ('12986','671','123','trasnpHdlc','0','122'), ('12987','671','124','interleave','0','123'), ('12988','671','125','fast','0','124'), ('12989','671','126','ip','0','125'), ('12990','671','127','docsCableMaclayer','0','126'), ('12991','671','128','docsCableDownstream','0','127'), ('12992','671','129','docsCableUpstream','0','128'), ('12993','671','130','a12MppSwitch','0','129'), ('12994','671','131','tunnel','0','130'), ('12995','671','132','coffee','0','131'), ('12996','671','133','ces','0','132'), ('12997','671','134','atmSubInterface','0','133'), ('12998','671','135','l2vlan','0','134'), ('12999','671','136','l3ipvlan','0','135'), ('13000','671','137','l3ipxvlan','0','136'), ('13001','671','138','digitalPowerline','0','137'), ('13002','671','139','mediaMailOverIp','0','138'), ('13003','671','140','dtm','0','139'), ('13004','671','141','dcn','0','140'), ('13005','671','142','ipForward','0','141'), ('13006','671','143','msdsl','0','142'), ('13007','671','144','ieee1394','0','143'), ('13008','671','145','if-gsn','0','144'), ('13009','671','146','dvbRccMacLayer','0','145'), ('13010','671','147','dvbRccDownstream','0','146'), ('13011','671','148','dvbRccUpstream','0','147'), ('13012','671','149','atmVirtual','0','148'), ('13013','671','150','mplsTunnel','0','149'), ('13014','671','151','srp','0','150'), ('13015','671','152','voiceOverAtm','0','151'), ('13016','671','153','voiceOverFrameRelay','0','152'), ('13017','671','154','idsl','0','153'), ('13018','671','155','compositeLink','0','154'), ('13019','671','156','ss7SigLink','0','155'), ('13020','671','157','propWirelessP2P','0','156'), ('13021','671','158','frForward','0','157'), ('13022','671','159','rfc1483','0','158'), ('13023','671','160','usb','0','159'), ('13024','671','161','ieee8023adLag','0','160'), ('13025','671','162','bgppolicyaccounting','0','161'), ('13026','671','163','frf16MfrBundle','0','162'), ('13027','671','164','h323Gatekeeper','0','163'), ('13028','671','165','h323Proxy','0','164'), ('13029','671','166','mpls','0','165'), ('13030','671','167','mfSigLink','0','166'), ('13031','671','168','hdsl2','0','167'), ('13032','671','169','shdsl','0','168'), ('13033','671','170','ds1FDL','0','169'), ('13034','671','171','pos','0','170'), ('13035','671','172','dvbAsiIn','0','171'), ('13036','671','173','dvbAsiOut','0','172'), ('13037','671','174','plc','0','173'), ('13038','671','175','nfas','0','174'), ('13039','671','176','tr008','0','175'), ('13040','671','177','gr303RDT','0','176'), ('13041','671','178','gr303IDT','0','177'), ('13042','671','179','isup','0','178'), ('13043','671','180','propDocsWirelessMaclayer','0','179'), ('13044','671','181','propDocsWirelessDownstream','0','180'), ('13045','671','182','propDocsWirelessUpstream','0','181'), ('13046','671','183','hiperlan2','0','182'), ('13047','671','184','propBWAp2Mp','0','183'), ('13048','671','185','sonetOverheadChannel','0','184'), ('13049','671','186','digitalWrapperOverheadChannel','0','185'), ('13050','671','187','aal2','0','186'), ('13051','671','188','radioMAC','0','187'), ('13052','671','189','atmRadio','0','188'), ('13053','671','190','imt','0','189'), ('13054','671','191','mvl','0','190'), ('13055','671','192','reachDSL','0','191'), ('13056','671','193','frDlciEndPt','0','192'), ('13057','671','194','atmVciEndPt','0','193'), ('13058','671','195','opticalChannel','0','194'), ('13059','671','196','opticalTransport','0','195'), ('13060','671','197','propAtm','0','196'), ('13061','671','198','voiceOverCable','0','197'), ('13062','671','199','infiniband','0','198'), ('13063','671','200','teLink','0','199'), ('13064','671','201','q2931','0','200'), ('13065','671','202','virtualTg','0','201'), ('13066','671','203','sipTg','0','202'), ('13067','671','204','sipSig','0','203'), ('13068','671','205','docsCableUpstreamChannel','0','204'), ('13069','671','206','econet','0','205'), ('13070','671','207','pon155','0','206'), ('13071','671','208','pon622','0','207'), ('13072','671','209','bridge','0','208'), ('13073','671','210','linegroup','0','209'), ('13074','671','211','voiceEMFGD','0','210'), ('13075','671','212','voiceFGDEANA','0','211'), ('13076','671','213','voiceDID','0','212'), ('13077','671','214','mpegTransport','0','213'), ('13078','671','215','sixToFour','0','214'), ('13079','671','216','gtp','0','215'), ('13080','671','217','pdnEtherLoop1','0','216'), ('13081','671','218','pdnEtherLoop2','0','217'), ('13082','671','219','opticalChannelGroup','0','218'), ('13083','671','220','homepna','0','219'), ('13084','671','221','gfp','0','220'), ('13085','671','222','ciscoISLvlan','0','221'), ('13086','671','223','actelisMetaLOOP','0','222'), ('13087','671','224','fcipLink','0','223'), ('13088','671','225','rpr','0','224'), ('13089','671','226','qam','0','225'), ('13090','671','227','lmp','0','226'), ('13091','671','228','cblVectaStar','0','227'), ('13092','671','229','docsCableMCmtsDownstream','0','228'), ('13093','671','230','adsl2','0','229'), ('13094','671','231','macSecControlledIF','0','230'), ('13095','671','232','macSecUncontrolledIF','0','231'), ('13096','671','233','aviciOpticalEther','0','232'), ('13097','671','234','atmbond','0','233'), ('13098','671','235','voiceFGDOS','0','234'), ('13099','671','236','mocaVersion1','0','235'), ('13100','671','237','ieee80216WMAN','0','236'), ('13101','671','238','adsl2plus','0','237'), ('13102','671','239','dvbRcsMacLayer','0','238'), ('13103','671','240','dvbTdm','0','239'), ('13104','671','241','dvbRcsTdma','0','240'), ('13105','671','242','x86Laps','0','241'), ('13106','671','243','wwanPP','0','242'), ('13107','671','244','wwanPP2','0','243'), ('13108','671','245','voiceEBS','0','244'), ('13109','671','246','ifPwType','0','245'), ('13110','671','247','ilan','0','246'), ('13111','671','248','pip','0','247'), ('13112','671','249','aluELP','0','248'), ('13113','671','250','gpon','0','249'), ('13114','671','251','vdsl2','0','250'), ('13115','671','252','capwapDot11Profile','0','251'), ('13116','671','253','capwapDot11Bss','0','252'), ('13117','671','254','capwapWtpVirtualRadio','0','253'), ('13118','671','255','bits','0','254'), ('13119','671','256','docsCableUpstreamRfPort','0','255'), ('13120','671','257','cableDownstreamRfPort','0','256'), ('13121','671','258','vmwareVirtualNic','0','257'), ('13122','671','259','ieee802154','0','258'), ('13123','671','260','otnOdu','0','259'), ('13124','671','261','otnOtu','0','260'), ('13125','671','262','ifVfiType','0','261'), ('13126','671','263','g9981','0','262'), ('13127','671','264','g9982','0','263'), ('13128','671','265','g9983','0','264'), ('13129','671','266','aluEpon','0','265'), ('13130','671','267','aluEponOnu','0','266'), ('13131','671','268','aluEponPhysicalUni','0','267'), ('13132','671','269','aluEponLogicalLink','0','268'), ('13133','671','270','aluGponOnu','0','269'), ('13134','671','271','aluGponPhysicalUni','0','270'), ('13135','671','272','vmwareNicTeam','0','271'), ('13136','671','277','docsOfdmDownstream','0','272'), ('13137','671','278','docsOfdmaUpstream','0','273'), ('13138','671','279','gfast','0','274'), ('13139','671','280','sdci','0','275'), ('13140','671','281','xboxWireless','0','276'), ('13141','671','282','fastdsl','0','277'), ('13142','671','283','docsCableScte55d1FwdOob','0','278'), ('13143','671','284','docsCableScte55d1RetOob','0','279'), ('13144','671','285','docsCableScte55d2DsOob','0','280'), ('13145','671','286','docsCableScte55d2UsOob','0','281'), ('13146','671','287','docsCableNdf','0','282'), ('13147','671','288','docsCableNdr','0','283'), ('13148','671','289','ptm','0','284'), ('13149','671','290','ghn','0','285'), ('13150','672','0','Down','0','0'), ('13151','672','1','Up','0','1'), ('13152','673','0','not available','0','0'), ('13153','673','1','available','0','1'), ('13154','673','2','unknown','0','2'), ('13155','674','1','up','0','0'), ('13156','674','2','down','0','1'), ('13157','674','4','unknown','0','2'), ('13158','674','5','dormant','0','3'), ('13159','674','6','notPresent','0','4'), ('13160','674','7','lowerLayerDown','0','5'), ('13161','675','1','other','0','0'), ('13162','675','2','regular1822','0','1'), ('13163','675','3','hdh1822','0','2'), ('13164','675','4','ddnX25','0','3'), ('13165','675','5','rfc877x25','0','4'), ('13166','675','6','ethernetCsmacd','0','5'), ('13167','675','7','iso88023Csmacd','0','6'), ('13168','675','8','iso88024TokenBus','0','7'), ('13169','675','9','iso88025TokenRing','0','8'), ('13170','675','10','iso88026Man','0','9'), ('13171','675','11','starLan','0','10'), ('13172','675','12','proteon10Mbit','0','11'), ('13173','675','13','proteon80Mbit','0','12'), ('13174','675','14','hyperchannel','0','13'), ('13175','675','15','fddi','0','14'), ('13176','675','16','lapb','0','15'), ('13177','675','17','sdlc','0','16'), ('13178','675','18','ds1','0','17'), ('13179','675','19','e1','0','18'), ('13180','675','20','basicISDN','0','19'), ('13181','675','21','primaryISDN','0','20'), ('13182','675','22','propPointToPointSerial','0','21'), ('13183','675','23','ppp','0','22'), ('13184','675','24','softwareLoopback','0','23'), ('13185','675','25','eon','0','24'), ('13186','675','26','ethernet3Mbit','0','25'), ('13187','675','27','nsip','0','26'), ('13188','675','28','slip','0','27'), ('13189','675','29','ultra','0','28'), ('13190','675','30','ds3','0','29'), ('13191','675','31','sip','0','30'), ('13192','675','32','frameRelay','0','31'), ('13193','675','33','rs232','0','32'), ('13194','675','34','para','0','33'), ('13195','675','35','arcnet','0','34'), ('13196','675','36','arcnetPlus','0','35'), ('13197','675','37','atm','0','36'), ('13198','675','38','miox25','0','37'), ('13199','675','39','sonet','0','38'), ('13200','675','40','x25ple','0','39'), ('13201','675','41','iso88022llc','0','40'), ('13202','675','42','localTalk','0','41'), ('13203','675','43','smdsDxi','0','42'), ('13204','675','44','frameRelayService','0','43'), ('13205','675','45','v35','0','44'), ('13206','675','46','hssi','0','45'), ('13207','675','47','hippi','0','46'), ('13208','675','48','modem','0','47'), ('13209','675','49','aal5','0','48'), ('13210','675','50','sonetPath','0','49'), ('13211','675','51','sonetVT','0','50'), ('13212','675','52','smdsIcip','0','51'), ('13213','675','53','propVirtual','0','52'), ('13214','675','54','propMultiplexor','0','53'), ('13215','675','55','ieee80212','0','54'), ('13216','675','56','fibreChannel','0','55'), ('13217','675','57','hippiInterface','0','56'), ('13218','675','58','frameRelayInterconnect','0','57'), ('13219','675','59','aflane8023','0','58'), ('13220','675','60','aflane8025','0','59'), ('13221','675','61','cctEmul','0','60'), ('13222','675','62','fastEther','0','61'), ('13223','675','63','isdn','0','62'), ('13224','675','64','v11','0','63'), ('13225','675','65','v36','0','64'), ('13226','675','66','g703at64k','0','65'), ('13227','675','67','g703at2mb','0','66'), ('13228','675','68','qllc','0','67'), ('13229','675','69','fastEtherFX','0','68'), ('13230','675','70','channel','0','69'), ('13231','675','71','ieee80211','0','70'), ('13232','675','72','ibm370parChan','0','71'), ('13233','675','73','escon','0','72'), ('13234','675','74','dlsw','0','73'), ('13235','675','75','isdns','0','74'), ('13236','675','76','isdnu','0','75'), ('13237','675','77','lapd','0','76'), ('13238','675','78','ipSwitch','0','77'), ('13239','675','79','rsrb','0','78'), ('13240','675','80','atmLogical','0','79'), ('13241','675','81','ds0','0','80'), ('13242','675','82','ds0Bundle','0','81'), ('13243','675','83','bsc','0','82'), ('13244','675','84','async','0','83'), ('13245','675','85','cnr','0','84'), ('13246','675','86','iso88025Dtr','0','85'), ('13247','675','87','eplrs','0','86'), ('13248','675','88','arap','0','87'), ('13249','675','89','propCnls','0','88'), ('13250','675','90','hostPad','0','89'), ('13251','675','91','termPad','0','90'), ('13252','675','92','frameRelayMPI','0','91'), ('13253','675','93','x213','0','92'), ('13254','675','94','adsl','0','93'), ('13255','675','95','radsl','0','94'), ('13256','675','96','sdsl','0','95'), ('13257','675','97','vdsl','0','96'), ('13258','675','98','iso88025CRFPInt','0','97'), ('13259','675','99','myrinet','0','98'), ('13260','675','100','voiceEM','0','99'), ('13261','675','101','voiceFXO','0','100'), ('13262','675','102','voiceFXS','0','101'), ('13263','675','103','voiceEncap','0','102'), ('13264','675','104','voiceOverIp','0','103'), ('13265','675','105','atmDxi','0','104'), ('13266','675','106','atmFuni','0','105'), ('13267','675','107','atmIma','0','106'), ('13268','675','108','pppMultilinkBundle','0','107'), ('13269','675','109','ipOverCdlc','0','108'), ('13270','675','110','ipOverClaw','0','109'), ('13271','675','111','stackToStack','0','110'), ('13272','675','112','virtualIpAddress','0','111'), ('13273','675','113','mpc','0','112'), ('13274','675','114','ipOverAtm','0','113'), ('13275','675','115','iso88025Fiber','0','114'), ('13276','675','116','tdlc','0','115'), ('13277','675','117','gigabitEthernet','0','116'), ('13278','675','118','hdlc','0','117'), ('13279','675','119','lapf','0','118'), ('13280','675','120','v37','0','119'), ('13281','675','121','x25mlp','0','120'), ('13282','675','122','x25huntGroup','0','121'), ('13283','675','123','trasnpHdlc','0','122'), ('13284','675','124','interleave','0','123'), ('13285','675','125','fast','0','124'), ('13286','675','126','ip','0','125'), ('13287','675','127','docsCableMaclayer','0','126'), ('13288','675','128','docsCableDownstream','0','127'), ('13289','675','129','docsCableUpstream','0','128'), ('13290','675','130','a12MppSwitch','0','129'), ('13291','675','131','tunnel','0','130'), ('13292','675','132','coffee','0','131'), ('13293','675','133','ces','0','132'), ('13294','675','134','atmSubInterface','0','133'), ('13295','675','135','l2vlan','0','134'), ('13296','675','136','l3ipvlan','0','135'), ('13297','675','137','l3ipxvlan','0','136'), ('13298','675','138','digitalPowerline','0','137'), ('13299','675','139','mediaMailOverIp','0','138'), ('13300','675','140','dtm','0','139'), ('13301','675','141','dcn','0','140'), ('13302','675','142','ipForward','0','141'), ('13303','675','143','msdsl','0','142'), ('13304','675','144','ieee1394','0','143'), ('13305','675','145','if-gsn','0','144'), ('13306','675','146','dvbRccMacLayer','0','145'), ('13307','675','147','dvbRccDownstream','0','146'), ('13308','675','148','dvbRccUpstream','0','147'), ('13309','675','149','atmVirtual','0','148'), ('13310','675','150','mplsTunnel','0','149'), ('13311','675','151','srp','0','150'), ('13312','675','152','voiceOverAtm','0','151'), ('13313','675','153','voiceOverFrameRelay','0','152'), ('13314','675','154','idsl','0','153'), ('13315','675','155','compositeLink','0','154'), ('13316','675','156','ss7SigLink','0','155'), ('13317','675','157','propWirelessP2P','0','156'), ('13318','675','158','frForward','0','157'), ('13319','675','159','rfc1483','0','158'), ('13320','675','160','usb','0','159'), ('13321','675','161','ieee8023adLag','0','160'), ('13322','675','162','bgppolicyaccounting','0','161'), ('13323','675','163','frf16MfrBundle','0','162'), ('13324','675','164','h323Gatekeeper','0','163'), ('13325','675','165','h323Proxy','0','164'), ('13326','675','166','mpls','0','165'), ('13327','675','167','mfSigLink','0','166'), ('13328','675','168','hdsl2','0','167'), ('13329','675','169','shdsl','0','168'), ('13330','675','170','ds1FDL','0','169'), ('13331','675','171','pos','0','170'), ('13332','675','172','dvbAsiIn','0','171'), ('13333','675','173','dvbAsiOut','0','172'), ('13334','675','174','plc','0','173'), ('13335','675','175','nfas','0','174'), ('13336','675','176','tr008','0','175'), ('13337','675','177','gr303RDT','0','176'), ('13338','675','178','gr303IDT','0','177'), ('13339','675','179','isup','0','178'), ('13340','675','180','propDocsWirelessMaclayer','0','179'), ('13341','675','181','propDocsWirelessDownstream','0','180'), ('13342','675','182','propDocsWirelessUpstream','0','181'), ('13343','675','183','hiperlan2','0','182'), ('13344','675','184','propBWAp2Mp','0','183'), ('13345','675','185','sonetOverheadChannel','0','184'), ('13346','675','186','digitalWrapperOverheadChannel','0','185'), ('13347','675','187','aal2','0','186'), ('13348','675','188','radioMAC','0','187'), ('13349','675','189','atmRadio','0','188'), ('13350','675','190','imt','0','189'), ('13351','675','191','mvl','0','190'), ('13352','675','192','reachDSL','0','191'), ('13353','675','193','frDlciEndPt','0','192'), ('13354','675','194','atmVciEndPt','0','193'), ('13355','675','195','opticalChannel','0','194'), ('13356','675','196','opticalTransport','0','195'), ('13357','675','197','propAtm','0','196'), ('13358','675','198','voiceOverCable','0','197'), ('13359','675','199','infiniband','0','198'), ('13360','675','200','teLink','0','199'), ('13361','675','201','q2931','0','200'), ('13362','675','202','virtualTg','0','201'), ('13363','675','203','sipTg','0','202'), ('13364','675','204','sipSig','0','203'), ('13365','675','205','docsCableUpstreamChannel','0','204'), ('13366','675','206','econet','0','205'), ('13367','675','207','pon155','0','206'), ('13368','675','208','pon622','0','207'), ('13369','675','209','bridge','0','208'), ('13370','675','210','linegroup','0','209'), ('13371','675','211','voiceEMFGD','0','210'), ('13372','675','212','voiceFGDEANA','0','211'), ('13373','675','213','voiceDID','0','212'), ('13374','675','214','mpegTransport','0','213'), ('13375','675','215','sixToFour','0','214'), ('13376','675','216','gtp','0','215'), ('13377','675','217','pdnEtherLoop1','0','216'), ('13378','675','218','pdnEtherLoop2','0','217'), ('13379','675','219','opticalChannelGroup','0','218'), ('13380','675','220','homepna','0','219'), ('13381','675','221','gfp','0','220'), ('13382','675','222','ciscoISLvlan','0','221'), ('13383','675','223','actelisMetaLOOP','0','222'), ('13384','675','224','fcipLink','0','223'), ('13385','675','225','rpr','0','224'), ('13386','675','226','qam','0','225'), ('13387','675','227','lmp','0','226'), ('13388','675','228','cblVectaStar','0','227'), ('13389','675','229','docsCableMCmtsDownstream','0','228'), ('13390','675','230','adsl2','0','229'), ('13391','675','231','macSecControlledIF','0','230'), ('13392','675','232','macSecUncontrolledIF','0','231'), ('13393','675','233','aviciOpticalEther','0','232'), ('13394','675','234','atmbond','0','233'), ('13395','675','235','voiceFGDOS','0','234'), ('13396','675','236','mocaVersion1','0','235'), ('13397','675','237','ieee80216WMAN','0','236'), ('13398','675','238','adsl2plus','0','237'), ('13399','675','239','dvbRcsMacLayer','0','238'), ('13400','675','240','dvbTdm','0','239'), ('13401','675','241','dvbRcsTdma','0','240'), ('13402','675','242','x86Laps','0','241'), ('13403','675','243','wwanPP','0','242'), ('13404','675','244','wwanPP2','0','243'), ('13405','675','245','voiceEBS','0','244'), ('13406','675','246','ifPwType','0','245'), ('13407','675','247','ilan','0','246'), ('13408','675','248','pip','0','247'), ('13409','675','249','aluELP','0','248'), ('13410','675','250','gpon','0','249'), ('13411','675','251','vdsl2','0','250'), ('13412','675','252','capwapDot11Profile','0','251'), ('13413','675','253','capwapDot11Bss','0','252'), ('13414','675','254','capwapWtpVirtualRadio','0','253'), ('13415','675','255','bits','0','254'), ('13416','675','256','docsCableUpstreamRfPort','0','255'), ('13417','675','257','cableDownstreamRfPort','0','256'), ('13418','675','258','vmwareVirtualNic','0','257'), ('13419','675','259','ieee802154','0','258'), ('13420','675','260','otnOdu','0','259'), ('13421','675','261','otnOtu','0','260'), ('13422','675','262','ifVfiType','0','261'), ('13423','675','263','g9981','0','262'), ('13424','675','264','g9982','0','263'), ('13425','675','265','g9983','0','264'), ('13426','675','266','aluEpon','0','265'), ('13427','675','267','aluEponOnu','0','266'), ('13428','675','268','aluEponPhysicalUni','0','267'), ('13429','675','269','aluEponLogicalLink','0','268'), ('13430','675','270','aluGponOnu','0','269'), ('13431','675','271','aluGponPhysicalUni','0','270'), ('13432','675','272','vmwareNicTeam','0','271'), ('13433','675','277','docsOfdmDownstream','0','272'), ('13434','675','278','docsOfdmaUpstream','0','273'), ('13435','675','279','gfast','0','274'), ('13436','675','280','sdci','0','275'), ('13437','675','281','xboxWireless','0','276'), ('13438','675','282','fastdsl','0','277'), ('13439','675','283','docsCableScte55d1FwdOob','0','278'), ('13440','675','284','docsCableScte55d1RetOob','0','279'), ('13441','675','285','docsCableScte55d2DsOob','0','280'), ('13442','675','286','docsCableScte55d2UsOob','0','281'), ('13443','675','287','docsCableNdf','0','282'), ('13444','675','288','docsCableNdr','0','283'), ('13445','675','289','ptm','0','284'), ('13446','675','290','ghn','0','285'), ('13447','676','0','Down','0','0'), ('13448','676','1','Up','0','1'), ('13449','677','0','not available','0','0'), ('13450','677','1','available','0','1'), ('13451','677','2','unknown','0','2'), ('13452','678','1','up','0','0'), ('13453','678','2','down','0','1'), ('13454','678','4','unknown','0','2'), ('13455','678','5','dormant','0','3'), ('13456','678','6','notPresent','0','4'), ('13457','678','7','lowerLayerDown','0','5'), ('13458','679','1','other','0','0'), ('13459','679','2','regular1822','0','1'), ('13460','679','3','hdh1822','0','2'), ('13461','679','4','ddnX25','0','3'), ('13462','679','5','rfc877x25','0','4'), ('13463','679','6','ethernetCsmacd','0','5'), ('13464','679','7','iso88023Csmacd','0','6'), ('13465','679','8','iso88024TokenBus','0','7'), ('13466','679','9','iso88025TokenRing','0','8'), ('13467','679','10','iso88026Man','0','9'), ('13468','679','11','starLan','0','10'), ('13469','679','12','proteon10Mbit','0','11'), ('13470','679','13','proteon80Mbit','0','12'), ('13471','679','14','hyperchannel','0','13'), ('13472','679','15','fddi','0','14'), ('13473','679','16','lapb','0','15'), ('13474','679','17','sdlc','0','16'), ('13475','679','18','ds1','0','17'), ('13476','679','19','e1','0','18'), ('13477','679','20','basicISDN','0','19'), ('13478','679','21','primaryISDN','0','20'), ('13479','679','22','propPointToPointSerial','0','21'), ('13480','679','23','ppp','0','22'), ('13481','679','24','softwareLoopback','0','23'), ('13482','679','25','eon','0','24'), ('13483','679','26','ethernet3Mbit','0','25'), ('13484','679','27','nsip','0','26'), ('13485','679','28','slip','0','27'), ('13486','679','29','ultra','0','28'), ('13487','679','30','ds3','0','29'), ('13488','679','31','sip','0','30'), ('13489','679','32','frameRelay','0','31'), ('13490','679','33','rs232','0','32'), ('13491','679','34','para','0','33'), ('13492','679','35','arcnet','0','34'), ('13493','679','36','arcnetPlus','0','35'), ('13494','679','37','atm','0','36'), ('13495','679','38','miox25','0','37'), ('13496','679','39','sonet','0','38'), ('13497','679','40','x25ple','0','39'), ('13498','679','41','iso88022llc','0','40'), ('13499','679','42','localTalk','0','41'), ('13500','679','43','smdsDxi','0','42'), ('13501','679','44','frameRelayService','0','43'), ('13502','679','45','v35','0','44'), ('13503','679','46','hssi','0','45'), ('13504','679','47','hippi','0','46'), ('13505','679','48','modem','0','47'), ('13506','679','49','aal5','0','48'), ('13507','679','50','sonetPath','0','49'), ('13508','679','51','sonetVT','0','50'), ('13509','679','52','smdsIcip','0','51'), ('13510','679','53','propVirtual','0','52'), ('13511','679','54','propMultiplexor','0','53'), ('13512','679','55','ieee80212','0','54'), ('13513','679','56','fibreChannel','0','55'), ('13514','679','57','hippiInterface','0','56'), ('13515','679','58','frameRelayInterconnect','0','57'), ('13516','679','59','aflane8023','0','58'), ('13517','679','60','aflane8025','0','59'), ('13518','679','61','cctEmul','0','60'), ('13519','679','62','fastEther','0','61'), ('13520','679','63','isdn','0','62'), ('13521','679','64','v11','0','63'), ('13522','679','65','v36','0','64'), ('13523','679','66','g703at64k','0','65'), ('13524','679','67','g703at2mb','0','66'), ('13525','679','68','qllc','0','67'), ('13526','679','69','fastEtherFX','0','68'), ('13527','679','70','channel','0','69'), ('13528','679','71','ieee80211','0','70'), ('13529','679','72','ibm370parChan','0','71'), ('13530','679','73','escon','0','72'), ('13531','679','74','dlsw','0','73'), ('13532','679','75','isdns','0','74'), ('13533','679','76','isdnu','0','75'), ('13534','679','77','lapd','0','76'), ('13535','679','78','ipSwitch','0','77'), ('13536','679','79','rsrb','0','78'), ('13537','679','80','atmLogical','0','79'), ('13538','679','81','ds0','0','80'), ('13539','679','82','ds0Bundle','0','81'), ('13540','679','83','bsc','0','82'), ('13541','679','84','async','0','83'), ('13542','679','85','cnr','0','84'), ('13543','679','86','iso88025Dtr','0','85'), ('13544','679','87','eplrs','0','86'), ('13545','679','88','arap','0','87'), ('13546','679','89','propCnls','0','88'), ('13547','679','90','hostPad','0','89'), ('13548','679','91','termPad','0','90'), ('13549','679','92','frameRelayMPI','0','91'), ('13550','679','93','x213','0','92'), ('13551','679','94','adsl','0','93'), ('13552','679','95','radsl','0','94'), ('13553','679','96','sdsl','0','95'), ('13554','679','97','vdsl','0','96'), ('13555','679','98','iso88025CRFPInt','0','97'), ('13556','679','99','myrinet','0','98'), ('13557','679','100','voiceEM','0','99'), ('13558','679','101','voiceFXO','0','100'), ('13559','679','102','voiceFXS','0','101'), ('13560','679','103','voiceEncap','0','102'), ('13561','679','104','voiceOverIp','0','103'), ('13562','679','105','atmDxi','0','104'), ('13563','679','106','atmFuni','0','105'), ('13564','679','107','atmIma','0','106'), ('13565','679','108','pppMultilinkBundle','0','107'), ('13566','679','109','ipOverCdlc','0','108'), ('13567','679','110','ipOverClaw','0','109'), ('13568','679','111','stackToStack','0','110'), ('13569','679','112','virtualIpAddress','0','111'), ('13570','679','113','mpc','0','112'), ('13571','679','114','ipOverAtm','0','113'), ('13572','679','115','iso88025Fiber','0','114'), ('13573','679','116','tdlc','0','115'), ('13574','679','117','gigabitEthernet','0','116'), ('13575','679','118','hdlc','0','117'), ('13576','679','119','lapf','0','118'), ('13577','679','120','v37','0','119'), ('13578','679','121','x25mlp','0','120'), ('13579','679','122','x25huntGroup','0','121'), ('13580','679','123','trasnpHdlc','0','122'), ('13581','679','124','interleave','0','123'), ('13582','679','125','fast','0','124'), ('13583','679','126','ip','0','125'), ('13584','679','127','docsCableMaclayer','0','126'), ('13585','679','128','docsCableDownstream','0','127'), ('13586','679','129','docsCableUpstream','0','128'), ('13587','679','130','a12MppSwitch','0','129'), ('13588','679','131','tunnel','0','130'), ('13589','679','132','coffee','0','131'), ('13590','679','133','ces','0','132'), ('13591','679','134','atmSubInterface','0','133'), ('13592','679','135','l2vlan','0','134'), ('13593','679','136','l3ipvlan','0','135'), ('13594','679','137','l3ipxvlan','0','136'), ('13595','679','138','digitalPowerline','0','137'), ('13596','679','139','mediaMailOverIp','0','138'), ('13597','679','140','dtm','0','139'), ('13598','679','141','dcn','0','140'), ('13599','679','142','ipForward','0','141'), ('13600','679','143','msdsl','0','142'), ('13601','679','144','ieee1394','0','143'), ('13602','679','145','if-gsn','0','144'), ('13603','679','146','dvbRccMacLayer','0','145'), ('13604','679','147','dvbRccDownstream','0','146'), ('13605','679','148','dvbRccUpstream','0','147'), ('13606','679','149','atmVirtual','0','148'), ('13607','679','150','mplsTunnel','0','149'), ('13608','679','151','srp','0','150'), ('13609','679','152','voiceOverAtm','0','151'), ('13610','679','153','voiceOverFrameRelay','0','152'), ('13611','679','154','idsl','0','153'), ('13612','679','155','compositeLink','0','154'), ('13613','679','156','ss7SigLink','0','155'), ('13614','679','157','propWirelessP2P','0','156'), ('13615','679','158','frForward','0','157'), ('13616','679','159','rfc1483','0','158'), ('13617','679','160','usb','0','159'), ('13618','679','161','ieee8023adLag','0','160'), ('13619','679','162','bgppolicyaccounting','0','161'), ('13620','679','163','frf16MfrBundle','0','162'), ('13621','679','164','h323Gatekeeper','0','163'), ('13622','679','165','h323Proxy','0','164'), ('13623','679','166','mpls','0','165'), ('13624','679','167','mfSigLink','0','166'), ('13625','679','168','hdsl2','0','167'), ('13626','679','169','shdsl','0','168'), ('13627','679','170','ds1FDL','0','169'), ('13628','679','171','pos','0','170'), ('13629','679','172','dvbAsiIn','0','171'), ('13630','679','173','dvbAsiOut','0','172'), ('13631','679','174','plc','0','173'), ('13632','679','175','nfas','0','174'), ('13633','679','176','tr008','0','175'), ('13634','679','177','gr303RDT','0','176'), ('13635','679','178','gr303IDT','0','177'), ('13636','679','179','isup','0','178'), ('13637','679','180','propDocsWirelessMaclayer','0','179'), ('13638','679','181','propDocsWirelessDownstream','0','180'), ('13639','679','182','propDocsWirelessUpstream','0','181'), ('13640','679','183','hiperlan2','0','182'), ('13641','679','184','propBWAp2Mp','0','183'), ('13642','679','185','sonetOverheadChannel','0','184'), ('13643','679','186','digitalWrapperOverheadChannel','0','185'), ('13644','679','187','aal2','0','186'), ('13645','679','188','radioMAC','0','187'), ('13646','679','189','atmRadio','0','188'), ('13647','679','190','imt','0','189'), ('13648','679','191','mvl','0','190'), ('13649','679','192','reachDSL','0','191'), ('13650','679','193','frDlciEndPt','0','192'), ('13651','679','194','atmVciEndPt','0','193'), ('13652','679','195','opticalChannel','0','194'), ('13653','679','196','opticalTransport','0','195'), ('13654','679','197','propAtm','0','196'), ('13655','679','198','voiceOverCable','0','197'), ('13656','679','199','infiniband','0','198'), ('13657','679','200','teLink','0','199'), ('13658','679','201','q2931','0','200'), ('13659','679','202','virtualTg','0','201'), ('13660','679','203','sipTg','0','202'), ('13661','679','204','sipSig','0','203'), ('13662','679','205','docsCableUpstreamChannel','0','204'), ('13663','679','206','econet','0','205'), ('13664','679','207','pon155','0','206'), ('13665','679','208','pon622','0','207'), ('13666','679','209','bridge','0','208'), ('13667','679','210','linegroup','0','209'), ('13668','679','211','voiceEMFGD','0','210'), ('13669','679','212','voiceFGDEANA','0','211'), ('13670','679','213','voiceDID','0','212'), ('13671','679','214','mpegTransport','0','213'), ('13672','679','215','sixToFour','0','214'), ('13673','679','216','gtp','0','215'), ('13674','679','217','pdnEtherLoop1','0','216'), ('13675','679','218','pdnEtherLoop2','0','217'), ('13676','679','219','opticalChannelGroup','0','218'), ('13677','679','220','homepna','0','219'), ('13678','679','221','gfp','0','220'), ('13679','679','222','ciscoISLvlan','0','221'), ('13680','679','223','actelisMetaLOOP','0','222'), ('13681','679','224','fcipLink','0','223'), ('13682','679','225','rpr','0','224'), ('13683','679','226','qam','0','225'), ('13684','679','227','lmp','0','226'), ('13685','679','228','cblVectaStar','0','227'), ('13686','679','229','docsCableMCmtsDownstream','0','228'), ('13687','679','230','adsl2','0','229'), ('13688','679','231','macSecControlledIF','0','230'), ('13689','679','232','macSecUncontrolledIF','0','231'), ('13690','679','233','aviciOpticalEther','0','232'), ('13691','679','234','atmbond','0','233'), ('13692','679','235','voiceFGDOS','0','234'), ('13693','679','236','mocaVersion1','0','235'), ('13694','679','237','ieee80216WMAN','0','236'), ('13695','679','238','adsl2plus','0','237'), ('13696','679','239','dvbRcsMacLayer','0','238'), ('13697','679','240','dvbTdm','0','239'), ('13698','679','241','dvbRcsTdma','0','240'), ('13699','679','242','x86Laps','0','241'), ('13700','679','243','wwanPP','0','242'), ('13701','679','244','wwanPP2','0','243'), ('13702','679','245','voiceEBS','0','244'), ('13703','679','246','ifPwType','0','245'), ('13704','679','247','ilan','0','246'), ('13705','679','248','pip','0','247'), ('13706','679','249','aluELP','0','248'), ('13707','679','250','gpon','0','249'), ('13708','679','251','vdsl2','0','250'), ('13709','679','252','capwapDot11Profile','0','251'), ('13710','679','253','capwapDot11Bss','0','252'), ('13711','679','254','capwapWtpVirtualRadio','0','253'), ('13712','679','255','bits','0','254'), ('13713','679','256','docsCableUpstreamRfPort','0','255'), ('13714','679','257','cableDownstreamRfPort','0','256'), ('13715','679','258','vmwareVirtualNic','0','257'), ('13716','679','259','ieee802154','0','258'), ('13717','679','260','otnOdu','0','259'), ('13718','679','261','otnOtu','0','260'), ('13719','679','262','ifVfiType','0','261'), ('13720','679','263','g9981','0','262'), ('13721','679','264','g9982','0','263'), ('13722','679','265','g9983','0','264'), ('13723','679','266','aluEpon','0','265'), ('13724','679','267','aluEponOnu','0','266'), ('13725','679','268','aluEponPhysicalUni','0','267'), ('13726','679','269','aluEponLogicalLink','0','268'), ('13727','679','270','aluGponOnu','0','269'), ('13728','679','271','aluGponPhysicalUni','0','270'), ('13729','679','272','vmwareNicTeam','0','271'), ('13730','679','277','docsOfdmDownstream','0','272'), ('13731','679','278','docsOfdmaUpstream','0','273'), ('13732','679','279','gfast','0','274'), ('13733','679','280','sdci','0','275'), ('13734','679','281','xboxWireless','0','276'), ('13735','679','282','fastdsl','0','277'), ('13736','679','283','docsCableScte55d1FwdOob','0','278'), ('13737','679','284','docsCableScte55d1RetOob','0','279'), ('13738','679','285','docsCableScte55d2DsOob','0','280'), ('13739','679','286','docsCableScte55d2UsOob','0','281'), ('13740','679','287','docsCableNdf','0','282'), ('13741','679','288','docsCableNdr','0','283'), ('13742','679','289','ptm','0','284'), ('13743','679','290','ghn','0','285'), ('13744','680','0','Down','0','0'), ('13745','680','1','Up','0','1'), ('13746','681','0','not available','0','0'), ('13747','681','1','available','0','1'), ('13748','681','2','unknown','0','2'), ('13749','682','1','up','0','0'), ('13750','682','2','down','0','1'), ('13751','682','4','unknown','0','2'), ('13752','682','5','dormant','0','3'), ('13753','682','6','notPresent','0','4'), ('13754','682','7','lowerLayerDown','0','5'), ('13755','683','1','other','0','0'), ('13756','683','2','regular1822','0','1'), ('13757','683','3','hdh1822','0','2'), ('13758','683','4','ddnX25','0','3'), ('13759','683','5','rfc877x25','0','4'), ('13760','683','6','ethernetCsmacd','0','5'), ('13761','683','7','iso88023Csmacd','0','6'), ('13762','683','8','iso88024TokenBus','0','7'), ('13763','683','9','iso88025TokenRing','0','8'), ('13764','683','10','iso88026Man','0','9'), ('13765','683','11','starLan','0','10'), ('13766','683','12','proteon10Mbit','0','11'), ('13767','683','13','proteon80Mbit','0','12'), ('13768','683','14','hyperchannel','0','13'), ('13769','683','15','fddi','0','14'), ('13770','683','16','lapb','0','15'), ('13771','683','17','sdlc','0','16'), ('13772','683','18','ds1','0','17'), ('13773','683','19','e1','0','18'), ('13774','683','20','basicISDN','0','19'), ('13775','683','21','primaryISDN','0','20'), ('13776','683','22','propPointToPointSerial','0','21'), ('13777','683','23','ppp','0','22'), ('13778','683','24','softwareLoopback','0','23'), ('13779','683','25','eon','0','24'), ('13780','683','26','ethernet3Mbit','0','25'), ('13781','683','27','nsip','0','26'), ('13782','683','28','slip','0','27'), ('13783','683','29','ultra','0','28'), ('13784','683','30','ds3','0','29'), ('13785','683','31','sip','0','30'), ('13786','683','32','frameRelay','0','31'), ('13787','683','33','rs232','0','32'), ('13788','683','34','para','0','33'), ('13789','683','35','arcnet','0','34'), ('13790','683','36','arcnetPlus','0','35'), ('13791','683','37','atm','0','36'), ('13792','683','38','miox25','0','37'), ('13793','683','39','sonet','0','38'), ('13794','683','40','x25ple','0','39'), ('13795','683','41','iso88022llc','0','40'), ('13796','683','42','localTalk','0','41'), ('13797','683','43','smdsDxi','0','42'), ('13798','683','44','frameRelayService','0','43'), ('13799','683','45','v35','0','44'), ('13800','683','46','hssi','0','45'), ('13801','683','47','hippi','0','46'), ('13802','683','48','modem','0','47'), ('13803','683','49','aal5','0','48'), ('13804','683','50','sonetPath','0','49'), ('13805','683','51','sonetVT','0','50'), ('13806','683','52','smdsIcip','0','51'), ('13807','683','53','propVirtual','0','52'), ('13808','683','54','propMultiplexor','0','53'), ('13809','683','55','ieee80212','0','54'), ('13810','683','56','fibreChannel','0','55'), ('13811','683','57','hippiInterface','0','56'), ('13812','683','58','frameRelayInterconnect','0','57'), ('13813','683','59','aflane8023','0','58'), ('13814','683','60','aflane8025','0','59'), ('13815','683','61','cctEmul','0','60'), ('13816','683','62','fastEther','0','61'), ('13817','683','63','isdn','0','62'), ('13818','683','64','v11','0','63'), ('13819','683','65','v36','0','64'), ('13820','683','66','g703at64k','0','65'), ('13821','683','67','g703at2mb','0','66'), ('13822','683','68','qllc','0','67'), ('13823','683','69','fastEtherFX','0','68'), ('13824','683','70','channel','0','69'), ('13825','683','71','ieee80211','0','70'), ('13826','683','72','ibm370parChan','0','71'), ('13827','683','73','escon','0','72'), ('13828','683','74','dlsw','0','73'), ('13829','683','75','isdns','0','74'), ('13830','683','76','isdnu','0','75'), ('13831','683','77','lapd','0','76'), ('13832','683','78','ipSwitch','0','77'), ('13833','683','79','rsrb','0','78'), ('13834','683','80','atmLogical','0','79'), ('13835','683','81','ds0','0','80'), ('13836','683','82','ds0Bundle','0','81'), ('13837','683','83','bsc','0','82'), ('13838','683','84','async','0','83'), ('13839','683','85','cnr','0','84'), ('13840','683','86','iso88025Dtr','0','85'), ('13841','683','87','eplrs','0','86'), ('13842','683','88','arap','0','87'), ('13843','683','89','propCnls','0','88'), ('13844','683','90','hostPad','0','89'), ('13845','683','91','termPad','0','90'), ('13846','683','92','frameRelayMPI','0','91'), ('13847','683','93','x213','0','92'), ('13848','683','94','adsl','0','93'), ('13849','683','95','radsl','0','94'), ('13850','683','96','sdsl','0','95'), ('13851','683','97','vdsl','0','96'), ('13852','683','98','iso88025CRFPInt','0','97'), ('13853','683','99','myrinet','0','98'), ('13854','683','100','voiceEM','0','99'), ('13855','683','101','voiceFXO','0','100'), ('13856','683','102','voiceFXS','0','101'), ('13857','683','103','voiceEncap','0','102'), ('13858','683','104','voiceOverIp','0','103'), ('13859','683','105','atmDxi','0','104'), ('13860','683','106','atmFuni','0','105'), ('13861','683','107','atmIma','0','106'), ('13862','683','108','pppMultilinkBundle','0','107'), ('13863','683','109','ipOverCdlc','0','108'), ('13864','683','110','ipOverClaw','0','109'), ('13865','683','111','stackToStack','0','110'), ('13866','683','112','virtualIpAddress','0','111'), ('13867','683','113','mpc','0','112'), ('13868','683','114','ipOverAtm','0','113'), ('13869','683','115','iso88025Fiber','0','114'), ('13870','683','116','tdlc','0','115'), ('13871','683','117','gigabitEthernet','0','116'), ('13872','683','118','hdlc','0','117'), ('13873','683','119','lapf','0','118'), ('13874','683','120','v37','0','119'), ('13875','683','121','x25mlp','0','120'), ('13876','683','122','x25huntGroup','0','121'), ('13877','683','123','trasnpHdlc','0','122'), ('13878','683','124','interleave','0','123'), ('13879','683','125','fast','0','124'), ('13880','683','126','ip','0','125'), ('13881','683','127','docsCableMaclayer','0','126'), ('13882','683','128','docsCableDownstream','0','127'), ('13883','683','129','docsCableUpstream','0','128'), ('13884','683','130','a12MppSwitch','0','129'), ('13885','683','131','tunnel','0','130'), ('13886','683','132','coffee','0','131'), ('13887','683','133','ces','0','132'), ('13888','683','134','atmSubInterface','0','133'), ('13889','683','135','l2vlan','0','134'), ('13890','683','136','l3ipvlan','0','135'), ('13891','683','137','l3ipxvlan','0','136'), ('13892','683','138','digitalPowerline','0','137'), ('13893','683','139','mediaMailOverIp','0','138'), ('13894','683','140','dtm','0','139'), ('13895','683','141','dcn','0','140'), ('13896','683','142','ipForward','0','141'), ('13897','683','143','msdsl','0','142'), ('13898','683','144','ieee1394','0','143'), ('13899','683','145','if-gsn','0','144'), ('13900','683','146','dvbRccMacLayer','0','145'), ('13901','683','147','dvbRccDownstream','0','146'), ('13902','683','148','dvbRccUpstream','0','147'), ('13903','683','149','atmVirtual','0','148'), ('13904','683','150','mplsTunnel','0','149'), ('13905','683','151','srp','0','150'), ('13906','683','152','voiceOverAtm','0','151'), ('13907','683','153','voiceOverFrameRelay','0','152'), ('13908','683','154','idsl','0','153'), ('13909','683','155','compositeLink','0','154'), ('13910','683','156','ss7SigLink','0','155'), ('13911','683','157','propWirelessP2P','0','156'), ('13912','683','158','frForward','0','157'), ('13913','683','159','rfc1483','0','158'), ('13914','683','160','usb','0','159'), ('13915','683','161','ieee8023adLag','0','160'), ('13916','683','162','bgppolicyaccounting','0','161'), ('13917','683','163','frf16MfrBundle','0','162'), ('13918','683','164','h323Gatekeeper','0','163'), ('13919','683','165','h323Proxy','0','164'), ('13920','683','166','mpls','0','165'), ('13921','683','167','mfSigLink','0','166'), ('13922','683','168','hdsl2','0','167'), ('13923','683','169','shdsl','0','168'), ('13924','683','170','ds1FDL','0','169'), ('13925','683','171','pos','0','170'), ('13926','683','172','dvbAsiIn','0','171'), ('13927','683','173','dvbAsiOut','0','172'), ('13928','683','174','plc','0','173'), ('13929','683','175','nfas','0','174'), ('13930','683','176','tr008','0','175'), ('13931','683','177','gr303RDT','0','176'), ('13932','683','178','gr303IDT','0','177'), ('13933','683','179','isup','0','178'), ('13934','683','180','propDocsWirelessMaclayer','0','179'), ('13935','683','181','propDocsWirelessDownstream','0','180'), ('13936','683','182','propDocsWirelessUpstream','0','181'), ('13937','683','183','hiperlan2','0','182'), ('13938','683','184','propBWAp2Mp','0','183'), ('13939','683','185','sonetOverheadChannel','0','184'), ('13940','683','186','digitalWrapperOverheadChannel','0','185'), ('13941','683','187','aal2','0','186'), ('13942','683','188','radioMAC','0','187'), ('13943','683','189','atmRadio','0','188'), ('13944','683','190','imt','0','189'), ('13945','683','191','mvl','0','190'), ('13946','683','192','reachDSL','0','191'), ('13947','683','193','frDlciEndPt','0','192'), ('13948','683','194','atmVciEndPt','0','193'), ('13949','683','195','opticalChannel','0','194'), ('13950','683','196','opticalTransport','0','195'), ('13951','683','197','propAtm','0','196'), ('13952','683','198','voiceOverCable','0','197'), ('13953','683','199','infiniband','0','198'), ('13954','683','200','teLink','0','199'), ('13955','683','201','q2931','0','200'), ('13956','683','202','virtualTg','0','201'), ('13957','683','203','sipTg','0','202'), ('13958','683','204','sipSig','0','203'), ('13959','683','205','docsCableUpstreamChannel','0','204'), ('13960','683','206','econet','0','205'), ('13961','683','207','pon155','0','206'), ('13962','683','208','pon622','0','207'), ('13963','683','209','bridge','0','208'), ('13964','683','210','linegroup','0','209'), ('13965','683','211','voiceEMFGD','0','210'), ('13966','683','212','voiceFGDEANA','0','211'), ('13967','683','213','voiceDID','0','212'), ('13968','683','214','mpegTransport','0','213'), ('13969','683','215','sixToFour','0','214'), ('13970','683','216','gtp','0','215'), ('13971','683','217','pdnEtherLoop1','0','216'), ('13972','683','218','pdnEtherLoop2','0','217'), ('13973','683','219','opticalChannelGroup','0','218'), ('13974','683','220','homepna','0','219'), ('13975','683','221','gfp','0','220'), ('13976','683','222','ciscoISLvlan','0','221'), ('13977','683','223','actelisMetaLOOP','0','222'), ('13978','683','224','fcipLink','0','223'), ('13979','683','225','rpr','0','224'), ('13980','683','226','qam','0','225'), ('13981','683','227','lmp','0','226'), ('13982','683','228','cblVectaStar','0','227'), ('13983','683','229','docsCableMCmtsDownstream','0','228'), ('13984','683','230','adsl2','0','229'), ('13985','683','231','macSecControlledIF','0','230'), ('13986','683','232','macSecUncontrolledIF','0','231'), ('13987','683','233','aviciOpticalEther','0','232'), ('13988','683','234','atmbond','0','233'), ('13989','683','235','voiceFGDOS','0','234'), ('13990','683','236','mocaVersion1','0','235'), ('13991','683','237','ieee80216WMAN','0','236'), ('13992','683','238','adsl2plus','0','237'), ('13993','683','239','dvbRcsMacLayer','0','238'), ('13994','683','240','dvbTdm','0','239'), ('13995','683','241','dvbRcsTdma','0','240'), ('13996','683','242','x86Laps','0','241'), ('13997','683','243','wwanPP','0','242'), ('13998','683','244','wwanPP2','0','243'), ('13999','683','245','voiceEBS','0','244'), ('14000','683','246','ifPwType','0','245'), ('14001','683','247','ilan','0','246'), ('14002','683','248','pip','0','247'), ('14003','683','249','aluELP','0','248'), ('14004','683','250','gpon','0','249'), ('14005','683','251','vdsl2','0','250'), ('14006','683','252','capwapDot11Profile','0','251'), ('14007','683','253','capwapDot11Bss','0','252'), ('14008','683','254','capwapWtpVirtualRadio','0','253'), ('14009','683','255','bits','0','254'), ('14010','683','256','docsCableUpstreamRfPort','0','255'), ('14011','683','257','cableDownstreamRfPort','0','256'), ('14012','683','258','vmwareVirtualNic','0','257'), ('14013','683','259','ieee802154','0','258'), ('14014','683','260','otnOdu','0','259'), ('14015','683','261','otnOtu','0','260'), ('14016','683','262','ifVfiType','0','261'), ('14017','683','263','g9981','0','262'), ('14018','683','264','g9982','0','263'), ('14019','683','265','g9983','0','264'), ('14020','683','266','aluEpon','0','265'), ('14021','683','267','aluEponOnu','0','266'), ('14022','683','268','aluEponPhysicalUni','0','267'), ('14023','683','269','aluEponLogicalLink','0','268'), ('14024','683','270','aluGponOnu','0','269'), ('14025','683','271','aluGponPhysicalUni','0','270'), ('14026','683','272','vmwareNicTeam','0','271'), ('14027','683','277','docsOfdmDownstream','0','272'), ('14028','683','278','docsOfdmaUpstream','0','273'), ('14029','683','279','gfast','0','274'), ('14030','683','280','sdci','0','275'), ('14031','683','281','xboxWireless','0','276'), ('14032','683','282','fastdsl','0','277'), ('14033','683','283','docsCableScte55d1FwdOob','0','278'), ('14034','683','284','docsCableScte55d1RetOob','0','279'), ('14035','683','285','docsCableScte55d2DsOob','0','280'), ('14036','683','286','docsCableScte55d2UsOob','0','281'), ('14037','683','287','docsCableNdf','0','282'), ('14038','683','288','docsCableNdr','0','283'), ('14039','683','289','ptm','0','284'), ('14040','683','290','ghn','0','285'), ('14041','684','0','Down','0','0'), ('14042','684','1','Up','0','1'), ('14043','685','0','not available','0','0'), ('14044','685','1','available','0','1'), ('14045','685','2','unknown','0','2'), ('14046','686','1','up','0','0'), ('14047','686','2','down','0','1'), ('14048','686','4','unknown','0','2'), ('14049','686','5','dormant','0','3'), ('14050','686','6','notPresent','0','4'), ('14051','686','7','lowerLayerDown','0','5'), ('14052','687','1','other','0','0'), ('14053','687','2','regular1822','0','1'), ('14054','687','3','hdh1822','0','2'), ('14055','687','4','ddnX25','0','3'), ('14056','687','5','rfc877x25','0','4'), ('14057','687','6','ethernetCsmacd','0','5'), ('14058','687','7','iso88023Csmacd','0','6'), ('14059','687','8','iso88024TokenBus','0','7'), ('14060','687','9','iso88025TokenRing','0','8'), ('14061','687','10','iso88026Man','0','9'), ('14062','687','11','starLan','0','10'), ('14063','687','12','proteon10Mbit','0','11'), ('14064','687','13','proteon80Mbit','0','12'), ('14065','687','14','hyperchannel','0','13'), ('14066','687','15','fddi','0','14'), ('14067','687','16','lapb','0','15'), ('14068','687','17','sdlc','0','16'), ('14069','687','18','ds1','0','17'), ('14070','687','19','e1','0','18'), ('14071','687','20','basicISDN','0','19'), ('14072','687','21','primaryISDN','0','20'), ('14073','687','22','propPointToPointSerial','0','21'), ('14074','687','23','ppp','0','22'), ('14075','687','24','softwareLoopback','0','23'), ('14076','687','25','eon','0','24'), ('14077','687','26','ethernet3Mbit','0','25'), ('14078','687','27','nsip','0','26'), ('14079','687','28','slip','0','27'), ('14080','687','29','ultra','0','28'), ('14081','687','30','ds3','0','29'), ('14082','687','31','sip','0','30'), ('14083','687','32','frameRelay','0','31'), ('14084','687','33','rs232','0','32'), ('14085','687','34','para','0','33'), ('14086','687','35','arcnet','0','34'), ('14087','687','36','arcnetPlus','0','35'), ('14088','687','37','atm','0','36'), ('14089','687','38','miox25','0','37'), ('14090','687','39','sonet','0','38'), ('14091','687','40','x25ple','0','39'), ('14092','687','41','iso88022llc','0','40'), ('14093','687','42','localTalk','0','41'), ('14094','687','43','smdsDxi','0','42'), ('14095','687','44','frameRelayService','0','43'), ('14096','687','45','v35','0','44'), ('14097','687','46','hssi','0','45'), ('14098','687','47','hippi','0','46'), ('14099','687','48','modem','0','47'), ('14100','687','49','aal5','0','48'), ('14101','687','50','sonetPath','0','49'), ('14102','687','51','sonetVT','0','50'), ('14103','687','52','smdsIcip','0','51'), ('14104','687','53','propVirtual','0','52'), ('14105','687','54','propMultiplexor','0','53'), ('14106','687','55','ieee80212','0','54'), ('14107','687','56','fibreChannel','0','55'), ('14108','687','57','hippiInterface','0','56'), ('14109','687','58','frameRelayInterconnect','0','57'), ('14110','687','59','aflane8023','0','58'), ('14111','687','60','aflane8025','0','59'), ('14112','687','61','cctEmul','0','60'), ('14113','687','62','fastEther','0','61'), ('14114','687','63','isdn','0','62'), ('14115','687','64','v11','0','63'), ('14116','687','65','v36','0','64'), ('14117','687','66','g703at64k','0','65'), ('14118','687','67','g703at2mb','0','66'), ('14119','687','68','qllc','0','67'), ('14120','687','69','fastEtherFX','0','68'), ('14121','687','70','channel','0','69'), ('14122','687','71','ieee80211','0','70'), ('14123','687','72','ibm370parChan','0','71'), ('14124','687','73','escon','0','72'), ('14125','687','74','dlsw','0','73'), ('14126','687','75','isdns','0','74'), ('14127','687','76','isdnu','0','75'), ('14128','687','77','lapd','0','76'), ('14129','687','78','ipSwitch','0','77'), ('14130','687','79','rsrb','0','78'), ('14131','687','80','atmLogical','0','79'), ('14132','687','81','ds0','0','80'), ('14133','687','82','ds0Bundle','0','81'), ('14134','687','83','bsc','0','82'), ('14135','687','84','async','0','83'), ('14136','687','85','cnr','0','84'), ('14137','687','86','iso88025Dtr','0','85'), ('14138','687','87','eplrs','0','86'), ('14139','687','88','arap','0','87'), ('14140','687','89','propCnls','0','88'), ('14141','687','90','hostPad','0','89'), ('14142','687','91','termPad','0','90'), ('14143','687','92','frameRelayMPI','0','91'), ('14144','687','93','x213','0','92'), ('14145','687','94','adsl','0','93'), ('14146','687','95','radsl','0','94'), ('14147','687','96','sdsl','0','95'), ('14148','687','97','vdsl','0','96'), ('14149','687','98','iso88025CRFPInt','0','97'), ('14150','687','99','myrinet','0','98'), ('14151','687','100','voiceEM','0','99'), ('14152','687','101','voiceFXO','0','100'), ('14153','687','102','voiceFXS','0','101'), ('14154','687','103','voiceEncap','0','102'), ('14155','687','104','voiceOverIp','0','103'), ('14156','687','105','atmDxi','0','104'), ('14157','687','106','atmFuni','0','105'), ('14158','687','107','atmIma','0','106'), ('14159','687','108','pppMultilinkBundle','0','107'), ('14160','687','109','ipOverCdlc','0','108'), ('14161','687','110','ipOverClaw','0','109'), ('14162','687','111','stackToStack','0','110'), ('14163','687','112','virtualIpAddress','0','111'), ('14164','687','113','mpc','0','112'), ('14165','687','114','ipOverAtm','0','113'), ('14166','687','115','iso88025Fiber','0','114'), ('14167','687','116','tdlc','0','115'), ('14168','687','117','gigabitEthernet','0','116'), ('14169','687','118','hdlc','0','117'), ('14170','687','119','lapf','0','118'), ('14171','687','120','v37','0','119'), ('14172','687','121','x25mlp','0','120'), ('14173','687','122','x25huntGroup','0','121'), ('14174','687','123','trasnpHdlc','0','122'), ('14175','687','124','interleave','0','123'), ('14176','687','125','fast','0','124'), ('14177','687','126','ip','0','125'), ('14178','687','127','docsCableMaclayer','0','126'), ('14179','687','128','docsCableDownstream','0','127'), ('14180','687','129','docsCableUpstream','0','128'), ('14181','687','130','a12MppSwitch','0','129'), ('14182','687','131','tunnel','0','130'), ('14183','687','132','coffee','0','131'), ('14184','687','133','ces','0','132'), ('14185','687','134','atmSubInterface','0','133'), ('14186','687','135','l2vlan','0','134'), ('14187','687','136','l3ipvlan','0','135'), ('14188','687','137','l3ipxvlan','0','136'), ('14189','687','138','digitalPowerline','0','137'), ('14190','687','139','mediaMailOverIp','0','138'), ('14191','687','140','dtm','0','139'), ('14192','687','141','dcn','0','140'), ('14193','687','142','ipForward','0','141'), ('14194','687','143','msdsl','0','142'), ('14195','687','144','ieee1394','0','143'), ('14196','687','145','if-gsn','0','144'), ('14197','687','146','dvbRccMacLayer','0','145'), ('14198','687','147','dvbRccDownstream','0','146'), ('14199','687','148','dvbRccUpstream','0','147'), ('14200','687','149','atmVirtual','0','148'), ('14201','687','150','mplsTunnel','0','149'), ('14202','687','151','srp','0','150'), ('14203','687','152','voiceOverAtm','0','151'), ('14204','687','153','voiceOverFrameRelay','0','152'), ('14205','687','154','idsl','0','153'), ('14206','687','155','compositeLink','0','154'), ('14207','687','156','ss7SigLink','0','155'), ('14208','687','157','propWirelessP2P','0','156'), ('14209','687','158','frForward','0','157'), ('14210','687','159','rfc1483','0','158'), ('14211','687','160','usb','0','159'), ('14212','687','161','ieee8023adLag','0','160'), ('14213','687','162','bgppolicyaccounting','0','161'), ('14214','687','163','frf16MfrBundle','0','162'), ('14215','687','164','h323Gatekeeper','0','163'), ('14216','687','165','h323Proxy','0','164'), ('14217','687','166','mpls','0','165'), ('14218','687','167','mfSigLink','0','166'), ('14219','687','168','hdsl2','0','167'), ('14220','687','169','shdsl','0','168'), ('14221','687','170','ds1FDL','0','169'), ('14222','687','171','pos','0','170'), ('14223','687','172','dvbAsiIn','0','171'), ('14224','687','173','dvbAsiOut','0','172'), ('14225','687','174','plc','0','173'), ('14226','687','175','nfas','0','174'), ('14227','687','176','tr008','0','175'), ('14228','687','177','gr303RDT','0','176'), ('14229','687','178','gr303IDT','0','177'), ('14230','687','179','isup','0','178'), ('14231','687','180','propDocsWirelessMaclayer','0','179'), ('14232','687','181','propDocsWirelessDownstream','0','180'), ('14233','687','182','propDocsWirelessUpstream','0','181'), ('14234','687','183','hiperlan2','0','182'), ('14235','687','184','propBWAp2Mp','0','183'), ('14236','687','185','sonetOverheadChannel','0','184'), ('14237','687','186','digitalWrapperOverheadChannel','0','185'), ('14238','687','187','aal2','0','186'), ('14239','687','188','radioMAC','0','187'), ('14240','687','189','atmRadio','0','188'), ('14241','687','190','imt','0','189'), ('14242','687','191','mvl','0','190'), ('14243','687','192','reachDSL','0','191'), ('14244','687','193','frDlciEndPt','0','192'), ('14245','687','194','atmVciEndPt','0','193'), ('14246','687','195','opticalChannel','0','194'), ('14247','687','196','opticalTransport','0','195'), ('14248','687','197','propAtm','0','196'), ('14249','687','198','voiceOverCable','0','197'), ('14250','687','199','infiniband','0','198'), ('14251','687','200','teLink','0','199'), ('14252','687','201','q2931','0','200'), ('14253','687','202','virtualTg','0','201'), ('14254','687','203','sipTg','0','202'), ('14255','687','204','sipSig','0','203'), ('14256','687','205','docsCableUpstreamChannel','0','204'), ('14257','687','206','econet','0','205'), ('14258','687','207','pon155','0','206'), ('14259','687','208','pon622','0','207'), ('14260','687','209','bridge','0','208'), ('14261','687','210','linegroup','0','209'), ('14262','687','211','voiceEMFGD','0','210'), ('14263','687','212','voiceFGDEANA','0','211'), ('14264','687','213','voiceDID','0','212'), ('14265','687','214','mpegTransport','0','213'), ('14266','687','215','sixToFour','0','214'), ('14267','687','216','gtp','0','215'), ('14268','687','217','pdnEtherLoop1','0','216'), ('14269','687','218','pdnEtherLoop2','0','217'), ('14270','687','219','opticalChannelGroup','0','218'), ('14271','687','220','homepna','0','219'), ('14272','687','221','gfp','0','220'), ('14273','687','222','ciscoISLvlan','0','221'), ('14274','687','223','actelisMetaLOOP','0','222'), ('14275','687','224','fcipLink','0','223'), ('14276','687','225','rpr','0','224'), ('14277','687','226','qam','0','225'), ('14278','687','227','lmp','0','226'), ('14279','687','228','cblVectaStar','0','227'), ('14280','687','229','docsCableMCmtsDownstream','0','228'), ('14281','687','230','adsl2','0','229'), ('14282','687','231','macSecControlledIF','0','230'), ('14283','687','232','macSecUncontrolledIF','0','231'), ('14284','687','233','aviciOpticalEther','0','232'), ('14285','687','234','atmbond','0','233'), ('14286','687','235','voiceFGDOS','0','234'), ('14287','687','236','mocaVersion1','0','235'), ('14288','687','237','ieee80216WMAN','0','236'), ('14289','687','238','adsl2plus','0','237'), ('14290','687','239','dvbRcsMacLayer','0','238'), ('14291','687','240','dvbTdm','0','239'), ('14292','687','241','dvbRcsTdma','0','240'), ('14293','687','242','x86Laps','0','241'), ('14294','687','243','wwanPP','0','242'), ('14295','687','244','wwanPP2','0','243'), ('14296','687','245','voiceEBS','0','244'), ('14297','687','246','ifPwType','0','245'), ('14298','687','247','ilan','0','246'), ('14299','687','248','pip','0','247'), ('14300','687','249','aluELP','0','248'), ('14301','687','250','gpon','0','249'), ('14302','687','251','vdsl2','0','250'), ('14303','687','252','capwapDot11Profile','0','251'), ('14304','687','253','capwapDot11Bss','0','252'), ('14305','687','254','capwapWtpVirtualRadio','0','253'), ('14306','687','255','bits','0','254'), ('14307','687','256','docsCableUpstreamRfPort','0','255'), ('14308','687','257','cableDownstreamRfPort','0','256'), ('14309','687','258','vmwareVirtualNic','0','257'), ('14310','687','259','ieee802154','0','258'), ('14311','687','260','otnOdu','0','259'), ('14312','687','261','otnOtu','0','260'), ('14313','687','262','ifVfiType','0','261'), ('14314','687','263','g9981','0','262'), ('14315','687','264','g9982','0','263'), ('14316','687','265','g9983','0','264'), ('14317','687','266','aluEpon','0','265'), ('14318','687','267','aluEponOnu','0','266'), ('14319','687','268','aluEponPhysicalUni','0','267'), ('14320','687','269','aluEponLogicalLink','0','268'), ('14321','687','270','aluGponOnu','0','269'), ('14322','687','271','aluGponPhysicalUni','0','270'), ('14323','687','272','vmwareNicTeam','0','271'), ('14324','687','277','docsOfdmDownstream','0','272'), ('14325','687','278','docsOfdmaUpstream','0','273'), ('14326','687','279','gfast','0','274'), ('14327','687','280','sdci','0','275'), ('14328','687','281','xboxWireless','0','276'), ('14329','687','282','fastdsl','0','277'), ('14330','687','283','docsCableScte55d1FwdOob','0','278'), ('14331','687','284','docsCableScte55d1RetOob','0','279'), ('14332','687','285','docsCableScte55d2DsOob','0','280'), ('14333','687','286','docsCableScte55d2UsOob','0','281'), ('14334','687','287','docsCableNdf','0','282'), ('14335','687','288','docsCableNdr','0','283'), ('14336','687','289','ptm','0','284'), ('14337','687','290','ghn','0','285'), ('14338','688','0','Down','0','0'), ('14339','688','1','Up','0','1'), ('14340','689','0','not available','0','0'), ('14341','689','1','available','0','1'), ('14342','689','2','unknown','0','2'), ('14343','690','1','up','0','0'), ('14344','690','2','down','0','1'), ('14345','690','4','unknown','0','2'), ('14346','690','5','dormant','0','3'), ('14347','690','6','notPresent','0','4'), ('14348','690','7','lowerLayerDown','0','5'), ('14349','691','1','other','0','0'), ('14350','691','2','regular1822','0','1'), ('14351','691','3','hdh1822','0','2'), ('14352','691','4','ddnX25','0','3'), ('14353','691','5','rfc877x25','0','4'), ('14354','691','6','ethernetCsmacd','0','5'), ('14355','691','7','iso88023Csmacd','0','6'), ('14356','691','8','iso88024TokenBus','0','7'), ('14357','691','9','iso88025TokenRing','0','8'), ('14358','691','10','iso88026Man','0','9'), ('14359','691','11','starLan','0','10'), ('14360','691','12','proteon10Mbit','0','11'), ('14361','691','13','proteon80Mbit','0','12'), ('14362','691','14','hyperchannel','0','13'), ('14363','691','15','fddi','0','14'), ('14364','691','16','lapb','0','15'), ('14365','691','17','sdlc','0','16'), ('14366','691','18','ds1','0','17'), ('14367','691','19','e1','0','18'), ('14368','691','20','basicISDN','0','19'), ('14369','691','21','primaryISDN','0','20'), ('14370','691','22','propPointToPointSerial','0','21'), ('14371','691','23','ppp','0','22'), ('14372','691','24','softwareLoopback','0','23'), ('14373','691','25','eon','0','24'), ('14374','691','26','ethernet3Mbit','0','25'), ('14375','691','27','nsip','0','26'), ('14376','691','28','slip','0','27'), ('14377','691','29','ultra','0','28'), ('14378','691','30','ds3','0','29'), ('14379','691','31','sip','0','30'), ('14380','691','32','frameRelay','0','31'), ('14381','691','33','rs232','0','32'), ('14382','691','34','para','0','33'), ('14383','691','35','arcnet','0','34'), ('14384','691','36','arcnetPlus','0','35'), ('14385','691','37','atm','0','36'), ('14386','691','38','miox25','0','37'), ('14387','691','39','sonet','0','38'), ('14388','691','40','x25ple','0','39'), ('14389','691','41','iso88022llc','0','40'), ('14390','691','42','localTalk','0','41'), ('14391','691','43','smdsDxi','0','42'), ('14392','691','44','frameRelayService','0','43'), ('14393','691','45','v35','0','44'), ('14394','691','46','hssi','0','45'), ('14395','691','47','hippi','0','46'), ('14396','691','48','modem','0','47'), ('14397','691','49','aal5','0','48'), ('14398','691','50','sonetPath','0','49'), ('14399','691','51','sonetVT','0','50'), ('14400','691','52','smdsIcip','0','51'), ('14401','691','53','propVirtual','0','52'), ('14402','691','54','propMultiplexor','0','53'), ('14403','691','55','ieee80212','0','54'), ('14404','691','56','fibreChannel','0','55'), ('14405','691','57','hippiInterface','0','56'), ('14406','691','58','frameRelayInterconnect','0','57'), ('14407','691','59','aflane8023','0','58'), ('14408','691','60','aflane8025','0','59'), ('14409','691','61','cctEmul','0','60'), ('14410','691','62','fastEther','0','61'), ('14411','691','63','isdn','0','62'), ('14412','691','64','v11','0','63'), ('14413','691','65','v36','0','64'), ('14414','691','66','g703at64k','0','65'), ('14415','691','67','g703at2mb','0','66'), ('14416','691','68','qllc','0','67'), ('14417','691','69','fastEtherFX','0','68'), ('14418','691','70','channel','0','69'), ('14419','691','71','ieee80211','0','70'), ('14420','691','72','ibm370parChan','0','71'), ('14421','691','73','escon','0','72'), ('14422','691','74','dlsw','0','73'), ('14423','691','75','isdns','0','74'), ('14424','691','76','isdnu','0','75'), ('14425','691','77','lapd','0','76'), ('14426','691','78','ipSwitch','0','77'), ('14427','691','79','rsrb','0','78'), ('14428','691','80','atmLogical','0','79'), ('14429','691','81','ds0','0','80'), ('14430','691','82','ds0Bundle','0','81'), ('14431','691','83','bsc','0','82'), ('14432','691','84','async','0','83'), ('14433','691','85','cnr','0','84'), ('14434','691','86','iso88025Dtr','0','85'), ('14435','691','87','eplrs','0','86'), ('14436','691','88','arap','0','87'), ('14437','691','89','propCnls','0','88'), ('14438','691','90','hostPad','0','89'), ('14439','691','91','termPad','0','90'), ('14440','691','92','frameRelayMPI','0','91'), ('14441','691','93','x213','0','92'), ('14442','691','94','adsl','0','93'), ('14443','691','95','radsl','0','94'), ('14444','691','96','sdsl','0','95'), ('14445','691','97','vdsl','0','96'), ('14446','691','98','iso88025CRFPInt','0','97'), ('14447','691','99','myrinet','0','98'), ('14448','691','100','voiceEM','0','99'), ('14449','691','101','voiceFXO','0','100'), ('14450','691','102','voiceFXS','0','101'), ('14451','691','103','voiceEncap','0','102'), ('14452','691','104','voiceOverIp','0','103'), ('14453','691','105','atmDxi','0','104'), ('14454','691','106','atmFuni','0','105'), ('14455','691','107','atmIma','0','106'), ('14456','691','108','pppMultilinkBundle','0','107'), ('14457','691','109','ipOverCdlc','0','108'), ('14458','691','110','ipOverClaw','0','109'), ('14459','691','111','stackToStack','0','110'), ('14460','691','112','virtualIpAddress','0','111'), ('14461','691','113','mpc','0','112'), ('14462','691','114','ipOverAtm','0','113'), ('14463','691','115','iso88025Fiber','0','114'), ('14464','691','116','tdlc','0','115'), ('14465','691','117','gigabitEthernet','0','116'), ('14466','691','118','hdlc','0','117'), ('14467','691','119','lapf','0','118'), ('14468','691','120','v37','0','119'), ('14469','691','121','x25mlp','0','120'), ('14470','691','122','x25huntGroup','0','121'), ('14471','691','123','trasnpHdlc','0','122'), ('14472','691','124','interleave','0','123'), ('14473','691','125','fast','0','124'), ('14474','691','126','ip','0','125'), ('14475','691','127','docsCableMaclayer','0','126'), ('14476','691','128','docsCableDownstream','0','127'), ('14477','691','129','docsCableUpstream','0','128'), ('14478','691','130','a12MppSwitch','0','129'), ('14479','691','131','tunnel','0','130'), ('14480','691','132','coffee','0','131'), ('14481','691','133','ces','0','132'), ('14482','691','134','atmSubInterface','0','133'), ('14483','691','135','l2vlan','0','134'), ('14484','691','136','l3ipvlan','0','135'), ('14485','691','137','l3ipxvlan','0','136'), ('14486','691','138','digitalPowerline','0','137'), ('14487','691','139','mediaMailOverIp','0','138'), ('14488','691','140','dtm','0','139'), ('14489','691','141','dcn','0','140'), ('14490','691','142','ipForward','0','141'), ('14491','691','143','msdsl','0','142'), ('14492','691','144','ieee1394','0','143'), ('14493','691','145','if-gsn','0','144'), ('14494','691','146','dvbRccMacLayer','0','145'), ('14495','691','147','dvbRccDownstream','0','146'), ('14496','691','148','dvbRccUpstream','0','147'), ('14497','691','149','atmVirtual','0','148'), ('14498','691','150','mplsTunnel','0','149'), ('14499','691','151','srp','0','150'), ('14500','691','152','voiceOverAtm','0','151'), ('14501','691','153','voiceOverFrameRelay','0','152'), ('14502','691','154','idsl','0','153'), ('14503','691','155','compositeLink','0','154'), ('14504','691','156','ss7SigLink','0','155'), ('14505','691','157','propWirelessP2P','0','156'), ('14506','691','158','frForward','0','157'), ('14507','691','159','rfc1483','0','158'), ('14508','691','160','usb','0','159'), ('14509','691','161','ieee8023adLag','0','160'), ('14510','691','162','bgppolicyaccounting','0','161'), ('14511','691','163','frf16MfrBundle','0','162'), ('14512','691','164','h323Gatekeeper','0','163'), ('14513','691','165','h323Proxy','0','164'), ('14514','691','166','mpls','0','165'), ('14515','691','167','mfSigLink','0','166'), ('14516','691','168','hdsl2','0','167'), ('14517','691','169','shdsl','0','168'), ('14518','691','170','ds1FDL','0','169'), ('14519','691','171','pos','0','170'), ('14520','691','172','dvbAsiIn','0','171'), ('14521','691','173','dvbAsiOut','0','172'), ('14522','691','174','plc','0','173'), ('14523','691','175','nfas','0','174'), ('14524','691','176','tr008','0','175'), ('14525','691','177','gr303RDT','0','176'), ('14526','691','178','gr303IDT','0','177'), ('14527','691','179','isup','0','178'), ('14528','691','180','propDocsWirelessMaclayer','0','179'), ('14529','691','181','propDocsWirelessDownstream','0','180'), ('14530','691','182','propDocsWirelessUpstream','0','181'), ('14531','691','183','hiperlan2','0','182'), ('14532','691','184','propBWAp2Mp','0','183'), ('14533','691','185','sonetOverheadChannel','0','184'), ('14534','691','186','digitalWrapperOverheadChannel','0','185'), ('14535','691','187','aal2','0','186'), ('14536','691','188','radioMAC','0','187'), ('14537','691','189','atmRadio','0','188'), ('14538','691','190','imt','0','189'), ('14539','691','191','mvl','0','190'), ('14540','691','192','reachDSL','0','191'), ('14541','691','193','frDlciEndPt','0','192'), ('14542','691','194','atmVciEndPt','0','193'), ('14543','691','195','opticalChannel','0','194'), ('14544','691','196','opticalTransport','0','195'), ('14545','691','197','propAtm','0','196'), ('14546','691','198','voiceOverCable','0','197'), ('14547','691','199','infiniband','0','198'), ('14548','691','200','teLink','0','199'), ('14549','691','201','q2931','0','200'), ('14550','691','202','virtualTg','0','201'), ('14551','691','203','sipTg','0','202'), ('14552','691','204','sipSig','0','203'), ('14553','691','205','docsCableUpstreamChannel','0','204'), ('14554','691','206','econet','0','205'), ('14555','691','207','pon155','0','206'), ('14556','691','208','pon622','0','207'), ('14557','691','209','bridge','0','208'), ('14558','691','210','linegroup','0','209'), ('14559','691','211','voiceEMFGD','0','210'), ('14560','691','212','voiceFGDEANA','0','211'), ('14561','691','213','voiceDID','0','212'), ('14562','691','214','mpegTransport','0','213'), ('14563','691','215','sixToFour','0','214'), ('14564','691','216','gtp','0','215'), ('14565','691','217','pdnEtherLoop1','0','216'), ('14566','691','218','pdnEtherLoop2','0','217'), ('14567','691','219','opticalChannelGroup','0','218'), ('14568','691','220','homepna','0','219'), ('14569','691','221','gfp','0','220'), ('14570','691','222','ciscoISLvlan','0','221'), ('14571','691','223','actelisMetaLOOP','0','222'), ('14572','691','224','fcipLink','0','223'), ('14573','691','225','rpr','0','224'), ('14574','691','226','qam','0','225'), ('14575','691','227','lmp','0','226'), ('14576','691','228','cblVectaStar','0','227'), ('14577','691','229','docsCableMCmtsDownstream','0','228'), ('14578','691','230','adsl2','0','229'), ('14579','691','231','macSecControlledIF','0','230'), ('14580','691','232','macSecUncontrolledIF','0','231'), ('14581','691','233','aviciOpticalEther','0','232'), ('14582','691','234','atmbond','0','233'), ('14583','691','235','voiceFGDOS','0','234'), ('14584','691','236','mocaVersion1','0','235'), ('14585','691','237','ieee80216WMAN','0','236'), ('14586','691','238','adsl2plus','0','237'), ('14587','691','239','dvbRcsMacLayer','0','238'), ('14588','691','240','dvbTdm','0','239'), ('14589','691','241','dvbRcsTdma','0','240'), ('14590','691','242','x86Laps','0','241'), ('14591','691','243','wwanPP','0','242'), ('14592','691','244','wwanPP2','0','243'), ('14593','691','245','voiceEBS','0','244'), ('14594','691','246','ifPwType','0','245'), ('14595','691','247','ilan','0','246'), ('14596','691','248','pip','0','247'), ('14597','691','249','aluELP','0','248'), ('14598','691','250','gpon','0','249'), ('14599','691','251','vdsl2','0','250'), ('14600','691','252','capwapDot11Profile','0','251'), ('14601','691','253','capwapDot11Bss','0','252'), ('14602','691','254','capwapWtpVirtualRadio','0','253'), ('14603','691','255','bits','0','254'), ('14604','691','256','docsCableUpstreamRfPort','0','255'), ('14605','691','257','cableDownstreamRfPort','0','256'), ('14606','691','258','vmwareVirtualNic','0','257'), ('14607','691','259','ieee802154','0','258'), ('14608','691','260','otnOdu','0','259'), ('14609','691','261','otnOtu','0','260'), ('14610','691','262','ifVfiType','0','261'), ('14611','691','263','g9981','0','262'), ('14612','691','264','g9982','0','263'), ('14613','691','265','g9983','0','264'), ('14614','691','266','aluEpon','0','265'), ('14615','691','267','aluEponOnu','0','266'), ('14616','691','268','aluEponPhysicalUni','0','267'), ('14617','691','269','aluEponLogicalLink','0','268'), ('14618','691','270','aluGponOnu','0','269'), ('14619','691','271','aluGponPhysicalUni','0','270'), ('14620','691','272','vmwareNicTeam','0','271'), ('14621','691','277','docsOfdmDownstream','0','272'), ('14622','691','278','docsOfdmaUpstream','0','273'), ('14623','691','279','gfast','0','274'), ('14624','691','280','sdci','0','275'), ('14625','691','281','xboxWireless','0','276'), ('14626','691','282','fastdsl','0','277'), ('14627','691','283','docsCableScte55d1FwdOob','0','278'), ('14628','691','284','docsCableScte55d1RetOob','0','279'), ('14629','691','285','docsCableScte55d2DsOob','0','280'), ('14630','691','286','docsCableScte55d2UsOob','0','281'), ('14631','691','287','docsCableNdf','0','282'), ('14632','691','288','docsCableNdr','0','283'), ('14633','691','289','ptm','0','284'), ('14634','691','290','ghn','0','285'), ('14635','692','0','Down','0','0'), ('14636','692','1','Up','0','1'), ('14637','693','0','not available','0','0'), ('14638','693','1','available','0','1'), ('14639','693','2','unknown','0','2'), ('14640','694','1','up','0','0'), ('14641','694','2','down','0','1'), ('14642','694','4','unknown','0','2'), ('14643','694','5','dormant','0','3'), ('14644','694','6','notPresent','0','4'), ('14645','694','7','lowerLayerDown','0','5'), ('14646','695','1','other','0','0'), ('14647','695','2','regular1822','0','1'), ('14648','695','3','hdh1822','0','2'), ('14649','695','4','ddnX25','0','3'), ('14650','695','5','rfc877x25','0','4'), ('14651','695','6','ethernetCsmacd','0','5'), ('14652','695','7','iso88023Csmacd','0','6'), ('14653','695','8','iso88024TokenBus','0','7'), ('14654','695','9','iso88025TokenRing','0','8'), ('14655','695','10','iso88026Man','0','9'), ('14656','695','11','starLan','0','10'), ('14657','695','12','proteon10Mbit','0','11'), ('14658','695','13','proteon80Mbit','0','12'), ('14659','695','14','hyperchannel','0','13'), ('14660','695','15','fddi','0','14'), ('14661','695','16','lapb','0','15'), ('14662','695','17','sdlc','0','16'), ('14663','695','18','ds1','0','17'), ('14664','695','19','e1','0','18'), ('14665','695','20','basicISDN','0','19'), ('14666','695','21','primaryISDN','0','20'), ('14667','695','22','propPointToPointSerial','0','21'), ('14668','695','23','ppp','0','22'), ('14669','695','24','softwareLoopback','0','23'), ('14670','695','25','eon','0','24'), ('14671','695','26','ethernet3Mbit','0','25'), ('14672','695','27','nsip','0','26'), ('14673','695','28','slip','0','27'), ('14674','695','29','ultra','0','28'), ('14675','695','30','ds3','0','29'), ('14676','695','31','sip','0','30'), ('14677','695','32','frameRelay','0','31'), ('14678','695','33','rs232','0','32'), ('14679','695','34','para','0','33'), ('14680','695','35','arcnet','0','34'), ('14681','695','36','arcnetPlus','0','35'), ('14682','695','37','atm','0','36'), ('14683','695','38','miox25','0','37'), ('14684','695','39','sonet','0','38'), ('14685','695','40','x25ple','0','39'), ('14686','695','41','iso88022llc','0','40'), ('14687','695','42','localTalk','0','41'), ('14688','695','43','smdsDxi','0','42'), ('14689','695','44','frameRelayService','0','43'), ('14690','695','45','v35','0','44'), ('14691','695','46','hssi','0','45'), ('14692','695','47','hippi','0','46'), ('14693','695','48','modem','0','47'), ('14694','695','49','aal5','0','48'), ('14695','695','50','sonetPath','0','49'), ('14696','695','51','sonetVT','0','50'), ('14697','695','52','smdsIcip','0','51'), ('14698','695','53','propVirtual','0','52'), ('14699','695','54','propMultiplexor','0','53'), ('14700','695','55','ieee80212','0','54'), ('14701','695','56','fibreChannel','0','55'), ('14702','695','57','hippiInterface','0','56'), ('14703','695','58','frameRelayInterconnect','0','57'), ('14704','695','59','aflane8023','0','58'), ('14705','695','60','aflane8025','0','59'), ('14706','695','61','cctEmul','0','60'), ('14707','695','62','fastEther','0','61'), ('14708','695','63','isdn','0','62'), ('14709','695','64','v11','0','63'), ('14710','695','65','v36','0','64'), ('14711','695','66','g703at64k','0','65'), ('14712','695','67','g703at2mb','0','66'), ('14713','695','68','qllc','0','67'), ('14714','695','69','fastEtherFX','0','68'), ('14715','695','70','channel','0','69'), ('14716','695','71','ieee80211','0','70'), ('14717','695','72','ibm370parChan','0','71'), ('14718','695','73','escon','0','72'), ('14719','695','74','dlsw','0','73'), ('14720','695','75','isdns','0','74'), ('14721','695','76','isdnu','0','75'), ('14722','695','77','lapd','0','76'), ('14723','695','78','ipSwitch','0','77'), ('14724','695','79','rsrb','0','78'), ('14725','695','80','atmLogical','0','79'), ('14726','695','81','ds0','0','80'), ('14727','695','82','ds0Bundle','0','81'), ('14728','695','83','bsc','0','82'), ('14729','695','84','async','0','83'), ('14730','695','85','cnr','0','84'), ('14731','695','86','iso88025Dtr','0','85'), ('14732','695','87','eplrs','0','86'), ('14733','695','88','arap','0','87'), ('14734','695','89','propCnls','0','88'), ('14735','695','90','hostPad','0','89'), ('14736','695','91','termPad','0','90'), ('14737','695','92','frameRelayMPI','0','91'), ('14738','695','93','x213','0','92'), ('14739','695','94','adsl','0','93'), ('14740','695','95','radsl','0','94'), ('14741','695','96','sdsl','0','95'), ('14742','695','97','vdsl','0','96'), ('14743','695','98','iso88025CRFPInt','0','97'), ('14744','695','99','myrinet','0','98'), ('14745','695','100','voiceEM','0','99'), ('14746','695','101','voiceFXO','0','100'), ('14747','695','102','voiceFXS','0','101'), ('14748','695','103','voiceEncap','0','102'), ('14749','695','104','voiceOverIp','0','103'), ('14750','695','105','atmDxi','0','104'), ('14751','695','106','atmFuni','0','105'), ('14752','695','107','atmIma','0','106'), ('14753','695','108','pppMultilinkBundle','0','107'), ('14754','695','109','ipOverCdlc','0','108'), ('14755','695','110','ipOverClaw','0','109'), ('14756','695','111','stackToStack','0','110'), ('14757','695','112','virtualIpAddress','0','111'), ('14758','695','113','mpc','0','112'), ('14759','695','114','ipOverAtm','0','113'), ('14760','695','115','iso88025Fiber','0','114'), ('14761','695','116','tdlc','0','115'), ('14762','695','117','gigabitEthernet','0','116'), ('14763','695','118','hdlc','0','117'), ('14764','695','119','lapf','0','118'), ('14765','695','120','v37','0','119'), ('14766','695','121','x25mlp','0','120'), ('14767','695','122','x25huntGroup','0','121'), ('14768','695','123','trasnpHdlc','0','122'), ('14769','695','124','interleave','0','123'), ('14770','695','125','fast','0','124'), ('14771','695','126','ip','0','125'), ('14772','695','127','docsCableMaclayer','0','126'), ('14773','695','128','docsCableDownstream','0','127'), ('14774','695','129','docsCableUpstream','0','128'), ('14775','695','130','a12MppSwitch','0','129'), ('14776','695','131','tunnel','0','130'), ('14777','695','132','coffee','0','131'), ('14778','695','133','ces','0','132'), ('14779','695','134','atmSubInterface','0','133'), ('14780','695','135','l2vlan','0','134'), ('14781','695','136','l3ipvlan','0','135'), ('14782','695','137','l3ipxvlan','0','136'), ('14783','695','138','digitalPowerline','0','137'), ('14784','695','139','mediaMailOverIp','0','138'), ('14785','695','140','dtm','0','139'), ('14786','695','141','dcn','0','140'), ('14787','695','142','ipForward','0','141'), ('14788','695','143','msdsl','0','142'), ('14789','695','144','ieee1394','0','143'), ('14790','695','145','if-gsn','0','144'), ('14791','695','146','dvbRccMacLayer','0','145'), ('14792','695','147','dvbRccDownstream','0','146'), ('14793','695','148','dvbRccUpstream','0','147'), ('14794','695','149','atmVirtual','0','148'), ('14795','695','150','mplsTunnel','0','149'), ('14796','695','151','srp','0','150'), ('14797','695','152','voiceOverAtm','0','151'), ('14798','695','153','voiceOverFrameRelay','0','152'), ('14799','695','154','idsl','0','153'), ('14800','695','155','compositeLink','0','154'), ('14801','695','156','ss7SigLink','0','155'), ('14802','695','157','propWirelessP2P','0','156'), ('14803','695','158','frForward','0','157'), ('14804','695','159','rfc1483','0','158'), ('14805','695','160','usb','0','159'), ('14806','695','161','ieee8023adLag','0','160'), ('14807','695','162','bgppolicyaccounting','0','161'), ('14808','695','163','frf16MfrBundle','0','162'), ('14809','695','164','h323Gatekeeper','0','163'), ('14810','695','165','h323Proxy','0','164'), ('14811','695','166','mpls','0','165'), ('14812','695','167','mfSigLink','0','166'), ('14813','695','168','hdsl2','0','167'), ('14814','695','169','shdsl','0','168'), ('14815','695','170','ds1FDL','0','169'), ('14816','695','171','pos','0','170'), ('14817','695','172','dvbAsiIn','0','171'), ('14818','695','173','dvbAsiOut','0','172'), ('14819','695','174','plc','0','173'), ('14820','695','175','nfas','0','174'), ('14821','695','176','tr008','0','175'), ('14822','695','177','gr303RDT','0','176'), ('14823','695','178','gr303IDT','0','177'), ('14824','695','179','isup','0','178'), ('14825','695','180','propDocsWirelessMaclayer','0','179'), ('14826','695','181','propDocsWirelessDownstream','0','180'), ('14827','695','182','propDocsWirelessUpstream','0','181'), ('14828','695','183','hiperlan2','0','182'), ('14829','695','184','propBWAp2Mp','0','183'), ('14830','695','185','sonetOverheadChannel','0','184'), ('14831','695','186','digitalWrapperOverheadChannel','0','185'), ('14832','695','187','aal2','0','186'), ('14833','695','188','radioMAC','0','187'), ('14834','695','189','atmRadio','0','188'), ('14835','695','190','imt','0','189'), ('14836','695','191','mvl','0','190'), ('14837','695','192','reachDSL','0','191'), ('14838','695','193','frDlciEndPt','0','192'), ('14839','695','194','atmVciEndPt','0','193'), ('14840','695','195','opticalChannel','0','194'), ('14841','695','196','opticalTransport','0','195'), ('14842','695','197','propAtm','0','196'), ('14843','695','198','voiceOverCable','0','197'), ('14844','695','199','infiniband','0','198'), ('14845','695','200','teLink','0','199'), ('14846','695','201','q2931','0','200'), ('14847','695','202','virtualTg','0','201'), ('14848','695','203','sipTg','0','202'), ('14849','695','204','sipSig','0','203'), ('14850','695','205','docsCableUpstreamChannel','0','204'), ('14851','695','206','econet','0','205'), ('14852','695','207','pon155','0','206'), ('14853','695','208','pon622','0','207'), ('14854','695','209','bridge','0','208'), ('14855','695','210','linegroup','0','209'), ('14856','695','211','voiceEMFGD','0','210'), ('14857','695','212','voiceFGDEANA','0','211'), ('14858','695','213','voiceDID','0','212'), ('14859','695','214','mpegTransport','0','213'), ('14860','695','215','sixToFour','0','214'), ('14861','695','216','gtp','0','215'), ('14862','695','217','pdnEtherLoop1','0','216'), ('14863','695','218','pdnEtherLoop2','0','217'), ('14864','695','219','opticalChannelGroup','0','218'), ('14865','695','220','homepna','0','219'), ('14866','695','221','gfp','0','220'), ('14867','695','222','ciscoISLvlan','0','221'), ('14868','695','223','actelisMetaLOOP','0','222'), ('14869','695','224','fcipLink','0','223'), ('14870','695','225','rpr','0','224'), ('14871','695','226','qam','0','225'), ('14872','695','227','lmp','0','226'), ('14873','695','228','cblVectaStar','0','227'), ('14874','695','229','docsCableMCmtsDownstream','0','228'), ('14875','695','230','adsl2','0','229'), ('14876','695','231','macSecControlledIF','0','230'), ('14877','695','232','macSecUncontrolledIF','0','231'), ('14878','695','233','aviciOpticalEther','0','232'), ('14879','695','234','atmbond','0','233'), ('14880','695','235','voiceFGDOS','0','234'), ('14881','695','236','mocaVersion1','0','235'), ('14882','695','237','ieee80216WMAN','0','236'), ('14883','695','238','adsl2plus','0','237'), ('14884','695','239','dvbRcsMacLayer','0','238'), ('14885','695','240','dvbTdm','0','239'), ('14886','695','241','dvbRcsTdma','0','240'), ('14887','695','242','x86Laps','0','241'), ('14888','695','243','wwanPP','0','242'), ('14889','695','244','wwanPP2','0','243'), ('14890','695','245','voiceEBS','0','244'), ('14891','695','246','ifPwType','0','245'), ('14892','695','247','ilan','0','246'), ('14893','695','248','pip','0','247'), ('14894','695','249','aluELP','0','248'), ('14895','695','250','gpon','0','249'), ('14896','695','251','vdsl2','0','250'), ('14897','695','252','capwapDot11Profile','0','251'), ('14898','695','253','capwapDot11Bss','0','252'), ('14899','695','254','capwapWtpVirtualRadio','0','253'), ('14900','695','255','bits','0','254'), ('14901','695','256','docsCableUpstreamRfPort','0','255'), ('14902','695','257','cableDownstreamRfPort','0','256'), ('14903','695','258','vmwareVirtualNic','0','257'), ('14904','695','259','ieee802154','0','258'), ('14905','695','260','otnOdu','0','259'), ('14906','695','261','otnOtu','0','260'), ('14907','695','262','ifVfiType','0','261'), ('14908','695','263','g9981','0','262'), ('14909','695','264','g9982','0','263'), ('14910','695','265','g9983','0','264'), ('14911','695','266','aluEpon','0','265'), ('14912','695','267','aluEponOnu','0','266'), ('14913','695','268','aluEponPhysicalUni','0','267'), ('14914','695','269','aluEponLogicalLink','0','268'), ('14915','695','270','aluGponOnu','0','269'), ('14916','695','271','aluGponPhysicalUni','0','270'), ('14917','695','272','vmwareNicTeam','0','271'), ('14918','695','277','docsOfdmDownstream','0','272'), ('14919','695','278','docsOfdmaUpstream','0','273'), ('14920','695','279','gfast','0','274'), ('14921','695','280','sdci','0','275'), ('14922','695','281','xboxWireless','0','276'), ('14923','695','282','fastdsl','0','277'), ('14924','695','283','docsCableScte55d1FwdOob','0','278'), ('14925','695','284','docsCableScte55d1RetOob','0','279'), ('14926','695','285','docsCableScte55d2DsOob','0','280'), ('14927','695','286','docsCableScte55d2UsOob','0','281'), ('14928','695','287','docsCableNdf','0','282'), ('14929','695','288','docsCableNdr','0','283'), ('14930','695','289','ptm','0','284'), ('14931','695','290','ghn','0','285'), ('14932','696','0','Down','0','0'), ('14933','696','1','Up','0','1'), ('14934','697','0','not available','0','0'), ('14935','697','1','available','0','1'), ('14936','697','2','unknown','0','2'), ('14937','698','1','up','0','0'), ('14938','698','2','down','0','1'), ('14939','698','4','unknown','0','2'), ('14940','698','5','dormant','0','3'), ('14941','698','6','notPresent','0','4'), ('14942','698','7','lowerLayerDown','0','5'), ('14943','699','1','other','0','0'), ('14944','699','2','regular1822','0','1'), ('14945','699','3','hdh1822','0','2'), ('14946','699','4','ddnX25','0','3'), ('14947','699','5','rfc877x25','0','4'), ('14948','699','6','ethernetCsmacd','0','5'), ('14949','699','7','iso88023Csmacd','0','6'), ('14950','699','8','iso88024TokenBus','0','7'), ('14951','699','9','iso88025TokenRing','0','8'), ('14952','699','10','iso88026Man','0','9'), ('14953','699','11','starLan','0','10'), ('14954','699','12','proteon10Mbit','0','11'), ('14955','699','13','proteon80Mbit','0','12'), ('14956','699','14','hyperchannel','0','13'), ('14957','699','15','fddi','0','14'), ('14958','699','16','lapb','0','15'), ('14959','699','17','sdlc','0','16'), ('14960','699','18','ds1','0','17'), ('14961','699','19','e1','0','18'), ('14962','699','20','basicISDN','0','19'), ('14963','699','21','primaryISDN','0','20'), ('14964','699','22','propPointToPointSerial','0','21'), ('14965','699','23','ppp','0','22'), ('14966','699','24','softwareLoopback','0','23'), ('14967','699','25','eon','0','24'), ('14968','699','26','ethernet3Mbit','0','25'), ('14969','699','27','nsip','0','26'), ('14970','699','28','slip','0','27'), ('14971','699','29','ultra','0','28'), ('14972','699','30','ds3','0','29'), ('14973','699','31','sip','0','30'), ('14974','699','32','frameRelay','0','31'), ('14975','699','33','rs232','0','32'), ('14976','699','34','para','0','33'), ('14977','699','35','arcnet','0','34'), ('14978','699','36','arcnetPlus','0','35'), ('14979','699','37','atm','0','36'), ('14980','699','38','miox25','0','37'), ('14981','699','39','sonet','0','38'), ('14982','699','40','x25ple','0','39'), ('14983','699','41','iso88022llc','0','40'), ('14984','699','42','localTalk','0','41'), ('14985','699','43','smdsDxi','0','42'), ('14986','699','44','frameRelayService','0','43'), ('14987','699','45','v35','0','44'), ('14988','699','46','hssi','0','45'), ('14989','699','47','hippi','0','46'), ('14990','699','48','modem','0','47'), ('14991','699','49','aal5','0','48'), ('14992','699','50','sonetPath','0','49'), ('14993','699','51','sonetVT','0','50'), ('14994','699','52','smdsIcip','0','51'), ('14995','699','53','propVirtual','0','52'), ('14996','699','54','propMultiplexor','0','53'), ('14997','699','55','ieee80212','0','54'), ('14998','699','56','fibreChannel','0','55'), ('14999','699','57','hippiInterface','0','56'), ('15000','699','58','frameRelayInterconnect','0','57'), ('15001','699','59','aflane8023','0','58'), ('15002','699','60','aflane8025','0','59'), ('15003','699','61','cctEmul','0','60'), ('15004','699','62','fastEther','0','61'), ('15005','699','63','isdn','0','62'), ('15006','699','64','v11','0','63'), ('15007','699','65','v36','0','64'), ('15008','699','66','g703at64k','0','65'), ('15009','699','67','g703at2mb','0','66'), ('15010','699','68','qllc','0','67'), ('15011','699','69','fastEtherFX','0','68'), ('15012','699','70','channel','0','69'), ('15013','699','71','ieee80211','0','70'), ('15014','699','72','ibm370parChan','0','71'), ('15015','699','73','escon','0','72'), ('15016','699','74','dlsw','0','73'), ('15017','699','75','isdns','0','74'), ('15018','699','76','isdnu','0','75'), ('15019','699','77','lapd','0','76'), ('15020','699','78','ipSwitch','0','77'), ('15021','699','79','rsrb','0','78'), ('15022','699','80','atmLogical','0','79'), ('15023','699','81','ds0','0','80'), ('15024','699','82','ds0Bundle','0','81'), ('15025','699','83','bsc','0','82'), ('15026','699','84','async','0','83'), ('15027','699','85','cnr','0','84'), ('15028','699','86','iso88025Dtr','0','85'), ('15029','699','87','eplrs','0','86'), ('15030','699','88','arap','0','87'), ('15031','699','89','propCnls','0','88'), ('15032','699','90','hostPad','0','89'), ('15033','699','91','termPad','0','90'), ('15034','699','92','frameRelayMPI','0','91'), ('15035','699','93','x213','0','92'), ('15036','699','94','adsl','0','93'), ('15037','699','95','radsl','0','94'), ('15038','699','96','sdsl','0','95'), ('15039','699','97','vdsl','0','96'), ('15040','699','98','iso88025CRFPInt','0','97'), ('15041','699','99','myrinet','0','98'), ('15042','699','100','voiceEM','0','99'), ('15043','699','101','voiceFXO','0','100'), ('15044','699','102','voiceFXS','0','101'), ('15045','699','103','voiceEncap','0','102'), ('15046','699','104','voiceOverIp','0','103'), ('15047','699','105','atmDxi','0','104'), ('15048','699','106','atmFuni','0','105'), ('15049','699','107','atmIma','0','106'), ('15050','699','108','pppMultilinkBundle','0','107'), ('15051','699','109','ipOverCdlc','0','108'), ('15052','699','110','ipOverClaw','0','109'), ('15053','699','111','stackToStack','0','110'), ('15054','699','112','virtualIpAddress','0','111'), ('15055','699','113','mpc','0','112'), ('15056','699','114','ipOverAtm','0','113'), ('15057','699','115','iso88025Fiber','0','114'), ('15058','699','116','tdlc','0','115'), ('15059','699','117','gigabitEthernet','0','116'), ('15060','699','118','hdlc','0','117'), ('15061','699','119','lapf','0','118'), ('15062','699','120','v37','0','119'), ('15063','699','121','x25mlp','0','120'), ('15064','699','122','x25huntGroup','0','121'), ('15065','699','123','trasnpHdlc','0','122'), ('15066','699','124','interleave','0','123'), ('15067','699','125','fast','0','124'), ('15068','699','126','ip','0','125'), ('15069','699','127','docsCableMaclayer','0','126'), ('15070','699','128','docsCableDownstream','0','127'), ('15071','699','129','docsCableUpstream','0','128'), ('15072','699','130','a12MppSwitch','0','129'), ('15073','699','131','tunnel','0','130'), ('15074','699','132','coffee','0','131'), ('15075','699','133','ces','0','132'), ('15076','699','134','atmSubInterface','0','133'), ('15077','699','135','l2vlan','0','134'), ('15078','699','136','l3ipvlan','0','135'), ('15079','699','137','l3ipxvlan','0','136'), ('15080','699','138','digitalPowerline','0','137'), ('15081','699','139','mediaMailOverIp','0','138'), ('15082','699','140','dtm','0','139'), ('15083','699','141','dcn','0','140'), ('15084','699','142','ipForward','0','141'), ('15085','699','143','msdsl','0','142'), ('15086','699','144','ieee1394','0','143'), ('15087','699','145','if-gsn','0','144'), ('15088','699','146','dvbRccMacLayer','0','145'), ('15089','699','147','dvbRccDownstream','0','146'), ('15090','699','148','dvbRccUpstream','0','147'), ('15091','699','149','atmVirtual','0','148'), ('15092','699','150','mplsTunnel','0','149'), ('15093','699','151','srp','0','150'), ('15094','699','152','voiceOverAtm','0','151'), ('15095','699','153','voiceOverFrameRelay','0','152'), ('15096','699','154','idsl','0','153'), ('15097','699','155','compositeLink','0','154'), ('15098','699','156','ss7SigLink','0','155'), ('15099','699','157','propWirelessP2P','0','156'), ('15100','699','158','frForward','0','157'), ('15101','699','159','rfc1483','0','158'), ('15102','699','160','usb','0','159'), ('15103','699','161','ieee8023adLag','0','160'), ('15104','699','162','bgppolicyaccounting','0','161'), ('15105','699','163','frf16MfrBundle','0','162'), ('15106','699','164','h323Gatekeeper','0','163'), ('15107','699','165','h323Proxy','0','164'), ('15108','699','166','mpls','0','165'), ('15109','699','167','mfSigLink','0','166'), ('15110','699','168','hdsl2','0','167'), ('15111','699','169','shdsl','0','168'), ('15112','699','170','ds1FDL','0','169'), ('15113','699','171','pos','0','170'), ('15114','699','172','dvbAsiIn','0','171'), ('15115','699','173','dvbAsiOut','0','172'), ('15116','699','174','plc','0','173'), ('15117','699','175','nfas','0','174'), ('15118','699','176','tr008','0','175'), ('15119','699','177','gr303RDT','0','176'), ('15120','699','178','gr303IDT','0','177'), ('15121','699','179','isup','0','178'), ('15122','699','180','propDocsWirelessMaclayer','0','179'), ('15123','699','181','propDocsWirelessDownstream','0','180'), ('15124','699','182','propDocsWirelessUpstream','0','181'), ('15125','699','183','hiperlan2','0','182'), ('15126','699','184','propBWAp2Mp','0','183'), ('15127','699','185','sonetOverheadChannel','0','184'), ('15128','699','186','digitalWrapperOverheadChannel','0','185'), ('15129','699','187','aal2','0','186'), ('15130','699','188','radioMAC','0','187'), ('15131','699','189','atmRadio','0','188'), ('15132','699','190','imt','0','189'), ('15133','699','191','mvl','0','190'), ('15134','699','192','reachDSL','0','191'), ('15135','699','193','frDlciEndPt','0','192'), ('15136','699','194','atmVciEndPt','0','193'), ('15137','699','195','opticalChannel','0','194'), ('15138','699','196','opticalTransport','0','195'), ('15139','699','197','propAtm','0','196'), ('15140','699','198','voiceOverCable','0','197'), ('15141','699','199','infiniband','0','198'), ('15142','699','200','teLink','0','199'), ('15143','699','201','q2931','0','200'), ('15144','699','202','virtualTg','0','201'), ('15145','699','203','sipTg','0','202'), ('15146','699','204','sipSig','0','203'), ('15147','699','205','docsCableUpstreamChannel','0','204'), ('15148','699','206','econet','0','205'), ('15149','699','207','pon155','0','206'), ('15150','699','208','pon622','0','207'), ('15151','699','209','bridge','0','208'), ('15152','699','210','linegroup','0','209'), ('15153','699','211','voiceEMFGD','0','210'), ('15154','699','212','voiceFGDEANA','0','211'), ('15155','699','213','voiceDID','0','212'), ('15156','699','214','mpegTransport','0','213'), ('15157','699','215','sixToFour','0','214'), ('15158','699','216','gtp','0','215'), ('15159','699','217','pdnEtherLoop1','0','216'), ('15160','699','218','pdnEtherLoop2','0','217'), ('15161','699','219','opticalChannelGroup','0','218'), ('15162','699','220','homepna','0','219'), ('15163','699','221','gfp','0','220'), ('15164','699','222','ciscoISLvlan','0','221'), ('15165','699','223','actelisMetaLOOP','0','222'), ('15166','699','224','fcipLink','0','223'), ('15167','699','225','rpr','0','224'), ('15168','699','226','qam','0','225'), ('15169','699','227','lmp','0','226'), ('15170','699','228','cblVectaStar','0','227'), ('15171','699','229','docsCableMCmtsDownstream','0','228'), ('15172','699','230','adsl2','0','229'), ('15173','699','231','macSecControlledIF','0','230'), ('15174','699','232','macSecUncontrolledIF','0','231'), ('15175','699','233','aviciOpticalEther','0','232'), ('15176','699','234','atmbond','0','233'), ('15177','699','235','voiceFGDOS','0','234'), ('15178','699','236','mocaVersion1','0','235'), ('15179','699','237','ieee80216WMAN','0','236'), ('15180','699','238','adsl2plus','0','237'), ('15181','699','239','dvbRcsMacLayer','0','238'), ('15182','699','240','dvbTdm','0','239'), ('15183','699','241','dvbRcsTdma','0','240'), ('15184','699','242','x86Laps','0','241'), ('15185','699','243','wwanPP','0','242'), ('15186','699','244','wwanPP2','0','243'), ('15187','699','245','voiceEBS','0','244'), ('15188','699','246','ifPwType','0','245'), ('15189','699','247','ilan','0','246'), ('15190','699','248','pip','0','247'), ('15191','699','249','aluELP','0','248'), ('15192','699','250','gpon','0','249'), ('15193','699','251','vdsl2','0','250'), ('15194','699','252','capwapDot11Profile','0','251'), ('15195','699','253','capwapDot11Bss','0','252'), ('15196','699','254','capwapWtpVirtualRadio','0','253'), ('15197','699','255','bits','0','254'), ('15198','699','256','docsCableUpstreamRfPort','0','255'), ('15199','699','257','cableDownstreamRfPort','0','256'), ('15200','699','258','vmwareVirtualNic','0','257'), ('15201','699','259','ieee802154','0','258'), ('15202','699','260','otnOdu','0','259'), ('15203','699','261','otnOtu','0','260'), ('15204','699','262','ifVfiType','0','261'), ('15205','699','263','g9981','0','262'), ('15206','699','264','g9982','0','263'), ('15207','699','265','g9983','0','264'), ('15208','699','266','aluEpon','0','265'), ('15209','699','267','aluEponOnu','0','266'), ('15210','699','268','aluEponPhysicalUni','0','267'), ('15211','699','269','aluEponLogicalLink','0','268'), ('15212','699','270','aluGponOnu','0','269'), ('15213','699','271','aluGponPhysicalUni','0','270'), ('15214','699','272','vmwareNicTeam','0','271'), ('15215','699','277','docsOfdmDownstream','0','272'), ('15216','699','278','docsOfdmaUpstream','0','273'), ('15217','699','279','gfast','0','274'), ('15218','699','280','sdci','0','275'), ('15219','699','281','xboxWireless','0','276'), ('15220','699','282','fastdsl','0','277'), ('15221','699','283','docsCableScte55d1FwdOob','0','278'), ('15222','699','284','docsCableScte55d1RetOob','0','279'), ('15223','699','285','docsCableScte55d2DsOob','0','280'), ('15224','699','286','docsCableScte55d2UsOob','0','281'), ('15225','699','287','docsCableNdf','0','282'), ('15226','699','288','docsCableNdr','0','283'), ('15227','699','289','ptm','0','284'), ('15228','699','290','ghn','0','285'), ('15229','700','0','Down','0','0'), ('15230','700','1','Up','0','1'), ('15231','701','0','not available','0','0'), ('15232','701','1','available','0','1'), ('15233','701','2','unknown','0','2'), ('15234','702','1','up','0','0'), ('15235','702','2','down','0','1'), ('15236','702','4','unknown','0','2'), ('15237','702','5','dormant','0','3'), ('15238','702','6','notPresent','0','4'), ('15239','702','7','lowerLayerDown','0','5'), ('15240','703','1','other','0','0'), ('15241','703','2','regular1822','0','1'), ('15242','703','3','hdh1822','0','2'), ('15243','703','4','ddnX25','0','3'), ('15244','703','5','rfc877x25','0','4'), ('15245','703','6','ethernetCsmacd','0','5'), ('15246','703','7','iso88023Csmacd','0','6'), ('15247','703','8','iso88024TokenBus','0','7'), ('15248','703','9','iso88025TokenRing','0','8'), ('15249','703','10','iso88026Man','0','9'), ('15250','703','11','starLan','0','10'), ('15251','703','12','proteon10Mbit','0','11'), ('15252','703','13','proteon80Mbit','0','12'), ('15253','703','14','hyperchannel','0','13'), ('15254','703','15','fddi','0','14'), ('15255','703','16','lapb','0','15'), ('15256','703','17','sdlc','0','16'), ('15257','703','18','ds1','0','17'), ('15258','703','19','e1','0','18'), ('15259','703','20','basicISDN','0','19'), ('15260','703','21','primaryISDN','0','20'), ('15261','703','22','propPointToPointSerial','0','21'), ('15262','703','23','ppp','0','22'), ('15263','703','24','softwareLoopback','0','23'), ('15264','703','25','eon','0','24'), ('15265','703','26','ethernet3Mbit','0','25'), ('15266','703','27','nsip','0','26'), ('15267','703','28','slip','0','27'), ('15268','703','29','ultra','0','28'), ('15269','703','30','ds3','0','29'), ('15270','703','31','sip','0','30'), ('15271','703','32','frameRelay','0','31'), ('15272','703','33','rs232','0','32'), ('15273','703','34','para','0','33'), ('15274','703','35','arcnet','0','34'), ('15275','703','36','arcnetPlus','0','35'), ('15276','703','37','atm','0','36'), ('15277','703','38','miox25','0','37'), ('15278','703','39','sonet','0','38'), ('15279','703','40','x25ple','0','39'), ('15280','703','41','iso88022llc','0','40'), ('15281','703','42','localTalk','0','41'), ('15282','703','43','smdsDxi','0','42'), ('15283','703','44','frameRelayService','0','43'), ('15284','703','45','v35','0','44'), ('15285','703','46','hssi','0','45'), ('15286','703','47','hippi','0','46'), ('15287','703','48','modem','0','47'), ('15288','703','49','aal5','0','48'), ('15289','703','50','sonetPath','0','49'), ('15290','703','51','sonetVT','0','50'), ('15291','703','52','smdsIcip','0','51'), ('15292','703','53','propVirtual','0','52'), ('15293','703','54','propMultiplexor','0','53'), ('15294','703','55','ieee80212','0','54'), ('15295','703','56','fibreChannel','0','55'), ('15296','703','57','hippiInterface','0','56'), ('15297','703','58','frameRelayInterconnect','0','57'), ('15298','703','59','aflane8023','0','58'), ('15299','703','60','aflane8025','0','59'), ('15300','703','61','cctEmul','0','60'), ('15301','703','62','fastEther','0','61'), ('15302','703','63','isdn','0','62'), ('15303','703','64','v11','0','63'), ('15304','703','65','v36','0','64'), ('15305','703','66','g703at64k','0','65'), ('15306','703','67','g703at2mb','0','66'), ('15307','703','68','qllc','0','67'), ('15308','703','69','fastEtherFX','0','68'), ('15309','703','70','channel','0','69'), ('15310','703','71','ieee80211','0','70'), ('15311','703','72','ibm370parChan','0','71'), ('15312','703','73','escon','0','72'), ('15313','703','74','dlsw','0','73'), ('15314','703','75','isdns','0','74'), ('15315','703','76','isdnu','0','75'), ('15316','703','77','lapd','0','76'), ('15317','703','78','ipSwitch','0','77'), ('15318','703','79','rsrb','0','78'), ('15319','703','80','atmLogical','0','79'), ('15320','703','81','ds0','0','80'), ('15321','703','82','ds0Bundle','0','81'), ('15322','703','83','bsc','0','82'), ('15323','703','84','async','0','83'), ('15324','703','85','cnr','0','84'), ('15325','703','86','iso88025Dtr','0','85'), ('15326','703','87','eplrs','0','86'), ('15327','703','88','arap','0','87'), ('15328','703','89','propCnls','0','88'), ('15329','703','90','hostPad','0','89'), ('15330','703','91','termPad','0','90'), ('15331','703','92','frameRelayMPI','0','91'), ('15332','703','93','x213','0','92'), ('15333','703','94','adsl','0','93'), ('15334','703','95','radsl','0','94'), ('15335','703','96','sdsl','0','95'), ('15336','703','97','vdsl','0','96'), ('15337','703','98','iso88025CRFPInt','0','97'), ('15338','703','99','myrinet','0','98'), ('15339','703','100','voiceEM','0','99'), ('15340','703','101','voiceFXO','0','100'), ('15341','703','102','voiceFXS','0','101'), ('15342','703','103','voiceEncap','0','102'), ('15343','703','104','voiceOverIp','0','103'), ('15344','703','105','atmDxi','0','104'), ('15345','703','106','atmFuni','0','105'), ('15346','703','107','atmIma','0','106'), ('15347','703','108','pppMultilinkBundle','0','107'), ('15348','703','109','ipOverCdlc','0','108'), ('15349','703','110','ipOverClaw','0','109'), ('15350','703','111','stackToStack','0','110'), ('15351','703','112','virtualIpAddress','0','111'), ('15352','703','113','mpc','0','112'), ('15353','703','114','ipOverAtm','0','113'), ('15354','703','115','iso88025Fiber','0','114'), ('15355','703','116','tdlc','0','115'), ('15356','703','117','gigabitEthernet','0','116'), ('15357','703','118','hdlc','0','117'), ('15358','703','119','lapf','0','118'), ('15359','703','120','v37','0','119'), ('15360','703','121','x25mlp','0','120'), ('15361','703','122','x25huntGroup','0','121'), ('15362','703','123','trasnpHdlc','0','122'), ('15363','703','124','interleave','0','123'), ('15364','703','125','fast','0','124'), ('15365','703','126','ip','0','125'), ('15366','703','127','docsCableMaclayer','0','126'), ('15367','703','128','docsCableDownstream','0','127'), ('15368','703','129','docsCableUpstream','0','128'), ('15369','703','130','a12MppSwitch','0','129'), ('15370','703','131','tunnel','0','130'), ('15371','703','132','coffee','0','131'), ('15372','703','133','ces','0','132'), ('15373','703','134','atmSubInterface','0','133'), ('15374','703','135','l2vlan','0','134'), ('15375','703','136','l3ipvlan','0','135'), ('15376','703','137','l3ipxvlan','0','136'), ('15377','703','138','digitalPowerline','0','137'), ('15378','703','139','mediaMailOverIp','0','138'), ('15379','703','140','dtm','0','139'), ('15380','703','141','dcn','0','140'), ('15381','703','142','ipForward','0','141'), ('15382','703','143','msdsl','0','142'), ('15383','703','144','ieee1394','0','143'), ('15384','703','145','if-gsn','0','144'), ('15385','703','146','dvbRccMacLayer','0','145'), ('15386','703','147','dvbRccDownstream','0','146'), ('15387','703','148','dvbRccUpstream','0','147'), ('15388','703','149','atmVirtual','0','148'), ('15389','703','150','mplsTunnel','0','149'), ('15390','703','151','srp','0','150'), ('15391','703','152','voiceOverAtm','0','151'), ('15392','703','153','voiceOverFrameRelay','0','152'), ('15393','703','154','idsl','0','153'), ('15394','703','155','compositeLink','0','154'), ('15395','703','156','ss7SigLink','0','155'), ('15396','703','157','propWirelessP2P','0','156'), ('15397','703','158','frForward','0','157'), ('15398','703','159','rfc1483','0','158'), ('15399','703','160','usb','0','159'), ('15400','703','161','ieee8023adLag','0','160'), ('15401','703','162','bgppolicyaccounting','0','161'), ('15402','703','163','frf16MfrBundle','0','162'), ('15403','703','164','h323Gatekeeper','0','163'), ('15404','703','165','h323Proxy','0','164'), ('15405','703','166','mpls','0','165'), ('15406','703','167','mfSigLink','0','166'), ('15407','703','168','hdsl2','0','167'), ('15408','703','169','shdsl','0','168'), ('15409','703','170','ds1FDL','0','169'), ('15410','703','171','pos','0','170'), ('15411','703','172','dvbAsiIn','0','171'), ('15412','703','173','dvbAsiOut','0','172'), ('15413','703','174','plc','0','173'), ('15414','703','175','nfas','0','174'), ('15415','703','176','tr008','0','175'), ('15416','703','177','gr303RDT','0','176'), ('15417','703','178','gr303IDT','0','177'), ('15418','703','179','isup','0','178'), ('15419','703','180','propDocsWirelessMaclayer','0','179'), ('15420','703','181','propDocsWirelessDownstream','0','180'), ('15421','703','182','propDocsWirelessUpstream','0','181'), ('15422','703','183','hiperlan2','0','182'), ('15423','703','184','propBWAp2Mp','0','183'), ('15424','703','185','sonetOverheadChannel','0','184'), ('15425','703','186','digitalWrapperOverheadChannel','0','185'), ('15426','703','187','aal2','0','186'), ('15427','703','188','radioMAC','0','187'), ('15428','703','189','atmRadio','0','188'), ('15429','703','190','imt','0','189'), ('15430','703','191','mvl','0','190'), ('15431','703','192','reachDSL','0','191'), ('15432','703','193','frDlciEndPt','0','192'), ('15433','703','194','atmVciEndPt','0','193'), ('15434','703','195','opticalChannel','0','194'), ('15435','703','196','opticalTransport','0','195'), ('15436','703','197','propAtm','0','196'), ('15437','703','198','voiceOverCable','0','197'), ('15438','703','199','infiniband','0','198'), ('15439','703','200','teLink','0','199'), ('15440','703','201','q2931','0','200'), ('15441','703','202','virtualTg','0','201'), ('15442','703','203','sipTg','0','202'), ('15443','703','204','sipSig','0','203'), ('15444','703','205','docsCableUpstreamChannel','0','204'), ('15445','703','206','econet','0','205'), ('15446','703','207','pon155','0','206'), ('15447','703','208','pon622','0','207'), ('15448','703','209','bridge','0','208'), ('15449','703','210','linegroup','0','209'), ('15450','703','211','voiceEMFGD','0','210'), ('15451','703','212','voiceFGDEANA','0','211'), ('15452','703','213','voiceDID','0','212'), ('15453','703','214','mpegTransport','0','213'), ('15454','703','215','sixToFour','0','214'), ('15455','703','216','gtp','0','215'), ('15456','703','217','pdnEtherLoop1','0','216'), ('15457','703','218','pdnEtherLoop2','0','217'), ('15458','703','219','opticalChannelGroup','0','218'), ('15459','703','220','homepna','0','219'), ('15460','703','221','gfp','0','220'), ('15461','703','222','ciscoISLvlan','0','221'), ('15462','703','223','actelisMetaLOOP','0','222'), ('15463','703','224','fcipLink','0','223'), ('15464','703','225','rpr','0','224'), ('15465','703','226','qam','0','225'), ('15466','703','227','lmp','0','226'), ('15467','703','228','cblVectaStar','0','227'), ('15468','703','229','docsCableMCmtsDownstream','0','228'), ('15469','703','230','adsl2','0','229'), ('15470','703','231','macSecControlledIF','0','230'), ('15471','703','232','macSecUncontrolledIF','0','231'), ('15472','703','233','aviciOpticalEther','0','232'), ('15473','703','234','atmbond','0','233'), ('15474','703','235','voiceFGDOS','0','234'), ('15475','703','236','mocaVersion1','0','235'), ('15476','703','237','ieee80216WMAN','0','236'), ('15477','703','238','adsl2plus','0','237'), ('15478','703','239','dvbRcsMacLayer','0','238'), ('15479','703','240','dvbTdm','0','239'), ('15480','703','241','dvbRcsTdma','0','240'), ('15481','703','242','x86Laps','0','241'), ('15482','703','243','wwanPP','0','242'), ('15483','703','244','wwanPP2','0','243'), ('15484','703','245','voiceEBS','0','244'), ('15485','703','246','ifPwType','0','245'), ('15486','703','247','ilan','0','246'), ('15487','703','248','pip','0','247'), ('15488','703','249','aluELP','0','248'), ('15489','703','250','gpon','0','249'), ('15490','703','251','vdsl2','0','250'), ('15491','703','252','capwapDot11Profile','0','251'), ('15492','703','253','capwapDot11Bss','0','252'), ('15493','703','254','capwapWtpVirtualRadio','0','253'), ('15494','703','255','bits','0','254'), ('15495','703','256','docsCableUpstreamRfPort','0','255'), ('15496','703','257','cableDownstreamRfPort','0','256'), ('15497','703','258','vmwareVirtualNic','0','257'), ('15498','703','259','ieee802154','0','258'), ('15499','703','260','otnOdu','0','259'), ('15500','703','261','otnOtu','0','260'), ('15501','703','262','ifVfiType','0','261'), ('15502','703','263','g9981','0','262'), ('15503','703','264','g9982','0','263'), ('15504','703','265','g9983','0','264'), ('15505','703','266','aluEpon','0','265'), ('15506','703','267','aluEponOnu','0','266'), ('15507','703','268','aluEponPhysicalUni','0','267'), ('15508','703','269','aluEponLogicalLink','0','268'), ('15509','703','270','aluGponOnu','0','269'), ('15510','703','271','aluGponPhysicalUni','0','270'), ('15511','703','272','vmwareNicTeam','0','271'), ('15512','703','277','docsOfdmDownstream','0','272'), ('15513','703','278','docsOfdmaUpstream','0','273'), ('15514','703','279','gfast','0','274'), ('15515','703','280','sdci','0','275'), ('15516','703','281','xboxWireless','0','276'), ('15517','703','282','fastdsl','0','277'), ('15518','703','283','docsCableScte55d1FwdOob','0','278'), ('15519','703','284','docsCableScte55d1RetOob','0','279'), ('15520','703','285','docsCableScte55d2DsOob','0','280'), ('15521','703','286','docsCableScte55d2UsOob','0','281'), ('15522','703','287','docsCableNdf','0','282'), ('15523','703','288','docsCableNdr','0','283'), ('15524','703','289','ptm','0','284'), ('15525','703','290','ghn','0','285'), ('15526','704','0','Down','0','0'), ('15527','704','1','Up','0','1'), ('15528','705','0','not available','0','0'), ('15529','705','1','available','0','1'), ('15530','705','2','unknown','0','2'), ('15531','706','1','up','0','0'), ('15532','706','2','down','0','1'), ('15533','706','4','unknown','0','2'), ('15534','706','5','dormant','0','3'), ('15535','706','6','notPresent','0','4'), ('15536','706','7','lowerLayerDown','0','5'), ('15537','707','1','other','0','0'), ('15538','707','2','regular1822','0','1'), ('15539','707','3','hdh1822','0','2'), ('15540','707','4','ddnX25','0','3'), ('15541','707','5','rfc877x25','0','4'), ('15542','707','6','ethernetCsmacd','0','5'), ('15543','707','7','iso88023Csmacd','0','6'), ('15544','707','8','iso88024TokenBus','0','7'), ('15545','707','9','iso88025TokenRing','0','8'), ('15546','707','10','iso88026Man','0','9'), ('15547','707','11','starLan','0','10'), ('15548','707','12','proteon10Mbit','0','11'), ('15549','707','13','proteon80Mbit','0','12'), ('15550','707','14','hyperchannel','0','13'), ('15551','707','15','fddi','0','14'), ('15552','707','16','lapb','0','15'), ('15553','707','17','sdlc','0','16'), ('15554','707','18','ds1','0','17'), ('15555','707','19','e1','0','18'), ('15556','707','20','basicISDN','0','19'), ('15557','707','21','primaryISDN','0','20'), ('15558','707','22','propPointToPointSerial','0','21'), ('15559','707','23','ppp','0','22'), ('15560','707','24','softwareLoopback','0','23'), ('15561','707','25','eon','0','24'), ('15562','707','26','ethernet3Mbit','0','25'), ('15563','707','27','nsip','0','26'), ('15564','707','28','slip','0','27'), ('15565','707','29','ultra','0','28'), ('15566','707','30','ds3','0','29'), ('15567','707','31','sip','0','30'), ('15568','707','32','frameRelay','0','31'), ('15569','707','33','rs232','0','32'), ('15570','707','34','para','0','33'), ('15571','707','35','arcnet','0','34'), ('15572','707','36','arcnetPlus','0','35'), ('15573','707','37','atm','0','36'), ('15574','707','38','miox25','0','37'), ('15575','707','39','sonet','0','38'), ('15576','707','40','x25ple','0','39'), ('15577','707','41','iso88022llc','0','40'), ('15578','707','42','localTalk','0','41'), ('15579','707','43','smdsDxi','0','42'), ('15580','707','44','frameRelayService','0','43'), ('15581','707','45','v35','0','44'), ('15582','707','46','hssi','0','45'), ('15583','707','47','hippi','0','46'), ('15584','707','48','modem','0','47'), ('15585','707','49','aal5','0','48'), ('15586','707','50','sonetPath','0','49'), ('15587','707','51','sonetVT','0','50'), ('15588','707','52','smdsIcip','0','51'), ('15589','707','53','propVirtual','0','52'), ('15590','707','54','propMultiplexor','0','53'), ('15591','707','55','ieee80212','0','54'), ('15592','707','56','fibreChannel','0','55'), ('15593','707','57','hippiInterface','0','56'), ('15594','707','58','frameRelayInterconnect','0','57'), ('15595','707','59','aflane8023','0','58'), ('15596','707','60','aflane8025','0','59'), ('15597','707','61','cctEmul','0','60'), ('15598','707','62','fastEther','0','61'), ('15599','707','63','isdn','0','62'), ('15600','707','64','v11','0','63'), ('15601','707','65','v36','0','64'), ('15602','707','66','g703at64k','0','65'), ('15603','707','67','g703at2mb','0','66'), ('15604','707','68','qllc','0','67'), ('15605','707','69','fastEtherFX','0','68'), ('15606','707','70','channel','0','69'), ('15607','707','71','ieee80211','0','70'), ('15608','707','72','ibm370parChan','0','71'), ('15609','707','73','escon','0','72'), ('15610','707','74','dlsw','0','73'), ('15611','707','75','isdns','0','74'), ('15612','707','76','isdnu','0','75'), ('15613','707','77','lapd','0','76'), ('15614','707','78','ipSwitch','0','77'), ('15615','707','79','rsrb','0','78'), ('15616','707','80','atmLogical','0','79'), ('15617','707','81','ds0','0','80'), ('15618','707','82','ds0Bundle','0','81'), ('15619','707','83','bsc','0','82'), ('15620','707','84','async','0','83'), ('15621','707','85','cnr','0','84'), ('15622','707','86','iso88025Dtr','0','85'), ('15623','707','87','eplrs','0','86'), ('15624','707','88','arap','0','87'), ('15625','707','89','propCnls','0','88'), ('15626','707','90','hostPad','0','89'), ('15627','707','91','termPad','0','90'), ('15628','707','92','frameRelayMPI','0','91'), ('15629','707','93','x213','0','92'), ('15630','707','94','adsl','0','93'), ('15631','707','95','radsl','0','94'), ('15632','707','96','sdsl','0','95'), ('15633','707','97','vdsl','0','96'), ('15634','707','98','iso88025CRFPInt','0','97'), ('15635','707','99','myrinet','0','98'), ('15636','707','100','voiceEM','0','99'), ('15637','707','101','voiceFXO','0','100'), ('15638','707','102','voiceFXS','0','101'), ('15639','707','103','voiceEncap','0','102'), ('15640','707','104','voiceOverIp','0','103'), ('15641','707','105','atmDxi','0','104'), ('15642','707','106','atmFuni','0','105'), ('15643','707','107','atmIma','0','106'), ('15644','707','108','pppMultilinkBundle','0','107'), ('15645','707','109','ipOverCdlc','0','108'), ('15646','707','110','ipOverClaw','0','109'), ('15647','707','111','stackToStack','0','110'), ('15648','707','112','virtualIpAddress','0','111'), ('15649','707','113','mpc','0','112'), ('15650','707','114','ipOverAtm','0','113'), ('15651','707','115','iso88025Fiber','0','114'), ('15652','707','116','tdlc','0','115'), ('15653','707','117','gigabitEthernet','0','116'), ('15654','707','118','hdlc','0','117'), ('15655','707','119','lapf','0','118'), ('15656','707','120','v37','0','119'), ('15657','707','121','x25mlp','0','120'), ('15658','707','122','x25huntGroup','0','121'), ('15659','707','123','trasnpHdlc','0','122'), ('15660','707','124','interleave','0','123'), ('15661','707','125','fast','0','124'), ('15662','707','126','ip','0','125'), ('15663','707','127','docsCableMaclayer','0','126'), ('15664','707','128','docsCableDownstream','0','127'), ('15665','707','129','docsCableUpstream','0','128'), ('15666','707','130','a12MppSwitch','0','129'), ('15667','707','131','tunnel','0','130'), ('15668','707','132','coffee','0','131'), ('15669','707','133','ces','0','132'), ('15670','707','134','atmSubInterface','0','133'), ('15671','707','135','l2vlan','0','134'), ('15672','707','136','l3ipvlan','0','135'), ('15673','707','137','l3ipxvlan','0','136'), ('15674','707','138','digitalPowerline','0','137'), ('15675','707','139','mediaMailOverIp','0','138'), ('15676','707','140','dtm','0','139'), ('15677','707','141','dcn','0','140'), ('15678','707','142','ipForward','0','141'), ('15679','707','143','msdsl','0','142'), ('15680','707','144','ieee1394','0','143'), ('15681','707','145','if-gsn','0','144'), ('15682','707','146','dvbRccMacLayer','0','145'), ('15683','707','147','dvbRccDownstream','0','146'), ('15684','707','148','dvbRccUpstream','0','147'), ('15685','707','149','atmVirtual','0','148'), ('15686','707','150','mplsTunnel','0','149'), ('15687','707','151','srp','0','150'), ('15688','707','152','voiceOverAtm','0','151'), ('15689','707','153','voiceOverFrameRelay','0','152'), ('15690','707','154','idsl','0','153'), ('15691','707','155','compositeLink','0','154'), ('15692','707','156','ss7SigLink','0','155'), ('15693','707','157','propWirelessP2P','0','156'), ('15694','707','158','frForward','0','157'), ('15695','707','159','rfc1483','0','158'), ('15696','707','160','usb','0','159'), ('15697','707','161','ieee8023adLag','0','160'), ('15698','707','162','bgppolicyaccounting','0','161'), ('15699','707','163','frf16MfrBundle','0','162'), ('15700','707','164','h323Gatekeeper','0','163'), ('15701','707','165','h323Proxy','0','164'), ('15702','707','166','mpls','0','165'), ('15703','707','167','mfSigLink','0','166'), ('15704','707','168','hdsl2','0','167'), ('15705','707','169','shdsl','0','168'), ('15706','707','170','ds1FDL','0','169'), ('15707','707','171','pos','0','170'), ('15708','707','172','dvbAsiIn','0','171'), ('15709','707','173','dvbAsiOut','0','172'), ('15710','707','174','plc','0','173'), ('15711','707','175','nfas','0','174'), ('15712','707','176','tr008','0','175'), ('15713','707','177','gr303RDT','0','176'), ('15714','707','178','gr303IDT','0','177'), ('15715','707','179','isup','0','178'), ('15716','707','180','propDocsWirelessMaclayer','0','179'), ('15717','707','181','propDocsWirelessDownstream','0','180'), ('15718','707','182','propDocsWirelessUpstream','0','181'), ('15719','707','183','hiperlan2','0','182'), ('15720','707','184','propBWAp2Mp','0','183'), ('15721','707','185','sonetOverheadChannel','0','184'), ('15722','707','186','digitalWrapperOverheadChannel','0','185'), ('15723','707','187','aal2','0','186'), ('15724','707','188','radioMAC','0','187'), ('15725','707','189','atmRadio','0','188'), ('15726','707','190','imt','0','189'), ('15727','707','191','mvl','0','190'), ('15728','707','192','reachDSL','0','191'), ('15729','707','193','frDlciEndPt','0','192'), ('15730','707','194','atmVciEndPt','0','193'), ('15731','707','195','opticalChannel','0','194'), ('15732','707','196','opticalTransport','0','195'), ('15733','707','197','propAtm','0','196'), ('15734','707','198','voiceOverCable','0','197'), ('15735','707','199','infiniband','0','198'), ('15736','707','200','teLink','0','199'), ('15737','707','201','q2931','0','200'), ('15738','707','202','virtualTg','0','201'), ('15739','707','203','sipTg','0','202'), ('15740','707','204','sipSig','0','203'), ('15741','707','205','docsCableUpstreamChannel','0','204'), ('15742','707','206','econet','0','205'), ('15743','707','207','pon155','0','206'), ('15744','707','208','pon622','0','207'), ('15745','707','209','bridge','0','208'), ('15746','707','210','linegroup','0','209'), ('15747','707','211','voiceEMFGD','0','210'), ('15748','707','212','voiceFGDEANA','0','211'), ('15749','707','213','voiceDID','0','212'), ('15750','707','214','mpegTransport','0','213'), ('15751','707','215','sixToFour','0','214'), ('15752','707','216','gtp','0','215'), ('15753','707','217','pdnEtherLoop1','0','216'), ('15754','707','218','pdnEtherLoop2','0','217'), ('15755','707','219','opticalChannelGroup','0','218'), ('15756','707','220','homepna','0','219'), ('15757','707','221','gfp','0','220'), ('15758','707','222','ciscoISLvlan','0','221'), ('15759','707','223','actelisMetaLOOP','0','222'), ('15760','707','224','fcipLink','0','223'), ('15761','707','225','rpr','0','224'), ('15762','707','226','qam','0','225'), ('15763','707','227','lmp','0','226'), ('15764','707','228','cblVectaStar','0','227'), ('15765','707','229','docsCableMCmtsDownstream','0','228'), ('15766','707','230','adsl2','0','229'), ('15767','707','231','macSecControlledIF','0','230'), ('15768','707','232','macSecUncontrolledIF','0','231'), ('15769','707','233','aviciOpticalEther','0','232'), ('15770','707','234','atmbond','0','233'), ('15771','707','235','voiceFGDOS','0','234'), ('15772','707','236','mocaVersion1','0','235'), ('15773','707','237','ieee80216WMAN','0','236'), ('15774','707','238','adsl2plus','0','237'), ('15775','707','239','dvbRcsMacLayer','0','238'), ('15776','707','240','dvbTdm','0','239'), ('15777','707','241','dvbRcsTdma','0','240'), ('15778','707','242','x86Laps','0','241'), ('15779','707','243','wwanPP','0','242'), ('15780','707','244','wwanPP2','0','243'), ('15781','707','245','voiceEBS','0','244'), ('15782','707','246','ifPwType','0','245'), ('15783','707','247','ilan','0','246'), ('15784','707','248','pip','0','247'), ('15785','707','249','aluELP','0','248'), ('15786','707','250','gpon','0','249'), ('15787','707','251','vdsl2','0','250'), ('15788','707','252','capwapDot11Profile','0','251'), ('15789','707','253','capwapDot11Bss','0','252'), ('15790','707','254','capwapWtpVirtualRadio','0','253'), ('15791','707','255','bits','0','254'), ('15792','707','256','docsCableUpstreamRfPort','0','255'), ('15793','707','257','cableDownstreamRfPort','0','256'), ('15794','707','258','vmwareVirtualNic','0','257'), ('15795','707','259','ieee802154','0','258'), ('15796','707','260','otnOdu','0','259'), ('15797','707','261','otnOtu','0','260'), ('15798','707','262','ifVfiType','0','261'), ('15799','707','263','g9981','0','262'), ('15800','707','264','g9982','0','263'), ('15801','707','265','g9983','0','264'), ('15802','707','266','aluEpon','0','265'), ('15803','707','267','aluEponOnu','0','266'), ('15804','707','268','aluEponPhysicalUni','0','267'), ('15805','707','269','aluEponLogicalLink','0','268'), ('15806','707','270','aluGponOnu','0','269'), ('15807','707','271','aluGponPhysicalUni','0','270'), ('15808','707','272','vmwareNicTeam','0','271'), ('15809','707','277','docsOfdmDownstream','0','272'), ('15810','707','278','docsOfdmaUpstream','0','273'), ('15811','707','279','gfast','0','274'), ('15812','707','280','sdci','0','275'), ('15813','707','281','xboxWireless','0','276'), ('15814','707','282','fastdsl','0','277'), ('15815','707','283','docsCableScte55d1FwdOob','0','278'), ('15816','707','284','docsCableScte55d1RetOob','0','279'), ('15817','707','285','docsCableScte55d2DsOob','0','280'), ('15818','707','286','docsCableScte55d2UsOob','0','281'), ('15819','707','287','docsCableNdf','0','282'), ('15820','707','288','docsCableNdr','0','283'), ('15821','707','289','ptm','0','284'), ('15822','707','290','ghn','0','285'), ('15823','708','0','Down','0','0'), ('15824','708','1','Up','0','1'), ('15825','709','0','not available','0','0'), ('15826','709','1','available','0','1'), ('15827','709','2','unknown','0','2'), ('15828','710','1','up','0','0'), ('15829','710','2','down','0','1'), ('15830','710','4','unknown','0','2'), ('15831','710','5','dormant','0','3'), ('15832','710','6','notPresent','0','4'), ('15833','710','7','lowerLayerDown','0','5'), ('15834','711','1','other','0','0'), ('15835','711','2','regular1822','0','1'), ('15836','711','3','hdh1822','0','2'), ('15837','711','4','ddnX25','0','3'), ('15838','711','5','rfc877x25','0','4'), ('15839','711','6','ethernetCsmacd','0','5'), ('15840','711','7','iso88023Csmacd','0','6'), ('15841','711','8','iso88024TokenBus','0','7'), ('15842','711','9','iso88025TokenRing','0','8'), ('15843','711','10','iso88026Man','0','9'), ('15844','711','11','starLan','0','10'), ('15845','711','12','proteon10Mbit','0','11'), ('15846','711','13','proteon80Mbit','0','12'), ('15847','711','14','hyperchannel','0','13'), ('15848','711','15','fddi','0','14'), ('15849','711','16','lapb','0','15'), ('15850','711','17','sdlc','0','16'), ('15851','711','18','ds1','0','17'), ('15852','711','19','e1','0','18'), ('15853','711','20','basicISDN','0','19'), ('15854','711','21','primaryISDN','0','20'), ('15855','711','22','propPointToPointSerial','0','21'), ('15856','711','23','ppp','0','22'), ('15857','711','24','softwareLoopback','0','23'), ('15858','711','25','eon','0','24'), ('15859','711','26','ethernet3Mbit','0','25'), ('15860','711','27','nsip','0','26'), ('15861','711','28','slip','0','27'), ('15862','711','29','ultra','0','28'), ('15863','711','30','ds3','0','29'), ('15864','711','31','sip','0','30'), ('15865','711','32','frameRelay','0','31'), ('15866','711','33','rs232','0','32'), ('15867','711','34','para','0','33'), ('15868','711','35','arcnet','0','34'), ('15869','711','36','arcnetPlus','0','35'), ('15870','711','37','atm','0','36'), ('15871','711','38','miox25','0','37'), ('15872','711','39','sonet','0','38'), ('15873','711','40','x25ple','0','39'), ('15874','711','41','iso88022llc','0','40'), ('15875','711','42','localTalk','0','41'), ('15876','711','43','smdsDxi','0','42'), ('15877','711','44','frameRelayService','0','43'), ('15878','711','45','v35','0','44'), ('15879','711','46','hssi','0','45'), ('15880','711','47','hippi','0','46'), ('15881','711','48','modem','0','47'), ('15882','711','49','aal5','0','48'), ('15883','711','50','sonetPath','0','49'), ('15884','711','51','sonetVT','0','50'), ('15885','711','52','smdsIcip','0','51'), ('15886','711','53','propVirtual','0','52'), ('15887','711','54','propMultiplexor','0','53'), ('15888','711','55','ieee80212','0','54'), ('15889','711','56','fibreChannel','0','55'), ('15890','711','57','hippiInterface','0','56'), ('15891','711','58','frameRelayInterconnect','0','57'), ('15892','711','59','aflane8023','0','58'), ('15893','711','60','aflane8025','0','59'), ('15894','711','61','cctEmul','0','60'), ('15895','711','62','fastEther','0','61'), ('15896','711','63','isdn','0','62'), ('15897','711','64','v11','0','63'), ('15898','711','65','v36','0','64'), ('15899','711','66','g703at64k','0','65'), ('15900','711','67','g703at2mb','0','66'), ('15901','711','68','qllc','0','67'), ('15902','711','69','fastEtherFX','0','68'), ('15903','711','70','channel','0','69'), ('15904','711','71','ieee80211','0','70'), ('15905','711','72','ibm370parChan','0','71'), ('15906','711','73','escon','0','72'), ('15907','711','74','dlsw','0','73'), ('15908','711','75','isdns','0','74'), ('15909','711','76','isdnu','0','75'), ('15910','711','77','lapd','0','76'), ('15911','711','78','ipSwitch','0','77'), ('15912','711','79','rsrb','0','78'), ('15913','711','80','atmLogical','0','79'), ('15914','711','81','ds0','0','80'), ('15915','711','82','ds0Bundle','0','81'), ('15916','711','83','bsc','0','82'), ('15917','711','84','async','0','83'), ('15918','711','85','cnr','0','84'), ('15919','711','86','iso88025Dtr','0','85'), ('15920','711','87','eplrs','0','86'), ('15921','711','88','arap','0','87'), ('15922','711','89','propCnls','0','88'), ('15923','711','90','hostPad','0','89'), ('15924','711','91','termPad','0','90'), ('15925','711','92','frameRelayMPI','0','91'), ('15926','711','93','x213','0','92'), ('15927','711','94','adsl','0','93'), ('15928','711','95','radsl','0','94'), ('15929','711','96','sdsl','0','95'), ('15930','711','97','vdsl','0','96'), ('15931','711','98','iso88025CRFPInt','0','97'), ('15932','711','99','myrinet','0','98'), ('15933','711','100','voiceEM','0','99'), ('15934','711','101','voiceFXO','0','100'), ('15935','711','102','voiceFXS','0','101'), ('15936','711','103','voiceEncap','0','102'), ('15937','711','104','voiceOverIp','0','103'), ('15938','711','105','atmDxi','0','104'), ('15939','711','106','atmFuni','0','105'), ('15940','711','107','atmIma','0','106'), ('15941','711','108','pppMultilinkBundle','0','107'), ('15942','711','109','ipOverCdlc','0','108'), ('15943','711','110','ipOverClaw','0','109'), ('15944','711','111','stackToStack','0','110'), ('15945','711','112','virtualIpAddress','0','111'), ('15946','711','113','mpc','0','112'), ('15947','711','114','ipOverAtm','0','113'), ('15948','711','115','iso88025Fiber','0','114'), ('15949','711','116','tdlc','0','115'), ('15950','711','117','gigabitEthernet','0','116'), ('15951','711','118','hdlc','0','117'), ('15952','711','119','lapf','0','118'), ('15953','711','120','v37','0','119'), ('15954','711','121','x25mlp','0','120'), ('15955','711','122','x25huntGroup','0','121'), ('15956','711','123','trasnpHdlc','0','122'), ('15957','711','124','interleave','0','123'), ('15958','711','125','fast','0','124'), ('15959','711','126','ip','0','125'), ('15960','711','127','docsCableMaclayer','0','126'), ('15961','711','128','docsCableDownstream','0','127'), ('15962','711','129','docsCableUpstream','0','128'), ('15963','711','130','a12MppSwitch','0','129'), ('15964','711','131','tunnel','0','130'), ('15965','711','132','coffee','0','131'), ('15966','711','133','ces','0','132'), ('15967','711','134','atmSubInterface','0','133'), ('15968','711','135','l2vlan','0','134'), ('15969','711','136','l3ipvlan','0','135'), ('15970','711','137','l3ipxvlan','0','136'), ('15971','711','138','digitalPowerline','0','137'), ('15972','711','139','mediaMailOverIp','0','138'), ('15973','711','140','dtm','0','139'), ('15974','711','141','dcn','0','140'), ('15975','711','142','ipForward','0','141'), ('15976','711','143','msdsl','0','142'), ('15977','711','144','ieee1394','0','143'), ('15978','711','145','if-gsn','0','144'), ('15979','711','146','dvbRccMacLayer','0','145'), ('15980','711','147','dvbRccDownstream','0','146'), ('15981','711','148','dvbRccUpstream','0','147'), ('15982','711','149','atmVirtual','0','148'), ('15983','711','150','mplsTunnel','0','149'), ('15984','711','151','srp','0','150'), ('15985','711','152','voiceOverAtm','0','151'), ('15986','711','153','voiceOverFrameRelay','0','152'), ('15987','711','154','idsl','0','153'), ('15988','711','155','compositeLink','0','154'), ('15989','711','156','ss7SigLink','0','155'), ('15990','711','157','propWirelessP2P','0','156'), ('15991','711','158','frForward','0','157'), ('15992','711','159','rfc1483','0','158'), ('15993','711','160','usb','0','159'), ('15994','711','161','ieee8023adLag','0','160'), ('15995','711','162','bgppolicyaccounting','0','161'), ('15996','711','163','frf16MfrBundle','0','162'), ('15997','711','164','h323Gatekeeper','0','163'), ('15998','711','165','h323Proxy','0','164'), ('15999','711','166','mpls','0','165'), ('16000','711','167','mfSigLink','0','166'), ('16001','711','168','hdsl2','0','167'), ('16002','711','169','shdsl','0','168'), ('16003','711','170','ds1FDL','0','169'), ('16004','711','171','pos','0','170'), ('16005','711','172','dvbAsiIn','0','171'), ('16006','711','173','dvbAsiOut','0','172'), ('16007','711','174','plc','0','173'), ('16008','711','175','nfas','0','174'), ('16009','711','176','tr008','0','175'), ('16010','711','177','gr303RDT','0','176'), ('16011','711','178','gr303IDT','0','177'), ('16012','711','179','isup','0','178'), ('16013','711','180','propDocsWirelessMaclayer','0','179'), ('16014','711','181','propDocsWirelessDownstream','0','180'), ('16015','711','182','propDocsWirelessUpstream','0','181'), ('16016','711','183','hiperlan2','0','182'), ('16017','711','184','propBWAp2Mp','0','183'), ('16018','711','185','sonetOverheadChannel','0','184'), ('16019','711','186','digitalWrapperOverheadChannel','0','185'), ('16020','711','187','aal2','0','186'), ('16021','711','188','radioMAC','0','187'), ('16022','711','189','atmRadio','0','188'), ('16023','711','190','imt','0','189'), ('16024','711','191','mvl','0','190'), ('16025','711','192','reachDSL','0','191'), ('16026','711','193','frDlciEndPt','0','192'), ('16027','711','194','atmVciEndPt','0','193'), ('16028','711','195','opticalChannel','0','194'), ('16029','711','196','opticalTransport','0','195'), ('16030','711','197','propAtm','0','196'), ('16031','711','198','voiceOverCable','0','197'), ('16032','711','199','infiniband','0','198'), ('16033','711','200','teLink','0','199'), ('16034','711','201','q2931','0','200'), ('16035','711','202','virtualTg','0','201'), ('16036','711','203','sipTg','0','202'), ('16037','711','204','sipSig','0','203'), ('16038','711','205','docsCableUpstreamChannel','0','204'), ('16039','711','206','econet','0','205'), ('16040','711','207','pon155','0','206'), ('16041','711','208','pon622','0','207'), ('16042','711','209','bridge','0','208'), ('16043','711','210','linegroup','0','209'), ('16044','711','211','voiceEMFGD','0','210'), ('16045','711','212','voiceFGDEANA','0','211'), ('16046','711','213','voiceDID','0','212'), ('16047','711','214','mpegTransport','0','213'), ('16048','711','215','sixToFour','0','214'), ('16049','711','216','gtp','0','215'), ('16050','711','217','pdnEtherLoop1','0','216'), ('16051','711','218','pdnEtherLoop2','0','217'), ('16052','711','219','opticalChannelGroup','0','218'), ('16053','711','220','homepna','0','219'), ('16054','711','221','gfp','0','220'), ('16055','711','222','ciscoISLvlan','0','221'), ('16056','711','223','actelisMetaLOOP','0','222'), ('16057','711','224','fcipLink','0','223'), ('16058','711','225','rpr','0','224'), ('16059','711','226','qam','0','225'), ('16060','711','227','lmp','0','226'), ('16061','711','228','cblVectaStar','0','227'), ('16062','711','229','docsCableMCmtsDownstream','0','228'), ('16063','711','230','adsl2','0','229'), ('16064','711','231','macSecControlledIF','0','230'), ('16065','711','232','macSecUncontrolledIF','0','231'), ('16066','711','233','aviciOpticalEther','0','232'), ('16067','711','234','atmbond','0','233'), ('16068','711','235','voiceFGDOS','0','234'), ('16069','711','236','mocaVersion1','0','235'), ('16070','711','237','ieee80216WMAN','0','236'), ('16071','711','238','adsl2plus','0','237'), ('16072','711','239','dvbRcsMacLayer','0','238'), ('16073','711','240','dvbTdm','0','239'), ('16074','711','241','dvbRcsTdma','0','240'), ('16075','711','242','x86Laps','0','241'), ('16076','711','243','wwanPP','0','242'), ('16077','711','244','wwanPP2','0','243'), ('16078','711','245','voiceEBS','0','244'), ('16079','711','246','ifPwType','0','245'), ('16080','711','247','ilan','0','246'), ('16081','711','248','pip','0','247'), ('16082','711','249','aluELP','0','248'), ('16083','711','250','gpon','0','249'), ('16084','711','251','vdsl2','0','250'), ('16085','711','252','capwapDot11Profile','0','251'), ('16086','711','253','capwapDot11Bss','0','252'), ('16087','711','254','capwapWtpVirtualRadio','0','253'), ('16088','711','255','bits','0','254'), ('16089','711','256','docsCableUpstreamRfPort','0','255'), ('16090','711','257','cableDownstreamRfPort','0','256'), ('16091','711','258','vmwareVirtualNic','0','257'), ('16092','711','259','ieee802154','0','258'), ('16093','711','260','otnOdu','0','259'), ('16094','711','261','otnOtu','0','260'), ('16095','711','262','ifVfiType','0','261'), ('16096','711','263','g9981','0','262'), ('16097','711','264','g9982','0','263'), ('16098','711','265','g9983','0','264'), ('16099','711','266','aluEpon','0','265'), ('16100','711','267','aluEponOnu','0','266'), ('16101','711','268','aluEponPhysicalUni','0','267'), ('16102','711','269','aluEponLogicalLink','0','268'), ('16103','711','270','aluGponOnu','0','269'), ('16104','711','271','aluGponPhysicalUni','0','270'), ('16105','711','272','vmwareNicTeam','0','271'), ('16106','711','277','docsOfdmDownstream','0','272'), ('16107','711','278','docsOfdmaUpstream','0','273'), ('16108','711','279','gfast','0','274'), ('16109','711','280','sdci','0','275'), ('16110','711','281','xboxWireless','0','276'), ('16111','711','282','fastdsl','0','277'), ('16112','711','283','docsCableScte55d1FwdOob','0','278'), ('16113','711','284','docsCableScte55d1RetOob','0','279'), ('16114','711','285','docsCableScte55d2DsOob','0','280'), ('16115','711','286','docsCableScte55d2UsOob','0','281'), ('16116','711','287','docsCableNdf','0','282'), ('16117','711','288','docsCableNdr','0','283'), ('16118','711','289','ptm','0','284'), ('16119','711','290','ghn','0','285'), ('16120','712','0','Down','0','0'), ('16121','712','1','Up','0','1'), ('16122','713','0','not available','0','0'), ('16123','713','1','available','0','1'), ('16124','713','2','unknown','0','2'), ('16125','714','1','up','0','0'), ('16126','714','2','down','0','1'), ('16127','714','4','unknown','0','2'), ('16128','714','5','dormant','0','3'), ('16129','714','6','notPresent','0','4'), ('16130','714','7','lowerLayerDown','0','5'), ('16131','715','1','other','0','0'), ('16132','715','2','regular1822','0','1'), ('16133','715','3','hdh1822','0','2'), ('16134','715','4','ddnX25','0','3'), ('16135','715','5','rfc877x25','0','4'), ('16136','715','6','ethernetCsmacd','0','5'), ('16137','715','7','iso88023Csmacd','0','6'), ('16138','715','8','iso88024TokenBus','0','7'), ('16139','715','9','iso88025TokenRing','0','8'), ('16140','715','10','iso88026Man','0','9'), ('16141','715','11','starLan','0','10'), ('16142','715','12','proteon10Mbit','0','11'), ('16143','715','13','proteon80Mbit','0','12'), ('16144','715','14','hyperchannel','0','13'), ('16145','715','15','fddi','0','14'), ('16146','715','16','lapb','0','15'), ('16147','715','17','sdlc','0','16'), ('16148','715','18','ds1','0','17'), ('16149','715','19','e1','0','18'), ('16150','715','20','basicISDN','0','19'), ('16151','715','21','primaryISDN','0','20'), ('16152','715','22','propPointToPointSerial','0','21'), ('16153','715','23','ppp','0','22'), ('16154','715','24','softwareLoopback','0','23'), ('16155','715','25','eon','0','24'), ('16156','715','26','ethernet3Mbit','0','25'), ('16157','715','27','nsip','0','26'), ('16158','715','28','slip','0','27'), ('16159','715','29','ultra','0','28'), ('16160','715','30','ds3','0','29'), ('16161','715','31','sip','0','30'), ('16162','715','32','frameRelay','0','31'), ('16163','715','33','rs232','0','32'), ('16164','715','34','para','0','33'), ('16165','715','35','arcnet','0','34'), ('16166','715','36','arcnetPlus','0','35'), ('16167','715','37','atm','0','36'), ('16168','715','38','miox25','0','37'), ('16169','715','39','sonet','0','38'), ('16170','715','40','x25ple','0','39'), ('16171','715','41','iso88022llc','0','40'), ('16172','715','42','localTalk','0','41'), ('16173','715','43','smdsDxi','0','42'), ('16174','715','44','frameRelayService','0','43'), ('16175','715','45','v35','0','44'), ('16176','715','46','hssi','0','45'), ('16177','715','47','hippi','0','46'), ('16178','715','48','modem','0','47'), ('16179','715','49','aal5','0','48'), ('16180','715','50','sonetPath','0','49'), ('16181','715','51','sonetVT','0','50'), ('16182','715','52','smdsIcip','0','51'), ('16183','715','53','propVirtual','0','52'), ('16184','715','54','propMultiplexor','0','53'), ('16185','715','55','ieee80212','0','54'), ('16186','715','56','fibreChannel','0','55'), ('16187','715','57','hippiInterface','0','56'), ('16188','715','58','frameRelayInterconnect','0','57'), ('16189','715','59','aflane8023','0','58'), ('16190','715','60','aflane8025','0','59'), ('16191','715','61','cctEmul','0','60'), ('16192','715','62','fastEther','0','61'), ('16193','715','63','isdn','0','62'), ('16194','715','64','v11','0','63'), ('16195','715','65','v36','0','64'), ('16196','715','66','g703at64k','0','65'), ('16197','715','67','g703at2mb','0','66'), ('16198','715','68','qllc','0','67'), ('16199','715','69','fastEtherFX','0','68'), ('16200','715','70','channel','0','69'), ('16201','715','71','ieee80211','0','70'), ('16202','715','72','ibm370parChan','0','71'), ('16203','715','73','escon','0','72'), ('16204','715','74','dlsw','0','73'), ('16205','715','75','isdns','0','74'), ('16206','715','76','isdnu','0','75'), ('16207','715','77','lapd','0','76'), ('16208','715','78','ipSwitch','0','77'), ('16209','715','79','rsrb','0','78'), ('16210','715','80','atmLogical','0','79'), ('16211','715','81','ds0','0','80'), ('16212','715','82','ds0Bundle','0','81'), ('16213','715','83','bsc','0','82'), ('16214','715','84','async','0','83'), ('16215','715','85','cnr','0','84'), ('16216','715','86','iso88025Dtr','0','85'), ('16217','715','87','eplrs','0','86'), ('16218','715','88','arap','0','87'), ('16219','715','89','propCnls','0','88'), ('16220','715','90','hostPad','0','89'), ('16221','715','91','termPad','0','90'), ('16222','715','92','frameRelayMPI','0','91'), ('16223','715','93','x213','0','92'), ('16224','715','94','adsl','0','93'), ('16225','715','95','radsl','0','94'), ('16226','715','96','sdsl','0','95'), ('16227','715','97','vdsl','0','96'), ('16228','715','98','iso88025CRFPInt','0','97'), ('16229','715','99','myrinet','0','98'), ('16230','715','100','voiceEM','0','99'), ('16231','715','101','voiceFXO','0','100'), ('16232','715','102','voiceFXS','0','101'), ('16233','715','103','voiceEncap','0','102'), ('16234','715','104','voiceOverIp','0','103'), ('16235','715','105','atmDxi','0','104'), ('16236','715','106','atmFuni','0','105'), ('16237','715','107','atmIma','0','106'), ('16238','715','108','pppMultilinkBundle','0','107'), ('16239','715','109','ipOverCdlc','0','108'), ('16240','715','110','ipOverClaw','0','109'), ('16241','715','111','stackToStack','0','110'), ('16242','715','112','virtualIpAddress','0','111'), ('16243','715','113','mpc','0','112'), ('16244','715','114','ipOverAtm','0','113'), ('16245','715','115','iso88025Fiber','0','114'), ('16246','715','116','tdlc','0','115'), ('16247','715','117','gigabitEthernet','0','116'), ('16248','715','118','hdlc','0','117'), ('16249','715','119','lapf','0','118'), ('16250','715','120','v37','0','119'), ('16251','715','121','x25mlp','0','120'), ('16252','715','122','x25huntGroup','0','121'), ('16253','715','123','trasnpHdlc','0','122'), ('16254','715','124','interleave','0','123'), ('16255','715','125','fast','0','124'), ('16256','715','126','ip','0','125'), ('16257','715','127','docsCableMaclayer','0','126'), ('16258','715','128','docsCableDownstream','0','127'), ('16259','715','129','docsCableUpstream','0','128'), ('16260','715','130','a12MppSwitch','0','129'), ('16261','715','131','tunnel','0','130'), ('16262','715','132','coffee','0','131'), ('16263','715','133','ces','0','132'), ('16264','715','134','atmSubInterface','0','133'), ('16265','715','135','l2vlan','0','134'), ('16266','715','136','l3ipvlan','0','135'), ('16267','715','137','l3ipxvlan','0','136'), ('16268','715','138','digitalPowerline','0','137'), ('16269','715','139','mediaMailOverIp','0','138'), ('16270','715','140','dtm','0','139'), ('16271','715','141','dcn','0','140'), ('16272','715','142','ipForward','0','141'), ('16273','715','143','msdsl','0','142'), ('16274','715','144','ieee1394','0','143'), ('16275','715','145','if-gsn','0','144'), ('16276','715','146','dvbRccMacLayer','0','145'), ('16277','715','147','dvbRccDownstream','0','146'), ('16278','715','148','dvbRccUpstream','0','147'), ('16279','715','149','atmVirtual','0','148'), ('16280','715','150','mplsTunnel','0','149'), ('16281','715','151','srp','0','150'), ('16282','715','152','voiceOverAtm','0','151'), ('16283','715','153','voiceOverFrameRelay','0','152'), ('16284','715','154','idsl','0','153'), ('16285','715','155','compositeLink','0','154'), ('16286','715','156','ss7SigLink','0','155'), ('16287','715','157','propWirelessP2P','0','156'), ('16288','715','158','frForward','0','157'), ('16289','715','159','rfc1483','0','158'), ('16290','715','160','usb','0','159'), ('16291','715','161','ieee8023adLag','0','160'), ('16292','715','162','bgppolicyaccounting','0','161'), ('16293','715','163','frf16MfrBundle','0','162'), ('16294','715','164','h323Gatekeeper','0','163'), ('16295','715','165','h323Proxy','0','164'), ('16296','715','166','mpls','0','165'), ('16297','715','167','mfSigLink','0','166'), ('16298','715','168','hdsl2','0','167'), ('16299','715','169','shdsl','0','168'), ('16300','715','170','ds1FDL','0','169'), ('16301','715','171','pos','0','170'), ('16302','715','172','dvbAsiIn','0','171'), ('16303','715','173','dvbAsiOut','0','172'), ('16304','715','174','plc','0','173'), ('16305','715','175','nfas','0','174'), ('16306','715','176','tr008','0','175'), ('16307','715','177','gr303RDT','0','176'), ('16308','715','178','gr303IDT','0','177'), ('16309','715','179','isup','0','178'), ('16310','715','180','propDocsWirelessMaclayer','0','179'), ('16311','715','181','propDocsWirelessDownstream','0','180'), ('16312','715','182','propDocsWirelessUpstream','0','181'), ('16313','715','183','hiperlan2','0','182'), ('16314','715','184','propBWAp2Mp','0','183'), ('16315','715','185','sonetOverheadChannel','0','184'), ('16316','715','186','digitalWrapperOverheadChannel','0','185'), ('16317','715','187','aal2','0','186'), ('16318','715','188','radioMAC','0','187'), ('16319','715','189','atmRadio','0','188'), ('16320','715','190','imt','0','189'), ('16321','715','191','mvl','0','190'), ('16322','715','192','reachDSL','0','191'), ('16323','715','193','frDlciEndPt','0','192'), ('16324','715','194','atmVciEndPt','0','193'), ('16325','715','195','opticalChannel','0','194'), ('16326','715','196','opticalTransport','0','195'), ('16327','715','197','propAtm','0','196'), ('16328','715','198','voiceOverCable','0','197'), ('16329','715','199','infiniband','0','198'), ('16330','715','200','teLink','0','199'), ('16331','715','201','q2931','0','200'), ('16332','715','202','virtualTg','0','201'), ('16333','715','203','sipTg','0','202'), ('16334','715','204','sipSig','0','203'), ('16335','715','205','docsCableUpstreamChannel','0','204'), ('16336','715','206','econet','0','205'), ('16337','715','207','pon155','0','206'), ('16338','715','208','pon622','0','207'), ('16339','715','209','bridge','0','208'), ('16340','715','210','linegroup','0','209'), ('16341','715','211','voiceEMFGD','0','210'), ('16342','715','212','voiceFGDEANA','0','211'), ('16343','715','213','voiceDID','0','212'), ('16344','715','214','mpegTransport','0','213'), ('16345','715','215','sixToFour','0','214'), ('16346','715','216','gtp','0','215'), ('16347','715','217','pdnEtherLoop1','0','216'), ('16348','715','218','pdnEtherLoop2','0','217'), ('16349','715','219','opticalChannelGroup','0','218'), ('16350','715','220','homepna','0','219'), ('16351','715','221','gfp','0','220'), ('16352','715','222','ciscoISLvlan','0','221'), ('16353','715','223','actelisMetaLOOP','0','222'), ('16354','715','224','fcipLink','0','223'), ('16355','715','225','rpr','0','224'), ('16356','715','226','qam','0','225'), ('16357','715','227','lmp','0','226'), ('16358','715','228','cblVectaStar','0','227'), ('16359','715','229','docsCableMCmtsDownstream','0','228'), ('16360','715','230','adsl2','0','229'), ('16361','715','231','macSecControlledIF','0','230'), ('16362','715','232','macSecUncontrolledIF','0','231'), ('16363','715','233','aviciOpticalEther','0','232'), ('16364','715','234','atmbond','0','233'), ('16365','715','235','voiceFGDOS','0','234'), ('16366','715','236','mocaVersion1','0','235'), ('16367','715','237','ieee80216WMAN','0','236'), ('16368','715','238','adsl2plus','0','237'), ('16369','715','239','dvbRcsMacLayer','0','238'), ('16370','715','240','dvbTdm','0','239'), ('16371','715','241','dvbRcsTdma','0','240'), ('16372','715','242','x86Laps','0','241'), ('16373','715','243','wwanPP','0','242'), ('16374','715','244','wwanPP2','0','243'), ('16375','715','245','voiceEBS','0','244'), ('16376','715','246','ifPwType','0','245'), ('16377','715','247','ilan','0','246'), ('16378','715','248','pip','0','247'), ('16379','715','249','aluELP','0','248'), ('16380','715','250','gpon','0','249'), ('16381','715','251','vdsl2','0','250'), ('16382','715','252','capwapDot11Profile','0','251'), ('16383','715','253','capwapDot11Bss','0','252'), ('16384','715','254','capwapWtpVirtualRadio','0','253'), ('16385','715','255','bits','0','254'), ('16386','715','256','docsCableUpstreamRfPort','0','255'), ('16387','715','257','cableDownstreamRfPort','0','256'), ('16388','715','258','vmwareVirtualNic','0','257'), ('16389','715','259','ieee802154','0','258'), ('16390','715','260','otnOdu','0','259'), ('16391','715','261','otnOtu','0','260'), ('16392','715','262','ifVfiType','0','261'), ('16393','715','263','g9981','0','262'), ('16394','715','264','g9982','0','263'), ('16395','715','265','g9983','0','264'), ('16396','715','266','aluEpon','0','265'), ('16397','715','267','aluEponOnu','0','266'), ('16398','715','268','aluEponPhysicalUni','0','267'), ('16399','715','269','aluEponLogicalLink','0','268'), ('16400','715','270','aluGponOnu','0','269'), ('16401','715','271','aluGponPhysicalUni','0','270'), ('16402','715','272','vmwareNicTeam','0','271'), ('16403','715','277','docsOfdmDownstream','0','272'), ('16404','715','278','docsOfdmaUpstream','0','273'), ('16405','715','279','gfast','0','274'), ('16406','715','280','sdci','0','275'), ('16407','715','281','xboxWireless','0','276'), ('16408','715','282','fastdsl','0','277'), ('16409','715','283','docsCableScte55d1FwdOob','0','278'), ('16410','715','284','docsCableScte55d1RetOob','0','279'), ('16411','715','285','docsCableScte55d2DsOob','0','280'), ('16412','715','286','docsCableScte55d2UsOob','0','281'), ('16413','715','287','docsCableNdf','0','282'), ('16414','715','288','docsCableNdr','0','283'), ('16415','715','289','ptm','0','284'), ('16416','715','290','ghn','0','285'), ('16417','716','0','Down','0','0'), ('16418','716','1','Up','0','1'), ('16419','717','0','not available','0','0'), ('16420','717','1','available','0','1'), ('16421','717','2','unknown','0','2'), ('16422','718','1','up','0','0'), ('16423','718','2','down','0','1'), ('16424','718','4','unknown','0','2'), ('16425','718','5','dormant','0','3'), ('16426','718','6','notPresent','0','4'), ('16427','718','7','lowerLayerDown','0','5'), ('16428','719','1','other','0','0'), ('16429','719','2','regular1822','0','1'), ('16430','719','3','hdh1822','0','2'), ('16431','719','4','ddnX25','0','3'), ('16432','719','5','rfc877x25','0','4'), ('16433','719','6','ethernetCsmacd','0','5'), ('16434','719','7','iso88023Csmacd','0','6'), ('16435','719','8','iso88024TokenBus','0','7'), ('16436','719','9','iso88025TokenRing','0','8'), ('16437','719','10','iso88026Man','0','9'), ('16438','719','11','starLan','0','10'), ('16439','719','12','proteon10Mbit','0','11'), ('16440','719','13','proteon80Mbit','0','12'), ('16441','719','14','hyperchannel','0','13'), ('16442','719','15','fddi','0','14'), ('16443','719','16','lapb','0','15'), ('16444','719','17','sdlc','0','16'), ('16445','719','18','ds1','0','17'), ('16446','719','19','e1','0','18'), ('16447','719','20','basicISDN','0','19'), ('16448','719','21','primaryISDN','0','20'), ('16449','719','22','propPointToPointSerial','0','21'), ('16450','719','23','ppp','0','22'), ('16451','719','24','softwareLoopback','0','23'), ('16452','719','25','eon','0','24'), ('16453','719','26','ethernet3Mbit','0','25'), ('16454','719','27','nsip','0','26'), ('16455','719','28','slip','0','27'), ('16456','719','29','ultra','0','28'), ('16457','719','30','ds3','0','29'), ('16458','719','31','sip','0','30'), ('16459','719','32','frameRelay','0','31'), ('16460','719','33','rs232','0','32'), ('16461','719','34','para','0','33'), ('16462','719','35','arcnet','0','34'), ('16463','719','36','arcnetPlus','0','35'), ('16464','719','37','atm','0','36'), ('16465','719','38','miox25','0','37'), ('16466','719','39','sonet','0','38'), ('16467','719','40','x25ple','0','39'), ('16468','719','41','iso88022llc','0','40'), ('16469','719','42','localTalk','0','41'), ('16470','719','43','smdsDxi','0','42'), ('16471','719','44','frameRelayService','0','43'), ('16472','719','45','v35','0','44'), ('16473','719','46','hssi','0','45'), ('16474','719','47','hippi','0','46'), ('16475','719','48','modem','0','47'), ('16476','719','49','aal5','0','48'), ('16477','719','50','sonetPath','0','49'), ('16478','719','51','sonetVT','0','50'), ('16479','719','52','smdsIcip','0','51'), ('16480','719','53','propVirtual','0','52'), ('16481','719','54','propMultiplexor','0','53'), ('16482','719','55','ieee80212','0','54'), ('16483','719','56','fibreChannel','0','55'), ('16484','719','57','hippiInterface','0','56'), ('16485','719','58','frameRelayInterconnect','0','57'), ('16486','719','59','aflane8023','0','58'), ('16487','719','60','aflane8025','0','59'), ('16488','719','61','cctEmul','0','60'), ('16489','719','62','fastEther','0','61'), ('16490','719','63','isdn','0','62'), ('16491','719','64','v11','0','63'), ('16492','719','65','v36','0','64'), ('16493','719','66','g703at64k','0','65'), ('16494','719','67','g703at2mb','0','66'), ('16495','719','68','qllc','0','67'), ('16496','719','69','fastEtherFX','0','68'), ('16497','719','70','channel','0','69'), ('16498','719','71','ieee80211','0','70'), ('16499','719','72','ibm370parChan','0','71'), ('16500','719','73','escon','0','72'), ('16501','719','74','dlsw','0','73'), ('16502','719','75','isdns','0','74'), ('16503','719','76','isdnu','0','75'), ('16504','719','77','lapd','0','76'), ('16505','719','78','ipSwitch','0','77'), ('16506','719','79','rsrb','0','78'), ('16507','719','80','atmLogical','0','79'), ('16508','719','81','ds0','0','80'), ('16509','719','82','ds0Bundle','0','81'), ('16510','719','83','bsc','0','82'), ('16511','719','84','async','0','83'), ('16512','719','85','cnr','0','84'), ('16513','719','86','iso88025Dtr','0','85'), ('16514','719','87','eplrs','0','86'), ('16515','719','88','arap','0','87'), ('16516','719','89','propCnls','0','88'), ('16517','719','90','hostPad','0','89'), ('16518','719','91','termPad','0','90'), ('16519','719','92','frameRelayMPI','0','91'), ('16520','719','93','x213','0','92'), ('16521','719','94','adsl','0','93'), ('16522','719','95','radsl','0','94'), ('16523','719','96','sdsl','0','95'), ('16524','719','97','vdsl','0','96'), ('16525','719','98','iso88025CRFPInt','0','97'), ('16526','719','99','myrinet','0','98'), ('16527','719','100','voiceEM','0','99'), ('16528','719','101','voiceFXO','0','100'), ('16529','719','102','voiceFXS','0','101'), ('16530','719','103','voiceEncap','0','102'), ('16531','719','104','voiceOverIp','0','103'), ('16532','719','105','atmDxi','0','104'), ('16533','719','106','atmFuni','0','105'), ('16534','719','107','atmIma','0','106'), ('16535','719','108','pppMultilinkBundle','0','107'), ('16536','719','109','ipOverCdlc','0','108'), ('16537','719','110','ipOverClaw','0','109'), ('16538','719','111','stackToStack','0','110'), ('16539','719','112','virtualIpAddress','0','111'), ('16540','719','113','mpc','0','112'), ('16541','719','114','ipOverAtm','0','113'), ('16542','719','115','iso88025Fiber','0','114'), ('16543','719','116','tdlc','0','115'), ('16544','719','117','gigabitEthernet','0','116'), ('16545','719','118','hdlc','0','117'), ('16546','719','119','lapf','0','118'), ('16547','719','120','v37','0','119'), ('16548','719','121','x25mlp','0','120'), ('16549','719','122','x25huntGroup','0','121'), ('16550','719','123','trasnpHdlc','0','122'), ('16551','719','124','interleave','0','123'), ('16552','719','125','fast','0','124'), ('16553','719','126','ip','0','125'), ('16554','719','127','docsCableMaclayer','0','126'), ('16555','719','128','docsCableDownstream','0','127'), ('16556','719','129','docsCableUpstream','0','128'), ('16557','719','130','a12MppSwitch','0','129'), ('16558','719','131','tunnel','0','130'), ('16559','719','132','coffee','0','131'), ('16560','719','133','ces','0','132'), ('16561','719','134','atmSubInterface','0','133'), ('16562','719','135','l2vlan','0','134'), ('16563','719','136','l3ipvlan','0','135'), ('16564','719','137','l3ipxvlan','0','136'), ('16565','719','138','digitalPowerline','0','137'), ('16566','719','139','mediaMailOverIp','0','138'), ('16567','719','140','dtm','0','139'), ('16568','719','141','dcn','0','140'), ('16569','719','142','ipForward','0','141'), ('16570','719','143','msdsl','0','142'), ('16571','719','144','ieee1394','0','143'), ('16572','719','145','if-gsn','0','144'), ('16573','719','146','dvbRccMacLayer','0','145'), ('16574','719','147','dvbRccDownstream','0','146'), ('16575','719','148','dvbRccUpstream','0','147'), ('16576','719','149','atmVirtual','0','148'), ('16577','719','150','mplsTunnel','0','149'), ('16578','719','151','srp','0','150'), ('16579','719','152','voiceOverAtm','0','151'), ('16580','719','153','voiceOverFrameRelay','0','152'), ('16581','719','154','idsl','0','153'), ('16582','719','155','compositeLink','0','154'), ('16583','719','156','ss7SigLink','0','155'), ('16584','719','157','propWirelessP2P','0','156'), ('16585','719','158','frForward','0','157'), ('16586','719','159','rfc1483','0','158'), ('16587','719','160','usb','0','159'), ('16588','719','161','ieee8023adLag','0','160'), ('16589','719','162','bgppolicyaccounting','0','161'), ('16590','719','163','frf16MfrBundle','0','162'), ('16591','719','164','h323Gatekeeper','0','163'), ('16592','719','165','h323Proxy','0','164'), ('16593','719','166','mpls','0','165'), ('16594','719','167','mfSigLink','0','166'), ('16595','719','168','hdsl2','0','167'), ('16596','719','169','shdsl','0','168'), ('16597','719','170','ds1FDL','0','169'), ('16598','719','171','pos','0','170'), ('16599','719','172','dvbAsiIn','0','171'), ('16600','719','173','dvbAsiOut','0','172'), ('16601','719','174','plc','0','173'), ('16602','719','175','nfas','0','174'), ('16603','719','176','tr008','0','175'), ('16604','719','177','gr303RDT','0','176'), ('16605','719','178','gr303IDT','0','177'), ('16606','719','179','isup','0','178'), ('16607','719','180','propDocsWirelessMaclayer','0','179'), ('16608','719','181','propDocsWirelessDownstream','0','180'), ('16609','719','182','propDocsWirelessUpstream','0','181'), ('16610','719','183','hiperlan2','0','182'), ('16611','719','184','propBWAp2Mp','0','183'), ('16612','719','185','sonetOverheadChannel','0','184'), ('16613','719','186','digitalWrapperOverheadChannel','0','185'), ('16614','719','187','aal2','0','186'), ('16615','719','188','radioMAC','0','187'), ('16616','719','189','atmRadio','0','188'), ('16617','719','190','imt','0','189'), ('16618','719','191','mvl','0','190'), ('16619','719','192','reachDSL','0','191'), ('16620','719','193','frDlciEndPt','0','192'), ('16621','719','194','atmVciEndPt','0','193'), ('16622','719','195','opticalChannel','0','194'), ('16623','719','196','opticalTransport','0','195'), ('16624','719','197','propAtm','0','196'), ('16625','719','198','voiceOverCable','0','197'), ('16626','719','199','infiniband','0','198'), ('16627','719','200','teLink','0','199'), ('16628','719','201','q2931','0','200'), ('16629','719','202','virtualTg','0','201'), ('16630','719','203','sipTg','0','202'), ('16631','719','204','sipSig','0','203'), ('16632','719','205','docsCableUpstreamChannel','0','204'), ('16633','719','206','econet','0','205'), ('16634','719','207','pon155','0','206'), ('16635','719','208','pon622','0','207'), ('16636','719','209','bridge','0','208'), ('16637','719','210','linegroup','0','209'), ('16638','719','211','voiceEMFGD','0','210'), ('16639','719','212','voiceFGDEANA','0','211'), ('16640','719','213','voiceDID','0','212'), ('16641','719','214','mpegTransport','0','213'), ('16642','719','215','sixToFour','0','214'), ('16643','719','216','gtp','0','215'), ('16644','719','217','pdnEtherLoop1','0','216'), ('16645','719','218','pdnEtherLoop2','0','217'), ('16646','719','219','opticalChannelGroup','0','218'), ('16647','719','220','homepna','0','219'), ('16648','719','221','gfp','0','220'), ('16649','719','222','ciscoISLvlan','0','221'), ('16650','719','223','actelisMetaLOOP','0','222'), ('16651','719','224','fcipLink','0','223'), ('16652','719','225','rpr','0','224'), ('16653','719','226','qam','0','225'), ('16654','719','227','lmp','0','226'), ('16655','719','228','cblVectaStar','0','227'), ('16656','719','229','docsCableMCmtsDownstream','0','228'), ('16657','719','230','adsl2','0','229'), ('16658','719','231','macSecControlledIF','0','230'), ('16659','719','232','macSecUncontrolledIF','0','231'), ('16660','719','233','aviciOpticalEther','0','232'), ('16661','719','234','atmbond','0','233'), ('16662','719','235','voiceFGDOS','0','234'), ('16663','719','236','mocaVersion1','0','235'), ('16664','719','237','ieee80216WMAN','0','236'), ('16665','719','238','adsl2plus','0','237'), ('16666','719','239','dvbRcsMacLayer','0','238'), ('16667','719','240','dvbTdm','0','239'), ('16668','719','241','dvbRcsTdma','0','240'), ('16669','719','242','x86Laps','0','241'), ('16670','719','243','wwanPP','0','242'), ('16671','719','244','wwanPP2','0','243'), ('16672','719','245','voiceEBS','0','244'), ('16673','719','246','ifPwType','0','245'), ('16674','719','247','ilan','0','246'), ('16675','719','248','pip','0','247'), ('16676','719','249','aluELP','0','248'), ('16677','719','250','gpon','0','249'), ('16678','719','251','vdsl2','0','250'), ('16679','719','252','capwapDot11Profile','0','251'), ('16680','719','253','capwapDot11Bss','0','252'), ('16681','719','254','capwapWtpVirtualRadio','0','253'), ('16682','719','255','bits','0','254'), ('16683','719','256','docsCableUpstreamRfPort','0','255'), ('16684','719','257','cableDownstreamRfPort','0','256'), ('16685','719','258','vmwareVirtualNic','0','257'), ('16686','719','259','ieee802154','0','258'), ('16687','719','260','otnOdu','0','259'), ('16688','719','261','otnOtu','0','260'), ('16689','719','262','ifVfiType','0','261'), ('16690','719','263','g9981','0','262'), ('16691','719','264','g9982','0','263'), ('16692','719','265','g9983','0','264'), ('16693','719','266','aluEpon','0','265'), ('16694','719','267','aluEponOnu','0','266'), ('16695','719','268','aluEponPhysicalUni','0','267'), ('16696','719','269','aluEponLogicalLink','0','268'), ('16697','719','270','aluGponOnu','0','269'), ('16698','719','271','aluGponPhysicalUni','0','270'), ('16699','719','272','vmwareNicTeam','0','271'), ('16700','719','277','docsOfdmDownstream','0','272'), ('16701','719','278','docsOfdmaUpstream','0','273'), ('16702','719','279','gfast','0','274'), ('16703','719','280','sdci','0','275'), ('16704','719','281','xboxWireless','0','276'), ('16705','719','282','fastdsl','0','277'), ('16706','719','283','docsCableScte55d1FwdOob','0','278'), ('16707','719','284','docsCableScte55d1RetOob','0','279'), ('16708','719','285','docsCableScte55d2DsOob','0','280'), ('16709','719','286','docsCableScte55d2UsOob','0','281'), ('16710','719','287','docsCableNdf','0','282'), ('16711','719','288','docsCableNdr','0','283'), ('16712','719','289','ptm','0','284'), ('16713','719','290','ghn','0','285'), ('16714','720','0','Down','0','0'), ('16715','720','1','Up','0','1'), ('16716','721','0','not available','0','0'), ('16717','721','1','available','0','1'), ('16718','721','2','unknown','0','2'), ('16719','722','1','up','0','0'), ('16720','722','2','down','0','1'), ('16721','722','4','unknown','0','2'), ('16722','722','5','dormant','0','3'), ('16723','722','6','notPresent','0','4'), ('16724','722','7','lowerLayerDown','0','5'), ('16725','723','1','other','0','0'), ('16726','723','2','regular1822','0','1'), ('16727','723','3','hdh1822','0','2'), ('16728','723','4','ddnX25','0','3'), ('16729','723','5','rfc877x25','0','4'), ('16730','723','6','ethernetCsmacd','0','5'), ('16731','723','7','iso88023Csmacd','0','6'), ('16732','723','8','iso88024TokenBus','0','7'), ('16733','723','9','iso88025TokenRing','0','8'), ('16734','723','10','iso88026Man','0','9'), ('16735','723','11','starLan','0','10'), ('16736','723','12','proteon10Mbit','0','11'), ('16737','723','13','proteon80Mbit','0','12'), ('16738','723','14','hyperchannel','0','13'), ('16739','723','15','fddi','0','14'), ('16740','723','16','lapb','0','15'), ('16741','723','17','sdlc','0','16'), ('16742','723','18','ds1','0','17'), ('16743','723','19','e1','0','18'), ('16744','723','20','basicISDN','0','19'), ('16745','723','21','primaryISDN','0','20'), ('16746','723','22','propPointToPointSerial','0','21'), ('16747','723','23','ppp','0','22'), ('16748','723','24','softwareLoopback','0','23'), ('16749','723','25','eon','0','24'), ('16750','723','26','ethernet3Mbit','0','25'), ('16751','723','27','nsip','0','26'), ('16752','723','28','slip','0','27'), ('16753','723','29','ultra','0','28'), ('16754','723','30','ds3','0','29'), ('16755','723','31','sip','0','30'), ('16756','723','32','frameRelay','0','31'), ('16757','723','33','rs232','0','32'), ('16758','723','34','para','0','33'), ('16759','723','35','arcnet','0','34'), ('16760','723','36','arcnetPlus','0','35'), ('16761','723','37','atm','0','36'), ('16762','723','38','miox25','0','37'), ('16763','723','39','sonet','0','38'), ('16764','723','40','x25ple','0','39'), ('16765','723','41','iso88022llc','0','40'), ('16766','723','42','localTalk','0','41'), ('16767','723','43','smdsDxi','0','42'), ('16768','723','44','frameRelayService','0','43'), ('16769','723','45','v35','0','44'), ('16770','723','46','hssi','0','45'), ('16771','723','47','hippi','0','46'), ('16772','723','48','modem','0','47'), ('16773','723','49','aal5','0','48'), ('16774','723','50','sonetPath','0','49'), ('16775','723','51','sonetVT','0','50'), ('16776','723','52','smdsIcip','0','51'), ('16777','723','53','propVirtual','0','52'), ('16778','723','54','propMultiplexor','0','53'), ('16779','723','55','ieee80212','0','54'), ('16780','723','56','fibreChannel','0','55'), ('16781','723','57','hippiInterface','0','56'), ('16782','723','58','frameRelayInterconnect','0','57'), ('16783','723','59','aflane8023','0','58'), ('16784','723','60','aflane8025','0','59'), ('16785','723','61','cctEmul','0','60'), ('16786','723','62','fastEther','0','61'), ('16787','723','63','isdn','0','62'), ('16788','723','64','v11','0','63'), ('16789','723','65','v36','0','64'), ('16790','723','66','g703at64k','0','65'), ('16791','723','67','g703at2mb','0','66'), ('16792','723','68','qllc','0','67'), ('16793','723','69','fastEtherFX','0','68'), ('16794','723','70','channel','0','69'), ('16795','723','71','ieee80211','0','70'), ('16796','723','72','ibm370parChan','0','71'), ('16797','723','73','escon','0','72'), ('16798','723','74','dlsw','0','73'), ('16799','723','75','isdns','0','74'), ('16800','723','76','isdnu','0','75'), ('16801','723','77','lapd','0','76'), ('16802','723','78','ipSwitch','0','77'), ('16803','723','79','rsrb','0','78'), ('16804','723','80','atmLogical','0','79'), ('16805','723','81','ds0','0','80'), ('16806','723','82','ds0Bundle','0','81'), ('16807','723','83','bsc','0','82'), ('16808','723','84','async','0','83'), ('16809','723','85','cnr','0','84'), ('16810','723','86','iso88025Dtr','0','85'), ('16811','723','87','eplrs','0','86'), ('16812','723','88','arap','0','87'), ('16813','723','89','propCnls','0','88'), ('16814','723','90','hostPad','0','89'), ('16815','723','91','termPad','0','90'), ('16816','723','92','frameRelayMPI','0','91'), ('16817','723','93','x213','0','92'), ('16818','723','94','adsl','0','93'), ('16819','723','95','radsl','0','94'), ('16820','723','96','sdsl','0','95'), ('16821','723','97','vdsl','0','96'), ('16822','723','98','iso88025CRFPInt','0','97'), ('16823','723','99','myrinet','0','98'), ('16824','723','100','voiceEM','0','99'), ('16825','723','101','voiceFXO','0','100'), ('16826','723','102','voiceFXS','0','101'), ('16827','723','103','voiceEncap','0','102'), ('16828','723','104','voiceOverIp','0','103'), ('16829','723','105','atmDxi','0','104'), ('16830','723','106','atmFuni','0','105'), ('16831','723','107','atmIma','0','106'), ('16832','723','108','pppMultilinkBundle','0','107'), ('16833','723','109','ipOverCdlc','0','108'), ('16834','723','110','ipOverClaw','0','109'), ('16835','723','111','stackToStack','0','110'), ('16836','723','112','virtualIpAddress','0','111'), ('16837','723','113','mpc','0','112'), ('16838','723','114','ipOverAtm','0','113'), ('16839','723','115','iso88025Fiber','0','114'), ('16840','723','116','tdlc','0','115'), ('16841','723','117','gigabitEthernet','0','116'), ('16842','723','118','hdlc','0','117'), ('16843','723','119','lapf','0','118'), ('16844','723','120','v37','0','119'), ('16845','723','121','x25mlp','0','120'), ('16846','723','122','x25huntGroup','0','121'), ('16847','723','123','trasnpHdlc','0','122'), ('16848','723','124','interleave','0','123'), ('16849','723','125','fast','0','124'), ('16850','723','126','ip','0','125'), ('16851','723','127','docsCableMaclayer','0','126'), ('16852','723','128','docsCableDownstream','0','127'), ('16853','723','129','docsCableUpstream','0','128'), ('16854','723','130','a12MppSwitch','0','129'), ('16855','723','131','tunnel','0','130'), ('16856','723','132','coffee','0','131'), ('16857','723','133','ces','0','132'), ('16858','723','134','atmSubInterface','0','133'), ('16859','723','135','l2vlan','0','134'), ('16860','723','136','l3ipvlan','0','135'), ('16861','723','137','l3ipxvlan','0','136'), ('16862','723','138','digitalPowerline','0','137'), ('16863','723','139','mediaMailOverIp','0','138'), ('16864','723','140','dtm','0','139'), ('16865','723','141','dcn','0','140'), ('16866','723','142','ipForward','0','141'), ('16867','723','143','msdsl','0','142'), ('16868','723','144','ieee1394','0','143'), ('16869','723','145','if-gsn','0','144'), ('16870','723','146','dvbRccMacLayer','0','145'), ('16871','723','147','dvbRccDownstream','0','146'), ('16872','723','148','dvbRccUpstream','0','147'), ('16873','723','149','atmVirtual','0','148'), ('16874','723','150','mplsTunnel','0','149'), ('16875','723','151','srp','0','150'), ('16876','723','152','voiceOverAtm','0','151'), ('16877','723','153','voiceOverFrameRelay','0','152'), ('16878','723','154','idsl','0','153'), ('16879','723','155','compositeLink','0','154'), ('16880','723','156','ss7SigLink','0','155'), ('16881','723','157','propWirelessP2P','0','156'), ('16882','723','158','frForward','0','157'), ('16883','723','159','rfc1483','0','158'), ('16884','723','160','usb','0','159'), ('16885','723','161','ieee8023adLag','0','160'), ('16886','723','162','bgppolicyaccounting','0','161'), ('16887','723','163','frf16MfrBundle','0','162'), ('16888','723','164','h323Gatekeeper','0','163'), ('16889','723','165','h323Proxy','0','164'), ('16890','723','166','mpls','0','165'), ('16891','723','167','mfSigLink','0','166'), ('16892','723','168','hdsl2','0','167'), ('16893','723','169','shdsl','0','168'), ('16894','723','170','ds1FDL','0','169'), ('16895','723','171','pos','0','170'), ('16896','723','172','dvbAsiIn','0','171'), ('16897','723','173','dvbAsiOut','0','172'), ('16898','723','174','plc','0','173'), ('16899','723','175','nfas','0','174'), ('16900','723','176','tr008','0','175'), ('16901','723','177','gr303RDT','0','176'), ('16902','723','178','gr303IDT','0','177'), ('16903','723','179','isup','0','178'), ('16904','723','180','propDocsWirelessMaclayer','0','179'), ('16905','723','181','propDocsWirelessDownstream','0','180'), ('16906','723','182','propDocsWirelessUpstream','0','181'), ('16907','723','183','hiperlan2','0','182'), ('16908','723','184','propBWAp2Mp','0','183'), ('16909','723','185','sonetOverheadChannel','0','184'), ('16910','723','186','digitalWrapperOverheadChannel','0','185'), ('16911','723','187','aal2','0','186'), ('16912','723','188','radioMAC','0','187'), ('16913','723','189','atmRadio','0','188'), ('16914','723','190','imt','0','189'), ('16915','723','191','mvl','0','190'), ('16916','723','192','reachDSL','0','191'), ('16917','723','193','frDlciEndPt','0','192'), ('16918','723','194','atmVciEndPt','0','193'), ('16919','723','195','opticalChannel','0','194'), ('16920','723','196','opticalTransport','0','195'), ('16921','723','197','propAtm','0','196'), ('16922','723','198','voiceOverCable','0','197'), ('16923','723','199','infiniband','0','198'), ('16924','723','200','teLink','0','199'), ('16925','723','201','q2931','0','200'), ('16926','723','202','virtualTg','0','201'), ('16927','723','203','sipTg','0','202'), ('16928','723','204','sipSig','0','203'), ('16929','723','205','docsCableUpstreamChannel','0','204'), ('16930','723','206','econet','0','205'), ('16931','723','207','pon155','0','206'), ('16932','723','208','pon622','0','207'), ('16933','723','209','bridge','0','208'), ('16934','723','210','linegroup','0','209'), ('16935','723','211','voiceEMFGD','0','210'), ('16936','723','212','voiceFGDEANA','0','211'), ('16937','723','213','voiceDID','0','212'), ('16938','723','214','mpegTransport','0','213'), ('16939','723','215','sixToFour','0','214'), ('16940','723','216','gtp','0','215'), ('16941','723','217','pdnEtherLoop1','0','216'), ('16942','723','218','pdnEtherLoop2','0','217'), ('16943','723','219','opticalChannelGroup','0','218'), ('16944','723','220','homepna','0','219'), ('16945','723','221','gfp','0','220'), ('16946','723','222','ciscoISLvlan','0','221'), ('16947','723','223','actelisMetaLOOP','0','222'), ('16948','723','224','fcipLink','0','223'), ('16949','723','225','rpr','0','224'), ('16950','723','226','qam','0','225'), ('16951','723','227','lmp','0','226'), ('16952','723','228','cblVectaStar','0','227'), ('16953','723','229','docsCableMCmtsDownstream','0','228'), ('16954','723','230','adsl2','0','229'), ('16955','723','231','macSecControlledIF','0','230'), ('16956','723','232','macSecUncontrolledIF','0','231'), ('16957','723','233','aviciOpticalEther','0','232'), ('16958','723','234','atmbond','0','233'), ('16959','723','235','voiceFGDOS','0','234'), ('16960','723','236','mocaVersion1','0','235'), ('16961','723','237','ieee80216WMAN','0','236'), ('16962','723','238','adsl2plus','0','237'), ('16963','723','239','dvbRcsMacLayer','0','238'), ('16964','723','240','dvbTdm','0','239'), ('16965','723','241','dvbRcsTdma','0','240'), ('16966','723','242','x86Laps','0','241'), ('16967','723','243','wwanPP','0','242'), ('16968','723','244','wwanPP2','0','243'), ('16969','723','245','voiceEBS','0','244'), ('16970','723','246','ifPwType','0','245'), ('16971','723','247','ilan','0','246'), ('16972','723','248','pip','0','247'), ('16973','723','249','aluELP','0','248'), ('16974','723','250','gpon','0','249'), ('16975','723','251','vdsl2','0','250'), ('16976','723','252','capwapDot11Profile','0','251'), ('16977','723','253','capwapDot11Bss','0','252'), ('16978','723','254','capwapWtpVirtualRadio','0','253'), ('16979','723','255','bits','0','254'), ('16980','723','256','docsCableUpstreamRfPort','0','255'), ('16981','723','257','cableDownstreamRfPort','0','256'), ('16982','723','258','vmwareVirtualNic','0','257'), ('16983','723','259','ieee802154','0','258'), ('16984','723','260','otnOdu','0','259'), ('16985','723','261','otnOtu','0','260'), ('16986','723','262','ifVfiType','0','261'), ('16987','723','263','g9981','0','262'), ('16988','723','264','g9982','0','263'), ('16989','723','265','g9983','0','264'), ('16990','723','266','aluEpon','0','265'), ('16991','723','267','aluEponOnu','0','266'), ('16992','723','268','aluEponPhysicalUni','0','267'), ('16993','723','269','aluEponLogicalLink','0','268'), ('16994','723','270','aluGponOnu','0','269'), ('16995','723','271','aluGponPhysicalUni','0','270'), ('16996','723','272','vmwareNicTeam','0','271'), ('16997','723','277','docsOfdmDownstream','0','272'), ('16998','723','278','docsOfdmaUpstream','0','273'), ('16999','723','279','gfast','0','274'), ('17000','723','280','sdci','0','275'), ('17001','723','281','xboxWireless','0','276'), ('17002','723','282','fastdsl','0','277'), ('17003','723','283','docsCableScte55d1FwdOob','0','278'), ('17004','723','284','docsCableScte55d1RetOob','0','279'), ('17005','723','285','docsCableScte55d2DsOob','0','280'), ('17006','723','286','docsCableScte55d2UsOob','0','281'), ('17007','723','287','docsCableNdf','0','282'), ('17008','723','288','docsCableNdr','0','283'), ('17009','723','289','ptm','0','284'), ('17010','723','290','ghn','0','285'), ('17011','724','0','Down','0','0'), ('17012','724','1','Up','0','1'), ('17013','725','0','not available','0','0'), ('17014','725','1','available','0','1'), ('17015','725','2','unknown','0','2'), ('17016','726','1','up','0','0'), ('17017','726','2','down','0','1'), ('17018','726','4','unknown','0','2'), ('17019','726','5','dormant','0','3'), ('17020','726','6','notPresent','0','4'), ('17021','726','7','lowerLayerDown','0','5'), ('17022','727','1','other','0','0'), ('17023','727','2','regular1822','0','1'), ('17024','727','3','hdh1822','0','2'), ('17025','727','4','ddnX25','0','3'), ('17026','727','5','rfc877x25','0','4'), ('17027','727','6','ethernetCsmacd','0','5'), ('17028','727','7','iso88023Csmacd','0','6'), ('17029','727','8','iso88024TokenBus','0','7'), ('17030','727','9','iso88025TokenRing','0','8'), ('17031','727','10','iso88026Man','0','9'), ('17032','727','11','starLan','0','10'), ('17033','727','12','proteon10Mbit','0','11'), ('17034','727','13','proteon80Mbit','0','12'), ('17035','727','14','hyperchannel','0','13'), ('17036','727','15','fddi','0','14'), ('17037','727','16','lapb','0','15'), ('17038','727','17','sdlc','0','16'), ('17039','727','18','ds1','0','17'), ('17040','727','19','e1','0','18'), ('17041','727','20','basicISDN','0','19'), ('17042','727','21','primaryISDN','0','20'), ('17043','727','22','propPointToPointSerial','0','21'), ('17044','727','23','ppp','0','22'), ('17045','727','24','softwareLoopback','0','23'), ('17046','727','25','eon','0','24'), ('17047','727','26','ethernet3Mbit','0','25'), ('17048','727','27','nsip','0','26'), ('17049','727','28','slip','0','27'), ('17050','727','29','ultra','0','28'), ('17051','727','30','ds3','0','29'), ('17052','727','31','sip','0','30'), ('17053','727','32','frameRelay','0','31'), ('17054','727','33','rs232','0','32'), ('17055','727','34','para','0','33'), ('17056','727','35','arcnet','0','34'), ('17057','727','36','arcnetPlus','0','35'), ('17058','727','37','atm','0','36'), ('17059','727','38','miox25','0','37'), ('17060','727','39','sonet','0','38'), ('17061','727','40','x25ple','0','39'), ('17062','727','41','iso88022llc','0','40'), ('17063','727','42','localTalk','0','41'), ('17064','727','43','smdsDxi','0','42'), ('17065','727','44','frameRelayService','0','43'), ('17066','727','45','v35','0','44'), ('17067','727','46','hssi','0','45'), ('17068','727','47','hippi','0','46'), ('17069','727','48','modem','0','47'), ('17070','727','49','aal5','0','48'), ('17071','727','50','sonetPath','0','49'), ('17072','727','51','sonetVT','0','50'), ('17073','727','52','smdsIcip','0','51'), ('17074','727','53','propVirtual','0','52'), ('17075','727','54','propMultiplexor','0','53'), ('17076','727','55','ieee80212','0','54'), ('17077','727','56','fibreChannel','0','55'), ('17078','727','57','hippiInterface','0','56'), ('17079','727','58','frameRelayInterconnect','0','57'), ('17080','727','59','aflane8023','0','58'), ('17081','727','60','aflane8025','0','59'), ('17082','727','61','cctEmul','0','60'), ('17083','727','62','fastEther','0','61'), ('17084','727','63','isdn','0','62'), ('17085','727','64','v11','0','63'), ('17086','727','65','v36','0','64'), ('17087','727','66','g703at64k','0','65'), ('17088','727','67','g703at2mb','0','66'), ('17089','727','68','qllc','0','67'), ('17090','727','69','fastEtherFX','0','68'), ('17091','727','70','channel','0','69'), ('17092','727','71','ieee80211','0','70'), ('17093','727','72','ibm370parChan','0','71'), ('17094','727','73','escon','0','72'), ('17095','727','74','dlsw','0','73'), ('17096','727','75','isdns','0','74'), ('17097','727','76','isdnu','0','75'), ('17098','727','77','lapd','0','76'), ('17099','727','78','ipSwitch','0','77'), ('17100','727','79','rsrb','0','78'), ('17101','727','80','atmLogical','0','79'), ('17102','727','81','ds0','0','80'), ('17103','727','82','ds0Bundle','0','81'), ('17104','727','83','bsc','0','82'), ('17105','727','84','async','0','83'), ('17106','727','85','cnr','0','84'), ('17107','727','86','iso88025Dtr','0','85'), ('17108','727','87','eplrs','0','86'), ('17109','727','88','arap','0','87'), ('17110','727','89','propCnls','0','88'), ('17111','727','90','hostPad','0','89'), ('17112','727','91','termPad','0','90'), ('17113','727','92','frameRelayMPI','0','91'), ('17114','727','93','x213','0','92'), ('17115','727','94','adsl','0','93'), ('17116','727','95','radsl','0','94'), ('17117','727','96','sdsl','0','95'), ('17118','727','97','vdsl','0','96'), ('17119','727','98','iso88025CRFPInt','0','97'), ('17120','727','99','myrinet','0','98'), ('17121','727','100','voiceEM','0','99'), ('17122','727','101','voiceFXO','0','100'), ('17123','727','102','voiceFXS','0','101'), ('17124','727','103','voiceEncap','0','102'), ('17125','727','104','voiceOverIp','0','103'), ('17126','727','105','atmDxi','0','104'), ('17127','727','106','atmFuni','0','105'), ('17128','727','107','atmIma','0','106'), ('17129','727','108','pppMultilinkBundle','0','107'), ('17130','727','109','ipOverCdlc','0','108'), ('17131','727','110','ipOverClaw','0','109'), ('17132','727','111','stackToStack','0','110'), ('17133','727','112','virtualIpAddress','0','111'), ('17134','727','113','mpc','0','112'), ('17135','727','114','ipOverAtm','0','113'), ('17136','727','115','iso88025Fiber','0','114'), ('17137','727','116','tdlc','0','115'), ('17138','727','117','gigabitEthernet','0','116'), ('17139','727','118','hdlc','0','117'), ('17140','727','119','lapf','0','118'), ('17141','727','120','v37','0','119'), ('17142','727','121','x25mlp','0','120'), ('17143','727','122','x25huntGroup','0','121'), ('17144','727','123','trasnpHdlc','0','122'), ('17145','727','124','interleave','0','123'), ('17146','727','125','fast','0','124'), ('17147','727','126','ip','0','125'), ('17148','727','127','docsCableMaclayer','0','126'), ('17149','727','128','docsCableDownstream','0','127'), ('17150','727','129','docsCableUpstream','0','128'), ('17151','727','130','a12MppSwitch','0','129'), ('17152','727','131','tunnel','0','130'), ('17153','727','132','coffee','0','131'), ('17154','727','133','ces','0','132'), ('17155','727','134','atmSubInterface','0','133'), ('17156','727','135','l2vlan','0','134'), ('17157','727','136','l3ipvlan','0','135'), ('17158','727','137','l3ipxvlan','0','136'), ('17159','727','138','digitalPowerline','0','137'), ('17160','727','139','mediaMailOverIp','0','138'), ('17161','727','140','dtm','0','139'), ('17162','727','141','dcn','0','140'), ('17163','727','142','ipForward','0','141'), ('17164','727','143','msdsl','0','142'), ('17165','727','144','ieee1394','0','143'), ('17166','727','145','if-gsn','0','144'), ('17167','727','146','dvbRccMacLayer','0','145'), ('17168','727','147','dvbRccDownstream','0','146'), ('17169','727','148','dvbRccUpstream','0','147'), ('17170','727','149','atmVirtual','0','148'), ('17171','727','150','mplsTunnel','0','149'), ('17172','727','151','srp','0','150'), ('17173','727','152','voiceOverAtm','0','151'), ('17174','727','153','voiceOverFrameRelay','0','152'), ('17175','727','154','idsl','0','153'), ('17176','727','155','compositeLink','0','154'), ('17177','727','156','ss7SigLink','0','155'), ('17178','727','157','propWirelessP2P','0','156'), ('17179','727','158','frForward','0','157'), ('17180','727','159','rfc1483','0','158'), ('17181','727','160','usb','0','159'), ('17182','727','161','ieee8023adLag','0','160'), ('17183','727','162','bgppolicyaccounting','0','161'), ('17184','727','163','frf16MfrBundle','0','162'), ('17185','727','164','h323Gatekeeper','0','163'), ('17186','727','165','h323Proxy','0','164'), ('17187','727','166','mpls','0','165'), ('17188','727','167','mfSigLink','0','166'), ('17189','727','168','hdsl2','0','167'), ('17190','727','169','shdsl','0','168'), ('17191','727','170','ds1FDL','0','169'), ('17192','727','171','pos','0','170'), ('17193','727','172','dvbAsiIn','0','171'), ('17194','727','173','dvbAsiOut','0','172'), ('17195','727','174','plc','0','173'), ('17196','727','175','nfas','0','174'), ('17197','727','176','tr008','0','175'), ('17198','727','177','gr303RDT','0','176'), ('17199','727','178','gr303IDT','0','177'), ('17200','727','179','isup','0','178'), ('17201','727','180','propDocsWirelessMaclayer','0','179'), ('17202','727','181','propDocsWirelessDownstream','0','180'), ('17203','727','182','propDocsWirelessUpstream','0','181'), ('17204','727','183','hiperlan2','0','182'), ('17205','727','184','propBWAp2Mp','0','183'), ('17206','727','185','sonetOverheadChannel','0','184'), ('17207','727','186','digitalWrapperOverheadChannel','0','185'), ('17208','727','187','aal2','0','186'), ('17209','727','188','radioMAC','0','187'), ('17210','727','189','atmRadio','0','188'), ('17211','727','190','imt','0','189'), ('17212','727','191','mvl','0','190'), ('17213','727','192','reachDSL','0','191'), ('17214','727','193','frDlciEndPt','0','192'), ('17215','727','194','atmVciEndPt','0','193'), ('17216','727','195','opticalChannel','0','194'), ('17217','727','196','opticalTransport','0','195'), ('17218','727','197','propAtm','0','196'), ('17219','727','198','voiceOverCable','0','197'), ('17220','727','199','infiniband','0','198'), ('17221','727','200','teLink','0','199'), ('17222','727','201','q2931','0','200'), ('17223','727','202','virtualTg','0','201'), ('17224','727','203','sipTg','0','202'), ('17225','727','204','sipSig','0','203'), ('17226','727','205','docsCableUpstreamChannel','0','204'), ('17227','727','206','econet','0','205'), ('17228','727','207','pon155','0','206'), ('17229','727','208','pon622','0','207'), ('17230','727','209','bridge','0','208'), ('17231','727','210','linegroup','0','209'), ('17232','727','211','voiceEMFGD','0','210'), ('17233','727','212','voiceFGDEANA','0','211'), ('17234','727','213','voiceDID','0','212'), ('17235','727','214','mpegTransport','0','213'), ('17236','727','215','sixToFour','0','214'), ('17237','727','216','gtp','0','215'), ('17238','727','217','pdnEtherLoop1','0','216'), ('17239','727','218','pdnEtherLoop2','0','217'), ('17240','727','219','opticalChannelGroup','0','218'), ('17241','727','220','homepna','0','219'), ('17242','727','221','gfp','0','220'), ('17243','727','222','ciscoISLvlan','0','221'), ('17244','727','223','actelisMetaLOOP','0','222'), ('17245','727','224','fcipLink','0','223'), ('17246','727','225','rpr','0','224'), ('17247','727','226','qam','0','225'), ('17248','727','227','lmp','0','226'), ('17249','727','228','cblVectaStar','0','227'), ('17250','727','229','docsCableMCmtsDownstream','0','228'), ('17251','727','230','adsl2','0','229'), ('17252','727','231','macSecControlledIF','0','230'), ('17253','727','232','macSecUncontrolledIF','0','231'), ('17254','727','233','aviciOpticalEther','0','232'), ('17255','727','234','atmbond','0','233'), ('17256','727','235','voiceFGDOS','0','234'), ('17257','727','236','mocaVersion1','0','235'), ('17258','727','237','ieee80216WMAN','0','236'), ('17259','727','238','adsl2plus','0','237'), ('17260','727','239','dvbRcsMacLayer','0','238'), ('17261','727','240','dvbTdm','0','239'), ('17262','727','241','dvbRcsTdma','0','240'), ('17263','727','242','x86Laps','0','241'), ('17264','727','243','wwanPP','0','242'), ('17265','727','244','wwanPP2','0','243'), ('17266','727','245','voiceEBS','0','244'), ('17267','727','246','ifPwType','0','245'), ('17268','727','247','ilan','0','246'), ('17269','727','248','pip','0','247'), ('17270','727','249','aluELP','0','248'), ('17271','727','250','gpon','0','249'), ('17272','727','251','vdsl2','0','250'), ('17273','727','252','capwapDot11Profile','0','251'), ('17274','727','253','capwapDot11Bss','0','252'), ('17275','727','254','capwapWtpVirtualRadio','0','253'), ('17276','727','255','bits','0','254'), ('17277','727','256','docsCableUpstreamRfPort','0','255'), ('17278','727','257','cableDownstreamRfPort','0','256'), ('17279','727','258','vmwareVirtualNic','0','257'), ('17280','727','259','ieee802154','0','258'), ('17281','727','260','otnOdu','0','259'), ('17282','727','261','otnOtu','0','260'), ('17283','727','262','ifVfiType','0','261'), ('17284','727','263','g9981','0','262'), ('17285','727','264','g9982','0','263'), ('17286','727','265','g9983','0','264'), ('17287','727','266','aluEpon','0','265'), ('17288','727','267','aluEponOnu','0','266'), ('17289','727','268','aluEponPhysicalUni','0','267'), ('17290','727','269','aluEponLogicalLink','0','268'), ('17291','727','270','aluGponOnu','0','269'), ('17292','727','271','aluGponPhysicalUni','0','270'), ('17293','727','272','vmwareNicTeam','0','271'), ('17294','727','277','docsOfdmDownstream','0','272'), ('17295','727','278','docsOfdmaUpstream','0','273'), ('17296','727','279','gfast','0','274'), ('17297','727','280','sdci','0','275'), ('17298','727','281','xboxWireless','0','276'), ('17299','727','282','fastdsl','0','277'), ('17300','727','283','docsCableScte55d1FwdOob','0','278'), ('17301','727','284','docsCableScte55d1RetOob','0','279'), ('17302','727','285','docsCableScte55d2DsOob','0','280'), ('17303','727','286','docsCableScte55d2UsOob','0','281'), ('17304','727','287','docsCableNdf','0','282'), ('17305','727','288','docsCableNdr','0','283'), ('17306','727','289','ptm','0','284'), ('17307','727','290','ghn','0','285'), ('17308','728','0','Down','0','0'), ('17309','728','1','Up','0','1'), ('17310','729','0','not available','0','0'), ('17311','729','1','available','0','1'), ('17312','729','2','unknown','0','2'), ('17313','730','1','up','0','0'), ('17314','730','2','down','0','1'), ('17315','730','4','unknown','0','2'), ('17316','730','5','dormant','0','3'), ('17317','730','6','notPresent','0','4'), ('17318','730','7','lowerLayerDown','0','5'), ('17319','731','1','other','0','0'), ('17320','731','2','regular1822','0','1'), ('17321','731','3','hdh1822','0','2'), ('17322','731','4','ddnX25','0','3'), ('17323','731','5','rfc877x25','0','4'), ('17324','731','6','ethernetCsmacd','0','5'), ('17325','731','7','iso88023Csmacd','0','6'), ('17326','731','8','iso88024TokenBus','0','7'), ('17327','731','9','iso88025TokenRing','0','8'), ('17328','731','10','iso88026Man','0','9'), ('17329','731','11','starLan','0','10'), ('17330','731','12','proteon10Mbit','0','11'), ('17331','731','13','proteon80Mbit','0','12'), ('17332','731','14','hyperchannel','0','13'), ('17333','731','15','fddi','0','14'), ('17334','731','16','lapb','0','15'), ('17335','731','17','sdlc','0','16'), ('17336','731','18','ds1','0','17'), ('17337','731','19','e1','0','18'), ('17338','731','20','basicISDN','0','19'), ('17339','731','21','primaryISDN','0','20'), ('17340','731','22','propPointToPointSerial','0','21'), ('17341','731','23','ppp','0','22'), ('17342','731','24','softwareLoopback','0','23'), ('17343','731','25','eon','0','24'), ('17344','731','26','ethernet3Mbit','0','25'), ('17345','731','27','nsip','0','26'), ('17346','731','28','slip','0','27'), ('17347','731','29','ultra','0','28'), ('17348','731','30','ds3','0','29'), ('17349','731','31','sip','0','30'), ('17350','731','32','frameRelay','0','31'), ('17351','731','33','rs232','0','32'), ('17352','731','34','para','0','33'), ('17353','731','35','arcnet','0','34'), ('17354','731','36','arcnetPlus','0','35'), ('17355','731','37','atm','0','36'), ('17356','731','38','miox25','0','37'), ('17357','731','39','sonet','0','38'), ('17358','731','40','x25ple','0','39'), ('17359','731','41','iso88022llc','0','40'), ('17360','731','42','localTalk','0','41'), ('17361','731','43','smdsDxi','0','42'), ('17362','731','44','frameRelayService','0','43'), ('17363','731','45','v35','0','44'), ('17364','731','46','hssi','0','45'), ('17365','731','47','hippi','0','46'), ('17366','731','48','modem','0','47'), ('17367','731','49','aal5','0','48'), ('17368','731','50','sonetPath','0','49'), ('17369','731','51','sonetVT','0','50'), ('17370','731','52','smdsIcip','0','51'), ('17371','731','53','propVirtual','0','52'), ('17372','731','54','propMultiplexor','0','53'), ('17373','731','55','ieee80212','0','54'), ('17374','731','56','fibreChannel','0','55'), ('17375','731','57','hippiInterface','0','56'), ('17376','731','58','frameRelayInterconnect','0','57'), ('17377','731','59','aflane8023','0','58'), ('17378','731','60','aflane8025','0','59'), ('17379','731','61','cctEmul','0','60'), ('17380','731','62','fastEther','0','61'), ('17381','731','63','isdn','0','62'), ('17382','731','64','v11','0','63'), ('17383','731','65','v36','0','64'), ('17384','731','66','g703at64k','0','65'), ('17385','731','67','g703at2mb','0','66'), ('17386','731','68','qllc','0','67'), ('17387','731','69','fastEtherFX','0','68'), ('17388','731','70','channel','0','69'), ('17389','731','71','ieee80211','0','70'), ('17390','731','72','ibm370parChan','0','71'), ('17391','731','73','escon','0','72'), ('17392','731','74','dlsw','0','73'), ('17393','731','75','isdns','0','74'), ('17394','731','76','isdnu','0','75'), ('17395','731','77','lapd','0','76'), ('17396','731','78','ipSwitch','0','77'), ('17397','731','79','rsrb','0','78'), ('17398','731','80','atmLogical','0','79'), ('17399','731','81','ds0','0','80'), ('17400','731','82','ds0Bundle','0','81'), ('17401','731','83','bsc','0','82'), ('17402','731','84','async','0','83'), ('17403','731','85','cnr','0','84'), ('17404','731','86','iso88025Dtr','0','85'), ('17405','731','87','eplrs','0','86'), ('17406','731','88','arap','0','87'), ('17407','731','89','propCnls','0','88'), ('17408','731','90','hostPad','0','89'), ('17409','731','91','termPad','0','90'), ('17410','731','92','frameRelayMPI','0','91'), ('17411','731','93','x213','0','92'), ('17412','731','94','adsl','0','93'), ('17413','731','95','radsl','0','94'), ('17414','731','96','sdsl','0','95'), ('17415','731','97','vdsl','0','96'), ('17416','731','98','iso88025CRFPInt','0','97'), ('17417','731','99','myrinet','0','98'), ('17418','731','100','voiceEM','0','99'), ('17419','731','101','voiceFXO','0','100'), ('17420','731','102','voiceFXS','0','101'), ('17421','731','103','voiceEncap','0','102'), ('17422','731','104','voiceOverIp','0','103'), ('17423','731','105','atmDxi','0','104'), ('17424','731','106','atmFuni','0','105'), ('17425','731','107','atmIma','0','106'), ('17426','731','108','pppMultilinkBundle','0','107'), ('17427','731','109','ipOverCdlc','0','108'), ('17428','731','110','ipOverClaw','0','109'), ('17429','731','111','stackToStack','0','110'), ('17430','731','112','virtualIpAddress','0','111'), ('17431','731','113','mpc','0','112'), ('17432','731','114','ipOverAtm','0','113'), ('17433','731','115','iso88025Fiber','0','114'), ('17434','731','116','tdlc','0','115'), ('17435','731','117','gigabitEthernet','0','116'), ('17436','731','118','hdlc','0','117'), ('17437','731','119','lapf','0','118'), ('17438','731','120','v37','0','119'), ('17439','731','121','x25mlp','0','120'), ('17440','731','122','x25huntGroup','0','121'), ('17441','731','123','trasnpHdlc','0','122'), ('17442','731','124','interleave','0','123'), ('17443','731','125','fast','0','124'), ('17444','731','126','ip','0','125'), ('17445','731','127','docsCableMaclayer','0','126'), ('17446','731','128','docsCableDownstream','0','127'), ('17447','731','129','docsCableUpstream','0','128'), ('17448','731','130','a12MppSwitch','0','129'), ('17449','731','131','tunnel','0','130'), ('17450','731','132','coffee','0','131'), ('17451','731','133','ces','0','132'), ('17452','731','134','atmSubInterface','0','133'), ('17453','731','135','l2vlan','0','134'), ('17454','731','136','l3ipvlan','0','135'), ('17455','731','137','l3ipxvlan','0','136'), ('17456','731','138','digitalPowerline','0','137'), ('17457','731','139','mediaMailOverIp','0','138'), ('17458','731','140','dtm','0','139'), ('17459','731','141','dcn','0','140'), ('17460','731','142','ipForward','0','141'), ('17461','731','143','msdsl','0','142'), ('17462','731','144','ieee1394','0','143'), ('17463','731','145','if-gsn','0','144'), ('17464','731','146','dvbRccMacLayer','0','145'), ('17465','731','147','dvbRccDownstream','0','146'), ('17466','731','148','dvbRccUpstream','0','147'), ('17467','731','149','atmVirtual','0','148'), ('17468','731','150','mplsTunnel','0','149'), ('17469','731','151','srp','0','150'), ('17470','731','152','voiceOverAtm','0','151'), ('17471','731','153','voiceOverFrameRelay','0','152'), ('17472','731','154','idsl','0','153'), ('17473','731','155','compositeLink','0','154'), ('17474','731','156','ss7SigLink','0','155'), ('17475','731','157','propWirelessP2P','0','156'), ('17476','731','158','frForward','0','157'), ('17477','731','159','rfc1483','0','158'), ('17478','731','160','usb','0','159'), ('17479','731','161','ieee8023adLag','0','160'), ('17480','731','162','bgppolicyaccounting','0','161'), ('17481','731','163','frf16MfrBundle','0','162'), ('17482','731','164','h323Gatekeeper','0','163'), ('17483','731','165','h323Proxy','0','164'), ('17484','731','166','mpls','0','165'), ('17485','731','167','mfSigLink','0','166'), ('17486','731','168','hdsl2','0','167'), ('17487','731','169','shdsl','0','168'), ('17488','731','170','ds1FDL','0','169'), ('17489','731','171','pos','0','170'), ('17490','731','172','dvbAsiIn','0','171'), ('17491','731','173','dvbAsiOut','0','172'), ('17492','731','174','plc','0','173'), ('17493','731','175','nfas','0','174'), ('17494','731','176','tr008','0','175'), ('17495','731','177','gr303RDT','0','176'), ('17496','731','178','gr303IDT','0','177'), ('17497','731','179','isup','0','178'), ('17498','731','180','propDocsWirelessMaclayer','0','179'), ('17499','731','181','propDocsWirelessDownstream','0','180'), ('17500','731','182','propDocsWirelessUpstream','0','181'), ('17501','731','183','hiperlan2','0','182'), ('17502','731','184','propBWAp2Mp','0','183'), ('17503','731','185','sonetOverheadChannel','0','184'), ('17504','731','186','digitalWrapperOverheadChannel','0','185'), ('17505','731','187','aal2','0','186'), ('17506','731','188','radioMAC','0','187'), ('17507','731','189','atmRadio','0','188'), ('17508','731','190','imt','0','189'), ('17509','731','191','mvl','0','190'), ('17510','731','192','reachDSL','0','191'), ('17511','731','193','frDlciEndPt','0','192'), ('17512','731','194','atmVciEndPt','0','193'), ('17513','731','195','opticalChannel','0','194'), ('17514','731','196','opticalTransport','0','195'), ('17515','731','197','propAtm','0','196'), ('17516','731','198','voiceOverCable','0','197'), ('17517','731','199','infiniband','0','198'), ('17518','731','200','teLink','0','199'), ('17519','731','201','q2931','0','200'), ('17520','731','202','virtualTg','0','201'), ('17521','731','203','sipTg','0','202'), ('17522','731','204','sipSig','0','203'), ('17523','731','205','docsCableUpstreamChannel','0','204'), ('17524','731','206','econet','0','205'), ('17525','731','207','pon155','0','206'), ('17526','731','208','pon622','0','207'), ('17527','731','209','bridge','0','208'), ('17528','731','210','linegroup','0','209'), ('17529','731','211','voiceEMFGD','0','210'), ('17530','731','212','voiceFGDEANA','0','211'), ('17531','731','213','voiceDID','0','212'), ('17532','731','214','mpegTransport','0','213'), ('17533','731','215','sixToFour','0','214'), ('17534','731','216','gtp','0','215'), ('17535','731','217','pdnEtherLoop1','0','216'), ('17536','731','218','pdnEtherLoop2','0','217'), ('17537','731','219','opticalChannelGroup','0','218'), ('17538','731','220','homepna','0','219'), ('17539','731','221','gfp','0','220'), ('17540','731','222','ciscoISLvlan','0','221'), ('17541','731','223','actelisMetaLOOP','0','222'), ('17542','731','224','fcipLink','0','223'), ('17543','731','225','rpr','0','224'), ('17544','731','226','qam','0','225'), ('17545','731','227','lmp','0','226'), ('17546','731','228','cblVectaStar','0','227'), ('17547','731','229','docsCableMCmtsDownstream','0','228'), ('17548','731','230','adsl2','0','229'), ('17549','731','231','macSecControlledIF','0','230'), ('17550','731','232','macSecUncontrolledIF','0','231'), ('17551','731','233','aviciOpticalEther','0','232'), ('17552','731','234','atmbond','0','233'), ('17553','731','235','voiceFGDOS','0','234'), ('17554','731','236','mocaVersion1','0','235'), ('17555','731','237','ieee80216WMAN','0','236'), ('17556','731','238','adsl2plus','0','237'), ('17557','731','239','dvbRcsMacLayer','0','238'), ('17558','731','240','dvbTdm','0','239'), ('17559','731','241','dvbRcsTdma','0','240'), ('17560','731','242','x86Laps','0','241'), ('17561','731','243','wwanPP','0','242'), ('17562','731','244','wwanPP2','0','243'), ('17563','731','245','voiceEBS','0','244'), ('17564','731','246','ifPwType','0','245'), ('17565','731','247','ilan','0','246'), ('17566','731','248','pip','0','247'), ('17567','731','249','aluELP','0','248'), ('17568','731','250','gpon','0','249'), ('17569','731','251','vdsl2','0','250'), ('17570','731','252','capwapDot11Profile','0','251'), ('17571','731','253','capwapDot11Bss','0','252'), ('17572','731','254','capwapWtpVirtualRadio','0','253'), ('17573','731','255','bits','0','254'), ('17574','731','256','docsCableUpstreamRfPort','0','255'), ('17575','731','257','cableDownstreamRfPort','0','256'), ('17576','731','258','vmwareVirtualNic','0','257'), ('17577','731','259','ieee802154','0','258'), ('17578','731','260','otnOdu','0','259'), ('17579','731','261','otnOtu','0','260'), ('17580','731','262','ifVfiType','0','261'), ('17581','731','263','g9981','0','262'), ('17582','731','264','g9982','0','263'), ('17583','731','265','g9983','0','264'), ('17584','731','266','aluEpon','0','265'), ('17585','731','267','aluEponOnu','0','266'), ('17586','731','268','aluEponPhysicalUni','0','267'), ('17587','731','269','aluEponLogicalLink','0','268'), ('17588','731','270','aluGponOnu','0','269'), ('17589','731','271','aluGponPhysicalUni','0','270'), ('17590','731','272','vmwareNicTeam','0','271'), ('17591','731','277','docsOfdmDownstream','0','272'), ('17592','731','278','docsOfdmaUpstream','0','273'), ('17593','731','279','gfast','0','274'), ('17594','731','280','sdci','0','275'), ('17595','731','281','xboxWireless','0','276'), ('17596','731','282','fastdsl','0','277'), ('17597','731','283','docsCableScte55d1FwdOob','0','278'), ('17598','731','284','docsCableScte55d1RetOob','0','279'), ('17599','731','285','docsCableScte55d2DsOob','0','280'), ('17600','731','286','docsCableScte55d2UsOob','0','281'), ('17601','731','287','docsCableNdf','0','282'), ('17602','731','288','docsCableNdr','0','283'), ('17603','731','289','ptm','0','284'), ('17604','731','290','ghn','0','285'), ('17605','732','0','Down','0','0'), ('17606','732','1','Up','0','1'), ('17607','733','0','not available','0','0'), ('17608','733','1','available','0','1'), ('17609','733','2','unknown','0','2'), ('17610','734','1','up','0','0'), ('17611','734','2','down','0','1'), ('17612','734','4','unknown','0','2'), ('17613','734','5','dormant','0','3'), ('17614','734','6','notPresent','0','4'), ('17615','734','7','lowerLayerDown','0','5'), ('17616','735','1','other','0','0'), ('17617','735','2','regular1822','0','1'), ('17618','735','3','hdh1822','0','2'), ('17619','735','4','ddnX25','0','3'), ('17620','735','5','rfc877x25','0','4'), ('17621','735','6','ethernetCsmacd','0','5'), ('17622','735','7','iso88023Csmacd','0','6'), ('17623','735','8','iso88024TokenBus','0','7'), ('17624','735','9','iso88025TokenRing','0','8'), ('17625','735','10','iso88026Man','0','9'), ('17626','735','11','starLan','0','10'), ('17627','735','12','proteon10Mbit','0','11'), ('17628','735','13','proteon80Mbit','0','12'), ('17629','735','14','hyperchannel','0','13'), ('17630','735','15','fddi','0','14'), ('17631','735','16','lapb','0','15'), ('17632','735','17','sdlc','0','16'), ('17633','735','18','ds1','0','17'), ('17634','735','19','e1','0','18'), ('17635','735','20','basicISDN','0','19'), ('17636','735','21','primaryISDN','0','20'), ('17637','735','22','propPointToPointSerial','0','21'), ('17638','735','23','ppp','0','22'), ('17639','735','24','softwareLoopback','0','23'), ('17640','735','25','eon','0','24'), ('17641','735','26','ethernet3Mbit','0','25'), ('17642','735','27','nsip','0','26'), ('17643','735','28','slip','0','27'), ('17644','735','29','ultra','0','28'), ('17645','735','30','ds3','0','29'), ('17646','735','31','sip','0','30'), ('17647','735','32','frameRelay','0','31'), ('17648','735','33','rs232','0','32'), ('17649','735','34','para','0','33'), ('17650','735','35','arcnet','0','34'), ('17651','735','36','arcnetPlus','0','35'), ('17652','735','37','atm','0','36'), ('17653','735','38','miox25','0','37'), ('17654','735','39','sonet','0','38'), ('17655','735','40','x25ple','0','39'), ('17656','735','41','iso88022llc','0','40'), ('17657','735','42','localTalk','0','41'), ('17658','735','43','smdsDxi','0','42'), ('17659','735','44','frameRelayService','0','43'), ('17660','735','45','v35','0','44'), ('17661','735','46','hssi','0','45'), ('17662','735','47','hippi','0','46'), ('17663','735','48','modem','0','47'), ('17664','735','49','aal5','0','48'), ('17665','735','50','sonetPath','0','49'), ('17666','735','51','sonetVT','0','50'), ('17667','735','52','smdsIcip','0','51'), ('17668','735','53','propVirtual','0','52'), ('17669','735','54','propMultiplexor','0','53'), ('17670','735','55','ieee80212','0','54'), ('17671','735','56','fibreChannel','0','55'), ('17672','735','57','hippiInterface','0','56'), ('17673','735','58','frameRelayInterconnect','0','57'), ('17674','735','59','aflane8023','0','58'), ('17675','735','60','aflane8025','0','59'), ('17676','735','61','cctEmul','0','60'), ('17677','735','62','fastEther','0','61'), ('17678','735','63','isdn','0','62'), ('17679','735','64','v11','0','63'), ('17680','735','65','v36','0','64'), ('17681','735','66','g703at64k','0','65'), ('17682','735','67','g703at2mb','0','66'), ('17683','735','68','qllc','0','67'), ('17684','735','69','fastEtherFX','0','68'), ('17685','735','70','channel','0','69'), ('17686','735','71','ieee80211','0','70'), ('17687','735','72','ibm370parChan','0','71'), ('17688','735','73','escon','0','72'), ('17689','735','74','dlsw','0','73'), ('17690','735','75','isdns','0','74'), ('17691','735','76','isdnu','0','75'), ('17692','735','77','lapd','0','76'), ('17693','735','78','ipSwitch','0','77'), ('17694','735','79','rsrb','0','78'), ('17695','735','80','atmLogical','0','79'), ('17696','735','81','ds0','0','80'), ('17697','735','82','ds0Bundle','0','81'), ('17698','735','83','bsc','0','82'), ('17699','735','84','async','0','83'), ('17700','735','85','cnr','0','84'), ('17701','735','86','iso88025Dtr','0','85'), ('17702','735','87','eplrs','0','86'), ('17703','735','88','arap','0','87'), ('17704','735','89','propCnls','0','88'), ('17705','735','90','hostPad','0','89'), ('17706','735','91','termPad','0','90'), ('17707','735','92','frameRelayMPI','0','91'), ('17708','735','93','x213','0','92'), ('17709','735','94','adsl','0','93'), ('17710','735','95','radsl','0','94'), ('17711','735','96','sdsl','0','95'), ('17712','735','97','vdsl','0','96'), ('17713','735','98','iso88025CRFPInt','0','97'), ('17714','735','99','myrinet','0','98'), ('17715','735','100','voiceEM','0','99'), ('17716','735','101','voiceFXO','0','100'), ('17717','735','102','voiceFXS','0','101'), ('17718','735','103','voiceEncap','0','102'), ('17719','735','104','voiceOverIp','0','103'), ('17720','735','105','atmDxi','0','104'), ('17721','735','106','atmFuni','0','105'), ('17722','735','107','atmIma','0','106'), ('17723','735','108','pppMultilinkBundle','0','107'), ('17724','735','109','ipOverCdlc','0','108'), ('17725','735','110','ipOverClaw','0','109'), ('17726','735','111','stackToStack','0','110'), ('17727','735','112','virtualIpAddress','0','111'), ('17728','735','113','mpc','0','112'), ('17729','735','114','ipOverAtm','0','113'), ('17730','735','115','iso88025Fiber','0','114'), ('17731','735','116','tdlc','0','115'), ('17732','735','117','gigabitEthernet','0','116'), ('17733','735','118','hdlc','0','117'), ('17734','735','119','lapf','0','118'), ('17735','735','120','v37','0','119'), ('17736','735','121','x25mlp','0','120'), ('17737','735','122','x25huntGroup','0','121'), ('17738','735','123','trasnpHdlc','0','122'), ('17739','735','124','interleave','0','123'), ('17740','735','125','fast','0','124'), ('17741','735','126','ip','0','125'), ('17742','735','127','docsCableMaclayer','0','126'), ('17743','735','128','docsCableDownstream','0','127'), ('17744','735','129','docsCableUpstream','0','128'), ('17745','735','130','a12MppSwitch','0','129'), ('17746','735','131','tunnel','0','130'), ('17747','735','132','coffee','0','131'), ('17748','735','133','ces','0','132'), ('17749','735','134','atmSubInterface','0','133'), ('17750','735','135','l2vlan','0','134'), ('17751','735','136','l3ipvlan','0','135'), ('17752','735','137','l3ipxvlan','0','136'), ('17753','735','138','digitalPowerline','0','137'), ('17754','735','139','mediaMailOverIp','0','138'), ('17755','735','140','dtm','0','139'), ('17756','735','141','dcn','0','140'), ('17757','735','142','ipForward','0','141'), ('17758','735','143','msdsl','0','142'), ('17759','735','144','ieee1394','0','143'), ('17760','735','145','if-gsn','0','144'), ('17761','735','146','dvbRccMacLayer','0','145'), ('17762','735','147','dvbRccDownstream','0','146'), ('17763','735','148','dvbRccUpstream','0','147'), ('17764','735','149','atmVirtual','0','148'), ('17765','735','150','mplsTunnel','0','149'), ('17766','735','151','srp','0','150'), ('17767','735','152','voiceOverAtm','0','151'), ('17768','735','153','voiceOverFrameRelay','0','152'), ('17769','735','154','idsl','0','153'), ('17770','735','155','compositeLink','0','154'), ('17771','735','156','ss7SigLink','0','155'), ('17772','735','157','propWirelessP2P','0','156'), ('17773','735','158','frForward','0','157'), ('17774','735','159','rfc1483','0','158'), ('17775','735','160','usb','0','159'), ('17776','735','161','ieee8023adLag','0','160'), ('17777','735','162','bgppolicyaccounting','0','161'), ('17778','735','163','frf16MfrBundle','0','162'), ('17779','735','164','h323Gatekeeper','0','163'), ('17780','735','165','h323Proxy','0','164'), ('17781','735','166','mpls','0','165'), ('17782','735','167','mfSigLink','0','166'), ('17783','735','168','hdsl2','0','167'), ('17784','735','169','shdsl','0','168'), ('17785','735','170','ds1FDL','0','169'), ('17786','735','171','pos','0','170'), ('17787','735','172','dvbAsiIn','0','171'), ('17788','735','173','dvbAsiOut','0','172'), ('17789','735','174','plc','0','173'), ('17790','735','175','nfas','0','174'), ('17791','735','176','tr008','0','175'), ('17792','735','177','gr303RDT','0','176'), ('17793','735','178','gr303IDT','0','177'), ('17794','735','179','isup','0','178'), ('17795','735','180','propDocsWirelessMaclayer','0','179'), ('17796','735','181','propDocsWirelessDownstream','0','180'), ('17797','735','182','propDocsWirelessUpstream','0','181'), ('17798','735','183','hiperlan2','0','182'), ('17799','735','184','propBWAp2Mp','0','183'), ('17800','735','185','sonetOverheadChannel','0','184'), ('17801','735','186','digitalWrapperOverheadChannel','0','185'), ('17802','735','187','aal2','0','186'), ('17803','735','188','radioMAC','0','187'), ('17804','735','189','atmRadio','0','188'), ('17805','735','190','imt','0','189'), ('17806','735','191','mvl','0','190'), ('17807','735','192','reachDSL','0','191'), ('17808','735','193','frDlciEndPt','0','192'), ('17809','735','194','atmVciEndPt','0','193'), ('17810','735','195','opticalChannel','0','194'), ('17811','735','196','opticalTransport','0','195'), ('17812','735','197','propAtm','0','196'), ('17813','735','198','voiceOverCable','0','197'), ('17814','735','199','infiniband','0','198'), ('17815','735','200','teLink','0','199'), ('17816','735','201','q2931','0','200'), ('17817','735','202','virtualTg','0','201'), ('17818','735','203','sipTg','0','202'), ('17819','735','204','sipSig','0','203'), ('17820','735','205','docsCableUpstreamChannel','0','204'), ('17821','735','206','econet','0','205'), ('17822','735','207','pon155','0','206'), ('17823','735','208','pon622','0','207'), ('17824','735','209','bridge','0','208'), ('17825','735','210','linegroup','0','209'), ('17826','735','211','voiceEMFGD','0','210'), ('17827','735','212','voiceFGDEANA','0','211'), ('17828','735','213','voiceDID','0','212'), ('17829','735','214','mpegTransport','0','213'), ('17830','735','215','sixToFour','0','214'), ('17831','735','216','gtp','0','215'), ('17832','735','217','pdnEtherLoop1','0','216'), ('17833','735','218','pdnEtherLoop2','0','217'), ('17834','735','219','opticalChannelGroup','0','218'), ('17835','735','220','homepna','0','219'), ('17836','735','221','gfp','0','220'), ('17837','735','222','ciscoISLvlan','0','221'), ('17838','735','223','actelisMetaLOOP','0','222'), ('17839','735','224','fcipLink','0','223'), ('17840','735','225','rpr','0','224'), ('17841','735','226','qam','0','225'), ('17842','735','227','lmp','0','226'), ('17843','735','228','cblVectaStar','0','227'), ('17844','735','229','docsCableMCmtsDownstream','0','228'), ('17845','735','230','adsl2','0','229'), ('17846','735','231','macSecControlledIF','0','230'), ('17847','735','232','macSecUncontrolledIF','0','231'), ('17848','735','233','aviciOpticalEther','0','232'), ('17849','735','234','atmbond','0','233'), ('17850','735','235','voiceFGDOS','0','234'), ('17851','735','236','mocaVersion1','0','235'), ('17852','735','237','ieee80216WMAN','0','236'), ('17853','735','238','adsl2plus','0','237'), ('17854','735','239','dvbRcsMacLayer','0','238'), ('17855','735','240','dvbTdm','0','239'), ('17856','735','241','dvbRcsTdma','0','240'), ('17857','735','242','x86Laps','0','241'), ('17858','735','243','wwanPP','0','242'), ('17859','735','244','wwanPP2','0','243'), ('17860','735','245','voiceEBS','0','244'), ('17861','735','246','ifPwType','0','245'), ('17862','735','247','ilan','0','246'), ('17863','735','248','pip','0','247'), ('17864','735','249','aluELP','0','248'), ('17865','735','250','gpon','0','249'), ('17866','735','251','vdsl2','0','250'), ('17867','735','252','capwapDot11Profile','0','251'), ('17868','735','253','capwapDot11Bss','0','252'), ('17869','735','254','capwapWtpVirtualRadio','0','253'), ('17870','735','255','bits','0','254'), ('17871','735','256','docsCableUpstreamRfPort','0','255'), ('17872','735','257','cableDownstreamRfPort','0','256'), ('17873','735','258','vmwareVirtualNic','0','257'), ('17874','735','259','ieee802154','0','258'), ('17875','735','260','otnOdu','0','259'), ('17876','735','261','otnOtu','0','260'), ('17877','735','262','ifVfiType','0','261'), ('17878','735','263','g9981','0','262'), ('17879','735','264','g9982','0','263'), ('17880','735','265','g9983','0','264'), ('17881','735','266','aluEpon','0','265'), ('17882','735','267','aluEponOnu','0','266'), ('17883','735','268','aluEponPhysicalUni','0','267'), ('17884','735','269','aluEponLogicalLink','0','268'), ('17885','735','270','aluGponOnu','0','269'), ('17886','735','271','aluGponPhysicalUni','0','270'), ('17887','735','272','vmwareNicTeam','0','271'), ('17888','735','277','docsOfdmDownstream','0','272'), ('17889','735','278','docsOfdmaUpstream','0','273'), ('17890','735','279','gfast','0','274'), ('17891','735','280','sdci','0','275'), ('17892','735','281','xboxWireless','0','276'), ('17893','735','282','fastdsl','0','277'), ('17894','735','283','docsCableScte55d1FwdOob','0','278'), ('17895','735','284','docsCableScte55d1RetOob','0','279'), ('17896','735','285','docsCableScte55d2DsOob','0','280'), ('17897','735','286','docsCableScte55d2UsOob','0','281'), ('17898','735','287','docsCableNdf','0','282'), ('17899','735','288','docsCableNdr','0','283'), ('17900','735','289','ptm','0','284'), ('17901','735','290','ghn','0','285'), ('17902','736','0','Down','0','0'), ('17903','736','1','Up','0','1'), ('17904','737','0','not available','0','0'), ('17905','737','1','available','0','1'), ('17906','737','2','unknown','0','2'), ('17907','738','1','up','0','0'), ('17908','738','2','down','0','1'), ('17909','738','4','unknown','0','2'), ('17910','738','5','dormant','0','3'), ('17911','738','6','notPresent','0','4'), ('17912','738','7','lowerLayerDown','0','5'), ('17913','739','1','other','0','0'), ('17914','739','2','regular1822','0','1'), ('17915','739','3','hdh1822','0','2'), ('17916','739','4','ddnX25','0','3'), ('17917','739','5','rfc877x25','0','4'), ('17918','739','6','ethernetCsmacd','0','5'), ('17919','739','7','iso88023Csmacd','0','6'), ('17920','739','8','iso88024TokenBus','0','7'), ('17921','739','9','iso88025TokenRing','0','8'), ('17922','739','10','iso88026Man','0','9'), ('17923','739','11','starLan','0','10'), ('17924','739','12','proteon10Mbit','0','11'), ('17925','739','13','proteon80Mbit','0','12'), ('17926','739','14','hyperchannel','0','13'), ('17927','739','15','fddi','0','14'), ('17928','739','16','lapb','0','15'), ('17929','739','17','sdlc','0','16'), ('17930','739','18','ds1','0','17'), ('17931','739','19','e1','0','18'), ('17932','739','20','basicISDN','0','19'), ('17933','739','21','primaryISDN','0','20'), ('17934','739','22','propPointToPointSerial','0','21'), ('17935','739','23','ppp','0','22'), ('17936','739','24','softwareLoopback','0','23'), ('17937','739','25','eon','0','24'), ('17938','739','26','ethernet3Mbit','0','25'), ('17939','739','27','nsip','0','26'), ('17940','739','28','slip','0','27'), ('17941','739','29','ultra','0','28'), ('17942','739','30','ds3','0','29'), ('17943','739','31','sip','0','30'), ('17944','739','32','frameRelay','0','31'), ('17945','739','33','rs232','0','32'), ('17946','739','34','para','0','33'), ('17947','739','35','arcnet','0','34'), ('17948','739','36','arcnetPlus','0','35'), ('17949','739','37','atm','0','36'), ('17950','739','38','miox25','0','37'), ('17951','739','39','sonet','0','38'), ('17952','739','40','x25ple','0','39'), ('17953','739','41','iso88022llc','0','40'), ('17954','739','42','localTalk','0','41'), ('17955','739','43','smdsDxi','0','42'), ('17956','739','44','frameRelayService','0','43'), ('17957','739','45','v35','0','44'), ('17958','739','46','hssi','0','45'), ('17959','739','47','hippi','0','46'), ('17960','739','48','modem','0','47'), ('17961','739','49','aal5','0','48'), ('17962','739','50','sonetPath','0','49'), ('17963','739','51','sonetVT','0','50'), ('17964','739','52','smdsIcip','0','51'), ('17965','739','53','propVirtual','0','52'), ('17966','739','54','propMultiplexor','0','53'), ('17967','739','55','ieee80212','0','54'), ('17968','739','56','fibreChannel','0','55'), ('17969','739','57','hippiInterface','0','56'), ('17970','739','58','frameRelayInterconnect','0','57'), ('17971','739','59','aflane8023','0','58'), ('17972','739','60','aflane8025','0','59'), ('17973','739','61','cctEmul','0','60'), ('17974','739','62','fastEther','0','61'), ('17975','739','63','isdn','0','62'), ('17976','739','64','v11','0','63'), ('17977','739','65','v36','0','64'), ('17978','739','66','g703at64k','0','65'), ('17979','739','67','g703at2mb','0','66'), ('17980','739','68','qllc','0','67'), ('17981','739','69','fastEtherFX','0','68'), ('17982','739','70','channel','0','69'), ('17983','739','71','ieee80211','0','70'), ('17984','739','72','ibm370parChan','0','71'), ('17985','739','73','escon','0','72'), ('17986','739','74','dlsw','0','73'), ('17987','739','75','isdns','0','74'), ('17988','739','76','isdnu','0','75'), ('17989','739','77','lapd','0','76'), ('17990','739','78','ipSwitch','0','77'), ('17991','739','79','rsrb','0','78'), ('17992','739','80','atmLogical','0','79'), ('17993','739','81','ds0','0','80'), ('17994','739','82','ds0Bundle','0','81'), ('17995','739','83','bsc','0','82'), ('17996','739','84','async','0','83'), ('17997','739','85','cnr','0','84'), ('17998','739','86','iso88025Dtr','0','85'), ('17999','739','87','eplrs','0','86'), ('18000','739','88','arap','0','87'), ('18001','739','89','propCnls','0','88'), ('18002','739','90','hostPad','0','89'), ('18003','739','91','termPad','0','90'), ('18004','739','92','frameRelayMPI','0','91'), ('18005','739','93','x213','0','92'), ('18006','739','94','adsl','0','93'), ('18007','739','95','radsl','0','94'), ('18008','739','96','sdsl','0','95'), ('18009','739','97','vdsl','0','96'), ('18010','739','98','iso88025CRFPInt','0','97'), ('18011','739','99','myrinet','0','98'), ('18012','739','100','voiceEM','0','99'), ('18013','739','101','voiceFXO','0','100'), ('18014','739','102','voiceFXS','0','101'), ('18015','739','103','voiceEncap','0','102'), ('18016','739','104','voiceOverIp','0','103'), ('18017','739','105','atmDxi','0','104'), ('18018','739','106','atmFuni','0','105'), ('18019','739','107','atmIma','0','106'), ('18020','739','108','pppMultilinkBundle','0','107'), ('18021','739','109','ipOverCdlc','0','108'), ('18022','739','110','ipOverClaw','0','109'), ('18023','739','111','stackToStack','0','110'), ('18024','739','112','virtualIpAddress','0','111'), ('18025','739','113','mpc','0','112'), ('18026','739','114','ipOverAtm','0','113'), ('18027','739','115','iso88025Fiber','0','114'), ('18028','739','116','tdlc','0','115'), ('18029','739','117','gigabitEthernet','0','116'), ('18030','739','118','hdlc','0','117'), ('18031','739','119','lapf','0','118'), ('18032','739','120','v37','0','119'), ('18033','739','121','x25mlp','0','120'), ('18034','739','122','x25huntGroup','0','121'), ('18035','739','123','trasnpHdlc','0','122'), ('18036','739','124','interleave','0','123'), ('18037','739','125','fast','0','124'), ('18038','739','126','ip','0','125'), ('18039','739','127','docsCableMaclayer','0','126'), ('18040','739','128','docsCableDownstream','0','127'), ('18041','739','129','docsCableUpstream','0','128'), ('18042','739','130','a12MppSwitch','0','129'), ('18043','739','131','tunnel','0','130'), ('18044','739','132','coffee','0','131'), ('18045','739','133','ces','0','132'), ('18046','739','134','atmSubInterface','0','133'), ('18047','739','135','l2vlan','0','134'), ('18048','739','136','l3ipvlan','0','135'), ('18049','739','137','l3ipxvlan','0','136'), ('18050','739','138','digitalPowerline','0','137'), ('18051','739','139','mediaMailOverIp','0','138'), ('18052','739','140','dtm','0','139'), ('18053','739','141','dcn','0','140'), ('18054','739','142','ipForward','0','141'), ('18055','739','143','msdsl','0','142'), ('18056','739','144','ieee1394','0','143'), ('18057','739','145','if-gsn','0','144'), ('18058','739','146','dvbRccMacLayer','0','145'), ('18059','739','147','dvbRccDownstream','0','146'), ('18060','739','148','dvbRccUpstream','0','147'), ('18061','739','149','atmVirtual','0','148'), ('18062','739','150','mplsTunnel','0','149'), ('18063','739','151','srp','0','150'), ('18064','739','152','voiceOverAtm','0','151'), ('18065','739','153','voiceOverFrameRelay','0','152'), ('18066','739','154','idsl','0','153'), ('18067','739','155','compositeLink','0','154'), ('18068','739','156','ss7SigLink','0','155'), ('18069','739','157','propWirelessP2P','0','156'), ('18070','739','158','frForward','0','157'), ('18071','739','159','rfc1483','0','158'), ('18072','739','160','usb','0','159'), ('18073','739','161','ieee8023adLag','0','160'), ('18074','739','162','bgppolicyaccounting','0','161'), ('18075','739','163','frf16MfrBundle','0','162'), ('18076','739','164','h323Gatekeeper','0','163'), ('18077','739','165','h323Proxy','0','164'), ('18078','739','166','mpls','0','165'), ('18079','739','167','mfSigLink','0','166'), ('18080','739','168','hdsl2','0','167'), ('18081','739','169','shdsl','0','168'), ('18082','739','170','ds1FDL','0','169'), ('18083','739','171','pos','0','170'), ('18084','739','172','dvbAsiIn','0','171'), ('18085','739','173','dvbAsiOut','0','172'), ('18086','739','174','plc','0','173'), ('18087','739','175','nfas','0','174'), ('18088','739','176','tr008','0','175'), ('18089','739','177','gr303RDT','0','176'), ('18090','739','178','gr303IDT','0','177'), ('18091','739','179','isup','0','178'), ('18092','739','180','propDocsWirelessMaclayer','0','179'), ('18093','739','181','propDocsWirelessDownstream','0','180'), ('18094','739','182','propDocsWirelessUpstream','0','181'), ('18095','739','183','hiperlan2','0','182'), ('18096','739','184','propBWAp2Mp','0','183'), ('18097','739','185','sonetOverheadChannel','0','184'), ('18098','739','186','digitalWrapperOverheadChannel','0','185'), ('18099','739','187','aal2','0','186'), ('18100','739','188','radioMAC','0','187'), ('18101','739','189','atmRadio','0','188'), ('18102','739','190','imt','0','189'), ('18103','739','191','mvl','0','190'), ('18104','739','192','reachDSL','0','191'), ('18105','739','193','frDlciEndPt','0','192'), ('18106','739','194','atmVciEndPt','0','193'), ('18107','739','195','opticalChannel','0','194'), ('18108','739','196','opticalTransport','0','195'), ('18109','739','197','propAtm','0','196'), ('18110','739','198','voiceOverCable','0','197'), ('18111','739','199','infiniband','0','198'), ('18112','739','200','teLink','0','199'), ('18113','739','201','q2931','0','200'), ('18114','739','202','virtualTg','0','201'), ('18115','739','203','sipTg','0','202'), ('18116','739','204','sipSig','0','203'), ('18117','739','205','docsCableUpstreamChannel','0','204'), ('18118','739','206','econet','0','205'), ('18119','739','207','pon155','0','206'), ('18120','739','208','pon622','0','207'), ('18121','739','209','bridge','0','208'), ('18122','739','210','linegroup','0','209'), ('18123','739','211','voiceEMFGD','0','210'), ('18124','739','212','voiceFGDEANA','0','211'), ('18125','739','213','voiceDID','0','212'), ('18126','739','214','mpegTransport','0','213'), ('18127','739','215','sixToFour','0','214'), ('18128','739','216','gtp','0','215'), ('18129','739','217','pdnEtherLoop1','0','216'), ('18130','739','218','pdnEtherLoop2','0','217'), ('18131','739','219','opticalChannelGroup','0','218'), ('18132','739','220','homepna','0','219'), ('18133','739','221','gfp','0','220'), ('18134','739','222','ciscoISLvlan','0','221'), ('18135','739','223','actelisMetaLOOP','0','222'), ('18136','739','224','fcipLink','0','223'), ('18137','739','225','rpr','0','224'), ('18138','739','226','qam','0','225'), ('18139','739','227','lmp','0','226'), ('18140','739','228','cblVectaStar','0','227'), ('18141','739','229','docsCableMCmtsDownstream','0','228'), ('18142','739','230','adsl2','0','229'), ('18143','739','231','macSecControlledIF','0','230'), ('18144','739','232','macSecUncontrolledIF','0','231'), ('18145','739','233','aviciOpticalEther','0','232'), ('18146','739','234','atmbond','0','233'), ('18147','739','235','voiceFGDOS','0','234'), ('18148','739','236','mocaVersion1','0','235'), ('18149','739','237','ieee80216WMAN','0','236'), ('18150','739','238','adsl2plus','0','237'), ('18151','739','239','dvbRcsMacLayer','0','238'), ('18152','739','240','dvbTdm','0','239'), ('18153','739','241','dvbRcsTdma','0','240'), ('18154','739','242','x86Laps','0','241'), ('18155','739','243','wwanPP','0','242'), ('18156','739','244','wwanPP2','0','243'), ('18157','739','245','voiceEBS','0','244'), ('18158','739','246','ifPwType','0','245'), ('18159','739','247','ilan','0','246'), ('18160','739','248','pip','0','247'), ('18161','739','249','aluELP','0','248'), ('18162','739','250','gpon','0','249'), ('18163','739','251','vdsl2','0','250'), ('18164','739','252','capwapDot11Profile','0','251'), ('18165','739','253','capwapDot11Bss','0','252'), ('18166','739','254','capwapWtpVirtualRadio','0','253'), ('18167','739','255','bits','0','254'), ('18168','739','256','docsCableUpstreamRfPort','0','255'), ('18169','739','257','cableDownstreamRfPort','0','256'), ('18170','739','258','vmwareVirtualNic','0','257'), ('18171','739','259','ieee802154','0','258'), ('18172','739','260','otnOdu','0','259'), ('18173','739','261','otnOtu','0','260'), ('18174','739','262','ifVfiType','0','261'), ('18175','739','263','g9981','0','262'), ('18176','739','264','g9982','0','263'), ('18177','739','265','g9983','0','264'), ('18178','739','266','aluEpon','0','265'), ('18179','739','267','aluEponOnu','0','266'), ('18180','739','268','aluEponPhysicalUni','0','267'), ('18181','739','269','aluEponLogicalLink','0','268'), ('18182','739','270','aluGponOnu','0','269'), ('18183','739','271','aluGponPhysicalUni','0','270'), ('18184','739','272','vmwareNicTeam','0','271'), ('18185','739','277','docsOfdmDownstream','0','272'), ('18186','739','278','docsOfdmaUpstream','0','273'), ('18187','739','279','gfast','0','274'), ('18188','739','280','sdci','0','275'), ('18189','739','281','xboxWireless','0','276'), ('18190','739','282','fastdsl','0','277'), ('18191','739','283','docsCableScte55d1FwdOob','0','278'), ('18192','739','284','docsCableScte55d1RetOob','0','279'), ('18193','739','285','docsCableScte55d2DsOob','0','280'), ('18194','739','286','docsCableScte55d2UsOob','0','281'), ('18195','739','287','docsCableNdf','0','282'), ('18196','739','288','docsCableNdr','0','283'), ('18197','739','289','ptm','0','284'), ('18198','739','290','ghn','0','285'), ('18199','740','0','Down','0','0'), ('18200','740','1','Up','0','1'), ('18201','741','0','not available','0','0'), ('18202','741','1','available','0','1'), ('18203','741','2','unknown','0','2'), ('18204','742','1','up','0','0'), ('18205','742','2','down','0','1'), ('18206','742','4','unknown','0','2'), ('18207','742','5','dormant','0','3'), ('18208','742','6','notPresent','0','4'), ('18209','742','7','lowerLayerDown','0','5'), ('18210','743','1','other','0','0'), ('18211','743','2','regular1822','0','1'), ('18212','743','3','hdh1822','0','2'), ('18213','743','4','ddnX25','0','3'), ('18214','743','5','rfc877x25','0','4'), ('18215','743','6','ethernetCsmacd','0','5'), ('18216','743','7','iso88023Csmacd','0','6'), ('18217','743','8','iso88024TokenBus','0','7'), ('18218','743','9','iso88025TokenRing','0','8'), ('18219','743','10','iso88026Man','0','9'), ('18220','743','11','starLan','0','10'), ('18221','743','12','proteon10Mbit','0','11'), ('18222','743','13','proteon80Mbit','0','12'), ('18223','743','14','hyperchannel','0','13'), ('18224','743','15','fddi','0','14'), ('18225','743','16','lapb','0','15'), ('18226','743','17','sdlc','0','16'), ('18227','743','18','ds1','0','17'), ('18228','743','19','e1','0','18'), ('18229','743','20','basicISDN','0','19'), ('18230','743','21','primaryISDN','0','20'), ('18231','743','22','propPointToPointSerial','0','21'), ('18232','743','23','ppp','0','22'), ('18233','743','24','softwareLoopback','0','23'), ('18234','743','25','eon','0','24'), ('18235','743','26','ethernet3Mbit','0','25'), ('18236','743','27','nsip','0','26'), ('18237','743','28','slip','0','27'), ('18238','743','29','ultra','0','28'), ('18239','743','30','ds3','0','29'), ('18240','743','31','sip','0','30'), ('18241','743','32','frameRelay','0','31'), ('18242','743','33','rs232','0','32'), ('18243','743','34','para','0','33'), ('18244','743','35','arcnet','0','34'), ('18245','743','36','arcnetPlus','0','35'), ('18246','743','37','atm','0','36'), ('18247','743','38','miox25','0','37'), ('18248','743','39','sonet','0','38'), ('18249','743','40','x25ple','0','39'), ('18250','743','41','iso88022llc','0','40'), ('18251','743','42','localTalk','0','41'), ('18252','743','43','smdsDxi','0','42'), ('18253','743','44','frameRelayService','0','43'), ('18254','743','45','v35','0','44'), ('18255','743','46','hssi','0','45'), ('18256','743','47','hippi','0','46'), ('18257','743','48','modem','0','47'), ('18258','743','49','aal5','0','48'), ('18259','743','50','sonetPath','0','49'), ('18260','743','51','sonetVT','0','50'), ('18261','743','52','smdsIcip','0','51'), ('18262','743','53','propVirtual','0','52'), ('18263','743','54','propMultiplexor','0','53'), ('18264','743','55','ieee80212','0','54'), ('18265','743','56','fibreChannel','0','55'), ('18266','743','57','hippiInterface','0','56'), ('18267','743','58','frameRelayInterconnect','0','57'), ('18268','743','59','aflane8023','0','58'), ('18269','743','60','aflane8025','0','59'), ('18270','743','61','cctEmul','0','60'), ('18271','743','62','fastEther','0','61'), ('18272','743','63','isdn','0','62'), ('18273','743','64','v11','0','63'), ('18274','743','65','v36','0','64'), ('18275','743','66','g703at64k','0','65'), ('18276','743','67','g703at2mb','0','66'), ('18277','743','68','qllc','0','67'), ('18278','743','69','fastEtherFX','0','68'), ('18279','743','70','channel','0','69'), ('18280','743','71','ieee80211','0','70'), ('18281','743','72','ibm370parChan','0','71'), ('18282','743','73','escon','0','72'), ('18283','743','74','dlsw','0','73'), ('18284','743','75','isdns','0','74'), ('18285','743','76','isdnu','0','75'), ('18286','743','77','lapd','0','76'), ('18287','743','78','ipSwitch','0','77'), ('18288','743','79','rsrb','0','78'), ('18289','743','80','atmLogical','0','79'), ('18290','743','81','ds0','0','80'), ('18291','743','82','ds0Bundle','0','81'), ('18292','743','83','bsc','0','82'), ('18293','743','84','async','0','83'), ('18294','743','85','cnr','0','84'), ('18295','743','86','iso88025Dtr','0','85'), ('18296','743','87','eplrs','0','86'), ('18297','743','88','arap','0','87'), ('18298','743','89','propCnls','0','88'), ('18299','743','90','hostPad','0','89'), ('18300','743','91','termPad','0','90'), ('18301','743','92','frameRelayMPI','0','91'), ('18302','743','93','x213','0','92'), ('18303','743','94','adsl','0','93'), ('18304','743','95','radsl','0','94'), ('18305','743','96','sdsl','0','95'), ('18306','743','97','vdsl','0','96'), ('18307','743','98','iso88025CRFPInt','0','97'), ('18308','743','99','myrinet','0','98'), ('18309','743','100','voiceEM','0','99'), ('18310','743','101','voiceFXO','0','100'), ('18311','743','102','voiceFXS','0','101'), ('18312','743','103','voiceEncap','0','102'), ('18313','743','104','voiceOverIp','0','103'), ('18314','743','105','atmDxi','0','104'), ('18315','743','106','atmFuni','0','105'), ('18316','743','107','atmIma','0','106'), ('18317','743','108','pppMultilinkBundle','0','107'), ('18318','743','109','ipOverCdlc','0','108'), ('18319','743','110','ipOverClaw','0','109'), ('18320','743','111','stackToStack','0','110'), ('18321','743','112','virtualIpAddress','0','111'), ('18322','743','113','mpc','0','112'), ('18323','743','114','ipOverAtm','0','113'), ('18324','743','115','iso88025Fiber','0','114'), ('18325','743','116','tdlc','0','115'), ('18326','743','117','gigabitEthernet','0','116'), ('18327','743','118','hdlc','0','117'), ('18328','743','119','lapf','0','118'), ('18329','743','120','v37','0','119'), ('18330','743','121','x25mlp','0','120'), ('18331','743','122','x25huntGroup','0','121'), ('18332','743','123','trasnpHdlc','0','122'), ('18333','743','124','interleave','0','123'), ('18334','743','125','fast','0','124'), ('18335','743','126','ip','0','125'), ('18336','743','127','docsCableMaclayer','0','126'), ('18337','743','128','docsCableDownstream','0','127'), ('18338','743','129','docsCableUpstream','0','128'), ('18339','743','130','a12MppSwitch','0','129'), ('18340','743','131','tunnel','0','130'), ('18341','743','132','coffee','0','131'), ('18342','743','133','ces','0','132'), ('18343','743','134','atmSubInterface','0','133'), ('18344','743','135','l2vlan','0','134'), ('18345','743','136','l3ipvlan','0','135'), ('18346','743','137','l3ipxvlan','0','136'), ('18347','743','138','digitalPowerline','0','137'), ('18348','743','139','mediaMailOverIp','0','138'), ('18349','743','140','dtm','0','139'), ('18350','743','141','dcn','0','140'), ('18351','743','142','ipForward','0','141'), ('18352','743','143','msdsl','0','142'), ('18353','743','144','ieee1394','0','143'), ('18354','743','145','if-gsn','0','144'), ('18355','743','146','dvbRccMacLayer','0','145'), ('18356','743','147','dvbRccDownstream','0','146'), ('18357','743','148','dvbRccUpstream','0','147'), ('18358','743','149','atmVirtual','0','148'), ('18359','743','150','mplsTunnel','0','149'), ('18360','743','151','srp','0','150'), ('18361','743','152','voiceOverAtm','0','151'), ('18362','743','153','voiceOverFrameRelay','0','152'), ('18363','743','154','idsl','0','153'), ('18364','743','155','compositeLink','0','154'), ('18365','743','156','ss7SigLink','0','155'), ('18366','743','157','propWirelessP2P','0','156'), ('18367','743','158','frForward','0','157'), ('18368','743','159','rfc1483','0','158'), ('18369','743','160','usb','0','159'), ('18370','743','161','ieee8023adLag','0','160'), ('18371','743','162','bgppolicyaccounting','0','161'), ('18372','743','163','frf16MfrBundle','0','162'), ('18373','743','164','h323Gatekeeper','0','163'), ('18374','743','165','h323Proxy','0','164'), ('18375','743','166','mpls','0','165'), ('18376','743','167','mfSigLink','0','166'), ('18377','743','168','hdsl2','0','167'), ('18378','743','169','shdsl','0','168'), ('18379','743','170','ds1FDL','0','169'), ('18380','743','171','pos','0','170'), ('18381','743','172','dvbAsiIn','0','171'), ('18382','743','173','dvbAsiOut','0','172'), ('18383','743','174','plc','0','173'), ('18384','743','175','nfas','0','174'), ('18385','743','176','tr008','0','175'), ('18386','743','177','gr303RDT','0','176'), ('18387','743','178','gr303IDT','0','177'), ('18388','743','179','isup','0','178'), ('18389','743','180','propDocsWirelessMaclayer','0','179'), ('18390','743','181','propDocsWirelessDownstream','0','180'), ('18391','743','182','propDocsWirelessUpstream','0','181'), ('18392','743','183','hiperlan2','0','182'), ('18393','743','184','propBWAp2Mp','0','183'), ('18394','743','185','sonetOverheadChannel','0','184'), ('18395','743','186','digitalWrapperOverheadChannel','0','185'), ('18396','743','187','aal2','0','186'), ('18397','743','188','radioMAC','0','187'), ('18398','743','189','atmRadio','0','188'), ('18399','743','190','imt','0','189'), ('18400','743','191','mvl','0','190'), ('18401','743','192','reachDSL','0','191'), ('18402','743','193','frDlciEndPt','0','192'), ('18403','743','194','atmVciEndPt','0','193'), ('18404','743','195','opticalChannel','0','194'), ('18405','743','196','opticalTransport','0','195'), ('18406','743','197','propAtm','0','196'), ('18407','743','198','voiceOverCable','0','197'), ('18408','743','199','infiniband','0','198'), ('18409','743','200','teLink','0','199'), ('18410','743','201','q2931','0','200'), ('18411','743','202','virtualTg','0','201'), ('18412','743','203','sipTg','0','202'), ('18413','743','204','sipSig','0','203'), ('18414','743','205','docsCableUpstreamChannel','0','204'), ('18415','743','206','econet','0','205'), ('18416','743','207','pon155','0','206'), ('18417','743','208','pon622','0','207'), ('18418','743','209','bridge','0','208'), ('18419','743','210','linegroup','0','209'), ('18420','743','211','voiceEMFGD','0','210'), ('18421','743','212','voiceFGDEANA','0','211'), ('18422','743','213','voiceDID','0','212'), ('18423','743','214','mpegTransport','0','213'), ('18424','743','215','sixToFour','0','214'), ('18425','743','216','gtp','0','215'), ('18426','743','217','pdnEtherLoop1','0','216'), ('18427','743','218','pdnEtherLoop2','0','217'), ('18428','743','219','opticalChannelGroup','0','218'), ('18429','743','220','homepna','0','219'), ('18430','743','221','gfp','0','220'), ('18431','743','222','ciscoISLvlan','0','221'), ('18432','743','223','actelisMetaLOOP','0','222'), ('18433','743','224','fcipLink','0','223'), ('18434','743','225','rpr','0','224'), ('18435','743','226','qam','0','225'), ('18436','743','227','lmp','0','226'), ('18437','743','228','cblVectaStar','0','227'), ('18438','743','229','docsCableMCmtsDownstream','0','228'), ('18439','743','230','adsl2','0','229'), ('18440','743','231','macSecControlledIF','0','230'), ('18441','743','232','macSecUncontrolledIF','0','231'), ('18442','743','233','aviciOpticalEther','0','232'), ('18443','743','234','atmbond','0','233'), ('18444','743','235','voiceFGDOS','0','234'), ('18445','743','236','mocaVersion1','0','235'), ('18446','743','237','ieee80216WMAN','0','236'), ('18447','743','238','adsl2plus','0','237'), ('18448','743','239','dvbRcsMacLayer','0','238'), ('18449','743','240','dvbTdm','0','239'), ('18450','743','241','dvbRcsTdma','0','240'), ('18451','743','242','x86Laps','0','241'), ('18452','743','243','wwanPP','0','242'), ('18453','743','244','wwanPP2','0','243'), ('18454','743','245','voiceEBS','0','244'), ('18455','743','246','ifPwType','0','245'), ('18456','743','247','ilan','0','246'), ('18457','743','248','pip','0','247'), ('18458','743','249','aluELP','0','248'), ('18459','743','250','gpon','0','249'), ('18460','743','251','vdsl2','0','250'), ('18461','743','252','capwapDot11Profile','0','251'), ('18462','743','253','capwapDot11Bss','0','252'), ('18463','743','254','capwapWtpVirtualRadio','0','253'), ('18464','743','255','bits','0','254'), ('18465','743','256','docsCableUpstreamRfPort','0','255'), ('18466','743','257','cableDownstreamRfPort','0','256'), ('18467','743','258','vmwareVirtualNic','0','257'), ('18468','743','259','ieee802154','0','258'), ('18469','743','260','otnOdu','0','259'), ('18470','743','261','otnOtu','0','260'), ('18471','743','262','ifVfiType','0','261'), ('18472','743','263','g9981','0','262'), ('18473','743','264','g9982','0','263'), ('18474','743','265','g9983','0','264'), ('18475','743','266','aluEpon','0','265'), ('18476','743','267','aluEponOnu','0','266'), ('18477','743','268','aluEponPhysicalUni','0','267'), ('18478','743','269','aluEponLogicalLink','0','268'), ('18479','743','270','aluGponOnu','0','269'), ('18480','743','271','aluGponPhysicalUni','0','270'), ('18481','743','272','vmwareNicTeam','0','271'), ('18482','743','277','docsOfdmDownstream','0','272'), ('18483','743','278','docsOfdmaUpstream','0','273'), ('18484','743','279','gfast','0','274'), ('18485','743','280','sdci','0','275'), ('18486','743','281','xboxWireless','0','276'), ('18487','743','282','fastdsl','0','277'), ('18488','743','283','docsCableScte55d1FwdOob','0','278'), ('18489','743','284','docsCableScte55d1RetOob','0','279'), ('18490','743','285','docsCableScte55d2DsOob','0','280'), ('18491','743','286','docsCableScte55d2UsOob','0','281'), ('18492','743','287','docsCableNdf','0','282'), ('18493','743','288','docsCableNdr','0','283'), ('18494','743','289','ptm','0','284'), ('18495','743','290','ghn','0','285'), ('18496','744','0','Down','0','0'), ('18497','744','1','Up','0','1'), ('18498','745','0','not available','0','0'), ('18499','745','1','available','0','1'), ('18500','745','2','unknown','0','2'), ('18501','746','1','up','0','0'), ('18502','746','2','down','0','1'), ('18503','746','4','unknown','0','2'), ('18504','746','5','dormant','0','3'), ('18505','746','6','notPresent','0','4'), ('18506','746','7','lowerLayerDown','0','5'), ('18507','747','1','other','0','0'), ('18508','747','2','regular1822','0','1'), ('18509','747','3','hdh1822','0','2'), ('18510','747','4','ddnX25','0','3'), ('18511','747','5','rfc877x25','0','4'), ('18512','747','6','ethernetCsmacd','0','5'), ('18513','747','7','iso88023Csmacd','0','6'), ('18514','747','8','iso88024TokenBus','0','7'), ('18515','747','9','iso88025TokenRing','0','8'), ('18516','747','10','iso88026Man','0','9'), ('18517','747','11','starLan','0','10'), ('18518','747','12','proteon10Mbit','0','11'), ('18519','747','13','proteon80Mbit','0','12'), ('18520','747','14','hyperchannel','0','13'), ('18521','747','15','fddi','0','14'), ('18522','747','16','lapb','0','15'), ('18523','747','17','sdlc','0','16'), ('18524','747','18','ds1','0','17'), ('18525','747','19','e1','0','18'), ('18526','747','20','basicISDN','0','19'), ('18527','747','21','primaryISDN','0','20'), ('18528','747','22','propPointToPointSerial','0','21'), ('18529','747','23','ppp','0','22'), ('18530','747','24','softwareLoopback','0','23'), ('18531','747','25','eon','0','24'), ('18532','747','26','ethernet3Mbit','0','25'), ('18533','747','27','nsip','0','26'), ('18534','747','28','slip','0','27'), ('18535','747','29','ultra','0','28'), ('18536','747','30','ds3','0','29'), ('18537','747','31','sip','0','30'), ('18538','747','32','frameRelay','0','31'), ('18539','747','33','rs232','0','32'), ('18540','747','34','para','0','33'), ('18541','747','35','arcnet','0','34'), ('18542','747','36','arcnetPlus','0','35'), ('18543','747','37','atm','0','36'), ('18544','747','38','miox25','0','37'), ('18545','747','39','sonet','0','38'), ('18546','747','40','x25ple','0','39'), ('18547','747','41','iso88022llc','0','40'), ('18548','747','42','localTalk','0','41'), ('18549','747','43','smdsDxi','0','42'), ('18550','747','44','frameRelayService','0','43'), ('18551','747','45','v35','0','44'), ('18552','747','46','hssi','0','45'), ('18553','747','47','hippi','0','46'), ('18554','747','48','modem','0','47'), ('18555','747','49','aal5','0','48'), ('18556','747','50','sonetPath','0','49'), ('18557','747','51','sonetVT','0','50'), ('18558','747','52','smdsIcip','0','51'), ('18559','747','53','propVirtual','0','52'), ('18560','747','54','propMultiplexor','0','53'), ('18561','747','55','ieee80212','0','54'), ('18562','747','56','fibreChannel','0','55'), ('18563','747','57','hippiInterface','0','56'), ('18564','747','58','frameRelayInterconnect','0','57'), ('18565','747','59','aflane8023','0','58'), ('18566','747','60','aflane8025','0','59'), ('18567','747','61','cctEmul','0','60'), ('18568','747','62','fastEther','0','61'), ('18569','747','63','isdn','0','62'), ('18570','747','64','v11','0','63'), ('18571','747','65','v36','0','64'), ('18572','747','66','g703at64k','0','65'), ('18573','747','67','g703at2mb','0','66'), ('18574','747','68','qllc','0','67'), ('18575','747','69','fastEtherFX','0','68'), ('18576','747','70','channel','0','69'), ('18577','747','71','ieee80211','0','70'), ('18578','747','72','ibm370parChan','0','71'), ('18579','747','73','escon','0','72'), ('18580','747','74','dlsw','0','73'), ('18581','747','75','isdns','0','74'), ('18582','747','76','isdnu','0','75'), ('18583','747','77','lapd','0','76'), ('18584','747','78','ipSwitch','0','77'), ('18585','747','79','rsrb','0','78'), ('18586','747','80','atmLogical','0','79'), ('18587','747','81','ds0','0','80'), ('18588','747','82','ds0Bundle','0','81'), ('18589','747','83','bsc','0','82'), ('18590','747','84','async','0','83'), ('18591','747','85','cnr','0','84'), ('18592','747','86','iso88025Dtr','0','85'), ('18593','747','87','eplrs','0','86'), ('18594','747','88','arap','0','87'), ('18595','747','89','propCnls','0','88'), ('18596','747','90','hostPad','0','89'), ('18597','747','91','termPad','0','90'), ('18598','747','92','frameRelayMPI','0','91'), ('18599','747','93','x213','0','92'), ('18600','747','94','adsl','0','93'), ('18601','747','95','radsl','0','94'), ('18602','747','96','sdsl','0','95'), ('18603','747','97','vdsl','0','96'), ('18604','747','98','iso88025CRFPInt','0','97'), ('18605','747','99','myrinet','0','98'), ('18606','747','100','voiceEM','0','99'), ('18607','747','101','voiceFXO','0','100'), ('18608','747','102','voiceFXS','0','101'), ('18609','747','103','voiceEncap','0','102'), ('18610','747','104','voiceOverIp','0','103'), ('18611','747','105','atmDxi','0','104'), ('18612','747','106','atmFuni','0','105'), ('18613','747','107','atmIma','0','106'), ('18614','747','108','pppMultilinkBundle','0','107'), ('18615','747','109','ipOverCdlc','0','108'), ('18616','747','110','ipOverClaw','0','109'), ('18617','747','111','stackToStack','0','110'), ('18618','747','112','virtualIpAddress','0','111'), ('18619','747','113','mpc','0','112'), ('18620','747','114','ipOverAtm','0','113'), ('18621','747','115','iso88025Fiber','0','114'), ('18622','747','116','tdlc','0','115'), ('18623','747','117','gigabitEthernet','0','116'), ('18624','747','118','hdlc','0','117'), ('18625','747','119','lapf','0','118'), ('18626','747','120','v37','0','119'), ('18627','747','121','x25mlp','0','120'), ('18628','747','122','x25huntGroup','0','121'), ('18629','747','123','trasnpHdlc','0','122'), ('18630','747','124','interleave','0','123'), ('18631','747','125','fast','0','124'), ('18632','747','126','ip','0','125'), ('18633','747','127','docsCableMaclayer','0','126'), ('18634','747','128','docsCableDownstream','0','127'), ('18635','747','129','docsCableUpstream','0','128'), ('18636','747','130','a12MppSwitch','0','129'), ('18637','747','131','tunnel','0','130'), ('18638','747','132','coffee','0','131'), ('18639','747','133','ces','0','132'), ('18640','747','134','atmSubInterface','0','133'), ('18641','747','135','l2vlan','0','134'), ('18642','747','136','l3ipvlan','0','135'), ('18643','747','137','l3ipxvlan','0','136'), ('18644','747','138','digitalPowerline','0','137'), ('18645','747','139','mediaMailOverIp','0','138'), ('18646','747','140','dtm','0','139'), ('18647','747','141','dcn','0','140'), ('18648','747','142','ipForward','0','141'), ('18649','747','143','msdsl','0','142'), ('18650','747','144','ieee1394','0','143'), ('18651','747','145','if-gsn','0','144'), ('18652','747','146','dvbRccMacLayer','0','145'), ('18653','747','147','dvbRccDownstream','0','146'), ('18654','747','148','dvbRccUpstream','0','147'), ('18655','747','149','atmVirtual','0','148'), ('18656','747','150','mplsTunnel','0','149'), ('18657','747','151','srp','0','150'), ('18658','747','152','voiceOverAtm','0','151'), ('18659','747','153','voiceOverFrameRelay','0','152'), ('18660','747','154','idsl','0','153'), ('18661','747','155','compositeLink','0','154'), ('18662','747','156','ss7SigLink','0','155'), ('18663','747','157','propWirelessP2P','0','156'), ('18664','747','158','frForward','0','157'), ('18665','747','159','rfc1483','0','158'), ('18666','747','160','usb','0','159'), ('18667','747','161','ieee8023adLag','0','160'), ('18668','747','162','bgppolicyaccounting','0','161'), ('18669','747','163','frf16MfrBundle','0','162'), ('18670','747','164','h323Gatekeeper','0','163'), ('18671','747','165','h323Proxy','0','164'), ('18672','747','166','mpls','0','165'), ('18673','747','167','mfSigLink','0','166'), ('18674','747','168','hdsl2','0','167'), ('18675','747','169','shdsl','0','168'), ('18676','747','170','ds1FDL','0','169'), ('18677','747','171','pos','0','170'), ('18678','747','172','dvbAsiIn','0','171'), ('18679','747','173','dvbAsiOut','0','172'), ('18680','747','174','plc','0','173'), ('18681','747','175','nfas','0','174'), ('18682','747','176','tr008','0','175'), ('18683','747','177','gr303RDT','0','176'), ('18684','747','178','gr303IDT','0','177'), ('18685','747','179','isup','0','178'), ('18686','747','180','propDocsWirelessMaclayer','0','179'), ('18687','747','181','propDocsWirelessDownstream','0','180'), ('18688','747','182','propDocsWirelessUpstream','0','181'), ('18689','747','183','hiperlan2','0','182'), ('18690','747','184','propBWAp2Mp','0','183'), ('18691','747','185','sonetOverheadChannel','0','184'), ('18692','747','186','digitalWrapperOverheadChannel','0','185'), ('18693','747','187','aal2','0','186'), ('18694','747','188','radioMAC','0','187'), ('18695','747','189','atmRadio','0','188'), ('18696','747','190','imt','0','189'), ('18697','747','191','mvl','0','190'), ('18698','747','192','reachDSL','0','191'), ('18699','747','193','frDlciEndPt','0','192'), ('18700','747','194','atmVciEndPt','0','193'), ('18701','747','195','opticalChannel','0','194'), ('18702','747','196','opticalTransport','0','195'), ('18703','747','197','propAtm','0','196'), ('18704','747','198','voiceOverCable','0','197'), ('18705','747','199','infiniband','0','198'), ('18706','747','200','teLink','0','199'), ('18707','747','201','q2931','0','200'), ('18708','747','202','virtualTg','0','201'), ('18709','747','203','sipTg','0','202'), ('18710','747','204','sipSig','0','203'), ('18711','747','205','docsCableUpstreamChannel','0','204'), ('18712','747','206','econet','0','205'), ('18713','747','207','pon155','0','206'), ('18714','747','208','pon622','0','207'), ('18715','747','209','bridge','0','208'), ('18716','747','210','linegroup','0','209'), ('18717','747','211','voiceEMFGD','0','210'), ('18718','747','212','voiceFGDEANA','0','211'), ('18719','747','213','voiceDID','0','212'), ('18720','747','214','mpegTransport','0','213'), ('18721','747','215','sixToFour','0','214'), ('18722','747','216','gtp','0','215'), ('18723','747','217','pdnEtherLoop1','0','216'), ('18724','747','218','pdnEtherLoop2','0','217'), ('18725','747','219','opticalChannelGroup','0','218'), ('18726','747','220','homepna','0','219'), ('18727','747','221','gfp','0','220'), ('18728','747','222','ciscoISLvlan','0','221'), ('18729','747','223','actelisMetaLOOP','0','222'), ('18730','747','224','fcipLink','0','223'), ('18731','747','225','rpr','0','224'), ('18732','747','226','qam','0','225'), ('18733','747','227','lmp','0','226'), ('18734','747','228','cblVectaStar','0','227'), ('18735','747','229','docsCableMCmtsDownstream','0','228'), ('18736','747','230','adsl2','0','229'), ('18737','747','231','macSecControlledIF','0','230'), ('18738','747','232','macSecUncontrolledIF','0','231'), ('18739','747','233','aviciOpticalEther','0','232'), ('18740','747','234','atmbond','0','233'), ('18741','747','235','voiceFGDOS','0','234'), ('18742','747','236','mocaVersion1','0','235'), ('18743','747','237','ieee80216WMAN','0','236'), ('18744','747','238','adsl2plus','0','237'), ('18745','747','239','dvbRcsMacLayer','0','238'), ('18746','747','240','dvbTdm','0','239'), ('18747','747','241','dvbRcsTdma','0','240'), ('18748','747','242','x86Laps','0','241'), ('18749','747','243','wwanPP','0','242'), ('18750','747','244','wwanPP2','0','243'), ('18751','747','245','voiceEBS','0','244'), ('18752','747','246','ifPwType','0','245'), ('18753','747','247','ilan','0','246'), ('18754','747','248','pip','0','247'), ('18755','747','249','aluELP','0','248'), ('18756','747','250','gpon','0','249'), ('18757','747','251','vdsl2','0','250'), ('18758','747','252','capwapDot11Profile','0','251'), ('18759','747','253','capwapDot11Bss','0','252'), ('18760','747','254','capwapWtpVirtualRadio','0','253'), ('18761','747','255','bits','0','254'), ('18762','747','256','docsCableUpstreamRfPort','0','255'), ('18763','747','257','cableDownstreamRfPort','0','256'), ('18764','747','258','vmwareVirtualNic','0','257'), ('18765','747','259','ieee802154','0','258'), ('18766','747','260','otnOdu','0','259'), ('18767','747','261','otnOtu','0','260'), ('18768','747','262','ifVfiType','0','261'), ('18769','747','263','g9981','0','262'), ('18770','747','264','g9982','0','263'), ('18771','747','265','g9983','0','264'), ('18772','747','266','aluEpon','0','265'), ('18773','747','267','aluEponOnu','0','266'), ('18774','747','268','aluEponPhysicalUni','0','267'), ('18775','747','269','aluEponLogicalLink','0','268'), ('18776','747','270','aluGponOnu','0','269'), ('18777','747','271','aluGponPhysicalUni','0','270'), ('18778','747','272','vmwareNicTeam','0','271'), ('18779','747','277','docsOfdmDownstream','0','272'), ('18780','747','278','docsOfdmaUpstream','0','273'), ('18781','747','279','gfast','0','274'), ('18782','747','280','sdci','0','275'), ('18783','747','281','xboxWireless','0','276'), ('18784','747','282','fastdsl','0','277'), ('18785','747','283','docsCableScte55d1FwdOob','0','278'), ('18786','747','284','docsCableScte55d1RetOob','0','279'), ('18787','747','285','docsCableScte55d2DsOob','0','280'), ('18788','747','286','docsCableScte55d2UsOob','0','281'), ('18789','747','287','docsCableNdf','0','282'), ('18790','747','288','docsCableNdr','0','283'), ('18791','747','289','ptm','0','284'), ('18792','747','290','ghn','0','285'), ('18793','748','0','Down','0','0'), ('18794','748','1','Up','0','1'), ('18795','749','0','not available','0','0'), ('18796','749','1','available','0','1'), ('18797','749','2','unknown','0','2'), ('18798','750','1','up','0','0'), ('18799','750','2','down','0','1'), ('18800','750','4','unknown','0','2'), ('18801','750','5','dormant','0','3'), ('18802','750','6','notPresent','0','4'), ('18803','750','7','lowerLayerDown','0','5'), ('18804','751','1','other','0','0'), ('18805','751','2','regular1822','0','1'), ('18806','751','3','hdh1822','0','2'), ('18807','751','4','ddnX25','0','3'), ('18808','751','5','rfc877x25','0','4'), ('18809','751','6','ethernetCsmacd','0','5'), ('18810','751','7','iso88023Csmacd','0','6'), ('18811','751','8','iso88024TokenBus','0','7'), ('18812','751','9','iso88025TokenRing','0','8'), ('18813','751','10','iso88026Man','0','9'), ('18814','751','11','starLan','0','10'), ('18815','751','12','proteon10Mbit','0','11'), ('18816','751','13','proteon80Mbit','0','12'), ('18817','751','14','hyperchannel','0','13'), ('18818','751','15','fddi','0','14'), ('18819','751','16','lapb','0','15'), ('18820','751','17','sdlc','0','16'), ('18821','751','18','ds1','0','17'), ('18822','751','19','e1','0','18'), ('18823','751','20','basicISDN','0','19'), ('18824','751','21','primaryISDN','0','20'), ('18825','751','22','propPointToPointSerial','0','21'), ('18826','751','23','ppp','0','22'), ('18827','751','24','softwareLoopback','0','23'), ('18828','751','25','eon','0','24'), ('18829','751','26','ethernet3Mbit','0','25'), ('18830','751','27','nsip','0','26'), ('18831','751','28','slip','0','27'), ('18832','751','29','ultra','0','28'), ('18833','751','30','ds3','0','29'), ('18834','751','31','sip','0','30'), ('18835','751','32','frameRelay','0','31'), ('18836','751','33','rs232','0','32'), ('18837','751','34','para','0','33'), ('18838','751','35','arcnet','0','34'), ('18839','751','36','arcnetPlus','0','35'), ('18840','751','37','atm','0','36'), ('18841','751','38','miox25','0','37'), ('18842','751','39','sonet','0','38'), ('18843','751','40','x25ple','0','39'), ('18844','751','41','iso88022llc','0','40'), ('18845','751','42','localTalk','0','41'), ('18846','751','43','smdsDxi','0','42'), ('18847','751','44','frameRelayService','0','43'), ('18848','751','45','v35','0','44'), ('18849','751','46','hssi','0','45'), ('18850','751','47','hippi','0','46'), ('18851','751','48','modem','0','47'), ('18852','751','49','aal5','0','48'), ('18853','751','50','sonetPath','0','49'), ('18854','751','51','sonetVT','0','50'), ('18855','751','52','smdsIcip','0','51'), ('18856','751','53','propVirtual','0','52'), ('18857','751','54','propMultiplexor','0','53'), ('18858','751','55','ieee80212','0','54'), ('18859','751','56','fibreChannel','0','55'), ('18860','751','57','hippiInterface','0','56'), ('18861','751','58','frameRelayInterconnect','0','57'), ('18862','751','59','aflane8023','0','58'), ('18863','751','60','aflane8025','0','59'), ('18864','751','61','cctEmul','0','60'), ('18865','751','62','fastEther','0','61'), ('18866','751','63','isdn','0','62'), ('18867','751','64','v11','0','63'), ('18868','751','65','v36','0','64'), ('18869','751','66','g703at64k','0','65'), ('18870','751','67','g703at2mb','0','66'), ('18871','751','68','qllc','0','67'), ('18872','751','69','fastEtherFX','0','68'), ('18873','751','70','channel','0','69'), ('18874','751','71','ieee80211','0','70'), ('18875','751','72','ibm370parChan','0','71'), ('18876','751','73','escon','0','72'), ('18877','751','74','dlsw','0','73'), ('18878','751','75','isdns','0','74'), ('18879','751','76','isdnu','0','75'), ('18880','751','77','lapd','0','76'), ('18881','751','78','ipSwitch','0','77'), ('18882','751','79','rsrb','0','78'), ('18883','751','80','atmLogical','0','79'), ('18884','751','81','ds0','0','80'), ('18885','751','82','ds0Bundle','0','81'), ('18886','751','83','bsc','0','82'), ('18887','751','84','async','0','83'), ('18888','751','85','cnr','0','84'), ('18889','751','86','iso88025Dtr','0','85'), ('18890','751','87','eplrs','0','86'), ('18891','751','88','arap','0','87'), ('18892','751','89','propCnls','0','88'), ('18893','751','90','hostPad','0','89'), ('18894','751','91','termPad','0','90'), ('18895','751','92','frameRelayMPI','0','91'), ('18896','751','93','x213','0','92'), ('18897','751','94','adsl','0','93'), ('18898','751','95','radsl','0','94'), ('18899','751','96','sdsl','0','95'), ('18900','751','97','vdsl','0','96'), ('18901','751','98','iso88025CRFPInt','0','97'), ('18902','751','99','myrinet','0','98'), ('18903','751','100','voiceEM','0','99'), ('18904','751','101','voiceFXO','0','100'), ('18905','751','102','voiceFXS','0','101'), ('18906','751','103','voiceEncap','0','102'), ('18907','751','104','voiceOverIp','0','103'), ('18908','751','105','atmDxi','0','104'), ('18909','751','106','atmFuni','0','105'), ('18910','751','107','atmIma','0','106'), ('18911','751','108','pppMultilinkBundle','0','107'), ('18912','751','109','ipOverCdlc','0','108'), ('18913','751','110','ipOverClaw','0','109'), ('18914','751','111','stackToStack','0','110'), ('18915','751','112','virtualIpAddress','0','111'), ('18916','751','113','mpc','0','112'), ('18917','751','114','ipOverAtm','0','113'), ('18918','751','115','iso88025Fiber','0','114'), ('18919','751','116','tdlc','0','115'), ('18920','751','117','gigabitEthernet','0','116'), ('18921','751','118','hdlc','0','117'), ('18922','751','119','lapf','0','118'), ('18923','751','120','v37','0','119'), ('18924','751','121','x25mlp','0','120'), ('18925','751','122','x25huntGroup','0','121'), ('18926','751','123','trasnpHdlc','0','122'), ('18927','751','124','interleave','0','123'), ('18928','751','125','fast','0','124'), ('18929','751','126','ip','0','125'), ('18930','751','127','docsCableMaclayer','0','126'), ('18931','751','128','docsCableDownstream','0','127'), ('18932','751','129','docsCableUpstream','0','128'), ('18933','751','130','a12MppSwitch','0','129'), ('18934','751','131','tunnel','0','130'), ('18935','751','132','coffee','0','131'), ('18936','751','133','ces','0','132'), ('18937','751','134','atmSubInterface','0','133'), ('18938','751','135','l2vlan','0','134'), ('18939','751','136','l3ipvlan','0','135'), ('18940','751','137','l3ipxvlan','0','136'), ('18941','751','138','digitalPowerline','0','137'), ('18942','751','139','mediaMailOverIp','0','138'), ('18943','751','140','dtm','0','139'), ('18944','751','141','dcn','0','140'), ('18945','751','142','ipForward','0','141'), ('18946','751','143','msdsl','0','142'), ('18947','751','144','ieee1394','0','143'), ('18948','751','145','if-gsn','0','144'), ('18949','751','146','dvbRccMacLayer','0','145'), ('18950','751','147','dvbRccDownstream','0','146'), ('18951','751','148','dvbRccUpstream','0','147'), ('18952','751','149','atmVirtual','0','148'), ('18953','751','150','mplsTunnel','0','149'), ('18954','751','151','srp','0','150'), ('18955','751','152','voiceOverAtm','0','151'), ('18956','751','153','voiceOverFrameRelay','0','152'), ('18957','751','154','idsl','0','153'), ('18958','751','155','compositeLink','0','154'), ('18959','751','156','ss7SigLink','0','155'), ('18960','751','157','propWirelessP2P','0','156'), ('18961','751','158','frForward','0','157'), ('18962','751','159','rfc1483','0','158'), ('18963','751','160','usb','0','159'), ('18964','751','161','ieee8023adLag','0','160'), ('18965','751','162','bgppolicyaccounting','0','161'), ('18966','751','163','frf16MfrBundle','0','162'), ('18967','751','164','h323Gatekeeper','0','163'), ('18968','751','165','h323Proxy','0','164'), ('18969','751','166','mpls','0','165'), ('18970','751','167','mfSigLink','0','166'), ('18971','751','168','hdsl2','0','167'), ('18972','751','169','shdsl','0','168'), ('18973','751','170','ds1FDL','0','169'), ('18974','751','171','pos','0','170'), ('18975','751','172','dvbAsiIn','0','171'), ('18976','751','173','dvbAsiOut','0','172'), ('18977','751','174','plc','0','173'), ('18978','751','175','nfas','0','174'), ('18979','751','176','tr008','0','175'), ('18980','751','177','gr303RDT','0','176'), ('18981','751','178','gr303IDT','0','177'), ('18982','751','179','isup','0','178'), ('18983','751','180','propDocsWirelessMaclayer','0','179'), ('18984','751','181','propDocsWirelessDownstream','0','180'), ('18985','751','182','propDocsWirelessUpstream','0','181'), ('18986','751','183','hiperlan2','0','182'), ('18987','751','184','propBWAp2Mp','0','183'), ('18988','751','185','sonetOverheadChannel','0','184'), ('18989','751','186','digitalWrapperOverheadChannel','0','185'), ('18990','751','187','aal2','0','186'), ('18991','751','188','radioMAC','0','187'), ('18992','751','189','atmRadio','0','188'), ('18993','751','190','imt','0','189'), ('18994','751','191','mvl','0','190'), ('18995','751','192','reachDSL','0','191'), ('18996','751','193','frDlciEndPt','0','192'), ('18997','751','194','atmVciEndPt','0','193'), ('18998','751','195','opticalChannel','0','194'), ('18999','751','196','opticalTransport','0','195'), ('19000','751','197','propAtm','0','196'), ('19001','751','198','voiceOverCable','0','197'), ('19002','751','199','infiniband','0','198'), ('19003','751','200','teLink','0','199'), ('19004','751','201','q2931','0','200'), ('19005','751','202','virtualTg','0','201'), ('19006','751','203','sipTg','0','202'), ('19007','751','204','sipSig','0','203'), ('19008','751','205','docsCableUpstreamChannel','0','204'), ('19009','751','206','econet','0','205'), ('19010','751','207','pon155','0','206'), ('19011','751','208','pon622','0','207'), ('19012','751','209','bridge','0','208'), ('19013','751','210','linegroup','0','209'), ('19014','751','211','voiceEMFGD','0','210'), ('19015','751','212','voiceFGDEANA','0','211'), ('19016','751','213','voiceDID','0','212'), ('19017','751','214','mpegTransport','0','213'), ('19018','751','215','sixToFour','0','214'), ('19019','751','216','gtp','0','215'), ('19020','751','217','pdnEtherLoop1','0','216'), ('19021','751','218','pdnEtherLoop2','0','217'), ('19022','751','219','opticalChannelGroup','0','218'), ('19023','751','220','homepna','0','219'), ('19024','751','221','gfp','0','220'), ('19025','751','222','ciscoISLvlan','0','221'), ('19026','751','223','actelisMetaLOOP','0','222'), ('19027','751','224','fcipLink','0','223'), ('19028','751','225','rpr','0','224'), ('19029','751','226','qam','0','225'), ('19030','751','227','lmp','0','226'), ('19031','751','228','cblVectaStar','0','227'), ('19032','751','229','docsCableMCmtsDownstream','0','228'), ('19033','751','230','adsl2','0','229'), ('19034','751','231','macSecControlledIF','0','230'), ('19035','751','232','macSecUncontrolledIF','0','231'), ('19036','751','233','aviciOpticalEther','0','232'), ('19037','751','234','atmbond','0','233'), ('19038','751','235','voiceFGDOS','0','234'), ('19039','751','236','mocaVersion1','0','235'), ('19040','751','237','ieee80216WMAN','0','236'), ('19041','751','238','adsl2plus','0','237'), ('19042','751','239','dvbRcsMacLayer','0','238'), ('19043','751','240','dvbTdm','0','239'), ('19044','751','241','dvbRcsTdma','0','240'), ('19045','751','242','x86Laps','0','241'), ('19046','751','243','wwanPP','0','242'), ('19047','751','244','wwanPP2','0','243'), ('19048','751','245','voiceEBS','0','244'), ('19049','751','246','ifPwType','0','245'), ('19050','751','247','ilan','0','246'), ('19051','751','248','pip','0','247'), ('19052','751','249','aluELP','0','248'), ('19053','751','250','gpon','0','249'), ('19054','751','251','vdsl2','0','250'), ('19055','751','252','capwapDot11Profile','0','251'), ('19056','751','253','capwapDot11Bss','0','252'), ('19057','751','254','capwapWtpVirtualRadio','0','253'), ('19058','751','255','bits','0','254'), ('19059','751','256','docsCableUpstreamRfPort','0','255'), ('19060','751','257','cableDownstreamRfPort','0','256'), ('19061','751','258','vmwareVirtualNic','0','257'), ('19062','751','259','ieee802154','0','258'), ('19063','751','260','otnOdu','0','259'), ('19064','751','261','otnOtu','0','260'), ('19065','751','262','ifVfiType','0','261'), ('19066','751','263','g9981','0','262'), ('19067','751','264','g9982','0','263'), ('19068','751','265','g9983','0','264'), ('19069','751','266','aluEpon','0','265'), ('19070','751','267','aluEponOnu','0','266'), ('19071','751','268','aluEponPhysicalUni','0','267'), ('19072','751','269','aluEponLogicalLink','0','268'), ('19073','751','270','aluGponOnu','0','269'), ('19074','751','271','aluGponPhysicalUni','0','270'), ('19075','751','272','vmwareNicTeam','0','271'), ('19076','751','277','docsOfdmDownstream','0','272'), ('19077','751','278','docsOfdmaUpstream','0','273'), ('19078','751','279','gfast','0','274'), ('19079','751','280','sdci','0','275'), ('19080','751','281','xboxWireless','0','276'), ('19081','751','282','fastdsl','0','277'), ('19082','751','283','docsCableScte55d1FwdOob','0','278'), ('19083','751','284','docsCableScte55d1RetOob','0','279'), ('19084','751','285','docsCableScte55d2DsOob','0','280'), ('19085','751','286','docsCableScte55d2UsOob','0','281'), ('19086','751','287','docsCableNdf','0','282'), ('19087','751','288','docsCableNdr','0','283'), ('19088','751','289','ptm','0','284'), ('19089','751','290','ghn','0','285'), ('19090','752','0','Down','0','0'), ('19091','752','1','Up','0','1'), ('19092','753','0','not available','0','0'), ('19093','753','1','available','0','1'), ('19094','753','2','unknown','0','2'), ('19095','754','1','up','0','0'), ('19096','754','2','down','0','1'), ('19097','754','4','unknown','0','2'), ('19098','754','5','dormant','0','3'), ('19099','754','6','notPresent','0','4'), ('19100','754','7','lowerLayerDown','0','5'), ('19101','755','1','other','0','0'), ('19102','755','2','regular1822','0','1'), ('19103','755','3','hdh1822','0','2'), ('19104','755','4','ddnX25','0','3'), ('19105','755','5','rfc877x25','0','4'), ('19106','755','6','ethernetCsmacd','0','5'), ('19107','755','7','iso88023Csmacd','0','6'), ('19108','755','8','iso88024TokenBus','0','7'), ('19109','755','9','iso88025TokenRing','0','8'), ('19110','755','10','iso88026Man','0','9'), ('19111','755','11','starLan','0','10'), ('19112','755','12','proteon10Mbit','0','11'), ('19113','755','13','proteon80Mbit','0','12'), ('19114','755','14','hyperchannel','0','13'), ('19115','755','15','fddi','0','14'), ('19116','755','16','lapb','0','15'), ('19117','755','17','sdlc','0','16'), ('19118','755','18','ds1','0','17'), ('19119','755','19','e1','0','18'), ('19120','755','20','basicISDN','0','19'), ('19121','755','21','primaryISDN','0','20'), ('19122','755','22','propPointToPointSerial','0','21'), ('19123','755','23','ppp','0','22'), ('19124','755','24','softwareLoopback','0','23'), ('19125','755','25','eon','0','24'), ('19126','755','26','ethernet3Mbit','0','25'), ('19127','755','27','nsip','0','26'), ('19128','755','28','slip','0','27'), ('19129','755','29','ultra','0','28'), ('19130','755','30','ds3','0','29'), ('19131','755','31','sip','0','30'), ('19132','755','32','frameRelay','0','31'), ('19133','755','33','rs232','0','32'), ('19134','755','34','para','0','33'), ('19135','755','35','arcnet','0','34'), ('19136','755','36','arcnetPlus','0','35'), ('19137','755','37','atm','0','36'), ('19138','755','38','miox25','0','37'), ('19139','755','39','sonet','0','38'), ('19140','755','40','x25ple','0','39'), ('19141','755','41','iso88022llc','0','40'), ('19142','755','42','localTalk','0','41'), ('19143','755','43','smdsDxi','0','42'), ('19144','755','44','frameRelayService','0','43'), ('19145','755','45','v35','0','44'), ('19146','755','46','hssi','0','45'), ('19147','755','47','hippi','0','46'), ('19148','755','48','modem','0','47'), ('19149','755','49','aal5','0','48'), ('19150','755','50','sonetPath','0','49'), ('19151','755','51','sonetVT','0','50'), ('19152','755','52','smdsIcip','0','51'), ('19153','755','53','propVirtual','0','52'), ('19154','755','54','propMultiplexor','0','53'), ('19155','755','55','ieee80212','0','54'), ('19156','755','56','fibreChannel','0','55'), ('19157','755','57','hippiInterface','0','56'), ('19158','755','58','frameRelayInterconnect','0','57'), ('19159','755','59','aflane8023','0','58'), ('19160','755','60','aflane8025','0','59'), ('19161','755','61','cctEmul','0','60'), ('19162','755','62','fastEther','0','61'), ('19163','755','63','isdn','0','62'), ('19164','755','64','v11','0','63'), ('19165','755','65','v36','0','64'), ('19166','755','66','g703at64k','0','65'), ('19167','755','67','g703at2mb','0','66'), ('19168','755','68','qllc','0','67'), ('19169','755','69','fastEtherFX','0','68'), ('19170','755','70','channel','0','69'), ('19171','755','71','ieee80211','0','70'), ('19172','755','72','ibm370parChan','0','71'), ('19173','755','73','escon','0','72'), ('19174','755','74','dlsw','0','73'), ('19175','755','75','isdns','0','74'), ('19176','755','76','isdnu','0','75'), ('19177','755','77','lapd','0','76'), ('19178','755','78','ipSwitch','0','77'), ('19179','755','79','rsrb','0','78'), ('19180','755','80','atmLogical','0','79'), ('19181','755','81','ds0','0','80'), ('19182','755','82','ds0Bundle','0','81'), ('19183','755','83','bsc','0','82'), ('19184','755','84','async','0','83'), ('19185','755','85','cnr','0','84'), ('19186','755','86','iso88025Dtr','0','85'), ('19187','755','87','eplrs','0','86'), ('19188','755','88','arap','0','87'), ('19189','755','89','propCnls','0','88'), ('19190','755','90','hostPad','0','89'), ('19191','755','91','termPad','0','90'), ('19192','755','92','frameRelayMPI','0','91'), ('19193','755','93','x213','0','92'), ('19194','755','94','adsl','0','93'), ('19195','755','95','radsl','0','94'), ('19196','755','96','sdsl','0','95'), ('19197','755','97','vdsl','0','96'), ('19198','755','98','iso88025CRFPInt','0','97'), ('19199','755','99','myrinet','0','98'), ('19200','755','100','voiceEM','0','99'), ('19201','755','101','voiceFXO','0','100'), ('19202','755','102','voiceFXS','0','101'), ('19203','755','103','voiceEncap','0','102'), ('19204','755','104','voiceOverIp','0','103'), ('19205','755','105','atmDxi','0','104'), ('19206','755','106','atmFuni','0','105'), ('19207','755','107','atmIma','0','106'), ('19208','755','108','pppMultilinkBundle','0','107'), ('19209','755','109','ipOverCdlc','0','108'), ('19210','755','110','ipOverClaw','0','109'), ('19211','755','111','stackToStack','0','110'), ('19212','755','112','virtualIpAddress','0','111'), ('19213','755','113','mpc','0','112'), ('19214','755','114','ipOverAtm','0','113'), ('19215','755','115','iso88025Fiber','0','114'), ('19216','755','116','tdlc','0','115'), ('19217','755','117','gigabitEthernet','0','116'), ('19218','755','118','hdlc','0','117'), ('19219','755','119','lapf','0','118'), ('19220','755','120','v37','0','119'), ('19221','755','121','x25mlp','0','120'), ('19222','755','122','x25huntGroup','0','121'), ('19223','755','123','trasnpHdlc','0','122'), ('19224','755','124','interleave','0','123'), ('19225','755','125','fast','0','124'), ('19226','755','126','ip','0','125'), ('19227','755','127','docsCableMaclayer','0','126'), ('19228','755','128','docsCableDownstream','0','127'), ('19229','755','129','docsCableUpstream','0','128'), ('19230','755','130','a12MppSwitch','0','129'), ('19231','755','131','tunnel','0','130'), ('19232','755','132','coffee','0','131'), ('19233','755','133','ces','0','132'), ('19234','755','134','atmSubInterface','0','133'), ('19235','755','135','l2vlan','0','134'), ('19236','755','136','l3ipvlan','0','135'), ('19237','755','137','l3ipxvlan','0','136'), ('19238','755','138','digitalPowerline','0','137'), ('19239','755','139','mediaMailOverIp','0','138'), ('19240','755','140','dtm','0','139'), ('19241','755','141','dcn','0','140'), ('19242','755','142','ipForward','0','141'), ('19243','755','143','msdsl','0','142'), ('19244','755','144','ieee1394','0','143'), ('19245','755','145','if-gsn','0','144'), ('19246','755','146','dvbRccMacLayer','0','145'), ('19247','755','147','dvbRccDownstream','0','146'), ('19248','755','148','dvbRccUpstream','0','147'), ('19249','755','149','atmVirtual','0','148'), ('19250','755','150','mplsTunnel','0','149'), ('19251','755','151','srp','0','150'), ('19252','755','152','voiceOverAtm','0','151'), ('19253','755','153','voiceOverFrameRelay','0','152'), ('19254','755','154','idsl','0','153'), ('19255','755','155','compositeLink','0','154'), ('19256','755','156','ss7SigLink','0','155'), ('19257','755','157','propWirelessP2P','0','156'), ('19258','755','158','frForward','0','157'), ('19259','755','159','rfc1483','0','158'), ('19260','755','160','usb','0','159'), ('19261','755','161','ieee8023adLag','0','160'), ('19262','755','162','bgppolicyaccounting','0','161'), ('19263','755','163','frf16MfrBundle','0','162'), ('19264','755','164','h323Gatekeeper','0','163'), ('19265','755','165','h323Proxy','0','164'), ('19266','755','166','mpls','0','165'), ('19267','755','167','mfSigLink','0','166'), ('19268','755','168','hdsl2','0','167'), ('19269','755','169','shdsl','0','168'), ('19270','755','170','ds1FDL','0','169'), ('19271','755','171','pos','0','170'), ('19272','755','172','dvbAsiIn','0','171'), ('19273','755','173','dvbAsiOut','0','172'), ('19274','755','174','plc','0','173'), ('19275','755','175','nfas','0','174'), ('19276','755','176','tr008','0','175'), ('19277','755','177','gr303RDT','0','176'), ('19278','755','178','gr303IDT','0','177'), ('19279','755','179','isup','0','178'), ('19280','755','180','propDocsWirelessMaclayer','0','179'), ('19281','755','181','propDocsWirelessDownstream','0','180'), ('19282','755','182','propDocsWirelessUpstream','0','181'), ('19283','755','183','hiperlan2','0','182'), ('19284','755','184','propBWAp2Mp','0','183'), ('19285','755','185','sonetOverheadChannel','0','184'), ('19286','755','186','digitalWrapperOverheadChannel','0','185'), ('19287','755','187','aal2','0','186'), ('19288','755','188','radioMAC','0','187'), ('19289','755','189','atmRadio','0','188'), ('19290','755','190','imt','0','189'), ('19291','755','191','mvl','0','190'), ('19292','755','192','reachDSL','0','191'), ('19293','755','193','frDlciEndPt','0','192'), ('19294','755','194','atmVciEndPt','0','193'), ('19295','755','195','opticalChannel','0','194'), ('19296','755','196','opticalTransport','0','195'), ('19297','755','197','propAtm','0','196'), ('19298','755','198','voiceOverCable','0','197'), ('19299','755','199','infiniband','0','198'), ('19300','755','200','teLink','0','199'), ('19301','755','201','q2931','0','200'), ('19302','755','202','virtualTg','0','201'), ('19303','755','203','sipTg','0','202'), ('19304','755','204','sipSig','0','203'), ('19305','755','205','docsCableUpstreamChannel','0','204'), ('19306','755','206','econet','0','205'), ('19307','755','207','pon155','0','206'), ('19308','755','208','pon622','0','207'), ('19309','755','209','bridge','0','208'), ('19310','755','210','linegroup','0','209'), ('19311','755','211','voiceEMFGD','0','210'), ('19312','755','212','voiceFGDEANA','0','211'), ('19313','755','213','voiceDID','0','212'), ('19314','755','214','mpegTransport','0','213'), ('19315','755','215','sixToFour','0','214'), ('19316','755','216','gtp','0','215'), ('19317','755','217','pdnEtherLoop1','0','216'), ('19318','755','218','pdnEtherLoop2','0','217'), ('19319','755','219','opticalChannelGroup','0','218'), ('19320','755','220','homepna','0','219'), ('19321','755','221','gfp','0','220'), ('19322','755','222','ciscoISLvlan','0','221'), ('19323','755','223','actelisMetaLOOP','0','222'), ('19324','755','224','fcipLink','0','223'), ('19325','755','225','rpr','0','224'), ('19326','755','226','qam','0','225'), ('19327','755','227','lmp','0','226'), ('19328','755','228','cblVectaStar','0','227'), ('19329','755','229','docsCableMCmtsDownstream','0','228'), ('19330','755','230','adsl2','0','229'), ('19331','755','231','macSecControlledIF','0','230'), ('19332','755','232','macSecUncontrolledIF','0','231'), ('19333','755','233','aviciOpticalEther','0','232'), ('19334','755','234','atmbond','0','233'), ('19335','755','235','voiceFGDOS','0','234'), ('19336','755','236','mocaVersion1','0','235'), ('19337','755','237','ieee80216WMAN','0','236'), ('19338','755','238','adsl2plus','0','237'), ('19339','755','239','dvbRcsMacLayer','0','238'), ('19340','755','240','dvbTdm','0','239'), ('19341','755','241','dvbRcsTdma','0','240'), ('19342','755','242','x86Laps','0','241'), ('19343','755','243','wwanPP','0','242'), ('19344','755','244','wwanPP2','0','243'), ('19345','755','245','voiceEBS','0','244'), ('19346','755','246','ifPwType','0','245'), ('19347','755','247','ilan','0','246'), ('19348','755','248','pip','0','247'), ('19349','755','249','aluELP','0','248'), ('19350','755','250','gpon','0','249'), ('19351','755','251','vdsl2','0','250'), ('19352','755','252','capwapDot11Profile','0','251'), ('19353','755','253','capwapDot11Bss','0','252'), ('19354','755','254','capwapWtpVirtualRadio','0','253'), ('19355','755','255','bits','0','254'), ('19356','755','256','docsCableUpstreamRfPort','0','255'), ('19357','755','257','cableDownstreamRfPort','0','256'), ('19358','755','258','vmwareVirtualNic','0','257'), ('19359','755','259','ieee802154','0','258'), ('19360','755','260','otnOdu','0','259'), ('19361','755','261','otnOtu','0','260'), ('19362','755','262','ifVfiType','0','261'), ('19363','755','263','g9981','0','262'), ('19364','755','264','g9982','0','263'), ('19365','755','265','g9983','0','264'), ('19366','755','266','aluEpon','0','265'), ('19367','755','267','aluEponOnu','0','266'), ('19368','755','268','aluEponPhysicalUni','0','267'), ('19369','755','269','aluEponLogicalLink','0','268'), ('19370','755','270','aluGponOnu','0','269'), ('19371','755','271','aluGponPhysicalUni','0','270'), ('19372','755','272','vmwareNicTeam','0','271'), ('19373','755','277','docsOfdmDownstream','0','272'), ('19374','755','278','docsOfdmaUpstream','0','273'), ('19375','755','279','gfast','0','274'), ('19376','755','280','sdci','0','275'), ('19377','755','281','xboxWireless','0','276'), ('19378','755','282','fastdsl','0','277'), ('19379','755','283','docsCableScte55d1FwdOob','0','278'), ('19380','755','284','docsCableScte55d1RetOob','0','279'), ('19381','755','285','docsCableScte55d2DsOob','0','280'), ('19382','755','286','docsCableScte55d2UsOob','0','281'), ('19383','755','287','docsCableNdf','0','282'), ('19384','755','288','docsCableNdr','0','283'), ('19385','755','289','ptm','0','284'), ('19386','755','290','ghn','0','285'), ('19387','756','0','Down','0','0'), ('19388','756','1','Up','0','1'), ('19389','757','0','not available','0','0'), ('19390','757','1','available','0','1'), ('19391','757','2','unknown','0','2'), ('19392','758','1','up','0','0'), ('19393','758','2','down','0','1'), ('19394','758','4','unknown','0','2'), ('19395','758','5','dormant','0','3'), ('19396','758','6','notPresent','0','4'), ('19397','758','7','lowerLayerDown','0','5'), ('19398','759','1','other','0','0'), ('19399','759','2','regular1822','0','1'), ('19400','759','3','hdh1822','0','2'), ('19401','759','4','ddnX25','0','3'), ('19402','759','5','rfc877x25','0','4'), ('19403','759','6','ethernetCsmacd','0','5'), ('19404','759','7','iso88023Csmacd','0','6'), ('19405','759','8','iso88024TokenBus','0','7'), ('19406','759','9','iso88025TokenRing','0','8'), ('19407','759','10','iso88026Man','0','9'), ('19408','759','11','starLan','0','10'), ('19409','759','12','proteon10Mbit','0','11'), ('19410','759','13','proteon80Mbit','0','12'), ('19411','759','14','hyperchannel','0','13'), ('19412','759','15','fddi','0','14'), ('19413','759','16','lapb','0','15'), ('19414','759','17','sdlc','0','16'), ('19415','759','18','ds1','0','17'), ('19416','759','19','e1','0','18'), ('19417','759','20','basicISDN','0','19'), ('19418','759','21','primaryISDN','0','20'), ('19419','759','22','propPointToPointSerial','0','21'), ('19420','759','23','ppp','0','22'), ('19421','759','24','softwareLoopback','0','23'), ('19422','759','25','eon','0','24'), ('19423','759','26','ethernet3Mbit','0','25'), ('19424','759','27','nsip','0','26'), ('19425','759','28','slip','0','27'), ('19426','759','29','ultra','0','28'), ('19427','759','30','ds3','0','29'), ('19428','759','31','sip','0','30'), ('19429','759','32','frameRelay','0','31'), ('19430','759','33','rs232','0','32'), ('19431','759','34','para','0','33'), ('19432','759','35','arcnet','0','34'), ('19433','759','36','arcnetPlus','0','35'), ('19434','759','37','atm','0','36'), ('19435','759','38','miox25','0','37'), ('19436','759','39','sonet','0','38'), ('19437','759','40','x25ple','0','39'), ('19438','759','41','iso88022llc','0','40'), ('19439','759','42','localTalk','0','41'), ('19440','759','43','smdsDxi','0','42'), ('19441','759','44','frameRelayService','0','43'), ('19442','759','45','v35','0','44'), ('19443','759','46','hssi','0','45'), ('19444','759','47','hippi','0','46'), ('19445','759','48','modem','0','47'), ('19446','759','49','aal5','0','48'), ('19447','759','50','sonetPath','0','49'), ('19448','759','51','sonetVT','0','50'), ('19449','759','52','smdsIcip','0','51'), ('19450','759','53','propVirtual','0','52'), ('19451','759','54','propMultiplexor','0','53'), ('19452','759','55','ieee80212','0','54'), ('19453','759','56','fibreChannel','0','55'), ('19454','759','57','hippiInterface','0','56'), ('19455','759','58','frameRelayInterconnect','0','57'), ('19456','759','59','aflane8023','0','58'), ('19457','759','60','aflane8025','0','59'), ('19458','759','61','cctEmul','0','60'), ('19459','759','62','fastEther','0','61'), ('19460','759','63','isdn','0','62'), ('19461','759','64','v11','0','63'), ('19462','759','65','v36','0','64'), ('19463','759','66','g703at64k','0','65'), ('19464','759','67','g703at2mb','0','66'), ('19465','759','68','qllc','0','67'), ('19466','759','69','fastEtherFX','0','68'), ('19467','759','70','channel','0','69'), ('19468','759','71','ieee80211','0','70'), ('19469','759','72','ibm370parChan','0','71'), ('19470','759','73','escon','0','72'), ('19471','759','74','dlsw','0','73'), ('19472','759','75','isdns','0','74'), ('19473','759','76','isdnu','0','75'), ('19474','759','77','lapd','0','76'), ('19475','759','78','ipSwitch','0','77'), ('19476','759','79','rsrb','0','78'), ('19477','759','80','atmLogical','0','79'), ('19478','759','81','ds0','0','80'), ('19479','759','82','ds0Bundle','0','81'), ('19480','759','83','bsc','0','82'), ('19481','759','84','async','0','83'), ('19482','759','85','cnr','0','84'), ('19483','759','86','iso88025Dtr','0','85'), ('19484','759','87','eplrs','0','86'), ('19485','759','88','arap','0','87'), ('19486','759','89','propCnls','0','88'), ('19487','759','90','hostPad','0','89'), ('19488','759','91','termPad','0','90'), ('19489','759','92','frameRelayMPI','0','91'), ('19490','759','93','x213','0','92'), ('19491','759','94','adsl','0','93'), ('19492','759','95','radsl','0','94'), ('19493','759','96','sdsl','0','95'), ('19494','759','97','vdsl','0','96'), ('19495','759','98','iso88025CRFPInt','0','97'), ('19496','759','99','myrinet','0','98'), ('19497','759','100','voiceEM','0','99'), ('19498','759','101','voiceFXO','0','100'), ('19499','759','102','voiceFXS','0','101'), ('19500','759','103','voiceEncap','0','102'), ('19501','759','104','voiceOverIp','0','103'), ('19502','759','105','atmDxi','0','104'), ('19503','759','106','atmFuni','0','105'), ('19504','759','107','atmIma','0','106'), ('19505','759','108','pppMultilinkBundle','0','107'), ('19506','759','109','ipOverCdlc','0','108'), ('19507','759','110','ipOverClaw','0','109'), ('19508','759','111','stackToStack','0','110'), ('19509','759','112','virtualIpAddress','0','111'), ('19510','759','113','mpc','0','112'), ('19511','759','114','ipOverAtm','0','113'), ('19512','759','115','iso88025Fiber','0','114'), ('19513','759','116','tdlc','0','115'), ('19514','759','117','gigabitEthernet','0','116'), ('19515','759','118','hdlc','0','117'), ('19516','759','119','lapf','0','118'), ('19517','759','120','v37','0','119'), ('19518','759','121','x25mlp','0','120'), ('19519','759','122','x25huntGroup','0','121'), ('19520','759','123','trasnpHdlc','0','122'), ('19521','759','124','interleave','0','123'), ('19522','759','125','fast','0','124'), ('19523','759','126','ip','0','125'), ('19524','759','127','docsCableMaclayer','0','126'), ('19525','759','128','docsCableDownstream','0','127'), ('19526','759','129','docsCableUpstream','0','128'), ('19527','759','130','a12MppSwitch','0','129'), ('19528','759','131','tunnel','0','130'), ('19529','759','132','coffee','0','131'), ('19530','759','133','ces','0','132'), ('19531','759','134','atmSubInterface','0','133'), ('19532','759','135','l2vlan','0','134'), ('19533','759','136','l3ipvlan','0','135'), ('19534','759','137','l3ipxvlan','0','136'), ('19535','759','138','digitalPowerline','0','137'), ('19536','759','139','mediaMailOverIp','0','138'), ('19537','759','140','dtm','0','139'), ('19538','759','141','dcn','0','140'), ('19539','759','142','ipForward','0','141'), ('19540','759','143','msdsl','0','142'), ('19541','759','144','ieee1394','0','143'), ('19542','759','145','if-gsn','0','144'), ('19543','759','146','dvbRccMacLayer','0','145'), ('19544','759','147','dvbRccDownstream','0','146'), ('19545','759','148','dvbRccUpstream','0','147'), ('19546','759','149','atmVirtual','0','148'), ('19547','759','150','mplsTunnel','0','149'), ('19548','759','151','srp','0','150'), ('19549','759','152','voiceOverAtm','0','151'), ('19550','759','153','voiceOverFrameRelay','0','152'), ('19551','759','154','idsl','0','153'), ('19552','759','155','compositeLink','0','154'), ('19553','759','156','ss7SigLink','0','155'), ('19554','759','157','propWirelessP2P','0','156'), ('19555','759','158','frForward','0','157'), ('19556','759','159','rfc1483','0','158'), ('19557','759','160','usb','0','159'), ('19558','759','161','ieee8023adLag','0','160'), ('19559','759','162','bgppolicyaccounting','0','161'), ('19560','759','163','frf16MfrBundle','0','162'), ('19561','759','164','h323Gatekeeper','0','163'), ('19562','759','165','h323Proxy','0','164'), ('19563','759','166','mpls','0','165'), ('19564','759','167','mfSigLink','0','166'), ('19565','759','168','hdsl2','0','167'), ('19566','759','169','shdsl','0','168'), ('19567','759','170','ds1FDL','0','169'), ('19568','759','171','pos','0','170'), ('19569','759','172','dvbAsiIn','0','171'), ('19570','759','173','dvbAsiOut','0','172'), ('19571','759','174','plc','0','173'), ('19572','759','175','nfas','0','174'), ('19573','759','176','tr008','0','175'), ('19574','759','177','gr303RDT','0','176'), ('19575','759','178','gr303IDT','0','177'), ('19576','759','179','isup','0','178'), ('19577','759','180','propDocsWirelessMaclayer','0','179'), ('19578','759','181','propDocsWirelessDownstream','0','180'), ('19579','759','182','propDocsWirelessUpstream','0','181'), ('19580','759','183','hiperlan2','0','182'), ('19581','759','184','propBWAp2Mp','0','183'), ('19582','759','185','sonetOverheadChannel','0','184'), ('19583','759','186','digitalWrapperOverheadChannel','0','185'), ('19584','759','187','aal2','0','186'), ('19585','759','188','radioMAC','0','187'), ('19586','759','189','atmRadio','0','188'), ('19587','759','190','imt','0','189'), ('19588','759','191','mvl','0','190'), ('19589','759','192','reachDSL','0','191'), ('19590','759','193','frDlciEndPt','0','192'), ('19591','759','194','atmVciEndPt','0','193'), ('19592','759','195','opticalChannel','0','194'), ('19593','759','196','opticalTransport','0','195'), ('19594','759','197','propAtm','0','196'), ('19595','759','198','voiceOverCable','0','197'), ('19596','759','199','infiniband','0','198'), ('19597','759','200','teLink','0','199'), ('19598','759','201','q2931','0','200'), ('19599','759','202','virtualTg','0','201'), ('19600','759','203','sipTg','0','202'), ('19601','759','204','sipSig','0','203'), ('19602','759','205','docsCableUpstreamChannel','0','204'), ('19603','759','206','econet','0','205'), ('19604','759','207','pon155','0','206'), ('19605','759','208','pon622','0','207'), ('19606','759','209','bridge','0','208'), ('19607','759','210','linegroup','0','209'), ('19608','759','211','voiceEMFGD','0','210'), ('19609','759','212','voiceFGDEANA','0','211'), ('19610','759','213','voiceDID','0','212'), ('19611','759','214','mpegTransport','0','213'), ('19612','759','215','sixToFour','0','214'), ('19613','759','216','gtp','0','215'), ('19614','759','217','pdnEtherLoop1','0','216'), ('19615','759','218','pdnEtherLoop2','0','217'), ('19616','759','219','opticalChannelGroup','0','218'), ('19617','759','220','homepna','0','219'), ('19618','759','221','gfp','0','220'), ('19619','759','222','ciscoISLvlan','0','221'), ('19620','759','223','actelisMetaLOOP','0','222'), ('19621','759','224','fcipLink','0','223'), ('19622','759','225','rpr','0','224'), ('19623','759','226','qam','0','225'), ('19624','759','227','lmp','0','226'), ('19625','759','228','cblVectaStar','0','227'), ('19626','759','229','docsCableMCmtsDownstream','0','228'), ('19627','759','230','adsl2','0','229'), ('19628','759','231','macSecControlledIF','0','230'), ('19629','759','232','macSecUncontrolledIF','0','231'), ('19630','759','233','aviciOpticalEther','0','232'), ('19631','759','234','atmbond','0','233'), ('19632','759','235','voiceFGDOS','0','234'), ('19633','759','236','mocaVersion1','0','235'), ('19634','759','237','ieee80216WMAN','0','236'), ('19635','759','238','adsl2plus','0','237'), ('19636','759','239','dvbRcsMacLayer','0','238'), ('19637','759','240','dvbTdm','0','239'), ('19638','759','241','dvbRcsTdma','0','240'), ('19639','759','242','x86Laps','0','241'), ('19640','759','243','wwanPP','0','242'), ('19641','759','244','wwanPP2','0','243'), ('19642','759','245','voiceEBS','0','244'), ('19643','759','246','ifPwType','0','245'), ('19644','759','247','ilan','0','246'), ('19645','759','248','pip','0','247'), ('19646','759','249','aluELP','0','248'), ('19647','759','250','gpon','0','249'), ('19648','759','251','vdsl2','0','250'), ('19649','759','252','capwapDot11Profile','0','251'), ('19650','759','253','capwapDot11Bss','0','252'), ('19651','759','254','capwapWtpVirtualRadio','0','253'), ('19652','759','255','bits','0','254'), ('19653','759','256','docsCableUpstreamRfPort','0','255'), ('19654','759','257','cableDownstreamRfPort','0','256'), ('19655','759','258','vmwareVirtualNic','0','257'), ('19656','759','259','ieee802154','0','258'), ('19657','759','260','otnOdu','0','259'), ('19658','759','261','otnOtu','0','260'), ('19659','759','262','ifVfiType','0','261'), ('19660','759','263','g9981','0','262'), ('19661','759','264','g9982','0','263'), ('19662','759','265','g9983','0','264'), ('19663','759','266','aluEpon','0','265'), ('19664','759','267','aluEponOnu','0','266'), ('19665','759','268','aluEponPhysicalUni','0','267'), ('19666','759','269','aluEponLogicalLink','0','268'), ('19667','759','270','aluGponOnu','0','269'), ('19668','759','271','aluGponPhysicalUni','0','270'), ('19669','759','272','vmwareNicTeam','0','271'), ('19670','759','277','docsOfdmDownstream','0','272'), ('19671','759','278','docsOfdmaUpstream','0','273'), ('19672','759','279','gfast','0','274'), ('19673','759','280','sdci','0','275'), ('19674','759','281','xboxWireless','0','276'), ('19675','759','282','fastdsl','0','277'), ('19676','759','283','docsCableScte55d1FwdOob','0','278'), ('19677','759','284','docsCableScte55d1RetOob','0','279'), ('19678','759','285','docsCableScte55d2DsOob','0','280'), ('19679','759','286','docsCableScte55d2UsOob','0','281'), ('19680','759','287','docsCableNdf','0','282'), ('19681','759','288','docsCableNdr','0','283'), ('19682','759','289','ptm','0','284'), ('19683','759','290','ghn','0','285'), ('19684','760','0','Down','0','0'), ('19685','760','1','Up','0','1'), ('19686','761','0','not available','0','0'), ('19687','761','1','available','0','1'), ('19688','761','2','unknown','0','2'), ('19689','762','1','up','0','0'), ('19690','762','2','down','0','1'), ('19691','762','4','unknown','0','2'), ('19692','762','5','dormant','0','3'), ('19693','762','6','notPresent','0','4'), ('19694','762','7','lowerLayerDown','0','5'), ('19695','763','1','other','0','0'), ('19696','763','2','regular1822','0','1'), ('19697','763','3','hdh1822','0','2'), ('19698','763','4','ddnX25','0','3'), ('19699','763','5','rfc877x25','0','4'), ('19700','763','6','ethernetCsmacd','0','5'), ('19701','763','7','iso88023Csmacd','0','6'), ('19702','763','8','iso88024TokenBus','0','7'), ('19703','763','9','iso88025TokenRing','0','8'), ('19704','763','10','iso88026Man','0','9'), ('19705','763','11','starLan','0','10'), ('19706','763','12','proteon10Mbit','0','11'), ('19707','763','13','proteon80Mbit','0','12'), ('19708','763','14','hyperchannel','0','13'), ('19709','763','15','fddi','0','14'), ('19710','763','16','lapb','0','15'), ('19711','763','17','sdlc','0','16'), ('19712','763','18','ds1','0','17'), ('19713','763','19','e1','0','18'), ('19714','763','20','basicISDN','0','19'), ('19715','763','21','primaryISDN','0','20'), ('19716','763','22','propPointToPointSerial','0','21'), ('19717','763','23','ppp','0','22'), ('19718','763','24','softwareLoopback','0','23'), ('19719','763','25','eon','0','24'), ('19720','763','26','ethernet3Mbit','0','25'), ('19721','763','27','nsip','0','26'), ('19722','763','28','slip','0','27'), ('19723','763','29','ultra','0','28'), ('19724','763','30','ds3','0','29'), ('19725','763','31','sip','0','30'), ('19726','763','32','frameRelay','0','31'), ('19727','763','33','rs232','0','32'), ('19728','763','34','para','0','33'), ('19729','763','35','arcnet','0','34'), ('19730','763','36','arcnetPlus','0','35'), ('19731','763','37','atm','0','36'), ('19732','763','38','miox25','0','37'), ('19733','763','39','sonet','0','38'), ('19734','763','40','x25ple','0','39'), ('19735','763','41','iso88022llc','0','40'), ('19736','763','42','localTalk','0','41'), ('19737','763','43','smdsDxi','0','42'), ('19738','763','44','frameRelayService','0','43'), ('19739','763','45','v35','0','44'), ('19740','763','46','hssi','0','45'), ('19741','763','47','hippi','0','46'), ('19742','763','48','modem','0','47'), ('19743','763','49','aal5','0','48'), ('19744','763','50','sonetPath','0','49'), ('19745','763','51','sonetVT','0','50'), ('19746','763','52','smdsIcip','0','51'), ('19747','763','53','propVirtual','0','52'), ('19748','763','54','propMultiplexor','0','53'), ('19749','763','55','ieee80212','0','54'), ('19750','763','56','fibreChannel','0','55'), ('19751','763','57','hippiInterface','0','56'), ('19752','763','58','frameRelayInterconnect','0','57'), ('19753','763','59','aflane8023','0','58'), ('19754','763','60','aflane8025','0','59'), ('19755','763','61','cctEmul','0','60'), ('19756','763','62','fastEther','0','61'), ('19757','763','63','isdn','0','62'), ('19758','763','64','v11','0','63'), ('19759','763','65','v36','0','64'), ('19760','763','66','g703at64k','0','65'), ('19761','763','67','g703at2mb','0','66'), ('19762','763','68','qllc','0','67'), ('19763','763','69','fastEtherFX','0','68'), ('19764','763','70','channel','0','69'), ('19765','763','71','ieee80211','0','70'), ('19766','763','72','ibm370parChan','0','71'), ('19767','763','73','escon','0','72'), ('19768','763','74','dlsw','0','73'), ('19769','763','75','isdns','0','74'), ('19770','763','76','isdnu','0','75'), ('19771','763','77','lapd','0','76'), ('19772','763','78','ipSwitch','0','77'), ('19773','763','79','rsrb','0','78'), ('19774','763','80','atmLogical','0','79'), ('19775','763','81','ds0','0','80'), ('19776','763','82','ds0Bundle','0','81'), ('19777','763','83','bsc','0','82'), ('19778','763','84','async','0','83'), ('19779','763','85','cnr','0','84'), ('19780','763','86','iso88025Dtr','0','85'), ('19781','763','87','eplrs','0','86'), ('19782','763','88','arap','0','87'), ('19783','763','89','propCnls','0','88'), ('19784','763','90','hostPad','0','89'), ('19785','763','91','termPad','0','90'), ('19786','763','92','frameRelayMPI','0','91'), ('19787','763','93','x213','0','92'), ('19788','763','94','adsl','0','93'), ('19789','763','95','radsl','0','94'), ('19790','763','96','sdsl','0','95'), ('19791','763','97','vdsl','0','96'), ('19792','763','98','iso88025CRFPInt','0','97'), ('19793','763','99','myrinet','0','98'), ('19794','763','100','voiceEM','0','99'), ('19795','763','101','voiceFXO','0','100'), ('19796','763','102','voiceFXS','0','101'), ('19797','763','103','voiceEncap','0','102'), ('19798','763','104','voiceOverIp','0','103'), ('19799','763','105','atmDxi','0','104'), ('19800','763','106','atmFuni','0','105'), ('19801','763','107','atmIma','0','106'), ('19802','763','108','pppMultilinkBundle','0','107'), ('19803','763','109','ipOverCdlc','0','108'), ('19804','763','110','ipOverClaw','0','109'), ('19805','763','111','stackToStack','0','110'), ('19806','763','112','virtualIpAddress','0','111'), ('19807','763','113','mpc','0','112'), ('19808','763','114','ipOverAtm','0','113'), ('19809','763','115','iso88025Fiber','0','114'), ('19810','763','116','tdlc','0','115'), ('19811','763','117','gigabitEthernet','0','116'), ('19812','763','118','hdlc','0','117'), ('19813','763','119','lapf','0','118'), ('19814','763','120','v37','0','119'), ('19815','763','121','x25mlp','0','120'), ('19816','763','122','x25huntGroup','0','121'), ('19817','763','123','trasnpHdlc','0','122'), ('19818','763','124','interleave','0','123'), ('19819','763','125','fast','0','124'), ('19820','763','126','ip','0','125'), ('19821','763','127','docsCableMaclayer','0','126'), ('19822','763','128','docsCableDownstream','0','127'), ('19823','763','129','docsCableUpstream','0','128'), ('19824','763','130','a12MppSwitch','0','129'), ('19825','763','131','tunnel','0','130'), ('19826','763','132','coffee','0','131'), ('19827','763','133','ces','0','132'), ('19828','763','134','atmSubInterface','0','133'), ('19829','763','135','l2vlan','0','134'), ('19830','763','136','l3ipvlan','0','135'), ('19831','763','137','l3ipxvlan','0','136'), ('19832','763','138','digitalPowerline','0','137'), ('19833','763','139','mediaMailOverIp','0','138'), ('19834','763','140','dtm','0','139'), ('19835','763','141','dcn','0','140'), ('19836','763','142','ipForward','0','141'), ('19837','763','143','msdsl','0','142'), ('19838','763','144','ieee1394','0','143'), ('19839','763','145','if-gsn','0','144'), ('19840','763','146','dvbRccMacLayer','0','145'), ('19841','763','147','dvbRccDownstream','0','146'), ('19842','763','148','dvbRccUpstream','0','147'), ('19843','763','149','atmVirtual','0','148'), ('19844','763','150','mplsTunnel','0','149'), ('19845','763','151','srp','0','150'), ('19846','763','152','voiceOverAtm','0','151'), ('19847','763','153','voiceOverFrameRelay','0','152'), ('19848','763','154','idsl','0','153'), ('19849','763','155','compositeLink','0','154'), ('19850','763','156','ss7SigLink','0','155'), ('19851','763','157','propWirelessP2P','0','156'), ('19852','763','158','frForward','0','157'), ('19853','763','159','rfc1483','0','158'), ('19854','763','160','usb','0','159'), ('19855','763','161','ieee8023adLag','0','160'), ('19856','763','162','bgppolicyaccounting','0','161'), ('19857','763','163','frf16MfrBundle','0','162'), ('19858','763','164','h323Gatekeeper','0','163'), ('19859','763','165','h323Proxy','0','164'), ('19860','763','166','mpls','0','165'), ('19861','763','167','mfSigLink','0','166'), ('19862','763','168','hdsl2','0','167'), ('19863','763','169','shdsl','0','168'), ('19864','763','170','ds1FDL','0','169'), ('19865','763','171','pos','0','170'), ('19866','763','172','dvbAsiIn','0','171'), ('19867','763','173','dvbAsiOut','0','172'), ('19868','763','174','plc','0','173'), ('19869','763','175','nfas','0','174'), ('19870','763','176','tr008','0','175'), ('19871','763','177','gr303RDT','0','176'), ('19872','763','178','gr303IDT','0','177'), ('19873','763','179','isup','0','178'), ('19874','763','180','propDocsWirelessMaclayer','0','179'), ('19875','763','181','propDocsWirelessDownstream','0','180'), ('19876','763','182','propDocsWirelessUpstream','0','181'), ('19877','763','183','hiperlan2','0','182'), ('19878','763','184','propBWAp2Mp','0','183'), ('19879','763','185','sonetOverheadChannel','0','184'), ('19880','763','186','digitalWrapperOverheadChannel','0','185'), ('19881','763','187','aal2','0','186'), ('19882','763','188','radioMAC','0','187'), ('19883','763','189','atmRadio','0','188'), ('19884','763','190','imt','0','189'), ('19885','763','191','mvl','0','190'), ('19886','763','192','reachDSL','0','191'), ('19887','763','193','frDlciEndPt','0','192'), ('19888','763','194','atmVciEndPt','0','193'), ('19889','763','195','opticalChannel','0','194'), ('19890','763','196','opticalTransport','0','195'), ('19891','763','197','propAtm','0','196'), ('19892','763','198','voiceOverCable','0','197'), ('19893','763','199','infiniband','0','198'), ('19894','763','200','teLink','0','199'), ('19895','763','201','q2931','0','200'), ('19896','763','202','virtualTg','0','201'), ('19897','763','203','sipTg','0','202'), ('19898','763','204','sipSig','0','203'), ('19899','763','205','docsCableUpstreamChannel','0','204'), ('19900','763','206','econet','0','205'), ('19901','763','207','pon155','0','206'), ('19902','763','208','pon622','0','207'), ('19903','763','209','bridge','0','208'), ('19904','763','210','linegroup','0','209'), ('19905','763','211','voiceEMFGD','0','210'), ('19906','763','212','voiceFGDEANA','0','211'), ('19907','763','213','voiceDID','0','212'), ('19908','763','214','mpegTransport','0','213'), ('19909','763','215','sixToFour','0','214'), ('19910','763','216','gtp','0','215'), ('19911','763','217','pdnEtherLoop1','0','216'), ('19912','763','218','pdnEtherLoop2','0','217'), ('19913','763','219','opticalChannelGroup','0','218'), ('19914','763','220','homepna','0','219'), ('19915','763','221','gfp','0','220'), ('19916','763','222','ciscoISLvlan','0','221'), ('19917','763','223','actelisMetaLOOP','0','222'), ('19918','763','224','fcipLink','0','223'), ('19919','763','225','rpr','0','224'), ('19920','763','226','qam','0','225'), ('19921','763','227','lmp','0','226'), ('19922','763','228','cblVectaStar','0','227'), ('19923','763','229','docsCableMCmtsDownstream','0','228'), ('19924','763','230','adsl2','0','229'), ('19925','763','231','macSecControlledIF','0','230'), ('19926','763','232','macSecUncontrolledIF','0','231'), ('19927','763','233','aviciOpticalEther','0','232'), ('19928','763','234','atmbond','0','233'), ('19929','763','235','voiceFGDOS','0','234'), ('19930','763','236','mocaVersion1','0','235'), ('19931','763','237','ieee80216WMAN','0','236'), ('19932','763','238','adsl2plus','0','237'), ('19933','763','239','dvbRcsMacLayer','0','238'), ('19934','763','240','dvbTdm','0','239'), ('19935','763','241','dvbRcsTdma','0','240'), ('19936','763','242','x86Laps','0','241'), ('19937','763','243','wwanPP','0','242'), ('19938','763','244','wwanPP2','0','243'), ('19939','763','245','voiceEBS','0','244'), ('19940','763','246','ifPwType','0','245'), ('19941','763','247','ilan','0','246'), ('19942','763','248','pip','0','247'), ('19943','763','249','aluELP','0','248'), ('19944','763','250','gpon','0','249'), ('19945','763','251','vdsl2','0','250'), ('19946','763','252','capwapDot11Profile','0','251'), ('19947','763','253','capwapDot11Bss','0','252'), ('19948','763','254','capwapWtpVirtualRadio','0','253'), ('19949','763','255','bits','0','254'), ('19950','763','256','docsCableUpstreamRfPort','0','255'), ('19951','763','257','cableDownstreamRfPort','0','256'), ('19952','763','258','vmwareVirtualNic','0','257'), ('19953','763','259','ieee802154','0','258'), ('19954','763','260','otnOdu','0','259'), ('19955','763','261','otnOtu','0','260'), ('19956','763','262','ifVfiType','0','261'), ('19957','763','263','g9981','0','262'), ('19958','763','264','g9982','0','263'), ('19959','763','265','g9983','0','264'), ('19960','763','266','aluEpon','0','265'), ('19961','763','267','aluEponOnu','0','266'), ('19962','763','268','aluEponPhysicalUni','0','267'), ('19963','763','269','aluEponLogicalLink','0','268'), ('19964','763','270','aluGponOnu','0','269'), ('19965','763','271','aluGponPhysicalUni','0','270'), ('19966','763','272','vmwareNicTeam','0','271'), ('19967','763','277','docsOfdmDownstream','0','272'), ('19968','763','278','docsOfdmaUpstream','0','273'), ('19969','763','279','gfast','0','274'), ('19970','763','280','sdci','0','275'), ('19971','763','281','xboxWireless','0','276'), ('19972','763','282','fastdsl','0','277'), ('19973','763','283','docsCableScte55d1FwdOob','0','278'), ('19974','763','284','docsCableScte55d1RetOob','0','279'), ('19975','763','285','docsCableScte55d2DsOob','0','280'), ('19976','763','286','docsCableScte55d2UsOob','0','281'), ('19977','763','287','docsCableNdf','0','282'), ('19978','763','288','docsCableNdr','0','283'), ('19979','763','289','ptm','0','284'), ('19980','763','290','ghn','0','285'), ('19981','764','0','Down','0','0'), ('19982','764','1','Up','0','1'), ('19983','765','0','not available','0','0'), ('19984','765','1','available','0','1'), ('19985','765','2','unknown','0','2'), ('19986','766','1','up','0','0'), ('19987','766','2','down','0','1'), ('19988','766','4','unknown','0','2'), ('19989','766','5','dormant','0','3'), ('19990','766','6','notPresent','0','4'), ('19991','766','7','lowerLayerDown','0','5'), ('19992','767','1','other','0','0'), ('19993','767','2','regular1822','0','1'), ('19994','767','3','hdh1822','0','2'), ('19995','767','4','ddnX25','0','3'), ('19996','767','5','rfc877x25','0','4'), ('19997','767','6','ethernetCsmacd','0','5'), ('19998','767','7','iso88023Csmacd','0','6'), ('19999','767','8','iso88024TokenBus','0','7'), ('20000','767','9','iso88025TokenRing','0','8'), ('20001','767','10','iso88026Man','0','9'), ('20002','767','11','starLan','0','10'), ('20003','767','12','proteon10Mbit','0','11'), ('20004','767','13','proteon80Mbit','0','12'), ('20005','767','14','hyperchannel','0','13'), ('20006','767','15','fddi','0','14'), ('20007','767','16','lapb','0','15'), ('20008','767','17','sdlc','0','16'), ('20009','767','18','ds1','0','17'), ('20010','767','19','e1','0','18'), ('20011','767','20','basicISDN','0','19'), ('20012','767','21','primaryISDN','0','20'), ('20013','767','22','propPointToPointSerial','0','21'), ('20014','767','23','ppp','0','22'), ('20015','767','24','softwareLoopback','0','23'), ('20016','767','25','eon','0','24'), ('20017','767','26','ethernet3Mbit','0','25'), ('20018','767','27','nsip','0','26'), ('20019','767','28','slip','0','27'), ('20020','767','29','ultra','0','28'), ('20021','767','30','ds3','0','29'), ('20022','767','31','sip','0','30'), ('20023','767','32','frameRelay','0','31'), ('20024','767','33','rs232','0','32'), ('20025','767','34','para','0','33'), ('20026','767','35','arcnet','0','34'), ('20027','767','36','arcnetPlus','0','35'), ('20028','767','37','atm','0','36'), ('20029','767','38','miox25','0','37'), ('20030','767','39','sonet','0','38'), ('20031','767','40','x25ple','0','39'), ('20032','767','41','iso88022llc','0','40'), ('20033','767','42','localTalk','0','41'), ('20034','767','43','smdsDxi','0','42'), ('20035','767','44','frameRelayService','0','43'), ('20036','767','45','v35','0','44'), ('20037','767','46','hssi','0','45'), ('20038','767','47','hippi','0','46'), ('20039','767','48','modem','0','47'), ('20040','767','49','aal5','0','48'), ('20041','767','50','sonetPath','0','49'), ('20042','767','51','sonetVT','0','50'), ('20043','767','52','smdsIcip','0','51'), ('20044','767','53','propVirtual','0','52'), ('20045','767','54','propMultiplexor','0','53'), ('20046','767','55','ieee80212','0','54'), ('20047','767','56','fibreChannel','0','55'), ('20048','767','57','hippiInterface','0','56'), ('20049','767','58','frameRelayInterconnect','0','57'), ('20050','767','59','aflane8023','0','58'), ('20051','767','60','aflane8025','0','59'), ('20052','767','61','cctEmul','0','60'), ('20053','767','62','fastEther','0','61'), ('20054','767','63','isdn','0','62'), ('20055','767','64','v11','0','63'), ('20056','767','65','v36','0','64'), ('20057','767','66','g703at64k','0','65'), ('20058','767','67','g703at2mb','0','66'), ('20059','767','68','qllc','0','67'), ('20060','767','69','fastEtherFX','0','68'), ('20061','767','70','channel','0','69'), ('20062','767','71','ieee80211','0','70'), ('20063','767','72','ibm370parChan','0','71'), ('20064','767','73','escon','0','72'), ('20065','767','74','dlsw','0','73'), ('20066','767','75','isdns','0','74'), ('20067','767','76','isdnu','0','75'), ('20068','767','77','lapd','0','76'), ('20069','767','78','ipSwitch','0','77'), ('20070','767','79','rsrb','0','78'), ('20071','767','80','atmLogical','0','79'), ('20072','767','81','ds0','0','80'), ('20073','767','82','ds0Bundle','0','81'), ('20074','767','83','bsc','0','82'), ('20075','767','84','async','0','83'), ('20076','767','85','cnr','0','84'), ('20077','767','86','iso88025Dtr','0','85'), ('20078','767','87','eplrs','0','86'), ('20079','767','88','arap','0','87'), ('20080','767','89','propCnls','0','88'), ('20081','767','90','hostPad','0','89'), ('20082','767','91','termPad','0','90'), ('20083','767','92','frameRelayMPI','0','91'), ('20084','767','93','x213','0','92'), ('20085','767','94','adsl','0','93'), ('20086','767','95','radsl','0','94'), ('20087','767','96','sdsl','0','95'), ('20088','767','97','vdsl','0','96'), ('20089','767','98','iso88025CRFPInt','0','97'), ('20090','767','99','myrinet','0','98'), ('20091','767','100','voiceEM','0','99'), ('20092','767','101','voiceFXO','0','100'), ('20093','767','102','voiceFXS','0','101'), ('20094','767','103','voiceEncap','0','102'), ('20095','767','104','voiceOverIp','0','103'), ('20096','767','105','atmDxi','0','104'), ('20097','767','106','atmFuni','0','105'), ('20098','767','107','atmIma','0','106'), ('20099','767','108','pppMultilinkBundle','0','107'), ('20100','767','109','ipOverCdlc','0','108'), ('20101','767','110','ipOverClaw','0','109'), ('20102','767','111','stackToStack','0','110'), ('20103','767','112','virtualIpAddress','0','111'), ('20104','767','113','mpc','0','112'), ('20105','767','114','ipOverAtm','0','113'), ('20106','767','115','iso88025Fiber','0','114'), ('20107','767','116','tdlc','0','115'), ('20108','767','117','gigabitEthernet','0','116'), ('20109','767','118','hdlc','0','117'), ('20110','767','119','lapf','0','118'), ('20111','767','120','v37','0','119'), ('20112','767','121','x25mlp','0','120'), ('20113','767','122','x25huntGroup','0','121'), ('20114','767','123','trasnpHdlc','0','122'), ('20115','767','124','interleave','0','123'), ('20116','767','125','fast','0','124'), ('20117','767','126','ip','0','125'), ('20118','767','127','docsCableMaclayer','0','126'), ('20119','767','128','docsCableDownstream','0','127'), ('20120','767','129','docsCableUpstream','0','128'), ('20121','767','130','a12MppSwitch','0','129'), ('20122','767','131','tunnel','0','130'), ('20123','767','132','coffee','0','131'), ('20124','767','133','ces','0','132'), ('20125','767','134','atmSubInterface','0','133'), ('20126','767','135','l2vlan','0','134'), ('20127','767','136','l3ipvlan','0','135'), ('20128','767','137','l3ipxvlan','0','136'), ('20129','767','138','digitalPowerline','0','137'), ('20130','767','139','mediaMailOverIp','0','138'), ('20131','767','140','dtm','0','139'), ('20132','767','141','dcn','0','140'), ('20133','767','142','ipForward','0','141'), ('20134','767','143','msdsl','0','142'), ('20135','767','144','ieee1394','0','143'), ('20136','767','145','if-gsn','0','144'), ('20137','767','146','dvbRccMacLayer','0','145'), ('20138','767','147','dvbRccDownstream','0','146'), ('20139','767','148','dvbRccUpstream','0','147'), ('20140','767','149','atmVirtual','0','148'), ('20141','767','150','mplsTunnel','0','149'), ('20142','767','151','srp','0','150'), ('20143','767','152','voiceOverAtm','0','151'), ('20144','767','153','voiceOverFrameRelay','0','152'), ('20145','767','154','idsl','0','153'), ('20146','767','155','compositeLink','0','154'), ('20147','767','156','ss7SigLink','0','155'), ('20148','767','157','propWirelessP2P','0','156'), ('20149','767','158','frForward','0','157'), ('20150','767','159','rfc1483','0','158'), ('20151','767','160','usb','0','159'), ('20152','767','161','ieee8023adLag','0','160'), ('20153','767','162','bgppolicyaccounting','0','161'), ('20154','767','163','frf16MfrBundle','0','162'), ('20155','767','164','h323Gatekeeper','0','163'), ('20156','767','165','h323Proxy','0','164'), ('20157','767','166','mpls','0','165'), ('20158','767','167','mfSigLink','0','166'), ('20159','767','168','hdsl2','0','167'), ('20160','767','169','shdsl','0','168'), ('20161','767','170','ds1FDL','0','169'), ('20162','767','171','pos','0','170'), ('20163','767','172','dvbAsiIn','0','171'), ('20164','767','173','dvbAsiOut','0','172'), ('20165','767','174','plc','0','173'), ('20166','767','175','nfas','0','174'), ('20167','767','176','tr008','0','175'), ('20168','767','177','gr303RDT','0','176'), ('20169','767','178','gr303IDT','0','177'), ('20170','767','179','isup','0','178'), ('20171','767','180','propDocsWirelessMaclayer','0','179'), ('20172','767','181','propDocsWirelessDownstream','0','180'), ('20173','767','182','propDocsWirelessUpstream','0','181'), ('20174','767','183','hiperlan2','0','182'), ('20175','767','184','propBWAp2Mp','0','183'), ('20176','767','185','sonetOverheadChannel','0','184'), ('20177','767','186','digitalWrapperOverheadChannel','0','185'), ('20178','767','187','aal2','0','186'), ('20179','767','188','radioMAC','0','187'), ('20180','767','189','atmRadio','0','188'), ('20181','767','190','imt','0','189'), ('20182','767','191','mvl','0','190'), ('20183','767','192','reachDSL','0','191'), ('20184','767','193','frDlciEndPt','0','192'), ('20185','767','194','atmVciEndPt','0','193'), ('20186','767','195','opticalChannel','0','194'), ('20187','767','196','opticalTransport','0','195'), ('20188','767','197','propAtm','0','196'), ('20189','767','198','voiceOverCable','0','197'), ('20190','767','199','infiniband','0','198'), ('20191','767','200','teLink','0','199'), ('20192','767','201','q2931','0','200'), ('20193','767','202','virtualTg','0','201'), ('20194','767','203','sipTg','0','202'), ('20195','767','204','sipSig','0','203'), ('20196','767','205','docsCableUpstreamChannel','0','204'), ('20197','767','206','econet','0','205'), ('20198','767','207','pon155','0','206'), ('20199','767','208','pon622','0','207'), ('20200','767','209','bridge','0','208'), ('20201','767','210','linegroup','0','209'), ('20202','767','211','voiceEMFGD','0','210'), ('20203','767','212','voiceFGDEANA','0','211'), ('20204','767','213','voiceDID','0','212'), ('20205','767','214','mpegTransport','0','213'), ('20206','767','215','sixToFour','0','214'), ('20207','767','216','gtp','0','215'), ('20208','767','217','pdnEtherLoop1','0','216'), ('20209','767','218','pdnEtherLoop2','0','217'), ('20210','767','219','opticalChannelGroup','0','218'), ('20211','767','220','homepna','0','219'), ('20212','767','221','gfp','0','220'), ('20213','767','222','ciscoISLvlan','0','221'), ('20214','767','223','actelisMetaLOOP','0','222'), ('20215','767','224','fcipLink','0','223'), ('20216','767','225','rpr','0','224'), ('20217','767','226','qam','0','225'), ('20218','767','227','lmp','0','226'), ('20219','767','228','cblVectaStar','0','227'), ('20220','767','229','docsCableMCmtsDownstream','0','228'), ('20221','767','230','adsl2','0','229'), ('20222','767','231','macSecControlledIF','0','230'), ('20223','767','232','macSecUncontrolledIF','0','231'), ('20224','767','233','aviciOpticalEther','0','232'), ('20225','767','234','atmbond','0','233'), ('20226','767','235','voiceFGDOS','0','234'), ('20227','767','236','mocaVersion1','0','235'), ('20228','767','237','ieee80216WMAN','0','236'), ('20229','767','238','adsl2plus','0','237'), ('20230','767','239','dvbRcsMacLayer','0','238'), ('20231','767','240','dvbTdm','0','239'), ('20232','767','241','dvbRcsTdma','0','240'), ('20233','767','242','x86Laps','0','241'), ('20234','767','243','wwanPP','0','242'), ('20235','767','244','wwanPP2','0','243'), ('20236','767','245','voiceEBS','0','244'), ('20237','767','246','ifPwType','0','245'), ('20238','767','247','ilan','0','246'), ('20239','767','248','pip','0','247'), ('20240','767','249','aluELP','0','248'), ('20241','767','250','gpon','0','249'), ('20242','767','251','vdsl2','0','250'), ('20243','767','252','capwapDot11Profile','0','251'), ('20244','767','253','capwapDot11Bss','0','252'), ('20245','767','254','capwapWtpVirtualRadio','0','253'), ('20246','767','255','bits','0','254'), ('20247','767','256','docsCableUpstreamRfPort','0','255'), ('20248','767','257','cableDownstreamRfPort','0','256'), ('20249','767','258','vmwareVirtualNic','0','257'), ('20250','767','259','ieee802154','0','258'), ('20251','767','260','otnOdu','0','259'), ('20252','767','261','otnOtu','0','260'), ('20253','767','262','ifVfiType','0','261'), ('20254','767','263','g9981','0','262'), ('20255','767','264','g9982','0','263'), ('20256','767','265','g9983','0','264'), ('20257','767','266','aluEpon','0','265'), ('20258','767','267','aluEponOnu','0','266'), ('20259','767','268','aluEponPhysicalUni','0','267'), ('20260','767','269','aluEponLogicalLink','0','268'), ('20261','767','270','aluGponOnu','0','269'), ('20262','767','271','aluGponPhysicalUni','0','270'), ('20263','767','272','vmwareNicTeam','0','271'), ('20264','767','277','docsOfdmDownstream','0','272'), ('20265','767','278','docsOfdmaUpstream','0','273'), ('20266','767','279','gfast','0','274'), ('20267','767','280','sdci','0','275'), ('20268','767','281','xboxWireless','0','276'), ('20269','767','282','fastdsl','0','277'), ('20270','767','283','docsCableScte55d1FwdOob','0','278'), ('20271','767','284','docsCableScte55d1RetOob','0','279'), ('20272','767','285','docsCableScte55d2DsOob','0','280'), ('20273','767','286','docsCableScte55d2UsOob','0','281'), ('20274','767','287','docsCableNdf','0','282'), ('20275','767','288','docsCableNdr','0','283'), ('20276','767','289','ptm','0','284'), ('20277','767','290','ghn','0','285'), ('20278','768','0','Down','0','0'), ('20279','768','1','Up','0','1'), ('20280','769','0','not available','0','0'), ('20281','769','1','available','0','1'), ('20282','769','2','unknown','0','2'), ('20283','770','1','up','0','0'), ('20284','770','2','down','0','1'), ('20285','770','4','unknown','0','2'), ('20286','770','5','dormant','0','3'), ('20287','770','6','notPresent','0','4'), ('20288','770','7','lowerLayerDown','0','5'), ('20289','771','1','other','0','0'), ('20290','771','2','regular1822','0','1'), ('20291','771','3','hdh1822','0','2'), ('20292','771','4','ddnX25','0','3'), ('20293','771','5','rfc877x25','0','4'), ('20294','771','6','ethernetCsmacd','0','5'), ('20295','771','7','iso88023Csmacd','0','6'), ('20296','771','8','iso88024TokenBus','0','7'), ('20297','771','9','iso88025TokenRing','0','8'), ('20298','771','10','iso88026Man','0','9'), ('20299','771','11','starLan','0','10'), ('20300','771','12','proteon10Mbit','0','11'), ('20301','771','13','proteon80Mbit','0','12'), ('20302','771','14','hyperchannel','0','13'), ('20303','771','15','fddi','0','14'), ('20304','771','16','lapb','0','15'), ('20305','771','17','sdlc','0','16'), ('20306','771','18','ds1','0','17'), ('20307','771','19','e1','0','18'), ('20308','771','20','basicISDN','0','19'), ('20309','771','21','primaryISDN','0','20'), ('20310','771','22','propPointToPointSerial','0','21'), ('20311','771','23','ppp','0','22'), ('20312','771','24','softwareLoopback','0','23'), ('20313','771','25','eon','0','24'), ('20314','771','26','ethernet3Mbit','0','25'), ('20315','771','27','nsip','0','26'), ('20316','771','28','slip','0','27'), ('20317','771','29','ultra','0','28'), ('20318','771','30','ds3','0','29'), ('20319','771','31','sip','0','30'), ('20320','771','32','frameRelay','0','31'), ('20321','771','33','rs232','0','32'), ('20322','771','34','para','0','33'), ('20323','771','35','arcnet','0','34'), ('20324','771','36','arcnetPlus','0','35'), ('20325','771','37','atm','0','36'), ('20326','771','38','miox25','0','37'), ('20327','771','39','sonet','0','38'), ('20328','771','40','x25ple','0','39'), ('20329','771','41','iso88022llc','0','40'), ('20330','771','42','localTalk','0','41'), ('20331','771','43','smdsDxi','0','42'), ('20332','771','44','frameRelayService','0','43'), ('20333','771','45','v35','0','44'), ('20334','771','46','hssi','0','45'), ('20335','771','47','hippi','0','46'), ('20336','771','48','modem','0','47'), ('20337','771','49','aal5','0','48'), ('20338','771','50','sonetPath','0','49'), ('20339','771','51','sonetVT','0','50'), ('20340','771','52','smdsIcip','0','51'), ('20341','771','53','propVirtual','0','52'), ('20342','771','54','propMultiplexor','0','53'), ('20343','771','55','ieee80212','0','54'), ('20344','771','56','fibreChannel','0','55'), ('20345','771','57','hippiInterface','0','56'), ('20346','771','58','frameRelayInterconnect','0','57'), ('20347','771','59','aflane8023','0','58'), ('20348','771','60','aflane8025','0','59'), ('20349','771','61','cctEmul','0','60'), ('20350','771','62','fastEther','0','61'), ('20351','771','63','isdn','0','62'), ('20352','771','64','v11','0','63'), ('20353','771','65','v36','0','64'), ('20354','771','66','g703at64k','0','65'), ('20355','771','67','g703at2mb','0','66'), ('20356','771','68','qllc','0','67'), ('20357','771','69','fastEtherFX','0','68'), ('20358','771','70','channel','0','69'), ('20359','771','71','ieee80211','0','70'), ('20360','771','72','ibm370parChan','0','71'), ('20361','771','73','escon','0','72'), ('20362','771','74','dlsw','0','73'), ('20363','771','75','isdns','0','74'), ('20364','771','76','isdnu','0','75'), ('20365','771','77','lapd','0','76'), ('20366','771','78','ipSwitch','0','77'), ('20367','771','79','rsrb','0','78'), ('20368','771','80','atmLogical','0','79'), ('20369','771','81','ds0','0','80'), ('20370','771','82','ds0Bundle','0','81'), ('20371','771','83','bsc','0','82'), ('20372','771','84','async','0','83'), ('20373','771','85','cnr','0','84'), ('20374','771','86','iso88025Dtr','0','85'), ('20375','771','87','eplrs','0','86'), ('20376','771','88','arap','0','87'), ('20377','771','89','propCnls','0','88'), ('20378','771','90','hostPad','0','89'), ('20379','771','91','termPad','0','90'), ('20380','771','92','frameRelayMPI','0','91'), ('20381','771','93','x213','0','92'), ('20382','771','94','adsl','0','93'), ('20383','771','95','radsl','0','94'), ('20384','771','96','sdsl','0','95'), ('20385','771','97','vdsl','0','96'), ('20386','771','98','iso88025CRFPInt','0','97'), ('20387','771','99','myrinet','0','98'), ('20388','771','100','voiceEM','0','99'), ('20389','771','101','voiceFXO','0','100'), ('20390','771','102','voiceFXS','0','101'), ('20391','771','103','voiceEncap','0','102'), ('20392','771','104','voiceOverIp','0','103'), ('20393','771','105','atmDxi','0','104'), ('20394','771','106','atmFuni','0','105'), ('20395','771','107','atmIma','0','106'), ('20396','771','108','pppMultilinkBundle','0','107'), ('20397','771','109','ipOverCdlc','0','108'), ('20398','771','110','ipOverClaw','0','109'), ('20399','771','111','stackToStack','0','110'), ('20400','771','112','virtualIpAddress','0','111'), ('20401','771','113','mpc','0','112'), ('20402','771','114','ipOverAtm','0','113'), ('20403','771','115','iso88025Fiber','0','114'), ('20404','771','116','tdlc','0','115'), ('20405','771','117','gigabitEthernet','0','116'), ('20406','771','118','hdlc','0','117'), ('20407','771','119','lapf','0','118'), ('20408','771','120','v37','0','119'), ('20409','771','121','x25mlp','0','120'), ('20410','771','122','x25huntGroup','0','121'), ('20411','771','123','trasnpHdlc','0','122'), ('20412','771','124','interleave','0','123'), ('20413','771','125','fast','0','124'), ('20414','771','126','ip','0','125'), ('20415','771','127','docsCableMaclayer','0','126'), ('20416','771','128','docsCableDownstream','0','127'), ('20417','771','129','docsCableUpstream','0','128'), ('20418','771','130','a12MppSwitch','0','129'), ('20419','771','131','tunnel','0','130'), ('20420','771','132','coffee','0','131'), ('20421','771','133','ces','0','132'), ('20422','771','134','atmSubInterface','0','133'), ('20423','771','135','l2vlan','0','134'), ('20424','771','136','l3ipvlan','0','135'), ('20425','771','137','l3ipxvlan','0','136'), ('20426','771','138','digitalPowerline','0','137'), ('20427','771','139','mediaMailOverIp','0','138'), ('20428','771','140','dtm','0','139'), ('20429','771','141','dcn','0','140'), ('20430','771','142','ipForward','0','141'), ('20431','771','143','msdsl','0','142'), ('20432','771','144','ieee1394','0','143'), ('20433','771','145','if-gsn','0','144'), ('20434','771','146','dvbRccMacLayer','0','145'), ('20435','771','147','dvbRccDownstream','0','146'), ('20436','771','148','dvbRccUpstream','0','147'), ('20437','771','149','atmVirtual','0','148'), ('20438','771','150','mplsTunnel','0','149'), ('20439','771','151','srp','0','150'), ('20440','771','152','voiceOverAtm','0','151'), ('20441','771','153','voiceOverFrameRelay','0','152'), ('20442','771','154','idsl','0','153'), ('20443','771','155','compositeLink','0','154'), ('20444','771','156','ss7SigLink','0','155'), ('20445','771','157','propWirelessP2P','0','156'), ('20446','771','158','frForward','0','157'), ('20447','771','159','rfc1483','0','158'), ('20448','771','160','usb','0','159'), ('20449','771','161','ieee8023adLag','0','160'), ('20450','771','162','bgppolicyaccounting','0','161'), ('20451','771','163','frf16MfrBundle','0','162'), ('20452','771','164','h323Gatekeeper','0','163'), ('20453','771','165','h323Proxy','0','164'), ('20454','771','166','mpls','0','165'), ('20455','771','167','mfSigLink','0','166'), ('20456','771','168','hdsl2','0','167'), ('20457','771','169','shdsl','0','168'), ('20458','771','170','ds1FDL','0','169'), ('20459','771','171','pos','0','170'), ('20460','771','172','dvbAsiIn','0','171'), ('20461','771','173','dvbAsiOut','0','172'), ('20462','771','174','plc','0','173'), ('20463','771','175','nfas','0','174'), ('20464','771','176','tr008','0','175'), ('20465','771','177','gr303RDT','0','176'), ('20466','771','178','gr303IDT','0','177'), ('20467','771','179','isup','0','178'), ('20468','771','180','propDocsWirelessMaclayer','0','179'), ('20469','771','181','propDocsWirelessDownstream','0','180'), ('20470','771','182','propDocsWirelessUpstream','0','181'), ('20471','771','183','hiperlan2','0','182'), ('20472','771','184','propBWAp2Mp','0','183'), ('20473','771','185','sonetOverheadChannel','0','184'), ('20474','771','186','digitalWrapperOverheadChannel','0','185'), ('20475','771','187','aal2','0','186'), ('20476','771','188','radioMAC','0','187'), ('20477','771','189','atmRadio','0','188'), ('20478','771','190','imt','0','189'), ('20479','771','191','mvl','0','190'), ('20480','771','192','reachDSL','0','191'), ('20481','771','193','frDlciEndPt','0','192'), ('20482','771','194','atmVciEndPt','0','193'), ('20483','771','195','opticalChannel','0','194'), ('20484','771','196','opticalTransport','0','195'), ('20485','771','197','propAtm','0','196'), ('20486','771','198','voiceOverCable','0','197'), ('20487','771','199','infiniband','0','198'), ('20488','771','200','teLink','0','199'), ('20489','771','201','q2931','0','200'), ('20490','771','202','virtualTg','0','201'), ('20491','771','203','sipTg','0','202'), ('20492','771','204','sipSig','0','203'), ('20493','771','205','docsCableUpstreamChannel','0','204'), ('20494','771','206','econet','0','205'), ('20495','771','207','pon155','0','206'), ('20496','771','208','pon622','0','207'), ('20497','771','209','bridge','0','208'), ('20498','771','210','linegroup','0','209'), ('20499','771','211','voiceEMFGD','0','210'), ('20500','771','212','voiceFGDEANA','0','211'), ('20501','771','213','voiceDID','0','212'), ('20502','771','214','mpegTransport','0','213'), ('20503','771','215','sixToFour','0','214'), ('20504','771','216','gtp','0','215'), ('20505','771','217','pdnEtherLoop1','0','216'), ('20506','771','218','pdnEtherLoop2','0','217'), ('20507','771','219','opticalChannelGroup','0','218'), ('20508','771','220','homepna','0','219'), ('20509','771','221','gfp','0','220'), ('20510','771','222','ciscoISLvlan','0','221'), ('20511','771','223','actelisMetaLOOP','0','222'), ('20512','771','224','fcipLink','0','223'), ('20513','771','225','rpr','0','224'), ('20514','771','226','qam','0','225'), ('20515','771','227','lmp','0','226'), ('20516','771','228','cblVectaStar','0','227'), ('20517','771','229','docsCableMCmtsDownstream','0','228'), ('20518','771','230','adsl2','0','229'), ('20519','771','231','macSecControlledIF','0','230'), ('20520','771','232','macSecUncontrolledIF','0','231'), ('20521','771','233','aviciOpticalEther','0','232'), ('20522','771','234','atmbond','0','233'), ('20523','771','235','voiceFGDOS','0','234'), ('20524','771','236','mocaVersion1','0','235'), ('20525','771','237','ieee80216WMAN','0','236'), ('20526','771','238','adsl2plus','0','237'), ('20527','771','239','dvbRcsMacLayer','0','238'), ('20528','771','240','dvbTdm','0','239'), ('20529','771','241','dvbRcsTdma','0','240'), ('20530','771','242','x86Laps','0','241'), ('20531','771','243','wwanPP','0','242'), ('20532','771','244','wwanPP2','0','243'), ('20533','771','245','voiceEBS','0','244'), ('20534','771','246','ifPwType','0','245'), ('20535','771','247','ilan','0','246'), ('20536','771','248','pip','0','247'), ('20537','771','249','aluELP','0','248'), ('20538','771','250','gpon','0','249'), ('20539','771','251','vdsl2','0','250'), ('20540','771','252','capwapDot11Profile','0','251'), ('20541','771','253','capwapDot11Bss','0','252'), ('20542','771','254','capwapWtpVirtualRadio','0','253'), ('20543','771','255','bits','0','254'), ('20544','771','256','docsCableUpstreamRfPort','0','255'), ('20545','771','257','cableDownstreamRfPort','0','256'), ('20546','771','258','vmwareVirtualNic','0','257'), ('20547','771','259','ieee802154','0','258'), ('20548','771','260','otnOdu','0','259'), ('20549','771','261','otnOtu','0','260'), ('20550','771','262','ifVfiType','0','261'), ('20551','771','263','g9981','0','262'), ('20552','771','264','g9982','0','263'), ('20553','771','265','g9983','0','264'), ('20554','771','266','aluEpon','0','265'), ('20555','771','267','aluEponOnu','0','266'), ('20556','771','268','aluEponPhysicalUni','0','267'), ('20557','771','269','aluEponLogicalLink','0','268'), ('20558','771','270','aluGponOnu','0','269'), ('20559','771','271','aluGponPhysicalUni','0','270'), ('20560','771','272','vmwareNicTeam','0','271'), ('20561','771','277','docsOfdmDownstream','0','272'), ('20562','771','278','docsOfdmaUpstream','0','273'), ('20563','771','279','gfast','0','274'), ('20564','771','280','sdci','0','275'), ('20565','771','281','xboxWireless','0','276'), ('20566','771','282','fastdsl','0','277'), ('20567','771','283','docsCableScte55d1FwdOob','0','278'), ('20568','771','284','docsCableScte55d1RetOob','0','279'), ('20569','771','285','docsCableScte55d2DsOob','0','280'), ('20570','771','286','docsCableScte55d2UsOob','0','281'), ('20571','771','287','docsCableNdf','0','282'), ('20572','771','288','docsCableNdr','0','283'), ('20573','771','289','ptm','0','284'), ('20574','771','290','ghn','0','285'), ('20575','772','0','Down','0','0'), ('20576','772','1','Up','0','1'), ('20577','773','0','not available','0','0'), ('20578','773','1','available','0','1'), ('20579','773','2','unknown','0','2'), ('20580','774','1','up','0','0'), ('20581','774','2','down','0','1'), ('20582','774','4','unknown','0','2'), ('20583','774','5','dormant','0','3'), ('20584','774','6','notPresent','0','4'), ('20585','774','7','lowerLayerDown','0','5'), ('20586','775','1','other','0','0'), ('20587','775','2','regular1822','0','1'), ('20588','775','3','hdh1822','0','2'), ('20589','775','4','ddnX25','0','3'), ('20590','775','5','rfc877x25','0','4'), ('20591','775','6','ethernetCsmacd','0','5'), ('20592','775','7','iso88023Csmacd','0','6'), ('20593','775','8','iso88024TokenBus','0','7'), ('20594','775','9','iso88025TokenRing','0','8'), ('20595','775','10','iso88026Man','0','9'), ('20596','775','11','starLan','0','10'), ('20597','775','12','proteon10Mbit','0','11'), ('20598','775','13','proteon80Mbit','0','12'), ('20599','775','14','hyperchannel','0','13'), ('20600','775','15','fddi','0','14'), ('20601','775','16','lapb','0','15'), ('20602','775','17','sdlc','0','16'), ('20603','775','18','ds1','0','17'), ('20604','775','19','e1','0','18'), ('20605','775','20','basicISDN','0','19'), ('20606','775','21','primaryISDN','0','20'), ('20607','775','22','propPointToPointSerial','0','21'), ('20608','775','23','ppp','0','22'), ('20609','775','24','softwareLoopback','0','23'), ('20610','775','25','eon','0','24'), ('20611','775','26','ethernet3Mbit','0','25'), ('20612','775','27','nsip','0','26'), ('20613','775','28','slip','0','27'), ('20614','775','29','ultra','0','28'), ('20615','775','30','ds3','0','29'), ('20616','775','31','sip','0','30'), ('20617','775','32','frameRelay','0','31'), ('20618','775','33','rs232','0','32'), ('20619','775','34','para','0','33'), ('20620','775','35','arcnet','0','34'), ('20621','775','36','arcnetPlus','0','35'), ('20622','775','37','atm','0','36'), ('20623','775','38','miox25','0','37'), ('20624','775','39','sonet','0','38'), ('20625','775','40','x25ple','0','39'), ('20626','775','41','iso88022llc','0','40'), ('20627','775','42','localTalk','0','41'), ('20628','775','43','smdsDxi','0','42'), ('20629','775','44','frameRelayService','0','43'), ('20630','775','45','v35','0','44'), ('20631','775','46','hssi','0','45'), ('20632','775','47','hippi','0','46'), ('20633','775','48','modem','0','47'), ('20634','775','49','aal5','0','48'), ('20635','775','50','sonetPath','0','49'), ('20636','775','51','sonetVT','0','50'), ('20637','775','52','smdsIcip','0','51'), ('20638','775','53','propVirtual','0','52'), ('20639','775','54','propMultiplexor','0','53'), ('20640','775','55','ieee80212','0','54'), ('20641','775','56','fibreChannel','0','55'), ('20642','775','57','hippiInterface','0','56'), ('20643','775','58','frameRelayInterconnect','0','57'), ('20644','775','59','aflane8023','0','58'), ('20645','775','60','aflane8025','0','59'), ('20646','775','61','cctEmul','0','60'), ('20647','775','62','fastEther','0','61'), ('20648','775','63','isdn','0','62'), ('20649','775','64','v11','0','63'), ('20650','775','65','v36','0','64'), ('20651','775','66','g703at64k','0','65'), ('20652','775','67','g703at2mb','0','66'), ('20653','775','68','qllc','0','67'), ('20654','775','69','fastEtherFX','0','68'), ('20655','775','70','channel','0','69'), ('20656','775','71','ieee80211','0','70'), ('20657','775','72','ibm370parChan','0','71'), ('20658','775','73','escon','0','72'), ('20659','775','74','dlsw','0','73'), ('20660','775','75','isdns','0','74'), ('20661','775','76','isdnu','0','75'), ('20662','775','77','lapd','0','76'), ('20663','775','78','ipSwitch','0','77'), ('20664','775','79','rsrb','0','78'), ('20665','775','80','atmLogical','0','79'), ('20666','775','81','ds0','0','80'), ('20667','775','82','ds0Bundle','0','81'), ('20668','775','83','bsc','0','82'), ('20669','775','84','async','0','83'), ('20670','775','85','cnr','0','84'), ('20671','775','86','iso88025Dtr','0','85'), ('20672','775','87','eplrs','0','86'), ('20673','775','88','arap','0','87'), ('20674','775','89','propCnls','0','88'), ('20675','775','90','hostPad','0','89'), ('20676','775','91','termPad','0','90'), ('20677','775','92','frameRelayMPI','0','91'), ('20678','775','93','x213','0','92'), ('20679','775','94','adsl','0','93'), ('20680','775','95','radsl','0','94'), ('20681','775','96','sdsl','0','95'), ('20682','775','97','vdsl','0','96'), ('20683','775','98','iso88025CRFPInt','0','97'), ('20684','775','99','myrinet','0','98'), ('20685','775','100','voiceEM','0','99'), ('20686','775','101','voiceFXO','0','100'), ('20687','775','102','voiceFXS','0','101'), ('20688','775','103','voiceEncap','0','102'), ('20689','775','104','voiceOverIp','0','103'), ('20690','775','105','atmDxi','0','104'), ('20691','775','106','atmFuni','0','105'), ('20692','775','107','atmIma','0','106'), ('20693','775','108','pppMultilinkBundle','0','107'), ('20694','775','109','ipOverCdlc','0','108'), ('20695','775','110','ipOverClaw','0','109'), ('20696','775','111','stackToStack','0','110'), ('20697','775','112','virtualIpAddress','0','111'), ('20698','775','113','mpc','0','112'), ('20699','775','114','ipOverAtm','0','113'), ('20700','775','115','iso88025Fiber','0','114'), ('20701','775','116','tdlc','0','115'), ('20702','775','117','gigabitEthernet','0','116'), ('20703','775','118','hdlc','0','117'), ('20704','775','119','lapf','0','118'), ('20705','775','120','v37','0','119'), ('20706','775','121','x25mlp','0','120'), ('20707','775','122','x25huntGroup','0','121'), ('20708','775','123','trasnpHdlc','0','122'), ('20709','775','124','interleave','0','123'), ('20710','775','125','fast','0','124'), ('20711','775','126','ip','0','125'), ('20712','775','127','docsCableMaclayer','0','126'), ('20713','775','128','docsCableDownstream','0','127'), ('20714','775','129','docsCableUpstream','0','128'), ('20715','775','130','a12MppSwitch','0','129'), ('20716','775','131','tunnel','0','130'), ('20717','775','132','coffee','0','131'), ('20718','775','133','ces','0','132'), ('20719','775','134','atmSubInterface','0','133'), ('20720','775','135','l2vlan','0','134'), ('20721','775','136','l3ipvlan','0','135'), ('20722','775','137','l3ipxvlan','0','136'), ('20723','775','138','digitalPowerline','0','137'), ('20724','775','139','mediaMailOverIp','0','138'), ('20725','775','140','dtm','0','139'), ('20726','775','141','dcn','0','140'), ('20727','775','142','ipForward','0','141'), ('20728','775','143','msdsl','0','142'), ('20729','775','144','ieee1394','0','143'), ('20730','775','145','if-gsn','0','144'), ('20731','775','146','dvbRccMacLayer','0','145'), ('20732','775','147','dvbRccDownstream','0','146'), ('20733','775','148','dvbRccUpstream','0','147'), ('20734','775','149','atmVirtual','0','148'), ('20735','775','150','mplsTunnel','0','149'), ('20736','775','151','srp','0','150'), ('20737','775','152','voiceOverAtm','0','151'), ('20738','775','153','voiceOverFrameRelay','0','152'), ('20739','775','154','idsl','0','153'), ('20740','775','155','compositeLink','0','154'), ('20741','775','156','ss7SigLink','0','155'), ('20742','775','157','propWirelessP2P','0','156'), ('20743','775','158','frForward','0','157'), ('20744','775','159','rfc1483','0','158'), ('20745','775','160','usb','0','159'), ('20746','775','161','ieee8023adLag','0','160'), ('20747','775','162','bgppolicyaccounting','0','161'), ('20748','775','163','frf16MfrBundle','0','162'), ('20749','775','164','h323Gatekeeper','0','163'), ('20750','775','165','h323Proxy','0','164'), ('20751','775','166','mpls','0','165'), ('20752','775','167','mfSigLink','0','166'), ('20753','775','168','hdsl2','0','167'), ('20754','775','169','shdsl','0','168'), ('20755','775','170','ds1FDL','0','169'), ('20756','775','171','pos','0','170'), ('20757','775','172','dvbAsiIn','0','171'), ('20758','775','173','dvbAsiOut','0','172'), ('20759','775','174','plc','0','173'), ('20760','775','175','nfas','0','174'), ('20761','775','176','tr008','0','175'), ('20762','775','177','gr303RDT','0','176'), ('20763','775','178','gr303IDT','0','177'), ('20764','775','179','isup','0','178'), ('20765','775','180','propDocsWirelessMaclayer','0','179'), ('20766','775','181','propDocsWirelessDownstream','0','180'), ('20767','775','182','propDocsWirelessUpstream','0','181'), ('20768','775','183','hiperlan2','0','182'), ('20769','775','184','propBWAp2Mp','0','183'), ('20770','775','185','sonetOverheadChannel','0','184'), ('20771','775','186','digitalWrapperOverheadChannel','0','185'), ('20772','775','187','aal2','0','186'), ('20773','775','188','radioMAC','0','187'), ('20774','775','189','atmRadio','0','188'), ('20775','775','190','imt','0','189'), ('20776','775','191','mvl','0','190'), ('20777','775','192','reachDSL','0','191'), ('20778','775','193','frDlciEndPt','0','192'), ('20779','775','194','atmVciEndPt','0','193'), ('20780','775','195','opticalChannel','0','194'), ('20781','775','196','opticalTransport','0','195'), ('20782','775','197','propAtm','0','196'), ('20783','775','198','voiceOverCable','0','197'), ('20784','775','199','infiniband','0','198'), ('20785','775','200','teLink','0','199'), ('20786','775','201','q2931','0','200'), ('20787','775','202','virtualTg','0','201'), ('20788','775','203','sipTg','0','202'), ('20789','775','204','sipSig','0','203'), ('20790','775','205','docsCableUpstreamChannel','0','204'), ('20791','775','206','econet','0','205'), ('20792','775','207','pon155','0','206'), ('20793','775','208','pon622','0','207'), ('20794','775','209','bridge','0','208'), ('20795','775','210','linegroup','0','209'), ('20796','775','211','voiceEMFGD','0','210'), ('20797','775','212','voiceFGDEANA','0','211'), ('20798','775','213','voiceDID','0','212'), ('20799','775','214','mpegTransport','0','213'), ('20800','775','215','sixToFour','0','214'), ('20801','775','216','gtp','0','215'), ('20802','775','217','pdnEtherLoop1','0','216'), ('20803','775','218','pdnEtherLoop2','0','217'), ('20804','775','219','opticalChannelGroup','0','218'), ('20805','775','220','homepna','0','219'), ('20806','775','221','gfp','0','220'), ('20807','775','222','ciscoISLvlan','0','221'), ('20808','775','223','actelisMetaLOOP','0','222'), ('20809','775','224','fcipLink','0','223'), ('20810','775','225','rpr','0','224'), ('20811','775','226','qam','0','225'), ('20812','775','227','lmp','0','226'), ('20813','775','228','cblVectaStar','0','227'), ('20814','775','229','docsCableMCmtsDownstream','0','228'), ('20815','775','230','adsl2','0','229'), ('20816','775','231','macSecControlledIF','0','230'), ('20817','775','232','macSecUncontrolledIF','0','231'), ('20818','775','233','aviciOpticalEther','0','232'), ('20819','775','234','atmbond','0','233'), ('20820','775','235','voiceFGDOS','0','234'), ('20821','775','236','mocaVersion1','0','235'), ('20822','775','237','ieee80216WMAN','0','236'), ('20823','775','238','adsl2plus','0','237'), ('20824','775','239','dvbRcsMacLayer','0','238'), ('20825','775','240','dvbTdm','0','239'), ('20826','775','241','dvbRcsTdma','0','240'), ('20827','775','242','x86Laps','0','241'), ('20828','775','243','wwanPP','0','242'), ('20829','775','244','wwanPP2','0','243'), ('20830','775','245','voiceEBS','0','244'), ('20831','775','246','ifPwType','0','245'), ('20832','775','247','ilan','0','246'), ('20833','775','248','pip','0','247'), ('20834','775','249','aluELP','0','248'), ('20835','775','250','gpon','0','249'), ('20836','775','251','vdsl2','0','250'), ('20837','775','252','capwapDot11Profile','0','251'), ('20838','775','253','capwapDot11Bss','0','252'), ('20839','775','254','capwapWtpVirtualRadio','0','253'), ('20840','775','255','bits','0','254'), ('20841','775','256','docsCableUpstreamRfPort','0','255'), ('20842','775','257','cableDownstreamRfPort','0','256'), ('20843','775','258','vmwareVirtualNic','0','257'), ('20844','775','259','ieee802154','0','258'), ('20845','775','260','otnOdu','0','259'), ('20846','775','261','otnOtu','0','260'), ('20847','775','262','ifVfiType','0','261'), ('20848','775','263','g9981','0','262'), ('20849','775','264','g9982','0','263'), ('20850','775','265','g9983','0','264'), ('20851','775','266','aluEpon','0','265'), ('20852','775','267','aluEponOnu','0','266'), ('20853','775','268','aluEponPhysicalUni','0','267'), ('20854','775','269','aluEponLogicalLink','0','268'), ('20855','775','270','aluGponOnu','0','269'), ('20856','775','271','aluGponPhysicalUni','0','270'), ('20857','775','272','vmwareNicTeam','0','271'), ('20858','775','277','docsOfdmDownstream','0','272'), ('20859','775','278','docsOfdmaUpstream','0','273'), ('20860','775','279','gfast','0','274'), ('20861','775','280','sdci','0','275'), ('20862','775','281','xboxWireless','0','276'), ('20863','775','282','fastdsl','0','277'), ('20864','775','283','docsCableScte55d1FwdOob','0','278'), ('20865','775','284','docsCableScte55d1RetOob','0','279'), ('20866','775','285','docsCableScte55d2DsOob','0','280'), ('20867','775','286','docsCableScte55d2UsOob','0','281'), ('20868','775','287','docsCableNdf','0','282'), ('20869','775','288','docsCableNdr','0','283'), ('20870','775','289','ptm','0','284'), ('20871','775','290','ghn','0','285'), ('20872','776','0','Down','0','0'), ('20873','776','1','Up','0','1'), ('20874','777','0','not available','0','0'), ('20875','777','1','available','0','1'), ('20876','777','2','unknown','0','2'), ('20877','778','1','up','0','0'), ('20878','778','2','down','0','1'), ('20879','778','4','unknown','0','2'), ('20880','778','5','dormant','0','3'), ('20881','778','6','notPresent','0','4'), ('20882','778','7','lowerLayerDown','0','5'), ('20883','779','1','other','0','0'), ('20884','779','2','regular1822','0','1'), ('20885','779','3','hdh1822','0','2'), ('20886','779','4','ddnX25','0','3'), ('20887','779','5','rfc877x25','0','4'), ('20888','779','6','ethernetCsmacd','0','5'), ('20889','779','7','iso88023Csmacd','0','6'), ('20890','779','8','iso88024TokenBus','0','7'), ('20891','779','9','iso88025TokenRing','0','8'), ('20892','779','10','iso88026Man','0','9'), ('20893','779','11','starLan','0','10'), ('20894','779','12','proteon10Mbit','0','11'), ('20895','779','13','proteon80Mbit','0','12'), ('20896','779','14','hyperchannel','0','13'), ('20897','779','15','fddi','0','14'), ('20898','779','16','lapb','0','15'), ('20899','779','17','sdlc','0','16'), ('20900','779','18','ds1','0','17'), ('20901','779','19','e1','0','18'), ('20902','779','20','basicISDN','0','19'), ('20903','779','21','primaryISDN','0','20'), ('20904','779','22','propPointToPointSerial','0','21'), ('20905','779','23','ppp','0','22'), ('20906','779','24','softwareLoopback','0','23'), ('20907','779','25','eon','0','24'), ('20908','779','26','ethernet3Mbit','0','25'), ('20909','779','27','nsip','0','26'), ('20910','779','28','slip','0','27'), ('20911','779','29','ultra','0','28'), ('20912','779','30','ds3','0','29'), ('20913','779','31','sip','0','30'), ('20914','779','32','frameRelay','0','31'), ('20915','779','33','rs232','0','32'), ('20916','779','34','para','0','33'), ('20917','779','35','arcnet','0','34'), ('20918','779','36','arcnetPlus','0','35'), ('20919','779','37','atm','0','36'), ('20920','779','38','miox25','0','37'), ('20921','779','39','sonet','0','38'), ('20922','779','40','x25ple','0','39'), ('20923','779','41','iso88022llc','0','40'), ('20924','779','42','localTalk','0','41'), ('20925','779','43','smdsDxi','0','42'), ('20926','779','44','frameRelayService','0','43'), ('20927','779','45','v35','0','44'), ('20928','779','46','hssi','0','45'), ('20929','779','47','hippi','0','46'), ('20930','779','48','modem','0','47'), ('20931','779','49','aal5','0','48'), ('20932','779','50','sonetPath','0','49'), ('20933','779','51','sonetVT','0','50'), ('20934','779','52','smdsIcip','0','51'), ('20935','779','53','propVirtual','0','52'), ('20936','779','54','propMultiplexor','0','53'), ('20937','779','55','ieee80212','0','54'), ('20938','779','56','fibreChannel','0','55'), ('20939','779','57','hippiInterface','0','56'), ('20940','779','58','frameRelayInterconnect','0','57'), ('20941','779','59','aflane8023','0','58'), ('20942','779','60','aflane8025','0','59'), ('20943','779','61','cctEmul','0','60'), ('20944','779','62','fastEther','0','61'), ('20945','779','63','isdn','0','62'), ('20946','779','64','v11','0','63'), ('20947','779','65','v36','0','64'), ('20948','779','66','g703at64k','0','65'), ('20949','779','67','g703at2mb','0','66'), ('20950','779','68','qllc','0','67'), ('20951','779','69','fastEtherFX','0','68'), ('20952','779','70','channel','0','69'), ('20953','779','71','ieee80211','0','70'), ('20954','779','72','ibm370parChan','0','71'), ('20955','779','73','escon','0','72'), ('20956','779','74','dlsw','0','73'), ('20957','779','75','isdns','0','74'), ('20958','779','76','isdnu','0','75'), ('20959','779','77','lapd','0','76'), ('20960','779','78','ipSwitch','0','77'), ('20961','779','79','rsrb','0','78'), ('20962','779','80','atmLogical','0','79'), ('20963','779','81','ds0','0','80'), ('20964','779','82','ds0Bundle','0','81'), ('20965','779','83','bsc','0','82'), ('20966','779','84','async','0','83'), ('20967','779','85','cnr','0','84'), ('20968','779','86','iso88025Dtr','0','85'), ('20969','779','87','eplrs','0','86'), ('20970','779','88','arap','0','87'), ('20971','779','89','propCnls','0','88'), ('20972','779','90','hostPad','0','89'), ('20973','779','91','termPad','0','90'), ('20974','779','92','frameRelayMPI','0','91'), ('20975','779','93','x213','0','92'), ('20976','779','94','adsl','0','93'), ('20977','779','95','radsl','0','94'), ('20978','779','96','sdsl','0','95'), ('20979','779','97','vdsl','0','96'), ('20980','779','98','iso88025CRFPInt','0','97'), ('20981','779','99','myrinet','0','98'), ('20982','779','100','voiceEM','0','99'), ('20983','779','101','voiceFXO','0','100'), ('20984','779','102','voiceFXS','0','101'), ('20985','779','103','voiceEncap','0','102'), ('20986','779','104','voiceOverIp','0','103'), ('20987','779','105','atmDxi','0','104'), ('20988','779','106','atmFuni','0','105'), ('20989','779','107','atmIma','0','106'), ('20990','779','108','pppMultilinkBundle','0','107'), ('20991','779','109','ipOverCdlc','0','108'), ('20992','779','110','ipOverClaw','0','109'), ('20993','779','111','stackToStack','0','110'), ('20994','779','112','virtualIpAddress','0','111'), ('20995','779','113','mpc','0','112'), ('20996','779','114','ipOverAtm','0','113'), ('20997','779','115','iso88025Fiber','0','114'), ('20998','779','116','tdlc','0','115'), ('20999','779','117','gigabitEthernet','0','116'), ('21000','779','118','hdlc','0','117'), ('21001','779','119','lapf','0','118'), ('21002','779','120','v37','0','119'), ('21003','779','121','x25mlp','0','120'), ('21004','779','122','x25huntGroup','0','121'), ('21005','779','123','trasnpHdlc','0','122'), ('21006','779','124','interleave','0','123'), ('21007','779','125','fast','0','124'), ('21008','779','126','ip','0','125'), ('21009','779','127','docsCableMaclayer','0','126'), ('21010','779','128','docsCableDownstream','0','127'), ('21011','779','129','docsCableUpstream','0','128'), ('21012','779','130','a12MppSwitch','0','129'), ('21013','779','131','tunnel','0','130'), ('21014','779','132','coffee','0','131'), ('21015','779','133','ces','0','132'), ('21016','779','134','atmSubInterface','0','133'), ('21017','779','135','l2vlan','0','134'), ('21018','779','136','l3ipvlan','0','135'), ('21019','779','137','l3ipxvlan','0','136'), ('21020','779','138','digitalPowerline','0','137'), ('21021','779','139','mediaMailOverIp','0','138'), ('21022','779','140','dtm','0','139'), ('21023','779','141','dcn','0','140'), ('21024','779','142','ipForward','0','141'), ('21025','779','143','msdsl','0','142'), ('21026','779','144','ieee1394','0','143'), ('21027','779','145','if-gsn','0','144'), ('21028','779','146','dvbRccMacLayer','0','145'), ('21029','779','147','dvbRccDownstream','0','146'), ('21030','779','148','dvbRccUpstream','0','147'), ('21031','779','149','atmVirtual','0','148'), ('21032','779','150','mplsTunnel','0','149'), ('21033','779','151','srp','0','150'), ('21034','779','152','voiceOverAtm','0','151'), ('21035','779','153','voiceOverFrameRelay','0','152'), ('21036','779','154','idsl','0','153'), ('21037','779','155','compositeLink','0','154'), ('21038','779','156','ss7SigLink','0','155'), ('21039','779','157','propWirelessP2P','0','156'), ('21040','779','158','frForward','0','157'), ('21041','779','159','rfc1483','0','158'), ('21042','779','160','usb','0','159'), ('21043','779','161','ieee8023adLag','0','160'), ('21044','779','162','bgppolicyaccounting','0','161'), ('21045','779','163','frf16MfrBundle','0','162'), ('21046','779','164','h323Gatekeeper','0','163'), ('21047','779','165','h323Proxy','0','164'), ('21048','779','166','mpls','0','165'), ('21049','779','167','mfSigLink','0','166'), ('21050','779','168','hdsl2','0','167'), ('21051','779','169','shdsl','0','168'), ('21052','779','170','ds1FDL','0','169'), ('21053','779','171','pos','0','170'), ('21054','779','172','dvbAsiIn','0','171'), ('21055','779','173','dvbAsiOut','0','172'), ('21056','779','174','plc','0','173'), ('21057','779','175','nfas','0','174'), ('21058','779','176','tr008','0','175'), ('21059','779','177','gr303RDT','0','176'), ('21060','779','178','gr303IDT','0','177'), ('21061','779','179','isup','0','178'), ('21062','779','180','propDocsWirelessMaclayer','0','179'), ('21063','779','181','propDocsWirelessDownstream','0','180'), ('21064','779','182','propDocsWirelessUpstream','0','181'), ('21065','779','183','hiperlan2','0','182'), ('21066','779','184','propBWAp2Mp','0','183'), ('21067','779','185','sonetOverheadChannel','0','184'), ('21068','779','186','digitalWrapperOverheadChannel','0','185'), ('21069','779','187','aal2','0','186'), ('21070','779','188','radioMAC','0','187'), ('21071','779','189','atmRadio','0','188'), ('21072','779','190','imt','0','189'), ('21073','779','191','mvl','0','190'), ('21074','779','192','reachDSL','0','191'), ('21075','779','193','frDlciEndPt','0','192'), ('21076','779','194','atmVciEndPt','0','193'), ('21077','779','195','opticalChannel','0','194'), ('21078','779','196','opticalTransport','0','195'), ('21079','779','197','propAtm','0','196'), ('21080','779','198','voiceOverCable','0','197'), ('21081','779','199','infiniband','0','198'), ('21082','779','200','teLink','0','199'), ('21083','779','201','q2931','0','200'), ('21084','779','202','virtualTg','0','201'), ('21085','779','203','sipTg','0','202'), ('21086','779','204','sipSig','0','203'), ('21087','779','205','docsCableUpstreamChannel','0','204'), ('21088','779','206','econet','0','205'), ('21089','779','207','pon155','0','206'), ('21090','779','208','pon622','0','207'), ('21091','779','209','bridge','0','208'), ('21092','779','210','linegroup','0','209'), ('21093','779','211','voiceEMFGD','0','210'), ('21094','779','212','voiceFGDEANA','0','211'), ('21095','779','213','voiceDID','0','212'), ('21096','779','214','mpegTransport','0','213'), ('21097','779','215','sixToFour','0','214'), ('21098','779','216','gtp','0','215'), ('21099','779','217','pdnEtherLoop1','0','216'), ('21100','779','218','pdnEtherLoop2','0','217'), ('21101','779','219','opticalChannelGroup','0','218'), ('21102','779','220','homepna','0','219'), ('21103','779','221','gfp','0','220'), ('21104','779','222','ciscoISLvlan','0','221'), ('21105','779','223','actelisMetaLOOP','0','222'), ('21106','779','224','fcipLink','0','223'), ('21107','779','225','rpr','0','224'), ('21108','779','226','qam','0','225'), ('21109','779','227','lmp','0','226'), ('21110','779','228','cblVectaStar','0','227'), ('21111','779','229','docsCableMCmtsDownstream','0','228'), ('21112','779','230','adsl2','0','229'), ('21113','779','231','macSecControlledIF','0','230'), ('21114','779','232','macSecUncontrolledIF','0','231'), ('21115','779','233','aviciOpticalEther','0','232'), ('21116','779','234','atmbond','0','233'), ('21117','779','235','voiceFGDOS','0','234'), ('21118','779','236','mocaVersion1','0','235'), ('21119','779','237','ieee80216WMAN','0','236'), ('21120','779','238','adsl2plus','0','237'), ('21121','779','239','dvbRcsMacLayer','0','238'), ('21122','779','240','dvbTdm','0','239'), ('21123','779','241','dvbRcsTdma','0','240'), ('21124','779','242','x86Laps','0','241'), ('21125','779','243','wwanPP','0','242'), ('21126','779','244','wwanPP2','0','243'), ('21127','779','245','voiceEBS','0','244'), ('21128','779','246','ifPwType','0','245'), ('21129','779','247','ilan','0','246'), ('21130','779','248','pip','0','247'), ('21131','779','249','aluELP','0','248'), ('21132','779','250','gpon','0','249'), ('21133','779','251','vdsl2','0','250'), ('21134','779','252','capwapDot11Profile','0','251'), ('21135','779','253','capwapDot11Bss','0','252'), ('21136','779','254','capwapWtpVirtualRadio','0','253'), ('21137','779','255','bits','0','254'), ('21138','779','256','docsCableUpstreamRfPort','0','255'), ('21139','779','257','cableDownstreamRfPort','0','256'), ('21140','779','258','vmwareVirtualNic','0','257'), ('21141','779','259','ieee802154','0','258'), ('21142','779','260','otnOdu','0','259'), ('21143','779','261','otnOtu','0','260'), ('21144','779','262','ifVfiType','0','261'), ('21145','779','263','g9981','0','262'), ('21146','779','264','g9982','0','263'), ('21147','779','265','g9983','0','264'), ('21148','779','266','aluEpon','0','265'), ('21149','779','267','aluEponOnu','0','266'), ('21150','779','268','aluEponPhysicalUni','0','267'), ('21151','779','269','aluEponLogicalLink','0','268'), ('21152','779','270','aluGponOnu','0','269'), ('21153','779','271','aluGponPhysicalUni','0','270'), ('21154','779','272','vmwareNicTeam','0','271'), ('21155','779','277','docsOfdmDownstream','0','272'), ('21156','779','278','docsOfdmaUpstream','0','273'), ('21157','779','279','gfast','0','274'), ('21158','779','280','sdci','0','275'), ('21159','779','281','xboxWireless','0','276'), ('21160','779','282','fastdsl','0','277'), ('21161','779','283','docsCableScte55d1FwdOob','0','278'), ('21162','779','284','docsCableScte55d1RetOob','0','279'), ('21163','779','285','docsCableScte55d2DsOob','0','280'), ('21164','779','286','docsCableScte55d2UsOob','0','281'), ('21165','779','287','docsCableNdf','0','282'), ('21166','779','288','docsCableNdr','0','283'), ('21167','779','289','ptm','0','284'), ('21168','779','290','ghn','0','285'), ('21169','780','0','Down','0','0'), ('21170','780','1','Up','0','1'), ('21171','781','0','not available','0','0'), ('21172','781','1','available','0','1'), ('21173','781','2','unknown','0','2'), ('21174','782','1','up','0','0'), ('21175','782','2','down','0','1'), ('21176','782','4','unknown','0','2'), ('21177','782','5','dormant','0','3'), ('21178','782','6','notPresent','0','4'), ('21179','782','7','lowerLayerDown','0','5'), ('21180','783','1','other','0','0'), ('21181','783','2','regular1822','0','1'), ('21182','783','3','hdh1822','0','2'), ('21183','783','4','ddnX25','0','3'), ('21184','783','5','rfc877x25','0','4'), ('21185','783','6','ethernetCsmacd','0','5'), ('21186','783','7','iso88023Csmacd','0','6'), ('21187','783','8','iso88024TokenBus','0','7'), ('21188','783','9','iso88025TokenRing','0','8'), ('21189','783','10','iso88026Man','0','9'), ('21190','783','11','starLan','0','10'), ('21191','783','12','proteon10Mbit','0','11'), ('21192','783','13','proteon80Mbit','0','12'), ('21193','783','14','hyperchannel','0','13'), ('21194','783','15','fddi','0','14'), ('21195','783','16','lapb','0','15'), ('21196','783','17','sdlc','0','16'), ('21197','783','18','ds1','0','17'), ('21198','783','19','e1','0','18'), ('21199','783','20','basicISDN','0','19'), ('21200','783','21','primaryISDN','0','20'), ('21201','783','22','propPointToPointSerial','0','21'), ('21202','783','23','ppp','0','22'), ('21203','783','24','softwareLoopback','0','23'), ('21204','783','25','eon','0','24'), ('21205','783','26','ethernet3Mbit','0','25'), ('21206','783','27','nsip','0','26'), ('21207','783','28','slip','0','27'), ('21208','783','29','ultra','0','28'), ('21209','783','30','ds3','0','29'), ('21210','783','31','sip','0','30'), ('21211','783','32','frameRelay','0','31'), ('21212','783','33','rs232','0','32'), ('21213','783','34','para','0','33'), ('21214','783','35','arcnet','0','34'), ('21215','783','36','arcnetPlus','0','35'), ('21216','783','37','atm','0','36'), ('21217','783','38','miox25','0','37'), ('21218','783','39','sonet','0','38'), ('21219','783','40','x25ple','0','39'), ('21220','783','41','iso88022llc','0','40'), ('21221','783','42','localTalk','0','41'), ('21222','783','43','smdsDxi','0','42'), ('21223','783','44','frameRelayService','0','43'), ('21224','783','45','v35','0','44'), ('21225','783','46','hssi','0','45'), ('21226','783','47','hippi','0','46'), ('21227','783','48','modem','0','47'), ('21228','783','49','aal5','0','48'), ('21229','783','50','sonetPath','0','49'), ('21230','783','51','sonetVT','0','50'), ('21231','783','52','smdsIcip','0','51'), ('21232','783','53','propVirtual','0','52'), ('21233','783','54','propMultiplexor','0','53'), ('21234','783','55','ieee80212','0','54'), ('21235','783','56','fibreChannel','0','55'), ('21236','783','57','hippiInterface','0','56'), ('21237','783','58','frameRelayInterconnect','0','57'), ('21238','783','59','aflane8023','0','58'), ('21239','783','60','aflane8025','0','59'), ('21240','783','61','cctEmul','0','60'), ('21241','783','62','fastEther','0','61'), ('21242','783','63','isdn','0','62'), ('21243','783','64','v11','0','63'), ('21244','783','65','v36','0','64'), ('21245','783','66','g703at64k','0','65'), ('21246','783','67','g703at2mb','0','66'), ('21247','783','68','qllc','0','67'), ('21248','783','69','fastEtherFX','0','68'), ('21249','783','70','channel','0','69'), ('21250','783','71','ieee80211','0','70'), ('21251','783','72','ibm370parChan','0','71'), ('21252','783','73','escon','0','72'), ('21253','783','74','dlsw','0','73'), ('21254','783','75','isdns','0','74'), ('21255','783','76','isdnu','0','75'), ('21256','783','77','lapd','0','76'), ('21257','783','78','ipSwitch','0','77'), ('21258','783','79','rsrb','0','78'), ('21259','783','80','atmLogical','0','79'), ('21260','783','81','ds0','0','80'), ('21261','783','82','ds0Bundle','0','81'), ('21262','783','83','bsc','0','82'), ('21263','783','84','async','0','83'), ('21264','783','85','cnr','0','84'), ('21265','783','86','iso88025Dtr','0','85'), ('21266','783','87','eplrs','0','86'), ('21267','783','88','arap','0','87'), ('21268','783','89','propCnls','0','88'), ('21269','783','90','hostPad','0','89'), ('21270','783','91','termPad','0','90'), ('21271','783','92','frameRelayMPI','0','91'), ('21272','783','93','x213','0','92'), ('21273','783','94','adsl','0','93'), ('21274','783','95','radsl','0','94'), ('21275','783','96','sdsl','0','95'), ('21276','783','97','vdsl','0','96'), ('21277','783','98','iso88025CRFPInt','0','97'), ('21278','783','99','myrinet','0','98'), ('21279','783','100','voiceEM','0','99'), ('21280','783','101','voiceFXO','0','100'), ('21281','783','102','voiceFXS','0','101'), ('21282','783','103','voiceEncap','0','102'), ('21283','783','104','voiceOverIp','0','103'), ('21284','783','105','atmDxi','0','104'), ('21285','783','106','atmFuni','0','105'), ('21286','783','107','atmIma','0','106'), ('21287','783','108','pppMultilinkBundle','0','107'), ('21288','783','109','ipOverCdlc','0','108'), ('21289','783','110','ipOverClaw','0','109'), ('21290','783','111','stackToStack','0','110'), ('21291','783','112','virtualIpAddress','0','111'), ('21292','783','113','mpc','0','112'), ('21293','783','114','ipOverAtm','0','113'), ('21294','783','115','iso88025Fiber','0','114'), ('21295','783','116','tdlc','0','115'), ('21296','783','117','gigabitEthernet','0','116'), ('21297','783','118','hdlc','0','117'), ('21298','783','119','lapf','0','118'), ('21299','783','120','v37','0','119'), ('21300','783','121','x25mlp','0','120'), ('21301','783','122','x25huntGroup','0','121'), ('21302','783','123','trasnpHdlc','0','122'), ('21303','783','124','interleave','0','123'), ('21304','783','125','fast','0','124'), ('21305','783','126','ip','0','125'), ('21306','783','127','docsCableMaclayer','0','126'), ('21307','783','128','docsCableDownstream','0','127'), ('21308','783','129','docsCableUpstream','0','128'), ('21309','783','130','a12MppSwitch','0','129'), ('21310','783','131','tunnel','0','130'), ('21311','783','132','coffee','0','131'), ('21312','783','133','ces','0','132'), ('21313','783','134','atmSubInterface','0','133'), ('21314','783','135','l2vlan','0','134'), ('21315','783','136','l3ipvlan','0','135'), ('21316','783','137','l3ipxvlan','0','136'), ('21317','783','138','digitalPowerline','0','137'), ('21318','783','139','mediaMailOverIp','0','138'), ('21319','783','140','dtm','0','139'), ('21320','783','141','dcn','0','140'), ('21321','783','142','ipForward','0','141'), ('21322','783','143','msdsl','0','142'), ('21323','783','144','ieee1394','0','143'), ('21324','783','145','if-gsn','0','144'), ('21325','783','146','dvbRccMacLayer','0','145'), ('21326','783','147','dvbRccDownstream','0','146'), ('21327','783','148','dvbRccUpstream','0','147'), ('21328','783','149','atmVirtual','0','148'), ('21329','783','150','mplsTunnel','0','149'), ('21330','783','151','srp','0','150'), ('21331','783','152','voiceOverAtm','0','151'), ('21332','783','153','voiceOverFrameRelay','0','152'), ('21333','783','154','idsl','0','153'), ('21334','783','155','compositeLink','0','154'), ('21335','783','156','ss7SigLink','0','155'), ('21336','783','157','propWirelessP2P','0','156'), ('21337','783','158','frForward','0','157'), ('21338','783','159','rfc1483','0','158'), ('21339','783','160','usb','0','159'), ('21340','783','161','ieee8023adLag','0','160'), ('21341','783','162','bgppolicyaccounting','0','161'), ('21342','783','163','frf16MfrBundle','0','162'), ('21343','783','164','h323Gatekeeper','0','163'), ('21344','783','165','h323Proxy','0','164'), ('21345','783','166','mpls','0','165'), ('21346','783','167','mfSigLink','0','166'), ('21347','783','168','hdsl2','0','167'), ('21348','783','169','shdsl','0','168'), ('21349','783','170','ds1FDL','0','169'), ('21350','783','171','pos','0','170'), ('21351','783','172','dvbAsiIn','0','171'), ('21352','783','173','dvbAsiOut','0','172'), ('21353','783','174','plc','0','173'), ('21354','783','175','nfas','0','174'), ('21355','783','176','tr008','0','175'), ('21356','783','177','gr303RDT','0','176'), ('21357','783','178','gr303IDT','0','177'), ('21358','783','179','isup','0','178'), ('21359','783','180','propDocsWirelessMaclayer','0','179'), ('21360','783','181','propDocsWirelessDownstream','0','180'), ('21361','783','182','propDocsWirelessUpstream','0','181'), ('21362','783','183','hiperlan2','0','182'), ('21363','783','184','propBWAp2Mp','0','183'), ('21364','783','185','sonetOverheadChannel','0','184'), ('21365','783','186','digitalWrapperOverheadChannel','0','185'), ('21366','783','187','aal2','0','186'), ('21367','783','188','radioMAC','0','187'), ('21368','783','189','atmRadio','0','188'), ('21369','783','190','imt','0','189'), ('21370','783','191','mvl','0','190'), ('21371','783','192','reachDSL','0','191'), ('21372','783','193','frDlciEndPt','0','192'), ('21373','783','194','atmVciEndPt','0','193'), ('21374','783','195','opticalChannel','0','194'), ('21375','783','196','opticalTransport','0','195'), ('21376','783','197','propAtm','0','196'), ('21377','783','198','voiceOverCable','0','197'), ('21378','783','199','infiniband','0','198'), ('21379','783','200','teLink','0','199'), ('21380','783','201','q2931','0','200'), ('21381','783','202','virtualTg','0','201'), ('21382','783','203','sipTg','0','202'), ('21383','783','204','sipSig','0','203'), ('21384','783','205','docsCableUpstreamChannel','0','204'), ('21385','783','206','econet','0','205'), ('21386','783','207','pon155','0','206'), ('21387','783','208','pon622','0','207'), ('21388','783','209','bridge','0','208'), ('21389','783','210','linegroup','0','209'), ('21390','783','211','voiceEMFGD','0','210'), ('21391','783','212','voiceFGDEANA','0','211'), ('21392','783','213','voiceDID','0','212'), ('21393','783','214','mpegTransport','0','213'), ('21394','783','215','sixToFour','0','214'), ('21395','783','216','gtp','0','215'), ('21396','783','217','pdnEtherLoop1','0','216'), ('21397','783','218','pdnEtherLoop2','0','217'), ('21398','783','219','opticalChannelGroup','0','218'), ('21399','783','220','homepna','0','219'), ('21400','783','221','gfp','0','220'), ('21401','783','222','ciscoISLvlan','0','221'), ('21402','783','223','actelisMetaLOOP','0','222'), ('21403','783','224','fcipLink','0','223'), ('21404','783','225','rpr','0','224'), ('21405','783','226','qam','0','225'), ('21406','783','227','lmp','0','226'), ('21407','783','228','cblVectaStar','0','227'), ('21408','783','229','docsCableMCmtsDownstream','0','228'), ('21409','783','230','adsl2','0','229'), ('21410','783','231','macSecControlledIF','0','230'), ('21411','783','232','macSecUncontrolledIF','0','231'), ('21412','783','233','aviciOpticalEther','0','232'), ('21413','783','234','atmbond','0','233'), ('21414','783','235','voiceFGDOS','0','234'), ('21415','783','236','mocaVersion1','0','235'), ('21416','783','237','ieee80216WMAN','0','236'), ('21417','783','238','adsl2plus','0','237'), ('21418','783','239','dvbRcsMacLayer','0','238'), ('21419','783','240','dvbTdm','0','239'), ('21420','783','241','dvbRcsTdma','0','240'), ('21421','783','242','x86Laps','0','241'), ('21422','783','243','wwanPP','0','242'), ('21423','783','244','wwanPP2','0','243'), ('21424','783','245','voiceEBS','0','244'), ('21425','783','246','ifPwType','0','245'), ('21426','783','247','ilan','0','246'), ('21427','783','248','pip','0','247'), ('21428','783','249','aluELP','0','248'), ('21429','783','250','gpon','0','249'), ('21430','783','251','vdsl2','0','250'), ('21431','783','252','capwapDot11Profile','0','251'), ('21432','783','253','capwapDot11Bss','0','252'), ('21433','783','254','capwapWtpVirtualRadio','0','253'), ('21434','783','255','bits','0','254'), ('21435','783','256','docsCableUpstreamRfPort','0','255'), ('21436','783','257','cableDownstreamRfPort','0','256'), ('21437','783','258','vmwareVirtualNic','0','257'), ('21438','783','259','ieee802154','0','258'), ('21439','783','260','otnOdu','0','259'), ('21440','783','261','otnOtu','0','260'), ('21441','783','262','ifVfiType','0','261'), ('21442','783','263','g9981','0','262'), ('21443','783','264','g9982','0','263'), ('21444','783','265','g9983','0','264'), ('21445','783','266','aluEpon','0','265'), ('21446','783','267','aluEponOnu','0','266'), ('21447','783','268','aluEponPhysicalUni','0','267'), ('21448','783','269','aluEponLogicalLink','0','268'), ('21449','783','270','aluGponOnu','0','269'), ('21450','783','271','aluGponPhysicalUni','0','270'), ('21451','783','272','vmwareNicTeam','0','271'), ('21452','783','277','docsOfdmDownstream','0','272'), ('21453','783','278','docsOfdmaUpstream','0','273'), ('21454','783','279','gfast','0','274'), ('21455','783','280','sdci','0','275'), ('21456','783','281','xboxWireless','0','276'), ('21457','783','282','fastdsl','0','277'), ('21458','783','283','docsCableScte55d1FwdOob','0','278'), ('21459','783','284','docsCableScte55d1RetOob','0','279'), ('21460','783','285','docsCableScte55d2DsOob','0','280'), ('21461','783','286','docsCableScte55d2UsOob','0','281'), ('21462','783','287','docsCableNdf','0','282'), ('21463','783','288','docsCableNdr','0','283'), ('21464','783','289','ptm','0','284'), ('21465','783','290','ghn','0','285'), ('21466','784','0','Down','0','0'), ('21467','784','1','Up','0','1'), ('21468','785','0','not available','0','0'), ('21469','785','1','available','0','1'), ('21470','785','2','unknown','0','2'), ('21471','786','1','up','0','0'), ('21472','786','2','down','0','1'), ('21473','786','4','unknown','0','2'), ('21474','786','5','dormant','0','3'), ('21475','786','6','notPresent','0','4'), ('21476','786','7','lowerLayerDown','0','5'), ('21477','787','1','other','0','0'), ('21478','787','2','regular1822','0','1'), ('21479','787','3','hdh1822','0','2'), ('21480','787','4','ddnX25','0','3'), ('21481','787','5','rfc877x25','0','4'), ('21482','787','6','ethernetCsmacd','0','5'), ('21483','787','7','iso88023Csmacd','0','6'), ('21484','787','8','iso88024TokenBus','0','7'), ('21485','787','9','iso88025TokenRing','0','8'), ('21486','787','10','iso88026Man','0','9'), ('21487','787','11','starLan','0','10'), ('21488','787','12','proteon10Mbit','0','11'), ('21489','787','13','proteon80Mbit','0','12'), ('21490','787','14','hyperchannel','0','13'), ('21491','787','15','fddi','0','14'), ('21492','787','16','lapb','0','15'), ('21493','787','17','sdlc','0','16'), ('21494','787','18','ds1','0','17'), ('21495','787','19','e1','0','18'), ('21496','787','20','basicISDN','0','19'), ('21497','787','21','primaryISDN','0','20'), ('21498','787','22','propPointToPointSerial','0','21'), ('21499','787','23','ppp','0','22'), ('21500','787','24','softwareLoopback','0','23'), ('21501','787','25','eon','0','24'), ('21502','787','26','ethernet3Mbit','0','25'), ('21503','787','27','nsip','0','26'), ('21504','787','28','slip','0','27'), ('21505','787','29','ultra','0','28'), ('21506','787','30','ds3','0','29'), ('21507','787','31','sip','0','30'), ('21508','787','32','frameRelay','0','31'), ('21509','787','33','rs232','0','32'), ('21510','787','34','para','0','33'), ('21511','787','35','arcnet','0','34'), ('21512','787','36','arcnetPlus','0','35'), ('21513','787','37','atm','0','36'), ('21514','787','38','miox25','0','37'), ('21515','787','39','sonet','0','38'), ('21516','787','40','x25ple','0','39'), ('21517','787','41','iso88022llc','0','40'), ('21518','787','42','localTalk','0','41'), ('21519','787','43','smdsDxi','0','42'), ('21520','787','44','frameRelayService','0','43'), ('21521','787','45','v35','0','44'), ('21522','787','46','hssi','0','45'), ('21523','787','47','hippi','0','46'), ('21524','787','48','modem','0','47'), ('21525','787','49','aal5','0','48'), ('21526','787','50','sonetPath','0','49'), ('21527','787','51','sonetVT','0','50'), ('21528','787','52','smdsIcip','0','51'), ('21529','787','53','propVirtual','0','52'), ('21530','787','54','propMultiplexor','0','53'), ('21531','787','55','ieee80212','0','54'), ('21532','787','56','fibreChannel','0','55'), ('21533','787','57','hippiInterface','0','56'), ('21534','787','58','frameRelayInterconnect','0','57'), ('21535','787','59','aflane8023','0','58'), ('21536','787','60','aflane8025','0','59'), ('21537','787','61','cctEmul','0','60'), ('21538','787','62','fastEther','0','61'), ('21539','787','63','isdn','0','62'), ('21540','787','64','v11','0','63'), ('21541','787','65','v36','0','64'), ('21542','787','66','g703at64k','0','65'), ('21543','787','67','g703at2mb','0','66'), ('21544','787','68','qllc','0','67'), ('21545','787','69','fastEtherFX','0','68'), ('21546','787','70','channel','0','69'), ('21547','787','71','ieee80211','0','70'), ('21548','787','72','ibm370parChan','0','71'), ('21549','787','73','escon','0','72'), ('21550','787','74','dlsw','0','73'), ('21551','787','75','isdns','0','74'), ('21552','787','76','isdnu','0','75'), ('21553','787','77','lapd','0','76'), ('21554','787','78','ipSwitch','0','77'), ('21555','787','79','rsrb','0','78'), ('21556','787','80','atmLogical','0','79'), ('21557','787','81','ds0','0','80'), ('21558','787','82','ds0Bundle','0','81'), ('21559','787','83','bsc','0','82'), ('21560','787','84','async','0','83'), ('21561','787','85','cnr','0','84'), ('21562','787','86','iso88025Dtr','0','85'), ('21563','787','87','eplrs','0','86'), ('21564','787','88','arap','0','87'), ('21565','787','89','propCnls','0','88'), ('21566','787','90','hostPad','0','89'), ('21567','787','91','termPad','0','90'), ('21568','787','92','frameRelayMPI','0','91'), ('21569','787','93','x213','0','92'), ('21570','787','94','adsl','0','93'), ('21571','787','95','radsl','0','94'), ('21572','787','96','sdsl','0','95'), ('21573','787','97','vdsl','0','96'), ('21574','787','98','iso88025CRFPInt','0','97'), ('21575','787','99','myrinet','0','98'), ('21576','787','100','voiceEM','0','99'), ('21577','787','101','voiceFXO','0','100'), ('21578','787','102','voiceFXS','0','101'), ('21579','787','103','voiceEncap','0','102'), ('21580','787','104','voiceOverIp','0','103'), ('21581','787','105','atmDxi','0','104'), ('21582','787','106','atmFuni','0','105'), ('21583','787','107','atmIma','0','106'), ('21584','787','108','pppMultilinkBundle','0','107'), ('21585','787','109','ipOverCdlc','0','108'), ('21586','787','110','ipOverClaw','0','109'), ('21587','787','111','stackToStack','0','110'), ('21588','787','112','virtualIpAddress','0','111'), ('21589','787','113','mpc','0','112'), ('21590','787','114','ipOverAtm','0','113'), ('21591','787','115','iso88025Fiber','0','114'), ('21592','787','116','tdlc','0','115'), ('21593','787','117','gigabitEthernet','0','116'), ('21594','787','118','hdlc','0','117'), ('21595','787','119','lapf','0','118'), ('21596','787','120','v37','0','119'), ('21597','787','121','x25mlp','0','120'), ('21598','787','122','x25huntGroup','0','121'), ('21599','787','123','trasnpHdlc','0','122'), ('21600','787','124','interleave','0','123'), ('21601','787','125','fast','0','124'), ('21602','787','126','ip','0','125'), ('21603','787','127','docsCableMaclayer','0','126'), ('21604','787','128','docsCableDownstream','0','127'), ('21605','787','129','docsCableUpstream','0','128'), ('21606','787','130','a12MppSwitch','0','129'), ('21607','787','131','tunnel','0','130'), ('21608','787','132','coffee','0','131'), ('21609','787','133','ces','0','132'), ('21610','787','134','atmSubInterface','0','133'), ('21611','787','135','l2vlan','0','134'), ('21612','787','136','l3ipvlan','0','135'), ('21613','787','137','l3ipxvlan','0','136'), ('21614','787','138','digitalPowerline','0','137'), ('21615','787','139','mediaMailOverIp','0','138'), ('21616','787','140','dtm','0','139'), ('21617','787','141','dcn','0','140'), ('21618','787','142','ipForward','0','141'), ('21619','787','143','msdsl','0','142'), ('21620','787','144','ieee1394','0','143'), ('21621','787','145','if-gsn','0','144'), ('21622','787','146','dvbRccMacLayer','0','145'), ('21623','787','147','dvbRccDownstream','0','146'), ('21624','787','148','dvbRccUpstream','0','147'), ('21625','787','149','atmVirtual','0','148'), ('21626','787','150','mplsTunnel','0','149'), ('21627','787','151','srp','0','150'), ('21628','787','152','voiceOverAtm','0','151'), ('21629','787','153','voiceOverFrameRelay','0','152'), ('21630','787','154','idsl','0','153'), ('21631','787','155','compositeLink','0','154'), ('21632','787','156','ss7SigLink','0','155'), ('21633','787','157','propWirelessP2P','0','156'), ('21634','787','158','frForward','0','157'), ('21635','787','159','rfc1483','0','158'), ('21636','787','160','usb','0','159'), ('21637','787','161','ieee8023adLag','0','160'), ('21638','787','162','bgppolicyaccounting','0','161'), ('21639','787','163','frf16MfrBundle','0','162'), ('21640','787','164','h323Gatekeeper','0','163'), ('21641','787','165','h323Proxy','0','164'), ('21642','787','166','mpls','0','165'), ('21643','787','167','mfSigLink','0','166'), ('21644','787','168','hdsl2','0','167'), ('21645','787','169','shdsl','0','168'), ('21646','787','170','ds1FDL','0','169'), ('21647','787','171','pos','0','170'), ('21648','787','172','dvbAsiIn','0','171'), ('21649','787','173','dvbAsiOut','0','172'), ('21650','787','174','plc','0','173'), ('21651','787','175','nfas','0','174'), ('21652','787','176','tr008','0','175'), ('21653','787','177','gr303RDT','0','176'), ('21654','787','178','gr303IDT','0','177'), ('21655','787','179','isup','0','178'), ('21656','787','180','propDocsWirelessMaclayer','0','179'), ('21657','787','181','propDocsWirelessDownstream','0','180'), ('21658','787','182','propDocsWirelessUpstream','0','181'), ('21659','787','183','hiperlan2','0','182'), ('21660','787','184','propBWAp2Mp','0','183'), ('21661','787','185','sonetOverheadChannel','0','184'), ('21662','787','186','digitalWrapperOverheadChannel','0','185'), ('21663','787','187','aal2','0','186'), ('21664','787','188','radioMAC','0','187'), ('21665','787','189','atmRadio','0','188'), ('21666','787','190','imt','0','189'), ('21667','787','191','mvl','0','190'), ('21668','787','192','reachDSL','0','191'), ('21669','787','193','frDlciEndPt','0','192'), ('21670','787','194','atmVciEndPt','0','193'), ('21671','787','195','opticalChannel','0','194'), ('21672','787','196','opticalTransport','0','195'), ('21673','787','197','propAtm','0','196'), ('21674','787','198','voiceOverCable','0','197'), ('21675','787','199','infiniband','0','198'), ('21676','787','200','teLink','0','199'), ('21677','787','201','q2931','0','200'), ('21678','787','202','virtualTg','0','201'), ('21679','787','203','sipTg','0','202'), ('21680','787','204','sipSig','0','203'), ('21681','787','205','docsCableUpstreamChannel','0','204'), ('21682','787','206','econet','0','205'), ('21683','787','207','pon155','0','206'), ('21684','787','208','pon622','0','207'), ('21685','787','209','bridge','0','208'), ('21686','787','210','linegroup','0','209'), ('21687','787','211','voiceEMFGD','0','210'), ('21688','787','212','voiceFGDEANA','0','211'), ('21689','787','213','voiceDID','0','212'), ('21690','787','214','mpegTransport','0','213'), ('21691','787','215','sixToFour','0','214'), ('21692','787','216','gtp','0','215'), ('21693','787','217','pdnEtherLoop1','0','216'), ('21694','787','218','pdnEtherLoop2','0','217'), ('21695','787','219','opticalChannelGroup','0','218'), ('21696','787','220','homepna','0','219'), ('21697','787','221','gfp','0','220'), ('21698','787','222','ciscoISLvlan','0','221'), ('21699','787','223','actelisMetaLOOP','0','222'), ('21700','787','224','fcipLink','0','223'), ('21701','787','225','rpr','0','224'), ('21702','787','226','qam','0','225'), ('21703','787','227','lmp','0','226'), ('21704','787','228','cblVectaStar','0','227'), ('21705','787','229','docsCableMCmtsDownstream','0','228'), ('21706','787','230','adsl2','0','229'), ('21707','787','231','macSecControlledIF','0','230'), ('21708','787','232','macSecUncontrolledIF','0','231'), ('21709','787','233','aviciOpticalEther','0','232'), ('21710','787','234','atmbond','0','233'), ('21711','787','235','voiceFGDOS','0','234'), ('21712','787','236','mocaVersion1','0','235'), ('21713','787','237','ieee80216WMAN','0','236'), ('21714','787','238','adsl2plus','0','237'), ('21715','787','239','dvbRcsMacLayer','0','238'), ('21716','787','240','dvbTdm','0','239'), ('21717','787','241','dvbRcsTdma','0','240'), ('21718','787','242','x86Laps','0','241'), ('21719','787','243','wwanPP','0','242'), ('21720','787','244','wwanPP2','0','243'), ('21721','787','245','voiceEBS','0','244'), ('21722','787','246','ifPwType','0','245'), ('21723','787','247','ilan','0','246'), ('21724','787','248','pip','0','247'), ('21725','787','249','aluELP','0','248'), ('21726','787','250','gpon','0','249'), ('21727','787','251','vdsl2','0','250'), ('21728','787','252','capwapDot11Profile','0','251'), ('21729','787','253','capwapDot11Bss','0','252'), ('21730','787','254','capwapWtpVirtualRadio','0','253'), ('21731','787','255','bits','0','254'), ('21732','787','256','docsCableUpstreamRfPort','0','255'), ('21733','787','257','cableDownstreamRfPort','0','256'), ('21734','787','258','vmwareVirtualNic','0','257'), ('21735','787','259','ieee802154','0','258'), ('21736','787','260','otnOdu','0','259'), ('21737','787','261','otnOtu','0','260'), ('21738','787','262','ifVfiType','0','261'), ('21739','787','263','g9981','0','262'), ('21740','787','264','g9982','0','263'), ('21741','787','265','g9983','0','264'), ('21742','787','266','aluEpon','0','265'), ('21743','787','267','aluEponOnu','0','266'), ('21744','787','268','aluEponPhysicalUni','0','267'), ('21745','787','269','aluEponLogicalLink','0','268'), ('21746','787','270','aluGponOnu','0','269'), ('21747','787','271','aluGponPhysicalUni','0','270'), ('21748','787','272','vmwareNicTeam','0','271'), ('21749','787','277','docsOfdmDownstream','0','272'), ('21750','787','278','docsOfdmaUpstream','0','273'), ('21751','787','279','gfast','0','274'), ('21752','787','280','sdci','0','275'), ('21753','787','281','xboxWireless','0','276'), ('21754','787','282','fastdsl','0','277'), ('21755','787','283','docsCableScte55d1FwdOob','0','278'), ('21756','787','284','docsCableScte55d1RetOob','0','279'), ('21757','787','285','docsCableScte55d2DsOob','0','280'), ('21758','787','286','docsCableScte55d2UsOob','0','281'), ('21759','787','287','docsCableNdf','0','282'), ('21760','787','288','docsCableNdr','0','283'), ('21761','787','289','ptm','0','284'), ('21762','787','290','ghn','0','285'), ('21763','788','0','Down','0','0'), ('21764','788','1','Up','0','1'), ('21765','789','0','not available','0','0'), ('21766','789','1','available','0','1'), ('21767','789','2','unknown','0','2'), ('21768','790','1','up','0','0'), ('21769','790','2','down','0','1'), ('21770','790','4','unknown','0','2'), ('21771','790','5','dormant','0','3'), ('21772','790','6','notPresent','0','4'), ('21773','790','7','lowerLayerDown','0','5'), ('21774','791','1','other','0','0'), ('21775','791','2','regular1822','0','1'), ('21776','791','3','hdh1822','0','2'), ('21777','791','4','ddnX25','0','3'), ('21778','791','5','rfc877x25','0','4'), ('21779','791','6','ethernetCsmacd','0','5'), ('21780','791','7','iso88023Csmacd','0','6'), ('21781','791','8','iso88024TokenBus','0','7'), ('21782','791','9','iso88025TokenRing','0','8'), ('21783','791','10','iso88026Man','0','9'), ('21784','791','11','starLan','0','10'), ('21785','791','12','proteon10Mbit','0','11'), ('21786','791','13','proteon80Mbit','0','12'), ('21787','791','14','hyperchannel','0','13'), ('21788','791','15','fddi','0','14'), ('21789','791','16','lapb','0','15'), ('21790','791','17','sdlc','0','16'), ('21791','791','18','ds1','0','17'), ('21792','791','19','e1','0','18'), ('21793','791','20','basicISDN','0','19'), ('21794','791','21','primaryISDN','0','20'), ('21795','791','22','propPointToPointSerial','0','21'), ('21796','791','23','ppp','0','22'), ('21797','791','24','softwareLoopback','0','23'), ('21798','791','25','eon','0','24'), ('21799','791','26','ethernet3Mbit','0','25'), ('21800','791','27','nsip','0','26'), ('21801','791','28','slip','0','27'), ('21802','791','29','ultra','0','28'), ('21803','791','30','ds3','0','29'), ('21804','791','31','sip','0','30'), ('21805','791','32','frameRelay','0','31'), ('21806','791','33','rs232','0','32'), ('21807','791','34','para','0','33'), ('21808','791','35','arcnet','0','34'), ('21809','791','36','arcnetPlus','0','35'), ('21810','791','37','atm','0','36'), ('21811','791','38','miox25','0','37'), ('21812','791','39','sonet','0','38'), ('21813','791','40','x25ple','0','39'), ('21814','791','41','iso88022llc','0','40'), ('21815','791','42','localTalk','0','41'), ('21816','791','43','smdsDxi','0','42'), ('21817','791','44','frameRelayService','0','43'), ('21818','791','45','v35','0','44'), ('21819','791','46','hssi','0','45'), ('21820','791','47','hippi','0','46'), ('21821','791','48','modem','0','47'), ('21822','791','49','aal5','0','48'), ('21823','791','50','sonetPath','0','49'), ('21824','791','51','sonetVT','0','50'), ('21825','791','52','smdsIcip','0','51'), ('21826','791','53','propVirtual','0','52'), ('21827','791','54','propMultiplexor','0','53'), ('21828','791','55','ieee80212','0','54'), ('21829','791','56','fibreChannel','0','55'), ('21830','791','57','hippiInterface','0','56'), ('21831','791','58','frameRelayInterconnect','0','57'), ('21832','791','59','aflane8023','0','58'), ('21833','791','60','aflane8025','0','59'), ('21834','791','61','cctEmul','0','60'), ('21835','791','62','fastEther','0','61'), ('21836','791','63','isdn','0','62'), ('21837','791','64','v11','0','63'), ('21838','791','65','v36','0','64'), ('21839','791','66','g703at64k','0','65'), ('21840','791','67','g703at2mb','0','66'), ('21841','791','68','qllc','0','67'), ('21842','791','69','fastEtherFX','0','68'), ('21843','791','70','channel','0','69'), ('21844','791','71','ieee80211','0','70'), ('21845','791','72','ibm370parChan','0','71'), ('21846','791','73','escon','0','72'), ('21847','791','74','dlsw','0','73'), ('21848','791','75','isdns','0','74'), ('21849','791','76','isdnu','0','75'), ('21850','791','77','lapd','0','76'), ('21851','791','78','ipSwitch','0','77'), ('21852','791','79','rsrb','0','78'), ('21853','791','80','atmLogical','0','79'), ('21854','791','81','ds0','0','80'), ('21855','791','82','ds0Bundle','0','81'), ('21856','791','83','bsc','0','82'), ('21857','791','84','async','0','83'), ('21858','791','85','cnr','0','84'), ('21859','791','86','iso88025Dtr','0','85'), ('21860','791','87','eplrs','0','86'), ('21861','791','88','arap','0','87'), ('21862','791','89','propCnls','0','88'), ('21863','791','90','hostPad','0','89'), ('21864','791','91','termPad','0','90'), ('21865','791','92','frameRelayMPI','0','91'), ('21866','791','93','x213','0','92'), ('21867','791','94','adsl','0','93'), ('21868','791','95','radsl','0','94'), ('21869','791','96','sdsl','0','95'), ('21870','791','97','vdsl','0','96'), ('21871','791','98','iso88025CRFPInt','0','97'), ('21872','791','99','myrinet','0','98'), ('21873','791','100','voiceEM','0','99'), ('21874','791','101','voiceFXO','0','100'), ('21875','791','102','voiceFXS','0','101'), ('21876','791','103','voiceEncap','0','102'), ('21877','791','104','voiceOverIp','0','103'), ('21878','791','105','atmDxi','0','104'), ('21879','791','106','atmFuni','0','105'), ('21880','791','107','atmIma','0','106'), ('21881','791','108','pppMultilinkBundle','0','107'), ('21882','791','109','ipOverCdlc','0','108'), ('21883','791','110','ipOverClaw','0','109'), ('21884','791','111','stackToStack','0','110'), ('21885','791','112','virtualIpAddress','0','111'), ('21886','791','113','mpc','0','112'), ('21887','791','114','ipOverAtm','0','113'), ('21888','791','115','iso88025Fiber','0','114'), ('21889','791','116','tdlc','0','115'), ('21890','791','117','gigabitEthernet','0','116'), ('21891','791','118','hdlc','0','117'), ('21892','791','119','lapf','0','118'), ('21893','791','120','v37','0','119'), ('21894','791','121','x25mlp','0','120'), ('21895','791','122','x25huntGroup','0','121'), ('21896','791','123','trasnpHdlc','0','122'), ('21897','791','124','interleave','0','123'), ('21898','791','125','fast','0','124'), ('21899','791','126','ip','0','125'), ('21900','791','127','docsCableMaclayer','0','126'), ('21901','791','128','docsCableDownstream','0','127'), ('21902','791','129','docsCableUpstream','0','128'), ('21903','791','130','a12MppSwitch','0','129'), ('21904','791','131','tunnel','0','130'), ('21905','791','132','coffee','0','131'), ('21906','791','133','ces','0','132'), ('21907','791','134','atmSubInterface','0','133'), ('21908','791','135','l2vlan','0','134'), ('21909','791','136','l3ipvlan','0','135'), ('21910','791','137','l3ipxvlan','0','136'), ('21911','791','138','digitalPowerline','0','137'), ('21912','791','139','mediaMailOverIp','0','138'), ('21913','791','140','dtm','0','139'), ('21914','791','141','dcn','0','140'), ('21915','791','142','ipForward','0','141'), ('21916','791','143','msdsl','0','142'), ('21917','791','144','ieee1394','0','143'), ('21918','791','145','if-gsn','0','144'), ('21919','791','146','dvbRccMacLayer','0','145'), ('21920','791','147','dvbRccDownstream','0','146'), ('21921','791','148','dvbRccUpstream','0','147'), ('21922','791','149','atmVirtual','0','148'), ('21923','791','150','mplsTunnel','0','149'), ('21924','791','151','srp','0','150'), ('21925','791','152','voiceOverAtm','0','151'), ('21926','791','153','voiceOverFrameRelay','0','152'), ('21927','791','154','idsl','0','153'), ('21928','791','155','compositeLink','0','154'), ('21929','791','156','ss7SigLink','0','155'), ('21930','791','157','propWirelessP2P','0','156'), ('21931','791','158','frForward','0','157'), ('21932','791','159','rfc1483','0','158'), ('21933','791','160','usb','0','159'), ('21934','791','161','ieee8023adLag','0','160'), ('21935','791','162','bgppolicyaccounting','0','161'), ('21936','791','163','frf16MfrBundle','0','162'), ('21937','791','164','h323Gatekeeper','0','163'), ('21938','791','165','h323Proxy','0','164'), ('21939','791','166','mpls','0','165'), ('21940','791','167','mfSigLink','0','166'), ('21941','791','168','hdsl2','0','167'), ('21942','791','169','shdsl','0','168'), ('21943','791','170','ds1FDL','0','169'), ('21944','791','171','pos','0','170'), ('21945','791','172','dvbAsiIn','0','171'), ('21946','791','173','dvbAsiOut','0','172'), ('21947','791','174','plc','0','173'), ('21948','791','175','nfas','0','174'), ('21949','791','176','tr008','0','175'), ('21950','791','177','gr303RDT','0','176'), ('21951','791','178','gr303IDT','0','177'), ('21952','791','179','isup','0','178'), ('21953','791','180','propDocsWirelessMaclayer','0','179'), ('21954','791','181','propDocsWirelessDownstream','0','180'), ('21955','791','182','propDocsWirelessUpstream','0','181'), ('21956','791','183','hiperlan2','0','182'), ('21957','791','184','propBWAp2Mp','0','183'), ('21958','791','185','sonetOverheadChannel','0','184'), ('21959','791','186','digitalWrapperOverheadChannel','0','185'), ('21960','791','187','aal2','0','186'), ('21961','791','188','radioMAC','0','187'), ('21962','791','189','atmRadio','0','188'), ('21963','791','190','imt','0','189'), ('21964','791','191','mvl','0','190'), ('21965','791','192','reachDSL','0','191'), ('21966','791','193','frDlciEndPt','0','192'), ('21967','791','194','atmVciEndPt','0','193'), ('21968','791','195','opticalChannel','0','194'), ('21969','791','196','opticalTransport','0','195'), ('21970','791','197','propAtm','0','196'), ('21971','791','198','voiceOverCable','0','197'), ('21972','791','199','infiniband','0','198'), ('21973','791','200','teLink','0','199'), ('21974','791','201','q2931','0','200'), ('21975','791','202','virtualTg','0','201'), ('21976','791','203','sipTg','0','202'), ('21977','791','204','sipSig','0','203'), ('21978','791','205','docsCableUpstreamChannel','0','204'), ('21979','791','206','econet','0','205'), ('21980','791','207','pon155','0','206'), ('21981','791','208','pon622','0','207'), ('21982','791','209','bridge','0','208'), ('21983','791','210','linegroup','0','209'), ('21984','791','211','voiceEMFGD','0','210'), ('21985','791','212','voiceFGDEANA','0','211'), ('21986','791','213','voiceDID','0','212'), ('21987','791','214','mpegTransport','0','213'), ('21988','791','215','sixToFour','0','214'), ('21989','791','216','gtp','0','215'), ('21990','791','217','pdnEtherLoop1','0','216'), ('21991','791','218','pdnEtherLoop2','0','217'), ('21992','791','219','opticalChannelGroup','0','218'), ('21993','791','220','homepna','0','219'), ('21994','791','221','gfp','0','220'), ('21995','791','222','ciscoISLvlan','0','221'), ('21996','791','223','actelisMetaLOOP','0','222'), ('21997','791','224','fcipLink','0','223'), ('21998','791','225','rpr','0','224'), ('21999','791','226','qam','0','225'), ('22000','791','227','lmp','0','226'), ('22001','791','228','cblVectaStar','0','227'), ('22002','791','229','docsCableMCmtsDownstream','0','228'), ('22003','791','230','adsl2','0','229'), ('22004','791','231','macSecControlledIF','0','230'), ('22005','791','232','macSecUncontrolledIF','0','231'), ('22006','791','233','aviciOpticalEther','0','232'), ('22007','791','234','atmbond','0','233'), ('22008','791','235','voiceFGDOS','0','234'), ('22009','791','236','mocaVersion1','0','235'), ('22010','791','237','ieee80216WMAN','0','236'), ('22011','791','238','adsl2plus','0','237'), ('22012','791','239','dvbRcsMacLayer','0','238'), ('22013','791','240','dvbTdm','0','239'), ('22014','791','241','dvbRcsTdma','0','240'), ('22015','791','242','x86Laps','0','241'), ('22016','791','243','wwanPP','0','242'), ('22017','791','244','wwanPP2','0','243'), ('22018','791','245','voiceEBS','0','244'), ('22019','791','246','ifPwType','0','245'), ('22020','791','247','ilan','0','246'), ('22021','791','248','pip','0','247'), ('22022','791','249','aluELP','0','248'), ('22023','791','250','gpon','0','249'), ('22024','791','251','vdsl2','0','250'), ('22025','791','252','capwapDot11Profile','0','251'), ('22026','791','253','capwapDot11Bss','0','252'), ('22027','791','254','capwapWtpVirtualRadio','0','253'), ('22028','791','255','bits','0','254'), ('22029','791','256','docsCableUpstreamRfPort','0','255'), ('22030','791','257','cableDownstreamRfPort','0','256'), ('22031','791','258','vmwareVirtualNic','0','257'), ('22032','791','259','ieee802154','0','258'), ('22033','791','260','otnOdu','0','259'), ('22034','791','261','otnOtu','0','260'), ('22035','791','262','ifVfiType','0','261'), ('22036','791','263','g9981','0','262'), ('22037','791','264','g9982','0','263'), ('22038','791','265','g9983','0','264'), ('22039','791','266','aluEpon','0','265'), ('22040','791','267','aluEponOnu','0','266'), ('22041','791','268','aluEponPhysicalUni','0','267'), ('22042','791','269','aluEponLogicalLink','0','268'), ('22043','791','270','aluGponOnu','0','269'), ('22044','791','271','aluGponPhysicalUni','0','270'), ('22045','791','272','vmwareNicTeam','0','271'), ('22046','791','277','docsOfdmDownstream','0','272'), ('22047','791','278','docsOfdmaUpstream','0','273'), ('22048','791','279','gfast','0','274'), ('22049','791','280','sdci','0','275'), ('22050','791','281','xboxWireless','0','276'), ('22051','791','282','fastdsl','0','277'), ('22052','791','283','docsCableScte55d1FwdOob','0','278'), ('22053','791','284','docsCableScte55d1RetOob','0','279'), ('22054','791','285','docsCableScte55d2DsOob','0','280'), ('22055','791','286','docsCableScte55d2UsOob','0','281'), ('22056','791','287','docsCableNdf','0','282'), ('22057','791','288','docsCableNdr','0','283'), ('22058','791','289','ptm','0','284'), ('22059','791','290','ghn','0','285'), ('22060','792','0','Down','0','0'), ('22061','792','1','Up','0','1'), ('22062','793','0','not available','0','0'), ('22063','793','1','available','0','1'), ('22064','793','2','unknown','0','2'), ('22065','794','1','up','0','0'), ('22066','794','2','down','0','1'), ('22067','794','4','unknown','0','2'), ('22068','794','5','dormant','0','3'), ('22069','794','6','notPresent','0','4'), ('22070','794','7','lowerLayerDown','0','5'), ('22071','795','1','other','0','0'), ('22072','795','2','regular1822','0','1'), ('22073','795','3','hdh1822','0','2'), ('22074','795','4','ddnX25','0','3'), ('22075','795','5','rfc877x25','0','4'), ('22076','795','6','ethernetCsmacd','0','5'), ('22077','795','7','iso88023Csmacd','0','6'), ('22078','795','8','iso88024TokenBus','0','7'), ('22079','795','9','iso88025TokenRing','0','8'), ('22080','795','10','iso88026Man','0','9'), ('22081','795','11','starLan','0','10'), ('22082','795','12','proteon10Mbit','0','11'), ('22083','795','13','proteon80Mbit','0','12'), ('22084','795','14','hyperchannel','0','13'), ('22085','795','15','fddi','0','14'), ('22086','795','16','lapb','0','15'), ('22087','795','17','sdlc','0','16'), ('22088','795','18','ds1','0','17'), ('22089','795','19','e1','0','18'), ('22090','795','20','basicISDN','0','19'), ('22091','795','21','primaryISDN','0','20'), ('22092','795','22','propPointToPointSerial','0','21'), ('22093','795','23','ppp','0','22'), ('22094','795','24','softwareLoopback','0','23'), ('22095','795','25','eon','0','24'), ('22096','795','26','ethernet3Mbit','0','25'), ('22097','795','27','nsip','0','26'), ('22098','795','28','slip','0','27'), ('22099','795','29','ultra','0','28'), ('22100','795','30','ds3','0','29'), ('22101','795','31','sip','0','30'), ('22102','795','32','frameRelay','0','31'), ('22103','795','33','rs232','0','32'), ('22104','795','34','para','0','33'), ('22105','795','35','arcnet','0','34'), ('22106','795','36','arcnetPlus','0','35'), ('22107','795','37','atm','0','36'), ('22108','795','38','miox25','0','37'), ('22109','795','39','sonet','0','38'), ('22110','795','40','x25ple','0','39'), ('22111','795','41','iso88022llc','0','40'), ('22112','795','42','localTalk','0','41'), ('22113','795','43','smdsDxi','0','42'), ('22114','795','44','frameRelayService','0','43'), ('22115','795','45','v35','0','44'), ('22116','795','46','hssi','0','45'), ('22117','795','47','hippi','0','46'), ('22118','795','48','modem','0','47'), ('22119','795','49','aal5','0','48'), ('22120','795','50','sonetPath','0','49'), ('22121','795','51','sonetVT','0','50'), ('22122','795','52','smdsIcip','0','51'), ('22123','795','53','propVirtual','0','52'), ('22124','795','54','propMultiplexor','0','53'), ('22125','795','55','ieee80212','0','54'), ('22126','795','56','fibreChannel','0','55'), ('22127','795','57','hippiInterface','0','56'), ('22128','795','58','frameRelayInterconnect','0','57'), ('22129','795','59','aflane8023','0','58'), ('22130','795','60','aflane8025','0','59'), ('22131','795','61','cctEmul','0','60'), ('22132','795','62','fastEther','0','61'), ('22133','795','63','isdn','0','62'), ('22134','795','64','v11','0','63'), ('22135','795','65','v36','0','64'), ('22136','795','66','g703at64k','0','65'), ('22137','795','67','g703at2mb','0','66'), ('22138','795','68','qllc','0','67'), ('22139','795','69','fastEtherFX','0','68'), ('22140','795','70','channel','0','69'), ('22141','795','71','ieee80211','0','70'), ('22142','795','72','ibm370parChan','0','71'), ('22143','795','73','escon','0','72'), ('22144','795','74','dlsw','0','73'), ('22145','795','75','isdns','0','74'), ('22146','795','76','isdnu','0','75'), ('22147','795','77','lapd','0','76'), ('22148','795','78','ipSwitch','0','77'), ('22149','795','79','rsrb','0','78'), ('22150','795','80','atmLogical','0','79'), ('22151','795','81','ds0','0','80'), ('22152','795','82','ds0Bundle','0','81'), ('22153','795','83','bsc','0','82'), ('22154','795','84','async','0','83'), ('22155','795','85','cnr','0','84'), ('22156','795','86','iso88025Dtr','0','85'), ('22157','795','87','eplrs','0','86'), ('22158','795','88','arap','0','87'), ('22159','795','89','propCnls','0','88'), ('22160','795','90','hostPad','0','89'), ('22161','795','91','termPad','0','90'), ('22162','795','92','frameRelayMPI','0','91'), ('22163','795','93','x213','0','92'), ('22164','795','94','adsl','0','93'), ('22165','795','95','radsl','0','94'), ('22166','795','96','sdsl','0','95'), ('22167','795','97','vdsl','0','96'), ('22168','795','98','iso88025CRFPInt','0','97'), ('22169','795','99','myrinet','0','98'), ('22170','795','100','voiceEM','0','99'), ('22171','795','101','voiceFXO','0','100'), ('22172','795','102','voiceFXS','0','101'), ('22173','795','103','voiceEncap','0','102'), ('22174','795','104','voiceOverIp','0','103'), ('22175','795','105','atmDxi','0','104'), ('22176','795','106','atmFuni','0','105'), ('22177','795','107','atmIma','0','106'), ('22178','795','108','pppMultilinkBundle','0','107'), ('22179','795','109','ipOverCdlc','0','108'), ('22180','795','110','ipOverClaw','0','109'), ('22181','795','111','stackToStack','0','110'), ('22182','795','112','virtualIpAddress','0','111'), ('22183','795','113','mpc','0','112'), ('22184','795','114','ipOverAtm','0','113'), ('22185','795','115','iso88025Fiber','0','114'), ('22186','795','116','tdlc','0','115'), ('22187','795','117','gigabitEthernet','0','116'), ('22188','795','118','hdlc','0','117'), ('22189','795','119','lapf','0','118'), ('22190','795','120','v37','0','119'), ('22191','795','121','x25mlp','0','120'), ('22192','795','122','x25huntGroup','0','121'), ('22193','795','123','trasnpHdlc','0','122'), ('22194','795','124','interleave','0','123'), ('22195','795','125','fast','0','124'), ('22196','795','126','ip','0','125'), ('22197','795','127','docsCableMaclayer','0','126'), ('22198','795','128','docsCableDownstream','0','127'), ('22199','795','129','docsCableUpstream','0','128'), ('22200','795','130','a12MppSwitch','0','129'), ('22201','795','131','tunnel','0','130'), ('22202','795','132','coffee','0','131'), ('22203','795','133','ces','0','132'), ('22204','795','134','atmSubInterface','0','133'), ('22205','795','135','l2vlan','0','134'), ('22206','795','136','l3ipvlan','0','135'), ('22207','795','137','l3ipxvlan','0','136'), ('22208','795','138','digitalPowerline','0','137'), ('22209','795','139','mediaMailOverIp','0','138'), ('22210','795','140','dtm','0','139'), ('22211','795','141','dcn','0','140'), ('22212','795','142','ipForward','0','141'), ('22213','795','143','msdsl','0','142'), ('22214','795','144','ieee1394','0','143'), ('22215','795','145','if-gsn','0','144'), ('22216','795','146','dvbRccMacLayer','0','145'), ('22217','795','147','dvbRccDownstream','0','146'), ('22218','795','148','dvbRccUpstream','0','147'), ('22219','795','149','atmVirtual','0','148'), ('22220','795','150','mplsTunnel','0','149'), ('22221','795','151','srp','0','150'), ('22222','795','152','voiceOverAtm','0','151'), ('22223','795','153','voiceOverFrameRelay','0','152'), ('22224','795','154','idsl','0','153'), ('22225','795','155','compositeLink','0','154'), ('22226','795','156','ss7SigLink','0','155'), ('22227','795','157','propWirelessP2P','0','156'), ('22228','795','158','frForward','0','157'), ('22229','795','159','rfc1483','0','158'), ('22230','795','160','usb','0','159'), ('22231','795','161','ieee8023adLag','0','160'), ('22232','795','162','bgppolicyaccounting','0','161'), ('22233','795','163','frf16MfrBundle','0','162'), ('22234','795','164','h323Gatekeeper','0','163'), ('22235','795','165','h323Proxy','0','164'), ('22236','795','166','mpls','0','165'), ('22237','795','167','mfSigLink','0','166'), ('22238','795','168','hdsl2','0','167'), ('22239','795','169','shdsl','0','168'), ('22240','795','170','ds1FDL','0','169'), ('22241','795','171','pos','0','170'), ('22242','795','172','dvbAsiIn','0','171'), ('22243','795','173','dvbAsiOut','0','172'), ('22244','795','174','plc','0','173'), ('22245','795','175','nfas','0','174'), ('22246','795','176','tr008','0','175'), ('22247','795','177','gr303RDT','0','176'), ('22248','795','178','gr303IDT','0','177'), ('22249','795','179','isup','0','178'), ('22250','795','180','propDocsWirelessMaclayer','0','179'), ('22251','795','181','propDocsWirelessDownstream','0','180'), ('22252','795','182','propDocsWirelessUpstream','0','181'), ('22253','795','183','hiperlan2','0','182'), ('22254','795','184','propBWAp2Mp','0','183'), ('22255','795','185','sonetOverheadChannel','0','184'), ('22256','795','186','digitalWrapperOverheadChannel','0','185'), ('22257','795','187','aal2','0','186'), ('22258','795','188','radioMAC','0','187'), ('22259','795','189','atmRadio','0','188'), ('22260','795','190','imt','0','189'), ('22261','795','191','mvl','0','190'), ('22262','795','192','reachDSL','0','191'), ('22263','795','193','frDlciEndPt','0','192'), ('22264','795','194','atmVciEndPt','0','193'), ('22265','795','195','opticalChannel','0','194'), ('22266','795','196','opticalTransport','0','195'), ('22267','795','197','propAtm','0','196'), ('22268','795','198','voiceOverCable','0','197'), ('22269','795','199','infiniband','0','198'), ('22270','795','200','teLink','0','199'), ('22271','795','201','q2931','0','200'), ('22272','795','202','virtualTg','0','201'), ('22273','795','203','sipTg','0','202'), ('22274','795','204','sipSig','0','203'), ('22275','795','205','docsCableUpstreamChannel','0','204'), ('22276','795','206','econet','0','205'), ('22277','795','207','pon155','0','206'), ('22278','795','208','pon622','0','207'), ('22279','795','209','bridge','0','208'), ('22280','795','210','linegroup','0','209'), ('22281','795','211','voiceEMFGD','0','210'), ('22282','795','212','voiceFGDEANA','0','211'), ('22283','795','213','voiceDID','0','212'), ('22284','795','214','mpegTransport','0','213'), ('22285','795','215','sixToFour','0','214'), ('22286','795','216','gtp','0','215'), ('22287','795','217','pdnEtherLoop1','0','216'), ('22288','795','218','pdnEtherLoop2','0','217'), ('22289','795','219','opticalChannelGroup','0','218'), ('22290','795','220','homepna','0','219'), ('22291','795','221','gfp','0','220'), ('22292','795','222','ciscoISLvlan','0','221'), ('22293','795','223','actelisMetaLOOP','0','222'), ('22294','795','224','fcipLink','0','223'), ('22295','795','225','rpr','0','224'), ('22296','795','226','qam','0','225'), ('22297','795','227','lmp','0','226'), ('22298','795','228','cblVectaStar','0','227'), ('22299','795','229','docsCableMCmtsDownstream','0','228'), ('22300','795','230','adsl2','0','229'), ('22301','795','231','macSecControlledIF','0','230'), ('22302','795','232','macSecUncontrolledIF','0','231'), ('22303','795','233','aviciOpticalEther','0','232'), ('22304','795','234','atmbond','0','233'), ('22305','795','235','voiceFGDOS','0','234'), ('22306','795','236','mocaVersion1','0','235'), ('22307','795','237','ieee80216WMAN','0','236'), ('22308','795','238','adsl2plus','0','237'), ('22309','795','239','dvbRcsMacLayer','0','238'), ('22310','795','240','dvbTdm','0','239'), ('22311','795','241','dvbRcsTdma','0','240'), ('22312','795','242','x86Laps','0','241'), ('22313','795','243','wwanPP','0','242'), ('22314','795','244','wwanPP2','0','243'), ('22315','795','245','voiceEBS','0','244'), ('22316','795','246','ifPwType','0','245'), ('22317','795','247','ilan','0','246'), ('22318','795','248','pip','0','247'), ('22319','795','249','aluELP','0','248'), ('22320','795','250','gpon','0','249'), ('22321','795','251','vdsl2','0','250'), ('22322','795','252','capwapDot11Profile','0','251'), ('22323','795','253','capwapDot11Bss','0','252'), ('22324','795','254','capwapWtpVirtualRadio','0','253'), ('22325','795','255','bits','0','254'), ('22326','795','256','docsCableUpstreamRfPort','0','255'), ('22327','795','257','cableDownstreamRfPort','0','256'), ('22328','795','258','vmwareVirtualNic','0','257'), ('22329','795','259','ieee802154','0','258'), ('22330','795','260','otnOdu','0','259'), ('22331','795','261','otnOtu','0','260'), ('22332','795','262','ifVfiType','0','261'), ('22333','795','263','g9981','0','262'), ('22334','795','264','g9982','0','263'), ('22335','795','265','g9983','0','264'), ('22336','795','266','aluEpon','0','265'), ('22337','795','267','aluEponOnu','0','266'), ('22338','795','268','aluEponPhysicalUni','0','267'), ('22339','795','269','aluEponLogicalLink','0','268'), ('22340','795','270','aluGponOnu','0','269'), ('22341','795','271','aluGponPhysicalUni','0','270'), ('22342','795','272','vmwareNicTeam','0','271'), ('22343','795','277','docsOfdmDownstream','0','272'), ('22344','795','278','docsOfdmaUpstream','0','273'), ('22345','795','279','gfast','0','274'), ('22346','795','280','sdci','0','275'), ('22347','795','281','xboxWireless','0','276'), ('22348','795','282','fastdsl','0','277'), ('22349','795','283','docsCableScte55d1FwdOob','0','278'), ('22350','795','284','docsCableScte55d1RetOob','0','279'), ('22351','795','285','docsCableScte55d2DsOob','0','280'), ('22352','795','286','docsCableScte55d2UsOob','0','281'), ('22353','795','287','docsCableNdf','0','282'), ('22354','795','288','docsCableNdr','0','283'), ('22355','795','289','ptm','0','284'), ('22356','795','290','ghn','0','285'), ('22357','796','0','Down','0','0'), ('22358','796','1','Up','0','1'), ('22359','797','0','not available','0','0'), ('22360','797','1','available','0','1'), ('22361','797','2','unknown','0','2'), ('22362','798','1','up','0','0'), ('22363','798','2','down','0','1'), ('22364','798','4','unknown','0','2'), ('22365','798','5','dormant','0','3'), ('22366','798','6','notPresent','0','4'), ('22367','798','7','lowerLayerDown','0','5'), ('22368','799','1','other','0','0'), ('22369','799','2','regular1822','0','1'), ('22370','799','3','hdh1822','0','2'), ('22371','799','4','ddnX25','0','3'), ('22372','799','5','rfc877x25','0','4'), ('22373','799','6','ethernetCsmacd','0','5'), ('22374','799','7','iso88023Csmacd','0','6'), ('22375','799','8','iso88024TokenBus','0','7'), ('22376','799','9','iso88025TokenRing','0','8'), ('22377','799','10','iso88026Man','0','9'), ('22378','799','11','starLan','0','10'), ('22379','799','12','proteon10Mbit','0','11'), ('22380','799','13','proteon80Mbit','0','12'), ('22381','799','14','hyperchannel','0','13'), ('22382','799','15','fddi','0','14'), ('22383','799','16','lapb','0','15'), ('22384','799','17','sdlc','0','16'), ('22385','799','18','ds1','0','17'), ('22386','799','19','e1','0','18'), ('22387','799','20','basicISDN','0','19'), ('22388','799','21','primaryISDN','0','20'), ('22389','799','22','propPointToPointSerial','0','21'), ('22390','799','23','ppp','0','22'), ('22391','799','24','softwareLoopback','0','23'), ('22392','799','25','eon','0','24'), ('22393','799','26','ethernet3Mbit','0','25'), ('22394','799','27','nsip','0','26'), ('22395','799','28','slip','0','27'), ('22396','799','29','ultra','0','28'), ('22397','799','30','ds3','0','29'), ('22398','799','31','sip','0','30'), ('22399','799','32','frameRelay','0','31'), ('22400','799','33','rs232','0','32'), ('22401','799','34','para','0','33'), ('22402','799','35','arcnet','0','34'), ('22403','799','36','arcnetPlus','0','35'), ('22404','799','37','atm','0','36'), ('22405','799','38','miox25','0','37'), ('22406','799','39','sonet','0','38'), ('22407','799','40','x25ple','0','39'), ('22408','799','41','iso88022llc','0','40'), ('22409','799','42','localTalk','0','41'), ('22410','799','43','smdsDxi','0','42'), ('22411','799','44','frameRelayService','0','43'), ('22412','799','45','v35','0','44'), ('22413','799','46','hssi','0','45'), ('22414','799','47','hippi','0','46'), ('22415','799','48','modem','0','47'), ('22416','799','49','aal5','0','48'), ('22417','799','50','sonetPath','0','49'), ('22418','799','51','sonetVT','0','50'), ('22419','799','52','smdsIcip','0','51'), ('22420','799','53','propVirtual','0','52'), ('22421','799','54','propMultiplexor','0','53'), ('22422','799','55','ieee80212','0','54'), ('22423','799','56','fibreChannel','0','55'), ('22424','799','57','hippiInterface','0','56'), ('22425','799','58','frameRelayInterconnect','0','57'), ('22426','799','59','aflane8023','0','58'), ('22427','799','60','aflane8025','0','59'), ('22428','799','61','cctEmul','0','60'), ('22429','799','62','fastEther','0','61'), ('22430','799','63','isdn','0','62'), ('22431','799','64','v11','0','63'), ('22432','799','65','v36','0','64'), ('22433','799','66','g703at64k','0','65'), ('22434','799','67','g703at2mb','0','66'), ('22435','799','68','qllc','0','67'), ('22436','799','69','fastEtherFX','0','68'), ('22437','799','70','channel','0','69'), ('22438','799','71','ieee80211','0','70'), ('22439','799','72','ibm370parChan','0','71'), ('22440','799','73','escon','0','72'), ('22441','799','74','dlsw','0','73'), ('22442','799','75','isdns','0','74'), ('22443','799','76','isdnu','0','75'), ('22444','799','77','lapd','0','76'), ('22445','799','78','ipSwitch','0','77'), ('22446','799','79','rsrb','0','78'), ('22447','799','80','atmLogical','0','79'), ('22448','799','81','ds0','0','80'), ('22449','799','82','ds0Bundle','0','81'), ('22450','799','83','bsc','0','82'), ('22451','799','84','async','0','83'), ('22452','799','85','cnr','0','84'), ('22453','799','86','iso88025Dtr','0','85'), ('22454','799','87','eplrs','0','86'), ('22455','799','88','arap','0','87'), ('22456','799','89','propCnls','0','88'), ('22457','799','90','hostPad','0','89'), ('22458','799','91','termPad','0','90'), ('22459','799','92','frameRelayMPI','0','91'), ('22460','799','93','x213','0','92'), ('22461','799','94','adsl','0','93'), ('22462','799','95','radsl','0','94'), ('22463','799','96','sdsl','0','95'), ('22464','799','97','vdsl','0','96'), ('22465','799','98','iso88025CRFPInt','0','97'), ('22466','799','99','myrinet','0','98'), ('22467','799','100','voiceEM','0','99'), ('22468','799','101','voiceFXO','0','100'), ('22469','799','102','voiceFXS','0','101'), ('22470','799','103','voiceEncap','0','102'), ('22471','799','104','voiceOverIp','0','103'), ('22472','799','105','atmDxi','0','104'), ('22473','799','106','atmFuni','0','105'), ('22474','799','107','atmIma','0','106'), ('22475','799','108','pppMultilinkBundle','0','107'), ('22476','799','109','ipOverCdlc','0','108'), ('22477','799','110','ipOverClaw','0','109'), ('22478','799','111','stackToStack','0','110'), ('22479','799','112','virtualIpAddress','0','111'), ('22480','799','113','mpc','0','112'), ('22481','799','114','ipOverAtm','0','113'), ('22482','799','115','iso88025Fiber','0','114'), ('22483','799','116','tdlc','0','115'), ('22484','799','117','gigabitEthernet','0','116'), ('22485','799','118','hdlc','0','117'), ('22486','799','119','lapf','0','118'), ('22487','799','120','v37','0','119'), ('22488','799','121','x25mlp','0','120'), ('22489','799','122','x25huntGroup','0','121'), ('22490','799','123','trasnpHdlc','0','122'), ('22491','799','124','interleave','0','123'), ('22492','799','125','fast','0','124'), ('22493','799','126','ip','0','125'), ('22494','799','127','docsCableMaclayer','0','126'), ('22495','799','128','docsCableDownstream','0','127'), ('22496','799','129','docsCableUpstream','0','128'), ('22497','799','130','a12MppSwitch','0','129'), ('22498','799','131','tunnel','0','130'), ('22499','799','132','coffee','0','131'), ('22500','799','133','ces','0','132'), ('22501','799','134','atmSubInterface','0','133'), ('22502','799','135','l2vlan','0','134'), ('22503','799','136','l3ipvlan','0','135'), ('22504','799','137','l3ipxvlan','0','136'), ('22505','799','138','digitalPowerline','0','137'), ('22506','799','139','mediaMailOverIp','0','138'), ('22507','799','140','dtm','0','139'), ('22508','799','141','dcn','0','140'), ('22509','799','142','ipForward','0','141'), ('22510','799','143','msdsl','0','142'), ('22511','799','144','ieee1394','0','143'), ('22512','799','145','if-gsn','0','144'), ('22513','799','146','dvbRccMacLayer','0','145'), ('22514','799','147','dvbRccDownstream','0','146'), ('22515','799','148','dvbRccUpstream','0','147'), ('22516','799','149','atmVirtual','0','148'), ('22517','799','150','mplsTunnel','0','149'), ('22518','799','151','srp','0','150'), ('22519','799','152','voiceOverAtm','0','151'), ('22520','799','153','voiceOverFrameRelay','0','152'), ('22521','799','154','idsl','0','153'), ('22522','799','155','compositeLink','0','154'), ('22523','799','156','ss7SigLink','0','155'), ('22524','799','157','propWirelessP2P','0','156'), ('22525','799','158','frForward','0','157'), ('22526','799','159','rfc1483','0','158'), ('22527','799','160','usb','0','159'), ('22528','799','161','ieee8023adLag','0','160'), ('22529','799','162','bgppolicyaccounting','0','161'), ('22530','799','163','frf16MfrBundle','0','162'), ('22531','799','164','h323Gatekeeper','0','163'), ('22532','799','165','h323Proxy','0','164'), ('22533','799','166','mpls','0','165'), ('22534','799','167','mfSigLink','0','166'), ('22535','799','168','hdsl2','0','167'), ('22536','799','169','shdsl','0','168'), ('22537','799','170','ds1FDL','0','169'), ('22538','799','171','pos','0','170'), ('22539','799','172','dvbAsiIn','0','171'), ('22540','799','173','dvbAsiOut','0','172'), ('22541','799','174','plc','0','173'), ('22542','799','175','nfas','0','174'), ('22543','799','176','tr008','0','175'), ('22544','799','177','gr303RDT','0','176'), ('22545','799','178','gr303IDT','0','177'), ('22546','799','179','isup','0','178'), ('22547','799','180','propDocsWirelessMaclayer','0','179'), ('22548','799','181','propDocsWirelessDownstream','0','180'), ('22549','799','182','propDocsWirelessUpstream','0','181'), ('22550','799','183','hiperlan2','0','182'), ('22551','799','184','propBWAp2Mp','0','183'), ('22552','799','185','sonetOverheadChannel','0','184'), ('22553','799','186','digitalWrapperOverheadChannel','0','185'), ('22554','799','187','aal2','0','186'), ('22555','799','188','radioMAC','0','187'), ('22556','799','189','atmRadio','0','188'), ('22557','799','190','imt','0','189'), ('22558','799','191','mvl','0','190'), ('22559','799','192','reachDSL','0','191'), ('22560','799','193','frDlciEndPt','0','192'), ('22561','799','194','atmVciEndPt','0','193'), ('22562','799','195','opticalChannel','0','194'), ('22563','799','196','opticalTransport','0','195'), ('22564','799','197','propAtm','0','196'), ('22565','799','198','voiceOverCable','0','197'), ('22566','799','199','infiniband','0','198'), ('22567','799','200','teLink','0','199'), ('22568','799','201','q2931','0','200'), ('22569','799','202','virtualTg','0','201'), ('22570','799','203','sipTg','0','202'), ('22571','799','204','sipSig','0','203'), ('22572','799','205','docsCableUpstreamChannel','0','204'), ('22573','799','206','econet','0','205'), ('22574','799','207','pon155','0','206'), ('22575','799','208','pon622','0','207'), ('22576','799','209','bridge','0','208'), ('22577','799','210','linegroup','0','209'), ('22578','799','211','voiceEMFGD','0','210'), ('22579','799','212','voiceFGDEANA','0','211'), ('22580','799','213','voiceDID','0','212'), ('22581','799','214','mpegTransport','0','213'), ('22582','799','215','sixToFour','0','214'), ('22583','799','216','gtp','0','215'), ('22584','799','217','pdnEtherLoop1','0','216'), ('22585','799','218','pdnEtherLoop2','0','217'), ('22586','799','219','opticalChannelGroup','0','218'), ('22587','799','220','homepna','0','219'), ('22588','799','221','gfp','0','220'), ('22589','799','222','ciscoISLvlan','0','221'), ('22590','799','223','actelisMetaLOOP','0','222'), ('22591','799','224','fcipLink','0','223'), ('22592','799','225','rpr','0','224'), ('22593','799','226','qam','0','225'), ('22594','799','227','lmp','0','226'), ('22595','799','228','cblVectaStar','0','227'), ('22596','799','229','docsCableMCmtsDownstream','0','228'), ('22597','799','230','adsl2','0','229'), ('22598','799','231','macSecControlledIF','0','230'), ('22599','799','232','macSecUncontrolledIF','0','231'), ('22600','799','233','aviciOpticalEther','0','232'), ('22601','799','234','atmbond','0','233'), ('22602','799','235','voiceFGDOS','0','234'), ('22603','799','236','mocaVersion1','0','235'), ('22604','799','237','ieee80216WMAN','0','236'), ('22605','799','238','adsl2plus','0','237'), ('22606','799','239','dvbRcsMacLayer','0','238'), ('22607','799','240','dvbTdm','0','239'), ('22608','799','241','dvbRcsTdma','0','240'), ('22609','799','242','x86Laps','0','241'), ('22610','799','243','wwanPP','0','242'), ('22611','799','244','wwanPP2','0','243'), ('22612','799','245','voiceEBS','0','244'), ('22613','799','246','ifPwType','0','245'), ('22614','799','247','ilan','0','246'), ('22615','799','248','pip','0','247'), ('22616','799','249','aluELP','0','248'), ('22617','799','250','gpon','0','249'), ('22618','799','251','vdsl2','0','250'), ('22619','799','252','capwapDot11Profile','0','251'), ('22620','799','253','capwapDot11Bss','0','252'), ('22621','799','254','capwapWtpVirtualRadio','0','253'), ('22622','799','255','bits','0','254'), ('22623','799','256','docsCableUpstreamRfPort','0','255'), ('22624','799','257','cableDownstreamRfPort','0','256'), ('22625','799','258','vmwareVirtualNic','0','257'), ('22626','799','259','ieee802154','0','258'), ('22627','799','260','otnOdu','0','259'), ('22628','799','261','otnOtu','0','260'), ('22629','799','262','ifVfiType','0','261'), ('22630','799','263','g9981','0','262'), ('22631','799','264','g9982','0','263'), ('22632','799','265','g9983','0','264'), ('22633','799','266','aluEpon','0','265'), ('22634','799','267','aluEponOnu','0','266'), ('22635','799','268','aluEponPhysicalUni','0','267'), ('22636','799','269','aluEponLogicalLink','0','268'), ('22637','799','270','aluGponOnu','0','269'), ('22638','799','271','aluGponPhysicalUni','0','270'), ('22639','799','272','vmwareNicTeam','0','271'), ('22640','799','277','docsOfdmDownstream','0','272'), ('22641','799','278','docsOfdmaUpstream','0','273'), ('22642','799','279','gfast','0','274'), ('22643','799','280','sdci','0','275'), ('22644','799','281','xboxWireless','0','276'), ('22645','799','282','fastdsl','0','277'), ('22646','799','283','docsCableScte55d1FwdOob','0','278'), ('22647','799','284','docsCableScte55d1RetOob','0','279'), ('22648','799','285','docsCableScte55d2DsOob','0','280'), ('22649','799','286','docsCableScte55d2UsOob','0','281'), ('22650','799','287','docsCableNdf','0','282'), ('22651','799','288','docsCableNdr','0','283'), ('22652','799','289','ptm','0','284'), ('22653','799','290','ghn','0','285'), ('22654','800','0','Down','0','0'), ('22655','800','1','Up','0','1'), ('22656','801','0','not available','0','0'), ('22657','801','1','available','0','1'), ('22658','801','2','unknown','0','2'), ('22659','802','1','up','0','0'), ('22660','802','2','down','0','1'), ('22661','802','4','unknown','0','2'), ('22662','802','5','dormant','0','3'), ('22663','802','6','notPresent','0','4'), ('22664','802','7','lowerLayerDown','0','5'), ('22665','803','1','other','0','0'), ('22666','803','2','regular1822','0','1'), ('22667','803','3','hdh1822','0','2'), ('22668','803','4','ddnX25','0','3'), ('22669','803','5','rfc877x25','0','4'), ('22670','803','6','ethernetCsmacd','0','5'), ('22671','803','7','iso88023Csmacd','0','6'), ('22672','803','8','iso88024TokenBus','0','7'), ('22673','803','9','iso88025TokenRing','0','8'), ('22674','803','10','iso88026Man','0','9'), ('22675','803','11','starLan','0','10'), ('22676','803','12','proteon10Mbit','0','11'), ('22677','803','13','proteon80Mbit','0','12'), ('22678','803','14','hyperchannel','0','13'), ('22679','803','15','fddi','0','14'), ('22680','803','16','lapb','0','15'), ('22681','803','17','sdlc','0','16'), ('22682','803','18','ds1','0','17'), ('22683','803','19','e1','0','18'), ('22684','803','20','basicISDN','0','19'), ('22685','803','21','primaryISDN','0','20'), ('22686','803','22','propPointToPointSerial','0','21'), ('22687','803','23','ppp','0','22'), ('22688','803','24','softwareLoopback','0','23'), ('22689','803','25','eon','0','24'), ('22690','803','26','ethernet3Mbit','0','25'), ('22691','803','27','nsip','0','26'), ('22692','803','28','slip','0','27'), ('22693','803','29','ultra','0','28'), ('22694','803','30','ds3','0','29'), ('22695','803','31','sip','0','30'), ('22696','803','32','frameRelay','0','31'), ('22697','803','33','rs232','0','32'), ('22698','803','34','para','0','33'), ('22699','803','35','arcnet','0','34'), ('22700','803','36','arcnetPlus','0','35'), ('22701','803','37','atm','0','36'), ('22702','803','38','miox25','0','37'), ('22703','803','39','sonet','0','38'), ('22704','803','40','x25ple','0','39'), ('22705','803','41','iso88022llc','0','40'), ('22706','803','42','localTalk','0','41'), ('22707','803','43','smdsDxi','0','42'), ('22708','803','44','frameRelayService','0','43'), ('22709','803','45','v35','0','44'), ('22710','803','46','hssi','0','45'), ('22711','803','47','hippi','0','46'), ('22712','803','48','modem','0','47'), ('22713','803','49','aal5','0','48'), ('22714','803','50','sonetPath','0','49'), ('22715','803','51','sonetVT','0','50'), ('22716','803','52','smdsIcip','0','51'), ('22717','803','53','propVirtual','0','52'), ('22718','803','54','propMultiplexor','0','53'), ('22719','803','55','ieee80212','0','54'), ('22720','803','56','fibreChannel','0','55'), ('22721','803','57','hippiInterface','0','56'), ('22722','803','58','frameRelayInterconnect','0','57'), ('22723','803','59','aflane8023','0','58'), ('22724','803','60','aflane8025','0','59'), ('22725','803','61','cctEmul','0','60'), ('22726','803','62','fastEther','0','61'), ('22727','803','63','isdn','0','62'), ('22728','803','64','v11','0','63'), ('22729','803','65','v36','0','64'), ('22730','803','66','g703at64k','0','65'), ('22731','803','67','g703at2mb','0','66'), ('22732','803','68','qllc','0','67'), ('22733','803','69','fastEtherFX','0','68'), ('22734','803','70','channel','0','69'), ('22735','803','71','ieee80211','0','70'), ('22736','803','72','ibm370parChan','0','71'), ('22737','803','73','escon','0','72'), ('22738','803','74','dlsw','0','73'), ('22739','803','75','isdns','0','74'), ('22740','803','76','isdnu','0','75'), ('22741','803','77','lapd','0','76'), ('22742','803','78','ipSwitch','0','77'), ('22743','803','79','rsrb','0','78'), ('22744','803','80','atmLogical','0','79'), ('22745','803','81','ds0','0','80'), ('22746','803','82','ds0Bundle','0','81'), ('22747','803','83','bsc','0','82'), ('22748','803','84','async','0','83'), ('22749','803','85','cnr','0','84'), ('22750','803','86','iso88025Dtr','0','85'), ('22751','803','87','eplrs','0','86'), ('22752','803','88','arap','0','87'), ('22753','803','89','propCnls','0','88'), ('22754','803','90','hostPad','0','89'), ('22755','803','91','termPad','0','90'), ('22756','803','92','frameRelayMPI','0','91'), ('22757','803','93','x213','0','92'), ('22758','803','94','adsl','0','93'), ('22759','803','95','radsl','0','94'), ('22760','803','96','sdsl','0','95'), ('22761','803','97','vdsl','0','96'), ('22762','803','98','iso88025CRFPInt','0','97'), ('22763','803','99','myrinet','0','98'), ('22764','803','100','voiceEM','0','99'), ('22765','803','101','voiceFXO','0','100'), ('22766','803','102','voiceFXS','0','101'), ('22767','803','103','voiceEncap','0','102'), ('22768','803','104','voiceOverIp','0','103'), ('22769','803','105','atmDxi','0','104'), ('22770','803','106','atmFuni','0','105'), ('22771','803','107','atmIma','0','106'), ('22772','803','108','pppMultilinkBundle','0','107'), ('22773','803','109','ipOverCdlc','0','108'), ('22774','803','110','ipOverClaw','0','109'), ('22775','803','111','stackToStack','0','110'), ('22776','803','112','virtualIpAddress','0','111'), ('22777','803','113','mpc','0','112'), ('22778','803','114','ipOverAtm','0','113'), ('22779','803','115','iso88025Fiber','0','114'), ('22780','803','116','tdlc','0','115'), ('22781','803','117','gigabitEthernet','0','116'), ('22782','803','118','hdlc','0','117'), ('22783','803','119','lapf','0','118'), ('22784','803','120','v37','0','119'), ('22785','803','121','x25mlp','0','120'), ('22786','803','122','x25huntGroup','0','121'), ('22787','803','123','trasnpHdlc','0','122'), ('22788','803','124','interleave','0','123'), ('22789','803','125','fast','0','124'), ('22790','803','126','ip','0','125'), ('22791','803','127','docsCableMaclayer','0','126'), ('22792','803','128','docsCableDownstream','0','127'), ('22793','803','129','docsCableUpstream','0','128'), ('22794','803','130','a12MppSwitch','0','129'), ('22795','803','131','tunnel','0','130'), ('22796','803','132','coffee','0','131'), ('22797','803','133','ces','0','132'), ('22798','803','134','atmSubInterface','0','133'), ('22799','803','135','l2vlan','0','134'), ('22800','803','136','l3ipvlan','0','135'), ('22801','803','137','l3ipxvlan','0','136'), ('22802','803','138','digitalPowerline','0','137'), ('22803','803','139','mediaMailOverIp','0','138'), ('22804','803','140','dtm','0','139'), ('22805','803','141','dcn','0','140'), ('22806','803','142','ipForward','0','141'), ('22807','803','143','msdsl','0','142'), ('22808','803','144','ieee1394','0','143'), ('22809','803','145','if-gsn','0','144'), ('22810','803','146','dvbRccMacLayer','0','145'), ('22811','803','147','dvbRccDownstream','0','146'), ('22812','803','148','dvbRccUpstream','0','147'), ('22813','803','149','atmVirtual','0','148'), ('22814','803','150','mplsTunnel','0','149'), ('22815','803','151','srp','0','150'), ('22816','803','152','voiceOverAtm','0','151'), ('22817','803','153','voiceOverFrameRelay','0','152'), ('22818','803','154','idsl','0','153'), ('22819','803','155','compositeLink','0','154'), ('22820','803','156','ss7SigLink','0','155'), ('22821','803','157','propWirelessP2P','0','156'), ('22822','803','158','frForward','0','157'), ('22823','803','159','rfc1483','0','158'), ('22824','803','160','usb','0','159'), ('22825','803','161','ieee8023adLag','0','160'), ('22826','803','162','bgppolicyaccounting','0','161'), ('22827','803','163','frf16MfrBundle','0','162'), ('22828','803','164','h323Gatekeeper','0','163'), ('22829','803','165','h323Proxy','0','164'), ('22830','803','166','mpls','0','165'), ('22831','803','167','mfSigLink','0','166'), ('22832','803','168','hdsl2','0','167'), ('22833','803','169','shdsl','0','168'), ('22834','803','170','ds1FDL','0','169'), ('22835','803','171','pos','0','170'), ('22836','803','172','dvbAsiIn','0','171'), ('22837','803','173','dvbAsiOut','0','172'), ('22838','803','174','plc','0','173'), ('22839','803','175','nfas','0','174'), ('22840','803','176','tr008','0','175'), ('22841','803','177','gr303RDT','0','176'), ('22842','803','178','gr303IDT','0','177'), ('22843','803','179','isup','0','178'), ('22844','803','180','propDocsWirelessMaclayer','0','179'), ('22845','803','181','propDocsWirelessDownstream','0','180'), ('22846','803','182','propDocsWirelessUpstream','0','181'), ('22847','803','183','hiperlan2','0','182'), ('22848','803','184','propBWAp2Mp','0','183'), ('22849','803','185','sonetOverheadChannel','0','184'), ('22850','803','186','digitalWrapperOverheadChannel','0','185'), ('22851','803','187','aal2','0','186'), ('22852','803','188','radioMAC','0','187'), ('22853','803','189','atmRadio','0','188'), ('22854','803','190','imt','0','189'), ('22855','803','191','mvl','0','190'), ('22856','803','192','reachDSL','0','191'), ('22857','803','193','frDlciEndPt','0','192'), ('22858','803','194','atmVciEndPt','0','193'), ('22859','803','195','opticalChannel','0','194'), ('22860','803','196','opticalTransport','0','195'), ('22861','803','197','propAtm','0','196'), ('22862','803','198','voiceOverCable','0','197'), ('22863','803','199','infiniband','0','198'), ('22864','803','200','teLink','0','199'), ('22865','803','201','q2931','0','200'), ('22866','803','202','virtualTg','0','201'), ('22867','803','203','sipTg','0','202'), ('22868','803','204','sipSig','0','203'), ('22869','803','205','docsCableUpstreamChannel','0','204'), ('22870','803','206','econet','0','205'), ('22871','803','207','pon155','0','206'), ('22872','803','208','pon622','0','207'), ('22873','803','209','bridge','0','208'), ('22874','803','210','linegroup','0','209'), ('22875','803','211','voiceEMFGD','0','210'), ('22876','803','212','voiceFGDEANA','0','211'), ('22877','803','213','voiceDID','0','212'), ('22878','803','214','mpegTransport','0','213'), ('22879','803','215','sixToFour','0','214'), ('22880','803','216','gtp','0','215'), ('22881','803','217','pdnEtherLoop1','0','216'), ('22882','803','218','pdnEtherLoop2','0','217'), ('22883','803','219','opticalChannelGroup','0','218'), ('22884','803','220','homepna','0','219'), ('22885','803','221','gfp','0','220'), ('22886','803','222','ciscoISLvlan','0','221'), ('22887','803','223','actelisMetaLOOP','0','222'), ('22888','803','224','fcipLink','0','223'), ('22889','803','225','rpr','0','224'), ('22890','803','226','qam','0','225'), ('22891','803','227','lmp','0','226'), ('22892','803','228','cblVectaStar','0','227'), ('22893','803','229','docsCableMCmtsDownstream','0','228'), ('22894','803','230','adsl2','0','229'), ('22895','803','231','macSecControlledIF','0','230'), ('22896','803','232','macSecUncontrolledIF','0','231'), ('22897','803','233','aviciOpticalEther','0','232'), ('22898','803','234','atmbond','0','233'), ('22899','803','235','voiceFGDOS','0','234'), ('22900','803','236','mocaVersion1','0','235'), ('22901','803','237','ieee80216WMAN','0','236'), ('22902','803','238','adsl2plus','0','237'), ('22903','803','239','dvbRcsMacLayer','0','238'), ('22904','803','240','dvbTdm','0','239'), ('22905','803','241','dvbRcsTdma','0','240'), ('22906','803','242','x86Laps','0','241'), ('22907','803','243','wwanPP','0','242'), ('22908','803','244','wwanPP2','0','243'), ('22909','803','245','voiceEBS','0','244'), ('22910','803','246','ifPwType','0','245'), ('22911','803','247','ilan','0','246'), ('22912','803','248','pip','0','247'), ('22913','803','249','aluELP','0','248'), ('22914','803','250','gpon','0','249'), ('22915','803','251','vdsl2','0','250'), ('22916','803','252','capwapDot11Profile','0','251'), ('22917','803','253','capwapDot11Bss','0','252'), ('22918','803','254','capwapWtpVirtualRadio','0','253'), ('22919','803','255','bits','0','254'), ('22920','803','256','docsCableUpstreamRfPort','0','255'), ('22921','803','257','cableDownstreamRfPort','0','256'), ('22922','803','258','vmwareVirtualNic','0','257'), ('22923','803','259','ieee802154','0','258'), ('22924','803','260','otnOdu','0','259'), ('22925','803','261','otnOtu','0','260'), ('22926','803','262','ifVfiType','0','261'), ('22927','803','263','g9981','0','262'), ('22928','803','264','g9982','0','263'), ('22929','803','265','g9983','0','264'), ('22930','803','266','aluEpon','0','265'), ('22931','803','267','aluEponOnu','0','266'), ('22932','803','268','aluEponPhysicalUni','0','267'), ('22933','803','269','aluEponLogicalLink','0','268'), ('22934','803','270','aluGponOnu','0','269'), ('22935','803','271','aluGponPhysicalUni','0','270'), ('22936','803','272','vmwareNicTeam','0','271'), ('22937','803','277','docsOfdmDownstream','0','272'), ('22938','803','278','docsOfdmaUpstream','0','273'), ('22939','803','279','gfast','0','274'), ('22940','803','280','sdci','0','275'), ('22941','803','281','xboxWireless','0','276'), ('22942','803','282','fastdsl','0','277'), ('22943','803','283','docsCableScte55d1FwdOob','0','278'), ('22944','803','284','docsCableScte55d1RetOob','0','279'), ('22945','803','285','docsCableScte55d2DsOob','0','280'), ('22946','803','286','docsCableScte55d2UsOob','0','281'), ('22947','803','287','docsCableNdf','0','282'), ('22948','803','288','docsCableNdr','0','283'), ('22949','803','289','ptm','0','284'), ('22950','803','290','ghn','0','285'), ('22951','804','0','Down','0','0'), ('22952','804','1','Up','0','1'), ('22953','805','0','not available','0','0'), ('22954','805','1','available','0','1'), ('22955','805','2','unknown','0','2'), ('22956','806','1','up','0','0'), ('22957','806','2','down','0','1'), ('22958','806','4','unknown','0','2'), ('22959','806','5','dormant','0','3'), ('22960','806','6','notPresent','0','4'), ('22961','806','7','lowerLayerDown','0','5'), ('22962','807','1','other','0','0'), ('22963','807','2','regular1822','0','1'), ('22964','807','3','hdh1822','0','2'), ('22965','807','4','ddnX25','0','3'), ('22966','807','5','rfc877x25','0','4'), ('22967','807','6','ethernetCsmacd','0','5'), ('22968','807','7','iso88023Csmacd','0','6'), ('22969','807','8','iso88024TokenBus','0','7'), ('22970','807','9','iso88025TokenRing','0','8'), ('22971','807','10','iso88026Man','0','9'), ('22972','807','11','starLan','0','10'), ('22973','807','12','proteon10Mbit','0','11'), ('22974','807','13','proteon80Mbit','0','12'), ('22975','807','14','hyperchannel','0','13'), ('22976','807','15','fddi','0','14'), ('22977','807','16','lapb','0','15'), ('22978','807','17','sdlc','0','16'), ('22979','807','18','ds1','0','17'), ('22980','807','19','e1','0','18'), ('22981','807','20','basicISDN','0','19'), ('22982','807','21','primaryISDN','0','20'), ('22983','807','22','propPointToPointSerial','0','21'), ('22984','807','23','ppp','0','22'), ('22985','807','24','softwareLoopback','0','23'), ('22986','807','25','eon','0','24'), ('22987','807','26','ethernet3Mbit','0','25'), ('22988','807','27','nsip','0','26'), ('22989','807','28','slip','0','27'), ('22990','807','29','ultra','0','28'), ('22991','807','30','ds3','0','29'), ('22992','807','31','sip','0','30'), ('22993','807','32','frameRelay','0','31'), ('22994','807','33','rs232','0','32'), ('22995','807','34','para','0','33'), ('22996','807','35','arcnet','0','34'), ('22997','807','36','arcnetPlus','0','35'), ('22998','807','37','atm','0','36'), ('22999','807','38','miox25','0','37'), ('23000','807','39','sonet','0','38'), ('23001','807','40','x25ple','0','39'), ('23002','807','41','iso88022llc','0','40'), ('23003','807','42','localTalk','0','41'), ('23004','807','43','smdsDxi','0','42'), ('23005','807','44','frameRelayService','0','43'), ('23006','807','45','v35','0','44'), ('23007','807','46','hssi','0','45'), ('23008','807','47','hippi','0','46'), ('23009','807','48','modem','0','47'), ('23010','807','49','aal5','0','48'), ('23011','807','50','sonetPath','0','49'), ('23012','807','51','sonetVT','0','50'), ('23013','807','52','smdsIcip','0','51'), ('23014','807','53','propVirtual','0','52'), ('23015','807','54','propMultiplexor','0','53'), ('23016','807','55','ieee80212','0','54'), ('23017','807','56','fibreChannel','0','55'), ('23018','807','57','hippiInterface','0','56'), ('23019','807','58','frameRelayInterconnect','0','57'), ('23020','807','59','aflane8023','0','58'), ('23021','807','60','aflane8025','0','59'), ('23022','807','61','cctEmul','0','60'), ('23023','807','62','fastEther','0','61'), ('23024','807','63','isdn','0','62'), ('23025','807','64','v11','0','63'), ('23026','807','65','v36','0','64'), ('23027','807','66','g703at64k','0','65'), ('23028','807','67','g703at2mb','0','66'), ('23029','807','68','qllc','0','67'), ('23030','807','69','fastEtherFX','0','68'), ('23031','807','70','channel','0','69'), ('23032','807','71','ieee80211','0','70'), ('23033','807','72','ibm370parChan','0','71'), ('23034','807','73','escon','0','72'), ('23035','807','74','dlsw','0','73'), ('23036','807','75','isdns','0','74'), ('23037','807','76','isdnu','0','75'), ('23038','807','77','lapd','0','76'), ('23039','807','78','ipSwitch','0','77'), ('23040','807','79','rsrb','0','78'), ('23041','807','80','atmLogical','0','79'), ('23042','807','81','ds0','0','80'), ('23043','807','82','ds0Bundle','0','81'), ('23044','807','83','bsc','0','82'), ('23045','807','84','async','0','83'), ('23046','807','85','cnr','0','84'), ('23047','807','86','iso88025Dtr','0','85'), ('23048','807','87','eplrs','0','86'), ('23049','807','88','arap','0','87'), ('23050','807','89','propCnls','0','88'), ('23051','807','90','hostPad','0','89'), ('23052','807','91','termPad','0','90'), ('23053','807','92','frameRelayMPI','0','91'), ('23054','807','93','x213','0','92'), ('23055','807','94','adsl','0','93'), ('23056','807','95','radsl','0','94'), ('23057','807','96','sdsl','0','95'), ('23058','807','97','vdsl','0','96'), ('23059','807','98','iso88025CRFPInt','0','97'), ('23060','807','99','myrinet','0','98'), ('23061','807','100','voiceEM','0','99'), ('23062','807','101','voiceFXO','0','100'), ('23063','807','102','voiceFXS','0','101'), ('23064','807','103','voiceEncap','0','102'), ('23065','807','104','voiceOverIp','0','103'), ('23066','807','105','atmDxi','0','104'), ('23067','807','106','atmFuni','0','105'), ('23068','807','107','atmIma','0','106'), ('23069','807','108','pppMultilinkBundle','0','107'), ('23070','807','109','ipOverCdlc','0','108'), ('23071','807','110','ipOverClaw','0','109'), ('23072','807','111','stackToStack','0','110'), ('23073','807','112','virtualIpAddress','0','111'), ('23074','807','113','mpc','0','112'), ('23075','807','114','ipOverAtm','0','113'), ('23076','807','115','iso88025Fiber','0','114'), ('23077','807','116','tdlc','0','115'), ('23078','807','117','gigabitEthernet','0','116'), ('23079','807','118','hdlc','0','117'), ('23080','807','119','lapf','0','118'), ('23081','807','120','v37','0','119'), ('23082','807','121','x25mlp','0','120'), ('23083','807','122','x25huntGroup','0','121'), ('23084','807','123','trasnpHdlc','0','122'), ('23085','807','124','interleave','0','123'), ('23086','807','125','fast','0','124'), ('23087','807','126','ip','0','125'), ('23088','807','127','docsCableMaclayer','0','126'), ('23089','807','128','docsCableDownstream','0','127'), ('23090','807','129','docsCableUpstream','0','128'), ('23091','807','130','a12MppSwitch','0','129'), ('23092','807','131','tunnel','0','130'), ('23093','807','132','coffee','0','131'), ('23094','807','133','ces','0','132'), ('23095','807','134','atmSubInterface','0','133'), ('23096','807','135','l2vlan','0','134'), ('23097','807','136','l3ipvlan','0','135'), ('23098','807','137','l3ipxvlan','0','136'), ('23099','807','138','digitalPowerline','0','137'), ('23100','807','139','mediaMailOverIp','0','138'), ('23101','807','140','dtm','0','139'), ('23102','807','141','dcn','0','140'), ('23103','807','142','ipForward','0','141'), ('23104','807','143','msdsl','0','142'), ('23105','807','144','ieee1394','0','143'), ('23106','807','145','if-gsn','0','144'), ('23107','807','146','dvbRccMacLayer','0','145'), ('23108','807','147','dvbRccDownstream','0','146'), ('23109','807','148','dvbRccUpstream','0','147'), ('23110','807','149','atmVirtual','0','148'), ('23111','807','150','mplsTunnel','0','149'), ('23112','807','151','srp','0','150'), ('23113','807','152','voiceOverAtm','0','151'), ('23114','807','153','voiceOverFrameRelay','0','152'), ('23115','807','154','idsl','0','153'), ('23116','807','155','compositeLink','0','154'), ('23117','807','156','ss7SigLink','0','155'), ('23118','807','157','propWirelessP2P','0','156'), ('23119','807','158','frForward','0','157'), ('23120','807','159','rfc1483','0','158'), ('23121','807','160','usb','0','159'), ('23122','807','161','ieee8023adLag','0','160'), ('23123','807','162','bgppolicyaccounting','0','161'), ('23124','807','163','frf16MfrBundle','0','162'), ('23125','807','164','h323Gatekeeper','0','163'), ('23126','807','165','h323Proxy','0','164'), ('23127','807','166','mpls','0','165'), ('23128','807','167','mfSigLink','0','166'), ('23129','807','168','hdsl2','0','167'), ('23130','807','169','shdsl','0','168'), ('23131','807','170','ds1FDL','0','169'), ('23132','807','171','pos','0','170'), ('23133','807','172','dvbAsiIn','0','171'), ('23134','807','173','dvbAsiOut','0','172'), ('23135','807','174','plc','0','173'), ('23136','807','175','nfas','0','174'), ('23137','807','176','tr008','0','175'), ('23138','807','177','gr303RDT','0','176'), ('23139','807','178','gr303IDT','0','177'), ('23140','807','179','isup','0','178'), ('23141','807','180','propDocsWirelessMaclayer','0','179'), ('23142','807','181','propDocsWirelessDownstream','0','180'), ('23143','807','182','propDocsWirelessUpstream','0','181'), ('23144','807','183','hiperlan2','0','182'), ('23145','807','184','propBWAp2Mp','0','183'), ('23146','807','185','sonetOverheadChannel','0','184'), ('23147','807','186','digitalWrapperOverheadChannel','0','185'), ('23148','807','187','aal2','0','186'), ('23149','807','188','radioMAC','0','187'), ('23150','807','189','atmRadio','0','188'), ('23151','807','190','imt','0','189'), ('23152','807','191','mvl','0','190'), ('23153','807','192','reachDSL','0','191'), ('23154','807','193','frDlciEndPt','0','192'), ('23155','807','194','atmVciEndPt','0','193'), ('23156','807','195','opticalChannel','0','194'), ('23157','807','196','opticalTransport','0','195'), ('23158','807','197','propAtm','0','196'), ('23159','807','198','voiceOverCable','0','197'), ('23160','807','199','infiniband','0','198'), ('23161','807','200','teLink','0','199'), ('23162','807','201','q2931','0','200'), ('23163','807','202','virtualTg','0','201'), ('23164','807','203','sipTg','0','202'), ('23165','807','204','sipSig','0','203'), ('23166','807','205','docsCableUpstreamChannel','0','204'), ('23167','807','206','econet','0','205'), ('23168','807','207','pon155','0','206'), ('23169','807','208','pon622','0','207'), ('23170','807','209','bridge','0','208'), ('23171','807','210','linegroup','0','209'), ('23172','807','211','voiceEMFGD','0','210'), ('23173','807','212','voiceFGDEANA','0','211'), ('23174','807','213','voiceDID','0','212'), ('23175','807','214','mpegTransport','0','213'), ('23176','807','215','sixToFour','0','214'), ('23177','807','216','gtp','0','215'), ('23178','807','217','pdnEtherLoop1','0','216'), ('23179','807','218','pdnEtherLoop2','0','217'), ('23180','807','219','opticalChannelGroup','0','218'), ('23181','807','220','homepna','0','219'), ('23182','807','221','gfp','0','220'), ('23183','807','222','ciscoISLvlan','0','221'), ('23184','807','223','actelisMetaLOOP','0','222'), ('23185','807','224','fcipLink','0','223'), ('23186','807','225','rpr','0','224'), ('23187','807','226','qam','0','225'), ('23188','807','227','lmp','0','226'), ('23189','807','228','cblVectaStar','0','227'), ('23190','807','229','docsCableMCmtsDownstream','0','228'), ('23191','807','230','adsl2','0','229'), ('23192','807','231','macSecControlledIF','0','230'), ('23193','807','232','macSecUncontrolledIF','0','231'), ('23194','807','233','aviciOpticalEther','0','232'), ('23195','807','234','atmbond','0','233'), ('23196','807','235','voiceFGDOS','0','234'), ('23197','807','236','mocaVersion1','0','235'), ('23198','807','237','ieee80216WMAN','0','236'), ('23199','807','238','adsl2plus','0','237'), ('23200','807','239','dvbRcsMacLayer','0','238'), ('23201','807','240','dvbTdm','0','239'), ('23202','807','241','dvbRcsTdma','0','240'), ('23203','807','242','x86Laps','0','241'), ('23204','807','243','wwanPP','0','242'), ('23205','807','244','wwanPP2','0','243'), ('23206','807','245','voiceEBS','0','244'), ('23207','807','246','ifPwType','0','245'), ('23208','807','247','ilan','0','246'), ('23209','807','248','pip','0','247'), ('23210','807','249','aluELP','0','248'), ('23211','807','250','gpon','0','249'), ('23212','807','251','vdsl2','0','250'), ('23213','807','252','capwapDot11Profile','0','251'), ('23214','807','253','capwapDot11Bss','0','252'), ('23215','807','254','capwapWtpVirtualRadio','0','253'), ('23216','807','255','bits','0','254'), ('23217','807','256','docsCableUpstreamRfPort','0','255'), ('23218','807','257','cableDownstreamRfPort','0','256'), ('23219','807','258','vmwareVirtualNic','0','257'), ('23220','807','259','ieee802154','0','258'), ('23221','807','260','otnOdu','0','259'), ('23222','807','261','otnOtu','0','260'), ('23223','807','262','ifVfiType','0','261'), ('23224','807','263','g9981','0','262'), ('23225','807','264','g9982','0','263'), ('23226','807','265','g9983','0','264'), ('23227','807','266','aluEpon','0','265'), ('23228','807','267','aluEponOnu','0','266'), ('23229','807','268','aluEponPhysicalUni','0','267'), ('23230','807','269','aluEponLogicalLink','0','268'), ('23231','807','270','aluGponOnu','0','269'), ('23232','807','271','aluGponPhysicalUni','0','270'), ('23233','807','272','vmwareNicTeam','0','271'), ('23234','807','277','docsOfdmDownstream','0','272'), ('23235','807','278','docsOfdmaUpstream','0','273'), ('23236','807','279','gfast','0','274'), ('23237','807','280','sdci','0','275'), ('23238','807','281','xboxWireless','0','276'), ('23239','807','282','fastdsl','0','277'), ('23240','807','283','docsCableScte55d1FwdOob','0','278'), ('23241','807','284','docsCableScte55d1RetOob','0','279'), ('23242','807','285','docsCableScte55d2DsOob','0','280'), ('23243','807','286','docsCableScte55d2UsOob','0','281'), ('23244','807','287','docsCableNdf','0','282'), ('23245','807','288','docsCableNdr','0','283'), ('23246','807','289','ptm','0','284'), ('23247','807','290','ghn','0','285'), ('23248','808','0','Down','0','0'), ('23249','808','1','Up','0','1'), ('23250','809','0','not available','0','0'), ('23251','809','1','available','0','1'), ('23252','809','2','unknown','0','2'), ('23253','810','1','up','0','0'), ('23254','810','2','down','0','1'), ('23255','810','4','unknown','0','2'), ('23256','810','5','dormant','0','3'), ('23257','810','6','notPresent','0','4'), ('23258','810','7','lowerLayerDown','0','5'), ('23259','811','1','other','0','0'), ('23260','811','2','regular1822','0','1'), ('23261','811','3','hdh1822','0','2'), ('23262','811','4','ddnX25','0','3'), ('23263','811','5','rfc877x25','0','4'), ('23264','811','6','ethernetCsmacd','0','5'), ('23265','811','7','iso88023Csmacd','0','6'), ('23266','811','8','iso88024TokenBus','0','7'), ('23267','811','9','iso88025TokenRing','0','8'), ('23268','811','10','iso88026Man','0','9'), ('23269','811','11','starLan','0','10'), ('23270','811','12','proteon10Mbit','0','11'), ('23271','811','13','proteon80Mbit','0','12'), ('23272','811','14','hyperchannel','0','13'), ('23273','811','15','fddi','0','14'), ('23274','811','16','lapb','0','15'), ('23275','811','17','sdlc','0','16'), ('23276','811','18','ds1','0','17'), ('23277','811','19','e1','0','18'), ('23278','811','20','basicISDN','0','19'), ('23279','811','21','primaryISDN','0','20'), ('23280','811','22','propPointToPointSerial','0','21'), ('23281','811','23','ppp','0','22'), ('23282','811','24','softwareLoopback','0','23'), ('23283','811','25','eon','0','24'), ('23284','811','26','ethernet3Mbit','0','25'), ('23285','811','27','nsip','0','26'), ('23286','811','28','slip','0','27'), ('23287','811','29','ultra','0','28'), ('23288','811','30','ds3','0','29'), ('23289','811','31','sip','0','30'), ('23290','811','32','frameRelay','0','31'), ('23291','811','33','rs232','0','32'), ('23292','811','34','para','0','33'), ('23293','811','35','arcnet','0','34'), ('23294','811','36','arcnetPlus','0','35'), ('23295','811','37','atm','0','36'), ('23296','811','38','miox25','0','37'), ('23297','811','39','sonet','0','38'), ('23298','811','40','x25ple','0','39'), ('23299','811','41','iso88022llc','0','40'), ('23300','811','42','localTalk','0','41'), ('23301','811','43','smdsDxi','0','42'), ('23302','811','44','frameRelayService','0','43'), ('23303','811','45','v35','0','44'), ('23304','811','46','hssi','0','45'), ('23305','811','47','hippi','0','46'), ('23306','811','48','modem','0','47'), ('23307','811','49','aal5','0','48'), ('23308','811','50','sonetPath','0','49'), ('23309','811','51','sonetVT','0','50'), ('23310','811','52','smdsIcip','0','51'), ('23311','811','53','propVirtual','0','52'), ('23312','811','54','propMultiplexor','0','53'), ('23313','811','55','ieee80212','0','54'), ('23314','811','56','fibreChannel','0','55'), ('23315','811','57','hippiInterface','0','56'), ('23316','811','58','frameRelayInterconnect','0','57'), ('23317','811','59','aflane8023','0','58'), ('23318','811','60','aflane8025','0','59'), ('23319','811','61','cctEmul','0','60'), ('23320','811','62','fastEther','0','61'), ('23321','811','63','isdn','0','62'), ('23322','811','64','v11','0','63'), ('23323','811','65','v36','0','64'), ('23324','811','66','g703at64k','0','65'), ('23325','811','67','g703at2mb','0','66'), ('23326','811','68','qllc','0','67'), ('23327','811','69','fastEtherFX','0','68'), ('23328','811','70','channel','0','69'), ('23329','811','71','ieee80211','0','70'), ('23330','811','72','ibm370parChan','0','71'), ('23331','811','73','escon','0','72'), ('23332','811','74','dlsw','0','73'), ('23333','811','75','isdns','0','74'), ('23334','811','76','isdnu','0','75'), ('23335','811','77','lapd','0','76'), ('23336','811','78','ipSwitch','0','77'), ('23337','811','79','rsrb','0','78'), ('23338','811','80','atmLogical','0','79'), ('23339','811','81','ds0','0','80'), ('23340','811','82','ds0Bundle','0','81'), ('23341','811','83','bsc','0','82'), ('23342','811','84','async','0','83'), ('23343','811','85','cnr','0','84'), ('23344','811','86','iso88025Dtr','0','85'), ('23345','811','87','eplrs','0','86'), ('23346','811','88','arap','0','87'), ('23347','811','89','propCnls','0','88'), ('23348','811','90','hostPad','0','89'), ('23349','811','91','termPad','0','90'), ('23350','811','92','frameRelayMPI','0','91'), ('23351','811','93','x213','0','92'), ('23352','811','94','adsl','0','93'), ('23353','811','95','radsl','0','94'), ('23354','811','96','sdsl','0','95'), ('23355','811','97','vdsl','0','96'), ('23356','811','98','iso88025CRFPInt','0','97'), ('23357','811','99','myrinet','0','98'), ('23358','811','100','voiceEM','0','99'), ('23359','811','101','voiceFXO','0','100'), ('23360','811','102','voiceFXS','0','101'), ('23361','811','103','voiceEncap','0','102'), ('23362','811','104','voiceOverIp','0','103'), ('23363','811','105','atmDxi','0','104'), ('23364','811','106','atmFuni','0','105'), ('23365','811','107','atmIma','0','106'), ('23366','811','108','pppMultilinkBundle','0','107'), ('23367','811','109','ipOverCdlc','0','108'), ('23368','811','110','ipOverClaw','0','109'), ('23369','811','111','stackToStack','0','110'), ('23370','811','112','virtualIpAddress','0','111'), ('23371','811','113','mpc','0','112'), ('23372','811','114','ipOverAtm','0','113'), ('23373','811','115','iso88025Fiber','0','114'), ('23374','811','116','tdlc','0','115'), ('23375','811','117','gigabitEthernet','0','116'), ('23376','811','118','hdlc','0','117'), ('23377','811','119','lapf','0','118'), ('23378','811','120','v37','0','119'), ('23379','811','121','x25mlp','0','120'), ('23380','811','122','x25huntGroup','0','121'), ('23381','811','123','trasnpHdlc','0','122'), ('23382','811','124','interleave','0','123'), ('23383','811','125','fast','0','124'), ('23384','811','126','ip','0','125'), ('23385','811','127','docsCableMaclayer','0','126'), ('23386','811','128','docsCableDownstream','0','127'), ('23387','811','129','docsCableUpstream','0','128'), ('23388','811','130','a12MppSwitch','0','129'), ('23389','811','131','tunnel','0','130'), ('23390','811','132','coffee','0','131'), ('23391','811','133','ces','0','132'), ('23392','811','134','atmSubInterface','0','133'), ('23393','811','135','l2vlan','0','134'), ('23394','811','136','l3ipvlan','0','135'), ('23395','811','137','l3ipxvlan','0','136'), ('23396','811','138','digitalPowerline','0','137'), ('23397','811','139','mediaMailOverIp','0','138'), ('23398','811','140','dtm','0','139'), ('23399','811','141','dcn','0','140'), ('23400','811','142','ipForward','0','141'), ('23401','811','143','msdsl','0','142'), ('23402','811','144','ieee1394','0','143'), ('23403','811','145','if-gsn','0','144'), ('23404','811','146','dvbRccMacLayer','0','145'), ('23405','811','147','dvbRccDownstream','0','146'), ('23406','811','148','dvbRccUpstream','0','147'), ('23407','811','149','atmVirtual','0','148'), ('23408','811','150','mplsTunnel','0','149'), ('23409','811','151','srp','0','150'), ('23410','811','152','voiceOverAtm','0','151'), ('23411','811','153','voiceOverFrameRelay','0','152'), ('23412','811','154','idsl','0','153'), ('23413','811','155','compositeLink','0','154'), ('23414','811','156','ss7SigLink','0','155'), ('23415','811','157','propWirelessP2P','0','156'), ('23416','811','158','frForward','0','157'), ('23417','811','159','rfc1483','0','158'), ('23418','811','160','usb','0','159'), ('23419','811','161','ieee8023adLag','0','160'), ('23420','811','162','bgppolicyaccounting','0','161'), ('23421','811','163','frf16MfrBundle','0','162'), ('23422','811','164','h323Gatekeeper','0','163'), ('23423','811','165','h323Proxy','0','164'), ('23424','811','166','mpls','0','165'), ('23425','811','167','mfSigLink','0','166'), ('23426','811','168','hdsl2','0','167'), ('23427','811','169','shdsl','0','168'), ('23428','811','170','ds1FDL','0','169'), ('23429','811','171','pos','0','170'), ('23430','811','172','dvbAsiIn','0','171'), ('23431','811','173','dvbAsiOut','0','172'), ('23432','811','174','plc','0','173'), ('23433','811','175','nfas','0','174'), ('23434','811','176','tr008','0','175'), ('23435','811','177','gr303RDT','0','176'), ('23436','811','178','gr303IDT','0','177'), ('23437','811','179','isup','0','178'), ('23438','811','180','propDocsWirelessMaclayer','0','179'), ('23439','811','181','propDocsWirelessDownstream','0','180'), ('23440','811','182','propDocsWirelessUpstream','0','181'), ('23441','811','183','hiperlan2','0','182'), ('23442','811','184','propBWAp2Mp','0','183'), ('23443','811','185','sonetOverheadChannel','0','184'), ('23444','811','186','digitalWrapperOverheadChannel','0','185'), ('23445','811','187','aal2','0','186'), ('23446','811','188','radioMAC','0','187'), ('23447','811','189','atmRadio','0','188'), ('23448','811','190','imt','0','189'), ('23449','811','191','mvl','0','190'), ('23450','811','192','reachDSL','0','191'), ('23451','811','193','frDlciEndPt','0','192'), ('23452','811','194','atmVciEndPt','0','193'), ('23453','811','195','opticalChannel','0','194'), ('23454','811','196','opticalTransport','0','195'), ('23455','811','197','propAtm','0','196'), ('23456','811','198','voiceOverCable','0','197'), ('23457','811','199','infiniband','0','198'), ('23458','811','200','teLink','0','199'), ('23459','811','201','q2931','0','200'), ('23460','811','202','virtualTg','0','201'), ('23461','811','203','sipTg','0','202'), ('23462','811','204','sipSig','0','203'), ('23463','811','205','docsCableUpstreamChannel','0','204'), ('23464','811','206','econet','0','205'), ('23465','811','207','pon155','0','206'), ('23466','811','208','pon622','0','207'), ('23467','811','209','bridge','0','208'), ('23468','811','210','linegroup','0','209'), ('23469','811','211','voiceEMFGD','0','210'), ('23470','811','212','voiceFGDEANA','0','211'), ('23471','811','213','voiceDID','0','212'), ('23472','811','214','mpegTransport','0','213'), ('23473','811','215','sixToFour','0','214'), ('23474','811','216','gtp','0','215'), ('23475','811','217','pdnEtherLoop1','0','216'), ('23476','811','218','pdnEtherLoop2','0','217'), ('23477','811','219','opticalChannelGroup','0','218'), ('23478','811','220','homepna','0','219'), ('23479','811','221','gfp','0','220'), ('23480','811','222','ciscoISLvlan','0','221'), ('23481','811','223','actelisMetaLOOP','0','222'), ('23482','811','224','fcipLink','0','223'), ('23483','811','225','rpr','0','224'), ('23484','811','226','qam','0','225'), ('23485','811','227','lmp','0','226'), ('23486','811','228','cblVectaStar','0','227'), ('23487','811','229','docsCableMCmtsDownstream','0','228'), ('23488','811','230','adsl2','0','229'), ('23489','811','231','macSecControlledIF','0','230'), ('23490','811','232','macSecUncontrolledIF','0','231'), ('23491','811','233','aviciOpticalEther','0','232'), ('23492','811','234','atmbond','0','233'), ('23493','811','235','voiceFGDOS','0','234'), ('23494','811','236','mocaVersion1','0','235'), ('23495','811','237','ieee80216WMAN','0','236'), ('23496','811','238','adsl2plus','0','237'), ('23497','811','239','dvbRcsMacLayer','0','238'), ('23498','811','240','dvbTdm','0','239'), ('23499','811','241','dvbRcsTdma','0','240'), ('23500','811','242','x86Laps','0','241'), ('23501','811','243','wwanPP','0','242'), ('23502','811','244','wwanPP2','0','243'), ('23503','811','245','voiceEBS','0','244'), ('23504','811','246','ifPwType','0','245'), ('23505','811','247','ilan','0','246'), ('23506','811','248','pip','0','247'), ('23507','811','249','aluELP','0','248'), ('23508','811','250','gpon','0','249'), ('23509','811','251','vdsl2','0','250'), ('23510','811','252','capwapDot11Profile','0','251'), ('23511','811','253','capwapDot11Bss','0','252'), ('23512','811','254','capwapWtpVirtualRadio','0','253'), ('23513','811','255','bits','0','254'), ('23514','811','256','docsCableUpstreamRfPort','0','255'), ('23515','811','257','cableDownstreamRfPort','0','256'), ('23516','811','258','vmwareVirtualNic','0','257'), ('23517','811','259','ieee802154','0','258'), ('23518','811','260','otnOdu','0','259'), ('23519','811','261','otnOtu','0','260'), ('23520','811','262','ifVfiType','0','261'), ('23521','811','263','g9981','0','262'), ('23522','811','264','g9982','0','263'), ('23523','811','265','g9983','0','264'), ('23524','811','266','aluEpon','0','265'), ('23525','811','267','aluEponOnu','0','266'), ('23526','811','268','aluEponPhysicalUni','0','267'), ('23527','811','269','aluEponLogicalLink','0','268'), ('23528','811','270','aluGponOnu','0','269'), ('23529','811','271','aluGponPhysicalUni','0','270'), ('23530','811','272','vmwareNicTeam','0','271'), ('23531','811','277','docsOfdmDownstream','0','272'), ('23532','811','278','docsOfdmaUpstream','0','273'), ('23533','811','279','gfast','0','274'), ('23534','811','280','sdci','0','275'), ('23535','811','281','xboxWireless','0','276'), ('23536','811','282','fastdsl','0','277'), ('23537','811','283','docsCableScte55d1FwdOob','0','278'), ('23538','811','284','docsCableScte55d1RetOob','0','279'), ('23539','811','285','docsCableScte55d2DsOob','0','280'), ('23540','811','286','docsCableScte55d2UsOob','0','281'), ('23541','811','287','docsCableNdf','0','282'), ('23542','811','288','docsCableNdr','0','283'), ('23543','811','289','ptm','0','284'), ('23544','811','290','ghn','0','285'), ('23545','812','0','Down','0','0'), ('23546','812','1','Up','0','1'), ('23547','813','0','not available','0','0'), ('23548','813','1','available','0','1'), ('23549','813','2','unknown','0','2'), ('23550','814','1','up','0','0'), ('23551','814','2','down','0','1'), ('23552','814','4','unknown','0','2'), ('23553','814','5','dormant','0','3'), ('23554','814','6','notPresent','0','4'), ('23555','814','7','lowerLayerDown','0','5'), ('23556','815','1','other','0','0'), ('23557','815','2','regular1822','0','1'), ('23558','815','3','hdh1822','0','2'), ('23559','815','4','ddnX25','0','3'), ('23560','815','5','rfc877x25','0','4'), ('23561','815','6','ethernetCsmacd','0','5'), ('23562','815','7','iso88023Csmacd','0','6'), ('23563','815','8','iso88024TokenBus','0','7'), ('23564','815','9','iso88025TokenRing','0','8'), ('23565','815','10','iso88026Man','0','9'), ('23566','815','11','starLan','0','10'), ('23567','815','12','proteon10Mbit','0','11'), ('23568','815','13','proteon80Mbit','0','12'), ('23569','815','14','hyperchannel','0','13'), ('23570','815','15','fddi','0','14'), ('23571','815','16','lapb','0','15'), ('23572','815','17','sdlc','0','16'), ('23573','815','18','ds1','0','17'), ('23574','815','19','e1','0','18'), ('23575','815','20','basicISDN','0','19'), ('23576','815','21','primaryISDN','0','20'), ('23577','815','22','propPointToPointSerial','0','21'), ('23578','815','23','ppp','0','22'), ('23579','815','24','softwareLoopback','0','23'), ('23580','815','25','eon','0','24'), ('23581','815','26','ethernet3Mbit','0','25'), ('23582','815','27','nsip','0','26'), ('23583','815','28','slip','0','27'), ('23584','815','29','ultra','0','28'), ('23585','815','30','ds3','0','29'), ('23586','815','31','sip','0','30'), ('23587','815','32','frameRelay','0','31'), ('23588','815','33','rs232','0','32'), ('23589','815','34','para','0','33'), ('23590','815','35','arcnet','0','34'), ('23591','815','36','arcnetPlus','0','35'), ('23592','815','37','atm','0','36'), ('23593','815','38','miox25','0','37'), ('23594','815','39','sonet','0','38'), ('23595','815','40','x25ple','0','39'), ('23596','815','41','iso88022llc','0','40'), ('23597','815','42','localTalk','0','41'), ('23598','815','43','smdsDxi','0','42'), ('23599','815','44','frameRelayService','0','43'), ('23600','815','45','v35','0','44'), ('23601','815','46','hssi','0','45'), ('23602','815','47','hippi','0','46'), ('23603','815','48','modem','0','47'), ('23604','815','49','aal5','0','48'), ('23605','815','50','sonetPath','0','49'), ('23606','815','51','sonetVT','0','50'), ('23607','815','52','smdsIcip','0','51'), ('23608','815','53','propVirtual','0','52'), ('23609','815','54','propMultiplexor','0','53'), ('23610','815','55','ieee80212','0','54'), ('23611','815','56','fibreChannel','0','55'), ('23612','815','57','hippiInterface','0','56'), ('23613','815','58','frameRelayInterconnect','0','57'), ('23614','815','59','aflane8023','0','58'), ('23615','815','60','aflane8025','0','59'), ('23616','815','61','cctEmul','0','60'), ('23617','815','62','fastEther','0','61'), ('23618','815','63','isdn','0','62'), ('23619','815','64','v11','0','63'), ('23620','815','65','v36','0','64'), ('23621','815','66','g703at64k','0','65'), ('23622','815','67','g703at2mb','0','66'), ('23623','815','68','qllc','0','67'), ('23624','815','69','fastEtherFX','0','68'), ('23625','815','70','channel','0','69'), ('23626','815','71','ieee80211','0','70'), ('23627','815','72','ibm370parChan','0','71'), ('23628','815','73','escon','0','72'), ('23629','815','74','dlsw','0','73'), ('23630','815','75','isdns','0','74'), ('23631','815','76','isdnu','0','75'), ('23632','815','77','lapd','0','76'), ('23633','815','78','ipSwitch','0','77'), ('23634','815','79','rsrb','0','78'), ('23635','815','80','atmLogical','0','79'), ('23636','815','81','ds0','0','80'), ('23637','815','82','ds0Bundle','0','81'), ('23638','815','83','bsc','0','82'), ('23639','815','84','async','0','83'), ('23640','815','85','cnr','0','84'), ('23641','815','86','iso88025Dtr','0','85'), ('23642','815','87','eplrs','0','86'), ('23643','815','88','arap','0','87'), ('23644','815','89','propCnls','0','88'), ('23645','815','90','hostPad','0','89'), ('23646','815','91','termPad','0','90'), ('23647','815','92','frameRelayMPI','0','91'), ('23648','815','93','x213','0','92'), ('23649','815','94','adsl','0','93'), ('23650','815','95','radsl','0','94'), ('23651','815','96','sdsl','0','95'), ('23652','815','97','vdsl','0','96'), ('23653','815','98','iso88025CRFPInt','0','97'), ('23654','815','99','myrinet','0','98'), ('23655','815','100','voiceEM','0','99'), ('23656','815','101','voiceFXO','0','100'), ('23657','815','102','voiceFXS','0','101'), ('23658','815','103','voiceEncap','0','102'), ('23659','815','104','voiceOverIp','0','103'), ('23660','815','105','atmDxi','0','104'), ('23661','815','106','atmFuni','0','105'), ('23662','815','107','atmIma','0','106'), ('23663','815','108','pppMultilinkBundle','0','107'), ('23664','815','109','ipOverCdlc','0','108'), ('23665','815','110','ipOverClaw','0','109'), ('23666','815','111','stackToStack','0','110'), ('23667','815','112','virtualIpAddress','0','111'), ('23668','815','113','mpc','0','112'), ('23669','815','114','ipOverAtm','0','113'), ('23670','815','115','iso88025Fiber','0','114'), ('23671','815','116','tdlc','0','115'), ('23672','815','117','gigabitEthernet','0','116'), ('23673','815','118','hdlc','0','117'), ('23674','815','119','lapf','0','118'), ('23675','815','120','v37','0','119'), ('23676','815','121','x25mlp','0','120'), ('23677','815','122','x25huntGroup','0','121'), ('23678','815','123','trasnpHdlc','0','122'), ('23679','815','124','interleave','0','123'), ('23680','815','125','fast','0','124'), ('23681','815','126','ip','0','125'), ('23682','815','127','docsCableMaclayer','0','126'), ('23683','815','128','docsCableDownstream','0','127'), ('23684','815','129','docsCableUpstream','0','128'), ('23685','815','130','a12MppSwitch','0','129'), ('23686','815','131','tunnel','0','130'), ('23687','815','132','coffee','0','131'), ('23688','815','133','ces','0','132'), ('23689','815','134','atmSubInterface','0','133'), ('23690','815','135','l2vlan','0','134'), ('23691','815','136','l3ipvlan','0','135'), ('23692','815','137','l3ipxvlan','0','136'), ('23693','815','138','digitalPowerline','0','137'), ('23694','815','139','mediaMailOverIp','0','138'), ('23695','815','140','dtm','0','139'), ('23696','815','141','dcn','0','140'), ('23697','815','142','ipForward','0','141'), ('23698','815','143','msdsl','0','142'), ('23699','815','144','ieee1394','0','143'), ('23700','815','145','if-gsn','0','144'), ('23701','815','146','dvbRccMacLayer','0','145'), ('23702','815','147','dvbRccDownstream','0','146'), ('23703','815','148','dvbRccUpstream','0','147'), ('23704','815','149','atmVirtual','0','148'), ('23705','815','150','mplsTunnel','0','149'), ('23706','815','151','srp','0','150'), ('23707','815','152','voiceOverAtm','0','151'), ('23708','815','153','voiceOverFrameRelay','0','152'), ('23709','815','154','idsl','0','153'), ('23710','815','155','compositeLink','0','154'), ('23711','815','156','ss7SigLink','0','155'), ('23712','815','157','propWirelessP2P','0','156'), ('23713','815','158','frForward','0','157'), ('23714','815','159','rfc1483','0','158'), ('23715','815','160','usb','0','159'), ('23716','815','161','ieee8023adLag','0','160'), ('23717','815','162','bgppolicyaccounting','0','161'), ('23718','815','163','frf16MfrBundle','0','162'), ('23719','815','164','h323Gatekeeper','0','163'), ('23720','815','165','h323Proxy','0','164'), ('23721','815','166','mpls','0','165'), ('23722','815','167','mfSigLink','0','166'), ('23723','815','168','hdsl2','0','167'), ('23724','815','169','shdsl','0','168'), ('23725','815','170','ds1FDL','0','169'), ('23726','815','171','pos','0','170'), ('23727','815','172','dvbAsiIn','0','171'), ('23728','815','173','dvbAsiOut','0','172'), ('23729','815','174','plc','0','173'), ('23730','815','175','nfas','0','174'), ('23731','815','176','tr008','0','175'), ('23732','815','177','gr303RDT','0','176'), ('23733','815','178','gr303IDT','0','177'), ('23734','815','179','isup','0','178'), ('23735','815','180','propDocsWirelessMaclayer','0','179'), ('23736','815','181','propDocsWirelessDownstream','0','180'), ('23737','815','182','propDocsWirelessUpstream','0','181'), ('23738','815','183','hiperlan2','0','182'), ('23739','815','184','propBWAp2Mp','0','183'), ('23740','815','185','sonetOverheadChannel','0','184'), ('23741','815','186','digitalWrapperOverheadChannel','0','185'), ('23742','815','187','aal2','0','186'), ('23743','815','188','radioMAC','0','187'), ('23744','815','189','atmRadio','0','188'), ('23745','815','190','imt','0','189'), ('23746','815','191','mvl','0','190'), ('23747','815','192','reachDSL','0','191'), ('23748','815','193','frDlciEndPt','0','192'), ('23749','815','194','atmVciEndPt','0','193'), ('23750','815','195','opticalChannel','0','194'), ('23751','815','196','opticalTransport','0','195'), ('23752','815','197','propAtm','0','196'), ('23753','815','198','voiceOverCable','0','197'), ('23754','815','199','infiniband','0','198'), ('23755','815','200','teLink','0','199'), ('23756','815','201','q2931','0','200'), ('23757','815','202','virtualTg','0','201'), ('23758','815','203','sipTg','0','202'), ('23759','815','204','sipSig','0','203'), ('23760','815','205','docsCableUpstreamChannel','0','204'), ('23761','815','206','econet','0','205'), ('23762','815','207','pon155','0','206'), ('23763','815','208','pon622','0','207'), ('23764','815','209','bridge','0','208'), ('23765','815','210','linegroup','0','209'), ('23766','815','211','voiceEMFGD','0','210'), ('23767','815','212','voiceFGDEANA','0','211'), ('23768','815','213','voiceDID','0','212'), ('23769','815','214','mpegTransport','0','213'), ('23770','815','215','sixToFour','0','214'), ('23771','815','216','gtp','0','215'), ('23772','815','217','pdnEtherLoop1','0','216'), ('23773','815','218','pdnEtherLoop2','0','217'), ('23774','815','219','opticalChannelGroup','0','218'), ('23775','815','220','homepna','0','219'), ('23776','815','221','gfp','0','220'), ('23777','815','222','ciscoISLvlan','0','221'), ('23778','815','223','actelisMetaLOOP','0','222'), ('23779','815','224','fcipLink','0','223'), ('23780','815','225','rpr','0','224'), ('23781','815','226','qam','0','225'), ('23782','815','227','lmp','0','226'), ('23783','815','228','cblVectaStar','0','227'), ('23784','815','229','docsCableMCmtsDownstream','0','228'), ('23785','815','230','adsl2','0','229'), ('23786','815','231','macSecControlledIF','0','230'), ('23787','815','232','macSecUncontrolledIF','0','231'), ('23788','815','233','aviciOpticalEther','0','232'), ('23789','815','234','atmbond','0','233'), ('23790','815','235','voiceFGDOS','0','234'), ('23791','815','236','mocaVersion1','0','235'), ('23792','815','237','ieee80216WMAN','0','236'), ('23793','815','238','adsl2plus','0','237'), ('23794','815','239','dvbRcsMacLayer','0','238'), ('23795','815','240','dvbTdm','0','239'), ('23796','815','241','dvbRcsTdma','0','240'), ('23797','815','242','x86Laps','0','241'), ('23798','815','243','wwanPP','0','242'), ('23799','815','244','wwanPP2','0','243'), ('23800','815','245','voiceEBS','0','244'), ('23801','815','246','ifPwType','0','245'), ('23802','815','247','ilan','0','246'), ('23803','815','248','pip','0','247'), ('23804','815','249','aluELP','0','248'), ('23805','815','250','gpon','0','249'), ('23806','815','251','vdsl2','0','250'), ('23807','815','252','capwapDot11Profile','0','251'), ('23808','815','253','capwapDot11Bss','0','252'), ('23809','815','254','capwapWtpVirtualRadio','0','253'), ('23810','815','255','bits','0','254'), ('23811','815','256','docsCableUpstreamRfPort','0','255'), ('23812','815','257','cableDownstreamRfPort','0','256'), ('23813','815','258','vmwareVirtualNic','0','257'), ('23814','815','259','ieee802154','0','258'), ('23815','815','260','otnOdu','0','259'), ('23816','815','261','otnOtu','0','260'), ('23817','815','262','ifVfiType','0','261'), ('23818','815','263','g9981','0','262'), ('23819','815','264','g9982','0','263'), ('23820','815','265','g9983','0','264'), ('23821','815','266','aluEpon','0','265'), ('23822','815','267','aluEponOnu','0','266'), ('23823','815','268','aluEponPhysicalUni','0','267'), ('23824','815','269','aluEponLogicalLink','0','268'), ('23825','815','270','aluGponOnu','0','269'), ('23826','815','271','aluGponPhysicalUni','0','270'), ('23827','815','272','vmwareNicTeam','0','271'), ('23828','815','277','docsOfdmDownstream','0','272'), ('23829','815','278','docsOfdmaUpstream','0','273'), ('23830','815','279','gfast','0','274'), ('23831','815','280','sdci','0','275'), ('23832','815','281','xboxWireless','0','276'), ('23833','815','282','fastdsl','0','277'), ('23834','815','283','docsCableScte55d1FwdOob','0','278'), ('23835','815','284','docsCableScte55d1RetOob','0','279'), ('23836','815','285','docsCableScte55d2DsOob','0','280'), ('23837','815','286','docsCableScte55d2UsOob','0','281'), ('23838','815','287','docsCableNdf','0','282'), ('23839','815','288','docsCableNdr','0','283'), ('23840','815','289','ptm','0','284'), ('23841','815','290','ghn','0','285'), ('23842','816','0','Down','0','0'), ('23843','816','1','Up','0','1'), ('23844','817','0','not available','0','0'), ('23845','817','1','available','0','1'), ('23846','817','2','unknown','0','2'), ('23847','818','1','up','0','0'), ('23848','818','2','down','0','1'), ('23849','818','4','unknown','0','2'), ('23850','818','5','dormant','0','3'), ('23851','818','6','notPresent','0','4'), ('23852','818','7','lowerLayerDown','0','5'), ('23853','819','1','other','0','0'), ('23854','819','2','regular1822','0','1'), ('23855','819','3','hdh1822','0','2'), ('23856','819','4','ddnX25','0','3'), ('23857','819','5','rfc877x25','0','4'), ('23858','819','6','ethernetCsmacd','0','5'), ('23859','819','7','iso88023Csmacd','0','6'), ('23860','819','8','iso88024TokenBus','0','7'), ('23861','819','9','iso88025TokenRing','0','8'), ('23862','819','10','iso88026Man','0','9'), ('23863','819','11','starLan','0','10'), ('23864','819','12','proteon10Mbit','0','11'), ('23865','819','13','proteon80Mbit','0','12'), ('23866','819','14','hyperchannel','0','13'), ('23867','819','15','fddi','0','14'), ('23868','819','16','lapb','0','15'), ('23869','819','17','sdlc','0','16'), ('23870','819','18','ds1','0','17'), ('23871','819','19','e1','0','18'), ('23872','819','20','basicISDN','0','19'), ('23873','819','21','primaryISDN','0','20'), ('23874','819','22','propPointToPointSerial','0','21'), ('23875','819','23','ppp','0','22'), ('23876','819','24','softwareLoopback','0','23'), ('23877','819','25','eon','0','24'), ('23878','819','26','ethernet3Mbit','0','25'), ('23879','819','27','nsip','0','26'), ('23880','819','28','slip','0','27'), ('23881','819','29','ultra','0','28'), ('23882','819','30','ds3','0','29'), ('23883','819','31','sip','0','30'), ('23884','819','32','frameRelay','0','31'), ('23885','819','33','rs232','0','32'), ('23886','819','34','para','0','33'), ('23887','819','35','arcnet','0','34'), ('23888','819','36','arcnetPlus','0','35'), ('23889','819','37','atm','0','36'), ('23890','819','38','miox25','0','37'), ('23891','819','39','sonet','0','38'), ('23892','819','40','x25ple','0','39'), ('23893','819','41','iso88022llc','0','40'), ('23894','819','42','localTalk','0','41'), ('23895','819','43','smdsDxi','0','42'), ('23896','819','44','frameRelayService','0','43'), ('23897','819','45','v35','0','44'), ('23898','819','46','hssi','0','45'), ('23899','819','47','hippi','0','46'), ('23900','819','48','modem','0','47'), ('23901','819','49','aal5','0','48'), ('23902','819','50','sonetPath','0','49'), ('23903','819','51','sonetVT','0','50'), ('23904','819','52','smdsIcip','0','51'), ('23905','819','53','propVirtual','0','52'), ('23906','819','54','propMultiplexor','0','53'), ('23907','819','55','ieee80212','0','54'), ('23908','819','56','fibreChannel','0','55'), ('23909','819','57','hippiInterface','0','56'), ('23910','819','58','frameRelayInterconnect','0','57'), ('23911','819','59','aflane8023','0','58'), ('23912','819','60','aflane8025','0','59'), ('23913','819','61','cctEmul','0','60'), ('23914','819','62','fastEther','0','61'), ('23915','819','63','isdn','0','62'), ('23916','819','64','v11','0','63'), ('23917','819','65','v36','0','64'), ('23918','819','66','g703at64k','0','65'), ('23919','819','67','g703at2mb','0','66'), ('23920','819','68','qllc','0','67'), ('23921','819','69','fastEtherFX','0','68'), ('23922','819','70','channel','0','69'), ('23923','819','71','ieee80211','0','70'), ('23924','819','72','ibm370parChan','0','71'), ('23925','819','73','escon','0','72'), ('23926','819','74','dlsw','0','73'), ('23927','819','75','isdns','0','74'), ('23928','819','76','isdnu','0','75'), ('23929','819','77','lapd','0','76'), ('23930','819','78','ipSwitch','0','77'), ('23931','819','79','rsrb','0','78'), ('23932','819','80','atmLogical','0','79'), ('23933','819','81','ds0','0','80'), ('23934','819','82','ds0Bundle','0','81'), ('23935','819','83','bsc','0','82'), ('23936','819','84','async','0','83'), ('23937','819','85','cnr','0','84'), ('23938','819','86','iso88025Dtr','0','85'), ('23939','819','87','eplrs','0','86'), ('23940','819','88','arap','0','87'), ('23941','819','89','propCnls','0','88'), ('23942','819','90','hostPad','0','89'), ('23943','819','91','termPad','0','90'), ('23944','819','92','frameRelayMPI','0','91'), ('23945','819','93','x213','0','92'), ('23946','819','94','adsl','0','93'), ('23947','819','95','radsl','0','94'), ('23948','819','96','sdsl','0','95'), ('23949','819','97','vdsl','0','96'), ('23950','819','98','iso88025CRFPInt','0','97'), ('23951','819','99','myrinet','0','98'), ('23952','819','100','voiceEM','0','99'), ('23953','819','101','voiceFXO','0','100'), ('23954','819','102','voiceFXS','0','101'), ('23955','819','103','voiceEncap','0','102'), ('23956','819','104','voiceOverIp','0','103'), ('23957','819','105','atmDxi','0','104'), ('23958','819','106','atmFuni','0','105'), ('23959','819','107','atmIma','0','106'), ('23960','819','108','pppMultilinkBundle','0','107'), ('23961','819','109','ipOverCdlc','0','108'), ('23962','819','110','ipOverClaw','0','109'), ('23963','819','111','stackToStack','0','110'), ('23964','819','112','virtualIpAddress','0','111'), ('23965','819','113','mpc','0','112'), ('23966','819','114','ipOverAtm','0','113'), ('23967','819','115','iso88025Fiber','0','114'), ('23968','819','116','tdlc','0','115'), ('23969','819','117','gigabitEthernet','0','116'), ('23970','819','118','hdlc','0','117'), ('23971','819','119','lapf','0','118'), ('23972','819','120','v37','0','119'), ('23973','819','121','x25mlp','0','120'), ('23974','819','122','x25huntGroup','0','121'), ('23975','819','123','trasnpHdlc','0','122'), ('23976','819','124','interleave','0','123'), ('23977','819','125','fast','0','124'), ('23978','819','126','ip','0','125'), ('23979','819','127','docsCableMaclayer','0','126'), ('23980','819','128','docsCableDownstream','0','127'), ('23981','819','129','docsCableUpstream','0','128'), ('23982','819','130','a12MppSwitch','0','129'), ('23983','819','131','tunnel','0','130'), ('23984','819','132','coffee','0','131'), ('23985','819','133','ces','0','132'), ('23986','819','134','atmSubInterface','0','133'), ('23987','819','135','l2vlan','0','134'), ('23988','819','136','l3ipvlan','0','135'), ('23989','819','137','l3ipxvlan','0','136'), ('23990','819','138','digitalPowerline','0','137'), ('23991','819','139','mediaMailOverIp','0','138'), ('23992','819','140','dtm','0','139'), ('23993','819','141','dcn','0','140'), ('23994','819','142','ipForward','0','141'), ('23995','819','143','msdsl','0','142'), ('23996','819','144','ieee1394','0','143'), ('23997','819','145','if-gsn','0','144'), ('23998','819','146','dvbRccMacLayer','0','145'), ('23999','819','147','dvbRccDownstream','0','146'), ('24000','819','148','dvbRccUpstream','0','147'), ('24001','819','149','atmVirtual','0','148'), ('24002','819','150','mplsTunnel','0','149'), ('24003','819','151','srp','0','150'), ('24004','819','152','voiceOverAtm','0','151'), ('24005','819','153','voiceOverFrameRelay','0','152'), ('24006','819','154','idsl','0','153'), ('24007','819','155','compositeLink','0','154'), ('24008','819','156','ss7SigLink','0','155'), ('24009','819','157','propWirelessP2P','0','156'), ('24010','819','158','frForward','0','157'), ('24011','819','159','rfc1483','0','158'), ('24012','819','160','usb','0','159'), ('24013','819','161','ieee8023adLag','0','160'), ('24014','819','162','bgppolicyaccounting','0','161'), ('24015','819','163','frf16MfrBundle','0','162'), ('24016','819','164','h323Gatekeeper','0','163'), ('24017','819','165','h323Proxy','0','164'), ('24018','819','166','mpls','0','165'), ('24019','819','167','mfSigLink','0','166'), ('24020','819','168','hdsl2','0','167'), ('24021','819','169','shdsl','0','168'), ('24022','819','170','ds1FDL','0','169'), ('24023','819','171','pos','0','170'), ('24024','819','172','dvbAsiIn','0','171'), ('24025','819','173','dvbAsiOut','0','172'), ('24026','819','174','plc','0','173'), ('24027','819','175','nfas','0','174'), ('24028','819','176','tr008','0','175'), ('24029','819','177','gr303RDT','0','176'), ('24030','819','178','gr303IDT','0','177'), ('24031','819','179','isup','0','178'), ('24032','819','180','propDocsWirelessMaclayer','0','179'), ('24033','819','181','propDocsWirelessDownstream','0','180'), ('24034','819','182','propDocsWirelessUpstream','0','181'), ('24035','819','183','hiperlan2','0','182'), ('24036','819','184','propBWAp2Mp','0','183'), ('24037','819','185','sonetOverheadChannel','0','184'), ('24038','819','186','digitalWrapperOverheadChannel','0','185'), ('24039','819','187','aal2','0','186'), ('24040','819','188','radioMAC','0','187'), ('24041','819','189','atmRadio','0','188'), ('24042','819','190','imt','0','189'), ('24043','819','191','mvl','0','190'), ('24044','819','192','reachDSL','0','191'), ('24045','819','193','frDlciEndPt','0','192'), ('24046','819','194','atmVciEndPt','0','193'), ('24047','819','195','opticalChannel','0','194'), ('24048','819','196','opticalTransport','0','195'), ('24049','819','197','propAtm','0','196'), ('24050','819','198','voiceOverCable','0','197'), ('24051','819','199','infiniband','0','198'), ('24052','819','200','teLink','0','199'), ('24053','819','201','q2931','0','200'), ('24054','819','202','virtualTg','0','201'), ('24055','819','203','sipTg','0','202'), ('24056','819','204','sipSig','0','203'), ('24057','819','205','docsCableUpstreamChannel','0','204'), ('24058','819','206','econet','0','205'), ('24059','819','207','pon155','0','206'), ('24060','819','208','pon622','0','207'), ('24061','819','209','bridge','0','208'), ('24062','819','210','linegroup','0','209'), ('24063','819','211','voiceEMFGD','0','210'), ('24064','819','212','voiceFGDEANA','0','211'), ('24065','819','213','voiceDID','0','212'), ('24066','819','214','mpegTransport','0','213'), ('24067','819','215','sixToFour','0','214'), ('24068','819','216','gtp','0','215'), ('24069','819','217','pdnEtherLoop1','0','216'), ('24070','819','218','pdnEtherLoop2','0','217'), ('24071','819','219','opticalChannelGroup','0','218'), ('24072','819','220','homepna','0','219'), ('24073','819','221','gfp','0','220'), ('24074','819','222','ciscoISLvlan','0','221'), ('24075','819','223','actelisMetaLOOP','0','222'), ('24076','819','224','fcipLink','0','223'), ('24077','819','225','rpr','0','224'), ('24078','819','226','qam','0','225'), ('24079','819','227','lmp','0','226'), ('24080','819','228','cblVectaStar','0','227'), ('24081','819','229','docsCableMCmtsDownstream','0','228'), ('24082','819','230','adsl2','0','229'), ('24083','819','231','macSecControlledIF','0','230'), ('24084','819','232','macSecUncontrolledIF','0','231'), ('24085','819','233','aviciOpticalEther','0','232'), ('24086','819','234','atmbond','0','233'), ('24087','819','235','voiceFGDOS','0','234'), ('24088','819','236','mocaVersion1','0','235'), ('24089','819','237','ieee80216WMAN','0','236'), ('24090','819','238','adsl2plus','0','237'), ('24091','819','239','dvbRcsMacLayer','0','238'), ('24092','819','240','dvbTdm','0','239'), ('24093','819','241','dvbRcsTdma','0','240'), ('24094','819','242','x86Laps','0','241'), ('24095','819','243','wwanPP','0','242'), ('24096','819','244','wwanPP2','0','243'), ('24097','819','245','voiceEBS','0','244'), ('24098','819','246','ifPwType','0','245'), ('24099','819','247','ilan','0','246'), ('24100','819','248','pip','0','247'), ('24101','819','249','aluELP','0','248'), ('24102','819','250','gpon','0','249'), ('24103','819','251','vdsl2','0','250'), ('24104','819','252','capwapDot11Profile','0','251'), ('24105','819','253','capwapDot11Bss','0','252'), ('24106','819','254','capwapWtpVirtualRadio','0','253'), ('24107','819','255','bits','0','254'), ('24108','819','256','docsCableUpstreamRfPort','0','255'), ('24109','819','257','cableDownstreamRfPort','0','256'), ('24110','819','258','vmwareVirtualNic','0','257'), ('24111','819','259','ieee802154','0','258'), ('24112','819','260','otnOdu','0','259'), ('24113','819','261','otnOtu','0','260'), ('24114','819','262','ifVfiType','0','261'), ('24115','819','263','g9981','0','262'), ('24116','819','264','g9982','0','263'), ('24117','819','265','g9983','0','264'), ('24118','819','266','aluEpon','0','265'), ('24119','819','267','aluEponOnu','0','266'), ('24120','819','268','aluEponPhysicalUni','0','267'), ('24121','819','269','aluEponLogicalLink','0','268'), ('24122','819','270','aluGponOnu','0','269'), ('24123','819','271','aluGponPhysicalUni','0','270'), ('24124','819','272','vmwareNicTeam','0','271'), ('24125','819','277','docsOfdmDownstream','0','272'), ('24126','819','278','docsOfdmaUpstream','0','273'), ('24127','819','279','gfast','0','274'), ('24128','819','280','sdci','0','275'), ('24129','819','281','xboxWireless','0','276'), ('24130','819','282','fastdsl','0','277'), ('24131','819','283','docsCableScte55d1FwdOob','0','278'), ('24132','819','284','docsCableScte55d1RetOob','0','279'), ('24133','819','285','docsCableScte55d2DsOob','0','280'), ('24134','819','286','docsCableScte55d2UsOob','0','281'), ('24135','819','287','docsCableNdf','0','282'), ('24136','819','288','docsCableNdr','0','283'), ('24137','819','289','ptm','0','284'), ('24138','819','290','ghn','0','285'), ('24139','820','0','Down','0','0'), ('24140','820','1','Up','0','1'), ('24141','821','0','not available','0','0'), ('24142','821','1','available','0','1'), ('24143','821','2','unknown','0','2'), ('24144','822','1','up','0','0'), ('24145','822','2','down','0','1'), ('24146','822','4','unknown','0','2'), ('24147','822','5','dormant','0','3'), ('24148','822','6','notPresent','0','4'), ('24149','822','7','lowerLayerDown','0','5'), ('24150','823','1','other','0','0'), ('24151','823','2','regular1822','0','1'), ('24152','823','3','hdh1822','0','2'), ('24153','823','4','ddnX25','0','3'), ('24154','823','5','rfc877x25','0','4'), ('24155','823','6','ethernetCsmacd','0','5'), ('24156','823','7','iso88023Csmacd','0','6'), ('24157','823','8','iso88024TokenBus','0','7'), ('24158','823','9','iso88025TokenRing','0','8'), ('24159','823','10','iso88026Man','0','9'), ('24160','823','11','starLan','0','10'), ('24161','823','12','proteon10Mbit','0','11'), ('24162','823','13','proteon80Mbit','0','12'), ('24163','823','14','hyperchannel','0','13'), ('24164','823','15','fddi','0','14'), ('24165','823','16','lapb','0','15'), ('24166','823','17','sdlc','0','16'), ('24167','823','18','ds1','0','17'), ('24168','823','19','e1','0','18'), ('24169','823','20','basicISDN','0','19'), ('24170','823','21','primaryISDN','0','20'), ('24171','823','22','propPointToPointSerial','0','21'), ('24172','823','23','ppp','0','22'), ('24173','823','24','softwareLoopback','0','23'), ('24174','823','25','eon','0','24'), ('24175','823','26','ethernet3Mbit','0','25'), ('24176','823','27','nsip','0','26'), ('24177','823','28','slip','0','27'), ('24178','823','29','ultra','0','28'), ('24179','823','30','ds3','0','29'), ('24180','823','31','sip','0','30'), ('24181','823','32','frameRelay','0','31'), ('24182','823','33','rs232','0','32'), ('24183','823','34','para','0','33'), ('24184','823','35','arcnet','0','34'), ('24185','823','36','arcnetPlus','0','35'), ('24186','823','37','atm','0','36'), ('24187','823','38','miox25','0','37'), ('24188','823','39','sonet','0','38'), ('24189','823','40','x25ple','0','39'), ('24190','823','41','iso88022llc','0','40'), ('24191','823','42','localTalk','0','41'), ('24192','823','43','smdsDxi','0','42'), ('24193','823','44','frameRelayService','0','43'), ('24194','823','45','v35','0','44'), ('24195','823','46','hssi','0','45'), ('24196','823','47','hippi','0','46'), ('24197','823','48','modem','0','47'), ('24198','823','49','aal5','0','48'), ('24199','823','50','sonetPath','0','49'), ('24200','823','51','sonetVT','0','50'), ('24201','823','52','smdsIcip','0','51'), ('24202','823','53','propVirtual','0','52'), ('24203','823','54','propMultiplexor','0','53'), ('24204','823','55','ieee80212','0','54'), ('24205','823','56','fibreChannel','0','55'), ('24206','823','57','hippiInterface','0','56'), ('24207','823','58','frameRelayInterconnect','0','57'), ('24208','823','59','aflane8023','0','58'), ('24209','823','60','aflane8025','0','59'), ('24210','823','61','cctEmul','0','60'), ('24211','823','62','fastEther','0','61'), ('24212','823','63','isdn','0','62'), ('24213','823','64','v11','0','63'), ('24214','823','65','v36','0','64'), ('24215','823','66','g703at64k','0','65'), ('24216','823','67','g703at2mb','0','66'), ('24217','823','68','qllc','0','67'), ('24218','823','69','fastEtherFX','0','68'), ('24219','823','70','channel','0','69'), ('24220','823','71','ieee80211','0','70'), ('24221','823','72','ibm370parChan','0','71'), ('24222','823','73','escon','0','72'), ('24223','823','74','dlsw','0','73'), ('24224','823','75','isdns','0','74'), ('24225','823','76','isdnu','0','75'), ('24226','823','77','lapd','0','76'), ('24227','823','78','ipSwitch','0','77'), ('24228','823','79','rsrb','0','78'), ('24229','823','80','atmLogical','0','79'), ('24230','823','81','ds0','0','80'), ('24231','823','82','ds0Bundle','0','81'), ('24232','823','83','bsc','0','82'), ('24233','823','84','async','0','83'), ('24234','823','85','cnr','0','84'), ('24235','823','86','iso88025Dtr','0','85'), ('24236','823','87','eplrs','0','86'), ('24237','823','88','arap','0','87'), ('24238','823','89','propCnls','0','88'), ('24239','823','90','hostPad','0','89'), ('24240','823','91','termPad','0','90'), ('24241','823','92','frameRelayMPI','0','91'), ('24242','823','93','x213','0','92'), ('24243','823','94','adsl','0','93'), ('24244','823','95','radsl','0','94'), ('24245','823','96','sdsl','0','95'), ('24246','823','97','vdsl','0','96'), ('24247','823','98','iso88025CRFPInt','0','97'), ('24248','823','99','myrinet','0','98'), ('24249','823','100','voiceEM','0','99'), ('24250','823','101','voiceFXO','0','100'), ('24251','823','102','voiceFXS','0','101'), ('24252','823','103','voiceEncap','0','102'), ('24253','823','104','voiceOverIp','0','103'), ('24254','823','105','atmDxi','0','104'), ('24255','823','106','atmFuni','0','105'), ('24256','823','107','atmIma','0','106'), ('24257','823','108','pppMultilinkBundle','0','107'), ('24258','823','109','ipOverCdlc','0','108'), ('24259','823','110','ipOverClaw','0','109'), ('24260','823','111','stackToStack','0','110'), ('24261','823','112','virtualIpAddress','0','111'), ('24262','823','113','mpc','0','112'), ('24263','823','114','ipOverAtm','0','113'), ('24264','823','115','iso88025Fiber','0','114'), ('24265','823','116','tdlc','0','115'), ('24266','823','117','gigabitEthernet','0','116'), ('24267','823','118','hdlc','0','117'), ('24268','823','119','lapf','0','118'), ('24269','823','120','v37','0','119'), ('24270','823','121','x25mlp','0','120'), ('24271','823','122','x25huntGroup','0','121'), ('24272','823','123','trasnpHdlc','0','122'), ('24273','823','124','interleave','0','123'), ('24274','823','125','fast','0','124'), ('24275','823','126','ip','0','125'), ('24276','823','127','docsCableMaclayer','0','126'), ('24277','823','128','docsCableDownstream','0','127'), ('24278','823','129','docsCableUpstream','0','128'), ('24279','823','130','a12MppSwitch','0','129'), ('24280','823','131','tunnel','0','130'), ('24281','823','132','coffee','0','131'), ('24282','823','133','ces','0','132'), ('24283','823','134','atmSubInterface','0','133'), ('24284','823','135','l2vlan','0','134'), ('24285','823','136','l3ipvlan','0','135'), ('24286','823','137','l3ipxvlan','0','136'), ('24287','823','138','digitalPowerline','0','137'), ('24288','823','139','mediaMailOverIp','0','138'), ('24289','823','140','dtm','0','139'), ('24290','823','141','dcn','0','140'), ('24291','823','142','ipForward','0','141'), ('24292','823','143','msdsl','0','142'), ('24293','823','144','ieee1394','0','143'), ('24294','823','145','if-gsn','0','144'), ('24295','823','146','dvbRccMacLayer','0','145'), ('24296','823','147','dvbRccDownstream','0','146'), ('24297','823','148','dvbRccUpstream','0','147'), ('24298','823','149','atmVirtual','0','148'), ('24299','823','150','mplsTunnel','0','149'), ('24300','823','151','srp','0','150'), ('24301','823','152','voiceOverAtm','0','151'), ('24302','823','153','voiceOverFrameRelay','0','152'), ('24303','823','154','idsl','0','153'), ('24304','823','155','compositeLink','0','154'), ('24305','823','156','ss7SigLink','0','155'), ('24306','823','157','propWirelessP2P','0','156'), ('24307','823','158','frForward','0','157'), ('24308','823','159','rfc1483','0','158'), ('24309','823','160','usb','0','159'), ('24310','823','161','ieee8023adLag','0','160'), ('24311','823','162','bgppolicyaccounting','0','161'), ('24312','823','163','frf16MfrBundle','0','162'), ('24313','823','164','h323Gatekeeper','0','163'), ('24314','823','165','h323Proxy','0','164'), ('24315','823','166','mpls','0','165'), ('24316','823','167','mfSigLink','0','166'), ('24317','823','168','hdsl2','0','167'), ('24318','823','169','shdsl','0','168'), ('24319','823','170','ds1FDL','0','169'), ('24320','823','171','pos','0','170'), ('24321','823','172','dvbAsiIn','0','171'), ('24322','823','173','dvbAsiOut','0','172'), ('24323','823','174','plc','0','173'), ('24324','823','175','nfas','0','174'), ('24325','823','176','tr008','0','175'), ('24326','823','177','gr303RDT','0','176'), ('24327','823','178','gr303IDT','0','177'), ('24328','823','179','isup','0','178'), ('24329','823','180','propDocsWirelessMaclayer','0','179'), ('24330','823','181','propDocsWirelessDownstream','0','180'), ('24331','823','182','propDocsWirelessUpstream','0','181'), ('24332','823','183','hiperlan2','0','182'), ('24333','823','184','propBWAp2Mp','0','183'), ('24334','823','185','sonetOverheadChannel','0','184'), ('24335','823','186','digitalWrapperOverheadChannel','0','185'), ('24336','823','187','aal2','0','186'), ('24337','823','188','radioMAC','0','187'), ('24338','823','189','atmRadio','0','188'), ('24339','823','190','imt','0','189'), ('24340','823','191','mvl','0','190'), ('24341','823','192','reachDSL','0','191'), ('24342','823','193','frDlciEndPt','0','192'), ('24343','823','194','atmVciEndPt','0','193'), ('24344','823','195','opticalChannel','0','194'), ('24345','823','196','opticalTransport','0','195'), ('24346','823','197','propAtm','0','196'), ('24347','823','198','voiceOverCable','0','197'), ('24348','823','199','infiniband','0','198'), ('24349','823','200','teLink','0','199'), ('24350','823','201','q2931','0','200'), ('24351','823','202','virtualTg','0','201'), ('24352','823','203','sipTg','0','202'), ('24353','823','204','sipSig','0','203'), ('24354','823','205','docsCableUpstreamChannel','0','204'), ('24355','823','206','econet','0','205'), ('24356','823','207','pon155','0','206'), ('24357','823','208','pon622','0','207'), ('24358','823','209','bridge','0','208'), ('24359','823','210','linegroup','0','209'), ('24360','823','211','voiceEMFGD','0','210'), ('24361','823','212','voiceFGDEANA','0','211'), ('24362','823','213','voiceDID','0','212'), ('24363','823','214','mpegTransport','0','213'), ('24364','823','215','sixToFour','0','214'), ('24365','823','216','gtp','0','215'), ('24366','823','217','pdnEtherLoop1','0','216'), ('24367','823','218','pdnEtherLoop2','0','217'), ('24368','823','219','opticalChannelGroup','0','218'), ('24369','823','220','homepna','0','219'), ('24370','823','221','gfp','0','220'), ('24371','823','222','ciscoISLvlan','0','221'), ('24372','823','223','actelisMetaLOOP','0','222'), ('24373','823','224','fcipLink','0','223'), ('24374','823','225','rpr','0','224'), ('24375','823','226','qam','0','225'), ('24376','823','227','lmp','0','226'), ('24377','823','228','cblVectaStar','0','227'), ('24378','823','229','docsCableMCmtsDownstream','0','228'), ('24379','823','230','adsl2','0','229'), ('24380','823','231','macSecControlledIF','0','230'), ('24381','823','232','macSecUncontrolledIF','0','231'), ('24382','823','233','aviciOpticalEther','0','232'), ('24383','823','234','atmbond','0','233'), ('24384','823','235','voiceFGDOS','0','234'), ('24385','823','236','mocaVersion1','0','235'), ('24386','823','237','ieee80216WMAN','0','236'), ('24387','823','238','adsl2plus','0','237'), ('24388','823','239','dvbRcsMacLayer','0','238'), ('24389','823','240','dvbTdm','0','239'), ('24390','823','241','dvbRcsTdma','0','240'), ('24391','823','242','x86Laps','0','241'), ('24392','823','243','wwanPP','0','242'), ('24393','823','244','wwanPP2','0','243'), ('24394','823','245','voiceEBS','0','244'), ('24395','823','246','ifPwType','0','245'), ('24396','823','247','ilan','0','246'), ('24397','823','248','pip','0','247'), ('24398','823','249','aluELP','0','248'), ('24399','823','250','gpon','0','249'), ('24400','823','251','vdsl2','0','250'), ('24401','823','252','capwapDot11Profile','0','251'), ('24402','823','253','capwapDot11Bss','0','252'), ('24403','823','254','capwapWtpVirtualRadio','0','253'), ('24404','823','255','bits','0','254'), ('24405','823','256','docsCableUpstreamRfPort','0','255'), ('24406','823','257','cableDownstreamRfPort','0','256'), ('24407','823','258','vmwareVirtualNic','0','257'), ('24408','823','259','ieee802154','0','258'), ('24409','823','260','otnOdu','0','259'), ('24410','823','261','otnOtu','0','260'), ('24411','823','262','ifVfiType','0','261'), ('24412','823','263','g9981','0','262'), ('24413','823','264','g9982','0','263'), ('24414','823','265','g9983','0','264'), ('24415','823','266','aluEpon','0','265'), ('24416','823','267','aluEponOnu','0','266'), ('24417','823','268','aluEponPhysicalUni','0','267'), ('24418','823','269','aluEponLogicalLink','0','268'), ('24419','823','270','aluGponOnu','0','269'), ('24420','823','271','aluGponPhysicalUni','0','270'), ('24421','823','272','vmwareNicTeam','0','271'), ('24422','823','277','docsOfdmDownstream','0','272'), ('24423','823','278','docsOfdmaUpstream','0','273'), ('24424','823','279','gfast','0','274'), ('24425','823','280','sdci','0','275'), ('24426','823','281','xboxWireless','0','276'), ('24427','823','282','fastdsl','0','277'), ('24428','823','283','docsCableScte55d1FwdOob','0','278'), ('24429','823','284','docsCableScte55d1RetOob','0','279'), ('24430','823','285','docsCableScte55d2DsOob','0','280'), ('24431','823','286','docsCableScte55d2UsOob','0','281'), ('24432','823','287','docsCableNdf','0','282'), ('24433','823','288','docsCableNdr','0','283'), ('24434','823','289','ptm','0','284'), ('24435','823','290','ghn','0','285'), ('24436','824','0','Down','0','0'), ('24437','824','1','Up','0','1'), ('24438','825','0','not available','0','0'), ('24439','825','1','available','0','1'), ('24440','825','2','unknown','0','2'), ('24441','826','1','up','0','0'), ('24442','826','2','down','0','1'), ('24443','826','4','unknown','0','2'), ('24444','826','5','dormant','0','3'), ('24445','826','6','notPresent','0','4'), ('24446','826','7','lowerLayerDown','0','5'), ('24447','827','1','other','0','0'), ('24448','827','2','regular1822','0','1'), ('24449','827','3','hdh1822','0','2'), ('24450','827','4','ddnX25','0','3'), ('24451','827','5','rfc877x25','0','4'), ('24452','827','6','ethernetCsmacd','0','5'), ('24453','827','7','iso88023Csmacd','0','6'), ('24454','827','8','iso88024TokenBus','0','7'), ('24455','827','9','iso88025TokenRing','0','8'), ('24456','827','10','iso88026Man','0','9'), ('24457','827','11','starLan','0','10'), ('24458','827','12','proteon10Mbit','0','11'), ('24459','827','13','proteon80Mbit','0','12'), ('24460','827','14','hyperchannel','0','13'), ('24461','827','15','fddi','0','14'), ('24462','827','16','lapb','0','15'), ('24463','827','17','sdlc','0','16'), ('24464','827','18','ds1','0','17'), ('24465','827','19','e1','0','18'), ('24466','827','20','basicISDN','0','19'), ('24467','827','21','primaryISDN','0','20'), ('24468','827','22','propPointToPointSerial','0','21'), ('24469','827','23','ppp','0','22'), ('24470','827','24','softwareLoopback','0','23'), ('24471','827','25','eon','0','24'), ('24472','827','26','ethernet3Mbit','0','25'), ('24473','827','27','nsip','0','26'), ('24474','827','28','slip','0','27'), ('24475','827','29','ultra','0','28'), ('24476','827','30','ds3','0','29'), ('24477','827','31','sip','0','30'), ('24478','827','32','frameRelay','0','31'), ('24479','827','33','rs232','0','32'), ('24480','827','34','para','0','33'), ('24481','827','35','arcnet','0','34'), ('24482','827','36','arcnetPlus','0','35'), ('24483','827','37','atm','0','36'), ('24484','827','38','miox25','0','37'), ('24485','827','39','sonet','0','38'), ('24486','827','40','x25ple','0','39'), ('24487','827','41','iso88022llc','0','40'), ('24488','827','42','localTalk','0','41'), ('24489','827','43','smdsDxi','0','42'), ('24490','827','44','frameRelayService','0','43'), ('24491','827','45','v35','0','44'), ('24492','827','46','hssi','0','45'), ('24493','827','47','hippi','0','46'), ('24494','827','48','modem','0','47'), ('24495','827','49','aal5','0','48'), ('24496','827','50','sonetPath','0','49'), ('24497','827','51','sonetVT','0','50'), ('24498','827','52','smdsIcip','0','51'), ('24499','827','53','propVirtual','0','52'), ('24500','827','54','propMultiplexor','0','53'), ('24501','827','55','ieee80212','0','54'), ('24502','827','56','fibreChannel','0','55'), ('24503','827','57','hippiInterface','0','56'), ('24504','827','58','frameRelayInterconnect','0','57'), ('24505','827','59','aflane8023','0','58'), ('24506','827','60','aflane8025','0','59'), ('24507','827','61','cctEmul','0','60'), ('24508','827','62','fastEther','0','61'), ('24509','827','63','isdn','0','62'), ('24510','827','64','v11','0','63'), ('24511','827','65','v36','0','64'), ('24512','827','66','g703at64k','0','65'), ('24513','827','67','g703at2mb','0','66'), ('24514','827','68','qllc','0','67'), ('24515','827','69','fastEtherFX','0','68'), ('24516','827','70','channel','0','69'), ('24517','827','71','ieee80211','0','70'), ('24518','827','72','ibm370parChan','0','71'), ('24519','827','73','escon','0','72'), ('24520','827','74','dlsw','0','73'), ('24521','827','75','isdns','0','74'), ('24522','827','76','isdnu','0','75'), ('24523','827','77','lapd','0','76'), ('24524','827','78','ipSwitch','0','77'), ('24525','827','79','rsrb','0','78'), ('24526','827','80','atmLogical','0','79'), ('24527','827','81','ds0','0','80'), ('24528','827','82','ds0Bundle','0','81'), ('24529','827','83','bsc','0','82'), ('24530','827','84','async','0','83'), ('24531','827','85','cnr','0','84'), ('24532','827','86','iso88025Dtr','0','85'), ('24533','827','87','eplrs','0','86'), ('24534','827','88','arap','0','87'), ('24535','827','89','propCnls','0','88'), ('24536','827','90','hostPad','0','89'), ('24537','827','91','termPad','0','90'), ('24538','827','92','frameRelayMPI','0','91'), ('24539','827','93','x213','0','92'), ('24540','827','94','adsl','0','93'), ('24541','827','95','radsl','0','94'), ('24542','827','96','sdsl','0','95'), ('24543','827','97','vdsl','0','96'), ('24544','827','98','iso88025CRFPInt','0','97'), ('24545','827','99','myrinet','0','98'), ('24546','827','100','voiceEM','0','99'), ('24547','827','101','voiceFXO','0','100'), ('24548','827','102','voiceFXS','0','101'), ('24549','827','103','voiceEncap','0','102'), ('24550','827','104','voiceOverIp','0','103'), ('24551','827','105','atmDxi','0','104'), ('24552','827','106','atmFuni','0','105'), ('24553','827','107','atmIma','0','106'), ('24554','827','108','pppMultilinkBundle','0','107'), ('24555','827','109','ipOverCdlc','0','108'), ('24556','827','110','ipOverClaw','0','109'), ('24557','827','111','stackToStack','0','110'), ('24558','827','112','virtualIpAddress','0','111'), ('24559','827','113','mpc','0','112'), ('24560','827','114','ipOverAtm','0','113'), ('24561','827','115','iso88025Fiber','0','114'), ('24562','827','116','tdlc','0','115'), ('24563','827','117','gigabitEthernet','0','116'), ('24564','827','118','hdlc','0','117'), ('24565','827','119','lapf','0','118'), ('24566','827','120','v37','0','119'), ('24567','827','121','x25mlp','0','120'), ('24568','827','122','x25huntGroup','0','121'), ('24569','827','123','trasnpHdlc','0','122'), ('24570','827','124','interleave','0','123'), ('24571','827','125','fast','0','124'), ('24572','827','126','ip','0','125'), ('24573','827','127','docsCableMaclayer','0','126'), ('24574','827','128','docsCableDownstream','0','127'), ('24575','827','129','docsCableUpstream','0','128'), ('24576','827','130','a12MppSwitch','0','129'), ('24577','827','131','tunnel','0','130'), ('24578','827','132','coffee','0','131'), ('24579','827','133','ces','0','132'), ('24580','827','134','atmSubInterface','0','133'), ('24581','827','135','l2vlan','0','134'), ('24582','827','136','l3ipvlan','0','135'), ('24583','827','137','l3ipxvlan','0','136'), ('24584','827','138','digitalPowerline','0','137'), ('24585','827','139','mediaMailOverIp','0','138'), ('24586','827','140','dtm','0','139'), ('24587','827','141','dcn','0','140'), ('24588','827','142','ipForward','0','141'), ('24589','827','143','msdsl','0','142'), ('24590','827','144','ieee1394','0','143'), ('24591','827','145','if-gsn','0','144'), ('24592','827','146','dvbRccMacLayer','0','145'), ('24593','827','147','dvbRccDownstream','0','146'), ('24594','827','148','dvbRccUpstream','0','147'), ('24595','827','149','atmVirtual','0','148'), ('24596','827','150','mplsTunnel','0','149'), ('24597','827','151','srp','0','150'), ('24598','827','152','voiceOverAtm','0','151'), ('24599','827','153','voiceOverFrameRelay','0','152'), ('24600','827','154','idsl','0','153'), ('24601','827','155','compositeLink','0','154'), ('24602','827','156','ss7SigLink','0','155'), ('24603','827','157','propWirelessP2P','0','156'), ('24604','827','158','frForward','0','157'), ('24605','827','159','rfc1483','0','158'), ('24606','827','160','usb','0','159'), ('24607','827','161','ieee8023adLag','0','160'), ('24608','827','162','bgppolicyaccounting','0','161'), ('24609','827','163','frf16MfrBundle','0','162'), ('24610','827','164','h323Gatekeeper','0','163'), ('24611','827','165','h323Proxy','0','164'), ('24612','827','166','mpls','0','165'), ('24613','827','167','mfSigLink','0','166'), ('24614','827','168','hdsl2','0','167'), ('24615','827','169','shdsl','0','168'), ('24616','827','170','ds1FDL','0','169'), ('24617','827','171','pos','0','170'), ('24618','827','172','dvbAsiIn','0','171'), ('24619','827','173','dvbAsiOut','0','172'), ('24620','827','174','plc','0','173'), ('24621','827','175','nfas','0','174'), ('24622','827','176','tr008','0','175'), ('24623','827','177','gr303RDT','0','176'), ('24624','827','178','gr303IDT','0','177'), ('24625','827','179','isup','0','178'), ('24626','827','180','propDocsWirelessMaclayer','0','179'), ('24627','827','181','propDocsWirelessDownstream','0','180'), ('24628','827','182','propDocsWirelessUpstream','0','181'), ('24629','827','183','hiperlan2','0','182'), ('24630','827','184','propBWAp2Mp','0','183'), ('24631','827','185','sonetOverheadChannel','0','184'), ('24632','827','186','digitalWrapperOverheadChannel','0','185'), ('24633','827','187','aal2','0','186'), ('24634','827','188','radioMAC','0','187'), ('24635','827','189','atmRadio','0','188'), ('24636','827','190','imt','0','189'), ('24637','827','191','mvl','0','190'), ('24638','827','192','reachDSL','0','191'), ('24639','827','193','frDlciEndPt','0','192'), ('24640','827','194','atmVciEndPt','0','193'), ('24641','827','195','opticalChannel','0','194'), ('24642','827','196','opticalTransport','0','195'), ('24643','827','197','propAtm','0','196'), ('24644','827','198','voiceOverCable','0','197'), ('24645','827','199','infiniband','0','198'), ('24646','827','200','teLink','0','199'), ('24647','827','201','q2931','0','200'), ('24648','827','202','virtualTg','0','201'), ('24649','827','203','sipTg','0','202'), ('24650','827','204','sipSig','0','203'), ('24651','827','205','docsCableUpstreamChannel','0','204'), ('24652','827','206','econet','0','205'), ('24653','827','207','pon155','0','206'), ('24654','827','208','pon622','0','207'), ('24655','827','209','bridge','0','208'), ('24656','827','210','linegroup','0','209'), ('24657','827','211','voiceEMFGD','0','210'), ('24658','827','212','voiceFGDEANA','0','211'), ('24659','827','213','voiceDID','0','212'), ('24660','827','214','mpegTransport','0','213'), ('24661','827','215','sixToFour','0','214'), ('24662','827','216','gtp','0','215'), ('24663','827','217','pdnEtherLoop1','0','216'), ('24664','827','218','pdnEtherLoop2','0','217'), ('24665','827','219','opticalChannelGroup','0','218'), ('24666','827','220','homepna','0','219'), ('24667','827','221','gfp','0','220'), ('24668','827','222','ciscoISLvlan','0','221'), ('24669','827','223','actelisMetaLOOP','0','222'), ('24670','827','224','fcipLink','0','223'), ('24671','827','225','rpr','0','224'), ('24672','827','226','qam','0','225'), ('24673','827','227','lmp','0','226'), ('24674','827','228','cblVectaStar','0','227'), ('24675','827','229','docsCableMCmtsDownstream','0','228'), ('24676','827','230','adsl2','0','229'), ('24677','827','231','macSecControlledIF','0','230'), ('24678','827','232','macSecUncontrolledIF','0','231'), ('24679','827','233','aviciOpticalEther','0','232'), ('24680','827','234','atmbond','0','233'), ('24681','827','235','voiceFGDOS','0','234'), ('24682','827','236','mocaVersion1','0','235'), ('24683','827','237','ieee80216WMAN','0','236'), ('24684','827','238','adsl2plus','0','237'), ('24685','827','239','dvbRcsMacLayer','0','238'), ('24686','827','240','dvbTdm','0','239'), ('24687','827','241','dvbRcsTdma','0','240'), ('24688','827','242','x86Laps','0','241'), ('24689','827','243','wwanPP','0','242'), ('24690','827','244','wwanPP2','0','243'), ('24691','827','245','voiceEBS','0','244'), ('24692','827','246','ifPwType','0','245'), ('24693','827','247','ilan','0','246'), ('24694','827','248','pip','0','247'), ('24695','827','249','aluELP','0','248'), ('24696','827','250','gpon','0','249'), ('24697','827','251','vdsl2','0','250'), ('24698','827','252','capwapDot11Profile','0','251'), ('24699','827','253','capwapDot11Bss','0','252'), ('24700','827','254','capwapWtpVirtualRadio','0','253'), ('24701','827','255','bits','0','254'), ('24702','827','256','docsCableUpstreamRfPort','0','255'), ('24703','827','257','cableDownstreamRfPort','0','256'), ('24704','827','258','vmwareVirtualNic','0','257'), ('24705','827','259','ieee802154','0','258'), ('24706','827','260','otnOdu','0','259'), ('24707','827','261','otnOtu','0','260'), ('24708','827','262','ifVfiType','0','261'), ('24709','827','263','g9981','0','262'), ('24710','827','264','g9982','0','263'), ('24711','827','265','g9983','0','264'), ('24712','827','266','aluEpon','0','265'), ('24713','827','267','aluEponOnu','0','266'), ('24714','827','268','aluEponPhysicalUni','0','267'), ('24715','827','269','aluEponLogicalLink','0','268'), ('24716','827','270','aluGponOnu','0','269'), ('24717','827','271','aluGponPhysicalUni','0','270'), ('24718','827','272','vmwareNicTeam','0','271'), ('24719','827','277','docsOfdmDownstream','0','272'), ('24720','827','278','docsOfdmaUpstream','0','273'), ('24721','827','279','gfast','0','274'), ('24722','827','280','sdci','0','275'), ('24723','827','281','xboxWireless','0','276'), ('24724','827','282','fastdsl','0','277'), ('24725','827','283','docsCableScte55d1FwdOob','0','278'), ('24726','827','284','docsCableScte55d1RetOob','0','279'), ('24727','827','285','docsCableScte55d2DsOob','0','280'), ('24728','827','286','docsCableScte55d2UsOob','0','281'), ('24729','827','287','docsCableNdf','0','282'), ('24730','827','288','docsCableNdr','0','283'), ('24731','827','289','ptm','0','284'), ('24732','827','290','ghn','0','285'), ('24733','828','0','Down','0','0'), ('24734','828','1','Up','0','1'), ('24735','829','0','not available','0','0'), ('24736','829','1','available','0','1'), ('24737','829','2','unknown','0','2'), ('24738','830','1','up','0','0'), ('24739','830','2','down','0','1'), ('24740','830','4','unknown','0','2'), ('24741','830','5','dormant','0','3'), ('24742','830','6','notPresent','0','4'), ('24743','830','7','lowerLayerDown','0','5'), ('24744','831','1','other','0','0'), ('24745','831','2','regular1822','0','1'), ('24746','831','3','hdh1822','0','2'), ('24747','831','4','ddnX25','0','3'), ('24748','831','5','rfc877x25','0','4'), ('24749','831','6','ethernetCsmacd','0','5'), ('24750','831','7','iso88023Csmacd','0','6'), ('24751','831','8','iso88024TokenBus','0','7'), ('24752','831','9','iso88025TokenRing','0','8'), ('24753','831','10','iso88026Man','0','9'), ('24754','831','11','starLan','0','10'), ('24755','831','12','proteon10Mbit','0','11'), ('24756','831','13','proteon80Mbit','0','12'), ('24757','831','14','hyperchannel','0','13'), ('24758','831','15','fddi','0','14'), ('24759','831','16','lapb','0','15'), ('24760','831','17','sdlc','0','16'), ('24761','831','18','ds1','0','17'), ('24762','831','19','e1','0','18'), ('24763','831','20','basicISDN','0','19'), ('24764','831','21','primaryISDN','0','20'), ('24765','831','22','propPointToPointSerial','0','21'), ('24766','831','23','ppp','0','22'), ('24767','831','24','softwareLoopback','0','23'), ('24768','831','25','eon','0','24'), ('24769','831','26','ethernet3Mbit','0','25'), ('24770','831','27','nsip','0','26'), ('24771','831','28','slip','0','27'), ('24772','831','29','ultra','0','28'), ('24773','831','30','ds3','0','29'), ('24774','831','31','sip','0','30'), ('24775','831','32','frameRelay','0','31'), ('24776','831','33','rs232','0','32'), ('24777','831','34','para','0','33'), ('24778','831','35','arcnet','0','34'), ('24779','831','36','arcnetPlus','0','35'), ('24780','831','37','atm','0','36'), ('24781','831','38','miox25','0','37'), ('24782','831','39','sonet','0','38'), ('24783','831','40','x25ple','0','39'), ('24784','831','41','iso88022llc','0','40'), ('24785','831','42','localTalk','0','41'), ('24786','831','43','smdsDxi','0','42'), ('24787','831','44','frameRelayService','0','43'), ('24788','831','45','v35','0','44'), ('24789','831','46','hssi','0','45'), ('24790','831','47','hippi','0','46'), ('24791','831','48','modem','0','47'), ('24792','831','49','aal5','0','48'), ('24793','831','50','sonetPath','0','49'), ('24794','831','51','sonetVT','0','50'), ('24795','831','52','smdsIcip','0','51'), ('24796','831','53','propVirtual','0','52'), ('24797','831','54','propMultiplexor','0','53'), ('24798','831','55','ieee80212','0','54'), ('24799','831','56','fibreChannel','0','55'), ('24800','831','57','hippiInterface','0','56'), ('24801','831','58','frameRelayInterconnect','0','57'), ('24802','831','59','aflane8023','0','58'), ('24803','831','60','aflane8025','0','59'), ('24804','831','61','cctEmul','0','60'), ('24805','831','62','fastEther','0','61'), ('24806','831','63','isdn','0','62'), ('24807','831','64','v11','0','63'), ('24808','831','65','v36','0','64'), ('24809','831','66','g703at64k','0','65'), ('24810','831','67','g703at2mb','0','66'), ('24811','831','68','qllc','0','67'), ('24812','831','69','fastEtherFX','0','68'), ('24813','831','70','channel','0','69'), ('24814','831','71','ieee80211','0','70'), ('24815','831','72','ibm370parChan','0','71'), ('24816','831','73','escon','0','72'), ('24817','831','74','dlsw','0','73'), ('24818','831','75','isdns','0','74'), ('24819','831','76','isdnu','0','75'), ('24820','831','77','lapd','0','76'), ('24821','831','78','ipSwitch','0','77'), ('24822','831','79','rsrb','0','78'), ('24823','831','80','atmLogical','0','79'), ('24824','831','81','ds0','0','80'), ('24825','831','82','ds0Bundle','0','81'), ('24826','831','83','bsc','0','82'), ('24827','831','84','async','0','83'), ('24828','831','85','cnr','0','84'), ('24829','831','86','iso88025Dtr','0','85'), ('24830','831','87','eplrs','0','86'), ('24831','831','88','arap','0','87'), ('24832','831','89','propCnls','0','88'), ('24833','831','90','hostPad','0','89'), ('24834','831','91','termPad','0','90'), ('24835','831','92','frameRelayMPI','0','91'), ('24836','831','93','x213','0','92'), ('24837','831','94','adsl','0','93'), ('24838','831','95','radsl','0','94'), ('24839','831','96','sdsl','0','95'), ('24840','831','97','vdsl','0','96'), ('24841','831','98','iso88025CRFPInt','0','97'), ('24842','831','99','myrinet','0','98'), ('24843','831','100','voiceEM','0','99'), ('24844','831','101','voiceFXO','0','100'), ('24845','831','102','voiceFXS','0','101'), ('24846','831','103','voiceEncap','0','102'), ('24847','831','104','voiceOverIp','0','103'), ('24848','831','105','atmDxi','0','104'), ('24849','831','106','atmFuni','0','105'), ('24850','831','107','atmIma','0','106'), ('24851','831','108','pppMultilinkBundle','0','107'), ('24852','831','109','ipOverCdlc','0','108'), ('24853','831','110','ipOverClaw','0','109'), ('24854','831','111','stackToStack','0','110'), ('24855','831','112','virtualIpAddress','0','111'), ('24856','831','113','mpc','0','112'), ('24857','831','114','ipOverAtm','0','113'), ('24858','831','115','iso88025Fiber','0','114'), ('24859','831','116','tdlc','0','115'), ('24860','831','117','gigabitEthernet','0','116'), ('24861','831','118','hdlc','0','117'), ('24862','831','119','lapf','0','118'), ('24863','831','120','v37','0','119'), ('24864','831','121','x25mlp','0','120'), ('24865','831','122','x25huntGroup','0','121'), ('24866','831','123','trasnpHdlc','0','122'), ('24867','831','124','interleave','0','123'), ('24868','831','125','fast','0','124'), ('24869','831','126','ip','0','125'), ('24870','831','127','docsCableMaclayer','0','126'), ('24871','831','128','docsCableDownstream','0','127'), ('24872','831','129','docsCableUpstream','0','128'), ('24873','831','130','a12MppSwitch','0','129'), ('24874','831','131','tunnel','0','130'), ('24875','831','132','coffee','0','131'), ('24876','831','133','ces','0','132'), ('24877','831','134','atmSubInterface','0','133'), ('24878','831','135','l2vlan','0','134'), ('24879','831','136','l3ipvlan','0','135'), ('24880','831','137','l3ipxvlan','0','136'), ('24881','831','138','digitalPowerline','0','137'), ('24882','831','139','mediaMailOverIp','0','138'), ('24883','831','140','dtm','0','139'), ('24884','831','141','dcn','0','140'), ('24885','831','142','ipForward','0','141'), ('24886','831','143','msdsl','0','142'), ('24887','831','144','ieee1394','0','143'), ('24888','831','145','if-gsn','0','144'), ('24889','831','146','dvbRccMacLayer','0','145'), ('24890','831','147','dvbRccDownstream','0','146'), ('24891','831','148','dvbRccUpstream','0','147'), ('24892','831','149','atmVirtual','0','148'), ('24893','831','150','mplsTunnel','0','149'), ('24894','831','151','srp','0','150'), ('24895','831','152','voiceOverAtm','0','151'), ('24896','831','153','voiceOverFrameRelay','0','152'), ('24897','831','154','idsl','0','153'), ('24898','831','155','compositeLink','0','154'), ('24899','831','156','ss7SigLink','0','155'), ('24900','831','157','propWirelessP2P','0','156'), ('24901','831','158','frForward','0','157'), ('24902','831','159','rfc1483','0','158'), ('24903','831','160','usb','0','159'), ('24904','831','161','ieee8023adLag','0','160'), ('24905','831','162','bgppolicyaccounting','0','161'), ('24906','831','163','frf16MfrBundle','0','162'), ('24907','831','164','h323Gatekeeper','0','163'), ('24908','831','165','h323Proxy','0','164'), ('24909','831','166','mpls','0','165'), ('24910','831','167','mfSigLink','0','166'), ('24911','831','168','hdsl2','0','167'), ('24912','831','169','shdsl','0','168'), ('24913','831','170','ds1FDL','0','169'), ('24914','831','171','pos','0','170'), ('24915','831','172','dvbAsiIn','0','171'), ('24916','831','173','dvbAsiOut','0','172'), ('24917','831','174','plc','0','173'), ('24918','831','175','nfas','0','174'), ('24919','831','176','tr008','0','175'), ('24920','831','177','gr303RDT','0','176'), ('24921','831','178','gr303IDT','0','177'), ('24922','831','179','isup','0','178'), ('24923','831','180','propDocsWirelessMaclayer','0','179'), ('24924','831','181','propDocsWirelessDownstream','0','180'), ('24925','831','182','propDocsWirelessUpstream','0','181'), ('24926','831','183','hiperlan2','0','182'), ('24927','831','184','propBWAp2Mp','0','183'), ('24928','831','185','sonetOverheadChannel','0','184'), ('24929','831','186','digitalWrapperOverheadChannel','0','185'), ('24930','831','187','aal2','0','186'), ('24931','831','188','radioMAC','0','187'), ('24932','831','189','atmRadio','0','188'), ('24933','831','190','imt','0','189'), ('24934','831','191','mvl','0','190'), ('24935','831','192','reachDSL','0','191'), ('24936','831','193','frDlciEndPt','0','192'), ('24937','831','194','atmVciEndPt','0','193'), ('24938','831','195','opticalChannel','0','194'), ('24939','831','196','opticalTransport','0','195'), ('24940','831','197','propAtm','0','196'), ('24941','831','198','voiceOverCable','0','197'), ('24942','831','199','infiniband','0','198'), ('24943','831','200','teLink','0','199'), ('24944','831','201','q2931','0','200'), ('24945','831','202','virtualTg','0','201'), ('24946','831','203','sipTg','0','202'), ('24947','831','204','sipSig','0','203'), ('24948','831','205','docsCableUpstreamChannel','0','204'), ('24949','831','206','econet','0','205'), ('24950','831','207','pon155','0','206'), ('24951','831','208','pon622','0','207'), ('24952','831','209','bridge','0','208'), ('24953','831','210','linegroup','0','209'), ('24954','831','211','voiceEMFGD','0','210'), ('24955','831','212','voiceFGDEANA','0','211'), ('24956','831','213','voiceDID','0','212'), ('24957','831','214','mpegTransport','0','213'), ('24958','831','215','sixToFour','0','214'), ('24959','831','216','gtp','0','215'), ('24960','831','217','pdnEtherLoop1','0','216'), ('24961','831','218','pdnEtherLoop2','0','217'), ('24962','831','219','opticalChannelGroup','0','218'), ('24963','831','220','homepna','0','219'), ('24964','831','221','gfp','0','220'), ('24965','831','222','ciscoISLvlan','0','221'), ('24966','831','223','actelisMetaLOOP','0','222'), ('24967','831','224','fcipLink','0','223'), ('24968','831','225','rpr','0','224'), ('24969','831','226','qam','0','225'), ('24970','831','227','lmp','0','226'), ('24971','831','228','cblVectaStar','0','227'), ('24972','831','229','docsCableMCmtsDownstream','0','228'), ('24973','831','230','adsl2','0','229'), ('24974','831','231','macSecControlledIF','0','230'), ('24975','831','232','macSecUncontrolledIF','0','231'), ('24976','831','233','aviciOpticalEther','0','232'), ('24977','831','234','atmbond','0','233'), ('24978','831','235','voiceFGDOS','0','234'), ('24979','831','236','mocaVersion1','0','235'), ('24980','831','237','ieee80216WMAN','0','236'), ('24981','831','238','adsl2plus','0','237'), ('24982','831','239','dvbRcsMacLayer','0','238'), ('24983','831','240','dvbTdm','0','239'), ('24984','831','241','dvbRcsTdma','0','240'), ('24985','831','242','x86Laps','0','241'), ('24986','831','243','wwanPP','0','242'), ('24987','831','244','wwanPP2','0','243'), ('24988','831','245','voiceEBS','0','244'), ('24989','831','246','ifPwType','0','245'), ('24990','831','247','ilan','0','246'), ('24991','831','248','pip','0','247'), ('24992','831','249','aluELP','0','248'), ('24993','831','250','gpon','0','249'), ('24994','831','251','vdsl2','0','250'), ('24995','831','252','capwapDot11Profile','0','251'), ('24996','831','253','capwapDot11Bss','0','252'), ('24997','831','254','capwapWtpVirtualRadio','0','253'), ('24998','831','255','bits','0','254'), ('24999','831','256','docsCableUpstreamRfPort','0','255'), ('25000','831','257','cableDownstreamRfPort','0','256'), ('25001','831','258','vmwareVirtualNic','0','257'), ('25002','831','259','ieee802154','0','258'), ('25003','831','260','otnOdu','0','259'), ('25004','831','261','otnOtu','0','260'), ('25005','831','262','ifVfiType','0','261'), ('25006','831','263','g9981','0','262'), ('25007','831','264','g9982','0','263'), ('25008','831','265','g9983','0','264'), ('25009','831','266','aluEpon','0','265'), ('25010','831','267','aluEponOnu','0','266'), ('25011','831','268','aluEponPhysicalUni','0','267'), ('25012','831','269','aluEponLogicalLink','0','268'), ('25013','831','270','aluGponOnu','0','269'), ('25014','831','271','aluGponPhysicalUni','0','270'), ('25015','831','272','vmwareNicTeam','0','271'), ('25016','831','277','docsOfdmDownstream','0','272'), ('25017','831','278','docsOfdmaUpstream','0','273'), ('25018','831','279','gfast','0','274'), ('25019','831','280','sdci','0','275'), ('25020','831','281','xboxWireless','0','276'), ('25021','831','282','fastdsl','0','277'), ('25022','831','283','docsCableScte55d1FwdOob','0','278'), ('25023','831','284','docsCableScte55d1RetOob','0','279'), ('25024','831','285','docsCableScte55d2DsOob','0','280'), ('25025','831','286','docsCableScte55d2UsOob','0','281'), ('25026','831','287','docsCableNdf','0','282'), ('25027','831','288','docsCableNdr','0','283'), ('25028','831','289','ptm','0','284'), ('25029','831','290','ghn','0','285'), ('25030','832','0','Down','0','0'), ('25031','832','1','Up','0','1'), ('25032','833','0','not available','0','0'), ('25033','833','1','available','0','1'), ('25034','833','2','unknown','0','2'), ('25035','834','1','up','0','0'), ('25036','834','2','down','0','1'), ('25037','834','4','unknown','0','2'), ('25038','834','5','dormant','0','3'), ('25039','834','6','notPresent','0','4'), ('25040','834','7','lowerLayerDown','0','5'), ('25041','835','1','other','0','0'), ('25042','835','2','regular1822','0','1'), ('25043','835','3','hdh1822','0','2'), ('25044','835','4','ddnX25','0','3'), ('25045','835','5','rfc877x25','0','4'), ('25046','835','6','ethernetCsmacd','0','5'), ('25047','835','7','iso88023Csmacd','0','6'), ('25048','835','8','iso88024TokenBus','0','7'), ('25049','835','9','iso88025TokenRing','0','8'), ('25050','835','10','iso88026Man','0','9'), ('25051','835','11','starLan','0','10'), ('25052','835','12','proteon10Mbit','0','11'), ('25053','835','13','proteon80Mbit','0','12'), ('25054','835','14','hyperchannel','0','13'), ('25055','835','15','fddi','0','14'), ('25056','835','16','lapb','0','15'), ('25057','835','17','sdlc','0','16'), ('25058','835','18','ds1','0','17'), ('25059','835','19','e1','0','18'), ('25060','835','20','basicISDN','0','19'), ('25061','835','21','primaryISDN','0','20'), ('25062','835','22','propPointToPointSerial','0','21'), ('25063','835','23','ppp','0','22'), ('25064','835','24','softwareLoopback','0','23'), ('25065','835','25','eon','0','24'), ('25066','835','26','ethernet3Mbit','0','25'), ('25067','835','27','nsip','0','26'), ('25068','835','28','slip','0','27'), ('25069','835','29','ultra','0','28'), ('25070','835','30','ds3','0','29'), ('25071','835','31','sip','0','30'), ('25072','835','32','frameRelay','0','31'), ('25073','835','33','rs232','0','32'), ('25074','835','34','para','0','33'), ('25075','835','35','arcnet','0','34'), ('25076','835','36','arcnetPlus','0','35'), ('25077','835','37','atm','0','36'), ('25078','835','38','miox25','0','37'), ('25079','835','39','sonet','0','38'), ('25080','835','40','x25ple','0','39'), ('25081','835','41','iso88022llc','0','40'), ('25082','835','42','localTalk','0','41'), ('25083','835','43','smdsDxi','0','42'), ('25084','835','44','frameRelayService','0','43'), ('25085','835','45','v35','0','44'), ('25086','835','46','hssi','0','45'), ('25087','835','47','hippi','0','46'), ('25088','835','48','modem','0','47'), ('25089','835','49','aal5','0','48'), ('25090','835','50','sonetPath','0','49'), ('25091','835','51','sonetVT','0','50'), ('25092','835','52','smdsIcip','0','51'), ('25093','835','53','propVirtual','0','52'), ('25094','835','54','propMultiplexor','0','53'), ('25095','835','55','ieee80212','0','54'), ('25096','835','56','fibreChannel','0','55'), ('25097','835','57','hippiInterface','0','56'), ('25098','835','58','frameRelayInterconnect','0','57'), ('25099','835','59','aflane8023','0','58'), ('25100','835','60','aflane8025','0','59'), ('25101','835','61','cctEmul','0','60'), ('25102','835','62','fastEther','0','61'), ('25103','835','63','isdn','0','62'), ('25104','835','64','v11','0','63'), ('25105','835','65','v36','0','64'), ('25106','835','66','g703at64k','0','65'), ('25107','835','67','g703at2mb','0','66'), ('25108','835','68','qllc','0','67'), ('25109','835','69','fastEtherFX','0','68'), ('25110','835','70','channel','0','69'), ('25111','835','71','ieee80211','0','70'), ('25112','835','72','ibm370parChan','0','71'), ('25113','835','73','escon','0','72'), ('25114','835','74','dlsw','0','73'), ('25115','835','75','isdns','0','74'), ('25116','835','76','isdnu','0','75'), ('25117','835','77','lapd','0','76'), ('25118','835','78','ipSwitch','0','77'), ('25119','835','79','rsrb','0','78'), ('25120','835','80','atmLogical','0','79'), ('25121','835','81','ds0','0','80'), ('25122','835','82','ds0Bundle','0','81'), ('25123','835','83','bsc','0','82'), ('25124','835','84','async','0','83'), ('25125','835','85','cnr','0','84'), ('25126','835','86','iso88025Dtr','0','85'), ('25127','835','87','eplrs','0','86'), ('25128','835','88','arap','0','87'), ('25129','835','89','propCnls','0','88'), ('25130','835','90','hostPad','0','89'), ('25131','835','91','termPad','0','90'), ('25132','835','92','frameRelayMPI','0','91'), ('25133','835','93','x213','0','92'), ('25134','835','94','adsl','0','93'), ('25135','835','95','radsl','0','94'), ('25136','835','96','sdsl','0','95'), ('25137','835','97','vdsl','0','96'), ('25138','835','98','iso88025CRFPInt','0','97'), ('25139','835','99','myrinet','0','98'), ('25140','835','100','voiceEM','0','99'), ('25141','835','101','voiceFXO','0','100'), ('25142','835','102','voiceFXS','0','101'), ('25143','835','103','voiceEncap','0','102'), ('25144','835','104','voiceOverIp','0','103'), ('25145','835','105','atmDxi','0','104'), ('25146','835','106','atmFuni','0','105'), ('25147','835','107','atmIma','0','106'), ('25148','835','108','pppMultilinkBundle','0','107'), ('25149','835','109','ipOverCdlc','0','108'), ('25150','835','110','ipOverClaw','0','109'), ('25151','835','111','stackToStack','0','110'), ('25152','835','112','virtualIpAddress','0','111'), ('25153','835','113','mpc','0','112'), ('25154','835','114','ipOverAtm','0','113'), ('25155','835','115','iso88025Fiber','0','114'), ('25156','835','116','tdlc','0','115'), ('25157','835','117','gigabitEthernet','0','116'), ('25158','835','118','hdlc','0','117'), ('25159','835','119','lapf','0','118'), ('25160','835','120','v37','0','119'), ('25161','835','121','x25mlp','0','120'), ('25162','835','122','x25huntGroup','0','121'), ('25163','835','123','trasnpHdlc','0','122'), ('25164','835','124','interleave','0','123'), ('25165','835','125','fast','0','124'), ('25166','835','126','ip','0','125'), ('25167','835','127','docsCableMaclayer','0','126'), ('25168','835','128','docsCableDownstream','0','127'), ('25169','835','129','docsCableUpstream','0','128'), ('25170','835','130','a12MppSwitch','0','129'), ('25171','835','131','tunnel','0','130'), ('25172','835','132','coffee','0','131'), ('25173','835','133','ces','0','132'), ('25174','835','134','atmSubInterface','0','133'), ('25175','835','135','l2vlan','0','134'), ('25176','835','136','l3ipvlan','0','135'), ('25177','835','137','l3ipxvlan','0','136'), ('25178','835','138','digitalPowerline','0','137'), ('25179','835','139','mediaMailOverIp','0','138'), ('25180','835','140','dtm','0','139'), ('25181','835','141','dcn','0','140'), ('25182','835','142','ipForward','0','141'), ('25183','835','143','msdsl','0','142'), ('25184','835','144','ieee1394','0','143'), ('25185','835','145','if-gsn','0','144'), ('25186','835','146','dvbRccMacLayer','0','145'), ('25187','835','147','dvbRccDownstream','0','146'), ('25188','835','148','dvbRccUpstream','0','147'), ('25189','835','149','atmVirtual','0','148'), ('25190','835','150','mplsTunnel','0','149'), ('25191','835','151','srp','0','150'), ('25192','835','152','voiceOverAtm','0','151'), ('25193','835','153','voiceOverFrameRelay','0','152'), ('25194','835','154','idsl','0','153'), ('25195','835','155','compositeLink','0','154'), ('25196','835','156','ss7SigLink','0','155'), ('25197','835','157','propWirelessP2P','0','156'), ('25198','835','158','frForward','0','157'), ('25199','835','159','rfc1483','0','158'), ('25200','835','160','usb','0','159'), ('25201','835','161','ieee8023adLag','0','160'), ('25202','835','162','bgppolicyaccounting','0','161'), ('25203','835','163','frf16MfrBundle','0','162'), ('25204','835','164','h323Gatekeeper','0','163'), ('25205','835','165','h323Proxy','0','164'), ('25206','835','166','mpls','0','165'), ('25207','835','167','mfSigLink','0','166'), ('25208','835','168','hdsl2','0','167'), ('25209','835','169','shdsl','0','168'), ('25210','835','170','ds1FDL','0','169'), ('25211','835','171','pos','0','170'), ('25212','835','172','dvbAsiIn','0','171'), ('25213','835','173','dvbAsiOut','0','172'), ('25214','835','174','plc','0','173'), ('25215','835','175','nfas','0','174'), ('25216','835','176','tr008','0','175'), ('25217','835','177','gr303RDT','0','176'), ('25218','835','178','gr303IDT','0','177'), ('25219','835','179','isup','0','178'), ('25220','835','180','propDocsWirelessMaclayer','0','179'), ('25221','835','181','propDocsWirelessDownstream','0','180'), ('25222','835','182','propDocsWirelessUpstream','0','181'), ('25223','835','183','hiperlan2','0','182'), ('25224','835','184','propBWAp2Mp','0','183'), ('25225','835','185','sonetOverheadChannel','0','184'), ('25226','835','186','digitalWrapperOverheadChannel','0','185'), ('25227','835','187','aal2','0','186'), ('25228','835','188','radioMAC','0','187'), ('25229','835','189','atmRadio','0','188'), ('25230','835','190','imt','0','189'), ('25231','835','191','mvl','0','190'), ('25232','835','192','reachDSL','0','191'), ('25233','835','193','frDlciEndPt','0','192'), ('25234','835','194','atmVciEndPt','0','193'), ('25235','835','195','opticalChannel','0','194'), ('25236','835','196','opticalTransport','0','195'), ('25237','835','197','propAtm','0','196'), ('25238','835','198','voiceOverCable','0','197'), ('25239','835','199','infiniband','0','198'), ('25240','835','200','teLink','0','199'), ('25241','835','201','q2931','0','200'), ('25242','835','202','virtualTg','0','201'), ('25243','835','203','sipTg','0','202'), ('25244','835','204','sipSig','0','203'), ('25245','835','205','docsCableUpstreamChannel','0','204'), ('25246','835','206','econet','0','205'), ('25247','835','207','pon155','0','206'), ('25248','835','208','pon622','0','207'), ('25249','835','209','bridge','0','208'), ('25250','835','210','linegroup','0','209'), ('25251','835','211','voiceEMFGD','0','210'), ('25252','835','212','voiceFGDEANA','0','211'), ('25253','835','213','voiceDID','0','212'), ('25254','835','214','mpegTransport','0','213'), ('25255','835','215','sixToFour','0','214'), ('25256','835','216','gtp','0','215'), ('25257','835','217','pdnEtherLoop1','0','216'), ('25258','835','218','pdnEtherLoop2','0','217'), ('25259','835','219','opticalChannelGroup','0','218'), ('25260','835','220','homepna','0','219'), ('25261','835','221','gfp','0','220'), ('25262','835','222','ciscoISLvlan','0','221'), ('25263','835','223','actelisMetaLOOP','0','222'), ('25264','835','224','fcipLink','0','223'), ('25265','835','225','rpr','0','224'), ('25266','835','226','qam','0','225'), ('25267','835','227','lmp','0','226'), ('25268','835','228','cblVectaStar','0','227'), ('25269','835','229','docsCableMCmtsDownstream','0','228'), ('25270','835','230','adsl2','0','229'), ('25271','835','231','macSecControlledIF','0','230'), ('25272','835','232','macSecUncontrolledIF','0','231'), ('25273','835','233','aviciOpticalEther','0','232'), ('25274','835','234','atmbond','0','233'), ('25275','835','235','voiceFGDOS','0','234'), ('25276','835','236','mocaVersion1','0','235'), ('25277','835','237','ieee80216WMAN','0','236'), ('25278','835','238','adsl2plus','0','237'), ('25279','835','239','dvbRcsMacLayer','0','238'), ('25280','835','240','dvbTdm','0','239'), ('25281','835','241','dvbRcsTdma','0','240'), ('25282','835','242','x86Laps','0','241'), ('25283','835','243','wwanPP','0','242'), ('25284','835','244','wwanPP2','0','243'), ('25285','835','245','voiceEBS','0','244'), ('25286','835','246','ifPwType','0','245'), ('25287','835','247','ilan','0','246'), ('25288','835','248','pip','0','247'), ('25289','835','249','aluELP','0','248'), ('25290','835','250','gpon','0','249'), ('25291','835','251','vdsl2','0','250'), ('25292','835','252','capwapDot11Profile','0','251'), ('25293','835','253','capwapDot11Bss','0','252'), ('25294','835','254','capwapWtpVirtualRadio','0','253'), ('25295','835','255','bits','0','254'), ('25296','835','256','docsCableUpstreamRfPort','0','255'), ('25297','835','257','cableDownstreamRfPort','0','256'), ('25298','835','258','vmwareVirtualNic','0','257'), ('25299','835','259','ieee802154','0','258'), ('25300','835','260','otnOdu','0','259'), ('25301','835','261','otnOtu','0','260'), ('25302','835','262','ifVfiType','0','261'), ('25303','835','263','g9981','0','262'), ('25304','835','264','g9982','0','263'), ('25305','835','265','g9983','0','264'), ('25306','835','266','aluEpon','0','265'), ('25307','835','267','aluEponOnu','0','266'), ('25308','835','268','aluEponPhysicalUni','0','267'), ('25309','835','269','aluEponLogicalLink','0','268'), ('25310','835','270','aluGponOnu','0','269'), ('25311','835','271','aluGponPhysicalUni','0','270'), ('25312','835','272','vmwareNicTeam','0','271'), ('25313','835','277','docsOfdmDownstream','0','272'), ('25314','835','278','docsOfdmaUpstream','0','273'), ('25315','835','279','gfast','0','274'), ('25316','835','280','sdci','0','275'), ('25317','835','281','xboxWireless','0','276'), ('25318','835','282','fastdsl','0','277'), ('25319','835','283','docsCableScte55d1FwdOob','0','278'), ('25320','835','284','docsCableScte55d1RetOob','0','279'), ('25321','835','285','docsCableScte55d2DsOob','0','280'), ('25322','835','286','docsCableScte55d2UsOob','0','281'), ('25323','835','287','docsCableNdf','0','282'), ('25324','835','288','docsCableNdr','0','283'), ('25325','835','289','ptm','0','284'), ('25326','835','290','ghn','0','285'), ('25327','836','0','Down','0','0'), ('25328','836','1','Up','0','1'), ('25329','837','0','not available','0','0'), ('25330','837','1','available','0','1'), ('25331','837','2','unknown','0','2'), ('25332','838','1','up','0','0'), ('25333','838','2','down','0','1'), ('25334','838','4','unknown','0','2'), ('25335','838','5','dormant','0','3'), ('25336','838','6','notPresent','0','4'), ('25337','838','7','lowerLayerDown','0','5'), ('25338','839','1','other','0','0'), ('25339','839','2','regular1822','0','1'), ('25340','839','3','hdh1822','0','2'), ('25341','839','4','ddnX25','0','3'), ('25342','839','5','rfc877x25','0','4'), ('25343','839','6','ethernetCsmacd','0','5'), ('25344','839','7','iso88023Csmacd','0','6'), ('25345','839','8','iso88024TokenBus','0','7'), ('25346','839','9','iso88025TokenRing','0','8'), ('25347','839','10','iso88026Man','0','9'), ('25348','839','11','starLan','0','10'), ('25349','839','12','proteon10Mbit','0','11'), ('25350','839','13','proteon80Mbit','0','12'), ('25351','839','14','hyperchannel','0','13'), ('25352','839','15','fddi','0','14'), ('25353','839','16','lapb','0','15'), ('25354','839','17','sdlc','0','16'), ('25355','839','18','ds1','0','17'), ('25356','839','19','e1','0','18'), ('25357','839','20','basicISDN','0','19'), ('25358','839','21','primaryISDN','0','20'), ('25359','839','22','propPointToPointSerial','0','21'), ('25360','839','23','ppp','0','22'), ('25361','839','24','softwareLoopback','0','23'), ('25362','839','25','eon','0','24'), ('25363','839','26','ethernet3Mbit','0','25'), ('25364','839','27','nsip','0','26'), ('25365','839','28','slip','0','27'), ('25366','839','29','ultra','0','28'), ('25367','839','30','ds3','0','29'), ('25368','839','31','sip','0','30'), ('25369','839','32','frameRelay','0','31'), ('25370','839','33','rs232','0','32'), ('25371','839','34','para','0','33'), ('25372','839','35','arcnet','0','34'), ('25373','839','36','arcnetPlus','0','35'), ('25374','839','37','atm','0','36'), ('25375','839','38','miox25','0','37'), ('25376','839','39','sonet','0','38'), ('25377','839','40','x25ple','0','39'), ('25378','839','41','iso88022llc','0','40'), ('25379','839','42','localTalk','0','41'), ('25380','839','43','smdsDxi','0','42'), ('25381','839','44','frameRelayService','0','43'), ('25382','839','45','v35','0','44'), ('25383','839','46','hssi','0','45'), ('25384','839','47','hippi','0','46'), ('25385','839','48','modem','0','47'), ('25386','839','49','aal5','0','48'), ('25387','839','50','sonetPath','0','49'), ('25388','839','51','sonetVT','0','50'), ('25389','839','52','smdsIcip','0','51'), ('25390','839','53','propVirtual','0','52'), ('25391','839','54','propMultiplexor','0','53'), ('25392','839','55','ieee80212','0','54'), ('25393','839','56','fibreChannel','0','55'), ('25394','839','57','hippiInterface','0','56'), ('25395','839','58','frameRelayInterconnect','0','57'), ('25396','839','59','aflane8023','0','58'), ('25397','839','60','aflane8025','0','59'), ('25398','839','61','cctEmul','0','60'), ('25399','839','62','fastEther','0','61'), ('25400','839','63','isdn','0','62'), ('25401','839','64','v11','0','63'), ('25402','839','65','v36','0','64'), ('25403','839','66','g703at64k','0','65'), ('25404','839','67','g703at2mb','0','66'), ('25405','839','68','qllc','0','67'), ('25406','839','69','fastEtherFX','0','68'), ('25407','839','70','channel','0','69'), ('25408','839','71','ieee80211','0','70'), ('25409','839','72','ibm370parChan','0','71'), ('25410','839','73','escon','0','72'), ('25411','839','74','dlsw','0','73'), ('25412','839','75','isdns','0','74'), ('25413','839','76','isdnu','0','75'), ('25414','839','77','lapd','0','76'), ('25415','839','78','ipSwitch','0','77'), ('25416','839','79','rsrb','0','78'), ('25417','839','80','atmLogical','0','79'), ('25418','839','81','ds0','0','80'), ('25419','839','82','ds0Bundle','0','81'), ('25420','839','83','bsc','0','82'), ('25421','839','84','async','0','83'), ('25422','839','85','cnr','0','84'), ('25423','839','86','iso88025Dtr','0','85'), ('25424','839','87','eplrs','0','86'), ('25425','839','88','arap','0','87'), ('25426','839','89','propCnls','0','88'), ('25427','839','90','hostPad','0','89'), ('25428','839','91','termPad','0','90'), ('25429','839','92','frameRelayMPI','0','91'), ('25430','839','93','x213','0','92'), ('25431','839','94','adsl','0','93'), ('25432','839','95','radsl','0','94'), ('25433','839','96','sdsl','0','95'), ('25434','839','97','vdsl','0','96'), ('25435','839','98','iso88025CRFPInt','0','97'), ('25436','839','99','myrinet','0','98'), ('25437','839','100','voiceEM','0','99'), ('25438','839','101','voiceFXO','0','100'), ('25439','839','102','voiceFXS','0','101'), ('25440','839','103','voiceEncap','0','102'), ('25441','839','104','voiceOverIp','0','103'), ('25442','839','105','atmDxi','0','104'), ('25443','839','106','atmFuni','0','105'), ('25444','839','107','atmIma','0','106'), ('25445','839','108','pppMultilinkBundle','0','107'), ('25446','839','109','ipOverCdlc','0','108'), ('25447','839','110','ipOverClaw','0','109'), ('25448','839','111','stackToStack','0','110'), ('25449','839','112','virtualIpAddress','0','111'), ('25450','839','113','mpc','0','112'), ('25451','839','114','ipOverAtm','0','113'), ('25452','839','115','iso88025Fiber','0','114'), ('25453','839','116','tdlc','0','115'), ('25454','839','117','gigabitEthernet','0','116'), ('25455','839','118','hdlc','0','117'), ('25456','839','119','lapf','0','118'), ('25457','839','120','v37','0','119'), ('25458','839','121','x25mlp','0','120'), ('25459','839','122','x25huntGroup','0','121'), ('25460','839','123','trasnpHdlc','0','122'), ('25461','839','124','interleave','0','123'), ('25462','839','125','fast','0','124'), ('25463','839','126','ip','0','125'), ('25464','839','127','docsCableMaclayer','0','126'), ('25465','839','128','docsCableDownstream','0','127'), ('25466','839','129','docsCableUpstream','0','128'), ('25467','839','130','a12MppSwitch','0','129'), ('25468','839','131','tunnel','0','130'), ('25469','839','132','coffee','0','131'), ('25470','839','133','ces','0','132'), ('25471','839','134','atmSubInterface','0','133'), ('25472','839','135','l2vlan','0','134'), ('25473','839','136','l3ipvlan','0','135'), ('25474','839','137','l3ipxvlan','0','136'), ('25475','839','138','digitalPowerline','0','137'), ('25476','839','139','mediaMailOverIp','0','138'), ('25477','839','140','dtm','0','139'), ('25478','839','141','dcn','0','140'), ('25479','839','142','ipForward','0','141'), ('25480','839','143','msdsl','0','142'), ('25481','839','144','ieee1394','0','143'), ('25482','839','145','if-gsn','0','144'), ('25483','839','146','dvbRccMacLayer','0','145'), ('25484','839','147','dvbRccDownstream','0','146'), ('25485','839','148','dvbRccUpstream','0','147'), ('25486','839','149','atmVirtual','0','148'), ('25487','839','150','mplsTunnel','0','149'), ('25488','839','151','srp','0','150'), ('25489','839','152','voiceOverAtm','0','151'), ('25490','839','153','voiceOverFrameRelay','0','152'), ('25491','839','154','idsl','0','153'), ('25492','839','155','compositeLink','0','154'), ('25493','839','156','ss7SigLink','0','155'), ('25494','839','157','propWirelessP2P','0','156'), ('25495','839','158','frForward','0','157'), ('25496','839','159','rfc1483','0','158'), ('25497','839','160','usb','0','159'), ('25498','839','161','ieee8023adLag','0','160'), ('25499','839','162','bgppolicyaccounting','0','161'), ('25500','839','163','frf16MfrBundle','0','162'), ('25501','839','164','h323Gatekeeper','0','163'), ('25502','839','165','h323Proxy','0','164'), ('25503','839','166','mpls','0','165'), ('25504','839','167','mfSigLink','0','166'), ('25505','839','168','hdsl2','0','167'), ('25506','839','169','shdsl','0','168'), ('25507','839','170','ds1FDL','0','169'), ('25508','839','171','pos','0','170'), ('25509','839','172','dvbAsiIn','0','171'), ('25510','839','173','dvbAsiOut','0','172'), ('25511','839','174','plc','0','173'), ('25512','839','175','nfas','0','174'), ('25513','839','176','tr008','0','175'), ('25514','839','177','gr303RDT','0','176'), ('25515','839','178','gr303IDT','0','177'), ('25516','839','179','isup','0','178'), ('25517','839','180','propDocsWirelessMaclayer','0','179'), ('25518','839','181','propDocsWirelessDownstream','0','180'), ('25519','839','182','propDocsWirelessUpstream','0','181'), ('25520','839','183','hiperlan2','0','182'), ('25521','839','184','propBWAp2Mp','0','183'), ('25522','839','185','sonetOverheadChannel','0','184'), ('25523','839','186','digitalWrapperOverheadChannel','0','185'), ('25524','839','187','aal2','0','186'), ('25525','839','188','radioMAC','0','187'), ('25526','839','189','atmRadio','0','188'), ('25527','839','190','imt','0','189'), ('25528','839','191','mvl','0','190'), ('25529','839','192','reachDSL','0','191'), ('25530','839','193','frDlciEndPt','0','192'), ('25531','839','194','atmVciEndPt','0','193'), ('25532','839','195','opticalChannel','0','194'), ('25533','839','196','opticalTransport','0','195'), ('25534','839','197','propAtm','0','196'), ('25535','839','198','voiceOverCable','0','197'), ('25536','839','199','infiniband','0','198'), ('25537','839','200','teLink','0','199'), ('25538','839','201','q2931','0','200'), ('25539','839','202','virtualTg','0','201'), ('25540','839','203','sipTg','0','202'), ('25541','839','204','sipSig','0','203'), ('25542','839','205','docsCableUpstreamChannel','0','204'), ('25543','839','206','econet','0','205'), ('25544','839','207','pon155','0','206'), ('25545','839','208','pon622','0','207'), ('25546','839','209','bridge','0','208'), ('25547','839','210','linegroup','0','209'), ('25548','839','211','voiceEMFGD','0','210'), ('25549','839','212','voiceFGDEANA','0','211'), ('25550','839','213','voiceDID','0','212'), ('25551','839','214','mpegTransport','0','213'), ('25552','839','215','sixToFour','0','214'), ('25553','839','216','gtp','0','215'), ('25554','839','217','pdnEtherLoop1','0','216'), ('25555','839','218','pdnEtherLoop2','0','217'), ('25556','839','219','opticalChannelGroup','0','218'), ('25557','839','220','homepna','0','219'), ('25558','839','221','gfp','0','220'), ('25559','839','222','ciscoISLvlan','0','221'), ('25560','839','223','actelisMetaLOOP','0','222'), ('25561','839','224','fcipLink','0','223'), ('25562','839','225','rpr','0','224'), ('25563','839','226','qam','0','225'), ('25564','839','227','lmp','0','226'), ('25565','839','228','cblVectaStar','0','227'), ('25566','839','229','docsCableMCmtsDownstream','0','228'), ('25567','839','230','adsl2','0','229'), ('25568','839','231','macSecControlledIF','0','230'), ('25569','839','232','macSecUncontrolledIF','0','231'), ('25570','839','233','aviciOpticalEther','0','232'), ('25571','839','234','atmbond','0','233'), ('25572','839','235','voiceFGDOS','0','234'), ('25573','839','236','mocaVersion1','0','235'), ('25574','839','237','ieee80216WMAN','0','236'), ('25575','839','238','adsl2plus','0','237'), ('25576','839','239','dvbRcsMacLayer','0','238'), ('25577','839','240','dvbTdm','0','239'), ('25578','839','241','dvbRcsTdma','0','240'), ('25579','839','242','x86Laps','0','241'), ('25580','839','243','wwanPP','0','242'), ('25581','839','244','wwanPP2','0','243'), ('25582','839','245','voiceEBS','0','244'), ('25583','839','246','ifPwType','0','245'), ('25584','839','247','ilan','0','246'), ('25585','839','248','pip','0','247'), ('25586','839','249','aluELP','0','248'), ('25587','839','250','gpon','0','249'), ('25588','839','251','vdsl2','0','250'), ('25589','839','252','capwapDot11Profile','0','251'), ('25590','839','253','capwapDot11Bss','0','252'), ('25591','839','254','capwapWtpVirtualRadio','0','253'), ('25592','839','255','bits','0','254'), ('25593','839','256','docsCableUpstreamRfPort','0','255'), ('25594','839','257','cableDownstreamRfPort','0','256'), ('25595','839','258','vmwareVirtualNic','0','257'), ('25596','839','259','ieee802154','0','258'), ('25597','839','260','otnOdu','0','259'), ('25598','839','261','otnOtu','0','260'), ('25599','839','262','ifVfiType','0','261'), ('25600','839','263','g9981','0','262'), ('25601','839','264','g9982','0','263'), ('25602','839','265','g9983','0','264'), ('25603','839','266','aluEpon','0','265'), ('25604','839','267','aluEponOnu','0','266'), ('25605','839','268','aluEponPhysicalUni','0','267'), ('25606','839','269','aluEponLogicalLink','0','268'), ('25607','839','270','aluGponOnu','0','269'), ('25608','839','271','aluGponPhysicalUni','0','270'), ('25609','839','272','vmwareNicTeam','0','271'), ('25610','839','277','docsOfdmDownstream','0','272'), ('25611','839','278','docsOfdmaUpstream','0','273'), ('25612','839','279','gfast','0','274'), ('25613','839','280','sdci','0','275'), ('25614','839','281','xboxWireless','0','276'), ('25615','839','282','fastdsl','0','277'), ('25616','839','283','docsCableScte55d1FwdOob','0','278'), ('25617','839','284','docsCableScte55d1RetOob','0','279'), ('25618','839','285','docsCableScte55d2DsOob','0','280'), ('25619','839','286','docsCableScte55d2UsOob','0','281'), ('25620','839','287','docsCableNdf','0','282'), ('25621','839','288','docsCableNdr','0','283'), ('25622','839','289','ptm','0','284'), ('25623','839','290','ghn','0','285'), ('25624','840','0','Down','0','0'), ('25625','840','1','Up','0','1'), ('25626','841','0','not available','0','0'), ('25627','841','1','available','0','1'), ('25628','841','2','unknown','0','2'), ('25629','842','1','up','0','0'), ('25630','842','2','down','0','1'), ('25631','842','4','unknown','0','2'), ('25632','842','5','dormant','0','3'), ('25633','842','6','notPresent','0','4'), ('25634','842','7','lowerLayerDown','0','5'), ('25635','843','1','other','0','0'), ('25636','843','2','regular1822','0','1'), ('25637','843','3','hdh1822','0','2'), ('25638','843','4','ddnX25','0','3'), ('25639','843','5','rfc877x25','0','4'), ('25640','843','6','ethernetCsmacd','0','5'), ('25641','843','7','iso88023Csmacd','0','6'), ('25642','843','8','iso88024TokenBus','0','7'), ('25643','843','9','iso88025TokenRing','0','8'), ('25644','843','10','iso88026Man','0','9'), ('25645','843','11','starLan','0','10'), ('25646','843','12','proteon10Mbit','0','11'), ('25647','843','13','proteon80Mbit','0','12'), ('25648','843','14','hyperchannel','0','13'), ('25649','843','15','fddi','0','14'), ('25650','843','16','lapb','0','15'), ('25651','843','17','sdlc','0','16'), ('25652','843','18','ds1','0','17'), ('25653','843','19','e1','0','18'), ('25654','843','20','basicISDN','0','19'), ('25655','843','21','primaryISDN','0','20'), ('25656','843','22','propPointToPointSerial','0','21'), ('25657','843','23','ppp','0','22'), ('25658','843','24','softwareLoopback','0','23'), ('25659','843','25','eon','0','24'), ('25660','843','26','ethernet3Mbit','0','25'), ('25661','843','27','nsip','0','26'), ('25662','843','28','slip','0','27'), ('25663','843','29','ultra','0','28'), ('25664','843','30','ds3','0','29'), ('25665','843','31','sip','0','30'), ('25666','843','32','frameRelay','0','31'), ('25667','843','33','rs232','0','32'), ('25668','843','34','para','0','33'), ('25669','843','35','arcnet','0','34'), ('25670','843','36','arcnetPlus','0','35'), ('25671','843','37','atm','0','36'), ('25672','843','38','miox25','0','37'), ('25673','843','39','sonet','0','38'), ('25674','843','40','x25ple','0','39'), ('25675','843','41','iso88022llc','0','40'), ('25676','843','42','localTalk','0','41'), ('25677','843','43','smdsDxi','0','42'), ('25678','843','44','frameRelayService','0','43'), ('25679','843','45','v35','0','44'), ('25680','843','46','hssi','0','45'), ('25681','843','47','hippi','0','46'), ('25682','843','48','modem','0','47'), ('25683','843','49','aal5','0','48'), ('25684','843','50','sonetPath','0','49'), ('25685','843','51','sonetVT','0','50'), ('25686','843','52','smdsIcip','0','51'), ('25687','843','53','propVirtual','0','52'), ('25688','843','54','propMultiplexor','0','53'), ('25689','843','55','ieee80212','0','54'), ('25690','843','56','fibreChannel','0','55'), ('25691','843','57','hippiInterface','0','56'), ('25692','843','58','frameRelayInterconnect','0','57'), ('25693','843','59','aflane8023','0','58'), ('25694','843','60','aflane8025','0','59'), ('25695','843','61','cctEmul','0','60'), ('25696','843','62','fastEther','0','61'), ('25697','843','63','isdn','0','62'), ('25698','843','64','v11','0','63'), ('25699','843','65','v36','0','64'), ('25700','843','66','g703at64k','0','65'), ('25701','843','67','g703at2mb','0','66'), ('25702','843','68','qllc','0','67'), ('25703','843','69','fastEtherFX','0','68'), ('25704','843','70','channel','0','69'), ('25705','843','71','ieee80211','0','70'), ('25706','843','72','ibm370parChan','0','71'), ('25707','843','73','escon','0','72'), ('25708','843','74','dlsw','0','73'), ('25709','843','75','isdns','0','74'), ('25710','843','76','isdnu','0','75'), ('25711','843','77','lapd','0','76'), ('25712','843','78','ipSwitch','0','77'), ('25713','843','79','rsrb','0','78'), ('25714','843','80','atmLogical','0','79'), ('25715','843','81','ds0','0','80'), ('25716','843','82','ds0Bundle','0','81'), ('25717','843','83','bsc','0','82'), ('25718','843','84','async','0','83'), ('25719','843','85','cnr','0','84'), ('25720','843','86','iso88025Dtr','0','85'), ('25721','843','87','eplrs','0','86'), ('25722','843','88','arap','0','87'), ('25723','843','89','propCnls','0','88'), ('25724','843','90','hostPad','0','89'), ('25725','843','91','termPad','0','90'), ('25726','843','92','frameRelayMPI','0','91'), ('25727','843','93','x213','0','92'), ('25728','843','94','adsl','0','93'), ('25729','843','95','radsl','0','94'), ('25730','843','96','sdsl','0','95'), ('25731','843','97','vdsl','0','96'), ('25732','843','98','iso88025CRFPInt','0','97'), ('25733','843','99','myrinet','0','98'), ('25734','843','100','voiceEM','0','99'), ('25735','843','101','voiceFXO','0','100'), ('25736','843','102','voiceFXS','0','101'), ('25737','843','103','voiceEncap','0','102'), ('25738','843','104','voiceOverIp','0','103'), ('25739','843','105','atmDxi','0','104'), ('25740','843','106','atmFuni','0','105'), ('25741','843','107','atmIma','0','106'), ('25742','843','108','pppMultilinkBundle','0','107'), ('25743','843','109','ipOverCdlc','0','108'), ('25744','843','110','ipOverClaw','0','109'), ('25745','843','111','stackToStack','0','110'), ('25746','843','112','virtualIpAddress','0','111'), ('25747','843','113','mpc','0','112'), ('25748','843','114','ipOverAtm','0','113'), ('25749','843','115','iso88025Fiber','0','114'), ('25750','843','116','tdlc','0','115'), ('25751','843','117','gigabitEthernet','0','116'), ('25752','843','118','hdlc','0','117'), ('25753','843','119','lapf','0','118'), ('25754','843','120','v37','0','119'), ('25755','843','121','x25mlp','0','120'), ('25756','843','122','x25huntGroup','0','121'), ('25757','843','123','trasnpHdlc','0','122'), ('25758','843','124','interleave','0','123'), ('25759','843','125','fast','0','124'), ('25760','843','126','ip','0','125'), ('25761','843','127','docsCableMaclayer','0','126'), ('25762','843','128','docsCableDownstream','0','127'), ('25763','843','129','docsCableUpstream','0','128'), ('25764','843','130','a12MppSwitch','0','129'), ('25765','843','131','tunnel','0','130'), ('25766','843','132','coffee','0','131'), ('25767','843','133','ces','0','132'), ('25768','843','134','atmSubInterface','0','133'), ('25769','843','135','l2vlan','0','134'), ('25770','843','136','l3ipvlan','0','135'), ('25771','843','137','l3ipxvlan','0','136'), ('25772','843','138','digitalPowerline','0','137'), ('25773','843','139','mediaMailOverIp','0','138'), ('25774','843','140','dtm','0','139'), ('25775','843','141','dcn','0','140'), ('25776','843','142','ipForward','0','141'), ('25777','843','143','msdsl','0','142'), ('25778','843','144','ieee1394','0','143'), ('25779','843','145','if-gsn','0','144'), ('25780','843','146','dvbRccMacLayer','0','145'), ('25781','843','147','dvbRccDownstream','0','146'), ('25782','843','148','dvbRccUpstream','0','147'), ('25783','843','149','atmVirtual','0','148'), ('25784','843','150','mplsTunnel','0','149'), ('25785','843','151','srp','0','150'), ('25786','843','152','voiceOverAtm','0','151'), ('25787','843','153','voiceOverFrameRelay','0','152'), ('25788','843','154','idsl','0','153'), ('25789','843','155','compositeLink','0','154'), ('25790','843','156','ss7SigLink','0','155'), ('25791','843','157','propWirelessP2P','0','156'), ('25792','843','158','frForward','0','157'), ('25793','843','159','rfc1483','0','158'), ('25794','843','160','usb','0','159'), ('25795','843','161','ieee8023adLag','0','160'), ('25796','843','162','bgppolicyaccounting','0','161'), ('25797','843','163','frf16MfrBundle','0','162'), ('25798','843','164','h323Gatekeeper','0','163'), ('25799','843','165','h323Proxy','0','164'), ('25800','843','166','mpls','0','165'), ('25801','843','167','mfSigLink','0','166'), ('25802','843','168','hdsl2','0','167'), ('25803','843','169','shdsl','0','168'), ('25804','843','170','ds1FDL','0','169'), ('25805','843','171','pos','0','170'), ('25806','843','172','dvbAsiIn','0','171'), ('25807','843','173','dvbAsiOut','0','172'), ('25808','843','174','plc','0','173'), ('25809','843','175','nfas','0','174'), ('25810','843','176','tr008','0','175'), ('25811','843','177','gr303RDT','0','176'), ('25812','843','178','gr303IDT','0','177'), ('25813','843','179','isup','0','178'), ('25814','843','180','propDocsWirelessMaclayer','0','179'), ('25815','843','181','propDocsWirelessDownstream','0','180'), ('25816','843','182','propDocsWirelessUpstream','0','181'), ('25817','843','183','hiperlan2','0','182'), ('25818','843','184','propBWAp2Mp','0','183'), ('25819','843','185','sonetOverheadChannel','0','184'), ('25820','843','186','digitalWrapperOverheadChannel','0','185'), ('25821','843','187','aal2','0','186'), ('25822','843','188','radioMAC','0','187'), ('25823','843','189','atmRadio','0','188'), ('25824','843','190','imt','0','189'), ('25825','843','191','mvl','0','190'), ('25826','843','192','reachDSL','0','191'), ('25827','843','193','frDlciEndPt','0','192'), ('25828','843','194','atmVciEndPt','0','193'), ('25829','843','195','opticalChannel','0','194'), ('25830','843','196','opticalTransport','0','195'), ('25831','843','197','propAtm','0','196'), ('25832','843','198','voiceOverCable','0','197'), ('25833','843','199','infiniband','0','198'), ('25834','843','200','teLink','0','199'), ('25835','843','201','q2931','0','200'), ('25836','843','202','virtualTg','0','201'), ('25837','843','203','sipTg','0','202'), ('25838','843','204','sipSig','0','203'), ('25839','843','205','docsCableUpstreamChannel','0','204'), ('25840','843','206','econet','0','205'), ('25841','843','207','pon155','0','206'), ('25842','843','208','pon622','0','207'), ('25843','843','209','bridge','0','208'), ('25844','843','210','linegroup','0','209'), ('25845','843','211','voiceEMFGD','0','210'), ('25846','843','212','voiceFGDEANA','0','211'), ('25847','843','213','voiceDID','0','212'), ('25848','843','214','mpegTransport','0','213'), ('25849','843','215','sixToFour','0','214'), ('25850','843','216','gtp','0','215'), ('25851','843','217','pdnEtherLoop1','0','216'), ('25852','843','218','pdnEtherLoop2','0','217'), ('25853','843','219','opticalChannelGroup','0','218'), ('25854','843','220','homepna','0','219'), ('25855','843','221','gfp','0','220'), ('25856','843','222','ciscoISLvlan','0','221'), ('25857','843','223','actelisMetaLOOP','0','222'), ('25858','843','224','fcipLink','0','223'), ('25859','843','225','rpr','0','224'), ('25860','843','226','qam','0','225'), ('25861','843','227','lmp','0','226'), ('25862','843','228','cblVectaStar','0','227'), ('25863','843','229','docsCableMCmtsDownstream','0','228'), ('25864','843','230','adsl2','0','229'), ('25865','843','231','macSecControlledIF','0','230'), ('25866','843','232','macSecUncontrolledIF','0','231'), ('25867','843','233','aviciOpticalEther','0','232'), ('25868','843','234','atmbond','0','233'), ('25869','843','235','voiceFGDOS','0','234'), ('25870','843','236','mocaVersion1','0','235'), ('25871','843','237','ieee80216WMAN','0','236'), ('25872','843','238','adsl2plus','0','237'), ('25873','843','239','dvbRcsMacLayer','0','238'), ('25874','843','240','dvbTdm','0','239'), ('25875','843','241','dvbRcsTdma','0','240'), ('25876','843','242','x86Laps','0','241'), ('25877','843','243','wwanPP','0','242'), ('25878','843','244','wwanPP2','0','243'), ('25879','843','245','voiceEBS','0','244'), ('25880','843','246','ifPwType','0','245'), ('25881','843','247','ilan','0','246'), ('25882','843','248','pip','0','247'), ('25883','843','249','aluELP','0','248'), ('25884','843','250','gpon','0','249'), ('25885','843','251','vdsl2','0','250'), ('25886','843','252','capwapDot11Profile','0','251'), ('25887','843','253','capwapDot11Bss','0','252'), ('25888','843','254','capwapWtpVirtualRadio','0','253'), ('25889','843','255','bits','0','254'), ('25890','843','256','docsCableUpstreamRfPort','0','255'), ('25891','843','257','cableDownstreamRfPort','0','256'), ('25892','843','258','vmwareVirtualNic','0','257'), ('25893','843','259','ieee802154','0','258'), ('25894','843','260','otnOdu','0','259'), ('25895','843','261','otnOtu','0','260'), ('25896','843','262','ifVfiType','0','261'), ('25897','843','263','g9981','0','262'), ('25898','843','264','g9982','0','263'), ('25899','843','265','g9983','0','264'), ('25900','843','266','aluEpon','0','265'), ('25901','843','267','aluEponOnu','0','266'), ('25902','843','268','aluEponPhysicalUni','0','267'), ('25903','843','269','aluEponLogicalLink','0','268'), ('25904','843','270','aluGponOnu','0','269'), ('25905','843','271','aluGponPhysicalUni','0','270'), ('25906','843','272','vmwareNicTeam','0','271'), ('25907','843','277','docsOfdmDownstream','0','272'), ('25908','843','278','docsOfdmaUpstream','0','273'), ('25909','843','279','gfast','0','274'), ('25910','843','280','sdci','0','275'), ('25911','843','281','xboxWireless','0','276'), ('25912','843','282','fastdsl','0','277'), ('25913','843','283','docsCableScte55d1FwdOob','0','278'), ('25914','843','284','docsCableScte55d1RetOob','0','279'), ('25915','843','285','docsCableScte55d2DsOob','0','280'), ('25916','843','286','docsCableScte55d2UsOob','0','281'), ('25917','843','287','docsCableNdf','0','282'), ('25918','843','288','docsCableNdr','0','283'), ('25919','843','289','ptm','0','284'), ('25920','843','290','ghn','0','285'), ('25921','844','0','Down','0','0'), ('25922','844','1','Up','0','1'), ('25923','845','0','not available','0','0'), ('25924','845','1','available','0','1'), ('25925','845','2','unknown','0','2'), ('25926','846','1','up','0','0'), ('25927','846','2','down','0','1'), ('25928','846','4','unknown','0','2'), ('25929','846','5','dormant','0','3'), ('25930','846','6','notPresent','0','4'), ('25931','846','7','lowerLayerDown','0','5'), ('25932','847','1','other','0','0'), ('25933','847','2','regular1822','0','1'), ('25934','847','3','hdh1822','0','2'), ('25935','847','4','ddnX25','0','3'), ('25936','847','5','rfc877x25','0','4'), ('25937','847','6','ethernetCsmacd','0','5'), ('25938','847','7','iso88023Csmacd','0','6'), ('25939','847','8','iso88024TokenBus','0','7'), ('25940','847','9','iso88025TokenRing','0','8'), ('25941','847','10','iso88026Man','0','9'), ('25942','847','11','starLan','0','10'), ('25943','847','12','proteon10Mbit','0','11'), ('25944','847','13','proteon80Mbit','0','12'), ('25945','847','14','hyperchannel','0','13'), ('25946','847','15','fddi','0','14'), ('25947','847','16','lapb','0','15'), ('25948','847','17','sdlc','0','16'), ('25949','847','18','ds1','0','17'), ('25950','847','19','e1','0','18'), ('25951','847','20','basicISDN','0','19'), ('25952','847','21','primaryISDN','0','20'), ('25953','847','22','propPointToPointSerial','0','21'), ('25954','847','23','ppp','0','22'), ('25955','847','24','softwareLoopback','0','23'), ('25956','847','25','eon','0','24'), ('25957','847','26','ethernet3Mbit','0','25'), ('25958','847','27','nsip','0','26'), ('25959','847','28','slip','0','27'), ('25960','847','29','ultra','0','28'), ('25961','847','30','ds3','0','29'), ('25962','847','31','sip','0','30'), ('25963','847','32','frameRelay','0','31'), ('25964','847','33','rs232','0','32'), ('25965','847','34','para','0','33'), ('25966','847','35','arcnet','0','34'), ('25967','847','36','arcnetPlus','0','35'), ('25968','847','37','atm','0','36'), ('25969','847','38','miox25','0','37'), ('25970','847','39','sonet','0','38'), ('25971','847','40','x25ple','0','39'), ('25972','847','41','iso88022llc','0','40'), ('25973','847','42','localTalk','0','41'), ('25974','847','43','smdsDxi','0','42'), ('25975','847','44','frameRelayService','0','43'), ('25976','847','45','v35','0','44'), ('25977','847','46','hssi','0','45'), ('25978','847','47','hippi','0','46'), ('25979','847','48','modem','0','47'), ('25980','847','49','aal5','0','48'), ('25981','847','50','sonetPath','0','49'), ('25982','847','51','sonetVT','0','50'), ('25983','847','52','smdsIcip','0','51'), ('25984','847','53','propVirtual','0','52'), ('25985','847','54','propMultiplexor','0','53'), ('25986','847','55','ieee80212','0','54'), ('25987','847','56','fibreChannel','0','55'), ('25988','847','57','hippiInterface','0','56'), ('25989','847','58','frameRelayInterconnect','0','57'), ('25990','847','59','aflane8023','0','58'), ('25991','847','60','aflane8025','0','59'), ('25992','847','61','cctEmul','0','60'), ('25993','847','62','fastEther','0','61'), ('25994','847','63','isdn','0','62'), ('25995','847','64','v11','0','63'), ('25996','847','65','v36','0','64'), ('25997','847','66','g703at64k','0','65'), ('25998','847','67','g703at2mb','0','66'), ('25999','847','68','qllc','0','67'), ('26000','847','69','fastEtherFX','0','68'), ('26001','847','70','channel','0','69'), ('26002','847','71','ieee80211','0','70'), ('26003','847','72','ibm370parChan','0','71'), ('26004','847','73','escon','0','72'), ('26005','847','74','dlsw','0','73'), ('26006','847','75','isdns','0','74'), ('26007','847','76','isdnu','0','75'), ('26008','847','77','lapd','0','76'), ('26009','847','78','ipSwitch','0','77'), ('26010','847','79','rsrb','0','78'), ('26011','847','80','atmLogical','0','79'), ('26012','847','81','ds0','0','80'), ('26013','847','82','ds0Bundle','0','81'), ('26014','847','83','bsc','0','82'), ('26015','847','84','async','0','83'), ('26016','847','85','cnr','0','84'), ('26017','847','86','iso88025Dtr','0','85'), ('26018','847','87','eplrs','0','86'), ('26019','847','88','arap','0','87'), ('26020','847','89','propCnls','0','88'), ('26021','847','90','hostPad','0','89'), ('26022','847','91','termPad','0','90'), ('26023','847','92','frameRelayMPI','0','91'), ('26024','847','93','x213','0','92'), ('26025','847','94','adsl','0','93'), ('26026','847','95','radsl','0','94'), ('26027','847','96','sdsl','0','95'), ('26028','847','97','vdsl','0','96'), ('26029','847','98','iso88025CRFPInt','0','97'), ('26030','847','99','myrinet','0','98'), ('26031','847','100','voiceEM','0','99'), ('26032','847','101','voiceFXO','0','100'), ('26033','847','102','voiceFXS','0','101'), ('26034','847','103','voiceEncap','0','102'), ('26035','847','104','voiceOverIp','0','103'), ('26036','847','105','atmDxi','0','104'), ('26037','847','106','atmFuni','0','105'), ('26038','847','107','atmIma','0','106'), ('26039','847','108','pppMultilinkBundle','0','107'), ('26040','847','109','ipOverCdlc','0','108'), ('26041','847','110','ipOverClaw','0','109'), ('26042','847','111','stackToStack','0','110'), ('26043','847','112','virtualIpAddress','0','111'), ('26044','847','113','mpc','0','112'), ('26045','847','114','ipOverAtm','0','113'), ('26046','847','115','iso88025Fiber','0','114'), ('26047','847','116','tdlc','0','115'), ('26048','847','117','gigabitEthernet','0','116'), ('26049','847','118','hdlc','0','117'), ('26050','847','119','lapf','0','118'), ('26051','847','120','v37','0','119'), ('26052','847','121','x25mlp','0','120'), ('26053','847','122','x25huntGroup','0','121'), ('26054','847','123','trasnpHdlc','0','122'), ('26055','847','124','interleave','0','123'), ('26056','847','125','fast','0','124'), ('26057','847','126','ip','0','125'), ('26058','847','127','docsCableMaclayer','0','126'), ('26059','847','128','docsCableDownstream','0','127'), ('26060','847','129','docsCableUpstream','0','128'), ('26061','847','130','a12MppSwitch','0','129'), ('26062','847','131','tunnel','0','130'), ('26063','847','132','coffee','0','131'), ('26064','847','133','ces','0','132'), ('26065','847','134','atmSubInterface','0','133'), ('26066','847','135','l2vlan','0','134'), ('26067','847','136','l3ipvlan','0','135'), ('26068','847','137','l3ipxvlan','0','136'), ('26069','847','138','digitalPowerline','0','137'), ('26070','847','139','mediaMailOverIp','0','138'), ('26071','847','140','dtm','0','139'), ('26072','847','141','dcn','0','140'), ('26073','847','142','ipForward','0','141'), ('26074','847','143','msdsl','0','142'), ('26075','847','144','ieee1394','0','143'), ('26076','847','145','if-gsn','0','144'), ('26077','847','146','dvbRccMacLayer','0','145'), ('26078','847','147','dvbRccDownstream','0','146'), ('26079','847','148','dvbRccUpstream','0','147'), ('26080','847','149','atmVirtual','0','148'), ('26081','847','150','mplsTunnel','0','149'), ('26082','847','151','srp','0','150'), ('26083','847','152','voiceOverAtm','0','151'), ('26084','847','153','voiceOverFrameRelay','0','152'), ('26085','847','154','idsl','0','153'), ('26086','847','155','compositeLink','0','154'), ('26087','847','156','ss7SigLink','0','155'), ('26088','847','157','propWirelessP2P','0','156'), ('26089','847','158','frForward','0','157'), ('26090','847','159','rfc1483','0','158'), ('26091','847','160','usb','0','159'), ('26092','847','161','ieee8023adLag','0','160'), ('26093','847','162','bgppolicyaccounting','0','161'), ('26094','847','163','frf16MfrBundle','0','162'), ('26095','847','164','h323Gatekeeper','0','163'), ('26096','847','165','h323Proxy','0','164'), ('26097','847','166','mpls','0','165'), ('26098','847','167','mfSigLink','0','166'), ('26099','847','168','hdsl2','0','167'), ('26100','847','169','shdsl','0','168'), ('26101','847','170','ds1FDL','0','169'), ('26102','847','171','pos','0','170'), ('26103','847','172','dvbAsiIn','0','171'), ('26104','847','173','dvbAsiOut','0','172'), ('26105','847','174','plc','0','173'), ('26106','847','175','nfas','0','174'), ('26107','847','176','tr008','0','175'), ('26108','847','177','gr303RDT','0','176'), ('26109','847','178','gr303IDT','0','177'), ('26110','847','179','isup','0','178'), ('26111','847','180','propDocsWirelessMaclayer','0','179'), ('26112','847','181','propDocsWirelessDownstream','0','180'), ('26113','847','182','propDocsWirelessUpstream','0','181'), ('26114','847','183','hiperlan2','0','182'), ('26115','847','184','propBWAp2Mp','0','183'), ('26116','847','185','sonetOverheadChannel','0','184'), ('26117','847','186','digitalWrapperOverheadChannel','0','185'), ('26118','847','187','aal2','0','186'), ('26119','847','188','radioMAC','0','187'), ('26120','847','189','atmRadio','0','188'), ('26121','847','190','imt','0','189'), ('26122','847','191','mvl','0','190'), ('26123','847','192','reachDSL','0','191'), ('26124','847','193','frDlciEndPt','0','192'), ('26125','847','194','atmVciEndPt','0','193'), ('26126','847','195','opticalChannel','0','194'), ('26127','847','196','opticalTransport','0','195'), ('26128','847','197','propAtm','0','196'), ('26129','847','198','voiceOverCable','0','197'), ('26130','847','199','infiniband','0','198'), ('26131','847','200','teLink','0','199'), ('26132','847','201','q2931','0','200'), ('26133','847','202','virtualTg','0','201'), ('26134','847','203','sipTg','0','202'), ('26135','847','204','sipSig','0','203'), ('26136','847','205','docsCableUpstreamChannel','0','204'), ('26137','847','206','econet','0','205'), ('26138','847','207','pon155','0','206'), ('26139','847','208','pon622','0','207'), ('26140','847','209','bridge','0','208'), ('26141','847','210','linegroup','0','209'), ('26142','847','211','voiceEMFGD','0','210'), ('26143','847','212','voiceFGDEANA','0','211'), ('26144','847','213','voiceDID','0','212'), ('26145','847','214','mpegTransport','0','213'), ('26146','847','215','sixToFour','0','214'), ('26147','847','216','gtp','0','215'), ('26148','847','217','pdnEtherLoop1','0','216'), ('26149','847','218','pdnEtherLoop2','0','217'), ('26150','847','219','opticalChannelGroup','0','218'), ('26151','847','220','homepna','0','219'), ('26152','847','221','gfp','0','220'), ('26153','847','222','ciscoISLvlan','0','221'), ('26154','847','223','actelisMetaLOOP','0','222'), ('26155','847','224','fcipLink','0','223'), ('26156','847','225','rpr','0','224'), ('26157','847','226','qam','0','225'), ('26158','847','227','lmp','0','226'), ('26159','847','228','cblVectaStar','0','227'), ('26160','847','229','docsCableMCmtsDownstream','0','228'), ('26161','847','230','adsl2','0','229'), ('26162','847','231','macSecControlledIF','0','230'), ('26163','847','232','macSecUncontrolledIF','0','231'), ('26164','847','233','aviciOpticalEther','0','232'), ('26165','847','234','atmbond','0','233'), ('26166','847','235','voiceFGDOS','0','234'), ('26167','847','236','mocaVersion1','0','235'), ('26168','847','237','ieee80216WMAN','0','236'), ('26169','847','238','adsl2plus','0','237'), ('26170','847','239','dvbRcsMacLayer','0','238'), ('26171','847','240','dvbTdm','0','239'), ('26172','847','241','dvbRcsTdma','0','240'), ('26173','847','242','x86Laps','0','241'), ('26174','847','243','wwanPP','0','242'), ('26175','847','244','wwanPP2','0','243'), ('26176','847','245','voiceEBS','0','244'), ('26177','847','246','ifPwType','0','245'), ('26178','847','247','ilan','0','246'), ('26179','847','248','pip','0','247'), ('26180','847','249','aluELP','0','248'), ('26181','847','250','gpon','0','249'), ('26182','847','251','vdsl2','0','250'), ('26183','847','252','capwapDot11Profile','0','251'), ('26184','847','253','capwapDot11Bss','0','252'), ('26185','847','254','capwapWtpVirtualRadio','0','253'), ('26186','847','255','bits','0','254'), ('26187','847','256','docsCableUpstreamRfPort','0','255'), ('26188','847','257','cableDownstreamRfPort','0','256'), ('26189','847','258','vmwareVirtualNic','0','257'), ('26190','847','259','ieee802154','0','258'), ('26191','847','260','otnOdu','0','259'), ('26192','847','261','otnOtu','0','260'), ('26193','847','262','ifVfiType','0','261'), ('26194','847','263','g9981','0','262'), ('26195','847','264','g9982','0','263'), ('26196','847','265','g9983','0','264'), ('26197','847','266','aluEpon','0','265'), ('26198','847','267','aluEponOnu','0','266'), ('26199','847','268','aluEponPhysicalUni','0','267'), ('26200','847','269','aluEponLogicalLink','0','268'), ('26201','847','270','aluGponOnu','0','269'), ('26202','847','271','aluGponPhysicalUni','0','270'), ('26203','847','272','vmwareNicTeam','0','271'), ('26204','847','277','docsOfdmDownstream','0','272'), ('26205','847','278','docsOfdmaUpstream','0','273'), ('26206','847','279','gfast','0','274'), ('26207','847','280','sdci','0','275'), ('26208','847','281','xboxWireless','0','276'), ('26209','847','282','fastdsl','0','277'), ('26210','847','283','docsCableScte55d1FwdOob','0','278'), ('26211','847','284','docsCableScte55d1RetOob','0','279'), ('26212','847','285','docsCableScte55d2DsOob','0','280'), ('26213','847','286','docsCableScte55d2UsOob','0','281'), ('26214','847','287','docsCableNdf','0','282'), ('26215','847','288','docsCableNdr','0','283'), ('26216','847','289','ptm','0','284'), ('26217','847','290','ghn','0','285'), ('26218','848','0','Down','0','0'), ('26219','848','1','Up','0','1'), ('26220','849','0','not available','0','0'), ('26221','849','1','available','0','1'), ('26222','849','2','unknown','0','2'), ('26223','850','1','up','0','0'), ('26224','850','2','down','0','1'), ('26225','850','4','unknown','0','2'), ('26226','850','5','dormant','0','3'), ('26227','850','6','notPresent','0','4'), ('26228','850','7','lowerLayerDown','0','5'), ('26229','851','1','other','0','0'), ('26230','851','2','regular1822','0','1'), ('26231','851','3','hdh1822','0','2'), ('26232','851','4','ddnX25','0','3'), ('26233','851','5','rfc877x25','0','4'), ('26234','851','6','ethernetCsmacd','0','5'), ('26235','851','7','iso88023Csmacd','0','6'), ('26236','851','8','iso88024TokenBus','0','7'), ('26237','851','9','iso88025TokenRing','0','8'), ('26238','851','10','iso88026Man','0','9'), ('26239','851','11','starLan','0','10'), ('26240','851','12','proteon10Mbit','0','11'), ('26241','851','13','proteon80Mbit','0','12'), ('26242','851','14','hyperchannel','0','13'), ('26243','851','15','fddi','0','14'), ('26244','851','16','lapb','0','15'), ('26245','851','17','sdlc','0','16'), ('26246','851','18','ds1','0','17'), ('26247','851','19','e1','0','18'), ('26248','851','20','basicISDN','0','19'), ('26249','851','21','primaryISDN','0','20'), ('26250','851','22','propPointToPointSerial','0','21'), ('26251','851','23','ppp','0','22'), ('26252','851','24','softwareLoopback','0','23'), ('26253','851','25','eon','0','24'), ('26254','851','26','ethernet3Mbit','0','25'), ('26255','851','27','nsip','0','26'), ('26256','851','28','slip','0','27'), ('26257','851','29','ultra','0','28'), ('26258','851','30','ds3','0','29'), ('26259','851','31','sip','0','30'), ('26260','851','32','frameRelay','0','31'), ('26261','851','33','rs232','0','32'), ('26262','851','34','para','0','33'), ('26263','851','35','arcnet','0','34'), ('26264','851','36','arcnetPlus','0','35'), ('26265','851','37','atm','0','36'), ('26266','851','38','miox25','0','37'), ('26267','851','39','sonet','0','38'), ('26268','851','40','x25ple','0','39'), ('26269','851','41','iso88022llc','0','40'), ('26270','851','42','localTalk','0','41'), ('26271','851','43','smdsDxi','0','42'), ('26272','851','44','frameRelayService','0','43'), ('26273','851','45','v35','0','44'), ('26274','851','46','hssi','0','45'), ('26275','851','47','hippi','0','46'), ('26276','851','48','modem','0','47'), ('26277','851','49','aal5','0','48'), ('26278','851','50','sonetPath','0','49'), ('26279','851','51','sonetVT','0','50'), ('26280','851','52','smdsIcip','0','51'), ('26281','851','53','propVirtual','0','52'), ('26282','851','54','propMultiplexor','0','53'), ('26283','851','55','ieee80212','0','54'), ('26284','851','56','fibreChannel','0','55'), ('26285','851','57','hippiInterface','0','56'), ('26286','851','58','frameRelayInterconnect','0','57'), ('26287','851','59','aflane8023','0','58'), ('26288','851','60','aflane8025','0','59'), ('26289','851','61','cctEmul','0','60'), ('26290','851','62','fastEther','0','61'), ('26291','851','63','isdn','0','62'), ('26292','851','64','v11','0','63'), ('26293','851','65','v36','0','64'), ('26294','851','66','g703at64k','0','65'), ('26295','851','67','g703at2mb','0','66'), ('26296','851','68','qllc','0','67'), ('26297','851','69','fastEtherFX','0','68'), ('26298','851','70','channel','0','69'), ('26299','851','71','ieee80211','0','70'), ('26300','851','72','ibm370parChan','0','71'), ('26301','851','73','escon','0','72'), ('26302','851','74','dlsw','0','73'), ('26303','851','75','isdns','0','74'), ('26304','851','76','isdnu','0','75'), ('26305','851','77','lapd','0','76'), ('26306','851','78','ipSwitch','0','77'), ('26307','851','79','rsrb','0','78'), ('26308','851','80','atmLogical','0','79'), ('26309','851','81','ds0','0','80'), ('26310','851','82','ds0Bundle','0','81'), ('26311','851','83','bsc','0','82'), ('26312','851','84','async','0','83'), ('26313','851','85','cnr','0','84'), ('26314','851','86','iso88025Dtr','0','85'), ('26315','851','87','eplrs','0','86'), ('26316','851','88','arap','0','87'), ('26317','851','89','propCnls','0','88'), ('26318','851','90','hostPad','0','89'), ('26319','851','91','termPad','0','90'), ('26320','851','92','frameRelayMPI','0','91'), ('26321','851','93','x213','0','92'), ('26322','851','94','adsl','0','93'), ('26323','851','95','radsl','0','94'), ('26324','851','96','sdsl','0','95'), ('26325','851','97','vdsl','0','96'), ('26326','851','98','iso88025CRFPInt','0','97'), ('26327','851','99','myrinet','0','98'), ('26328','851','100','voiceEM','0','99'), ('26329','851','101','voiceFXO','0','100'), ('26330','851','102','voiceFXS','0','101'), ('26331','851','103','voiceEncap','0','102'), ('26332','851','104','voiceOverIp','0','103'), ('26333','851','105','atmDxi','0','104'), ('26334','851','106','atmFuni','0','105'), ('26335','851','107','atmIma','0','106'), ('26336','851','108','pppMultilinkBundle','0','107'), ('26337','851','109','ipOverCdlc','0','108'), ('26338','851','110','ipOverClaw','0','109'), ('26339','851','111','stackToStack','0','110'), ('26340','851','112','virtualIpAddress','0','111'), ('26341','851','113','mpc','0','112'), ('26342','851','114','ipOverAtm','0','113'), ('26343','851','115','iso88025Fiber','0','114'), ('26344','851','116','tdlc','0','115'), ('26345','851','117','gigabitEthernet','0','116'), ('26346','851','118','hdlc','0','117'), ('26347','851','119','lapf','0','118'), ('26348','851','120','v37','0','119'), ('26349','851','121','x25mlp','0','120'), ('26350','851','122','x25huntGroup','0','121'), ('26351','851','123','trasnpHdlc','0','122'), ('26352','851','124','interleave','0','123'), ('26353','851','125','fast','0','124'), ('26354','851','126','ip','0','125'), ('26355','851','127','docsCableMaclayer','0','126'), ('26356','851','128','docsCableDownstream','0','127'), ('26357','851','129','docsCableUpstream','0','128'), ('26358','851','130','a12MppSwitch','0','129'), ('26359','851','131','tunnel','0','130'), ('26360','851','132','coffee','0','131'), ('26361','851','133','ces','0','132'), ('26362','851','134','atmSubInterface','0','133'), ('26363','851','135','l2vlan','0','134'), ('26364','851','136','l3ipvlan','0','135'), ('26365','851','137','l3ipxvlan','0','136'), ('26366','851','138','digitalPowerline','0','137'), ('26367','851','139','mediaMailOverIp','0','138'), ('26368','851','140','dtm','0','139'), ('26369','851','141','dcn','0','140'), ('26370','851','142','ipForward','0','141'), ('26371','851','143','msdsl','0','142'), ('26372','851','144','ieee1394','0','143'), ('26373','851','145','if-gsn','0','144'), ('26374','851','146','dvbRccMacLayer','0','145'), ('26375','851','147','dvbRccDownstream','0','146'), ('26376','851','148','dvbRccUpstream','0','147'), ('26377','851','149','atmVirtual','0','148'), ('26378','851','150','mplsTunnel','0','149'), ('26379','851','151','srp','0','150'), ('26380','851','152','voiceOverAtm','0','151'), ('26381','851','153','voiceOverFrameRelay','0','152'), ('26382','851','154','idsl','0','153'), ('26383','851','155','compositeLink','0','154'), ('26384','851','156','ss7SigLink','0','155'), ('26385','851','157','propWirelessP2P','0','156'), ('26386','851','158','frForward','0','157'), ('26387','851','159','rfc1483','0','158'), ('26388','851','160','usb','0','159'), ('26389','851','161','ieee8023adLag','0','160'), ('26390','851','162','bgppolicyaccounting','0','161'), ('26391','851','163','frf16MfrBundle','0','162'), ('26392','851','164','h323Gatekeeper','0','163'), ('26393','851','165','h323Proxy','0','164'), ('26394','851','166','mpls','0','165'), ('26395','851','167','mfSigLink','0','166'), ('26396','851','168','hdsl2','0','167'), ('26397','851','169','shdsl','0','168'), ('26398','851','170','ds1FDL','0','169'), ('26399','851','171','pos','0','170'), ('26400','851','172','dvbAsiIn','0','171'), ('26401','851','173','dvbAsiOut','0','172'), ('26402','851','174','plc','0','173'), ('26403','851','175','nfas','0','174'), ('26404','851','176','tr008','0','175'), ('26405','851','177','gr303RDT','0','176'), ('26406','851','178','gr303IDT','0','177'), ('26407','851','179','isup','0','178'), ('26408','851','180','propDocsWirelessMaclayer','0','179'), ('26409','851','181','propDocsWirelessDownstream','0','180'), ('26410','851','182','propDocsWirelessUpstream','0','181'), ('26411','851','183','hiperlan2','0','182'), ('26412','851','184','propBWAp2Mp','0','183'), ('26413','851','185','sonetOverheadChannel','0','184'), ('26414','851','186','digitalWrapperOverheadChannel','0','185'), ('26415','851','187','aal2','0','186'), ('26416','851','188','radioMAC','0','187'), ('26417','851','189','atmRadio','0','188'), ('26418','851','190','imt','0','189'), ('26419','851','191','mvl','0','190'), ('26420','851','192','reachDSL','0','191'), ('26421','851','193','frDlciEndPt','0','192'), ('26422','851','194','atmVciEndPt','0','193'), ('26423','851','195','opticalChannel','0','194'), ('26424','851','196','opticalTransport','0','195'), ('26425','851','197','propAtm','0','196'), ('26426','851','198','voiceOverCable','0','197'), ('26427','851','199','infiniband','0','198'), ('26428','851','200','teLink','0','199'), ('26429','851','201','q2931','0','200'), ('26430','851','202','virtualTg','0','201'), ('26431','851','203','sipTg','0','202'), ('26432','851','204','sipSig','0','203'), ('26433','851','205','docsCableUpstreamChannel','0','204'), ('26434','851','206','econet','0','205'), ('26435','851','207','pon155','0','206'), ('26436','851','208','pon622','0','207'), ('26437','851','209','bridge','0','208'), ('26438','851','210','linegroup','0','209'), ('26439','851','211','voiceEMFGD','0','210'), ('26440','851','212','voiceFGDEANA','0','211'), ('26441','851','213','voiceDID','0','212'), ('26442','851','214','mpegTransport','0','213'), ('26443','851','215','sixToFour','0','214'), ('26444','851','216','gtp','0','215'), ('26445','851','217','pdnEtherLoop1','0','216'), ('26446','851','218','pdnEtherLoop2','0','217'), ('26447','851','219','opticalChannelGroup','0','218'), ('26448','851','220','homepna','0','219'), ('26449','851','221','gfp','0','220'), ('26450','851','222','ciscoISLvlan','0','221'), ('26451','851','223','actelisMetaLOOP','0','222'), ('26452','851','224','fcipLink','0','223'), ('26453','851','225','rpr','0','224'), ('26454','851','226','qam','0','225'), ('26455','851','227','lmp','0','226'), ('26456','851','228','cblVectaStar','0','227'), ('26457','851','229','docsCableMCmtsDownstream','0','228'), ('26458','851','230','adsl2','0','229'), ('26459','851','231','macSecControlledIF','0','230'), ('26460','851','232','macSecUncontrolledIF','0','231'), ('26461','851','233','aviciOpticalEther','0','232'), ('26462','851','234','atmbond','0','233'), ('26463','851','235','voiceFGDOS','0','234'), ('26464','851','236','mocaVersion1','0','235'), ('26465','851','237','ieee80216WMAN','0','236'), ('26466','851','238','adsl2plus','0','237'), ('26467','851','239','dvbRcsMacLayer','0','238'), ('26468','851','240','dvbTdm','0','239'), ('26469','851','241','dvbRcsTdma','0','240'), ('26470','851','242','x86Laps','0','241'), ('26471','851','243','wwanPP','0','242'), ('26472','851','244','wwanPP2','0','243'), ('26473','851','245','voiceEBS','0','244'), ('26474','851','246','ifPwType','0','245'), ('26475','851','247','ilan','0','246'), ('26476','851','248','pip','0','247'), ('26477','851','249','aluELP','0','248'), ('26478','851','250','gpon','0','249'), ('26479','851','251','vdsl2','0','250'), ('26480','851','252','capwapDot11Profile','0','251'), ('26481','851','253','capwapDot11Bss','0','252'), ('26482','851','254','capwapWtpVirtualRadio','0','253'), ('26483','851','255','bits','0','254'), ('26484','851','256','docsCableUpstreamRfPort','0','255'), ('26485','851','257','cableDownstreamRfPort','0','256'), ('26486','851','258','vmwareVirtualNic','0','257'), ('26487','851','259','ieee802154','0','258'), ('26488','851','260','otnOdu','0','259'), ('26489','851','261','otnOtu','0','260'), ('26490','851','262','ifVfiType','0','261'), ('26491','851','263','g9981','0','262'), ('26492','851','264','g9982','0','263'), ('26493','851','265','g9983','0','264'), ('26494','851','266','aluEpon','0','265'), ('26495','851','267','aluEponOnu','0','266'), ('26496','851','268','aluEponPhysicalUni','0','267'), ('26497','851','269','aluEponLogicalLink','0','268'), ('26498','851','270','aluGponOnu','0','269'), ('26499','851','271','aluGponPhysicalUni','0','270'), ('26500','851','272','vmwareNicTeam','0','271'), ('26501','851','277','docsOfdmDownstream','0','272'), ('26502','851','278','docsOfdmaUpstream','0','273'), ('26503','851','279','gfast','0','274'), ('26504','851','280','sdci','0','275'), ('26505','851','281','xboxWireless','0','276'), ('26506','851','282','fastdsl','0','277'), ('26507','851','283','docsCableScte55d1FwdOob','0','278'), ('26508','851','284','docsCableScte55d1RetOob','0','279'), ('26509','851','285','docsCableScte55d2DsOob','0','280'), ('26510','851','286','docsCableScte55d2UsOob','0','281'), ('26511','851','287','docsCableNdf','0','282'), ('26512','851','288','docsCableNdr','0','283'), ('26513','851','289','ptm','0','284'), ('26514','851','290','ghn','0','285'), ('26515','852','0','Down','0','0'), ('26516','852','1','Up','0','1'), ('26517','853','0','not available','0','0'), ('26518','853','1','available','0','1'), ('26519','853','2','unknown','0','2'), ('26520','854','1','up','0','0'), ('26521','854','2','down','0','1'), ('26522','854','4','unknown','0','2'), ('26523','854','5','dormant','0','3'), ('26524','854','6','notPresent','0','4'), ('26525','854','7','lowerLayerDown','0','5'), ('26526','855','1','other','0','0'), ('26527','855','2','regular1822','0','1'), ('26528','855','3','hdh1822','0','2'), ('26529','855','4','ddnX25','0','3'), ('26530','855','5','rfc877x25','0','4'), ('26531','855','6','ethernetCsmacd','0','5'), ('26532','855','7','iso88023Csmacd','0','6'), ('26533','855','8','iso88024TokenBus','0','7'), ('26534','855','9','iso88025TokenRing','0','8'), ('26535','855','10','iso88026Man','0','9'), ('26536','855','11','starLan','0','10'), ('26537','855','12','proteon10Mbit','0','11'), ('26538','855','13','proteon80Mbit','0','12'), ('26539','855','14','hyperchannel','0','13'), ('26540','855','15','fddi','0','14'), ('26541','855','16','lapb','0','15'), ('26542','855','17','sdlc','0','16'), ('26543','855','18','ds1','0','17'), ('26544','855','19','e1','0','18'), ('26545','855','20','basicISDN','0','19'), ('26546','855','21','primaryISDN','0','20'), ('26547','855','22','propPointToPointSerial','0','21'), ('26548','855','23','ppp','0','22'), ('26549','855','24','softwareLoopback','0','23'), ('26550','855','25','eon','0','24'), ('26551','855','26','ethernet3Mbit','0','25'), ('26552','855','27','nsip','0','26'), ('26553','855','28','slip','0','27'), ('26554','855','29','ultra','0','28'), ('26555','855','30','ds3','0','29'), ('26556','855','31','sip','0','30'), ('26557','855','32','frameRelay','0','31'), ('26558','855','33','rs232','0','32'), ('26559','855','34','para','0','33'), ('26560','855','35','arcnet','0','34'), ('26561','855','36','arcnetPlus','0','35'), ('26562','855','37','atm','0','36'), ('26563','855','38','miox25','0','37'), ('26564','855','39','sonet','0','38'), ('26565','855','40','x25ple','0','39'), ('26566','855','41','iso88022llc','0','40'), ('26567','855','42','localTalk','0','41'), ('26568','855','43','smdsDxi','0','42'), ('26569','855','44','frameRelayService','0','43'), ('26570','855','45','v35','0','44'), ('26571','855','46','hssi','0','45'), ('26572','855','47','hippi','0','46'), ('26573','855','48','modem','0','47'), ('26574','855','49','aal5','0','48'), ('26575','855','50','sonetPath','0','49'), ('26576','855','51','sonetVT','0','50'), ('26577','855','52','smdsIcip','0','51'), ('26578','855','53','propVirtual','0','52'), ('26579','855','54','propMultiplexor','0','53'), ('26580','855','55','ieee80212','0','54'), ('26581','855','56','fibreChannel','0','55'), ('26582','855','57','hippiInterface','0','56'), ('26583','855','58','frameRelayInterconnect','0','57'), ('26584','855','59','aflane8023','0','58'), ('26585','855','60','aflane8025','0','59'), ('26586','855','61','cctEmul','0','60'), ('26587','855','62','fastEther','0','61'), ('26588','855','63','isdn','0','62'), ('26589','855','64','v11','0','63'), ('26590','855','65','v36','0','64'), ('26591','855','66','g703at64k','0','65'), ('26592','855','67','g703at2mb','0','66'), ('26593','855','68','qllc','0','67'), ('26594','855','69','fastEtherFX','0','68'), ('26595','855','70','channel','0','69'), ('26596','855','71','ieee80211','0','70'), ('26597','855','72','ibm370parChan','0','71'), ('26598','855','73','escon','0','72'), ('26599','855','74','dlsw','0','73'), ('26600','855','75','isdns','0','74'), ('26601','855','76','isdnu','0','75'), ('26602','855','77','lapd','0','76'), ('26603','855','78','ipSwitch','0','77'), ('26604','855','79','rsrb','0','78'), ('26605','855','80','atmLogical','0','79'), ('26606','855','81','ds0','0','80'), ('26607','855','82','ds0Bundle','0','81'), ('26608','855','83','bsc','0','82'), ('26609','855','84','async','0','83'), ('26610','855','85','cnr','0','84'), ('26611','855','86','iso88025Dtr','0','85'), ('26612','855','87','eplrs','0','86'), ('26613','855','88','arap','0','87'), ('26614','855','89','propCnls','0','88'), ('26615','855','90','hostPad','0','89'), ('26616','855','91','termPad','0','90'), ('26617','855','92','frameRelayMPI','0','91'), ('26618','855','93','x213','0','92'), ('26619','855','94','adsl','0','93'), ('26620','855','95','radsl','0','94'), ('26621','855','96','sdsl','0','95'), ('26622','855','97','vdsl','0','96'), ('26623','855','98','iso88025CRFPInt','0','97'), ('26624','855','99','myrinet','0','98'), ('26625','855','100','voiceEM','0','99'), ('26626','855','101','voiceFXO','0','100'), ('26627','855','102','voiceFXS','0','101'), ('26628','855','103','voiceEncap','0','102'), ('26629','855','104','voiceOverIp','0','103'), ('26630','855','105','atmDxi','0','104'), ('26631','855','106','atmFuni','0','105'), ('26632','855','107','atmIma','0','106'), ('26633','855','108','pppMultilinkBundle','0','107'), ('26634','855','109','ipOverCdlc','0','108'), ('26635','855','110','ipOverClaw','0','109'), ('26636','855','111','stackToStack','0','110'), ('26637','855','112','virtualIpAddress','0','111'), ('26638','855','113','mpc','0','112'), ('26639','855','114','ipOverAtm','0','113'), ('26640','855','115','iso88025Fiber','0','114'), ('26641','855','116','tdlc','0','115'), ('26642','855','117','gigabitEthernet','0','116'), ('26643','855','118','hdlc','0','117'), ('26644','855','119','lapf','0','118'), ('26645','855','120','v37','0','119'), ('26646','855','121','x25mlp','0','120'), ('26647','855','122','x25huntGroup','0','121'), ('26648','855','123','trasnpHdlc','0','122'), ('26649','855','124','interleave','0','123'), ('26650','855','125','fast','0','124'), ('26651','855','126','ip','0','125'), ('26652','855','127','docsCableMaclayer','0','126'), ('26653','855','128','docsCableDownstream','0','127'), ('26654','855','129','docsCableUpstream','0','128'), ('26655','855','130','a12MppSwitch','0','129'), ('26656','855','131','tunnel','0','130'), ('26657','855','132','coffee','0','131'), ('26658','855','133','ces','0','132'), ('26659','855','134','atmSubInterface','0','133'), ('26660','855','135','l2vlan','0','134'), ('26661','855','136','l3ipvlan','0','135'), ('26662','855','137','l3ipxvlan','0','136'), ('26663','855','138','digitalPowerline','0','137'), ('26664','855','139','mediaMailOverIp','0','138'), ('26665','855','140','dtm','0','139'), ('26666','855','141','dcn','0','140'), ('26667','855','142','ipForward','0','141'), ('26668','855','143','msdsl','0','142'), ('26669','855','144','ieee1394','0','143'), ('26670','855','145','if-gsn','0','144'), ('26671','855','146','dvbRccMacLayer','0','145'), ('26672','855','147','dvbRccDownstream','0','146'), ('26673','855','148','dvbRccUpstream','0','147'), ('26674','855','149','atmVirtual','0','148'), ('26675','855','150','mplsTunnel','0','149'), ('26676','855','151','srp','0','150'), ('26677','855','152','voiceOverAtm','0','151'), ('26678','855','153','voiceOverFrameRelay','0','152'), ('26679','855','154','idsl','0','153'), ('26680','855','155','compositeLink','0','154'), ('26681','855','156','ss7SigLink','0','155'), ('26682','855','157','propWirelessP2P','0','156'), ('26683','855','158','frForward','0','157'), ('26684','855','159','rfc1483','0','158'), ('26685','855','160','usb','0','159'), ('26686','855','161','ieee8023adLag','0','160'), ('26687','855','162','bgppolicyaccounting','0','161'), ('26688','855','163','frf16MfrBundle','0','162'), ('26689','855','164','h323Gatekeeper','0','163'), ('26690','855','165','h323Proxy','0','164'), ('26691','855','166','mpls','0','165'), ('26692','855','167','mfSigLink','0','166'), ('26693','855','168','hdsl2','0','167'), ('26694','855','169','shdsl','0','168'), ('26695','855','170','ds1FDL','0','169'), ('26696','855','171','pos','0','170'), ('26697','855','172','dvbAsiIn','0','171'), ('26698','855','173','dvbAsiOut','0','172'), ('26699','855','174','plc','0','173'), ('26700','855','175','nfas','0','174'), ('26701','855','176','tr008','0','175'), ('26702','855','177','gr303RDT','0','176'), ('26703','855','178','gr303IDT','0','177'), ('26704','855','179','isup','0','178'), ('26705','855','180','propDocsWirelessMaclayer','0','179'), ('26706','855','181','propDocsWirelessDownstream','0','180'), ('26707','855','182','propDocsWirelessUpstream','0','181'), ('26708','855','183','hiperlan2','0','182'), ('26709','855','184','propBWAp2Mp','0','183'), ('26710','855','185','sonetOverheadChannel','0','184'), ('26711','855','186','digitalWrapperOverheadChannel','0','185'), ('26712','855','187','aal2','0','186'), ('26713','855','188','radioMAC','0','187'), ('26714','855','189','atmRadio','0','188'), ('26715','855','190','imt','0','189'), ('26716','855','191','mvl','0','190'), ('26717','855','192','reachDSL','0','191'), ('26718','855','193','frDlciEndPt','0','192'), ('26719','855','194','atmVciEndPt','0','193'), ('26720','855','195','opticalChannel','0','194'), ('26721','855','196','opticalTransport','0','195'), ('26722','855','197','propAtm','0','196'), ('26723','855','198','voiceOverCable','0','197'), ('26724','855','199','infiniband','0','198'), ('26725','855','200','teLink','0','199'), ('26726','855','201','q2931','0','200'), ('26727','855','202','virtualTg','0','201'), ('26728','855','203','sipTg','0','202'), ('26729','855','204','sipSig','0','203'), ('26730','855','205','docsCableUpstreamChannel','0','204'), ('26731','855','206','econet','0','205'), ('26732','855','207','pon155','0','206'), ('26733','855','208','pon622','0','207'), ('26734','855','209','bridge','0','208'), ('26735','855','210','linegroup','0','209'), ('26736','855','211','voiceEMFGD','0','210'), ('26737','855','212','voiceFGDEANA','0','211'), ('26738','855','213','voiceDID','0','212'), ('26739','855','214','mpegTransport','0','213'), ('26740','855','215','sixToFour','0','214'), ('26741','855','216','gtp','0','215'), ('26742','855','217','pdnEtherLoop1','0','216'), ('26743','855','218','pdnEtherLoop2','0','217'), ('26744','855','219','opticalChannelGroup','0','218'), ('26745','855','220','homepna','0','219'), ('26746','855','221','gfp','0','220'), ('26747','855','222','ciscoISLvlan','0','221'), ('26748','855','223','actelisMetaLOOP','0','222'), ('26749','855','224','fcipLink','0','223'), ('26750','855','225','rpr','0','224'), ('26751','855','226','qam','0','225'), ('26752','855','227','lmp','0','226'), ('26753','855','228','cblVectaStar','0','227'), ('26754','855','229','docsCableMCmtsDownstream','0','228'), ('26755','855','230','adsl2','0','229'), ('26756','855','231','macSecControlledIF','0','230'), ('26757','855','232','macSecUncontrolledIF','0','231'), ('26758','855','233','aviciOpticalEther','0','232'), ('26759','855','234','atmbond','0','233'), ('26760','855','235','voiceFGDOS','0','234'), ('26761','855','236','mocaVersion1','0','235'), ('26762','855','237','ieee80216WMAN','0','236'), ('26763','855','238','adsl2plus','0','237'), ('26764','855','239','dvbRcsMacLayer','0','238'), ('26765','855','240','dvbTdm','0','239'), ('26766','855','241','dvbRcsTdma','0','240'), ('26767','855','242','x86Laps','0','241'), ('26768','855','243','wwanPP','0','242'), ('26769','855','244','wwanPP2','0','243'), ('26770','855','245','voiceEBS','0','244'), ('26771','855','246','ifPwType','0','245'), ('26772','855','247','ilan','0','246'), ('26773','855','248','pip','0','247'), ('26774','855','249','aluELP','0','248'), ('26775','855','250','gpon','0','249'), ('26776','855','251','vdsl2','0','250'), ('26777','855','252','capwapDot11Profile','0','251'), ('26778','855','253','capwapDot11Bss','0','252'), ('26779','855','254','capwapWtpVirtualRadio','0','253'), ('26780','855','255','bits','0','254'), ('26781','855','256','docsCableUpstreamRfPort','0','255'), ('26782','855','257','cableDownstreamRfPort','0','256'), ('26783','855','258','vmwareVirtualNic','0','257'), ('26784','855','259','ieee802154','0','258'), ('26785','855','260','otnOdu','0','259'), ('26786','855','261','otnOtu','0','260'), ('26787','855','262','ifVfiType','0','261'), ('26788','855','263','g9981','0','262'), ('26789','855','264','g9982','0','263'), ('26790','855','265','g9983','0','264'), ('26791','855','266','aluEpon','0','265'), ('26792','855','267','aluEponOnu','0','266'), ('26793','855','268','aluEponPhysicalUni','0','267'), ('26794','855','269','aluEponLogicalLink','0','268'), ('26795','855','270','aluGponOnu','0','269'), ('26796','855','271','aluGponPhysicalUni','0','270'), ('26797','855','272','vmwareNicTeam','0','271'), ('26798','855','277','docsOfdmDownstream','0','272'), ('26799','855','278','docsOfdmaUpstream','0','273'), ('26800','855','279','gfast','0','274'), ('26801','855','280','sdci','0','275'), ('26802','855','281','xboxWireless','0','276'), ('26803','855','282','fastdsl','0','277'), ('26804','855','283','docsCableScte55d1FwdOob','0','278'), ('26805','855','284','docsCableScte55d1RetOob','0','279'), ('26806','855','285','docsCableScte55d2DsOob','0','280'), ('26807','855','286','docsCableScte55d2UsOob','0','281'), ('26808','855','287','docsCableNdf','0','282'), ('26809','855','288','docsCableNdr','0','283'), ('26810','855','289','ptm','0','284'), ('26811','855','290','ghn','0','285'), ('26812','856','0','Down','0','0'), ('26813','856','1','Up','0','1'), ('26814','857','0','not available','0','0'), ('26815','857','1','available','0','1'), ('26816','857','2','unknown','0','2'), ('26817','858','1','up','0','0'), ('26818','858','2','down','0','1'), ('26819','858','4','unknown','0','2'), ('26820','858','5','dormant','0','3'), ('26821','858','6','notPresent','0','4'), ('26822','858','7','lowerLayerDown','0','5'), ('26823','859','1','other','0','0'), ('26824','859','2','regular1822','0','1'), ('26825','859','3','hdh1822','0','2'), ('26826','859','4','ddnX25','0','3'), ('26827','859','5','rfc877x25','0','4'), ('26828','859','6','ethernetCsmacd','0','5'), ('26829','859','7','iso88023Csmacd','0','6'), ('26830','859','8','iso88024TokenBus','0','7'), ('26831','859','9','iso88025TokenRing','0','8'), ('26832','859','10','iso88026Man','0','9'), ('26833','859','11','starLan','0','10'), ('26834','859','12','proteon10Mbit','0','11'), ('26835','859','13','proteon80Mbit','0','12'), ('26836','859','14','hyperchannel','0','13'), ('26837','859','15','fddi','0','14'), ('26838','859','16','lapb','0','15'), ('26839','859','17','sdlc','0','16'), ('26840','859','18','ds1','0','17'), ('26841','859','19','e1','0','18'), ('26842','859','20','basicISDN','0','19'), ('26843','859','21','primaryISDN','0','20'), ('26844','859','22','propPointToPointSerial','0','21'), ('26845','859','23','ppp','0','22'), ('26846','859','24','softwareLoopback','0','23'), ('26847','859','25','eon','0','24'), ('26848','859','26','ethernet3Mbit','0','25'), ('26849','859','27','nsip','0','26'), ('26850','859','28','slip','0','27'), ('26851','859','29','ultra','0','28'), ('26852','859','30','ds3','0','29'), ('26853','859','31','sip','0','30'), ('26854','859','32','frameRelay','0','31'), ('26855','859','33','rs232','0','32'), ('26856','859','34','para','0','33'), ('26857','859','35','arcnet','0','34'), ('26858','859','36','arcnetPlus','0','35'), ('26859','859','37','atm','0','36'), ('26860','859','38','miox25','0','37'), ('26861','859','39','sonet','0','38'), ('26862','859','40','x25ple','0','39'), ('26863','859','41','iso88022llc','0','40'), ('26864','859','42','localTalk','0','41'), ('26865','859','43','smdsDxi','0','42'), ('26866','859','44','frameRelayService','0','43'), ('26867','859','45','v35','0','44'), ('26868','859','46','hssi','0','45'), ('26869','859','47','hippi','0','46'), ('26870','859','48','modem','0','47'), ('26871','859','49','aal5','0','48'), ('26872','859','50','sonetPath','0','49'), ('26873','859','51','sonetVT','0','50'), ('26874','859','52','smdsIcip','0','51'), ('26875','859','53','propVirtual','0','52'), ('26876','859','54','propMultiplexor','0','53'), ('26877','859','55','ieee80212','0','54'), ('26878','859','56','fibreChannel','0','55'), ('26879','859','57','hippiInterface','0','56'), ('26880','859','58','frameRelayInterconnect','0','57'), ('26881','859','59','aflane8023','0','58'), ('26882','859','60','aflane8025','0','59'), ('26883','859','61','cctEmul','0','60'), ('26884','859','62','fastEther','0','61'), ('26885','859','63','isdn','0','62'), ('26886','859','64','v11','0','63'), ('26887','859','65','v36','0','64'), ('26888','859','66','g703at64k','0','65'), ('26889','859','67','g703at2mb','0','66'), ('26890','859','68','qllc','0','67'), ('26891','859','69','fastEtherFX','0','68'), ('26892','859','70','channel','0','69'), ('26893','859','71','ieee80211','0','70'), ('26894','859','72','ibm370parChan','0','71'), ('26895','859','73','escon','0','72'), ('26896','859','74','dlsw','0','73'), ('26897','859','75','isdns','0','74'), ('26898','859','76','isdnu','0','75'), ('26899','859','77','lapd','0','76'), ('26900','859','78','ipSwitch','0','77'), ('26901','859','79','rsrb','0','78'), ('26902','859','80','atmLogical','0','79'), ('26903','859','81','ds0','0','80'), ('26904','859','82','ds0Bundle','0','81'), ('26905','859','83','bsc','0','82'), ('26906','859','84','async','0','83'), ('26907','859','85','cnr','0','84'), ('26908','859','86','iso88025Dtr','0','85'), ('26909','859','87','eplrs','0','86'), ('26910','859','88','arap','0','87'), ('26911','859','89','propCnls','0','88'), ('26912','859','90','hostPad','0','89'), ('26913','859','91','termPad','0','90'), ('26914','859','92','frameRelayMPI','0','91'), ('26915','859','93','x213','0','92'), ('26916','859','94','adsl','0','93'), ('26917','859','95','radsl','0','94'), ('26918','859','96','sdsl','0','95'), ('26919','859','97','vdsl','0','96'), ('26920','859','98','iso88025CRFPInt','0','97'), ('26921','859','99','myrinet','0','98'), ('26922','859','100','voiceEM','0','99'), ('26923','859','101','voiceFXO','0','100'), ('26924','859','102','voiceFXS','0','101'), ('26925','859','103','voiceEncap','0','102'), ('26926','859','104','voiceOverIp','0','103'), ('26927','859','105','atmDxi','0','104'), ('26928','859','106','atmFuni','0','105'), ('26929','859','107','atmIma','0','106'), ('26930','859','108','pppMultilinkBundle','0','107'), ('26931','859','109','ipOverCdlc','0','108'), ('26932','859','110','ipOverClaw','0','109'), ('26933','859','111','stackToStack','0','110'), ('26934','859','112','virtualIpAddress','0','111'), ('26935','859','113','mpc','0','112'), ('26936','859','114','ipOverAtm','0','113'), ('26937','859','115','iso88025Fiber','0','114'), ('26938','859','116','tdlc','0','115'), ('26939','859','117','gigabitEthernet','0','116'), ('26940','859','118','hdlc','0','117'), ('26941','859','119','lapf','0','118'), ('26942','859','120','v37','0','119'), ('26943','859','121','x25mlp','0','120'), ('26944','859','122','x25huntGroup','0','121'), ('26945','859','123','trasnpHdlc','0','122'), ('26946','859','124','interleave','0','123'), ('26947','859','125','fast','0','124'), ('26948','859','126','ip','0','125'), ('26949','859','127','docsCableMaclayer','0','126'), ('26950','859','128','docsCableDownstream','0','127'), ('26951','859','129','docsCableUpstream','0','128'), ('26952','859','130','a12MppSwitch','0','129'), ('26953','859','131','tunnel','0','130'), ('26954','859','132','coffee','0','131'), ('26955','859','133','ces','0','132'), ('26956','859','134','atmSubInterface','0','133'), ('26957','859','135','l2vlan','0','134'), ('26958','859','136','l3ipvlan','0','135'), ('26959','859','137','l3ipxvlan','0','136'), ('26960','859','138','digitalPowerline','0','137'), ('26961','859','139','mediaMailOverIp','0','138'), ('26962','859','140','dtm','0','139'), ('26963','859','141','dcn','0','140'), ('26964','859','142','ipForward','0','141'), ('26965','859','143','msdsl','0','142'), ('26966','859','144','ieee1394','0','143'), ('26967','859','145','if-gsn','0','144'), ('26968','859','146','dvbRccMacLayer','0','145'), ('26969','859','147','dvbRccDownstream','0','146'), ('26970','859','148','dvbRccUpstream','0','147'), ('26971','859','149','atmVirtual','0','148'), ('26972','859','150','mplsTunnel','0','149'), ('26973','859','151','srp','0','150'), ('26974','859','152','voiceOverAtm','0','151'), ('26975','859','153','voiceOverFrameRelay','0','152'), ('26976','859','154','idsl','0','153'), ('26977','859','155','compositeLink','0','154'), ('26978','859','156','ss7SigLink','0','155'), ('26979','859','157','propWirelessP2P','0','156'), ('26980','859','158','frForward','0','157'), ('26981','859','159','rfc1483','0','158'), ('26982','859','160','usb','0','159'), ('26983','859','161','ieee8023adLag','0','160'), ('26984','859','162','bgppolicyaccounting','0','161'), ('26985','859','163','frf16MfrBundle','0','162'), ('26986','859','164','h323Gatekeeper','0','163'), ('26987','859','165','h323Proxy','0','164'), ('26988','859','166','mpls','0','165'), ('26989','859','167','mfSigLink','0','166'), ('26990','859','168','hdsl2','0','167'), ('26991','859','169','shdsl','0','168'), ('26992','859','170','ds1FDL','0','169'), ('26993','859','171','pos','0','170'), ('26994','859','172','dvbAsiIn','0','171'), ('26995','859','173','dvbAsiOut','0','172'), ('26996','859','174','plc','0','173'), ('26997','859','175','nfas','0','174'), ('26998','859','176','tr008','0','175'), ('26999','859','177','gr303RDT','0','176'), ('27000','859','178','gr303IDT','0','177'), ('27001','859','179','isup','0','178'), ('27002','859','180','propDocsWirelessMaclayer','0','179'), ('27003','859','181','propDocsWirelessDownstream','0','180'), ('27004','859','182','propDocsWirelessUpstream','0','181'), ('27005','859','183','hiperlan2','0','182'), ('27006','859','184','propBWAp2Mp','0','183'), ('27007','859','185','sonetOverheadChannel','0','184'), ('27008','859','186','digitalWrapperOverheadChannel','0','185'), ('27009','859','187','aal2','0','186'), ('27010','859','188','radioMAC','0','187'), ('27011','859','189','atmRadio','0','188'), ('27012','859','190','imt','0','189'), ('27013','859','191','mvl','0','190'), ('27014','859','192','reachDSL','0','191'), ('27015','859','193','frDlciEndPt','0','192'), ('27016','859','194','atmVciEndPt','0','193'), ('27017','859','195','opticalChannel','0','194'), ('27018','859','196','opticalTransport','0','195'), ('27019','859','197','propAtm','0','196'), ('27020','859','198','voiceOverCable','0','197'), ('27021','859','199','infiniband','0','198'), ('27022','859','200','teLink','0','199'), ('27023','859','201','q2931','0','200'), ('27024','859','202','virtualTg','0','201'), ('27025','859','203','sipTg','0','202'), ('27026','859','204','sipSig','0','203'), ('27027','859','205','docsCableUpstreamChannel','0','204'), ('27028','859','206','econet','0','205'), ('27029','859','207','pon155','0','206'), ('27030','859','208','pon622','0','207'), ('27031','859','209','bridge','0','208'), ('27032','859','210','linegroup','0','209'), ('27033','859','211','voiceEMFGD','0','210'), ('27034','859','212','voiceFGDEANA','0','211'), ('27035','859','213','voiceDID','0','212'), ('27036','859','214','mpegTransport','0','213'), ('27037','859','215','sixToFour','0','214'), ('27038','859','216','gtp','0','215'), ('27039','859','217','pdnEtherLoop1','0','216'), ('27040','859','218','pdnEtherLoop2','0','217'), ('27041','859','219','opticalChannelGroup','0','218'), ('27042','859','220','homepna','0','219'), ('27043','859','221','gfp','0','220'), ('27044','859','222','ciscoISLvlan','0','221'), ('27045','859','223','actelisMetaLOOP','0','222'), ('27046','859','224','fcipLink','0','223'), ('27047','859','225','rpr','0','224'), ('27048','859','226','qam','0','225'), ('27049','859','227','lmp','0','226'), ('27050','859','228','cblVectaStar','0','227'), ('27051','859','229','docsCableMCmtsDownstream','0','228'), ('27052','859','230','adsl2','0','229'), ('27053','859','231','macSecControlledIF','0','230'), ('27054','859','232','macSecUncontrolledIF','0','231'), ('27055','859','233','aviciOpticalEther','0','232'), ('27056','859','234','atmbond','0','233'), ('27057','859','235','voiceFGDOS','0','234'), ('27058','859','236','mocaVersion1','0','235'), ('27059','859','237','ieee80216WMAN','0','236'), ('27060','859','238','adsl2plus','0','237'), ('27061','859','239','dvbRcsMacLayer','0','238'), ('27062','859','240','dvbTdm','0','239'), ('27063','859','241','dvbRcsTdma','0','240'), ('27064','859','242','x86Laps','0','241'), ('27065','859','243','wwanPP','0','242'), ('27066','859','244','wwanPP2','0','243'), ('27067','859','245','voiceEBS','0','244'), ('27068','859','246','ifPwType','0','245'), ('27069','859','247','ilan','0','246'), ('27070','859','248','pip','0','247'), ('27071','859','249','aluELP','0','248'), ('27072','859','250','gpon','0','249'), ('27073','859','251','vdsl2','0','250'), ('27074','859','252','capwapDot11Profile','0','251'), ('27075','859','253','capwapDot11Bss','0','252'), ('27076','859','254','capwapWtpVirtualRadio','0','253'), ('27077','859','255','bits','0','254'), ('27078','859','256','docsCableUpstreamRfPort','0','255'), ('27079','859','257','cableDownstreamRfPort','0','256'), ('27080','859','258','vmwareVirtualNic','0','257'), ('27081','859','259','ieee802154','0','258'), ('27082','859','260','otnOdu','0','259'), ('27083','859','261','otnOtu','0','260'), ('27084','859','262','ifVfiType','0','261'), ('27085','859','263','g9981','0','262'), ('27086','859','264','g9982','0','263'), ('27087','859','265','g9983','0','264'), ('27088','859','266','aluEpon','0','265'), ('27089','859','267','aluEponOnu','0','266'), ('27090','859','268','aluEponPhysicalUni','0','267'), ('27091','859','269','aluEponLogicalLink','0','268'), ('27092','859','270','aluGponOnu','0','269'), ('27093','859','271','aluGponPhysicalUni','0','270'), ('27094','859','272','vmwareNicTeam','0','271'), ('27095','859','277','docsOfdmDownstream','0','272'), ('27096','859','278','docsOfdmaUpstream','0','273'), ('27097','859','279','gfast','0','274'), ('27098','859','280','sdci','0','275'), ('27099','859','281','xboxWireless','0','276'), ('27100','859','282','fastdsl','0','277'), ('27101','859','283','docsCableScte55d1FwdOob','0','278'), ('27102','859','284','docsCableScte55d1RetOob','0','279'), ('27103','859','285','docsCableScte55d2DsOob','0','280'), ('27104','859','286','docsCableScte55d2UsOob','0','281'), ('27105','859','287','docsCableNdf','0','282'), ('27106','859','288','docsCableNdr','0','283'), ('27107','859','289','ptm','0','284'), ('27108','859','290','ghn','0','285'), ('27109','860','0','Down','0','0'), ('27110','860','1','Up','0','1'), ('27111','861','0','not available','0','0'), ('27112','861','1','available','0','1'), ('27113','861','2','unknown','0','2'), ('27114','862','1','up','0','0'), ('27115','862','2','down','0','1'), ('27116','862','4','unknown','0','2'), ('27117','862','5','dormant','0','3'), ('27118','862','6','notPresent','0','4'), ('27119','862','7','lowerLayerDown','0','5'), ('27120','863','1','other','0','0'), ('27121','863','2','regular1822','0','1'), ('27122','863','3','hdh1822','0','2'), ('27123','863','4','ddnX25','0','3'), ('27124','863','5','rfc877x25','0','4'), ('27125','863','6','ethernetCsmacd','0','5'), ('27126','863','7','iso88023Csmacd','0','6'), ('27127','863','8','iso88024TokenBus','0','7'), ('27128','863','9','iso88025TokenRing','0','8'), ('27129','863','10','iso88026Man','0','9'), ('27130','863','11','starLan','0','10'), ('27131','863','12','proteon10Mbit','0','11'), ('27132','863','13','proteon80Mbit','0','12'), ('27133','863','14','hyperchannel','0','13'), ('27134','863','15','fddi','0','14'), ('27135','863','16','lapb','0','15'), ('27136','863','17','sdlc','0','16'), ('27137','863','18','ds1','0','17'), ('27138','863','19','e1','0','18'), ('27139','863','20','basicISDN','0','19'), ('27140','863','21','primaryISDN','0','20'), ('27141','863','22','propPointToPointSerial','0','21'), ('27142','863','23','ppp','0','22'), ('27143','863','24','softwareLoopback','0','23'), ('27144','863','25','eon','0','24'), ('27145','863','26','ethernet3Mbit','0','25'), ('27146','863','27','nsip','0','26'), ('27147','863','28','slip','0','27'), ('27148','863','29','ultra','0','28'), ('27149','863','30','ds3','0','29'), ('27150','863','31','sip','0','30'), ('27151','863','32','frameRelay','0','31'), ('27152','863','33','rs232','0','32'), ('27153','863','34','para','0','33'), ('27154','863','35','arcnet','0','34'), ('27155','863','36','arcnetPlus','0','35'), ('27156','863','37','atm','0','36'), ('27157','863','38','miox25','0','37'), ('27158','863','39','sonet','0','38'), ('27159','863','40','x25ple','0','39'), ('27160','863','41','iso88022llc','0','40'), ('27161','863','42','localTalk','0','41'), ('27162','863','43','smdsDxi','0','42'), ('27163','863','44','frameRelayService','0','43'), ('27164','863','45','v35','0','44'), ('27165','863','46','hssi','0','45'), ('27166','863','47','hippi','0','46'), ('27167','863','48','modem','0','47'), ('27168','863','49','aal5','0','48'), ('27169','863','50','sonetPath','0','49'), ('27170','863','51','sonetVT','0','50'), ('27171','863','52','smdsIcip','0','51'), ('27172','863','53','propVirtual','0','52'), ('27173','863','54','propMultiplexor','0','53'), ('27174','863','55','ieee80212','0','54'), ('27175','863','56','fibreChannel','0','55'), ('27176','863','57','hippiInterface','0','56'), ('27177','863','58','frameRelayInterconnect','0','57'), ('27178','863','59','aflane8023','0','58'), ('27179','863','60','aflane8025','0','59'), ('27180','863','61','cctEmul','0','60'), ('27181','863','62','fastEther','0','61'), ('27182','863','63','isdn','0','62'), ('27183','863','64','v11','0','63'), ('27184','863','65','v36','0','64'), ('27185','863','66','g703at64k','0','65'), ('27186','863','67','g703at2mb','0','66'), ('27187','863','68','qllc','0','67'), ('27188','863','69','fastEtherFX','0','68'), ('27189','863','70','channel','0','69'), ('27190','863','71','ieee80211','0','70'), ('27191','863','72','ibm370parChan','0','71'), ('27192','863','73','escon','0','72'), ('27193','863','74','dlsw','0','73'), ('27194','863','75','isdns','0','74'), ('27195','863','76','isdnu','0','75'), ('27196','863','77','lapd','0','76'), ('27197','863','78','ipSwitch','0','77'), ('27198','863','79','rsrb','0','78'), ('27199','863','80','atmLogical','0','79'), ('27200','863','81','ds0','0','80'), ('27201','863','82','ds0Bundle','0','81'), ('27202','863','83','bsc','0','82'), ('27203','863','84','async','0','83'), ('27204','863','85','cnr','0','84'), ('27205','863','86','iso88025Dtr','0','85'), ('27206','863','87','eplrs','0','86'), ('27207','863','88','arap','0','87'), ('27208','863','89','propCnls','0','88'), ('27209','863','90','hostPad','0','89'), ('27210','863','91','termPad','0','90'), ('27211','863','92','frameRelayMPI','0','91'), ('27212','863','93','x213','0','92'), ('27213','863','94','adsl','0','93'), ('27214','863','95','radsl','0','94'), ('27215','863','96','sdsl','0','95'), ('27216','863','97','vdsl','0','96'), ('27217','863','98','iso88025CRFPInt','0','97'), ('27218','863','99','myrinet','0','98'), ('27219','863','100','voiceEM','0','99'), ('27220','863','101','voiceFXO','0','100'), ('27221','863','102','voiceFXS','0','101'), ('27222','863','103','voiceEncap','0','102'), ('27223','863','104','voiceOverIp','0','103'), ('27224','863','105','atmDxi','0','104'), ('27225','863','106','atmFuni','0','105'), ('27226','863','107','atmIma','0','106'), ('27227','863','108','pppMultilinkBundle','0','107'), ('27228','863','109','ipOverCdlc','0','108'), ('27229','863','110','ipOverClaw','0','109'), ('27230','863','111','stackToStack','0','110'), ('27231','863','112','virtualIpAddress','0','111'), ('27232','863','113','mpc','0','112'), ('27233','863','114','ipOverAtm','0','113'), ('27234','863','115','iso88025Fiber','0','114'), ('27235','863','116','tdlc','0','115'), ('27236','863','117','gigabitEthernet','0','116'), ('27237','863','118','hdlc','0','117'), ('27238','863','119','lapf','0','118'), ('27239','863','120','v37','0','119'), ('27240','863','121','x25mlp','0','120'), ('27241','863','122','x25huntGroup','0','121'), ('27242','863','123','trasnpHdlc','0','122'), ('27243','863','124','interleave','0','123'), ('27244','863','125','fast','0','124'), ('27245','863','126','ip','0','125'), ('27246','863','127','docsCableMaclayer','0','126'), ('27247','863','128','docsCableDownstream','0','127'), ('27248','863','129','docsCableUpstream','0','128'), ('27249','863','130','a12MppSwitch','0','129'), ('27250','863','131','tunnel','0','130'), ('27251','863','132','coffee','0','131'), ('27252','863','133','ces','0','132'), ('27253','863','134','atmSubInterface','0','133'), ('27254','863','135','l2vlan','0','134'), ('27255','863','136','l3ipvlan','0','135'), ('27256','863','137','l3ipxvlan','0','136'), ('27257','863','138','digitalPowerline','0','137'), ('27258','863','139','mediaMailOverIp','0','138'), ('27259','863','140','dtm','0','139'), ('27260','863','141','dcn','0','140'), ('27261','863','142','ipForward','0','141'), ('27262','863','143','msdsl','0','142'), ('27263','863','144','ieee1394','0','143'), ('27264','863','145','if-gsn','0','144'), ('27265','863','146','dvbRccMacLayer','0','145'), ('27266','863','147','dvbRccDownstream','0','146'), ('27267','863','148','dvbRccUpstream','0','147'), ('27268','863','149','atmVirtual','0','148'), ('27269','863','150','mplsTunnel','0','149'), ('27270','863','151','srp','0','150'), ('27271','863','152','voiceOverAtm','0','151'), ('27272','863','153','voiceOverFrameRelay','0','152'), ('27273','863','154','idsl','0','153'), ('27274','863','155','compositeLink','0','154'), ('27275','863','156','ss7SigLink','0','155'), ('27276','863','157','propWirelessP2P','0','156'), ('27277','863','158','frForward','0','157'), ('27278','863','159','rfc1483','0','158'), ('27279','863','160','usb','0','159'), ('27280','863','161','ieee8023adLag','0','160'), ('27281','863','162','bgppolicyaccounting','0','161'), ('27282','863','163','frf16MfrBundle','0','162'), ('27283','863','164','h323Gatekeeper','0','163'), ('27284','863','165','h323Proxy','0','164'), ('27285','863','166','mpls','0','165'), ('27286','863','167','mfSigLink','0','166'), ('27287','863','168','hdsl2','0','167'), ('27288','863','169','shdsl','0','168'), ('27289','863','170','ds1FDL','0','169'), ('27290','863','171','pos','0','170'), ('27291','863','172','dvbAsiIn','0','171'), ('27292','863','173','dvbAsiOut','0','172'), ('27293','863','174','plc','0','173'), ('27294','863','175','nfas','0','174'), ('27295','863','176','tr008','0','175'), ('27296','863','177','gr303RDT','0','176'), ('27297','863','178','gr303IDT','0','177'), ('27298','863','179','isup','0','178'), ('27299','863','180','propDocsWirelessMaclayer','0','179'), ('27300','863','181','propDocsWirelessDownstream','0','180'), ('27301','863','182','propDocsWirelessUpstream','0','181'), ('27302','863','183','hiperlan2','0','182'), ('27303','863','184','propBWAp2Mp','0','183'), ('27304','863','185','sonetOverheadChannel','0','184'), ('27305','863','186','digitalWrapperOverheadChannel','0','185'), ('27306','863','187','aal2','0','186'), ('27307','863','188','radioMAC','0','187'), ('27308','863','189','atmRadio','0','188'), ('27309','863','190','imt','0','189'), ('27310','863','191','mvl','0','190'), ('27311','863','192','reachDSL','0','191'), ('27312','863','193','frDlciEndPt','0','192'), ('27313','863','194','atmVciEndPt','0','193'), ('27314','863','195','opticalChannel','0','194'), ('27315','863','196','opticalTransport','0','195'), ('27316','863','197','propAtm','0','196'), ('27317','863','198','voiceOverCable','0','197'), ('27318','863','199','infiniband','0','198'), ('27319','863','200','teLink','0','199'), ('27320','863','201','q2931','0','200'), ('27321','863','202','virtualTg','0','201'), ('27322','863','203','sipTg','0','202'), ('27323','863','204','sipSig','0','203'), ('27324','863','205','docsCableUpstreamChannel','0','204'), ('27325','863','206','econet','0','205'), ('27326','863','207','pon155','0','206'), ('27327','863','208','pon622','0','207'), ('27328','863','209','bridge','0','208'), ('27329','863','210','linegroup','0','209'), ('27330','863','211','voiceEMFGD','0','210'), ('27331','863','212','voiceFGDEANA','0','211'), ('27332','863','213','voiceDID','0','212'), ('27333','863','214','mpegTransport','0','213'), ('27334','863','215','sixToFour','0','214'), ('27335','863','216','gtp','0','215'), ('27336','863','217','pdnEtherLoop1','0','216'), ('27337','863','218','pdnEtherLoop2','0','217'), ('27338','863','219','opticalChannelGroup','0','218'), ('27339','863','220','homepna','0','219'), ('27340','863','221','gfp','0','220'), ('27341','863','222','ciscoISLvlan','0','221'), ('27342','863','223','actelisMetaLOOP','0','222'), ('27343','863','224','fcipLink','0','223'), ('27344','863','225','rpr','0','224'), ('27345','863','226','qam','0','225'), ('27346','863','227','lmp','0','226'), ('27347','863','228','cblVectaStar','0','227'), ('27348','863','229','docsCableMCmtsDownstream','0','228'), ('27349','863','230','adsl2','0','229'), ('27350','863','231','macSecControlledIF','0','230'), ('27351','863','232','macSecUncontrolledIF','0','231'), ('27352','863','233','aviciOpticalEther','0','232'), ('27353','863','234','atmbond','0','233'), ('27354','863','235','voiceFGDOS','0','234'), ('27355','863','236','mocaVersion1','0','235'), ('27356','863','237','ieee80216WMAN','0','236'), ('27357','863','238','adsl2plus','0','237'), ('27358','863','239','dvbRcsMacLayer','0','238'), ('27359','863','240','dvbTdm','0','239'), ('27360','863','241','dvbRcsTdma','0','240'), ('27361','863','242','x86Laps','0','241'), ('27362','863','243','wwanPP','0','242'), ('27363','863','244','wwanPP2','0','243'), ('27364','863','245','voiceEBS','0','244'), ('27365','863','246','ifPwType','0','245'), ('27366','863','247','ilan','0','246'), ('27367','863','248','pip','0','247'), ('27368','863','249','aluELP','0','248'), ('27369','863','250','gpon','0','249'), ('27370','863','251','vdsl2','0','250'), ('27371','863','252','capwapDot11Profile','0','251'), ('27372','863','253','capwapDot11Bss','0','252'), ('27373','863','254','capwapWtpVirtualRadio','0','253'), ('27374','863','255','bits','0','254'), ('27375','863','256','docsCableUpstreamRfPort','0','255'), ('27376','863','257','cableDownstreamRfPort','0','256'), ('27377','863','258','vmwareVirtualNic','0','257'), ('27378','863','259','ieee802154','0','258'), ('27379','863','260','otnOdu','0','259'), ('27380','863','261','otnOtu','0','260'), ('27381','863','262','ifVfiType','0','261'), ('27382','863','263','g9981','0','262'), ('27383','863','264','g9982','0','263'), ('27384','863','265','g9983','0','264'), ('27385','863','266','aluEpon','0','265'), ('27386','863','267','aluEponOnu','0','266'), ('27387','863','268','aluEponPhysicalUni','0','267'), ('27388','863','269','aluEponLogicalLink','0','268'), ('27389','863','270','aluGponOnu','0','269'), ('27390','863','271','aluGponPhysicalUni','0','270'), ('27391','863','272','vmwareNicTeam','0','271'), ('27392','863','277','docsOfdmDownstream','0','272'), ('27393','863','278','docsOfdmaUpstream','0','273'), ('27394','863','279','gfast','0','274'), ('27395','863','280','sdci','0','275'), ('27396','863','281','xboxWireless','0','276'), ('27397','863','282','fastdsl','0','277'), ('27398','863','283','docsCableScte55d1FwdOob','0','278'), ('27399','863','284','docsCableScte55d1RetOob','0','279'), ('27400','863','285','docsCableScte55d2DsOob','0','280'), ('27401','863','286','docsCableScte55d2UsOob','0','281'), ('27402','863','287','docsCableNdf','0','282'), ('27403','863','288','docsCableNdr','0','283'), ('27404','863','289','ptm','0','284'), ('27405','863','290','ghn','0','285'), ('27406','864','0','Down','0','0'), ('27407','864','1','Up','0','1'), ('27408','865','0','not available','0','0'), ('27409','865','1','available','0','1'), ('27410','865','2','unknown','0','2'), ('27411','866','1','up','0','0'), ('27412','866','2','down','0','1'), ('27413','866','4','unknown','0','2'), ('27414','866','5','dormant','0','3'), ('27415','866','6','notPresent','0','4'), ('27416','866','7','lowerLayerDown','0','5'), ('27417','867','1','other','0','0'), ('27418','867','2','regular1822','0','1'), ('27419','867','3','hdh1822','0','2'), ('27420','867','4','ddnX25','0','3'), ('27421','867','5','rfc877x25','0','4'), ('27422','867','6','ethernetCsmacd','0','5'), ('27423','867','7','iso88023Csmacd','0','6'), ('27424','867','8','iso88024TokenBus','0','7'), ('27425','867','9','iso88025TokenRing','0','8'), ('27426','867','10','iso88026Man','0','9'), ('27427','867','11','starLan','0','10'), ('27428','867','12','proteon10Mbit','0','11'), ('27429','867','13','proteon80Mbit','0','12'), ('27430','867','14','hyperchannel','0','13'), ('27431','867','15','fddi','0','14'), ('27432','867','16','lapb','0','15'), ('27433','867','17','sdlc','0','16'), ('27434','867','18','ds1','0','17'), ('27435','867','19','e1','0','18'), ('27436','867','20','basicISDN','0','19'), ('27437','867','21','primaryISDN','0','20'), ('27438','867','22','propPointToPointSerial','0','21'), ('27439','867','23','ppp','0','22'), ('27440','867','24','softwareLoopback','0','23'), ('27441','867','25','eon','0','24'), ('27442','867','26','ethernet3Mbit','0','25'), ('27443','867','27','nsip','0','26'), ('27444','867','28','slip','0','27'), ('27445','867','29','ultra','0','28'), ('27446','867','30','ds3','0','29'), ('27447','867','31','sip','0','30'), ('27448','867','32','frameRelay','0','31'), ('27449','867','33','rs232','0','32'), ('27450','867','34','para','0','33'), ('27451','867','35','arcnet','0','34'), ('27452','867','36','arcnetPlus','0','35'), ('27453','867','37','atm','0','36'), ('27454','867','38','miox25','0','37'), ('27455','867','39','sonet','0','38'), ('27456','867','40','x25ple','0','39'), ('27457','867','41','iso88022llc','0','40'), ('27458','867','42','localTalk','0','41'), ('27459','867','43','smdsDxi','0','42'), ('27460','867','44','frameRelayService','0','43'), ('27461','867','45','v35','0','44'), ('27462','867','46','hssi','0','45'), ('27463','867','47','hippi','0','46'), ('27464','867','48','modem','0','47'), ('27465','867','49','aal5','0','48'), ('27466','867','50','sonetPath','0','49'), ('27467','867','51','sonetVT','0','50'), ('27468','867','52','smdsIcip','0','51'), ('27469','867','53','propVirtual','0','52'), ('27470','867','54','propMultiplexor','0','53'), ('27471','867','55','ieee80212','0','54'), ('27472','867','56','fibreChannel','0','55'), ('27473','867','57','hippiInterface','0','56'), ('27474','867','58','frameRelayInterconnect','0','57'), ('27475','867','59','aflane8023','0','58'), ('27476','867','60','aflane8025','0','59'), ('27477','867','61','cctEmul','0','60'), ('27478','867','62','fastEther','0','61'), ('27479','867','63','isdn','0','62'), ('27480','867','64','v11','0','63'), ('27481','867','65','v36','0','64'), ('27482','867','66','g703at64k','0','65'), ('27483','867','67','g703at2mb','0','66'), ('27484','867','68','qllc','0','67'), ('27485','867','69','fastEtherFX','0','68'), ('27486','867','70','channel','0','69'), ('27487','867','71','ieee80211','0','70'), ('27488','867','72','ibm370parChan','0','71'), ('27489','867','73','escon','0','72'), ('27490','867','74','dlsw','0','73'), ('27491','867','75','isdns','0','74'), ('27492','867','76','isdnu','0','75'), ('27493','867','77','lapd','0','76'), ('27494','867','78','ipSwitch','0','77'), ('27495','867','79','rsrb','0','78'), ('27496','867','80','atmLogical','0','79'), ('27497','867','81','ds0','0','80'), ('27498','867','82','ds0Bundle','0','81'), ('27499','867','83','bsc','0','82'), ('27500','867','84','async','0','83'), ('27501','867','85','cnr','0','84'), ('27502','867','86','iso88025Dtr','0','85'), ('27503','867','87','eplrs','0','86'), ('27504','867','88','arap','0','87'), ('27505','867','89','propCnls','0','88'), ('27506','867','90','hostPad','0','89'), ('27507','867','91','termPad','0','90'), ('27508','867','92','frameRelayMPI','0','91'), ('27509','867','93','x213','0','92'), ('27510','867','94','adsl','0','93'), ('27511','867','95','radsl','0','94'), ('27512','867','96','sdsl','0','95'), ('27513','867','97','vdsl','0','96'), ('27514','867','98','iso88025CRFPInt','0','97'), ('27515','867','99','myrinet','0','98'), ('27516','867','100','voiceEM','0','99'), ('27517','867','101','voiceFXO','0','100'), ('27518','867','102','voiceFXS','0','101'), ('27519','867','103','voiceEncap','0','102'), ('27520','867','104','voiceOverIp','0','103'), ('27521','867','105','atmDxi','0','104'), ('27522','867','106','atmFuni','0','105'), ('27523','867','107','atmIma','0','106'), ('27524','867','108','pppMultilinkBundle','0','107'), ('27525','867','109','ipOverCdlc','0','108'), ('27526','867','110','ipOverClaw','0','109'), ('27527','867','111','stackToStack','0','110'), ('27528','867','112','virtualIpAddress','0','111'), ('27529','867','113','mpc','0','112'), ('27530','867','114','ipOverAtm','0','113'), ('27531','867','115','iso88025Fiber','0','114'), ('27532','867','116','tdlc','0','115'), ('27533','867','117','gigabitEthernet','0','116'), ('27534','867','118','hdlc','0','117'), ('27535','867','119','lapf','0','118'), ('27536','867','120','v37','0','119'), ('27537','867','121','x25mlp','0','120'), ('27538','867','122','x25huntGroup','0','121'), ('27539','867','123','trasnpHdlc','0','122'), ('27540','867','124','interleave','0','123'), ('27541','867','125','fast','0','124'), ('27542','867','126','ip','0','125'), ('27543','867','127','docsCableMaclayer','0','126'), ('27544','867','128','docsCableDownstream','0','127'), ('27545','867','129','docsCableUpstream','0','128'), ('27546','867','130','a12MppSwitch','0','129'), ('27547','867','131','tunnel','0','130'), ('27548','867','132','coffee','0','131'), ('27549','867','133','ces','0','132'), ('27550','867','134','atmSubInterface','0','133'), ('27551','867','135','l2vlan','0','134'), ('27552','867','136','l3ipvlan','0','135'), ('27553','867','137','l3ipxvlan','0','136'), ('27554','867','138','digitalPowerline','0','137'), ('27555','867','139','mediaMailOverIp','0','138'), ('27556','867','140','dtm','0','139'), ('27557','867','141','dcn','0','140'), ('27558','867','142','ipForward','0','141'), ('27559','867','143','msdsl','0','142'), ('27560','867','144','ieee1394','0','143'), ('27561','867','145','if-gsn','0','144'), ('27562','867','146','dvbRccMacLayer','0','145'), ('27563','867','147','dvbRccDownstream','0','146'), ('27564','867','148','dvbRccUpstream','0','147'), ('27565','867','149','atmVirtual','0','148'), ('27566','867','150','mplsTunnel','0','149'), ('27567','867','151','srp','0','150'), ('27568','867','152','voiceOverAtm','0','151'), ('27569','867','153','voiceOverFrameRelay','0','152'), ('27570','867','154','idsl','0','153'), ('27571','867','155','compositeLink','0','154'), ('27572','867','156','ss7SigLink','0','155'), ('27573','867','157','propWirelessP2P','0','156'), ('27574','867','158','frForward','0','157'), ('27575','867','159','rfc1483','0','158'), ('27576','867','160','usb','0','159'), ('27577','867','161','ieee8023adLag','0','160'), ('27578','867','162','bgppolicyaccounting','0','161'), ('27579','867','163','frf16MfrBundle','0','162'), ('27580','867','164','h323Gatekeeper','0','163'), ('27581','867','165','h323Proxy','0','164'), ('27582','867','166','mpls','0','165'), ('27583','867','167','mfSigLink','0','166'), ('27584','867','168','hdsl2','0','167'), ('27585','867','169','shdsl','0','168'), ('27586','867','170','ds1FDL','0','169'), ('27587','867','171','pos','0','170'), ('27588','867','172','dvbAsiIn','0','171'), ('27589','867','173','dvbAsiOut','0','172'), ('27590','867','174','plc','0','173'), ('27591','867','175','nfas','0','174'), ('27592','867','176','tr008','0','175'), ('27593','867','177','gr303RDT','0','176'), ('27594','867','178','gr303IDT','0','177'), ('27595','867','179','isup','0','178'), ('27596','867','180','propDocsWirelessMaclayer','0','179'), ('27597','867','181','propDocsWirelessDownstream','0','180'), ('27598','867','182','propDocsWirelessUpstream','0','181'), ('27599','867','183','hiperlan2','0','182'), ('27600','867','184','propBWAp2Mp','0','183'), ('27601','867','185','sonetOverheadChannel','0','184'), ('27602','867','186','digitalWrapperOverheadChannel','0','185'), ('27603','867','187','aal2','0','186'), ('27604','867','188','radioMAC','0','187'), ('27605','867','189','atmRadio','0','188'), ('27606','867','190','imt','0','189'), ('27607','867','191','mvl','0','190'), ('27608','867','192','reachDSL','0','191'), ('27609','867','193','frDlciEndPt','0','192'), ('27610','867','194','atmVciEndPt','0','193'), ('27611','867','195','opticalChannel','0','194'), ('27612','867','196','opticalTransport','0','195'), ('27613','867','197','propAtm','0','196'), ('27614','867','198','voiceOverCable','0','197'), ('27615','867','199','infiniband','0','198'), ('27616','867','200','teLink','0','199'), ('27617','867','201','q2931','0','200'), ('27618','867','202','virtualTg','0','201'), ('27619','867','203','sipTg','0','202'), ('27620','867','204','sipSig','0','203'), ('27621','867','205','docsCableUpstreamChannel','0','204'), ('27622','867','206','econet','0','205'), ('27623','867','207','pon155','0','206'), ('27624','867','208','pon622','0','207'), ('27625','867','209','bridge','0','208'), ('27626','867','210','linegroup','0','209'), ('27627','867','211','voiceEMFGD','0','210'), ('27628','867','212','voiceFGDEANA','0','211'), ('27629','867','213','voiceDID','0','212'), ('27630','867','214','mpegTransport','0','213'), ('27631','867','215','sixToFour','0','214'), ('27632','867','216','gtp','0','215'), ('27633','867','217','pdnEtherLoop1','0','216'), ('27634','867','218','pdnEtherLoop2','0','217'), ('27635','867','219','opticalChannelGroup','0','218'), ('27636','867','220','homepna','0','219'), ('27637','867','221','gfp','0','220'), ('27638','867','222','ciscoISLvlan','0','221'), ('27639','867','223','actelisMetaLOOP','0','222'), ('27640','867','224','fcipLink','0','223'), ('27641','867','225','rpr','0','224'), ('27642','867','226','qam','0','225'), ('27643','867','227','lmp','0','226'), ('27644','867','228','cblVectaStar','0','227'), ('27645','867','229','docsCableMCmtsDownstream','0','228'), ('27646','867','230','adsl2','0','229'), ('27647','867','231','macSecControlledIF','0','230'), ('27648','867','232','macSecUncontrolledIF','0','231'), ('27649','867','233','aviciOpticalEther','0','232'), ('27650','867','234','atmbond','0','233'), ('27651','867','235','voiceFGDOS','0','234'), ('27652','867','236','mocaVersion1','0','235'), ('27653','867','237','ieee80216WMAN','0','236'), ('27654','867','238','adsl2plus','0','237'), ('27655','867','239','dvbRcsMacLayer','0','238'), ('27656','867','240','dvbTdm','0','239'), ('27657','867','241','dvbRcsTdma','0','240'), ('27658','867','242','x86Laps','0','241'), ('27659','867','243','wwanPP','0','242'), ('27660','867','244','wwanPP2','0','243'), ('27661','867','245','voiceEBS','0','244'), ('27662','867','246','ifPwType','0','245'), ('27663','867','247','ilan','0','246'), ('27664','867','248','pip','0','247'), ('27665','867','249','aluELP','0','248'), ('27666','867','250','gpon','0','249'), ('27667','867','251','vdsl2','0','250'), ('27668','867','252','capwapDot11Profile','0','251'), ('27669','867','253','capwapDot11Bss','0','252'), ('27670','867','254','capwapWtpVirtualRadio','0','253'), ('27671','867','255','bits','0','254'), ('27672','867','256','docsCableUpstreamRfPort','0','255'), ('27673','867','257','cableDownstreamRfPort','0','256'), ('27674','867','258','vmwareVirtualNic','0','257'), ('27675','867','259','ieee802154','0','258'), ('27676','867','260','otnOdu','0','259'), ('27677','867','261','otnOtu','0','260'), ('27678','867','262','ifVfiType','0','261'), ('27679','867','263','g9981','0','262'), ('27680','867','264','g9982','0','263'), ('27681','867','265','g9983','0','264'), ('27682','867','266','aluEpon','0','265'), ('27683','867','267','aluEponOnu','0','266'), ('27684','867','268','aluEponPhysicalUni','0','267'), ('27685','867','269','aluEponLogicalLink','0','268'), ('27686','867','270','aluGponOnu','0','269'), ('27687','867','271','aluGponPhysicalUni','0','270'), ('27688','867','272','vmwareNicTeam','0','271'), ('27689','867','277','docsOfdmDownstream','0','272'), ('27690','867','278','docsOfdmaUpstream','0','273'), ('27691','867','279','gfast','0','274'), ('27692','867','280','sdci','0','275'), ('27693','867','281','xboxWireless','0','276'), ('27694','867','282','fastdsl','0','277'), ('27695','867','283','docsCableScte55d1FwdOob','0','278'), ('27696','867','284','docsCableScte55d1RetOob','0','279'), ('27697','867','285','docsCableScte55d2DsOob','0','280'), ('27698','867','286','docsCableScte55d2UsOob','0','281'), ('27699','867','287','docsCableNdf','0','282'), ('27700','867','288','docsCableNdr','0','283'), ('27701','867','289','ptm','0','284'), ('27702','867','290','ghn','0','285'), ('27703','868','0','Down','0','0'), ('27704','868','1','Up','0','1'), ('27705','869','0','not available','0','0'), ('27706','869','1','available','0','1'), ('27707','869','2','unknown','0','2'), ('27708','870','1','up','0','0'), ('27709','870','2','down','0','1'), ('27710','870','4','unknown','0','2'), ('27711','870','5','dormant','0','3'), ('27712','870','6','notPresent','0','4'), ('27713','870','7','lowerLayerDown','0','5'), ('27714','871','1','other','0','0'), ('27715','871','2','regular1822','0','1'), ('27716','871','3','hdh1822','0','2'), ('27717','871','4','ddnX25','0','3'), ('27718','871','5','rfc877x25','0','4'), ('27719','871','6','ethernetCsmacd','0','5'), ('27720','871','7','iso88023Csmacd','0','6'), ('27721','871','8','iso88024TokenBus','0','7'), ('27722','871','9','iso88025TokenRing','0','8'), ('27723','871','10','iso88026Man','0','9'), ('27724','871','11','starLan','0','10'), ('27725','871','12','proteon10Mbit','0','11'), ('27726','871','13','proteon80Mbit','0','12'), ('27727','871','14','hyperchannel','0','13'), ('27728','871','15','fddi','0','14'), ('27729','871','16','lapb','0','15'), ('27730','871','17','sdlc','0','16'), ('27731','871','18','ds1','0','17'), ('27732','871','19','e1','0','18'), ('27733','871','20','basicISDN','0','19'), ('27734','871','21','primaryISDN','0','20'), ('27735','871','22','propPointToPointSerial','0','21'), ('27736','871','23','ppp','0','22'), ('27737','871','24','softwareLoopback','0','23'), ('27738','871','25','eon','0','24'), ('27739','871','26','ethernet3Mbit','0','25'), ('27740','871','27','nsip','0','26'), ('27741','871','28','slip','0','27'), ('27742','871','29','ultra','0','28'), ('27743','871','30','ds3','0','29'), ('27744','871','31','sip','0','30'), ('27745','871','32','frameRelay','0','31'), ('27746','871','33','rs232','0','32'), ('27747','871','34','para','0','33'), ('27748','871','35','arcnet','0','34'), ('27749','871','36','arcnetPlus','0','35'), ('27750','871','37','atm','0','36'), ('27751','871','38','miox25','0','37'), ('27752','871','39','sonet','0','38'), ('27753','871','40','x25ple','0','39'), ('27754','871','41','iso88022llc','0','40'), ('27755','871','42','localTalk','0','41'), ('27756','871','43','smdsDxi','0','42'), ('27757','871','44','frameRelayService','0','43'), ('27758','871','45','v35','0','44'), ('27759','871','46','hssi','0','45'), ('27760','871','47','hippi','0','46'), ('27761','871','48','modem','0','47'), ('27762','871','49','aal5','0','48'), ('27763','871','50','sonetPath','0','49'), ('27764','871','51','sonetVT','0','50'), ('27765','871','52','smdsIcip','0','51'), ('27766','871','53','propVirtual','0','52'), ('27767','871','54','propMultiplexor','0','53'), ('27768','871','55','ieee80212','0','54'), ('27769','871','56','fibreChannel','0','55'), ('27770','871','57','hippiInterface','0','56'), ('27771','871','58','frameRelayInterconnect','0','57'), ('27772','871','59','aflane8023','0','58'), ('27773','871','60','aflane8025','0','59'), ('27774','871','61','cctEmul','0','60'), ('27775','871','62','fastEther','0','61'), ('27776','871','63','isdn','0','62'), ('27777','871','64','v11','0','63'), ('27778','871','65','v36','0','64'), ('27779','871','66','g703at64k','0','65'), ('27780','871','67','g703at2mb','0','66'), ('27781','871','68','qllc','0','67'), ('27782','871','69','fastEtherFX','0','68'), ('27783','871','70','channel','0','69'), ('27784','871','71','ieee80211','0','70'), ('27785','871','72','ibm370parChan','0','71'), ('27786','871','73','escon','0','72'), ('27787','871','74','dlsw','0','73'), ('27788','871','75','isdns','0','74'), ('27789','871','76','isdnu','0','75'), ('27790','871','77','lapd','0','76'), ('27791','871','78','ipSwitch','0','77'), ('27792','871','79','rsrb','0','78'), ('27793','871','80','atmLogical','0','79'), ('27794','871','81','ds0','0','80'), ('27795','871','82','ds0Bundle','0','81'), ('27796','871','83','bsc','0','82'), ('27797','871','84','async','0','83'), ('27798','871','85','cnr','0','84'), ('27799','871','86','iso88025Dtr','0','85'), ('27800','871','87','eplrs','0','86'), ('27801','871','88','arap','0','87'), ('27802','871','89','propCnls','0','88'), ('27803','871','90','hostPad','0','89'), ('27804','871','91','termPad','0','90'), ('27805','871','92','frameRelayMPI','0','91'), ('27806','871','93','x213','0','92'), ('27807','871','94','adsl','0','93'), ('27808','871','95','radsl','0','94'), ('27809','871','96','sdsl','0','95'), ('27810','871','97','vdsl','0','96'), ('27811','871','98','iso88025CRFPInt','0','97'), ('27812','871','99','myrinet','0','98'), ('27813','871','100','voiceEM','0','99'), ('27814','871','101','voiceFXO','0','100'), ('27815','871','102','voiceFXS','0','101'), ('27816','871','103','voiceEncap','0','102'), ('27817','871','104','voiceOverIp','0','103'), ('27818','871','105','atmDxi','0','104'), ('27819','871','106','atmFuni','0','105'), ('27820','871','107','atmIma','0','106'), ('27821','871','108','pppMultilinkBundle','0','107'), ('27822','871','109','ipOverCdlc','0','108'), ('27823','871','110','ipOverClaw','0','109'), ('27824','871','111','stackToStack','0','110'), ('27825','871','112','virtualIpAddress','0','111'), ('27826','871','113','mpc','0','112'), ('27827','871','114','ipOverAtm','0','113'), ('27828','871','115','iso88025Fiber','0','114'), ('27829','871','116','tdlc','0','115'), ('27830','871','117','gigabitEthernet','0','116'), ('27831','871','118','hdlc','0','117'), ('27832','871','119','lapf','0','118'), ('27833','871','120','v37','0','119'), ('27834','871','121','x25mlp','0','120'), ('27835','871','122','x25huntGroup','0','121'), ('27836','871','123','trasnpHdlc','0','122'), ('27837','871','124','interleave','0','123'), ('27838','871','125','fast','0','124'), ('27839','871','126','ip','0','125'), ('27840','871','127','docsCableMaclayer','0','126'), ('27841','871','128','docsCableDownstream','0','127'), ('27842','871','129','docsCableUpstream','0','128'), ('27843','871','130','a12MppSwitch','0','129'), ('27844','871','131','tunnel','0','130'), ('27845','871','132','coffee','0','131'), ('27846','871','133','ces','0','132'), ('27847','871','134','atmSubInterface','0','133'), ('27848','871','135','l2vlan','0','134'), ('27849','871','136','l3ipvlan','0','135'), ('27850','871','137','l3ipxvlan','0','136'), ('27851','871','138','digitalPowerline','0','137'), ('27852','871','139','mediaMailOverIp','0','138'), ('27853','871','140','dtm','0','139'), ('27854','871','141','dcn','0','140'), ('27855','871','142','ipForward','0','141'), ('27856','871','143','msdsl','0','142'), ('27857','871','144','ieee1394','0','143'), ('27858','871','145','if-gsn','0','144'), ('27859','871','146','dvbRccMacLayer','0','145'), ('27860','871','147','dvbRccDownstream','0','146'), ('27861','871','148','dvbRccUpstream','0','147'), ('27862','871','149','atmVirtual','0','148'), ('27863','871','150','mplsTunnel','0','149'), ('27864','871','151','srp','0','150'), ('27865','871','152','voiceOverAtm','0','151'), ('27866','871','153','voiceOverFrameRelay','0','152'), ('27867','871','154','idsl','0','153'), ('27868','871','155','compositeLink','0','154'), ('27869','871','156','ss7SigLink','0','155'), ('27870','871','157','propWirelessP2P','0','156'), ('27871','871','158','frForward','0','157'), ('27872','871','159','rfc1483','0','158'), ('27873','871','160','usb','0','159'), ('27874','871','161','ieee8023adLag','0','160'), ('27875','871','162','bgppolicyaccounting','0','161'), ('27876','871','163','frf16MfrBundle','0','162'), ('27877','871','164','h323Gatekeeper','0','163'), ('27878','871','165','h323Proxy','0','164'), ('27879','871','166','mpls','0','165'), ('27880','871','167','mfSigLink','0','166'), ('27881','871','168','hdsl2','0','167'), ('27882','871','169','shdsl','0','168'), ('27883','871','170','ds1FDL','0','169'), ('27884','871','171','pos','0','170'), ('27885','871','172','dvbAsiIn','0','171'), ('27886','871','173','dvbAsiOut','0','172'), ('27887','871','174','plc','0','173'), ('27888','871','175','nfas','0','174'), ('27889','871','176','tr008','0','175'), ('27890','871','177','gr303RDT','0','176'), ('27891','871','178','gr303IDT','0','177'), ('27892','871','179','isup','0','178'), ('27893','871','180','propDocsWirelessMaclayer','0','179'), ('27894','871','181','propDocsWirelessDownstream','0','180'), ('27895','871','182','propDocsWirelessUpstream','0','181'), ('27896','871','183','hiperlan2','0','182'), ('27897','871','184','propBWAp2Mp','0','183'), ('27898','871','185','sonetOverheadChannel','0','184'), ('27899','871','186','digitalWrapperOverheadChannel','0','185'), ('27900','871','187','aal2','0','186'), ('27901','871','188','radioMAC','0','187'), ('27902','871','189','atmRadio','0','188'), ('27903','871','190','imt','0','189'), ('27904','871','191','mvl','0','190'), ('27905','871','192','reachDSL','0','191'), ('27906','871','193','frDlciEndPt','0','192'), ('27907','871','194','atmVciEndPt','0','193'), ('27908','871','195','opticalChannel','0','194'), ('27909','871','196','opticalTransport','0','195'), ('27910','871','197','propAtm','0','196'), ('27911','871','198','voiceOverCable','0','197'), ('27912','871','199','infiniband','0','198'), ('27913','871','200','teLink','0','199'), ('27914','871','201','q2931','0','200'), ('27915','871','202','virtualTg','0','201'), ('27916','871','203','sipTg','0','202'), ('27917','871','204','sipSig','0','203'), ('27918','871','205','docsCableUpstreamChannel','0','204'), ('27919','871','206','econet','0','205'), ('27920','871','207','pon155','0','206'), ('27921','871','208','pon622','0','207'), ('27922','871','209','bridge','0','208'), ('27923','871','210','linegroup','0','209'), ('27924','871','211','voiceEMFGD','0','210'), ('27925','871','212','voiceFGDEANA','0','211'), ('27926','871','213','voiceDID','0','212'), ('27927','871','214','mpegTransport','0','213'), ('27928','871','215','sixToFour','0','214'), ('27929','871','216','gtp','0','215'), ('27930','871','217','pdnEtherLoop1','0','216'), ('27931','871','218','pdnEtherLoop2','0','217'), ('27932','871','219','opticalChannelGroup','0','218'), ('27933','871','220','homepna','0','219'), ('27934','871','221','gfp','0','220'), ('27935','871','222','ciscoISLvlan','0','221'), ('27936','871','223','actelisMetaLOOP','0','222'), ('27937','871','224','fcipLink','0','223'), ('27938','871','225','rpr','0','224'), ('27939','871','226','qam','0','225'), ('27940','871','227','lmp','0','226'), ('27941','871','228','cblVectaStar','0','227'), ('27942','871','229','docsCableMCmtsDownstream','0','228'), ('27943','871','230','adsl2','0','229'), ('27944','871','231','macSecControlledIF','0','230'), ('27945','871','232','macSecUncontrolledIF','0','231'), ('27946','871','233','aviciOpticalEther','0','232'), ('27947','871','234','atmbond','0','233'), ('27948','871','235','voiceFGDOS','0','234'), ('27949','871','236','mocaVersion1','0','235'), ('27950','871','237','ieee80216WMAN','0','236'), ('27951','871','238','adsl2plus','0','237'), ('27952','871','239','dvbRcsMacLayer','0','238'), ('27953','871','240','dvbTdm','0','239'), ('27954','871','241','dvbRcsTdma','0','240'), ('27955','871','242','x86Laps','0','241'), ('27956','871','243','wwanPP','0','242'), ('27957','871','244','wwanPP2','0','243'), ('27958','871','245','voiceEBS','0','244'), ('27959','871','246','ifPwType','0','245'), ('27960','871','247','ilan','0','246'), ('27961','871','248','pip','0','247'), ('27962','871','249','aluELP','0','248'), ('27963','871','250','gpon','0','249'), ('27964','871','251','vdsl2','0','250'), ('27965','871','252','capwapDot11Profile','0','251'), ('27966','871','253','capwapDot11Bss','0','252'), ('27967','871','254','capwapWtpVirtualRadio','0','253'), ('27968','871','255','bits','0','254'), ('27969','871','256','docsCableUpstreamRfPort','0','255'), ('27970','871','257','cableDownstreamRfPort','0','256'), ('27971','871','258','vmwareVirtualNic','0','257'), ('27972','871','259','ieee802154','0','258'), ('27973','871','260','otnOdu','0','259'), ('27974','871','261','otnOtu','0','260'), ('27975','871','262','ifVfiType','0','261'), ('27976','871','263','g9981','0','262'), ('27977','871','264','g9982','0','263'), ('27978','871','265','g9983','0','264'), ('27979','871','266','aluEpon','0','265'), ('27980','871','267','aluEponOnu','0','266'), ('27981','871','268','aluEponPhysicalUni','0','267'), ('27982','871','269','aluEponLogicalLink','0','268'), ('27983','871','270','aluGponOnu','0','269'), ('27984','871','271','aluGponPhysicalUni','0','270'), ('27985','871','272','vmwareNicTeam','0','271'), ('27986','871','277','docsOfdmDownstream','0','272'), ('27987','871','278','docsOfdmaUpstream','0','273'), ('27988','871','279','gfast','0','274'), ('27989','871','280','sdci','0','275'), ('27990','871','281','xboxWireless','0','276'), ('27991','871','282','fastdsl','0','277'), ('27992','871','283','docsCableScte55d1FwdOob','0','278'), ('27993','871','284','docsCableScte55d1RetOob','0','279'), ('27994','871','285','docsCableScte55d2DsOob','0','280'), ('27995','871','286','docsCableScte55d2UsOob','0','281'), ('27996','871','287','docsCableNdf','0','282'), ('27997','871','288','docsCableNdr','0','283'), ('27998','871','289','ptm','0','284'), ('27999','871','290','ghn','0','285'), ('28000','872','0','Down','0','0'), ('28001','872','1','Up','0','1'), ('28002','873','0','not available','0','0'), ('28003','873','1','available','0','1'), ('28004','873','2','unknown','0','2'), ('28005','874','1','up','0','0'), ('28006','874','2','down','0','1'), ('28007','874','4','unknown','0','2'), ('28008','874','5','dormant','0','3'), ('28009','874','6','notPresent','0','4'), ('28010','874','7','lowerLayerDown','0','5'), ('28011','875','1','other','0','0'), ('28012','875','2','regular1822','0','1'), ('28013','875','3','hdh1822','0','2'), ('28014','875','4','ddnX25','0','3'), ('28015','875','5','rfc877x25','0','4'), ('28016','875','6','ethernetCsmacd','0','5'), ('28017','875','7','iso88023Csmacd','0','6'), ('28018','875','8','iso88024TokenBus','0','7'), ('28019','875','9','iso88025TokenRing','0','8'), ('28020','875','10','iso88026Man','0','9'), ('28021','875','11','starLan','0','10'), ('28022','875','12','proteon10Mbit','0','11'), ('28023','875','13','proteon80Mbit','0','12'), ('28024','875','14','hyperchannel','0','13'), ('28025','875','15','fddi','0','14'), ('28026','875','16','lapb','0','15'), ('28027','875','17','sdlc','0','16'), ('28028','875','18','ds1','0','17'), ('28029','875','19','e1','0','18'), ('28030','875','20','basicISDN','0','19'), ('28031','875','21','primaryISDN','0','20'), ('28032','875','22','propPointToPointSerial','0','21'), ('28033','875','23','ppp','0','22'), ('28034','875','24','softwareLoopback','0','23'), ('28035','875','25','eon','0','24'), ('28036','875','26','ethernet3Mbit','0','25'), ('28037','875','27','nsip','0','26'), ('28038','875','28','slip','0','27'), ('28039','875','29','ultra','0','28'), ('28040','875','30','ds3','0','29'), ('28041','875','31','sip','0','30'), ('28042','875','32','frameRelay','0','31'), ('28043','875','33','rs232','0','32'), ('28044','875','34','para','0','33'), ('28045','875','35','arcnet','0','34'), ('28046','875','36','arcnetPlus','0','35'), ('28047','875','37','atm','0','36'), ('28048','875','38','miox25','0','37'), ('28049','875','39','sonet','0','38'), ('28050','875','40','x25ple','0','39'), ('28051','875','41','iso88022llc','0','40'), ('28052','875','42','localTalk','0','41'), ('28053','875','43','smdsDxi','0','42'), ('28054','875','44','frameRelayService','0','43'), ('28055','875','45','v35','0','44'), ('28056','875','46','hssi','0','45'), ('28057','875','47','hippi','0','46'), ('28058','875','48','modem','0','47'), ('28059','875','49','aal5','0','48'), ('28060','875','50','sonetPath','0','49'), ('28061','875','51','sonetVT','0','50'), ('28062','875','52','smdsIcip','0','51'), ('28063','875','53','propVirtual','0','52'), ('28064','875','54','propMultiplexor','0','53'), ('28065','875','55','ieee80212','0','54'), ('28066','875','56','fibreChannel','0','55'), ('28067','875','57','hippiInterface','0','56'), ('28068','875','58','frameRelayInterconnect','0','57'), ('28069','875','59','aflane8023','0','58'), ('28070','875','60','aflane8025','0','59'), ('28071','875','61','cctEmul','0','60'), ('28072','875','62','fastEther','0','61'), ('28073','875','63','isdn','0','62'), ('28074','875','64','v11','0','63'), ('28075','875','65','v36','0','64'), ('28076','875','66','g703at64k','0','65'), ('28077','875','67','g703at2mb','0','66'), ('28078','875','68','qllc','0','67'), ('28079','875','69','fastEtherFX','0','68'), ('28080','875','70','channel','0','69'), ('28081','875','71','ieee80211','0','70'), ('28082','875','72','ibm370parChan','0','71'), ('28083','875','73','escon','0','72'), ('28084','875','74','dlsw','0','73'), ('28085','875','75','isdns','0','74'), ('28086','875','76','isdnu','0','75'), ('28087','875','77','lapd','0','76'), ('28088','875','78','ipSwitch','0','77'), ('28089','875','79','rsrb','0','78'), ('28090','875','80','atmLogical','0','79'), ('28091','875','81','ds0','0','80'), ('28092','875','82','ds0Bundle','0','81'), ('28093','875','83','bsc','0','82'), ('28094','875','84','async','0','83'), ('28095','875','85','cnr','0','84'), ('28096','875','86','iso88025Dtr','0','85'), ('28097','875','87','eplrs','0','86'), ('28098','875','88','arap','0','87'), ('28099','875','89','propCnls','0','88'), ('28100','875','90','hostPad','0','89'), ('28101','875','91','termPad','0','90'), ('28102','875','92','frameRelayMPI','0','91'), ('28103','875','93','x213','0','92'), ('28104','875','94','adsl','0','93'), ('28105','875','95','radsl','0','94'), ('28106','875','96','sdsl','0','95'), ('28107','875','97','vdsl','0','96'), ('28108','875','98','iso88025CRFPInt','0','97'), ('28109','875','99','myrinet','0','98'), ('28110','875','100','voiceEM','0','99'), ('28111','875','101','voiceFXO','0','100'), ('28112','875','102','voiceFXS','0','101'), ('28113','875','103','voiceEncap','0','102'), ('28114','875','104','voiceOverIp','0','103'), ('28115','875','105','atmDxi','0','104'), ('28116','875','106','atmFuni','0','105'), ('28117','875','107','atmIma','0','106'), ('28118','875','108','pppMultilinkBundle','0','107'), ('28119','875','109','ipOverCdlc','0','108'), ('28120','875','110','ipOverClaw','0','109'), ('28121','875','111','stackToStack','0','110'), ('28122','875','112','virtualIpAddress','0','111'), ('28123','875','113','mpc','0','112'), ('28124','875','114','ipOverAtm','0','113'), ('28125','875','115','iso88025Fiber','0','114'), ('28126','875','116','tdlc','0','115'), ('28127','875','117','gigabitEthernet','0','116'), ('28128','875','118','hdlc','0','117'), ('28129','875','119','lapf','0','118'), ('28130','875','120','v37','0','119'), ('28131','875','121','x25mlp','0','120'), ('28132','875','122','x25huntGroup','0','121'), ('28133','875','123','trasnpHdlc','0','122'), ('28134','875','124','interleave','0','123'), ('28135','875','125','fast','0','124'), ('28136','875','126','ip','0','125'), ('28137','875','127','docsCableMaclayer','0','126'), ('28138','875','128','docsCableDownstream','0','127'), ('28139','875','129','docsCableUpstream','0','128'), ('28140','875','130','a12MppSwitch','0','129'), ('28141','875','131','tunnel','0','130'), ('28142','875','132','coffee','0','131'), ('28143','875','133','ces','0','132'), ('28144','875','134','atmSubInterface','0','133'), ('28145','875','135','l2vlan','0','134'), ('28146','875','136','l3ipvlan','0','135'), ('28147','875','137','l3ipxvlan','0','136'), ('28148','875','138','digitalPowerline','0','137'), ('28149','875','139','mediaMailOverIp','0','138'), ('28150','875','140','dtm','0','139'), ('28151','875','141','dcn','0','140'), ('28152','875','142','ipForward','0','141'), ('28153','875','143','msdsl','0','142'), ('28154','875','144','ieee1394','0','143'), ('28155','875','145','if-gsn','0','144'), ('28156','875','146','dvbRccMacLayer','0','145'), ('28157','875','147','dvbRccDownstream','0','146'), ('28158','875','148','dvbRccUpstream','0','147'), ('28159','875','149','atmVirtual','0','148'), ('28160','875','150','mplsTunnel','0','149'), ('28161','875','151','srp','0','150'), ('28162','875','152','voiceOverAtm','0','151'), ('28163','875','153','voiceOverFrameRelay','0','152'), ('28164','875','154','idsl','0','153'), ('28165','875','155','compositeLink','0','154'), ('28166','875','156','ss7SigLink','0','155'), ('28167','875','157','propWirelessP2P','0','156'), ('28168','875','158','frForward','0','157'), ('28169','875','159','rfc1483','0','158'), ('28170','875','160','usb','0','159'), ('28171','875','161','ieee8023adLag','0','160'), ('28172','875','162','bgppolicyaccounting','0','161'), ('28173','875','163','frf16MfrBundle','0','162'), ('28174','875','164','h323Gatekeeper','0','163'), ('28175','875','165','h323Proxy','0','164'), ('28176','875','166','mpls','0','165'), ('28177','875','167','mfSigLink','0','166'), ('28178','875','168','hdsl2','0','167'), ('28179','875','169','shdsl','0','168'), ('28180','875','170','ds1FDL','0','169'), ('28181','875','171','pos','0','170'), ('28182','875','172','dvbAsiIn','0','171'), ('28183','875','173','dvbAsiOut','0','172'), ('28184','875','174','plc','0','173'), ('28185','875','175','nfas','0','174'), ('28186','875','176','tr008','0','175'), ('28187','875','177','gr303RDT','0','176'), ('28188','875','178','gr303IDT','0','177'), ('28189','875','179','isup','0','178'), ('28190','875','180','propDocsWirelessMaclayer','0','179'), ('28191','875','181','propDocsWirelessDownstream','0','180'), ('28192','875','182','propDocsWirelessUpstream','0','181'), ('28193','875','183','hiperlan2','0','182'), ('28194','875','184','propBWAp2Mp','0','183'), ('28195','875','185','sonetOverheadChannel','0','184'), ('28196','875','186','digitalWrapperOverheadChannel','0','185'), ('28197','875','187','aal2','0','186'), ('28198','875','188','radioMAC','0','187'), ('28199','875','189','atmRadio','0','188'), ('28200','875','190','imt','0','189'), ('28201','875','191','mvl','0','190'), ('28202','875','192','reachDSL','0','191'), ('28203','875','193','frDlciEndPt','0','192'), ('28204','875','194','atmVciEndPt','0','193'), ('28205','875','195','opticalChannel','0','194'), ('28206','875','196','opticalTransport','0','195'), ('28207','875','197','propAtm','0','196'), ('28208','875','198','voiceOverCable','0','197'), ('28209','875','199','infiniband','0','198'), ('28210','875','200','teLink','0','199'), ('28211','875','201','q2931','0','200'), ('28212','875','202','virtualTg','0','201'), ('28213','875','203','sipTg','0','202'), ('28214','875','204','sipSig','0','203'), ('28215','875','205','docsCableUpstreamChannel','0','204'), ('28216','875','206','econet','0','205'), ('28217','875','207','pon155','0','206'), ('28218','875','208','pon622','0','207'), ('28219','875','209','bridge','0','208'), ('28220','875','210','linegroup','0','209'), ('28221','875','211','voiceEMFGD','0','210'), ('28222','875','212','voiceFGDEANA','0','211'), ('28223','875','213','voiceDID','0','212'), ('28224','875','214','mpegTransport','0','213'), ('28225','875','215','sixToFour','0','214'), ('28226','875','216','gtp','0','215'), ('28227','875','217','pdnEtherLoop1','0','216'), ('28228','875','218','pdnEtherLoop2','0','217'), ('28229','875','219','opticalChannelGroup','0','218'), ('28230','875','220','homepna','0','219'), ('28231','875','221','gfp','0','220'), ('28232','875','222','ciscoISLvlan','0','221'), ('28233','875','223','actelisMetaLOOP','0','222'), ('28234','875','224','fcipLink','0','223'), ('28235','875','225','rpr','0','224'), ('28236','875','226','qam','0','225'), ('28237','875','227','lmp','0','226'), ('28238','875','228','cblVectaStar','0','227'), ('28239','875','229','docsCableMCmtsDownstream','0','228'), ('28240','875','230','adsl2','0','229'), ('28241','875','231','macSecControlledIF','0','230'), ('28242','875','232','macSecUncontrolledIF','0','231'), ('28243','875','233','aviciOpticalEther','0','232'), ('28244','875','234','atmbond','0','233'), ('28245','875','235','voiceFGDOS','0','234'), ('28246','875','236','mocaVersion1','0','235'), ('28247','875','237','ieee80216WMAN','0','236'), ('28248','875','238','adsl2plus','0','237'), ('28249','875','239','dvbRcsMacLayer','0','238'), ('28250','875','240','dvbTdm','0','239'), ('28251','875','241','dvbRcsTdma','0','240'), ('28252','875','242','x86Laps','0','241'), ('28253','875','243','wwanPP','0','242'), ('28254','875','244','wwanPP2','0','243'), ('28255','875','245','voiceEBS','0','244'), ('28256','875','246','ifPwType','0','245'), ('28257','875','247','ilan','0','246'), ('28258','875','248','pip','0','247'), ('28259','875','249','aluELP','0','248'), ('28260','875','250','gpon','0','249'), ('28261','875','251','vdsl2','0','250'), ('28262','875','252','capwapDot11Profile','0','251'), ('28263','875','253','capwapDot11Bss','0','252'), ('28264','875','254','capwapWtpVirtualRadio','0','253'), ('28265','875','255','bits','0','254'), ('28266','875','256','docsCableUpstreamRfPort','0','255'), ('28267','875','257','cableDownstreamRfPort','0','256'), ('28268','875','258','vmwareVirtualNic','0','257'), ('28269','875','259','ieee802154','0','258'), ('28270','875','260','otnOdu','0','259'), ('28271','875','261','otnOtu','0','260'), ('28272','875','262','ifVfiType','0','261'), ('28273','875','263','g9981','0','262'), ('28274','875','264','g9982','0','263'), ('28275','875','265','g9983','0','264'), ('28276','875','266','aluEpon','0','265'), ('28277','875','267','aluEponOnu','0','266'), ('28278','875','268','aluEponPhysicalUni','0','267'), ('28279','875','269','aluEponLogicalLink','0','268'), ('28280','875','270','aluGponOnu','0','269'), ('28281','875','271','aluGponPhysicalUni','0','270'), ('28282','875','272','vmwareNicTeam','0','271'), ('28283','875','277','docsOfdmDownstream','0','272'), ('28284','875','278','docsOfdmaUpstream','0','273'), ('28285','875','279','gfast','0','274'), ('28286','875','280','sdci','0','275'), ('28287','875','281','xboxWireless','0','276'), ('28288','875','282','fastdsl','0','277'), ('28289','875','283','docsCableScte55d1FwdOob','0','278'), ('28290','875','284','docsCableScte55d1RetOob','0','279'), ('28291','875','285','docsCableScte55d2DsOob','0','280'), ('28292','875','286','docsCableScte55d2UsOob','0','281'), ('28293','875','287','docsCableNdf','0','282'), ('28294','875','288','docsCableNdr','0','283'), ('28295','875','289','ptm','0','284'), ('28296','875','290','ghn','0','285'), ('28297','876','0','Down','0','0'), ('28298','876','1','Up','0','1'), ('28299','877','0','not available','0','0'), ('28300','877','1','available','0','1'), ('28301','877','2','unknown','0','2'), ('28302','878','1','up','0','0'), ('28303','878','2','down','0','1'), ('28304','878','4','unknown','0','2'), ('28305','878','5','dormant','0','3'), ('28306','878','6','notPresent','0','4'), ('28307','878','7','lowerLayerDown','0','5'), ('28308','879','1','other','0','0'), ('28309','879','2','regular1822','0','1'), ('28310','879','3','hdh1822','0','2'), ('28311','879','4','ddnX25','0','3'), ('28312','879','5','rfc877x25','0','4'), ('28313','879','6','ethernetCsmacd','0','5'), ('28314','879','7','iso88023Csmacd','0','6'), ('28315','879','8','iso88024TokenBus','0','7'), ('28316','879','9','iso88025TokenRing','0','8'), ('28317','879','10','iso88026Man','0','9'), ('28318','879','11','starLan','0','10'), ('28319','879','12','proteon10Mbit','0','11'), ('28320','879','13','proteon80Mbit','0','12'), ('28321','879','14','hyperchannel','0','13'), ('28322','879','15','fddi','0','14'), ('28323','879','16','lapb','0','15'), ('28324','879','17','sdlc','0','16'), ('28325','879','18','ds1','0','17'), ('28326','879','19','e1','0','18'), ('28327','879','20','basicISDN','0','19'), ('28328','879','21','primaryISDN','0','20'), ('28329','879','22','propPointToPointSerial','0','21'), ('28330','879','23','ppp','0','22'), ('28331','879','24','softwareLoopback','0','23'), ('28332','879','25','eon','0','24'), ('28333','879','26','ethernet3Mbit','0','25'), ('28334','879','27','nsip','0','26'), ('28335','879','28','slip','0','27'), ('28336','879','29','ultra','0','28'), ('28337','879','30','ds3','0','29'), ('28338','879','31','sip','0','30'), ('28339','879','32','frameRelay','0','31'), ('28340','879','33','rs232','0','32'), ('28341','879','34','para','0','33'), ('28342','879','35','arcnet','0','34'), ('28343','879','36','arcnetPlus','0','35'), ('28344','879','37','atm','0','36'), ('28345','879','38','miox25','0','37'), ('28346','879','39','sonet','0','38'), ('28347','879','40','x25ple','0','39'), ('28348','879','41','iso88022llc','0','40'), ('28349','879','42','localTalk','0','41'), ('28350','879','43','smdsDxi','0','42'), ('28351','879','44','frameRelayService','0','43'), ('28352','879','45','v35','0','44'), ('28353','879','46','hssi','0','45'), ('28354','879','47','hippi','0','46'), ('28355','879','48','modem','0','47'), ('28356','879','49','aal5','0','48'), ('28357','879','50','sonetPath','0','49'), ('28358','879','51','sonetVT','0','50'), ('28359','879','52','smdsIcip','0','51'), ('28360','879','53','propVirtual','0','52'), ('28361','879','54','propMultiplexor','0','53'), ('28362','879','55','ieee80212','0','54'), ('28363','879','56','fibreChannel','0','55'), ('28364','879','57','hippiInterface','0','56'), ('28365','879','58','frameRelayInterconnect','0','57'), ('28366','879','59','aflane8023','0','58'), ('28367','879','60','aflane8025','0','59'), ('28368','879','61','cctEmul','0','60'), ('28369','879','62','fastEther','0','61'), ('28370','879','63','isdn','0','62'), ('28371','879','64','v11','0','63'), ('28372','879','65','v36','0','64'), ('28373','879','66','g703at64k','0','65'), ('28374','879','67','g703at2mb','0','66'), ('28375','879','68','qllc','0','67'), ('28376','879','69','fastEtherFX','0','68'), ('28377','879','70','channel','0','69'), ('28378','879','71','ieee80211','0','70'), ('28379','879','72','ibm370parChan','0','71'), ('28380','879','73','escon','0','72'), ('28381','879','74','dlsw','0','73'), ('28382','879','75','isdns','0','74'), ('28383','879','76','isdnu','0','75'), ('28384','879','77','lapd','0','76'), ('28385','879','78','ipSwitch','0','77'), ('28386','879','79','rsrb','0','78'), ('28387','879','80','atmLogical','0','79'), ('28388','879','81','ds0','0','80'), ('28389','879','82','ds0Bundle','0','81'), ('28390','879','83','bsc','0','82'), ('28391','879','84','async','0','83'), ('28392','879','85','cnr','0','84'), ('28393','879','86','iso88025Dtr','0','85'), ('28394','879','87','eplrs','0','86'), ('28395','879','88','arap','0','87'), ('28396','879','89','propCnls','0','88'), ('28397','879','90','hostPad','0','89'), ('28398','879','91','termPad','0','90'), ('28399','879','92','frameRelayMPI','0','91'), ('28400','879','93','x213','0','92'), ('28401','879','94','adsl','0','93'), ('28402','879','95','radsl','0','94'), ('28403','879','96','sdsl','0','95'), ('28404','879','97','vdsl','0','96'), ('28405','879','98','iso88025CRFPInt','0','97'), ('28406','879','99','myrinet','0','98'), ('28407','879','100','voiceEM','0','99'), ('28408','879','101','voiceFXO','0','100'), ('28409','879','102','voiceFXS','0','101'), ('28410','879','103','voiceEncap','0','102'), ('28411','879','104','voiceOverIp','0','103'), ('28412','879','105','atmDxi','0','104'), ('28413','879','106','atmFuni','0','105'), ('28414','879','107','atmIma','0','106'), ('28415','879','108','pppMultilinkBundle','0','107'), ('28416','879','109','ipOverCdlc','0','108'), ('28417','879','110','ipOverClaw','0','109'), ('28418','879','111','stackToStack','0','110'), ('28419','879','112','virtualIpAddress','0','111'), ('28420','879','113','mpc','0','112'), ('28421','879','114','ipOverAtm','0','113'), ('28422','879','115','iso88025Fiber','0','114'), ('28423','879','116','tdlc','0','115'), ('28424','879','117','gigabitEthernet','0','116'), ('28425','879','118','hdlc','0','117'), ('28426','879','119','lapf','0','118'), ('28427','879','120','v37','0','119'), ('28428','879','121','x25mlp','0','120'), ('28429','879','122','x25huntGroup','0','121'), ('28430','879','123','trasnpHdlc','0','122'), ('28431','879','124','interleave','0','123'), ('28432','879','125','fast','0','124'), ('28433','879','126','ip','0','125'), ('28434','879','127','docsCableMaclayer','0','126'), ('28435','879','128','docsCableDownstream','0','127'), ('28436','879','129','docsCableUpstream','0','128'), ('28437','879','130','a12MppSwitch','0','129'), ('28438','879','131','tunnel','0','130'), ('28439','879','132','coffee','0','131'), ('28440','879','133','ces','0','132'), ('28441','879','134','atmSubInterface','0','133'), ('28442','879','135','l2vlan','0','134'), ('28443','879','136','l3ipvlan','0','135'), ('28444','879','137','l3ipxvlan','0','136'), ('28445','879','138','digitalPowerline','0','137'), ('28446','879','139','mediaMailOverIp','0','138'), ('28447','879','140','dtm','0','139'), ('28448','879','141','dcn','0','140'), ('28449','879','142','ipForward','0','141'), ('28450','879','143','msdsl','0','142'), ('28451','879','144','ieee1394','0','143'), ('28452','879','145','if-gsn','0','144'), ('28453','879','146','dvbRccMacLayer','0','145'), ('28454','879','147','dvbRccDownstream','0','146'), ('28455','879','148','dvbRccUpstream','0','147'), ('28456','879','149','atmVirtual','0','148'), ('28457','879','150','mplsTunnel','0','149'), ('28458','879','151','srp','0','150'), ('28459','879','152','voiceOverAtm','0','151'), ('28460','879','153','voiceOverFrameRelay','0','152'), ('28461','879','154','idsl','0','153'), ('28462','879','155','compositeLink','0','154'), ('28463','879','156','ss7SigLink','0','155'), ('28464','879','157','propWirelessP2P','0','156'), ('28465','879','158','frForward','0','157'), ('28466','879','159','rfc1483','0','158'), ('28467','879','160','usb','0','159'), ('28468','879','161','ieee8023adLag','0','160'), ('28469','879','162','bgppolicyaccounting','0','161'), ('28470','879','163','frf16MfrBundle','0','162'), ('28471','879','164','h323Gatekeeper','0','163'), ('28472','879','165','h323Proxy','0','164'), ('28473','879','166','mpls','0','165'), ('28474','879','167','mfSigLink','0','166'), ('28475','879','168','hdsl2','0','167'), ('28476','879','169','shdsl','0','168'), ('28477','879','170','ds1FDL','0','169'), ('28478','879','171','pos','0','170'), ('28479','879','172','dvbAsiIn','0','171'), ('28480','879','173','dvbAsiOut','0','172'), ('28481','879','174','plc','0','173'), ('28482','879','175','nfas','0','174'), ('28483','879','176','tr008','0','175'), ('28484','879','177','gr303RDT','0','176'), ('28485','879','178','gr303IDT','0','177'), ('28486','879','179','isup','0','178'), ('28487','879','180','propDocsWirelessMaclayer','0','179'), ('28488','879','181','propDocsWirelessDownstream','0','180'), ('28489','879','182','propDocsWirelessUpstream','0','181'), ('28490','879','183','hiperlan2','0','182'), ('28491','879','184','propBWAp2Mp','0','183'), ('28492','879','185','sonetOverheadChannel','0','184'), ('28493','879','186','digitalWrapperOverheadChannel','0','185'), ('28494','879','187','aal2','0','186'), ('28495','879','188','radioMAC','0','187'), ('28496','879','189','atmRadio','0','188'), ('28497','879','190','imt','0','189'), ('28498','879','191','mvl','0','190'), ('28499','879','192','reachDSL','0','191'), ('28500','879','193','frDlciEndPt','0','192'), ('28501','879','194','atmVciEndPt','0','193'), ('28502','879','195','opticalChannel','0','194'), ('28503','879','196','opticalTransport','0','195'), ('28504','879','197','propAtm','0','196'), ('28505','879','198','voiceOverCable','0','197'), ('28506','879','199','infiniband','0','198'), ('28507','879','200','teLink','0','199'), ('28508','879','201','q2931','0','200'), ('28509','879','202','virtualTg','0','201'), ('28510','879','203','sipTg','0','202'), ('28511','879','204','sipSig','0','203'), ('28512','879','205','docsCableUpstreamChannel','0','204'), ('28513','879','206','econet','0','205'), ('28514','879','207','pon155','0','206'), ('28515','879','208','pon622','0','207'), ('28516','879','209','bridge','0','208'), ('28517','879','210','linegroup','0','209'), ('28518','879','211','voiceEMFGD','0','210'), ('28519','879','212','voiceFGDEANA','0','211'), ('28520','879','213','voiceDID','0','212'), ('28521','879','214','mpegTransport','0','213'), ('28522','879','215','sixToFour','0','214'), ('28523','879','216','gtp','0','215'), ('28524','879','217','pdnEtherLoop1','0','216'), ('28525','879','218','pdnEtherLoop2','0','217'), ('28526','879','219','opticalChannelGroup','0','218'), ('28527','879','220','homepna','0','219'), ('28528','879','221','gfp','0','220'), ('28529','879','222','ciscoISLvlan','0','221'), ('28530','879','223','actelisMetaLOOP','0','222'), ('28531','879','224','fcipLink','0','223'), ('28532','879','225','rpr','0','224'), ('28533','879','226','qam','0','225'), ('28534','879','227','lmp','0','226'), ('28535','879','228','cblVectaStar','0','227'), ('28536','879','229','docsCableMCmtsDownstream','0','228'), ('28537','879','230','adsl2','0','229'), ('28538','879','231','macSecControlledIF','0','230'), ('28539','879','232','macSecUncontrolledIF','0','231'), ('28540','879','233','aviciOpticalEther','0','232'), ('28541','879','234','atmbond','0','233'), ('28542','879','235','voiceFGDOS','0','234'), ('28543','879','236','mocaVersion1','0','235'), ('28544','879','237','ieee80216WMAN','0','236'), ('28545','879','238','adsl2plus','0','237'), ('28546','879','239','dvbRcsMacLayer','0','238'), ('28547','879','240','dvbTdm','0','239'), ('28548','879','241','dvbRcsTdma','0','240'), ('28549','879','242','x86Laps','0','241'), ('28550','879','243','wwanPP','0','242'), ('28551','879','244','wwanPP2','0','243'), ('28552','879','245','voiceEBS','0','244'), ('28553','879','246','ifPwType','0','245'), ('28554','879','247','ilan','0','246'), ('28555','879','248','pip','0','247'), ('28556','879','249','aluELP','0','248'), ('28557','879','250','gpon','0','249'), ('28558','879','251','vdsl2','0','250'), ('28559','879','252','capwapDot11Profile','0','251'), ('28560','879','253','capwapDot11Bss','0','252'), ('28561','879','254','capwapWtpVirtualRadio','0','253'), ('28562','879','255','bits','0','254'), ('28563','879','256','docsCableUpstreamRfPort','0','255'), ('28564','879','257','cableDownstreamRfPort','0','256'), ('28565','879','258','vmwareVirtualNic','0','257'), ('28566','879','259','ieee802154','0','258'), ('28567','879','260','otnOdu','0','259'), ('28568','879','261','otnOtu','0','260'), ('28569','879','262','ifVfiType','0','261'), ('28570','879','263','g9981','0','262'), ('28571','879','264','g9982','0','263'), ('28572','879','265','g9983','0','264'), ('28573','879','266','aluEpon','0','265'), ('28574','879','267','aluEponOnu','0','266'), ('28575','879','268','aluEponPhysicalUni','0','267'), ('28576','879','269','aluEponLogicalLink','0','268'), ('28577','879','270','aluGponOnu','0','269'), ('28578','879','271','aluGponPhysicalUni','0','270'), ('28579','879','272','vmwareNicTeam','0','271'), ('28580','879','277','docsOfdmDownstream','0','272'), ('28581','879','278','docsOfdmaUpstream','0','273'), ('28582','879','279','gfast','0','274'), ('28583','879','280','sdci','0','275'), ('28584','879','281','xboxWireless','0','276'), ('28585','879','282','fastdsl','0','277'), ('28586','879','283','docsCableScte55d1FwdOob','0','278'), ('28587','879','284','docsCableScte55d1RetOob','0','279'), ('28588','879','285','docsCableScte55d2DsOob','0','280'), ('28589','879','286','docsCableScte55d2UsOob','0','281'), ('28590','879','287','docsCableNdf','0','282'), ('28591','879','288','docsCableNdr','0','283'), ('28592','879','289','ptm','0','284'), ('28593','879','290','ghn','0','285'), ('28594','880','0','Down','0','0'), ('28595','880','1','Up','0','1'), ('28596','881','0','not available','0','0'), ('28597','881','1','available','0','1'), ('28598','881','2','unknown','0','2'), ('28599','882','1','up','0','0'), ('28600','882','2','down','0','1'), ('28601','882','4','unknown','0','2'), ('28602','882','5','dormant','0','3'), ('28603','882','6','notPresent','0','4'), ('28604','882','7','lowerLayerDown','0','5'), ('28605','883','1','other','0','0'), ('28606','883','2','regular1822','0','1'), ('28607','883','3','hdh1822','0','2'), ('28608','883','4','ddnX25','0','3'), ('28609','883','5','rfc877x25','0','4'), ('28610','883','6','ethernetCsmacd','0','5'), ('28611','883','7','iso88023Csmacd','0','6'), ('28612','883','8','iso88024TokenBus','0','7'), ('28613','883','9','iso88025TokenRing','0','8'), ('28614','883','10','iso88026Man','0','9'), ('28615','883','11','starLan','0','10'), ('28616','883','12','proteon10Mbit','0','11'), ('28617','883','13','proteon80Mbit','0','12'), ('28618','883','14','hyperchannel','0','13'), ('28619','883','15','fddi','0','14'), ('28620','883','16','lapb','0','15'), ('28621','883','17','sdlc','0','16'), ('28622','883','18','ds1','0','17'), ('28623','883','19','e1','0','18'), ('28624','883','20','basicISDN','0','19'), ('28625','883','21','primaryISDN','0','20'), ('28626','883','22','propPointToPointSerial','0','21'), ('28627','883','23','ppp','0','22'), ('28628','883','24','softwareLoopback','0','23'), ('28629','883','25','eon','0','24'), ('28630','883','26','ethernet3Mbit','0','25'), ('28631','883','27','nsip','0','26'), ('28632','883','28','slip','0','27'), ('28633','883','29','ultra','0','28'), ('28634','883','30','ds3','0','29'), ('28635','883','31','sip','0','30'), ('28636','883','32','frameRelay','0','31'), ('28637','883','33','rs232','0','32'), ('28638','883','34','para','0','33'), ('28639','883','35','arcnet','0','34'), ('28640','883','36','arcnetPlus','0','35'), ('28641','883','37','atm','0','36'), ('28642','883','38','miox25','0','37'), ('28643','883','39','sonet','0','38'), ('28644','883','40','x25ple','0','39'), ('28645','883','41','iso88022llc','0','40'), ('28646','883','42','localTalk','0','41'), ('28647','883','43','smdsDxi','0','42'), ('28648','883','44','frameRelayService','0','43'), ('28649','883','45','v35','0','44'), ('28650','883','46','hssi','0','45'), ('28651','883','47','hippi','0','46'), ('28652','883','48','modem','0','47'), ('28653','883','49','aal5','0','48'), ('28654','883','50','sonetPath','0','49'), ('28655','883','51','sonetVT','0','50'), ('28656','883','52','smdsIcip','0','51'), ('28657','883','53','propVirtual','0','52'), ('28658','883','54','propMultiplexor','0','53'), ('28659','883','55','ieee80212','0','54'), ('28660','883','56','fibreChannel','0','55'), ('28661','883','57','hippiInterface','0','56'), ('28662','883','58','frameRelayInterconnect','0','57'), ('28663','883','59','aflane8023','0','58'), ('28664','883','60','aflane8025','0','59'), ('28665','883','61','cctEmul','0','60'), ('28666','883','62','fastEther','0','61'), ('28667','883','63','isdn','0','62'), ('28668','883','64','v11','0','63'), ('28669','883','65','v36','0','64'), ('28670','883','66','g703at64k','0','65'), ('28671','883','67','g703at2mb','0','66'), ('28672','883','68','qllc','0','67'), ('28673','883','69','fastEtherFX','0','68'), ('28674','883','70','channel','0','69'), ('28675','883','71','ieee80211','0','70'), ('28676','883','72','ibm370parChan','0','71'), ('28677','883','73','escon','0','72'), ('28678','883','74','dlsw','0','73'), ('28679','883','75','isdns','0','74'), ('28680','883','76','isdnu','0','75'), ('28681','883','77','lapd','0','76'), ('28682','883','78','ipSwitch','0','77'), ('28683','883','79','rsrb','0','78'), ('28684','883','80','atmLogical','0','79'), ('28685','883','81','ds0','0','80'), ('28686','883','82','ds0Bundle','0','81'), ('28687','883','83','bsc','0','82'), ('28688','883','84','async','0','83'), ('28689','883','85','cnr','0','84'), ('28690','883','86','iso88025Dtr','0','85'), ('28691','883','87','eplrs','0','86'), ('28692','883','88','arap','0','87'), ('28693','883','89','propCnls','0','88'), ('28694','883','90','hostPad','0','89'), ('28695','883','91','termPad','0','90'), ('28696','883','92','frameRelayMPI','0','91'), ('28697','883','93','x213','0','92'), ('28698','883','94','adsl','0','93'), ('28699','883','95','radsl','0','94'), ('28700','883','96','sdsl','0','95'), ('28701','883','97','vdsl','0','96'), ('28702','883','98','iso88025CRFPInt','0','97'), ('28703','883','99','myrinet','0','98'), ('28704','883','100','voiceEM','0','99'), ('28705','883','101','voiceFXO','0','100'), ('28706','883','102','voiceFXS','0','101'), ('28707','883','103','voiceEncap','0','102'), ('28708','883','104','voiceOverIp','0','103'), ('28709','883','105','atmDxi','0','104'), ('28710','883','106','atmFuni','0','105'), ('28711','883','107','atmIma','0','106'), ('28712','883','108','pppMultilinkBundle','0','107'), ('28713','883','109','ipOverCdlc','0','108'), ('28714','883','110','ipOverClaw','0','109'), ('28715','883','111','stackToStack','0','110'), ('28716','883','112','virtualIpAddress','0','111'), ('28717','883','113','mpc','0','112'), ('28718','883','114','ipOverAtm','0','113'), ('28719','883','115','iso88025Fiber','0','114'), ('28720','883','116','tdlc','0','115'), ('28721','883','117','gigabitEthernet','0','116'), ('28722','883','118','hdlc','0','117'), ('28723','883','119','lapf','0','118'), ('28724','883','120','v37','0','119'), ('28725','883','121','x25mlp','0','120'), ('28726','883','122','x25huntGroup','0','121'), ('28727','883','123','trasnpHdlc','0','122'), ('28728','883','124','interleave','0','123'), ('28729','883','125','fast','0','124'), ('28730','883','126','ip','0','125'), ('28731','883','127','docsCableMaclayer','0','126'), ('28732','883','128','docsCableDownstream','0','127'), ('28733','883','129','docsCableUpstream','0','128'), ('28734','883','130','a12MppSwitch','0','129'), ('28735','883','131','tunnel','0','130'), ('28736','883','132','coffee','0','131'), ('28737','883','133','ces','0','132'), ('28738','883','134','atmSubInterface','0','133'), ('28739','883','135','l2vlan','0','134'), ('28740','883','136','l3ipvlan','0','135'), ('28741','883','137','l3ipxvlan','0','136'), ('28742','883','138','digitalPowerline','0','137'), ('28743','883','139','mediaMailOverIp','0','138'), ('28744','883','140','dtm','0','139'), ('28745','883','141','dcn','0','140'), ('28746','883','142','ipForward','0','141'), ('28747','883','143','msdsl','0','142'), ('28748','883','144','ieee1394','0','143'), ('28749','883','145','if-gsn','0','144'), ('28750','883','146','dvbRccMacLayer','0','145'), ('28751','883','147','dvbRccDownstream','0','146'), ('28752','883','148','dvbRccUpstream','0','147'), ('28753','883','149','atmVirtual','0','148'), ('28754','883','150','mplsTunnel','0','149'), ('28755','883','151','srp','0','150'), ('28756','883','152','voiceOverAtm','0','151'), ('28757','883','153','voiceOverFrameRelay','0','152'), ('28758','883','154','idsl','0','153'), ('28759','883','155','compositeLink','0','154'), ('28760','883','156','ss7SigLink','0','155'), ('28761','883','157','propWirelessP2P','0','156'), ('28762','883','158','frForward','0','157'), ('28763','883','159','rfc1483','0','158'), ('28764','883','160','usb','0','159'), ('28765','883','161','ieee8023adLag','0','160'), ('28766','883','162','bgppolicyaccounting','0','161'), ('28767','883','163','frf16MfrBundle','0','162'), ('28768','883','164','h323Gatekeeper','0','163'), ('28769','883','165','h323Proxy','0','164'), ('28770','883','166','mpls','0','165'), ('28771','883','167','mfSigLink','0','166'), ('28772','883','168','hdsl2','0','167'), ('28773','883','169','shdsl','0','168'), ('28774','883','170','ds1FDL','0','169'), ('28775','883','171','pos','0','170'), ('28776','883','172','dvbAsiIn','0','171'), ('28777','883','173','dvbAsiOut','0','172'), ('28778','883','174','plc','0','173'), ('28779','883','175','nfas','0','174'), ('28780','883','176','tr008','0','175'), ('28781','883','177','gr303RDT','0','176'), ('28782','883','178','gr303IDT','0','177'), ('28783','883','179','isup','0','178'), ('28784','883','180','propDocsWirelessMaclayer','0','179'), ('28785','883','181','propDocsWirelessDownstream','0','180'), ('28786','883','182','propDocsWirelessUpstream','0','181'), ('28787','883','183','hiperlan2','0','182'), ('28788','883','184','propBWAp2Mp','0','183'), ('28789','883','185','sonetOverheadChannel','0','184'), ('28790','883','186','digitalWrapperOverheadChannel','0','185'), ('28791','883','187','aal2','0','186'), ('28792','883','188','radioMAC','0','187'), ('28793','883','189','atmRadio','0','188'), ('28794','883','190','imt','0','189'), ('28795','883','191','mvl','0','190'), ('28796','883','192','reachDSL','0','191'), ('28797','883','193','frDlciEndPt','0','192'), ('28798','883','194','atmVciEndPt','0','193'), ('28799','883','195','opticalChannel','0','194'), ('28800','883','196','opticalTransport','0','195'), ('28801','883','197','propAtm','0','196'), ('28802','883','198','voiceOverCable','0','197'), ('28803','883','199','infiniband','0','198'), ('28804','883','200','teLink','0','199'), ('28805','883','201','q2931','0','200'), ('28806','883','202','virtualTg','0','201'), ('28807','883','203','sipTg','0','202'), ('28808','883','204','sipSig','0','203'), ('28809','883','205','docsCableUpstreamChannel','0','204'), ('28810','883','206','econet','0','205'), ('28811','883','207','pon155','0','206'), ('28812','883','208','pon622','0','207'), ('28813','883','209','bridge','0','208'), ('28814','883','210','linegroup','0','209'), ('28815','883','211','voiceEMFGD','0','210'), ('28816','883','212','voiceFGDEANA','0','211'), ('28817','883','213','voiceDID','0','212'), ('28818','883','214','mpegTransport','0','213'), ('28819','883','215','sixToFour','0','214'), ('28820','883','216','gtp','0','215'), ('28821','883','217','pdnEtherLoop1','0','216'), ('28822','883','218','pdnEtherLoop2','0','217'), ('28823','883','219','opticalChannelGroup','0','218'), ('28824','883','220','homepna','0','219'), ('28825','883','221','gfp','0','220'), ('28826','883','222','ciscoISLvlan','0','221'), ('28827','883','223','actelisMetaLOOP','0','222'), ('28828','883','224','fcipLink','0','223'), ('28829','883','225','rpr','0','224'), ('28830','883','226','qam','0','225'), ('28831','883','227','lmp','0','226'), ('28832','883','228','cblVectaStar','0','227'), ('28833','883','229','docsCableMCmtsDownstream','0','228'), ('28834','883','230','adsl2','0','229'), ('28835','883','231','macSecControlledIF','0','230'), ('28836','883','232','macSecUncontrolledIF','0','231'), ('28837','883','233','aviciOpticalEther','0','232'), ('28838','883','234','atmbond','0','233'), ('28839','883','235','voiceFGDOS','0','234'), ('28840','883','236','mocaVersion1','0','235'), ('28841','883','237','ieee80216WMAN','0','236'), ('28842','883','238','adsl2plus','0','237'), ('28843','883','239','dvbRcsMacLayer','0','238'), ('28844','883','240','dvbTdm','0','239'), ('28845','883','241','dvbRcsTdma','0','240'), ('28846','883','242','x86Laps','0','241'), ('28847','883','243','wwanPP','0','242'), ('28848','883','244','wwanPP2','0','243'), ('28849','883','245','voiceEBS','0','244'), ('28850','883','246','ifPwType','0','245'), ('28851','883','247','ilan','0','246'), ('28852','883','248','pip','0','247'), ('28853','883','249','aluELP','0','248'), ('28854','883','250','gpon','0','249'), ('28855','883','251','vdsl2','0','250'), ('28856','883','252','capwapDot11Profile','0','251'), ('28857','883','253','capwapDot11Bss','0','252'), ('28858','883','254','capwapWtpVirtualRadio','0','253'), ('28859','883','255','bits','0','254'), ('28860','883','256','docsCableUpstreamRfPort','0','255'), ('28861','883','257','cableDownstreamRfPort','0','256'), ('28862','883','258','vmwareVirtualNic','0','257'), ('28863','883','259','ieee802154','0','258'), ('28864','883','260','otnOdu','0','259'), ('28865','883','261','otnOtu','0','260'), ('28866','883','262','ifVfiType','0','261'), ('28867','883','263','g9981','0','262'), ('28868','883','264','g9982','0','263'), ('28869','883','265','g9983','0','264'), ('28870','883','266','aluEpon','0','265'), ('28871','883','267','aluEponOnu','0','266'), ('28872','883','268','aluEponPhysicalUni','0','267'), ('28873','883','269','aluEponLogicalLink','0','268'), ('28874','883','270','aluGponOnu','0','269'), ('28875','883','271','aluGponPhysicalUni','0','270'), ('28876','883','272','vmwareNicTeam','0','271'), ('28877','883','277','docsOfdmDownstream','0','272'), ('28878','883','278','docsOfdmaUpstream','0','273'), ('28879','883','279','gfast','0','274'), ('28880','883','280','sdci','0','275'), ('28881','883','281','xboxWireless','0','276'), ('28882','883','282','fastdsl','0','277'), ('28883','883','283','docsCableScte55d1FwdOob','0','278'), ('28884','883','284','docsCableScte55d1RetOob','0','279'), ('28885','883','285','docsCableScte55d2DsOob','0','280'), ('28886','883','286','docsCableScte55d2UsOob','0','281'), ('28887','883','287','docsCableNdf','0','282'), ('28888','883','288','docsCableNdr','0','283'), ('28889','883','289','ptm','0','284'), ('28890','883','290','ghn','0','285'), ('28891','884','0','Down','0','0'), ('28892','884','1','Up','0','1'), ('28893','885','0','not available','0','0'), ('28894','885','1','available','0','1'), ('28895','885','2','unknown','0','2'), ('28896','886','1','unknown','0','0'), ('28897','886','2','halfDuplex','0','1'), ('28898','886','3','fullDuplex','0','2'), ('28899','887','1','up','0','0'), ('28900','887','2','down','0','1'), ('28901','887','4','unknown','0','2'), ('28902','887','5','dormant','0','3'), ('28903','887','6','notPresent','0','4'), ('28904','887','7','lowerLayerDown','0','5'), ('28905','888','1','other','0','0'), ('28906','888','2','regular1822','0','1'), ('28907','888','3','hdh1822','0','2'), ('28908','888','4','ddnX25','0','3'), ('28909','888','5','rfc877x25','0','4'), ('28910','888','6','ethernetCsmacd','0','5'), ('28911','888','7','iso88023Csmacd','0','6'), ('28912','888','8','iso88024TokenBus','0','7'), ('28913','888','9','iso88025TokenRing','0','8'), ('28914','888','10','iso88026Man','0','9'), ('28915','888','11','starLan','0','10'), ('28916','888','12','proteon10Mbit','0','11'), ('28917','888','13','proteon80Mbit','0','12'), ('28918','888','14','hyperchannel','0','13'), ('28919','888','15','fddi','0','14'), ('28920','888','16','lapb','0','15'), ('28921','888','17','sdlc','0','16'), ('28922','888','18','ds1','0','17'), ('28923','888','19','e1','0','18'), ('28924','888','20','basicISDN','0','19'), ('28925','888','21','primaryISDN','0','20'), ('28926','888','22','propPointToPointSerial','0','21'), ('28927','888','23','ppp','0','22'), ('28928','888','24','softwareLoopback','0','23'), ('28929','888','25','eon','0','24'), ('28930','888','26','ethernet3Mbit','0','25'), ('28931','888','27','nsip','0','26'), ('28932','888','28','slip','0','27'), ('28933','888','29','ultra','0','28'), ('28934','888','30','ds3','0','29'), ('28935','888','31','sip','0','30'), ('28936','888','32','frameRelay','0','31'), ('28937','888','33','rs232','0','32'), ('28938','888','34','para','0','33'), ('28939','888','35','arcnet','0','34'), ('28940','888','36','arcnetPlus','0','35'), ('28941','888','37','atm','0','36'), ('28942','888','38','miox25','0','37'), ('28943','888','39','sonet','0','38'), ('28944','888','40','x25ple','0','39'), ('28945','888','41','iso88022llc','0','40'), ('28946','888','42','localTalk','0','41'), ('28947','888','43','smdsDxi','0','42'), ('28948','888','44','frameRelayService','0','43'), ('28949','888','45','v35','0','44'), ('28950','888','46','hssi','0','45'), ('28951','888','47','hippi','0','46'), ('28952','888','48','modem','0','47'), ('28953','888','49','aal5','0','48'), ('28954','888','50','sonetPath','0','49'), ('28955','888','51','sonetVT','0','50'), ('28956','888','52','smdsIcip','0','51'), ('28957','888','53','propVirtual','0','52'), ('28958','888','54','propMultiplexor','0','53'), ('28959','888','55','ieee80212','0','54'), ('28960','888','56','fibreChannel','0','55'), ('28961','888','57','hippiInterface','0','56'), ('28962','888','58','frameRelayInterconnect','0','57'), ('28963','888','59','aflane8023','0','58'), ('28964','888','60','aflane8025','0','59'), ('28965','888','61','cctEmul','0','60'), ('28966','888','62','fastEther','0','61'), ('28967','888','63','isdn','0','62'), ('28968','888','64','v11','0','63'), ('28969','888','65','v36','0','64'), ('28970','888','66','g703at64k','0','65'), ('28971','888','67','g703at2mb','0','66'), ('28972','888','68','qllc','0','67'), ('28973','888','69','fastEtherFX','0','68'), ('28974','888','70','channel','0','69'), ('28975','888','71','ieee80211','0','70'), ('28976','888','72','ibm370parChan','0','71'), ('28977','888','73','escon','0','72'), ('28978','888','74','dlsw','0','73'), ('28979','888','75','isdns','0','74'), ('28980','888','76','isdnu','0','75'), ('28981','888','77','lapd','0','76'), ('28982','888','78','ipSwitch','0','77'), ('28983','888','79','rsrb','0','78'), ('28984','888','80','atmLogical','0','79'), ('28985','888','81','ds0','0','80'), ('28986','888','82','ds0Bundle','0','81'), ('28987','888','83','bsc','0','82'), ('28988','888','84','async','0','83'), ('28989','888','85','cnr','0','84'), ('28990','888','86','iso88025Dtr','0','85'), ('28991','888','87','eplrs','0','86'), ('28992','888','88','arap','0','87'), ('28993','888','89','propCnls','0','88'), ('28994','888','90','hostPad','0','89'), ('28995','888','91','termPad','0','90'), ('28996','888','92','frameRelayMPI','0','91'), ('28997','888','93','x213','0','92'), ('28998','888','94','adsl','0','93'), ('28999','888','95','radsl','0','94'), ('29000','888','96','sdsl','0','95'), ('29001','888','97','vdsl','0','96'), ('29002','888','98','iso88025CRFPInt','0','97'), ('29003','888','99','myrinet','0','98'), ('29004','888','100','voiceEM','0','99'), ('29005','888','101','voiceFXO','0','100'), ('29006','888','102','voiceFXS','0','101'), ('29007','888','103','voiceEncap','0','102'), ('29008','888','104','voiceOverIp','0','103'), ('29009','888','105','atmDxi','0','104'), ('29010','888','106','atmFuni','0','105'), ('29011','888','107','atmIma','0','106'), ('29012','888','108','pppMultilinkBundle','0','107'), ('29013','888','109','ipOverCdlc','0','108'), ('29014','888','110','ipOverClaw','0','109'), ('29015','888','111','stackToStack','0','110'), ('29016','888','112','virtualIpAddress','0','111'), ('29017','888','113','mpc','0','112'), ('29018','888','114','ipOverAtm','0','113'), ('29019','888','115','iso88025Fiber','0','114'), ('29020','888','116','tdlc','0','115'), ('29021','888','117','gigabitEthernet','0','116'), ('29022','888','118','hdlc','0','117'), ('29023','888','119','lapf','0','118'), ('29024','888','120','v37','0','119'), ('29025','888','121','x25mlp','0','120'), ('29026','888','122','x25huntGroup','0','121'), ('29027','888','123','trasnpHdlc','0','122'), ('29028','888','124','interleave','0','123'), ('29029','888','125','fast','0','124'), ('29030','888','126','ip','0','125'), ('29031','888','127','docsCableMaclayer','0','126'), ('29032','888','128','docsCableDownstream','0','127'), ('29033','888','129','docsCableUpstream','0','128'), ('29034','888','130','a12MppSwitch','0','129'), ('29035','888','131','tunnel','0','130'), ('29036','888','132','coffee','0','131'), ('29037','888','133','ces','0','132'), ('29038','888','134','atmSubInterface','0','133'), ('29039','888','135','l2vlan','0','134'), ('29040','888','136','l3ipvlan','0','135'), ('29041','888','137','l3ipxvlan','0','136'), ('29042','888','138','digitalPowerline','0','137'), ('29043','888','139','mediaMailOverIp','0','138'), ('29044','888','140','dtm','0','139'), ('29045','888','141','dcn','0','140'), ('29046','888','142','ipForward','0','141'), ('29047','888','143','msdsl','0','142'), ('29048','888','144','ieee1394','0','143'), ('29049','888','145','if-gsn','0','144'), ('29050','888','146','dvbRccMacLayer','0','145'), ('29051','888','147','dvbRccDownstream','0','146'), ('29052','888','148','dvbRccUpstream','0','147'), ('29053','888','149','atmVirtual','0','148'), ('29054','888','150','mplsTunnel','0','149'), ('29055','888','151','srp','0','150'), ('29056','888','152','voiceOverAtm','0','151'), ('29057','888','153','voiceOverFrameRelay','0','152'), ('29058','888','154','idsl','0','153'), ('29059','888','155','compositeLink','0','154'), ('29060','888','156','ss7SigLink','0','155'), ('29061','888','157','propWirelessP2P','0','156'), ('29062','888','158','frForward','0','157'), ('29063','888','159','rfc1483','0','158'), ('29064','888','160','usb','0','159'), ('29065','888','161','ieee8023adLag','0','160'), ('29066','888','162','bgppolicyaccounting','0','161'), ('29067','888','163','frf16MfrBundle','0','162'), ('29068','888','164','h323Gatekeeper','0','163'), ('29069','888','165','h323Proxy','0','164'), ('29070','888','166','mpls','0','165'), ('29071','888','167','mfSigLink','0','166'), ('29072','888','168','hdsl2','0','167'), ('29073','888','169','shdsl','0','168'), ('29074','888','170','ds1FDL','0','169'), ('29075','888','171','pos','0','170'), ('29076','888','172','dvbAsiIn','0','171'), ('29077','888','173','dvbAsiOut','0','172'), ('29078','888','174','plc','0','173'), ('29079','888','175','nfas','0','174'), ('29080','888','176','tr008','0','175'), ('29081','888','177','gr303RDT','0','176'), ('29082','888','178','gr303IDT','0','177'), ('29083','888','179','isup','0','178'), ('29084','888','180','propDocsWirelessMaclayer','0','179'), ('29085','888','181','propDocsWirelessDownstream','0','180'), ('29086','888','182','propDocsWirelessUpstream','0','181'), ('29087','888','183','hiperlan2','0','182'), ('29088','888','184','propBWAp2Mp','0','183'), ('29089','888','185','sonetOverheadChannel','0','184'), ('29090','888','186','digitalWrapperOverheadChannel','0','185'), ('29091','888','187','aal2','0','186'), ('29092','888','188','radioMAC','0','187'), ('29093','888','189','atmRadio','0','188'), ('29094','888','190','imt','0','189'), ('29095','888','191','mvl','0','190'), ('29096','888','192','reachDSL','0','191'), ('29097','888','193','frDlciEndPt','0','192'), ('29098','888','194','atmVciEndPt','0','193'), ('29099','888','195','opticalChannel','0','194'), ('29100','888','196','opticalTransport','0','195'), ('29101','888','197','propAtm','0','196'), ('29102','888','198','voiceOverCable','0','197'), ('29103','888','199','infiniband','0','198'), ('29104','888','200','teLink','0','199'), ('29105','888','201','q2931','0','200'), ('29106','888','202','virtualTg','0','201'), ('29107','888','203','sipTg','0','202'), ('29108','888','204','sipSig','0','203'), ('29109','888','205','docsCableUpstreamChannel','0','204'), ('29110','888','206','econet','0','205'), ('29111','888','207','pon155','0','206'), ('29112','888','208','pon622','0','207'), ('29113','888','209','bridge','0','208'), ('29114','888','210','linegroup','0','209'), ('29115','888','211','voiceEMFGD','0','210'), ('29116','888','212','voiceFGDEANA','0','211'), ('29117','888','213','voiceDID','0','212'), ('29118','888','214','mpegTransport','0','213'), ('29119','888','215','sixToFour','0','214'), ('29120','888','216','gtp','0','215'), ('29121','888','217','pdnEtherLoop1','0','216'), ('29122','888','218','pdnEtherLoop2','0','217'), ('29123','888','219','opticalChannelGroup','0','218'), ('29124','888','220','homepna','0','219'), ('29125','888','221','gfp','0','220'), ('29126','888','222','ciscoISLvlan','0','221'), ('29127','888','223','actelisMetaLOOP','0','222'), ('29128','888','224','fcipLink','0','223'), ('29129','888','225','rpr','0','224'), ('29130','888','226','qam','0','225'), ('29131','888','227','lmp','0','226'), ('29132','888','228','cblVectaStar','0','227'), ('29133','888','229','docsCableMCmtsDownstream','0','228'), ('29134','888','230','adsl2','0','229'), ('29135','888','231','macSecControlledIF','0','230'), ('29136','888','232','macSecUncontrolledIF','0','231'), ('29137','888','233','aviciOpticalEther','0','232'), ('29138','888','234','atmbond','0','233'), ('29139','888','235','voiceFGDOS','0','234'), ('29140','888','236','mocaVersion1','0','235'), ('29141','888','237','ieee80216WMAN','0','236'), ('29142','888','238','adsl2plus','0','237'), ('29143','888','239','dvbRcsMacLayer','0','238'), ('29144','888','240','dvbTdm','0','239'), ('29145','888','241','dvbRcsTdma','0','240'), ('29146','888','242','x86Laps','0','241'), ('29147','888','243','wwanPP','0','242'), ('29148','888','244','wwanPP2','0','243'), ('29149','888','245','voiceEBS','0','244'), ('29150','888','246','ifPwType','0','245'), ('29151','888','247','ilan','0','246'), ('29152','888','248','pip','0','247'), ('29153','888','249','aluELP','0','248'), ('29154','888','250','gpon','0','249'), ('29155','888','251','vdsl2','0','250'), ('29156','888','252','capwapDot11Profile','0','251'), ('29157','888','253','capwapDot11Bss','0','252'), ('29158','888','254','capwapWtpVirtualRadio','0','253'), ('29159','888','255','bits','0','254'), ('29160','888','256','docsCableUpstreamRfPort','0','255'), ('29161','888','257','cableDownstreamRfPort','0','256'), ('29162','888','258','vmwareVirtualNic','0','257'), ('29163','888','259','ieee802154','0','258'), ('29164','888','260','otnOdu','0','259'), ('29165','888','261','otnOtu','0','260'), ('29166','888','262','ifVfiType','0','261'), ('29167','888','263','g9981','0','262'), ('29168','888','264','g9982','0','263'), ('29169','888','265','g9983','0','264'), ('29170','888','266','aluEpon','0','265'), ('29171','888','267','aluEponOnu','0','266'), ('29172','888','268','aluEponPhysicalUni','0','267'), ('29173','888','269','aluEponLogicalLink','0','268'), ('29174','888','270','aluGponOnu','0','269'), ('29175','888','271','aluGponPhysicalUni','0','270'), ('29176','888','272','vmwareNicTeam','0','271'), ('29177','888','277','docsOfdmDownstream','0','272'), ('29178','888','278','docsOfdmaUpstream','0','273'), ('29179','888','279','gfast','0','274'), ('29180','888','280','sdci','0','275'), ('29181','888','281','xboxWireless','0','276'), ('29182','888','282','fastdsl','0','277'), ('29183','888','283','docsCableScte55d1FwdOob','0','278'), ('29184','888','284','docsCableScte55d1RetOob','0','279'), ('29185','888','285','docsCableScte55d2DsOob','0','280'), ('29186','888','286','docsCableScte55d2UsOob','0','281'), ('29187','888','287','docsCableNdf','0','282'), ('29188','888','288','docsCableNdr','0','283'), ('29189','888','289','ptm','0','284'), ('29190','888','290','ghn','0','285'), ('29191','889','0','Down','0','0'), ('29192','889','1','Up','0','1'), ('29193','890','0','not available','0','0'), ('29194','890','1','available','0','1'), ('29195','890','2','unknown','0','2'), ('29196','891','1','up','0','0'), ('29197','891','2','down','0','1'), ('29198','891','4','unknown','0','2'), ('29199','891','5','dormant','0','3'), ('29200','891','6','notPresent','0','4'), ('29201','891','7','lowerLayerDown','0','5'), ('29202','892','1','other','0','0'), ('29203','892','2','regular1822','0','1'), ('29204','892','3','hdh1822','0','2'), ('29205','892','4','ddnX25','0','3'), ('29206','892','5','rfc877x25','0','4'), ('29207','892','6','ethernetCsmacd','0','5'), ('29208','892','7','iso88023Csmacd','0','6'), ('29209','892','8','iso88024TokenBus','0','7'), ('29210','892','9','iso88025TokenRing','0','8'), ('29211','892','10','iso88026Man','0','9'), ('29212','892','11','starLan','0','10'), ('29213','892','12','proteon10Mbit','0','11'), ('29214','892','13','proteon80Mbit','0','12'), ('29215','892','14','hyperchannel','0','13'), ('29216','892','15','fddi','0','14'), ('29217','892','16','lapb','0','15'), ('29218','892','17','sdlc','0','16'), ('29219','892','18','ds1','0','17'), ('29220','892','19','e1','0','18'), ('29221','892','20','basicISDN','0','19'), ('29222','892','21','primaryISDN','0','20'), ('29223','892','22','propPointToPointSerial','0','21'), ('29224','892','23','ppp','0','22'), ('29225','892','24','softwareLoopback','0','23'), ('29226','892','25','eon','0','24'), ('29227','892','26','ethernet3Mbit','0','25'), ('29228','892','27','nsip','0','26'), ('29229','892','28','slip','0','27'), ('29230','892','29','ultra','0','28'), ('29231','892','30','ds3','0','29'), ('29232','892','31','sip','0','30'), ('29233','892','32','frameRelay','0','31'), ('29234','892','33','rs232','0','32'), ('29235','892','34','para','0','33'), ('29236','892','35','arcnet','0','34'), ('29237','892','36','arcnetPlus','0','35'), ('29238','892','37','atm','0','36'), ('29239','892','38','miox25','0','37'), ('29240','892','39','sonet','0','38'), ('29241','892','40','x25ple','0','39'), ('29242','892','41','iso88022llc','0','40'), ('29243','892','42','localTalk','0','41'), ('29244','892','43','smdsDxi','0','42'), ('29245','892','44','frameRelayService','0','43'), ('29246','892','45','v35','0','44'), ('29247','892','46','hssi','0','45'), ('29248','892','47','hippi','0','46'), ('29249','892','48','modem','0','47'), ('29250','892','49','aal5','0','48'), ('29251','892','50','sonetPath','0','49'), ('29252','892','51','sonetVT','0','50'), ('29253','892','52','smdsIcip','0','51'), ('29254','892','53','propVirtual','0','52'), ('29255','892','54','propMultiplexor','0','53'), ('29256','892','55','ieee80212','0','54'), ('29257','892','56','fibreChannel','0','55'), ('29258','892','57','hippiInterface','0','56'), ('29259','892','58','frameRelayInterconnect','0','57'), ('29260','892','59','aflane8023','0','58'), ('29261','892','60','aflane8025','0','59'), ('29262','892','61','cctEmul','0','60'), ('29263','892','62','fastEther','0','61'), ('29264','892','63','isdn','0','62'), ('29265','892','64','v11','0','63'), ('29266','892','65','v36','0','64'), ('29267','892','66','g703at64k','0','65'), ('29268','892','67','g703at2mb','0','66'), ('29269','892','68','qllc','0','67'), ('29270','892','69','fastEtherFX','0','68'), ('29271','892','70','channel','0','69'), ('29272','892','71','ieee80211','0','70'), ('29273','892','72','ibm370parChan','0','71'), ('29274','892','73','escon','0','72'), ('29275','892','74','dlsw','0','73'), ('29276','892','75','isdns','0','74'), ('29277','892','76','isdnu','0','75'), ('29278','892','77','lapd','0','76'), ('29279','892','78','ipSwitch','0','77'), ('29280','892','79','rsrb','0','78'), ('29281','892','80','atmLogical','0','79'), ('29282','892','81','ds0','0','80'), ('29283','892','82','ds0Bundle','0','81'), ('29284','892','83','bsc','0','82'), ('29285','892','84','async','0','83'), ('29286','892','85','cnr','0','84'), ('29287','892','86','iso88025Dtr','0','85'), ('29288','892','87','eplrs','0','86'), ('29289','892','88','arap','0','87'), ('29290','892','89','propCnls','0','88'), ('29291','892','90','hostPad','0','89'), ('29292','892','91','termPad','0','90'), ('29293','892','92','frameRelayMPI','0','91'), ('29294','892','93','x213','0','92'), ('29295','892','94','adsl','0','93'), ('29296','892','95','radsl','0','94'), ('29297','892','96','sdsl','0','95'), ('29298','892','97','vdsl','0','96'), ('29299','892','98','iso88025CRFPInt','0','97'), ('29300','892','99','myrinet','0','98'), ('29301','892','100','voiceEM','0','99'), ('29302','892','101','voiceFXO','0','100'), ('29303','892','102','voiceFXS','0','101'), ('29304','892','103','voiceEncap','0','102'), ('29305','892','104','voiceOverIp','0','103'), ('29306','892','105','atmDxi','0','104'), ('29307','892','106','atmFuni','0','105'), ('29308','892','107','atmIma','0','106'), ('29309','892','108','pppMultilinkBundle','0','107'), ('29310','892','109','ipOverCdlc','0','108'), ('29311','892','110','ipOverClaw','0','109'), ('29312','892','111','stackToStack','0','110'), ('29313','892','112','virtualIpAddress','0','111'), ('29314','892','113','mpc','0','112'), ('29315','892','114','ipOverAtm','0','113'), ('29316','892','115','iso88025Fiber','0','114'), ('29317','892','116','tdlc','0','115'), ('29318','892','117','gigabitEthernet','0','116'), ('29319','892','118','hdlc','0','117'), ('29320','892','119','lapf','0','118'), ('29321','892','120','v37','0','119'), ('29322','892','121','x25mlp','0','120'), ('29323','892','122','x25huntGroup','0','121'), ('29324','892','123','trasnpHdlc','0','122'), ('29325','892','124','interleave','0','123'), ('29326','892','125','fast','0','124'), ('29327','892','126','ip','0','125'), ('29328','892','127','docsCableMaclayer','0','126'), ('29329','892','128','docsCableDownstream','0','127'), ('29330','892','129','docsCableUpstream','0','128'), ('29331','892','130','a12MppSwitch','0','129'), ('29332','892','131','tunnel','0','130'), ('29333','892','132','coffee','0','131'), ('29334','892','133','ces','0','132'), ('29335','892','134','atmSubInterface','0','133'), ('29336','892','135','l2vlan','0','134'), ('29337','892','136','l3ipvlan','0','135'), ('29338','892','137','l3ipxvlan','0','136'), ('29339','892','138','digitalPowerline','0','137'), ('29340','892','139','mediaMailOverIp','0','138'), ('29341','892','140','dtm','0','139'), ('29342','892','141','dcn','0','140'), ('29343','892','142','ipForward','0','141'), ('29344','892','143','msdsl','0','142'), ('29345','892','144','ieee1394','0','143'), ('29346','892','145','if-gsn','0','144'), ('29347','892','146','dvbRccMacLayer','0','145'), ('29348','892','147','dvbRccDownstream','0','146'), ('29349','892','148','dvbRccUpstream','0','147'), ('29350','892','149','atmVirtual','0','148'), ('29351','892','150','mplsTunnel','0','149'), ('29352','892','151','srp','0','150'), ('29353','892','152','voiceOverAtm','0','151'), ('29354','892','153','voiceOverFrameRelay','0','152'), ('29355','892','154','idsl','0','153'), ('29356','892','155','compositeLink','0','154'), ('29357','892','156','ss7SigLink','0','155'), ('29358','892','157','propWirelessP2P','0','156'), ('29359','892','158','frForward','0','157'), ('29360','892','159','rfc1483','0','158'), ('29361','892','160','usb','0','159'), ('29362','892','161','ieee8023adLag','0','160'), ('29363','892','162','bgppolicyaccounting','0','161'), ('29364','892','163','frf16MfrBundle','0','162'), ('29365','892','164','h323Gatekeeper','0','163'), ('29366','892','165','h323Proxy','0','164'), ('29367','892','166','mpls','0','165'), ('29368','892','167','mfSigLink','0','166'), ('29369','892','168','hdsl2','0','167'), ('29370','892','169','shdsl','0','168'), ('29371','892','170','ds1FDL','0','169'), ('29372','892','171','pos','0','170'), ('29373','892','172','dvbAsiIn','0','171'), ('29374','892','173','dvbAsiOut','0','172'), ('29375','892','174','plc','0','173'), ('29376','892','175','nfas','0','174'), ('29377','892','176','tr008','0','175'), ('29378','892','177','gr303RDT','0','176'), ('29379','892','178','gr303IDT','0','177'), ('29380','892','179','isup','0','178'), ('29381','892','180','propDocsWirelessMaclayer','0','179'), ('29382','892','181','propDocsWirelessDownstream','0','180'), ('29383','892','182','propDocsWirelessUpstream','0','181'), ('29384','892','183','hiperlan2','0','182'), ('29385','892','184','propBWAp2Mp','0','183'), ('29386','892','185','sonetOverheadChannel','0','184'), ('29387','892','186','digitalWrapperOverheadChannel','0','185'), ('29388','892','187','aal2','0','186'), ('29389','892','188','radioMAC','0','187'), ('29390','892','189','atmRadio','0','188'), ('29391','892','190','imt','0','189'), ('29392','892','191','mvl','0','190'), ('29393','892','192','reachDSL','0','191'), ('29394','892','193','frDlciEndPt','0','192'), ('29395','892','194','atmVciEndPt','0','193'), ('29396','892','195','opticalChannel','0','194'), ('29397','892','196','opticalTransport','0','195'), ('29398','892','197','propAtm','0','196'), ('29399','892','198','voiceOverCable','0','197'), ('29400','892','199','infiniband','0','198'), ('29401','892','200','teLink','0','199'), ('29402','892','201','q2931','0','200'), ('29403','892','202','virtualTg','0','201'), ('29404','892','203','sipTg','0','202'), ('29405','892','204','sipSig','0','203'), ('29406','892','205','docsCableUpstreamChannel','0','204'), ('29407','892','206','econet','0','205'), ('29408','892','207','pon155','0','206'), ('29409','892','208','pon622','0','207'), ('29410','892','209','bridge','0','208'), ('29411','892','210','linegroup','0','209'), ('29412','892','211','voiceEMFGD','0','210'), ('29413','892','212','voiceFGDEANA','0','211'), ('29414','892','213','voiceDID','0','212'), ('29415','892','214','mpegTransport','0','213'), ('29416','892','215','sixToFour','0','214'), ('29417','892','216','gtp','0','215'), ('29418','892','217','pdnEtherLoop1','0','216'), ('29419','892','218','pdnEtherLoop2','0','217'), ('29420','892','219','opticalChannelGroup','0','218'), ('29421','892','220','homepna','0','219'), ('29422','892','221','gfp','0','220'), ('29423','892','222','ciscoISLvlan','0','221'), ('29424','892','223','actelisMetaLOOP','0','222'), ('29425','892','224','fcipLink','0','223'), ('29426','892','225','rpr','0','224'), ('29427','892','226','qam','0','225'), ('29428','892','227','lmp','0','226'), ('29429','892','228','cblVectaStar','0','227'), ('29430','892','229','docsCableMCmtsDownstream','0','228'), ('29431','892','230','adsl2','0','229'), ('29432','892','231','macSecControlledIF','0','230'), ('29433','892','232','macSecUncontrolledIF','0','231'), ('29434','892','233','aviciOpticalEther','0','232'), ('29435','892','234','atmbond','0','233'), ('29436','892','235','voiceFGDOS','0','234'), ('29437','892','236','mocaVersion1','0','235'), ('29438','892','237','ieee80216WMAN','0','236'), ('29439','892','238','adsl2plus','0','237'), ('29440','892','239','dvbRcsMacLayer','0','238'), ('29441','892','240','dvbTdm','0','239'), ('29442','892','241','dvbRcsTdma','0','240'), ('29443','892','242','x86Laps','0','241'), ('29444','892','243','wwanPP','0','242'), ('29445','892','244','wwanPP2','0','243'), ('29446','892','245','voiceEBS','0','244'), ('29447','892','246','ifPwType','0','245'), ('29448','892','247','ilan','0','246'), ('29449','892','248','pip','0','247'), ('29450','892','249','aluELP','0','248'), ('29451','892','250','gpon','0','249'), ('29452','892','251','vdsl2','0','250'), ('29453','892','252','capwapDot11Profile','0','251'), ('29454','892','253','capwapDot11Bss','0','252'), ('29455','892','254','capwapWtpVirtualRadio','0','253'), ('29456','892','255','bits','0','254'), ('29457','892','256','docsCableUpstreamRfPort','0','255'), ('29458','892','257','cableDownstreamRfPort','0','256'), ('29459','892','258','vmwareVirtualNic','0','257'), ('29460','892','259','ieee802154','0','258'), ('29461','892','260','otnOdu','0','259'), ('29462','892','261','otnOtu','0','260'), ('29463','892','262','ifVfiType','0','261'), ('29464','892','263','g9981','0','262'), ('29465','892','264','g9982','0','263'), ('29466','892','265','g9983','0','264'), ('29467','892','266','aluEpon','0','265'), ('29468','892','267','aluEponOnu','0','266'), ('29469','892','268','aluEponPhysicalUni','0','267'), ('29470','892','269','aluEponLogicalLink','0','268'), ('29471','892','270','aluGponOnu','0','269'), ('29472','892','271','aluGponPhysicalUni','0','270'), ('29473','892','272','vmwareNicTeam','0','271'), ('29474','892','277','docsOfdmDownstream','0','272'), ('29475','892','278','docsOfdmaUpstream','0','273'), ('29476','892','279','gfast','0','274'), ('29477','892','280','sdci','0','275'), ('29478','892','281','xboxWireless','0','276'), ('29479','892','282','fastdsl','0','277'), ('29480','892','283','docsCableScte55d1FwdOob','0','278'), ('29481','892','284','docsCableScte55d1RetOob','0','279'), ('29482','892','285','docsCableScte55d2DsOob','0','280'), ('29483','892','286','docsCableScte55d2UsOob','0','281'), ('29484','892','287','docsCableNdf','0','282'), ('29485','892','288','docsCableNdr','0','283'), ('29486','892','289','ptm','0','284'), ('29487','892','290','ghn','0','285'), ('29488','893','0','Down','0','0'), ('29489','893','1','Up','0','1'), ('29490','894','0','not available','0','0'), ('29491','894','1','available','0','1'), ('29492','894','2','unknown','0','2'), ('29493','895','1','up','0','0'), ('29494','895','2','down','0','1'), ('29495','895','4','unknown','0','2'), ('29496','895','5','dormant','0','3'), ('29497','895','6','notPresent','0','4'), ('29498','895','7','lowerLayerDown','0','5'), ('29499','896','1','other','0','0'), ('29500','896','2','regular1822','0','1'), ('29501','896','3','hdh1822','0','2'), ('29502','896','4','ddnX25','0','3'), ('29503','896','5','rfc877x25','0','4'), ('29504','896','6','ethernetCsmacd','0','5'), ('29505','896','7','iso88023Csmacd','0','6'), ('29506','896','8','iso88024TokenBus','0','7'), ('29507','896','9','iso88025TokenRing','0','8'), ('29508','896','10','iso88026Man','0','9'), ('29509','896','11','starLan','0','10'), ('29510','896','12','proteon10Mbit','0','11'), ('29511','896','13','proteon80Mbit','0','12'), ('29512','896','14','hyperchannel','0','13'), ('29513','896','15','fddi','0','14'), ('29514','896','16','lapb','0','15'), ('29515','896','17','sdlc','0','16'), ('29516','896','18','ds1','0','17'), ('29517','896','19','e1','0','18'), ('29518','896','20','basicISDN','0','19'), ('29519','896','21','primaryISDN','0','20'), ('29520','896','22','propPointToPointSerial','0','21'), ('29521','896','23','ppp','0','22'), ('29522','896','24','softwareLoopback','0','23'), ('29523','896','25','eon','0','24'), ('29524','896','26','ethernet3Mbit','0','25'), ('29525','896','27','nsip','0','26'), ('29526','896','28','slip','0','27'), ('29527','896','29','ultra','0','28'), ('29528','896','30','ds3','0','29'), ('29529','896','31','sip','0','30'), ('29530','896','32','frameRelay','0','31'), ('29531','896','33','rs232','0','32'), ('29532','896','34','para','0','33'), ('29533','896','35','arcnet','0','34'), ('29534','896','36','arcnetPlus','0','35'), ('29535','896','37','atm','0','36'), ('29536','896','38','miox25','0','37'), ('29537','896','39','sonet','0','38'), ('29538','896','40','x25ple','0','39'), ('29539','896','41','iso88022llc','0','40'), ('29540','896','42','localTalk','0','41'), ('29541','896','43','smdsDxi','0','42'), ('29542','896','44','frameRelayService','0','43'), ('29543','896','45','v35','0','44'), ('29544','896','46','hssi','0','45'), ('29545','896','47','hippi','0','46'), ('29546','896','48','modem','0','47'), ('29547','896','49','aal5','0','48'), ('29548','896','50','sonetPath','0','49'), ('29549','896','51','sonetVT','0','50'), ('29550','896','52','smdsIcip','0','51'), ('29551','896','53','propVirtual','0','52'), ('29552','896','54','propMultiplexor','0','53'), ('29553','896','55','ieee80212','0','54'), ('29554','896','56','fibreChannel','0','55'), ('29555','896','57','hippiInterface','0','56'), ('29556','896','58','frameRelayInterconnect','0','57'), ('29557','896','59','aflane8023','0','58'), ('29558','896','60','aflane8025','0','59'), ('29559','896','61','cctEmul','0','60'), ('29560','896','62','fastEther','0','61'), ('29561','896','63','isdn','0','62'), ('29562','896','64','v11','0','63'), ('29563','896','65','v36','0','64'), ('29564','896','66','g703at64k','0','65'), ('29565','896','67','g703at2mb','0','66'), ('29566','896','68','qllc','0','67'), ('29567','896','69','fastEtherFX','0','68'), ('29568','896','70','channel','0','69'), ('29569','896','71','ieee80211','0','70'), ('29570','896','72','ibm370parChan','0','71'), ('29571','896','73','escon','0','72'), ('29572','896','74','dlsw','0','73'), ('29573','896','75','isdns','0','74'), ('29574','896','76','isdnu','0','75'), ('29575','896','77','lapd','0','76'), ('29576','896','78','ipSwitch','0','77'), ('29577','896','79','rsrb','0','78'), ('29578','896','80','atmLogical','0','79'), ('29579','896','81','ds0','0','80'), ('29580','896','82','ds0Bundle','0','81'), ('29581','896','83','bsc','0','82'), ('29582','896','84','async','0','83'), ('29583','896','85','cnr','0','84'), ('29584','896','86','iso88025Dtr','0','85'), ('29585','896','87','eplrs','0','86'), ('29586','896','88','arap','0','87'), ('29587','896','89','propCnls','0','88'), ('29588','896','90','hostPad','0','89'), ('29589','896','91','termPad','0','90'), ('29590','896','92','frameRelayMPI','0','91'), ('29591','896','93','x213','0','92'), ('29592','896','94','adsl','0','93'), ('29593','896','95','radsl','0','94'), ('29594','896','96','sdsl','0','95'), ('29595','896','97','vdsl','0','96'), ('29596','896','98','iso88025CRFPInt','0','97'), ('29597','896','99','myrinet','0','98'), ('29598','896','100','voiceEM','0','99'), ('29599','896','101','voiceFXO','0','100'), ('29600','896','102','voiceFXS','0','101'), ('29601','896','103','voiceEncap','0','102'), ('29602','896','104','voiceOverIp','0','103'), ('29603','896','105','atmDxi','0','104'), ('29604','896','106','atmFuni','0','105'), ('29605','896','107','atmIma','0','106'), ('29606','896','108','pppMultilinkBundle','0','107'), ('29607','896','109','ipOverCdlc','0','108'), ('29608','896','110','ipOverClaw','0','109'), ('29609','896','111','stackToStack','0','110'), ('29610','896','112','virtualIpAddress','0','111'), ('29611','896','113','mpc','0','112'), ('29612','896','114','ipOverAtm','0','113'), ('29613','896','115','iso88025Fiber','0','114'), ('29614','896','116','tdlc','0','115'), ('29615','896','117','gigabitEthernet','0','116'), ('29616','896','118','hdlc','0','117'), ('29617','896','119','lapf','0','118'), ('29618','896','120','v37','0','119'), ('29619','896','121','x25mlp','0','120'), ('29620','896','122','x25huntGroup','0','121'), ('29621','896','123','trasnpHdlc','0','122'), ('29622','896','124','interleave','0','123'), ('29623','896','125','fast','0','124'), ('29624','896','126','ip','0','125'), ('29625','896','127','docsCableMaclayer','0','126'), ('29626','896','128','docsCableDownstream','0','127'), ('29627','896','129','docsCableUpstream','0','128'), ('29628','896','130','a12MppSwitch','0','129'), ('29629','896','131','tunnel','0','130'), ('29630','896','132','coffee','0','131'), ('29631','896','133','ces','0','132'), ('29632','896','134','atmSubInterface','0','133'), ('29633','896','135','l2vlan','0','134'), ('29634','896','136','l3ipvlan','0','135'), ('29635','896','137','l3ipxvlan','0','136'), ('29636','896','138','digitalPowerline','0','137'), ('29637','896','139','mediaMailOverIp','0','138'), ('29638','896','140','dtm','0','139'), ('29639','896','141','dcn','0','140'), ('29640','896','142','ipForward','0','141'), ('29641','896','143','msdsl','0','142'), ('29642','896','144','ieee1394','0','143'), ('29643','896','145','if-gsn','0','144'), ('29644','896','146','dvbRccMacLayer','0','145'), ('29645','896','147','dvbRccDownstream','0','146'), ('29646','896','148','dvbRccUpstream','0','147'), ('29647','896','149','atmVirtual','0','148'), ('29648','896','150','mplsTunnel','0','149'), ('29649','896','151','srp','0','150'), ('29650','896','152','voiceOverAtm','0','151'), ('29651','896','153','voiceOverFrameRelay','0','152'), ('29652','896','154','idsl','0','153'), ('29653','896','155','compositeLink','0','154'), ('29654','896','156','ss7SigLink','0','155'), ('29655','896','157','propWirelessP2P','0','156'), ('29656','896','158','frForward','0','157'), ('29657','896','159','rfc1483','0','158'), ('29658','896','160','usb','0','159'), ('29659','896','161','ieee8023adLag','0','160'), ('29660','896','162','bgppolicyaccounting','0','161'), ('29661','896','163','frf16MfrBundle','0','162'), ('29662','896','164','h323Gatekeeper','0','163'), ('29663','896','165','h323Proxy','0','164'), ('29664','896','166','mpls','0','165'), ('29665','896','167','mfSigLink','0','166'), ('29666','896','168','hdsl2','0','167'), ('29667','896','169','shdsl','0','168'), ('29668','896','170','ds1FDL','0','169'), ('29669','896','171','pos','0','170'), ('29670','896','172','dvbAsiIn','0','171'), ('29671','896','173','dvbAsiOut','0','172'), ('29672','896','174','plc','0','173'), ('29673','896','175','nfas','0','174'), ('29674','896','176','tr008','0','175'), ('29675','896','177','gr303RDT','0','176'), ('29676','896','178','gr303IDT','0','177'), ('29677','896','179','isup','0','178'), ('29678','896','180','propDocsWirelessMaclayer','0','179'), ('29679','896','181','propDocsWirelessDownstream','0','180'), ('29680','896','182','propDocsWirelessUpstream','0','181'), ('29681','896','183','hiperlan2','0','182'), ('29682','896','184','propBWAp2Mp','0','183'), ('29683','896','185','sonetOverheadChannel','0','184'), ('29684','896','186','digitalWrapperOverheadChannel','0','185'), ('29685','896','187','aal2','0','186'), ('29686','896','188','radioMAC','0','187'), ('29687','896','189','atmRadio','0','188'), ('29688','896','190','imt','0','189'), ('29689','896','191','mvl','0','190'), ('29690','896','192','reachDSL','0','191'), ('29691','896','193','frDlciEndPt','0','192'), ('29692','896','194','atmVciEndPt','0','193'), ('29693','896','195','opticalChannel','0','194'), ('29694','896','196','opticalTransport','0','195'), ('29695','896','197','propAtm','0','196'), ('29696','896','198','voiceOverCable','0','197'), ('29697','896','199','infiniband','0','198'), ('29698','896','200','teLink','0','199'), ('29699','896','201','q2931','0','200'), ('29700','896','202','virtualTg','0','201'), ('29701','896','203','sipTg','0','202'), ('29702','896','204','sipSig','0','203'), ('29703','896','205','docsCableUpstreamChannel','0','204'), ('29704','896','206','econet','0','205'), ('29705','896','207','pon155','0','206'), ('29706','896','208','pon622','0','207'), ('29707','896','209','bridge','0','208'), ('29708','896','210','linegroup','0','209'), ('29709','896','211','voiceEMFGD','0','210'), ('29710','896','212','voiceFGDEANA','0','211'), ('29711','896','213','voiceDID','0','212'), ('29712','896','214','mpegTransport','0','213'), ('29713','896','215','sixToFour','0','214'), ('29714','896','216','gtp','0','215'), ('29715','896','217','pdnEtherLoop1','0','216'), ('29716','896','218','pdnEtherLoop2','0','217'), ('29717','896','219','opticalChannelGroup','0','218'), ('29718','896','220','homepna','0','219'), ('29719','896','221','gfp','0','220'), ('29720','896','222','ciscoISLvlan','0','221'), ('29721','896','223','actelisMetaLOOP','0','222'), ('29722','896','224','fcipLink','0','223'), ('29723','896','225','rpr','0','224'), ('29724','896','226','qam','0','225'), ('29725','896','227','lmp','0','226'), ('29726','896','228','cblVectaStar','0','227'), ('29727','896','229','docsCableMCmtsDownstream','0','228'), ('29728','896','230','adsl2','0','229'), ('29729','896','231','macSecControlledIF','0','230'), ('29730','896','232','macSecUncontrolledIF','0','231'), ('29731','896','233','aviciOpticalEther','0','232'), ('29732','896','234','atmbond','0','233'), ('29733','896','235','voiceFGDOS','0','234'), ('29734','896','236','mocaVersion1','0','235'), ('29735','896','237','ieee80216WMAN','0','236'), ('29736','896','238','adsl2plus','0','237'), ('29737','896','239','dvbRcsMacLayer','0','238'), ('29738','896','240','dvbTdm','0','239'), ('29739','896','241','dvbRcsTdma','0','240'), ('29740','896','242','x86Laps','0','241'), ('29741','896','243','wwanPP','0','242'), ('29742','896','244','wwanPP2','0','243'), ('29743','896','245','voiceEBS','0','244'), ('29744','896','246','ifPwType','0','245'), ('29745','896','247','ilan','0','246'), ('29746','896','248','pip','0','247'), ('29747','896','249','aluELP','0','248'), ('29748','896','250','gpon','0','249'), ('29749','896','251','vdsl2','0','250'), ('29750','896','252','capwapDot11Profile','0','251'), ('29751','896','253','capwapDot11Bss','0','252'), ('29752','896','254','capwapWtpVirtualRadio','0','253'), ('29753','896','255','bits','0','254'), ('29754','896','256','docsCableUpstreamRfPort','0','255'), ('29755','896','257','cableDownstreamRfPort','0','256'), ('29756','896','258','vmwareVirtualNic','0','257'), ('29757','896','259','ieee802154','0','258'), ('29758','896','260','otnOdu','0','259'), ('29759','896','261','otnOtu','0','260'), ('29760','896','262','ifVfiType','0','261'), ('29761','896','263','g9981','0','262'), ('29762','896','264','g9982','0','263'), ('29763','896','265','g9983','0','264'), ('29764','896','266','aluEpon','0','265'), ('29765','896','267','aluEponOnu','0','266'), ('29766','896','268','aluEponPhysicalUni','0','267'), ('29767','896','269','aluEponLogicalLink','0','268'), ('29768','896','270','aluGponOnu','0','269'), ('29769','896','271','aluGponPhysicalUni','0','270'), ('29770','896','272','vmwareNicTeam','0','271'), ('29771','896','277','docsOfdmDownstream','0','272'), ('29772','896','278','docsOfdmaUpstream','0','273'), ('29773','896','279','gfast','0','274'), ('29774','896','280','sdci','0','275'), ('29775','896','281','xboxWireless','0','276'), ('29776','896','282','fastdsl','0','277'), ('29777','896','283','docsCableScte55d1FwdOob','0','278'), ('29778','896','284','docsCableScte55d1RetOob','0','279'), ('29779','896','285','docsCableScte55d2DsOob','0','280'), ('29780','896','286','docsCableScte55d2UsOob','0','281'), ('29781','896','287','docsCableNdf','0','282'), ('29782','896','288','docsCableNdr','0','283'), ('29783','896','289','ptm','0','284'), ('29784','896','290','ghn','0','285'), ('29785','897','0','Down','0','0'), ('29786','897','1','Up','0','1'), ('29787','898','0','not available','0','0'), ('29788','898','1','available','0','1'), ('29789','898','2','unknown','0','2'), ('29790','899','0','not available','0','0'), ('29791','899','1','available','0','1'), ('29792','899','2','unknown','0','2'), ('29793','900','1','Up','0','0'), ('29794','901','0','not available','0','0'), ('29795','901','1','available','0','1'), ('29796','901','2','unknown','0','2'), ('29797','902','1','Up','0','0'), ('29798','903','0','not available','0','0'), ('29799','903','1','available','0','1'), ('29800','903','2','unknown','0','2'), ('29801','904','1','Up','0','0'), ('29802','905','0','unknown','0','0'), ('29803','905','1','notpresent','0','1'), ('29804','905','2','down','0','2'), ('29805','905','3','lowerlayerdown','0','3'), ('29806','905','4','testing','0','4'), ('29807','905','5','dormant','0','5'), ('29808','905','6','up','0','6'), ('29809','906','0','from KA9Q: NET/ROM pseudo','0','0'), ('29810','906','1','Ethernet','0','1'), ('29811','906','2','Experimental Ethernet','0','2'), ('29812','906','3','AX.25 Level 2','0','3'), ('29813','906','4','PROnet token ring','0','4'), ('29814','906','5','Chaosnet','0','5'), ('29815','906','6','IEEE 802.2 Ethernet/TR/TB','0','6'), ('29816','906','7','ARCnet','0','7'), ('29817','906','8','APPLEtalk','0','8'), ('29818','906','15','Frame Relay DLCI','0','9'), ('29819','906','19','ATM','0','10'), ('29820','906','23','Metricom STRIP (new IANA id)','0','11'), ('29821','906','24','IEEE 1394 IPv4 - RFC 2734','0','12'), ('29822','906','27','EUI-64','0','13'), ('29823','906','32','InfiniBand','0','14'), ('29824','906','256','ARPHRD_SLIP','0','15'), ('29825','906','257','ARPHRD_CSLIP','0','16'), ('29826','906','258','ARPHRD_SLIP6','0','17'), ('29827','906','259','ARPHRD_CSLIP6','0','18'), ('29828','906','260','Notional KISS type','0','19'), ('29829','906','264','ARPHRD_ADAPT','0','20'), ('29830','906','270','ARPHRD_ROSE','0','21'), ('29831','906','271','CCITT X.25','0','22'), ('29832','906','272','Boards with X.25 in firmware','0','23'), ('29833','906','280','Controller Area Network','0','24'), ('29834','906','512','ARPHRD_PPP','0','25'), ('29835','906','513','Cisco HDLC','0','26'), ('29836','906','516','LAPB','0','27'), ('29837','906','517','Digital''s DDCMP protocol','0','28'), ('29838','906','518','Raw HDLC','0','29'), ('29839','906','519','Raw IP','0','30'), ('29840','906','768','IPIP tunnel','0','31'), ('29841','906','769','IP6IP6 tunnel','0','32'), ('29842','906','770','Frame Relay Access Device','0','33'), ('29843','906','771','SKIP vif','0','34'), ('29844','906','772','Loopback device','0','35'), ('29845','906','773','Localtalk device','0','36'), ('29846','906','774','Fiber Distributed Data Interface','0','37'), ('29847','906','775','AP1000 BIF','0','38'), ('29848','906','776','sit0 device - IPv6-in-IPv4','0','39'), ('29849','906','777','IP over DDP tunneller','0','40'), ('29850','906','778','GRE over IP','0','41'), ('29851','906','779','PIMSM register interface','0','42'), ('29852','906','780','High Performance Parallel Interface','0','43'), ('29853','906','781','Nexus 64Mbps Ash','0','44'), ('29854','906','782','Acorn Econet','0','45'), ('29855','906','783','Linux-IrDA','0','46'), ('29856','906','784','Point to point fibrechannel','0','47'), ('29857','906','785','Fibrechannel arbitrated loop','0','48'), ('29858','906','786','Fibrechannel public loop','0','49'), ('29859','906','787','Fibrechannel fabric','0','50'), ('29860','906','800','Magic type ident for TR','0','51'), ('29861','906','801','IEEE 802.11','0','52'), ('29862','906','802','IEEE 802.11 + Prism2 header','0','53'), ('29863','906','803','IEEE 802.11 + radiotap header','0','54'), ('29864','906','804','ARPHRD_IEEE802154','0','55'), ('29865','906','805','IEEE 802.15.4 network monitor','0','56'), ('29866','906','820','PhoNet media type','0','57'), ('29867','906','821','PhoNet pipe header','0','58'), ('29868','906','822','CAIF media type','0','59'), ('29869','906','823','GRE over IPv6','0','60'), ('29870','906','824','Netlink header','0','61'), ('29871','906','825','IPv6 over LoWPAN','0','62'), ('29872','906','826','Vsock monitor header','0','63'), ('29873','907','0','not available','0','0'), ('29874','907','1','available','0','1'), ('29875','907','2','unknown','0','2'), ('29876','908','1','Up','0','0'), ('29877','909','0','unknown','0','0'), ('29878','909','1','notpresent','0','1'), ('29879','909','2','down','0','2'), ('29880','909','3','lowerlayerdown','0','3'), ('29881','909','4','testing','0','4'), ('29882','909','5','dormant','0','5'), ('29883','909','6','up','0','6'), ('29884','910','0','from KA9Q: NET/ROM pseudo','0','0'), ('29885','910','1','Ethernet','0','1'), ('29886','910','2','Experimental Ethernet','0','2'), ('29887','910','3','AX.25 Level 2','0','3'), ('29888','910','4','PROnet token ring','0','4'), ('29889','910','5','Chaosnet','0','5'), ('29890','910','6','IEEE 802.2 Ethernet/TR/TB','0','6'), ('29891','910','7','ARCnet','0','7'), ('29892','910','8','APPLEtalk','0','8'), ('29893','910','15','Frame Relay DLCI','0','9'), ('29894','910','19','ATM','0','10'), ('29895','910','23','Metricom STRIP (new IANA id)','0','11'), ('29896','910','24','IEEE 1394 IPv4 - RFC 2734','0','12'), ('29897','910','27','EUI-64','0','13'), ('29898','910','32','InfiniBand','0','14'), ('29899','910','256','ARPHRD_SLIP','0','15'), ('29900','910','257','ARPHRD_CSLIP','0','16'), ('29901','910','258','ARPHRD_SLIP6','0','17'), ('29902','910','259','ARPHRD_CSLIP6','0','18'), ('29903','910','260','Notional KISS type','0','19'), ('29904','910','264','ARPHRD_ADAPT','0','20'), ('29905','910','270','ARPHRD_ROSE','0','21'), ('29906','910','271','CCITT X.25','0','22'), ('29907','910','272','Boards with X.25 in firmware','0','23'), ('29908','910','280','Controller Area Network','0','24'), ('29909','910','512','ARPHRD_PPP','0','25'), ('29910','910','513','Cisco HDLC','0','26'), ('29911','910','516','LAPB','0','27'), ('29912','910','517','Digital''s DDCMP protocol','0','28'), ('29913','910','518','Raw HDLC','0','29'), ('29914','910','519','Raw IP','0','30'), ('29915','910','768','IPIP tunnel','0','31'), ('29916','910','769','IP6IP6 tunnel','0','32'), ('29917','910','770','Frame Relay Access Device','0','33'), ('29918','910','771','SKIP vif','0','34'), ('29919','910','772','Loopback device','0','35'), ('29920','910','773','Localtalk device','0','36'), ('29921','910','774','Fiber Distributed Data Interface','0','37'), ('29922','910','775','AP1000 BIF','0','38'), ('29923','910','776','sit0 device - IPv6-in-IPv4','0','39'), ('29924','910','777','IP over DDP tunneller','0','40'), ('29925','910','778','GRE over IP','0','41'), ('29926','910','779','PIMSM register interface','0','42'), ('29927','910','780','High Performance Parallel Interface','0','43'), ('29928','910','781','Nexus 64Mbps Ash','0','44'), ('29929','910','782','Acorn Econet','0','45'), ('29930','910','783','Linux-IrDA','0','46'), ('29931','910','784','Point to point fibrechannel','0','47'), ('29932','910','785','Fibrechannel arbitrated loop','0','48'), ('29933','910','786','Fibrechannel public loop','0','49'), ('29934','910','787','Fibrechannel fabric','0','50'), ('29935','910','800','Magic type ident for TR','0','51'), ('29936','910','801','IEEE 802.11','0','52'), ('29937','910','802','IEEE 802.11 + Prism2 header','0','53'), ('29938','910','803','IEEE 802.11 + radiotap header','0','54'), ('29939','910','804','ARPHRD_IEEE802154','0','55'), ('29940','910','805','IEEE 802.15.4 network monitor','0','56'), ('29941','910','820','PhoNet media type','0','57'), ('29942','910','821','PhoNet pipe header','0','58'), ('29943','910','822','CAIF media type','0','59'), ('29944','910','823','GRE over IPv6','0','60'), ('29945','910','824','Netlink header','0','61'), ('29946','910','825','IPv6 over LoWPAN','0','62'), ('29947','910','826','Vsock monitor header','0','63'), ('29951','912','1','Up','0','0'), ('29952','913','1','unknown','0','0'), ('29953','913','2','halfDuplex','0','1'), ('29954','913','3','fullDuplex','0','2'), ('29955','914','1','up','0','0'), ('29956','914','2','down','0','1'), ('29957','914','4','unknown','0','2'), ('29958','914','5','dormant','0','3'), ('29959','914','6','notPresent','0','4'), ('29960','914','7','lowerLayerDown','0','5'), ('29961','915','1','other','0','0'), ('29962','915','2','regular1822','0','1'), ('29963','915','3','hdh1822','0','2'), ('29964','915','4','ddnX25','0','3'), ('29965','915','5','rfc877x25','0','4'), ('29966','915','6','ethernetCsmacd','0','5'), ('29967','915','7','iso88023Csmacd','0','6'), ('29968','915','8','iso88024TokenBus','0','7'), ('29969','915','9','iso88025TokenRing','0','8'), ('29970','915','10','iso88026Man','0','9'), ('29971','915','11','starLan','0','10'), ('29972','915','12','proteon10Mbit','0','11'), ('29973','915','13','proteon80Mbit','0','12'), ('29974','915','14','hyperchannel','0','13'), ('29975','915','15','fddi','0','14'), ('29976','915','16','lapb','0','15'), ('29977','915','17','sdlc','0','16'), ('29978','915','18','ds1','0','17'), ('29979','915','19','e1','0','18'), ('29980','915','20','basicISDN','0','19'), ('29981','915','21','primaryISDN','0','20'), ('29982','915','22','propPointToPointSerial','0','21'), ('29983','915','23','ppp','0','22'), ('29984','915','24','softwareLoopback','0','23'), ('29985','915','25','eon','0','24'), ('29986','915','26','ethernet3Mbit','0','25'), ('29987','915','27','nsip','0','26'), ('29988','915','28','slip','0','27'), ('29989','915','29','ultra','0','28'), ('29990','915','30','ds3','0','29'), ('29991','915','31','sip','0','30'), ('29992','915','32','frameRelay','0','31'), ('29993','915','33','rs232','0','32'), ('29994','915','34','para','0','33'), ('29995','915','35','arcnet','0','34'), ('29996','915','36','arcnetPlus','0','35'), ('29997','915','37','atm','0','36'), ('29998','915','38','miox25','0','37'), ('29999','915','39','sonet','0','38'), ('30000','915','40','x25ple','0','39'), ('30001','915','41','iso88022llc','0','40'), ('30002','915','42','localTalk','0','41'), ('30003','915','43','smdsDxi','0','42'), ('30004','915','44','frameRelayService','0','43'), ('30005','915','45','v35','0','44'), ('30006','915','46','hssi','0','45'), ('30007','915','47','hippi','0','46'), ('30008','915','48','modem','0','47'), ('30009','915','49','aal5','0','48'), ('30010','915','50','sonetPath','0','49'), ('30011','915','51','sonetVT','0','50'), ('30012','915','52','smdsIcip','0','51'), ('30013','915','53','propVirtual','0','52'), ('30014','915','54','propMultiplexor','0','53'), ('30015','915','55','ieee80212','0','54'), ('30016','915','56','fibreChannel','0','55'), ('30017','915','57','hippiInterface','0','56'), ('30018','915','58','frameRelayInterconnect','0','57'), ('30019','915','59','aflane8023','0','58'), ('30020','915','60','aflane8025','0','59'), ('30021','915','61','cctEmul','0','60'), ('30022','915','62','fastEther','0','61'), ('30023','915','63','isdn','0','62'), ('30024','915','64','v11','0','63'), ('30025','915','65','v36','0','64'), ('30026','915','66','g703at64k','0','65'), ('30027','915','67','g703at2mb','0','66'), ('30028','915','68','qllc','0','67'), ('30029','915','69','fastEtherFX','0','68'), ('30030','915','70','channel','0','69'), ('30031','915','71','ieee80211','0','70'), ('30032','915','72','ibm370parChan','0','71'), ('30033','915','73','escon','0','72'), ('30034','915','74','dlsw','0','73'), ('30035','915','75','isdns','0','74'), ('30036','915','76','isdnu','0','75'), ('30037','915','77','lapd','0','76'), ('30038','915','78','ipSwitch','0','77'), ('30039','915','79','rsrb','0','78'), ('30040','915','80','atmLogical','0','79'), ('30041','915','81','ds0','0','80'), ('30042','915','82','ds0Bundle','0','81'), ('30043','915','83','bsc','0','82'), ('30044','915','84','async','0','83'), ('30045','915','85','cnr','0','84'), ('30046','915','86','iso88025Dtr','0','85'), ('30047','915','87','eplrs','0','86'), ('30048','915','88','arap','0','87'), ('30049','915','89','propCnls','0','88'), ('30050','915','90','hostPad','0','89'), ('30051','915','91','termPad','0','90'), ('30052','915','92','frameRelayMPI','0','91'), ('30053','915','93','x213','0','92'), ('30054','915','94','adsl','0','93'), ('30055','915','95','radsl','0','94'), ('30056','915','96','sdsl','0','95'), ('30057','915','97','vdsl','0','96'), ('30058','915','98','iso88025CRFPInt','0','97'), ('30059','915','99','myrinet','0','98'), ('30060','915','100','voiceEM','0','99'), ('30061','915','101','voiceFXO','0','100'), ('30062','915','102','voiceFXS','0','101'), ('30063','915','103','voiceEncap','0','102'), ('30064','915','104','voiceOverIp','0','103'), ('30065','915','105','atmDxi','0','104'), ('30066','915','106','atmFuni','0','105'), ('30067','915','107','atmIma','0','106'), ('30068','915','108','pppMultilinkBundle','0','107'), ('30069','915','109','ipOverCdlc','0','108'), ('30070','915','110','ipOverClaw','0','109'), ('30071','915','111','stackToStack','0','110'), ('30072','915','112','virtualIpAddress','0','111'), ('30073','915','113','mpc','0','112'), ('30074','915','114','ipOverAtm','0','113'), ('30075','915','115','iso88025Fiber','0','114'), ('30076','915','116','tdlc','0','115'), ('30077','915','117','gigabitEthernet','0','116'), ('30078','915','118','hdlc','0','117'), ('30079','915','119','lapf','0','118'), ('30080','915','120','v37','0','119'), ('30081','915','121','x25mlp','0','120'), ('30082','915','122','x25huntGroup','0','121'), ('30083','915','123','trasnpHdlc','0','122'), ('30084','915','124','interleave','0','123'), ('30085','915','125','fast','0','124'), ('30086','915','126','ip','0','125'), ('30087','915','127','docsCableMaclayer','0','126'), ('30088','915','128','docsCableDownstream','0','127'), ('30089','915','129','docsCableUpstream','0','128'), ('30090','915','130','a12MppSwitch','0','129'), ('30091','915','131','tunnel','0','130'), ('30092','915','132','coffee','0','131'), ('30093','915','133','ces','0','132'), ('30094','915','134','atmSubInterface','0','133'), ('30095','915','135','l2vlan','0','134'), ('30096','915','136','l3ipvlan','0','135'), ('30097','915','137','l3ipxvlan','0','136'), ('30098','915','138','digitalPowerline','0','137'), ('30099','915','139','mediaMailOverIp','0','138'), ('30100','915','140','dtm','0','139'), ('30101','915','141','dcn','0','140'), ('30102','915','142','ipForward','0','141'), ('30103','915','143','msdsl','0','142'), ('30104','915','144','ieee1394','0','143'), ('30105','915','145','if-gsn','0','144'), ('30106','915','146','dvbRccMacLayer','0','145'), ('30107','915','147','dvbRccDownstream','0','146'), ('30108','915','148','dvbRccUpstream','0','147'), ('30109','915','149','atmVirtual','0','148'), ('30110','915','150','mplsTunnel','0','149'), ('30111','915','151','srp','0','150'), ('30112','915','152','voiceOverAtm','0','151'), ('30113','915','153','voiceOverFrameRelay','0','152'), ('30114','915','154','idsl','0','153'), ('30115','915','155','compositeLink','0','154'), ('30116','915','156','ss7SigLink','0','155'), ('30117','915','157','propWirelessP2P','0','156'), ('30118','915','158','frForward','0','157'), ('30119','915','159','rfc1483','0','158'), ('30120','915','160','usb','0','159'), ('30121','915','161','ieee8023adLag','0','160'), ('30122','915','162','bgppolicyaccounting','0','161'), ('30123','915','163','frf16MfrBundle','0','162'), ('30124','915','164','h323Gatekeeper','0','163'), ('30125','915','165','h323Proxy','0','164'), ('30126','915','166','mpls','0','165'), ('30127','915','167','mfSigLink','0','166'), ('30128','915','168','hdsl2','0','167'), ('30129','915','169','shdsl','0','168'), ('30130','915','170','ds1FDL','0','169'), ('30131','915','171','pos','0','170'), ('30132','915','172','dvbAsiIn','0','171'), ('30133','915','173','dvbAsiOut','0','172'), ('30134','915','174','plc','0','173'), ('30135','915','175','nfas','0','174'), ('30136','915','176','tr008','0','175'), ('30137','915','177','gr303RDT','0','176'), ('30138','915','178','gr303IDT','0','177'), ('30139','915','179','isup','0','178'), ('30140','915','180','propDocsWirelessMaclayer','0','179'), ('30141','915','181','propDocsWirelessDownstream','0','180'), ('30142','915','182','propDocsWirelessUpstream','0','181'), ('30143','915','183','hiperlan2','0','182'), ('30144','915','184','propBWAp2Mp','0','183'), ('30145','915','185','sonetOverheadChannel','0','184'), ('30146','915','186','digitalWrapperOverheadChannel','0','185'), ('30147','915','187','aal2','0','186'), ('30148','915','188','radioMAC','0','187'), ('30149','915','189','atmRadio','0','188'), ('30150','915','190','imt','0','189'), ('30151','915','191','mvl','0','190'), ('30152','915','192','reachDSL','0','191'), ('30153','915','193','frDlciEndPt','0','192'), ('30154','915','194','atmVciEndPt','0','193'), ('30155','915','195','opticalChannel','0','194'), ('30156','915','196','opticalTransport','0','195'), ('30157','915','197','propAtm','0','196'), ('30158','915','198','voiceOverCable','0','197'), ('30159','915','199','infiniband','0','198'), ('30160','915','200','teLink','0','199'), ('30161','915','201','q2931','0','200'), ('30162','915','202','virtualTg','0','201'), ('30163','915','203','sipTg','0','202'), ('30164','915','204','sipSig','0','203'), ('30165','915','205','docsCableUpstreamChannel','0','204'), ('30166','915','206','econet','0','205'), ('30167','915','207','pon155','0','206'), ('30168','915','208','pon622','0','207'), ('30169','915','209','bridge','0','208'), ('30170','915','210','linegroup','0','209'), ('30171','915','211','voiceEMFGD','0','210'), ('30172','915','212','voiceFGDEANA','0','211'), ('30173','915','213','voiceDID','0','212'), ('30174','915','214','mpegTransport','0','213'), ('30175','915','215','sixToFour','0','214'), ('30176','915','216','gtp','0','215'), ('30177','915','217','pdnEtherLoop1','0','216'), ('30178','915','218','pdnEtherLoop2','0','217'), ('30179','915','219','opticalChannelGroup','0','218'), ('30180','915','220','homepna','0','219'), ('30181','915','221','gfp','0','220'), ('30182','915','222','ciscoISLvlan','0','221'), ('30183','915','223','actelisMetaLOOP','0','222'), ('30184','915','224','fcipLink','0','223'), ('30185','915','225','rpr','0','224'), ('30186','915','226','qam','0','225'), ('30187','915','227','lmp','0','226'), ('30188','915','228','cblVectaStar','0','227'), ('30189','915','229','docsCableMCmtsDownstream','0','228'), ('30190','915','230','adsl2','0','229'), ('30191','915','231','macSecControlledIF','0','230'), ('30192','915','232','macSecUncontrolledIF','0','231'), ('30193','915','233','aviciOpticalEther','0','232'), ('30194','915','234','atmbond','0','233'), ('30195','915','235','voiceFGDOS','0','234'), ('30196','915','236','mocaVersion1','0','235'), ('30197','915','237','ieee80216WMAN','0','236'), ('30198','915','238','adsl2plus','0','237'), ('30199','915','239','dvbRcsMacLayer','0','238'), ('30200','915','240','dvbTdm','0','239'), ('30201','915','241','dvbRcsTdma','0','240'), ('30202','915','242','x86Laps','0','241'), ('30203','915','243','wwanPP','0','242'), ('30204','915','244','wwanPP2','0','243'), ('30205','915','245','voiceEBS','0','244'), ('30206','915','246','ifPwType','0','245'), ('30207','915','247','ilan','0','246'), ('30208','915','248','pip','0','247'), ('30209','915','249','aluELP','0','248'), ('30210','915','250','gpon','0','249'), ('30211','915','251','vdsl2','0','250'), ('30212','915','252','capwapDot11Profile','0','251'), ('30213','915','253','capwapDot11Bss','0','252'), ('30214','915','254','capwapWtpVirtualRadio','0','253'), ('30215','915','255','bits','0','254'), ('30216','915','256','docsCableUpstreamRfPort','0','255'), ('30217','915','257','cableDownstreamRfPort','0','256'), ('30218','915','258','vmwareVirtualNic','0','257'), ('30219','915','259','ieee802154','0','258'), ('30220','915','260','otnOdu','0','259'), ('30221','915','261','otnOtu','0','260'), ('30222','915','262','ifVfiType','0','261'), ('30223','915','263','g9981','0','262'), ('30224','915','264','g9982','0','263'), ('30225','915','265','g9983','0','264'), ('30226','915','266','aluEpon','0','265'), ('30227','915','267','aluEponOnu','0','266'), ('30228','915','268','aluEponPhysicalUni','0','267'), ('30229','915','269','aluEponLogicalLink','0','268'), ('30230','915','270','aluGponOnu','0','269'), ('30231','915','271','aluGponPhysicalUni','0','270'), ('30232','915','272','vmwareNicTeam','0','271'), ('30233','915','277','docsOfdmDownstream','0','272'), ('30234','915','278','docsOfdmaUpstream','0','273'), ('30235','915','279','gfast','0','274'), ('30236','915','280','sdci','0','275'), ('30237','915','281','xboxWireless','0','276'), ('30238','915','282','fastdsl','0','277'), ('30239','915','283','docsCableScte55d1FwdOob','0','278'), ('30240','915','284','docsCableScte55d1RetOob','0','279'), ('30241','915','285','docsCableScte55d2DsOob','0','280'), ('30242','915','286','docsCableScte55d2UsOob','0','281'), ('30243','915','287','docsCableNdf','0','282'), ('30244','915','288','docsCableNdr','0','283'), ('30245','915','289','ptm','0','284'), ('30246','915','290','ghn','0','285'), ('30247','916','0','Down','0','0'), ('30248','916','1','Up','0','1'), ('30249','917','0','not available','0','0'), ('30250','917','1','available','0','1'), ('30251','917','2','unknown','0','2'), ('30252','918','0','not available','0','0'), ('30253','918','1','available','0','1'), ('30254','918','2','unknown','0','2'), ('30255','919','1','Up','0','0'), ('30256','920','0','not available','0','0'), ('30257','920','1','available','0','1'), ('30258','920','2','unknown','0','2'), ('30259','921','1','Up','0','0'), ('30260','922','0','not available','0','0'), ('30261','922','1','available','0','1'), ('30262','922','2','unknown','0','2'), ('30263','923','1','Up','0','0'), ('30264','924','0','Ethernet 802.3','0','0'), ('30265','924','1','Token Ring 802.5','0','1'), ('30266','924','2','Fiber Distributed Data Interface (FDDI)','0','2'), ('30267','924','3','Wide Area Network (WAN)','0','3'), ('30268','924','4','LocalTalk','0','4'), ('30269','924','5','Ethernet using DIX header format','0','5'), ('30270','924','6','ARCNET','0','6'), ('30271','924','7','ARCNET (878.2)','0','7'), ('30272','924','8','ATM','0','8'), ('30273','924','9','Wireless','0','9'), ('30274','924','10','Infrared Wireless','0','10'), ('30275','924','11','Bpc','0','11'), ('30276','924','12','CoWan','0','12'), ('30277','924','13','1394','0','13'), ('30278','925','0','Disconnected','0','0'), ('30279','925','1','Connecting','0','1'), ('30280','925','2','Connected','0','2'), ('30281','925','3','Disconnecting','0','3'), ('30282','925','4','Hardware Not Present','0','4'), ('30283','925','5','Hardware Disabled','0','5'), ('30284','925','6','Hardware Malfunction','0','6'), ('30285','925','7','Media Disconnected','0','7'), ('30286','925','8','Authenticating','0','8'), ('30287','925','9','Authentication Succeeded','0','9'), ('30288','925','10','Authentication Failed','0','10'), ('30289','925','11','Invalid Address','0','11'), ('30290','925','12','Credentials Required','0','12'), ('30291','926','0','Running','0','0'), ('30292','926','1','Paused','0','1'), ('30293','926','2','Start pending','0','2'), ('30294','926','3','Pause pending','0','3'), ('30295','926','4','Continue pending','0','4'), ('30296','926','5','Stop pending','0','5'), ('30297','926','6','Stopped','0','6'), ('30298','926','7','Unknown','0','7'), ('30299','926','255','No such service','0','8'), ('30300','927','0','not available','0','0'), ('30301','927','1','available','0','1'), ('30302','927','2','unknown','0','2'), ('30303','928','1','Up','0','0'), ('30304','929','0','Ethernet 802.3','0','0'), ('30305','929','1','Token Ring 802.5','0','1'), ('30306','929','2','Fiber Distributed Data Interface (FDDI)','0','2'), ('30307','929','3','Wide Area Network (WAN)','0','3'), ('30308','929','4','LocalTalk','0','4'), ('30309','929','5','Ethernet using DIX header format','0','5'), ('30310','929','6','ARCNET','0','6'), ('30311','929','7','ARCNET (878.2)','0','7'), ('30312','929','8','ATM','0','8'), ('30313','929','9','Wireless','0','9'), ('30314','929','10','Infrared Wireless','0','10'), ('30315','929','11','Bpc','0','11'), ('30316','929','12','CoWan','0','12'), ('30317','929','13','1394','0','13'), ('30318','930','0','Disconnected','0','0'), ('30319','930','1','Connecting','0','1'), ('30320','930','2','Connected','0','2'), ('30321','930','3','Disconnecting','0','3'), ('30322','930','4','Hardware Not Present','0','4'), ('30323','930','5','Hardware Disabled','0','5'), ('30324','930','6','Hardware Malfunction','0','6'), ('30325','930','7','Media Disconnected','0','7'), ('30326','930','8','Authenticating','0','8'), ('30327','930','9','Authentication Succeeded','0','9'), ('30328','930','10','Authentication Failed','0','10'), ('30329','930','11','Invalid Address','0','11'), ('30330','930','12','Credentials Required','0','12'), ('30331','931','0','Running','0','0'), ('30332','931','1','Paused','0','1'), ('30333','931','2','Start pending','0','2'), ('30334','931','3','Pause pending','0','3'), ('30335','931','4','Continue pending','0','4'), ('30336','931','5','Stop pending','0','5'), ('30337','931','6','Stopped','0','6'), ('30338','931','7','Unknown','0','7'), ('30339','931','255','No such service','0','8'), ('30343','933','1','Up','0','0'), ('30344','934','1','up','0','0'), ('30345','934','2','down','0','1'), ('30346','934','4','unknown','0','2'), ('30347','934','5','dormant','0','3'), ('30348','934','6','notPresent','0','4'), ('30349','934','7','lowerLayerDown','0','5'), ('30350','935','1','other','0','0'), ('30351','935','2','regular1822','0','1'), ('30352','935','3','hdh1822','0','2'), ('30353','935','4','ddnX25','0','3'), ('30354','935','5','rfc877x25','0','4'), ('30355','935','6','ethernetCsmacd','0','5'), ('30356','935','7','iso88023Csmacd','0','6'), ('30357','935','8','iso88024TokenBus','0','7'), ('30358','935','9','iso88025TokenRing','0','8'), ('30359','935','10','iso88026Man','0','9'), ('30360','935','11','starLan','0','10'), ('30361','935','12','proteon10Mbit','0','11'), ('30362','935','13','proteon80Mbit','0','12'), ('30363','935','14','hyperchannel','0','13'), ('30364','935','15','fddi','0','14'), ('30365','935','16','lapb','0','15'), ('30366','935','17','sdlc','0','16'), ('30367','935','18','ds1','0','17'), ('30368','935','19','e1','0','18'), ('30369','935','20','basicISDN','0','19'), ('30370','935','21','primaryISDN','0','20'), ('30371','935','22','propPointToPointSerial','0','21'), ('30372','935','23','ppp','0','22'), ('30373','935','24','softwareLoopback','0','23'), ('30374','935','25','eon','0','24'), ('30375','935','26','ethernet3Mbit','0','25'), ('30376','935','27','nsip','0','26'), ('30377','935','28','slip','0','27'), ('30378','935','29','ultra','0','28'), ('30379','935','30','ds3','0','29'), ('30380','935','31','sip','0','30'), ('30381','935','32','frameRelay','0','31'), ('30382','935','33','rs232','0','32'), ('30383','935','34','para','0','33'), ('30384','935','35','arcnet','0','34'), ('30385','935','36','arcnetPlus','0','35'), ('30386','935','37','atm','0','36'), ('30387','935','38','miox25','0','37'), ('30388','935','39','sonet','0','38'), ('30389','935','40','x25ple','0','39'), ('30390','935','41','iso88022llc','0','40'), ('30391','935','42','localTalk','0','41'), ('30392','935','43','smdsDxi','0','42'), ('30393','935','44','frameRelayService','0','43'), ('30394','935','45','v35','0','44'), ('30395','935','46','hssi','0','45'), ('30396','935','47','hippi','0','46'), ('30397','935','48','modem','0','47'), ('30398','935','49','aal5','0','48'), ('30399','935','50','sonetPath','0','49'), ('30400','935','51','sonetVT','0','50'), ('30401','935','52','smdsIcip','0','51'), ('30402','935','53','propVirtual','0','52'), ('30403','935','54','propMultiplexor','0','53'), ('30404','935','55','ieee80212','0','54'), ('30405','935','56','fibreChannel','0','55'), ('30406','935','57','hippiInterface','0','56'), ('30407','935','58','frameRelayInterconnect','0','57'), ('30408','935','59','aflane8023','0','58'), ('30409','935','60','aflane8025','0','59'), ('30410','935','61','cctEmul','0','60'), ('30411','935','62','fastEther','0','61'), ('30412','935','63','isdn','0','62'), ('30413','935','64','v11','0','63'), ('30414','935','65','v36','0','64'), ('30415','935','66','g703at64k','0','65'), ('30416','935','67','g703at2mb','0','66'), ('30417','935','68','qllc','0','67'), ('30418','935','69','fastEtherFX','0','68'), ('30419','935','70','channel','0','69'), ('30420','935','71','ieee80211','0','70'), ('30421','935','72','ibm370parChan','0','71'), ('30422','935','73','escon','0','72'), ('30423','935','74','dlsw','0','73'), ('30424','935','75','isdns','0','74'), ('30425','935','76','isdnu','0','75'), ('30426','935','77','lapd','0','76'), ('30427','935','78','ipSwitch','0','77'), ('30428','935','79','rsrb','0','78'), ('30429','935','80','atmLogical','0','79'), ('30430','935','81','ds0','0','80'), ('30431','935','82','ds0Bundle','0','81'), ('30432','935','83','bsc','0','82'), ('30433','935','84','async','0','83'), ('30434','935','85','cnr','0','84'), ('30435','935','86','iso88025Dtr','0','85'), ('30436','935','87','eplrs','0','86'), ('30437','935','88','arap','0','87'), ('30438','935','89','propCnls','0','88'), ('30439','935','90','hostPad','0','89'), ('30440','935','91','termPad','0','90'), ('30441','935','92','frameRelayMPI','0','91'), ('30442','935','93','x213','0','92'), ('30443','935','94','adsl','0','93'), ('30444','935','95','radsl','0','94'), ('30445','935','96','sdsl','0','95'), ('30446','935','97','vdsl','0','96'), ('30447','935','98','iso88025CRFPInt','0','97'), ('30448','935','99','myrinet','0','98'), ('30449','935','100','voiceEM','0','99'), ('30450','935','101','voiceFXO','0','100'), ('30451','935','102','voiceFXS','0','101'), ('30452','935','103','voiceEncap','0','102'), ('30453','935','104','voiceOverIp','0','103'), ('30454','935','105','atmDxi','0','104'), ('30455','935','106','atmFuni','0','105'), ('30456','935','107','atmIma','0','106'), ('30457','935','108','pppMultilinkBundle','0','107'), ('30458','935','109','ipOverCdlc','0','108'), ('30459','935','110','ipOverClaw','0','109'), ('30460','935','111','stackToStack','0','110'), ('30461','935','112','virtualIpAddress','0','111'), ('30462','935','113','mpc','0','112'), ('30463','935','114','ipOverAtm','0','113'), ('30464','935','115','iso88025Fiber','0','114'), ('30465','935','116','tdlc','0','115'), ('30466','935','117','gigabitEthernet','0','116'), ('30467','935','118','hdlc','0','117'), ('30468','935','119','lapf','0','118'), ('30469','935','120','v37','0','119'), ('30470','935','121','x25mlp','0','120'), ('30471','935','122','x25huntGroup','0','121'), ('30472','935','123','trasnpHdlc','0','122'), ('30473','935','124','interleave','0','123'), ('30474','935','125','fast','0','124'), ('30475','935','126','ip','0','125'), ('30476','935','127','docsCableMaclayer','0','126'), ('30477','935','128','docsCableDownstream','0','127'), ('30478','935','129','docsCableUpstream','0','128'), ('30479','935','130','a12MppSwitch','0','129'), ('30480','935','131','tunnel','0','130'), ('30481','935','132','coffee','0','131'), ('30482','935','133','ces','0','132'), ('30483','935','134','atmSubInterface','0','133'), ('30484','935','135','l2vlan','0','134'), ('30485','935','136','l3ipvlan','0','135'), ('30486','935','137','l3ipxvlan','0','136'), ('30487','935','138','digitalPowerline','0','137'), ('30488','935','139','mediaMailOverIp','0','138'), ('30489','935','140','dtm','0','139'), ('30490','935','141','dcn','0','140'), ('30491','935','142','ipForward','0','141'), ('30492','935','143','msdsl','0','142'), ('30493','935','144','ieee1394','0','143'), ('30494','935','145','if-gsn','0','144'), ('30495','935','146','dvbRccMacLayer','0','145'), ('30496','935','147','dvbRccDownstream','0','146'), ('30497','935','148','dvbRccUpstream','0','147'), ('30498','935','149','atmVirtual','0','148'), ('30499','935','150','mplsTunnel','0','149'), ('30500','935','151','srp','0','150'), ('30501','935','152','voiceOverAtm','0','151'), ('30502','935','153','voiceOverFrameRelay','0','152'), ('30503','935','154','idsl','0','153'), ('30504','935','155','compositeLink','0','154'), ('30505','935','156','ss7SigLink','0','155'), ('30506','935','157','propWirelessP2P','0','156'), ('30507','935','158','frForward','0','157'), ('30508','935','159','rfc1483','0','158'), ('30509','935','160','usb','0','159'), ('30510','935','161','ieee8023adLag','0','160'), ('30511','935','162','bgppolicyaccounting','0','161'), ('30512','935','163','frf16MfrBundle','0','162'), ('30513','935','164','h323Gatekeeper','0','163'), ('30514','935','165','h323Proxy','0','164'), ('30515','935','166','mpls','0','165'), ('30516','935','167','mfSigLink','0','166'), ('30517','935','168','hdsl2','0','167'), ('30518','935','169','shdsl','0','168'), ('30519','935','170','ds1FDL','0','169'), ('30520','935','171','pos','0','170'), ('30521','935','172','dvbAsiIn','0','171'), ('30522','935','173','dvbAsiOut','0','172'), ('30523','935','174','plc','0','173'), ('30524','935','175','nfas','0','174'), ('30525','935','176','tr008','0','175'), ('30526','935','177','gr303RDT','0','176'), ('30527','935','178','gr303IDT','0','177'), ('30528','935','179','isup','0','178'), ('30529','935','180','propDocsWirelessMaclayer','0','179'), ('30530','935','181','propDocsWirelessDownstream','0','180'), ('30531','935','182','propDocsWirelessUpstream','0','181'), ('30532','935','183','hiperlan2','0','182'), ('30533','935','184','propBWAp2Mp','0','183'), ('30534','935','185','sonetOverheadChannel','0','184'), ('30535','935','186','digitalWrapperOverheadChannel','0','185'), ('30536','935','187','aal2','0','186'), ('30537','935','188','radioMAC','0','187'), ('30538','935','189','atmRadio','0','188'), ('30539','935','190','imt','0','189'), ('30540','935','191','mvl','0','190'), ('30541','935','192','reachDSL','0','191'), ('30542','935','193','frDlciEndPt','0','192'), ('30543','935','194','atmVciEndPt','0','193'), ('30544','935','195','opticalChannel','0','194'), ('30545','935','196','opticalTransport','0','195'), ('30546','935','197','propAtm','0','196'), ('30547','935','198','voiceOverCable','0','197'), ('30548','935','199','infiniband','0','198'), ('30549','935','200','teLink','0','199'), ('30550','935','201','q2931','0','200'), ('30551','935','202','virtualTg','0','201'), ('30552','935','203','sipTg','0','202'), ('30553','935','204','sipSig','0','203'), ('30554','935','205','docsCableUpstreamChannel','0','204'), ('30555','935','206','econet','0','205'), ('30556','935','207','pon155','0','206'), ('30557','935','208','pon622','0','207'), ('30558','935','209','bridge','0','208'), ('30559','935','210','linegroup','0','209'), ('30560','935','211','voiceEMFGD','0','210'), ('30561','935','212','voiceFGDEANA','0','211'), ('30562','935','213','voiceDID','0','212'), ('30563','935','214','mpegTransport','0','213'), ('30564','935','215','sixToFour','0','214'), ('30565','935','216','gtp','0','215'), ('30566','935','217','pdnEtherLoop1','0','216'), ('30567','935','218','pdnEtherLoop2','0','217'), ('30568','935','219','opticalChannelGroup','0','218'), ('30569','935','220','homepna','0','219'), ('30570','935','221','gfp','0','220'), ('30571','935','222','ciscoISLvlan','0','221'), ('30572','935','223','actelisMetaLOOP','0','222'), ('30573','935','224','fcipLink','0','223'), ('30574','935','225','rpr','0','224'), ('30575','935','226','qam','0','225'), ('30576','935','227','lmp','0','226'), ('30577','935','228','cblVectaStar','0','227'), ('30578','935','229','docsCableMCmtsDownstream','0','228'), ('30579','935','230','adsl2','0','229'), ('30580','935','231','macSecControlledIF','0','230'), ('30581','935','232','macSecUncontrolledIF','0','231'), ('30582','935','233','aviciOpticalEther','0','232'), ('30583','935','234','atmbond','0','233'), ('30584','935','235','voiceFGDOS','0','234'), ('30585','935','236','mocaVersion1','0','235'), ('30586','935','237','ieee80216WMAN','0','236'), ('30587','935','238','adsl2plus','0','237'), ('30588','935','239','dvbRcsMacLayer','0','238'), ('30589','935','240','dvbTdm','0','239'), ('30590','935','241','dvbRcsTdma','0','240'), ('30591','935','242','x86Laps','0','241'), ('30592','935','243','wwanPP','0','242'), ('30593','935','244','wwanPP2','0','243'), ('30594','935','245','voiceEBS','0','244'), ('30595','935','246','ifPwType','0','245'), ('30596','935','247','ilan','0','246'), ('30597','935','248','pip','0','247'), ('30598','935','249','aluELP','0','248'), ('30599','935','250','gpon','0','249'), ('30600','935','251','vdsl2','0','250'), ('30601','935','252','capwapDot11Profile','0','251'), ('30602','935','253','capwapDot11Bss','0','252'), ('30603','935','254','capwapWtpVirtualRadio','0','253'), ('30604','935','255','bits','0','254'), ('30605','935','256','docsCableUpstreamRfPort','0','255'), ('30606','935','257','cableDownstreamRfPort','0','256'), ('30607','935','258','vmwareVirtualNic','0','257'), ('30608','935','259','ieee802154','0','258'), ('30609','935','260','otnOdu','0','259'), ('30610','935','261','otnOtu','0','260'), ('30611','935','262','ifVfiType','0','261'), ('30612','935','263','g9981','0','262'), ('30613','935','264','g9982','0','263'), ('30614','935','265','g9983','0','264'), ('30615','935','266','aluEpon','0','265'), ('30616','935','267','aluEponOnu','0','266'), ('30617','935','268','aluEponPhysicalUni','0','267'), ('30618','935','269','aluEponLogicalLink','0','268'), ('30619','935','270','aluGponOnu','0','269'), ('30620','935','271','aluGponPhysicalUni','0','270'), ('30621','935','272','vmwareNicTeam','0','271'), ('30622','935','277','docsOfdmDownstream','0','272'), ('30623','935','278','docsOfdmaUpstream','0','273'), ('30624','935','279','gfast','0','274'), ('30625','935','280','sdci','0','275'), ('30626','935','281','xboxWireless','0','276'), ('30627','935','282','fastdsl','0','277'), ('30628','935','283','docsCableScte55d1FwdOob','0','278'), ('30629','935','284','docsCableScte55d1RetOob','0','279'), ('30630','935','285','docsCableScte55d2DsOob','0','280'), ('30631','935','286','docsCableScte55d2UsOob','0','281'), ('30632','935','287','docsCableNdf','0','282'), ('30633','935','288','docsCableNdr','0','283'), ('30634','935','289','ptm','0','284'), ('30635','935','290','ghn','0','285'), ('30636','936','0','Down','0','0'), ('30637','936','1','Up','0','1'), ('30638','937','0','not available','0','0'), ('30639','937','1','available','0','1'), ('30640','937','2','unknown','0','2'), ('30641','938','0','Down','0','0'), ('30642','938','1','Up','0','1'), ('30643','939','0','not available','0','0'), ('30644','939','1','available','0','1'), ('30645','939','2','unknown','0','2'), ('30646','940','0','not available','0','0'), ('30647','940','1','available','0','1'), ('30648','940','2','unknown','0','2'), ('30649','941','0','Down','0','0'), ('30650','941','1','Up','0','1'), ('30651','942','0','not available','0','0'), ('30652','942','1','available','0','1'), ('30653','942','2','unknown','0','2'), ('30656','944','0','not available','0','0'), ('30657','944','1','available','0','1'), ('30658','944','2','unknown','0','2'), ('30659','945','0','Down','0','0'), ('30660','945','1','Up','0','1'), ('30661','946','0','not available','0','0'), ('30662','946','1','available','0','1'), ('30663','946','2','unknown','0','2'), ('30664','947','0','Down','0','0'), ('30665','947','1','Up','0','1'), ('30666','948','0','not available','0','0'), ('30667','948','1','available','0','1'), ('30668','948','2','unknown','0','2'), ('30669','949','0','Down','0','0'), ('30670','949','1','Up','0','1'), ('30671','950','0','not available','0','0'), ('30672','950','1','available','0','1'), ('30673','950','2','unknown','0','2'), ('30674','951','0','False','0','0'), ('30675','951','1','True','0','1'), ('30676','952','0 - 11.24','N','3','0'), ('30677','952','11.25 - 33.74','NNE','3','1'), ('30678','952','33.75 - 56.24','NE','3','2'), ('30679','952','56.25 - 78.74','ENE','3','3'), ('30680','952','78.75 - 101.24','E','3','4'), ('30681','952','101.25 - 123.74','ESE','3','5'), ('30682','952','123.75 - 146.24','SE','3','6'), ('30683','952','146.25 - 168.74','SSE','3','7'), ('30684','952','168.75 - 191.24','S','3','8'), ('30685','952','191.25 - 213.74','SSW','3','9'), ('30686','952','213.75 - 236.24','SW','3','10'), ('30687','952','236.25 - 258.74','WSW','3','11'), ('30688','952','258.75 - 281.24','W','3','12'), ('30689','952','281.25 - 303.74','WNW','3','13'), ('30690','952','303.75 - 326.24','NW','3','14'), ('30691','952','326.25 - 348.74','NNW','3','15'), ('30692','952','348.75 - 379.99','N','3','16'), ('30693','953','1','Yes','0','0'), ('30694','953','0','No','0','1'), ('30695','954','100','Continue','0','0'), ('30696','954','101','Switching Protocols','0','1'), ('30697','954','102','Processing','0','2'), ('30698','954','200','OK','0','3'), ('30699','954','201','Created','0','4'), ('30700','954','202','Accepted','0','5'), ('30701','954','203','Non-Authoritative Information','0','6'), ('30702','954','204','No Content','0','7'), ('30703','954','205','Reset Content','0','8'), ('30704','954','206','Partial Content','0','9'), ('30705','954','207','Multi-Status','0','10'), ('30706','954','208','Already Reported','0','11'), ('30707','954','226','IM Used','0','12'), ('30708','954','300','Multiple Choices','0','13'), ('30709','954','301','Moved Permanently','0','14'), ('30710','954','302','Found','0','15'), ('30711','954','303','See Other','0','16'), ('30712','954','304','Not Modified','0','17'), ('30713','954','305','Use Proxy','0','18'), ('30714','954','306','Switch Proxy','0','19'), ('30715','954','307','Temporary Redirect','0','20'), ('30716','954','308','Permanent Redirect/Resume Incomplete','0','21'), ('30717','954','400','Bad Request','0','22'), ('30718','954','401','Unauthorized','0','23'), ('30719','954','402','Payment Required','0','24'), ('30720','954','403','Forbidden','0','25'), ('30721','954','404','Not Found','0','26'), ('30722','954','405','Method Not Allowed','0','27'), ('30723','954','406','Not Acceptable','0','28'), ('30724','954','407','Proxy Authentication Required','0','29'), ('30725','954','408','Request Timeout','0','30'), ('30726','954','409','Conflict','0','31'), ('30727','954','410','Gone','0','32'), ('30728','954','411','Length Required','0','33'), ('30729','954','412','Precondition Failed','0','34'), ('30730','954','413','Payload Too Large','0','35'), ('30731','954','414','Request-URI Too Long','0','36'), ('30732','954','415','Unsupported Media Type','0','37'), ('30733','954','416','Requested Range Not Satisfiable','0','38'), ('30734','954','417','Expectation Failed','0','39'), ('30735','954','418','I''m a Teapot','0','40'), ('30736','954','419','Authentication Timeout','0','41'), ('30737','954','420','Method Failure/Enhance Your Calm','0','42'), ('30738','954','421','Misdirected Request','0','43'), ('30739','954','422','Unprocessable Entity','0','44'), ('30740','954','423','Locked','0','45'), ('30741','954','424','Failed Dependency','0','46'), ('30742','954','426','Upgrade Required','0','47'), ('30743','954','428','Precondition Required','0','48'), ('30744','954','429','Too Many Requests','0','49'), ('30745','954','431','Request Header Fields Too Large','0','50'), ('30746','954','440','Login Timeout','0','51'), ('30747','954','444','No Response','0','52'), ('30748','954','449','Retry With','0','53'), ('30749','954','450','Blocked by Windows Parental Controls','0','54'), ('30750','954','451','Unavailable for Legal Reasons/Redirect','0','55'), ('30751','954','494','Request Header Too Large','0','56'), ('30752','954','495','Cert Error','0','57'), ('30753','954','496','No Cert','0','58'), ('30754','954','497','HTTP to HTTPS','0','59'), ('30755','954','498','Token Expired/Invalid','0','60'), ('30756','954','499','Client Closed Request/Token Required','0','61'), ('30757','954','500','Internal Server Error','0','62'), ('30758','954','501','Not Implemented','0','63'), ('30759','954','502','Bad Gateway','0','64'), ('30760','954','503','Service Unavailable','0','65'), ('30761','954','504','Gateway Timeout','0','66'), ('30762','954','505','HTTP Version Not Supported','0','67'), ('30763','954','506','Variant Also Negotiates','0','68'), ('30764','954','507','Insufficient Storage','0','69'), ('30765','954','508','Loop Detected','0','70'), ('30766','954','509','Bandwidth Limit Exceeded','0','71'), ('30767','954','510','Not Extended','0','72'), ('30768','954','511','Network Authentication Required','0','73'), ('30769','954','520','Unknown Error','0','74'), ('30770','954','598','Network Read Timeout Error','0','75'), ('30771','954','599','Network Connect Timeout Error','0','76'), ('30772','955','1','Online','0','0'), ('30773','955','0','Offline','0','1'), ('30774','956','0','online','0','0'), ('30775','956','1','degraded','0','1'), ('30776','956','2','faulted','0','2'), ('30777','956','3','offline','0','3'), ('30778','956','4','unavail','0','4'), ('30779','956','5','removed','0','5'), ('30780','957','1','up','0','0'), ('30781','957','2','down','0','1'), ('30783','957','4','unknown','0','2'), ('30784','957','5','dormant','0','3'), ('30785','957','6','notPresent','0','4'), ('30786','957','7','lowerLayerDown','0','5'), ('30787','958','1','other','0','0'), ('30788','958','2','regular1822','0','1'), ('30789','958','3','hdh1822','0','2'), ('30790','958','4','ddnX25','0','3'), ('30791','958','5','rfc877x25','0','4'), ('30792','958','6','ethernetCsmacd','0','5'), ('30793','958','7','iso88023Csmacd','0','6'), ('30794','958','8','iso88024TokenBus','0','7'), ('30795','958','9','iso88025TokenRing','0','8'), ('30796','958','10','iso88026Man','0','9'), ('30797','958','11','starLan','0','10'), ('30798','958','12','proteon10Mbit','0','11'), ('30799','958','13','proteon80Mbit','0','12'), ('30800','958','14','hyperchannel','0','13'), ('30801','958','15','fddi','0','14'), ('30802','958','16','lapb','0','15'), ('30803','958','17','sdlc','0','16'), ('30804','958','18','ds1','0','17'), ('30805','958','19','e1','0','18'), ('30806','958','20','basicISDN','0','19'), ('30807','958','21','primaryISDN','0','20'), ('30808','958','22','propPointToPointSerial','0','21'), ('30809','958','23','ppp','0','22'), ('30810','958','24','softwareLoopback','0','23'), ('30811','958','25','eon','0','24'), ('30812','958','26','ethernet3Mbit','0','25'), ('30813','958','27','nsip','0','26'), ('30814','958','28','slip','0','27'), ('30815','958','29','ultra','0','28'), ('30816','958','30','ds3','0','29'), ('30817','958','31','sip','0','30'), ('30818','958','32','frameRelay','0','31'), ('30819','958','33','rs232','0','32'), ('30820','958','34','para','0','33'), ('30821','958','35','arcnet','0','34'), ('30822','958','36','arcnetPlus','0','35'), ('30823','958','37','atm','0','36'), ('30824','958','38','miox25','0','37'), ('30825','958','39','sonet','0','38'), ('30826','958','40','x25ple','0','39'), ('30827','958','41','iso88022llc','0','40'), ('30828','958','42','localTalk','0','41'), ('30829','958','43','smdsDxi','0','42'), ('30830','958','44','frameRelayService','0','43'), ('30831','958','45','v35','0','44'), ('30832','958','46','hssi','0','45'), ('30833','958','47','hippi','0','46'), ('30834','958','48','modem','0','47'), ('30835','958','49','aal5','0','48'), ('30836','958','50','sonetPath','0','49'), ('30837','958','51','sonetVT','0','50'), ('30838','958','52','smdsIcip','0','51'), ('30839','958','53','propVirtual','0','52'), ('30840','958','54','propMultiplexor','0','53'), ('30841','958','55','ieee80212','0','54'), ('30842','958','56','fibreChannel','0','55'), ('30843','958','57','hippiInterface','0','56'), ('30844','958','58','frameRelayInterconnect','0','57'), ('30845','958','59','aflane8023','0','58'), ('30846','958','60','aflane8025','0','59'), ('30847','958','61','cctEmul','0','60'), ('30848','958','62','fastEther','0','61'), ('30849','958','63','isdn','0','62'), ('30850','958','64','v11','0','63'), ('30851','958','65','v36','0','64'), ('30852','958','66','g703at64k','0','65'), ('30853','958','67','g703at2mb','0','66'), ('30854','958','68','qllc','0','67'), ('30855','958','69','fastEtherFX','0','68'), ('30856','958','70','channel','0','69'), ('30857','958','71','ieee80211','0','70'), ('30858','958','72','ibm370parChan','0','71'), ('30859','958','73','escon','0','72'), ('30860','958','74','dlsw','0','73'), ('30861','958','75','isdns','0','74'), ('30862','958','76','isdnu','0','75'), ('30863','958','77','lapd','0','76'), ('30864','958','78','ipSwitch','0','77'), ('30865','958','79','rsrb','0','78'), ('30866','958','80','atmLogical','0','79'), ('30867','958','81','ds0','0','80'), ('30868','958','82','ds0Bundle','0','81'), ('30869','958','83','bsc','0','82'), ('30870','958','84','async','0','83'), ('30871','958','85','cnr','0','84'), ('30872','958','86','iso88025Dtr','0','85'), ('30873','958','87','eplrs','0','86'), ('30874','958','88','arap','0','87'), ('30875','958','89','propCnls','0','88'), ('30876','958','90','hostPad','0','89'), ('30877','958','91','termPad','0','90'), ('30878','958','92','frameRelayMPI','0','91'), ('30879','958','93','x213','0','92'), ('30880','958','94','adsl','0','93'), ('30881','958','95','radsl','0','94'), ('30882','958','96','sdsl','0','95'), ('30883','958','97','vdsl','0','96'), ('30884','958','98','iso88025CRFPInt','0','97'), ('30885','958','99','myrinet','0','98'), ('30886','958','100','voiceEM','0','99'), ('30887','958','101','voiceFXO','0','100'), ('30888','958','102','voiceFXS','0','101'), ('30889','958','103','voiceEncap','0','102'), ('30890','958','104','voiceOverIp','0','103'), ('30891','958','105','atmDxi','0','104'), ('30892','958','106','atmFuni','0','105'), ('30893','958','107','atmIma','0','106'), ('30894','958','108','pppMultilinkBundle','0','107'), ('30895','958','109','ipOverCdlc','0','108'), ('30896','958','110','ipOverClaw','0','109'), ('30897','958','111','stackToStack','0','110'), ('30898','958','112','virtualIpAddress','0','111'), ('30899','958','113','mpc','0','112'), ('30900','958','114','ipOverAtm','0','113'), ('30901','958','115','iso88025Fiber','0','114'), ('30902','958','116','tdlc','0','115'), ('30903','958','117','gigabitEthernet','0','116'), ('30904','958','118','hdlc','0','117'), ('30905','958','119','lapf','0','118'), ('30906','958','120','v37','0','119'), ('30907','958','121','x25mlp','0','120'), ('30908','958','122','x25huntGroup','0','121'), ('30909','958','123','trasnpHdlc','0','122'), ('30910','958','124','interleave','0','123'), ('30911','958','125','fast','0','124'), ('30912','958','126','ip','0','125'), ('30913','958','127','docsCableMaclayer','0','126'), ('30914','958','128','docsCableDownstream','0','127'), ('30915','958','129','docsCableUpstream','0','128'), ('30916','958','130','a12MppSwitch','0','129'), ('30917','958','131','tunnel','0','130'), ('30918','958','132','coffee','0','131'), ('30919','958','133','ces','0','132'), ('30920','958','134','atmSubInterface','0','133'), ('30921','958','135','l2vlan','0','134'), ('30922','958','136','l3ipvlan','0','135'), ('30923','958','137','l3ipxvlan','0','136'), ('30924','958','138','digitalPowerline','0','137'), ('30925','958','139','mediaMailOverIp','0','138'), ('30926','958','140','dtm','0','139'), ('30927','958','141','dcn','0','140'), ('30928','958','142','ipForward','0','141'), ('30929','958','143','msdsl','0','142'), ('30930','958','144','ieee1394','0','143'), ('30931','958','145','if-gsn','0','144'), ('30932','958','146','dvbRccMacLayer','0','145'), ('30933','958','147','dvbRccDownstream','0','146'), ('30934','958','148','dvbRccUpstream','0','147'), ('30935','958','149','atmVirtual','0','148'), ('30936','958','150','mplsTunnel','0','149'), ('30937','958','151','srp','0','150'), ('30938','958','152','voiceOverAtm','0','151'), ('30939','958','153','voiceOverFrameRelay','0','152'), ('30940','958','154','idsl','0','153'), ('30941','958','155','compositeLink','0','154'), ('30942','958','156','ss7SigLink','0','155'), ('30943','958','157','propWirelessP2P','0','156'), ('30944','958','158','frForward','0','157'), ('30945','958','159','rfc1483','0','158'), ('30946','958','160','usb','0','159'), ('30947','958','161','ieee8023adLag','0','160'), ('30948','958','162','bgppolicyaccounting','0','161'), ('30949','958','163','frf16MfrBundle','0','162'), ('30950','958','164','h323Gatekeeper','0','163'), ('30951','958','165','h323Proxy','0','164'), ('30952','958','166','mpls','0','165'), ('30953','958','167','mfSigLink','0','166'), ('30954','958','168','hdsl2','0','167'), ('30955','958','169','shdsl','0','168'), ('30956','958','170','ds1FDL','0','169'), ('30957','958','171','pos','0','170'), ('30958','958','172','dvbAsiIn','0','171'), ('30959','958','173','dvbAsiOut','0','172'), ('30960','958','174','plc','0','173'), ('30961','958','175','nfas','0','174'), ('30962','958','176','tr008','0','175'), ('30963','958','177','gr303RDT','0','176'), ('30964','958','178','gr303IDT','0','177'), ('30965','958','179','isup','0','178'), ('30966','958','180','propDocsWirelessMaclayer','0','179'), ('30967','958','181','propDocsWirelessDownstream','0','180'), ('30968','958','182','propDocsWirelessUpstream','0','181'), ('30969','958','183','hiperlan2','0','182'), ('30970','958','184','propBWAp2Mp','0','183'), ('30971','958','185','sonetOverheadChannel','0','184'), ('30972','958','186','digitalWrapperOverheadChannel','0','185'), ('30973','958','187','aal2','0','186'), ('30974','958','188','radioMAC','0','187'), ('30975','958','189','atmRadio','0','188'), ('30976','958','190','imt','0','189'), ('30977','958','191','mvl','0','190'), ('30978','958','192','reachDSL','0','191'), ('30979','958','193','frDlciEndPt','0','192'), ('30980','958','194','atmVciEndPt','0','193'), ('30981','958','195','opticalChannel','0','194'), ('30982','958','196','opticalTransport','0','195'), ('30983','958','197','propAtm','0','196'), ('30984','958','198','voiceOverCable','0','197'), ('30985','958','199','infiniband','0','198'), ('30986','958','200','teLink','0','199'), ('30987','958','201','q2931','0','200'), ('30988','958','202','virtualTg','0','201'), ('30989','958','203','sipTg','0','202'), ('30990','958','204','sipSig','0','203'), ('30991','958','205','docsCableUpstreamChannel','0','204'), ('30992','958','206','econet','0','205'), ('30993','958','207','pon155','0','206'), ('30994','958','208','pon622','0','207'), ('30995','958','209','bridge','0','208'), ('30996','958','210','linegroup','0','209'), ('30997','958','211','voiceEMFGD','0','210'), ('30998','958','212','voiceFGDEANA','0','211'), ('30999','958','213','voiceDID','0','212'), ('31000','958','214','mpegTransport','0','213'), ('31001','958','215','sixToFour','0','214'), ('31002','958','216','gtp','0','215'), ('31003','958','217','pdnEtherLoop1','0','216'), ('31004','958','218','pdnEtherLoop2','0','217'), ('31005','958','219','opticalChannelGroup','0','218'), ('31006','958','220','homepna','0','219'), ('31007','958','221','gfp','0','220'), ('31008','958','222','ciscoISLvlan','0','221'), ('31009','958','223','actelisMetaLOOP','0','222'), ('31010','958','224','fcipLink','0','223'), ('31011','958','225','rpr','0','224'), ('31012','958','226','qam','0','225'), ('31013','958','227','lmp','0','226'), ('31014','958','228','cblVectaStar','0','227'), ('31015','958','229','docsCableMCmtsDownstream','0','228'), ('31016','958','230','adsl2','0','229'), ('31017','958','231','macSecControlledIF','0','230'), ('31018','958','232','macSecUncontrolledIF','0','231'), ('31019','958','233','aviciOpticalEther','0','232'), ('31020','958','234','atmbond','0','233'), ('31021','958','235','voiceFGDOS','0','234'), ('31022','958','236','mocaVersion1','0','235'), ('31023','958','237','ieee80216WMAN','0','236'), ('31024','958','238','adsl2plus','0','237'), ('31025','958','239','dvbRcsMacLayer','0','238'), ('31026','958','240','dvbTdm','0','239'), ('31027','958','241','dvbRcsTdma','0','240'), ('31028','958','242','x86Laps','0','241'), ('31029','958','243','wwanPP','0','242'), ('31030','958','244','wwanPP2','0','243'), ('31031','958','245','voiceEBS','0','244'), ('31032','958','246','ifPwType','0','245'), ('31033','958','247','ilan','0','246'), ('31034','958','248','pip','0','247'), ('31035','958','249','aluELP','0','248'), ('31036','958','250','gpon','0','249'), ('31037','958','251','vdsl2','0','250'), ('31038','958','252','capwapDot11Profile','0','251'), ('31039','958','253','capwapDot11Bss','0','252'), ('31040','958','254','capwapWtpVirtualRadio','0','253'), ('31041','958','255','bits','0','254'), ('31042','958','256','docsCableUpstreamRfPort','0','255'), ('31043','958','257','cableDownstreamRfPort','0','256'), ('31044','958','258','vmwareVirtualNic','0','257'), ('31045','958','259','ieee802154','0','258'), ('31046','958','260','otnOdu','0','259'), ('31047','958','261','otnOtu','0','260'), ('31048','958','262','ifVfiType','0','261'), ('31049','958','263','g9981','0','262'), ('31050','958','264','g9982','0','263'), ('31051','958','265','g9983','0','264'), ('31052','958','266','aluEpon','0','265'), ('31053','958','267','aluEponOnu','0','266'), ('31054','958','268','aluEponPhysicalUni','0','267'), ('31055','958','269','aluEponLogicalLink','0','268'), ('31056','958','270','aluGponOnu','0','269'), ('31057','958','271','aluGponPhysicalUni','0','270'), ('31058','958','272','vmwareNicTeam','0','271'), ('31059','958','277','docsOfdmDownstream','0','272'), ('31060','958','278','docsOfdmaUpstream','0','273'), ('31061','958','279','gfast','0','274'), ('31062','958','280','sdci','0','275'), ('31063','958','281','xboxWireless','0','276'), ('31064','958','282','fastdsl','0','277'), ('31065','958','283','docsCableScte55d1FwdOob','0','278'), ('31066','958','284','docsCableScte55d1RetOob','0','279'), ('31067','958','285','docsCableScte55d2DsOob','0','280'), ('31068','958','286','docsCableScte55d2UsOob','0','281'), ('31069','958','287','docsCableNdf','0','282'), ('31070','958','288','docsCableNdr','0','283'), ('31071','958','289','ptm','0','284'), ('31072','958','290','ghn','0','285'), ('31073','959','0','Down','0','0'), ('31074','959','1','Up','0','1'), ('31075','960','0','not available','0','0'), ('31076','960','1','available','0','1'), ('31077','960','2','unknown','0','2'), ('31078','961','200','Healthy','0','0'), ('31079','961','500','Not healthy','0','1'), ('31080','962','200','Ready','0','0'), ('31081','962','503','Not ready','0','1'), ('31082','963','0','Down','0','0'), ('31083','963','1','Up','0','1'), ('31084','964','0','Not started','0','0'), ('31085','964','1','Started','0','1'), ('31086','965','0','Not Live','0','0'), ('31087','965','1','Live','0','1'), ('31088','966','0','Live','0','0'), ('31089','966','1','Draining','0','1'), ('31090','966','2','Pre initializing','0','2'), ('31091','966','3','Initializing','0','3'), ('31092','967','0','unknown','0','0'), ('31093','967','1','available','0','1'), ('31094','967','2','not available','0','2'), ('31095','968','0','unknown','0','0'), ('31096','968','1','available','0','1'), ('31097','968','2','not available','0','2'), ('31098','969','0','unknown','0','0'), ('31099','969','1','available','0','1'), ('31100','969','2','not available','0','2'), ('31101','970','0','unknown','0','0'), ('31102','970','1','available','0','1'), ('31103','970','2','not available','0','2'), ('31104','971','0','Unhealthy','0','0'), ('31105','971','1','Healthy','0','1'), ('31106','972','0','passing','0','0'), ('31107','972','1','warning','0','1'), ('31108','972','2','critical','0','2'), ('31109','972','255','unknown','0','3'), ('31110','973','0','Agent','0','0'), ('31111','973','1','Server','0','1'), ('31112','974','0','passing','0','0'), ('31113','974','1','warning','0','1'), ('31114','974','2','critical','0','2'), ('31115','974','255','unknown','0','3'), ('31119','976','0','Operational','0','0'), ('31120','976','1','Down','0','1'), ('31121','976','2','Not Installed','0','2'), ('31122','977','0','FTOL','0','0'), ('31123','977','1','FTDN','0','1'), ('31124','977','2','CRIT','0','2'), ('31125','977','3','OFFL','0','3'), ('31126','977','4','QTCR','0','4'), ('31127','977','5','QTOF','0','5'), ('31128','977','6','QTDN','0','6'), ('31129','977','7','STOP','0','7'), ('31130','977','8','MSNG','0','8'), ('31131','977','9','DMGD','0','9'), ('31132','977','11','QTDN','0','10'), ('31133','977','250','UP','0','11'), ('31134','978','1','OK','0','0'), ('31135','978','2','Critical','0','1'), ('31136','978','3','Warning','0','2'), ('31137','978','4','Unknown','0','3'), ('31138','979','4','SAS','0','0'), ('31139','979','8','SSD SAS','0','1'), ('31140','979','11','SAS MDL','0','2'), ('31141','980','0','Unsupported','0','0'), ('31142','980','1','Up','0','1'), ('31143','980','2','Error','0','2'), ('31144','980','3','Warning','0','3'), ('31145','980','4','Unrecoverable','0','4'), ('31146','980','5','Not Present','0','5'), ('31147','980','6','Unknown','0','6'), ('31148','980','7','Unavailable','0','7'), ('31149','980','20','Spun Down','0','8'), ('31150','981','0','Up','0','0'), ('31151','981','1','Error','0','1'), ('31152','981','2','Off','0','2'), ('31153','981','3','Missing','0','3'), ('31154','982','0','Invalid data','0','0'), ('31155','982','1','Fault','0','1'), ('31156','982','2','Absent','0','2'), ('31157','982','4','OK','0','3'), ('31158','982','5','Not available','0','4'), ('31159','982','6','Unknown','0','5'), ('31160','983','0','OK','0','0'), ('31161','983','1','Degraded','0','1'), ('31162','983','2','Fault','0','2'), ('31163','983','3','Unknown','0','3'), ('31164','983','4','N/A','0','4'), ('31165','984','0','Unknown','0','0'), ('31166','984','6','FC','0','1'), ('31167','984','8','SAS','0','2'), ('31168','984','9','iSCSI','0','3'), ('31169','985','0','RAID0','0','0'), ('31170','985','1','RAID1','0','1'), ('31171','985','3','RAID3','0','2'), ('31172','985','5','RAID5','0','3'), ('31173','985','6','NRAID','0','4'), ('31174','985','8','RAID50','0','5'), ('31175','985','10','RAID10','0','6'), ('31176','985','11','RAID6','0','7'), ('31177','986','0','Up','0','0'), ('31178','986','1','Warning','0','1'), ('31179','986','2','Error','0','2'), ('31180','986','3','Not present','0','3'), ('31181','986','4','Unknown','0','4'), ('31182','986','6','Disconnected','0','5'), ('31183','987','0','Operational','0','0'), ('31184','987','1','Down','0','1'), ('31185','987','2','Not Installed','0','2'), ('31186','988','0','FTOL','0','0'), ('31187','988','1','FTDN','0','1'), ('31188','988','2','CRIT','0','2'), ('31189','988','3','OFFL','0','3'), ('31190','988','4','QTCR','0','4'), ('31191','988','5','QTOF','0','5'), ('31192','988','6','QTDN','0','6'), ('31193','988','7','STOP','0','7'), ('31194','988','8','MSNG','0','8'), ('31195','988','9','DMGD','0','9'), ('31196','988','11','QTDN','0','10'), ('31197','988','250','UP','0','11'), ('31198','989','1','OK','0','0'), ('31199','989','2','Critical','0','1'), ('31200','989','3','Warning','0','2'), ('31201','989','4','Unknown','0','3'), ('31202','990','4','SAS','0','0'), ('31203','990','8','SSD SAS','0','1'), ('31204','990','11','SAS MDL','0','2'), ('31205','991','0','Unsupported','0','0'), ('31206','991','1','OK','0','1'), ('31207','991','2','Critical','0','2'), ('31208','991','3','Warning','0','3'), ('31209','991','4','Unrecoverable','0','4'), ('31210','991','5','Not installed','0','5'), ('31211','991','6','Unknown','0','6'), ('31212','991','7','Unavailable','0','7'), ('31213','992','0','Up','0','0'), ('31214','992','1','Error','0','1'), ('31215','992','2','Off','0','2'), ('31216','992','3','Missing','0','3'), ('31217','993','0','Invalid data','0','0'), ('31218','993','1','Fault','0','1'), ('31219','993','2','Absent','0','2'), ('31220','993','3','Power off','0','3'), ('31221','993','4','OK','0','4'), ('31222','994','0','OK','0','0'), ('31223','994','1','Degraded','0','1'), ('31224','994','2','Fault','0','2'), ('31225','994','3','Unknown','0','3'), ('31226','994','4','N/A','0','4'), ('31227','995','0','Unknown','0','0'), ('31228','995','6','FC','0','1'), ('31229','995','8','SAS','0','2'), ('31230','995','9','iSCSI','0','3'), ('31231','996','0','RAID0','0','0'), ('31232','996','1','RAID1','0','1'), ('31233','996','2','MSA-DP+','0','2'), ('31234','996','5','RAID5','0','3'), ('31235','996','6','NRAID','0','4'), ('31236','996','10','RAID10','0','5'), ('31237','996','11','RAID6','0','6'), ('31238','997','0','Up','0','0'), ('31239','997','1','Warning','0','1'), ('31240','997','2','Error','0','2'), ('31241','997','3','Not present','0','3'), ('31242','997','4','Unknown','0','4'), ('31243','997','6','Disconnected','0','5'), ('31244','998','0','No','0','0'), ('31245','998','1','Yes','0','1'), ('31246','999','1','Normal','0','0'), ('31247','999','2','Degraded','0','1'), ('31248','999','3','New','0','2'), ('31249','999','4','Failed','0','3'), ('31250','999','99','Unknown','0','4'), ('31251','1000','1','FC','0','0'), ('31252','1000','2','Eth','0','1'), ('31253','1000','3','iSCSI','0','2'), ('31254','1000','4','CNA','0','3'), ('31255','1000','5','SAS','0','4'), ('31256','1000','6','Combo','0','5'), ('31257','1000','7','NVMe','0','6'), ('31258','1000','8','Unknown','0','7'), ('31259','1001','1','Host','0','0'), ('31260','1001','2','Disk','0','1'), ('31261','1001','3','Free','0','2'), ('31262','1001','4','Iport','0','3'), ('31263','1001','5','RCFC','0','4'), ('31264','1001','6','Peer','0','5'), ('31265','1001','7','RCIP','0','6'), ('31266','1001','8','ISCSI','0','7'), ('31267','1001','9','CNA','0','8'), ('31268','1001','10','FS','0','9'), ('31269','1002','1','None','0','0'), ('31270','1002','2','Failover pending','0','1'), ('31271','1002','3','Failed over','0','2'), ('31272','1002','4','Active','0','3'), ('31273','1002','5','Active down','0','4'), ('31274','1002','6','Active failed','0','5'), ('31275','1002','7','Failback_pending','0','6'), ('31276','1003','1','Config wait','0','0'), ('31277','1003','2','ALPA wait','0','1'), ('31278','1003','3','Login wait','0','2'), ('31279','1003','4','Link is ready','0','3'), ('31280','1003','5','Link is loss sync','0','4'), ('31281','1003','6','In error state','0','5'), ('31282','1003','7','xxx','0','6'), ('31283','1003','8','Non participate','0','7'), ('31284','1003','9','Core dump','0','8'), ('31285','1003','10','Offline','0','9'), ('31286','1003','11','FW dead','0','10'), ('31287','1003','12','Idle for reset','0','11'), ('31288','1003','13','DHCP in progress','0','12'), ('31289','1003','14','Pending reset','0','13'), ('31290','1003','15','New','0','14'), ('31291','1003','16','Disabled','0','15'), ('31292','1003','17','Down','0','16'), ('31293','1003','18','Failed','0','17'), ('31294','1003','19','Purging','0','18'), ('31295','1004','1','None','0','0'), ('31296','1004','2','Primary','0','1'), ('31297','1004','3','Secondary','0','2'), ('31298','1004','4','Snap','0','3'), ('31299','1004','5','Sync','0','4'), ('31300','1004','6','Delete','0','5'), ('31301','1004','99','Unknown','0','6'), ('31302','1005','0','Down','0','0'), ('31303','1005','1','Up','0','1'), ('31304','1006','1','Normal','0','0'), ('31305','1006','2','Degraded','0','1'), ('31306','1006','3','Failed','0','2'), ('31307','1006','99','Unknown','0','3'), ('31308','1007','1','Done','0','0'), ('31309','1007','2','Active','0','1'), ('31310','1007','3','Cancelled','0','2'), ('31311','1007','4','Failed','0','3'), ('31312','1008','1','VV copy','0','0'), ('31313','1008','2','Phys copy resync','0','1'), ('31314','1008','3','Move regions','0','2'), ('31315','1008','4','Promote SV','0','3'), ('31316','1008','5','Remote copy sync','0','4'), ('31317','1008','6','Remote copy reverse','0','5'), ('31318','1008','7','Remote copy failover','0','6'), ('31319','1008','8','Remote copy recover','0','7'), ('31320','1008','9','Remote copy restore','0','8'), ('31321','1008','10','Compact CPG','0','9'), ('31322','1008','11','Compact IDS','0','10'), ('31323','1008','12','Snapshot accounting','0','11'), ('31324','1008','13','Check VV','0','12'), ('31325','1008','14','Scheduled task','0','13'), ('31326','1008','15','System task','0','14'), ('31327','1008','16','Background task','0','15'), ('31328','1008','17','Import VV','0','16'), ('31329','1008','18','Online copy','0','17'), ('31330','1008','19','Convert VV','0','18'), ('31331','1008','20','Background command','0','19'), ('31332','1008','21','CLX sync','0','20'), ('31333','1008','22','CLX recovery','0','21'), ('31334','1008','23','Tune SD','0','22'), ('31335','1008','24','Tune VV','0','23'), ('31336','1008','25','Tune VV rollback','0','24'), ('31337','1008','26','Tune VV restart','0','25'), ('31338','1008','27','System tuning','0','26'), ('31339','1008','28','Node rescue','0','27'), ('31340','1008','29','Repair sync','0','28'), ('31341','1008','30','Remote copy switchover','0','29'), ('31342','1008','31','Defragmentation','0','30'), ('31343','1008','32','Encryption change','0','31'), ('31344','1008','33','Remote copy failsafe','0','32'), ('31345','1008','34','Tune TPVV','0','33'), ('31346','1008','35','Remote copy change mode','0','34'), ('31347','1008','37','Online promote','0','35'), ('31348','1008','38','Relocate PD','0','36'), ('31349','1008','39','Periodic CSS','0','37'), ('31350','1008','40','Tune VV large','0','38'), ('31351','1008','41','SD meta fixer','0','39'), ('31352','1008','42','Dedup dryrun','0','40'), ('31353','1008','43','Compr dryrun','0','41'), ('31354','1008','44','Dedup compr dryrun','0','42'), ('31355','1008','99','Unknown','0','43'), ('31356','1009','1','Yes','0','0'), ('31357','1009','2','No','0','1'), ('31358','1009','3','Off','0','2'), ('31359','1009','4','NA','0','3'), ('31360','1010','1','Yes','0','0'), ('31361','1010','2','No','0','1'), ('31362','1010','3','NA','0','2'), ('31363','1010','4','Off','0','3'), ('31364','1011','1','LDS not started','0','0'), ('31365','1011','2','VV not started','0','1'), ('31366','1011','3','Needs check','0','2'), ('31367','1011','4','Needs maint check','0','3'), ('31368','1011','5','Internal consistency error','0','4'), ('31369','1011','6','Snapdata invalid','0','5'), ('31370','1011','7','Preserved','0','6'), ('31371','1011','8','Stale','0','7'), ('31372','1011','9','Copy failed','0','8'), ('31373','1011','10','Degraded avail','0','9'), ('31374','1011','11','Degraded perf','0','10'), ('31375','1011','12','Promoting','0','11'), ('31376','1011','13','Copy target','0','12'), ('31377','1011','14','Resync target','0','13'), ('31378','1011','15','Tuning','0','14'), ('31379','1011','16','Closing','0','15'), ('31380','1011','17','Removing','0','16'), ('31381','1011','18','Removing retry','0','17'), ('31382','1011','19','Creating','0','18'), ('31383','1011','20','Copy source','0','19'), ('31384','1011','21','Importing','0','20'), ('31385','1011','22','Converting','0','21'), ('31386','1011','23','Invalid','0','22'), ('31387','1011','24','Exclusive','0','23'), ('31388','1011','25','Consistent','0','24'), ('31389','1011','26','Standby','0','25'), ('31390','1011','27','SD Meta inconsistent','0','26'), ('31391','1011','28','SD needs fix','0','27'), ('31392','1011','29','SD meta fix','0','28'), ('31393','1011','999','Unknown state','0','29'), ('31394','1011','1000','State not supported by WSAPI','0','30'), ('31395','1012','0','OK','0','0'), ('31396','1012','1','Insufficient data','0','1'), ('31397','1012','2','Alarm','0','2'), ('31398','1012','255','Unknown','0','3'), ('31399','1013','0','Passed','0','0'), ('31400','1013','1','Failed','0','1'), ('31401','1014','0','Attaching','0','0'), ('31402','1014','1','Attached','0','1'), ('31403','1014','2','Detaching','0','2'), ('31404','1014','255','Unknown','0','3'), ('31405','1015','0','Creating','0','0'), ('31406','1015','1','Available','0','1'), ('31407','1015','2','In-use','0','2'), ('31408','1015','3','Deleting','0','3'), ('31409','1015','4','Deleted','0','4'), ('31410','1015','5','Error','0','5'), ('31411','1015','255','Unknown','0','6'), ('31412','1016','1','up','0','0'), ('31413','1016','2','down','0','1'), ('31414','1016','3','testing','0','2'), ('31415','1016','4','unknown','0','3'), ('31416','1016','5','dormant','0','4'), ('31417','1016','6','notPresent','0','5'), ('31418','1016','7','lowerLayerDown','0','6'), ('31419','1017','1','other','0','0'), ('31420','1017','2','regular1822','0','1'), ('31421','1017','3','hdh1822','0','2'), ('31422','1017','4','ddnX25','0','3'), ('31423','1017','5','rfc877x25','0','4'), ('31424','1017','6','ethernetCsmacd','0','5'), ('31425','1017','7','iso88023Csmacd','0','6'), ('31426','1017','8','iso88024TokenBus','0','7'), ('31427','1017','9','iso88025TokenRing','0','8'), ('31428','1017','10','iso88026Man','0','9'), ('31429','1017','11','starLan','0','10'), ('31430','1017','12','proteon10Mbit','0','11'), ('31431','1017','13','proteon80Mbit','0','12'), ('31432','1017','14','hyperchannel','0','13'), ('31433','1017','15','fddi','0','14'), ('31434','1017','16','lapb','0','15'), ('31435','1017','17','sdlc','0','16'), ('31436','1017','18','ds1','0','17'), ('31437','1017','19','e1','0','18'), ('31438','1017','20','basicISDN','0','19'), ('31439','1017','21','primaryISDN','0','20'), ('31440','1017','22','propPointToPointSerial','0','21'), ('31441','1017','23','ppp','0','22'), ('31442','1017','24','softwareLoopback','0','23'), ('31443','1017','25','eon','0','24'), ('31444','1017','26','ethernet3Mbit','0','25'), ('31445','1017','27','nsip','0','26'), ('31446','1017','28','slip','0','27'), ('31447','1017','29','ultra','0','28'), ('31448','1017','30','ds3','0','29'), ('31449','1017','31','sip','0','30'), ('31450','1017','32','frameRelay','0','31'), ('31451','1017','33','rs232','0','32'), ('31452','1017','34','para','0','33'), ('31453','1017','35','arcnet','0','34'), ('31454','1017','36','arcnetPlus','0','35'), ('31455','1017','37','atm','0','36'), ('31456','1017','38','miox25','0','37'), ('31457','1017','39','sonet','0','38'), ('31458','1017','40','x25ple','0','39'), ('31459','1017','41','iso88022llc','0','40'), ('31460','1017','42','localTalk','0','41'), ('31461','1017','43','smdsDxi','0','42'), ('31462','1017','44','frameRelayService','0','43'), ('31463','1017','45','v35','0','44'), ('31464','1017','46','hssi','0','45'), ('31465','1017','47','hippi','0','46'), ('31466','1017','48','modem','0','47'), ('31467','1017','49','aal5','0','48'), ('31468','1017','50','sonetPath','0','49'), ('31469','1017','51','sonetVT','0','50'), ('31470','1017','52','smdsIcip','0','51'), ('31471','1017','53','propVirtual','0','52'), ('31472','1017','54','propMultiplexor','0','53'), ('31473','1017','55','ieee80212','0','54'), ('31474','1017','56','fibreChannel','0','55'), ('31475','1017','57','hippiInterface','0','56'), ('31476','1017','58','frameRelayInterconnect','0','57'), ('31477','1017','59','aflane8023','0','58'), ('31478','1017','60','aflane8025','0','59'), ('31479','1017','61','cctEmul','0','60'), ('31480','1017','62','fastEther','0','61'), ('31481','1017','63','isdn','0','62'), ('31482','1017','64','v11','0','63'), ('31483','1017','65','v36','0','64'), ('31484','1017','66','g703at64k','0','65'), ('31485','1017','67','g703at2mb','0','66'), ('31486','1017','68','qllc','0','67'), ('31487','1017','69','fastEtherFX','0','68'), ('31488','1017','70','channel','0','69'), ('31489','1017','71','ieee80211','0','70'), ('31490','1017','72','ibm370parChan','0','71'), ('31491','1017','73','escon','0','72'), ('31492','1017','74','dlsw','0','73'), ('31493','1017','75','isdns','0','74'), ('31494','1017','76','isdnu','0','75'), ('31495','1017','77','lapd','0','76'), ('31496','1017','78','ipSwitch','0','77'), ('31497','1017','79','rsrb','0','78'), ('31498','1017','80','atmLogical','0','79'), ('31499','1017','81','ds0','0','80'), ('31500','1017','82','ds0Bundle','0','81'), ('31501','1017','83','bsc','0','82'), ('31502','1017','84','async','0','83'), ('31503','1017','85','cnr','0','84'), ('31504','1017','86','iso88025Dtr','0','85'), ('31505','1017','87','eplrs','0','86'), ('31506','1017','88','arap','0','87'), ('31507','1017','89','propCnls','0','88'), ('31508','1017','90','hostPad','0','89'), ('31509','1017','91','termPad','0','90'), ('31510','1017','92','frameRelayMPI','0','91'), ('31511','1017','93','x213','0','92'), ('31512','1017','94','adsl','0','93'), ('31513','1017','95','radsl','0','94'), ('31514','1017','96','sdsl','0','95'), ('31515','1017','97','vdsl','0','96'), ('31516','1017','98','iso88025CRFPInt','0','97'), ('31517','1017','99','myrinet','0','98'), ('31518','1017','100','voiceEM','0','99'), ('31519','1017','101','voiceFXO','0','100'), ('31520','1017','102','voiceFXS','0','101'), ('31521','1017','103','voiceEncap','0','102'), ('31522','1017','104','voiceOverIp','0','103'), ('31523','1017','105','atmDxi','0','104'), ('31524','1017','106','atmFuni','0','105'), ('31525','1017','107','atmIma','0','106'), ('31526','1017','108','pppMultilinkBundle','0','107'), ('31527','1017','109','ipOverCdlc','0','108'), ('31528','1017','110','ipOverClaw','0','109'), ('31529','1017','111','stackToStack','0','110'), ('31530','1017','112','virtualIpAddress','0','111'), ('31531','1017','113','mpc','0','112'), ('31532','1017','114','ipOverAtm','0','113'), ('31533','1017','115','iso88025Fiber','0','114'), ('31534','1017','116','tdlc','0','115'), ('31535','1017','117','gigabitEthernet','0','116'), ('31536','1017','118','hdlc','0','117'), ('31537','1017','119','lapf','0','118'), ('31538','1017','120','v37','0','119'), ('31539','1017','121','x25mlp','0','120'), ('31540','1017','122','x25huntGroup','0','121'), ('31541','1017','123','trasnpHdlc','0','122'), ('31542','1017','124','interleave','0','123'), ('31543','1017','125','fast','0','124'), ('31544','1017','126','ip','0','125'), ('31545','1017','127','docsCableMaclayer','0','126'), ('31546','1017','128','docsCableDownstream','0','127'), ('31547','1017','129','docsCableUpstream','0','128'), ('31548','1017','130','a12MppSwitch','0','129'), ('31549','1017','131','tunnel','0','130'), ('31550','1017','132','coffee','0','131'), ('31551','1017','133','ces','0','132'), ('31552','1017','134','atmSubInterface','0','133'), ('31553','1017','135','l2vlan','0','134'), ('31554','1017','136','l3ipvlan','0','135'), ('31555','1017','137','l3ipxvlan','0','136'), ('31556','1017','138','digitalPowerline','0','137'), ('31557','1017','139','mediaMailOverIp','0','138'), ('31558','1017','140','dtm','0','139'), ('31559','1017','141','dcn','0','140'), ('31560','1017','142','ipForward','0','141'), ('31561','1017','143','msdsl','0','142'), ('31562','1017','144','ieee1394','0','143'), ('31563','1017','145','if-gsn','0','144'), ('31564','1017','146','dvbRccMacLayer','0','145'), ('31565','1017','147','dvbRccDownstream','0','146'), ('31566','1017','148','dvbRccUpstream','0','147'), ('31567','1017','149','atmVirtual','0','148'), ('31568','1017','150','mplsTunnel','0','149'), ('31569','1017','151','srp','0','150'), ('31570','1017','152','voiceOverAtm','0','151'), ('31571','1017','153','voiceOverFrameRelay','0','152'), ('31572','1017','154','idsl','0','153'), ('31573','1017','155','compositeLink','0','154'), ('31574','1017','156','ss7SigLink','0','155'), ('31575','1017','157','propWirelessP2P','0','156'), ('31576','1017','158','frForward','0','157'), ('31577','1017','159','rfc1483','0','158'), ('31578','1017','160','usb','0','159'), ('31579','1017','161','ieee8023adLag','0','160'), ('31580','1017','162','bgppolicyaccounting','0','161'), ('31581','1017','163','frf16MfrBundle','0','162'), ('31582','1017','164','h323Gatekeeper','0','163'), ('31583','1017','165','h323Proxy','0','164'), ('31584','1017','166','mpls','0','165'), ('31585','1017','167','mfSigLink','0','166'), ('31586','1017','168','hdsl2','0','167'), ('31587','1017','169','shdsl','0','168'), ('31588','1017','170','ds1FDL','0','169'), ('31589','1017','171','pos','0','170'), ('31590','1017','172','dvbAsiIn','0','171'), ('31591','1017','173','dvbAsiOut','0','172'), ('31592','1017','174','plc','0','173'), ('31593','1017','175','nfas','0','174'), ('31594','1017','176','tr008','0','175'), ('31595','1017','177','gr303RDT','0','176'), ('31596','1017','178','gr303IDT','0','177'), ('31597','1017','179','isup','0','178'), ('31598','1017','180','propDocsWirelessMaclayer','0','179'), ('31599','1017','181','propDocsWirelessDownstream','0','180'), ('31600','1017','182','propDocsWirelessUpstream','0','181'), ('31601','1017','183','hiperlan2','0','182'), ('31602','1017','184','propBWAp2Mp','0','183'), ('31603','1017','185','sonetOverheadChannel','0','184'), ('31604','1017','186','digitalWrapperOverheadChannel','0','185'), ('31605','1017','187','aal2','0','186'), ('31606','1017','188','radioMAC','0','187'), ('31607','1017','189','atmRadio','0','188'), ('31608','1017','190','imt','0','189'), ('31609','1017','191','mvl','0','190'), ('31610','1017','192','reachDSL','0','191'), ('31611','1017','193','frDlciEndPt','0','192'), ('31612','1017','194','atmVciEndPt','0','193'), ('31613','1017','195','opticalChannel','0','194'), ('31614','1017','196','opticalTransport','0','195'), ('31615','1017','197','propAtm','0','196'), ('31616','1017','198','voiceOverCable','0','197'), ('31617','1017','199','infiniband','0','198'), ('31618','1017','200','teLink','0','199'), ('31619','1017','201','q2931','0','200'), ('31620','1017','202','virtualTg','0','201'), ('31621','1017','203','sipTg','0','202'), ('31622','1017','204','sipSig','0','203'), ('31623','1017','205','docsCableUpstreamChannel','0','204'), ('31624','1017','206','econet','0','205'), ('31625','1017','207','pon155','0','206'), ('31626','1017','208','pon622','0','207'), ('31627','1017','209','bridge','0','208'), ('31628','1017','210','linegroup','0','209'), ('31629','1017','211','voiceEMFGD','0','210'), ('31630','1017','212','voiceFGDEANA','0','211'), ('31631','1017','213','voiceDID','0','212'), ('31632','1017','214','mpegTransport','0','213'), ('31633','1017','215','sixToFour','0','214'), ('31634','1017','216','gtp','0','215'), ('31635','1017','217','pdnEtherLoop1','0','216'), ('31636','1017','218','pdnEtherLoop2','0','217'), ('31637','1017','219','opticalChannelGroup','0','218'), ('31638','1017','220','homepna','0','219'), ('31639','1017','221','gfp','0','220'), ('31640','1017','222','ciscoISLvlan','0','221'), ('31641','1017','223','actelisMetaLOOP','0','222'), ('31642','1017','224','fcipLink','0','223'), ('31643','1017','225','rpr','0','224'), ('31644','1017','226','qam','0','225'), ('31645','1017','227','lmp','0','226'), ('31646','1017','228','cblVectaStar','0','227'), ('31647','1017','229','docsCableMCmtsDownstream','0','228'), ('31648','1017','230','adsl2','0','229'), ('31649','1017','231','macSecControlledIF','0','230'), ('31650','1017','232','macSecUncontrolledIF','0','231'), ('31651','1017','233','aviciOpticalEther','0','232'), ('31652','1017','234','atmbond','0','233'), ('31653','1017','235','voiceFGDOS','0','234'), ('31654','1017','236','mocaVersion1','0','235'), ('31655','1017','237','ieee80216WMAN','0','236'), ('31656','1017','238','adsl2plus','0','237'), ('31657','1017','239','dvbRcsMacLayer','0','238'), ('31658','1017','240','dvbTdm','0','239'), ('31659','1017','241','dvbRcsTdma','0','240'), ('31660','1017','242','x86Laps','0','241'), ('31661','1017','243','wwanPP','0','242'), ('31662','1017','244','wwanPP2','0','243'), ('31663','1017','245','voiceEBS','0','244'), ('31664','1017','246','ifPwType','0','245'), ('31665','1017','247','ilan','0','246'), ('31666','1017','248','pip','0','247'), ('31667','1017','249','aluELP','0','248'), ('31668','1017','250','gpon','0','249'), ('31669','1017','251','vdsl2','0','250'), ('31670','1017','252','capwapDot11Profile','0','251'), ('31671','1017','253','capwapDot11Bss','0','252'), ('31672','1017','254','capwapWtpVirtualRadio','0','253'), ('31673','1017','255','bits','0','254'), ('31674','1017','256','docsCableUpstreamRfPort','0','255'), ('31675','1017','257','cableDownstreamRfPort','0','256'), ('31676','1017','258','vmwareVirtualNic','0','257'), ('31677','1017','259','ieee802154','0','258'), ('31678','1017','260','otnOdu','0','259'), ('31679','1017','261','otnOtu','0','260'), ('31680','1017','262','ifVfiType','0','261'), ('31681','1017','263','g9981','0','262'), ('31682','1017','264','g9982','0','263'), ('31683','1017','265','g9983','0','264'), ('31684','1017','266','aluEpon','0','265'), ('31685','1017','267','aluEponOnu','0','266'), ('31686','1017','268','aluEponPhysicalUni','0','267'), ('31687','1017','269','aluEponLogicalLink','0','268'), ('31688','1017','270','aluGponOnu','0','269'), ('31689','1017','271','aluGponPhysicalUni','0','270'), ('31690','1017','272','vmwareNicTeam','0','271'), ('31691','1017','277','docsOfdmDownstream','0','272'), ('31692','1017','278','docsOfdmaUpstream','0','273'), ('31693','1017','279','gfast','0','274'), ('31694','1017','280','sdci','0','275'), ('31695','1017','281','xboxWireless','0','276'), ('31696','1017','282','fastdsl','0','277'), ('31697','1017','283','docsCableScte55d1FwdOob','0','278'), ('31698','1017','284','docsCableScte55d1RetOob','0','279'), ('31699','1017','285','docsCableScte55d2DsOob','0','280'), ('31700','1017','286','docsCableScte55d2UsOob','0','281'), ('31701','1017','287','docsCableNdf','0','282'), ('31702','1017','288','docsCableNdr','0','283'), ('31703','1017','289','ptm','0','284'), ('31704','1017','290','ghn','0','285'), ('31705','1018','0','not running','0','0'), ('31706','1018','2','running','0','1'), ('31707','1019','1','true','0','0'), ('31708','1019','2','false','0','1'), ('31709','1020','0','not available','0','0'), ('31710','1020','1','available','0','1'), ('31711','1020','2','unknown','0','2'), ('31712','1021','0','OK','0','0'), ('31713','1021','1','Insufficient data','0','1'), ('31714','1021','2','Alarm','0','2'), ('31715','1021','255','Unknown','0','3'), ('31716','1022','0','Error','0','0'), ('31717','1022','1','Normal','0','1'), ('31718','1023','0','OK','0','0'), ('31719','1023','1','Insufficient data','0','1'), ('31720','1023','2','Alarm','0','2'), ('31721','1023','255','Unknown','0','3'), ('31722','1024','0','Available','0','0'), ('31723','1024','1','Degraded','0','1'), ('31724','1024','2','Unavailable','0','2'), ('31725','1024','3','Unknown','0','3'), ('31726','1025','0','No','0','0'), ('31727','1025','1','Yes','0','1'), ('31728','1026','0','Absent','0','0'), ('31729','1026','1','PresenceNoOp','0','1'), ('31730','1026','2','PresenceUnknown','0','2'), ('31731','1026','3','Present','0','3'), ('31732','1026','4','Subsumed','0','4'), ('31733','1027','0','Adding','0','0'), ('31734','1027','1','Configured','0','1'), ('31735','1027','2','Configuring','0','2'), ('31736','1027','3','Interrupted','0','3'), ('31737','1027','4','Monitored','0','4'), ('31738','1027','5','Pending','0','5'), ('31739','1027','6','RemoveFailed','0','6'), ('31740','1027','7','Removing','0','7'), ('31741','1027','8','Unmanaged','0','8'), ('31742','1027','9','Unsupported','0','9'), ('31743','1027','10','Unknown','0','10'), ('31744','1028','0','Critical','0','0'), ('31745','1028','1','Disabled','0','1'), ('31746','1028','2','OK','0','2'), ('31747','1028','3','Unknown','0','3'), ('31748','1028','4','Warning','0','4'), ('31749','1029','0','Connected','0','0'), ('31750','1029','1','Disconnected','0','1'), ('31751','1029','2','Configuring','0','2'), ('31752','1029','3','Error','0','3'), ('31753','1029','4','Unknown','0','4'), ('31754','1030','0','Disabled','0','0'), ('31755','1030','1','Linked','0','1'), ('31756','1030','2','Unlinked','0','2'), ('31757','1030','3','Unknown','0','3'), ('31758','1031','0','Inconsistent','0','0'), ('31759','1031','1','Creating','0','1'), ('31760','1031','2','DeleteFailed','0','2'), ('31761','1031','3','Deleting','0','3'), ('31762','1031','4','Consistent','0','4'), ('31763','1031','5','Updating','0','5'), ('31764','1031','6','Unknown','0','6'), ('31765','1032','0','Maintenance','0','0'), ('31766','1032','1','Normal','0','1'), ('31767','1032','2','Unknown','0','2'), ('31768','1033','0','Active','0','0'), ('31769','1033','1','Disabled','0','1'), ('31770','1033','2','I3s','0','2'), ('31771','1033','3','Other','0','3'), ('31772','1033','4','Standby','0','4'), ('31773','1033','5','Unknown','0','5'), ('31774','1034','0','Migrating','0','0'), ('31775','1034','1','NotApplicable','0','1'), ('31776','1034','2','Unknown','0','2'), ('31777','1035','0','NparDegrade','0','0'), ('31778','1035','1','NparHealthInvalid','0','1'), ('31779','1035','2','NparHealthMax','0','2'), ('31780','1035','3','NparOk','0','3'), ('31781','1035','4','Unknown','0','4'), ('31782','1036','0','ParStatusActive','0','0'), ('31783','1036','1','ParStatusInactive','0','1'), ('31784','1036','2','ParStatusInvalid','0','2'), ('31785','1036','3','ParStatusManualRepair','0','3'), ('31786','1036','4','ParStatusMax','0','4'), ('31787','1036','5','ParStatusUndefined','0','5'), ('31788','1036','6','ParStatusUnknown','0','6'), ('31789','1037','0','PoweringOff','0','0'), ('31790','1037','1','PoweringOn','0','1'), ('31791','1037','2','Resetting','0','2'), ('31792','1037','3','Unknown','0','3'), ('31793','1037','4','Off','0','4'), ('31794','1037','5','On','0','5'), ('31795','1038','0','EFuse','0','0'), ('31796','1038','1','Reset','0','1'), ('31797','1038','2','SoftReset','0','2'), ('31798','1038','3','Unknown','0','3'), ('31799','1039','0','Adding','0','0'), ('31800','1039','1','AddError','0','1'), ('31801','1039','2','Configured','0','2'), ('31802','1039','3','CredentialError','0','3'), ('31803','1039','4','Refreshing','0','4'), ('31804','1039','5','RefreshError','0','5'), ('31805','1039','6','Removing','0','6'), ('31806','1039','7','RemoveError','0','7'), ('31807','1039','8','Unmanaged','0','8'), ('31808','1039','9','Unknown','0','9'), ('31809','1040','0','Degraded','0','0'), ('31810','1040','1','Failed','0','1'), ('31811','1040','2','Misplaced','0','2'), ('31812','1040','3','Missing','0','3'), ('31813','1040','4','OK','0','4'), ('31814','1040','5','Unknown','0','5'), ('31815','1041','0','Unknown','0','0'), ('31816','1041','1','Adding','0','1'), ('31817','1041','2','NoProfileApplied','0','2'), ('31818','1041','3','Monitored','0','3'), ('31819','1041','4','Unmanaged','0','4'), ('31820','1041','5','Removing','0','5'), ('31821','1041','6','RemoveFailed','0','6'), ('31822','1041','7','Removed','0','7'), ('31823','1041','8','ApplyingProfile','0','8'), ('31824','1041','9','ProfileApplied','0','9'), ('31825','1041','10','RemovingProfile','0','10'), ('31826','1041','11','ProfileError','0','11'), ('31827','1041','12','Unsupported','0','12'), ('31828','1041','13','UpdatingFirmware','0','13'), ('31829','1042','0','Down','0','0'), ('31830','1042','1','Up','0','1'), ('31831','1043','0','Missing','0','0'), ('31832','1043','1','None','0','1'), ('31833','1043','2','Not Added','0','2'), ('31834','1043','3','Not Owner','0','3'), ('31835','1043','4','Operation Failed','0','4'), ('31836','1043','5','Unowned','0','5'), ('31837','1043','6','Unsupported Firmware','0','6'), ('31838','1043','7','Updating Firmware','0','7'), ('31839','1043','8','Unknown','0','8'), ('31840','1044','0','AddFailed','0','0'), ('31841','1044','1','Adding','0','1'), ('31842','1044','2','Configured','0','2'), ('31843','1044','3','Connected','0','3'), ('31844','1044','4','Copying','0','4'), ('31845','1044','5','CreateFailed','0','5'), ('31846','1044','6','Creating','0','6'), ('31847','1044','7','DeleteFailed','0','7'), ('31848','1044','8','Deleting','0','8'), ('31849','1044','9','Discovered','0','9'), ('31850','1044','10','Managed','0','10'), ('31851','1044','11','Normal','0','11'), ('31852','1044','12','UpdateFailed','0','12'), ('31853','1044','13','Updating','0','13'), ('31854','1044','14','Unknown','0','14'), ('31855','1045','0','Undefined','0','0'), ('31856','1045','1','Current','0','1'), ('31857','1045','2','Outdated','0','2'), ('31858','1045','3','Unsupported','0','3'), ('31859','1046','-1','Never','0','0'), ('31860','1047','0','Active','0','0'), ('31861','1047','1','Passive','0','1'), ('31862','1048','0','Off','0','0'), ('31863','1048','1','On','0','1'), ('31864','1049','0','Undefined','0','0'), ('31865','1049','1','Current','0','1'), ('31866','1049','2','Outdated','0','2'), ('31867','1049','3','Unsupported','0','3'), ('31868','1050','-1','Never','0','0'), ('31869','1051','0','Active','0','0'), ('31870','1051','1','Passive','0','1'), ('31871','1052','0','Off','0','0'), ('31872','1052','1','On','0','1'), ('31873','1053','0','Available','0','0'), ('31874','1053','1','Degraded','0','1'), ('31875','1053','2','Unavailable','0','2'), ('31876','1053','3','Unknown','0','3'), ('31877','1054','0','Available','0','0'), ('31878','1054','1','Degraded','0','1'), ('31879','1054','2','Unavailable','0','2'), ('31880','1054','3','Unknown','0','3'), ('31881','1055','0','Available','0','0'), ('31882','1055','1','Degraded','0','1'), ('31883','1055','2','Unavailable','0','2'), ('31884','1055','3','Unknown','0','3'), ('31885','1056','0','Available','0','0'), ('31886','1056','1','Degraded','0','1'), ('31887','1056','2','Unavailable','0','2'), ('31888','1056','3','Unknown','0','3'), ('31889','1057','0','offline','0','0'), ('31890','1057','1','online','0','1'), ('31891','1057','2','dormant','0','2'), ('31892','1057','10','unknown','0','3'), ('31893','1058','0','License required','0','0'), ('31894','1058','1','OK','0','1'), ('31895','1058','10','unknown','0','2'), ('31896','1059','0','failed','0','0'), ('31897','1059','1','active','0','1'), ('31898','1059','2','ready','0','2'), ('31899','1059','3','not connected','0','3'), ('31900','1059','10','unknown','0','4'), ('31901','1060','1','unknown','0','0'), ('31902','1060','2','up','0','1'), ('31903','1060','3','down','0','2'), ('31904','1060','4','warning','0','3'), ('31905','1061','1','offEnvOther','0','0'), ('31906','1061','2','on','0','1'), ('31907','1061','3','offAdmin','0','2'), ('31908','1061','4','offDenied','0','3'), ('31909','1061','5','offEnvPower','0','4'), ('31910','1061','6','offEnvTemp','0','5'), ('31911','1061','7','offEnvFan','0','6'), ('31912','1061','8','failed','0','7'), ('31913','1061','9','onButFanFail','0','8'), ('31914','1061','10','offCooling','0','9'), ('31915','1061','11','offConnectorRating','0','10'), ('31916','1061','12','onButInlinePowerFail','0','11'), ('31917','1062','1','ok','0','0'), ('31918','1062','2','unavailable','0','1'), ('31919','1062','3','nonoperational','0','2'), ('31920','1063','1','unknown','0','0'), ('31921','1063','2','halfDuplex','0','1'), ('31922','1063','3','fullDuplex','0','2'), ('31923','1064','1','up','0','0'), ('31924','1064','2','down','0','1'), ('31925','1064','3','testing','0','2'), ('31926','1064','4','unknown','0','3'), ('31927','1064','5','dormant','0','4'), ('31928','1064','6','notPresent','0','5'), ('31929','1064','7','lowerLayerDown','0','6'), ('31930','1065','1','other','0','0'), ('31931','1065','2','regular1822','0','1'), ('31932','1065','3','hdh1822','0','2'), ('31933','1065','4','ddnX25','0','3'), ('31934','1065','5','rfc877x25','0','4'), ('31935','1065','6','ethernetCsmacd','0','5'), ('31936','1065','7','iso88023Csmacd','0','6'), ('31937','1065','8','iso88024TokenBus','0','7'), ('31938','1065','9','iso88025TokenRing','0','8'), ('31939','1065','10','iso88026Man','0','9'), ('31940','1065','11','starLan','0','10'), ('31941','1065','12','proteon10Mbit','0','11'), ('31942','1065','13','proteon80Mbit','0','12'), ('31943','1065','14','hyperchannel','0','13'), ('31944','1065','15','fddi','0','14'), ('31945','1065','16','lapb','0','15'), ('31946','1065','17','sdlc','0','16'), ('31947','1065','18','ds1','0','17'), ('31948','1065','19','e1','0','18'), ('31949','1065','20','basicISDN','0','19'), ('31950','1065','21','primaryISDN','0','20'), ('31951','1065','22','propPointToPointSerial','0','21'), ('31952','1065','23','ppp','0','22'), ('31953','1065','24','softwareLoopback','0','23'), ('31954','1065','25','eon','0','24'), ('31955','1065','26','ethernet3Mbit','0','25'), ('31956','1065','27','nsip','0','26'), ('31957','1065','28','slip','0','27'), ('31958','1065','29','ultra','0','28'), ('31959','1065','30','ds3','0','29'), ('31960','1065','31','sip','0','30'), ('31961','1065','32','frameRelay','0','31'), ('31962','1065','33','rs232','0','32'), ('31963','1065','34','para','0','33'), ('31964','1065','35','arcnet','0','34'), ('31965','1065','36','arcnetPlus','0','35'), ('31966','1065','37','atm','0','36'), ('31967','1065','38','miox25','0','37'), ('31968','1065','39','sonet','0','38'), ('31969','1065','40','x25ple','0','39'), ('31970','1065','41','iso88022llc','0','40'), ('31971','1065','42','localTalk','0','41'), ('31972','1065','43','smdsDxi','0','42'), ('31973','1065','44','frameRelayService','0','43'), ('31974','1065','45','v35','0','44'), ('31975','1065','46','hssi','0','45'), ('31976','1065','47','hippi','0','46'), ('31977','1065','48','modem','0','47'), ('31978','1065','49','aal5','0','48'), ('31979','1065','50','sonetPath','0','49'), ('31980','1065','51','sonetVT','0','50'), ('31981','1065','52','smdsIcip','0','51'), ('31982','1065','53','propVirtual','0','52'), ('31983','1065','54','propMultiplexor','0','53'), ('31984','1065','55','ieee80212','0','54'), ('31985','1065','56','fibreChannel','0','55'), ('31986','1065','57','hippiInterface','0','56'), ('31987','1065','58','frameRelayInterconnect','0','57'), ('31988','1065','59','aflane8023','0','58'), ('31989','1065','60','aflane8025','0','59'), ('31990','1065','61','cctEmul','0','60'), ('31991','1065','62','fastEther','0','61'), ('31992','1065','63','isdn','0','62'), ('31993','1065','64','v11','0','63'), ('31994','1065','65','v36','0','64'), ('31995','1065','66','g703at64k','0','65'), ('31996','1065','67','g703at2mb','0','66'), ('31997','1065','68','qllc','0','67'), ('31998','1065','69','fastEtherFX','0','68'), ('31999','1065','70','channel','0','69'), ('32000','1065','71','ieee80211','0','70'), ('32001','1065','72','ibm370parChan','0','71'), ('32002','1065','73','escon','0','72'), ('32003','1065','74','dlsw','0','73'), ('32004','1065','75','isdns','0','74'), ('32005','1065','76','isdnu','0','75'), ('32006','1065','77','lapd','0','76'), ('32007','1065','78','ipSwitch','0','77'), ('32008','1065','79','rsrb','0','78'), ('32009','1065','80','atmLogical','0','79'), ('32010','1065','81','ds0','0','80'), ('32011','1065','82','ds0Bundle','0','81'), ('32012','1065','83','bsc','0','82'), ('32013','1065','84','async','0','83'), ('32014','1065','85','cnr','0','84'), ('32015','1065','86','iso88025Dtr','0','85'), ('32016','1065','87','eplrs','0','86'), ('32017','1065','88','arap','0','87'), ('32018','1065','89','propCnls','0','88'), ('32019','1065','90','hostPad','0','89'), ('32020','1065','91','termPad','0','90'), ('32021','1065','92','frameRelayMPI','0','91'), ('32022','1065','93','x213','0','92'), ('32023','1065','94','adsl','0','93'), ('32024','1065','95','radsl','0','94'), ('32025','1065','96','sdsl','0','95'), ('32026','1065','97','vdsl','0','96'), ('32027','1065','98','iso88025CRFPInt','0','97'), ('32028','1065','99','myrinet','0','98'), ('32029','1065','100','voiceEM','0','99'), ('32030','1065','101','voiceFXO','0','100'), ('32031','1065','102','voiceFXS','0','101'), ('32032','1065','103','voiceEncap','0','102'), ('32033','1065','104','voiceOverIp','0','103'), ('32034','1065','105','atmDxi','0','104'), ('32035','1065','106','atmFuni','0','105'), ('32036','1065','107','atmIma','0','106'), ('32037','1065','108','pppMultilinkBundle','0','107'), ('32038','1065','109','ipOverCdlc','0','108'), ('32039','1065','110','ipOverClaw','0','109'), ('32040','1065','111','stackToStack','0','110'), ('32041','1065','112','virtualIpAddress','0','111'), ('32042','1065','113','mpc','0','112'), ('32043','1065','114','ipOverAtm','0','113'), ('32044','1065','115','iso88025Fiber','0','114'), ('32045','1065','116','tdlc','0','115'), ('32046','1065','117','gigabitEthernet','0','116'), ('32047','1065','118','hdlc','0','117'), ('32048','1065','119','lapf','0','118'), ('32049','1065','120','v37','0','119'), ('32050','1065','121','x25mlp','0','120'), ('32051','1065','122','x25huntGroup','0','121'), ('32052','1065','123','trasnpHdlc','0','122'), ('32053','1065','124','interleave','0','123'), ('32054','1065','125','fast','0','124'), ('32055','1065','126','ip','0','125'), ('32056','1065','127','docsCableMaclayer','0','126'), ('32057','1065','128','docsCableDownstream','0','127'), ('32058','1065','129','docsCableUpstream','0','128'), ('32059','1065','130','a12MppSwitch','0','129'), ('32060','1065','131','tunnel','0','130'), ('32061','1065','132','coffee','0','131'), ('32062','1065','133','ces','0','132'), ('32063','1065','134','atmSubInterface','0','133'), ('32064','1065','135','l2vlan','0','134'), ('32065','1065','136','l3ipvlan','0','135'), ('32066','1065','137','l3ipxvlan','0','136'), ('32067','1065','138','digitalPowerline','0','137'), ('32068','1065','139','mediaMailOverIp','0','138'), ('32069','1065','140','dtm','0','139'), ('32070','1065','141','dcn','0','140'), ('32071','1065','142','ipForward','0','141'), ('32072','1065','143','msdsl','0','142'), ('32073','1065','144','ieee1394','0','143'), ('32074','1065','145','if-gsn','0','144'), ('32075','1065','146','dvbRccMacLayer','0','145'), ('32076','1065','147','dvbRccDownstream','0','146'), ('32077','1065','148','dvbRccUpstream','0','147'), ('32078','1065','149','atmVirtual','0','148'), ('32079','1065','150','mplsTunnel','0','149'), ('32080','1065','151','srp','0','150'), ('32081','1065','152','voiceOverAtm','0','151'), ('32082','1065','153','voiceOverFrameRelay','0','152'), ('32083','1065','154','idsl','0','153'), ('32084','1065','155','compositeLink','0','154'), ('32085','1065','156','ss7SigLink','0','155'), ('32086','1065','157','propWirelessP2P','0','156'), ('32087','1065','158','frForward','0','157'), ('32088','1065','159','rfc1483','0','158'), ('32089','1065','160','usb','0','159'), ('32090','1065','161','ieee8023adLag','0','160'), ('32091','1065','162','bgppolicyaccounting','0','161'), ('32092','1065','163','frf16MfrBundle','0','162'), ('32093','1065','164','h323Gatekeeper','0','163'), ('32094','1065','165','h323Proxy','0','164'), ('32095','1065','166','mpls','0','165'), ('32096','1065','167','mfSigLink','0','166'), ('32097','1065','168','hdsl2','0','167'), ('32098','1065','169','shdsl','0','168'), ('32099','1065','170','ds1FDL','0','169'), ('32100','1065','171','pos','0','170'), ('32101','1065','172','dvbAsiIn','0','171'), ('32102','1065','173','dvbAsiOut','0','172'), ('32103','1065','174','plc','0','173'), ('32104','1065','175','nfas','0','174'), ('32105','1065','176','tr008','0','175'), ('32106','1065','177','gr303RDT','0','176'), ('32107','1065','178','gr303IDT','0','177'), ('32108','1065','179','isup','0','178'), ('32109','1065','180','propDocsWirelessMaclayer','0','179'), ('32110','1065','181','propDocsWirelessDownstream','0','180'), ('32111','1065','182','propDocsWirelessUpstream','0','181'), ('32112','1065','183','hiperlan2','0','182'), ('32113','1065','184','propBWAp2Mp','0','183'), ('32114','1065','185','sonetOverheadChannel','0','184'), ('32115','1065','186','digitalWrapperOverheadChannel','0','185'), ('32116','1065','187','aal2','0','186'), ('32117','1065','188','radioMAC','0','187'), ('32118','1065','189','atmRadio','0','188'), ('32119','1065','190','imt','0','189'), ('32120','1065','191','mvl','0','190'), ('32121','1065','192','reachDSL','0','191'), ('32122','1065','193','frDlciEndPt','0','192'), ('32123','1065','194','atmVciEndPt','0','193'), ('32124','1065','195','opticalChannel','0','194'), ('32125','1065','196','opticalTransport','0','195'), ('32126','1065','197','propAtm','0','196'), ('32127','1065','198','voiceOverCable','0','197'), ('32128','1065','199','infiniband','0','198'), ('32129','1065','200','teLink','0','199'), ('32130','1065','201','q2931','0','200'), ('32131','1065','202','virtualTg','0','201'), ('32132','1065','203','sipTg','0','202'), ('32133','1065','204','sipSig','0','203'), ('32134','1065','205','docsCableUpstreamChannel','0','204'), ('32135','1065','206','econet','0','205'), ('32136','1065','207','pon155','0','206'), ('32137','1065','208','pon622','0','207'), ('32138','1065','209','bridge','0','208'), ('32139','1065','210','linegroup','0','209'), ('32140','1065','211','voiceEMFGD','0','210'), ('32141','1065','212','voiceFGDEANA','0','211'), ('32142','1065','213','voiceDID','0','212'), ('32143','1065','214','mpegTransport','0','213'), ('32144','1065','215','sixToFour','0','214'), ('32145','1065','216','gtp','0','215'), ('32146','1065','217','pdnEtherLoop1','0','216'), ('32147','1065','218','pdnEtherLoop2','0','217'), ('32148','1065','219','opticalChannelGroup','0','218'), ('32149','1065','220','homepna','0','219'), ('32150','1065','221','gfp','0','220'), ('32151','1065','222','ciscoISLvlan','0','221'), ('32152','1065','223','actelisMetaLOOP','0','222'), ('32153','1065','224','fcipLink','0','223'), ('32154','1065','225','rpr','0','224'), ('32155','1065','226','qam','0','225'), ('32156','1065','227','lmp','0','226'), ('32157','1065','228','cblVectaStar','0','227'), ('32158','1065','229','docsCableMCmtsDownstream','0','228'), ('32159','1065','230','adsl2','0','229'), ('32160','1065','231','macSecControlledIF','0','230'), ('32161','1065','232','macSecUncontrolledIF','0','231'), ('32162','1065','233','aviciOpticalEther','0','232'), ('32163','1065','234','atmbond','0','233'), ('32164','1065','235','voiceFGDOS','0','234'), ('32165','1065','236','mocaVersion1','0','235'), ('32166','1065','237','ieee80216WMAN','0','236'), ('32167','1065','238','adsl2plus','0','237'), ('32168','1065','239','dvbRcsMacLayer','0','238'), ('32169','1065','240','dvbTdm','0','239'), ('32170','1065','241','dvbRcsTdma','0','240'), ('32171','1065','242','x86Laps','0','241'), ('32172','1065','243','wwanPP','0','242'), ('32173','1065','244','wwanPP2','0','243'), ('32174','1065','245','voiceEBS','0','244'), ('32175','1065','246','ifPwType','0','245'), ('32176','1065','247','ilan','0','246'), ('32177','1065','248','pip','0','247'), ('32178','1065','249','aluELP','0','248'), ('32179','1065','250','gpon','0','249'), ('32180','1065','251','vdsl2','0','250'), ('32181','1065','252','capwapDot11Profile','0','251'), ('32182','1065','253','capwapDot11Bss','0','252'), ('32183','1065','254','capwapWtpVirtualRadio','0','253'), ('32184','1065','255','bits','0','254'), ('32185','1065','256','docsCableUpstreamRfPort','0','255'), ('32186','1065','257','cableDownstreamRfPort','0','256'), ('32187','1065','258','vmwareVirtualNic','0','257'), ('32188','1065','259','ieee802154','0','258'), ('32189','1065','260','otnOdu','0','259'), ('32190','1065','261','otnOtu','0','260'), ('32191','1065','262','ifVfiType','0','261'), ('32192','1065','263','g9981','0','262'), ('32193','1065','264','g9982','0','263'), ('32194','1065','265','g9983','0','264'), ('32195','1065','266','aluEpon','0','265'), ('32196','1065','267','aluEponOnu','0','266'), ('32197','1065','268','aluEponPhysicalUni','0','267'), ('32198','1065','269','aluEponLogicalLink','0','268'), ('32199','1065','270','aluGponOnu','0','269'), ('32200','1065','271','aluGponPhysicalUni','0','270'), ('32201','1065','272','vmwareNicTeam','0','271'), ('32202','1065','277','docsOfdmDownstream','0','272'), ('32203','1065','278','docsOfdmaUpstream','0','273'), ('32204','1065','279','gfast','0','274'), ('32205','1065','280','sdci','0','275'), ('32206','1065','281','xboxWireless','0','276'), ('32207','1065','282','fastdsl','0','277'), ('32208','1065','283','docsCableScte55d1FwdOob','0','278'), ('32209','1065','284','docsCableScte55d1RetOob','0','279'), ('32210','1065','285','docsCableScte55d2DsOob','0','280'), ('32211','1065','286','docsCableScte55d2UsOob','0','281'), ('32212','1065','287','docsCableNdf','0','282'), ('32213','1065','288','docsCableNdr','0','283'), ('32214','1065','289','ptm','0','284'), ('32215','1065','290','ghn','0','285'), ('32216','1066','0','Down','0','0'), ('32217','1066','1','Up','0','1'), ('32218','1067','0','not available','0','0'), ('32219','1067','1','available','0','1'), ('32220','1067','2','unknown','0','2'), ('32221','1068','0','Not Ok','0','0'), ('32222','1068','1','Ok','0','1'), ('32223','1068','2','Completed Ok','0','2'), ('32224','1068','3','Ended Late','0','3'), ('32225','1068','10','Unknown','0','4'), ('32226','1069','0','Available','0','0'), ('32227','1069','1','Unavailable','0','1'), ('32228','1069','2','Disabled','0','2'), ('32229','1069','3','Disable','0','3'), ('32230','1069','4','Discovering','0','4'), ('32231','1069','10','Unknown','0','5'), ('32232','1070','0','Ended OK','0','0'), ('32233','1070','1','Ended Not OK','0','1'), ('32234','1070','2','Wait User','0','2'), ('32235','1070','3','Wait Resource','0','3'), ('32236','1070','4','Wait Host','0','4'), ('32237','1070','5','Wait Workload','0','5'), ('32238','1070','6','Wait Condition','0','6'), ('32239','1070','7','Executing','0','7'), ('32240','1070','10','Unknown','0','8'), ('32241','1071','0','Command','0','0'), ('32242','1071','1','Script','0','1'), ('32243','1071','2','File Transfer','0','2'), ('32244','1071','3','File Watcher','0','3'), ('32245','1071','4','Database','0','4'), ('32246','1071','5','Hadoop','0','5'), ('32247','1071','6','Dummy','0','6'), ('32248','1071','7','Folder','0','7'), ('32249','1071','8','Job','0','8'), ('32250','1071','10','Unknown','0','9'), ('32251','1072','0','Down','0','0'), ('32252','1072','1','Up','0','1'), ('32253','1072','10','Unknown','0','2'), ('32254','1073','0','false','0','0'), ('32255','1073','1','true','0','1'), ('32256','1073','10','Unknown','0','2'), ('32257','1074','0','Available','0','0'), ('32258','1074','1','Degraded','0','1'), ('32259','1074','2','Unavailable','0','2'), ('32260','1074','3','Unknown','0','3'), ('32261','1075','0','Available','0','0'), ('32262','1075','1','Degraded','0','1'), ('32263','1075','2','Unavailable','0','2'), ('32264','1075','3','Unknown','0','3'), ('32265','1076','0','not available','0','0'), ('32266','1076','1','available','0','1'), ('32267','1076','2','unknown','0','2'), ('32268','1077','1','Up','0','0'), ('32269','1078','0','unknown','0','0'), ('32270','1078','1','available','0','1'), ('32271','1078','2','not available','0','2'), ('32272','1079','1','Up','0','0'), ('32273','1080','0','Down','0','0'), ('32274','1080','1','Up','0','1'), ('32275','1081','0','not available','0','0'), ('32276','1081','1','available','0','1'), ('32277','1081','2','unknown','0','2'), ('32278','1082','0','Down','0','0'), ('32279','1082','1','Up','0','1'), ('32280','1083','1','starting','0','0'), ('32281','1083','2','unhealthy','0','1'), ('32282','1083','3','healthy','0','2'), ('32283','1083','4','none','0','3'), ('32284','1084','-1','Error parsing date','0','0'), ('32285','1084','-62135596800','Null time','0','1'), ('32286','1085','1','Available','0','0'), ('32287','1085','2','Bound','0','1'), ('32288','1085','3','Failed','0','2'), ('32289','1085','4','Lost','0','3'), ('32290','1085','5','Pending','0','4'), ('32291','1085','6','Released','0','5'), ('32292','1086','0','Down','0','0'), ('32293','1086','1','Up','0','1'), ('32294','1087','0','Running','0','0'), ('32295','1087','1','Suspended','0','1'), ('32296','1087','2','Runnable','0','2'), ('32297','1087','3','Pending create','0','3'), ('32298','1087','4','Maintenance','0','4'), ('32299','1087','5','Failed','0','5'), ('32300','1087','6','Unknown state','0','6'), ('32301','1087','10','Data retrievement error','0','7'), ('32302','1088','0','Down','0','0'), ('32303','1088','1','Up','0','1'), ('32304','1089','0','Running','0','0'), ('32305','1089','1','Suspended','0','1'), ('32306','1089','2','Runnable','0','2'), ('32307','1089','3','Pending create','0','3'), ('32308','1089','4','Maintenance','0','4'), ('32309','1089','5','Failed','0','5'), ('32310','1089','6','Unknown state','0','6'), ('32311','1089','10','Data retrievement error','0','7'), ('32312','1090','0','Running','0','0'), ('32313','1090','1','Syncing','0','1'), ('32314','1090','2','Unsynced','0','2'), ('32315','1090','3','Stopped','0','3'), ('32316','1090','4','Error','0','4'), ('32317','1090','10','Unknown','0','5'), ('32318','1091','0','No','0','0'), ('32319','1091','1','Yes','0','1'), ('32320','1091','2','Connecting','0','2'), ('32321','1091','10','Unknown','0','3'), ('32322','1092','0','Down','0','0'), ('32323','1092','1','Up','0','1'), ('32324','1093','0','Running','0','0'), ('32325','1093','1','Suspended','0','1'), ('32326','1093','2','Runnable','0','2'), ('32327','1093','3','Pending create','0','3'), ('32328','1093','4','Maintenance','0','4'), ('32329','1093','5','Failed','0','5'), ('32330','1093','6','Unknown state','0','6'), ('32331','1093','10','Data retrievement error','0','7'), ('32332','1094','0','Running','0','0'), ('32333','1094','1','Syncing','0','1'), ('32334','1094','2','Unsynced','0','2'), ('32335','1094','3','Stopped','0','3'), ('32336','1094','4','Error','0','4'), ('32337','1094','10','Unknown','0','5'), ('32338','1095','0','Running','0','0'), ('32339','1095','1','Provisioning','0','1'), ('32340','1095','2','Staging','0','2'), ('32341','1095','3','Stopping','0','3'), ('32342','1095','4','Repairing','0','4'), ('32343','1095','5','Terminated','0','5'), ('32344','1095','6','Suspending','0','6'), ('32345','1095','7','Suspended','0','7'), ('32346','1095','10','Data retrievement error','0','8'), ('32347','1096','0','Passed','0','0'), ('32348','1096','1','Failed','0','1'), ('32349','1096','2','Unknown','0','2'), ('32350','1097','-2','null','0','0'), ('32351','146','-1','Inactive','0','0'), ('32352','145','-1','Undefined','0','0'), ('32353','1098','0','OK','0','0'), ('32354','1098','1','Insufficient data','0','1'), ('32355','1098','2','Alarm','0','2'), ('32356','1098','255','Unknown','0','3'), ('32357','1099','256','.25 vCPU','0','0'), ('32358','1099','512','.5 vCPU','0','1'), ('32359','1099','1024','1 vCPU','0','2'), ('32360','1099','2048','2 vCPU','0','3'), ('32361','1099','4096','4 vCPU','0','4'), ('32362','1099','8192','8 vCPU','0','5'), ('32363','1099','16384','16 vCPU','0','6'), ('32364','1099','32768','32 vCPU','0','7'), ('32365','1100','0','OK','0','0'), ('32366','1100','1','Insufficient data','0','1'), ('32367','1100','2','Alarm','0','2'), ('32368','1100','255','Unknown','0','3'), ('32369','1101','256','.25 vCPU','0','0'), ('32370','1101','512','.5 vCPU','0','1'), ('32371','1101','1024','1 vCPU','0','2'), ('32372','1101','2048','2 vCPU','0','3'), ('32373','1101','4096','4 vCPU','0','4'), ('32374','1101','8192','8 vCPU','0','5'), ('32375','1101','16384','16 vCPU','0','6'), ('32376','1101','32768','32 vCPU','0','7'), ('32377','1102','0','Unavailable','0','0'), ('32378','1102','1','Available','0','1'), ('32379','1103','null','N/A','0','0'), ('32380','1104','0','Down','0','0'), ('32381','1104','1','Up','0','1'), ('32382','1104','10','Unknown','0','2'), ('32383','1105','0','Disabled','0','0'), ('32384','1105','1','Enabled','0','1'), ('32385','1105','10','Unknown','0','2'), ('32386','1106','0','SHUTOFF','0','0'), ('32387','1106','1','ACTIVE','0','1'), ('32388','1106','2','PAUSED','0','2'), ('32389','1106','3','BUILD','0','3'), ('32390','1106','4','DELETED','0','4'), ('32391','1106','5','ERROR','0','5'), ('32392','1106','6','HARD_REBOOT','0','6'), ('32393','1106','7','MIGRATING','0','7'), ('32394','1106','8','PASSWORD','0','8'), ('32395','1106','9','REBOOT','0','9'), ('32396','1106','10','REBUILD','0','10'), ('32397','1106','11','RESCUE','0','11'), ('32398','1106','12','RESIZE','0','12'), ('32399','1106','13','REVERT_RESIZE','0','13'), ('32400','1106','14','SHELVED','0','14'), ('32401','1106','15','SHELVED_OFFLOADED','0','15'), ('32402','1106','16','SOFT_DELETED','0','16'), ('32403','1106','17','SUSPENDED','0','17'), ('32404','1106','18','UNKNOWN','0','18'), ('32405','1106','19','VERIFY_RESIZE','0','19'), ('32406','1106','30','Unknown','0','20'), ('32407','1107','0','Down','0','0'), ('32408','1107','1','Up','0','1'), ('32409','1108','0','Master','0','0'), ('32410','1108','1','Standby','0','1'), ('32411','1109','0','Down','0','0'), ('32412','1109','1','Up','0','1'), ('32413','1109','2','Master','0','2'), ('32414','1110','0','Down','0','0'), ('32415','1110','1','Up','0','1'), ('32416','1111','0','up','0','0'), ('32417','1111','1','down','0','1'), ('32418','1111','10','unknown','0','2'), ('32419','1112','0','green','0','0'), ('32420','1112','1','yellow','0','1'), ('32421','1112','2','red','0','2'), ('32422','1112','10','unknown','0','3'), ('32423','1113','-1','not used','0','0'), ('32424','1114','0','up','0','0'), ('32425','1114','1','down','0','1'), ('32426','1114','2','no pass','0','2'), ('32427','1114','10','unknown','0','3'), ('32428','1115','0','reachable','0','0'), ('32429','1115','1','unreachable','0','1'), ('32430','1115','2','auth-failed','0','2'), ('32431','1115','3','staging','0','3'), ('32432','1115','10','unknown','0','4'), ('32433','1116','-1','unknown','0','0'), ('32434','1117','0','valid','0','0'), ('32435','1117','1','invalid','0','1'), ('32436','1117','10','unknown','0','2'), ('32437','1118','0','Undetected','0','0'), ('32438','1118','1','Detected','0','1'), ('32439','1119','0','Unhealthy','0','0'), ('32440','1119','1','Healthy','0','1'), ('32441','1120','0','Down','0','0'), ('32442','1120','1','Up','0','1'), ('32443','1121','0','Unhealthy','0','0'), ('32444','1121','1','Healthy','0','1'), ('32445','1122','0','Leader','0','0'), ('32446','1122','1','Follower','0','1'), ('32447','1122','2','Candidate','0','2'), ('32448','1123','0','Down','0','0'), ('32449','1123','1','Up','0','1'), ('32450','1124','0','OK','0','0'), ('32451','1124','1','Warning','0','1'), ('32452','1124','2','Error','0','2'), ('32453','1124','3','Critical','0','3'), ('32454','1124','4','Information','0','4'), ('32455','1124','10','Unknown','0','5'), ('32456','1125','-1','Unavailable','0','0'), ('32457','1126','0','False','0','0'), ('32458','1126','1','True','0','1'), ('32459','1127','0','Today','0','0'), ('32460','1127','1','Yesterday','0','1'), ('32461','1127','-1','Never','0','2'), ('32462','1127','2-7','This week','3','3'), ('32463','1128','-3','Unlimited','0','0'), ('32464','1128','-99','Unknown','0','1'), ('32465','1129','0','Disabled','0','0'), ('32466','1129','1','Enabled','0','1'), ('32467','1130','0','accept','0','0'), ('32468','1130','1','deny','0','1'), ('32469','1130','2','ipsec','0','2'), ('32470','1130','10','unknown','0','3'), ('32471','1131','0','enable','0','0'), ('32472','1131','1','disable','0','1'), ('32473','1132','0','up','0','0'), ('32474','1132','1','down','0','1'), ('32475','1132','2','error','0','2'), ('32476','1132','10','unknown','0','3'), ('32477','1133','0','physical','0','0'), ('32478','1133','1','vlan','0','1'), ('32479','1133','2','aggregate','0','2'), ('32480','1133','3','redundant','0','3'), ('32481','1133','4','tunnel','0','4'), ('32482','1133','5','vdom-link','0','5'), ('32483','1133','6','loopback','0','6'), ('32484','1133','7','switch','0','7'), ('32485','1133','8','vap-switch','0','8'), ('32486','1133','9','wl-mesh','0','9'), ('32487','1133','10','fext-wan','0','10'), ('32488','1133','11','vxlan','0','11'), ('32489','1133','12','geneve','0','12'), ('32490','1133','13','hdlc','0','13'), ('32491','1133','14','switch-vlan','0','14'), ('32492','1133','15','emac-vlan','0','15'), ('32493','1133','16','ssl','0','16'), ('32494','1133','17','lan-extension','0','17'), ('32495','1133','30','unknown','0','18'), ('32496','1134','0','Activated','0','0'), ('32497','1134','1','Licensed','0','1'), ('32498','1134','2','Registered','0','2'), ('32499','1134','3','Evaluation License','0','3'), ('32500','1134','4','Free License','0','4'), ('32501','1134','5','Valid','0','5'), ('32502','1134','6','Activation Pending (View Confirmation Email)','0','6'), ('32503','1134','7','Error Logging In','0','7'), ('32504','1134','8','Not Activated','0','8'), ('32505','1134','9','Login in Progress','0','9'), ('32506','1134','10','Expired','0','10'), ('32507','1134','11','Expires Soon','0','11'), ('32508','1134','12','Free License (exhausted)','0','12'), ('32509','1134','13','Licensed (exhausted)','0','13'), ('32510','1134','14','Not Licensed','0','14'), ('32511','1134','15','Not Supported','0','15'), ('32512','1134','16','Not Registered','0','16'), ('32513','1134','17','Pending','0','17'), ('32514','1134','18','Unavailable','0','18'), ('32515','1134','19','Manual Update','0','19'), ('32516','1134','20','Push Update','0','20'), ('32517','1134','21','Scheduled Update','0','21'), ('32518','1134','22','Expired','0','22'), ('32519','1134','23','Expired','0','23'), ('32520','1134','24','Expires Soon','0','24'), ('32521','1134','25','Grace Period','0','25'), ('32522','1134','26','Invalid','0','26'), ('32523','1134','27','Validation in Progress','0','27'), ('32524','1134','28','Validation Overdue','0','28'), ('32525','1134','30','Unknown','0','29'), ('32526','1135','0','down','0','0'), ('32527','1135','1','up','0','1'), ('32528','1136','0','down','0','0'), ('32529','1136','1','up','0','1'), ('32530','1137','0','enable','0','0'), ('32531','1137','1','disable','0','1'), ('32532','1137','10','unknown','0','2'), ('32533','1138','1','up','0','0'), ('32534','1138','2','down','0','1'), ('32535','1138','3','testing','0','2'), ('32536','1138','4','unknown','0','3'), ('32537','1138','5','dormant','0','4'), ('32538','1138','6','notPresent','0','5'), ('32539','1138','7','lowerLayerDown','0','6'), ('32540','1139','1','other','0','0'), ('32541','1139','2','regular1822','0','1'), ('32542','1139','3','hdh1822','0','2'), ('32543','1139','4','ddnX25','0','3'), ('32544','1139','5','rfc877x25','0','4'), ('32545','1139','6','ethernetCsmacd','0','5'), ('32546','1139','7','iso88023Csmacd','0','6'), ('32547','1139','8','iso88024TokenBus','0','7'), ('32548','1139','9','iso88025TokenRing','0','8'), ('32549','1139','10','iso88026Man','0','9'), ('32550','1139','11','starLan','0','10'), ('32551','1139','12','proteon10Mbit','0','11'), ('32552','1139','13','proteon80Mbit','0','12'), ('32553','1139','14','hyperchannel','0','13'), ('32554','1139','15','fddi','0','14'), ('32555','1139','16','lapb','0','15'), ('32556','1139','17','sdlc','0','16'), ('32557','1139','18','ds1','0','17'), ('32558','1139','19','e1','0','18'), ('32559','1139','20','basicISDN','0','19'), ('32560','1139','21','primaryISDN','0','20'), ('32561','1139','22','propPointToPointSerial','0','21'), ('32562','1139','23','ppp','0','22'), ('32563','1139','24','softwareLoopback','0','23'), ('32564','1139','25','eon','0','24'), ('32565','1139','26','ethernet3Mbit','0','25'), ('32566','1139','27','nsip','0','26'), ('32567','1139','28','slip','0','27'), ('32568','1139','29','ultra','0','28'), ('32569','1139','30','ds3','0','29'), ('32570','1139','31','sip','0','30'), ('32571','1139','32','frameRelay','0','31'), ('32572','1139','33','rs232','0','32'), ('32573','1139','34','para','0','33'), ('32574','1139','35','arcnet','0','34'), ('32575','1139','36','arcnetPlus','0','35'), ('32576','1139','37','atm','0','36'), ('32577','1139','38','miox25','0','37'), ('32578','1139','39','sonet','0','38'), ('32579','1139','40','x25ple','0','39'), ('32580','1139','41','iso88022llc','0','40'), ('32581','1139','42','localTalk','0','41'), ('32582','1139','43','smdsDxi','0','42'), ('32583','1139','44','frameRelayService','0','43'), ('32584','1139','45','v35','0','44'), ('32585','1139','46','hssi','0','45'), ('32586','1139','47','hippi','0','46'), ('32587','1139','48','modem','0','47'), ('32588','1139','49','aal5','0','48'), ('32589','1139','50','sonetPath','0','49'), ('32590','1139','51','sonetVT','0','50'), ('32591','1139','52','smdsIcip','0','51'), ('32592','1139','53','propVirtual','0','52'), ('32593','1139','54','propMultiplexor','0','53'), ('32594','1139','55','ieee80212','0','54'), ('32595','1139','56','fibreChannel','0','55'), ('32596','1139','57','hippiInterface','0','56'), ('32597','1139','58','frameRelayInterconnect','0','57'), ('32598','1139','59','aflane8023','0','58'), ('32599','1139','60','aflane8025','0','59'), ('32600','1139','61','cctEmul','0','60'), ('32601','1139','62','fastEther','0','61'), ('32602','1139','63','isdn','0','62'), ('32603','1139','64','v11','0','63'), ('32604','1139','65','v36','0','64'), ('32605','1139','66','g703at64k','0','65'), ('32606','1139','67','g703at2mb','0','66'), ('32607','1139','68','qllc','0','67'), ('32608','1139','69','fastEtherFX','0','68'), ('32609','1139','70','channel','0','69'), ('32610','1139','71','ieee80211','0','70'), ('32611','1139','72','ibm370parChan','0','71'), ('32612','1139','73','escon','0','72'), ('32613','1139','74','dlsw','0','73'), ('32614','1139','75','isdns','0','74'), ('32615','1139','76','isdnu','0','75'), ('32616','1139','77','lapd','0','76'), ('32617','1139','78','ipSwitch','0','77'), ('32618','1139','79','rsrb','0','78'), ('32619','1139','80','atmLogical','0','79'), ('32620','1139','81','ds0','0','80'), ('32621','1139','82','ds0Bundle','0','81'), ('32622','1139','83','bsc','0','82'), ('32623','1139','84','async','0','83'), ('32624','1139','85','cnr','0','84'), ('32625','1139','86','iso88025Dtr','0','85'), ('32626','1139','87','eplrs','0','86'), ('32627','1139','88','arap','0','87'), ('32628','1139','89','propCnls','0','88'), ('32629','1139','90','hostPad','0','89'), ('32630','1139','91','termPad','0','90'), ('32631','1139','92','frameRelayMPI','0','91'), ('32632','1139','93','x213','0','92'), ('32633','1139','94','adsl','0','93'), ('32634','1139','95','radsl','0','94'), ('32635','1139','96','sdsl','0','95'), ('32636','1139','97','vdsl','0','96'), ('32637','1139','98','iso88025CRFPInt','0','97'), ('32638','1139','99','myrinet','0','98'), ('32639','1139','100','voiceEM','0','99'), ('32640','1139','101','voiceFXO','0','100'), ('32641','1139','102','voiceFXS','0','101'), ('32642','1139','103','voiceEncap','0','102'), ('32643','1139','104','voiceOverIp','0','103'), ('32644','1139','105','atmDxi','0','104'), ('32645','1139','106','atmFuni','0','105'), ('32646','1139','107','atmIma','0','106'), ('32647','1139','108','pppMultilinkBundle','0','107'), ('32648','1139','109','ipOverCdlc','0','108'), ('32649','1139','110','ipOverClaw','0','109'), ('32650','1139','111','stackToStack','0','110'), ('32651','1139','112','virtualIpAddress','0','111'), ('32652','1139','113','mpc','0','112'), ('32653','1139','114','ipOverAtm','0','113'), ('32654','1139','115','iso88025Fiber','0','114'), ('32655','1139','116','tdlc','0','115'), ('32656','1139','117','gigabitEthernet','0','116'), ('32657','1139','118','hdlc','0','117'), ('32658','1139','119','lapf','0','118'), ('32659','1139','120','v37','0','119'), ('32660','1139','121','x25mlp','0','120'), ('32661','1139','122','x25huntGroup','0','121'), ('32662','1139','123','trasnpHdlc','0','122'), ('32663','1139','124','interleave','0','123'), ('32664','1139','125','fast','0','124'), ('32665','1139','126','ip','0','125'), ('32666','1139','127','docsCableMaclayer','0','126'), ('32667','1139','128','docsCableDownstream','0','127'), ('32668','1139','129','docsCableUpstream','0','128'), ('32669','1139','130','a12MppSwitch','0','129'), ('32670','1139','131','tunnel','0','130'), ('32671','1139','132','coffee','0','131'), ('32672','1139','133','ces','0','132'), ('32673','1139','134','atmSubInterface','0','133'), ('32674','1139','135','l2vlan','0','134'), ('32675','1139','136','l3ipvlan','0','135'), ('32676','1139','137','l3ipxvlan','0','136'), ('32677','1139','138','digitalPowerline','0','137'), ('32678','1139','139','mediaMailOverIp','0','138'), ('32679','1139','140','dtm','0','139'), ('32680','1139','141','dcn','0','140'), ('32681','1139','142','ipForward','0','141'), ('32682','1139','143','msdsl','0','142'), ('32683','1139','144','ieee1394','0','143'), ('32684','1139','145','if-gsn','0','144'), ('32685','1139','146','dvbRccMacLayer','0','145'), ('32686','1139','147','dvbRccDownstream','0','146'), ('32687','1139','148','dvbRccUpstream','0','147'), ('32688','1139','149','atmVirtual','0','148'), ('32689','1139','150','mplsTunnel','0','149'), ('32690','1139','151','srp','0','150'), ('32691','1139','152','voiceOverAtm','0','151'), ('32692','1139','153','voiceOverFrameRelay','0','152'), ('32693','1139','154','idsl','0','153'), ('32694','1139','155','compositeLink','0','154'), ('32695','1139','156','ss7SigLink','0','155'), ('32696','1139','157','propWirelessP2P','0','156'), ('32697','1139','158','frForward','0','157'), ('32698','1139','159','rfc1483','0','158'), ('32699','1139','160','usb','0','159'), ('32700','1139','161','ieee8023adLag','0','160'), ('32701','1139','162','bgppolicyaccounting','0','161'), ('32702','1139','163','frf16MfrBundle','0','162'), ('32703','1139','164','h323Gatekeeper','0','163'), ('32704','1139','165','h323Proxy','0','164'), ('32705','1139','166','mpls','0','165'), ('32706','1139','167','mfSigLink','0','166'), ('32707','1139','168','hdsl2','0','167'), ('32708','1139','169','shdsl','0','168'), ('32709','1139','170','ds1FDL','0','169'), ('32710','1139','171','pos','0','170'), ('32711','1139','172','dvbAsiIn','0','171'), ('32712','1139','173','dvbAsiOut','0','172'), ('32713','1139','174','plc','0','173'), ('32714','1139','175','nfas','0','174'), ('32715','1139','176','tr008','0','175'), ('32716','1139','177','gr303RDT','0','176'), ('32717','1139','178','gr303IDT','0','177'), ('32718','1139','179','isup','0','178'), ('32719','1139','180','propDocsWirelessMaclayer','0','179'), ('32720','1139','181','propDocsWirelessDownstream','0','180'), ('32721','1139','182','propDocsWirelessUpstream','0','181'), ('32722','1139','183','hiperlan2','0','182'), ('32723','1139','184','propBWAp2Mp','0','183'), ('32724','1139','185','sonetOverheadChannel','0','184'), ('32725','1139','186','digitalWrapperOverheadChannel','0','185'), ('32726','1139','187','aal2','0','186'), ('32727','1139','188','radioMAC','0','187'), ('32728','1139','189','atmRadio','0','188'), ('32729','1139','190','imt','0','189'), ('32730','1139','191','mvl','0','190'), ('32731','1139','192','reachDSL','0','191'), ('32732','1139','193','frDlciEndPt','0','192'), ('32733','1139','194','atmVciEndPt','0','193'), ('32734','1139','195','opticalChannel','0','194'), ('32735','1139','196','opticalTransport','0','195'), ('32736','1139','197','propAtm','0','196'), ('32737','1139','198','voiceOverCable','0','197'), ('32738','1139','199','infiniband','0','198'), ('32739','1139','200','teLink','0','199'), ('32740','1139','201','q2931','0','200'), ('32741','1139','202','virtualTg','0','201'), ('32742','1139','203','sipTg','0','202'), ('32743','1139','204','sipSig','0','203'), ('32744','1139','205','docsCableUpstreamChannel','0','204'), ('32745','1139','206','econet','0','205'), ('32746','1139','207','pon155','0','206'), ('32747','1139','208','pon622','0','207'), ('32748','1139','209','bridge','0','208'), ('32749','1139','210','linegroup','0','209'), ('32750','1139','211','voiceEMFGD','0','210'), ('32751','1139','212','voiceFGDEANA','0','211'), ('32752','1139','213','voiceDID','0','212'), ('32753','1139','214','mpegTransport','0','213'), ('32754','1139','215','sixToFour','0','214'), ('32755','1139','216','gtp','0','215'), ('32756','1139','217','pdnEtherLoop1','0','216'), ('32757','1139','218','pdnEtherLoop2','0','217'), ('32758','1139','219','opticalChannelGroup','0','218'), ('32759','1139','220','homepna','0','219'), ('32760','1139','221','gfp','0','220'), ('32761','1139','222','ciscoISLvlan','0','221'), ('32762','1139','223','actelisMetaLOOP','0','222'), ('32763','1139','224','fcipLink','0','223'), ('32764','1139','225','rpr','0','224'), ('32765','1139','226','qam','0','225'), ('32766','1139','227','lmp','0','226'), ('32767','1139','228','cblVectaStar','0','227'), ('32768','1139','229','docsCableMCmtsDownstream','0','228'), ('32769','1139','230','adsl2','0','229'), ('32770','1139','231','macSecControlledIF','0','230'), ('32771','1139','232','macSecUncontrolledIF','0','231'), ('32772','1139','233','aviciOpticalEther','0','232'), ('32773','1139','234','atmbond','0','233'), ('32774','1139','235','voiceFGDOS','0','234'), ('32775','1139','236','mocaVersion1','0','235'), ('32776','1139','237','ieee80216WMAN','0','236'), ('32777','1139','238','adsl2plus','0','237'), ('32778','1139','239','dvbRcsMacLayer','0','238'), ('32779','1139','240','dvbTdm','0','239'), ('32780','1139','241','dvbRcsTdma','0','240'), ('32781','1139','242','x86Laps','0','241'), ('32782','1139','243','wwanPP','0','242'), ('32783','1139','244','wwanPP2','0','243'), ('32784','1139','245','voiceEBS','0','244'), ('32785','1139','246','ifPwType','0','245'), ('32786','1139','247','ilan','0','246'), ('32787','1139','248','pip','0','247'), ('32788','1139','249','aluELP','0','248'), ('32789','1139','250','gpon','0','249'), ('32790','1139','251','vdsl2','0','250'), ('32791','1139','252','capwapDot11Profile','0','251'), ('32792','1139','253','capwapDot11Bss','0','252'), ('32793','1139','254','capwapWtpVirtualRadio','0','253'), ('32794','1139','255','bits','0','254'), ('32795','1139','256','docsCableUpstreamRfPort','0','255'), ('32796','1139','257','cableDownstreamRfPort','0','256'), ('32797','1139','258','vmwareVirtualNic','0','257'), ('32798','1139','259','ieee802154','0','258'), ('32799','1139','260','otnOdu','0','259'), ('32800','1139','261','otnOtu','0','260'), ('32801','1139','262','ifVfiType','0','261'), ('32802','1139','263','g9981','0','262'), ('32803','1139','264','g9982','0','263'), ('32804','1139','265','g9983','0','264'), ('32805','1139','266','aluEpon','0','265'), ('32806','1139','267','aluEponOnu','0','266'), ('32807','1139','268','aluEponPhysicalUni','0','267'), ('32808','1139','269','aluEponLogicalLink','0','268'), ('32809','1139','270','aluGponOnu','0','269'), ('32810','1139','271','aluGponPhysicalUni','0','270'), ('32811','1139','272','vmwareNicTeam','0','271'), ('32812','1139','277','docsOfdmDownstream','0','272'), ('32813','1139','278','docsOfdmaUpstream','0','273'), ('32814','1139','279','gfast','0','274'), ('32815','1139','280','sdci','0','275'), ('32816','1139','281','xboxWireless','0','276'), ('32817','1139','282','fastdsl','0','277'), ('32818','1139','283','docsCableScte55d1FwdOob','0','278'), ('32819','1139','284','docsCableScte55d1RetOob','0','279'), ('32820','1139','285','docsCableScte55d2DsOob','0','280'), ('32821','1139','286','docsCableScte55d2UsOob','0','281'), ('32822','1139','287','docsCableNdf','0','282'), ('32823','1139','288','docsCableNdr','0','283'), ('32824','1139','289','ptm','0','284'), ('32825','1139','290','ghn','0','285'), ('32826','1140','0','down','0','0'), ('32827','1140','1','up','0','1'), ('32828','1141','0','not available','0','0'), ('32829','1141','1','available','0','1'), ('32830','1141','2','unknown','0','2'), ('32831','1142','0','False','0','0'), ('32832','1142','1','True','0','1'), ('32833','1143','-1','null','0','0'), ('32834','1144','1','complete','0','0'), ('32835','1144','2','cancelled','0','1'), ('32836','1144','3','new','0','2'), ('32837','1144','4','pending','0','3'), ('32838','1144','5','running','0','4'), ('32839','1144','6','failed','0','5'), ('32840','1144','7','error','0','6'), ('32841','1145','0','Disk','0','0'), ('32842','1145','1','Memory','0','1'), ('32843','1146','0','Disk','0','0'), ('32844','1146','1','Memory','0','1'), ('32845','1147','0','Physical','0','0'), ('32846','1147','1','Virtual','0','1'), ('32847','1147','2','OS','0','2'), ('32848','1147','3','PhysicallyPartitioned','0','3'), ('32849','1147','4','VirtuallyPartitioned','0','4'), ('32850','1147','5','DPU','0','5'), ('32851','1147','10','Unknown','0','6'), ('32852','1148','0','OK','0','0'), ('32853','1148','1','Fail','0','1'), ('32854','1148','2','Rebuild','0','2'), ('32855','1148','3','PredictiveFailureAnalysis','0','3'), ('32856','1148','4','Hotspare','0','4'), ('32857','1148','5','InACriticalArray','0','5'), ('32858','1148','6','InAFailedArray','0','6'), ('32859','1148','10','Unknown','0','7'), ('32860','1149','0','ManagementController','0','0'), ('32861','1149','1','EnclosureManager','0','1'), ('32862','1149','2','BMC','0','2'), ('32863','1149','10','Unknown','0','3'), ('32864','1150','0','HDD','0','0'), ('32865','1150','1','SSD','0','1'), ('32866','1150','10','Unknown','0','2'), ('32867','1151','0','RAID0','0','0'), ('32868','1151','1','RAID1','0','1'), ('32869','1151','2','RAID3','0','2'), ('32870','1151','3','RAID4','0','3'), ('32871','1151','4','RAID5','0','4'), ('32872','1151','5','RAID6','0','5'), ('32873','1151','6','RAID10','0','6'), ('32874','1151','7','RAID01','0','7'), ('32875','1151','8','RAID6TP','0','8'), ('32876','1151','9','RAID1E','0','9'), ('32877','1151','10','RAID50','0','10'), ('32878','1151','11','RAID60','0','11'), ('32879','1151','12','RAID00','0','12'), ('32880','1151','13','RAID10E','0','13'), ('32881','1151','14','RAID1Triple','0','14'), ('32882','1151','15','RAID10Triple','0','15'), ('32883','1151','16','None','0','16'), ('32884','1151','20','Unknown','0','17'), ('32885','1152','0','OK','0','0'), ('32886','1152','1','Warning','0','1'), ('32887','1152','2','Critical','0','2'), ('32888','1152','10','Unknown','0','3'), ('32889','1153','0','Offline','0','0'), ('32890','1153','1','Online','0','1'), ('32891','1154','0','WSFC node','0','0'), ('32892','1154','1','Disk witness','0','1'), ('32893','1154','2','File share witness','0','2'), ('32894','1154','3','Cloud Witness','0','3'), ('32895','1155','0','Unknown quorum state','0','0'), ('32896','1155','1','Normal quorum','0','1'), ('32897','1155','2','Forced quorum','0','2'), ('32898','1156','0','Node Majority','0','0'), ('32899','1156','1','Node and Disk Majority','0','1'), ('32900','1156','2','Node and File Share Majority','0','2'), ('32901','1156','3','No Majority: Disk Only','0','3'), ('32902','1156','4','Unknown Quorum','0','4'), ('32903','1156','5','Cloud Witness','0','5'), ('32904','1157','1','FULL','0','0'), ('32905','1157','2','BULK_LOGGED','0','1'), ('32906','1157','3','SIMPLE','0','2'), ('32907','1158','0','OK','0','0'), ('32908','1158','1','Insufficient data','0','1'), ('32909','1158','2','Alarm','0','2'), ('32910','1158','255','Unknown','0','3'), ('32911','1159','0','No','0','0'), ('32912','1159','1','Yes','0','1'), ('32913','1160','0','Disconnected','0','0'), ('32914','1160','1','Connected','0','1'), ('32915','1161','0','Not joined','0','0'), ('32916','1161','1','Joined, standalone instance','0','1'), ('32917','1161','2','Joined, failover cluster instance','0','2'), ('32918','1162','0','Pending failover','0','0'), ('32919','1162','1','Pending','0','1'), ('32920','1162','2','Online','0','2'), ('32921','1162','3','Offline','0','3'), ('32922','1162','4','Failed','0','4'), ('32923','1162','5','Failed, no quorum','0','5'), ('32924','1162','6','Replica is not local','0','6'), ('32925','1163','0','In progress','0','0'), ('32926','1163','1','Online','0','1'), ('32927','1163','2','Replica is not local','0','2'), ('32928','1164','0','Resolving','0','0'), ('32929','1164','1','Primary','0','1'), ('32930','1164','2','Secondary','0','2'), ('32931','1165','0','Not healthy','0','0'), ('32932','1165','1','Partially healthy','0','1'), ('32933','1165','2','Healthy','0','2'), ('32934','1166','0','ONLINE','0','0'), ('32935','1166','1','RESTORING','0','1'), ('32936','1166','2','RECOVERING','0','2'), ('32937','1166','3','RECOVERY_PENDING','0','3'), ('32938','1166','4','SUSPECT','0','4'), ('32939','1166','5','EMERGENCY','0','5'), ('32940','1166','6','OFFLINE','0','6'), ('32941','1166','7','COPYING','0','7'), ('32942','1166','10','OFFLINE_SECONDARY','0','8'), ('32943','1167','0','Failed','0','0'), ('32944','1167','1','Succeeded','0','1'), ('32945','1167','2','Retry','0','2'), ('32946','1167','3','Canceled','0','3'), ('32947','1167','4','Running','0','4'), ('32948','1167','5','Unknown','0','5'), ('32949','1168','0','Database is inaccessible or is not mirrored','0','0'), ('32950','1168','1','Principal','0','1'), ('32951','1168','2','Mirror','0','2'), ('32952','1169','0','Suspended','0','0'), ('32953','1169','1','Disconnected from the other partner','0','1'), ('32954','1169','2','Synchronizing','0','2'), ('32955','1169','3','Pending failover','0','3'), ('32956','1169','4','Synchronized','0','4'), ('32957','1169','5','The partners are not synchronized. Failover is not possible now.','0','5'), ('32958','1169','6','The partners are synchronized. Failover is potentially possible.','0','6'), ('32959','1169','7','Database is inaccessible or is not mirrored','0','7'), ('32960','1170','0','Offline','0','0'), ('32961','1170','1','Online','0','1'), ('32962','1171','0','WSFC node','0','0'), ('32963','1171','1','Disk witness','0','1'), ('32964','1171','2','File share witness','0','2'), ('32965','1171','3','Cloud Witness','0','3'), ('32966','1172','0','Unknown quorum state','0','0'), ('32967','1172','1','Normal quorum','0','1'), ('32968','1172','2','Forced quorum','0','2'), ('32969','1173','0','Node Majority','0','0'), ('32970','1173','1','Node and Disk Majority','0','1'), ('32971','1173','2','Node and File Share Majority','0','2'), ('32972','1173','3','No Majority: Disk Only','0','3'), ('32973','1173','4','Unknown Quorum','0','4'), ('32974','1173','5','Cloud Witness','0','5'), ('32975','1174','1','FULL','0','0'), ('32976','1174','2','BULK_LOGGED','0','1'), ('32977','1174','3','SIMPLE','0','2'), ('32978','1175','0','Unknown state','0','0'), ('32979','1175','1','Off [asynchronous]','0','1'), ('32980','1175','2','Full [synchronous]','0','2'), ('32981','1175','3','Database is inaccessible or is not mirrored','0','3'), ('32982','1176','0','Unknown','0','0'), ('32983','1176','1','Connected','0','1'), ('32984','1176','2','Disconnected','0','2'), ('32985','1176','3','No witness exists','0','3'), ('32986','1177','0','Down','0','0'), ('32987','1177','1','Up','0','1'), ('32988','1178','0','False','0','0'), ('32989','1178','1','True','0','1'), ('32990','1179','0','INVALID','0','0'), ('32991','1179','1','QUEUED','0','1'), ('32992','1179','2','INIT','0','2'), ('32993','1179','3','BOOTSTRAPPING','0','3'), ('32994','1179','4','VPC PEERING','0','4'), ('32995','1179','5','NETWORK CREATING','0','5'), ('32996','1179','6','PROVISIONING','0','6'), ('32997','1179','7','CONFIGURING','0','7'), ('32998','1179','8','CREATING LB','0','8'), ('32999','1179','9','UPDATING LB','0','9'), ('33000','1179','10','ACTIVE','0','10'), ('33001','1179','11','PAUSING','0','11'), ('33002','1179','12','PAUSED','0','12'), ('33003','1179','13','RESUMING','0','13'), ('33004','1179','14','UPDATING','0','14'), ('33005','1179','15','MAINTENANCE','0','15'), ('33006','1179','16','RESTORE','0','16'), ('33007','1179','17','FAILED','0','17'), ('33008','1179','18','CREATE FAILED','0','18'), ('33009','1179','19','DELETING','0','19'), ('33010','1179','20','STARTING NODE','0','20'), ('33011','1179','21','STOPPING NODE','0','21'), ('33012','1179','22','REBOOTING NODE','0','22'), ('33013','1179','23','CREATE READ REPLICA FAILED','0','23'), ('33014','1179','24','DELETE READ REPLICA FAILED','0','24'), ('33015','1179','25','DELETE CLUSTER FAILED','0','25'), ('33016','1179','26','EDIT CLUSTER FAILED','0','26'), ('33017','1179','27','EDIT READ REPLICA FAILED','0','27'), ('33018','1179','28','PAUSE CLUSTER FAILED','0','28'), ('33019','1179','29','RESUME CLUSTER FAILED','0','29'), ('33020','1179','30','RESTORE BACKUP FAILED','0','30'), ('33021','1179','31','CERTIFICATE ROTATION FAILED','0','31'), ('33022','1179','32','UPGRADE CLUSTER FAILED','0','32'), ('33023','1179','33','UPGRADE CLUSTER GFLAGS FAILED','0','33'), ('33024','1179','34','UPGRADE CLUSTER OS FAILED','0','34'), ('33025','1179','35','UPGRADE CLUSTER SOFTWARE FAILED','0','35'), ('33026','1179','36','START NODE FAILED','0','36'), ('33027','1179','37','STOP NODE FAILED','0','37'), ('33028','1179','38','REBOOT NODE FAILED','0','38'), ('33029','1179','39','CONFIGURE CMK','0','39'), ('33030','1179','40','ENABLING CMK','0','40'), ('33031','1179','41','DISABLING CMK','0','41'), ('33032','1179','42','UPDATING CMK','0','42'), ('33033','1179','43','ROTATING CMK','0','43'), ('33034','1179','44','STOPPING METRICS EXPORTER','0','44'), ('33035','1179','45','STARTING METRICS EXPORTER','0','45'), ('33036','1179','46','CONFIGURING METRICS EXPORTER','0','46'), ('33037','1179','47','STOP METRICS EXPORTER FAILED','0','47'), ('33038','1179','48','START METRICS EXPORTER FAILED','0','48'), ('33039','1179','49','CONFIGURE METRICS EXPORTER FAILED','0','49'), ('33040','1179','50','REMOVING METRICS EXPORTER','0','50'), ('33041','1179','51','REMOVE METRICS EXPORTER FAILED','0','51'), ('33042','1179','60','UNKNOWN','0','52'), ('33043','1180','0','SYNCHRONOUS','0','0'), ('33044','1180','1','GEO_PARTITIONED','0','1'), ('33045','1181','0','HEALTHY','0','0'), ('33046','1181','1','NEEDS ATTENTION','0','1'), ('33047','1181','2','UNHEALTHY','0','2'), ('33048','1181','3','UNKNOWN','0','3'), ('33049','1182','0','YSQL','0','0'), ('33050','1182','1','YCQL','0','1'), ('33051','1183','0','Down','0','0'), ('33052','1183','1','Up','0','1'), ('33053','1184','0','Ok','0','0'), ('33054','1184','1','Out of range','0','1'), ('33055','1184','2','Reading error','0','2'), ('33056','1185','0','Not initialized','0','0'), ('33057','1185','1','Initialized','0','1'), ('33058','1185','2','Established','0','2'), ('33059','1185','3','Error','0','3'), ('33060','1185','4','Unknown','0','4'), ('33061','1186','1','up','0','0'), ('33062','1186','2','down','0','1'), ('33063','1186','3','testing','0','2'), ('33064','1186','4','unknown','0','3'), ('33065','1186','5','dormant','0','4'), ('33066','1186','6','notPresent','0','5'), ('33067','1186','7','lowerLayerDown','0','6'), ('33068','1187','1','other','0','0'), ('33069','1187','2','regular1822','0','1'), ('33070','1187','3','hdh1822','0','2'), ('33071','1187','4','ddnX25','0','3'), ('33072','1187','5','rfc877x25','0','4'), ('33073','1187','6','ethernetCsmacd','0','5'), ('33074','1187','7','iso88023Csmacd','0','6'), ('33075','1187','8','iso88024TokenBus','0','7'), ('33076','1187','9','iso88025TokenRing','0','8'), ('33077','1187','10','iso88026Man','0','9'), ('33078','1187','11','starLan','0','10'), ('33079','1187','12','proteon10Mbit','0','11'), ('33080','1187','13','proteon80Mbit','0','12'), ('33081','1187','14','hyperchannel','0','13'), ('33082','1187','15','fddi','0','14'), ('33083','1187','16','lapb','0','15'), ('33084','1187','17','sdlc','0','16'), ('33085','1187','18','ds1','0','17'), ('33086','1187','19','e1','0','18'), ('33087','1187','20','basicISDN','0','19'), ('33088','1187','21','primaryISDN','0','20'), ('33089','1187','22','propPointToPointSerial','0','21'), ('33090','1187','23','ppp','0','22'), ('33091','1187','24','softwareLoopback','0','23'), ('33092','1187','25','eon','0','24'), ('33093','1187','26','ethernet3Mbit','0','25'), ('33094','1187','27','nsip','0','26'), ('33095','1187','28','slip','0','27'), ('33096','1187','29','ultra','0','28'), ('33097','1187','30','ds3','0','29'), ('33098','1187','31','sip','0','30'), ('33099','1187','32','frameRelay','0','31'), ('33100','1187','33','rs232','0','32'), ('33101','1187','34','para','0','33'), ('33102','1187','35','arcnet','0','34'), ('33103','1187','36','arcnetPlus','0','35'), ('33104','1187','37','atm','0','36'), ('33105','1187','38','miox25','0','37'), ('33106','1187','39','sonet','0','38'), ('33107','1187','40','x25ple','0','39'), ('33108','1187','41','iso88022llc','0','40'), ('33109','1187','42','localTalk','0','41'), ('33110','1187','43','smdsDxi','0','42'), ('33111','1187','44','frameRelayService','0','43'), ('33112','1187','45','v35','0','44'), ('33113','1187','46','hssi','0','45'), ('33114','1187','47','hippi','0','46'), ('33115','1187','48','modem','0','47'), ('33116','1187','49','aal5','0','48'), ('33117','1187','50','sonetPath','0','49'), ('33118','1187','51','sonetVT','0','50'), ('33119','1187','52','smdsIcip','0','51'), ('33120','1187','53','propVirtual','0','52'), ('33121','1187','54','propMultiplexor','0','53'), ('33122','1187','55','ieee80212','0','54'), ('33123','1187','56','fibreChannel','0','55'), ('33124','1187','57','hippiInterface','0','56'), ('33125','1187','58','frameRelayInterconnect','0','57'), ('33126','1187','59','aflane8023','0','58'), ('33127','1187','60','aflane8025','0','59'), ('33128','1187','61','cctEmul','0','60'), ('33129','1187','62','fastEther','0','61'), ('33130','1187','63','isdn','0','62'), ('33131','1187','64','v11','0','63'), ('33132','1187','65','v36','0','64'), ('33133','1187','66','g703at64k','0','65'), ('33134','1187','67','g703at2mb','0','66'), ('33135','1187','68','qllc','0','67'), ('33136','1187','69','fastEtherFX','0','68'), ('33137','1187','70','channel','0','69'), ('33138','1187','71','ieee80211','0','70'), ('33139','1187','72','ibm370parChan','0','71'), ('33140','1187','73','escon','0','72'), ('33141','1187','74','dlsw','0','73'), ('33142','1187','75','isdns','0','74'), ('33143','1187','76','isdnu','0','75'), ('33144','1187','77','lapd','0','76'), ('33145','1187','78','ipSwitch','0','77'), ('33146','1187','79','rsrb','0','78'), ('33147','1187','80','atmLogical','0','79'), ('33148','1187','81','ds0','0','80'), ('33149','1187','82','ds0Bundle','0','81'), ('33150','1187','83','bsc','0','82'), ('33151','1187','84','async','0','83'), ('33152','1187','85','cnr','0','84'), ('33153','1187','86','iso88025Dtr','0','85'), ('33154','1187','87','eplrs','0','86'), ('33155','1187','88','arap','0','87'), ('33156','1187','89','propCnls','0','88'), ('33157','1187','90','hostPad','0','89'), ('33158','1187','91','termPad','0','90'), ('33159','1187','92','frameRelayMPI','0','91'), ('33160','1187','93','x213','0','92'), ('33161','1187','94','adsl','0','93'), ('33162','1187','95','radsl','0','94'), ('33163','1187','96','sdsl','0','95'), ('33164','1187','97','vdsl','0','96'), ('33165','1187','98','iso88025CRFPInt','0','97'), ('33166','1187','99','myrinet','0','98'), ('33167','1187','100','voiceEM','0','99'), ('33168','1187','101','voiceFXO','0','100'), ('33169','1187','102','voiceFXS','0','101'), ('33170','1187','103','voiceEncap','0','102'), ('33171','1187','104','voiceOverIp','0','103'), ('33172','1187','105','atmDxi','0','104'), ('33173','1187','106','atmFuni','0','105'), ('33174','1187','107','atmIma','0','106'), ('33175','1187','108','pppMultilinkBundle','0','107'), ('33176','1187','109','ipOverCdlc','0','108'), ('33177','1187','110','ipOverClaw','0','109'), ('33178','1187','111','stackToStack','0','110'), ('33179','1187','112','virtualIpAddress','0','111'), ('33180','1187','113','mpc','0','112'), ('33181','1187','114','ipOverAtm','0','113'), ('33182','1187','115','iso88025Fiber','0','114'), ('33183','1187','116','tdlc','0','115'), ('33184','1187','117','gigabitEthernet','0','116'), ('33185','1187','118','hdlc','0','117'), ('33186','1187','119','lapf','0','118'), ('33187','1187','120','v37','0','119'), ('33188','1187','121','x25mlp','0','120'), ('33189','1187','122','x25huntGroup','0','121'), ('33190','1187','123','trasnpHdlc','0','122'), ('33191','1187','124','interleave','0','123'), ('33192','1187','125','fast','0','124'), ('33193','1187','126','ip','0','125'), ('33194','1187','127','docsCableMaclayer','0','126'), ('33195','1187','128','docsCableDownstream','0','127'), ('33196','1187','129','docsCableUpstream','0','128'), ('33197','1187','130','a12MppSwitch','0','129'), ('33198','1187','131','tunnel','0','130'), ('33199','1187','132','coffee','0','131'), ('33200','1187','133','ces','0','132'), ('33201','1187','134','atmSubInterface','0','133'), ('33202','1187','135','l2vlan','0','134'), ('33203','1187','136','l3ipvlan','0','135'), ('33204','1187','137','l3ipxvlan','0','136'), ('33205','1187','138','digitalPowerline','0','137'), ('33206','1187','139','mediaMailOverIp','0','138'), ('33207','1187','140','dtm','0','139'), ('33208','1187','141','dcn','0','140'), ('33209','1187','142','ipForward','0','141'), ('33210','1187','143','msdsl','0','142'), ('33211','1187','144','ieee1394','0','143'), ('33212','1187','145','if-gsn','0','144'), ('33213','1187','146','dvbRccMacLayer','0','145'), ('33214','1187','147','dvbRccDownstream','0','146'), ('33215','1187','148','dvbRccUpstream','0','147'), ('33216','1187','149','atmVirtual','0','148'), ('33217','1187','150','mplsTunnel','0','149'), ('33218','1187','151','srp','0','150'), ('33219','1187','152','voiceOverAtm','0','151'), ('33220','1187','153','voiceOverFrameRelay','0','152'), ('33221','1187','154','idsl','0','153'), ('33222','1187','155','compositeLink','0','154'), ('33223','1187','156','ss7SigLink','0','155'), ('33224','1187','157','propWirelessP2P','0','156'), ('33225','1187','158','frForward','0','157'), ('33226','1187','159','rfc1483','0','158'), ('33227','1187','160','usb','0','159'), ('33228','1187','161','ieee8023adLag','0','160'), ('33229','1187','162','bgppolicyaccounting','0','161'), ('33230','1187','163','frf16MfrBundle','0','162'), ('33231','1187','164','h323Gatekeeper','0','163'), ('33232','1187','165','h323Proxy','0','164'), ('33233','1187','166','mpls','0','165'), ('33234','1187','167','mfSigLink','0','166'), ('33235','1187','168','hdsl2','0','167'), ('33236','1187','169','shdsl','0','168'), ('33237','1187','170','ds1FDL','0','169'), ('33238','1187','171','pos','0','170'), ('33239','1187','172','dvbAsiIn','0','171'), ('33240','1187','173','dvbAsiOut','0','172'), ('33241','1187','174','plc','0','173'), ('33242','1187','175','nfas','0','174'), ('33243','1187','176','tr008','0','175'), ('33244','1187','177','gr303RDT','0','176'), ('33245','1187','178','gr303IDT','0','177'), ('33246','1187','179','isup','0','178'), ('33247','1187','180','propDocsWirelessMaclayer','0','179'), ('33248','1187','181','propDocsWirelessDownstream','0','180'), ('33249','1187','182','propDocsWirelessUpstream','0','181'), ('33250','1187','183','hiperlan2','0','182'), ('33251','1187','184','propBWAp2Mp','0','183'), ('33252','1187','185','sonetOverheadChannel','0','184'), ('33253','1187','186','digitalWrapperOverheadChannel','0','185'), ('33254','1187','187','aal2','0','186'), ('33255','1187','188','radioMAC','0','187'), ('33256','1187','189','atmRadio','0','188'), ('33257','1187','190','imt','0','189'), ('33258','1187','191','mvl','0','190'), ('33259','1187','192','reachDSL','0','191'), ('33260','1187','193','frDlciEndPt','0','192'), ('33261','1187','194','atmVciEndPt','0','193'), ('33262','1187','195','opticalChannel','0','194'), ('33263','1187','196','opticalTransport','0','195'), ('33264','1187','197','propAtm','0','196'), ('33265','1187','198','voiceOverCable','0','197'), ('33266','1187','199','infiniband','0','198'), ('33267','1187','200','teLink','0','199'), ('33268','1187','201','q2931','0','200'), ('33269','1187','202','virtualTg','0','201'), ('33270','1187','203','sipTg','0','202'), ('33271','1187','204','sipSig','0','203'), ('33272','1187','205','docsCableUpstreamChannel','0','204'), ('33273','1187','206','econet','0','205'), ('33274','1187','207','pon155','0','206'), ('33275','1187','208','pon622','0','207'), ('33276','1187','209','bridge','0','208'), ('33277','1187','210','linegroup','0','209'), ('33278','1187','211','voiceEMFGD','0','210'), ('33279','1187','212','voiceFGDEANA','0','211'), ('33280','1187','213','voiceDID','0','212'), ('33281','1187','214','mpegTransport','0','213'), ('33282','1187','215','sixToFour','0','214'), ('33283','1187','216','gtp','0','215'), ('33284','1187','217','pdnEtherLoop1','0','216'), ('33285','1187','218','pdnEtherLoop2','0','217'), ('33286','1187','219','opticalChannelGroup','0','218'), ('33287','1187','220','homepna','0','219'), ('33288','1187','221','gfp','0','220'), ('33289','1187','222','ciscoISLvlan','0','221'), ('33290','1187','223','actelisMetaLOOP','0','222'), ('33291','1187','224','fcipLink','0','223'), ('33292','1187','225','rpr','0','224'), ('33293','1187','226','qam','0','225'), ('33294','1187','227','lmp','0','226'), ('33295','1187','228','cblVectaStar','0','227'), ('33296','1187','229','docsCableMCmtsDownstream','0','228'), ('33297','1187','230','adsl2','0','229'), ('33298','1187','231','macSecControlledIF','0','230'), ('33299','1187','232','macSecUncontrolledIF','0','231'), ('33300','1187','233','aviciOpticalEther','0','232'), ('33301','1187','234','atmbond','0','233'), ('33302','1187','235','voiceFGDOS','0','234'), ('33303','1187','236','mocaVersion1','0','235'), ('33304','1187','237','ieee80216WMAN','0','236'), ('33305','1187','238','adsl2plus','0','237'), ('33306','1187','239','dvbRcsMacLayer','0','238'), ('33307','1187','240','dvbTdm','0','239'), ('33308','1187','241','dvbRcsTdma','0','240'), ('33309','1187','242','x86Laps','0','241'), ('33310','1187','243','wwanPP','0','242'), ('33311','1187','244','wwanPP2','0','243'), ('33312','1187','245','voiceEBS','0','244'), ('33313','1187','246','ifPwType','0','245'), ('33314','1187','247','ilan','0','246'), ('33315','1187','248','pip','0','247'), ('33316','1187','249','aluELP','0','248'), ('33317','1187','250','gpon','0','249'), ('33318','1187','251','vdsl2','0','250'), ('33319','1187','252','capwapDot11Profile','0','251'), ('33320','1187','253','capwapDot11Bss','0','252'), ('33321','1187','254','capwapWtpVirtualRadio','0','253'), ('33322','1187','255','bits','0','254'), ('33323','1187','256','docsCableUpstreamRfPort','0','255'), ('33324','1187','257','cableDownstreamRfPort','0','256'), ('33325','1187','258','vmwareVirtualNic','0','257'), ('33326','1187','259','ieee802154','0','258'), ('33327','1187','260','otnOdu','0','259'), ('33328','1187','261','otnOtu','0','260'), ('33329','1187','262','ifVfiType','0','261'), ('33330','1187','263','g9981','0','262'), ('33331','1187','264','g9982','0','263'), ('33332','1187','265','g9983','0','264'), ('33333','1187','266','aluEpon','0','265'), ('33334','1187','267','aluEponOnu','0','266'), ('33335','1187','268','aluEponPhysicalUni','0','267'), ('33336','1187','269','aluEponLogicalLink','0','268'), ('33337','1187','270','aluGponOnu','0','269'), ('33338','1187','271','aluGponPhysicalUni','0','270'), ('33339','1187','272','vmwareNicTeam','0','271'), ('33340','1187','277','docsOfdmDownstream','0','272'), ('33341','1187','278','docsOfdmaUpstream','0','273'), ('33342','1187','279','gfast','0','274'), ('33343','1187','280','sdci','0','275'), ('33344','1187','281','xboxWireless','0','276'), ('33345','1187','282','fastdsl','0','277'), ('33346','1187','283','docsCableScte55d1FwdOob','0','278'), ('33347','1187','284','docsCableScte55d1RetOob','0','279'), ('33348','1187','285','docsCableScte55d2DsOob','0','280'), ('33349','1187','286','docsCableScte55d2UsOob','0','281'), ('33350','1187','287','docsCableNdf','0','282'), ('33351','1187','288','docsCableNdr','0','283'), ('33352','1187','289','ptm','0','284'), ('33353','1187','290','ghn','0','285'), ('33354','1188','0','Up','0','0'), ('33355','1188','1','Down','0','1'), ('33356','1188','2','Unknown','0','2'), ('33357','1189','0','Down','0','0'), ('33358','1189','1','Up','0','1'), ('33359','1190','0','primary','0','0'), ('33360','1190','1','backup','0','1'), ('33361','1190','2','on-demand','0','2'), ('33362','1190','3','unknown','0','3'), ('33363','1191','0','unknown','0','0'), ('33364','1191','1','regular','0','1'), ('33365','1191','2','daip','0','2'), ('33366','1191','3','robo','0','3'), ('33367','1192','0','unknown','0','0'), ('33368','1192','1','alive','0','1'), ('33369','1192','2','dead','0','2'), ('33370','1193','0','unknown','0','0'), ('33371','1193','3','active','0','1'), ('33372','1193','4','destroy','0','2'), ('33373','1193','129','idle','0','3'), ('33374','1193','130','phase1','0','4'), ('33375','1193','131','down','0','5'), ('33376','1193','132','init','0','6'), ('33377','1194','0','unknown','0','0'), ('33378','1194','1','regular','0','1'), ('33379','1194','2','permanent','0','2'), ('33380','1195','0','not available','0','0'), ('33381','1195','1','available','0','1'), ('33382','1195','2','unknown','0','2'), ('33383','1196','0','Unknown','0','0'), ('33384','1196','1','Provisioning','0','1'), ('33385','1196','2','Available','0','2'), ('33386','1196','3','Stopping','0','3'), ('33387','1196','4','Stopped','0','4'), ('33388','1196','5','Starting','0','5'), ('33389','1196','6','Terminating','0','6'), ('33390','1196','7','Terminated','0','7'), ('33391','1196','8','Restore in progress','0','8'), ('33392','1196','9','Restore failed','0','9'), ('33393','1196','10','Backup in progress','0','10'), ('33394','1196','11','Scale in progress','0','11'), ('33395','1196','12','Available needs attention','0','12'), ('33396','1196','13','Updating','0','13'), ('33397','1196','14','Maintenance in progress','0','14'), ('33398','1196','15','Restarting','0','15'), ('33399','1196','16','Recreating','0','16'), ('33400','1196','17','Role change in progress','0','17'), ('33401','1196','18','Upgrading','0','18'), ('33402','1196','19','Unavailable','0','19'), ('33403','1196','20','Inaccessible','0','20'), ('33404','1196','21','Standby','0','21'), ('33405','1197','0','Unavailable','0','0'), ('33406','1197','1','Available','0','1'), ('33407','1198','0','Unknown','0','0'), ('33408','1198','1','Provisioning','0','1'), ('33409','1198','2','Restoring','0','2'), ('33410','1198','3','Available','0','3'), ('33411','1198','4','Terminating','0','4'), ('33412','1198','5','Terminated','0','5'), ('33413','1198','6','Faulty','0','6'), ('33414','1199','0','Unknown','0','0'), ('33415','1199','1','Provisioning','0','1'), ('33416','1199','2','Restoring','0','2'), ('33417','1199','3','Available','0','3'), ('33418','1199','4','Terminating','0','4'), ('33419','1199','5','Terminated','0','5'), ('33420','1199','6','Faulty','0','6'), ('33421','1200','0','Available','0','0'), ('33422','1200','1','Unavailable','0','1'), ('33423','1201','0','Unknown','0','0'), ('33424','1201','1','Moving','0','1'), ('33425','1201','2','Provisioning','0','2'), ('33426','1201','3','Running','0','3'), ('33427','1201','4','Starting','0','4'), ('33428','1201','5','Stopping','0','5'), ('33429','1201','6','Stopped','0','6'), ('33430','1201','7','Creating image','0','7'), ('33431','1201','8','Terminating','0','8'), ('33432','1201','9','Terminated','0','9'), ('33433','1202','0','False','0','0'), ('33434','1202','1','True','0','1'), ('33435','1203','0','Unknown','0','0'), ('33436','1203','1','Attaching','0','1'), ('33437','1203','2','Attached','0','2'), ('33438','1203','3','Detaching','0','3'), ('33439','1203','4','Detached','0','4'), ('33440','1204','0','Unknown','0','0'), ('33441','1204','1','Provisioning','0','1'), ('33442','1204','2','Available','0','2'), ('33443','1204','3','Terminating','0','3'), ('33444','1204','4','Terminated','0','4'), ('33445','1204','5','Updating','0','5'), ('33446','1205','1','none','0','0'), ('33447','1205','2','hub','0','1'), ('33448','1205','3','leastConnections','0','2'), ('33449','1205','4','roundRobin','0','3'), ('33450','1205','5','weightedRoundRobin','0','4'), ('33451','1205','6','random','0','5'), ('33452','1205','7','ipBased','0','6'), ('33453','1205','8','ipPortBased','0','7'), ('33454','1206','1','disabled','0','0'), ('33455','1206','2','enabled','0','1'), ('33456','1207','0','unsynchronized','0','0'), ('33457','1207','1','synchronized','0','1'), ('33458','1208','1','standalone','0','0'), ('33459','1208','2','activeActive','0','1'), ('33460','1208','3','activePassive','0','2'), ('33461','1209','0','alive','0','0'), ('33462','1209','1','dead','0','1'), ('33463','1210','1','ipv4','0','0'), ('33464','1210','2','ipv6','0','1'), ('33465','1211','1','disabled','0','0'), ('33466','1211','2','enabled','0','1'), ('33467','1212','0','false','0','0'), ('33468','1212','1','true','0','1'), ('33469','1213','1','primary','0','0'), ('33470','1213','2','secondary','0','1'), ('33471','1213','3','standalone','0','2'), ('33472','1214','1','nat','0','0'), ('33473','1214','2','transparent','0','1'), ('33474','1215','1','down','0','0'), ('33475','1215','2','up','0','1'), ('33476','1216','0','other','0','0'), ('33477','1216','1','discovered','0','1'), ('33478','1216','2','disable','0','2'), ('33479','1216','3','enable','0','3'), ('33480','1217','0','other','0','0'), ('33481','1217','1','2Ghz','0','1'), ('33482','1217','2','5Ghz','0','2'), ('33483','1218','0','other','0','0'), ('33484','1218','1','offLine','0','1'), ('33485','1218','2','onLine','0','2'), ('33486','1218','3','downloadingImage','0','3'), ('33487','1218','4','connectedImage','0','4'), ('33492','1220','0','OK','0','0'), ('33493','1220','1','Insufficient data','0','1'), ('33494','1220','2','Alarm','0','2'), ('33495','1220','255','Unknown','0','3'), ('33496','1221','0','Down','0','0'), ('33497','1221','1','Up','0','1'), ('33498','1222','-1','Limitless','0','0'), ('33499','1223','0','Inactive','0','0'), ('33500','1223','1','Running','0','1'), ('33501','1224','0','Available','0','0'), ('33502','1224','1','Degraded','0','1'), ('33503','1224','2','Unavailable','0','2'), ('33504','1224','3','Unknown','0','3'), ('33505','1225','0','OK','0','0'), ('33506','1225','1','Insufficient data','0','1'), ('33507','1225','2','Alarm','0','2'), ('33508','1225','255','Unknown','0','3'), ('33509','1226','0','false','0','0'), ('33510','1226','1','true','0','1'), ('33511','1227','0','success','0','0'), ('33512','1227','1','failure','0','1'), ('33513','1227','2','neutral','0','2'), ('33514','1227','3','cancelled','0','3'), ('33515','1227','4','skipped','0','4'), ('33516','1227','5','timed_out','0','5'), ('33517','1227','6','action_required','0','6'), ('33518','1227','10','unknown','0','7'), ('33519','1228','0','queued','0','0'), ('33520','1228','1','in_progress','0','1'), ('33521','1228','2','completed','0','2'), ('33522','1228','10','unknown','0','3'), ('33523','1229','0','Operational','0','0'), ('33524','1229','1','Investigating','0','1'), ('33525','1229','2','Restoring','0','2'), ('33526','1229','3','Verifying','0','3'), ('33527','1229','4','Restored','0','4'), ('33528','1229','5','Review published','0','5'), ('33529','1229','6','Degraded','0','6'), ('33530','1229','7','Interruption','0','7'), ('33531','1229','8','Extended recovery','0','8'), ('33532','1229','9','False positive','0','9'), ('33533','1229','10','Investigation suspended','0','10'), ('33534','1229','11','Unknown','0','11'), ('33535','1230','0','Green','0','0'), ('33536','1230','1','Yellow','0','1'), ('33537','1230','2','Orange','0','2'), ('33538','1230','3','Red','0','3'), ('33539','1230','4','Gray','0','4'), ('33540','1230','5','Unknown','0','5'), ('33541','1230','6','Not available','0','6'), ('33542','1231','0','True','0','0'), ('33543','1231','1','False','0','1'), ('33544','1231','2','Unknown','0','2'), ('33545','1232','0','Guest tools is executing scripts','0','0'), ('33546','1232','1','Guest tools is not running','0','1'), ('33547','1232','2','Guest tools is running','0','2'), ('33548','1232','10','Unknown','0','3'), ('33549','1233','0','Not running','0','0'), ('33550','1233','1','Resetting','0','1'), ('33551','1233','2','Running','0','2'), ('33552','1233','3','Shutting down','0','3'), ('33553','1233','4','Standby','0','4'), ('33554','1233','5','Unknown','0','5'), ('33555','1234','0','Connected','0','0'), ('33556','1234','1','Disconnected','0','1'), ('33557','1234','2','Not responding','0','2'), ('33558','1234','3','Unknown','0','3'), ('33559','1235','0','Green','0','0'), ('33560','1235','1','Yellow','0','1'), ('33561','1235','2','Orange','0','2'), ('33562','1235','3','Red','0','3'), ('33563','1235','4','Gray','0','4'), ('33564','1235','5','Unknown','0','5'), ('33565','1235','6','Not available','0','6'), ('33566','1236','-1','Invalid value','0','0'), ('33567','1237','0','Unknown','0','0'), ('33568','1237','1','Offline','0','1'), ('33569','1237','2','Recovering','0','2'), ('33570','1237','3','Online','0','3'), ('33571','1237','4','Degrading','0','4'), ('33572','1238','0','Normal','0','0'), ('33573','1238','1','Master','0','1'), ('33574','1238','2','Slave','0','2'), ('33575','1239','0','Undefined','0','0'), ('33576','1239','1','Normal','0','1'), ('33577','1239','2','Fault','0','2'), ('33578','1239','3','Pre-fail','0','3'), ('33579','1239','4','Partially broken','0','4'), ('33580','1239','5','Degraded','0','5'), ('33581','1239','6','Bad sectors found','0','6'), ('33582','1239','7','Bit errors found','0','7'), ('33583','1239','8','Consistent','0','8'), ('33584','1239','9','Inconsistent','0','9'), ('33585','1239','10','Busy','0','10'), ('33586','1239','11','No input','0','11'), ('33587','1239','12','Low battery','0','12'), ('33588','1239','13','Single link fault','0','13'), ('33589','1239','14','Invalid','0','14'), ('33590','1239','15','Write protect','0','15'), ('33591','1240','1','Normal','0','0'), ('33592','1240','2','Faulty','0','1'), ('33593','1240','3','Unformatted','0','2'), ('33594','1240','4','Formatting','0','3'), ('33595','1241','0','Undefined','0','0'), ('33596','1241','1','Normal','0','1'), ('33597','1241','2','Running','0','2'), ('33598','1241','3','Not running','0','3'), ('33599','1241','4','Not existed','0','4'), ('33600','1241','5','Sleep in high temperature','0','5'), ('33601','1241','6','Starting','0','6'), ('33602','1241','7','Power failure protection','0','7'), ('33603','1241','8','Spin down','0','8'), ('33604','1241','9','Started','0','9'), ('33605','1241','10','Link Up','0','10'), ('33606','1241','11','Link Down','0','11'), ('33607','1241','12','Powering on','0','12'), ('33608','1241','13','Powered off','0','13'), ('33609','1241','14','Pre-copy','0','14'), ('33610','1241','15','Copyback','0','15'), ('33611','1241','16','Reconstruction','0','16'), ('33612','1241','17','Expansion','0','17'), ('33613','1241','18','Unformatted','0','18'), ('33614','1241','19','Formatting','0','19'), ('33615','1241','20','Unmapped','0','20'), ('33616','1241','21','Initial synchronizing','0','21'), ('33617','1241','22','Consistent','0','22'), ('33618','1241','23','Synchronizing','0','23'), ('33619','1241','24','Synchronized','0','24'), ('33620','1241','25','Unsynchronized','0','25'), ('33621','1241','26','Split','0','26'), ('33622','1241','27','Online','0','27'), ('33623','1241','28','Offline','0','28'), ('33624','1241','29','Locked','0','29'), ('33625','1241','30','Enabled','0','30'), ('33626','1241','31','Disabled','0','31'), ('33627','1241','32','Balancing','0','32'), ('33628','1241','33','To be recovered','0','33'), ('33629','1241','34','Interrupted','0','34'), ('33630','1241','35','Invalid','0','35'), ('33631','1241','36','Not start','0','36'), ('33632','1241','37','Queuing','0','37'), ('33633','1241','38','Stopped','0','38'), ('33634','1241','39','Copying','0','39'), ('33635','1241','40','Completed','0','40'), ('33636','1241','41','Paused','0','41'), ('33637','1241','42','Reverse synchronizing','0','42'), ('33638','1241','43','Activated','0','43'), ('33639','1241','44','Restore','0','44'), ('33640','1241','45','Inactive','0','45'), ('33641','1241','46','Idle','0','46'), ('33642','1241','47','Powering off','0','47'), ('33643','1241','48','Charging','0','48'), ('33644','1241','49','Charging completed','0','49'), ('33645','1241','50','Discharging','0','50'), ('33646','1241','51','Upgrading','0','51'), ('33647','1241','52','Power Lost','0','52'), ('33648','1241','53','Initializing','0','53'), ('33649','1241','54','Apply change','0','54'), ('33650','1241','55','Online disable','0','55'), ('33651','1241','56','Offline disable','0','56'), ('33652','1241','57','Online frozen','0','57'), ('33653','1241','58','Offline frozen','0','58'), ('33654','1241','59','Closed','0','59'), ('33655','1241','60','Removing','0','60'), ('33656','1241','61','In service','0','61'), ('33657','1241','62','Out of service','0','62'), ('33658','1241','63','Running normal','0','63'), ('33659','1241','64','Running fail','0','64'), ('33660','1241','65','Running success','0','65'), ('33661','1241','66','Running success','0','66'), ('33662','1241','67','Running failed','0','67'), ('33663','1241','68','Waiting','0','68'), ('33664','1241','69','Canceling','0','69'), ('33665','1241','70','Canceled','0','70'), ('33666','1241','71','About to synchronize','0','71'), ('33667','1241','72','Synchronizing data','0','72'), ('33668','1241','73','Failed to synchronize','0','73'), ('33669','1241','74','Fault','0','74'), ('33670','1241','75','Migrating','0','75'), ('33671','1241','76','Migrated','0','76'), ('33672','1241','77','Activating','0','77'), ('33673','1241','78','Deactivating','0','78'), ('33674','1241','79','Start failed','0','79'), ('33675','1241','80','Stop failed','0','80'), ('33676','1241','81','Decommissioning','0','81'), ('33677','1241','82','Decommissioned','0','82'), ('33678','1241','83','Recommissioning','0','83'), ('33679','1241','84','Replacing node','0','84'), ('33680','1241','85','Scheduling','0','85'), ('33681','1241','86','Pausing','0','86'), ('33682','1241','87','Suspending','0','87'), ('33683','1241','88','Suspended','0','88'), ('33684','1241','89','Overload','0','89'), ('33685','1241','90','To be switch','0','90'), ('33686','1241','91','Switching','0','91'), ('33687','1241','92','To be cleanup','0','92'), ('33688','1241','93','Forced start','0','93'), ('33689','1241','94','Error','0','94'), ('33690','1241','95','Job completed','0','95'), ('33691','1241','96','Partition Migrating','0','96'), ('33692','1241','97','Mount','0','97'), ('33693','1241','98','Umount','0','98'), ('33694','1241','99','INSTALLING','0','99'), ('33695','1241','100','To Be Synchronized','0','100'), ('33696','1241','101','Connecting','0','101'), ('33697','1241','102','Service Switching','0','102'), ('33698','1241','103','Power-on failed','0','103'), ('33699','1241','104','REPAIRING','0','104'), ('33700','1241','105','abnormal','0','105'), ('33701','1241','106','Deleting','0','106'), ('33702','1241','107','Modifying','0','107'), ('33703','1241','108','Running(clearing data)','0','108'), ('33704','1241','109','Running(synchronizing data)','0','109'), ('33705','1242','0','Down','0','0'), ('33706','1242','1','Up','0','1'), ('33707','1243','0','not available','0','0'), ('33708','1243','1','available','0','1'), ('33709','1243','2','unknown','0','2'), ('33710','1244','0','Down','0','0'), ('33711','1244','1','Up','0','1'), ('33712','1245','0','Down','0','0'), ('33713','1245','1','Up','0','1'), ('33714','1246','0','Info','0','0'), ('33715','1246','1','Warning','0','1'), ('33716','1246','2','Critical','0','2'), ('33717','1246','3','Unknown','0','3'), ('33718','1247','0','Ok','0','0'), ('33719','1247','1','Problem','0','1'), ('33720','1248','0','False','0','0'), ('33721','1248','1','True','0','1'), ('33722','1248','2','Unknown','0','2'), ('33723','1249','0','Normal','0','0'), ('33724','1249','1','Override','0','1'), ('33725','1249','2','Readonly','0','2'), ('33726','1249','3','Standalone','0','3'), ('33727','1249','4','Switch to two node','0','4'), ('33728','1249','5','Unknown','0','5'), ('33729','1250','0','Info','0','0'), ('33730','1250','1','Warning','0','1'), ('33731','1250','2','Critical','0','2'), ('33732','1250','3','Unknown','0','3'), ('33733','1251','0','Ok','0','0'), ('33734','1251','1','Problem','0','1'), ('33735','1252','0','False','0','0'), ('33736','1252','1','True','0','1'), ('33737','1252','2','Unknown','0','2'), ('33738','1253','0','Not degraded','0','0'), ('33739','1253','1','Degraded','0','1'), ('33740','1253','2','Unknown','0','2'), ('33741','1254','0','Normal','0','0'), ('33742','1254','1','Data migration initiated','0','1'), ('33743','1254','2','Marked for removal but not detachable','0','2'), ('33744','1254','3','Detachable','0','3'), ('33745','1254','4','Unknown','0','4'), ('33746','1255','0','New','0','0'), ('33747','1255','1','Normal','0','1'), ('33748','1255','2','Marked for removal but not detachable','0','2'), ('33749','1255','3','Detachable','0','3'), ('33750','1255','4','Unknown','0','4'), ('33751','1256','0','Hyper converged','0','0'), ('33752','1256','1','Compute only','0','1'), ('33753','1256','2','Unknown','0','2'), ('33754','1257','0','Normal','0','0'), ('33755','1257','1','Maintenance','0','1'), ('33756','1257','2','Unknown','0','2'), ('33757','1258','0','Down','0','0'), ('33758','1258','1','Up','0','1'), ('33759','1259','0','Down','0','0'), ('33760','1259','1','Up','0','1'), ('33761','1260','0','Down','0','0'), ('33762','1260','1','Up','0','1'), ('33763','1261','-2','null','0','0'), ('33764','1262','0','Master','0','0'), ('33765','1262','1','Standby','0','1'), ('33766','1263','0','Down','0','0'), ('33767','1263','1','Up','0','1'), ('33768','1263','2','Master','0','2'), ('33769','1264','0','Down','0','0'), ('33770','1264','1','Up','0','1'), ('33771','1265','0','Master','0','0'), ('33772','1265','1','Standby','0','1'), ('33773','1266','0','Down','0','0'), ('33774','1266','1','Up','0','1'), ('33775','1266','2','Master','0','2'), ('33776','1267','0','Down','0','0'), ('33777','1267','1','Up','0','1'), ('33778','1268','1','idle','0','0'), ('33779','1268','2','connect','0','1'), ('33780','1268','3','active','0','2'), ('33781','1268','4','opensent','0','3'), ('33782','1268','5','openconfirm','0','4'), ('33783','1268','6','established','0','5'), ('33784','1269','1','halted','0','0'), ('33785','1269','2','running','0','1'), ('33786','1270','1','unknown','0','0'), ('33787','1270','2','halfDuplex','0','1'), ('33788','1270','3','fullDuplex','0','2'), ('33789','1271','1','up','0','0'), ('33790','1271','2','down','0','1'), ('33791','1271','4','unknown','0','2'), ('33792','1271','5','dormant','0','3'), ('33793','1271','6','notPresent','0','4'), ('33794','1271','7','lowerLayerDown','0','5'), ('33795','1272','1','other','0','0'), ('33796','1272','2','regular1822','0','1'), ('33797','1272','3','hdh1822','0','2'), ('33798','1272','4','ddnX25','0','3'), ('33799','1272','5','rfc877x25','0','4'), ('33800','1272','6','ethernetCsmacd','0','5'), ('33801','1272','7','iso88023Csmacd','0','6'), ('33802','1272','8','iso88024TokenBus','0','7'), ('33803','1272','9','iso88025TokenRing','0','8'), ('33804','1272','10','iso88026Man','0','9'), ('33805','1272','11','starLan','0','10'), ('33806','1272','12','proteon10Mbit','0','11'), ('33807','1272','13','proteon80Mbit','0','12'), ('33808','1272','14','hyperchannel','0','13'), ('33809','1272','15','fddi','0','14'), ('33810','1272','16','lapb','0','15'), ('33811','1272','17','sdlc','0','16'), ('33812','1272','18','ds1','0','17'), ('33813','1272','19','e1','0','18'), ('33814','1272','20','basicISDN','0','19'), ('33815','1272','21','primaryISDN','0','20'), ('33816','1272','22','propPointToPointSerial','0','21'), ('33817','1272','23','ppp','0','22'), ('33818','1272','24','softwareLoopback','0','23'), ('33819','1272','25','eon','0','24'), ('33820','1272','26','ethernet3Mbit','0','25'), ('33821','1272','27','nsip','0','26'), ('33822','1272','28','slip','0','27'), ('33823','1272','29','ultra','0','28'), ('33824','1272','30','ds3','0','29'), ('33825','1272','31','sip','0','30'), ('33826','1272','32','frameRelay','0','31'), ('33827','1272','33','rs232','0','32'), ('33828','1272','34','para','0','33'), ('33829','1272','35','arcnet','0','34'), ('33830','1272','36','arcnetPlus','0','35'), ('33831','1272','37','atm','0','36'), ('33832','1272','38','miox25','0','37'), ('33833','1272','39','sonet','0','38'), ('33834','1272','40','x25ple','0','39'), ('33835','1272','41','iso88022llc','0','40'), ('33836','1272','42','localTalk','0','41'), ('33837','1272','43','smdsDxi','0','42'), ('33838','1272','44','frameRelayService','0','43'), ('33839','1272','45','v35','0','44'), ('33840','1272','46','hssi','0','45'), ('33841','1272','47','hippi','0','46'), ('33842','1272','48','modem','0','47'), ('33843','1272','49','aal5','0','48'), ('33844','1272','50','sonetPath','0','49'), ('33845','1272','51','sonetVT','0','50'), ('33846','1272','52','smdsIcip','0','51'), ('33847','1272','53','propVirtual','0','52'), ('33848','1272','54','propMultiplexor','0','53'), ('33849','1272','55','ieee80212','0','54'), ('33850','1272','56','fibreChannel','0','55'), ('33851','1272','57','hippiInterface','0','56'), ('33852','1272','58','frameRelayInterconnect','0','57'), ('33853','1272','59','aflane8023','0','58'), ('33854','1272','60','aflane8025','0','59'), ('33855','1272','61','cctEmul','0','60'), ('33856','1272','62','fastEther','0','61'), ('33857','1272','63','isdn','0','62'), ('33858','1272','64','v11','0','63'), ('33859','1272','65','v36','0','64'), ('33860','1272','66','g703at64k','0','65'), ('33861','1272','67','g703at2mb','0','66'), ('33862','1272','68','qllc','0','67'), ('33863','1272','69','fastEtherFX','0','68'), ('33864','1272','70','channel','0','69'), ('33865','1272','71','ieee80211','0','70'), ('33866','1272','72','ibm370parChan','0','71'), ('33867','1272','73','escon','0','72'), ('33868','1272','74','dlsw','0','73'), ('33869','1272','75','isdns','0','74'), ('33870','1272','76','isdnu','0','75'), ('33871','1272','77','lapd','0','76'), ('33872','1272','78','ipSwitch','0','77'), ('33873','1272','79','rsrb','0','78'), ('33874','1272','80','atmLogical','0','79'), ('33875','1272','81','ds0','0','80'), ('33876','1272','82','ds0Bundle','0','81'), ('33877','1272','83','bsc','0','82'), ('33878','1272','84','async','0','83'), ('33879','1272','85','cnr','0','84'), ('33880','1272','86','iso88025Dtr','0','85'), ('33881','1272','87','eplrs','0','86'), ('33882','1272','88','arap','0','87'), ('33883','1272','89','propCnls','0','88'), ('33884','1272','90','hostPad','0','89'), ('33885','1272','91','termPad','0','90'), ('33886','1272','92','frameRelayMPI','0','91'), ('33887','1272','93','x213','0','92'), ('33888','1272','94','adsl','0','93'), ('33889','1272','95','radsl','0','94'), ('33890','1272','96','sdsl','0','95'), ('33891','1272','97','vdsl','0','96'), ('33892','1272','98','iso88025CRFPInt','0','97'), ('33893','1272','99','myrinet','0','98'), ('33894','1272','100','voiceEM','0','99'), ('33895','1272','101','voiceFXO','0','100'), ('33896','1272','102','voiceFXS','0','101'), ('33897','1272','103','voiceEncap','0','102'), ('33898','1272','104','voiceOverIp','0','103'), ('33899','1272','105','atmDxi','0','104'), ('33900','1272','106','atmFuni','0','105'), ('33901','1272','107','atmIma','0','106'), ('33902','1272','108','pppMultilinkBundle','0','107'), ('33903','1272','109','ipOverCdlc','0','108'), ('33904','1272','110','ipOverClaw','0','109'), ('33905','1272','111','stackToStack','0','110'), ('33906','1272','112','virtualIpAddress','0','111'), ('33907','1272','113','mpc','0','112'), ('33908','1272','114','ipOverAtm','0','113'), ('33909','1272','115','iso88025Fiber','0','114'), ('33910','1272','116','tdlc','0','115'), ('33911','1272','117','gigabitEthernet','0','116'), ('33912','1272','118','hdlc','0','117'), ('33913','1272','119','lapf','0','118'), ('33914','1272','120','v37','0','119'), ('33915','1272','121','x25mlp','0','120'), ('33916','1272','122','x25huntGroup','0','121'), ('33917','1272','123','trasnpHdlc','0','122'), ('33918','1272','124','interleave','0','123'), ('33919','1272','125','fast','0','124'), ('33920','1272','126','ip','0','125'), ('33921','1272','127','docsCableMaclayer','0','126'), ('33922','1272','128','docsCableDownstream','0','127'), ('33923','1272','129','docsCableUpstream','0','128'), ('33924','1272','130','a12MppSwitch','0','129'), ('33925','1272','131','tunnel','0','130'), ('33926','1272','132','coffee','0','131'), ('33927','1272','133','ces','0','132'), ('33928','1272','134','atmSubInterface','0','133'), ('33929','1272','135','l2vlan','0','134'), ('33930','1272','136','l3ipvlan','0','135'), ('33931','1272','137','l3ipxvlan','0','136'), ('33932','1272','138','digitalPowerline','0','137'), ('33933','1272','139','mediaMailOverIp','0','138'), ('33934','1272','140','dtm','0','139'), ('33935','1272','141','dcn','0','140'), ('33936','1272','142','ipForward','0','141'), ('33937','1272','143','msdsl','0','142'), ('33938','1272','144','ieee1394','0','143'), ('33939','1272','145','if-gsn','0','144'), ('33940','1272','146','dvbRccMacLayer','0','145'), ('33941','1272','147','dvbRccDownstream','0','146'), ('33942','1272','148','dvbRccUpstream','0','147'), ('33943','1272','149','atmVirtual','0','148'), ('33944','1272','150','mplsTunnel','0','149'), ('33945','1272','151','srp','0','150'), ('33946','1272','152','voiceOverAtm','0','151'), ('33947','1272','153','voiceOverFrameRelay','0','152'), ('33948','1272','154','idsl','0','153'), ('33949','1272','155','compositeLink','0','154'), ('33950','1272','156','ss7SigLink','0','155'), ('33951','1272','157','propWirelessP2P','0','156'), ('33952','1272','158','frForward','0','157'), ('33953','1272','159','rfc1483','0','158'), ('33954','1272','160','usb','0','159'), ('33955','1272','161','ieee8023adLag','0','160'), ('33956','1272','162','bgppolicyaccounting','0','161'), ('33957','1272','163','frf16MfrBundle','0','162'), ('33958','1272','164','h323Gatekeeper','0','163'), ('33959','1272','165','h323Proxy','0','164'), ('33960','1272','166','mpls','0','165'), ('33961','1272','167','mfSigLink','0','166'), ('33962','1272','168','hdsl2','0','167'), ('33963','1272','169','shdsl','0','168'), ('33964','1272','170','ds1FDL','0','169'), ('33965','1272','171','pos','0','170'), ('33966','1272','172','dvbAsiIn','0','171'), ('33967','1272','173','dvbAsiOut','0','172'), ('33968','1272','174','plc','0','173'), ('33969','1272','175','nfas','0','174'), ('33970','1272','176','tr008','0','175'), ('33971','1272','177','gr303RDT','0','176'), ('33972','1272','178','gr303IDT','0','177'), ('33973','1272','179','isup','0','178'), ('33974','1272','180','propDocsWirelessMaclayer','0','179'), ('33975','1272','181','propDocsWirelessDownstream','0','180'), ('33976','1272','182','propDocsWirelessUpstream','0','181'), ('33977','1272','183','hiperlan2','0','182'), ('33978','1272','184','propBWAp2Mp','0','183'), ('33979','1272','185','sonetOverheadChannel','0','184'), ('33980','1272','186','digitalWrapperOverheadChannel','0','185'), ('33981','1272','187','aal2','0','186'), ('33982','1272','188','radioMAC','0','187'), ('33983','1272','189','atmRadio','0','188'), ('33984','1272','190','imt','0','189'), ('33985','1272','191','mvl','0','190'), ('33986','1272','192','reachDSL','0','191'), ('33987','1272','193','frDlciEndPt','0','192'), ('33988','1272','194','atmVciEndPt','0','193'), ('33989','1272','195','opticalChannel','0','194'), ('33990','1272','196','opticalTransport','0','195'), ('33991','1272','197','propAtm','0','196'), ('33992','1272','198','voiceOverCable','0','197'), ('33993','1272','199','infiniband','0','198'), ('33994','1272','200','teLink','0','199'), ('33995','1272','201','q2931','0','200'), ('33996','1272','202','virtualTg','0','201'), ('33997','1272','203','sipTg','0','202'), ('33998','1272','204','sipSig','0','203'), ('33999','1272','205','docsCableUpstreamChannel','0','204'), ('34000','1272','206','econet','0','205'), ('34001','1272','207','pon155','0','206'), ('34002','1272','208','pon622','0','207'), ('34003','1272','209','bridge','0','208'), ('34004','1272','210','linegroup','0','209'), ('34005','1272','211','voiceEMFGD','0','210'), ('34006','1272','212','voiceFGDEANA','0','211'), ('34007','1272','213','voiceDID','0','212'), ('34008','1272','214','mpegTransport','0','213'), ('34009','1272','215','sixToFour','0','214'), ('34010','1272','216','gtp','0','215'), ('34011','1272','217','pdnEtherLoop1','0','216'), ('34012','1272','218','pdnEtherLoop2','0','217'), ('34013','1272','219','opticalChannelGroup','0','218'), ('34014','1272','220','homepna','0','219'), ('34015','1272','221','gfp','0','220'), ('34016','1272','222','ciscoISLvlan','0','221'), ('34017','1272','223','actelisMetaLOOP','0','222'), ('34018','1272','224','fcipLink','0','223'), ('34019','1272','225','rpr','0','224'), ('34020','1272','226','qam','0','225'), ('34021','1272','227','lmp','0','226'), ('34022','1272','228','cblVectaStar','0','227'), ('34023','1272','229','docsCableMCmtsDownstream','0','228'), ('34024','1272','230','adsl2','0','229'), ('34025','1272','231','macSecControlledIF','0','230'), ('34026','1272','232','macSecUncontrolledIF','0','231'), ('34027','1272','233','aviciOpticalEther','0','232'), ('34028','1272','234','atmbond','0','233'), ('34029','1272','235','voiceFGDOS','0','234'), ('34030','1272','236','mocaVersion1','0','235'), ('34031','1272','237','ieee80216WMAN','0','236'), ('34032','1272','238','adsl2plus','0','237'), ('34033','1272','239','dvbRcsMacLayer','0','238'), ('34034','1272','240','dvbTdm','0','239'), ('34035','1272','241','dvbRcsTdma','0','240'), ('34036','1272','242','x86Laps','0','241'), ('34037','1272','243','wwanPP','0','242'), ('34038','1272','244','wwanPP2','0','243'), ('34039','1272','245','voiceEBS','0','244'), ('34040','1272','246','ifPwType','0','245'), ('34041','1272','247','ilan','0','246'), ('34042','1272','248','pip','0','247'), ('34043','1272','249','aluELP','0','248'), ('34044','1272','250','gpon','0','249'), ('34045','1272','251','vdsl2','0','250'), ('34046','1272','252','capwapDot11Profile','0','251'), ('34047','1272','253','capwapDot11Bss','0','252'), ('34048','1272','254','capwapWtpVirtualRadio','0','253'), ('34049','1272','255','bits','0','254'), ('34050','1272','256','docsCableUpstreamRfPort','0','255'), ('34051','1272','257','cableDownstreamRfPort','0','256'), ('34052','1272','258','vmwareVirtualNic','0','257'), ('34053','1272','259','ieee802154','0','258'), ('34054','1272','260','otnOdu','0','259'), ('34055','1272','261','otnOtu','0','260'), ('34056','1272','262','ifVfiType','0','261'), ('34057','1272','263','g9981','0','262'), ('34058','1272','264','g9982','0','263'), ('34059','1272','265','g9983','0','264'), ('34060','1272','266','aluEpon','0','265'), ('34061','1272','267','aluEponOnu','0','266'), ('34062','1272','268','aluEponPhysicalUni','0','267'), ('34063','1272','269','aluEponLogicalLink','0','268'), ('34064','1272','270','aluGponOnu','0','269'), ('34065','1272','271','aluGponPhysicalUni','0','270'), ('34066','1272','272','vmwareNicTeam','0','271'), ('34067','1272','277','docsOfdmDownstream','0','272'), ('34068','1272','278','docsOfdmaUpstream','0','273'), ('34069','1272','279','gfast','0','274'), ('34070','1272','280','sdci','0','275'), ('34071','1272','281','xboxWireless','0','276'), ('34072','1272','282','fastdsl','0','277'), ('34073','1272','283','docsCableScte55d1FwdOob','0','278'), ('34074','1272','284','docsCableScte55d1RetOob','0','279'), ('34075','1272','285','docsCableScte55d2DsOob','0','280'), ('34076','1272','286','docsCableScte55d2UsOob','0','281'), ('34077','1272','287','docsCableNdf','0','282'), ('34078','1272','288','docsCableNdr','0','283'), ('34079','1272','289','ptm','0','284'), ('34080','1272','290','ghn','0','285'), ('34081','1273','1','unknown','0','0'), ('34082','1273','2','running','0','1'), ('34083','1273','3','ready','0','2'), ('34084','1273','4','reset','0','3'), ('34085','1273','5','runningAtFullSpeed','0','4'), ('34086','1273','6','down or off','0','5'), ('34087','1273','7','standby','0','6'), ('34088','1274','1','unknown','0','0'), ('34089','1274','2','master','0','1'), ('34090','1274','3','backup','0','2'), ('34091','1274','4','disabled','0','3'), ('34092','1274','5','notApplicable','0','4'), ('34093','1275','1','other','0','0'), ('34094','1275','2','neverSwitched','0','1'), ('34095','1275','3','userSwitched','0','2'), ('34096','1275','4','autoSwitched','0','3'), ('34097','1276','1','true','0','0'), ('34098','1276','2','false','0','1'), ('34099','1277','1','down','0','0'), ('34100','1277','2','attempt','0','1'), ('34101','1277','3','init','0','2'), ('34102','1277','4','twoWay','0','3'), ('34103','1277','5','exchangeStart','0','4'), ('34104','1277','6','exchange','0','5'), ('34105','1277','7','loading','0','6'), ('34106','1277','8','full','0','7'), ('34107','1278','0','Down','0','0'), ('34108','1278','1','Up','0','1'), ('34109','1279','0','not available','0','0'), ('34110','1279','1','available','0','1'), ('34111','1279','2','unknown','0','2'), ('34112','1280','0','Available','0','0'), ('34113','1280','1','Degraded','0','1'), ('34114','1280','2','Unavailable','0','2'), ('34115','1280','3','Unknown','0','3'), ('34116','1281','0','Unknown','0','0'), ('34117','1281','1','Accepted','0','1'), ('34118','1281','2','Canceled','0','2'), ('34119','1281','3','Created','0','3'), ('34120','1281','4','Creating','0','4'), ('34121','1281','5','Deleted','0','5'), ('34122','1281','6','Deleting','0','6'), ('34123','1281','7','Failed','0','7'), ('34124','1281','8','NotSpecified','0','8'), ('34125','1281','9','Registering','0','9'), ('34126','1281','10','Running','0','10'), ('34127','1281','11','Succeeded','0','11'), ('34128','1281','12','TimedOut','0','12'), ('34129','1281','13','Unrecognized','0','13'), ('34130','1281','14','Updating','0','14'), ('34131','1282','0','Idle','0','0'), ('34132','1282','1','Connect','0','1'), ('34133','1282','2','Active','0','2'), ('34134','1282','3','OpenSent','0','3'), ('34135','1282','4','OpenConfirm','0','4'), ('34136','1282','5','Established','0','5'), ('34137','1282','6','Unknown','0','6'), ('34138','1283','0','false','0','0'), ('34139','1283','1','true','0','1'), ('34140','1284','0','Active-Passive','0','0'), ('34141','1284','1','Active-Active','0','1'), ('34142','1284','2','Unknown','0','2'), ('34143','1285','0','initial','0','0'), ('34144','1285','1','active','0','1'), ('34145','1285','2','passive','0','2'), ('34146','1285','3','active-primary','0','3'), ('34147','1285','4','active-secondary','0','4'), ('34148','1285','5','tentative','0','5'), ('34149','1285','6','non-functional','0','6'), ('34150','1285','7','suspended','0','7'), ('34151','1285','8','unknown','0','8'), ('34152','1286','0','Unknown','0','0'), ('34153','1286','1','Null','0','1'), ('34154','1286','2','Down','0','2'), ('34155','1286','3','Up','0','3'), ('34156','1287','0','Unavailable','0','0'), ('34157','1287','1','Available','0','1'), ('34158','1288','0','Unknown','0','0'), ('34159','1288','1','OK','0','1'), ('34160','1288','2','Warning','0','2'), ('34161','1288','3','Critical','0','3'), ('34162','1289','0','Unknown','0','0'), ('34163','1289','1','Enabled','0','1'), ('34164','1289','2','Disabled','0','2'), ('34165','1289','3','Absent','0','3'), ('34166','1289','4','Deferring','0','4'), ('34167','1289','5','InTest','0','5'), ('34168','1289','6','Quiesced','0','6'), ('34169','1289','7','StandbyOffline','0','7'), ('34170','1289','8','StandbySpare','0','8'), ('34171','1289','9','Starting','0','9'), ('34172','1289','10','UnavailableOffline','0','10'), ('34173','1289','11','Updating','0','11'), ('34174','1290','0','unknown','0','0'), ('34175','1290','1','Blocked','0','1'), ('34176','1290','2','Degraded','0','2'), ('34177','1290','3','Failed','0','3'), ('34178','1290','4','Foreign','0','4'), ('34179','1290','5','Offline','0','5'), ('34180','1290','6','Unknown','0','6'), ('34181','1290','7','Null','0','7'), ('34182','1290','8','Ready','0','8'), ('34183','1290','9','Online','0','9'), ('34184','1291','0','Unknown','0','0'), ('34185','1291','1','NoReadAhead','0','1'), ('34186','1291','2','ReadAhead','0','2'), ('34187','1291','3','AdaptiveReadAhead','0','3'), ('34188','1292','0','Unknown','0','0'), ('34189','1292','1','WriteThrough','0','1'), ('34190','1292','2','WriteBack','0','2'), ('34191','1292','3','ProtectedWriteBack','0','3'), ('34192','1292','4','UnprotectedWriteBack','0','4'), ('34193','1293','1','Unknown','0','0'), ('34194','1293','2','Ready','0','1'), ('34195','1293','3','Failed','0','2'), ('34196','1293','4','Degraded','0','3'), ('34197','1293','5','Missing','0','4'), ('34198','1293','6','Charging','0','5'), ('34199','1293','7','Below threshold','0','6'), ('34200','1294','0','ok','0','0'), ('34201','1294','1','failed','0','1'), ('34202','1295','0','unknown','0','0'), ('34203','1295','1','connected','0','1'), ('34204','1295','2','disconnected','0','2'), ('34205','1295','3','driverBad','0','3'), ('34206','1295','4','driverDisabled','0','4'), ('34207','1295','10','hardwareInitalizing','0','5'), ('34208','1295','11','hardwareResetting','0','6'), ('34209','1295','12','hardwareClosing','0','7'), ('34210','1295','13','hardwareNotReady','0','8'), ('34211','1296','1','other','0','0'), ('34212','1296','2','unknown','0','1'), ('34213','1296','3','ok','0','2'), ('34214','1296','4','nonCritical','0','3'), ('34215','1296','5','critical','0','4'), ('34216','1296','6','nonRecoverable','0','5'), ('34217','1297','1','other','0','0'), ('34218','1297','2','unknown','0','1'), ('34219','1297','3','ok','0','2'), ('34220','1297','4','nonCritical','0','3'), ('34221','1297','5','critical','0','4'), ('34222','1297','6','nonRecoverable','0','5'), ('34223','1298','1','Unknown','0','0'), ('34224','1298','2','HDD','0','1'), ('34225','1298','3','SSD','0','2'), ('34226','1299','1','internalError','0','0'), ('34227','1299','2','thermalTrip','0','1'), ('34228','1299','32','configurationError','0','2'), ('34229','1299','128','processorPresent','0','3'), ('34230','1299','256','processorDisabled','0','4'), ('34231','1299','512','terminatorPresent','0','5'), ('34232','1299','1024','processorThrottled','0','6'), ('34233','1300','1','other','0','0'), ('34234','1300','2','unknown','0','1'), ('34235','1300','3','ok','0','2'), ('34236','1300','4','nonCriticalUpper','0','3'), ('34237','1300','5','criticalUpper','0','4'), ('34238','1300','6','nonRecoverableUpper','0','5'), ('34239','1300','7','nonCriticalLower','0','6'), ('34240','1300','8','criticalLower','0','7'), ('34241','1300','9','nonRecoverableLower','0','8'), ('34242','1300','10','failed','0','9'), ('34243','1301','1','Other','0','0'), ('34244','1301','2','RAID-0','0','1'), ('34245','1301','3','RAID-1','0','2'), ('34246','1301','4','RAID-5','0','3'), ('34247','1301','5','RAID-6','0','4'), ('34248','1301','6','RAID-10','0','5'), ('34249','1301','7','RAID-50','0','6'), ('34250','1301','8','RAID-60','0','7'), ('34251','1301','9','Concatenated RAID 1','0','8'), ('34252','1301','10','Concatenated RAID 5','0','9'), ('34253','1302','1','Not applicable','0','0'), ('34254','1302','2','Reconstructing','0','1'), ('34255','1302','3','Resynching','0','2'), ('34256','1302','4','Initializing','0','3'), ('34257','1302','5','Background init','0','4'), ('34258','1303','1','No Read Ahead','0','0'), ('34259','1303','2','Read Ahead','0','1'), ('34260','1303','3','Adaptive Read Ahead','0','2'), ('34261','1304','1','Unknown','0','0'), ('34262','1304','2','Online','0','1'), ('34263','1304','3','Failed','0','2'), ('34264','1304','4','Degraded','0','3'), ('34265','1305','1','Write Through','0','0'), ('34266','1305','2','Write Back','0','1'), ('34267','1305','3','Force Write Back','0','2'), ('34268','1306','0','not available','0','0'), ('34269','1306','1','available','0','1'), ('34270','1306','2','unknown','0','2'), ('34271','1307','0','Unknown','0','0'), ('34272','1307','1','Null','0','1'), ('34273','1307','2','Down','0','2'), ('34274','1307','3','Up','0','3'), ('34275','1308','0','Unavailable','0','0'), ('34276','1308','1','Available','0','1'), ('34277','1309','0','Unknown','0','0'), ('34278','1309','1','OK','0','1'), ('34279','1309','2','Warning','0','2'), ('34280','1309','3','Critical','0','3'), ('34281','1310','0','Unknown','0','0'), ('34282','1310','1','Enabled','0','1'), ('34283','1310','2','Disabled','0','2'), ('34284','1310','3','Absent','0','3'), ('34285','1310','4','Deferring','0','4'), ('34286','1310','5','InTest','0','5'), ('34287','1310','6','Quiesced','0','6'), ('34288','1310','7','StandbyOffline','0','7'), ('34289','1310','8','StandbySpare','0','8'), ('34290','1310','9','Starting','0','9'), ('34291','1310','10','UnavailableOffline','0','10'), ('34292','1310','11','Updating','0','11'), ('34293','1311','0','unknown','0','0'), ('34294','1311','1','Blocked','0','1'), ('34295','1311','2','Degraded','0','2'), ('34296','1311','3','Failed','0','3'), ('34297','1311','4','Foreign','0','4'), ('34298','1311','5','Offline','0','5'), ('34299','1311','6','Unknown','0','6'), ('34300','1311','7','Null','0','7'), ('34301','1311','8','Ready','0','8'), ('34302','1311','9','Online','0','9'), ('34303','1312','0','Unknown','0','0'), ('34304','1312','1','NoReadAhead','0','1'), ('34305','1312','2','ReadAhead','0','2'), ('34306','1312','3','AdaptiveReadAhead','0','3'), ('34307','1313','0','Unknown','0','0'), ('34308','1313','1','WriteThrough','0','1'), ('34309','1313','2','WriteBack','0','2'), ('34310','1313','3','ProtectedWriteBack','0','3'), ('34311','1313','4','UnprotectedWriteBack','0','4'), ('34312','1314','0','unknown','0','0'), ('34313','1314','1','connected','0','1'), ('34314','1314','2','disconnected','0','2'), ('34315','1314','3','driverBad','0','3'), ('34316','1314','4','driverDisabled','0','4'), ('34317','1314','10','hardwareInitalizing','0','5'), ('34318','1314','11','hardwareResetting','0','6'), ('34319','1314','12','hardwareClosing','0','7'), ('34320','1314','13','hardwareNotReady','0','8'), ('34321','1315','1','internalError','0','0'), ('34322','1315','2','thermalTrip','0','1'), ('34323','1315','32','configurationError','0','2'), ('34324','1315','128','processorPresent','0','3'), ('34325','1315','256','processorDisabled','0','4'), ('34326','1315','512','terminatorPresent','0','5'), ('34327','1315','1024','processorThrottled','0','6'), ('34328','1316','0','Unknown','0','0'), ('34329','1316','1','Null','0','1'), ('34330','1316','2','Down','0','2'), ('34331','1316','3','Up','0','3'), ('34332','1317','0','Unavailable','0','0'), ('34333','1317','1','Available','0','1'), ('34334','1318','0','Unknown','0','0'), ('34335','1318','1','OK','0','1'), ('34336','1318','2','Warning','0','2'), ('34337','1318','3','Critical','0','3'), ('34338','1319','0','Unknown','0','0'), ('34339','1319','1','Enabled','0','1'), ('34340','1319','2','Disabled','0','2'), ('34341','1319','3','Absent','0','3'), ('34342','1319','4','Deferring','0','4'), ('34343','1319','5','InTest','0','5'), ('34344','1319','6','Quiesced','0','6'), ('34345','1319','7','StandbyOffline','0','7'), ('34346','1319','8','StandbySpare','0','8'), ('34347','1319','9','Starting','0','9'), ('34348','1319','10','UnavailableOffline','0','10'), ('34349','1319','11','Updating','0','11'), ('34350','1320','0','unknown','0','0'), ('34351','1320','1','Blocked','0','1'), ('34352','1320','2','Degraded','0','2'), ('34353','1320','3','Failed','0','3'), ('34354','1320','4','Foreign','0','4'), ('34355','1320','5','Offline','0','5'), ('34356','1320','6','Unknown','0','6'), ('34357','1320','7','Null','0','7'), ('34358','1320','8','Ready','0','8'), ('34359','1320','9','Online','0','9'), ('34360','1321','0','Unknown','0','0'), ('34361','1321','1','NoReadAhead','0','1'), ('34362','1321','2','ReadAhead','0','2'), ('34363','1321','3','AdaptiveReadAhead','0','3'), ('34364','1322','0','Unknown','0','0'), ('34365','1322','1','WriteThrough','0','1'), ('34366','1322','2','WriteBack','0','2'), ('34367','1322','3','ProtectedWriteBack','0','3'), ('34368','1322','4','UnprotectedWriteBack','0','4'), ('34369','1323','0','unknown','0','0'), ('34370','1323','1','connected','0','1'), ('34371','1323','2','disconnected','0','2'), ('34372','1323','3','driverBad','0','3'), ('34373','1323','4','driverDisabled','0','4'), ('34374','1323','10','hardwareInitalizing','0','5'), ('34375','1323','11','hardwareResetting','0','6'), ('34376','1323','12','hardwareClosing','0','7'), ('34377','1323','13','hardwareNotReady','0','8'), ('34378','1324','1','internalError','0','0'), ('34379','1324','2','thermalTrip','0','1'), ('34380','1324','32','configurationError','0','2'), ('34381','1324','128','processorPresent','0','3'), ('34382','1324','256','processorDisabled','0','4'), ('34383','1324','512','terminatorPresent','0','5'), ('34384','1324','1024','processorThrottled','0','6'), ('34385','1325','0','Unknown','0','0'), ('34386','1325','1','Null','0','1'), ('34387','1325','2','Down','0','2'), ('34388','1325','3','Up','0','3'), ('34389','1326','0','Unavailable','0','0'), ('34390','1326','1','Available','0','1'), ('34391','1327','0','Unknown','0','0'), ('34392','1327','1','OK','0','1'), ('34393','1327','2','Warning','0','2'), ('34394','1327','3','Critical','0','3'), ('34395','1328','0','Unknown','0','0'), ('34396','1328','1','Enabled','0','1'), ('34397','1328','2','Disabled','0','2'), ('34398','1328','3','Absent','0','3'), ('34399','1328','4','Deferring','0','4'), ('34400','1328','5','InTest','0','5'), ('34401','1328','6','Quiesced','0','6'), ('34402','1328','7','StandbyOffline','0','7'), ('34403','1328','8','StandbySpare','0','8'), ('34404','1328','9','Starting','0','9'), ('34405','1328','10','UnavailableOffline','0','10'), ('34406','1328','11','Updating','0','11'), ('34407','1329','0','unknown','0','0'), ('34408','1329','1','Blocked','0','1'), ('34409','1329','2','Degraded','0','2'), ('34410','1329','3','Failed','0','3'), ('34411','1329','4','Foreign','0','4'), ('34412','1329','5','Offline','0','5'), ('34413','1329','6','Unknown','0','6'), ('34414','1329','7','Null','0','7'), ('34415','1329','8','Ready','0','8'), ('34416','1329','9','Online','0','9'), ('34417','1330','0','Unknown','0','0'), ('34418','1330','1','NoReadAhead','0','1'), ('34419','1330','2','ReadAhead','0','2'), ('34420','1330','3','AdaptiveReadAhead','0','3'), ('34421','1331','0','Unknown','0','0'), ('34422','1331','1','WriteThrough','0','1'), ('34423','1331','2','WriteBack','0','2'), ('34424','1331','3','ProtectedWriteBack','0','3'), ('34425','1331','4','UnprotectedWriteBack','0','4'), ('34426','1332','1','Unknown','0','0'), ('34427','1332','2','Ready','0','1'), ('34428','1332','3','Failed','0','2'), ('34429','1332','4','Degraded','0','3'), ('34430','1332','5','Missing','0','4'), ('34431','1332','6','Charging','0','5'), ('34432','1332','7','Below threshold','0','6'), ('34433','1333','0','ok','0','0'), ('34434','1333','1','failed','0','1'), ('34435','1334','0','unknown','0','0'), ('34436','1334','1','connected','0','1'), ('34437','1334','2','disconnected','0','2'), ('34438','1334','3','driverBad','0','3'), ('34439','1334','4','driverDisabled','0','4'), ('34440','1334','10','hardwareInitalizing','0','5'), ('34441','1334','11','hardwareResetting','0','6'), ('34442','1334','12','hardwareClosing','0','7'), ('34443','1334','13','hardwareNotReady','0','8'), ('34444','1335','1','other','0','0'), ('34445','1335','2','unknown','0','1'), ('34446','1335','3','ok','0','2'), ('34447','1335','4','nonCritical','0','3'), ('34448','1335','5','critical','0','4'), ('34449','1335','6','nonRecoverable','0','5'), ('34450','1336','1','other','0','0'), ('34451','1336','2','unknown','0','1'), ('34452','1336','3','ok','0','2'), ('34453','1336','4','nonCritical','0','3'), ('34454','1336','5','critical','0','4'), ('34455','1336','6','nonRecoverable','0','5'), ('34456','1337','1','Unknown','0','0'), ('34457','1337','2','HDD','0','1'), ('34458','1337','3','SSD','0','2'), ('34459','1338','1','internalError','0','0'), ('34460','1338','2','thermalTrip','0','1'), ('34461','1338','32','configurationError','0','2'), ('34462','1338','128','processorPresent','0','3'), ('34463','1338','256','processorDisabled','0','4'), ('34464','1338','512','terminatorPresent','0','5'), ('34465','1338','1024','processorThrottled','0','6'), ('34466','1339','1','other','0','0'), ('34467','1339','2','unknown','0','1'), ('34468','1339','3','ok','0','2'), ('34469','1339','4','nonCriticalUpper','0','3'), ('34470','1339','5','criticalUpper','0','4'), ('34471','1339','6','nonRecoverableUpper','0','5'), ('34472','1339','7','nonCriticalLower','0','6'), ('34473','1339','8','criticalLower','0','7'), ('34474','1339','9','nonRecoverableLower','0','8'), ('34475','1339','10','failed','0','9'), ('34476','1340','1','Other','0','0'), ('34477','1340','2','RAID-0','0','1'), ('34478','1340','3','RAID-1','0','2'), ('34479','1340','4','RAID-5','0','3'), ('34480','1340','5','RAID-6','0','4'), ('34481','1340','6','RAID-10','0','5'), ('34482','1340','7','RAID-50','0','6'), ('34483','1340','8','RAID-60','0','7'), ('34484','1340','9','Concatenated RAID 1','0','8'), ('34485','1340','10','Concatenated RAID 5','0','9'), ('34486','1341','1','Not applicable','0','0'), ('34487','1341','2','Reconstructing','0','1'), ('34488','1341','3','Resynching','0','2'), ('34489','1341','4','Initializing','0','3'), ('34490','1341','5','Background init','0','4'), ('34491','1342','1','No Read Ahead','0','0'), ('34492','1342','2','Read Ahead','0','1'), ('34493','1342','3','Adaptive Read Ahead','0','2'), ('34494','1343','1','Unknown','0','0'), ('34495','1343','2','Online','0','1'), ('34496','1343','3','Failed','0','2'), ('34497','1343','4','Degraded','0','3'), ('34498','1344','1','Write Through','0','0'), ('34499','1344','2','Write Back','0','1'), ('34500','1344','3','Force Write Back','0','2'), ('34501','1345','0','not available','0','0'), ('34502','1345','1','available','0','1'), ('34503','1345','2','unknown','0','2'), ('34504','1346','0','Unknown','0','0'), ('34505','1346','1','Null','0','1'), ('34506','1346','2','Down','0','2'), ('34507','1346','3','Up','0','3'), ('34508','1347','0','Unavailable','0','0'), ('34509','1347','1','Available','0','1'), ('34510','1348','0','Unknown','0','0'), ('34511','1348','1','OK','0','1'), ('34512','1348','2','Warning','0','2'), ('34513','1348','3','Critical','0','3'), ('34514','1349','0','Unknown','0','0'), ('34515','1349','1','Enabled','0','1'), ('34516','1349','2','Disabled','0','2'), ('34517','1349','3','Absent','0','3'), ('34518','1349','4','Deferring','0','4'), ('34519','1349','5','InTest','0','5'), ('34520','1349','6','Quiesced','0','6'), ('34521','1349','7','StandbyOffline','0','7'), ('34522','1349','8','StandbySpare','0','8'), ('34523','1349','9','Starting','0','9'), ('34524','1349','10','UnavailableOffline','0','10'), ('34525','1349','11','Updating','0','11'), ('34526','1350','0','unknown','0','0'), ('34527','1350','1','Blocked','0','1'), ('34528','1350','2','Degraded','0','2'), ('34529','1350','3','Failed','0','3'), ('34530','1350','4','Foreign','0','4'), ('34531','1350','5','Offline','0','5'), ('34532','1350','6','Unknown','0','6'), ('34533','1350','7','Null','0','7'), ('34534','1350','8','Ready','0','8'), ('34535','1350','9','Online','0','9'), ('34536','1351','0','Unknown','0','0'), ('34537','1351','1','NoReadAhead','0','1'), ('34538','1351','2','ReadAhead','0','2'), ('34539','1351','3','AdaptiveReadAhead','0','3'), ('34540','1352','0','Unknown','0','0'), ('34541','1352','1','WriteThrough','0','1'), ('34542','1352','2','WriteBack','0','2'), ('34543','1352','3','ProtectedWriteBack','0','3'), ('34544','1352','4','UnprotectedWriteBack','0','4'), ('34545','1353','0','unknown','0','0'), ('34546','1353','1','connected','0','1'), ('34547','1353','2','disconnected','0','2'), ('34548','1353','3','driverBad','0','3'), ('34549','1353','4','driverDisabled','0','4'), ('34550','1353','10','hardwareInitalizing','0','5'), ('34551','1353','11','hardwareResetting','0','6'), ('34552','1353','12','hardwareClosing','0','7'), ('34553','1353','13','hardwareNotReady','0','8'), ('34554','1354','1','internalError','0','0'), ('34555','1354','2','thermalTrip','0','1'), ('34556','1354','32','configurationError','0','2'), ('34557','1354','128','processorPresent','0','3'), ('34558','1354','256','processorDisabled','0','4'), ('34559','1354','512','terminatorPresent','0','5'), ('34560','1354','1024','processorThrottled','0','6'), ('34561','1355','0','Unknown','0','0'), ('34562','1355','1','Null','0','1'), ('34563','1355','2','Down','0','2'), ('34564','1355','3','Up','0','3'), ('34565','1356','0','Unavailable','0','0'), ('34566','1356','1','Available','0','1'), ('34567','1357','0','Unknown','0','0'), ('34568','1357','1','OK','0','1'), ('34569','1357','2','Warning','0','2'), ('34570','1357','3','Critical','0','3'), ('34571','1358','0','Unknown','0','0'), ('34572','1358','1','Enabled','0','1'), ('34573','1358','2','Disabled','0','2'), ('34574','1358','3','Absent','0','3'), ('34575','1358','4','Deferring','0','4'), ('34576','1358','5','InTest','0','5'), ('34577','1358','6','Quiesced','0','6'), ('34578','1358','7','StandbyOffline','0','7'), ('34579','1358','8','StandbySpare','0','8'), ('34580','1358','9','Starting','0','9'), ('34581','1358','10','UnavailableOffline','0','10'), ('34582','1358','11','Updating','0','11'), ('34583','1359','0','unknown','0','0'), ('34584','1359','1','Blocked','0','1'), ('34585','1359','2','Degraded','0','2'), ('34586','1359','3','Failed','0','3'), ('34587','1359','4','Foreign','0','4'), ('34588','1359','5','Offline','0','5'), ('34589','1359','6','Unknown','0','6'), ('34590','1359','7','Null','0','7'), ('34591','1359','8','Ready','0','8'), ('34592','1359','9','Online','0','9'), ('34593','1360','0','Unknown','0','0'), ('34594','1360','1','NoReadAhead','0','1'), ('34595','1360','2','ReadAhead','0','2'), ('34596','1360','3','AdaptiveReadAhead','0','3'), ('34597','1361','0','Unknown','0','0'), ('34598','1361','1','WriteThrough','0','1'), ('34599','1361','2','WriteBack','0','2'), ('34600','1361','3','ProtectedWriteBack','0','3'), ('34601','1361','4','UnprotectedWriteBack','0','4'), ('34602','1362','0','unknown','0','0'), ('34603','1362','1','connected','0','1'), ('34604','1362','2','disconnected','0','2'), ('34605','1362','3','driverBad','0','3'), ('34606','1362','4','driverDisabled','0','4'), ('34607','1362','10','hardwareInitalizing','0','5'), ('34608','1362','11','hardwareResetting','0','6'), ('34609','1362','12','hardwareClosing','0','7'), ('34610','1362','13','hardwareNotReady','0','8'), ('34611','1363','1','internalError','0','0'), ('34612','1363','2','thermalTrip','0','1'), ('34613','1363','32','configurationError','0','2'), ('34614','1363','128','processorPresent','0','3'), ('34615','1363','256','processorDisabled','0','4'), ('34616','1363','512','terminatorPresent','0','5'), ('34617','1363','1024','processorThrottled','0','6'), ('34618','1364','0','unknown','0','0'), ('34619','1364','1','connected','0','1'), ('34620','1364','2','disconnected','0','2'), ('34621','1364','3','driverBad','0','3'), ('34622','1364','4','driverDisabled','0','4'), ('34623','1364','10','hardwareInitalizing','0','5'), ('34624','1364','11','hardwareResetting','0','6'), ('34625','1364','12','hardwareClosing','0','7'), ('34626','1364','13','hardwareNotReady','0','8'), ('34627','1365','1','internalError','0','0'), ('34628','1365','2','thermalTrip','0','1'), ('34629','1365','32','configurationError','0','2'), ('34630','1365','128','processorPresent','0','3'), ('34631','1365','256','processorDisabled','0','4'), ('34632','1365','512','terminatorPresent','0','5'), ('34633','1365','1024','processorThrottled','0','6'), ('34634','1366','1','No Read Ahead','0','0'), ('34635','1366','2','Read Ahead','0','1'), ('34636','1366','3','Adaptive Read Ahead','0','2'), ('34637','1367','0','True','0','0'), ('34638','1367','1','False','0','1'), ('34639','1368','0','True','0','0'), ('34640','1368','1','False','0','1'), ('34641','1369','0','Disk','0','0'), ('34642','1369','1','Memory','0','1'), ('34643','1370','0','True','0','0'), ('34644','1370','1','False','0','1'), ('34645','1371','0','Disk','0','0'), ('34646','1371','1','Memory','0','1'), ('34647','1372','0','True','0','0'), ('34648','1372','1','False','0','1'), ('34649','1373','0','False','0','0'), ('34650','1373','1','True','0','1'), ('34651','1374','0','False','0','0'), ('34652','1374','1','True','0','1'), ('34653','1375','0','Standby','0','0'), ('34654','1375','1','Stopped','0','1'), ('34655','1375','2','Unavailable','0','2'), ('34656','1375','3','Active','0','3'), ('34657','1376','0','Undefined','0','0'), ('34658','1376','1','Current','0','1'), ('34659','1376','2','Outdated','0','2'), ('34660','1376','3','Unsupported','0','3'), ('34661','1377','-1','Never','0','0'), ('34662','1378','0','Active','0','0'), ('34663','1378','1','Passive','0','1'), ('34664','1379','0','Off','0','0'), ('34665','1379','1','On','0','1'), ('34666','1380','0','Normal','0','0'), ('34667','1380','1','Low memory','0','1'), ('34668','1381','0','False','0','0'), ('34669','1381','1','True','0','1'), ('34670','1382','0','Standby','0','0'), ('34671','1382','1','Stopped','0','1'), ('34672','1382','2','Unavailable','0','2'), ('34673','1382','3','Active','0','3'), ('34674','1383','0','Undefined','0','0'), ('34675','1383','1','Current','0','1'), ('34676','1383','2','Outdated','0','2'), ('34677','1383','3','Unsupported','0','3'), ('34678','1384','-1','Never','0','0'), ('34679','1385','0','Active','0','0'), ('34680','1385','1','Passive','0','1'), ('34681','1386','0','Off','0','0'), ('34682','1386','1','On','0','1'), ('34683','1387','0','Normal','0','0'), ('34684','1387','1','Low memory','0','1'), ('34685','1388','0','False','0','0'), ('34686','1388','1','True','0','1'), ('34687','1389','0','Available','0','0'), ('34688','1389','1','Degraded','0','1'), ('34689','1389','2','Unavailable','0','2'), ('34690','1389','3','Unknown','0','3'), ('34691','1390','0','self-signed','0','0'), ('34692','1390','1','imported','0','1'), ('34693','1390','2','other','0','2'), ('34694','1391','0','disconnected','0','0'), ('34695','1391','1','connected','0','1'), ('34696','1391','2','unknown','0','2'), ('34697','1392','0','not present','0','0'), ('34698','1392','1','offline','0','1'), ('34699','1392','2','primary','0','2'), ('34700','1392','3','secondary','0','3'), ('34701','1392','4','unknown','0','4'), ('34702','1393','0','not ready','0','0'), ('34703','1393','1','ready','0','1'), ('34704','1393','2','updating','0','2'), ('34705','1393','3','unknown','0','3'), ('34706','1394','0','healthy','0','0'), ('34707','1394','1','empty','0','1'), ('34708','1394','2','updating','0','2'), ('34709','1394','3','unused','0','3'), ('34710','1394','4','evacuating','0','4'), ('34711','1394','5','identifying','0','5'), ('34712','1394','6','unhealthy','0','6'), ('34713','1394','7','recovering','0','7'), ('34714','1394','8','unrecognized','0','8'), ('34715','1394','9','failed','0','9'), ('34716','1395','0','ok','0','0'), ('34717','1395','1','critical','0','1'), ('34718','1395','2','degraded','0','2'), ('34719','1395','3','device_off','0','3'), ('34720','1395','4','identifying','0','4'), ('34721','1395','5','not_installed','0','5'), ('34722','1395','6','unknown','0','6'), ('34723','1396','0','demoted','0','0'), ('34724','1396','1','promoted','0','1'), ('34725','1396','2','unknown','0','2'), ('34726','1397','0','disabled','0','0'), ('34727','1397','1','enabled','0','1'), ('34728','1397','2','unknown','0','2'), ('34729','1398','0','false','0','0'), ('34730','1398','1','true','0','1'), ('34731','1399','0','self-signed','0','0'), ('34732','1399','1','imported','0','1'), ('34733','1399','2','other','0','2'), ('34734','1400','0','not present','0','0'), ('34735','1400','1','offline','0','1'), ('34736','1400','2','primary','0','2'), ('34737','1400','3','secondary','0','3'), ('34738','1400','4','unknown','0','4'), ('34739','1401','0','not ready','0','0'), ('34740','1401','1','ready','0','1'), ('34741','1401','2','updating','0','2'), ('34742','1401','3','unknown','0','3'), ('34743','1402','0','healthy','0','0'), ('34744','1402','1','empty','0','1'), ('34745','1402','2','updating','0','2'), ('34746','1402','3','unused','0','3'), ('34747','1402','4','evacuating','0','4'), ('34748','1402','5','identifying','0','5'), ('34749','1402','6','unhealthy','0','6'), ('34750','1402','7','recovering','0','7'), ('34751','1402','8','unrecognized','0','8'), ('34752','1402','9','failed','0','9'), ('34753','1403','0','ok','0','0'), ('34754','1403','1','critical','0','1'), ('34755','1403','2','degraded','0','2'), ('34756','1403','3','device_off','0','3'), ('34757','1403','4','identifying','0','4'), ('34758','1403','5','not_installed','0','5'), ('34759','1403','6','unknown','0','6'), ('34760','1404','0','demoted','0','0'), ('34761','1404','1','promoted','0','1'), ('34762','1404','2','unknown','0','2'), ('34763','1405','0','disabled','0','0'), ('34764','1405','1','enabled','0','1'), ('34765','1405','2','unknown','0','2'), ('34766','1406','0','Unknown','0','0'), ('34767','1406','1','InProgress','0','1'), ('34768','1406','2','Queued','0','2'), ('34769','1406','3','Completed','0','3'), ('34770','1406','4','CompletedWithWarnings','0','4'), ('34771','1406','5','Failed','0','5'), ('34772','1406','6','Cancelled','0','6'), ('34773','1406','7','Expired','0','7'), ('34774','1407','0','Available','0','0'), ('34775','1407','1','Degraded','0','1'), ('34776','1407','2','Unavailable','0','2'), ('34777','1407','3','Unknown','0','3'), ('34778','1408','0','Down','0','0'), ('34779','1408','1','Up','0','1'), ('34780','1409','1','STOPPED','0','0'), ('34781','1409','2','RUNNING','0','1'), ('34782','1409','3','FAILED','0','2'), ('34783','1409','4','UNKNOWN','0','3'), ('34784','1409','5','RESTARTING','0','4'), ('34785','1410','0','Undefined','0','0'), ('34786','1410','1','True','0','1'), ('34787','1410','2','False','0','2'), ('34788','1410','3','Null','0','3'), ('34789','1411','0','Undefined','0','0'), ('34790','1411','1','True','0','1'), ('34791','1411','2','False','0','2'), ('34792','1411','3','Null','0','3'), ('34793','1412','0','Unknown','0','0'), ('34794','1412','1','Created','0','1'), ('34795','1412','2','Pending','0','2'), ('34796','1412','3','Running','0','3'), ('34797','1412','4','Aborting','0','4'), ('34798','1412','5','Aborted','0','5'), ('34799','1412','6','Completed','0','6'), ('34800','1412','7','Failed','0','7'), ('34801','1412','8','Expired','0','8'), ('34802','1412','9','Partial','0','9'), ('34803','1413','0','Unlocked','0','0'), ('34804','1413','1','Locked','0','1'), ('34805','1414','0','Unknown','0','0'), ('34806','1414','1','Creating','0','1'), ('34807','1414','2','Available','0','2'), ('34808','1414','3','Failed','0','3'), ('34809','1415','1','Unknown','0','0'), ('34810','1415','2','Empty','0','1'), ('34811','1415','3','Uninitialized','0','2'), ('34812','1415','4','Ok','0','3'), ('34813','1415','5','Fault','0','4'), ('34814','1416','1','up','0','0'), ('34815','1416','2','down','0','1'), ('34816','1416','4','unknown','0','2'), ('34817','1416','5','dormant','0','3'), ('34818','1416','6','notPresent','0','4'), ('34819','1416','7','lowerLayerDown','0','5'), ('34820','1417','1','other','0','0'), ('34821','1417','2','regular1822','0','1'), ('34822','1417','3','hdh1822','0','2'), ('34823','1417','4','ddnX25','0','3'), ('34824','1417','5','rfc877x25','0','4'), ('34825','1417','6','ethernetCsmacd','0','5'), ('34826','1417','7','iso88023Csmacd','0','6'), ('34827','1417','8','iso88024TokenBus','0','7'), ('34828','1417','9','iso88025TokenRing','0','8'), ('34829','1417','10','iso88026Man','0','9'), ('34830','1417','11','starLan','0','10'), ('34831','1417','12','proteon10Mbit','0','11'), ('34832','1417','13','proteon80Mbit','0','12'), ('34833','1417','14','hyperchannel','0','13'), ('34834','1417','15','fddi','0','14'), ('34835','1417','16','lapb','0','15'), ('34836','1417','17','sdlc','0','16'), ('34837','1417','18','ds1','0','17'), ('34838','1417','19','e1','0','18'), ('34839','1417','20','basicISDN','0','19'), ('34840','1417','21','primaryISDN','0','20'), ('34841','1417','22','propPointToPointSerial','0','21'), ('34842','1417','23','ppp','0','22'), ('34843','1417','24','softwareLoopback','0','23'), ('34844','1417','25','eon','0','24'), ('34845','1417','26','ethernet3Mbit','0','25'), ('34846','1417','27','nsip','0','26'), ('34847','1417','28','slip','0','27'), ('34848','1417','29','ultra','0','28'), ('34849','1417','30','ds3','0','29'), ('34850','1417','31','sip','0','30'), ('34851','1417','32','frameRelay','0','31'), ('34852','1417','33','rs232','0','32'), ('34853','1417','34','para','0','33'), ('34854','1417','35','arcnet','0','34'), ('34855','1417','36','arcnetPlus','0','35'), ('34856','1417','37','atm','0','36'), ('34857','1417','38','miox25','0','37'), ('34858','1417','39','sonet','0','38'), ('34859','1417','40','x25ple','0','39'), ('34860','1417','41','iso88022llc','0','40'), ('34861','1417','42','localTalk','0','41'), ('34862','1417','43','smdsDxi','0','42'), ('34863','1417','44','frameRelayService','0','43'), ('34864','1417','45','v35','0','44'), ('34865','1417','46','hssi','0','45'), ('34866','1417','47','hippi','0','46'), ('34867','1417','48','modem','0','47'), ('34868','1417','49','aal5','0','48'), ('34869','1417','50','sonetPath','0','49'), ('34870','1417','51','sonetVT','0','50'), ('34871','1417','52','smdsIcip','0','51'), ('34872','1417','53','propVirtual','0','52'), ('34873','1417','54','propMultiplexor','0','53'), ('34874','1417','55','ieee80212','0','54'), ('34875','1417','56','fibreChannel','0','55'), ('34876','1417','57','hippiInterface','0','56'), ('34877','1417','58','frameRelayInterconnect','0','57'), ('34878','1417','59','aflane8023','0','58'), ('34879','1417','60','aflane8025','0','59'), ('34880','1417','61','cctEmul','0','60'), ('34881','1417','62','fastEther','0','61'), ('34882','1417','63','isdn','0','62'), ('34883','1417','64','v11','0','63'), ('34884','1417','65','v36','0','64'), ('34885','1417','66','g703at64k','0','65'), ('34886','1417','67','g703at2mb','0','66'), ('34887','1417','68','qllc','0','67'), ('34888','1417','69','fastEtherFX','0','68'), ('34889','1417','70','channel','0','69'), ('34890','1417','71','ieee80211','0','70'), ('34891','1417','72','ibm370parChan','0','71'), ('34892','1417','73','escon','0','72'), ('34893','1417','74','dlsw','0','73'), ('34894','1417','75','isdns','0','74'), ('34895','1417','76','isdnu','0','75'), ('34896','1417','77','lapd','0','76'), ('34897','1417','78','ipSwitch','0','77'), ('34898','1417','79','rsrb','0','78'), ('34899','1417','80','atmLogical','0','79'), ('34900','1417','81','ds0','0','80'), ('34901','1417','82','ds0Bundle','0','81'), ('34902','1417','83','bsc','0','82'), ('34903','1417','84','async','0','83'), ('34904','1417','85','cnr','0','84'), ('34905','1417','86','iso88025Dtr','0','85'), ('34906','1417','87','eplrs','0','86'), ('34907','1417','88','arap','0','87'), ('34908','1417','89','propCnls','0','88'), ('34909','1417','90','hostPad','0','89'), ('34910','1417','91','termPad','0','90'), ('34911','1417','92','frameRelayMPI','0','91'), ('34912','1417','93','x213','0','92'), ('34913','1417','94','adsl','0','93'), ('34914','1417','95','radsl','0','94'), ('34915','1417','96','sdsl','0','95'), ('34916','1417','97','vdsl','0','96'), ('34917','1417','98','iso88025CRFPInt','0','97'), ('34918','1417','99','myrinet','0','98'), ('34919','1417','100','voiceEM','0','99'), ('34920','1417','101','voiceFXO','0','100'), ('34921','1417','102','voiceFXS','0','101'), ('34922','1417','103','voiceEncap','0','102'), ('34923','1417','104','voiceOverIp','0','103'), ('34924','1417','105','atmDxi','0','104'), ('34925','1417','106','atmFuni','0','105'), ('34926','1417','107','atmIma','0','106'), ('34927','1417','108','pppMultilinkBundle','0','107'), ('34928','1417','109','ipOverCdlc','0','108'), ('34929','1417','110','ipOverClaw','0','109'), ('34930','1417','111','stackToStack','0','110'), ('34931','1417','112','virtualIpAddress','0','111'), ('34932','1417','113','mpc','0','112'), ('34933','1417','114','ipOverAtm','0','113'), ('34934','1417','115','iso88025Fiber','0','114'), ('34935','1417','116','tdlc','0','115'), ('34936','1417','117','gigabitEthernet','0','116'), ('34937','1417','118','hdlc','0','117'), ('34938','1417','119','lapf','0','118'), ('34939','1417','120','v37','0','119'), ('34940','1417','121','x25mlp','0','120'), ('34941','1417','122','x25huntGroup','0','121'), ('34942','1417','123','trasnpHdlc','0','122'), ('34943','1417','124','interleave','0','123'), ('34944','1417','125','fast','0','124'), ('34945','1417','126','ip','0','125'), ('34946','1417','127','docsCableMaclayer','0','126'), ('34947','1417','128','docsCableDownstream','0','127'), ('34948','1417','129','docsCableUpstream','0','128'), ('34949','1417','130','a12MppSwitch','0','129'), ('34950','1417','131','tunnel','0','130'), ('34951','1417','132','coffee','0','131'), ('34952','1417','133','ces','0','132'), ('34953','1417','134','atmSubInterface','0','133'), ('34954','1417','135','l2vlan','0','134'), ('34955','1417','136','l3ipvlan','0','135'), ('34956','1417','137','l3ipxvlan','0','136'), ('34957','1417','138','digitalPowerline','0','137'), ('34958','1417','139','mediaMailOverIp','0','138'), ('34959','1417','140','dtm','0','139'), ('34960','1417','141','dcn','0','140'), ('34961','1417','142','ipForward','0','141'), ('34962','1417','143','msdsl','0','142'), ('34963','1417','144','ieee1394','0','143'), ('34964','1417','145','if-gsn','0','144'), ('34965','1417','146','dvbRccMacLayer','0','145'), ('34966','1417','147','dvbRccDownstream','0','146'), ('34967','1417','148','dvbRccUpstream','0','147'), ('34968','1417','149','atmVirtual','0','148'), ('34969','1417','150','mplsTunnel','0','149'), ('34970','1417','151','srp','0','150'), ('34971','1417','152','voiceOverAtm','0','151'), ('34972','1417','153','voiceOverFrameRelay','0','152'), ('34973','1417','154','idsl','0','153'), ('34974','1417','155','compositeLink','0','154'), ('34975','1417','156','ss7SigLink','0','155'), ('34976','1417','157','propWirelessP2P','0','156'), ('34977','1417','158','frForward','0','157'), ('34978','1417','159','rfc1483','0','158'), ('34979','1417','160','usb','0','159'), ('34980','1417','161','ieee8023adLag','0','160'), ('34981','1417','162','bgppolicyaccounting','0','161'), ('34982','1417','163','frf16MfrBundle','0','162'), ('34983','1417','164','h323Gatekeeper','0','163'), ('34984','1417','165','h323Proxy','0','164'), ('34985','1417','166','mpls','0','165'), ('34986','1417','167','mfSigLink','0','166'), ('34987','1417','168','hdsl2','0','167'), ('34988','1417','169','shdsl','0','168'), ('34989','1417','170','ds1FDL','0','169'), ('34990','1417','171','pos','0','170'), ('34991','1417','172','dvbAsiIn','0','171'), ('34992','1417','173','dvbAsiOut','0','172'), ('34993','1417','174','plc','0','173'), ('34994','1417','175','nfas','0','174'), ('34995','1417','176','tr008','0','175'), ('34996','1417','177','gr303RDT','0','176'), ('34997','1417','178','gr303IDT','0','177'), ('34998','1417','179','isup','0','178'), ('34999','1417','180','propDocsWirelessMaclayer','0','179'), ('35000','1417','181','propDocsWirelessDownstream','0','180'), ('35001','1417','182','propDocsWirelessUpstream','0','181'), ('35002','1417','183','hiperlan2','0','182'), ('35003','1417','184','propBWAp2Mp','0','183'), ('35004','1417','185','sonetOverheadChannel','0','184'), ('35005','1417','186','digitalWrapperOverheadChannel','0','185'), ('35006','1417','187','aal2','0','186'), ('35007','1417','188','radioMAC','0','187'), ('35008','1417','189','atmRadio','0','188'), ('35009','1417','190','imt','0','189'), ('35010','1417','191','mvl','0','190'), ('35011','1417','192','reachDSL','0','191'), ('35012','1417','193','frDlciEndPt','0','192'), ('35013','1417','194','atmVciEndPt','0','193'), ('35014','1417','195','opticalChannel','0','194'), ('35015','1417','196','opticalTransport','0','195'), ('35016','1417','197','propAtm','0','196'), ('35017','1417','198','voiceOverCable','0','197'), ('35018','1417','199','infiniband','0','198'), ('35019','1417','200','teLink','0','199'), ('35020','1417','201','q2931','0','200'), ('35021','1417','202','virtualTg','0','201'), ('35022','1417','203','sipTg','0','202'), ('35023','1417','204','sipSig','0','203'), ('35024','1417','205','docsCableUpstreamChannel','0','204'), ('35025','1417','206','econet','0','205'), ('35026','1417','207','pon155','0','206'), ('35027','1417','208','pon622','0','207'), ('35028','1417','209','bridge','0','208'), ('35029','1417','210','linegroup','0','209'), ('35030','1417','211','voiceEMFGD','0','210'), ('35031','1417','212','voiceFGDEANA','0','211'), ('35032','1417','213','voiceDID','0','212'), ('35033','1417','214','mpegTransport','0','213'), ('35034','1417','215','sixToFour','0','214'), ('35035','1417','216','gtp','0','215'), ('35036','1417','217','pdnEtherLoop1','0','216'), ('35037','1417','218','pdnEtherLoop2','0','217'), ('35038','1417','219','opticalChannelGroup','0','218'), ('35039','1417','220','homepna','0','219'), ('35040','1417','221','gfp','0','220'), ('35041','1417','222','ciscoISLvlan','0','221'), ('35042','1417','223','actelisMetaLOOP','0','222'), ('35043','1417','224','fcipLink','0','223'), ('35044','1417','225','rpr','0','224'), ('35045','1417','226','qam','0','225'), ('35046','1417','227','lmp','0','226'), ('35047','1417','228','cblVectaStar','0','227'), ('35048','1417','229','docsCableMCmtsDownstream','0','228'), ('35049','1417','230','adsl2','0','229'), ('35050','1417','231','macSecControlledIF','0','230'), ('35051','1417','232','macSecUncontrolledIF','0','231'), ('35052','1417','233','aviciOpticalEther','0','232'), ('35053','1417','234','atmbond','0','233'), ('35054','1417','235','voiceFGDOS','0','234'), ('35055','1417','236','mocaVersion1','0','235'), ('35056','1417','237','ieee80216WMAN','0','236'), ('35057','1417','238','adsl2plus','0','237'), ('35058','1417','239','dvbRcsMacLayer','0','238'), ('35059','1417','240','dvbTdm','0','239'), ('35060','1417','241','dvbRcsTdma','0','240'), ('35061','1417','242','x86Laps','0','241'), ('35062','1417','243','wwanPP','0','242'), ('35063','1417','244','wwanPP2','0','243'), ('35064','1417','245','voiceEBS','0','244'), ('35065','1417','246','ifPwType','0','245'), ('35066','1417','247','ilan','0','246'), ('35067','1417','248','pip','0','247'), ('35068','1417','249','aluELP','0','248'), ('35069','1417','250','gpon','0','249'), ('35070','1417','251','vdsl2','0','250'), ('35071','1417','252','capwapDot11Profile','0','251'), ('35072','1417','253','capwapDot11Bss','0','252'), ('35073','1417','254','capwapWtpVirtualRadio','0','253'), ('35074','1417','255','bits','0','254'), ('35075','1417','256','docsCableUpstreamRfPort','0','255'), ('35076','1417','257','cableDownstreamRfPort','0','256'), ('35077','1417','258','vmwareVirtualNic','0','257'), ('35078','1417','259','ieee802154','0','258'), ('35079','1417','260','otnOdu','0','259'), ('35080','1417','261','otnOtu','0','260'), ('35081','1417','262','ifVfiType','0','261'), ('35082','1417','263','g9981','0','262'), ('35083','1417','264','g9982','0','263'), ('35084','1417','265','g9983','0','264'), ('35085','1417','266','aluEpon','0','265'), ('35086','1417','267','aluEponOnu','0','266'), ('35087','1417','268','aluEponPhysicalUni','0','267'), ('35088','1417','269','aluEponLogicalLink','0','268'), ('35089','1417','270','aluGponOnu','0','269'), ('35090','1417','271','aluGponPhysicalUni','0','270'), ('35091','1417','272','vmwareNicTeam','0','271'), ('35092','1417','277','docsOfdmDownstream','0','272'), ('35093','1417','278','docsOfdmaUpstream','0','273'), ('35094','1417','279','gfast','0','274'), ('35095','1417','280','sdci','0','275'), ('35096','1417','281','xboxWireless','0','276'), ('35097','1417','282','fastdsl','0','277'), ('35098','1417','283','docsCableScte55d1FwdOob','0','278'), ('35099','1417','284','docsCableScte55d1RetOob','0','279'), ('35100','1417','285','docsCableScte55d2DsOob','0','280'), ('35101','1417','286','docsCableScte55d2UsOob','0','281'), ('35102','1417','287','docsCableNdf','0','282'), ('35103','1417','288','docsCableNdr','0','283'), ('35104','1417','289','ptm','0','284'), ('35105','1417','290','ghn','0','285'), ('35106','1418','0','None','0','0'), ('35107','1418','1','Simple password','0','1'), ('35108','1418','2','md5','0','2'), ('35109','1419','1','Active','0','0'), ('35110','1419','2','Not in service','0','1'), ('35111','1419','3','Not ready','0','2'), ('35112','1419','4','Create and go','0','3'), ('35113','1419','5','Create and wait','0','4'), ('35114','1419','6','Destroy','0','5'), ('35115','1420','1','Enabled','0','0'), ('35116','1420','2','Disabled','0','1'), ('35117','1421','1','Down','0','0'), ('35118','1421','2','Loopback','0','1'), ('35119','1421','3','Waiting','0','2'), ('35120','1421','4','Point to point','0','3'), ('35121','1421','5','Designated router','0','4'), ('35122','1421','6','Backup designated router','0','5'), ('35123','1421','7','Other designated router','0','6'), ('35124','1422','1','Active','0','0'), ('35125','1422','2','Not in service','0','1'), ('35126','1422','3','Not ready','0','2'), ('35127','1422','4','Create and go','0','3'), ('35128','1422','5','Create and wait','0','4'), ('35129','1422','6','Destroy','0','5'), ('35130','1423','1','Broadcast','0','0'), ('35131','1423','2','NBMA','0','1'), ('35132','1423','3','Point to point','0','2'), ('35133','1423','4','Virtual link','0','3'), ('35134','1423','5','Point to multipoint','0','4'), ('35135','1424','1','Down','0','0'), ('35136','1424','2','Attempt','0','1'), ('35137','1424','3','Init','0','2'), ('35138','1424','4','Two way','0','3'), ('35139','1424','5','Exchange start','0','4'), ('35140','1424','6','Exchange','0','5'), ('35141','1424','7','Loading','0','6'), ('35142','1424','8','Full','0','7'), ('35143','1425','1','Active','0','0'), ('35144','1425','2','Not in service','0','1'), ('35145','1425','3','Not ready','0','2'), ('35146','1425','4','Create and go','0','3'), ('35147','1425','5','Create and wait','0','4'), ('35148','1425','6','Destroy','0','5'), ('35149','1426','1','Always','0','0'), ('35150','1426','2','Candidate','0','1'), ('35151','1427','1','Enabled','0','0'), ('35152','1427','2','Elected','0','1'), ('35153','1427','3','Disabled','0','2'), ('35154','1428','1','Ok','0','0'), ('35155','1428','2','Fault Absent','0','1'), ('35156','1428','3','Fault Input','0','2'), ('35157','1428','4','Fault Output','0','3'), ('35158','1428','5','Fault POE','0','4'), ('35159','1428','6','Fault No Recov','0','5'), ('35160','1428','7','Alert','0','6'), ('35161','1428','8','Unknown','0','7'), ('35162','1428','9','Unsupported','0','8'), ('35163','1428','10','Warning','0','9'), ('35164','1428','11','Init','0','10'), ('35165','1428','12','Empty','0','11'), ('35166','1428','13','Fault Airflow','0','12'), ('35167','1428','14','Fault Redundancy','0','13'), ('35168','1429','0','Down','0','0'), ('35169','1429','1','Up','0','1'), ('35170','1430','0','not available','0','0'), ('35171','1430','1','available','0','1'), ('35172','1430','2','unknown','0','2'), ('35173','1431','1','up','0','0'), ('35174','1431','2','down','0','1'), ('35175','1431','4','unknown','0','2'), ('35176','1431','5','dormant','0','3'), ('35177','1431','6','notPresent','0','4'), ('35178','1431','7','lowerLayerDown','0','5'), ('35179','1432','1','other','0','0'), ('35180','1432','2','regular1822','0','1'), ('35181','1432','3','hdh1822','0','2'), ('35182','1432','4','ddnX25','0','3'), ('35183','1432','5','rfc877x25','0','4'), ('35184','1432','6','ethernetCsmacd','0','5'), ('35185','1432','7','iso88023Csmacd','0','6'), ('35186','1432','8','iso88024TokenBus','0','7'), ('35187','1432','9','iso88025TokenRing','0','8'), ('35188','1432','10','iso88026Man','0','9'), ('35189','1432','11','starLan','0','10'), ('35190','1432','12','proteon10Mbit','0','11'), ('35191','1432','13','proteon80Mbit','0','12'), ('35192','1432','14','hyperchannel','0','13'), ('35193','1432','15','fddi','0','14'), ('35194','1432','16','lapb','0','15'), ('35195','1432','17','sdlc','0','16'), ('35196','1432','18','ds1','0','17'), ('35197','1432','19','e1','0','18'), ('35198','1432','20','basicISDN','0','19'), ('35199','1432','21','primaryISDN','0','20'), ('35200','1432','22','propPointToPointSerial','0','21'), ('35201','1432','23','ppp','0','22'), ('35202','1432','24','softwareLoopback','0','23'), ('35203','1432','25','eon','0','24'), ('35204','1432','26','ethernet3Mbit','0','25'), ('35205','1432','27','nsip','0','26'), ('35206','1432','28','slip','0','27'), ('35207','1432','29','ultra','0','28'), ('35208','1432','30','ds3','0','29'), ('35209','1432','31','sip','0','30'), ('35210','1432','32','frameRelay','0','31'), ('35211','1432','33','rs232','0','32'), ('35212','1432','34','para','0','33'), ('35213','1432','35','arcnet','0','34'), ('35214','1432','36','arcnetPlus','0','35'), ('35215','1432','37','atm','0','36'), ('35216','1432','38','miox25','0','37'), ('35217','1432','39','sonet','0','38'), ('35218','1432','40','x25ple','0','39'), ('35219','1432','41','iso88022llc','0','40'), ('35220','1432','42','localTalk','0','41'), ('35221','1432','43','smdsDxi','0','42'), ('35222','1432','44','frameRelayService','0','43'), ('35223','1432','45','v35','0','44'), ('35224','1432','46','hssi','0','45'), ('35225','1432','47','hippi','0','46'), ('35226','1432','48','modem','0','47'), ('35227','1432','49','aal5','0','48'), ('35228','1432','50','sonetPath','0','49'), ('35229','1432','51','sonetVT','0','50'), ('35230','1432','52','smdsIcip','0','51'), ('35231','1432','53','propVirtual','0','52'), ('35232','1432','54','propMultiplexor','0','53'), ('35233','1432','55','ieee80212','0','54'), ('35234','1432','56','fibreChannel','0','55'), ('35235','1432','57','hippiInterface','0','56'), ('35236','1432','58','frameRelayInterconnect','0','57'), ('35237','1432','59','aflane8023','0','58'), ('35238','1432','60','aflane8025','0','59'), ('35239','1432','61','cctEmul','0','60'), ('35240','1432','62','fastEther','0','61'), ('35241','1432','63','isdn','0','62'), ('35242','1432','64','v11','0','63'), ('35243','1432','65','v36','0','64'), ('35244','1432','66','g703at64k','0','65'), ('35245','1432','67','g703at2mb','0','66'), ('35246','1432','68','qllc','0','67'), ('35247','1432','69','fastEtherFX','0','68'), ('35248','1432','70','channel','0','69'), ('35249','1432','71','ieee80211','0','70'), ('35250','1432','72','ibm370parChan','0','71'), ('35251','1432','73','escon','0','72'), ('35252','1432','74','dlsw','0','73'), ('35253','1432','75','isdns','0','74'), ('35254','1432','76','isdnu','0','75'), ('35255','1432','77','lapd','0','76'), ('35256','1432','78','ipSwitch','0','77'), ('35257','1432','79','rsrb','0','78'), ('35258','1432','80','atmLogical','0','79'), ('35259','1432','81','ds0','0','80'), ('35260','1432','82','ds0Bundle','0','81'), ('35261','1432','83','bsc','0','82'), ('35262','1432','84','async','0','83'), ('35263','1432','85','cnr','0','84'), ('35264','1432','86','iso88025Dtr','0','85'), ('35265','1432','87','eplrs','0','86'), ('35266','1432','88','arap','0','87'), ('35267','1432','89','propCnls','0','88'), ('35268','1432','90','hostPad','0','89'), ('35269','1432','91','termPad','0','90'), ('35270','1432','92','frameRelayMPI','0','91'), ('35271','1432','93','x213','0','92'), ('35272','1432','94','adsl','0','93'), ('35273','1432','95','radsl','0','94'), ('35274','1432','96','sdsl','0','95'), ('35275','1432','97','vdsl','0','96'), ('35276','1432','98','iso88025CRFPInt','0','97'), ('35277','1432','99','myrinet','0','98'), ('35278','1432','100','voiceEM','0','99'), ('35279','1432','101','voiceFXO','0','100'), ('35280','1432','102','voiceFXS','0','101'), ('35281','1432','103','voiceEncap','0','102'), ('35282','1432','104','voiceOverIp','0','103'), ('35283','1432','105','atmDxi','0','104'), ('35284','1432','106','atmFuni','0','105'), ('35285','1432','107','atmIma','0','106'), ('35286','1432','108','pppMultilinkBundle','0','107'), ('35287','1432','109','ipOverCdlc','0','108'), ('35288','1432','110','ipOverClaw','0','109'), ('35289','1432','111','stackToStack','0','110'), ('35290','1432','112','virtualIpAddress','0','111'), ('35291','1432','113','mpc','0','112'), ('35292','1432','114','ipOverAtm','0','113'), ('35293','1432','115','iso88025Fiber','0','114'), ('35294','1432','116','tdlc','0','115'), ('35295','1432','117','gigabitEthernet','0','116'), ('35296','1432','118','hdlc','0','117'), ('35297','1432','119','lapf','0','118'), ('35298','1432','120','v37','0','119'), ('35299','1432','121','x25mlp','0','120'), ('35300','1432','122','x25huntGroup','0','121'), ('35301','1432','123','trasnpHdlc','0','122'), ('35302','1432','124','interleave','0','123'), ('35303','1432','125','fast','0','124'), ('35304','1432','126','ip','0','125'), ('35305','1432','127','docsCableMaclayer','0','126'), ('35306','1432','128','docsCableDownstream','0','127'), ('35307','1432','129','docsCableUpstream','0','128'), ('35308','1432','130','a12MppSwitch','0','129'), ('35309','1432','131','tunnel','0','130'), ('35310','1432','132','coffee','0','131'), ('35311','1432','133','ces','0','132'), ('35312','1432','134','atmSubInterface','0','133'), ('35313','1432','135','l2vlan','0','134'), ('35314','1432','136','l3ipvlan','0','135'), ('35315','1432','137','l3ipxvlan','0','136'), ('35316','1432','138','digitalPowerline','0','137'), ('35317','1432','139','mediaMailOverIp','0','138'), ('35318','1432','140','dtm','0','139'), ('35319','1432','141','dcn','0','140'), ('35320','1432','142','ipForward','0','141'), ('35321','1432','143','msdsl','0','142'), ('35322','1432','144','ieee1394','0','143'), ('35323','1432','145','if-gsn','0','144'), ('35324','1432','146','dvbRccMacLayer','0','145'), ('35325','1432','147','dvbRccDownstream','0','146'), ('35326','1432','148','dvbRccUpstream','0','147'), ('35327','1432','149','atmVirtual','0','148'), ('35328','1432','150','mplsTunnel','0','149'), ('35329','1432','151','srp','0','150'), ('35330','1432','152','voiceOverAtm','0','151'), ('35331','1432','153','voiceOverFrameRelay','0','152'), ('35332','1432','154','idsl','0','153'), ('35333','1432','155','compositeLink','0','154'), ('35334','1432','156','ss7SigLink','0','155'), ('35335','1432','157','propWirelessP2P','0','156'), ('35336','1432','158','frForward','0','157'), ('35337','1432','159','rfc1483','0','158'), ('35338','1432','160','usb','0','159'), ('35339','1432','161','ieee8023adLag','0','160'), ('35340','1432','162','bgppolicyaccounting','0','161'), ('35341','1432','163','frf16MfrBundle','0','162'), ('35342','1432','164','h323Gatekeeper','0','163'), ('35343','1432','165','h323Proxy','0','164'), ('35344','1432','166','mpls','0','165'), ('35345','1432','167','mfSigLink','0','166'), ('35346','1432','168','hdsl2','0','167'), ('35347','1432','169','shdsl','0','168'), ('35348','1432','170','ds1FDL','0','169'), ('35349','1432','171','pos','0','170'), ('35350','1432','172','dvbAsiIn','0','171'), ('35351','1432','173','dvbAsiOut','0','172'), ('35352','1432','174','plc','0','173'), ('35353','1432','175','nfas','0','174'), ('35354','1432','176','tr008','0','175'), ('35355','1432','177','gr303RDT','0','176'), ('35356','1432','178','gr303IDT','0','177'), ('35357','1432','179','isup','0','178'), ('35358','1432','180','propDocsWirelessMaclayer','0','179'), ('35359','1432','181','propDocsWirelessDownstream','0','180'), ('35360','1432','182','propDocsWirelessUpstream','0','181'), ('35361','1432','183','hiperlan2','0','182'), ('35362','1432','184','propBWAp2Mp','0','183'), ('35363','1432','185','sonetOverheadChannel','0','184'), ('35364','1432','186','digitalWrapperOverheadChannel','0','185'), ('35365','1432','187','aal2','0','186'), ('35366','1432','188','radioMAC','0','187'), ('35367','1432','189','atmRadio','0','188'), ('35368','1432','190','imt','0','189'), ('35369','1432','191','mvl','0','190'), ('35370','1432','192','reachDSL','0','191'), ('35371','1432','193','frDlciEndPt','0','192'), ('35372','1432','194','atmVciEndPt','0','193'), ('35373','1432','195','opticalChannel','0','194'), ('35374','1432','196','opticalTransport','0','195'), ('35375','1432','197','propAtm','0','196'), ('35376','1432','198','voiceOverCable','0','197'), ('35377','1432','199','infiniband','0','198'), ('35378','1432','200','teLink','0','199'), ('35379','1432','201','q2931','0','200'), ('35380','1432','202','virtualTg','0','201'), ('35381','1432','203','sipTg','0','202'), ('35382','1432','204','sipSig','0','203'), ('35383','1432','205','docsCableUpstreamChannel','0','204'), ('35384','1432','206','econet','0','205'), ('35385','1432','207','pon155','0','206'), ('35386','1432','208','pon622','0','207'), ('35387','1432','209','bridge','0','208'), ('35388','1432','210','linegroup','0','209'), ('35389','1432','211','voiceEMFGD','0','210'), ('35390','1432','212','voiceFGDEANA','0','211'), ('35391','1432','213','voiceDID','0','212'), ('35392','1432','214','mpegTransport','0','213'), ('35393','1432','215','sixToFour','0','214'), ('35394','1432','216','gtp','0','215'), ('35395','1432','217','pdnEtherLoop1','0','216'), ('35396','1432','218','pdnEtherLoop2','0','217'), ('35397','1432','219','opticalChannelGroup','0','218'), ('35398','1432','220','homepna','0','219'), ('35399','1432','221','gfp','0','220'), ('35400','1432','222','ciscoISLvlan','0','221'), ('35401','1432','223','actelisMetaLOOP','0','222'), ('35402','1432','224','fcipLink','0','223'), ('35403','1432','225','rpr','0','224'), ('35404','1432','226','qam','0','225'), ('35405','1432','227','lmp','0','226'), ('35406','1432','228','cblVectaStar','0','227'), ('35407','1432','229','docsCableMCmtsDownstream','0','228'), ('35408','1432','230','adsl2','0','229'), ('35409','1432','231','macSecControlledIF','0','230'), ('35410','1432','232','macSecUncontrolledIF','0','231'), ('35411','1432','233','aviciOpticalEther','0','232'), ('35412','1432','234','atmbond','0','233'), ('35413','1432','235','voiceFGDOS','0','234'), ('35414','1432','236','mocaVersion1','0','235'), ('35415','1432','237','ieee80216WMAN','0','236'), ('35416','1432','238','adsl2plus','0','237'), ('35417','1432','239','dvbRcsMacLayer','0','238'), ('35418','1432','240','dvbTdm','0','239'), ('35419','1432','241','dvbRcsTdma','0','240'), ('35420','1432','242','x86Laps','0','241'), ('35421','1432','243','wwanPP','0','242'), ('35422','1432','244','wwanPP2','0','243'), ('35423','1432','245','voiceEBS','0','244'), ('35424','1432','246','ifPwType','0','245'), ('35425','1432','247','ilan','0','246'), ('35426','1432','248','pip','0','247'), ('35427','1432','249','aluELP','0','248'), ('35428','1432','250','gpon','0','249'), ('35429','1432','251','vdsl2','0','250'), ('35430','1432','252','capwapDot11Profile','0','251'), ('35431','1432','253','capwapDot11Bss','0','252'), ('35432','1432','254','capwapWtpVirtualRadio','0','253'), ('35433','1432','255','bits','0','254'), ('35434','1432','256','docsCableUpstreamRfPort','0','255'), ('35435','1432','257','cableDownstreamRfPort','0','256'), ('35436','1432','258','vmwareVirtualNic','0','257'), ('35437','1432','259','ieee802154','0','258'), ('35438','1432','260','otnOdu','0','259'), ('35439','1432','261','otnOtu','0','260'), ('35440','1432','262','ifVfiType','0','261'), ('35441','1432','263','g9981','0','262'), ('35442','1432','264','g9982','0','263'), ('35443','1432','265','g9983','0','264'), ('35444','1432','266','aluEpon','0','265'), ('35445','1432','267','aluEponOnu','0','266'), ('35446','1432','268','aluEponPhysicalUni','0','267'), ('35447','1432','269','aluEponLogicalLink','0','268'), ('35448','1432','270','aluGponOnu','0','269'), ('35449','1432','271','aluGponPhysicalUni','0','270'), ('35450','1432','272','vmwareNicTeam','0','271'), ('35451','1432','277','docsOfdmDownstream','0','272'), ('35452','1432','278','docsOfdmaUpstream','0','273'), ('35453','1432','279','gfast','0','274'), ('35454','1432','280','sdci','0','275'), ('35455','1432','281','xboxWireless','0','276'), ('35456','1432','282','fastdsl','0','277'), ('35457','1432','283','docsCableScte55d1FwdOob','0','278'), ('35458','1432','284','docsCableScte55d1RetOob','0','279'), ('35459','1432','285','docsCableScte55d2DsOob','0','280'), ('35460','1432','286','docsCableScte55d2UsOob','0','281'), ('35461','1432','287','docsCableNdf','0','282'), ('35462','1432','288','docsCableNdr','0','283'), ('35463','1432','289','ptm','0','284'), ('35464','1432','290','ghn','0','285'), ('35465','1433','0','Down','0','0'), ('35466','1433','1','Up','0','1'), ('35467','1434','1','OK','0','0'), ('35468','1434','2','Pending','0','1'), ('35469','1434','3','Failure','0','2'), ('35470','1435','1','Online','0','0'), ('35471','1435','2','Offline','0','1'), ('35472','1435','3','Faulted','0','2'), ('35473','1436','0','not available','0','0'), ('35474','1436','1','available','0','1'), ('35475','1436','2','unknown','0','2'), ('35476','1437','1','Unknown','0','0'), ('35477','1437','2','Running','0','1'), ('35478','1437','3','Warning','0','2'), ('35479','1437','4','Testing','0','3'), ('35480','1437','5','Down','0','4'), ('35481','1438','0','Not available','0','0'), ('35482','1438','1','Available','0','1'), ('35483','1438','2','Unknown','0','2'), ('35484','1439','1','up','0','0'), ('35485','1439','2','down','0','1'), ('35486','1439','4','unknown','0','2'), ('35487','1439','5','dormant','0','3'), ('35488','1439','6','notPresent','0','4'), ('35489','1439','7','lowerLayerDown','0','5'), ('35490','1440','1','other','0','0'), ('35491','1440','2','regular1822','0','1'), ('35492','1440','3','hdh1822','0','2'), ('35493','1440','4','ddnX25','0','3'), ('35494','1440','5','rfc877x25','0','4'), ('35495','1440','6','ethernetCsmacd','0','5'), ('35496','1440','7','iso88023Csmacd','0','6'), ('35497','1440','8','iso88024TokenBus','0','7'), ('35498','1440','9','iso88025TokenRing','0','8'), ('35499','1440','10','iso88026Man','0','9'), ('35500','1440','11','starLan','0','10'), ('35501','1440','12','proteon10Mbit','0','11'), ('35502','1440','13','proteon80Mbit','0','12'), ('35503','1440','14','hyperchannel','0','13'), ('35504','1440','15','fddi','0','14'), ('35505','1440','16','lapb','0','15'), ('35506','1440','17','sdlc','0','16'), ('35507','1440','18','ds1','0','17'), ('35508','1440','19','e1','0','18'), ('35509','1440','20','basicISDN','0','19'), ('35510','1440','21','primaryISDN','0','20'), ('35511','1440','22','propPointToPointSerial','0','21'), ('35512','1440','23','ppp','0','22'), ('35513','1440','24','softwareLoopback','0','23'), ('35514','1440','25','eon','0','24'), ('35515','1440','26','ethernet3Mbit','0','25'), ('35516','1440','27','nsip','0','26'), ('35517','1440','28','slip','0','27'), ('35518','1440','29','ultra','0','28'), ('35519','1440','30','ds3','0','29'), ('35520','1440','31','sip','0','30'), ('35521','1440','32','frameRelay','0','31'), ('35522','1440','33','rs232','0','32'), ('35523','1440','34','para','0','33'), ('35524','1440','35','arcnet','0','34'), ('35525','1440','36','arcnetPlus','0','35'), ('35526','1440','37','atm','0','36'), ('35527','1440','38','miox25','0','37'), ('35528','1440','39','sonet','0','38'), ('35529','1440','40','x25ple','0','39'), ('35530','1440','41','iso88022llc','0','40'), ('35531','1440','42','localTalk','0','41'), ('35532','1440','43','smdsDxi','0','42'), ('35533','1440','44','frameRelayService','0','43'), ('35534','1440','45','v35','0','44'), ('35535','1440','46','hssi','0','45'), ('35536','1440','47','hippi','0','46'), ('35537','1440','48','modem','0','47'), ('35538','1440','49','aal5','0','48'), ('35539','1440','50','sonetPath','0','49'), ('35540','1440','51','sonetVT','0','50'), ('35541','1440','52','smdsIcip','0','51'), ('35542','1440','53','propVirtual','0','52'), ('35543','1440','54','propMultiplexor','0','53'), ('35544','1440','55','ieee80212','0','54'), ('35545','1440','56','fibreChannel','0','55'), ('35546','1440','57','hippiInterface','0','56'), ('35547','1440','58','frameRelayInterconnect','0','57'), ('35548','1440','59','aflane8023','0','58'), ('35549','1440','60','aflane8025','0','59'), ('35550','1440','61','cctEmul','0','60'), ('35551','1440','62','fastEther','0','61'), ('35552','1440','63','isdn','0','62'), ('35553','1440','64','v11','0','63'), ('35554','1440','65','v36','0','64'), ('35555','1440','66','g703at64k','0','65'), ('35556','1440','67','g703at2mb','0','66'), ('35557','1440','68','qllc','0','67'), ('35558','1440','69','fastEtherFX','0','68'), ('35559','1440','70','channel','0','69'), ('35560','1440','71','ieee80211','0','70'), ('35561','1440','72','ibm370parChan','0','71'), ('35562','1440','73','escon','0','72'), ('35563','1440','74','dlsw','0','73'), ('35564','1440','75','isdns','0','74'), ('35565','1440','76','isdnu','0','75'), ('35566','1440','77','lapd','0','76'), ('35567','1440','78','ipSwitch','0','77'), ('35568','1440','79','rsrb','0','78'), ('35569','1440','80','atmLogical','0','79'), ('35570','1440','81','ds0','0','80'), ('35571','1440','82','ds0Bundle','0','81'), ('35572','1440','83','bsc','0','82'), ('35573','1440','84','async','0','83'), ('35574','1440','85','cnr','0','84'), ('35575','1440','86','iso88025Dtr','0','85'), ('35576','1440','87','eplrs','0','86'), ('35577','1440','88','arap','0','87'), ('35578','1440','89','propCnls','0','88'), ('35579','1440','90','hostPad','0','89'), ('35580','1440','91','termPad','0','90'), ('35581','1440','92','frameRelayMPI','0','91'), ('35582','1440','93','x213','0','92'), ('35583','1440','94','adsl','0','93'), ('35584','1440','95','radsl','0','94'), ('35585','1440','96','sdsl','0','95'), ('35586','1440','97','vdsl','0','96'), ('35587','1440','98','iso88025CRFPInt','0','97'), ('35588','1440','99','myrinet','0','98'), ('35589','1440','100','voiceEM','0','99'), ('35590','1440','101','voiceFXO','0','100'), ('35591','1440','102','voiceFXS','0','101'), ('35592','1440','103','voiceEncap','0','102'), ('35593','1440','104','voiceOverIp','0','103'), ('35594','1440','105','atmDxi','0','104'), ('35595','1440','106','atmFuni','0','105'), ('35596','1440','107','atmIma','0','106'), ('35597','1440','108','pppMultilinkBundle','0','107'), ('35598','1440','109','ipOverCdlc','0','108'), ('35599','1440','110','ipOverClaw','0','109'), ('35600','1440','111','stackToStack','0','110'), ('35601','1440','112','virtualIpAddress','0','111'), ('35602','1440','113','mpc','0','112'), ('35603','1440','114','ipOverAtm','0','113'), ('35604','1440','115','iso88025Fiber','0','114'), ('35605','1440','116','tdlc','0','115'), ('35606','1440','117','gigabitEthernet','0','116'), ('35607','1440','118','hdlc','0','117'), ('35608','1440','119','lapf','0','118'), ('35609','1440','120','v37','0','119'), ('35610','1440','121','x25mlp','0','120'), ('35611','1440','122','x25huntGroup','0','121'), ('35612','1440','123','trasnpHdlc','0','122'), ('35613','1440','124','interleave','0','123'), ('35614','1440','125','fast','0','124'), ('35615','1440','126','ip','0','125'), ('35616','1440','127','docsCableMaclayer','0','126'), ('35617','1440','128','docsCableDownstream','0','127'), ('35618','1440','129','docsCableUpstream','0','128'), ('35619','1440','130','a12MppSwitch','0','129'), ('35620','1440','131','tunnel','0','130'), ('35621','1440','132','coffee','0','131'), ('35622','1440','133','ces','0','132'), ('35623','1440','134','atmSubInterface','0','133'), ('35624','1440','135','l2vlan','0','134'), ('35625','1440','136','l3ipvlan','0','135'), ('35626','1440','137','l3ipxvlan','0','136'), ('35627','1440','138','digitalPowerline','0','137'), ('35628','1440','139','mediaMailOverIp','0','138'), ('35629','1440','140','dtm','0','139'), ('35630','1440','141','dcn','0','140'), ('35631','1440','142','ipForward','0','141'), ('35632','1440','143','msdsl','0','142'), ('35633','1440','144','ieee1394','0','143'), ('35634','1440','145','if-gsn','0','144'), ('35635','1440','146','dvbRccMacLayer','0','145'), ('35636','1440','147','dvbRccDownstream','0','146'), ('35637','1440','148','dvbRccUpstream','0','147'), ('35638','1440','149','atmVirtual','0','148'), ('35639','1440','150','mplsTunnel','0','149'), ('35640','1440','151','srp','0','150'), ('35641','1440','152','voiceOverAtm','0','151'), ('35642','1440','153','voiceOverFrameRelay','0','152'), ('35643','1440','154','idsl','0','153'), ('35644','1440','155','compositeLink','0','154'), ('35645','1440','156','ss7SigLink','0','155'), ('35646','1440','157','propWirelessP2P','0','156'), ('35647','1440','158','frForward','0','157'), ('35648','1440','159','rfc1483','0','158'), ('35649','1440','160','usb','0','159'), ('35650','1440','161','ieee8023adLag','0','160'), ('35651','1440','162','bgppolicyaccounting','0','161'), ('35652','1440','163','frf16MfrBundle','0','162'), ('35653','1440','164','h323Gatekeeper','0','163'), ('35654','1440','165','h323Proxy','0','164'), ('35655','1440','166','mpls','0','165'), ('35656','1440','167','mfSigLink','0','166'), ('35657','1440','168','hdsl2','0','167'), ('35658','1440','169','shdsl','0','168'), ('35659','1440','170','ds1FDL','0','169'), ('35660','1440','171','pos','0','170'), ('35661','1440','172','dvbAsiIn','0','171'), ('35662','1440','173','dvbAsiOut','0','172'), ('35663','1440','174','plc','0','173'), ('35664','1440','175','nfas','0','174'), ('35665','1440','176','tr008','0','175'), ('35666','1440','177','gr303RDT','0','176'), ('35667','1440','178','gr303IDT','0','177'), ('35668','1440','179','isup','0','178'), ('35669','1440','180','propDocsWirelessMaclayer','0','179'), ('35670','1440','181','propDocsWirelessDownstream','0','180'), ('35671','1440','182','propDocsWirelessUpstream','0','181'), ('35672','1440','183','hiperlan2','0','182'), ('35673','1440','184','propBWAp2Mp','0','183'), ('35674','1440','185','sonetOverheadChannel','0','184'), ('35675','1440','186','digitalWrapperOverheadChannel','0','185'), ('35676','1440','187','aal2','0','186'), ('35677','1440','188','radioMAC','0','187'), ('35678','1440','189','atmRadio','0','188'), ('35679','1440','190','imt','0','189'), ('35680','1440','191','mvl','0','190'), ('35681','1440','192','reachDSL','0','191'), ('35682','1440','193','frDlciEndPt','0','192'), ('35683','1440','194','atmVciEndPt','0','193'), ('35684','1440','195','opticalChannel','0','194'), ('35685','1440','196','opticalTransport','0','195'), ('35686','1440','197','propAtm','0','196'), ('35687','1440','198','voiceOverCable','0','197'), ('35688','1440','199','infiniband','0','198'), ('35689','1440','200','teLink','0','199'), ('35690','1440','201','q2931','0','200'), ('35691','1440','202','virtualTg','0','201'), ('35692','1440','203','sipTg','0','202'), ('35693','1440','204','sipSig','0','203'), ('35694','1440','205','docsCableUpstreamChannel','0','204'), ('35695','1440','206','econet','0','205'), ('35696','1440','207','pon155','0','206'), ('35697','1440','208','pon622','0','207'), ('35698','1440','209','bridge','0','208'), ('35699','1440','210','linegroup','0','209'), ('35700','1440','211','voiceEMFGD','0','210'), ('35701','1440','212','voiceFGDEANA','0','211'), ('35702','1440','213','voiceDID','0','212'), ('35703','1440','214','mpegTransport','0','213'), ('35704','1440','215','sixToFour','0','214'), ('35705','1440','216','gtp','0','215'), ('35706','1440','217','pdnEtherLoop1','0','216'), ('35707','1440','218','pdnEtherLoop2','0','217'), ('35708','1440','219','opticalChannelGroup','0','218'), ('35709','1440','220','homepna','0','219'), ('35710','1440','221','gfp','0','220'), ('35711','1440','222','ciscoISLvlan','0','221'), ('35712','1440','223','actelisMetaLOOP','0','222'), ('35713','1440','224','fcipLink','0','223'), ('35714','1440','225','rpr','0','224'), ('35715','1440','226','qam','0','225'), ('35716','1440','227','lmp','0','226'), ('35717','1440','228','cblVectaStar','0','227'), ('35718','1440','229','docsCableMCmtsDownstream','0','228'), ('35719','1440','230','adsl2','0','229'), ('35720','1440','231','macSecControlledIF','0','230'), ('35721','1440','232','macSecUncontrolledIF','0','231'), ('35722','1440','233','aviciOpticalEther','0','232'), ('35723','1440','234','atmbond','0','233'), ('35724','1440','235','voiceFGDOS','0','234'), ('35725','1440','236','mocaVersion1','0','235'), ('35726','1440','237','ieee80216WMAN','0','236'), ('35727','1440','238','adsl2plus','0','237'), ('35728','1440','239','dvbRcsMacLayer','0','238'), ('35729','1440','240','dvbTdm','0','239'), ('35730','1440','241','dvbRcsTdma','0','240'), ('35731','1440','242','x86Laps','0','241'), ('35732','1440','243','wwanPP','0','242'), ('35733','1440','244','wwanPP2','0','243'), ('35734','1440','245','voiceEBS','0','244'), ('35735','1440','246','ifPwType','0','245'), ('35736','1440','247','ilan','0','246'), ('35737','1440','248','pip','0','247'), ('35738','1440','249','aluELP','0','248'), ('35739','1440','250','gpon','0','249'), ('35740','1440','251','vdsl2','0','250'), ('35741','1440','252','capwapDot11Profile','0','251'), ('35742','1440','253','capwapDot11Bss','0','252'), ('35743','1440','254','capwapWtpVirtualRadio','0','253'), ('35744','1440','255','bits','0','254'), ('35745','1440','256','docsCableUpstreamRfPort','0','255'), ('35746','1440','257','cableDownstreamRfPort','0','256'), ('35747','1440','258','vmwareVirtualNic','0','257'), ('35748','1440','259','ieee802154','0','258'), ('35749','1440','260','otnOdu','0','259'), ('35750','1440','261','otnOtu','0','260'), ('35751','1440','262','ifVfiType','0','261'), ('35752','1440','263','g9981','0','262'), ('35753','1440','264','g9982','0','263'), ('35754','1440','265','g9983','0','264'), ('35755','1440','266','aluEpon','0','265'), ('35756','1440','267','aluEponOnu','0','266'), ('35757','1440','268','aluEponPhysicalUni','0','267'), ('35758','1440','269','aluEponLogicalLink','0','268'), ('35759','1440','270','aluGponOnu','0','269'), ('35760','1440','271','aluGponPhysicalUni','0','270'), ('35761','1440','272','vmwareNicTeam','0','271'), ('35762','1440','277','docsOfdmDownstream','0','272'), ('35763','1440','278','docsOfdmaUpstream','0','273'), ('35764','1440','279','gfast','0','274'), ('35765','1440','280','sdci','0','275'), ('35766','1440','281','xboxWireless','0','276'), ('35767','1440','282','fastdsl','0','277'), ('35768','1440','283','docsCableScte55d1FwdOob','0','278'), ('35769','1440','284','docsCableScte55d1RetOob','0','279'), ('35770','1440','285','docsCableScte55d2DsOob','0','280'), ('35771','1440','286','docsCableScte55d2UsOob','0','281'), ('35772','1440','287','docsCableNdf','0','282'), ('35773','1440','288','docsCableNdr','0','283'), ('35774','1440','289','ptm','0','284'), ('35775','1440','290','ghn','0','285'), ('35776','1441','0','Down','0','0'), ('35777','1441','1','Up','0','1'), ('35778','1442','0','Not available','0','0'), ('35779','1442','1','Available','0','1'), ('35780','1442','2','Unknown','0','2'), ('35781','1443','0','Down','0','0'), ('35782','1443','1','Up','0','1'), ('35783','1444','0','Unknown','0','0'), ('35784','1444','1','Never started','0','1'), ('35785','1444','2','Not available','0','2'), ('35786','1444','3','Running','0','3'), ('35787','1444','4','Broken','0','4'), ('35788','1444','5','Failed','0','5'), ('35789','1444','6','Up to date','0','6'), ('35790','1444','7','Manually up to date','0','7'), ('35791','1445','0','Unknown','0','0'), ('35792','1445','1','Slave','0','1'), ('35793','1445','2','Master','0','2'), ('35794','1446','-2','Unknown forced status','0','0'), ('35795','1446','-1','No peer found','0','1'), ('35796','1446','0','No forced status','0','2'), ('35797','1446','1','Forced active','0','3'), ('35798','1446','2','Forced passive','0','4'), ('35799','1447','-1','Unknown / Error','0','0'), ('35800','1447','0','Not synced','0','1'), ('35801','1447','1','Synced','0','2'), ('35802','1448','0','Not online','0','0'), ('35803','1448','1','Online','0','1'), ('35804','1449','0','Unknown','0','0'), ('35805','1449','1','N/A','0','1'), ('35806','1449','2','None','0','2'), ('35807','1449','3','Active','0','3'), ('35808','1449','4','Passive','0','4'), ('35809','1449','5','Major','0','5'), ('35810','1449','6','Minor','0','6'), ('35811','1449','7','Good','0','7'), ('35812','1450','0','Not in RAID','0','0'), ('35813','1450','1','In RAID','0','1'), ('35814','1451','0','Unknown','0','0'), ('35815','1451','1','Degraded','0','1'), ('35816','1451','2','Missing','0','2'), ('35817','1451','3','Optimal','0','3'), ('35818','1452','0','Unknown','0','0'), ('35819','1452','1','Passed','0','1'), ('35820','1452','2','Failed','0','2'), ('35821','1453','0','Unknown','0','0'), ('35822','1453','1','Failure','0','1'), ('35823','1453','2','Running','0','2'), ('35824','1454','0','Not powered','0','0'), ('35825','1454','1','Powered','0','1'), ('35826','1455','0','Unknown','0','0'), ('35827','1455','1','Not found','0','1'), ('35828','1455','2','Dummy','0','2'), ('35829','1455','3','Optional not powered','0','3'), ('35830','1455','4','Failed','0','4'), ('35831','1455','5','OK','0','5'); INSERT INTO sysmaps (sysmapid,name,width,height,backgroundid,label_type,label_location,highlight,expandproblem,markelements,show_unack,grid_size,grid_show,grid_align,label_format,label_type_host,label_type_hostgroup,label_type_trigger,label_type_map,label_type_image,label_string_host,label_string_hostgroup,label_string_trigger,label_string_map,label_string_image,iconmapid,expand_macros,severity_min,userid,private,show_suppressed) VALUES ('1','Local network','680','200',NULL,'0','0','1','1','1','0','50','1','1','0','2','2','2','2','2','','','','','',NULL,'1','0','1','0','0'); INSERT INTO sysmaps_elements (selementid,sysmapid,elementid,elementtype,iconid_off,iconid_on,label,label_location,x,y,iconid_disabled,iconid_maintenance,elementsubtype,areatype,width,height,viewtype,use_iconmap,evaltype) VALUES ('1','1','10084','0','185',NULL,'{HOST.NAME} {HOST.CONN}','0','111','75',NULL,NULL,'0','0','200','200','0','0','0'); INSERT INTO host_inventory (hostid,inventory_mode,hardware_full,software_full,contact,location,location_lat,location_lon,notes,host_networks,site_notes,poc_1_notes,poc_2_notes) VALUES ('10084','1','','','','','56.97612','24.16553','','','','',''), ('10592','1','','','','','','','','','','',''); INSERT INTO item_discovery (itemdiscoveryid,itemid,parent_itemid) VALUES ('135','22868','22867'), ('136','22869','22867'), ('137','22870','22867'), ('138','22871','22867'), ('139','22872','22867'), ('142','22908','22907'), ('143','22909','22907'), ('144','22910','22907'), ('145','22911','22907'), ('146','22912','22907'), ('147','22945','22944'), ('148','22946','22944'), ('149','22948','22947'), ('150','22949','22947'), ('151','22950','22947'), ('152','22951','22947'), ('153','22952','22947'), ('154','22985','22984'), ('155','22986','22984'), ('156','22988','22987'), ('157','22989','22987'), ('158','22990','22987'), ('159','22991','22987'), ('160','22992','22987'), ('161','23025','23024'), ('162','23026','23024'), ('163','23028','23027'), ('164','23029','23027'), ('165','23030','23027'), ('166','23031','23027'), ('167','23032','23027'), ('170','23068','23067'), ('171','23069','23067'), ('172','23070','23067'), ('173','23071','23067'), ('174','23072','23067'), ('189','23073','23540'), ('190','23074','23540'), ('191','23075','23329'), ('192','23076','23329'), ('885','27212','27209'), ('886','27213','27210'), ('887','27214','27211'), ('898','27246','27242'), ('899','27247','27242'), ('900','27248','27243'), ('901','27249','27244'), ('902','27250','27244'), ('921','27312','27302'), ('922','27313','27303'), ('923','27314','27304'), ('924','27315','27306'), ('925','27316','27307'), ('926','27317','27308'), ('927','27318','27309'), ('928','27319','27310'), ('929','27320','27311'), ('996','27478','27473'), ('997','27479','27474'), ('998','27480','27475'), ('999','27481','27476'), ('1000','27482','27476'), ('1001','27483','27476'), ('1002','27484','27476'), ('1003','27485','27476'), ('1014','27517','27513'), ('1015','27518','27514'), ('1016','27519','27515'), ('1028','27553','27549'), ('1029','27554','27550'), ('1030','27555','27551'), ('1042','27591','27587'), ('1044','27593','27588'), ('1045','27594','27589'), ('1046','27595','27589'), ('1078','27671','27665'), ('1079','27672','27666'), ('1080','27673','27667'), ('1081','27674','27668'), ('1082','27675','27669'), ('1083','27676','27669'), ('1084','27677','27669'), ('1085','27678','27669'), ('1086','27679','27669'), ('1117','27748','27745'), ('1118','27749','27745'), ('1119','27750','27745'), ('1120','27751','27745'), ('1122','27753','27745'), ('1123','27754','27746'), ('1124','27755','27747'), ('1134','27783','27779'), ('1135','27784','27779'), ('1136','27785','27780'), ('1137','27786','27781'), ('1138','27787','27782'), ('1151','27821','27816'), ('1152','27822','27817'), ('1153','27823','27818'), ('1192','27904','27901'), ('1194','27906','27903'), ('1195','27907','27903'), ('1196','27908','27903'), ('1206','27940','27937'), ('1207','27941','27937'), ('1208','27942','27938'), ('1209','27943','27939'), ('1229','28003','28001'), ('1295','28150','28144'), ('1298','28153','28145'), ('1299','28154','28146'), ('1300','28155','28147'), ('1301','28156','28148'), ('1302','28157','28149'), ('1303','28158','28149'), ('1326','28200','28196'), ('1327','28201','28196'), ('1328','28202','28197'), ('1329','28203','28197'), ('1330','28204','28198'), ('1331','28205','28198'), ('1332','28206','28199'), ('1375','28323','28306'), ('1376','28324','28306'), ('1377','28325','28307'), ('1378','28326','28307'), ('1379','28327','28308'), ('1380','28328','28308'), ('1381','28329','28309'), ('1405','28404','28392'), ('1406','28405','28392'), ('1407','28406','28393'), ('1408','28407','28394'), ('1409','28408','28395'), ('1410','28409','28396'), ('1412','28411','28398'), ('1413','28412','28399'), ('1414','28413','28400'), ('1415','28414','28400'), ('1416','28415','28401'), ('1417','28416','28401'), ('1418','28417','28402'), ('1419','28418','28402'), ('1420','28419','28402'), ('1421','28420','28402'), ('1422','28421','28402'), ('1423','28422','28402'), ('1424','28423','28403'), ('1425','28424','28403'), ('1426','28425','28403'), ('1435','28474','28468'), ('1436','28475','28469'), ('1437','28476','28470'), ('1438','28477','28471'), ('1439','28478','28472'), ('1440','28479','28472'), ('1441','28480','28473'), ('1442','28481','28473'), ('1443','28495','28493'), ('1444','28496','28494'), ('1490','28798','28797'), ('1491','28799','28797'), ('1492','28800','28797'), ('1493','28801','28797'), ('1494','28802','28797'), ('1495','28803','28797'), ('1501','28894','27815'), ('1675','29432','29430'), ('1676','29433','29430'), ('1677','29434','29431'), ('1678','29435','29431'), ('1679','29436','29429'), ('1680','29437','29429'), ('1681','29438','29429'), ('1682','29439','29429'), ('1683','29440','29429'), ('1684','29441','29429'), ('1685','29442','29429'), ('1686','29443','29429'), ('1687','29444','29429'), ('1688','29445','29430'), ('1689','29446','29430'), ('1690','29447','29430'), ('1691','29448','29431'), ('1692','29449','29431'), ('1693','29450','29431'), ('1694','29451','29431'), ('1695','29452','29431'), ('1696','29453','29431'), ('1777','29720','29703'), ('1778','29721','29703'), ('1779','29722','29703'), ('1780','29723','29703'), ('1781','29724','29703'), ('1782','29725','29703'), ('1783','29726','29703'), ('1784','29727','29703'), ('1785','29728','29703'), ('1786','29729','29703'), ('1787','29730','29703'), ('1788','29731','29703'), ('1789','29732','29703'), ('1790','29733','29703'), ('1791','29734','29703'), ('1792','29735','29703'), ('1793','29736','29703'), ('1794','29737','29703'), ('1795','29787','29785'), ('1796','29788','29785'), ('1797','29789','29785'), ('1798','29790','29785'), ('1799','29791','29785'), ('1800','29792','29785'), ('1801','29793','29785'), ('1802','29794','29785'), ('1803','29795','29785'), ('1804','29796','29785'), ('1805','29797','29785'), ('1806','29798','29785'), ('1807','29799','29785'), ('1808','29800','29785'), ('1809','29801','29785'), ('1810','29802','29785'), ('1811','29803','29786'), ('1812','29804','29786'), ('1813','29805','29786'), ('1814','29806','29786'), ('1815','29807','29786'), ('1816','29808','29786'), ('1817','29809','29786'), ('1818','29810','29786'), ('1819','29811','29786'), ('1820','29812','29786'), ('1821','29813','29786'), ('1822','29814','29786'), ('1823','29815','29786'), ('1824','29816','29786'), ('1825','29817','29786'), ('1826','29818','29786'), ('1827','29819','29786'), ('1828','29820','29786'), ('1829','30027','30026'), ('1830','30028','30026'), ('1831','30029','30026'), ('1832','30030','30026'), ('1833','30031','30026'), ('1834','30032','30026'), ('1835','30033','30026'), ('1836','30034','30026'), ('1837','30035','30026'), ('1838','30036','30026'), ('1839','30037','30026'), ('1840','30038','30026'), ('1841','30039','30026'), ('1842','30040','30026'), ('1843','30041','30026'), ('1844','30042','30026'), ('1845','30066','30057'), ('1846','30067','30057'), ('1847','30068','30057'), ('1848','30069','30057'), ('1849','30070','30058'), ('1850','30071','30059'), ('1851','30072','30060'), ('1852','30073','30060'), ('1853','30074','30060'), ('1854','30075','30061'), ('1855','30076','30062'), ('1856','30077','30062'), ('1857','30078','30062'), ('1858','30079','30062'), ('1859','30080','30063'), ('1860','30081','30063'), ('1861','30082','30063'), ('1862','30083','30064'), ('1863','30084','30064'), ('1864','30085','30065'), ('1865','30091','30090'), ('1866','30092','30090'), ('1871','30105','27473'), ('1872','30107','27512'), ('1873','30108','27548'), ('1874','30110','27587'), ('1875','30111','27587'), ('1876','30112','27665'), ('1877','30113','28145'), ('1878','30114','28145'), ('1879','30115','28145'), ('1880','30116','27745'), ('1881','30118','27815'), ('1882','30129','30127'), ('1883','30130','30128'), ('1884','30131','28002'), ('1915','30196','30194'), ('1916','30197','30193'), ('1917','30198','30193'), ('1918','30199','30193'), ('1919','30200','30193'), ('1920','30201','30193'), ('1921','30202','30193'), ('1922','30203','30193'), ('1923','30204','30193'), ('1924','30205','30193'), ('1925','30206','30194'), ('1926','30207','30194'), ('1927','30208','30194'), ('1928','30209','30194'), ('1929','30210','30194'), ('1930','30211','30194'), ('1931','30212','30194'), ('1932','30213','30194'), ('1933','30214','30194'), ('1934','30215','30194'), ('1935','30216','30194'), ('1936','30217','30194'), ('1937','30218','30194'), ('1938','30219','30195'), ('1939','30220','30195'), ('1940','30221','30195'), ('1941','30222','30195'), ('1942','30223','30195'), ('1943','30224','30195'), ('1944','30225','30195'), ('1945','30226','30195'), ('1946','30227','30195'), ('1947','30228','30195'), ('1948','30229','30195'), ('1949','30239','30237'), ('1950','30240','30236'), ('1951','30241','30236'), ('1952','30242','30236'), ('1953','30243','30236'), ('1954','30244','30236'), ('1955','30245','30236'), ('1956','30246','30236'), ('1957','30247','30236'), ('1958','30248','30236'), ('1959','30249','30237'), ('1960','30250','30237'), ('1961','30251','30237'), ('1962','30252','30237'), ('1963','30253','30237'), ('1964','30254','30237'), ('1965','30255','30237'), ('1966','30256','30237'), ('1967','30257','30237'), ('1968','30258','30237'), ('1969','30259','30237'), ('1970','30260','30237'), ('1971','30261','30237'), ('1972','30262','30238'), ('1973','30263','30238'), ('1974','30264','30238'), ('1975','30265','30238'), ('1976','30266','30238'), ('1977','30267','30238'), ('1978','30268','30238'), ('1979','30269','30238'), ('1980','30270','30238'), ('1981','30271','30238'), ('1982','30272','30238'), ('1983','30344','30337'), ('1984','30345','30337'), ('1985','30346','30337'), ('1986','30347','30337'), ('1987','30348','30338'), ('1988','30349','30338'), ('1989','30350','30338'), ('1990','30351','30339'), ('1991','30352','30339'), ('1992','30353','30339'), ('1993','30354','30339'), ('1994','30355','30339'), ('1995','30356','30339'), ('1996','30357','30339'), ('1997','30358','30339'), ('1998','30359','30339'), ('1999','30360','30339'), ('2000','30361','30339'), ('2001','30362','30339'), ('2002','30363','30339'), ('2003','30364','30339'), ('2004','30365','30339'), ('2005','30366','30339'), ('2006','30367','30339'), ('2007','30368','30339'), ('2008','30369','30339'), ('2009','30370','30339'), ('2010','30371','30339'), ('2011','30372','30340'), ('2012','30373','30340'), ('2013','30374','30340'), ('2014','30375','30340'), ('2015','30376','30340'), ('2016','30377','30340'), ('2017','30378','30340'), ('2018','30379','30340'), ('2019','30380','30340'), ('2020','30381','30340'), ('2021','30382','30340'), ('2022','30383','30340'), ('2023','30384','30340'), ('2024','30385','30340'), ('2025','30386','30340'), ('2026','30387','30340'), ('2027','30388','30340'), ('2028','30389','30341'), ('2029','30390','30341'), ('2030','30391','30341'), ('2031','30392','30341'), ('2032','30393','30341'), ('2033','30394','30341'), ('2034','30395','30341'), ('2035','30396','30342'), ('2036','30397','30343'), ('2037','30398','30343'), ('2038','30399','30343'), ('2039','30400','30343'), ('2040','30401','30343'), ('2041','30402','30343'), ('2042','30403','30343'), ('2043','30404','30343'), ('2060','30474','30472'), ('2061','30475','30473'), ('2062','30476','30473'), ('2063','30477','30473'), ('2064','30478','30473'), ('2065','30522','30520'), ('2066','30523','30521'), ('2067','30524','30521'), ('2068','30525','30521'), ('2069','30526','30521'), ('2070','30573','30571'), ('2071','30574','30571'), ('2072','30575','30571'), ('2073','30576','30571'), ('2074','30577','30571'), ('2075','30578','30571'), ('2076','30579','30571'), ('2077','30580','30571'), ('2078','30581','30571'), ('2079','30582','30571'), ('2080','30583','30571'), ('2081','30584','30571'), ('2082','30585','30571'), ('2083','30586','30571'), ('2084','30587','30571'), ('2085','30588','30571'), ('2086','30589','30571'), ('2087','30590','30571'), ('2088','30591','30571'), ('2089','30592','30571'), ('2090','30593','30571'), ('2091','30594','30571'), ('2092','30595','30571'), ('2093','30596','30571'), ('2094','30597','30571'), ('2095','30598','30571'), ('2096','30599','30571'), ('2097','30600','30571'), ('2098','30601','30571'), ('2099','30602','30571'), ('2100','30603','30571'), ('2101','30604','30571'), ('2102','30605','30571'), ('2103','30606','30571'), ('2104','30607','30571'), ('2105','30608','30571'), ('2106','30609','30572'), ('2107','30610','30572'), ('2108','30680','30678'), ('2109','30681','30679'), ('2110','30682','30679'), ('2111','30683','30679'), ('2112','30684','30679'), ('2113','30688','30686'), ('2114','30689','30687'), ('2115','30714','30713'), ('2116','30715','30713'), ('2117','30716','30713'), ('2118','30717','30713'), ('2119','30718','30713'), ('2120','30719','30713'), ('2121','30720','30713'), ('2122','30721','30713'), ('2123','30722','30713'), ('2124','30723','30713'), ('2125','30724','30713'), ('2126','30725','30713'), ('2127','30726','30713'), ('2128','30727','30713'), ('2129','30728','30713'), ('2130','30729','30713'), ('2131','30730','30713'), ('2132','30731','30713'), ('2133','30732','30713'), ('2134','30733','30713'), ('2135','30734','30713'), ('2136','30735','30713'), ('2137','30736','30713'), ('2138','30737','30713'), ('2139','30738','30713'), ('2140','30739','30713'), ('2141','30740','30713'), ('2142','30741','30713'), ('2143','30742','30713'), ('2144','30743','30713'), ('2145','30744','30713'), ('2146','30745','30713'), ('2147','30746','30713'), ('2148','30747','30713'), ('2149','30748','30713'), ('2150','30749','30713'), ('2151','30750','30713'), ('2152','30751','30713'), ('2153','30752','30713'), ('2154','30753','30713'), ('2155','30754','30713'), ('2156','30755','30713'), ('2157','30756','30713'), ('2158','30757','30713'), ('2159','30758','30713'), ('2214','30877','30874'), ('2215','30878','30874'), ('2216','30879','30874'), ('2217','30880','30875'), ('2218','30881','30875'), ('2219','30882','30875'), ('2220','30883','30875'), ('2221','30884','30875'), ('2222','30885','30875'), ('2223','30886','30875'), ('2224','30887','30875'), ('2225','30888','30875'), ('2226','30889','30875'), ('2227','30890','30875'), ('2228','30891','30875'), ('2230','30893','30876'), ('2231','30894','30876'), ('2232','30895','30876'), ('2233','30917','30916'), ('2234','30918','30916'), ('2235','30919','30916'), ('2236','30920','30916'), ('2237','30921','30916'), ('2238','30922','30916'), ('2239','30963','30961'), ('2240','30964','30962'), ('2241','30965','30962'), ('2242','30966','30962'), ('2243','30967','30962'), ('2244','31006','31005'), ('2245','31007','31005'), ('2246','31008','31005'), ('2247','31009','31005'), ('2248','31048','31047'), ('2249','31049','31047'), ('2250','31050','31047'), ('2251','31051','31047'), ('2261','31137','31123'), ('2262','31138','31123'), ('2263','31139','31123'), ('2264','31140','31123'), ('2265','31141','31123'), ('2266','31142','31123'), ('2267','31143','31123'), ('2268','31144','31123'), ('2269','31145','31123'), ('2270','31146','31123'), ('2271','31147','31123'), ('2272','31148','31123'), ('2273','31149','31123'), ('2274','31150','31123'), ('2308','31335','31334'), ('2309','31336','31334'), ('2310','31337','31334'), ('2311','31338','31334'), ('2312','31339','31334'), ('2313','31340','31334'), ('2314','31341','31334'), ('2315','31342','31334'), ('2316','31343','31334'), ('2317','31344','31334'), ('2318','31345','31334'), ('2319','31346','31334'), ('2320','31347','31334'), ('2321','31348','31334'), ('2322','31349','31334'), ('2323','31350','31334'), ('2324','31351','31334'), ('2325','31352','31334'), ('2326','31353','31334'), ('2327','31354','31334'), ('2328','31355','31334'), ('2329','31356','31334'), ('2330','31357','31334'), ('2331','31358','31334'), ('2332','31359','31334'), ('2333','31360','31334'), ('2334','31361','31334'), ('2335','31362','31334'), ('2336','31363','31334'), ('2435','31561','31558'), ('2436','31562','31558'), ('2437','31563','31558'), ('2438','31564','31558'), ('2439','31565','31558'), ('2440','31566','31559'), ('2441','31567','31559'), ('2442','31568','31559'), ('2443','31569','31559'), ('2444','31663','31655'), ('2445','31664','31656'), ('2446','31665','31656'), ('2447','31666','31656'), ('2448','31667','31656'), ('2481','31807','31803'), ('2482','31808','31803'), ('2483','31809','31804'), ('2484','31810','31804'), ('2485','31811','31805'), ('2486','31812','31805'), ('2487','31813','31805'), ('2488','31814','31806'), ('2489','31815','31806'), ('2596','32170','32168'), ('2597','32171','32168'), ('2598','32172','32168'), ('2599','32173','32168'), ('2600','32174','32168'), ('2601','32175','32168'), ('2641','32405','32404'), ('2642','32406','32404'), ('2643','32407','32404'), ('2644','32408','32404'), ('2645','32409','32404'), ('2646','32410','32404'), ('2647','32411','32404'), ('2648','32412','32404'), ('2649','32413','32404'), ('2650','32414','32404'), ('2651','32415','32404'), ('2652','32416','32404'), ('2653','32417','32404'), ('2654','32418','32404'), ('2655','32419','32404'), ('2656','32420','32404'), ('2657','32421','32404'), ('2658','32422','32404'), ('2659','32423','32404'), ('2660','32424','32404'), ('2661','32425','32404'), ('2662','32426','32404'), ('2663','32427','32404'), ('2664','32428','32404'), ('2665','32429','32404'), ('2666','32430','32404'), ('2667','32431','32404'), ('2668','32432','32404'), ('2669','32433','32404'), ('2670','32434','32404'), ('2671','32436','32435'), ('2672','32437','32435'), ('2673','32438','32435'), ('2674','32439','32435'), ('2675','32442','32440'), ('2676','32443','32440'), ('2677','32444','32440'), ('2678','32445','32440'), ('2679','32446','32440'), ('2680','32447','32440'), ('2681','32448','32440'), ('2682','32449','32440'), ('2683','32450','32440'), ('2684','32451','32440'), ('2685','32452','32440'), ('2686','32453','32440'), ('2687','32454','32441'), ('2688','32455','32441'), ('2689','32456','32441'), ('2690','32457','32441'), ('2691','32458','32441'), ('2692','32459','32441'), ('2693','32460','32441'), ('2694','32461','32441'), ('2695','32462','32441'), ('2696','32486','32465'), ('2697','32487','32466'), ('2698','32488','32467'), ('2699','32489','32468'), ('2700','32490','32469'), ('2701','32491','32470'), ('2702','32492','32471'), ('2703','32493','32472'), ('2704','32494','32473'), ('2705','32495','32474'), ('2706','32496','32475'), ('2707','32497','32476'), ('2708','32498','32477'), ('2709','32499','32478'), ('2710','32500','32479'), ('2711','32501','32480'), ('2712','32502','32481'), ('2713','32503','32482'), ('2714','32504','32483'), ('2715','32505','32484'), ('2716','32506','32485'), ('2717','32507','32169'), ('2718','32508','32169'), ('2719','32509','32169'), ('2720','32510','32169'), ('2721','32511','32169'), ('2722','32512','32169'), ('2723','32513','32169'), ('2724','32514','32169'), ('2725','32515','32169'), ('2726','32528','32525'), ('2727','32529','32525'), ('2728','32530','32525'), ('2729','32531','32525'), ('2730','32532','32525'), ('2731','32533','32525'), ('2732','32534','32525'), ('2733','32535','32525'), ('2734','32536','32525'), ('2735','32537','32525'), ('2736','32538','32525'), ('2737','32539','32525'), ('2738','32540','32525'), ('2739','32541','32525'), ('2740','32542','32525'), ('2741','32543','32526'), ('2742','32544','32526'), ('2743','32545','32527'), ('2744','32558','32555'), ('2745','32559','32555'), ('2746','32560','32555'), ('2747','32561','32555'), ('2748','32562','32555'), ('2749','32563','32555'), ('2750','32564','32555'), ('2751','32565','32555'), ('2752','32566','32555'), ('2753','32567','32555'), ('2754','32568','32555'), ('2755','32569','32555'), ('2756','32570','32555'), ('2757','32571','32555'), ('2758','32572','32555'), ('2759','32573','32556'), ('2760','32574','32556'), ('2761','32575','32557'), ('2762','32621','32619'), ('2763','32622','32619'), ('2764','32623','32619'), ('2765','32624','32619'), ('2766','32625','32619'), ('2767','32626','32619'), ('2768','32627','32619'), ('2769','32628','32619'), ('2770','32629','32619'), ('2771','32630','32619'), ('2772','32631','32620'), ('2773','32632','32620'), ('2774','32633','32620'), ('2775','32670','32668'), ('2776','32671','32669'), ('2777','32672','32668'), ('2778','32673','32668'), ('2779','32674','32668'), ('2780','32675','32668'), ('2781','32676','32668'), ('2782','32677','32668'), ('2783','32678','32668'), ('2784','32679','32668'), ('2785','32680','32668'), ('2786','32681','32668'), ('2787','32682','32669'), ('2788','32683','32669'), ('2789','32684','32669'), ('2790','32685','32669'), ('2791','32686','32669'), ('2792','32687','32669'), ('2793','32688','32669'), ('2794','32689','32669'), ('2795','32690','32669'), ('2796','32691','32669'), ('2797','32692','32669'), ('2798','32758','32755'), ('2799','32759','32756'), ('2800','32760','32757'), ('2801','32761','32757'), ('2802','32766','32762'), ('2803','32767','32763'), ('2804','32768','32763'), ('2805','32769','32763'), ('2806','32770','32763'), ('2807','32771','32763'), ('2808','32772','32764'), ('2809','32773','32764'), ('2810','32774','32764'), ('2811','32775','32764'), ('2812','32776','32764'), ('2813','32777','32765'), ('2814','32778','32765'), ('2815','32779','32765'), ('2816','32871','32869'), ('2817','32872','32869'), ('2818','32873','32869'), ('2819','32874','32866'), ('2820','32875','32866'), ('2821','32876','32867'), ('2822','32877','32867'), ('2823','32878','32867'), ('2824','32879','32867'), ('2825','32880','32867'), ('2826','32881','32867'), ('2827','32882','32867'), ('2828','32883','32868'), ('2829','32884','32870'), ('2830','32885','32870'), ('2831','32886','32870'), ('2832','32887','32870'), ('2833','32888','32870'), ('2834','32889','32870'), ('2835','32935','32931'), ('2836','32936','32931'), ('2837','32937','32931'), ('2838','32938','32931'), ('2839','32939','32932'), ('2840','32940','32932'), ('2841','32941','32932'), ('2842','32942','32932'), ('2843','32943','32933'), ('2844','32944','32933'), ('2845','32945','32933'), ('2846','32946','32933'), ('2847','32947','32934'), ('2848','32948','32934'), ('2849','32949','32934'), ('2850','32950','32934'), ('2851','32958','32954'), ('2852','32959','32955'), ('2853','32960','32955'), ('2854','32961','32955'), ('2855','32962','32955'), ('2856','33000','32998'), ('2857','33001','32998'), ('2858','33002','32998'), ('2859','33003','32998'), ('2860','33004','32998'), ('2861','33005','32998'), ('2862','33006','32999'), ('2863','33007','32999'), ('2864','33008','32999'), ('2865','33009','32999'), ('2866','33010','32999'), ('2867','33011','32999'), ('2868','33096','33095'), ('2869','33097','33095'), ('2870','33098','33095'), ('2871','33099','33095'), ('2872','33100','33095'), ('2873','33101','33095'), ('2874','33102','33095'), ('2875','33103','33095'), ('2876','33104','33095'), ('2877','33105','33095'), ('2878','33106','33095'), ('2879','33107','33095'), ('2880','33108','33095'), ('2881','33109','33095'), ('2882','33110','33095'), ('2883','33111','33095'), ('2884','33112','33095'), ('2885','33113','33095'), ('2886','33114','33095'), ('2887','33115','33095'), ('2888','33116','33095'), ('2889','33117','33095'), ('2890','33118','33095'), ('2891','33119','33095'), ('2892','33120','33095'), ('2893','33121','33095'), ('2894','33122','33095'), ('2895','33123','33095'), ('2896','33124','33095'), ('2897','33125','33095'), ('2898','33134','33133'), ('2899','33135','33133'), ('2900','33136','33133'), ('2901','33137','33133'), ('2902','33138','33133'), ('2903','33139','30473'), ('2904','33148','33147'), ('2905','33149','33147'), ('2906','33150','33147'), ('2907','33151','33147'), ('2908','33152','33147'), ('2909','33153','30679'), ('2910','33162','30521'), ('2911','33163','33161'), ('2912','33164','33161'), ('2913','33165','33161'), ('2914','33166','33161'), ('2915','33167','33161'), ('2920','33178','33177'), ('2921','33179','33177'), ('2922','33180','33177'), ('2923','33183','33182'), ('2924','33206','33205'), ('2925','33226','33225'), ('2926','33249','33248'), ('2927','33258','33257'), ('2928','33277','33276'), ('2929','33296','33295'), ('2930','33312','33306'), ('2931','33313','33307'), ('2932','33314','33307'), ('2933','33315','33308'), ('2934','33316','33308'), ('2935','33317','33309'), ('2936','33318','33310'), ('2937','33319','33311'), ('2938','33320','33311'), ('2955','33357','33352'), ('2956','33358','33352'), ('2957','33359','33352'), ('2958','33360','33352'), ('2959','33361','33352'), ('2960','33362','33352'), ('2961','33363','33352'), ('2962','33364','33352'), ('2963','33365','33352'), ('2964','33366','33352'), ('2965','33367','33352'), ('2966','33368','33353'), ('2967','33369','33354'), ('2968','33370','33354'), ('2969','33371','33354'), ('2970','33372','33354'), ('2971','33373','33354'), ('2972','33374','33354'), ('2973','33375','33355'), ('2974','33376','33355'), ('2975','33377','33356'), ('2976','33378','33356'), ('2977','33379','33356'), ('2978','33380','33356'), ('2979','33381','33356'), ('2980','33382','33356'), ('2981','33383','33356'), ('2982','33384','33356'), ('2983','33385','33356'), ('2984','33386','33356'), ('2985','33387','33356'), ('2986','33388','33356'), ('2987','33467','33465'), ('2988','33468','33465'), ('2989','33469','33465'), ('2990','33470','33465'), ('2991','33471','33465'), ('2992','33472','33465'), ('2993','33473','33465'), ('2994','33474','33465'), ('2995','33475','33465'), ('2996','33476','33465'), ('2997','33477','33465'), ('2998','33478','33465'), ('2999','33479','33465'), ('3000','33480','33466'), ('3001','33481','33466'), ('3002','33482','33466'), ('3003','33483','33466'), ('3004','33484','33466'), ('3005','33485','33466'), ('3006','33486','33466'), ('3007','33487','33466'), ('3008','33488','33466'), ('3009','33489','33466'), ('3010','33490','33466'), ('3011','33522','33520'), ('3012','33523','33520'), ('3013','33524','33520'), ('3014','33525','33520'), ('3015','33526','33520'), ('3016','33527','33521'), ('3017','33528','33521'), ('3018','33529','33521'), ('3019','33530','33521'), ('3020','33531','33521'), ('3021','33532','33521'), ('3022','33533','33521'), ('3023','33534','33521'), ('3024','33535','33521'), ('3025','33536','33521'), ('3026','33537','33521'), ('3027','33538','33521'), ('3028','33539','33521'), ('3029','33540','33521'), ('3030','33541','33521'), ('3031','33552','33542'), ('3032','33553','33542'), ('3033','33554','33542'), ('3034','33555','33542'), ('3035','33556','33542'), ('3036','33557','33542'), ('3037','33558','33542'), ('3038','33559','33542'), ('3039','33560','33542'), ('3040','33561','33542'), ('3041','33562','33542'), ('3042','33563','33543'), ('3043','33564','33543'), ('3044','33565','33543'), ('3045','33566','33543'), ('3046','33567','33543'), ('3047','33568','33543'), ('3048','33569','33543'), ('3049','33570','33543'), ('3050','33571','33543'), ('3051','33572','33543'), ('3052','33573','33544'), ('3053','33574','33544'), ('3054','33575','33544'), ('3055','33576','33544'), ('3056','33577','33544'), ('3057','33578','33545'), ('3058','33579','33545'), ('3059','33580','33545'), ('3060','33581','33546'), ('3061','33582','33546'), ('3063','33584','33546'), ('3064','33585','33547'), ('3065','33586','33547'), ('3066','33587','33547'), ('3067','33588','33547'), ('3068','33589','33547'), ('3069','33590','33547'), ('3070','33591','33547'), ('3071','33592','33547'), ('3072','33593','33548'), ('3073','33594','33548'), ('3074','33595','33548'), ('3075','33596','33548'), ('3076','33597','33548'), ('3077','33598','33549'), ('3078','33599','33549'), ('3079','33600','33549'), ('3080','33601','33549'), ('3081','33602','33549'), ('3082','33603','33549'), ('3083','33604','33549'), ('3084','33605','33549'), ('3085','33606','33549'), ('3086','33607','33550'), ('3087','33608','33550'), ('3088','33609','33550'), ('3089','33610','33550'), ('3090','33611','33551'), ('3091','33612','33551'), ('3092','33613','33551'), ('3093','33614','33551'), ('3094','33615','33551'), ('3095','33616','33551'), ('3096','33617','33551'), ('3097','33618','33551'), ('3098','33619','33551'), ('3099','33621','28392'), ('3100','33622','28393'), ('3101','33623','28394'), ('3102','33624','28397'), ('3103','33625','28397'), ('3104','33626','28395'), ('3105','33627','28396'), ('3106','33628','33620'), ('3107','33629','33620'), ('3108','33635','33634'), ('3109','33636','33634'), ('3110','33637','33634'), ('3111','33650','32931'), ('3112','33651','32932'), ('3113','33652','32932'), ('3114','33653','32932'), ('3115','33654','32932'), ('3116','33655','32934'), ('3135','33703','33695'), ('3136','33704','33695'), ('3137','33705','33696'), ('3138','33706','33696'), ('3139','33707','33696'), ('3140','33708','33696'), ('3141','33709','33696'), ('3142','33710','33697'), ('3143','33711','33697'), ('3144','33712','33697'), ('3145','33713','33697'), ('3146','33714','33698'), ('3147','33715','33698'), ('3148','33716','33698'), ('3149','33717','33699'), ('3150','33718','33699'), ('3151','33719','33700'), ('3152','33720','33700'), ('3153','33721','33700'), ('3154','33722','33700'), ('3155','33723','33700'), ('3156','33724','33700'), ('3157','33725','33700'), ('3158','33726','33700'), ('3159','33727','33700'), ('3160','33728','33700'), ('3161','33729','33700'), ('3162','33730','33701'), ('3163','33731','33701'), ('3164','33732','33701'), ('3165','33733','33701'), ('3166','33734','33701'), ('3167','33735','33701'), ('3168','33736','33701'), ('3169','33737','33701'), ('3170','33738','33702'), ('3171','33739','33702'), ('3172','33740','33702'), ('3173','33741','33702'), ('3174','33742','33702'), ('3175','33743','33702'), ('3176','33747','33744'), ('3177','33748','33745'), ('3178','33749','33746'), ('3179','33750','33746'), ('3180','33751','33746'), ('3181','33752','33746'), ('3182','33753','33746'), ('3183','33757','33754'), ('3184','33758','33755'), ('3185','33759','33756'), ('3186','33760','33756'), ('3187','33761','33756'), ('3188','33762','33756'), ('3189','33763','33756'), ('3190','33812','33808'), ('3191','33813','33809'), ('3192','33814','33808'), ('3193','33815','33808'), ('3194','33816','33808'), ('3195','33817','33808'), ('3196','33818','33808'), ('3197','33819','33808'), ('3198','33820','33808'), ('3199','33821','33808'), ('3200','33822','33808'), ('3201','33823','33808'), ('3202','33824','33808'), ('3203','33825','33808'), ('3204','33826','33808'), ('3205','33827','33808'), ('3206','33828','33808'), ('3207','33829','33808'), ('3208','33830','33808'), ('3209','33831','33808'), ('3210','33832','33808'), ('3211','33833','33808'), ('3212','33834','33808'), ('3213','33835','33808'), ('3214','33836','33808'), ('3215','33837','33808'), ('3216','33838','33808'), ('3217','33839','33808'), ('3218','33840','33809'), ('3219','33841','33809'), ('3220','33842','33809'), ('3221','33843','33809'), ('3222','33844','33809'), ('3223','33845','33809'), ('3224','33846','33809'), ('3225','33847','33809'), ('3226','33848','33810'), ('3227','33849','33810'), ('3228','33850','33810'), ('3229','33851','33810'), ('3230','33852','33810'), ('3231','33853','33810'), ('3232','33854','33810'), ('3233','33855','33810'), ('3234','33856','33810'), ('3235','33857','33810'), ('3236','33858','33810'), ('3237','33859','33810'), ('3238','33860','33810'), ('3239','33861','33810'), ('3240','33862','33810'), ('3241','33863','33810'), ('3242','33864','33810'), ('3243','33865','33810'), ('3244','33866','33810'), ('3245','33867','33810'), ('3246','33868','33810'), ('3247','33869','33811'), ('3248','33870','33811'), ('3249','33871','33811'), ('3250','33872','33811'), ('3251','33873','33811'), ('3252','33874','33811'), ('3253','33875','33811'), ('3254','33876','33811'), ('3255','33877','33811'), ('3256','33878','33811'), ('3257','33879','33811'), ('3258','33880','33811'), ('3259','33881','33811'), ('3260','33882','33811'), ('3261','33883','33811'), ('3262','33884','33811'), ('3263','33885','33811'), ('3264','33924','33921'), ('3265','33925','33922'), ('3266','33926','33921'), ('3267','33927','33921'), ('3268','33928','33921'), ('3269','33929','33921'), ('3270','33930','33921'), ('3271','33931','33921'), ('3272','33932','33921'), ('3273','33933','33921'), ('3274','33934','33922'), ('3275','33935','33922'), ('3276','33936','33922'), ('3277','33937','33922'), ('3278','33938','33922'), ('3279','33939','33922'), ('3280','33940','33922'), ('3284','33966','33958'), ('3285','33967','33959'), ('3286','33968','33960'), ('3287','33969','33961'), ('3288','33970','33961'), ('3289','33971','33961'), ('3290','33972','33962'), ('3291','33973','33962'), ('3292','33974','33962'), ('3293','33975','33962'), ('3294','33976','33962'), ('3295','33977','33962'), ('3296','33978','33962'), ('3297','33979','33962'), ('3298','33980','33962'), ('3299','33981','33963'), ('3300','33982','33964'), ('3301','33983','33965'), ('3302','33984','33965'), ('3303','34007','33999'), ('3304','34008','34000'), ('3305','34009','34001'), ('3306','34010','34002'), ('3307','34011','34002'), ('3308','34012','34002'), ('3309','34013','34003'), ('3310','34014','34003'), ('3311','34015','34003'), ('3312','34016','34003'), ('3313','34017','34003'), ('3314','34018','34003'), ('3315','34019','34003'), ('3316','34020','34003'), ('3317','34021','34003'), ('3318','34022','34004'), ('3319','34023','34005'), ('3320','34024','34006'), ('3321','34025','34006'), ('3322','34048','34040'), ('3323','34049','34041'), ('3324','34050','34042'), ('3325','34051','34043'), ('3326','34052','34043'), ('3327','34053','34043'), ('3328','34054','34044'), ('3329','34055','34044'), ('3330','34056','34044'), ('3331','34057','34044'), ('3332','34058','34044'), ('3333','34059','34044'), ('3334','34060','34044'), ('3335','34061','34044'), ('3336','34062','34044'), ('3337','34063','34045'), ('3338','34064','34046'), ('3339','34065','34047'), ('3340','34066','34047'), ('3341','34089','34081'), ('3342','34090','34082'), ('3343','34091','34083'), ('3344','34092','34084'), ('3345','34093','34084'), ('3346','34094','34084'), ('3347','34095','34085'), ('3348','34096','34085'), ('3349','34097','34085'), ('3350','34098','34085'), ('3351','34099','34085'), ('3352','34100','34085'), ('3353','34101','34085'), ('3354','34102','34085'), ('3355','34103','34085'), ('3356','34104','34086'), ('3357','34105','34087'), ('3358','34106','34088'), ('3359','34107','34088'), ('3360','34130','34122'), ('3361','34131','34123'), ('3362','34132','34124'), ('3363','34133','34125'), ('3364','34134','34125'), ('3365','34135','34125'), ('3366','34136','34126'), ('3367','34137','34126'), ('3368','34138','34126'), ('3369','34139','34126'), ('3370','34140','34126'), ('3371','34141','34126'), ('3372','34142','34126'), ('3373','34143','34126'), ('3374','34144','34126'), ('3375','34145','34127'), ('3376','34146','34128'), ('3377','34147','34129'), ('3378','34148','34129'), ('3379','34164','34161'), ('3380','34165','34161'), ('3381','34166','34161'), ('3382','34167','34161'), ('3383','34168','34161'), ('3384','34169','34161'), ('3385','34170','34161'), ('3386','34171','34161'), ('3387','34172','34161'), ('3388','34173','34162'), ('3389','34174','34162'), ('3390','34175','34162'), ('3391','34176','34163'), ('3392','34177','34163'), ('3393','34178','34163'), ('3394','34212','34207'), ('3395','34213','34208'), ('3396','34214','34208'), ('3397','34215','34208'), ('3398','34216','34208'), ('3399','34217','34208'), ('3400','34218','34209'), ('3401','34219','34209'), ('3402','34220','34209'), ('3403','34221','34210'), ('3404','34222','34210'), ('3405','34223','34210'), ('3406','34224','34211'), ('3407','34225','34211'), ('3408','34269','34268'), ('3409','34270','34268'), ('3410','34271','34268'), ('3411','34272','34268'), ('3412','34273','34260'), ('3413','34274','34261'), ('3414','34275','34262'), ('3415','34276','34263'), ('3416','34277','34263'), ('3417','34278','34263'), ('3418','34279','34263'), ('3419','34280','34264'), ('3420','34281','34264'), ('3421','34282','34264'), ('3422','34283','34264'), ('3423','34284','34264'), ('3424','34285','34264'), ('3425','34286','34265'), ('3426','34287','34266'), ('3427','34288','34266'), ('3428','34289','34267'), ('3429','34290','34267'), ('3430','34291','34268'), ('3431','34292','34268'), ('3432','34293','34268'), ('3433','34294','34268'), ('3434','34295','34268'), ('3435','34296','34268'), ('3436','34297','34268'), ('3437','34298','34268'), ('3438','34299','34268'), ('3439','34300','34268'), ('3440','34301','34268'), ('3441','34302','34268'), ('3442','34303','34268'), ('3443','34304','34268'), ('3444','34305','34268'), ('3445','34306','34268'), ('3446','34307','34268'), ('3447','34308','34268'), ('3448','34309','34268'), ('3449','34310','34268'), ('3450','34311','34268'), ('3451','34312','34268'), ('3452','34313','34268'), ('3453','34325','31123'), ('3454','34326','31123'), ('3455','34327','31123'), ('3456','34328','31123'), ('3457','34329','31123'), ('3458','34330','31123'), ('3459','34331','34324'), ('3460','34332','34324'), ('3461','34333','34324'), ('3462','34334','34324'), ('3463','34335','34324'), ('3464','34348','34342'), ('3465','34349','34342'), ('3466','34350','34342'), ('3467','34351','34342'), ('3468','34352','34342'), ('3469','34353','34342'), ('3470','34354','34342'), ('3471','34355','34342'), ('3472','34356','34342'), ('3473','34357','34342'), ('3474','34358','34342'), ('3475','34359','34343'), ('3476','34360','34344'), ('3477','34361','34344'), ('3478','34362','34344'), ('3479','34363','34344'), ('3480','34364','34345'), ('3481','34365','34346'), ('3482','34366','34347'), ('3483','34405','34399'), ('3484','34406','34400'), ('3485','34407','34400'), ('3486','34408','34401'), ('3487','34409','34402'), ('3488','34410','34403'), ('3489','34411','34404'), ('3490','34444','34440'), ('3491','34445','34440'), ('3492','34446','34440'), ('3493','34447','34440'), ('3494','34448','34441'), ('3495','34449','34442'), ('3496','34450','34443'), ('3497','34482','34476'), ('3498','34483','34477'), ('3499','34484','34477'), ('3500','34485','34477'), ('3501','34486','34477'), ('3502','34487','34477'), ('3503','34488','34478'), ('3504','34489','34478'), ('3505','34490','34478'), ('3506','34491','34479'), ('3507','34492','34479'), ('3508','34493','34479'), ('3509','34494','34480'), ('3510','34495','34480'), ('3511','34496','34481'), ('3512','34497','34481'), ('3513','34498','34481'), ('3514','34530','34524'), ('3515','34531','34525'), ('3516','34532','34525'), ('3517','34533','34525'), ('3518','34534','34525'), ('3519','34535','34525'), ('3520','34536','34526'), ('3521','34537','34526'), ('3522','34538','34526'), ('3523','34539','34527'), ('3524','34540','34527'), ('3525','34541','34527'), ('3526','34542','34528'), ('3527','34543','34528'), ('3528','34544','34529'), ('3529','34545','34529'), ('3530','34546','34529'), ('3531','34578','34572'), ('3532','34579','34573'), ('3533','34580','34573'), ('3534','34581','34573'), ('3535','34582','34573'), ('3536','34583','34573'), ('3537','34584','34574'), ('3538','34585','34574'), ('3539','34586','34574'), ('3540','34587','34575'), ('3541','34588','34575'), ('3542','34589','34575'), ('3543','34590','34576'), ('3544','34591','34576'), ('3545','34592','34577'), ('3546','34593','34577'), ('3547','34594','34577'), ('3548','34626','34620'), ('3549','34627','34621'), ('3550','34628','34621'), ('3551','34629','34621'), ('3552','34630','34621'), ('3553','34631','34621'), ('3554','34632','34622'), ('3555','34633','34622'), ('3556','34634','34622'), ('3557','34635','34623'), ('3558','34636','34623'), ('3559','34637','34623'), ('3560','34638','34624'), ('3561','34639','34624'), ('3562','34640','34625'), ('3563','34641','34625'), ('3564','34642','34625'), ('3565','34674','34668'), ('3566','34675','34669'), ('3567','34676','34669'), ('3568','34677','34669'), ('3569','34678','34669'), ('3570','34679','34669'), ('3571','34680','34670'), ('3572','34681','34670'), ('3573','34682','34670'), ('3574','34683','34671'), ('3575','34684','34671'), ('3576','34685','34671'), ('3577','34686','34672'), ('3578','34687','34672'), ('3579','34688','34673'), ('3580','34689','34673'), ('3581','34690','34673'), ('3599','34770','34764'), ('3600','34771','34765'), ('3601','34772','34765'), ('3602','34773','34765'), ('3603','34774','34765'), ('3604','34775','34765'), ('3605','34776','34766'), ('3606','34777','34766'), ('3607','34778','34766'), ('3608','34779','34767'), ('3609','34780','34767'), ('3610','34781','34767'), ('3611','34782','34768'), ('3612','34783','34768'), ('3613','34784','34769'), ('3614','34785','34769'), ('3615','34786','34769'), ('3616','34790','34789'), ('3617','34791','34789'), ('3618','34792','34789'), ('3619','34824','34818'), ('3620','34825','34819'), ('3621','34826','34819'), ('3622','34827','34819'), ('3623','34828','34819'), ('3624','34829','34819'), ('3625','34830','34820'), ('3626','34831','34820'), ('3627','34832','34820'), ('3628','34833','34821'), ('3629','34834','34821'), ('3630','34835','34821'), ('3631','34836','34822'), ('3632','34837','34822'), ('3633','34838','34823'), ('3634','34839','34823'), ('3635','34840','34823'), ('3636','34872','34866'), ('3637','34873','34867'), ('3638','34874','34867'), ('3639','34875','34867'), ('3640','34876','34867'), ('3641','34877','34867'), ('3642','34878','34868'), ('3643','34879','34868'), ('3644','34880','34868'), ('3645','34881','34869'), ('3646','34882','34869'), ('3647','34883','34869'), ('3648','34884','34870'), ('3649','34885','34870'), ('3650','34886','34871'), ('3651','34887','34871'), ('3652','34888','34871'), ('3653','34920','34914'), ('3654','34921','34915'), ('3655','34922','34915'), ('3656','34923','34915'), ('3657','34924','34915'), ('3658','34925','34915'), ('3659','34926','34916'), ('3660','34927','34916'), ('3661','34928','34916'), ('3662','34929','34917'), ('3663','34930','34917'), ('3664','34931','34917'), ('3665','34932','34918'), ('3666','34933','34918'), ('3667','34934','34919'), ('3668','34935','34919'), ('3669','34936','34919'), ('3670','34944','34942'), ('3671','34945','34942'), ('3672','34946','34943'), ('3673','34947','34943'), ('3674','34948','34943'), ('3675','34970','34966'), ('3676','34971','34966'), ('3677','34972','34966'), ('3678','34973','34966'), ('3679','34974','34966'), ('3680','34975','34967'), ('3681','34976','34967'), ('3682','34977','34967'), ('3683','34978','34967'), ('3684','34979','34967'), ('3685','34980','34967'), ('3686','34981','34967'), ('3687','34982','34968'), ('3688','34983','34968'), ('3689','34984','34968'), ('3690','34985','34968'), ('3691','34986','34968'), ('3692','34987','34968'), ('3693','34988','34968'), ('3694','34989','34968'), ('3695','34990','34968'), ('3696','34991','34968'), ('3697','34992','34968'), ('3698','34993','34968'), ('3699','34994','34968'), ('3700','34995','34968'), ('3701','34996','34968'), ('3702','34997','34968'), ('3703','34998','34968'), ('3704','34999','34968'), ('3705','35000','34968'), ('3706','35001','34968'), ('3707','35002','34968'), ('3708','35003','34968'), ('3709','35004','34968'), ('3710','35005','34968'), ('3711','35006','34968'), ('3712','35007','34968'), ('3713','35008','34968'), ('3714','35009','34968'), ('3715','35010','34968'), ('3716','35011','34968'), ('3717','35012','34969'), ('3718','35013','34969'), ('3719','35014','34969'), ('3720','35015','34969'), ('3721','35047','35041'), ('3722','35048','35042'), ('3723','35049','35042'), ('3724','35050','35042'), ('3725','35051','35042'), ('3726','35052','35042'), ('3727','35053','35043'), ('3728','35054','35043'), ('3729','35055','35043'), ('3730','35056','35044'), ('3731','35057','35044'), ('3732','35058','35044'), ('3733','35059','35045'), ('3734','35060','35045'), ('3735','35061','35046'), ('3736','35062','35046'), ('3737','35063','35046'), ('3738','35104','30193'), ('3739','35105','30193'), ('3740','35106','30193'), ('3741','35107','30193'), ('3742','35108','30193'), ('3743','35109','30193'), ('3744','35110','30193'), ('3745','35111','30193'), ('3746','35112','30193'), ('3747','35113','30193'), ('3748','35114','30193'), ('3749','35115','30194'), ('3750','35116','30195'), ('3751','35117','30195'), ('3752','35118','30195'), ('3753','35119','30195'), ('3754','35120','30195'), ('3755','35121','30195'), ('3756','35122','30195'), ('3757','35123','30195'), ('3758','35124','30195'), ('3759','35125','30195'), ('3760','35126','30195'), ('3761','35127','30195'), ('3762','35129','30236'), ('3763','35130','30236'), ('3764','35131','30236'), ('3765','35132','30236'), ('3766','35133','30236'), ('3767','35134','30236'), ('3768','35135','30236'), ('3769','35136','30236'), ('3770','35137','30236'), ('3771','35138','30236'), ('3772','35139','30236'), ('3773','35140','30237'), ('3774','35141','30238'), ('3775','35142','30238'), ('3776','35143','30238'), ('3777','35144','30238'), ('3778','35145','30238'), ('3779','35146','30238'), ('3780','35147','30238'), ('3781','35148','30238'), ('3782','35149','30238'), ('3783','35150','30238'), ('3784','35151','30238'), ('3785','35152','30238'), ('3786','35185','35177'), ('3787','35186','35177'), ('3788','35187','35177'), ('3789','35188','35177'), ('3790','35189','35177'), ('3791','35190','35177'), ('3792','35191','35177'), ('3793','35192','35177'), ('3794','35193','35177'), ('3795','35194','35177'), ('3796','35195','35178'), ('3797','35196','35178'), ('3798','35197','35178'), ('3799','35198','35178'), ('3800','35199','35178'), ('3801','35200','35178'), ('3802','35201','35178'), ('3803','35202','35178'), ('3804','35203','35178'), ('3805','35204','35178'), ('3806','35205','35178'), ('3807','35206','35179'), ('3808','35207','35179'), ('3809','35208','35179'), ('3810','35209','35179'), ('3811','35210','35179'), ('3812','35211','35179'), ('3813','35212','35179'), ('3814','35213','35179'), ('3815','35214','35179'), ('3816','35215','35179'), ('3817','35216','35179'), ('3818','35217','35179'), ('3819','35218','35179'), ('3820','35219','35179'), ('3821','35220','35179'), ('3822','35221','35179'), ('3823','35222','35179'), ('3824','35223','35179'), ('3825','35224','35180'), ('3826','35225','35180'), ('3827','35226','35180'), ('3828','35227','35181'), ('3829','35228','35181'), ('3830','35229','35181'), ('3831','35230','35181'), ('3832','35231','35181'), ('3833','35232','35181'), ('3834','35233','35181'), ('3835','35234','35181'), ('3836','35235','35181'), ('3837','35236','35181'), ('3838','35237','35181'), ('3839','35238','35182'), ('3840','35239','35182'), ('3841','35240','35182'), ('3842','35241','35182'), ('3843','35242','35182'), ('3844','35243','35182'), ('3845','35244','35182'), ('3846','35245','35182'), ('3847','35246','35182'), ('3848','35247','35183'), ('3849','35248','35183'), ('3850','35249','35183'), ('3851','35250','35183'), ('3852','35251','35183'), ('3853','35252','35183'), ('3854','35253','35183'), ('3855','35254','35183'), ('3856','35255','35183'), ('3857','35256','35183'), ('3858','35257','35183'), ('3859','35258','35183'), ('3860','35259','35183'), ('3861','35260','35184'), ('3862','35261','35184'), ('3863','35264','35262'), ('3864','35265','35263'), ('3865','35266','35262'), ('3866','35267','35262'), ('3867','35268','35262'), ('3868','35269','35262'), ('3869','35270','35263'), ('3870','35271','35263'), ('3871','35290','35280'), ('3872','35291','35280'), ('3873','35292','35280'), ('3874','35293','35280'), ('3875','35294','35280'), ('3876','35295','35280'), ('3877','35296','35280'), ('3878','35297','35280'), ('3879','35298','35280'), ('3880','35299','35280'), ('3881','35300','35280'), ('3882','35301','35281'), ('3883','35302','35281'), ('3884','35303','35281'), ('3885','35304','35281'), ('3886','35305','35281'), ('3887','35306','35281'), ('3888','35307','35281'), ('3889','35308','35281'), ('3890','35309','35281'), ('3891','35310','35281'), ('3892','35311','35282'), ('3893','35312','35282'), ('3894','35313','35282'), ('3895','35314','35282'), ('3896','35315','35282'), ('3897','35316','35283'), ('3898','35317','35283'), ('3899','35318','35283'), ('3900','35319','35284'), ('3901','35320','35284'), ('3902','35321','35284'), ('3903','35322','35284'), ('3904','35323','35285'), ('3905','35324','35285'), ('3906','35325','35285'), ('3907','35326','35285'), ('3908','35327','35285'), ('3909','35328','35285'), ('3910','35329','35285'), ('3911','35330','35285'), ('3912','35331','35286'), ('3913','35332','35286'), ('3914','35333','35286'), ('3915','35334','35286'), ('3916','35335','35286'), ('3917','35336','35287'), ('3918','35337','35287'), ('3919','35338','35287'), ('3920','35339','35287'), ('3921','35340','35287'), ('3922','35341','35287'), ('3923','35342','35287'), ('3924','35343','35287'), ('3925','35344','35287'), ('3926','35345','35288'), ('3927','35346','35288'), ('3928','35347','35288'), ('3929','35348','35288'), ('3930','35349','35289'), ('3931','35350','35289'), ('3932','35351','35289'), ('3933','35352','35289'), ('3934','35353','35289'), ('3935','35354','35289'), ('3936','35355','35289'), ('3937','35356','35289'), ('3938','35357','35289'), ('3939','35369','35364'), ('3940','35370','35365'), ('3941','35371','35365'), ('3942','35372','35365'), ('3943','35373','35366'), ('3944','35374','35366'), ('3945','35375','35366'), ('3946','35376','35366'), ('3947','35377','35366'), ('3948','35378','35366'), ('3949','35379','35366'), ('3950','35380','35366'), ('3951','35381','35366'), ('3952','35382','35366'), ('3953','35383','35366'), ('3954','35384','35366'), ('3955','35385','35366'), ('3956','35386','35366'), ('3957','35387','35366'), ('3958','35388','35367'), ('3959','35389','35367'), ('3960','35390','35367'), ('3961','35391','35367'), ('3962','35392','35367'), ('3963','35393','35367'), ('3964','35394','35367'), ('3965','35395','35367'), ('3966','35396','35368'), ('3967','35397','35368'), ('3968','35398','35368'), ('3969','35399','35368'), ('3970','35400','35368'), ('3971','35401','35368'), ('3972','35402','35368'), ('3973','35403','35368'), ('3974','35404','35368'), ('3975','35405','35368'), ('3976','35439','35424'), ('3977','35440','35425'), ('3978','35441','35425'), ('3979','35442','35426'), ('3980','35443','35427'), ('3981','35444','35427'), ('3982','35445','35428'), ('3983','35446','35429'), ('3984','35447','35430'), ('3985','35448','35430'), ('3986','35449','35430'), ('3987','35450','35430'), ('3988','35451','35430'), ('3989','35452','35430'), ('3990','35453','35430'), ('3991','35454','35430'), ('3992','35455','35430'), ('3993','35456','35430'), ('3994','35457','35430'), ('3995','35458','35430'), ('3996','35459','35430'), ('3997','35460','35430'), ('3998','35461','35430'), ('3999','35462','35430'), ('4000','35463','35430'), ('4001','35464','35430'), ('4002','35465','35430'), ('4003','35466','35430'), ('4004','35467','35430'), ('4005','35468','35430'), ('4006','35469','35430'), ('4007','35470','35430'), ('4008','35471','35430'), ('4009','35472','35430'), ('4010','35473','35430'), ('4011','35474','35431'), ('4012','35475','35431'), ('4013','35476','35431'), ('4014','35477','35432'), ('4015','35478','35432'), ('4016','35479','35432'), ('4017','35480','35432'), ('4018','35481','35432'), ('4019','35482','35433'), ('4020','35483','35433'), ('4021','35484','35433'), ('4022','35485','35433'), ('4023','35486','35433'), ('4024','35487','35433'), ('4025','35488','35434'), ('4026','35489','35434'), ('4027','35490','35434'), ('4028','35491','35434'), ('4029','35492','35435'), ('4030','35493','35435'), ('4031','35494','35435'), ('4032','35495','35435'), ('4033','35496','35435'), ('4034','35497','35435'), ('4035','35498','35435'), ('4036','35499','35435'), ('4037','35500','35435'), ('4038','35501','35435'), ('4039','35502','35435'), ('4040','35503','35435'), ('4041','35504','35435'), ('4042','35505','35435'), ('4043','35506','35436'), ('4044','35507','35436'), ('4045','35508','35436'), ('4046','35509','35436'), ('4047','35510','35436'), ('4048','35511','35436'), ('4049','35512','35436'), ('4050','35513','35436'), ('4051','35514','35437'), ('4052','35515','35437'), ('4053','35516','35437'), ('4054','35517','35437'), ('4055','35518','35437'), ('4056','35519','35437'), ('4057','35520','35437'), ('4058','35521','35437'), ('4059','35522','35438'), ('4060','35523','35438'), ('4061','35524','35438'), ('4062','35525','35438'), ('4063','35526','35438'), ('4064','35527','35438'), ('4065','35528','35438'), ('4066','35529','35438'), ('4067','35530','35438'), ('4068','35531','35438'), ('4069','35546','35542'), ('4070','35547','35542'), ('4071','35548','35542'), ('4072','35549','35542'), ('4073','35550','35542'), ('4074','35551','35542'), ('4075','35552','35542'), ('4076','35553','35542'), ('4077','35554','35542'), ('4078','35555','35542'), ('4079','35556','35542'), ('4080','35557','35543'), ('4081','35558','35543'), ('4082','35559','35543'), ('4083','35560','35543'), ('4084','35561','35543'), ('4085','35562','35544'), ('4086','35563','35545'), ('4087','35580','35574'), ('4088','35581','35575'), ('4089','35582','35575'), ('4090','35583','35575'), ('4091','35584','35575'), ('4092','35585','35575'), ('4093','35586','35575'), ('4094','35587','35575'), ('4095','35588','35575'), ('4096','35589','35575'), ('4097','35590','35575'), ('4098','35591','35575'), ('4099','35592','35575'), ('4100','35593','35575'), ('4101','35594','35575'), ('4102','35595','35575'), ('4103','35596','35575'), ('4104','35597','35575'), ('4105','35598','35576'), ('4106','35599','35577'), ('4107','35600','35577'), ('4108','35601','35577'), ('4109','35602','35577'), ('4110','35603','35577'), ('4111','35604','35577'), ('4112','35605','35577'), ('4113','35606','35578'), ('4114','35607','35579'), ('4115','35622','35618'), ('4116','35623','35619'), ('4117','35624','35619'), ('4118','35625','35619'), ('4119','35626','35619'), ('4120','35627','35619'), ('4121','35628','35619'), ('4122','35629','35619'), ('4123','35630','35619'), ('4124','35631','35619'), ('4125','35632','35619'), ('4126','35633','35619'), ('4127','35634','35619'), ('4128','35635','35619'), ('4129','35636','35619'), ('4130','35637','35619'), ('4131','35638','35619'), ('4132','35639','35619'), ('4133','35640','35620'), ('4134','35641','35621'), ('4135','35658','35649'), ('4136','35659','35650'), ('4137','35660','35651'), ('4138','35661','35652'), ('4139','35662','35653'), ('4140','35663','35653'), ('4141','35664','35653'), ('4142','35665','35653'), ('4143','35666','35653'), ('4144','35667','35653'), ('4145','35668','35653'), ('4146','35669','35653'), ('4147','35670','35653'), ('4148','35671','35653'), ('4149','35672','35653'), ('4150','35673','35653'), ('4151','35674','35653'), ('4152','35675','35653'), ('4153','35676','35653'), ('4154','35677','35653'), ('4155','35678','35653'), ('4156','35679','35653'), ('4157','35680','35654'), ('4158','35681','35654'), ('4159','35682','35654'), ('4160','35683','35654'), ('4161','35684','35654'), ('4162','35685','35654'), ('4163','35686','35654'), ('4164','35687','35654'), ('4165','35688','35654'), ('4166','35689','35654'), ('4167','35690','35654'), ('4168','35691','35654'), ('4169','35692','35654'), ('4170','35693','35654'), ('4171','35694','35654'), ('4172','35695','35655'), ('4173','35696','35655'), ('4174','35697','35655'), ('4175','35698','35655'), ('4176','35699','35655'), ('4177','35700','35655'), ('4178','35701','35655'), ('4179','35702','35655'), ('4180','35703','35655'), ('4181','35704','35655'), ('4182','35705','35655'), ('4183','35706','35655'), ('4184','35707','35656'), ('4185','35708','35657'), ('4186','35725','35716'), ('4187','35726','35717'), ('4188','35727','35718'), ('4189','35728','35719'), ('4190','35729','35720'), ('4191','35730','35720'), ('4192','35731','35720'), ('4193','35732','35720'), ('4194','35733','35720'), ('4195','35734','35720'), ('4196','35735','35720'), ('4197','35736','35720'), ('4198','35737','35720'), ('4199','35738','35720'), ('4200','35739','35720'), ('4201','35740','35720'), ('4202','35741','35720'), ('4203','35742','35720'), ('4204','35743','35720'), ('4205','35744','35720'), ('4206','35745','35720'), ('4207','35746','35720'), ('4208','35747','35721'), ('4209','35748','35721'), ('4210','35749','35721'), ('4211','35750','35721'), ('4212','35751','35721'), ('4213','35752','35721'), ('4214','35753','35721'), ('4215','35754','35721'), ('4216','35755','35721'), ('4217','35756','35721'), ('4218','35757','35721'), ('4219','35758','35721'), ('4220','35759','35721'), ('4221','35760','35721'), ('4222','35761','35721'), ('4223','35762','35722'), ('4224','35763','35722'), ('4225','35764','35722'), ('4226','35765','35722'), ('4227','35766','35722'), ('4228','35767','35722'), ('4229','35768','35722'), ('4230','35769','35722'), ('4231','35770','35722'), ('4232','35771','35722'), ('4233','35772','35722'), ('4234','35773','35722'), ('4235','35774','35723'), ('4236','35775','35724'), ('4237','35791','35786'), ('4238','35792','35787'), ('4239','35793','35787'), ('4240','35794','35787'), ('4241','35795','35787'), ('4242','35796','35787'), ('4243','35797','35787'), ('4244','35798','35787'), ('4245','35799','35787'), ('4246','35800','35787'), ('4247','35801','35787'), ('4248','35802','35787'), ('4249','35803','35788'), ('4250','35804','35788'), ('4251','35805','35788'), ('4252','35806','35788'), ('4253','35807','35788'), ('4254','35808','35789'), ('4255','35809','35790'), ('4256','35823','35820'), ('4257','35824','35820'), ('4258','35825','35820'), ('4259','35826','35820'), ('4260','35827','35820'), ('4261','35828','35820'), ('4262','35829','35820'), ('4263','35830','35820'), ('4264','35831','35820'), ('4265','35832','35820'), ('4266','35833','35820'), ('4267','35834','35820'), ('4268','35835','35820'), ('4269','35836','35820'), ('4270','35837','35820'), ('4271','35838','35820'), ('4272','35839','35820'), ('4273','35840','35821'), ('4274','35841','35822'), ('4275','35842','35822'), ('4276','35843','35822'), ('4277','35844','35822'), ('4278','35845','35822'), ('4279','35846','35822'), ('4280','35847','35822'), ('4281','35864','35858'), ('4282','35865','35859'), ('4283','35866','35859'), ('4284','35867','35859'), ('4285','35868','35859'), ('4286','35869','35859'), ('4287','35870','35859'), ('4288','35871','35859'), ('4289','35872','35859'), ('4290','35873','35859'), ('4291','35874','35859'), ('4292','35875','35859'), ('4293','35876','35859'), ('4294','35877','35859'), ('4295','35878','35859'), ('4296','35879','35859'), ('4297','35880','35859'), ('4298','35881','35859'), ('4299','35882','35860'), ('4300','35883','35861'), ('4301','35884','35861'), ('4302','35885','35861'), ('4303','35886','35861'), ('4304','35887','35861'), ('4305','35888','35861'), ('4306','35889','35861'), ('4307','35890','35862'), ('4308','35891','35863'), ('4309','35908','35902'), ('4310','35909','35903'), ('4311','35910','35903'), ('4312','35911','35903'), ('4313','35912','35903'), ('4314','35913','35903'), ('4315','35914','35903'), ('4316','35915','35903'), ('4317','35916','35903'), ('4318','35917','35903'), ('4319','35918','35903'), ('4320','35919','35903'), ('4321','35920','35903'), ('4322','35921','35903'), ('4323','35922','35903'), ('4324','35923','35903'), ('4325','35924','35903'), ('4326','35925','35903'), ('4327','35926','35904'), ('4328','35927','35905'), ('4329','35928','35905'), ('4330','35929','35905'), ('4331','35930','35905'), ('4332','35931','35905'), ('4333','35932','35905'), ('4334','35933','35905'), ('4335','35934','35906'), ('4336','35935','35907'), ('4337','35952','35946'), ('4338','35953','35947'), ('4339','35954','35947'), ('4340','35955','35947'), ('4341','35956','35947'), ('4342','35957','35947'), ('4343','35958','35947'), ('4344','35959','35947'), ('4345','35960','35947'), ('4346','35961','35947'), ('4347','35962','35947'), ('4348','35963','35947'), ('4349','35964','35947'), ('4350','35965','35947'), ('4351','35966','35947'), ('4352','35967','35947'), ('4353','35968','35947'), ('4354','35969','35947'), ('4355','35970','35948'), ('4356','35971','35949'), ('4357','35972','35949'), ('4358','35973','35949'), ('4359','35974','35949'), ('4360','35975','35949'), ('4361','35976','35949'), ('4362','35977','35949'), ('4363','35978','35950'), ('4364','35979','35951'), ('4365','35996','35990'), ('4366','35997','35991'), ('4367','35998','35991'), ('4368','35999','35991'), ('4369','36000','35991'), ('4370','36001','35991'), ('4371','36002','35991'), ('4372','36003','35991'), ('4373','36004','35991'), ('4374','36005','35991'), ('4375','36006','35991'), ('4376','36007','35991'), ('4377','36008','35991'), ('4378','36009','35991'), ('4379','36010','35991'), ('4380','36011','35991'), ('4381','36012','35991'), ('4382','36013','35991'), ('4383','36014','35992'), ('4384','36015','35993'), ('4385','36016','35993'), ('4386','36017','35993'), ('4387','36018','35993'), ('4388','36019','35993'), ('4389','36020','35993'), ('4390','36021','35993'), ('4391','36022','35994'), ('4392','36023','35995'), ('4393','36041','36035'), ('4394','36042','36036'), ('4395','36043','36036'), ('4396','36044','36036'), ('4397','36045','36036'), ('4398','36046','36036'), ('4399','36047','36036'), ('4400','36048','36036'), ('4401','36049','36036'), ('4402','36050','36036'), ('4403','36051','36036'), ('4404','36052','36036'), ('4405','36053','36036'), ('4406','36054','36036'), ('4407','36055','36036'), ('4408','36056','36036'), ('4409','36057','36036'), ('4410','36058','36036'), ('4411','36059','36037'), ('4412','36060','36038'), ('4413','36061','36038'), ('4414','36062','36038'), ('4415','36063','36038'), ('4416','36064','36038'), ('4417','36065','36038'), ('4418','36066','36038'), ('4419','36067','36039'), ('4420','36068','36040'), ('4421','36086','36080'), ('4422','36087','36081'), ('4423','36088','36081'), ('4424','36089','36081'), ('4425','36090','36081'), ('4426','36091','36081'), ('4427','36092','36081'), ('4428','36093','36081'), ('4429','36094','36081'), ('4430','36095','36081'), ('4431','36096','36081'), ('4432','36097','36081'), ('4433','36098','36081'), ('4434','36099','36081'), ('4435','36100','36081'), ('4436','36101','36081'), ('4437','36102','36081'), ('4438','36103','36081'), ('4439','36104','36082'), ('4440','36105','36083'), ('4441','36106','36083'), ('4442','36107','36083'), ('4443','36108','36083'), ('4444','36109','36083'), ('4445','36110','36083'), ('4446','36111','36083'), ('4447','36112','36084'), ('4448','36113','36085'), ('4449','36131','36124'), ('4450','36132','36125'), ('4451','36133','36126'), ('4452','36134','36126'), ('4453','36135','36126'), ('4454','36136','36126'), ('4455','36137','36126'), ('4456','36138','36126'), ('4457','36139','36126'), ('4458','36140','36126'), ('4459','36141','36126'), ('4460','36142','36126'), ('4461','36143','36126'), ('4462','36144','36126'), ('4463','36145','36126'), ('4464','36146','36126'), ('4465','36147','36126'), ('4466','36148','36126'), ('4467','36149','36126'), ('4468','36150','36127'), ('4469','36151','36128'), ('4470','36152','36128'), ('4471','36153','36128'), ('4472','36154','36128'), ('4473','36155','36128'), ('4474','36156','36128'), ('4475','36157','36128'), ('4476','36158','36129'), ('4477','36159','36130'), ('4478','36178','36168'), ('4479','36179','36169'), ('4480','36180','36169'), ('4481','36181','36170'), ('4482','36182','36171'), ('4483','36183','36171'), ('4484','36184','36171'), ('4485','36185','36171'), ('4486','36186','36171'), ('4487','36187','36171'), ('4488','36188','36171'), ('4489','36189','36171'), ('4490','36190','36171'), ('4491','36191','36171'), ('4492','36192','36171'), ('4493','36193','36171'), ('4494','36194','36171'), ('4495','36195','36171'), ('4496','36196','36172'), ('4497','36197','36172'), ('4498','36198','36172'), ('4499','36199','36172'), ('4500','36200','36172'), ('4501','36201','36173'), ('4502','36202','36174'), ('4503','36203','36175'), ('4504','36204','36175'), ('4505','36205','36175'), ('4506','36206','36175'), ('4507','36207','36176'), ('4508','36208','36176'), ('4509','36209','36176'), ('4510','36210','36177'), ('4511','36211','36177'), ('4512','36212','36177'), ('4542','36276','36269'), ('4543','36277','36269'), ('4546','36280','36271'), ('4547','36281','36271'), ('4548','36282','36271'), ('4549','36283','36271'), ('4550','36284','36271'), ('4551','36285','36271'), ('4552','36286','36272'), ('4553','36287','36273'), ('4554','36288','36273'), ('4555','36289','36274'), ('4557','36291','36274'), ('4558','36292','36274'), ('4559','36293','36274'), ('4590','36358','36351'), ('4591','36359','36351'), ('4594','36362','36353'), ('4595','36363','36353'), ('4596','36364','36353'), ('4597','36365','36353'), ('4598','36366','36353'), ('4599','36367','36353'), ('4600','36368','36354'), ('4601','36369','36355'), ('4602','36370','36355'), ('4603','36371','36356'), ('4605','36373','36356'), ('4606','36374','36356'), ('4607','36375','36356'), ('4638','36440','36433'), ('4639','36441','36433'), ('4642','36444','36435'), ('4643','36445','36435'), ('4644','36446','36435'), ('4645','36447','36435'), ('4646','36448','36435'), ('4647','36449','36435'), ('4648','36450','36436'), ('4649','36451','36437'), ('4650','36452','36437'), ('4651','36453','36438'), ('4653','36455','36438'), ('4654','36456','36438'), ('4655','36457','36438'), ('4686','36522','36515'), ('4687','36523','36515'), ('4690','36526','36517'), ('4691','36527','36517'), ('4692','36528','36517'), ('4693','36529','36517'), ('4694','36530','36517'), ('4695','36531','36517'), ('4696','36532','36518'), ('4697','36533','36519'), ('4698','36534','36519'), ('4699','36535','36520'), ('4701','36537','36520'), ('4702','36538','36520'), ('4703','36539','36520'), ('4705','36567','36553'), ('4706','36568','36553'), ('4707','36569','36554'), ('4708','36570','36554'), ('4709','36571','36555'), ('4710','36572','36556'), ('4711','36573','36557'), ('4712','36574','36557'), ('4713','36575','36557'), ('4714','36576','36557'), ('4715','36577','36557'), ('4716','36578','36557'), ('4717','36579','36558'), ('4718','36580','36559'), ('4719','36581','36559'), ('4720','36582','36560'), ('4721','36583','36560'), ('4722','36584','36561'), ('4723','36585','36561'), ('4724','36586','36561'), ('4725','36587','36562'), ('4726','36588','36562'), ('4727','36589','36563'), ('4728','36590','36563'), ('4729','36591','36564'), ('4730','36592','36564'), ('4731','36593','36565'), ('4732','36594','36565'), ('4733','36595','36566'), ('4734','36596','36566'), ('4735','36597','36566'), ('4736','36624','36610'), ('4737','36625','36610'), ('4738','36626','36611'), ('4739','36627','36611'), ('4740','36628','36612'), ('4741','36629','36613'), ('4742','36630','36614'), ('4743','36631','36614'), ('4744','36632','36614'), ('4745','36633','36614'), ('4746','36634','36614'), ('4747','36635','36614'), ('4748','36636','36615'), ('4749','36637','36616'), ('4750','36638','36616'), ('4751','36639','36617'), ('4752','36640','36617'), ('4753','36641','36618'), ('4754','36642','36618'), ('4755','36643','36618'), ('4756','36644','36619'), ('4757','36645','36619'), ('4758','36646','36620'), ('4759','36647','36620'), ('4760','36648','36621'), ('4761','36649','36621'), ('4762','36650','36622'), ('4763','36651','36622'), ('4764','36652','36623'), ('4765','36653','36623'), ('4766','36654','36623'), ('4767','36681','36667'), ('4768','36682','36667'), ('4769','36683','36668'), ('4770','36684','36668'), ('4771','36685','36669'), ('4772','36686','36670'), ('4773','36687','36671'), ('4774','36688','36671'), ('4775','36689','36671'), ('4776','36690','36671'), ('4777','36691','36671'), ('4778','36692','36671'), ('4779','36693','36672'), ('4780','36694','36673'), ('4781','36695','36673'), ('4782','36696','36674'), ('4783','36697','36674'), ('4784','36698','36675'), ('4785','36699','36675'), ('4786','36700','36675'), ('4787','36701','36676'), ('4788','36702','36676'), ('4789','36703','36677'), ('4790','36704','36677'), ('4791','36705','36678'), ('4792','36706','36678'), ('4793','36707','36679'), ('4794','36708','36679'), ('4795','36709','36680'), ('4796','36710','36680'), ('4797','36711','36680'), ('4798','36738','36724'), ('4799','36739','36724'), ('4800','36740','36725'), ('4801','36741','36725'), ('4802','36742','36726'), ('4803','36743','36727'), ('4804','36744','36728'), ('4805','36745','36728'), ('4806','36746','36728'), ('4807','36747','36728'), ('4808','36748','36728'), ('4809','36749','36728'), ('4810','36750','36729'), ('4811','36751','36730'), ('4812','36752','36730'), ('4813','36753','36731'), ('4814','36754','36731'), ('4815','36755','36732'), ('4816','36756','36732'), ('4817','36757','36732'), ('4818','36758','36733'), ('4819','36759','36733'), ('4820','36760','36734'), ('4821','36761','36734'), ('4822','36762','36735'), ('4823','36763','36735'), ('4824','36764','36736'), ('4825','36765','36736'), ('4826','36766','36737'), ('4827','36767','36737'), ('4828','36768','36737'), ('4829','36782','36781'), ('4830','36783','36781'), ('4831','36784','36781'), ('4832','36785','36781'), ('4833','36786','36781'), ('4834','36787','36781'), ('4835','36788','36781'), ('4836','36789','36781'), ('4837','36790','36781'), ('4838','36791','36781'), ('4839','36792','36781'), ('4840','36793','36781'), ('4841','36794','36781'), ('4842','36814','36813'), ('4843','36815','36813'), ('4844','36816','36813'), ('4845','36817','36813'), ('4846','36818','36813'), ('4847','36819','36813'), ('4850','36824','35437'), ('4851','36825','35437'), ('4861','36861','36854'), ('4864','36864','36857'), ('4865','36865','36857'), ('4866','36866','36857'), ('4867','36867','36857'), ('4868','36868','36858'), ('4869','36869','36858'), ('4870','36870','36858'), ('4871','36871','36858'), ('4872','36872','36858'), ('4873','36873','36859'), ('4874','36874','36859'), ('4875','36875','36859'), ('4876','36876','36859'), ('4877','36877','36860'), ('4878','36878','36860'), ('4879','36879','36860'), ('4889','36915','36908'), ('4892','36918','36911'), ('4893','36919','36911'), ('4894','36920','36911'), ('4895','36921','36911'), ('4896','36922','36912'), ('4897','36923','36912'), ('4898','36924','36912'), ('4899','36925','36912'), ('4900','36926','36912'), ('4901','36927','36913'), ('4902','36928','36913'), ('4903','36929','36913'), ('4904','36930','36913'), ('4905','36931','36914'), ('4906','36932','36914'), ('4907','36933','36914'), ('4917','36969','36962'), ('4920','36972','36965'), ('4921','36973','36965'), ('4922','36974','36965'), ('4923','36975','36965'), ('4924','36976','36966'), ('4925','36977','36966'), ('4926','36978','36966'), ('4927','36979','36966'), ('4928','36980','36966'), ('4929','36981','36967'), ('4930','36982','36967'), ('4931','36983','36967'), ('4932','36984','36967'), ('4933','36985','36968'), ('4934','36986','36968'), ('4935','36987','36968'), ('4945','37023','37016'), ('4948','37026','37019'), ('4949','37027','37019'), ('4950','37028','37019'), ('4951','37029','37019'), ('4952','37030','37020'), ('4953','37031','37020'), ('4954','37032','37020'), ('4955','37033','37020'), ('4956','37034','37020'), ('4957','37035','37021'), ('4958','37036','37021'), ('4959','37037','37021'), ('4960','37038','37021'), ('4961','37039','37022'), ('4962','37040','37022'), ('4963','37041','37022'), ('4973','37077','37070'), ('4976','37080','37073'), ('4977','37081','37073'), ('4978','37082','37073'), ('4979','37083','37073'), ('4980','37084','37074'), ('4981','37085','37074'), ('4982','37086','37074'), ('4983','37087','37074'), ('4984','37088','37074'), ('4985','37089','37075'), ('4986','37090','37075'), ('4987','37091','37075'), ('4988','37092','37075'), ('4989','37093','37076'), ('4990','37094','37076'), ('4991','37095','37076'), ('5001','37131','37124'), ('5004','37134','37127'), ('5005','37135','37127'), ('5006','37136','37127'), ('5007','37137','37127'), ('5008','37138','37128'), ('5009','37139','37128'), ('5010','37140','37128'), ('5011','37141','37128'), ('5012','37142','37128'), ('5013','37143','37129'), ('5014','37144','37129'), ('5015','37145','37129'), ('5016','37146','37129'), ('5017','37147','37130'), ('5018','37148','37130'), ('5019','37149','37130'), ('5029','37185','37178'), ('5032','37188','37181'), ('5033','37189','37181'), ('5034','37190','37181'), ('5035','37191','37181'), ('5036','37192','37182'), ('5037','37193','37182'), ('5038','37194','37182'), ('5039','37195','37182'), ('5040','37196','37182'), ('5041','37197','37183'), ('5042','37198','37183'), ('5043','37199','37183'), ('5044','37200','37183'), ('5045','37201','37184'), ('5046','37202','37184'), ('5047','37203','37184'), ('5057','37239','37232'), ('5060','37242','37235'), ('5061','37243','37235'), ('5062','37244','37235'), ('5063','37245','37235'), ('5064','37246','37236'), ('5065','37247','37236'), ('5066','37248','37236'), ('5067','37249','37236'), ('5068','37250','37236'), ('5069','37251','37237'), ('5070','37252','37237'), ('5071','37253','37237'), ('5072','37254','37237'), ('5073','37255','37238'), ('5074','37256','37238'), ('5075','37257','37238'), ('5085','37293','37286'), ('5088','37296','37289'), ('5089','37297','37289'), ('5090','37298','37289'), ('5091','37299','37289'), ('5092','37300','37290'), ('5093','37301','37290'), ('5094','37302','37290'), ('5095','37303','37290'), ('5096','37304','37290'), ('5097','37305','37291'), ('5098','37306','37291'), ('5099','37307','37291'), ('5100','37308','37291'), ('5101','37309','37292'), ('5102','37310','37292'), ('5103','37311','37292'), ('5113','37347','37340'), ('5116','37350','37343'), ('5117','37351','37343'), ('5118','37352','37343'), ('5119','37353','37343'), ('5120','37354','37344'), ('5121','37355','37344'), ('5122','37356','37344'), ('5123','37357','37344'), ('5124','37358','37344'), ('5125','37359','37345'), ('5126','37360','37345'), ('5127','37361','37345'), ('5128','37362','37345'), ('5129','37363','37346'), ('5130','37364','37346'), ('5131','37365','37346'), ('5141','37401','37394'), ('5144','37404','37397'), ('5145','37405','37397'), ('5146','37406','37397'), ('5147','37407','37397'), ('5148','37408','37398'), ('5149','37409','37398'), ('5150','37410','37398'), ('5151','37411','37398'), ('5152','37412','37398'), ('5153','37413','37399'), ('5154','37414','37399'), ('5155','37415','37399'), ('5156','37416','37399'), ('5157','37417','37400'), ('5158','37418','37400'), ('5159','37419','37400'), ('5169','37455','37448'), ('5172','37458','37451'), ('5173','37459','37451'), ('5174','37460','37451'), ('5175','37461','37451'), ('5176','37462','37452'), ('5177','37463','37452'), ('5178','37464','37452'), ('5179','37465','37452'), ('5180','37466','37452'), ('5181','37467','37453'), ('5182','37468','37453'), ('5183','37469','37453'), ('5184','37470','37453'), ('5185','37471','37454'), ('5186','37472','37454'), ('5187','37473','37454'), ('5197','37509','37502'), ('5200','37512','37505'), ('5201','37513','37505'), ('5202','37514','37505'), ('5203','37515','37505'), ('5204','37516','37506'), ('5205','37517','37506'), ('5206','37518','37506'), ('5207','37519','37506'), ('5208','37520','37506'), ('5209','37521','37507'), ('5210','37522','37507'), ('5211','37523','37507'), ('5212','37524','37507'), ('5213','37525','37508'), ('5214','37526','37508'), ('5215','37527','37508'), ('5225','37563','37556'), ('5228','37566','37559'), ('5229','37567','37559'), ('5230','37568','37559'), ('5231','37569','37559'), ('5232','37570','37560'), ('5233','37571','37560'), ('5234','37572','37560'), ('5235','37573','37560'), ('5236','37574','37560'), ('5237','37575','37561'), ('5238','37576','37561'), ('5239','37577','37561'), ('5240','37578','37561'), ('5241','37579','37562'), ('5242','37580','37562'), ('5243','37581','37562'), ('5253','37617','37610'), ('5256','37620','37613'), ('5257','37621','37613'), ('5258','37622','37613'), ('5259','37623','37613'), ('5260','37624','37614'), ('5261','37625','37614'), ('5262','37626','37614'), ('5263','37627','37614'), ('5264','37628','37614'), ('5265','37629','37615'), ('5266','37630','37615'), ('5267','37631','37615'), ('5268','37632','37615'), ('5269','37633','37616'), ('5270','37634','37616'), ('5271','37635','37616'), ('5281','37671','37664'), ('5284','37674','37667'), ('5285','37675','37667'), ('5286','37676','37667'), ('5287','37677','37667'), ('5288','37678','37668'), ('5289','37679','37668'), ('5290','37680','37668'), ('5291','37681','37668'), ('5292','37682','37668'), ('5293','37683','37669'), ('5294','37684','37669'), ('5295','37685','37669'), ('5296','37686','37669'), ('5297','37687','37670'), ('5298','37688','37670'), ('5299','37689','37670'), ('5309','37725','37718'), ('5312','37728','37721'), ('5313','37729','37721'), ('5314','37730','37721'), ('5315','37731','37721'), ('5316','37732','37722'), ('5317','37733','37722'), ('5318','37734','37722'), ('5319','37735','37722'), ('5320','37736','37722'), ('5321','37737','37723'), ('5322','37738','37723'), ('5323','37739','37723'), ('5324','37740','37723'), ('5325','37741','37724'), ('5326','37742','37724'), ('5327','37743','37724'), ('5337','37779','37772'), ('5340','37782','37775'), ('5341','37783','37775'), ('5342','37784','37775'), ('5343','37785','37775'), ('5344','37786','37776'), ('5345','37787','37776'), ('5346','37788','37776'), ('5347','37789','37776'), ('5348','37790','37776'), ('5349','37791','37777'), ('5350','37792','37777'), ('5351','37793','37777'), ('5352','37794','37777'), ('5353','37795','37778'), ('5354','37796','37778'), ('5355','37797','37778'), ('5365','37833','37826'), ('5368','37836','37829'), ('5369','37837','37829'), ('5370','37838','37829'), ('5371','37839','37829'), ('5372','37840','37830'), ('5373','37841','37830'), ('5374','37842','37830'), ('5375','37843','37830'), ('5376','37844','37830'), ('5377','37845','37831'), ('5378','37846','37831'), ('5379','37847','37831'), ('5380','37848','37831'), ('5381','37849','37832'), ('5382','37850','37832'), ('5383','37851','37832'), ('5393','37887','37880'), ('5396','37890','37883'), ('5397','37891','37883'), ('5398','37892','37883'), ('5399','37893','37883'), ('5400','37894','37884'), ('5401','37895','37884'), ('5402','37896','37884'), ('5403','37897','37884'), ('5404','37898','37884'), ('5405','37899','37885'), ('5406','37900','37885'), ('5407','37901','37885'), ('5408','37902','37885'), ('5409','37903','37886'), ('5410','37904','37886'), ('5411','37905','37886'), ('5421','37941','37934'), ('5424','37944','37937'), ('5425','37945','37937'), ('5426','37946','37937'), ('5427','37947','37937'), ('5428','37948','37938'), ('5429','37949','37938'), ('5430','37950','37938'), ('5431','37951','37938'), ('5432','37952','37938'), ('5433','37953','37939'), ('5434','37954','37939'), ('5435','37955','37939'), ('5436','37956','37939'), ('5437','37957','37940'), ('5438','37958','37940'), ('5439','37959','37940'), ('5449','37995','37988'), ('5452','37998','37991'), ('5453','37999','37991'), ('5454','38000','37991'), ('5455','38001','37991'), ('5456','38002','37992'), ('5457','38003','37992'), ('5458','38004','37992'), ('5459','38005','37992'), ('5460','38006','37992'), ('5461','38007','37993'), ('5462','38008','37993'), ('5463','38009','37993'), ('5464','38010','37993'), ('5465','38011','37994'), ('5466','38012','37994'), ('5467','38013','37994'), ('5477','38049','38042'), ('5480','38052','38045'), ('5481','38053','38045'), ('5482','38054','38045'), ('5483','38055','38045'), ('5484','38056','38046'), ('5485','38057','38046'), ('5486','38058','38046'), ('5487','38059','38046'), ('5488','38060','38046'), ('5489','38061','38047'), ('5490','38062','38047'), ('5491','38063','38047'), ('5492','38064','38047'), ('5493','38065','38048'), ('5494','38066','38048'), ('5495','38067','38048'), ('5505','38103','38096'), ('5508','38106','38099'), ('5509','38107','38099'), ('5510','38108','38099'), ('5511','38109','38099'), ('5512','38110','38100'), ('5513','38111','38100'), ('5514','38112','38100'), ('5515','38113','38100'), ('5516','38114','38100'), ('5517','38115','38101'), ('5518','38116','38101'), ('5519','38117','38101'), ('5520','38118','38101'), ('5521','38119','38102'), ('5522','38120','38102'), ('5523','38121','38102'), ('5533','38157','38150'), ('5536','38160','38153'), ('5537','38161','38153'), ('5538','38162','38153'), ('5539','38163','38153'), ('5540','38164','38154'), ('5541','38165','38154'), ('5542','38166','38154'), ('5543','38167','38154'), ('5544','38168','38154'), ('5545','38169','38155'), ('5546','38170','38155'), ('5547','38171','38155'), ('5548','38172','38155'), ('5549','38173','38156'), ('5550','38174','38156'), ('5551','38175','38156'), ('5561','38211','38204'), ('5564','38214','38207'), ('5565','38215','38207'), ('5566','38216','38207'), ('5567','38217','38207'), ('5568','38218','38208'), ('5569','38219','38208'), ('5570','38220','38208'), ('5571','38221','38208'), ('5572','38222','38208'), ('5573','38223','38209'), ('5574','38224','38209'), ('5575','38225','38209'), ('5576','38226','38209'), ('5577','38227','38210'), ('5578','38228','38210'), ('5579','38229','38210'), ('5589','38265','38258'), ('5592','38268','38261'), ('5593','38269','38261'), ('5594','38270','38261'), ('5595','38271','38261'), ('5596','38272','38262'), ('5597','38273','38262'), ('5598','38274','38262'), ('5599','38275','38262'), ('5600','38276','38262'), ('5601','38277','38263'), ('5602','38278','38263'), ('5603','38279','38263'), ('5604','38280','38263'), ('5605','38281','38264'), ('5606','38282','38264'), ('5607','38283','38264'), ('5617','38319','38312'), ('5620','38322','38315'), ('5621','38323','38315'), ('5622','38324','38315'), ('5623','38325','38315'), ('5624','38326','38316'), ('5625','38327','38316'), ('5626','38328','38316'), ('5627','38329','38316'), ('5628','38330','38316'), ('5629','38331','38317'), ('5630','38332','38317'), ('5631','38333','38317'), ('5632','38334','38317'), ('5633','38335','38318'), ('5634','38336','38318'), ('5635','38337','38318'), ('5645','38373','38366'), ('5648','38376','38369'), ('5649','38377','38369'), ('5650','38378','38369'), ('5651','38379','38369'), ('5652','38380','38370'), ('5653','38381','38370'), ('5654','38382','38370'), ('5655','38383','38370'), ('5656','38384','38370'), ('5657','38385','38371'), ('5658','38386','38371'), ('5659','38387','38371'), ('5660','38388','38371'), ('5661','38389','38372'), ('5662','38390','38372'), ('5663','38391','38372'), ('5673','38427','38420'), ('5676','38430','38423'), ('5677','38431','38423'), ('5678','38432','38423'), ('5679','38433','38423'), ('5680','38434','38424'), ('5681','38435','38424'), ('5682','38436','38424'), ('5683','38437','38424'), ('5684','38438','38424'), ('5685','38439','38425'), ('5686','38440','38425'), ('5687','38441','38425'), ('5688','38442','38425'), ('5689','38443','38426'), ('5690','38444','38426'), ('5691','38445','38426'), ('5701','38481','38474'), ('5704','38484','38477'), ('5705','38485','38477'), ('5706','38486','38477'), ('5707','38487','38477'), ('5708','38488','38478'), ('5709','38489','38478'), ('5710','38490','38478'), ('5711','38491','38478'), ('5712','38492','38478'), ('5713','38493','38479'), ('5714','38494','38479'), ('5715','38495','38479'), ('5716','38496','38479'), ('5717','38497','38480'), ('5718','38498','38480'), ('5719','38499','38480'), ('5729','38535','38528'), ('5732','38538','38531'), ('5733','38539','38531'), ('5734','38540','38531'), ('5735','38541','38531'), ('5736','38542','38532'), ('5737','38543','38532'), ('5738','38544','38532'), ('5739','38545','38532'), ('5740','38546','38532'), ('5741','38547','38533'), ('5742','38548','38533'), ('5743','38549','38533'), ('5744','38550','38533'), ('5745','38551','38534'), ('5746','38552','38534'), ('5747','38553','38534'), ('5757','38589','38582'), ('5760','38592','38585'), ('5761','38593','38585'), ('5762','38594','38585'), ('5763','38595','38585'), ('5764','38596','38586'), ('5765','38597','38586'), ('5766','38598','38586'), ('5767','38599','38586'), ('5768','38600','38586'), ('5769','38601','38587'), ('5770','38602','38587'), ('5771','38603','38587'), ('5772','38604','38587'), ('5773','38605','38588'), ('5774','38606','38588'), ('5775','38607','38588'), ('5785','38643','38636'), ('5788','38646','38639'), ('5789','38647','38639'), ('5790','38648','38639'), ('5791','38649','38639'), ('5792','38650','38640'), ('5793','38651','38640'), ('5794','38652','38640'), ('5795','38653','38640'), ('5796','38654','38640'), ('5797','38655','38641'), ('5798','38656','38641'), ('5799','38657','38641'), ('5800','38658','38641'), ('5801','38659','38642'), ('5802','38660','38642'), ('5803','38661','38642'), ('5813','38697','38690'), ('5816','38700','38693'), ('5817','38701','38693'), ('5818','38702','38693'), ('5819','38703','38693'), ('5820','38704','38694'), ('5821','38705','38694'), ('5822','38706','38694'), ('5823','38707','38694'), ('5824','38708','38694'), ('5825','38709','38695'), ('5826','38710','38695'), ('5827','38711','38695'), ('5828','38712','38695'), ('5829','38713','38696'), ('5830','38714','38696'), ('5831','38715','38696'), ('5841','38751','38744'), ('5844','38754','38747'), ('5845','38755','38747'), ('5846','38756','38747'), ('5847','38757','38747'), ('5848','38758','38748'), ('5849','38759','38748'), ('5850','38760','38748'), ('5851','38761','38748'), ('5852','38762','38748'), ('5853','38763','38749'), ('5854','38764','38749'), ('5855','38765','38749'), ('5856','38766','38749'), ('5857','38767','38750'), ('5858','38768','38750'), ('5859','38769','38750'), ('5869','38805','38798'), ('5872','38808','38801'), ('5873','38809','38801'), ('5874','38810','38801'), ('5875','38811','38801'), ('5876','38812','38802'), ('5877','38813','38802'), ('5878','38814','38802'), ('5879','38815','38802'), ('5880','38816','38802'), ('5881','38817','38803'), ('5882','38818','38803'), ('5883','38819','38803'), ('5884','38820','38803'), ('5885','38821','38804'), ('5886','38822','38804'), ('5887','38823','38804'), ('5897','38859','38852'), ('5900','38862','38855'), ('5901','38863','38855'), ('5902','38864','38855'), ('5903','38865','38855'), ('5904','38866','38856'), ('5905','38867','38856'), ('5906','38868','38856'), ('5907','38869','38856'), ('5908','38870','38856'), ('5909','38871','38857'), ('5910','38872','38857'), ('5911','38873','38857'), ('5912','38874','38857'), ('5913','38875','38858'), ('5914','38876','38858'), ('5915','38877','38858'), ('5925','38913','38906'), ('5928','38916','38909'), ('5929','38917','38909'), ('5930','38918','38909'), ('5931','38919','38909'), ('5932','38920','38910'), ('5933','38921','38910'), ('5934','38922','38910'), ('5935','38923','38910'), ('5936','38924','38910'), ('5937','38925','38911'), ('5938','38926','38911'), ('5939','38927','38911'), ('5940','38928','38911'), ('5941','38929','38912'), ('5942','38930','38912'), ('5943','38931','38912'), ('5953','38967','38960'), ('5956','38970','38963'), ('5957','38971','38963'), ('5958','38972','38963'), ('5959','38973','38963'), ('5960','38974','38964'), ('5961','38975','38964'), ('5962','38976','38964'), ('5963','38977','38964'), ('5964','38978','38964'), ('5965','38979','38965'), ('5966','38980','38965'), ('5967','38981','38965'), ('5968','38982','38965'), ('5969','38983','38966'), ('5970','38984','38966'), ('5971','38985','38966'), ('5981','39021','39014'), ('5984','39024','39017'), ('5985','39025','39017'), ('5986','39026','39017'), ('5987','39027','39017'), ('5988','39028','39018'), ('5989','39029','39018'), ('5990','39030','39018'), ('5991','39031','39018'), ('5992','39032','39018'), ('5993','39033','39019'), ('5994','39034','39019'), ('5995','39035','39019'), ('5996','39036','39019'), ('5997','39037','39020'), ('5998','39038','39020'), ('5999','39039','39020'), ('6009','39075','39068'), ('6012','39078','39071'), ('6013','39079','39071'), ('6014','39080','39071'), ('6015','39081','39071'), ('6016','39082','39072'), ('6017','39083','39072'), ('6018','39084','39072'), ('6019','39085','39072'), ('6020','39086','39072'), ('6021','39087','39073'), ('6022','39088','39073'), ('6023','39089','39073'), ('6024','39090','39073'), ('6025','39091','39074'), ('6026','39092','39074'), ('6027','39093','39074'), ('6037','39129','39122'), ('6040','39132','39125'), ('6041','39133','39125'), ('6042','39134','39125'), ('6043','39135','39125'), ('6044','39136','39126'), ('6045','39137','39126'), ('6046','39138','39126'), ('6047','39139','39126'), ('6048','39140','39126'), ('6049','39141','39127'), ('6050','39142','39127'), ('6051','39143','39127'), ('6052','39144','39127'), ('6053','39145','39128'), ('6054','39146','39128'), ('6055','39147','39128'), ('6065','39183','39176'), ('6068','39186','39179'), ('6069','39187','39179'), ('6070','39188','39179'), ('6071','39189','39179'), ('6072','39190','39180'), ('6073','39191','39180'), ('6074','39192','39180'), ('6075','39193','39180'), ('6076','39194','39180'), ('6077','39195','39181'), ('6078','39196','39181'), ('6079','39197','39181'), ('6080','39198','39181'), ('6081','39199','39182'), ('6082','39200','39182'), ('6083','39201','39182'), ('6093','39237','39230'), ('6096','39240','39233'), ('6097','39241','39233'), ('6098','39242','39233'), ('6099','39243','39233'), ('6100','39244','39234'), ('6101','39245','39234'), ('6102','39246','39234'), ('6103','39247','39234'), ('6104','39248','39234'), ('6105','39249','39235'), ('6106','39250','39235'), ('6107','39251','39235'), ('6108','39252','39235'), ('6109','39253','39236'), ('6110','39254','39236'), ('6111','39255','39236'), ('6121','39291','39284'), ('6124','39294','39287'), ('6125','39295','39287'), ('6126','39296','39287'), ('6127','39297','39287'), ('6128','39298','39288'), ('6129','39299','39288'), ('6130','39300','39288'), ('6131','39301','39288'), ('6132','39302','39288'), ('6133','39303','39289'), ('6134','39304','39289'), ('6135','39305','39289'), ('6136','39306','39289'), ('6137','39307','39290'), ('6138','39308','39290'), ('6139','39309','39290'), ('6149','39345','39338'), ('6152','39348','39341'), ('6153','39349','39341'), ('6154','39350','39341'), ('6155','39351','39341'), ('6156','39352','39342'), ('6157','39353','39342'), ('6158','39354','39342'), ('6159','39355','39342'), ('6160','39356','39342'), ('6161','39357','39343'), ('6162','39358','39343'), ('6163','39359','39343'), ('6164','39360','39343'), ('6165','39361','39344'), ('6166','39362','39344'), ('6167','39363','39344'), ('6177','39399','39392'), ('6180','39402','39395'), ('6181','39403','39395'), ('6182','39404','39395'), ('6183','39405','39395'), ('6184','39406','39396'), ('6185','39407','39396'), ('6186','39408','39396'), ('6187','39409','39396'), ('6188','39410','39396'), ('6189','39411','39397'), ('6190','39412','39397'), ('6191','39413','39397'), ('6192','39414','39397'), ('6193','39415','39398'), ('6194','39416','39398'), ('6195','39417','39398'), ('6205','39453','39446'), ('6208','39456','39449'), ('6209','39457','39449'), ('6210','39458','39449'), ('6211','39459','39449'), ('6212','39460','39450'), ('6213','39461','39450'), ('6214','39462','39450'), ('6215','39463','39450'), ('6216','39464','39450'), ('6217','39465','39451'), ('6218','39466','39451'), ('6219','39467','39451'), ('6220','39468','39451'), ('6221','39469','39452'), ('6222','39470','39452'), ('6223','39471','39452'), ('6233','39507','39500'), ('6236','39510','39503'), ('6237','39511','39503'), ('6238','39512','39503'), ('6239','39513','39503'), ('6240','39514','39504'), ('6241','39515','39504'), ('6242','39516','39504'), ('6243','39517','39504'), ('6244','39518','39504'), ('6245','39519','39505'), ('6246','39520','39505'), ('6247','39521','39505'), ('6248','39522','39505'), ('6249','39523','39506'), ('6250','39524','39506'), ('6251','39525','39506'), ('6261','39561','39554'), ('6264','39564','39557'), ('6265','39565','39557'), ('6266','39566','39557'), ('6267','39567','39557'), ('6268','39568','39558'), ('6269','39569','39558'), ('6270','39570','39558'), ('6271','39571','39558'), ('6272','39572','39558'), ('6273','39573','39559'), ('6274','39574','39559'), ('6275','39575','39559'), ('6276','39576','39559'), ('6277','39577','39560'), ('6278','39578','39560'), ('6279','39579','39560'), ('6289','39615','39608'), ('6292','39618','39611'), ('6293','39619','39611'), ('6294','39620','39611'), ('6295','39621','39611'), ('6296','39622','39612'), ('6297','39623','39612'), ('6298','39624','39612'), ('6299','39625','39612'), ('6300','39626','39612'), ('6301','39627','39613'), ('6302','39628','39613'), ('6303','39629','39613'), ('6304','39630','39613'), ('6305','39631','39614'), ('6306','39632','39614'), ('6307','39633','39614'), ('6317','39669','39662'), ('6320','39672','39665'), ('6321','39673','39665'), ('6322','39674','39665'), ('6323','39675','39665'), ('6324','39676','39666'), ('6325','39677','39666'), ('6326','39678','39666'), ('6327','39679','39666'), ('6328','39680','39666'), ('6329','39681','39667'), ('6330','39682','39667'), ('6331','39683','39667'), ('6332','39684','39667'), ('6333','39685','39668'), ('6334','39686','39668'), ('6335','39687','39668'), ('6345','39723','39716'), ('6348','39726','39719'), ('6349','39727','39719'), ('6350','39728','39719'), ('6351','39729','39719'), ('6352','39730','39720'), ('6353','39731','39720'), ('6354','39732','39720'), ('6355','39733','39720'), ('6356','39734','39720'), ('6357','39735','39721'), ('6358','39736','39721'), ('6359','39737','39721'), ('6360','39738','39721'), ('6361','39739','39722'), ('6362','39740','39722'), ('6363','39741','39722'), ('6364','39754','39749'), ('6365','39755','39749'), ('6366','39756','39749'), ('6367','39757','39749'), ('6368','39758','39749'), ('6369','39759','39749'), ('6370','39760','39749'), ('6371','39761','39749'), ('6372','39762','39750'), ('6373','39763','39750'), ('6374','39764','39750'), ('6375','39765','39750'), ('6376','39766','39750'), ('6377','39767','39750'), ('6378','39768','39750'), ('6379','39769','39750'), ('6380','39770','39750'), ('6381','39771','39750'), ('6382','39772','39751'), ('6383','39773','39751'), ('6384','39774','39751'), ('6385','39775','39751'), ('6386','39776','39751'), ('6387','39777','39751'), ('6388','39778','39751'), ('6389','39779','39751'), ('6390','39780','39751'), ('6391','39781','39751'), ('6392','39782','39752'), ('6393','39783','39752'), ('6394','39784','39752'), ('6395','39785','39752'), ('6396','39786','39752'), ('6397','39787','39752'), ('6398','39788','39752'), ('6399','39789','39752'), ('6400','39790','39753'), ('6401','39791','39753'), ('6402','39792','39753'), ('6403','39793','39753'), ('6404','39794','39753'), ('6405','39795','39753'), ('6406','39796','39753'), ('6407','39803','30571'), ('6408','39808','39806'), ('6409','39809','39806'), ('6410','39810','39806'), ('6411','39811','39806'), ('6412','39812','39807'), ('6413','39813','39807'), ('6414','39814','39807'), ('6415','39815','39807'), ('6416','39817','39816'), ('6417','39818','39816'), ('6418','39819','39816'), ('6419','39820','39816'), ('6420','39861','39859'), ('6421','39862','39859'), ('6422','39863','39859'), ('6423','39864','39859'), ('6424','39865','39851'), ('6425','39866','39852'), ('6426','39867','39853'), ('6428','39869','39855'), ('6429','39870','39856'), ('6430','39871','39857'), ('6431','39872','39858'), ('6432','39873','39859'), ('6433','39874','39860'), ('6434','39875','39860'), ('6435','39890','39889'), ('6436','39891','39889'), ('6437','39892','39889'), ('6438','39893','39889'), ('6439','39894','39889'), ('6440','39895','39889'), ('6441','39896','39889'), ('6442','39897','39889'), ('6443','39898','39889'), ('6444','39899','39889'), ('6445','39900','39889'), ('6446','39901','39889'), ('6447','39902','39889'), ('6448','39903','39889'), ('6449','39904','39889'), ('6450','39921','39920'), ('6451','39922','39920'), ('6452','39923','39920'), ('6453','39924','39920'), ('6454','39925','39917'), ('6455','39926','39917'), ('6456','39927','39917'), ('6457','39928','39917'), ('6458','39929','39917'), ('6459','39930','39917'), ('6460','39931','39918'), ('6461','39932','39918'), ('6462','39933','39918'), ('6463','39934','39919'), ('6464','39935','39920'), ('6465','39936','39920'), ('6493','39970','39942'), ('6494','39971','39942'), ('6495','39972','39942'), ('6496','39973','39942'), ('6497','39974','39942'), ('6498','39975','39942'), ('6499','39976','39942'), ('6500','40003','40000'), ('6501','40004','40000'), ('6502','40005','40000'), ('6503','40006','40000'), ('6504','40007','40000'), ('6505','40008','40001'), ('6506','40009','40002'), ('6507','40036','40022'), ('6508','40037','40024'), ('6509','40038','40024'), ('6510','40039','40024'), ('6511','40040','40024'), ('6512','40041','40024'), ('6513','40042','40025'), ('6514','40043','40025'), ('6515','40044','40025'), ('6516','40045','40025'), ('6517','40046','40025'), ('6518','40047','40025'), ('6519','40048','40025'), ('6520','40049','40026'), ('6521','40050','40026'), ('6522','40051','40026'), ('6523','40052','40027'), ('6524','40053','40028'), ('6525','40054','40028'), ('6526','40055','40028'), ('6527','40056','40028'), ('6528','40057','40028'), ('6529','40058','40028'), ('6530','40059','40029'), ('6531','40060','40029'), ('6532','40061','40029'), ('6533','40062','40029'), ('6534','40063','40029'), ('6535','40064','40029'), ('6536','40065','40029'), ('6537','40066','40029'), ('6538','40067','40029'), ('6539','40068','40029'), ('6540','40069','40029'), ('6541','40070','40029'), ('6542','40071','40029'), ('6543','40072','40029'), ('6544','40073','40029'), ('6545','40074','40029'), ('6546','40075','40029'), ('6547','40076','40030'), ('6556','40085','40031'), ('6557','40086','40032'), ('6558','40087','40032'), ('6559','40088','40032'), ('6560','40089','40032'), ('6561','40090','40034'), ('6562','40091','40034'), ('6563','40092','40034'), ('6564','40093','40034'), ('6565','40094','40034'), ('6572','40147','40138'), ('6573','40148','40138'), ('6574','40149','40138'), ('6575','40150','40138'), ('6576','40151','40138'), ('6577','40152','40138'), ('6578','40153','40138'), ('6579','40154','40138'), ('6580','40155','40138'), ('6581','40156','40138'), ('6582','40157','40138'), ('6583','40158','40138'), ('6584','40159','40138'), ('6585','40160','40138'), ('6586','40161','40138'), ('6587','40162','40138'), ('6588','40163','40138'), ('6589','40164','40138'), ('6590','40165','40138'), ('6591','40166','40138'), ('6592','40167','40138'), ('6593','40168','40138'), ('6594','40169','40138'), ('6595','40170','40138'), ('6596','40171','40138'), ('6597','40172','40138'), ('6624','40491','40489'), ('6625','40492','40489'), ('6626','40493','40489'), ('6627','40494','40489'), ('6628','40495','40489'), ('6629','40496','40489'), ('6630','40497','40489'), ('6631','40498','40489'), ('6632','40499','40489'), ('6633','40500','40490'), ('6634','40517','40513'), ('6635','40518','40513'), ('6636','40519','40513'), ('6637','40520','40513'), ('6638','40521','40513'), ('6639','40522','40513'), ('6640','40523','40513'), ('6641','40524','40513'), ('6642','40525','40513'), ('6643','40526','40514'), ('6644','40527','40515'), ('6645','40528','40515'), ('6646','40529','40515'), ('6647','40530','40516'), ('6648','40531','40516'), ('6649','40532','40516'), ('6650','40545','40544'), ('6651','40546','40544'), ('6652','40547','40544'), ('6653','40548','40544'), ('6654','40549','40544'), ('6655','40550','40544'), ('6656','40551','40544'), ('6657','40552','40544'), ('6658','40553','40544'), ('6659','40582','40580'), ('6660','40583','40580'), ('6661','40584','40580'), ('6662','40585','40580'), ('6663','40586','40580'), ('6664','40587','40580'), ('6665','40588','40580'), ('6666','40589','40580'), ('6667','40590','40580'), ('6668','40591','40581'), ('6669','40592','40581'), ('6670','40593','40581'), ('6671','40594','40581'), ('6672','40595','40581'), ('6673','40596','40581'), ('6674','40597','40581'), ('6675','40598','40581'), ('6676','40599','40581'), ('6677','40663','40643'), ('6678','40664','40644'), ('6679','40665','40645'), ('6680','40666','40645'), ('6681','40667','40645'), ('6682','40668','40646'), ('6683','40669','40647'), ('6684','40670','40647'), ('6685','40671','40648'), ('6686','40672','40649'), ('6687','40673','40650'), ('6688','40674','40651'), ('6689','40675','40651'), ('6690','40676','40651'), ('6691','40677','40652'), ('6692','40678','40652'), ('6693','40679','40652'), ('6694','40680','40652'), ('6695','40681','40652'), ('6696','40682','40652'), ('6697','40683','40652'), ('6698','40684','40652'), ('6699','40685','40652'), ('6700','40686','40653'), ('6701','40687','40654'), ('6702','40688','40655'), ('6703','40689','40655'), ('6704','40690','40656'), ('6705','40691','40657'), ('6706','40692','40658'), ('6707','40693','40659'), ('6708','40694','40659'), ('6709','40695','40659'), ('6710','40696','40660'), ('6711','40697','40660'), ('6712','40698','40660'), ('6713','40699','40660'), ('6714','40700','40660'), ('6715','40701','40660'), ('6716','40702','40660'), ('6717','40703','40660'), ('6718','40704','40660'), ('6719','40705','40661'), ('6720','40706','40662'), ('6721','40707','40662'), ('6722','40721','40719'), ('6723','40722','40719'), ('6724','40723','40719'), ('6725','40724','40719'), ('6726','40725','40719'), ('6727','40726','40719'), ('6728','40727','40719'), ('6729','40728','40719'), ('6730','40729','40719'), ('6731','40730','40720'), ('6732','40743','40742'), ('6733','40744','40742'), ('6734','40745','40742'), ('6735','40746','40742'), ('6736','40747','40742'), ('6737','40748','40742'), ('6738','40749','40742'), ('6739','40750','40742'), ('6740','40751','40742'), ('6741','40765','40763'), ('6742','40766','40763'), ('6743','40767','40763'), ('6744','40768','40763'), ('6745','40769','40763'), ('6746','40770','40763'), ('6747','40771','40763'), ('6748','40772','40763'), ('6749','40773','40763'), ('6750','40774','40764'), ('6751','40788','40786'), ('6752','40789','40786'), ('6753','40790','40786'), ('6754','40791','40786'), ('6755','40792','40786'), ('6756','40793','40786'), ('6757','40794','40786'), ('6758','40795','40786'), ('6759','40796','40786'), ('6760','40797','40787'), ('6761','40811','40809'), ('6762','40812','40809'), ('6763','40813','40809'), ('6764','40814','40809'), ('6765','40815','40809'), ('6766','40816','40809'), ('6767','40817','40809'), ('6768','40818','40809'), ('6769','40819','40809'), ('6770','40820','40810'), ('6771','40834','40832'), ('6772','40835','40832'), ('6773','40836','40832'), ('6774','40837','40832'), ('6775','40838','40832'), ('6776','40839','40832'), ('6777','40840','40832'), ('6778','40841','40832'), ('6779','40842','40832'), ('6780','40843','40833'), ('6781','40857','40855'), ('6782','40858','40855'), ('6783','40859','40855'), ('6784','40860','40855'), ('6785','40861','40855'), ('6786','40862','40855'), ('6787','40863','40855'), ('6788','40864','40855'), ('6789','40865','40855'), ('6790','40866','40856'), ('6791','40880','40878'), ('6792','40881','40878'), ('6793','40882','40878'), ('6794','40883','40878'), ('6795','40884','40878'), ('6796','40885','40878'), ('6797','40886','40878'), ('6798','40887','40878'), ('6799','40888','40878'), ('6800','40889','40879'), ('6801','40902','40901'), ('6802','40903','40901'), ('6803','40904','40901'), ('6804','40905','40901'), ('6805','40906','40901'), ('6806','40907','40901'), ('6807','40908','40901'), ('6808','40909','40901'), ('6809','40910','40901'), ('6810','40924','40922'), ('6811','40925','40922'), ('6812','40926','40922'), ('6813','40927','40922'), ('6814','40928','40922'), ('6815','40929','40922'), ('6816','40930','40922'), ('6817','40931','40922'), ('6818','40932','40922'), ('6819','40933','40923'), ('6820','40946','40945'), ('6821','40947','40945'), ('6822','40948','40945'), ('6823','40949','40945'), ('6824','40950','40945'), ('6825','40951','40945'), ('6826','40952','40945'), ('6827','40953','40945'), ('6828','40954','40945'), ('6829','40967','40966'), ('6830','40968','40966'), ('6831','40969','40966'), ('6832','40970','40966'), ('6833','40971','40966'), ('6834','40972','40966'), ('6835','40973','40966'), ('6836','40974','40966'), ('6837','40975','40966'), ('6838','40988','40987'), ('6839','40989','40987'), ('6840','40990','40987'), ('6841','40991','40987'), ('6842','40992','40987'), ('6843','40993','40987'), ('6844','40994','40987'), ('6845','40995','40987'), ('6846','40996','40987'), ('6847','41009','41008'), ('6848','41010','41008'), ('6849','41011','41008'), ('6850','41012','41008'), ('6851','41013','41008'), ('6852','41014','41008'), ('6853','41015','41008'), ('6854','41016','41008'), ('6855','41017','41008'), ('6856','41030','41029'), ('6857','41031','41029'), ('6858','41032','41029'), ('6859','41033','41029'), ('6860','41034','41029'), ('6861','41035','41029'), ('6862','41036','41029'), ('6863','41037','41029'), ('6864','41038','41029'), ('6865','41051','41050'), ('6866','41052','41050'), ('6867','41053','41050'), ('6868','41054','41050'), ('6869','41055','41050'), ('6870','41056','41050'), ('6871','41057','41050'), ('6872','41058','41050'), ('6873','41059','41050'), ('6874','41072','41071'), ('6875','41073','41071'), ('6876','41074','41071'), ('6877','41075','41071'), ('6878','41076','41071'), ('6879','41077','41071'), ('6880','41078','41071'), ('6881','41079','41071'), ('6882','41080','41071'), ('6883','41093','41092'), ('6884','41094','41092'), ('6885','41095','41092'), ('6886','41096','41092'), ('6887','41097','41092'), ('6888','41098','41092'), ('6889','41099','41092'), ('6890','41100','41092'), ('6891','41101','41092'), ('6892','41114','41113'), ('6893','41115','41113'), ('6894','41116','41113'), ('6895','41117','41113'), ('6896','41118','41113'), ('6897','41119','41113'), ('6898','41120','41113'), ('6899','41121','41113'), ('6900','41122','41113'), ('6901','41135','41134'), ('6902','41136','41134'), ('6903','41137','41134'), ('6904','41138','41134'), ('6905','41139','41134'), ('6906','41140','41134'), ('6907','41141','41134'), ('6908','41142','41134'), ('6909','41143','41134'), ('6910','41156','41155'), ('6911','41157','41155'), ('6912','41158','41155'), ('6913','41159','41155'), ('6914','41160','41155'), ('6915','41161','41155'), ('6916','41162','41155'), ('6917','41163','41155'), ('6918','41164','41155'), ('6919','41177','41176'), ('6920','41178','41176'), ('6921','41179','41176'), ('6922','41180','41176'), ('6923','41181','41176'), ('6924','41182','41176'), ('6925','41183','41176'), ('6926','41184','41176'), ('6927','41185','41176'), ('6928','41198','41197'), ('6929','41199','41197'), ('6930','41200','41197'), ('6931','41201','41197'), ('6932','41202','41197'), ('6933','41203','41197'), ('6934','41204','41197'), ('6935','41205','41197'), ('6936','41206','41197'), ('6937','41219','41218'), ('6938','41220','41218'), ('6939','41221','41218'), ('6940','41222','41218'), ('6941','41223','41218'), ('6942','41224','41218'), ('6943','41225','41218'), ('6944','41226','41218'), ('6945','41227','41218'), ('6946','41240','41239'), ('6947','41241','41239'), ('6948','41242','41239'), ('6949','41243','41239'), ('6950','41244','41239'), ('6951','41245','41239'), ('6952','41246','41239'), ('6953','41247','41239'), ('6954','41248','41239'), ('6955','41261','41260'), ('6956','41262','41260'), ('6957','41263','41260'), ('6958','41264','41260'), ('6959','41265','41260'), ('6960','41266','41260'), ('6961','41267','41260'), ('6962','41268','41260'), ('6963','41269','41260'), ('6964','41282','41281'), ('6965','41283','41281'), ('6966','41284','41281'), ('6967','41285','41281'), ('6968','41286','41281'), ('6969','41287','41281'), ('6970','41288','41281'), ('6971','41289','41281'), ('6972','41290','41281'), ('6973','41303','41302'), ('6974','41304','41302'), ('6975','41305','41302'), ('6976','41306','41302'), ('6977','41307','41302'), ('6978','41308','41302'), ('6979','41309','41302'), ('6980','41310','41302'), ('6981','41311','41302'), ('6982','41324','41323'), ('6983','41325','41323'), ('6984','41326','41323'), ('6985','41327','41323'), ('6986','41328','41323'), ('6987','41329','41323'), ('6988','41330','41323'), ('6989','41331','41323'), ('6990','41332','41323'), ('6991','41345','41344'), ('6992','41346','41344'), ('6993','41347','41344'), ('6994','41348','41344'), ('6995','41349','41344'), ('6996','41350','41344'), ('6997','41351','41344'), ('6998','41352','41344'), ('6999','41353','41344'), ('7000','41366','41365'), ('7001','41367','41365'), ('7002','41368','41365'), ('7003','41369','41365'), ('7004','41370','41365'), ('7005','41371','41365'), ('7006','41372','41365'), ('7007','41373','41365'), ('7008','41374','41365'), ('7009','41387','41386'), ('7010','41388','41386'), ('7011','41389','41386'), ('7012','41390','41386'), ('7013','41391','41386'), ('7014','41392','41386'), ('7015','41393','41386'), ('7016','41394','41386'), ('7017','41395','41386'), ('7018','41408','41407'), ('7019','41409','41407'), ('7020','41410','41407'), ('7021','41411','41407'), ('7022','41412','41407'), ('7023','41413','41407'), ('7024','41414','41407'), ('7025','41415','41407'), ('7026','41416','41407'), ('7027','41429','41428'), ('7028','41430','41428'), ('7029','41431','41428'), ('7030','41432','41428'), ('7031','41433','41428'), ('7032','41434','41428'), ('7033','41435','41428'), ('7034','41436','41428'), ('7035','41437','41428'), ('7036','41450','41449'), ('7037','41451','41449'), ('7038','41452','41449'), ('7039','41453','41449'), ('7040','41454','41449'), ('7041','41455','41449'), ('7042','41456','41449'), ('7043','41457','41449'), ('7044','41458','41449'), ('7045','41471','41470'), ('7046','41472','41470'), ('7047','41473','41470'), ('7048','41474','41470'), ('7049','41475','41470'), ('7050','41476','41470'), ('7051','41477','41470'), ('7052','41478','41470'), ('7053','41479','41470'), ('7054','41492','41491'), ('7055','41493','41491'), ('7056','41494','41491'), ('7057','41495','41491'), ('7058','41496','41491'), ('7059','41497','41491'), ('7060','41498','41491'), ('7061','41499','41491'), ('7062','41500','41491'), ('7063','41513','41512'), ('7064','41514','41512'), ('7065','41515','41512'), ('7066','41516','41512'), ('7067','41517','41512'), ('7068','41518','41512'), ('7069','41519','41512'), ('7070','41520','41512'), ('7071','41521','41512'), ('7072','41534','41533'), ('7073','41535','41533'), ('7074','41536','41533'), ('7075','41537','41533'), ('7076','41538','41533'), ('7077','41539','41533'), ('7078','41540','41533'), ('7079','41541','41533'), ('7080','41542','41533'), ('7081','41555','41554'), ('7082','41556','41554'), ('7083','41557','41554'), ('7084','41558','41554'), ('7085','41559','41554'), ('7086','41560','41554'), ('7087','41561','41554'), ('7088','41562','41554'), ('7089','41563','41554'), ('7090','41576','41575'), ('7091','41577','41575'), ('7092','41578','41575'), ('7093','41579','41575'), ('7094','41580','41575'), ('7095','41581','41575'), ('7096','41582','41575'), ('7097','41583','41575'), ('7098','41584','41575'), ('7099','41597','41596'), ('7100','41598','41596'), ('7101','41599','41596'), ('7102','41600','41596'), ('7103','41601','41596'), ('7104','41602','41596'), ('7105','41603','41596'), ('7106','41604','41596'), ('7107','41605','41596'), ('7108','41618','41617'), ('7109','41619','41617'), ('7110','41620','41617'), ('7111','41621','41617'), ('7112','41622','41617'), ('7113','41623','41617'), ('7114','41624','41617'), ('7115','41625','41617'), ('7116','41626','41617'), ('7117','41639','41638'), ('7118','41640','41638'), ('7119','41641','41638'), ('7120','41642','41638'), ('7121','41643','41638'), ('7122','41644','41638'), ('7123','41645','41638'), ('7124','41646','41638'), ('7125','41647','41638'), ('7126','41660','41659'), ('7127','41661','41659'), ('7128','41662','41659'), ('7129','41663','41659'), ('7130','41664','41659'), ('7131','41665','41659'), ('7132','41666','41659'), ('7133','41667','41659'), ('7134','41668','41659'), ('7135','41681','41680'), ('7136','41682','41680'), ('7137','41683','41680'), ('7138','41684','41680'), ('7139','41685','41680'), ('7140','41686','41680'), ('7141','41687','41680'), ('7142','41688','41680'), ('7143','41689','41680'), ('7144','41702','41701'), ('7145','41703','41701'), ('7146','41704','41701'), ('7147','41705','41701'), ('7148','41706','41701'), ('7149','41707','41701'), ('7150','41708','41701'), ('7151','41709','41701'), ('7152','41710','41701'), ('7153','41723','41722'), ('7154','41724','41722'), ('7155','41725','41722'), ('7156','41726','41722'), ('7157','41727','41722'), ('7158','41728','41722'), ('7159','41729','41722'), ('7160','41730','41722'), ('7161','41731','41722'), ('7162','41744','41743'), ('7163','41745','41743'), ('7164','41746','41743'), ('7165','41747','41743'), ('7166','41748','41743'), ('7167','41749','41743'), ('7168','41750','41743'), ('7169','41751','41743'), ('7170','41752','41743'), ('7171','41765','41764'), ('7172','41766','41764'), ('7173','41767','41764'), ('7174','41768','41764'), ('7175','41769','41764'), ('7176','41770','41764'), ('7177','41771','41764'), ('7178','41772','41764'), ('7179','41773','41764'), ('7180','41786','41785'), ('7181','41787','41785'), ('7182','41788','41785'), ('7183','41789','41785'), ('7184','41790','41785'), ('7185','41791','41785'), ('7186','41792','41785'), ('7187','41793','41785'), ('7188','41794','41785'), ('7189','41807','41806'), ('7190','41808','41806'), ('7191','41809','41806'), ('7192','41810','41806'), ('7193','41811','41806'), ('7194','41812','41806'), ('7195','41813','41806'), ('7196','41814','41806'), ('7197','41815','41806'), ('7198','41828','41827'), ('7199','41829','41827'), ('7200','41830','41827'), ('7201','41831','41827'), ('7202','41832','41827'), ('7203','41833','41827'), ('7204','41834','41827'), ('7205','41835','41827'), ('7206','41836','41827'), ('7207','41849','41848'), ('7208','41850','41848'), ('7209','41851','41848'), ('7210','41852','41848'), ('7211','41853','41848'), ('7212','41854','41848'), ('7213','41855','41848'), ('7214','41856','41848'), ('7215','41857','41848'), ('7216','41870','41869'), ('7217','41871','41869'), ('7218','41872','41869'), ('7219','41873','41869'), ('7220','41874','41869'), ('7221','41875','41869'), ('7222','41876','41869'), ('7223','41877','41869'), ('7224','41878','41869'), ('7225','41891','41890'), ('7226','41892','41890'), ('7227','41893','41890'), ('7228','41894','41890'), ('7229','41895','41890'), ('7230','41896','41890'), ('7231','41897','41890'), ('7232','41898','41890'), ('7233','41899','41890'), ('7234','41912','41911'), ('7235','41913','41911'), ('7236','41914','41911'), ('7237','41915','41911'), ('7238','41916','41911'), ('7239','41917','41911'), ('7240','41918','41911'), ('7241','41919','41911'), ('7242','41920','41911'), ('7243','41933','41932'), ('7244','41934','41932'), ('7245','41935','41932'), ('7246','41936','41932'), ('7247','41937','41932'), ('7248','41938','41932'), ('7249','41939','41932'), ('7250','41940','41932'), ('7251','41941','41932'), ('7252','41954','41953'), ('7253','41955','41953'), ('7254','41956','41953'), ('7255','41957','41953'), ('7256','41958','41953'), ('7257','41959','41953'), ('7258','41960','41953'), ('7259','41961','41953'), ('7260','41962','41953'), ('7261','41975','41974'), ('7262','41976','41974'), ('7263','41977','41974'), ('7264','41978','41974'), ('7265','41979','41974'), ('7266','41980','41974'), ('7267','41981','41974'), ('7268','41982','41974'), ('7269','41983','41974'), ('7270','41996','41995'), ('7271','41997','41995'), ('7272','41998','41995'), ('7273','41999','41995'), ('7274','42000','41995'), ('7275','42001','41995'), ('7276','42002','41995'), ('7277','42003','41995'), ('7278','42004','41995'), ('7279','42017','42016'), ('7280','42018','42016'), ('7281','42019','42016'), ('7282','42020','42016'), ('7283','42021','42016'), ('7284','42022','42016'), ('7285','42023','42016'), ('7286','42024','42016'), ('7287','42025','42016'), ('7288','42038','42037'), ('7289','42039','42037'), ('7290','42040','42037'), ('7291','42041','42037'), ('7292','42042','42037'), ('7293','42043','42037'), ('7294','42044','42037'), ('7295','42045','42037'), ('7296','42046','42037'), ('7297','42059','42058'), ('7298','42060','42058'), ('7299','42061','42058'), ('7300','42062','42058'), ('7301','42063','42058'), ('7302','42064','42058'), ('7303','42065','42058'), ('7304','42066','42058'), ('7305','42067','42058'), ('7306','42080','42079'), ('7307','42081','42079'), ('7308','42082','42079'), ('7309','42083','42079'), ('7310','42084','42079'), ('7311','42085','42079'), ('7312','42086','42079'), ('7313','42087','42079'), ('7314','42088','42079'), ('7315','42101','42100'), ('7316','42102','42100'), ('7317','42103','42100'), ('7318','42104','42100'), ('7319','42105','42100'), ('7320','42106','42100'), ('7321','42107','42100'), ('7322','42108','42100'), ('7323','42109','42100'), ('7324','42123','42121'), ('7325','42124','42121'), ('7326','42125','42121'), ('7327','42126','42121'), ('7328','42127','42121'), ('7329','42128','42121'), ('7330','42129','42121'), ('7331','42130','42121'), ('7332','42131','42121'), ('7333','42132','42122'), ('7334','42145','42144'), ('7335','42146','42144'), ('7336','42147','42144'), ('7337','42148','42144'), ('7338','42149','42144'), ('7339','42150','42144'), ('7340','42151','42144'), ('7341','42152','42144'), ('7342','42153','42144'), ('7343','42166','42165'), ('7344','42167','42165'), ('7345','42168','42165'), ('7346','42169','42165'), ('7347','42170','42165'), ('7348','42171','42165'), ('7349','42172','42165'), ('7350','42173','42165'), ('7351','42174','42165'), ('7352','42277','42271'), ('7353','42278','42271'), ('7354','42279','42271'), ('7355','42280','42271'), ('7356','42281','42271'), ('7357','42282','42271'), ('7358','42283','42271'), ('7359','42284','42271'), ('7360','42285','42272'), ('7361','42286','42272'), ('7362','42287','42272'), ('7363','42288','42273'), ('7364','42289','42273'), ('7365','42290','42273'), ('7366','42291','42273'), ('7367','42292','42274'), ('7368','42293','42274'), ('7369','42294','42274'), ('7370','42295','42274'), ('7371','42296','42274'), ('7372','42297','42274'), ('7373','42298','42274'), ('7374','42299','42274'), ('7375','42300','42275'), ('7376','42301','42275'), ('7377','42302','42275'), ('7378','42303','42276'), ('7379','42304','42276'), ('7380','42305','42276'), ('7381','42306','42276'), ('7382','42307','42272'), ('7383','42308','42272'), ('7384','42309','42272'), ('7385','42310','42272'), ('7386','42311','42272'), ('7387','42312','42272'), ('7388','42313','42275'), ('7389','42314','42275'), ('7390','42315','42275'), ('7391','42316','42275'), ('7392','42317','42275'), ('7393','42318','42275'), ('7394','42363','42360'), ('7395','42364','42360'), ('7396','42365','42360'), ('7397','42366','42360'), ('7398','42367','42360'), ('7399','42368','42360'), ('7400','42369','42360'), ('7401','42370','42360'), ('7402','42371','42361'), ('7403','42372','42361'), ('7404','42373','42361'), ('7405','42374','42362'), ('7406','42375','42362'), ('7407','42376','42362'), ('7408','42377','42362'), ('7409','42378','42361'), ('7410','42379','42361'), ('7411','42380','42361'), ('7412','42381','42361'), ('7413','42382','42361'), ('7414','42383','42361'), ('7415','42415','42410'), ('7416','42416','42410'), ('7417','42417','42410'), ('7418','42418','42410'), ('7419','42419','42410'), ('7420','42420','42410'), ('7421','42421','42410'), ('7422','42422','42410'), ('7423','42423','42410'), ('7424','42424','42410'), ('7425','42425','42411'), ('7426','42426','42411'), ('7427','42427','42411'), ('7428','42428','42411'), ('7429','42429','42411'), ('7430','42430','42411'), ('7431','42431','42411'), ('7432','42432','42411'), ('7433','42433','42411'), ('7434','42434','42412'), ('7435','42435','42413'), ('7436','42436','42413'), ('7437','42437','42413'), ('7438','42438','42414'), ('7439','42439','42414'), ('7440','42440','42414'), ('7441','42441','42414'), ('7442','42442','42410'), ('7443','42491','42487'), ('7444','42492','42487'), ('7445','42493','42487'), ('7446','42494','42487'), ('7447','42495','42487'), ('7448','42496','42487'), ('7449','42497','42488'), ('7450','42498','42488'), ('7451','42499','42488'), ('7452','42500','42488'), ('7453','42501','42488'), ('7454','42502','42488'), ('7455','42503','42488'), ('7456','42504','42488'), ('7457','42505','42489'), ('7458','42506','42490'), ('7459','42507','42490'), ('7460','42508','42490'), ('7461','42509','42487'), ('7462','42510','42487'), ('7463','42511','42487'), ('7464','42547','42543'), ('7465','42548','42543'), ('7466','42549','42543'), ('7467','42550','42543'), ('7468','42551','42543'), ('7469','42552','42543'), ('7470','42553','42544'), ('7471','42554','42544'), ('7472','42555','42544'), ('7473','42556','42544'), ('7474','42557','42544'), ('7475','42558','42544'), ('7476','42559','42544'), ('7477','42560','42544'), ('7478','42561','42545'), ('7479','42562','42546'), ('7480','42563','42546'), ('7481','42564','42546'), ('7482','42565','42543'), ('7483','42566','42543'), ('7484','42567','42543'), ('7485','42583','42580'), ('7486','42584','42580'), ('7487','42585','42580'), ('7488','42586','42580'), ('7489','42587','42580'), ('7490','42588','42580'), ('7491','42589','42580'), ('7492','42590','42580'), ('7493','42591','42580'), ('7494','42592','42581'), ('7495','42593','42581'), ('7496','42594','42581'), ('7497','42595','42582'), ('7498','42596','42582'), ('7499','42597','42582'), ('7501','42679','42271'), ('7503','42681','42274'), ('7504','42682','42360'), ('7506','42686','42684'), ('7507','42687','42684'), ('7508','42688','42685'), ('7509','42689','42685'), ('7510','42690','42685'), ('7512','42692','40001'), ('7513','42693','40001'), ('7514','42694','40001'), ('7515','42695','40001'), ('7516','42696','40002'), ('7517','42697','40002'), ('7518','42698','40002'), ('7519','42699','40002'), ('7520','42706','42703'), ('7521','42707','42703'), ('7522','42708','42703'), ('7523','42709','42703'), ('7524','42710','42703'), ('7525','42711','42703'), ('7526','42712','42703'), ('7527','42713','42703'), ('7528','42714','42704'), ('7529','42715','42704'), ('7530','42716','42704'), ('7531','42717','42704'), ('7532','42718','40028'), ('7533','42719','40028'), ('7534','42720','42705'), ('7535','42721','42705'), ('7536','42722','42705'), ('7537','42723','42705'), ('7538','42727','42726'), ('7539','42728','42726'), ('7540','42729','42726'), ('7541','42730','42726'), ('7542','42731','42726'), ('7543','42732','42726'), ('7544','42733','42726'), ('7545','42734','42726'), ('7546','42735','42726'), ('7547','42736','42726'), ('7548','42737','42726'), ('7549','42746','42742'), ('7550','42747','42743'), ('7551','42748','42743'), ('7552','42749','42743'), ('7553','42750','42744'), ('7554','42751','42741'), ('7555','42752','42742'), ('7556','42753','42742'), ('7557','42754','42742'), ('7558','42755','42742'), ('7559','42756','42742'), ('7560','42757','42742'), ('7561','42758','42742'), ('7562','42759','42742'), ('7563','42760','42742'), ('7564','42761','42743'), ('7565','42762','42743'), ('7566','42763','42743'), ('7567','42764','42743'), ('7568','42765','42743'), ('7569','42766','42743'), ('7570','42767','42743'), ('7571','42768','42743'), ('7572','42769','42743'), ('7573','42770','42743'), ('7574','42771','42743'), ('7575','42772','42743'), ('7576','42773','42743'), ('7577','42774','42743'), ('7578','42775','42743'), ('7579','42776','42743'), ('7580','42777','42743'), ('7581','42778','42743'), ('7582','42779','42744'), ('7583','42780','42744'), ('7584','42781','42744'), ('7585','42782','42744'), ('7586','42783','42744'), ('7587','42784','42744'), ('7588','42785','42744'), ('7589','42786','42744'), ('7590','42787','42744'), ('7591','42788','42745'), ('7592','42789','42745'), ('7593','42790','42745'), ('7594','42791','42745'), ('7595','42841','42834'), ('7596','42842','42834'), ('7597','42843','42834'), ('7598','42844','42834'), ('7599','42845','42834'), ('7600','42846','42834'), ('7610','42856','42836'), ('7611','42857','42837'), ('7612','42858','42837'), ('7613','42859','42837'), ('7614','42860','42837'), ('7615','42861','42838'), ('7616','42862','42838'), ('7617','42863','42838'), ('7618','42864','42838'), ('7619','42865','42838'), ('7620','42866','42838'), ('7621','42867','42838'), ('7622','42868','42838'), ('7623','42869','42838'), ('7624','42870','42839'), ('7625','42871','42839'), ('7626','42872','42839'), ('7627','42873','42840'), ('7628','42874','42840'), ('7629','42875','42840'), ('7630','42876','42834'), ('7631','42879','42878'), ('7632','42881','31334'), ('7633','42882','31334'), ('7634','42883','31334'), ('7635','42884','31334'), ('7636','42885','31334'), ('7637','42886','31334'), ('7638','42887','31334'), ('7639','42888','31334'), ('7640','42889','31334'), ('7681','42987','42986'), ('7682','42988','42986'), ('7683','42989','42986'), ('7684','42990','42986'), ('7685','42991','42986'), ('7686','42992','42986'), ('7687','42993','42986'), ('7688','42994','42986'), ('7689','42995','42986'), ('7690','42996','42986'), ('7691','42997','42986'), ('7692','42998','42986'), ('7693','42999','42986'), ('7694','43000','42986'), ('7695','43001','42986'), ('7696','43002','42986'), ('7697','43003','42986'), ('7698','43004','42986'), ('7699','43005','42986'), ('7700','43006','42986'), ('7701','43007','42986'), ('7702','43008','42986'), ('7703','43009','42986'), ('7704','43010','42986'), ('7705','43011','42986'), ('7706','43012','42986'), ('7707','43013','42986'), ('7708','43014','42986'), ('7709','43015','42986'), ('7710','43016','42986'), ('7711','43017','42986'), ('7712','43050','43047'), ('7713','43051','43047'), ('7714','43052','43047'), ('7715','43053','43047'), ('7716','43054','43047'), ('7717','43055','43047'), ('7718','43056','43047'), ('7719','43057','43047'), ('7720','43058','43047'), ('7721','43059','43047'), ('7722','43060','43047'), ('7723','43061','43047'), ('7724','43062','43047'), ('7725','43063','43047'), ('7726','43064','43047'), ('7727','43065','43047'), ('7728','43066','43047'), ('7729','43067','43048'), ('7730','43068','43048'), ('7731','43069','43048'), ('7732','43070','43048'), ('7733','43071','43048'), ('7734','43072','43048'), ('7735','43073','43048'), ('7736','43074','43049'), ('7737','43075','43049'), ('7738','43076','43049'), ('7739','43137','43133'), ('7740','43138','43133'), ('7741','43139','43133'), ('7742','43140','43134'), ('7743','43141','43134'), ('7744','43142','43134'), ('7745','43143','43135'), ('7746','43144','43135'), ('7747','43145','43135'), ('7748','43146','43135'), ('7749','43147','43135'), ('7750','43148','43135'), ('7751','43149','43135'), ('7752','43150','43135'), ('7753','43151','43135'), ('7754','43152','43136'), ('7755','43153','43136'), ('7756','43154','43136'), ('7757','43155','43136'), ('7758','43168','43167'), ('7759','43169','43166'), ('7760','43170','43167'), ('7761','43171','43167'), ('7762','43172','43167'), ('7763','43194','43186'), ('7764','43195','43190'), ('7765','43196','43184'), ('7766','43197','43184'), ('7767','43198','43184'), ('7768','43199','43184'), ('7769','43200','43184'), ('7770','43201','43184'), ('7771','43202','43184'), ('7772','43203','43184'), ('7773','43204','43184'), ('7774','43205','43184'), ('7775','43206','43184'), ('7776','43207','43184'), ('7777','43208','43184'), ('7778','43209','43184'), ('7779','43210','43184'), ('7780','43211','43184'), ('7781','43212','43184'), ('7782','43213','43184'), ('7783','43214','43184'), ('7784','43215','43184'), ('7785','43216','43184'), ('7786','43217','43184'), ('7787','43218','43184'), ('7788','43219','43185'), ('7789','43220','43185'), ('7790','43221','43185'), ('7791','43222','43185'), ('7792','43223','43185'), ('7793','43224','43185'), ('7794','43225','43185'), ('7795','43226','43185'), ('7796','43227','43185'), ('7797','43228','43185'), ('7798','43229','43185'), ('7799','43230','43186'), ('7800','43231','43186'), ('7801','43232','43186'), ('7802','43233','43186'), ('7803','43234','43186'), ('7804','43235','43186'), ('7805','43236','43186'), ('7806','43237','43186'), ('7807','43238','43186'), ('7808','43239','43186'), ('7809','43240','43186'), ('7810','43241','43186'), ('7811','43242','43186'), ('7812','43243','43186'), ('7813','43244','43186'), ('7814','43245','43186'), ('7815','43246','43187'), ('7816','43247','43187'), ('7817','43248','43187'), ('7818','43249','43187'), ('7819','43250','43187'), ('7820','43251','43187'), ('7821','43252','43188'), ('7822','43253','43188'), ('7823','43254','43188'), ('7824','43255','43189'), ('7825','43256','43189'), ('7826','43257','43189'), ('7827','43258','43190'), ('7828','43259','43190'), ('7829','43260','43190'), ('7830','43261','43191'), ('7831','43262','43191'), ('7832','43263','43191'), ('7833','43264','43192'), ('7834','43265','43192'), ('7835','43266','43192'), ('7836','43267','43192'), ('7837','43268','43192'), ('7838','43269','43193'), ('7839','43270','43193'), ('7840','43271','43193'), ('7841','43272','43193'), ('7842','43273','43193'), ('7843','43274','43193'), ('7844','43275','43193'), ('7845','43276','43193'), ('7846','43277','43193'), ('7847','43278','43193'), ('7848','43279','43193'), ('7849','43280','43193'), ('7850','43301','43292'), ('7851','43302','43293'), ('7852','43303','43293'), ('7853','43304','43293'), ('7854','43305','43297'), ('7855','43306','43297'), ('7856','43307','43297'), ('7857','43308','43300'), ('7858','43309','43300'), ('7859','43310','43291'), ('7860','43311','43291'), ('7861','43312','43291'), ('7862','43313','43291'), ('7863','43314','43291'), ('7864','43315','43291'), ('7865','43316','43291'), ('7866','43317','43291'), ('7867','43318','43291'), ('7868','43319','43291'), ('7869','43320','43291'), ('7870','43321','43291'), ('7871','43322','43291'), ('7872','43323','43291'), ('7873','43324','43291'), ('7874','43325','43291'), ('7875','43326','43291'), ('7876','43327','43291'), ('7877','43328','43291'), ('7878','43329','43291'), ('7879','43330','43291'), ('7880','43331','43291'), ('7881','43332','43291'), ('7882','43333','43292'), ('7883','43334','43292'), ('7884','43335','43292'), ('7885','43336','43292'), ('7886','43337','43292'), ('7887','43338','43292'), ('7888','43339','43292'), ('7889','43340','43292'), ('7890','43341','43292'), ('7891','43342','43292'), ('7892','43343','43292'), ('7893','43344','43292'), ('7894','43345','43293'), ('7895','43346','43293'), ('7896','43347','43293'), ('7897','43348','43293'), ('7898','43349','43293'), ('7899','43350','43293'), ('7900','43351','43293'), ('7901','43352','43293'), ('7902','43353','43293'), ('7903','43354','43293'), ('7904','43355','43293'), ('7905','43356','43293'), ('7906','43357','43293'), ('7907','43358','43293'), ('7908','43359','43293'), ('7909','43360','43293'), ('7910','43361','43293'), ('7911','43362','43294'), ('7912','43363','43294'), ('7913','43364','43294'), ('7914','43365','43294'), ('7915','43366','43294'), ('7916','43367','43294'), ('7917','43368','43295'), ('7918','43369','43295'), ('7919','43370','43295'), ('7920','43371','43296'), ('7921','43372','43296'), ('7922','43373','43296'), ('7923','43374','43297'), ('7924','43375','43297'), ('7925','43376','43297'), ('7926','43377','43297'), ('7927','43378','43298'), ('7928','43379','43298'), ('7929','43380','43298'), ('7930','43381','43299'), ('7931','43382','43299'), ('7932','43383','43299'), ('7933','43384','43299'), ('7934','43385','43300'), ('7935','43386','43300'), ('7936','43387','43300'), ('7937','43388','43300'), ('7938','43389','43300'), ('7939','43390','43300'), ('7940','43391','43300'), ('7941','43392','43300'), ('7942','43393','43300'), ('7943','43394','43300'), ('7944','43395','43300'), ('7945','43396','43300'), ('7946','43397','43300'), ('7947','43421','43415'), ('7948','43422','43415'), ('7949','43423','43415'), ('7950','43424','43415'), ('7951','43425','43415'), ('7952','43426','43415'), ('7953','43427','43415'), ('7954','43428','43415'), ('7955','43429','43415'), ('7956','43430','43415'), ('7957','43431','43415'), ('7958','43432','43415'), ('7959','43433','43415'), ('7960','43434','43415'), ('7961','43435','43415'), ('7962','43436','43415'), ('7963','43437','43415'), ('7964','43438','43415'), ('7965','43439','43415'), ('7966','43440','43415'), ('7967','43441','43415'), ('7968','43442','43415'), ('7969','43443','43415'), ('7970','43444','43415'), ('7971','43445','43416'), ('7972','43446','43416'), ('7973','43447','43416'), ('7974','43448','43416'), ('7975','43449','43416'), ('7976','43450','43416'), ('7977','43451','43416'), ('7978','43452','43416'), ('7979','43453','43416'), ('7980','43454','43416'), ('7981','43455','43416'), ('7982','43456','43416'), ('7983','43457','43417'), ('7984','43458','43417'), ('7985','43459','43417'), ('7986','43460','43417'), ('7987','43461','43417'), ('7988','43462','43417'), ('7989','43463','43418'), ('7990','43464','43418'), ('7991','43465','43418'), ('7992','43466','43418'), ('7993','43467','43419'), ('7994','43468','43419'), ('7995','43469','43419'), ('7996','43470','43419'), ('7997','43471','43420'), ('7998','43472','43420'), ('7999','43473','43420'), ('8000','43474','43420'), ('8001','43475','43420'), ('8002','43476','43420'), ('8003','43477','43420'), ('8004','43478','43420'), ('8005','43479','43420'), ('8006','43480','43420'), ('8007','43481','43420'), ('8008','43482','43420'), ('8009','43483','43420'), ('8010','43484','43420'), ('8011','43485','43420'), ('8012','43486','43420'), ('8013','43487','43420'), ('8014','43488','43420'), ('8015','43489','43420'), ('8016','43490','43420'), ('8017','43491','43420'), ('8018','43492','43420'), ('8019','43493','43420'), ('8020','43494','43420'), ('8021','43495','43420'), ('8022','43496','43420'), ('8023','43528','43527'), ('8024','43529','43526'), ('8025','43530','43526'), ('8026','43531','43527'), ('8027','43532','43527'), ('8028','43533','43527'), ('8029','43534','43527'), ('8030','43535','43527'), ('8031','43536','43527'), ('8032','43537','43527'), ('8033','43538','43527'), ('8034','43539','43527'), ('8035','43540','43527'), ('8036','43541','43527'), ('8037','43542','43527'), ('8038','43543','43527'), ('8039','43544','43527'), ('8040','43545','43527'), ('8041','43546','43527'), ('8042','43566','43565'), ('8043','43567','43565'), ('8044','43568','43565'), ('8045','43569','43565'), ('8046','43570','43565'), ('8047','43571','43565'), ('8048','43572','43565'), ('8049','43573','43565'), ('8050','43574','43565'), ('8051','43575','43565'), ('8052','43576','43565'), ('8053','43577','43565'), ('8054','43578','43565'), ('8055','43579','43565'), ('8056','43580','43565'), ('8057','43581','43565'), ('8058','43582','43565'), ('8059','43583','43565'), ('8060','43584','43565'), ('8061','43585','43565'), ('8062','43586','43565'), ('8063','43587','43565'), ('8064','43588','43565'), ('8065','43589','43565'), ('8066','43590','43565'), ('8067','43591','43565'), ('8068','43646','43642'), ('8069','43647','43642'), ('8070','43648','43643'), ('8071','43649','43643'), ('8072','43650','43643'), ('8073','43651','43643'), ('8074','43652','43643'), ('8075','43653','43643'), ('8076','43654','43643'), ('8077','43655','43643'), ('8078','43656','43643'), ('8079','43657','43643'), ('8080','43658','43643'), ('8081','43659','43643'), ('8082','43660','43643'), ('8083','43661','43644'), ('8084','43662','43644'), ('8085','43663','43645'), ('8086','43664','43645'), ('8087','43665','43645'), ('8088','43666','43645'), ('8089','43667','43645'), ('8090','43668','43645'), ('8091','43669','43645'), ('8092','43670','43645'), ('8093','43671','43645'), ('8094','43672','43645'), ('8095','43673','43645'), ('8096','43674','43645'), ('8097','43675','43645'), ('8098','43676','43645'), ('8099','43677','43645'), ('8100','43678','43645'), ('8101','43679','43645'), ('8102','43680','43645'), ('8103','43681','43645'), ('8104','43682','43645'), ('8105','43683','43645'), ('8106','43712','43711'), ('8107','43713','43711'), ('8108','43926','43905'), ('8109','43927','43905'), ('8110','43928','43905'), ('8111','43929','43905'), ('8112','43930','43905'), ('8113','43931','43905'), ('8114','43932','43905'), ('8115','43933','43905'), ('8116','43934','43906'), ('8117','43935','43906'), ('8118','43936','43906'), ('8119','43937','43906'), ('8120','43938','43906'), ('8121','43939','43907'), ('8122','43940','43907'), ('8123','43941','43908'), ('8124','43942','43908'), ('8125','43943','43908'), ('8126','43944','43908'), ('8127','43945','43909'), ('8128','43946','43909'), ('8129','43947','43909'), ('8130','43948','43909'), ('8131','43949','43909'), ('8132','43950','43909'), ('8133','43951','43909'), ('8134','43952','43909'), ('8135','43953','43909'), ('8136','43954','43909'), ('8137','43955','43909'), ('8138','43956','43909'), ('8139','43957','43909'), ('8140','43958','43909'), ('8141','43959','43909'), ('8142','43960','43909'), ('8143','43961','43909'), ('8144','43962','43909'), ('8145','43963','43909'), ('8146','43964','43909'), ('8147','43965','43909'), ('8148','43966','43910'), ('8149','43967','43910'), ('8150','43968','43911'), ('8151','43969','43911'), ('8152','43970','43912'), ('8153','43971','43912'), ('8154','43972','43912'), ('8155','43973','43912'), ('8156','43974','43912'), ('8157','43975','43912'), ('8158','43976','43912'), ('8159','43977','43912'), ('8160','43978','43913'), ('8161','43979','43913'), ('8162','43980','43914'), ('8163','43981','43914'), ('8164','43982','43914'), ('8165','43983','43914'), ('8166','43984','43914'), ('8167','43985','43914'), ('8168','43986','43914'), ('8169','43987','43914'), ('8170','43988','43914'), ('8171','43989','43914'), ('8172','43990','43914'), ('8173','43991','43915'), ('8174','43992','43915'), ('8175','43993','43915'), ('8176','43994','43916'), ('8177','43995','43916'), ('8178','43996','43916'), ('8179','43997','43916'), ('8180','43998','43916'), ('8181','43999','43916'), ('8182','44000','43916'), ('8183','44001','43916'), ('8184','44002','43917'), ('8185','44003','43917'), ('8186','44004','43918'), ('8187','44005','43918'), ('8188','44006','43918'), ('8189','44007','43918'), ('8190','44008','43918'), ('8191','44009','43919'), ('8192','44010','43919'), ('8193','44011','43919'), ('8194','44012','43919'), ('8195','44013','43919'), ('8196','44014','43919'), ('8197','44015','43919'), ('8198','44016','43920'), ('8199','44017','43920'), ('8200','44018','43921'), ('8201','44019','43921'), ('8202','44020','43921'), ('8203','44021','43921'), ('8204','44022','43921'), ('8205','44023','43921'), ('8206','44024','43921'), ('8207','44025','43921'), ('8208','44026','43921'), ('8209','44027','43921'), ('8210','44028','43921'), ('8211','44029','43921'), ('8212','44030','43921'), ('8213','44031','43921'), ('8214','44032','43921'), ('8215','44033','43922'), ('8216','44034','43922'), ('8217','44035','43922'), ('8218','44036','43922'), ('8219','44037','43922'), ('8220','44038','43922'), ('8221','44039','43923'), ('8222','44040','43923'), ('8223','44041','43923'), ('8224','44042','43923'), ('8225','44043','43923'), ('8226','44044','43924'), ('8227','44045','43924'), ('8228','44046','43924'), ('8229','44047','43924'), ('8230','44048','43925'), ('8231','44049','43925'), ('8232','44059','44057'), ('8233','44060','44057'), ('8234','44061','44057'), ('8235','44062','44057'), ('8236','44063','44057'), ('8237','44064','44057'), ('8238','44065','44057'), ('8239','44066','44057'), ('8240','44067','44057'), ('8241','44068','44057'), ('8242','44069','44057'), ('8243','44070','44058'), ('8244','44071','44058'), ('8245','44072','44058'), ('8246','44073','44058'), ('8247','44074','44058'), ('8248','44075','44058'), ('8249','44076','44058'), ('8250','44077','44058'), ('8251','44078','44058'), ('8252','44079','44058'), ('8253','44080','44058'), ('8254','44083','44082'), ('8255','44084','44082'), ('8256','44085','44082'), ('8257','44086','44082'), ('8258','44087','44082'), ('8259','44088','44082'), ('8260','44089','44082'), ('8261','44090','44082'), ('8262','44091','44082'), ('8263','44092','44082'), ('8264','44093','44082'), ('8265','44108','43184'), ('8266','44109','43184'), ('8267','44110','43185'), ('8268','44111','43186'), ('8269','44112','43186'), ('8270','44113','43187'), ('8271','44114','43188'), ('8272','44115','43189'), ('8273','44116','43190'), ('8274','44117','43191'), ('8275','44118','43192'), ('8276','44119','43193'), ('8277','44120','43193'), ('8278','44135','43291'), ('8279','44136','43291'), ('8280','44137','43292'), ('8281','44138','43293'), ('8282','44139','43293'), ('8283','44140','43294'), ('8284','44141','43295'), ('8285','44142','43296'), ('8286','44143','43297'), ('8287','44144','43298'), ('8288','44145','43299'), ('8289','44146','43300'), ('8290','44147','43300'), ('8291','44155','43415'), ('8292','44156','43416'), ('8293','44157','43417'), ('8294','44158','43418'), ('8295','44159','43419'), ('8296','44160','43420'), ('8297','44214','43905'), ('8298','44215','43906'), ('8299','44216','43907'), ('8300','44217','43908'), ('8301','44218','43909'), ('8302','44219','43910'), ('8303','44220','43911'), ('8304','44221','43912'), ('8305','44222','43913'), ('8306','44223','43914'), ('8307','44224','43915'), ('8308','44225','43916'), ('8309','44226','43917'), ('8310','44227','43918'), ('8311','44228','43919'), ('8312','44229','43920'), ('8313','44230','43921'), ('8314','44231','43922'), ('8315','44232','43923'), ('8316','44233','43924'), ('8317','44234','43925'), ('8328','44247','39942'), ('8329','44319','44316'), ('8330','44320','44316'), ('8331','44321','44317'), ('8332','44322','44318'), ('8333','44323','44318'), ('8334','44324','44318'), ('8335','44325','44318'), ('8336','44326','44318'), ('8337','44327','44318'), ('8338','44328','44318'), ('8339','44329','44318'), ('8340','44330','44318'), ('8341','44331','44318'), ('8342','44332','44318'), ('8343','44333','44318'), ('8344','44334','44318'), ('8345','44337','44336'), ('8346','44338','44336'), ('8347','44339','44336'), ('8348','44340','44336'), ('8349','44341','44336'), ('8350','44342','44336'), ('8351','44345','44344'), ('8352','44346','44344'), ('8353','44347','44344'), ('8354','44348','44344'), ('8355','44349','44344'), ('8356','44350','44344'), ('8357','44353','44352'), ('8358','44354','44352'), ('8359','44355','44352'), ('8360','44356','44352'), ('8361','44357','44352'), ('8362','44358','44352'), ('8363','44361','44360'), ('8364','44362','30026'), ('8365','44363','44360'), ('8366','44364','29703'), ('8367','44365','44360'), ('8368','44366','44360'), ('8369','44367','44360'), ('8370','44368','44360'), ('8371','44369','29785'), ('8372','44370','29786'), ('8379','44403','44395'), ('8380','44404','44396'), ('8381','44405','44397'), ('8382','44406','44398'), ('8383','44407','44398'), ('8384','44408','44398'), ('8385','44409','44399'), ('8386','44410','44399'), ('8387','44411','44399'), ('8388','44412','44399'), ('8389','44413','44399'), ('8390','44414','44399'), ('8391','44415','44399'), ('8392','44416','44399'), ('8393','44417','44399'), ('8394','44418','44400'), ('8395','44419','44401'), ('8396','44420','44402'), ('8397','44421','44402'), ('8398','44422','39749'), ('8399','44423','39750'), ('8400','44424','39751'), ('8401','44425','39752'), ('8402','44426','39753'), ('8403','44428','22947'), ('8404','44429','22947'), ('8405','44431','22907'), ('8406','44432','22907'), ('8407','44434','22987'), ('8408','44435','22987'), ('8409','44438','42273'), ('8410','44439','42276'), ('8411','44440','42273'), ('8412','44441','42276'), ('8413','44443','42362'), ('8414','44444','42362'), ('8415','44446','23067'), ('8416','44448','22867'), ('8417','44449','22867'), ('8418','44451','23027'), ('8419','44452','23027'), ('8420','44454','42490'), ('8421','44456','42546'), ('8422','44472','44469'), ('8423','44473','44470'), ('8424','44474','44471'), ('8425','44475','44469'), ('8426','44476','44469'), ('8427','44477','44469'), ('8428','44478','44469'), ('8429','44479','44469'), ('8430','44480','44469'), ('8431','44481','44469'), ('8432','44482','44469'), ('8433','44483','44470'), ('8434','44484','44470'), ('8435','44485','44471'), ('8436','44486','44471'), ('8437','44487','44471'), ('8438','44488','44471'), ('8439','44492','33465'), ('8440','44493','33466'), ('8441','44500','44496'), ('8442','44501','44497'), ('8443','44502','44497'), ('8444','44503','44498'), ('8445','44504','44499'), ('8446','44505','44496'), ('8447','44506','44496'), ('8448','44507','44497'), ('8449','44508','44497'), ('8450','44509','44497'), ('8451','44510','44498'), ('8452','44511','44498'), ('8453','44512','44499'), ('8454','44513','44499'), ('8455','44514','44499'), ('8456','44515','44499'), ('8457','44526','44525'), ('8458','44527','44525'), ('8459','44528','44525'), ('8460','44529','44525'), ('8461','44586','31761'), ('8462','44587','31762'), ('8463','44588','31763'), ('8464','44589','31764'), ('8465','44590','31765'), ('8466','44591','31761'), ('8467','44592','31761'), ('8468','44593','31761'), ('8469','44594','31762'), ('8470','44595','31762'), ('8471','44596','31762'), ('8472','44597','31762'), ('8473','44598','31763'), ('8474','44599','31763'), ('8475','44600','31763'), ('8476','44601','31764'), ('8477','44602','31765'), ('8478','44603','31765'), ('8479','44604','31765'), ('8480','44605','31765'), ('8481','44606','31765'), ('8482','44607','31765'), ('8483','44608','31765'), ('8484','44609','31253'), ('8485','44610','31254'), ('8486','44611','31255'), ('8487','44612','31256'), ('8488','44613','31257'), ('8489','44614','31253'), ('8490','44615','31253'), ('8491','44616','31253'), ('8492','44617','31254'), ('8493','44618','31254'), ('8494','44619','31254'), ('8495','44620','31255'), ('8496','44621','31255'), ('8497','44622','31255'), ('8498','44623','31255'), ('8499','44624','31256'), ('8500','44625','31257'), ('8501','44626','31257'), ('8502','44627','31257'), ('8503','44628','31257'), ('8504','44629','31257'), ('8505','44630','31257'), ('8506','44631','31257'), ('8507','44636','39806'), ('8508','44637','44057'), ('8509','44638','39807'), ('8510','44639','44058'), ('8511','44640','39816'), ('8512','44641','44082'), ('8513','44644','44643'), ('8514','44645','44643'), ('8515','44646','44643'), ('8516','44647','44643'), ('8517','44648','44643'), ('8518','44649','44643'), ('8519','44650','44643'), ('8520','44651','44643'), ('8521','44652','44643'), ('8522','44677','44676'), ('8523','44678','44676'), ('8524','44679','44676'), ('8525','44680','44676'), ('8526','44681','44676'), ('8527','44682','44676'), ('8528','44683','44676'), ('8529','44684','44676'), ('8530','44685','44676'), ('8531','44686','44676'), ('8532','44687','44676'), ('8533','44688','44676'), ('8534','44689','44676'), ('8535','44690','44676'), ('8536','44691','44676'), ('8537','44692','44676'), ('8538','44693','44676'), ('8539','44694','44676'), ('8540','44695','44676'), ('8541','44696','44676'), ('8542','44698','44697'), ('8543','44699','44697'), ('8544','44700','44697'), ('8545','44701','44697'), ('8546','44702','44697'), ('8547','44703','44697'), ('8548','44704','44697'), ('8549','44705','44697'), ('8550','44706','44697'), ('8551','44707','44697'), ('8552','44708','44697'), ('8553','44709','44697'), ('8554','44710','44697'), ('8555','44711','44697'), ('8556','44712','44697'), ('8557','44713','44697'), ('8558','44714','44697'), ('8559','44715','44697'), ('8560','44716','44697'), ('8561','44717','44697'), ('8562','44718','30571'), ('8563','44719','30571'), ('8564','44720','30571'), ('8565','44721','30713'), ('8566','44724','32668'), ('8567','44725','32669'), ('8568','44726','30193'), ('8569','44727','30194'), ('8570','44728','30195'), ('8571','44729','30236'), ('8572','44730','30237'), ('8573','44731','30238'), ('8574','44732','39918'), ('8575','44734','44733'), ('8576','44735','44733'), ('8577','44736','44733'), ('8578','44737','44733'), ('8579','44738','44733'), ('8580','44739','44733'), ('8581','44740','44733'), ('8582','44741','44733'), ('8583','44742','44733'), ('8584','44743','44733'), ('8585','44744','44733'), ('8586','44745','44733'), ('8587','44746','44733'), ('8588','44747','44733'), ('8589','44748','44733'), ('8590','44749','44733'), ('8591','44750','44733'), ('8592','44751','44733'), ('8593','44752','44733'), ('8594','44753','44733'), ('8595','44754','44733'), ('8596','44755','44733'), ('8597','44756','44733'), ('8598','44757','44733'), ('8599','44758','44733'), ('8600','44759','44733'), ('8601','44760','44733'), ('8602','44761','44733'), ('8603','44763','40025'), ('8604','44764','44762'), ('8605','44765','44762'), ('8606','44766','44762'), ('8607','44767','44762'), ('8608','44768','44762'), ('8609','44769','44762'), ('8610','44770','44762'), ('8611','44771','40030'), ('8612','44772','40030'), ('8613','44773','40030'), ('8614','44774','40030'), ('8615','44775','40032'), ('8616','44776','40034'), ('8617','44777','35177'), ('8618','44778','35178'), ('8619','44779','35179'), ('8620','44780','35180'), ('8621','44781','35181'), ('8622','44782','35182'), ('8623','44783','35183'), ('8624','44784','35184'), ('8625','44794','32998'), ('8626','44820','44819'), ('8627','44821','44819'), ('8628','44822','44819'), ('8629','44823','44819'), ('8630','44824','44819'), ('8631','44825','44819'), ('8632','44826','44819'), ('8633','44827','44819'), ('8634','44828','44819'), ('8635','44829','44819'), ('8636','44830','44819'), ('8637','44831','44819'), ('8638','44832','44819'), ('8639','44833','44819'), ('8640','44834','44819'), ('8641','44835','44819'), ('8642','44836','44819'), ('8643','44837','44819'), ('8644','44838','44819'), ('8645','44839','44819'), ('8646','44840','44819'), ('8647','44841','44819'), ('8648','44842','44819'), ('8649','44843','44819'), ('8650','44844','44819'), ('8651','44845','44819'), ('8652','44846','44819'), ('8653','44847','44819'), ('8654','44848','44819'), ('8655','44849','44819'), ('8656','44850','44819'), ('8657','44851','44819'), ('8658','44852','44819'), ('8659','44853','44819'), ('8660','44854','44819'), ('8661','44855','44819'), ('8662','44856','44819'), ('8663','44857','44819'), ('8664','44858','44819'), ('8665','44859','44819'), ('8666','44860','44819'), ('8667','44861','44819'), ('8668','44862','44819'), ('8669','44863','44819'), ('8670','44864','44819'), ('8671','44865','44819'), ('8672','45044','45042'), ('8673','45045','45039'), ('8674','45046','45040'), ('8675','45047','45041'), ('8676','45048','45042'), ('8677','45049','45042'), ('8678','45050','45042'), ('8679','45051','45042'), ('8680','45052','45042'), ('8681','45053','45042'), ('8682','45054','45042'), ('8683','45055','45042'), ('8684','45056','45042'), ('8685','45057','45042'), ('8686','45058','45042'), ('8687','45059','45042'), ('8688','45060','45043'), ('8689','45061','45038'), ('8690','45062','45039'), ('8691','45063','45039'), ('8692','45064','45040'), ('8693','45065','45040'), ('8694','45066','45040'), ('8695','45067','45041'), ('8696','45068','45041'), ('8697','45069','45041'), ('8698','45070','45041'), ('8699','45071','45041'), ('8700','45072','45041'), ('8701','45073','45043'), ('8702','45074','45043'), ('8703','45075','45043'), ('8704','45076','45043'), ('8705','45077','45038'), ('8706','45078','45038'), ('8707','45079','45038'), ('8708','45082','45081'), ('8709','45083','30874'), ('8710','45084','30875'), ('8711','45085','30876'), ('8712','45086','45081'), ('8713','45087','45081'), ('8714','45098','31123'), ('8715','45099','31123'), ('8716','45100','34324'), ('8717','45101','34324'), ('8718','45110','30338'), ('8719','45117','34344'), ('8720','45121','34400'), ('8721','45127','34440'), ('8722','45503','43526'), ('8723','45504','43527'), ('8724','45505','32404'), ('8725','45506','32404'), ('8726','45507','31334'), ('8727','45508','31334'), ('8728','45509','31334'), ('8729','45510','33177'), ('8730','45526','45523'), ('8731','45527','45524'), ('8732','45528','45525'), ('8733','45544','45543'), ('8734','45545','45542'), ('8735','45546','45543'), ('8736','45547','45543'), ('8737','45548','45543'), ('8738','45549','45543'), ('8739','45550','45543'), ('8740','45551','45543'), ('8741','45552','45543'), ('8742','45553','45543'), ('8743','45554','45543'), ('8744','45555','45543'), ('8745','45556','45543'), ('8746','45557','45542'), ('8747','45558','45542'), ('8748','45576','45575'), ('8749','45577','45574'), ('8750','45578','45575'), ('8751','45579','45575'), ('8752','45580','45575'), ('8753','45581','45575'), ('8754','45582','45575'), ('8755','45583','45575'), ('8756','45584','45575'), ('8757','45585','45575'), ('8758','45586','45575'), ('8759','45587','45575'), ('8760','45588','45575'), ('8761','45589','45575'), ('8762','45590','45575'), ('8763','45591','45575'), ('8764','45592','45575'), ('8765','45593','45574'), ('8766','45594','45574'), ('8767','45618','45615'), ('8768','45619','45613'), ('8769','45620','45614'), ('8770','45621','45616'), ('8771','45622','45617'), ('8772','45623','45613'), ('8773','45624','45613'), ('8774','45625','45614'), ('8775','45626','45614'), ('8776','45627','45614'), ('8777','45628','45616'), ('8778','45629','45616'), ('8779','45630','45616'), ('8780','45631','45617'), ('8781','45632','45617'), ('8782','45633','45617'), ('8783','45634','45617'), ('8784','45699','45697'), ('8785','45700','45697'), ('8786','45701','45697'), ('8787','45702','45697'), ('8788','45703','45697'), ('8789','45704','45697'), ('8790','45705','45698'), ('8791','45706','45697'), ('8792','45707','45697'), ('8793','45708','45697'), ('8794','45709','45697'), ('8795','45710','45697'), ('8796','45711','45697'), ('8797','45712','45697'), ('8798','45713','45697'), ('8799','45714','45697'), ('8800','45715','45697'), ('8801','45716','45697'), ('8802','45717','45697'), ('8803','45718','45697'), ('8804','45719','45697'), ('8805','45720','45697'), ('8806','45721','45697'), ('8807','45722','45697'), ('8808','45723','45697'), ('8809','45724','45697'), ('8810','45725','45697'), ('8811','45726','45697'), ('8812','45727','45697'), ('8813','45728','45697'), ('8814','45729','45697'), ('8815','45730','45697'), ('8816','45731','45697'), ('8817','45732','45697'), ('8818','45733','45697'), ('8819','45734','45697'), ('8820','45735','45697'), ('8821','45736','45697'), ('8822','45737','45697'), ('8823','45738','45697'), ('8824','45739','45697'), ('8825','45740','45698'), ('8826','45741','45698'), ('8827','45742','45698'), ('8828','45791','45788'), ('8829','45792','45789'), ('8830','45793','45790'), ('8831','45794','45788'), ('8832','45795','45788'), ('8833','45796','45788'), ('8834','45797','45788'), ('8835','45798','45789'), ('8836','45799','45789'), ('8837','45800','45789'), ('8838','45801','45789'), ('8839','45802','45789'), ('8840','45803','45789'), ('8841','45804','45789'), ('8842','45805','45789'), ('8843','45806','45789'), ('8844','45807','45789'), ('8845','45808','45789'), ('8846','45809','45789'), ('8847','45810','45789'), ('8848','45811','45790'), ('8849','45812','45790'), ('8850','45813','45790'), ('8851','45814','31803'), ('8852','45815','31804'), ('8853','45816','31805'), ('8854','45817','31806'), ('8855','45820','45819'), ('8856','45821','45819'), ('8857','45822','45819'), ('8858','45823','45819'), ('8859','45824','45819'), ('8860','45825','45819'), ('8861','45826','45819'), ('8862','45827','45819'), ('8863','45828','45819'), ('8864','45829','45819'), ('8865','45830','45819'), ('8866','45831','45819'), ('8867','45832','45819'), ('8868','45833','45819'), ('8869','45834','45819'), ('8870','45835','45819'), ('8871','45836','45819'), ('8872','45837','45819'), ('8873','45838','45819'), ('8874','45839','45819'), ('8875','45840','45819'), ('8876','45841','45819'), ('8877','45842','45819'), ('8878','45843','45819'), ('8879','45844','45819'), ('8880','45845','45819'), ('8881','45846','45819'), ('8882','45847','45819'), ('8883','45848','45819'), ('8884','45849','45819'), ('8885','45850','45819'), ('8886','45851','45819'), ('8887','46027','46026'), ('8888','46028','46026'), ('8889','46029','46024'), ('8890','46030','46024'), ('8891','46031','46024'), ('8892','46032','46024'), ('8893','46033','46024'), ('8894','46034','46024'), ('8895','46035','46024'), ('8896','46036','46024'), ('8897','46037','46024'), ('8898','46038','46024'), ('8899','46039','46024'), ('8900','46040','46025'), ('8901','46041','46025'), ('8902','46042','46025'), ('8903','46043','46025'), ('8904','46044','46025'), ('8905','46064','46063'), ('8906','46065','46061'), ('8907','46066','46062'), ('8908','46067','46063'), ('8909','46068','46063'), ('8910','46069','46063'), ('8911','46070','46063'), ('8912','46071','46063'), ('8913','46072','46063'), ('8914','46073','46063'), ('8915','46074','46063'), ('8916','46075','46063'), ('8917','46076','46063'), ('8918','46077','46063'), ('8919','46078','46063'), ('8920','46079','46063'), ('8921','46080','46063'), ('8922','46081','46063'), ('8923','46082','46063'), ('8924','46083','46063'), ('8925','46084','46063'), ('8926','46117','46116'), ('8927','46118','46116'), ('8928','46119','46116'), ('8929','46120','46116'), ('8930','46121','46116'), ('8931','46122','46116'), ('8932','46123','46116'), ('8933','46124','46116'), ('8934','46125','46116'), ('8935','46126','46116'), ('8936','46127','46116'), ('8937','46128','46116'), ('8938','46168','46163'), ('8939','46169','46164'), ('8940','46170','46165'), ('8941','46171','46166'), ('8942','46172','46167'), ('8943','46173','46163'), ('8944','46174','46163'), ('8945','46175','46163'), ('8946','46176','46163'), ('8947','46177','46163'), ('8948','46178','46163'), ('8949','46179','46163'), ('8950','46180','46163'), ('8951','46181','46164'), ('8952','46182','46164'), ('8953','46183','46164'), ('8954','46184','46164'), ('8955','46185','46164'), ('8956','46186','46164'), ('8957','46187','46164'), ('8958','46188','46164'), ('8959','46189','46164'), ('8960','46190','46165'), ('8961','46191','46165'), ('8962','46192','46165'), ('8963','46193','46165'), ('8964','46194','46165'), ('8965','46195','46165'), ('8966','46196','46166'), ('8967','46197','46166'), ('8968','46198','46166'), ('8969','46199','46166'), ('8970','46200','46166'), ('8971','46201','46166'), ('8972','46202','46166'), ('8973','46203','46166'), ('8974','46204','46167'), ('8975','46205','46167'), ('8976','46206','46167'), ('8977','46207','46167'), ('8978','46208','46167'), ('8979','46209','46167'), ('8980','46210','46167'), ('8981','46211','46167'), ('8982','46238','46237'), ('8983','46239','46237'), ('8984','46240','46237'), ('8985','46241','46237'), ('8986','46242','46237'), ('8987','46243','46237'), ('8988','46244','46237'), ('8989','46245','46237'), ('8990','46246','46237'), ('8992','46268','46263'), ('8993','46269','46264'), ('8995','46271','44317'), ('8996','46272','44317'), ('8997','46273','46266'), ('9002','46278','46263'), ('9003','46279','46263'), ('9004','46280','46263'), ('9005','46281','46263'), ('9006','46282','46263'), ('9007','46283','46263'), ('9008','46284','46263'), ('9010','46286','46266'), ('9011','46287','46266'), ('9012','46288','46266'), ('9013','46289','46266'), ('9014','46290','46266'), ('9015','46291','46266'), ('9016','46292','46266'), ('9017','46293','46266'), ('9018','46294','46266'), ('9019','46299','46295'), ('9020','46300','46295'), ('9021','46301','46295'), ('9022','46302','46296'), ('9023','46303','46296'), ('9024','46304','46296'), ('9025','46305','46297'), ('9026','46306','46298'), ('9027','46307','46298'), ('9028','46317','31765'), ('9029','46318','31257'), ('9030','46330','46321'), ('9031','46331','46322'), ('9032','46332','46323'), ('9033','46333','46324'), ('9034','46334','46325'), ('9035','46335','46326'), ('9036','46336','46327'), ('9037','46337','46328'), ('9038','46338','46329'), ('9039','46339','46321'), ('9040','46340','46321'), ('9041','46341','46321'), ('9042','46342','46321'), ('9043','46343','46321'), ('9044','46344','46321'), ('9045','46345','46321'), ('9046','46346','46321'), ('9047','46347','46322'), ('9048','46348','46322'), ('9049','46349','46322'), ('9050','46350','46323'), ('9051','46351','46323'), ('9052','46352','46323'), ('9053','46353','46323'), ('9054','46354','46323'), ('9055','46355','46323'), ('9056','46356','46324'), ('9057','46357','46324'), ('9058','46358','46325'), ('9059','46359','46325'), ('9060','46360','46325'), ('9061','46361','46325'), ('9062','46362','46326'), ('9063','46363','46326'), ('9064','46364','46326'), ('9065','46365','46326'), ('9066','46366','46326'), ('9067','46367','46327'), ('9068','46368','46327'), ('9069','46369','46328'), ('9070','46370','46329'), ('9071','46371','46329'), ('9072','46372','46329'), ('9073','46374','46373'), ('9074','46375','46373'), ('9075','46376','46373'), ('9076','46377','46373'), ('9077','46378','46373'), ('9078','46379','46373'), ('9079','46380','46373'), ('9080','46381','46373'), ('9081','46382','46373'), ('9082','46383','46373'), ('9083','46384','46373'), ('9084','46385','46373'), ('9085','46386','46373'), ('9086','46387','46373'), ('9087','46388','46373'), ('9088','46389','46373'), ('9089','46390','46373'), ('9090','46391','46373'), ('9091','46392','46373'), ('9092','46393','46373'), ('9093','46394','46373'), ('9094','46395','46373'), ('9095','46403','46398'), ('9096','46404','46399'), ('9097','46405','46400'), ('9098','46406','46401'), ('9099','46407','46402'), ('9100','46423','46416'), ('9101','46424','46416'), ('9102','46425','46416'), ('9103','46426','46416'), ('9104','46427','46417'), ('9105','46428','46417'), ('9106','46429','46417'), ('9107','46430','46418'), ('9108','46431','46418'), ('9109','46432','46418'), ('9110','46433','46418'), ('9111','46434','46418'), ('9112','46435','46419'), ('9113','46436','46419'), ('9114','46437','46420'), ('9115','46438','46420'), ('9116','46439','46421'), ('9117','46440','46421'), ('9118','46441','46421'), ('9119','46442','46422'), ('9120','46443','46422'), ('9121','46444','46422'), ('9122','46445','46422'), ('9123','46446','46422'), ('9124','46447','46422'), ('9125','46448','46422'), ('9126','46449','31123'), ('9127','46485','46484'), ('9128','46486','46483'), ('9129','46487','46484'), ('9130','46488','46484'), ('9131','46489','46484'), ('9132','46490','46484'), ('9133','46491','46484'), ('9134','46492','46484'), ('9135','46493','46484'), ('9136','46494','46484'), ('9137','46495','46484'), ('9138','46496','46484'), ('9139','46497','46484'), ('9140','46498','46484'), ('9141','46499','46484'), ('9142','46500','46484'), ('9143','46501','46483'), ('9144','46502','46483'), ('9145','46603','46594'), ('9146','46604','46594'), ('9147','46605','46594'), ('9148','46606','46594'), ('9149','46607','46595'), ('9150','46608','46595'), ('9151','46609','46596'), ('9152','46610','46597'), ('9153','46611','46597'), ('9154','46612','46597'), ('9155','46613','46598'), ('9156','46614','46598'), ('9157','46615','46598'), ('9158','46616','46598'), ('9159','46617','46598'), ('9160','46618','46599'), ('9161','46619','46599'), ('9162','46620','46600'), ('9163','46621','46600'), ('9164','46622','46601'), ('9165','46623','46601'), ('9166','46624','46601'), ('9167','46625','46602'), ('9168','46626','46602'), ('9169','46627','46602'), ('9170','46628','46602'), ('9171','46629','46602'), ('9172','46630','46602'), ('9173','46631','46602'), ('9174','46632','46595'), ('9175','46633','46595'), ('9176','46634','46595'), ('9177','46635','46595'), ('9178','46636','46595'), ('9179','46637','46595'), ('9180','46638','46595'), ('9181','46639','46595'), ('9182','46640','46595'), ('9183','46641','46595'), ('9184','46642','46595'), ('9185','46643','46595'), ('9186','46644','46595'), ('9187','46645','46595'), ('9188','46646','46595'), ('9189','46647','46595'), ('9190','46648','46595'), ('9191','46649','46595'), ('9192','46650','46595'), ('9193','46651','46595'), ('9194','46652','46595'), ('9195','46653','46596'), ('9196','46654','46596'), ('9197','46655','46596'), ('9198','46656','46596'), ('9199','46657','46596'), ('9200','46658','46596'), ('9201','46726','46725'), ('9202','46727','46724'), ('9203','46728','46725'), ('9204','46729','46725'), ('9205','46730','46725'), ('9206','46731','46725'), ('9207','46732','46725'), ('9208','46733','46724'), ('9209','46734','46724'), ('9210','46735','46724'), ('9211','46736','46725'), ('9212','46737','46725'), ('9213','46738','46725'), ('9214','46739','46725'), ('9215','46740','46725'), ('9216','46741','46725'), ('9217','46742','46725'), ('9218','46743','46725'), ('9219','46744','46725'), ('9220','46745','46725'), ('9221','46797','46789'), ('9222','46798','46789'), ('9223','46799','46789'), ('9224','46800','46789'), ('9225','46801','46789'), ('9226','46802','46789'), ('9227','46803','46789'), ('9228','46804','46789'), ('9229','46805','46789'), ('9230','46806','46789'), ('9231','46807','46789'), ('9232','46808','46787'), ('9233','46809','46787'), ('9234','46810','46787'), ('9235','46811','46787'), ('9236','46812','46788'), ('9237','46813','46788'), ('9238','46814','46790'), ('9239','46815','46790'), ('9240','46816','46790'), ('9241','46817','46790'), ('9242','46818','46790'), ('9243','46819','46790'), ('9244','46820','46790'), ('9245','46821','46790'), ('9246','46822','46790'), ('9247','46823','46791'), ('9248','46824','46792'), ('9249','46825','46792'), ('9250','46826','46792'), ('9251','46827','46792'), ('9252','46828','46792'), ('9253','46829','46793'), ('9254','46830','46794'), ('9255','46831','46794'), ('9256','46832','46794'), ('9257','46833','46794'), ('9258','46834','46794'), ('9259','46835','46795'), ('9260','46836','46796'), ('9261','46837','46796'), ('9262','46838','46796'), ('9263','46839','46796'), ('9264','46840','46796'), ('9265','46841','46796'), ('9266','46842','46796'), ('9267','46843','46796'), ('9268','46844','46796'), ('9269','46941','46939'), ('9270','46942','46939'), ('9271','46943','46939'), ('9272','46944','46939'), ('9273','46945','46939'), ('9274','46946','46939'), ('9275','46947','46939'), ('9276','46948','46939'), ('9277','46949','46939'), ('9278','46950','46939'), ('9279','46951','46939'), ('9280','46952','46939'), ('9281','46953','46939'), ('9282','46954','46939'), ('9283','46955','46939'), ('9284','46956','46939'), ('9285','46957','46940'), ('9286','47001','46993'), ('9287','47002','46993'), ('9288','47003','46993'), ('9289','47004','46994'), ('9290','47005','46994'), ('9291','47006','46994'), ('9292','47007','46994'), ('9293','47008','46994'), ('9294','47009','46994'), ('9295','47010','46994'), ('9296','47011','46994'), ('9297','47012','46994'), ('9298','47013','46994'), ('9299','47014','46994'), ('9300','47015','46994'), ('9301','47016','46994'), ('9302','47017','46995'), ('9303','47018','46995'), ('9304','47019','46996'), ('9305','47020','46996'), ('9306','47021','46996'), ('9307','47022','46996'), ('9308','47023','46996'), ('9309','47024','46996'), ('9310','47025','46997'), ('9311','47026','46997'), ('9312','47027','46997'), ('9313','47028','46998'), ('9314','47029','46998'), ('9315','47030','46998'), ('9316','47031','46998'), ('9317','47032','46998'), ('9318','47033','46998'), ('9319','47034','46999'), ('9320','47035','47000'), ('9321','47036','47000'), ('9322','47037','47000'), ('9323','47038','47000'), ('9324','47039','47000'), ('9325','47040','47000'), ('9326','47041','47000'), ('9327','47042','47000'), ('9328','47043','47000'), ('9329','47044','47000'), ('9330','47045','47000'), ('9331','47046','47000'), ('9332','47047','47000'), ('9333','47048','47000'), ('9334','47049','47000'), ('9335','47050','47000'), ('9336','47051','47000'), ('9337','47052','47000'), ('9338','47053','47000'), ('9339','47054','47000'), ('9340','47055','47000'), ('9341','47056','47000'), ('9342','47057','47000'), ('9343','47058','47000'), ('9344','47059','47000'), ('9345','47060','47000'), ('9346','47061','47000'), ('9347','47062','47000'), ('9348','47063','47000'), ('9349','47064','47000'), ('9350','47065','47000'), ('9351','47066','47000'), ('9352','47068','47067'), ('9353','47107','47106'), ('9354','47108','47105'), ('9355','47109','47106'), ('9356','47110','47106'), ('9357','47111','47105'), ('9358','47112','47105'), ('9359','47113','22947'), ('9360','47114','22907'), ('9361','47115','22987'), ('9362','47116','42273'), ('9363','47117','42276'), ('9364','47118','42362'), ('9365','47119','29430'), ('9366','47120','42414'), ('9367','47121','42414'), ('9368','47122','23067'), ('9369','47123','22867'), ('9370','47124','23027'), ('9371','47125','42490'), ('9372','47126','42546'), ('9373','47127','42581'), ('9374','47128','42582'), ('9375','47129','43193'), ('9376','47130','43300'), ('9377','47192','47187'), ('9378','47193','47188'), ('9379','47194','47189'), ('9380','47195','47190'), ('9381','47196','47190'), ('9382','47197','47191'), ('9383','47198','47191'), ('9384','47297','47296'), ('9385','47298','47296'), ('9386','47299','47296'), ('9387','47328','47324'), ('9388','47329','47327'), ('9389','47330','47325'), ('9390','47331','47326'), ('9391','47332','47326'), ('9392','47333','47327'), ('9393','47334','47327'), ('9394','47335','47327'), ('9395','47336','47327'), ('9396','47337','47327'), ('9397','47514','47513'), ('9398','47536','31656'), ('9399','47537','31656'), ('9400','47538','32934'), ('9401','47539','32934'), ('9402','47540','47534'), ('9403','47541','47535'), ('9404','47542','47533'), ('9405','47548','32955'), ('9406','47549','32955'), ('9407','47550','47547'), ('9408','47555','47553'), ('9409','47556','47553'), ('9410','47557','47554'), ('9411','47558','47554'), ('9412','47559','47553'), ('9413','47560','47553'), ('9414','47561','47553'), ('9415','47562','47553'), ('9416','47563','47553'), ('9417','47564','47554'), ('9418','47565','47554'), ('9419','47566','47554'), ('9420','47567','47554'), ('9421','47568','47554'), ('9422','47601','47593'), ('9423','47602','47593'), ('9424','47603','47594'), ('9425','47604','47594'), ('9426','47605','47594'), ('9427','47606','47594'), ('9428','47607','47594'), ('9429','47608','47595'), ('9430','47609','47595'), ('9431','47610','47595'), ('9432','47611','47596'), ('9433','47612','47596'), ('9434','47613','47596'), ('9435','47614','47597'), ('9436','47615','47597'), ('9437','47616','47598'), ('9438','47617','47598'), ('9439','47618','47598'), ('9440','47619','47598'), ('9441','47620','47598'), ('9442','47621','47598'), ('9443','47622','47598'), ('9444','47623','47598'), ('9445','47624','47598'), ('9446','47625','47598'), ('9447','47626','47598'), ('9448','47627','47599'), ('9449','47628','47599'), ('9450','47629','47599'), ('9451','47630','47599'), ('9452','47631','47599'), ('9453','47632','47599'), ('9454','47633','47599'), ('9455','47634','47600'), ('9456','47635','47600'), ('9457','47636','47600'), ('9458','47637','47600'), ('9459','47663','47662'), ('9460','47664','47661'), ('9461','47665','47661'), ('9462','47666','47661'), ('9463','47667','47661'), ('9464','47668','47661'), ('9465','47669','47661'), ('9466','47670','47662'), ('9467','47671','47662'), ('9468','47672','47662'), ('9469','47673','47662'), ('9470','47674','47662'), ('9471','47703','47702'), ('9472','47704','47702'), ('9473','47705','47702'), ('9474','47706','47702'), ('9475','47707','47702'), ('9476','47708','47702'), ('9477','47931','47925'), ('9478','47932','47925'), ('9479','47933','47925'), ('9480','47934','47925'), ('9481','47935','47925'), ('9482','47936','47925'), ('9483','47937','47925'), ('9484','47938','47926'), ('9485','47939','47926'), ('9486','47940','47926'), ('9487','47941','47926'), ('9488','47942','47926'), ('9489','47943','47926'), ('9490','47944','47926'), ('9491','47945','47927'), ('9492','47946','47927'), ('9493','47947','47927'), ('9494','47948','47927'), ('9495','47949','47927'), ('9496','47950','47927'), ('9497','47951','47927'), ('9498','47952','47927'), ('9499','47953','47927'), ('9500','47954','47930'), ('9501','47955','47930'), ('9502','47956','47930'), ('9503','47957','47930'), ('9504','47979','47978'), ('9505','47980','47978'), ('9506','47981','47978'), ('9507','47982','47978'), ('9508','47983','47978'), ('9509','47984','47978'), ('9510','47985','42742'), ('9511','47986','42742'), ('9512','48038','48035'), ('9513','48039','48037'), ('9514','48040','48036'), ('9515','48041','48036'), ('9516','48042','48036'), ('9517','48043','48036'), ('9518','48044','48036'), ('9519','48045','48037'), ('9520','48046','48037'), ('9521','48047','48037'), ('9522','48048','48037'), ('9523','48100','48097'), ('9524','48101','48099'), ('9525','48102','48098'), ('9526','48103','48098'), ('9527','48104','48098'), ('9528','48105','48098'), ('9529','48106','48098'), ('9530','48107','48099'), ('9531','48108','48099'), ('9532','48109','48099'), ('9533','48110','48099'), ('9534','48178','48176'), ('9535','48179','48176'), ('9536','48180','48176'), ('9537','48181','48176'), ('9538','48182','48176'), ('9539','48183','48176'), ('9540','48184','48177'), ('9541','48185','48176'), ('9542','48186','48176'), ('9543','48187','48176'), ('9544','48188','48176'), ('9545','48189','48176'), ('9546','48190','48176'), ('9547','48191','48176'), ('9548','48192','48176'), ('9549','48193','48176'), ('9550','48194','48176'), ('9551','48195','48176'), ('9552','48196','48176'), ('9553','48197','48176'), ('9554','48198','48176'), ('9555','48199','48176'), ('9556','48200','48176'), ('9557','48201','48176'), ('9558','48202','48176'), ('9559','48203','48176'), ('9560','48204','48176'), ('9561','48205','48176'), ('9562','48206','48176'), ('9563','48207','48176'), ('9564','48208','48176'), ('9565','48209','48176'), ('9566','48210','48176'), ('9567','48211','48176'), ('9568','48212','48176'), ('9569','48213','48176'), ('9570','48214','48176'), ('9571','48215','48176'), ('9572','48216','48176'), ('9573','48217','48176'), ('9574','48218','48176'), ('9575','48219','48176'), ('9576','48220','48177'), ('9577','48221','48177'), ('9578','48222','48177'), ('9579','48264','48263'), ('9580','48265','48263'), ('9581','48266','48263'), ('9582','48267','48263'), ('9583','48268','48263'), ('9584','48269','48263'), ('9585','48270','48263'), ('9586','48271','48263'), ('9587','48272','48263'), ('9588','48273','48263'), ('9589','48274','48263'), ('9590','48275','48263'), ('9591','48276','48263'), ('9592','48277','48263'), ('9593','48278','48263'), ('9594','48279','48263'), ('9595','48280','48263'), ('9596','48281','48263'), ('9597','48282','48263'), ('9598','48283','48263'), ('9599','48284','48263'), ('9600','48285','48263'), ('9601','48286','48263'), ('9602','48287','48263'), ('9603','48288','48263'), ('9604','48289','48263'), ('9605','48290','48263'), ('9606','48291','48263'), ('9607','48292','48263'), ('9608','48293','48263'), ('9609','48294','48263'), ('9610','48295','48263'), ('9611','48332','48320'), ('9612','48333','48320'), ('9613','48334','48320'), ('9614','48335','48321'), ('9615','48336','48321'), ('9616','48337','48321'), ('9617','48338','48321'), ('9618','48339','48321'), ('9619','48340','48322'), ('9620','48341','48322'), ('9621','48342','48323'), ('9622','48343','48323'), ('9623','48344','48323'), ('9624','48345','48324'), ('9625','48346','48325'), ('9626','48347','48325'), ('9627','48348','48325'), ('9628','48349','48325'), ('9629','48350','48325'), ('9630','48351','48325'), ('9631','48352','48325'), ('9632','48353','48325'), ('9633','48354','48325'), ('9634','48355','48326'), ('9635','48356','48327'), ('9636','48357','48327'), ('9637','48358','48327'), ('9638','48359','48327'), ('9639','48360','48328'), ('9640','48361','48328'), ('9641','48362','48328'), ('9642','48363','48328'), ('9643','48364','48329'), ('9644','48365','48330'), ('9645','48366','48330'), ('9646','48367','48331'), ('9647','48432','48422'), ('9648','48433','48427'), ('9649','48434','48428'), ('9650','48435','48422'), ('9651','48436','48422'), ('9652','48437','48423'), ('9653','48438','48423'), ('9654','48439','48424'), ('9655','48440','48425'), ('9656','48441','48425'), ('9657','48442','48425'), ('9658','48443','48425'), ('9659','48444','48425'), ('9660','48445','48426'), ('9661','48446','48427'), ('9662','48447','48427'), ('9663','48448','48427'), ('9664','48449','48427'), ('9665','48450','48427'), ('9666','48451','48427'), ('9667','48452','48427'), ('9668','48453','48428'), ('9669','48454','48428'), ('9670','48455','48428'), ('9671','48456','48428'), ('9672','48457','48429'), ('9673','48458','48429'), ('9674','48459','48430'), ('9675','48460','48431'), ('9676','48483','48478'), ('9677','48484','48479'), ('9678','48485','48482'), ('9679','48486','48475'), ('9680','48487','48476'), ('9681','48488','48477'), ('9682','48489','48478'), ('9683','48490','48478'), ('9684','48491','48478'), ('9685','48492','48478'), ('9686','48493','48479'), ('9687','48494','48479'), ('9688','48495','48479'), ('9689','48496','48479'), ('9690','48497','48479'), ('9691','48498','48480'), ('9692','48499','48481'), ('9693','48500','48482'), ('9694','48501','48482'), ('9695','48502','48482'), ('9696','48503','48482'), ('9697','48504','48482'), ('9698','48505','48482'), ('9699','48506','48477'), ('9700','48507','48477'), ('9701','48508','48480'), ('9702','48509','48480'), ('9703','48510','48480'), ('9704','48511','48480'), ('9705','48512','48481'), ('9706','48513','48481'), ('9707','48554','48542'), ('9708','48555','48542'), ('9709','48556','48543'), ('9710','48557','48544'), ('9711','48558','48544'), ('9712','48559','48545'), ('9713','48560','48545'), ('9714','48561','48546'), ('9715','48562','48546'), ('9716','48563','48547'), ('9717','48564','48547'), ('9718','48565','48548'), ('9719','48566','48548'), ('9720','48567','48548'), ('9721','48568','48548'), ('9722','48569','48548'), ('9723','48570','48548'), ('9724','48571','48549'), ('9725','48572','48550'), ('9726','48573','48551'), ('9727','48574','48551'), ('9728','48575','48552'), ('9729','48576','48552'), ('9730','48577','48552'), ('9731','48578','48552'), ('9732','48579','48552'), ('9733','48580','48552'), ('9734','48581','48553'), ('9735','48582','48553'), ('9736','48599','48594'), ('9737','48600','48595'), ('9738','48601','48598'), ('9739','48602','48591'), ('9740','48603','48592'), ('9741','48604','48593'), ('9742','48605','48594'), ('9743','48606','48594'), ('9744','48607','48594'), ('9745','48608','48594'), ('9746','48609','48595'), ('9747','48610','48595'), ('9748','48611','48595'), ('9749','48612','48595'), ('9750','48613','48595'), ('9751','48614','48596'), ('9752','48615','48597'), ('9753','48616','48598'), ('9754','48617','48598'), ('9755','48618','48598'), ('9756','48619','48598'), ('9757','48620','48598'), ('9758','48621','48598'), ('9759','48622','48593'), ('9760','48623','48593'), ('9761','48624','48596'), ('9762','48625','48596'), ('9763','48626','48596'), ('9764','48627','48596'), ('9765','48628','48597'), ('9766','48629','48597'), ('9767','48652','48646'), ('9768','48653','48647'), ('9769','48654','48647'), ('9770','48655','36270'), ('9771','48656','36270'), ('9772','48657','48648'), ('9773','48658','48648'), ('9774','48659','48649'), ('9775','48660','48649'), ('9776','48661','48650'), ('9777','48662','36274'), ('9778','48663','36274'), ('9779','48664','48651'), ('9780','48665','48651'), ('9781','48682','48677'), ('9782','48683','48678'), ('9783','48684','48681'), ('9784','48685','48674'), ('9785','48686','48675'), ('9786','48687','48676'), ('9787','48688','48677'), ('9788','48689','48677'), ('9789','48690','48677'), ('9790','48691','48677'), ('9791','48692','48678'), ('9792','48693','48678'), ('9793','48694','48678'), ('9794','48695','48678'), ('9795','48696','48678'), ('9796','48697','48679'), ('9797','48698','48680'), ('9798','48699','48681'), ('9799','48700','48681'), ('9800','48701','48681'), ('9801','48702','48681'), ('9802','48703','48681'), ('9803','48704','48681'), ('9804','48705','48676'), ('9805','48706','48676'), ('9806','48707','48679'), ('9807','48708','48679'), ('9808','48709','48679'), ('9809','48710','48679'), ('9810','48711','48680'), ('9811','48712','48680'), ('9812','48735','48729'), ('9813','48736','48730'), ('9814','48737','48730'), ('9815','48738','36352'), ('9816','48739','36352'), ('9817','48740','48731'), ('9818','48741','48731'), ('9819','48742','48732'), ('9820','48743','48732'), ('9821','48744','48733'), ('9822','48745','36356'), ('9823','48746','36356'), ('9824','48747','48734'), ('9825','48748','48734'), ('9826','48771','48766'), ('9827','48772','48767'), ('9828','48773','48770'), ('9829','48774','48763'), ('9830','48775','48764'), ('9831','48776','48765'), ('9832','48777','48766'), ('9833','48778','48766'), ('9834','48779','48766'), ('9835','48780','48766'), ('9836','48781','48767'), ('9837','48782','48767'), ('9838','48783','48767'), ('9839','48784','48767'), ('9840','48785','48767'), ('9841','48786','48768'), ('9842','48787','48769'), ('9843','48788','48770'), ('9844','48789','48770'), ('9845','48790','48770'), ('9846','48791','48770'), ('9847','48792','48770'), ('9848','48793','48770'), ('9849','48794','48765'), ('9850','48795','48765'), ('9851','48796','48768'), ('9852','48797','48768'), ('9853','48798','48768'), ('9854','48799','48768'), ('9855','48800','48769'), ('9856','48801','48769'), ('9857','48842','48830'), ('9858','48843','48830'), ('9859','48844','48831'), ('9860','48845','48832'), ('9861','48846','48832'), ('9862','48847','48833'), ('9863','48848','48833'), ('9864','48849','48834'), ('9865','48850','48834'), ('9866','48851','48835'), ('9867','48852','48835'), ('9868','48853','48836'), ('9869','48854','48836'), ('9870','48855','48836'), ('9871','48856','48836'), ('9872','48857','48836'), ('9873','48858','48836'), ('9874','48859','48837'), ('9875','48860','48838'), ('9876','48861','48839'), ('9877','48862','48839'), ('9878','48863','48840'), ('9879','48864','48840'), ('9880','48865','48840'), ('9881','48866','48840'), ('9882','48867','48840'), ('9883','48868','48840'), ('9884','48869','48841'), ('9885','48870','48841'), ('9886','48887','48882'), ('9887','48888','48883'), ('9888','48889','48886'), ('9889','48890','48879'), ('9890','48891','48880'), ('9891','48892','48881'), ('9892','48893','48882'), ('9893','48894','48882'), ('9894','48895','48882'), ('9895','48896','48882'), ('9896','48897','48883'), ('9897','48898','48883'), ('9898','48899','48883'), ('9899','48900','48883'), ('9900','48901','48883'), ('9901','48902','48884'), ('9902','48903','48885'), ('9903','48904','48886'), ('9904','48905','48886'), ('9905','48906','48886'), ('9906','48907','48886'), ('9907','48908','48886'), ('9908','48909','48886'), ('9909','48910','48881'), ('9910','48911','48881'), ('9911','48912','48884'), ('9912','48913','48884'), ('9913','48914','48884'), ('9914','48915','48884'), ('9915','48916','48885'), ('9916','48917','48885'), ('9917','48940','48934'), ('9918','48941','48935'), ('9919','48942','48935'), ('9920','48943','36434'), ('9921','48944','36434'), ('9922','48945','48936'), ('9923','48946','48936'), ('9924','48947','48937'), ('9925','48948','48937'), ('9926','48949','48938'), ('9927','48950','36438'), ('9928','48951','36438'), ('9929','48952','48939'), ('9930','48953','48939'), ('9931','48970','48965'), ('9932','48971','48966'), ('9933','48972','48969'), ('9934','48973','48962'), ('9935','48974','48963'), ('9936','48975','48964'), ('9937','48976','48965'), ('9938','48977','48965'), ('9939','48978','48965'), ('9940','48979','48965'), ('9941','48980','48966'), ('9942','48981','48966'), ('9943','48982','48966'), ('9944','48983','48966'), ('9945','48984','48966'), ('9946','48985','48967'), ('9947','48986','48968'), ('9948','48987','48969'), ('9949','48988','48969'), ('9950','48989','48969'), ('9951','48990','48969'), ('9952','48991','48969'), ('9953','48992','48969'), ('9954','48993','48964'), ('9955','48994','48964'), ('9956','48995','48967'), ('9957','48996','48967'), ('9958','48997','48967'), ('9959','48998','48967'), ('9960','48999','48968'), ('9961','49000','48968'), ('9962','49023','49017'), ('9963','49024','49018'), ('9964','49025','49018'), ('9965','49026','36516'), ('9966','49027','36516'), ('9967','49028','49019'), ('9968','49029','49019'), ('9969','49030','49020'), ('9970','49031','49020'), ('9971','49032','49021'), ('9972','49033','36520'), ('9973','49034','36520'), ('9974','49035','49022'), ('9975','49036','49022'), ('9976','49071','49063'), ('9977','49072','49063'), ('9978','49073','49064'), ('9979','49074','49065'), ('9980','49075','49065'), ('9981','49076','28349'), ('9982','49077','28349'), ('9983','49078','49066'), ('9984','49079','49066'), ('9985','49080','49067'), ('9986','49081','49067'), ('9987','49082','28350'), ('9988','49083','28350'), ('9989','49084','28350'), ('9990','49085','28350'), ('9991','49086','28350'), ('9992','49087','28350'), ('9993','49088','28348'), ('9994','49089','49068'), ('9995','49090','49069'), ('9996','49091','49069'), ('9997','49092','28351'), ('9998','49093','28351'), ('9999','49094','28351'), ('10000','49095','28351'), ('10001','49096','28351'), ('10002','49097','28351'), ('10003','49098','49070'), ('10004','49099','49070'), ('10005','49353','49349'), ('10006','49354','49351'), ('10007','49355','49349'), ('10008','49356','49349'), ('10009','49357','49349'), ('10010','49358','49349'), ('10011','49359','49350'), ('10012','49360','49351'), ('10013','49361','49351'), ('10014','49362','49351'), ('10015','49363','49351'), ('10016','49364','49352'), ('10017','49365','49350'), ('10018','49366','49350'), ('10019','49367','49350'), ('10020','49368','49350'), ('10021','49369','49350'), ('10022','49370','49350'), ('10023','49371','49350'), ('10024','49372','49350'), ('10025','49373','49350'), ('10026','49374','49350'), ('10027','49375','49350'), ('10028','49376','49352'), ('10029','49377','49352'), ('10030','49378','49352'), ('10031','49379','49352'), ('10032','49380','49352'), ('10033','49381','49352'), ('10034','49382','49352'), ('10035','49383','49352'), ('10036','49384','49352'), ('10037','49385','49352'), ('10038','49386','49352'), ('10039','49420','49418'), ('10040','49421','49419'), ('10041','49424','49422'), ('10042','49425','49423'), ('10043','49428','49426'), ('10044','49429','49427'), ('10045','49432','49430'), ('10046','49433','49431'), ('10047','49436','49434'), ('10048','49437','49435'), ('10049','49440','49438'), ('10050','49441','49439'), ('10051','49444','49442'), ('10052','49445','49443'), ('10053','49448','49446'), ('10054','49449','49447'), ('10055','49452','49450'), ('10056','49453','49451'), ('10057','49456','49454'), ('10058','49457','49455'), ('10059','49460','49458'), ('10060','49461','49459'), ('10061','49464','49462'), ('10062','49465','49463'), ('10063','49468','49466'), ('10064','49469','49467'), ('10065','49472','49470'), ('10066','49473','49471'), ('10067','49476','49474'), ('10068','49477','49475'), ('10069','49480','49478'), ('10070','49481','49479'), ('10071','49484','49482'), ('10072','49485','49483'), ('10073','49488','49486'), ('10074','49489','49487'), ('10075','49492','49490'), ('10076','49493','49491'), ('10077','49496','49494'), ('10078','49497','49495'), ('10079','49500','49498'), ('10080','49501','49499'), ('10081','49504','49502'), ('10082','49505','49503'), ('10083','49508','49506'), ('10084','49509','49507'), ('10085','49512','49510'), ('10086','49513','49511'), ('10087','49516','49514'), ('10088','49517','49515'), ('10089','49520','49518'), ('10090','49521','49519'), ('10091','49524','49522'), ('10092','49525','49523'), ('10093','49528','49526'), ('10094','49529','49527'), ('10095','49532','49530'), ('10096','49533','49531'), ('10097','49536','49534'), ('10098','49537','49535'), ('10099','49540','49538'), ('10100','49541','49539'), ('10101','49544','49542'), ('10102','49545','49543'), ('10103','49548','49546'), ('10104','49549','49547'), ('10105','49552','49550'), ('10106','49553','49551'), ('10107','49556','49554'), ('10108','49557','49555'), ('10109','49560','49558'), ('10110','49561','49559'), ('10111','49564','49562'), ('10112','49565','49563'), ('10113','49568','49566'), ('10114','49569','49567'), ('10115','49572','49570'), ('10116','49573','49571'), ('10117','49576','49574'), ('10118','49577','49575'), ('10119','49580','49578'), ('10120','49581','49579'), ('10121','49584','49582'), ('10122','49585','49583'), ('10123','49588','49586'), ('10124','49589','49587'), ('10125','49592','49590'), ('10126','49593','49591'), ('10127','49596','49594'), ('10128','49597','49595'), ('10129','49600','49598'), ('10130','49601','49599'), ('10131','49604','49602'), ('10132','49605','49603'), ('10133','49608','49606'), ('10134','49609','49607'), ('10135','49612','49610'), ('10136','49613','49611'), ('10137','49616','49614'), ('10138','49617','49615'), ('10139','49620','49618'), ('10140','49621','49619'), ('10141','49624','49622'), ('10142','49625','49623'), ('10143','49628','49626'), ('10144','49629','49627'), ('10145','49632','49630'), ('10146','49633','49631'), ('10147','49636','49634'), ('10148','49637','49635'), ('10149','49739','49719'), ('10150','49740','49720'), ('10151','49741','49721'), ('10152','49742','49722'), ('10153','49743','49723'), ('10154','49744','49724'), ('10155','49745','49725'), ('10156','49746','49726'), ('10157','49747','49727'), ('10158','49748','49728'), ('10159','49749','49729'), ('10160','49750','49730'), ('10161','49751','49731'), ('10162','49752','49732'), ('10163','49753','49733'), ('10164','49754','49734'), ('10165','49755','49735'), ('10166','49756','49736'), ('10167','49757','49737'), ('10168','49758','49738'), ('10169','49759','49719'), ('10170','49760','49719'), ('10171','49761','49719'), ('10172','49762','49719'), ('10173','49763','49719'), ('10174','49764','49720'), ('10175','49765','49720'), ('10176','49766','49720'), ('10177','49767','49720'), ('10178','49768','49720'), ('10179','49769','49721'), ('10180','49770','49721'), ('10181','49771','49721'), ('10182','49772','49722'), ('10183','49773','49723'), ('10184','49774','49723'), ('10185','49775','49723'), ('10186','49776','49723'), ('10187','49777','49723'), ('10188','49778','49723'), ('10189','49779','49723'), ('10190','49780','49723'), ('10191','49781','49723'), ('10192','49782','49723'), ('10193','49783','49723'), ('10194','49784','49723'), ('10195','49785','49724'), ('10196','49786','49724'), ('10197','49787','49724'), ('10198','49788','49724'), ('10199','49789','49725'), ('10200','49790','49725'), ('10201','49791','49726'), ('10202','49792','49726'), ('10203','49793','49726'), ('10204','49794','49726'), ('10205','49795','49727'), ('10206','49796','49727'), ('10207','49797','49728'), ('10208','49798','49728'), ('10209','49799','49728'), ('10210','49800','49728'), ('10211','49801','49728'), ('10212','49802','49728'), ('10213','49803','49728'), ('10214','49804','49728'), ('10215','49805','49728'), ('10216','49806','49728'), ('10217','49807','49728'), ('10218','49808','49728'), ('10219','49809','49728'), ('10220','49810','49729'), ('10221','49811','49729'), ('10222','49812','49729'), ('10223','49813','49729'), ('10224','49814','49729'), ('10225','49815','49730'), ('10226','49816','49730'), ('10227','49817','49730'), ('10228','49818','49730'), ('10229','49819','49730'), ('10230','49820','49731'), ('10231','49821','49731'), ('10232','49822','49731'), ('10233','49823','49732'), ('10234','49824','49733'), ('10235','49825','49733'), ('10236','49826','49733'), ('10237','49827','49733'), ('10238','49828','49733'), ('10239','49829','49733'), ('10240','49830','49733'), ('10241','49831','49733'), ('10242','49832','49733'), ('10243','49833','49733'), ('10244','49834','49733'), ('10245','49835','49733'), ('10246','49836','49733'), ('10247','49837','49734'), ('10248','49838','49734'), ('10249','49839','49734'), ('10250','49840','49734'), ('10251','49841','49735'), ('10252','49842','49735'), ('10253','49843','49735'), ('10254','49844','49736'), ('10255','49845','49736'), ('10256','49846','49736'), ('10257','49847','49736'), ('10258','49848','49737'), ('10259','49849','49737'), ('10260','49850','49738'), ('10261','49851','49738'), ('10262','49852','49738'), ('10263','49853','49738'), ('10264','49854','49738'), ('10265','49855','49738'), ('10266','49856','49738'), ('10267','49857','49738'), ('10268','49858','49738'), ('10269','49859','49738'), ('10270','49860','49738'), ('10271','49861','49738'), ('10272','49862','49738'), ('10273','49863','49738'), ('10274','49864','49738'), ('10275','49881','49879'), ('10276','49886','49884'), ('10277','49887','49885'), ('10278','49888','49884'), ('10279','49889','49884'), ('10280','49890','49884'), ('10281','49891','49884'), ('10282','49892','49884'), ('10283','49893','49884'), ('10284','49894','49884'), ('10285','49895','49884'), ('10286','49896','49885'), ('10287','49897','49885'), ('10288','49898','49885'), ('10289','49899','49885'), ('10290','49900','49885'), ('10291','49901','49885'), ('10292','49902','49885'), ('10293','49903','49885'), ('10294','49904','49885'), ('10295','49905','49885'), ('10296','49937','42835'), ('10297','49938','42835'), ('10298','49939','42835'), ('10299','49940','42835'), ('10300','49941','42835'), ('10301','49942','42835'), ('10302','49943','42835'), ('10303','49944','42835'), ('10304','49945','42835'), ('10305','49979','49966'), ('10306','49980','49967'), ('10307','49981','49968'), ('10308','49982','49969'), ('10309','49983','49969'), ('10310','49984','49969'), ('10311','49985','49970'), ('10312','49986','49971'), ('10313','49987','49972'), ('10314','49988','49973'), ('10315','49989','49974'), ('10316','49990','49975'), ('10317','49991','49976'), ('10318','49992','49977'), ('10319','49993','49978'), ('10320','49994','49971'), ('10321','49995','49971'), ('10322','49996','49971'), ('10323','49997','49971'), ('10324','49998','49971'), ('10325','49999','49971'), ('10326','50000','49971'), ('10327','50001','49971'), ('10328','50014','44676'), ('10329','50015','44697'), ('10330','50038','50036'), ('10331','50067','50059'), ('10332','50068','50059'), ('10333','50069','50060'), ('10334','50070','50060'), ('10335','50071','50060'), ('10336','50072','50060'), ('10337','50073','50060'), ('10338','50074','50060'), ('10339','50075','50060'), ('10340','50076','50061'), ('10341','50077','50061'), ('10342','50078','50061'), ('10343','50079','50061'), ('10344','50080','50061'), ('10345','50081','50061'), ('10346','50082','50061'), ('10347','50083','50062'), ('10348','50084','50062'), ('10349','50085','50062'), ('10350','50086','50062'), ('10351','50087','50062'), ('10352','50088','50062'), ('10353','50089','50062'), ('10354','50090','50063'), ('10355','50091','50063'), ('10356','50092','50064'), ('10357','50093','50064'), ('10358','50094','50064'), ('10359','50095','50064'), ('10360','50096','50064'), ('10361','50097','50064'), ('10362','50098','50064'), ('10363','50099','50064'), ('10364','50100','50064'), ('10365','50101','50065'), ('10366','50102','50065'), ('10367','50103','50066'), ('10368','50104','50066'), ('10369','50105','50066'), ('10370','50106','50066'), ('10371','50107','50066'), ('10372','50108','50066'), ('10373','50109','50066'), ('10374','50110','50066'), ('10375','50111','50066'), ('10376','50139','50135'), ('10377','50140','50135'), ('10378','50141','50136'), ('10379','50142','50137'), ('10380','50143','50138'), ('10381','50144','50138'), ('10382','50145','50138'), ('10383','50146','50138'), ('10384','50147','50138'), ('10385','50148','50138'), ('10386','50149','50138'), ('10387','50150','50138'), ('10388','50151','50138'), ('10389','50169','50167'), ('10390','50170','50168'), ('10391','50171','50167'), ('10392','50172','50167'), ('10393','50173','50167'), ('10394','50174','50167'), ('10395','50175','50168'), ('10396','50176','47599'), ('10397','50177','47600'), ('10398','50233','50232'), ('10399','50234','50230'), ('10400','50235','50230'), ('10401','50236','50231'), ('10402','50237','50231'), ('10403','50238','50231'), ('10404','50239','50231'), ('10405','50240','50231'), ('10406','50241','50231'), ('10407','50242','50231'), ('10408','50243','50231'), ('10409','50244','50231'), ('10410','50245','50232'), ('10411','50246','50232'), ('10412','50312','50310'), ('10413','50313','50302'), ('10414','50314','50303'), ('10415','50315','50304'), ('10416','50316','50304'), ('10417','50317','50304'), ('10418','50318','50304'), ('10419','50319','50305'), ('10420','50320','50305'), ('10421','50321','50305'), ('10422','50322','50306'), ('10423','50323','50306'), ('10424','50324','50306'), ('10425','50325','50306'), ('10426','50326','50306'), ('10427','50327','50306'), ('10428','50328','50306'), ('10429','50329','50306'), ('10430','50330','50306'), ('10431','50331','50307'), ('10432','50332','50307'), ('10433','50333','50307'), ('10434','50334','50307'), ('10435','50335','50307'), ('10436','50336','50307'), ('10437','50337','50307'), ('10438','50338','50307'), ('10439','50339','50307'), ('10440','50340','50307'), ('10441','50341','50307'), ('10442','50342','50307'), ('10443','50343','50308'), ('10444','50344','50308'), ('10445','50345','50308'), ('10446','50346','50308'), ('10447','50347','50308'), ('10448','50348','50308'), ('10449','50349','50308'), ('10450','50350','50308'), ('10451','50351','50308'), ('10452','50352','50308'), ('10453','50353','50308'), ('10454','50354','50308'), ('10455','50355','50308'), ('10456','50356','50308'), ('10457','50357','50308'), ('10458','50358','50308'), ('10459','50359','50308'), ('10460','50360','50308'), ('10461','50361','50309'), ('10462','50362','50309'), ('10463','50363','50310'), ('10464','50364','50310'), ('10465','50365','50311'), ('10466','50366','50311'); INSERT INTO host_discovery (hostid,parent_hostid,parent_itemid) VALUES ('10333',NULL,'31657'), ('10334',NULL,'31658'), ('10367',NULL,'32956'), ('10368',NULL,'32957'), ('10388',NULL,'33920'), ('10389',NULL,'33923'), ('10511',NULL,'40021'), ('10512',NULL,'40023'), ('10513',NULL,'40033'), ('10514',NULL,'40035'), ('10523',NULL,'43166'), ('10533',NULL,'43768'), ('10536',NULL,'44052'), ('10537',NULL,'44053'), ('10538',NULL,'44054'), ('10541',NULL,'44200'), ('10545',NULL,'44293'), ('10549',NULL,'44314'), ('10550',NULL,'44315'), ('10554',NULL,'44468'), ('10559',NULL,'44585'), ('10567',NULL,'44733'), ('10569',NULL,'44818'), ('10578',NULL,'45034'), ('10579',NULL,'45035'), ('10580',NULL,'45036'), ('10581',NULL,'45037'), ('10585',NULL,'45595'), ('10588',NULL,'45612'), ('10592',NULL,'45787'), ('10597',NULL,'46022'), ('10598',NULL,'46023'), ('10601',NULL,'46060'), ('10608',NULL,'46503'), ('10612',NULL,'46723'), ('10621',NULL,'46933'), ('10622',NULL,'46934'), ('10623',NULL,'46935'), ('10624',NULL,'46936'), ('10625',NULL,'46937'), ('10626',NULL,'46938'), ('10631',NULL,'47278'), ('10633',NULL,'47300'), ('10643',NULL,'47928'), ('10644',NULL,'47929'), ('10652',NULL,'48383'), ('10666',NULL,'49880'), ('10669',NULL,'50037'); INSERT INTO item_condition (item_conditionid,itemid,operator,macro,value) VALUES ('6','22944','8','{#IFNAME}','@Network interfaces for discovery'), ('8','22984','8','{#IFNAME}','@Network interfaces for discovery'), ('10','23024','8','{#IFNAME}','@Network interfaces for discovery'), ('15','23329','8','{#IFNAME}','@Network interfaces for discovery'), ('16','23540','8','{#IFNAME}','@Network interfaces for discovery'), ('247','27209','8','{#TEMP_SENSOR}','1'), ('248','27210','8','{#SNMPVALUE}','[^1]'), ('249','27211','8','{#ENT_SN}','.+'), ('253','27242','8','{#SENSOR_TYPE}','1'), ('254','27243','8','{#SENSOR_TYPE}','3'), ('255','27244','8','{#SENSOR_TYPE}','2'), ('284','27550','8','{#STATUS}','[^0]'), ('285','27551','8','{#STATUS}','[^0]'), ('302','27665','8','{#SNMPVALUE}','^(MODULE|Module) (LEVEL|level)1$'), ('303','27665','8','{#SNMPVALUE}','(Fabric|FABRIC) (.+) (Module|MODULE)'), ('304','27666','8','{#SNMPVALUE}','^(MODULE|Module) (LEVEL|level)1$'), ('305','27666','8','{#SNMPVALUE}','(Fabric|FABRIC) (.+) (Module|MODULE)'), ('306','27666','8','{#SNMPVALUE}','(T|t)emperature.*(s|S)ensor'), ('307','27667','8','{#ENT_CLASS}','7'), ('308','27668','8','{#ENT_CLASS}','6'), ('309','27669','8','{#ENT_CLASS}','3'), ('327','27745','8','{#ENT_NAME}','MPU.*'), ('328','27746','8','{#ENT_CLASS}','3'), ('331','27779','8','{#SENSOR_TYPE}','2'), ('332','27780','8','{#ENT_CLASS}','2'), ('337','27815','8','{#SNMPVALUE}','Routing Engine.*'), ('338','27816','8','{#SNMPVALUE}','[^0]+'), ('352','27903','8','{#STORAGE_TYPE}','.+4$'), ('353','27903','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('382','28144','8','{#SENSOR_TYPE}','8'), ('383','28144','8','{#SENSOR_PRECISION}','0'), ('384','28146','8','{#ENT_CLASS}','.+8.3.2$'), ('385','28146','8','{#ENT_STATUS}','(1|2|3|4)'), ('386','28147','8','{#ENT_CLASS}','.+8.3.1$'), ('387','28147','8','{#ENT_STATUS}','(1|2|3|4)'), ('388','28148','8','{#ENT_CLASS}','.+8.3.3$'), ('389','28148','8','{#ENT_STATUS}','(1|2|3|4)'), ('390','28149','8','{#ENT_CLASS}','3'), ('397','28196','8','{#SENSOR_TYPE}','8'), ('398','28196','8','{#SENSOR_PRECISION}','1'), ('399','28197','8','{#SNMPVALUE}','10'), ('400','28198','8','{#ENT_CLASS}','3'), ('401','28199','8','{#ENT_CLASS}','6'), ('448','28306','8','{#SENSOR_TYPE}','8'), ('449','28306','8','{#SENSOR_PRECISION}','1'), ('450','28307','8','{#SENSOR_TYPE}','10'), ('451','28308','8','{#ENT_CLASS}','3'), ('452','28309','8','{#ENT_CLASS}','6'), ('455','28349','8','{#TYPE}','3'), ('456','28392','8','{#SENSOR_LOCALE}','(4|8|9|12|13)'), ('457','28393','8','{#SNMPINDEX}',E'0\\.1'), ('458','28393','8','{#SENSOR_LOCALE}','11'), ('459','28394','8','{#SENSOR_LOCALE}','6'), ('460','28395','8','{#SENSOR_LOCALE}','7'), ('461','28396','8','{#SENSOR_LOCALE}','10'), ('462','28397','8','{#SENSOR_LOCALE}','5'), ('466','28468','8','{#SNMPVALUE}','(DIMM|PSU|PCH|RAID|RR|PCI).*'), ('467','28469','8','{#SNMPVALUE}','Ambient.*'), ('468','28470','8','{#SNMPVALUE}','CPU [0-9]* Temp'), ('469','28493','8','{#SNMPVALUE}','[1-9]+'), ('470','28493','8','{#SENSOR_DESCR}','.*Temp.*'), ('471','28494','8','{#SNMPVALUE}','[1-9]+'), ('472','28494','8','{#SENSOR_DESCR}','FAN.*'), ('540','29429','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('541','29429','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('542','29429','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('543','29429','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('544','29429','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('545','29429','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('546','29430','8','{#FSTYPE}','{$VFS.FS.FSTYPE.MATCHES}'), ('547','29430','9','{#FSTYPE}','{$VFS.FS.FSTYPE.NOT_MATCHES}'), ('548','29430','8','{#FSNAME}','{$VFS.FS.FSNAME.MATCHES}'), ('549','29430','9','{#FSNAME}','{$VFS.FS.FSNAME.NOT_MATCHES}'), ('550','29430','8','{#FSNAME}','{$VFS.FS.FSDEVICE.MATCHES}'), ('551','29430','9','{#FSDEVICE}','{$VFS.FS.FSDEVICE.NOT_MATCHES}'), ('552','29431','8','{#DEVNAME}','{$VFS.DEV.DEVNAME.MATCHES}'), ('553','29431','9','{#DEVNAME}','{$VFS.DEV.DEVNAME.NOT_MATCHES}'), ('628','29703','8','{#QUEUE}','{$RABBITMQ.LLD.FILTER.QUEUE.MATCHES}'), ('629','29703','9','{#QUEUE}','{$RABBITMQ.LLD.FILTER.QUEUE.NOT_MATCHES}'), ('630','29703','8','{#NODE}','{$RABBITMQ.CLUSTER.NAME}@{HOST.NAME}'), ('631','29785','8','{#EXCHANGE}','{$RABBITMQ.LLD.FILTER.EXCHANGE.MATCHES}'), ('632','29785','9','{#EXCHANGE}','{$RABBITMQ.LLD.FILTER.EXCHANGE.NOT_MATCHES}'), ('633','29786','8','{#QUEUE}','{$RABBITMQ.LLD.FILTER.QUEUE.MATCHES}'), ('634','29786','9','{#QUEUE}','{$RABBITMQ.LLD.FILTER.QUEUE.NOT_MATCHES}'), ('635','29786','8','{#NODE}','{$RABBITMQ.CLUSTER.NAME}@{HOST.NAME}'), ('903','30026','8','{#EXCHANGE}','{$RABBITMQ.LLD.FILTER.EXCHANGE.MATCHES}'), ('904','30026','9','{#EXCHANGE}','{$RABBITMQ.LLD.FILTER.EXCHANGE.NOT_MATCHES}'), ('945','30193','8','{#SVNAME}','BACKEND'), ('946','30194','8','{#SVNAME}','FRONTEND'), ('947','30195','9','{#SVNAME}','FRONTEND|BACKEND'), ('948','30236','8','{#SVNAME}','BACKEND'), ('949','30237','8','{#SVNAME}','FRONTEND'), ('950','30238','9','{#SVNAME}','FRONTEND|BACKEND'), ('951','30338','8','{#DB}','{$REDIS.LLD.FILTER.DB.MATCHES}'), ('952','30338','9','{#DB}','{$REDIS.LLD.FILTER.DB.NOT_MATCHES}'), ('987','30571','8','{#NAME}','{$DOCKER.LLD.FILTER.CONTAINER.MATCHES}'), ('988','30571','9','{#NAME}','{$DOCKER.LLD.FILTER.CONTAINER.NOT_MATCHES}'), ('989','30572','8','{#NAME}','{$DOCKER.LLD.FILTER.IMAGE.MATCHES}'), ('990','30572','9','{#NAME}','{$DOCKER.LLD.FILTER.IMAGE.NOT_MATCHES}'), ('992','30686','9','{#SENSOR_READING_TYPE}','threshold'), ('993','30686','8','{#SENSOR_TYPE}','{$IPMI.SENSOR_TYPE.MATCHES}'), ('994','30686','9','{#SENSOR_TYPE}','{$IPMI.SENSOR_TYPE.NOT_MATCHES}'), ('995','30687','8','{#SENSOR_READING_TYPE}','threshold'), ('996','30687','8','{#SENSOR_TYPE}','{$IPMI.SENSOR_TYPE.MATCHES}'), ('997','30687','9','{#SENSOR_TYPE}','{$IPMI.SENSOR_TYPE.NOT_MATCHES}'), ('1004','30193','8','{#MODE}','http|tcp'), ('1005','30194','8','{#MODE}','http|tcp'), ('1006','30195','8','{#MODE}','http|tcp'), ('1013','30236','8','{#MODE}','http|tcp'), ('1014','30237','8','{#MODE}','http|tcp'), ('1015','30238','8','{#MODE}','http|tcp'), ('1016','30874','8','{#NAME}','{$CLICKHOUSE.LLD.FILTER.DICT.MATCHES}'), ('1017','30874','9','{#NAME}','{$CLICKHOUSE.LLD.FILTER.DICT.NOT_MATCHES}'), ('1018','30875','8','{#DB}','{$CLICKHOUSE.LLD.FILTER.DB.MATCHES}'), ('1019','30875','9','{#DB}','{$CLICKHOUSE.LLD.FILTER.DB.NOT_MATCHES}'), ('1020','30876','8','{#DB}','{$CLICKHOUSE.LLD.FILTER.DB.MATCHES}'), ('1021','30876','9','{#DB}','{$CLICKHOUSE.LLD.FILTER.DB.NOT_MATCHES}'), ('1022','30961','9','{#GRPC.CODE}','{$ETCD.GRPC_CODE.NOT_MATCHES}'), ('1023','30961','8','{#GRPC.CODE}','{$ETCD.GRPC_CODE.MATCHES}'), ('1024','31005','9','{#APPPOOL}','{$IIS.APPPOOL.NOT_MATCHES}'), ('1025','31005','8','{#APPPOOL}','{$IIS.APPPOOL.MATCHES}'), ('1026','31047','9','{#APPPOOL}','{$IIS.APPPOOL.NOT_MATCHES}'), ('1027','31047','8','{#APPPOOL}','{$IIS.APPPOOL.MATCHES}'), ('1028','31123','8','{#DBNAME}','{$MSSQL.DBNAME.MATCHES}'), ('1029','31123','9','{#DBNAME}','{$MSSQL.DBNAME.NOT_MATCHES}'), ('1030','31255','8','{#DBNAME}','{$ORACLE.DBNAME.MATCHES}'), ('1031','31255','9','{#DBNAME}','{$ORACLE.DBNAME.NOT_MATCHES}'), ('1032','31256','8','{#DBNAME}','{$ORACLE.DBNAME.MATCHES}'), ('1033','31256','9','{#DBNAME}','{$ORACLE.DBNAME.NOT_MATCHES}'), ('1034','31257','8','{#CON_NAME}','{$ORACLE.TABLESPACE.CONTAINER.MATCHES}'), ('1035','31257','9','{#CON_NAME}','{$ORACLE.TABLESPACE.CONTAINER.NOT_MATCHES}'), ('1036','31334','8','{#DBNAME}','{$PG.LLD.FILTER.DBNAME}'), ('1084','31558','8','{#IFTYPE}','^71$'), ('1085','31558','8','{#IFADMINSTATUS}','^1$'), ('1086','31559','8','{#IFTYPE}','^1$'), ('1087','31762','8','{#DBNAME}','{$ORACLE.DBNAME.MATCHES}'), ('1088','31762','9','{#DBNAME}','{$ORACLE.DBNAME.NOT_MATCHES}'), ('1089','31764','8','{#DBNAME}','{$ORACLE.DBNAME.MATCHES}'), ('1090','31764','9','{#DBNAME}','{$ORACLE.DBNAME.NOT_MATCHES}'), ('1091','31765','8','{#CON_NAME}','{$ORACLE.TABLESPACE.CONTAINER.MATCHES}'), ('1092','31765','9','{#CON_NAME}','{$ORACLE.TABLESPACE.CONTAINER.NOT_MATCHES}'), ('1148','32404','8','{#DBNAME}','{$PG.LLD.FILTER.DBNAME}'), ('1149','32435','8','{#IFTYPE}','^1$'), ('1150','32435','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('1151','31559','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('1152','32440','8','{#JMXBROKERNAME}','{$ACTIVEMQ.LLD.FILTER.BROKER.MATCHES}'), ('1153','32440','9','{#JMXBROKERNAME}','{$ACTIVEMQ.LLD.FILTER.BROKER.NOT_MATCHES}'), ('1154','32441','8','{#JMXDESTINATIONNAME}','{$ACTIVEMQ.LLD.FILTER.DESTINATION.MATCHES}'), ('1155','32441','9','{#JMXDESTINATIONNAME}','{$ACTIVEMQ.LLD.FILTER.DESTINATION.NOT_MATCHES}'), ('1156','32465','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}'), ('1157','32465','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}'), ('1158','32465','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}'), ('1159','32465','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}'), ('1160','32465','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}'), ('1161','32465','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}'), ('1162','32465','8','{#METRIC}','Battery voltage'), ('1163','32466','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}'), ('1164','32466','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}'), ('1165','32466','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}'), ('1166','32466','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}'), ('1167','32466','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}'), ('1168','32466','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}'), ('1169','32466','8','{#METRIC}','CO₂'), ('1170','32467','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}'), ('1171','32467','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}'), ('1172','32467','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}'), ('1173','32467','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}'), ('1174','32467','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}'), ('1175','32467','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}'), ('1176','32467','8','{#METRIC}','Current'), ('1177','32468','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}'), ('1178','32468','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}'), ('1179','32468','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}'), ('1180','32468','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}'), ('1181','32468','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}'), ('1182','32468','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}'), ('1183','32468','8','{#METRIC}','Differential Pressure'), ('1184','32469','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}'), ('1185','32469','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}'), ('1186','32469','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}'), ('1187','32469','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}'), ('1188','32469','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}'), ('1189','32469','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}'), ('1190','32469','8','{#METRIC}','Distance'), ('1191','32470','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}'), ('1192','32470','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}'), ('1193','32470','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}'), ('1194','32470','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}'), ('1195','32470','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}'), ('1196','32470','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}'), ('1197','32470','8','{#METRIC}','Humidity'), ('1198','32471','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}'), ('1199','32471','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}'), ('1200','32471','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}'), ('1201','32471','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}'), ('1202','32471','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}'), ('1203','32471','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}'), ('1204','32471','8','{#METRIC}','Illuminance'), ('1205','32472','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}'), ('1206','32472','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}'), ('1207','32472','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}'), ('1208','32472','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}'), ('1209','32472','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}'), ('1210','32472','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}'), ('1211','32472','8','{#METRIC}','Last update'), ('1212','32473','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}'), ('1213','32473','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}'), ('1214','32473','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}'), ('1215','32473','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}'), ('1216','32473','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}'), ('1217','32473','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}'), ('1218','32473','8','{#METRIC}','pH'), ('1219','32474','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}'), ('1220','32474','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}'), ('1221','32474','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}'), ('1222','32474','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}'), ('1223','32474','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}'), ('1224','32474','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}'), ('1225','32474','8','{#METRIC}','Pore Electrical Conductivity'), ('1226','32475','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}'), ('1227','32475','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}'), ('1228','32475','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}'), ('1229','32475','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}'), ('1230','32475','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}'), ('1231','32475','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}'), ('1232','32475','8','{#METRIC}','PPFD'), ('1233','32476','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}'), ('1234','32476','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}'), ('1235','32476','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}'), ('1236','32476','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}'), ('1237','32476','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}'), ('1238','32476','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}'), ('1239','32476','8','{#METRIC}','Atmospheric Pressure'), ('1240','32477','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}'), ('1241','32477','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}'), ('1242','32477','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}'), ('1243','32477','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}'), ('1244','32477','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}'), ('1245','32477','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}'), ('1246','32477','8','{#METRIC}','Pulses'), ('1247','32478','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}'), ('1248','32478','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}'), ('1249','32478','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}'), ('1250','32478','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}'), ('1251','32478','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}'), ('1252','32478','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}'), ('1253','32478','8','{#METRIC}','Pulses Cumulative'), ('1254','32479','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}'), ('1255','32479','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}'), ('1256','32479','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}'), ('1257','32479','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}'), ('1258','32479','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}'), ('1259','32479','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}'), ('1260','32479','8','{#METRIC}','RSSI'), ('1261','32480','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}'), ('1262','32480','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}'), ('1263','32480','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}'), ('1264','32480','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}'), ('1265','32480','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}'), ('1266','32480','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}'), ('1267','32480','8','{#METRIC}','Soil Dielectric Permittivity'), ('1268','32481','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}'), ('1269','32481','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}'), ('1270','32481','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}'), ('1271','32481','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}'), ('1272','32481','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}'), ('1273','32481','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}'), ('1274','32481','8','{#METRIC}','Soil Electrical Conductivity'), ('1275','32482','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}'), ('1276','32482','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}'), ('1277','32482','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}'), ('1278','32482','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}'), ('1279','32482','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}'), ('1280','32482','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}'), ('1281','32482','8','{#METRIC}','Temperature'), ('1282','32483','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}'), ('1283','32483','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}'), ('1284','32483','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}'), ('1285','32483','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}'), ('1286','32483','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}'), ('1287','32483','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}'), ('1288','32483','8','{#METRIC}','Voltage'), ('1289','32484','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}'), ('1290','32484','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}'), ('1291','32484','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}'), ('1292','32484','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}'), ('1293','32484','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}'), ('1294','32484','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}'), ('1295','32484','8','{#METRIC}','Volumetric Water Content'), ('1296','32485','8','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.MATCHES}'), ('1297','32485','9','{#SENSOR_NAME}','{$ARANET.LLD.FILTER.SENSOR_NAME.NOT_MATCHES}'), ('1298','32485','8','{#SENSOR_ID}','{$ARANET.LLD.FILTER.SENSOR_ID.MATCHES}'), ('1299','32485','8','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.MATCHES}'), ('1300','32485','9','{#GATEWAY_NAME}','{$ARANET.LLD.FILTER.GATEWAY_NAME.NOT_MATCHES}'), ('1301','32485','8','{#GATEWAY_ID}','{$ARANET.LLD.FILTER.GATEWAY_ID.MATCHES}'), ('1302','32485','8','{#METRIC}','Weight'), ('1303','32755','8','{#JMXTOPIC}','{$KAFKA.TOPIC.MATCHES}'), ('1304','32755','9','{#JMXTOPIC}','{$KAFKA.TOPIC.NOT_MATCHES}'), ('1305','32756','8','{#JMXTOPIC}','{$KAFKA.TOPIC.MATCHES}'), ('1306','32756','9','{#JMXTOPIC}','{$KAFKA.TOPIC.NOT_MATCHES}'), ('1307','32757','8','{#JMXTOPIC}','{$KAFKA.TOPIC.MATCHES}'), ('1308','32757','9','{#JMXTOPIC}','{$KAFKA.TOPIC.NOT_MATCHES}'), ('1309','32762','8','{#JMXATTR}','^name$'), ('1316','32868','8','{#STORAGE}','{$VAULT.LLD.FILTER.STORAGE.MATCHES}'), ('1317','32957','9','{#VM.DNS}','^$'), ('1318','33095','8','{#JMXKEYSPACE}','{$CASSANDRA.KEY_SPACE.MATCHES}'), ('1319','33095','9','{#JMXKEYSPACE}','{$CASSANDRA.KEY_SPACE.NOT_MATCHES}'), ('1320','33177','8','{#APPLICATION_NAME}','{$PG.LLD.FILTER.APPLICATION}'), ('1321','33182','8','{#SENSOR_TYPE}','3|4'), ('1322','33354','8','{#FSTYPE}','{$FAS3220.FS.TYPE.MATCHES}'), ('1323','33354','9','{#FSTYPE}','{$FAS3220.FS.TYPE.NOT_MATCHES}'), ('1324','33354','8','{#FSNAME}','{$FAS3220.FS.NAME.MATCHES}'), ('1325','33354','9','{#FSNAME}','{$FAS3220.FS.NAME.NOT_MATCHES}'), ('1326','33356','8','{#TYPE}','{$FAS3220.NET.PORT.TYPE.MATCHES}'), ('1327','33356','9','{#TYPE}','{$FAS3220.NET.PORT.TYPE.NOT_MATCHES}'), ('1328','33356','8','{#ROLE}','{$FAS3220.NET.PORT.ROLE.MATCHES}'), ('1329','33356','9','{#TYPE}','{$FAS3220.NET.PORT.ROLE.NOT_MATCHES}'), ('1330','33356','8','{#IFNAME}','{$FAS3220.NET.PORT.NAME.MATCHES}'), ('1331','33356','9','{#IFNAME}','{$FAS3220.NET.PORT.NAME.NOT_MATCHES}'), ('1332','33521','8','{#CHANNEL_ENABLED}','true'), ('1333','33542','8','{#JMXNAME}','{$IGNITE.LLD.FILTER.DATA.REGION.MATCHES}'), ('1334','33542','9','{#JMXNAME}','{$IGNITE.LLD.FILTER.DATA.REGION.NOT_MATCHES}'), ('1335','33549','8','{#JMXNAME}','{$IGNITE.LLD.FILTER.CACHE.MATCHES}'), ('1336','33549','9','{#JMXNAME}','{$IGNITE.LLD.FILTER.CACHE.NOT_MATCHES}'), ('1337','33550','8','{#JMXNAME}','{$IGNITE.LLD.FILTER.THREAD.POOL.MATCHES}'), ('1338','33550','9','{#JMXNAME}','{$IGNITE.LLD.FILTER.THREAD.POOL.NOT_MATCHES}'), ('1339','33551','8','{#JMXGROUP}','{$IGNITE.LLD.FILTER.CACHE.MATCHES}'), ('1340','33551','9','{#JMXGROUP}','{$IGNITE.LLD.FILTER.CACHE.NOT_MATCHES}'), ('1341','33620','8','{#SENSOR_LOCALE}','3'), ('1342','33634','8','{#SHAREPOINT.LLD.NAME}','{$SHAREPOINT.LLD.FILTER.NAME.MATCHES}'), ('1343','33634','9','{#SHAREPOINT.LLD.NAME}','{$SHAREPOINT.LLD.FILTER.NAME.NOT_MATCHES}'), ('1344','33634','8','{#SHAREPOINT.LLD.FULL_PATH}','{$SHAREPOINT.LLD.FILTER.FULL_PATH.MATCHES}'), ('1345','33634','9','{#SHAREPOINT.LLD.FULL_PATH}','{$SHAREPOINT.LLD.FILTER.FULL_PATH.NOT_MATCHES}'), ('1346','33634','8','{#SHAREPOINT.LLD.TYPE}','{$SHAREPOINT.LLD.FILTER.TYPE.MATCHES}'), ('1347','33634','9','{#SHAREPOINT.LLD.TYPE}','{$SHAREPOINT.LLD.FILTER.TYPE.NOT_MATCHES}'), ('1348','33808','8','{#DBNAME}','{$MONGODB.LLD.FILTER.DB.MATCHES}'), ('1349','33808','9','{#DBNAME}','{$MONGODB.LLD.FILTER.DB.NOT_MATCHES}'), ('1350','33808','8','{#COLLECTION}','{$MONGODB.LLD.FILTER.COLLECTION.MATCHES}'), ('1351','33808','9','{#COLLECTION}','{$MONGODB.LLD.FILTER.COLLECTION.NOT_MATCHES}'), ('1352','33809','8','{#DBNAME}','{$MONGODB.LLD.FILTER.DB.MATCHES}'), ('1353','33809','9','{#DBNAME}','{$MONGODB.LLD.FILTER.DB.NOT_MATCHES}'), ('1354','33921','8','{#DBNAME}','{$MONGODB.LLD.FILTER.DB.MATCHES}'), ('1355','33921','9','{#DBNAME}','{$MONGODB.LLD.FILTER.DB.NOT_MATCHES}'), ('1356','33921','8','{#COLLECTION}','{$MONGODB.LLD.FILTER.COLLECTION.MATCHES}'), ('1357','33921','9','{#COLLECTION}','{$MONGODB.LLD.FILTER.COLLECTION.NOT_MATCHES}'), ('1358','33922','8','{#DBNAME}','{$MONGODB.LLD.FILTER.DB.MATCHES}'), ('1359','33922','9','{#DBNAME}','{$MONGODB.LLD.FILTER.DB.NOT_MATCHES}'), ('1360','33959','8','{#ENT_SN}','.+'), ('1361','33959','8','{#ENT_CLASS}','[^3]'), ('1362','33962','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('1363','33962','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('1364','33962','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('1365','33962','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('1366','33962','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('1367','33962','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('1368','33962','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('1369','33962','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('1370','33962','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('1371','33962','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('1372','33962','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('1373','33962','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('1374','33963','8','{#IFOPERSTATUS}','1'), ('1375','33963','8','{#SNMPVALUE}','(2|3)'), ('1376','34000','8','{#ENT_SN}','.+'), ('1377','34000','8','{#ENT_CLASS}','[^3]'), ('1378','34003','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('1379','34003','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('1380','34003','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('1381','34003','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('1382','34003','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('1383','34003','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('1384','34003','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('1385','34003','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('1386','34003','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('1387','34003','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('1388','34003','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('1389','34003','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('1390','34004','8','{#IFOPERSTATUS}','1'), ('1391','34004','8','{#SNMPVALUE}','(2|3)'), ('1392','34041','8','{#ENT_SN}','.+'), ('1393','34041','8','{#ENT_CLASS}','[^3]'), ('1394','34044','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('1395','34044','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('1396','34044','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('1397','34044','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('1398','34044','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('1399','34044','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('1400','34044','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('1401','34044','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('1402','34044','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('1403','34044','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('1404','34044','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('1405','34044','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('1406','34045','8','{#IFOPERSTATUS}','1'), ('1407','34045','8','{#SNMPVALUE}','(2|3)'), ('1408','34082','8','{#ENT_SN}','.+'), ('1409','34082','8','{#ENT_CLASS}','[^3]'), ('1410','34085','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('1411','34085','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('1412','34085','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('1413','34085','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('1414','34085','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('1415','34085','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('1416','34085','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('1417','34085','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('1418','34085','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('1419','34085','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('1420','34085','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('1421','34085','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('1422','34086','8','{#IFOPERSTATUS}','1'), ('1423','34086','8','{#SNMPVALUE}','(2|3)'), ('1424','34123','8','{#ENT_SN}','.+'), ('1425','34123','8','{#ENT_CLASS}','[^3]'), ('1426','34126','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('1427','34126','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('1428','34126','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('1429','34126','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('1430','34126','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('1431','34126','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('1432','34126','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('1433','34126','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('1434','34126','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('1435','34126','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('1436','34126','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('1437','34126','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('1438','34127','8','{#IFOPERSTATUS}','1'), ('1439','34127','8','{#SNMPVALUE}','(2|3)'), ('1440','34161','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('1441','34161','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('1442','34161','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('1443','34161','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('1444','34161','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('1445','34161','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('1446','34161','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('1447','34161','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('1448','34161','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('1449','34161','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('1450','34161','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('1451','34161','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('1452','34162','8','{#FSTYPE}','{$VFS.FS.FSTYPE.MATCHES}'), ('1453','34162','9','{#FSTYPE}','{$VFS.FS.FSTYPE.NOT_MATCHES}'), ('1454','34162','8','{#FSNAME}','{$VFS.FS.FSNAME.MATCHES}'), ('1455','34162','9','{#FSNAME}','{$VFS.FS.FSNAME.NOT_MATCHES}'), ('1456','34163','8','{#MEMTYPE}','{$MEMORY.TYPE.MATCHES}'), ('1457','34163','9','{#MEMTYPE}','{$MEMORY.TYPE.NOT_MATCHES}'), ('1458','34163','8','{#MEMNAME}','{$MEMORY.NAME.MATCHES}'), ('1459','34163','9','{#MEMNAME}','{$MEMORY.NAME.NOT_MATCHES}'), ('1460','34208','9','{#CARTRIDGE_STATUS}','^$'), ('1461','34324','8','{#JOBNAME}','{$MSSQL.JOB.MATCHES}'), ('1462','34324','9','{#JOBNAME}','{$MSSQL.JOB.NOT_MATCHES}'), ('1463','34477','9','{#CARTRIDGE_STATUS}','^$'), ('1464','34525','9','{#CARTRIDGE_STATUS}','^$'), ('1465','34573','9','{#CARTRIDGE_STATUS}','^$'), ('1466','34621','9','{#CARTRIDGE_STATUS}','^$'), ('1467','34669','9','{#CARTRIDGE_STATUS}','^$'), ('1469','34765','9','{#CARTRIDGE_STATUS}','^$'), ('1470','34819','9','{#CARTRIDGE_STATUS}','^$'), ('1471','34867','9','{#CARTRIDGE_STATUS}','^$'), ('1472','34915','9','{#CARTRIDGE_STATUS}','^$'), ('1473','34942','8','{#DEPLOYMENT}','{$WILDFLY.DEPLOYMENT.MATCHES}'), ('1474','34942','9','{#DEPLOYMENT}','{$WILDFLY.DEPLOYMENT.NOT_MATCHES}'), ('1475','34943','8','{#SERVER}','{$WILDFLY.SERVER.MATCHES}'), ('1476','34943','9','{#SERVER}','{$WILDFLY.SERVER.NOT_MATCHES}'), ('1477','34966','8','{#DEPLOYMENT}','{$WILDFLY.DEPLOYMENT.MATCHES}'), ('1478','34966','9','{#DEPLOYMENT}','{$WILDFLY.DEPLOYMENT.NOT_MATCHES}'), ('1479','35042','9','{#CARTRIDGE_STATUS}','^$'), ('1480','35177','8','{#NAME}','{$NGINX.LLD.FILTER.HTTP.LOCATION.ZONE.MATCHES}'), ('1481','35177','9','{#NAME}','{$NGINX.LLD.FILTER.HTTP.LOCATION.ZONE.NOT_MATCHES}'), ('1482','35178','8','{#NAME}','{$NGINX.LLD.FILTER.HTTP.ZONE.MATCHES}'), ('1483','35178','9','{#NAME}','{$NGINX.LLD.FILTER.HTTP.ZONE.NOT_MATCHES}'), ('1484','35179','8','{#UPSTREAM}','{$NGINX.LLD.FILTER.HTTP.UPSTREAM.MATCHES}'), ('1485','35179','9','{#UPSTREAM}','{$NGINX.LLD.FILTER.HTTP.UPSTREAM.NOT_MATCHES}'), ('1486','35180','8','{#NAME}','{$NGINX.LLD.FILTER.HTTP.UPSTREAM.MATCHES}'), ('1487','35180','9','{#NAME}','{$NGINX.LLD.FILTER.HTTP.UPSTREAM.NOT_MATCHES}'), ('1488','35181','8','{#NAME}','{$NGINX.LLD.FILTER.RESOLVER.MATCHES}'), ('1489','35181','9','{#NAME}','{$NGINX.LLD.FILTER.RESOLVER.NOT_MATCHES}'), ('1490','35182','8','{#NAME}','{$NGINX.LLD.FILTER.STREAM.ZONE.MATCHES}'), ('1491','35182','9','{#NAME}','{$NGINX.LLD.FILTER.STREAM.ZONE.NOT_MATCHES}'), ('1492','35183','8','{#UPSTREAM}','{$NGINX.LLD.FILTER.STREAM.UPSTREAM.MATCHES}'), ('1493','35183','9','{#UPSTREAM}','{$NGINX.LLD.FILTER.STREAM.UPSTREAM.NOT_MATCHES}'), ('1494','35184','8','{#NAME}','{$NGINX.LLD.FILTER.STREAM.UPSTREAM.MATCHES}'), ('1495','35184','9','{#NAME}','{$NGINX.LLD.FILTER.STREAM.UPSTREAM.NOT_MATCHES}'), ('1496','35262','8','{#UNIT.ACTIVESTATE}','{$SYSTEMD.ACTIVESTATE.SERVICE.MATCHES}'), ('1497','35262','9','{#UNIT.ACTIVESTATE}','{$SYSTEMD.ACTIVESTATE.SERVICE.NOT_MATCHES}'), ('1498','35262','8','{#UNIT.UNITFILESTATE}','{$SYSTEMD.UNITFILESTATE.SERVICE.MATCHES}'), ('1499','35262','9','{#UNIT.UNITFILESTATE}','{$SYSTEMD.UNITFILESTATE.SERVICE.NOT_MATCHES}'), ('1500','35262','9','{#UNIT.NAME}','{$SYSTEMD.NAME.SERVICE.NOT_MATCHES}'), ('1501','35262','8','{#UNIT.NAME}','{$SYSTEMD.NAME.SERVICE.MATCHES}'), ('1502','35263','8','{#UNIT.ACTIVESTATE}','{$SYSTEMD.ACTIVESTATE.SOCKET.MATCHES}'), ('1503','35263','9','{#UNIT.ACTIVESTATE}','{$SYSTEMD.ACTIVESTATE.SOCKET.NOT_MATCHES}'), ('1504','35263','8','{#UNIT.UNITFILESTATE}','{$SYSTEMD.UNITFILESTATE.SOCKET.MATCHES}'), ('1505','35263','9','{#UNIT.UNITFILESTATE}','{$SYSTEMD.UNITFILESTATE.SOCKET.NOT_MATCHES}'), ('1506','35263','9','{#UNIT.NAME}','{$SYSTEMD.NAME.SOCKET.NOT_MATCHES}'), ('1507','35263','8','{#UNIT.NAME}','{$SYSTEMD.NAME.SOCKET.MATCHES}'), ('1508','35280','8','{#JMXNAME}','{$GRIDGAIN.LLD.FILTER.DATA.REGION.MATCHES}'), ('1509','35280','9','{#JMXNAME}','{$GRIDGAIN.LLD.FILTER.DATA.REGION.NOT_MATCHES}'), ('1510','35287','8','{#JMXNAME}','{$GRIDGAIN.LLD.FILTER.CACHE.MATCHES}'), ('1511','35287','9','{#JMXNAME}','{$GRIDGAIN.LLD.FILTER.CACHE.NOT_MATCHES}'), ('1512','35288','8','{#JMXNAME}','{$GRIDGAIN.LLD.FILTER.THREAD.POOL.MATCHES}'), ('1513','35288','9','{#JMXNAME}','{$GRIDGAIN.LLD.FILTER.THREAD.POOL.NOT_MATCHES}'), ('1514','35289','8','{#JMXGROUP}','{$GRIDGAIN.LLD.FILTER.CACHE.MATCHES}'), ('1515','35289','9','{#JMXGROUP}','{$GRIDGAIN.LLD.FILTER.CACHE.NOT_MATCHES}'), ('1516','35366','8','{#CISCO.IF.NAME}','{$CISCO.LLD.FILTER.IF.NAME.MATCHES}'), ('1517','35366','9','{#CISCO.IF.NAME}','{$CISCO.LLD.FILTER.IF.NAME.NOT_MATCHES}'), ('1518','35366','8','{#CISCO.IF.STATUS.ADMIN}','{$CISCO.LLD.FILTER.IF.ADMIN.MATCHES}'), ('1519','35366','9','{#CISCO.IF.STATUS.ADMIN}','{$CISCO.LLD.FILTER.IF.ADMIN.NOT_MATCHES}'), ('1520','35366','8','{#CISCO.IF.DESC}','{$CISCO.LLD.FILTER.IF.DESC.MATCHES}'), ('1521','35366','9','{#CISCO.IF.DESC}','{$CISCO.LLD.FILTER.IF.DESC.NOT_MATCHES}'), ('1522','35432','8','{#PART.NAME}','{$BIGIP.LLD.FILTER.PART.NAME.MATCHES}'), ('1523','35432','9','{#PART.NAME}','{$BIGIP.LLD.FILTER.PART.NAME.NOT_MATCHES}'), ('1524','35542','8','{#ZYXEL.IF.LINKSTATUS}','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.MATCHES}'), ('1525','35542','9','{#ZYXEL.IF.LINKSTATUS}','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.NOT_MATCHES}'), ('1526','35542','8','{#ZYXEL.IF.NAME}','adsl'), ('1527','35543','8','{#ZYXEL.IF.LINKSTATUS}','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.MATCHES}'), ('1528','35543','9','{#ZYXEL.IF.LINKSTATUS}','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.NOT_MATCHES}'), ('1529','35543','8','{#ZYXEL.IF.NAME}','enet'), ('1530','35575','8','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}'), ('1531','35575','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}'), ('1532','35575','8','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}'), ('1533','35575','9','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}'), ('1534','35576','8','{#ZYXEL.SFP.DESCRIPTION}','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.MATCHES}'), ('1535','35576','9','{#ZYXEL.SFP.DESCRIPTION}','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.NOT_MATCHES}'), ('1536','35577','8','{#ZYXEL.SFP.STATUS}','{$ZYXEL.LLD.FILTER.SFP.STATUS.MATCHES}'), ('1537','35577','9','{#ZYXEL.SFP.STATUS}','{$ZYXEL.LLD.FILTER.SFP.STATUS.NOT_MATCHES}'), ('1538','35619','8','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}'), ('1539','35619','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}'), ('1540','35619','8','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}'), ('1541','35619','9','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}'), ('1542','35653','8','{#ZYXEL.IF.DESC}','{$ZYXEL.LLD.FILTER.IF.DESC.MATCHES}'), ('1543','35653','9','{#ZYXEL.IF.DESC}','{$ZYXEL.LLD.FILTER.IF.DESC.NOT_MATCHES}'), ('1544','35653','8','{#ZYXEL.IF.LINKSTATUS}','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.MATCHES}'), ('1545','35653','9','{#ZYXEL.IF.LINKSTATUS}','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.NOT_MATCHES}'), ('1546','35653','8','{#ZYXEL.IF.NAME}','adsl'), ('1547','35654','8','{#ZYXEL.IF.DESC}','{$ZYXEL.LLD.FILTER.IF.DESC.MATCHES}'), ('1548','35654','9','{#ZYXEL.IF.DESC}','{$ZYXEL.LLD.FILTER.IF.DESC.NOT_MATCHES}'), ('1549','35654','8','{#ZYXEL.IF.LINKSTATUS}','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.MATCHES}'), ('1550','35654','9','{#ZYXEL.IF.LINKSTATUS}','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.NOT_MATCHES}'), ('1551','35654','8','{#ZYXEL.IF.NAME}','enet'), ('1552','35655','8','{#ZYXEL.SLOTSTATUS}','{$ZYXEL.LLD.FILTER.SLOT.STATUS.MATCHES}'), ('1553','35655','9','{#ZYXEL.SLOTSTATUS}','{$ZYXEL.LLD.FILTER.SLOT.STATUS.NOT_MATCHES}'), ('1554','35720','8','{#ZYXEL.IF.DESC}','{$ZYXEL.LLD.FILTER.IF.DESC.MATCHES}'), ('1555','35720','9','{#ZYXEL.IF.DESC}','{$ZYXEL.LLD.FILTER.IF.DESC.NOT_MATCHES}'), ('1556','35720','8','{#ZYXEL.IF.LINKSTATUS}','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.MATCHES}'), ('1557','35720','9','{#ZYXEL.IF.LINKSTATUS}','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.NOT_MATCHES}'), ('1558','35720','8','{#ZYXEL.IF.NAME}','adsl'), ('1559','35721','8','{#ZYXEL.IF.DESC}','{$ZYXEL.LLD.FILTER.IF.DESC.MATCHES}'), ('1560','35721','9','{#ZYXEL.IF.DESC}','{$ZYXEL.LLD.FILTER.IF.DESC.NOT_MATCHES}'), ('1561','35721','8','{#ZYXEL.IF.LINKSTATUS}','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.MATCHES}'), ('1562','35721','9','{#ZYXEL.IF.LINKSTATUS}','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.NOT_MATCHES}'), ('1563','35721','8','{#ZYXEL.IF.NAME}','enet'), ('1564','35722','8','{#ZYXEL.SLOTSTATUS}','{$ZYXEL.LLD.FILTER.SLOT.STATUS.MATCHES}'), ('1565','35722','9','{#ZYXEL.SLOTSTATUS}','{$ZYXEL.LLD.FILTER.SLOT.STATUS.NOT_MATCHES}'), ('1566','35787','8','{#ZYXEL.IF.LINKSTATUS}','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.MATCHES}'), ('1567','35787','9','{#ZYXEL.IF.LINKSTATUS}','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.NOT_MATCHES}'), ('1568','35787','8','{#ZYXEL.IF.NAME}','adsl'), ('1569','35788','8','{#ZYXEL.IF.LINKSTATUS}','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.MATCHES}'), ('1570','35788','9','{#ZYXEL.IF.LINKSTATUS}','{$ZYXEL.LLD.FILTER.IF.LINKSTATUS.NOT_MATCHES}'), ('1571','35788','8','{#ZYXEL.IF.NAME}','enet'), ('1572','35820','8','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}'), ('1573','35820','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}'), ('1574','35820','8','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}'), ('1575','35820','9','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}'), ('1576','35821','8','{#ZYXEL.SFP.DESCRIPTION}','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.MATCHES}'), ('1577','35821','9','{#ZYXEL.SFP.DESCRIPTION}','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.NOT_MATCHES}'), ('1578','35822','8','{#ZYXEL.SFP.STATUS}','{$ZYXEL.LLD.FILTER.SFP.STATUS.MATCHES}'), ('1579','35822','9','{#ZYXEL.SFP.STATUS}','{$ZYXEL.LLD.FILTER.SFP.STATUS.NOT_MATCHES}'), ('1580','35859','8','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}'), ('1581','35859','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}'), ('1582','35859','8','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}'), ('1583','35859','9','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}'), ('1584','35860','8','{#ZYXEL.SFP.DESCRIPTION}','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.MATCHES}'), ('1585','35860','9','{#ZYXEL.SFP.DESCRIPTION}','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.NOT_MATCHES}'), ('1586','35861','8','{#ZYXEL.SFP.STATUS}','{$ZYXEL.LLD.FILTER.SFP.STATUS.MATCHES}'), ('1587','35861','9','{#ZYXEL.SFP.STATUS}','{$ZYXEL.LLD.FILTER.SFP.STATUS.NOT_MATCHES}'), ('1588','35903','8','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}'), ('1589','35903','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}'), ('1590','35903','8','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}'), ('1591','35903','9','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}'), ('1592','35904','8','{#ZYXEL.SFP.DESCRIPTION}','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.MATCHES}'), ('1593','35904','9','{#ZYXEL.SFP.DESCRIPTION}','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.NOT_MATCHES}'), ('1594','35905','8','{#ZYXEL.SFP.STATUS}','{$ZYXEL.LLD.FILTER.SFP.STATUS.MATCHES}'), ('1595','35905','9','{#ZYXEL.SFP.STATUS}','{$ZYXEL.LLD.FILTER.SFP.STATUS.NOT_MATCHES}'), ('1596','35947','8','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}'), ('1597','35947','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}'), ('1598','35947','8','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}'), ('1599','35947','9','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}'), ('1600','35948','8','{#ZYXEL.SFP.DESCRIPTION}','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.MATCHES}'), ('1601','35948','9','{#ZYXEL.SFP.DESCRIPTION}','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.NOT_MATCHES}'), ('1602','35949','8','{#ZYXEL.SFP.STATUS}','{$ZYXEL.LLD.FILTER.SFP.STATUS.MATCHES}'), ('1603','35949','9','{#ZYXEL.SFP.STATUS}','{$ZYXEL.LLD.FILTER.SFP.STATUS.NOT_MATCHES}'), ('1604','35991','8','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}'), ('1605','35991','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}'), ('1606','35991','8','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}'), ('1607','35991','9','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}'), ('1608','35992','8','{#ZYXEL.SFP.DESCRIPTION}','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.MATCHES}'), ('1609','35992','9','{#ZYXEL.SFP.DESCRIPTION}','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.NOT_MATCHES}'), ('1610','35993','8','{#ZYXEL.SFP.STATUS}','{$ZYXEL.LLD.FILTER.SFP.STATUS.MATCHES}'), ('1611','35993','9','{#ZYXEL.SFP.STATUS}','{$ZYXEL.LLD.FILTER.SFP.STATUS.NOT_MATCHES}'), ('1612','36036','8','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}'), ('1613','36036','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}'), ('1614','36036','8','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}'), ('1615','36036','9','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}'), ('1616','36037','8','{#ZYXEL.SFP.DESCRIPTION}','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.MATCHES}'), ('1617','36037','9','{#ZYXEL.SFP.DESCRIPTION}','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.NOT_MATCHES}'), ('1618','36038','8','{#ZYXEL.SFP.STATUS}','{$ZYXEL.LLD.FILTER.SFP.STATUS.MATCHES}'), ('1619','36038','9','{#ZYXEL.SFP.STATUS}','{$ZYXEL.LLD.FILTER.SFP.STATUS.NOT_MATCHES}'), ('1620','36081','8','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}'), ('1621','36081','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}'), ('1622','36081','8','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}'), ('1623','36081','9','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}'), ('1624','36082','8','{#ZYXEL.SFP.DESCRIPTION}','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.MATCHES}'), ('1625','36082','9','{#ZYXEL.SFP.DESCRIPTION}','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.NOT_MATCHES}'), ('1626','36083','8','{#ZYXEL.SFP.STATUS}','{$ZYXEL.LLD.FILTER.SFP.STATUS.MATCHES}'), ('1627','36083','9','{#ZYXEL.SFP.STATUS}','{$ZYXEL.LLD.FILTER.SFP.STATUS.NOT_MATCHES}'), ('1628','36126','8','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.MATCHES}'), ('1629','36126','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.NAME.NOT_MATCHES}'), ('1630','36126','8','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.MATCHES}'), ('1631','36126','9','{#ZYXEL.IF.LINKUPTYPE}','{$ZYXEL.LLD.FILTER.IF.LINKUPTYPE.NOT_MATCHES}'), ('1632','36127','8','{#ZYXEL.SFP.DESCRIPTION}','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.MATCHES}'), ('1633','36127','9','{#ZYXEL.SFP.DESCRIPTION}','{$ZYXEL.LLD.FILTER.SFPDDM.DESC.NOT_MATCHES}'), ('1634','36128','8','{#ZYXEL.SFP.STATUS}','{$ZYXEL.LLD.FILTER.SFP.STATUS.MATCHES}'), ('1635','36128','9','{#ZYXEL.SFP.STATUS}','{$ZYXEL.LLD.FILTER.SFP.STATUS.NOT_MATCHES}'), ('1636','36171','8','{#IFADMINSTATUS}','{$NET.IFADMINSTATUS.MATCHES}'), ('1637','36171','9','{#IFADMINSTATUS}','{$NET.IFADMINSTATUS.NOT_MATCHES}'), ('1638','36171','8','{#IFOPERSTATUS}','{$NET.IFOPERSTATUS.MATCHES}'), ('1639','36171','9','{#IFOPERSTATUS}','{$NET.IFOPERSTATUS.NOT_MATCHES}'), ('1640','36171','8','{#IFNAME}','{$NET.IFNAME.MATCHES}'), ('1641','36171','9','{#IFNAME}','{$NET.IFNAME.NOT_MATCHES}'), ('1642','36171','8','{#IFDESCR}','{$NET.IFDESCR.MATCHES}'), ('1643','36171','9','{#IFDESCR}','{$NET.IFDESCR.NOT_MATCHES}'), ('1644','36171','8','{#IFALIAS}','{$NET.IFALIAS.MATCHES}'), ('1645','36171','9','{#IFALIAS}','{$NET.IFALIAS.NOT_MATCHES}'), ('1646','36171','8','{#IFTYPE}','{$NET.IFTYPE.MATCHES}'), ('1647','36171','9','{#IFTYPE}','{$NET.IFTYPE.NOT_MATCHES}'), ('1648','36270','8','{#TYPE}','3'), ('1649','36352','8','{#TYPE}','3'), ('1650','36434','8','{#TYPE}','3'), ('1651','36516','8','{#TYPE}','3'), ('1652','36559','8','{#SNMPINDEX}',E'0\\.1'), ('1653','36559','8','{#SENSOR_LOCALE}','11'), ('1654','36560','8','{#SENSOR_LOCALE}','6'), ('1655','36561','8','{#SENSOR_LOCALE}','(4|8|9|12|13)'), ('1656','36562','8','{#SENSOR_LOCALE}','5'), ('1657','36563','8','{#SENSOR_LOCALE}','7'), ('1658','36564','8','{#SENSOR_LOCALE}','10'), ('1659','36565','8','{#SENSOR_LOCALE}','3'), ('1660','36616','8','{#SNMPINDEX}',E'0\\.1'), ('1661','36616','8','{#SENSOR_LOCALE}','11'), ('1662','36617','8','{#SENSOR_LOCALE}','6'), ('1663','36618','8','{#SENSOR_LOCALE}','(4|8|9|12|13)'), ('1664','36619','8','{#SENSOR_LOCALE}','5'), ('1665','36620','8','{#SENSOR_LOCALE}','7'), ('1666','36621','8','{#SENSOR_LOCALE}','10'), ('1667','36622','8','{#SENSOR_LOCALE}','3'), ('1668','36673','8','{#SNMPINDEX}',E'0\\.1'), ('1669','36673','8','{#SENSOR_LOCALE}','11'), ('1670','36674','8','{#SENSOR_LOCALE}','6'), ('1671','36675','8','{#SENSOR_LOCALE}','(4|8|9|12|13)'), ('1672','36676','8','{#SENSOR_LOCALE}','5'), ('1673','36677','8','{#SENSOR_LOCALE}','7'), ('1674','36678','8','{#SENSOR_LOCALE}','10'), ('1675','36679','8','{#SENSOR_LOCALE}','3'), ('1676','36730','8','{#SNMPINDEX}',E'0\\.1'), ('1677','36730','8','{#SENSOR_LOCALE}','11'), ('1678','36731','8','{#SENSOR_LOCALE}','6'), ('1679','36732','8','{#SENSOR_LOCALE}','(4|8|9|12|13)'), ('1680','36733','8','{#SENSOR_LOCALE}','5'), ('1681','36734','8','{#SENSOR_LOCALE}','7'), ('1682','36735','8','{#SENSOR_LOCALE}','10'), ('1683','36736','8','{#SENSOR_LOCALE}','3'), ('1684','36813','9','{#ORG_NAME}','{$INFLUXDB.ORG_NAME.NOT_MATCHES}'), ('1685','36813','8','{#ORG_NAME}','{$INFLUXDB.ORG_NAME.MATCHES}'), ('1698','36857','8','{#IFTYPE}','^1$'), ('1699','36857','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('1700','36858','8','{#IFTYPE}','^71$'), ('1701','36858','8','{#IFADMINSTATUS}','^1$'), ('1702','36859','8','{#IFTYPE}','^1$'), ('1703','36859','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('1704','36860','8','{#STORAGE_TYPE}','.+4$'), ('1705','36860','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('1718','36911','8','{#IFTYPE}','^1$'), ('1719','36911','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('1720','36912','8','{#IFTYPE}','^71$'), ('1721','36912','8','{#IFADMINSTATUS}','^1$'), ('1722','36913','8','{#IFTYPE}','^1$'), ('1723','36913','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('1724','36914','8','{#STORAGE_TYPE}','.+4$'), ('1725','36914','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('1738','36965','8','{#IFTYPE}','^1$'), ('1739','36965','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('1740','36966','8','{#IFTYPE}','^71$'), ('1741','36966','8','{#IFADMINSTATUS}','^1$'), ('1742','36967','8','{#IFTYPE}','^1$'), ('1743','36967','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('1744','36968','8','{#STORAGE_TYPE}','.+4$'), ('1745','36968','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('1758','37019','8','{#IFTYPE}','^1$'), ('1759','37019','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('1760','37020','8','{#IFTYPE}','^71$'), ('1761','37020','8','{#IFADMINSTATUS}','^1$'), ('1762','37021','8','{#IFTYPE}','^1$'), ('1763','37021','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('1764','37022','8','{#STORAGE_TYPE}','.+4$'), ('1765','37022','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('1778','37073','8','{#IFTYPE}','^1$'), ('1779','37073','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('1780','37074','8','{#IFTYPE}','^71$'), ('1781','37074','8','{#IFADMINSTATUS}','^1$'), ('1782','37075','8','{#IFTYPE}','^1$'), ('1783','37075','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('1784','37076','8','{#STORAGE_TYPE}','.+4$'), ('1785','37076','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('1798','37127','8','{#IFTYPE}','^1$'), ('1799','37127','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('1800','37128','8','{#IFTYPE}','^71$'), ('1801','37128','8','{#IFADMINSTATUS}','^1$'), ('1802','37129','8','{#IFTYPE}','^1$'), ('1803','37129','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('1804','37130','8','{#STORAGE_TYPE}','.+4$'), ('1805','37130','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('1818','37181','8','{#IFTYPE}','^1$'), ('1819','37181','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('1820','37182','8','{#IFTYPE}','^71$'), ('1821','37182','8','{#IFADMINSTATUS}','^1$'), ('1822','37183','8','{#IFTYPE}','^1$'), ('1823','37183','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('1824','37184','8','{#STORAGE_TYPE}','.+4$'), ('1825','37184','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('1838','37235','8','{#IFTYPE}','^1$'), ('1839','37235','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('1840','37236','8','{#IFTYPE}','^71$'), ('1841','37236','8','{#IFADMINSTATUS}','^1$'), ('1842','37237','8','{#IFTYPE}','^1$'), ('1843','37237','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('1844','37238','8','{#STORAGE_TYPE}','.+4$'), ('1845','37238','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('1858','37289','8','{#IFTYPE}','^1$'), ('1859','37289','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('1860','37290','8','{#IFTYPE}','^71$'), ('1861','37290','8','{#IFADMINSTATUS}','^1$'), ('1862','37291','8','{#IFTYPE}','^1$'), ('1863','37291','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('1864','37292','8','{#STORAGE_TYPE}','.+4$'), ('1865','37292','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('1878','37343','8','{#IFTYPE}','^1$'), ('1879','37343','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('1880','37344','8','{#IFTYPE}','^71$'), ('1881','37344','8','{#IFADMINSTATUS}','^1$'), ('1882','37345','8','{#IFTYPE}','^1$'), ('1883','37345','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('1884','37346','8','{#STORAGE_TYPE}','.+4$'), ('1885','37346','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('1898','37397','8','{#IFTYPE}','^1$'), ('1899','37397','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('1900','37398','8','{#IFTYPE}','^71$'), ('1901','37398','8','{#IFADMINSTATUS}','^1$'), ('1902','37399','8','{#IFTYPE}','^1$'), ('1903','37399','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('1904','37400','8','{#STORAGE_TYPE}','.+4$'), ('1905','37400','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('1918','37451','8','{#IFTYPE}','^1$'), ('1919','37451','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('1920','37452','8','{#IFTYPE}','^71$'), ('1921','37452','8','{#IFADMINSTATUS}','^1$'), ('1922','37453','8','{#IFTYPE}','^1$'), ('1923','37453','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('1924','37454','8','{#STORAGE_TYPE}','.+4$'), ('1925','37454','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('1938','37505','8','{#IFTYPE}','^1$'), ('1939','37505','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('1940','37506','8','{#IFTYPE}','^71$'), ('1941','37506','8','{#IFADMINSTATUS}','^1$'), ('1942','37507','8','{#IFTYPE}','^1$'), ('1943','37507','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('1944','37508','8','{#STORAGE_TYPE}','.+4$'), ('1945','37508','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('1958','37559','8','{#IFTYPE}','^1$'), ('1959','37559','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('1960','37560','8','{#IFTYPE}','^71$'), ('1961','37560','8','{#IFADMINSTATUS}','^1$'), ('1962','37561','8','{#IFTYPE}','^1$'), ('1963','37561','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('1964','37562','8','{#STORAGE_TYPE}','.+4$'), ('1965','37562','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('1978','37613','8','{#IFTYPE}','^1$'), ('1979','37613','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('1980','37614','8','{#IFTYPE}','^71$'), ('1981','37614','8','{#IFADMINSTATUS}','^1$'), ('1982','37615','8','{#IFTYPE}','^1$'), ('1983','37615','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('1984','37616','8','{#STORAGE_TYPE}','.+4$'), ('1985','37616','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('1998','37667','8','{#IFTYPE}','^1$'), ('1999','37667','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2000','37668','8','{#IFTYPE}','^71$'), ('2001','37668','8','{#IFADMINSTATUS}','^1$'), ('2002','37669','8','{#IFTYPE}','^1$'), ('2003','37669','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2004','37670','8','{#STORAGE_TYPE}','.+4$'), ('2005','37670','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2018','37721','8','{#IFTYPE}','^1$'), ('2019','37721','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2020','37722','8','{#IFTYPE}','^71$'), ('2021','37722','8','{#IFADMINSTATUS}','^1$'), ('2022','37723','8','{#IFTYPE}','^1$'), ('2023','37723','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2024','37724','8','{#STORAGE_TYPE}','.+4$'), ('2025','37724','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2038','37775','8','{#IFTYPE}','^1$'), ('2039','37775','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2040','37776','8','{#IFTYPE}','^71$'), ('2041','37776','8','{#IFADMINSTATUS}','^1$'), ('2042','37777','8','{#IFTYPE}','^1$'), ('2043','37777','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2044','37778','8','{#STORAGE_TYPE}','.+4$'), ('2045','37778','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2058','37829','8','{#IFTYPE}','^1$'), ('2059','37829','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2060','37830','8','{#IFTYPE}','^71$'), ('2061','37830','8','{#IFADMINSTATUS}','^1$'), ('2062','37831','8','{#IFTYPE}','^1$'), ('2063','37831','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2064','37832','8','{#STORAGE_TYPE}','.+4$'), ('2065','37832','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2078','37883','8','{#IFTYPE}','^1$'), ('2079','37883','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2080','37884','8','{#IFTYPE}','^71$'), ('2081','37884','8','{#IFADMINSTATUS}','^1$'), ('2082','37885','8','{#IFTYPE}','^1$'), ('2083','37885','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2084','37886','8','{#STORAGE_TYPE}','.+4$'), ('2085','37886','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2098','37937','8','{#IFTYPE}','^1$'), ('2099','37937','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2100','37938','8','{#IFTYPE}','^71$'), ('2101','37938','8','{#IFADMINSTATUS}','^1$'), ('2102','37939','8','{#IFTYPE}','^1$'), ('2103','37939','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2104','37940','8','{#STORAGE_TYPE}','.+4$'), ('2105','37940','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2118','37991','8','{#IFTYPE}','^1$'), ('2119','37991','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2120','37992','8','{#IFTYPE}','^71$'), ('2121','37992','8','{#IFADMINSTATUS}','^1$'), ('2122','37993','8','{#IFTYPE}','^1$'), ('2123','37993','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2124','37994','8','{#STORAGE_TYPE}','.+4$'), ('2125','37994','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2138','38045','8','{#IFTYPE}','^1$'), ('2139','38045','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2140','38046','8','{#IFTYPE}','^71$'), ('2141','38046','8','{#IFADMINSTATUS}','^1$'), ('2142','38047','8','{#IFTYPE}','^1$'), ('2143','38047','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2144','38048','8','{#STORAGE_TYPE}','.+4$'), ('2145','38048','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2158','38099','8','{#IFTYPE}','^1$'), ('2159','38099','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2160','38100','8','{#IFTYPE}','^71$'), ('2161','38100','8','{#IFADMINSTATUS}','^1$'), ('2162','38101','8','{#IFTYPE}','^1$'), ('2163','38101','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2164','38102','8','{#STORAGE_TYPE}','.+4$'), ('2165','38102','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2178','38153','8','{#IFTYPE}','^1$'), ('2179','38153','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2180','38154','8','{#IFTYPE}','^71$'), ('2181','38154','8','{#IFADMINSTATUS}','^1$'), ('2182','38155','8','{#IFTYPE}','^1$'), ('2183','38155','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2184','38156','8','{#STORAGE_TYPE}','.+4$'), ('2185','38156','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2198','38207','8','{#IFTYPE}','^1$'), ('2199','38207','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2200','38208','8','{#IFTYPE}','^71$'), ('2201','38208','8','{#IFADMINSTATUS}','^1$'), ('2202','38209','8','{#IFTYPE}','^1$'), ('2203','38209','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2204','38210','8','{#STORAGE_TYPE}','.+4$'), ('2205','38210','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2218','38261','8','{#IFTYPE}','^1$'), ('2219','38261','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2220','38262','8','{#IFTYPE}','^71$'), ('2221','38262','8','{#IFADMINSTATUS}','^1$'), ('2222','38263','8','{#IFTYPE}','^1$'), ('2223','38263','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2224','38264','8','{#STORAGE_TYPE}','.+4$'), ('2225','38264','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2238','38315','8','{#IFTYPE}','^1$'), ('2239','38315','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2240','38316','8','{#IFTYPE}','^71$'), ('2241','38316','8','{#IFADMINSTATUS}','^1$'), ('2242','38317','8','{#IFTYPE}','^1$'), ('2243','38317','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2244','38318','8','{#STORAGE_TYPE}','.+4$'), ('2245','38318','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2258','38369','8','{#IFTYPE}','^1$'), ('2259','38369','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2260','38370','8','{#IFTYPE}','^71$'), ('2261','38370','8','{#IFADMINSTATUS}','^1$'), ('2262','38371','8','{#IFTYPE}','^1$'), ('2263','38371','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2264','38372','8','{#STORAGE_TYPE}','.+4$'), ('2265','38372','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2278','38423','8','{#IFTYPE}','^1$'), ('2279','38423','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2280','38424','8','{#IFTYPE}','^71$'), ('2281','38424','8','{#IFADMINSTATUS}','^1$'), ('2282','38425','8','{#IFTYPE}','^1$'), ('2283','38425','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2284','38426','8','{#STORAGE_TYPE}','.+4$'), ('2285','38426','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2298','38477','8','{#IFTYPE}','^1$'), ('2299','38477','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2300','38478','8','{#IFTYPE}','^71$'), ('2301','38478','8','{#IFADMINSTATUS}','^1$'), ('2302','38479','8','{#IFTYPE}','^1$'), ('2303','38479','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2304','38480','8','{#STORAGE_TYPE}','.+4$'), ('2305','38480','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2318','38531','8','{#IFTYPE}','^1$'), ('2319','38531','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2320','38532','8','{#IFTYPE}','^71$'), ('2321','38532','8','{#IFADMINSTATUS}','^1$'), ('2322','38533','8','{#IFTYPE}','^1$'), ('2323','38533','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2324','38534','8','{#STORAGE_TYPE}','.+4$'), ('2325','38534','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2338','38585','8','{#IFTYPE}','^1$'), ('2339','38585','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2340','38586','8','{#IFTYPE}','^71$'), ('2341','38586','8','{#IFADMINSTATUS}','^1$'), ('2342','38587','8','{#IFTYPE}','^1$'), ('2343','38587','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2344','38588','8','{#STORAGE_TYPE}','.+4$'), ('2345','38588','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2358','38639','8','{#IFTYPE}','^1$'), ('2359','38639','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2360','38640','8','{#IFTYPE}','^71$'), ('2361','38640','8','{#IFADMINSTATUS}','^1$'), ('2362','38641','8','{#IFTYPE}','^1$'), ('2363','38641','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2364','38642','8','{#STORAGE_TYPE}','.+4$'), ('2365','38642','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2378','38693','8','{#IFTYPE}','^1$'), ('2379','38693','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2380','38694','8','{#IFTYPE}','^71$'), ('2381','38694','8','{#IFADMINSTATUS}','^1$'), ('2382','38695','8','{#IFTYPE}','^1$'), ('2383','38695','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2384','38696','8','{#STORAGE_TYPE}','.+4$'), ('2385','38696','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2398','38747','8','{#IFTYPE}','^1$'), ('2399','38747','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2400','38748','8','{#IFTYPE}','^71$'), ('2401','38748','8','{#IFADMINSTATUS}','^1$'), ('2402','38749','8','{#IFTYPE}','^1$'), ('2403','38749','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2404','38750','8','{#STORAGE_TYPE}','.+4$'), ('2405','38750','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2418','38801','8','{#IFTYPE}','^1$'), ('2419','38801','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2420','38802','8','{#IFTYPE}','^71$'), ('2421','38802','8','{#IFADMINSTATUS}','^1$'), ('2422','38803','8','{#IFTYPE}','^1$'), ('2423','38803','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2424','38804','8','{#STORAGE_TYPE}','.+4$'), ('2425','38804','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2438','38855','8','{#IFTYPE}','^1$'), ('2439','38855','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2440','38856','8','{#IFTYPE}','^71$'), ('2441','38856','8','{#IFADMINSTATUS}','^1$'), ('2442','38857','8','{#IFTYPE}','^1$'), ('2443','38857','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2444','38858','8','{#STORAGE_TYPE}','.+4$'), ('2445','38858','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2458','38909','8','{#IFTYPE}','^1$'), ('2459','38909','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2460','38910','8','{#IFTYPE}','^71$'), ('2461','38910','8','{#IFADMINSTATUS}','^1$'), ('2462','38911','8','{#IFTYPE}','^1$'), ('2463','38911','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2464','38912','8','{#STORAGE_TYPE}','.+4$'), ('2465','38912','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2478','38963','8','{#IFTYPE}','^1$'), ('2479','38963','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2480','38964','8','{#IFTYPE}','^71$'), ('2481','38964','8','{#IFADMINSTATUS}','^1$'), ('2482','38965','8','{#IFTYPE}','^1$'), ('2483','38965','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2484','38966','8','{#STORAGE_TYPE}','.+4$'), ('2485','38966','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2498','39017','8','{#IFTYPE}','^1$'), ('2499','39017','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2500','39018','8','{#IFTYPE}','^71$'), ('2501','39018','8','{#IFADMINSTATUS}','^1$'), ('2502','39019','8','{#IFTYPE}','^1$'), ('2503','39019','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2504','39020','8','{#STORAGE_TYPE}','.+4$'), ('2505','39020','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2518','39071','8','{#IFTYPE}','^1$'), ('2519','39071','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2520','39072','8','{#IFTYPE}','^71$'), ('2521','39072','8','{#IFADMINSTATUS}','^1$'), ('2522','39073','8','{#IFTYPE}','^1$'), ('2523','39073','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2524','39074','8','{#STORAGE_TYPE}','.+4$'), ('2525','39074','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2538','39125','8','{#IFTYPE}','^1$'), ('2539','39125','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2540','39126','8','{#IFTYPE}','^71$'), ('2541','39126','8','{#IFADMINSTATUS}','^1$'), ('2542','39127','8','{#IFTYPE}','^1$'), ('2543','39127','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2544','39128','8','{#STORAGE_TYPE}','.+4$'), ('2545','39128','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2558','39179','8','{#IFTYPE}','^1$'), ('2559','39179','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2560','39180','8','{#IFTYPE}','^71$'), ('2561','39180','8','{#IFADMINSTATUS}','^1$'), ('2562','39181','8','{#IFTYPE}','^1$'), ('2563','39181','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2564','39182','8','{#STORAGE_TYPE}','.+4$'), ('2565','39182','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2578','39233','8','{#IFTYPE}','^1$'), ('2579','39233','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2580','39234','8','{#IFTYPE}','^71$'), ('2581','39234','8','{#IFADMINSTATUS}','^1$'), ('2582','39235','8','{#IFTYPE}','^1$'), ('2583','39235','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2584','39236','8','{#STORAGE_TYPE}','.+4$'), ('2585','39236','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2598','39287','8','{#IFTYPE}','^1$'), ('2599','39287','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2600','39288','8','{#IFTYPE}','^71$'), ('2601','39288','8','{#IFADMINSTATUS}','^1$'), ('2602','39289','8','{#IFTYPE}','^1$'), ('2603','39289','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2604','39290','8','{#STORAGE_TYPE}','.+4$'), ('2605','39290','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2618','39341','8','{#IFTYPE}','^1$'), ('2619','39341','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2620','39342','8','{#IFTYPE}','^71$'), ('2621','39342','8','{#IFADMINSTATUS}','^1$'), ('2622','39343','8','{#IFTYPE}','^1$'), ('2623','39343','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2624','39344','8','{#STORAGE_TYPE}','.+4$'), ('2625','39344','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2638','39395','8','{#IFTYPE}','^1$'), ('2639','39395','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2640','39396','8','{#IFTYPE}','^71$'), ('2641','39396','8','{#IFADMINSTATUS}','^1$'), ('2642','39397','8','{#IFTYPE}','^1$'), ('2643','39397','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2644','39398','8','{#STORAGE_TYPE}','.+4$'), ('2645','39398','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2658','39449','8','{#IFTYPE}','^1$'), ('2659','39449','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2660','39450','8','{#IFTYPE}','^71$'), ('2661','39450','8','{#IFADMINSTATUS}','^1$'), ('2662','39451','8','{#IFTYPE}','^1$'), ('2663','39451','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2664','39452','8','{#STORAGE_TYPE}','.+4$'), ('2665','39452','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2678','39503','8','{#IFTYPE}','^1$'), ('2679','39503','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2680','39504','8','{#IFTYPE}','^71$'), ('2681','39504','8','{#IFADMINSTATUS}','^1$'), ('2682','39505','8','{#IFTYPE}','^1$'), ('2683','39505','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2684','39506','8','{#STORAGE_TYPE}','.+4$'), ('2685','39506','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2698','39557','8','{#IFTYPE}','^1$'), ('2699','39557','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2700','39558','8','{#IFTYPE}','^71$'), ('2701','39558','8','{#IFADMINSTATUS}','^1$'), ('2702','39559','8','{#IFTYPE}','^1$'), ('2703','39559','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2704','39560','8','{#STORAGE_TYPE}','.+4$'), ('2705','39560','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2718','39611','8','{#IFTYPE}','^1$'), ('2719','39611','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2720','39612','8','{#IFTYPE}','^71$'), ('2721','39612','8','{#IFADMINSTATUS}','^1$'), ('2722','39613','8','{#IFTYPE}','^1$'), ('2723','39613','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2724','39614','8','{#STORAGE_TYPE}','.+4$'), ('2725','39614','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2738','39665','8','{#IFTYPE}','^1$'), ('2739','39665','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2740','39666','8','{#IFTYPE}','^71$'), ('2741','39666','8','{#IFADMINSTATUS}','^1$'), ('2742','39667','8','{#IFTYPE}','^1$'), ('2743','39667','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2744','39668','8','{#STORAGE_TYPE}','.+4$'), ('2745','39668','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2758','39719','8','{#IFTYPE}','^1$'), ('2759','39719','8','{#IFNAME}','{$IFNAME.LTEMODEM.MATCHES}'), ('2760','39720','8','{#IFTYPE}','^71$'), ('2761','39720','8','{#IFADMINSTATUS}','^1$'), ('2762','39721','8','{#IFTYPE}','^1$'), ('2763','39721','8','{#IFNAME}','{$IFNAME.WIFI.MATCHES}'), ('2764','39722','8','{#STORAGE_TYPE}','.+4$'), ('2765','39722','8','{#STORAGE_TYPE}','.+hrStorageFixedDisk'), ('2766','39749','9','{#NAME}','{$VELOCLOUD.LLD.EDGES.FILTER.NOT_MATCHES}'), ('2767','39749','8','{#NAME}','{$VELOCLOUD.LLD.EDGES.FILTER.MATCHES}'), ('2768','39750','9','{#NAME}','{$VELOCLOUD.LLD.GATEWAYS.FILTER.NOT_MATCHES}'), ('2769','39750','8','{#NAME}','{$VELOCLOUD.LLD.GATEWAYS.FILTER.MATCHES}'), ('2770','39751','9','{#ID}','{$VELOCLOUD.LLD.LINKS.FILTER.NOT_MATCHES}'), ('2771','39751','8','{#ID}','{$VELOCLOUD.LLD.LINKS.FILTER.MATCHES}'), ('2780','39942','8','{#NODE}','{$KUBE.LLD.FILTER.NODE.MATCHES}'), ('2781','39942','9','{#NODE}','{$KUBE.LLD.FILTER.NODE.NOT_MATCHES}'), ('2782','39942','8','{#NAMESPACE}','{$KUBE.LLD.FILTER.POD.NAMESPACE.MATCHES}'), ('2783','39942','9','{#NAMESPACE}','{$KUBE.LLD.FILTER.POD.NAMESPACE.NOT_MATCHES}'), ('2784','40024','8','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.MATCHES}'), ('2785','40024','9','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.NOT_MATCHES}'), ('2786','40025','8','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.MATCHES}'), ('2787','40025','9','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.NOT_MATCHES}'), ('2788','40026','8','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.MATCHES}'), ('2789','40026','9','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.NOT_MATCHES}'), ('2790','40028','8','{#NAME}','{$KUBE.LLD.FILTER.NODE.MATCHES}'), ('2791','40028','9','{#NAME}','{$KUBE.LLD.FILTER.NODE.NOT_MATCHES}'), ('2792','40029','8','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.MATCHES}'), ('2793','40029','9','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.NOT_MATCHES}'), ('2794','40030','8','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.MATCHES}'), ('2795','40030','9','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.NOT_MATCHES}'), ('2796','40032','8','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.MATCHES}'), ('2797','40032','9','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.NOT_MATCHES}'), ('2798','40034','8','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.MATCHES}'), ('2799','40034','9','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.NOT_MATCHES}'), ('2800','40035','8','{#NAME}','{$KUBE.LLD.FILTER.KUBELET_NODE.MATCHES}'), ('2801','40035','9','{#NAME}','{$KUBE.LLD.FILTER.KUBELET_NODE.NOT_MATCHES}'), ('2802','40138','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('2803','40138','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('2804','40138','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('2805','40138','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('2806','40138','8','{#IFNAME}','@Network interfaces for discovery'), ('2807','40138','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('2808','40138','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('2809','40138','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('2810','40138','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('2811','40138','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('2812','40138','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('2813','40138','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('2844','40489','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('2845','40489','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('2846','40489','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('2847','40489','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('2848','40489','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('2849','40489','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('2850','40489','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('2851','40489','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('2852','40489','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('2853','40489','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('2854','40489','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('2855','40489','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('2856','40490','8','{#IFOPERSTATUS}','1'), ('2857','40490','8','{#SNMPVALUE}','(2|3)'), ('2858','40513','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('2859','40513','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('2860','40513','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('2861','40513','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('2862','40513','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('2863','40513','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('2864','40513','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('2865','40513','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('2866','40513','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('2867','40513','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('2868','40513','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('2869','40513','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('2870','40514','8','{#IFOPERSTATUS}','1'), ('2871','40514','8','{#SNMPVALUE}','(2|3)'), ('2872','40515','8','{#FSTYPE}','{$VFS.FS.FSTYPE.MATCHES}'), ('2873','40515','9','{#FSTYPE}','{$VFS.FS.FSTYPE.NOT_MATCHES}'), ('2874','40515','8','{#FSNAME}','{$VFS.FS.FSNAME.MATCHES}'), ('2875','40515','9','{#FSNAME}','{$VFS.FS.FSNAME.NOT_MATCHES}'), ('2876','40516','8','{#MEMTYPE}','{$MEMORY.TYPE.MATCHES}'), ('2877','40516','9','{#MEMTYPE}','{$MEMORY.TYPE.NOT_MATCHES}'), ('2878','40516','8','{#MEMNAME}','{$MEMORY.NAME.MATCHES}'), ('2879','40516','9','{#MEMNAME}','{$MEMORY.NAME.NOT_MATCHES}'), ('2880','40544','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('2881','40544','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('2882','40544','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('2883','40544','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('2884','40544','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('2885','40544','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('2886','40544','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('2887','40544','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('2888','40544','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('2889','40544','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('2890','40544','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('2891','40544','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('2892','40580','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('2893','40580','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('2894','40580','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('2895','40580','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('2896','40580','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('2897','40580','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('2898','40580','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('2899','40580','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('2900','40580','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('2901','40580','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('2902','40580','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('2903','40580','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('2904','40581','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('2905','40581','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('2906','40581','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('2907','40581','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('2908','40581','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('2909','40581','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('2910','40581','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('2911','40581','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('2912','40581','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('2913','40581','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('2914','40581','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('2915','40581','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('2916','40643','8','{#ENT_SN}','.+'), ('2917','40643','8','{#ENT_CLASS}','^3$'), ('2918','40649','8','{#ENT_SN}','.+'), ('2919','40649','8','{#ENT_CLASS}','^3$'), ('2920','40652','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('2921','40652','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('2922','40652','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('2923','40652','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('2924','40652','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('2925','40652','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('2926','40652','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('2927','40652','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('2928','40652','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('2929','40652','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('2930','40652','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('2931','40652','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('2932','40653','8','{#IFOPERSTATUS}','1'), ('2933','40653','12','{#SNMPVALUE}',''), ('2934','40657','8','{#ENT_SN}','.+'), ('2935','40657','8','{#ENT_CLASS}','^3$'), ('2936','40660','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('2937','40660','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('2938','40660','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('2939','40660','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('2940','40660','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('2941','40660','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('2942','40660','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('2943','40660','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('2944','40660','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('2945','40660','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('2946','40660','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('2947','40660','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('2948','40719','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('2949','40719','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('2950','40719','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('2951','40719','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('2952','40719','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('2953','40719','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('2954','40719','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('2955','40719','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('2956','40719','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('2957','40719','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('2958','40719','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('2959','40719','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('2960','40720','8','{#IFOPERSTATUS}','1'), ('2961','40720','8','{#SNMPVALUE}','(2|3)'), ('2962','40742','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('2963','40742','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('2964','40742','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('2965','40742','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('2966','40742','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('2967','40742','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('2968','40742','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('2969','40742','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('2970','40742','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('2971','40742','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('2972','40742','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('2973','40742','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('2974','40763','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('2975','40763','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('2976','40763','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('2977','40763','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('2978','40763','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('2979','40763','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('2980','40763','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('2981','40763','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('2982','40763','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('2983','40763','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('2984','40763','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('2985','40763','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('2986','40764','8','{#IFOPERSTATUS}','1'), ('2987','40764','8','{#SNMPVALUE}','(2|3)'), ('2988','40786','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('2989','40786','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('2990','40786','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('2991','40786','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('2992','40786','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('2993','40786','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('2994','40786','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('2995','40786','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('2996','40786','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('2997','40786','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('2998','40786','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('2999','40786','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3000','40787','8','{#IFOPERSTATUS}','1'), ('3001','40787','8','{#SNMPVALUE}','(2|3)'), ('3002','40809','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3003','40809','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3004','40809','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3005','40809','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3006','40809','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3007','40809','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3008','40809','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3009','40809','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3010','40809','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3011','40809','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3012','40810','8','{#IFOPERSTATUS}','1'), ('3013','40810','8','{#SNMPVALUE}','(2|3)'), ('3014','40832','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3015','40832','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3016','40832','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3017','40832','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3018','40832','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3019','40832','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3020','40832','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3021','40832','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3022','40832','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3023','40832','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3024','40832','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3025','40832','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3026','40833','8','{#IFOPERSTATUS}','1'), ('3027','40833','8','{#SNMPVALUE}','(2|3)'), ('3028','40855','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3029','40855','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3030','40855','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3031','40855','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3032','40855','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3033','40855','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3034','40855','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3035','40855','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3036','40855','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3037','40855','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3038','40855','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3039','40855','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3040','40856','8','{#IFOPERSTATUS}','1'), ('3041','40856','8','{#SNMPVALUE}','(2|3)'), ('3042','40878','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3043','40878','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3044','40878','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3045','40878','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3046','40878','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3047','40878','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3048','40878','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3049','40878','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3050','40878','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3051','40878','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3052','40878','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3053','40878','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3054','40879','8','{#IFOPERSTATUS}','1'), ('3055','40879','8','{#SNMPVALUE}','(2|3)'), ('3056','40901','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3057','40901','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3058','40901','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3059','40901','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3060','40901','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3061','40901','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3062','40901','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3063','40901','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3064','40901','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3065','40901','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3066','40901','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3067','40901','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3068','40922','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3069','40922','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3070','40922','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3071','40922','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3072','40922','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3073','40922','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3074','40922','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3075','40922','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3076','40922','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3077','40922','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3078','40922','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3079','40922','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3080','40923','8','{#IFOPERSTATUS}','1'), ('3081','40923','8','{#SNMPVALUE}','(2|3)'), ('3082','40945','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3083','40945','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3084','40945','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3085','40945','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3086','40945','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3087','40945','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3088','40945','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3089','40945','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3090','40945','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3091','40945','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3092','40945','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3093','40945','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3094','40966','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3095','40966','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3096','40966','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3097','40966','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3098','40966','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3099','40966','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3100','40966','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3101','40966','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3102','40966','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3103','40966','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3104','40966','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3105','40966','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3106','40987','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3107','40987','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3108','40987','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3109','40987','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3110','40987','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3111','40987','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3112','40987','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3113','40987','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3114','40987','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3115','40987','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3116','40987','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3117','40987','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3118','41008','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3119','41008','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3120','41008','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3121','41008','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3122','41008','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3123','41008','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3124','41008','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3125','41008','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3126','41008','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3127','41008','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3128','41008','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3129','41008','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3130','41029','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3131','41029','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3132','41029','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3133','41029','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3134','41029','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3135','41029','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3136','41029','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3137','41029','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3138','41029','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3139','41029','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3140','41029','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3141','41029','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3142','41050','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3143','41050','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3144','41050','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3145','41050','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3146','41050','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3147','41050','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3148','41050','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3149','41050','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3150','41050','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3151','41050','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3152','41050','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3153','41050','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3154','41071','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3155','41071','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3156','41071','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3157','41071','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3158','41071','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3159','41071','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3160','41071','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3161','41071','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3162','41071','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3163','41071','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3164','41071','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3165','41071','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3166','41092','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3167','41092','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3168','41092','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3169','41092','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3170','41092','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3171','41092','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3172','41092','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3173','41092','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3174','41092','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3175','41092','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3176','41092','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3177','41092','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3178','41113','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3179','41113','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3180','41113','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3181','41113','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3182','41113','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3183','41113','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3184','41113','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3185','41113','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3186','41113','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3187','41113','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3188','41113','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3189','41113','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3190','41134','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3191','41134','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3192','41134','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3193','41134','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3194','41134','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3195','41134','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3196','41134','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3197','41134','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3198','41134','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3199','41134','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3200','41134','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3201','41134','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3202','41155','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3203','41155','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3204','41155','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3205','41155','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3206','41155','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3207','41155','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3208','41155','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3209','41155','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3210','41155','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3211','41155','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3212','41155','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3213','41155','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3214','41176','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3215','41176','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3216','41176','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3217','41176','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3218','41176','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3219','41176','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3220','41176','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3221','41176','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3222','41176','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3223','41176','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3224','41176','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3225','41176','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3226','41197','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3227','41197','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3228','41197','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3229','41197','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3230','41197','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3231','41197','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3232','41197','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3233','41197','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3234','41197','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3235','41197','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3236','41197','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3237','41197','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3238','41218','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3239','41218','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3240','41218','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3241','41218','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3242','41218','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3243','41218','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3244','41218','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3245','41218','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3246','41218','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3247','41218','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3248','41218','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3249','41218','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3250','41239','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3251','41239','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3252','41239','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3253','41239','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3254','41239','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3255','41239','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3256','41239','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3257','41239','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3258','41239','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3259','41239','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3260','41239','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3261','41239','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3262','41260','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3263','41260','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3264','41260','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3265','41260','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3266','41260','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3267','41260','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3268','41260','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3269','41260','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3270','41260','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3271','41260','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3272','41260','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3273','41260','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3274','41281','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3275','41281','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3276','41281','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3277','41281','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3278','41281','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3279','41281','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3280','41281','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3281','41281','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3282','41281','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3283','41281','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3284','41281','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3285','41281','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3286','41302','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3287','41302','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3288','41302','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3289','41302','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3290','41302','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3291','41302','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3292','41302','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3293','41302','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3294','41302','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3295','41302','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3296','41302','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3297','41302','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3298','41323','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3299','41323','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3300','41323','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3301','41323','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3302','41323','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3303','41323','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3304','41323','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3305','41323','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3306','41323','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3307','41323','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3308','41323','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3309','41323','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3310','41344','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3311','41344','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3312','41344','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3313','41344','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3314','41344','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3315','41344','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3316','41344','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3317','41344','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3318','41344','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3319','41344','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3320','41344','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3321','41344','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3322','41365','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3323','41365','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3324','41365','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3325','41365','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3326','41365','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3327','41365','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3328','41365','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3329','41365','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3330','41365','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3331','41365','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3332','41365','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3333','41365','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3334','41386','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3335','41386','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3336','41386','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3337','41386','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3338','41386','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3339','41386','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3340','41386','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3341','41386','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3342','41386','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3343','41386','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3344','41386','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3345','41386','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3346','41407','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3347','41407','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3348','41407','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3349','41407','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3350','41407','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3351','41407','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3352','41407','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3353','41407','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3354','41407','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3355','41407','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3356','41407','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3357','41407','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3358','41428','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3359','41428','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3360','41428','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3361','41428','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3362','41428','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3363','41428','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3364','41428','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3365','41428','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3366','41428','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3367','41428','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3368','41428','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3369','41428','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3370','41449','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3371','41449','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3372','41449','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3373','41449','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3374','41449','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3375','41449','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3376','41449','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3377','41449','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3378','41449','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3379','41449','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3380','41449','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3381','41449','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3382','41470','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3383','41470','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3384','41470','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3385','41470','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3386','41470','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3387','41470','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3388','41470','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3389','41470','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3390','41470','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3391','41470','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3392','41470','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3393','41470','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3394','41491','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3395','41491','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3396','41491','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3397','41491','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3398','41491','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3399','41491','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3400','41491','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3401','41491','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3402','41491','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3403','41491','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3404','41491','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3405','41491','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3406','41512','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3407','41512','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3408','41512','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3409','41512','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3410','41512','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3411','41512','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3412','41512','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3413','41512','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3414','41512','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3415','41512','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3416','41512','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3417','41512','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3418','41533','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3419','41533','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3420','41533','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3421','41533','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3422','41533','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3423','41533','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3424','41533','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3425','41533','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3426','41533','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3427','41533','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3428','41533','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3429','41533','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3430','41554','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3431','41554','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3432','41554','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3433','41554','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3434','41554','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3435','41554','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3436','41554','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3437','41554','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3438','41554','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3439','41554','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3440','41554','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3441','41554','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3442','41575','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3443','41575','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3444','41575','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3445','41575','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3446','41575','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3447','41575','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3448','41575','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3449','41575','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3450','41575','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3451','41575','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3452','41575','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3453','41575','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3454','41596','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3455','41596','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3456','41596','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3457','41596','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3458','41596','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3459','41596','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3460','41596','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3461','41596','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3462','41596','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3463','41596','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3464','41596','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3465','41596','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3466','41617','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3467','41617','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3468','41617','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3469','41617','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3470','41617','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3471','41617','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3472','41617','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3473','41617','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3474','41617','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3475','41617','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3476','41617','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3477','41617','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3478','41638','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3479','41638','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3480','41638','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3481','41638','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3482','41638','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3483','41638','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3484','41638','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3485','41638','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3486','41638','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3487','41638','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3488','41638','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3489','41638','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3490','41659','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3491','41659','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3492','41659','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3493','41659','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3494','41659','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3495','41659','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3496','41659','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3497','41659','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3498','41659','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3499','41659','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3500','41659','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3501','41659','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3502','41680','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3503','41680','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3504','41680','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3505','41680','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3506','41680','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3507','41680','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3508','41680','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3509','41680','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3510','41680','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3511','41680','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3512','41680','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3513','41680','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3514','41701','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3515','41701','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3516','41701','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3517','41701','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3518','41701','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3519','41701','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3520','41701','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3521','41701','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3522','41701','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3523','41701','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3524','41701','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3525','41701','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3526','41722','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3527','41722','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3528','41722','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3529','41722','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3530','41722','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3531','41722','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3532','41722','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3533','41722','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3534','41722','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3535','41722','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3536','41722','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3537','41722','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3538','41743','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3539','41743','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3540','41743','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3541','41743','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3542','41743','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3543','41743','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3544','41743','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3545','41743','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3546','41743','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3547','41743','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3548','41743','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3549','41743','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3550','41764','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3551','41764','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3552','41764','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3553','41764','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3554','41764','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3555','41764','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3556','41764','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3557','41764','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3558','41764','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3559','41764','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3560','41764','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3561','41764','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3562','41785','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3563','41785','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3564','41785','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3565','41785','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3566','41785','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3567','41785','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3568','41785','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3569','41785','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3570','41785','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3571','41785','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3572','41785','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3573','41785','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3574','41806','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3575','41806','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3576','41806','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3577','41806','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3578','41806','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3579','41806','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3580','41806','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3581','41806','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3582','41806','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3583','41806','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3584','41806','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3585','41806','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3586','41827','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3587','41827','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3588','41827','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3589','41827','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3590','41827','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3591','41827','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3592','41827','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3593','41827','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3594','41827','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3595','41827','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3596','41827','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3597','41827','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3598','41848','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3599','41848','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3600','41848','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3601','41848','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3602','41848','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3603','41848','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3604','41848','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3605','41848','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3606','41848','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3607','41848','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3608','41848','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3609','41848','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3610','41869','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3611','41869','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3612','41869','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3613','41869','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3614','41869','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3615','41869','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3616','41869','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3617','41869','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3618','41869','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3619','41869','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3620','41869','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3621','41869','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3622','41890','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3623','41890','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3624','41890','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3625','41890','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3626','41890','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3627','41890','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3628','41890','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3629','41890','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3630','41890','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3631','41890','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3632','41890','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3633','41890','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3634','41911','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3635','41911','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3636','41911','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3637','41911','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3638','41911','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3639','41911','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3640','41911','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3641','41911','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3642','41911','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3643','41911','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3644','41911','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3645','41911','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3646','41932','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3647','41932','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3648','41932','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3649','41932','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3650','41932','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3651','41932','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3652','41932','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3653','41932','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3654','41932','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3655','41932','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3656','41932','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3657','41932','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3658','41953','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3659','41953','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3660','41953','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3661','41953','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3662','41953','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3663','41953','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3664','41953','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3665','41953','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3666','41953','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3667','41953','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3668','41953','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3669','41953','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3670','41974','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3671','41974','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3672','41974','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3673','41974','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3674','41974','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3675','41974','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3676','41974','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3677','41974','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3678','41974','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3679','41974','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3680','41974','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3681','41974','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3682','41995','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3683','41995','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3684','41995','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3685','41995','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3686','41995','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3687','41995','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3688','41995','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3689','41995','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3690','41995','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3691','41995','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3692','41995','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3693','41995','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3694','42016','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3695','42016','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3696','42016','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3697','42016','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3698','42016','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3699','42016','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3700','42016','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3701','42016','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3702','42016','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3703','42016','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3704','42016','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3705','42016','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3706','42037','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3707','42037','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3708','42037','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3709','42037','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3710','42037','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3711','42037','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3712','42037','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3713','42037','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3714','42037','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3715','42037','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3716','42037','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3717','42037','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3718','42058','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3719','42058','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3720','42058','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3721','42058','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3722','42058','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3723','42058','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3724','42058','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3725','42058','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3726','42058','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3727','42058','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3728','42058','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3729','42058','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3730','42079','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3731','42079','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3732','42079','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3733','42079','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3734','42079','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3735','42079','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3736','42079','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3737','42079','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3738','42079','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3739','42079','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3740','42079','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3741','42079','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3742','42100','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3743','42100','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3744','42100','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3745','42100','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3746','42100','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3747','42100','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3748','42100','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3749','42100','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3750','42100','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3751','42100','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3752','42100','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3753','42100','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3754','42121','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3755','42121','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3756','42121','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3757','42121','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3758','42121','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3759','42121','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3760','42121','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3761','42121','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3762','42121','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3763','42121','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3764','42121','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3765','42121','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3766','42122','8','{#IFOPERSTATUS}','1'), ('3767','42122','8','{#SNMPVALUE}','(2|3)'), ('3768','42144','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3769','42144','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3770','42144','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3771','42144','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3772','42144','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3773','42144','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3774','42144','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3775','42144','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3776','42144','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3777','42144','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3778','42165','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3779','42165','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3780','42165','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3781','42165','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3782','42165','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3783','42165','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3784','42165','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3785','42165','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3786','42165','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3787','42165','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3788','42271','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3789','42271','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3790','42272','8','{#DEVTYPE}','disk'), ('3791','42272','8','{#DEVNAME}','{$VFS.DEV.DEVNAME.MATCHES}'), ('3792','42272','9','{#DEVNAME}','{$VFS.DEV.DEVNAME.NOT_MATCHES}'), ('3793','42273','8','{#FSTYPE}','{$VFS.FS.FSTYPE.MATCHES}'), ('3794','42273','9','{#FSTYPE}','{$VFS.FS.FSTYPE.NOT_MATCHES}'), ('3795','42273','8','{#FSNAME}','{$VFS.FS.FSNAME.MATCHES}'), ('3796','42273','9','{#FSNAME}','{$VFS.FS.FSNAME.NOT_MATCHES}'), ('3797','42274','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3798','42274','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3799','42275','8','{#DEVTYPE}','disk'), ('3800','42275','8','{#DEVNAME}','{$VFS.DEV.DEVNAME.MATCHES}'), ('3801','42275','9','{#DEVNAME}','{$VFS.DEV.DEVNAME.NOT_MATCHES}'), ('3802','42276','8','{#FSTYPE}','{$VFS.FS.FSTYPE.MATCHES}'), ('3803','42276','9','{#FSTYPE}','{$VFS.FS.FSTYPE.NOT_MATCHES}'), ('3804','42276','8','{#FSNAME}','{$VFS.FS.FSNAME.MATCHES}'), ('3805','42276','9','{#FSNAME}','{$VFS.FS.FSNAME.NOT_MATCHES}'), ('3806','42360','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3807','42360','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3808','42361','8','{#DEVTYPE}','disk'), ('3809','42361','8','{#DEVNAME}','{$VFS.DEV.DEVNAME.MATCHES}'), ('3810','42361','9','{#DEVNAME}','{$VFS.DEV.DEVNAME.NOT_MATCHES}'), ('3811','42362','8','{#FSTYPE}','{$VFS.FS.FSTYPE.MATCHES}'), ('3812','42362','9','{#FSTYPE}','{$VFS.FS.FSTYPE.NOT_MATCHES}'), ('3813','42362','8','{#FSNAME}','{$VFS.FS.FSNAME.MATCHES}'), ('3814','42362','9','{#FSNAME}','{$VFS.FS.FSNAME.NOT_MATCHES}'), ('3815','42411','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3816','42411','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3817','42411','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3818','42411','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3819','42411','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3820','42411','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3821','42411','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3822','42411','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3823','42411','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3824','42411','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3825','42411','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3826','42411','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3827','42412','8','{#IFOPERSTATUS}','1'), ('3828','42412','12','{#SNMPVALUE}',''), ('3829','42413','8','{#DEVNAME}','{$VFS.DEV.DEVNAME.MATCHES}'), ('3830','42413','9','{#DEVNAME}','{$VFS.DEV.DEVNAME.NOT_MATCHES}'), ('3833','42414','8','{#FSNAME}','{$VFS.FS.FSNAME.MATCHES}'), ('3834','42414','9','{#FSNAME}','{$VFS.FS.FSNAME.NOT_MATCHES}'), ('3835','42487','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3836','42487','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3837','42487','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3838','42487','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3839','42487','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3840','42487','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3841','42488','8','{#DEVNAME}','{$VFS.DEV.DEVNAME.MATCHES}'), ('3842','42488','9','{#DEVNAME}','{$VFS.DEV.DEVNAME.NOT_MATCHES}'), ('3843','42489','8','{#SERVICE.NAME}','{$SERVICE.NAME.MATCHES}'), ('3844','42489','9','{#SERVICE.NAME}','{$SERVICE.NAME.NOT_MATCHES}'), ('3845','42489','8','{#SERVICE.STARTUPNAME}','{$SERVICE.STARTUPNAME.MATCHES}'), ('3846','42489','9','{#SERVICE.STARTUPNAME}','{$SERVICE.STARTUPNAME.NOT_MATCHES}'), ('3847','42490','8','{#FSTYPE}','{$VFS.FS.FSTYPE.MATCHES}'), ('3848','42490','9','{#FSTYPE}','{$VFS.FS.FSTYPE.NOT_MATCHES}'), ('3849','42490','8','{#FSNAME}','{$VFS.FS.FSNAME.MATCHES}'), ('3850','42490','9','{#FSNAME}','{$VFS.FS.FSNAME.NOT_MATCHES}'), ('3851','42490','8','{#FSDRIVETYPE}','{$VFS.FS.FSDRIVETYPE.MATCHES}'), ('3852','42490','9','{#FSDRIVETYPE}','{$VFS.FS.FSDRIVETYPE.NOT_MATCHES}'), ('3853','42543','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3854','42543','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3855','42543','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3856','42543','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3857','42543','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3858','42543','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3859','42544','8','{#DEVNAME}','{$VFS.DEV.DEVNAME.MATCHES}'), ('3860','42544','9','{#DEVNAME}','{$VFS.DEV.DEVNAME.NOT_MATCHES}'), ('3861','42545','8','{#SERVICE.NAME}','{$SERVICE.NAME.MATCHES}'), ('3862','42545','9','{#SERVICE.NAME}','{$SERVICE.NAME.NOT_MATCHES}'), ('3863','42545','8','{#SERVICE.STARTUPNAME}','{$SERVICE.STARTUPNAME.MATCHES}'), ('3864','42545','9','{#SERVICE.STARTUPNAME}','{$SERVICE.STARTUPNAME.NOT_MATCHES}'), ('3865','42546','8','{#FSTYPE}','{$VFS.FS.FSTYPE.MATCHES}'), ('3866','42546','9','{#FSTYPE}','{$VFS.FS.FSTYPE.NOT_MATCHES}'), ('3867','42546','8','{#FSNAME}','{$VFS.FS.FSNAME.MATCHES}'), ('3868','42546','9','{#FSNAME}','{$VFS.FS.FSNAME.NOT_MATCHES}'), ('3869','42546','8','{#FSDRIVETYPE}','{$VFS.FS.FSDRIVETYPE.MATCHES}'), ('3870','42546','9','{#FSDRIVETYPE}','{$VFS.FS.FSDRIVETYPE.NOT_MATCHES}'), ('3871','42580','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3872','42580','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3873','42580','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3874','42580','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3875','42580','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('3876','42580','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3877','42580','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3878','42580','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3879','42580','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3880','42580','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3881','42580','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3882','42580','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3883','42581','8','{#FSTYPE}','{$VFS.FS.FSTYPE.MATCHES}'), ('3884','42581','9','{#FSTYPE}','{$VFS.FS.FSTYPE.NOT_MATCHES}'), ('3885','42581','8','{#FSNAME}','{$VFS.FS.FSNAME.MATCHES}'), ('3886','42581','9','{#FSNAME}','{$VFS.FS.FSNAME.NOT_MATCHES}'), ('3887','42582','8','{#MEMTYPE}','{$MEMORY.TYPE.MATCHES}'), ('3888','42582','9','{#MEMTYPE}','{$MEMORY.TYPE.NOT_MATCHES}'), ('3889','42582','8','{#MEMNAME}','{$MEMORY.NAME.MATCHES}'), ('3890','42582','9','{#MEMNAME}','{$MEMORY.NAME.NOT_MATCHES}'), ('3891','42685','8','{#JMXNAME}','{$JMX.MEM.POOL.NAME.MATCHES}'), ('3892','42703','8','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.MATCHES}'), ('3893','42703','9','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.NOT_MATCHES}'), ('3894','42704','8','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.MATCHES}'), ('3895','42704','9','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.NOT_MATCHES}'), ('3896','42705','8','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.MATCHES}'), ('3897','42705','9','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.NOT_MATCHES}'), ('3898','42741','8','{#RESOURCE.TYPE}','^cluster$'), ('3899','42742','8','{#RESOURCE.TYPE}','^lxc$'), ('3900','42743','8','{#RESOURCE.TYPE}','^node$'), ('3901','42744','8','{#RESOURCE.TYPE}','^qemu$'), ('3902','42745','8','{#RESOURCE.TYPE}','^storage$'), ('3903','42835','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3904','42835','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3905','42835','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3906','42835','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3908','42835','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3909','42835','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3910','42835','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3911','42835','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3912','42835','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3913','42835','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3914','42835','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3915','42837','8','{#DATASET_NAME}','{$DATASET.NAME.MATCHES}'), ('3916','42837','9','{#DATASET_NAME}','{$DATASET.NAME.NOT_MATCHES}'), ('3917','42840','8','{#DEVNAME}','{$VFS.DEV.DEVNAME.MATCHES}'), ('3918','42840','9','{#DEVNAME}','{$VFS.DEV.DEVNAME.NOT_MATCHES}'), ('3923','43134','8','{#SERVICE_NAME}','{$CONSUL.LLD.FILTER.LOCAL_SERVICE_NAME.MATCHES}'), ('3924','43134','9','{#SERVICE_NAME}','{$CONSUL.LLD.FILTER.LOCAL_SERVICE_NAME.NOT_MATCHES}'), ('3925','43166','8','{#NODE_NAME}','{$CONSUL.LLD.FILTER.NODE_NAME.MATCHES}'), ('3926','43166','9','{#NODE_NAME}','{$CONSUL.LLD.FILTER.NODE_NAME.NOT_MATCHES}'), ('3927','43167','8','{#SERVICE_NAME}','{$CONSUL.LLD.FILTER.SERVICE_NAME.MATCHES}'), ('3928','43167','9','{#SERVICE_NAME}','{$CONSUL.LLD.FILTER.SERVICE_NAME.NOT_MATCHES}'), ('3929','43189','9','{#TYPE}','^(POWER_SUPPLY|RAID_IOM|CHASSIS_MIDPLANE)$'), ('3930','43296','9','{#TYPE}','^(POWER_SUPPLY|RAID_IOM|CHASSIS_MIDPLANE)$'), ('3931','43415','8','{#NAME}','{$HPE.PRIMERA.CPG.NAME.MATCHES}'), ('3932','43415','9','{#NAME}','{$HPE.PRIMERA.CPG.NAME.NOT_MATCHES}'), ('3933','43417','12','{#NAME}',''), ('3934','43418','9','{#TYPE}','3'), ('3935','43419','8','{#NAME}','{$HPE.PRIMERA.LLD.FILTER.TASK.NAME.MATCHES}'), ('3936','43419','9','{#NAME}','{$HPE.PRIMERA.LLD.FILTER.TASK.NAME.NOT_MATCHES}'), ('3937','43419','8','{#TYPE}','{$HPE.PRIMERA.LLD.FILTER.TASK.TYPE.MATCHES}'), ('3938','43419','9','{#TYPE}','{$HPE.PRIMERA.LLD.FILTER.TASK.TYPE.NOT_MATCHES}'), ('3939','43420','8','{#NAME}','{$HPE.PRIMERA.VOLUME.NAME.MATCHES}'), ('3940','43420','9','{#NAME}','{$HPE.PRIMERA.VOLUME.NAME.NOT_MATCHES}'), ('3941','43526','8','{#ALARM_SERVICE_NAMESPACE}','{$AWS.EC2.LLD.FILTER.ALARM_SERVICE_NAMESPACE.MATCHES}'), ('3942','43526','9','{#ALARM_SERVICE_NAMESPACE}','{$AWS.EC2.LLD.FILTER.ALARM_SERVICE_NAMESPACE.NOT_MATCHES}'), ('3943','43526','8','{#ALARM_NAME}','{$AWS.EC2.LLD.FILTER.ALARM_NAME.MATCHES}'), ('3944','43526','9','{#ALARM_NAME}','{$AWS.EC2.LLD.FILTER.ALARM_NAME.NOT_MATCHES}'), ('3945','43527','8','{#VOLUME_TYPE}','{$AWS.EC2.LLD.FILTER.VOLUME_TYPE.MATCHES}'), ('3946','43527','9','{#VOLUME_TYPE}','{$AWS.EC2.LLD.FILTER.VOLUME_TYPE.NOT_MATCHES}'), ('3947','43134','8','{#SERVICE_NAMESPACE}','{$CONSUL.LLD.FILTER.SERVICE_NAMESPACE.MATCHES}'), ('3948','43134','9','{#SERVICE_NAMESPACE}','{$CONSUL.LLD.FILTER.SERVICE_NAMESPACE.NOT_MATCHES}'), ('3949','43565','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('3950','43565','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('3951','43565','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('3952','43565','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('3953','43565','8','{#IFNAME}','@Network interfaces for discovery'), ('3954','43565','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('3955','43565','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('3956','43565','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('3957','43565','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('3958','43565','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('3959','43565','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('3960','43565','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('3961','43642','8','{#ALARM_SERVICE_NAMESPACE}','{$AWS.RDS.LLD.FILTER.ALARM_SERVICE_NAMESPACE.MATCHES}'), ('3962','43642','9','{#ALARM_SERVICE_NAMESPACE}','{$AWS.RDS.LLD.FILTER.ALARM_SERVICE_NAMESPACE.NOT_MATCHES}'), ('3963','43642','8','{#ALARM_NAME}','{$AWS.RDS.LLD.FILTER.ALARM_NAME.MATCHES}'), ('3964','43642','9','{#ALARM_NAME}','{$AWS.RDS.LLD.FILTER.ALARM_NAME.NOT_MATCHES}'), ('3965','43644','8','{#EVENT_CATEGORY}','{$AWS.RDS.LLD.FILTER.EVENT_CATEGORY.MATCHES}'), ('3966','43644','9','{#EVENT_CATEGORY}','{$AWS.RDS.LLD.FILTER.EVENT_CATEGORY.NOT_MATCHES}'), ('3967','43644','8','{#EVENT_SOURCE_TYPE}','{$AWS.RDS.LLD.FILTER.EVENT_SOURCE_TYPE.MATCHES}'), ('3968','43644','9','{#EVENT_SOURCE_TYPE}','{$AWS.RDS.LLD.FILTER.EVENT_SOURCE_TYPE.NOT_MATCHES}'), ('3969','43711','8','{#ALARM_NAME}','{$AWS.S3.LLD.FILTER.ALARM_NAME.MATCHES}'), ('3970','43711','9','{#ALARM_NAME}','{$AWS.S3.LLD.FILTER.ALARM_NAME.NOT_MATCHES}'), ('3971','43768','8','{#TYPE}','^Microsoft.Compute/virtualMachines$'), ('3972','43768','8','{#NAME}','{$AZURE.VM.NAME.MATCHES}'), ('3973','43768','9','{#NAME}','{$AZURE.VM.NAME.NOT.MATCHES}'), ('3974','43768','8','{#LOCATION}','{$AZURE.VM.LOCATION.MATCHES}'), ('3975','43768','9','{#LOCATION}','{$AZURE.VM.LOCATION.NOT.MATCHES}'), ('3976','43768','8','{#GROUP}','{$AZURE.RESOURCE.GROUP.MATCHES}'), ('3977','43768','9','{#GROUP}','{$AZURE.RESOURCE.GROUP.NOT.MATCHES}'), ('3978','44052','8','{#AWS.EC2.INSTANCE.NAME}','{$AWS.EC2.LLD.FILTER.NAME.MATCHES}'), ('3979','44052','9','{#AWS.EC2.INSTANCE.NAME}','{$AWS.EC2.LLD.FILTER.NAME.NOT_MATCHES}'), ('3980','44053','8','{#AWS.RDS.INSTANCE.ID}','{$AWS.RDS.LLD.FILTER.NAME.MATCHES}'), ('3981','44053','9','{#AWS.RDS.INSTANCE.ID}','{$AWS.RDS.LLD.FILTER.NAME.NOT_MATCHES}'), ('3982','44054','8','{#AWS.S3.NAME}','{$AWS.S3.LLD.FILTER.NAME.MATCHES}'), ('3983','44054','9','{#AWS.S3.NAME}','{$AWS.S3.LLD.FILTER.NAME.NOT_MATCHES}'), ('3984','44200','8','{#TYPE}','^Microsoft.DBforMySQL'), ('3985','44200','8','{#NAME}','{$AZURE.MYSQL.DB.NAME.MATCHES}'), ('3986','44200','9','{#NAME}','{$AZURE.MYSQL.DB.NAME.NOT.MATCHES}'), ('3987','44200','8','{#LOCATION}','{$AZURE.MYSQL.DB.LOCATION.MATCHES}'), ('3988','44200','9','{#LOCATION}','{$AZURE.MYSQL.DB.LOCATION.NOT.MATCHES}'), ('3989','44200','8','{#GROUP}','{$AZURE.RESOURCE.GROUP.MATCHES}'), ('3990','44200','9','{#GROUP}','{$AZURE.RESOURCE.GROUP.NOT.MATCHES}'), ('3994','44293','8','{#TYPE}','^Microsoft.DBforPostgreSQL'), ('3995','44293','8','{#NAME}','{$AZURE.PGSQL.DB.NAME.MATCHES}'), ('3996','44293','9','{#NAME}','{$AZURE.PGSQL.DB.NAME.NOT.MATCHES}'), ('3997','44293','8','{#LOCATION}','{$AZURE.PGSQL.DB.LOCATION.MATCHES}'), ('3998','44293','9','{#LOCATION}','{$AZURE.PGSQL.DB.LOCATION.NOT.MATCHES}'), ('3999','44293','8','{#GROUP}','{$AZURE.RESOURCE.GROUP.MATCHES}'), ('4000','44293','9','{#GROUP}','{$AZURE.RESOURCE.GROUP.NOT.MATCHES}'), ('4001','44314','8','{#NAME}','{$MERAKI.DEVICE.NAME.MATCHES}'), ('4002','44314','9','{#NAME}','{$MERAKI.DEVICE.NAME.NOT_MATCHES}'), ('4003','44315','8','{#NAME}','{$MERAKI.ORGANIZATION.NAME.MATCHES}'), ('4004','44315','9','{#NAME}','{$MERAKI.ORGANIZATION.NAME.NOT_MATCHES}'), ('4005','44336','8','{#APACHE.NAME}','{$APACHE.PROCESS_NAME}'), ('4006','44344','8','{#NGINX.NAME}','{$NGINX.PROCESS_NAME}'), ('4007','44352','8','{#PHP_FPM.NAME}','{$PHP_FPM.PROCESS_NAME}'), ('4008','44360','8','{#RABBITMQ.NAME}','{$RABBITMQ.PROCESS_NAME}'), ('4009','44396','8','{#ENT_SN}','{$ENT_SN.MATCHES}'), ('4010','44396','9','{#ENT_CLASS}','{$ENT_CLASS.NOT_MATCHES}'), ('4011','44397','8','{#SNMPVALUE}','{$CISCO.LLD.FILTER.FAN.NAME.MATCHES}'), ('4012','44399','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('4013','44399','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('4014','44399','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('4015','44399','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('4016','44399','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('4017','44399','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('4018','44399','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('4019','44399','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('4020','44399','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('4021','44399','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('4022','44399','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('4023','44399','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('4024','44400','8','{#SNMPVALUE}','(2|3)'), ('4025','44400','8','{#IFOPERSTATUS}','1'), ('4026','44401','8','{#SNMPVALUE}','{$CISCO.LLD.FILTER.PSU.NAME.MATCHES}'), ('4027','44316','8','{#UPLINK}','{$MERAKI.DEVICE.UPLINK.MATCHES}'), ('4028','44316','9','{#UPLINK}','{$MERAKI.DEVICE.UPLINK.NOT_MATCHES}'), ('4029','44316','8','{#IP}','{$MERAKI.DEVICE.LOSS.LATENCY.IP.MATCHES}'), ('4030','44316','9','{#IP}','{$MERAKI.DEVICE.LOSS.LATENCY.IP.NOT_MATCHES}'), ('4031','44496','8','{#TYPE}','{$JOB.TYPE.MATCHES}'), ('4032','44496','9','{#TYPE}','{$JOB.TYPE.NOT_MATCHES}'), ('4033','44496','8','{#NAME}','{$JOB.NAME.MATCHES}'), ('4034','44496','9','{#NAME}','{$JOB.NAME.NOT_MATCHES}'), ('4035','44496','8','{#JOB.STATUS}','{$JOB.STATUS.MATCHES}'), ('4036','44496','9','{#JOB.STATUS}','{$JOB.STATUS.NOT_MATCHES}'), ('4037','44497','8','{#TYPE}','{$PROXIES.TYPE.MATCHES}'), ('4038','44497','9','{#TYPE}','{$PROXIES.TYPE.NOT_MATCHES}'), ('4039','44497','8','{#NAME}','{$PROXIES.NAME.MATCHES}'), ('4040','44497','9','{#NAME}','{$PROXIES.NAME.NOT_MATCHES}'), ('4041','44498','8','{#TYPE}','{$REPOSITORIES.TYPE.MATCHES}'), ('4042','44498','9','{#TYPE}','{$REPOSITORIES.TYPE.NOT_MATCHES}'), ('4043','44498','8','{#NAME}','{$REPOSITORIES.NAME.MATCHES}'), ('4044','44498','9','{#NAME}','{$REPOSITORIES.NAME.NOT_MATCHES}'), ('4045','44499','8','{#TYPE}','{$SESSION.TYPE.MATCHES}'), ('4046','44499','9','{#TYPE}','{$SESSION.TYPE.NOT_MATCHES}'), ('4047','44499','8','{#NAME}','{$SESSION.NAME.MATCHES}'), ('4048','44499','9','{#NAME}','{$SESSION.NAME.NOT_MATCHES}'), ('4049','44525','8','{#TYPE}','{$BACKUP.TYPE.MATCHES}'), ('4050','44525','9','{#TYPE}','{$BACKUP.TYPE.NOT_MATCHES}'), ('4051','44525','8','{#NAME}','{$BACKUP.NAME.MATCHES}'), ('4052','44525','9','{#NAME}','{$BACKUP.NAME.NOT_MATCHES}'), ('4053','44585','8','{#TYPE}','^Microsoft.Sql/servers/databases'), ('4054','44585','8','{#NAME}','{$AZURE.MSSQL.DB.NAME.MATCHES}'), ('4055','44585','9','{#NAME}','{$AZURE.MSSQL.DB.NAME.NOT.MATCHES}'), ('4056','44585','8','{#LOCATION}','{$AZURE.MSSQL.DB.LOCATION.MATCHES}'), ('4057','44585','9','{#LOCATION}','{$AZURE.MSSQL.DB.LOCATION.NOT.MATCHES}'), ('4058','44585','8','{#GROUP}','{$AZURE.RESOURCE.GROUP.MATCHES}'), ('4059','44585','9','{#GROUP}','{$AZURE.RESOURCE.GROUP.NOT.MATCHES}'), ('4060','44585','9','{#SIZE}','{$AZURE.MSSQL.DB.SIZE.NOT.MATCHES}'), ('4061','44643','9','{#VMEM}','-1'), ('4062','44643','8','{#NAME}','{$PROC.NAME.MATCHES}'), ('4063','44643','9','{#NAME}','{$PROC.NAME.NOT_MATCHES}'), ('4064','44676','8','{#NAME}','{$SMART.DISK.NAME.MATCHES}'), ('4065','44676','9','{#NAME}','{$SMART.DISK.NAME.NOT_MATCHES}'), ('4066','44697','8','{#NAME}','{$SMART.DISK.NAME.MATCHES}'), ('4067','44697','9','{#NAME}','{$SMART.DISK.NAME.NOT_MATCHES}'), ('4068','44733','8','{#NAME}','{$KUBE.LLD.FILTER.NODE.MATCHES}'), ('4069','44733','9','{#NAME}','{$KUBE.LLD.FILTER.NODE.NOT_MATCHES}'), ('4070','44733','8','{#ROLES}','{$KUBE.LLD.FILTER.NODE.ROLE.MATCHES}'), ('4071','44733','9','{#ROLES}','{$KUBE.LLD.FILTER.NODE.ROLE.NOT_MATCHES}'), ('4072','44818','8','{#TYPE}','^Microsoft.DocumentDB/databaseAccounts'), ('4073','44818','8','{#NAME}','{$AZURE.COSMOS.MONGO.DB.NAME.MATCHES}'), ('4074','44818','9','{#NAME}','{$AZURE.COSMOS.MONGO.DB.NAME.NOT.MATCHES}'), ('4075','44818','8','{#LOCATION}','{$AZURE.COSMOS.MONGO.DB.LOCATION.MATCHES}'), ('4076','44818','9','{#LOCATION}','{$AZURE.COSMOS.MONGO.DB.LOCATION.NOT.MATCHES}'), ('4077','44818','8','{#GROUP}','{$AZURE.RESOURCE.GROUP.MATCHES}'), ('4078','44818','9','{#GROUP}','{$AZURE.RESOURCE.GROUP.NOT.MATCHES}'), ('4079','44819','8','{#NAME}','{$AZURE.STORAGE.ACC.NAME.MATCHES}'), ('4080','44819','9','{#NAME}','{$AZURE.STORAGE.ACC.NAME.NOT.MATCHES}'), ('4081','44819','8','{#LOCATION}','{$AZURE.STORAGE.ACC.LOCATION.MATCHES}'), ('4082','44819','9','{#LOCATION}','{$AZURE.STORAGE.ACC.LOCATION.NOT.MATCHES}'), ('4083','44819','8','{#GROUP}','{$AZURE.RESOURCE.GROUP.MATCHES}'), ('4084','44819','9','{#GROUP}','{$AZURE.RESOURCE.GROUP.NOT.MATCHES}'), ('4085','45034','8','{#CLOUD_SQL.INSTANCE.DB.TYPE}','SQLSERVER.*'), ('4086','45034','8','{#CLOUD_SQL.INSTANCE.NAME}','{$GCP.MSSQL.INST.NAME.MATCHES}'), ('4087','45034','9','{#CLOUD_SQL.INSTANCE.NAME}','{$GCP.MSSQL.INST.NAME.NOT_MATCHES}'), ('4088','45034','8','{#CLOUD_SQL.INSTANCE.ZONE}','{$GCP.MSSQL.ZONE.MATCHES}'), ('4089','45034','9','{#CLOUD_SQL.INSTANCE.ZONE}','{$GCP.MSSQL.ZONE.NOT_MATCHES}'), ('4090','45034','8','{#CLOUD_SQL.INSTANCE.TYPE}','{$GCP.MSSQL.INST.TYPE.MATCHES}'), ('4091','45034','9','{#CLOUD_SQL.INSTANCE.TYPE}','{$GCP.MSSQL.INST.TYPE.NOT_MATCHES}'), ('4092','45035','8','{#CLOUD_SQL.INSTANCE.DB.TYPE}','MYSQL.*'), ('4093','45035','8','{#CLOUD_SQL.INSTANCE.NAME}','{$GCP.MYSQL.INST.NAME.MATCHES}'), ('4094','45035','9','{#CLOUD_SQL.INSTANCE.NAME}','{$GCP.MYSQL.INST.NAME.NOT_MATCHES}'), ('4095','45035','8','{#CLOUD_SQL.INSTANCE.ZONE}','{$GCP.MYSQL.ZONE.MATCHES}'), ('4096','45035','9','{#CLOUD_SQL.INSTANCE.ZONE}','{$GCP.MYSQL.ZONE.NOT_MATCHES}'), ('4097','45035','8','{#CLOUD_SQL.INSTANCE.TYPE}','{$GCP.MYSQL.INST.TYPE.MATCHES}'), ('4098','45035','9','{#CLOUD_SQL.INSTANCE.TYPE}','{$GCP.MYSQL.INST.TYPE.NOT_MATCHES}'), ('4099','45036','8','{#CLOUD_SQL.INSTANCE.DB.TYPE}','POSTGRES.*'), ('4100','45036','8','{#CLOUD_SQL.INSTANCE.NAME}','{$GCP.PGSQL.INST.NAME.MATCHES}'), ('4101','45036','9','{#CLOUD_SQL.INSTANCE.NAME}','{$GCP.PGSQL.INST.NAME.NOT_MATCHES}'), ('4102','45036','8','{#CLOUD_SQL.INSTANCE.ZONE}','{$GCP.PGSQL.ZONE.MATCHES}'), ('4103','45036','9','{#CLOUD_SQL.INSTANCE.ZONE}','{$GCP.PGSQL.ZONE.NOT_MATCHES}'), ('4104','45036','8','{#CLOUD_SQL.INSTANCE.TYPE}','{$GCP.PGSQL.INST.TYPE.MATCHES}'), ('4105','45036','9','{#CLOUD_SQL.INSTANCE.TYPE}','{$GCP.PGSQL.TYPE.NOT_MATCHES}'), ('4106','45037','8','{#GCE.INSTANCE.NAME}','{$GCP.GCE.INST.NAME.MATCHES}'), ('4107','45037','9','{#GCE.INSTANCE.NAME}','{$GCP.GCE.INST.NAME.NOT_MATCHES}'), ('4108','45037','8','{#GCE.INSTANCE.ZONE}','{$GCP.GCE.ZONE.MATCHES}'), ('4109','45037','9','{#GCE.INSTANCE.ZONE}','{$GCP.GCE.ZONE.NOT_MATCHES}'), ('4110','45038','8','{#GCE.QUOTA.NAME}','{$GCP.GCE.QUOTA.MATCHES}'), ('4111','45038','9','{#GCE.QUOTA.NAME}','{$GCP.GCE.QUOTA.NOT_MATCHES}'), ('4112','45039','8','{#DB.NAME}','{$CLOUD_SQL.MSSQL.DB.NAME.MATCHES}'), ('4113','45039','9','{#DB.NAME}','{$CLOUD_SQL.MSSQL.DB.NAME.NOT_MATCHES}'), ('4114','45040','8','{#RESOURCE.NAME}','{$CLOUD_SQL.MSSQL.RES.NAME.MATCHES}'), ('4115','45040','9','{#RESOURCE.NAME}','{$CLOUD_SQL.MSSQL.RES.NAME.NOT_MATCHES}'), ('4116','45041','8','{#SCHEDULER.ID}','{$CLOUD_SQL.MSSQL.SCHEDULER.ID.MATCHES}'), ('4117','45041','9','{#SCHEDULER.ID}','{$CLOUD_SQL.MSSQL.SCHEDULER.ID.NOT_MATCHES}'), ('4118','45042','8','{#PGSQL.DB.NAME}','{$GCP.CLOUD_SQL.DB.NAME.MATCHES}'), ('4119','45042','9','{#PGSQL.DB.NAME}','{$GCP.CLOUD_SQL.DB.NAME.NOT_MATCHES}'), ('4120','45043','8','{#GCE.DISK.NAME}','{$GCE.DISK.NAME.MATCHES}'), ('4121','45043','9','{#GCE.DISK.NAME}','{$GCE.DISK.NAME.NOT_MATCHES}'), ('4122','45043','8','{#GCE.DISK.DEV_TYPE}','{$GCE.DISK.DEV_TYPE.MATCHES}'), ('4123','45043','9','{#GCE.DISK.DEV_TYPE}','{$GCE.DISK.DEV_TYPE.NOT_MATCHES}'), ('4124','45043','8','{#GCE.DISK.STOR_TYPE}','{$GCE.DISK.STOR_TYPE.MATCHES}'), ('4125','45043','9','{#GCE.DISK.STOR_TYPE}','{$GCE.DISK.STOR_TYPE.NOT_MATCHES}'), ('4126','45081','8','{#DB}','{$CLICKHOUSE.LLD.FILTER.DB.MATCHES}'), ('4127','45081','9','{#DB}','{$CLICKHOUSE.LLD.FILTER.DB.NOT_MATCHES}'), ('4128','30876','8','{#TABLE}','{$CLICKHOUSE.LLD.FILTER.TABLE.MATCHES}'), ('4129','30876','9','{#TABLE}','{$CLICKHOUSE.LLD.FILTER.TABLE.NOT_MATCHES}'), ('4130','31765','8','{#TABLESPACE}','{$ORACLE.TABLESPACE.NAME.MATCHES}'), ('4131','31765','9','{#TABLESPACE}','{$ORACLE.TABLESPACE.NAME.NOT_MATCHES}'), ('4132','31257','8','{#TABLESPACE}','{$ORACLE.TABLESPACE.NAME.MATCHES}'), ('4133','31257','9','{#TABLESPACE}','{$ORACLE.TABLESPACE.NAME.NOT_MATCHES}'), ('4134','40653','8','{#SNMPVALUE}','(2|3)'), ('4135','42412','8','{#SNMPVALUE}','(2|3)'), ('4136','45523','8','{#AWS.BILLING.SERVICE.NAME}','{$AWS.BILLING.LLD.FILTER.SERVICE.MATCHES}'), ('4137','45523','9','{#AWS.BILLING.SERVICE.NAME}','{$AWS.BILLING.LLD.FILTER.SERVICE.NOT_MATCHES}'), ('4138','45524','8','{#AWS.BILLING.SERVICE.NAME}','{$AWS.BILLING.LLD.FILTER.SERVICE.MATCHES}'), ('4139','45524','9','{#AWS.BILLING.SERVICE.NAME}','{$AWS.BILLING.LLD.FILTER.SERVICE.NOT_MATCHES}'), ('4140','45542','8','{#ALARM_SERVICE_NAMESPACE}','{$AWS.ECS.LLD.FILTER.ALARM_SERVICE_NAMESPACE.MATCHES}'), ('4141','45542','9','{#ALARM_SERVICE_NAMESPACE}','{$AWS.ECS.LLD.FILTER.ALARM_SERVICE_NAMESPACE.NOT_MATCHES}'), ('4142','45542','8','{#ALARM_NAME}','{$AWS.ECS.LLD.FILTER.ALARM_NAME.MATCHES}'), ('4143','45542','9','{#ALARM_NAME}','{$AWS.ECS.LLD.FILTER.ALARM_NAME.NOT_MATCHES}'), ('4144','45543','8','{#AWS.ECS.SERVICE.NAME}','{$AWS.ECS.LLD.FILTER.SERVICE.MATCHES}'), ('4145','45543','9','{#AWS.ECS.SERVICE.NAME}','{$AWS.ECS.LLD.FILTER.SERVICE.NOT_MATCHES}'), ('4146','45574','8','{#ALARM_SERVICE_NAMESPACE}','{$AWS.ECS.LLD.FILTER.ALARM_SERVICE_NAMESPACE.MATCHES}'), ('4147','45574','9','{#ALARM_SERVICE_NAMESPACE}','{$AWS.ECS.LLD.FILTER.ALARM_SERVICE_NAMESPACE.NOT_MATCHES}'), ('4148','45574','8','{#ALARM_NAME}','{$AWS.ECS.LLD.FILTER.ALARM_NAME.MATCHES}'), ('4149','45574','9','{#ALARM_NAME}','{$AWS.ECS.LLD.FILTER.ALARM_NAME.NOT_MATCHES}'), ('4150','45575','8','{#AWS.ECS.SERVICE.NAME}','{$AWS.ECS.LLD.FILTER.SERVICE.MATCHES}'), ('4151','45575','9','{#AWS.ECS.SERVICE.NAME}','{$AWS.ECS.LLD.FILTER.SERVICE.NOT_MATCHES}'), ('4152','45595','8','{#AWS.ECS.CLUSTER.NAME}','{$AWS.ECS.LLD.FILTER.NAME.MATCHES}'), ('4153','45595','9','{#AWS.ECS.CLUSTER.NAME}','{$AWS.ECS.LLD.FILTER.NAME.NOT_MATCHES}'), ('4154','45595','8','{#AWS.ECS.CLUSTER.STATUS}','{$AWS.ECS.LLD.FILTER.STATUS.MATCHES}'), ('4155','45595','9','{#AWS.ECS.CLUSTER.STATUS}','{$AWS.ECS.LLD.FILTER.STATUS.NOT_MATCHES}'), ('4156','45612','8','{#SERVICE_NAME}','^Nova$'), ('4157','45613','8','{#ZONE_NAME}','{$OPENSTACK.AVAILABILITY_ZONE.DISCOVERY.NAME.MATCHES}'), ('4158','45613','9','{#ZONE_NAME}','{$OPENSTACK.AVAILABILITY_ZONE.DISCOVERY.NAME.NOT_MATCHES}'), ('4159','45614','8','{#HOSTNAME}','{$OPENSTACK.HYPERVISOR.DISCOVERY.HOSTNAME.MATCHES}'), ('4160','45614','9','{#HOSTNAME}','{$OPENSTACK.HYPERVISOR.DISCOVERY.HOSTNAME.NOT_MATCHES}'), ('4161','45614','8','{#TYPE}','{$OPENSTACK.HYPERVISOR.DISCOVERY.TYPE.MATCHES}'), ('4162','45614','9','{#TYPE}','{$OPENSTACK.HYPERVISOR.DISCOVERY.TYPE.NOT_MATCHES}'), ('4163','45614','8','{#HOST_IP}','{$OPENSTACK.HYPERVISOR.DISCOVERY.IP.MATCHES}'), ('4164','45614','9','{#HOST_IP}','{$OPENSTACK.HYPERVISOR.DISCOVERY.IP.NOT_MATCHES}'), ('4165','45615','8','{#SERVER_NAME}','{$OPENSTACK.SERVER.DISCOVERY.NAME.MATCHES}'), ('4166','45615','9','{#SERVER_NAME}','{$OPENSTACK.SERVER.DISCOVERY.NAME.NOT_MATCHES}'), ('4167','45616','8','{#HOST}','{$OPENSTACK.SERVICES.DISCOVERY.HOST.MATCHES}'), ('4168','45616','9','{#HOST}','{$OPENSTACK.SERVICES.DISCOVERY.HOST.NOT_MATCHES}'), ('4169','45616','8','{#BINARY}','{$OPENSTACK.SERVICES.DISCOVERY.BINARY.MATCHES}'), ('4170','45616','9','{#BINARY}','{$OPENSTACK.SERVICES.DISCOVERY.BINARY.NOT_MATCHES}'), ('4171','45697','8','{#DBNAME}','{$PG.LLD.FILTER.DBNAME}'), ('4172','45698','8','{#APPLICATION_NAME}','{$PG.LLD.FILTER.APPLICATION}'), ('4173','45787','8','{#NAME}','{$SDWAN.DEVICE.NAME.MATCHES}'), ('4174','45787','9','{#NAME}','{$SDWAN.DEVICE.NAME.NOT_MATCHES}'), ('4175','45788','8','{#FSNAME}','{$SDWAN.LLD.FILTER.FSNAME.MATCHES}'), ('4176','45788','9','{#FSNAME}','{$SDWAN.LLD.FILTER.FSNAME.NOT_MATCHES}'), ('4177','45789','8','{#IFNAME}','{$SDWAN.LLD.FILTER.IFNAME.MATCHES}'), ('4178','45789','9','{#IFNAME}','{$SDWAN.LLD.FILTER.IFNAME.NOT_MATCHES}'), ('4179','45819','8','{#NAME}','{$MANTIS.LLD.FILTER.PROJECTS.MATCHES}'), ('4180','45819','9','{#NAME}','{$MANTIS.LLD.FILTER.PROJECTS.NOT_MATCHES}'), ('4181','45819','8','{#ENABLED}','true'), ('4182','46022','8','{#CLIENT.NAME}','{$NOMAD.CLIENT.NAME.MATCHES}'), ('4183','46022','9','{#CLIENT.NAME}','{$NOMAD.CLIENT.NAME.NOT_MATCHES}'), ('4184','46022','8','{#CLIENT.DC}','{$NOMAD.CLIENT.DC.MATCHES}'), ('4185','46022','9','{#CLIENT.DC}','{$NOMAD.CLIENT.DC.NOT_MATCHES}'), ('4186','46022','8','{#CLIENT.SCHEDULE.ELIGIBILITY}','{$NOMAD.CLIENT.SCHEDULE.ELIGIBILITY.MATCHES}'), ('4187','46022','9','{#CLIENT.SCHEDULE.ELIGIBILITY}','{$NOMAD.CLIENT.SCHEDULE.ELIGIBILITY.NOT_MATCHES}'), ('4188','46023','8','{#SERVER.NAME}','{$NOMAD.SERVER.NAME.MATCHES}'), ('4189','46023','9','{#SERVER.NAME}','{$NOMAD.SERVER.NAME.NOT_MATCHES}'), ('4190','46023','8','{#SERVER.DC}','{$NOMAD.SERVER.DC.MATCHES}'), ('4191','46023','9','{#SERVER.DC}','{$NOMAD.SERVER.DC.NOT_MATCHES}'), ('4192','46024','8','{#JOB.NAME}','{$NOMAD.JOB.NAME.MATCHES}'), ('4193','46024','9','{#JOB.NAME}','{$NOMAD.JOB.NAME.NOT_MATCHES}'), ('4194','46024','8','{#JOB.TASK.GROUP}','{$NOMAD.JOB.TASK.GROUP.MATCHES}'), ('4195','46024','9','{#JOB.TASK.GROUP}','{$NOMAD.JOB.TASK.GROUP.NOT_MATCHES}'), ('4196','46024','8','{#JOB.NAMESPACE}','{$NOMAD.JOB.NAMESPACE.MATCHES}'), ('4197','46024','9','{#JOB.NAMESPACE}','{$NOMAD.JOB.NAMESPACE.NOT_MATCHES}'), ('4198','46024','8','{#JOB.TYPE}','{$NOMAD.JOB.TYPE.MATCHES}'), ('4199','46024','9','{#JOB.TYPE}','{$NOMAD.JOB.TYPE.NOT_MATCHES}'), ('4200','46025','8','{#DEV.NAME}','{$NOMAD.DISK.NAME.MATCHES}'), ('4201','46025','9','{#DEV.NAME}','{$NOMAD.DISK.NAME.NOT_MATCHES}'), ('4202','46026','8','{#DRIVER.NAME}','{$NOMAD.DRIVER.NAME.MATCHES}'), ('4203','46026','9','{#DRIVER.NAME}','{$NOMAD.DRIVER.NAME.NOT_MATCHES}'), ('4204','46026','8','{#DRIVER.DETECTED}','{$NOMAD.DRIVER.DETECT.MATCHES}'), ('4205','46026','9','{#DRIVER.DETECTED}','{$NOMAD.DRIVER.DETECT.NOT_MATCHES}'), ('4206','46061','8','{#CATEGORY}','{$ACRONIS.CPC.ALERT.DISCOVERY.CATEGORY.MATCHES}'), ('4207','46061','9','{#CATEGORY}','{$ACRONIS.CPC.ALERT.DISCOVERY.CATEGORY.NOT_MATCHES}'), ('4208','46061','8','{#RESOURCE_NAME}','{$ACRONIS.CPC.ALERT.DISCOVERY.RESOURCE.MATCHES}'), ('4209','46061','9','{#RESOURCE_NAME}','{$ACRONIS.CPC.ALERT.DISCOVERY.RESOURCE.NOT_MATCHES}'), ('4210','46061','8','{#SEVERITY}','{$ACRONIS.CPC.ALERT.DISCOVERY.SEVERITY.MATCHES}'), ('4211','46061','9','{#SEVERITY}','{$ACRONIS.CPC.ALERT.DISCOVERY.SEVERITY.NOT_MATCHES}'), ('4212','46062','8','{#KIND}','{$ACRONIS.CPC.CUSTOMER.DISCOVERY.KIND.MATCHES}'), ('4213','46062','8','{#NAME}','{$ACRONIS.CPC.CUSTOMER.DISCOVERY.NAME.MATCHES}'), ('4214','46062','9','{#NAME}','{$ACRONIS.CPC.CUSTOMER.DISCOVERY.NAME.NOT_MATCHES}'), ('4215','46063','8','{#TENANT_NAME}','{$ACRONIS.CPC.DEVICE.DISCOVERY.TENANT.MATCHES}'), ('4216','46063','9','{#TENANT_NAME}','{$ACRONIS.CPC.DEVICE.DISCOVERY.TENANT.NOT_MATCHES}'), ('4217','44314','8','{#STATUS}','{$MERAKI.DEVICE.STATUS.MATCHES}'), ('4218','44314','9','{#STATUS}','{$MERAKI.DEVICE.STATUS.NOT_MATCHES}'), ('4219','44317','8','{#NETWORK.NAME}','{$MERAKI.LLD.UPLINK.NETWORK.NAME.MATCHES}'), ('4220','44317','9','{#NETWORK.NAME}','{$MERAKI.LLD.UPLINK.NETWORK.NAME.NOT_MATCHES}'), ('4221','44317','8','{#UPLINK.ROLE}','{$MERAKI.LLD.UPLINK.ROLE.MATCHES}'), ('4222','44317','9','{#UPLINK.ROLE}','{$MERAKI.LLD.UPLINK.ROLE.NOT_MATCHES}'), ('4223','44318','8','{#NETWORK.NAME}','{$MERAKI.LLD.VPN.NETWORK.NAME.MATCHES}'), ('4224','44318','9','{#NETWORK.NAME}','{$MERAKI.LLD.VPN.NETWORK.NAME.NOT_MATCHES}'), ('4225','44318','8','{#PEER.NETWORK.NAME}','{$MERAKI.LLD.VPN.PEER.NETWORK.NAME.MATCHES}'), ('4226','44318','9','{#PEER.NETWORK.NAME}','{$MERAKI.LLD.VPN.PEER.NETWORK.NAME.NOT_MATCHES}'), ('4227','44318','8','{#RECEIVER.UPLINK}','{$MERAKI.LLD.VPN.RECEIVER.UPLINK.MATCHES}'), ('4228','44318','9','{#RECEIVER.UPLINK}','{$MERAKI.LLD.VPN.RECEIVER.UPLINK.NOT_MATCHES}'), ('4229','44318','8','{#SENDER.UPLINK}','{$MERAKI.LLD.VPN.SENDER.UPLINK.MATCHES}'), ('4230','44318','9','{#SENDER.UPLINK}','{$MERAKI.LLD.VPN.SENDER.UPLINK.NOT_MATCHES}'), ('4231','46116','8','{#NEXTCLOUD.USER}','{$NEXTCLOUD.LLD.FILTER.USER.MATCHES}'), ('4232','46116','9','{#NEXTCLOUD.USER}','{$NEXTCLOUD.LLD.FILTER.USER.NOT_MATCHES}'), ('4233','44052','8','{#AWS.EC2.INSTANCE.REGION}','{$AWS.EC2.LLD.FILTER.REGION.MATCHES}'), ('4234','44052','9','{#AWS.EC2.INSTANCE.REGION}','{$AWS.EC2.LLD.FILTER.REGION.NOT_MATCHES}'), ('4235','44053','8','{#AWS.RDS.REGION}','{$AWS.RDS.LLD.FILTER.REGION.MATCHES}'), ('4236','44053','9','{#AWS.RDS.REGION}','{$AWS.RDS.LLD.FILTER.REGION.NOT_MATCHES}'), ('4239','45595','8','{#AWS.ECS.CLUSTER.REGION}','{$AWS.ECS.LLD.FILTER.REGION.MATCHES}'), ('4240','45595','9','{#AWS.ECS.CLUSTER.REGION}','{$AWS.ECS.LLD.FILTER.REGION.NOT_MATCHES}'), ('4241','46163','8','{#FWACTION}','{$FWP.FWACTION.MATCHES}'), ('4242','46163','9','{#FWACTION}','{$FWP.FWACTION.NOT_MATCHES}'), ('4243','46163','8','{#FWNAME}','{$FWP.FWNAME.MATCHES}'), ('4244','46163','9','{#FWNAME}','{$FWP.FWNAME.NOT_MATCHES}'), ('4245','46163','8','{#FWTYPE}','{$FWP.FWTYPE.MATCHES}'), ('4246','46163','9','{#FWTYPE}','{$FWP.FWTYPE.NOT_MATCHES}'), ('4247','46164','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('4248','46164','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('4249','46164','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('4250','46164','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('4251','46164','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('4252','46164','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('4253','46164','8','{#IFSTATUS}','{$NET.IF.IFSTATUS.MATCHES}'), ('4254','46164','9','{#IFSTATUS}','{$NET.IF.IFSTATUS.NOT_MATCHES}'), ('4255','46164','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('4256','46164','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('4257','46165','8','{#IFNAME}','{$SDWAN.HEALTH.IFNAME.MATCHES}'), ('4258','46165','9','{#IFNAME}','{$SDWAN.HEALTH.IFNAME.NOT_MATCHES}'), ('4259','46165','8','{#MID}','{$SDWAN.HEALTH.ID.MATCHES}'), ('4260','46165','9','{#MID}','{$SDWAN.HEALTH.ID.NOT_MATCHES}'), ('4261','46165','8','{#NAME}','{$SDWAN.HEALTH.NAME.MATCHES}'), ('4262','46165','9','{#NAME}','{$SDWAN.HEALTH.NAME.NOT_MATCHES}'), ('4263','46165','8','{#STATUS}','{$SDWAN.HEALTH.STATUS.MATCHES}'), ('4264','46165','9','{#STATUS}','{$SDWAN.HEALTH.STATUS.NOT_MATCHES}'), ('4265','46166','8','{#ID}','{$SDWAN.MEMBER.ID.MATCHES}'), ('4266','46166','9','{#ID}','{$SDWAN.MEMBER.ID.NOT_MATCHES}'), ('4267','46166','8','{#NAME}','{$SDWAN.MEMBER.NAME.MATCHES}'), ('4268','46166','9','{#NAME}','{$SDWAN.MEMBER.NAME.NOT_MATCHES}'), ('4269','46166','8','{#STATUS}','{$SDWAN.MEMBER.STATUS.MATCHES}'), ('4270','46166','9','{#STATUS}','{$SDWAN.MEMBER.STATUS.NOT_MATCHES}'), ('4271','46166','8','{#ZONE}','{$SDWAN.MEMBER.ZONE.MATCHES}'), ('4272','46166','9','{#ZONE}','{$SDWAN.MEMBER.ZONE.NOT_MATCHES}'), ('4273','46167','8','{#KEY}','{$SERVICE.KEY.MATCHES}'), ('4274','46167','9','{#KEY}','{$SERVICE.KEY.NOT_MATCHES}'), ('4275','46167','8','{#STATUS}','{$SERVICE.STATUS.MATCHES}'), ('4276','46167','9','{#STATUS}','{$SERVICE.STATUS.NOT_MATCHES}'), ('4277','46167','8','{#TYPE}','{$SERVICE.TYPE.MATCHES}'), ('4278','46167','9','{#TYPE}','{$SERVICE.TYPE.NOT_MATCHES}'), ('4279','46237','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('4280','46237','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('4281','46237','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('4282','46237','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('4283','46237','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('4284','46237','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('4285','46237','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('4286','46237','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('4287','46237','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('4288','46237','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('4289','46237','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('4290','46237','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('4295','46263','8','{#LICENSE.STATE}','{$MERAKI.LICENSE.STATE.MATCHES}'), ('4296','46263','9','{#LICENSE.STATE}','{$MERAKI.LICENSE.STATE.NOT_MATCHES}'), ('4297','46263','8','{#LICENSE.TYPE}','{$MERAKI.LICENSE.TYPE.MATCHES}'), ('4298','46263','9','{#LICENSE.TYPE}','{$MERAKI.LICENSE.TYPE.NOT_MATCHES}'), ('4303','46295','8','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.MATCHES}'), ('4304','46295','9','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.NOT_MATCHES}'), ('4305','46296','8','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.MATCHES}'), ('4306','46296','9','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.NOT_MATCHES}'), ('4307','46298','8','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.MATCHES}'), ('4308','46298','9','{#NAMESPACE}','{$KUBE.LLD.FILTER.NAMESPACE.NOT_MATCHES}'), ('4309','46321','8','{#SYSTEM_HOSTNAME}','{$ILO.COMPUTER_SYSTEM.DISCOVERY.HOSTNAME.MATCHES:"System"}'), ('4310','46321','9','{#SYSTEM_HOSTNAME}','{$ILO.COMPUTER_SYSTEM.DISCOVERY.HOSTNAME.NOT_MATCHES:"System"}'), ('4311','46321','8','{#SYSTEM_TYPE}','{$ILO.COMPUTER_SYSTEM.DISCOVERY.TYPE.MATCHES:"System"}'), ('4312','46321','9','{#SYSTEM_TYPE}','{$ILO.COMPUTER_SYSTEM.DISCOVERY.TYPE.NOT_MATCHES:"System"}'), ('4313','46322','8','{#SYSTEM_HOSTNAME}','{$ILO.COMPUTER_SYSTEM.DISCOVERY.HOSTNAME.MATCHES:"Controller"}'), ('4314','46322','9','{#SYSTEM_HOSTNAME}','{$ILO.COMPUTER_SYSTEM.DISCOVERY.HOSTNAME.NOT_MATCHES:"Controller"}'), ('4315','46322','8','{#SYSTEM_TYPE}','{$ILO.COMPUTER_SYSTEM.DISCOVERY.TYPE.MATCHES:"Controller"}'), ('4316','46322','9','{#SYSTEM_TYPE}','{$ILO.COMPUTER_SYSTEM.DISCOVERY.TYPE.NOT_MATCHES:"Controller"}'), ('4317','46323','8','{#SYSTEM_HOSTNAME}','{$ILO.COMPUTER_SYSTEM.DISCOVERY.HOSTNAME.MATCHES:"Drive"}'), ('4318','46323','9','{#SYSTEM_HOSTNAME}','{$ILO.COMPUTER_SYSTEM.DISCOVERY.HOSTNAME.NOT_MATCHES:"Drive"}'), ('4319','46323','8','{#SYSTEM_TYPE}','{$ILO.COMPUTER_SYSTEM.DISCOVERY.TYPE.MATCHES:"Drive"}'), ('4320','46323','9','{#SYSTEM_TYPE}','{$ILO.COMPUTER_SYSTEM.DISCOVERY.TYPE.NOT_MATCHES:"Drive"}'), ('4321','46324','9','{#FAN_STATE}','Absent'), ('4322','46326','9','{#PSU_STATE}','Absent'), ('4323','46327','8','{#SENSOR_CONTEXT}','{$ILO.SENSOR.DISCOVERY.CONTEXT.MATCHES}'), ('4324','46327','9','{#SENSOR_CONTEXT}','{$ILO.SENSOR.DISCOVERY.CONTEXT.NOT_MATCHES}'), ('4325','46327','8','{#SENSOR_NAME}','{$ILO.SENSOR.DISCOVERY.NAME.MATCHES}'), ('4326','46327','9','{#SENSOR_NAME}','{$ILO.SENSOR.DISCOVERY.NAME.NOT_MATCHES}'), ('4327','46327','9','{#SENSOR_STATE}','Absent'), ('4328','46328','8','{#SYSTEM_HOSTNAME}','{$ILO.COMPUTER_SYSTEM.DISCOVERY.HOSTNAME.MATCHES:"Storage"}'), ('4329','46328','9','{#SYSTEM_HOSTNAME}','{$ILO.COMPUTER_SYSTEM.DISCOVERY.HOSTNAME.NOT_MATCHES:"Storage"}'), ('4330','46328','8','{#SYSTEM_TYPE}','{$ILO.COMPUTER_SYSTEM.DISCOVERY.TYPE.MATCHES:"Storage"}'), ('4331','46328','9','{#SYSTEM_TYPE}','{$ILO.COMPUTER_SYSTEM.DISCOVERY.TYPE.NOT_MATCHES:"Storage"}'), ('4332','46329','8','{#SYSTEM_HOSTNAME}','{$ILO.COMPUTER_SYSTEM.DISCOVERY.HOSTNAME.MATCHES:"Volume"}'), ('4333','46329','9','{#SYSTEM_HOSTNAME}','{$ILO.COMPUTER_SYSTEM.DISCOVERY.HOSTNAME.NOT_MATCHES:"Volume"}'), ('4334','46329','8','{#SYSTEM_TYPE}','{$ILO.COMPUTER_SYSTEM.DISCOVERY.TYPE.MATCHES:"Volume"}'), ('4335','46329','9','{#SYSTEM_TYPE}','{$ILO.COMPUTER_SYSTEM.DISCOVERY.TYPE.NOT_MATCHES:"Volume"}'), ('4336','46373','8','{#AWS.S3.FILTER.ID.NAME}','{$AWS.S3.LLD.FILTER.ID.NAME.MATCHES}'), ('4337','46373','9','{#AWS.S3.FILTER.ID.NAME}','{$AWS.S3.LLD.FILTER.ID.NAME.NOT_MATCHES}'), ('4338','46398','8','{#AZURE.RESOURCE.GROUP}','{$AZURE.LLD.FILTER.RESOURCE.GROUP.MATCHES}'), ('4339','46398','9','{#AZURE.RESOURCE.GROUP}','{$AZURE.LLD.FILTER.RESOURCE.GROUP.NOT_MATCHES}'), ('4340','46398','8','{#AZURE.RESOURCE.LOCATION}','{$AZURE.LLD.FILTER.RESOURCE.LOCATION.MATCHES}'), ('4341','46398','9','{#AZURE.RESOURCE.LOCATION}','{$AZURE.LLD.FILTER.RESOURCE.LOCATION.NOT_MATCHES}'), ('4342','46398','8','{#AZURE.SERVICE.NAME}','{$AZURE.LLD.FILTER.SERVICE.MATCHES}'), ('4343','46398','9','{#AZURE.SERVICE.NAME}','{$AZURE.LLD.FILTER.SERVICE.NOT_MATCHES}'), ('4344','46400','8','{#AZURE.RESOURCE.LOCATION}','{$AZURE.LLD.FILTER.RESOURCE.LOCATION.MATCHES}'), ('4345','46400','9','{#AZURE.RESOURCE.LOCATION}','{$AZURE.LLD.FILTER.RESOURCE.LOCATION.NOT_MATCHES}'), ('4346','46401','8','{#AZURE.RESOURCE.GROUP}','{$AZURE.LLD.FILTER.RESOURCE.GROUP.MATCHES}'), ('4347','46401','9','{#AZURE.RESOURCE.GROUP}','{$AZURE.LLD.FILTER.RESOURCE.GROUP.NOT_MATCHES}'), ('4348','46402','8','{#AZURE.SERVICE.NAME}','{$AZURE.LLD.FILTER.SERVICE.MATCHES}'), ('4349','46402','9','{#AZURE.SERVICE.NAME}','{$AZURE.LLD.FILTER.SERVICE.NOT_MATCHES}'), ('4350','46483','8','{#ALARM_NAME}','{$AWS.ELB.LLD.FILTER.ALARM_NAME.MATCHES}'), ('4351','46483','9','{#ALARM_NAME}','{$AWS.ELB.LLD.FILTER.ALARM_NAME.NOT_MATCHES}'), ('4352','46483','8','{#ALARM_SERVICE_NAMESPACE}','{$AWS.ELB.LLD.FILTER.ALARM_SERVICE_NAMESPACE.MATCHES}'), ('4353','46483','9','{#ALARM_SERVICE_NAMESPACE}','{$AWS.ELB.LLD.FILTER.ALARM_SERVICE_NAMESPACE.NOT_MATCHES}'), ('4354','46484','8','{#AWS.ELB.TARGET.GROUP.NAME}','{$AWS.ELB.LLD.FILTER.TARGET.GROUP.MATCHES}'), ('4355','46484','9','{#AWS.ELB.TARGET.GROUP.NAME}','{$AWS.ELB.LLD.FILTER.TARGET.GROUP.NOT_MATCHES}'), ('4356','46503','8','{#AWS.ELB.NAME}','{$AWS.ELB.LLD.FILTER.NAME.MATCHES}'), ('4357','46503','9','{#AWS.ELB.NAME}','{$AWS.ELB.LLD.FILTER.NAME.NOT_MATCHES}'), ('4358','46503','8','{#AWS.ELB.REGION}','{$AWS.ELB.LLD.FILTER.REGION.MATCHES}'), ('4359','46503','9','{#AWS.ELB.REGION}','{$AWS.ELB.LLD.FILTER.REGION.NOT_MATCHES}'), ('4360','46503','8','{#AWS.ELB.STATE}','{$AWS.ELB.LLD.FILTER.STATE.MATCHES}'), ('4361','46503','9','{#AWS.ELB.STATE}','{$AWS.ELB.LLD.FILTER.STATE.NOT_MATCHES}'), ('4362','46595','8','{#DBNAME}','{$MSSQL.DBNAME.MATCHES}'), ('4363','46595','9','{#DBNAME}','{$MSSQL.DBNAME.NOT_MATCHES}'), ('4364','46596','8','{#JOBNAME}','{$MSSQL.JOB.MATCHES}'), ('4365','46596','9','{#JOBNAME}','{$MSSQL.JOB.NOT_MATCHES}'), ('4366','46790','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('4367','46790','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('4368','46790','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('4369','46790','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('4370','46790','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('4371','46790','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('4372','46790','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('4373','46790','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('4374','46790','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('4375','46790','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('4376','46790','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('4377','46790','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('4378','46792','8','{#SW.NAME}','{$SW.NAME.MATCHES}'), ('4379','46792','9','{#SW.NAME}','{$SW.NAME.NOT_MATCHES}'), ('4380','46793','8','{#SENSOR.NAME}','{$TEMP.NAME.MATCHES}'), ('4381','46793','9','{#SENSOR.NAME}','{$TEMP.NAME.NOT_MATCHES}'), ('4382','46794','8','{#DISK.NAME}','{$DISK.NAME.MATCHES}'), ('4383','46794','9','{#DISK.NAME}','{$DISK.NAME.NOT_MATCHES}'), ('4384','46795','8','{#SENSOR.NAME}','{$VOLT.NAME.MATCHES}'), ('4385','46795','9','{#SENSOR.NAME}','{$VOLT.NAME.NOT_MATCHES}'), ('4386','46796','8','{#VPN.NAME}','{$VPN.NAME.MATCHES}'), ('4387','46796','9','{#VPN.NAME}','{$VPN.NAME.NOT_MATCHES}'), ('4388','46933','8','{#NAME}','{$OCI.VOLUME.BLOCK.DISCOVERY.NAME.MATCHES}'), ('4389','46933','9','{#NAME}','{$OCI.VOLUME.BLOCK.DISCOVERY.NAME.NOT_MATCHES}'), ('4390','46933','8','{#STATE}','{$OCI.VOLUME.BLOCK.DISCOVERY.STATE.MATCHES}'), ('4391','46933','9','{#STATE}','{$OCI.VOLUME.BLOCK.DISCOVERY.STATE.NOT_MATCHES}'), ('4392','46934','8','{#NAME}','{$OCI.VOLUME.BOOT.DISCOVERY.NAME.MATCHES}'), ('4393','46934','9','{#NAME}','{$OCI.VOLUME.BOOT.DISCOVERY.NAME.NOT_MATCHES}'), ('4394','46934','8','{#STATE}','{$OCI.VOLUME.BOOT.DISCOVERY.STATE.MATCHES}'), ('4395','46934','9','{#STATE}','{$OCI.VOLUME.BOOT.DISCOVERY.STATE.NOT_MATCHES}'), ('4396','46935','8','{#NAME}','{$OCI.COMPUTE.DISCOVERY.NAME.MATCHES}'), ('4397','46935','9','{#NAME}','{$OCI.COMPUTE.DISCOVERY.NAME.NOT_MATCHES}'), ('4398','46935','8','{#STATE}','{$OCI.COMPUTE.DISCOVERY.STATE.MATCHES}'), ('4399','46935','9','{#STATE}','{$OCI.COMPUTE.DISCOVERY.STATE.NOT_MATCHES}'), ('4400','46936','8','{#NAME}','{$OCI.AUTONOMOUS.DB.DISCOVERY.NAME.MATCHES}'), ('4401','46936','9','{#NAME}','{$OCI.AUTONOMOUS.DB.DISCOVERY.NAME.NOT_MATCHES}'), ('4402','46936','8','{#STATE}','{$OCI.AUTONOMOUS.DB.DISCOVERY.STATE.MATCHES}'), ('4403','46936','9','{#STATE}','{$OCI.AUTONOMOUS.DB.DISCOVERY.STATE.NOT_MATCHES}'), ('4404','46937','8','{#NAME}','{$OCI.OBJECT.STORAGE.DISCOVERY.NAME.MATCHES}'), ('4405','46937','9','{#NAME}','{$OCI.OBJECT.STORAGE.DISCOVERY.NAME.NOT_MATCHES}'), ('4406','46938','8','{#NAME}','{$OCI.VCN.DISCOVERY.NAME.MATCHES}'), ('4407','46938','9','{#NAME}','{$OCI.VCN.DISCOVERY.NAME.NOT_MATCHES}'), ('4408','46938','8','{#STATE}','{$OCI.VCN.DISCOVERY.STATE.MATCHES}'), ('4409','46938','9','{#STATE}','{$OCI.VCN.DISCOVERY.STATE.NOT_MATCHES}'), ('4410','46939','8','{#NAME}','{$OCI.COMPUTE.VNIC.DISCOVERY.NAME.MATCHES}'), ('4411','46939','9','{#NAME}','{$OCI.COMPUTE.VNIC.DISCOVERY.NAME.NOT_MATCHES}'), ('4412','46939','8','{#STATE}','{$OCI.COMPUTE.VNIC.DISCOVERY.STATE.MATCHES}'), ('4413','46939','9','{#STATE}','{$OCI.COMPUTE.VNIC.DISCOVERY.STATE.NOT_MATCHES}'), ('4414','46940','8','{#NAME}','{$OCI.VCN.SUBNET.DISCOVERY.NAME.MATCHES}'), ('4415','46940','9','{#NAME}','{$OCI.VCN.SUBNET.DISCOVERY.NAME.NOT_MATCHES}'), ('4416','46940','8','{#STATE}','{$OCI.VCN.SUBNET.DISCOVERY.STATE.MATCHES}'), ('4417','46940','9','{#STATE}','{$OCI.VCN.SUBNET.DISCOVERY.STATE.NOT_MATCHES}'), ('4418','46993','8','{#CPU.TYPE}','12356.101.4.4.3.1'), ('4419','46993','8','{#CPU.TYPE}','12356.101.4.4.3.2'), ('4420','46993','8','{#CPU.TYPE}','12356.101.4.4.3.3'), ('4421','46994','8','{#HA.SN}','{$HA.MEMBER.SN.MATCHES}'), ('4422','46994','9','{#HA.SN}','{$HA.MEMBER.SN.NOT_MATCHES}'), ('4423','46996','8','{#HNAME}','{$SDWAN.HEALTH.NAME.MATCHES}'), ('4424','46996','9','{#HNAME}','{$SDWAN.HEALTH.NAME.NOT_MATCHES}'), ('4425','46997','8','{#CPU.TYPE}','12356.101.4.4.3.9'), ('4426','46998','8','{#VDOM.NAME}','{$VDOM.NAME.MATCHES}'), ('4427','46998','9','{#VDOM.NAME}','{$VDOM.NAME.NOT_MATCHES}'), ('4428','46999','8','{#VPN.NAME}','{$VPN.NAME.MATCHES}'), ('4429','46999','9','{#VPN.NAME}','{$VPN.NAME.NOT_MATCHES}'), ('4430','47000','8','{#WC.NAME}','{$WC.NAME.MATCHES}'), ('4431','47000','9','{#WC.NAME}','{$WC.NAME.NOT_MATCHES}'), ('4432','47067','9','{#NAME}','VMware Rollup Health State'), ('4433','47067','8','{#NAME}','{$VMWARE.HV.SENSOR.DISCOVERY.NAME.MATCHES}'), ('4434','47067','9','{#NAME}','{$VMWARE.HV.SENSOR.DISCOVERY.NAME.NOT_MATCHES}'), ('4435','32763','8','{#JMXNAME}','{$TOMCAT.LLD.FILTER.REQUEST_PROCESSOR.MATCHES}'), ('4436','32763','9','{#JMXNAME}','{$TOMCAT.LLD.FILTER.REQUEST_PROCESSOR.NOT_MATCHES}'), ('4437','32764','8','{#JMXHOST}','{$TOMCAT.LLD.FILTER.MANAGER.MATCHES}'), ('4438','32764','9','{#JMXHOST}','{$TOMCAT.LLD.FILTER.MANAGER.NOT_MATCHES}'), ('4439','32765','8','{#JMXNAME}','{$TOMCAT.LLD.FILTER.THREAD_POOL.MATCHES}'), ('4440','32765','9','{#JMXNAME}','{$TOMCAT.LLD.FILTER.THREAD_POOL.NOT_MATCHES}'), ('4441','47105','8','{#ALARM_NAME}','{$AWS.ELB.LLD.FILTER.ALARM_NAME.MATCHES}'), ('4442','47105','9','{#ALARM_NAME}','{$AWS.ELB.LLD.FILTER.ALARM_NAME.NOT_MATCHES}'), ('4443','47105','8','{#ALARM_SERVICE_NAMESPACE}','{$AWS.ELB.LLD.FILTER.ALARM_SERVICE_NAMESPACE.MATCHES}'), ('4444','47105','9','{#ALARM_SERVICE_NAMESPACE}','{$AWS.ELB.LLD.FILTER.ALARM_SERVICE_NAMESPACE.NOT_MATCHES}'), ('4445','47106','8','{#AWS.ELB.TARGET.GROUP.NAME}','{$AWS.ELB.LLD.FILTER.TARGET.GROUP.MATCHES}'), ('4446','47106','9','{#AWS.ELB.TARGET.GROUP.NAME}','{$AWS.ELB.LLD.FILTER.TARGET.GROUP.NOT_MATCHES}'), ('4447','30472','8','{#DBNAME}','{$MYSQL.DBNAME.MATCHES}'), ('4448','30472','9','{#DBNAME}','{$MYSQL.DBNAME.NOT_MATCHES}'), ('4449','30678','8','{#DATABASE}','{$MYSQL.DBNAME.MATCHES}'), ('4450','30678','9','{#DATABASE}','{$MYSQL.DBNAME.NOT_MATCHES}'), ('4451','30520','8','{#DATABASE}','{$MYSQL.DBNAME.MATCHES}'), ('4452','30520','9','{#DATABASE}','{$MYSQL.DBNAME.NOT_MATCHES}'), ('4453','22947','8','{#FSNAME}','{$VFS.FS.FSNAME.MATCHES}'), ('4454','22947','9','{#FSNAME}','{$VFS.FS.FSNAME.NOT_MATCHES}'), ('4455','22947','8','{#FSTYPE}','{$VFS.FS.FSTYPE.MATCHES}'), ('4456','22947','9','{#FSTYPE}','{$VFS.FS.FSTYPE.NOT_MATCHES}'), ('4457','22907','8','{#FSNAME}','{$VFS.FS.FSNAME.MATCHES}'), ('4458','22907','9','{#FSNAME}','{$VFS.FS.FSNAME.NOT_MATCHES}'), ('4459','22907','8','{#FSTYPE}','{$VFS.FS.FSTYPE.MATCHES}'), ('4460','22907','9','{#FSTYPE}','{$VFS.FS.FSTYPE.NOT_MATCHES}'), ('4461','22987','8','{#FSNAME}','{$VFS.FS.FSNAME.MATCHES}'), ('4462','22987','9','{#FSNAME}','{$VFS.FS.FSNAME.NOT_MATCHES}'), ('4463','22987','8','{#FSTYPE}','{$VFS.FS.FSTYPE.MATCHES}'), ('4464','22987','9','{#FSTYPE}','{$VFS.FS.FSTYPE.NOT_MATCHES}'), ('4465','42414','8','{#FSDEVICE}','{$VFS.FS.FSDEVICE.MATCHES}'), ('4466','42414','9','{#FSDEVICE}','{$VFS.FS.FSDEVICE.NOT_MATCHES}'), ('4467','23067','8','{#FSNAME}','{$VFS.FS.FSNAME.MATCHES}'), ('4468','23067','9','{#FSNAME}','{$VFS.FS.FSNAME.NOT_MATCHES}'), ('4469','23067','8','{#FSTYPE}','{$VFS.FS.FSTYPE.MATCHES}'), ('4470','23067','9','{#FSTYPE}','{$VFS.FS.FSTYPE.NOT_MATCHES}'), ('4471','22867','8','{#FSNAME}','{$VFS.FS.FSNAME.MATCHES}'), ('4472','22867','9','{#FSNAME}','{$VFS.FS.FSNAME.NOT_MATCHES}'), ('4473','22867','8','{#FSTYPE}','{$VFS.FS.FSTYPE.MATCHES}'), ('4474','22867','9','{#FSTYPE}','{$VFS.FS.FSTYPE.NOT_MATCHES}'), ('4475','23027','8','{#FSNAME}','{$VFS.FS.FSNAME.MATCHES}'), ('4476','23027','9','{#FSNAME}','{$VFS.FS.FSNAME.NOT_MATCHES}'), ('4477','23027','8','{#FSTYPE}','{$VFS.FS.FSTYPE.MATCHES}'), ('4478','23027','9','{#FSTYPE}','{$VFS.FS.FSTYPE.NOT_MATCHES}'), ('4479','40809','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('4480','40809','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('4481','42144','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('4482','42144','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('4483','42165','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('4484','42165','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('4485','47187','8','{#JMXCATEGORY01}','{$JIRA_DC.LLD.FILTER.MATCHES.HOMEFOLDERS}'), ('4486','47187','9','{#JMXCATEGORY01}','{$JIRA_DC.LLD.FILTER.NOT.MATCHES.HOMEFOLDERS}'), ('4487','47188','8','{#JMXNAME}','{$JIRA_DC.LLD.FILTER.MATCHES.INDEXING}'), ('4488','47188','9','{#JMXNAME}','{$JIRA_DC.LLD.FILTER.NOT.MATCHES.INDEXING}'), ('4489','47189','8','{#JMXNAME}','{$JIRA_DC.LLD.FILTER.MATCHES.ISSUE}'), ('4490','47189','9','{#JMXNAME}','{$JIRA_DC.LLD.FILTER.NOT.MATCHES.ISSUE}'), ('4491','47190','8','{#JMXCATEGORY01}','{$JIRA_DC.LLD.FILTER.MATCHES.MAIL}'), ('4492','47190','9','{#JMXCATEGORY01}','{$JIRA_DC.LLD.FILTER.NOT.MATCHES.MAIL}'), ('4493','47191','8','{#LICENSE.TYPE}','{$JIRA_DC.LLD.FILTER.MATCHES.LICENSE}'), ('4494','47191','9','{#LICENSE.TYPE}','{$JIRA_DC.LLD.FILTER.NOT.MATCHES.LICENSE}'), ('4495','47278','8','{#GROUP}','{$AZURE.RESOURCE.GROUP.MATCHES}'), ('4496','47278','9','{#GROUP}','{$AZURE.RESOURCE.GROUP.NOT.MATCHES}'), ('4497','47278','8','{#LOCATION}','{$AZURE.SCALESET.LOCATION.MATCHES}'), ('4498','47278','9','{#LOCATION}','{$AZURE.SCALESET.LOCATION.NOT.MATCHES}'), ('4499','47278','8','{#NAME}','{$AZURE.SCALESET.NAME.MATCHES}'), ('4500','47278','9','{#NAME}','{$AZURE.SCALESET.NAME.NOT.MATCHES}'), ('4501','47278','8','{#TYPE}','^Microsoft.Compute/virtualMachineScaleSets$'), ('4502','43768','13','{#SCALESET}',''), ('4503','47296','8','{#ALARM_NAME}','{$AWS.LAMBDA.LLD.FILTER.ALARM_NAME.MATCHES}'), ('4504','47296','9','{#ALARM_NAME}','{$AWS.LAMBDA.LLD.FILTER.ALARM_NAME.NOT_MATCHES}'), ('4505','47296','8','{#ALARM_SERVICE_NAMESPACE}','{$AWS.LAMBDA.LLD.FILTER.ALARM_SERVICE_NAMESPACE.MATCHES}'), ('4506','47296','9','{#ALARM_SERVICE_NAMESPACE}','{$AWS.LAMBDA.LLD.FILTER.ALARM_SERVICE_NAMESPACE.NOT_MATCHES}'), ('4507','47300','8','{#AWS.LAMBDA.NAME}','{$AWS.LAMBDA.LLD.FILTER.NAME.MATCHES}'), ('4508','47300','9','{#AWS.LAMBDA.NAME}','{$AWS.LAMBDA.LLD.FILTER.NAME.NOT_MATCHES}'), ('4509','47300','8','{#AWS.LAMBDA.REGION}','{$AWS.LAMBDA.LLD.FILTER.REGION.MATCHES}'), ('4510','47300','9','{#AWS.LAMBDA.REGION}','{$AWS.LAMBDA.LLD.FILTER.REGION.NOT_MATCHES}'), ('4511','47300','8','{#AWS.LAMBDA.RUNTIME}','{$AWS.LAMBDA.LLD.FILTER.RUNTIME.MATCHES}'), ('4512','47300','9','{#AWS.LAMBDA.RUNTIME}','{$AWS.LAMBDA.LLD.FILTER.RUNTIME.NOT_MATCHES}'), ('4513','47324','8','{#BRANCH_NAME}','{$GITHUB.BRANCH.NAME.MATCHES}'), ('4514','47324','9','{#BRANCH_NAME}','{$GITHUB.BRANCH.NAME.NOT_MATCHES}'), ('4515','47326','8','{#RUNNER_NAME}','{$GITHUB.RUNNER.NAME.MATCHES}'), ('4516','47326','9','{#RUNNER_NAME}','{$GITHUB.RUNNER.NAME.NOT_MATCHES}'), ('4517','47326','8','{#RUNNER_OS}','{$GITHUB.RUNNER.OS.MATCHES}'), ('4518','47326','9','{#RUNNER_OS}','{$GITHUB.RUNNER.OS.NOT_MATCHES}'), ('4519','47327','8','{#WORKFLOW_NAME}','{$GITHUB.WORKFLOW.NAME.MATCHES}'), ('4520','47327','9','{#WORKFLOW_NAME}','{$GITHUB.WORKFLOW.NAME.NOT_MATCHES}'), ('4521','47327','8','{#WORKFLOW_STATE}','{$GITHUB.WORKFLOW.STATE.MATCHES}'), ('4522','47327','9','{#WORKFLOW_STATE}','{$GITHUB.WORKFLOW.STATE.NOT_MATCHES}'), ('4523','47513','8','{#NAME}','{$MS365.SERVICE.NAME.MATCHES}'), ('4524','47513','9','{#NAME}','{$MS365.SERVICE.NAME.NOT.MATCHES}'), ('4525','31658','8','{#VM.POWERSTATE}','{$VMWARE.VM.POWERSTATE}'), ('4526','32957','8','{#VM.POWERSTATE}','{$VMWARE.VM.POWERSTATE}'), ('4527','47553','8','{#PROXY.GROUP.NAME}','{$PROXY.GROUP.DISCOVERY.NAME.MATCHES}'), ('4528','47553','9','{#PROXY.GROUP.NAME}','{$PROXY.GROUP.DISCOVERY.NAME.NOT_MATCHES}'), ('4529','47554','8','{#PROXY.GROUP.NAME}','{$PROXY.GROUP.DISCOVERY.NAME.MATCHES}'), ('4530','47554','9','{#PROXY.GROUP.NAME}','{$PROXY.GROUP.DISCOVERY.NAME.NOT_MATCHES}'), ('4531','34476','9','{#EXTERNAL_PACKS}','-1'), ('4532','34524','9','{#EXTERNAL_PACKS}','-1'), ('4533','34572','9','{#EXTERNAL_PACKS}','-1'), ('4534','34620','9','{#EXTERNAL_PACKS}','-1'), ('4535','34668','9','{#EXTERNAL_PACKS}','-1'), ('4536','35041','9','{#EXTERNAL_PACKS}','-1'), ('4537','34764','9','{#EXTERNAL_PACKS}','-1'), ('4538','34207','9','{#EXTERNAL_PACKS}','-1'), ('4539','34818','9','{#EXTERNAL_PACKS}','-1'), ('4540','34866','9','{#EXTERNAL_PACKS}','-1'), ('4541','34914','9','{#EXTERNAL_PACKS}','-1'), ('4542','47662','8','{#APACHE.NAME}','{$APACHE.PROCESS_NAME}'), ('4543','47702','8','{#NGINX.NAME}','{$NGINX.PROCESS_NAME}'), ('4544','47925','8','{#ALERT.NAME}','{$NUTANIX.ALERT.DISCOVERY.NAME.MATCHES}'), ('4545','47925','9','{#ALERT.NAME}','{$NUTANIX.ALERT.DISCOVERY.NAME.NOT_MATCHES}'), ('4546','47925','8','{#ALERT.SEVERITY}','{$NUTANIX.ALERT.DISCOVERY.SEVERITY.MATCHES}'), ('4547','47925','8','{#ALERT.STATE}','{$NUTANIX.ALERT.DISCOVERY.STATE.MATCHES}'), ('4548','47926','8','{#ALERT.NAME}','{$NUTANIX.ALERT.DISCOVERY.NAME.MATCHES}'), ('4549','47926','9','{#ALERT.NAME}','{$NUTANIX.ALERT.DISCOVERY.NAME.NOT_MATCHES}'), ('4550','47926','8','{#ALERT.SEVERITY}','{$NUTANIX.ALERT.DISCOVERY.SEVERITY.MATCHES}'), ('4551','47926','8','{#ALERT.STATE}','{$NUTANIX.ALERT.DISCOVERY.STATE.MATCHES}'), ('4552','47928','8','{#NUTANIX.CLUSTER.NAME}','{$NUTANIX.CLUSTER.DISCOVERY.NAME.MATCHES}'), ('4553','47928','9','{#NUTANIX.CLUSTER.NAME}','{$NUTANIX.CLUSTER.DISCOVERY.NAME.NOT_MATCHES}'), ('4554','47929','8','{#NUTANIX.HOST.NAME}','{$NUTANIX.HOST.DISCOVERY.NAME.MATCHES}'), ('4555','47929','9','{#NUTANIX.HOST.NAME}','{$NUTANIX.HOST.DISCOVERY.NAME.NOT_MATCHES}'), ('4556','47930','8','{#STORAGE.CONTAINER.NAME}','{$NUTANIX.STORAGE.CONTAINER.DISCOVERY.NAME.MATCHES}'), ('4557','47930','9','{#STORAGE.CONTAINER.NAME}','{$NUTANIX.STORAGE.CONTAINER.DISCOVERY.NAME.NOT_MATCHES}'), ('4558','47978','8','{#PHP_FPM.NAME}','{$PHP_FPM.PROCESS_NAME}'), ('4559','48035','8','{#DATABASE}','{$MYSQL.DBNAME.MATCHES}'), ('4560','48035','9','{#DATABASE}','{$MYSQL.DBNAME.NOT_MATCHES}'), ('4561','48097','8','{#DBNAME}','{$MYSQL.DBNAME.MATCHES}'), ('4562','48097','9','{#DBNAME}','{$MYSQL.DBNAME.NOT_MATCHES}'), ('4563','48176','8','{#DBNAME}','{$PG.LLD.FILTER.DBNAME}'), ('4564','48177','8','{#APPLICATION_NAME}','{$PG.LLD.FILTER.APPLICATION}'), ('4565','48263','8','{#DBNAME}','{$PG.LLD.FILTER.DBNAME}'), ('4566','48322','8','{#SNMPVALUE}','FPC.*'), ('4567','48322','8','{#SNMPVALUE}','Routing Engine.*'), ('4568','48323','8','{#IFALIAS}','{$JUNIPER.MX.NET.IF.IFALIAS.MATCHES}'), ('4569','48323','9','{#IFALIAS}','{$JUNIPER.MX.NET.IF.IFALIAS.NOT_MATCHES}'), ('4570','48323','8','{#IFDESCR}','{$JUNIPER.MX.NET.IF.IFDESCR.MATCHES}'), ('4571','48323','9','{#IFDESCR}','{$JUNIPER.MX.NET.IF.IFDESCR.NOT_MATCHES}'), ('4572','48323','8','{#IFNAME}','{$JUNIPER.MX.NET.IF.IFNAME.MATCHES}'), ('4573','48323','9','{#IFNAME}','{$JUNIPER.MX.NET.IF.IFNAME.NOT_MATCHES}'), ('4574','48323','9','{#LASERTEMP}','^0$'), ('4575','48323','12','{#MODULELANECOUNT}',''), ('4576','48323','9','{#RXLASER}','^0$'), ('4577','48325','8','{#IFADMINSTATUS}','{$JUNIPER.MX.NET.IF.IFADMINSTATUS.MATCHES}'), ('4578','48325','9','{#IFADMINSTATUS}','{$JUNIPER.MX.NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('4579','48325','8','{#IFALIAS}','{$JUNIPER.MX.NET.IF.IFALIAS.MATCHES}'), ('4580','48325','9','{#IFALIAS}','{$JUNIPER.MX.NET.IF.IFALIAS.NOT_MATCHES}'), ('4581','48325','8','{#IFDESCR}','{$JUNIPER.MX.NET.IF.IFDESCR.MATCHES}'), ('4582','48325','9','{#IFDESCR}','{$JUNIPER.MX.NET.IF.IFDESCR.NOT_MATCHES}'), ('4583','48325','8','{#IFNAME}','{$JUNIPER.MX.NET.IF.IFNAME.MATCHES}'), ('4584','48325','9','{#IFNAME}','{$JUNIPER.MX.NET.IF.IFNAME.NOT_MATCHES}'), ('4585','48325','8','{#IFOPERSTATUS}','{$JUNIPER.MX.NET.IF.IFOPERSTATUS.MATCHES}'), ('4586','48325','9','{#IFOPERSTATUS}','{$JUNIPER.MX.NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('4587','48325','8','{#IFTYPE}','{$JUNIPER.MX.NET.IF.IFTYPE.MATCHES}'), ('4588','48325','9','{#IFTYPE}','{$JUNIPER.MX.NET.IF.IFTYPE.NOT_MATCHES}'), ('4589','48326','8','{#IFOPERSTATUS}','1'), ('4590','48326','8','{#SNMPVALUE}','(2|3)'), ('4591','48326','12','{#SNMPVALUE}',''), ('4592','48331','8','{#SNMPVALUE}','[^0]+'), ('4593','48383','8','{#GROUP}','{$AZURE.RESOURCE.GROUP.MATCHES}'), ('4594','48383','9','{#GROUP}','{$AZURE.RESOURCE.GROUP.NOT.MATCHES}'), ('4595','48383','8','{#LOCATION}','{$AZURE.SQL.INST.LOCATION.MATCHES}'), ('4596','48383','9','{#LOCATION}','{$AZURE.SQL.INST.LOCATION.NOT.MATCHES}'), ('4597','48383','8','{#NAME}','{$AZURE.SQL.INST.NAME.MATCHES}'), ('4598','48383','9','{#NAME}','{$AZURE.SQL.INST.NAME.NOT.MATCHES}'), ('4599','48383','8','{#TYPE}','^Microsoft.Sql/managedInstances$'), ('4600','46600','8','{#CLUSTER_NAME}','^.+$'), ('4601','46601','8','{#CLUSTER_NAME}','^.+$'), ('4602','46601','8','{#MEMBER_NAME}','{$MSSQL.QUORUM.MEMBER.DISCOVERY.NAME.MATCHES}'), ('4603','46601','9','{#MEMBER_NAME}','{$MSSQL.QUORUM.MEMBER.DISCOVERY.NAME.NOT_MATCHES}'), ('4604','46420','8','{#CLUSTER_NAME}','^.+$'), ('4605','46421','8','{#CLUSTER_NAME}','^.+$'), ('4606','46421','8','{#MEMBER_NAME}','{$MSSQL.QUORUM.MEMBER.DISCOVERY.NAME.MATCHES}'), ('4607','46421','9','{#MEMBER_NAME}','{$MSSQL.QUORUM.MEMBER.DISCOVERY.NAME.NOT_MATCHES}'), ('4608','48422','8','{#PEER}','{$PAN.PA440.BGP.PEER.NAME.MATCHES}'), ('4609','48422','9','{#PEER}','{$PAN.PA440.BGP.PEER.NAME.NOT_MATCHES}'), ('4610','48422','8','{#PEERGROUP}','{$PAN.PA440.BGP.PEER.GROUP.MATCHES}'), ('4611','48422','9','{#PEERGROUP}','{$PAN.PA440.BGP.PEER.GROUP.NOT_MATCHES}'), ('4612','48424','8','{#CERTNAME}','{$PAN.PA440.CERT.NAME.MATCHES}'), ('4613','48424','9','{#CERTNAME}','{$PAN.PA440.CERT.NAME.NOT_MATCHES}'), ('4614','48424','9','{#EXPIRES}','Never'), ('4615','48427','8','{#IFNAME}','{$PAN.PA440.IF.HW.IFNAME.MATCHES}'), ('4616','48427','9','{#IFNAME}','{$PAN.PA440.IF.HW.IFNAME.NOT_MATCHES}'), ('4617','48428','8','{#IFNAME}','{$PAN.PA440.IF.SW.IFNAME.MATCHES}'), ('4618','48428','9','{#IFNAME}','{$PAN.PA440.IF.SW.IFNAME.NOT_MATCHES}'), ('4619','48428','8','{#IFZONE}','{$PAN.PA440.IF.SW.IFZONE.MATCHES}'), ('4620','48428','9','{#IFZONE}','{$PAN.PA440.IF.SW.IFZONE.NOT_MATCHES}'), ('4621','48428','8','{#VSYS}','{$PAN.PA440.IF.SW.VSYS.MATCHES}'), ('4622','48428','9','{#VSYS}','{$PAN.PA440.IF.SW.VSYS.NOT_MATCHES}'), ('4623','48429','8','{#DESCRIPTION}','{$PAN.PA440.LICENSE.DESC.MATCHES}'), ('4624','48429','9','{#DESCRIPTION}','{$PAN.PA440.LICENSE.DESC.NOT_MATCHES}'), ('4625','48429','9','{#EXPIRES}','Never'), ('4626','48429','8','{#FEATURE}','{$PAN.PA440.LICENSE.FEATURE.MATCHES}'), ('4627','48429','9','{#FEATURE}','{$PAN.PA440.LICENSE.FEATURE.NOT_MATCHES}'), ('4628','48430','8','{#NEIGHBORADDR}','{$PAN.PA440.OSPF.NEIGHBOR.ADDR.MATCHES}'), ('4629','48430','9','{#NEIGHBORADDR}','{$PAN.PA440.OSPF.NEIGHBOR.ADDR.NOT_MATCHES}'), ('4630','48430','8','{#NEIGHBORAREA}','{$PAN.PA440.OSPF.NEIGHBOR.AREA.MATCHES}'), ('4631','48430','9','{#NEIGHBORAREA}','{$PAN.PA440.OSPF.NEIGHBOR.AREA.NOT_MATCHES}'), ('4632','48431','8','{#NEIGHBORADDR}','{$PAN.PA440.OSPFV3.NEIGHBOR.ADDR.MATCHES}'), ('4633','48431','9','{#NEIGHBORADDR}','{$PAN.PA440.OSPFV3.NEIGHBOR.ADDR.NOT_MATCHES}'), ('4634','48431','8','{#NEIGHBORAREA}','{$PAN.PA440.OSPFV3.NEIGHBOR.AREA.MATCHES}'), ('4635','48431','9','{#NEIGHBORAREA}','{$PAN.PA440.OSPFV3.NEIGHBOR.AREA.NOT_MATCHES}'), ('4636','48545','8','{#TYPE}','3'), ('4637','48553','8','{#VPROBE_NAME}','{$DELL.SNMP.DISCOVERY.VOLTAGE.NAME.MATCHES}'), ('4638','48553','9','{#VPROBE_NAME}','{$DELL.SNMP.DISCOVERY.VOLTAGE.NAME.NOT_MATCHES}'), ('4639','48553','8','{#VPROBE_TYPE}','{$DELL.SNMP.DISCOVERY.VOLTAGE.TYPE.MATCHES}'), ('4640','48553','9','{#VPROBE_TYPE}','{$DELL.SNMP.DISCOVERY.VOLTAGE.TYPE.NOT_MATCHES}'), ('4641','48651','8','{#VPROBE_NAME}','{$DELL.SNMP.DISCOVERY.VOLTAGE.NAME.MATCHES}'), ('4642','48651','9','{#VPROBE_NAME}','{$DELL.SNMP.DISCOVERY.VOLTAGE.NAME.NOT_MATCHES}'), ('4643','48651','8','{#VPROBE_TYPE}','{$DELL.SNMP.DISCOVERY.VOLTAGE.TYPE.MATCHES}'), ('4644','48651','9','{#VPROBE_TYPE}','{$DELL.SNMP.DISCOVERY.VOLTAGE.TYPE.NOT_MATCHES}'), ('4645','48734','8','{#VPROBE_NAME}','{$DELL.SNMP.DISCOVERY.VOLTAGE.NAME.MATCHES}'), ('4646','48734','9','{#VPROBE_NAME}','{$DELL.SNMP.DISCOVERY.VOLTAGE.NAME.NOT_MATCHES}'), ('4647','48734','8','{#VPROBE_TYPE}','{$DELL.SNMP.DISCOVERY.VOLTAGE.TYPE.MATCHES}'), ('4648','48734','9','{#VPROBE_TYPE}','{$DELL.SNMP.DISCOVERY.VOLTAGE.TYPE.NOT_MATCHES}'), ('4649','48833','8','{#TYPE}','3'), ('4650','48841','8','{#VPROBE_NAME}','{$DELL.SNMP.DISCOVERY.VOLTAGE.NAME.MATCHES}'), ('4651','48841','9','{#VPROBE_NAME}','{$DELL.SNMP.DISCOVERY.VOLTAGE.NAME.NOT_MATCHES}'), ('4652','48841','8','{#VPROBE_TYPE}','{$DELL.SNMP.DISCOVERY.VOLTAGE.TYPE.MATCHES}'), ('4653','48841','9','{#VPROBE_TYPE}','{$DELL.SNMP.DISCOVERY.VOLTAGE.TYPE.NOT_MATCHES}'), ('4654','48939','8','{#VPROBE_NAME}','{$DELL.SNMP.DISCOVERY.VOLTAGE.NAME.MATCHES}'), ('4655','48939','9','{#VPROBE_NAME}','{$DELL.SNMP.DISCOVERY.VOLTAGE.NAME.NOT_MATCHES}'), ('4656','48939','8','{#VPROBE_TYPE}','{$DELL.SNMP.DISCOVERY.VOLTAGE.TYPE.MATCHES}'), ('4657','48939','9','{#VPROBE_TYPE}','{$DELL.SNMP.DISCOVERY.VOLTAGE.TYPE.NOT_MATCHES}'), ('4658','49022','8','{#VPROBE_NAME}','{$DELL.SNMP.DISCOVERY.VOLTAGE.NAME.MATCHES}'), ('4659','49022','9','{#VPROBE_NAME}','{$DELL.SNMP.DISCOVERY.VOLTAGE.NAME.NOT_MATCHES}'), ('4660','49022','8','{#VPROBE_TYPE}','{$DELL.SNMP.DISCOVERY.VOLTAGE.TYPE.MATCHES}'), ('4661','49022','9','{#VPROBE_TYPE}','{$DELL.SNMP.DISCOVERY.VOLTAGE.TYPE.NOT_MATCHES}'), ('4662','49070','8','{#VPROBE_NAME}','{$DELL.SNMP.DISCOVERY.VOLTAGE.NAME.MATCHES}'), ('4663','49070','9','{#VPROBE_NAME}','{$DELL.SNMP.DISCOVERY.VOLTAGE.NAME.NOT_MATCHES}'), ('4664','49070','8','{#VPROBE_TYPE}','{$DELL.SNMP.DISCOVERY.VOLTAGE.TYPE.MATCHES}'), ('4665','49070','9','{#VPROBE_TYPE}','{$DELL.SNMP.DISCOVERY.VOLTAGE.TYPE.NOT_MATCHES}'), ('4666','49719','8','{#NAME}','{$PURE.FLASHARRAY.CERT.LLD.FILTER.NAME.MATCHES}'), ('4667','49719','9','{#NAME}','{$PURE.FLASHARRAY.CERT.LLD.FILTER.NAME.NOT_MATCHES}'), ('4668','49720','8','{#INDEX}','{$PURE.FLASHARRAY.CTRL.LLD.FILTER.INDEX.MATCHES}'), ('4669','49720','9','{#INDEX}','{$PURE.FLASHARRAY.CTRL.LLD.FILTER.INDEX.NOT_MATCHES}'), ('4670','49720','8','{#NAME}','^CT[0-9]+$'), ('4671','49721','8','{#NAME}','{$PURE.FLASHARRAY.DRIVE.LLD.FILTER.NAME.MATCHES}'), ('4672','49721','9','{#NAME}','{$PURE.FLASHARRAY.DRIVE.LLD.FILTER.NAME.NOT_MATCHES}'), ('4673','49721','9','{#PROTOCOL}','^null$'), ('4674','49721','9','{#TYPE}','^-$'), ('4675','49722','8','{#INDEX}','{$PURE.FLASHARRAY.FAN.LLD.FILTER.INDEX.MATCHES}'), ('4676','49722','9','{#INDEX}','{$PURE.FLASHARRAY.FAN.LLD.FILTER.INDEX.NOT_MATCHES}'), ('4677','49722','8','{#NAME}',E'.*\\.FAN[0-9]+$'), ('4678','49723','8','{#GROUP}','{$PURE.FLASHARRAY.HOST.LLD.FILTER.GROUP.MATCHES}'), ('4679','49723','9','{#GROUP}','{$PURE.FLASHARRAY.HOST.LLD.FILTER.GROUP.NOT_MATCHES}'), ('4680','49723','8','{#NAME}','{$PURE.FLASHARRAY.HOST.LLD.FILTER.NAME.MATCHES}'), ('4681','49723','9','{#NAME}','{$PURE.FLASHARRAY.HOST.LLD.FILTER.NAME.NOT_MATCHES}'), ('4682','49724','8','{#IFNAME}','{$PURE.FLASHARRAY.NETIF.LLD.FILTER.NAME.MATCHES}'), ('4683','49724','9','{#IFNAME}','{$PURE.FLASHARRAY.NETIF.LLD.FILTER.NAME.NOT_MATCHES}'), ('4684','49725','8','{#NAME}','{$PURE.FLASHARRAY.POD.LLD.FILTER.NAME.MATCHES}'), ('4685','49725','9','{#NAME}','{$PURE.FLASHARRAY.POD.LLD.FILTER.NAME.NOT_MATCHES}'), ('4686','49726','8','{#INDEX}','{$PURE.FLASHARRAY.POWER.LLD.FILTER.INDEX.MATCHES}'), ('4687','49726','9','{#INDEX}','{$PURE.FLASHARRAY.POWER.LLD.FILTER.INDEX.NOT_MATCHES}'), ('4688','49726','9','{#VOLT.VALUE}','^null$'), ('4689','49727','8','{#INDEX}','{$PURE.FLASHARRAY.TEMP.LLD.FILTER.INDEX.MATCHES}'), ('4690','49727','9','{#INDEX}','{$PURE.FLASHARRAY.TEMP.LLD.FILTER.INDEX.NOT_MATCHES}'), ('4691','49727','9','{#TEMP.VALUE}','^null$'), ('4692','49728','8','{#NAME}','{$PURE.FLASHARRAY.VOLUME.LLD.FILTER.NAME.MATCHES}'), ('4693','49728','9','{#NAME}','{$PURE.FLASHARRAY.VOLUME.LLD.FILTER.NAME.NOT_MATCHES}'), ('4694','49729','8','{#NAME}','{$PURE.FLASHARRAY.CERT.LLD.FILTER.NAME.MATCHES}'), ('4695','49729','9','{#NAME}','{$PURE.FLASHARRAY.CERT.LLD.FILTER.NAME.NOT_MATCHES}'), ('4696','49730','8','{#INDEX}','{$PURE.FLASHARRAY.CTRL.LLD.FILTER.INDEX.MATCHES}'), ('4697','49730','9','{#INDEX}','{$PURE.FLASHARRAY.CTRL.LLD.FILTER.INDEX.NOT_MATCHES}'), ('4698','49730','8','{#TYPE}','^array_controller$'), ('4699','49731','8','{#NAME}','{$PURE.FLASHARRAY.DRIVE.LLD.FILTER.NAME.MATCHES}'), ('4700','49731','9','{#NAME}','{$PURE.FLASHARRAY.DRIVE.LLD.FILTER.NAME.NOT_MATCHES}'), ('4701','49731','9','{#PROTOCOL}','^null$'), ('4702','49731','9','{#TYPE}','^-$'), ('4703','49732','8','{#INDEX}','{$PURE.FLASHARRAY.FAN.LLD.FILTER.INDEX.MATCHES}'), ('4704','49732','9','{#INDEX}','{$PURE.FLASHARRAY.FAN.LLD.FILTER.INDEX.NOT_MATCHES}'), ('4705','49732','8','{#TYPE}','^cooling$'), ('4706','49733','8','{#GROUP}','{$PURE.FLASHARRAY.HOST.LLD.FILTER.GROUP.MATCHES}'), ('4707','49733','9','{#GROUP}','{$PURE.FLASHARRAY.HOST.LLD.FILTER.GROUP.NOT_MATCHES}'), ('4708','49733','8','{#NAME}','{$PURE.FLASHARRAY.HOST.LLD.FILTER.NAME.MATCHES}'), ('4709','49733','9','{#NAME}','{$PURE.FLASHARRAY.HOST.LLD.FILTER.NAME.NOT_MATCHES}'), ('4710','49734','8','{#IFNAME}','{$PURE.FLASHARRAY.NETIF.LLD.FILTER.NAME.MATCHES}'), ('4711','49734','9','{#IFNAME}','{$PURE.FLASHARRAY.NETIF.LLD.FILTER.NAME.NOT_MATCHES}'), ('4712','49734','8','{#IFSTATUS}','^true$'), ('4713','49735','8','{#NAME}','{$PURE.FLASHARRAY.POD.LLD.FILTER.NAME.MATCHES}'), ('4714','49735','9','{#NAME}','{$PURE.FLASHARRAY.POD.LLD.FILTER.NAME.NOT_MATCHES}'), ('4715','49736','8','{#INDEX}','{$PURE.FLASHARRAY.POWER.LLD.FILTER.INDEX.MATCHES}'), ('4716','49736','9','{#INDEX}','{$PURE.FLASHARRAY.POWER.LLD.FILTER.INDEX.NOT_MATCHES}'), ('4717','49736','8','{#TYPE}','^power_supply$'), ('4718','49737','8','{#INDEX}','{$PURE.FLASHARRAY.TEMP.LLD.FILTER.INDEX.MATCHES}'), ('4719','49737','9','{#INDEX}','{$PURE.FLASHARRAY.TEMP.LLD.FILTER.INDEX.NOT_MATCHES}'), ('4720','49737','8','{#TYPE}','^temp_sensor$'), ('4721','49738','8','{#NAME}','{$PURE.FLASHARRAY.VOLUME.LLD.FILTER.NAME.MATCHES}'), ('4722','49738','9','{#NAME}','{$PURE.FLASHARRAY.VOLUME.LLD.FILTER.NAME.NOT_MATCHES}'), ('4723','49879','8','{#JOB.FRIENDLY.NAME}','{$AZURE.JOBS.FRIENDLY.NAME.MATCHES}'), ('4724','49879','9','{#JOB.FRIENDLY.NAME}','{$AZURE.JOBS.FRIENDLY.NAME.NOT.MATCHES}'), ('4725','49879','8','{#JOB.OPERATION}','{$AZURE.JOBS.OPERATION.MATCHES}'), ('4726','49879','9','{#JOB.OPERATION}','{$AZURE.JOBS.OPERATION.NOT.MATCHES}'), ('4727','49879','8','{#JOB.STATUS}','{$AZURE.JOBS.STATUS.MATCHES}'), ('4728','49879','9','{#JOB.STATUS}','{$AZURE.JOBS.STATUS.NOT.MATCHES}'), ('4729','49880','8','{#GROUP}','{$AZURE.RESOURCE.GROUP.MATCHES}'), ('4730','49880','9','{#GROUP}','{$AZURE.RESOURCE.GROUP.NOT.MATCHES}'), ('4731','49880','8','{#LOCATION}','{$AZURE.VAULT.LOCATION.MATCHES}'), ('4732','49880','9','{#LOCATION}','{$AZURE.VAULT.LOCATION.NOT.MATCHES}'), ('4733','49880','8','{#NAME}','{$AZURE.VAULT.NAME.MATCHES}'), ('4734','49880','9','{#NAME}','{$AZURE.VAULT.NAME.NOT.MATCHES}'), ('4735','49880','8','{#TYPE}','^Microsoft.*(v|V)aults$'), ('4736','49884','8','{#BELOW_V17}','false'), ('4737','49885','8','{#BELOW_V17}','true'), ('4738','42835','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('4739','49966','8','{#NAME}','{$CISCO.FTD.LLD.FILTER.ASP.STATS.NAME.MATCHES}'), ('4740','49966','9','{#NAME}','{$CISCO.FTD.LLD.FILTER.ASP.STATS.NAME.NOT_MATCHES}'), ('4741','49967','8','{#NAME}','{$CISCO.FTD.LLD.FILTER.CONN.STATS.NAME.MATCHES}'), ('4742','49967','9','{#NAME}','{$CISCO.FTD.LLD.FILTER.CONN.STATS.NAME.NOT_MATCHES}'), ('4743','49968','8','{#METRIC}','{$CISCO.FTD.LLD.FILTER.CPU.NAME.MATCHES}'), ('4744','49968','9','{#METRIC}','{$CISCO.FTD.LLD.FILTER.CPU.NAME.NOT_MATCHES}'), ('4745','49969','8','{#ID}','{$CISCO.FTD.LLD.FILTER.PROCESS.NAME.MATCHES}'), ('4746','49969','9','{#ID}','{$CISCO.FTD.LLD.FILTER.PROCESS.NAME.NOT_MATCHES}'), ('4747','49971','8','{#DESCR}','{$CISCO.FTD.LLD.FILTER.IF.DESCR.MATCHES}'), ('4748','49971','9','{#DESCR}','{$CISCO.FTD.LLD.FILTER.IF.DESCR.NOT_MATCHES}'), ('4749','49971','8','{#NAME}','{$CISCO.FTD.LLD.FILTER.IF.NAME.MATCHES}'), ('4750','49971','9','{#NAME}','{$CISCO.FTD.LLD.FILTER.IF.NAME.NOT_MATCHES}'), ('4751','49975','8','{#NAME}','{$CISCO.FTD.LLD.FILTER.SNORT.ID.MATCHES}'), ('4752','49975','9','{#NAME}','{$CISCO.FTD.LLD.FILTER.SNORT.ID.NOT_MATCHES}'), ('4753','49976','8','{#SENSOR}','{$CISCO.FTD.LLD.FILTER.SENSOR.NAME.MATCHES}'), ('4754','49976','9','{#SENSOR}','{$CISCO.FTD.LLD.FILTER.SENSOR.NAME.NOT_MATCHES}'), ('4755','49977','8','{#NAME}','{$CISCO.FTD.LLD.FILTER.THROUGHPUT.INTERFACE.NAME.MATCHES}'), ('4756','49977','9','{#NAME}','{$CISCO.FTD.LLD.FILTER.THROUGHPUT.INTERFACE.NAME.NOT_MATCHES}'), ('4757','49978','8','{#FSMOUNT}','{$CISCO.FTD.LLD.FILTER.FSMOUNT.MATCHES}'), ('4758','49978','9','{#FSMOUNT}','{$CISCO.FTD.LLD.FILTER.FSMOUNT.NOT_MATCHES}'), ('4759','49978','8','{#FSNAME}','{$CISCO.FTD.LLD.FILTER.FSNAME.MATCHES}'), ('4760','49978','9','{#FSNAME}','{$CISCO.FTD.LLD.FILTER.FSNAME.NOT_MATCHES}'), ('4761','50036','8','{#AWS.BACKUP_JOB.RESOURCE_NAME}','{$AWS.BACKUP_JOB.RESOURCE_NAME.MATCHES}'), ('4762','50036','9','{#AWS.BACKUP_JOB.RESOURCE_NAME}','{$AWS.BACKUP_JOB.RESOURCE_NAME.NOT_MATCHES}'), ('4763','50036','8','{#AWS.BACKUP_JOB.RESOURCE_TYPE}','{$AWS.BACKUP_JOB.RESOURCE_TYPE.MATCHES}'), ('4764','50036','9','{#AWS.BACKUP_JOB.RESOURCE_TYPE}','{$AWS.BACKUP_JOB.RESOURCE_TYPE.NOT_MATCHES}'), ('4765','50036','8','{#AWS.BACKUP_JOB.STATE}','{$AWS.BACKUP_JOB.STATE.MATCHES}'), ('4766','50036','9','{#AWS.BACKUP_JOB.STATE}','{$AWS.BACKUP_JOB.STATE.NOT_MATCHES}'), ('4767','50037','8','{#AWS.BACKUP_VAULT.NAME}','{$AWS.BACKUP_VAULT.LLD.FILTER.NAME.MATCHES}'), ('4768','50037','9','{#AWS.BACKUP_VAULT.NAME}','{$AWS.BACKUP_VAULT.LLD.FILTER.NAME.NOT_MATCHES}'), ('4769','50037','8','{#AWS.BACKUP_VAULT.REGION}','{$AWS.BACKUP_VAULT.LLD.FILTER.REGION.MATCHES}'), ('4770','50037','9','{#AWS.BACKUP_VAULT.REGION}','{$AWS.BACKUP_VAULT.LLD.FILTER.REGION.NOT_MATCHES}'), ('4771','50066','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('4772','50066','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('4773','50066','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('4774','50066','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('4775','50066','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('4776','50066','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('4777','50066','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('4778','50066','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('4779','50066','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('4780','50066','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('4781','50066','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('4782','50066','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('4783','50138','8','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.MATCHES}'), ('4784','50138','9','{#IFADMINSTATUS}','{$NET.IF.IFADMINSTATUS.NOT_MATCHES}'), ('4785','50138','8','{#IFALIAS}','{$NET.IF.IFALIAS.MATCHES}'), ('4786','50138','9','{#IFALIAS}','{$NET.IF.IFALIAS.NOT_MATCHES}'), ('4787','50138','8','{#IFDESCR}','{$NET.IF.IFDESCR.MATCHES}'), ('4788','50138','9','{#IFDESCR}','{$NET.IF.IFDESCR.NOT_MATCHES}'), ('4789','50138','8','{#IFNAME}','{$NET.IF.IFNAME.MATCHES}'), ('4790','50138','9','{#IFNAME}','{$NET.IF.IFNAME.NOT_MATCHES}'), ('4791','50138','8','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.MATCHES}'), ('4792','50138','9','{#IFOPERSTATUS}','{$NET.IF.IFOPERSTATUS.NOT_MATCHES}'), ('4793','50138','8','{#IFTYPE}','{$NET.IF.IFTYPE.MATCHES}'), ('4794','50138','9','{#IFTYPE}','{$NET.IF.IFTYPE.NOT_MATCHES}'), ('4795','50167','8','{#ADMIN.NAME}','{$MERAKI.ADMIN.NAME.MATCHES}'), ('4796','50167','9','{#ADMIN.NAME}','{$MERAKI.ADMIN.NAME.NOT_MATCHES}'), ('4797','50167','8','{#ADMIN.ORG.ACCESS}','{$MERAKI.ADMIN.ORG.ACCESS.MATCHES}'), ('4798','50167','9','{#ADMIN.ORG.ACCESS}','{$MERAKI.ADMIN.ORG.ACCESS.NOT_MATCHES}'), ('4799','50168','8','{#SAML.ORG.ACCESS}','{$MERAKI.SAML.ORG.ACCESS.MATCHES}'), ('4800','50168','9','{#SAML.ORG.ACCESS}','{$MERAKI.SAML.ORG.ACCESS.NOT_MATCHES}'), ('4801','50168','8','{#SAML.ROLE}','{$MERAKI.SAML.ROLE.MATCHES}'), ('4802','50168','9','{#SAML.ROLE}','{$MERAKI.SAML.ROLE.NOT_MATCHES}'), ('4803','50230','8','{#TYPE}','{$VYATTA.DISCOVERY.CPU.MATCHES}'), ('4804','50230','9','{#TYPE}','{$VYATTA.DISCOVERY.CPU.NOT_MATCHES}'), ('4805','50231','8','{#IFADMINSTATUS}','{$VYATTA.DISCOVERY.IFACE.ADMINSTATUS.MATCHES}'), ('4806','50231','9','{#IFADMINSTATUS}','{$VYATTA.DISCOVERY.IFACE.ADMINSTATUS.NOT_MATCHES}'), ('4807','50231','8','{#IFALIAS}','{$VYATTA.DISCOVERY.IFACE.IFALIAS.MATCHES}'), ('4808','50231','9','{#IFALIAS}','{$VYATTA.DISCOVERY.IFACE.IFALIAS.NOT_MATCHES}'), ('4809','50231','8','{#IFDESCR}','{$VYATTA.DISCOVERY.IFACE.IFDESCR.MATCHES}'), ('4810','50231','9','{#IFDESCR}','{$VYATTA.DISCOVERY.IFACE.IFDESCR.NOT_MATCHES}'), ('4811','50231','8','{#IFNAME}','{$VYATTA.DISCOVERY.IFACE.IFNAME.MATCHES}'), ('4812','50231','9','{#IFNAME}','{$VYATTA.DISCOVERY.IFACE.IFNAME.NOT_MATCHES}'), ('4813','50231','8','{#IFOPERSTATUS}','{$VYATTA.DISCOVERY.IFACE.IFOPERSTATUS.MATCHES}'), ('4814','50231','9','{#IFOPERSTATUS}','{$VYATTA.DISCOVERY.IFACE.IFOPERSTATUS.NOT_MATCHES}'), ('4815','50231','8','{#IFTYPE}','{$VYATTA.DISCOVERY.IFACE.IFTYPE.MATCHES}'), ('4816','50231','9','{#IFTYPE}','{$VYATTA.DISCOVERY.IFACE.IFTYPE.NOT_MATCHES}'), ('4817','50232','8','{#STORAGE_NAME}','{$VYATTA.DISCOVERY.STORAGE.NAME.MATCHES}'), ('4818','50232','9','{#STORAGE_NAME}','{$VYATTA.DISCOVERY.STORAGE.NAME.NOT_MATCHES}'), ('4819','50232','8','{#STORAGE_TYPE}','{$VYATTA.DISCOVERY.STORAGE.TYPE.MATCHES}'), ('4820','50232','9','{#STORAGE_TYPE}','{$VYATTA.DISCOVERY.STORAGE.TYPE.NOT_MATCHES}'), ('4821','50308','8','{#IF_NAME}','{$SNS.NET.IF.IFNAME.MATCHES}'), ('4822','50308','9','{#IF_NAME}','{$SNS.NET.IF.IFNAME.NOT_MATCHES}'), ('4823','50310','8','{#STORAGE_DESCR}','{$SNS.STORAGE.DESCR.MATCHES}'), ('4824','50310','9','{#STORAGE_DESCR}','{$SNS.STORAGE.DESCR.NOT_MATCHES}'), ('4825','50310','8','{#STORAGE_TYPE}','{$SNS.STORAGE.TYPE.MATCHES}'), ('4826','50310','9','{#STORAGE_TYPE}','{$SNS.STORAGE.TYPE.NOT_MATCHES}'); INSERT INTO item_rtdata (itemid) VALUES ('10073'), ('10074'), ('10075'), ('10076'), ('10077'), ('10078'), ('23252'), ('23253'), ('23256'), ('23257'), ('23258'), ('23259'), ('23260'), ('23261'), ('23262'), ('23264'), ('23265'), ('23266'), ('23267'), ('23268'), ('23269'), ('23270'), ('23271'), ('23272'), ('23273'), ('23274'), ('23275'), ('23276'), ('23277'), ('23328'), ('23620'), ('23625'), ('23628'), ('23635'), ('23662'), ('23664'), ('25367'), ('25371'), ('25667'), ('25668'), ('28249'), ('28534'), ('28536'), ('28538'), ('29823'), ('33024'), ('33025'), ('33026'), ('33027'), ('34318'), ('34319'), ('35275'), ('35276'), ('35277'), ('39805'), ('39807'), ('39823'), ('42227'), ('42228'), ('42229'), ('42230'), ('42231'), ('42232'), ('42233'), ('42234'), ('42235'), ('42236'), ('42237'), ('42238'), ('42239'), ('42240'), ('42241'), ('42242'), ('42243'), ('42244'), ('42245'), ('42246'), ('42247'), ('42248'), ('42249'), ('42250'), ('42251'), ('42252'), ('42253'), ('42254'), ('42255'), ('42256'), ('42257'), ('42258'), ('42259'), ('42260'), ('42261'), ('42262'), ('42263'), ('42264'), ('42265'), ('42266'), ('42269'), ('42270'), ('42274'), ('42275'), ('42276'), ('44056'), ('44058'), ('44437'), ('44788'), ('44789'), ('44790'), ('45497'), ('45498'), ('45499'), ('45517'), ('45518'), ('46048'), ('46315'), ('47207'), ('47208'), ('47209'), ('47210'), ('47552'), ('47554'), ('49209'), ('49907'), ('49912'), ('50207'), ('50208'), ('50209'); INSERT INTO item_rtname (itemid,name_resolved,name_resolved_upper) VALUES ('10073','Number of processed numeric (float) values per second','NUMBER OF PROCESSED NUMERIC (FLOAT) VALUES PER SECOND'), ('10074','Number of processed character values per second','NUMBER OF PROCESSED CHARACTER VALUES PER SECOND'), ('10075','Number of processed log values per second','NUMBER OF PROCESSED LOG VALUES PER SECOND'), ('10076','Number of processed numeric (unsigned) values per second','NUMBER OF PROCESSED NUMERIC (UNSIGNED) VALUES PER SECOND'), ('10077','Number of processed text values per second','NUMBER OF PROCESSED TEXT VALUES PER SECOND'), ('10078','Number of processed not supported values per second','NUMBER OF PROCESSED NOT SUPPORTED VALUES PER SECOND'), ('23252','Utilization of alerter internal processes, in %','UTILIZATION OF ALERTER INTERNAL PROCESSES, IN %'), ('23253','Utilization of configuration syncer internal processes, in %','UTILIZATION OF CONFIGURATION SYNCER INTERNAL PROCESSES, IN %'), ('23256','Utilization of escalator internal processes, in %','UTILIZATION OF ESCALATOR INTERNAL PROCESSES, IN %'), ('23257','Utilization of history syncer internal processes, in %','UTILIZATION OF HISTORY SYNCER INTERNAL PROCESSES, IN %'), ('23258','Utilization of housekeeper internal processes, in %','UTILIZATION OF HOUSEKEEPER INTERNAL PROCESSES, IN %'), ('23259','Utilization of http poller data collector processes, in %','UTILIZATION OF HTTP POLLER DATA COLLECTOR PROCESSES, IN %'), ('23260','Utilization of icmp pinger data collector processes, in %','UTILIZATION OF ICMP PINGER DATA COLLECTOR PROCESSES, IN %'), ('23261','Utilization of ipmi poller data collector processes, in %','UTILIZATION OF IPMI POLLER DATA COLLECTOR PROCESSES, IN %'), ('23262','Utilization of java poller data collector processes, in %','UTILIZATION OF JAVA POLLER DATA COLLECTOR PROCESSES, IN %'), ('23264','Utilization of poller data collector processes, in %','UTILIZATION OF POLLER DATA COLLECTOR PROCESSES, IN %'), ('23265','Utilization of proxy poller data collector processes, in %','UTILIZATION OF PROXY POLLER DATA COLLECTOR PROCESSES, IN %'), ('23266','Utilization of self-monitoring internal processes, in %','UTILIZATION OF SELF-MONITORING INTERNAL PROCESSES, IN %'), ('23267','Utilization of snmp trapper data collector processes, in %','UTILIZATION OF SNMP TRAPPER DATA COLLECTOR PROCESSES, IN %'), ('23268','Utilization of timer internal processes, in %','UTILIZATION OF TIMER INTERNAL PROCESSES, IN %'), ('23269','Utilization of trapper data collector processes, in %','UTILIZATION OF TRAPPER DATA COLLECTOR PROCESSES, IN %'), ('23270','Utilization of unreachable poller data collector processes, in %','UTILIZATION OF UNREACHABLE POLLER DATA COLLECTOR PROCESSES, IN %'), ('23271','Queue over 10 minutes','QUEUE OVER 10 MINUTES'), ('23272','Queue','QUEUE'), ('23273','Configuration cache, % used','CONFIGURATION CACHE, % USED'), ('23274','History write cache, % used','HISTORY WRITE CACHE, % USED'), ('23275','History index cache, % used','HISTORY INDEX CACHE, % USED'), ('23276','Trend write cache, % used','TREND WRITE CACHE, % USED'), ('23277','Number of processed values per second','NUMBER OF PROCESSED VALUES PER SECOND'), ('23328','Utilization of vmware collector data collector processes, in %','UTILIZATION OF VMWARE COLLECTOR DATA COLLECTOR PROCESSES, IN %'), ('23620','Value cache, % used','VALUE CACHE, % USED'), ('23625','Value cache hits','VALUE CACHE HITS'), ('23628','Value cache misses','VALUE CACHE MISSES'), ('23635','VMware cache, % used','VMWARE CACHE, % USED'), ('23662','Value cache operating mode','VALUE CACHE OPERATING MODE'), ('23664','Utilization of task manager internal processes, in %','UTILIZATION OF TASK MANAGER INTERNAL PROCESSES, IN %'), ('25367','Utilization of ipmi manager internal processes, in %','UTILIZATION OF IPMI MANAGER INTERNAL PROCESSES, IN %'), ('25371','Utilization of alert manager internal processes, in %','UTILIZATION OF ALERT MANAGER INTERNAL PROCESSES, IN %'), ('25667','Utilization of preprocessing manager internal processes, in %','UTILIZATION OF PREPROCESSING MANAGER INTERNAL PROCESSES, IN %'), ('25668','Utilization of preprocessing worker internal processes, in %','UTILIZATION OF PREPROCESSING WORKER INTERNAL PROCESSES, IN %'), ('28249','Preprocessing queue','PREPROCESSING QUEUE'), ('28534','LLD queue','LLD QUEUE'), ('28536','Utilization of LLD manager internal processes, in %','UTILIZATION OF LLD MANAGER INTERNAL PROCESSES, IN %'), ('28538','Utilization of LLD worker internal processes, in %','UTILIZATION OF LLD WORKER INTERNAL PROCESSES, IN %'), ('29823','Utilization of alert syncer internal processes, in %','UTILIZATION OF ALERT SYNCER INTERNAL PROCESSES, IN %'), ('33024','Trend function cache, % of unique requests','TREND FUNCTION CACHE, % OF UNIQUE REQUESTS'), ('33025','Trend function cache, % of misses','TREND FUNCTION CACHE, % OF MISSES'), ('33026','Utilization of availability manager internal processes, in %','UTILIZATION OF AVAILABILITY MANAGER INTERNAL PROCESSES, IN %'), ('33027','Utilization of history poller internal processes, in %','UTILIZATION OF HISTORY POLLER INTERNAL PROCESSES, IN %'), ('34318','Utilization of report writer internal processes, in %','UTILIZATION OF REPORT WRITER INTERNAL PROCESSES, IN %'), ('34319','Utilization of report manager internal processes, in %','UTILIZATION OF REPORT MANAGER INTERNAL PROCESSES, IN %'), ('35275','Utilization of trigger housekeeper internal processes, in %','UTILIZATION OF TRIGGER HOUSEKEEPER INTERNAL PROCESSES, IN %'), ('35276','Version','VERSION'), ('35277','Utilization of service manager internal processes, in %','UTILIZATION OF SERVICE MANAGER INTERNAL PROCESSES, IN %'), ('39805','Zabbix stats cluster','ZABBIX STATS CLUSTER'), ('39823','Utilization of ODBC poller data collector processes, in %','UTILIZATION OF ODBC POLLER DATA COLLECTOR PROCESSES, IN %'), ('42227','Host name of Zabbix agent running','HOST NAME OF ZABBIX AGENT RUNNING'), ('42228','Free swap space','FREE SWAP SPACE'), ('42229','CPU system time','CPU SYSTEM TIME'), ('42230','CPU user time','CPU USER TIME'), ('42231','System name','SYSTEM NAME'), ('42232','System local time','SYSTEM LOCAL TIME'), ('42233','Operating system architecture','OPERATING SYSTEM ARCHITECTURE'), ('42234','Operating system','OPERATING SYSTEM'), ('42235','Number of installed packages','NUMBER OF INSTALLED PACKAGES'), ('42236','Free swap space in %','FREE SWAP SPACE IN %'), ('42237','Zabbix agent ping','ZABBIX AGENT PING'), ('42238','Total swap space','TOTAL SWAP SPACE'), ('42239','System description','SYSTEM DESCRIPTION'), ('42240','System uptime','SYSTEM UPTIME'), ('42241','Number of logged in users','NUMBER OF LOGGED IN USERS'), ('42242','Checksum of /etc/passwd','CHECKSUM OF /ETC/PASSWD'), ('42243','Available memory','AVAILABLE MEMORY'), ('42244','Available memory in %','AVAILABLE MEMORY IN %'), ('42245','Total memory','TOTAL MEMORY'), ('42246','CPU steal time','CPU STEAL TIME'), ('42247','CPU softirq time','CPU SOFTIRQ TIME'), ('42248','CPU nice time','CPU NICE TIME'), ('42249','Load average (1m avg)','LOAD AVERAGE (1M AVG)'), ('42250','Version of Zabbix agent running','VERSION OF ZABBIX AGENT RUNNING'), ('42251','Maximum number of open file descriptors','MAXIMUM NUMBER OF OPEN FILE DESCRIPTORS'), ('42252','Maximum number of processes','MAXIMUM NUMBER OF PROCESSES'), ('42253','Number of processes','NUMBER OF PROCESSES'), ('42254','Number of running processes','NUMBER OF RUNNING PROCESSES'), ('42255','System boot time','SYSTEM BOOT TIME'), ('42256','Interrupts per second','INTERRUPTS PER SECOND'), ('42257','Load average (5m avg)','LOAD AVERAGE (5M AVG)'), ('42258','CPU iowait time','CPU IOWAIT TIME'), ('42259','Load average (15m avg)','LOAD AVERAGE (15M AVG)'), ('42260','Number of CPUs','NUMBER OF CPUS'), ('42261','Context switches per second','CONTEXT SWITCHES PER SECOND'), ('42262','CPU guest time','CPU GUEST TIME'), ('42263','CPU guest nice time','CPU GUEST NICE TIME'), ('42264','CPU idle time','CPU IDLE TIME'), ('42265','CPU interrupt time','CPU INTERRUPT TIME'), ('42266','Zabbix agent availability','ZABBIX AGENT AVAILABILITY'), ('42269','CPU utilization','CPU UTILIZATION'), ('42270','Memory utilization','MEMORY UTILIZATION'), ('44056','Zabbix proxies stats','ZABBIX PROXIES STATS'), ('44437','Get filesystems','GET FILESYSTEMS'), ('44788','Connector queue','CONNECTOR QUEUE'), ('44789','Utilization of connector manager internal processes, in %','UTILIZATION OF CONNECTOR MANAGER INTERNAL PROCESSES, IN %'), ('44790','Utilization of connector worker internal processes, in %','UTILIZATION OF CONNECTOR WORKER INTERNAL PROCESSES, IN %'), ('45497','Discovery queue','DISCOVERY QUEUE'), ('45498','Utilization of discovery manager internal processes, in %','UTILIZATION OF DISCOVERY MANAGER INTERNAL PROCESSES, IN %'), ('45499','Utilization of discovery worker internal processes, in %','UTILIZATION OF DISCOVERY WORKER INTERNAL PROCESSES, IN %'), ('45517','Utilization of agent poller data collector processes, in %','UTILIZATION OF AGENT POLLER DATA COLLECTOR PROCESSES, IN %'), ('45518','Utilization of http agent poller data collector processes, in %','UTILIZATION OF HTTP AGENT POLLER DATA COLLECTOR PROCESSES, IN %'), ('46048','Utilization of snmp poller data collector processes, in %','UTILIZATION OF SNMP POLLER DATA COLLECTOR PROCESSES, IN %'), ('46315','Number of values synchronized with the database per second','NUMBER OF VALUES SYNCHRONIZED WITH THE DATABASE PER SECOND'), ('47207','Utilization of browser poller data collector processes, in %','UTILIZATION OF BROWSER POLLER DATA COLLECTOR PROCESSES, IN %'), ('47208','Utilization of configuration syncer worker internal processes, in %','UTILIZATION OF CONFIGURATION SYNCER WORKER INTERNAL PROCESSES, IN %'), ('47209','Utilization of internal poller data collector processes, in %','UTILIZATION OF INTERNAL POLLER DATA COLLECTOR PROCESSES, IN %'), ('47210','Utilization of proxy group manager internal processes, in %','UTILIZATION OF PROXY GROUP MANAGER INTERNAL PROCESSES, IN %'), ('47552','Zabbix proxy groups stats','ZABBIX PROXY GROUPS STATS'), ('49209','Zabbix server check','ZABBIX SERVER CHECK'), ('49907','Zabbix preprocessing','ZABBIX PREPROCESSING'), ('49912','Preprocessing queued throughput','PREPROCESSING QUEUED THROUGHPUT'), ('50207','Preprocessing direct throughput','PREPROCESSING DIRECT THROUGHPUT'), ('50208','Preprocessing direct VPS','PREPROCESSING DIRECT VPS'), ('50209','Preprocessing queued VPS','PREPROCESSING QUEUED VPS'); INSERT INTO trigger_tag (triggertagid,triggerid,tag,value) VALUES ('1','21202','scope','availability'), ('4','21205','scope','availability'), ('5','21206','scope','availability'), ('6','21207','scope','availability'), ('18','21223','scope','availability'), ('19','21224','scope','availability'), ('20','21225','scope','availability'), ('21','21226','scope','performance'), ('22','21227','scope','performance'), ('23','21228','scope','availability'), ('24','21229','scope','availability'), ('25','21230','scope','availability'), ('26','21231','scope','availability'), ('27','21232','scope','availability'), ('29','21234','scope','availability'), ('30','21235','scope','availability'), ('31','21236','scope','availability'), ('32','21237','scope','availability'), ('33','17410','scope','notice'), ('34','17411','scope','performance'), ('35','17412','scope','performance'), ('36','17413','scope','capacity'), ('37','17414','scope','capacity'), ('38','17415','scope','capacity'), ('39','17416','scope','capacity'), ('40','17417','scope','notice'), ('41','18522','scope','performance'), ('42','17419','scope','notice'), ('43','17420','scope','notice'), ('44','17421','scope','notice'), ('45','18523','scope','notice'), ('46','17423','scope','notice'), ('47','18524','scope','performance'), ('48','17425','scope','performance'), ('49','17426','scope','performance'), ('50','18525','scope','performance'), ('51','16886','scope','notice'), ('52','16887','scope','notice'), ('57','15948','scope','availability'), ('58','15951','scope','notice'), ('59','15952','scope','notice'), ('60','15950','scope','performance'), ('61','15949','scope','availability'), ('62','17428','scope','capacity'), ('63','17429','scope','capacity'), ('64','17430','scope','notice'), ('65','17431','scope','notice'), ('66','17432','scope','notice'), ('67','17433','scope','notice'), ('68','17434','scope','availability'), ('69','17353','scope','notice'), ('70','17354','scope','availability'), ('71','17355','scope','availability'), ('72','17356','scope','availability'), ('73','17358','scope','capacity'), ('74','17357','scope','capacity'), ('75','17359','scope','availability'), ('76','18960','scope','notice'), ('77','18961','scope','notice'), ('78','18962','scope','security'), ('79','18963','scope','performance'), ('80','18964','scope','performance'), ('81','16743','scope','availability'), ('82','16744','scope','availability'), ('83','16745','scope','notice'), ('84','16746','scope','availability'), ('85','16747','scope','notice'), ('86','16775','scope','notice'), ('87','16776','scope','notice'), ('88','16777','scope','notice'), ('89','16779','scope','availability'), ('90','16780','scope','availability'), ('91','16778','scope','availability'), ('92','16781','scope','notice'), ('93','16782','scope','notice'), ('94','16783','scope','notice'), ('95','16784','scope','performance'), ('96','16785','scope','availability'), ('97','16774','scope','capacity'), ('98','16786','scope','notice'), ('99','16787','scope','notice'), ('100','16788','scope','notice'), ('101','16789','scope','notice'), ('102','16791','scope','performance'), ('103','16790','scope','performance'), ('104','16792','scope','notice'), ('105','16793','scope','notice'), ('106','16794','scope','notice'), ('107','16795','scope','notice'), ('108','16890','scope','notice'), ('109','16891','scope','availability'), ('110','16892','scope','availability'), ('111','16893','scope','availability'), ('112','16894','scope','notice'), ('113','16895','scope','availability'), ('114','16896','scope','performance'), ('115','16897','scope','performance'), ('116','16898','scope','notice'), ('117','16899','scope','notice'), ('118','16900','scope','availability'), ('119','16889','scope','capacity'), ('120','16901','scope','availability'), ('121','17435','scope','performance'), ('122','17436','scope','notice'), ('123','17437','scope','notice'), ('124','17438','scope','performance'), ('125','17439','scope','performance'), ('126','17440','scope','performance'), ('127','17441','scope','performance'), ('128','17442','scope','performance'), ('129','17443','scope','performance'), ('130','17444','scope','performance'), ('131','17445','scope','performance'), ('132','17446','scope','notice'), ('133','17447','scope','notice'), ('134','17448','scope','performance'), ('135','17449','scope','performance'), ('136','17450','scope','performance'), ('137','17451','scope','performance'), ('138','17452','scope','performance'), ('139','17453','scope','performance'), ('140','17454','scope','performance'), ('142','17076','scope','notice'), ('143','17077','scope','capacity'), ('144','17078','scope','availability'), ('145','17079','scope','notice'), ('149','17066','scope','capacity'), ('150','17067','scope','capacity'), ('158','17075','scope','capacity'), ('159','17456','scope','notice'), ('160','17457','scope','availability'), ('161','17458','scope','availability'), ('162','17459','scope','availability'), ('163','17460','scope','availability'), ('164','17461','scope','availability'), ('165','17462','scope','availability'), ('166','17463','scope','availability'), ('167','17455','scope','capacity'), ('168','18526','scope','capacity'), ('170','17466','scope','capacity'), ('172','17468','scope','notice'), ('173','17469','scope','notice'), ('174','17470','scope','capacity'), ('175','17471','scope','availability'), ('176','17472','scope','notice'), ('177','17473','scope','notice'), ('178','17474','scope','notice'), ('179','17475','scope','notice'), ('180','17476','scope','availability'), ('181','17477','scope','notice'), ('182','17478','scope','performance'), ('183','17479','scope','performance'), ('184','17480','scope','availability'), ('185','17481','scope','availability'), ('186','17482','scope','notice'), ('187','17483','scope','availability'), ('188','17484','scope','notice'), ('189','17485','scope','notice'), ('190','17486','scope','availability'), ('191','17487','scope','notice'), ('192','16644','scope','notice'), ('193','16645','scope','notice'), ('194','16646','scope','performance'), ('195','16647','scope','availability'), ('196','16648','scope','notice'), ('197','16649','scope','notice'), ('198','16650','scope','performance'), ('199','16651','scope','performance'), ('200','16652','scope','availability'), ('201','16653','scope','notice'), ('202','16654','scope','notice'), ('203','16655','scope','performance'), ('204','18965','scope','notice'), ('205','16656','scope','notice'), ('206','16657','scope','notice'), ('207','16658','scope','performance'), ('208','16659','scope','performance'), ('210','16661','scope','notice'), ('211','16662','scope','notice'), ('212','16809','scope','performance'), ('213','16810','scope','availability'), ('214','16665','scope','notice'), ('215','16666','scope','notice'), ('216','16667','scope','performance'), ('217','16668','scope','performance'), ('218','16669','scope','availability'), ('219','16670','scope','notice'), ('220','16671','scope','notice'), ('221','16672','scope','performance'), ('222','18966','scope','notice'), ('223','16673','scope','notice'), ('224','16674','scope','notice'), ('225','16675','scope','performance'), ('226','16676','scope','performance'), ('229','16902','scope','availability'), ('230','16903','scope','notice'), ('231','16904','scope','availability'), ('232','16905','scope','availability'), ('233','16906','scope','availability'), ('234','16907','scope','notice'), ('235','16908','scope','notice'), ('236','16909','scope','performance'), ('237','16910','scope','availability'), ('238','16911','scope','notice'), ('239','16912','scope','availability'), ('240','16913','scope','availability'), ('241','16914','scope','availability'), ('242','16915','scope','notice'), ('243','16916','scope','notice'), ('244','16917','scope','performance'), ('246','17957','scope','capacity'), ('247','17958','scope','availability'), ('248','17959','scope','availability'), ('249','17960','scope','notice'), ('250','17961','scope','notice'), ('251','17953','scope','capacity'), ('252','17954','scope','notice'), ('253','17955','scope','capacity'), ('254','17956','scope','performance'), ('255','17962','scope','availability'), ('256','17963','scope','availability'), ('257','17964','scope','performance'), ('258','17488','scope','notice'), ('259','17489','scope','notice'), ('260','17490','scope','notice'), ('261','17491','scope','availability'), ('262','17492','scope','notice'), ('263','17493','scope','notice'), ('264','17494','scope','notice'), ('265','17495','scope','notice'), ('266','17496','scope','notice'), ('267','17497','scope','notice'), ('268','17498','scope','availability'), ('274','16750','scope','capacity'), ('275','16751','scope','performance'), ('276','16752','scope','notice'), ('277','16753','scope','availability'), ('278','16754','scope','notice'), ('279','16755','scope','notice'), ('280','16748','scope','capacity'), ('281','16749','scope','capacity'), ('285','15958','scope','notice'), ('288','15961','scope','performance'), ('289','15960','scope','availability'), ('290','15962','scope','performance'), ('291','16679','scope','availability'), ('292','15963','scope','notice'), ('293','18967','scope','performance'), ('294','18968','scope','availability'), ('295','18969','scope','availability'), ('296','18970','scope','notice'), ('297','18971','scope','notice'), ('298','18972','scope','performance'), ('299','18973','scope','performance'), ('300','18974','scope','availability'), ('301','18975','scope','availability'), ('309','21241','scope','availability'), ('310','21242','scope','availability'), ('311','21243','scope','availability'), ('312','21244','scope','availability'), ('313','21245','scope','capacity'), ('314','21246','scope','capacity'), ('320','21250','scope','availability'), ('327','21255','scope','capacity'), ('328','21256','scope','performance'), ('329','21257','scope','performance'), ('330','21258','scope','availability'), ('331','21259','scope','availability'), ('332','21260','scope','availability'), ('339','17089','scope','capacity'), ('341','17091','scope','notice'), ('344','17094','scope','notice'), ('345','17095','scope','notice'), ('348','17098','scope','availability'), ('349','17099','scope','notice'), ('351','17101','scope','notice'), ('352','17102','scope','notice'), ('353','17103','scope','notice'), ('355','16442','scope','availability'), ('359','16447','scope','performance'), ('360','16446','scope','performance'), ('361','16445','scope','notice'), ('362','16250','scope','performance'), ('364','16254','scope','notice'), ('366','18207','scope','notice'), ('367','18208','scope','availability'), ('368','18209','scope','notice'), ('369','18210','scope','notice'), ('370','18211','scope','notice'), ('371','18212','scope','notice'), ('372','18213','scope','notice'), ('373','16258','scope','performance'), ('374','16259','scope','availability'), ('375','16270','scope','performance'), ('376','16269','scope','availability'), ('377','16448','scope','availability'), ('378','16452','scope','performance'), ('379','16451','scope','performance'), ('380','16450','scope','notice'), ('381','16264','scope','performance'), ('382','16265','scope','availability'), ('383','16268','scope','notice'), ('384','18214','scope','notice'), ('385','18215','scope','availability'), ('386','18216','scope','notice'), ('387','18217','scope','notice'), ('388','18218','scope','notice'), ('389','18219','scope','notice'), ('390','18220','scope','notice'), ('391','16271','scope','performance'), ('392','18027','scope','availability'), ('393','18028','scope','performance'), ('394','18029','scope','performance'), ('395','18030','scope','notice'), ('397','17370','scope','availability'), ('398','17371','scope','performance'), ('399','17372','scope','notice'), ('400','17373','scope','notice'), ('401','18527','scope','performance'), ('402','17368','scope','capacity'), ('403','17368','scope','performance'), ('404','17369','scope','capacity'), ('405','17369','scope','performance'), ('407','18976','scope','availability'), ('408','18977','scope','notice'), ('410','17499','scope','notice'), ('411','17500','scope','notice'), ('412','17501','scope','notice'), ('413','19651','scope','availability'), ('414','19652','scope','availability'), ('415','19653','scope','performance'), ('416','19654','scope','performance'), ('417','17503','scope','availability'), ('418','17504','scope','availability'), ('419','17505','scope','availability'), ('420','17506','scope','notice'), ('421','17507','scope','performance'), ('422','17508','scope','performance'), ('423','17509','scope','performance'), ('424','17510','scope','notice'), ('425','17502','scope','capacity'), ('426','17511','scope','security'), ('427','17512','scope','security'), ('428','17513','scope','availability'), ('429','18031','scope','notice'), ('430','17515','scope','availability'), ('435','17518','scope','availability'), ('436','17518','scope','performance'), ('437','17519','scope','availability'), ('438','17519','scope','performance'), ('439','17520','scope','notice'), ('440','18032','scope','notice'), ('441','18910','scope','notice'), ('442','18911','scope','notice'), ('443','18912','scope','notice'), ('444','18913','scope','notice'), ('445','18914','scope','availability'), ('446','18915','scope','notice'), ('447','18916','scope','notice'), ('448','18917','scope','notice'), ('449','18918','scope','availability'), ('450','18919','scope','notice'), ('451','18920','scope','capacity'), ('452','18921','scope','capacity'), ('453','18922','scope','notice'), ('454','18923','scope','notice'), ('457','18926','scope','availability'), ('458','17533','scope','performance'), ('459','13521','scope','performance'), ('460','13534','scope','performance'), ('464','13523','scope','performance'), ('465','13524','scope','performance'), ('466','13525','scope','performance'), ('467','13526','scope','performance'), ('468','13564','scope','performance'), ('469','13527','scope','performance'), ('470','13528','scope','performance'), ('471','21201','scope','performance'), ('472','13529','scope','performance'), ('473','15913','scope','performance'), ('474','15914','scope','performance'), ('475','13530','scope','performance'), ('476','13531','scope','performance'), ('477','13565','scope','performance'), ('478','13532','scope','performance'), ('479','13533','scope','performance'), ('480','15641','scope','performance'), ('481','13520','scope','performance'), ('482','13517','scope','capacity'), ('483','13517','scope','performance'), ('484','21265','scope','notice'), ('485','21266','scope','notice'), ('486','15640','scope','capacity'), ('487','15640','scope','performance'), ('488','13518','scope','capacity'), ('489','13518','scope','performance'), ('490','13519','scope','capacity'), ('491','13519','scope','performance'), ('526','13080','scope','performance'), ('527','13566','scope','performance'), ('528','16273','scope','performance'), ('529','17535','scope','performance'), ('530','13081','scope','performance'), ('532','13084','scope','performance'), ('533','17536','scope','performance'), ('534','13085','scope','performance'), ('535','13086','scope','performance'), ('536','13087','scope','performance'), ('537','13088','scope','performance'), ('538','13562','scope','performance'), ('539','13089','scope','performance'), ('540','13275','scope','performance'), ('541','15853','scope','performance'), ('542','15855','scope','performance'), ('543','21197','scope','performance'), ('544','13091','scope','performance'), ('545','13568','scope','performance'), ('546','13569','scope','performance'), ('547','13092','scope','performance'), ('548','18530','scope','performance'), ('549','18531','scope','performance'), ('550','13093','scope','performance'), ('551','18978','scope','performance'), ('552','13441','scope','performance'), ('553','13559','scope','performance'), ('554','13094','scope','performance'), ('555','13095','scope','performance'), ('556','18979','scope','performance'), ('557','13096','scope','performance'), ('558','13097','scope','performance'), ('559','13023','scope','performance'), ('560','13015','scope','capacity'), ('561','13015','scope','performance'), ('562','13074','scope','capacity'), ('563','13074','scope','performance'), ('564','13557','scope','capacity'), ('565','13557','scope','performance'), ('566','18980','scope','notice'), ('567','13536','scope','capacity'), ('568','13536','scope','performance'), ('569','13073','scope','capacity'), ('570','13073','scope','performance'), ('571','13017','scope','capacity'), ('572','13017','scope','performance'), ('573','13019','scope','capacity'), ('574','13019','scope','performance'), ('575','13467','scope','performance'), ('576','13567','scope','performance'), ('577','16274','scope','performance'), ('578','17537','scope','performance'), ('579','13468','scope','performance'), ('581','13471','scope','performance'), ('582','17538','scope','performance'), ('583','13472','scope','performance'), ('584','13473','scope','performance'), ('585','13474','scope','performance'), ('586','13475','scope','performance'), ('587','13563','scope','performance'), ('588','13476','scope','performance'), ('589','13477','scope','performance'), ('590','15854','scope','performance'), ('591','15856','scope','performance'), ('592','21198','scope','performance'), ('593','13479','scope','performance'), ('594','13570','scope','performance'), ('595','13571','scope','performance'), ('596','13480','scope','performance'), ('597','18532','scope','performance'), ('598','18533','scope','performance'), ('599','13481','scope','performance'), ('600','18981','scope','performance'), ('601','13482','scope','performance'), ('602','13560','scope','performance'), ('603','13483','scope','performance'), ('604','13484','scope','performance'), ('605','18982','scope','performance'), ('606','13485','scope','performance'), ('607','13436','scope','performance'), ('608','13486','scope','performance'), ('609','13487','scope','capacity'), ('610','13487','scope','performance'), ('611','13075','scope','capacity'), ('612','13075','scope','performance'), ('613','13558','scope','capacity'), ('614','13558','scope','performance'), ('615','18983','scope','notice'), ('616','13537','scope','capacity'), ('617','13537','scope','performance'), ('618','13488','scope','capacity'), ('619','13488','scope','performance'), ('620','13489','scope','capacity'), ('621','13489','scope','performance'), ('622','13490','scope','capacity'), ('623','13490','scope','performance'), ('624','21194','scope','availability'), ('625','21195','scope','availability'), ('626','15864','scope','performance'), ('627','15865','scope','performance'), ('628','16272','scope','performance'), ('629','17531','scope','performance'), ('630','15866','scope','performance'), ('632','15868','scope','performance'), ('633','17532','scope','performance'), ('634','15869','scope','performance'), ('635','15870','scope','performance'), ('636','15871','scope','performance'), ('637','15872','scope','performance'), ('638','15873','scope','performance'), ('639','15874','scope','performance'), ('640','15875','scope','performance'), ('641','15888','scope','performance'), ('642','15889','scope','performance'), ('643','21199','scope','performance'), ('644','15876','scope','performance'), ('645','15877','scope','performance'), ('646','15878','scope','performance'), ('647','15879','scope','performance'), ('648','18528','scope','performance'), ('649','18529','scope','performance'), ('650','15880','scope','performance'), ('651','18984','scope','performance'), ('652','15881','scope','performance'), ('653','15882','scope','performance'), ('654','15883','scope','performance'), ('655','15884','scope','performance'), ('656','18985','scope','performance'), ('657','15885','scope','performance'), ('658','15887','scope','performance'), ('659','15857','scope','capacity'), ('660','15857','scope','performance'), ('661','15862','scope','capacity'), ('662','15862','scope','performance'), ('663','15886','scope','capacity'), ('664','15886','scope','performance'), ('665','16919','scope','notice'), ('666','15861','scope','capacity'), ('667','15861','scope','performance'), ('668','15858','scope','capacity'), ('669','15858','scope','performance'), ('670','15859','scope','capacity'), ('671','15859','scope','performance'), ('672','15860','scope','capacity'), ('673','15860','scope','performance'), ('674','15863','scope','performance'), ('675','21196','scope','availability'), ('676','17522','scope','performance'), ('677','17523','scope','notice'), ('678','17524','scope','availability'), ('680','17526','scope','notice'), ('681','17521','scope','capacity'), ('682','17527','scope','availability'), ('683','17528','scope','performance'), ('684','17967','scope','performance'), ('685','17968','scope','notice'), ('686','18033','scope','performance'), ('687','17970','scope','notice'), ('688','17971','scope','notice'), ('689','17965','scope','notice'), ('690','17966','scope','notice'), ('691','17972','scope','notice'), ('692','17973','scope','notice'), ('693','17974','scope','notice'), ('694','17975','scope','notice'), ('695','17976','scope','notice'), ('696','17539','scope','notice'), ('697','17540','scope','performance'), ('698','17541','scope','performance'), ('699','17542','scope','performance'), ('700','17543','scope','availability'), ('701','17544','scope','availability'), ('702','16824','scope','capacity'), ('703','16825','scope','performance'), ('704','16826','scope','performance'), ('705','16827','scope','availability'), ('706','16829','scope','performance'), ('707','16830','scope','performance'), ('708','16831','scope','notice'), ('709','16833','scope','notice'), ('710','16832','scope','notice'), ('711','16834','scope','notice'), ('712','16835','scope','performance'), ('713','16921','scope','availability'), ('714','16920','scope','availability'), ('715','16836','scope','availability'), ('716','16837','scope','availability'), ('717','16838','scope','performance'), ('718','16839','scope','availability'), ('719','16840','scope','performance'), ('720','18986','scope','performance'), ('721','18987','scope','performance'), ('722','18988','scope','performance'), ('723','18989','scope','performance'), ('724','18990','scope','performance'), ('725','18991','scope','performance'), ('726','18992','scope','performance'), ('727','18993','scope','performance'), ('728','18994','scope','performance'), ('729','18995','scope','performance'), ('730','18996','scope','capacity'), ('731','18997','scope','capacity'), ('732','18998','scope','capacity'), ('733','18999','scope','notice'), ('734','19000','scope','availability'), ('735','19001','scope','notice'), ('736','19002','scope','notice'), ('737','19003','scope','capacity'), ('738','19004','scope','notice'), ('739','19005','scope','notice'), ('740','19006','scope','capacity'), ('741','19007','scope','performance'), ('742','19008','scope','notice'), ('743','19009','scope','performance'), ('744','19010','scope','performance'), ('745','17977','scope','capacity'), ('746','17978','scope','capacity'), ('747','17979','scope','capacity'), ('748','17980','scope','capacity'), ('749','17981','scope','capacity'), ('750','17982','scope','capacity'), ('751','17982','scope','performance'), ('752','17983','scope','performance'), ('753','17984','scope','performance'), ('754','17985','scope','performance'), ('755','17986','scope','performance'), ('756','17987','scope','availability'), ('757','17987','scope','notice'), ('758','17988','scope','availability'), ('759','17988','scope','notice'), ('760','17989','scope','availability'), ('761','17989','scope','notice'), ('762','17990','scope','notice'), ('763','17991','scope','availability'), ('764','17992','scope','notice'), ('765','17993','scope','notice'), ('766','18034','scope','availability'), ('767','17995','scope','notice'), ('768','17996','scope','notice'), ('769','17997','scope','notice'), ('770','17998','scope','performance'), ('771','17999','scope','notice'), ('772','18000','scope','notice'), ('773','18001','scope','notice'), ('774','19655','scope','availability'), ('775','19656','scope','performance'), ('776','19657','scope','notice'), ('777','19658','scope','notice'), ('778','19659','scope','performance'), ('779','18222','scope','capacity'), ('780','18223','scope','performance'), ('781','18224','scope','availability'), ('782','18225','scope','availability'), ('783','18226','scope','notice'), ('784','18227','scope','notice'), ('785','18221','scope','capacity'), ('786','18228','scope','availability'), ('787','18229','scope','performance'), ('788','19011','scope','notice'), ('789','18231','scope','capacity'), ('790','18232','scope','capacity'), ('791','18233','scope','capacity'), ('792','18234','scope','capacity'), ('794','18236','scope','availability'), ('795','18237','scope','notice'), ('796','18238','scope','notice'), ('797','18239','scope','notice'), ('798','16927','scope','performance'), ('799','16928','scope','performance'), ('800','16929','scope','performance'), ('801','16930','scope','performance'), ('802','16931','scope','performance'), ('803','16932','scope','performance'), ('804','16933','scope','performance'), ('805','16934','scope','performance'), ('806','16935','scope','performance'), ('807','16936','scope','performance'), ('808','16937','scope','performance'), ('809','16938','scope','performance'), ('810','17081','scope','performance'), ('811','17082','scope','performance'), ('812','17083','scope','performance'), ('813','16940','scope','availability'), ('814','16939','scope','notice'), ('815','16941','scope','notice'), ('816','18534','scope','performance'), ('817','18535','scope','performance'), ('818','16944','scope','performance'), ('819','17084','scope','availability'), ('820','16925','scope','performance'), ('821','17080','scope','performance'), ('830','18536','database','{#DBNAME}'), ('831','18536','scope','availability'), ('832','18537','database','{#DBNAME}'), ('833','18537','scope','availability'), ('834','18538','database','{#DBNAME}'), ('835','18538','scope','availability'), ('836','18539','scope','availability'), ('837','18540','database','{#DBNAME}'), ('838','18540','scope','availability'), ('839','18541','database','{#DBNAME}'), ('840','18541','scope','availability'), ('841','16951','database','{#DBNAME}'), ('842','16951','scope','performance'), ('843','16950','database','{#DBNAME}'), ('844','16950','scope','performance'), ('845','16954','database','{#DBNAME}'), ('846','16954','scope','performance'), ('847','16955','database','{#DBNAME}'), ('848','16955','scope','availability'), ('849','18542','mssql-job','{#JOBNAME}'), ('850','18542','scope','performance'), ('851','18543','mssql-job','{#JOBNAME}'), ('852','18543','scope','performance'), ('897','16719','scope','availability'), ('898','18544','scope','notice'), ('899','16721','scope','availability'), ('900','16972','scope','performance'), ('901','16973','scope','performance'), ('902','16974','scope','performance'), ('903','16723','scope','availability'), ('904','16724','scope','performance'), ('905','16975','scope','availability'), ('906','16725','scope','notice'), ('907','16726','scope','notice'), ('908','16727','scope','notice'), ('909','16729','scope','availability'), ('910','16728','scope','notice'), ('911','16730','scope','notice'), ('912','16756','scope','availability'), ('913','18545','scope','notice'), ('914','16758','scope','availability'), ('915','16976','scope','performance'), ('916','16977','scope','performance'), ('917','16978','scope','performance'), ('918','16759','scope','availability'), ('919','16760','scope','performance'), ('920','16979','scope','availability'), ('921','16761','scope','notice'), ('922','16762','scope','notice'), ('923','16763','scope','notice'), ('924','16765','scope','availability'), ('925','16764','scope','notice'), ('926','16766','scope','notice'), ('927','16732','scope','availability'), ('928','16733','scope','notice'), ('929','16734','scope','availability'), ('930','18546','scope','notice'), ('931','16736','scope','availability'), ('932','16980','scope','performance'), ('933','16981','scope','performance'), ('934','16982','scope','performance'), ('935','16737','scope','performance'), ('936','16983','scope','availability'), ('937','16738','scope','notice'), ('938','16739','scope','notice'), ('939','16741','scope','availability'), ('940','16740','scope','notice'), ('941','16742','scope','notice'), ('942','17177','scope','notice'), ('943','17178','scope','notice'), ('944','17179','scope','availability'), ('945','17180','scope','capacity'), ('946','18547','scope','performance'), ('947','17182','scope','performance'), ('948','17183','scope','performance'), ('949','17184','scope','capacity'), ('950','17185','scope','availability'), ('951','17186','scope','notice'), ('952','17187','scope','notice'), ('953','17188','scope','notice'), ('954','17173','scope','capacity'), ('955','17174','scope','capacity'), ('956','17175','scope','capacity'), ('957','17176','scope','capacity'), ('973','16989','scope','notice'), ('974','16990','scope','notice'), ('975','16991','scope','capacity'), ('976','18548','scope','performance'), ('977','16993','scope','performance'), ('978','16994','scope','performance'), ('979','16995','scope','capacity'), ('980','16997','scope','availability'), ('981','16996','scope','notice'), ('982','16998','scope','notice'), ('983','16999','scope','notice'), ('984','17000','scope','availability'), ('985','16984','scope','availability'), ('986','16985','scope','capacity'), ('987','16986','scope','capacity'), ('988','16987','scope','capacity'), ('989','16988','scope','capacity'), ('1005','17390','scope','performance'), ('1006','17391','scope','availability'), ('1007','17392','scope','performance'), ('1008','17393','scope','notice'), ('1009','17394','scope','performance'), ('1010','17395','scope','availability'), ('1011','17395','scope','performance'), ('1012','17396','scope','availability'), ('1013','17397','scope','availability'), ('1014','17397','scope','performance'), ('1015','17398','scope','availability'), ('1016','17399','scope','notice'), ('1017','17400','scope','notice'), ('1018','17401','scope','performance'), ('1019','17402','scope','availability'), ('1020','17403','scope','availability'), ('1021','17404','scope','availability'), ('1022','17405','scope','performance'), ('1023','17014','scope','performance'), ('1024','17553','scope','availability'), ('1025','17016','scope','availability'), ('1026','17017','scope','notice'), ('1027','17018','scope','performance'), ('1028','17019','scope','availability'), ('1029','16682','scope','notice'), ('1030','16683','scope','availability'), ('1031','16684','scope','performance'), ('1032','16685','scope','notice'), ('1033','16686','scope','notice'), ('1034','16687','scope','availability'), ('1035','16688','scope','notice'), ('1036','16689','scope','notice'), ('1037','16690','scope','notice'), ('1038','16691','scope','notice'), ('1039','16692','scope','performance'), ('1040','16693','scope','availability'), ('1041','16681','scope','performance'), ('1042','16694','scope','availability'), ('1043','18002','scope','capacity'), ('1044','18002','scope','performance'), ('1045','16696','scope','availability'), ('1046','18549','scope','availability'), ('1047','18550','scope','notice'), ('1048','18551','scope','notice'), ('1049','18552','scope','capacity'), ('1050','18553','scope','availability'), ('1051','18554','scope','availability'), ('1052','18555','scope','capacity'), ('1053','18556','scope','availability'), ('1054','18557','scope','availability'), ('1055','18559','scope','performance'), ('1056','18560','scope','availability'), ('1057','18561','scope','capacity'), ('1058','18562','scope','availability'), ('1059','18563','scope','performance'), ('1060','18564','scope','availability'), ('1061','18565','scope','availability'), ('1062','18566','scope','availability'), ('1063','18567','scope','performance'), ('1064','18568','scope','notice'), ('1065','18569','scope','notice'), ('1066','18558','scope','capacity'), ('1067','18570','scope','performance'), ('1068','18571','scope','performance'), ('1069','18574','scope','notice'), ('1070','18573','scope','performance'), ('1071','22557','scope','performance'), ('1072','18575','scope','availability'), ('1129','21543','scope','availability'), ('1130','21544','scope','availability'), ('1131','21544','scope','performance'), ('1132','21545','scope','availability'), ('1133','21545','scope','performance'), ('1134','16491','scope','performance'), ('1135','21546','scope','notice'), ('1136','21546','scope','security'), ('1137','16492','scope','notice'), ('1138','21547','scope','notice'), ('1139','18108','scope','capacity'), ('1140','18108','scope','performance'), ('1141','21548','scope','availability'), ('1142','14322','scope','notice'), ('1143','15330','scope','availability'), ('1144','15330','scope','performance'), ('1145','21549','scope','performance'), ('1146','21550','scope','performance'), ('1147','21551','scope','availability'), ('1148','21551','scope','performance'), ('1149','21552','scope','availability'), ('1150','21553','scope','performance'), ('1151','16494','scope','availability'), ('1152','16494','scope','performance'), ('1153','16495','scope','availability'), ('1154','16495','scope','performance'), ('1155','14319','scope','availability'), ('1156','14319','scope','performance'), ('1157','14318','scope','availability'), ('1158','14318','scope','performance'), ('1159','14320','scope','availability'), ('1160','14320','scope','performance'), ('1161','21554','scope','availability'), ('1162','21555','scope','availability'), ('1163','21555','scope','performance'), ('1164','21556','scope','availability'), ('1165','21556','scope','performance'), ('1166','21557','scope','performance'), ('1167','21558','scope','notice'), ('1168','21558','scope','security'), ('1169','21559','scope','notice'), ('1170','21560','scope','availability'), ('1171','15718','scope','notice'), ('1172','17554','scope','notice'), ('1173','17555','scope','notice'), ('1174','17556','scope','notice'), ('1175','17557','scope','notice'), ('1176','15717','scope','availability'), ('1177','15717','scope','performance'), ('1178','21561','scope','performance'), ('1179','21562','scope','performance'), ('1180','21563','scope','availability'), ('1181','21563','scope','performance'), ('1182','21564','scope','availability'), ('1183','21565','scope','performance'), ('1184','15719','scope','availability'), ('1185','15719','scope','performance'), ('1186','17558','scope','notice'), ('1187','17559','scope','notice'), ('1188','17560','scope','notice'), ('1189','17561','scope','notice'), ('1190','21566','scope','availability'), ('1191','21566','scope','capacity'), ('1192','21567','scope','availability'), ('1193','21567','scope','capacity'), ('1194','21568','scope','capacity'), ('1195','21568','scope','performance'), ('1196','17562','scope','notice'), ('1197','17563','scope','notice'), ('1198','17564','scope','notice'), ('1199','17565','scope','notice'), ('1200','21569','scope','availability'), ('1201','21570','scope','availability'), ('1202','21570','scope','performance'), ('1203','21571','scope','availability'), ('1204','21571','scope','performance'), ('1205','16496','scope','performance'), ('1206','14337','scope','notice'), ('1207','14336','scope','notice'), ('1208','21572','scope','notice'), ('1209','21572','scope','security'), ('1210','15720','scope','availability'), ('1211','15720','scope','performance'), ('1212','15721','scope','availability'), ('1213','15721','scope','performance'), ('1214','21573','scope','notice'), ('1215','18109','scope','capacity'), ('1216','18109','scope','performance'), ('1217','21574','scope','availability'), ('1218','15393','scope','availability'), ('1219','15393','scope','performance'), ('1220','15394','scope','notice'), ('1221','21575','scope','performance'), ('1222','21576','scope','performance'), ('1223','21577','scope','availability'), ('1224','21577','scope','performance'), ('1225','21578','scope','availability'), ('1226','15391','scope','availability'), ('1227','15391','scope','performance'), ('1228','15392','scope','notice'), ('1229','17322','scope','availability'), ('1230','17322','scope','performance'), ('1231','14339','scope','availability'), ('1232','14339','scope','performance'), ('1233','14340','scope','availability'), ('1234','14340','scope','performance'), ('1235','21579','scope','availability'), ('1236','21580','scope','availability'), ('1237','21580','scope','performance'), ('1238','21581','scope','availability'), ('1239','21581','scope','performance'), ('1240','21582','scope','performance'), ('1241','14364','scope','notice'), ('1242','14363','scope','notice'), ('1243','21583','scope','notice'), ('1244','21583','scope','security'), ('1245','21584','scope','notice'), ('1246','21585','scope','capacity'), ('1247','21585','scope','performance'), ('1248','21586','scope','availability'), ('1252','21587','scope','availability'), ('1253','21588','scope','availability'), ('1254','21588','scope','performance'), ('1255','21589','scope','availability'), ('1256','21589','scope','performance'), ('1257','21590','scope','performance'), ('1258','14365','scope','notice'), ('1259','21591','scope','notice'), ('1260','21591','scope','security'), ('1261','21592','scope','notice'), ('1262','21593','scope','capacity'), ('1263','21593','scope','performance'), ('1264','21594','scope','availability'), ('1265','15381','scope','availability'), ('1266','15381','scope','performance'), ('1267','15382','scope','notice'), ('1268','21595','scope','performance'), ('1269','21596','scope','performance'), ('1270','21597','scope','availability'), ('1271','21597','scope','performance'), ('1272','21598','scope','availability'), ('1273','15379','scope','availability'), ('1274','15379','scope','performance'), ('1275','15380','scope','notice'), ('1276','16505','scope','availability'), ('1277','16505','scope','performance'), ('1278','16504','scope','availability'), ('1279','16504','scope','performance'), ('1280','16506','scope','availability'), ('1281','16506','scope','performance'), ('1282','14373','scope','availability'), ('1283','14373','scope','performance'), ('1284','14372','scope','availability'), ('1285','14372','scope','performance'), ('1286','14374','scope','availability'), ('1287','14374','scope','performance'), ('1288','14383','scope','notice'), ('1289','15385','scope','availability'), ('1290','15385','scope','performance'), ('1291','15386','scope','notice'), ('1292','21599','scope','performance'), ('1293','21600','scope','performance'), ('1294','21601','scope','availability'), ('1295','21601','scope','performance'), ('1296','21602','scope','availability'), ('1297','15383','scope','availability'), ('1298','15383','scope','performance'), ('1299','15384','scope','notice'), ('1300','14381','scope','availability'), ('1301','14381','scope','performance'), ('1302','14380','scope','availability'), ('1303','14380','scope','performance'), ('1304','14382','scope','availability'), ('1305','14382','scope','performance'), ('1306','19012','scope','notice'), ('1307','19013','scope','availability'), ('1308','19014','scope','performance'), ('1309','19015','scope','capacity'), ('1310','19015','scope','performance'), ('1311','19016','scope','availability'), ('1312','19017','scope','notice'), ('1313','18298','scope','availability'), ('1314','18299','scope','availability'), ('1315','18299','scope','performance'), ('1316','18300','scope','availability'), ('1317','18300','scope','performance'), ('1318','18301','scope','notice'), ('1319','18302','scope','notice'), ('1320','18303','scope','notice'), ('1321','18304','scope','notice'), ('1322','18305','scope','availability'), ('1323','18306','scope','capacity'), ('1324','18306','scope','performance'), ('1325','18307','scope','notice'), ('1326','18308','scope','availability'), ('1327','18308','scope','performance'), ('1328','18309','scope','availability'), ('1329','18309','scope','performance'), ('1330','18310','scope','capacity'), ('1331','18310','scope','performance'), ('1332','18311','scope','notice'), ('1333','18312','scope','performance'), ('1334','18313','scope','performance'), ('1335','18314','scope','performance'), ('1336','18315','scope','performance'), ('1337','18316','scope','availability'), ('1338','18317','scope','performance'), ('1339','18318','scope','availability'), ('1340','18319','scope','availability'), ('1341','18320','scope','availability'), ('1342','18320','scope','performance'), ('1343','18321','scope','availability'), ('1344','18321','scope','performance'), ('1345','18322','scope','availability'), ('1346','18322','scope','performance'), ('1347','18323','scope','availability'), ('1348','18323','scope','performance'), ('1349','18324','scope','availability'), ('1350','18324','scope','performance'), ('1351','18325','scope','availability'), ('1352','18326','scope','availability'), ('1353','18326','scope','performance'), ('1354','18327','scope','availability'), ('1355','18327','scope','performance'), ('1356','18328','scope','notice'), ('1357','18329','scope','notice'), ('1358','18330','scope','notice'), ('1359','18331','scope','notice'), ('1360','18332','scope','availability'), ('1361','18333','scope','capacity'), ('1362','18333','scope','performance'), ('1363','18334','scope','notice'), ('1364','18335','scope','availability'), ('1365','18335','scope','performance'), ('1366','18336','scope','availability'), ('1367','18336','scope','performance'), ('1368','18337','scope','capacity'), ('1369','18337','scope','performance'), ('1370','18338','scope','notice'), ('1371','18339','scope','performance'), ('1372','18340','scope','performance'), ('1373','18341','scope','performance'), ('1374','18342','scope','performance'), ('1375','18343','scope','availability'), ('1376','18344','scope','performance'), ('1377','18345','scope','availability'), ('1378','18346','scope','availability'), ('1379','18347','scope','availability'), ('1380','18347','scope','performance'), ('1381','18348','scope','availability'), ('1382','18348','scope','performance'), ('1383','18349','scope','availability'), ('1384','18349','scope','performance'), ('1385','18350','scope','availability'), ('1386','18350','scope','performance'), ('1387','18351','scope','availability'), ('1388','18351','scope','performance'), ('1389','18352','scope','availability'), ('1390','18353','scope','availability'), ('1391','18353','scope','performance'), ('1392','18354','scope','availability'), ('1393','18354','scope','performance'), ('1394','18355','scope','notice'), ('1395','18356','scope','notice'), ('1396','18357','scope','notice'), ('1397','18358','scope','notice'), ('1398','18359','scope','availability'), ('1399','18360','scope','capacity'), ('1400','18360','scope','performance'), ('1401','18361','scope','notice'), ('1402','18362','scope','availability'), ('1403','18362','scope','performance'), ('1404','18363','scope','availability'), ('1405','18363','scope','performance'), ('1406','18364','scope','capacity'), ('1407','18364','scope','performance'), ('1408','18365','scope','notice'), ('1409','18366','scope','performance'), ('1410','18367','scope','performance'), ('1411','18368','scope','performance'), ('1412','18369','scope','performance'), ('1413','18370','scope','availability'), ('1414','18371','scope','performance'), ('1415','18372','scope','availability'), ('1416','18373','scope','availability'), ('1417','18374','scope','availability'), ('1418','18374','scope','performance'), ('1419','18375','scope','availability'), ('1420','18375','scope','performance'), ('1421','18376','scope','availability'), ('1422','18376','scope','performance'), ('1423','18377','scope','availability'), ('1424','18377','scope','performance'), ('1425','18378','scope','availability'), ('1426','18378','scope','performance'), ('1427','18379','scope','availability'), ('1428','18380','scope','availability'), ('1429','18380','scope','performance'), ('1430','18381','scope','availability'), ('1431','18381','scope','performance'), ('1432','18382','scope','notice'), ('1433','18383','scope','notice'), ('1434','18384','scope','notice'), ('1435','18385','scope','notice'), ('1436','18386','scope','availability'), ('1437','18387','scope','capacity'), ('1438','18387','scope','performance'), ('1439','18388','scope','notice'), ('1440','18389','scope','availability'), ('1441','18389','scope','performance'), ('1442','18390','scope','availability'), ('1443','18390','scope','performance'), ('1444','18391','scope','capacity'), ('1445','18391','scope','performance'), ('1446','18392','scope','notice'), ('1447','18393','scope','performance'), ('1448','18394','scope','performance'), ('1449','18395','scope','performance'), ('1450','18396','scope','performance'), ('1451','18397','scope','availability'), ('1452','18398','scope','performance'), ('1453','18399','scope','availability'), ('1454','18400','scope','availability'), ('1455','18401','scope','availability'), ('1456','18401','scope','performance'), ('1457','18402','scope','availability'), ('1458','18402','scope','performance'), ('1459','18403','scope','availability'), ('1460','18403','scope','performance'), ('1461','18404','scope','availability'), ('1462','18404','scope','performance'), ('1463','18405','scope','availability'), ('1464','18405','scope','performance'), ('1465','18406','scope','availability'), ('1466','18407','scope','availability'), ('1467','18407','scope','performance'), ('1468','18408','scope','availability'), ('1469','18408','scope','performance'), ('1470','18409','scope','notice'), ('1471','18410','scope','notice'), ('1472','18411','scope','notice'), ('1473','18412','scope','notice'), ('1474','18413','scope','availability'), ('1475','18414','scope','capacity'), ('1476','18414','scope','performance'), ('1477','18415','scope','notice'), ('1478','18416','scope','availability'), ('1479','18416','scope','performance'), ('1480','18417','scope','availability'), ('1481','18417','scope','performance'), ('1482','18418','scope','capacity'), ('1483','18418','scope','performance'), ('1484','18419','scope','notice'), ('1485','18420','scope','performance'), ('1486','18421','scope','performance'), ('1487','18422','scope','performance'), ('1488','18423','scope','performance'), ('1489','18424','scope','availability'), ('1490','18425','scope','performance'), ('1491','18426','scope','availability'), ('1492','18427','scope','availability'), ('1493','18428','scope','availability'), ('1494','18428','scope','performance'), ('1495','18429','scope','availability'), ('1496','18429','scope','performance'), ('1497','18430','scope','availability'), ('1498','18430','scope','performance'), ('1499','18431','scope','availability'), ('1500','18431','scope','performance'), ('1501','18432','scope','availability'), ('1502','18432','scope','performance'), ('1505','21603','scope','availability'), ('1506','21604','scope','availability'), ('1507','21604','scope','performance'), ('1508','21605','scope','availability'), ('1509','21605','scope','performance'), ('1510','21606','scope','performance'), ('1511','21607','scope','notice'), ('1512','21608','scope','notice'), ('1513','21608','scope','security'), ('1514','21609','scope','notice'), ('1515','21610','scope','notice'), ('1516','21611','scope','availability'), ('1517','21612','scope','availability'), ('1518','21613','scope','availability'), ('1519','21613','scope','performance'), ('1520','21614','scope','availability'), ('1521','21614','scope','performance'), ('1522','21615','scope','notice'), ('1523','21616','scope','notice'), ('1524','21616','scope','security'), ('1525','21617','scope','notice'), ('1526','21618','scope','notice'), ('1527','21619','scope','availability'), ('1528','21620','scope','availability'), ('1529','21621','scope','availability'), ('1530','21621','scope','performance'), ('1531','21622','scope','availability'), ('1532','21622','scope','performance'), ('1533','21623','scope','notice'), ('1534','21624','scope','notice'), ('1535','21624','scope','security'), ('1536','21625','scope','notice'), ('1537','21626','scope','notice'), ('1538','21627','scope','availability'), ('1559','21628','scope','notice'), ('1560','21629','scope','availability'), ('1561','21629','scope','performance'), ('1562','21630','scope','availability'), ('1563','21630','scope','performance'), ('1564','21631','scope','capacity'), ('1565','21631','scope','performance'), ('1566','21632','scope','availability'), ('1567','21632','scope','performance'), ('1568','21633','scope','availability'), ('1569','21633','scope','performance'), ('1570','21634','scope','availability'), ('1571','21634','scope','performance'), ('1572','21635','scope','availability'), ('1573','21635','scope','performance'), ('1574','21636','scope','availability'), ('1575','21636','scope','performance'), ('1576','21637','scope','performance'), ('1577','21638','scope','notice'), ('1578','21639','scope','availability'), ('1579','21639','scope','performance'), ('1580','21640','scope','availability'), ('1581','21640','scope','performance'), ('1582','21641','scope','capacity'), ('1583','21641','scope','performance'), ('1584','21642','scope','performance'), ('1585','21643','scope','performance'), ('1586','21644','scope','availability'), ('1587','21644','scope','performance'), ('1588','21645','scope','availability'), ('1589','21646','scope','performance'), ('1590','21647','scope','availability'), ('1591','21647','scope','performance'), ('1592','21648','scope','availability'), ('1593','21648','scope','performance'), ('1594','21649','scope','availability'), ('1595','21649','scope','performance'), ('1596','21650','scope','availability'), ('1597','21650','scope','performance'), ('1598','21651','scope','availability'), ('1599','21651','scope','performance'), ('1600','21652','scope','performance'), ('1601','21653','scope','notice'), ('1602','21654','scope','availability'), ('1603','21654','scope','performance'), ('1604','21655','scope','availability'), ('1605','21655','scope','performance'), ('1606','21656','scope','capacity'), ('1607','21656','scope','performance'), ('1608','21657','scope','performance'), ('1609','21658','scope','performance'), ('1610','21659','scope','availability'), ('1611','21659','scope','performance'), ('1612','21660','scope','availability'), ('1613','21661','scope','availability'), ('1614','21661','scope','performance'), ('1615','21662','scope','availability'), ('1616','21662','scope','performance'), ('1617','21663','scope','availability'), ('1618','21663','scope','performance'), ('1619','21664','scope','availability'), ('1620','21664','scope','performance'), ('1621','21665','scope','availability'), ('1622','21665','scope','performance'), ('1623','21666','scope','availability'), ('1624','21667','scope','availability'), ('1625','21667','scope','performance'), ('1626','21668','scope','availability'), ('1627','21668','scope','performance'), ('1628','21669','scope','notice'), ('1629','21669','scope','security'), ('1630','21670','scope','notice'), ('1631','21671','scope','availability'), ('1632','15333','scope','availability'), ('1633','15333','scope','performance'), ('1634','15334','scope','notice'), ('1635','16521','scope','performance'), ('1636','18117','scope','capacity'), ('1637','18117','scope','performance'), ('1638','21672','scope','performance'), ('1639','21673','scope','performance'), ('1640','21674','scope','availability'), ('1641','21674','scope','performance'), ('1642','21675','scope','availability'), ('1643','21676','scope','performance'), ('1644','15331','scope','availability'), ('1645','15331','scope','performance'), ('1646','15332','scope','notice'), ('1647','14461','scope','availability'), ('1648','14461','scope','performance'), ('1649','14460','scope','availability'), ('1650','14460','scope','performance'), ('1651','14462','scope','availability'), ('1652','14462','scope','performance'), ('1653','14463','scope','notice'), ('1654','16523','scope','notice'), ('1655','21677','scope','availability'), ('1656','21678','scope','availability'), ('1657','21678','scope','performance'), ('1658','21679','scope','availability'), ('1659','21679','scope','performance'), ('1660','16524','scope','performance'), ('1661','14474','scope','notice'), ('1662','21680','scope','notice'), ('1663','21680','scope','security'), ('1664','16525','scope','notice'), ('1665','21681','scope','notice'), ('1666','21682','scope','availability'), ('1667','15367','scope','availability'), ('1668','15367','scope','performance'), ('1669','18118','scope','capacity'), ('1670','18118','scope','performance'), ('1671','21683','scope','performance'), ('1672','21684','scope','performance'), ('1673','21685','scope','availability'), ('1674','21685','scope','performance'), ('1675','21686','scope','availability'), ('1676','15366','scope','availability'), ('1677','15366','scope','performance'), ('1678','14477','scope','availability'), ('1679','14477','scope','performance'), ('1680','14476','scope','availability'), ('1681','14476','scope','performance'), ('1682','14478','scope','availability'), ('1683','14478','scope','performance'), ('1684','21687','scope','availability'), ('1685','21688','scope','availability'), ('1686','21688','scope','performance'), ('1687','21689','scope','availability'), ('1688','21689','scope','performance'), ('1689','16527','scope','performance'), ('1690','14493','scope','notice'), ('1691','14492','scope','notice'), ('1692','21690','scope','notice'), ('1693','21690','scope','security'), ('1694','21691','scope','notice'), ('1695','21692','scope','availability'), ('1696','15341','scope','availability'), ('1697','15341','scope','performance'), ('1698','18119','scope','capacity'), ('1699','18119','scope','performance'), ('1700','21693','scope','performance'), ('1701','21694','scope','performance'), ('1702','21695','scope','availability'), ('1703','21695','scope','performance'), ('1704','21696','scope','availability'), ('1705','21697','scope','performance'), ('1706','15340','scope','availability'), ('1707','15340','scope','performance'), ('1708','14496','scope','availability'), ('1709','14496','scope','performance'), ('1710','14495','scope','availability'), ('1711','14495','scope','performance'), ('1712','14497','scope','availability'), ('1713','14497','scope','performance'), ('1714','21698','scope','availability'), ('1715','21699','scope','availability'), ('1716','21699','scope','performance'), ('1717','21700','scope','availability'), ('1718','21700','scope','performance'), ('1719','14511','scope','availability'), ('1720','14511','scope','performance'), ('1721','14513','scope','availability'), ('1722','14513','scope','performance'), ('1723','16529','scope','performance'), ('1724','14515','scope','notice'), ('1725','14514','scope','notice'), ('1726','21701','scope','notice'), ('1727','21701','scope','security'), ('1728','16530','scope','notice'), ('1729','21702','scope','notice'), ('1730','21703','scope','availability'), ('1731','17574','scope','availability'), ('1732','17574','scope','performance'), ('1733','15370','scope','availability'), ('1734','15370','scope','performance'), ('1735','18120','scope','capacity'), ('1736','18120','scope','performance'), ('1737','21704','scope','performance'), ('1738','21705','scope','performance'), ('1739','21706','scope','availability'), ('1740','21706','scope','performance'), ('1741','21707','scope','availability'), ('1742','21708','scope','performance'), ('1743','15369','scope','availability'), ('1744','15369','scope','performance'), ('1745','19660','scope','notice'), ('1746','19018','scope','notice'), ('1747','19661','scope','notice'), ('1748','19662','scope','notice'), ('1749','19019','scope','notice'), ('1750','19020','scope','availability'), ('1751','19021','scope','security'), ('1752','19022','scope','notice'), ('1753','19663','scope','notice'), ('1754','19023','scope','notice'), ('1755','19664','scope','notice'), ('1756','19665','scope','notice'), ('1757','19666','scope','notice'), ('1758','19024','scope','performance'), ('1759','19025','scope','capacity'), ('1760','19026','scope','performance'), ('1761','19027','scope','capacity'), ('1762','19028','scope','notice'), ('1763','19667','scope','capacity'), ('1764','19668','scope','capacity'), ('1765','21709','scope','availability'), ('1766','21710','scope','availability'), ('1767','21710','scope','performance'), ('1768','21711','scope','availability'), ('1769','21711','scope','performance'), ('1770','21712','scope','notice'), ('1771','21712','scope','security'), ('1772','21713','scope','notice'), ('1773','21714','scope','availability'), ('1774','21715','scope','performance'), ('1775','21716','scope','performance'), ('1776','21717','scope','performance'), ('1777','21718','scope','availability'), ('1778','21719','scope','performance'), ('1779','21720','scope','availability'), ('1780','21721','scope','availability'), ('1781','21721','scope','performance'), ('1782','21722','scope','availability'), ('1783','21722','scope','performance'), ('1784','21723','scope','notice'), ('1785','21723','scope','security'), ('1786','21724','scope','notice'), ('1787','21725','scope','availability'), ('1788','14557','scope','notice'), ('1789','14556','scope','notice'), ('1790','16532','scope','notice'), ('1791','15371','scope','availability'), ('1792','15371','scope','performance'), ('1793','16533','scope','performance'), ('1794','18121','scope','capacity'), ('1795','18121','scope','performance'), ('1796','21726','scope','performance'), ('1797','21727','scope','performance'), ('1798','21728','scope','availability'), ('1799','21728','scope','performance'), ('1800','21729','scope','availability'), ('1801','21730','scope','performance'), ('1802','15372','scope','availability'), ('1803','15372','scope','performance'), ('1804','14552','scope','availability'), ('1805','14552','scope','performance'), ('1806','14551','scope','availability'), ('1807','14551','scope','performance'), ('1808','14553','scope','availability'), ('1809','14553','scope','performance'), ('1810','21731','scope','availability'), ('1811','21732','scope','availability'), ('1812','21732','scope','performance'), ('1813','21733','scope','availability'), ('1814','21733','scope','performance'), ('1815','16535','scope','performance'), ('1816','14913','scope','notice'), ('1817','14912','scope','notice'), ('1818','21734','scope','notice'), ('1819','21734','scope','security'), ('1820','21735','scope','notice'), ('1821','21736','scope','availability'), ('1822','15373','scope','availability'), ('1823','15373','scope','performance'), ('1824','15374','scope','availability'), ('1825','15374','scope','performance'), ('1826','18122','scope','capacity'), ('1827','18122','scope','performance'), ('1828','21737','scope','performance'), ('1829','21738','scope','performance'), ('1830','21739','scope','availability'), ('1831','21739','scope','performance'), ('1832','21740','scope','availability'), ('1833','21741','scope','performance'), ('1834','15375','scope','availability'), ('1835','15375','scope','performance'), ('1836','15376','scope','availability'), ('1837','15376','scope','performance'), ('1838','14915','scope','availability'), ('1839','14915','scope','performance'), ('1840','14914','scope','availability'), ('1841','14914','scope','performance'), ('1842','14916','scope','availability'), ('1843','14916','scope','performance'), ('1844','21742','scope','availability'), ('1845','21743','scope','availability'), ('1846','21743','scope','performance'), ('1847','21744','scope','availability'), ('1848','21744','scope','performance'), ('1849','21745','scope','notice'), ('1850','21745','scope','security'), ('1851','21746','scope','notice'), ('1852','21747','scope','availability'), ('1853','15395','scope','availability'), ('1854','15395','scope','performance'), ('1855','14590','scope','availability'), ('1856','14590','scope','performance'), ('1857','14589','scope','availability'), ('1858','14589','scope','performance'), ('1859','14591','scope','availability'), ('1860','14591','scope','performance'), ('1861','16537','scope','performance'), ('1862','14592','scope','notice'), ('1863','16538','scope','notice'), ('1864','18123','scope','capacity'), ('1865','18123','scope','performance'), ('1866','21748','scope','performance'), ('1867','21749','scope','performance'), ('1868','21750','scope','availability'), ('1869','21750','scope','performance'), ('1870','21751','scope','availability'), ('1871','21752','scope','performance'), ('1872','21753','scope','availability'), ('1873','21754','scope','availability'), ('1874','21754','scope','performance'), ('1875','21755','scope','availability'), ('1876','21755','scope','performance'), ('1877','14603','scope','notice'), ('1878','21756','scope','notice'), ('1879','21756','scope','security'), ('1880','21757','scope','notice'), ('1881','21758','scope','availability'), ('1882','15339','scope','availability'), ('1883','15339','scope','performance'), ('1884','21759','scope','performance'), ('1885','21760','scope','performance'), ('1886','21761','scope','availability'), ('1887','21761','scope','performance'), ('1888','21762','scope','availability'), ('1889','15337','scope','availability'), ('1890','15337','scope','performance'), ('1891','15338','scope','availability'), ('1892','15338','scope','performance'), ('1893','17332','scope','availability'), ('1894','17332','scope','performance'), ('1895','17333','scope','availability'), ('1896','17333','scope','performance'), ('1897','14606','scope','availability'), ('1898','14606','scope','performance'), ('1899','14607','scope','notice'), ('1900','21763','scope','availability'), ('1901','21764','scope','availability'), ('1902','21764','scope','performance'), ('1903','21765','scope','availability'), ('1904','21765','scope','performance'), ('1905','14621','scope','notice'), ('1906','21766','scope','notice'), ('1907','21766','scope','security'), ('1908','15722','scope','availability'), ('1909','15722','scope','performance'), ('1910','16540','scope','notice'), ('1911','21767','scope','notice'), ('1912','21768','scope','availability'), ('1913','16541','scope','performance'), ('1914','18124','scope','capacity'), ('1915','18124','scope','performance'), ('1916','15377','scope','availability'), ('1917','15377','scope','performance'), ('1918','15378','scope','availability'), ('1919','15378','scope','performance'), ('1920','14625','scope','availability'), ('1921','14625','scope','performance'), ('1922','14624','scope','availability'), ('1923','14624','scope','performance'), ('1924','14626','scope','availability'), ('1925','14626','scope','performance'), ('1926','21769','scope','performance'), ('1927','21770','scope','performance'), ('1928','21771','scope','availability'), ('1929','21771','scope','performance'), ('1930','21772','scope','availability'), ('1931','21773','scope','performance'), ('1932','18433','scope','availability'), ('1933','18434','scope','availability'), ('1934','18434','scope','performance'), ('1935','18435','scope','availability'), ('1936','18435','scope','performance'), ('1937','18436','scope','performance'), ('1938','18437','scope','notice'), ('1939','18437','scope','security'), ('1940','18438','scope','notice'), ('1941','18439','scope','availability'), ('1942','14937','scope','notice'), ('1943','18440','scope','availability'), ('1944','18440','scope','performance'), ('1945','18441','scope','performance'), ('1946','18442','scope','performance'), ('1947','18443','scope','availability'), ('1948','18443','scope','performance'), ('1949','18444','scope','availability'), ('1950','18445','scope','availability'), ('1951','18445','scope','performance'), ('1952','18446','scope','availability'), ('1953','18446','scope','performance'), ('1954','18447','scope','availability'), ('1955','18447','scope','performance'), ('1956','18448','scope','availability'), ('1957','18448','scope','performance'), ('1958','18449','scope','availability'), ('1959','18449','scope','capacity'), ('1960','18450','scope','availability'), ('1961','18450','scope','capacity'), ('1962','18451','scope','capacity'), ('1963','18451','scope','performance'), ('1964','21774','scope','availability'), ('1965','21775','scope','availability'), ('1966','21775','scope','performance'), ('1967','21776','scope','availability'), ('1968','21776','scope','performance'), ('1969','19679','scope','notice'), ('1970','19680','scope','notice'), ('1971','21777','scope','notice'), ('1972','21777','scope','security'), ('1973','19681','scope','notice'), ('1974','21778','scope','notice'), ('1975','19682','scope','capacity'), ('1976','19682','scope','performance'), ('1977','21779','scope','availability'), ('1978','19683','scope','performance'), ('1991','19690','scope','availability'), ('1992','19690','scope','performance'), ('1993','19691','scope','availability'), ('1994','19691','scope','performance'), ('1995','19692','scope','availability'), ('1996','19692','scope','performance'), ('1997','19693','scope','availability'), ('1998','19693','scope','performance'), ('1999','19694','scope','availability'), ('2000','19694','scope','performance'), ('2001','21780','scope','performance'), ('2002','21781','scope','performance'), ('2003','21782','scope','availability'), ('2004','21782','scope','performance'), ('2005','21783','scope','availability'), ('2006','19695','scope','availability'), ('2007','19695','scope','capacity'), ('2008','19696','scope','availability'), ('2009','19696','scope','capacity'), ('2010','21784','scope','availability'), ('2011','21785','scope','availability'), ('2012','21785','scope','performance'), ('2013','21786','scope','availability'), ('2014','21786','scope','performance'), ('2015','19707','scope','notice'), ('2016','19708','scope','notice'), ('2017','21787','scope','notice'), ('2018','21787','scope','security'), ('2019','19709','scope','notice'), ('2020','21788','scope','notice'), ('2021','19710','scope','capacity'), ('2022','19710','scope','performance'), ('2023','21789','scope','availability'), ('2024','19711','scope','performance'), ('2037','19718','scope','availability'), ('2038','19718','scope','performance'), ('2039','19719','scope','availability'), ('2040','19719','scope','performance'), ('2041','19720','scope','availability'), ('2042','19720','scope','performance'), ('2043','19721','scope','availability'), ('2044','19721','scope','performance'), ('2045','19722','scope','availability'), ('2046','19722','scope','performance'), ('2047','21790','scope','performance'), ('2048','21791','scope','performance'), ('2049','21792','scope','availability'), ('2050','21792','scope','performance'), ('2051','21793','scope','availability'), ('2052','19723','scope','availability'), ('2053','19723','scope','capacity'), ('2054','19724','scope','availability'), ('2055','19724','scope','capacity'), ('2056','21794','scope','availability'), ('2057','21795','scope','availability'), ('2058','21795','scope','performance'), ('2059','21796','scope','availability'), ('2060','21796','scope','performance'), ('2061','19735','scope','notice'), ('2062','19736','scope','notice'), ('2063','21797','scope','notice'), ('2064','21797','scope','security'), ('2065','19737','scope','notice'), ('2066','21798','scope','notice'), ('2067','19738','scope','capacity'), ('2068','19738','scope','performance'), ('2069','21799','scope','availability'), ('2070','19739','scope','performance'), ('2083','19746','scope','availability'), ('2084','19746','scope','performance'), ('2085','19747','scope','availability'), ('2086','19747','scope','performance'), ('2087','19748','scope','availability'), ('2088','19748','scope','performance'), ('2089','19749','scope','availability'), ('2090','19749','scope','performance'), ('2091','19750','scope','availability'), ('2092','19750','scope','performance'), ('2093','21800','scope','performance'), ('2094','21801','scope','performance'), ('2095','21802','scope','availability'), ('2096','21802','scope','performance'), ('2097','21803','scope','availability'), ('2098','19751','scope','availability'), ('2099','19751','scope','capacity'), ('2100','19752','scope','availability'), ('2101','19752','scope','capacity'), ('2102','21804','scope','availability'), ('2103','21805','scope','availability'), ('2104','21805','scope','performance'), ('2105','21806','scope','availability'), ('2106','21806','scope','performance'), ('2107','19763','scope','notice'), ('2108','19764','scope','notice'), ('2109','21807','scope','notice'), ('2110','21807','scope','security'), ('2111','19765','scope','notice'), ('2112','21808','scope','notice'), ('2113','19766','scope','capacity'), ('2114','19766','scope','performance'), ('2115','21809','scope','availability'), ('2116','19767','scope','performance'), ('2129','19774','scope','availability'), ('2130','19774','scope','performance'), ('2131','19775','scope','availability'), ('2132','19775','scope','performance'), ('2133','19776','scope','availability'), ('2134','19776','scope','performance'), ('2135','19777','scope','availability'), ('2136','19777','scope','performance'), ('2137','19778','scope','availability'), ('2138','19778','scope','performance'), ('2139','21810','scope','performance'), ('2140','21811','scope','performance'), ('2141','21812','scope','availability'), ('2142','21812','scope','performance'), ('2143','21813','scope','availability'), ('2144','19779','scope','availability'), ('2145','19779','scope','capacity'), ('2146','19780','scope','availability'), ('2147','19780','scope','capacity'), ('2148','21814','scope','availability'), ('2149','21815','scope','availability'), ('2150','21815','scope','performance'), ('2151','21816','scope','availability'), ('2152','21816','scope','performance'), ('2153','19791','scope','notice'), ('2154','19792','scope','notice'), ('2155','21817','scope','notice'), ('2156','21817','scope','security'), ('2157','19793','scope','notice'), ('2158','21818','scope','notice'), ('2159','19794','scope','capacity'), ('2160','19794','scope','performance'), ('2161','21819','scope','availability'), ('2162','19795','scope','performance'), ('2175','19802','scope','availability'), ('2176','19802','scope','performance'), ('2177','19803','scope','availability'), ('2178','19803','scope','performance'), ('2179','19804','scope','availability'), ('2180','19804','scope','performance'), ('2181','19805','scope','availability'), ('2182','19805','scope','performance'), ('2183','19806','scope','availability'), ('2184','19806','scope','performance'), ('2185','21820','scope','performance'), ('2186','21821','scope','performance'), ('2187','21822','scope','availability'), ('2188','21822','scope','performance'), ('2189','21823','scope','availability'), ('2190','19807','scope','availability'), ('2191','19807','scope','capacity'), ('2192','19808','scope','availability'), ('2193','19808','scope','capacity'), ('2194','21824','scope','availability'), ('2195','21825','scope','availability'), ('2196','21825','scope','performance'), ('2197','21826','scope','availability'), ('2198','21826','scope','performance'), ('2199','19819','scope','notice'), ('2200','19820','scope','notice'), ('2201','21827','scope','notice'), ('2202','21827','scope','security'), ('2203','19821','scope','notice'), ('2204','21828','scope','notice'), ('2205','19822','scope','capacity'), ('2206','19822','scope','performance'), ('2207','21829','scope','availability'), ('2208','19823','scope','performance'), ('2221','19830','scope','availability'), ('2222','19830','scope','performance'), ('2223','19831','scope','availability'), ('2224','19831','scope','performance'), ('2225','19832','scope','availability'), ('2226','19832','scope','performance'), ('2227','19833','scope','availability'), ('2228','19833','scope','performance'), ('2229','19834','scope','availability'), ('2230','19834','scope','performance'), ('2231','21830','scope','performance'), ('2232','21831','scope','performance'), ('2233','21832','scope','availability'), ('2234','21832','scope','performance'), ('2235','21833','scope','availability'), ('2236','19835','scope','availability'), ('2237','19835','scope','capacity'), ('2238','19836','scope','availability'), ('2239','19836','scope','capacity'), ('2240','21834','scope','availability'), ('2241','21835','scope','availability'), ('2242','21835','scope','performance'), ('2243','21836','scope','availability'), ('2244','21836','scope','performance'), ('2245','19847','scope','notice'), ('2246','19848','scope','notice'), ('2247','21837','scope','notice'), ('2248','21837','scope','security'), ('2249','19849','scope','notice'), ('2250','21838','scope','notice'), ('2251','19850','scope','capacity'), ('2252','19850','scope','performance'), ('2253','21839','scope','availability'), ('2254','19851','scope','performance'), ('2267','19858','scope','availability'), ('2268','19858','scope','performance'), ('2269','19859','scope','availability'), ('2270','19859','scope','performance'), ('2271','19860','scope','availability'), ('2272','19860','scope','performance'), ('2273','19861','scope','availability'), ('2274','19861','scope','performance'), ('2275','19862','scope','availability'), ('2276','19862','scope','performance'), ('2277','21840','scope','performance'), ('2278','21841','scope','performance'), ('2279','21842','scope','availability'), ('2280','21842','scope','performance'), ('2281','21843','scope','availability'), ('2282','19863','scope','availability'), ('2283','19863','scope','capacity'), ('2284','19864','scope','availability'), ('2285','19864','scope','capacity'), ('2286','21844','scope','availability'), ('2287','21845','scope','availability'), ('2288','21845','scope','performance'), ('2289','21846','scope','availability'), ('2290','21846','scope','performance'), ('2291','19875','scope','notice'), ('2292','19876','scope','notice'), ('2293','21847','scope','notice'), ('2294','21847','scope','security'), ('2295','19877','scope','notice'), ('2296','21848','scope','notice'), ('2297','19878','scope','capacity'), ('2298','19878','scope','performance'), ('2299','21849','scope','availability'), ('2300','19879','scope','performance'), ('2313','19886','scope','availability'), ('2314','19886','scope','performance'), ('2315','19887','scope','availability'), ('2316','19887','scope','performance'), ('2317','19888','scope','availability'), ('2318','19888','scope','performance'), ('2319','19889','scope','availability'), ('2320','19889','scope','performance'), ('2321','19890','scope','availability'), ('2322','19890','scope','performance'), ('2323','21850','scope','performance'), ('2324','21851','scope','performance'), ('2325','21852','scope','availability'), ('2326','21852','scope','performance'), ('2327','21853','scope','availability'), ('2328','19891','scope','availability'), ('2329','19891','scope','capacity'), ('2330','19892','scope','availability'), ('2331','19892','scope','capacity'), ('2332','21854','scope','availability'), ('2333','21855','scope','availability'), ('2334','21855','scope','performance'), ('2335','21856','scope','availability'), ('2336','21856','scope','performance'), ('2337','19903','scope','notice'), ('2338','19904','scope','notice'), ('2339','21857','scope','notice'), ('2340','21857','scope','security'), ('2341','19905','scope','notice'), ('2342','21858','scope','notice'), ('2343','19906','scope','capacity'), ('2344','19906','scope','performance'), ('2345','21859','scope','availability'), ('2346','19907','scope','performance'), ('2359','19914','scope','availability'), ('2360','19914','scope','performance'), ('2361','19915','scope','availability'), ('2362','19915','scope','performance'), ('2363','19916','scope','availability'), ('2364','19916','scope','performance'), ('2365','19917','scope','availability'), ('2366','19917','scope','performance'), ('2367','19918','scope','availability'), ('2368','19918','scope','performance'), ('2369','21860','scope','performance'), ('2370','21861','scope','performance'), ('2371','21862','scope','availability'), ('2372','21862','scope','performance'), ('2373','21863','scope','availability'), ('2374','19919','scope','availability'), ('2375','19919','scope','capacity'), ('2376','19920','scope','availability'), ('2377','19920','scope','capacity'), ('2378','21864','scope','availability'), ('2379','21865','scope','availability'), ('2380','21865','scope','performance'), ('2381','21866','scope','availability'), ('2382','21866','scope','performance'), ('2383','19931','scope','notice'), ('2384','19932','scope','notice'), ('2385','21867','scope','notice'), ('2386','21867','scope','security'), ('2387','19933','scope','notice'), ('2388','21868','scope','notice'), ('2389','19934','scope','capacity'), ('2390','19934','scope','performance'), ('2391','21869','scope','availability'), ('2392','19935','scope','performance'), ('2405','19942','scope','availability'), ('2406','19942','scope','performance'), ('2407','19943','scope','availability'), ('2408','19943','scope','performance'), ('2409','19944','scope','availability'), ('2410','19944','scope','performance'), ('2411','19945','scope','availability'), ('2412','19945','scope','performance'), ('2413','19946','scope','availability'), ('2414','19946','scope','performance'), ('2415','21870','scope','performance'), ('2416','21871','scope','performance'), ('2417','21872','scope','availability'), ('2418','21872','scope','performance'), ('2419','21873','scope','availability'), ('2420','19947','scope','availability'), ('2421','19947','scope','capacity'), ('2422','19948','scope','availability'), ('2423','19948','scope','capacity'), ('2424','21874','scope','availability'), ('2425','21875','scope','availability'), ('2426','21875','scope','performance'), ('2427','21876','scope','availability'), ('2428','21876','scope','performance'), ('2429','19959','scope','notice'), ('2430','19960','scope','notice'), ('2431','21877','scope','notice'), ('2432','21877','scope','security'), ('2433','19961','scope','notice'), ('2434','21878','scope','notice'), ('2435','19962','scope','capacity'), ('2436','19962','scope','performance'), ('2437','21879','scope','availability'), ('2438','19963','scope','performance'), ('2451','19970','scope','availability'), ('2452','19970','scope','performance'), ('2453','19971','scope','availability'), ('2454','19971','scope','performance'), ('2455','19972','scope','availability'), ('2456','19972','scope','performance'), ('2457','19973','scope','availability'), ('2458','19973','scope','performance'), ('2459','19974','scope','availability'), ('2460','19974','scope','performance'), ('2461','21880','scope','performance'), ('2462','21881','scope','performance'), ('2463','21882','scope','availability'), ('2464','21882','scope','performance'), ('2465','21883','scope','availability'), ('2466','19975','scope','availability'), ('2467','19975','scope','capacity'), ('2468','19976','scope','availability'), ('2469','19976','scope','capacity'), ('2470','21884','scope','availability'), ('2471','21885','scope','availability'), ('2472','21885','scope','performance'), ('2473','21886','scope','availability'), ('2474','21886','scope','performance'), ('2475','19987','scope','notice'), ('2476','19988','scope','notice'), ('2477','21887','scope','notice'), ('2478','21887','scope','security'), ('2479','19989','scope','notice'), ('2480','21888','scope','notice'), ('2481','19990','scope','capacity'), ('2482','19990','scope','performance'), ('2483','21889','scope','availability'), ('2484','19991','scope','performance'), ('2497','19998','scope','availability'), ('2498','19998','scope','performance'), ('2499','19999','scope','availability'), ('2500','19999','scope','performance'), ('2501','20000','scope','availability'), ('2502','20000','scope','performance'), ('2503','20001','scope','availability'), ('2504','20001','scope','performance'), ('2505','20002','scope','availability'), ('2506','20002','scope','performance'), ('2507','21890','scope','performance'), ('2508','21891','scope','performance'), ('2509','21892','scope','availability'), ('2510','21892','scope','performance'), ('2511','21893','scope','availability'), ('2512','20003','scope','availability'), ('2513','20003','scope','capacity'), ('2514','20004','scope','availability'), ('2515','20004','scope','capacity'), ('2516','21894','scope','availability'), ('2517','21895','scope','availability'), ('2518','21895','scope','performance'), ('2519','21896','scope','availability'), ('2520','21896','scope','performance'), ('2521','20015','scope','notice'), ('2522','20016','scope','notice'), ('2523','21897','scope','notice'), ('2524','21897','scope','security'), ('2525','20017','scope','notice'), ('2526','21898','scope','notice'), ('2527','20018','scope','capacity'), ('2528','20018','scope','performance'), ('2529','21899','scope','availability'), ('2530','20019','scope','performance'), ('2543','20026','scope','availability'), ('2544','20026','scope','performance'), ('2545','20027','scope','availability'), ('2546','20027','scope','performance'), ('2547','20028','scope','availability'), ('2548','20028','scope','performance'), ('2549','20029','scope','availability'), ('2550','20029','scope','performance'), ('2551','20030','scope','availability'), ('2552','20030','scope','performance'), ('2553','21900','scope','performance'), ('2554','21901','scope','performance'), ('2555','21902','scope','availability'), ('2556','21902','scope','performance'), ('2557','21903','scope','availability'), ('2558','20031','scope','availability'), ('2559','20031','scope','capacity'), ('2560','20032','scope','availability'), ('2561','20032','scope','capacity'), ('2562','21904','scope','availability'), ('2563','21905','scope','availability'), ('2564','21905','scope','performance'), ('2565','21906','scope','availability'), ('2566','21906','scope','performance'), ('2567','20043','scope','notice'), ('2568','20044','scope','notice'), ('2569','21907','scope','notice'), ('2570','21907','scope','security'), ('2571','20045','scope','notice'), ('2572','21908','scope','notice'), ('2573','20046','scope','capacity'), ('2574','20046','scope','performance'), ('2575','21909','scope','availability'), ('2576','20047','scope','performance'), ('2589','20054','scope','availability'), ('2590','20054','scope','performance'), ('2591','20055','scope','availability'), ('2592','20055','scope','performance'), ('2593','20056','scope','availability'), ('2594','20056','scope','performance'), ('2595','20057','scope','availability'), ('2596','20057','scope','performance'), ('2597','20058','scope','availability'), ('2598','20058','scope','performance'), ('2599','21910','scope','performance'), ('2600','21911','scope','performance'), ('2601','21912','scope','availability'), ('2602','21912','scope','performance'), ('2603','21913','scope','availability'), ('2604','20059','scope','availability'), ('2605','20059','scope','capacity'), ('2606','20060','scope','availability'), ('2607','20060','scope','capacity'), ('2608','21914','scope','availability'), ('2609','21915','scope','availability'), ('2610','21915','scope','performance'), ('2611','21916','scope','availability'), ('2612','21916','scope','performance'), ('2613','20071','scope','notice'), ('2614','20072','scope','notice'), ('2615','21917','scope','notice'), ('2616','21917','scope','security'), ('2617','20073','scope','notice'), ('2618','21918','scope','notice'), ('2619','20074','scope','capacity'), ('2620','20074','scope','performance'), ('2621','21919','scope','availability'), ('2622','20075','scope','performance'), ('2635','20082','scope','availability'), ('2636','20082','scope','performance'), ('2637','20083','scope','availability'), ('2638','20083','scope','performance'), ('2639','20084','scope','availability'), ('2640','20084','scope','performance'), ('2641','20085','scope','availability'), ('2642','20085','scope','performance'), ('2643','20086','scope','availability'), ('2644','20086','scope','performance'), ('2645','21920','scope','performance'), ('2646','21921','scope','performance'), ('2647','21922','scope','availability'), ('2648','21922','scope','performance'), ('2649','21923','scope','availability'), ('2650','20087','scope','availability'), ('2651','20087','scope','capacity'), ('2652','20088','scope','availability'), ('2653','20088','scope','capacity'), ('2654','21924','scope','availability'), ('2655','21925','scope','availability'), ('2656','21925','scope','performance'), ('2657','21926','scope','availability'), ('2658','21926','scope','performance'), ('2659','20099','scope','notice'), ('2660','20100','scope','notice'), ('2661','21927','scope','notice'), ('2662','21927','scope','security'), ('2663','20101','scope','notice'), ('2664','21928','scope','notice'), ('2665','20102','scope','capacity'), ('2666','20102','scope','performance'), ('2667','21929','scope','availability'), ('2668','20103','scope','performance'), ('2681','20110','scope','availability'), ('2682','20110','scope','performance'), ('2683','20111','scope','availability'), ('2684','20111','scope','performance'), ('2685','20112','scope','availability'), ('2686','20112','scope','performance'), ('2687','20113','scope','availability'), ('2688','20113','scope','performance'), ('2689','20114','scope','availability'), ('2690','20114','scope','performance'), ('2691','21930','scope','performance'), ('2692','21931','scope','performance'), ('2693','21932','scope','availability'), ('2694','21932','scope','performance'), ('2695','21933','scope','availability'), ('2696','20115','scope','availability'), ('2697','20115','scope','capacity'), ('2698','20116','scope','availability'), ('2699','20116','scope','capacity'), ('2700','21934','scope','availability'), ('2701','21935','scope','availability'), ('2702','21935','scope','performance'), ('2703','21936','scope','availability'), ('2704','21936','scope','performance'), ('2705','20127','scope','notice'), ('2706','20128','scope','notice'), ('2707','21937','scope','notice'), ('2708','21937','scope','security'), ('2709','20129','scope','notice'), ('2710','21938','scope','notice'), ('2711','20130','scope','capacity'), ('2712','20130','scope','performance'), ('2713','21939','scope','availability'), ('2714','20131','scope','performance'), ('2727','20138','scope','availability'), ('2728','20138','scope','performance'), ('2729','20139','scope','availability'), ('2730','20139','scope','performance'), ('2731','20140','scope','availability'), ('2732','20140','scope','performance'), ('2733','20141','scope','availability'), ('2734','20141','scope','performance'), ('2735','20142','scope','availability'), ('2736','20142','scope','performance'), ('2737','21940','scope','performance'), ('2738','21941','scope','performance'), ('2739','21942','scope','availability'), ('2740','21942','scope','performance'), ('2741','21943','scope','availability'), ('2742','20143','scope','availability'), ('2743','20143','scope','capacity'), ('2744','20144','scope','availability'), ('2745','20144','scope','capacity'), ('2746','21944','scope','availability'), ('2747','21945','scope','availability'), ('2748','21945','scope','performance'), ('2749','21946','scope','availability'), ('2750','21946','scope','performance'), ('2751','20155','scope','notice'), ('2752','20156','scope','notice'), ('2753','21947','scope','notice'), ('2754','21947','scope','security'), ('2755','20157','scope','notice'), ('2756','21948','scope','notice'), ('2757','20158','scope','capacity'), ('2758','20158','scope','performance'), ('2759','21949','scope','availability'), ('2760','20159','scope','performance'), ('2773','20166','scope','availability'), ('2774','20166','scope','performance'), ('2775','20167','scope','availability'), ('2776','20167','scope','performance'), ('2777','20168','scope','availability'), ('2778','20168','scope','performance'), ('2779','20169','scope','availability'), ('2780','20169','scope','performance'), ('2781','20170','scope','availability'), ('2782','20170','scope','performance'), ('2783','21950','scope','performance'), ('2784','21951','scope','performance'), ('2785','21952','scope','availability'), ('2786','21952','scope','performance'), ('2787','21953','scope','availability'), ('2788','20171','scope','availability'), ('2789','20171','scope','capacity'), ('2790','20172','scope','availability'), ('2791','20172','scope','capacity'), ('2792','21954','scope','availability'), ('2793','21955','scope','availability'), ('2794','21955','scope','performance'), ('2795','21956','scope','availability'), ('2796','21956','scope','performance'), ('2797','20183','scope','notice'), ('2798','20184','scope','notice'), ('2799','21957','scope','notice'), ('2800','21957','scope','security'), ('2801','20185','scope','notice'), ('2802','21958','scope','notice'), ('2803','20186','scope','capacity'), ('2804','20186','scope','performance'), ('2805','21959','scope','availability'), ('2806','20187','scope','performance'), ('2819','20194','scope','availability'), ('2820','20194','scope','performance'), ('2821','20195','scope','availability'), ('2822','20195','scope','performance'), ('2823','20196','scope','availability'), ('2824','20196','scope','performance'), ('2825','20197','scope','availability'), ('2826','20197','scope','performance'), ('2827','20198','scope','availability'), ('2828','20198','scope','performance'), ('2829','21960','scope','performance'), ('2830','21961','scope','performance'), ('2831','21962','scope','availability'), ('2832','21962','scope','performance'), ('2833','21963','scope','availability'), ('2834','20199','scope','availability'), ('2835','20199','scope','capacity'), ('2836','20200','scope','availability'), ('2837','20200','scope','capacity'), ('2838','21964','scope','availability'), ('2839','21965','scope','availability'), ('2840','21965','scope','performance'), ('2841','21966','scope','availability'), ('2842','21966','scope','performance'), ('2843','20211','scope','notice'), ('2844','20212','scope','notice'), ('2845','21967','scope','notice'), ('2846','21967','scope','security'), ('2847','20213','scope','notice'), ('2848','21968','scope','notice'), ('2849','20214','scope','capacity'), ('2850','20214','scope','performance'), ('2851','21969','scope','availability'), ('2852','20215','scope','performance'), ('2865','20222','scope','availability'), ('2866','20222','scope','performance'), ('2867','20223','scope','availability'), ('2868','20223','scope','performance'), ('2869','20224','scope','availability'), ('2870','20224','scope','performance'), ('2871','20225','scope','availability'), ('2872','20225','scope','performance'), ('2873','20226','scope','availability'), ('2874','20226','scope','performance'), ('2875','21970','scope','performance'), ('2876','21971','scope','performance'), ('2877','21972','scope','availability'), ('2878','21972','scope','performance'), ('2879','21973','scope','availability'), ('2880','20227','scope','availability'), ('2881','20227','scope','capacity'), ('2882','20228','scope','availability'), ('2883','20228','scope','capacity'), ('2884','21974','scope','availability'), ('2885','21975','scope','availability'), ('2886','21975','scope','performance'), ('2887','21976','scope','availability'), ('2888','21976','scope','performance'), ('2889','20239','scope','notice'), ('2890','20240','scope','notice'), ('2891','21977','scope','notice'), ('2892','21977','scope','security'), ('2893','20241','scope','notice'), ('2894','21978','scope','notice'), ('2895','20242','scope','capacity'), ('2896','20242','scope','performance'), ('2897','21979','scope','availability'), ('2898','20243','scope','performance'), ('2911','20250','scope','availability'), ('2912','20250','scope','performance'), ('2913','20251','scope','availability'), ('2914','20251','scope','performance'), ('2915','20252','scope','availability'), ('2916','20252','scope','performance'), ('2917','20253','scope','availability'), ('2918','20253','scope','performance'), ('2919','20254','scope','availability'), ('2920','20254','scope','performance'), ('2921','21980','scope','performance'), ('2922','21981','scope','performance'), ('2923','21982','scope','availability'), ('2924','21982','scope','performance'), ('2925','21983','scope','availability'), ('2926','20255','scope','availability'), ('2927','20255','scope','capacity'), ('2928','20256','scope','availability'), ('2929','20256','scope','capacity'), ('2930','21984','scope','availability'), ('2931','21985','scope','availability'), ('2932','21985','scope','performance'), ('2933','21986','scope','availability'), ('2934','21986','scope','performance'), ('2935','20267','scope','notice'), ('2936','20268','scope','notice'), ('2937','21987','scope','notice'), ('2938','21987','scope','security'), ('2939','20269','scope','notice'), ('2940','21988','scope','notice'), ('2941','20270','scope','capacity'), ('2942','20270','scope','performance'), ('2943','21989','scope','availability'), ('2944','20271','scope','performance'), ('2957','20278','scope','availability'), ('2958','20278','scope','performance'), ('2959','20279','scope','availability'), ('2960','20279','scope','performance'), ('2961','20280','scope','availability'), ('2962','20280','scope','performance'), ('2963','20281','scope','availability'), ('2964','20281','scope','performance'), ('2965','20282','scope','availability'), ('2966','20282','scope','performance'), ('2967','21990','scope','performance'), ('2968','21991','scope','performance'), ('2969','21992','scope','availability'), ('2970','21992','scope','performance'), ('2971','21993','scope','availability'), ('2972','20283','scope','availability'), ('2973','20283','scope','capacity'), ('2974','20284','scope','availability'), ('2975','20284','scope','capacity'), ('2976','21994','scope','availability'), ('2977','21995','scope','availability'), ('2978','21995','scope','performance'), ('2979','21996','scope','availability'), ('2980','21996','scope','performance'), ('2981','20295','scope','notice'), ('2982','20296','scope','notice'), ('2983','21997','scope','notice'), ('2984','21997','scope','security'), ('2985','20297','scope','notice'), ('2986','21998','scope','notice'), ('2987','20298','scope','capacity'), ('2988','20298','scope','performance'), ('2989','21999','scope','availability'), ('2990','20299','scope','performance'), ('3003','20306','scope','availability'), ('3004','20306','scope','performance'), ('3005','20307','scope','availability'), ('3006','20307','scope','performance'), ('3007','20308','scope','availability'), ('3008','20308','scope','performance'), ('3009','20309','scope','availability'), ('3010','20309','scope','performance'), ('3011','20310','scope','availability'), ('3012','20310','scope','performance'), ('3013','22000','scope','performance'), ('3014','22001','scope','performance'), ('3015','22002','scope','availability'), ('3016','22002','scope','performance'), ('3017','22003','scope','availability'), ('3018','20311','scope','availability'), ('3019','20311','scope','capacity'), ('3020','20312','scope','availability'), ('3021','20312','scope','capacity'), ('3022','22004','scope','availability'), ('3023','22005','scope','availability'), ('3024','22005','scope','performance'), ('3025','22006','scope','availability'), ('3026','22006','scope','performance'), ('3027','20323','scope','notice'), ('3028','20324','scope','notice'), ('3029','22007','scope','notice'), ('3030','22007','scope','security'), ('3031','20325','scope','notice'), ('3032','22008','scope','notice'), ('3033','20326','scope','capacity'), ('3034','20326','scope','performance'), ('3035','22009','scope','availability'), ('3036','20327','scope','performance'), ('3049','20334','scope','availability'), ('3050','20334','scope','performance'), ('3051','20335','scope','availability'), ('3052','20335','scope','performance'), ('3053','20336','scope','availability'), ('3054','20336','scope','performance'), ('3055','20337','scope','availability'), ('3056','20337','scope','performance'), ('3057','20338','scope','availability'), ('3058','20338','scope','performance'), ('3059','22010','scope','performance'), ('3060','22011','scope','performance'), ('3061','22012','scope','availability'), ('3062','22012','scope','performance'), ('3063','22013','scope','availability'), ('3064','20339','scope','availability'), ('3065','20339','scope','capacity'), ('3066','20340','scope','availability'), ('3067','20340','scope','capacity'), ('3068','22014','scope','availability'), ('3069','22015','scope','availability'), ('3070','22015','scope','performance'), ('3071','22016','scope','availability'), ('3072','22016','scope','performance'), ('3073','20351','scope','notice'), ('3074','20352','scope','notice'), ('3075','22017','scope','notice'), ('3076','22017','scope','security'), ('3077','20353','scope','notice'), ('3078','22018','scope','notice'), ('3079','20354','scope','capacity'), ('3080','20354','scope','performance'), ('3081','22019','scope','availability'), ('3082','20355','scope','performance'), ('3095','20362','scope','availability'), ('3096','20362','scope','performance'), ('3097','20363','scope','availability'), ('3098','20363','scope','performance'), ('3099','20364','scope','availability'), ('3100','20364','scope','performance'), ('3101','20365','scope','availability'), ('3102','20365','scope','performance'), ('3103','20366','scope','availability'), ('3104','20366','scope','performance'), ('3105','22020','scope','performance'), ('3106','22021','scope','performance'), ('3107','22022','scope','availability'), ('3108','22022','scope','performance'), ('3109','22023','scope','availability'), ('3110','20367','scope','availability'), ('3111','20367','scope','capacity'), ('3112','20368','scope','availability'), ('3113','20368','scope','capacity'), ('3114','22024','scope','availability'), ('3115','22025','scope','availability'), ('3116','22025','scope','performance'), ('3117','22026','scope','availability'), ('3118','22026','scope','performance'), ('3119','20379','scope','notice'), ('3120','20380','scope','notice'), ('3121','22027','scope','notice'), ('3122','22027','scope','security'), ('3123','20381','scope','notice'), ('3124','22028','scope','notice'), ('3125','20382','scope','capacity'), ('3126','20382','scope','performance'), ('3127','22029','scope','availability'), ('3128','20383','scope','performance'), ('3141','20390','scope','availability'), ('3142','20390','scope','performance'), ('3143','20391','scope','availability'), ('3144','20391','scope','performance'), ('3145','20392','scope','availability'), ('3146','20392','scope','performance'), ('3147','20393','scope','availability'), ('3148','20393','scope','performance'), ('3149','20394','scope','availability'), ('3150','20394','scope','performance'), ('3151','22030','scope','performance'), ('3152','22031','scope','performance'), ('3153','22032','scope','availability'), ('3154','22032','scope','performance'), ('3155','22033','scope','availability'), ('3156','20395','scope','availability'), ('3157','20395','scope','capacity'), ('3158','20396','scope','availability'), ('3159','20396','scope','capacity'), ('3160','22034','scope','availability'), ('3161','22035','scope','availability'), ('3162','22035','scope','performance'), ('3163','22036','scope','availability'), ('3164','22036','scope','performance'), ('3165','20407','scope','notice'), ('3166','20408','scope','notice'), ('3167','22037','scope','notice'), ('3168','22037','scope','security'), ('3169','20409','scope','notice'), ('3170','22038','scope','notice'), ('3171','20410','scope','capacity'), ('3172','20410','scope','performance'), ('3173','22039','scope','availability'), ('3174','20411','scope','performance'), ('3187','20418','scope','availability'), ('3188','20418','scope','performance'), ('3189','20419','scope','availability'), ('3190','20419','scope','performance'), ('3191','20420','scope','availability'), ('3192','20420','scope','performance'), ('3193','20421','scope','availability'), ('3194','20421','scope','performance'), ('3195','20422','scope','availability'), ('3196','20422','scope','performance'), ('3197','22040','scope','performance'), ('3198','22041','scope','performance'), ('3199','22042','scope','availability'), ('3200','22042','scope','performance'), ('3201','22043','scope','availability'), ('3202','20423','scope','availability'), ('3203','20423','scope','capacity'), ('3204','20424','scope','availability'), ('3205','20424','scope','capacity'), ('3206','22044','scope','availability'), ('3207','22045','scope','availability'), ('3208','22045','scope','performance'), ('3209','22046','scope','availability'), ('3210','22046','scope','performance'), ('3211','20435','scope','notice'), ('3212','20436','scope','notice'), ('3213','22047','scope','notice'), ('3214','22047','scope','security'), ('3215','20437','scope','notice'), ('3216','22048','scope','notice'), ('3217','20438','scope','capacity'), ('3218','20438','scope','performance'), ('3219','22049','scope','availability'), ('3220','20439','scope','performance'), ('3233','20446','scope','availability'), ('3234','20446','scope','performance'), ('3235','20447','scope','availability'), ('3236','20447','scope','performance'), ('3237','20448','scope','availability'), ('3238','20448','scope','performance'), ('3239','20449','scope','availability'), ('3240','20449','scope','performance'), ('3241','20450','scope','availability'), ('3242','20450','scope','performance'), ('3243','22050','scope','performance'), ('3244','22051','scope','performance'), ('3245','22052','scope','availability'), ('3246','22052','scope','performance'), ('3247','22053','scope','availability'), ('3248','20451','scope','availability'), ('3249','20451','scope','capacity'), ('3250','20452','scope','availability'), ('3251','20452','scope','capacity'), ('3252','22054','scope','availability'), ('3253','22055','scope','availability'), ('3254','22055','scope','performance'), ('3255','22056','scope','availability'), ('3256','22056','scope','performance'), ('3257','20463','scope','notice'), ('3258','20464','scope','notice'), ('3259','22057','scope','notice'), ('3260','22057','scope','security'), ('3261','20465','scope','notice'), ('3262','22058','scope','notice'), ('3263','20466','scope','capacity'), ('3264','20466','scope','performance'), ('3265','22059','scope','availability'), ('3266','20467','scope','performance'), ('3279','20474','scope','availability'), ('3280','20474','scope','performance'), ('3281','20475','scope','availability'), ('3282','20475','scope','performance'), ('3283','20476','scope','availability'), ('3284','20476','scope','performance'), ('3285','20477','scope','availability'), ('3286','20477','scope','performance'), ('3287','20478','scope','availability'), ('3288','20478','scope','performance'), ('3289','22060','scope','performance'), ('3290','22061','scope','performance'), ('3291','22062','scope','availability'), ('3292','22062','scope','performance'), ('3293','22063','scope','availability'), ('3294','20479','scope','availability'), ('3295','20479','scope','capacity'), ('3296','20480','scope','availability'), ('3297','20480','scope','capacity'), ('3298','22064','scope','availability'), ('3299','22065','scope','availability'), ('3300','22065','scope','performance'), ('3301','22066','scope','availability'), ('3302','22066','scope','performance'), ('3303','20491','scope','notice'), ('3304','20492','scope','notice'), ('3305','22067','scope','notice'), ('3306','22067','scope','security'), ('3307','20493','scope','notice'), ('3308','22068','scope','notice'), ('3309','20494','scope','capacity'), ('3310','20494','scope','performance'), ('3311','22069','scope','availability'), ('3312','20495','scope','performance'), ('3325','20502','scope','availability'), ('3326','20502','scope','performance'), ('3327','20503','scope','availability'), ('3328','20503','scope','performance'), ('3329','20504','scope','availability'), ('3330','20504','scope','performance'), ('3331','20505','scope','availability'), ('3332','20505','scope','performance'), ('3333','20506','scope','availability'), ('3334','20506','scope','performance'), ('3335','22070','scope','performance'), ('3336','22071','scope','performance'), ('3337','22072','scope','availability'), ('3338','22072','scope','performance'), ('3339','22073','scope','availability'), ('3340','20507','scope','availability'), ('3341','20507','scope','capacity'), ('3342','20508','scope','availability'), ('3343','20508','scope','capacity'), ('3344','22074','scope','availability'), ('3345','22075','scope','availability'), ('3346','22075','scope','performance'), ('3347','22076','scope','availability'), ('3348','22076','scope','performance'), ('3349','20519','scope','notice'), ('3350','20520','scope','notice'), ('3351','22077','scope','notice'), ('3352','22077','scope','security'), ('3353','20521','scope','notice'), ('3354','22078','scope','notice'), ('3355','20522','scope','capacity'), ('3356','20522','scope','performance'), ('3357','22079','scope','availability'), ('3358','20523','scope','performance'), ('3371','20530','scope','availability'), ('3372','20530','scope','performance'), ('3373','20531','scope','availability'), ('3374','20531','scope','performance'), ('3375','20532','scope','availability'), ('3376','20532','scope','performance'), ('3377','20533','scope','availability'), ('3378','20533','scope','performance'), ('3379','20534','scope','availability'), ('3380','20534','scope','performance'), ('3381','22080','scope','performance'), ('3382','22081','scope','performance'), ('3383','22082','scope','availability'), ('3384','22082','scope','performance'), ('3385','22083','scope','availability'), ('3386','20535','scope','availability'), ('3387','20535','scope','capacity'), ('3388','20536','scope','availability'), ('3389','20536','scope','capacity'), ('3390','22084','scope','availability'), ('3391','22085','scope','availability'), ('3392','22085','scope','performance'), ('3393','22086','scope','availability'), ('3394','22086','scope','performance'), ('3395','20547','scope','notice'), ('3396','20548','scope','notice'), ('3397','22087','scope','notice'), ('3398','22087','scope','security'), ('3399','20549','scope','notice'), ('3400','22088','scope','notice'), ('3401','20550','scope','capacity'), ('3402','20550','scope','performance'), ('3403','22089','scope','availability'), ('3404','20551','scope','performance'), ('3417','20558','scope','availability'), ('3418','20558','scope','performance'), ('3419','20559','scope','availability'), ('3420','20559','scope','performance'), ('3421','20560','scope','availability'), ('3422','20560','scope','performance'), ('3423','20561','scope','availability'), ('3424','20561','scope','performance'), ('3425','20562','scope','availability'), ('3426','20562','scope','performance'), ('3427','22090','scope','performance'), ('3428','22091','scope','performance'), ('3429','22092','scope','availability'), ('3430','22092','scope','performance'), ('3431','22093','scope','availability'), ('3432','20563','scope','availability'), ('3433','20563','scope','capacity'), ('3434','20564','scope','availability'), ('3435','20564','scope','capacity'), ('3436','22094','scope','availability'), ('3437','22095','scope','availability'), ('3438','22095','scope','performance'), ('3439','22096','scope','availability'), ('3440','22096','scope','performance'), ('3441','20575','scope','notice'), ('3442','20576','scope','notice'), ('3443','22097','scope','notice'), ('3444','22097','scope','security'), ('3445','20577','scope','notice'), ('3446','22098','scope','notice'), ('3447','20578','scope','capacity'), ('3448','20578','scope','performance'), ('3449','22099','scope','availability'), ('3450','20579','scope','performance'), ('3463','20586','scope','availability'), ('3464','20586','scope','performance'), ('3465','20587','scope','availability'), ('3466','20587','scope','performance'), ('3467','20588','scope','availability'), ('3468','20588','scope','performance'), ('3469','20589','scope','availability'), ('3470','20589','scope','performance'), ('3471','20590','scope','availability'), ('3472','20590','scope','performance'), ('3473','22100','scope','performance'), ('3474','22101','scope','performance'), ('3475','22102','scope','availability'), ('3476','22102','scope','performance'), ('3477','22103','scope','availability'), ('3478','20591','scope','availability'), ('3479','20591','scope','capacity'), ('3480','20592','scope','availability'), ('3481','20592','scope','capacity'), ('3482','22104','scope','availability'), ('3483','22105','scope','availability'), ('3484','22105','scope','performance'), ('3485','22106','scope','availability'), ('3486','22106','scope','performance'), ('3487','20603','scope','notice'), ('3488','20604','scope','notice'), ('3489','22107','scope','notice'), ('3490','22107','scope','security'), ('3491','20605','scope','notice'), ('3492','22108','scope','notice'), ('3493','20606','scope','capacity'), ('3494','20606','scope','performance'), ('3495','22109','scope','availability'), ('3496','20607','scope','performance'), ('3509','20614','scope','availability'), ('3510','20614','scope','performance'), ('3511','20615','scope','availability'), ('3512','20615','scope','performance'), ('3513','20616','scope','availability'), ('3514','20616','scope','performance'), ('3515','20617','scope','availability'), ('3516','20617','scope','performance'), ('3517','20618','scope','availability'), ('3518','20618','scope','performance'), ('3519','22110','scope','performance'), ('3520','22111','scope','performance'), ('3521','22112','scope','availability'), ('3522','22112','scope','performance'), ('3523','22113','scope','availability'), ('3524','20619','scope','availability'), ('3525','20619','scope','capacity'), ('3526','20620','scope','availability'), ('3527','20620','scope','capacity'), ('3528','22114','scope','availability'), ('3529','22115','scope','availability'), ('3530','22115','scope','performance'), ('3531','22116','scope','availability'), ('3532','22116','scope','performance'), ('3533','20631','scope','notice'), ('3534','20632','scope','notice'), ('3535','22117','scope','notice'), ('3536','22117','scope','security'), ('3537','20633','scope','notice'), ('3538','22118','scope','notice'), ('3539','20634','scope','capacity'), ('3540','20634','scope','performance'), ('3541','22119','scope','availability'), ('3542','20635','scope','performance'), ('3555','20642','scope','availability'), ('3556','20642','scope','performance'), ('3557','20643','scope','availability'), ('3558','20643','scope','performance'), ('3559','20644','scope','availability'), ('3560','20644','scope','performance'), ('3561','20645','scope','availability'), ('3562','20645','scope','performance'), ('3563','20646','scope','availability'), ('3564','20646','scope','performance'), ('3565','22120','scope','performance'), ('3566','22121','scope','performance'), ('3567','22122','scope','availability'), ('3568','22122','scope','performance'), ('3569','22123','scope','availability'), ('3570','20647','scope','availability'), ('3571','20647','scope','capacity'), ('3572','20648','scope','availability'), ('3573','20648','scope','capacity'), ('3574','22124','scope','availability'), ('3575','22125','scope','availability'), ('3576','22125','scope','performance'), ('3577','22126','scope','availability'), ('3578','22126','scope','performance'), ('3579','20659','scope','notice'), ('3580','20660','scope','notice'), ('3581','22127','scope','notice'), ('3582','22127','scope','security'), ('3583','20661','scope','notice'), ('3584','22128','scope','notice'), ('3585','20662','scope','capacity'), ('3586','20662','scope','performance'), ('3587','22129','scope','availability'), ('3588','20663','scope','performance'), ('3601','20670','scope','availability'), ('3602','20670','scope','performance'), ('3603','20671','scope','availability'), ('3604','20671','scope','performance'), ('3605','20672','scope','availability'), ('3606','20672','scope','performance'), ('3607','20673','scope','availability'), ('3608','20673','scope','performance'), ('3609','20674','scope','availability'), ('3610','20674','scope','performance'), ('3611','22130','scope','performance'), ('3612','22131','scope','performance'), ('3613','22132','scope','availability'), ('3614','22132','scope','performance'), ('3615','22133','scope','availability'), ('3616','20675','scope','availability'), ('3617','20675','scope','capacity'), ('3618','20676','scope','availability'), ('3619','20676','scope','capacity'), ('3620','22134','scope','availability'), ('3621','22135','scope','availability'), ('3622','22135','scope','performance'), ('3623','22136','scope','availability'), ('3624','22136','scope','performance'), ('3625','20687','scope','notice'), ('3626','20688','scope','notice'), ('3627','22137','scope','notice'), ('3628','22137','scope','security'), ('3629','20689','scope','notice'), ('3630','22138','scope','notice'), ('3631','20690','scope','capacity'), ('3632','20690','scope','performance'), ('3633','22139','scope','availability'), ('3634','20691','scope','performance'), ('3647','20698','scope','availability'), ('3648','20698','scope','performance'), ('3649','20699','scope','availability'), ('3650','20699','scope','performance'), ('3651','20700','scope','availability'), ('3652','20700','scope','performance'), ('3653','20701','scope','availability'), ('3654','20701','scope','performance'), ('3655','20702','scope','availability'), ('3656','20702','scope','performance'), ('3657','22140','scope','performance'), ('3658','22141','scope','performance'), ('3659','22142','scope','availability'), ('3660','22142','scope','performance'), ('3661','22143','scope','availability'), ('3662','20703','scope','availability'), ('3663','20703','scope','capacity'), ('3664','20704','scope','availability'), ('3665','20704','scope','capacity'), ('3666','22144','scope','availability'), ('3667','22145','scope','availability'), ('3668','22145','scope','performance'), ('3669','22146','scope','availability'), ('3670','22146','scope','performance'), ('3671','20715','scope','notice'), ('3672','20716','scope','notice'), ('3673','22147','scope','notice'), ('3674','22147','scope','security'), ('3675','20717','scope','notice'), ('3676','22148','scope','notice'), ('3677','20718','scope','capacity'), ('3678','20718','scope','performance'), ('3679','22149','scope','availability'), ('3680','20719','scope','performance'), ('3693','20726','scope','availability'), ('3694','20726','scope','performance'), ('3695','20727','scope','availability'), ('3696','20727','scope','performance'), ('3697','20728','scope','availability'), ('3698','20728','scope','performance'), ('3699','20729','scope','availability'), ('3700','20729','scope','performance'), ('3701','20730','scope','availability'), ('3702','20730','scope','performance'), ('3703','22150','scope','performance'), ('3704','22151','scope','performance'), ('3705','22152','scope','availability'), ('3706','22152','scope','performance'), ('3707','22153','scope','availability'), ('3708','20731','scope','availability'), ('3709','20731','scope','capacity'), ('3710','20732','scope','availability'), ('3711','20732','scope','capacity'), ('3712','22154','scope','availability'), ('3713','22155','scope','availability'), ('3714','22155','scope','performance'), ('3715','22156','scope','availability'), ('3716','22156','scope','performance'), ('3717','20743','scope','notice'), ('3718','20744','scope','notice'), ('3719','22157','scope','notice'), ('3720','22157','scope','security'), ('3721','20745','scope','notice'), ('3722','22158','scope','notice'), ('3723','20746','scope','capacity'), ('3724','20746','scope','performance'), ('3725','22159','scope','availability'), ('3726','20747','scope','performance'), ('3739','20754','scope','availability'), ('3740','20754','scope','performance'), ('3741','20755','scope','availability'), ('3742','20755','scope','performance'), ('3743','20756','scope','availability'), ('3744','20756','scope','performance'), ('3745','20757','scope','availability'), ('3746','20757','scope','performance'), ('3747','20758','scope','availability'), ('3748','20758','scope','performance'), ('3749','22160','scope','performance'), ('3750','22161','scope','performance'), ('3751','22162','scope','availability'), ('3752','22162','scope','performance'), ('3753','22163','scope','availability'), ('3754','20759','scope','availability'), ('3755','20759','scope','capacity'), ('3756','20760','scope','availability'), ('3757','20760','scope','capacity'), ('3758','22164','scope','availability'), ('3759','22165','scope','availability'), ('3760','22165','scope','performance'), ('3761','22166','scope','availability'), ('3762','22166','scope','performance'), ('3763','20771','scope','notice'), ('3764','20772','scope','notice'), ('3765','22167','scope','notice'), ('3766','22167','scope','security'), ('3767','20773','scope','notice'), ('3768','22168','scope','notice'), ('3769','20774','scope','capacity'), ('3770','20774','scope','performance'), ('3771','22169','scope','availability'), ('3772','20775','scope','performance'), ('3785','20782','scope','availability'), ('3786','20782','scope','performance'), ('3787','20783','scope','availability'), ('3788','20783','scope','performance'), ('3789','20784','scope','availability'), ('3790','20784','scope','performance'), ('3791','20785','scope','availability'), ('3792','20785','scope','performance'), ('3793','20786','scope','availability'), ('3794','20786','scope','performance'), ('3795','22170','scope','performance'), ('3796','22171','scope','performance'), ('3797','22172','scope','availability'), ('3798','22172','scope','performance'), ('3799','22173','scope','availability'), ('3800','20787','scope','availability'), ('3801','20787','scope','capacity'), ('3802','20788','scope','availability'), ('3803','20788','scope','capacity'), ('3804','22174','scope','availability'), ('3805','22175','scope','availability'), ('3806','22175','scope','performance'), ('3807','22176','scope','availability'), ('3808','22176','scope','performance'), ('3809','20799','scope','notice'), ('3810','20800','scope','notice'), ('3811','22177','scope','notice'), ('3812','22177','scope','security'), ('3813','20801','scope','notice'), ('3814','22178','scope','notice'), ('3815','20802','scope','capacity'), ('3816','20802','scope','performance'), ('3817','22179','scope','availability'), ('3818','20803','scope','performance'), ('3831','20810','scope','availability'), ('3832','20810','scope','performance'), ('3833','20811','scope','availability'), ('3834','20811','scope','performance'), ('3835','20812','scope','availability'), ('3836','20812','scope','performance'), ('3837','20813','scope','availability'), ('3838','20813','scope','performance'), ('3839','20814','scope','availability'), ('3840','20814','scope','performance'), ('3841','22180','scope','performance'), ('3842','22181','scope','performance'), ('3843','22182','scope','availability'), ('3844','22182','scope','performance'), ('3845','22183','scope','availability'), ('3846','20815','scope','availability'), ('3847','20815','scope','capacity'), ('3848','20816','scope','availability'), ('3849','20816','scope','capacity'), ('3850','22184','scope','availability'), ('3851','22185','scope','availability'), ('3852','22185','scope','performance'), ('3853','22186','scope','availability'), ('3854','22186','scope','performance'), ('3855','20827','scope','notice'), ('3856','20828','scope','notice'), ('3857','22187','scope','notice'), ('3858','22187','scope','security'), ('3859','20829','scope','notice'), ('3860','22188','scope','notice'), ('3861','20830','scope','capacity'), ('3862','20830','scope','performance'), ('3863','22189','scope','availability'), ('3864','20831','scope','performance'), ('3877','20838','scope','availability'), ('3878','20838','scope','performance'), ('3879','20839','scope','availability'), ('3880','20839','scope','performance'), ('3881','20840','scope','availability'), ('3882','20840','scope','performance'), ('3883','20841','scope','availability'), ('3884','20841','scope','performance'), ('3885','20842','scope','availability'), ('3886','20842','scope','performance'), ('3887','22190','scope','performance'), ('3888','22191','scope','performance'), ('3889','22192','scope','availability'), ('3890','22192','scope','performance'), ('3891','22193','scope','availability'), ('3892','20843','scope','availability'), ('3893','20843','scope','capacity'), ('3894','20844','scope','availability'), ('3895','20844','scope','capacity'), ('3896','22194','scope','availability'), ('3897','22195','scope','availability'), ('3898','22195','scope','performance'), ('3899','22196','scope','availability'), ('3900','22196','scope','performance'), ('3901','20855','scope','notice'), ('3902','20856','scope','notice'), ('3903','22197','scope','notice'), ('3904','22197','scope','security'), ('3905','20857','scope','notice'), ('3906','22198','scope','notice'), ('3907','20858','scope','capacity'), ('3908','20858','scope','performance'), ('3909','22199','scope','availability'), ('3910','20859','scope','performance'), ('3923','20866','scope','availability'), ('3924','20866','scope','performance'), ('3925','20867','scope','availability'), ('3926','20867','scope','performance'), ('3927','20868','scope','availability'), ('3928','20868','scope','performance'), ('3929','20869','scope','availability'), ('3930','20869','scope','performance'), ('3931','20870','scope','availability'), ('3932','20870','scope','performance'), ('3933','22200','scope','performance'), ('3934','22201','scope','performance'), ('3935','22202','scope','availability'), ('3936','22202','scope','performance'), ('3937','22203','scope','availability'), ('3938','20871','scope','availability'), ('3939','20871','scope','capacity'), ('3940','20872','scope','availability'), ('3941','20872','scope','capacity'), ('3942','22204','scope','availability'), ('3943','22205','scope','availability'), ('3944','22205','scope','performance'), ('3945','22206','scope','availability'), ('3946','22206','scope','performance'), ('3947','20883','scope','notice'), ('3948','20884','scope','notice'), ('3949','22207','scope','notice'), ('3950','22207','scope','security'), ('3951','20885','scope','notice'), ('3952','22208','scope','notice'), ('3953','20886','scope','capacity'), ('3954','20886','scope','performance'), ('3955','22209','scope','availability'), ('3956','20887','scope','performance'), ('3969','20894','scope','availability'), ('3970','20894','scope','performance'), ('3971','20895','scope','availability'), ('3972','20895','scope','performance'), ('3973','20896','scope','availability'), ('3974','20896','scope','performance'), ('3975','20897','scope','availability'), ('3976','20897','scope','performance'), ('3977','20898','scope','availability'), ('3978','20898','scope','performance'), ('3979','22210','scope','performance'), ('3980','22211','scope','performance'), ('3981','22212','scope','availability'), ('3982','22212','scope','performance'), ('3983','22213','scope','availability'), ('3984','20899','scope','availability'), ('3985','20899','scope','capacity'), ('3986','20900','scope','availability'), ('3987','20900','scope','capacity'), ('3988','22214','scope','availability'), ('3989','22215','scope','availability'), ('3990','22215','scope','performance'), ('3991','22216','scope','availability'), ('3992','22216','scope','performance'), ('3993','20911','scope','notice'), ('3994','20912','scope','notice'), ('3995','22217','scope','notice'), ('3996','22217','scope','security'), ('3997','20913','scope','notice'), ('3998','22218','scope','notice'), ('3999','20914','scope','capacity'), ('4000','20914','scope','performance'), ('4001','22219','scope','availability'), ('4002','20915','scope','performance'), ('4015','20922','scope','availability'), ('4016','20922','scope','performance'), ('4017','20923','scope','availability'), ('4018','20923','scope','performance'), ('4019','20924','scope','availability'), ('4020','20924','scope','performance'), ('4021','20925','scope','availability'), ('4022','20925','scope','performance'), ('4023','20926','scope','availability'), ('4024','20926','scope','performance'), ('4025','22220','scope','performance'), ('4026','22221','scope','performance'), ('4027','22222','scope','availability'), ('4028','22222','scope','performance'), ('4029','22223','scope','availability'), ('4030','20927','scope','availability'), ('4031','20927','scope','capacity'), ('4032','20928','scope','availability'), ('4033','20928','scope','capacity'), ('4034','22224','scope','availability'), ('4035','22225','scope','availability'), ('4036','22225','scope','performance'), ('4037','22226','scope','availability'), ('4038','22226','scope','performance'), ('4039','20939','scope','notice'), ('4040','20940','scope','notice'), ('4041','22227','scope','notice'), ('4042','22227','scope','security'), ('4043','20941','scope','notice'), ('4044','22228','scope','notice'), ('4045','20942','scope','capacity'), ('4046','20942','scope','performance'), ('4047','22229','scope','availability'), ('4048','20943','scope','performance'), ('4061','20950','scope','availability'), ('4062','20950','scope','performance'), ('4063','20951','scope','availability'), ('4064','20951','scope','performance'), ('4065','20952','scope','availability'), ('4066','20952','scope','performance'), ('4067','20953','scope','availability'), ('4068','20953','scope','performance'), ('4069','20954','scope','availability'), ('4070','20954','scope','performance'), ('4071','22230','scope','performance'), ('4072','22231','scope','performance'), ('4073','22232','scope','availability'), ('4074','22232','scope','performance'), ('4075','22233','scope','availability'), ('4076','20955','scope','availability'), ('4077','20955','scope','capacity'), ('4078','20956','scope','availability'), ('4079','20956','scope','capacity'), ('4080','22234','scope','availability'), ('4081','22235','scope','availability'), ('4082','22235','scope','performance'), ('4083','22236','scope','availability'), ('4084','22236','scope','performance'), ('4085','20967','scope','notice'), ('4086','20968','scope','notice'), ('4087','22237','scope','notice'), ('4088','22237','scope','security'), ('4089','20969','scope','notice'), ('4090','22238','scope','notice'), ('4091','20970','scope','capacity'), ('4092','20970','scope','performance'), ('4093','22239','scope','availability'), ('4094','20971','scope','performance'), ('4107','20978','scope','availability'), ('4108','20978','scope','performance'), ('4109','20979','scope','availability'), ('4110','20979','scope','performance'), ('4111','20980','scope','availability'), ('4112','20980','scope','performance'), ('4113','20981','scope','availability'), ('4114','20981','scope','performance'), ('4115','20982','scope','availability'), ('4116','20982','scope','performance'), ('4117','22240','scope','performance'), ('4118','22241','scope','performance'), ('4119','22242','scope','availability'), ('4120','22242','scope','performance'), ('4121','22243','scope','availability'), ('4122','20983','scope','availability'), ('4123','20983','scope','capacity'), ('4124','20984','scope','availability'), ('4125','20984','scope','capacity'), ('4126','22244','scope','availability'), ('4127','22245','scope','availability'), ('4128','22245','scope','performance'), ('4129','22246','scope','availability'), ('4130','22246','scope','performance'), ('4131','20995','scope','notice'), ('4132','20996','scope','notice'), ('4133','22247','scope','notice'), ('4134','22247','scope','security'), ('4135','20997','scope','notice'), ('4136','22248','scope','notice'), ('4137','20998','scope','capacity'), ('4138','20998','scope','performance'), ('4139','22249','scope','availability'), ('4140','20999','scope','performance'), ('4153','21006','scope','availability'), ('4154','21006','scope','performance'), ('4155','21007','scope','availability'), ('4156','21007','scope','performance'), ('4157','21008','scope','availability'), ('4158','21008','scope','performance'), ('4159','21009','scope','availability'), ('4160','21009','scope','performance'), ('4161','21010','scope','availability'), ('4162','21010','scope','performance'), ('4163','22250','scope','performance'), ('4164','22251','scope','performance'), ('4165','22252','scope','availability'), ('4166','22252','scope','performance'), ('4167','22253','scope','availability'), ('4168','21011','scope','availability'), ('4169','21011','scope','capacity'), ('4170','21012','scope','availability'), ('4171','21012','scope','capacity'), ('4172','22254','scope','availability'), ('4173','22255','scope','availability'), ('4174','22255','scope','performance'), ('4175','22256','scope','availability'), ('4176','22256','scope','performance'), ('4177','21023','scope','notice'), ('4178','21024','scope','notice'), ('4179','22257','scope','notice'), ('4180','22257','scope','security'), ('4181','21025','scope','notice'), ('4182','22258','scope','notice'), ('4183','21026','scope','capacity'), ('4184','21026','scope','performance'), ('4185','22259','scope','availability'), ('4186','21027','scope','performance'), ('4199','21034','scope','availability'), ('4200','21034','scope','performance'), ('4201','21035','scope','availability'), ('4202','21035','scope','performance'), ('4203','21036','scope','availability'), ('4204','21036','scope','performance'), ('4205','21037','scope','availability'), ('4206','21037','scope','performance'), ('4207','21038','scope','availability'), ('4208','21038','scope','performance'), ('4209','22260','scope','performance'), ('4210','22261','scope','performance'), ('4211','22262','scope','availability'), ('4212','22262','scope','performance'), ('4213','22263','scope','availability'), ('4214','21039','scope','availability'), ('4215','21039','scope','capacity'), ('4216','21040','scope','availability'), ('4217','21040','scope','capacity'), ('4218','22264','scope','availability'), ('4219','22265','scope','availability'), ('4220','22265','scope','performance'), ('4221','22266','scope','availability'), ('4222','22266','scope','performance'), ('4223','21051','scope','notice'), ('4224','21052','scope','notice'), ('4225','22267','scope','notice'), ('4226','22267','scope','security'), ('4227','21053','scope','notice'), ('4228','22268','scope','notice'), ('4229','21054','scope','capacity'), ('4230','21054','scope','performance'), ('4231','22269','scope','availability'), ('4232','21055','scope','performance'), ('4245','21062','scope','availability'), ('4246','21062','scope','performance'), ('4247','21063','scope','availability'), ('4248','21063','scope','performance'), ('4249','21064','scope','availability'), ('4250','21064','scope','performance'), ('4251','21065','scope','availability'), ('4252','21065','scope','performance'), ('4253','21066','scope','availability'), ('4254','21066','scope','performance'), ('4255','22270','scope','performance'), ('4256','22271','scope','performance'), ('4257','22272','scope','availability'), ('4258','22272','scope','performance'), ('4259','22273','scope','availability'), ('4260','21067','scope','availability'), ('4261','21067','scope','capacity'), ('4262','21068','scope','availability'), ('4263','21068','scope','capacity'), ('4264','22274','scope','availability'), ('4265','22275','scope','availability'), ('4266','22275','scope','performance'), ('4267','22276','scope','availability'), ('4268','22276','scope','performance'), ('4269','21079','scope','notice'), ('4270','21080','scope','notice'), ('4271','22277','scope','notice'), ('4272','22277','scope','security'), ('4273','21081','scope','notice'), ('4274','22278','scope','notice'), ('4275','21082','scope','capacity'), ('4276','21082','scope','performance'), ('4277','22279','scope','availability'), ('4278','21083','scope','performance'), ('4291','21090','scope','availability'), ('4292','21090','scope','performance'), ('4293','21091','scope','availability'), ('4294','21091','scope','performance'), ('4295','21092','scope','availability'), ('4296','21092','scope','performance'), ('4297','21093','scope','availability'), ('4298','21093','scope','performance'), ('4299','21094','scope','availability'), ('4300','21094','scope','performance'), ('4301','22280','scope','performance'), ('4302','22281','scope','performance'), ('4303','22282','scope','availability'), ('4304','22282','scope','performance'), ('4305','22283','scope','availability'), ('4306','21095','scope','availability'), ('4307','21095','scope','capacity'), ('4308','21096','scope','availability'), ('4309','21096','scope','capacity'), ('4310','22284','scope','availability'), ('4311','22285','scope','availability'), ('4312','22285','scope','performance'), ('4313','22286','scope','availability'), ('4314','22286','scope','performance'), ('4315','21107','scope','notice'), ('4316','21108','scope','notice'), ('4317','22287','scope','notice'), ('4318','22287','scope','security'), ('4319','21109','scope','notice'), ('4320','22288','scope','notice'), ('4321','21110','scope','capacity'), ('4322','21110','scope','performance'), ('4323','22289','scope','availability'), ('4324','21111','scope','performance'), ('4337','21118','scope','availability'), ('4338','21118','scope','performance'), ('4339','21119','scope','availability'), ('4340','21119','scope','performance'), ('4341','21120','scope','availability'), ('4342','21120','scope','performance'), ('4343','21121','scope','availability'), ('4344','21121','scope','performance'), ('4345','21122','scope','availability'), ('4346','21122','scope','performance'), ('4347','22290','scope','performance'), ('4348','22291','scope','performance'), ('4349','22292','scope','availability'), ('4350','22292','scope','performance'), ('4351','22293','scope','availability'), ('4352','21123','scope','availability'), ('4353','21123','scope','capacity'), ('4354','21124','scope','availability'), ('4355','21124','scope','capacity'), ('4356','22294','scope','availability'), ('4357','22295','scope','availability'), ('4358','22295','scope','performance'), ('4359','22296','scope','availability'), ('4360','22296','scope','performance'), ('4361','21135','scope','notice'), ('4362','21136','scope','notice'), ('4363','22297','scope','notice'), ('4364','22297','scope','security'), ('4365','21137','scope','notice'), ('4366','22298','scope','notice'), ('4367','21138','scope','capacity'), ('4368','21138','scope','performance'), ('4369','22299','scope','availability'), ('4370','21139','scope','performance'), ('4383','21146','scope','availability'), ('4384','21146','scope','performance'), ('4385','21147','scope','availability'), ('4386','21147','scope','performance'), ('4387','21148','scope','availability'), ('4388','21148','scope','performance'), ('4389','21149','scope','availability'), ('4390','21149','scope','performance'), ('4391','21150','scope','availability'), ('4392','21150','scope','performance'), ('4393','22300','scope','performance'), ('4394','22301','scope','performance'), ('4395','22302','scope','availability'), ('4396','22302','scope','performance'), ('4397','22303','scope','availability'), ('4398','21151','scope','availability'), ('4399','21151','scope','capacity'), ('4400','21152','scope','availability'), ('4401','21152','scope','capacity'), ('4402','22304','scope','availability'), ('4403','22305','scope','availability'), ('4404','22305','scope','performance'), ('4405','22306','scope','availability'), ('4406','22306','scope','performance'), ('4407','21163','scope','notice'), ('4408','21164','scope','notice'), ('4409','22307','scope','notice'), ('4410','22307','scope','security'), ('4411','21165','scope','notice'), ('4412','22308','scope','notice'), ('4413','21166','scope','capacity'), ('4414','21166','scope','performance'), ('4415','22309','scope','availability'), ('4416','21167','scope','performance'), ('4429','21174','scope','availability'), ('4430','21174','scope','performance'), ('4431','21175','scope','availability'), ('4432','21175','scope','performance'), ('4433','21176','scope','availability'), ('4434','21176','scope','performance'), ('4435','21177','scope','availability'), ('4436','21177','scope','performance'), ('4437','21178','scope','availability'), ('4438','21178','scope','performance'), ('4439','22310','scope','performance'), ('4440','22311','scope','performance'), ('4441','22312','scope','availability'), ('4442','22312','scope','performance'), ('4443','22313','scope','availability'), ('4444','21179','scope','availability'), ('4445','21179','scope','capacity'), ('4446','21180','scope','availability'), ('4447','21180','scope','capacity'), ('4448','22314','scope','availability'), ('4449','22315','scope','availability'), ('4450','22315','scope','performance'), ('4451','22316','scope','availability'), ('4452','22316','scope','performance'), ('4453','14662','scope','notice'), ('4454','14661','scope','notice'), ('4455','22317','scope','notice'), ('4456','22317','scope','security'), ('4457','16543','scope','notice'), ('4458','22318','scope','notice'), ('4459','18125','scope','capacity'), ('4460','18125','scope','performance'), ('4461','22319','scope','availability'), ('4462','16545','scope','performance'), ('4475','17406','scope','availability'), ('4476','17406','scope','performance'), ('4477','17407','scope','availability'), ('4478','17407','scope','performance'), ('4479','17408','scope','availability'), ('4480','17408','scope','performance'), ('4481','17409','scope','availability'), ('4482','17409','scope','performance'), ('4483','17088','scope','availability'), ('4484','17088','scope','performance'), ('4485','22320','scope','performance'), ('4486','22321','scope','performance'), ('4487','22322','scope','availability'), ('4488','22322','scope','performance'), ('4489','22323','scope','availability'), ('4490','16546','scope','availability'), ('4491','16546','scope','capacity'), ('4492','16547','scope','availability'), ('4493','16547','scope','capacity'), ('4494','17575','scope','notice'), ('4495','17576','scope','notice'), ('4496','17577','scope','notice'), ('4497','17578','scope','notice'), ('4498','17579','scope','notice'), ('4499','17580','scope','notice'), ('4500','17581','scope','notice'), ('4501','17582','scope','notice'), ('4502','17583','scope','notice'), ('4503','17584','scope','notice'), ('4504','17585','scope','notice'), ('4505','17586','scope','notice'), ('4506','17587','scope','notice'), ('4507','17588','scope','notice'), ('4508','17589','scope','notice'), ('4509','17590','scope','notice'), ('4510','17591','scope','notice'), ('4511','17592','scope','notice'), ('4512','17593','scope','notice'), ('4513','17594','scope','notice'), ('4514','17595','scope','notice'), ('4515','17596','scope','notice'), ('4516','17597','scope','notice'), ('4517','17598','scope','notice'), ('4518','17599','scope','notice'), ('4519','17600','scope','notice'), ('4520','17601','scope','notice'), ('4521','17602','scope','notice'), ('4522','17603','scope','notice'), ('4523','17604','scope','notice'), ('4524','17605','scope','notice'), ('4525','17606','scope','notice'), ('4526','17607','scope','notice'), ('4527','17608','scope','notice'), ('4528','17609','scope','notice'), ('4529','17610','scope','notice'), ('4530','17611','scope','notice'), ('4531','17612','scope','notice'), ('4532','17613','scope','notice'), ('4533','17614','scope','notice'), ('4534','17615','scope','notice'), ('4535','17616','scope','notice'), ('4536','17617','scope','notice'), ('4537','17618','scope','notice'), ('4538','17619','scope','notice'), ('4539','17620','scope','notice'), ('4540','17621','scope','notice'), ('4541','17622','scope','notice'), ('4542','17623','scope','notice'), ('4543','17624','scope','notice'), ('4544','17625','scope','availability'), ('4545','17626','scope','notice'), ('4546','17627','scope','notice'), ('4547','17628','scope','notice'), ('4548','17629','scope','notice'), ('4549','17630','scope','capacity'), ('4550','17631','scope','capacity'), ('4551','17632','scope','capacity'), ('4552','17633','scope','capacity'), ('4553','17634','scope','notice'), ('4554','17635','scope','notice'), ('4555','17636','scope','notice'), ('4556','17637','scope','notice'), ('4557','17638','scope','notice'), ('4558','17639','scope','notice'), ('4559','17640','scope','notice'), ('4560','17641','scope','notice'), ('4561','17642','scope','notice'), ('4562','17643','scope','notice'), ('4563','17644','scope','notice'), ('4564','17645','scope','notice'), ('4565','17646','scope','notice'), ('4566','17647','scope','notice'), ('4567','17648','scope','notice'), ('4568','17649','scope','notice'), ('4569','17650','scope','notice'), ('4570','17651','scope','notice'), ('4571','17652','scope','notice'), ('4572','17653','scope','notice'), ('4573','17654','scope','notice'), ('4574','17655','scope','notice'), ('4575','17656','scope','notice'), ('4576','17657','scope','notice'), ('4577','17658','scope','notice'), ('4578','17659','scope','notice'), ('4579','17660','scope','notice'), ('4580','17661','scope','notice'), ('4581','17662','scope','notice'), ('4582','17663','scope','notice'), ('4583','17664','scope','notice'), ('4584','17665','scope','notice'), ('4585','17666','scope','notice'), ('4586','17667','scope','notice'), ('4587','17668','scope','notice'), ('4588','17669','scope','notice'), ('4589','17670','scope','notice'), ('4590','17671','scope','notice'), ('4591','17672','scope','notice'), ('4592','17673','scope','notice'), ('4593','17674','scope','notice'), ('4594','17675','scope','notice'), ('4595','17676','scope','notice'), ('4596','17677','scope','notice'), ('4597','17678','scope','notice'), ('4598','17679','scope','notice'), ('4599','17680','scope','notice'), ('4600','17681','scope','notice'), ('4601','17682','scope','notice'), ('4602','17683','scope','availability'), ('4603','17684','scope','notice'), ('4604','17685','scope','notice'), ('4605','17686','scope','notice'), ('4606','17687','scope','notice'), ('4607','17688','scope','capacity'), ('4608','17689','scope','capacity'), ('4609','17690','scope','capacity'), ('4610','17691','scope','capacity'), ('4611','17692','scope','notice'), ('4612','17693','scope','notice'), ('4613','17694','scope','notice'), ('4614','17695','scope','notice'), ('4615','17696','scope','notice'), ('4616','17697','scope','notice'), ('4617','17698','scope','notice'), ('4618','17699','scope','notice'), ('4619','17700','scope','notice'), ('4620','17701','scope','notice'), ('4621','17702','scope','notice'), ('4622','17703','scope','notice'), ('4623','17704','scope','notice'), ('4624','17705','scope','notice'), ('4625','17706','scope','notice'), ('4626','17707','scope','notice'), ('4627','17708','scope','notice'), ('4628','17709','scope','notice'), ('4629','17710','scope','notice'), ('4630','17711','scope','notice'), ('4631','17712','scope','notice'), ('4632','17713','scope','notice'), ('4633','17714','scope','notice'), ('4634','17715','scope','notice'), ('4635','17716','scope','notice'), ('4636','17717','scope','notice'), ('4637','17718','scope','notice'), ('4638','17719','scope','notice'), ('4639','17720','scope','notice'), ('4640','17721','scope','notice'), ('4641','17722','scope','notice'), ('4642','17723','scope','notice'), ('4643','17724','scope','notice'), ('4644','17725','scope','notice'), ('4645','17726','scope','notice'), ('4646','17727','scope','availability'), ('4647','17728','scope','notice'), ('4648','17729','scope','notice'), ('4649','17730','scope','notice'), ('4650','17731','scope','notice'), ('4651','17732','scope','capacity'), ('4652','17733','scope','capacity'), ('4653','17734','scope','capacity'), ('4654','17735','scope','capacity'), ('4655','17736','scope','notice'), ('4656','17737','scope','notice'), ('4657','17738','scope','notice'), ('4658','17739','scope','notice'), ('4659','17740','scope','notice'), ('4660','17741','scope','notice'), ('4661','17742','scope','notice'), ('4662','17743','scope','notice'), ('4663','17744','scope','notice'), ('4664','17745','scope','notice'), ('4665','17746','scope','notice'), ('4666','17747','scope','notice'), ('4667','17748','scope','notice'), ('4668','17749','scope','notice'), ('4669','17750','scope','notice'), ('4670','17751','scope','availability'), ('4671','17752','scope','capacity'), ('4672','17753','scope','capacity'), ('4673','17754','scope','capacity'), ('4674','17755','scope','capacity'), ('4675','17756','scope','notice'), ('4676','17757','scope','notice'), ('4677','17758','scope','notice'), ('4678','17759','scope','notice'), ('4679','17760','scope','notice'), ('4680','17761','scope','notice'), ('4681','17762','scope','notice'), ('4682','17763','scope','notice'), ('4683','17764','scope','notice'), ('4684','17765','scope','notice'), ('4685','17766','scope','notice'), ('4686','17767','scope','notice'), ('4687','17768','scope','notice'), ('4688','17769','scope','notice'), ('4689','17770','scope','notice'), ('4690','17771','scope','notice'), ('4691','17772','scope','notice'), ('4692','17773','scope','notice'), ('4693','17774','scope','notice'), ('4694','17775','scope','notice'), ('4695','17776','scope','notice'), ('4696','17777','scope','notice'), ('4697','17778','scope','notice'), ('4698','17779','scope','notice'), ('4699','17780','scope','notice'), ('4700','17781','scope','notice'), ('4701','17782','scope','notice'), ('4702','17783','scope','notice'), ('4703','17784','scope','notice'), ('4704','17785','scope','notice'), ('4705','17786','scope','notice'), ('4706','17787','scope','notice'), ('4707','17788','scope','notice'), ('4708','17789','scope','notice'), ('4709','17790','scope','notice'), ('4710','17791','scope','notice'), ('4711','17792','scope','notice'), ('4712','17793','scope','notice'), ('4713','17794','scope','notice'), ('4714','17795','scope','notice'), ('4715','17796','scope','notice'), ('4716','17797','scope','notice'), ('4717','17798','scope','notice'), ('4718','17799','scope','notice'), ('4719','17800','scope','notice'), ('4720','17801','scope','notice'), ('4721','17802','scope','notice'), ('4722','17803','scope','notice'), ('4723','17804','scope','notice'), ('4724','17805','scope','notice'), ('4725','17806','scope','notice'), ('4726','17807','scope','notice'), ('4727','17808','scope','notice'), ('4728','17809','scope','notice'), ('4729','17810','scope','notice'), ('4730','17811','scope','notice'), ('4731','17812','scope','notice'), ('4732','17813','scope','notice'), ('4733','17814','scope','notice'), ('4734','17815','scope','notice'), ('4735','17816','scope','availability'), ('4736','17817','scope','notice'), ('4737','17818','scope','notice'), ('4738','17819','scope','notice'), ('4739','17820','scope','notice'), ('4740','17821','scope','capacity'), ('4741','17822','scope','capacity'), ('4742','17823','scope','capacity'), ('4743','17824','scope','capacity'), ('4744','17825','scope','notice'), ('4745','17826','scope','notice'), ('4746','17827','scope','notice'), ('4747','17828','scope','notice'), ('4748','17829','scope','notice'), ('4749','17830','scope','notice'), ('4750','17831','scope','notice'), ('4751','17832','scope','notice'), ('4752','17833','scope','notice'), ('4753','17834','scope','notice'), ('4754','17835','scope','notice'), ('4755','17836','scope','notice'), ('4756','17837','scope','notice'), ('4757','17838','scope','notice'), ('4758','17839','scope','notice'), ('4759','17840','scope','notice'), ('4760','17841','scope','notice'), ('4761','17842','scope','notice'), ('4762','17843','scope','notice'), ('4763','17844','scope','notice'), ('4764','17845','scope','notice'), ('4765','17846','scope','notice'), ('4766','17847','scope','notice'), ('4767','17848','scope','notice'), ('4768','17849','scope','notice'), ('4769','17850','scope','notice'), ('4770','17851','scope','notice'), ('4771','17852','scope','notice'), ('4772','17853','scope','notice'), ('4773','17854','scope','notice'), ('4774','17855','scope','notice'), ('4775','17856','scope','notice'), ('4776','17857','scope','availability'), ('4777','17858','scope','notice'), ('4778','17859','scope','notice'), ('4779','17860','scope','notice'), ('4780','17861','scope','notice'), ('4781','17862','scope','capacity'), ('4782','17863','scope','capacity'), ('4783','17864','scope','capacity'), ('4784','17865','scope','capacity'), ('4785','17866','scope','notice'), ('4786','17867','scope','notice'), ('4787','17868','scope','notice'), ('4788','17869','scope','notice'), ('4789','17870','scope','notice'), ('4790','17871','scope','notice'), ('4791','17872','scope','notice'), ('4792','17873','scope','notice'), ('4793','17874','scope','notice'), ('4794','17875','scope','notice'), ('4795','17876','scope','notice'), ('4796','17877','scope','notice'), ('4797','17878','scope','notice'), ('4798','17879','scope','notice'), ('4799','17880','scope','notice'), ('4800','17881','scope','notice'), ('4801','17882','scope','notice'), ('4802','17883','scope','notice'), ('4803','17884','scope','notice'), ('4804','17885','scope','notice'), ('4805','17886','scope','notice'), ('4806','17887','scope','notice'), ('4807','17888','scope','notice'), ('4808','17889','scope','notice'), ('4809','17890','scope','notice'), ('4810','17891','scope','notice'), ('4811','17892','scope','notice'), ('4812','17893','scope','notice'), ('4813','17894','scope','notice'), ('4814','17895','scope','notice'), ('4815','17896','scope','availability'), ('4816','17897','scope','notice'), ('4817','17898','scope','notice'), ('4818','17899','scope','notice'), ('4819','17900','scope','notice'), ('4820','17901','scope','capacity'), ('4821','17902','scope','capacity'), ('4822','17903','scope','capacity'), ('4823','17904','scope','capacity'), ('4824','17905','scope','notice'), ('4825','17906','scope','notice'), ('4826','17907','scope','notice'), ('4827','17908','scope','notice'), ('4828','22324','scope','availability'), ('4829','22325','scope','availability'), ('4830','22325','scope','performance'), ('4831','22326','scope','availability'), ('4832','22326','scope','performance'), ('4833','16548','scope','performance'), ('4834','14680','scope','notice'), ('4835','22327','scope','notice'), ('4836','22327','scope','security'), ('4837','16549','scope','notice'), ('4838','22328','scope','notice'), ('4839','18126','scope','capacity'), ('4840','18126','scope','performance'), ('4841','22329','scope','availability'), ('4842','15398','scope','availability'), ('4843','15398','scope','performance'), ('4844','22330','scope','performance'), ('4845','22331','scope','performance'), ('4846','22332','scope','availability'), ('4847','22332','scope','performance'), ('4848','22333','scope','availability'), ('4849','15399','scope','availability'), ('4850','15399','scope','performance'), ('4851','17909','scope','availability'), ('4852','17909','scope','performance'), ('4853','17910','scope','availability'), ('4854','17910','scope','performance'), ('4855','14683','scope','availability'), ('4856','14683','scope','performance'), ('4857','22334','scope','availability'), ('4858','22335','scope','availability'), ('4859','22335','scope','performance'), ('4860','22336','scope','availability'), ('4861','22336','scope','performance'), ('4862','16552','scope','availability'), ('4863','16552','scope','performance'), ('4864','16551','scope','availability'), ('4865','16551','scope','performance'), ('4866','16553','scope','availability'), ('4867','16553','scope','performance'), ('4868','16554','scope','performance'), ('4869','14699','scope','notice'), ('4870','14698','scope','notice'), ('4871','22337','scope','notice'), ('4872','22337','scope','security'), ('4873','16555','scope','notice'), ('4874','22338','scope','notice'), ('4875','18127','scope','capacity'), ('4876','18127','scope','performance'), ('4877','22339','scope','availability'), ('4878','16557','scope','availability'), ('4879','16557','scope','performance'), ('4880','22340','scope','performance'), ('4881','22341','scope','performance'), ('4882','22342','scope','availability'), ('4883','22342','scope','performance'), ('4884','22343','scope','availability'), ('4885','22344','scope','performance'), ('4886','16558','scope','availability'), ('4887','16558','scope','performance'), ('4888','22345','scope','availability'), ('4889','22346','scope','availability'), ('4890','22346','scope','performance'), ('4891','22347','scope','availability'), ('4892','22347','scope','performance'), ('4893','14710','scope','notice'), ('4894','14709','scope','notice'), ('4895','22348','scope','notice'), ('4896','22348','scope','security'), ('4897','22349','scope','notice'), ('4898','22350','scope','availability'), ('4899','16559','scope','performance'), ('4900','18128','scope','capacity'), ('4901','18128','scope','performance'), ('4902','22351','scope','performance'), ('4903','22352','scope','performance'), ('4904','22353','scope','performance'), ('4905','22354','scope','availability'), ('4906','22355','scope','availability'), ('4907','22356','scope','availability'), ('4908','22356','scope','performance'), ('4909','22357','scope','availability'), ('4910','22357','scope','performance'), ('4912','14724','scope','notice'), ('4913','22358','scope','notice'), ('4914','22358','scope','security'), ('4915','22359','scope','notice'), ('4916','18129','scope','capacity'), ('4917','18129','scope','performance'), ('4918','22360','scope','availability'), ('4919','22361','scope','performance'), ('4920','22362','scope','performance'), ('4921','22363','scope','performance'), ('4922','22364','scope','availability'), ('4923','21181','scope','notice'), ('4924','21182','scope','availability'), ('4925','21183','scope','notice'), ('4926','21184','scope','notice'), ('4927','21185','scope','notice'), ('4928','21186','scope','availability'), ('4929','21187','scope','availability'), ('4930','21188','scope','notice'), ('4931','21189','scope','notice'), ('4932','21190','scope','notice'), ('4933','21191','scope','availability'), ('4934','19029','scope','availability'), ('4935','19030','scope','notice'), ('4936','19031','scope','notice'), ('4937','19032','scope','notice'), ('4938','19033','scope','notice'), ('4939','19034','scope','notice'), ('4940','19035','scope','capacity'), ('4941','19036','scope','capacity'), ('4942','19037','scope','capacity'), ('4943','19038','scope','capacity'), ('4944','19039','scope','notice'), ('4945','19040','scope','notice'), ('4946','19041','scope','notice'), ('4947','19042','scope','notice'), ('4948','19043','scope','availability'), ('4949','19044','scope','performance'), ('4950','19045','scope','notice'), ('4951','19046','scope','notice'), ('4952','19047','scope','notice'), ('4953','19048','scope','notice'), ('4954','19049','scope','performance'), ('4955','19050','scope','notice'), ('4956','19051','scope','notice'), ('4957','19052','scope','notice'), ('4958','19053','scope','notice'), ('4959','19054','scope','notice'), ('4960','19055','scope','notice'), ('4961','19056','scope','availability'), ('4962','19057','scope','performance'), ('4963','19058','scope','notice'), ('4964','19059','scope','notice'), ('4965','19060','scope','notice'), ('4966','19061','scope','notice'), ('4967','19062','scope','notice'), ('4968','19063','scope','notice'), ('4969','19064','scope','notice'), ('4970','19065','scope','notice'), ('4971','19066','scope','availability'), ('4972','19067','scope','notice'), ('4973','19068','scope','notice'), ('4974','19069','scope','performance'), ('4975','19070','scope','performance'), ('4976','19071','scope','notice'), ('4977','19072','scope','performance'), ('4978','19073','scope','capacity'), ('4979','19074','scope','capacity'), ('4980','19075','scope','capacity'), ('4981','19076','scope','capacity'), ('4982','19077','scope','notice'), ('4983','19078','scope','notice'), ('4984','19079','scope','notice'), ('4985','19080','scope','notice'), ('4986','19081','scope','notice'), ('4987','19082','scope','notice'), ('4988','19083','scope','notice'), ('4989','19084','scope','notice'), ('4990','19085','scope','notice'), ('4991','19086','scope','notice'), ('4992','19087','scope','notice'), ('4993','19088','scope','availability'), ('4994','19089','scope','notice'), ('4995','19090','scope','notice'), ('4996','19091','scope','performance'), ('4997','19092','scope','performance'), ('4998','19093','scope','notice'), ('4999','19094','scope','performance'), ('5000','19095','scope','capacity'), ('5001','19096','scope','capacity'), ('5002','19097','scope','capacity'), ('5003','19098','scope','capacity'), ('5004','19099','scope','notice'), ('5005','19100','scope','notice'), ('5006','19101','scope','notice'), ('5007','19102','scope','notice'), ('5008','19103','scope','notice'), ('5009','19104','scope','notice'), ('5010','19105','scope','notice'), ('5011','19106','scope','notice'), ('5012','19107','scope','notice'), ('5013','19108','scope','notice'), ('5014','19109','scope','notice'), ('5015','19110','scope','availability'), ('5016','19111','scope','notice'), ('5017','19112','scope','notice'), ('5018','19113','scope','notice'), ('5019','19114','scope','notice'), ('5020','19115','scope','notice'), ('5021','19116','scope','notice'), ('5022','19117','scope','capacity'), ('5023','19118','scope','capacity'), ('5024','19119','scope','capacity'), ('5025','19120','scope','capacity'), ('5026','19121','scope','notice'), ('5027','19122','scope','notice'), ('5028','19123','scope','notice'), ('5029','19124','scope','notice'), ('5030','19125','scope','availability'), ('5031','19126','scope','performance'), ('5032','19127','scope','notice'), ('5033','19128','scope','notice'), ('5034','19129','scope','notice'), ('5035','19130','scope','notice'), ('5036','19131','scope','notice'), ('5037','19132','scope','notice'), ('5038','19133','scope','notice'), ('5039','19134','scope','notice'), ('5040','19135','scope','availability'), ('5041','19136','scope','performance'), ('5042','19137','scope','notice'), ('5043','19138','scope','notice'), ('5044','19139','scope','notice'), ('5045','19140','scope','notice'), ('5046','19141','scope','performance'), ('5047','19142','scope','notice'), ('5048','19143','scope','notice'), ('5049','19144','scope','notice'), ('5050','19145','scope','notice'), ('5051','19146','scope','notice'), ('5052','19147','scope','notice'), ('5053','19148','scope','availability'), ('5054','19149','scope','performance'), ('5055','19150','scope','notice'), ('5056','19151','scope','notice'), ('5057','19152','scope','notice'), ('5058','19153','scope','notice'), ('5059','19154','scope','performance'), ('5060','19155','scope','notice'), ('5061','19156','scope','notice'), ('5062','19157','scope','notice'), ('5063','19158','scope','notice'), ('5064','19159','scope','notice'), ('5065','19160','scope','notice'), ('5066','19161','scope','availability'), ('5067','19162','scope','performance'), ('5068','19163','scope','notice'), ('5069','19164','scope','notice'), ('5070','19165','scope','notice'), ('5071','19166','scope','notice'), ('5072','19167','scope','notice'), ('5073','19168','scope','notice'), ('5074','19169','scope','notice'), ('5075','19170','scope','notice'), ('5076','19171','scope','notice'), ('5077','19172','scope','notice'), ('5078','19173','scope','notice'), ('5079','19174','scope','availability'), ('5080','19175','scope','performance'), ('5081','19176','scope','notice'), ('5082','19177','scope','notice'), ('5083','19178','scope','notice'), ('5084','19179','scope','notice'), ('5085','19180','scope','notice'), ('5086','19181','scope','notice'), ('5087','19182','scope','notice'), ('5088','19183','scope','notice'), ('5089','19184','scope','notice'), ('5090','19185','scope','notice'), ('5091','19186','scope','notice'), ('5092','19187','scope','availability'), ('5093','19188','scope','performance'), ('5094','19189','scope','notice'), ('5095','19190','scope','capacity'), ('5096','19190','scope','performance'), ('5097','19191','scope','notice'), ('5098','19192','scope','notice'), ('5099','19193','scope','notice'), ('5100','19194','scope','notice'), ('5101','19195','scope','notice'), ('5102','19196','scope','notice'), ('5103','19197','scope','notice'), ('5104','19198','scope','notice'), ('5105','19199','scope','notice'), ('5106','19200','scope','notice'), ('5107','19201','scope','availability'), ('5108','19202','scope','performance'), ('5109','19203','scope','notice'), ('5110','19204','scope','capacity'), ('5111','19204','scope','performance'), ('5112','19205','scope','notice'), ('5113','19206','scope','notice'), ('5114','19207','scope','notice'), ('5115','19208','scope','notice'), ('5116','19209','scope','notice'), ('5117','19210','scope','notice'), ('5118','19211','scope','notice'), ('5119','19212','scope','notice'), ('5120','19213','scope','notice'), ('5121','19214','scope','notice'), ('5122','19215','scope','availability'), ('5123','19216','scope','performance'), ('5124','19217','scope','notice'), ('5125','19218','scope','notice'), ('5126','19219','scope','notice'), ('5127','19220','scope','notice'), ('5128','19221','scope','notice'), ('5129','19222','scope','performance'), ('5130','19223','scope','notice'), ('5131','19224','scope','notice'), ('5132','19225','scope','notice'), ('5133','19226','scope','notice'), ('5134','19227','scope','notice'), ('5135','19228','scope','notice'), ('5136','13364','scope','performance'), ('5137','13365','scope','performance'), ('5138','13366','scope','performance'), ('5139','13368','scope','notice'), ('5140','13367','scope','performance'), ('5141','13370','scope','notice'), ('5142','13371','scope','notice'), ('5143','13372','scope','security'), ('5144','17113','scope','capacity'), ('5145','17113','scope','performance'), ('5146','22365','scope','availability'), ('5147','17115','scope','capacity'), ('5148','17115','scope','performance'), ('5149','17114','scope','capacity'), ('5151','17116','scope','notice'), ('5152','17116','scope','performance'), ('5153','17117','scope','notice'), ('5154','17117','scope','performance'), ('5155','13348','scope','notice'), ('5156','13348','scope','performance'), ('5157','13349','scope','notice'), ('5158','13349','scope','performance'), ('5159','13350','scope','availability'), ('5160','13350','scope','performance'), ('5161','13352','scope','notice'), ('5162','17119','scope','capacity'), ('5163','17119','scope','performance'), ('5164','13354','scope','notice'), ('5165','13355','scope','notice'), ('5166','13356','scope','security'), ('5167','17118','scope','capacity'), ('5168','17118','scope','performance'), ('5169','22366','scope','availability'), ('5170','17121','scope','capacity'), ('5171','17121','scope','performance'), ('5172','17120','scope','capacity'), ('5174','13382','scope','capacity'), ('5175','13382','scope','performance'), ('5176','13384','scope','notice'), ('5177','13386','scope','notice'), ('5178','13388','scope','security'), ('5179','17122','scope','capacity'), ('5180','17122','scope','performance'), ('5181','22367','scope','availability'), ('5182','17124','scope','capacity'), ('5183','17124','scope','performance'), ('5184','17123','scope','capacity'), ('5186','22368','scope','performance'), ('5187','22369','scope','performance'), ('5188','22370','scope','performance'), ('5189','22371','scope','notice'), ('5190','22371','scope','security'), ('5191','22372','scope','availability'), ('5192','22372','scope','performance'), ('5193','22373','scope','notice'), ('5194','22374','scope','notice'), ('5195','22375','scope','security'), ('5196','22376','scope','capacity'), ('5197','22376','scope','performance'), ('5198','22377','scope','availability'), ('5211','22378','scope','performance'), ('5213','22379','scope','capacity'), ('5215','22380','scope','capacity'), ('5216','22380','scope','performance'), ('5219','22381','scope','capacity'), ('5220','22381','scope','performance'), ('5223','22382','scope','performance'), ('5224','22383','scope','performance'), ('5225','22384','scope','performance'), ('5226','22385','scope','notice'), ('5227','22385','scope','security'), ('5228','22386','scope','availability'), ('5229','22386','scope','performance'), ('5230','22387','scope','notice'), ('5231','22388','scope','notice'), ('5232','22389','scope','security'), ('5233','22390','scope','capacity'), ('5234','22390','scope','performance'), ('5235','22391','scope','availability'), ('5236','22392','scope','performance'), ('5237','22393','scope','capacity'), ('5238','22394','scope','capacity'), ('5239','22394','scope','performance'), ('5240','22395','scope','capacity'), ('5241','22395','scope','performance'), ('5243','22396','scope','performance'), ('5244','22397','scope','availability'), ('5245','22397','scope','performance'), ('5246','22398','scope','availability'), ('5247','22399','scope','performance'), ('5248','22400','scope','availability'), ('5249','22400','scope','capacity'), ('5250','22401','scope','availability'), ('5251','22401','scope','capacity'), ('5252','22402','scope','capacity'), ('5253','22402','scope','performance'), ('5254','22403','scope','capacity'), ('5255','22403','scope','performance'), ('5268','22404','scope','performance'), ('5269','22405','scope','availability'), ('5270','22405','scope','performance'), ('5271','22406','scope','availability'), ('5272','22407','scope','performance'), ('5273','22408','scope','availability'), ('5274','22408','scope','capacity'), ('5275','22409','scope','availability'), ('5276','22409','scope','capacity'), ('5277','22410','scope','capacity'), ('5278','22410','scope','performance'), ('5279','22411','scope','capacity'), ('5280','22411','scope','performance'), ('5281','22412','scope','availability'), ('5282','22413','scope','performance'), ('5283','22414','scope','performance'), ('5284','22415','scope','performance'), ('5285','22416','scope','notice'), ('5286','22416','scope','security'), ('5289','22418','scope','notice'), ('5290','22419','scope','notice'), ('5291','22420','scope','security'), ('5292','22421','scope','capacity'), ('5293','22421','scope','performance'), ('5306','22422','scope','performance'), ('5308','22423','scope','capacity'), ('5310','22424','scope','capacity'), ('5311','22424','scope','performance'), ('5314','22425','scope','capacity'), ('5315','22425','scope','performance'), ('5319','22426','scope','performance'), ('5320','22427','scope','availability'), ('5321','22427','scope','performance'), ('5322','22428','scope','availability'), ('5323','22429','scope','performance'), ('5324','22430','scope','availability'), ('5325','22430','scope','capacity'), ('5326','22431','scope','availability'), ('5327','22431','scope','capacity'), ('5328','22432','scope','capacity'), ('5329','22432','scope','performance'), ('5330','22433','scope','capacity'), ('5331','22433','scope','performance'), ('5344','16141','scope','performance'), ('5345','16138','scope','availability'), ('5346','16146','scope','performance'), ('5347','16139','scope','availability'), ('5348','16139','scope','performance'), ('5349','16584','scope','notice'), ('5350','16584','scope','security'), ('5351','16143','scope','notice'), ('5352','16144','scope','notice'), ('5353','18152','scope','capacity'), ('5354','18152','scope','performance'), ('5355','18150','scope','capacity'), ('5356','18462','scope','capacity'), ('5357','18462','scope','performance'), ('5358','16573','scope','capacity'), ('5359','16573','scope','performance'), ('5360','16142','scope','performance'), ('5361','16152','scope','performance'), ('5362','16153','scope','performance'), ('5363','18463','scope','performance'), ('5364','18464','scope','availability'), ('5365','18464','scope','performance'), ('5366','16883','scope','availability'), ('5367','16710','scope','performance'), ('5368','16155','scope','availability'), ('5369','16155','scope','capacity'), ('5370','16156','scope','availability'), ('5371','16156','scope','capacity'), ('5372','16157','scope','capacity'), ('5373','16157','scope','performance'), ('5374','16158','scope','capacity'), ('5375','16158','scope','performance'), ('5378','22434','scope','availability'), ('5379','22435','scope','availability'), ('5380','22435','scope','performance'), ('5381','22436','scope','availability'), ('5382','22436','scope','performance'), ('5383','22437','scope','notice'), ('5384','22437','scope','security'), ('5385','22438','scope','notice'), ('5386','22439','scope','capacity'), ('5387','22439','scope','performance'), ('5388','22440','scope','availability'), ('5390','22441','scope','capacity'), ('5393','22442','scope','capacity'), ('5394','22442','scope','performance'), ('5397','22443','scope','capacity'), ('5398','22443','scope','performance'), ('5408','22444','scope','performance'), ('5409','22445','scope','performance'), ('5410','22446','scope','performance'), ('5411','22447','scope','availability'), ('5412','22447','scope','performance'), ('5413','22448','scope','availability'), ('5414','22449','scope','performance'), ('5415','22450','scope','availability'), ('5416','22450','scope','capacity'), ('5417','22451','scope','availability'), ('5418','22451','scope','capacity'), ('5419','22452','scope','capacity'), ('5420','22452','scope','performance'), ('5421','22453','scope','capacity'), ('5422','22453','scope','performance'), ('5423','17125','scope','notice'), ('5424','17125','scope','performance'), ('5425','17126','scope','notice'), ('5426','17126','scope','performance'), ('5427','13414','scope','availability'), ('5428','13414','scope','performance'), ('5429','13416','scope','notice'), ('5430','13418','scope','notice'), ('5431','13419','scope','notice'), ('5432','13420','scope','security'), ('5433','17127','scope','capacity'), ('5434','17127','scope','performance'), ('5435','22454','scope','availability'), ('5436','17129','scope','capacity'), ('5437','17129','scope','performance'), ('5438','17128','scope','capacity'), ('5440','17130','scope','notice'), ('5441','17130','scope','performance'), ('5442','17131','scope','notice'), ('5443','17131','scope','performance'), ('5444','13332','scope','performance'), ('5445','13333','scope','performance'), ('5446','13334','scope','performance'), ('5447','13336','scope','notice'), ('5448','17133','scope','capacity'), ('5449','17133','scope','performance'), ('5450','13338','scope','notice'), ('5451','13339','scope','notice'), ('5452','13340','scope','security'), ('5453','17132','scope','capacity'), ('5454','17132','scope','performance'), ('5455','22455','scope','availability'), ('5456','17135','scope','capacity'), ('5457','17135','scope','performance'), ('5458','17134','scope','capacity'), ('5460','17136','scope','notice'), ('5461','17136','scope','performance'), ('5462','13396','scope','notice'), ('5463','13396','scope','performance'), ('5464','13397','scope','notice'), ('5465','13397','scope','performance'), ('5466','13398','scope','performance'), ('5467','13399','scope','performance'), ('5468','13400','scope','notice'), ('5469','17138','scope','capacity'), ('5470','17138','scope','performance'), ('5471','13402','scope','notice'), ('5472','13403','scope','notice'), ('5473','13404','scope','security'), ('5474','17137','scope','capacity'), ('5475','17137','scope','performance'), ('5476','22456','scope','availability'), ('5477','17140','scope','capacity'), ('5478','17140','scope','performance'), ('5479','17139','scope','capacity'), ('5481','22457','scope','capacity'), ('5482','22458','scope','capacity'), ('5483','22459','scope','performance'), ('5484','22460','scope','performance'), ('5485','22461','scope','performance'), ('5486','22462','scope','notice'), ('5487','22463','scope','notice'), ('5488','22464','scope','notice'), ('5489','22465','scope','capacity'), ('5490','22465','scope','performance'), ('5491','22466','scope','availability'), ('5502','22467','scope','performance'), ('5504','22468','scope','performance'), ('5506','22469','scope','capacity'), ('5507','22470','scope','performance'), ('5508','22471','scope','availability'), ('5509','22472','scope','availability'), ('5510','22473','scope','performance'), ('5511','22474','scope','performance'), ('5512','22475','scope','performance'), ('5513','22476','scope','notice'), ('5514','22477','scope','capacity'), ('5515','22478','scope','capacity'), ('5526','22479','scope','availability'), ('5527','22480','scope','capacity'), ('5528','22481','scope','capacity'), ('5529','22482','scope','performance'), ('5530','22483','scope','performance'), ('5531','22484','scope','performance'), ('5532','22485','scope','notice'), ('5534','22487','scope','notice'), ('5535','22488','scope','capacity'), ('5536','22488','scope','performance'), ('5547','22489','scope','performance'), ('5549','22490','scope','performance'), ('5551','22491','scope','capacity'), ('5552','22492','scope','performance'), ('5553','22493','scope','availability'), ('5554','22494','scope','availability'), ('5555','22495','scope','performance'), ('5556','22496','scope','performance'), ('5557','22497','scope','performance'), ('5558','22498','scope','notice'), ('5559','22499','scope','capacity'), ('5560','22500','scope','capacity'), ('5571','22501','scope','availability'), ('5572','22502','scope','availability'), ('5573','22502','scope','performance'), ('5574','22503','scope','availability'), ('5575','22503','scope','performance'), ('5576','22504','scope','performance'), ('5577','22505','scope','notice'), ('5578','22505','scope','security'), ('5579','22506','scope','notice'), ('5580','22507','scope','availability'), ('5581','22508','scope','performance'), ('5582','22509','scope','performance'), ('5583','22510','scope','performance'), ('5584','22511','scope','availability'), ('5585','22512','scope','availability'), ('5586','22512','scope','capacity'), ('5587','22513','scope','availability'), ('5588','22513','scope','capacity'), ('5589','22514','scope','capacity'), ('5590','22514','scope','performance'), ('5591','18576','scope','capacity'), ('5592','18577','scope','notice'), ('5593','18578','scope','notice'), ('5594','18579','scope','capacity'), ('5595','18580','scope','notice'), ('5596','18581','scope','notice'), ('5597','18582','scope','notice'), ('5598','18583','scope','notice'), ('5599','18584','scope','notice'), ('5600','18585','scope','notice'), ('5601','18586','scope','notice'), ('5602','18587','scope','notice'), ('5603','18588','scope','notice'), ('5604','18589','scope','notice'), ('5605','18590','scope','notice'), ('5606','18591','scope','notice'), ('5607','18592','scope','notice'), ('5608','18593','scope','notice'), ('5609','18594','scope','notice'), ('5610','18595','scope','notice'), ('5611','18595','scope','security'), ('5612','18596','scope','notice'), ('5613','18597','scope','availability'), ('5614','18598','scope','notice'), ('5615','18599','scope','notice'), ('5616','18600','scope','notice'), ('5617','18601','scope','notice'), ('5618','18602','scope','notice'), ('5619','18603','scope','notice'), ('5620','18604','scope','notice'), ('5621','18605','scope','notice'), ('5622','18606','scope','notice'), ('5623','18607','scope','notice'), ('5624','18608','scope','notice'), ('5625','18609','scope','capacity'), ('5626','18610','scope','notice'), ('5627','18611','scope','notice'), ('5628','18612','scope','capacity'), ('5629','18613','scope','notice'), ('5630','18614','scope','notice'), ('5631','18615','scope','notice'), ('5632','18616','scope','notice'), ('5633','18617','scope','notice'), ('5634','18618','scope','notice'), ('5635','18619','scope','notice'), ('5636','18620','scope','notice'), ('5637','18621','scope','notice'), ('5638','18622','scope','notice'), ('5639','18623','scope','notice'), ('5640','18624','scope','notice'), ('5641','18625','scope','notice'), ('5642','18626','scope','notice'), ('5643','18627','scope','notice'), ('5644','18628','scope','notice'), ('5645','18628','scope','security'), ('5646','18629','scope','notice'), ('5647','18630','scope','availability'), ('5648','18631','scope','notice'), ('5649','18632','scope','notice'), ('5650','18633','scope','notice'), ('5651','18634','scope','notice'), ('5652','18635','scope','notice'), ('5653','18636','scope','notice'), ('5654','18637','scope','notice'), ('5655','18638','scope','notice'), ('5656','18639','scope','notice'), ('5657','18640','scope','notice'), ('5658','18641','scope','notice'), ('5659','18642','scope','capacity'), ('5660','18643','scope','notice'), ('5661','18644','scope','notice'), ('5662','18645','scope','capacity'), ('5663','18646','scope','notice'), ('5664','18647','scope','notice'), ('5665','18648','scope','notice'), ('5666','18649','scope','notice'), ('5667','18650','scope','notice'), ('5668','18651','scope','notice'), ('5669','18652','scope','notice'), ('5670','18653','scope','notice'), ('5671','18654','scope','notice'), ('5672','18655','scope','notice'), ('5673','18656','scope','notice'), ('5674','18657','scope','notice'), ('5675','18658','scope','notice'), ('5676','18659','scope','notice'), ('5677','18660','scope','notice'), ('5678','18661','scope','notice'), ('5679','18661','scope','security'), ('5680','18662','scope','notice'), ('5681','18663','scope','availability'), ('5682','18664','scope','notice'), ('5683','18665','scope','notice'), ('5684','18666','scope','notice'), ('5685','18667','scope','notice'), ('5686','18668','scope','notice'), ('5687','18669','scope','notice'), ('5688','18670','scope','notice'), ('5689','18671','scope','notice'), ('5690','18672','scope','notice'), ('5691','18673','scope','notice'), ('5692','18674','scope','notice'), ('5693','18675','scope','capacity'), ('5694','18676','scope','notice'), ('5695','18677','scope','notice'), ('5696','18678','scope','capacity'), ('5697','18679','scope','notice'), ('5698','18680','scope','notice'), ('5699','18681','scope','notice'), ('5700','18682','scope','notice'), ('5701','18683','scope','notice'), ('5702','18684','scope','notice'), ('5703','18685','scope','notice'), ('5704','18686','scope','notice'), ('5705','18687','scope','notice'), ('5706','18688','scope','notice'), ('5707','18689','scope','notice'), ('5708','18690','scope','notice'), ('5709','18691','scope','notice'), ('5710','18692','scope','notice'), ('5711','18693','scope','notice'), ('5712','18694','scope','notice'), ('5713','18694','scope','security'), ('5714','18695','scope','notice'), ('5715','18696','scope','availability'), ('5716','18697','scope','notice'), ('5717','18698','scope','notice'), ('5718','18699','scope','notice'), ('5719','18700','scope','notice'), ('5720','18701','scope','notice'), ('5721','18702','scope','notice'), ('5722','18703','scope','notice'), ('5723','18704','scope','notice'), ('5724','18705','scope','notice'), ('5725','18706','scope','notice'), ('5726','18707','scope','notice'), ('5727','18708','scope','capacity'), ('5728','18709','scope','notice'), ('5729','18710','scope','notice'), ('5730','18711','scope','capacity'), ('5731','18712','scope','notice'), ('5732','18713','scope','notice'), ('5733','18714','scope','notice'), ('5734','18715','scope','notice'), ('5735','18716','scope','notice'), ('5736','18717','scope','notice'), ('5737','18718','scope','notice'), ('5738','18719','scope','notice'), ('5739','18720','scope','notice'), ('5740','18721','scope','notice'), ('5741','18722','scope','notice'), ('5742','18723','scope','notice'), ('5743','18724','scope','notice'), ('5744','18725','scope','notice'), ('5745','18726','scope','notice'), ('5746','18727','scope','notice'), ('5747','18727','scope','security'), ('5748','18728','scope','notice'), ('5749','18729','scope','availability'), ('5750','18730','scope','notice'), ('5751','18731','scope','notice'), ('5752','18732','scope','notice'), ('5753','18733','scope','notice'), ('5754','18734','scope','notice'), ('5755','18735','scope','notice'), ('5756','18736','scope','notice'), ('5757','18737','scope','notice'), ('5758','18738','scope','notice'), ('5759','18739','scope','notice'), ('5760','18740','scope','notice'), ('5761','18927','scope','capacity'), ('5762','18928','scope','notice'), ('5763','18929','scope','notice'), ('5764','18930','scope','capacity'), ('5765','18931','scope','notice'), ('5766','18932','scope','notice'), ('5767','18933','scope','notice'), ('5768','18934','scope','notice'), ('5769','18935','scope','notice'), ('5770','18936','scope','notice'), ('5771','18937','scope','notice'), ('5772','18938','scope','notice'), ('5773','18939','scope','notice'), ('5774','18940','scope','notice'), ('5775','18941','scope','notice'), ('5776','18942','scope','notice'), ('5777','18943','scope','notice'), ('5778','18944','scope','notice'), ('5779','18945','scope','notice'), ('5780','18946','scope','notice'), ('5781','18946','scope','security'), ('5782','18947','scope','notice'), ('5783','18948','scope','availability'), ('5784','18949','scope','notice'), ('5785','18950','scope','notice'), ('5786','18951','scope','notice'), ('5787','18952','scope','notice'), ('5788','18953','scope','notice'), ('5789','18954','scope','notice'), ('5790','18955','scope','notice'), ('5791','18956','scope','notice'), ('5792','18957','scope','notice'), ('5793','18958','scope','notice'), ('5794','18959','scope','notice'), ('5795','18774','scope','capacity'), ('5796','18775','scope','notice'), ('5797','18776','scope','notice'), ('5798','18777','scope','capacity'), ('5799','18778','scope','notice'), ('5800','18779','scope','notice'), ('5801','18780','scope','notice'), ('5802','18781','scope','notice'), ('5803','18782','scope','notice'), ('5804','18783','scope','notice'), ('5805','18784','scope','notice'), ('5806','18785','scope','notice'), ('5807','18786','scope','notice'), ('5808','18787','scope','notice'), ('5809','18788','scope','notice'), ('5810','18789','scope','notice'), ('5811','18790','scope','notice'), ('5812','18791','scope','notice'), ('5813','18792','scope','notice'), ('5814','18793','scope','notice'), ('5815','18793','scope','security'), ('5816','18794','scope','notice'), ('5817','18795','scope','availability'), ('5818','18796','scope','notice'), ('5819','18797','scope','notice'), ('5820','18798','scope','notice'), ('5821','18799','scope','notice'), ('5822','18800','scope','notice'), ('5823','18801','scope','notice'), ('5824','18802','scope','notice'), ('5825','18803','scope','notice'), ('5826','18804','scope','notice'), ('5827','18805','scope','notice'), ('5828','18806','scope','notice'), ('5829','18807','scope','capacity'), ('5830','18473','scope','notice'), ('5831','18474','scope','notice'), ('5832','18475','scope','capacity'), ('5833','18476','scope','notice'), ('5834','18480','scope','notice'), ('5835','18481','scope','notice'), ('5836','18482','scope','notice'), ('5837','18483','scope','notice'), ('5838','18484','scope','notice'), ('5839','18485','scope','notice'), ('5840','18486','scope','notice'), ('5841','18487','scope','notice'), ('5842','18488','scope','notice'), ('5843','18489','scope','notice'), ('5844','18490','scope','notice'), ('5845','18491','scope','notice'), ('5846','18492','scope','notice'), ('5847','18493','scope','notice'), ('5848','18808','scope','notice'), ('5849','18808','scope','security'), ('5850','18495','scope','notice'), ('5851','18496','scope','availability'), ('5852','18497','scope','notice'), ('5853','18809','scope','notice'), ('5854','18499','scope','notice'), ('5855','18500','scope','notice'), ('5856','18501','scope','notice'), ('5857','18502','scope','notice'), ('5858','18503','scope','notice'), ('5859','18504','scope','notice'), ('5860','18505','scope','notice'), ('5861','18506','scope','notice'), ('5862','18810','scope','notice'), ('5863','18811','scope','capacity'), ('5864','18812','scope','notice'), ('5865','18813','scope','notice'), ('5866','18814','scope','capacity'), ('5867','18815','scope','notice'), ('5868','18816','scope','notice'), ('5869','18817','scope','notice'), ('5870','18818','scope','notice'), ('5871','18819','scope','notice'), ('5872','18820','scope','notice'), ('5873','18821','scope','notice'), ('5874','18822','scope','notice'), ('5875','18823','scope','notice'), ('5876','18824','scope','notice'), ('5877','18825','scope','notice'), ('5878','18826','scope','notice'), ('5879','18827','scope','notice'), ('5880','18828','scope','notice'), ('5881','18829','scope','notice'), ('5882','18830','scope','notice'), ('5883','18830','scope','security'), ('5884','18831','scope','notice'), ('5885','18832','scope','availability'), ('5886','18833','scope','notice'), ('5887','18834','scope','notice'), ('5888','18835','scope','notice'), ('5889','18836','scope','notice'), ('5890','18837','scope','notice'), ('5891','18838','scope','notice'), ('5892','18839','scope','notice'), ('5893','18840','scope','notice'), ('5894','18841','scope','notice'), ('5895','18842','scope','notice'), ('5896','18843','scope','notice'), ('5897','18844','scope','capacity'), ('5898','18845','scope','notice'), ('5899','18846','scope','notice'), ('5900','18847','scope','capacity'), ('5901','18848','scope','notice'), ('5902','18849','scope','notice'), ('5903','18850','scope','notice'), ('5904','18851','scope','notice'), ('5905','18852','scope','notice'), ('5906','18853','scope','notice'), ('5907','18854','scope','notice'), ('5908','18855','scope','notice'), ('5909','18856','scope','notice'), ('5910','18857','scope','notice'), ('5911','18858','scope','notice'), ('5912','18859','scope','notice'), ('5913','18860','scope','notice'), ('5914','18861','scope','notice'), ('5915','18862','scope','notice'), ('5916','18863','scope','notice'), ('5917','18863','scope','security'), ('5918','18864','scope','notice'), ('5919','18865','scope','availability'), ('5920','18866','scope','notice'), ('5921','18867','scope','notice'), ('5922','18868','scope','notice'), ('5923','18869','scope','notice'), ('5924','18870','scope','notice'), ('5925','18871','scope','notice'), ('5926','18872','scope','notice'), ('5927','18873','scope','notice'), ('5928','18874','scope','notice'), ('5929','18875','scope','notice'), ('5930','18876','scope','notice'), ('5931','18877','scope','capacity'), ('5932','18878','scope','notice'), ('5933','18879','scope','notice'), ('5934','18880','scope','capacity'), ('5935','18881','scope','notice'), ('5936','18882','scope','notice'), ('5937','18883','scope','notice'), ('5938','18884','scope','notice'), ('5939','18885','scope','notice'), ('5940','18886','scope','notice'), ('5941','18887','scope','notice'), ('5942','18888','scope','notice'), ('5943','18889','scope','notice'), ('5944','18890','scope','notice'), ('5945','18891','scope','notice'), ('5946','18892','scope','notice'), ('5947','18893','scope','notice'), ('5948','18894','scope','notice'), ('5949','18895','scope','notice'), ('5950','18896','scope','notice'), ('5951','18896','scope','security'), ('5952','18897','scope','notice'), ('5953','18898','scope','availability'), ('5954','18899','scope','notice'), ('5955','18900','scope','notice'), ('5956','18901','scope','notice'), ('5957','18902','scope','notice'), ('5958','18903','scope','notice'), ('5959','18904','scope','notice'), ('5960','18905','scope','notice'), ('5961','18906','scope','notice'), ('5962','18907','scope','notice'), ('5963','18908','scope','notice'), ('5964','18909','scope','notice'), ('5965','18183','scope','notice'), ('5966','22515','scope','availability'), ('5967','22516','scope','availability'), ('5968','22516','scope','performance'), ('5969','22517','scope','availability'), ('5970','22517','scope','performance'), ('5971','22518','scope','notice'), ('5972','22518','scope','security'), ('5973','22519','scope','notice'), ('5974','22520','scope','availability'), ('5975','18184','scope','availability'), ('5976','18185','scope','availability'), ('5977','18186','scope','performance'), ('5978','18187','scope','availability'), ('5979','18188','scope','performance'), ('5980','18189','scope','notice'), ('5981','18190','scope','availability'), ('5982','18191','scope','availability'), ('5983','18192','scope','availability'), ('5984','18193','scope','availability'), ('5985','18193','scope','notice'), ('5986','18194','scope','availability'), ('5987','18195','scope','availability'), ('5988','18196','scope','availability'), ('5989','18196','scope','notice'), ('5990','18197','scope','availability'), ('5991','18198','scope','availability'), ('5992','18199','scope','performance'), ('5993','18200','scope','availability'), ('5994','18201','scope','performance'), ('5995','18202','scope','performance'), ('5996','18203','scope','capacity'), ('5997','18204','scope','availability'), ('5998','18205','scope','availability'), ('5999','18507','scope','availability'), ('6000','18507','scope','performance'), ('6001','18508','scope','notice'), ('6002','18509','scope','performance'), ('6003','18510','scope','performance'), ('6004','18511','scope','availability'), ('6005','18511','scope','performance'), ('6006','18512','scope','performance'), ('6007','18513','scope','performance'), ('6008','18514','scope','notice'), ('6009','18515','scope','availability'), ('6010','18515','scope','performance'), ('6011','18516','scope','availability'), ('6012','18516','scope','performance'), ('6013','18517','scope','notice'), ('6014','18518','scope','availability'), ('6015','18519','scope','availability'), ('6016','18519','scope','performance'), ('6017','18520','scope','availability'), ('6018','18520','scope','performance'), ('6019','18521','scope','performance'), ('6020','22521','scope','availability'), ('6021','22522','scope','availability'), ('6022','22522','scope','performance'), ('6023','22523','scope','availability'), ('6024','22523','scope','performance'), ('6025','22524','scope','notice'), ('6026','22524','scope','security'), ('6027','22525','scope','notice'), ('6028','22526','scope','availability'), ('6029','17929','scope','availability'), ('6030','17929','scope','performance'), ('6031','17930','scope','availability'), ('6032','17931','scope','availability'), ('6033','17931','scope','performance'), ('6034','17932','scope','availability'), ('6035','17933','scope','availability'), ('6036','17933','scope','performance'), ('6037','17934','scope','availability'), ('6038','17935','scope','notice'), ('6039','17936','scope','capacity'), ('6040','17936','scope','performance'), ('6041','17937','scope','capacity'), ('6042','17937','scope','performance'), ('6043','17938','scope','capacity'), ('6044','17938','scope','performance'), ('6045','17939','scope','availability'), ('6046','17939','scope','performance'), ('6047','17940','scope','availability'), ('6048','17940','scope','performance'), ('6049','17941','scope','availability'), ('6050','17941','scope','performance'), ('6051','18206','scope','performance'), ('6052','17943','scope','availability'), ('6053','17943','scope','performance'), ('6054','17944','scope','availability'), ('6055','17944','scope','performance'), ('6056','16767','scope','availability'), ('6057','16772','scope','notice'), ('6058','16771','scope','notice'), ('6059','16773','scope','notice'), ('6060','16769','scope','notice'), ('6061','16768','scope','notice'), ('6062','16770','scope','notice'), ('6063','19229','scope','notice'), ('6064','19230','scope','notice'), ('6065','19231','scope','availability'), ('6066','19232','scope','availability'), ('6067','19232','scope','performance'), ('6068','19233','scope','availability'), ('6069','19233','scope','performance'), ('6070','19234','scope','availability'), ('6071','19234','scope','performance'), ('6072','19235','scope','availability'), ('6073','19235','scope','performance'), ('6074','19236','scope','availability'), ('6075','19236','scope','performance'), ('6076','19237','scope','availability'), ('6077','19237','scope','performance'), ('6078','19238','scope','availability'), ('6079','19238','scope','performance'), ('6080','19239','scope','performance'), ('6081','19240','scope','availability'), ('6082','19241','scope','notice'), ('6083','19242','scope','availability'), ('6084','19242','scope','performance'), ('6085','19243','scope','availability'), ('6086','19243','scope','performance'), ('6087','19244','scope','availability'), ('6088','19244','scope','performance'), ('6089','19245','scope','availability'), ('6090','19245','scope','performance'), ('6091','19246','scope','availability'), ('6092','19246','scope','performance'), ('6093','19247','scope','availability'), ('6094','19247','scope','performance'), ('6095','19248','scope','availability'), ('6096','19248','scope','performance'), ('6097','19249','scope','availability'), ('6098','19249','scope','performance'), ('6099','19250','scope','availability'), ('6100','19250','scope','performance'), ('6101','19251','scope','availability'), ('6102','19251','scope','performance'), ('6103','19252','scope','availability'), ('6104','19252','scope','performance'), ('6105','19253','scope','availability'), ('6106','19253','scope','performance'), ('6107','19254','scope','availability'), ('6108','19254','scope','performance'), ('6109','19255','scope','availability'), ('6110','19255','scope','performance'), ('6111','19256','scope','notice'), ('6112','19257','scope','availability'), ('6113','19257','scope','performance'), ('6114','19258','scope','availability'), ('6115','19258','scope','performance'), ('6116','19259','scope','availability'), ('6117','19259','scope','performance'), ('6118','22527','scope','availability'), ('6119','22528','scope','availability'), ('6120','22528','scope','performance'), ('6121','22529','scope','availability'), ('6122','22529','scope','performance'), ('6123','22530','scope','notice'), ('6124','22530','scope','security'), ('6125','22531','scope','notice'), ('6126','22532','scope','availability'), ('6127','16487','scope','availability'), ('6128','16487','scope','performance'), ('6129','16488','scope','availability'), ('6130','16488','scope','performance'), ('6131','16484','scope','availability'), ('6132','16484','scope','performance'), ('6133','16485','scope','availability'), ('6134','16485','scope','performance'), ('6135','16486','scope','availability'), ('6136','16486','scope','performance'), ('6137','16479','scope','availability'), ('6138','16479','scope','performance'), ('6139','16480','scope','availability'), ('6140','16480','scope','performance'), ('6141','16482','scope','availability'), ('6142','16482','scope','performance'), ('6143','16481','scope','availability'), ('6144','16481','scope','performance'), ('6145','16474','scope','availability'), ('6146','16474','scope','performance'), ('6147','16475','scope','availability'), ('6148','16475','scope','performance'), ('6149','16472','scope','availability'), ('6150','16472','scope','performance'), ('6151','16471','scope','availability'), ('6152','16471','scope','performance'), ('6153','16473','scope','availability'), ('6154','16473','scope','performance'), ('6155','16469','scope','availability'), ('6156','16469','scope','performance'), ('6157','16468','scope','availability'), ('6158','16468','scope','performance'), ('6159','16470','scope','availability'), ('6160','16470','scope','performance'), ('6161','16460','scope','availability'), ('6162','16460','scope','performance'), ('6163','16459','scope','availability'), ('6164','16459','scope','performance'), ('6165','16461','scope','availability'), ('6166','16461','scope','performance'), ('6167','16463','scope','availability'), ('6168','16463','scope','performance'), ('6169','16462','scope','availability'), ('6170','16462','scope','performance'), ('6171','16464','scope','availability'), ('6172','16464','scope','performance'), ('6173','16466','scope','availability'), ('6174','16466','scope','performance'), ('6175','16465','scope','availability'), ('6176','16465','scope','performance'), ('6177','16467','scope','availability'), ('6178','16467','scope','performance'), ('6179','16478','scope','notice'), ('6180','16476','scope','availability'), ('6181','16476','scope','performance'), ('6182','16477','scope','availability'), ('6183','16477','scope','performance'), ('6184','16483','scope','availability'), ('6185','16483','scope','performance'), ('6451','19464','scope','notice'), ('6452','19465','scope','notice'), ('6453','19466','scope','available'), ('6454','19467','scope','available'), ('6455','19468','scope','notice'), ('6456','19469','scope','available'), ('6457','19470','scope','available'), ('6458','19471','scope','available'), ('6459','19472','scope','available'), ('6460','19473','scope','available'), ('6461','19474','scope','available'), ('6462','19475','scope','available'), ('6463','19476','scope','available'), ('6464','19477','scope','available'), ('6465','19478','scope','available'), ('6466','19479','scope','available'), ('6467','19480','scope','available'), ('6468','19481','scope','notice'), ('6469','19482','scope','available'), ('6470','19483','scope','available'), ('6471','19484','scope','available'), ('6472','19485','scope','available'), ('6473','19486','scope','available'), ('6474','19487','scope','notice'), ('6475','19488','scope','available'), ('6476','19489','scope','available'), ('6477','19490','scope','notice'), ('6478','19491','scope','available'), ('6479','19492','scope','available'), ('6480','19493','scope','notice'), ('6481','19494','scope','available'), ('6482','19495','scope','available'), ('6483','19496','scope','notice'), ('6484','19497','scope','available'), ('6485','19498','scope','available'), ('6486','19499','scope','notice'), ('6487','19500','scope','available'), ('6488','19501','scope','available'), ('6489','19502','scope','notice'), ('6490','19503','scope','available'), ('6491','19504','scope','available'), ('6492','19505','scope','notice'), ('6493','19506','scope','available'), ('6494','19507','scope','available'), ('6495','19508','scope','available'), ('6496','19509','scope','available'), ('6497','19510','scope','notice'), ('6498','19511','scope','notice'), ('6499','19512','scope','available'), ('6500','19513','scope','available'), ('6501','19514','scope','notice'), ('6502','19515','scope','available'), ('6503','19516','scope','available'), ('6504','19517','scope','available'), ('6505','19518','scope','available'), ('6506','19519','scope','available'), ('6507','19520','scope','available'), ('6508','19521','scope','available'), ('6509','19522','scope','available'), ('6510','19523','scope','available'), ('6511','19524','scope','available'), ('6512','19525','scope','available'), ('6513','19526','scope','available'), ('6514','19527','scope','notice'), ('6515','19528','scope','available'), ('6516','19529','scope','available'), ('6517','19530','scope','available'), ('6518','19531','scope','available'), ('6519','19532','scope','available'), ('6520','19533','scope','notice'), ('6521','19534','scope','available'), ('6522','19535','scope','available'), ('6523','19536','scope','notice'), ('6524','19537','scope','available'), ('6525','19538','scope','available'), ('6526','19539','scope','notice'), ('6527','19540','scope','available'), ('6528','19541','scope','available'), ('6529','19542','scope','notice'), ('6530','19543','scope','available'), ('6531','19544','scope','available'), ('6532','19545','scope','notice'), ('6533','19546','scope','available'), ('6534','19547','scope','available'), ('6535','19548','scope','notice'), ('6536','19549','scope','available'), ('6537','19550','scope','available'), ('6538','19551','scope','notice'), ('6539','19552','scope','available'), ('6540','19553','scope','available'), ('6541','19554','scope','available'), ('6542','19555','scope','available'), ('6543','19556','scope','notice'), ('6544','19557','scope','notice'), ('6545','19558','scope','available'), ('6546','19559','scope','available'), ('6547','19560','scope','notice'), ('6548','19561','scope','available'), ('6549','19562','scope','available'), ('6550','19563','scope','available'), ('6551','19564','scope','available'), ('6552','19565','scope','available'), ('6553','19566','scope','available'), ('6554','19567','scope','available'), ('6555','19568','scope','available'), ('6556','19569','scope','available'), ('6557','19570','scope','available'), ('6558','19571','scope','available'), ('6559','19572','scope','available'), ('6560','19573','scope','notice'), ('6561','19574','scope','available'), ('6562','19575','scope','available'), ('6563','19576','scope','available'), ('6564','19577','scope','available'), ('6565','19578','scope','available'), ('6566','19579','scope','notice'), ('6567','19580','scope','available'), ('6568','19581','scope','available'), ('6569','19582','scope','notice'), ('6570','19583','scope','available'), ('6571','19584','scope','available'), ('6572','19585','scope','notice'), ('6573','19586','scope','available'), ('6574','19587','scope','available'), ('6575','19588','scope','notice'), ('6576','19589','scope','available'), ('6577','19590','scope','available'), ('6578','19591','scope','notice'), ('6579','19592','scope','available'), ('6580','19593','scope','available'), ('6581','19594','scope','notice'), ('6582','19595','scope','available'), ('6583','19596','scope','available'), ('6584','19597','scope','notice'), ('6585','19598','scope','available'), ('6586','19599','scope','available'), ('6587','19600','scope','available'), ('6588','19601','scope','available'), ('6589','19602','scope','notice'), ('6590','19603','scope','notice'), ('6591','19604','scope','available'), ('6592','19605','scope','available'), ('6593','19606','scope','notice'), ('6594','19607','scope','available'), ('6595','19608','scope','available'), ('6596','19609','scope','available'), ('6597','19610','scope','available'), ('6598','19611','scope','available'), ('6599','19612','scope','available'), ('6600','19613','scope','available'), ('6601','19614','scope','available'), ('6602','19615','scope','available'), ('6603','19616','scope','available'), ('6604','19617','scope','available'), ('6605','19618','scope','available'), ('6606','19619','scope','notice'), ('6607','19620','scope','available'), ('6608','19621','scope','available'), ('6609','19622','scope','available'), ('6610','19623','scope','available'), ('6611','19624','scope','available'), ('6612','19625','scope','notice'), ('6613','19626','scope','available'), ('6614','19627','scope','available'), ('6615','19628','scope','notice'), ('6616','19629','scope','available'), ('6617','19630','scope','available'), ('6618','19631','scope','notice'), ('6619','19632','scope','available'), ('6620','19633','scope','available'), ('6621','19634','scope','notice'), ('6622','19635','scope','available'), ('6623','19636','scope','available'), ('6624','19637','scope','notice'), ('6625','19638','scope','available'), ('6626','19639','scope','available'), ('6627','19640','scope','notice'), ('6628','19641','scope','available'), ('6629','19642','scope','available'), ('6630','19643','scope','notice'), ('6631','19644','scope','available'), ('6632','19645','scope','available'), ('6633','19646','scope','available'), ('6634','19647','scope','available'), ('6635','22539','scope','availability'), ('6636','22540','scope','availability'), ('6637','22540','scope','performance'), ('6638','22541','scope','availability'), ('6639','22541','scope','performance'), ('6640','15762','scope','notice'), ('6641','22542','scope','notice'), ('6642','22542','scope','security'), ('6643','16439','scope','availability'), ('6644','16439','scope','performance'), ('6645','16440','scope','availability'), ('6646','16440','scope','performance'), ('6647','22543','scope','notice'), ('6648','22544','scope','availability'), ('6649','15790','scope','availability'), ('6650','15790','scope','performance'), ('6651','18003','scope','availability'), ('6652','18003','scope','performance'), ('6653','15787','component','array'), ('6654','15787','scope','availability'), ('6655','15787','scope','performance'), ('6656','18004','scope','availability'), ('6657','18004','scope','performance'), ('6658','18005','scope','availability'), ('6659','18005','scope','performance'), ('6660','15785','scope','availability'), ('6661','15785','scope','performance'), ('6662','15786','scope','availability'), ('6663','15786','scope','performance'), ('6664','15783','scope','availability'), ('6665','15783','scope','performance'), ('6666','15784','scope','availability'), ('6667','15784','scope','performance'), ('6668','15795','scope','notice'), ('6669','15794','scope','availability'), ('6670','15794','scope','performance'), ('6671','15792','scope','availability'), ('6672','15792','scope','performance'), ('6673','15793','scope','availability'), ('6674','15793','scope','performance'), ('6675','15781','scope','availability'), ('6676','15781','scope','performance'), ('6677','15782','scope','availability'), ('6678','15782','scope','performance'), ('6679','18006','scope','notice'), ('6680','18007','scope','notice'), ('6681','18008','scope','notice'), ('6682','18009','scope','notice'), ('6683','18010','scope','notice'), ('6684','18011','scope','notice'), ('6685','18012','scope','notice'), ('6686','18013','scope','notice'), ('6687','18014','scope','notice'), ('6688','18015','scope','notice'), ('6689','18016','scope','notice'), ('6690','18017','scope','notice'), ('6691','18018','scope','notice'), ('6692','18019','scope','notice'), ('6693','18020','scope','notice'), ('6694','18021','scope','notice'), ('6695','18022','scope','notice'), ('6696','18023','scope','notice'), ('6697','18024','scope','notice'), ('6698','18025','scope','notice'), ('6699','18026','scope','notice'), ('6700','15796','scope','availability'), ('6701','15796','scope','performance'), ('6702','15797','scope','availability'), ('6703','15797','scope','performance'), ('6704','22545','scope','availability'), ('6705','22546','scope','availability'), ('6706','22546','scope','performance'), ('6707','22547','scope','availability'), ('6708','22547','scope','performance'), ('6709','15827','scope','notice'), ('6710','22548','scope','notice'), ('6711','22548','scope','security'), ('6712','15824','scope','availability'), ('6713','15824','scope','performance'), ('6714','15825','scope','availability'), ('6715','15825','scope','performance'), ('6716','15826','scope','availability'), ('6717','15826','scope','performance'), ('6718','22549','scope','notice'), ('6719','22550','scope','availability'), ('6720','15838','scope','notice'), ('6721','15839','scope','availability'), ('6722','15839','scope','performance'), ('6723','15837','scope','notice'), ('6724','15829','scope','availability'), ('6725','15829','scope','performance'), ('6726','15828','scope','availability'), ('6727','15828','scope','performance'), ('6728','15830','scope','availability'), ('6729','15830','scope','performance'), ('6730','15832','scope','availability'), ('6731','15832','scope','performance'), ('6732','15831','scope','availability'), ('6733','15831','scope','performance'), ('6734','15833','scope','availability'), ('6735','15833','scope','performance'), ('6736','15835','scope','availability'), ('6737','15835','scope','performance'), ('6738','15834','scope','availability'), ('6739','15834','scope','performance'), ('6740','15836','scope','availability'), ('6741','15836','scope','performance'), ('6742','17141','scope','availability'), ('6743','17142','scope','availability'), ('6744','17143','scope','availability'), ('6745','17144','scope','availability'), ('6746','17145','scope','availability'), ('6747','17146','scope','availability'), ('6748','17147','scope','availability'), ('6749','17148','scope','availability'), ('6750','17149','scope','availability'), ('6751','17149','scope','performance'), ('6752','17150','scope','availability'), ('6753','17150','scope','performance'), ('6754','17151','scope','availability'), ('6755','17152','scope','availability'), ('6756','17152','scope','performance'), ('6757','17153','scope','availability'), ('6758','17153','scope','performance'), ('6759','17154','scope','availability'), ('6760','17155','scope','availability'), ('6761','17156','scope','availability'), ('6762','17157','scope','availability'), ('6763','17158','scope','availability'), ('6764','17159','scope','availability'), ('6765','17160','scope','availability'), ('6766','17161','scope','availability'), ('6767','17162','scope','availability'), ('6768','17163','scope','availability'), ('6769','17164','scope','availability'), ('6770','17165','scope','availability'), ('6771','17166','scope','availability'), ('6772','17166','scope','performance'), ('6773','17167','scope','availability'), ('6774','17167','scope','performance'), ('6775','17168','scope','availability'), ('6776','17169','scope','availability'), ('6777','17169','scope','performance'), ('6778','17170','scope','availability'), ('6779','17170','scope','performance'), ('6780','17171','scope','availability'), ('6781','17171','scope','performance'), ('6782','17172','scope','availability'), ('6783','17172','scope','performance'), ('6784','22551','scope','availability'), ('6785','22552','scope','availability'), ('6786','22552','scope','performance'), ('6787','22553','scope','availability'), ('6788','22553','scope','performance'), ('6789','22554','scope','notice'), ('6790','22554','scope','security'), ('6791','22555','scope','notice'), ('6792','22556','scope','availability'), ('6793','15846','scope','availability'), ('6794','15846','scope','performance'), ('6795','15845','scope','availability'), ('6796','15845','scope','performance'), ('6797','15847','scope','availability'), ('6798','15847','scope','performance'), ('6799','19648','scope','performance'), ('6800','19649','scope','performance'), ('6801','19650','scope','performance'), ('6802','17223','scope','availability'), ('6803','17222','scope','notice'), ('6804','17224','scope','notice'), ('6805','17225','scope','notice'), ('6806','17226','scope','performance'), ('6807','17227','scope','availability'), ('6808','17949','scope','performance'), ('6809','17229','scope','availability'), ('6810','17950','scope','performance'), ('6811','17231','scope','availability'), ('6812','17951','scope','performance'), ('6813','17952','scope','performance'), ('6814','17234','scope','availability'), ('6815','17529','scope','performance'), ('6816','15895','scope','performance'), ('6817','15896','scope','performance'), ('6821','15899','scope','performance'), ('6822','15900','scope','performance'), ('6823','15901','scope','performance'), ('6824','15902','scope','performance'), ('6825','15903','scope','performance'), ('6826','15904','scope','performance'), ('6827','15905','scope','performance'), ('6828','21200','scope','performance'), ('6829','15906','scope','performance'), ('6830','21267','scope','performance'), ('6831','21268','scope','performance'), ('6832','15907','scope','performance'), ('6833','15908','scope','performance'), ('6834','15909','scope','performance'), ('6835','15910','scope','performance'), ('6836','15911','scope','performance'), ('6837','15912','scope','performance'), ('6838','15890','scope','capacity'), ('6839','15890','scope','performance'), ('6840','21269','scope','notice'), ('6841','16918','scope','notice'), ('6842','15893','scope','capacity'), ('6843','15893','scope','performance'), ('6844','15891','scope','capacity'), ('6845','15891','scope','performance'), ('6846','15892','scope','capacity'), ('6847','15892','scope','performance'), ('6848','15894','scope','performance'), ('6849','22558','scope','performance'), ('6851','22560','scope','performance'), ('6852','22561','scope','performance'), ('6854','22563','scope','capacity'), ('6855','17465','scope','performance'), ('6856','17467','scope','performance'), ('6859','22566','scope','availability'), ('6860','22567','scope','notice'), ('6861','22568','scope','notice'), ('6862','17092','scope','performance'), ('6863','17097','scope','performance'), ('6864','17100','scope','performance'), ('6865','22569','scope','availability'), ('6866','22570','scope','availability'), ('6867','22571','scope','performance'), ('6868','22572','scope','performance'), ('6869','22573','scope','notice'), ('6870','22574','scope','notice'), ('6871','22575','scope','performance'), ('6872','22576','scope','capacity'), ('6873','22577','scope','capacity'), ('6874','22578','scope','performance'), ('6875','22579','scope','notice'), ('6876','22580','scope','availability'), ('6877','22581','scope','notice'), ('6878','22582','scope','notice'), ('6879','22583','scope','performance'), ('6880','22584','scope','performance'), ('6881','22585','scope','notice'), ('6882','22586','scope','notice'), ('6883','22587','scope','capacity'), ('6892','22593','scope','capacity'), ('6893','22593','scope','performance'), ('6895','22595','scope','capacity'), ('6896','22595','scope','performance'), ('6897','22596','scope','capacity'), ('6898','22596','scope','performance'), ('6899','22597','scope','performance'), ('6900','22598','scope','performance'), ('6907','22605','scope','notice'), ('6908','22606','scope','notice'), ('6909','22607','scope','capacity'), ('6910','22607','scope','performance'), ('6911','22608','scope','capacity'), ('6912','22608','scope','performance'), ('6913','22609','scope','capacity'), ('6914','22609','scope','performance'), ('6915','22610','scope','capacity'), ('6916','22610','scope','performance'), ('6917','22611','scope','availability'), ('6918','22612','scope','availability'), ('6919','22612','scope','performance'), ('6920','22613','scope','availability'), ('6921','22613','scope','performance'), ('6922','18924','scope','performance'), ('6923','18925','scope','performance'), ('6924','18235','scope','performance'), ('6925','22614','scope','performance'), ('6952','22641','scope','notice'), ('6953','22642','scope','notice'), ('6954','22643','scope','health'), ('6955','22644','scope','health'), ('6956','22645','scope','health'), ('6957','22646','scope','availability'), ('6958','22647','scope','notice'), ('6959','22648','scope','notice'), ('6960','22649','scope','availability'), ('6961','22651','scope','notice'), ('6962','22652','scope','health'), ('6963','22653','scope','capacity'), ('6964','22654','scope','capacity'), ('6965','22655','scope','security'), ('6966','22656','scope','availability'), ('6967','22657','scope','availability'), ('6968','22658','scope','notice'), ('6969','22659','scope','availability'), ('6970','22664','scope','availability'), ('6971','22665','scope','availability'), ('6972','22666','scope','availability'), ('6973','22667','scope','notice'), ('6974','22668','scope','capacity'), ('6975','22669','scope','availability'), ('6976','22670','scope','availability'), ('6977','22671','scope','notice'), ('6978','22672','scope','availability'), ('6979','22673','scope','availability'), ('6980','22674','scope','availability'), ('6981','22660','scope','availability'), ('6983','22661','scope','availability'), ('6985','22662','scope','availability'), ('6986','22663','scope','availability'), ('6987','22677','scope','availability'), ('6988','22678','scope','performance'), ('6989','22679','scope','availability'), ('6990','22680','scope','notice'), ('6991','22681','scope','availability'), ('6992','22682','scope','performance'), ('6993','22683','scope','performance'), ('6994','22684','scope','availability'), ('6995','22685','scope','notice'), ('6996','22686','scope','availability'), ('6997','22687','scope','availability'), ('6998','22688','scope','performance'), ('6999','22689','scope','availability'), ('7000','22690','scope','notice'), ('7001','22691','scope','performance'), ('7002','22692','scope','performance'), ('7003','22693','scope','notice'), ('7004','22694','scope','performance'), ('7005','22695','scope','performance'), ('7006','22696','scope','performance'), ('7007','22697','scope','availability'), ('7008','22698','scope','notice'), ('7009','22699','scope','performance'), ('7010','22700','scope','performance'), ('7011','22701','scope','performance'), ('7012','22702','scope','availability'), ('7013','22703','scope','performance'), ('7014','22704','scope','availability'), ('7015','22705','scope','performance'), ('7016','22706','scope','performance'), ('7017','22707','scope','availability'), ('7018','22708','scope','performance'), ('7019','22709','scope','performance'), ('7020','22710','scope','availability'), ('7021','22711','scope','notice'), ('7022','22712','scope','availability'), ('7023','22713','scope','notice'), ('7024','22714','scope','performance'), ('7025','22715','scope','availability'), ('7026','22716','scope','availability'), ('7027','22717','scope','performance'), ('7028','22718','scope','availability'), ('7029','22719','scope','notice'), ('7030','22720','scope','availability'), ('7031','22721','scope','notice'), ('7032','22722','scope','availability'), ('7033','22723','scope','performance'), ('7034','22724','scope','availability'), ('7035','22725','scope','performance'), ('7036','22726','scope','performance'), ('7037','22727','scope','performance'), ('7038','22728','scope','availability'), ('7039','22729','scope','notice'), ('7040','22730','scope','performance'), ('7041','22731','scope','availability'), ('7042','22732','scope','notice'), ('7043','22733','scope','availability'), ('7044','22734','scope','notice'), ('7045','22735','scope','performance'), ('7046','22736','scope','performance'), ('7047','22737','scope','availability'), ('7048','22738','scope','notice'), ('7049','22739','scope','availability'), ('7050','22740','scope','notice'), ('7051','22741','scope','performance'), ('7052','22742','scope','availability'), ('7053','22743','scope','performance'), ('7054','22744','scope','availability'), ('7055','22745','scope','notice'), ('7056','22746','scope','availability'), ('7057','22747','scope','performance'), ('7058','22748','scope','performance'), ('7059','22749','scope','availability'), ('7060','22750','scope','notice'), ('7061','22751','scope','availability'), ('7062','22752','scope','availability'), ('7063','22753','scope','performance'), ('7064','22754','scope','availability'), ('7065','22755','scope','notice'), ('7066','22756','scope','performance'), ('7067','22757','scope','performance'), ('7068','22758','scope','notice'), ('7069','22759','scope','performance'), ('7070','22760','scope','performance'), ('7071','22761','scope','performance'), ('7072','22762','scope','availability'), ('7073','22763','scope','notice'), ('7074','22764','scope','performance'), ('7075','22765','scope','performance'), ('7076','22766','scope','performance'), ('7077','22767','scope','availability'), ('7078','22768','scope','performance'), ('7079','22769','scope','availability'), ('7080','22770','scope','performance'), ('7081','22771','scope','performance'), ('7082','22772','scope','availability'), ('7083','22773','scope','performance'), ('7084','22774','scope','performance'), ('7085','22775','scope','availability'), ('7086','22776','scope','notice'), ('7087','22777','scope','availability'), ('7088','22778','scope','notice'), ('7089','22779','scope','performance'), ('7090','22780','scope','availability'), ('7091','22781','scope','availability'), ('7092','22782','scope','performance'), ('7093','22783','scope','availability'), ('7094','22784','scope','notice'), ('7095','22785','scope','availability'), ('7096','22786','scope','notice'), ('7097','22787','scope','availability'), ('7098','22788','scope','performance'), ('7099','22789','scope','availability'), ('7100','22790','scope','performance'), ('7101','22791','scope','performance'), ('7102','22792','scope','performance'), ('7103','22793','scope','availability'), ('7104','22794','scope','notice'), ('7105','22795','scope','performance'), ('7106','22796','scope','availability'), ('7107','22797','scope','notice'), ('7108','22798','scope','availability'), ('7109','22799','scope','notice'), ('7110','22800','scope','performance'), ('7111','22801','scope','performance'), ('7112','22802','scope','availability'), ('7113','22803','scope','notice'), ('7114','22804','scope','availability'), ('7115','22805','scope','notice'), ('7116','22806','scope','performance'), ('7117','22807','scope','availability'), ('7118','22808','scope','availability'), ('7119','22809','scope','availability'), ('7120','22809','scope','capacity'), ('7121','22810','scope','availability'), ('7122','22810','scope','capacity'), ('7123','22811','scope','availability'), ('7124','22812','scope','availability'), ('7125','22813','scope','availability'), ('7126','22814','scope','availability'), ('7127','22815','scope','availability'), ('7128','22815','scope','capacity'), ('7129','22816','scope','availability'), ('7130','22816','scope','capacity'), ('7131','22817','scope','availability'), ('7132','22817','scope','capacity'), ('7133','22818','scope','availability'), ('7134','22818','scope','capacity'), ('7135','22819','scope','availability'), ('7136','22819','scope','capacity'), ('7137','22820','scope','availability'), ('7138','22820','scope','capacity'), ('7139','22821','scope','notice'), ('7140','22822','scope','notice'), ('7141','22823','scope','availability'), ('7142','22823','scope','capacity'), ('7143','22824','scope','availability'), ('7144','22824','scope','capacity'), ('7145','22825','scope','availability'), ('7146','22826','scope','capacity'), ('7147','22827','scope','capacity'), ('7148','22828','scope','capacity'), ('7149','22828','scope','performance'), ('7150','22829','scope','capacity'), ('7151','22830','scope','capacity'), ('7152','22831','scope','availability'), ('7153','22832','scope','availability'), ('7154','22833','scope','availability'), ('7155','22834','scope','availability'), ('7156','22835','scope','availability'), ('7157','22836','scope','notice'), ('7158','22837','scope','availability'), ('7159','22838','scope','capacity'), ('7160','22839','scope','availability'), ('7161','22840','scope','availability'), ('7162','22841','scope','availability'), ('7163','22842','scope','availability'), ('7164','22843','scope','capacity'), ('7165','22844','scope','capacity'), ('7166','22845','scope','availability'), ('7167','22846','scope','capacity'), ('7168','22847','scope','performance'), ('7169','22848','scope','performance'), ('7170','22849','scope','availability'), ('7171','22850','scope','availability'), ('7172','22851','scope','availability'), ('7173','22852','scope','availability'), ('7174','22853','scope','capacity'), ('7175','22854','scope','capacity'), ('7176','22855','scope','capacity'), ('7177','22855','scope','performance'), ('7178','22856','scope','capacity'), ('7179','22857','scope','capacity'), ('7180','22858','scope','availability'), ('7181','22859','scope','availability'), ('7182','22860','scope','availability'), ('7183','22861','scope','availability'), ('7184','22862','scope','availability'), ('7185','22863','scope','notice'), ('7186','22864','scope','availability'), ('7187','22865','scope','availability'), ('7188','22866','scope','availability'), ('7189','22867','scope','notice'), ('7190','22868','scope','availability'), ('7191','22869','scope','availability'), ('7192','22870','scope','availability'), ('7193','22871','scope','availability'), ('7194','22872','scope','performance'), ('7195','22873','scope','availability'), ('7196','22874','scope','availability'), ('7197','22875','scope','availability'), ('7198','22876','scope','availability'), ('7199','22877','scope','availability'), ('7200','22878','scope','availability'), ('7201','22879','scope','availability'), ('7202','22880','scope','availability'), ('7203','22881','scope','notice'), ('7204','22882','scope','availability'), ('7205','22883','scope','availability'), ('7206','22884','scope','availability'), ('7207','22885','scope','notice'), ('7208','22886','scope','notice'), ('7209','22887','scope','availability'), ('7210','22888','scope','notice'), ('7211','22889','scope','availability'), ('7212','22890','scope','availability'), ('7213','22891','scope','availability'), ('7214','22892','scope','notice'), ('7215','22893','scope','notice'), ('7216','22894','scope','availability'), ('7217','22895','scope','notice'), ('7218','22896','scope','availability'), ('7219','22897','scope','availability'), ('7220','22898','scope','availability'), ('7221','22899','scope','availability'), ('7222','22900','scope','availability'), ('7223','22901','scope','availability'), ('7224','22902','scope','availability'), ('7225','22903','scope','availability'), ('7226','22904','scope','availability'), ('7227','22905','scope','availability'), ('7228','22906','scope','availability'), ('7229','22907','scope','availability'), ('7230','22908','scope','availability'), ('7231','22909','scope','availability'), ('7232','22910','scope','availability'), ('7233','22911','scope','availability'), ('7234','22912','scope','availability'), ('7235','22913','scope','availability'), ('7236','22914','scope','availability'), ('7237','22915','scope','availability'), ('7238','22916','scope','availability'), ('7239','22917','scope','availability'), ('7240','22917','scope','capacity'), ('7241','22918','scope','availability'), ('7242','22918','scope','capacity'), ('7243','22919','scope','capacity'), ('7244','22920','scope','availability'), ('7245','22921','scope','availability'), ('7246','22922','scope','notice'), ('7247','22923','scope','notice'), ('7248','22924','scope','availability'), ('7249','22925','scope','availability'), ('7250','22926','scope','notice'), ('7251','22927','scope','availability'), ('7252','22928','scope','availability'), ('7253','22929','scope','availability'), ('7254','22930','scope','availability'), ('7255','22931','scope','availability'), ('7256','22932','scope','availability'), ('7257','22933','scope','availability'), ('7258','22934','scope','availability'), ('7259','22935','scope','availability'), ('7260','22936','scope','availability'), ('7261','22937','scope','availability'), ('7262','22938','scope','availability'), ('7263','22939','scope','availability'), ('7264','22940','scope','availability'), ('7265','22941','scope','availability'), ('7266','22942','scope','availability'), ('7267','22943','scope','availability'), ('7268','22944','scope','availability'), ('7269','22945','scope','capacity'), ('7270','22945','scope','notice'), ('7271','22946','scope','notice'), ('7272','22947','scope','availability'), ('7273','22948','scope','notice'), ('7274','22949','scope','availability'), ('7275','22950','scope','availability'), ('7276','22951','scope','availability'), ('7277','22952','scope','notice'), ('7278','22953','scope','notice'), ('7279','22954','scope','notice'), ('7280','22955','scope','availability'), ('7281','22956','scope','availability'), ('7282','22957','scope','notice'), ('7283','22958','scope','availability'), ('7284','22959','scope','availability'), ('7285','22960','scope','availability'), ('7286','22961','scope','capacity'), ('7287','22961','scope','notice'), ('7288','22962','scope','capacity'), ('7289','22962','scope','notice'), ('7290','22963','scope','notice'), ('7291','22964','scope','notice'), ('7292','22965','scope','availability'), ('7293','22965','scope','capacity'), ('7294','22966','scope','availability'), ('7295','22966','scope','capacity'), ('7296','22967','scope','capacity'), ('7297','22968','scope','capacity'), ('7298','22968','scope','notice'), ('7299','22969','scope','capacity'), ('7300','22969','scope','notice'), ('7301','22970','scope','notice'), ('7302','22971','scope','notice'), ('7303','22972','scope','availability'), ('7304','22972','scope','capacity'), ('7305','22973','scope','availability'), ('7306','22973','scope','capacity'), ('7307','22974','scope','capacity'), ('7308','22975','scope','capacity'), ('7309','22975','scope','notice'), ('7310','22976','scope','capacity'), ('7311','22976','scope','notice'), ('7312','22977','scope','notice'), ('7313','22978','scope','notice'), ('7314','22979','scope','availability'), ('7315','22979','scope','capacity'), ('7316','22980','scope','availability'), ('7317','22980','scope','capacity'), ('7318','22981','scope','availability'), ('7319','22981','scope','capacity'), ('7320','22982','scope','availability'), ('7321','22983','scope','availability'), ('7322','22984','scope','availability'), ('7323','22985','scope','availability'), ('7324','22986','scope','availability'), ('7325','22987','scope','availability'), ('7326','22988','scope','availability'), ('7327','22989','scope','availability'), ('7328','22990','scope','availability'), ('7329','22991','scope','availability'), ('7330','22992','scope','availability'), ('7331','22993','scope','availability'), ('7332','22994','scope','availability'), ('7333','22995','scope','availability'), ('7334','22996','scope','availability'), ('7335','22997','scope','availability'), ('7336','22998','scope','performance'), ('7337','22999','scope','availability'), ('7338','23000','scope','capacity'), ('7339','23001','scope','capacity'), ('7340','23002','scope','availability'), ('7341','23003','scope','availability'), ('7342','23004','scope','availability'), ('7343','23005','scope','availability'), ('7344','23006','scope','performance'), ('7345','23007','scope','availability'), ('7346','23008','scope','performance'), ('7347','23009','scope','capacity'), ('7348','23010','scope','capacity'), ('7350','23012','scope','availability'), ('7351','23013','scope','availability'), ('7352','23014','scope','availability'), ('7353','23015','scope','performance'), ('7354','23016','scope','availability'), ('7355','23017','scope','performance'), ('7356','23018','scope','capacity'), ('7357','23019','scope','capacity'), ('7358','23020','scope','availability'), ('7359','23021','scope','availability'), ('7360','23022','scope','availability'), ('7361','23023','scope','performance'), ('7362','23024','scope','availability'), ('7363','23025','scope','performance'), ('7364','23026','scope','capacity'), ('7365','23027','scope','capacity'), ('7366','23028','scope','availability'), ('7367','23029','scope','availability'), ('7368','23030','scope','availability'), ('7369','23031','scope','security'), ('7370','23032','scope','availability'), ('7371','23033','scope','availability'), ('7372','23034','scope','availability'), ('7373','23035','scope','availability'), ('7374','23036','scope','performance'), ('7375','23037','scope','performance'), ('7376','23038','scope','availability'), ('7377','23039','scope','availability'), ('7378','23040','scope','availability'), ('7379','23041','scope','performance'), ('7380','23042','scope','availability'), ('7381','23043','scope','availability'), ('7382','23044','scope','performance'), ('7383','23045','scope','availability'), ('7384','23046','scope','performance'), ('7385','23047','scope','availability'), ('7386','23048','scope','notice'), ('7387','23049','scope','availability'), ('7388','23050','scope','availability'), ('7389','23051','scope','availability'), ('7390','23052','scope','availability'), ('7391','23053','scope','availability'), ('7392','23054','scope','performance'), ('7393','23055','scope','availability'), ('7398','23058','scope','availability'), ('7399','23059','scope','availability'), ('7400','23059','scope','performance'), ('7401','23060','scope','availability'), ('7402','23060','scope','performance'), ('7403','23061','scope','notice'), ('7404','23062','scope','notice'), ('7405','23063','scope','notice'), ('7406','23064','scope','notice'), ('7407','23065','scope','availability'), ('7408','23066','scope','capacity'), ('7409','23066','scope','performance'), ('7410','23067','scope','notice'), ('7411','23068','scope','availability'), ('7412','23068','scope','performance'), ('7413','23069','scope','availability'), ('7414','23069','scope','performance'), ('7415','23070','scope','availability'), ('7416','23070','scope','performance'), ('7417','23071','scope','capacity'), ('7418','23071','scope','performance'), ('7419','23072','scope','performance'), ('7420','23073','scope','performance'), ('7421','23074','scope','performance'), ('7422','23075','scope','performance'), ('7423','23076','scope','performance'), ('7424','23077','scope','availability'), ('7425','23078','scope','performance'), ('7426','23079','scope','availability'), ('7427','23080','scope','availability'), ('7428','23081','scope','availability'), ('7429','23082','scope','availability'), ('7430','23082','scope','performance'), ('7431','23083','scope','availability'), ('7432','23083','scope','performance'), ('7433','23084','scope','availability'), ('7434','23084','scope','performance'), ('7435','23085','scope','availability'), ('7436','23085','scope','performance'), ('7437','23086','scope','availability'), ('7438','23086','scope','performance'), ('7439','23087','scope','availability'), ('7440','23087','scope','performance'), ('7441','23088','scope','availability'), ('7442','23088','scope','performance'), ('7443','23089','scope','availability'), ('7444','23089','scope','performance'), ('7445','23090','scope','availability'), ('7446','23090','scope','performance'), ('7447','23091','scope','availability'), ('7448','23091','scope','performance'), ('7449','23092','scope','availability'), ('7450','23092','scope','performance'), ('7451','23093','scope','availability'), ('7452','23093','scope','performance'), ('7453','23094','scope','availability'), ('7454','23094','scope','performance'), ('7455','23095','scope','availability'), ('7456','23096','scope','availability'), ('7457','23097','scope','availability'), ('7458','23098','scope','notice'), ('7459','23099','scope','availability'), ('7460','23100','scope','availability'), ('7461','23101','scope','availability'), ('7462','23102','scope','availability'), ('7463','23103','scope','availability'), ('7464','23104','scope','notice'), ('7465','23105','scope','notice'), ('7466','23106','scope','availability'), ('7467','23107','scope','availability'), ('7468','23108','scope','availability'), ('7469','23109','scope','availability'), ('7470','23110','scope','availability'), ('7471','23111','scope','availability'), ('7472','23112','scope','availability'), ('7473','23113','scope','availability'), ('7474','23114','scope','availability'), ('7475','23115','scope','availability'), ('7476','23116','scope','performance'), ('7477','23117','scope','availability'), ('7478','23118','scope','capacity'), ('7479','23119','scope','capacity'), ('7480','23120','scope','availability'), ('7481','23121','scope','availability'), ('7482','23122','scope','availability'), ('7483','23123','scope','performance'), ('7484','23124','scope','availability'), ('7485','23125','scope','capacity'), ('7486','23126','scope','capacity'), ('7487','23127','scope','availability'), ('7488','23128','scope','performance'), ('7489','23129','scope','notice'), ('7490','23130','scope','notice'), ('7491','23131','scope','notice'), ('7492','23132','scope','capacity'), ('7493','23133','scope','capacity'), ('7494','23134','scope','notice'), ('7495','23135','scope','notice'), ('7496','23136','scope','availability'), ('7497','23137','scope','notice'), ('7498','23138','scope','capacity'), ('7499','23139','scope','capacity'), ('7500','23140','scope','capacity'), ('7501','23141','scope','capacity'), ('7502','23142','scope','availability'), ('7503','23143','scope','capacity'), ('7504','23144','scope','capacity'), ('7505','23145','scope','performance'), ('7506','23146','scope','notice'), ('7507','23147','scope','notice'), ('7508','23148','scope','notice'), ('7509','23149','scope','notice'), ('7510','23150','scope','notice'), ('7511','23151','scope','availability'), ('7512','23152','scope','capacity'), ('7513','23153','scope','capacity'), ('7514','23154','scope','capacity'), ('7515','23155','scope','capacity'), ('7516','23156','scope','capacity'), ('7521','23161','scope','notice'), ('7522','23162','scope','notice'), ('7523','23163','scope','notice'), ('7524','23164','scope','notice'), ('7525','23165','scope','notice'), ('7526','23166','scope','availability'), ('7527','23167','scope','availability'), ('7528','23168','scope','availability'), ('7529','23169','scope','availability'), ('7530','23170','scope','availability'), ('7531','23171','scope','availability'), ('7532','23171','scope','performance'), ('7533','23172','scope','availability'), ('7534','23172','scope','performance'), ('7535','23173','scope','notice'), ('7536','23173','scope','security'), ('7537','23174','scope','availability'), ('7538','23175','scope','notice'), ('7539','23176','scope','availability'), ('7540','23177','scope','availability'), ('7541','23177','scope','performance'), ('7542','23178','scope','availability'), ('7543','23178','scope','performance'), ('7544','23179','scope','notice'), ('7545','23180','scope','notice'), ('7546','23181','scope','notice'), ('7547','23182','scope','notice'), ('7548','23183','scope','notice'), ('7549','23184','scope','notice'), ('7550','23185','scope','notice'), ('7551','23186','scope','notice'), ('7552','23187','scope','notice'), ('7553','23188','scope','notice'), ('7554','23189','scope','notice'), ('7555','23190','scope','notice'), ('7556','23191','scope','notice'), ('7557','23192','scope','notice'), ('7558','23193','scope','notice'), ('7559','23194','scope','notice'), ('7560','23195','scope','notice'), ('7561','23196','scope','notice'), ('7562','23197','scope','notice'), ('7563','23198','scope','notice'), ('7564','23199','scope','notice'), ('7565','23200','scope','notice'), ('7566','23201','scope','notice'), ('7567','23202','scope','notice'), ('7568','23203','scope','notice'), ('7569','23204','scope','notice'), ('7570','23205','scope','availability'), ('7571','23206','scope','performance'), ('7572','23207','scope','performance'), ('7573','23208','scope','performance'), ('7574','23209','scope','performance'), ('7575','23210','scope','performance'), ('7576','23211','scope','performance'), ('7577','23212','scope','performance'), ('7578','23213','scope','performance'), ('7579','23214','scope','performance'), ('7580','23215','scope','performance'), ('7581','23216','scope','performance'), ('7582','23217','scope','availability'), ('7583','23218','scope','performance'), ('7584','23219','scope','availability'), ('7585','23220','scope','notice'), ('7586','23221','scope','availability'), ('7587','23222','scope','availability'), ('7588','23223','scope','performance'), ('7589','23224','scope','performance'), ('7590','23225','scope','performance'), ('7591','23226','scope','performance'), ('7592','23227','scope','availability'), ('7593','23228','scope','availability'), ('7594','23229','scope','performance'), ('7595','23230','scope','performance'), ('7596','23231','scope','availability'), ('7597','23232','scope','availability'), ('7598','23233','scope','availability'), ('7599','23234','scope','availability'), ('7600','23235','scope','availability'), ('7601','23236','scope','availability'), ('7602','23237','scope','availability'), ('7603','23238','scope','availability'), ('7604','23239','scope','performance'), ('7605','23240','scope','availability'), ('7606','23241','scope','capacity'), ('7607','23242','scope','capacity'), ('7608','23243','scope','availability'), ('7609','23244','scope','availability'), ('7610','23245','scope','availability'), ('7611','23246','scope','availability'), ('7612','23247','scope','availability'), ('7613','23248','scope','availability'), ('7614','23249','scope','performance'), ('7615','23250','scope','performance'), ('7616','23251','scope','availability'), ('7617','23252','scope','capacity'), ('7618','23253','scope','capacity'), ('7619','23254','scope','availability'), ('7620','23255','scope','availability'), ('7621','23256','scope','availability'), ('7622','23257','scope','availability'), ('7623','23258','scope','availability'), ('7624','23259','scope','availability'), ('7625','23260','scope','performance'), ('7626','23261','scope','performance'), ('7627','23262','scope','availability'), ('7628','23263','scope','capacity'), ('7629','23264','scope','capacity'), ('7630','23265','scope','availability'), ('7631','23266','scope','availability'), ('7632','23267','scope','availability'), ('7633','23268','scope','availability'), ('7634','23269','scope','availability'), ('7635','23270','scope','availability'), ('7636','23271','scope','performance'), ('7637','23272','scope','performance'), ('7638','23273','scope','availability'), ('7639','23274','scope','availability'), ('7640','23274','scope','notice'), ('7641','23275','scope','availability'), ('7642','23276','scope','availability'), ('7644','23278','scope','capacity'), ('7645','23279','scope','capacity'), ('7646','23280','scope','capacity'), ('7647','23280','scope','notice'), ('7649','16660','scope','availability'), ('7650','16677','scope','availability'), ('7651','23282','scope','performance'), ('7652','23283','scope','performance'), ('7653','23284','scope','performance'), ('7654','23285','scope','performance'), ('7655','23286','scope','performance'), ('7656','23287','scope','performance'), ('7657','23288','scope','performance'), ('7658','23289','scope','performance'), ('7659','23290','scope','performance'), ('7660','23291','scope','performance'), ('7661','23292','scope','performance'), ('7662','23293','scope','performance'), ('7663','23294','scope','performance'), ('7664','23295','scope','performance'), ('7665','23296','scope','availability'), ('7666','23297','scope','performance'), ('7667','23298','scope','performance'), ('7668','23299','scope','performance'), ('7669','23300','scope','performance'), ('7670','23301','scope','performance'), ('7671','23302','scope','performance'), ('7672','23303','scope','availability'), ('7673','23304','scope','availability'), ('7674','23305','scope','capacity'), ('7675','23305','scope','performance'), ('7676','23306','scope','capacity'), ('7677','23306','scope','performance'), ('7678','23307','scope','availability'), ('7679','23308','scope','availability'), ('7680','23309','scope','notice'), ('7681','23310','scope','capacity'), ('7682','23310','scope','performance'), ('7683','23310','service','{#AWS.ECS.SERVICE.NAME}'), ('7684','23311','scope','capacity'), ('7685','23311','scope','performance'), ('7686','23311','service','{#AWS.ECS.SERVICE.NAME}'), ('7687','23312','scope','availability'), ('7688','23313','scope','capacity'), ('7689','23313','scope','performance'), ('7690','23314','scope','capacity'), ('7691','23314','scope','performance'), ('7692','23315','scope','availability'), ('7693','23316','scope','availability'), ('7694','23317','scope','notice'), ('7695','23318','scope','capacity'), ('7696','23318','scope','performance'), ('7697','23318','service','{#AWS.ECS.SERVICE.NAME}'), ('7698','23319','scope','capacity'), ('7699','23319','scope','performance'), ('7700','23319','service','{#AWS.ECS.SERVICE.NAME}'), ('7701','23320','scope','performance'), ('7702','23321','scope','capacity'), ('7703','23322','scope','capacity'), ('7704','23323','scope','capacity'), ('7705','23324','scope','capacity'), ('7706','23325','scope','capacity'), ('7707','23326','scope','capacity'), ('7708','23327','scope','availability'), ('7709','23328','scope','availability'), ('7710','23329','scope','availability'), ('7711','23330','scope','notice'), ('7712','23331','scope','availability'), ('7713','23332','scope','availability'), ('7714','23333','scope','availability'), ('7715','23334','scope','availability'), ('7716','23335','scope','availability'), ('7717','23336','scope','availability'), ('7718','23337','scope','notice'), ('7719','23338','scope','performance'), ('7720','23339','scope','performance'), ('7721','23340','scope','availability'), ('7722','23341','scope','performance'), ('7723','23342','scope','availability'), ('7724','23343','scope','availability'), ('7725','23344','scope','security'), ('7726','23345','scope','performance'), ('7727','23346','scope','notice'), ('7728','23347','scope','capacity'), ('7729','23347','scope','performance'), ('7730','23348','scope','notice'), ('7731','23349','scope','availability'), ('7732','23350','scope','notice'), ('7733','23351','scope','notice'), ('7734','23352','scope','availability'), ('7735','23353','scope','availability'), ('7736','23354','scope','availability'), ('7737','23355','scope','availability'), ('7738','23356','scope','capacity'), ('7739','23356','scope','performance'), ('7740','23357','scope','performance'), ('7741','23358','scope','availability'), ('7742','23358','scope','capacity'), ('7743','23359','scope','availability'), ('7744','23359','scope','capacity'), ('7745','23360','scope','capacity'), ('7746','23361','scope','performance'), ('7747','23362','scope','performance'), ('7748','23363','scope','availability'), ('7749','23364','scope','availability'), ('7750','23365','scope','availability'), ('7751','23366','scope','availability'), ('7752','23367','scope','availability'), ('7753','23368','scope','performance'), ('7754','23369','scope','performance'), ('7755','23370','scope','availability'), ('7756','23371','scope','availability'), ('7757','23372','scope','availability'), ('7758','23373','scope','notice'), ('7759','23374','scope','availability'), ('7760','23375','scope','availability'), ('7761','23376','scope','availability'), ('7762','23377','scope','capacity'), ('7763','23378','scope','availability'), ('7764','23379','scope','availability'), ('7765','23380','scope','availability'), ('7766','23381','scope','notice'), ('7767','23382','scope','performance'), ('7768','23383','scope','availability'), ('7769','23384','scope','availability'), ('7770','23385','scope','performance'), ('7771','23386','scope','capacity'), ('7772','23387','scope','capacity'), ('7773','23388','scope','capacity'), ('7774','23389','scope','capacity'), ('7775','23390','scope','capacity'), ('7776','23391','scope','availability'), ('7777','23392','scope','availability'), ('7778','23393','scope','performance'), ('7779','23394','scope','performance'), ('7780','23395','scope','performance'), ('7781','23396','scope','performance'), ('7782','23397','scope','performance'), ('7783','23398','scope','notice'), ('7784','23399','scope','notice'), ('7785','23400','scope','notice'), ('7786','23401','scope','notice'), ('7787','23402','scope','notice'), ('7788','23403','scope','notice'), ('7789','23404','scope','notice'), ('7790','23405','scope','notice'), ('7791','23406','scope','notice'), ('7792','23407','scope','notice'), ('7793','23408','scope','notice'), ('7794','23409','scope','notice'), ('7795','23410','scope','notice'), ('7796','23411','scope','notice'), ('7797','23412','scope','notice'), ('7798','23413','scope','notice'), ('7799','23414','scope','notice'), ('7800','23415','scope','notice'), ('7801','23416','scope','performance'), ('7802','23417','scope','notice'), ('7803','23418','scope','availability'), ('7804','23418','scope','capacity'), ('7805','23419','scope','performance'), ('7806','23420','scope','performance'), ('7807','23421','scope','notice'), ('7808','23422','scope','availability'), ('7809','23423','scope','performance'), ('7810','23424','scope','notice'), ('7811','23425','scope','notice'), ('7812','23426','scope','notice'), ('7813','23427','scope','capacity'), ('7814','23428','scope','availability'), ('7815','23429','scope','notice'), ('7816','23430','scope','notice'), ('7817','23431','scope','availability'), ('7818','23432','scope','performance'), ('7819','23433','scope','performance'), ('7820','23434','scope','notice'), ('7821','23435','scope','notice'), ('7822','23436','scope','availability'), ('7823','23437','scope','capacity'), ('7824','23437','scope','performance'), ('7825','23438','scope','capacity'), ('7826','23438','scope','performance'), ('7827','23439','scope','availability'), ('7828','23440','scope','capacity'), ('7829','23440','scope','performance'), ('7830','23441','scope','capacity'), ('7831','23441','scope','performance'), ('7832','23442','scope','notice'), ('7833','23442','scope','security'), ('7834','23443','scope','availability'), ('7835','23444','scope','availability'), ('7836','23445','scope','availability'), ('7837','23446','scope','availability'), ('7838','23447','scope','availability'), ('7839','23448','scope','notice'), ('7840','23449','scope','availability'), ('7841','23450','scope','performance'), ('7842','23451','scope','performance'), ('7843','23452','scope','availability'), ('7844','23452','scope','performance'), ('7845','23453','scope','availability'), ('7846','23454','scope','performance'), ('7847','23455','scope','availability'), ('7848','23456','scope','availability'), ('7849','23457','scope','availability'), ('7850','23458','scope','notice'), ('7851','23459','scope','notice'), ('7852','23460','scope','availability'), ('7853','23461','scope','availability'), ('7854','23461','scope','performance'), ('7855','23462','scope','availability'), ('7856','23462','scope','performance'), ('7857','23463','scope','performance'), ('7858','23464','scope','notice'), ('7859','23465','scope','notice'), ('7860','23465','scope','security'), ('7861','23466','scope','notice'), ('7862','23467','scope','capacity'), ('7863','23467','scope','performance'), ('7864','23468','scope','capacity'), ('7865','23468','scope','performance'), ('7866','23469','scope','availability'), ('7867','23470','scope','performance'), ('7868','23471','scope','performance'), ('7869','23472','scope','availability'), ('7870','23472','scope','performance'), ('7871','23473','scope','availability'), ('7872','23474','scope','availability'), ('7873','23475','scope','availability'), ('7874','23476','scope','capacity'), ('7875','23476','scope','performance'), ('7876','23477','scope','capacity'), ('7877','23477','scope','performance'), ('7878','23478','scope','capacity'), ('7879','23479','scope','capacity'), ('7880','23480','scope','capacity'), ('7881','23481','scope','capacity'), ('7882','23482','scope','availability'), ('7883','23483','scope','notice'), ('7884','23484','scope','notice'), ('7885','23485','scope','availability'), ('7886','23485','scope','performance'), ('7887','23486','scope','availability'), ('7888','23486','scope','performance'), ('7889','23487','scope','notice'), ('7890','23488','scope','availability'), ('7891','23488','scope','performance'), ('7892','23489','scope','availability'), ('7893','23489','scope','performance'), ('7894','23490','scope','notice'), ('7895','23491','scope','availability'), ('7896','23491','scope','performance'), ('7897','23492','scope','availability'), ('7898','23492','scope','performance'), ('7899','23493','scope','availability'), ('7900','23493','scope','performance'), ('7901','23494','scope','availability'), ('7902','23494','scope','performance'), ('7903','23495','scope','notice'), ('7904','23496','scope','availability'), ('7905','23496','scope','performance'), ('7906','23497','scope','availability'), ('7907','23497','scope','performance'), ('7908','23498','scope','notice'), ('7909','23499','scope','availability'), ('7910','23499','scope','performance'), ('7911','23500','scope','availability'), ('7912','23500','scope','performance'), ('7913','23501','scope','availability'), ('7914','23501','scope','performance'), ('7915','23502','scope','availability'), ('7916','23502','scope','performance'), ('7917','23503','scope','availability'), ('7918','23503','scope','performance'), ('7919','23504','scope','availability'), ('7920','23504','scope','performance'), ('7921','23505','scope','availability'), ('7922','23505','scope','performance'), ('7923','23506','scope','availability'), ('7924','23506','scope','performance'), ('7925','23507','availability-group','{#GROUP_NAME}'), ('7926','23507','scope','notice'), ('7927','23508','availability-group','{#GROUP_NAME}'), ('7928','23508','scope','notice'), ('7929','23509','availability-group','{#GROUP_NAME}'), ('7930','23509','scope','availability'), ('7931','23510','availability-group','{#GROUP_NAME}'), ('7932','23510','scope','availability'), ('7933','23511','availability-group','{#GROUP_NAME}'), ('7934','23511','local-db','{#DBNAME}'), ('7935','23511','scope','availability'), ('7936','23512','availability-group','{#GROUP_NAME}'), ('7937','23512','local-db','{#DBNAME}'), ('7938','23512','scope','availability'), ('7939','23513','availability-group','{#GROUP_NAME}'), ('7940','23513','local-db','{#DBNAME}'), ('7941','23513','scope','availability'), ('7942','23514','mssql-mirroring','{#DBNAME}'), ('7943','23514','scope','availability'), ('7944','23515','mssql-mirroring','{#DBNAME}'), ('7945','23515','scope','availability'), ('7946','23516','mssql-mirroring','{#DBNAME}'), ('7947','23516','scope','availability'), ('7948','23517','mssql-mirroring','{#DBNAME}'), ('7949','23517','scope','availability'), ('7950','23518','availability-group','{#GROUP_NAME}'), ('7951','23518','non-local-db','{#DBNAME}'), ('7952','23518','scope','capacity'), ('7953','23519','availability-group','{#GROUP_NAME}'), ('7954','23519','non-local-db','{#DBNAME}'), ('7955','23519','scope','capacity'), ('7956','23520','availability-group','{#GROUP_NAME}'), ('7957','23520','replica','{#REPLICA_NAME}'), ('7958','23520','scope','availability'), ('7959','23521','availability-group','{#GROUP_NAME}'), ('7960','23521','replica','{#REPLICA_NAME}'), ('7961','23521','scope','availability'), ('7962','23522','availability-group','{#GROUP_NAME}'), ('7963','23522','replica','{#REPLICA_NAME}'), ('7964','23522','scope','availability'), ('7965','23523','availability-group','{#GROUP_NAME}'), ('7966','23523','replica','{#REPLICA_NAME}'), ('7967','23523','scope','availability'), ('7968','23524','availability-group','{#GROUP_NAME}'), ('7969','23524','replica','{#REPLICA_NAME}'), ('7970','23524','scope','notice'), ('7971','23525','availability-group','{#GROUP_NAME}'), ('7972','23525','replica','{#REPLICA_NAME}'), ('7973','23525','scope','availability'), ('7974','23526','availability-group','{#GROUP_NAME}'), ('7975','23526','replica','{#REPLICA_NAME}'), ('7976','23526','scope','availability'), ('7977','23527','scope','availability'), ('7978','23528','scope','availability'), ('7979','23529','scope','availability'), ('7980','23530','scope','availability'), ('7981','23531','scope','availability'), ('7982','23532','scope','notice'), ('7983','23533','scope','performance'), ('7984','23534','scope','performance'), ('7985','23535','scope','performance'), ('7986','23536','scope','performance'), ('7987','23537','scope','performance'), ('7988','23538','scope','performance'), ('7989','23539','scope','performance'), ('7990','23540','scope','performance'), ('7991','23541','scope','performance'), ('7992','23542','scope','performance'), ('7993','23543','scope','performance'), ('7994','23544','scope','performance'), ('7995','23545','scope','performance'), ('7996','23546','scope','performance'), ('7997','23547','scope','performance'), ('7998','23548','scope','availability'), ('7999','23549','scope','notice'), ('8000','23550','scope','notice'), ('8001','23551','scope','performance'), ('8002','23552','scope','performance'), ('8003','23553','scope','performance'), ('8004','23554','scope','availability'), ('8005','23555','scope','performance'), ('8006','23556','scope','performance'), ('8007','23557','availability-group','{#GROUP_NAME}'), ('8008','23557','scope','notice'), ('8009','23558','availability-group','{#GROUP_NAME}'), ('8010','23558','scope','notice'), ('8011','23559','availability-group','{#GROUP_NAME}'), ('8012','23559','scope','availability'), ('8013','23560','availability-group','{#GROUP_NAME}'), ('8014','23560','scope','availability'), ('8015','23561','database','{#DBNAME}'), ('8016','23561','scope','availability'), ('8017','23562','database','{#DBNAME}'), ('8018','23562','scope','availability'), ('8019','23563','database','{#DBNAME}'), ('8020','23563','scope','availability'), ('8021','23564','database','{#DBNAME}'), ('8022','23564','scope','availability'), ('8023','23565','database','{#DBNAME}'), ('8024','23565','scope','availability'), ('8025','23566','scope','availability'), ('8026','23567','database','{#DBNAME}'), ('8027','23567','scope','performance'), ('8028','23568','database','{#DBNAME}'), ('8029','23568','scope','performance'), ('8030','23569','database','{#DBNAME}'), ('8031','23569','scope','performance'), ('8032','23570','database','{#DBNAME}'), ('8033','23570','scope','availability'), ('8034','23571','mssql-job','{#JOBNAME}'), ('8035','23571','scope','performance'), ('8036','23572','mssql-job','{#JOBNAME}'), ('8037','23572','scope','performance'), ('8038','23573','availability-group','{#GROUP_NAME}'), ('8039','23573','local-db','{#DBNAME}'), ('8040','23573','scope','availability'), ('8041','23574','availability-group','{#GROUP_NAME}'), ('8042','23574','local-db','{#DBNAME}'), ('8043','23574','scope','availability'), ('8044','23575','availability-group','{#GROUP_NAME}'), ('8045','23575','local-db','{#DBNAME}'), ('8046','23575','scope','availability'), ('8047','23576','mssql-mirroring','{#DBNAME}'), ('8048','23576','scope','availability'), ('8049','23577','mssql-mirroring','{#DBNAME}'), ('8050','23577','scope','availability'), ('8051','23578','mssql-mirroring','{#DBNAME}'), ('8052','23578','scope','availability'), ('8053','23579','mssql-mirroring','{#DBNAME}'), ('8054','23579','scope','availability'), ('8055','23580','availability-group','{#GROUP_NAME}'), ('8056','23580','non-local-db','{#DBNAME}'), ('8057','23580','scope','capacity'), ('8058','23581','availability-group','{#GROUP_NAME}'), ('8059','23581','non-local-db','{#DBNAME}'), ('8060','23581','scope','capacity'), ('8061','23582','availability-group','{#GROUP_NAME}'), ('8062','23582','replica','{#REPLICA_NAME}'), ('8063','23582','scope','availability'), ('8064','23583','availability-group','{#GROUP_NAME}'), ('8065','23583','replica','{#REPLICA_NAME}'), ('8066','23583','scope','availability'), ('8067','23584','availability-group','{#GROUP_NAME}'), ('8068','23584','replica','{#REPLICA_NAME}'), ('8069','23584','scope','availability'), ('8070','23585','availability-group','{#GROUP_NAME}'), ('8071','23585','replica','{#REPLICA_NAME}'), ('8072','23585','scope','availability'), ('8073','23586','availability-group','{#GROUP_NAME}'), ('8074','23586','replica','{#REPLICA_NAME}'), ('8075','23586','scope','notice'), ('8076','23587','availability-group','{#GROUP_NAME}'), ('8077','23587','replica','{#REPLICA_NAME}'), ('8078','23587','scope','availability'), ('8079','23588','availability-group','{#GROUP_NAME}'), ('8080','23588','replica','{#REPLICA_NAME}'), ('8081','23588','scope','availability'), ('8082','23589','scope','availability'), ('8083','23590','scope','performance'), ('8084','23591','scope','performance'), ('8085','23592','scope','performance'), ('8086','23593','scope','performance'), ('8087','23594','scope','capacity'), ('8088','23595','scope','capacity'), ('8089','23596','scope','availability'), ('8090','23597','scope','performance'), ('8091','23598','scope','performance'), ('8092','23599','scope','notice'), ('8093','23600','scope','notice'), ('8094','23601','scope','availability'), ('8095','23602','scope','availability'), ('8096','23603','scope','performance'), ('8097','23604','scope','performance'), ('8098','23605','scope','availability'), ('8099','23606','scope','availability'), ('8100','23607','scope','availability'), ('8101','23607','scope','performance'), ('8102','23608','scope','availability'), ('8103','23608','scope','performance'), ('8104','23609','scope','performance'), ('8105','23610','scope','notice'), ('8106','23611','scope','notice'), ('8107','23611','scope','security'), ('8108','23612','scope','notice'), ('8109','23613','scope','capacity'), ('8110','23613','scope','performance'), ('8111','23614','scope','availability'), ('8112','23615','scope','capacity'), ('8113','23615','scope','performance'), ('8114','23616','scope','performance'), ('8115','23617','scope','availability'), ('8116','23618','scope','performance'), ('8117','23619','scope','performance'), ('8118','23620','scope','availability'), ('8119','23620','scope','performance'), ('8120','23621','scope','availability'), ('8121','23622','scope','availability'), ('8122','23622','scope','performance'), ('8123','23623','scope','notice'), ('8124','23624','scope','notice'), ('8125','23625','scope','availability'), ('8126','23625','scope','performance'), ('8127','23626','scope','availability'), ('8128','23626','scope','performance'), ('8129','23627','scope','availability'), ('8130','23627','scope','performance'), ('8131','23628','scope','capacity'), ('8132','23628','scope','performance'), ('8133','23629','scope','capacity'), ('8134','23629','scope','performance'), ('8135','23630','scope','availability'), ('8136','23631','scope','availability'), ('8137','23631','scope','performance'), ('8138','23632','scope','availability'), ('8139','23632','scope','performance'), ('8140','23633','scope','availability'), ('8141','23633','scope','performance'), ('8142','23634','scope','availability'), ('8143','23634','scope','performance'), ('8144','23635','scope','availability'), ('8145','23636','scope','capacity'), ('8146','23637','scope','capacity'), ('8147','23638','scope','availability'), ('8148','23639','scope','availability'), ('8149','23640','scope','notice'), ('8150','23641','scope','notice'), ('8151','23642','scope','availability'), ('8152','23643','scope','capacity'), ('8153','23644','scope','capacity'), ('8154','23645','scope','availability'), ('8155','23646','scope','availability'), ('8156','23647','scope','availability'), ('8157','23648','scope','availability'), ('8158','23649','scope','availability'), ('8159','23650','scope','capacity'), ('8160','23651','scope','capacity'), ('8161','23652','scope','capacity'), ('8162','23653','scope','capacity'), ('8163','23654','scope','notice'), ('8164','23655','scope','availability'), ('8165','23656','scope','availability'), ('8166','23657','scope','notice'), ('8167','23658','scope','availability'), ('8168','23659','scope','availability'), ('8169','23660','scope','capacity'), ('8170','23661','scope','capacity'), ('8171','23662','scope','availability'), ('8172','23663','scope','availability'), ('8173','23664','scope','capacity'), ('8174','23664','scope','performance'), ('8175','23665','scope','performance'), ('8176','23666','scope','availability'), ('8177','23667','scope','availability'), ('8178','23668','scope','availability'), ('8179','23669','scope','notice'), ('8180','23670','scope','notice'), ('8181','23671','scope','performance'), ('8182','23672','scope','capacity'), ('8183','23672','scope','performance'), ('8184','23673','scope','notice'), ('8185','23674','scope','availability'), ('8186','23674','scope','performance'), ('8187','23675','scope','availability'), ('8188','23675','scope','performance'), ('8189','23676','scope','availability'), ('8190','23677','scope','availability'), ('8191','23678','scope','availability'), ('8192','23679','scope','notice'), ('8193','23680','scope','availability'), ('8194','23681','scope','availability'), ('8195','17114','scope','availability'), ('8196','23682','scope','capacity'), ('8197','23682','scope','performance'), ('8198','23683','scope','availability'), ('8199','23683','scope','capacity'), ('8200','17120','scope','availability'), ('8201','23684','scope','capacity'), ('8202','23684','scope','performance'), ('8203','23685','scope','availability'), ('8204','23685','scope','capacity'), ('8205','17123','scope','availability'), ('8206','23686','scope','capacity'), ('8207','23686','scope','performance'), ('8208','23687','scope','availability'), ('8209','23687','scope','capacity'), ('8210','23688','scope','availability'), ('8211','23688','scope','performance'), ('8212','17128','scope','availability'), ('8213','23689','scope','capacity'), ('8214','23689','scope','performance'), ('8215','23690','scope','availability'), ('8216','23690','scope','capacity'), ('8217','17134','scope','availability'), ('8218','23691','scope','capacity'), ('8219','23691','scope','performance'), ('8220','23692','scope','availability'), ('8221','23692','scope','capacity'), ('8222','17139','scope','availability'), ('8223','23693','scope','capacity'), ('8224','23693','scope','performance'), ('8225','23694','scope','availability'), ('8226','23694','scope','capacity'), ('8227','22477','scope','availability'), ('8228','22478','scope','availability'), ('8229','22499','scope','availability'), ('8230','22500','scope','availability'), ('8231','23695','scope','performance'), ('8232','23696','scope','availability'), ('8233','23697','scope','notice'), ('8234','23698','scope','performance'), ('8235','23699','scope','availability'), ('8236','23700','scope','notice'), ('8237','23701','scope','availability'), ('8238','23702','scope','notice'), ('8239','23703','scope','notice'), ('8240','23704','scope','performance'), ('8241','23705','scope','availability'), ('8242','23706','scope','capacity'), ('8243','23707','scope','availability'), ('8244','23708','scope','performance'), ('8245','23709','scope','performance'), ('8246','23710','scope','performance'), ('8247','23711','scope','availability'), ('8248','23712','scope','performance'), ('8249','23713','scope','performance'), ('8250','23714','scope','performance'), ('8251','23715','scope','availability'), ('8252','23716','scope','capacity'), ('8253','23717','scope','capacity'), ('8254','23718','scope','capacity'), ('8255','23719','scope','capacity'), ('8256','23720','scope','capacity'), ('8257','23721','scope','capacity'), ('8258','23722','scope','capacity'), ('8259','23723','scope','capacity'), ('8260','23724','scope','performance'), ('8261','23725','scope','performance'), ('8262','23726','scope','performance'), ('8263','23727','scope','performance'), ('8264','23728','scope','performance'), ('8265','23729','scope','performance'), ('8266','23730','scope','performance'), ('8267','23731','scope','performance'), ('8268','23732','scope','performance'), ('8269','23733','scope','performance'), ('8270','23734','scope','performance'), ('8271','23735','scope','performance'), ('8272','23736','scope','performance'), ('8273','23737','scope','performance'), ('8274','23738','scope','performance'), ('8275','23739','scope','performance'), ('8276','23740','scope','availability'), ('8277','23741','scope','availability'), ('8278','23742','scope','availability'), ('8279','23743','scope','performance'), ('8280','23744','scope','availability'), ('8281','23745','scope','performance'), ('8282','23746','scope','notice'), ('8283','23747','scope','availability'), ('8284','23748','scope','availability'), ('8285','23749','scope','availability'), ('8286','23750','scope','notice'), ('8287','23751','scope','notice'), ('8288','23752','scope','notice'), ('8289','23753','scope','availability'), ('8290','23754','scope','availability'), ('8291','23754','scope','capacity'), ('8292','23755','scope','availability'), ('8293','23755','scope','capacity'), ('8294','23757','scope','availability'), ('8295','23758','scope','performance'), ('8296','23759','scope','availability'), ('8297','23759','scope','performance'), ('8298','23760','scope','availability'), ('8299','23760','scope','performance'), ('8300','23761','scope','availability'), ('8301','23762','scope','availability'), ('8302','23763','scope','availability'), ('8303','23764','scope','availability'), ('8304','23765','scope','availability'), ('8305','23766','scope','availability'), ('8306','23767','scope','health'), ('8307','23768','scope','health'), ('8308','23769','scope','availability'), ('8309','23770','scope','availability'), ('8310','23770','scope','performance'), ('8311','23771','scope','availability'), ('8312','23772','scope','notice'), ('8313','23773','scope','notice'), ('8314','23774','scope','notice'), ('8315','23775','scope','capacity'), ('8316','23776','scope','capacity'), ('8317','23777','scope','availability'), ('8318','23778','scope','availability'), ('8319','23778','scope','performance'), ('8320','23779','scope','notice'), ('8321','23780','scope','availability'), ('8322','23781','scope','notice'), ('8323','23782','scope','notice'), ('8324','23783','scope','availability'), ('8325','23784','scope','availability'), ('8326','23785','scope','availability'), ('8327','23786','scope','availability'), ('8328','23787','scope','notice'), ('8329','23788','scope','notice'), ('8330','23789','scope','availability'), ('8331','23790','scope','availability'), ('8332','23791','scope','availability'), ('8333','23792','scope','notice'), ('8334','23793','scope','availability'), ('8335','23794','scope','availability'), ('8336','23794','scope','performance'), ('8337','23795','scope','availability'), ('8338','23795','scope','performance'), ('8339','23796','scope','notice'), ('8340','23796','scope','security'), ('8341','23797','scope','availability'), ('8342','23798','scope','notice'), ('8343','23799','scope','availability'), ('8344','23800','scope','availability'), ('8345','23801','scope','performance'), ('8346','23802','scope','availability'), ('8347','23803','scope','performance'), ('8348','23804','scope','notice'), ('8349','23805','scope','availability'), ('8350','23806','scope','availability'), ('8351','23807','scope','availability'), ('8352','23808','scope','availability'), ('8353','23808','scope','notice'), ('8354','23809','scope','availability'), ('8355','23810','scope','availability'), ('8356','23811','scope','availability'), ('8357','23811','scope','notice'), ('8358','23812','scope','availability'), ('8359','23813','scope','availability'), ('8360','23814','scope','performance'), ('8361','23815','scope','availability'), ('8362','23816','scope','performance'), ('8363','23817','scope','availability'), ('8364','23818','scope','availability'), ('8365','23819','scope','notice'), ('8366','23820','scope','notice'), ('8367','23821','scope','availability'), ('8368','23822','scope','availability'), ('8369','23823','scope','performance'), ('8370','23824','scope','availability'), ('8371','23825','scope','notice'), ('8372','23826','scope','notice'), ('8373','23827','scope','security'), ('8374','23828','scope','notice'), ('8375','23829','scope','availability'), ('8376','23830','scope','performance'), ('8377','23831','scope','availability'), ('8378','23832','scope','performance'), ('8379','23833','scope','availability'), ('8380','23834','scope','availability'), ('8381','23835','scope','availability'), ('8382','23836','scope','availability'), ('8383','23837','scope','availability'), ('8384','23838','scope','availability'), ('8385','23839','scope','availability'), ('8386','23840','scope','availability'), ('8387','23841','scope','availability'), ('8388','23842','scope','availability'), ('8389','23843','scope','availability'), ('8390','23844','scope','capacity'), ('8391','23845','scope','notice'), ('8392','23846','scope','performance'), ('8393','23847','scope','notice'), ('8394','23848','scope','notice'), ('8395','23849','scope','notice'), ('8396','23850','scope','availability'), ('8397','23851','scope','availability'), ('8398','23852','scope','performance'), ('8399','23853','scope','availability'), ('8400','23854','scope','notice'), ('8401','23855','scope','availability'), ('8402','23856','scope','performance'), ('8403','23857','scope','performance'), ('8404','23858','scope','performance'), ('8405','23859','scope','availability'), ('8406','23860','scope','performance'), ('8407','23861','scope','availability'), ('8408','23862','scope','notice'), ('8409','23863','scope','notice'), ('8410','23864','scope','notice'), ('8411','23865','scope','availability'), ('8412','23866','scope','notice'), ('8413','23867','scope','notice'), ('8414','23868','scope','availability'), ('8415','23869','scope','notice'), ('8416','23870','scope','availability'), ('8417','23871','scope','performance'), ('8418','23872','scope','performance'), ('8419','23873','scope','performance'), ('8420','23874','scope','availability'), ('8421','23875','scope','performance'), ('8422','23876','scope','availability'), ('8423','23877','scope','notice'), ('8424','23878','scope','notice'), ('8425','23879','scope','notice'), ('8426','23880','scope','availability'), ('8427','23881','scope','notice'), ('8428','23882','scope','notice'), ('8429','23883','scope','performance'), ('8430','23884','scope','availability'), ('8431','23885','scope','availability'), ('8432','23886','scope','availability'), ('8433','23887','scope','notice'), ('8434','23888','scope','notice'), ('8435','23889','scope','availability'), ('8436','23890','scope','performance'), ('8437','23891','scope','availability'), ('8438','23892','scope','performance'), ('8439','23893','scope','performance'), ('8440','23894','scope','availability'), ('8441','23895','scope','performance'), ('8442','23896','scope','notice'), ('8443','23897','scope','performance'), ('8444','23898','scope','availability'), ('8445','23898','scope','performance'), ('8446','23899','scope','availability'), ('8447','23900','scope','availability'), ('8448','23900','scope','performance'), ('8449','23901','scope','availability'), ('8450','23902','scope','notice'), ('8451','23903','scope','notice'), ('8452','23904','scope','performance'), ('8453','23905','scope','availability'), ('8454','23906','scope','availability'), ('8455','23907','scope','availability'), ('8456','23908','scope','performance'), ('8457','23909','scope','availability'), ('8458','23910','scope','availability'), ('8459','23910','scope','performance'), ('8460','23911','scope','availability'), ('8461','23911','scope','performance'), ('8462','23912','scope','notice'), ('8463','23913','scope','notice'), ('8464','23913','scope','security'), ('8465','23914','scope','notice'), ('8466','23915','scope','availability'), ('8467','23916','scope','notice'), ('8468','23917','scope','notice'), ('8469','23918','scope','performance'), ('8470','23919','scope','capacity'), ('8471','23919','scope','performance'), ('8472','23920','scope','performance'), ('8473','23921','scope','performance'), ('8474','23922','scope','performance'), ('8475','23923','scope','performance'), ('8476','23924','scope','performance'), ('8477','23925','scope','performance'), ('8478','23926','scope','performance'), ('8479','23927','scope','performance'), ('8480','23928','scope','availability'), ('8481','23928','scope','performance'), ('8482','23929','scope','performance'), ('8483','23930','scope','performance'), ('8484','23931','scope','availability'), ('8485','23931','scope','performance'), ('8486','23932','scope','availability'), ('8487','23933','scope','performance'), ('8488','23934','scope','performance'), ('8489','23935','scope','performance'), ('8490','23936','scope','performance'), ('8491','23937','scope','performance'), ('8492','23938','scope','performance'), ('8493','23939','scope','performance'), ('8494','23940','scope','availability'), ('8495','23940','scope','performance'), ('8496','23941','scope','availability'), ('8497','23941','scope','performance'), ('8498','23942','scope','availability'), ('8499','23942','scope','performance'), ('8500','23943','scope','availability'), ('8501','23943','scope','performance'), ('8502','23944','scope','availability'), ('8503','23945','scope','availability'), ('8504','23946','scope','availability'), ('8505','23947','scope','notice'), ('8506','23948','scope','performance'), ('8507','23949','scope','performance'), ('8508','23950','scope','availability'), ('8509','23951','scope','notice'), ('8510','23952','scope','availability'), ('8511','23953','scope','capacity'), ('8512','23954','scope','capacity'), ('8513','23955','scope','availability'), ('8514','23956','scope','availability'), ('8515','23957','scope','availability'), ('8516','23958','scope','availability'), ('8517','23959','scope','availability'), ('8518','23960','scope','availability'), ('8519','23961','scope','availability'), ('8520','23962','scope','availability'), ('8521','23963','scope','availability'), ('8522','23964','scope','availability'), ('8523','23965','scope','availability'), ('8524','23966','scope','availability'), ('8525','23967','scope','performance'), ('8526','23968','scope','availability'), ('8527','23969','scope','availability'), ('8528','23970','scope','availability'), ('8529','23971','scope','availability'), ('8530','23972','scope','availability'), ('8531','23973','scope','availability'), ('8532','23974','scope','availability'), ('8533','23975','scope','availability'), ('8534','23976','scope','performance'), ('8535','23977','scope','availability'), ('8536','23977','scope','performance'), ('8537','23978','scope','availability'), ('8538','23979','scope','availability'), ('8539','23979','scope','performance'), ('8540','23980','scope','availability'), ('8541','23981','scope','availability'), ('8542','23982','scope','availability'), ('8543','23983','scope','availability'), ('8544','23984','scope','availability'), ('8545','23985','scope','availability'), ('8546','23986','scope','notice'), ('8547','23987','scope','notice'), ('8548','23988','scope','availability'), ('8549','23989','scope','availability'), ('8550','23990','scope','capacity'), ('8551','23991','scope','capacity'), ('8552','23992','scope','capacity'), ('8553','23993','scope','capacity'), ('8554','23994','scope','capacity'), ('8555','23995','scope','capacity'), ('8556','23996','scope','capacity'), ('8557','23997','scope','capacity'), ('8558','23998','scope','availability'), ('8559','23999','scope','availability'), ('8560','24000','scope','availability'), ('8561','24001','scope','availability'), ('8562','24002','scope','availability'), ('8563','24003','scope','availability'), ('8564','24004','scope','availability'), ('8565','24005','scope','availability'), ('8566','24006','scope','availability'), ('8567','24007','scope','availability'), ('8568','24008','scope','availability'), ('8569','24009','scope','notice'), ('8570','24010','scope','availability'), ('8571','24011','scope','availability'), ('8572','24012','scope','availability'), ('8573','24013','scope','availability'), ('8574','24014','scope','availability'), ('8575','24015','scope','availability'), ('8576','24016','scope','availability'), ('8577','24017','scope','availability'), ('8578','24018','scope','availability'), ('8579','24019','scope','availability'), ('8580','24020','scope','availability'), ('8581','24021','scope','notice'), ('8582','24022','scope','notice'), ('8583','24023','scope','availability'), ('8584','24024','scope','notice'), ('8585','24025','scope','availability'), ('8586','24026','scope','availability'), ('8587','24027','scope','availability'), ('8588','24028','scope','notice'), ('8589','24029','scope','availability'), ('8590','24030','scope','notice'), ('8591','24031','scope','availability'), ('8592','24032','scope','availability'), ('8593','24033','scope','availability'), ('8594','24034','scope','availability'), ('8595','24035','scope','availability'), ('8596','24036','scope','availability'), ('8597','24037','scope','availability'), ('8598','24038','scope','availability'), ('8599','24039','scope','availability'), ('8600','24040','scope','availability'), ('8601','24041','scope','availability'), ('8602','24042','scope','availability'), ('8603','24043','scope','availability'), ('8604','24044','scope','notice'), ('8605','24045','scope','availability'), ('8606','24046','scope','availability'), ('8607','24047','scope','availability'), ('8608','24048','scope','availability'), ('8609','24049','scope','availability'), ('8610','24050','scope','availability'), ('8611','24051','scope','availability'), ('8612','24052','scope','notice'), ('8613','24053','scope','availability'), ('8614','24054','scope','availability'), ('8615','24055','scope','availability'), ('8616','24056','scope','availability'), ('8617','24057','scope','notice'), ('8618','24058','scope','notice'), ('8619','24059','scope','availability'), ('8620','24060','scope','availability'), ('8621','24061','scope','capacity'), ('8622','24062','scope','capacity'), ('8623','24063','scope','capacity'), ('8624','24064','scope','capacity'), ('8625','24065','scope','capacity'), ('8626','24066','scope','capacity'), ('8627','24067','scope','capacity'), ('8628','24068','scope','capacity'), ('8629','24069','scope','availability'), ('8630','24070','scope','availability'), ('8631','24071','scope','availability'), ('8632','24072','scope','availability'), ('8633','24073','scope','availability'), ('8634','24074','scope','availability'), ('8635','24075','scope','availability'), ('8636','24076','scope','availability'), ('8637','24077','scope','availability'), ('8638','24078','scope','availability'), ('8639','24079','scope','availability'), ('8640','24080','scope','notice'), ('8641','24081','scope','availability'), ('8642','24082','scope','availability'), ('8643','24083','scope','availability'), ('8644','24084','scope','availability'), ('8645','24085','scope','availability'), ('8646','24086','scope','availability'), ('8647','24087','scope','availability'), ('8648','24088','scope','availability'), ('8649','24089','scope','availability'), ('8650','24090','scope','availability'), ('8651','24091','scope','availability'), ('8652','24092','scope','notice'), ('8653','24093','scope','notice'), ('8654','24094','scope','availability'), ('8655','24095','scope','notice'), ('8656','24096','scope','availability'), ('8657','24097','scope','availability'), ('8658','24098','scope','availability'), ('8659','24099','scope','notice'), ('8660','24100','scope','availability'), ('8661','24101','scope','notice'), ('8662','24102','scope','availability'), ('8663','24103','scope','availability'), ('8664','24104','scope','availability'), ('8665','24105','scope','availability'), ('8666','24106','scope','availability'), ('8667','24107','scope','availability'), ('8668','24108','scope','availability'), ('8669','24109','scope','availability'), ('8670','24110','scope','availability'), ('8671','24111','scope','availability'), ('8672','24112','scope','availability'), ('8673','24113','scope','availability'), ('8674','24114','scope','availability'), ('8675','24115','scope','notice'), ('8676','24116','scope','availability'), ('8677','24117','scope','availability'), ('8678','24118','scope','availability'), ('8679','24119','scope','availability'), ('8680','24120','scope','availability'), ('8681','24121','scope','availability'), ('8682','24122','scope','availability'), ('8683','24123','scope','notice'), ('8684','24124','scope','availability'), ('8685','24125','scope','availability'), ('8686','24126','scope','availability'), ('8687','24127','scope','availability'), ('8688','24128','scope','notice'), ('8689','24129','scope','notice'), ('8690','24130','scope','availability'), ('8691','24131','scope','availability'), ('8692','24132','scope','capacity'), ('8693','24133','scope','capacity'), ('8694','24134','scope','capacity'), ('8695','24135','scope','capacity'), ('8696','24136','scope','capacity'), ('8697','24137','scope','capacity'), ('8698','24138','scope','capacity'), ('8699','24139','scope','capacity'), ('8700','24140','scope','availability'), ('8701','24141','scope','availability'), ('8702','24142','scope','availability'), ('8703','24143','scope','availability'), ('8704','24144','scope','availability'), ('8705','24145','scope','availability'), ('8706','24146','scope','availability'), ('8707','24147','scope','availability'), ('8708','24148','scope','availability'), ('8709','24149','scope','availability'), ('8710','24150','scope','availability'), ('8711','24151','scope','notice'), ('8712','24152','scope','availability'), ('8713','24153','scope','availability'), ('8714','24154','scope','availability'), ('8715','24155','scope','availability'), ('8716','24156','scope','availability'), ('8717','24157','scope','availability'), ('8718','24158','scope','availability'), ('8719','24159','scope','availability'), ('8720','24160','scope','availability'), ('8721','24161','scope','availability'), ('8722','24162','scope','availability'), ('8723','24163','scope','notice'), ('8724','24164','scope','notice'), ('8725','24165','scope','availability'), ('8726','24166','scope','notice'), ('8727','24167','scope','availability'), ('8728','24168','scope','availability'), ('8729','24169','scope','availability'), ('8730','24170','scope','notice'), ('8731','24171','scope','availability'), ('8732','24172','scope','notice'), ('8733','24173','scope','availability'), ('8734','24174','scope','availability'), ('8735','24175','scope','availability'), ('8736','24176','scope','availability'), ('8737','24177','scope','availability'), ('8738','24178','scope','availability'), ('8739','24179','scope','availability'), ('8740','24180','scope','availability'), ('8741','24181','scope','availability'), ('8742','24182','scope','availability'), ('8743','24183','scope','availability'), ('8744','24184','scope','availability'), ('8745','24185','scope','availability'), ('8746','24186','scope','notice'), ('8747','24187','scope','availability'), ('8748','24188','scope','availability'), ('8749','24189','scope','availability'), ('8750','24190','scope','availability'), ('8751','24191','scope','availability'), ('8752','24192','scope','availability'), ('8753','24193','scope','availability'), ('8754','24194','scope','notice'), ('8755','24195','scope','availability'), ('8756','24196','scope','availability'), ('8757','24197','scope','availability'), ('8758','24198','scope','availability'), ('8759','24199','scope','notice'), ('8760','24200','scope','notice'), ('8761','24201','scope','availability'), ('8762','24202','scope','availability'), ('8763','24203','scope','capacity'), ('8764','24204','scope','capacity'), ('8765','24205','scope','capacity'), ('8766','24206','scope','capacity'), ('8767','24207','scope','capacity'), ('8768','24208','scope','capacity'), ('8769','24209','scope','capacity'), ('8770','24210','scope','capacity'), ('8771','24211','scope','availability'), ('8772','24212','scope','availability'), ('8773','24213','scope','availability'), ('8774','24214','scope','availability'), ('8775','24215','scope','availability'), ('8776','24216','scope','availability'), ('8777','24217','scope','availability'), ('8778','24218','scope','availability'), ('8779','24219','scope','availability'), ('8780','24220','scope','availability'), ('8781','24221','scope','availability'), ('8782','24222','scope','notice'), ('8783','24223','scope','availability'), ('8784','24224','scope','availability'), ('8785','24225','scope','availability'), ('8786','24226','scope','availability'), ('8787','24227','scope','availability'), ('8788','24228','scope','availability'), ('8789','24229','scope','availability'), ('8790','24230','scope','availability'), ('8791','24231','scope','availability'), ('8792','24232','scope','availability'), ('8793','24233','scope','availability'), ('8794','24234','scope','notice'), ('8795','24235','scope','notice'), ('8796','24236','scope','availability'), ('8797','24237','scope','notice'), ('8798','24238','scope','availability'), ('8799','24239','scope','availability'), ('8800','24240','scope','availability'), ('8801','24241','scope','notice'), ('8802','24242','scope','availability'), ('8803','24243','scope','notice'), ('8804','24244','scope','availability'), ('8805','24245','scope','availability'), ('8806','24246','scope','availability'), ('8807','24247','scope','availability'), ('8808','24248','scope','availability'), ('8809','24249','scope','availability'), ('8810','24250','scope','availability'), ('8811','24251','scope','availability'), ('8812','24252','scope','availability'), ('8813','24253','scope','availability'), ('8814','24254','scope','availability'), ('8815','24255','scope','availability'), ('8816','24256','scope','availability'), ('8817','24257','scope','notice'), ('8818','24258','scope','availability'), ('8819','24259','scope','availability'), ('8820','24260','scope','availability'), ('8821','24261','scope','availability'), ('8822','24262','scope','availability'), ('8823','24263','scope','availability'), ('8824','24264','scope','availability'), ('8825','24265','scope','notice'), ('8826','24266','scope','availability'), ('8827','24267','scope','availability'), ('8828','24268','scope','availability'), ('8829','24269','scope','availability'), ('8830','24270','scope','notice'), ('8831','24271','scope','notice'), ('8832','24272','scope','availability'), ('8833','24273','scope','availability'), ('8834','24274','scope','capacity'), ('8835','24275','scope','capacity'), ('8836','24276','scope','capacity'), ('8837','24277','scope','capacity'), ('8838','24278','scope','capacity'), ('8839','24279','scope','capacity'), ('8840','24280','scope','capacity'), ('8841','24281','scope','capacity'), ('8842','24282','scope','availability'), ('8843','24283','scope','availability'), ('8844','24284','scope','availability'), ('8845','24285','scope','availability'), ('8846','24286','scope','availability'), ('8847','24287','scope','availability'), ('8848','24288','scope','availability'), ('8849','24289','scope','availability'), ('8850','24290','scope','availability'), ('8851','24291','scope','availability'), ('8852','24292','scope','availability'), ('8853','24293','scope','notice'), ('8854','24294','scope','availability'), ('8855','24295','scope','availability'), ('8856','24296','scope','availability'), ('8857','24297','scope','availability'), ('8858','24298','scope','availability'), ('8859','24299','scope','availability'), ('8860','24300','scope','availability'), ('8861','24301','scope','availability'), ('8862','24302','scope','availability'), ('8863','24303','scope','availability'), ('8864','24304','scope','availability'), ('8865','24305','scope','notice'), ('8866','24306','scope','notice'), ('8867','24307','scope','availability'), ('8868','24308','scope','notice'), ('8869','24309','scope','availability'), ('8870','24310','scope','availability'), ('8871','24311','scope','availability'), ('8872','24312','scope','notice'), ('8873','24313','scope','availability'), ('8874','24314','scope','notice'), ('8875','24315','scope','availability'), ('8876','24316','scope','availability'), ('8877','24317','scope','availability'), ('8878','24318','scope','availability'), ('8879','24319','scope','availability'), ('8880','24320','scope','availability'), ('8881','24321','scope','availability'), ('8882','24322','scope','availability'), ('8883','24323','scope','availability'), ('8884','24324','scope','availability'), ('8885','24325','scope','availability'), ('8886','24326','scope','availability'), ('8887','24327','scope','availability'), ('8888','24328','scope','notice'), ('8889','24329','scope','availability'), ('8890','24330','scope','availability'), ('8891','24331','scope','availability'), ('8892','24332','scope','availability'), ('8893','24333','scope','availability'), ('8894','24334','scope','availability'), ('8895','24335','scope','availability'), ('8896','24336','scope','notice'), ('8897','24337','scope','availability'), ('8898','24338','scope','availability'), ('8899','24339','scope','availability'), ('8900','24340','scope','availability'), ('8901','24341','scope','notice'), ('8902','24342','scope','notice'), ('8903','24343','scope','availability'), ('8904','24344','scope','availability'), ('8905','24345','scope','capacity'), ('8906','24346','scope','capacity'), ('8907','24347','scope','capacity'), ('8908','24348','scope','capacity'), ('8909','24349','scope','capacity'), ('8910','24350','scope','capacity'), ('8911','24351','scope','capacity'), ('8912','24352','scope','capacity'), ('8913','24353','scope','availability'), ('8914','24354','scope','availability'), ('8915','24355','scope','availability'), ('8916','24356','scope','availability'), ('8917','24357','scope','availability'), ('8918','24358','scope','availability'), ('8919','24359','scope','availability'), ('8920','24360','scope','availability'), ('8921','24361','scope','availability'), ('8922','24362','scope','availability'), ('8923','24363','scope','availability'), ('8924','24364','scope','notice'), ('8925','24365','scope','availability'), ('8926','24366','scope','availability'), ('8927','24367','scope','availability'), ('8928','24368','scope','availability'), ('8929','24369','scope','availability'), ('8930','24370','scope','availability'), ('8931','24371','scope','availability'), ('8932','24372','scope','availability'), ('8933','24373','scope','availability'), ('8934','24374','scope','availability'), ('8935','24375','scope','availability'), ('8936','24376','scope','notice'), ('8937','24377','scope','notice'), ('8938','24378','scope','availability'), ('8939','24379','scope','notice'), ('8940','24380','scope','availability'), ('8941','24381','scope','availability'), ('8942','24382','scope','availability'), ('8943','24383','scope','notice'), ('8944','24384','scope','availability'), ('8945','24385','scope','notice'), ('8946','24386','scope','availability'), ('8947','24387','scope','availability'), ('8948','24388','scope','availability'), ('8949','24389','scope','availability'), ('8950','24390','scope','availability'), ('8951','24391','scope','availability'), ('8952','24392','scope','availability'), ('8953','24393','scope','availability'), ('8954','24394','scope','availability'), ('8955','24395','scope','availability'), ('8956','24396','scope','availability'), ('8957','24397','scope','availability'), ('8958','24398','scope','availability'), ('8959','24399','scope','notice'), ('8960','24400','scope','availability'), ('8961','24401','scope','availability'), ('8962','24402','scope','availability'), ('8963','24403','scope','availability'), ('8964','24404','scope','availability'), ('8965','24405','scope','availability'), ('8966','24406','scope','availability'), ('8967','24407','scope','notice'), ('8968','24408','scope','availability'), ('8969','24409','scope','availability'), ('8970','24410','scope','availability'), ('8971','24411','scope','availability'), ('8972','24412','scope','notice'), ('8973','24413','scope','notice'), ('8974','24414','scope','availability'), ('8975','24415','scope','notice'), ('8976','24416','scope','availability'), ('8977','24417','scope','availability'), ('8978','24418','scope','availability'), ('8979','24419','scope','notice'), ('8980','24420','scope','availability'), ('8981','24421','scope','notice'), ('8982','24422','scope','availability'), ('8983','24423','scope','availability'), ('8984','24424','scope','availability'), ('8985','24425','scope','availability'), ('8986','24426','scope','availability'), ('8987','24427','scope','availability'), ('8988','24428','scope','availability'), ('8989','24429','scope','availability'), ('8990','24430','scope','availability'), ('8991','24431','scope','availability'), ('8992','24432','scope','availability'), ('8993','24433','scope','availability'), ('8994','24434','scope','availability'), ('8995','24435','scope','notice'), ('8996','24436','scope','availability'), ('8997','24437','scope','availability'), ('8998','24438','scope','availability'), ('8999','24439','scope','availability'), ('9000','24440','scope','availability'), ('9001','24441','scope','availability'), ('9002','24442','scope','availability'), ('9003','24443','scope','notice'), ('9004','24444','scope','availability'), ('9005','24445','scope','availability'), ('9006','24446','scope','availability'), ('9007','24447','scope','availability'), ('9008','24448','scope','notice'), ('9009','24449','scope','notice'), ('9010','24450','scope','performance'), ('9011','24451','scope','performance'), ('9012','24452','scope','performance'), ('9013','24453','scope','performance'), ('9014','24454','scope','performance'), ('9015','24455','scope','performance'), ('9016','24456','scope','performance'), ('9017','24457','scope','performance'), ('9018','24458','scope','performance'), ('9019','24459','scope','performance'), ('9020','24460','scope','performance'), ('9021','24461','scope','performance'), ('9022','24462','scope','performance'), ('9023','24463','scope','performance'), ('9024','24464','scope','performance'), ('9025','24465','scope','performance'), ('9026','24466','scope','performance'), ('9027','24467','scope','performance'), ('9028','24468','scope','performance'), ('9029','24469','scope','performance'), ('9030','24470','scope','performance'), ('9031','24471','scope','performance'), ('9032','24472','scope','performance'), ('9033','24473','scope','performance'), ('9034','24474','scope','performance'), ('9035','24475','scope','performance'), ('9036','24476','scope','performance'), ('9037','24477','scope','capacity'), ('9038','24477','scope','performance'), ('9039','24478','scope','notice'), ('9040','24479','scope','capacity'), ('9041','24479','scope','performance'), ('9042','24480','scope','availability'), ('9043','24481','scope','notice'), ('9044','24482','scope','notice'), ('9045','24483','scope','capacity'), ('9046','24483','scope','performance'), ('9047','24484','scope','capacity'), ('9048','24484','scope','performance'), ('9049','24485','scope','capacity'), ('9050','24485','scope','performance'), ('9051','24486','scope','performance'), ('9052','24487','scope','performance'), ('9053','24488','scope','performance'), ('9054','24489','scope','performance'), ('9055','24490','scope','performance'), ('9056','24491','scope','performance'), ('9057','24492','scope','performance'), ('9058','24493','scope','performance'), ('9059','24494','scope','performance'), ('9060','24495','scope','performance'), ('9061','24496','scope','performance'), ('9062','24497','scope','performance'), ('9063','24498','scope','performance'), ('9064','24499','scope','performance'), ('9065','24500','scope','performance'), ('9066','24501','scope','performance'), ('9067','24502','scope','performance'), ('9068','24503','scope','performance'), ('9069','24504','scope','performance'), ('9070','24505','scope','performance'), ('9071','24506','scope','performance'), ('9072','24507','scope','performance'), ('9073','24508','scope','performance'), ('9074','24509','scope','performance'), ('9075','24510','scope','performance'), ('9076','24511','scope','performance'), ('9077','24512','scope','performance'), ('9078','24513','scope','performance'), ('9079','24514','scope','capacity'), ('9080','24514','scope','performance'), ('9081','24515','scope','notice'), ('9082','24516','scope','capacity'), ('9083','24516','scope','performance'), ('9084','24517','scope','availability'), ('9085','24518','scope','notice'), ('9086','24519','scope','notice'), ('9087','24520','scope','capacity'), ('9088','24520','scope','performance'), ('9089','24521','scope','capacity'), ('9090','24521','scope','performance'), ('9091','24522','scope','capacity'), ('9092','24522','scope','performance'), ('9093','24523','scope','performance'), ('9094','24524','scope','notice'), ('9095','24525','scope','notice'), ('9096','24526','scope','performance'), ('9097','24527','scope','performance'), ('9098','24528','scope','performance'), ('9099','24529','scope','performance'), ('9100','24530','scope','performance'), ('9101','24531','scope','performance'), ('9102','24532','scope','performance'), ('9103','24533','scope','performance'), ('9104','24534','scope','performance'), ('9105','24535','scope','performance'), ('9106','24536','scope','performance'), ('9107','24537','scope','performance'), ('9108','24538','scope','performance'), ('9109','24539','scope','performance'), ('9110','24540','scope','performance'), ('9111','24541','scope','performance'), ('9112','24542','scope','performance'), ('9113','24543','scope','performance'), ('9114','24544','scope','performance'), ('9115','24545','scope','performance'), ('9116','24546','scope','performance'), ('9117','24547','scope','performance'), ('9118','24548','scope','performance'), ('9119','24549','scope','performance'), ('9120','24550','scope','performance'), ('9121','24551','scope','performance'), ('9122','24552','scope','performance'), ('9123','24553','scope','performance'), ('9124','24554','scope','performance'), ('9125','24555','scope','performance'), ('9126','24556','scope','performance'), ('9127','24557','scope','performance'), ('9128','24558','scope','performance'), ('9129','24559','scope','performance'), ('9130','24560','scope','performance'), ('9131','24561','scope','performance'), ('9132','24562','scope','performance'), ('9133','24563','scope','performance'), ('9134','24564','scope','performance'), ('9135','24565','scope','performance'), ('9136','24566','scope','performance'), ('9137','24567','scope','performance'), ('9138','24568','scope','performance'), ('9139','24569','scope','capacity'), ('9140','24569','scope','performance'), ('9141','24570','scope','availability'), ('9142','24571','scope','notice'), ('9143','24572','scope','capacity'), ('9144','24572','scope','performance'), ('9145','24573','scope','capacity'), ('9146','24573','scope','performance'), ('9147','24574','scope','notice'), ('9148','24575','scope','capacity'), ('9149','24575','scope','performance'), ('9150','24576','scope','capacity'), ('9151','24576','scope','performance'), ('9152','24577','scope','capacity'), ('9153','24577','scope','performance'), ('9154','24578','scope','capacity'), ('9155','24578','scope','performance'), ('9156','24579','scope','performance'), ('9157','24580','scope','performance'), ('9158','24581','scope','performance'), ('9159','24582','scope','performance'), ('9160','24583','scope','performance'), ('9161','24584','scope','performance'), ('9162','24585','scope','performance'), ('9163','24586','scope','performance'), ('9164','24587','scope','performance'), ('9165','24588','scope','performance'), ('9166','24589','scope','performance'), ('9167','24590','scope','performance'), ('9168','24591','scope','performance'), ('9169','24592','scope','performance'), ('9170','24593','scope','performance'), ('9171','24594','scope','performance'), ('9172','24595','scope','performance'), ('9173','24596','scope','performance'), ('9174','24597','scope','performance'), ('9175','24598','scope','performance'), ('9176','24599','scope','performance'), ('9177','24600','scope','performance'), ('9178','24601','scope','performance'), ('9179','24602','scope','performance'), ('9180','24603','scope','performance'), ('9181','24604','scope','performance'), ('9182','24605','scope','performance'), ('9183','24606','scope','performance'), ('9184','24607','scope','performance'), ('9185','24608','scope','performance'), ('9186','24609','scope','performance'), ('9187','24610','scope','performance'), ('9188','24611','scope','performance'), ('9189','24612','scope','performance'), ('9190','24613','scope','performance'), ('9191','24614','scope','performance'), ('9192','24615','scope','performance'), ('9193','24616','scope','performance'), ('9194','24617','scope','performance'), ('9195','24618','scope','performance'), ('9196','24619','scope','performance'), ('9197','24620','scope','performance'), ('9198','24621','scope','performance'), ('9199','24622','scope','performance'), ('9200','24623','scope','capacity'), ('9201','24623','scope','performance'), ('9202','24624','scope','availability'), ('9203','24625','scope','notice'), ('9204','24626','scope','capacity'), ('9205','24626','scope','performance'), ('9206','24627','scope','capacity'), ('9207','24627','scope','performance'), ('9208','24628','scope','notice'), ('9209','24629','scope','capacity'), ('9210','24629','scope','performance'), ('9211','24630','scope','capacity'), ('9212','24630','scope','performance'), ('9213','24631','scope','capacity'), ('9214','24631','scope','performance'), ('9215','24632','scope','capacity'), ('9216','24632','scope','performance'), ('9217','24633','scope','performance'), ('9218','24634','scope','notice'), ('9219','24635','scope','availability'), ('9220','24636','scope','availability'), ('9221','24637','scope','availability'), ('9222','24638','scope','availability'), ('9223','24639','scope','availability'), ('9224','24640','scope','availability'), ('9225','24641','scope','availability'), ('9226','24642','scope','availability'), ('9227','24643','scope','availability'), ('9228','24644','scope','availability'), ('9229','24645','scope','availability'), ('9230','24646','scope','availability'), ('9231','24647','scope','availability'), ('9232','24648','scope','availability'), ('9233','24649','scope','availability'), ('9234','24650','scope','performance'), ('9235','24651','scope','availability'), ('9236','24652','scope','performance'), ('9237','24653','scope','capacity'), ('9238','24654','scope','capacity'), ('9239','24655','scope','availability'), ('9240','24655','scope','performance'), ('9241','24656','scope','availability'), ('9242','24656','scope','performance'), ('9243','24657','scope','availability'), ('9244','24657','scope','performance'), ('9245','24658','scope','availability'), ('9246','24658','scope','performance'), ('9247','24659','scope','availability'), ('9248','24659','scope','performance'), ('9249','24660','scope','availability'), ('9250','24660','scope','performance'), ('9251','24661','scope','availability'), ('9252','24661','scope','performance'), ('9253','24662','scope','availability'), ('9254','24662','scope','performance'), ('9255','24663','scope','availability'), ('9256','24663','scope','performance'), ('9257','24664','scope','availability'), ('9258','24664','scope','performance'), ('9259','24665','scope','availability'), ('9260','24665','scope','performance'), ('9261','24666','scope','availability'), ('9262','24666','scope','performance'), ('9263','24667','scope','availability'), ('9264','24667','scope','performance'), ('9265','24668','scope','availability'), ('9266','24668','scope','performance'), ('9267','24669','scope','availability'), ('9268','24669','scope','performance'), ('9269','24670','scope','availability'), ('9270','24670','scope','performance'), ('9271','24671','scope','availability'), ('9272','24671','scope','performance'), ('9273','24672','scope','availability'), ('9274','24672','scope','performance'), ('9275','24673','scope','availability'), ('9276','24673','scope','performance'), ('9277','24674','scope','availability'), ('9278','24674','scope','performance'), ('9279','24675','scope','availability'), ('9280','24675','scope','performance'), ('9281','24676','scope','availability'), ('9282','24676','scope','performance'), ('9283','24677','scope','availability'), ('9284','24677','scope','performance'), ('9285','24678','scope','availability'), ('9286','24678','scope','performance'), ('9287','24679','scope','availability'), ('9288','24679','scope','performance'), ('9289','24680','scope','availability'), ('9290','24680','scope','performance'), ('9291','24681','scope','availability'), ('9292','24681','scope','performance'), ('9293','24682','scope','availability'), ('9294','24682','scope','performance'), ('9295','24683','scope','availability'), ('9296','24683','scope','performance'), ('9297','24684','scope','availability'), ('9298','24684','scope','performance'), ('9299','24685','scope','availability'), ('9300','24685','scope','performance'), ('9301','24686','scope','availability'), ('9302','24686','scope','performance'), ('9303','24687','scope','availability'), ('9304','24687','scope','performance'), ('9305','24688','scope','availability'), ('9306','24688','scope','performance'), ('9307','24689','scope','availability'), ('9308','24689','scope','performance'), ('9309','24690','scope','availability'), ('9310','24690','scope','performance'), ('9311','24691','scope','availability'), ('9312','24691','scope','performance'), ('9313','24692','scope','availability'), ('9314','24692','scope','performance'), ('9315','24693','scope','availability'), ('9316','24693','scope','performance'), ('9317','24694','scope','availability'), ('9318','24694','scope','performance'), ('9319','24695','scope','availability'), ('9320','24695','scope','performance'), ('9321','24696','scope','availability'), ('9322','24696','scope','performance'), ('9323','24697','scope','availability'), ('9324','24697','scope','performance'), ('9325','24698','scope','availability'), ('9326','24698','scope','performance'), ('9327','24699','scope','availability'), ('9328','24699','scope','performance'), ('9329','24700','scope','availability'), ('9330','24700','scope','performance'), ('9331','24701','scope','availability'), ('9332','24701','scope','performance'), ('9333','24702','scope','availability'), ('9334','24702','scope','performance'), ('9335','24703','scope','availability'), ('9336','24703','scope','performance'), ('9337','24704','scope','availability'), ('9338','24704','scope','performance'), ('9339','24705','scope','availability'), ('9340','24705','scope','performance'), ('9341','24706','scope','availability'), ('9342','24706','scope','performance'), ('9343','24707','scope','availability'), ('9344','24707','scope','performance'), ('9345','24708','scope','availability'), ('9346','24708','scope','performance'), ('9347','24709','scope','availability'), ('9348','24709','scope','performance'), ('9349','24710','scope','availability'), ('9350','24710','scope','performance'), ('9351','24711','scope','availability'), ('9352','24711','scope','performance'), ('9353','24712','scope','availability'), ('9354','24712','scope','performance'), ('9355','24713','scope','availability'), ('9356','24713','scope','performance'), ('9357','24714','scope','availability'), ('9358','24714','scope','performance'), ('9359','24715','scope','availability'), ('9360','24715','scope','performance'), ('9361','24716','scope','availability'), ('9362','24716','scope','performance'), ('9363','24717','scope','availability'), ('9364','24717','scope','performance'), ('9365','24718','scope','availability'), ('9366','24718','scope','performance'), ('9367','24719','scope','availability'), ('9368','24719','scope','performance'), ('9369','24720','scope','availability'), ('9370','24720','scope','performance'), ('9371','24721','scope','availability'), ('9372','24721','scope','performance'), ('9373','24722','scope','availability'), ('9374','24722','scope','performance'), ('9375','24723','scope','availability'), ('9376','24723','scope','performance'), ('9377','24724','scope','availability'), ('9378','24724','scope','performance'), ('9379','24725','scope','availability'), ('9380','24725','scope','performance'), ('9381','24726','scope','availability'), ('9382','24726','scope','performance'), ('9383','24727','scope','availability'), ('9384','24727','scope','performance'), ('9385','24728','scope','availability'), ('9386','24728','scope','performance'), ('9387','24729','scope','availability'), ('9388','24729','scope','performance'), ('9389','24730','scope','availability'), ('9390','24730','scope','performance'), ('9391','24731','scope','availability'), ('9392','24731','scope','performance'), ('9393','24732','scope','availability'), ('9394','24732','scope','performance'), ('9395','24733','scope','availability'), ('9396','24733','scope','performance'), ('9397','24734','scope','availability'), ('9398','24734','scope','performance'), ('9399','24735','scope','availability'), ('9400','24735','scope','performance'), ('9401','24736','scope','availability'), ('9402','24736','scope','performance'), ('9403','24737','scope','availability'), ('9404','24737','scope','performance'), ('9405','24738','scope','availability'), ('9406','24738','scope','performance'), ('9407','24739','scope','availability'), ('9408','24739','scope','performance'), ('9409','24740','scope','availability'), ('9410','24740','scope','performance'), ('9411','24741','scope','availability'), ('9412','24741','scope','performance'), ('9413','24742','scope','availability'), ('9414','24742','scope','performance'), ('9415','24743','scope','availability'), ('9416','24743','scope','performance'), ('9417','24744','scope','availability'), ('9418','24744','scope','performance'), ('9419','24745','scope','availability'), ('9420','24745','scope','performance'), ('9421','24746','scope','availability'), ('9422','24746','scope','performance'), ('9423','24747','scope','availability'), ('9424','24747','scope','performance'), ('9425','24748','scope','availability'), ('9426','24748','scope','performance'), ('9427','24749','scope','availability'), ('9428','24749','scope','performance'), ('9429','24750','scope','availability'), ('9430','24750','scope','performance'), ('9431','24751','scope','availability'), ('9432','24751','scope','performance'), ('9433','24752','scope','availability'), ('9434','24752','scope','performance'), ('9435','24753','scope','availability'), ('9436','24753','scope','performance'), ('9437','24754','scope','availability'), ('9438','24754','scope','performance'), ('9439','24755','scope','availability'), ('9440','24755','scope','performance'), ('9441','24756','scope','availability'), ('9442','24756','scope','performance'), ('9443','24757','scope','availability'), ('9444','24757','scope','performance'), ('9445','24758','scope','availability'), ('9446','24758','scope','performance'), ('9447','24759','scope','availability'), ('9448','24759','scope','performance'), ('9449','24760','scope','availability'), ('9450','24760','scope','performance'), ('9451','24761','scope','availability'), ('9452','24761','scope','performance'), ('9453','24762','scope','availability'), ('9454','24762','scope','performance'), ('9455','24763','scope','availability'), ('9456','24763','scope','performance'), ('9457','24764','scope','availability'), ('9458','24764','scope','performance'), ('9459','24765','scope','availability'), ('9460','24765','scope','performance'), ('9461','24766','scope','availability'), ('9462','24766','scope','performance'), ('9463','24767','scope','availability'), ('9464','24767','scope','performance'), ('9465','24768','scope','availability'), ('9466','24768','scope','performance'), ('9467','24769','scope','availability'), ('9468','24769','scope','performance'), ('9469','24770','scope','availability'), ('9470','24770','scope','performance'), ('9471','24771','scope','availability'), ('9472','24771','scope','performance'), ('9473','24772','scope','availability'), ('9474','24772','scope','performance'), ('9475','24773','scope','availability'), ('9476','24773','scope','performance'), ('9477','24774','scope','availability'), ('9478','24774','scope','performance'), ('9479','24775','scope','availability'), ('9480','24775','scope','performance'), ('9481','24776','scope','availability'), ('9482','24776','scope','performance'), ('9483','24777','scope','availability'), ('9484','24777','scope','performance'), ('9485','24778','scope','availability'), ('9486','24778','scope','performance'), ('9487','24779','scope','availability'), ('9488','24779','scope','performance'), ('9489','24780','scope','availability'), ('9490','24780','scope','performance'), ('9491','24781','scope','availability'), ('9492','24781','scope','performance'), ('9493','24782','scope','availability'), ('9494','24782','scope','performance'), ('9495','24783','scope','availability'), ('9496','24783','scope','performance'), ('9497','24784','scope','availability'), ('9498','24784','scope','performance'), ('9499','24785','scope','availability'), ('9500','24785','scope','performance'), ('9501','24786','scope','availability'), ('9502','24786','scope','performance'), ('9503','24787','scope','availability'), ('9504','24787','scope','performance'), ('9505','24788','scope','availability'), ('9506','24788','scope','performance'), ('9507','24789','scope','availability'), ('9508','24789','scope','performance'), ('9509','24790','scope','availability'), ('9510','24790','scope','performance'), ('9511','24791','scope','availability'), ('9512','24791','scope','performance'), ('9513','24792','scope','availability'), ('9514','24792','scope','performance'), ('9515','24793','scope','availability'), ('9516','24793','scope','performance'), ('9517','24794','scope','availability'), ('9518','24794','scope','performance'), ('9519','24795','scope','availability'), ('9520','24795','scope','performance'), ('9521','24796','scope','availability'), ('9522','24796','scope','performance'), ('9523','24797','scope','availability'), ('9524','24797','scope','performance'), ('9525','24798','scope','availability'), ('9526','24798','scope','performance'), ('9527','24799','scope','availability'), ('9528','24799','scope','performance'), ('9529','24800','scope','availability'), ('9530','24800','scope','performance'), ('9531','24801','scope','availability'), ('9532','24801','scope','performance'), ('9533','24802','scope','availability'), ('9534','24802','scope','performance'), ('9535','24803','scope','availability'), ('9536','24803','scope','performance'), ('9537','24804','scope','availability'), ('9538','24804','scope','performance'), ('9539','24805','scope','availability'), ('9540','24805','scope','performance'), ('9541','24806','scope','availability'), ('9542','24806','scope','performance'), ('9543','24807','scope','availability'), ('9544','24807','scope','performance'), ('9545','24808','scope','availability'), ('9546','24808','scope','performance'), ('9547','24809','scope','availability'), ('9548','24809','scope','performance'), ('9549','24810','scope','availability'), ('9550','24810','scope','performance'), ('9551','24811','scope','availability'), ('9552','24811','scope','performance'), ('9553','24812','scope','availability'), ('9554','24812','scope','performance'), ('9555','24813','scope','availability'), ('9556','24813','scope','performance'), ('9557','24814','scope','availability'), ('9558','24814','scope','performance'), ('9559','24815','scope','availability'), ('9560','24815','scope','performance'), ('9561','24816','scope','availability'), ('9562','24816','scope','performance'), ('9563','24817','scope','availability'), ('9564','24817','scope','performance'), ('9565','24818','scope','availability'), ('9566','24818','scope','performance'), ('9567','24819','scope','availability'), ('9568','24819','scope','performance'), ('9569','24820','scope','availability'), ('9570','24820','scope','performance'), ('9571','24821','scope','availability'), ('9572','24821','scope','performance'), ('9573','24822','scope','availability'), ('9574','24822','scope','performance'), ('9575','24823','scope','availability'), ('9576','24823','scope','performance'), ('9577','24824','scope','availability'), ('9578','24824','scope','performance'), ('9579','24825','scope','availability'), ('9580','24825','scope','performance'), ('9581','24826','scope','availability'), ('9582','24826','scope','performance'), ('9583','24827','scope','availability'), ('9584','24827','scope','performance'), ('9585','24828','scope','availability'), ('9586','24828','scope','performance'), ('9587','24829','scope','availability'), ('9588','24829','scope','performance'), ('9589','24830','scope','availability'), ('9590','24830','scope','performance'), ('9591','24831','scope','availability'), ('9592','24831','scope','performance'), ('9593','24832','scope','availability'), ('9594','24832','scope','performance'), ('9595','24833','scope','availability'), ('9596','24833','scope','performance'), ('9597','24834','scope','availability'), ('9598','24834','scope','performance'), ('9599','24835','scope','availability'), ('9600','24835','scope','performance'), ('9601','24836','scope','availability'), ('9602','24836','scope','performance'), ('9603','24837','scope','availability'), ('9604','24837','scope','performance'), ('9605','24838','scope','availability'), ('9606','24838','scope','performance'), ('9607','24839','scope','availability'), ('9608','24839','scope','performance'), ('9609','24840','scope','availability'), ('9610','24840','scope','performance'), ('9611','24841','scope','availability'), ('9612','24841','scope','performance'), ('9613','24842','scope','availability'), ('9614','24842','scope','performance'), ('9615','24843','scope','availability'), ('9616','24843','scope','performance'), ('9617','24844','scope','availability'), ('9618','24844','scope','performance'), ('9619','24845','scope','availability'), ('9620','24845','scope','performance'), ('9621','24846','scope','availability'), ('9622','24846','scope','performance'), ('9623','24847','scope','availability'), ('9624','24847','scope','performance'), ('9625','24848','scope','availability'), ('9626','24848','scope','performance'), ('9627','24849','scope','availability'), ('9628','24849','scope','performance'), ('9629','24850','scope','availability'), ('9630','24850','scope','performance'), ('9631','24851','scope','availability'), ('9632','24851','scope','performance'), ('9633','24852','scope','availability'), ('9634','24852','scope','performance'), ('9635','24853','scope','availability'), ('9636','24853','scope','performance'), ('9637','24854','scope','availability'), ('9638','24854','scope','performance'), ('9639','24855','scope','availability'), ('9640','24855','scope','performance'), ('9641','24856','scope','availability'), ('9642','24856','scope','performance'), ('9643','24857','scope','availability'), ('9644','24857','scope','performance'), ('9645','24858','scope','availability'), ('9646','24858','scope','performance'), ('9647','24859','scope','availability'), ('9648','24859','scope','performance'), ('9649','24860','scope','availability'), ('9650','24860','scope','performance'), ('9651','24861','scope','availability'), ('9652','24861','scope','performance'), ('9653','24862','scope','availability'), ('9654','24862','scope','performance'), ('9655','24863','scope','availability'), ('9656','24863','scope','performance'), ('9657','24864','scope','availability'), ('9658','24864','scope','performance'), ('9659','24865','scope','availability'), ('9660','24865','scope','performance'), ('9661','24866','scope','availability'), ('9662','24866','scope','performance'), ('9663','24867','scope','availability'), ('9664','24867','scope','performance'), ('9665','24868','scope','availability'), ('9666','24868','scope','performance'), ('9667','24869','scope','availability'), ('9668','24869','scope','performance'), ('9669','24870','scope','availability'), ('9670','24870','scope','performance'), ('9671','24871','scope','availability'), ('9672','24871','scope','performance'), ('9673','24872','scope','availability'), ('9674','24872','scope','performance'), ('9675','24873','scope','availability'), ('9676','24873','scope','performance'), ('9677','24874','scope','availability'), ('9678','24874','scope','performance'), ('9679','24875','scope','availability'), ('9680','24875','scope','performance'), ('9681','24876','scope','availability'), ('9682','24876','scope','performance'), ('9683','24877','scope','availability'), ('9684','24877','scope','performance'), ('9685','24878','scope','availability'), ('9686','24878','scope','performance'), ('9687','24879','scope','availability'), ('9688','24879','scope','performance'), ('9689','24880','scope','availability'), ('9690','24880','scope','performance'), ('9691','24881','scope','availability'), ('9692','24881','scope','performance'), ('9693','24882','scope','availability'), ('9694','24882','scope','performance'), ('9695','24883','scope','availability'), ('9696','24883','scope','performance'), ('9697','24884','scope','availability'), ('9698','24884','scope','performance'), ('9699','24885','scope','availability'), ('9700','24885','scope','performance'), ('9701','24886','scope','availability'), ('9702','24886','scope','performance'), ('9703','24887','scope','availability'), ('9704','24887','scope','performance'), ('9705','24888','scope','availability'), ('9706','24888','scope','performance'), ('9707','24889','scope','availability'), ('9708','24889','scope','performance'), ('9709','24890','scope','availability'), ('9710','24890','scope','performance'), ('9711','24891','scope','availability'), ('9712','24891','scope','performance'), ('9713','24892','scope','availability'), ('9714','24892','scope','performance'), ('9715','24893','scope','availability'), ('9716','24893','scope','performance'), ('9717','24894','scope','availability'), ('9718','24894','scope','performance'), ('9719','24895','scope','availability'), ('9720','24895','scope','performance'), ('9721','24896','scope','availability'), ('9722','24896','scope','performance'), ('9723','24897','scope','availability'), ('9724','24897','scope','performance'), ('9725','24898','scope','availability'), ('9726','24898','scope','performance'), ('9727','24899','scope','availability'), ('9728','24899','scope','performance'), ('9729','24900','scope','availability'), ('9730','24900','scope','performance'), ('9731','24901','scope','availability'), ('9732','24901','scope','performance'), ('9733','24902','scope','availability'), ('9734','24902','scope','performance'), ('9735','24903','scope','availability'), ('9736','24903','scope','performance'), ('9737','24904','scope','availability'), ('9738','24904','scope','performance'), ('9739','24905','scope','availability'), ('9740','24905','scope','performance'), ('9741','24906','scope','availability'), ('9742','24906','scope','performance'), ('9743','24907','scope','availability'), ('9744','24907','scope','performance'), ('9745','24908','scope','availability'), ('9746','24908','scope','performance'), ('9747','24909','scope','availability'), ('9748','24909','scope','performance'), ('9749','24910','scope','availability'), ('9750','24910','scope','performance'), ('9751','24911','scope','availability'), ('9752','24911','scope','performance'), ('9753','24912','scope','availability'), ('9754','24912','scope','performance'), ('9755','24913','scope','availability'), ('9756','24913','scope','performance'), ('9757','24914','scope','availability'), ('9758','24914','scope','performance'), ('9759','24915','scope','availability'), ('9760','24915','scope','performance'), ('9761','24916','scope','availability'), ('9762','24916','scope','performance'), ('9763','24917','scope','availability'), ('9764','24917','scope','performance'), ('9765','24918','scope','availability'), ('9766','24918','scope','performance'), ('9767','24919','scope','availability'), ('9768','24919','scope','performance'), ('9769','24920','scope','availability'), ('9770','24920','scope','performance'), ('9771','24921','scope','availability'), ('9772','24921','scope','performance'), ('9773','24922','scope','availability'), ('9774','24922','scope','performance'), ('9775','24923','scope','availability'), ('9776','24923','scope','performance'), ('9777','24924','scope','availability'), ('9778','24924','scope','performance'), ('9779','24925','scope','availability'), ('9780','24925','scope','performance'), ('9781','24926','scope','availability'), ('9782','24926','scope','performance'), ('9783','24927','scope','availability'), ('9784','24927','scope','performance'), ('9785','24928','scope','availability'), ('9786','24928','scope','performance'), ('9787','24929','scope','availability'), ('9788','24929','scope','performance'), ('9789','24930','scope','availability'), ('9790','24930','scope','performance'), ('9791','24931','scope','availability'), ('9792','24931','scope','performance'), ('9793','24932','scope','availability'), ('9794','24932','scope','performance'), ('9795','24933','scope','availability'), ('9796','24933','scope','performance'), ('9797','24934','scope','availability'), ('9798','24934','scope','performance'), ('9799','24935','scope','availability'), ('9800','24935','scope','performance'), ('9801','24936','scope','availability'), ('9802','24936','scope','performance'), ('9803','24937','scope','availability'), ('9804','24937','scope','performance'), ('9805','24938','scope','availability'), ('9806','24938','scope','performance'), ('9807','24939','scope','availability'), ('9808','24939','scope','performance'), ('9809','24940','scope','availability'), ('9810','24940','scope','performance'), ('9811','24941','scope','availability'), ('9812','24941','scope','performance'), ('9813','24942','scope','availability'), ('9814','24942','scope','performance'), ('9815','24943','scope','availability'), ('9816','24943','scope','performance'), ('9817','24944','scope','availability'), ('9818','24944','scope','performance'), ('9819','24945','scope','availability'), ('9820','24945','scope','performance'), ('9821','24946','scope','availability'), ('9822','24946','scope','performance'), ('9823','24947','scope','availability'), ('9824','24947','scope','performance'), ('9825','24948','scope','availability'), ('9826','24948','scope','performance'), ('9827','24949','scope','availability'), ('9828','24949','scope','performance'), ('9829','24950','scope','availability'), ('9830','24950','scope','performance'), ('9831','24951','scope','availability'), ('9832','24951','scope','performance'), ('9833','24952','scope','availability'), ('9834','24952','scope','performance'), ('9835','24953','scope','availability'), ('9836','24953','scope','performance'), ('9837','24954','scope','availability'), ('9838','24954','scope','performance'), ('9839','24955','scope','availability'), ('9840','24955','scope','performance'), ('9841','24956','scope','availability'), ('9842','24956','scope','performance'), ('9843','24957','scope','availability'), ('9844','24957','scope','performance'), ('9845','24958','scope','availability'), ('9846','24958','scope','performance'), ('9847','24959','scope','availability'), ('9848','24959','scope','performance'), ('9849','24960','scope','availability'), ('9850','24960','scope','performance'), ('9851','24961','scope','availability'), ('9852','24961','scope','performance'), ('9853','24962','scope','availability'), ('9854','24962','scope','performance'), ('9855','24963','scope','availability'), ('9856','24963','scope','performance'), ('9857','24964','scope','availability'), ('9858','24964','scope','performance'), ('9859','24965','scope','availability'), ('9860','24965','scope','performance'), ('9861','24966','scope','availability'), ('9862','24966','scope','performance'), ('9863','24967','scope','availability'), ('9864','24967','scope','performance'), ('9865','24968','scope','availability'), ('9866','24968','scope','performance'), ('9867','24969','scope','availability'), ('9868','24969','scope','performance'), ('9869','24970','scope','availability'), ('9870','24970','scope','performance'), ('9871','24971','scope','availability'), ('9872','24971','scope','performance'), ('9873','24972','scope','availability'), ('9874','24972','scope','performance'), ('9875','24973','scope','availability'), ('9876','24973','scope','performance'), ('9877','24974','scope','availability'), ('9878','24974','scope','performance'), ('9879','24975','scope','availability'), ('9880','24975','scope','performance'), ('9881','24976','scope','availability'), ('9882','24976','scope','performance'), ('9883','24977','scope','availability'), ('9884','24977','scope','performance'), ('9885','24978','scope','availability'), ('9886','24978','scope','performance'), ('9887','24979','scope','availability'), ('9888','24979','scope','performance'), ('9889','24980','scope','availability'), ('9890','24980','scope','performance'), ('9891','24981','scope','availability'), ('9892','24981','scope','performance'), ('9893','24982','scope','availability'), ('9894','24982','scope','performance'), ('9895','24983','scope','availability'), ('9896','24983','scope','performance'), ('9897','24984','scope','availability'), ('9898','24984','scope','performance'), ('9899','24985','scope','availability'), ('9900','24986','scope','availability'), ('9901','24987','scope','availability'), ('9902','24988','scope','availability'), ('9903','24989','scope','availability'), ('9904','24990','scope','availability'), ('9905','24991','scope','availability'), ('9906','24992','scope','availability'), ('9907','24993','scope','security'), ('9908','24994','scope','availability'), ('9909','24995','scope','notice'), ('9910','24996','scope','availability'), ('9911','24997','scope','notice'), ('9912','24998','scope','availability'), ('9913','24999','scope','availability'), ('9914','25000','scope','availability'), ('9915','25001','scope','availability'), ('9916','25002','scope','availability'), ('9917','25003','scope','availability'), ('9918','25004','scope','availability'), ('9919','25005','scope','availability'), ('9920','25006','scope','security'), ('9921','25007','scope','availability'), ('9922','25008','scope','availability'), ('9923','25009','scope','notice'), ('9924','25010','scope','health'), ('9925','25011','scope','health'), ('9926','25012','scope','health'), ('9927','25013','scope','health'), ('9928','25014','scope','capacity'), ('9929','25015','scope','health'), ('9930','25016','scope','health'), ('9931','25017','scope','availability'), ('9932','25018','scope','notice'), ('9933','25019','scope','health'), ('9934','25020','scope','health'), ('9935','25021','scope','health'), ('9936','25022','scope','health'), ('9937','25023','scope','capacity'), ('9938','25024','scope','health'), ('9939','25025','scope','health'), ('9940','25026','scope','availability'), ('9941','25027','scope','availability'), ('9942','25028','scope','availability'), ('9943','25029','scope','availability'), ('9944','25030','scope','availability'), ('9945','25031','scope','notice'), ('9946','25032','scope','notice'), ('9947','25033','scope','notice'), ('9948','25034','scope','notice'), ('9949','25035','scope','notice'), ('9950','25036','scope','notice'), ('9951','25037','scope','notice'), ('9952','25038','scope','notice'), ('9953','25039','scope','availability'), ('9954','25040','scope','availability'), ('9955','25040','scope','performance'), ('9956','25041','scope','availability'), ('9957','25041','scope','performance'), ('9958','25042','scope','notice'), ('9959','25042','scope','security'), ('9960','25043','scope','availability'), ('9961','25044','scope','notice'), ('9962','25045','scope','performance'), ('9963','25046','scope','performance'), ('9964','25047','scope','availability'), ('9965','25047','scope','performance'), ('9966','25048','scope','availability'), ('9967','25049','scope','capacity'), ('9968','25049','scope','performance'), ('9969','25050','scope','availability'), ('9970','25051','scope','performance'), ('9971','25052','scope','availability'), ('9972','25053','scope','notice'), ('9973','25054','scope','notice'), ('9974','25055','scope','capacity'), ('9975','25055','scope','performance'), ('9976','25056','scope','availability'), ('9977','25056','scope','performance'), ('9978','25057','scope','availability'), ('9979','25057','scope','performance'), ('9980','25058','scope','availability'), ('9981','25059','scope','availability'), ('9982','25060','scope','availability'), ('9983','25061','scope','capacity'), ('9984','25061','scope','performance'), ('9985','25062','scope','availability'), ('9986','25062','scope','performance'), ('9987','25063','scope','availability'), ('9988','25063','scope','performance'), ('9989','25064','scope','capacity'), ('9990','25064','scope','performance'), ('9991','25065','scope','availability'), ('9992','25066','scope','capacity'), ('9993','25067','scope','notice'), ('9994','25068','scope','notice'), ('9995','25069','scope','notice'), ('9996','25070','scope','notice'), ('9997','25071','scope','notice'), ('9998','25072','scope','notice'), ('9999','25073','scope','availability'), ('10000','25074','scope','availability'), ('10001','25074','scope','performance'), ('10002','25075','scope','availability'), ('10003','25075','scope','performance'), ('10004','25076','scope','notice'), ('10005','25076','scope','security'), ('10006','25077','scope','availability'), ('10007','25078','scope','notice'), ('10008','25079','scope','availability'), ('10009','25079','scope','performance'), ('10010','25080','scope','availability'), ('10011','25080','scope','performance'), ('10012','25081','scope','availability'), ('10013','25081','scope','performance'), ('10014','25082','scope','availability'), ('10015','25082','scope','performance'), ('10016','25083','scope','availability'), ('10017','25083','scope','performance'), ('10018','25084','scope','availability'), ('10019','25084','scope','performance'), ('10020','25085','scope','capacity'), ('10021','25085','scope','performance'), ('10022','25086','scope','availability'), ('10023','25086','scope','performance'), ('10024','25087','scope','capacity'), ('10025','25087','scope','performance'), ('10026','25088','scope','capacity'), ('10027','25088','scope','performance'), ('10028','25089','scope','availability'), ('10029','25089','scope','performance'), ('10030','25090','scope','availability'), ('10031','25090','scope','performance'), ('10032','25091','scope','availability'), ('10033','25091','scope','performance'), ('10034','25092','scope','performance'), ('10035','25093','scope','performance'), ('10036','25094','scope','performance'), ('10037','25095','scope','availability'), ('10038','25096','scope','capacity'), ('10039','25096','scope','performance'), ('10040','25097','scope','capacity'), ('10041','25097','scope','performance'), ('10042','25098','scope','availability'), ('10043','25099','scope','availability'), ('10044','25099','scope','performance'), ('10045','25100','scope','availability'), ('10046','25100','scope','performance'), ('10047','25101','scope','notice'), ('10048','25102','scope','notice'), ('10049','25102','scope','security'), ('10050','25103','scope','availability'), ('10051','25104','scope','notice'), ('10052','25105','scope','availability'), ('10053','25105','scope','performance'), ('10054','25106','scope','availability'), ('10055','25107','scope','availability'), ('10056','25107','scope','performance'), ('10057','25108','scope','availability'), ('10058','25108','scope','performance'), ('10059','25109','scope','performance'), ('10060','25110','scope','performance'), ('10061','25111','scope','availability'), ('10062','25111','scope','performance'), ('10063','25112','scope','availability'), ('10064','25113','scope','availability'), ('10065','25114','scope','availability'), ('10066','25115','scope','availability'), ('10067','25116','scope','availability'), ('10068','25117','scope','availability'), ('10069','25118','scope','availability'), ('10070','25118','scope','performance'), ('10071','25119','scope','availability'), ('10072','25119','scope','performanc'), ('10073','25120','scope','capacity'), ('10074','25121','scope','capacity'), ('10075','25122','scope','availability'), ('10076','25123','scope','notice'), ('10077','25124','scope','availability'), ('10078','25124','scope','performance'), ('10079','25125','scope','capacity'), ('10080','25126','scope','capacity'), ('10081','25127','scope','performance'), ('10082','25128','scope','performance'), ('10083','25129','scope','availability'), ('10084','25129','scope','performance'), ('10085','25130','scope','availability'), ('10086','25131','scope','capacity'), ('10087','25132','scope','capacity'), ('10088','25133','scope','availability'), ('10089','25134','scope','availability'), ('10090','25135','scope','capacity'), ('10091','25135','scope','performance'), ('10092','25136','scope','availability'), ('10093','25137','scope','availability'), ('10094','25137','scope','performance'), ('10095','25138','scope','availability'), ('10096','25138','scope','performance'), ('10097','25139','scope','notice'), ('10098','25139','scope','security'), ('10099','25140','scope','notice'), ('10100','25141','scope','notice'), ('10101','25142','scope','availability'), ('10102','25143','scope','availability'), ('10103','25144','scope','availability'), ('10104','25145','scope','availability'), ('10105','25146','scope','availability'), ('10106','25147','scope','availability'), ('10107','25148','scope','availability'), ('10108','25149','scope','notice'), ('10109','25150','scope','availability'), ('10110','25151','scope','availability'), ('10111','25152','scope','capacity'), ('10112','25152','scope','performance'), ('10113','25153','scope','notice'); INSERT INTO item_preproc (item_preprocid,itemid,step,type,params,error_handler,error_handler_params) VALUES ('77559','28743','1','20','10m','0',''), ('77560','30896','1','21',E'var lines = value.split(''\\n''); var output = {}, workers = { ''_'': 0, ''S'': 0, ''R'': 0, ''W'': 0, ''K'': 0, ''D'': 0, ''C'': 0, ''L'': 0, ''G'': 0, ''I'': 0, ''.'': 0 }; for (var i = 0; i < lines.length; i++) { var line = lines[i].match(/([A-z0-9 ]+): (.*)/); if (line !== null) { output[line[1]] = isNaN(line[2]) ? line[2] : Number(line[2]); } } output.ServerUptimeSeconds = output.ServerUptimeSeconds || output.Uptime; output.ServerVersion = output.ServerVersion || output.Server; if (typeof output.Scoreboard === ''string'') { for (var i = 0; i < output.Scoreboard.length; i++) { var char = output.Scoreboard[i]; workers[char]++; } } output.Workers = { waiting: workers[''_''], starting: workers[''S''], reading: workers[''R''], sending: workers[''W''], keepalive: workers[''K''], dnslookup: workers[''D''], closing: workers[''C''], logging: workers[''L''], finishing: workers[''G''], cleanup: workers[''I''], slot: workers[''.''] }; return JSON.stringify(output);','0',''), ('77561','30897','1','12','$.Workers.reading','0',''), ('77562','30898','1','12','$.Workers.waiting','0',''), ('77563','30899','1','12','$.Workers.starting','0',''), ('77564','30900','1','12','$.Workers.slot','0',''), ('77565','30901','1','12','$.Workers.sending','0',''), ('77566','30902','1','12','$["Total kBytes"]','0',''), ('77567','30902','2','1','1024','0',''), ('77568','30903','1','12','$["Total kBytes"]','0',''), ('77569','30903','2','1','1024','0',''), ('77570','30903','3','10','','0',''), ('77571','30904','1','12','$.Workers.keepalive','0',''), ('77572','30905','1','12','$.Workers.finishing','0',''), ('77573','30906','1','12','$.Workers.dnslookup','0',''), ('77574','30907','1','12','$.Workers.closing','0',''), ('77575','30908','1','12','$.Workers.cleanup','0',''), ('77576','30909','1','12','$.IdleWorkers','0',''), ('77577','30910','1','12','$.BusyWorkers','0',''), ('77578','30911','1','12','$.ServerVersion','0',''), ('77579','30911','2','20','1d','0',''), ('77580','30912','1','12','$.ServerUptimeSeconds','0',''), ('77581','30913','1','12','$["Total Accesses"]','0',''), ('77582','30913','2','10','','0',''), ('77583','30914','1','12','$["Total Accesses"]','0',''), ('77584','30915','1','12','$.Workers.logging','0',''), ('77585','30916','1','21','return JSON.stringify(JSON.parse(value).ServerMPM === ''event'' ? [{''{#SINGLETON}'': ''''}] : []);','0',''), ('77586','30916','2','20','3h','0',''), ('77587','30917','1','12','$.BytesPerReq','0',''), ('77588','30918','1','12','$.ConnsAsyncClosing','0',''), ('77589','30919','1','12','$.ConnsAsyncKeepAlive','0',''), ('77590','30920','1','12','$.ConnsAsyncWriting','0',''), ('77591','30921','1','12','$.ConnsTotal','0',''), ('77592','30922','1','12','$.Processes','0',''), ('77593','28775','1','21',E'var lines = value.split(''\\n''); var output = {}, workers = { ''_'': 0, ''S'': 0, ''R'': 0, ''W'': 0, ''K'': 0, ''D'': 0, ''C'': 0, ''L'': 0, ''G'': 0, ''I'': 0, ''.'': 0 }; for (var i = 0; i < lines.length; i++) { var line = lines[i].match(/([A-z0-9 ]+): (.*)/); if (line !== null) { output[line[1]] = isNaN(line[2]) ? line[2] : Number(line[2]); } } output.ServerUptimeSeconds = output.ServerUptimeSeconds || output.Uptime; output.ServerVersion = output.ServerVersion || output.Server; if (typeof output.Scoreboard === ''string'') { for (var i = 0; i < output.Scoreboard.length; i++) { var char = output.Scoreboard[i]; workers[char]++; } } output.Workers = { waiting: workers[''_''], starting: workers[''S''], reading: workers[''R''], sending: workers[''W''], keepalive: workers[''K''], dnslookup: workers[''D''], closing: workers[''C''], logging: workers[''L''], finishing: workers[''G''], cleanup: workers[''I''], slot: workers[''.''] }; return JSON.stringify(output);','0',''), ('77594','28776','1','20','10m','0',''), ('77595','28778','1','12','$.Workers.starting','0',''), ('77596','28779','1','12','$.Workers.slot','0',''), ('77597','28780','1','12','$.Workers.sending','0',''), ('77598','28781','1','12','$.Workers.reading','0',''), ('77599','28782','1','12','$.Workers.logging','0',''), ('77600','28783','1','12','$.Workers.keepalive','0',''), ('77601','28784','1','12','$.Workers.cleanup','0',''), ('77602','28785','1','12','$.Workers.finishing','0',''), ('77603','28786','1','12','$.Workers.closing','0',''), ('77604','28787','1','12','$.Workers.dnslookup','0',''), ('77605','28788','1','12','$.IdleWorkers','0',''), ('77606','28789','1','12','$.BusyWorkers','0',''), ('77607','28790','1','12','$.ServerVersion','0',''), ('77608','28790','2','20','1d','0',''), ('77609','28791','1','12','$.ServerUptimeSeconds','0',''), ('77610','28792','1','12','$["Total Accesses"]','0',''), ('77611','28793','1','12','$["Total Accesses"]','0',''), ('77612','28793','2','10','','0',''), ('77613','28794','1','12','$["Total kBytes"]','0',''), ('77614','28794','2','1','1024','0',''), ('77615','28794','3','10','','0',''), ('77616','28795','1','12','$["Total kBytes"]','0',''), ('77617','28795','2','1','1024','0',''), ('77618','28796','1','12','$.Workers.waiting','0',''), ('77619','28797','1','21','return JSON.stringify(JSON.parse(value).ServerMPM === ''event'' ? [{''{#SINGLETON}'': ''''}] : []);','0',''), ('77620','28797','2','20','3h','0',''), ('77621','28798','1','12','$.ConnsAsyncClosing','0',''), ('77622','28799','1','12','$.ConnsAsyncKeepAlive','0',''), ('77623','28800','1','12','$.ConnsAsyncWriting','0',''), ('77624','28801','1','12','$.ConnsTotal','0',''), ('77625','28802','1','12','$.BytesPerReq','0',''), ('77626','28803','1','12','$.Processes','0',''), ('77627','32120','1','20','30m','0',''), ('77628','32122','1','12','$.num_osd_up','0',''), ('77629','32122','2','20','10m','0',''), ('77630','32123','1','12','$.pg_states.undersized','0',''), ('77631','32124','1','12','$.pg_states.clean','0',''), ('77632','32125','1','12','$.pg_states.degraded','0',''), ('77633','32126','1','12','$.pg_states.inconsistent','0',''), ('77634','32127','1','12','$.pg_states.peering','0',''), ('77635','32128','1','12','$.pg_states.recovering','0',''), ('77636','32129','1','12','$.pg_states.recovery_wait','0',''), ('77637','32130','1','12','$.pg_states.remapped','0',''), ('77638','32131','1','12','$.pg_states.scrubbing','0',''), ('77639','32132','1','12','$.pg_states.unknown','0',''), ('77640','32133','1','12','$.pg_states.backfill_wait','0',''), ('77641','32134','1','12','$.num_osd','0',''), ('77642','32134','2','20','10m','0',''), ('77643','32135','1','12','$.rd_bytes','0',''), ('77644','32135','2','10','','0',''), ('77645','32136','1','12','$.rd_ops','0',''), ('77646','32137','1','12','$.num_mon','0',''), ('77647','32137','2','20','30m','0',''), ('77648','32138','1','12','$.total_avail_bytes','0',''), ('77649','32139','1','12','$.total_bytes','0',''), ('77650','32140','1','12','$.total_objects','0',''), ('77651','32141','1','12','$.total_used_bytes','0',''), ('77652','32142','1','12','$.wr_bytes','0',''), ('77653','32142','2','10','','0',''), ('77654','32143','1','12','$.pg_states.backfilling','0',''), ('77655','32144','1','12','$.pg_states.backfill_toofull','0',''), ('77656','32145','1','12','$.num_pg','0',''), ('77657','32145','2','20','10m','0',''), ('77658','32146','1','12','$.osd_latency_apply.min','0',''), ('77659','32147','1','12','$.num_pg_temp','0',''), ('77660','32148','1','12','$.num_pools','0',''), ('77661','32149','1','12','$.osd_backfillfull_ratio','0',''), ('77662','32149','2','20','10m','0',''), ('77663','32150','1','12','$.osd_fill.avg','0',''), ('77664','32151','1','12','$.osd_fill.max','0',''), ('77665','32152','1','12','$.osd_fill.min','0',''), ('77666','32153','1','12','$.osd_full_ratio','0',''), ('77667','32153','2','20','10m','0',''), ('77668','32154','1','12','$.osd_latency_apply.avg','0',''), ('77669','32155','1','12','$.osd_latency_apply.max','0',''), ('77670','32156','1','12','$.osd_latency_commit.avg','0',''), ('77671','32157','1','12','$.pg_states.active','0',''), ('77672','32158','1','12','$.osd_latency_commit.max','0',''), ('77673','32159','1','12','$.osd_latency_commit.min','0',''), ('77674','32160','1','12','$.osd_nearfull_ratio','0',''), ('77675','32160','2','20','10m','0',''), ('77676','32161','1','12','$.osd_pgs.avg','0',''), ('77677','32162','1','12','$.osd_pgs.max','0',''), ('77678','32163','1','12','$.osd_pgs.min','0',''), ('77679','32164','1','12','$.num_osd_in','0',''), ('77680','32164','2','20','10m','0',''), ('77681','32165','1','12','$.min_mon_release_name','0',''), ('77682','32165','2','20','1h','0',''), ('77683','32166','1','12','$.overall_status','0',''), ('77684','32166','2','20','10m','0',''), ('77685','32167','1','12','$.wr_ops','0',''), ('77686','32167','2','10','','0',''), ('77687','32170','1','12','$.osds.{#OSDNAME}.osd_fill','1',''), ('77688','32171','1','12','$.osds.{#OSDNAME}.in','0',''), ('77689','32171','2','20','10m','0',''), ('77690','32172','1','12','$.osds.{#OSDNAME}.osd_latency_apply','1',''), ('77691','32173','1','12','$.osds.{#OSDNAME}.osd_latency_commit','1',''), ('77692','32174','1','12','$.osds.{#OSDNAME}.num_pgs','1',''), ('77693','32175','1','12','$.osds.{#OSDNAME}.up','0',''), ('77694','32175','2','20','10m','0',''), ('77708','30530','1','20','10m','0',''), ('77709','30532','1','12','$.Architecture','0',''), ('77710','30532','2','20','1d','0',''), ('77711','30533','1','12','$.LiveRestoreEnabled','0',''), ('77712','30533','2','6','','0',''), ('77713','30533','3','20','1d','0',''), ('77714','30534','1','12','$.LoggingDriver','0',''), ('77715','30534','2','20','1d','0',''), ('77716','30535','1','12','$.MemoryLimit','0',''), ('77717','30535','2','6','','0',''), ('77718','30535','3','20','1d','0',''), ('77719','30536','1','12','$.MemTotal','0',''), ('77720','30537','1','12','$.Name','0',''), ('77721','30538','1','12','$.NCPU','0',''), ('77722','30539','1','12','$.NFd','0',''), ('77723','30540','1','12','$.NEventsListener','0',''), ('77724','30541','1','12','$.KernelVersion','0',''), ('77725','30541','2','20','1d','0',''), ('77726','30542','1','12','$.OomKillDisable','0',''), ('77727','30542','2','6','','0',''), ('77728','30542','3','20','1d','0',''), ('77729','30543','1','12','$.OperatingSystem','0',''), ('77730','30543','2','20','1d','0',''), ('77731','30544','1','12','$.OSType','0',''), ('77732','30544','2','20','1d','0',''), ('77733','30545','1','12','$.PidsLimit','0',''), ('77734','30545','2','6','','0',''), ('77735','30545','3','20','1d','0',''), ('77736','30546','1','12','$.DockerRootDir','0',''), ('77737','30546','2','20','1d','0',''), ('77738','30547','1','12','$.ServerVersion','0',''), ('77739','30547','2','20','1d','0',''), ('77740','30548','1','12','$.SwapLimit','0',''), ('77741','30548','2','6','','0',''), ('77742','30548','3','20','1d','0',''), ('77743','30549','1','12','$.LayersSize','0',''), ('77744','30550','1','12','$.IPv4Forwarding','0',''), ('77745','30550','2','6','','0',''), ('77746','30550','3','20','1d','0',''), ('77747','30551','1','12','$.KernelMemory','0',''), ('77748','30551','2','6','','0',''), ('77749','30551','3','20','1d','0',''), ('77750','30552','1','12','$.CPUSet','0',''), ('77751','30552','2','6','','0',''), ('77752','30552','3','20','1d','0',''), ('77753','30553','1','12','$.Containers[*].SizeRw.sum()','0',''), ('77754','30554','1','12','$.ContainersPaused','0',''), ('77755','30555','1','12','$.ContainersRunning','0',''), ('77756','30556','1','12','$.ContainersStopped','0',''), ('77757','30557','1','12','$.Containers','0',''), ('77758','30558','1','12','$.CpuCfsPeriod','0',''), ('77759','30558','2','6','','0',''), ('77760','30558','3','20','1d','0',''), ('77761','30559','1','12','$.CpuCfsQuota','0',''), ('77762','30559','2','6','','0',''), ('77763','30559','3','20','1d','0',''), ('77764','30560','1','12','$.CPUShares','0',''), ('77765','30560','2','6','','0',''), ('77766','30560','3','20','1d','0',''), ('77767','30561','1','12','$.KernelMemoryTCP','0',''), ('77768','30561','2','6','','0',''), ('77769','30561','3','20','1d','0',''), ('77770','30562','1','12','$.Debug','0',''), ('77771','30562','2','6','','0',''), ('77772','30562','3','20','1d','0',''), ('77773','30563','1','12','$.DefaultRuntime','0',''), ('77774','30563','2','20','1d','0',''), ('77775','30564','1','12','$.Driver','0',''), ('77776','30564','2','20','1d','0',''), ('77777','30565','1','12','$.NGoroutines','0',''), ('77778','30566','1','12','$.Images[*].Size.sum()','0',''), ('77779','30567','1','12','$.length()','0',''), ('77780','30568','1','12','$.Images','0',''), ('77781','30569','1','12','$.CgroupDriver','0',''), ('77782','30569','2','20','1d','0',''), ('77783','30570','1','12','$.Volumes[*].UsageData.Size.sum()','0',''), ('77784','30575','1','12','$.cpu_stats.online_cpus','0',''), ('77785','30576','1','12','$.memory_stats.commitbytes','0',''), ('77786','30577','1','12','$.memory_stats.commitpeakbytes','0',''), ('77787','30578','1','12','$.memory_stats.max_usage','0',''), ('77788','30579','1','12','$.memory_stats.privateworkingset','0',''), ('77789','30580','1','12','$.memory_stats.usage','0',''), ('77790','30581','1','21','var input = JSON.parse(value); return truncatedTimestamp = Math.floor(Date.parse(input.Created) / 1000) || -1;','0',''), ('77791','30581','2','20','1d','0',''), ('77792','30582','1','12','$.cpu_stats.cpu_usage.total_usage','0',''), ('77793','30582','2','10','','0',''), ('77794','30582','3','1','1.0E-9','0',''), ('77795','30583','1','12','$.networks[*].rx_bytes.sum()','2','0'), ('77796','30583','2','10','','0',''), ('77797','30584','1','12','$.networks[*].rx_dropped.sum()','2','0'), ('77798','30584','2','10','','0',''), ('77799','30585','1','12','$.networks[*].rx_errors.sum()','2','0'), ('77800','30585','2','10','','0',''), ('77801','30586','1','12','$.networks[*].rx_packets.sum()','2','0'), ('77802','30586','2','10','','0',''), ('77803','30587','1','12','$.networks[*].tx_bytes.sum()','2','0'), ('77804','30587','2','10','','0',''), ('77805','30588','1','12','$.networks[*].tx_dropped.sum()','2','0'), ('77806','30588','2','10','','0',''), ('77807','30589','1','12','$.networks[*].tx_errors.sum()','2','0'), ('77808','30589','2','10','','0',''), ('77809','30590','1','12','$.cpu_stats.cpu_usage.usage_in_usermode','0',''), ('77810','30590','2','10','','0',''), ('77811','30590','3','1','1.0E-9','0',''), ('77812','30591','1','12','$.cpu_stats.throttling_data.periods','0',''), ('77813','30592','1','21','var input = JSON.parse(value); return truncatedTimestamp = Math.floor(Date.parse(input.State.FinishedAt) / 1000) || -1;','0',''), ('77814','30592','2','20','1d','0',''), ('77815','30593','1','12','$.State.OOMKilled','0',''), ('77816','30593','2','6','','0',''), ('77817','30594','1','12','$[?(@.Names[0] == "{#NAME}")].Image.first()','0',''), ('77818','30594','2','20','1d','0',''), ('77819','30595','1','12','$.RestartCount','0',''), ('77820','30596','1','21','var input = JSON.parse(value); return truncatedTimestamp = Math.floor(Date.parse(input.State.StartedAt) / 1000) || -1;','0',''), ('77821','30596','2','20','1d','0',''), ('77822','30597','1','12','$.State.Dead','0',''), ('77823','30597','2','6','','0',''), ('77824','30598','1','12','$.State.Error','0',''), ('77825','30598','2','20','1d','0',''), ('77826','30599','1','12','$.State.ExitCode','0',''), ('77827','30599','2','20','1d','0',''), ('77828','30600','1','12','$.State.Paused','0',''), ('77829','30600','2','6','','0',''), ('77830','30601','1','12','$.cpu_stats.throttling_data.throttled_time','0',''), ('77831','30601','2','1','1.0E-9','0',''), ('77832','30602','1','12','$.State.Pid','0',''), ('77833','30602','2','20','1d','0',''), ('77834','30603','1','12','$.State.Restarting','0',''), ('77835','30603','2','6','','0',''), ('77836','30604','1','12','$.State.Running','0',''), ('77837','30604','2','6','','0',''), ('77838','30605','1','12','$.State.Status','0',''), ('77839','30605','2','20','1h','0',''), ('77840','30606','1','12','$.cpu_stats.cpu_usage.usage_in_kernelmode','0',''), ('77841','30606','2','10','','0',''), ('77842','30606','3','1','1.0E-9','0',''), ('77843','30607','1','12','$.cpu_stats.throttling_data.throttled_periods','0',''), ('77844','30608','1','12','$.networks[*].tx_packets.sum()','2','0'), ('77845','30608','2','10','','0',''), ('77846','30609','1','12','$[?(@.Id == "{#ID}")].Created.first()','0',''), ('77847','30609','2','20','1d','0',''), ('77848','30610','1','12','$[?(@.Id == "{#ID}")].Size.first()','0',''), ('77849','30690','1','20','10m','0',''), ('77850','30695','1','12','$.indices.docs.count','0',''), ('77851','30695','2','20','1h','0',''), ('77852','30696','1','12','$.nodes.jvm.max_uptime_in_millis','0',''), ('77853','30696','2','1','0.001','0',''), ('77854','30697','1','12','$.nodes.fs.total_in_bytes','0',''), ('77855','30697','2','20','1h','0',''), ('77856','30698','1','12','$.nodes.fs.available_in_bytes','0',''), ('77857','30698','2','20','1h','0',''), ('77858','30699','1','12','$.nodes.count.master','0',''), ('77859','30699','2','20','1h','0',''), ('77860','30700','1','12','$.nodes.count.ingest','0',''), ('77861','30700','2','20','1h','0',''), ('77862','30701','1','12','$.nodes.count.data','0',''), ('77863','30701','2','20','1h','0',''), ('77864','30702','1','12','$.delayed_unassigned_shards','0',''), ('77865','30703','1','12','$.indices.count','0',''), ('77866','30703','2','20','1h','0',''), ('77867','30704','1','12','$.task_max_waiting_in_queue_millis','0',''), ('77868','30704','2','1','0.001','0',''), ('77869','30705','1','12','$.status','0',''), ('77870','30705','2','21','var state = [''green'', ''yellow'', ''red'']; return state.indexOf(value.trim()) === -1 ? 255 : state.indexOf(value.trim());','0',''), ('77871','30705','3','20','1h','0',''), ('77872','30706','1','12','$.relocating_shards','0',''), ('77873','30707','1','12','$.number_of_pending_tasks','0',''), ('77874','30708','1','12','$.number_of_nodes','0',''), ('77875','30708','2','20','1h','0',''), ('77876','30709','1','12','$.number_of_data_nodes','0',''), ('77877','30709','2','20','1h','0',''), ('77878','30710','1','12','$.initializing_shards','0',''), ('77879','30711','1','12','$.active_shards_percent_as_number','0',''), ('77880','30711','2','21','return (100 - value)','0',''), ('77881','30712','1','12','$.unassigned_shards','0',''), ('77882','30713','1','12','$.nodes.[*]','0',''), ('77883','30713','2','20','1d','0',''), ('77884','30718','1','12','$..thread_pool.refresh.active.first()','0',''), ('77885','30719','1','12','$..indices.search.query_total.first()','0',''), ('77886','30719','2','20','1h','0',''), ('77887','30720','1','12','$..indices.search.query_total.first()','0',''), ('77888','30720','2','10','','0',''), ('77889','30721','1','12','$..jvm.mem.heap_committed_in_bytes.first()','0',''), ('77890','30721','2','20','1h','0',''), ('77891','30722','1','12','$..jvm.mem.heap_max_in_bytes.first()','0',''), ('77892','30722','2','20','1d','0',''), ('77893','30723','1','12','$..jvm.mem.heap_used_in_bytes.first()','0',''), ('77894','30723','2','20','1h','0',''), ('77895','30724','1','12','$..jvm.mem.heap_used_percent.first()','0',''), ('77896','30724','2','20','1h','0',''), ('77897','30725','1','12','$..jvm.uptime_in_millis.first()','0',''), ('77898','30725','2','1','0.001','0',''), ('77899','30726','1','12','$..fs.total.available_in_bytes.first()','0',''), ('77900','30726','2','20','1h','0',''), ('77901','30727','1','12','$..thread_pool.refresh.completed.first()','0',''), ('77902','30727','2','10','','0',''), ('77903','30728','1','12','$..indices.search.query_time_in_millis.first()','0',''), ('77904','30728','2','1','0.001','0',''), ('77905','30728','3','9','','0',''), ('77906','30729','1','12','$..thread_pool.refresh.rejected.first()','0',''), ('77907','30729','2','10','','0',''), ('77908','30730','1','12','$..thread_pool.search.active.first()','0',''), ('77909','30731','1','12','$..thread_pool.search.completed.first()','0',''), ('77910','30731','2','10','','0',''), ('77911','30732','1','12','$..thread_pool.search.queue.first()','0',''), ('77912','30733','1','12','$..thread_pool.search.rejected.first()','0',''), ('77913','30733','2','10','','0',''), ('77914','30734','1','12','$..thread_pool.write.active.first()','0',''), ('77915','30735','1','12','$..thread_pool.write.completed.first()','0',''), ('77916','30735','2','10','','0',''), ('77917','30736','1','12','$..thread_pool.write.queue.first()','0',''), ('77918','30737','1','12','$..thread_pool.refresh.queue.first()','0',''), ('77919','30738','1','12','$..indices.search.query_current.first()','0',''), ('77920','30739','1','12','$..indices.search.query_time_in_millis.first()','0',''), ('77921','30739','2','20','1h','0',''), ('77922','30740','1','12','$..indices.indexing.throttle_time_in_millis.first()','0',''), ('77923','30740','2','1','0.001','0',''), ('77924','30740','3','9','','0',''), ('77925','30741','1','12','$..http.current_open.first()','0',''), ('77926','30741','2','20','1h','0',''), ('77927','30742','1','12','$..http.total_opened.first()','0',''), ('77928','30742','2','10','','0',''), ('77929','30743','1','12','$..indices.flush.total_time_in_millis.first()','0',''), ('77930','30743','2','20','1h','0',''), ('77931','30744','1','12','$..indices.flush.total.first()','0',''), ('77932','30744','2','20','1h','0',''), ('77933','30745','1','12','$..indices.indexing.index_current.first()','0',''), ('77934','30745','2','20','1h','0',''), ('77935','30746','1','12','$..indices.indexing.index_time_in_millis.first()','0',''), ('77936','30746','2','20','1h','0',''), ('77937','30747','1','12','$..indices.indexing.index_total.first()','0',''), ('77938','30747','2','20','1h','0',''), ('77939','30748','1','12','$..indices.merges.total_throttled_time_in_millis.first()','0',''), ('77940','30748','2','1','0.001','0',''), ('77941','30748','3','9','','0',''), ('77942','30749','1','12','$..fs.total.total_in_bytes.first()','0',''), ('77943','30749','2','20','1d','0',''), ('77944','30750','1','12','$..indices.recovery.throttle_time_in_millis.first()','0',''), ('77945','30750','2','1','0.001','0',''), ('77946','30750','3','9','','0',''), ('77947','30751','1','12','$..indices.refresh.total.first()','0',''), ('77948','30751','2','10','','0',''), ('77949','30752','1','12','$..indices.refresh.total_time_in_millis.first()','0',''), ('77950','30752','2','1','0.001','0',''), ('77951','30752','3','9','','0',''), ('77952','30753','1','12','$..indices.search.fetch_current.first()','0',''), ('77953','30754','1','12','$..indices.search.fetch_time_in_millis.first()','0',''), ('77954','30754','2','20','1h','0',''), ('77955','30755','1','12','$..indices.search.fetch_time_in_millis.first()','0',''), ('77956','30755','2','1','0.001','0',''), ('77957','30755','3','9','','0',''), ('77958','30756','1','12','$..indices.search.fetch_total.first()','0',''), ('77959','30756','2','20','1h','0',''), ('77960','30757','1','12','$..indices.search.fetch_total.first()','0',''), ('77961','30757','2','10','','0',''), ('77962','30758','1','12','$..thread_pool.write.rejected.first()','0',''), ('77963','30758','2','10','','0',''), ('77964','30923','1','20','10m','0',''), ('77965','30924','1','12','$.health','0',''), ('77966','30924','2','6','','2','0'), ('77967','30924','3','20','10m','0',''), ('77968','30927','1','22','process_open_fds value ','0',''), ('77969','30928','1','22','etcd_server_proposals_applied_total value ','0',''), ('77970','30928','2','10','','0',''), ('77971','30929','1','22','etcd_server_proposals_committed_total value ','0',''), ('77972','30929','2','10','','0',''), ('77973','30930','1','22','etcd_server_proposals_failed_total value ','0',''), ('77974','30930','2','10','','0',''), ('77975','30931','1','22','etcd_server_proposals_pending value ','0',''), ('77976','30932','1','22','etcd_mvcc_put_total value ','0',''), ('77977','30932','2','10','','0',''), ('77978','30933','1','22','etcd_debugging_mvcc_range_total value ','0',''), ('77979','30933','2','10','','0',''), ('77980','30934','1','23','etcd_debugging_store_reads_total','0',''), ('77981','30934','2','21','var valueArr = JSON.parse(value); return valueArr.reduce(function (acc, obj) { return acc + parseFloat(obj[''value'']); }, 0);','0',''), ('77982','30934','3','10','','0',''), ('77983','30935','1','22','etcd_network_client_grpc_received_bytes_total value ','0',''), ('77984','30935','2','10','','0',''), ('77985','30936','1','22','process_resident_memory_bytes value ','0',''), ('77986','30937','1','12','$.etcdserver','0',''), ('77987','30937','2','20','1d','0',''), ('77988','30938','1','22','etcd_debugging_mvcc_range_total value ','0',''), ('77989','30938','2','10','','0',''), ('77990','30939','1','22','process_start_time_seconds value ','0',''), ('77991','30939','2','21','return (Math.floor(Date.now() / 1000) - Number(value));','0',''), ('77992','30940','1','22','process_virtual_memory_bytes value ','0',''), ('77993','30941','1','23','etcd_debugging_store_writes_total','0',''), ('77994','30941','2','21','var valueArr = JSON.parse(value); return valueArr.reduce(function (acc, obj) { return acc + parseFloat(obj[''value'']); }, 0);','0',''), ('77995','30941','3','10','','0',''), ('77996','30942','1','22','etcd_network_client_grpc_sent_bytes_total value ','0',''), ('77997','30942','2','10','','0',''), ('77998','30943','1','12','$.etcdcluster','0',''), ('77999','30943','2','20','1d','0',''), ('78000','30944','1','22','process_max_fds value ','0',''), ('78001','30945','1','22','etcd_server_has_leader value ','0',''), ('78002','30945','2','20','10m','0',''), ('78003','30946','1','22','etcd_mvcc_db_total_size_in_bytes value ','0',''), ('78004','30947','1','22','etcd_mvcc_delete_total value ','0',''), ('78005','30947','2','10','','0',''), ('78006','30948','1','22','etcd_debugging_mvcc_pending_events_total value ','0',''), ('78007','30949','1','23','grpc_server_msg_received_total','0',''), ('78008','30949','2','21','var valueArr = JSON.parse(value); return valueArr.reduce(function (acc, obj) { return acc + parseFloat(obj[''value'']); }, 0);','0',''), ('78009','30949','3','10','','0',''), ('78010','30950','1','23','grpc_server_msg_sent_total','0',''), ('78011','30950','2','21','var valueArr = JSON.parse(value); return valueArr.reduce(function (acc, obj) { return acc + parseFloat(obj[''value'']); }, 0);','0',''), ('78012','30950','3','10','','0',''), ('78013','30951','1','23','grpc_server_started_total','0',''), ('78014','30951','2','21','var valueArr = JSON.parse(value); return valueArr.reduce(function (acc, obj) { return acc + parseFloat(obj[''value'']); }, 0);','0',''), ('78015','30951','3','10','','0',''), ('78016','30952','1','23','etcd_http_failed_total{code=~"4.+"}','0',''), ('78017','30952','2','21','var valueArr = JSON.parse(value); return valueArr.reduce(function (acc, obj) { return acc + parseFloat(obj[''value'']); }, 0);','0',''), ('78018','30952','3','10','','0',''), ('78019','30953','1','22','process_cpu_seconds_total value ','0',''), ('78020','30953','2','10','','0',''), ('78021','30954','1','23','etcd_http_failed_total{code=~"5.+"}','0',''), ('78022','30954','2','21','var valueArr = JSON.parse(value); return valueArr.reduce(function (acc, obj) { return acc + parseFloat(obj[''value'']); }, 0);','0',''), ('78023','30954','3','10','','0',''), ('78024','30955','1','23','etcd_http_received_total','0',''), ('78025','30955','2','21','var valueArr = JSON.parse(value); return valueArr.reduce(function (acc, obj) { return acc + parseFloat(obj[''value'']); }, 0);','0',''), ('78026','30955','3','10','','0',''), ('78027','30956','1','22','etcd_server_is_leader value ','2','0'), ('78028','30956','2','20','10m','0',''), ('78029','30957','1','22','etcd_debugging_mvcc_db_compaction_keys_total value ','2','0'), ('78030','30957','2','10','','0',''), ('78031','30958','1','22','etcd_debugging_store_expires_total value ','0',''), ('78032','30958','2','10','','0',''), ('78033','30959','1','22','etcd_debugging_mvcc_keys_total value ','0',''), ('78034','30960','1','22','etcd_server_leader_changes_seen_total value ','0',''), ('78035','30961','1','23','grpc_server_handled_total','0',''), ('78036','30961','2','21','var data = JSON.parse(value), lookup = {}, result = []; for (var item, i = 0; item = data[i++];) { var code = item.labels.grpc_code; if (!(code in lookup)) { lookup[code] = 1; result.push({ "{#GRPC.CODE}": code }); } } return JSON.stringify(result);','0',''), ('78037','30961','3','20','1h','0',''), ('78038','30962','1','23','etcd_network_peer_sent_bytes_total','0',''), ('78039','30963','1','23','grpc_server_handled_total{grpc_method="{#GRPC.CODE}"}','0',''), ('78040','30963','2','21','var valueArr = JSON.parse(value); return valueArr.reduce(function (acc, obj) { return acc + parseFloat(obj[''value'']); }, 0);','0',''), ('78041','30963','3','10','','0',''), ('78042','30964','1','22','etcd_network_peer_received_bytes_total{From="{#ETCD.PEER}"} value ','2','0'), ('78043','30964','2','10','','0',''), ('78044','30965','1','22','etcd_network_peer_sent_bytes_total{To="{#ETCD.PEER}"} value ','2','0'), ('78045','30965','2','10','','0',''), ('78046','30966','1','22','etcd_network_peer_received_failures_total{To="{#ETCD.PEER}"} value ','2','0'), ('78047','30966','2','10','','0',''), ('78048','30967','1','22','etcd_network_peer_sent_failures_total{To="{#ETCD.PEER}"} value ','2','0'), ('78049','30967','2','10','','0',''), ('78050','31499','1','20','10m','0',''), ('78056','31516','1','20','10m','0',''), ('78057','31518','1','1','100','0',''), ('78058','31519','1','1','0.001','0',''), ('78059','31520','1','20','30m','0',''), ('78060','31521','1','20','30m','0',''), ('78061','31522','1','20','10m','0',''), ('78063','31527','1','20','10m','0',''), ('78065','31529','1','20','10m','0',''), ('78066','31530','1','20','30m','0',''), ('78067','31531','1','1','0.001','0',''), ('78068','31531','2','20','10m','0',''), ('78086','31545','1','20','10m','0',''), ('78087','31546','1','20','10m','0',''), ('78088','31547','1','20','10m','0',''), ('78089','31548','1','20','10m','0',''), ('78090','31549','1','20','10m','0',''), ('78091','31550','1','20','10m','0',''), ('78093','30188','1','20','10m','0',''), ('78094','30189','1','5',E'# ([\\s\\S]*) \\1','0',''), ('78095','30189','2','24',' 1','0',''), ('78096','30191','1','21',E'try { var t = value.match(/(\\d+)d (\\d+)h(\\d+)m(\\d+)s/); return t[1] * 86400 + t[2] * 3600 + t[3] * 60 + t[4] * 1; } catch (error) { throw "HAProxy uptime is not found : " + error; }','0',''), ('78097','30192','1','5',E'HAProxy version ([^,]*), \\1','3','HAProxy version is not found'), ('78098','30192','2','20','1d','0',''), ('78099','30197','1','12','$.dresp','0',''), ('78100','30197','2','10','','0',''), ('78101','30198','1','12','$.econ','0',''), ('78102','30198','2','10','','0',''), ('78103','30199','1','12','$.eresp','0',''), ('78104','30199','2','10','','0',''), ('78105','30200','1','12','$.qcur','0',''), ('78106','30201','1','12','$.qtime','0',''), ('78107','30201','2','1','0.001','0',''), ('78108','30202','1','12','$.rtime','0',''), ('78109','30202','2','1','0.001','0',''), ('78110','30203','1','12','$.status','0',''), ('78111','30203','2','20','10m','0',''), ('78113','30204','1','12','$.wredis','0',''), ('78114','30204','2','10','','0',''), ('78115','30205','1','12','$.wretr','0',''), ('78116','30205','2','10','','0',''), ('78117','30206','1','12','$.bin','0',''), ('78118','30206','2','1','8','0',''), ('78119','30206','3','10','','0',''), ('78120','30207','1','12','$.bout','0',''), ('78121','30207','2','1','8','0',''), ('78122','30207','3','10','','0',''), ('78123','30208','1','12','$.dreq','0',''), ('78124','30208','2','10','','0',''), ('78125','30209','1','12','$.ereq','0',''), ('78126','30209','2','10','','0',''), ('78127','30210','1','12','$.hrsp_1xx','0',''), ('78128','30210','2','10','','0',''), ('78129','30211','1','12','$.hrsp_2xx','0',''), ('78130','30211','2','10','','0',''), ('78131','30212','1','12','$.hrsp_3xx','0',''), ('78132','30212','2','10','','0',''), ('78133','30213','1','12','$.hrsp_4xx','0',''), ('78134','30213','2','10','','0',''), ('78135','30214','1','12','$.hrsp_5xx','0',''), ('78136','30214','2','10','','0',''), ('78137','30215','1','12','$.rate','0',''), ('78138','30216','1','12','$.req_rate','0',''), ('78139','30217','1','12','$.scur','0',''), ('78140','30218','1','12','$.slim','0',''), ('78141','30218','2','20','1h','0',''), ('78142','30219','1','12','$.dresp','0',''), ('78143','30219','2','10','','0',''), ('78144','30220','1','12','$.econ','0',''), ('78145','30220','2','10','','0',''), ('78146','30221','1','12','$.eresp','0',''), ('78147','30221','2','10','','0',''), ('78148','30222','1','12','$.hrsp_4xx','0',''), ('78149','30222','2','10','','0',''), ('78150','30223','1','12','$.hrsp_5xx','0',''), ('78151','30223','2','10','','0',''), ('78152','30224','1','12','$.qcur','0',''), ('78153','30225','1','12','$.qtime','0',''), ('78154','30225','2','1','0.001','0',''), ('78155','30226','1','12','$.rtime','0',''), ('78156','30226','2','1','0.001','0',''), ('78157','30227','1','12','$.status','0',''), ('78158','30227','2','20','10m','0',''), ('78160','30228','1','12','$.wredis','0',''), ('78161','30228','2','10','','0',''), ('78162','30229','1','12','$.wretr','0',''), ('78163','30229','2','10','','0',''), ('78215','30230','1','5',E'# ([\\s\\S]*)\\n \\1','0',''), ('78216','30230','2','24',' 1','0',''), ('78217','30790','1','20','10m','0',''), ('78218','30234','1','21',E'try { var t = value.match(/(\\d+)d (\\d+)h(\\d+)m(\\d+)s/); return t[1] * 86400 + t[2] * 3600 + t[3] * 60 + t[4] * 1; } catch (error) { throw "HAProxy uptime is not found : " + error; }','0',''), ('78219','30235','1','5',E'HAProxy version ([^,]*), \\1','3','HAProxy version is not found'), ('78220','30235','2','20','1d','0',''), ('78221','30240','1','12','$.dresp','0',''), ('78222','30240','2','10','','0',''), ('78223','30241','1','12','$.econ','0',''), ('78224','30241','2','10','','0',''), ('78225','30242','1','12','$.eresp','0',''), ('78226','30242','2','10','','0',''), ('78227','30243','1','12','$.qcur','0',''), ('78228','30244','1','12','$.qtime','0',''), ('78229','30244','2','1','0.001','0',''), ('78230','30245','1','12','$.rtime','0',''), ('78231','30245','2','1','0.001','0',''), ('78232','30246','1','12','$.status','0',''), ('78233','30246','2','20','10m','0',''), ('78235','30247','1','12','$.wredis','0',''), ('78236','30247','2','10','','0',''), ('78237','30248','1','12','$.wretr','0',''), ('78238','30248','2','10','','0',''), ('78239','30249','1','12','$.bin','0',''), ('78240','30249','2','1','8','0',''), ('78241','30249','3','10','','0',''), ('78242','30250','1','12','$.bout','0',''), ('78243','30250','2','1','8','0',''), ('78244','30250','3','10','','0',''), ('78245','30251','1','12','$.dreq','0',''), ('78246','30251','2','10','','0',''), ('78247','30252','1','12','$.ereq','0',''), ('78248','30252','2','10','','0',''), ('78249','30253','1','12','$.hrsp_1xx','0',''), ('78250','30253','2','10','','0',''), ('78251','30254','1','12','$.hrsp_2xx','0',''), ('78252','30254','2','10','','0',''), ('78253','30255','1','12','$.hrsp_3xx','0',''), ('78254','30255','2','10','','0',''), ('78255','30256','1','12','$.hrsp_4xx','0',''), ('78256','30256','2','10','','0',''), ('78257','30257','1','12','$.hrsp_5xx','0',''), ('78258','30257','2','10','','0',''), ('78259','30258','1','12','$.rate','0',''), ('78260','30259','1','12','$.req_rate','0',''), ('78261','30260','1','12','$.scur','0',''), ('78262','30261','1','12','$.slim','0',''), ('78263','30261','2','20','1h','0',''), ('78264','30262','1','12','$.dresp','0',''), ('78265','30262','2','10','','0',''), ('78266','30263','1','12','$.econ','0',''), ('78267','30263','2','10','','0',''), ('78268','30264','1','12','$.eresp','0',''), ('78269','30264','2','10','','0',''), ('78270','30265','1','12','$.hrsp_4xx','0',''), ('78271','30265','2','10','','0',''), ('78272','30266','1','12','$.hrsp_5xx','0',''), ('78273','30266','2','10','','0',''), ('78274','30267','1','12','$.qcur','0',''), ('78275','30268','1','12','$.qtime','0',''), ('78276','30268','2','1','0.001','0',''), ('78277','30269','1','12','$.rtime','0',''), ('78278','30269','2','1','0.001','0',''), ('78279','30270','1','12','$.status','0',''), ('78280','30270','2','20','10m','0',''), ('78282','30271','1','12','$.wredis','0',''), ('78283','30271','2','10','','0',''), ('78284','30272','1','12','$.wretr','0',''), ('78285','30272','2','10','','0',''), ('78337','30968','1','20','10m','0',''), ('78338','30969','1','20','10m','0',''), ('78339','30970','1','20','10m','0',''), ('78340','30971','1','20','10m','0',''), ('78341','30972','1','20','10m','0',''), ('78342','30973','1','20','10m','0',''), ('78343','30974','1','20','10m','0',''), ('78344','30976','1','20','10m','0',''), ('78345','30977','1','20','10m','0',''), ('78346','30978','1','20','10m','0',''), ('78347','30979','1','20','10m','0',''), ('78348','30980','1','20','10m','0',''), ('78349','30981','1','20','10m','0',''), ('78350','30982','1','20','10m','0',''), ('78351','30983','1','20','10m','0',''), ('78352','30984','1','20','10m','0',''), ('78353','30985','1','20','10m','0',''), ('78354','30986','1','20','10m','0',''), ('78355','30992','1','20','10m','0',''), ('78356','30993','1','20','10m','0',''), ('78357','30994','1','20','10m','0',''), ('78358','30995','1','20','10m','0',''), ('78359','30997','1','20','10m','0',''), ('78360','30998','1','20','10m','0',''), ('78361','30999','1','20','10m','0',''), ('78362','31000','1','20','10m','0',''), ('78363','31001','1','20','10m','0',''), ('78364','31002','1','20','10m','0',''), ('78365','31003','1','20','10m','0',''), ('78366','31004','1','20','10m','0',''), ('78367','31006','1','20','10m','0',''), ('78368','31008','1','20','10m','0',''), ('78369','31009','1','20','10m','0',''), ('78370','31010','1','20','10m','0',''), ('78371','31011','1','20','10m','0',''), ('78372','31012','1','20','10m','0',''), ('78373','31013','1','20','10m','0',''), ('78374','31014','1','20','10m','0',''), ('78375','31015','1','20','10m','0',''), ('78376','31016','1','20','10m','0',''), ('78377','31018','1','20','10m','0',''), ('78378','31019','1','20','10m','0',''), ('78379','31020','1','20','10m','0',''), ('78380','31021','1','20','10m','0',''), ('78381','31022','1','20','10m','0',''), ('78382','31023','1','20','10m','0',''), ('78383','31024','1','20','10m','0',''), ('78384','31025','1','20','10m','0',''), ('78385','31026','1','20','10m','0',''), ('78386','31027','1','20','10m','0',''), ('78387','31028','1','20','10m','0',''), ('78388','31034','1','20','10m','0',''), ('78389','31035','1','20','10m','0',''), ('78390','31036','1','20','10m','0',''), ('78391','31037','1','20','10m','0',''), ('78392','31039','1','20','10m','0',''), ('78393','31040','1','20','10m','0',''), ('78394','31041','1','20','10m','0',''), ('78395','31042','1','20','10m','0',''), ('78396','31043','1','20','10m','0',''), ('78397','31044','1','20','10m','0',''), ('78398','31045','1','20','10m','0',''), ('78399','31046','1','20','10m','0',''), ('78400','31048','1','20','10m','0',''), ('78401','31050','1','20','10m','0',''), ('78402','31051','1','20','10m','0',''), ('78403','30611','1','20','10m','0',''), ('78404','30613','1','12','$.cmd_flush','0',''), ('78405','30613','2','10','','0',''), ('78406','30614','1','12','$.bytes','0',''), ('78407','30615','1','12','$.uptime','0',''), ('78408','30616','1','12','$.total_items','0',''), ('78409','30616','2','10','','0',''), ('78410','30617','1','12','$.threads','0',''), ('78411','30618','1','12','$.get_misses','0',''), ('78412','30618','2','10','','0',''), ('78413','30619','1','12','$.get_hits','0',''), ('78414','30619','2','10','','0',''), ('78415','30620','1','12','$.evictions','0',''), ('78416','30620','2','10','','0',''), ('78417','30621','1','12','$.curr_items','0',''), ('78418','30622','1','12','$.bytes_written','0',''), ('78419','30622','2','10','','0',''), ('78420','30623','1','12','$.bytes_read','0',''), ('78421','30623','2','10','','0',''), ('78422','30624','1','12','$.pid','0',''), ('78423','30624','2','20','1d','0',''), ('78424','30625','1','12','$.cmd_get','0',''), ('78425','30625','2','10','','0',''), ('78426','30626','1','12','$.rusage_user','0',''), ('78427','30627','1','12','$.rusage_system','0',''), ('78428','30628','1','12','$.conn_yields','0',''), ('78429','30628','2','10','','0',''), ('78430','30629','1','12','$.connection_structures','0',''), ('78431','30630','1','12','$.total_connections','0',''), ('78432','30630','2','10','','0',''), ('78433','30631','1','12','$.listen_disabled_num','0',''), ('78434','30631','2','10','','0',''), ('78435','30632','1','12','$.max_connections','0',''), ('78436','30632','2','20','30m','0',''), ('78437','30633','1','12','$.curr_connections','0',''), ('78438','30634','1','12','$.limit_maxbytes','0',''), ('78439','30634','2','20','30m','0',''), ('78440','30635','1','12','$.cmd_set','0',''), ('78441','30635','2','10','','0',''), ('78442','30636','1','12','$.version','0',''), ('78443','30636','2','20','1d','0',''), ('78444','28810','1','20','10m','0',''), ('78445','28811','1','5',E'Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+) \\3','0',''), ('78446','28812','1','5',E'Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+) \\2','0',''), ('78447','28813','1','5',E'Active connections: ([0-9]+) \\1','0',''), ('78448','28814','1','5',E'Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+) \\1','0',''), ('78449','28815','1','5',E'server accepts handled requests\\s+([0-9]+) ([0-9]+) ([0-9]+) \\2','0',''), ('78450','28815','2','10','','0',''), ('78451','28816','1','21',E'var a = value.match(/server accepts handled requests\\s+([0-9]+) ([0-9]+) ([0-9]+)/) if (a) { return a[1]-a[2] }','0',''), ('78452','28816','2','10','','0',''), ('78453','28817','1','5',E'server accepts handled requests\\s+([0-9]+) ([0-9]+) ([0-9]+) \\1','0',''), ('78454','28817','2','10','','0',''), ('78455','28818','1','5',E'server accepts handled requests\\s+([0-9]+) ([0-9]+) ([0-9]+) \\3','0',''), ('78456','28818','2','10','','0',''), ('78457','28819','1','5',E'server accepts handled requests\\s+([0-9]+) ([0-9]+) ([0-9]+) \\3','0',''), ('78458','28820','1','5',E'(?i)Server: nginx\\/(.+(?(.*)<.*/); if (matches) { return JSON.stringify([{"{#MASTER_HOST}": matches[1]}]); } return ''[]'';','0',''), ('79264','30473','2','20','1d','0',''), ('79265','30474','1','20','1h','0',''), ('79266','30476','1','11','/resultset/row/field[@name=''Seconds_Behind_Master'']/text()','0',''), ('79267','30476','2','20','1h','0',''), ('79268','30476','3','15','null','3','Replication is not performed.'), ('79269','30477','1','11','/resultset/row/field[@name=''Slave_IO_Running'']/text()','0',''), ('79270','30477','2','20','1h','0',''), ('79271','30478','1','11','/resultset/row/field[@name=''Slave_SQL_Running'']/text()','0',''), ('79272','30478','2','20','1h','0',''), ('79273','30637','1','20','6h','0',''), ('79274','30638','1','20','10m','0',''), ('79275','30642','1','12','$.Innodb_buffer_pool_reads','0',''), ('79276','30643','1','12','$.Innodb_buffer_pool_reads','0',''), ('79277','30643','2','10','','0',''), ('79278','30644','1','12','$.Innodb_row_lock_time','0',''), ('79279','30644','2','1','0.001','0',''), ('79280','30644','3','20','1h','0',''), ('79281','30645','1','12','$.Innodb_row_lock_time_max','0',''), ('79282','30645','2','1','0.001','0',''), ('79283','30645','3','20','1h','0',''), ('79284','30646','1','12','$.Innodb_row_lock_waits','0',''), ('79285','30647','1','12','$.Max_used_connections','0',''), ('79286','30647','2','20','1h','0',''), ('79287','30648','1','12','$.Queries','0',''), ('79288','30648','2','10','','0',''), ('79289','30649','1','12','$.Innodb_buffer_pool_read_requests','0',''), ('79290','30650','1','12','$.Questions','0',''), ('79291','30650','2','10','','0',''), ('79292','30651','1','12','$.Slow_queries','0',''), ('79293','30651','2','10','','0',''), ('79294','30652','1','12','$.Threads_cached','0',''), ('79295','30653','1','12','$.Threads_connected','0',''), ('79296','30655','1','12','$.Threads_running','0',''), ('79297','30656','1','12','$.Uptime','0',''), ('79298','30657','1','12','$.Innodb_buffer_pool_read_requests','0',''), ('79299','30657','2','10','','0',''), ('79300','30658','1','12','$.Innodb_buffer_pool_pages_total','0',''), ('79301','30658','2','20','1h','0',''), ('79302','30659','1','12','$.Bytes_received','0',''), ('79303','30659','2','10','','0',''), ('79304','30660','1','12','$.Connection_errors_max_connections','0',''), ('79305','30660','2','10','','0',''), ('79306','30661','1','12','$.Bytes_sent','0',''), ('79307','30661','2','10','','0',''), ('79308','30662','1','12','$.Com_delete','0',''), ('79309','30662','2','10','','0',''), ('79310','30663','1','12','$.Com_insert','0',''), ('79311','30663','2','10','','0',''), ('79312','30664','1','12','$.Com_select','0',''), ('79313','30664','2','10','','0',''), ('79314','30665','1','12','$.Com_update','0',''), ('79315','30665','2','10','','0',''), ('79316','30666','1','12','$.Connection_errors_accept','0',''), ('79317','30666','2','10','','0',''), ('79318','30667','1','12','$.Connection_errors_internal','0',''), ('79319','30667','2','10','','0',''), ('79320','30668','1','12','$.Connection_errors_peer_address','0',''), ('79321','30668','2','10','','0',''), ('79322','30669','1','12','$.Innodb_buffer_pool_pages_free','0',''), ('79323','30670','1','12','$.Connection_errors_select','0',''), ('79324','30670','2','10','','0',''), ('79325','30671','1','12','$.Connection_errors_tcpwrap','0',''), ('79326','30671','2','10','','0',''), ('79327','30672','1','12','$.Connections','0',''), ('79328','30672','2','10','','0',''), ('79329','30676','1','12','$.Aborted_connects','0',''), ('79330','30676','2','10','','0',''), ('79331','30677','1','12','$.Aborted_clients','0',''), ('79332','30677','2','10','','0',''), ('79333','31172','1','12','$.Threads_created','0',''), ('79334','31172','2','10','','0',''), ('79335','31173','1','12','$.Created_tmp_disk_tables','0',''), ('79336','31173','2','10','','0',''), ('79337','31174','1','12','$.Created_tmp_files','0',''), ('79338','31174','2','10','','0',''), ('79339','31175','1','12','$.Created_tmp_tables','0',''), ('79340','31175','2','10','','0',''), ('79341','30678','1','20','1d','0',''), ('79342','30679','1','20','1d','0',''), ('79343','30680','1','20','1h','0',''), ('79344','30682','1','12','$.Seconds_Behind_Master','0',''), ('79345','30682','2','14',E'\\d+','3','Replication is not performed.'), ('79346','30682','3','20','1h','0',''), ('79347','30683','1','12','$.Slave_IO_Running','0',''), ('79348','30683','2','20','1h','0',''), ('79349','30684','1','12','$.Slave_SQL_Running','0',''), ('79350','30684','2','20','1h','0',''), ('79351','30480','1','20','6h','0',''), ('79352','30481','1','20','10m','0',''), ('79353','30484','1','12','$[?(@.Variable_name==''Innodb_row_lock_waits'')].Value.first()','0',''), ('79354','30485','1','12','$[?(@.Variable_name==''Innodb_buffer_pool_read_requests'')].Value.first()','0',''), ('79355','30486','1','12','$[?(@.Variable_name==''Innodb_buffer_pool_read_requests'')].Value.first()','0',''), ('79356','30486','2','10','','0',''), ('79357','30487','1','12','$[?(@.Variable_name==''Innodb_buffer_pool_reads'')].Value.first()','0',''), ('79358','30488','1','12','$[?(@.Variable_name==''Innodb_buffer_pool_reads'')].Value.first()','0',''), ('79359','30488','2','10','','0',''), ('79360','30489','1','12','$[?(@.Variable_name==''Innodb_row_lock_time'')].Value.first()','0',''), ('79361','30489','2','1','0.001','0',''), ('79362','30489','3','20','1h','0',''), ('79363','30490','1','12','$[?(@.Variable_name==''Innodb_row_lock_time_max'')].Value.first()','0',''), ('79364','30490','2','1','0.001','0',''), ('79365','30490','3','20','1h','0',''), ('79366','30491','1','12','$[?(@.Variable_name==''Queries'')].Value.first()','0',''), ('79367','30491','2','10','','0',''), ('79368','30492','1','12','$[?(@.Variable_name==''Max_used_connections'')].Value.first()','0',''), ('79369','30492','2','20','1h','0',''), ('79370','30493','1','12','$[?(@.Variable_name==''Innodb_buffer_pool_pages_free'')].Value.first()','0',''), ('79371','30494','1','12','$[?(@.Variable_name==''Questions'')].Value.first()','0',''), ('79372','30494','2','10','','0',''), ('79373','30495','1','12','$[?(@.Variable_name==''Slow_queries'')].Value.first()','0',''), ('79374','30495','2','10','','0',''), ('79375','30496','1','12','$[?(@.Variable_name==''Threads_cached'')].Value.first()','0',''), ('79376','30497','1','12','$[?(@.Variable_name==''Threads_connected'')].Value.first()','0',''), ('79377','30499','1','12','$[?(@.Variable_name==''Threads_running'')].Value.first()','0',''), ('79378','30500','1','12','$[?(@.Variable_name==''Innodb_buffer_pool_pages_total'')].Value.first()','0',''), ('79379','30500','2','20','1h','0',''), ('79380','30503','1','12','$[?(@.Variable_name==''Com_select'')].Value.first()','0',''), ('79381','30503','2','10','','0',''), ('79382','30504','1','12','$[?(@.Variable_name==''Aborted_clients'')].Value.first()','0',''), ('79383','30504','2','10','','0',''), ('79384','30505','1','12','$[?(@.Variable_name==''Aborted_connects'')].Value.first()','0',''), ('79385','30505','2','10','','0',''), ('79386','30506','1','12','$[?(@.Variable_name==''Bytes_received'')].Value.first()','0',''), ('79387','30506','2','10','','0',''), ('79388','30507','1','12','$[?(@.Variable_name==''Bytes_sent'')].Value.first()','0',''), ('79389','30507','2','10','','0',''), ('79390','30508','1','12','$[?(@.Variable_name==''Com_delete'')].Value.first()','0',''), ('79391','30508','2','10','','0',''), ('79392','30509','1','12','$[?(@.Variable_name==''Com_insert'')].Value.first()','0',''), ('79393','30509','2','10','','0',''), ('79394','30510','1','12','$[?(@.Variable_name==''Com_update'')].Value.first()','0',''), ('79395','30510','2','10','','0',''), ('79396','30512','1','12','$[?(@.Variable_name==''Connection_errors_accept'')].Value.first()','0',''), ('79397','30512','2','10','','0',''), ('79398','30513','1','12','$[?(@.Variable_name==''Connection_errors_internal'')].Value.first()','0',''), ('79399','30513','2','10','','0',''), ('79400','30514','1','12','$[?(@.Variable_name==''Connection_errors_max_connections'')].Value.first()','0',''), ('79401','30514','2','10','','0',''), ('79402','30515','1','12','$[?(@.Variable_name==''Connection_errors_peer_address'')].Value.first()','0',''), ('79403','30515','2','10','','0',''), ('79404','30516','1','12','$[?(@.Variable_name==''Connection_errors_select'')].Value.first()','0',''), ('79405','30516','2','10','','0',''), ('79406','30517','1','12','$[?(@.Variable_name==''Connection_errors_tcpwrap'')].Value.first()','0',''), ('79407','30517','2','10','','0',''), ('79408','30518','1','12','$[?(@.Variable_name==''Connections'')].Value.first()','0',''), ('79409','30518','2','10','','0',''), ('79410','30519','1','12','$[?(@.Variable_name==''Uptime'')].Value.first()','0',''), ('79411','31176','1','12','$[?(@.Variable_name==''Threads_created'')].Value.first()','0',''), ('79412','31176','2','10','','0',''), ('79413','31177','1','12','$[?(@.Variable_name==''Created_tmp_disk_tables'')].Value.first()','0',''), ('79414','31177','2','10','','0',''), ('79415','31178','1','12','$[?(@.Variable_name==''Created_tmp_tables'')].Value.first()','0',''), ('79416','31178','2','10','','0',''), ('79417','31179','1','12','$[?(@.Variable_name==''Created_tmp_files'')].Value.first()','0',''), ('79418','31179','2','10','','0',''), ('79419','30520','1','20','1d','0',''), ('79420','30521','1','20','1d','0',''), ('79421','30522','1','20','1h','0',''), ('79422','30524','1','12','$.Seconds_Behind_Master','0',''), ('79423','30524','2','14',E'\\d+','3','Replication is not performed.'), ('79424','30524','3','20','1h','0',''), ('79425','30525','1','12','$.Slave_IO_Running','0',''), ('79426','30525','2','20','1h','0',''), ('79427','30526','1','12','$.Slave_SQL_Running','0',''), ('79428','30526','2','20','1h','0',''), ('79429','31684','1','20','10m','0',''), ('79430','31685','1','12','$.datafile_num','0',''), ('79431','31687','1','12','$.proc_num','0',''), ('79432','31695','1','12','$.available','0',''), ('79433','31696','1','12','$.exp_passwd_days_before','0',''), ('79434','31701','1','12','$.active_user','2','0'), ('79435','31702','1','12','$.[''Rows Per Sort'']','0',''), ('79436','31703','1','12','$.active_background','2','0'), ('79437','31704','1','12','$.concurrency_rate','0',''), ('79438','31705','1','12','$.total','0',''), ('79439','31706','1','12','$.inactive_user','2','0'), ('79440','31707','1','12','$.[''SQL Service Response Time'']','0',''), ('79441','31707','2','1','0.01','0',''), ('79442','31708','1','12','$.sessions','0',''), ('79443','31709','1','12','$.lock_rate','0',''), ('79444','31710','1','12','$.processes','0',''), ('79445','31711','1','12','$.[''Active Parallel Sessions'']','0',''), ('79446','31712','1','12','$.long_time_locked','0',''), ('79447','31713','1','12','$.buffer_cache','0',''), ('79448','31714','1','12','$.fixed_sga','0',''), ('79449','31715','1','12','$.java_pool','0',''), ('79450','31716','1','12','$.log_buffer','0',''), ('79451','31717','1','12','$.shared_pool','0',''), ('79452','31718','1','12','$.[''Shared Pool Free %'']','0',''), ('79453','31719','1','12','$.[''Total Sorts Per User Call'']','0',''), ('79454','31720','1','12','$.[''Temp Space Used'']','0',''), ('79455','31721','1','12','$.[''total PGA allocated'']','0',''), ('79456','31722','1','12','$.[''total freeable PGA memory'']','0',''), ('79457','31723','1','12','$.[''total PGA inuse'']','0',''), ('79458','31724','1','12','$.uptime','0',''), ('79459','31725','1','12','$.[''User Rollbacks Per Sec'']','0',''), ('79460','31726','1','12','$.large_pool','0',''), ('79461','31727','1','12','$.[''Physical Read Bytes Per Sec'']','0',''), ('79462','31728','1','12','$.[''Physical Writes Per Sec'']','0',''), ('79463','31729','1','12','$.space_reclaimable','0',''), ('79464','31730','1','12','$.[''Average Active Sessions'']','0',''), ('79465','31731','1','12','$..archiver.first()','0',''), ('79466','31732','1','12','$.[''Buffer Cache Hit Ratio'']','0',''), ('79467','31733','1','12','$.[''Global Cache Blocks Corrupted'']','0',''), ('79468','31734','1','12','$.[''Global Cache Blocks Lost'']','0',''), ('79469','31735','1','12','$.[''Cursor Cache Hit Ratio'']','0',''), ('79470','31736','1','12','$.[''Database CPU Time Ratio'']','0',''), ('79471','31737','1','12','$.[''Database Wait Time Ratio'']','0',''), ('79472','31738','1','12','$.db_files','0',''), ('79473','31739','1','12','$.[''Disk Sort Per Sec'']','0',''), ('79474','31740','1','12','$.[''Enqueue Timeouts Per Sec'']','0',''), ('79475','31741','1','12','$.number_of_files','0',''), ('79476','31742','1','12','$.restore_point','0',''), ('79477','31743','1','12','$.space_limit','0',''), ('79478','31744','1','12','$.space_used','0',''), ('79479','31745','1','12','$.[''Physical Write Bytes Per Sec'']','0',''), ('79480','31746','1','12','$.usable_pct','0',''), ('79481','31747','1','12','$.[''GC CR Block Received Per Second'']','0',''), ('79482','31748','1','12','$..hostname.first()','0',''), ('79483','31749','1','12','$.instance','0',''), ('79484','31750','1','12','$.status','0',''), ('79485','31751','1','12','$.role','0',''), ('79486','31752','1','12','$.[''Library Cache Hit Ratio'']','0',''), ('79487','31753','1','12','$.[''Logons Per Sec'']','0',''), ('79488','31754','1','12','$.[''Long Table Scans Per Sec'']','0',''), ('79489','31755','1','12','$.[''Memory Sorts Ratio'']','0',''), ('79490','31756','1','12','$.[''global memory bound'']','0',''), ('79491','31757','1','12','$.[''aggregate PGA target parameter'']','0',''), ('79492','31758','1','12','$.[''Active Serial Sessions'']','0',''), ('79493','31759','1','12','$.[''Physical Reads Per Sec'']','0',''), ('79494','31760','1','20','12h','0',''), ('79517','31183','1','20','10m','0',''), ('79518','31184','1','20','10m','0',''), ('79519','31189','1','12','$..VERSION.first()','0',''), ('79520','31189','2','20','1d','0',''), ('79521','31190','1','12','$[?(@.METRIC==''SESSION::Lock rate'')].VALUE.first()','0',''), ('79522','31191','1','12','$[?(@.METRIC==''SYS::Physical Writes Per Sec'')].VALUE.first()','0',''), ('79523','31192','1','12','$[?(@.METRIC==''PROC::Procnum'')].VALUE.first()','0',''), ('79524','31193','1','12','$[?(@.METRIC==''SYSPARAM::Processes'')].VALUE.first()','0',''), ('79525','31194','1','12','$[?(@.METRIC==''REDO::Available'')].VALUE.first()','0',''), ('79526','31195','1','12','$[?(@.METRIC==''SYS::Rows Per Sort'')].VALUE.first()','0',''), ('79527','31196','1','12','$[?(@.METRIC==''SYS::SQL Service Response Time'')].VALUE.first()','0',''), ('79528','31196','2','1','0.01','0',''), ('79529','31197','1','12','$[?(@.METRIC==''SESSION::Active Background'')].VALUE.first()','2','0'), ('79530','31198','1','12','$[?(@.METRIC==''SESSION::Active User'')].VALUE.first()','2','0'), ('79531','31199','1','12','$[?(@.METRIC==''SESSION::Concurrency rate'')].VALUE.first()','0',''), ('79532','31200','1','12','$[?(@.METRIC==''SESSION::Total'')].VALUE.first()','0',''), ('79533','31201','1','12','$[?(@.METRIC==''SESSION::Inactive User'')].VALUE.first()','2','0'), ('79534','31202','1','12','$[?(@.METRIC==''SYSPARAM::Sessions'')].VALUE.first()','0',''), ('79535','31203','1','12','$[?(@.METRIC==''SESSION::Long time locked'')].VALUE.first()','0',''), ('79536','31204','1','12','$[?(@.METRIC==''SYS::User Rollbacks Per Sec'')].VALUE.first()','0',''), ('79537','31205','1','12','$[?(@.METRIC==''SGA::Buffer_Cache'')].VALUE.first()','2','0'), ('79538','31206','1','12','$[?(@.METRIC==''SYS::Physical Write Bytes Per Sec'')].VALUE.first()','0',''), ('79539','31207','1','12','$[?(@.METRIC==''SGA::Java Pool'')].VALUE.first()','2','0'), ('79540','31208','1','12','$[?(@.METRIC==''SGA::Large Pool'')].VALUE.first()','2','0'), ('79541','31209','1','12','$[?(@.METRIC==''SGA::Log_Buffer'')].VALUE.first()','2','0'), ('79542','31210','1','12','$[?(@.METRIC==''SGA::Shared Pool'')].VALUE.first()','2','0'), ('79543','31211','1','12','$[?(@.METRIC==''SYS::Shared Pool Free %'')].VALUE.first()','0',''), ('79544','31212','1','12','$[?(@.METRIC==''SYS::Total Sorts Per User Call'')].VALUE.first()','0',''), ('79545','31213','1','12','$[?(@.METRIC==''SYS::Temp Space Used'')].VALUE.first()','0',''), ('79546','31214','1','12','$[?(@.METRIC==''PGA::Total Pga Allocated'')].VALUE.first()','0',''), ('79547','31215','1','12','$[?(@.METRIC==''PGA::Total Freeable Pga Memory'')].VALUE.first()','0',''), ('79548','31216','1','12','$[?(@.METRIC==''PGA::Total Pga Inuse'')].VALUE.first()','0',''), ('79549','31217','1','12','$..UPTIME.first()','0',''), ('79550','31218','1','12','$[?(@.METRIC==''USER::Expire password'')].VALUE.first()','0',''), ('79551','31219','1','12','$[?(@.METRIC==''SGA::Fixed_Sga'')].VALUE.first()','2','0'), ('79552','31220','1','12','$[?(@.METRIC==''SYS::Physical Read Bytes Per Sec'')].VALUE.first()','0',''), ('79553','31221','1','12','$[?(@.METRIC==''SYS::Physical Reads Per Sec'')].VALUE.first()','0',''), ('79554','31222','1','12','$[?(@.METRIC==''SYS::Enqueue Timeouts Per Sec'')].VALUE.first()','0',''), ('79555','31223','1','12','$[?(@.METRIC==''SYS::Active Parallel Sessions'')].VALUE.first()','0',''), ('79556','31224','1','12','$[?(@.METRIC==''SYS::Active Serial Sessions'')].VALUE.first()','0',''), ('79557','31225','1','12','$[?(@.METRIC==''SYS::Average Active Sessions'')].VALUE.first()','0',''), ('79558','31226','1','12','$..ARCHIVER.first()','0',''), ('79559','31227','1','12','$[?(@.METRIC==''SYS::Buffer Cache Hit Ratio'')].VALUE.first()','0',''), ('79560','31228','1','12','$[?(@.METRIC==''SYS::Global Cache Blocks Corrupted'')].VALUE.first()','0',''), ('79561','31229','1','12','$[?(@.METRIC==''SYS::Global Cache Blocks Lost'')].VALUE.first()','0',''), ('79562','31230','1','12','$[?(@.METRIC==''SYS::Cursor Cache Hit Ratio'')].VALUE.first()','0',''), ('79563','31231','1','12','$[?(@.METRIC==''SYS::Database CPU Time Ratio'')].VALUE.first()','0',''), ('79564','31232','1','12','$[?(@.METRIC==''SYS::Database Wait Time Ratio'')].VALUE.first()','0',''), ('79565','31233','1','12','$[?(@.METRIC==''DATAFILE::Count'')].VALUE.first()','0',''), ('79566','31234','1','12','$[?(@.METRIC==''SYSPARAM::Db_Files'')].VALUE.first()','0',''), ('79567','31235','1','12','$[?(@.METRIC==''SYS::Disk Sort Per Sec'')].VALUE.first()','0',''), ('79568','31236','1','12','$[?(@.METRIC==''FRA::Number Of Files'')].VALUE.first()','2','0'), ('79569','31237','1','12','$[?(@.METRIC==''PGA::Aggregate Pga Target Parameter'')].VALUE.first()','0',''), ('79570','31238','1','12','$[?(@.METRIC==''FRA::Restore Point'')].VALUE.first()','0',''), ('79571','31239','1','12','$[?(@.METRIC==''FRA::Space Limit'')].VALUE.first()','2','0'), ('79572','31240','1','12','$[?(@.METRIC==''FRA::Space Reclaimable'')].VALUE.first()','2','0'), ('79573','31241','1','12','$[?(@.METRIC==''FRA::Space Used'')].VALUE.first()','2','0'), ('79574','31242','1','12','$[?(@.METRIC==''FRA::Usable Pct'')].VALUE.first()','2','0'), ('79575','31243','1','12','$[?(@.METRIC==''SYS::GC CR Block Received Per Second'')].VALUE.first()','0',''), ('79576','31244','1','12','$..HOST_NAME.first()','0',''), ('79577','31245','1','12','$..INSTANCE_NAME.first()','0',''), ('79578','31246','1','12','$..STATUS.first()','0',''), ('79579','31247','1','12','$..INSTANCE_ROLE.first()','0',''), ('79580','31248','1','12','$[?(@.METRIC==''SYS::Library Cache Hit Ratio'')].VALUE.first()','0',''), ('79581','31249','1','12','$[?(@.METRIC==''SYS::Logons Per Sec'')].VALUE.first()','0',''), ('79582','31250','1','12','$[?(@.METRIC==''SYS::Long Table Scans Per Sec'')].VALUE.first()','0',''), ('79583','31251','1','12','$[?(@.METRIC==''PGA::Global Memory Bound'')].VALUE.first()','0',''), ('79584','31252','1','12','$[?(@.METRIC==''SYS::Memory Sorts Ratio'')].VALUE.first()','0',''), ('79606','32366','1','5',E'Time:\\s+(\\d+\\.\\d+)\\s+ms \\1','0',''), ('79607','32367','1','21','return value.search(/accepting connections/)>0 ? 1 : 0','0',''), ('79608','32367','2','20','1h','0',''), ('79609','32373','1','20','1h','0',''), ('79610','32378','1','20','1d','0',''), ('79611','32381','1','12','$.idle','0',''), ('79612','32382','1','12','$.active','0',''), ('79613','32383','1','12','$.prepared','0',''), ('79614','32384','1','12','$.waiting','0',''), ('79615','32385','1','12','$.count','0',''), ('79616','32386','1','12','$.buffers_alloc','0',''), ('79617','32386','2','10','','0',''), ('79618','32387','1','12','$.buffers_backend','1',''), ('79619','32387','2','10','','0',''), ('79620','32388','1','12','$.checkpoint_write_time','0',''), ('79621','32388','2','1','0.001','0',''), ('79622','32388','3','10','','0',''), ('79623','32389','1','12','$.buffers_backend_fsync','1',''), ('79624','32389','2','10','','0',''), ('79625','32390','1','12','$.buffers_checkpoint','0',''), ('79626','32390','2','10','','0',''), ('79627','32391','1','12','$.buffers_clean','0',''), ('79628','32391','2','10','','0',''), ('79629','32392','1','12','$.checkpoints_req','0',''), ('79630','32392','2','10','','0',''), ('79631','32393','1','12','$.checkpoints_timed','0',''), ('79632','32393','2','10','','0',''), ('79633','32394','1','12','$.checkpoint_sync_time','0',''), ('79634','32394','2','1','0.001','0',''), ('79635','32394','3','10','','0',''), ('79636','32395','1','12','$.maxwritten_clean','0',''), ('79637','32395','2','10','','0',''), ('79638','32396','1','12','$.waiting','0',''), ('79639','32397','1','12','$.active','0',''), ('79640','32398','1','12','$.idle','0',''), ('79641','32399','1','12','$.idle_in_transaction','0',''), ('79642','32400','1','12','$.prepared','0',''), ('79643','32401','1','12','$.total','0',''), ('79644','32402','1','12','$.total_pct','0',''), ('79645','32403','1','12','$.write','0',''), ('79646','32403','2','10','','0',''), ('79647','32408','1','12','$.conflicts','0',''), ('79648','32408','2','10','','0',''), ('79649','32409','1','12','$[''{#DBNAME}''].total','0',''), ('79650','32410','1','12','$.seq','0',''), ('79651','32410','2','10','','0',''), ('79652','32411','1','12','$.idx','0',''), ('79653','32411','2','10','','0',''), ('79654','32412','1','12','$.tx_time_sum','0',''), ('79655','32413','1','12','$.tx_time_max','0',''), ('79656','32414','1','12','$.tx_slow_count','0',''), ('79657','32415','1','12','$.query_time_sum','0',''), ('79658','32416','1','12','$.query_time_max','0',''), ('79659','32417','1','12','$.query_slow_count','0',''), ('79660','32418','1','12','$.mro_time_sum','0',''), ('79661','32419','1','12','$.mro_time_max','0',''), ('79662','32420','1','12','$.mro_slow_count','0',''), ('79663','32421','1','12','$.blks_read','0',''), ('79664','32421','2','10','','0',''), ('79665','32422','1','12','$.deadlocks','0',''), ('79666','32422','2','10','','0',''), ('79667','32423','1','12','$.blks_hit','0',''), ('79668','32423','2','10','','0',''), ('79669','32424','1','12','$.prc_before_av','0',''), ('79670','32425','1','12','$.xact_rollback','0',''), ('79671','32425','2','10','','0',''), ('79672','32426','1','12','$.xact_commit','0',''), ('79673','32426','2','10','','0',''), ('79674','32427','1','12','$.tup_updated','0',''), ('79675','32427','2','10','','0',''), ('79676','32428','1','12','$.tup_returned','0',''), ('79677','32428','2','10','','0',''), ('79678','32429','1','12','$.tup_inserted','0',''), ('79679','32429','2','10','','0',''), ('79680','32430','1','12','$.tup_fetched','0',''), ('79681','32430','2','10','','0',''), ('79682','32431','1','12','$.tup_deleted','0',''), ('79683','32431','2','10','','0',''), ('79684','32432','1','12','$.temp_files','0',''), ('79685','32432','2','10','','0',''), ('79686','32433','1','12','$.temp_bytes','0',''), ('79687','32433','2','10','','0',''), ('79688','32434','1','12','$.prc_before_stop','0',''), ('79689','31282','1','20','1h','0',''), ('79690','31291','1','12','$.tup_fetched','0',''), ('79691','31291','2','10','','0',''), ('79692','31292','1','12','$.numbackends','0',''), ('79693','31293','1','12','$.deadlocks','0',''), ('79694','31293','2','10','','0',''), ('79695','31294','1','12','$.temp_bytes','0',''), ('79696','31294','2','10','','0',''), ('79697','31295','1','12','$.temp_files','0',''), ('79698','31295','2','10','','0',''), ('79699','31296','1','12','$.tup_deleted','0',''), ('79700','31296','2','10','','0',''), ('79701','31297','1','12','$.archived_count','0',''), ('79702','31298','1','12','$.tup_inserted','0',''), ('79703','31298','2','10','','0',''), ('79704','31299','1','12','$.tup_returned','0',''), ('79705','31299','2','10','','0',''), ('79706','31300','1','12','$.tup_updated','0',''), ('79707','31300','2','10','','0',''), ('79708','31301','1','12','$.xact_commit','0',''), ('79709','31301','2','10','','0',''), ('79710','31302','1','12','$.xact_rollback','0',''), ('79711','31302','2','10','','0',''), ('79712','31303','1','12','$.checksum_failures','0',''), ('79713','31303','2','14',E'^\\d*$','2','-2'), ('79714','31303','3','10','','2','-1'), ('79715','31304','1','12','$.count','0',''), ('79716','31305','1','12','$.conflicts','0',''), ('79717','31305','2','10','','0',''), ('79718','31306','1','12','$.blk_write_time','0',''), ('79719','31306','2','1','0.001','0',''), ('79720','31307','1','12','$.blks_read','0',''), ('79721','31307','2','10','','0',''), ('79725','31309','1','12','$.failed_count','0',''), ('79726','31310','1','12','$.size_files','0',''), ('79727','31311','1','12','$.buffers_alloc','0',''), ('79728','31311','2','10','','0',''), ('79729','31312','1','12','$.buffers_backend_fsync','1',''), ('79730','31312','2','10','','0',''), ('79731','31313','1','12','$.buffers_backend','1',''), ('79732','31313','2','10','','0',''), ('79733','31314','1','12','$.buffers_checkpoint','0',''), ('79734','31314','2','10','','0',''), ('79735','31315','1','12','$.buffers_clean','0',''), ('79736','31315','2','10','','0',''), ('79737','31316','1','12','$.checkpoint_write_time','0',''), ('79738','31316','2','1','0.001','0',''), ('79739','31316','3','10','','0',''), ('79740','31317','1','12','$.checkpoints_req','0',''), ('79741','31317','2','10','','0',''), ('79742','31318','1','12','$.checkpoints_timed','0',''), ('79743','31318','2','10','','0',''), ('79744','31319','1','12','$.maxwritten_clean','0',''), ('79745','31319','2','10','','0',''), ('79746','31320','1','12','$.active','0',''), ('79747','31321','1','12','$.blks_hit','0',''), ('79748','31321','2','10','','0',''), ('79749','31322','1','12','$.disabled','0',''), ('79750','31323','1','12','$.fastpath_function_call','0',''), ('79751','31324','1','12','$.idle','0',''), ('79752','31325','1','12','$.idle_in_transaction','0',''), ('79753','31326','1','12','$.idle_in_transaction_aborted','0',''), ('79754','31327','1','12','$.prepared','0',''), ('79755','31328','1','12','$.total','0',''), ('79756','31329','1','12','$.total_pct','0',''), ('79757','31330','1','12','$.waiting','0',''), ('79758','31331','1','12','$.blk_read_time','0',''), ('79759','31331','2','1','0.001','0',''), ('79760','31332','1','12','$.count_files','0',''), ('79761','31333','1','12','$.write','0',''), ('79762','31333','2','10','','0',''), ('79763','31338','1','12','$.tup_returned','0',''), ('79764','31338','2','10','','0',''), ('79765','31339','1','12','$.shareupdateexclusive','0',''), ('79766','31340','1','12','$.sharerowexclusive','0',''), ('79767','31341','1','12','$.share','0',''), ('79768','31342','1','12','$.rowshare','1',''), ('79769','31343','1','12','$.rowexclusive','0',''), ('79770','31344','1','12','$.exclusive','0',''), ('79771','31345','1','12','$.accessshare','0',''), ('79772','31346','1','12','$.accessexclusive','0',''), ('79773','31347','1','12','$.xact_rollback','0',''), ('79774','31347','2','10','','0',''), ('79775','31348','1','12','$.xact_commit','0',''), ('79776','31348','2','10','','0',''), ('79777','31349','1','12','$.tup_updated','0',''), ('79778','31349','2','10','','0',''), ('79779','31350','1','12','$.tup_fetched','0',''), ('79780','31350','2','10','','0',''), ('79781','31351','1','12','$.tup_inserted','0',''), ('79782','31351','2','10','','0',''), ('79783','31352','1','12','$.tup_deleted','0',''), ('79784','31352','2','10','','0',''), ('79785','31353','1','12','$.temp_files','0',''), ('79786','31353','2','10','','0',''), ('79787','31354','1','12','$.temp_bytes','0',''), ('79788','31354','2','10','','0',''), ('79789','31355','1','12','$.numbackends','0',''), ('79790','31356','1','12','$.deadlocks','0',''), ('79791','31356','2','10','','0',''), ('79792','31357','1','12','$.conflicts','0',''), ('79793','31357','2','10','','0',''), ('79794','31358','1','12','$.checksum_failures','0',''), ('79795','31358','2','14',E'^\\d*$','2','-2'), ('79797','31359','1','12','$.blks_read','0',''), ('79798','31359','2','10','','0',''), ('79799','31360','1','12','$.blks_hit','0',''), ('79800','31360','2','10','','0',''), ('79801','31361','1','12','$.blk_write_time','0',''), ('79802','31361','2','1','0.001','0',''), ('79803','31361','3','10','','0',''), ('79804','31362','1','12','$.blk_read_time','0',''), ('79805','31362','2','1','0.001','0',''), ('79806','31362','3','10','','0',''), ('79807','31363','1','12','$.total','0',''), ('79808','30273','1','20','10m','0',''), ('79809','30274','1','10','','0',''), ('79810','30275','1','20','1h','0',''), ('79811','30277','1','12','$.blocked_clients','0',''), ('79812','30278','1','12','$.tcp_port','0',''), ('79813','30278','2','20','1d','0',''), ('79814','30279','1','12','$.expired_keys','0',''), ('79815','30280','1','12','$.evicted_keys','0',''), ('79816','30281','1','12','$.uptime_in_seconds','0',''), ('79817','30282','1','12','$.redis_mode','0',''), ('79818','30282','2','20','1d','0',''), ('79819','30283','1','12','$.redis_version','0',''), ('79820','30283','2','20','1d','0',''), ('79821','30284','1','12','$.instantaneous_ops_per_sec','0',''), ('79822','30285','1','12','$.process_id','0',''), ('79823','30285','2','20','1d','0',''), ('79824','30286','1','12','$.role','0',''), ('79825','30286','2','20','1d','0',''), ('79826','30287','1','12','$.repl_backlog_size','0',''), ('79827','30288','1','12','$.repl_backlog_histlen','0',''), ('79828','30289','1','12','$.instantaneous_input_kbps','0',''), ('79829','30289','2','1','1024','0',''), ('79830','30290','1','12','$.keyspace_hits','0',''), ('79831','30291','1','12','$.instantaneous_output_kbps','0',''), ('79832','30291','2','1','1024','0',''), ('79833','30292','1','12','$.repl_backlog_active','0',''), ('79834','30293','1','12','$.keyspace_misses','0',''), ('79835','30294','1','12','$.latest_fork_usec','0',''), ('79836','30294','2','1','1.0E-5','0',''), ('79837','30295','1','12','$.migrate_cached_sockets','0',''), ('79838','30296','1','12','$.pubsub_channels','0',''), ('79839','30297','1','12','$.pubsub_patterns','0',''), ('79840','30298','1','12','$.rejected_connections','0',''), ('79841','30299','1','12','$.sync_full','0',''), ('79842','30300','1','12','$.sync_partial_err','0',''), ('79843','30301','1','12','$.sync_partial_ok','0',''), ('79844','30302','1','12','$.total_commands_processed','0',''), ('79845','30303','1','12','$.total_connections_received','0',''), ('79846','30304','1','12','$.total_net_input_bytes','0',''), ('79847','30305','1','12','$.repl_backlog_first_byte_offset','0',''), ('79848','30306','1','12','$.connected_slaves','0',''), ('79849','30307','1','12','$.master_repl_offset','0',''), ('79850','30308','1','12','$.used_memory_rss','0',''), ('79851','30309','1','21','var clients = JSON.parse(value) return clients.client_recent_max_input_buffer || clients.client_biggest_input_buf','0',''), ('79852','30310','1','21','var clients = JSON.parse(value) return clients.client_recent_max_output_buffer || clients.client_longest_output_list','0',''), ('79853','30311','1','12','$.Cluster.cluster_enabled','0',''), ('79854','30312','1','12','$.maxclients','0',''), ('79855','30312','2','20','30m','0',''), ('79856','30313','1','12','$.used_cpu_sys','0',''), ('79857','30314','1','12','$.used_cpu_sys_children','0',''), ('79858','30315','1','12','$.used_cpu_user','0',''), ('79859','30316','1','12','$.used_cpu_user_children','0',''), ('79860','30317','1','12','$.mem_fragmentation_ratio','0',''), ('79861','30318','1','12','$.used_memory','0',''), ('79862','30319','1','12','$.used_memory_lua','0',''), ('79863','30320','1','12','$.used_memory_peak','0',''), ('79864','30321','1','12','$.aof_current_rewrite_time_sec','0',''), ('79865','30322','1','12','$.connected_clients','0',''), ('79866','30323','1','12','$.aof_enabled','0',''), ('79867','30324','1','12','$.aof_last_bgrewrite_status','0',''), ('79868','30324','2','6','','0',''), ('79869','30325','1','12','$.aof_last_rewrite_time_sec','0',''), ('79870','30326','1','12','$.aof_last_write_status','0',''), ('79871','30326','2','6','','0',''), ('79872','30327','1','12','$.aof_rewrite_in_progress','0',''), ('79873','30328','1','12','$.aof_rewrite_scheduled','0',''), ('79874','30329','1','12','$.loading','0',''), ('79875','30330','1','12','$.rdb_bgsave_in_progress','0',''), ('79876','30331','1','12','$.rdb_changes_since_last_save','0',''), ('79877','30332','1','12','$.rdb_current_bgsave_time_sec','0',''), ('79878','30333','1','12','$.rdb_last_bgsave_status','0',''), ('79879','30333','2','6','','0',''), ('79880','30334','1','12','$.rdb_last_bgsave_time_sec','0',''), ('79881','30335','1','12','$.rdb_last_save_time','0',''), ('79882','30336','1','12','$.total_net_output_bytes','0',''), ('79883','30337','1','21','return JSON.stringify(value > 0 ? [{''{#SINGLETON}'': ''''}] : []);','0',''), ('79884','30338','1','21','return JSON.stringify(Object.keys(JSON.parse(value)) .map(function (v){return {"{#DB}": v}}));','0',''), ('79885','30339','1','12','$.redis_version','0',''), ('79886','30339','2','21','return JSON.stringify(parseInt(value.split(''.'')[0]) >= 4 ? [{''{#SINGLETON}'': ''''}] : []);','0',''), ('79887','30340','1','12','$.redis_version','0',''), ('79888','30340','2','21','return JSON.stringify(parseInt(value.split(''.'')[0]) >= 5 ? [{''{#SINGLETON}'': ''''}] : []);','0',''), ('79889','30341','1','21','return JSON.stringify(JSON.parse(value).aof_enabled === ''1'' ? [{''{#SINGLETON}'': ''''}] : []);','0',''), ('79890','30342','1','21',E'var repl = JSON.parse(value); return JSON.stringify(Object.keys(repl) .filter(function (v) {return v.match(/slave\\d+/)}) .map(function (v){ return {"{#SLAVE_IP}": repl[v].ip, "{#SLAVE_PORT}": repl[v].port} }));','0',''), ('79891','30343','1','21','return JSON.stringify(JSON.parse(value).role === ''slave'' ? [{''{#SINGLETON}'': ''''}] : []);','0',''), ('79892','30348','1','12','$.avg_ttl','0',''), ('79893','30348','2','1','0.001','0',''), ('79894','30349','1','12','$.expires','0',''), ('79895','30350','1','12','$.keys','0',''), ('79896','30351','1','12','$.active_defrag_running','0',''), ('79897','30352','1','12','$.rdb_last_cow_size','0',''), ('79898','30353','1','12','$.expired_time_cap_reached_count','0',''), ('79899','30354','1','12','$.expired_stale_perc','0',''), ('79900','30355','1','12','$.active_defrag_misses','0',''), ('79901','30356','1','12','$.active_defrag_key_misses','0',''), ('79902','30357','1','12','$.active_defrag_key_hits','0',''), ('79903','30358','1','12','$.active_defrag_hits','0',''), ('79904','30359','1','12','$.executable','0',''), ('79905','30359','2','20','1d','0',''), ('79906','30360','1','12','$.second_repl_offset','0',''), ('79907','30361','1','12','$.aof_last_cow_size','0',''), ('79908','30362','1','12','$.lazyfree_pending_objects','0',''), ('79909','30363','1','12','$.used_memory_startup','0',''), ('79910','30364','1','12','$.used_memory_peak_perc','0',''), ('79911','30364','2','5',E'(.+)% \\1','0',''), ('79912','30365','1','12','$.used_memory_overhead','0',''), ('79913','30366','1','12','$.used_memory_dataset','0',''), ('79914','30367','1','12','$.used_memory_dataset_perc','0',''), ('79915','30367','2','5',E'(.+)% \\1','0',''), ('79916','30368','1','12','$.total_system_memory','0',''), ('79917','30369','1','12','$.maxmemory','0',''), ('79918','30370','1','12','$.maxmemory_policy','0',''), ('79919','30370','2','20','1d','0',''), ('79920','30371','1','12','$.slave_expires_tracked_keys','0',''), ('79921','30372','1','12','$.allocator_active','0',''), ('79922','30373','1','12','$.mem_clients_normal','0',''), ('79923','30374','1','12','$.rss_overhead_ratio','0',''), ('79924','30375','1','12','$.rss_overhead_bytes','0',''), ('79925','30376','1','12','$.mem_replication_backlog','0',''), ('79926','30377','1','12','$.number_of_cached_scripts','0',''), ('79927','30378','1','12','$.mem_not_counted_for_evict','0',''), ('79928','30379','1','12','$.mem_clients_slaves','0',''), ('79929','30380','1','12','$.mem_aof_buffer','0',''), ('79930','30381','1','12','$.allocator_allocated','0',''), ('79931','30382','1','12','$.mem_fragmentation_bytes','0',''), ('79932','30383','1','12','$.allocator_rss_ratio','0',''), ('79933','30384','1','12','$.allocator_rss_bytes','0',''), ('79934','30385','1','12','$.allocator_resident','0',''), ('79935','30386','1','12','$.allocator_frag_ratio','0',''), ('79936','30387','1','12','$.allocator_frag_bytes','0',''), ('79937','30388','1','12','$.used_memory_scripts','0',''), ('79938','30389','1','12','$.aof_base_size','0',''), ('79939','30390','1','12','$.aof_buffer_length','0',''), ('79940','30391','1','12','$.aof_current_size','0',''), ('79941','30392','1','12','$.aof_delayed_fsync','0',''), ('79942','30393','1','12','$.aof_pending_bio_fsync','0',''), ('79943','30394','1','12','$.aof_pending_rewrite','0',''), ('79944','30395','1','12','$.aof_rewrite_buffer_length','1',''), ('79945','30396','1','21',E'var repl = JSON.parse(value); var res = Object.keys(repl) .filter(function (v) {return v.match(/slave\\d+/)}) .filter(function (v) {return (repl[v].ip === "{#SLAVE_IP}" && repl[v].port === "{#SLAVE_PORT}")}) .map(function (v) {return repl[v].offset})[0]; if (res === undefined) { throw ''Slave {#SLAVE_IP}:{#SLAVE_PORT} is no longer available.''; } return res;','0',''), ('79946','30397','1','12','$.master_host','0',''), ('79947','30397','2','20','1d','0',''), ('79948','30398','1','12','$.master_last_io_seconds_ago','0',''), ('79949','30399','1','12','$.master_link_status','0',''), ('79950','30399','2','6','','0',''), ('79951','30400','1','12','$.master_port','0',''), ('79952','30400','2','20','1d','0',''), ('79953','30401','1','12','$.master_sync_in_progress','0',''), ('79954','30402','1','12','$.slave_priority','0',''), ('79955','30403','1','12','$.slave_read_only','0',''), ('79956','30403','2','20','1d','0',''), ('79957','30404','1','12','$.slave_repl_offset','0',''), ('80501','27203','1','5',E'^(\\w|-|\\.|/)+ (\\w|-|\\.|/)+ (.+) Copyright \\3','0',''), ('80502','27203','2','20','1d','0',''), ('80503','27207','1','1','1024','0',''), ('80504','30086','1','5',E'^((\\w|-|\\.|/)+) \\1','0',''), ('80505','30086','2','20','1d','0',''), ('80506','30087','1','1','1024','0',''), ('80507','27214','1','20','1d','0',''), ('80508','28323','1','1','0.1','0',''), ('80509','28327','1','20','6h','0',''), ('80510','28328','1','20','6h','0',''), ('80511','27236','1','20','1d','0',''), ('80512','27237','1','20','1d','0',''), ('80513','27295','1','20','1d','0',''), ('80514','27296','1','20','1d','0',''), ('80515','27297','1','20','1d','0',''), ('80516','27314','1','1','0.5','0',''), ('80517','27315','1','1','0.5','0',''), ('80518','27318','1','1','0.5','0',''), ('80519','27319','1','20','1d','0',''), ('80520','27320','1','20','1d','0',''), ('80541','27481','1','20','1d','0',''), ('80542','27482','1','20','1d','0',''), ('80543','27483','1','20','1d','0',''), ('80544','27484','1','20','1d','0',''), ('80545','27508','1','20','1d','0',''), ('80546','27509','1','20','1d','0',''), ('80547','27510','1','20','1d','0',''), ('80548','30106','1','20','1d','0',''), ('80549','27543','1','20','1d','0',''), ('80550','27544','1','20','1d','0',''), ('80551','27545','1','20','1d','0',''), ('80552','27546','1','20','1d','0',''), ('80553','27579','1','20','1d','0',''), ('80554','27580','1','20','1d','0',''), ('80555','27582','1','20','1d','0',''), ('80556','27583','1','20','1d','0',''), ('80557','30109','1','20','1d','0',''), ('80558','27591','1','1','1024','0',''), ('80559','30110','1','1','1024','0',''), ('80560','27675','1','20','1d','0',''), ('80561','27676','1','20','1d','0',''), ('80562','27677','1','20','1d','0',''), ('80563','27678','1','20','1d','0',''), ('80564','27679','1','20','1d','0',''), ('80565','28141','1','20','1d','0',''), ('80566','28142','1','20','1d','0',''), ('80567','28157','1','20','1d','0',''), ('80568','28158','1','20','1d','0',''), ('80569','27748','1','20','1d','0',''), ('80570','27749','1','20','1d','0',''), ('80571','27750','1','20','1d','0',''), ('80572','27754','1','20','1d','0',''), ('80573','27777','1','5',E'Firmware Version: ([0-9.]+), \\1','0',''), ('80574','27777','2','20','1d','0',''), ('80575','27778','1','5',E'(.+) - Firmware \\1','0',''), ('80576','27778','2','20','1d','0',''), ('80577','27785','1','20','1d','0',''), ('80578','27812','1','20','1d','0',''), ('80579','27813','1','20','1d','0',''), ('80580','30117','1','5',E'kernel (JUNOS [0-9a-zA-Z\\.\\-]+) \\1','0',''), ('80581','30117','2','20','1d','0',''), ('80582','28201','1','1','0.1','0',''), ('80583','28204','1','20','1d','0',''), ('80584','28205','1','20','1d','0',''), ('80585','27893','1','20','1d','0',''), ('80586','27894','1','20','1d','0',''), ('80587','27895','1','20','1d','0',''), ('80588','27898','1','1','1024','0',''), ('80589','27900','1','1','1024','0',''), ('80590','30119','1','20','1d','0',''), ('80592','27907','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('80593','27908','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('80595','31562','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('80596','31563','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('80597','31564','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('80598','31567','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('80599','31569','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('80600','27930','1','20','1d','0',''), ('80601','27931','1','20','1d','0',''), ('80602','27936','1','5',E'60 Secs \\( ([0-9\\.]+)%\\).+300 Secs \\1','0',''), ('80603','30121','1','20','1d','0',''), ('80604','27967','1','20','1d','0',''), ('80605','27968','1','20','1d','0',''), ('80606','27970','1','20','1d','0',''), ('80607','27971','1','20','1d','0',''), ('80608','30125','1','20','1d','0',''), ('80609','27997','1','20','1d','0',''), ('80610','27998','1','20','1d','0',''), ('80611','27999','1','20','1d','0',''), ('80612','28000','1','20','1d','0',''), ('80613','28026','1','20','1d','0',''), ('80614','28027','1','20','1d','0',''), ('80615','30132','1','1','1024','0',''), ('80616','30133','1','1','1024','0',''), ('80617','30134','1','1','1024','0',''), ('80618','30135','1','1','1024','0',''), ('80829','29398','1','22','{__name__=~"^node_time(?:_seconds)?$"} value ','0',''), ('80830','29399','1','23','{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="steal"}','0',''), ('80831','29399','2','21','var valueArr = JSON.parse(value); return valueArr.reduce(function(acc,obj){ return acc + parseFloat(obj[''value'']) },0)/valueArr.length;','0',''), ('80832','29399','3','10','','0',''), ('80833','29399','4','1','100','0',''), ('80834','29400','1','22','{__name__=~"node_memory_SwapFree"} value ','0',''), ('80835','29401','1','22','{__name__=~"node_memory_SwapTotal"} value ','0',''), ('80836','29402','1','22','{__name__=~"node_memory_MemAvailable"} value ','0',''), ('80837','29403','1','22','{__name__=~"node_memory_MemTotal"} value ','0',''), ('80838','29404','1','22','{__name__=~"^node_boot_time(?:_seconds)?$"} value ','0',''), ('80839','29405','1','22','{__name__=~"node_context_switches"} value ','0',''), ('80840','29405','2','10','','0',''), ('80841','29406','1','22','{__name__=~"node_intr"} value ','0',''), ('80842','29406','2','10','','0',''), ('80843','29407','1','23','{__name__=~"^node_cpu(?:_guest_seconds_total)?$",cpu=~".+",mode=~"^(?:nice|guest_nice)$"}','0',''), ('80844','29407','2','21','var valueArr = JSON.parse(value); return valueArr.reduce(function(acc,obj){ return acc + parseFloat(obj[''value'']) },0)/valueArr.length;','0',''), ('80845','29407','3','10','','0',''), ('80846','29407','4','1','100','0',''), ('80847','29408','1','23','{__name__=~"^node_cpu(?:_guest_seconds_total)?$",cpu=~".+",mode=~"^(?:user|guest)$"}','0',''), ('80848','29408','2','21','var valueArr = JSON.parse(value); return valueArr.reduce(function(acc,obj){ return acc + parseFloat(obj[''value'']) },0)/valueArr.length;','0',''), ('80849','29408','3','10','','0',''), ('80850','29408','4','1','100','0',''), ('80851','29409','1','23','{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="irq"}','0',''), ('80852','29409','2','21','var valueArr = JSON.parse(value); return valueArr.reduce(function(acc,obj){ return acc + parseFloat(obj[''value'']) },0)/valueArr.length;','0',''), ('80853','29409','3','10','','0',''), ('80854','29409','4','1','100','0',''), ('80855','29410','1','23','{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="iowait"}','0',''), ('80856','29410','2','21','var valueArr = JSON.parse(value); return valueArr.reduce(function(acc,obj){ return acc + parseFloat(obj[''value'']) },0)/valueArr.length;','0',''), ('80857','29410','3','10','','0',''), ('80858','29410','4','1','100','0',''), ('80859','29411','1','23','{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="nice"}','0',''), ('80860','29411','2','21','var valueArr = JSON.parse(value); return valueArr.reduce(function(acc,obj){ return acc + parseFloat(obj[''value'']) },0)/valueArr.length;','0',''), ('80861','29411','3','10','','0',''), ('80862','29411','4','1','100','0',''), ('80863','29412','1','23','{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="softirq"}','0',''), ('80864','29412','2','21','var valueArr = JSON.parse(value); return valueArr.reduce(function(acc,obj){ return acc + parseFloat(obj[''value'']) },0)/valueArr.length;','0',''), ('80865','29412','3','10','','0',''), ('80866','29412','4','1','100','0',''), ('80867','29413','1','23','{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="user"}','0',''), ('80868','29413','2','21','var valueArr = JSON.parse(value); return valueArr.reduce(function(acc,obj){ return acc + parseFloat(obj[''value'']) },0)/valueArr.length;','0',''), ('80869','29413','3','10','','0',''), ('80870','29413','4','1','100','0',''), ('80871','29414','1','22','node_uname_info label nodename','0',''), ('80872','29414','2','20','1d','0',''), ('80873','29415','1','22','node_exporter_build_info label version','0',''), ('80874','29415','2','20','1d','0',''), ('80875','29416','1','23','{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="idle"}','0',''), ('80876','29416','2','21','var valueArr = JSON.parse(value); return valueArr.reduce(function(acc,obj){ return acc + parseFloat(obj[''value'']) },0)/valueArr.length;','0',''), ('80877','29416','3','10','','0',''), ('80878','29416','4','1','100','0',''), ('80879','29417','1','23','{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="idle"}','0',''), ('80880','29417','2','21','return JSON.parse(value).length','0',''), ('80881','29418','1','22','node_load15 value ','0',''), ('80882','29419','1','22','node_load5 value ','0',''), ('80883','29420','1','22','node_load1 value ','0',''), ('80884','29421','1','22','{__name__=~"^node_boot_time(?:_seconds)?$"} value ','0',''), ('80885','29421','2','21','return (Math.floor(Date.now()/1000)-Number(value));','0',''), ('80886','29422','1','22','node_uname_info label machine','0',''), ('80887','29422','2','20','1d','0',''), ('80888','29423','1','22','node_filefd_allocated value ','0',''), ('80889','29424','1','22','node_filefd_maximum value ','0',''), ('80890','29424','2','20','1d','0',''), ('80891','29425','1','23','node_uname_info','0',''), ('80892','29425','2','21','var info = JSON.parse(value)[0]; return info.labels.sysname+'' version: ''+info.labels.release+'' ''+info.labels.version','0',''), ('80893','29425','3','20','1d','0',''), ('80894','29426','1','23','{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="system"}','0',''), ('80895','29426','2','21','var valueArr = JSON.parse(value); return valueArr.reduce(function(acc,obj){ return acc + parseFloat(obj[''value'']) },0)/valueArr.length;','0',''), ('80896','29426','3','10','','0',''), ('80897','29426','4','1','100','0',''), ('80898','29427','1','21','return (100 - value)','0',''), ('80899','29428','1','20','1d','0',''), ('80900','29429','1','23','{__name__=~"^node_network_info$"}','0',''), ('80901','29430','1','23','{__name__=~"^node_filesystem_size(?:_bytes)?$", mountpoint=~".+"}','0',''), ('80902','29431','1','23','node_disk_io_now{device=~".+"}','0',''), ('80903','29436','1','22','node_network_receive_bytes_total{device="{#IFNAME}"} value ','0',''), ('80904','29436','2','10','','0',''), ('80905','29436','3','1','8','0',''), ('80906','29437','1','22','node_network_transmit_bytes_total{device="{#IFNAME}"} value ','0',''), ('80907','29437','2','10','','0',''), ('80908','29437','3','1','8','0',''), ('80909','29438','1','22','node_network_transmit_errs_total{device="{#IFNAME}"} value ','0',''), ('80910','29438','2','10','','0',''), ('80911','29439','1','22','node_network_receive_errs_total{device="{#IFNAME}"} value ','0',''), ('80912','29439','2','10','','0',''), ('80913','29440','1','22','node_network_receive_drop_total{device="{#IFNAME}"} value ','0',''), ('80914','29440','2','10','','0',''), ('80915','29441','1','22','node_network_transmit_drop_total{device="{#IFNAME}"} value ','0',''), ('80916','29441','2','10','','0',''), ('80917','29442','1','22','node_network_speed_bytes{device="{#IFNAME}"} value ','2','0'), ('80918','29442','2','1','8','0',''), ('80919','29443','1','22','node_network_protocol_type{device="{#IFNAME}"} value ','0',''), ('80920','29444','1','22','node_network_info{device="{#IFNAME}"} label operstate','0',''), ('80921','29444','2','21','var newvalue; switch(value) { case "unknown": newvalue = 0; break; case "notpresent": newvalue = 1; break; case "down": newvalue = 2; break; case "lowerlayerdown": newvalue = 3; break; case "testing": newvalue = 4; break; case "dormant": newvalue = 5; break; case "up": newvalue = 6; break; default: newvalue = "Problem parsing interface operstate in JS"; } return newvalue;','0',''), ('80922','29445','1','22','{__name__=~"^node_filesystem_avail(?:_bytes)?$", mountpoint="{#FSNAME}"} value ','0',''), ('80923','29446','1','22','{__name__=~"^node_filesystem_size(?:_bytes)?$", mountpoint="{#FSNAME}"} value ','0',''), ('80924','29447','1','23','{__name__=~"node_filesystem_files.*",mountpoint="{#FSNAME}"}','0',''), ('80925','29447','2','21','var inode_free; var inode_total; JSON.parse(value).forEach(function (metric) { if (metric[''name''] == ''node_filesystem_files'') { inode_total = parseFloat(metric[''value'']); } else if (metric[''name''] == ''node_filesystem_files_free'') { inode_free = parseFloat(metric[''value'']); } }); return (inode_free / inode_total) * 100;','0',''), ('80926','29448','1','22','node_disk_reads_completed_total{device="{#DEVNAME}"} value ','0',''), ('80927','29448','2','10','','0',''), ('80928','29449','1','22','node_disk_writes_completed_total{device="{#DEVNAME}"} value ','0',''), ('80929','29449','2','10','','0',''), ('80930','29450','1','22','node_disk_read_time_seconds_total{device="{#DEVNAME}"} value ','0',''), ('80931','29450','2','10','','0',''), ('80932','29451','1','22','node_disk_write_time_seconds_total{device="{#DEVNAME}"} value ','0',''), ('80933','29451','2','10','','0',''), ('80934','29452','1','22','node_disk_io_time_weighted_seconds_total{device="{#DEVNAME}"} value ','0',''), ('80935','29452','2','10','','0',''), ('80936','29453','1','22','node_disk_io_time_seconds_total{device="{#DEVNAME}"} value ','0',''), ('80937','29453','2','10','','0',''), ('80938','29453','3','1','100','0',''), ('81087','30688','1','12','$.[?(@.id==''{#SENSOR_ID}'')].state.text.first()','0',''), ('81088','30688','2','20','1d','0',''), ('81089','30689','1','12','$.[?(@.id==''{#SENSOR_ID}'')].value.first()','0',''), ('81090','30689','2','20','1h','0',''), ('81091','30073','1','20','1d','0',''), ('81092','30074','1','20','1d','0',''), ('81093','30079','1','1','1048576','0',''), ('81094','30082','1','1','1048576','0',''), ('81103','28390','1','20','6h','0',''), ('81104','28391','1','20','6h','0',''), ('81105','28422','1','1','1048576','0',''), ('81106','28425','1','1','1048576','0',''), ('81107','28466','1','20','1d','0',''), ('81108','28467','1','20','1d','0',''), ('81109','28479','1','5',E'(\\d{1,3}) *%( of maximum)? \\1','0',''), ('81110','31782','1','20','10m','0',''), ('81111','31784','1','21',E'var Ami = { params: { url: ''{$AMI.URL}'', trunk: ''{$AMI.TRUNK_REGEXP}'' }, api_request: new HttpRequest(), request: function (url, action) { url += action; Zabbix.log(4, ''[ Asterisk ] Sending request: '' + url); try { response = Ami.api_request.get(url); } catch (error) { Zabbix.log(4, ''[ Asterisk ] Get request returned error '' + error); throw ''Get request returned error '' + error + ''. Check debug log for more information.''; } Zabbix.log(4, ''[ Asterisk ] Received response with status code '' + Ami.api_request.getStatus() + ''\\n'' + response); if (Ami.api_request.getStatus() !== 200) { var message = ''Request failed with status code '' + Ami.api_request.getStatus(); if (response !== null) { if (typeof response.message === ''string'') { message += '': '' + response.message; } } throw message + '' Check debug log for more information.''; } var match = response.match(''Response: (.+)''); if (match !== null && match[1] !== ''Success'' && match[1] !== ''Goodbye'' && match[1] !== ''Follows'') { var responseText = match[1], message = ''Request failed with message '' + match[1]; match = response.match(''Message: (.+)''); if (match !== null && match[1]) { var responseMessage = match[1]; message += '': '' + match[1]; } if (responseText !== ''Error'' || responseMessage !== ''No endpoints found'') { throw message + ''. Check debug log for more information.''; } } return { status: Ami.api_request.getStatus(), body: response }; } }; var asterisk = { version: '''', uptime: 0, uptime_reload: 0, active_channels: 0, active_calls: 0, calls_processed: 0, sip: { trunks: [], monitored_online: 0, monitored_offline: 0, unmonitored_online: 0, unmonitored_offline: 0, active_channels: 0, total: 0 }, iax: { trunks: [], online: 0, offline: 0, unmonitored: 0, active_channels: 0, total: 0 }, pjsip: { trunks: [], available: 0, unavailable: 0, active_channels: 0, total: 0 }, queue: { queues: [], total: 0 } }; function block2Object(text) { var parts = [], dict = {}; text = text.replace(/^Output: /gm, ''''); text.split(''\\n'').forEach(function (line) { parts = line.split('':''); if (parts.length > 1) { dict[parts.shift().trim()] = parts.join('':'').trim(); } }) return dict; } function text2Object(text) { var blocks = text.split(''\\r\\n\\r\\n''), arr = [], i = 1, j = blocks.length - 2; for (i; i < j; i++) { arr.push(block2Object(blocks[i])); } return arr; } function getSipPeers() { var response = Ami.request(url, ''SIPpeers''), elements = text2Object(response.body); asterisk.sip.total = elements.length; asterisk.sip.trunks = elements.filter(function (element) { return element.ObjectName.search(Ami.params.trunk) != -1; }); elements.forEach(function (element) { if (element.IPaddress === ''-none-'') { switch (element.Status) { case ''Unmonitored'': asterisk.sip.unmonitored_offline++; break; case ''UNKNOWN'': asterisk.sip.monitored_offline++; break; } } else { if (element.Status === ''Unmonitored'') { asterisk.sip.unmonitored_online++; } else { asterisk.sip.monitored_online++; if (element.Status.search(''^OK'') != -1) { element.Status = element.Status.split('' '')[0]; } } } }); asterisk.sip.trunks.forEach(function (trunk) { var active_channels = channels.match(new RegExp(''[^!J]SIP/'' + escapeChars(trunk.ObjectName), ''g'')); trunk.active_channels = (active_channels === null) ? 0 : active_channels.length; asterisk.sip.active_channels += trunk.active_channels; }); } function getIaxPeerList() { response = Ami.request(url, ''IAXpeerlist''); elements = text2Object(response.body); asterisk.iax.total = elements.length; asterisk.iax.trunks = elements.filter(function (element) { return element.ObjectName.search(Ami.params.trunk) != -1; }); elements.forEach(function (element) { if (element.Status.search(''^OK'') != -1) { element.Status = element.Status.split('' '')[0]; } switch (element.Status) { case ''Unmonitored'': asterisk.iax.unmonitored++; break; case ''UNKNOWN'': asterisk.iax.offline++; break; } }); asterisk.iax.online = asterisk.iax.total - asterisk.iax.offline; asterisk.iax.trunks.forEach(function (trunk) { var active_channels = channels.match(new RegExp(''[^!](IAX2/'' + escapeChars(trunk.ObjectName) + ''|IAX2/'' + escapeChars(trunk.ObjectUsername) + '')'', ''g'')); trunk.active_channels = (active_channels === null) ? 0 : active_channels.length; asterisk.iax.active_channels += trunk.active_channels; }); } function getPjsipShowEndpoints() { response = Ami.request(url, ''PJSIPShowEndpoints''); elements = text2Object(response.body); asterisk.pjsip.total = elements.length; asterisk.pjsip.trunks = elements.filter(function (element) { return element.ObjectName.search(Ami.params.trunk) != -1; }); elements.forEach(function (element) { if (element.DeviceState === ''Unavailable'') { asterisk.pjsip.unavailable++; } }); asterisk.pjsip.available = asterisk.pjsip.total - asterisk.pjsip.unavailable; asterisk.pjsip.trunks.forEach(function (trunk) { var active_channels = channels.match(new RegExp(''[^!]PJSIP/'' + escapeChars(trunk.ObjectName), ''g'')); trunk.active_channels = (active_channels === null) ? 0 : active_channels.length; asterisk.pjsip.active_channels += trunk.active_channels; }); } function getQueueSummary() { response = Ami.request(url, ''QueueSummary''); asterisk.queue.queues = text2Object(response.body); asterisk.queue.total = asterisk.queue.queues.length; } function escapeChars(str) { return str.replace(/[-[\\]{}()*+?.,\\\\^$|#\\s]/g, ''\\\\$&''); } function getUptimeSeconds(text) { var date = { years: 0, weeks: 0, days: 0, hours: 0, minutes: 0, seconds: 0 }; var fields = { years: ''years?'', weeks: ''weeks?'', days: ''days?'', hours: ''hours?'', minutes: ''minutes?'', seconds: ''seconds?'' }; Object.keys(fields).forEach(function (field) { var match = text.match(''(\\\\d+) '' + fields[field]); if (match !== null && typeof match[1] !== ''undefined'') { date[field] = parseInt(match[1]); } }); return date.years * 220752000 + date.weeks * 604800 + date.days * 86400 + date.hours * 3600 + date.minutes * 60 + date.seconds; } var cookie = value.match(/mansession_id="([0-9A-z]+)"/); if (cookie == null) { throw ''Cannot find mansession_id with cookie in response.''; } var url = Ami.params.url.split(''?'')[0] + ''?action=''; Ami.api_request.addHeader(''Cookie: mansession_id="'' + cookie[1] + ''"''); var response = Ami.request(url, ''CoreSettings''); var coreSettings = block2Object(response.body); if (typeof coreSettings.AsteriskVersion !== ''undefined'') { asterisk.version = coreSettings.AsteriskVersion; } response = Ami.request(url, ''command&command=core%20show%20uptime''); var uptime = block2Object(response.body); if (typeof uptime["System uptime"] !== ''undefined'') { asterisk.uptime = getUptimeSeconds(uptime["System uptime"]); } if (typeof uptime["Last reload"] !== ''undefined'') { asterisk.uptime_reload = getUptimeSeconds(uptime["Last reload"]); } response = Ami.request(url, ''command&command=core%20show%20channels%20count''); channels = response.body; var fields = { active_channels: ''active channels?'', active_calls: ''active calls?'', calls_processed: ''calls? processed'' }; Object.keys(fields).forEach(function (field) { var match = channels.match(''(\\\\d+)\\\\s+(?:of\\\\s+\\\\d+\\\\s+max\\\\s+)?'' + fields[field]); if (match !== null && typeof match[1] !== ''undefined'') { asterisk[field] = parseInt(match[1]); } }); response = Ami.request(url, ''command&command=core%20show%20channels%20concise''); channels = response.body; response = Ami.request(url, ''ListCommands''); var list = response.body; if (list.includes(''SIPpeers'')) { getSipPeers(); } if (list.includes(''IAXpeerlist'')) { getIaxPeerList(); } if (list.includes(''PJSIPShowEndpoints'')) { getPjsipShowEndpoints(); } if (list.includes(''QueueSummary'')) { getQueueSummary(); } try { response = Ami.request(url, ''Logoff''); } catch (e) {} return JSON.stringify(asterisk);','0',''), ('81112','31785','1','12','$.sip.total','0',''), ('81113','31786','1','12','$.version','0',''), ('81114','31787','1','12','$.uptime_reload','0',''), ('81115','31788','1','12','$.uptime','0',''), ('81116','31789','1','12','$.queue.total','0',''), ('81117','31790','1','12','$.sip.unmonitored_online','0',''), ('81118','31791','1','12','$.sip.unmonitored_offline','0',''), ('81119','31792','1','12','$.active_calls','0',''), ('81120','31793','1','12','$.sip.monitored_online','0',''), ('81121','31794','1','12','$.active_channels','0',''), ('81122','31795','1','12','$.pjsip.unavailable','0',''), ('81123','31796','1','12','$.pjsip.total','0',''), ('81124','31797','1','12','$.iax.unmonitored','0',''), ('81125','31798','1','12','$.iax.total','0',''), ('81126','31799','1','12','$.iax.offline','0',''), ('81127','31800','1','12','$.calls_processed','0',''), ('81128','31800','2','10','','0',''), ('81129','31801','1','12','$.calls_processed','0',''), ('81130','31802','1','12','$.sip.monitored_offline','0',''), ('81131','31803','1','12','$.iax.trunks','0',''), ('81132','31803','2','20','1h','0',''), ('81133','31804','1','12','$.pjsip.trunks','0',''), ('81134','31804','2','20','1h','0',''), ('81135','31805','1','12','$.queue.queues','0',''), ('81136','31805','2','20','1h','0',''), ('81137','31806','1','12','$.sip.trunks','0',''), ('81138','31806','2','20','1h','0',''), ('81139','31807','1','12','$.active_channels','0',''), ('81140','31808','1','12','$.Status','0',''), ('81141','31808','2','20','1h','0',''), ('81142','31809','1','12','$.active_channels','0',''), ('81143','31810','1','12','$.DeviceState','0',''), ('81144','31810','2','20','1h','0',''), ('81145','31811','1','12','$.Available','0',''), ('81146','31812','1','12','$.Callers','0',''), ('81147','31813','1','12','$.LoggedIn','0',''), ('81148','31814','1','12','$.active_channels','0',''), ('81149','31815','1','12','$.Status','0',''), ('81150','31815','2','20','1h','0',''), ('81151','32442','1','20','3h','0',''), ('81152','32443','1','20','1h','0',''), ('81153','32445','1','20','1h','0',''), ('81154','32447','1','20','1h','0',''), ('81155','32450','1','10','','0',''), ('81156','32451','1','10','','0',''), ('81157','32453','1','1','0.001','0',''), ('81158','32454','1','13','0 {$ACTIVEMQ.BROKER.CONSUMERS.MIN.HIGH}','2','{$ACTIVEMQ.BROKER.CONSUMERS.MIN.HIGH}'), ('81159','32454','2','20','3h','0',''), ('81160','32455','1','13','0 {$ACTIVEMQ.BROKER.PRODUCERS.MIN.HIGH}','2','{$ACTIVEMQ.BROKER.PRODUCERS.MIN.HIGH}'), ('81161','32455','2','20','3h','0',''), ('81162','32457','1','10','','0',''), ('81163','32458','1','10','','0',''), ('81164','32459','1','20','3h','0',''), ('81165','32464','1','21','var input = JSON.parse(value), output = []; input.forEach(function (sensor) { sensor.metrics.forEach(function (metric) { output.push( { ''{#SENSOR_ID}'': sensor.id, ''{#SENSOR_NAME}'': sensor.name, ''{#GATEWAY_ID}'': sensor.gateway.id, ''{#GATEWAY_NAME}'': sensor.gateway.name, ''{#METRIC}'': metric.name, ''{#UNIT}'': metric.unit } ); }) }); return JSON.stringify(output);','0',''), ('81166','32464','2','20','15m','0',''), ('81167','32486','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0',''), ('81168','32487','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0',''), ('81169','32488','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0',''), ('81170','32489','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0',''), ('81171','32490','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0',''), ('81172','32491','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0',''), ('81173','32492','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0',''), ('81174','32493','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0',''), ('81175','32493','2','21','return Math.floor(Date.now()/1000 - Number(value));','0',''), ('81176','32494','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0',''), ('81177','32495','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0',''), ('81178','32496','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0',''), ('81179','32497','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0',''), ('81180','32498','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0',''), ('81181','32499','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0',''), ('81182','32500','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0',''), ('81183','32501','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0',''), ('81184','32502','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0',''), ('81185','32503','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0',''), ('81186','32504','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0',''), ('81187','32505','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0',''), ('81188','32506','1','12','$[?(@.id == "{#SENSOR_ID}" && @.name == "{#SENSOR_NAME}")].metrics[?(@.name == "{#METRIC}")].value.first()','0',''), ('81189','32507','1','12','$.pools["{#POOLNAME}"].bytes_used','0',''), ('81190','32508','1','12','$.pools["{#POOLNAME}"].max_avail','0',''), ('81191','32509','1','12','$.pools["{#POOLNAME}"].objects','0',''), ('81192','32510','1','12','$.pools["{#POOLNAME}"].percent_used','0',''), ('81193','32511','1','12','$.pools["{#POOLNAME}"].rd_bytes','0',''), ('81194','32511','2','10','','0',''), ('81195','32512','1','12','$.pools["{#POOLNAME}"].rd_ops','0',''), ('81196','32512','2','10','','0',''), ('81197','32513','1','12','$.pools["{#POOLNAME}"].stored_raw','0',''), ('81198','32514','1','12','$.pools["{#POOLNAME}"].wr_bytes','0',''), ('81199','32514','2','10','','0',''), ('81200','32515','1','12','$.pools["{#POOLNAME}"].wr_ops','0',''), ('81201','32515','2','10','','0',''), ('81202','32516','1','20','3h','0',''), ('81203','32525','1','21','var data = JSON.parse(value); data.forEach(function(instance) { if (instance["{#INSTANCE}"] === ''_total'') { instance["{#INF.STORE}"] = ''Information Store''; } else { instance["{#INF.STORE}"] = ''Information Store - '' + instance["{#INSTANCE}"]; } }) return JSON.stringify(data);','0',''), ('81204','32528','1','20','3h','0',''), ('81205','32533','1','1','0.001','0',''), ('81206','32534','1','1','0.001','0',''), ('81207','32536','1','1','0.001','0',''), ('81208','32537','1','1','0.001','0',''), ('81209','32539','1','20','3m','0',''), ('81210','32540','1','1','0.001','0',''), ('81211','32543','1','1','0.001','0',''), ('81212','32544','1','1','0.001','0',''), ('81213','32546','1','20','3h','0',''), ('81214','32555','1','21','var data = JSON.parse(value); data.forEach(function(instance) { if (instance["{#INSTANCE}"] === ''_total'') { instance["{#INF.STORE}"] = ''Information Store''; } else { instance["{#INF.STORE}"] = ''Information Store - '' + instance["{#INSTANCE}"]; } }) return JSON.stringify(data);','0',''), ('81215','32558','1','20','3h','0',''), ('81216','32563','1','1','0.001','0',''), ('81217','32564','1','1','0.001','0',''), ('81218','32566','1','1','0.001','0',''), ('81219','32567','1','1','0.001','0',''), ('81220','32569','1','20','3m','0',''), ('81221','32570','1','1','0.001','0',''), ('81222','32573','1','1','0.001','0',''), ('81223','32574','1','1','0.001','0',''), ('81225','32576','1','26','-1','2','{"status": "failed"}'), ('81226','32576','2','12','$.status','0',''), ('81227','32576','3','6','','2','0'), ('81229','32577','1','26','-1','2','{"master_check":[{"status":"failed"}]}'), ('81230','32577','2','12','$.master_check[0].status','0',''), ('81231','32577','3','6','','2','0'), ('81233','32578','1','26','-1','1',''), ('81234','32579','1','12','$[?(@.name=="ruby_process_max_fds")].value.avg()','0',''), ('81235','32580','1','12','$[?(@.name=="gitlab_redis_client_requests_total" && @.labels.storage == "cache")].value.first()','1',''), ('81236','32580','2','10','','0',''), ('81237','32581','1','12','$[?(@.name=="gitlab_redis_client_requests_total" && @.labels.storage == "queues")].value.first()','1',''), ('81238','32581','2','10','','0',''), ('81239','32582','1','12','$[?(@.name=="gitlab_redis_client_requests_total" && @.labels.storage == "shared_state")].value.first()','1',''), ('81240','32582','2','10','','0',''), ('81241','32583','1','12','$[?(@.name=="ruby_file_descriptors")].value.avg()','0',''), ('81242','32584','1','12','$[?(@.name=="ruby_file_descriptors")].value.max()','0',''), ('81243','32585','1','12','$[?(@.name=="ruby_file_descriptors")].value.min()','0',''), ('81244','32586','1','12','$[?(@.name=="ruby_process_cpu_seconds_total")].value.avg()','1',''), ('81245','32586','2','10','','0',''), ('81246','32587','1','12','$[?(@.name=="ruby_process_resident_memory_bytes")].value.avg()','0',''), ('81247','32588','1','12','$[?(@.name=="gitlab_redis_client_exceptions_total" && @.labels.storage == "queues")].value.first()','1',''), ('81248','32588','2','10','','0',''), ('81249','32589','1','12','$[?(@.name=="ruby_process_resident_memory_bytes")].value.max()','0',''), ('81250','32590','1','12','$[?(@.name=="ruby_process_resident_memory_bytes")].value.min()','0',''), ('81251','32591','1','12','$[?(@.name=="ruby_process_start_time_seconds")].value.min()','0',''), ('81252','32591','2','20','3h','0',''), ('81253','32592','1','12','$[?(@.name=="ruby_process_start_time_seconds")].value.max()','0',''), ('81254','32592','2','20','3h','0',''), ('81255','32593','1','12','$[?(@.name=="gitlab_ruby_threads_running_threads")].value.sum()','0',''), ('81256','32594','1','12','$[?(@.name=="successful_login_captcha_total")].value.first()','1',''), ('81257','32595','1','12','$[?(@.name=~"gitlab_transaction_.*_count_total")].value.sum()','1',''), ('81258','32595','2','10','','0',''), ('81259','32596','1','12','$[?(@.name=="upload_file_does_not_exist")].value.first()','1',''), ('81260','32597','1','12','$[?(@.name=="gitlab_redis_client_exceptions_total" && @.labels.storage == "shared_state")].value.first()','1',''), ('81261','32597','2','10','','0',''), ('81262','32598','1','12','$[?(@.name=="gitlab_cache_misses_total")].value.sum()','0',''), ('81263','32598','2','10','','0',''), ('81264','32599','1','12','$[?(@.name=="gitlab_redis_client_exceptions_total" && @.labels.storage == "cache")].value.first()','1',''), ('81265','32599','2','10','','0',''), ('81266','32600','1','12','$[?(@.name=="failed_login_captcha_total")].value.first()','1',''), ('81267','32601','1','12','$[?(@.name=="gitlab_database_connection_pool_busy" && @.labels.class == "ActiveRecord::Base")].value.sum()','0',''), ('81268','32602','1','12','$[?(@.name=="gitlab_database_connection_pool_connections" && @.labels.class == "ActiveRecord::Base")].value.sum()','0',''), ('81269','32603','1','12','$[?(@.name=="gitlab_database_connection_pool_dead" && @.labels.class == "ActiveRecord::Base")].value.sum()','0',''), ('81270','32604','1','12','$[?(@.name=="gitlab_database_connection_pool_idle" && @.labels.class == "ActiveRecord::Base")].value.sum()','0',''), ('81271','32605','1','12','$[?(@.name=="gitlab_database_connection_pool_size" && @.labels.class == "ActiveRecord::Base")].value.sum()','0',''), ('81272','32606','1','12','$[?(@.name=="gitlab_database_connection_pool_waiting" && @.labels.class == "ActiveRecord::Base")].value.sum()','0',''), ('81273','32607','1','12','$[?(@.name=="deployments")].labels.version.first()','0',''), ('81274','32607','2','20','3h','0',''), ('81275','32608','1','12','$[?(@.name=="http_requests_total" && @.labels.status =~ ''4..'' )].value.sum()','1',''), ('81276','32608','2','10','','0',''), ('81277','32609','1','12','$[?(@.name=="gitlab_cache_operations_total")].value.sum()','0',''), ('81278','32609','2','10','','0',''), ('81279','32610','1','12','$[?(@.name=="http_requests_total" && @.labels.status =~ ''5..'' )].value.sum()','1',''), ('81280','32610','2','10','','0',''), ('81281','32611','1','12','$[?(@.name=="http_requests_total")].value.sum()','0',''), ('81282','32611','2','10','','0',''), ('81283','32612','1','12','$[?(@.name=="auto_devops_pipelines_completed_total")].value.sum()','1',''), ('81284','32613','1','12','$[?(@.name=="auto_devops_pipelines_completed_total" && @.labels.status == "failed")].value.sum()','1',''), ('81285','32614','1','12','$[?(@.name=="pipelines_created_total")].value.sum()','1',''), ('81286','32615','1','12','$[?(@.name=="gitlab_ci_pipeline_creation_duration_seconds_sum")].value.first()','1',''), ('81287','32616','1','12','$[?(@.name=="gitlab_ci_pipeline_creation_duration_seconds_count")].value.first()','1',''), ('81288','32617','1','12','$[?(@.name=="gitlab_ci_pipeline_processing_events_total")].value.first()','1',''), ('81289','32618','1','12','$[?(@.name=="user_session_logins_total")].value.first()','1',''), ('81290','32619','1','23','puma_workers','0',''), ('81291','32619','2','21','return JSON.stringify(value != "[]" ? [{''{#SINGLETON}'': ''''}] : []);','0',''), ('81292','32620','1','23','unicorn_workers','1',''), ('81293','32620','2','21','return JSON.stringify(value != "[]" ? [{''{#SINGLETON}'': ''''}] : []);','0',''), ('81294','32621','1','12','$[?(@.name==''puma_active_connections'')].value.sum()','0',''), ('81295','32622','1','12','$[?(@.name==''puma_idle_threads'')].value.sum()','0',''), ('81296','32623','1','12','$[?(@.name==''puma_killer_terminations_total'')].value.sum()','1',''), ('81297','32624','1','12','$[?(@.name==''puma_max_threads'')].value.sum()','0',''), ('81298','32625','1','12','$[?(@.name==''puma_pool_capacity'')].value.sum()','0',''), ('81299','32626','1','12','$[?(@.name==''puma_queued_connections'')].value.sum()','0',''), ('81300','32627','1','12','$[?(@.name==''puma_running'')].value.sum()','0',''), ('81301','32628','1','12','$[?(@.name==''puma_running_workers'')].value.sum()','0',''), ('81302','32629','1','12','$[?(@.name==''puma_stale_workers'')].value.sum()','0',''), ('81303','32630','1','12','$[?(@.name==''puma_workers'')].value.sum()','0',''), ('81304','32631','1','12','$[?(@.name==''unicorn_active_connections'')].value.sum()','0',''), ('81305','32632','1','12','$[?(@.name==''unicorn_queued_connections'')].value.sum()','0',''), ('81306','32633','1','12','$[?(@.name==''unicorn_workers'')].value.sum()','0',''), ('81307','32634','1','21','try { parsed = JSON.parse(value); var result = []; function getNodes(nodes, state) { Object.keys(nodes).forEach(function (field) { var Node = {}; Node[''HostName''] = field || ''''; Node[''adminState''] = nodes[field].adminState || ''''; Node[''operState''] = state || ''''; Node[''version''] = nodes[field].version || ''''; result.push(Node); }); } getNodes(JSON.parse(parsed.beans[0].LiveNodes), ''Live''); getNodes(JSON.parse(parsed.beans[0].DeadNodes), ''Dead''); getNodes(JSON.parse(parsed.beans[0].DecomNodes), ''Decommission''); getNodes(JSON.parse(parsed.beans[0].EnteringMaintenanceNodes), ''Maintenance''); return JSON.stringify(result); } catch (error) { throw ''Failed to process response received from Hadoop''; }','0',''), ('81308','32635','1','21','return JSON.stringify(JSON.parse(JSON.parse(value).beans[0].LiveNodeManagers));','0',''), ('81309','32636','1','20','10m','0',''), ('81310','32640','1','20','10m','0',''), ('81311','32642','1','12','$.[?(@.name==''Hadoop:service=NameNode,name=FSNamesystem'')].MissingBlocks.first()','0',''), ('81312','32643','1','12','$.[?(@.name==''Hadoop:service=ResourceManager,name=ClusterMetrics'')].NumDecommissionedNMs.first()','0',''), ('81313','32644','1','12','$.[?(@.name==''Hadoop:service=NameNode,name=FSNamesystem'')].BlockCapacity.first()','0',''), ('81314','32645','1','12','$.[?(@.name==''Hadoop:service=NameNode,name=FSNamesystem'')].CapacityRemaining.first()','0',''), ('81315','32646','1','12','$.[?(@.name==''Hadoop:service=NameNode,name=FSNamesystem'')].CorruptBlocks.first()','0',''), ('81316','32647','1','12','$.beans[?(@.name==''java.lang:type=Runtime'')].Uptime.first()','0',''), ('81317','32647','2','1','0.001','0',''), ('81318','32648','1','12','$.[?(@.name==''Hadoop:service=ResourceManager,name=RpcActivityForPort8031'')].RpcProcessingTimeAvgTime.first()','0',''), ('81319','32649','1','12','$.[?(@.name==''Hadoop:service=ResourceManager,name=ClusterMetrics'')].NumUnhealthyNMs.first()','0',''), ('81320','32650','1','12','$.[?(@.name==''Hadoop:service=ResourceManager,name=ClusterMetrics'')].NumShutdownNMs.first()','0',''), ('81321','32651','1','12','$.[?(@.name==''Hadoop:service=ResourceManager,name=ClusterMetrics'')].NumRebootedNMs.first()','0',''), ('81322','32652','1','12','$.[?(@.name==''Hadoop:service=ResourceManager,name=ClusterMetrics'')].NumLostNMs.first()','0',''), ('81323','32652','2','20','6h','0',''), ('81324','32653','1','12','$.[?(@.name==''Hadoop:service=ResourceManager,name=ClusterMetrics'')].NumDecommissioningNMs.first()','0',''), ('81325','32653','2','20','6h','0',''), ('81326','32654','1','12','$.[?(@.name==''Hadoop:service=NameNode,name=FSNamesystem'')].FilesTotal.first()','0',''), ('81327','32655','1','12','$.[?(@.name==''Hadoop:service=ResourceManager,name=ClusterMetrics'')].NumActiveNMs.first()','0',''), ('81328','32655','2','20','6h','0',''), ('81329','32656','1','12','$.[?(@.name==''Hadoop:service=NameNode,name=FSNamesystem'')].NumDeadDataNodes.first()','0',''), ('81330','32656','2','20','6h','0',''), ('81331','32657','1','12','$.[?(@.name==''Hadoop:service=NameNode,name=FSNamesystem'')].VolumeFailuresTotal.first()','0',''), ('81332','32658','1','12','$.[?(@.name==''Hadoop:service=NameNode,name=FSNamesystem'')].BlocksTotal.first()','0',''), ('81333','32659','1','12','$.[?(@.name==''Hadoop:service=NameNode,name=FSNamesystem'')].UnderReplicatedBlocks.first()','0',''), ('81334','32660','1','12','$.[?(@.name==''Hadoop:service=NameNode,name=FSNamesystem'')].TransactionsSinceLastCheckpoint.first()','0',''), ('81335','32661','1','12','$.[?(@.name==''Hadoop:service=NameNode,name=FSNamesystem'')].TotalLoad.first()','0',''), ('81336','32662','1','12','$.[?(@.name==''Hadoop:service=NameNode,name=RpcActivityForPort9000'')].RpcProcessingTimeAvgTime.first()','0',''), ('81337','32663','1','12','$.[?(@.name==''Hadoop:service=NameNode,name=NameNodeInfo'')].PercentRemaining.first()','0',''), ('81338','32663','2','20','6h','0',''), ('81339','32664','1','12','$.[?(@.name==''Hadoop:service=NameNode,name=NameNodeInfo'')].PercentBlockPoolUsed.first()','0',''), ('81340','32665','1','12','$.[?(@.name==''Hadoop:service=NameNode,name=FSNamesystem'')].StaleDataNodes.first()','0',''), ('81341','32665','2','20','6h','0',''), ('81342','32666','1','12','$.[?(@.name==''Hadoop:service=NameNode,name=FSNamesystem'')].NumLiveDataNodes.first()','0',''), ('81343','32666','2','20','6h','0',''), ('81344','32667','1','12','$.beans[?(@.name==''java.lang:type=Runtime'')].Uptime.first()','0',''), ('81345','32667','2','1','0.001','0',''), ('81346','32668','1','21','try { parsed = JSON.parse(value); var result = []; function getNodes(nodes) { Object.keys(nodes).forEach(function (field) { var Node = {}; Node[''{#HOSTNAME}''] = field || ''''; Node[''{#INFOADDR}''] = nodes[field].infoAddr || ''''; result.push(Node); }); } getNodes(JSON.parse(parsed.beans[0].LiveNodes)); getNodes(JSON.parse(parsed.beans[0].DeadNodes)); getNodes(JSON.parse(parsed.beans[0].DecomNodes)); getNodes(JSON.parse(parsed.beans[0].EnteringMaintenanceNodes)); return JSON.stringify(result); } catch (error) { throw ''Failed to process response received from Hadoop.''; }','0',''), ('81347','32669','1','21','try { parsed = JSON.parse(value); var result = []; function getNodes(nodes) { Object.keys(nodes).forEach(function (field) { var Node = {}; Node[''{#HOSTNAME}''] = nodes[field].HostName || ''''; Node[''{#NODEHTTPADDRESS}''] = nodes[field].NodeHTTPAddress || ''''; result.push(Node); }); } getNodes(JSON.parse(parsed.beans[0].LiveNodeManagers)); return JSON.stringify(result); } catch (error) { throw ''Failed to process response received from Hadoop.''; }','0',''), ('81348','32672','1','12','$.adminState','0',''), ('81349','32672','2','20','6h','0',''), ('81350','32673','1','12','$.beans[?(@.name==''Hadoop:service=DataNode,name=FSDatasetState'')].DfsUsed.first()','0',''), ('81351','32674','1','12','$.beans[?(@.name==''Hadoop:service=DataNode,name=JvmMetrics'')].GcTimeMillis.first()','0',''), ('81352','32675','1','12','$.beans[?(@.name==''Hadoop:service=DataNode,name=JvmMetrics'')].MemHeapUsedM.first()','0',''), ('81353','32676','1','12','$.beans[?(@.name==''java.lang:type=Threading'')].ThreadCount.first()','0',''), ('81354','32677','1','12','$.beans[?(@.name==''Hadoop:service=DataNode,name=FSDatasetState'')].NumFailedVolumes.first()','0',''), ('81355','32678','1','12','$.operState','0',''), ('81356','32678','2','20','6h','0',''), ('81357','32679','1','12','$.beans[?(@.name==''Hadoop:service=DataNode,name=FSDatasetState'')].Remaining.first()','0',''), ('81358','32680','1','12','$.beans[?(@.name==''java.lang:type=Runtime'')].Uptime.first()','0',''), ('81359','32680','2','1','0.001','0',''), ('81360','32681','1','12','$.version','0',''), ('81361','32681','2','20','6h','0',''), ('81362','32682','1','12','$.AvailableMemoryMB','0',''), ('81363','32683','1','12','$.beans[?(@.name==''Hadoop:service=NodeManager,name=NodeManagerMetrics'')].ContainerLaunchDurationAvgTime.first()','0',''), ('81364','32684','1','12','$.beans[?(@.name==''Hadoop:service=NodeManager,name=JvmMetrics'')].GcTimeMillis.first()','0',''), ('81365','32685','1','12','$.beans[?(@.name==''Hadoop:service=NodeManager,name=JvmMetrics'')].MemHeapUsedM.first()','0',''), ('81366','32686','1','12','$.beans[?(@.name==''java.lang:type=Threading'')].ThreadCount.first()','0',''), ('81367','32687','1','12','$.NumContainers','0',''), ('81368','32688','1','12','$.beans[?(@.name==''Hadoop:service=NodeManager,name=RpcActivityForPort8040'')].RpcProcessingTimeAvgTime.first()','0',''), ('81369','32689','1','12','$.State','0',''), ('81370','32689','2','20','6h','0',''), ('81371','32690','1','12','$.beans[?(@.name==''java.lang:type=Runtime'')].Uptime.first()','0',''), ('81372','32690','2','1','0.001','0',''), ('81373','32691','1','12','$.UsedMemoryMB','0',''), ('81374','32692','1','12','$.NodeManagerVersion','0',''), ('81375','32692','2','20','6h','0',''), ('81376','32694','1','1','100','0',''), ('81377','32696','1','1','100','0',''), ('81378','32697','1','21','return (Math.floor((Date.now()-Number(value))/1000))','0',''), ('81379','32698','1','20','1h','0',''), ('81380','32699','1','10','','0',''), ('81381','32700','1','10','','0',''), ('81382','32701','1','10','','0',''), ('81383','32702','1','10','','0',''), ('81384','32703','1','10','','0',''), ('81385','32704','1','10','','0',''), ('81386','32709','1','10','','0',''), ('81387','32710','1','10','','0',''), ('81388','32717','1','20','1h','0',''), ('81389','32718','1','10','','0',''), ('81390','32719','1','10','','0',''), ('81391','32720','1','10','','0',''), ('81392','32721','1','10','','0',''), ('81393','32724','1','10','','0',''), ('81394','32726','1','20','1h','0',''), ('81395','32758','1','10','','0',''), ('81396','32759','1','10','','0',''), ('81397','32760','1','10','','0',''), ('81398','32761','1','10','','0',''), ('81399','28511','1','20','1d','0',''), ('81400','32766','1','20','1h','0',''), ('81401','32767','1','10','','0',''), ('81402','32768','1','10','','0',''), ('81403','32769','1','10','','0',''), ('81404','32770','1','1','0.001','0',''), ('81405','32771','1','10','','0',''), ('81406','32775','1','10','','0',''), ('81407','32776','1','10','','0',''), ('81408','32777','1','20','10m','0',''), ('81409','32779','1','20','10m','0',''), ('81413','32784','1','12','$.standby','1',''), ('81414','32784','2','6','','0',''), ('81415','32784','3','20','1h','0',''), ('81416','32785','1','12','$.replication_dr_mode','1',''), ('81417','32785','2','20','1h','0',''), ('81418','32786','1','12','$.is_self','0',''), ('81419','32786','2','6','','0',''), ('81420','32786','3','20','1h','0',''), ('81421','32787','1','12','$.ha_enabled','0',''), ('81422','32787','2','6','','0',''), ('81423','32787','3','20','1h','0',''), ('81424','32788','1','12','$.version','1',''), ('81425','32788','2','20','1h','0',''), ('81426','32789','1','12','$.sealed','1',''), ('81427','32789','2','6','','0',''), ('81428','32789','3','20','1h','0',''), ('81429','32790','1','12','$.replication_performance_mode','1',''), ('81430','32790','2','20','1h','0',''), ('81431','32791','1','12','$.initialized','1',''), ('81432','32791','2','6','','0',''), ('81433','32791','3','20','1h','0',''), ('81434','32792','1','12','$.performance_standby','1',''), ('81435','32792','2','6','','0',''), ('81436','32792','3','20','1h','0',''), ('81437','32793','1','12','$.healthcheck','2','1'), ('81438','32793','2','20','1h','0',''), ('81439','32794','1','12','$.errors[0]','2',''), ('81440','32794','2','20','1h','0',''), ('81441','32795','1','16','$.errors','1',''), ('81442','32796','1','22','process_resident_memory_bytes value ','1',''), ('81443','32797','1','22','vault_runtime_alloc_bytes value ','1',''), ('81444','32798','1','22','vault_runtime_free_count value ','1',''), ('81445','32799','1','22','vault_runtime_heap_objects value ','1',''), ('81446','32800','1','22','process_virtual_memory_max_bytes value ','1',''), ('81447','32800','2','20','1h','0',''), ('81448','32801','1','22','process_virtual_memory_bytes value ','1',''), ('81449','32802','1','22','process_start_time_seconds value ','1',''), ('81450','32802','2','21','return Math.floor(Date.now()/1000 - Number(value));','0',''), ('81451','32803','1','23','{__name__=~"^vault_rollback_attempt_(?:.+?)_count$"}','1',''), ('81452','32803','2','21','var name, output = []; JSON.parse(value).forEach(function (v) { if (name = v.name.match(/^vault_(rollback_attempt|route_rollback)_(.+?)_count$/)) { output.push( { ''{#MOUNTPOINT}'': name[2].replace(/_/g, ''/''), ''{#PATTERN_C}'': ''vault_'' + name[1] + ''_'' + name[2] + ''_count'', ''{#PATTERN_Q}'': ''vault_'' + name[1] + ''_'' + name[2] } ); } }); return JSON.stringify(output);','0',''), ('81453','32803','3','20','15m','0',''), ('81454','32804','1','22','process_open_fds value ','1',''), ('81455','32805','1','22','process_max_fds value ','1',''), ('81456','32805','2','20','1h','0',''), ('81457','32806','1','22','process_cpu_seconds_total value ','1',''), ('81458','32807','1','22','vault_policy_set_policy_count value ','1',''), ('81459','32807','2','10','','0',''), ('81460','32808','1','22','vault_runtime_num_goroutines value ','1',''), ('81461','32809','1','22','vault_policy_list_policies_count value ','1',''), ('81462','32809','2','10','','0',''), ('81463','32810','1','22','vault_policy_get_policy_count value ','1',''), ('81464','32810','2','10','','0',''), ('81465','32811','1','22','vault_runtime_malloc_count value ','1',''), ('81466','32812','1','22','vault_token_create_count value ','1',''), ('81467','32813','1','22','vault_runtime_sys_bytes value ','1',''), ('81468','32814','1','22','vault_token_createAccessor_count value ','1',''), ('81469','32815','1','22','vault_runtime_total_gc_pause_ns value ','1',''), ('81470','32815','2','1','1.0E-9','0',''), ('81471','32816','1','22','vault_token_store_count value ','1',''), ('81472','32817','1','22','vault_token_revoke_tree_count value ','1',''), ('81473','32818','1','22','vault_token_revoke_count value ','1',''), ('81474','32819','1','22','vault_token_lookup_count value ','1',''), ('81475','32819','2','10','','0',''), ('81476','32820','1','23','vault_token_creation','0',''), ('81477','32820','2','12','$[?(@.name=="vault_token_creation")].value.sum()','2','0'), ('81478','32820','3','10','','0',''), ('81479','32821','1','22','vault_expire_revoke_prefix_count value ','1',''), ('81480','32822','1','22','vault_runtime_total_gc_runs value ','1',''), ('81481','32823','1','23','vault_token_count_by_ttl','0',''), ('81482','32823','2','12','$[?(@.name=="vault_token_count_by_ttl")].value.sum()','2','0'), ('81483','32824','1','23','vault_token_count_by_policy','0',''), ('81484','32824','2','12','$[?(@.name=="vault_token_count_by_policy")].value.sum()','2','0'), ('81485','32825','1','23','vault_token_count_by_auth','0',''), ('81486','32825','2','12','$[?(@.name=="vault_token_count_by_auth")].value.sum()','2','0'), ('81487','32826','1','23','vault_token_count','0',''), ('81488','32826','2','12','$[?(@.name=="vault_token_count")].value.sum()','2','0'), ('81489','32827','1','23','vault_secret_lease_creation','0',''), ('81490','32827','2','12','$[?(@.name=="vault_secret_lease_creation")].value.sum()','2','0'), ('81491','32827','3','10','','0',''), ('81492','32828','1','23','vault_secret_kv_count','0',''), ('81493','32828','2','12','$[?(@.name=="vault_secret_kv_count")].value.sum()','2','0'), ('81494','32829','1','22','vault_policy_delete_policy_count value ','1',''), ('81495','32829','2','10','','0',''), ('81496','32830','1','22','vault_expire_fetch_lease_times_by_token_count value ','1',''), ('81497','32831','1','22','vault_expire_revoke_force_count value ','1',''), ('81498','32832','1','22','vault_barrier_list_count value ','1',''), ('81499','32832','2','10','','0',''), ('81500','32833','1','22','vault_core_fetch_acl_and_token_count value ','1',''), ('81501','32833','2','10','','0',''), ('81502','32834','1','22','vault_core_check_token_count value ','1',''), ('81503','32834','2','10','','0',''), ('81504','32835','1','22','vault_cache_write value ','1',''), ('81505','32835','2','10','','0',''), ('81506','32836','1','22','vault_cache_miss value ','1',''), ('81507','32836','2','10','','0',''), ('81508','32837','1','22','vault_cache_hit value ','1',''), ('81509','32837','2','10','','0',''), ('81510','32838','1','22','vault_barrier_put_count value ','1',''), ('81511','32838','2','10','','0',''), ('81512','32839','1','22','vault_barrier_delete_count value ','1',''), ('81513','32839','2','10','','0',''), ('81514','32840','1','23','vault_core_leadership_setup_failed','0',''), ('81515','32840','2','12','$[?(@.name=="vault_core_leadership_setup_failed")].value.sum()','2','0'), ('81516','32841','1','22','vault_audit_log_response_count value ','1',''), ('81517','32841','2','10','','0',''), ('81518','32842','1','22','vault_audit_log_response_failure value ','1',''), ('81519','32842','2','10','','0',''), ('81520','32843','1','22','vault_audit_log_request_count value ','1',''), ('81521','32843','2','10','','0',''), ('81522','32844','1','22','vault_audit_log_request_failure value ','1',''), ('81523','32844','2','10','','0',''), ('81524','32845','1','23','{__name__=~"^vault_wal_(?:.+)$"}','1',''), ('81525','32845','2','21','return JSON.stringify(value !== "[]" ? [{''{#SINGLETON}'': ''''}] : []);','0',''), ('81526','32845','3','20','15m','0',''), ('81527','32846','1','23','{__name__=~"^vault_(?:.+)_(?:get|put|list|delete)_count$"}','1',''), ('81528','32846','2','21','var name, output = []; JSON.parse(value).forEach(function (v) { if (name = v.name.match(/^vault_((?!barrier).+?)_(get|put|list|delete)_count$/)) { output.push( { ''{#STORAGE}'': name[1], ''{#OPERATION}'': name[2].toUpperCase(), ''{#PATTERN_C}'': ''vault_'' + name[1] + ''_'' + name[2] + ''_count'', ''{#PATTERN_Q}'': ''vault_'' + name[1] + ''_'' + name[2] } ); } }); return JSON.stringify(output);','0',''), ('81529','32846','3','20','15m','0',''), ('81530','32847','1','22','vault_core_handle_request_count value ','1',''), ('81531','32847','2','10','','0',''), ('81532','32848','1','23','vault_core_leadership_lost_count','0',''), ('81533','32848','2','12','$[?(@.name=="vault_core_leadership_lost_count")].value.sum()','2','0'), ('81534','32849','1','22','vault_expire_revoke_by_token_count value ','1',''), ('81535','32850','1','23','{__name__=~"^replication_(?:.+)$"}','1',''), ('81536','32850','2','21','return JSON.stringify(value !== "[]" ? [{''{#SINGLETON}'': ''''}] : []);','0',''), ('81537','32850','3','20','15m','0',''), ('81538','32851','1','22','vault_expire_revoke_count value ','1',''), ('81539','32852','1','22','vault_expire_renew_token_count value ','1',''), ('81540','32853','1','22','vault_expire_renew_count value ','1',''), ('81541','32854','1','22','vault_expire_register_auth_count value ','1',''), ('81542','32855','1','22','vault_expire_register_count value ','1',''), ('81543','32856','1','22','vault_expire_num_leases value ','1',''), ('81544','32857','1','22','vault_expire_fetch_lease_times_count value ','1',''), ('81545','32858','1','22','vault_core_post_unseal_count value ','1',''), ('81546','32859','1','22','vault_core_unseal_count value ','1',''), ('81547','32860','1','23','vault_core_step_down_count','0',''), ('81548','32860','2','12','$[?(@.name=="vault_core_step_down_count")].value.sum()','2','0'), ('81549','32861','1','22','vault_core_seal_with_request_count value ','1',''), ('81550','32862','1','22','vault_core_seal_internal_count value ','1',''), ('81551','32863','1','22','vault_core_seal_count value ','1',''), ('81552','32864','1','22','vault_core_pre_seal_count value ','1',''), ('81553','32865','1','22','vault_barrier_get_count value ','1',''), ('81554','32865','2','10','','0',''), ('81555','32871','1','12','$.[?(@.accessor == "{#ACCESSOR}")].error.first()','0',''), ('81556','32871','2','20','1h','0',''), ('81557','32872','1','12','$.[?(@.accessor == "{#ACCESSOR}")].has_ttl.first()','0',''), ('81558','32872','2','6','','0',''), ('81559','32872','3','20','1h','0',''), ('81560','32873','1','12','$.[?(@.accessor == "{#ACCESSOR}")].ttl.first()','0',''), ('81561','32874','1','22','{#PATTERN_C} value ','1',''), ('81562','32874','2','10','','0',''), ('81563','32875','1','22','{#PATTERN_C} value ','1',''), ('81564','32875','2','10','','0',''), ('81565','32876','1','22','logshipper_streamWALs_guard_found value ','1',''), ('81566','32877','1','22','logshipper_streamWALs_missing_guard value ','1',''), ('81567','32878','1','22','replication_fsm_last_remote_wal value ','1',''), ('81568','32879','1','22','replication_merkle_commit_index value ','1',''), ('81569','32880','1','22','replication_wal_last_dr_wal value ','1',''), ('81570','32881','1','22','replication_wal_last_performance_wal value ','1',''), ('81571','32882','1','22','replication_wal_last_wal value ','1',''), ('81572','32883','1','22','{#PATTERN_C} value ','1',''), ('81573','32883','2','10','','0',''), ('81574','32884','1','22','vault_wal_deletewals_count value ','1',''), ('81575','32885','1','22','vault_wal_flushready_count value ','1',''), ('81576','32886','1','22','vault_wal_gc_deleted value ','1',''), ('81577','32887','1','22','vault_wal_gc_total value ','1',''), ('81578','32888','1','22','vault_wal_loadWAL_count value ','1',''), ('81579','32889','1','22','vault_wal_persistwals_count value ','1',''), ('81580','32890','1','20','1d','0',''), ('81581','32895','1','20','1h','0',''), ('81582','32896','1','20','1d','0',''), ('81583','32900','1','20','1d','0',''), ('81584','32904','1','20','1d','0',''), ('81585','32905','1','20','1d','0',''), ('81586','32909','1','20','10m','0',''), ('81587','32920','1','20','1d','0',''), ('81588','32924','1','20','1d','0',''), ('81589','32927','1','20','1d','0',''), ('81590','32928','1','20','1d','0',''), ('81591','32945','1','20','1d','0',''), ('81592','32952','1','20','1d','0',''), ('81593','32953','1','20','1d','0',''), ('81594','32965','1','12','$.approximate_data_size','0',''), ('81595','32966','1','12','$.outstanding_requests','0',''), ('81596','32967','1','12','$.max_latency','0',''), ('81597','32968','1','12','$.min_latency','0',''), ('81598','32969','1','12','$.num_alive_connections','0',''), ('81599','32970','1','12','$.open_file_descriptor_count','0',''), ('81600','32971','1','12','$.packets_received','0',''), ('81601','32971','2','10','','0',''), ('81602','32972','1','12','$.looking_count','0',''), ('81603','32972','2','10','','0',''), ('81604','32973','1','12','$.packets_sent','0',''), ('81605','32973','2','10','','0',''), ('81606','32974','1','12','$.revalidate_count','0',''), ('81607','32974','2','10','','0',''), ('81608','32975','1','12','$.server_state','0',''), ('81609','32975','2','20','1h','0',''), ('81610','32976','1','12','$.snap_count','0',''), ('81611','32976','2','10','','0',''), ('81612','32977','1','12','$.uptime','0',''), ('81613','32977','2','1','0.001','0',''), ('81614','32978','1','12','$.version','0',''), ('81615','32978','2','5',E'^([0-9\\.]+) \\1','0',''), ('81616','32978','3','20','3h','0',''), ('81617','32979','1','12','$.watch_count','0',''), ('81618','32980','1','12','$.max_file_descriptor_count','0',''), ('81619','32980','2','20','1h','0',''), ('81620','32981','1','12','$.global_sessions','0',''), ('81621','32982','1','12','$.local_sessions','0',''), ('81622','32983','1','21','var metrics = JSON.parse(value), res = metrics.avg_election_time || metrics[''election_time{quantile="0.5"}'']; if (isNaN(res)) { return 0; } return res;','0',''), ('81623','32984','1','12','$.ephemerals_count','0',''), ('81624','32985','1','12','$.diff_count','0',''), ('81625','32985','2','10','','0',''), ('81626','32986','1','12','$.connection_revalidate_count','0',''), ('81627','32986','2','10','','0',''), ('81628','32987','1','12','$.connection_rejected','0',''), ('81629','32987','2','10','','0',''), ('81630','32988','1','12','$.connection_drop_count','0',''), ('81631','32988','2','10','','0',''), ('81632','32989','1','12','$.commit_count','0',''), ('81633','32989','2','10','','0',''), ('81634','32990','1','21','var metrics = JSON.parse(value) return metrics.snapshottime_count || metrics.cnt_snapshottime','0',''), ('81635','32991','1','21','var metrics = JSON.parse(value) return metrics.cnt_fsynctime || metrics.fsynctime_count','0',''), ('81636','32992','1','21','var metrics = JSON.parse(value); if (metrics.server_state === "standalone") { return 0 } else { return metrics.cnt_election_time || metrics.election_time_count }','0',''), ('81637','32993','1','12','$.bytes_received_count','0',''), ('81638','32993','2','10','','0',''), ('81639','32994','1','21','var metrics = JSON.parse(value), res = metrics[''snapshottime{quantile="0.5"}''] || metrics.avg_snapshottime ; if (isNaN(res)) { return 0; } return res;','0',''), ('81640','32995','1','12','$.avg_latency','0',''), ('81641','32996','1','21','var metrics = JSON.parse(value), res = metrics.avg_fsynctime || metrics[''fsynctime{quantile="0.5"}'']; if (isNaN(res)) { return 0; } return res;','0',''), ('81642','32997','1','12','$.znode_count','0',''), ('81643','32997','2','20','1h','0',''), ('81644','32998','1','21','var source = JSON.parse(value), data = []; source.connections.forEach(function(v){ data.push({ "{#ADDRESS}": v.remote_socket_address, "{#CLIENT}": v.remote_socket_address.split('':'')[0], "{#TYPE}": "connections"}) }); source.secure_connections.forEach(function(v){ data.push({ "{#ADDRESS}": v.remote_socket_address, "{#CLIENT}":v.remote_socket_address.split('':'')[0], "{#TYPE}": "secure_connections"}) }); return JSON.stringify(data);','0',''), ('81645','32999','1','12','$.server_state','0',''), ('81646','32999','2','21','return JSON.stringify(value == ''leader'' ? [{''{#SINGLETON}'': ''''}] : []);','0',''), ('81647','33000','1','12','$.avg_latency','0',''), ('81648','33001','1','12','$.max_latency','0',''), ('81649','33002','1','12','$.min_latency','0',''), ('81650','33003','1','12','$.outstanding_requests','0',''), ('81651','33004','1','12','$.packets_received','0',''), ('81652','33004','2','10','','0',''), ('81653','33005','1','12','$.packets_sent','0',''), ('81654','33005','2','10','','0',''), ('81655','33006','1','12','$.learners','0',''), ('81656','33007','1','12','$.pending_syncs','0',''), ('81657','33008','1','12','$.quorum_size','0',''), ('81658','33009','1','12','$.synced_followers','0',''), ('81659','33010','1','12','$.synced_non_voting_followers','0',''), ('81660','33011','1','12','$.synced_observers','0',''), ('81661','33012','1','12','$.data.process[''availability manager''].busy.avg','0','Processes availability manager not started'), ('81663','33014','1','12','$.data.tcache.pitems','3','Not supported in this version.'), ('81664','33015','1','12','$.data.tcache.pmisses','3','Not supported in this version.'), ('81665','33016','1','12','$.data.process[''availability manager''].busy.avg','3','No "availability manager" processes started.'), ('81666','33017','1','12','$.data.process[''history poller''].busy.avg','3','No "history poller" processes started.'), ('81667','33028','1','20','1h','0',''), ('81668','33059','1','20','1h','0',''), ('81669','33062','1','20','1h','0',''), ('81670','33063','1','10','','0',''), ('81671','33066','1','1','0.001','0',''), ('81672','33067','1','1','0.001','0',''), ('81673','33068','1','1','0.001','0',''), ('81674','33071','1','1','0.001','0',''), ('81675','33072','1','1','0.001','0',''), ('81676','33073','1','1','0.001','0',''), ('81677','33074','1','20','1h','0',''), ('81678','33076','1','1','100','0',''), ('81679','33077','1','10','','0',''), ('81680','33082','1','1','0.001','0',''), ('81681','33083','1','1','0.001','0',''), ('81682','33084','1','1','0.001','0',''), ('81683','33085','1','10','','0',''), ('81684','33086','1','1','0.001','0',''), ('81685','33087','1','1','0.001','0',''), ('81686','33088','1','1','0.001','0',''), ('81687','33089','1','10','','0',''), ('81688','33094','1','20','1h','0',''), ('81689','33098','1','1','0.001','0',''), ('81690','33099','1','1','0.001','0',''), ('81691','33100','1','1','0.001','0',''), ('81692','33101','1','1','0.001','0',''), ('81693','33110','1','10','','0',''), ('81694','33112','1','1','0.001','0',''), ('81695','33113','1','1','0.001','0',''), ('81696','33123','1','1','0.001','0',''), ('81697','33124','1','1','0.001','0',''), ('81698','33125','1','10','','0',''), ('81699','33126','1','20','6h','0',''), ('81700','33127','1','11','/resultset/row[field/text()=''Innodb_buffer_pool_wait_free'']/field[@name=''Value'']/text()','0',''), ('81701','33127','2','20','6h','0',''), ('81702','33128','1','11','/resultset/row[field/text()=''Innodb_num_open_files'']/field[@name=''Value'']/text()','0',''), ('81703','33128','2','20','6h','0',''), ('81704','33129','1','11','/resultset/row[field/text()=''Innodb_os_log_written'']/field[@name=''Value'']/text()','0',''), ('81705','33130','1','11','/resultset/row[field/text()=''Open_tables'']/field[@name=''Value'']/text()','0',''), ('81706','33130','2','20','6h','0',''), ('81707','33131','1','11','/resultset/row[field/text()=''Open_table_definitions'']/field[@name=''Value'']/text()','0',''), ('81708','33131','2','20','6h','0',''), ('81709','33132','1','11','/resultset/row[field/text()=''Binlog_cache_disk_use'']/field[@name=''Value'']/text()','0',''), ('81710','33132','2','20','6h','0',''), ('81711','33133','1','21','return JSON.stringify(value.search(''MariaDB'')>-1 ? [{''{#SINGLETON}'': ''''}] : []);','0',''), ('81712','33134','1','11','/resultset/row[field/text()=''Binlog_commits'']/field[@name=''Value'']/text()','0',''), ('81713','33135','1','11','/resultset/row[field/text()=''Binlog_group_commits'']/field[@name=''Value'']/text()','0',''), ('81714','33136','1','11','/resultset/row[field/text()=''Master_gtid_wait_count'']/field[@name=''Value'']/text()','0',''), ('81715','33136','2','20','6h','0',''), ('81716','33137','1','11','/resultset/row[field/text()=''Master_gtid_wait_timeouts'']/field[@name=''Value'']/text()','0',''), ('81717','33137','2','20','6h','0',''), ('81718','33138','1','11','/resultset/row[field/text()=''Master_gtid_wait_time'']/field[@name=''Value'']/text()','0',''), ('81719','33138','2','20','6h','0',''), ('81720','33139','1','11','/resultset/row[field/text()=''Slave_SQL_Running_State'']/field[@name=''Value'']/text()','0',''), ('81721','33139','2','20','6h','0',''), ('81722','33140','1','20','6h','0',''), ('81723','33141','1','12','$.Innodb_buffer_pool_wait_free','0',''), ('81724','33141','2','20','6h','0',''), ('81725','33142','1','12','$.Innodb_num_open_files','0',''), ('81726','33142','2','20','6h','0',''), ('81727','33143','1','12','$.Innodb_os_log_written','0',''), ('81728','33143','2','20','6h','0',''), ('81729','33144','1','12','$.Open_tables','0',''), ('81730','33144','2','20','6h','0',''), ('81731','33145','1','12','$.Open_table_definitions','0',''), ('81732','33145','2','20','6h','0',''), ('81733','33146','1','12','$.Binlog_cache_disk_use','0',''), ('81734','33146','2','20','6h','0',''), ('81735','33147','1','21','return JSON.stringify(value.search(''MariaDB'')>-1 ? [{''{#SINGLETON}'': ''''}] : []);','0',''), ('81736','33148','1','12','$.Binlog_commits','0',''), ('81737','33149','1','12','$.Binlog_group_commits','0',''), ('81738','33150','1','12','$.Master_gtid_wait_count','0',''), ('81739','33150','2','20','6h','0',''), ('81740','33151','1','12','$.Master_gtid_wait_timeouts','0',''), ('81741','33151','2','20','6h','0',''), ('81742','33152','1','12','$.Master_gtid_wait_time','0',''), ('81743','33152','2','20','6h','0',''), ('81744','33153','1','12','$.Slave_SQL_Running_State','0',''), ('81745','33153','2','20','6h','0',''), ('81746','33154','1','20','6h','0',''), ('81747','33155','1','12','$[?(@.Variable_name==''Innodb_buffer_pool_wait_free'')].Value.first()','0',''), ('81748','33155','2','20','6h','0',''), ('81749','33156','1','12','$[?(@.Variable_name==''Innodb_num_open_files'')].Value.first()','0',''), ('81750','33156','2','20','6h','0',''), ('81751','33157','1','12','$[?(@.Variable_name==''Innodb_os_log_written'')].Value.first()','0',''), ('81752','33157','2','20','6h','0',''), ('81753','33158','1','12','$[?(@.Variable_name==''Open_tables'')].Value.first()','0',''), ('81754','33158','2','20','6h','0',''), ('81755','33159','1','12','$[?(@.Variable_name==''Open_table_definitions'')].Value.first()','0',''), ('81756','33159','2','20','6h','0',''), ('81757','33160','1','12','$[?(@.Variable_name==''Binlog_cache_disk_use'')].Value.first()','0',''), ('81758','33160','2','20','6h','0',''), ('81759','33161','1','21','return JSON.stringify(value.search(''MariaDB'')>-1 ? [{''{#SINGLETON}'': ''''}] : []);','0',''), ('81760','33162','1','12','$.Slave_SQL_Running_State','0',''), ('81761','33162','2','20','6h','0',''), ('81762','33163','1','12','$[?(@.Variable_name==''Binlog_commits'')].Value.first()','0',''), ('81763','33164','1','12','$[?(@.Variable_name==''Binlog_group_commits'')].Value.first()','0',''), ('81764','33165','1','12','$[?(@.Variable_name==''Master_gtid_wait_count'')].Value.first()','0',''), ('81765','33165','2','20','6h','0',''), ('81766','33166','1','12','$[?(@.Variable_name==''Master_gtid_wait_timeouts'')].Value.first()','0',''), ('81767','33166','2','20','6h','0',''), ('81768','33167','1','12','$[?(@.Variable_name==''Master_gtid_wait_time'')].Value.first()','0',''), ('81769','33167','2','20','6h','0',''), ('81774','33176','1','12','$.checkpoint_sync_time','0',''), ('81775','33176','2','1','0.001','0',''), ('81776','33176','3','10','','0',''), ('81777','33178','1','12','$.flush_lag','0',''), ('81778','33179','1','12','$.replay_lag','0',''), ('81779','33180','1','12','$.write_lag','0',''), ('81794','33181','1','21','try { var data = JSON.parse(value); } catch (error) { throw ''Failed to parse JSON of Arista sensor discovery.''; } var fields = [''{#SNMPINDEX}'',''{#SENSOR_TYPE}'',''{#SENSOR_INFO}'',''{#SENSOR_PRECISION}'',''{#THRESHOLD_LO_WARN}'',''{#THRESHOLD_LO_CRIT}'',''{#THRESHOLD_HI_WARN}'',''{#THRESHOLD_HI_CRIT}'']; data.forEach(function (element) { fields.forEach(function (field) { element[field] = element[field] || ''''; }); }); return JSON.stringify(data);','0',''), ('81795','33185','1','20','1h','0',''), ('81796','33188','1','20','1h','0',''), ('81797','33189','1','1','0.01','0',''), ('81798','33190','1','20','1h','0',''), ('81799','33190','2','21',E'var FIELDS = [ ''externalShortCircuit'', ''overcurrent'', ''mosfetShorted'', ''software'', ''loadHvd'', ''highTempDisconnect'', ''dipSwitchChanged'', ''customSettingsEdit'' ]; var flags = parseInt(value.replace(/\\x20/g, ''''), 16), result = []; for (var i = 0, f = 1 << 31 >>> 0, l = FIELDS.length; i < l; i++, f >>>= 1) { if (flags & f) { result.push(FIELDS[i]); } } return result.length ? result.join(''\\n'') : ''No faults'';','0',''), ('81800','33191','1','20','1h','0',''), ('81801','33191','2','21',E'var FIELDS = [ ''overcurrent'', ''mosfetSShorted'', ''software'', ''batteryHvd'', ''arrayHvd'', ''customSettingsEdit'', ''rtsShorted'', ''rtsNoLongerValid'', ''localTempSensorDamaged'', ''batteryLowVoltageDisconnect'', ''slaveTimeout'', ''dipSwitchChanged'', ]; var flags = parseInt(value.replace(/\\x20/g, ''''), 16), result = []; for (var i = 0, f = 1 << 31 >>> 0, l = FIELDS.length; i < l; i++, f >>>= 1) { if (flags & f) { result.push(FIELDS[i]); } } return result.length ? result.join(''\\n'') : ''No faults'';','0',''), ('81802','33192','1','20','1h','0',''), ('81803','33192','2','21',E'var FIELDS = [ ''rtsOpen'', ''rtsShorted'', ''rtsDisconnected'', ''heatsinkTempSensorOpen'', ''heatsinkTempSensorShorted'', ''heatsinkTempLimit'', ''inductorTempSensorOpen'', ''inductorTempSensorShorted'', ''inductorTempLimit'', ''currentLimit'', ''currentMeasurementError'', ''batterySenseOutOfRange'', ''batterySenseDisconnected'', ''uncalibrated'', ''tb5v'', ''fp10SupplyOutOfRange'', ''unused'', ''mosfetOpen'', ''arrayCurrentOffset'', ''loadCurrentOffset'', ''p33SupplyOutOfRange'', ''p12SupplyOutOfRange'', ''hightInputVoltageLimit'', ''controllerReset'', ''loadLvd'', ''logTimeout'', ''eepromAccessFailure'' ]; var flags = parseInt(value.replace(/\\x20/g, ''''), 16), result = []; for (var i = 0, f = 1 << 31 >>> 0, l = FIELDS.length; i < l; i++, f >>>= 1) { if (flags & f) { result.push(FIELDS[i]); } } return result.length ? result.join(''\\n'') : ''No alarms'';','0',''), ('81804','33196','1','1','0.1','0',''), ('81805','33198','1','1','0.1','0',''), ('81806','33199','1','20','1h','0',''), ('81807','33205','1','21','var v_range = [ [[0, 18], [12, 15, 11.5, 15.5]], [[18, 36], [24, 30, 23, 31]], [[36, 99], [48, 60, 46, 62]], ], result = []; for (var idx in v_range) { if (v_range[idx][0][0] < value && value <= v_range[idx][0][1]) { result = [{ ''{#VOLTAGE.MIN.WARN}'': parseInt({$VOLTAGE.MIN.WARN}) || v_range[idx][1][0], ''{#VOLTAGE.MAX.WARN}'': parseInt({$VOLTAGE.MAX.WARN}) || v_range[idx][1][1], ''{#VOLTAGE.MIN.CRIT}'': parseInt({$VOLTAGE.MIN.CRIT}) || v_range[idx][1][2], ''{#VOLTAGE.MAX.CRIT}'': parseInt({$VOLTAGE.MAX.CRIT}) || v_range[idx][1][3], ''{#SINGLETON}'': '''' }]; break; } } return JSON.stringify(result);','0',''), ('81808','33208','1','20','1h','0',''), ('81809','33208','2','21',E'var FIELDS = [ ''rtsOpen'', ''rtsShorted'', ''rtsDisconnected'', ''heatsinkTempSensorOpen'', ''heatsinkTempSensorShorted'', ''heatsinkTempLimit'', ''currentLimit'', ''currentMeasurementError'', ''batterySenseOutOfRange'', ''batterySenseDisconnected'', ''uncalibrated'', ''batteryTempOutOfRange'', ''fp10SupplyOutOfRange'', ''mosfetOpen'', ''arrayCurrentOffset'', ''loadCurrentOffset'', ''p33SupplyOutOfRange'', ''p12SupplyOutOfRange'', ''hightInputVoltageLimit'', ''controllerReset'', ''loadLvd'', ''logTimeout'', ''eepromAccessFailure'' ]; var flags = parseInt(value.replace(/\\x20/g, ''''), 16), result = []; for (var i = 0, f = 1 << 31 >>> 0, l = FIELDS.length; i < l; i++, f >>>= 1) { if (flags & f) { result.push(FIELDS[i]); } } return result.length ? result.join(''\\n'') : ''No alarms'';','0',''), ('81810','33211','1','20','1h','0',''), ('81811','33212','1','1','0.01','0',''), ('81812','33213','1','20','1h','0',''), ('81813','33213','2','21',E'var FIELDS = [ ''externalShortCircuit'', ''overcurrent'', ''mosfetShorted'', ''software'', ''loadHvd'', ''highTempDisconnect'', ''dipSwitchChanged'', ''customSettingsEdit'', ''p3Fault'' ]; var flags = parseInt(value.replace(/\\x20/g, ''''), 16), result = []; for (var i = 0, f = 1 << 31 >>> 0, l = FIELDS.length; i < l; i++, f >>>= 1) { if (flags & f) { result.push(FIELDS[i]); } } return result.length ? result.join(''\\n'') : ''No faults'';','0',''), ('81814','33214','1','20','1h','0',''), ('81815','33214','2','21',E'var FIELDS = [ ''overcurrent'', ''mosfetSShorted'', ''software'', ''batteryHvd'', ''arrayHvd'', ''customSettingsEdit'', ''rtsShorted'', ''rtsNoLongerValid'', ''localTempSensorDamaged'', ''batteryLowVoltageDisconnect'', ''slaveTimeout'', ''dipSwitchChanged'', ''p3Fault'', ]; var flags = parseInt(value.replace(/\\x20/g, ''''), 16), result = []; for (var i = 0, f = 1 << 31 >>> 0, l = FIELDS.length; i < l; i++, f >>>= 1) { if (flags & f) { result.push(FIELDS[i]); } } return result.length ? result.join(''\\n'') : ''No faults'';','0',''), ('81816','33217','1','20','1h','0',''), ('81817','33219','1','1','0.1','0',''), ('81818','33221','1','1','0.1','0',''), ('81819','33222','1','20','1h','0',''), ('81820','33225','1','21','var v_range = [ [[0, 18], [12, 15, 11.5, 15.5]], [[18, 36], [24, 30, 23, 31]], [[36, 99], [48, 60, 46, 62]], ], result = []; for (var idx in v_range) { if (v_range[idx][0][0] < value && value <= v_range[idx][0][1]) { result = [{ ''{#VOLTAGE.MIN.WARN}'': parseInt({$VOLTAGE.MIN.WARN}) || v_range[idx][1][0], ''{#VOLTAGE.MAX.WARN}'': parseInt({$VOLTAGE.MAX.WARN}) || v_range[idx][1][1], ''{#VOLTAGE.MIN.CRIT}'': parseInt({$VOLTAGE.MIN.CRIT}) || v_range[idx][1][2], ''{#VOLTAGE.MAX.CRIT}'': parseInt({$VOLTAGE.MAX.CRIT}) || v_range[idx][1][3], ''{#SINGLETON}'': '''' }]; break; } } return JSON.stringify(result);','0',''), ('81821','33227','1','1','0.01509857178','0',''), ('81822','33227','2','5',E'^(\\d+)(\\.\\d{1,2})? \\1\\2','0',''), ('81823','33228','1','20','1h','0',''), ('81824','33231','1','1','0.003051757813','0',''), ('81825','33231','2','5',E'^(\\d+)(\\.\\d{1,2})? \\1\\2','0',''), ('81826','33232','1','1','0.01','0',''), ('81827','33233','1','20','1h','0',''), ('81828','33233','2','21',E'var FIELDS = [ ''externalShortCircuit'', ''overcurrent'', ''mosfetShorted'', ''software'', ''loadHvd'', ''highTempDisconnect'', ''customSettingsEdit'', ''unknownLoadFault'' ]; var flags = parseInt(value.replace(/\\x20/g, ''''), 16), result = []; for (var i = 0, f = 1 << 31 >>> 0, l = FIELDS.length; i < l; i++, f >>>= 1) { if (flags & f) { result.push(FIELDS[i]); } } return result.length ? result.join(''\\n'') : ''No faults'';','0',''), ('81829','33234','1','20','1h','0',''), ('81830','33234','2','21',E'var FIELDS = [ ''overcurrent'', ''mosfetSShorted'', ''softwareFault'', ''batteryHvd'', ''arrayHvd'', ''customSettingsEdit'', ''rtsShorted'', ''rtsNoLongerValid'', ''localTempSensorDamaged'', ]; var flags = parseInt(value.replace(/\\x20/g, ''''), 16), result = []; for (var i = 0, f = 1 << 31 >>> 0, l = FIELDS.length; i < l; i++, f >>>= 1) { if (flags & f) { result.push(FIELDS[i]); } } return result.length ? result.join(''\\n'') : ''No faults'';','0',''), ('81831','33235','1','20','1h','0',''), ('81832','33235','2','21',E'var FIELDS = [ ''rtsOpen'', ''rtsShorted'', ''rtsDisconnected'', ''heatsinkTempSensorOpen'', ''heatsinkTempSensorShorted'', ''sspptHot'', ''currentLimit'', ''currentOffset'', ''undefined'', ''undefined1'', ''uncalibrated'', ''rtsMiswire'', ''undefined12'', ''undefined123'', ''systemMiswire'', ''mosfetSOpen'', ''p12VoltageReferenceOff'', ''highVaCurrentLimit'', ]; var flags = parseInt(value.replace(/\\x20/g, ''''), 16), result = []; for (var i = 0, f = 1 << 31 >>> 0, l = FIELDS.length; i < l; i++, f >>>= 1) { if (flags & f) { result.push(FIELDS[i]); } } return result.length ? result.join(''\\n'') : ''No alarms'';','0',''), ('81833','33236','1','1','0.003051757813','0',''), ('81834','33236','2','5',E'^(\\d+)(\\.\\d{1,2})? \\1\\2','0',''), ('81835','33237','1','1','0.002415771484','0',''), ('81836','33237','2','5',E'^(\\d+)(\\.\\d{1,2})? \\1\\2','0',''), ('81837','33238','1','1','0.003051757813','0',''), ('81838','33238','2','5',E'^(\\d+)(\\.\\d{1,2})? \\1\\2','0',''), ('81839','33239','1','1','0.1','0',''), ('81840','33241','1','1','0.1','0',''), ('81841','33242','1','20','1h','0',''), ('81842','33243','1','1','0.002415771484','0',''), ('81843','33243','2','5',E'^(\\d+)(\\.\\d{1,2})? \\1\\2','0',''), ('81844','33244','1','1','0.003051757813','0',''), ('81845','33245','1','1','0.003051757813','0',''), ('81846','33245','2','5',E'^(\\d+)(\\.\\d{1,2})? \\1\\2','0',''), ('81847','33246','1','1','0.003051757813','0',''), ('81848','33246','2','5',E'^(\\d+)(\\.\\d{1,2})? \\1\\2','0',''), ('81849','33248','1','21','var v_range = [ [[0, 18], [12, 15, 11.5, 15.5]], [[18, 36], [24, 30, 23, 31]], [[36, 99], [48, 60, 46, 62]], ], result = []; for (var idx in v_range) { if (v_range[idx][0][0] < value && value <= v_range[idx][0][1]) { result = [{ ''{#VOLTAGE.MIN.WARN}'': parseInt({$VOLTAGE.MIN.WARN}) || v_range[idx][1][0], ''{#VOLTAGE.MAX.WARN}'': parseInt({$VOLTAGE.MAX.WARN}) || v_range[idx][1][1], ''{#VOLTAGE.MIN.CRIT}'': parseInt({$VOLTAGE.MIN.CRIT}) || v_range[idx][1][2], ''{#VOLTAGE.MAX.CRIT}'': parseInt({$VOLTAGE.MAX.CRIT}) || v_range[idx][1][3], ''{#SINGLETON}'': '''' }]; break; } } return JSON.stringify(result);','0',''), ('81850','33249','1','1','0.003051757813','0',''), ('81851','33249','2','5',E'^(\\d+)(\\.\\d{1,2})? \\1\\2','0',''), ('81852','33250','1','1','0.0002581787109375','0',''), ('81853','33250','2','5',E'^(\\d+)(\\.\\d{1,2})? \\1\\2','0',''), ('81854','33251','1','1','0.0001953125','0',''), ('81855','33251','2','5',E'^(\\d+)(\\.\\d{1,2})? \\1\\2','0',''), ('81856','33252','1','20','1h','0',''), ('81857','33253','1','20','1h','0',''), ('81858','33253','2','21',E'var FIELDS = [ ''heatsinkTempSensorOpen'', ''heatsinkTempSensorShort'', ''unknownAlarm'', ''suresineHot'' ]; var flags = parseInt(value.replace(/\\x20/g, ''''), 16), result = []; for (var i = 0, f = 1 << 31 >>> 0, l = FIELDS.length; i < l; i++, f >>>= 1) { if (flags & f) { result.push(FIELDS[i]); } } return result.length ? result.join(''\\n'') : ''No alarms'';','0',''), ('81859','33254','1','20','1h','0',''), ('81860','33254','2','21',E'var FIELDS = [ ''reset'', ''overcurrent'', ''unknownFault'', ''software'', ''highVoltageDisconnect'', ''suresineHot'', ''dipSwitchChanged'', ''customSettingsEdit'' ]; var flags = parseInt(value.replace(/\\x20/g, ''''), 16), result = []; for (var i = 0, f = 1 << 31 >>> 0, l = FIELDS.length; i < l; i++, f >>>= 1) { if (flags & f) { result.push(FIELDS[i]); } } return result.length ? result.join(''\\n'') : ''No faults'';','0',''), ('81861','33255','1','1','0.01','0',''), ('81862','33257','1','21','var v_range = [ [[0, 18], [12, 15, 11.5, 15.5]], [[18, 36], [24, 30, 23, 31]], [[36, 99], [48, 60, 46, 62]], ], result = []; for (var idx in v_range) { if (v_range[idx][0][0] < value && value <= v_range[idx][0][1]) { result = [{ ''{#VOLTAGE.MIN.WARN}'': parseInt({$VOLTAGE.MIN.WARN}) || v_range[idx][1][0], ''{#VOLTAGE.MAX.WARN}'': parseInt({$VOLTAGE.MAX.WARN}) || v_range[idx][1][1], ''{#VOLTAGE.MIN.CRIT}'': parseInt({$VOLTAGE.MIN.CRIT}) || v_range[idx][1][2], ''{#VOLTAGE.MAX.CRIT}'': parseInt({$VOLTAGE.MAX.CRIT}) || v_range[idx][1][3], ''{#SINGLETON}'': '''' }]; break; } } return JSON.stringify(result);','0',''), ('81863','33258','1','1','0.0002581787109375','0',''), ('81864','33258','2','5',E'^(\\d+)(\\.\\d{1,2})? \\1\\2','0',''), ('81865','33262','1','20','1h','0',''), ('81866','33263','1','1','0.01','0',''), ('81867','33264','1','20','1h','0',''), ('81868','33264','2','21',E'var FIELDS = [ ''overcurrent'', ''fetShort'', ''softwareFault'', ''batteryHvd'', ''arrayHvd'', ''dipSwitchChange'', ''customSettingsEdit'', ''rtsShorted'', ''rtsDisconnected'', ''eepromRetryLimit'', ''controllerWasReset'', ''chargeSlaveControlTimeout'', ''rs232SerialToMeterBridge'', ''batteryLvd'', ''fault14Undefined'', ''powerboardCommunicationFault'', ''fault16Software'', ''fault17Software'', ''fault18Software'', ''fault19Software'', ''fault20Software'', ''fault21Software'', ''fpgaVersion'', ''currentSensorReferenceOutOfRange'', ''ia-refSlaveModeTimeout'', ''blockbusBoot'', ''hscommMaster'', ''hscomm'', ''slave'', ]; var flags = parseInt(value.replace(/\\x20/g, ''''), 16), result = []; for (var i = 0, f = 1 << 31 >>> 0, l = FIELDS.length; i < l; i++, f >>>= 1) { if (flags & f) { result.push(FIELDS[i]); } } return result.length ? result.join(''\\n'') : ''No faults'';','0',''), ('81869','33265','1','20','1h','0',''), ('81870','33265','2','21',E'var FIELDS = [ ''rtsOpen'', ''rtsShorted'', ''rtsDisconnected'', ''heatsinkTempSensorOpen'', ''heatsinkTempSensorShorted'', ''highTemperatureCurrentLimit'', ''currentLimit'', ''currentOffset'', ''batterySense'', ''batterySenseDisconnected'', ''uncalibrated'', ''rtsMiswire'', ''highVoltageDisconnect'', ''undefined'', ''systemMiswire'', ''mosfetSOpen'', ''p12VoltageOutOfRange'', ''highArrayVCurrentLimit'', ''maxAdcValueReached'', ''controllerWasReset'', ''alarm21Internal'', ''p3VoltageOutOfRange'', ''derateLimit'', ''arrayCurrentOffset'', ''ee-i2cRetryLimit'', ''ethernetAlarm'', ''lvd'', ''software'', ''fp12VoltageOutOfRange'', ''extflashFault'', ''slaveControlFault'', ''alarm32Undefined'' ]; var flags = parseInt(value.replace(/\\x20/g, ''''), 16), result = []; for (var i = 0, f = 1 << 31 >>> 0, l = FIELDS.length; i < l; i++, f >>>= 1) { if (flags & f) { result.push(FIELDS[i]); } } return result.length ? result.join(''\\n'') : ''No alarms'';','0',''), ('81871','33267','1','20','1h','0',''), ('81872','33276','1','21','var v_range = [ [[0, 18], [12, 15, 11.5, 15.5]], [[18, 36], [24, 30, 23, 31]], [[36, 99], [48, 60, 46, 62]], ], result = []; for (var idx in v_range) { if (v_range[idx][0][0] < value && value <= v_range[idx][0][1]) { result = [{ ''{#VOLTAGE.MIN.WARN}'': parseInt({$VOLTAGE.MIN.WARN}) || v_range[idx][1][0], ''{#VOLTAGE.MAX.WARN}'': parseInt({$VOLTAGE.MAX.WARN}) || v_range[idx][1][1], ''{#VOLTAGE.MIN.CRIT}'': parseInt({$VOLTAGE.MIN.CRIT}) || v_range[idx][1][2], ''{#VOLTAGE.MAX.CRIT}'': parseInt({$VOLTAGE.MAX.CRIT}) || v_range[idx][1][3], ''{#SINGLETON}'': '''' }]; break; } } return JSON.stringify(result);','0',''), ('81873','33278','1','1','0.00244140625','0',''), ('81874','33278','2','5',E'^(\\d+)(\\.\\d{1,2})? \\1\\2','0',''), ('81875','33279','1','1','0.1','0',''), ('81876','33281','1','1','0.005493164063','0',''), ('81877','33281','2','5',E'^(\\d+)(\\.\\d{1,2})? \\1\\2','0',''), ('81878','33282','1','1','0.01','0',''), ('81879','33283','1','20','1h','0',''), ('81880','33283','2','21',E'var FIELDS = [ ''overcurrent'', ''fetShort'', ''softwareFault'', ''batteryHvd'', ''arrayHvd'', ''dipSwitchChange'', ''customSettingsEdit'', ''rtsShorted'', ''rtsDisconnected'', ''eepromRetryLimit'', ''fault11Undefined'', ''slaveControlTimeout'', ]; var flags = parseInt(value.replace(/\\x20/g, ''''), 16), result = []; for (var i = 0, f = 1 << 31 >>> 0, l = FIELDS.length; i < l; i++, f >>>= 1) { if (flags & f) { result.push(FIELDS[i]); } } return result.length ? result.join(''\\n'') : ''No faults'';','0',''), ('81881','33284','1','20','1h','0',''), ('81882','33284','2','21',E'var FIELDS = [ ''rtsOpen'', ''rtsShorted'', ''rtsDisconnected'', ''heatsinkTempSensorOpen'', ''heatsinkTempSensorShorted'', ''highTemperatureCurrentLimit'', ''currentLimit'', ''currentOffset'', ''batterySense'', ''batterySenseDisconnected'', ''uncalibrated'', ''rtsMiswire'', ''highVoltageDisconnect'', ''undefined'', ''systemMiswire'', ''mosfetSOpen'', ''p12VoltageReferenceOff'', ''highArrayVCurrentLimit'', ''maxAdcValueReached'', ''controllerWasReset'', ]; var flags = parseInt(value.replace(/\\x20/g, ''''), 16), result = []; for (var i = 0, f = 1 << 31 >>> 0, l = FIELDS.length; i < l; i++, f >>>= 1) { if (flags & f) { result.push(FIELDS[i]); } } return result.length ? result.join(''\\n'') : ''No alarms'';','0',''), ('81883','33286','1','20','1h','0',''), ('81884','33287','1','1','0.1098632813','0',''), ('81885','33287','2','5',E'^(\\d+)(\\.\\d{1,2})? \\1\\2','0',''), ('81886','33288','1','1','0.1098632813','0',''), ('81887','33288','2','5',E'^(\\d+)(\\.\\d{1,2})? \\1\\2','0',''), ('81888','33289','1','1','0.00244140625','0',''), ('81889','33289','2','5',E'^(\\d+)(\\.\\d{1,2})? \\1\\2','0',''), ('81890','33290','1','1','0.005493164063','0',''), ('81891','33291','1','1','0.005493164063','0',''), ('81892','33291','2','5',E'^(\\d+)(\\.\\d{1,2})? \\1\\2','0',''), ('81893','33292','1','1','0.005493164063','0',''), ('81894','33292','2','5',E'^(\\d+)(\\.\\d{1,2})? \\1\\2','0',''), ('81895','33293','1','1','0.005493164063','0',''), ('81896','33293','2','5',E'^(\\d+)(\\.\\d{1,2})? \\1\\2','0',''), ('81897','33295','1','21','var v_range = [ [[0, 18], [12, 15, 11.5, 15.5]], [[18, 36], [24, 30, 23, 31]], [[36, 99], [48, 60, 46, 62]], ], result = []; for (var idx in v_range) { if (v_range[idx][0][0] < value && value <= v_range[idx][0][1]) { result = [{ ''{#VOLTAGE.MIN.WARN}'': parseInt({$VOLTAGE.MIN.WARN}) || v_range[idx][1][0], ''{#VOLTAGE.MAX.WARN}'': parseInt({$VOLTAGE.MAX.WARN}) || v_range[idx][1][1], ''{#VOLTAGE.MIN.CRIT}'': parseInt({$VOLTAGE.MIN.CRIT}) || v_range[idx][1][2], ''{#VOLTAGE.MAX.CRIT}'': parseInt({$VOLTAGE.MAX.CRIT}) || v_range[idx][1][3], ''{#SINGLETON}'': '''' }]; break; } } return JSON.stringify(result);','0',''), ('81898','33296','1','1','0.005493164063','0',''), ('81899','33296','2','5',E'^(\\d+)(\\.\\d{1,2})? \\1\\2','0',''), ('81900','33297','1','1','0.002950042725','0',''), ('81901','33299','1','1','0.1','0',''), ('81902','33300','1','1','0.001','0',''), ('81903','33300','2','5',E'^(\\d+)(\\.\\d{1,2})? \\1\\2','0',''), ('81904','33301','1','20','1h','0',''), ('81905','33301','2','21',E'var FIELDS = [ ''rtsOpen'', ''rtsShorted'', ''rtsDisconnected'', ''heatsinkTempSensorOpen'', ''heatsinkTempSensorShorted'', ''tristarHot'', ''currentLimit'', ''currentOffset'', ''batterySense'', ''batterySenseDisconnected'', ''uncalibrated'', ''rtsMiswire'', ''highVoltageDisconnect'', ''diversionLoadNearMax'', ''systemMiswire'', ''mosfetSOpen'', ''p12VoltageReferenceOff'', ''loadDisconnectState'', ]; var flags = parseInt(value.replace(/\\x20/g, ''''), 16), result = []; for (var i = 0, f = 1 << 31 >>> 0, l = FIELDS.length; i < l; i++, f >>>= 1) { if (flags & f) { result.push(FIELDS[i]); } } return result.length ? result.join(''\\n'') : ''No alarms'';','0',''), ('81906','33302','1','20','1h','0',''), ('81907','33302','2','21',E'var FIELDS = [ ''externalShort'', ''overcurrent'', ''mosfetSShorted'', ''softwareFault'', ''highVoltageDisconnect'', ''tristarHot'', ''dipSwitchChange'', ''customSettingsEdit'', ''reset'', ''systemMiswire'', ''rtsShorted'', ''rtsDisconnected'', ]; var flags = parseInt(value.replace(/\\x20/g, ''''), 16), result = []; for (var i = 0, f = 1 << 31 >>> 0, l = FIELDS.length; i < l; i++, f >>>= 1) { if (flags & f) { result.push(FIELDS[i]); } } return result.length ? result.join(''\\n'') : ''No faults'';','0',''), ('81908','33303','1','1','0.01','0',''), ('81909','33306','1','21','var v_range = [ [[0, 18], [12, 15, 11.5, 15.5]], [[18, 36], [24, 30, 23, 31]], [[36, 99], [48, 60, 46, 62]], ], result = []; for (var idx in v_range) { if (v_range[idx][0][0] < value && value <= v_range[idx][0][1]) { result = [{ ''{#VOLTAGE.MIN.WARN}'': parseInt({$VOLTAGE.MIN.WARN}) || v_range[idx][1][0], ''{#VOLTAGE.MAX.WARN}'': parseInt({$VOLTAGE.MAX.WARN}) || v_range[idx][1][1], ''{#VOLTAGE.MIN.CRIT}'': parseInt({$VOLTAGE.MIN.CRIT}) || v_range[idx][1][2], ''{#VOLTAGE.MAX.CRIT}'': parseInt({$VOLTAGE.MAX.CRIT}) || v_range[idx][1][3], ''{#SINGLETON}'': '''' }]; break; } } return JSON.stringify(result);','0',''), ('81910','33307','1','21','return JSON.stringify(parseInt(value) === 0 ? [{ ''{#SINGLETON}'': '''' }] : []);','0',''), ('81911','33308','1','21','var mode = parseInt(value); return JSON.stringify((mode === 0 || mode === 2) ? [{ ''{#SINGLETON}'': '''' }] : []);','0',''), ('81912','33309','1','21','return JSON.stringify(parseInt(value) === 2 ? [{ ''{#SINGLETON}'': '''' }] : []);','0',''), ('81913','33310','1','21','return JSON.stringify(parseInt(value) === 1 ? [{ ''{#SINGLETON}'': '''' }] : []);','0',''), ('81914','33311','1','21','var mode = parseInt(value); return JSON.stringify((mode === 1 || mode === 2) ? [{ ''{#SINGLETON}'': '''' }] : []);','0',''), ('81915','33312','1','1','0.002950042725','0',''), ('81916','33312','2','5',E'^(\\d+)(\\.\\d{1,2})? \\1\\2','0',''), ('81917','33313','1','1','0.004246520996','0',''), ('81918','33313','2','5',E'^(\\d+)(\\.\\d{1,2})? \\1\\2','0',''), ('81919','33314','1','1','0.002034515381','0',''), ('81920','33314','2','5',E'^(\\d+)(\\.\\d{1,2})? \\1\\2','0',''), ('81921','33315','1','20','1h','0',''), ('81922','33316','1','1','0.002950042725','0',''), ('81923','33316','2','5',E'^(\\d+)(\\.\\d{1,2})? \\1\\2','0',''), ('81924','33317','1','1','0.3921568627','0',''), ('81925','33317','2','5',E'^(\\d+)(\\.\\d{1,2})? \\1\\2','0',''), ('81926','33318','1','20','1h','0',''), ('81927','33319','1','1','0.009664001465','0',''), ('81928','33319','2','5',E'^(\\d+)(\\.\\d{1,2})? \\1\\2','0',''), ('81929','33320','1','1','0.004246520996','0',''), ('81930','33320','2','5',E'^(\\d+)(\\.\\d{1,2})? \\1\\2','0',''), ('81949','33348','1','20','10m','0',''), ('81950','33349','1','20','6h','0',''), ('81951','33350','1','20','6h','0',''), ('81952','33351','1','20','6h','0',''), ('81953','33356','1','21','var data = JSON.parse(value); var descriptions = {}; var out = []; data.forEach(function(elem) { if (elem["{#IFDESCR}"]) { var parts = elem["{#IFDESCR}"].split(":"); var port = parts[parts.length-1].split('' ''); descriptions[parts[0] + '':'' + port[port.length-1]] = { "{#IFDESCR}": elem["{#IFDESCR}"], "{#SNMPINDEX}": elem["{#SNMPINDEX}"] } } }); data.forEach(function(elem) { if (elem["{#IFNAME}"]) { var port = descriptions[elem["{#NODE}"] + '':'' + elem["{#IFNAME}"]]; elem["{#IFDESCR}"] = port["{#IFDESCR}"]; elem["{#IFSNMPINDEX}"] = port["{#SNMPINDEX}"]; switch(elem["{#TYPE}"]) { case ''0'': elem["{#TYPE}"] = ''physical''; break; case ''1'': elem["{#TYPE}"] = ''if-group''; break; case ''2'': elem["{#TYPE}"] = ''vlan''; break; case ''3'': elem["{#TYPE}"] = ''undef''; break; }; out.push(elem); } }); return JSON.stringify(out);','0',''), ('81954','33357','1','20','6h','0',''), ('81955','33358','1','20','6h','0',''), ('81956','33359','1','20','6h','0',''), ('81957','33360','1','20','6h','0',''), ('81958','33361','1','20','6h','0',''), ('81959','33362','1','20','6h','0',''), ('81960','33363','1','20','6h','0',''), ('81961','33364','1','20','6h','0',''), ('81962','33365','1','20','6h','0',''), ('81963','33366','1','20','6h','0',''), ('81964','33367','1','1','0.01','0',''), ('81965','33369','1','1','1024','0',''), ('81966','33370','1','1','1024','0',''), ('81967','33371','1','1','1024','0',''), ('81968','33375','1','20','6h','0',''), ('81969','33376','1','20','6h','0',''), ('81970','33377','1','10','','0',''), ('81971','33378','1','10','','0',''), ('81972','33379','1','1','8','0',''), ('81973','33379','2','10','','0',''), ('81974','33380','1','10','','0',''), ('81975','33381','1','10','','0',''), ('81976','33382','1','1','8','0',''), ('81977','33382','2','10','','0',''), ('81978','33383','1','20','6h','0',''), ('81979','33384','1','20','6h','0',''), ('81980','33385','1','20','6h','0',''), ('81981','33386','1','20','6h','0',''), ('81982','33387','1','20','6h','0',''), ('81983','33388','1','20','6h','0',''), ('81984','33389','1','12','$.pjsip.available','0',''), ('81985','33390','1','12','$.iax.online','0',''), ('81988','33392','1','26','-1','2','0'), ('81989','33392','2','5','{$JENKINS.PING.REPLY} 1','2','0'), ('81993','33396','1','12','$.[''jenkins.job.waiting.duration''].m1_rate','0',''), ('81994','33397','1','12','$.[''jenkins.node.online.value''].value','0',''), ('81995','33397','2','20','1h','0',''), ('81996','33398','1','12','$.[''jenkins.node.offline.value''].value','0',''), ('81997','33398','2','20','1h','0',''), ('81998','33399','1','12','$.[''jenkins.node.count.value''].value','0',''), ('81999','33399','2','20','1h','0',''), ('82000','33400','1','12','$.[''jenkins.job.waiting.duration''].m5_rate','0',''), ('82001','33401','1','12','$.[''jenkins.job.waiting.duration''].p50','0',''), ('82002','33402','1','12','$.[''jenkins.job.waiting.duration''].p95','0',''), ('82003','33403','1','12','$.[''jenkins.plugins.active''].value','0',''), ('82004','33403','2','20','1h','0',''), ('82005','33404','1','12','$.[''jenkins.job.total.duration''].m5_rate','0',''), ('82006','33405','1','12','$.[''jenkins.job.total.duration''].m1_rate','0',''), ('82007','33406','1','12','$.[''jenkins.job.total.duration''].p95','0',''), ('82008','33407','1','12','$.[''jenkins.job.total.duration''].p50','0',''), ('82009','33408','1','12','$.[''jenkins.job.scheduled''].m5_rate','0',''), ('82010','33409','1','12','$.plugins.healthy','0',''), ('82011','33409','2','6','','0',''), ('82012','33409','3','20','1h','0',''), ('82013','33410','1','12','$.[''jenkins.plugins.inactive''].value','0',''), ('82014','33410','2','20','1h','0',''), ('82015','33411','1','12','$.[''jenkins.plugins.failed''].value','0',''), ('82016','33411','2','20','1h','0',''), ('82017','33412','1','12','$.[''jenkins.queue.stuck.value''].value','0',''), ('82018','33413','1','12','$[''thread-deadlock''].message','2',''), ('82019','33413','2','20','3h','0',''), ('82020','33414','1','12','$[''thread-deadlock''].healthy','0',''), ('82021','33414','2','6','','0',''), ('82022','33414','3','20','1h','0',''), ('82023','33415','1','12','$[''temporary-space''].message','2',''), ('82024','33415','2','20','3h','0',''), ('82025','33416','1','12','$[''temporary-space''].healthy','0',''), ('82026','33416','2','6','','0',''), ('82027','33416','3','20','1h','0',''), ('82028','33417','1','12','$.[''vm.uptime.milliseconds''].value','0',''), ('82029','33417','2','1','0.001','0',''), ('82030','33418','1','12','$.[''system.cpu.load''].value','0',''), ('82031','33419','1','12','$.[''jenkins.queue.size.value''].value','0',''), ('82032','33420','1','12','$.[''jenkins.job.queuing.duration''].m5_rate','0',''), ('82033','33421','1','12','$.[''jenkins.queue.pending.value''].value','0',''), ('82034','33422','1','12','$.[''jenkins.queue.buildable.value''].value','0',''), ('82035','33423','1','12','$.[''jenkins.queue.blocked.value''].value','0',''), ('82036','33424','1','12','$.[''jenkins.project.count.value''].value','0',''), ('82037','33424','2','20','1h','0',''), ('82038','33425','1','12','$.[''jenkins.plugins.withUpdate''].value','0',''), ('82039','33425','2','20','1h','0',''), ('82040','33426','1','12','$[''plugins''].message','2',''), ('82041','33426','2','20','3h','0',''), ('82042','33427','1','12','$.[''jenkins.job.scheduled''].m1_rate','0',''), ('82043','33428','1','12','$.[''jenkins.job.queuing.duration''].p95','0',''), ('82044','33429','1','12','$.[''jenkins.job.queuing.duration''].m1_rate','0',''), ('82045','33430','1','12','$.[''http.responseCodes.created''].count','0',''), ('82046','33430','2','10','','0',''), ('82047','33431','1','12','$.[''http.responseCodes.other''].count','0',''), ('82048','33431','2','10','','0',''), ('82049','33432','1','12','$.[''http.responseCodes.ok''].count','0',''), ('82050','33432','2','10','','0',''), ('82051','33433','1','12','$.[''http.responseCodes.noContent''].count','0',''), ('82052','33433','2','10','','0',''), ('82053','33434','1','12','$.[''http.responseCodes.notModified''].count','0',''), ('82054','33434','2','10','','0',''), ('82055','33435','1','12','$.[''http.responseCodes.notFound''].count','0',''), ('82056','33435','2','10','','0',''), ('82057','33436','1','12','$.[''http.responseCodes.forbidden''].count','0',''), ('82058','33436','2','10','','0',''), ('82059','33437','1','12','$.[''http.responseCodes.badRequest''].count','0',''), ('82060','33437','2','10','','0',''), ('82061','33438','1','12','$.[''http.requests''].p50','0',''), ('82062','33439','1','12','$.counters.[''http.activeRequests''].count','0',''), ('82063','33439','2','10','','0',''), ('82064','33440','1','12','$.[''jenkins.executor.in-use.value''].value','0',''), ('82065','33441','1','12','$.[''jenkins.executor.free.value''].value','0',''), ('82066','33442','1','12','$.[''jenkins.executor.count.value''].value','0',''), ('82067','33442','2','20','1h','0',''), ('82068','33443','1','12','$[''disk-space''].message','2',''), ('82069','33443','2','20','3h','0',''), ('82070','33444','1','12','$[''disk-space''].healthy','0',''), ('82071','33444','2','6','','0',''), ('82072','33444','3','20','1h','0',''), ('82073','33445','1','12','$.[''http.requests''].count','0',''), ('82074','33445','2','10','','0',''), ('82075','33446','1','12','$.[''http.requests''].p95','0',''), ('82076','33447','1','12','$.[''vm.file.descriptor.ratio''].value','0',''), ('82077','33447','2','1','100','0',''), ('82078','33448','1','12','$.[''jenkins.job.buildable.duration''].m5_rate','0',''), ('82079','33449','1','12','$.[''jenkins.job.queuing.duration''].p50','0',''), ('82080','33450','1','12','$.[''jenkins.job.count.value''].value','0',''), ('82081','33450','2','20','3h','0',''), ('82082','33451','1','12','$.[''jenkins.job.building.duration''].m5_rate','0',''), ('82083','33452','1','12','$.[''jenkins.job.building.duration''].m1_rate','0',''), ('82084','33453','1','12','$.[''jenkins.job.building.duration''].p95','0',''), ('82085','33454','1','12','$.[''jenkins.job.building.duration''].p50','0',''), ('82086','33455','1','12','$.[''jenkins.job.buildable.duration''].m1_rate','0',''), ('82087','33456','1','12','$.[''http.responseCodes.serverError''].count','0',''), ('82088','33456','2','10','','0',''), ('82089','33457','1','12','$.[''jenkins.job.buildable.duration''].p95','0',''), ('82090','33458','1','12','$.[''jenkins.job.buildable.duration''].p50','0',''), ('82091','33459','1','12','$.[''jenkins.job.blocked.duration''].m5_rate','0',''), ('82092','33460','1','12','$.[''jenkins.job.blocked.duration''].m1_rate','0',''), ('82093','33461','1','12','$.[''jenkins.job.blocked.duration''].p95','0',''), ('82094','33462','1','12','$.[''jenkins.job.blocked.duration''].p50','0',''), ('82095','33463','1','12','$.[''http.responseCodes.serviceUnavailable''].count','0',''), ('82096','33463','2','10','','0',''), ('82097','33464','1','12','$.[''jenkins.versions.core''].value','0',''), ('82098','33464','2','20','3h','0',''), ('82099','33465','1','12','$.computer.[*]','0',''), ('82100','33466','1','12','$.jobs.[*]','0',''), ('82101','33467','1','12','$.monitorData[''hudson.node_monitors.SwapSpaceMonitor''].availablePhysicalMemory','1',''), ('82102','33468','1','12','$.monitorData[''hudson.node_monitors.SwapSpaceMonitor''].availableSwapSpace','1',''), ('82103','33469','1','12','$.monitorData[''hudson.node_monitors.ClockMonitor''].diff','1',''), ('82104','33469','2','1','0.001','0',''), ('82105','33470','1','12','$.monitorData[''hudson.node_monitors.DiskSpaceMonitor''].size','1',''), ('82106','33471','1','12','$.idle','0',''), ('82107','33471','2','6','','0',''), ('82108','33471','3','20','1h','0',''), ('82109','33472','1','12','$.numExecutors','1',''), ('82110','33473','1','12','$.offlineCauseReason','0',''), ('82111','33473','2','20','3h','0',''), ('82112','33474','1','12','$.monitorData[''hudson.node_monitors.ResponseTimeMonitor''].average','1',''), ('82113','33474','2','1','0.001','0',''), ('82114','33475','1','12','$.offline','0',''), ('82115','33475','2','6','','0',''), ('82116','33475','3','20','1h','0',''), ('82117','33476','1','12','$.temporarilyOffline','0',''), ('82118','33476','2','6','','0',''), ('82119','33476','3','20','1h','0',''), ('82120','33477','1','12','$.monitorData[''hudson.node_monitors.TemporarySpaceMonitor''].size','1',''), ('82121','33478','1','12','$.monitorData[''hudson.node_monitors.SwapSpaceMonitor''].totalPhysicalMemory','1',''), ('82122','33479','1','12','$.monitorData[''hudson.node_monitors.SwapSpaceMonitor''].totalSwapSpace','1',''), ('82123','33480','1','12','$.healthReport..score.first()','1',''), ('82124','33480','2','20','30m','0',''), ('82125','33481','1','12','$.lastBuild.duration','1',''), ('82126','33481','2','1','0.001','0',''), ('82127','33481','3','20','30m','0',''), ('82128','33482','1','12','$.lastBuild.number','1',''), ('82129','33482','2','20','30m','0',''), ('82130','33483','1','12','$.lastBuild.result','1',''), ('82131','33483','2','20','30m','0',''), ('82132','33484','1','12','$.lastBuild.timestamp','1',''), ('82133','33484','2','1','0.001','0',''), ('82134','33484','3','20','30m','0',''), ('82135','33485','1','12','$.lastFailedBuild.duration','1',''), ('82136','33485','2','1','0.001','0',''), ('82137','33485','3','20','30m','0',''), ('82138','33486','1','12','$.lastFailedBuild.number','1',''), ('82139','33486','2','20','30m','0',''), ('82140','33487','1','12','$.lastFailedBuild.timestamp','1',''), ('82141','33487','2','1','0.001','0',''), ('82142','33487','3','20','30m','0',''), ('82143','33488','1','12','$.lastSuccessfulBuild.duration','1',''), ('82144','33488','2','1','0.001','0',''), ('82145','33488','3','20','30m','0',''), ('82146','33489','1','12','$.lastSuccessfulBuild.number','1',''), ('82147','33489','2','20','30m','0',''), ('82148','33490','1','12','$.lastSuccessfulBuild.timestamp','1',''), ('82149','33490','2','1','0.001','0',''), ('82150','33490','3','20','30m','0',''), ('82152','33491','1','26','-1','2','{"html":{"head":{"title":"Connection error"}}}'), ('82154','33492','1','26','-1','2','{"html":{"head":{"title":"Connection error"}}}'), ('82156','33493','1','26','-1','2','{"html":{"head":{"title":"Connection error"}}}'), ('82157','33494','1','12','$.DeviceInfo.bootReleasedDate','1',''), ('82158','33494','2','20','24h','0',''), ('82159','33495','1','12','$.DeviceInfo.telecontrolID','1',''), ('82160','33495','2','20','24h','0',''), ('82161','33496','1','12','$.DeviceInfo.systemContact','1',''), ('82162','33496','2','20','24h','0',''), ('82163','33497','1','12','$.DeviceInfo.supportVideoLoss','1',''), ('82164','33497','2','20','24h','0',''), ('82165','33498','1','12','$.DeviceInfo.supportBeep','1',''), ('82166','33498','2','20','24h','0',''), ('82167','33499','1','12','$.DeviceInfo.serialNumber','1',''), ('82168','33499','2','20','24h','0',''), ('82169','33500','1','12','$.DeviceInfo.model','1',''), ('82170','33500','2','20','24h','0',''), ('82171','33501','1','12','$.DeviceStatus.MemoryList.Memory.memoryUsage','1',''), ('82172','33501','2','20','1h','0',''), ('82173','33502','1','12','$.DeviceInfo.macAddress','1',''), ('82174','33502','2','20','24h','0',''), ('82175','33503','1','12','$.DeviceInfo.hardwareVersion','1',''), ('82176','33503','2','20','24h','0',''), ('82177','33504','1','21','var data = JSON.parse(value); if ("html" in data){ if (data.html.head.title === "Document Error: Unauthorized") {return 1} else if (data.html.head.title === "Connection error") {return 2} } return 0;','0',''), ('82178','33504','2','20','1h','0',''), ('82179','33505','1','21','var data = JSON.parse(value); if ("html" in data){ if (data.html.head.title === "Document Error: Unauthorized") {return 1} else if (data.html.head.title === "Connection error") {return 2} } return 0;','0',''), ('82180','33505','2','20','1h','0',''), ('82181','33506','1','21','var data = JSON.parse(value); if ("html" in data){ if (data.html.head.title === "Document Error: Unauthorized") {return 1} else if (data.html.head.title === "Connection error") {return 2} } return 0;','0',''), ('82182','33506','2','20','1h','0',''), ('82183','33507','1','12','$.DeviceInfo.bootVersion','1',''), ('82184','33507','2','20','24h','0',''), ('82185','33508','1','12','$.DeviceInfo.firmwareVersion','1',''), ('82186','33508','2','20','24h','0',''), ('82187','33509','1','12','$.DeviceInfo.firmwareReleasedDate','1',''), ('82188','33509','2','20','24h','0',''), ('82189','33510','1','12','$.DeviceInfo.encoderVersion','1',''), ('82190','33510','2','20','24h','0',''), ('82191','33511','1','12','$.DeviceInfo.encoderReleasedDate','1',''), ('82192','33511','2','20','24h','0',''), ('82193','33512','1','12','$.DeviceInfo.deviceType','1',''), ('82194','33512','2','20','24h','0',''), ('82195','33513','1','12','$.DeviceInfo.deviceName','1',''), ('82196','33513','2','20','1d','0',''), ('82197','33514','1','12','$.DeviceInfo.deviceLocation','1',''), ('82198','33514','2','20','24h','0',''), ('82199','33515','1','12','$.DeviceInfo.deviceID','1',''), ('82200','33515','2','20','24h','0',''), ('82201','33516','1','12','$.DeviceInfo.deviceDescription','1',''), ('82202','33516','2','20','24h','0',''), ('82203','33517','1','12','$.DeviceStatus.currentDeviceTime','1',''), ('82204','33518','1','12','$.DeviceStatus.CPUList.CPU.cpuUtilization','1',''), ('82205','33518','2','20','1h','0',''), ('82206','33519','1','12','$.DeviceStatus.deviceUpTime','1',''), ('82207','33520','1','27','','0',''), ('82208','33520','2','21','var data = JSON.parse(value); var out = []; if ("PTZChannel" in data.PTZChannelList) { out.push({ "{#PTZ_CHANNEL_ID}": data.PTZChannelList.PTZChannel.id }) } return JSON.stringify(out);','0',''), ('82209','33521','1','27','','0',''), ('82210','33521','2','21','var data = JSON.parse(value); var out = []; data.StreamingChannelList.StreamingChannel.forEach(function (field) { out.push({ "{#CHANNEL_ID}": field.id, "{#CHANNEL_NAME}": field.channelName, "{#CHANNEL_ENABLED}": field.enabled }); }) return JSON.stringify(out);','0',''), ('82212','33522','1','26','-1','2','{"html":{"head":{"title":"Connection error"}}}'), ('82213','33523','1','21','var data = JSON.parse(value); if ("html" in data){ if (data.html.head.title === "Document Error: Unauthorized") {return 1} else if (data.html.head.title === "Connection error") {return 2} } return 0;','0',''), ('82214','33523','2','20','1h','0',''), ('82215','33524','1','12','$.PTZStatus.AbsoluteHigh.absoluteZoom','1',''), ('82216','33524','2','1','0.1','1',''), ('82217','33524','3','20','1h','0',''), ('82218','33525','1','12','$.PTZStatus.AbsoluteHigh.azimuth','1',''), ('82219','33525','2','1','0.1','1',''), ('82220','33525','3','20','1h','0',''), ('82221','33526','1','12','$.PTZStatus.AbsoluteHigh.elevation','1',''), ('82222','33526','2','1','0.1','1',''), ('82223','33526','3','20','1h','0',''), ('82224','33527','1','12','$.StreamingChannelList.StreamingChannel[?(@.id=={#CHANNEL_ID})].Video.constantBitRate','1',''), ('82225','33527','2','12','$.[0]','1',''), ('82226','33527','3','20','1h','0',''), ('82227','33528','1','12','$.StreamingChannelList.StreamingChannel[?(@.id=={#CHANNEL_ID})].Video.fixedQuality','1',''), ('82228','33528','2','12','$[0]','1',''), ('82229','33528','3','20','1h','0',''), ('82230','33529','1','12','$.StreamingChannelList.StreamingChannel[?(@.id=={#CHANNEL_ID})].Video.GovLength','1',''), ('82231','33529','2','12','$[0]','1',''), ('82232','33529','3','20','1h','0',''), ('82233','33530','1','12','$.StreamingChannelList.StreamingChannel[?(@.id=={#CHANNEL_ID})].Video.H264Profile','1',''), ('82234','33530','2','12','$[0]','1',''), ('82235','33530','3','20','1h','0',''), ('82236','33531','1','12','$.StreamingChannelList.StreamingChannel[?(@.id=={#CHANNEL_ID})].Video.keyFrameInterval','1',''), ('82237','33531','2','12','$[0]','1',''), ('82238','33531','3','1','0.01','1',''), ('82239','33531','4','20','1h','0',''), ('82240','33532','1','12','$.StreamingChannelList.StreamingChannel[?(@.id=={#CHANNEL_ID})].Video.maxFrameRate','1',''), ('82241','33532','2','12','$[0]','1',''), ('82242','33532','3','1','0.01','1',''), ('82243','33532','4','20','1h','0',''), ('82244','33533','1','12','$.StreamingChannelList.StreamingChannel[?(@.id=={#CHANNEL_ID})].Video.smoothing','1',''), ('82245','33533','2','12','$[0]','1',''), ('82246','33533','3','20','1h','0',''), ('82247','33534','1','12','$.StreamingChannelList.StreamingChannel[?(@.id=={#CHANNEL_ID})].Video.snapShotImageType','1',''), ('82248','33534','2','12','$[0]','1',''), ('82249','33534','3','20','1h','0',''), ('82250','33535','1','12','$.StreamingChannelList.StreamingChannel[?(@.id=={#CHANNEL_ID})].Video.vbrLowerCap','1',''), ('82251','33535','2','12','$[0]','1',''), ('82252','33535','3','20','1h','0',''), ('82253','33536','1','12','$.StreamingChannelList.StreamingChannel[?(@.id=={#CHANNEL_ID})].Video.vbrUpperCap','1',''), ('82254','33536','2','12','$[0]','1',''), ('82255','33537','1','12','$.StreamingChannelList.StreamingChannel[?(@.id=={#CHANNEL_ID})].Video.videoCodecType','1',''), ('82256','33537','2','12','$[0]','1',''), ('82257','33537','3','20','1h','0',''), ('82258','33538','1','12','$.StreamingChannelList.StreamingChannel[?(@.id=={#CHANNEL_ID})].Video.videoQualityControlType','1',''), ('82259','33538','2','12','$[0]','1',''), ('82260','33538','3','20','1h','0',''), ('82261','33539','1','12','$.StreamingChannelList.StreamingChannel[?(@.id=={#CHANNEL_ID})].Video.videoResolutionHeight','1',''), ('82262','33539','2','12','$[0]','1',''), ('82263','33539','3','20','1h','0',''), ('82264','33540','1','12','$.StreamingChannelList.StreamingChannel[?(@.id=={#CHANNEL_ID})].Video.videoResolutionWidth','1',''), ('82265','33540','2','12','$[0]','1',''), ('82266','33540','3','20','1h','0',''), ('82267','33541','1','12','$.StreamingChannelList.StreamingChannel[?(@.id=={#CHANNEL_ID})].Video.videoScanType','1',''), ('82268','33541','2','12','$[0]','1',''), ('82269','33541','3','20','1h','0',''), ('82270','33542','1','21','var data = JSON.parse(value); for (var item, i = 0; item = data.data[i++];) { if (!(''{#JMXIGNITEINSTANCENAME}'' in item)) { Object.assign(item, { ''{#JMXIGNITEINSTANCENAME}'': ''null'' }); } } return JSON.stringify(data)','0',''), ('82271','33542','2','20','3h','0',''), ('82272','33543','1','21','var data = JSON.parse(value); for (var item, i = 0; item = data.data[i++];) { if (!(''{#JMXIGNITEINSTANCENAME}'' in item)) { Object.assign(item, { ''{#JMXIGNITEINSTANCENAME}'': ''null'' }); } } return JSON.stringify(data)','0',''), ('82273','33544','1','21','var data = JSON.parse(value); for (var item, i = 0; item = data.data[i++];) { if (!(''{#JMXIGNITEINSTANCENAME}'' in item)) { Object.assign(item, { ''{#JMXIGNITEINSTANCENAME}'': ''null'' }); } } return JSON.stringify(data)','0',''), ('82274','33545','1','21','var data = JSON.parse(value); for (var item, i = 0; item = data.data[i++];) { if (!(''{#JMXIGNITEINSTANCENAME}'' in item)) { Object.assign(item, { ''{#JMXIGNITEINSTANCENAME}'': ''null'' }); } } return JSON.stringify(data)','0',''), ('82275','33546','1','21','var data = JSON.parse(value); for (var item, i = 0; item = data.data[i++];) { if (!(''{#JMXIGNITEINSTANCENAME}'' in item)) { Object.assign(item, { ''{#JMXIGNITEINSTANCENAME}'': ''null'' }); } } return JSON.stringify(data)','0',''), ('82276','33547','1','21','var data = JSON.parse(value); for (var item, i = 0; item = data.data[i++];) { if (!(''{#JMXIGNITEINSTANCENAME}'' in item)) { Object.assign(item, { ''{#JMXIGNITEINSTANCENAME}'': ''null'' }); } } return JSON.stringify(data)','0',''), ('82277','33548','1','21','var data = JSON.parse(value); for (var item, i = 0; item = data.data[i++];) { if (!(''{#JMXIGNITEINSTANCENAME}'' in item)) { Object.assign(item, { ''{#JMXIGNITEINSTANCENAME}'': ''null'' }); } } return JSON.stringify(data)','0',''), ('82278','33549','1','21','var data = JSON.parse(value); for (var item, i = 0; item = data.data[i++];) { if (!(''{#JMXIGNITEINSTANCENAME}'' in item)) { Object.assign(item, { ''{#JMXIGNITEINSTANCENAME}'': ''null'' }); } } return JSON.stringify(data)','0',''), ('82279','33549','2','20','3h','0',''), ('82280','33550','1','21','var data = JSON.parse(value); for (var item, i = 0; item = data.data[i++];) { if (!(''{#JMXIGNITEINSTANCENAME}'' in item)) { Object.assign(item, { ''{#JMXIGNITEINSTANCENAME}'': ''null'' }); } } return JSON.stringify(data)','0',''), ('82281','33550','2','20','3h','0',''), ('82282','33551','1','21','var data = JSON.parse(value); for (var item, i = 0; item = data.data[i++];) { if (!(''{#JMXIGNITEINSTANCENAME}'' in item)) { Object.assign(item, { ''{#JMXIGNITEINSTANCENAME}'': ''null'' }); } } return JSON.stringify(data)','0',''), ('82283','33551','2','20','3h','0',''), ('82284','33570','1','10','','0',''), ('82285','33571','1','10','','0',''), ('82286','33572','1','10','','0',''), ('82287','33573','1','20','3h','0',''), ('82288','33574','1','20','3h','0',''), ('82289','33575','1','20','3h','0',''), ('82290','33576','1','20','3h','0',''), ('82291','33577','1','20','3h','0',''), ('82292','33578','1','5',E'(.*)-\\d+ \\1','0',''), ('82293','33578','2','20','3h','0',''), ('82294','33579','1','20','3h','0',''), ('82295','33580','1','1','0.001','0',''), ('82296','33582','1','10','','0',''), ('82298','33584','1','10','','0',''), ('82299','33585','1','20','3h','0',''), ('82300','33590','1','10','','0',''), ('82301','33591','1','10','','0',''), ('82302','33592','1','10','','0',''), ('82303','33599','1','20','3h','0',''), ('82304','33611','1','10','','0',''), ('82305','33614','1','10','','0',''), ('82306','33615','1','10','','0',''), ('82307','33617','1','10','','0',''), ('82308','33618','1','10','','0',''), ('82309','33619','1','10','','0',''), ('82314','28388','1','20','6h','0',''), ('82315','29994','1','20','6h','0',''), ('82316','33620','1','20','6h','0',''), ('82317','28392','1','20','6h','0',''), ('82318','28393','1','20','6h','0',''), ('82319','28394','1','20','6h','0',''), ('82320','28395','1','20','6h','0',''), ('82321','28396','1','20','6h','0',''), ('82322','28397','1','20','6h','0',''), ('82323','28398','1','20','6h','0',''), ('82324','28399','1','20','6h','0',''), ('82325','28400','1','20','6h','0',''), ('82326','28401','1','20','6h','0',''), ('82327','28402','1','20','6h','0',''), ('82328','28403','1','20','6h','0',''), ('82329','33621','1','20','6h','0',''), ('82330','33622','1','20','6h','0',''), ('82331','33623','1','20','6h','0',''), ('82332','33624','1','20','6h','0',''), ('82333','33625','1','20','6h','0',''), ('82334','33626','1','20','6h','0',''), ('82335','33627','1','20','6h','0',''), ('82336','33628','1','20','6h','0',''), ('82337','33629','1','20','6h','0',''), ('82338','28404','1','20','6h','0',''), ('82339','28405','1','20','6h','0',''), ('82340','28406','1','20','6h','0',''), ('82341','28407','1','20','6h','0',''), ('82342','28408','1','20','6h','0',''), ('82343','28409','1','20','6h','0',''), ('82344','28411','1','20','6h','0',''), ('82345','28412','1','20','6h','0',''), ('82346','28413','1','20','6h','0',''), ('82347','28414','1','20','6h','0',''), ('82348','28415','1','20','6h','0',''), ('82349','28416','1','20','6h','0',''), ('82350','28417','1','20','6h','0',''), ('82351','28418','1','20','6h','0',''), ('82352','28419','1','20','6h','0',''), ('82353','28420','1','20','6h','0',''), ('82354','28421','1','20','6h','0',''), ('82355','28422','2','20','6h','0',''), ('82356','28423','1','20','6h','0',''), ('82357','28424','1','20','6h','0',''), ('82358','28425','2','20','6h','0',''), ('82360','33631','1','5',E'X-SharePointHealthScore\\b:\\s(\\d+) \\1','0',''), ('82361','33631','2','13','0 10','1',''), ('82362','33631','3','20','3h','0',''), ('82363','33632','1','12','$.status','3','DISCARD_VALUE'), ('82364','33632','2','20','3h','0',''), ('82365','33633','1','12','$.time','3','DISCARD_VALUE'), ('82366','33633','2','20','3h','0',''), ('82367','33634','1','20','6h','0',''), ('82368','33635','1','12',E'{{#SHAREPOINT.LLD.JSON_PATH}.regsub("(.*)", \\1)}.meta.created','1',''), ('82369','33635','2','20','3h','0',''), ('82370','33636','1','12',E'{{#SHAREPOINT.LLD.JSON_PATH}.regsub("(.*)", \\1)}.meta.modified','1',''), ('82371','33636','2','20','3h','0',''), ('82372','33637','1','12',E'{{#SHAREPOINT.LLD.JSON_PATH}.regsub("(.*)", \\1)}.meta.size','1',''), ('82373','33637','2','20','24h','0',''), ('82374','33647','1','20','6h','0',''), ('82416','33691','1','20','6h','0',''), ('82417','33692','1','1','1048576','0',''), ('82418','33692','2','20','10m','0',''), ('82419','33693','1','1','1048576','0',''), ('82420','33694','1','20','6h','0',''), ('82421','33703','1','20','6h','0',''), ('82422','33704','1','20','6h','0',''), ('82423','33706','1','20','6h','0',''), ('82424','33708','1','20','6h','0',''), ('82425','33709','1','20','6h','0',''), ('82426','33710','1','20','6h','0',''), ('82427','33711','1','20','6h','0',''), ('82428','33712','1','20','6h','0',''), ('82429','33714','1','20','6h','0',''), ('82430','33715','1','20','6h','0',''), ('82431','33717','1','20','6h','0',''), ('82432','33718','1','20','6h','0',''), ('82433','33719','1','1','0.001','0',''), ('82434','33720','1','1','0.001','0',''), ('82435','33721','1','1','0.001','0',''), ('82436','33723','1','1','1048576','0',''), ('82437','33725','1','1','1048576','0',''), ('82438','33727','1','1','1048576','0',''), ('82439','33728','1','1','1024','0',''), ('82440','33728','2','20','6h','0',''), ('82441','33729','1','20','6h','0',''), ('82442','33733','1','1','1048576','0',''), ('82443','33735','1','1','1048576','0',''), ('82444','33737','1','1','1048576','0',''), ('82445','33738','1','1','1048576','0',''), ('82446','33740','1','20','6h','0',''), ('82447','33741','1','20','6h','0',''), ('82448','33742','1','1','1048576','0',''), ('82449','33743','1','1','1048576','0',''), ('82450','33743','2','20','10m','0',''), ('82451','33744','1','12','$.management_version','0',''), ('82452','33744','2','21','var rabbit_version = parseInt(value.split(''.'')[0]) * 10000 + parseInt(value.split(''.'')[1]) * 100 + parseInt(value.split(''.'')[2]); return JSON.stringify(rabbit_version >= 30810 ? [{ ''{#SINGLETON}'': '''' }] : []);','0',''), ('82453','33745','1','12','$.management_version','0',''), ('82454','33745','2','21','var rabbit_version = parseInt(value.split(''.'')[0]) * 10000 + parseInt(value.split(''.'')[1]) * 100 + parseInt(value.split(''.'')[2]); return JSON.stringify(rabbit_version < 30810 ? [{ ''{#SINGLETON}'': '''' }] : []);','0',''), ('82455','33746','1','12','$.management_version','0',''), ('82456','33746','2','21','var rabbit_version = parseInt(value.split(''.'')[0]) * 10000 + parseInt(value.split(''.'')[1]) * 100 + parseInt(value.split(''.'')[2]); return JSON.stringify(rabbit_version >= 30810 ? [{ ''{#SINGLETON}'': '''' }] : []);','0',''), ('82457','33747','1','5',E'HTTP\\/1\\.1\\b\\s(\\d+) \\1','0',''), ('82458','33747','2','21','switch(value){ case ''200'': return 1 case ''503'': return 0 default: 2}','0',''), ('82459','33747','3','20','3h','0',''), ('82460','33748','1','5',E'\\n\\s?\\n(.*) \\1','0',''), ('82461','33748','2','12','$.status','0',''), ('82462','33748','3','6','','2','0'), ('82463','33749','1','5',E'HTTP\\/1\\.1\\b\\s(\\d+) \\1','0',''), ('82464','33749','2','21','switch(value){ case ''200'': return 1 case ''503'': return 0 default: 2}','0',''), ('82465','33749','3','20','3h','0',''), ('82466','33750','1','5',E'HTTP\\/1\\.1\\b\\s(\\d+) \\1','0',''), ('82467','33750','2','21','switch(value){ case ''200'': return 1 case ''503'': return 0 default: 2}','0',''), ('82468','33750','3','20','3h','0',''), ('82469','33751','1','5',E'HTTP\\/1\\.1\\b\\s(\\d+) \\1','0',''), ('82470','33751','2','21','switch(value){ case ''200'': return 1 case ''503'': return 0 default: 2}','0',''), ('82471','33751','3','20','3h','0',''), ('82472','33752','1','5',E'HTTP\\/1\\.1\\b\\s(\\d+) \\1','0',''), ('82473','33752','2','21','switch(value){ case ''200'': return 1 case ''503'': return 0 default: 2}','0',''), ('82474','33752','3','20','3h','0',''), ('82475','33753','1','5',E'HTTP\\/1\\.1\\b\\s(\\d+) \\1','0',''), ('82476','33753','2','21','switch(value){ case ''200'': return 1 case ''503'': return 0 default: 2}','0',''), ('82477','33753','3','20','3h','0',''), ('82478','33754','1','12','$.management_version','0',''), ('82479','33754','2','21','var rabbit_version = parseInt(value.split(''.'')[0]) * 10000 + parseInt(value.split(''.'')[1]) * 100 + parseInt(value.split(''.'')[2]); return JSON.stringify(rabbit_version >= 30810 ? [{ ''{#SINGLETON}'': '''' }] : []);','0',''), ('82480','33755','1','12','$.management_version','0',''), ('82481','33755','2','21','var rabbit_version = parseInt(value.split(''.'')[0]) * 10000 + parseInt(value.split(''.'')[1]) * 100 + parseInt(value.split(''.'')[2]); return JSON.stringify(rabbit_version < 30810 ? [{ ''{#SINGLETON}'': '''' }] : []);','0',''), ('82482','33756','1','12','$.management_version','0',''), ('82483','33756','2','21','var rabbit_version = parseInt(value.split(''.'')[0]) * 10000 + parseInt(value.split(''.'')[1]) * 100 + parseInt(value.split(''.'')[2]); return JSON.stringify(rabbit_version >= 30810 ? [{ ''{#SINGLETON}'': '''' }] : []);','0',''), ('82484','33757','1','5',E'HTTP\\/1\\.1\\b\\s(\\d+) \\1','0',''), ('82485','33757','2','21','switch(value){ case ''200'': return 1 case ''503'': return 0 default: 2}','0',''), ('82486','33757','3','20','3h','0',''), ('82487','33758','1','12','$.status','0',''), ('82488','33758','2','6','','2','0'), ('82489','33759','1','5',E'HTTP\\/1\\.1\\b\\s(\\d+) \\1','0',''), ('82490','33759','2','21','switch(value){ case ''200'': return 1 case ''503'': return 0 default: 2}','0',''), ('82491','33759','3','20','3h','0',''), ('82492','33760','1','5',E'HTTP\\/1\\.1\\b\\s(\\d+) \\1','0',''), ('82493','33760','2','21','switch(value){ case ''200'': return 1 case ''503'': return 0 default: 2}','0',''), ('82494','33760','3','20','3h','0',''), ('82495','33761','1','5',E'HTTP\\/1\\.1\\b\\s(\\d+) \\1','0',''), ('82496','33761','2','21','switch(value){ case ''200'': return 1 case ''503'': return 0 default: 2}','0',''), ('82497','33761','3','20','3h','0',''), ('82498','33762','1','5',E'HTTP\\/1\\.1\\b\\s(\\d+) \\1','0',''), ('82499','33762','2','21','switch(value){ case ''200'': return 1 case ''503'': return 0 default: 2}','0',''), ('82500','33762','3','20','3h','0',''), ('82501','33763','1','5',E'HTTP\\/1\\.1\\b\\s(\\d+) \\1','0',''), ('82502','33763','2','21','switch(value){ case ''200'': return 1 case ''503'': return 0 default: 2}','0',''), ('82503','33763','3','20','3h','0',''), ('82504','33766','1','20','30m','0',''), ('82505','33769','1','12','$.metrics.document.deleted','0',''), ('82506','33769','2','10','','0',''), ('82507','33770','1','12','$.network.numRequests','0',''), ('82508','33770','2','10','','0',''), ('82509','33771','1','12','$.mem.mappedWithJournal','1',''), ('82510','33771','2','1','1048576','0',''), ('82511','33772','1','12','$.mem.resident','0',''), ('82512','33772','2','1','1048576','0',''), ('82513','33773','1','12','$.mem.virtual','0',''), ('82514','33773','2','1','1048576','0',''), ('82515','33774','1','12','$.metrics.cursor.open.noTimeout','0',''), ('82516','33775','1','12','$.network.bytesIn','0',''), ('82517','33775','2','10','','0',''), ('82518','33776','1','12','$.network.bytesOut','0',''), ('82519','33776','2','10','','0',''), ('82520','33777','1','12','$.opcounters.delete','0',''), ('82521','33777','2','10','','0',''), ('82522','33778','1','12','$.opcounters.command','0',''), ('82523','33778','2','10','','0',''), ('82524','33779','1','12','$.mem.bits','0',''), ('82525','33779','2','20','3h','0',''), ('82526','33780','1','12','$.opcounters.getmore','0',''), ('82527','33780','2','10','','0',''), ('82528','33781','1','12','$.opcounters.insert','0',''), ('82529','33781','2','10','','0',''), ('82530','33782','1','12','$.opcounters.query','0',''), ('82531','33782','2','10','','0',''), ('82532','33783','1','12','$.opcounters.update','0',''), ('82533','33783','2','10','','0',''), ('82534','33784','1','12','$.uptime','0',''), ('82535','33785','1','12','$.mem.mapped','1',''), ('82536','33785','2','1','1048576','0',''), ('82537','33786','1','12','$.metrics.cursor.timedOut','0',''), ('82538','33786','2','10','','0',''), ('82539','33787','1','12','$.metrics.document.inserted','0',''), ('82540','33787','2','10','','0',''), ('82541','33788','1','12','$.asserts.user','0',''), ('82542','33788','2','10','','0',''), ('82543','33789','1','12','$.metrics.document.returned','0',''), ('82544','33789','2','10','','0',''), ('82545','33790','1','12','$.metrics.document.updated','0',''), ('82546','33790','2','10','','0',''), ('82547','33791','1','12','$.globalLock.activeClients.readers','0',''), ('82548','33792','1','12','$.globalLock.activeClients.total','0',''), ('82549','33793','1','12','$.globalLock.activeClients.writers','0',''), ('82550','33794','1','12','$.asserts.msg','0',''), ('82551','33794','2','10','','0',''), ('82552','33795','1','12','$.asserts.regular','0',''), ('82553','33795','2','10','','0',''), ('82554','33796','1','12','$.asserts.rollovers','0',''), ('82555','33796','2','10','','0',''), ('82556','33797','1','12','$.asserts.warning','0',''), ('82557','33797','2','10','','0',''), ('82558','33798','1','12','$.metrics.cursor.open.total','0',''), ('82559','33799','1','12','$.connections.active','1',''), ('82560','33800','1','12','$.connections.available','0',''), ('82561','33801','1','12','$.connections.current','0',''), ('82562','33802','1','12','$.connections.totalCreated','0',''), ('82563','33802','2','10','','0',''), ('82564','33803','1','12','$.globalLock.currentQueue.readers','0',''), ('82565','33804','1','12','$.globalLock.currentQueue.total','0',''), ('82566','33805','1','12','$.globalLock.currentQueue.writers','0',''), ('82567','33806','1','12','$.metrics.cursor.open.pinned','0',''), ('82568','33807','1','20','12h','0',''), ('82570','33810','1','21','var status = JSON.parse(value) return JSON.stringify(status.set ? [{''{#RS_NAME}'': status.set, ''{#NODE_STATE}'': status.myState}] : []);','0',''), ('82571','33810','2','20','1h','0',''), ('82572','33811','1','21','return JSON.stringify(JSON.parse(value).wiredTiger ? [{''{#SINGLETON}'': ''''}] : []);','0',''), ('82573','33811','2','20','6h','0',''), ('82574','33814','1','12','$.avgObjSize','1',''), ('82575','33815','1','12','$.totals["{#DBNAME}.{#COLLECTION}"].remove.time','0',''), ('82576','33815','2','10','','0',''), ('82577','33816','1','12','$.totals["{#DBNAME}.{#COLLECTION}"].writeLock.time','0',''), ('82578','33816','2','10','','0',''), ('82579','33817','1','12','$.storageSize','0',''), ('82580','33818','1','12','$.size','0',''), ('82581','33819','1','12','$.totals["{#DBNAME}.{#COLLECTION}"].readLock.count','0',''), ('82582','33819','2','10','','0',''), ('82583','33820','1','12','$.totals["{#DBNAME}.{#COLLECTION}"].readLock.time','0',''), ('82584','33820','2','10','','0',''), ('82585','33821','1','12','$.totals["{#DBNAME}.{#COLLECTION}"].update.count','0',''), ('82586','33821','2','10','','0',''), ('82587','33822','1','12','$.totals["{#DBNAME}.{#COLLECTION}"].update.time','0',''), ('82588','33822','2','10','','0',''), ('82589','33823','1','12','$.totals["{#DBNAME}.{#COLLECTION}"].total.count','0',''), ('82590','33823','2','10','','0',''), ('82591','33824','1','12','$.totals["{#DBNAME}.{#COLLECTION}"].total.time','0',''), ('82592','33824','2','10','','0',''), ('82593','33825','1','12','$.totals["{#DBNAME}.{#COLLECTION}"].remove.count','0',''), ('82594','33825','2','10','','0',''), ('82595','33826','1','12','$.totals["{#DBNAME}.{#COLLECTION}"].queries.count','0',''), ('82596','33826','2','10','','0',''), ('82597','33827','1','12','$.capped','0',''), ('82598','33827','2','6','','0',''), ('82599','33827','3','20','3h','0',''), ('82600','33828','1','12','$.totals["{#DBNAME}.{#COLLECTION}"].queries.time','0',''), ('82601','33828','2','10','','0',''), ('82602','33829','1','12','$.totals["{#DBNAME}.{#COLLECTION}"].insert.count','0',''), ('82603','33829','2','10','','0',''), ('82604','33830','1','12','$.totals["{#DBNAME}.{#COLLECTION}"].insert.time','0',''), ('82605','33830','2','10','','0',''), ('82606','33831','1','12','$.totals["{#DBNAME}.{#COLLECTION}"].getmore.count','0',''), ('82607','33831','2','10','','0',''), ('82608','33832','1','12','$.totals["{#DBNAME}.{#COLLECTION}"].getmore.time','0',''), ('82609','33832','2','10','','0',''), ('82610','33833','1','12','$.totals["{#DBNAME}.{#COLLECTION}"].commands.count','0',''), ('82611','33833','2','10','','0',''), ('82612','33834','1','12','$.totals["{#DBNAME}.{#COLLECTION}"].commands.time','0',''), ('82613','33834','2','10','','0',''), ('82614','33835','1','12','$.nindexes','0',''), ('82615','33836','1','12','$.maxSize','1',''), ('82616','33837','1','12','$.max','1',''), ('82617','33838','1','12','$.count','0',''), ('82618','33839','1','12','$.totals["{#DBNAME}.{#COLLECTION}"].writeLock.count','0',''), ('82619','33839','2','10','','0',''), ('82620','33840','1','12','$.collections','0',''), ('82621','33841','1','12','$.dataSize','0',''), ('82622','33842','1','12','$.numExtents','1',''), ('82623','33843','1','12','$.fileSize','1',''), ('82624','33844','1','12','$.indexSize','0',''), ('82625','33845','1','12','$.objects','0',''), ('82626','33846','1','12','$.avgObjSize','0',''), ('82627','33847','1','12','$.storageSize','0',''), ('82628','33848','1','12','$.metrics.repl.apply.batches.totalMillis','0',''), ('82629','33848','2','10','','0',''), ('82630','33849','1','12','$.metrics.repl.network.readersCreated','0',''), ('82631','33849','2','10','','0',''), ('82632','33850','1','12','$.members[?(@.self == "true")].unhealthyNodes.first()','0',''), ('82633','33850','2','21','var value = JSON.parse(value); return value.length ? JSON.stringify(value) : '''';','0',''), ('82634','33850','3','20','1h','0',''), ('82635','33851','1','12','$.members[?(@.self == "true")].totalNodes.first()','0',''), ('82636','33851','2','20','1h','0',''), ('82637','33852','1','12','$.myState','0',''), ('82638','33852','2','20','1h','0',''), ('82639','33853','1','12','$.metrics.repl.preload.indexes.num','1',''), ('82640','33853','2','10','','0',''), ('82641','33854','1','12','$.metrics.repl.preload.indexes.totalMillis','1',''), ('82642','33854','2','10','','0',''), ('82643','33855','1','12','$.metrics.repl.preload.docs.num','1',''), ('82644','33855','2','10','','0',''), ('82645','33856','1','12','$.metrics.repl.preload.docs.totalMillis','1',''), ('82646','33856','2','10','','0',''), ('82647','33857','1','12','$.timediff','0',''), ('82648','33858','1','12','$.metrics.repl.network.ops','0',''), ('82649','33858','2','10','','0',''), ('82650','33859','1','12','$.metrics.repl.apply.batches.num','0',''), ('82651','33859','2','10','','0',''), ('82652','33860','1','12','$.metrics.repl.network.getmores.num','0',''), ('82653','33860','2','10','','0',''), ('82654','33861','1','12','$.metrics.repl.network.getmores.totalMillis','0',''), ('82655','33861','2','10','','0',''), ('82656','33862','1','12','$.metrics.repl.network.bytes','0',''), ('82657','33862','2','10','','0',''), ('82658','33863','1','12','$.members[?(@.self == "true")].lag.first()','0',''), ('82659','33864','1','12','$.metrics.repl.buffer.sizeBytes','0',''), ('82660','33865','1','12','$.metrics.repl.buffer.maxSizeBytes','0',''), ('82661','33866','1','12','$.metrics.repl.buffer.count','0',''), ('82662','33867','1','12','$.metrics.repl.apply.ops','0',''), ('82663','33867','2','10','','0',''), ('82664','33868','1','12','$.members[?(@.self == "true")].unhealthyCount.first()','0',''), ('82665','33868','2','20','1h','0',''), ('82666','33869','1','12','$.wiredTiger.cache[''bytes currently in the cache'']','0',''), ('82667','33870','1','12','$.wiredTiger.cache.[''tracked dirty bytes in the cache'']','0',''), ('82668','33871','1','12','$.wiredTiger.concurrentTransactions.write.out','0',''), ('82669','33872','1','12','$.wiredTiger.concurrentTransactions.write.available','0',''), ('82670','33873','1','12','$.wiredTiger.concurrentTransactions.read.totalTickets','0',''), ('82671','33874','1','12','$.wiredTiger.concurrentTransactions.read.out','0',''), ('82672','33875','1','12','$.wiredTiger.concurrentTransactions.read.available','0',''), ('82673','33876','1','12','$.wiredTiger.cache.[''unmodified pages evicted'']','0',''), ('82674','33877','1','12','$.wiredTiger.cache[''in-memory page splits'']','0',''), ('82675','33878','1','12','$.wiredTiger.cache[''maximum bytes configured'']','0',''), ('82676','33879','1','12','$.wiredTiger.cache[''pages written from cache'']','0',''), ('82677','33880','1','12','$.wiredTiger.cache[''pages read into cache'']','0',''), ('82678','33881','1','12','$.wiredTiger.cache[''pages currently held in the cache'']','0',''), ('82679','33882','1','12','$.wiredTiger.cache.[''pages evicted by application threads'']','0',''), ('82680','33883','1','12','$.wiredTiger.cache[''modified pages evicted'']','0',''), ('82681','33884','1','12','$.wiredTiger.cache[''maximum page size at eviction'']','0',''), ('82682','33885','1','12','$.wiredTiger.concurrentTransactions.write.totalTickets','0',''), ('82683','33888','1','20','30m','0',''), ('82685','33891','1','12','$.opcounters.command','0',''), ('82686','33891','2','10','','0',''), ('82687','33892','1','12','$.network.bytesIn','0',''), ('82688','33892','2','10','','0',''), ('82689','33893','1','12','$.network.bytesOut','0',''), ('82690','33893','2','10','','0',''), ('82691','33894','1','12','$.network.numRequests','0',''), ('82692','33894','2','10','','0',''), ('82693','33895','1','12','$.opcounters.getmore','0',''), ('82694','33895','2','10','','0',''), ('82695','33896','1','12','$.opcounters.delete','0',''), ('82696','33896','2','10','','0',''), ('82697','33897','1','12','$.mem.virtual','0',''), ('82698','33897','2','1','1048576','0',''), ('82699','33898','1','12','$.opcounters.insert','0',''), ('82700','33898','2','10','','0',''), ('82701','33899','1','12','$.opcounters.query','0',''), ('82702','33899','2','10','','0',''), ('82703','33900','1','12','$.opcounters.update','0',''), ('82704','33900','2','10','','0',''), ('82705','33901','1','12','$.uptime','0',''), ('82706','33902','1','12','$.metrics.cursor.open.noTimeout','1',''), ('82707','33903','1','12','$.mem.bits','0',''), ('82708','33903','2','20','3h','0',''), ('82709','33904','1','12','$.mem.resident','0',''), ('82710','33904','2','1','1048576','0',''), ('82711','33905','1','12','$.connections.active','2','0'), ('82712','33906','1','12','$.sharding.lastSeenConfigServerOpTime.ts.T','0',''), ('82713','33907','1','12','$.metrics.cursor.timedOut','0',''), ('82714','33907','2','10','','0',''), ('82715','33908','1','12','$.metrics.cursor.open.total','0',''), ('82716','33909','1','12','$.metrics.cursor.open.pinned','0',''), ('82717','33910','1','12','$.numAScopedConnections','0',''), ('82718','33911','1','12','$.totalRefreshing','0',''), ('82719','33912','1','12','$.totalInUse','0',''), ('82720','33913','1','12','$.totalCreated','0',''), ('82721','33913','2','10','','0',''), ('82722','33914','1','12','$.numClientConnections','0',''), ('82723','33915','1','12','$.totalAvailable','0',''), ('82724','33916','1','12','$.connections.totalCreated','0',''), ('82725','33916','2','10','','0',''), ('82726','33917','1','12','$.connections.current','0',''), ('82727','33918','1','12','$.connections.available','0',''), ('82728','33919','1','12','$.version','0',''), ('82729','33919','2','20','3h','0',''), ('82730','33926','1','12','$.avgObjSize','1',''), ('82731','33927','1','12','$.capped','0',''), ('82732','33927','2','6','','0',''), ('82733','33927','3','20','3h','0',''), ('82734','33928','1','12','$.count','0',''), ('82735','33929','1','12','$.max','1',''), ('82736','33930','1','12','$.maxSize','1',''), ('82737','33931','1','12','$.nindexes','0',''), ('82738','33932','1','12','$.size','0',''), ('82739','33933','1','12','$.storageSize','0',''), ('82740','33934','1','12','$.dataSize','0',''), ('82741','33935','1','12','$.numExtents','1',''), ('82742','33936','1','12','$.fileSize','1',''), ('82743','33937','1','12','$.indexSize','0',''), ('82744','33938','1','12','$.objects','0',''), ('82745','33939','1','12','$.avgObjSize','0',''), ('82746','33940','1','12','$.storageSize','0',''), ('82753','33948','1','20','1d','0',''), ('82754','33949','1','20','1d','0',''), ('82755','33950','1','20','1d','0',''), ('82756','33951','1','20','1d','0',''), ('82757','33952','1','20','1h','0',''), ('82758','33953','1','20','1h','0',''), ('82759','33954','1','20','1h','0',''), ('82760','33955','1','5',E'Version (.+), RELEASE \\1','0',''), ('82761','33955','2','20','1d','0',''), ('82762','33956','1','1','0.01','0',''), ('82763','33967','1','20','1d','0',''), ('82764','33972','1','10','','0',''), ('82765','33973','1','10','','0',''), ('82766','33974','1','10','','0',''), ('82767','33974','2','1','8','0',''), ('82768','33975','1','10','','0',''), ('82769','33976','1','10','','0',''), ('82770','33977','1','10','','0',''), ('82771','33977','2','1','8','0',''), ('82772','33978','1','1','1000000','0',''), ('82773','33978','2','20','1h','0',''), ('82774','33979','1','20','6h','0',''), ('82775','33980','1','20','6h','0',''), ('82776','33989','1','20','1d','0',''), ('82777','33990','1','20','1d','0',''), ('82778','33991','1','20','1d','0',''), ('82779','33992','1','20','1d','0',''), ('82780','33993','1','20','1h','0',''), ('82781','33994','1','20','1h','0',''), ('82782','33995','1','20','1h','0',''), ('82783','33996','1','5',E'Version (.+), RELEASE \\1','0',''), ('82784','33996','2','20','1d','0',''), ('82785','33997','1','1','0.01','0',''), ('82786','34008','1','20','1d','0',''), ('82787','34013','1','10','','0',''), ('82788','34014','1','10','','0',''), ('82789','34015','1','10','','0',''), ('82790','34015','2','1','8','0',''), ('82791','34016','1','10','','0',''), ('82792','34017','1','10','','0',''), ('82793','34018','1','10','','0',''), ('82794','34018','2','1','8','0',''), ('82795','34019','1','1','1000000','0',''), ('82796','34019','2','20','1h','0',''), ('82797','34020','1','20','6h','0',''), ('82798','34021','1','20','6h','0',''), ('82799','34030','1','20','1d','0',''), ('82800','34031','1','20','1d','0',''), ('82801','34032','1','20','1d','0',''), ('82802','34033','1','20','1d','0',''), ('82803','34034','1','20','1h','0',''), ('82804','34035','1','20','1h','0',''), ('82805','34036','1','20','1h','0',''), ('82806','34037','1','5',E'Version (.+), RELEASE \\1','0',''), ('82807','34037','2','20','1d','0',''), ('82808','34038','1','1','0.01','0',''), ('82809','34049','1','20','1d','0',''), ('82810','34054','1','10','','0',''), ('82811','34055','1','10','','0',''), ('82812','34056','1','10','','0',''), ('82813','34056','2','1','8','0',''), ('82814','34057','1','10','','0',''), ('82815','34058','1','10','','0',''), ('82816','34059','1','10','','0',''), ('82817','34059','2','1','8','0',''), ('82818','34060','1','1','1000000','0',''), ('82819','34060','2','20','1h','0',''), ('82820','34061','1','20','6h','0',''), ('82821','34062','1','20','6h','0',''), ('82822','34071','1','20','1d','0',''), ('82823','34072','1','20','1d','0',''), ('82824','34073','1','20','1d','0',''), ('82825','34074','1','20','1d','0',''), ('82826','34075','1','20','1h','0',''), ('82827','34076','1','20','1h','0',''), ('82828','34077','1','20','1h','0',''), ('82829','34078','1','5',E'Version (.+), RELEASE \\1','0',''), ('82830','34078','2','20','1d','0',''), ('82831','34079','1','1','0.01','0',''), ('82832','34090','1','20','1d','0',''), ('82833','34095','1','10','','0',''), ('82834','34096','1','10','','0',''), ('82835','34097','1','10','','0',''), ('82836','34097','2','1','8','0',''), ('82837','34098','1','10','','0',''), ('82838','34099','1','10','','0',''), ('82839','34100','1','10','','0',''), ('82840','34100','2','1','8','0',''), ('82841','34101','1','1','1000000','0',''), ('82842','34101','2','20','1h','0',''), ('82843','34102','1','20','6h','0',''), ('82844','34103','1','20','6h','0',''), ('82845','34112','1','20','1d','0',''), ('82846','34113','1','20','1d','0',''), ('82847','34114','1','20','1d','0',''), ('82848','34115','1','20','1d','0',''), ('82849','34116','1','20','1h','0',''), ('82850','34117','1','20','1h','0',''), ('82851','34118','1','20','1h','0',''), ('82852','34119','1','5',E'Version (.+), RELEASE \\1','0',''), ('82853','34119','2','20','1d','0',''), ('82854','34120','1','1','0.01','0',''), ('82855','34131','1','20','1d','0',''), ('82856','34136','1','10','','0',''), ('82857','34137','1','10','','0',''), ('82858','34138','1','10','','0',''), ('82859','34138','2','1','8','0',''), ('82860','34139','1','10','','0',''), ('82861','34140','1','10','','0',''), ('82862','34141','1','10','','0',''), ('82863','34141','2','1','8','0',''), ('82864','34142','1','1','1000000','0',''), ('82865','34142','2','20','1h','0',''), ('82866','34143','1','20','6h','0',''), ('82867','34144','1','20','6h','0',''), ('82868','34153','1','20','12h','0',''), ('82869','34154','1','12','$..[''{#CPU.UTIL}''].avg()','0',''), ('82870','34155','1','20','12h','0',''), ('82871','34156','1','20','12h','0',''), ('82872','34157','1','20','12h','0',''), ('82873','34158','1','20','12h','0',''), ('82874','34159','1','1','0.01','0',''), ('82875','34161','1','20','6h','0',''), ('82876','34162','1','20','6h','0',''), ('82877','34163','1','20','6h','0',''), ('82878','28196','1','21','var data = JSON.parse(value).filter(function (item) { return (typeof item[''{#SENSOR_PRECISION}''] !== ''undefined''); }); return JSON.stringify(data);','0',''), ('82879','28196','2','20','6h','0',''), ('82880','28197','1','21','var data = JSON.parse(value).filter(function (item) { return (typeof item[''{#SNMPVALUE}''] !== ''undefined''); }); return JSON.stringify(data);','0',''), ('82881','28197','2','20','6h','0',''), ('82882','28198','1','20','6h','0',''), ('82883','28199','1','20','6h','0',''), ('82884','34164','1','10','','0',''), ('82885','34165','1','10','','0',''), ('82886','34166','1','10','','0',''), ('82887','34166','2','1','8','0',''), ('82888','34167','1','10','','0',''), ('82889','34168','1','10','','0',''), ('82890','34169','1','10','','0',''), ('82891','34169','2','1','8','0',''), ('82892','34170','1','1','1000000','0',''), ('82893','34170','2','20','1h','0',''), ('82894','34172','1','20','1d','0',''), ('82895','34174','1','1','{#ALLOC_UNITS}','0',''), ('82896','34175','1','1','{#ALLOC_UNITS}','0',''), ('82897','34176','1','1','{#ALLOC_UNITS}','0',''), ('82898','34177','1','1','{#ALLOC_UNITS}','0',''), ('82900','34180','1','1','0.1','0',''), ('82901','34180','2','20','6h','0',''), ('82902','34181','1','1','0.01','0',''), ('82903','34182','1','20','6h','0',''), ('82904','34183','1','20','6h','0',''), ('82906','34185','1','20','6h','0',''), ('82907','34186','1','20','6h','0',''), ('82908','34187','1','20','12h','0',''), ('82909','34188','1','20','12h','0',''), ('82910','34190','1','1','0.1','0',''), ('82911','34190','2','20','6h','0',''), ('82912','34191','1','20','6h','0',''), ('82913','34192','1','1','0.1','0',''), ('82914','34192','2','20','6h','0',''), ('82915','34193','1','20','6h','0',''), ('82916','34194','1','1','0.1','0',''), ('82917','34194','2','20','6h','0',''), ('82918','34195','1','1','0.1','0',''), ('82919','34195','2','20','6h','0',''), ('82920','34196','1','20','6h','0',''), ('82921','34200','1','1','0.1','0',''), ('82922','34200','2','20','6h','0',''), ('82923','34201','1','1','0.1','0',''), ('82924','34201','2','20','6h','0',''), ('82925','34202','1','20','6h','0',''), ('82926','34203','1','1','0.01','0',''), ('82927','34203','2','20','6h','0',''), ('82928','34204','1','20','6h','0',''), ('82929','34205','1','20','6h','0',''), ('82930','34212','1','20','6h','0',''), ('82931','34213','1','20','6h','0',''), ('82932','34214','1','20','6h','0',''), ('82933','34215','1','20','6h','0',''), ('82934','34216','1','1','0.1','0',''), ('82935','34216','2','20','6h','0',''), ('82936','34217','1','20','6h','0',''), ('82937','34218','1','20','6h','0',''), ('82938','34219','1','20','6h','0',''), ('82939','34220','1','20','6h','0',''), ('82940','34221','1','20','6h','0',''), ('82941','34222','1','20','6h','0',''), ('82942','34223','1','20','6h','0',''), ('82943','34224','1','1','0.1','0',''), ('82944','34224','2','20','6h','0',''), ('82945','34225','1','20','6h','0',''), ('82946','34233','1','21','var result = []; JSON.parse(value).records.forEach(function(chassis) { chassis.frus.forEach(function(frus) { frus.chassisId = chassis.id; result.push(frus); }) }); return JSON.stringify(result);','0',''), ('82947','34240','1','12','$.statistics.status','0',''), ('82948','34240','2','20','6h','0',''), ('82949','34241','1','12','$.location','0',''), ('82950','34241','2','20','6h','0',''), ('82951','34242','1','12','$.name','0',''), ('82952','34242','2','20','6h','0',''), ('82953','34243','1','12','$.statistics.iops_raw.other','0',''), ('82954','34243','2','10','','0',''), ('82955','34244','1','12','$.statistics.iops_raw.read','0',''), ('82956','34244','2','10','','0',''), ('82957','34245','1','12','$.statistics.iops_raw.total','0',''), ('82958','34245','2','10','','0',''), ('82959','34246','1','12','$.statistics.iops_raw.write','0',''), ('82960','34246','2','10','','0',''), ('82961','34247','1','12','$.statistics.iops_raw.other','0',''), ('82962','34248','1','12','$.version.full','0',''), ('82963','34248','2','20','6h','0',''), ('82964','34249','1','12','$.statistics.throughput_raw.write','0',''), ('82965','34249','2','10','','0',''), ('82966','34250','1','12','$.statistics.iops_raw.write','0',''), ('82967','34251','1','12','$.statistics.throughput_raw.total','0',''), ('82968','34251','2','10','','0',''), ('82969','34252','1','12','$.statistics.throughput_raw.read','0',''), ('82970','34252','2','10','','0',''), ('82971','34253','1','12','$.statistics.throughput_raw.other','0',''), ('82972','34253','2','10','','0',''), ('82973','34254','1','12','$.statistics.latency_raw.write','0',''), ('82974','34255','1','12','$.statistics.latency_raw.total','0',''), ('82975','34256','1','12','$.statistics.iops_raw.read','0',''), ('82976','34257','1','12','$.statistics.latency_raw.other','0',''), ('82977','34258','1','12','$.statistics.iops_raw.total','0',''), ('82978','34259','1','12','$.statistics.latency_raw.read','0',''), ('82979','34260','1','21','var result = []; JSON.parse(value).records.forEach(function (chassis) { result.push({"{#ID}": chassis.id}); }); return JSON.stringify(result);','0',''), ('82980','34261','1','21','var result = []; JSON.parse(value).records.forEach(function (disk) { result.push({"{#DISKNAME}": disk.name, "{#NODENAME}": disk.node.name}); }); return JSON.stringify(result);','0',''), ('82981','34262','1','21','var result = []; JSON.parse(value).forEach(function (fru) { result.push({"{#CHASSISID}": fru.chassisId, "{#FRUID}": fru.id}); }); return JSON.stringify(result);','0',''), ('82982','34262','2','20','6h','0',''), ('82983','34263','1','21','var result = []; JSON.parse(value).records.forEach(function (lun) { result.push({"{#LUNNAME}": lun.name, "{#SVMNAME}": lun.svm.name}); }); return JSON.stringify(result);','0',''), ('82984','34264','1','21','var result = []; JSON.parse(value).records.forEach(function (node) { result.push({"{#NODENAME}": node.name}); }); return JSON.stringify(result);','0',''), ('82985','34265','1','21','var result = []; JSON.parse(value).records.forEach(function (port) { result.push({"{#NODENAME}": port.node.name, "{#ETHPORTNAME}": port.name, "{#ETHPORTSTATE}": port.state}); }); return JSON.stringify(result);','0',''), ('82986','34266','1','21','var result = []; JSON.parse(value).records.forEach(function (port) { result.push({"{#NODENAME}": port.node.name, "{#FCPORTNAME}": port.name, "{#FCPORTSTATE}": port.state}); }); return JSON.stringify(result);','0',''), ('82987','34267','1','21','var result = []; JSON.parse(value).records.forEach(function (svm) { result.push({"{#SVMNAME}": svm.name}); }); return JSON.stringify(result);','0',''), ('82988','34268','1','21','var result = []; JSON.parse(value).records.forEach(function (volume) { result.push({"{#VOLUMENAME}": volume.name}); }); return JSON.stringify(result);','0',''), ('82989','34273','1','12','$.records[?(@.id==''{#ID}'')].state.first()','0',''), ('82990','34273','2','20','6h','0',''), ('82991','34274','1','12','$.records[?(@.name==''{#DISKNAME}''&&@.node.name==''{#NODENAME}'')].state.first()','0',''), ('82992','34274','2','20','6h','0',''), ('82993','34275','1','12','$[?(@.id==''{#FRUID}''&&@.chassisId==''{#CHASSISID}'')].state.first()','0',''), ('82994','34275','2','20','6h','0',''), ('82995','34276','1','12','$.records[?(@.svm.name==''{#SVMNAME}''&&@.name==''{#LUNNAME}'')].space.size.first()','0',''), ('82996','34276','2','20','6h','0',''), ('82997','34277','1','12','$.records[?(@.svm.name==''{#SVMNAME}''&&@.name==''{#LUNNAME}'')].space.used.first()','0',''), ('82998','34277','2','20','6h','0',''), ('82999','34278','1','12','$.records[?(@.svm.name==''{#SVMNAME}''&&@.name==''{#LUNNAME}'')].status.container_state.first()','0',''), ('83000','34278','2','20','6h','0',''), ('83001','34279','1','12','$.records[?(@.svm.name==''{#SVMNAME}''&&@.name==''{#LUNNAME}'')].status.state.first()','0',''), ('83002','34279','2','20','6h','0',''), ('83003','34280','1','12','$.records[?(@.name==''{#NODENAME}'')].version.full.first()','0',''), ('83004','34280','2','20','6h','0',''), ('83005','34281','1','12','$.records[?(@.name==''{#NODENAME}'')].controller.over_temperature.first()','0',''), ('83006','34281','2','20','6h','0',''), ('83007','34282','1','12','$.records[?(@.name==''{#NODENAME}'')].location.first()','0',''), ('83008','34282','2','20','6h','0',''), ('83009','34283','1','12','$.records[?(@.name==''{#NODENAME}'')].membership.first()','0',''), ('83010','34283','2','20','6h','0',''), ('83011','34284','1','12','$.records[?(@.name==''{#NODENAME}'')].state.first()','0',''), ('83012','34284','2','20','6h','0',''), ('83013','34285','1','12','$.records[?(@.name==''{#NODENAME}'')].uptime.first()','0',''), ('83014','34286','1','12','$.records[?(@.name==''{#ETHPORTNAME}'')].state.first()','0',''), ('83015','34286','2','20','6h','0',''), ('83016','34287','1','12','$.records[?(@.name==''{#FCPORTNAME}'')].description.first()','0',''), ('83017','34287','2','20','6h','0',''), ('83018','34288','1','12','$.records[?(@.name==''{#FCPORTNAME}'')].state.first()','0',''), ('83019','34288','2','20','6h','0',''), ('83020','34289','1','12','$.records[?(@.name==''{#SVMNAME}'')].comment.first()','0',''), ('83021','34289','2','20','6h','0',''), ('83022','34290','1','12','$.records[?(@.name==''{#SVMNAME}'')].state.first()','0',''), ('83023','34290','2','20','6h','0',''), ('83024','34291','1','12','$.records[?(@.name==''{#VOLUMENAME}'')].svm.name.first()','0',''), ('83025','34291','2','20','6h','0',''), ('83026','34292','1','12','$.records[?(@.name==''{#VOLUMENAME}'')].statistics.throughput_raw.write.first()','0',''), ('83027','34292','2','10','','0',''), ('83028','34293','1','12','$.records[?(@.name==''{#VOLUMENAME}'')].statistics.throughput_raw.total.first()','0',''), ('83029','34293','2','10','','0',''), ('83030','34294','1','12','$.records[?(@.name==''{#VOLUMENAME}'')].statistics.throughput_raw.read.first()','0',''), ('83031','34294','2','10','','0',''), ('83032','34295','1','12','$.records[?(@.name==''{#VOLUMENAME}'')].statistics.throughput_raw.other.first()','0',''), ('83033','34295','2','10','','0',''), ('83034','34296','1','12','$.records[?(@.name==''{#VOLUMENAME}'')].statistics.latency_raw.write.first()','0',''), ('83035','34297','1','12','$.records[?(@.name==''{#VOLUMENAME}'')].statistics.latency_raw.total.first()','0',''), ('83036','34298','1','12','$.records[?(@.name==''{#VOLUMENAME}'')].statistics.latency_raw.read.first()','0',''), ('83037','34299','1','12','$.records[?(@.name==''{#VOLUMENAME}'')].statistics.latency_raw.other.first()','0',''), ('83038','34300','1','12','$.records[?(@.name==''{#VOLUMENAME}'')].comment.first()','0',''), ('83039','34300','2','20','6h','0',''), ('83040','34301','1','12','$.records[?(@.name==''{#VOLUMENAME}'')].space.available.first()','0',''), ('83041','34301','2','20','6h','0',''), ('83042','34302','1','12','$.records[?(@.name==''{#VOLUMENAME}'')].statistics.iops_raw.write.first()','0',''), ('83043','34303','1','12','$.records[?(@.name==''{#VOLUMENAME}'')].statistics.iops_raw.total.first()','0',''), ('83044','34304','1','12','$.records[?(@.name==''{#VOLUMENAME}'')].statistics.iops_raw.read.first()','0',''), ('83045','34305','1','12','$.records[?(@.name==''{#VOLUMENAME}'')].statistics.iops_raw.other.first()','0',''), ('83046','34306','1','12','$.records[?(@.name==''{#VOLUMENAME}'')].statistics.iops_raw.write.first()','0',''), ('83047','34306','2','10','','0',''), ('83048','34307','1','12','$.records[?(@.name==''{#VOLUMENAME}'')].statistics.iops_raw.total.first()','0',''), ('83049','34307','2','10','','0',''), ('83050','34308','1','12','$.records[?(@.name==''{#VOLUMENAME}'')].statistics.iops_raw.read.first()','0',''), ('83051','34308','2','10','','0',''), ('83052','34309','1','12','$.records[?(@.name==''{#VOLUMENAME}'')].statistics.iops_raw.other.first()','0',''), ('83053','34309','2','10','','0',''), ('83054','34310','1','12','$.records[?(@.name==''{#VOLUMENAME}'')].state.first()','0',''), ('83055','34310','2','20','6h','0',''), ('83056','34311','1','12','$.records[?(@.name==''{#VOLUMENAME}'')].space.used.first()','0',''), ('83057','34311','2','20','6h','0',''), ('83058','34312','1','12','$.records[?(@.name==''{#VOLUMENAME}'')].space.size.first()','0',''), ('83059','34312','2','20','6h','0',''), ('83060','34313','1','12','$.records[?(@.name==''{#VOLUMENAME}'')].type.first()','0',''), ('83061','34313','2','20','6h','0',''), ('83062','34314','1','12','$.data.process[''report manager''].busy.avg','3','No "report manager" processes started.'), ('83063','34315','1','12','$.data.process[''report writer''].busy.avg','3','No "report writer" processes started.'), ('83064','34320','1','12','$[?(@.event == "ZooKeeperOtherExceptions")].value.first()','2','0'), ('83065','34320','2','10','','0',''), ('83066','34321','1','21','data = JSON.parse(value); return (data["$clusterTime"].clusterTime.T - data.sharding.lastSeenConfigServerOpTime.ts.T);','0',''), ('83067','34324','1','20','1d','0',''), ('83068','34325','1','12','$[?(@.type==''I'')].duration.first()','2','0'), ('83069','34326','1','12','$[?(@.type==''I'')].time_since_last_backup.first()','2','0'), ('83070','34327','1','12','$[?(@.type==''L'')].time_since_last_backup.first()','2','0'), ('83071','34328','1','12','$[?(@.type==''L'')].duration.first()','2','0'), ('83072','34329','1','12','$[?(@.type==''D'')].time_since_last_backup.first()','2','0'), ('83073','34330','1','12','$[?(@.type==''D'')].duration.first()','2','0'), ('83074','34331','1','12','$.last_run_date_time','0',''), ('83075','34331','2','21','return value == ''null'' ? 0 : Math.floor(new Date(value) / 1000);','0',''), ('83076','34332','1','12','$.last_run_status_message','0',''), ('83077','34332','2','20','12h','0',''), ('83078','34333','1','12','$.next_run_date_time','0',''), ('83079','34333','2','21','return value == ''null'' ? 0 : Math.floor(new Date(value) / 1000);','0',''), ('83080','34334','1','12','$.run_status','0',''), ('83081','34334','2','20','15m','0',''), ('83082','34335','1','12','$.run_duration','0',''), ('83083','34335','2','20','15m','0',''), ('83084','32366','2','1','0.001','0',''), ('83086','34336','1','26','-1','1',''), ('83088','34338','1','12','$[?(@.name == "grpc_server_handling_seconds_count")].value.sum()','1',''), ('83089','34338','2','10','','0',''), ('83090','34339','1','12','$.status','2','1'), ('83091','34339','2','20','1h','0',''), ('83092','34340','1','12','$.start_timestamp','0',''), ('83093','34340','2','21','return (Math.floor(Date.now() / 1000) - Number(value));','0',''), ('83094','34341','1','12','$.version','0',''), ('83095','34341','2','20','3h','0',''), ('83096','34342','1','21','return JSON.stringify(value != "[]" ? [{ ''{#SINGLETON}'': '''' }] : []);','0',''), ('83097','34342','2','20','1h','0',''), ('83099','34343','1','21','var lookup = {}, result = []; JSON.parse(value).forEach(function (item) { var grpc_method = item.labels.grpc_method; if (!(lookup[grpc_method])) { lookup[grpc_method] = 1; result.push({ "{#GRPC_METHOD}": grpc_method }); } }); return JSON.stringify(result);','0',''), ('83100','34343','2','20','1h','0',''), ('83102','34344','1','21','var lookup = {}, result = []; JSON.parse(value).forEach(function (item) { var address = item.labels.address; if (!(lookup[address])) { lookup[address] = 1; result.push({ "{#STORE_ADDRESS}": address }); } }); return JSON.stringify(result);','0',''), ('83103','34344','2','20','1h','0',''), ('83105','34345','1','21','output = JSON.parse(value).map(function (item) { return { "{#TYPE}": item.labels.type, }; }); return JSON.stringify({ "data": output });','0',''), ('83106','34345','2','20','1h','0',''), ('83108','34346','1','21','output = JSON.parse(value).map(function (item) { return { "{#TYPE}": item.labels.type, }; }); return JSON.stringify({ "data": output });','0',''), ('83109','34346','2','20','1h','0',''), ('83111','34347','1','21','output = JSON.parse(value).map(function (item) { return { "{#KIND}": item.labels.kind, }; }); return JSON.stringify({ "data": output });','0',''), ('83112','34347','2','20','1h','0',''), ('83114','34348','1','12','$[?(@.labels.type == "leader_count")].value.first()','0',''), ('83115','34349','1','12','$[?(@.labels.type == "region_count")].value.first()','0',''), ('83116','34350','1','12','$[?(@.labels.type == "storage_capacity")].value.first()','0',''), ('83117','34350','2','20','1h','0',''), ('83118','34351','1','12','$[?(@.labels.type == "storage_size")].value.first()','0',''), ('83119','34352','1','12','$[?(@.labels.type == "store_disconnected_count")].value.first()','0',''), ('83120','34352','2','20','1h','0',''), ('83121','34353','1','12','$[?(@.labels.type == "store_down_count")].value.first()','0',''), ('83122','34353','2','20','1h','0',''), ('83123','34354','1','12','$[?(@.labels.type == "store_low_space_count")].value.first()','0',''), ('83124','34354','2','20','1h','0',''), ('83125','34355','1','12','$[?(@.labels.type == "store_offline_count")].value.first()','0',''), ('83126','34355','2','20','1h','0',''), ('83127','34356','1','12','$[?(@.labels.type == "store_tombstone_count")].value.first()','0',''), ('83128','34356','2','20','1h','0',''), ('83129','34357','1','12','$[?(@.labels.type == "store_unhealth_count")].value.first()','0',''), ('83130','34357','2','20','1h','0',''), ('83131','34358','1','12','$[?(@.labels.type == "store_up_count")].value.first()','0',''), ('83132','34358','2','20','1h','0',''), ('83133','34359','1','12','$[?(@.labels.grpc_method == "{#GRPC_METHOD}")].value.first()','0',''), ('83134','34359','2','10','','0',''), ('83135','34360','1','12','$[?(@.labels.type == "report" && @.labels.status == "err")].value.sum()','2','0'), ('83136','34360','2','10','','0',''), ('83137','34361','1','12','$[?(@.labels.type == "report" && @.labels.status == "ok")].value.sum()','2','0'), ('83138','34361','2','10','','0',''), ('83139','34362','1','12','$[?(@.labels.type == "push")].value.sum()','2','0'), ('83140','34362','2','10','','0',''), ('83141','34363','1','12','$[?(@.labels.type == "report")].value.sum()','2','0'), ('83142','34363','2','10','','0',''), ('83143','34364','1','12','$[?(@.labels.type == "{#TYPE}")].value.first()','0',''), ('83144','34365','1','12','$[?(@.labels.type == "{#TYPE}")].value.first()','0',''), ('83145','34366','1','12','$[?(@.labels.kind == "{#KIND}")].value.first()','2','0'), ('83148','34368','1','26','-1','1',''), ('83149','34369','1','12','$[?(@.name=="process_cpu_seconds_total")].value.first()','0',''), ('83150','34369','2','10','','0',''), ('83151','34369','3','1','100','0',''), ('83152','34370','1','12','$..value.sum()','0',''), ('83153','34370','2','10','','0',''), ('83154','34371','1','12','$[?(@.name=="process_start_time_seconds")].value.first()','0',''), ('83155','34371','2','21','return (Math.floor(Date.now() / 1000) - Number(value));','0',''), ('83156','34372','1','12','$[?(@.name=="tidb_tikvclient_txn_cmd_duration_seconds_count")].value.sum()','0',''), ('83157','34372','2','10','','0',''), ('83158','34373','1','12','$[?(@.name=="tidb_tikvclient_region_err_total")].value.sum()','0',''), ('83159','34373','2','10','','0',''), ('83160','34374','1','12','$[?(@.name=="tidb_tikvclient_lock_resolver_actions_total")].value.sum()','0',''), ('83161','34374','2','10','','0',''), ('83162','34375','1','12','$[?(@.name=="tidb_tikvclient_backoff_total")].value.sum()','1',''), ('83163','34375','2','10','','0',''), ('83164','34376','1','12','$[?(@.name=="tidb_server_panic_total")].value.first()','1',''), ('83165','34376','2','10','','0',''), ('83166','34377','1','12','$[?(@.name=="tidb_server_critical_error_total")].value.first()','0',''), ('83167','34377','2','10','','0',''), ('83168','34378','1','12','$[?(@.name=="tidb_server_connections")].value.first()','0',''), ('83169','34379','1','12','$.status','2','1'), ('83170','34379','2','20','1h','0',''), ('83171','34380','1','12','$..value.sum()','0',''), ('83172','34380','2','10','','0',''), ('83173','34381','1','12','$[?(@.name=="tidb_session_schema_lease_error_total && @.labels.type == "outdate"")].value.first()','1',''), ('83174','34381','2','10','','0',''), ('83175','34382','1','12','$[?(@.name=="tidb_session_schema_lease_error_total && @.labels.type == "change"")].value.first()','1',''), ('83176','34382','2','10','','0',''), ('83177','34383','1','12','$[?(@.labels.result == "Error")].value.sum()','0',''), ('83178','34383','2','10','','0',''), ('83179','34384','1','12','$[?(@.labels.result == "OK")].value.sum()','0',''), ('83180','34384','2','10','','0',''), ('83181','34385','1','12','$[?(@.name=="tidb_ddl_waiting_jobs")].value.sum()','2','0'), ('83182','34386','1','12','$[?(@.name=="process_resident_memory_bytes")].value.first()','0',''), ('83183','34387','1','12','$[?(@.name=="process_open_fds")].value.first()','0',''), ('83184','34388','1','12','$[?(@.name=="process_max_fds")].value.first()','0',''), ('83185','34389','1','12','$[?(@.name=="pd_client_request_handle_requests_duration_seconds_count" && @.labels.type == "tso")].value.first()','0',''), ('83186','34389','2','10','','0',''), ('83187','34390','1','12','$[?(@.name=="pd_client_cmd_handle_cmds_duration_seconds_count" && @.labels.type == "tso")].value.first()','0',''), ('83188','34390','2','10','','0',''), ('83189','34391','1','12','$[?(@.name=="tidb_monitor_time_jump_back_total")].value.first()','0',''), ('83190','34391','2','10','','0',''), ('83191','34392','1','12','$[?(@.name=="tidb_monitor_keep_alive_total")].value.first()','1',''), ('83192','34392','2','9','','0',''), ('83193','34393','1','12','$[?(@.name=="go_memstats_heap_inuse_bytes")].value.first()','0',''), ('83194','34394','1','12','$[?(@.name=="go_goroutines")].value.first()','0',''), ('83195','34395','1','12','$[?(@.name=="tidb_server_execute_error_total")].value.sum()','1',''), ('83196','34395','2','10','','0',''), ('83197','34396','1','12','$[?(@.name=="tidb_domain_load_schema_total")].value.sum()','0',''), ('83198','34396','2','10','','0',''), ('83199','34397','1','12','$[?(@.name=="tidb_domain_load_schema_total && @.labels.type == "failed"")].value.first()','1',''), ('83200','34397','2','10','','0',''), ('83201','34398','1','12','$.version','0',''), ('83202','34398','2','20','3h','0',''), ('83203','34399','1','12','$[?(@.name=="tidb_tikvclient_txn_cmd_duration_seconds_count")]','0',''), ('83204','34399','2','21','output = JSON.parse(value).map(function (item) { return { "{#TYPE}": item.labels.type, }; }); return JSON.stringify({ "data": output });','0',''), ('83205','34399','3','20','1h','0',''), ('83206','34400','1','21','var lookup = {}, result = []; JSON.parse(value).forEach(function (item) { var type = item.labels.type; if (!(lookup[type])) { lookup[type] = 1; result.push({ "{#TYPE}": type }); } }); return JSON.stringify(result);','0',''), ('83207','34400','2','20','1h','0',''), ('83209','34401','1','21','output = JSON.parse(value).map(function (item) { return { "{#TYPE}": item.labels.type, }; }); return JSON.stringify({ "data": output });','0',''), ('83210','34401','2','20','1h','0',''), ('83212','34402','1','12','$[?(@.name=="tidb_tikvclient_backoff_total")]','1',''), ('83213','34402','2','21','output = JSON.parse(value).map(function (item) { return { "{#TYPE}": item.labels.type, }; }); return JSON.stringify({ "data": output });','0',''), ('83214','34402','3','20','1h','0',''), ('83215','34403','1','12','$[?(@.name=="tidb_tikvclient_gc_action_result")]','1',''), ('83216','34403','2','21','output = JSON.parse(value).map(function (item) { return { "{#TYPE}": item.labels.type, }; }); return JSON.stringify({ "data": output });','0',''), ('83217','34403','3','20','1h','0',''), ('83218','34404','1','12','$[?(@.name=="tidb_tikvclient_lock_resolver_actions_total")]','0',''), ('83219','34404','2','21','output = JSON.parse(value).map(function (item) { return { "{#TYPE}": item.labels.type, }; }); return JSON.stringify({ "data": output });','0',''), ('83220','34404','3','20','1h','0',''), ('83221','34405','1','12','$[?(@.name=="tidb_tikvclient_txn_cmd_duration_seconds_count" && @.labels.type == "{#TYPE}")].value.first()','0',''), ('83222','34405','2','10','','0',''), ('83223','34406','1','12','$[?(@.labels.result == "Error")].value.first()','0',''), ('83224','34406','2','10','','0',''), ('83225','34407','1','12','$[?(@.labels.result == "OK")].value.first()','0',''), ('83226','34407','2','10','','0',''), ('83227','34408','1','12','$[?(@.labels.type == "{#TYPE}")].value.first()','0',''), ('83228','34408','2','10','','0',''), ('83229','34409','1','12','$[?(@.name=="tidb_tikvclient_backoff_total" && @.labels.type == "{#TYPE}")].value.first()','0',''), ('83230','34409','2','10','','0',''), ('83231','34410','1','12','$[?(@.name=="tidb_tikvclient_gc_action_result" && @.labels.type == "{#TYPE}")].value.first()','0',''), ('83232','34410','2','10','','0',''), ('83233','34411','1','12','$[?(@.name=="tidb_tikvclient_lock_resolver_actions_total" && @.labels.type == "{#TYPE}")].value.first()','0',''), ('83234','34411','2','10','','0',''), ('83236','34412','1','26','-1','1',''), ('83237','34413','1','12','$[?(@.name == "tikv_scheduler_commands_pri_total" && @.labels.priority == "high")].value.first()','0',''), ('83238','34413','2','10','','0',''), ('83239','34414','1','12','$[?(@.name == "tikv_raftstore_region_count" && @.labels.type == "region" )].value.first()','0',''), ('83240','34415','1','12','$[?(@.labels.type == "capacity")].value.first()','0',''), ('83241','34416','1','12','$[?(@.labels.type == "available")].value.first()','0',''), ('83242','34417','1','12','$[?(@.name == "tikv_storage_command_total")].value.sum()','0',''), ('83243','34417','2','10','','0',''), ('83244','34418','1','12','$[?(@.name == "tikv_raftstore_snapshot_traffic_total" && @.labels.type == "sending")].value.first()','0',''), ('83245','34419','1','12','$[?(@.name == "tikv_raftstore_snapshot_traffic_total" && @.labels.type == "receiving")].value.first()','0',''), ('83246','34420','1','12','$[?(@.name == "tikv_raftstore_snapshot_traffic_total" && @.labels.type == "applying")].value.first()','1',''), ('83247','34421','1','12','$[?(@.name == "tikv_scheduler_too_busy_total")].value.sum()','1',''), ('83248','34421','2','10','','0',''), ('83249','34422','1','12','$[?(@.name == "tikv_worker_pending_task_total")].value.first()','0',''), ('83250','34423','1','12','$..value.sum()','2','0'), ('83251','34423','2','10','','0',''), ('83252','34424','1','12','$[?(@.name == "process_resident_memory_bytes")].value.first()','0',''), ('83253','34425','1','12','$[?(@.name == "tikv_raftstore_region_count" && @.labels.type == "leader" )].value.first()','0',''), ('83254','34426','1','12','$..value.sum()','1',''), ('83255','34426','2','10','','0',''), ('83256','34427','1','12','$[?(@.name == "tikv_scheduler_commands_pri_total" && @.labels.priority == "low")].value.first()','0',''), ('83257','34427','2','10','','0',''), ('83258','34428','1','12','$[?(@.name == "tikv_grpc_msg_fail_total")].value.sum()','1',''), ('83259','34428','2','10','','0',''), ('83260','34429','1','12','$..value.sum()','0',''), ('83261','34429','2','10','','0',''), ('83262','34430','1','12','$[?(@.name == "tikv_engine_size_bytes")].value.sum()','0',''), ('83263','34431','1','12','$[?(@.name == "tikv_engine_flow_bytes" && @.labels.db == "kv" && @.labels.type == "wal_file_bytes")].value.first()','0',''), ('83264','34432','1','12','$[?(@.name == "tikv_engine_flow_bytes" && @.labels.db == "kv" && @.labels.type =~ "bytes_read|iter_bytes_read")].value.sum()','0',''), ('83265','34433','1','12','$[?(@.name == "tikv_thread_cpu_seconds_total")].value.sum()','0',''), ('83266','34433','2','10','','0',''), ('83267','34433','3','1','100','0',''), ('83268','34434','1','12','$[?(@.name == "tikv_coprocessor_response_bytes")].value.first()','0',''), ('83269','34434','2','10','','0',''), ('83270','34435','1','12','$[?(@.name == "tikv_coprocessor_rocksdb_perf")].value.sum()','1',''), ('83271','34435','2','10','','0',''), ('83272','34436','1','12','$[?(@.name == "tikv_coprocessor_request_error")].value.sum()','1',''), ('83273','34436','2','10','','0',''), ('83274','34437','1','12','$..value.sum()','0',''), ('83275','34437','2','10','','0',''), ('83276','34438','1','12','$[?(@.name == "tikv_scheduler_commands_pri_total" && @.labels.priority == "normal")].value.first()','0',''), ('83277','34438','2','10','','0',''), ('83278','34439','1','12','$[?(@.name=="process_start_time_seconds")].value.first()','0',''), ('83279','34439','2','21','return (Math.floor(Date.now() / 1000) - Number(value));','0',''), ('83280','34440','1','21','output = JSON.parse(value).map(function (item) { return { "{#REQ_TYPE}": item.labels.req, }; }); return JSON.stringify({ "data": output });','0',''), ('83281','34440','2','20','1h','0',''), ('83283','34441','1','21','output = JSON.parse(value).map(function (item) { return { "{#TYPE}": item.labels.type, }; }); return JSON.stringify({ "data": output });','0',''), ('83284','34441','2','20','1h','0',''), ('83286','34442','1','21','var lookup = {}, result = []; JSON.parse(value).forEach(function (item) { var stage = item.labels.stage; if (!(lookup[stage])) { lookup[stage] = 1; result.push({ "{#STAGE}": stage }); } }); return JSON.stringify(result);','0',''), ('83287','34442','2','20','1h','0',''), ('83289','34443','1','21','output = JSON.parse(value).map(function (item) { return { "{#STORE_ID}": item.labels.store_id, "{#TYPE}": item.labels.type, }; }); return JSON.stringify({ "data": output });','0',''), ('83290','34443','2','20','1h','0',''), ('83292','34444','1','12','$[?(@.name == "tikv_coprocessor_request_duration_seconds_count")].value.first()','0',''), ('83293','34444','2','10','','0',''), ('83294','34445','1','12','$[?(@.name == "tikv_coprocessor_request_error")].value.first()','1',''), ('83295','34445','2','10','','0',''), ('83296','34446','1','12','$[?(@.name == "tikv_coprocessor_rocksdb_perf")].value.sum()','1',''), ('83297','34446','2','10','','0',''), ('83298','34447','1','12','$[?(@.name == "tikv_coprocessor_scan_keys_count")].value.first()','0',''), ('83299','34447','2','10','','0',''), ('83300','34448','1','12','$[?(@.labels.type == "{#TYPE}")].value.first()','2',''), ('83301','34449','1','12','$[?(@.labels.stage == "{#STAGE}")].value.sum()','2','0'), ('83302','34449','2','10','','0',''), ('83303','34450','1','12','$[?(@.labels.store_id == "{#STORE_ID}" && @.labels.type == "{#TYPE}")].value.sum()','0',''), ('83304','34450','2','10','','0',''), ('83305','34451','1','1','0.1','0',''), ('83306','34451','2','20','6h','0',''), ('83307','34452','1','20','6h','0',''), ('83308','34453','1','1','0.01','0',''), ('83309','34454','1','20','6h','0',''), ('83310','34455','1','20','6h','0',''), ('83311','34456','1','20','6h','0',''), ('83312','34457','1','20','6h','0',''), ('83313','34458','1','20','6h','0',''), ('83314','34459','1','20','12h','0',''), ('83315','34460','1','20','12h','0',''), ('83316','34462','1','1','0.1','0',''), ('83317','34462','2','20','6h','0',''), ('83318','34463','1','1','0.1','0',''), ('83319','34463','2','20','6h','0',''), ('83320','34464','1','20','6h','0',''), ('83321','34465','1','1','0.1','0',''), ('83322','34465','2','20','6h','0',''), ('83323','34466','1','1','0.1','0',''), ('83324','34466','2','20','6h','0',''), ('83325','34467','1','1','0.1','0',''), ('83326','34467','2','20','6h','0',''), ('83327','34468','1','20','6h','0',''), ('83328','34469','1','1','0.1','0',''), ('83329','34469','2','20','6h','0',''), ('83330','34470','1','1','0.1','0',''), ('83331','34470','2','20','6h','0',''), ('83332','34471','1','20','6h','0',''), ('83333','34472','1','1','0.01','0',''), ('83334','34472','2','20','6h','0',''), ('83335','34473','1','20','6h','0',''), ('83336','34474','1','20','6h','0',''), ('83337','34475','1','20','6h','0',''), ('83338','34482','1','20','6h','0',''), ('83339','34483','1','20','6h','0',''), ('83340','34484','1','20','6h','0',''), ('83341','34485','1','20','6h','0',''), ('83342','34486','1','1','0.1','0',''), ('83343','34486','2','20','6h','0',''), ('83344','34487','1','20','6h','0',''), ('83345','34488','1','20','6h','0',''), ('83346','34489','1','20','6h','0',''), ('83347','34490','1','20','6h','0',''), ('83348','34491','1','20','6h','0',''), ('83349','34492','1','20','6h','0',''), ('83350','34493','1','20','6h','0',''), ('83351','34494','1','1','0.1','0',''), ('83352','34494','2','20','6h','0',''), ('83353','34495','1','20','6h','0',''), ('83354','34496','1','1','0.1','0',''), ('83355','34496','2','20','6h','0',''), ('83356','34497','1','20','6h','0',''), ('83357','34498','1','20','6h','0',''), ('83358','34499','1','1','0.1','0',''), ('83359','34499','2','20','6h','0',''), ('83360','34500','1','20','6h','0',''), ('83361','34501','1','1','0.01','0',''), ('83362','34502','1','20','6h','0',''), ('83363','34503','1','20','6h','0',''), ('83364','34504','1','20','6h','0',''), ('83365','34505','1','20','6h','0',''), ('83366','34506','1','20','6h','0',''), ('83367','34507','1','20','12h','0',''), ('83368','34508','1','20','12h','0',''), ('83369','34510','1','1','0.1','0',''), ('83370','34510','2','20','6h','0',''), ('83371','34511','1','1','0.1','0',''), ('83372','34511','2','20','6h','0',''), ('83373','34512','1','20','6h','0',''), ('83374','34513','1','1','0.1','0',''), ('83375','34513','2','20','6h','0',''), ('83376','34514','1','1','0.1','0',''), ('83377','34514','2','20','6h','0',''), ('83378','34515','1','1','0.1','0',''), ('83379','34515','2','20','6h','0',''), ('83380','34516','1','20','6h','0',''), ('83381','34517','1','1','0.1','0',''), ('83382','34517','2','20','6h','0',''), ('83383','34518','1','1','0.1','0',''), ('83384','34518','2','20','6h','0',''), ('83385','34519','1','20','6h','0',''), ('83386','34520','1','1','0.01','0',''), ('83387','34520','2','20','6h','0',''), ('83388','34521','1','20','6h','0',''), ('83389','34522','1','20','6h','0',''), ('83390','34523','1','20','6h','0',''), ('83391','34530','1','20','6h','0',''), ('83392','34531','1','20','6h','0',''), ('83393','34532','1','20','6h','0',''), ('83394','34533','1','20','6h','0',''), ('83395','34534','1','1','0.1','0',''), ('83396','34534','2','20','6h','0',''), ('83397','34535','1','20','6h','0',''), ('83398','34536','1','20','6h','0',''), ('83399','34537','1','20','6h','0',''), ('83400','34538','1','20','6h','0',''), ('83401','34539','1','20','6h','0',''), ('83402','34540','1','20','6h','0',''), ('83403','34541','1','20','6h','0',''), ('83404','34542','1','1','0.1','0',''), ('83405','34542','2','20','6h','0',''), ('83406','34543','1','20','6h','0',''), ('83407','34544','1','1','0.1','0',''), ('83408','34544','2','20','6h','0',''), ('83409','34545','1','20','6h','0',''), ('83410','34546','1','20','6h','0',''), ('83411','34547','1','1','0.1','0',''), ('83412','34547','2','20','6h','0',''), ('83413','34548','1','20','6h','0',''), ('83414','34549','1','1','0.01','0',''), ('83415','34550','1','20','6h','0',''), ('83416','34551','1','20','6h','0',''), ('83417','34552','1','20','6h','0',''), ('83418','34553','1','20','6h','0',''), ('83419','34554','1','20','6h','0',''), ('83420','34555','1','20','12h','0',''), ('83421','34556','1','20','12h','0',''), ('83422','34558','1','1','0.1','0',''), ('83423','34558','2','20','6h','0',''), ('83424','34559','1','1','0.1','0',''), ('83425','34559','2','20','6h','0',''), ('83426','34560','1','20','6h','0',''), ('83427','34561','1','1','0.1','0',''), ('83428','34561','2','20','6h','0',''), ('83429','34562','1','1','0.1','0',''), ('83430','34562','2','20','6h','0',''), ('83431','34563','1','1','0.1','0',''), ('83432','34563','2','20','6h','0',''), ('83433','34564','1','20','6h','0',''), ('83434','34565','1','1','0.1','0',''), ('83435','34565','2','20','6h','0',''), ('83436','34566','1','1','0.1','0',''), ('83437','34566','2','20','6h','0',''), ('83438','34567','1','20','6h','0',''), ('83439','34568','1','1','0.01','0',''), ('83440','34568','2','20','6h','0',''), ('83441','34569','1','20','6h','0',''), ('83442','34570','1','20','6h','0',''), ('83443','34571','1','20','6h','0',''), ('83444','34578','1','20','6h','0',''), ('83445','34579','1','20','6h','0',''), ('83446','34580','1','20','6h','0',''), ('83447','34581','1','20','6h','0',''), ('83448','34582','1','1','0.1','0',''), ('83449','34582','2','20','6h','0',''), ('83450','34583','1','20','6h','0',''), ('83451','34584','1','20','6h','0',''), ('83452','34585','1','20','6h','0',''), ('83453','34586','1','20','6h','0',''), ('83454','34587','1','20','6h','0',''), ('83455','34588','1','20','6h','0',''), ('83456','34589','1','20','6h','0',''), ('83457','34590','1','1','0.1','0',''), ('83458','34590','2','20','6h','0',''), ('83459','34591','1','20','6h','0',''), ('83460','34592','1','1','0.1','0',''), ('83461','34592','2','20','6h','0',''), ('83462','34593','1','20','6h','0',''), ('83463','34594','1','20','6h','0',''), ('83464','34595','1','1','0.1','0',''), ('83465','34595','2','20','6h','0',''), ('83466','34596','1','20','6h','0',''), ('83467','34597','1','1','0.01','0',''), ('83468','34598','1','20','6h','0',''), ('83469','34599','1','20','6h','0',''), ('83470','34600','1','20','6h','0',''), ('83471','34601','1','20','6h','0',''), ('83472','34602','1','20','6h','0',''), ('83473','34603','1','20','12h','0',''), ('83474','34604','1','20','12h','0',''), ('83475','34606','1','1','0.1','0',''), ('83476','34606','2','20','6h','0',''), ('83477','34607','1','1','0.1','0',''), ('83478','34607','2','20','6h','0',''), ('83479','34608','1','20','6h','0',''), ('83480','34609','1','1','0.1','0',''), ('83481','34609','2','20','6h','0',''), ('83482','34610','1','1','0.1','0',''), ('83483','34610','2','20','6h','0',''), ('83484','34611','1','1','0.1','0',''), ('83485','34611','2','20','6h','0',''), ('83486','34612','1','20','6h','0',''), ('83487','34613','1','1','0.1','0',''), ('83488','34613','2','20','6h','0',''), ('83489','34614','1','1','0.1','0',''), ('83490','34614','2','20','6h','0',''), ('83491','34615','1','20','6h','0',''), ('83492','34616','1','1','0.01','0',''), ('83493','34616','2','20','6h','0',''), ('83494','34617','1','20','6h','0',''), ('83495','34618','1','20','6h','0',''), ('83496','34619','1','20','6h','0',''), ('83497','34626','1','20','6h','0',''), ('83498','34627','1','20','6h','0',''), ('83499','34628','1','20','6h','0',''), ('83500','34629','1','20','6h','0',''), ('83501','34630','1','1','0.1','0',''), ('83502','34630','2','20','6h','0',''), ('83503','34631','1','20','6h','0',''), ('83504','34632','1','20','6h','0',''), ('83505','34633','1','20','6h','0',''), ('83506','34634','1','20','6h','0',''), ('83507','34635','1','20','6h','0',''), ('83508','34636','1','20','6h','0',''), ('83509','34637','1','20','6h','0',''), ('83510','34638','1','1','0.1','0',''), ('83511','34638','2','20','6h','0',''), ('83512','34639','1','20','6h','0',''), ('83513','34640','1','1','0.1','0',''), ('83514','34640','2','20','6h','0',''), ('83515','34641','1','20','6h','0',''), ('83516','34642','1','20','6h','0',''), ('83517','34643','1','1','0.1','0',''), ('83518','34643','2','20','6h','0',''), ('83519','34644','1','20','6h','0',''), ('83520','34645','1','1','0.01','0',''), ('83521','34646','1','20','6h','0',''), ('83522','34647','1','20','6h','0',''), ('83523','34648','1','20','6h','0',''), ('83524','34649','1','20','6h','0',''), ('83525','34650','1','20','6h','0',''), ('83526','34651','1','20','12h','0',''), ('83527','34652','1','20','12h','0',''), ('83528','34654','1','1','0.1','0',''), ('83529','34654','2','20','6h','0',''), ('83530','34655','1','1','0.1','0',''), ('83531','34655','2','20','6h','0',''), ('83532','34656','1','20','6h','0',''), ('83533','34657','1','1','0.1','0',''), ('83534','34657','2','20','6h','0',''), ('83535','34658','1','1','0.1','0',''), ('83536','34658','2','20','6h','0',''), ('83537','34659','1','1','0.1','0',''), ('83538','34659','2','20','6h','0',''), ('83539','34660','1','20','6h','0',''), ('83540','34661','1','1','0.1','0',''), ('83541','34661','2','20','6h','0',''), ('83542','34662','1','1','0.1','0',''), ('83543','34662','2','20','6h','0',''), ('83544','34663','1','20','6h','0',''), ('83545','34664','1','1','0.01','0',''), ('83546','34664','2','20','6h','0',''), ('83547','34665','1','20','6h','0',''), ('83548','34666','1','20','6h','0',''), ('83549','34667','1','20','6h','0',''), ('83550','34674','1','20','6h','0',''), ('83551','34675','1','20','6h','0',''), ('83552','34676','1','20','6h','0',''), ('83553','34677','1','20','6h','0',''), ('83554','34678','1','1','0.1','0',''), ('83555','34678','2','20','6h','0',''), ('83556','34679','1','20','6h','0',''), ('83557','34680','1','20','6h','0',''), ('83558','34681','1','20','6h','0',''), ('83559','34682','1','20','6h','0',''), ('83560','34683','1','20','6h','0',''), ('83561','34684','1','20','6h','0',''), ('83562','34685','1','20','6h','0',''), ('83563','34686','1','1','0.1','0',''), ('83564','34686','2','20','6h','0',''), ('83565','34687','1','20','6h','0',''), ('83566','34688','1','1','0.1','0',''), ('83567','34688','2','20','6h','0',''), ('83568','34689','1','20','6h','0',''), ('83569','34690','1','20','6h','0',''), ('83623','34739','1','1','0.1','0',''), ('83624','34739','2','20','6h','0',''), ('83625','34740','1','20','6h','0',''), ('83626','34741','1','1','0.01','0',''), ('83627','34742','1','20','6h','0',''), ('83628','34743','1','20','6h','0',''), ('83629','34744','1','20','6h','0',''), ('83630','34745','1','20','6h','0',''), ('83631','34746','1','20','6h','0',''), ('83632','34747','1','20','12h','0',''), ('83633','34748','1','20','12h','0',''), ('83634','34750','1','1','0.1','0',''), ('83635','34750','2','20','6h','0',''), ('83636','34751','1','1','0.1','0',''), ('83637','34751','2','20','6h','0',''), ('83638','34752','1','20','6h','0',''), ('83639','34753','1','1','0.1','0',''), ('83640','34753','2','20','6h','0',''), ('83641','34754','1','1','0.1','0',''), ('83642','34754','2','20','6h','0',''), ('83643','34755','1','1','0.1','0',''), ('83644','34755','2','20','6h','0',''), ('83645','34756','1','20','6h','0',''), ('83646','34757','1','1','0.1','0',''), ('83647','34757','2','20','6h','0',''), ('83648','34758','1','1','0.1','0',''), ('83649','34758','2','20','6h','0',''), ('83650','34759','1','20','6h','0',''), ('83651','34760','1','1','0.01','0',''), ('83652','34760','2','20','6h','0',''), ('83653','34761','1','20','6h','0',''), ('83654','34762','1','20','6h','0',''), ('83655','34763','1','20','6h','0',''), ('83656','34770','1','20','6h','0',''), ('83657','34771','1','20','6h','0',''), ('83658','34772','1','20','6h','0',''), ('83659','34773','1','20','6h','0',''), ('83660','34774','1','1','0.1','0',''), ('83661','34774','2','20','6h','0',''), ('83662','34775','1','20','6h','0',''), ('83663','34776','1','20','6h','0',''), ('83664','34777','1','20','6h','0',''), ('83665','34778','1','20','6h','0',''), ('83666','34779','1','20','6h','0',''), ('83667','34780','1','20','6h','0',''), ('83668','34781','1','20','6h','0',''), ('83669','34782','1','1','0.1','0',''), ('83670','34782','2','20','6h','0',''), ('83671','34783','1','20','6h','0',''), ('83672','34784','1','1','0.1','0',''), ('83673','34784','2','20','6h','0',''), ('83674','34785','1','20','6h','0',''), ('83675','34786','1','20','6h','0',''), ('83676','34787','1','1','0.1','0',''), ('83677','34787','2','20','6h','0',''), ('83678','34788','1','20','6h','0',''), ('83679','34206','1','20','6h','0',''), ('83680','34790','1','1','0.1','0',''), ('83681','34790','2','20','6h','0',''), ('83682','34791','1','20','6h','0',''), ('83683','34792','1','20','6h','0',''), ('83684','34793','1','1','0.1','0',''), ('83685','34793','2','20','6h','0',''), ('83686','34794','1','20','6h','0',''), ('83687','34795','1','1','0.01','0',''), ('83688','34796','1','20','6h','0',''), ('83689','34797','1','20','6h','0',''), ('83690','34798','1','20','6h','0',''), ('83691','34799','1','20','6h','0',''), ('83692','34800','1','20','6h','0',''), ('83693','34801','1','20','12h','0',''), ('83694','34802','1','20','12h','0',''), ('83695','34804','1','1','0.1','0',''), ('83696','34804','2','20','6h','0',''), ('83697','34805','1','1','0.1','0',''), ('83698','34805','2','20','6h','0',''), ('83699','34806','1','20','6h','0',''), ('83700','34807','1','1','0.1','0',''), ('83701','34807','2','20','6h','0',''), ('83702','34808','1','1','0.1','0',''), ('83703','34808','2','20','6h','0',''), ('83704','34809','1','1','0.1','0',''), ('83705','34809','2','20','6h','0',''), ('83706','34810','1','20','6h','0',''), ('83707','34811','1','1','0.1','0',''), ('83708','34811','2','20','6h','0',''), ('83709','34812','1','1','0.1','0',''), ('83710','34812','2','20','6h','0',''), ('83711','34813','1','20','6h','0',''), ('83712','34814','1','1','0.01','0',''), ('83713','34814','2','20','6h','0',''), ('83714','34815','1','20','6h','0',''), ('83715','34816','1','20','6h','0',''), ('83716','34817','1','20','6h','0',''), ('83717','34824','1','20','6h','0',''), ('83718','34825','1','20','6h','0',''), ('83719','34826','1','20','6h','0',''), ('83720','34827','1','20','6h','0',''), ('83721','34828','1','1','0.1','0',''), ('83722','34828','2','20','6h','0',''), ('83723','34829','1','20','6h','0',''), ('83724','34830','1','20','6h','0',''), ('83725','34831','1','20','6h','0',''), ('83726','34832','1','20','6h','0',''), ('83727','34833','1','20','6h','0',''), ('83728','34834','1','20','6h','0',''), ('83729','34835','1','20','6h','0',''), ('83730','34836','1','1','0.1','0',''), ('83731','34836','2','20','6h','0',''), ('83732','34837','1','20','6h','0',''), ('83733','34838','1','1','0.1','0',''), ('83734','34838','2','20','6h','0',''), ('83735','34839','1','20','6h','0',''), ('83736','34840','1','20','6h','0',''), ('83737','34841','1','1','0.1','0',''), ('83738','34841','2','20','6h','0',''), ('83739','34842','1','20','6h','0',''), ('83740','34843','1','1','0.01','0',''), ('83741','34844','1','20','6h','0',''), ('83742','34845','1','20','6h','0',''), ('83743','34846','1','20','6h','0',''), ('83744','34847','1','20','6h','0',''), ('83745','34848','1','20','6h','0',''), ('83746','34849','1','20','12h','0',''), ('83747','34850','1','20','12h','0',''), ('83748','34852','1','1','0.1','0',''), ('83749','34852','2','20','6h','0',''), ('83750','34853','1','1','0.1','0',''), ('83751','34853','2','20','6h','0',''), ('83752','34854','1','20','6h','0',''), ('83753','34855','1','1','0.1','0',''), ('83754','34855','2','20','6h','0',''), ('83755','34856','1','1','0.1','0',''), ('83756','34856','2','20','6h','0',''), ('83757','34857','1','1','0.1','0',''), ('83758','34857','2','20','6h','0',''), ('83759','34858','1','20','6h','0',''), ('83760','34859','1','1','0.1','0',''), ('83761','34859','2','20','6h','0',''), ('83762','34860','1','1','0.1','0',''), ('83763','34860','2','20','6h','0',''), ('83764','34861','1','20','6h','0',''), ('83765','34862','1','1','0.01','0',''), ('83766','34862','2','20','6h','0',''), ('83767','34863','1','20','6h','0',''), ('83768','34864','1','20','6h','0',''), ('83769','34865','1','20','6h','0',''), ('83770','34872','1','20','6h','0',''), ('83771','34873','1','20','6h','0',''), ('83772','34874','1','20','6h','0',''), ('83773','34875','1','20','6h','0',''), ('83774','34876','1','1','0.1','0',''), ('83775','34876','2','20','6h','0',''), ('83776','34877','1','20','6h','0',''), ('83777','34878','1','20','6h','0',''), ('83778','34879','1','20','6h','0',''), ('83779','34880','1','20','6h','0',''), ('83780','34881','1','20','6h','0',''), ('83781','34882','1','20','6h','0',''), ('83782','34883','1','20','6h','0',''), ('83783','34884','1','1','0.1','0',''), ('83784','34884','2','20','6h','0',''), ('83785','34885','1','20','6h','0',''), ('83786','34886','1','1','0.1','0',''), ('83787','34886','2','20','6h','0',''), ('83788','34887','1','20','6h','0',''), ('83789','34888','1','20','6h','0',''), ('83790','34889','1','1','0.1','0',''), ('83791','34889','2','20','6h','0',''), ('83792','34890','1','20','6h','0',''), ('83793','34891','1','1','0.01','0',''), ('83794','34892','1','20','6h','0',''), ('83795','34893','1','20','6h','0',''), ('83796','34894','1','20','6h','0',''), ('83797','34895','1','20','6h','0',''), ('83798','34896','1','20','6h','0',''), ('83799','34897','1','20','12h','0',''), ('83800','34898','1','20','12h','0',''), ('83801','34900','1','1','0.1','0',''), ('83802','34900','2','20','6h','0',''), ('83803','34901','1','1','0.1','0',''), ('83804','34901','2','20','6h','0',''), ('83805','34902','1','20','6h','0',''), ('83806','34903','1','1','0.1','0',''), ('83807','34903','2','20','6h','0',''), ('83808','34904','1','1','0.1','0',''), ('83809','34904','2','20','6h','0',''), ('83810','34905','1','1','0.1','0',''), ('83811','34905','2','20','6h','0',''), ('83812','34906','1','20','6h','0',''), ('83813','34907','1','1','0.1','0',''), ('83814','34907','2','20','6h','0',''), ('83815','34908','1','1','0.1','0',''), ('83816','34908','2','20','6h','0',''), ('83817','34909','1','20','6h','0',''), ('83818','34910','1','1','0.01','0',''), ('83819','34910','2','20','6h','0',''), ('83820','34911','1','20','6h','0',''), ('83821','34912','1','20','6h','0',''), ('83822','34913','1','20','6h','0',''), ('83823','34920','1','20','6h','0',''), ('83824','34921','1','20','6h','0',''), ('83825','34922','1','20','6h','0',''), ('83826','34923','1','20','6h','0',''), ('83827','34924','1','1','0.1','0',''), ('83828','34924','2','20','6h','0',''), ('83829','34925','1','20','6h','0',''), ('83830','34926','1','20','6h','0',''), ('83831','34927','1','20','6h','0',''), ('83832','34928','1','20','6h','0',''), ('83833','34929','1','20','6h','0',''), ('83834','34930','1','20','6h','0',''), ('83835','34931','1','20','6h','0',''), ('83836','34932','1','1','0.1','0',''), ('83837','34932','2','20','6h','0',''), ('83838','34933','1','20','6h','0',''), ('83839','34934','1','1','0.1','0',''), ('83840','34934','2','20','6h','0',''), ('83841','34935','1','20','6h','0',''), ('83842','34936','1','20','6h','0',''), ('83843','34937','1','1','0.001','0',''), ('83844','34938','1','20','3h','0',''), ('83845','34939','1','20','3h','0',''), ('83846','34940','1','20','3h','0',''), ('83847','34941','1','20','3h','0',''), ('83848','34944','1','6','','0',''), ('83849','34944','2','20','3h','0',''), ('83850','34945','1','6','','0',''), ('83851','34945','2','20','3h','0',''), ('83852','34946','1','6','','0',''), ('83853','34946','2','20','3h','0',''), ('83854','34947','1','20','3h','0',''), ('83855','34948','1','20','3h','0',''), ('83856','34949','1','1','0.001','0',''), ('83857','34950','1','10','','0',''), ('83858','34951','1','10','','0',''), ('83859','34952','1','10','','0',''), ('83860','34953','1','10','','0',''), ('83861','34954','1','10','','0',''), ('83862','34956','1','10','','0',''), ('83863','34957','1','10','','0',''), ('83864','34958','1','20','3h','0',''), ('83865','34959','1','10','','0',''), ('83866','34960','1','20','3h','0',''), ('83867','34961','1','20','3h','0',''), ('83868','34962','1','20','3h','0',''), ('83869','34963','1','20','3h','0',''), ('83870','34964','1','20','3h','0',''), ('83871','34965','1','10','','0',''), ('83872','34970','1','1','0.001','0',''), ('83873','34970','2','20','3h','0',''), ('83874','34971','1','6','','0',''), ('83875','34971','2','20','3h','0',''), ('83876','34972','1','6','','0',''), ('83877','34972','2','20','3h','0',''), ('83878','34973','1','6','','0',''), ('83879','34973','2','20','3h','0',''), ('83880','34974','1','20','3h','0',''), ('83881','34975','1','10','','0',''), ('83882','34976','1','10','','0',''), ('83883','34978','1','10','','0',''), ('83884','34979','1','10','','0',''), ('83885','34980','1','10','','0',''), ('83886','34981','1','6','','0',''), ('83887','34981','2','20','3h','0',''), ('83888','34985','1','10','','0',''), ('83889','34987','1','10','','0',''), ('83890','34989','1','10','','0',''), ('83891','34991','1','10','','0',''), ('83892','34993','1','10','','0',''), ('83893','34995','1','10','','0',''), ('83894','34998','1','10','','0',''), ('83895','34999','1','6','','0',''), ('83896','34999','2','20','3h','0',''), ('83897','35003','1','10','','0',''), ('83898','35004','1','10','','0',''), ('83899','35005','1','10','','0',''), ('83900','35011','1','10','','0',''), ('83901','35012','1','10','','0',''), ('83902','35013','1','10','','0',''), ('83903','35014','1','10','','0',''), ('83904','35015','1','10','','0',''), ('83905','35016','1','1','0.1','0',''), ('83906','35016','2','20','6h','0',''), ('83907','35017','1','20','6h','0',''), ('83908','35018','1','1','0.01','0',''), ('83909','35019','1','20','6h','0',''), ('83910','35020','1','20','6h','0',''), ('83911','35021','1','20','6h','0',''), ('83912','35022','1','20','6h','0',''), ('83913','35023','1','20','6h','0',''), ('83914','35024','1','20','12h','0',''), ('83915','35025','1','20','12h','0',''), ('83916','35027','1','1','0.1','0',''), ('83917','35027','2','20','6h','0',''), ('83918','35028','1','1','0.1','0',''), ('83919','35028','2','20','6h','0',''), ('83920','35029','1','20','6h','0',''), ('83921','35030','1','1','0.1','0',''), ('83922','35030','2','20','6h','0',''), ('83923','35031','1','1','0.1','0',''), ('83924','35031','2','20','6h','0',''), ('83925','35032','1','1','0.1','0',''), ('83926','35032','2','20','6h','0',''), ('83927','35033','1','20','6h','0',''), ('83928','35034','1','1','0.1','0',''), ('83929','35034','2','20','6h','0',''), ('83930','35035','1','1','0.1','0',''), ('83931','35035','2','20','6h','0',''), ('83932','35036','1','20','6h','0',''), ('83933','35037','1','1','0.01','0',''), ('83934','35037','2','20','6h','0',''), ('83935','35038','1','20','6h','0',''), ('83936','35039','1','20','6h','0',''), ('83937','35040','1','20','6h','0',''), ('83938','35047','1','20','6h','0',''), ('83939','35048','1','20','6h','0',''), ('83940','35049','1','20','6h','0',''), ('83941','35050','1','20','6h','0',''), ('83942','35051','1','1','0.1','0',''), ('83943','35051','2','20','6h','0',''), ('83944','35052','1','20','6h','0',''), ('83945','35053','1','20','6h','0',''), ('83946','35054','1','20','6h','0',''), ('83947','35055','1','20','6h','0',''), ('83948','35056','1','20','6h','0',''), ('83949','35057','1','20','6h','0',''), ('83950','35058','1','20','6h','0',''), ('83951','35059','1','1','0.1','0',''), ('83952','35059','2','20','6h','0',''), ('83953','35060','1','20','6h','0',''), ('83954','35061','1','1','0.1','0',''), ('83955','35061','2','20','6h','0',''), ('83956','35062','1','20','6h','0',''), ('83957','35063','1','20','6h','0',''), ('83958','35064','1','20','6h','0',''), ('83959','35065','1','12','$.x509.alternative_names','0',''), ('83960','35066','1','12','$.x509.issuer','0',''), ('83961','35067','1','12','$.result.message','0',''), ('83962','35068','1','12','$.x509.not_after.timestamp','0',''), ('83963','35069','1','12','$.x509.not_before.timestamp','0',''), ('83964','35070','1','12','$.x509.public_key_algorithm','0',''), ('83965','35071','1','12','$.x509.serial_number','0',''), ('83966','35072','1','12','$.sha1_fingerprint','0',''), ('83967','35073','1','12','$.x509.signature_algorithm','0',''), ('83968','35074','1','12','$.x509.subject','0',''), ('83969','35075','1','12','$.result.value','0',''), ('83970','35076','1','12','$.x509.version','0',''), ('83971','35078','1','12','$.bandwidth.all','0',''), ('83972','35079','1','12','$.requests.others_ratio','0',''), ('83973','35080','1','12','$.threats.all','0',''), ('83974','35081','1','12','$.requests.uncached','0',''), ('83975','35082','1','12','$.requests.success_ratio','0',''), ('83976','35083','1','12','$.requests.unencrypted','0',''), ('83977','35084','1','12','$.requests.encrypted','0',''), ('83978','35085','1','12','$.requests.response_500','0',''), ('83979','35086','1','12','$.requests.response_400','0',''), ('83980','35087','1','12','$.requests.response_300','0',''), ('83981','35088','1','12','$.requests.response_200','0',''), ('83982','35089','1','12','$.requests.response_100','0',''), ('83983','35090','1','12','$.requests.cache_hit_ratio','0',''), ('83984','35091','1','12','$.bandwidth.cached','0',''), ('83985','35092','1','12','$.requests.cached','0',''), ('83986','35093','1','12','$.requests.all','0',''), ('83987','35094','1','12','$.pageviews.all','0',''), ('83988','35095','1','12','$.dns.query.uncached','0',''), ('83989','35096','1','12','$.dns.query.stale','0',''), ('83990','35097','1','12','$.dns.query.all','0',''), ('83991','35098','1','12','$.bandwidth.uncached','0',''), ('83992','35099','1','12','$.bandwidth.unencrypted','0',''), ('83993','35100','1','12','$.bandwidth.encrypted','0',''), ('83994','35101','1','12','$.bandwidth.cache_hit_ratio','0',''), ('83995','35102','1','12','$.uniques.all','0',''), ('83996','35103','1','21','return JSON.stringify(JSON.parse(value),[''mode'',''pxname'',''svname''])','0',''), ('83997','35103','2','20','1h','0',''), ('83998','35104','1','12','$.act','0',''), ('83999','35104','2','20','1h','0',''), ('84000','35105','1','12','$.hrsp_5xx','0',''), ('84001','35105','2','10','','0',''), ('84002','35106','1','12','$.weight','0',''), ('84003','35106','2','20','1h','0',''), ('84004','35107','1','12','$.stot','0',''), ('84005','35107','2','10','','0',''), ('84006','35108','1','12','$.hrsp_4xx','0',''), ('84007','35108','2','10','','0',''), ('84008','35109','1','12','$.bck','0',''), ('84009','35109','2','20','1h','0',''), ('84010','35110','1','12','$.hrsp_3xx','0',''), ('84011','35110','2','10','','0',''), ('84012','35111','1','12','$.hrsp_2xx','0',''), ('84013','35111','2','10','','0',''), ('84014','35112','1','12','$.hrsp_1xx','0',''), ('84015','35112','2','10','','0',''), ('84016','35113','1','12','$.bout','0',''), ('84017','35113','2','1','8','0',''), ('84018','35113','3','10','','0',''), ('84019','35114','1','12','$.bin','0',''), ('84020','35114','2','1','8','0',''), ('84021','35114','3','10','','0',''), ('84022','35115','1','12','$.status','0',''), ('84023','35115','2','20','6h','0',''), ('84024','35116','1','12','$.act','0',''), ('84025','35116','2','20','1h','0',''), ('84026','35117','1','12','$.weight','0',''), ('84027','35117','2','20','1h','0',''), ('84028','35118','1','12','$.stot','0',''), ('84029','35118','2','10','','0',''), ('84030','35119','1','12','$.qlimit','0',''), ('84031','35119','2','20','6h','0',''), ('84032','35119','3','14',E'^\\d+$','2','0'), ('84033','35120','1','12','$.lbtot','0',''), ('84034','35120','2','10','','0',''), ('84035','35121','1','12','$.bck','0',''), ('84036','35121','2','20','1h','0',''), ('84037','35122','1','12','$.hrsp_3xx','0',''), ('84038','35122','2','10','','0',''), ('84039','35123','1','12','$.hrsp_2xx','0',''), ('84040','35123','2','10','','0',''), ('84041','35124','1','12','$.hrsp_1xx','0',''), ('84042','35124','2','10','','0',''), ('84043','35125','1','12','$.check_status','0',''), ('84044','35125','2','20','10m','0',''), ('84045','35126','1','12','$.bout','0',''), ('84046','35126','2','1','8','0',''), ('84047','35126','3','10','','0',''), ('84048','35127','1','12','$.bin','0',''), ('84049','35127','2','1','8','0',''), ('84050','35127','3','10','','0',''), ('84051','35128','1','21','return JSON.stringify(JSON.parse(value),[''mode'',''pxname'',''svname''])','0',''), ('84052','35128','2','20','1h','0',''), ('84053','35129','1','12','$.act','0',''), ('84054','35129','2','20','1h','0',''), ('84055','35130','1','12','$.hrsp_5xx','0',''), ('84056','35130','2','10','','0',''), ('84057','35131','1','12','$.weight','0',''), ('84058','35131','2','20','1h','0',''), ('84059','35132','1','12','$.stot','0',''), ('84060','35132','2','10','','0',''), ('84061','35133','1','12','$.hrsp_4xx','0',''), ('84062','35133','2','10','','0',''), ('84063','35134','1','12','$.bck','0',''), ('84064','35134','2','20','1h','0',''), ('84065','35135','1','12','$.hrsp_3xx','0',''), ('84066','35135','2','10','','0',''), ('84067','35136','1','12','$.hrsp_2xx','0',''), ('84068','35136','2','10','','0',''), ('84069','35137','1','12','$.hrsp_1xx','0',''), ('84070','35137','2','10','','0',''), ('84071','35138','1','12','$.bout','0',''), ('84072','35138','2','1','8','0',''), ('84073','35138','3','10','','0',''), ('84074','35139','1','12','$.bin','0',''), ('84075','35139','2','1','8','0',''), ('84076','35139','3','10','','0',''), ('84077','35140','1','12','$.status','0',''), ('84078','35140','2','20','6h','0',''), ('84079','35141','1','12','$.act','0',''), ('84080','35141','2','20','1h','0',''), ('84081','35142','1','12','$.weight','0',''), ('84082','35142','2','20','1h','0',''), ('84083','35143','1','12','$.stot','0',''), ('84084','35143','2','10','','0',''), ('84085','35144','1','12','$.qlimit','0',''), ('84086','35144','2','20','6h','0',''), ('84087','35144','3','14',E'^\\d+$','2','0'), ('84088','35145','1','12','$.lbtot','0',''), ('84089','35145','2','10','','0',''), ('84090','35146','1','12','$.bck','0',''), ('84091','35146','2','20','1h','0',''), ('84092','35147','1','12','$.hrsp_3xx','0',''), ('84093','35147','2','10','','0',''), ('84094','35148','1','12','$.hrsp_2xx','0',''), ('84095','35148','2','10','','0',''), ('84096','35149','1','12','$.hrsp_1xx','0',''), ('84097','35149','2','10','','0',''), ('84098','35150','1','12','$.check_status','0',''), ('84099','35150','2','20','10m','0',''), ('84100','35151','1','12','$.bout','0',''), ('84101','35151','2','1','8','0',''), ('84102','35151','3','10','','0',''), ('84103','35152','1','12','$.bin','0',''), ('84104','35152','2','1','8','0',''), ('84105','35152','3','10','','0',''), ('84106','35163','1','12','$.idle','0',''), ('84107','35164','1','12','$.active','0',''), ('84108','35165','1','12','$.session_reuses','0',''), ('84109','35165','2','10','','0',''), ('84110','35166','1','12','$.handshakes_failed','0',''), ('84111','35166','2','10','','0',''), ('84112','35167','1','12','$.handshakes','0',''), ('84113','35167','2','10','','0',''), ('84114','35168','1','12','$.dropped','0',''), ('84115','35169','1','12','$.current','0',''), ('84116','35170','1','12','$.total','0',''), ('84117','35170','2','10','','0',''), ('84118','35171','1','12','$.version','0',''), ('84119','35171','2','20','3h','0',''), ('84120','35172','1','12','$.accepted','0',''), ('84121','35172','2','10','','0',''), ('84122','35173','1','12','$.generation','0',''), ('84123','35173','2','20','30m','0',''), ('84124','35174','1','12','$.error.text','2',''), ('84125','35174','2','20','1h','0',''), ('84126','35175','1','12','$.address','0',''), ('84127','35175','2','20','3h','0',''), ('84128','35176','1','12','$.load_timestamp','1',''), ('84129','35176','2','21','return Math.floor((Date.now() - new Date(value)) / 1000);','0',''), ('84130','35177','1','21','var output = []; Object.keys(JSON.parse(value)).forEach(function (v) { output.push({ ''{#NAME}'': v }) }); return JSON.stringify(output);','0',''), ('84131','35177','2','20','30m','0',''), ('84132','35178','1','21','var output = []; Object.keys(JSON.parse(value)).forEach(function (v) { output.push({ ''{#NAME}'': v }) }); return JSON.stringify(output);','0',''), ('84133','35178','2','20','30m','0',''), ('84134','35179','1','21','var input = JSON.parse(value), output = []; Object.keys(input).forEach(function (upstream) { input[upstream].peers.forEach(function (peer) { output.push({ ''{#UPSTREAM}'': upstream, ''{#PEER}'': peer.server }) }); }); return JSON.stringify(output);','0',''), ('84135','35179','2','20','30m','0',''), ('84136','35180','1','21','var output = []; Object.keys(JSON.parse(value)).forEach(function (v) { output.push({ ''{#NAME}'': v }) }); return JSON.stringify(output);','0',''), ('84137','35180','2','20','30m','0',''), ('84138','35181','1','21','var output = []; Object.keys(JSON.parse(value)).forEach(function (v) { output.push({ ''{#NAME}'': v }) }); return JSON.stringify(output);','0',''), ('84139','35181','2','20','30m','0',''), ('84140','35182','1','21','var output = []; Object.keys(JSON.parse(value)).forEach(function (v) { output.push({ ''{#NAME}'': v }) }); return JSON.stringify(output);','0',''), ('84141','35182','2','20','30m','0',''), ('84142','35183','1','21','var input = JSON.parse(value), output = []; Object.keys(input).forEach(function (upstream) { input[upstream].peers.forEach(function (peer) { output.push({ ''{#UPSTREAM}'': upstream, ''{#PEER}'': peer.server }) }); }); return JSON.stringify(output);','0',''), ('84143','35183','2','20','30m','0',''), ('84144','35184','1','21','var output = []; Object.keys(JSON.parse(value)).forEach(function (v) { output.push({ ''{#NAME}'': v }) }); return JSON.stringify(output);','0',''), ('84145','35184','2','20','30m','0',''), ('84146','35185','1','12','$.discarded','0',''), ('84147','35185','2','10','','0',''), ('84148','35186','1','12','$.received','0',''), ('84149','35186','2','10','','0',''), ('84150','35187','1','12','$.requests','0',''), ('84151','35187','2','10','','0',''), ('84152','35188','1','12','$.responses.1xx','0',''), ('84153','35188','2','10','','0',''), ('84154','35189','1','12','$.responses.2xx','0',''), ('84155','35189','2','10','','0',''), ('84156','35190','1','12','$.responses.3xx','0',''), ('84157','35190','2','10','','0',''), ('84158','35191','1','12','$.responses.4xx','0',''), ('84159','35191','2','10','','0',''), ('84160','35192','1','12','$.responses.5xx','0',''), ('84161','35192','2','10','','0',''), ('84162','35193','1','12','$.responses.total','0',''), ('84163','35193','2','10','','0',''), ('84164','35194','1','12','$.sent','0',''), ('84165','35194','2','10','','0',''), ('84166','35195','1','12','$.discarded','0',''), ('84167','35195','2','10','','0',''), ('84168','35196','1','12','$.processing','0',''), ('84169','35197','1','12','$.received','0',''), ('84170','35197','2','10','','0',''), ('84171','35198','1','12','$.requests','0',''), ('84172','35198','2','10','','0',''), ('84173','35199','1','12','$.responses.1xx','0',''), ('84174','35199','2','10','','0',''), ('84175','35200','1','12','$.responses.2xx','0',''), ('84176','35200','2','10','','0',''), ('84177','35201','1','12','$.responses.3xx','0',''), ('84178','35201','2','10','','0',''), ('84179','35202','1','12','$.responses.4xx','0',''), ('84180','35202','2','10','','0',''), ('84181','35203','1','12','$.responses.5xx','0',''), ('84182','35203','2','10','','0',''), ('84183','35204','1','12','$.responses.total','0',''), ('84184','35204','2','10','','0',''), ('84185','35205','1','12','$.sent','0',''), ('84186','35205','2','10','','0',''), ('84187','35206','1','12','$.active','0',''), ('84188','35207','1','12','$.responses.3xx','0',''), ('84189','35207','2','10','','0',''), ('84190','35208','1','12','$.state','0',''), ('84191','35208','2','20','3h','0',''), ('84192','35209','1','12','$.sent','0',''), ('84193','35209','2','10','','0',''), ('84194','35210','1','12','$.response_time','1',''), ('84195','35211','1','12','$.responses.total','0',''), ('84196','35211','2','10','','0',''), ('84197','35212','1','12','$.responses.5xx','0',''), ('84198','35212','2','10','','0',''), ('84199','35213','1','12','$.responses.4xx','0',''), ('84200','35213','2','10','','0',''), ('84201','35214','1','12','$.responses.2xx','0',''), ('84202','35214','2','10','','0',''), ('84203','35215','1','12','$.fails','0',''), ('84204','35215','2','10','','0',''), ('84205','35216','1','12','$.responses.1xx','0',''), ('84206','35216','2','10','','0',''), ('84207','35217','1','12','$.requests','0',''), ('84208','35217','2','10','','0',''), ('84209','35218','1','12','$.received','0',''), ('84210','35218','2','10','','0',''), ('84211','35219','1','12','$.health_checks.unhealthy','0',''), ('84212','35220','1','12','$.health_checks.fails','0',''), ('84213','35221','1','12','$.health_checks.checks','0',''), ('84214','35222','1','12','$.header_time','1',''), ('84215','35223','1','12','$.unavail','0',''), ('84216','35224','1','12','$.keepalive','0',''), ('84217','35225','1','12','$.zombies','0',''), ('84218','35226','1','12','$.zone','0',''), ('84219','35226','2','20','3h','0',''), ('84220','35227','1','12','$.requests.addr','0',''), ('84221','35227','2','10','','0',''), ('84222','35228','1','12','$.requests.name','0',''), ('84223','35228','2','10','','0',''), ('84224','35229','1','12','$.requests.srv','0',''), ('84225','35229','2','10','','0',''), ('84226','35230','1','12','$.responses.formerr','0',''), ('84227','35230','2','10','','0',''), ('84228','35231','1','12','$.responses.noerror','0',''), ('84229','35231','2','10','','0',''), ('84230','35232','1','12','$.responses.notimp','0',''), ('84231','35232','2','10','','0',''), ('84232','35233','1','12','$.responses.nxdomain','0',''), ('84233','35233','2','10','','0',''), ('84234','35234','1','12','$.responses.refused','0',''), ('84235','35234','2','10','','0',''), ('84236','35235','1','12','$.responses.servfail','0',''), ('84237','35235','2','10','','0',''), ('84238','35236','1','12','$.responses.timedout','0',''), ('84239','35236','2','10','','0',''), ('84240','35237','1','12','$.responses.unknown','0',''), ('84241','35237','2','10','','0',''), ('84242','35238','1','12','$.connections','0',''), ('84243','35238','2','10','','0',''), ('84244','35239','1','12','$.discarded','0',''), ('84245','35239','2','10','','0',''), ('84246','35240','1','12','$.processing','0',''), ('84247','35241','1','12','$.received','0',''), ('84248','35241','2','10','','0',''), ('84249','35242','1','12','$.sent','0',''), ('84250','35242','2','10','','0',''), ('84251','35243','1','12','$.sessions.2xx','0',''), ('84252','35243','2','10','','0',''), ('84253','35244','1','12','$.sessions.4xx','0',''), ('84254','35244','2','10','','0',''), ('84255','35245','1','12','$.sessions.5xx','0',''), ('84256','35245','2','10','','0',''), ('84257','35246','1','12','$.sessions.total','0',''), ('84258','35246','2','10','','0',''), ('84259','35247','1','12','$.active','0',''), ('84260','35248','1','12','$.connections','0',''), ('84261','35249','1','12','$.connect_time','1',''), ('84262','35250','1','12','$.fails','0',''), ('84263','35250','2','10','','0',''), ('84264','35251','1','12','$.first_byte_time','1',''), ('84265','35252','1','12','$.health_checks.checks','0',''), ('84266','35253','1','12','$.health_checks.fails','0',''), ('84267','35254','1','12','$.health_checks.unhealthy','0',''), ('84268','35255','1','12','$.received','0',''), ('84269','35255','2','10','','0',''), ('84270','35256','1','12','$.response_time','1',''), ('84271','35257','1','12','$.sent','0',''), ('84272','35257','2','10','','0',''), ('84273','35258','1','12','$.state','0',''), ('84274','35258','2','20','3h','0',''), ('84275','35259','1','12','$.unavail','0',''), ('84276','35260','1','12','$.zombies','0',''), ('84277','35261','1','12','$.zone','0',''), ('84278','35261','2','20','3h','0',''), ('84279','35266','1','12','$.ActiveState.state','0',''), ('84280','35266','2','20','30m','0',''), ('84281','35267','1','12','$.LoadState.state','0',''), ('84282','35267','2','20','30m','0',''), ('84283','35268','1','12','$.UnitFileState.state','0',''), ('84284','35268','2','20','30m','0',''), ('84285','35269','1','21','data = JSON.parse(value); if (data.ActiveEnterTimestamp > data.ActiveExitTimestamp) { return Math.floor(Date.now() / 1000) - Number(data.ActiveEnterTimestamp) / 1000000; } return null;','0',''), ('84286','35270','1','12','$.NAccepted','0',''), ('84287','35270','2','10','','0',''), ('84288','35271','1','12','$.NConnections','0',''), ('84289','35273','1','20','1d','0',''), ('84290','35276','1','20','1d','0',''), ('84291','35278','1','12','$.data.process[''trigger housekeeper''].busy.avg','3','No "trigger housekeeper" processes started.'), ('84292','35279','1','12','$.data.process[''service manager''].busy.avg','3','No "service manager" processes started.'), ('84293','35280','1','21','var data = JSON.parse(value); for (var item, i = 0; item = data.data[i++];) { if (!(''{#JMXIGNITEINSTANCENAME}'' in item)) { Object.assign(item, { ''{#JMXIGNITEINSTANCENAME}'': ''null'' }); } } return JSON.stringify(data)','0',''), ('84294','35280','2','20','3h','0',''), ('84295','35281','1','21','var data = JSON.parse(value); for (var item, i = 0; item = data.data[i++];) { if (!(''{#JMXIGNITEINSTANCENAME}'' in item)) { Object.assign(item, { ''{#JMXIGNITEINSTANCENAME}'': ''null'' }); } } return JSON.stringify(data)','0',''), ('84296','35282','1','21','var data = JSON.parse(value); for (var item, i = 0; item = data.data[i++];) { if (!(''{#JMXIGNITEINSTANCENAME}'' in item)) { Object.assign(item, { ''{#JMXIGNITEINSTANCENAME}'': ''null'' }); } } return JSON.stringify(data)','0',''), ('84297','35283','1','21','var data = JSON.parse(value); for (var item, i = 0; item = data.data[i++];) { if (!(''{#JMXIGNITEINSTANCENAME}'' in item)) { Object.assign(item, { ''{#JMXIGNITEINSTANCENAME}'': ''null'' }); } } return JSON.stringify(data)','0',''), ('84298','35284','1','21','var data = JSON.parse(value); for (var item, i = 0; item = data.data[i++];) { if (!(''{#JMXIGNITEINSTANCENAME}'' in item)) { Object.assign(item, { ''{#JMXIGNITEINSTANCENAME}'': ''null'' }); } } return JSON.stringify(data)','0',''), ('84299','35285','1','21','var data = JSON.parse(value); for (var item, i = 0; item = data.data[i++];) { if (!(''{#JMXIGNITEINSTANCENAME}'' in item)) { Object.assign(item, { ''{#JMXIGNITEINSTANCENAME}'': ''null'' }); } } return JSON.stringify(data)','0',''), ('84300','35286','1','21','var data = JSON.parse(value); for (var item, i = 0; item = data.data[i++];) { if (!(''{#JMXIGNITEINSTANCENAME}'' in item)) { Object.assign(item, { ''{#JMXIGNITEINSTANCENAME}'': ''null'' }); } } return JSON.stringify(data)','0',''), ('84301','35287','1','21','var data = JSON.parse(value); for (var item, i = 0; item = data.data[i++];) { if (!(''{#JMXIGNITEINSTANCENAME}'' in item)) { Object.assign(item, { ''{#JMXIGNITEINSTANCENAME}'': ''null'' }); } } return JSON.stringify(data)','0',''), ('84302','35287','2','20','3h','0',''), ('84303','35288','1','21','var data = JSON.parse(value); for (var item, i = 0; item = data.data[i++];) { if (!(''{#JMXIGNITEINSTANCENAME}'' in item)) { Object.assign(item, { ''{#JMXIGNITEINSTANCENAME}'': ''null'' }); } } return JSON.stringify(data)','0',''), ('84304','35288','2','20','3h','0',''), ('84305','35289','1','21','var data = JSON.parse(value); for (var item, i = 0; item = data.data[i++];) { if (!(''{#JMXIGNITEINSTANCENAME}'' in item)) { Object.assign(item, { ''{#JMXIGNITEINSTANCENAME}'': ''null'' }); } } return JSON.stringify(data)','0',''), ('84306','35289','2','20','3h','0',''), ('84307','35308','1','10','','0',''), ('84308','35309','1','10','','0',''), ('84309','35310','1','10','','0',''), ('84310','35311','1','20','3h','0',''), ('84311','35312','1','20','3h','0',''), ('84312','35313','1','20','3h','0',''), ('84313','35314','1','20','3h','0',''), ('84314','35315','1','20','3h','0',''), ('84315','35316','1','5',E'(.*)-\\d+ \\1','0',''), ('84316','35316','2','20','3h','0',''), ('84317','35317','1','20','3h','0',''), ('84318','35318','1','1','0.001','0',''), ('84319','35320','1','10','','0',''), ('84320','35321','1','10','','0',''), ('84321','35322','1','10','','0',''), ('84322','35323','1','20','3h','0',''), ('84323','35328','1','10','','0',''), ('84324','35329','1','10','','0',''), ('84325','35330','1','10','','0',''), ('84326','35337','1','20','3h','0',''), ('84327','35349','1','10','','0',''), ('84328','35352','1','10','','0',''), ('84329','35353','1','10','','0',''), ('84330','35355','1','10','','0',''), ('84331','35356','1','10','','0',''), ('84332','35357','1','10','','0',''), ('84333','35358','1','20','6h','0',''), ('84334','35359','1','20','6h','0',''), ('84335','35360','1','20','6h','0',''), ('84336','35361','1','20','6h','0',''), ('84337','35362','1','1','0.01','0',''), ('84338','35363','1','20','1h','0',''), ('84339','35373','1','20','6h','0',''), ('84340','35374','1','20','6h','0',''), ('84341','35375','1','1','1000000','0',''), ('84342','35375','2','20','6h','0',''), ('84343','35376','1','10','','0',''), ('84344','35377','1','10','','0',''), ('84345','35378','1','1','8','0',''), ('84346','35378','2','10','','0',''), ('84347','35379','1','10','','0',''), ('84348','35380','1','13','0 100','1',''), ('84349','35380','2','21','return +parseFloat(value).toFixed(0);','0',''), ('84350','35381','1','20','6h','0',''), ('84351','35382','1','20','6h','0',''), ('84352','35383','1','10','','0',''), ('84353','35384','1','10','','0',''), ('84354','35385','1','1','8','0',''), ('84355','35385','2','10','','0',''), ('84356','35386','1','10','','0',''), ('84357','35387','1','13','0 100','1',''), ('84358','35387','2','21','return +parseFloat(value).toFixed(0);','0',''), ('84359','35388','1','20','6h','0',''), ('84360','35389','1','20','6h','0',''), ('84361','35390','1','20','6h','0',''), ('84362','35391','1','20','6h','0',''), ('84363','35392','1','20','6h','0',''), ('84364','35393','1','20','6h','0',''), ('84365','35394','1','20','6h','0',''), ('84366','35395','1','20','6h','0',''), ('84367','35396','1','20','6h','0',''), ('84368','35397','1','20','6h','0',''), ('84369','35398','1','20','6h','0',''), ('84370','35399','1','20','6h','0',''), ('84371','35400','1','20','6h','0',''), ('84372','35401','1','20','1h','0',''), ('84373','35402','1','20','6h','0',''), ('84374','35403','1','1','8','0',''), ('84375','35403','2','10','','0',''), ('84376','35404','1','1','8','0',''), ('84377','35404','2','10','','0',''), ('84378','35405','1','20','6h','0',''), ('84379','35406','1','20','6h','0',''), ('84380','35408','1','1','0.01','0',''), ('84381','35414','1','20','6h','0',''), ('84382','35415','1','20','6h','0',''), ('84383','35416','1','20','6h','0',''), ('84384','35417','1','20','6h','0',''), ('84385','35418','1','20','6h','0',''), ('84386','35419','1','20','6h','0',''), ('84387','35420','1','20','6h','0',''), ('84388','35421','1','20','6h','0',''), ('84389','35422','1','20','6h','0',''), ('84390','35423','1','20','1h','0',''), ('84391','35424','1','20','6h','0',''), ('84392','35425','1','20','6h','0',''), ('84394','35427','1','20','6h','0',''), ('84395','35428','1','20','6h','0',''), ('84396','35429','1','20','6h','0',''), ('84397','35430','1','20','6h','0',''), ('84398','35431','1','20','6h','0',''), ('84399','35432','1','20','6h','0',''), ('84400','35433','1','20','6h','0',''), ('84401','35434','1','20','6h','0',''), ('84402','35435','1','20','6h','0',''), ('84403','35436','1','20','6h','0',''), ('84404','35437','1','20','6h','0',''), ('84405','35438','1','20','6h','0',''), ('84406','35439','1','20','1h','0',''), ('84407','35440','1','20','1h','0',''), ('84408','35441','1','1','0.001','0',''), ('84409','35441','2','20','1h','0',''), ('84411','35443','1','20','1h','0',''), ('84412','35444','1','20','1h','0',''), ('84413','35445','1','20','1h','0',''), ('84414','35446','1','20','1h','0',''), ('84415','35474','1','20','1h','0',''), ('84416','35475','1','20','1h','0',''), ('84417','35476','1','20','1h','0',''), ('84423','35482','1','20','1h','0',''), ('84426','35485','1','20','1h','0',''), ('84427','35486','1','20','1h','0',''), ('84428','35487','1','20','1h','0',''), ('84429','35488','1','20','1h','0',''), ('84430','35489','1','20','1h','0',''), ('84431','35490','1','20','1h','0',''), ('84432','35491','1','20','1h','0',''), ('84433','35492','1','20','1h','0',''), ('84434','35493','1','10','','0',''), ('84435','35493','2','20','1h','0',''), ('84436','35494','1','20','1h','0',''), ('84437','35495','1','20','1h','0',''), ('84438','35496','1','10','','0',''), ('84439','35496','2','20','1h','0',''), ('84440','35497','1','10','','0',''), ('84441','35497','2','20','1h','0',''), ('84442','35498','1','10','','0',''), ('84443','35498','2','20','1h','0',''), ('84444','35499','1','10','','0',''), ('84445','35499','2','20','1h','0',''), ('84446','35500','1','20','1h','0',''), ('84447','35501','1','20','1h','0',''), ('84448','35502','1','10','','0',''), ('84449','35502','2','20','1h','0',''), ('84450','35503','1','10','','0',''), ('84451','35503','2','20','1h','0',''), ('84452','35504','1','10','','0',''), ('84453','35504','2','20','1h','0',''), ('84454','35505','1','20','1h','0',''), ('84455','35506','1','20','1h','0',''), ('84456','35507','1','10','','0',''), ('84457','35507','2','20','1h','0',''), ('84458','35508','1','10','','0',''), ('84459','35508','2','20','1h','0',''), ('84460','35509','1','10','','0',''), ('84461','35509','2','20','1h','0',''), ('84462','35510','1','10','','0',''), ('84463','35510','2','20','1h','0',''), ('84464','35511','1','20','1h','0',''), ('84465','35512','1','20','1h','0',''), ('84466','35513','1','20','1h','0',''), ('84467','35514','1','20','1h','0',''), ('84468','35515','1','10','','0',''), ('84469','35515','2','20','1h','0',''), ('84470','35516','1','10','','0',''), ('84471','35516','2','20','1h','0',''), ('84472','35517','1','10','','0',''), ('84473','35517','2','20','1h','0',''), ('84474','35518','1','10','','0',''), ('84475','35518','2','20','1h','0',''), ('84476','35519','1','20','1h','0',''), ('84477','35520','1','1','0.001','0',''), ('84478','35520','2','20','1h','0',''), ('84479','35521','1','20','1h','0',''), ('84480','35522','1','20','1h','0',''), ('84481','35523','1','10','','0',''), ('84482','35523','2','20','1h','0',''), ('84483','35524','1','10','','0',''), ('84484','35524','2','20','1h','0',''), ('84485','35525','1','10','','0',''), ('84486','35525','2','20','1h','0',''), ('84487','35526','1','10','','0',''), ('84488','35526','2','20','1h','0',''), ('84489','35527','1','20','1h','0',''), ('84490','35528','1','20','1h','0',''), ('84491','35529','1','20','1h','0',''), ('84492','35530','1','20','1h','0',''), ('84493','35531','1','20','1h','0',''), ('84494','35532','1','20','1h','0',''), ('84495','35533','1','20','6h','0',''), ('84496','35534','1','20','6h','0',''), ('84497','35535','1','20','6h','0',''), ('84498','35536','1','20','6h','0',''), ('84499','35537','1','20','6h','0',''), ('84500','35538','1','20','6h','0',''), ('84501','35539','1','20','6h','0',''), ('84502','35540','1','21','var valueArray = [ ''moduleNoDefect'', ''moduleOverHeat'', ''moduleFanRpmLow'', ''moduleVoltageLow'', ''moduleThermalSensorFailure'', ''modulePullOut'', ''powerDC48VAFailure'', ''powerDC48VBFailure'', ''extAlarmInputTrigger'', ''moduleDown'', ''mscSwitchOverOK'', ''networkTopologyChange'', ''macSpoof'', ''cpuHigh'', ''memoryUsageHigh'', ''packetBufferUsageHigh'', ''loopguardOccurence'' ]; var base2 = parseInt(value).toString(2); var outArray = []; for (var i = 0; i < base2.length; ++i) { if (base2[base2.length - 1 - i] === ''1'') outArray.push(valueArray[i]); } return outArray.join();','0',''), ('84503','35541','1','1','0.01','0',''), ('84504','35545','1','21','var inArray = JSON.parse(value); var outArr = [] inArray.forEach(function (item, i, arr) { item[''{#ZYXEL.SLOT.ID}''] = item[''{#SNMPINDEX}''].split(''.'')[1]; item[''{#ZYXEL.SENSOR.ID}''] = item[''{#SNMPINDEX}''].split(''.'')[2]; item["{#ZYXEL.VOLT.NOMINAL}"] = "+" + item["{#ZYXEL.VOLT.NOMINAL}"] / 1000 + "V"; item["{#ZYXEL.VOLT.THRESH.LOW}"] /= 1000; item["{#ZYXEL.VOLT.THRESH.HIGH}"] /= 1000; outArr.push(item) }); return JSON.stringify(outArr);','0',''), ('84505','35546','1','20','6h','0',''), ('84506','35547','1','1','0.1','0',''), ('84507','35547','2','20','1h','0',''), ('84508','35548','1','1','0.1','0',''), ('84509','35548','2','20','1h','0',''), ('84510','35549','1','1','0.1','0',''), ('84511','35549','2','20','1h','0',''), ('84512','35550','1','1','0.1','0',''), ('84513','35550','2','20','1h','0',''), ('84514','35551','1','1','0.1','0',''), ('84515','35551','2','20','1h','0',''), ('84516','35552','1','1','0.1','0',''), ('84517','35552','2','20','1h','0',''), ('84518','35553','1','1','8','0',''), ('84519','35553','2','10','','0',''), ('84520','35554','1','20','6h','0',''), ('84521','35555','1','20','6h','0',''), ('84522','35556','1','1','8','0',''), ('84523','35556','2','10','','0',''), ('84524','35557','1','20','6h','0',''), ('84525','35558','1','1','8','0',''), ('84526','35558','2','10','','0',''), ('84527','35559','1','20','6h','0',''), ('84528','35560','1','20','6h','0',''), ('84529','35561','1','1','8','0',''), ('84530','35561','2','10','','0',''), ('84531','35562','1','20','1h','0',''), ('84532','35563','1','1','0.001','0',''), ('84533','35563','2','20','1h','0',''), ('84534','35564','1','20','1h','0',''), ('84535','35565','1','20','6h','0',''), ('84536','35567','1','21','var inArray = JSON.parse(value); var tmpObj = {}; inArray.forEach(function(item, i, arr) { tmpObj[item["{#SNMPINDEX}"]] = item["{#SNMP.ARRAY}"] }); var strOut = ''V'' + tmpObj["1.0"] + ''.'' + tmpObj["2.0"] + ''('' + tmpObj["3.0"] + ''.'' + tmpObj["4.0"] + '')_'' + tmpObj["7.0"] + ''.'' + tmpObj["6.0"] + ''.'' + tmpObj["5.0"]; return strOut;','0',''), ('84537','35567','2','20','1d','0',''), ('84538','35568','1','20','6h','0',''), ('84539','35569','1','20','6h','0',''), ('84540','35570','1','20','6h','0',''), ('84541','35571','1','20','6h','0',''), ('84542','35572','1','20','6h','0',''), ('84543','35573','1','1','0.01','0',''), ('84544','35576','1','21','var inArray = JSON.parse(value); var nameMap = { ''Temperature'': ''°C'', ''Voltage'': ''V'', ''TxBias'': ''mA'', ''TxPower'': ''dbm'', ''RxPower'': ''dbm'' }; var outArr = []; inArray.forEach(function (item, i, arr) { item[''{#ZYXEL.SFP.PORT}''] = item[''{#SNMPINDEX}''].split(''.'')[0]; item[''{#ZYXEL.SFP.UNIT}''] = nameMap[item[''{#ZYXEL.SFP.DESCRIPTION}'']] === undefined ? "" : nameMap[item[''{#ZYXEL.SFP.DESCRIPTION}'']]; item[''{#ZYXEL.SFP.WARN.MAX}''] /= 100; item[''{#ZYXEL.SFP.WARN.MIN}''] /= 100; outArr.push(item) }); return JSON.stringify(outArr);','0',''), ('84545','35578','1','21','var inArray = JSON.parse(value); var nameMap = {"1":"MAC", "2":"CPU", "3":"PHY"}; var outArr = []; inArray.forEach(function(item, i, arr) { item["{#ZYXEL.TEMP.ID}"] = nameMap[item["{#SNMPINDEX}"]] outArr.push(item) }); return JSON.stringify(outArr);','0',''), ('84546','35579','1','21','var inArray = JSON.parse(value); var outArr = [] inArray.forEach(function(item, i, arr) { item["{#ZYXEL.VOLT.NOMINAL}"] = "+" + item["{#ZYXEL.VOLT.NOMINAL}"] / 1000 + "V"; item["{#ZYXEL.VOLT.THRESH.LOW}"] = item["{#ZYXEL.VOLT.THRESH.LOW}"] / 1000; outArr.push(item) }); return JSON.stringify(outArr);','0',''), ('84547','35580','1','20','1h','0',''), ('84548','35581','1','20','6h','0',''), ('84549','35582','1','20','6h','0',''), ('84550','35583','1','13','0 100','1',''), ('84551','35583','2','21','return +parseFloat(value).toFixed(0);','0',''), ('84552','35584','1','10','','0',''), ('84553','35585','1','1','8','0',''), ('84554','35585','2','10','','0',''), ('84555','35586','1','10','','0',''), ('84556','35587','1','10','','0',''), ('84557','35588','1','20','6h','0',''), ('84558','35589','1','20','6h','0',''), ('84559','35590','1','20','6h','0',''), ('84560','35591','1','13','0 100','1',''), ('84561','35591','2','21','return +parseFloat(value).toFixed(0);','0',''), ('84562','35592','1','10','','0',''), ('84563','35593','1','1','8','0',''), ('84564','35593','2','10','','0',''), ('84565','35594','1','10','','0',''), ('84566','35595','1','10','','0',''), ('84567','35596','1','1','1000000','0',''), ('84568','35596','2','20','6h','0',''), ('84569','35597','1','20','6h','0',''), ('84570','35598','1','1','0.01','0',''), ('84571','35598','2','20','6h','0',''), ('84572','35599','1','20','1h','0',''), ('84573','35600','1','20','1h','0',''), ('84574','35601','1','20','1h','0',''), ('84575','35602','1','20','1h','0',''), ('84576','35603','1','20','1h','0',''), ('84577','35604','1','20','1h','0',''), ('84578','35605','1','20','1h','0',''), ('84579','35606','1','20','1h','0',''), ('84580','35607','1','1','0.001','0',''), ('84581','35607','2','20','1h','0',''), ('84582','35608','1','20','1h','0',''), ('84583','35609','1','20','6h','0',''), ('84584','35611','1','21','var inArray = JSON.parse(value); var tmpObj = {}; inArray.forEach(function(item, i, arr) { tmpObj[item["{#SNMPINDEX}"]] = item["{#SNMP.ARRAY}"] }); var strOut = ''V'' + tmpObj["1.0"] + ''.'' + tmpObj["2.0"] + ''('' + tmpObj["3.0"] + ''.'' + tmpObj["4.0"] + '')_'' + tmpObj["7.0"] + ''.'' + tmpObj["6.0"] + ''.'' + tmpObj["5.0"]; return strOut;','0',''), ('84585','35611','2','20','1d','0',''), ('84586','35612','1','20','6h','0',''), ('84587','35613','1','20','6h','0',''), ('84588','35614','1','20','6h','0',''), ('84589','35615','1','20','6h','0',''), ('84590','35616','1','20','6h','0',''), ('84591','35617','1','1','0.01','0',''), ('84592','35620','1','21','var inArray = JSON.parse(value); var nameMap = {"1":"MAC", "2":"CPU", "3":"PHY"}; var outArr = []; inArray.forEach(function(item, i, arr) { item["{#ZYXEL.TEMP.ID}"] = nameMap[item["{#SNMPINDEX}"]] outArr.push(item) }); return JSON.stringify(outArr);','0',''), ('84593','35621','1','21','var inArray = JSON.parse(value); var outArr = [] inArray.forEach(function(item, i, arr) { item["{#ZYXEL.VOLT.NOMINAL}"] = "+" + item["{#ZYXEL.VOLT.NOMINAL}"] / 1000 + "V"; item["{#ZYXEL.VOLT.THRESH.LOW}"] = item["{#ZYXEL.VOLT.THRESH.LOW}"] / 1000; outArr.push(item) }); return JSON.stringify(outArr);','0',''), ('84594','35622','1','20','1h','0',''), ('84595','35623','1','20','6h','0',''), ('84596','35624','1','20','6h','0',''), ('84597','35625','1','13','0 100','1',''), ('84598','35625','2','21','return +parseFloat(value).toFixed(0);','0',''), ('84599','35626','1','10','','0',''), ('84600','35627','1','1','8','0',''), ('84601','35627','2','10','','0',''), ('84602','35628','1','10','','0',''), ('84603','35629','1','10','','0',''), ('84604','35630','1','20','6h','0',''), ('84605','35631','1','20','6h','0',''), ('84606','35632','1','20','6h','0',''), ('84607','35633','1','13','0 100','1',''), ('84608','35633','2','21','return +parseFloat(value).toFixed(0);','0',''), ('84609','35634','1','10','','0',''), ('84610','35635','1','1','8','0',''), ('84611','35635','2','10','','0',''), ('84612','35636','1','10','','0',''), ('84613','35637','1','10','','0',''), ('84614','35638','1','1','1000000','0',''), ('84615','35638','2','20','6h','0',''), ('84616','35639','1','20','6h','0',''), ('84617','35640','1','20','1h','0',''), ('84618','35641','1','1','0.001','0',''), ('84619','35641','2','20','1h','0',''), ('84620','35642','1','20','1h','0',''), ('84621','35643','1','20','6h','0',''), ('84622','35644','1','20','6h','0',''), ('84623','35645','1','20','6h','0',''), ('84624','35646','1','20','6h','0',''), ('84625','35647','1','20','6h','0',''), ('84626','35648','1','1','0.01','0',''), ('84627','35649','1','21','var inArray = JSON.parse(value); var outArr = [] inArray.forEach(function (item, i, arr) { item[''{#ZYXEL.SLOT.ID}''] = item[''{#SNMPINDEX}''].split(''.'')[1]; item[''{#ZYXEL.SENSOR.ID}''] = item[''{#SNMPINDEX}''].split(''.'')[2]; outArr.push(item) }); return JSON.stringify(outArr);','0',''), ('84628','35650','1','21','var inArray = JSON.parse(value); var outArr = [] inArray.forEach(function (item, i, arr) { item[''{#ZYXEL.SLOT.ID}''] = item[''{#SNMPINDEX}''].split(''.'')[1]; item[''{#ZYXEL.SENSOR.ID}''] = item[''{#SNMPINDEX}''].split(''.'')[2]; outArr.push(item) }); return JSON.stringify(outArr);','0',''), ('84629','35652','1','21','var inArray = JSON.parse(value); var outArr = [] inArray.forEach(function (item, i, arr) { item[''{#ZYXEL.SLOT.ID}''] = item[''{#SNMPINDEX}''].split(''.'')[1]; item[''{#ZYXEL.SENSOR.ID}''] = item[''{#SNMPINDEX}''].split(''.'')[2]; outArr.push(item) }); return JSON.stringify(outArr);','0',''), ('84630','35653','1','21','var inArray = JSON.parse(value); var outArr = [] inArray.forEach(function (item, i, arr) { item[''{#ZYXEL.SLOT.ID}''] = Math.floor(item[''{#SNMPINDEX}''] / 100); item[''{#ZYXEL.PORTID}''] = item[''{#SNMPINDEX}''] % 100; outArr.push(item) }); return JSON.stringify(outArr);','0',''), ('84631','35656','1','21','var inArray = JSON.parse(value); var outArr = []; inArray.forEach(function (item, i, arr) { item[''{#ZYXEL.SLOT.ID}''] = item[''{#SNMPINDEX}''].split(''.'')[1]; item[''{#ZYXEL.TEMP.ID}''] = item[''{#SNMPINDEX}''].split(''.'')[2]; outArr.push(item); }); return JSON.stringify(outArr);','0',''), ('84632','35657','1','21','var inArray = JSON.parse(value); var outArr = [] inArray.forEach(function (item, i, arr) { item[''{#ZYXEL.SLOT.ID}''] = item[''{#SNMPINDEX}''].split(''.'')[1]; item[''{#ZYXEL.SENSOR.ID}''] = item[''{#SNMPINDEX}''].split(''.'')[2]; item["{#ZYXEL.VOLT.NOMINAL}"] = "+" + item["{#ZYXEL.VOLT.NOMINAL}"] / 1000 + "V"; item["{#ZYXEL.VOLT.THRESH.LOW}"] /= 1000; item["{#ZYXEL.VOLT.THRESH.HIGH}"] /= 1000; outArr.push(item) }); return JSON.stringify(outArr);','0',''), ('84633','35658','1','20','1h','0',''), ('84634','35659','1','20','1h','0',''), ('84635','35660','1','20','1h','0',''), ('84636','35661','1','20','1h','0',''), ('84637','35662','1','20','6h','0',''), ('84638','35663','1','1','8','0',''), ('84639','35663','2','10','','0',''), ('84640','35664','1','1','8','0',''), ('84641','35664','2','10','','0',''), ('84642','35665','1','10','','0',''), ('84643','35666','1','10','','0',''), ('84644','35667','1','20','6h','0',''), ('84645','35668','1','20','6h','0',''), ('84646','35669','1','10','','0',''), ('84647','35670','1','10','','0',''), ('84648','35671','1','1','0.1','0',''), ('84649','35671','2','20','1h','0',''), ('84650','35672','1','10','','0',''), ('84651','35673','1','20','6h','0',''), ('84652','35674','1','1','0.1','0',''), ('84653','35674','2','20','1h','0',''), ('84654','35675','1','1','0.1','0',''), ('84655','35675','2','20','1h','0',''), ('84656','35676','1','1','0.1','0',''), ('84657','35676','2','20','1h','0',''), ('84658','35677','1','1','0.1','0',''), ('84659','35677','2','20','1h','0',''), ('84660','35678','1','1','0.1','0',''), ('84661','35678','2','20','1h','0',''), ('84662','35679','1','10','','0',''), ('84663','35680','1','20','6h','0',''), ('84664','35681','1','20','6h','0',''), ('84665','35682','1','1','1000000','0',''), ('84666','35682','2','20','6h','0',''), ('84667','35683','1','10','','0',''), ('84668','35684','1','10','','0',''), ('84669','35685','1','1','8','0',''), ('84670','35685','2','10','','0',''), ('84671','35686','1','10','','0',''), ('84672','35687','1','13','0 100','1',''), ('84673','35687','2','21','return +parseFloat(value).toFixed(0);','0',''), ('84674','35688','1','20','6h','0',''), ('84675','35689','1','20','6h','0',''), ('84676','35690','1','10','','0',''), ('84677','35691','1','10','','0',''), ('84678','35692','1','1','8','0',''), ('84679','35692','2','10','','0',''), ('84680','35693','1','10','','0',''), ('84681','35694','1','13','0 100','1',''), ('84682','35694','2','21','return +parseFloat(value).toFixed(0);','0',''), ('84683','35695','1','21','var valueArray = [ ''moduleNoDefect'', ''moduleOverHeat'', ''moduleFanRpmLow'', ''moduleVoltageLow'', ''moduleThermalSensorFailure'', ''modulePullOut'', ''powerDC48VAFailure'', ''powerDC48VBFailure'', ''extAlarmInputTrigger'', ''moduleDown'', ''mscSwitchOverOK'', ''networkTopologyChange'', ''macSpoof'', ''cpuHigh'', ''memoryUsageHigh'', ''packetBufferUsageHigh'', ''loopguardOccurence'' ]; var base2 = parseInt(value).toString(2); var outArray = []; for (var i = 0; i < base2.length; ++i) { if (base2[base2.length - 1 - i] === ''1'') outArray.push(valueArray[i]); } return outArray.join();','0',''), ('84684','35696','1','20','6h','0',''), ('84685','35697','1','20','6h','0',''), ('84686','35698','1','20','6h','0',''), ('84687','35699','1','20','6h','0',''), ('84688','35700','1','20','6h','0',''), ('84689','35701','1','20','6h','0',''), ('84690','35702','1','20','6h','0',''), ('84691','35703','1','20','6h','0',''), ('84692','35704','1','20','6h','0',''), ('84693','35705','1','20','6h','0',''), ('84694','35707','1','20','1h','0',''), ('84695','35708','1','1','0.001','0',''), ('84696','35708','2','20','1h','0',''), ('84697','35709','1','20','1h','0',''), ('84698','35710','1','20','6h','0',''), ('84699','35711','1','20','6h','0',''), ('84700','35712','1','20','6h','0',''), ('84701','35713','1','20','6h','0',''), ('84702','35714','1','20','6h','0',''), ('84703','35715','1','1','0.01','0',''), ('84704','35716','1','21','var inArray = JSON.parse(value); var outArr = [] inArray.forEach(function (item, i, arr) { item[''{#ZYXEL.SLOT.ID}''] = item[''{#SNMPINDEX}''].split(''.'')[1]; item[''{#ZYXEL.SENSOR.ID}''] = item[''{#SNMPINDEX}''].split(''.'')[2]; outArr.push(item) }); return JSON.stringify(outArr);','0',''), ('84705','35717','1','21','var inArray = JSON.parse(value); var outArr = [] inArray.forEach(function (item, i, arr) { item[''{#ZYXEL.SLOT.ID}''] = item[''{#SNMPINDEX}''].split(''.'')[1]; item[''{#ZYXEL.SENSOR.ID}''] = item[''{#SNMPINDEX}''].split(''.'')[2]; outArr.push(item) }); return JSON.stringify(outArr);','0',''), ('84706','35719','1','21','var inArray = JSON.parse(value); var outArr = [] inArray.forEach(function (item, i, arr) { item[''{#ZYXEL.SLOT.ID}''] = item[''{#SNMPINDEX}''].split(''.'')[1]; item[''{#ZYXEL.SENSOR.ID}''] = item[''{#SNMPINDEX}''].split(''.'')[2]; outArr.push(item) }); return JSON.stringify(outArr);','0',''), ('84707','35720','1','21','var inArray = JSON.parse(value); var outArr = [] inArray.forEach(function (item, i, arr) { item[''{#ZYXEL.SLOT.ID}''] = Math.floor(item[''{#SNMPINDEX}''] / 100); item[''{#ZYXEL.PORTID}''] = item[''{#SNMPINDEX}''] % 100; outArr.push(item) }); return JSON.stringify(outArr);','0',''), ('84708','35723','1','21','var inArray = JSON.parse(value); var outArr = []; inArray.forEach(function (item, i, arr) { item[''{#ZYXEL.SLOT.ID}''] = item[''{#SNMPINDEX}''].split(''.'')[1]; item[''{#ZYXEL.TEMP.ID}''] = item[''{#SNMPINDEX}''].split(''.'')[2]; outArr.push(item); }); return JSON.stringify(outArr);','0',''), ('84709','35724','1','21','var inArray = JSON.parse(value); var outArr = [] inArray.forEach(function (item, i, arr) { item[''{#ZYXEL.SLOT.ID}''] = item[''{#SNMPINDEX}''].split(''.'')[1]; item[''{#ZYXEL.SENSOR.ID}''] = item[''{#SNMPINDEX}''].split(''.'')[2]; item["{#ZYXEL.VOLT.NOMINAL}"] = "+" + item["{#ZYXEL.VOLT.NOMINAL}"] / 1000 + "V"; item["{#ZYXEL.VOLT.THRESH.LOW}"] /= 1000; item["{#ZYXEL.VOLT.THRESH.HIGH}"] /= 1000; outArr.push(item) }); return JSON.stringify(outArr);','0',''), ('84710','35725','1','20','1h','0',''), ('84711','35726','1','20','1h','0',''), ('84712','35727','1','20','1h','0',''), ('84713','35728','1','20','1h','0',''), ('84714','35729','1','20','6h','0',''), ('84715','35730','1','1','8','0',''), ('84716','35730','2','10','','0',''), ('84717','35731','1','1','8','0',''), ('84718','35731','2','10','','0',''), ('84719','35732','1','10','','0',''), ('84720','35733','1','10','','0',''), ('84721','35734','1','20','6h','0',''), ('84722','35735','1','20','6h','0',''), ('84723','35736','1','10','','0',''), ('84724','35737','1','10','','0',''), ('84725','35738','1','1','0.1','0',''), ('84726','35738','2','20','1h','0',''), ('84727','35739','1','10','','0',''), ('84728','35740','1','20','6h','0',''), ('84729','35741','1','1','0.1','0',''), ('84730','35741','2','20','1h','0',''), ('84731','35742','1','1','0.1','0',''), ('84732','35742','2','20','1h','0',''), ('84733','35743','1','1','0.1','0',''), ('84734','35743','2','20','1h','0',''), ('84735','35744','1','1','0.1','0',''), ('84736','35744','2','20','1h','0',''), ('84737','35745','1','1','0.1','0',''), ('84738','35745','2','20','1h','0',''), ('84739','35746','1','10','','0',''), ('84740','35747','1','20','6h','0',''), ('84741','35748','1','20','6h','0',''), ('84742','35749','1','1','1000000','0',''), ('84743','35749','2','20','6h','0',''), ('84744','35750','1','10','','0',''), ('84745','35751','1','10','','0',''), ('84746','35752','1','1','8','0',''), ('84747','35752','2','10','','0',''), ('84748','35753','1','10','','0',''), ('84749','35754','1','13','0 100','1',''), ('84750','35754','2','21','return +parseFloat(value).toFixed(0);','0',''), ('84751','35755','1','20','6h','0',''), ('84752','35756','1','20','6h','0',''), ('84753','35757','1','10','','0',''), ('84754','35758','1','10','','0',''), ('84755','35759','1','1','8','0',''), ('84756','35759','2','10','','0',''), ('84757','35760','1','10','','0',''), ('84758','35761','1','13','0 100','1',''), ('84759','35761','2','21','return +parseFloat(value).toFixed(0);','0',''), ('84760','35762','1','21','var valueArray = [ ''moduleNoDefect'', ''moduleOverHeat'', ''moduleFanRpmLow'', ''moduleVoltageLow'', ''moduleThermalSensorFailure'', ''modulePullOut'', ''powerDC48VAFailure'', ''powerDC48VBFailure'', ''extAlarmInputTrigger'', ''moduleDown'', ''mscSwitchOverOK'', ''networkTopologyChange'', ''macSpoof'', ''cpuHigh'', ''memoryUsageHigh'', ''packetBufferUsageHigh'', ''loopguardOccurence'' ]; var base2 = parseInt(value).toString(2); var outArray = []; for (var i = 0; i < base2.length; ++i) { if (base2[base2.length - 1 - i] === ''1'') outArray.push(valueArray[i]); } return outArray.join();','0',''), ('84761','35763','1','20','6h','0',''), ('84762','35764','1','20','6h','0',''), ('84763','35765','1','20','6h','0',''), ('84764','35766','1','20','6h','0',''), ('84765','35767','1','20','6h','0',''), ('84766','35768','1','20','6h','0',''), ('84767','35769','1','20','6h','0',''), ('84768','35770','1','20','6h','0',''), ('84769','35771','1','20','6h','0',''), ('84770','35772','1','20','6h','0',''), ('84771','35774','1','20','1h','0',''), ('84772','35775','1','1','0.001','0',''), ('84773','35775','2','20','1h','0',''), ('84774','35776','1','20','1h','0',''), ('84775','35777','1','20','6h','0',''), ('84776','35778','1','20','6h','0',''), ('84777','35779','1','20','6h','0',''), ('84778','35780','1','20','6h','0',''), ('84779','35781','1','20','6h','0',''), ('84780','35782','1','20','6h','0',''), ('84781','35783','1','20','6h','0',''), ('84782','35784','1','21','var valueArray = [ ''moduleNoDefect'', ''moduleOverHeat'', ''moduleFanRpmLow'', ''moduleVoltageLow'', ''moduleThermalSensorFailure'', ''modulePullOut'', ''powerDC48VAFailure'', ''powerDC48VBFailure'', ''extAlarmInputTrigger'', ''moduleDown'', ''mscSwitchOverOK'', ''networkTopologyChange'', ''macSpoof'', ''cpuHigh'', ''memoryUsageHigh'', ''packetBufferUsageHigh'', ''loopguardOccurence'' ]; var base2 = parseInt(value).toString(2); var outArray = []; for (var i = 0; i < base2.length; ++i) { if (base2[base2.length - 1 - i] === ''1'') outArray.push(valueArray[i]); } return outArray.join();','0',''), ('84783','35785','1','1','0.01','0',''), ('84784','35790','1','21','var inArray = JSON.parse(value); var outArr = [] inArray.forEach(function (item, i, arr) { item[''{#ZYXEL.SLOT.ID}''] = item[''{#SNMPINDEX}''].split(''.'')[1]; item[''{#ZYXEL.SENSOR.ID}''] = item[''{#SNMPINDEX}''].split(''.'')[2]; item["{#ZYXEL.VOLT.NOMINAL}"] = "+" + item["{#ZYXEL.VOLT.NOMINAL}"] / 1000 + "V"; item["{#ZYXEL.VOLT.THRESH.LOW}"] /= 1000; item["{#ZYXEL.VOLT.THRESH.HIGH}"] /= 1000; outArr.push(item) }); return JSON.stringify(outArr);','0',''), ('84785','35791','1','20','1h','0',''), ('84786','35792','1','20','6h','0',''), ('84787','35793','1','1','0.1','0',''), ('84788','35793','2','20','1h','0',''), ('84789','35794','1','1','0.1','0',''), ('84790','35794','2','20','1h','0',''), ('84791','35795','1','1','0.1','0',''), ('84792','35795','2','20','1h','0',''), ('84793','35796','1','1','0.1','0',''), ('84794','35796','2','20','1h','0',''), ('84795','35797','1','1','0.1','0',''), ('84796','35797','2','20','1h','0',''), ('84797','35798','1','1','0.1','0',''), ('84798','35798','2','20','1h','0',''), ('84799','35799','1','1','8','0',''), ('84800','35799','2','10','','0',''), ('84801','35800','1','20','6h','0',''), ('84802','35801','1','20','6h','0',''), ('84803','35802','1','1','8','0',''), ('84804','35802','2','10','','0',''), ('84805','35803','1','20','6h','0',''), ('84806','35804','1','1','8','0',''), ('84807','35804','2','10','','0',''), ('84808','35805','1','20','6h','0',''), ('84809','35806','1','20','6h','0',''), ('84810','35807','1','1','8','0',''), ('84811','35807','2','10','','0',''), ('84812','35808','1','20','1h','0',''), ('84813','35809','1','1','0.001','0',''), ('84814','35809','2','20','1h','0',''), ('84815','35810','1','20','1h','0',''), ('84816','35811','1','20','6h','0',''), ('84817','35813','1','21','var inArray = JSON.parse(value); var tmpObj = {}; inArray.forEach(function(item, i, arr) { tmpObj[item["{#SNMPINDEX}"]] = item["{#SNMP.ARRAY}"] }); var strOut = ''V'' + tmpObj["1.0"] + ''.'' + tmpObj["2.0"] + ''('' + tmpObj["3.0"] + ''.'' + tmpObj["4.0"] + '')_'' + tmpObj["7.0"] + ''.'' + tmpObj["6.0"] + ''.'' + tmpObj["5.0"]; return strOut;','0',''), ('84818','35813','2','20','1d','0',''), ('84819','35814','1','20','6h','0',''), ('84820','35815','1','20','6h','0',''), ('84821','35816','1','20','6h','0',''), ('84822','35817','1','20','6h','0',''), ('84823','35818','1','20','6h','0',''), ('84824','35819','1','1','0.01','0',''), ('84825','35821','1','21','var inArray = JSON.parse(value); var nameMap = { ''Temperature'': ''°C'', ''Voltage'': ''V'', ''TxBias'': ''mA'', ''TxPower'': ''dbm'', ''RxPower'': ''dbm'' }; var outArr = []; inArray.forEach(function (item, i, arr) { item[''{#ZYXEL.SFP.PORT}''] = item[''{#SNMPINDEX}''].split(''.'')[0]; item[''{#ZYXEL.SFP.UNIT}''] = nameMap[item[''{#ZYXEL.SFP.DESCRIPTION}'']] === undefined ? "" : nameMap[item[''{#ZYXEL.SFP.DESCRIPTION}'']]; item[''{#ZYXEL.SFP.WARN.MAX}''] /= 100; item[''{#ZYXEL.SFP.WARN.MIN}''] /= 100; outArr.push(item) }); return JSON.stringify(outArr);','0',''), ('84826','35823','1','20','6h','0',''), ('84827','35824','1','20','6h','0',''), ('84828','35825','1','13','0 100','1',''), ('84829','35825','2','21','return +parseFloat(value).toFixed(0);','0',''), ('84830','35826','1','10','','0',''), ('84831','35827','1','1','8','0',''), ('84832','35827','2','10','','0',''), ('84833','35828','1','10','','0',''), ('84834','35829','1','10','','0',''), ('84835','35830','1','20','6h','0',''), ('84836','35831','1','20','6h','0',''), ('84837','35832','1','20','6h','0',''), ('84838','35833','1','13','0 100','1',''), ('84839','35833','2','21','return +parseFloat(value).toFixed(0);','0',''), ('84840','35834','1','10','','0',''), ('84841','35835','1','1','8','0',''), ('84842','35835','2','10','','0',''), ('84843','35836','1','10','','0',''), ('84844','35837','1','10','','0',''), ('84845','35838','1','1','1000000','0',''), ('84846','35838','2','20','6h','0',''), ('84847','35839','1','20','6h','0',''), ('84848','35840','1','1','0.01','0',''), ('84849','35840','2','20','6h','0',''), ('84850','35841','1','20','1h','0',''), ('84851','35842','1','20','1h','0',''), ('84852','35843','1','20','1h','0',''), ('84853','35844','1','20','1h','0',''), ('84854','35845','1','20','1h','0',''), ('84855','35846','1','20','1h','0',''), ('84856','35847','1','20','1h','0',''), ('84857','35848','1','20','1h','0',''), ('84858','35849','1','20','6h','0',''), ('84859','35851','1','21','var inArray = JSON.parse(value); var tmpObj = {}; inArray.forEach(function(item, i, arr) { tmpObj[item["{#SNMPINDEX}"]] = item["{#SNMP.ARRAY}"] }); var strOut = ''V'' + tmpObj["1.0"] + ''.'' + tmpObj["2.0"] + ''('' + tmpObj["3.0"] + ''.'' + tmpObj["4.0"] + '')_'' + tmpObj["7.0"] + ''.'' + tmpObj["6.0"] + ''.'' + tmpObj["5.0"]; return strOut;','0',''), ('84860','35851','2','20','1d','0',''), ('84861','35852','1','20','6h','0',''), ('84862','35853','1','20','6h','0',''), ('84863','35854','1','20','6h','0',''), ('84864','35855','1','20','6h','0',''), ('84865','35856','1','20','6h','0',''), ('84866','35857','1','1','0.01','0',''), ('84867','35860','1','21','var inArray = JSON.parse(value); var nameMap = { ''Temperature'': ''°C'', ''Voltage'': ''V'', ''TxBias'': ''mA'', ''TxPower'': ''dbm'', ''RxPower'': ''dbm'' }; var outArr = []; inArray.forEach(function (item, i, arr) { item[''{#ZYXEL.SFP.PORT}''] = item[''{#SNMPINDEX}''].split(''.'')[0]; item[''{#ZYXEL.SFP.UNIT}''] = nameMap[item[''{#ZYXEL.SFP.DESCRIPTION}'']] === undefined ? "" : nameMap[item[''{#ZYXEL.SFP.DESCRIPTION}'']]; item[''{#ZYXEL.SFP.WARN.MAX}''] /= 100; item[''{#ZYXEL.SFP.WARN.MIN}''] /= 100; outArr.push(item) }); return JSON.stringify(outArr);','0',''), ('84868','35862','1','21','var inArray = JSON.parse(value); var nameMap = {"1":"MAC", "2":"CPU", "3":"PHY"}; var outArr = []; inArray.forEach(function(item, i, arr) { item["{#ZYXEL.TEMP.ID}"] = nameMap[item["{#SNMPINDEX}"]] outArr.push(item) }); return JSON.stringify(outArr);','0',''), ('84869','35863','1','21','var inArray = JSON.parse(value); var outArr = [] inArray.forEach(function(item, i, arr) { item["{#ZYXEL.VOLT.NOMINAL}"] = "+" + item["{#ZYXEL.VOLT.NOMINAL}"] / 1000 + "V"; item["{#ZYXEL.VOLT.THRESH.LOW}"] = item["{#ZYXEL.VOLT.THRESH.LOW}"] / 1000; outArr.push(item) }); return JSON.stringify(outArr);','0',''), ('84870','35864','1','20','1h','0',''), ('84871','35865','1','20','6h','0',''), ('84872','35866','1','20','6h','0',''), ('84873','35867','1','13','0 100','1',''), ('84874','35867','2','21','return +parseFloat(value).toFixed(0);','0',''), ('84875','35868','1','10','','0',''), ('84876','35869','1','1','8','0',''), ('84877','35869','2','10','','0',''), ('84878','35870','1','10','','0',''), ('84879','35871','1','10','','0',''), ('84880','35872','1','20','6h','0',''), ('84881','35873','1','20','6h','0',''), ('84882','35874','1','20','6h','0',''), ('84883','35875','1','13','0 100','1',''), ('84884','35875','2','21','return +parseFloat(value).toFixed(0);','0',''), ('84885','35876','1','10','','0',''), ('84886','35877','1','1','8','0',''), ('84887','35877','2','10','','0',''), ('84888','35878','1','10','','0',''), ('84889','35879','1','10','','0',''), ('84890','35880','1','1','1000000','0',''), ('84891','35880','2','20','6h','0',''), ('84892','35881','1','20','6h','0',''), ('84893','35882','1','1','0.01','0',''), ('84894','35882','2','20','6h','0',''), ('84895','35883','1','20','1h','0',''), ('84896','35884','1','20','1h','0',''), ('84897','35885','1','20','1h','0',''), ('84898','35886','1','20','1h','0',''), ('84899','35887','1','20','1h','0',''), ('84900','35888','1','20','1h','0',''), ('84901','35889','1','20','1h','0',''), ('84902','35890','1','20','1h','0',''), ('84903','35891','1','1','0.001','0',''), ('84904','35891','2','20','1h','0',''), ('84905','35892','1','20','1h','0',''), ('84906','35893','1','20','6h','0',''), ('84907','35895','1','21','var inArray = JSON.parse(value); var tmpObj = {}; inArray.forEach(function(item, i, arr) { tmpObj[item["{#SNMPINDEX}"]] = item["{#SNMP.ARRAY}"] }); var strOut = ''V'' + tmpObj["1.0"] + ''.'' + tmpObj["2.0"] + ''('' + tmpObj["3.0"] + ''.'' + tmpObj["4.0"] + '')_'' + tmpObj["7.0"] + ''.'' + tmpObj["6.0"] + ''.'' + tmpObj["5.0"]; return strOut;','0',''), ('84908','35895','2','20','1d','0',''), ('84909','35896','1','20','6h','0',''), ('84910','35897','1','20','6h','0',''), ('84911','35898','1','20','6h','0',''), ('84912','35899','1','20','6h','0',''), ('84913','35900','1','20','6h','0',''), ('84914','35901','1','1','0.01','0',''), ('84915','35904','1','21','var inArray = JSON.parse(value); var nameMap = { ''Temperature'': ''°C'', ''Voltage'': ''V'', ''TxBias'': ''mA'', ''TxPower'': ''dbm'', ''RxPower'': ''dbm'' }; var outArr = []; inArray.forEach(function (item, i, arr) { item[''{#ZYXEL.SFP.PORT}''] = item[''{#SNMPINDEX}''].split(''.'')[0]; item[''{#ZYXEL.SFP.UNIT}''] = nameMap[item[''{#ZYXEL.SFP.DESCRIPTION}'']] === undefined ? "" : nameMap[item[''{#ZYXEL.SFP.DESCRIPTION}'']]; item[''{#ZYXEL.SFP.WARN.MAX}''] /= 100; item[''{#ZYXEL.SFP.WARN.MIN}''] /= 100; outArr.push(item) }); return JSON.stringify(outArr);','0',''), ('84916','35906','1','21','var inArray = JSON.parse(value); var nameMap = {"1":"MAC", "2":"CPU", "3":"PHY"}; var outArr = []; inArray.forEach(function(item, i, arr) { item["{#ZYXEL.TEMP.ID}"] = nameMap[item["{#SNMPINDEX}"]] outArr.push(item) }); return JSON.stringify(outArr);','0',''), ('84917','35907','1','21','var inArray = JSON.parse(value); var outArr = [] inArray.forEach(function(item, i, arr) { item["{#ZYXEL.VOLT.NOMINAL}"] = "+" + item["{#ZYXEL.VOLT.NOMINAL}"] / 1000 + "V"; item["{#ZYXEL.VOLT.THRESH.LOW}"] = item["{#ZYXEL.VOLT.THRESH.LOW}"] / 1000; outArr.push(item) }); return JSON.stringify(outArr);','0',''), ('84918','35908','1','20','1h','0',''), ('84919','35909','1','20','6h','0',''), ('84920','35910','1','20','6h','0',''), ('84921','35911','1','13','0 100','1',''), ('84922','35911','2','21','return +parseFloat(value).toFixed(0);','0',''), ('84923','35912','1','10','','0',''), ('84924','35913','1','1','8','0',''), ('84925','35913','2','10','','0',''), ('84926','35914','1','10','','0',''), ('84927','35915','1','10','','0',''), ('84928','35916','1','20','6h','0',''), ('84929','35917','1','20','6h','0',''), ('84930','35918','1','20','6h','0',''), ('84931','35919','1','13','0 100','1',''), ('84932','35919','2','21','return +parseFloat(value).toFixed(0);','0',''), ('84933','35920','1','10','','0',''), ('84934','35921','1','1','8','0',''), ('84935','35921','2','10','','0',''), ('84936','35922','1','10','','0',''), ('84937','35923','1','10','','0',''), ('84938','35924','1','1','1000000','0',''), ('84939','35924','2','20','6h','0',''), ('84940','35925','1','20','6h','0',''), ('84941','35926','1','1','0.01','0',''), ('84942','35926','2','20','6h','0',''), ('84943','35927','1','20','1h','0',''), ('84944','35928','1','20','1h','0',''), ('84945','35929','1','20','1h','0',''), ('84946','35930','1','20','1h','0',''), ('84947','35931','1','20','1h','0',''), ('84948','35932','1','20','1h','0',''), ('84949','35933','1','20','1h','0',''), ('84950','35934','1','20','1h','0',''), ('84951','35935','1','1','0.001','0',''), ('84952','35935','2','20','1h','0',''), ('84953','35936','1','20','1h','0',''), ('84954','35937','1','20','6h','0',''), ('84955','35939','1','21','var inArray = JSON.parse(value); var tmpObj = {}; inArray.forEach(function(item, i, arr) { tmpObj[item["{#SNMPINDEX}"]] = item["{#SNMP.ARRAY}"] }); var strOut = ''V'' + tmpObj["1.0"] + ''.'' + tmpObj["2.0"] + ''('' + tmpObj["3.0"] + ''.'' + tmpObj["4.0"] + '')_'' + tmpObj["7.0"] + ''.'' + tmpObj["6.0"] + ''.'' + tmpObj["5.0"]; return strOut;','0',''), ('84956','35939','2','20','1d','0',''), ('84957','35940','1','20','6h','0',''), ('84958','35941','1','20','6h','0',''), ('84959','35942','1','20','6h','0',''), ('84960','35943','1','20','6h','0',''), ('84961','35944','1','20','6h','0',''), ('84962','35945','1','1','0.01','0',''), ('84963','35948','1','21','var inArray = JSON.parse(value); var nameMap = { ''Temperature'': ''°C'', ''Voltage'': ''V'', ''TxBias'': ''mA'', ''TxPower'': ''dbm'', ''RxPower'': ''dbm'' }; var outArr = []; inArray.forEach(function (item, i, arr) { item[''{#ZYXEL.SFP.PORT}''] = item[''{#SNMPINDEX}''].split(''.'')[0]; item[''{#ZYXEL.SFP.UNIT}''] = nameMap[item[''{#ZYXEL.SFP.DESCRIPTION}'']] === undefined ? "" : nameMap[item[''{#ZYXEL.SFP.DESCRIPTION}'']]; item[''{#ZYXEL.SFP.WARN.MAX}''] /= 100; item[''{#ZYXEL.SFP.WARN.MIN}''] /= 100; outArr.push(item) }); return JSON.stringify(outArr);','0',''), ('84964','35950','1','21','var inArray = JSON.parse(value); var nameMap = {"1":"MAC", "2":"CPU", "3":"PHY"}; var outArr = []; inArray.forEach(function(item, i, arr) { item["{#ZYXEL.TEMP.ID}"] = nameMap[item["{#SNMPINDEX}"]] outArr.push(item) }); return JSON.stringify(outArr);','0',''), ('84965','35951','1','21','var inArray = JSON.parse(value); var outArr = [] inArray.forEach(function(item, i, arr) { item["{#ZYXEL.VOLT.NOMINAL}"] = "+" + item["{#ZYXEL.VOLT.NOMINAL}"] / 1000 + "V"; item["{#ZYXEL.VOLT.THRESH.LOW}"] = item["{#ZYXEL.VOLT.THRESH.LOW}"] / 1000; outArr.push(item) }); return JSON.stringify(outArr);','0',''), ('84966','35952','1','20','1h','0',''), ('84967','35953','1','20','6h','0',''), ('84968','35954','1','20','6h','0',''), ('84969','35955','1','13','0 100','1',''), ('84970','35955','2','21','return +parseFloat(value).toFixed(0);','0',''), ('84971','35956','1','10','','0',''), ('84972','35957','1','1','8','0',''), ('84973','35957','2','10','','0',''), ('84974','35958','1','10','','0',''), ('84975','35959','1','10','','0',''), ('84976','35960','1','20','6h','0',''), ('84977','35961','1','20','6h','0',''), ('84978','35962','1','20','6h','0',''), ('84979','35963','1','13','0 100','1',''), ('84980','35963','2','21','return +parseFloat(value).toFixed(0);','0',''), ('84981','35964','1','10','','0',''), ('84982','35965','1','1','8','0',''), ('84983','35965','2','10','','0',''), ('84984','35966','1','10','','0',''), ('84985','35967','1','10','','0',''), ('84986','35968','1','1','1000000','0',''), ('84987','35968','2','20','6h','0',''), ('84988','35969','1','20','6h','0',''), ('84989','35970','1','1','0.01','0',''), ('84990','35970','2','20','6h','0',''), ('84991','35971','1','20','1h','0',''), ('84992','35972','1','20','1h','0',''), ('84993','35973','1','20','1h','0',''), ('84994','35974','1','20','1h','0',''), ('84995','35975','1','20','1h','0',''), ('84996','35976','1','20','1h','0',''), ('84997','35977','1','20','1h','0',''), ('84998','35978','1','20','1h','0',''), ('84999','35979','1','1','0.001','0',''), ('85000','35979','2','20','1h','0',''), ('85001','35980','1','20','1h','0',''), ('85002','35981','1','20','6h','0',''), ('85003','35983','1','21','var inArray = JSON.parse(value); var tmpObj = {}; inArray.forEach(function(item, i, arr) { tmpObj[item["{#SNMPINDEX}"]] = item["{#SNMP.ARRAY}"] }); var strOut = ''V'' + tmpObj["1.0"] + ''.'' + tmpObj["2.0"] + ''('' + tmpObj["3.0"] + ''.'' + tmpObj["4.0"] + '')_'' + tmpObj["7.0"] + ''.'' + tmpObj["6.0"] + ''.'' + tmpObj["5.0"]; return strOut;','0',''), ('85004','35983','2','20','1d','0',''), ('85005','35984','1','20','6h','0',''), ('85006','35985','1','20','6h','0',''), ('85007','35986','1','20','6h','0',''), ('85008','35987','1','20','6h','0',''), ('85009','35988','1','20','6h','0',''), ('85010','35989','1','1','0.01','0',''), ('85011','35992','1','21','var inArray = JSON.parse(value); var nameMap = { ''Temperature'': ''°C'', ''Voltage'': ''V'', ''TxBias'': ''mA'', ''TxPower'': ''dbm'', ''RxPower'': ''dbm'' }; var outArr = []; inArray.forEach(function (item, i, arr) { item[''{#ZYXEL.SFP.PORT}''] = item[''{#SNMPINDEX}''].split(''.'')[0]; item[''{#ZYXEL.SFP.UNIT}''] = nameMap[item[''{#ZYXEL.SFP.DESCRIPTION}'']] === undefined ? "" : nameMap[item[''{#ZYXEL.SFP.DESCRIPTION}'']]; item[''{#ZYXEL.SFP.WARN.MAX}''] /= 100; item[''{#ZYXEL.SFP.WARN.MIN}''] /= 100; outArr.push(item) }); return JSON.stringify(outArr);','0',''), ('85012','35994','1','21','var inArray = JSON.parse(value); var nameMap = {"1":"MAC", "2":"CPU", "3":"PHY"}; var outArr = []; inArray.forEach(function(item, i, arr) { item["{#ZYXEL.TEMP.ID}"] = nameMap[item["{#SNMPINDEX}"]] outArr.push(item) }); return JSON.stringify(outArr);','0',''), ('85013','35995','1','21','var inArray = JSON.parse(value); var outArr = [] inArray.forEach(function(item, i, arr) { item["{#ZYXEL.VOLT.NOMINAL}"] = "+" + item["{#ZYXEL.VOLT.NOMINAL}"] / 1000 + "V"; item["{#ZYXEL.VOLT.THRESH.LOW}"] = item["{#ZYXEL.VOLT.THRESH.LOW}"] / 1000; outArr.push(item) }); return JSON.stringify(outArr);','0',''), ('85014','35996','1','20','1h','0',''), ('85015','35997','1','20','6h','0',''), ('85016','35998','1','20','6h','0',''), ('85017','35999','1','13','0 100','1',''), ('85018','35999','2','21','return +parseFloat(value).toFixed(0);','0',''), ('85019','36000','1','10','','0',''), ('85020','36001','1','1','8','0',''), ('85021','36001','2','10','','0',''), ('85022','36002','1','10','','0',''), ('85023','36003','1','10','','0',''), ('85024','36004','1','20','6h','0',''), ('85025','36005','1','20','6h','0',''), ('85026','36006','1','20','6h','0',''), ('85027','36007','1','13','0 100','1',''), ('85028','36007','2','21','return +parseFloat(value).toFixed(0);','0',''), ('85029','36008','1','10','','0',''), ('85030','36009','1','1','8','0',''), ('85031','36009','2','10','','0',''), ('85032','36010','1','10','','0',''), ('85033','36011','1','10','','0',''), ('85034','36012','1','1','1000000','0',''), ('85035','36012','2','20','6h','0',''), ('85036','36013','1','20','6h','0',''), ('85037','36014','1','1','0.01','0',''), ('85038','36014','2','20','6h','0',''), ('85039','36015','1','20','1h','0',''), ('85040','36016','1','20','1h','0',''), ('85041','36017','1','20','1h','0',''), ('85042','36018','1','20','1h','0',''), ('85043','36019','1','20','1h','0',''), ('85044','36020','1','20','1h','0',''), ('85045','36021','1','20','1h','0',''), ('85046','36022','1','20','1h','0',''), ('85047','36023','1','1','0.001','0',''), ('85048','36023','2','20','1h','0',''), ('85049','36024','1','20','1h','0',''), ('85050','36025','1','20','6h','0',''), ('85051','36027','1','20','6h','0',''), ('85052','36028','1','20','6h','0',''), ('85053','36029','1','20','6h','0',''), ('85054','36031','1','20','6h','0',''), ('85055','36032','1','20','6h','0',''), ('85056','36033','1','20','6h','0',''), ('85057','36034','1','1','0.01','0',''), ('85058','36037','1','21','var inArray = JSON.parse(value); var nameMap = { ''Temperature'': ''°C'', ''Voltage'': ''V'', ''TxBias'': ''mA'', ''TxPower'': ''dbm'', ''RxPower'': ''dbm'' }; var outArr = []; inArray.forEach(function (item, i, arr) { item[''{#ZYXEL.SFP.PORT}''] = item[''{#SNMPINDEX}''].split(''.'')[0]; item[''{#ZYXEL.SFP.UNIT}''] = nameMap[item[''{#ZYXEL.SFP.DESCRIPTION}'']] === undefined ? "" : nameMap[item[''{#ZYXEL.SFP.DESCRIPTION}'']]; item[''{#ZYXEL.SFP.WARN.MAX}''] /= 100; item[''{#ZYXEL.SFP.WARN.MIN}''] /= 100; outArr.push(item) }); return JSON.stringify(outArr);','0',''), ('85059','36040','1','21','var inArray = JSON.parse(value); var outArr = [] inArray.forEach(function(item, i, arr) { item["{#ZYXEL.VOLT.THRESH.LOW}"] /= 1000; outArr.push(item) }); return JSON.stringify(outArr);','0',''), ('85060','36041','1','20','1h','0',''), ('85061','36042','1','20','6h','0',''), ('85062','36043','1','20','6h','0',''), ('85063','36044','1','13','0 100','1',''), ('85064','36044','2','21','return +parseFloat(value).toFixed(0);','0',''), ('85065','36045','1','10','','0',''), ('85066','36046','1','1','8','0',''), ('85067','36046','2','10','','0',''), ('85068','36047','1','10','','0',''), ('85069','36048','1','10','','0',''), ('85070','36049','1','20','6h','0',''), ('85071','36050','1','20','6h','0',''), ('85072','36051','1','20','6h','0',''), ('85073','36052','1','13','0 100','1',''), ('85074','36052','2','21','return +parseFloat(value).toFixed(0);','0',''), ('85075','36053','1','10','','0',''), ('85076','36054','1','1','8','0',''), ('85077','36054','2','10','','0',''), ('85078','36055','1','10','','0',''), ('85079','36056','1','10','','0',''), ('85080','36057','1','1','1000000','0',''), ('85081','36057','2','20','6h','0',''), ('85082','36058','1','20','6h','0',''), ('85083','36059','1','1','0.01','0',''), ('85084','36059','2','20','6h','0',''), ('85085','36060','1','20','1h','0',''), ('85086','36061','1','20','1h','0',''), ('85087','36062','1','20','1h','0',''), ('85088','36063','1','20','1h','0',''), ('85089','36064','1','20','1h','0',''), ('85090','36065','1','20','1h','0',''), ('85091','36066','1','20','1h','0',''), ('85092','36067','1','20','1h','0',''), ('85093','36068','1','1','0.001','0',''), ('85094','36068','2','20','1h','0',''), ('85095','36069','1','20','1h','0',''), ('85096','36070','1','20','6h','0',''), ('85097','36072','1','20','6h','0',''), ('85098','36073','1','20','6h','0',''), ('85099','36074','1','20','6h','0',''), ('85100','36076','1','20','6h','0',''), ('85101','36077','1','20','6h','0',''), ('85102','36078','1','20','6h','0',''), ('85103','36079','1','1','0.01','0',''), ('85104','36082','1','21','var inArray = JSON.parse(value); var nameMap = { ''Temperature'': ''°C'', ''Voltage'': ''V'', ''TxBias'': ''mA'', ''TxPower'': ''dbm'', ''RxPower'': ''dbm'' }; var outArr = []; inArray.forEach(function (item, i, arr) { item[''{#ZYXEL.SFP.PORT}''] = item[''{#SNMPINDEX}''].split(''.'')[0]; item[''{#ZYXEL.SFP.UNIT}''] = nameMap[item[''{#ZYXEL.SFP.DESCRIPTION}'']] === undefined ? "" : nameMap[item[''{#ZYXEL.SFP.DESCRIPTION}'']]; item[''{#ZYXEL.SFP.WARN.MAX}''] /= 100; item[''{#ZYXEL.SFP.WARN.MIN}''] /= 100; outArr.push(item) }); return JSON.stringify(outArr);','0',''), ('85105','36085','1','21','var inArray = JSON.parse(value); var outArr = [] inArray.forEach(function(item, i, arr) { item["{#ZYXEL.VOLT.THRESH.LOW}"] /= 1000; outArr.push(item) }); return JSON.stringify(outArr);','0',''), ('85106','36086','1','20','1h','0',''), ('85107','36087','1','20','6h','0',''), ('85108','36088','1','20','6h','0',''), ('85109','36089','1','13','0 100','1',''), ('85110','36089','2','21','return +parseFloat(value).toFixed(0);','0',''), ('85111','36090','1','10','','0',''), ('85112','36091','1','1','8','0',''), ('85113','36091','2','10','','0',''), ('85114','36092','1','10','','0',''), ('85115','36093','1','10','','0',''), ('85116','36094','1','20','6h','0',''), ('85117','36095','1','20','6h','0',''), ('85118','36096','1','20','6h','0',''), ('85119','36097','1','13','0 100','1',''), ('85120','36097','2','21','return +parseFloat(value).toFixed(0);','0',''), ('85121','36098','1','10','','0',''), ('85122','36099','1','1','8','0',''), ('85123','36099','2','10','','0',''), ('85124','36100','1','10','','0',''), ('85125','36101','1','10','','0',''), ('85126','36102','1','1','1000000','0',''), ('85127','36102','2','20','6h','0',''), ('85128','36103','1','20','6h','0',''), ('85129','36104','1','1','0.01','0',''), ('85130','36104','2','20','6h','0',''), ('85131','36105','1','20','1h','0',''), ('85132','36106','1','20','1h','0',''), ('85133','36107','1','20','1h','0',''), ('85134','36108','1','20','1h','0',''), ('85135','36109','1','20','1h','0',''), ('85136','36110','1','20','1h','0',''), ('85137','36111','1','20','1h','0',''), ('85138','36112','1','20','1h','0',''), ('85139','36113','1','1','0.001','0',''), ('85140','36113','2','20','1h','0',''), ('85141','36114','1','20','1h','0',''), ('85142','36115','1','20','6h','0',''), ('85143','36117','1','21','var inArray = JSON.parse(value); var tmpObj = {}; inArray.forEach(function(item, i, arr) { tmpObj[item["{#SNMPINDEX}"]] = item["{#SNMP.ARRAY}"] }); var strOut = ''V'' + tmpObj["1.0"] + ''.'' + tmpObj["2.0"] + ''('' + tmpObj["3.0"] + ''.'' + tmpObj["4.0"] + '')_'' + tmpObj["7.0"] + ''.'' + tmpObj["6.0"] + ''.'' + tmpObj["5.0"]; return strOut;','0',''), ('85144','36117','2','20','1d','0',''), ('85145','36118','1','20','6h','0',''), ('85146','36119','1','20','6h','0',''), ('85147','36120','1','20','6h','0',''), ('85148','36121','1','20','6h','0',''), ('85149','36122','1','20','6h','0',''), ('85150','36123','1','1','0.01','0',''), ('85151','36127','1','21','var inArray = JSON.parse(value); var nameMap = { ''Temperature'': ''°C'', ''Voltage'': ''V'', ''TxBias'': ''mA'', ''TxPower'': ''dbm'', ''RxPower'': ''dbm'' }; var outArr = []; inArray.forEach(function (item, i, arr) { item[''{#ZYXEL.SFP.PORT}''] = item[''{#SNMPINDEX}''].split(''.'')[0]; item[''{#ZYXEL.SFP.UNIT}''] = nameMap[item[''{#ZYXEL.SFP.DESCRIPTION}'']] === undefined ? "" : nameMap[item[''{#ZYXEL.SFP.DESCRIPTION}'']]; item[''{#ZYXEL.SFP.WARN.MAX}''] /= 100; item[''{#ZYXEL.SFP.WARN.MIN}''] /= 100; outArr.push(item) }); return JSON.stringify(outArr);','0',''), ('85152','36129','1','21','var inArray = JSON.parse(value); var nameMap = {"1":"MAC", "2":"CPU", "3":"PHY"}; var outArr = []; inArray.forEach(function(item, i, arr) { item["{#ZYXEL.TEMP.ID}"] = nameMap[item["{#SNMPINDEX}"]] outArr.push(item) }); return JSON.stringify(outArr);','0',''), ('85153','36130','1','21','var inArray = JSON.parse(value); var outArr = [] inArray.forEach(function(item, i, arr) { item["{#ZYXEL.VOLT.NOMINAL}"] = "+" + item["{#ZYXEL.VOLT.NOMINAL}"] / 1000 + "V"; item["{#ZYXEL.VOLT.THRESH.LOW}"] = item["{#ZYXEL.VOLT.THRESH.LOW}"] / 1000; outArr.push(item) }); return JSON.stringify(outArr);','0',''), ('85154','36131','1','20','1h','0',''), ('85155','36132','1','20','1h','0',''), ('85156','36133','1','20','6h','0',''), ('85157','36134','1','20','6h','0',''), ('85158','36135','1','13','0 100','1',''), ('85159','36135','2','21','return +parseFloat(value).toFixed(0);','0',''), ('85160','36136','1','10','','0',''), ('85161','36137','1','1','8','0',''), ('85162','36137','2','10','','0',''), ('85163','36138','1','10','','0',''), ('85164','36139','1','10','','0',''), ('85165','36140','1','20','6h','0',''), ('85166','36141','1','20','6h','0',''), ('85167','36142','1','20','6h','0',''), ('85168','36143','1','13','0 100','1',''), ('85169','36143','2','21','return +parseFloat(value).toFixed(0);','0',''), ('85170','36144','1','10','','0',''), ('85171','36145','1','1','8','0',''), ('85172','36145','2','10','','0',''), ('85173','36146','1','10','','0',''), ('85174','36147','1','10','','0',''), ('85175','36148','1','1','1000000','0',''), ('85176','36148','2','20','6h','0',''), ('85177','36149','1','20','6h','0',''), ('85178','36150','1','1','0.01','0',''), ('85179','36150','2','20','6h','0',''), ('85180','36151','1','20','1h','0',''), ('85181','36152','1','20','1h','0',''), ('85182','36153','1','20','1h','0',''), ('85183','36154','1','20','1h','0',''), ('85184','36155','1','20','1h','0',''), ('85185','36156','1','20','1h','0',''), ('85186','36157','1','20','1h','0',''), ('85187','36158','1','20','1h','0',''), ('85188','36159','1','1','0.001','0',''), ('85189','36159','2','20','1h','0',''), ('85194','36160','1','20','12h','0',''), ('85195','36161','1','20','12h','0',''), ('85196','36162','1','20','12h','0',''), ('85197','36163','1','20','12h','0',''), ('85198','36164','1','20','12h','0',''), ('85199','36165','1','1','0.01','0',''), ('85200','36167','1','20','1h','0',''), ('85201','36171','1','21','var result = []; JSON.parse(value).forEach(function (netif) { if (typeof netif["{#IFNAME}"] === ''undefined'') { netif["{#IFNAME}"] = netif["{#IFDESCR}"]; } if (typeof netif["{#IFALIAS}"] === ''undefined'') { netif["{#IFALIAS}"] = ""; } result.push(netif); }); return JSON.stringify(result);','0',''), ('85202','36178','1','20','6h','0',''), ('85203','36179','1','20','1d','0',''), ('85204','36180','1','20','6h','0',''), ('85205','36181','1','20','6h','0',''), ('85206','36182','1','20','1d','0',''), ('85207','36183','1','10','','0',''), ('85208','36184','1','10','','0',''), ('85209','36185','1','10','','0',''), ('85210','36186','1','10','','0',''), ('85211','36187','1','10','','0',''), ('85212','36187','2','1','8','0',''), ('85213','36188','1','10','','0',''), ('85214','36189','1','10','','0',''), ('85215','36190','1','10','','0',''), ('85216','36191','1','10','','0',''), ('85217','36192','1','10','','0',''), ('85218','36192','2','1','8','0',''), ('85219','36193','1','1','1000000','0',''), ('85220','36193','2','20','1h','0',''), ('85221','36194','1','20','6h','0',''), ('85222','36195','1','20','1d','0',''), ('85223','36196','1','20','1d','0',''), ('85224','36197','1','20','1d','0',''), ('85225','36198','1','20','1d','0',''), ('85226','36199','1','1','1048576','0',''), ('85227','36199','2','20','1d','0',''), ('85228','36200','1','20','6h','0',''), ('85229','36201','1','20','6h','0',''), ('85230','36202','1','20','6h','0',''), ('85231','36203','1','20','6h','0',''), ('85232','36204','1','20','6h','0',''), ('85233','36205','1','20','6h','0',''), ('85234','36206','1','20','6h','0',''), ('85235','36207','1','20','1d','0',''), ('85236','36208','1','20','1d','0',''), ('85237','36209','1','20','6h','0',''), ('85238','36210','1','20','1d','0',''), ('85239','36211','1','1','1048576','0',''), ('85240','36211','2','20','1d','0',''), ('85241','36212','1','20','6h','0',''), ('85243','36215','1','12','$.firmware','0',''), ('85244','36215','2','20','6h','0',''), ('85245','36216','1','12','$.model','0',''), ('85246','36216','2','20','6h','0',''), ('85247','36217','1','12','$.serialnumber','0',''), ('85248','36217','2','20','6h','0',''), ('85249','36218','1','12','$.status','0',''), ('85250','36218','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('85309','36255','1','20','1d','0',''), ('85310','36256','1','20','1d','0',''), ('85311','36257','1','20','1d','0',''), ('85312','36258','1','20','6h','0',''), ('85313','36259','1','20','6h','0',''), ('85314','36260','1','20','6h','0',''), ('85315','36261','1','20','6h','0',''), ('85316','36262','1','20','6h','0',''), ('85317','36263','1','20','6h','0',''), ('85318','36264','1','20','1d','0',''), ('85320','36267','1','20','6h','0',''), ('85322','36269','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38 0 {#CNTLR_NAME} 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.79 0','1',''), ('85323','36270','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.4.700.12.1.5 0 {#FAN_DESCR} 1.3.6.1.4.1.674.10892.5.4.700.12.1.8 0 {#TYPE} 1.3.6.1.4.1.674.10892.5.4.700.12.1.7 0','0',''), ('85324','36271','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.1 0 {#DISK_NAME} 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.2 0','1',''), ('85325','36272','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.4.600.12.1.5 0 {#PSU_DESCR} 1.3.6.1.4.1.674.10892.5.4.600.12.1.8 0','0',''), ('85326','36273','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.4.700.20.1.1 0 {#SENSOR_LOCALE} 1.3.6.1.4.1.674.10892.5.4.700.20.1.8 0','0',''), ('85327','36274','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.1 0 {#DISK_NAME} 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.2 0','1',''), ('85329','36276','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2.{#SNMPINDEX} 0','0',''), ('85330','36277','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38.{#SNMPINDEX} 0','0',''), ('85332','36280','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.35.{#SNMPINDEX} 0','0',''), ('85333','36281','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.6.{#SNMPINDEX} 0','0',''), ('85334','36282','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.7.{#SNMPINDEX} 0','0',''), ('85335','36283','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.11.{#SNMPINDEX} 0','0',''), ('85336','36283','2','1','1048576','0',''), ('85337','36284','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.31.{#SNMPINDEX} 0','0',''), ('85338','36285','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.24.{#SNMPINDEX} 0','0',''), ('85339','36286','1','28','1.3.6.1.4.1.674.10892.5.4.600.12.1.5.{#SNMPINDEX} 0','0',''), ('85340','36287','1','28','1.3.6.1.4.1.674.10892.5.4.700.20.1.5.{#SNMPINDEX} 0','0',''), ('85341','36288','1','28','1.3.6.1.4.1.674.10892.5.4.700.20.1.6.{#SNMPINDEX} 0','0',''), ('85342','36288','2','1','0.1','0',''), ('85343','36289','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.13.{#SNMPINDEX} 0','0',''), ('85344','36291','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6.{#SNMPINDEX} 0','0',''), ('85345','36291','2','1','1048576','0',''), ('85346','36293','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4.{#SNMPINDEX} 0','0',''), ('85348','36297','1','12','$.firmware','0',''), ('85349','36297','2','20','6h','0',''), ('85350','36298','1','12','$.model','0',''), ('85351','36298','2','20','6h','0',''), ('85352','36299','1','12','$.serialnumber','0',''), ('85353','36299','2','20','6h','0',''), ('85354','36300','1','12','$.status','0',''), ('85355','36300','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('85414','36337','1','20','1d','0',''), ('85415','36338','1','20','1d','0',''), ('85416','36339','1','20','1d','0',''), ('85417','36340','1','20','6h','0',''), ('85418','36341','1','20','6h','0',''), ('85419','36342','1','20','6h','0',''), ('85420','36343','1','20','6h','0',''), ('85421','36344','1','20','6h','0',''), ('85422','36345','1','20','6h','0',''), ('85423','36346','1','20','1d','0',''), ('85425','36349','1','20','6h','0',''), ('85427','36351','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38 0 {#CNTLR_NAME} 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.79 0','1',''), ('85428','36352','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.4.700.12.1.5 0 {#FAN_DESCR} 1.3.6.1.4.1.674.10892.5.4.700.12.1.8 0 {#TYPE} 1.3.6.1.4.1.674.10892.5.4.700.12.1.7 0','0',''), ('85429','36353','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.1 0 {#DISK_NAME} 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.2 0','1',''), ('85430','36354','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.4.600.12.1.5 0 {#PSU_DESCR} 1.3.6.1.4.1.674.10892.5.4.600.12.1.8 0','0',''), ('85431','36355','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.4.700.20.1.1 0 {#SENSOR_LOCALE} 1.3.6.1.4.1.674.10892.5.4.700.20.1.8 0','0',''), ('85432','36356','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.1 0 {#DISK_NAME} 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.2 0','1',''), ('85434','36358','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2.{#SNMPINDEX} 0','0',''), ('85435','36359','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38.{#SNMPINDEX} 0','0',''), ('85437','36362','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.35.{#SNMPINDEX} 0','0',''), ('85438','36363','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.6.{#SNMPINDEX} 0','0',''), ('85439','36364','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.7.{#SNMPINDEX} 0','0',''), ('85440','36365','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.11.{#SNMPINDEX} 0','0',''), ('85441','36365','2','1','1048576','0',''), ('85442','36366','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.31.{#SNMPINDEX} 0','0',''), ('85443','36367','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.24.{#SNMPINDEX} 0','0',''), ('85444','36368','1','28','1.3.6.1.4.1.674.10892.5.4.600.12.1.5.{#SNMPINDEX} 0','0',''), ('85445','36369','1','28','1.3.6.1.4.1.674.10892.5.4.700.20.1.5.{#SNMPINDEX} 0','0',''), ('85446','36370','1','28','1.3.6.1.4.1.674.10892.5.4.700.20.1.6.{#SNMPINDEX} 0','0',''), ('85447','36370','2','1','0.1','0',''), ('85448','36371','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.13.{#SNMPINDEX} 0','0',''), ('85449','36373','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6.{#SNMPINDEX} 0','0',''), ('85450','36373','2','1','1048576','0',''), ('85451','36375','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4.{#SNMPINDEX} 0','0',''), ('85453','36379','1','12','$.firmware','0',''), ('85454','36379','2','20','6h','0',''), ('85455','36380','1','12','$.model','0',''), ('85456','36380','2','20','6h','0',''), ('85457','36381','1','12','$.serialnumber','0',''), ('85458','36381','2','20','6h','0',''), ('85459','36382','1','12','$.status','0',''), ('85460','36382','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('85519','36419','1','20','1d','0',''), ('85520','36420','1','20','1d','0',''), ('85521','36421','1','20','1d','0',''), ('85522','36422','1','20','6h','0',''), ('85523','36423','1','20','6h','0',''), ('85524','36424','1','20','6h','0',''), ('85525','36425','1','20','6h','0',''), ('85526','36426','1','20','6h','0',''), ('85527','36427','1','20','6h','0',''), ('85528','36428','1','20','1d','0',''), ('85530','36431','1','20','6h','0',''), ('85532','36433','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38 0 {#CNTLR_NAME} 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.79 0','1',''), ('85533','36434','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.4.700.12.1.5 0 {#FAN_DESCR} 1.3.6.1.4.1.674.10892.5.4.700.12.1.8 0 {#TYPE} 1.3.6.1.4.1.674.10892.5.4.700.12.1.7 0','0',''), ('85534','36435','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.1 0 {#DISK_NAME} 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.2 0','1',''), ('85535','36436','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.4.600.12.1.5 0 {#PSU_DESCR} 1.3.6.1.4.1.674.10892.5.4.600.12.1.8 0','0',''), ('85536','36437','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.4.700.20.1.1 0 {#SENSOR_LOCALE} 1.3.6.1.4.1.674.10892.5.4.700.20.1.8 0','0',''), ('85537','36438','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.1 0 {#DISK_NAME} 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.2 0','1',''), ('85539','36440','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2.{#SNMPINDEX} 0','0',''), ('85540','36441','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38.{#SNMPINDEX} 0','0',''), ('85542','36444','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.35.{#SNMPINDEX} 0','0',''), ('85543','36445','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.6.{#SNMPINDEX} 0','0',''), ('85544','36446','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.7.{#SNMPINDEX} 0','0',''), ('85545','36447','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.11.{#SNMPINDEX} 0','0',''), ('85546','36447','2','1','1048576','0',''), ('85547','36448','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.31.{#SNMPINDEX} 0','0',''), ('85548','36449','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.24.{#SNMPINDEX} 0','0',''), ('85549','36450','1','28','1.3.6.1.4.1.674.10892.5.4.600.12.1.5.{#SNMPINDEX} 0','0',''), ('85550','36451','1','28','1.3.6.1.4.1.674.10892.5.4.700.20.1.5.{#SNMPINDEX} 0','0',''), ('85551','36452','1','28','1.3.6.1.4.1.674.10892.5.4.700.20.1.6.{#SNMPINDEX} 0','0',''), ('85552','36452','2','1','0.1','0',''), ('85553','36453','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.13.{#SNMPINDEX} 0','0',''), ('85554','36455','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6.{#SNMPINDEX} 0','0',''), ('85555','36455','2','1','1048576','0',''), ('85556','36457','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4.{#SNMPINDEX} 0','0',''), ('85558','36461','1','12','$.firmware','0',''), ('85559','36461','2','20','6h','0',''), ('85560','36462','1','12','$.model','0',''), ('85561','36462','2','20','6h','0',''), ('85562','36463','1','12','$.serialnumber','0',''), ('85563','36463','2','20','6h','0',''), ('85564','36464','1','12','$.status','0',''), ('85565','36464','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('85624','36501','1','20','1d','0',''), ('85625','36502','1','20','1d','0',''), ('85626','36503','1','20','1d','0',''), ('85627','36504','1','20','6h','0',''), ('85628','36505','1','20','6h','0',''), ('85629','36506','1','20','6h','0',''), ('85630','36507','1','20','6h','0',''), ('85631','36508','1','20','6h','0',''), ('85632','36509','1','20','6h','0',''), ('85633','36510','1','20','1d','0',''), ('85635','36513','1','20','6h','0',''), ('85637','36515','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38 0 {#CNTLR_NAME} 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.79 0','1',''), ('85638','36516','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.4.700.12.1.5 0 {#FAN_DESCR} 1.3.6.1.4.1.674.10892.5.4.700.12.1.8 0 {#TYPE} 1.3.6.1.4.1.674.10892.5.4.700.12.1.7 0','0',''), ('85639','36517','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.1 0 {#DISK_NAME} 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.2 0','1',''), ('85640','36518','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.4.600.12.1.5 0 {#PSU_DESCR} 1.3.6.1.4.1.674.10892.5.4.600.12.1.8 0','0',''), ('85641','36519','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.4.700.20.1.1 0 {#SENSOR_LOCALE} 1.3.6.1.4.1.674.10892.5.4.700.20.1.8 0','0',''), ('85642','36520','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.1 0 {#DISK_NAME} 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.2 0','1',''), ('85644','36522','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2.{#SNMPINDEX} 0','0',''), ('85645','36523','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38.{#SNMPINDEX} 0','0',''), ('85647','36526','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.35.{#SNMPINDEX} 0','0',''), ('85648','36527','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.6.{#SNMPINDEX} 0','0',''), ('85649','36528','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.7.{#SNMPINDEX} 0','0',''), ('85650','36529','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.11.{#SNMPINDEX} 0','0',''), ('85651','36529','2','1','1048576','0',''), ('85652','36530','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.31.{#SNMPINDEX} 0','0',''), ('85653','36531','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.24.{#SNMPINDEX} 0','0',''), ('85654','36532','1','28','1.3.6.1.4.1.674.10892.5.4.600.12.1.5.{#SNMPINDEX} 0','0',''), ('85655','36533','1','28','1.3.6.1.4.1.674.10892.5.4.700.20.1.5.{#SNMPINDEX} 0','0',''), ('85656','36534','1','28','1.3.6.1.4.1.674.10892.5.4.700.20.1.6.{#SNMPINDEX} 0','0',''), ('85657','36534','2','1','0.1','0',''), ('85658','36535','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.13.{#SNMPINDEX} 0','0',''), ('85659','36537','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6.{#SNMPINDEX} 0','0',''), ('85660','36537','2','1','1048576','0',''), ('85661','36539','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4.{#SNMPINDEX} 0','0',''), ('85662','36541','1','20','1d','0',''), ('85663','36542','1','20','1d','0',''), ('85664','36543','1','20','6h','0',''), ('85665','36544','1','20','6h','0',''), ('85666','36545','1','20','6h','0',''), ('85667','36546','1','20','6h','0',''), ('85668','36547','1','20','6h','0',''), ('85669','36548','1','20','6h','0',''), ('85670','36549','1','20','6h','0',''), ('85671','36550','1','1','0.01','0',''), ('85672','36552','1','20','6h','0',''), ('85673','36553','1','20','6h','0',''), ('85674','36554','1','20','6h','0',''), ('85675','36555','1','20','6h','0',''), ('85676','36556','1','20','6h','0',''), ('85677','36557','1','20','6h','0',''), ('85678','36558','1','20','6h','0',''), ('85679','36559','1','20','6h','0',''), ('85680','36560','1','20','6h','0',''), ('85681','36561','1','20','6h','0',''), ('85682','36562','1','20','6h','0',''), ('85683','36563','1','20','6h','0',''), ('85684','36564','1','20','6h','0',''), ('85685','36565','1','20','6h','0',''), ('85686','36566','1','20','6h','0',''), ('85687','36567','1','20','6h','0',''), ('85688','36568','1','20','6h','0',''), ('85689','36569','1','20','6h','0',''), ('85690','36570','1','20','6h','0',''), ('85691','36571','1','20','6h','0',''), ('85692','36572','1','20','6h','0',''), ('85693','36573','1','20','6h','0',''), ('85694','36574','1','20','6h','0',''), ('85695','36575','1','20','6h','0',''), ('85696','36576','1','1','1048576','0',''), ('85697','36576','2','20','6h','0',''), ('85698','36577','1','20','6h','0',''), ('85699','36578','1','20','6h','0',''), ('85700','36579','1','20','6h','0',''), ('85701','36580','1','20','6h','0',''), ('85702','36581','1','20','6h','0',''), ('85703','36582','1','20','6h','0',''), ('85704','36583','1','20','6h','0',''), ('85705','36584','1','20','6h','0',''), ('85706','36585','1','20','6h','0',''), ('85707','36586','1','20','6h','0',''), ('85708','36587','1','20','6h','0',''), ('85709','36588','1','20','6h','0',''), ('85710','36589','1','20','6h','0',''), ('85711','36590','1','20','6h','0',''), ('85712','36591','1','20','6h','0',''), ('85713','36592','1','20','6h','0',''), ('85714','36593','1','20','6h','0',''), ('85715','36594','1','20','6h','0',''), ('85716','36595','1','20','6h','0',''), ('85717','36596','1','1','1048576','0',''), ('85718','36596','2','20','6h','0',''), ('85719','36597','1','20','6h','0',''), ('85720','36598','1','20','1d','0',''), ('85721','36599','1','20','1d','0',''), ('85722','36600','1','20','6h','0',''), ('85723','36601','1','20','6h','0',''), ('85724','36602','1','20','6h','0',''), ('85725','36603','1','20','6h','0',''), ('85726','36604','1','20','6h','0',''), ('85727','36605','1','20','6h','0',''), ('85728','36606','1','20','6h','0',''), ('85729','36607','1','1','0.01','0',''), ('85730','36609','1','20','6h','0',''), ('85731','36610','1','20','6h','0',''), ('85732','36611','1','20','6h','0',''), ('85733','36612','1','20','6h','0',''), ('85734','36613','1','20','6h','0',''), ('85735','36614','1','20','6h','0',''), ('85736','36615','1','20','6h','0',''), ('85737','36616','1','20','6h','0',''), ('85738','36617','1','20','6h','0',''), ('85739','36618','1','20','6h','0',''), ('85740','36619','1','20','6h','0',''), ('85741','36620','1','20','6h','0',''), ('85742','36621','1','20','6h','0',''), ('85743','36622','1','20','6h','0',''), ('85744','36623','1','20','6h','0',''), ('85745','36624','1','20','6h','0',''), ('85746','36625','1','20','6h','0',''), ('85747','36626','1','20','6h','0',''), ('85748','36627','1','20','6h','0',''), ('85749','36628','1','20','6h','0',''), ('85750','36629','1','20','6h','0',''), ('85751','36630','1','20','6h','0',''), ('85752','36631','1','20','6h','0',''), ('85753','36632','1','20','6h','0',''), ('85754','36633','1','1','1048576','0',''), ('85755','36633','2','20','6h','0',''), ('85756','36634','1','20','6h','0',''), ('85757','36635','1','20','6h','0',''), ('85758','36636','1','20','6h','0',''), ('85759','36637','1','20','6h','0',''), ('85760','36638','1','20','6h','0',''), ('85761','36639','1','20','6h','0',''), ('85762','36640','1','20','6h','0',''), ('85763','36641','1','20','6h','0',''), ('85764','36642','1','20','6h','0',''), ('85765','36643','1','20','6h','0',''), ('85766','36644','1','20','6h','0',''), ('85767','36645','1','20','6h','0',''), ('85768','36646','1','20','6h','0',''), ('85769','36647','1','20','6h','0',''), ('85770','36648','1','20','6h','0',''), ('85771','36649','1','20','6h','0',''), ('85772','36650','1','20','6h','0',''), ('85773','36651','1','20','6h','0',''), ('85774','36652','1','20','6h','0',''), ('85775','36653','1','1','1048576','0',''), ('85776','36653','2','20','6h','0',''), ('85777','36654','1','20','6h','0',''), ('85778','36655','1','20','1d','0',''), ('85779','36656','1','20','1d','0',''), ('85780','36657','1','20','6h','0',''), ('85781','36658','1','20','6h','0',''), ('85782','36659','1','20','6h','0',''), ('85783','36660','1','20','6h','0',''), ('85784','36661','1','20','6h','0',''), ('85785','36662','1','20','6h','0',''), ('85786','36663','1','20','6h','0',''), ('85787','36664','1','1','0.01','0',''), ('85788','36666','1','20','6h','0',''), ('85789','36667','1','20','6h','0',''), ('85790','36668','1','20','6h','0',''), ('85791','36669','1','20','6h','0',''), ('85792','36670','1','20','6h','0',''), ('85793','36671','1','20','6h','0',''), ('85794','36672','1','20','6h','0',''), ('85795','36673','1','20','6h','0',''), ('85796','36674','1','20','6h','0',''), ('85797','36675','1','20','6h','0',''), ('85798','36676','1','20','6h','0',''), ('85799','36677','1','20','6h','0',''), ('85800','36678','1','20','6h','0',''), ('85801','36679','1','20','6h','0',''), ('85802','36680','1','20','6h','0',''), ('85803','36681','1','20','6h','0',''), ('85804','36682','1','20','6h','0',''), ('85805','36683','1','20','6h','0',''), ('85806','36684','1','20','6h','0',''), ('85807','36685','1','20','6h','0',''), ('85808','36686','1','20','6h','0',''), ('85809','36687','1','20','6h','0',''), ('85810','36688','1','20','6h','0',''), ('85811','36689','1','20','6h','0',''), ('85812','36690','1','1','1048576','0',''), ('85813','36690','2','20','6h','0',''), ('85814','36691','1','20','6h','0',''), ('85815','36692','1','20','6h','0',''), ('85816','36693','1','20','6h','0',''), ('85817','36694','1','20','6h','0',''), ('85818','36695','1','20','6h','0',''), ('85819','36696','1','20','6h','0',''), ('85820','36697','1','20','6h','0',''), ('85821','36698','1','20','6h','0',''), ('85822','36699','1','20','6h','0',''), ('85823','36700','1','20','6h','0',''), ('85824','36701','1','20','6h','0',''), ('85825','36702','1','20','6h','0',''), ('85826','36703','1','20','6h','0',''), ('85827','36704','1','20','6h','0',''), ('85828','36705','1','20','6h','0',''), ('85829','36706','1','20','6h','0',''), ('85830','36707','1','20','6h','0',''), ('85831','36708','1','20','6h','0',''), ('85832','36709','1','20','6h','0',''), ('85833','36710','1','1','1048576','0',''), ('85834','36710','2','20','6h','0',''), ('85835','36711','1','20','6h','0',''), ('85836','36712','1','20','1d','0',''), ('85837','36713','1','20','1d','0',''), ('85838','36714','1','20','6h','0',''), ('85839','36715','1','20','6h','0',''), ('85840','36716','1','20','6h','0',''), ('85841','36717','1','20','6h','0',''), ('85842','36718','1','20','6h','0',''), ('85843','36719','1','20','6h','0',''), ('85844','36720','1','20','6h','0',''), ('85845','36721','1','1','0.01','0',''), ('85846','36723','1','20','6h','0',''), ('85847','36724','1','20','6h','0',''), ('85848','36725','1','20','6h','0',''), ('85849','36726','1','20','6h','0',''), ('85850','36727','1','20','6h','0',''), ('85851','36728','1','20','6h','0',''), ('85852','36729','1','20','6h','0',''), ('85853','36730','1','20','6h','0',''), ('85854','36731','1','20','6h','0',''), ('85855','36732','1','20','6h','0',''), ('85856','36733','1','20','6h','0',''), ('85857','36734','1','20','6h','0',''), ('85858','36735','1','20','6h','0',''), ('85859','36736','1','20','6h','0',''), ('85860','36737','1','20','6h','0',''), ('85861','36738','1','20','6h','0',''), ('85862','36739','1','20','6h','0',''), ('85863','36740','1','20','6h','0',''), ('85864','36741','1','20','6h','0',''), ('85865','36742','1','20','6h','0',''), ('85866','36743','1','20','6h','0',''), ('85867','36744','1','20','6h','0',''), ('85868','36745','1','20','6h','0',''), ('85869','36746','1','20','6h','0',''), ('85870','36747','1','1','1048576','0',''), ('85871','36747','2','20','6h','0',''), ('85872','36748','1','20','6h','0',''), ('85873','36749','1','20','6h','0',''), ('85874','36750','1','20','6h','0',''), ('85875','36751','1','20','6h','0',''), ('85876','36752','1','20','6h','0',''), ('85877','36753','1','20','6h','0',''), ('85878','36754','1','20','6h','0',''), ('85879','36755','1','20','6h','0',''), ('85880','36756','1','20','6h','0',''), ('85881','36757','1','20','6h','0',''), ('85882','36758','1','20','6h','0',''), ('85883','36759','1','20','6h','0',''), ('85884','36760','1','20','6h','0',''), ('85885','36761','1','20','6h','0',''), ('85886','36762','1','20','6h','0',''), ('85887','36763','1','20','6h','0',''), ('85888','36764','1','20','6h','0',''), ('85889','36765','1','20','6h','0',''), ('85890','36766','1','20','6h','0',''), ('85891','36767','1','1','1048576','0',''), ('85892','36767','2','20','6h','0',''), ('85893','36768','1','20','6h','0',''), ('85894','36769','1','12','$.sip.active_channels','0',''), ('85895','36770','1','12','$.pjsip.active_channels','0',''), ('85896','36771','1','12','$.iax.active_channels','0',''), ('85898','36773','1','26','-1','2','0'), ('85899','36776','1','12','$..duration.sum()','1',''), ('85900','36777','1','12','$.builds.length()','0',''), ('85901','36778','1','12','$.jobs[?(@.state == "started")].length()','2','0'), ('85902','36779','1','12','$.jobs[?(@.state == "received")].length()','2','0'), ('85903','36780','1','12','$.jobs.length()','0',''), ('85904','36781','1','21','var result = []; JSON.parse(value).repositories.forEach(function (e) { result.push({ ''{#ID}'': e.id, ''{#SLUG}'': e.slug }); }); return JSON.stringify(result)','0',''), ('85905','36781','2','20','1h','0',''), ('85906','36785','1','21','return JSON.parse(value).builds.filter(function (e){return e.state !== "passed" && e.state !== "started" }).length','0',''), ('85907','36786','1','21','return JSON.parse(value).builds.filter(function (e){return e.state == "passed"}).length','0',''), ('85908','36787','1','12','$.builds.length()','0',''), ('85909','36788','1','12','$.caches.length()','0',''), ('85910','36789','1','12','$.caches..size.sum()','2','0'), ('85911','36790','1','12','$.repositories[?(@.slug == "{#SLUG}")].description.first()','0',''), ('85912','36790','2','20','1h','0',''), ('85913','36791','1','12','$.builds[0].duration','1',''), ('85914','36791','2','20','1h','0',''), ('85915','36792','1','12','$.builds[0].id','0',''), ('85916','36792','2','20','1h','0',''), ('85917','36793','1','12','$.builds[0].number','0',''), ('85918','36793','2','20','1h','0',''), ('85919','36794','1','12','$.builds[0].state','0',''), ('85920','36794','2','20','1h','0',''), ('85922','36795','1','26','-1','1',''), ('85924','36796','1','26','-1','2','{"status":"fail"}]}'), ('85925','36796','2','21','return JSON.parse(value).status == ''pass'' ? 1: 0','0',''), ('85926','36797','1','12','$[?(@.name=="influxdb_users_total")].value.first()','1',''), ('85927','36797','2','20','30m','0',''), ('85928','36798','1','12','$[?(@.name=="influxdb_uptime_seconds")].value.first()','0',''), ('85929','36799','1','12','$[?(@.name=="influxdb_tokens_total")].value.first()','1',''), ('85930','36799','2','20','30m','0',''), ('85931','36800','1','12','$[?(@.name=="influxdb_telegraf_plugins_count")].value.sum()','1',''), ('85932','36800','2','20','30m','0',''), ('85933','36801','1','12','$[?(@.name=="influxdb_telegrafs_total")].value.first()','1',''), ('85934','36801','2','20','30m','0',''), ('85935','36802','1','12','$[?(@.name=="task_executor_workers_busy")].value.first()','1',''), ('85936','36803','1','12','$[?(@.name=="task_executor_total_runs_active")].value.first()','1',''), ('85937','36804','1','12','$[?(@.name=="task_executor_total_runs_complete" && @.labels.status == "success")].value.sum()','1',''), ('85938','36804','2','10','','0',''), ('85939','36805','1','12','$[?(@.name=="task_executor_total_runs_complete" && @.labels.status == "failed")].value.sum()','1',''), ('85940','36805','2','10','','0',''), ('85941','36806','1','12','$[?(@.name=="influxdb_scrapers_total")].value.first()','1',''), ('85942','36806','2','20','30m','0',''), ('85943','36807','1','12','$[?(@.name=="influxdb_organizations_total")].value.first()','1',''), ('85944','36807','2','20','30m','0',''), ('85945','36808','1','12','$[?(@.name=="influxdb_dashboards_total")].value.first()','1',''), ('85946','36808','2','20','30m','0',''), ('85947','36809','1','12','$[?(@.name=="influxdb_buckets_total")].value.first()','1',''), ('85948','36809','2','20','30m','0',''), ('85949','36810','1','12','$[?(@.name=="boltdb_writes_total")].value.first()','1',''), ('85950','36810','2','10','','0',''), ('85951','36811','1','12','$[?(@.name=="boltdb_reads_total")].value.first()','1',''), ('85952','36811','2','10','','0',''), ('85953','36812','1','12','$[?(@.name=="influxdb_info")].labels.version.first()','0',''), ('85954','36812','2','20','3h','0',''), ('85955','36813','1','21','var result = []; JSON.parse(value).orgs.forEach(function (e) { result.push({ "{#ORG_ID}": e.id, "{#ORG_NAME}": e.name, "{#ORG_DESCRIPTION}": e.description }); }); return JSON.stringify(result)','0',''), ('85956','36813','2','20','1h','0',''), ('85957','36814','1','12','$[?(@.name=="http_query_response_bytes" && @.labels.status != "200" && @.labels.endpoint == "/api/v2/query" && @.labels.org_id == "{#ORG_ID}") ].value.first()','1',''), ('85958','36814','2','10','','0',''), ('85959','36815','1','12','$[?(@.name=="http_query_response_bytes" && @.labels.status == "200" && @.labels.endpoint == "/api/v2/query" && @.labels.org_id == "{#ORG_ID}") ].value.first()','1',''), ('85960','36815','2','10','','0',''), ('85961','36816','1','12','$[?(@.name=="http_query_request_count" && @.labels.status != "200" && @.labels.endpoint == "/api/v2/query" && @.labels.org_id == "{#ORG_ID}") ].value.first()','1',''), ('85962','36816','2','10','','0',''), ('85963','36817','1','12','$[?(@.name=="http_query_request_count" && @.labels.status == "200" && @.labels.endpoint == "/api/v2/query" && @.labels.org_id == "{#ORG_ID}") ].value.first()','1',''), ('85964','36817','2','10','','0',''), ('85965','36818','1','12','$[?(@.name=="http_query_request_bytes" && @.labels.status != "200" && @.labels.endpoint == "/api/v2/query" && @.labels.org_id == "{#ORG_ID}") ].value.first()','1',''), ('85966','36818','2','10','','0',''), ('85967','36819','1','12','$[?(@.name=="http_query_request_bytes" && @.labels.status == "200" && @.labels.endpoint == "/api/v2/query" && @.labels.org_id == "{#ORG_ID}") ].value.first()','1',''), ('85968','36819','2','10','','0',''), ('85975','36824','1','20','1h','0',''), ('85976','36825','1','20','1h','0',''), ('85994','36847','1','20','1d','0',''), ('85995','36848','1','20','1d','0',''), ('85996','36849','1','20','1d','0',''), ('85997','36850','1','20','1d','0',''), ('85998','36851','1','1','1024','0',''), ('85999','36852','1','1','1024','0',''), ('86002','36869','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('86003','36870','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('86004','36871','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('86005','36874','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('86006','36876','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('86007','36878','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('86008','36879','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('86026','36901','1','20','1d','0',''), ('86027','36902','1','20','1d','0',''), ('86028','36903','1','20','1d','0',''), ('86029','36904','1','20','1d','0',''), ('86030','36905','1','1','1024','0',''), ('86031','36906','1','1','1024','0',''), ('86034','36923','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('86035','36924','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('86036','36925','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('86037','36928','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('86038','36930','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('86039','36932','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('86040','36933','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('86058','36955','1','20','1d','0',''), ('86059','36956','1','20','1d','0',''), ('86060','36957','1','20','1d','0',''), ('86061','36958','1','20','1d','0',''), ('86062','36959','1','1','1024','0',''), ('86063','36960','1','1','1024','0',''), ('86066','36977','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('86067','36978','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('86068','36979','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('86069','36982','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('86070','36984','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('86071','36986','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('86072','36987','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('86090','37009','1','20','1d','0',''), ('86091','37010','1','20','1d','0',''), ('86092','37011','1','20','1d','0',''), ('86093','37012','1','20','1d','0',''), ('86094','37013','1','1','1024','0',''), ('86095','37014','1','1','1024','0',''), ('86098','37031','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('86099','37032','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('86100','37033','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('86101','37036','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('86102','37038','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('86103','37040','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('86104','37041','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('86122','37063','1','20','1d','0',''), ('86123','37064','1','20','1d','0',''), ('86124','37065','1','20','1d','0',''), ('86125','37066','1','20','1d','0',''), ('86126','37067','1','1','1024','0',''), ('86127','37068','1','1','1024','0',''), ('86130','37085','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('86131','37086','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('86132','37087','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('86133','37090','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('86134','37092','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('86135','37094','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('86136','37095','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('86154','37117','1','20','1d','0',''), ('86155','37118','1','20','1d','0',''), ('86156','37119','1','20','1d','0',''), ('86157','37120','1','20','1d','0',''), ('86158','37121','1','1','1024','0',''), ('86159','37122','1','1','1024','0',''), ('86162','37139','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('86163','37140','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('86164','37141','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('86165','37144','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('86166','37146','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('86167','37148','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('86168','37149','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('86186','37171','1','20','1d','0',''), ('86187','37172','1','20','1d','0',''), ('86188','37173','1','20','1d','0',''), ('86189','37174','1','20','1d','0',''), ('86190','37175','1','1','1024','0',''), ('86191','37176','1','1','1024','0',''), ('86194','37193','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('86195','37194','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('86196','37195','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('86197','37198','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('86198','37200','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('86199','37202','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('86200','37203','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('86218','37225','1','20','1d','0',''), ('86219','37226','1','20','1d','0',''), ('86220','37227','1','20','1d','0',''), ('86221','37228','1','20','1d','0',''), ('86222','37229','1','1','1024','0',''), ('86223','37230','1','1','1024','0',''), ('86226','37247','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('86227','37248','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('86228','37249','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('86229','37252','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('86230','37254','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('86231','37256','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('86232','37257','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('86250','37279','1','20','1d','0',''), ('86251','37280','1','20','1d','0',''), ('86252','37281','1','20','1d','0',''), ('86253','37282','1','20','1d','0',''), ('86254','37283','1','1','1024','0',''), ('86255','37284','1','1','1024','0',''), ('86258','37301','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('86259','37302','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('86260','37303','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('86261','37306','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('86262','37308','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('86263','37310','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('86264','37311','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('86282','37333','1','20','1d','0',''), ('86283','37334','1','20','1d','0',''), ('86284','37335','1','20','1d','0',''), ('86285','37336','1','20','1d','0',''), ('86286','37337','1','1','1024','0',''), ('86287','37338','1','1','1024','0',''), ('86290','37355','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('86291','37356','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('86292','37357','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('86293','37360','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('86294','37362','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('86295','37364','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('86296','37365','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('86314','37387','1','20','1d','0',''), ('86315','37388','1','20','1d','0',''), ('86316','37389','1','20','1d','0',''), ('86317','37390','1','20','1d','0',''), ('86318','37391','1','1','1024','0',''), ('86319','37392','1','1','1024','0',''), ('86322','37409','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('86323','37410','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('86324','37411','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('86325','37414','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('86326','37416','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('86327','37418','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('86328','37419','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('86346','37441','1','20','1d','0',''), ('86347','37442','1','20','1d','0',''), ('86348','37443','1','20','1d','0',''), ('86349','37444','1','20','1d','0',''), ('86350','37445','1','1','1024','0',''), ('86351','37446','1','1','1024','0',''), ('86354','37463','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('86355','37464','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('86356','37465','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('86357','37468','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('86358','37470','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('86359','37472','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('86360','37473','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('86378','37495','1','20','1d','0',''), ('86379','37496','1','20','1d','0',''), ('86380','37497','1','20','1d','0',''), ('86381','37498','1','20','1d','0',''), ('86382','37499','1','1','1024','0',''), ('86383','37500','1','1','1024','0',''), ('86386','37517','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('86387','37518','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('86388','37519','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('86389','37522','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('86390','37524','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('86391','37526','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('86392','37527','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('86410','37549','1','20','1d','0',''), ('86411','37550','1','20','1d','0',''), ('86412','37551','1','20','1d','0',''), ('86413','37552','1','20','1d','0',''), ('86414','37553','1','1','1024','0',''), ('86415','37554','1','1','1024','0',''), ('86418','37571','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('86419','37572','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('86420','37573','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('86421','37576','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('86422','37578','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('86423','37580','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('86424','37581','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('86442','37603','1','20','1d','0',''), ('86443','37604','1','20','1d','0',''), ('86444','37605','1','20','1d','0',''), ('86445','37606','1','20','1d','0',''), ('86446','37607','1','1','1024','0',''), ('86447','37608','1','1','1024','0',''), ('86450','37625','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('86451','37626','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('86452','37627','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('86453','37630','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('86454','37632','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('86455','37634','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('86456','37635','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('86474','37657','1','20','1d','0',''), ('86475','37658','1','20','1d','0',''), ('86476','37659','1','20','1d','0',''), ('86477','37660','1','20','1d','0',''), ('86478','37661','1','1','1024','0',''), ('86479','37662','1','1','1024','0',''), ('86482','37679','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('86483','37680','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('86484','37681','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('86485','37684','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('86486','37686','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('86487','37688','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('86488','37689','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('86506','37711','1','20','1d','0',''), ('86507','37712','1','20','1d','0',''), ('86508','37713','1','20','1d','0',''), ('86509','37714','1','20','1d','0',''), ('86510','37715','1','1','1024','0',''), ('86511','37716','1','1','1024','0',''), ('86514','37733','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('86515','37734','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('86516','37735','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('86517','37738','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('86518','37740','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('86519','37742','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('86520','37743','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('86538','37765','1','20','1d','0',''), ('86539','37766','1','20','1d','0',''), ('86540','37767','1','20','1d','0',''), ('86541','37768','1','20','1d','0',''), ('86542','37769','1','1','1024','0',''), ('86543','37770','1','1','1024','0',''), ('86546','37787','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('86547','37788','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('86548','37789','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('86549','37792','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('86550','37794','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('86551','37796','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('86552','37797','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('86570','37819','1','20','1d','0',''), ('86571','37820','1','20','1d','0',''), ('86572','37821','1','20','1d','0',''), ('86573','37822','1','20','1d','0',''), ('86574','37823','1','1','1024','0',''), ('86575','37824','1','1','1024','0',''), ('86578','37841','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('86579','37842','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('86580','37843','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('86581','37846','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('86582','37848','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('86583','37850','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('86584','37851','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('86602','37873','1','20','1d','0',''), ('86603','37874','1','20','1d','0',''), ('86604','37875','1','20','1d','0',''), ('86605','37876','1','20','1d','0',''), ('86606','37877','1','1','1024','0',''), ('86607','37878','1','1','1024','0',''), ('86610','37895','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('86611','37896','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('86612','37897','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('86613','37900','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('86614','37902','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('86615','37904','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('86616','37905','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('86634','37927','1','20','1d','0',''), ('86635','37928','1','20','1d','0',''), ('86636','37929','1','20','1d','0',''), ('86637','37930','1','20','1d','0',''), ('86638','37931','1','1','1024','0',''), ('86639','37932','1','1','1024','0',''), ('86642','37949','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('86643','37950','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('86644','37951','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('86645','37954','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('86646','37956','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('86647','37958','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('86648','37959','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('86666','37981','1','20','1d','0',''), ('86667','37982','1','20','1d','0',''), ('86668','37983','1','20','1d','0',''), ('86669','37984','1','20','1d','0',''), ('86670','37985','1','1','1024','0',''), ('86671','37986','1','1','1024','0',''), ('86674','38003','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('86675','38004','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('86676','38005','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('86677','38008','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('86678','38010','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('86679','38012','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('86680','38013','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('86698','38035','1','20','1d','0',''), ('86699','38036','1','20','1d','0',''), ('86700','38037','1','20','1d','0',''), ('86701','38038','1','20','1d','0',''), ('86702','38039','1','1','1024','0',''), ('86703','38040','1','1','1024','0',''), ('86706','38057','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('86707','38058','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('86708','38059','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('86709','38062','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('86710','38064','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('86711','38066','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('86712','38067','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('86730','38089','1','20','1d','0',''), ('86731','38090','1','20','1d','0',''), ('86732','38091','1','20','1d','0',''), ('86733','38092','1','20','1d','0',''), ('86734','38093','1','1','1024','0',''), ('86735','38094','1','1','1024','0',''), ('86738','38111','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('86739','38112','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('86740','38113','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('86741','38116','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('86742','38118','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('86743','38120','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('86744','38121','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('86762','38143','1','20','1d','0',''), ('86763','38144','1','20','1d','0',''), ('86764','38145','1','20','1d','0',''), ('86765','38146','1','20','1d','0',''), ('86766','38147','1','1','1024','0',''), ('86767','38148','1','1','1024','0',''), ('86770','38165','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('86771','38166','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('86772','38167','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('86773','38170','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('86774','38172','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('86775','38174','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('86776','38175','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('86794','38197','1','20','1d','0',''), ('86795','38198','1','20','1d','0',''), ('86796','38199','1','20','1d','0',''), ('86797','38200','1','20','1d','0',''), ('86798','38201','1','1','1024','0',''), ('86799','38202','1','1','1024','0',''), ('86802','38219','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('86803','38220','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('86804','38221','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('86805','38224','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('86806','38226','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('86807','38228','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('86808','38229','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('86826','38251','1','20','1d','0',''), ('86827','38252','1','20','1d','0',''), ('86828','38253','1','20','1d','0',''), ('86829','38254','1','20','1d','0',''), ('86830','38255','1','1','1024','0',''), ('86831','38256','1','1','1024','0',''), ('86834','38273','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('86835','38274','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('86836','38275','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('86837','38278','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('86838','38280','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('86839','38282','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('86840','38283','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('86858','38305','1','20','1d','0',''), ('86859','38306','1','20','1d','0',''), ('86860','38307','1','20','1d','0',''), ('86861','38308','1','20','1d','0',''), ('86862','38309','1','1','1024','0',''), ('86863','38310','1','1','1024','0',''), ('86866','38327','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('86867','38328','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('86868','38329','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('86869','38332','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('86870','38334','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('86871','38336','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('86872','38337','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('86890','38359','1','20','1d','0',''), ('86891','38360','1','20','1d','0',''), ('86892','38361','1','20','1d','0',''), ('86893','38362','1','20','1d','0',''), ('86894','38363','1','1','1024','0',''), ('86895','38364','1','1','1024','0',''), ('86898','38381','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('86899','38382','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('86900','38383','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('86901','38386','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('86902','38388','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('86903','38390','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('86904','38391','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('86922','38413','1','20','1d','0',''), ('86923','38414','1','20','1d','0',''), ('86924','38415','1','20','1d','0',''), ('86925','38416','1','20','1d','0',''), ('86926','38417','1','1','1024','0',''), ('86927','38418','1','1','1024','0',''), ('86930','38435','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('86931','38436','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('86932','38437','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('86933','38440','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('86934','38442','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('86935','38444','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('86936','38445','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('86954','38467','1','20','1d','0',''), ('86955','38468','1','20','1d','0',''), ('86956','38469','1','20','1d','0',''), ('86957','38470','1','20','1d','0',''), ('86958','38471','1','1','1024','0',''), ('86959','38472','1','1','1024','0',''), ('86962','38489','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('86963','38490','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('86964','38491','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('86965','38494','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('86966','38496','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('86967','38498','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('86968','38499','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('86986','38521','1','20','1d','0',''), ('86987','38522','1','20','1d','0',''), ('86988','38523','1','20','1d','0',''), ('86989','38524','1','20','1d','0',''), ('86990','38525','1','1','1024','0',''), ('86991','38526','1','1','1024','0',''), ('86994','38543','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('86995','38544','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('86996','38545','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('86997','38548','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('86998','38550','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('86999','38552','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('87000','38553','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('87018','38575','1','20','1d','0',''), ('87019','38576','1','20','1d','0',''), ('87020','38577','1','20','1d','0',''), ('87021','38578','1','20','1d','0',''), ('87022','38579','1','1','1024','0',''), ('87023','38580','1','1','1024','0',''), ('87026','38597','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('87027','38598','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('87028','38599','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('87029','38602','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('87030','38604','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('87031','38606','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('87032','38607','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('87050','38629','1','20','1d','0',''), ('87051','38630','1','20','1d','0',''), ('87052','38631','1','20','1d','0',''), ('87053','38632','1','20','1d','0',''), ('87054','38633','1','1','1024','0',''), ('87055','38634','1','1','1024','0',''), ('87058','38651','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('87059','38652','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('87060','38653','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('87061','38656','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('87062','38658','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('87063','38660','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('87064','38661','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('87082','38683','1','20','1d','0',''), ('87083','38684','1','20','1d','0',''), ('87084','38685','1','20','1d','0',''), ('87085','38686','1','20','1d','0',''), ('87086','38687','1','1','1024','0',''), ('87087','38688','1','1','1024','0',''), ('87090','38705','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('87091','38706','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('87092','38707','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('87093','38710','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('87094','38712','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('87095','38714','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('87096','38715','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('87114','38737','1','20','1d','0',''), ('87115','38738','1','20','1d','0',''), ('87116','38739','1','20','1d','0',''), ('87117','38740','1','20','1d','0',''), ('87118','38741','1','1','1024','0',''), ('87119','38742','1','1','1024','0',''), ('87122','38759','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('87123','38760','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('87124','38761','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('87125','38764','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('87126','38766','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('87127','38768','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('87128','38769','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('87146','38791','1','20','1d','0',''), ('87147','38792','1','20','1d','0',''), ('87148','38793','1','20','1d','0',''), ('87149','38794','1','20','1d','0',''), ('87150','38795','1','1','1024','0',''), ('87151','38796','1','1','1024','0',''), ('87154','38813','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('87155','38814','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('87156','38815','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('87157','38818','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('87158','38820','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('87159','38822','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('87160','38823','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('87178','38845','1','20','1d','0',''), ('87179','38846','1','20','1d','0',''), ('87180','38847','1','20','1d','0',''), ('87181','38848','1','20','1d','0',''), ('87182','38849','1','1','1024','0',''), ('87183','38850','1','1','1024','0',''), ('87186','38867','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('87187','38868','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('87188','38869','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('87189','38872','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('87190','38874','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('87191','38876','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('87192','38877','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('87210','38899','1','20','1d','0',''), ('87211','38900','1','20','1d','0',''), ('87212','38901','1','20','1d','0',''), ('87213','38902','1','20','1d','0',''), ('87214','38903','1','1','1024','0',''), ('87215','38904','1','1','1024','0',''), ('87218','38921','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('87219','38922','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('87220','38923','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('87221','38926','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('87222','38928','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('87223','38930','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('87224','38931','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('87242','38953','1','20','1d','0',''), ('87243','38954','1','20','1d','0',''), ('87244','38955','1','20','1d','0',''), ('87245','38956','1','20','1d','0',''), ('87246','38957','1','1','1024','0',''), ('87247','38958','1','1','1024','0',''), ('87250','38975','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('87251','38976','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('87252','38977','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('87253','38980','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('87254','38982','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('87255','38984','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('87256','38985','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('87274','39007','1','20','1d','0',''), ('87275','39008','1','20','1d','0',''), ('87276','39009','1','20','1d','0',''), ('87277','39010','1','20','1d','0',''), ('87278','39011','1','1','1024','0',''), ('87279','39012','1','1','1024','0',''), ('87282','39029','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('87283','39030','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('87284','39031','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('87285','39034','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('87286','39036','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('87287','39038','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('87288','39039','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('87306','39061','1','20','1d','0',''), ('87307','39062','1','20','1d','0',''), ('87308','39063','1','20','1d','0',''), ('87309','39064','1','20','1d','0',''), ('87310','39065','1','1','1024','0',''), ('87311','39066','1','1','1024','0',''), ('87314','39083','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('87315','39084','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('87316','39085','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('87317','39088','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('87318','39090','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('87319','39092','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('87320','39093','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('87338','39115','1','20','1d','0',''), ('87339','39116','1','20','1d','0',''), ('87340','39117','1','20','1d','0',''), ('87341','39118','1','20','1d','0',''), ('87342','39119','1','1','1024','0',''), ('87343','39120','1','1','1024','0',''), ('87346','39137','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('87347','39138','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('87348','39139','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('87349','39142','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('87350','39144','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('87351','39146','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('87352','39147','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('87370','39169','1','20','1d','0',''), ('87371','39170','1','20','1d','0',''), ('87372','39171','1','20','1d','0',''), ('87373','39172','1','20','1d','0',''), ('87374','39173','1','1','1024','0',''), ('87375','39174','1','1','1024','0',''), ('87378','39191','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('87379','39192','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('87380','39193','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('87381','39196','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('87382','39198','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('87383','39200','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('87384','39201','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('87402','39223','1','20','1d','0',''), ('87403','39224','1','20','1d','0',''), ('87404','39225','1','20','1d','0',''), ('87405','39226','1','20','1d','0',''), ('87406','39227','1','1','1024','0',''), ('87407','39228','1','1','1024','0',''), ('87410','39245','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('87411','39246','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('87412','39247','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('87413','39250','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('87414','39252','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('87415','39254','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('87416','39255','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('87434','39277','1','20','1d','0',''), ('87435','39278','1','20','1d','0',''), ('87436','39279','1','20','1d','0',''), ('87437','39280','1','20','1d','0',''), ('87438','39281','1','1','1024','0',''), ('87439','39282','1','1','1024','0',''), ('87442','39299','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('87443','39300','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('87444','39301','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('87445','39304','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('87446','39306','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('87447','39308','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('87448','39309','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('87466','39331','1','20','1d','0',''), ('87467','39332','1','20','1d','0',''), ('87468','39333','1','20','1d','0',''), ('87469','39334','1','20','1d','0',''), ('87470','39335','1','1','1024','0',''), ('87471','39336','1','1','1024','0',''), ('87474','39353','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('87475','39354','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('87476','39355','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('87477','39358','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('87478','39360','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('87479','39362','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('87480','39363','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('87498','39385','1','20','1d','0',''), ('87499','39386','1','20','1d','0',''), ('87500','39387','1','20','1d','0',''), ('87501','39388','1','20','1d','0',''), ('87502','39389','1','1','1024','0',''), ('87503','39390','1','1','1024','0',''), ('87506','39407','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('87507','39408','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('87508','39409','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('87509','39412','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('87510','39414','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('87511','39416','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('87512','39417','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('87530','39439','1','20','1d','0',''), ('87531','39440','1','20','1d','0',''), ('87532','39441','1','20','1d','0',''), ('87533','39442','1','20','1d','0',''), ('87534','39443','1','1','1024','0',''), ('87535','39444','1','1','1024','0',''), ('87538','39461','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('87539','39462','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('87540','39463','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('87541','39466','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('87542','39468','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('87543','39470','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('87544','39471','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('87562','39493','1','20','1d','0',''), ('87563','39494','1','20','1d','0',''), ('87564','39495','1','20','1d','0',''), ('87565','39496','1','20','1d','0',''), ('87566','39497','1','1','1024','0',''), ('87567','39498','1','1','1024','0',''), ('87570','39515','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('87571','39516','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('87572','39517','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('87573','39520','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('87574','39522','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('87575','39524','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('87576','39525','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('87594','39547','1','20','1d','0',''), ('87595','39548','1','20','1d','0',''), ('87596','39549','1','20','1d','0',''), ('87597','39550','1','20','1d','0',''), ('87598','39551','1','1','1024','0',''), ('87599','39552','1','1','1024','0',''), ('87602','39569','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('87603','39570','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('87604','39571','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('87605','39574','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('87606','39576','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('87607','39578','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('87608','39579','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('87626','39601','1','20','1d','0',''), ('87627','39602','1','20','1d','0',''), ('87628','39603','1','20','1d','0',''), ('87629','39604','1','20','1d','0',''), ('87630','39605','1','1','1024','0',''), ('87631','39606','1','1','1024','0',''), ('87634','39623','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('87635','39624','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('87636','39625','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('87637','39628','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('87638','39630','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('87639','39632','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('87640','39633','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('87658','39655','1','20','1d','0',''), ('87659','39656','1','20','1d','0',''), ('87660','39657','1','20','1d','0',''), ('87661','39658','1','20','1d','0',''), ('87662','39659','1','1','1024','0',''), ('87663','39660','1','1','1024','0',''), ('87666','39677','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('87667','39678','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('87668','39679','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('87669','39682','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('87670','39684','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('87671','39686','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('87672','39687','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('87690','39709','1','20','1d','0',''), ('87691','39710','1','20','1d','0',''), ('87692','39711','1','20','1d','0',''), ('87693','39712','1','20','1d','0',''), ('87694','39713','1','1','1024','0',''), ('87695','39714','1','1','1024','0',''), ('87698','39731','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} 0','0',''), ('87699','39732','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} 0','0',''), ('87700','39733','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} 0','0',''), ('87701','39736','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} 0','0',''), ('87702','39738','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} 0','0',''), ('87703','39740','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('87704','39741','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('87705','39742','1','20','12h','0',''), ('87706','39744','1','16','$.error','1',''), ('87707','39745','1','12','$.error','0',''), ('87708','39745','2','20','1h','0',''), ('87709','39746','1','12','$.info.apiVersion','0',''), ('87710','39747','1','12','$.info.build','0',''), ('87711','39747','2','20','12h','0',''), ('87712','39748','1','12','$.info.version','0',''), ('87713','39748','2','20','12h','0',''), ('87714','39749','1','12','$.edges','0',''), ('87715','39749','2','20','1h','0',''), ('87716','39750','1','12','$.gateways','0',''), ('87717','39750','2','20','1h','0',''), ('87718','39751','1','12','$.links','0',''), ('87719','39751','2','20','1h','0',''), ('87720','39752','1','12','$.edgeSDWanPath','0',''), ('87721','39752','2','20','1h','0',''), ('87722','39753','1','12','$.edgeSDWan','0',''), ('87723','39753','2','20','1h','0',''), ('87724','39754','1','12','$.activationState','0',''), ('87725','39754','2','20','1h','0',''), ('87726','39754','3','21','switch (value) { case ''PENDING'': return 0; case ''ACTIVATED'': return 1; default: return 10; }','0',''), ('87727','39755','1','12','$.description','0',''), ('87728','39755','2','20','12h','0',''), ('87729','39756','1','12','$.haState','0',''), ('87730','39756','2','20','1h','0',''), ('87731','39756','3','21','switch (value) { case ''UNCONFIGURED'': return 0; case ''READY'': return 1; case ''PENDING_INIT'': return 2; case ''FAILED'': return 3; default: return 10; }','0',''), ('87732','39757','1','12','$.modelNumber','0',''), ('87733','39757','2','20','12h','0',''), ('87734','39758','1','12','$.serviceUpSince','0',''), ('87735','39758','2','21','value == ''0000-00-00 00:00:00'' ? value = 0 : value = Math.round((Date.now() - new Date(value).valueOf()) / 1000); return value;','0',''), ('87736','39759','1','12','$.softwareVersion','0',''), ('87737','39759','2','20','12h','0',''), ('87738','39760','1','12','$.edgeState','0',''), ('87739','39760','2','20','1h','0',''), ('87740','39760','3','21','switch (value) { case ''OFFLINE'': return 0; case ''CONNECTED'': return 1; case ''NEVER_ACTIVATED'': return 2; default: return 10; }','0',''), ('87741','39761','1','12','$.systemUpSince','0',''), ('87742','39761','2','21','value == ''0000-00-00 00:00:00'' ? value = 0 : value = Math.round((Date.now() - new Date(value).valueOf()) / 1000); return value;','0',''), ('87743','39762','1','12','$.connectedEdges','0',''), ('87744','39763','1','12','$.description','0',''), ('87745','39763','2','20','12h','0',''), ('87746','39764','1','12','$.ipAddress','0',''), ('87747','39764','2','20','1h','0',''), ('87748','39765','1','12','$.serviceUpSince','0',''), ('87749','39765','2','21','value == ''0000-00-00 00:00:00'' ? value = 0 : value = Math.round((Date.now() - new Date(value).valueOf()) / 1000); return value;','0',''), ('87750','39766','1','12','$.gatewayState','0',''), ('87751','39766','2','20','1h','0',''), ('87752','39767','1','12','$.systemUpSince','0',''), ('87753','39767','2','21','value == ''0000-00-00 00:00:00'' ? value = 0 : value = Math.round((Date.now() - new Date(value).valueOf()) / 1000); return value;','0',''), ('87754','39768','1','12','$.utilizationDetail.cpu','0',''), ('87755','39769','1','12','$.utilizationDetail.load','0',''), ('87756','39770','1','12','$.utilizationDetail.memory','0',''), ('87757','39771','1','12','$.utilizationDetail.overall','0',''), ('87758','39772','1','12','$.bestLossPctRx','0',''), ('87759','39773','1','12','$.bestLossPctTx','0',''), ('87760','39774','1','12','$.bytesRx','0',''), ('87761','39775','1','12','$.bytesTx','0',''), ('87762','39776','1','12','$.link.linkLastActive','0',''), ('87763','39776','2','21','return Math.round((Date.now() - new Date(value).valueOf()) / 1000);','0',''), ('87764','39777','1','12','$.packetsRx','0',''), ('87765','39778','1','12','$.packetsTx','0',''), ('87766','39779','1','12','$.link.linkState','0',''), ('87767','39779','2','20','1h','0',''), ('87768','39779','3','21','switch (value) { case ''UNSTABLE'': return 0; case ''STABLE'': return 1; case ''DISCONNECTED'': return 2; default: return 10; }','0',''), ('87769','39780','1','12','$.totalBytes','0',''), ('87770','39781','1','12','$.totalPackets','0',''), ('87771','39782','1','12','$.metrics.bytesRx','0',''), ('87772','39783','1','12','$.metrics.bytesTx','0',''), ('87773','39784','1','12','$.metrics.packetsRx','0',''), ('87774','39785','1','12','$.metrics.packetsTx','0',''), ('87775','39786','1','12','$.metrics.packetLossRx','0',''), ('87776','39787','1','12','$.metrics.packetLossTx','0',''), ('87777','39788','1','12','$.metrics.totalBytes','0',''), ('87778','39789','1','12','$.metrics.totalPackets','0',''), ('87779','39790','1','12','$.pathStatusCount.dead','0',''), ('87780','39791','1','12','$.description','0',''), ('87781','39791','2','20','12h','0',''), ('87782','39792','1','12','$.pathStatusCount.stable','0',''), ('87783','39793','1','12','$.pathStatusCount.standby','0',''), ('87784','39794','1','12','$.pathStatusCount.total','0',''), ('87785','39795','1','12','$.pathStatusCount.unknown','0',''), ('87786','39796','1','12','$.pathStatusCount.unstable','0',''), ('87791','39803','1','12','$.cpu_stats.cpu_usage.percent_usage','0',''), ('87792','39808','1','12','$.address','0',''), ('87793','39808','2','20','12h','0',''), ('87794','39809','1','12','$.lastaccess_age','0',''), ('87795','39810','1','12','$.lastaccess','0',''), ('87796','39811','1','12','$.status','0',''), ('87797','39811','2','20','12h','0',''), ('87798','39812','1','12','$.address','0',''), ('87799','39812','2','20','12h','0',''), ('87800','39813','1','12','$.lastaccess_age','0',''), ('87801','39814','1','12','$.lastaccess','0',''), ('87802','39815','1','12','$.status','0',''), ('87803','39815','2','20','12h','0',''), ('87804','39816','1','12','$.data.ha','0',''), ('87805','39817','1','12','$.address','0',''), ('87806','39817','2','20','12h','0',''), ('87807','39818','1','12','$.lastaccess_age','0',''), ('87808','39819','1','12','$.lastaccess','0',''), ('87809','39820','1','12','$.status','0',''), ('87810','39820','2','20','12h','0',''), ('87815','39821','1','12','$.receive','0',''), ('87816','39821','2','10','','0',''), ('87817','31358','3','10','','2','-1'), ('87818','39824','1','12','$.data.process[''odbc poller''].busy.avg','0',''), ('87819','39825','1','12','$.data.process[''odbc poller''].busy.avg','0',''), ('87821','39829','1','22','apiserver_request_terminations_total function sum','1',''), ('87822','39829','2','10','','0',''), ('87823','39830','1','22','grpc_client_msg_sent_total function sum','1',''), ('87824','39830','2','10','','0',''), ('87825','39831','1','22','rest_client_requests_total{code =~ "4.."} function sum','1',''), ('87826','39831','2','10','','0',''), ('87827','39832','1','22','rest_client_requests_total{code =~ "3.."} function sum','1',''), ('87828','39832','2','10','','0',''), ('87829','39833','1','22','rest_client_requests_total{code =~ "2.."} function sum','1',''), ('87830','39833','2','10','','0',''), ('87831','39834','1','22','process_virtual_memory_bytes value ','1',''), ('87832','39835','1','22','process_resident_memory_bytes value ','1',''), ('87833','39836','1','22','process_open_fds value ','1',''), ('87834','39837','1','22','process_max_fds value ','1',''), ('87835','39838','1','22','grpc_client_started_total function sum','1',''), ('87836','39838','2','10','','0',''), ('87837','39839','1','22','go_threads value ','1',''), ('87838','39840','1','22','grpc_client_msg_received_total function sum','1',''), ('87839','39840','2','10','','0',''), ('87840','39841','1','22','apiserver_request_total{code = "0"} function sum','1',''), ('87841','39841','2','10','','0',''), ('87842','39842','1','22','go_goroutines function sum','1',''), ('87843','39843','1','22','process_cpu_seconds_total value ','0',''), ('87844','39843','2','10','','0',''), ('87845','39843','3','1','100','0',''), ('87846','39844','1','22','apiserver_audit_event_total function sum','1',''), ('87847','39845','1','22','apiserver_tls_handshake_errors_total function sum','1',''), ('87848','39846','1','22','apiserver_request_total{code =~ "5.."} function sum','1',''), ('87849','39846','2','10','','0',''), ('87850','39847','1','22','apiserver_request_total{code =~ "4.."} function sum','1',''), ('87851','39847','2','10','','0',''), ('87852','39848','1','22','apiserver_request_total{code =~ "3.."} function sum','1',''), ('87853','39848','2','10','','0',''), ('87854','39849','1','22','apiserver_request_total{code =~ "2.."} function sum','1',''), ('87855','39849','2','10','','0',''), ('87856','39850','1','22','rest_client_requests_total{code =~ "5.."} function sum','1',''), ('87857','39850','2','10','','0',''), ('87858','39851','1','23','apiserver_registered_watchers{kind =~ ".*"}','0',''), ('87859','39851','2','21','var lookup = {}, result = []; JSON.parse(value).forEach(function (item) { var kind = item.labels.kind; if (!(lookup[kind])) { lookup[kind] = 1; result.push({ ''{#KIND}'': kind }); } }); return JSON.stringify(result);','0',''), ('87860','39851','3','20','3h','0',''), ('87861','39852','1','23','authenticated_user_requests{username =~ ".*"}','0',''), ('87862','39852','2','21','var lookup = {}, result = []; JSON.parse(value).forEach(function (item) { var name = item.labels.username; if (!(lookup[result])) { lookup[name] = 1; result.push({ ''{#NAME}'': name }); } }); return JSON.stringify(result);','0',''), ('87863','39852','3','20','3h','0',''), ('87864','39853','1','23','authentication_attempts{result =~ ".*"}','0',''), ('87865','39853','2','21','var lookup = {}, result = []; JSON.parse(value).forEach(function (item) { var result_api = item.labels.result; if (!(lookup[result])) { lookup[result_api] = 1; result.push({ ''{#RESULT}'': result_api }); } }); return JSON.stringify(result);','0',''), ('87866','39853','3','20','3h','0',''), ('87870','39855','1','23','etcd_object_counts{resource =~ ".*"}','0',''), ('87871','39855','2','21','var lookup = {}, result = []; JSON.parse(value).forEach(function (item) { var resource = item.labels.resource; if (!(lookup[resource])) { lookup[resource] = 1; result.push({ ''{#RESOURCE}'': resource }); } }); return JSON.stringify(result);','0',''), ('87872','39855','3','20','3h','0',''), ('87873','39856','1','23','grpc_client_handled_total{grpc_code =~ ".*"}','0',''), ('87874','39856','2','21','var lookup = {}, result = []; JSON.parse(value).forEach(function (item) { var grpc_code = item.labels.grpc_code; if (!(lookup[grpc_code])) { lookup[grpc_code] = 1; result.push({ ''{#GRPC_CODE}'': grpc_code }); } }); return JSON.stringify(result);','0',''), ('87875','39856','3','20','3h','0',''), ('87876','39857','1','23','apiserver_current_inflight_requests{request_kind =~ ".*"}','0',''), ('87877','39857','2','21','var lookup = {}, result = []; JSON.parse(value).forEach(function (item) { var request_kind = item.labels.request_kind; if (!(lookup[request_kind])) { lookup[request_kind] = 1; result.push({ ''{#KIND}'': request_kind }); } }); return JSON.stringify(result);','0',''), ('87878','39857','3','20','3h','0',''), ('87879','39858','1','23','apiserver_longrunning_gauge{resource =~ ".*", scope =~ ".*", verb =~ ".*"}','1',''), ('87880','39858','2','21','var lookup = {}, result = []; JSON.parse(value).forEach(function (item) { var request_kind = item.labels.resource + item.labels.scope + item.labels.verb; if (!(lookup[request_kind])) { lookup[request_kind] = 1; result.push({ ''{#RESOURCE}'': item.labels.resource, ''{#SCOPE}'': item.labels.scope, ''{#VERB}'': item.labels.verb }); } }); return JSON.stringify(result);','0',''), ('87881','39858','3','20','3h','0',''), ('87882','39859','1','23','{__name__=~ "apiserver_request_duration_*", verb =~ ".*"}','0',''), ('87883','39859','2','21','var lookup = {}, lookup_histogram = {}, result = []; JSON.parse(value).forEach(function (item) { if (item.name === ''apiserver_request_duration_seconds_count'') { var label_verb = item.labels.verb; if (lookup[label_verb]) { return; } lookup[label_verb] = 1; result.push({ ''{#TYPE}'': ''totals'', ''{#VERB}'': label_verb }); } else if (item.name === ''apiserver_request_duration_seconds_bucket'') { var labels = item.labels.verb + item.labels.le; if (lookup_histogram[labels]) { return; } lookup_histogram[labels] = 1; result.push({ ''{#TYPE}'': ''buckets'', ''{#VERB}'': item.labels.verb, ''{#LE}'': item.labels.le }); } }); return JSON.stringify(result);','0',''), ('87884','39859','3','20','3h','0',''), ('87885','39860','1','23','workqueue_adds_total{name =~ ".*"}','0',''), ('87886','39860','2','21','var lookup = {}, result = []; JSON.parse(value).forEach(function (item) { var name = item.labels.name; if (!(lookup[name])) { lookup[name] = 1; result.push({ ''{#NAME}'': name }); } }); return JSON.stringify(result);','0',''), ('87887','39860','3','20','3h','0',''), ('87888','39865','1','22','apiserver_registered_watchers{kind = "{#KIND}"} value ','1',''), ('87889','39866','1','22','authenticated_user_requests{result = "{#NAME}"} value ','1',''), ('87890','39866','2','10','','0',''), ('87891','39867','1','22','authentication_attempts{result = "{#RESULT}"} function sum','1',''), ('87892','39867','2','10','','0',''), ('87894','39869','1','22','etcd_object_counts{ resource = "{#RESOURCE}"} value ','1',''), ('87895','39870','1','22','grpc_client_handled_total{grpc_code = "{#GRPC_CODE}"} function sum','1',''), ('87896','39870','2','10','','0',''), ('87897','39871','1','22','apiserver_current_inflight_requests{request_kind = "{#KIND}"} value ','1',''), ('87898','39872','1','22','apiserver_longrunning_gauge{resource = "{#RESOURCE}", scope = "{#SCOPE}", verb = "{#VERB}"} function sum','1',''), ('87899','39873','1','22','apiserver_request_duration_seconds_bucket{le="{#LE}",verb="{#VERB}"} function sum','0',''), ('87900','39874','1','22','workqueue_adds_total{name = "{#NAME}"} value ','1',''), ('87901','39874','2','10','','0',''), ('87902','39875','1','22','workqueue_depth{name = "{#NAME}"} value ','1',''), ('87904','39877','1','22','rest_client_requests_total{code =~ "2.."} function sum','1',''), ('87905','39877','2','10','','0',''), ('87906','39878','1','22','rest_client_requests_total{code =~ "3.."} function sum','1',''), ('87907','39878','2','10','','0',''), ('87908','39879','1','22','rest_client_requests_total{code =~ "4.."} function sum','1',''), ('87909','39879','2','10','','0',''), ('87910','39880','1','22','rest_client_requests_total{code =~ "5.."} function sum','1',''), ('87911','39880','2','10','','0',''), ('87912','39881','1','22','process_cpu_seconds_total value ','0',''), ('87913','39881','2','10','','0',''), ('87914','39881','3','1','100','0',''), ('87915','39882','1','22','go_goroutines function sum','1',''), ('87916','39883','1','22','go_threads value ','1',''), ('87917','39884','1','22','leader_election_master_status value ','1',''), ('87918','39885','1','22','process_max_fds value ','1',''), ('87919','39886','1','22','process_open_fds value ','1',''), ('87920','39887','1','22','process_resident_memory_bytes value ','1',''), ('87921','39888','1','22','process_virtual_memory_bytes value ','1',''), ('87922','39889','1','23','{__name__=~ "workqueue_*", name =~ ".*"}','0',''), ('87923','39889','2','21','var lookup = {}, result = []; JSON.parse(value).forEach(function (item) { if (item.name === ''workqueue_adds_total'') { var label_name = item.labels.name; if (lookup[label_name]) { return; } lookup[label_name] = 1; result.push({ ''{#TYPE}'': ''totals'', ''{#NAME}'': label_name }); } else if (item.name === ''workqueue_work_duration_seconds_bucket'') { result.push({ ''{#TYPE}'': ''buckets'', ''{#NAME}'': item.labels.name, ''{#LE}'': item.labels.le }); } }); return JSON.stringify(result);','0',''), ('87924','39889','3','20','3h','0',''), ('87926','39898','1','22','workqueue_work_duration_seconds_bucket{name = "{#NAME}",le = "{#LE}"} value ','1',''), ('87927','39899','1','22','workqueue_queue_duration_seconds_bucket{name = "{#NAME}",le = "{#LE}"} value ','1',''), ('87928','39900','1','22','workqueue_adds_total{name = "{#NAME}"} value ','1',''), ('87929','39900','2','10','','0',''), ('87930','39901','1','22','workqueue_depth{name = "{#NAME}"} value ','1',''), ('87931','39902','1','22','workqueue_longest_running_processor_seconds{name = "{#NAME}"} value ','1',''), ('87932','39903','1','22','workqueue_retries_total{name = "{#NAME}"} value ','1',''), ('87933','39903','2','10','','0',''), ('87934','39904','1','22','workqueue_unfinished_work_seconds{name = "{#NAME}"} value ','1',''), ('87935','39908','1','12','$.items[*].status.containerStatuses[*].restartCount.sum()','0',''), ('87936','39909','1','12','$.items[*].status.containerStatuses[?(@.started == ''true'')].length()','0',''), ('87937','39910','1','22','machine_cpu_cores value ','0',''), ('87938','39911','1','22','process_resident_memory_bytes value ','0',''), ('87939','39912','1','12','$.items[?(@.status.phase == "Running")].length()','0',''), ('87940','39913','1','22','process_max_fds value ','0',''), ('87941','39914','1','22','process_open_fds value ','0',''), ('87942','39915','1','22','process_virtual_memory_bytes value ','0',''), ('87943','39916','1','12','$.items[*].status.containerStatuses[?(@.lastState.terminated.exitCode > 0)].length()','0',''), ('87944','39917','1','23','container_memory_cache{container !~ "POD", namespace =~ ".*", pod =~ ".*"}','0',''), ('87945','39917','2','21','var lookup = {}, result = []; JSON.parse(value).forEach(function (item) { var container_labels = item.labels.container + item.labels.namespace + item.labels.pod; if (item.labels.container !== '''' && !lookup[container_labels]) { lookup[container_labels] = 1; result.push({ ''{#CONTAINER}'': item.labels.container, ''{#NAMESPACE}'': item.labels.namespace, ''{#POD}'': item.labels.pod }); } }) return JSON.stringify(result);','0',''), ('87946','39918','1','12','$.items','1',''), ('87947','39919','1','23','rest_client_requests_total{code =~ ".*", host =~ ".*", method =~ ".*"}','0',''), ('87948','39919','2','21','var lookup = {}, result = []; JSON.parse(value).forEach(function (item) { var request_labels = item.labels.code + item.labels.host + item.labels.method; if (!(lookup[request_labels])) { lookup[request_labels] = 1; result.push({ ''{#CODE}'': item.labels.code, ''{#HOST}'': item.labels.host, ''{#METHOD}'': item.labels.method }); } }) return JSON.stringify(result);','0',''), ('87949','39920','1','23','{__name__=~ "kubelet_runtime_operations_*", operation_type =~ ".*"}','0',''), ('87950','39920','2','21','var lookup = {}, lookup_histogram = {}, result = []; JSON.parse(value).forEach(function (item) { if (item.name === ''kubelet_runtime_operations_total''){ var op_type = item.labels.operation_type; if (lookup[op_type]) { return; } lookup[op_type] = 1; result.push({ ''{#TYPE}'': ''totals'', ''{#OP_TYPE}'': op_type }); } else if (item.name === ''kubelet_runtime_operations_duration_seconds_bucket''){ var labels = item.labels.operation_type + item.labels.le; if (lookup_histogram[labels]) { return; } lookup_histogram[labels] = 1; result.push({ ''{#TYPE}'': ''buckets'', ''{#OP_TYPE}'': item.labels.operation_type, ''{#LE}'': item.labels.le }); } }); return JSON.stringify(result);','0',''), ('87951','39920','3','20','3h','0',''), ('87952','39925','1','22','container_memory_cache{container="{#CONTAINER}", namespace="{#NAMESPACE}", pod="{#POD}"} value ','0',''), ('87953','39925','2','20','3h','0',''), ('87954','39926','1','22','container_memory_max_usage_bytes{container="{#CONTAINER}", namespace="{#NAMESPACE}", pod="{#POD}"} value ','0',''), ('87955','39926','2','20','3h','0',''), ('87956','39927','1','22','container_memory_rss{container="{#CONTAINER}", namespace="{#NAMESPACE}", pod="{#POD}"} value ','0',''), ('87957','39927','2','20','3h','0',''), ('87958','39928','1','22','container_memory_swap{container="{#CONTAINER}", namespace="{#NAMESPACE}", pod="{#POD}"} value ','0',''), ('87959','39928','2','20','3h','0',''), ('87960','39929','1','22','container_memory_usage_bytes{container="{#CONTAINER}", namespace="{#NAMESPACE}", pod="{#POD}"} value ','0',''), ('87961','39929','2','20','3h','0',''), ('87962','39930','1','22','container_memory_working_set_bytes{container="{#CONTAINER}", namespace="{#NAMESPACE}", pod="{#POD}"} value ','0',''), ('87963','39930','2','20','3h','0',''), ('87964','39931','1','22','container_cpu_load_average_10s{container!="", container!="POD", pod="{#NAME}", namespace="{#NAMESPACE}"} function sum','1',''), ('87965','39932','1','22','container_cpu_system_seconds_total{container!="", container!="POD", pod="{#NAME}", namespace="{#NAMESPACE}"} function sum','1',''), ('87966','39933','1','22','container_cpu_user_seconds_total{container!="", container!="POD", pod="{#NAME}", namespace="{#NAMESPACE}"} function sum','1',''), ('87967','39934','1','22','rest_client_requests_total{code="{#CODE}", host="{#HOST}", method="{#METHOD}"} value ','0',''), ('87968','39934','2','20','3h','0',''), ('87969','39935','1','22','kubelet_runtime_operations_duration_seconds_bucket{le="{#LE}",operation_type="{#OP_TYPE}"} function sum','0',''), ('87970','39936','1','22','kubelet_runtime_operations_total{operation_type="{#OP_TYPE}"} value ','1',''), ('87971','39936','2','10','','0',''), ('87972','39938','1','12','$.error','2',''), ('87973','39938','2','20','3h','0',''), ('87976','39942','1','12','$.Pods','0',''), ('87977','39942','2','20','3h','0',''), ('88021','39970','1','12','$.conditions[?(@.type == "ContainersReady")].status.first()','1',''), ('88022','39970','2','21','return [''True'', ''False'', ''Unknown''].indexOf(value) + 1 || ''Problem with status processing in JS'';','0',''), ('88023','39971','1','12','$.conditions[?(@.type == "Initialized")].status.first()','1',''), ('88024','39971','2','21','return [''True'', ''False'', ''Unknown''].indexOf(value) + 1 || ''Problem with status processing in JS'';','0',''), ('88025','39972','1','12','$.conditions[?(@.type == "Ready")].status.first()','1',''), ('88026','39972','2','21','return [''True'', ''False'', ''Unknown''].indexOf(value) + 1 || ''Problem with status processing in JS'';','0',''), ('88027','39973','1','12','$.conditions[?(@.type == "PodScheduled")].status.first()','1',''), ('88028','39973','2','21','return [''True'', ''False'', ''Unknown''].indexOf(value) + 1 || ''Problem with status processing in JS'';','0',''), ('88029','39974','1','12','$.containers.restartCount','1',''), ('88030','39975','1','12','$.phase','1',''), ('88031','39975','2','21','return [''Pending'', ''Running'', ''Succeeded'', ''Failed'', ''Unknown''].indexOf(value) + 1 || ''Problem with status processing in JS'';','0',''), ('88032','39976','1','12','$.startTime','1',''), ('88033','39976','2','21','return Math.floor((Date.now() - new Date(value)) / 1000);','0',''), ('88035','39986','1','22','rest_client_requests_total{code =~ "5.."} function sum','1',''), ('88036','39986','2','10','','0',''), ('88037','39987','1','22','process_cpu_seconds_total value ','0',''), ('88038','39987','2','10','','0',''), ('88039','39987','3','1','100','0',''), ('88040','39988','1','22','rest_client_requests_total{code =~ "4.."} function sum','1',''), ('88041','39988','2','10','','0',''), ('88042','39989','1','22','go_goroutines function sum','1',''), ('88043','39990','1','22','rest_client_requests_total{code =~ "3.."} function sum','1',''), ('88044','39990','2','10','','0',''), ('88045','39991','1','22','process_max_fds value ','1',''), ('88046','39992','1','22','process_open_fds value ','1',''), ('88047','39993','1','22','process_resident_memory_bytes value ','1',''), ('88048','39994','1','22','process_virtual_memory_bytes value ','1',''), ('88049','39995','1','22','scheduler_schedule_attempts_total{result = "error"} function sum','1',''), ('88050','39995','2','10','','0',''), ('88051','39996','1','22','scheduler_schedule_attempts_total{result = "scheduled"} function sum','1',''), ('88052','39996','2','10','','0',''), ('88053','39997','1','22','scheduler_schedule_attempts_total{result = "unschedulable"} function sum','1',''), ('88054','39997','2','10','','0',''), ('88055','39998','1','22','rest_client_requests_total{code =~ "2.."} function sum','1',''), ('88056','39998','2','10','','0',''), ('88057','39999','1','22','go_threads value ','1',''), ('88058','40000','1','23','{__name__=~ "scheduler_e2e_scheduling_duration_*", result =~ ".*"}','0',''), ('88059','40000','2','21','var lookup = {}, result = []; JSON.parse(value).forEach(function (item) { if (item.name === "scheduler_e2e_scheduling_duration_seconds_count"){ var label_result = item.labels.result; if (lookup[label_result]) { return; } lookup[label_result] = 1; result.push({ ''{#TYPE}'': ''totals'', ''{#RESULT}'': label_result }); } else if (item.name === "scheduler_e2e_scheduling_duration_seconds_bucket"){ result.push({ ''{#TYPE}'': ''buckets'', ''{#RESULT}'': item.labels.result, ''{#LE}'': item.labels.le }); } }); return JSON.stringify(result);','0',''), ('88060','40000','3','20','3h','0',''), ('88061','40001','1','23','{__name__=~ "scheduler_binding_duration_seconds_*"}','0',''), ('88062','40001','2','21','var lookup = {}, result = []; JSON.parse(value).forEach(function (item) { if (item.name === "scheduler_binding_duration_seconds_count"){ result.push({ ''{#TYPE}'': ''totals'', ''{#SINGLETON}'': '''' }); } else if (item.name === "scheduler_binding_duration_seconds_bucket"){ result.push({ ''{#TYPE}'': ''buckets'', ''{#LE}'': item.labels.le }); } }); return JSON.stringify(result);','0',''), ('88063','40001','3','20','3h','0',''), ('88064','40002','1','23','{__name__=~ "scheduler_scheduling_algorithm_duration_seconds_*"}','0',''), ('88065','40002','2','21','var lookup = {}, result = []; JSON.parse(value).forEach(function (item) { if (item.name === "scheduler_scheduling_algorithm_duration_seconds_count"){ result.push({ ''{#TYPE}'': ''totals'', ''{#SINGLETON}'': '''' }); } else if (item.name === "scheduler_scheduling_algorithm_duration_seconds_bucket"){ result.push({ ''{#TYPE}'': ''buckets'', ''{#LE}'': item.labels.le }); } }); return JSON.stringify(result);','0',''), ('88066','40002','3','20','3h','0',''), ('88067','40007','1','22','scheduler_e2e_scheduling_duration_seconds_bucket{result = "{#RESULT}",le = "{#LE}"} value ','1',''), ('88068','40008','1','22','scheduler_binding_duration_seconds_bucket{le = "{#LE}"} value ','1',''), ('88069','40009','1','22','scheduler_scheduling_algorithm_duration_seconds_bucket{le = "{#LE}"} value ','1',''), ('88070','40012','1','21',E'var output = [], component; value.split(/\\n/).forEach(function (entry) { if (component = entry.match(/^\\[.+\\](.+)\\s(\\w+)$/)) { output.push({ name: component[1], value: component[2] }); } }); return JSON.stringify(output);','0',''), ('88071','40013','1','21',E'var output = [], component; value.split(/\\n/).forEach(function (entry) { if (component = entry.match(/^\\[.+\\](.+)\\s(\\w+)$/)) { output.push({ name: component[1], value: component[2] }); } }); return JSON.stringify(output);','0',''), ('88072','40016','1','22','kube_deployment_created function count','1',''), ('88073','40017','1','22','kube_namespace_created function count','1',''), ('88074','40018','1','22','kube_node_created function count','1',''), ('88075','40019','1','22','kube_service_created function count','1',''), ('88076','40020','1','22','kube_statefulset_created function count','1',''), ('88077','40022','1','12','$.items','1',''), ('88078','40022','2','20','3h','0',''), ('88079','40024','1','23','kube_daemonset_status_number_ready','0',''), ('88082','40025','1','23','kube_deployment_spec_paused','0',''), ('88083','40025','2','20','3h','0',''), ('88085','40026','1','23','kube_endpoint_created','0',''), ('88088','40027','1','20','3h','0',''), ('88090','40028','1','23','kube_node_info','0',''), ('88093','40029','1','23','kube_pod_start_time','0',''), ('88096','40030','1','23','kube_persistentvolumeclaim_info','0',''), ('88097','40030','2','21','var input = JSON.parse(value), lookup = {}, output = []; input.forEach(function (metric) { var namespace = metric.labels.namespace; if (!(lookup[namespace])) { lookup[namespace] = 1; output.push({ ''{#IS_SUM}'': '''', ''{#NAMESPACE}'': metric.labels.namespace }); } output.push({ ''{#NAME}'': metric.labels.persistentvolumeclaim, ''{#NAMESPACE}'': metric.labels.namespace }); }); return JSON.stringify(output);','0',''), ('88098','40030','3','20','3h','0',''), ('88099','40031','1','20','3h','0',''), ('88101','40032','1','23','kube_replicaset_status_replicas','0',''), ('88102','40032','2','20','3h','0',''), ('88104','40034','1','23','kube_statefulset_status_replicas','0',''), ('88105','40034','2','20','3h','0',''), ('88107','40036','1','12','$.items.[?(@.metadata.name == "{#NAME}")].conditions[?(@.type == "Healthy")].status.first()','1',''), ('88108','40037','1','22','kube_daemonset_status_desired_number_scheduled{namespace="{#NAMESPACE}", daemonset="{#NAME}"} value ','1',''), ('88109','40038','1','22','kube_daemonset_status_number_misscheduled{namespace="{#NAMESPACE}", daemonset="{#NAME}"} value ','1',''), ('88110','40039','1','22','kube_daemonset_status_number_ready{namespace="{#NAMESPACE}", daemonset="{#NAME}"} value ','1',''), ('88111','40040','1','22','kube_daemonset_status_current_number_scheduled{namespace="{#NAMESPACE}", daemonset="{#NAME}"} value ','1',''), ('88112','40041','1','22','kube_daemonset_status_updated_number_scheduled{namespace="{#NAMESPACE}", daemonset="{#NAME}"} value ','1',''), ('88113','40042','1','22','kube_deployment_status_replicas{namespace="{#NAMESPACE}", deployment="{#NAME}"} value ','1',''), ('88114','40043','1','22','kube_deployment_status_replicas_available{namespace="{#NAMESPACE}", deployment="{#NAME}"} value ','1',''), ('88115','40044','1','22','kube_deployment_spec_replicas{namespace="{#NAMESPACE}", deployment="{#NAME}"} value ','1',''), ('88116','40045','1','22','kube_deployment_status_replicas_unavailable{namespace="{#NAMESPACE}", deployment="{#NAME}"} value ','1',''), ('88117','40046','1','22','kube_deployment_status_replicas_updated{namespace="{#NAMESPACE}", deployment="{#NAME}"} value ','1',''), ('88118','40047','1','22','kube_deployment_spec_strategy_rollingupdate_max_unavailable{namespace="{#NAMESPACE}", deployment="{#NAME}"} value ','1',''), ('88119','40048','1','22','kube_deployment_spec_paused{namespace="{#NAMESPACE}", deployment="{#NAME}"} value ','1',''), ('88120','40049','1','22','kube_endpoint_address_available{namespace="{#NAMESPACE}", endpoint="{#NAME}"} value ','1',''), ('88121','40050','1','22','kube_endpoint_address_not_ready{namespace="{#NAMESPACE}", endpoint="{#NAME}"} value ','1',''), ('88122','40051','1','22','kube_endpoint_created{namespace="{#NAMESPACE}", endpoint="{#NAME}"} value ','1',''), ('88123','40051','2','21','return (Math.floor(Date.now()/1000)-Number(value));','0',''), ('88125','40052','1','12','$.[?(@.name == "{#NAME}")].value.first()','1',''), ('88126','40053','1','22','kube_node_status_allocatable{node="{#NAME}", resource="cpu"} value ','1',''), ('88127','40054','1','22','kube_node_status_capacity{node="{#NAME}", resource="cpu"} value ','1',''), ('88128','40055','1','22','kube_node_status_allocatable{node="{#NAME}", resource="memory"} value ','1',''), ('88129','40056','1','22','kube_node_status_capacity{node="{#NAME}", resource="memory"} value ','1',''), ('88130','40057','1','22','kube_node_status_allocatable{node="{#NAME}", resource="pods"} value ','1',''), ('88131','40058','1','22','kube_node_status_capacity{node="{#NAME}", resource="pods"} value ','1',''), ('88132','40059','1','22','kube_pod_container_resource_limits{namespace="{#NAMESPACE}", pod="{#NAME}", resource="cpu"} function sum','1',''), ('88133','40060','1','22','kube_pod_status_phase{namespace="{#NAMESPACE}", pod="{#NAME}", phase="Failed"} value ','1',''), ('88134','40061','1','22','kube_pod_status_scheduled{namespace="{#NAMESPACE}", pod="{#NAME}", condition="true"} value ','1',''), ('88135','40062','1','22','kube_pod_status_ready{namespace="{#NAMESPACE}", pod="{#NAME}", condition="true"} value ','1',''), ('88136','40063','1','22','kube_pod_status_phase{namespace="{#NAMESPACE}", pod="{#NAME}", phase="Unknown"} value ','1',''), ('88137','40064','1','22','kube_pod_status_phase{namespace="{#NAMESPACE}", pod="{#NAME}", phase="Succeeded"} value ','1',''), ('88138','40065','1','22','kube_pod_status_phase{namespace="{#NAMESPACE}", pod="{#NAME}", phase="Running"} value ','1',''), ('88139','40066','1','22','kube_pod_status_phase{namespace="{#NAMESPACE}", pod="{#NAME}", phase="Pending"} value ','1',''), ('88140','40067','1','22','kube_pod_container_status_waiting{namespace="{#NAMESPACE}", pod="{#NAME}"} function sum','1',''), ('88141','40068','1','22','kube_pod_container_resource_limits{namespace="{#NAMESPACE}", pod="{#NAME}", resource="memory"} function sum','1',''), ('88142','40069','1','22','kube_pod_container_status_terminated{namespace="{#NAMESPACE}", pod="{#NAME}"} function sum','1',''), ('88143','40070','1','22','kube_pod_container_status_running{namespace="{#NAMESPACE}", pod="{#NAME}"} function sum','1',''), ('88144','40071','1','22','kube_pod_container_status_restarts_total{namespace="{#NAMESPACE}", pod="{#NAME}"} function sum','1',''), ('88145','40072','1','22','kube_pod_container_status_ready{namespace="{#NAMESPACE}", pod="{#NAME}"} function sum','1',''), ('88146','40073','1','22','kube_pod_container_resource_requests{namespace="{#NAMESPACE}", pod="{#NAME}", resource="memory"} function sum','1',''), ('88147','40074','1','22','kube_pod_container_resource_requests{namespace="{#NAMESPACE}", pod="{#NAME}", resource="cpu"} function sum','1',''), ('88148','40075','1','22','kube_pod_status_unschedulable{namespace="{#NAMESPACE}", pod="{#NAME}"} value ','1',''), ('88149','40076','1','22','kube_persistentvolumeclaim_resource_requests_storage_bytes{namespace="{#NAMESPACE}", persistentvolumeclaim="{#NAME}"} value ','1',''), ('88158','40085','1','12','$.[?(@.name == "{#NAME}")].value.first()','1',''), ('88159','40086','1','22','kube_replicaset_status_fully_labeled_replicas{namespace="{#NAMESPACE}", replicaset="{#NAME}"} value ','1',''), ('88160','40087','1','22','kube_replicaset_status_ready_replicas{namespace="{#NAMESPACE}", replicaset="{#NAME}"} value ','1',''), ('88161','40088','1','22','kube_replicaset_status_replicas{namespace="{#NAMESPACE}", replicaset="{#NAME}"} value ','1',''), ('88162','40089','1','22','kube_replicaset_spec_replicas{namespace="{#NAMESPACE}", replicaset="{#NAME}"} value ','1',''), ('88163','40090','1','22','kube_statefulset_status_replicas{namespace="{#NAMESPACE}", statefulset="{#NAME}"} value ','1',''), ('88164','40091','1','22','kube_statefulset_status_replicas_current{namespace="{#NAMESPACE}", statefulset="{#NAME}"} value ','1',''), ('88165','40092','1','22','kube_statefulset_replicas{namespace="{#NAMESPACE}", statefulset="{#NAME}"} value ','1',''), ('88166','40093','1','22','kube_statefulset_status_replicas_ready{namespace="{#NAMESPACE}", statefulset="{#NAME}"} value ','1',''), ('88167','40094','1','22','kube_statefulset_status_replicas_updated{namespace="{#NAMESPACE}", statefulset="{#NAME}"} value ','1',''), ('88182','40117','1','28','1.3.6.1.4.1.12325.1.200.1.2.5.0 0','0',''), ('88186','40122','1','28','1.3.6.1.4.1.12325.1.200.1.2.2.0 0','0',''), ('88187','40123','1','28','1.3.6.1.4.1.12325.1.200.1.2.3.0 0','0',''), ('88188','40124','1','28','1.3.6.1.4.1.12325.1.200.1.2.1.0 0','0',''), ('88189','40125','1','28','1.3.6.1.4.1.12325.1.200.1.2.6.0 0','0',''), ('88190','40126','1','28','1.3.6.1.4.1.12325.1.200.1.2.4.0 0','0',''), ('88203','40147','1','12','$[?(@.pfInterfacesIfDescr == ''{#IFDESCR}'')].pfInterfacesIf4BytesInBlock.first()','0',''), ('88204','40147','2','10','8','0',''), ('88205','40148','1','12','$[?(@.pfInterfacesIfDescr == ''{#IFDESCR}'')].pfInterfacesIf6PktsOutBlock.first()','0',''), ('88206','40149','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('88207','40150','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('88208','40150','2','1','1000000','0',''), ('88209','40152','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('88210','40152','2','10','8','0',''), ('88211','40153','1','12','$[?(@.pfInterfacesIfDescr == ''{#IFDESCR}'')].pfInterfacesIf6PktsOutPass.first()','0',''), ('88212','40154','1','12','$[?(@.pfInterfacesIfDescr == ''{#IFDESCR}'')].pfInterfacesIf6BytesOutPass.first()','0',''), ('88213','40154','2','10','8','0',''), ('88214','40155','1','12','$[?(@.pfInterfacesIfDescr == ''{#IFDESCR}'')].pfInterfacesIf4PktsOutPass.first()','0',''), ('88215','40156','1','12','$[?(@.pfInterfacesIfDescr == ''{#IFDESCR}'')].pfInterfacesIf4BytesOutPass.first()','0',''), ('88216','40156','2','10','8','0',''), ('88217','40157','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('88218','40158','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('88219','40159','1','12','$[?(@.pfInterfacesIfDescr == ''{#IFDESCR}'')].pfInterfacesIf6BytesOutBlock.first()','0',''), ('88220','40159','2','10','8','0',''), ('88221','40160','1','12','$[?(@.pfInterfacesIfDescr == ''{#IFDESCR}'')].pfInterfacesIf4PktsInBlock.first()','0',''), ('88222','40161','1','12','$[?(@.pfInterfacesIfDescr == ''{#IFDESCR}'')].pfInterfacesIf4PktsOutBlock.first()','0',''), ('88223','40162','1','12','$[?(@.pfInterfacesIfDescr == ''{#IFDESCR}'')].pfInterfacesIf4BytesOutBlock.first()','0',''), ('88224','40162','2','10','8','0',''), ('88225','40163','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('88226','40163','2','10','8','0',''), ('88227','40164','1','12','$[?(@.pfInterfacesIfDescr == ''{#IFDESCR}'')].pfInterfacesIf6PktsInPass.first()','0',''), ('88228','40165','1','12','$[?(@.pfInterfacesIfDescr == ''{#IFDESCR}'')].pfInterfacesIf6BytesInPass.first()','0',''), ('88229','40165','2','10','8','0',''), ('88230','40166','1','12','$[?(@.pfInterfacesIfDescr == ''{#IFDESCR}'')].pfInterfacesIf4PktsInPass.first()','0',''), ('88231','40167','1','12','$[?(@.pfInterfacesIfDescr == ''{#IFDESCR}'')].pfInterfacesIf4BytesInPass.first()','0',''), ('88232','40167','2','10','8','0',''), ('88233','40168','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('88234','40169','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('88235','40170','1','12','$[?(@.pfInterfacesIfDescr == ''{#IFDESCR}'')].pfInterfacesIf6PktsInBlock.first()','0',''), ('88236','40171','1','12','$[?(@.pfInterfacesIfDescr == ''{#IFDESCR}'')].pfInterfacesIf6BytesInBlock.first()','0',''), ('88237','40171','2','10','8','0',''), ('88238','40172','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('88245','40181','1','20','1d','0',''), ('88246','40185','1','12','$.data.requiredperformance','0',''), ('88247','40186','1','12','$.data.uptime','0',''), ('88248','40187','1','12','$.data.preprocessing_queue','0',''), ('88249','40188','1','12','$.data.process[''preprocessing manager''].busy.avg','3','Processes preprocessing manager not started'), ('88250','40189','1','12','$.data.process[''preprocessing worker''].busy.avg','3','Processes preprocessing worker not started'), ('88267','40479','1','20','12h','0',''), ('88268','40480','1','1','0.01','0',''), ('88269','40481','1','20','12h','0',''), ('88270','40483','1','20','12h','0',''), ('88271','40484','1','20','12h','0',''), ('88272','40485','1','20','12h','0',''), ('88273','40490','1','21','try { var data = JSON.parse(value); } catch (error) { throw ''Failed to parse JSON of EtherLike-MIB discovery.''; } var fields = [''{#SNMPVALUE}'',''{#IFOPERSTATUS}'',''{#IFALIAS}'',''{#IFNAME}'',''{#IFDESCR}'']; data.forEach(function (element) { fields.forEach(function (field) { element[field] = element[field] || ''''; }); }); return JSON.stringify(data);','0',''), ('88274','40491','1','10','','0',''), ('88275','40492','1','10','','0',''), ('88276','40493','1','10','','0',''), ('88277','40493','2','1','8','0',''), ('88278','40494','1','10','','0',''), ('88279','40495','1','10','','0',''), ('88280','40496','1','10','','0',''), ('88281','40496','2','1','8','0',''), ('88282','40497','1','1','1000000','0',''), ('88283','40497','2','20','1h','0',''), ('88284','40499','1','20','1d','0',''), ('88285','40505','1','20','12h','0',''), ('88286','40506','1','12','$..[''{#CPU.UTIL}''].avg()','0',''), ('88287','40507','1','20','12h','0',''), ('88288','40508','1','20','12h','0',''), ('88289','40509','1','20','12h','0',''), ('88290','40510','1','20','12h','0',''), ('88291','40511','1','1','0.01','0',''), ('88292','40514','1','21','try { var data = JSON.parse(value); } catch (error) { throw ''Failed to parse JSON of EtherLike-MIB discovery.''; } var fields = [''{#SNMPVALUE}'',''{#IFOPERSTATUS}'',''{#IFALIAS}'',''{#IFNAME}'',''{#IFDESCR}'']; data.forEach(function (element) { fields.forEach(function (field) { element[field] = element[field] || ''''; }); }); return JSON.stringify(data);','0',''), ('88293','40517','1','10','','0',''), ('88294','40518','1','10','','0',''), ('88295','40519','1','10','','0',''), ('88296','40519','2','1','8','0',''), ('88297','40520','1','10','','0',''), ('88298','40521','1','10','','0',''), ('88299','40522','1','10','','0',''), ('88300','40522','2','1','8','0',''), ('88301','40523','1','1','1000000','0',''), ('88302','40523','2','20','1h','0',''), ('88303','40525','1','20','1d','0',''), ('88304','40528','1','1','{#ALLOC_UNITS}','0',''), ('88305','40529','1','1','{#ALLOC_UNITS}','0',''), ('88306','40530','1','1','{#ALLOC_UNITS}','0',''), ('88307','40531','1','1','{#ALLOC_UNITS}','0',''), ('88308','40537','1','20','12h','0',''), ('88309','40538','1','20','12h','0',''), ('88310','40539','1','20','12h','0',''), ('88311','40540','1','20','12h','0',''), ('88312','40541','1','20','12h','0',''), ('88313','40542','1','1','0.01','0',''), ('88314','40545','1','10','','0',''), ('88315','40546','1','10','','0',''), ('88316','40547','1','10','','0',''), ('88317','40547','2','1','8','0',''), ('88318','40548','1','10','','0',''), ('88319','40549','1','10','','0',''), ('88320','40550','1','10','','0',''), ('88321','40550','2','1','8','0',''), ('88322','40551','1','1','1000000','0',''), ('88323','40551','2','20','1h','0',''), ('88324','40553','1','20','1d','0',''), ('88325','40558','1','20','12h','0',''), ('88326','40560','1','20','12h','0',''), ('88327','40561','1','20','12h','0',''), ('88328','40562','1','20','12h','0',''), ('88329','40563','1','20','12h','0',''), ('88330','40564','1','1','0.01','0',''), ('88331','40571','1','20','12h','0',''), ('88332','40573','1','20','12h','0',''), ('88333','40574','1','20','12h','0',''), ('88334','40575','1','20','12h','0',''), ('88335','40576','1','20','12h','0',''), ('88336','40577','1','1','0.01','0',''), ('88337','40582','1','10','','0',''), ('88338','40583','1','10','','0',''), ('88339','40584','1','10','','0',''), ('88340','40584','2','1','8','0',''), ('88341','40585','1','10','','0',''), ('88342','40586','1','10','','0',''), ('88343','40587','1','10','','0',''), ('88344','40587','2','1','8','0',''), ('88345','40588','1','1','1000000','0',''), ('88346','40588','2','20','1h','0',''), ('88347','40590','1','20','1d','0',''), ('88348','40591','1','10','','0',''), ('88349','40592','1','10','','0',''), ('88350','40593','1','10','','0',''), ('88351','40593','2','1','8','0',''), ('88352','40594','1','10','','0',''), ('88353','40595','1','10','','0',''), ('88354','40596','1','10','','0',''), ('88355','40596','2','1','8','0',''), ('88356','40597','1','1','1000000','0',''), ('88357','40597','2','20','1h','0',''), ('88358','40599','1','20','1d','0',''), ('88359','40604','1','20','12h','0',''), ('88360','40606','1','20','12h','0',''), ('88361','40607','1','20','1d','0',''), ('88362','40608','1','20','1d','0',''), ('88363','40609','1','20','12h','0',''), ('88364','40610','1','20','12h','0',''), ('88365','40611','1','20','12h','0',''), ('88366','40612','1','5',E'Version (.+), RELEASE \\1','0',''), ('88367','40612','2','20','1d','0',''), ('88368','40613','1','1','0.01','0',''), ('88369','40619','1','20','12h','0',''), ('88370','40620','1','20','12h','0',''), ('88371','40621','1','20','1d','0',''), ('88372','40622','1','20','1d','0',''), ('88373','40623','1','20','12h','0',''), ('88374','40624','1','20','12h','0',''), ('88375','40625','1','20','12h','0',''), ('88376','40626','1','5',E'Version (.+), RELEASE \\1','0',''), ('88377','40626','2','20','1d','0',''), ('88378','40627','1','1','0.01','0',''), ('88379','40633','1','20','12h','0',''), ('88380','40634','1','20','12h','0',''), ('88381','40635','1','20','1d','0',''), ('88382','40636','1','20','1d','0',''), ('88383','40637','1','20','12h','0',''), ('88384','40638','1','20','12h','0',''), ('88385','40639','1','20','12h','0',''), ('88386','40640','1','5',E'Version (.+), RELEASE \\1','0',''), ('88387','40640','2','20','1d','0',''), ('88388','40641','1','1','0.01','0',''), ('88389','40653','1','29','{#SNMPVALUE} 1.3.6.1.2.1.10.7.2.1.19 0 {#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0','0',''), ('88390','40663','1','28','1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} 0','0',''), ('88391','40672','1','28','1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} 0','0',''), ('88392','40677','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('88393','40678','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('88394','40679','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('88395','40679','2','10','','0',''), ('88396','40680','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('88397','40681','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('88398','40682','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('88399','40682','2','10','','0',''), ('88400','40683','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('88401','40683','2','1','1000000','0',''), ('88402','40685','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('88403','40691','1','28','1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} 0','0',''), ('88404','40696','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('88405','40697','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('88406','40698','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('88407','40698','2','10','','0',''), ('88408','40699','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('88409','40700','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('88410','40701','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('88411','40701','2','10','','0',''), ('88412','40702','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('88413','40702','2','1','1000000','0',''), ('88414','40704','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('88415','40712','1','20','12h','0',''), ('88416','40713','1','20','12h','0',''), ('88417','40714','1','20','12h','0',''), ('88418','40715','1','20','12h','0',''), ('88419','40716','1','20','12h','0',''), ('88420','40717','1','1','0.01','0',''), ('88421','40720','1','21','try { var data = JSON.parse(value); } catch (error) { throw ''Failed to parse JSON of EtherLike-MIB discovery.''; } var fields = [''{#SNMPVALUE}'',''{#IFOPERSTATUS}'',''{#IFALIAS}'',''{#IFNAME}'',''{#IFDESCR}'']; data.forEach(function (element) { fields.forEach(function (field) { element[field] = element[field] || ''''; }); }); return JSON.stringify(data);','0',''), ('88422','40721','1','10','','0',''), ('88423','40722','1','10','','0',''), ('88424','40723','1','10','','0',''), ('88425','40723','2','1','8','0',''), ('88426','40724','1','10','','0',''), ('88427','40725','1','10','','0',''), ('88428','40726','1','10','','0',''), ('88429','40726','2','1','8','0',''), ('88430','40727','1','1','1000000','0',''), ('88431','40727','2','20','1h','0',''), ('88432','40729','1','20','1d','0',''), ('88433','40735','1','20','12h','0',''), ('88434','40736','1','20','12h','0',''), ('88435','40737','1','20','12h','0',''), ('88436','40738','1','20','12h','0',''), ('88437','40739','1','20','12h','0',''), ('88438','40740','1','1','0.01','0',''), ('88439','40743','1','10','','0',''), ('88440','40744','1','10','','0',''), ('88441','40745','1','10','','0',''), ('88442','40745','2','1','8','0',''), ('88443','40746','1','10','','0',''), ('88444','40747','1','10','','0',''), ('88445','40748','1','10','','0',''), ('88446','40748','2','1','8','0',''), ('88447','40749','1','1','1000000','0',''), ('88448','40749','2','20','1h','0',''), ('88449','40751','1','20','1d','0',''), ('88450','40756','1','20','12h','0',''), ('88451','40757','1','20','12h','0',''), ('88452','40758','1','20','12h','0',''), ('88453','40759','1','20','12h','0',''), ('88454','40760','1','20','12h','0',''), ('88455','40761','1','1','0.01','0',''), ('88456','40764','1','21','try { var data = JSON.parse(value); } catch (error) { throw ''Failed to parse JSON of EtherLike-MIB discovery.''; } var fields = [''{#SNMPVALUE}'',''{#IFOPERSTATUS}'',''{#IFALIAS}'',''{#IFNAME}'',''{#IFDESCR}'']; data.forEach(function (element) { fields.forEach(function (field) { element[field] = element[field] || ''''; }); }); return JSON.stringify(data);','0',''), ('88457','40765','1','10','','0',''), ('88458','40766','1','10','','0',''), ('88459','40767','1','10','','0',''), ('88460','40767','2','1','8','0',''), ('88461','40768','1','10','','0',''), ('88462','40769','1','10','','0',''), ('88463','40770','1','10','','0',''), ('88464','40770','2','1','8','0',''), ('88465','40771','1','1','1000000','0',''), ('88466','40771','2','20','1h','0',''), ('88467','40773','1','20','1d','0',''), ('88468','40776','1','1','0.01','0',''), ('88469','40777','1','20','12h','0',''), ('88470','40778','1','20','12h','0',''), ('88471','40779','1','20','12h','0',''), ('88472','40781','1','20','12h','0',''), ('88473','40782','1','20','12h','0',''), ('88474','40787','1','21','try { var data = JSON.parse(value); } catch (error) { throw ''Failed to parse JSON of EtherLike-MIB discovery.''; } var fields = [''{#SNMPVALUE}'',''{#IFOPERSTATUS}'',''{#IFALIAS}'',''{#IFNAME}'',''{#IFDESCR}'']; data.forEach(function (element) { fields.forEach(function (field) { element[field] = element[field] || ''''; }); }); return JSON.stringify(data);','0',''), ('88475','40788','1','10','','0',''), ('88476','40789','1','10','','0',''), ('88477','40790','1','10','','0',''), ('88478','40790','2','1','8','0',''), ('88479','40791','1','10','','0',''), ('88480','40792','1','10','','0',''), ('88481','40793','1','10','','0',''), ('88482','40793','2','1','8','0',''), ('88483','40794','1','1','1000000','0',''), ('88484','40794','2','20','1h','0',''), ('88485','40796','1','20','1d','0',''), ('88486','40802','1','20','12h','0',''), ('88487','40803','1','20','12h','0',''), ('88488','40804','1','20','12h','0',''), ('88489','40805','1','20','12h','0',''), ('88490','40806','1','20','12h','0',''), ('88491','40807','1','1','0.01','0',''), ('88492','40810','1','21','try { var data = JSON.parse(value); } catch (error) { throw ''Failed to parse JSON of EtherLike-MIB discovery.''; } var fields = [''{#SNMPVALUE}'',''{#IFOPERSTATUS}'',''{#IFALIAS}'',''{#IFNAME}'',''{#IFDESCR}'']; data.forEach(function (element) { fields.forEach(function (field) { element[field] = element[field] || ''''; }); }); return JSON.stringify(data);','0',''), ('88493','40811','1','10','','0',''), ('88494','40812','1','10','','0',''), ('88495','40813','1','10','','0',''), ('88496','40813','2','1','8','0',''), ('88497','40814','1','10','','0',''), ('88498','40815','1','10','','0',''), ('88499','40816','1','10','','0',''), ('88500','40816','2','1','8','0',''), ('88501','40819','1','20','1d','0',''), ('88502','40825','1','20','12h','0',''), ('88503','40826','1','20','12h','0',''), ('88504','40827','1','20','12h','0',''), ('88505','40828','1','20','12h','0',''), ('88506','40829','1','20','12h','0',''), ('88507','40830','1','1','0.01','0',''), ('88508','40833','1','21','try { var data = JSON.parse(value); } catch (error) { throw ''Failed to parse JSON of EtherLike-MIB discovery.''; } var fields = [''{#SNMPVALUE}'',''{#IFOPERSTATUS}'',''{#IFALIAS}'',''{#IFNAME}'',''{#IFDESCR}'']; data.forEach(function (element) { fields.forEach(function (field) { element[field] = element[field] || ''''; }); }); return JSON.stringify(data);','0',''), ('88509','40834','1','10','','0',''), ('88510','40835','1','10','','0',''), ('88511','40836','1','10','','0',''), ('88512','40836','2','1','8','0',''), ('88513','40837','1','10','','0',''), ('88514','40838','1','10','','0',''), ('88515','40839','1','10','','0',''), ('88516','40839','2','1','8','0',''), ('88517','40840','1','1','1000000','0',''), ('88518','40840','2','20','1h','0',''), ('88519','40842','1','20','1d','0',''), ('88520','40848','1','20','12h','0',''), ('88521','40849','1','20','12h','0',''), ('88522','40850','1','20','12h','0',''), ('88523','40851','1','20','12h','0',''), ('88524','40852','1','20','12h','0',''), ('88525','40853','1','1','0.01','0',''), ('88526','40856','1','21','try { var data = JSON.parse(value); } catch (error) { throw ''Failed to parse JSON of EtherLike-MIB discovery.''; } var fields = [''{#SNMPVALUE}'',''{#IFOPERSTATUS}'',''{#IFALIAS}'',''{#IFNAME}'',''{#IFDESCR}'']; data.forEach(function (element) { fields.forEach(function (field) { element[field] = element[field] || ''''; }); }); return JSON.stringify(data);','0',''), ('88527','40857','1','10','','0',''), ('88528','40858','1','10','','0',''), ('88529','40859','1','10','','0',''), ('88530','40859','2','1','8','0',''), ('88531','40860','1','10','','0',''), ('88532','40861','1','10','','0',''), ('88533','40862','1','10','','0',''), ('88534','40862','2','1','8','0',''), ('88535','40863','1','1','1000000','0',''), ('88536','40863','2','20','1h','0',''), ('88537','40865','1','20','1d','0',''), ('88538','40871','1','20','12h','0',''), ('88539','40872','1','20','12h','0',''), ('88540','40873','1','20','12h','0',''), ('88541','40874','1','20','12h','0',''), ('88542','40875','1','20','12h','0',''), ('88543','40876','1','1','0.01','0',''), ('88544','40879','1','21','try { var data = JSON.parse(value); } catch (error) { throw ''Failed to parse JSON of EtherLike-MIB discovery.''; } var fields = [''{#SNMPVALUE}'',''{#IFOPERSTATUS}'',''{#IFALIAS}'',''{#IFNAME}'',''{#IFDESCR}'']; data.forEach(function (element) { fields.forEach(function (field) { element[field] = element[field] || ''''; }); }); return JSON.stringify(data);','0',''), ('88545','40880','1','10','','0',''), ('88546','40881','1','10','','0',''), ('88547','40882','1','10','','0',''), ('88548','40882','2','1','8','0',''), ('88549','40883','1','10','','0',''), ('88550','40884','1','10','','0',''), ('88551','40885','1','10','','0',''), ('88552','40885','2','1','8','0',''), ('88553','40886','1','1','1000000','0',''), ('88554','40886','2','20','1h','0',''), ('88555','40888','1','20','1d','0',''), ('88556','40894','1','20','12h','0',''), ('88557','40895','1','20','12h','0',''), ('88558','40896','1','20','12h','0',''), ('88559','40897','1','20','12h','0',''), ('88560','40898','1','20','12h','0',''), ('88561','40899','1','1','0.01','0',''), ('88562','40902','1','10','','0',''), ('88563','40903','1','10','','0',''), ('88564','40904','1','10','','0',''), ('88565','40904','2','1','8','0',''), ('88566','40905','1','10','','0',''), ('88567','40906','1','10','','0',''), ('88568','40907','1','10','','0',''), ('88569','40907','2','1','8','0',''), ('88570','40908','1','1','1000000','0',''), ('88571','40908','2','20','1h','0',''), ('88572','40910','1','20','1d','0',''), ('88573','40915','1','20','12h','0',''), ('88574','40916','1','20','12h','0',''), ('88575','40917','1','20','12h','0',''), ('88576','40918','1','20','12h','0',''), ('88577','40919','1','20','12h','0',''), ('88578','40920','1','1','0.01','0',''), ('88579','40923','1','21','try { var data = JSON.parse(value); } catch (error) { throw ''Failed to parse JSON of EtherLike-MIB discovery.''; } var fields = [''{#SNMPVALUE}'',''{#IFOPERSTATUS}'',''{#IFALIAS}'',''{#IFNAME}'',''{#IFDESCR}'']; data.forEach(function (element) { fields.forEach(function (field) { element[field] = element[field] || ''''; }); }); return JSON.stringify(data);','0',''), ('88580','40924','1','10','','0',''), ('88581','40925','1','10','','0',''), ('88582','40926','1','10','','0',''), ('88583','40926','2','1','8','0',''), ('88584','40927','1','10','','0',''), ('88585','40928','1','10','','0',''), ('88586','40929','1','10','','0',''), ('88587','40929','2','1','8','0',''), ('88588','40930','1','1','1000000','0',''), ('88589','40930','2','20','1h','0',''), ('88590','40932','1','20','1d','0',''), ('88591','40935','1','20','12h','0',''), ('88592','40936','1','1','0.01','0',''), ('88593','40937','1','20','12h','0',''), ('88594','40938','1','20','12h','0',''), ('88595','40940','1','20','12h','0',''), ('88596','40941','1','20','12h','0',''), ('88597','40946','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('88598','40947','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('88599','40948','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('88600','40948','2','10','','0',''), ('88601','40949','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('88602','40950','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('88603','40951','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('88604','40951','2','10','','0',''), ('88605','40952','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('88606','40952','2','1','1000000','0',''), ('88607','40954','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('88608','40956','1','20','12h','0',''), ('88609','40957','1','1','0.01','0',''), ('88610','40958','1','20','12h','0',''), ('88611','40959','1','20','12h','0',''), ('88612','40961','1','20','12h','0',''), ('88613','40962','1','20','12h','0',''), ('88614','40967','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('88615','40968','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('88616','40969','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('88617','40969','2','10','','0',''), ('88618','40970','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('88619','40971','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('88620','40972','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('88621','40972','2','10','','0',''), ('88622','40973','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('88623','40973','2','1','1000000','0',''), ('88624','40975','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('88625','40977','1','20','12h','0',''), ('88626','40978','1','1','0.01','0',''), ('88627','40979','1','20','12h','0',''), ('88628','40980','1','20','12h','0',''), ('88629','40982','1','20','12h','0',''), ('88630','40983','1','20','12h','0',''), ('88631','40988','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('88632','40989','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('88633','40990','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('88634','40990','2','10','','0',''), ('88635','40991','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('88636','40992','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('88637','40993','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('88638','40993','2','10','','0',''), ('88639','40994','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('88640','40994','2','1','1000000','0',''), ('88641','40996','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('88642','40998','1','20','12h','0',''), ('88643','40999','1','1','0.01','0',''), ('88644','41000','1','20','12h','0',''), ('88645','41001','1','20','12h','0',''), ('88646','41003','1','20','12h','0',''), ('88647','41004','1','20','12h','0',''), ('88648','41009','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('88649','41010','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('88650','41011','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('88651','41011','2','10','','0',''), ('88652','41012','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('88653','41013','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('88654','41014','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('88655','41014','2','10','','0',''), ('88656','41015','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('88657','41015','2','1','1000000','0',''), ('88658','41017','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('88659','41019','1','20','12h','0',''), ('88660','41020','1','1','0.01','0',''), ('88661','41021','1','20','12h','0',''), ('88662','41022','1','20','12h','0',''), ('88663','41024','1','20','12h','0',''), ('88664','41025','1','20','12h','0',''), ('88665','41030','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('88666','41031','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('88667','41032','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('88668','41032','2','10','','0',''), ('88669','41033','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('88670','41034','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('88671','41035','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('88672','41035','2','10','','0',''), ('88673','41036','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('88674','41036','2','1','1000000','0',''), ('88675','41038','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('88676','41040','1','20','12h','0',''), ('88677','41041','1','1','0.01','0',''), ('88678','41042','1','20','12h','0',''), ('88679','41043','1','20','12h','0',''), ('88680','41045','1','20','12h','0',''), ('88681','41046','1','20','12h','0',''), ('88682','41051','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('88683','41052','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('88684','41053','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('88685','41053','2','10','','0',''), ('88686','41054','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('88687','41055','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('88688','41056','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('88689','41056','2','10','','0',''), ('88690','41057','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('88691','41057','2','1','1000000','0',''), ('88692','41059','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('88693','41061','1','20','12h','0',''), ('88694','41062','1','1','0.01','0',''), ('88695','41063','1','20','12h','0',''), ('88696','41064','1','20','12h','0',''), ('88697','41066','1','20','12h','0',''), ('88698','41067','1','20','12h','0',''), ('88699','41072','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('88700','41073','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('88701','41074','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('88702','41074','2','10','','0',''), ('88703','41075','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('88704','41076','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('88705','41077','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('88706','41077','2','10','','0',''), ('88707','41078','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('88708','41078','2','1','1000000','0',''), ('88709','41080','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('88710','41082','1','20','12h','0',''), ('88711','41083','1','1','0.01','0',''), ('88712','41084','1','20','12h','0',''), ('88713','41085','1','20','12h','0',''), ('88714','41087','1','20','12h','0',''), ('88715','41088','1','20','12h','0',''), ('88716','41093','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('88717','41094','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('88718','41095','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('88719','41095','2','10','','0',''), ('88720','41096','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('88721','41097','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('88722','41098','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('88723','41098','2','10','','0',''), ('88724','41099','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('88725','41099','2','1','1000000','0',''), ('88726','41101','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('88727','41103','1','20','12h','0',''), ('88728','41104','1','1','0.01','0',''), ('88729','41105','1','20','12h','0',''), ('88730','41106','1','20','12h','0',''), ('88731','41108','1','20','12h','0',''), ('88732','41109','1','20','12h','0',''), ('88733','41114','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('88734','41115','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('88735','41116','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('88736','41116','2','10','','0',''), ('88737','41117','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('88738','41118','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('88739','41119','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('88740','41119','2','10','','0',''), ('88741','41120','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('88742','41120','2','1','1000000','0',''), ('88743','41122','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('88744','41124','1','20','12h','0',''), ('88745','41125','1','1','0.01','0',''), ('88746','41126','1','20','12h','0',''), ('88747','41127','1','20','12h','0',''), ('88748','41129','1','20','12h','0',''), ('88749','41130','1','20','12h','0',''), ('88750','41135','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('88751','41136','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('88752','41137','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('88753','41137','2','10','','0',''), ('88754','41138','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('88755','41139','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('88756','41140','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('88757','41140','2','10','','0',''), ('88758','41141','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('88759','41141','2','1','1000000','0',''), ('88760','41143','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('88761','41145','1','20','12h','0',''), ('88762','41146','1','1','0.01','0',''), ('88763','41147','1','20','12h','0',''), ('88764','41148','1','20','12h','0',''), ('88765','41150','1','20','12h','0',''), ('88766','41151','1','20','12h','0',''), ('88767','41156','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('88768','41157','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('88769','41158','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('88770','41158','2','10','','0',''), ('88771','41159','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('88772','41160','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('88773','41161','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('88774','41161','2','10','','0',''), ('88775','41162','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('88776','41162','2','1','1000000','0',''), ('88777','41164','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('88778','41166','1','20','12h','0',''), ('88779','41167','1','1','0.01','0',''), ('88780','41168','1','20','12h','0',''), ('88781','41169','1','20','12h','0',''), ('88782','41171','1','20','12h','0',''), ('88783','41172','1','20','12h','0',''), ('88784','41177','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('88785','41178','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('88786','41179','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('88787','41179','2','10','','0',''), ('88788','41180','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('88789','41181','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('88790','41182','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('88791','41182','2','10','','0',''), ('88792','41183','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('88793','41183','2','1','1000000','0',''), ('88794','41185','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('88795','41187','1','20','12h','0',''), ('88796','41188','1','1','0.01','0',''), ('88797','41189','1','20','12h','0',''), ('88798','41190','1','20','12h','0',''), ('88799','41192','1','20','12h','0',''), ('88800','41193','1','20','12h','0',''), ('88801','41198','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('88802','41199','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('88803','41200','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('88804','41200','2','10','','0',''), ('88805','41201','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('88806','41202','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('88807','41203','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('88808','41203','2','10','','0',''), ('88809','41204','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('88810','41204','2','1','1000000','0',''), ('88811','41206','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('88812','41208','1','20','12h','0',''), ('88813','41209','1','1','0.01','0',''), ('88814','41210','1','20','12h','0',''), ('88815','41211','1','20','12h','0',''), ('88816','41213','1','20','12h','0',''), ('88817','41214','1','20','12h','0',''), ('88818','41219','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('88819','41220','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('88820','41221','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('88821','41221','2','10','','0',''), ('88822','41222','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('88823','41223','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('88824','41224','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('88825','41224','2','10','','0',''), ('88826','41225','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('88827','41225','2','1','1000000','0',''), ('88828','41227','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('88829','41229','1','20','12h','0',''), ('88830','41230','1','1','0.01','0',''), ('88831','41231','1','20','12h','0',''), ('88832','41232','1','20','12h','0',''), ('88833','41234','1','20','12h','0',''), ('88834','41235','1','20','12h','0',''), ('88835','41240','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('88836','41241','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('88837','41242','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('88838','41242','2','10','','0',''), ('88839','41243','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('88840','41244','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('88841','41245','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('88842','41245','2','10','','0',''), ('88843','41246','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('88844','41246','2','1','1000000','0',''), ('88845','41248','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('88846','41250','1','20','12h','0',''), ('88847','41251','1','1','0.01','0',''), ('88848','41252','1','20','12h','0',''), ('88849','41253','1','20','12h','0',''), ('88850','41255','1','20','12h','0',''), ('88851','41256','1','20','12h','0',''), ('88852','41261','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('88853','41262','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('88854','41263','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('88855','41263','2','10','','0',''), ('88856','41264','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('88857','41265','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('88858','41266','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('88859','41266','2','10','','0',''), ('88860','41267','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('88861','41267','2','1','1000000','0',''), ('88862','41269','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('88863','41271','1','20','12h','0',''), ('88864','41272','1','1','0.01','0',''), ('88865','41273','1','20','12h','0',''), ('88866','41274','1','20','12h','0',''), ('88867','41276','1','20','12h','0',''), ('88868','41277','1','20','12h','0',''), ('88869','41282','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('88870','41283','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('88871','41284','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('88872','41284','2','10','','0',''), ('88873','41285','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('88874','41286','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('88875','41287','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('88876','41287','2','10','','0',''), ('88877','41288','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('88878','41288','2','1','1000000','0',''), ('88879','41290','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('88880','41292','1','20','12h','0',''), ('88881','41293','1','1','0.01','0',''), ('88882','41294','1','20','12h','0',''), ('88883','41295','1','20','12h','0',''), ('88884','41297','1','20','12h','0',''), ('88885','41298','1','20','12h','0',''), ('88886','41303','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('88887','41304','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('88888','41305','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('88889','41305','2','10','','0',''), ('88890','41306','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('88891','41307','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('88892','41308','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('88893','41308','2','10','','0',''), ('88894','41309','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('88895','41309','2','1','1000000','0',''), ('88896','41311','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('88897','41313','1','20','12h','0',''), ('88898','41314','1','1','0.01','0',''), ('88899','41315','1','20','12h','0',''), ('88900','41316','1','20','12h','0',''), ('88901','41318','1','20','12h','0',''), ('88902','41319','1','20','12h','0',''), ('88903','41324','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('88904','41325','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('88905','41326','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('88906','41326','2','10','','0',''), ('88907','41327','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('88908','41328','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('88909','41329','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('88910','41329','2','10','','0',''), ('88911','41330','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('88912','41330','2','1','1000000','0',''), ('88913','41332','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('88914','41334','1','20','12h','0',''), ('88915','41335','1','1','0.01','0',''), ('88916','41336','1','20','12h','0',''), ('88917','41337','1','20','12h','0',''), ('88918','41339','1','20','12h','0',''), ('88919','41340','1','20','12h','0',''), ('88920','41345','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('88921','41346','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('88922','41347','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('88923','41347','2','10','','0',''), ('88924','41348','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('88925','41349','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('88926','41350','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('88927','41350','2','10','','0',''), ('88928','41351','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('88929','41351','2','1','1000000','0',''), ('88930','41353','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('88931','41355','1','20','12h','0',''), ('88932','41356','1','1','0.01','0',''), ('88933','41357','1','20','12h','0',''), ('88934','41358','1','20','12h','0',''), ('88935','41360','1','20','12h','0',''), ('88936','41361','1','20','12h','0',''), ('88937','41366','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('88938','41367','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('88939','41368','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('88940','41368','2','10','','0',''), ('88941','41369','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('88942','41370','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('88943','41371','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('88944','41371','2','10','','0',''), ('88945','41372','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('88946','41372','2','1','1000000','0',''), ('88947','41374','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('88948','41376','1','20','12h','0',''), ('88949','41377','1','1','0.01','0',''), ('88950','41378','1','20','12h','0',''), ('88951','41379','1','20','12h','0',''), ('88952','41381','1','20','12h','0',''), ('88953','41382','1','20','12h','0',''), ('88954','41387','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('88955','41388','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('88956','41389','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('88957','41389','2','10','','0',''), ('88958','41390','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('88959','41391','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('88960','41392','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('88961','41392','2','10','','0',''), ('88962','41393','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('88963','41393','2','1','1000000','0',''), ('88964','41395','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('88965','41397','1','20','12h','0',''), ('88966','41398','1','1','0.01','0',''), ('88967','41399','1','20','12h','0',''), ('88968','41400','1','20','12h','0',''), ('88969','41402','1','20','12h','0',''), ('88970','41403','1','20','12h','0',''), ('88971','41408','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('88972','41409','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('88973','41410','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('88974','41410','2','10','','0',''), ('88975','41411','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('88976','41412','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('88977','41413','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('88978','41413','2','10','','0',''), ('88979','41414','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('88980','41414','2','1','1000000','0',''), ('88981','41416','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('88982','41418','1','20','12h','0',''), ('88983','41419','1','1','0.01','0',''), ('88984','41420','1','20','12h','0',''), ('88985','41421','1','20','12h','0',''), ('88986','41423','1','20','12h','0',''), ('88987','41424','1','20','12h','0',''), ('88988','41429','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('88989','41430','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('88990','41431','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('88991','41431','2','10','','0',''), ('88992','41432','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('88993','41433','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('88994','41434','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('88995','41434','2','10','','0',''), ('88996','41435','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('88997','41435','2','1','1000000','0',''), ('88998','41437','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('88999','41439','1','20','12h','0',''), ('89000','41440','1','1','0.01','0',''), ('89001','41441','1','20','12h','0',''), ('89002','41442','1','20','12h','0',''), ('89003','41444','1','20','12h','0',''), ('89004','41445','1','20','12h','0',''), ('89005','41450','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('89006','41451','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('89007','41452','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('89008','41452','2','10','','0',''), ('89009','41453','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('89010','41454','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('89011','41455','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('89012','41455','2','10','','0',''), ('89013','41456','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('89014','41456','2','1','1000000','0',''), ('89015','41458','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('89016','41460','1','20','12h','0',''), ('89017','41461','1','1','0.01','0',''), ('89018','41462','1','20','12h','0',''), ('89019','41463','1','20','12h','0',''), ('89020','41465','1','20','12h','0',''), ('89021','41466','1','20','12h','0',''), ('89022','41471','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('89023','41472','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('89024','41473','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('89025','41473','2','10','','0',''), ('89026','41474','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('89027','41475','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('89028','41476','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('89029','41476','2','10','','0',''), ('89030','41477','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('89031','41477','2','1','1000000','0',''), ('89032','41479','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('89033','41481','1','20','12h','0',''), ('89034','41482','1','1','0.01','0',''), ('89035','41483','1','20','12h','0',''), ('89036','41484','1','20','12h','0',''), ('89037','41486','1','20','12h','0',''), ('89038','41487','1','20','12h','0',''), ('89039','41492','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('89040','41493','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('89041','41494','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('89042','41494','2','10','','0',''), ('89043','41495','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('89044','41496','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('89045','41497','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('89046','41497','2','10','','0',''), ('89047','41498','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('89048','41498','2','1','1000000','0',''), ('89049','41500','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('89050','41502','1','20','12h','0',''), ('89051','41503','1','1','0.01','0',''), ('89052','41504','1','20','12h','0',''), ('89053','41505','1','20','12h','0',''), ('89054','41507','1','20','12h','0',''), ('89055','41508','1','20','12h','0',''), ('89056','41513','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('89057','41514','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('89058','41515','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('89059','41515','2','10','','0',''), ('89060','41516','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('89061','41517','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('89062','41518','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('89063','41518','2','10','','0',''), ('89064','41519','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('89065','41519','2','1','1000000','0',''), ('89066','41521','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('89067','41523','1','20','12h','0',''), ('89068','41524','1','1','0.01','0',''), ('89069','41525','1','20','12h','0',''), ('89070','41526','1','20','12h','0',''), ('89071','41528','1','20','12h','0',''), ('89072','41529','1','20','12h','0',''), ('89073','41534','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('89074','41535','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('89075','41536','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('89076','41536','2','10','','0',''), ('89077','41537','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('89078','41538','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('89079','41539','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('89080','41539','2','10','','0',''), ('89081','41540','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('89082','41540','2','1','1000000','0',''), ('89083','41542','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('89084','41544','1','20','12h','0',''), ('89085','41545','1','1','0.01','0',''), ('89086','41546','1','20','12h','0',''), ('89087','41547','1','20','12h','0',''), ('89088','41549','1','20','12h','0',''), ('89089','41550','1','20','12h','0',''), ('89090','41555','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('89091','41556','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('89092','41557','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('89093','41557','2','10','','0',''), ('89094','41558','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('89095','41559','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('89096','41560','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('89097','41560','2','10','','0',''), ('89098','41561','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('89099','41561','2','1','1000000','0',''), ('89100','41563','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('89101','41565','1','20','12h','0',''), ('89102','41566','1','1','0.01','0',''), ('89103','41567','1','20','12h','0',''), ('89104','41568','1','20','12h','0',''), ('89105','41570','1','20','12h','0',''), ('89106','41571','1','20','12h','0',''), ('89107','41576','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('89108','41577','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('89109','41578','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('89110','41578','2','10','','0',''), ('89111','41579','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('89112','41580','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('89113','41581','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('89114','41581','2','10','','0',''), ('89115','41582','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('89116','41582','2','1','1000000','0',''), ('89117','41584','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('89118','41586','1','20','12h','0',''), ('89119','41587','1','1','0.01','0',''), ('89120','41588','1','20','12h','0',''), ('89121','41589','1','20','12h','0',''), ('89122','41591','1','20','12h','0',''), ('89123','41592','1','20','12h','0',''), ('89124','41597','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('89125','41598','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('89126','41599','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('89127','41599','2','10','','0',''), ('89128','41600','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('89129','41601','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('89130','41602','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('89131','41602','2','10','','0',''), ('89132','41603','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('89133','41603','2','1','1000000','0',''), ('89134','41605','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('89135','41607','1','20','12h','0',''), ('89136','41608','1','1','0.01','0',''), ('89137','41609','1','20','12h','0',''), ('89138','41610','1','20','12h','0',''), ('89139','41612','1','20','12h','0',''), ('89140','41613','1','20','12h','0',''), ('89141','41618','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('89142','41619','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('89143','41620','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('89144','41620','2','10','','0',''), ('89145','41621','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('89146','41622','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('89147','41623','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('89148','41623','2','10','','0',''), ('89149','41624','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('89150','41624','2','1','1000000','0',''), ('89151','41626','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('89152','41628','1','20','12h','0',''), ('89153','41629','1','1','0.01','0',''), ('89154','41630','1','20','12h','0',''), ('89155','41631','1','20','12h','0',''), ('89156','41633','1','20','12h','0',''), ('89157','41634','1','20','12h','0',''), ('89158','41639','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('89159','41640','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('89160','41641','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('89161','41641','2','10','','0',''), ('89162','41642','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('89163','41643','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('89164','41644','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('89165','41644','2','10','','0',''), ('89166','41645','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('89167','41645','2','1','1000000','0',''), ('89168','41647','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('89169','41649','1','20','12h','0',''), ('89170','41650','1','1','0.01','0',''), ('89171','41651','1','20','12h','0',''), ('89172','41652','1','20','12h','0',''), ('89173','41654','1','20','12h','0',''), ('89174','41655','1','20','12h','0',''), ('89175','41660','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('89176','41661','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('89177','41662','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('89178','41662','2','10','','0',''), ('89179','41663','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('89180','41664','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('89181','41665','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('89182','41665','2','10','','0',''), ('89183','41666','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('89184','41666','2','1','1000000','0',''), ('89185','41668','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('89186','41670','1','20','12h','0',''), ('89187','41671','1','1','0.01','0',''), ('89188','41672','1','20','12h','0',''), ('89189','41673','1','20','12h','0',''), ('89190','41675','1','20','12h','0',''), ('89191','41676','1','20','12h','0',''), ('89192','41681','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('89193','41682','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('89194','41683','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('89195','41683','2','10','','0',''), ('89196','41684','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('89197','41685','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('89198','41686','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('89199','41686','2','10','','0',''), ('89200','41687','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('89201','41687','2','1','1000000','0',''), ('89202','41689','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('89203','41691','1','20','12h','0',''), ('89204','41692','1','1','0.01','0',''), ('89205','41693','1','20','12h','0',''), ('89206','41694','1','20','12h','0',''), ('89207','41696','1','20','12h','0',''), ('89208','41697','1','20','12h','0',''), ('89209','41702','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('89210','41703','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('89211','41704','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('89212','41704','2','10','','0',''), ('89213','41705','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('89214','41706','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('89215','41707','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('89216','41707','2','10','','0',''), ('89217','41708','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('89218','41708','2','1','1000000','0',''), ('89219','41710','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('89220','41712','1','20','12h','0',''), ('89221','41713','1','1','0.01','0',''), ('89222','41714','1','20','12h','0',''), ('89223','41715','1','20','12h','0',''), ('89224','41717','1','20','12h','0',''), ('89225','41718','1','20','12h','0',''), ('89226','41723','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('89227','41724','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('89228','41725','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('89229','41725','2','10','','0',''), ('89230','41726','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('89231','41727','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('89232','41728','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('89233','41728','2','10','','0',''), ('89234','41729','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('89235','41729','2','1','1000000','0',''), ('89236','41731','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('89237','41733','1','20','12h','0',''), ('89238','41734','1','1','0.01','0',''), ('89239','41735','1','20','12h','0',''), ('89240','41736','1','20','12h','0',''), ('89241','41738','1','20','12h','0',''), ('89242','41739','1','20','12h','0',''), ('89243','41744','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('89244','41745','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('89245','41746','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('89246','41746','2','10','','0',''), ('89247','41747','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('89248','41748','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('89249','41749','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('89250','41749','2','10','','0',''), ('89251','41750','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('89252','41750','2','1','1000000','0',''), ('89253','41752','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('89254','41754','1','20','12h','0',''), ('89255','41755','1','1','0.01','0',''), ('89256','41756','1','20','12h','0',''), ('89257','41757','1','20','12h','0',''), ('89258','41759','1','20','12h','0',''), ('89259','41760','1','20','12h','0',''), ('89260','41765','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('89261','41766','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('89262','41767','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('89263','41767','2','10','','0',''), ('89264','41768','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('89265','41769','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('89266','41770','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('89267','41770','2','10','','0',''), ('89268','41771','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('89269','41771','2','1','1000000','0',''), ('89270','41773','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('89271','41775','1','20','12h','0',''), ('89272','41776','1','1','0.01','0',''), ('89273','41777','1','20','12h','0',''), ('89274','41778','1','20','12h','0',''), ('89275','41780','1','20','12h','0',''), ('89276','41781','1','20','12h','0',''), ('89277','41786','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('89278','41787','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('89279','41788','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('89280','41788','2','10','','0',''), ('89281','41789','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('89282','41790','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('89283','41791','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('89284','41791','2','10','','0',''), ('89285','41792','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('89286','41792','2','1','1000000','0',''), ('89287','41794','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('89288','41796','1','20','12h','0',''), ('89289','41797','1','1','0.01','0',''), ('89290','41798','1','20','12h','0',''), ('89291','41799','1','20','12h','0',''), ('89292','41801','1','20','12h','0',''), ('89293','41802','1','20','12h','0',''), ('89294','41807','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('89295','41808','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('89296','41809','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('89297','41809','2','10','','0',''), ('89298','41810','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('89299','41811','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('89300','41812','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('89301','41812','2','10','','0',''), ('89302','41813','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('89303','41813','2','1','1000000','0',''), ('89304','41815','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('89305','41817','1','20','12h','0',''), ('89306','41818','1','1','0.01','0',''), ('89307','41819','1','20','12h','0',''), ('89308','41820','1','20','12h','0',''), ('89309','41822','1','20','12h','0',''), ('89310','41823','1','20','12h','0',''), ('89311','41828','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('89312','41829','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('89313','41830','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('89314','41830','2','10','','0',''), ('89315','41831','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('89316','41832','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('89317','41833','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('89318','41833','2','10','','0',''), ('89319','41834','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('89320','41834','2','1','1000000','0',''), ('89321','41836','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('89322','41838','1','20','12h','0',''), ('89323','41839','1','1','0.01','0',''), ('89324','41840','1','20','12h','0',''), ('89325','41841','1','20','12h','0',''), ('89326','41843','1','20','12h','0',''), ('89327','41844','1','20','12h','0',''), ('89328','41849','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('89329','41850','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('89330','41851','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('89331','41851','2','10','','0',''), ('89332','41852','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('89333','41853','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('89334','41854','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('89335','41854','2','10','','0',''), ('89336','41855','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('89337','41855','2','1','1000000','0',''), ('89338','41857','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('89339','41859','1','20','12h','0',''), ('89340','41860','1','1','0.01','0',''), ('89341','41861','1','20','12h','0',''), ('89342','41862','1','20','12h','0',''), ('89343','41864','1','20','12h','0',''), ('89344','41865','1','20','12h','0',''), ('89345','41870','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('89346','41871','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('89347','41872','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('89348','41872','2','10','','0',''), ('89349','41873','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('89350','41874','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('89351','41875','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('89352','41875','2','10','','0',''), ('89353','41876','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('89354','41876','2','1','1000000','0',''), ('89355','41878','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('89356','41880','1','20','12h','0',''), ('89357','41881','1','1','0.01','0',''), ('89358','41882','1','20','12h','0',''), ('89359','41883','1','20','12h','0',''), ('89360','41885','1','20','12h','0',''), ('89361','41886','1','20','12h','0',''), ('89362','41891','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('89363','41892','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('89364','41893','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('89365','41893','2','10','','0',''), ('89366','41894','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('89367','41895','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('89368','41896','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('89369','41896','2','10','','0',''), ('89370','41897','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('89371','41897','2','1','1000000','0',''), ('89372','41899','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('89373','41901','1','20','12h','0',''), ('89374','41902','1','1','0.01','0',''), ('89375','41903','1','20','12h','0',''), ('89376','41904','1','20','12h','0',''), ('89377','41906','1','20','12h','0',''), ('89378','41907','1','20','12h','0',''), ('89379','41912','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('89380','41913','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('89381','41914','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('89382','41914','2','10','','0',''), ('89383','41915','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('89384','41916','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('89385','41917','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('89386','41917','2','10','','0',''), ('89387','41918','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('89388','41918','2','1','1000000','0',''), ('89389','41920','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('89390','41922','1','20','12h','0',''), ('89391','41923','1','1','0.01','0',''), ('89392','41924','1','20','12h','0',''), ('89393','41925','1','20','12h','0',''), ('89394','41927','1','20','12h','0',''), ('89395','41928','1','20','12h','0',''), ('89396','41933','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('89397','41934','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('89398','41935','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('89399','41935','2','10','','0',''), ('89400','41936','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('89401','41937','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('89402','41938','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('89403','41938','2','10','','0',''), ('89404','41939','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('89405','41939','2','1','1000000','0',''), ('89406','41941','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('89407','41943','1','20','12h','0',''), ('89408','41944','1','1','0.01','0',''), ('89409','41945','1','20','12h','0',''), ('89410','41946','1','20','12h','0',''), ('89411','41948','1','20','12h','0',''), ('89412','41949','1','20','12h','0',''), ('89413','41954','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('89414','41955','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('89415','41956','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('89416','41956','2','10','','0',''), ('89417','41957','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('89418','41958','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('89419','41959','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('89420','41959','2','10','','0',''), ('89421','41960','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('89422','41960','2','1','1000000','0',''), ('89423','41962','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('89424','41964','1','20','12h','0',''), ('89425','41965','1','1','0.01','0',''), ('89426','41966','1','20','12h','0',''), ('89427','41967','1','20','12h','0',''), ('89428','41969','1','20','12h','0',''), ('89429','41970','1','20','12h','0',''), ('89430','41975','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('89431','41976','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('89432','41977','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('89433','41977','2','10','','0',''), ('89434','41978','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('89435','41979','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('89436','41980','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('89437','41980','2','10','','0',''), ('89438','41981','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('89439','41981','2','1','1000000','0',''), ('89440','41983','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('89441','41985','1','20','12h','0',''), ('89442','41986','1','1','0.01','0',''), ('89443','41987','1','20','12h','0',''), ('89444','41988','1','20','12h','0',''), ('89445','41990','1','20','12h','0',''), ('89446','41991','1','20','12h','0',''), ('89447','41996','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('89448','41997','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('89449','41998','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('89450','41998','2','10','','0',''), ('89451','41999','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('89452','42000','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('89453','42001','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('89454','42001','2','10','','0',''), ('89455','42002','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('89456','42002','2','1','1000000','0',''), ('89457','42004','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('89458','42006','1','20','12h','0',''), ('89459','42007','1','1','0.01','0',''), ('89460','42008','1','20','12h','0',''), ('89461','42009','1','20','12h','0',''), ('89462','42011','1','20','12h','0',''), ('89463','42012','1','20','12h','0',''), ('89464','42017','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('89465','42018','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('89466','42019','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('89467','42019','2','10','','0',''), ('89468','42020','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('89469','42021','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('89470','42022','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('89471','42022','2','10','','0',''), ('89472','42023','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('89473','42023','2','1','1000000','0',''), ('89474','42025','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('89475','42027','1','20','12h','0',''), ('89476','42028','1','1','0.01','0',''), ('89477','42029','1','20','12h','0',''), ('89478','42030','1','20','12h','0',''), ('89479','42032','1','20','12h','0',''), ('89480','42033','1','20','12h','0',''), ('89481','42038','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('89482','42039','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('89483','42040','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('89484','42040','2','10','','0',''), ('89485','42041','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('89486','42042','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('89487','42043','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('89488','42043','2','10','','0',''), ('89489','42044','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('89490','42044','2','1','1000000','0',''), ('89491','42046','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('89492','42048','1','20','12h','0',''), ('89493','42049','1','1','0.01','0',''), ('89494','42050','1','20','12h','0',''), ('89495','42051','1','20','12h','0',''), ('89496','42053','1','20','12h','0',''), ('89497','42054','1','20','12h','0',''), ('89498','42059','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('89499','42060','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('89500','42061','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('89501','42061','2','10','','0',''), ('89502','42062','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('89503','42063','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('89504','42064','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('89505','42064','2','10','','0',''), ('89506','42065','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('89507','42065','2','1','1000000','0',''), ('89508','42067','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('89509','42069','1','20','12h','0',''), ('89510','42070','1','1','0.01','0',''), ('89511','42071','1','20','12h','0',''), ('89512','42072','1','20','12h','0',''), ('89513','42074','1','20','12h','0',''), ('89514','42075','1','20','12h','0',''), ('89515','42080','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('89516','42081','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('89517','42082','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('89518','42082','2','10','','0',''), ('89519','42083','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('89520','42084','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('89521','42085','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('89522','42085','2','10','','0',''), ('89523','42086','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('89524','42086','2','1','1000000','0',''), ('89525','42088','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('89526','42090','1','20','12h','0',''), ('89527','42091','1','1','0.01','0',''), ('89528','42092','1','20','12h','0',''), ('89529','42093','1','20','12h','0',''), ('89530','42095','1','20','12h','0',''), ('89531','42096','1','20','12h','0',''), ('89532','42101','1','10','','0',''), ('89533','42102','1','10','','0',''), ('89534','42103','1','10','','0',''), ('89535','42103','2','1','8','0',''), ('89536','42104','1','10','','0',''), ('89537','42105','1','10','','0',''), ('89538','42106','1','10','','0',''), ('89539','42106','2','1','8','0',''), ('89540','42107','1','1','1000000','0',''), ('89541','42107','2','20','1h','0',''), ('89542','42109','1','20','1d','0',''), ('89543','42111','1','1','0.01','0',''), ('89544','42112','1','20','12h','0',''), ('89545','42113','1','20','12h','0',''), ('89546','42114','1','20','12h','0',''), ('89547','42116','1','20','12h','0',''), ('89548','42117','1','20','12h','0',''), ('89549','42122','1','21','try { var data = JSON.parse(value); } catch (error) { throw ''Failed to parse JSON of EtherLike-MIB discovery.''; } var fields = [''{#SNMPVALUE}'',''{#IFOPERSTATUS}'',''{#IFALIAS}'',''{#IFNAME}'',''{#IFDESCR}'']; data.forEach(function (element) { fields.forEach(function (field) { element[field] = element[field] || ''''; }); }); return JSON.stringify(data);','0',''), ('89550','42123','1','10','','0',''), ('89551','42124','1','10','','0',''), ('89552','42125','1','10','','0',''), ('89553','42125','2','1','8','0',''), ('89554','42126','1','10','','0',''), ('89555','42127','1','10','','0',''), ('89556','42128','1','10','','0',''), ('89557','42128','2','1','8','0',''), ('89558','42129','1','1','1000000','0',''), ('89559','42129','2','20','1h','0',''), ('89560','42131','1','20','1d','0',''), ('89561','42137','1','20','12h','0',''), ('89562','42138','1','20','12h','0',''), ('89563','42139','1','20','12h','0',''), ('89564','42140','1','20','12h','0',''), ('89565','42141','1','20','12h','0',''), ('89566','42142','1','1','0.01','0',''), ('89567','42145','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('89568','42146','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('89569','42147','1','28','1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} 0','0',''), ('89570','42147','2','10','','0',''), ('89571','42148','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('89572','42149','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('89573','42150','1','28','1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} 0','0',''), ('89574','42150','2','10','','0',''), ('89575','42153','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('89576','42155','1','20','12h','0',''), ('89577','42156','1','1','0.01','0',''), ('89578','42157','1','20','12h','0',''), ('89579','42158','1','20','12h','0',''), ('89580','42160','1','20','12h','0',''), ('89581','42161','1','20','12h','0',''), ('89582','42166','1','10','','0',''), ('89583','42167','1','10','','0',''), ('89584','42168','1','10','','0',''), ('89585','42168','2','1','8','0',''), ('89586','42169','1','10','','0',''), ('89587','42170','1','10','','0',''), ('89588','42171','1','10','','0',''), ('89589','42171','2','1','8','0',''), ('89590','42174','1','20','1d','0',''), ('89591','22933','1','20','1d','0',''), ('89592','22938','1','20','1d','0',''), ('89593','42175','1','20','1d','0',''), ('89594','42177','1','20','1d','0',''), ('89595','22893','1','20','1d','0',''), ('89596','22898','1','20','1d','0',''), ('89597','42179','1','20','1d','0',''), ('89598','42181','1','20','1d','0',''), ('89599','22973','1','20','1d','0',''), ('89600','22978','1','20','1d','0',''), ('89601','42183','1','20','1d','0',''), ('89602','42185','1','20','1d','0',''), ('89603','42187','1','20','1d','0',''), ('89604','42191','1','20','12h','0',''), ('89605','42193','1','20','1d','0',''), ('89606','42194','1','20','1d','0',''), ('89607','42195','1','12','$.length()','0',''), ('89608','42199','1','20','12h','0',''), ('89609','42202','1','20','1h','0',''), ('89610','42210','1','20','1d','0',''), ('89611','42211','1','20','1d','0',''), ('89612','42212','1','20','1d','0',''), ('89613','42215','1','20','1h','0',''), ('89614','42216','1','10','','0',''), ('89615','42220','1','20','1d','0',''), ('89616','42221','1','10','','0',''), ('89617','42227','1','20','1d','0',''), ('89618','42231','1','20','12h','0',''), ('89619','42233','1','20','1d','0',''), ('89620','42234','1','20','1d','0',''), ('89621','42235','1','12','$.length()','0',''), ('89622','42239','1','20','12h','0',''), ('89623','42242','1','20','1h','0',''), ('89624','42250','1','20','1d','0',''), ('89625','42251','1','20','1d','0',''), ('89626','42252','1','20','1d','0',''), ('89627','42255','1','20','1h','0',''), ('89628','42256','1','10','','0',''), ('89629','42260','1','20','1d','0',''), ('89630','42261','1','10','','0',''), ('89631','42267','1','21','return (100 - value)','0',''), ('89632','42268','1','21','return (100-value);','0',''), ('89633','42269','1','21','return (100 - value)','0',''), ('89634','42270','1','21','return (100-value);','0',''), ('89637','42277','1','10','','0',''), ('89638','42278','1','10','','0',''), ('89639','42279','1','10','','0',''), ('89640','42279','2','1','8','0',''), ('89641','42280','1','10','','0',''), ('89642','42281','1','10','','0',''), ('89643','42282','1','10','','0',''), ('89644','42282','2','1','8','0',''), ('89645','42283','1','21','var newvalue; switch(value) { case "unknown": newvalue = 0; break; case "notpresent": newvalue = 1; break; case "down": newvalue = 2; break; case "lowerlayerdown": newvalue = 3; break; case "testing": newvalue = 4; break; case "dormant": newvalue = 5; break; case "up": newvalue = 6; break; default: newvalue = "Problem parsing interface operstate in JS"; } return newvalue;','0',''), ('89646','42284','1','20','1d','0',''), ('89647','42287','1','21','return JSON.stringify(value.trim().split(/ +/));','0',''), ('89648','42292','1','10','','0',''), ('89649','42293','1','10','','0',''), ('89650','42294','1','10','','0',''), ('89651','42294','2','1','8','0',''), ('89652','42295','1','10','','0',''), ('89653','42296','1','10','','0',''), ('89654','42297','1','10','','0',''), ('89655','42297','2','1','8','0',''), ('89656','42298','1','21','var newvalue; switch(value) { case "unknown": newvalue = 0; break; case "notpresent": newvalue = 1; break; case "down": newvalue = 2; break; case "lowerlayerdown": newvalue = 3; break; case "testing": newvalue = 4; break; case "dormant": newvalue = 5; break; case "up": newvalue = 6; break; default: newvalue = "Problem parsing interface operstate in JS"; } return newvalue;','0',''), ('89657','42299','1','20','1d','0',''), ('89658','42302','1','21','return JSON.stringify(value.trim().split(/ +/));','0',''), ('89659','42307','1','12','$[10]','0',''), ('89660','42307','2','10','','0',''), ('89661','42307','3','1','0.001','0',''), ('89662','42308','1','12','$[0]','0',''), ('89663','42308','2','10','','0',''), ('89664','42309','1','12','$[3]','0',''), ('89665','42309','2','10','','0',''), ('89666','42309','3','1','0.001','0',''), ('89667','42310','1','12','$[9]','0',''), ('89668','42310','2','10','','0',''), ('89669','42310','3','1','0.1','0',''), ('89670','42311','1','12','$[4]','0',''), ('89671','42311','2','10','','0',''), ('89672','42312','1','12','$[7]','0',''), ('89673','42312','2','10','','0',''), ('89674','42312','3','1','0.001','0',''), ('89675','42313','1','12','$[10]','0',''), ('89676','42313','2','10','','0',''), ('89677','42313','3','1','0.001','0',''), ('89678','42314','1','12','$[0]','0',''), ('89679','42314','2','10','','0',''), ('89680','42315','1','12','$[3]','0',''), ('89681','42315','2','10','','0',''), ('89682','42315','3','1','0.001','0',''), ('89683','42316','1','12','$[9]','0',''), ('89684','42316','2','10','','0',''), ('89685','42316','3','1','0.1','0',''), ('89686','42317','1','12','$[4]','0',''), ('89687','42317','2','10','','0',''), ('89688','42318','1','12','$[7]','0',''), ('89689','42318','2','10','','0',''), ('89690','42318','3','1','0.001','0',''), ('89691','42319','1','20','1d','0',''), ('89692','42323','1','20','12h','0',''), ('89693','42325','1','20','1d','0',''), ('89694','42326','1','20','1d','0',''), ('89695','42327','1','12','$.length()','0',''), ('89696','42331','1','20','12h','0',''), ('89697','42334','1','20','1h','0',''), ('89698','42342','1','20','1d','0',''), ('89699','42343','1','20','1d','0',''), ('89700','42344','1','20','1d','0',''), ('89701','42347','1','20','1h','0',''), ('89702','42348','1','10','','0',''), ('89703','42352','1','20','1d','0',''), ('89704','42353','1','10','','0',''), ('89705','42358','1','21','return (100 - value)','0',''), ('89706','42359','1','21','return (100-value);','0',''), ('89708','42363','1','10','','0',''), ('89709','42364','1','10','','0',''), ('89710','42365','1','10','','0',''), ('89711','42365','2','1','8','0',''), ('89712','42366','1','10','','0',''), ('89713','42367','1','10','','0',''), ('89714','42368','1','10','','0',''), ('89715','42368','2','1','8','0',''), ('89716','42369','1','21','var newvalue; switch(value) { case "unknown": newvalue = 0; break; case "notpresent": newvalue = 1; break; case "down": newvalue = 2; break; case "lowerlayerdown": newvalue = 3; break; case "testing": newvalue = 4; break; case "dormant": newvalue = 5; break; case "up": newvalue = 6; break; default: newvalue = "Problem parsing interface operstate in JS"; } return newvalue;','0',''), ('89717','42370','1','20','1d','0',''), ('89718','42373','1','21','return JSON.stringify(value.trim().split(/ +/));','0',''), ('89719','42378','1','12','$[10]','0',''), ('89720','42378','2','10','','0',''), ('89721','42378','3','1','0.001','0',''), ('89722','42379','1','12','$[0]','0',''), ('89723','42379','2','10','','0',''), ('89724','42380','1','12','$[3]','0',''), ('89725','42380','2','10','','0',''), ('89726','42380','3','1','0.001','0',''), ('89727','42381','1','12','$[9]','0',''), ('89728','42381','2','10','','0',''), ('89729','42381','3','1','0.1','0',''), ('89730','42382','1','12','$[4]','0',''), ('89731','42382','2','10','','0',''), ('89732','42383','1','12','$[7]','0',''), ('89733','42383','2','10','','0',''), ('89734','42383','3','1','0.001','0',''), ('89735','42385','1','20','12h','0',''), ('89736','42387','1','1','1024','0',''), ('89737','42388','1','1','1024','0',''), ('89738','42389','1','1','1024','0',''), ('89739','42390','1','1','1024','0',''), ('89740','42392','1','1','0.01','0',''), ('89741','42393','1','1','1024','0',''), ('89742','42395','1','1','1024','0',''), ('89743','42396','1','20','12h','0',''), ('89744','42398','1','20','12h','0',''), ('89745','42399','1','20','12h','0',''), ('89746','42400','1','10','','0',''), ('89747','42401','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('89748','42405','1','10','','0',''), ('89749','42406','1','20','12h','0',''), ('89750','42410','1','21','return JSON.stringify([{"{#CPU.COUNT}": value, "{#SNMPINDEX}": 0, "{#SINGLETON}":""}])','0',''), ('89751','42412','1','29','{#SNMPVALUE} 1.3.6.1.2.1.10.7.2.1.19 0 {#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0','0',''), ('89752','42415','1','28','1.3.6.1.4.1.2021.11.65.0 0','0',''), ('89753','42415','2','10','','0',''), ('89754','42416','1','28','1.3.6.1.4.1.2021.11.66.0 0','0',''), ('89755','42416','2','10','','0',''), ('89756','42417','1','28','1.3.6.1.4.1.2021.11.53.0 0','0',''), ('89757','42417','2','10','','0',''), ('89758','42418','1','28','1.3.6.1.4.1.2021.11.56.0 0','0',''), ('89759','42418','2','10','','0',''), ('89760','42419','1','28','1.3.6.1.4.1.2021.11.54.0 0','0',''), ('89761','42419','2','10','','0',''), ('89762','42420','1','28','1.3.6.1.4.1.2021.11.51.0 0','0',''), ('89763','42420','2','10','','0',''), ('89764','42421','1','28','1.3.6.1.4.1.2021.11.61.0 0','0',''), ('89765','42421','2','10','','0',''), ('89766','42422','1','28','1.3.6.1.4.1.2021.11.64.0 0','0',''), ('89767','42422','2','10','','0',''), ('89768','42423','1','28','1.3.6.1.4.1.2021.11.52.0 0','0',''), ('89769','42423','2','10','','0',''), ('89770','42424','1','28','1.3.6.1.4.1.2021.11.50.0 0','0',''), ('89771','42424','2','10','','0',''), ('89772','42425','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('89773','42426','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('89774','42427','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('89775','42427','2','10','','0',''), ('89776','42428','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('89777','42429','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('89778','42430','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('89779','42430','2','10','','0',''), ('89780','42431','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('89781','42431','2','1','1000000','0',''), ('89782','42433','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('89783','42435','1','28','1.3.6.1.4.1.2021.13.15.1.1.5.{#SNMPINDEX} 0','0',''), ('89784','42437','1','28','1.3.6.1.4.1.2021.13.15.1.1.6.{#SNMPINDEX} 0','0',''), ('89785','42438','1','21','var obj = JSON.parse(value); var dskPercentNode = obj[''dskPercentNode'']; return (100 - dskPercentNode);','0',''), ('89786','42440','1','21','const portionHigh = 4294967296; const obj = JSON.parse(value); const dskTotalHigh = parseInt(obj[''dskTotalHigh''], 10), dskTotalLow = parseInt(obj[''dskTotalLow''], 10); return (dskTotalHigh * portionHigh + dskTotalLow) * 1024;','0',''), ('89787','42441','1','21','const portionHigh = 4294967296; const obj = JSON.parse(value); const dskUsedHigh = parseInt(obj[''dskUsedHigh''], 10), dskUsedLow = parseInt(obj[''dskUsedLow''], 10); return (dskUsedHigh * portionHigh + dskUsedLow) * 1024;','0',''), ('89788','42442','1','21','return (100 - value)','0',''), ('89789','23053','1','20','1d','0',''), ('89790','23058','1','20','1d','0',''), ('89791','42443','1','20','1d','0',''), ('89792','42445','1','20','1d','0',''), ('89793','22853','1','20','1d','0',''), ('89794','22858','1','20','1d','0',''), ('89795','42447','1','20','1d','0',''), ('89796','42449','1','20','1d','0',''), ('89797','23013','1','20','1d','0',''), ('89798','23018','1','20','1d','0',''), ('89799','42451','1','20','1d','0',''), ('89800','42453','1','20','1d','0',''), ('89801','42455','1','20','1d','0',''), ('89802','42458','1','20','1h','0',''), ('89803','42463','1','20','1d','0',''), ('89804','42466','1','20','1d','0',''), ('89805','42468','1','20','1d','0',''), ('89806','42484','1','20','1d','0',''), ('89807','42486','1','21','return (100 - value)','0',''), ('89808','42487','1','21','output = JSON.parse(value).map(function(net){ return { "{#IFNAME}": net.Name, "{#IFDESCR}": net.Description, "{#IFALIAS}": net.NetConnectionID, "{#IFGUID}": net.GUID }}) return JSON.stringify({"data": output})','0',''), ('89809','42487','2','20','1h','0',''), ('89810','42488','1','25','{#INSTANCE} {#DEVNAME}','0',''), ('89811','42491','1','10','','0',''), ('89812','42492','1','10','','0',''), ('89813','42493','1','10','','0',''), ('89814','42493','2','1','8','0',''), ('89815','42494','1','10','','0',''), ('89816','42495','1','10','','0',''), ('89817','42496','1','10','','0',''), ('89818','42496','2','1','8','0',''), ('89819','42497','1','21','return (100 - value)','0',''), ('89820','42509','1','12','$[?(@.GUID == "{#IFGUID}")].Speed.first()','2','0'), ('89821','42509','2','21','return (value==''9223372036854775807'' ? 0 : value)','0',''), ('89822','42509','3','20','1h','0',''), ('89823','42510','1','12','$[?(@.GUID == "{#IFGUID}")].NetConnectionStatus.first()','0',''), ('89824','42510','2','20','1d','0',''), ('89825','42511','1','12','$[?(@.GUID == "{#IFGUID}")].AdapterTypeId.first()','0',''), ('89826','42511','2','20','1d','0',''), ('89827','42512','1','20','1d','0',''), ('89828','42514','1','20','1h','0',''), ('89829','42519','1','20','1d','0',''), ('89830','42522','1','20','1d','0',''), ('89831','42524','1','20','1d','0',''), ('89832','42540','1','20','1d','0',''), ('89833','42542','1','21','return (100 - value)','0',''), ('89834','42543','1','21','output = JSON.parse(value).map(function(net){ return { "{#IFNAME}": net.Name, "{#IFDESCR}": net.Description, "{#IFALIAS}": net.NetConnectionID, "{#IFGUID}": net.GUID }}) return JSON.stringify({"data": output})','0',''), ('89835','42543','2','20','1h','0',''), ('89836','42544','1','25','{#INSTANCE} {#DEVNAME}','0',''), ('89837','42547','1','10','','0',''), ('89838','42548','1','10','','0',''), ('89839','42549','1','10','','0',''), ('89840','42549','2','1','8','0',''), ('89841','42550','1','10','','0',''), ('89842','42551','1','10','','0',''), ('89843','42552','1','10','','0',''), ('89844','42552','2','1','8','0',''), ('89845','42553','1','21','return (100 - value)','0',''), ('89846','42565','1','12','$[?(@.GUID == "{#IFGUID}")].Speed.first()','2','0'), ('89847','42565','2','21','return (value==''9223372036854775807'' ? 0 : value)','0',''), ('89848','42565','3','20','1h','0',''), ('89849','42566','1','12','$[?(@.GUID == "{#IFGUID}")].NetConnectionStatus.first()','0',''), ('89850','42566','2','20','1d','0',''), ('89851','42567','1','12','$[?(@.GUID == "{#IFGUID}")].AdapterTypeId.first()','0',''), ('89852','42567','2','20','1d','0',''), ('89853','42572','1','20','12h','0',''), ('89854','42573','1','12','$..[''{#CPU.UTIL}''].avg()','0',''), ('89855','42574','1','20','12h','0',''), ('89856','42575','1','20','12h','0',''), ('89857','42576','1','20','12h','0',''), ('89858','42577','1','20','12h','0',''), ('89859','42578','1','1','0.01','0',''), ('89860','42583','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('89861','42584','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('89862','42585','1','28','1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} 0','0',''), ('89863','42585','2','10','','0',''), ('89864','42586','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('89865','42587','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('89866','42588','1','28','1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} 0','0',''), ('89867','42588','2','10','','0',''), ('89868','42589','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('89869','42589','2','1','1000000','0',''), ('89870','42591','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('89871','42593','1','12','$.hrStorageSize','0',''), ('89872','42594','1','12','$.hrStorageUsed','0',''), ('89873','42595','1','12','$.hrStorageSize','0',''), ('89874','42596','1','12','$.hrStorageUsed','0',''), ('89875','42602','1','20','12h','0',''), ('89876','42603','1','20','12h','0',''), ('89877','42604','1','20','12h','0',''), ('89878','42605','1','20','12h','0',''), ('89879','42606','1','20','12h','0',''), ('89880','42607','1','1','0.01','0',''), ('89881','42613','1','20','12h','0',''), ('89882','42614','1','20','12h','0',''), ('89883','42615','1','20','12h','0',''), ('89884','42616','1','20','12h','0',''), ('89885','42617','1','20','12h','0',''), ('89886','42618','1','1','0.01','0',''), ('89887','42624','1','20','12h','0',''), ('89888','42625','1','20','12h','0',''), ('89889','42626','1','20','12h','0',''), ('89890','42627','1','20','12h','0',''), ('89891','42628','1','20','12h','0',''), ('89892','42629','1','1','0.01','0',''), ('89899','42646','1','20','12h','0',''), ('89900','42647','1','20','12h','0',''), ('89901','42648','1','20','12h','0',''), ('89902','42649','1','20','12h','0',''), ('89903','42650','1','20','12h','0',''), ('89904','42651','1','1','0.01','0',''), ('89905','42657','1','20','12h','0',''), ('89906','42658','1','20','12h','0',''), ('89907','42659','1','20','12h','0',''), ('89908','42660','1','20','12h','0',''), ('89909','42661','1','20','12h','0',''), ('89910','42662','1','1','0.01','0',''), ('89911','42668','1','20','12h','0',''), ('89912','42669','1','20','12h','0',''), ('89913','42670','1','20','12h','0',''), ('89914','42671','1','20','12h','0',''), ('89915','42672','1','20','12h','0',''), ('89916','42673','1','1','0.01','0',''), ('89918','42676','1','12','$[?(@.name == "tikv_scheduler_contex_total")].value.first()','0',''), ('89919','42677','1','12','$[?(@.name == "tikv_coprocessor_scan_keys")].value.sum()','1',''), ('89920','42677','2','10','','0',''), ('89922','42679','1','1','1000000','0',''), ('89923','42679','2','20','1h','0',''), ('89926','42681','1','1','1000000','0',''), ('89927','42681','2','20','1h','0',''), ('89928','42682','1','1','1000000','0',''), ('89929','42682','2','20','1h','0',''), ('89932','42686','1','10','','0',''), ('89933','42687','1','1','0.001','0',''), ('89934','42687','2','20','10m','0',''), ('89935','42688','1','20','10m','0',''), ('89936','42689','1','20','10m','0',''), ('89937','39917','3','20','3h','0',''), ('89939','39919','3','20','3h','0',''), ('89940','40011','1','20','3h','0',''), ('89941','40015','1','20','3h','0',''), ('89942','42700','1','22','kube_cronjob_created function count','1',''), ('89943','42701','1','22','kube_endpoint_created function count','1',''), ('89944','42702','1','22','kube_job_created function count','1',''), ('89945','42703','1','23','kube_cronjob_created','0',''), ('89948','42704','1','23','kube_job_owner{owner_is_controller!="true"}','0',''), ('89951','42705','1','23','kube_poddisruptionbudget_created','0',''), ('89954','42706','1','22','kube_job_failed{namespace="{#NAMESPACE}", job_name=~"{#NAME}-*", condition="true"} function sum','1',''), ('89955','42707','1','22','kube_job_complete{namespace="{#NAMESPACE}", job_name=~"{#NAME}-*", condition="true"} function sum','1',''), ('89956','42708','1','22','kube_cronjob_status_last_schedule_time{namespace="{#NAMESPACE}", cronjob="{#NAME}"} value ','1',''), ('89957','42708','2','1','1','0',''), ('89958','42709','1','22','kube_cronjob_next_schedule_time{namespace="{#NAMESPACE}", cronjob="{#NAME}"} value ','1',''), ('89959','42709','2','1','1','0',''), ('89960','42710','1','22','kube_cronjob_spec_suspend{namespace="{#NAMESPACE}", cronjob="{#NAME}"} value ','1',''), ('89961','42710','2','20','1h','0',''), ('89962','42711','1','22','kube_cronjob_status_active{namespace="{#NAMESPACE}", cronjob="{#NAME}"} value ','1',''), ('89963','42712','1','22','kube_job_status_failed{namespace="{#NAMESPACE}", job_name=~"{#NAME}-*"} function sum','1',''), ('89964','42713','1','22','kube_job_status_succeeded{namespace="{#NAMESPACE}", job_name=~"{#NAME}-*"} function sum','1',''), ('89965','42714','1','22','kube_job_failed{namespace="{#NAMESPACE}", job_name="{#NAME}", condition="true"} value ','1',''), ('89966','42715','1','22','kube_job_complete{namespace="{#NAMESPACE}", job_name="{#NAME}", condition="true"} value ','1',''), ('89967','42716','1','22','kube_job_status_failed{namespace="{#NAMESPACE}", job_name="{#NAME}"} value ','1',''), ('89968','42717','1','22','kube_job_status_succeeded{namespace="{#NAMESPACE}", job_name="{#NAME}"} value ','1',''), ('89969','42718','1','22','kube_node_status_allocatable{node="{#NAME}", resource="ephemeral_storage"} value ','1',''), ('89970','42719','1','22','kube_node_status_capacity{node="{#NAME}", resource="ephemeral_storage"} value ','1',''), ('89971','42720','1','22','kube_poddisruptionbudget_status_pod_disruptions_allowed{namespace="{#NAMESPACE}", poddisruptionbudget="{#NAME}"} value ','1',''), ('89972','42721','1','22','kube_poddisruptionbudget_status_desired_healthy{namespace="{#NAMESPACE}", poddisruptionbudget="{#NAME}"} value ','1',''), ('89973','42722','1','22','kube_poddisruptionbudget_status_current_healthy{namespace="{#NAMESPACE}", poddisruptionbudget="{#NAME}"} value ','1',''), ('89974','42723','1','22','kube_poddisruptionbudget_status_expected_pods{namespace="{#NAMESPACE}", poddisruptionbudget="{#NAME}"} value ','1',''), ('89975','42725','1','12','$.errors','0',''), ('89976','42725','2','20','1h','0',''), ('89977','42726','1','12','$.data','0',''), ('89978','42726','2','15',E'\\[\\]','3','Failed to receive data about required locations from API'), ('89979','42726','3','20','1h','0',''), ('89980','42727','1','12','$.data.[?(@.id==''{#ID}'')].first()','0',''), ('89981','42728','1','12','$.clouds.all','0',''), ('89982','42728','2','20','1h','0',''), ('89983','42729','1','12','$.weather..description.first()','0',''), ('89984','42729','2','20','1h','0',''), ('89985','42730','1','12','$.main.humidity','0',''), ('89986','42730','2','20','1h','0',''), ('89987','42731','1','12','$.main.pressure','0',''), ('89988','42731','2','1','100','0',''), ('89989','42731','3','20','1h','0',''), ('89990','42732','1','12','$.rain.1h','2','0'), ('89991','42732','2','1','0.001','0',''), ('89992','42732','3','20','1h','0',''), ('89993','42733','1','12','$.snow.1h','2','0'), ('89994','42733','2','1','0.001','0',''), ('89995','42733','3','20','1h','0',''), ('89996','42734','1','12','$.main.temp','0',''), ('89997','42734','2','20','1h','0',''), ('89998','42735','1','12','$.visibility','0',''), ('89999','42735','2','20','1h','0',''), ('90000','42736','1','12','$.wind.deg','0',''), ('90001','42736','2','20','1h','0',''), ('90002','42737','1','12','$.wind.speed','0',''), ('90003','42737','2','20','1h','0',''), ('90004','42738','1','20','12h','0',''), ('90007','42749','1','21','var rrd_data = JSON.parse(value).data; return JSON.stringify(rrd_data[rrd_data.length - 2])','0',''), ('90008','42751','1','12','$.data.[?(@.name == ''{#RESOURCE.NAME}'' && @.type == ''cluster'')].quorate.first()','0',''), ('90009','42751','2','20','10m','0',''), ('90010','42752','1','12','$.data.cpu','0',''), ('90011','42752','2','1','100','0',''), ('90012','42752','3','20','10m','0',''), ('90013','42753','1','12','$.data.diskread','0',''), ('90014','42753','2','10','','0',''), ('90015','42753','3','20','10m','0',''), ('90016','42754','1','12','$.data.diskwrite','0',''), ('90017','42754','2','10','','0',''), ('90018','42754','3','20','10m','0',''), ('90019','42755','1','12','$.data.maxmem','0',''), ('90020','42755','2','20','10m','0',''), ('90021','42756','1','12','$.data.mem','0',''), ('90022','42756','2','20','10m','0',''), ('90023','42757','1','12','$.data.netin','0',''), ('90024','42757','2','10','','0',''), ('90025','42757','3','1','8','0',''), ('90026','42757','4','20','10m','0',''), ('90027','42758','1','12','$.data.netout','0',''), ('90028','42758','2','10','','0',''), ('90029','42758','3','1','8','0',''), ('90030','42758','4','20','10m','0',''), ('90031','42759','1','12','$.data.uptime','0',''), ('90032','42760','1','12','$.data.status','0',''), ('90033','42761','1','12','$.cpu','0',''), ('90034','42761','2','1','100','0',''), ('90035','42761','3','20','10m','0',''), ('90036','42762','1','12','$.roottotal','0',''), ('90037','42762','2','20','10m','0',''), ('90038','42763','1','12','$.data.uptime','0',''), ('90039','42764','1','12','$.data.timezone','0',''), ('90040','42764','2','20','12h','0',''), ('90041','42765','1','12','$.swapused','0',''), ('90042','42765','2','20','10m','0',''), ('90043','42766','1','12','$.swaptotal','0',''), ('90044','42766','2','20','10m','0',''), ('90045','42767','1','12','$.rootused','0',''), ('90046','42767','2','20','10m','0',''), ('90047','42768','1','12','$.data.pveversion','0',''), ('90048','42768','2','20','1d','0',''), ('90049','42769','1','12','$.iowait','0',''), ('90050','42769','2','1','100','0',''), ('90051','42769','3','20','10m','0',''), ('90052','42770','1','12','$.data.[?(@.name == ''{#NODE.NAME}'' && @.type == ''node'')].online.first()','0',''), ('90053','42770','2','20','10m','0',''), ('90054','42771','1','12','$.netout','0',''), ('90055','42771','2','1','8','0',''), ('90056','42771','3','20','10m','0',''), ('90057','42772','1','12','$.netin','0',''), ('90058','42772','2','1','8','0',''), ('90059','42772','3','20','10m','0',''), ('90060','42773','1','12','$.memused','0',''), ('90061','42773','2','20','10m','0',''), ('90062','42774','1','12','$.memtotal','0',''), ('90063','42774','2','20','10m','0',''), ('90064','42775','1','12','$.data.localtime','0',''), ('90065','42776','1','12','$.loadavg','0',''), ('90066','42776','2','20','10m','0',''), ('90068','42777','1','12','$.data.kversion','0',''), ('90069','42777','2','20','1d','0',''), ('90070','42778','1','12','$.data.time','0',''), ('90071','42779','1','12','$.data.cpu','0',''), ('90072','42779','2','1','100','0',''), ('90073','42779','3','20','10m','0',''), ('90074','42780','1','12','$.data.diskread','0',''), ('90075','42780','2','10','','0',''), ('90076','42780','3','20','10m','0',''), ('90077','42781','1','12','$.data.diskwrite','0',''), ('90078','42781','2','10','','0',''), ('90079','42781','3','20','10m','0',''), ('90080','42782','1','12','$.data.maxmem','0',''), ('90081','42782','2','20','10m','0',''), ('90082','42783','1','12','$.data.mem','0',''), ('90083','42783','2','20','10m','0',''), ('90084','42784','1','12','$.data.netin','0',''), ('90085','42784','2','10','','0',''), ('90086','42784','3','1','8','0',''), ('90087','42784','4','20','10m','0',''), ('90088','42785','1','12','$.data.netout','0',''), ('90089','42785','2','10','','0',''), ('90090','42785','3','1','8','0',''), ('90091','42785','4','20','10m','0',''), ('90092','42786','1','12','$.data.uptime','0',''), ('90093','42787','1','12','$.data.status','0',''), ('90094','42788','1','12','$.data[?(@.id == "storage/{#NODE.NAME}/{#STORAGE.NAME}")].content.first()','0',''), ('90095','42788','2','20','12h','0',''), ('90096','42789','1','12','$.data[?(@.id == "storage/{#NODE.NAME}/{#STORAGE.NAME}")].disk.first()','0',''), ('90097','42789','2','20','10m','0',''), ('90098','42790','1','12','$.data[?(@.id == "storage/{#NODE.NAME}/{#STORAGE.NAME}")].maxdisk.first()','0',''), ('90099','42790','2','20','10m','0',''), ('90100','42791','1','12','$.data[?(@.id == "storage/{#NODE.NAME}/{#STORAGE.NAME}")].plugintype.first()','0',''), ('90101','42791','2','20','12h','0',''), ('90102','42793','1','28','1.3.6.1.4.1.50536.1.5.4.0 0','0',''), ('90103','42794','1','28','1.3.6.1.4.1.50536.1.4.5.0 0','0',''), ('90104','42795','1','28','1.3.6.1.4.1.50536.1.4.7.0 0','0',''), ('90105','42795','2','1','1024','0',''), ('90106','42796','1','28','1.3.6.1.4.1.50536.1.4.1.0 0','0',''), ('90107','42796','2','1','1024','0',''), ('90108','42797','1','28','1.3.6.1.4.1.50536.1.5.1.0 0','0',''), ('90109','42798','1','28','1.3.6.1.4.1.50536.1.5.2.0 0','0',''), ('90110','42799','1','28','1.3.6.1.4.1.50536.1.5.3.0 0','0',''), ('90111','42800','1','28','1.3.6.1.4.1.50536.1.5.5.0 0','0',''), ('90112','42800','2','1','1024','0',''), ('90113','42802','1','28','1.3.6.1.4.1.50536.1.4.2.0 0','0',''), ('90114','42806','1','1','1024','0',''), ('90115','42807','1','1','1024','0',''), ('90116','42808','1','1','1024','0',''), ('90117','42809','1','1','1024','0',''), ('90118','42812','1','28','1.3.6.1.4.1.50536.1.4.4.0 0','0',''), ('90121','42817','1','10','','0',''), ('90122','42821','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('90123','42822','1','10','','0',''), ('90125','42825','1','20','12h','0',''), ('90127','42827','1','1','1024','0',''), ('90128','42829','1','1','1024','0',''), ('90130','42831','1','28','1.3.6.1.4.1.50536.1.4.6.0 0','0',''), ('90131','42831','2','1','1024','0',''), ('90132','42832','1','28','1.3.6.1.4.1.50536.1.4.3.0 0','0',''), ('90133','42834','1','21','return JSON.stringify([{"{#CPU.COUNT}": value, "{#SNMPINDEX}": 0, "{#SINGLETON}":""}])','0',''), ('90134','42836','1','29','{#DISK_NAME} 1.3.6.1.4.1.50536.3.1.2 0','1',''), ('90135','42837','1','29','{#DATASET_NAME} 1.3.6.1.4.1.50536.1.2.1.1.2 0 {#DATASET_ALLOC_UNITS} 1.3.6.1.4.1.50536.1.2.1.1.3 0','0',''), ('90136','42838','1','29','{#POOLNAME} 1.3.6.1.4.1.50536.1.1.1.1.2 0 {#POOL_ALLOC_UNITS} 1.3.6.1.4.1.50536.1.1.1.1.3 0','0',''), ('90137','42839','1','29','{#ZVOL_NAME} 1.3.6.1.4.1.50536.1.3.1.1.2 0 {#ZVOL_ALLOC_UNITS} 1.3.6.1.4.1.50536.1.3.1.1.3 0','0',''), ('90138','42842','1','28','1.3.6.1.4.1.2021.11.56.0 0','0',''), ('90139','42842','2','10','return value/{#CPU.COUNT}','0',''), ('90140','42843','1','28','1.3.6.1.4.1.2021.11.54.0 0','0',''), ('90141','42843','2','10','return value/{#CPU.COUNT}','0',''), ('90142','42844','1','28','1.3.6.1.4.1.2021.11.51.0 0','0',''), ('90143','42844','2','10','return value/{#CPU.COUNT}','0',''), ('90144','42845','1','28','1.3.6.1.4.1.2021.11.52.0 0','0',''), ('90145','42845','2','10','return value/{#CPU.COUNT}','0',''), ('90146','42846','1','28','1.3.6.1.4.1.2021.11.50.0 0','0',''), ('90147','42846','2','10','return value/{#CPU.COUNT}','0',''), ('90160','42856','1','28','1.3.6.1.4.1.50536.3.1.3.{#SNMPINDEX} 0','0',''), ('90161','42856','2','1','0.001','0',''), ('90162','42857','1','28','1.3.6.1.4.1.50536.1.2.1.1.6.{#SNMPINDEX} 0','0',''), ('90163','42859','1','28','1.3.6.1.4.1.50536.1.2.1.1.4.{#SNMPINDEX} 0','0',''), ('90164','42859','2','1','{#DATASET_ALLOC_UNITS}','0',''), ('90165','42860','1','28','1.3.6.1.4.1.50536.1.2.1.1.5.{#SNMPINDEX} 0','0',''), ('90166','42861','1','28','1.3.6.1.4.1.50536.1.1.1.1.6.{#SNMPINDEX} 0','0',''), ('90167','42862','1','28','1.3.6.1.4.1.50536.1.1.1.1.7.{#SNMPINDEX} 0','0',''), ('90168','42864','1','28','1.3.6.1.4.1.50536.1.1.1.1.10.{#SNMPINDEX} 0','0',''), ('90169','42864','2','1','{#POOL_ALLOC_UNITS}','0',''), ('90170','42865','1','28','1.3.6.1.4.1.50536.1.1.1.1.8.{#SNMPINDEX} 0','0',''), ('90171','42866','1','28','1.3.6.1.4.1.50536.1.1.1.1.4.{#SNMPINDEX} 0','0',''), ('90172','42866','2','1','{#POOL_ALLOC_UNITS}','0',''), ('90173','42867','1','28','1.3.6.1.4.1.50536.1.1.1.1.5.{#SNMPINDEX} 0','0',''), ('90174','42868','1','28','1.3.6.1.4.1.50536.1.1.1.1.11.{#SNMPINDEX} 0','0',''), ('90175','42868','2','1','{#POOL_ALLOC_UNITS}','0',''), ('90176','42869','1','28','1.3.6.1.4.1.50536.1.1.1.1.9.{#SNMPINDEX} 0','0',''), ('90177','42870','1','28','1.3.6.1.4.1.50536.1.3.1.1.6.{#SNMPINDEX} 0','0',''), ('90178','42871','1','28','1.3.6.1.4.1.50536.1.3.1.1.4.{#SNMPINDEX} 0','0',''), ('90179','42871','2','1','{#ZVOL_ALLOC_UNITS}','0',''), ('90180','42872','1','28','1.3.6.1.4.1.50536.1.3.1.1.5.{#SNMPINDEX} 0','0',''), ('90181','42873','1','28','1.3.6.1.4.1.2021.13.15.1.1.5.{#SNMPINDEX} 0','0',''), ('90182','42875','1','28','1.3.6.1.4.1.2021.13.15.1.1.6.{#SNMPINDEX} 0','0',''), ('90183','42876','1','21','return (100 - value)','0',''), ('90184','42878','1','12','$..HostNumericSensorInfo[?(@.name=="VMware Rollup Health State")]','2','[]'), ('90185','42878','2','21','return JSON.stringify(value != "[]" ? [{''{#SINGLETON}'': ''''}] : []);','0',''), ('90186','42878','3','20','6h','0',''), ('90187','42879','1','12','$..HostNumericSensorInfo[?(@.name=="VMware Rollup Health State")].healthState.label.first()','0',''), ('90188','42881','1','12','$.mro_time_max','0',''), ('90189','42882','1','12','$.mro_slow_count','0',''), ('90190','42883','1','12','$.mro_time_sum','0',''), ('90191','42884','1','12','$.query_slow_count','0',''), ('90192','42885','1','12','$.query_time_max','0',''), ('90193','42886','1','12','$.query_time_sum','0',''), ('90194','42887','1','12','$.tx_slow_count','0',''), ('90195','42888','1','12','$.tx_time_max','0',''), ('90196','42889','1','12','$.tx_time_sum','0',''), ('90273','42930','1','20','10m','0',''), ('90275','42931','1','26','-1','1',''), ('90276','42931','2','5',E'HTTP.*\\s(\\d+) \\1','0',''), ('90278','42932','1','26','-1','1',''), ('90279','42932','2','5',E'HTTP.*\\s(\\d+) \\1','0',''), ('90281','42934','1','22','sql_bytesin value ','0',''), ('90282','42934','2','10','','0',''), ('90283','42935','1','22','sql_bytesout value ','0',''), ('90284','42935','2','10','','0',''), ('90285','42936','1','22','sql_ddl_count value ','0',''), ('90286','42936','2','10','','0',''), ('90287','42937','1','22','sql_conns value ','0',''), ('90288','42938','1','22','sql_distsql_queries_active value ','0',''), ('90289','42939','1','22','sql_distsql_contended_queries_count value ','0',''), ('90290','42939','2','10','','0',''), ('90291','42940','1','22','sql_delete_count value ','0',''), ('90292','42940','2','10','','0',''), ('90293','42941','1','22','sql_feature_flag_denial value ','0',''), ('90294','42941','2','10','','0',''), ('90295','42942','1','22','sql_failure_count value ','0',''), ('90296','42942','2','10','','0',''), ('90297','42943','1','22','sql_query_count value ','0',''), ('90298','42943','2','10','','0',''), ('90299','42944','1','22','sql_distsql_flows_active value ','0',''), ('90300','42944','2','10','','0',''), ('90301','42945','1','22','sys_host_net_send_bytes value ','0',''), ('90302','42945','2','10','','0',''), ('90303','42946','1','22','sql_insert_count value ','0',''), ('90304','42946','2','10','','0',''), ('90305','42947','1','22','sql_select_count value ','0',''), ('90306','42947','2','10','','0',''), ('90307','42948','1','22','sql_update_count value ','0',''), ('90308','42948','2','10','','0',''), ('90309','42949','1','22','sql_txn_abort_count value ','0',''), ('90310','42949','2','10','','0',''), ('90311','42950','1','22','sql_txn_commit_count value ','0',''), ('90312','42950','2','10','','0',''), ('90313','42951','1','22','sql_txn_begin_count value ','0',''), ('90314','42951','2','10','','0',''), ('90315','42952','1','22','sql_txns_open value ','0',''), ('90316','42953','1','22','sql_txn_rollback_count value ','0',''), ('90317','42953','2','10','','0',''), ('90318','42954','1','22','timeseries_write_errors value ','0',''), ('90319','42954','2','10','','0',''), ('90320','42955','1','22','timeseries_write_samples value ','0',''), ('90321','42955','2','10','','0',''), ('90322','42956','1','22','sys_uptime value ','0',''), ('90323','42957','1','22','build_timestamp label tag','0',''), ('90324','42957','2','20','3h','0',''), ('90325','42958','1','22','requests_slow_distsender value ','0',''), ('90326','42959','1','22','security_certificate_expiration_ca value ','1',''), ('90327','42959','2','20','6h','0',''), ('90328','42960','1','22','sys_host_net_recv_bytes value ','0',''), ('90329','42960','2','10','','0',''), ('90330','42961','1','22','sys_host_disk_write_bytes value ','0',''), ('90331','42961','2','10','','0',''), ('90332','42962','1','22','clock_offset_meannanos value ','0',''), ('90333','42962','2','1','1.0E-9','0',''), ('90334','42963','1','22','sys_cpu_sys_ns value ','0',''), ('90335','42963','2','10','','0',''), ('90336','42963','3','1','1.0E-9','0',''), ('90337','42964','1','22','sys_cpu_user_ns value ','0',''), ('90338','42964','2','10','','0',''), ('90339','42964','3','1','1.0E-9','0',''), ('90340','42965','1','22','sys_cpu_combined_percent_normalized value ','0',''), ('90341','42965','2','1','100','0',''), ('90342','42966','1','22','sys_fd_softlimit value ','0',''), ('90343','42966','2','20','3h','0',''), ('90344','42967','1','22','sys_fd_open value ','0',''), ('90345','42968','1','22','sys_host_disk_iopsinprogress value ','0',''), ('90346','42968','2','10','','0',''), ('90347','42969','1','22','sys_host_disk_read_count value ','0',''), ('90348','42969','2','10','','0',''), ('90349','42970','1','22','sys_host_disk_write_count value ','0',''), ('90350','42970','2','10','','0',''), ('90351','42971','1','22','sys_host_disk_read_bytes value ','0',''), ('90352','42971','2','10','','0',''), ('90353','42972','1','22','sys_gc_pause_ns value ','0',''), ('90354','42972','2','10','','0',''), ('90355','42972','3','1','1.0E-9','0',''), ('90356','42973','1','22','security_certificate_expiration_node value ','1',''), ('90357','42973','2','20','6h','0',''), ('90358','42974','1','22','sys_gc_count value ','0',''), ('90359','42974','2','10','','0',''), ('90360','42975','1','22','sys_goroutines value ','0',''), ('90361','42976','1','22','liveness_heartbeatsuccesses value ','0',''), ('90362','42976','2','10','','0',''), ('90363','42977','1','22','txn_aborts value ','0',''), ('90364','42977','2','10','','0',''), ('90365','42978','1','22','txn_commits value ','0',''), ('90366','42978','2','10','','0',''), ('90367','42979','1','22','liveness_livenodes value ','0',''), ('90368','42979','2','20','3h','0',''), ('90369','42980','1','22','sys_cgo_allocbytes value ','0',''), ('90370','42981','1','22','sys_cgo_totalbytes value ','0',''), ('90371','42982','1','22','sys_go_allocbytes value ','0',''), ('90372','42983','1','22','sys_go_totalbytes value ','0',''), ('90373','42984','1','22','sql_mem_root_current value ','0',''), ('90374','42985','1','22','sys_rss value ','0',''), ('90375','42986','1','23','capacity','0',''), ('90376','42986','2','20','3h','0',''), ('90377','42989','1','22','queue_consistency_process_failure{store="{#STORE}"} value ','0',''), ('90378','42989','2','10','','0',''), ('90379','42990','1','22','rocksdb_block_cache_hits{store="{#STORE}"} value ','0',''), ('90380','42990','2','10','','0',''), ('90381','42991','1','22','capacity{store="{#STORE}"} value ','0',''), ('90382','42991','2','20','3h','0',''), ('90383','42992','1','22','capacity_available{store="{#STORE}"} value ','0',''), ('90384','42993','1','22','sysbytes{store="{#STORE}"} value ','0',''), ('90385','42994','1','22','totalbytes{store="{#STORE}"} value ','0',''), ('90386','42995','1','22','livebytes{store="{#STORE}"} value ','0',''), ('90387','42996','1','22','requests_slow_raft{store="{#STORE}"} value ','0',''), ('90388','42997','1','22','requests_slow_lease{store="{#STORE}"} value ','0',''), ('90389','42998','1','22','requests_slow_latch{store="{#STORE}"} value ','0',''), ('90390','42999','1','22','rocksdb_num_sstables{store="{#STORE}"} value ','0',''), ('90391','43000','1','22','rocksdb_read_amplification{store="{#STORE}"} value ','0',''), ('90392','43001','1','22','rocksdb_block_cache_misses{store="{#STORE}"} value ','0',''), ('90393','43001','2','10','','0',''), ('90394','43002','1','22','replicas_leaseholders{store="{#STORE}"} value ','0',''), ('90395','43003','1','22','queue_gc_process_failure{store="{#STORE}"} value ','0',''), ('90396','43003','2','10','','0',''), ('90397','43004','1','22','replicas_quiescent{store="{#STORE}"} value ','0',''), ('90398','43005','1','22','replicas{store="{#STORE}"} value ','0',''), ('90399','43006','1','22','rebalancing_writespersecond{store="{#STORE}"} value ','0',''), ('90400','43007','1','22','rebalancing_queriespersecond{store="{#STORE}"} value ','0',''), ('90401','43008','1','22','ranges_underreplicated{store="{#STORE}"} value ','0',''), ('90402','43009','1','22','ranges_unavailable{store="{#STORE}"} value ','0',''), ('90403','43010','1','22','ranges{store="{#STORE}"} value ','0',''), ('90404','43011','1','22','queue_tsmaintenance_process_failure{store="{#STORE}"} value ','0',''), ('90405','43011','2','10','','0',''), ('90406','43012','1','22','queue_split_process_failure{store="{#STORE}"} value ','0',''), ('90407','43012','2','10','','0',''), ('90408','43013','1','22','queue_replicate_process_failure{store="{#STORE}"} value ','0',''), ('90409','43013','2','10','','0',''), ('90410','43014','1','22','queue_raftsnapshot_process_failure{store="{#STORE}"} value ','0',''), ('90411','43014','2','10','','0',''), ('90412','43015','1','22','queue_raftlog_process_failure{store="{#STORE}"} value ','0',''), ('90413','43015','2','10','','0',''), ('90414','43016','1','22','queue_replicagc_process_failure{store="{#STORE}"} value ','0',''), ('90415','43016','2','10','','0',''), ('90416','43017','1','22','capacity_used{store="{#STORE}"} value ','0',''), ('90418','43019','1','22','envoy_cluster_manager_active_clusters value ','0',''), ('90419','43020','1','22','envoy_listener_manager_total_listeners_draining function sum','0',''), ('90420','43021','1','22','envoy_server_total_connections value ','0',''), ('90421','43022','1','22','envoy_server_state value ','0',''), ('90422','43022','2','20','3h','0',''), ('90423','43023','1','22','envoy_server_parent_connections value ','0',''), ('90424','43024','1','22','envoy_server_memory_physical_size value ','0',''), ('90425','43025','1','22','envoy_server_memory_heap_size value ','0',''), ('90426','43026','1','22','envoy_server_memory_allocated value ','0',''), ('90427','43027','1','22','envoy_server_live value ','0',''), ('90428','43027','2','20','3h','0',''), ('90429','43028','1','22','envoy_server_days_until_first_cert_expiring value ','0',''), ('90430','43029','1','22','envoy_server_concurrency value ','0',''), ('90431','43030','1','22','envoy_listener_manager_workers_started value ','0',''), ('90432','43030','2','20','3h','0',''), ('90433','43031','1','22','envoy_listener_manager_total_listeners_warming function sum','0',''), ('90434','43032','1','22','envoy_listener_manager_listener_stopped value ','0',''), ('90435','43032','2','10','','0',''), ('90436','43033','1','22','envoy_listener_manager_total_listeners_active function sum','0',''), ('90437','43034','1','22','envoy_cluster_manager_cluster_added value ','0',''), ('90438','43034','2','10','','0',''), ('90439','43035','1','22','envoy_listener_manager_listener_create_success value ','0',''), ('90440','43035','2','10','','0',''), ('90441','43036','1','22','envoy_listener_manager_listener_create_failure value ','0',''), ('90442','43036','2','10','','0',''), ('90443','43037','1','22','envoy_listener_manager_listener_added value ','0',''), ('90444','43037','2','10','','0',''), ('90445','43038','1','22','envoy_filesystem_write_failed value ','0',''), ('90446','43038','2','10','','0',''), ('90447','43039','1','22','envoy_filesystem_write_completed value ','0',''), ('90448','43039','2','10','','0',''), ('90449','43040','1','22','envoy_filesystem_reopen_failed value ','0',''), ('90450','43040','2','10','','0',''), ('90451','43041','1','22','envoy_filesystem_flushed_by_timer value ','0',''), ('90452','43041','2','10','','0',''), ('90453','43042','1','22','envoy_cluster_manager_warming_clusters value ','0',''), ('90454','43043','1','22','envoy_cluster_manager_cluster_updated value ','0',''), ('90455','43043','2','10','','0',''), ('90456','43044','1','22','envoy_cluster_manager_cluster_removed value ','0',''), ('90457','43044','2','10','','0',''), ('90458','43045','1','22','envoy_cluster_manager_cluster_modified value ','0',''), ('90459','43045','2','10','','0',''), ('90460','43046','1','22','envoy_server_uptime value ','1',''), ('90461','43047','1','23','envoy_cluster_membership_total','0',''), ('90462','43047','2','21','var lookup = {}, result = []; JSON.parse(value).forEach(function (item) { var envoy_cluster_name = item.labels.envoy_cluster_name; if (lookup[envoy_cluster_name]) { return; } lookup[envoy_cluster_name] = 1; result.push({ ''{#CLUSTER_NAME}'': envoy_cluster_name }); }); return JSON.stringify(result);','0',''), ('90463','43047','3','20','3h','0',''), ('90464','43048','1','23','envoy_http_downstream_rq_total','0',''), ('90465','43048','2','21','var lookup = {}, result = []; JSON.parse(value).forEach(function (item) { var envoy_http_conn_manager_prefix = item.labels.envoy_http_conn_manager_prefix; if (lookup[envoy_http_conn_manager_prefix]) { return; } lookup[envoy_http_conn_manager_prefix] = 1; result.push({ ''{#CONN_MANAGER}'': envoy_http_conn_manager_prefix }); }); return JSON.stringify(result);','0',''), ('90466','43048','3','20','3h','0',''), ('90467','43049','1','23','envoy_listener_downstream_cx_active','0',''), ('90468','43049','2','21','var lookup = {}, result = []; JSON.parse(value).forEach(function (item) { var envoy_listener_address = item.labels.envoy_listener_address; if (lookup[envoy_listener_address]) { return; } lookup[envoy_listener_address] = 1; result.push({ ''{#LISTENER_ADDRESS}'': envoy_listener_address }); }); return JSON.stringify(result);','0',''), ('90469','43049','3','20','3h','0',''), ('90470','43051','1','22','envoy_cluster_membership_degraded{envoy_cluster_name = "{#CLUSTER_NAME}"} function sum','0',''), ('90471','43052','1','22','envoy_cluster_upstream_rq_xx{envoy_cluster_name = "{#CLUSTER_NAME}", envoy_response_code_class="4"} function sum','0',''), ('90472','43052','2','10','','0',''), ('90473','43053','1','22','envoy_cluster_upstream_rq_timeout{envoy_cluster_name = "{#CLUSTER_NAME}"} function sum','0',''), ('90474','43053','2','10','','0',''), ('90475','43054','1','22','envoy_cluster_upstream_rq_pending_active{envoy_cluster_name = "{#CLUSTER_NAME}"} function sum','0',''), ('90476','43055','1','22','envoy_cluster_upstream_rq_completed{envoy_cluster_name = "{#CLUSTER_NAME}"} function sum','0',''), ('90477','43055','2','10','','0',''), ('90478','43056','1','22','envoy_cluster_upstream_rq_active{envoy_cluster_name = "{#CLUSTER_NAME}"} function sum','0',''), ('90479','43057','1','22','envoy_cluster_upstream_rq_xx{envoy_cluster_name = "{#CLUSTER_NAME}", envoy_response_code_class="5"} function sum','0',''), ('90480','43057','2','10','','0',''), ('90481','43058','1','22','envoy_cluster_upstream_rq_xx{envoy_cluster_name = "{#CLUSTER_NAME}", envoy_response_code_class="2"} function sum','0',''), ('90482','43058','2','10','','0',''), ('90483','43059','1','22','envoy_cluster_upstream_rq_xx{envoy_cluster_name = "{#CLUSTER_NAME}", envoy_response_code_class="3"} function sum','0',''), ('90484','43059','2','10','','0',''), ('90485','43060','1','22','envoy_cluster_membership_healthy{envoy_cluster_name = "{#CLUSTER_NAME}"} function sum','0',''), ('90486','43061','1','22','envoy_cluster_upstream_cx_tx_bytes_total{envoy_cluster_name = "{#CLUSTER_NAME}"} function sum','0',''), ('90487','43061','2','10','','0',''), ('90488','43062','1','22','envoy_cluster_upstream_cx_total{envoy_cluster_name = "{#CLUSTER_NAME}"} function sum','0',''), ('90489','43063','1','22','envoy_cluster_upstream_cx_rx_bytes_total{envoy_cluster_name = "{#CLUSTER_NAME}"} function sum','0',''), ('90490','43063','2','10','','0',''), ('90491','43064','1','22','envoy_cluster_upstream_cx_active{envoy_cluster_name = "{#CLUSTER_NAME}"} function sum','0',''), ('90492','43065','1','22','envoy_cluster_membership_total{envoy_cluster_name = "{#CLUSTER_NAME}"} function sum','0',''), ('90493','43066','1','22','envoy_cluster_upstream_rq_total{envoy_cluster_name = "{#CLUSTER_NAME}"} function sum','0',''), ('90494','43066','2','10','','0',''), ('90495','43067','1','22','envoy_http_downstream_cx_active{envoy_http_conn_manager_prefix = "{#CONN_MANAGER}"} function sum','0',''), ('90496','43068','1','22','envoy_http_downstream_cx_rx_bytes_total{envoy_http_conn_manager_prefix = "{#CONN_MANAGER}"} function sum','0',''), ('90497','43068','2','10','','0',''), ('90498','43069','1','22','envoy_http_downstream_cx_total{envoy_http_conn_manager_prefix = "{#CONN_MANAGER}"} function sum','0',''), ('90499','43069','2','10','','0',''), ('90500','43070','1','22','envoy_http_downstream_cx_tx_bytes_total{envoy_http_conn_manager_prefix = "{#CONN_MANAGER}"} function sum','0',''), ('90501','43070','2','10','','0',''), ('90502','43071','1','22','envoy_http_downstream_rq_active{envoy_http_conn_manager_prefix = "{#CONN_MANAGER}"} function sum','0',''), ('90503','43072','1','22','envoy_http_downstream_rq_timeout{envoy_http_conn_manager_prefix = "{#CONN_MANAGER}"} function sum','0',''), ('90504','43072','2','10','','0',''), ('90505','43073','1','22','envoy_http_downstream_rq_total{envoy_http_conn_manager_prefix = "{#CONN_MANAGER}"} function sum','0',''), ('90506','43073','2','10','','0',''), ('90507','43074','1','22','envoy_listener_downstream_cx_active{envoy_listener_address = "{#LISTENER_ADDRESS}"} function sum','0',''), ('90508','43075','1','22','envoy_listener_downstream_cx_total{envoy_listener_address = "{#LISTENER_ADDRESS}"} function sum','0',''), ('90509','43075','2','10','','0',''), ('90510','43076','1','22','envoy_listener_downstream_pre_cx_active{envoy_listener_address = "{#LISTENER_ADDRESS}"} function sum','0',''), ('90513','43084','1','22','consul_serf_member_join value ','1',''), ('90514','43084','2','10','','0',''), ('90515','43085','1','22','consul_memberlist_tcp_connect value ','1',''), ('90516','43085','2','10','','0',''), ('90517','43086','1','22','consul_memberlist_tcp_sent value ','1',''), ('90518','43086','2','10','','0',''), ('90519','43087','1','22','consul_memberlist_udp_received value ','1',''), ('90520','43087','2','10','','0',''), ('90521','43088','1','22','consul_memberlist_udp_sent value ','1',''), ('90522','43088','2','10','','0',''), ('90523','43089','1','22','process_max_fds value ','0',''), ('90524','43090','1','22','process_open_fds value ','0',''), ('90525','43091','1','22','process_resident_memory_bytes value ','0',''), ('90526','43092','1','12','$.Config.Server','0',''), ('90527','43092','2','6','','0',''), ('90528','43092','3','20','3h','0',''), ('90529','43093','1','22','consul_serf_member_failed value ','1',''), ('90530','43093','2','10','','0',''), ('90531','43094','1','22','consul_serf_member_flap value ','1',''), ('90532','43094','2','10','','0',''), ('90533','43095','1','22','consul_acl_ResolveToken_count value ','1',''), ('90534','43095','2','10','','0',''), ('90535','43096','1','22','consul_serf_member_left value ','1',''), ('90536','43096','2','10','','0',''), ('90537','43097','1','22','consul_memberlist_pushPullNode{quantile="0.9"} value ','1',''), ('90538','43097','2','21','return (isNaN(value)) ? 0 : value;','0',''), ('90539','43098','1','22','consul_serf_member_update value ','1',''), ('90540','43098','2','10','','0',''), ('90541','43099','1','12','$.Stats.agent.services','0',''), ('90542','43099','2','20','3h','0',''), ('90543','43100','1','22','consul_serf_snapshot_appendLine{quantile="0.5"} value ','1',''), ('90544','43100','2','21','return (isNaN(value)) ? 0 : value;','0',''), ('90545','43101','1','22','consul_serf_snapshot_appendLine{quantile="0.9"} value ','1',''), ('90546','43101','2','21','return (isNaN(value)) ? 0 : value;','0',''), ('90547','43102','1','22','consul_serf_snapshot_appendLine_count value ','1',''), ('90548','43102','2','10','','0',''), ('90549','43103','1','22','consul_serf_snapshot_compact{quantile="0.5"} value ','1',''), ('90550','43103','2','21','return (isNaN(value)) ? 0 : value;','0',''), ('90551','43104','1','22','consul_serf_snapshot_compact{quantile="0.9"} value ','1',''), ('90552','43104','2','21','return (isNaN(value)) ? 0 : value;','0',''), ('90553','43105','1','22','consul_serf_snapshot_compact_count value ','1',''), ('90554','43105','2','10','','0',''), ('90555','43106','1','12','$.Config.Version','0',''), ('90556','43106','2','20','3h','0',''), ('90557','43107','1','22','consul_memberlist_tcp_accept value ','1',''), ('90558','43107','2','10','','0',''), ('90559','43108','1','22','consul_memberlist_probeNode{quantile="0.9"} value ','1',''), ('90560','43108','2','21','return (isNaN(value)) ? 0 : value;','0',''), ('90561','43109','1','22','consul_memberlist_pushPullNode{quantile="0.5"} value ','1',''), ('90562','43109','2','21','return (isNaN(value)) ? 0 : value;','0',''), ('90563','43110','1','22','go_goroutines value ','0',''), ('90564','43111','1','22','consul_catalog_register_count value ','1',''), ('90565','43111','2','10','','0',''), ('90566','43112','1','12','$.Stats.agent.checks','0',''), ('90567','43112','2','20','3h','0',''), ('90568','43113','1','12','$.Stats.agent.check_monitors','0',''), ('90569','43113','2','20','3h','0',''), ('90570','43114','1','22','consul_client_rpc value ','1',''), ('90571','43114','2','10','','0',''), ('90572','43115','1','22','consul_client_rpc_failed value ','1',''), ('90573','43115','2','10','','0',''), ('90574','43116','1','22','process_cpu_seconds_total value ','1',''), ('90575','43116','2','10','','0',''), ('90576','43117','1','22','consul_runtime_gc_pause_ns{quantile="0.5"} value ','1',''), ('90577','43117','2','21','return (isNaN(value)) ? 0 : value;','0',''), ('90578','43117','3','1','1.0E-9','0',''), ('90579','43118','1','22','consul_runtime_gc_pause_ns{quantile="0.9"} value ','1',''), ('90580','43118','2','21','return (isNaN(value)) ? 0 : value;','0',''), ('90581','43118','3','1','1.0E-9','0',''), ('90582','43119','1','12','$.error','2',''), ('90583','43119','2','20','3h','0',''), ('90584','43120','1','22','consul_kvs_apply{quantile="0.5"} value ','1',''), ('90585','43120','2','21','return (isNaN(value)) ? 0 : value;','0',''), ('90586','43121','1','22','consul_catalog_deregister_count value ','1',''), ('90587','43121','2','10','','0',''), ('90588','43122','1','22','consul_kvs_apply{quantile="0.9"} value ','1',''), ('90589','43122','2','21','return (isNaN(value)) ? 0 : value;','0',''), ('90590','43123','1','22','consul_kvs_apply_count value ','1',''), ('90591','43123','2','10','','0',''), ('90592','43124','1','22','consul_memberlist_degraded value ','1',''), ('90593','43125','1','22','consul_memberlist_gossip{quantile="0.9"} value ','1',''), ('90594','43125','2','21','return (isNaN(value)) ? 0 : value;','0',''), ('90595','43126','1','22','consul_memberlist_gossip{quantile="0.5"} value ','1',''), ('90596','43126','2','21','return (isNaN(value)) ? 0 : value;','0',''), ('90597','43127','1','22','consul_memberlist_health_score value ','1',''), ('90598','43128','1','22','consul_memberlist_msg_alive value ','1',''), ('90599','43129','1','22','consul_memberlist_msg_dead value ','1',''), ('90600','43130','1','22','consul_memberlist_msg_suspect value ','1',''), ('90601','43131','1','22','consul_memberlist_probeNode{quantile="0.5"} value ','1',''), ('90602','43131','2','21','return (isNaN(value)) ? 0 : value;','0',''), ('90603','43132','1','22','process_virtual_memory_bytes value ','0',''), ('90604','43133','1','23','consul_api_http{method =~ ".*"}','1',''), ('90605','43133','2','21','var lookup = {}, result = []; JSON.parse(value).forEach(function (item) { var http_method = item.labels.method; if (!(lookup[http_method])) { lookup[http_method] = 1; result.push({ "{#HTTP_METHOD}": http_method }); } }) return JSON.stringify(result);','0',''), ('90606','43133','3','20','3h','0',''), ('90607','43134','1','21','var data = JSON.parse(value), result = []; if (data.length === 0) { return ''[]'' }; data.forEach(function (service) { result.push({ ''{#TYPE}'': ''aggregated_status'', ''{#SERVICE_NAME}'': service.name, ''{#SERVICE_ID}'': service.id, ''{#SERVICE_NAMESPACE}'': service.namespace }); if (service[''checks''] !== 0) { service[''checks''].forEach(function (check) { result.push({ ''{#TYPE}'': ''service_check'', ''{#SERVICE_NAME}'': service.name, ''{#SERVICE_ID}'': service.id, ''{#SERVICE_NAMESPACE}'': service.namespace, ''{#SERVICE_CHECK_ID}'': check["CheckID"], ''{#SERVICE_CHECK_NAME}'': check["Name"] }); }); } }); return JSON.stringify(result)','0',''), ('90608','43134','2','20','3h','0',''), ('90609','43135','1','21','return JSON.stringify(JSON.parse(value)["Stats"]["leader"] === true ? [{''{#SINGLETON}'': ''''}] : []);','0',''), ('90610','43135','2','20','3h','0',''), ('90611','43136','1','21','return JSON.stringify(JSON.parse(value)["Config"]["Server"] === true ? [{''{#SINGLETON}'': ''''}] : []);','0',''), ('90612','43136','2','20','3h','0',''), ('90613','43137','1','22','consul_api_http{method = "{#HTTP_METHOD}", quantile = "0.5"} function sum','1',''), ('90614','43138','1','22','consul_api_http{method = "{#HTTP_METHOD}", quantile = "0.9"} function sum','1',''), ('90615','43139','1','22','consul_api_http_count{method = "{#HTTP_METHOD}"} function sum','1',''), ('90616','43139','2','10','','0',''), ('90617','43140','1','12','$[?(@.id == "{#SERVICE_ID}")].status.first()','0',''), ('90618','43140','2','21','var state = [''passing'', ''warning'', ''critical'']; return state.indexOf(value.trim()) === -1 ? 255 : state.indexOf(value.trim());','0',''), ('90619','43140','3','20','3h','0',''), ('90620','43141','1','12','$[?(@.id == "{#SERVICE_ID}")].checks[?(@.CheckID == "{#SERVICE_CHECK_ID}")].Output.first()','0',''), ('90621','43141','2','20','3h','0',''), ('90622','43142','1','12','$[?(@.id == "{#SERVICE_ID}")].checks[?(@.CheckID == "{#SERVICE_CHECK_ID}")].Status.first()','0',''), ('90623','43142','2','21','var state = [''passing'', ''warning'', ''critical'']; return state.indexOf(value.trim()) === -1 ? 255 : state.indexOf(value.trim());','0',''), ('90624','43142','3','20','3h','0',''), ('90625','43143','1','22','consul_autopilot_healthy value ','1',''), ('90626','43144','1','22','consul_raft_commitTime{quantile="0.5"} value ','1',''), ('90627','43144','2','21','return (isNaN(value)) ? 0 : value;','0',''), ('90628','43145','1','22','consul_raft_commitTime{quantile="0.9"} value ','1',''), ('90629','43145','2','21','return (isNaN(value)) ? 0 : value;','0',''), ('90630','43146','1','22','consul_raft_commitTime_count value ','1',''), ('90631','43146','2','10','','0',''), ('90632','43147','1','22','consul_raft_leader_dispatchLog{quantile="0.5"} value ','1',''), ('90633','43147','2','21','return (isNaN(value)) ? 0 : value;','0',''), ('90634','43148','1','22','consul_raft_leader_dispatchLog{quantile="0.9"} value ','1',''), ('90635','43148','2','21','return (isNaN(value)) ? 0 : value;','0',''), ('90636','43149','1','22','consul_raft_leader_dispatchLog_count value ','1',''), ('90637','43149','2','10','','0',''), ('90638','43150','1','22','consul_raft_leader_lastContact{quantile="0.5"} value ','1',''), ('90639','43150','2','21','return (isNaN(value)) ? 0 : value;','0',''), ('90640','43151','1','22','consul_raft_leader_lastContact{quantile="0.9"} value ','1',''), ('90641','43151','2','21','return (isNaN(value)) ? 0 : value;','0',''), ('90642','43152','1','22','consul_raft_apply value ','1',''), ('90643','43152','2','10','','0',''), ('90644','43153','1','12','$.Stats.raft.state','0',''), ('90645','43153','2','20','3h','0',''), ('90646','43154','1','22','consul_raft_state_candidate value ','1',''), ('90647','43155','1','22','consul_raft_state_leader value ','1',''), ('90651','43158','1','26','-1','1',''), ('90652','43158','2','4','"','0',''), ('90655','43160','1','26','-1','1',''), ('90656','43160','2','12','$.length()','0',''), ('90657','43161','1','12','$[?(@.Status == "critical")].length()','0',''), ('90658','43161','2','20','3h','0',''), ('90659','43162','1','12','$[?(@.Status == "passing")].length()','0',''), ('90660','43162','2','20','3h','0',''), ('90661','43163','1','12','$.length()','0',''), ('90662','43163','2','20','3h','0',''), ('90663','43164','1','12','$[?(@.Status == "warning")].length()','0',''), ('90664','43164','2','20','3h','0',''), ('90665','43165','1','21','return Object.keys(JSON.parse(value)).length;','0',''), ('90666','43165','2','20','3h','0',''), ('90667','43166','1','21','var data = JSON.parse(value), consul_api_scheme = ''{$CONSUL.API.SCHEME}'', consul_api_port = ''{$CONSUL.API.PORT}'', result = []; data.forEach(function (instance) { if (instance["ID"] != '''') { result.push({ ''{#NODE_NAME}'': instance["Node"], ''{#NODE_ADDRESS}'': instance["Address"], ''{#NODE_API_URL}'': consul_api_scheme + ''://'' + instance["Address"] + '':'' + consul_api_port, ''{#NODE_DATACENTER}'': instance["Datacenter"] }); } }); return JSON.stringify(result);','0',''), ('90668','43166','2','20','3h','0',''), ('90669','43167','1','21','var data = []; Object.keys(JSON.parse(value)).forEach(function (v) { data.push({ ''{#SERVICE_NAME}'': v }) }); return JSON.stringify(data);','0',''), ('90670','43167','2','20','3h','0',''), ('90672','43169','1','12','$[?(@.Node == "{#NODE_NAME}" && @.CheckID == "serfHealth")].Status.first()','0',''), ('90673','43169','2','21','var state = [''passing'', ''warning'', ''critical'']; return state.indexOf(value.trim()) === -1 ? 255 : state.indexOf(value.trim());','0',''), ('90674','43169','3','20','3h','0',''), ('90675','43170','1','12','$[?(@.Service.Service == "{#SERVICE_NAME}")].Checks[?(@.CheckID == "serfHealth" && @.Status == ''critical'')].length()','0',''), ('90676','43170','2','20','3h','0',''), ('90677','43171','1','12','$[?(@.Service.Service == "{#SERVICE_NAME}")].Checks[?(@.CheckID == "serfHealth" && @.Status == ''passing'')].length()','0',''), ('90678','43171','2','20','3h','0',''), ('90679','43172','1','12','$[?(@.Service.Service == "{#SERVICE_NAME}")].Checks[?(@.CheckID == "serfHealth" && @.Status == ''warning'')].length()','0',''), ('90680','43172','2','20','3h','0',''), ('90681','43175','1','20','1h','0',''), ('90682','43176','1','12','$.[''errors'']','0',''), ('90683','43176','2','20','1d','0',''), ('90684','43177','1','12','$.[''system-contact'']','0',''), ('90685','43177','2','20','1d','0',''), ('90686','43178','1','12','$.[''health-numeric'']','2','4'), ('90687','43179','1','12','$.[''system-information'']','0',''), ('90688','43179','2','20','1d','0',''), ('90689','43180','1','12','$.[''system-location'']','0',''), ('90690','43180','2','20','1d','0',''), ('90691','43181','1','12','$.[''system-name'']','0',''), ('90692','43181','2','20','1d','0',''), ('90693','43182','1','12','$.[''product-id'']','0',''), ('90694','43182','2','20','1d','0',''), ('90695','43183','1','12','$.[''vendor-name'']','0',''), ('90696','43183','2','20','1d','0',''), ('90717','43194','1','20','1h','0',''), ('90718','43195','1','20','1h','0',''), ('90719','43196','1','12','$.[''read-cache-hits'']','0',''), ('90720','43196','2','10','','0',''), ('90721','43197','1','12','$.[''number-of-writes'']','0',''), ('90722','43197','2','10','','0',''), ('90723','43198','1','12','$.[''status-numeric'']','0',''), ('90724','43198','2','20','1d','0',''), ('90725','43199','1','12','$.[''serial-number'']','0',''), ('90726','43199','2','20','1d','0',''), ('90727','43200','1','12','$.[''number-of-storage-pools'']','0',''), ('90728','43200','2','20','1d','0',''), ('90729','43201','1','12','$.[''part-number'']','0',''), ('90730','43201','2','20','1d','0',''), ('90731','43202','1','12','$.[''ip-address'']','0',''), ('90732','43202','2','20','1d','0',''), ('90733','43203','1','12','$.[''health-numeric'']','2','4'), ('90734','43203','2','20','1h','0',''), ('90735','43204','1','12','$.[''sc-fw'']','0',''), ('90736','43204','2','20','1d','0',''), ('90737','43205','1','12','$.[''virtual-disks'']','0',''), ('90738','43205','2','20','1d','0',''), ('90739','43206','1','12','$.[''disks'']','0',''), ('90740','43206','2','20','1d','0',''), ('90741','43207','1','12','$.[''iops'']','0',''), ('90742','43208','1','12','$.[''read-cache-misses'']','0',''), ('90743','43208','2','10','','0',''), ('90744','43209','1','12','$.[''number-of-reads'']','0',''), ('90745','43209','2','10','','0',''), ('90746','43210','1','12','$.[''data-written-numeric'']','0',''), ('90747','43210','2','10','','0',''), ('90748','43211','1','12','$.[''bytes-per-second-numeric'']','0',''), ('90749','43212','1','12','$.[''data-read-numeric'']','0',''), ('90750','43212','2','10','','0',''), ('90751','43213','1','12','$.[''cpu-load'']','0',''), ('90752','43214','1','12','$.[''cache-memory-size'']','0',''), ('90753','43214','2','20','1d','0',''), ('90754','43214','3','1','1048576','0',''), ('90755','43215','1','12','$.[''write-cache-used'']','0',''), ('90756','43216','1','12','$.[''write-cache-misses'']','0',''), ('90757','43216','2','10','','0',''), ('90758','43217','1','12','$.[''write-cache-hits'']','0',''), ('90759','43217','2','10','','0',''), ('90760','43218','1','12','$.[''power-on-time'']','0',''), ('90761','43219','1','12','$.[''size-numeric'']','0',''), ('90762','43219','2','20','1h','0',''), ('90763','43219','3','1','512','0',''), ('90764','43220','1','12','$.[''ssd-life-left-numeric'']','0',''), ('90765','43220','2','20','1h','0',''), ('90766','43221','1','12','$.[''disk-group'']','1',''), ('90767','43221','2','20','1d','0',''), ('90768','43222','1','12','$.[''health-numeric'']','2','4'), ('90769','43222','2','20','1h','0',''), ('90770','43223','1','12','$.[''model'']','0',''), ('90771','43223','2','20','1d','0',''), ('90772','43224','1','12','$.[''storage-pool-name'']','1',''), ('90773','43224','2','20','1d','0',''), ('90774','43225','1','12','$.[''serial-number'']','0',''), ('90775','43225','2','20','1d','0',''), ('90776','43226','1','12','$.[''temperature-numeric'']','1',''), ('90777','43226','2','20','1h','0',''), ('90778','43227','1','12','$.[''temperature-status-numeric'']','1',''), ('90779','43227','2','13','1 3','2','4'), ('90780','43227','3','20','1h','0',''), ('90781','43228','1','12','$.[''description-numeric'']','0',''), ('90782','43228','2','20','1d','0',''), ('90783','43229','1','12','$.[''vendor'']','0',''), ('90784','43229','2','20','1d','0',''), ('90785','43230','1','12','$.[''avg-read-rsp-time'']','0',''), ('90786','43230','2','1','1.0E-6','0',''), ('90787','43231','1','12','$.[''raidtype-numeric'']','0',''), ('90788','43231','2','20','1d','0',''), ('90789','43232','1','12','$.[''health-numeric'']','2','4'), ('90790','43232','2','20','1h','0',''), ('90791','43233','1','12','$.[''diskcount'']','1',''), ('90792','43233','2','20','1h','0',''), ('90793','43234','1','12','$.[''size-numeric'']','0',''), ('90794','43234','2','20','1h','0',''), ('90795','43234','3','1','512','0',''), ('90796','43235','1','12','$.[''pool-percentage'']','0',''), ('90797','43235','2','20','1h','0',''), ('90798','43236','1','12','$[''freespace-numeric'']','0',''), ('90799','43236','2','20','1h','0',''), ('90800','43236','3','1','512','0',''), ('90801','43237','1','12','$.[''number-of-writes'']','0',''), ('90802','43237','2','10','','0',''), ('90803','43238','1','12','$.[''avg-rsp-time'']','0',''), ('90804','43238','2','1','1.0E-6','0',''), ('90805','43239','1','12','$.[''iops'']','0',''), ('90806','43240','1','12','$.[''number-of-reads'']','0',''), ('90807','43240','2','10','','0',''), ('90808','43241','1','12','$.[''data-written-numeric'']','0',''), ('90809','43241','2','10','','0',''), ('90810','43242','1','12','$.[''bytes-per-second-numeric'']','0',''), ('90811','43243','1','12','$.[''data-read-numeric'']','0',''), ('90812','43243','2','10','','0',''), ('90813','43244','1','12','$.[''avg-write-rsp-time'']','0',''), ('90814','43244','2','1','1.0E-6','0',''), ('90815','43245','1','12','$.[''status-numeric'']','0',''), ('90816','43245','2','20','1h','0',''), ('90817','43246','1','12','$.[''health-numeric'']','2','4'), ('90818','43246','2','20','1h','0',''), ('90819','43247','1','12','$.[''midplane-serial-number'']','0',''), ('90820','43247','2','20','1d','0',''), ('90821','43248','1','12','$.[''model'']','0',''), ('90822','43248','2','20','1d','0',''), ('90823','43249','1','12','$.[''part-number'']','0',''), ('90824','43249','2','20','1d','0',''), ('90825','43250','1','12','$.[''enclosure-power'']','0',''), ('90826','43251','1','12','$.[''status-numeric'']','2','6'), ('90827','43251','2','20','1d','0',''), ('90828','43252','1','12','$.[''health-numeric'']','2','4'), ('90829','43252','2','20','1h','0',''), ('90830','43253','1','12','$.[''speed'']','0',''), ('90831','43254','1','12','$.[''status-numeric'']','0',''), ('90832','43254','2','20','1h','0',''), ('90833','43255','1','12','$.[''part-number'']','0',''), ('90834','43255','2','20','1d','0',''), ('90835','43256','1','12','$.[''serial-number'']','0',''), ('90836','43256','2','20','1d','0',''), ('90837','43257','1','12','$.[''fru-status'']','0',''), ('90838','43257','2','20','1h','0',''), ('90839','43257','3','21','if (value == ''Absent'') { return 2; } else if (value == ''Fault'') { return 1; } else if (value == ''Invalid Data'') { return 0; } else if (value == ''OK'') { return 4; } else if (value == ''Not Available'') { return 5; } return 6;','0',''), ('90840','43258','1','12','$[''total-avail-numeric'']','0',''), ('90841','43258','2','20','1h','0',''), ('90842','43258','3','1','512','0',''), ('90843','43259','1','12','$[''total-size-numeric'']','0',''), ('90844','43259','2','20','1h','0',''), ('90845','43259','3','1','512','0',''), ('90846','43260','1','12','$.[''health-numeric'']','2','4'), ('90847','43260','2','20','1h','0',''), ('90848','43261','1','12','$.[''health-numeric'']','2','4'), ('90849','43261','2','20','1h','0',''), ('90850','43262','1','12','$.[''status-numeric'']','2','4'), ('90851','43262','2','20','1h','0',''), ('90852','43263','1','12','$.[''port-type-numeric'']','0',''), ('90853','43263','2','20','1d','0',''), ('90854','43264','1','12','$.[''health-numeric'']','2','4'), ('90855','43264','2','20','1h','0',''), ('90856','43265','1','12','$.[''part-number'']','0',''), ('90857','43265','2','20','1d','0',''), ('90858','43266','1','12','$.[''serial-number'']','0',''), ('90859','43266','2','20','1d','0',''), ('90860','43267','1','12','$.[''status-numeric'']','2','4'), ('90861','43267','2','20','1h','0',''), ('90862','43268','1','12','$.[''dctemp'']','0',''), ('90863','43268','2','20','1h','0',''), ('90864','43269','1','12','$.[''read-cache-hits'']','0',''), ('90865','43269','2','10','','0',''), ('90866','43270','1','12','$.[''read-cache-misses'']','0',''), ('90867','43270','2','10','','0',''), ('90868','43271','1','12','$.[''write-cache-hits'']','0',''), ('90869','43271','2','10','','0',''), ('90870','43272','1','12','$.[''write-cache-misses'']','0',''), ('90871','43272','2','10','','0',''), ('90872','43273','1','12','$.[''data-read-numeric'']','0',''), ('90873','43273','2','10','','0',''), ('90874','43274','1','12','$.[''bytes-per-second-numeric'']','0',''), ('90875','43275','1','12','$.[''data-written-numeric'']','0',''), ('90876','43275','2','10','','0',''), ('90877','43276','1','12','$.[''number-of-reads'']','0',''), ('90878','43276','2','10','','0',''), ('90879','43277','1','12','$.[''iops'']','0',''), ('90880','43278','1','12','$.[''number-of-writes'']','0',''), ('90881','43278','2','10','','0',''), ('90882','43279','1','12','$[''allocated-size-numeric'']','0',''), ('90883','43279','2','20','1h','0',''), ('90884','43279','3','1','512','0',''), ('90885','43280','1','12','$.[''size-numeric'']','0',''), ('90886','43280','2','20','1h','0',''), ('90887','43280','3','1','512','0',''), ('90888','43282','1','20','1h','0',''), ('90889','43283','1','12','$.[''errors'']','0',''), ('90890','43283','2','20','1d','0',''), ('90891','43284','1','12','$.[''system-contact'']','0',''), ('90892','43284','2','20','1d','0',''), ('90893','43285','1','12','$.[''health-numeric'']','2','4'), ('90894','43286','1','12','$.[''system-information'']','0',''), ('90895','43286','2','20','1d','0',''), ('90896','43287','1','12','$.[''system-location'']','0',''), ('90897','43287','2','20','1d','0',''), ('90898','43288','1','12','$.[''system-name'']','0',''), ('90899','43288','2','20','1d','0',''), ('90900','43289','1','12','$.[''product-id'']','0',''), ('90901','43289','2','20','1d','0',''), ('90902','43290','1','12','$.[''vendor-name'']','0',''), ('90903','43290','2','20','1d','0',''), ('90924','43301','1','20','1d','0',''), ('90925','43302','1','20','1h','0',''), ('90926','43303','1','20','1h','0',''), ('90927','43304','1','20','1h','0',''), ('90928','43305','1','20','1h','0',''), ('90929','43306','1','20','1h','0',''), ('90930','43307','1','20','1h','0',''), ('90931','43308','1','20','1h','0',''), ('90932','43309','1','20','1h','0',''), ('90933','43310','1','12','$.[''read-cache-hits'']','0',''), ('90934','43310','2','10','','0',''), ('90935','43311','1','12','$.[''number-of-writes'']','0',''), ('90936','43311','2','10','','0',''), ('90937','43312','1','12','$.[''status-numeric'']','0',''), ('90938','43312','2','20','1d','0',''), ('90939','43313','1','12','$.[''serial-number'']','0',''), ('90940','43313','2','20','1d','0',''), ('90941','43314','1','12','$.[''number-of-storage-pools'']','0',''), ('90942','43314','2','20','1d','0',''), ('90943','43315','1','12','$.[''part-number'']','0',''), ('90944','43315','2','20','1d','0',''), ('90945','43316','1','12','$.[''ip-address'']','0',''), ('90946','43316','2','20','1d','0',''), ('90947','43317','1','12','$.[''health-numeric'']','2','4'), ('90948','43317','2','20','1h','0',''), ('90949','43318','1','12','$.[''sc-fw'']','0',''), ('90950','43318','2','20','1d','0',''), ('90951','43319','1','12','$.[''virtual-disks'']','0',''), ('90952','43319','2','20','1d','0',''), ('90953','43320','1','12','$.[''disks'']','0',''), ('90954','43320','2','20','1d','0',''), ('90955','43321','1','12','$.[''iops'']','0',''), ('90956','43322','1','12','$.[''read-cache-misses'']','0',''), ('90957','43322','2','10','','0',''), ('90958','43323','1','12','$.[''number-of-reads'']','0',''), ('90959','43323','2','10','','0',''), ('90960','43324','1','12','$.[''data-written-numeric'']','0',''), ('90961','43324','2','10','','0',''), ('90962','43325','1','12','$.[''bytes-per-second-numeric'']','0',''), ('90963','43326','1','12','$.[''data-read-numeric'']','0',''), ('90964','43326','2','10','','0',''), ('90965','43327','1','12','$.[''cpu-load'']','0',''), ('90966','43328','1','12','$.[''cache-memory-size'']','0',''), ('90967','43328','2','20','1d','0',''), ('90968','43328','3','1','1048576','0',''), ('90969','43329','1','12','$.[''write-cache-used'']','0',''), ('90970','43330','1','12','$.[''write-cache-misses'']','0',''), ('90971','43330','2','10','','0',''), ('90972','43331','1','12','$.[''write-cache-hits'']','0',''), ('90973','43331','2','10','','0',''), ('90974','43332','1','12','$.[''power-on-time'']','0',''), ('90975','43333','1','12','$.[''blocksize'']','0',''), ('90976','43333','2','20','1h','0',''), ('90977','43334','1','12','$.[''blocks'']','0',''), ('90978','43334','2','20','1h','0',''), ('90979','43335','1','12','$.[''ssd-life-left-numeric'']','0',''), ('90980','43335','2','20','1h','0',''), ('90981','43336','1','12','$.[''disk-group'']','1',''), ('90982','43336','2','20','1d','0',''), ('90983','43337','1','12','$.[''health-numeric'']','2','4'), ('90984','43337','2','20','1h','0',''), ('90985','43338','1','12','$.[''model'']','0',''), ('90986','43338','2','20','1d','0',''), ('90987','43339','1','12','$.[''storage-pool-name'']','1',''), ('90988','43339','2','20','1d','0',''), ('90989','43340','1','12','$.[''serial-number'']','0',''), ('90990','43340','2','20','1d','0',''), ('90991','43341','1','12','$.[''temperature-numeric'']','1',''), ('90992','43341','2','20','1h','0',''), ('90993','43342','1','12','$.[''temperature-status-numeric'']','1',''), ('90994','43342','2','13','1 3','2','4'), ('90995','43342','3','20','1h','0',''), ('90996','43343','1','12','$.[''description-numeric'']','0',''), ('90997','43343','2','20','1d','0',''), ('90998','43344','1','12','$.[''vendor'']','0',''), ('90999','43344','2','20','1d','0',''), ('91000','43345','1','12','$.[''avg-read-rsp-time'']','0',''), ('91001','43345','2','1','1.0E-6','0',''), ('91002','43346','1','12','$.[''number-of-writes'']','0',''), ('91003','43346','2','10','','0',''), ('91004','43347','1','12','$.[''health-numeric'']','2','4'), ('91005','43347','2','20','1h','0',''), ('91006','43348','1','12','$.[''diskcount'']','1',''), ('91007','43348','2','20','1h','0',''), ('91008','43349','1','12','$.[''pool-percentage'']','0',''), ('91009','43349','2','20','1h','0',''), ('91010','43350','1','12','$.[''raidtype-numeric'']','0',''), ('91011','43350','2','20','1d','0',''), ('91012','43351','1','12','$.[''iops'']','0',''), ('91013','43352','1','12','$.[''avg-rsp-time'']','0',''), ('91014','43352','2','1','1.0E-6','0',''), ('91015','43353','1','12','$.[''number-of-reads'']','0',''), ('91016','43353','2','10','','0',''), ('91017','43354','1','12','$.[''data-written-numeric'']','0',''), ('91018','43354','2','10','','0',''), ('91019','43355','1','12','$.[''bytes-per-second-numeric'']','0',''), ('91020','43356','1','12','$.[''data-read-numeric'']','0',''), ('91021','43356','2','10','','0',''), ('91022','43357','1','12','$.[''blocks'']','0',''), ('91023','43357','2','20','1h','0',''), ('91024','43358','1','12','$.[''blocksize'']','0',''), ('91025','43358','2','20','1h','0',''), ('91026','43359','1','12','$.[''freespace-numeric'']','0',''), ('91027','43359','2','20','1h','0',''), ('91028','43360','1','12','$.[''avg-write-rsp-time'']','0',''), ('91029','43360','2','1','1.0E-6','0',''), ('91030','43361','1','12','$.[''status-numeric'']','0',''), ('91031','43361','2','20','1h','0',''), ('91032','43362','1','12','$.[''health-numeric'']','2','4'), ('91033','43362','2','20','1h','0',''), ('91034','43363','1','12','$.[''midplane-serial-number'']','0',''), ('91035','43363','2','20','1d','0',''), ('91036','43364','1','12','$.[''model'']','0',''), ('91037','43364','2','20','1d','0',''), ('91038','43365','1','12','$.[''part-number'']','0',''), ('91039','43365','2','20','1d','0',''), ('91040','43366','1','12','$.[''enclosure-power'']','0',''), ('91041','43367','1','12','$.[''status-numeric'']','2','6'), ('91042','43367','2','20','1d','0',''), ('91043','43368','1','12','$.[''health-numeric'']','2','4'), ('91044','43368','2','20','1h','0',''), ('91045','43369','1','12','$.[''speed'']','0',''), ('91046','43370','1','12','$.[''status-numeric'']','0',''), ('91047','43370','2','20','1h','0',''), ('91048','43371','1','12','$.[''part-number'']','0',''), ('91049','43371','2','20','1d','0',''), ('91050','43372','1','12','$.[''serial-number'']','0',''), ('91051','43372','2','20','1d','0',''), ('91052','43373','1','12','$.[''fru-status-numeric'']','0',''), ('91053','43373','2','20','1h','0',''), ('91054','43374','1','12','$.[''total-avail-numeric'']','0',''), ('91055','43374','2','20','1h','0',''), ('91056','43375','1','12','$.[''blocksize'']','0',''), ('91057','43375','2','20','1h','0',''), ('91058','43376','1','12','$.[''total-size-numeric'']','0',''), ('91059','43376','2','20','1h','0',''), ('91060','43377','1','12','$.[''health-numeric'']','2','4'), ('91061','43377','2','20','1h','0',''), ('91062','43378','1','12','$.[''health-numeric'']','2','4'), ('91063','43378','2','20','1h','0',''), ('91064','43379','1','12','$.[''status-numeric'']','2','4'), ('91065','43379','2','20','1h','0',''), ('91066','43380','1','12','$.[''port-type-numeric'']','0',''), ('91067','43380','2','20','1d','0',''), ('91068','43381','1','12','$.[''health-numeric'']','2','4'), ('91069','43381','2','20','1h','0',''), ('91070','43382','1','12','$.[''part-number'']','0',''), ('91071','43382','2','20','1d','0',''), ('91072','43383','1','12','$.[''serial-number'']','0',''), ('91073','43383','2','20','1d','0',''), ('91074','43384','1','12','$.[''status-numeric'']','2','4'), ('91075','43384','2','20','1h','0',''), ('91076','43385','1','12','$.[''allocated-size-numeric'']','0',''), ('91077','43385','2','20','1h','0',''), ('91078','43386','1','12','$.[''blocksize'']','0',''), ('91079','43386','2','20','1h','0',''), ('91080','43387','1','12','$.[''blocks'']','0',''), ('91081','43387','2','20','1h','0',''), ('91082','43388','1','12','$.[''read-cache-hits'']','0',''), ('91083','43388','2','10','','0',''), ('91084','43389','1','12','$.[''read-cache-misses'']','0',''), ('91085','43389','2','10','','0',''), ('91086','43390','1','12','$.[''write-cache-hits'']','0',''), ('91087','43390','2','10','','0',''), ('91088','43391','1','12','$.[''write-cache-misses'']','0',''), ('91089','43391','2','10','','0',''), ('91090','43392','1','12','$.[''data-read-numeric'']','0',''), ('91091','43392','2','10','','0',''), ('91092','43393','1','12','$.[''bytes-per-second-numeric'']','0',''), ('91093','43394','1','12','$.[''data-written-numeric'']','0',''), ('91094','43394','2','10','','0',''), ('91095','43395','1','12','$.[''number-of-reads'']','0',''), ('91096','43395','2','10','','0',''), ('91097','43396','1','12','$.[''iops'']','0',''), ('91098','43397','1','12','$.[''number-of-writes'']','0',''), ('91099','43397','2','10','','0',''), ('91100','43398','1','20','10m','0',''), ('91101','43400','1','12','$.systemVersion','0',''), ('91102','43400','2','20','1d','0',''), ('91103','43401','1','12','$.serialNumber','0',''), ('91104','43401','2','20','1d','0',''), ('91105','43402','1','12','$.totalNodes','0',''), ('91106','43402','2','20','1h','0',''), ('91107','43403','1','12','$.onlineNodes.length()','0',''), ('91108','43403','2','20','1h','0',''), ('91109','43404','1','12','$.name','0',''), ('91110','43404','2','20','6h','0',''), ('91111','43405','1','12','$.model','0',''), ('91112','43405','2','20','1d','0',''), ('91113','43406','1','12','$.errors','0',''), ('91114','43406','2','20','1h','0',''), ('91115','43407','1','12','$.location','1',''), ('91116','43407','2','20','1d','0',''), ('91117','43408','1','12','$.chunkletSizeMiB','0',''), ('91118','43408','2','20','1h','0',''), ('91119','43408','3','1','1048576','0',''), ('91120','43409','1','12','$.totalCapacityMiB','0',''), ('91121','43409','2','20','1h','0',''), ('91122','43409','3','1','1048576','0',''), ('91123','43410','1','12','$.freeCapacityMiB','0',''), ('91124','43410','2','20','10m','0',''), ('91125','43410','3','1','1048576','0',''), ('91126','43411','1','12','$.failedCapacityMiB','0',''), ('91127','43411','2','20','1h','0',''), ('91128','43411','3','1','1048576','0',''), ('91129','43412','1','12','$.allocatedCapacityMiB','0',''), ('91130','43412','2','20','1h','0',''), ('91131','43412','3','1','1048576','0',''), ('91132','43413','1','12','$.total','0',''), ('91133','43413','2','20','1h','0',''), ('91134','43414','1','12','$.contact','1',''), ('91135','43414','2','20','1d','0',''), ('91136','43415','1','12','$.members','0',''), ('91137','43415','2','20','6h','0',''), ('91138','43416','1','12','$.members','0',''), ('91139','43416','2','20','6h','0',''), ('91140','43417','1','12','$.members','0',''), ('91141','43417','2','20','6h','0',''), ('91142','43418','1','12','$.members','0',''), ('91143','43418','2','20','6h','0',''), ('91144','43419','1','20','6h','0',''), ('91146','43420','1','12','$.members','0',''), ('91147','43420','2','20','6h','0',''), ('91148','43421','1','12','$.numFPVVs','0',''), ('91149','43421','2','20','1h','0',''), ('91150','43422','1','12','$.UsrUsage.rawUsedMiB','0',''), ('91151','43422','2','20','10m','0',''), ('91152','43422','3','1','1048576','0',''), ('91153','43423','1','12','$.numTDVVs','0',''), ('91154','43423','2','20','1h','0',''), ('91155','43424','1','12','$.state','0',''), ('91156','43425','1','12','$.failedStates','0',''), ('91157','43425','2','21','return JSON.stringify(JSON.parse(value));','0',''), ('91158','43426','1','12','$.degradedStates','0',''), ('91159','43427','1','12','$.totalSpaceMiB','0',''), ('91160','43427','2','20','1h','0',''), ('91161','43427','3','1','1048576','0',''), ('91162','43428','1','12','$.sharedSpaceMiB','0',''), ('91163','43428','2','20','1h','0',''), ('91164','43428','3','1','1048576','0',''), ('91165','43429','1','12','$.freeSpaceMiB','0',''), ('91166','43429','2','20','10m','0',''), ('91167','43429','3','1','1048576','0',''), ('91168','43430','1','12','$.UsrUsage.usedMiB','0',''), ('91169','43430','2','20','10m','0',''), ('91170','43430','3','1','1048576','0',''), ('91171','43431','1','12','$.UsrUsage.totalMiB','0',''), ('91172','43431','2','20','1h','0',''), ('91173','43431','3','1','1048576','0',''), ('91174','43432','1','12','$.UsrUsage.rawTotalMiB','0',''), ('91175','43432','2','20','1h','0',''), ('91176','43432','3','1','1048576','0',''), ('91177','43433','1','12','$.rawFreeSpaceMiB','0',''), ('91178','43433','2','20','10m','0',''), ('91179','43433','3','1','1048576','0',''), ('91180','43434','1','12','$.SDUsage.usedMiB','0',''), ('91181','43434','2','20','10m','0',''), ('91182','43434','3','1','1048576','0',''), ('91183','43435','1','12','$.SDUsage.totalMiB','0',''), ('91184','43435','2','20','1h','0',''), ('91185','43435','3','1','1048576','0',''), ('91186','43436','1','12','$.SDUsage.rawUsedMiB','0',''), ('91187','43436','2','20','10m','0',''), ('91188','43436','3','1','1048576','0',''), ('91189','43437','1','12','$.SDUsage.rawTotalMiB','0',''), ('91190','43437','2','20','1h','0',''), ('91191','43437','3','1','1048576','0',''), ('91192','43438','1','12','$.SAUsage.usedMiB','0',''), ('91193','43438','2','20','10m','0',''), ('91194','43438','3','1','1048576','0',''), ('91195','43439','1','12','$.SAUsage.totalMiB','0',''), ('91196','43439','2','20','1h','0',''), ('91197','43439','3','1','1048576','0',''), ('91198','43440','1','12','$.SAUsage.rawUsedMiB','0',''), ('91199','43440','2','20','10m','0',''), ('91200','43440','3','1','1048576','0',''), ('91201','43441','1','12','$.SAUsage.rawTotalMiB','0',''), ('91202','43441','2','20','1h','0',''), ('91203','43441','3','1','1048576','0',''), ('91204','43442','1','12','$.rawTotalSpaceMiB','0',''), ('91205','43442','2','20','1h','0',''), ('91206','43442','3','1','1048576','0',''), ('91207','43443','1','12','$.rawSharedSpaceMiB','0',''), ('91208','43443','2','20','1h','0',''), ('91209','43443','3','1','1048576','0',''), ('91210','43444','1','12','$.numTPVVs','0',''), ('91211','43444','2','20','1h','0',''), ('91212','43445','1','12','$.freeSizeMiB','0',''), ('91213','43445','2','20','10m','0',''), ('91214','43445','3','1','1048576','0',''), ('91215','43446','1','12','$.fwVersion','0',''), ('91216','43446','2','20','1d','0',''), ('91217','43447','1','12','$.loopA0.degraded','1',''), ('91218','43447','2','20','10m','0',''), ('91219','43447','3','6','','0',''), ('91220','43448','1','12','$.loopA1.degraded','1',''), ('91221','43448','2','20','10m','0',''), ('91222','43448','3','6','','0',''), ('91223','43449','1','12','$.loopB0.degraded','1',''), ('91224','43449','2','20','10m','0',''), ('91225','43449','3','6','','0',''), ('91226','43450','1','12','$.loopB1.degraded','1',''), ('91227','43450','2','20','10m','0',''), ('91228','43450','3','6','','0',''), ('91229','43451','1','12','$.manufacturer','0',''), ('91230','43451','2','20','1d','0',''), ('91231','43452','1','12','$.model','0',''), ('91232','43452','2','20','1d','0',''), ('91233','43453','1','12','$.RPM','1',''), ('91234','43453','2','20','1d','0',''), ('91235','43454','1','12','$.serialNumber','0',''), ('91236','43454','2','20','1d','0',''), ('91237','43455','1','12','$.state','2','99'), ('91238','43455','2','20','1h','0',''), ('91239','43456','1','12','$.totalSizeMiB','0',''), ('91240','43456','2','20','1h','0',''), ('91241','43456','3','1','1048576','0',''), ('91242','43457','1','12','$.descriptors.comment','1',''), ('91243','43457','2','20','1d','0',''), ('91244','43458','1','12','$.descriptors.contact','1',''), ('91245','43458','2','20','1d','0',''), ('91246','43459','1','12','$.descriptors.IPAddr','1',''), ('91247','43459','2','20','1d','0',''), ('91248','43460','1','12','$.descriptors.location','1',''), ('91249','43460','2','20','1d','0',''), ('91250','43461','1','12','$.descriptors.model','1',''), ('91251','43461','2','20','1d','0',''), ('91252','43462','1','12','$.descriptors.os','1',''), ('91253','43462','2','20','1d','0',''), ('91254','43463','1','12','$.failoverState','1',''), ('91255','43463','2','20','1h','0',''), ('91256','43464','1','12','$.hardwareType','0',''), ('91257','43464','2','20','1h','0',''), ('91258','43465','1','12','$.linkState','0',''), ('91259','43465','2','20','1h','0',''), ('91260','43466','1','12','$.type','0',''), ('91261','43466','2','20','1h','0',''), ('91262','43467','1','12','$.finishTime','0',''), ('91263','43467','2','20','6h','0',''), ('91264','43467','3','15','^-$','1',''), ('91265','43467','4','21','raw_date = value.split('' ''); return Date.parse(raw_date[0] + ''T'' + raw_date[1] + raw_date[2] + '':00'')/1000;','0',''), ('91266','43468','1','12','$.startTime','0',''), ('91267','43468','2','20','6h','0',''), ('91268','43468','3','21','raw_date = value.split('' ''); return Date.parse(raw_date[0] + ''T'' + raw_date[1] + raw_date[2] + '':00'')/1000;','0',''), ('91269','43469','1','12','$.status','0',''), ('91270','43469','2','20','10m','0',''), ('91271','43470','1','12','$.type','0',''), ('91272','43470','2','20','6h','0',''), ('91273','43471','1','12','$.capacityEfficiency.compaction','1',''), ('91274','43471','2','20','1h','0',''), ('91275','43472','1','12','$.sizeMiB','1',''), ('91276','43472','2','20','12h','0',''), ('91277','43472','3','1','1048576','0',''), ('91278','43473','1','12','$.state','0',''), ('91279','43474','1','12','$.failedStates','0',''), ('91280','43474','2','21','return JSON.stringify(JSON.parse(value));','0',''), ('91281','43475','1','12','$.degradedStates','0',''), ('91282','43476','1','12','$.deduplicationState','0',''), ('91283','43476','2','20','6h','0',''), ('91284','43477','1','12','$.compressionState','0',''), ('91285','43477','2','20','6h','0',''), ('91286','43478','1','12','$.userSpace.usedMiB','0',''), ('91287','43478','2','20','10m','0',''), ('91288','43478','3','1','1048576','0',''), ('91289','43479','1','12','$.userSpace.reservedMiB','0',''), ('91290','43479','2','20','12h','0',''), ('91291','43479','3','1','1048576','0',''), ('91292','43480','1','12','$.userSpace.rawReservedMiB','0',''), ('91293','43480','2','20','12h','0',''), ('91294','43480','3','1','1048576','0',''), ('91295','43481','1','12','$.userSpace.freeMiB','0',''), ('91296','43481','2','20','10m','0',''), ('91297','43481','3','1','1048576','0',''), ('91298','43482','1','12','$.totalUsedMiB','1',''), ('91299','43482','2','1','1048576','0',''), ('91300','43483','1','12','$.totalReservedMiB','1',''), ('91301','43483','2','20','12h','0',''), ('91302','43483','3','1','1048576','0',''), ('91303','43484','1','12','$.capacityEfficiency.compression','1',''), ('91304','43484','2','20','1h','0',''), ('91305','43485','1','12','$.snapshotSpace.usedMiB','0',''), ('91306','43485','2','20','10m','0',''), ('91307','43485','3','1','1048576','0',''), ('91308','43486','1','12','$.snapshotSpace.reservedMiB','0',''), ('91309','43486','2','20','12h','0',''), ('91310','43486','3','1','1048576','0',''), ('91311','43487','1','12','$.snapshotSpace.rawReservedMiB','0',''), ('91312','43487','2','20','12h','0',''), ('91313','43487','3','1','1048576','0',''), ('91314','43488','1','12','$.snapshotSpace.freeMiB','0',''), ('91315','43488','2','20','10m','0',''), ('91316','43488','3','1','1048576','0',''), ('91317','43489','1','12','$.adminSpace.usedMiB','0',''), ('91318','43489','2','20','10m','0',''), ('91319','43489','3','1','1048576','0',''), ('91320','43490','1','12','$.adminSpace.reservedMiB','0',''), ('91321','43490','2','20','12h','0',''), ('91322','43490','3','1','1048576','0',''), ('91323','43491','1','12','$.adminSpace.rawReservedMiB','0',''), ('91324','43491','2','20','12h','0',''), ('91325','43491','3','1','1048576','0',''), ('91326','43492','1','12','$.adminSpace.freeMiB','0',''), ('91327','43492','2','20','10m','0',''), ('91328','43492','3','1','1048576','0',''), ('91329','43493','1','12','$.capacityEfficiency.dataReduction','1',''), ('91330','43493','2','20','1h','0',''), ('91331','43494','1','12','$.capacityEfficiency.overProvisioning','1',''), ('91332','43494','2','20','1h','0',''), ('91333','43495','1','12','$.capacityEfficiency.deduplication','1',''), ('91334','43495','2','20','1h','0',''), ('91335','43496','1','12','$.rcopyStatus','0',''), ('91339','43500','1','12','$.error','2',''), ('91340','43500','2','20','3h','0',''), ('91341','43501','1','12','$.[?(@.Label == "EBSWriteOps")].Values.first().first()','1',''), ('91342','43501','2','21','return value / 300;','0',''), ('91343','43502','1','12','$.[?(@.Label == "StatusCheckFailed_System")].Values.first().first()','1',''), ('91344','43503','1','12','$.[?(@.Label == "StatusCheckFailed_Instance")].Values.first().first()','1',''), ('91345','43504','1','12','$.[?(@.Label == "StatusCheckFailed")].Values.first().first()','1',''), ('91346','43505','1','12','$.[?(@.Label == "NetworkPacketsOut")].Values.first().first()','1',''), ('91347','43505','2','21','return value / 300;','0',''), ('91348','43506','1','12','$.[?(@.Label == "NetworkPacketsIn")].Values.first().first()','1',''), ('91349','43506','2','21','return value / 300;','0',''), ('91350','43507','1','12','$.[?(@.Label == "NetworkOut")].Values.first().first()','0',''), ('91351','43507','2','21','return value / 300;','0',''), ('91352','43508','1','12','$.[?(@.Label == "NetworkIn")].Values.first().first()','1',''), ('91353','43508','2','21','return value / 300;','0',''), ('91354','43509','1','12','$.error','2',''), ('91355','43509','2','20','3h','0',''), ('91356','43510','1','12','$.[?(@.Label == "MetadataNoToken")].Values.first().first()','1',''), ('91357','43511','1','12','$.[?(@.Label == "EBSWriteBytes")].Values.first().first()','1',''), ('91358','43511','2','21','return value / 300;','0',''), ('91359','43512','1','12','$.[?(@.Label == "CPUCreditBalance")].Values.first().first()','1',''), ('91360','43513','1','12','$.[?(@.Label == "EBSReadOps")].Values.first().first()','1',''), ('91361','43513','2','21','return value / 300;','0',''), ('91362','43514','1','12','$.[?(@.Label == "EBSReadBytes")].Values.first().first()','1',''), ('91363','43514','2','21','return value / 300;','0',''), ('91364','43515','1','12','$.[?(@.Label == "EBSIOBalance%")].Values.first().first()','1',''), ('91365','43516','1','12','$.[?(@.Label == "EBSByteBalance%")].Values.first().first()','1',''), ('91366','43517','1','12','$.[?(@.Label == "DiskWriteOps")].Values.first().first()','1',''), ('91367','43517','2','21','return value / 300;','0',''), ('91368','43518','1','12','$.[?(@.Label == "DiskWriteBytes")].Values.first().first()','1',''), ('91369','43518','2','21','return value / 300;','0',''), ('91370','43519','1','12','$.[?(@.Label == "DiskReadOps")].Values.first().first()','1',''), ('91371','43519','2','21','return value / 300;','0',''), ('91372','43520','1','12','$.[?(@.Label == "DiskReadBytes")].Values.first().first()','1',''), ('91373','43520','2','21','return value / 300;','0',''), ('91374','43521','1','12','$.[?(@.Label == "CPUUtilization")].Values.first().first()','1',''), ('91375','43522','1','12','$.[?(@.Label == "CPUSurplusCreditsCharged")].Values.first().first()','1',''), ('91376','43523','1','12','$.[?(@.Label == "CPUSurplusCreditBalance")].Values.first().first()','1',''), ('91377','43524','1','12','$.[?(@.Label == "CPUCreditUsage")].Values.first().first()','1',''), ('91378','43525','1','12','$.error','2',''), ('91379','43525','2','20','3h','0',''), ('91380','43526','1','21','var result = []; var alarms = JSON.parse(value); alarms.forEach(function(alarm) { result.push({ ''{#ALARM_DESCRIPTION}'': alarm.AlarmDescription !== null ? alarm.AlarmDescription : ''None'' , ''{#ALARM_NAME}'': alarm.AlarmName, ''{#ALARM_PERIOD}'': alarm.Period, ''{#METRIC_NAME}'': alarm.MetricName, ''{#ALARM_SERVICE_NAMESPACE}'': alarm.Namespace !== null ? alarm.Namespace : ''None'' }); }); return JSON.stringify(result);','0',''), ('91381','43526','2','20','3h','0',''), ('91382','43527','1','21','var result = []; var volumes = JSON.parse(value); volumes.forEach(function(volume) { result.push({ ''{#VOLUME_ID}'': volume.volumeId, ''{#VOLUME_TYPE}'': volume.volumeType, }); }); return JSON.stringify(result);','0',''), ('91383','43527','2','20','3h','0',''), ('91385','43529','1','12','$.StateValue','2','3'), ('91386','43529','2','21','var state = [''OK'', ''INSUFFICIENT_DATA'', ''ALARM'']; return state.indexOf(value.trim()) === -1 ? 255 : state.indexOf(value.trim());','0',''), ('91387','43530','1','12','$.StateReason','1',''), ('91388','43530','2','20','3h','0',''), ('91389','43531','1','12','$.[?(@.Label == "VolumeReadBytes")].Values.first().first()','1',''), ('91390','43532','1','12','$.[?(@.Label == "VolumeWriteOps")].Values.first().first()','1',''), ('91391','43533','1','12','$.[?(@.Label == "VolumeWriteBytes")].Values.first().first()','1',''), ('91392','43534','1','12','$.[?(@.Label == "VolumeTotalWriteTime")].Values.first().first()','1',''), ('91393','43535','1','12','$.[?(@.Label == "VolumeTotalReadTime")].Values.first().first()','1',''), ('91394','43536','1','12','$.[?(@.Label == "VolumeThroughputPercentage")].Values.first().first()','1',''), ('91395','43537','1','12','$.[?(@.Label == "VolumeReadOps")].Values.first().first()','1',''), ('91396','43538','1','12','$.attachmentSet..[?(@.instanceId == "{$AWS.EC2.INSTANCE.ID}")].status.first()','1',''), ('91397','43538','2','21','var state = [''attaching'', ''attached'', ''detaching'']; return state.indexOf(value.trim()) === -1 ? 255 : state.indexOf(value.trim());','0',''), ('91398','43538','3','20','3h','0',''), ('91399','43539','1','12','$.attachmentSet..[?(@.instanceId == "{$AWS.EC2.INSTANCE.ID}")].attachTime.first()','1',''), ('91400','43539','2','20','3h','0',''), ('91401','43540','1','12','$.[?(@.Label == "VolumeIdleTime")].Values.first().first()','1',''), ('91402','43541','1','12','$.[?(@.Label == "VolumeConsumedReadWriteOps")].Values.first().first()','1',''), ('91403','43542','1','12','$.[?(@.Label == "BurstBalance")].Values.first().first()','1',''), ('91404','43543','1','12','$.status','1',''), ('91405','43543','2','21','var state = [''creating'', ''available'', ''in-use'', ''deleting'', ''deleted'', ''error'']; return state.indexOf(value.trim()) === -1 ? 255 : state.indexOf(value.trim());','0',''), ('91406','43543','3','20','3h','0',''), ('91407','43544','1','12','$.attachmentSet..[?(@.instanceId == "{$AWS.EC2.INSTANCE.ID}")].device.first()','1',''), ('91408','43544','2','20','3h','0',''), ('91409','43545','1','12','$.createTime','1',''), ('91410','43545','2','20','3h','0',''), ('91411','43546','1','12','$.[?(@.Label == "VolumeQueueLength")].Values.first().first()','1',''), ('91414','43557','1','28','1.3.6.1.4.1.12325.1.200.1.2.4.0 0','0',''), ('91415','43558','1','28','1.3.6.1.4.1.12325.1.200.1.2.5.0 0','0',''), ('91416','43559','1','28','1.3.6.1.4.1.12325.1.200.1.2.6.0 0','0',''), ('91417','43560','1','28','1.3.6.1.4.1.12325.1.200.1.2.1.0 0','0',''), ('91418','43561','1','28','1.3.6.1.4.1.12325.1.200.1.2.3.0 0','0',''), ('91419','43562','1','28','1.3.6.1.4.1.12325.1.200.1.2.2.0 0','0',''), ('91421','43566','1','12','$[?(@.pfInterfacesIfDescr == ''{#IFDESCR}'')].pfInterfacesIf4BytesInBlock.first()','0',''), ('91422','43566','2','10','8','0',''), ('91423','43567','1','12','$[?(@.pfInterfacesIfDescr == ''{#IFDESCR}'')].pfInterfacesIf6PktsOutBlock.first()','0',''), ('91424','43568','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('91425','43569','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('91426','43569','2','1','1000000','0',''), ('91427','43571','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('91428','43571','2','10','8','0',''), ('91429','43572','1','12','$[?(@.pfInterfacesIfDescr == ''{#IFDESCR}'')].pfInterfacesIf6PktsOutPass.first()','0',''), ('91430','43573','1','12','$[?(@.pfInterfacesIfDescr == ''{#IFDESCR}'')].pfInterfacesIf6BytesOutPass.first()','0',''), ('91431','43573','2','10','8','0',''), ('91432','43574','1','12','$[?(@.pfInterfacesIfDescr == ''{#IFDESCR}'')].pfInterfacesIf4PktsOutPass.first()','0',''), ('91433','43575','1','12','$[?(@.pfInterfacesIfDescr == ''{#IFDESCR}'')].pfInterfacesIf4BytesOutPass.first()','0',''), ('91434','43575','2','10','8','0',''), ('91435','43576','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('91436','43577','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('91437','43578','1','12','$[?(@.pfInterfacesIfDescr == ''{#IFDESCR}'')].pfInterfacesIf6BytesOutBlock.first()','0',''), ('91438','43578','2','10','8','0',''), ('91439','43579','1','12','$[?(@.pfInterfacesIfDescr == ''{#IFDESCR}'')].pfInterfacesIf4PktsInBlock.first()','0',''), ('91440','43580','1','12','$[?(@.pfInterfacesIfDescr == ''{#IFDESCR}'')].pfInterfacesIf4PktsOutBlock.first()','0',''), ('91441','43581','1','12','$[?(@.pfInterfacesIfDescr == ''{#IFDESCR}'')].pfInterfacesIf4BytesOutBlock.first()','0',''), ('91442','43581','2','10','8','0',''), ('91443','43582','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('91444','43582','2','10','8','0',''), ('91445','43583','1','12','$[?(@.pfInterfacesIfDescr == ''{#IFDESCR}'')].pfInterfacesIf6PktsInPass.first()','0',''), ('91446','43584','1','12','$[?(@.pfInterfacesIfDescr == ''{#IFDESCR}'')].pfInterfacesIf6BytesInPass.first()','0',''), ('91447','43584','2','10','8','0',''), ('91448','43585','1','12','$[?(@.pfInterfacesIfDescr == ''{#IFDESCR}'')].pfInterfacesIf4PktsInPass.first()','0',''), ('91449','43586','1','12','$[?(@.pfInterfacesIfDescr == ''{#IFDESCR}'')].pfInterfacesIf4BytesInPass.first()','0',''), ('91450','43586','2','10','8','0',''), ('91451','43587','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('91452','43588','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('91453','43589','1','12','$[?(@.pfInterfacesIfDescr == ''{#IFDESCR}'')].pfInterfacesIf6PktsInBlock.first()','0',''), ('91454','43590','1','12','$[?(@.pfInterfacesIfDescr == ''{#IFDESCR}'')].pfInterfacesIf6BytesInBlock.first()','0',''), ('91455','43590','2','10','8','0',''), ('91456','43591','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('91461','43596','1','12','$.error','2',''), ('91462','43596','2','20','3h','0',''), ('91463','43597','1','12','$.[?(@.Label == "ReplicaLag")].Values.first().first()','1',''), ('91464','43598','1','12','$.[?(@.Label == "ReadLatency")].Values.first().first()','1',''), ('91465','43599','1','12','$.[?(@.Label == "ReadLatencyLocalStorage")].Values.first().first()','1',''), ('91466','43600','1','12','$..StatusInfos..Normal.first()','1',''), ('91467','43600','2','6','','0',''), ('91468','43600','3','20','3h','0',''), ('91469','43601','1','12','$..StatusInfos..Status.first()','1',''), ('91470','43601','2','20','3h','0',''), ('91471','43602','1','12','$.[?(@.Label == "ReadThroughput")].Values.first().first()','1',''), ('91472','43603','1','12','$.[?(@.Label == "ReadThroughputLocalStorage")].Values.first().first()','1',''), ('91473','43604','1','12','$..DBInstanceStatus.first()','0',''), ('91474','43604','2','20','3h','0',''), ('91475','43605','1','12','$.[?(@.Label == "ReadIOPS")].Values.first().first()','1',''), ('91476','43606','1','12','$[*].AllocatedStorage.first()','0',''), ('91477','43606','2','20','3h','0',''), ('91478','43607','1','21','var data = JSON.parse(value); return (typeof data.MaxAllocatedStorage === ''undefined'') ? -1 : data.MaxAllocatedStorage;','0',''), ('91479','43607','2','20','3h','0',''), ('91480','43608','1','12','$.[?(@.Label == "StorageNetworkReceiveThroughput")].Values.first().first()','1',''), ('91481','43609','1','12','$.[?(@.Label == "StorageNetworkTransmitThroughput")].Values.first().first()','1',''), ('91482','43610','1','12','$[*].StorageType.first()','0',''), ('91483','43610','2','20','3h','0',''), ('91484','43611','1','12','$.[?(@.Label == "SwapUsage")].Values.first().first()','1',''), ('91485','43612','1','12','$.[?(@.Label == "WriteIOPS")].Values.first().first()','1',''), ('91486','43613','1','12','$.[?(@.Label == "WriteIOPSLocalStorage")].Values.first().first()','1',''), ('91487','43614','1','12','$.[?(@.Label == "WriteLatency")].Values.first().first()','1',''), ('91488','43615','1','12','$.[?(@.Label == "WriteLatencyLocalStorage")].Values.first().first()','1',''), ('91489','43616','1','12','$.[?(@.Label == "WriteThroughput")].Values.first().first()','1',''), ('91490','43617','1','12','$.[?(@.Label == "ReadIOPSLocalStorage")].Values.first().first()','1',''), ('91491','43618','1','12','$.[?(@.Label == "NetworkReceiveThroughput")].Values.first().first()','1',''), ('91492','43619','1','12','$.[?(@.Label == "NetworkTransmitThroughput")].Values.first().first()','1',''), ('91493','43620','1','12','$.[?(@.Label == "EBSIOBalance%")].Values.first().first()','1',''), ('91494','43621','1','12','$.[?(@.Label == "BurstBalance")].Values.first().first()','1',''), ('91495','43622','1','12','$[*].DBInstanceClass.first()','0',''), ('91496','43622','2','20','3h','0',''), ('91497','43623','1','12','$.[?(@.Label == "CPUCreditBalance")].Values.first().first()','1',''), ('91498','43624','1','12','$.[?(@.Label == "CPUCreditUsage")].Values.first().first()','1',''), ('91499','43625','1','12','$.[?(@.Label == "CPUUtilization")].Values.first().first()','1',''), ('91500','43626','1','12','$..InstanceCreateTime.first()','0',''), ('91501','43627','1','12','$.[?(@.Label == "DatabaseConnections")].Values.first().first()','1',''), ('91502','43628','1','12','$.[?(@.Label == "DiskQueueDepth")].Values.first().first()','1',''), ('91503','43629','1','12','$.[?(@.Label == "EBSByteBalance%")].Values.first().first()','1',''), ('91504','43630','1','12','$..Engine.first()','0',''), ('91505','43630','2','20','3h','0',''), ('91506','43631','1','12','$.[?(@.Label == "NetworkThroughput")].Values.first().first()','1',''), ('91507','43632','1','12','$[*].EngineVersion.first()','0',''), ('91508','43632','2','20','3h','0',''), ('91509','43633','1','12','$.error','2',''), ('91510','43633','2','20','3h','0',''), ('91511','43634','1','12','$.[?(@.Label == "FailedSQLServerAgentJobsCount")].Values.first().first()','1',''), ('91512','43635','1','12','$.[?(@.Label == "FreeableMemory")].Values.first().first()','1',''), ('91513','43636','1','12','$.[?(@.Label == "FreeLocalStorage")].Values.first().first()','1',''), ('91514','43637','1','12','$.[?(@.Label == "FreeStorageSpace")].Values.first().first()','1',''), ('91515','43638','1','12','$.error','2',''), ('91516','43638','2','20','3h','0',''), ('91517','43639','1','12','$.error','2',''), ('91518','43639','2','20','3h','0',''), ('91519','43640','1','12','$.[?(@.Label == "BinLogDiskUsage")].Values.first().first()','1',''), ('91520','43641','1','12','$.[?(@.Label == "WriteThroughputLocalStorage")].Values.first().first()','1',''), ('91521','43642','1','21','var result = []; var alarms = JSON.parse(value); alarms.forEach(function (alarm) { result.push({ ''{#ALARM_DESCRIPTION}'': alarm.AlarmDescription !== null ? alarm.AlarmDescription : ''None'', ''{#ALARM_NAME}'': alarm.AlarmName, ''{#ALARM_PERIOD}'': alarm.Period, ''{#METRIC_NAME}'': alarm.MetricName, ''{#ALARM_SERVICE_NAMESPACE}'': alarm.Namespace !== null ? alarm.Namespace : ''None'' }); }); return JSON.stringify(result);','0',''), ('91522','43642','2','20','3h','0',''), ('91523','43643','1','21','return JSON.stringify(value.includes(''aurora'') ? [{ ''{#SINGLETON}'': '''' }] : []);','0',''), ('91524','43643','2','20','6h','0',''), ('91525','43644','1','21','var lookup = {}, result = []; JSON.parse(value).forEach(function (event) { var filter = event.EventCategories + event.SourceIdentifier + event.SourceType; if (!(lookup[filter])) { lookup[filter] = 1; result.push({ ''{#EVENT_CATEGORY}'': event.EventCategories, ''{#EVENT_SOURCE_ID}'': event.SourceIdentifier, ''{#EVENT_SOURCE_TYPE}'': event.SourceType }); } }); return JSON.stringify(result);','0',''), ('91526','43644','2','20','3h','0',''), ('91527','43645','1','21','return JSON.stringify((value === ''aurora-mysql'' || value === ''aurora'') ? [{ ''{#SINGLETON}'': '''' }] : []);','0',''), ('91528','43645','2','20','6h','0',''), ('91529','43646','1','12','$.[?(@.AlarmName == "{#ALARM_NAME}")].StateValue.first()','2','3'), ('91530','43646','2','21','var state = [''OK'', ''INSUFFICIENT_DATA'', ''ALARM'']; return state.indexOf(value.trim()) === -1 ? 255 : state.indexOf(value.trim());','0',''), ('91531','43647','1','12','$.[?(@.AlarmName == "{#ALARM_NAME}")].StateReason.first()','1',''), ('91532','43647','2','20','3h','0',''), ('91533','43648','1','12','$.[?(@.Label == "AuroraReplicaLagMaximum")].Values.first().first()','1',''), ('91534','43649','1','12','$.[?(@.Label == "AuroraReplicaLagMinimum")].Values.first().first()','1',''), ('91535','43650','1','12','$.[?(@.Label == "AuroraReplicaLag")].Values.first().first()','1',''), ('91536','43651','1','12','$.[?(@.Label == "BufferCacheHitRatio")].Values.first().first()','1',''), ('91537','43652','1','12','$.[?(@.Label == "CommitLatency")].Values.first().first()','1',''), ('91538','43653','1','12','$.[?(@.Label == "CommitThroughput")].Values.first().first()','1',''), ('91539','43654','1','12','$.[?(@.Label == "Deadlocks")].Values.first().first()','1',''), ('91540','43655','1','12','$.[?(@.Label == "EngineUptime")].Values.first().first()','1',''), ('91541','43656','1','12','$.[?(@.Label == "RollbackSegmentHistoryListLength")].Values.first().first()','1',''), ('91542','43657','1','12','$.[?(@.Label == "RowLockTime")].Values.first().first()','1',''), ('91543','43658','1','12','$.[?(@.Label == "SelectLatency")].Values.first().first()','1',''), ('91544','43659','1','12','$.[?(@.Label == "SelectThroughput")].Values.first().first()','1',''), ('91545','43660','1','12','$.[?(@.Label == "StorageNetworkThroughput")].Values.first().first()','1',''), ('91546','43661','1','12','$.[?(@.SourceIdentifier == "{#EVENT_SOURCE_ID}" && @.SourceType == "{#EVENT_SOURCE_TYPE}" && @.EventCategories == "{#EVENT_CATEGORY}")].Date','1',''), ('91547','43661','2','12','$[-1]','0',''), ('91548','43661','3','20','3h','0',''), ('91549','43662','1','12','$.[?(@.SourceIdentifier == "{#EVENT_SOURCE_ID}" && @.SourceType == "{#EVENT_SOURCE_TYPE}" && @.EventCategories == "{#EVENT_CATEGORY}")].Message','1',''), ('91550','43662','2','12','$[-1]','0',''), ('91551','43662','3','20','3h','0',''), ('91552','43663','1','12','$.[?(@.Label == "AbortedClients")].Values.first().first()','1',''), ('91553','43664','1','12','$.[?(@.Label == "DMLThroughput")].Values.first().first()','1',''), ('91554','43665','1','12','$.[?(@.Label == "UpdateLatency")].Values.first().first()','1',''), ('91555','43666','1','12','$.[?(@.Label == "SumBinaryLogSize")].Values.first().first()','1',''), ('91556','43667','1','12','$.[?(@.Label == "ResultSetCacheHitRatio")].Values.first().first()','1',''), ('91557','43668','1','12','$.[?(@.Label == "Queries")].Values.first().first()','1',''), ('91558','43669','1','12','$.[?(@.Label == "NumBinaryLogFiles")].Values.first().first()','1',''), ('91559','43670','1','12','$.[?(@.Label == "LoginFailures")].Values.first().first()','1',''), ('91560','43671','1','12','$.[?(@.Label == "InsertThroughput")].Values.first().first()','1',''), ('91561','43672','1','12','$.[?(@.Label == "InsertLatency")].Values.first().first()','1',''), ('91562','43673','1','12','$.[?(@.Label == "DMLLatency")].Values.first().first()','1',''), ('91563','43674','1','12','$.[?(@.Label == "AuroraBinlogReplicaLag")].Values.first().first()','1',''), ('91564','43675','1','12','$.[?(@.Label == "DeleteThroughput")].Values.first().first()','1',''), ('91565','43676','1','12','$.[?(@.Label == "DeleteLatency")].Values.first().first()','1',''), ('91566','43677','1','12','$.[?(@.Label == "DDLThroughput")].Values.first().first()','1',''), ('91567','43678','1','12','$.[?(@.Label == "DDLLatency")].Values.first().first()','1',''), ('91568','43679','1','12','$.[?(@.Label == "BlockedTransactions")].Values.first().first()','1',''), ('91569','43680','1','12','$.[?(@.Label == "BacktrackWindowAlert")].Values.first().first()','1',''), ('91570','43681','1','12','$.[?(@.Label == "BacktrackWindowActual")].Values.first().first()','1',''), ('91571','43682','1','12','$.[?(@.Label == "ActiveTransactions")].Values.first().first()','1',''), ('91572','43683','1','12','$.[?(@.Label == "UpdateThroughput")].Values.first().first()','1',''), ('91585','43696','1','12','$.metrics.[?(@.Label == "AllStorageTypes NumberOfObjects")].Values.first().first()','1',''), ('91586','43697','1','12','$.error','2',''), ('91587','43697','2','20','3h','0',''), ('91597','43707','1','12','$.metrics[?(@.Label == "StandardStorage BucketSizeBytes")].Values.first().first()','1',''), ('91599','43709','1','12','$.error','2',''), ('91600','43709','2','20','3h','0',''), ('91602','43711','1','21','var result = []; var alarms = JSON.parse(value); alarms.forEach(function(alarm) { result.push({ ''{#ALARM_DESCRIPTION}'': alarm.AlarmDescription !== null ? alarm.AlarmDescription : ''None'' , ''{#ALARM_NAME}'': alarm.AlarmName, ''{#ALARM_PERIOD}'': alarm.Period, ''{#METRIC_NAME}'': alarm.MetricName }); }); return JSON.stringify(result);','0',''), ('91603','43711','2','20','3h','0',''), ('91604','43712','1','12','$.[?(@.AlarmName == "{#ALARM_NAME}")].StateValue.first()','2','3'), ('91605','43712','2','21','var state = [''OK'', ''INSUFFICIENT_DATA'', ''ALARM'']; return state.indexOf(value.trim()) === -1 ? 255 : state.indexOf(value.trim());','0',''), ('91606','43713','1','12','$.[?(@.AlarmName == "{#ALARM_NAME}")].StateReason.first()','1',''), ('91607','43713','2','20','3h','0',''), ('91608','43716','1','12','$.errors','0',''), ('91609','43716','2','20','1h','0',''), ('91610','43717','1','12','$.health.summary','1',''), ('91611','43717','2','20','1h','0',''), ('91612','43718','1','12','$.metrics.OSDiskReadBytessec.average','1',''), ('91613','43719','1','12','$.metrics.OutboundFlowsMaximumCreationRate.average','1',''), ('91614','43720','1','12','$.metrics.AvailableMemoryBytes.average','1',''), ('91615','43721','1','12','$.metrics.NetworkInTotal.total','1',''), ('91617','43722','1','12','$.metrics.NetworkOutTotal.total','1',''), ('91619','43723','1','12','$.metrics.OSDiskBandwidthConsumedPercentage.average','1',''), ('91620','43724','1','12','$.metrics.OSDiskIOPSConsumedPercentage.average','1',''), ('91621','43725','1','12','$.metrics.OSDiskMaxBurstBandwidth.average','1',''), ('91622','43726','1','12','$.metrics.OSDiskMaxBurstIOPS.average','1',''), ('91623','43727','1','12','$.metrics.OSDiskQueueDepth.average','1',''), ('91624','43728','1','12','$.metrics.OSDiskReadOperationsSec.average','1',''), ('91625','43729','1','12','$.metrics.InboundFlowsMaximumCreationRate.average','1',''), ('91626','43730','1','12','$.metrics.OSDiskTargetBandwidth.average','1',''), ('91627','43731','1','12','$.metrics.OSDiskTargetIOPS.average','1',''), ('91628','43732','1','12','$.metrics.OSDiskUsedBurstBPSCreditsPercentage.average','1',''), ('91629','43733','1','12','$.metrics.OSDiskUsedBurstIOCreditsPercentage.average','1',''), ('91630','43734','1','12','$.metrics.OSDiskWriteBytessec.average','1',''), ('91631','43735','1','12','$.metrics.OSDiskWriteOperationsSec.average','1',''), ('91632','43736','1','12','$.metrics.PremiumDataDiskCacheReadHit.average','1',''), ('91633','43737','1','12','$.metrics.PremiumDataDiskCacheReadMiss.average','1',''), ('91634','43738','1','12','$.metrics.PremiumOSDiskCacheReadHit.average','1',''), ('91635','43739','1','12','$.metrics.PremiumOSDiskCacheReadMiss.average','1',''), ('91636','43740','1','12','$.metrics.VMUncachedBandwidthConsumedPercentage.average','1',''), ('91637','43741','1','12','$.metrics.OutboundFlows.average','1',''), ('91638','43742','1','12','$.metrics.InboundFlows.average','1',''), ('91639','43743','1','12','$.health.availabilityState','2','3'), ('91640','43743','2','25','Available 0','0',''), ('91641','43743','3','25','Degraded 1','0',''), ('91642','43743','4','25','Unavailable 2','0',''), ('91643','43743','5','25','Unknown 3','0',''), ('91644','43743','6','13','0 3','2','3'), ('91645','43743','7','20','1h','0',''), ('91646','43744','1','12','$.metrics.DataDiskReadBytessec.average','1',''), ('91647','43745','1','12','$.metrics.VMCachedBandwidthConsumedPercentage.average','1',''), ('91648','43746','1','12','$.metrics.VMCachedIOPSConsumedPercentage.average','1',''), ('91649','43747','1','12','$.metrics.CPUCreditsConsumed.average','1',''), ('91650','43748','1','12','$.metrics.CPUCreditsRemaining.average','1',''), ('91651','43749','1','12','$.metrics.PercentageCPU.average','1',''), ('91652','43750','1','12','$.metrics.DataDiskBandwidthConsumedPercentage.average','1',''), ('91653','43751','1','12','$.metrics.DataDiskIOPSConsumedPercentage.average','1',''), ('91654','43752','1','12','$.metrics.DataDiskMaxBurstBandwidth.average','1',''), ('91655','43753','1','12','$.metrics.DataDiskMaxBurstIOPS.average','1',''), ('91656','43754','1','12','$.metrics.DataDiskQueueDepth.average','1',''), ('91657','43755','1','12','$.metrics.DataDiskReadOperationsSec.average','1',''), ('91658','43756','1','12','$.metrics.DiskWriteOperationsSec.average','1',''), ('91659','43757','1','12','$.metrics.DataDiskTargetBandwidth.average','1',''), ('91660','43758','1','12','$.metrics.DataDiskTargetIOPS.average','1',''), ('91661','43759','1','12','$.metrics.DataDiskUsedBurstBPSCreditsPercentage.average','1',''), ('91662','43760','1','12','$.metrics.DataDiskUsedBurstIOCreditsPercentage.average','1',''), ('91663','43761','1','12','$.metrics.DataDiskWriteBytessec.average','1',''), ('91664','43762','1','12','$.metrics.DataDiskWriteOperationsSec.average','1',''), ('91665','43763','1','12','$.errors','1',''), ('91666','43763','2','20','1h','0',''), ('91667','43764','1','12','$.metrics.DiskReadBytes.total','1',''), ('91669','43765','1','12','$.metrics.DiskReadOperationsSec.average','1',''), ('91670','43766','1','12','$.metrics.DiskWriteBytes.total','1',''), ('91672','43767','1','12','$.metrics.VMUncachedIOPSConsumedPercentage.average','1',''), ('91673','43768','1','12','$.resources.value','0',''), ('91674','43768','2','20','6h','0',''), ('91678','43770','1','26','-1','2','0'), ('91680','43771','1','26','-1','2','0'), ('91682','43772','1','26','-1','2','0'), ('91684','43773','1','26','-1','2','0'), ('91686','43774','1','26','-1','2','0'), ('91688','43775','1','26','-1','2','0'), ('91690','43776','1','26','-1','2','0'), ('91692','43777','1','26','-1','2','0'), ('91694','43778','1','26','-1','2','0'), ('91696','43779','1','26','-1','2','0'), ('91698','43780','1','26','-1','2','0'), ('91700','43781','1','26','-1','2','0'), ('91702','43782','1','26','-1','2','0'), ('91704','43783','1','26','-1','2','0'), ('91706','43784','1','26','-1','2','0'), ('91708','43785','1','26','-1','2','0'), ('91710','43786','1','26','-1','2','0'), ('91712','43787','1','26','-1','2','0'), ('91714','43788','1','26','-1','2','0'), ('91716','43789','1','26','-1','2','0'), ('91718','43790','1','26','-1','2','0'), ('91720','43791','1','26','-1','2','0'), ('91722','43792','1','26','-1','2','0'), ('91724','43793','1','26','-1','2','0'), ('91726','43794','1','26','-1','2','0'), ('91728','43795','1','26','-1','2','0'), ('91730','43796','1','26','-1','2','0'), ('91732','43797','1','26','-1','2','0'), ('91734','43798','1','26','-1','2','0'), ('91736','43799','1','26','-1','2','0'), ('91738','43800','1','26','-1','2','0'), ('91740','43801','1','26','-1','2','0'), ('91742','43802','1','26','-1','2','0'), ('91744','43803','1','26','-1','2','0'), ('91746','43804','1','26','-1','2','0'), ('91748','43805','1','26','-1','2','0'), ('91750','43806','1','26','-1','2','0'), ('91752','43807','1','26','-1','2','0'), ('91754','43808','1','26','-1','2','0'), ('91756','43809','1','26','-1','2','0'), ('91758','43810','1','26','-1','2','0'), ('91760','43811','1','26','-1','2','0'), ('91762','43812','1','26','-1','2','0'), ('91764','43813','1','26','-1','2','0'), ('91766','43814','1','26','-1','2','0'), ('91768','43815','1','26','-1','2','0'), ('91770','43816','1','26','-1','2','0'), ('91772','43817','1','26','-1','2','0'), ('91774','43818','1','26','-1','2','0'), ('91776','43819','1','26','-1','2','0'), ('91778','43820','1','26','-1','2','0'), ('91780','43821','1','26','-1','2','0'), ('91782','43822','1','26','-1','2','0'), ('91784','43823','1','26','-1','2','0'), ('91786','43824','1','26','-1','2','0'), ('91788','43825','1','26','-1','2','0'), ('91790','43826','1','26','-1','2','0'), ('91792','43827','1','26','-1','2','0'), ('91794','43828','1','26','-1','2','0'), ('91796','43829','1','26','-1','2','0'), ('91798','43830','1','26','-1','2','0'), ('91800','43831','1','26','-1','2','0'), ('91802','43832','1','26','-1','2','0'), ('91804','43833','1','26','-1','2','0'), ('91806','43834','1','26','-1','2','0'), ('91808','43835','1','26','-1','2','0'), ('91810','43836','1','26','-1','2','0'), ('91812','43837','1','26','-1','2','0'), ('91814','43838','1','26','-1','2','0'), ('91816','43839','1','26','-1','2','0'), ('91818','43840','1','26','-1','2','0'), ('91820','43841','1','26','-1','2','0'), ('91822','43842','1','26','-1','2','0'), ('91824','43843','1','26','-1','2','0'), ('91826','43844','1','26','-1','2','0'), ('91828','43845','1','26','-1','2','0'), ('91830','43846','1','26','-1','2','0'), ('91832','43847','1','26','-1','2','0'), ('91834','43848','1','26','-1','2','0'), ('91836','43849','1','26','-1','2','0'), ('91838','43850','1','26','-1','2','0'), ('91840','43851','1','26','-1','2','0'), ('91842','43852','1','26','-1','2','0'), ('91844','43853','1','26','-1','2','0'), ('91846','43854','1','26','-1','2','0'), ('91848','43855','1','26','-1','2','0'), ('91850','43856','1','26','-1','2','0'), ('91852','43857','1','26','-1','2','0'), ('91854','43858','1','26','-1','2','0'), ('91856','43859','1','26','-1','2','0'), ('91858','43860','1','26','-1','2','0'), ('91860','43861','1','26','-1','2','0'), ('91862','43862','1','26','-1','2','0'), ('91864','43863','1','26','-1','2','0'), ('91866','43864','1','26','-1','2','0'), ('91868','43865','1','26','-1','2','0'), ('91870','43866','1','26','-1','2','0'), ('91872','43867','1','26','-1','2','0'), ('91874','43868','1','26','-1','2','0'), ('91876','43869','1','26','-1','2','0'), ('91878','43870','1','26','-1','2','0'), ('91880','43871','1','26','-1','2','0'), ('91882','43872','1','26','-1','2','0'), ('91884','43873','1','26','-1','2','0'), ('91886','43874','1','26','-1','2','0'), ('91888','43875','1','26','-1','2','0'), ('91890','43876','1','26','-1','2','0'), ('91892','43877','1','26','-1','2','0'), ('91894','43878','1','26','-1','2','0'), ('91896','43879','1','26','-1','2','0'), ('91898','43880','1','26','-1','2','0'), ('91900','43881','1','26','-1','2','0'), ('91902','43882','1','26','-1','2','0'), ('91904','43883','1','26','-1','2','0'), ('91906','43884','1','26','-1','2','0'), ('91908','43885','1','26','-1','2','0'), ('91910','43886','1','26','-1','2','0'), ('91912','43887','1','26','-1','2','0'), ('91914','43888','1','26','-1','2','0'), ('91916','43889','1','26','-1','2','0'), ('91918','43890','1','26','-1','2','0'), ('91930','43896','1','26','-1','2','0'), ('91932','43897','1','26','-1','2','0'), ('91934','43898','1','26','-1','2','0'), ('91936','43899','1','26','-1','2','0'), ('91938','43900','1','26','-1','2','0'), ('91939','43902','1','20','10m','0',''), ('91940','43903','1','12','$.enclosures','1',''), ('91941','43904','1','12','$.errors','0',''), ('91942','43904','2','20','1h','0',''), ('91943','43905','1','12','$.members.[0].applianceBays','0',''), ('91944','43905','2','20','6h','0',''), ('91945','43906','1','12','$.members.[0].crossBars','0',''), ('91946','43906','2','20','6h','0',''), ('91947','43907','1','12','$.members','0',''), ('91948','43907','2','20','6h','0',''), ('91949','43908','1','12','$.members.[0].deviceBays','0',''), ('91950','43908','2','20','6h','0',''), ('91951','43909','1','12','$.members','0',''), ('91952','43909','2','20','6h','0',''), ('91953','43910','1','12','$.members','0',''), ('91954','43910','2','20','6h','0',''), ('91955','43911','1','12','$.members','0',''), ('91956','43911','2','20','6h','0',''), ('91957','43912','1','12','$.members.[0].fanBays','0',''), ('91958','43912','2','20','6h','0',''), ('91959','43913','1','12','$.members','0',''), ('91960','43913','2','20','6h','0',''), ('91961','43914','1','12','$.members.[0].managerBays','0',''), ('91962','43914','2','20','6h','0',''), ('91963','43915','1','12','$.members','0',''), ('91964','43915','2','20','6h','0',''), ('91965','43916','1','12','$.members','0',''), ('91966','43916','2','20','6h','0',''), ('91967','43917','1','12','$.members','0',''), ('91968','43917','2','20','6h','0',''), ('91969','43918','1','12','$.members.[0].partitions','0',''), ('91970','43918','2','20','6h','0',''), ('91971','43919','1','12','$.members.[0].powerSupplyBays','0',''), ('91972','43919','2','20','6h','0',''), ('91973','43920','1','12','$.members','0',''), ('91974','43920','2','20','6h','0',''), ('91975','43921','1','12','$.members','0',''), ('91976','43921','2','20','6h','0',''), ('91977','43922','1','12','$.members','0',''), ('91978','43922','2','20','6h','0',''), ('91979','43923','1','12','$.members','0',''), ('91980','43923','2','20','6h','0',''), ('91981','43924','1','12','$.members','0',''), ('91982','43924','2','20','6h','0',''), ('91983','43925','1','12','$.members','0',''), ('91984','43925','2','20','6h','0',''), ('91985','43926','1','12','$.bayPowerState','0',''), ('91986','43926','2','25','EFuse 0','0',''), ('91987','43926','3','25','SoftReset 1','0',''), ('91988','43926','4','25','Reset 2','0',''), ('91989','43926','5','25','Unknown 3','0',''), ('91990','43926','6','13','0 3','2','3'), ('91991','43927','1','12','$.model','0',''), ('91992','43927','2','20','1d','0',''), ('91993','43928','1','12','$.partNumber','0',''), ('91994','43928','2','20','1d','0',''), ('91995','43929','1','12','$.poweredOn','0',''), ('91996','43929','2','6','','0',''), ('91997','43929','3','20','1h','0',''), ('91998','43930','1','12','$.devicePresence','0',''), ('91999','43930','2','25','Absent 0','0',''), ('92000','43930','3','25','PresenceNoOp 1','0',''), ('92001','43930','4','25','PresenceUnknown 2','0',''), ('92002','43930','5','25','Present 3','0',''), ('92003','43930','6','25','Subsumed 4','0',''), ('92004','43930','7','13','0 4','2','2'), ('92005','43930','8','20','1h','0',''), ('92006','43931','1','12','$.serialNumber','0',''), ('92007','43931','2','20','1d','0',''), ('92008','43932','1','12','$.sparePartNumber','0',''), ('92009','43932','2','20','1d','0',''), ('92010','43933','1','12','$.status','0',''), ('92011','43933','2','20','10m','0',''), ('92012','43933','3','25','Critical 0','0',''), ('92013','43933','4','25','Disabled 1','0',''), ('92014','43933','5','25','OK 2','0',''), ('92015','43933','6','25','Unknown 3','0',''), ('92016','43933','7','25','Warning 4','0',''), ('92017','43933','8','13','0 4','2','3'), ('92018','43934','1','12','$.hwVersion','0',''), ('92019','43934','2','20','1d','0',''), ('92020','43935','1','12','$.partNumber','0',''), ('92021','43935','2','20','1d','0',''), ('92022','43936','1','12','$.presence','0',''), ('92023','43936','2','25','Absent 0','0',''), ('92024','43936','3','25','PresenceNoOp 1','0',''), ('92025','43936','4','25','PresenceUnknown 2','0',''), ('92026','43936','5','25','Present 3','0',''), ('92027','43936','6','25','Subsumed 4','0',''), ('92028','43936','7','13','0 4','2','2'), ('92029','43936','8','20','1h','0',''), ('92030','43937','1','12','$.serialNumber','0',''), ('92031','43937','2','20','1d','0',''), ('92032','43938','1','12','$.status','0',''), ('92033','43938','2','20','10m','0',''), ('92034','43938','3','25','Critical 0','0',''), ('92035','43938','4','25','Disabled 1','0',''), ('92036','43938','5','25','OK 2','0',''), ('92037','43938','6','25','Unknown 3','0',''), ('92038','43938','7','25','Warning 4','0',''), ('92039','43938','8','13','0 4','2','3'), ('92040','43939','1','12','$.state','0',''), ('92041','43939','2','25','Adding 0','0',''), ('92042','43939','3','25','AddError 1','0',''), ('92043','43939','4','25','Configured 2','0',''), ('92044','43939','5','25','CredentialError 3','0',''), ('92045','43939','6','25','Refreshing 4','0',''), ('92046','43939','7','25','RefreshError 5','0',''), ('92047','43939','8','25','Removing 6','0',''), ('92048','43939','9','25','RemoveError 7','0',''), ('92049','43939','10','25','Unmanaged 8','0',''), ('92050','43939','11','13','0 8','2','9'), ('92051','43940','1','12','$.status','0',''), ('92052','43940','2','20','10m','0',''), ('92053','43940','3','25','Critical 0','0',''), ('92054','43940','4','25','Disabled 1','0',''), ('92055','43940','5','25','OK 2','0',''), ('92056','43940','6','25','Unknown 3','0',''), ('92057','43940','7','25','Warning 4','0',''), ('92058','43940','8','13','0 4','2','3'), ('92059','43941','1','12','$.model','0',''), ('92060','43941','2','20','1d','0',''), ('92061','43942','1','12','$.powerAllocationWatts','0',''), ('92062','43942','2','20','1h','0',''), ('92063','43943','1','12','$.devicePresence','0',''), ('92064','43943','2','25','Absent 0','0',''), ('92065','43943','3','25','PresenceNoOp 1','0',''), ('92066','43943','4','25','PresenceUnknown 2','0',''), ('92067','43943','5','25','Present 3','0',''), ('92068','43943','6','25','Subsumed 4','0',''), ('92069','43943','7','13','0 4','2','2'), ('92070','43943','8','20','1h','0',''), ('92071','43944','1','12','$.serialNumber','1',''), ('92072','43944','2','20','1d','0',''), ('92073','43945','1','12','$.applianceBayCount','0',''), ('92074','43945','2','20','1h','0',''), ('92075','43946','1','12','$.partNumber','0',''), ('92076','43946','2','20','1d','0',''), ('92077','43947','1','12','$.status','0',''), ('92078','43947','2','20','10m','0',''), ('92079','43947','3','25','Critical 0','0',''), ('92080','43947','4','25','Disabled 1','0',''), ('92081','43947','5','25','OK 2','0',''), ('92082','43947','6','25','Unknown 3','0',''), ('92083','43947','7','25','Warning 4','0',''), ('92084','43947','8','13','0 4','2','3'), ('92085','43948','1','12','$.stateReason','0',''), ('92086','43948','2','25','Missing 0','0',''), ('92087','43948','3','25','None 1','0',''), ('92088','43948','4','25','NotAdded 2','0',''), ('92089','43948','5','25','NotOwner 3','0',''), ('92090','43948','6','25','OperationFailed 4','0',''), ('92091','43948','7','25','Unowned 5','0',''), ('92092','43948','8','25','UnsupportedFirmware 6','0',''), ('92093','43948','9','25','UpdatingFirmware 7','0',''), ('92094','43948','10','13','0 7','2','8'), ('92095','43949','1','12','$.state','0',''), ('92096','43949','2','25','Adding 0','0',''), ('92097','43949','3','25','Configured 1','0',''), ('92098','43949','4','25','Configuring 2','0',''), ('92099','43949','5','25','Interrupted 3','0',''), ('92100','43949','6','25','Monitored 4','0',''), ('92101','43949','7','25','Pending 5','0',''), ('92102','43949','8','25','RemoveFailed 6','0',''), ('92103','43949','9','25','Removing 7','0',''), ('92104','43949','10','25','Unmanaged 8','0',''), ('92105','43949','11','25','Unsupported 9','0',''), ('92106','43949','12','13','0 9','2','10'), ('92107','43950','1','12','$.serialNumber','0',''), ('92108','43950','2','20','1d','0',''), ('92109','43951','1','12','$.powerSupplyBayCount','0',''), ('92110','43951','2','20','1h','0',''), ('92111','43952','1','12','$.powerAvailableWatts','0',''), ('92112','43953','1','12','$.powerAllocatedWatts','0',''), ('92113','43954','1','12','$.powerCapacityWatts','0',''), ('92114','43955','1','12','$.enclosureModel','0',''), ('92115','43955','2','20','1d','0',''), ('92116','43956','1','12','$.deviceBayCount','0',''), ('92117','43956','2','20','1h','0',''), ('92118','43957','1','12','$.minimumPowerSuppliesForRedundantPowerFeed','0',''), ('92119','43957','2','20','1d','0',''), ('92120','43958','1','12','$.minimumPowerSupplies','0',''), ('92121','43958','2','20','1d','0',''), ('92122','43959','1','12','$.interconnectBayWatts','0',''), ('92123','43960','1','12','$.interconnectBayCount','0',''), ('92124','43960','2','20','1h','0',''), ('92125','43961','1','12','$.fwBaselineName','0',''), ('92126','43961','2','20','1d','0',''), ('92127','43962','1','12','$.fanBayCount','0',''), ('92128','43962','2','20','1h','0',''), ('92129','43963','1','12','$.fansAndManagementDevicesWatts','0',''), ('92130','43964','1','12','$.deviceBayWatts','0',''), ('92131','43965','1','12','$.enclosureType','0',''), ('92132','43965','2','20','6h','0',''), ('92133','43966','1','12','$.state','0',''), ('92134','43966','2','20','1h','0',''), ('92135','43967','1','12','$.status','0',''), ('92136','43967','2','20','10m','0',''), ('92137','43967','3','25','Critical 0','0',''), ('92138','43967','4','25','Disabled 1','0',''), ('92139','43967','5','25','OK 2','0',''), ('92140','43967','6','25','Unknown 3','0',''), ('92141','43967','7','25','Warning 4','0',''), ('92142','43967','8','13','0 4','2','3'), ('92143','43968','1','12','$.state','0',''), ('92144','43968','2','20','1h','0',''), ('92145','43969','1','12','$.status','0',''), ('92146','43969','2','20','10m','0',''), ('92147','43969','3','25','Critical 0','0',''), ('92148','43969','4','25','Disabled 1','0',''), ('92149','43969','5','25','OK 2','0',''), ('92150','43969','6','25','Unknown 3','0',''), ('92151','43969','7','25','Warning 4','0',''), ('92152','43969','8','13','0 4','2','3'), ('92153','43970','1','12','$.model','0',''), ('92154','43970','2','20','1d','0',''), ('92155','43971','1','12','$.partNumber','0',''), ('92156','43971','2','20','1d','0',''), ('92157','43972','1','12','$.devicePresence','0',''), ('92158','43972','2','25','Absent 0','0',''), ('92159','43972','3','25','PresenceNoOp 1','0',''), ('92160','43972','4','25','PresenceUnknown 2','0',''), ('92161','43972','5','25','Present 3','0',''), ('92162','43972','6','25','Subsumed 4','0',''), ('92163','43972','7','13','0 4','2','2'), ('92164','43972','8','20','1h','0',''), ('92165','43973','1','12','$.deviceRequired','0',''), ('92166','43973','2','6','','0',''), ('92167','43973','3','20','1h','0',''), ('92168','43974','1','12','$.serialNumber','0',''), ('92169','43974','2','20','1d','0',''), ('92170','43975','1','12','$.sparePartNumber','0',''), ('92171','43975','2','20','1d','0',''), ('92172','43976','1','12','$.state','2','5'), ('92173','43976','2','25','Degraded 0','0',''), ('92174','43976','3','25','Failed 1','0',''), ('92175','43976','4','25','Misplaced 2','0',''), ('92176','43976','5','25','Missing 3','0',''), ('92177','43976','6','25','OK 4','0',''), ('92178','43976','7','13','0 4','2','5'), ('92179','43977','1','12','$.status','0',''), ('92180','43977','2','20','10m','0',''), ('92181','43977','3','25','Critical 0','0',''), ('92182','43977','4','25','Disabled 1','0',''), ('92183','43977','5','25','OK 2','0',''), ('92184','43977','6','25','Unknown 3','0',''), ('92185','43977','7','25','Warning 4','0',''), ('92186','43977','8','13','0 4','2','3'), ('92187','43978','1','12','$.state','0',''), ('92188','43978','2','20','1h','0',''), ('92189','43979','1','12','$.status','0',''), ('92190','43979','2','20','10m','0',''), ('92191','43979','3','25','Critical 0','0',''), ('92192','43979','4','25','Disabled 1','0',''), ('92193','43979','5','25','OK 2','0',''), ('92194','43979','6','25','Unknown 3','0',''), ('92195','43979','7','25','Warning 4','0',''), ('92196','43979','8','13','0 4','2','3'), ('92197','43980','1','12','$.fwVersion','0',''), ('92198','43980','2','20','1d','0',''), ('92199','43981','1','12','$.linkPortState','0',''), ('92200','43981','2','25','Disabled 0','0',''), ('92201','43981','3','25','Linked 1','0',''), ('92202','43981','4','25','Unlinked 2','0',''), ('92203','43981','5','13','0 2','2','3'), ('92204','43981','6','20','10m','0',''), ('92205','43982','1','12','$.linkPortStatus','0',''), ('92206','43982','2','20','10m','0',''), ('92207','43982','3','25','Critical 0','0',''), ('92208','43982','4','25','Disabled 1','0',''), ('92209','43982','5','25','OK 2','0',''), ('92210','43982','6','25','Unknown 3','0',''), ('92211','43982','7','25','Warning 4','0',''), ('92212','43982','8','13','0 4','2','3'), ('92213','43983','1','12','$.mgmtPortState','0',''), ('92214','43983','2','25','Active 0','0',''), ('92215','43983','3','25','Disabled 1','0',''), ('92216','43983','4','25','I3s 2','0',''), ('92217','43983','5','25','Other 3','0',''), ('92218','43983','6','25','Standby 4','0',''), ('92219','43983','7','25','Unknown 5','0',''), ('92220','43983','8','13','0 5','2','5'), ('92221','43983','9','20','10m','0',''), ('92222','43984','1','12','$.mgmtPortStatus','0',''), ('92223','43984','2','20','10m','0',''), ('92224','43984','3','25','Critical 0','0',''), ('92225','43984','4','25','Disabled 1','0',''), ('92226','43984','5','25','OK 2','0',''), ('92227','43984','6','25','Unknown 3','0',''), ('92228','43984','7','25','Warning 4','0',''), ('92229','43984','8','13','0 4','2','3'), ('92230','43985','1','12','$.model','0',''), ('92231','43985','2','20','1d','0',''), ('92232','43986','1','12','$.partNumber','0',''), ('92233','43986','2','20','1d','0',''), ('92234','43987','1','12','$.devicePresence','0',''), ('92235','43987','2','25','Absent 0','0',''), ('92236','43987','3','25','PresenceNoOp 1','0',''), ('92237','43987','4','25','PresenceUnknown 2','0',''), ('92238','43987','5','25','Present 3','0',''), ('92239','43987','6','25','Subsumed 4','0',''), ('92240','43987','7','13','0 4','2','2'), ('92241','43987','8','20','1h','0',''), ('92242','43988','1','12','$.serialNumber','0',''), ('92243','43988','2','20','1d','0',''), ('92244','43989','1','12','$.sparePartNumber','0',''), ('92245','43989','2','20','1d','0',''), ('92246','43990','1','12','$.status','0',''), ('92247','43990','2','20','10m','0',''), ('92248','43990','3','25','Critical 0','0',''), ('92249','43990','4','25','Disabled 1','0',''), ('92250','43990','5','25','OK 2','0',''), ('92251','43990','6','25','Unknown 3','0',''), ('92252','43990','7','25','Warning 4','0',''), ('92253','43990','8','13','0 4','2','3'), ('92254','43991','1','12','$.state','0',''), ('92255','43991','2','25','Connected 0','0',''), ('92256','43991','3','25','Disconnected 1','0',''), ('92257','43991','4','25','Configuring 2','0',''), ('92258','43991','5','25','Error 3','0',''), ('92259','43991','6','13','0 3','2','4'), ('92260','43992','1','12','$.stateReason','0',''), ('92261','43992','2','20','1h','0',''), ('92262','43993','1','12','$.status','0',''), ('92263','43993','2','20','10m','0',''), ('92264','43993','3','25','Critical 0','0',''), ('92265','43993','4','25','Disabled 1','0',''), ('92266','43993','5','25','OK 2','0',''), ('92267','43993','6','25','Unknown 3','0',''), ('92268','43993','7','25','Warning 4','0',''), ('92269','43993','8','13','0 4','2','3'), ('92270','43994','1','12','$.interconnectHardwareHealth','0',''), ('92271','43994','2','20','1h','0',''), ('92272','43995','1','12','$.model','0',''), ('92273','43995','2','20','1d','0',''), ('92274','43996','1','12','$.partNumber','0',''), ('92275','43996','2','20','1d','0',''), ('92276','43997','1','12','$.portCount','0',''), ('92277','43997','2','20','1h','0',''), ('92278','43998','1','12','$.serialNumber','0',''), ('92279','43998','2','20','1d','0',''), ('92280','43999','1','12','$.sparePartNumber','0',''), ('92281','43999','2','20','1d','0',''), ('92282','44000','1','12','$.state','0',''), ('92283','44000','2','20','1h','0',''), ('92284','44001','1','12','$.status','0',''), ('92285','44001','2','20','10m','0',''), ('92286','44001','3','25','Critical 0','0',''), ('92287','44001','4','25','Disabled 1','0',''), ('92288','44001','5','25','OK 2','0',''), ('92289','44001','6','25','Unknown 3','0',''), ('92290','44001','7','25','Warning 4','0',''), ('92291','44001','8','13','0 4','2','3'), ('92292','44002','1','12','$.state','0',''), ('92293','44002','2','25','Inconsistent 0','0',''), ('92294','44002','3','25','Creating 1','0',''), ('92295','44002','4','25','DeleteFailed 2','0',''), ('92296','44002','5','25','Deleting 3','0',''), ('92297','44002','6','25','Consistent 4','0',''), ('92298','44002','7','25','Updating 5','0',''), ('92299','44002','8','13','0 5','2','6'), ('92300','44003','1','12','$.status','0',''), ('92301','44003','2','20','10m','0',''), ('92302','44003','3','25','Critical 0','0',''), ('92303','44003','4','25','Disabled 1','0',''), ('92304','44003','5','25','OK 2','0',''), ('92305','44003','6','25','Unknown 3','0',''), ('92306','44003','7','25','Warning 4','0',''), ('92307','44003','8','13','0 4','2','3'), ('92308','44004','1','12','$.deviceCount','0',''), ('92309','44004','2','20','10m','0',''), ('92310','44005','1','12','$.partitionHealth','0',''), ('92311','44005','2','25','NparDegrade 0','0',''), ('92312','44005','3','25','NparHealthInvalid 1','0',''), ('92313','44005','4','25','NparHealthMax 2','0',''), ('92314','44005','5','25','NparOk 3','0',''), ('92315','44005','6','13','0 3','2','4'), ('92316','44006','1','12','$.memoryMb','0',''), ('92317','44006','2','1','1048576','0',''), ('92318','44006','3','20','1h','0',''), ('92319','44007','1','12','$.processorCount','0',''), ('92320','44007','2','20','10m','0',''), ('92321','44008','1','12','$.partitionStatus','0',''), ('92322','44008','2','20','10m','0',''), ('92323','44008','3','25','ParStatusActive 0','0',''), ('92324','44008','4','25','ParStatusInactive 1','0',''), ('92325','44008','5','25','ParStatusInvalid 2','0',''), ('92326','44008','6','25','ParStatusManualRepair 3','0',''), ('92327','44008','7','25','ParStatusMax 4','0',''), ('92328','44008','8','25','ParStatusUndefined 5','0',''), ('92329','44008','9','25','ParStatusUnknown 6','0',''), ('92330','44008','10','13','0 6','2','6'), ('92331','44009','1','12','$.model','0',''), ('92332','44009','2','20','1d','0',''), ('92333','44010','1','12','$.outputCapacityWatts','0',''), ('92334','44010','2','20','1h','0',''), ('92335','44011','1','12','$.partNumber','0',''), ('92336','44011','2','20','1d','0',''), ('92337','44012','1','12','$.devicePresence','0',''), ('92338','44012','2','25','Absent 0','0',''), ('92339','44012','3','25','PresenceNoOp 1','0',''), ('92340','44012','4','25','PresenceUnknown 2','0',''), ('92341','44012','5','25','Present 3','0',''), ('92342','44012','6','25','Subsumed 4','0',''), ('92343','44012','7','13','0 4','2','2'), ('92344','44012','8','20','1h','0',''), ('92345','44013','1','12','$.serialNumber','0',''), ('92346','44013','2','20','1d','0',''), ('92347','44014','1','12','$.sparePartNumber','0',''), ('92348','44014','2','20','1d','0',''), ('92349','44015','1','12','$.status','0',''), ('92350','44015','2','20','10m','0',''), ('92351','44015','3','25','Critical 0','0',''), ('92352','44015','4','25','Disabled 1','0',''), ('92353','44015','5','25','OK 2','0',''), ('92354','44015','6','25','Unknown 3','0',''), ('92355','44015','7','25','Warning 4','0',''), ('92356','44015','8','13','0 4','2','3'), ('92357','44016','1','12','$.state','0',''), ('92358','44016','2','25','Adding 0','0',''), ('92359','44016','3','25','AddError 1','0',''), ('92360','44016','4','25','Configured 2','0',''), ('92361','44016','5','25','CredentialError 3','0',''), ('92362','44016','6','25','Refreshing 4','0',''), ('92363','44016','7','25','RefreshError 5','0',''), ('92364','44016','8','25','Removing 6','0',''), ('92365','44016','9','25','RemoveError 7','0',''), ('92366','44016','10','25','Unmanaged 8','0',''), ('92367','44016','11','13','0 8','2','9'), ('92368','44017','1','12','$.status','0',''), ('92369','44017','2','20','10m','0',''), ('92370','44017','3','25','Critical 0','0',''), ('92371','44017','4','25','Disabled 1','0',''), ('92372','44017','5','25','OK 2','0',''), ('92373','44017','6','25','Unknown 3','0',''), ('92374','44017','7','25','Warning 4','0',''), ('92375','44017','8','13','0 4','2','3'), ('92376','44018','1','12','$.processorCoreCount','0',''), ('92377','44018','2','20','1h','0',''), ('92378','44019','1','12','$.processorCount','0',''), ('92379','44019','2','20','1h','0',''), ('92380','44020','1','12','$.processorSpeedMhz','0',''), ('92381','44020','2','20','1h','0',''), ('92382','44021','1','12','$.processorType','0',''), ('92383','44021','2','20','1d','0',''), ('92384','44022','1','12','$.maintenanceState','1',''), ('92385','44022','2','25','Maintenance 0','0',''), ('92386','44022','3','25','Normal 1','0',''), ('92387','44022','4','13','0 1','2','2'), ('92388','44023','1','12','$.maintenanceStateReason','1',''), ('92389','44023','2','20','1h','0',''), ('92390','44024','1','12','$.memoryMb','0',''), ('92391','44024','2','1','1048576','0',''), ('92392','44024','3','20','1h','0',''), ('92393','44025','1','12','$.migrationState','1',''), ('92394','44025','2','25','Migrating 0','0',''), ('92395','44025','3','25','NotApplicable 1','0',''), ('92396','44025','4','25','Unknown 2','0',''), ('92397','44025','5','13','0 2','2','2'), ('92398','44026','1','12','$.model','0',''), ('92399','44026','2','20','1d','0',''), ('92400','44027','1','12','$.partNumber','0',''), ('92401','44027','2','20','1d','0',''), ('92402','44028','1','12','$.powerState','0',''), ('92403','44028','2','25','PoweringOff 0','0',''), ('92404','44028','3','25','PoweringOn 1','0',''), ('92405','44028','4','25','Resetting 2','0',''), ('92406','44028','5','25','Unknown 3','0',''), ('92407','44028','6','25','Off 4','0',''), ('92408','44028','7','25','On 5','0',''), ('92409','44028','8','13','0 5','2','3'), ('92410','44029','1','12','$.serialNumber','0',''), ('92411','44029','2','20','1d','0',''), ('92412','44030','1','12','$.state','0',''), ('92413','44030','2','25','Unknown 0','0',''), ('92414','44030','3','25','Adding 1','0',''), ('92415','44030','4','25','NoProfileApplied 2','0',''), ('92416','44030','5','25','Monitored 3','0',''), ('92417','44030','6','25','Unmanaged 4','0',''), ('92418','44030','7','25','Removing 5','0',''), ('92419','44030','8','25','RemoveFailed 6','0',''), ('92420','44030','9','25','Removed 7','0',''), ('92421','44030','10','25','ApplyingProfile 8','0',''), ('92422','44030','11','25','ProfileApplied 9','0',''), ('92423','44030','12','25','RemovingProfile 10','0',''), ('92424','44030','13','25','ProfileError 11','0',''), ('92425','44030','14','25','Unsupported 12','0',''), ('92426','44030','15','25','UpdatingFirmware 13','0',''), ('92427','44030','16','13','0 13','2','0'), ('92428','44031','1','12','$.stateReason','0',''), ('92429','44031','2','20','1h','0',''), ('92430','44032','1','12','$.status','0',''), ('92431','44032','2','20','10m','0',''), ('92432','44032','3','25','Critical 0','0',''), ('92433','44032','4','25','Disabled 1','0',''), ('92434','44032','5','25','OK 2','0',''), ('92435','44032','6','25','Unknown 3','0',''), ('92436','44032','7','25','Warning 4','0',''), ('92437','44032','8','13','0 4','2','3'), ('92438','44033','1','12','$.allocatedCapacity','0',''), ('92439','44034','1','12','$.freeCapacity','0',''), ('92440','44035','1','12','$.deviceSpecificAttributes.allocatedCapacity.snapshotAllocatedCapacity','0',''), ('92441','44036','1','12','$.totalCapacity','0',''), ('92442','44037','1','12','$.state','0',''), ('92443','44037','2','25','AddFailed 0','0',''), ('92444','44037','3','25','Adding 1','0',''), ('92445','44037','4','25','Configured 2','0',''), ('92446','44037','5','25','Connected 3','0',''), ('92447','44037','6','25','Copying 4','0',''), ('92448','44037','7','25','CreateFailed 5','0',''), ('92449','44037','8','25','Creating 6','0',''), ('92450','44037','9','25','DeleteFailed 7','0',''), ('92451','44037','10','25','Deleting 8','0',''), ('92452','44037','11','25','Discovered 9','0',''), ('92453','44037','12','25','Managed 10','0',''), ('92454','44037','13','25','Normal 11','0',''), ('92455','44037','14','25','UpdateFailed 12','0',''), ('92456','44037','15','25','Updating 13','0',''), ('92457','44037','16','13','0 13','2','14'), ('92458','44038','1','12','$.status','0',''), ('92459','44038','2','20','10m','0',''), ('92460','44038','3','25','Critical 0','0',''), ('92461','44038','4','25','Disabled 1','0',''), ('92462','44038','5','25','OK 2','0',''), ('92463','44038','6','25','Unknown 3','0',''), ('92464','44038','7','25','Warning 4','0',''), ('92465','44038','8','13','0 4','2','3'), ('92466','44039','1','12','$.allocatedCapacity','0',''), ('92467','44040','1','12','$.freeCapacity','0',''), ('92468','44041','1','12','$.totalCapacity','0',''), ('92469','44042','1','12','$.state','0',''), ('92470','44042','2','25','AddFailed 0','0',''), ('92471','44042','3','25','Adding 1','0',''), ('92472','44042','4','25','Configured 2','0',''), ('92473','44042','5','25','Connected 3','0',''), ('92474','44042','6','25','Copying 4','0',''), ('92475','44042','7','25','CreateFailed 5','0',''), ('92476','44042','8','25','Creating 6','0',''), ('92477','44042','9','25','DeleteFailed 7','0',''), ('92478','44042','10','25','Deleting 8','0',''), ('92479','44042','11','25','Discovered 9','0',''), ('92480','44042','12','25','Managed 10','0',''), ('92481','44042','13','25','Normal 11','0',''), ('92482','44042','14','25','UpdateFailed 12','0',''), ('92483','44042','15','25','Updating 13','0',''), ('92484','44042','16','13','0 13','2','14'), ('92485','44043','1','12','$.status','0',''), ('92486','44043','2','20','10m','0',''), ('92487','44043','3','25','Critical 0','0',''), ('92488','44043','4','25','Disabled 1','0',''), ('92489','44043','5','25','OK 2','0',''), ('92490','44043','6','25','Unknown 3','0',''), ('92491','44043','7','25','Warning 4','0',''), ('92492','44043','8','13','0 4','2','3'), ('92493','44044','1','12','$.allocatedCapacity','0',''), ('92494','44045','1','12','$.provisionedCapacity','0',''), ('92495','44046','1','12','$.state','0',''), ('92496','44046','2','25','AddFailed 0','0',''), ('92497','44046','3','25','Adding 1','0',''), ('92498','44046','4','25','Configured 2','0',''), ('92499','44046','5','25','Connected 3','0',''), ('92500','44046','6','25','Copying 4','0',''), ('92501','44046','7','25','CreateFailed 5','0',''), ('92502','44046','8','25','Creating 6','0',''), ('92503','44046','9','25','DeleteFailed 7','0',''), ('92504','44046','10','25','Deleting 8','0',''), ('92505','44046','11','25','Discovered 9','0',''), ('92506','44046','12','25','Managed 10','0',''), ('92507','44046','13','25','Normal 11','0',''), ('92508','44046','14','25','UpdateFailed 12','0',''), ('92509','44046','15','25','Updating 13','0',''), ('92510','44046','16','13','0 13','2','14'), ('92511','44047','1','12','$.status','0',''), ('92512','44047','2','20','10m','0',''), ('92513','44047','3','25','Critical 0','0',''), ('92514','44047','4','25','Disabled 1','0',''), ('92515','44047','5','25','OK 2','0',''), ('92516','44047','6','25','Unknown 3','0',''), ('92517','44047','7','25','Warning 4','0',''), ('92518','44047','8','13','0 4','2','3'), ('92519','44048','1','12','$.state','0',''), ('92520','44048','2','20','1h','0',''), ('92521','44049','1','12','$.status','0',''), ('92522','44049','2','20','10m','0',''), ('92523','44049','3','25','Critical 0','0',''), ('92524','44049','4','25','Disabled 1','0',''), ('92525','44049','5','25','OK 2','0',''), ('92526','44049','6','25','Unknown 3','0',''), ('92527','44049','7','25','Warning 4','0',''), ('92528','44049','8','13','0 4','2','3'), ('92530','44050','1','26','-1','2','0'), ('92532','44051','1','26','-1','2','0'), ('92533','44059','1','12','$.cert','0',''), ('92534','44059','2','21','return value === ''false'' ? 0 : 1','0',''), ('92535','44059','3','20','12h','0',''), ('92536','44060','1','12','$.compatibility','0',''), ('92537','44060','2','20','12h','0',''), ('92538','44061','1','12','$.compression','0',''), ('92539','44061','2','21','return value === ''false'' ? 0 : 1','0',''), ('92540','44061','3','20','12h','0',''), ('92541','44062','1','12','$.hosts','0',''), ('92542','44062','2','20','12h','0',''), ('92543','44063','1','12','$.items','0',''), ('92544','44063','2','20','12h','0',''), ('92545','44064','1','12','$.last_seen','0',''), ('92546','44065','1','12','$.passive','0',''), ('92547','44065','2','21','return value === ''false'' ? 0 : 1','0',''), ('92548','44065','3','20','12h','0',''), ('92549','44066','1','12','$.psk','0',''), ('92550','44066','2','21','return value === ''false'' ? 0 : 1','0',''), ('92551','44066','3','20','12h','0',''), ('92552','44067','1','12','$.requiredperformance','0',''), ('92553','44067','2','20','12h','0',''), ('92554','44068','1','12','$.unencrypted','0',''), ('92555','44068','2','21','return value === ''false'' ? 0 : 1','0',''), ('92556','44068','3','20','12h','0',''), ('92557','44069','1','12','$.version','0',''), ('92558','44069','2','20','12h','0',''), ('92559','44070','1','12','$.cert','0',''), ('92560','44070','2','21','return value === ''false'' ? 0 : 1','0',''), ('92561','44070','3','20','12h','0',''), ('92562','44071','1','12','$.compatibility','0',''), ('92563','44071','2','20','12h','0',''), ('92564','44072','1','12','$.compression','0',''), ('92565','44072','2','21','return value === ''false'' ? 0 : 1','0',''), ('92566','44072','3','20','12h','0',''), ('92567','44073','1','12','$.hosts','0',''), ('92568','44073','2','20','12h','0',''), ('92569','44074','1','12','$.items','0',''), ('92570','44074','2','20','12h','0',''), ('92571','44075','1','12','$.last_seen','0',''), ('92572','44076','1','12','$.passive','0',''), ('92573','44076','2','21','return value === ''false'' ? 0 : 1','0',''), ('92574','44076','3','20','12h','0',''), ('92575','44077','1','12','$.psk','0',''), ('92576','44077','2','21','return value === ''false'' ? 0 : 1','0',''), ('92577','44077','3','20','12h','0',''), ('92578','44078','1','12','$.requiredperformance','0',''), ('92579','44078','2','20','12h','0',''), ('92580','44079','1','12','$.unencrypted','0',''), ('92581','44079','2','21','return value === ''false'' ? 0 : 1','0',''), ('92582','44079','3','20','12h','0',''), ('92583','44080','1','12','$.version','0',''), ('92584','44080','2','20','12h','0',''), ('92585','44081','1','12','$.data.proxy','0',''), ('92586','44083','1','12','$.cert','0',''), ('92587','44083','2','21','return value === ''false'' ? 0 : 1','0',''), ('92588','44083','3','20','12h','0',''), ('92589','44084','1','12','$.compatibility','0',''), ('92590','44084','2','20','12h','0',''), ('92591','44085','1','12','$.compression','0',''), ('92592','44085','2','21','return value === ''false'' ? 0 : 1','0',''), ('92593','44085','3','20','12h','0',''), ('92594','44086','1','12','$.hosts','0',''), ('92595','44086','2','20','12h','0',''), ('92596','44087','1','12','$.items','0',''), ('92597','44087','2','20','12h','0',''), ('92598','44088','1','12','$.last_seen','0',''), ('92599','44089','1','12','$.passive','0',''), ('92600','44089','2','21','return value === ''false'' ? 0 : 1','0',''), ('92601','44089','3','20','12h','0',''), ('92602','44090','1','12','$.psk','0',''), ('92603','44090','2','21','return value === ''false'' ? 0 : 1','0',''), ('92604','44090','3','20','12h','0',''), ('92605','44091','1','12','$.requiredperformance','0',''), ('92606','44091','2','20','12h','0',''), ('92607','44092','1','12','$.unencrypted','0',''), ('92608','44092','2','21','return value === ''false'' ? 0 : 1','0',''), ('92609','44092','3','20','12h','0',''), ('92610','44093','1','12','$.version','0',''), ('92611','44093','2','20','12h','0',''), ('92612','44094','1','12','$.[''pools'']','1',''), ('92613','44095','1','12','$.[''volume-statistics'']','1',''), ('92614','44096','1','12','$.[''volumes'']','1',''), ('92615','44097','1','12','$.system[0]','1',''), ('92616','44098','1','12','$.[''controllers'']','1',''), ('92617','44099','1','12','$.[''ports'']','1',''), ('92618','44100','1','12','$.[''disk-group-statistics'']','1',''), ('92619','44101','1','12','$.[''frus'']','1',''), ('92620','44102','1','12','$.[''fans'']','1',''), ('92621','44103','1','12','$.[''enclosures'']','1',''), ('92622','44104','1','12','$.[''disk-groups'']','1',''), ('92623','44105','1','12','$.[''disks'']','1',''), ('92624','44106','1','12','$.[''controller-statistics'']','1',''), ('92625','44107','1','12','$.[''power-supplies'']','1',''), ('92626','44108','1','12','$.[?(@[''durable-id''] == "{#DURABLE.ID}")].first()','0',''), ('92627','44109','1','12','$.[?(@[''durable-id''] == "{#DURABLE.ID}")].first()','0',''), ('92628','44110','1','12','$[?(@[''durable-id''] == "{#DURABLE.ID}")].first()','0',''), ('92629','44111','1','12','$.[?(@[''name''] == "{#NAME}")].first()','0',''), ('92630','44112','1','12','$.[?(@[''name''] == "{#NAME}")].first()','0',''), ('92631','44113','1','12','$[?(@[''durable-id''] == "{#DURABLE.ID}")].first()','0',''), ('92632','44114','1','12','$[?(@[''durable-id''] == "{#DURABLE.ID}")].first()','0',''), ('92633','44115','1','12','$[?(@[''name''] == "{#TYPE}")].first()','0',''), ('92634','44116','1','12','$[?(@[''name''] == "{#NAME}")].first()','0',''), ('92635','44117','1','12','$[?(@[''port''] == "{#NAME}")].first()','0',''), ('92636','44118','1','12','$[?(@[''durable-id''] == "{#DURABLE.ID}")].first()','0',''), ('92637','44119','1','12','$.[?(@[''volume-name''] == "{#NAME}")].first()','0',''), ('92638','44120','1','12','$.[?(@[''volume-name''] == "{#NAME}")].first()','0',''), ('92639','44121','1','12','$.[''pools'']','1',''), ('92640','44122','1','12','$.[''volume-statistics'']','1',''), ('92641','44123','1','12','$.[''volumes'']','1',''), ('92642','44124','1','12','$.system[0]','1',''), ('92643','44125','1','12','$.[''controllers'']','1',''), ('92644','44126','1','12','$.[''ports'']','1',''), ('92645','44127','1','12','$.[''disk-group-statistics'']','1',''), ('92646','44128','1','12','$.[''frus'']','1',''), ('92647','44129','1','12','$.[''fans'']','1',''), ('92648','44130','1','12','$.[''enclosures'']','1',''), ('92649','44131','1','12','$.[''disk-groups'']','1',''), ('92650','44132','1','12','$.[''disks'']','1',''), ('92651','44133','1','12','$.[''controller-statistics'']','1',''), ('92652','44134','1','12','$.[''power-supplies'']','1',''), ('92653','44135','1','12','$.[?(@[''durable-id''] == "{#DURABLE.ID}")].first()','0',''), ('92654','44136','1','12','$.[?(@[''durable-id''] == "{#DURABLE.ID}")].first()','0',''), ('92655','44137','1','12','$[?(@[''durable-id''] == "{#DURABLE.ID}")].first()','0',''), ('92656','44138','1','12','$.[?(@[''name''] == "{#NAME}")].first()','0',''), ('92657','44139','1','12','$.[?(@[''name''] == "{#NAME}")].first()','0',''), ('92658','44140','1','12','$[?(@[''durable-id''] == "{#DURABLE.ID}")].first()','0',''), ('92659','44141','1','12','$[?(@[''durable-id''] == "{#DURABLE.ID}")].first()','0',''), ('92660','44142','1','12','$[?(@[''name''] == "{#TYPE}")].first()','0',''), ('92661','44143','1','12','$[?(@[''name''] == "{#NAME}")].first()','0',''), ('92662','44144','1','12','$[?(@[''port''] == "{#NAME}")].first()','0',''), ('92663','44145','1','12','$[?(@[''durable-id''] == "{#DURABLE.ID}")].first()','0',''), ('92664','44146','1','12','$.[?(@[''volume-name''] == "{#NAME}")].first()','0',''), ('92665','44147','1','12','$.[?(@[''volume-name''] == "{#NAME}")].first()','0',''), ('92666','44148','1','12','$.disks','1',''), ('92667','44149','1','12','$.hosts','1',''), ('92668','44150','1','12','$.ports','1',''), ('92669','44151','1','12','$.system','1',''), ('92670','44152','1','12','$.tasks','1',''), ('92671','44153','1','12','$.volumes','1',''), ('92672','44154','1','12','$.cpgs','1',''), ('92673','44155','1','12','$.members[?(@.id == "{#ID}")].first()','0',''), ('92674','44156','1','12','$.members[?(@.id == "{#ID}")].first()','0',''), ('92675','44157','1','12','$.members[?(@.id == "{#ID}")].first()','0',''), ('92676','44158','1','12','$.members[?(@.portPos.node == "{#NODE}" && @.portPos.slot == "{#SLOT}" && @.portPos.cardPort == "{#CARD.PORT}")].first()','0',''), ('92677','44159','1','12','$.[?(@.id == "{#ID}")].first()','0',''), ('92678','44160','1','12','$.members[?(@.id == "{#ID}")].first()','0',''), ('92679','32136','2','10','','0',''), ('92680','44163','1','12','$.health.summary','0',''), ('92681','44163','2','20','1h','0',''), ('92682','44164','1','12','$.metrics.memory_percent.maximum','0',''), ('92683','44165','1','12','$.metrics.storage_percent.maximum','0',''), ('92684','44166','1','12','$.metrics.storage_limit.maximum','0',''), ('92685','44167','1','12','$.metrics.backup_storage_used.maximum','0',''), ('92686','44168','1','12','$.metrics.replication_lag.maximum','1',''), ('92687','44169','1','12','$.metrics.Queries.total','0',''), ('92688','44170','1','12','$.metrics.network_bytes_ingress.total','0',''), ('92689','44170','2','1','0.0088','0',''), ('92690','44171','1','12','$.metrics.network_bytes_egress.total','0',''), ('92691','44171','2','1','0.0088','0',''), ('92692','44172','1','12','$.metrics.io_consumption_percent.maximum','0',''), ('92693','44173','1','12','$.health.availabilityState','2','3'), ('92694','44173','2','25','Available 0','0',''), ('92695','44173','3','25','Degraded 1','0',''), ('92696','44173','4','25','Unavailable 2','0',''), ('92697','44173','5','25','Unknown 3','0',''), ('92698','44173','6','13','0 3','2','3'), ('92699','44173','7','20','1h','0',''), ('92700','44174','1','12','$.errors','0',''), ('92701','44174','2','20','1h','0',''), ('92702','44175','1','12','$.metrics.cpu_percent.maximum','0',''), ('92703','44176','1','12','$.metrics.cpu_credits_remaining.maximum','1',''), ('92704','44177','1','12','$.metrics.cpu_credits_consumed.maximum','1',''), ('92705','44178','1','12','$.metrics.total_connections.total','0',''), ('92706','44179','1','12','$.metrics.active_connections.maximum','0',''), ('92707','44180','1','12','$.metrics.aborted_connections.total','0',''), ('92708','44181','1','12','$.metrics.storage_used.maximum','0',''), ('92709','44182','1','12','$.health.summary','0',''), ('92710','44182','2','20','1h','0',''), ('92711','44183','1','12','$.metrics.seconds_behind_master.maximum','1',''), ('92712','44184','1','12','$.metrics.serverlog_storage_usage.average','0',''), ('92713','44185','1','12','$.metrics.serverlog_storage_percent.average','0',''), ('92714','44186','1','12','$.metrics.serverlog_storage_limit.maximum','0',''), ('92715','44187','1','12','$.metrics.storage_percent.average','0',''), ('92716','44188','1','12','$.metrics.storage_limit.maximum','0',''), ('92717','44189','1','12','$.metrics.backup_storage_used.average','0',''), ('92718','44190','1','12','$.metrics.network_bytes_egress.total','1',''), ('92719','44190','2','1','0.0088','0',''), ('92720','44191','1','12','$.metrics.network_bytes_ingress.total','1',''), ('92721','44191','2','1','0.0088','0',''), ('92722','44192','1','12','$.health.availabilityState','2','3'), ('92723','44192','2','25','Available 0','0',''), ('92724','44192','3','25','Degraded 1','0',''), ('92725','44192','4','25','Unavailable 2','0',''), ('92726','44192','5','25','Unknown 3','0',''), ('92727','44192','6','13','0 3','2','3'), ('92728','44192','7','20','1h','0',''), ('92729','44193','1','12','$.metrics.memory_percent.average','0',''), ('92730','44194','1','12','$.metrics.io_consumption_percent.average','0',''), ('92731','44195','1','12','$.errors','0',''), ('92732','44195','2','20','1h','0',''), ('92733','44196','1','12','$.metrics.cpu_percent.average','0',''), ('92734','44197','1','12','$.metrics.connections_failed.total','1',''), ('92735','44198','1','12','$.metrics.active_connections.average','0',''), ('92736','44199','1','12','$.metrics.storage_used.average','0',''), ('92737','44200','1','12','$.resources.value','0',''), ('92738','44200','2','20','6h','0',''), ('92739','44201','1','12','$.["ethernet-networks"]','1',''), ('92740','44202','1','12','$.fabrics','1',''), ('92741','44203','1','12','$.["fc-networks"]','1',''), ('92742','44204','1','12','$.["hypervisor-managers"]','1',''), ('92743','44205','1','12','$.datacenters','1',''), ('92744','44206','1','12','$.["logical-enclosures"]','1',''), ('92745','44207','1','12','$.racks','1',''), ('92746','44208','1','12','$.["server-hardware"]','1',''), ('92747','44209','1','12','$.["storage-pools"]','1',''), ('92748','44210','1','12','$.["storage-systems"]','1',''), ('92749','44211','1','12','$.["storage-volumes"]','1',''), ('92750','44212','1','12','$.["uplink-sets"]','1',''), ('92751','44213','1','12','$.interconnects','1',''), ('92752','44214','1','12','$.members[?(@.name == "{#ENCLOSURE_NAME}")].applianceBays[?(@.bayNumber == "{#BAY_NUMBER}")].first()','0',''), ('92753','44215','1','12','$.members[?(@.name == "{#ENCLOSURE_NAME}")].crossbars[?(@.bayNumber == "{#BAY_NUMBER}")].first()','0',''), ('92754','44216','1','12','$.members[?(@.name == "{#NAME}")].first()','0',''), ('92755','44217','1','12','$.members[?(@.name == "{#ENCLOSURE_NAME}")].deviceBays[?(@.bayNumber == "{#BAY_NUMBER}")].first()','0',''), ('92756','44218','1','12','$.members[?(@.name == "{#NAME}")].first()','0',''), ('92757','44219','1','12','$.members[?(@.name == "{#NAME}")].first()','0',''), ('92758','44220','1','12','$.members[?(@.name == "{#NAME}")].first()','0',''), ('92759','44221','1','12','$.members[?(@.name == "{#ENCLOSURE_NAME}")].fanBays[?(@.bayNumber == "{#BAY_NUMBER}")].first()','0',''), ('92760','44222','1','12','$.members[?(@.name == "{#NAME}")].first()','0',''), ('92761','44223','1','12','$.members[?(@.name == "{#ENCLOSURE_NAME}")].managerBays[?(@.bayNumber == "{#BAY_NUMBER}")].first()','0',''), ('92762','44224','1','12','$.members[?(@.displayName == "{#NAME}")].first()','0',''), ('92763','44225','1','12','$.members[?(@.name == "{#NAME}")].first()','0',''), ('92764','44226','1','12','$.members[?(@.name == "{#NAME}")].first()','0',''), ('92765','44227','1','12','$.members[?(@.name == "{#ENCLOSURE_NAME}")].partitions[?(@.partitionID == "{#PARTITION_ID}")].first()','0',''), ('92766','44228','1','12','$.members[?(@.name == "{#ENCLOSURE_NAME}")].powerSupplyBays[?(@.bayNumber == "{#BAY_NUMBER}")].first()','0',''), ('92767','44229','1','12','$.members[?(@.name == "{#NAME}")].first()','0',''), ('92768','44230','1','12','$.members[?(@.name == "{#LOCATION}")].first()','0',''), ('92769','44231','1','12','$.members[?(@.name == "{#NAME}")].first()','0',''), ('92770','44232','1','12','$.members[?(@.name == "{#NAME}")].first()','0',''), ('92771','44233','1','12','$.members[?(@.name == "{#NAME}")].first()','0',''), ('92772','44234','1','12','$.members[?(@.name == "{#NAME}")].first()','0',''), ('92784','44247','1','12','$.Pods[?(@.name == "{#POD}" && @.namespace == "{#NAMESPACE}")].first()','0',''), ('92785','44250','1','12','$.health.summary','0',''), ('92786','44250','2','20','1h','0',''), ('92787','44251','1','12','$.metrics.read_iops.average','1',''), ('92788','44252','1','12','$.metrics.storage_used.average','0',''), ('92789','44253','1','12','$.metrics.txlogs_storage_used.average','0',''), ('92790','44254','1','12','$.metrics.storage_percent.average','0',''), ('92791','44255','1','12','$.metrics.storage_free.average','0',''), ('92792','44256','1','12','$.metrics.backup_storage_used.average','1',''), ('92793','44257','1','12','$.metrics.network_bytes_ingress.total','0',''), ('92794','44257','2','1','0.1333','0',''), ('92795','44258','1','12','$.metrics.network_bytes_egress.total','0',''), ('92796','44258','2','1','0.1333','0',''), ('92797','44259','1','12','$.metrics.memory_percent.average','0',''), ('92798','44260','1','12','$.metrics.write_iops.average','1',''), ('92799','44261','1','12','$.metrics.disk_queue_depth.average','1',''), ('92800','44262','1','12','$.metrics.iops.average','0',''), ('92801','44263','1','12','$.health.availabilityState','2','3'), ('92802','44263','2','25','Available 0','0',''), ('92803','44263','3','25','Degraded 1','0',''), ('92804','44263','4','25','Unavailable 2','0',''), ('92805','44263','5','25','Unknown 3','0',''), ('92806','44263','6','13','0 3','2','3'), ('92807','44263','7','20','1h','0',''), ('92808','44264','1','12','$.metrics.write_throughput.average','1',''), ('92809','44265','1','12','$.metrics.read_throughput.average','1',''), ('92810','44266','1','12','$.errors','0',''), ('92811','44266','2','20','1h','0',''), ('92812','44267','1','12','$.metrics.cpu_percent.average','0',''), ('92813','44268','1','12','$.metrics.cpu_credits_remaining.average','1',''), ('92814','44269','1','12','$.metrics.cpu_credits_consumed.average','1',''), ('92815','44270','1','12','$.metrics.connections_succeeded.total','0',''), ('92816','44271','1','12','$.metrics.connections_failed.total','1',''), ('92817','44272','1','12','$.metrics.active_connections.average','0',''), ('92818','44273','1','12','$.metrics.maximum_used_transactionIDs.average','0',''), ('92819','44274','1','12','$.health.summary','0',''), ('92820','44274','2','20','1h','0',''), ('92821','44275','1','12','$.metrics.pg_replica_log_delay_in_seconds.maximum','1',''), ('92822','44276','1','12','$.metrics.serverlog_storage_usage.average','0',''), ('92823','44277','1','12','$.metrics.serverlog_storage_percent.average','0',''), ('92824','44278','1','12','$.metrics.serverlog_storage_limit.maximum','0',''), ('92825','44279','1','12','$.metrics.storage_percent.average','0',''), ('92826','44280','1','12','$.metrics.storage_limit.maximum','0',''), ('92827','44281','1','12','$.metrics.backup_storage_used.average','0',''), ('92828','44282','1','12','$.metrics.pg_replica_log_delay_in_bytes.maximum','1',''), ('92829','44283','1','12','$.metrics.network_bytes_ingress.total','1',''), ('92830','44283','2','1','0.1333','0',''), ('92831','44284','1','12','$.health.availabilityState','2','3'), ('92832','44284','2','25','Available 0','0',''), ('92833','44284','3','25','Degraded 1','0',''), ('92834','44284','4','25','Unavailable 2','0',''), ('92835','44284','5','25','Unknown 3','0',''), ('92836','44284','6','13','0 3','2','3'), ('92837','44284','7','20','1h','0',''), ('92838','44285','1','12','$.metrics.network_bytes_egress.total','1',''), ('92839','44285','2','1','0.1333','0',''), ('92840','44286','1','12','$.metrics.memory_percent.average','0',''), ('92841','44287','1','12','$.metrics.io_consumption_percent.average','0',''), ('92842','44288','1','12','$.errors','0',''), ('92843','44288','2','20','1h','0',''), ('92844','44289','1','12','$.metrics.cpu_percent.average','0',''), ('92845','44290','1','12','$.metrics.connections_failed.total','1',''), ('92846','44291','1','12','$.metrics.active_connections.average','0',''), ('92847','44292','1','12','$.metrics.storage_used.average','0',''), ('92848','44293','1','12','$.resources.value','0',''), ('92849','44293','2','20','6h','0',''), ('92851','44301','1','12','$.error','0',''), ('92852','44301','2','20','1h','0',''), ('92853','44302','1','12','$.deviceInfo.ip','0',''), ('92854','44303','1','12','$.data.status','1',''), ('92855','44303','2','21','switch (value) { case ''offline'': return 0 case ''online'': return 1 case ''dormant'': return 2 default: return 10 }','0',''), ('92856','44304','1','12','$.error','0',''), ('92857','44304','2','20','1h','0',''), ('92858','44305','1','12','$.error','0',''), ('92859','44305','2','20','1h','0',''), ('92860','44306','1','12','$.error','0',''), ('92861','44306','2','20','1h','0',''), ('92862','44307','1','12','$.licenseStates.expirationDate','1',''), ('92863','44307','2','21','function parseDate(date) { months = [''Jan'', ''Feb'', ''Mar'', ''Apr'', ''May'', ''Jun'', ''Jul'', ''Aug'', ''Sep'', ''Oct'', ''Nov'', ''Dec'']; date = date.split('',''); date[1] = date[1].match(/[0-9]{4}/)[0]; date = date.concat(date[0].split('' '')); month = 1 + months.indexOf(date[2]); return Date.parse(date[1] + "-" + month + "-" + date[3]); } if (value === "N/A") { return -1; } else { value = parseDate(value); now = Date.now(); return Math.floor((value - now) / 1000); }','0',''), ('92864','44308','1','12','$.licenseStates.status','1',''), ('92865','44308','2','21','switch (value) { case ''License Required'': return 0 case ''OK'': return 1 default: return 10 }','0',''), ('92866','44309','1','12','$.data.counts.policies','1',''), ('92867','44310','1','12','$.data.counts.allowPolicies','1',''), ('92868','44311','1','12','$.data.counts.customAcls','1',''), ('92869','44312','1','12','$.data.counts.denyPolicies','1',''), ('92870','44313','1','12','$.data.counts.groups','1',''), ('92871','44314','1','12','$.devices','0',''), ('92872','44315','1','12','$.organizations','0',''), ('92873','44316','1','12','$.uplinksLL','0',''), ('92874','44317','1','12','$.uplinks','0',''), ('92875','44318','1','12','$.vpnStats','0',''), ('92876','44319','1','12','$.uplinksLL[?(@.ip == ''{#IP}'' && @.uplink== ''{#UPLINK}'')].timeSeries.[0].latencyMs.first()','2','-1000'), ('92877','44319','2','1','0.001','0',''), ('92879','44320','1','12','$.uplinksLL[?(@.ip == ''{#IP}'' && @.uplink== ''{#UPLINK}'')].timeSeries.[0].lossPercent.first()','2','-1'), ('92881','44321','1','12','$.uplinks[?(@.networkName== ''{#NETWORK.NAME}'' && @.interface== ''{#INTERFACE}'' && @.role== ''{#UPLINK.ROLE}'' )].status.first()','0',''), ('92882','44321','2','21','switch (value) { case ''failed'': return 0 case ''active'': return 1 case ''ready'': return 2 case ''not connected'': return 3 default: return 10 }','0',''), ('92883','44322','1','12','$.vpnStats[?(@.networkId==''{#NETWORK.ID}'' && @.senderUplink==''{#SENDER.UPLINK}'' && @.peerNetworkId==''{#PEER.NETWORK.ID}'' && @.receiverUplink==''{#RECEIVER.UPLINK}'')].first()','0',''), ('92884','44323','1','12','$.avgJitter','0',''), ('92885','44324','1','12','$.maxJitter','0',''), ('92886','44325','1','12','$.minJitter','0',''), ('92887','44326','1','12','$.avgLatencyMs','0',''), ('92888','44327','1','12','$.maxLatencyMs','0',''), ('92889','44328','1','12','$.minLatencyMs','0',''), ('92890','44329','1','12','$.avgLossPercentage','0',''), ('92891','44330','1','12','$.maxLossPercentage','0',''), ('92892','44331','1','12','$.minLossPercentage','0',''), ('92893','44332','1','12','$.avgMos','0',''), ('92894','44333','1','12','$.maxMos','0',''), ('92895','44334','1','12','$.minMos','0',''), ('92896','22941','1','20','1h','0',''), ('92897','22901','1','20','1h','0',''), ('92898','22981','1','20','1h','0',''), ('92899','23061','1','20','1h','0',''), ('92900','22861','1','20','1h','0',''), ('92901','23021','1','20','1h','0',''), ('92902','44338','1','12','$.[?(@["name"]=="{#APACHE.NAME}")].first()','2','Failed to retrieve process {#APACHE.NAME} data'), ('92903','44339','1','12','$.processes','2','0'), ('92904','44339','2','20','1h','0',''), ('92905','44340','1','12','$.pmem','1',''), ('92906','44341','1','12','$.rss','1',''), ('92907','44342','1','12','$.vsize','1',''), ('92908','44346','1','12','$.[?(@["name"]=="{#NGINX.NAME}")].first()','2','Failed to retrieve process {#NGINX.NAME} data'), ('92909','44347','1','12','$.processes','2','0'), ('92910','44347','2','20','1h','0',''), ('92911','44348','1','12','$.pmem','1',''), ('92912','44349','1','12','$.rss','1',''), ('92913','44350','1','12','$.vsize','1',''), ('92914','44354','1','12','$.[?(@["name"]=="{#PHP_FPM.NAME}")].first()','2','Failed to retrieve process {#PHP_FPM.NAME} data'), ('92915','44355','1','12','$.processes','2','0'), ('92916','44355','2','20','1h','0',''), ('92917','44356','1','12','$.pmem','1',''), ('92918','44357','1','12','$.rss','1',''), ('92919','44358','1','12','$.vsize','1',''), ('92920','44362','1','12','$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].first()','0',''), ('92921','44363','1','12','$.[?(@["name"]=="{#RABBITMQ.NAME}")].first()','2','Failed to retrieve process {#RABBITMQ.NAME} data'), ('92922','44364','1','12','$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].first()','0',''), ('92923','44365','1','12','$.processes','2','0'), ('92924','44365','2','20','1h','0',''), ('92925','44366','1','12','$.pmem','1',''), ('92926','44367','1','12','$.rss','1',''), ('92927','44368','1','12','$.vsize','1',''), ('92928','44369','1','12','$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].first()','0',''), ('92929','44370','1','12','$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].first()','0',''), ('92952','44385','1','20','1d','0',''), ('92953','44386','1','20','1d','0',''), ('92954','44387','1','20','1d','0',''), ('92955','44388','1','20','1d','0',''), ('92956','44389','1','20','1h','0',''), ('92957','44390','1','20','1h','0',''), ('92958','44391','1','20','1h','0',''), ('92959','44392','1','5',E'CW_VERSION\\$(.*?)\\$ \\1','0',''), ('92960','44392','2','20','1d','0',''), ('92961','44395','1','20','4h','0',''), ('92962','44396','1','20','4h','0',''), ('92963','44397','1','20','4h','0',''), ('92964','44398','1','20','4h','0',''), ('92965','44399','1','20','4h','0',''), ('92966','44400','1','21','try { var data = JSON.parse(value); } catch (error) { throw ''Failed to parse JSON of EtherLike-MIB discovery.''; } var fields = [''{#SNMPVALUE}'',''{#IFOPERSTATUS}'',''{#IFALIAS}'',''{#IFNAME}'',''{#IFDESCR}'']; data.forEach(function (element) { fields.forEach(function (field) { element[field] = typeof(element[field]) === ''undefined'' ? '''' : element[field]; }); }); return JSON.stringify(data);','0',''), ('92967','44400','2','20','4h','0',''), ('92968','44401','1','20','4h','0',''), ('92969','44402','1','21','try { var sensors = JSON.parse(value); } catch (e) { throw "Failed to parse JSON of temperature discovery."; } var scales = { ''9'': 1, ''8'': 0.001, ''7'': 0.000001 }; var result = sensors.filter(function (sensor) { if (sensor[''{#SENSOR_TYPE}''] !== ''8'' || typeof (scales[sensor[''{#SENSOR_SCALE}'']]) === ''undefined'') { return false; } sensor[''{#SENSOR_SCALE}''] = scales[sensor[''{#SENSOR_SCALE}'']]; return true; }); return JSON.stringify(result);','0',''), ('92970','44402','2','20','4h','0',''), ('92971','44404','1','20','1d','0',''), ('92972','44409','1','10','','0',''), ('92973','44410','1','10','','0',''), ('92974','44411','1','10','','0',''), ('92975','44411','2','1','8','0',''), ('92976','44412','1','10','','0',''), ('92977','44413','1','10','','0',''), ('92978','44414','1','10','','0',''), ('92979','44414','2','1','8','0',''), ('92980','44415','1','1','1000000','0',''), ('92981','44415','2','20','1h','0',''), ('92982','44416','1','20','6h','0',''), ('92983','44417','1','20','6h','0',''), ('92984','44421','1','1','{#SENSOR_SCALE}','0',''), ('92985','44422','1','12','$.edges[?(@.id==''{#ID}'')].first()','0',''), ('92986','44423','1','12','$.gateways[?(@.id==''{#ID}'')].first()','0',''), ('92987','44424','1','12','$.links[?(@.linkId==''{#ID}'')].first()','0',''), ('92988','44425','1','12','$.edgeSDWanPath[?(@.source.linkName==''{#NAME}'' && @.source.deviceName==''{#SOURCE}'' && @.destination.deviceName==''{#DESTINATION}'')].first()','0',''), ('92989','44426','1','12','$.edgeSDWan[?(@.deviceLogicalId==''{#ID}'' && @.edgeId==''{#EDGE.ID}'')].first()','0',''), ('92990','44428','1','12','$.[?(@.fsname==''{#FSNAME}'')].first()','0',''), ('92991','22948','1','12','$.bytes.free','0',''), ('92992','22949','1','12','$.inodes.pfree','0',''), ('92993','22950','1','12','$.bytes.total','0',''), ('92994','22951','1','12','$.bytes.used','0',''), ('92995','22952','1','12','$.bytes.pfree','0',''), ('92996','44429','1','12','$.options','1',''), ('92997','44429','2','5',E'(?:^|,)ro\\b 1','2','0'), ('92998','44431','1','12','$.[?(@.fsname==''{#FSNAME}'')].first()','0',''), ('92999','22908','1','12','$.bytes.free','0',''), ('93000','22909','1','12','$.inodes.pfree','0',''), ('93001','22910','1','12','$.bytes.total','0',''), ('93002','22911','1','12','$.bytes.used','0',''), ('93003','22912','1','12','$.bytes.pfree','0',''), ('93004','44432','1','12','$.options','1',''), ('93005','44432','2','5',E'(?:^|,)read-only\\b 1','2','0'), ('93006','44434','1','12','$.[?(@.fsname==''{#FSNAME}'')].first()','0',''), ('93007','22988','1','12','$.bytes.free','0',''), ('93008','22989','1','12','$.inodes.pfree','0',''), ('93009','22990','1','12','$.bytes.total','0',''), ('93010','22991','1','12','$.bytes.used','0',''), ('93011','22992','1','12','$.bytes.pfree','0',''), ('93012','44435','1','12','$.options','1',''), ('93013','44435','2','5',E'(?:^|,)ro\\b 1','2','0'), ('93014','44438','1','12','$.[?(@.fsname==''{#FSNAME}'')].first()','0',''), ('93015','44439','1','12','$.[?(@.fsname==''{#FSNAME}'')].first()','0',''), ('93016','42288','1','12','$.inodes.pfree','0',''), ('93017','42289','1','12','$.bytes.pused','0',''), ('93018','42290','1','12','$.bytes.total','0',''), ('93019','42291','1','12','$.bytes.used','0',''), ('93020','42303','1','12','$.inodes.pfree','0',''), ('93021','42304','1','12','$.bytes.pused','0',''), ('93022','42305','1','12','$.bytes.total','0',''), ('93023','42306','1','12','$.bytes.used','0',''), ('93024','44440','1','12','$.options','1',''), ('93025','44440','2','5',E'(?:^|,)ro\\b 1','2','0'), ('93026','44441','1','12','$.options','1',''), ('93027','44441','2','5',E'(?:^|,)ro\\b 1','2','0'), ('93028','44443','1','12','$.[?(@.fsname==''{#FSNAME}'')].first()','0',''), ('93029','42374','1','12','$.inodes.pfree','0',''), ('93030','42375','1','12','$.bytes.pused','0',''), ('93031','42376','1','12','$.bytes.total','0',''), ('93032','42377','1','12','$.bytes.used','0',''), ('93033','44444','1','12','$.options','1',''), ('93034','44444','2','5',E'(?:^|,)ro\\b 1','2','0'), ('93035','44446','1','12','$.[?(@.fsname==''{#FSNAME}'')].first()','0',''), ('93036','23068','1','12','$.bytes.free','0',''), ('93037','23069','1','12','$.inodes.pfree','0',''), ('93038','23070','1','12','$.bytes.total','0',''), ('93039','23071','1','12','$.bytes.used','0',''), ('93040','23072','1','12','$.bytes.pfree','0',''), ('93041','44448','1','12','$.[?(@.fsname==''{#FSNAME}'')].first()','0',''), ('93042','22868','1','12','$.bytes.free','0',''), ('93043','22869','1','12','$.inodes.pfree','0',''), ('93044','22870','1','12','$.bytes.total','0',''), ('93045','22871','1','12','$.bytes.used','0',''), ('93046','22872','1','12','$.bytes.pfree','0',''), ('93047','44449','1','12','$.options','1',''), ('93048','44449','2','5',E'(?:^|,)ro\\b 1','2','0'), ('93049','44451','1','12','$.[?(@.fsname==''{#FSNAME}'')].first()','0',''), ('93050','23028','1','12','$.bytes.free','0',''), ('93051','23029','1','12','$.inodes.pfree','0',''), ('93052','23030','1','12','$.bytes.total','0',''), ('93053','23031','1','12','$.bytes.used','0',''), ('93054','23032','1','12','$.bytes.pfree','0',''), ('93055','44452','1','12','$.options','1',''), ('93056','44452','2','5',E'(?:^|,)ro\\b 1','2','0'), ('93057','44454','1','12','$.[?(@.fsname==''{#FSNAME}'')].first()','0',''), ('93058','42506','1','12','$.bytes.pused','0',''), ('93059','42507','1','12','$.bytes.total','0',''), ('93060','42508','1','12','$.bytes.used','0',''), ('93061','44456','1','12','$.[?(@.fsname==''{#FSNAME}'')].first()','0',''), ('93062','42562','1','12','$.bytes.pused','0',''), ('93063','42563','1','12','$.bytes.total','0',''), ('93064','42564','1','12','$.bytes.used','0',''), ('93065','44461','1','12','$.[?(@.name == ''{$SERVER.NAME}'')].first()','3','Could not get server stats.'), ('93066','44462','1','12','$.[''returned'', ''total'']','0',''), ('93067','44463','1','12','$.message','3','Could not get server message.'), ('93068','44463','2','20','1h','0',''), ('93069','44464','1','12','$.state','3','Could not get server state.'), ('93070','44464','2','21','const idx = [ ''Down'', ''Up'', ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('93071','44464','3','20','1h','0',''), ('93072','44465','1','12','$.version','3','Could not get server version.'), ('93073','44465','2','20','1h','0',''), ('93074','44466','1','12','$.[0]','0',''), ('93075','44466','2','20','1h','0',''), ('93076','44467','1','12','$.[1]','0',''), ('93077','44467','2','20','1h','0',''), ('93078','44468','1','20','2h','0',''), ('93079','44469','1','12','$.activeServices','2','[]'), ('93080','44469','2','20','1h','0',''), ('93081','44470','1','12','$.agents','2','[]'), ('93082','44470','2','20','1h','0',''), ('93083','44471','1','12','$.statuses','2','[]'), ('93084','44471','2','20','1h','0',''), ('93085','44472','1','12','$.activeServices.[?(@.serviceName == ''{#SERVICE.NAME}'')]','1',''), ('93086','44472','2','12','$.[?(@.serviceJob == ''{#SERVICE.JOB}'')].first()','1',''), ('93087','44473','1','12','$.agents.[?(@.nodeid == ''{#AGENT.NAME}'')].first()','1',''), ('93088','44474','1','12','$.statuses.[?(@.jobId == ''{#JOB.ID}'')].first()','1',''), ('93089','44475','1','12','$.statusByJobs.completed','0',''), ('93090','44475','2','20','1h','0',''), ('93091','44476','1','12','$.statusByJobs.error','0',''), ('93092','44476','2','20','1h','0',''), ('93093','44477','1','12','$.statusByJobs.executed','0',''), ('93094','44477','2','20','1h','0',''), ('93095','44478','1','12','$.statusByJobs.waitCondition','0',''), ('93096','44478','2','20','1h','0',''), ('93097','44479','1','12','$.statusByJobs.waitHost','0',''), ('93098','44479','2','20','1h','0',''), ('93099','44480','1','12','$.statusByJobs.waitResource','0',''), ('93100','44480','2','20','1h','0',''), ('93101','44481','1','12','$.statusByJobs.waitWorkload','0',''), ('93102','44481','2','20','1h','0',''), ('93103','44482','1','12','$.status','0',''), ('93104','44482','2','21','const idx = [ ''Not Ok'', ''Ok'', ''Completed Ok'', ''Ended Late'' ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('93105','44482','3','20','1h','0',''), ('93106','44483','1','12','$.status','0',''), ('93107','44483','2','21','const idx = [ ''Available'', ''Unavailable'', ''Disabled'', ''Disable'', ''Discovering'', ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('93108','44483','3','20','1h','0',''), ('93109','44484','1','12','$.version','2','Unknown'), ('93110','44484','2','20','1h','0',''), ('93111','44485','1','12','$.held','0',''), ('93112','44485','2','21','const idx = [ ''false'', ''true'', ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('93113','44486','1','12','$.numberOfRuns','0',''), ('93114','44486','2','20','1h','0',''), ('93115','44487','1','12','$.status','0',''), ('93116','44487','2','21','const idx = [ ''Ended OK'', ''Ended Not OK'', ''Wait User'', ''Wait Resource'', ''Wait Host'', ''Wait Workload'', ''Wait Condition'', ''Executing'' ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('93117','44487','3','20','1h','0',''), ('93118','44488','1','12','$.type','0',''), ('93119','44488','2','21','const idx = [ ''Command'', ''Script'', ''File Transfer'', ''File Watcher'', ''Database'', ''Hadoop'', ''Dummy'', ''Folder'', ''Job'' ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('93120','44488','3','20','1h','0',''), ('93121','44489','1','12','$.meters','0',''), ('93122','44490','1','12','$.timers','0',''), ('93123','44491','1','12','$.gauges','0',''), ('93124','44492','1','12','$.computer.[?(@.displayName == "{#DISPLAY_NAME}")].first()','1',''), ('93125','44492','2','20','1h','0',''), ('93126','44493','1','12','$.jobs.[?(@.name == "{#NAME}")].first()','1',''), ('93127','44493','2','20','30m','0',''), ('93128','44495','1','12','$.error','2',''), ('93129','44495','2','20','1h','0',''), ('93130','44496','1','12','$.jobs_states.data','0',''), ('93131','44496','2','20','6h','0',''), ('93132','44497','1','12','$.proxies.data','0',''), ('93133','44497','2','20','6h','0',''), ('93134','44498','1','12','$.repositories_states.data','0',''), ('93135','44498','2','20','6h','0',''), ('93136','44499','1','12','$.sessions.data','0',''), ('93137','44499','2','21','obj = JSON.parse(value, function (key, value) { if (key == ''creationTime'') return new Date(value).toDateString(); return value; }); return JSON.stringify(obj);','0',''), ('93138','44499','3','20','6h','0',''), ('93139','44500','1','12','$.jobs_states.data.[?(@.id==''{#ID}'')].first()','0',''), ('93140','44501','1','12','$.proxies.data.[?(@.id==''{#ID}'')].first()','0',''), ('93141','44502','1','12','$.managedServers.data.[?(@.id==''{#HOSTID}'')].first()','0',''), ('93142','44503','1','12','$.repositories_states.data.[?(@.id==''{#ID}'')].first()','0',''), ('93143','44504','1','12','$.sessions.data.[?(@.id==''{#ID}'')].first()','1',''), ('93144','44505','1','12','$.lastResult','0',''), ('93145','44506','1','12','$.status','0',''), ('93146','44507','1','12','$.server.maxTaskCount','0',''), ('93147','44508','1','12','$.name','0',''), ('93148','44509','1','12','$.type','0',''), ('93149','44510','1','12','$.usedSpaceGB','0',''), ('93150','44511','1','12','$.freeGB','0',''), ('93151','44512','1','12','$.result.message','0',''), ('93152','44513','1','12','$.progressPercent','0',''), ('93153','44514','1','12','$.result.result','0',''), ('93154','44515','1','12','$.state','0',''), ('93155','44517','1','12','$.JobStatistics.FailedJobRuns','1',''), ('93156','44517','2','20','1h','0',''), ('93157','44518','1','12','$.error','2',''), ('93158','44518','2','20','1h','0',''), ('93159','44519','1','12','$.JobStatistics.RunningJobs','1',''), ('93160','44519','2','20','1h','0',''), ('93161','44520','1','12','$.JobStatistics.ScheduledBackupJobs','1',''), ('93162','44520','2','20','1h','0',''), ('93163','44521','1','12','$.JobStatistics.ScheduledJobs','1',''), ('93164','44521','2','20','1h','0',''), ('93165','44522','1','12','$.JobStatistics.ScheduledReplicaJobs','1',''), ('93166','44522','2','20','1h','0',''), ('93167','44523','1','12','$.JobStatistics.TotalJobRuns','1',''), ('93168','44523','2','20','1h','0',''), ('93169','44524','1','12','$.JobStatistics.WarningsJobRuns','1',''), ('93170','44524','2','20','1h','0',''), ('93171','44525','1','12','$.backupFiles.Refs','0',''), ('93172','44525','2','20','6h','0',''), ('93173','44526','1','12','$.[''{#NAME}''].BackupFile.CompressRatio','1',''), ('93174','44527','1','12','$.[''{#NAME}''].BackupFile.DataSize','1',''), ('93175','44528','1','12','$.[''{#NAME}''].BackupFile.DeduplicationRatio','1',''), ('93176','44529','1','12','$.[''{#NAME}''].BackupFile.BackupSize','1',''), ('93177','44532','1','12','$.health.summary','0',''), ('93178','44532','2','20','1h','0',''), ('93179','44533','1','12','$.metrics.sessions_count.average','0',''), ('93180','44534','1','12','$.metrics.tempdb_log_size.maximum','1',''), ('93181','44534','2','1','1024','0',''), ('93182','44535','1','12','$.metrics.tempdb_log_used_percent.maximum','1',''), ('93183','44536','1','12','$.metrics.tempdb_data_size.maximum','1',''), ('93184','44536','2','1','1024','0',''), ('93185','44537','1','12','$.metrics.xtp_storage_percent.average','0',''), ('93186','44538','1','12','$.metrics.storage.maximum','1',''), ('93187','44539','1','12','$.metrics.storage_percent.maximum','1',''), ('93188','44540','1','12','$.metrics.full_backup_size_bytes.maximum','0',''), ('93189','44540','2','20','1d','0',''), ('93190','44541','1','12','$.metrics.log_backup_size_bytes.maximum','0',''), ('93191','44541','2','20','1d','0',''), ('93192','44542','1','12','$.metrics.diff_backup_size_bytes.maximum','0',''), ('93193','44542','2','20','1d','0',''), ('93194','44543','1','12','$.metrics.allocated_data_storage.average','1',''), ('93195','44544','1','12','$.metrics.sessions_percent.average','0',''), ('93196','44545','1','12','$.metrics.sqlserver_process_memory_percent.maximum','1',''), ('93197','44546','1','12','$.health.availabilityState','2','3'), ('93198','44546','2','25','Available 0','0',''), ('93199','44546','3','25','Degraded 1','0',''), ('93200','44546','4','25','Unavailable 2','0',''), ('93201','44546','5','25','Unknown 3','0',''), ('93202','44546','6','13','0 3','2','3'), ('93203','44546','7','20','1h','0',''), ('93204','44547','1','12','$.metrics.sqlserver_process_core_percent.maximum','1',''), ('93205','44548','1','12','$.metrics.log_write_percent.average','0',''), ('93206','44549','1','12','$.metrics.blocked_by_firewall.total','0',''), ('93207','44550','1','12','$.metrics.deadlock.total','0',''), ('93208','44551','1','12','$.metrics.physical_data_read_percent.average','0',''), ('93209','44552','1','12','$.errors','0',''), ('93210','44552','2','20','1h','0',''), ('93211','44553','1','12','$.metrics.cpu_used.average','1',''), ('93212','44554','1','12','$.metrics.cpu_percent.average','0',''), ('93213','44555','1','12','$.metrics.cpu_limit.average','1',''), ('93214','44556','1','12','$.metrics.connection_successful.total','0',''), ('93215','44557','1','12','$.metrics.connection_failed.total','0',''), ('93216','44558','1','12','$.metrics.workers_percent.average','0',''), ('93217','44559','1','12','$.metrics.app_cpu_billed.total','1',''), ('93218','44560','1','12','$.metrics.log_write_percent.average','0',''), ('93219','44561','1','12','$.metrics.tempdb_log_size.maximum','1',''), ('93220','44561','2','1','1024','0',''), ('93221','44562','1','12','$.metrics.tempdb_log_used_percent.maximum','1',''), ('93222','44563','1','12','$.metrics.tempdb_data_size.maximum','1',''), ('93223','44563','2','1','1024','0',''), ('93224','44564','1','12','$.metrics.xtp_storage_percent.average','0',''), ('93225','44565','1','12','$.metrics.storage.maximum','1',''), ('93226','44566','1','12','$.metrics.storage_percent.maximum','1',''), ('93227','44567','1','12','$.metrics.allocated_data_storage.average','1',''), ('93228','44568','1','12','$.metrics.sessions_percent.average','0',''), ('93229','44569','1','12','$.metrics.sqlserver_process_memory_percent.maximum','1',''), ('93230','44570','1','12','$.metrics.sqlserver_process_core_percent.maximum','1',''), ('93231','44571','1','12','$.metrics.deadlock.total','0',''), ('93232','44572','1','12','$.metrics.blocked_by_firewall.total','0',''), ('93233','44573','1','12','$.metrics.app_cpu_percent.average','1',''), ('93234','44574','1','12','$.metrics.physical_data_read_percent.average','0',''), ('93235','44575','1','12','$.errors','0',''), ('93236','44575','2','20','1h','0',''), ('93237','44576','1','12','$.metrics.cpu_used.average','1',''), ('93238','44577','1','12','$.metrics.cpu_percent.average','0',''), ('93239','44578','1','12','$.metrics.cpu_limit.average','1',''), ('93240','44579','1','12','$.metrics.connection_successful.total','0',''), ('93241','44580','1','12','$.metrics.connection_failed.total','0',''), ('93242','44581','1','12','$.health.availabilityState','2','3'), ('93243','44581','2','25','Available 0','0',''), ('93244','44581','3','25','Degraded 1','0',''), ('93245','44581','4','25','Unavailable 2','0',''), ('93246','44581','5','25','Unknown 3','0',''), ('93247','44581','6','13','0 3','2','3'), ('93248','44581','7','20','1h','0',''), ('93249','44582','1','12','$.health.summary','0',''), ('93250','44582','2','20','1h','0',''), ('93251','44583','1','12','$.metrics.app_memory_percent.average','1',''), ('93252','44584','1','12','$.metrics.workers_percent.average','0',''), ('93253','44585','1','12','$.resources.value','0',''), ('93254','44585','2','20','6h','0',''), ('93255','44591','1','12','$..[''{#DEST_NAME}''].error.first()','0',''), ('93256','44591','2','20','1h','0',''), ('93257','44592','1','12','$..[''{#DEST_NAME}''].log_sequence.first()','0',''), ('93258','44593','1','12','$..[''{#DEST_NAME}''].status.first()','0',''), ('93259','44593','2','20','1h','0',''), ('93260','44594','1','12','$..{#DBNAME}.force_logging.first()','0',''), ('93261','44594','2','20','15m','0',''), ('93262','44595','1','12','$..{#DBNAME}.log_mode.first()','0',''), ('93263','44595','2','20','15m','0',''), ('93264','44596','1','12','$..{#DBNAME}.open_mode.first()','0',''), ('93265','44596','2','20','15m','0',''), ('93266','44597','1','12','$..{#DBNAME}.role.first()','0',''), ('93267','44597','2','20','15m','0',''), ('93268','44598','1','12','$..[''{#DGNAME}''].free_bytes.first()','0',''), ('93269','44599','1','12','$..[''{#DGNAME}''].total_bytes.first()','0',''), ('93270','44600','1','12','$..[''{#DGNAME}''].used_pct.first()','0',''), ('93271','44601','1','12','$..{#DBNAME}.open_mode.first()','0',''), ('93272','44601','2','20','15m','0',''), ('93273','44602','1','12','$..[''{#TABLESPACE}''].file_bytes.first()','0',''), ('93274','44603','1','12','$..[''{#TABLESPACE}''].free_bytes.first()','0',''), ('93275','44604','1','12','$..[''{#TABLESPACE}''].max_bytes.first()','0',''), ('93276','44605','1','12','$..[''{#TABLESPACE}''].status.first()','0',''), ('93277','44606','1','12','$..[''{#TABLESPACE}''].used_bytes.first()','0',''), ('93278','44607','1','12','$..[''{#TABLESPACE}''].used_file_pct.first()','0',''), ('93279','44608','1','12','$..[''{#TABLESPACE}''].used_pct_max.first()','0',''), ('93280','44609','1','12','$.first()','1',''), ('93281','44610','1','12','$.first()','1',''), ('93282','44611','1','12','$.first()','1',''), ('93283','44612','1','12','$.first()','1',''), ('93284','44613','1','12','$.first()','1',''), ('93285','44614','1','12','$.ERROR','0',''), ('93286','44614','2','20','1h','0',''), ('93287','44615','1','12','$.LOG_SEQUENCE','0',''), ('93288','44616','1','12','$.STATUS','0',''), ('93289','44616','2','20','1h','0',''), ('93290','44617','1','12','$.FREE_SIZE_BYTE','0',''), ('93291','44618','1','12','$.SIZE_BYTE','0',''), ('93292','44619','1','12','$.USED_PERCENT','0',''), ('93293','44620','1','12','$.FORCE_LOGGING','0',''), ('93294','44620','2','20','15m','0',''), ('93295','44621','1','12','$.LOG_MODE','0',''), ('93296','44621','2','20','15m','0',''), ('93297','44622','1','12','$.OPEN_MODE','0',''), ('93298','44622','2','20','15m','0',''), ('93299','44623','1','12','$.ROLE','0',''), ('93300','44623','2','20','15m','0',''), ('93301','44624','1','12','$.OPEN_MODE','0',''), ('93302','44624','2','20','15m','0',''), ('93303','44625','1','12','$.FILE_BYTES','0',''), ('93304','44626','1','12','$.FREE_BYTES','0',''), ('93305','44627','1','12','$.MAX_BYTES','0',''), ('93306','44628','1','12','$.STATUS','0',''), ('93307','44629','1','12','$.USED_BYTES','0',''), ('93308','44630','1','12','$.USED_FILE_PCT','0',''), ('93309','44631','1','12','$.USED_PCT_MAX','0',''), ('93314','42195','2','20','12h','0',''), ('93315','42235','2','20','12h','0',''), ('93316','42327','2','20','12h','0',''), ('93317','44634','1','20','1d','0',''), ('93318','44635','1','20','1d','0',''), ('93319','44636','1','12','$.[?(@.id=="{#NODE.ID}")].first()','0',''), ('93320','44637','1','12','$.[?(@.name=="{#PROXY.NAME}")].first()','0',''), ('93321','44638','1','12','$.[?(@.id=="{#NODE.ID}")].first()','0',''), ('93322','44639','1','12','$.[?(@.name=="{#PROXY.NAME}")].first()','0',''), ('93323','44640','1','12','$.data.ha[?(@.id=="{#NODE.ID}")].first()','0',''), ('93324','44641','1','12','$.[?(@.name=="{#PROXY.NAME}")].first()','0',''), ('93325','44644','1','12','$.[?(@["name"]=="{#NAME}")].first()','2','Failed to retrieve process {#NAME} data'), ('93326','44645','1','12','$.lck','1',''), ('93327','44646','1','12','$.processes','2','0'), ('93328','44646','2','20','1h','0',''), ('93329','44647','1','12','$.page_faults','1',''), ('93330','44648','1','12','$.pmem','1',''), ('93331','44649','1','12','$.rss','1',''), ('93332','44650','1','12','$.swap','1',''), ('93333','44651','1','12','$.threads','1',''), ('93334','44652','1','12','$.vsize','1',''), ('93335','44653','1','20','1d','0',''), ('93336','44655','1','20','1d','0',''), ('93337','44657','1','20','1d','0',''), ('93338','44659','1','20','1d','0',''), ('93339','44665','1','20','12h','0',''), ('93340','44666','1','20','12h','0',''), ('93342','44667','1','26','-1','2','0'), ('93343','44668','1','20','12h','0',''), ('93344','44669','1','20','12h','0',''), ('93345','44670','1','1','0.01','0',''), ('93346','44671','1','20','12h','0',''), ('93347','44678','1','12','$.bad_block_rate.value','0',''), ('93348','44678','2','20','6h','0',''), ('93349','44679','1','12','$.exit_status','0',''), ('93350','44679','2','20','6h','0',''), ('93351','44680','1','12','$.temperature','0',''), ('93352','44680','2','20','6h','0',''), ('93353','44681','1','12','$.serial_number','0',''), ('93354','44681','2','20','6h','0',''), ('93355','44682','1','12','$.percentage_used','0',''), ('93356','44682','2','20','6h','0',''), ('93357','44683','1','12','$.model_name','0',''), ('93358','44683','2','20','6h','0',''), ('93359','44684','1','12','$.media_errors','0',''), ('93360','44684','2','20','6h','0',''), ('93361','44685','1','12','$.power_on_time','0',''), ('93362','44685','2','20','6h','0',''), ('93363','44686','1','12','$.error','0',''), ('93364','44686','2','20','1h','0',''), ('93365','44687','1','12','$.power_cycle_count.value','0',''), ('93366','44687','2','20','6h','0',''), ('93367','44688','1','12','$.critical_warning','0',''), ('93368','44688','2','20','6h','0',''), ('93369','44689','1','12','$.start_stop_count.value','0',''), ('93370','44689','2','20','6h','0',''), ('93371','44690','1','12','$.spin_up_time.value','0',''), ('93372','44690','2','20','6h','0',''), ('93373','44691','1','12','$.seek_error_rate.value','0',''), ('93374','44691','2','20','6h','0',''), ('93375','44692','1','12','$.reported_uncorrect.value','0',''), ('93376','44692','2','20','6h','0',''), ('93377','44693','1','12','$.reallocated_sector_ct.value','0',''), ('93378','44693','2','20','6h','0',''), ('93379','44694','1','12','$.raw_read_error_rate.value','0',''), ('93380','44694','2','20','6h','0',''), ('93381','44695','1','12','$.program_fail_count_chip.value','0',''), ('93382','44695','2','20','6h','0',''), ('93383','44696','1','12','$.self_test_passed','0',''), ('93384','44696','2','21','const idx = { ''true'': 1, ''false'': 2, ''null'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('93385','44699','1','12','$.bad_block_rate.value','0',''), ('93386','44699','2','20','6h','0',''), ('93387','44700','1','12','$.exit_status','0',''), ('93388','44700','2','20','6h','0',''), ('93389','44701','1','12','$.temperature','0',''), ('93390','44701','2','20','6h','0',''), ('93391','44702','1','12','$.serial_number','0',''), ('93392','44702','2','20','6h','0',''), ('93393','44703','1','12','$.percentage_used','0',''), ('93394','44703','2','20','6h','0',''), ('93395','44704','1','12','$.model_name','0',''), ('93396','44704','2','20','6h','0',''), ('93397','44705','1','12','$.media_errors','0',''), ('93398','44705','2','20','6h','0',''), ('93399','44706','1','12','$.power_on_time','0',''), ('93400','44706','2','20','6h','0',''), ('93401','44707','1','12','$.error','0',''), ('93402','44707','2','20','1h','0',''), ('93403','44708','1','12','$.power_cycle_count.value','0',''), ('93404','44708','2','20','6h','0',''), ('93405','44709','1','12','$.critical_warning','0',''), ('93406','44709','2','20','6h','0',''), ('93407','44710','1','12','$.start_stop_count.value','0',''), ('93408','44710','2','20','6h','0',''), ('93409','44711','1','12','$.spin_up_time.value','0',''), ('93410','44711','2','20','6h','0',''), ('93411','44712','1','12','$.seek_error_rate.value','0',''), ('93412','44712','2','20','6h','0',''), ('93413','44713','1','12','$.reported_uncorrect.value','0',''), ('93414','44713','2','20','6h','0',''), ('93415','44714','1','12','$.reallocated_sector_ct.value','0',''), ('93416','44714','2','20','6h','0',''), ('93417','44715','1','12','$.raw_read_error_rate.value','0',''), ('93418','44715','2','20','6h','0',''), ('93419','44716','1','12','$.program_fail_count_chip.value','0',''), ('93420','44716','2','20','6h','0',''), ('93421','44717','1','12','$.self_test_passed','0',''), ('93422','44717','2','21','const idx = { ''true'': 1, ''false'': 2, ''null'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('93423','44718','1','12','$.pids_stats.current','0',''), ('93424','44719','1','21','var input = JSON.parse(value); if (typeof input.State.Health !== ''object'' || typeof input.State.Health === ''undefined'') { return 4; } return ([''starting'', ''unhealthy'', ''healthy'', ''none''].indexOf(input.State.Health.Status) + 1);','0',''), ('93425','44719','2','13','1 4','2','4'), ('93426','44720','1','12','$.State.Health.FailingStreak','1',''), ('93427','44720','2','20','1h','0',''), ('93428','44721','1','12','$..[?(@.name==''{#ES.NODE}'')].first()','0',''), ('93429','44722','1','12','$.beans[?(@.name=~''Hadoop:service=NameNode,name=*'')]','2','[]'), ('93430','44723','1','12','$.beans[?(@.name=~''Hadoop:service=ResourceManager,name=*'')]','2','[]'), ('93431','44724','1','12','$.[?(@.HostName==''{#HOSTNAME}'')].first()','1',''), ('93432','44725','1','12','$.[?(@.HostName==''{#HOSTNAME}'')].first()','1',''), ('93433','44726','1','12','$.[?(@.pxname == ''{#PXNAME}'' && @.svname == ''{#SVNAME}'')].first()','0',''), ('93434','44727','1','12','$.[?(@.pxname == ''{#PXNAME}'' && @.svname == ''{#SVNAME}'')].first()','0',''), ('93435','44728','1','12','$.[?(@.pxname == ''{#PXNAME}'' && @.svname == ''{#SVNAME}'')].first()','0',''), ('93436','44729','1','12','$.[?(@.pxname == ''{#PXNAME}'' && @.svname == ''{#SVNAME}'')].first()','0',''), ('93437','44730','1','12','$.[?(@.pxname == ''{#PXNAME}'' && @.svname == ''{#SVNAME}'')].first()','0',''), ('93438','44731','1','12','$.[?(@.pxname == ''{#PXNAME}'' && @.svname == ''{#SVNAME}'')].first()','0',''), ('93439','39932','2','10','','0',''), ('93440','39933','2','10','','0',''), ('93441','44732','1','22','container_cpu_usage_seconds_total{container!="", container!="POD", pod="{#NAME}", namespace="{#NAMESPACE}"} function sum','1',''), ('93442','44732','2','10','','0',''), ('93443','44733','1','12','$.nodes..filternode','0',''), ('93444','44734','1','12','$.Pods[?(@.hostname == "{#NAME}")].containers.requests.memory.sum()','0',''), ('93445','44735','1','12','$.Pods[?(@.hostname == "{#NAME}")].containers.requests.cpu.sum()','0',''), ('93446','44736','1','12','$.Pods[?(@.hostname == "{#NAME}")].containers.limits.memory.sum()','0',''), ('93447','44737','1','12','$.Pods[?(@.hostname == "{#NAME}")].containers.limits.cpu.sum()','0',''), ('93448','44738','1','12','$.nodes..[?(@.metadata.name == "{#NAME}")].first()','0',''), ('93449','44739','1','12','$.status.addresses[?(@.type == "ExternalIP")].address.first()','1',''), ('93450','44739','2','20','3h','0',''), ('93451','44740','1','12','$.status.nodeInfo.containerRuntimeVersion','0',''), ('93452','44740','2','20','3h','0',''), ('93453','44741','1','12','$.metadata.creationTimestamp','1',''), ('93454','44741','2','21','return Math.floor((Date.now() - new Date(value)) / 1000);','0',''), ('93455','44742','1','12','$.status.roles','0',''), ('93456','44742','2','20','3h','0',''), ('93457','44743','1','12','$.status.nodeInfo.kernelVersion','0',''), ('93458','44743','2','20','3h','0',''), ('93459','44744','1','12','$.status.nodeInfo.operatingSystem','0',''), ('93460','44744','2','20','3h','0',''), ('93461','44745','1','12','$.status.nodeInfo.kubeProxyVersion','0',''), ('93462','44745','2','20','3h','0',''), ('93463','44746','1','12','$.status.nodeInfo.kubeletVersion','0',''), ('93464','44746','2','20','3h','0',''), ('93465','44747','1','12','$.status.nodeInfo.kernelVersion','0',''), ('93466','44747','2','20','3h','0',''), ('93467','44748','1','12','$.status.nodeInfo.architecture','0',''), ('93468','44748','2','20','3h','0',''), ('93469','44749','1','12','$.status.addresses[?(@.type == "InternalIP")].address.first()','1',''), ('93470','44749','2','20','3h','0',''), ('93471','44750','1','12','$.status.conditions[?(@.type == "Ready")].status.first()','1',''), ('93472','44750','2','21','return [''True'', ''False'', ''Unknown''].indexOf(value) + 1 || ''Problem with status processing in JS'';','0',''), ('93473','44751','1','12','$.status.conditions[?(@.type == "PIDPressure")].status.first()','1',''), ('93474','44751','2','21','return [''True'', ''False'', ''Unknown''].indexOf(value) + 1 || ''Problem with status processing in JS'';','0',''), ('93475','44752','1','12','$.status.conditions[?(@.type == "NetworkUnavailable")].status.first()','1',''), ('93476','44752','2','21','return [''True'', ''False'', ''Unknown''].indexOf(value) + 1 || ''Problem with status processing in JS'';','0',''), ('93477','44753','1','12','$.status.conditions[?(@.type == "MemoryPressure")].status.first()','1',''), ('93478','44753','2','21','return [''True'', ''False'', ''Unknown''].indexOf(value) + 1 || ''Problem with status processing in JS'';','0',''), ('93479','44754','1','12','$.status.conditions[?(@.type == "DiskPressure")].status.first()','1',''), ('93480','44754','2','21','return [''True'', ''False'', ''Unknown''].indexOf(value) + 1 || ''Problem with status processing in JS'';','0',''), ('93481','44755','1','12','$.status.capacity.pods','0',''), ('93482','44756','1','12','$.status.capacity.memory','0',''), ('93483','44757','1','12','$.status.capacity.cpu','0',''), ('93484','44758','1','12','$.status.allocatable.pods','0',''), ('93485','44759','1','12','$.status.allocatable.memory','0',''), ('93486','44760','1','12','$.status.allocatable.cpu','0',''), ('93487','44761','1','12','$.status.podsCount','0',''), ('93488','44762','1','23','kube_persistentvolume_info{persistentvolume=~"{$KUBE.LLD.FILTER.PV.MATCHES}", persistentvolume!~"{$KUBE.LLD.FILTER.PV.NOT_MATCHES}"}','0',''), ('93489','44762','2','21','var input = JSON.parse(value), output = []; input.forEach(function (metric) { output.push({ ''{#NAME}'': metric.labels.persistentvolume }); }); if (output.length > 0) { output.push({ ''{#SINGLETON}'': '''' }); } return JSON.stringify(output);','0',''), ('93490','44762','3','20','3h','0',''), ('93491','44763','1','23','{__name__=~"^kube_deployment_(spec_replicas|status_replicas_available)$", namespace="{#NAMESPACE}", deployment="{#NAME}"}','0',''), ('93492','44763','2','21','var data = JSON.parse(value), replicas_desired, replicas_available; if (data.length !== 2) { throw ''Incorrect length of JSON (must be 2). Actual length: '' + data.length; } JSON.parse(value).forEach(function (item) { if (item.name === ''kube_deployment_spec_replicas'') { replicas_desired = item.value; } if (item.name === ''kube_deployment_status_replicas_available'') { replicas_available = item.value; } }); return Math.abs(replicas_desired - replicas_available);','0',''), ('93493','44764','1','22','kube_persistentvolume_capacity_bytes{persistentvolume="{#NAME}"} value ','1',''), ('93494','44765','1','22','kube_persistentvolume_status_phase{persistentvolume=~"{$KUBE.LLD.FILTER.PV.MATCHES}", persistentvolume!~"{$KUBE.LLD.FILTER.PV.NOT_MATCHES}", phase="Available"} function sum','1',''), ('93495','44766','1','22','kube_persistentvolume_status_phase{persistentvolume=~"{$KUBE.LLD.FILTER.PV.MATCHES}", persistentvolume!~"{$KUBE.LLD.FILTER.PV.NOT_MATCHES}", phase="Bound"} function sum','1',''), ('93496','44767','1','22','kube_persistentvolume_status_phase{persistentvolume=~"{$KUBE.LLD.FILTER.PV.MATCHES}", persistentvolume!~"{$KUBE.LLD.FILTER.PV.NOT_MATCHES}", phase="Failed"} function sum','1',''), ('93497','44768','1','22','kube_persistentvolume_status_phase{persistentvolume=~"{$KUBE.LLD.FILTER.PV.MATCHES}", persistentvolume!~"{$KUBE.LLD.FILTER.PV.NOT_MATCHES}", phase="Pending"} function sum','1',''), ('93498','44769','1','22','kube_persistentvolume_status_phase{persistentvolume=~"{$KUBE.LLD.FILTER.PV.MATCHES}", persistentvolume!~"{$KUBE.LLD.FILTER.PV.NOT_MATCHES}", phase="Released"} function sum','1',''), ('93499','44770','1','22','kube_persistentvolume_status_phase{persistentvolume="{#NAME}"} == 1 label phase','1',''), ('93500','44770','2','21','return [''Available'', ''Bound'', ''Failed'', ''Lost'', ''Pending'', ''Released''].indexOf(value) + 1 || ''Problem with status processing in JS, no such PV status: '' + value;','0',''), ('93501','44771','1','22','kube_persistentvolumeclaim_status_phase{namespace="{#NAMESPACE}", phase="Bound"} function sum','1',''), ('93502','44772','1','22','kube_persistentvolumeclaim_status_phase{namespace="{#NAMESPACE}", phase="Lost"} function sum','1',''), ('93503','44773','1','22','kube_persistentvolumeclaim_status_phase{namespace="{#NAMESPACE}", phase="Pending"} function sum','1',''), ('93504','44774','1','22','kube_persistentvolumeclaim_status_phase{namespace="{#NAMESPACE}", persistentvolumeclaim="{#NAME}"} == 1 label phase','1',''), ('93505','44774','2','21','return [''Available'', ''Bound'', ''Failed'', ''Lost'', ''Pending'', ''Released''].indexOf(value) + 1 || ''Problem with status processing in JS, no such PVC status: '' + value;','0',''), ('93506','44775','1','23','{__name__=~"^kube_replicaset_(spec_replicas|status_ready_replicas)$", namespace="{#NAMESPACE}", replicaset="{#NAME}"}','0',''), ('93507','44775','2','21','var data = JSON.parse(value), replicas_desired, replicas_ready; if (data.length !== 2) { throw ''Incorrect length of JSON (must be 2). Actual length: '' + data.length; } JSON.parse(value).forEach(function (item) { if (item.name === ''kube_replicaset_spec_replicas'') { replicas_desired = item.value; } if (item.name === ''kube_replicaset_status_ready_replicas'') { replicas_ready = item.value; } }); return Math.abs(replicas_desired - replicas_ready);','0',''), ('93508','44776','1','23','{__name__=~"^kube_statefulset_(status_replicas|status_replicas_ready)$", namespace="{#NAMESPACE}", statefulset="{#NAME}"}','0',''), ('93509','44776','2','21','var data = JSON.parse(value), replicas, replicas_ready; if (data.length !== 2) { throw ''Incorrect length of JSON (must be 2). Actual length: '' + data.length; } JSON.parse(value).forEach(function (item) { if (item.name === ''kube_statefulset_status_replicas'') { replicas = item.value; } if (item.name === ''kube_statefulset_status_replicas_ready'') { replicas_ready = item.value; } }); return Math.abs(replicas - replicas_ready);','0',''), ('93510','44777','1','12','$[''{#NAME}'']','0',''), ('93511','44778','1','12','$[''{#NAME}'']','0',''), ('93512','44779','1','12','$[''{#UPSTREAM}''].peers[?(@.server == ''{#PEER}'')].first()','0',''), ('93513','44780','1','12','$[''{#NAME}'']','0',''), ('93514','44781','1','12','$[''{#NAME}'']','0',''), ('93515','44782','1','12','$[''{#NAME}'']','0',''), ('93516','44783','1','12','$[''{#UPSTREAM}''].peers[?(@.server == ''{#PEER}'')].first()','0',''), ('93517','44784','1','12','$[''{#NAME}'']','0',''), ('93518','44791','1','12','$.data.connector_queue','3','No "connector" processes started. Please check "StartConnectors" parameter in the server configuration file.'), ('93519','44792','1','12','$.data.process[''connector manager''].busy.avg','3','No "connector manager" processes started.'), ('93520','44793','1','12','$.data.process[''connector worker''].busy.avg','3','No "connector worker" processes started.'), ('93521','44794','1','12','$.{#TYPE}.[?(@.remote_socket_address == "{#ADDRESS}")].first()','1',''), ('93522','44797','1','12','$.error','2',''), ('93523','44797','2','20','1h','0',''), ('93524','44798','1','12','$.requests.AutoscaleMaxThroughput.maximum','1',''), ('93525','44799','1','12','$.requests.PhysicalPartitionThroughputInfo.maximum','1',''), ('93526','44800','1','12','$.requests.TotalRequestUnits.total','1',''), ('93527','44801','1','12','$.availability.ServiceAvailability.average','1',''), ('93528','44802','1','12','$.requests.ServerSideLatencyGateway.average','1',''), ('93529','44802','2','1','0.001','0',''), ('93530','44803','1','12','$.requests.ServerSideLatencyDirect.average','1',''), ('93531','44803','2','1','0.001','0',''), ('93532','44804','1','12','$.requests.ServerSideLatency.average','1',''), ('93533','44804','2','1','0.001','0',''), ('93534','44805','1','12','$.requests.ReplicationLatency.average','1',''), ('93535','44805','2','1','0.001','0',''), ('93536','44806','1','12','$.requests.ProvisionedThroughput.maximum','1',''), ('93537','44807','1','12','$.requests.NormalizedRUConsumption.maximum','1',''), ('93538','44808','1','12','$.requests.PhysicalPartitionSizeInfo.maximum','1',''), ('93539','44809','1','12','$.error','2',''), ('93540','44809','2','20','1h','0',''), ('93541','44810','1','12','$.requests.MongoRequestCharge.total','1',''), ('93542','44811','1','12','$.requests.MongoRequests.count','1',''), ('93543','44812','1','12','$.requests.MetadataRequests.count','1',''), ('93544','44813','1','12','$.requests.IndexUsage.total','1',''), ('93545','44814','1','12','$.requests.DocumentQuota.total','1',''), ('93546','44815','1','12','$.requests.DocumentCount.total','1',''), ('93547','44816','1','12','$.requests.DataUsage.total','1',''), ('93548','44817','1','12','$.requests.TotalRequests.count','1',''), ('93549','44818','1','12','$.resources.value','0',''), ('93550','44818','2','20','6h','0',''), ('93551','44819','1','20','6h','0',''), ('93552','44821','1','12','$.storageAccount.SuccessServerLatency.average','1',''), ('93553','44821','2','1','0.001','0',''), ('93554','44821','3','20','3h','0',''), ('93555','44822','1','12','$.queueServices.QueueCount.average','1',''), ('93556','44822','2','20','3h','0',''), ('93557','44823','1','12','$.queueServices.Egress.total','1',''), ('93558','44823','2','20','3h','0',''), ('93559','44824','1','12','$.queueServices.Ingress.total','1',''), ('93560','44824','2','20','3h','0',''), ('93561','44825','1','12','$.queueServices.QueueMessageCount.average','1',''), ('93562','44825','2','20','3h','0',''), ('93563','44826','1','12','$.queueServices.queue.SuccessE2ELatency.average','1',''), ('93564','44826','2','1','0.001','0',''), ('93565','44826','3','20','3h','0',''), ('93566','44827','1','12','$.queueServices.SuccessServerLatency.average','1',''), ('93567','44827','2','1','0.001','0',''), ('93568','44827','3','20','3h','0',''), ('93569','44828','1','12','$.queueServices.Transactions.total','1',''), ('93570','44828','2','20','3h','0',''), ('93571','44829','1','12','$.storageAccount.SuccessE2ELatency.average','1',''), ('93572','44829','2','1','0.001','0',''), ('93573','44829','3','20','3h','0',''), ('93574','44830','1','12','$.tableServices.Availability.average','1',''), ('93575','44830','2','20','3h','0',''), ('93576','44831','1','12','$.storageAccount.Ingress.total','1',''), ('93577','44831','2','20','3h','0',''), ('93578','44832','1','12','$.tableServices.TableCapacity.average','1',''), ('93579','44832','2','20','3h','0',''), ('93580','44833','1','12','$.tableServices.TableCount.average','1',''), ('93581','44833','2','20','3h','0',''), ('93582','44834','1','12','$.tableServices.Egress.total','1',''), ('93583','44834','2','20','3h','0',''), ('93584','44835','1','12','$.tableServices.TableEntityCount.average','1',''), ('93585','44835','2','20','3h','0',''), ('93586','44836','1','12','$.tableServices.Ingress.total','1',''), ('93587','44836','2','20','3h','0',''), ('93588','44837','1','12','$.tableServices.SuccessE2ELatency.average','1',''), ('93589','44837','2','1','0.001','0',''), ('93590','44837','3','20','3h','0',''), ('93591','44838','1','12','$.tableServices.SuccessServerLatency.average','1',''), ('93592','44838','2','1','0.001','0',''), ('93593','44838','3','20','3h','0',''), ('93594','44839','1','12','$.tableServices.Transactions.total','1',''), ('93595','44839','2','20','3h','0',''), ('93596','44840','1','12','$.storageAccount.Transactions.total','1',''), ('93597','44840','2','20','3h','0',''), ('93598','44841','1','12','$.queueServices.QueueCapacity.average','1',''), ('93599','44841','2','20','3h','0',''), ('93600','44842','1','12','$.fileServices.Transactions.total','1',''), ('93601','44842','2','20','3h','0',''), ('93602','44843','1','12','$.storageAccount.Availability.average','1',''), ('93603','44843','2','20','3h','0',''), ('93604','44844','1','12','$.blobServices.Transactions.total','1',''), ('93605','44844','2','20','3h','0',''), ('93606','44845','1','12','$.blobServices.Availability.average','1',''), ('93607','44845','2','20','3h','0',''), ('93608','44846','1','12','$.blobServices.BlobCapacity.average','1',''), ('93609','44846','2','20','3h','0',''), ('93610','44847','1','12','$.blobServices.ContainerCount.average','1',''), ('93611','44847','2','20','3h','0',''), ('93612','44848','1','12','$.blobServices.BlobCount.average','1',''), ('93613','44848','2','20','3h','0',''), ('93614','44849','1','12','$.blobServices.Egress.total','1',''), ('93615','44849','2','20','3h','0',''), ('93616','44850','1','12','$.blobServices.IndexCapacity.average','1',''), ('93617','44850','2','20','3h','0',''), ('93618','44851','1','12','$.blobServices.Ingress.total','1',''), ('93619','44851','2','20','3h','0',''), ('93620','44852','1','12','$.blobServices.SuccessE2ELatency.average','1',''), ('93621','44852','2','1','0.001','0',''), ('93622','44852','3','20','3h','0',''), ('93623','44853','1','12','$.blobServices.SuccessServerLatency.average','1',''), ('93624','44853','2','1','0.001','0',''), ('93625','44853','3','20','3h','0',''), ('93626','44854','1','12','$.storageAccount.Egress.total','1',''), ('93627','44854','2','20','3h','0',''), ('93628','44855','1','12','$.fileServices.SuccessServerLatency.average','1',''), ('93629','44855','2','1','0.001','0',''), ('93630','44855','3','20','3h','0',''), ('93631','44856','1','12','$.fileServices.FileCapacity.average','1',''), ('93632','44856','2','20','3h','0',''), ('93633','44857','1','12','$.fileServices.FileCount.average','1',''), ('93634','44857','2','20','3h','0',''), ('93635','44858','1','12','$.fileServices.Egress.total','1',''), ('93636','44858','2','20','3h','0',''), ('93637','44859','1','12','$.fileServices.Ingress.total','1',''), ('93638','44859','2','20','3h','0',''), ('93639','44860','1','12','$.fileServices.FileShareCapacityQuota.average','1',''), ('93640','44860','2','20','3h','0',''), ('93641','44861','1','12','$.fileServices.FileShareCount.average','1',''), ('93642','44861','2','20','3h','0',''), ('93643','44862','1','12','$.fileServices.FileShareSnapshotSize.average','1',''), ('93644','44862','2','20','3h','0',''), ('93645','44863','1','12','$.fileServices.FileShareSnapshotCount.average','1',''), ('93646','44863','2','20','3h','0',''), ('93647','44864','1','12','$.fileServices.file.SuccessE2ELatency.average','1',''), ('93648','44864','2','1','0.001','0',''), ('93649','44864','3','20','3h','0',''), ('93650','44865','1','12','$.storageAccount.UsedCapacity.average','1',''), ('93651','44865','2','20','3h','0',''), ('93652','44867','1','12','$.timeSeriesData[0].pointData[0].values[0].stringValue','2','10'), ('93653','44867','2','21','const idx = [ ''RUNNING'', ''SUSPENDED'', ''RUNNABLE'', ''PENDING_CREATE'', ''MAINTENANCE'', ''FAILED'', ''UNKNOWN_STATE'' ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('93659','44872','1','26','-1','1',''), ('93660','44872','2','12','$.timeSeriesData[0].pointData[0].values[0].int64Value','1',''), ('93662','44874','1','12','$.timeSeriesData[0].pointData[0].values[0].stringValue','2','10'), ('93663','44874','2','21','const idx = [ ''RUNNING'', ''SUSPENDED'', ''RUNNABLE'', ''PENDING_CREATE'', ''MAINTENANCE'', ''FAILED'', ''UNKNOWN_STATE'' ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('93665','44875','1','26','-1','1',''), ('93666','44875','2','12','$.timeSeriesData[0].pointData[0].values[0].int64Value','1',''), ('93671','44879','1','26','-1','1',''), ('93672','44879','2','12','$.timeSeriesData[0].pointData[0].values[0].int64Value','1',''), ('93673','44880','1','12','$.timeSeriesData[0].pointData[0].values[0].stringValue','2','10'), ('93674','44880','2','21','const idx = [ ''RUNNING'', ''SUSPENDED'', ''RUNNABLE'', ''PENDING_CREATE'', ''MAINTENANCE'', ''FAILED'', ''UNKNOWN_STATE'' ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('93678','44884','1','12','$.status','2','10'), ('93679','44884','2','21','const idx = [ ''RUNNING'', ''PROVISIONING'', ''STAGING'', ''STOPPING'', ''REPAIRING'', ''TERMINATED'', ''SUSPENDING'', ''SUSPENDED'' ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('93680','44884','3','20','10m','0',''), ('93681','44885','1','12','$.error','2',''), ('93682','44886','1','21',E'var token = value; function getField(data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field "'' + path + ''" is not present in data received.''; } data = data[step]; } return data; } function getFieldBool(data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { return false; } data = data[step]; } return true; } function getHttpData(url, token) { var request = new HttpRequest(), proxy = ''{$GCP.PROXY}''; if (proxy !== ''{'' + ''$GCP.PROXY}'' && proxy !== '''') { request.setProxy(proxy); }; request.addHeader(''Authorization: Bearer '' + token); request.addHeader(''Content-Type: application/json''); var response = request.get(url); Zabbix.log(4, ''[ GCP API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from GCP API. Check debug log for more information.''; } } if (typeof response !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object. Check debug log for more information.''; } if (request.getStatus() !== 200) { if (typeof (response.error && response.error.message) !== ''undefined'') { throw response.error.message; } else { throw ''Failed to receive data: invalid response status code. Check debug log for more information.''; } } return response; }; var project = ''{$GCP.PROJECT.ID}''; if (!project || project === ''{'' + ''$GCP.PROJECT.ID}'') { throw ''Error. Set the \\{$GCP.PROJECT.ID\\} macro value.''; } var inst_raw = getHttpData(''https://sqladmin.googleapis.com/sql/v1beta4/projects/'' + project + ''/instances'', token); if (Object.keys(inst_raw).length === 0) { return ''[]''; } return JSON.stringify(getField(inst_raw, ''items'').map(function (sql_inst) { obj = { name: getField(sql_inst, ''name''), token: value, zone: getField(sql_inst, ''settings.locationPreference.zone''), inst_type: getField(sql_inst, ''instanceType''), tier: getField(sql_inst, ''settings.tier''), project_id: getField(sql_inst, ''project''), db_type: getField(sql_inst, ''databaseInstalledVersion'') }; obj.high_availability = (sql_inst.failoverReplica) ? true : false; if (obj.db_type.match(/SQLSERVER*/)) { var mssql_audit = getField(sql_inst, ''settings.sqlServerAuditConfig''); obj.audited = (mssql_audit.bucket) ? true : false; } if (obj.inst_type === ''READ_REPLICA_INSTANCE'') { obj.master = getField(sql_inst, ''masterInstanceName''); } if (Array.isArray(sql_inst.ipAddresses)) { var int_addresses = sql_inst.ipAddresses.filter(function (addr) { return addr.type === ''PRIVATE''; }); var ext_addresses = sql_inst.ipAddresses.filter(function (addr) { return addr.type === ''PRIMARY''; }); obj.ip = getFieldBool(int_addresses, ''0.ipAddress'') ? int_addresses[0].ipAddress : ''0.0.0.0''; obj.ext_ip = getFieldBool(ext_addresses, ''0.ipAddress'') ? ext_addresses[0].ipAddress : ''0.0.0.0''; } else { obj.ip = ''0.0.0.0''; obj.ext_ip = ''0.0.0.0''; } return obj; }));','0',''), ('93683','44887','1','21',E'var token = value; function checkMacro(macro) { if (!macro || macro.match(/^\\{\\$.*\\}$/)) { throw ''The GCP project id is not defined. Please, set the value for the \\{$GCP.PROJECT.ID\\} macro.''; } return macro; } function getField(data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field "'' + path + ''" is not present in data received.''; } data = data[step]; } return data; } function getFieldBool(data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { return false; } data = data[step]; } return true; } function getHttpData(url, token) { var request = new HttpRequest(), proxy = ''{$GCP.PROXY}''; if (proxy !== ''{'' + ''$GCP.PROXY}'' && proxy !== '''') { request.setProxy(proxy); }; request.addHeader(''Authorization: Bearer '' + token); request.addHeader(''Content-Type: application/json''); var response = request.get(url); Zabbix.log(4, ''[ GCP API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from GCP API. Check debug log for more information.''; } } if (typeof response !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object. Check debug log for more information.''; } if (request.getStatus() !== 200) { if (typeof (response.error && response.error.message) !== ''undefined'') { throw response.error.message; } else { throw ''Failed to receive data: invalid response status code. Check debug log for more information.''; } } return response; }; var project = ''{$GCP.PROJECT.ID}''; if (!project || project === ''{'' + ''$GCP.PROJECT.ID}'') { throw ''Error. Set the \\{$GCP.PROJECT.ID\\} macro value.''; } var result = getHttpData(''https://compute.googleapis.com/compute/v1/projects/'' + project + ''/aggregated/instances'', token), vms_raw = getField(result, ''items''), keys = Object.keys(vms_raw), arr = []; for (var i in keys) { if (typeof vms_raw[keys[i]].instances !== ''undefined'') { var vm_prop = vms_raw[keys[i]].instances.map(function setProp(inst) { obj = { id: getField(inst, ''id''), name: getField(inst, ''name''), token: value, zone: keys[i].replace(/zones\\//, ''''), m_type: getField(inst, ''machineType'').replace(/.*machineTypes\\//g, ''''), state: getField(inst, ''status''), project_id: ''{$GCP.PROJECT.ID}'', ip: getField(inst, ''networkInterfaces.0.networkIP''), integrity: getFieldBool(inst, ''shieldedInstanceConfig.enableIntegrityMonitoring'') ? inst.shieldedInstanceConfig.enableIntegrityMonitoring : false }; obj.ext_ip = getFieldBool(inst, ''networkInterfaces.0.accessConfigs.0.natIP'') ? inst.networkInterfaces[0].accessConfigs[0].natIP : ''0.0.0.0''; obj.i_type = getFieldBool(inst, ''labels.container-vm'') ? ''container-optimized'' : ''regular''; return obj; }); arr = arr.concat(vm_prop); } } return JSON.stringify(arr);','0',''), ('93684','44888','1','21',E'var token = value; function checkMacro(macro) { if (!macro || macro.match(/^\\{\\$.*\\}$/)) { throw ''The GCP project id is not defined. Please, set the value for the \\{$GCP.PROJECT.ID\\} macro.''; } return macro; } function getField(data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field "'' + path + ''" is not present in data received.'' } data = data[step]; } return data; } function getHttpData(url, token) { var request = new HttpRequest(), proxy = ''{$GCP.PROXY}''; if (proxy !== ''{'' + ''$GCP.PROXY}'' && proxy !== '''') { request.setProxy(proxy); }; request.addHeader(''Authorization: Bearer '' + token); request.addHeader(''Content-Type: application/json''); var response = request.get(url); Zabbix.log(4, ''[ GCP API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from GCP API. Check debug log for more information.''; } } if (typeof response !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object. Check debug log for more information.''; } if (request.getStatus() !== 200) { if (typeof (response.error && response.error.message) !== ''undefined'') { throw response.error.message; } else { throw ''Failed to receive data: invalid response status code. Check debug log for more information.''; } } if (typeof response.quotas !== ''undefined'') { return response; } else { throw ''No quotas array in API response''; } }; var project = checkMacro(''{$GCP.PROJECT.ID}''), qts_raw = getHttpData(''https://www.googleapis.com/compute/v1/projects/'' + project, token), qts_lst = getField(qts_raw, ''quotas'').map(function (qt) { obj = { metric: getField(qt, ''metric''), limit: getField(qt, ''limit''), usage: getField(qt, ''usage''), p_used: (qt.usage / qt.limit) * 100 }; return obj; }); return JSON.stringify(qts_lst);','0',''), ('93685','44889','1','12','$.base_received_bytes_count','0',''), ('93686','44890','1','12','$.base_quota','0',''), ('93687','44891','1','12','$.base_total_usage','0',''), ('93688','44892','1','12','$.base_usage','0',''), ('93689','44893','1','12','$.base_ram_pused','0',''), ('93690','44894','1','12','$.base_connections','0',''), ('93691','44895','1','12','$.base_audits_size','1',''), ('93692','44896','1','12','$.base_sent_bytes_count','0',''), ('93693','44897','1','12','$.mssql_read','0',''), ('93694','44898','1','12','$.mssql_batch_request_count','0',''), ('93695','44899','1','12','$.mssql_forwarded_record_count','0',''), ('93696','44900','1','12','$.mssql_full_scan_count','0',''), ('93697','44901','1','12','$.mssql_page_split_count','0',''), ('93698','44902','1','12','$.mssql_probe_scan_count','0',''), ('93699','44903','1','12','$.mssql_sql_compilation_count','0',''), ('93700','44904','1','12','$.mssql_write','0',''), ('93701','44905','1','12','$.mssql_memory_grants_pending','0',''), ('93702','44906','1','12','$.mssql_page_life_expectancy','0',''), ('93703','44907','1','12','$.mssql_bytes_used','0',''), ('93704','44908','1','12','$.mssql_connection_reset_count','0',''), ('93705','44909','1','12','$.mssql_login_attempt_count','0',''), ('93706','44910','1','12','$.mssql_logout_count','0',''), ('93707','44911','1','12','$.mssql_processes_blocked','0',''), ('93708','44912','1','12','$.base_reserved_cores','0',''), ('93709','44913','1','12','$.base_usage_time','0',''), ('93710','44914','1','12','$.base_utilization','0',''), ('93711','44914','2','1','100','0',''), ('93712','44915','1','12','$.mssql_quota','0',''), ('93713','44916','1','12','$.mssql_success','1',''), ('93714','44917','1','12','$.base_read_ops_count','0',''), ('93715','44918','1','12','$.mssql_utilization','0',''), ('93716','44918','2','1','100','0',''), ('93717','44919','1','12','$.base_write_ops_count','0',''), ('93718','44920','1','12','$.mssql_buffer_cache_hit_ratio','0',''), ('93719','44921','1','12','$.mssql_checkpoint_page_count','0',''), ('93720','44922','1','12','$.mssql_free_list_stall_count','0',''), ('93721','44923','1','12','$.mssql_lazy_write_count','0',''), ('93722','44924','1','12','$.mssql_sql_recompilation_count','0',''), ('93723','44925','1','12','$.bytes_sent_to_replica_count','0',''), ('93724','44926','1','12','$.log_apply_pending_queue','0',''), ('93725','44927','1','12','$.log_bytes_received_count','0',''), ('93726','44928','1','12','$.recovery_queue','0',''), ('93727','44928','2','1','1024','0',''), ('93728','44929','1','12','$.redone_bytes_count','0',''), ('93729','44930','1','12','$.resent_message_count','0',''), ('93730','44931','1','12','$.base_reserved_cores','0',''), ('93731','44932','1','12','$.mysql_queries','0',''), ('93732','44933','1','12','$.mysql_sent_bytes_count','0',''), ('93733','44934','1','12','$.mysql_received_bytes_count','0',''), ('93734','44935','1','12','$.mysql_open_table_definitions','0',''), ('93735','44936','1','12','$.mysql_open_tables','0',''), ('93736','44937','1','12','$.base_sent_bytes_count','0',''), ('93737','44938','1','12','$.base_received_bytes_count','0',''), ('93738','44939','1','12','$.base_connections','0',''), ('93739','44940','1','12','$.base_ram_pused','0',''), ('93740','44941','1','12','$.base_usage','0',''), ('93741','44942','1','12','$.base_total_usage','0',''), ('93742','44943','1','12','$.base_quota','0',''), ('93743','44944','1','12','$.mysql_innodb_pages_written','0',''), ('93744','44945','1','12','$.base_usage_time','0',''), ('93745','44946','1','12','$.mysql_innodb_pages_read','0',''), ('93746','44947','1','12','$.mysql_innodb_os_log_fsyncs','0',''), ('93747','44948','1','12','$.mysql_innodb_data_fsyncs','0',''), ('93748','44949','1','12','$.mysql_innodb_buffer_pool_pages_total','0',''), ('93749','44950','1','12','$.mysql_innodb_buffer_pool_pages_free','0',''), ('93750','44951','1','12','$.mysql_innodb_buffer_pool_pages_dirty','0',''), ('93751','44952','1','12','$.base_write_ops_count','0',''), ('93752','44953','1','12','$.mysql_utilization','0',''), ('93753','44953','2','1','100','0',''), ('93754','44954','1','12','$.base_read_ops_count','0',''), ('93755','44955','1','12','$.mysql_quota','0',''), ('93756','44956','1','12','$.mysql_bytes_used','0',''), ('93757','44957','1','12','$.base_utilization','0',''), ('93758','44957','2','1','100','0',''), ('93759','44958','1','12','$.mysql_questions','0',''), ('93760','44959','1','12','$.last_io_errno','0',''), ('93761','44960','1','12','$.last_sql_errno','0',''), ('93762','44961','1','12','$.network_lag','0',''), ('93763','44962','1','12','$.replica_lag','0',''), ('93764','44963','1','12','$.slave_io_running','0',''), ('93765','44963','2','21','const idx = [ ''No'', ''Yes'', ''Connecting'', ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('93766','44964','1','12','$.slave_sql_running','0',''), ('93767','44964','2','6','','0',''), ('93768','44965','1','12','$.state','0',''), ('93769','44965','2','21','const idx = [ ''Running'', ''Syncing'', ''Unsynced'', ''Stopped'', ''Error'', ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('93770','44966','1','12','$.base_reserved_cores','0',''), ('93771','44967','1','12','$.pgsql_frozen','0',''), ('93772','44968','1','12','$.pgsql_assigned','0',''), ('93773','44969','1','12','$.pgsql_temp_files_written_count','0',''), ('93774','44970','1','12','$.pgsql_temp_bytes_written_count','0',''), ('93775','44971','1','12','$.pgsql_running','1',''), ('93776','44972','1','12','$.pgsql_replication_slot','1',''), ('93777','44973','1','12','$.pgsql_replica','1',''), ('93778','44974','1','12','$.pgsql_prepared','1',''), ('93779','44975','1','12','$.pgsql_num_backends','0',''), ('93780','44976','1','12','$.base_sent_bytes_count','0',''), ('93781','44977','1','12','$.base_ram_pused','0',''), ('93782','44978','1','12','$.base_received_bytes_count','0',''), ('93783','44979','1','12','$.base_usage_time','0',''), ('93784','44980','1','12','$.base_usage','0',''), ('93785','44981','1','12','$.base_total_usage','0',''), ('93786','44982','1','12','$.base_quota','0',''), ('93787','44983','1','12','$.base_write_ops_count','0',''), ('93788','44984','1','12','$.pgsql_utilization','0',''), ('93789','44984','2','1','100','0',''), ('93790','44985','1','12','$.base_read_ops_count','0',''), ('93791','44986','1','12','$.pgsql_quota','0',''), ('93792','44987','1','12','$.pgsql_bytes_used','0',''), ('93793','44988','1','12','$.base_utilization','0',''), ('93794','44988','2','1','100','0',''), ('93795','44989','1','12','$.pgsql_transaction_id_utilization','0',''), ('93796','44989','2','1','100','0',''), ('93797','44990','1','12','$.flush_location','0',''), ('93798','44991','1','12','$.log_archive_failure_count','0',''), ('93799','44992','1','12','$.log_archive_success_count','0',''), ('93800','44993','1','12','$.network_lag','0',''), ('93801','44994','1','12','$.replay_location','0',''), ('93802','44995','1','12','$.replica_lag','0',''), ('93803','44996','1','12','$.sent_location','0',''), ('93804','44997','1','12','$.state','0',''), ('93805','44997','2','21','const idx = [ ''Running'', ''Syncing'', ''Unsynced'', ''Stopped'', ''Error'', ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('93806','44998','1','12','$.write_location','0',''), ('93807','44999','1','12','$.guest_visible_vcpus','0',''), ('93808','45000','1','12','$.out_of_quota','0',''), ('93809','45001','1','12','$.invalid','0',''), ('93810','45002','1','12','$.mirrored_packets_count','0',''), ('93811','45003','1','12','$.mirrored_bytes_count','0',''), ('93812','45004','1','12','$.sent_packets_count.true','1',''), ('93813','45005','1','12','$.sent_packets_count.false','0',''), ('93814','45006','1','12','$.sent_bytes_count.true','1',''), ('93815','45007','1','12','$.sent_bytes_count.false','0',''), ('93816','45008','1','12','$.received_packets_count.true','1',''), ('93817','45009','1','12','$.received_packets_count.false','0',''), ('93818','45010','1','12','$.received_bytes_count.true','1',''), ('93819','45011','1','12','$.received_bytes_count.false','0',''), ('93820','45012','1','12','$.swap_in_bytes_count','1',''), ('93821','45013','1','12','$.swap_out_bytes_count','1',''), ('93822','45014','1','12','$.reserved_cores','0',''), ('93823','45015','1','12','$.ram_used','1',''), ('93824','45016','1','12','$.ram_size','1',''), ('93825','45017','1','12','$.ram_pused','1',''), ('93826','45018','1','12','$.late_boot_validation_status','1',''), ('93827','45018','2','21','const idx = [ ''passed'', ''failed'', ''unknown'', ].indexOf(value); return idx !== -1 ? idx : "";','0',''), ('93828','45019','1','12','$.early_boot_validation_status','1',''), ('93829','45019','2','21','const idx = [ ''passed'', ''failed'', ''unknown'', ].indexOf(value); return idx !== -1 ? idx : "";','0',''), ('93830','45020','1','12','$.uptime_total','0',''), ('93831','45021','1','12','$.dropped_packets_count','0',''), ('93832','45022','1','12','$.dropped_bytes_count','0',''), ('93833','45023','1','12','$.utilization','0',''), ('93834','45023','2','1','100','0',''), ('93835','45024','1','12','$.usage_time','0',''), ('93836','45025','1','12','$.scheduler_wait_time','1',''), ('93837','45026','1','12','$.unknown','0',''), ('93838','45027','1','12','$.[*].length()','0',''), ('93839','45028','1','12','$[?(@.i_type == ''container-optimized'')].length()','1',''), ('93840','45029','1','12','$[?(@.db_type =~ ''SQLSERVER'')].length()','1',''), ('93841','45030','1','12','$[?(@.db_type =~ ''MYSQL'')].length()','1',''), ('93842','45031','1','12','$[?(@.db_type =~ ''POSTGRES'')].length()','1',''), ('93843','45032','1','12','$[?(@.i_type == ''regular'')].length()','1',''), ('93844','45033','1','12','$.[*].length()','1',''), ('93845','45034','1','20','3h','0',''), ('93846','45035','1','20','3h','0',''), ('93847','45036','1','20','3h','0',''), ('93848','45037','1','20','3h','0',''), ('93849','45038','1','20','3h','0',''), ('93850','45039','1','20','3h','0',''), ('93851','45040','1','20','3h','0',''), ('93852','45041','1','20','3h','0',''), ('93853','45042','1','12','$.items','0',''), ('93854','45042','2','20','3h','0',''), ('93855','45043','1','20','3h','0',''), ('93857','45045','1','12','$[?(@.database == "{#DB.NAME}")].metrics.first()','0',''), ('93858','45046','1','12','$[?(@.resource == "{#RESOURCE.NAME}")].metrics.first()','0',''), ('93859','45047','1','12','$[?(@.scheduler == "{#SCHEDULER.ID}")].metrics.first()','0',''), ('93860','45048','1','12','$.buffer_cache','0',''), ('93861','45049','1','12','$.disk','0',''), ('93862','45050','1','12','$.deadlock_count','0',''), ('93863','45051','1','12','$.commit','0',''), ('93864','45052','1','12','$.rollback','0',''), ('93865','45053','1','12','$.tuples_fetched_count','0',''), ('93866','45054','1','12','$.delete','0',''), ('93867','45055','1','12','$.insert','0',''), ('93868','45056','1','12','$.update','0',''), ('93869','45057','1','12','$.tuples_returned_count','0',''), ('93870','45058','1','12','$.dead','0',''), ('93871','45059','1','12','$.live','0',''), ('93872','45060','1','12','$[?(@.disk_name == "{#GCE.DISK.NAME}")].metrics.first()','0',''), ('93873','45061','1','12','$[?(@.metric == "{#GCE.QUOTA.NAME}")].first()','0',''), ('93874','45062','1','12','$.log_bytes_flushed_count','0',''), ('93875','45063','1','12','$.transaction_count','0',''), ('93876','45064','1','12','$.deadlock_count','0',''), ('93877','45065','1','12','$.lock_wait_count','0',''), ('93878','45066','1','12','$.lock_wait_time','0',''), ('93879','45067','1','12','$.active_workers','0',''), ('93880','45068','1','12','$.current_tasks','0',''), ('93881','45069','1','12','$.current_workers','0',''), ('93882','45070','1','12','$.pending_disk_io','0',''), ('93883','45071','1','12','$.runnable_tasks','0',''), ('93884','45072','1','12','$.work_queue','0',''), ('93885','45073','1','12','$.read_bytes_count','0',''), ('93886','45074','1','12','$.read_ops_count','0',''), ('93887','45075','1','12','$.write_bytes_count','0',''), ('93888','45076','1','12','$.write_ops_count','0',''), ('93889','45077','1','12','$.limit','0',''), ('93891','45078','1','26','-1','1',''), ('93892','45079','1','12','$.usage','0',''), ('93893','45080','1','12','$.data','0',''), ('93894','45082','1','12','$[?(@.database == "{#DB}")].first()','1',''), ('93895','45083','1','12','$[?(@.name == "{#NAME}")].first()','1',''), ('93896','45084','1','12','$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].first()','1',''), ('93897','45085','1','12','$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].first()','1',''), ('93898','45086','1','12','$.bytes','0',''), ('93899','45087','1','12','$.tables','0',''), ('93900','45088','1','12','$[?(@.object_name=~''.*SQL Statistics'')]','1',''), ('93901','45089','1','12','$[?(@.object_name=~''.*SQL Errors'')]','1',''), ('93902','45090','1','12','$[?(@.object_name=~''.*General Statistics'')]','1',''), ('93903','45091','1','12','$[?(@.object_name=~''.*Memory Manager'')]','1',''), ('93904','45092','1','12','$[?(@.object_name=~''.*Locks'' && @.instance_name==''_Total'')]','1',''), ('93905','45093','1','12','$[?(@.object_name=~''.*Access Methods'')]','1',''), ('93906','45094','1','12','$[?(@.object_name=~''.*Databases'' && @.instance_name==''_Total'')]','1',''), ('93907','45095','1','12','$[?(@.object_name=~''.*Latches'')]','1',''), ('93908','45096','1','12','$[?(@.object_name=~''.*Plan Cache'' && @.instance_name==''_Total'')]','1',''), ('93909','45097','1','12','$[?(@.object_name=~''.*Buffer Manager'')]','1',''), ('93915','45098','1','12','$[?(@.dbname==''{#DBNAME}'')]','1',''), ('93916','45099','1','12','$[?(@.object_name=~''.*Databases'' && @.instance_name==''{#DBNAME}'')]','1',''), ('93917','45100','1','12','$[?(@.job_name==''{#JOBNAME}'')].first()','1',''), ('93918','45101','1','12','$.enabled','0',''), ('93919','45101','2','20','12h','0',''), ('93920','45102','1','12','$.Server','1',''), ('93921','45103','1','12','$.Persistence','1',''), ('93922','45104','1','12','$.Memory','1',''), ('93923','45105','1','12','$.Keyspace','1',''), ('93924','45106','1','12','$.Stats','1',''), ('93925','45107','1','12','$.CPU','1',''), ('93926','45108','1','12','$.Replication','1',''), ('93927','45109','1','12','$.Clients','1',''), ('93928','45110','1','12','$[''{#DB}'']','1',''), ('93929','45111','1','12','$[?(@.name == "pd_cluster_status")]','1',''), ('93930','45112','1','12','$[?(@.name == "grpc_server_handling_seconds_count")]','1',''), ('93931','45113','1','12','$[?(@.name == "pd_scheduler_region_heartbeat")]','1',''), ('93932','45114','1','12','$[?(@.name == "pd_regions_label_level")]','1',''), ('93933','45115','1','12','$[?(@.name == "pd_regions_status")]','1',''), ('93934','45116','1','12','$[?(@.name == "pd_scheduler_status" && @.labels.type == "allow")]','1',''), ('93935','45117','1','12','$[?(@.labels.address == "{#STORE_ADDRESS}")]','1',''), ('93936','45118','1','12','$[?(@.name=~"tidb_tikvclient_*")]','1',''), ('93937','45119','1','12','$[?(@.name=="tidb_executor_statement_total")]','1',''), ('93938','45120','1','12','$[?(@.name == "tidb_server_query_total")]','1',''), ('93939','45121','1','12','$[?(@.labels.type == "{#TYPE}")]','1',''), ('93940','45122','1','12','$[?(@.name == "tikv_store_size_bytes")]','1',''), ('93941','45123','1','12','$[?(@.name == "tikv_scheduler_stage_total")]','1',''), ('93942','45124','1','12','$[?(@.name == "tikv_server_report_failure_msg_total")]','1',''), ('93943','45125','1','12','$[?(@.name == "tikv_grpc_msg_duration_seconds_count")]','1',''), ('93944','45126','1','12','$[?(@.name == "tikv_coprocessor_request_duration_seconds_count")]','1',''), ('93945','45127','1','12','$[?(@.labels.req == "{#REQ_TYPE}")]','1',''), ('93946','40643','1','29','{#ENT_CLASS} 1.3.6.1.2.1.47.1.1.1.1.5 0 {#ENT_NAME} 1.3.6.1.2.1.47.1.1.1.1.7 0 {#ENT_SN} 1.3.6.1.2.1.47.1.1.1.1.11 0','0',''), ('93947','40643','2','20','1h','0',''), ('93948','40644','1','29','{#SENSOR_INFO} 1.3.6.1.4.1.9.9.13.1.4.1.2 0','1',''), ('93949','40644','2','20','1h','0',''), ('93950','40645','1','29','{#SNMPVALUE} 1.3.6.1.4.1.9.9.48.1.1.1.2 0','0',''), ('93951','40645','2','20','1h','0',''), ('93952','40646','1','29','{#SENSOR_INFO} 1.3.6.1.4.1.9.9.13.1.5.1.2 0','1',''), ('93953','40646','2','20','1h','0',''), ('93954','40647','1','29','{#SNMPVALUE} 1.3.6.1.4.1.9.9.13.1.3.1.2 0','1',''), ('93955','40647','2','20','1h','0',''), ('93956','40648','1','29','{#SNMPVALUE} 1.3.6.1.4.1.9.9.109.1.1.1.1.5 0','0',''), ('93957','40648','2','20','1h','0',''), ('93958','40649','1','29','{#ENT_CLASS} 1.3.6.1.2.1.47.1.1.1.1.5 0 {#ENT_NAME} 1.3.6.1.2.1.47.1.1.1.1.7 0 {#ENT_SN} 1.3.6.1.2.1.47.1.1.1.1.11 0','0',''), ('93959','40649','2','20','1h','0',''), ('93960','40650','1','29','{#SENSOR_INFO} 1.3.6.1.4.1.9.9.13.1.4.1.2 0','1',''), ('93961','40650','2','20','1h','0',''), ('93962','40651','1','29','{#SNMPVALUE} 1.3.6.1.4.1.9.9.48.1.1.1.2 0','0',''), ('93963','40651','2','20','1h','0',''), ('93964','40652','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('93965','40652','2','20','1h','0',''), ('93966','40653','2','20','1h','0',''), ('93967','40654','1','29','{#SENSOR_INFO} 1.3.6.1.4.1.9.9.13.1.5.1.2 0','1',''), ('93968','40654','2','20','1h','0',''), ('93969','40655','1','29','{#SNMPVALUE} 1.3.6.1.4.1.9.9.13.1.3.1.2 0','1',''), ('93970','40655','2','20','1h','0',''), ('93971','40656','1','29','{#SNMPVALUE} 1.3.6.1.4.1.9.9.109.1.1.1.1.5 0','0',''), ('93972','40656','2','20','1h','0',''), ('93973','40657','1','29','{#ENT_CLASS} 1.3.6.1.2.1.47.1.1.1.1.5 0 {#ENT_NAME} 1.3.6.1.2.1.47.1.1.1.1.7 0 {#ENT_SN} 1.3.6.1.2.1.47.1.1.1.1.11 0','0',''), ('93974','40657','2','20','1h','0',''), ('93975','40658','1','29','{#SENSOR_INFO} 1.3.6.1.4.1.9.9.13.1.4.1.2 0','1',''), ('93976','40658','2','20','1h','0',''), ('93977','40659','1','29','{#SNMPVALUE} 1.3.6.1.4.1.9.9.48.1.1.1.2 0','0',''), ('93978','40659','2','20','1h','0',''), ('93979','40660','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('93980','40660','2','20','1h','0',''), ('93981','40661','1','29','{#SENSOR_INFO} 1.3.6.1.4.1.9.9.13.1.5.1.2 0','1',''), ('93982','40661','2','20','1h','0',''), ('93983','40662','1','29','{#SNMPVALUE} 1.3.6.1.4.1.9.9.13.1.3.1.2 0','1',''), ('93984','40662','2','20','1h','0',''), ('93985','40663','2','20','1d','0',''), ('93986','40664','1','28','1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} 0','0',''), ('93987','40664','2','20','3m','0',''), ('93988','40665','1','28','1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} 0','0',''), ('93989','40666','1','28','1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} 0','0',''), ('93990','40668','1','28','1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} 0','0',''), ('93991','40668','2','20','3m','0',''), ('93992','40669','1','28','1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} 0','0',''), ('93993','40669','2','20','3m','0',''), ('93994','40670','1','28','1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} 0','0',''), ('93995','40670','2','20','3m','0',''), ('93996','40671','1','28','1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX} 0','0',''), ('93997','40671','2','20','5m','0',''), ('93998','40672','2','20','1d','0',''), ('93999','40673','1','28','1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} 0','0',''), ('94000','40673','2','20','3m','0',''), ('94001','40674','1','28','1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} 0','0',''), ('94002','40675','1','28','1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} 0','0',''), ('94003','40677','2','10','','0',''), ('94004','40677','3','20','3m','0',''), ('94005','40678','2','10','','0',''), ('94006','40678','3','20','3m','0',''), ('94007','40679','3','1','8','0',''), ('94008','40680','2','10','','0',''), ('94009','40680','3','20','3m','0',''), ('94010','40681','2','10','','0',''), ('94011','40681','3','20','3m','0',''), ('94012','40682','3','1','8','0',''), ('94013','40683','3','20','1h','0',''), ('94014','40684','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('94015','40685','2','20','1d','0',''), ('94016','40686','1','28','1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} 0','0',''), ('94017','40687','1','28','1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} 0','0',''), ('94018','40687','2','20','3m','0',''), ('94019','40688','1','28','1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} 0','0',''), ('94020','40688','2','20','3m','0',''), ('94021','40689','1','28','1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} 0','0',''), ('94022','40689','2','20','3m','0',''), ('94023','40690','1','28','1.3.6.1.4.1.9.9.109.1.1.1.1.5.{#SNMPINDEX} 0','0',''), ('94024','40690','2','20','5m','0',''), ('94025','40691','2','20','1d','0',''), ('94026','40692','1','28','1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} 0','0',''), ('94027','40692','2','20','3m','0',''), ('94028','40693','1','28','1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} 0','0',''), ('94029','40694','1','28','1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} 0','0',''), ('94030','40696','2','10','','0',''), ('94031','40696','3','20','3m','0',''), ('94032','40697','2','10','','0',''), ('94033','40697','3','20','3m','0',''), ('94034','40698','3','1','8','0',''), ('94035','40699','2','10','','0',''), ('94036','40699','3','20','3m','0',''), ('94037','40700','2','10','','0',''), ('94038','40700','3','20','3m','0',''), ('94039','40701','3','1','8','0',''), ('94040','40702','3','20','1h','0',''), ('94041','40703','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('94042','40704','2','20','1d','0',''), ('94043','40705','1','28','1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} 0','0',''), ('94044','40705','2','20','3m','0',''), ('94045','40706','1','28','1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} 0','0',''), ('94046','40706','2','20','3m','0',''), ('94047','40707','1','28','1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} 0','0',''), ('94048','40707','2','20','3m','0',''), ('94049','36854','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('94050','36854','2','20','1h','0',''), ('94055','36857','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94056','36857','2','20','1h','0',''), ('94057','36858','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('94058','36858','2','20','1h','0',''), ('94059','36859','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94060','36859','2','20','1h','0',''), ('94061','36860','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('94062','36860','2','20','1h','0',''), ('94063','40945','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94064','40945','2','20','1h','0',''), ('94065','36861','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('94070','36864','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('94071','36865','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('94072','36866','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('94073','36867','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('94074','36868','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('94075','36869','2','20','1h','0',''), ('94076','36870','2','20','1h','0',''), ('94077','36871','2','20','15m','0',''), ('94078','36872','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('94079','36873','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('94080','36874','2','20','1h','0',''), ('94081','36875','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('94082','36876','2','20','1h','0',''), ('94083','36878','2','1','1024','0',''), ('94084','36879','2','1','1024','0',''), ('94085','40946','2','10','','0',''), ('94086','40946','3','20','3m','0',''), ('94087','40947','2','10','','0',''), ('94088','40947','3','20','3m','0',''), ('94089','40948','3','1','8','0',''), ('94090','40949','2','10','','0',''), ('94091','40949','3','20','3m','0',''), ('94092','40950','2','10','','0',''), ('94093','40950','3','20','3m','0',''), ('94094','40951','3','1','8','0',''), ('94095','40952','3','20','1h','0',''), ('94096','40953','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('94097','40954','2','20','1d','0',''), ('94098','36908','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('94099','36908','2','20','1h','0',''), ('94104','36911','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94105','36911','2','20','1h','0',''), ('94106','36912','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('94107','36912','2','20','1h','0',''), ('94108','36913','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94109','36913','2','20','1h','0',''), ('94110','36914','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('94111','36914','2','20','1h','0',''), ('94112','40966','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94113','40966','2','20','1h','0',''), ('94114','36915','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('94119','36918','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('94120','36919','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('94121','36920','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('94122','36921','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('94123','36922','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('94124','36923','2','20','1h','0',''), ('94125','36924','2','20','1h','0',''), ('94126','36925','2','20','15m','0',''), ('94127','36926','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('94128','36927','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('94129','36928','2','20','1h','0',''), ('94130','36929','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('94131','36930','2','20','1h','0',''), ('94132','36932','2','1','1024','0',''), ('94133','36933','2','1','1024','0',''), ('94134','40967','2','10','','0',''), ('94135','40967','3','20','3m','0',''), ('94136','40968','2','10','','0',''), ('94137','40968','3','20','3m','0',''), ('94138','40969','3','1','8','0',''), ('94139','40970','2','10','','0',''), ('94140','40970','3','20','3m','0',''), ('94141','40971','2','10','','0',''), ('94142','40971','3','20','3m','0',''), ('94143','40972','3','1','8','0',''), ('94144','40973','3','20','1h','0',''), ('94145','40974','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('94146','40975','2','20','1d','0',''), ('94147','36962','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('94148','36962','2','20','1h','0',''), ('94153','36965','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94154','36965','2','20','1h','0',''), ('94155','36966','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('94156','36966','2','20','1h','0',''), ('94157','36967','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94158','36967','2','20','1h','0',''), ('94159','36968','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('94160','36968','2','20','1h','0',''), ('94161','40987','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94162','40987','2','20','1h','0',''), ('94163','36969','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('94168','36972','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('94169','36973','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('94170','36974','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('94171','36975','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('94172','36976','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('94173','36977','2','20','1h','0',''), ('94174','36978','2','20','1h','0',''), ('94175','36979','2','20','15m','0',''), ('94176','36980','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('94177','36981','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('94178','36982','2','20','1h','0',''), ('94179','36983','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('94180','36984','2','20','1h','0',''), ('94181','36986','2','1','1024','0',''), ('94182','36987','2','1','1024','0',''), ('94183','40988','2','10','','0',''), ('94184','40988','3','20','3m','0',''), ('94185','40989','2','10','','0',''), ('94186','40989','3','20','3m','0',''), ('94187','40990','3','1','8','0',''), ('94188','40991','2','10','','0',''), ('94189','40991','3','20','3m','0',''), ('94190','40992','2','10','','0',''), ('94191','40992','3','20','3m','0',''), ('94192','40993','3','1','8','0',''), ('94193','40994','3','20','1h','0',''), ('94194','40995','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('94195','40996','2','20','1d','0',''), ('94196','37016','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('94197','37016','2','20','1h','0',''), ('94202','37019','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94203','37019','2','20','1h','0',''), ('94204','37020','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('94205','37020','2','20','1h','0',''), ('94206','37021','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94207','37021','2','20','1h','0',''), ('94208','37022','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('94209','37022','2','20','1h','0',''), ('94210','41008','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94211','41008','2','20','1h','0',''), ('94212','37023','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('94217','37026','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('94218','37027','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('94219','37028','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('94220','37029','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('94221','37030','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('94222','37031','2','20','1h','0',''), ('94223','37032','2','20','1h','0',''), ('94224','37033','2','20','15m','0',''), ('94225','37034','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('94226','37035','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('94227','37036','2','20','1h','0',''), ('94228','37037','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('94229','37038','2','20','1h','0',''), ('94230','37040','2','1','1024','0',''), ('94231','37041','2','1','1024','0',''), ('94232','41009','2','10','','0',''), ('94233','41009','3','20','3m','0',''), ('94234','41010','2','10','','0',''), ('94235','41010','3','20','3m','0',''), ('94236','41011','3','1','8','0',''), ('94237','41012','2','10','','0',''), ('94238','41012','3','20','3m','0',''), ('94239','41013','2','10','','0',''), ('94240','41013','3','20','3m','0',''), ('94241','41014','3','1','8','0',''), ('94242','41015','3','20','1h','0',''), ('94243','41016','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('94244','41017','2','20','1d','0',''), ('94245','37070','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('94246','37070','2','20','1h','0',''), ('94251','37073','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94252','37073','2','20','1h','0',''), ('94253','37074','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('94254','37074','2','20','1h','0',''), ('94255','37075','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94256','37075','2','20','1h','0',''), ('94257','37076','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('94258','37076','2','20','1h','0',''), ('94259','41029','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94260','41029','2','20','1h','0',''), ('94261','37077','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('94266','37080','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('94267','37081','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('94268','37082','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('94269','37083','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('94270','37084','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('94271','37085','2','20','1h','0',''), ('94272','37086','2','20','1h','0',''), ('94273','37087','2','20','15m','0',''), ('94274','37088','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('94275','37089','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('94276','37090','2','20','1h','0',''), ('94277','37091','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('94278','37092','2','20','1h','0',''), ('94279','37094','2','1','1024','0',''), ('94280','37095','2','1','1024','0',''), ('94281','41030','2','10','','0',''), ('94282','41030','3','20','3m','0',''), ('94283','41031','2','10','','0',''), ('94284','41031','3','20','3m','0',''), ('94285','41032','3','1','8','0',''), ('94286','41033','2','10','','0',''), ('94287','41033','3','20','3m','0',''), ('94288','41034','2','10','','0',''), ('94289','41034','3','20','3m','0',''), ('94290','41035','3','1','8','0',''), ('94291','41036','3','20','1h','0',''), ('94292','41037','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('94293','41038','2','20','1d','0',''), ('94294','37124','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('94295','37124','2','20','1h','0',''), ('94300','37127','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94301','37127','2','20','1h','0',''), ('94302','37128','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('94303','37128','2','20','1h','0',''), ('94304','37129','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94305','37129','2','20','1h','0',''), ('94306','37130','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('94307','37130','2','20','1h','0',''), ('94308','41050','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94309','41050','2','20','1h','0',''), ('94310','37131','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('94315','37134','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('94316','37135','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('94317','37136','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('94318','37137','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('94319','37138','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('94320','37139','2','20','1h','0',''), ('94321','37140','2','20','1h','0',''), ('94322','37141','2','20','15m','0',''), ('94323','37142','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('94324','37143','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('94325','37144','2','20','1h','0',''), ('94326','37145','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('94327','37146','2','20','1h','0',''), ('94328','37148','2','1','1024','0',''), ('94329','37149','2','1','1024','0',''), ('94330','41051','2','10','','0',''), ('94331','41051','3','20','3m','0',''), ('94332','41052','2','10','','0',''), ('94333','41052','3','20','3m','0',''), ('94334','41053','3','1','8','0',''), ('94335','41054','2','10','','0',''), ('94336','41054','3','20','3m','0',''), ('94337','41055','2','10','','0',''), ('94338','41055','3','20','3m','0',''), ('94339','41056','3','1','8','0',''), ('94340','41057','3','20','1h','0',''), ('94341','41058','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('94342','41059','2','20','1d','0',''), ('94343','37178','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('94344','37178','2','20','1h','0',''), ('94349','37181','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94350','37181','2','20','1h','0',''), ('94351','37182','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('94352','37182','2','20','1h','0',''), ('94353','37183','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94354','37183','2','20','1h','0',''), ('94355','37184','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('94356','37184','2','20','1h','0',''), ('94357','41071','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94358','41071','2','20','1h','0',''), ('94359','37185','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('94364','37188','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('94365','37189','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('94366','37190','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('94367','37191','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('94368','37192','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('94369','37193','2','20','1h','0',''), ('94370','37194','2','20','1h','0',''), ('94371','37195','2','20','15m','0',''), ('94372','37196','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('94373','37197','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('94374','37198','2','20','1h','0',''), ('94375','37199','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('94376','37200','2','20','1h','0',''), ('94377','37202','2','1','1024','0',''), ('94378','37203','2','1','1024','0',''), ('94379','41072','2','10','','0',''), ('94380','41072','3','20','3m','0',''), ('94381','41073','2','10','','0',''), ('94382','41073','3','20','3m','0',''), ('94383','41074','3','1','8','0',''), ('94384','41075','2','10','','0',''), ('94385','41075','3','20','3m','0',''), ('94386','41076','2','10','','0',''), ('94387','41076','3','20','3m','0',''), ('94388','41077','3','1','8','0',''), ('94389','41078','3','20','1h','0',''), ('94390','41079','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('94391','41080','2','20','1d','0',''), ('94392','37232','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('94393','37232','2','20','1h','0',''), ('94398','37235','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94399','37235','2','20','1h','0',''), ('94400','37236','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('94401','37236','2','20','1h','0',''), ('94402','37237','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94403','37237','2','20','1h','0',''), ('94404','37238','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('94405','37238','2','20','1h','0',''), ('94406','41092','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94407','41092','2','20','1h','0',''), ('94408','37239','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('94413','37242','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('94414','37243','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('94415','37244','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('94416','37245','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('94417','37246','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('94418','37247','2','20','1h','0',''), ('94419','37248','2','20','1h','0',''), ('94420','37249','2','20','15m','0',''), ('94421','37250','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('94422','37251','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('94423','37252','2','20','1h','0',''), ('94424','37253','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('94425','37254','2','20','1h','0',''), ('94426','37256','2','1','1024','0',''), ('94427','37257','2','1','1024','0',''), ('94428','41093','2','10','','0',''), ('94429','41093','3','20','3m','0',''), ('94430','41094','2','10','','0',''), ('94431','41094','3','20','3m','0',''), ('94432','41095','3','1','8','0',''), ('94433','41096','2','10','','0',''), ('94434','41096','3','20','3m','0',''), ('94435','41097','2','10','','0',''), ('94436','41097','3','20','3m','0',''), ('94437','41098','3','1','8','0',''), ('94438','41099','3','20','1h','0',''), ('94439','41100','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('94440','41101','2','20','1d','0',''), ('94441','37286','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('94442','37286','2','20','1h','0',''), ('94447','37289','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94448','37289','2','20','1h','0',''), ('94449','37290','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('94450','37290','2','20','1h','0',''), ('94451','37291','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94452','37291','2','20','1h','0',''), ('94453','37292','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('94454','37292','2','20','1h','0',''), ('94455','41113','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94456','41113','2','20','1h','0',''), ('94457','37293','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('94462','37296','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('94463','37297','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('94464','37298','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('94465','37299','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('94466','37300','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('94467','37301','2','20','1h','0',''), ('94468','37302','2','20','1h','0',''), ('94469','37303','2','20','15m','0',''), ('94470','37304','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('94471','37305','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('94472','37306','2','20','1h','0',''), ('94473','37307','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('94474','37308','2','20','1h','0',''), ('94475','37310','2','1','1024','0',''), ('94476','37311','2','1','1024','0',''), ('94477','41114','2','10','','0',''), ('94478','41114','3','20','3m','0',''), ('94479','41115','2','10','','0',''), ('94480','41115','3','20','3m','0',''), ('94481','41116','3','1','8','0',''), ('94482','41117','2','10','','0',''), ('94483','41117','3','20','3m','0',''), ('94484','41118','2','10','','0',''), ('94485','41118','3','20','3m','0',''), ('94486','41119','3','1','8','0',''), ('94487','41120','3','20','1h','0',''), ('94488','41121','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('94489','41122','2','20','1d','0',''), ('94490','37340','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('94491','37340','2','20','1h','0',''), ('94496','37343','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94497','37343','2','20','1h','0',''), ('94498','37344','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('94499','37344','2','20','1h','0',''), ('94500','37345','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94501','37345','2','20','1h','0',''), ('94502','37346','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('94503','37346','2','20','1h','0',''), ('94504','41134','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94505','41134','2','20','1h','0',''), ('94506','37347','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('94511','37350','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('94512','37351','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('94513','37352','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('94514','37353','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('94515','37354','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('94516','37355','2','20','1h','0',''), ('94517','37356','2','20','1h','0',''), ('94518','37357','2','20','15m','0',''), ('94519','37358','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('94520','37359','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('94521','37360','2','20','1h','0',''), ('94522','37361','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('94523','37362','2','20','1h','0',''), ('94524','37364','2','1','1024','0',''), ('94525','37365','2','1','1024','0',''), ('94526','41135','2','10','','0',''), ('94527','41135','3','20','3m','0',''), ('94528','41136','2','10','','0',''), ('94529','41136','3','20','3m','0',''), ('94530','41137','3','1','8','0',''), ('94531','41138','2','10','','0',''), ('94532','41138','3','20','3m','0',''), ('94533','41139','2','10','','0',''), ('94534','41139','3','20','3m','0',''), ('94535','41140','3','1','8','0',''), ('94536','41141','3','20','1h','0',''), ('94537','41142','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('94538','41143','2','20','1d','0',''), ('94539','37394','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('94540','37394','2','20','1h','0',''), ('94545','37397','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94546','37397','2','20','1h','0',''), ('94547','37398','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('94548','37398','2','20','1h','0',''), ('94549','37399','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94550','37399','2','20','1h','0',''), ('94551','37400','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('94552','37400','2','20','1h','0',''), ('94553','41155','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94554','41155','2','20','1h','0',''), ('94555','37401','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('94560','37404','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('94561','37405','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('94562','37406','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('94563','37407','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('94564','37408','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('94565','37409','2','20','1h','0',''), ('94566','37410','2','20','1h','0',''), ('94567','37411','2','20','15m','0',''), ('94568','37412','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('94569','37413','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('94570','37414','2','20','1h','0',''), ('94571','37415','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('94572','37416','2','20','1h','0',''), ('94573','37418','2','1','1024','0',''), ('94574','37419','2','1','1024','0',''), ('94575','41156','2','10','','0',''), ('94576','41156','3','20','3m','0',''), ('94577','41157','2','10','','0',''), ('94578','41157','3','20','3m','0',''), ('94579','41158','3','1','8','0',''), ('94580','41159','2','10','','0',''), ('94581','41159','3','20','3m','0',''), ('94582','41160','2','10','','0',''), ('94583','41160','3','20','3m','0',''), ('94584','41161','3','1','8','0',''), ('94585','41162','3','20','1h','0',''), ('94586','41163','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('94587','41164','2','20','1d','0',''), ('94588','37448','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('94589','37448','2','20','1h','0',''), ('94594','37451','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94595','37451','2','20','1h','0',''), ('94596','37452','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('94597','37452','2','20','1h','0',''), ('94598','37453','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94599','37453','2','20','1h','0',''), ('94600','37454','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('94601','37454','2','20','1h','0',''), ('94602','41176','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94603','41176','2','20','1h','0',''), ('94604','37455','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('94609','37458','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('94610','37459','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('94611','37460','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('94612','37461','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('94613','37462','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('94614','37463','2','20','1h','0',''), ('94615','37464','2','20','1h','0',''), ('94616','37465','2','20','15m','0',''), ('94617','37466','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('94618','37467','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('94619','37468','2','20','1h','0',''), ('94620','37469','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('94621','37470','2','20','1h','0',''), ('94622','37472','2','1','1024','0',''), ('94623','37473','2','1','1024','0',''), ('94624','41177','2','10','','0',''), ('94625','41177','3','20','3m','0',''), ('94626','41178','2','10','','0',''), ('94627','41178','3','20','3m','0',''), ('94628','41179','3','1','8','0',''), ('94629','41180','2','10','','0',''), ('94630','41180','3','20','3m','0',''), ('94631','41181','2','10','','0',''), ('94632','41181','3','20','3m','0',''), ('94633','41182','3','1','8','0',''), ('94634','41183','3','20','1h','0',''), ('94635','41184','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('94636','41185','2','20','1d','0',''), ('94637','37502','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('94638','37502','2','20','1h','0',''), ('94643','37505','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94644','37505','2','20','1h','0',''), ('94645','37506','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('94646','37506','2','20','1h','0',''), ('94647','37507','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94648','37507','2','20','1h','0',''), ('94649','37508','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('94650','37508','2','20','1h','0',''), ('94651','41197','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94652','41197','2','20','1h','0',''), ('94653','37509','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('94658','37512','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('94659','37513','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('94660','37514','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('94661','37515','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('94662','37516','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('94663','37517','2','20','1h','0',''), ('94664','37518','2','20','1h','0',''), ('94665','37519','2','20','15m','0',''), ('94666','37520','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('94667','37521','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('94668','37522','2','20','1h','0',''), ('94669','37523','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('94670','37524','2','20','1h','0',''), ('94671','37526','2','1','1024','0',''), ('94672','37527','2','1','1024','0',''), ('94673','41198','2','10','','0',''), ('94674','41198','3','20','3m','0',''), ('94675','41199','2','10','','0',''), ('94676','41199','3','20','3m','0',''), ('94677','41200','3','1','8','0',''), ('94678','41201','2','10','','0',''), ('94679','41201','3','20','3m','0',''), ('94680','41202','2','10','','0',''), ('94681','41202','3','20','3m','0',''), ('94682','41203','3','1','8','0',''), ('94683','41204','3','20','1h','0',''), ('94684','41205','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('94685','41206','2','20','1d','0',''), ('94686','37556','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('94687','37556','2','20','1h','0',''), ('94692','37559','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94693','37559','2','20','1h','0',''), ('94694','37560','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('94695','37560','2','20','1h','0',''), ('94696','37561','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94697','37561','2','20','1h','0',''), ('94698','37562','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('94699','37562','2','20','1h','0',''), ('94700','41218','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94701','41218','2','20','1h','0',''), ('94702','37563','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('94707','37566','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('94708','37567','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('94709','37568','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('94710','37569','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('94711','37570','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('94712','37571','2','20','1h','0',''), ('94713','37572','2','20','1h','0',''), ('94714','37573','2','20','15m','0',''), ('94715','37574','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('94716','37575','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('94717','37576','2','20','1h','0',''), ('94718','37577','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('94719','37578','2','20','1h','0',''), ('94720','37580','2','1','1024','0',''), ('94721','37581','2','1','1024','0',''), ('94722','41219','2','10','','0',''), ('94723','41219','3','20','3m','0',''), ('94724','41220','2','10','','0',''), ('94725','41220','3','20','3m','0',''), ('94726','41221','3','1','8','0',''), ('94727','41222','2','10','','0',''), ('94728','41222','3','20','3m','0',''), ('94729','41223','2','10','','0',''), ('94730','41223','3','20','3m','0',''), ('94731','41224','3','1','8','0',''), ('94732','41225','3','20','1h','0',''), ('94733','41226','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('94734','41227','2','20','1d','0',''), ('94735','37610','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('94736','37610','2','20','1h','0',''), ('94741','37613','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94742','37613','2','20','1h','0',''), ('94743','37614','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('94744','37614','2','20','1h','0',''), ('94745','37615','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94746','37615','2','20','1h','0',''), ('94747','37616','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('94748','37616','2','20','1h','0',''), ('94749','41239','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94750','41239','2','20','1h','0',''), ('94751','37617','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('94756','37620','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('94757','37621','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('94758','37622','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('94759','37623','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('94760','37624','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('94761','37625','2','20','1h','0',''), ('94762','37626','2','20','1h','0',''), ('94763','37627','2','20','15m','0',''), ('94764','37628','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('94765','37629','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('94766','37630','2','20','1h','0',''), ('94767','37631','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('94768','37632','2','20','1h','0',''), ('94769','37634','2','1','1024','0',''), ('94770','37635','2','1','1024','0',''), ('94771','41240','2','10','','0',''), ('94772','41240','3','20','3m','0',''), ('94773','41241','2','10','','0',''), ('94774','41241','3','20','3m','0',''), ('94775','41242','3','1','8','0',''), ('94776','41243','2','10','','0',''), ('94777','41243','3','20','3m','0',''), ('94778','41244','2','10','','0',''), ('94779','41244','3','20','3m','0',''), ('94780','41245','3','1','8','0',''), ('94781','41246','3','20','1h','0',''), ('94782','41247','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('94783','41248','2','20','1d','0',''), ('94784','37664','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('94785','37664','2','20','1h','0',''), ('94790','37667','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94791','37667','2','20','1h','0',''), ('94792','37668','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('94793','37668','2','20','1h','0',''), ('94794','37669','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94795','37669','2','20','1h','0',''), ('94796','37670','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('94797','37670','2','20','1h','0',''), ('94798','41260','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94799','41260','2','20','1h','0',''), ('94800','37671','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('94805','37674','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('94806','37675','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('94807','37676','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('94808','37677','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('94809','37678','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('94810','37679','2','20','1h','0',''), ('94811','37680','2','20','1h','0',''), ('94812','37681','2','20','15m','0',''), ('94813','37682','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('94814','37683','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('94815','37684','2','20','1h','0',''), ('94816','37685','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('94817','37686','2','20','1h','0',''), ('94818','37688','2','1','1024','0',''), ('94819','37689','2','1','1024','0',''), ('94820','41261','2','10','','0',''), ('94821','41261','3','20','3m','0',''), ('94822','41262','2','10','','0',''), ('94823','41262','3','20','3m','0',''), ('94824','41263','3','1','8','0',''), ('94825','41264','2','10','','0',''), ('94826','41264','3','20','3m','0',''), ('94827','41265','2','10','','0',''), ('94828','41265','3','20','3m','0',''), ('94829','41266','3','1','8','0',''), ('94830','41267','3','20','1h','0',''), ('94831','41268','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('94832','41269','2','20','1d','0',''), ('94833','37718','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('94834','37718','2','20','1h','0',''), ('94839','37721','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94840','37721','2','20','1h','0',''), ('94841','37722','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('94842','37722','2','20','1h','0',''), ('94843','37723','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94844','37723','2','20','1h','0',''), ('94845','37724','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('94846','37724','2','20','1h','0',''), ('94847','41281','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94848','41281','2','20','1h','0',''), ('94849','37725','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('94854','37728','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('94855','37729','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('94856','37730','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('94857','37731','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('94858','37732','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('94859','37733','2','20','1h','0',''), ('94860','37734','2','20','1h','0',''), ('94861','37735','2','20','15m','0',''), ('94862','37736','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('94863','37737','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('94864','37738','2','20','1h','0',''), ('94865','37739','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('94866','37740','2','20','1h','0',''), ('94867','37742','2','1','1024','0',''), ('94868','37743','2','1','1024','0',''), ('94869','41282','2','10','','0',''), ('94870','41282','3','20','3m','0',''), ('94871','41283','2','10','','0',''), ('94872','41283','3','20','3m','0',''), ('94873','41284','3','1','8','0',''), ('94874','41285','2','10','','0',''), ('94875','41285','3','20','3m','0',''), ('94876','41286','2','10','','0',''), ('94877','41286','3','20','3m','0',''), ('94878','41287','3','1','8','0',''), ('94879','41288','3','20','1h','0',''), ('94880','41289','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('94881','41290','2','20','1d','0',''), ('94882','37772','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('94883','37772','2','20','1h','0',''), ('94888','37775','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94889','37775','2','20','1h','0',''), ('94890','37776','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('94891','37776','2','20','1h','0',''), ('94892','37777','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94893','37777','2','20','1h','0',''), ('94894','37778','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('94895','37778','2','20','1h','0',''), ('94896','41302','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94897','41302','2','20','1h','0',''), ('94898','37779','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('94903','37782','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('94904','37783','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('94905','37784','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('94906','37785','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('94907','37786','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('94908','37787','2','20','1h','0',''), ('94909','37788','2','20','1h','0',''), ('94910','37789','2','20','15m','0',''), ('94911','37790','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('94912','37791','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('94913','37792','2','20','1h','0',''), ('94914','37793','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('94915','37794','2','20','1h','0',''), ('94916','37796','2','1','1024','0',''), ('94917','37797','2','1','1024','0',''), ('94918','41303','2','10','','0',''), ('94919','41303','3','20','3m','0',''), ('94920','41304','2','10','','0',''), ('94921','41304','3','20','3m','0',''), ('94922','41305','3','1','8','0',''), ('94923','41306','2','10','','0',''), ('94924','41306','3','20','3m','0',''), ('94925','41307','2','10','','0',''), ('94926','41307','3','20','3m','0',''), ('94927','41308','3','1','8','0',''), ('94928','41309','3','20','1h','0',''), ('94929','41310','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('94930','41311','2','20','1d','0',''), ('94931','37826','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('94932','37826','2','20','1h','0',''), ('94937','37829','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94938','37829','2','20','1h','0',''), ('94939','37830','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('94940','37830','2','20','1h','0',''), ('94941','37831','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94942','37831','2','20','1h','0',''), ('94943','37832','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('94944','37832','2','20','1h','0',''), ('94945','41323','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94946','41323','2','20','1h','0',''), ('94947','37833','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('94952','37836','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('94953','37837','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('94954','37838','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('94955','37839','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('94956','37840','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('94957','37841','2','20','1h','0',''), ('94958','37842','2','20','1h','0',''), ('94959','37843','2','20','15m','0',''), ('94960','37844','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('94961','37845','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('94962','37846','2','20','1h','0',''), ('94963','37847','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('94964','37848','2','20','1h','0',''), ('94965','37850','2','1','1024','0',''), ('94966','37851','2','1','1024','0',''), ('94967','41324','2','10','','0',''), ('94968','41324','3','20','3m','0',''), ('94969','41325','2','10','','0',''), ('94970','41325','3','20','3m','0',''), ('94971','41326','3','1','8','0',''), ('94972','41327','2','10','','0',''), ('94973','41327','3','20','3m','0',''), ('94974','41328','2','10','','0',''), ('94975','41328','3','20','3m','0',''), ('94976','41329','3','1','8','0',''), ('94977','41330','3','20','1h','0',''), ('94978','41331','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('94979','41332','2','20','1d','0',''), ('94980','37880','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('94981','37880','2','20','1h','0',''), ('94986','37883','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94987','37883','2','20','1h','0',''), ('94988','37884','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('94989','37884','2','20','1h','0',''), ('94990','37885','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94991','37885','2','20','1h','0',''), ('94992','37886','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('94993','37886','2','20','1h','0',''), ('94994','41344','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('94995','41344','2','20','1h','0',''), ('94996','37887','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('95001','37890','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('95002','37891','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('95003','37892','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('95004','37893','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('95005','37894','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('95006','37895','2','20','1h','0',''), ('95007','37896','2','20','1h','0',''), ('95008','37897','2','20','15m','0',''), ('95009','37898','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('95010','37899','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('95011','37900','2','20','1h','0',''), ('95012','37901','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('95013','37902','2','20','1h','0',''), ('95014','37904','2','1','1024','0',''), ('95015','37905','2','1','1024','0',''), ('95016','41345','2','10','','0',''), ('95017','41345','3','20','3m','0',''), ('95018','41346','2','10','','0',''), ('95019','41346','3','20','3m','0',''), ('95020','41347','3','1','8','0',''), ('95021','41348','2','10','','0',''), ('95022','41348','3','20','3m','0',''), ('95023','41349','2','10','','0',''), ('95024','41349','3','20','3m','0',''), ('95025','41350','3','1','8','0',''), ('95026','41351','3','20','1h','0',''), ('95027','41352','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('95028','41353','2','20','1d','0',''), ('95029','37934','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('95030','37934','2','20','1h','0',''), ('95035','37937','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95036','37937','2','20','1h','0',''), ('95037','37938','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('95038','37938','2','20','1h','0',''), ('95039','37939','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95040','37939','2','20','1h','0',''), ('95041','37940','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('95042','37940','2','20','1h','0',''), ('95043','41365','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95044','41365','2','20','1h','0',''), ('95045','37941','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('95050','37944','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('95051','37945','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('95052','37946','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('95053','37947','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('95054','37948','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('95055','37949','2','20','1h','0',''), ('95056','37950','2','20','1h','0',''), ('95057','37951','2','20','15m','0',''), ('95058','37952','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('95059','37953','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('95060','37954','2','20','1h','0',''), ('95061','37955','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('95062','37956','2','20','1h','0',''), ('95063','37958','2','1','1024','0',''), ('95064','37959','2','1','1024','0',''), ('95065','41366','2','10','','0',''), ('95066','41366','3','20','3m','0',''), ('95067','41367','2','10','','0',''), ('95068','41367','3','20','3m','0',''), ('95069','41368','3','1','8','0',''), ('95070','41369','2','10','','0',''), ('95071','41369','3','20','3m','0',''), ('95072','41370','2','10','','0',''), ('95073','41370','3','20','3m','0',''), ('95074','41371','3','1','8','0',''), ('95075','41372','3','20','1h','0',''), ('95076','41373','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('95077','41374','2','20','1d','0',''), ('95078','37988','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('95079','37988','2','20','1h','0',''), ('95084','37991','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95085','37991','2','20','1h','0',''), ('95086','37992','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('95087','37992','2','20','1h','0',''), ('95088','37993','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95089','37993','2','20','1h','0',''), ('95090','37994','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('95091','37994','2','20','1h','0',''), ('95092','41386','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95093','41386','2','20','1h','0',''), ('95094','37995','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('95099','37998','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('95100','37999','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('95101','38000','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('95102','38001','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('95103','38002','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('95104','38003','2','20','1h','0',''), ('95105','38004','2','20','1h','0',''), ('95106','38005','2','20','15m','0',''), ('95107','38006','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('95108','38007','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('95109','38008','2','20','1h','0',''), ('95110','38009','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('95111','38010','2','20','1h','0',''), ('95112','38012','2','1','1024','0',''), ('95113','38013','2','1','1024','0',''), ('95114','41387','2','10','','0',''), ('95115','41387','3','20','3m','0',''), ('95116','41388','2','10','','0',''), ('95117','41388','3','20','3m','0',''), ('95118','41389','3','1','8','0',''), ('95119','41390','2','10','','0',''), ('95120','41390','3','20','3m','0',''), ('95121','41391','2','10','','0',''), ('95122','41391','3','20','3m','0',''), ('95123','41392','3','1','8','0',''), ('95124','41393','3','20','1h','0',''), ('95125','41394','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('95126','41395','2','20','1d','0',''), ('95127','38042','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('95128','38042','2','20','1h','0',''), ('95133','38045','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95134','38045','2','20','1h','0',''), ('95135','38046','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('95136','38046','2','20','1h','0',''), ('95137','38047','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95138','38047','2','20','1h','0',''), ('95139','38048','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('95140','38048','2','20','1h','0',''), ('95141','41407','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95142','41407','2','20','1h','0',''), ('95143','38049','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('95148','38052','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('95149','38053','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('95150','38054','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('95151','38055','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('95152','38056','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('95153','38057','2','20','1h','0',''), ('95154','38058','2','20','1h','0',''), ('95155','38059','2','20','15m','0',''), ('95156','38060','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('95157','38061','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('95158','38062','2','20','1h','0',''), ('95159','38063','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('95160','38064','2','20','1h','0',''), ('95161','38066','2','1','1024','0',''), ('95162','38067','2','1','1024','0',''), ('95163','41408','2','10','','0',''), ('95164','41408','3','20','3m','0',''), ('95165','41409','2','10','','0',''), ('95166','41409','3','20','3m','0',''), ('95167','41410','3','1','8','0',''), ('95168','41411','2','10','','0',''), ('95169','41411','3','20','3m','0',''), ('95170','41412','2','10','','0',''), ('95171','41412','3','20','3m','0',''), ('95172','41413','3','1','8','0',''), ('95173','41414','3','20','1h','0',''), ('95174','41415','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('95175','41416','2','20','1d','0',''), ('95176','38096','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('95177','38096','2','20','1h','0',''), ('95182','38099','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95183','38099','2','20','1h','0',''), ('95184','38100','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('95185','38100','2','20','1h','0',''), ('95186','38101','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95187','38101','2','20','1h','0',''), ('95188','38102','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('95189','38102','2','20','1h','0',''), ('95190','41428','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95191','41428','2','20','1h','0',''), ('95192','38103','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('95197','38106','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('95198','38107','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('95199','38108','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('95200','38109','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('95201','38110','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('95202','38111','2','20','1h','0',''), ('95203','38112','2','20','1h','0',''), ('95204','38113','2','20','15m','0',''), ('95205','38114','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('95206','38115','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('95207','38116','2','20','1h','0',''), ('95208','38117','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('95209','38118','2','20','1h','0',''), ('95210','38120','2','1','1024','0',''), ('95211','38121','2','1','1024','0',''), ('95212','41429','2','10','','0',''), ('95213','41429','3','20','3m','0',''), ('95214','41430','2','10','','0',''), ('95215','41430','3','20','3m','0',''), ('95216','41431','3','1','8','0',''), ('95217','41432','2','10','','0',''), ('95218','41432','3','20','3m','0',''), ('95219','41433','2','10','','0',''), ('95220','41433','3','20','3m','0',''), ('95221','41434','3','1','8','0',''), ('95222','41435','3','20','1h','0',''), ('95223','41436','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('95224','41437','2','20','1d','0',''), ('95225','38150','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('95226','38150','2','20','1h','0',''), ('95231','38153','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95232','38153','2','20','1h','0',''), ('95233','38154','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('95234','38154','2','20','1h','0',''), ('95235','38155','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95236','38155','2','20','1h','0',''), ('95237','38156','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('95238','38156','2','20','1h','0',''), ('95239','41449','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95240','41449','2','20','1h','0',''), ('95241','38157','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('95246','38160','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('95247','38161','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('95248','38162','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('95249','38163','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('95250','38164','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('95251','38165','2','20','1h','0',''), ('95252','38166','2','20','1h','0',''), ('95253','38167','2','20','15m','0',''), ('95254','38168','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('95255','38169','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('95256','38170','2','20','1h','0',''), ('95257','38171','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('95258','38172','2','20','1h','0',''), ('95259','38174','2','1','1024','0',''), ('95260','38175','2','1','1024','0',''), ('95261','41450','2','10','','0',''), ('95262','41450','3','20','3m','0',''), ('95263','41451','2','10','','0',''), ('95264','41451','3','20','3m','0',''), ('95265','41452','3','1','8','0',''), ('95266','41453','2','10','','0',''), ('95267','41453','3','20','3m','0',''), ('95268','41454','2','10','','0',''), ('95269','41454','3','20','3m','0',''), ('95270','41455','3','1','8','0',''), ('95271','41456','3','20','1h','0',''), ('95272','41457','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('95273','41458','2','20','1d','0',''), ('95274','38204','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('95275','38204','2','20','1h','0',''), ('95280','38207','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95281','38207','2','20','1h','0',''), ('95282','38208','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('95283','38208','2','20','1h','0',''), ('95284','38209','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95285','38209','2','20','1h','0',''), ('95286','38210','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('95287','38210','2','20','1h','0',''), ('95288','41470','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95289','41470','2','20','1h','0',''), ('95290','38211','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('95295','38214','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('95296','38215','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('95297','38216','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('95298','38217','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('95299','38218','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('95300','38219','2','20','1h','0',''), ('95301','38220','2','20','1h','0',''), ('95302','38221','2','20','15m','0',''), ('95303','38222','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('95304','38223','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('95305','38224','2','20','1h','0',''), ('95306','38225','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('95307','38226','2','20','1h','0',''), ('95308','38228','2','1','1024','0',''), ('95309','38229','2','1','1024','0',''), ('95310','41471','2','10','','0',''), ('95311','41471','3','20','3m','0',''), ('95312','41472','2','10','','0',''), ('95313','41472','3','20','3m','0',''), ('95314','41473','3','1','8','0',''), ('95315','41474','2','10','','0',''), ('95316','41474','3','20','3m','0',''), ('95317','41475','2','10','','0',''), ('95318','41475','3','20','3m','0',''), ('95319','41476','3','1','8','0',''), ('95320','41477','3','20','1h','0',''), ('95321','41478','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('95322','41479','2','20','1d','0',''), ('95323','38258','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('95324','38258','2','20','1h','0',''), ('95329','38261','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95330','38261','2','20','1h','0',''), ('95331','38262','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('95332','38262','2','20','1h','0',''), ('95333','38263','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95334','38263','2','20','1h','0',''), ('95335','38264','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('95336','38264','2','20','1h','0',''), ('95337','41491','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95338','41491','2','20','1h','0',''), ('95339','38265','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('95344','38268','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('95345','38269','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('95346','38270','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('95347','38271','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('95348','38272','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('95349','38273','2','20','1h','0',''), ('95350','38274','2','20','1h','0',''), ('95351','38275','2','20','15m','0',''), ('95352','38276','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('95353','38277','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('95354','38278','2','20','1h','0',''), ('95355','38279','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('95356','38280','2','20','1h','0',''), ('95357','38282','2','1','1024','0',''), ('95358','38283','2','1','1024','0',''), ('95359','41492','2','10','','0',''), ('95360','41492','3','20','3m','0',''), ('95361','41493','2','10','','0',''), ('95362','41493','3','20','3m','0',''), ('95363','41494','3','1','8','0',''), ('95364','41495','2','10','','0',''), ('95365','41495','3','20','3m','0',''), ('95366','41496','2','10','','0',''), ('95367','41496','3','20','3m','0',''), ('95368','41497','3','1','8','0',''), ('95369','41498','3','20','1h','0',''), ('95370','41499','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('95371','41500','2','20','1d','0',''), ('95372','38312','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('95373','38312','2','20','1h','0',''), ('95378','38315','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95379','38315','2','20','1h','0',''), ('95380','38316','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('95381','38316','2','20','1h','0',''), ('95382','38317','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95383','38317','2','20','1h','0',''), ('95384','38318','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('95385','38318','2','20','1h','0',''), ('95386','41512','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95387','41512','2','20','1h','0',''), ('95388','38319','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('95393','38322','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('95394','38323','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('95395','38324','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('95396','38325','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('95397','38326','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('95398','38327','2','20','1h','0',''), ('95399','38328','2','20','1h','0',''), ('95400','38329','2','20','15m','0',''), ('95401','38330','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('95402','38331','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('95403','38332','2','20','1h','0',''), ('95404','38333','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('95405','38334','2','20','1h','0',''), ('95406','38336','2','1','1024','0',''), ('95407','38337','2','1','1024','0',''), ('95408','41513','2','10','','0',''), ('95409','41513','3','20','3m','0',''), ('95410','41514','2','10','','0',''), ('95411','41514','3','20','3m','0',''), ('95412','41515','3','1','8','0',''), ('95413','41516','2','10','','0',''), ('95414','41516','3','20','3m','0',''), ('95415','41517','2','10','','0',''), ('95416','41517','3','20','3m','0',''), ('95417','41518','3','1','8','0',''), ('95418','41519','3','20','1h','0',''), ('95419','41520','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('95420','41521','2','20','1d','0',''), ('95421','38366','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('95422','38366','2','20','1h','0',''), ('95427','38369','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95428','38369','2','20','1h','0',''), ('95429','38370','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('95430','38370','2','20','1h','0',''), ('95431','38371','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95432','38371','2','20','1h','0',''), ('95433','38372','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('95434','38372','2','20','1h','0',''), ('95435','41533','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95436','41533','2','20','1h','0',''), ('95437','38373','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('95442','38376','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('95443','38377','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('95444','38378','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('95445','38379','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('95446','38380','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('95447','38381','2','20','1h','0',''), ('95448','38382','2','20','1h','0',''), ('95449','38383','2','20','15m','0',''), ('95450','38384','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('95451','38385','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('95452','38386','2','20','1h','0',''), ('95453','38387','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('95454','38388','2','20','1h','0',''), ('95455','38390','2','1','1024','0',''), ('95456','38391','2','1','1024','0',''), ('95457','41534','2','10','','0',''), ('95458','41534','3','20','3m','0',''), ('95459','41535','2','10','','0',''), ('95460','41535','3','20','3m','0',''), ('95461','41536','3','1','8','0',''), ('95462','41537','2','10','','0',''), ('95463','41537','3','20','3m','0',''), ('95464','41538','2','10','','0',''), ('95465','41538','3','20','3m','0',''), ('95466','41539','3','1','8','0',''), ('95467','41540','3','20','1h','0',''), ('95468','41541','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('95469','41542','2','20','1d','0',''), ('95470','38420','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('95471','38420','2','20','1h','0',''), ('95476','38423','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95477','38423','2','20','1h','0',''), ('95478','38424','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('95479','38424','2','20','1h','0',''), ('95480','38425','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95481','38425','2','20','1h','0',''), ('95482','38426','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('95483','38426','2','20','1h','0',''), ('95484','41554','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95485','41554','2','20','1h','0',''), ('95486','38427','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('95491','38430','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('95492','38431','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('95493','38432','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('95494','38433','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('95495','38434','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('95496','38435','2','20','1h','0',''), ('95497','38436','2','20','1h','0',''), ('95498','38437','2','20','15m','0',''), ('95499','38438','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('95500','38439','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('95501','38440','2','20','1h','0',''), ('95502','38441','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('95503','38442','2','20','1h','0',''), ('95504','38444','2','1','1024','0',''), ('95505','38445','2','1','1024','0',''), ('95506','41555','2','10','','0',''), ('95507','41555','3','20','3m','0',''), ('95508','41556','2','10','','0',''), ('95509','41556','3','20','3m','0',''), ('95510','41557','3','1','8','0',''), ('95511','41558','2','10','','0',''), ('95512','41558','3','20','3m','0',''), ('95513','41559','2','10','','0',''), ('95514','41559','3','20','3m','0',''), ('95515','41560','3','1','8','0',''), ('95516','41561','3','20','1h','0',''), ('95517','41562','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('95518','41563','2','20','1d','0',''), ('95519','38474','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('95520','38474','2','20','1h','0',''), ('95525','38477','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95526','38477','2','20','1h','0',''), ('95527','38478','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('95528','38478','2','20','1h','0',''), ('95529','38479','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95530','38479','2','20','1h','0',''), ('95531','38480','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('95532','38480','2','20','1h','0',''), ('95533','41575','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95534','41575','2','20','1h','0',''), ('95535','38481','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('95540','38484','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('95541','38485','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('95542','38486','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('95543','38487','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('95544','38488','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('95545','38489','2','20','1h','0',''), ('95546','38490','2','20','1h','0',''), ('95547','38491','2','20','15m','0',''), ('95548','38492','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('95549','38493','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('95550','38494','2','20','1h','0',''), ('95551','38495','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('95552','38496','2','20','1h','0',''), ('95553','38498','2','1','1024','0',''), ('95554','38499','2','1','1024','0',''), ('95555','41576','2','10','','0',''), ('95556','41576','3','20','3m','0',''), ('95557','41577','2','10','','0',''), ('95558','41577','3','20','3m','0',''), ('95559','41578','3','1','8','0',''), ('95560','41579','2','10','','0',''), ('95561','41579','3','20','3m','0',''), ('95562','41580','2','10','','0',''), ('95563','41580','3','20','3m','0',''), ('95564','41581','3','1','8','0',''), ('95565','41582','3','20','1h','0',''), ('95566','41583','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('95567','41584','2','20','1d','0',''), ('95568','38528','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('95569','38528','2','20','1h','0',''), ('95574','38531','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95575','38531','2','20','1h','0',''), ('95576','38532','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('95577','38532','2','20','1h','0',''), ('95578','38533','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95579','38533','2','20','1h','0',''), ('95580','38534','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('95581','38534','2','20','1h','0',''), ('95582','41596','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95583','41596','2','20','1h','0',''), ('95584','38535','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('95589','38538','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('95590','38539','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('95591','38540','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('95592','38541','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('95593','38542','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('95594','38543','2','20','1h','0',''), ('95595','38544','2','20','1h','0',''), ('95596','38545','2','20','15m','0',''), ('95597','38546','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('95598','38547','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('95599','38548','2','20','1h','0',''), ('95600','38549','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('95601','38550','2','20','1h','0',''), ('95602','38552','2','1','1024','0',''), ('95603','38553','2','1','1024','0',''), ('95604','41597','2','10','','0',''), ('95605','41597','3','20','3m','0',''), ('95606','41598','2','10','','0',''), ('95607','41598','3','20','3m','0',''), ('95608','41599','3','1','8','0',''), ('95609','41600','2','10','','0',''), ('95610','41600','3','20','3m','0',''), ('95611','41601','2','10','','0',''), ('95612','41601','3','20','3m','0',''), ('95613','41602','3','1','8','0',''), ('95614','41603','3','20','1h','0',''), ('95615','41604','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('95616','41605','2','20','1d','0',''), ('95617','38582','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('95618','38582','2','20','1h','0',''), ('95623','38585','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95624','38585','2','20','1h','0',''), ('95625','38586','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('95626','38586','2','20','1h','0',''), ('95627','38587','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95628','38587','2','20','1h','0',''), ('95629','38588','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('95630','38588','2','20','1h','0',''), ('95631','41617','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95632','41617','2','20','1h','0',''), ('95633','38589','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('95638','38592','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('95639','38593','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('95640','38594','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('95641','38595','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('95642','38596','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('95643','38597','2','20','1h','0',''), ('95644','38598','2','20','1h','0',''), ('95645','38599','2','20','15m','0',''), ('95646','38600','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('95647','38601','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('95648','38602','2','20','1h','0',''), ('95649','38603','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('95650','38604','2','20','1h','0',''), ('95651','38606','2','1','1024','0',''), ('95652','38607','2','1','1024','0',''), ('95653','41618','2','10','','0',''), ('95654','41618','3','20','3m','0',''), ('95655','41619','2','10','','0',''), ('95656','41619','3','20','3m','0',''), ('95657','41620','3','1','8','0',''), ('95658','41621','2','10','','0',''), ('95659','41621','3','20','3m','0',''), ('95660','41622','2','10','','0',''), ('95661','41622','3','20','3m','0',''), ('95662','41623','3','1','8','0',''), ('95663','41624','3','20','1h','0',''), ('95664','41625','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('95665','41626','2','20','1d','0',''), ('95666','38636','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('95667','38636','2','20','1h','0',''), ('95672','38639','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95673','38639','2','20','1h','0',''), ('95674','38640','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('95675','38640','2','20','1h','0',''), ('95676','38641','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95677','38641','2','20','1h','0',''), ('95678','38642','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('95679','38642','2','20','1h','0',''), ('95680','41638','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95681','41638','2','20','1h','0',''), ('95682','38643','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('95687','38646','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('95688','38647','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('95689','38648','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('95690','38649','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('95691','38650','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('95692','38651','2','20','1h','0',''), ('95693','38652','2','20','1h','0',''), ('95694','38653','2','20','15m','0',''), ('95695','38654','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('95696','38655','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('95697','38656','2','20','1h','0',''), ('95698','38657','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('95699','38658','2','20','1h','0',''), ('95700','38660','2','1','1024','0',''), ('95701','38661','2','1','1024','0',''), ('95702','41639','2','10','','0',''), ('95703','41639','3','20','3m','0',''), ('95704','41640','2','10','','0',''), ('95705','41640','3','20','3m','0',''), ('95706','41641','3','1','8','0',''), ('95707','41642','2','10','','0',''), ('95708','41642','3','20','3m','0',''), ('95709','41643','2','10','','0',''), ('95710','41643','3','20','3m','0',''), ('95711','41644','3','1','8','0',''), ('95712','41645','3','20','1h','0',''), ('95713','41646','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('95714','41647','2','20','1d','0',''), ('95715','38690','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('95716','38690','2','20','1h','0',''), ('95721','38693','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95722','38693','2','20','1h','0',''), ('95723','38694','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('95724','38694','2','20','1h','0',''), ('95725','38695','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95726','38695','2','20','1h','0',''), ('95727','38696','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('95728','38696','2','20','1h','0',''), ('95729','41659','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95730','41659','2','20','1h','0',''), ('95731','38697','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('95736','38700','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('95737','38701','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('95738','38702','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('95739','38703','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('95740','38704','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('95741','38705','2','20','1h','0',''), ('95742','38706','2','20','1h','0',''), ('95743','38707','2','20','15m','0',''), ('95744','38708','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('95745','38709','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('95746','38710','2','20','1h','0',''), ('95747','38711','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('95748','38712','2','20','1h','0',''), ('95749','38714','2','1','1024','0',''), ('95750','38715','2','1','1024','0',''), ('95751','41660','2','10','','0',''), ('95752','41660','3','20','3m','0',''), ('95753','41661','2','10','','0',''), ('95754','41661','3','20','3m','0',''), ('95755','41662','3','1','8','0',''), ('95756','41663','2','10','','0',''), ('95757','41663','3','20','3m','0',''), ('95758','41664','2','10','','0',''), ('95759','41664','3','20','3m','0',''), ('95760','41665','3','1','8','0',''), ('95761','41666','3','20','1h','0',''), ('95762','41667','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('95763','41668','2','20','1d','0',''), ('95764','38744','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('95765','38744','2','20','1h','0',''), ('95770','38747','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95771','38747','2','20','1h','0',''), ('95772','38748','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('95773','38748','2','20','1h','0',''), ('95774','38749','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95775','38749','2','20','1h','0',''), ('95776','38750','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('95777','38750','2','20','1h','0',''), ('95778','41680','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95779','41680','2','20','1h','0',''), ('95780','38751','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('95785','38754','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('95786','38755','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('95787','38756','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('95788','38757','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('95789','38758','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('95790','38759','2','20','1h','0',''), ('95791','38760','2','20','1h','0',''), ('95792','38761','2','20','15m','0',''), ('95793','38762','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('95794','38763','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('95795','38764','2','20','1h','0',''), ('95796','38765','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('95797','38766','2','20','1h','0',''), ('95798','38768','2','1','1024','0',''), ('95799','38769','2','1','1024','0',''), ('95800','41681','2','10','','0',''), ('95801','41681','3','20','3m','0',''), ('95802','41682','2','10','','0',''), ('95803','41682','3','20','3m','0',''), ('95804','41683','3','1','8','0',''), ('95805','41684','2','10','','0',''), ('95806','41684','3','20','3m','0',''), ('95807','41685','2','10','','0',''), ('95808','41685','3','20','3m','0',''), ('95809','41686','3','1','8','0',''), ('95810','41687','3','20','1h','0',''), ('95811','41688','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('95812','41689','2','20','1d','0',''), ('95813','38798','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('95814','38798','2','20','1h','0',''), ('95819','38801','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95820','38801','2','20','1h','0',''), ('95821','38802','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('95822','38802','2','20','1h','0',''), ('95823','38803','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95824','38803','2','20','1h','0',''), ('95825','38804','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('95826','38804','2','20','1h','0',''), ('95827','41701','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95828','41701','2','20','1h','0',''), ('95829','38805','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('95834','38808','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('95835','38809','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('95836','38810','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('95837','38811','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('95838','38812','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('95839','38813','2','20','1h','0',''), ('95840','38814','2','20','1h','0',''), ('95841','38815','2','20','15m','0',''), ('95842','38816','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('95843','38817','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('95844','38818','2','20','1h','0',''), ('95845','38819','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('95846','38820','2','20','1h','0',''), ('95847','38822','2','1','1024','0',''), ('95848','38823','2','1','1024','0',''), ('95849','41702','2','10','','0',''), ('95850','41702','3','20','3m','0',''), ('95851','41703','2','10','','0',''), ('95852','41703','3','20','3m','0',''), ('95853','41704','3','1','8','0',''), ('95854','41705','2','10','','0',''), ('95855','41705','3','20','3m','0',''), ('95856','41706','2','10','','0',''), ('95857','41706','3','20','3m','0',''), ('95858','41707','3','1','8','0',''), ('95859','41708','3','20','1h','0',''), ('95860','41709','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('95861','41710','2','20','1d','0',''), ('95862','38852','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('95863','38852','2','20','1h','0',''), ('95868','38855','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95869','38855','2','20','1h','0',''), ('95870','38856','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('95871','38856','2','20','1h','0',''), ('95872','38857','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95873','38857','2','20','1h','0',''), ('95874','38858','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('95875','38858','2','20','1h','0',''), ('95876','41722','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95877','41722','2','20','1h','0',''), ('95878','38859','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('95883','38862','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('95884','38863','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('95885','38864','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('95886','38865','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('95887','38866','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('95888','38867','2','20','1h','0',''), ('95889','38868','2','20','1h','0',''), ('95890','38869','2','20','15m','0',''), ('95891','38870','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('95892','38871','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('95893','38872','2','20','1h','0',''), ('95894','38873','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('95895','38874','2','20','1h','0',''), ('95896','38876','2','1','1024','0',''), ('95897','38877','2','1','1024','0',''), ('95898','41723','2','10','','0',''), ('95899','41723','3','20','3m','0',''), ('95900','41724','2','10','','0',''), ('95901','41724','3','20','3m','0',''), ('95902','41725','3','1','8','0',''), ('95903','41726','2','10','','0',''), ('95904','41726','3','20','3m','0',''), ('95905','41727','2','10','','0',''), ('95906','41727','3','20','3m','0',''), ('95907','41728','3','1','8','0',''), ('95908','41729','3','20','1h','0',''), ('95909','41730','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('95910','41731','2','20','1d','0',''), ('95911','38906','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('95912','38906','2','20','1h','0',''), ('95917','38909','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95918','38909','2','20','1h','0',''), ('95919','38910','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('95920','38910','2','20','1h','0',''), ('95921','38911','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95922','38911','2','20','1h','0',''), ('95923','38912','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('95924','38912','2','20','1h','0',''), ('95925','41743','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95926','41743','2','20','1h','0',''), ('95927','38913','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('95932','38916','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('95933','38917','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('95934','38918','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('95935','38919','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('95936','38920','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('95937','38921','2','20','1h','0',''), ('95938','38922','2','20','1h','0',''), ('95939','38923','2','20','15m','0',''), ('95940','38924','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('95941','38925','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('95942','38926','2','20','1h','0',''), ('95943','38927','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('95944','38928','2','20','1h','0',''), ('95945','38930','2','1','1024','0',''), ('95946','38931','2','1','1024','0',''), ('95947','41744','2','10','','0',''), ('95948','41744','3','20','3m','0',''), ('95949','41745','2','10','','0',''), ('95950','41745','3','20','3m','0',''), ('95951','41746','3','1','8','0',''), ('95952','41747','2','10','','0',''), ('95953','41747','3','20','3m','0',''), ('95954','41748','2','10','','0',''), ('95955','41748','3','20','3m','0',''), ('95956','41749','3','1','8','0',''), ('95957','41750','3','20','1h','0',''), ('95958','41751','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('95959','41752','2','20','1d','0',''), ('95960','38960','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('95961','38960','2','20','1h','0',''), ('95966','38963','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95967','38963','2','20','1h','0',''), ('95968','38964','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('95969','38964','2','20','1h','0',''), ('95970','38965','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95971','38965','2','20','1h','0',''), ('95972','38966','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('95973','38966','2','20','1h','0',''), ('95974','41764','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('95975','41764','2','20','1h','0',''), ('95976','38967','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('95981','38970','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('95982','38971','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('95983','38972','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('95984','38973','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('95985','38974','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('95986','38975','2','20','1h','0',''), ('95987','38976','2','20','1h','0',''), ('95988','38977','2','20','15m','0',''), ('95989','38978','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('95990','38979','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('95991','38980','2','20','1h','0',''), ('95992','38981','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('95993','38982','2','20','1h','0',''), ('95994','38984','2','1','1024','0',''), ('95995','38985','2','1','1024','0',''), ('95996','41765','2','10','','0',''), ('95997','41765','3','20','3m','0',''), ('95998','41766','2','10','','0',''), ('95999','41766','3','20','3m','0',''), ('96000','41767','3','1','8','0',''), ('96001','41768','2','10','','0',''), ('96002','41768','3','20','3m','0',''), ('96003','41769','2','10','','0',''), ('96004','41769','3','20','3m','0',''), ('96005','41770','3','1','8','0',''), ('96006','41771','3','20','1h','0',''), ('96007','41772','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('96008','41773','2','20','1d','0',''), ('96009','39014','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('96010','39014','2','20','1h','0',''), ('96015','39017','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96016','39017','2','20','1h','0',''), ('96017','39018','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('96018','39018','2','20','1h','0',''), ('96019','39019','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96020','39019','2','20','1h','0',''), ('96021','39020','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('96022','39020','2','20','1h','0',''), ('96023','41785','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96024','41785','2','20','1h','0',''), ('96025','39021','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('96030','39024','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('96031','39025','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('96032','39026','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('96033','39027','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('96034','39028','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('96035','39029','2','20','1h','0',''), ('96036','39030','2','20','1h','0',''), ('96037','39031','2','20','15m','0',''), ('96038','39032','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('96039','39033','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('96040','39034','2','20','1h','0',''), ('96041','39035','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('96042','39036','2','20','1h','0',''), ('96043','39038','2','1','1024','0',''), ('96044','39039','2','1','1024','0',''), ('96045','41786','2','10','','0',''), ('96046','41786','3','20','3m','0',''), ('96047','41787','2','10','','0',''), ('96048','41787','3','20','3m','0',''), ('96049','41788','3','1','8','0',''), ('96050','41789','2','10','','0',''), ('96051','41789','3','20','3m','0',''), ('96052','41790','2','10','','0',''), ('96053','41790','3','20','3m','0',''), ('96054','41791','3','1','8','0',''), ('96055','41792','3','20','1h','0',''), ('96056','41793','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('96057','41794','2','20','1d','0',''), ('96058','39068','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('96059','39068','2','20','1h','0',''), ('96064','39071','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96065','39071','2','20','1h','0',''), ('96066','39072','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('96067','39072','2','20','1h','0',''), ('96068','39073','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96069','39073','2','20','1h','0',''), ('96070','39074','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('96071','39074','2','20','1h','0',''), ('96072','41806','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96073','41806','2','20','1h','0',''), ('96074','39075','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('96079','39078','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('96080','39079','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('96081','39080','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('96082','39081','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('96083','39082','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('96084','39083','2','20','1h','0',''), ('96085','39084','2','20','1h','0',''), ('96086','39085','2','20','15m','0',''), ('96087','39086','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('96088','39087','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('96089','39088','2','20','1h','0',''), ('96090','39089','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('96091','39090','2','20','1h','0',''), ('96092','39092','2','1','1024','0',''), ('96093','39093','2','1','1024','0',''), ('96094','41807','2','10','','0',''), ('96095','41807','3','20','3m','0',''), ('96096','41808','2','10','','0',''), ('96097','41808','3','20','3m','0',''), ('96098','41809','3','1','8','0',''), ('96099','41810','2','10','','0',''), ('96100','41810','3','20','3m','0',''), ('96101','41811','2','10','','0',''), ('96102','41811','3','20','3m','0',''), ('96103','41812','3','1','8','0',''), ('96104','41813','3','20','1h','0',''), ('96105','41814','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('96106','41815','2','20','1d','0',''), ('96107','39122','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('96108','39122','2','20','1h','0',''), ('96113','39125','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96114','39125','2','20','1h','0',''), ('96115','39126','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('96116','39126','2','20','1h','0',''), ('96117','39127','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96118','39127','2','20','1h','0',''), ('96119','39128','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('96120','39128','2','20','1h','0',''), ('96121','41827','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96122','41827','2','20','1h','0',''), ('96123','39129','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('96128','39132','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('96129','39133','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('96130','39134','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('96131','39135','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('96132','39136','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('96133','39137','2','20','1h','0',''), ('96134','39138','2','20','1h','0',''), ('96135','39139','2','20','15m','0',''), ('96136','39140','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('96137','39141','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('96138','39142','2','20','1h','0',''), ('96139','39143','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('96140','39144','2','20','1h','0',''), ('96141','39146','2','1','1024','0',''), ('96142','39147','2','1','1024','0',''), ('96143','41828','2','10','','0',''), ('96144','41828','3','20','3m','0',''), ('96145','41829','2','10','','0',''), ('96146','41829','3','20','3m','0',''), ('96147','41830','3','1','8','0',''), ('96148','41831','2','10','','0',''), ('96149','41831','3','20','3m','0',''), ('96150','41832','2','10','','0',''), ('96151','41832','3','20','3m','0',''), ('96152','41833','3','1','8','0',''), ('96153','41834','3','20','1h','0',''), ('96154','41835','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('96155','41836','2','20','1d','0',''), ('96156','39176','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('96157','39176','2','20','1h','0',''), ('96162','39179','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96163','39179','2','20','1h','0',''), ('96164','39180','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('96165','39180','2','20','1h','0',''), ('96166','39181','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96167','39181','2','20','1h','0',''), ('96168','39182','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('96169','39182','2','20','1h','0',''), ('96170','41848','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96171','41848','2','20','1h','0',''), ('96172','39183','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('96177','39186','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('96178','39187','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('96179','39188','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('96180','39189','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('96181','39190','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('96182','39191','2','20','1h','0',''), ('96183','39192','2','20','1h','0',''), ('96184','39193','2','20','15m','0',''), ('96185','39194','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('96186','39195','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('96187','39196','2','20','1h','0',''), ('96188','39197','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('96189','39198','2','20','1h','0',''), ('96190','39200','2','1','1024','0',''), ('96191','39201','2','1','1024','0',''), ('96192','41849','2','10','','0',''), ('96193','41849','3','20','3m','0',''), ('96194','41850','2','10','','0',''), ('96195','41850','3','20','3m','0',''), ('96196','41851','3','1','8','0',''), ('96197','41852','2','10','','0',''), ('96198','41852','3','20','3m','0',''), ('96199','41853','2','10','','0',''), ('96200','41853','3','20','3m','0',''), ('96201','41854','3','1','8','0',''), ('96202','41855','3','20','1h','0',''), ('96203','41856','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('96204','41857','2','20','1d','0',''), ('96205','39230','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('96206','39230','2','20','1h','0',''), ('96211','39233','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96212','39233','2','20','1h','0',''), ('96213','39234','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('96214','39234','2','20','1h','0',''), ('96215','39235','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96216','39235','2','20','1h','0',''), ('96217','39236','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('96218','39236','2','20','1h','0',''), ('96219','41869','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96220','41869','2','20','1h','0',''), ('96221','39237','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('96226','39240','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('96227','39241','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('96228','39242','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('96229','39243','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('96230','39244','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('96231','39245','2','20','1h','0',''), ('96232','39246','2','20','1h','0',''), ('96233','39247','2','20','15m','0',''), ('96234','39248','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('96235','39249','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('96236','39250','2','20','1h','0',''), ('96237','39251','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('96238','39252','2','20','1h','0',''), ('96239','39254','2','1','1024','0',''), ('96240','39255','2','1','1024','0',''), ('96241','41870','2','10','','0',''), ('96242','41870','3','20','3m','0',''), ('96243','41871','2','10','','0',''), ('96244','41871','3','20','3m','0',''), ('96245','41872','3','1','8','0',''), ('96246','41873','2','10','','0',''), ('96247','41873','3','20','3m','0',''), ('96248','41874','2','10','','0',''), ('96249','41874','3','20','3m','0',''), ('96250','41875','3','1','8','0',''), ('96251','41876','3','20','1h','0',''), ('96252','41877','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('96253','41878','2','20','1d','0',''), ('96254','39284','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('96255','39284','2','20','1h','0',''), ('96260','39287','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96261','39287','2','20','1h','0',''), ('96262','39288','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('96263','39288','2','20','1h','0',''), ('96264','39289','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96265','39289','2','20','1h','0',''), ('96266','39290','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('96267','39290','2','20','1h','0',''), ('96268','41890','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96269','41890','2','20','1h','0',''), ('96270','39291','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('96275','39294','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('96276','39295','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('96277','39296','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('96278','39297','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('96279','39298','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('96280','39299','2','20','1h','0',''), ('96281','39300','2','20','1h','0',''), ('96282','39301','2','20','15m','0',''), ('96283','39302','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('96284','39303','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('96285','39304','2','20','1h','0',''), ('96286','39305','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('96287','39306','2','20','1h','0',''), ('96288','39308','2','1','1024','0',''), ('96289','39309','2','1','1024','0',''), ('96290','41891','2','10','','0',''), ('96291','41891','3','20','3m','0',''), ('96292','41892','2','10','','0',''), ('96293','41892','3','20','3m','0',''), ('96294','41893','3','1','8','0',''), ('96295','41894','2','10','','0',''), ('96296','41894','3','20','3m','0',''), ('96297','41895','2','10','','0',''), ('96298','41895','3','20','3m','0',''), ('96299','41896','3','1','8','0',''), ('96300','41897','3','20','1h','0',''), ('96301','41898','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('96302','41899','2','20','1d','0',''), ('96303','39338','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('96304','39338','2','20','1h','0',''), ('96309','39341','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96310','39341','2','20','1h','0',''), ('96311','39342','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('96312','39342','2','20','1h','0',''), ('96313','39343','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96314','39343','2','20','1h','0',''), ('96315','39344','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('96316','39344','2','20','1h','0',''), ('96317','41911','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96318','41911','2','20','1h','0',''), ('96319','39345','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('96324','39348','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('96325','39349','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('96326','39350','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('96327','39351','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('96328','39352','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('96329','39353','2','20','1h','0',''), ('96330','39354','2','20','1h','0',''), ('96331','39355','2','20','15m','0',''), ('96332','39356','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('96333','39357','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('96334','39358','2','20','1h','0',''), ('96335','39359','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('96336','39360','2','20','1h','0',''), ('96337','39362','2','1','1024','0',''), ('96338','39363','2','1','1024','0',''), ('96339','41912','2','10','','0',''), ('96340','41912','3','20','3m','0',''), ('96341','41913','2','10','','0',''), ('96342','41913','3','20','3m','0',''), ('96343','41914','3','1','8','0',''), ('96344','41915','2','10','','0',''), ('96345','41915','3','20','3m','0',''), ('96346','41916','2','10','','0',''), ('96347','41916','3','20','3m','0',''), ('96348','41917','3','1','8','0',''), ('96349','41918','3','20','1h','0',''), ('96350','41919','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('96351','41920','2','20','1d','0',''), ('96352','39392','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('96353','39392','2','20','1h','0',''), ('96358','39395','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96359','39395','2','20','1h','0',''), ('96360','39396','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('96361','39396','2','20','1h','0',''), ('96362','39397','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96363','39397','2','20','1h','0',''), ('96364','39398','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('96365','39398','2','20','1h','0',''), ('96366','41932','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96367','41932','2','20','1h','0',''), ('96368','39399','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('96373','39402','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('96374','39403','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('96375','39404','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('96376','39405','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('96377','39406','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('96378','39407','2','20','1h','0',''), ('96379','39408','2','20','1h','0',''), ('96380','39409','2','20','15m','0',''), ('96381','39410','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('96382','39411','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('96383','39412','2','20','1h','0',''), ('96384','39413','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('96385','39414','2','20','1h','0',''), ('96386','39416','2','1','1024','0',''), ('96387','39417','2','1','1024','0',''), ('96388','41933','2','10','','0',''), ('96389','41933','3','20','3m','0',''), ('96390','41934','2','10','','0',''), ('96391','41934','3','20','3m','0',''), ('96392','41935','3','1','8','0',''), ('96393','41936','2','10','','0',''), ('96394','41936','3','20','3m','0',''), ('96395','41937','2','10','','0',''), ('96396','41937','3','20','3m','0',''), ('96397','41938','3','1','8','0',''), ('96398','41939','3','20','1h','0',''), ('96399','41940','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('96400','41941','2','20','1d','0',''), ('96401','39446','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('96402','39446','2','20','1h','0',''), ('96407','39449','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96408','39449','2','20','1h','0',''), ('96409','39450','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('96410','39450','2','20','1h','0',''), ('96411','39451','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96412','39451','2','20','1h','0',''), ('96413','39452','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('96414','39452','2','20','1h','0',''), ('96415','41953','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96416','41953','2','20','1h','0',''), ('96417','39453','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('96422','39456','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('96423','39457','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('96424','39458','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('96425','39459','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('96426','39460','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('96427','39461','2','20','1h','0',''), ('96428','39462','2','20','1h','0',''), ('96429','39463','2','20','15m','0',''), ('96430','39464','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('96431','39465','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('96432','39466','2','20','1h','0',''), ('96433','39467','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('96434','39468','2','20','1h','0',''), ('96435','39470','2','1','1024','0',''), ('96436','39471','2','1','1024','0',''), ('96437','41954','2','10','','0',''), ('96438','41954','3','20','3m','0',''), ('96439','41955','2','10','','0',''), ('96440','41955','3','20','3m','0',''), ('96441','41956','3','1','8','0',''), ('96442','41957','2','10','','0',''), ('96443','41957','3','20','3m','0',''), ('96444','41958','2','10','','0',''), ('96445','41958','3','20','3m','0',''), ('96446','41959','3','1','8','0',''), ('96447','41960','3','20','1h','0',''), ('96448','41961','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('96449','41962','2','20','1d','0',''), ('96450','39500','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('96451','39500','2','20','1h','0',''), ('96456','39503','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96457','39503','2','20','1h','0',''), ('96458','39504','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('96459','39504','2','20','1h','0',''), ('96460','39505','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96461','39505','2','20','1h','0',''), ('96462','39506','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('96463','39506','2','20','1h','0',''), ('96464','41974','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96465','41974','2','20','1h','0',''), ('96466','39507','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('96471','39510','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('96472','39511','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('96473','39512','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('96474','39513','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('96475','39514','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('96476','39515','2','20','1h','0',''), ('96477','39516','2','20','1h','0',''), ('96478','39517','2','20','15m','0',''), ('96479','39518','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('96480','39519','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('96481','39520','2','20','1h','0',''), ('96482','39521','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('96483','39522','2','20','1h','0',''), ('96484','39524','2','1','1024','0',''), ('96485','39525','2','1','1024','0',''), ('96486','41975','2','10','','0',''), ('96487','41975','3','20','3m','0',''), ('96488','41976','2','10','','0',''), ('96489','41976','3','20','3m','0',''), ('96490','41977','3','1','8','0',''), ('96491','41978','2','10','','0',''), ('96492','41978','3','20','3m','0',''), ('96493','41979','2','10','','0',''), ('96494','41979','3','20','3m','0',''), ('96495','41980','3','1','8','0',''), ('96496','41981','3','20','1h','0',''), ('96497','41982','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('96498','41983','2','20','1d','0',''), ('96499','39554','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('96500','39554','2','20','1h','0',''), ('96505','39557','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96506','39557','2','20','1h','0',''), ('96507','39558','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('96508','39558','2','20','1h','0',''), ('96509','39559','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96510','39559','2','20','1h','0',''), ('96511','39560','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('96512','39560','2','20','1h','0',''), ('96513','41995','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96514','41995','2','20','1h','0',''), ('96515','39561','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('96520','39564','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('96521','39565','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('96522','39566','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('96523','39567','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('96524','39568','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('96525','39569','2','20','1h','0',''), ('96526','39570','2','20','1h','0',''), ('96527','39571','2','20','15m','0',''), ('96528','39572','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('96529','39573','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('96530','39574','2','20','1h','0',''), ('96531','39575','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('96532','39576','2','20','1h','0',''), ('96533','39578','2','1','1024','0',''), ('96534','39579','2','1','1024','0',''), ('96535','41996','2','10','','0',''), ('96536','41996','3','20','3m','0',''), ('96537','41997','2','10','','0',''), ('96538','41997','3','20','3m','0',''), ('96539','41998','3','1','8','0',''), ('96540','41999','2','10','','0',''), ('96541','41999','3','20','3m','0',''), ('96542','42000','2','10','','0',''), ('96543','42000','3','20','3m','0',''), ('96544','42001','3','1','8','0',''), ('96545','42002','3','20','1h','0',''), ('96546','42003','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('96547','42004','2','20','1d','0',''), ('96548','39608','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('96549','39608','2','20','1h','0',''), ('96554','39611','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96555','39611','2','20','1h','0',''), ('96556','39612','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('96557','39612','2','20','1h','0',''), ('96558','39613','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96559','39613','2','20','1h','0',''), ('96560','39614','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('96561','39614','2','20','1h','0',''), ('96562','42016','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96563','42016','2','20','1h','0',''), ('96564','39615','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('96569','39618','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('96570','39619','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('96571','39620','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('96572','39621','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('96573','39622','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('96574','39623','2','20','1h','0',''), ('96575','39624','2','20','1h','0',''), ('96576','39625','2','20','15m','0',''), ('96577','39626','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('96578','39627','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('96579','39628','2','20','1h','0',''), ('96580','39629','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('96581','39630','2','20','1h','0',''), ('96582','39632','2','1','1024','0',''), ('96583','39633','2','1','1024','0',''), ('96584','42017','2','10','','0',''), ('96585','42017','3','20','3m','0',''), ('96586','42018','2','10','','0',''), ('96587','42018','3','20','3m','0',''), ('96588','42019','3','1','8','0',''), ('96589','42020','2','10','','0',''), ('96590','42020','3','20','3m','0',''), ('96591','42021','2','10','','0',''), ('96592','42021','3','20','3m','0',''), ('96593','42022','3','1','8','0',''), ('96594','42023','3','20','1h','0',''), ('96595','42024','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('96596','42025','2','20','1d','0',''), ('96597','39662','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('96598','39662','2','20','1h','0',''), ('96603','39665','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96604','39665','2','20','1h','0',''), ('96605','39666','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('96606','39666','2','20','1h','0',''), ('96607','39667','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96608','39667','2','20','1h','0',''), ('96609','39668','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('96610','39668','2','20','1h','0',''), ('96611','42037','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96612','42037','2','20','1h','0',''), ('96613','39669','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('96618','39672','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('96619','39673','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('96620','39674','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('96621','39675','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('96622','39676','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('96623','39677','2','20','1h','0',''), ('96624','39678','2','20','1h','0',''), ('96625','39679','2','20','15m','0',''), ('96626','39680','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('96627','39681','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('96628','39682','2','20','1h','0',''), ('96629','39683','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('96630','39684','2','20','1h','0',''), ('96631','39686','2','1','1024','0',''), ('96632','39687','2','1','1024','0',''), ('96633','42038','2','10','','0',''), ('96634','42038','3','20','3m','0',''), ('96635','42039','2','10','','0',''), ('96636','42039','3','20','3m','0',''), ('96637','42040','3','1','8','0',''), ('96638','42041','2','10','','0',''), ('96639','42041','3','20','3m','0',''), ('96640','42042','2','10','','0',''), ('96641','42042','3','20','3m','0',''), ('96642','42043','3','1','8','0',''), ('96643','42044','3','20','1h','0',''), ('96644','42045','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('96645','42046','2','20','1d','0',''), ('96646','39716','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('96647','39716','2','20','1h','0',''), ('96652','39719','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96653','39719','2','20','1h','0',''), ('96654','39720','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('96655','39720','2','20','1h','0',''), ('96656','39721','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96657','39721','2','20','1h','0',''), ('96658','39722','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('96659','39722','2','20','1h','0',''), ('96660','42058','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96661','42058','2','20','1h','0',''), ('96662','39723','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('96667','39726','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('96668','39727','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('96669','39728','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('96670','39729','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('96671','39730','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('96672','39731','2','20','1h','0',''), ('96673','39732','2','20','1h','0',''), ('96674','39733','2','20','15m','0',''), ('96675','39734','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('96676','39735','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('96677','39736','2','20','1h','0',''), ('96678','39737','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('96679','39738','2','20','1h','0',''), ('96680','39740','2','1','1024','0',''), ('96681','39741','2','1','1024','0',''), ('96682','42059','2','10','','0',''), ('96683','42059','3','20','3m','0',''), ('96684','42060','2','10','','0',''), ('96685','42060','3','20','3m','0',''), ('96686','42061','3','1','8','0',''), ('96687','42062','2','10','','0',''), ('96688','42062','3','20','3m','0',''), ('96689','42063','2','10','','0',''), ('96690','42063','3','20','3m','0',''), ('96691','42064','3','1','8','0',''), ('96692','42065','3','20','1h','0',''), ('96693','42066','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('96694','42067','2','20','1d','0',''), ('96695','27901','1','29','{#SNMPVALUE} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('96696','27901','2','20','1h','0',''), ('96699','27903','1','29','{#FSNAME} 1.3.6.1.2.1.25.2.3.1.3 0 {#ALLOC_UNITS} 1.3.6.1.2.1.25.2.3.1.4 0 {#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0','0',''), ('96700','27903','2','20','1h','0',''), ('96703','31558','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0','0',''), ('96704','31558','2','20','1h','0',''), ('96705','31559','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96706','31559','2','20','1h','0',''), ('96707','32435','1','29','{#IFNAME} 1.3.6.1.4.1.14988.1.1.14.1.1.2 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96708','32435','2','20','1h','0',''), ('96709','42079','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96710','42079','2','20','1h','0',''), ('96711','27904','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('96714','27907','2','1','1024','0',''), ('96715','27908','2','1','1024','0',''), ('96718','31561','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} 0','0',''), ('96719','31562','2','20','1h','0',''), ('96720','31563','2','20','1h','0',''), ('96721','31564','2','20','15m','0',''), ('96722','31565','1','28','1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} 0','0',''), ('96723','31566','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} 0','0',''), ('96724','31567','2','20','1h','0',''), ('96725','31568','1','28','1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} 0','0',''), ('96726','31569','2','20','1h','0',''), ('96727','32436','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} 0','0',''), ('96728','32437','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} 0','0',''), ('96729','32438','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} 0','0',''), ('96730','32439','1','28','1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} 0','0',''), ('96731','42080','2','10','','0',''), ('96732','42080','3','20','3m','0',''), ('96733','42081','2','10','','0',''), ('96734','42081','3','20','3m','0',''), ('96735','42082','3','1','8','0',''), ('96736','42083','2','10','','0',''), ('96737','42083','3','20','3m','0',''), ('96738','42084','2','10','','0',''), ('96739','42084','3','20','3m','0',''), ('96740','42085','3','1','8','0',''), ('96741','42086','3','20','1h','0',''), ('96742','42087','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('96743','42088','2','20','1d','0',''), ('96744','28001','1','29','{#SNMPVALUE} 1.3.6.1.4.1.11863.6.4.1.1.1.1.1 0','1',''), ('96745','28001','2','20','1h','0',''), ('96746','28002','1','29','{#SNMPVALUE} 1.3.6.1.4.1.11863.6.4.1.2.1.1.1 0','1',''), ('96747','28002','2','20','1h','0',''), ('96748','42144','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','1',''), ('96749','42144','2','20','1h','0',''), ('96750','28003','1','28','1.3.6.1.4.1.11863.6.4.1.1.1.1.3.{#SNMPINDEX} 0','0',''), ('96751','30131','1','28','1.3.6.1.4.1.11863.6.4.1.2.1.1.2.{#SNMPINDEX} 0','0',''), ('96752','42145','2','10','','0',''), ('96753','42145','3','20','3m','0',''), ('96754','42146','2','10','','0',''), ('96755','42146','3','20','3m','0',''), ('96756','42147','3','1','8','0',''), ('96757','42148','2','10','','0',''), ('96758','42148','3','20','3m','0',''), ('96759','42149','2','10','','0',''), ('96760','42149','3','20','3m','0',''), ('96761','42150','3','1','8','0',''), ('96762','42151','1','28','1.3.6.1.2.1.2.2.1.5.{#SNMPINDEX} 0','0',''), ('96763','42151','2','20','5m','0',''), ('96764','42152','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('96765','42153','2','20','1d','0',''), ('96766','42401','2','21','return JSON.parse(value).length;','0',''), ('96767','42411','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96768','42411','2','20','1h','0',''), ('96769','42412','2','20','1h','0',''), ('96770','42413','1','29','{#DEVNAME} 1.3.6.1.4.1.2021.13.15.1.1.2 0','0',''), ('96771','42413','2','20','1h','0',''), ('96772','42414','1','21','var filesystems = JSON.parse(value); result = filesystems.map(function (filesystem) { return { ''dskPath'': filesystem.dskPath, ''dskDevice'': filesystem.dskDevice, ''index'': filesystem[''{#SNMPINDEX}''] }; }); return JSON.stringify(result);','0',''), ('96773','42414','2','20','1h','0',''), ('96774','42415','3','21','return value/{#CPU.COUNT}','0',''), ('96775','42416','3','21','return value/{#CPU.COUNT}','0',''), ('96776','42417','3','21','return value/{#CPU.COUNT}','0',''), ('96777','42418','3','21','return value/{#CPU.COUNT}','0',''), ('96778','42419','3','21','return value/{#CPU.COUNT}','0',''), ('96779','42420','3','21','return value/{#CPU.COUNT}','0',''), ('96780','42421','3','21','return value/{#CPU.COUNT}','0',''), ('96781','42422','3','21','return value/{#CPU.COUNT}','0',''), ('96782','42423','3','21','return value/{#CPU.COUNT}','0',''), ('96783','42424','3','21','return value/{#CPU.COUNT}','0',''), ('96784','42425','2','10','','0',''), ('96785','42425','3','20','3m','0',''), ('96786','42426','2','10','','0',''), ('96787','42426','3','20','3m','0',''), ('96788','42427','3','1','8','0',''), ('96789','42428','2','10','','0',''), ('96790','42428','3','20','3m','0',''), ('96791','42429','2','10','','0',''), ('96792','42429','3','20','3m','0',''), ('96793','42430','3','1','8','0',''), ('96794','42431','3','20','1h','0',''), ('96795','42432','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('96796','42433','2','20','1d','0',''), ('96797','42434','1','28','1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} 0','0',''), ('96798','42435','2','10','','0',''), ('96799','42436','1','28','1.3.6.1.4.1.2021.13.15.1.1.9.{#SNMPINDEX} 0','0',''), ('96800','42437','2','10','','0',''), ('96803','42580','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('96804','42580','2','20','1h','0',''), ('96805','42581','1','21','var filesystems = JSON.parse(value); result = filesystems.map(function (filesystem) { return { ''hrStorageDescr'': filesystem.hrStorageDescr, ''hrStorageType'': filesystem.hrStorageType, ''hrStorageAllocationUnits'': filesystem.hrStorageAllocationUnits, ''index'': filesystem[''{#SNMPINDEX}''] }; }); return JSON.stringify(result);','0',''), ('96806','42581','2','20','1h','0',''), ('96807','42582','1','21','var filesystems = JSON.parse(value); result = filesystems.map(function (filesystem) { return { ''hrStorageDescr'': filesystem.hrStorageDescr, ''hrStorageType'': filesystem.hrStorageType, ''hrStorageAllocationUnits'': filesystem.hrStorageAllocationUnits, ''index'': filesystem[''{#SNMPINDEX}''] }; }); return JSON.stringify(result);','0',''), ('96808','42582','2','20','1h','0',''), ('96809','42583','2','10','','0',''), ('96810','42583','3','20','3m','0',''), ('96811','42584','2','10','','0',''), ('96812','42584','3','20','3m','0',''), ('96813','42585','3','1','8','0',''), ('96814','42586','2','10','','0',''), ('96815','42586','3','20','3m','0',''), ('96816','42587','2','10','','0',''), ('96817','42587','3','20','3m','0',''), ('96818','42588','3','1','8','0',''), ('96819','42589','3','20','1h','0',''), ('96820','42590','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('96821','42591','2','20','1d','0',''), ('96822','42593','2','1','{#ALLOC_UNITS}','0',''), ('96823','42594','2','1','{#ALLOC_UNITS}','0',''), ('96824','42595','2','1','{#ALLOC_UNITS}','0',''), ('96825','42596','2','1','{#ALLOC_UNITS}','0',''), ('96826','45491','1','12','$.data.discovery_queue','3','No "discoverer" processes started. Please check "StartDiscoverers" parameter in the server configuration file.'), ('96827','45492','1','12','$.data.process[''discovery manager''].busy.avg','3','No "discovery manager" processes started.'), ('96828','45493','1','12','$.data.process[''discovery worker''].busy.avg','3','No "discovery worker" processes started.'), ('96829','45500','1','12','$.data.discovery_queue','3','No "discoverer" processes started. Please check "StartDiscoverers" parameter in the server configuration file.'), ('96830','45501','1','12','$.data.process[''discovery manager''].busy.avg','3','No "discovery manager" processes started.'), ('96831','45502','1','12','$.data.process[''discovery worker''].busy.avg','3','No "discovery worker" processes started.'), ('96832','45503','1','12','$.[?(@.AlarmName == "{#ALARM_NAME}")].first()','1',''), ('96833','45504','1','12','$.[?(@.volumeId == "{#VOLUME_ID}")].first()','1',''), ('96834','45505','1','12','$[''{#DBNAME}'']','1',''), ('96835','45506','1','12','$[''{#DBNAME}'']','1',''), ('96836','45507','1','12','$[''{#DBNAME}'']','1',''), ('96837','45508','1','12','$[''{#DBNAME}'']','1',''), ('96838','45509','1','12','$[''{#DBNAME}'']','1',''), ('96839','45510','1','12','$[''{#APPLICATION_NAME}'']','1',''), ('96840','45513','1','12','$.data.process[''agent poller''].busy.avg','3','Processes agent poller not started'), ('96841','45514','1','12','$.data.process[''http agent poller''].busy.avg','3','Processes http agent poller not started'), ('96842','45519','1','12','$.data.process[''agent poller''].busy.avg','3','No "agent poller" processes started.'), ('96843','45520','1','12','$.data.process[''http agent poller''].busy.avg','3','No "http agent poller" processes started.'), ('96846','45523','1','12','$.monthly_service_costs','0',''), ('96847','45524','1','12','$..Groups.first()','0',''), ('96848','45525','1','12','$.monthly_costs','0',''), ('96849','45526','1','12','$.monthly_service_costs.[?(@.month == "{#AWS.BILLING.MONTH}")]','1',''), ('96850','45526','2','12','$.[?(@.Keys =~ "{#AWS.BILLING.SERVICE.NAME}")]..Metrics.BlendedCost.Amount.first()','1',''), ('96851','45527','1','12','$..Groups..[?(@.Keys =~ "{#AWS.BILLING.SERVICE.NAME}")]..Metrics.BlendedCost.Amount.first()','1',''), ('96852','45528','1','12','$.monthly_costs.[?(@.month == "{#AWS.BILLING.MONTH}")].amount.first()','1',''), ('96853','45528','2','20','3h','0',''), ('96857','45532','1','12','$.error','2',''), ('96858','45532','2','20','3h','0',''), ('96859','45533','1','12','$.MetricData[?(@.Label == "ContainerInstanceCount")].Values.first().first()','1',''), ('96860','45534','1','12','$.[?(@.Label == "CpuReserved")].Values.first().first()','1',''), ('96861','45535','1','12','$.CPUUtilization','1',''), ('96862','45536','1','12','$.MemoryUtilization','1',''), ('96863','45537','1','12','$.error','2',''), ('96864','45537','2','20','3h','0',''), ('96865','45538','1','12','$.MetricData[?(@.Label == "NetworkRxBytes")].Values.first().first()','1',''), ('96866','45539','1','12','$.MetricData[?(@.Label == "NetworkTxBytes")].Values.first().first()','1',''), ('96867','45540','1','12','$.MetricData[?(@.Label == "ServiceCount")].Values.first().first()','1',''), ('96868','45541','1','12','$.MetricData[?(@.Label == "TaskCount")].Values.first().first()','1',''), ('96869','45542','1','21','var result = []; var alarms = JSON.parse(value); alarms.forEach(function(alarm) { result.push({ ''{#ALARM_DESCRIPTION}'': alarm.AlarmDescription !== null ? alarm.AlarmDescription : ''None'' , ''{#ALARM_NAME}'': alarm.AlarmName, ''{#ALARM_PERIOD}'': alarm.Period, ''{#METRIC_NAME}'': alarm.MetricName, ''{#ALARM_SERVICE_NAMESPACE}'': alarm.Namespace !== null ? alarm.Namespace : ''None'' }); }); return JSON.stringify(result);','0',''), ('96870','45542','2','20','3h','0',''), ('96871','45543','1','20','3h','0',''), ('96874','45545','1','12','$.[?(@.AlarmName == "{#ALARM_NAME}")].first()','1',''), ('96875','45546','1','12','$.[?(@.Label == "AWS/ECS CPUUtilization")].Values.first().first()','1',''), ('96876','45547','1','12','$.[?(@.Label == "ECS/ContainerInsights CpuReserved")].Values.first().first()','1',''), ('96877','45548','1','12','$.[?(@.Label == "ECS/ContainerInsights DesiredTaskCount")].Values.first().first()','1',''), ('96878','45548','2','20','3h','0',''), ('96879','45549','1','12','$.[?(@.Label == "AWS/ECS MemoryUtilization")].Values.first().first()','1',''), ('96880','45550','1','12','$.[?(@.Label == "ECS/ContainerInsights MemoryReserved")].Values.first().first()','1',''), ('96881','45550','2','1','1048576','0',''), ('96882','45551','1','12','$.[?(@.Label == "ECS/ContainerInsights MemoryUtilized")].Values.first().first()','1',''), ('96883','45551','2','1','1048576','0',''), ('96884','45552','1','12','$.[?(@.Label == "ECS/ContainerInsights NetworkRxBytes")].Values.first().first()','1',''), ('96885','45553','1','12','$.[?(@.Label == "ECS/ContainerInsights NetworkTxBytes")].Values.first().first()','1',''), ('96886','45554','1','12','$.[?(@.Label == "ECS/ContainerInsights PendingTaskCount")].Values.first().first()','1',''), ('96887','45554','2','20','3h','0',''), ('96888','45555','1','12','$.[?(@.Label == "ECS/ContainerInsights RunningTaskCount")].Values.first().first()','1',''), ('96889','45555','2','20','3h','0',''), ('96890','45556','1','12','$.[?(@.Label == "ECS/ContainerInsights TaskSetCount")].Values.first().first()','1',''), ('96891','45556','2','20','3h','0',''), ('96892','45557','1','12','$.StateValue','2','3'), ('96893','45557','2','21','var state = [''OK'', ''INSUFFICIENT_DATA'', ''ALARM'']; return state.indexOf(value.trim()) === -1 ? 255 : state.indexOf(value.trim());','0',''), ('96894','45558','1','12','$.StateReason','1',''), ('96895','45558','2','20','3h','0',''), ('96899','45562','1','12','$.error','2',''), ('96900','45562','2','20','3h','0',''), ('96901','45563','1','12','$.MetricData[?(@.Label == "ContainerInstanceCount")].Values.first().first()','1',''), ('96902','45564','1','12','$.CPUUtilization','1',''), ('96903','45565','1','12','$.DiskUtilization','1',''), ('96904','45566','1','12','$.MetricData[?(@.Label == "EphemeralStorageReserved")].Values.first().first()','1',''), ('96905','45566','2','1','1073741824','0',''), ('96906','45567','1','12','$.MetricData[?(@.Label == "EphemeralStorageUtilized")].Values.first().first()','1',''), ('96907','45567','2','1','1073741824','0',''), ('96908','45568','1','12','$.MemoryUtilization','1',''), ('96909','45569','1','12','$.error','2',''), ('96910','45569','2','20','3h','0',''), ('96911','45570','1','12','$.MetricData[?(@.Label == "NetworkRxBytes")].Values.first().first()','1',''), ('96912','45571','1','12','$.MetricData[?(@.Label == "NetworkTxBytes")].Values.first().first()','1',''), ('96913','45572','1','12','$.MetricData[?(@.Label == "ServiceCount")].Values.first().first()','1',''), ('96914','45573','1','12','$.MetricData[?(@.Label == "TaskCount")].Values.first().first()','1',''), ('96915','45574','1','21','var result = []; var alarms = JSON.parse(value); alarms.forEach(function(alarm) { result.push({ ''{#ALARM_DESCRIPTION}'': alarm.AlarmDescription !== null ? alarm.AlarmDescription : ''None'' , ''{#ALARM_NAME}'': alarm.AlarmName, ''{#ALARM_PERIOD}'': alarm.Period, ''{#METRIC_NAME}'': alarm.MetricName, ''{#ALARM_SERVICE_NAMESPACE}'': alarm.Namespace !== null ? alarm.Namespace : ''None'' }); }); return JSON.stringify(result);','0',''), ('96916','45574','2','20','3h','0',''), ('96917','45575','1','20','3h','0',''), ('96920','45577','1','12','$.[?(@.AlarmName == "{#ALARM_NAME}")].first()','1',''), ('96921','45578','1','12','$.[?(@.Label == "AWS/ECS CPUUtilization")].Values.first().first()','1',''), ('96922','45579','1','12','$.[?(@.Label == "ECS/ContainerInsights CpuReserved")].Values.first().first()','1',''), ('96923','45580','1','12','$.[?(@.Label == "ECS/ContainerInsights DesiredTaskCount")].Values.first().first()','1',''), ('96924','45580','2','20','3h','0',''), ('96925','45581','1','12','$.[?(@.Label == "ECS/ContainerInsights EphemeralStorageReserved")].Values.first().first()','1',''), ('96926','45581','2','1','1073741824','0',''), ('96927','45582','1','12','$.[?(@.Label == "ECS/ContainerInsights EphemeralStorageUtilized")].Values.first().first()','1',''), ('96928','45582','2','1','1073741824','0',''), ('96929','45583','1','12','$.[?(@.Label == "AWS/ECS MemoryUtilization")].Values.first().first()','1',''), ('96930','45584','1','12','$.[?(@.Label == "ECS/ContainerInsights MemoryReserved")].Values.first().first()','1',''), ('96931','45584','2','1','1048576','0',''), ('96932','45585','1','12','$.[?(@.Label == "ECS/ContainerInsights MemoryUtilized")].Values.first().first()','1',''), ('96933','45585','2','1','1048576','0',''), ('96934','45586','1','12','$.[?(@.Label == "ECS/ContainerInsights NetworkRxBytes")].Values.first().first()','1',''), ('96935','45587','1','12','$.[?(@.Label == "ECS/ContainerInsights NetworkTxBytes")].Values.first().first()','1',''), ('96936','45588','1','12','$.[?(@.Label == "ECS/ContainerInsights PendingTaskCount")].Values.first().first()','1',''), ('96937','45588','2','20','3h','0',''), ('96938','45589','1','12','$.[?(@.Label == "ECS/ContainerInsights RunningTaskCount")].Values.first().first()','1',''), ('96939','45589','2','20','3h','0',''), ('96940','45590','1','12','$.[?(@.Label == "ECS/ContainerInsights StorageReadBytes")].Values.first().first()','1',''), ('96941','45591','1','12','$.[?(@.Label == "ECS/ContainerInsights StorageWriteBytes")].Values.first().first()','1',''), ('96942','45592','1','12','$.[?(@.Label == "ECS/ContainerInsights TaskSetCount")].Values.first().first()','1',''), ('96943','45592','2','20','3h','0',''), ('96944','45593','1','12','$.StateValue','2','3'), ('96945','45593','2','21','var state = [''OK'', ''INSUFFICIENT_DATA'', ''ALARM'']; return state.indexOf(value.trim()) === -1 ? 255 : state.indexOf(value.trim());','0',''), ('96946','45594','1','12','$.StateReason','1',''), ('96947','45594','2','20','3h','0',''), ('96948','44867','3','20','10m','0',''), ('96949','44874','3','20','10m','0',''), ('96950','44880','3','20','10m','0',''), ('96951','45597','1','12','$.availabilityZoneInfo','3','Could not get availability zones list'), ('96952','45598','1','12','$.hypervisors','3','Could not get hypervisors list'), ('96953','45599','1','12','$.limits.absolute','3','Could not get absolute project limits'), ('96954','45600','1','20','1h','0',''), ('96955','45601','1','20','1h','0',''), ('96956','45602','1','20','1h','0',''), ('96957','45603','1','12','$.servers','3','Could not get servers list'), ('96958','45604','1','12','$.services','3','Could not get compute services list'), ('96959','45605','1','12','$.tenant_usages','3','Could not get tenant list'), ('96960','45606','1','12','$.totalInstancesUsed','0',''), ('96961','45607','1','12','$.maxTotalInstances','0',''), ('96962','45608','1','12','$.totalRAMUsed','0',''), ('96963','45608','2','1','1048576','0',''), ('96964','45609','1','12','$.maxTotalRAMSize','0',''), ('96965','45609','2','1','1048576','0',''), ('96966','45610','1','12','$.totalCoresUsed','0',''), ('96967','45611','1','12','$.maxTotalCores','0',''), ('96968','45613','1','20','1h','0',''), ('96969','45614','1','20','1h','0',''), ('96970','45615','1','20','1h','0',''), ('96971','45616','1','20','1h','0',''), ('96972','45617','1','20','1h','0',''), ('96973','45618','1','12','$.server.status','3','Could not parse the detailed server report'), ('96974','45618','2','21','const idx = [ ''SHUTOFF'', ''ACTIVE'', ''PAUSED'', ''BUILD'', ''DELETED'', ''ERROR'', ''HARD_REBOOT'', ''MIGRATING'', ''PASSWORD'', ''REBOOT'', ''REBUILD'', ''RESCUE'', ''RESIZE'', ''REVERT_RESIZE'', ''SHELVED'', ''SHELVED_OFFLOADED'', ''SOFT_DELETED'', ''SUSPENDED'', ''UNKNOWN'', ''VERIFY_RESIZE'', ].indexOf(value); return idx !== -1 ? idx : 30;','0',''), ('96975','45618','3','20','1h','0',''), ('96976','45619','1','12','$[?(@.zoneName == "{#ZONE_NAME}")].first()','3','Could not parse the detailed availability zone report'), ('96977','45620','1','12','$[?(@.id == "{#ID}")].first()','3','Could not parse the detailed hypervisor report'), ('96978','45621','1','12','$[?(@.id == "{#ID}")].first()','3','Could not parse the detailed services report'), ('96979','45622','1','12','$[?(@.tenant_id == "{#TENANT_ID}")].first()','3','Could not parse the tenant report'), ('96980','45623','1','12','$[''hosts''].[*].[*].length()','3','Could not parse the detailed availability zone report'), ('96981','45623','2','20','1h','0',''), ('96982','45624','1','12','$.zoneState.available','3','Could not parse the detailed availability zone report'), ('96983','45624','2','6','','0',''), ('96984','45624','3','20','1h','0',''), ('96985','45625','1','12','$.state','3','Could not parse the detailed hypervisor report'), ('96986','45625','2','21','const idx = [ ''down'', ''up'' ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('96987','45625','3','20','1h','0',''), ('96988','45626','1','12','$.status','3','Could not parse the detailed hypervisor report'), ('96989','45626','2','21','const idx = [ ''disabled'', ''enabled'' ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('96990','45626','3','20','1h','0',''), ('96991','45627','1','12','$.hypervisor_version','3','Could not parse the detailed hypervisor report'), ('96992','45627','2','20','1h','0',''), ('96993','45628','1','12','$.disabled_reason','3','Could not parse the detailed services report'), ('96994','45628','2','20','1h','0',''), ('96995','45629','1','12','$.state','3','Could not parse the detailed services report'), ('96996','45629','2','21','const idx = [ ''down'', ''up'' ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('96997','45629','3','20','1h','0',''), ('96998','45630','1','12','$.status','3','Could not parse the detailed services report'), ('96999','45630','2','21','const idx = [ ''disabled'', ''enabled'' ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('97000','45630','3','20','1h','0',''), ('97001','45631','1','12','$.total_local_gb_usage','3','Could not parse the detailed tenant report'), ('97002','45631','2','21','return Math.round(value * 100) / 100;','0',''), ('97003','45631','3','20','1h','0',''), ('97004','45632','1','12','$.total_hours','3','Could not parse the detailed tenant report'), ('97005','45632','2','21','return Math.round(value * 100) / 100;','0',''), ('97006','45632','3','20','1h','0',''), ('97007','45633','1','12','$.total_memory_mb_usage','3','Could not parse the detailed tenant report'), ('97008','45633','2','21','return Math.round(value * 100) / 100;','0',''), ('97009','45633','3','20','1h','0',''), ('97010','45634','1','12','$.total_vcpus_usage','3','Could not parse the detailed tenant report'), ('97011','45634','2','21','return Math.round(value * 100) / 100;','0',''), ('97012','45634','3','20','1h','0',''), ('97015','45646','1','26','-1','2','0'), ('97016','45654','1','12','$.conflicts','0',''), ('97017','45654','2','10','','0',''), ('97018','45655','1','12','$.deadlocks','0',''), ('97019','45655','2','10','','0',''), ('97020','45656','1','12','$.blks_hit','0',''), ('97021','45656','2','10','','0',''), ('97022','45657','1','12','$.blk_write_time','0',''), ('97023','45657','2','1','0.001','0',''), ('97024','45658','1','12','$.blk_read_time','0',''), ('97025','45658','2','1','0.001','0',''), ('97026','45659','1','12','$.blks_read','0',''), ('97027','45659','2','10','','0',''), ('97028','45660','1','12','$.temp_bytes','0',''), ('97029','45660','2','10','','0',''), ('97030','45661','1','12','$.numbackends','0',''), ('97031','45662','1','12','$.count','0',''), ('97032','45663','1','12','$.temp_files','0',''), ('97033','45663','2','10','','0',''), ('97034','45664','1','12','$.tup_deleted','0',''), ('97035','45664','2','10','','0',''), ('97036','45665','1','12','$.tup_fetched','0',''), ('97037','45665','2','10','','0',''), ('97038','45666','1','12','$.tup_inserted','0',''), ('97039','45666','2','10','','0',''), ('97040','45667','1','12','$.tup_returned','0',''), ('97041','45667','2','10','','0',''), ('97042','45668','1','12','$.tup_updated','0',''), ('97043','45668','2','10','','0',''), ('97044','45669','1','12','$.xact_commit','0',''), ('97045','45669','2','10','','0',''), ('97046','45670','1','12','$.xact_rollback','0',''), ('97047','45670','2','10','','0',''), ('97048','45671','1','12','$.total_pct','0',''), ('97049','45672','1','12','$.receive','0',''), ('97050','45672','2','10','','0',''), ('97051','45673','1','12','$.waiting','0',''), ('97054','45675','1','12','$.total','0',''), ('97057','45677','1','12','$.archived_count','0',''), ('97058','45678','1','12','$.count_files','0',''), ('97059','45679','1','12','$.failed_count','0',''), ('97060','45680','1','12','$.size_files','0',''), ('97071','45686','1','12','$.prepared','0',''), ('97080','45690','1','12','$.active','0',''), ('97081','45691','1','12','$.disabled','0',''), ('97082','45692','1','12','$.fastpath_function_call','0',''), ('97083','45693','1','12','$.idle','0',''), ('97084','45694','1','12','$.idle_in_transaction','0',''), ('97085','45695','1','12','$.idle_in_transaction_aborted','0',''), ('97086','45696','1','12','$.write','0',''), ('97087','45696','2','10','','0',''), ('97088','45698','1','20','3h','0',''), ('97089','45702','1','12','$[''{#DBNAME}'']','1',''), ('97090','45703','1','12','$[''{#DBNAME}'']','1',''), ('97091','45704','1','12','$[''{#DBNAME}'']','1',''), ('97092','45705','1','12','$[''{#APPLICATION_NAME}'']','1',''), ('97093','45706','1','12','$.rowexclusive','0',''), ('97094','45707','1','12','$[''{#DBNAME}''].rowshare','1',''), ('97095','45708','1','12','$.sharerowexclusive','0',''), ('97096','45709','1','12','$.shareupdateexclusive','0',''), ('97097','45710','1','12','$.share','0',''), ('97098','45711','1','12','$.total','0',''), ('97099','45712','1','12','$.mro_slow_count','0',''), ('97100','45713','1','12','$.tx_time_max','0',''), ('97101','45714','1','12','$.exclusive','0',''), ('97102','45715','1','12','$.mro_time_sum','0',''), ('97103','45716','1','12','$.query_slow_count','0',''), ('97104','45717','1','12','$.query_time_max','0',''), ('97105','45718','1','12','$.query_time_sum','0',''), ('97106','45719','1','12','$.tx_slow_count','0',''), ('97107','45720','1','12','$.mro_time_max','0',''), ('97108','45721','1','12','$.accessexclusive','0',''), ('97109','45722','1','12','$.accessshare','0',''), ('97110','45723','1','12','$.numbackends','0',''), ('97111','45724','1','12','$.blks_hit','0',''), ('97112','45724','2','10','','0',''), ('97113','45725','1','12','$.blks_read','0',''), ('97114','45725','2','10','','0',''), ('97115','45726','1','12','$.blk_read_time','0',''), ('97116','45726','2','1','0.001','0',''), ('97117','45726','3','10','','0',''), ('97118','45727','1','12','$.blk_write_time','0',''), ('97119','45727','2','1','0.001','0',''), ('97120','45727','3','10','','0',''), ('97121','45728','1','12','$.conflicts','0',''), ('97122','45728','2','10','','0',''), ('97123','45729','1','12','$.deadlocks','0',''), ('97124','45729','2','10','','0',''), ('97125','45730','1','12','$.temp_bytes','0',''), ('97126','45730','2','10','','0',''), ('97127','45731','1','12','$.xact_rollback','0',''), ('97128','45731','2','10','','0',''), ('97129','45732','1','12','$.temp_files','0',''), ('97130','45732','2','10','','0',''), ('97131','45733','1','12','$.tup_deleted','0',''), ('97132','45733','2','10','','0',''), ('97133','45734','1','12','$.tup_fetched','0',''), ('97134','45734','2','10','','0',''), ('97135','45735','1','12','$.tup_inserted','0',''), ('97136','45735','2','10','','0',''), ('97137','45736','1','12','$.tup_returned','0',''), ('97138','45736','2','10','','0',''), ('97139','45737','1','12','$.tup_updated','0',''), ('97140','45737','2','10','','0',''), ('97141','45738','1','12','$.xact_commit','0',''), ('97142','45738','2','10','','0',''), ('97143','45739','1','12','$.tx_time_sum','0',''), ('97144','45740','1','12','$.flush_lag','0',''), ('97145','45741','1','12','$.replay_lag','0',''), ('97146','45742','1','12','$.write_lag','0',''), ('97147','45748','1','12','$.error','0',''), ('97148','45748','2','20','1h','0',''), ('97149','45749','1','21','try { var creds = JSON.parse(value); } catch (error) { throw ''Failed to parse authentication data from input value.''; } var request = new HttpRequest(), devices = [], error_msg = "", url = "{$SDWAN.API.URL}", http_proxy = "{$SDWAN.HTTP_PROXY}"; function getHttpData(url, token, cookie) { request.addHeader(''Cookie: '' + cookie); request.addHeader(''X-XSRF-TOKEN: '' + token); response = request.get(url); Zabbix.log(4, ''[ SD-WAN API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Failed to receive data: invalid response status code.''; } if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from SD-WAN API. Check debug log for more information.''; } } if (typeof response !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object.''; } return response; }; try { [''token'', ''cookie''].forEach(function (field) { if (creds[field] === null || creds[field] == "" || typeof creds[field] === ''undefined'') { throw ''Unexpected token value has been received'' + ((typeof creds.error !== ''undefined'' && creds.error != "") ? '': '' + creds.error : ''''); } }); if (url === ''{'' + ''$SDWAN.API.URL}'') { throw ''Please change {'' + ''$SDWAN.API.URL} macro to the proper value.''; } if (url.indexOf(''http://'') === -1 && url.indexOf(''https://'') === -1) { url = ''https://'' + url; } if (!url.endsWith(''/'')) { url += ''/''; } if (http_proxy !== ''{'' + ''$SDWAN.HTTP_PROXY}'' && http_proxy !== '''') { request.setProxy(http_proxy); } devices = getHttpData( url + ''dataservice/device'', creds.token, creds.cookie ); if (Array.isArray(devices.data)) { devices = devices.data; } else { throw ''Failed to parse response received from SD-WAN API. Check debug log for more information.''; } } catch (err) { error_msg = err; }; return JSON.stringify({ ''devices'': devices.map(function (device) { obj = { ''name'': device[''host-name''], ''token'': creds.token, ''cookie'': creds.cookie, ''id'': device[''deviceId''], ''uuid'': device[''uuid''], ''type'': device[''device-type''], ''model'': device[''device-model''], ''ip'': device[''system-ip''], ''int_ip'': device[''local-system-ip''], ''cert_valid'': device[''certificate-validity''] }; return obj; }), ''error'': error_msg.toString() });','0',''), ('97150','45750','1','12','$["device-model"]','0',''), ('97151','45751','1','12','$.error','0',''), ('97152','45751','2','20','1h','0',''), ('97153','45752','1','12','$.error','0',''), ('97154','45752','2','20','1h','0',''), ('97155','45753','1','12','$.version','0',''), ('97156','45753','2','20','12h','0',''), ('97157','45754','1','12','$["uptime-date"]','0',''), ('97158','45754','2','21','return (Math.floor(Date.now()/1000)-Math.floor(Number(value)/1000));','0',''), ('97159','45755','1','12','$.state_description','0',''), ('97160','45755','2','20','1h','0',''), ('97161','45756','1','12','$.state','0',''), ('97162','45756','2','21','const idx = [ ''green'', ''yellow'', ''red'' ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('97163','45757','1','12','$["board-serial"]','0',''), ('97164','45758','1','12','$.device_role','2','-1'), ('97165','45759','1','12','$.reachability','0',''), ('97166','45759','2','21','const idx = [ ''reachable'', ''unreachable'', ''auth-failed'', ''staging'' ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('97167','45760','1','12','$.procs','0',''), ('97168','45761','1','12','$["device-os"]','0',''), ('97169','45761','2','20','1d','0',''), ('97170','45762','1','12','$.platform','0',''), ('97171','45762','2','20','1d','0',''), ('97172','45763','1','12','$["certificate-validity"]','2','Unknown'), ('97173','45763','2','21','const idx = [ ''Valid'', ''Invalid'', ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('97174','45764','1','12','$.cpu_idle','0',''), ('97175','45765','1','12','$.controlConnections','2','0'), ('97176','45765','2','14','^[0-9]+$','2','0'), ('97177','45766','1','12','$.min1_avg','0',''), ('97178','45767','1','12','$.min5_avg','0',''), ('97179','45768','1','12','$.min15_avg','0',''), ('97180','45769','1','12','$.total_cpu_count','0',''), ('97181','45770','1','12','$.cpu_system','0',''), ('97182','45771','1','12','$.mem_used','0',''), ('97183','45772','1','12','$.cpu_user','0',''), ('97184','45773','1','12','$["host-name"]','0',''), ('97185','45773','2','20','12h','0',''), ('97186','45774','1','12','$.mem_free','0',''), ('97187','45775','1','12','$.mem_buffers','0',''), ('97188','45776','1','12','$.mem_cached','0',''), ('97189','45777','1','12','$.mem_total','0',''), ('97190','45778','1','12','$.error','0',''), ('97191','45778','2','20','1h','0',''), ('97192','45779','1','12','$.error','0',''), ('97193','45779','2','20','1h','0',''), ('97194','45780','1','12','$.devices[?(@.cert_valid != "Valid")].length()','0',''), ('97195','45781','1','12','$.devices.length()','0',''), ('97196','45781','2','20','1h','0',''), ('97197','45782','1','12','$.devices[?(@.type == "vbond")].length()','0',''), ('97198','45782','2','20','1h','0',''), ('97199','45783','1','12','$.devices[?(@.type == "vedge")].length()','0',''), ('97200','45783','2','20','1h','0',''), ('97201','45784','1','12','$.devices[?(@.type == "vmanage")].length()','0',''), ('97202','45784','2','20','1h','0',''), ('97203','45785','1','12','$.devices[?(@.type == "vsmart")].length()','0',''), ('97204','45785','2','20','1h','0',''), ('97205','45786','1','21','return (100 - value);','0',''), ('97206','45787','1','12','$.devices','0',''), ('97207','45788','1','21','var input = JSON.parse(value), output = []; Object.keys(input).sort().forEach(function (key) { if (key.match(/(disk[-_]mount)/g)) { output.push( { ''mount'': input[key], ''key'': key.replace(/[-_]mount/, '''') } ); } }); return JSON.stringify(output);','0',''), ('97208','45788','2','20','3h','0',''), ('97209','45789','1','21','var input = JSON.parse(value), output = []; input.data.forEach(function (if_item) { var desc = (typeof if_item[''desc''] !== ''undefined'') ? if_item[''desc''] : ((typeof if_item[''description''] !== ''undefined'') ? if_item[''description''] : ''''); output.push( { ''key'': if_item[''vdevice-dataKey''], ''ifindex'': if_item[''ifindex''], ''name'': if_item[''ifname''], ''description'': (desc != ''None'') ? desc : '''' } ); }); return JSON.stringify(output);','0',''), ('97210','45789','2','20','3h','0',''), ('97211','45790','1','12','$.data','2','[]'), ('97212','45791','1','21','var input = JSON.parse(value), output = {}; Object.keys(input).sort().forEach(function (key) { var re = new RegExp("^{#FSKEY}[-_]"); if (key.match(re)) { output[key.replace(re, '''')] = input[key]; } }); return JSON.stringify(output);','0',''), ('97213','45792','1','12','$.data[?(@["vdevice-dataKey"] == "{#IFKEY}")].first()','1',''), ('97214','45793','1','12','$.data[?(@.local_color == "{#LOCAL}" && @.remote_color == "{#REMOTE}")].first()','1',''), ('97215','45793','2','20','3h','0',''), ('97216','45794','1','12','$.avail','0',''), ('97217','45794','2','21','const sizes = [''K'', ''M'', ''G'', ''T'', ''P'', ''E'', ''Z'', ''Y'']; var multiplier = sizes.indexOf(value.slice(-1)); if (multiplier === -1) { return value; } return Number(value.slice(0, -1)) * 1024 * multiplier;','0',''), ('97218','45795','1','12','$.use','0',''), ('97219','45796','1','12','$.size','0',''), ('97220','45796','2','21','const sizes = [''K'', ''M'', ''G'', ''T'', ''P'', ''E'', ''Z'', ''Y'']; var multiplier = sizes.indexOf(value.slice(-1)); if (multiplier === -1) { return value; } return Number(value.slice(0, -1)) * 1024 * multiplier;','0',''), ('97221','45797','1','12','$.used','0',''), ('97222','45797','2','21','const sizes = [''K'', ''M'', ''G'', ''T'', ''P'', ''E'', ''Z'', ''Y'']; var multiplier = sizes.indexOf(value.slice(-1)); if (multiplier === -1) { return value; } return Number(value.slice(0, -1)) * 1024 * multiplier;','0',''), ('97223','45798','1','12','$["if-admin-status"]','0',''), ('97224','45798','2','21','var idx = [ ''if-state-up'', ''if-state-down'' ].indexOf(value); var idx = idx !== -1 ? idx : [ ''Up'', ''Down'', ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('97225','45799','1','12','$["rx-drops"]','2','0'), ('97226','45800','1','12','$["rx-errors"]','2','0'), ('97227','45801','1','12','$["ipv6-rx-drops"]','2','-1'), ('97228','45802','1','12','$["ipv6-rx-errors"]','2','-1'), ('97229','45803','1','12','$["rx-octets"]','2','0'), ('97230','45803','2','10','','0',''), ('97231','45803','3','1','8','0',''), ('97232','45804','1','12','$["tx-drops"]','2','0'), ('97233','45805','1','12','$["tx-errors"]','2','0'), ('97234','45806','1','12','$["ipv6-tx-drops"]','2','-1'), ('97235','45807','1','12','$["ipv6-tx-errors"]','2','-1'), ('97236','45808','1','12','$["tx-octets"]','2','0'), ('97237','45808','2','10','','0',''), ('97238','45808','3','1','8','0',''), ('97239','45809','1','12','$["speed-mbps"]','0',''), ('97240','45809','2','1','1000000','0',''), ('97241','45810','1','12','$["if-oper-status"]','0',''), ('97242','45810','2','21','var idx = [ ''if-oper-state-ready'', ''if-oper-state-lower-layer-down'', ''if-oper-state-no-pass'' ].indexOf(value); var idx = idx !== -1 ? idx : [ ''Up'', ''Down'', ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('97243','45811','1','12','$.jitter','0',''), ('97244','45812','1','12','$.latency','0',''), ('97245','45813','1','12','$.loss_percentage','0',''), ('97246','45814','1','12','$.iax.trunks[?(@.ObjectName==''{#OBJECTNAME}'')].first()','0',''), ('97247','45815','1','12','$.pjsip.trunks[?(@.ObjectName==''{#OBJECTNAME}'')].first()','0',''), ('97248','45816','1','12','$.queue.queues[?(@.Queue==''{#QUEUE}'')].first()','0',''), ('97249','45817','1','12','$.sip.trunks[?(@.ObjectName==''{#OBJECTNAME}'')].first()','0',''), ('97250','45819','1','12','$.projects','0',''), ('97251','45821','1','12','$.issues[?(@.severity.name==''feature'')].length()','0',''), ('97252','45822','1','12','$.issues.length()','0',''), ('97253','45823','1','12','$.issues[?(@.status.name==''resolved'')].length()','0',''), ('97254','45824','1','12','$.issues[?(@.status.name==''new'')].length()','0',''), ('97255','45825','1','12','$.issues[?(@.status.name==''feedback'')].length()','0',''), ('97256','45826','1','12','$.issues[?(@.status.name==''confirmed'')].length()','0',''), ('97257','45827','1','12','$.issues[?(@.status.name==''closed'')].length()','0',''), ('97258','45828','1','12','$.issues[?(@.status.name==''assigned'')].length()','0',''), ('97259','45829','1','12','$.issues[?(@.status.name==''acknowledged'')].length()','0',''), ('97260','45830','1','12','$.issues[?(@.severity.name==''tweak'')].length()','0',''), ('97261','45831','1','12','$.issues[?(@.severity.name==''trivial'')].length()','0',''), ('97262','45832','1','12','$.issues[?(@.severity.name==''text'')].length()','0',''), ('97263','45833','1','12','$.issues[?(@.severity.name==''minor'')].length()','0',''), ('97264','45834','1','12','$.issues[?(@.severity.name==''major'')].length()','0',''), ('97265','45835','1','12','$.issues[?(@.priority.name==''high'')].length()','0',''), ('97266','45836','1','12','$.issues[?(@.priority.name==''immediate'')].length()','0',''), ('97267','45837','1','12','$.issues[?(@.severity.name==''block'')].length()','0',''), ('97268','45838','1','12','$.issues[?(@.resolution.name==''wont fix'')].length()','0',''), ('97269','45839','1','12','$.issues[?(@.resolution.name==''unable to duplicate'')].length()','0',''), ('97270','45840','1','12','$.issues[?(@.resolution.name==''suspended'')].length()','0',''), ('97271','45841','1','12','$.issues[?(@.resolution.name==''reopened'')].length()','0',''), ('97272','45842','1','12','$.issues[?(@.resolution.name==''open'')].length()','0',''), ('97273','45843','1','12','$.issues[?(@.resolution.name==''no change required'')].length()','0',''), ('97274','45844','1','12','$.issues[?(@.resolution.name==''not fixable'')].length()','0',''), ('97275','45845','1','12','$.issues[?(@.resolution.name==''fixed'')].length()','0',''), ('97276','45846','1','12','$.issues[?(@.resolution.name==''duplicate'')].length()','0',''), ('97277','45847','1','12','$.issues[?(@.priority.name==''urgent'')].length()','0',''), ('97278','45848','1','12','$.issues[?(@.priority.name==''normal'')].length()','0',''), ('97279','45849','1','12','$.issues[?(@.priority.name==''none'')].length()','0',''), ('97280','45850','1','12','$.issues[?(@.priority.name==''low'')].length()','0',''), ('97281','45851','1','12','$.issues[?(@.severity.name==''crash'')].length()','0',''), ('97283','45854','1','20','1h','0',''), ('97284','45855','1','20','1h','0',''), ('97288','45859','1','20','1h','0',''), ('97290','45861','1','20','1h','0',''), ('97292','45863','1','21',E'try { var response = Object.keys(JSON.parse(value).header).filter(function (f) { return f.match(/HTTP\\/[\\d.]+\\s+\\d{3}/); }); return response.pop(); } catch (error) { return "HTTP/1.1 408 Request timeout"; }','0',''), ('97293','45863','2','20','1h','0',''), ('97294','45864','1','12','$.body[?(@.Name)].length()','0',''), ('97295','45865','1','12','$..region.first()','0',''), ('97296','45866','1','12','$.error','2','HTTP/1.1 200 OK'), ('97297','45866','2','20','1h','0',''), ('97298','45867','1','12','$[?(@.Name)].length()','0',''), ('97299','45868','1','21',E'try { var response = Object.keys(JSON.parse(value).header).filter(function (f) { return f.match(/HTTP\\/[\\d.]+\\s+\\d{3}/); }); return response.pop(); } catch (error) { return "HTTP/1.1 408 Request timeout"; }','0',''), ('97300','45868','2','20','1h','0',''), ('97301','45869','1','12','$.body','1',''), ('97302','45870','1','21',E'try { var response = Object.keys(JSON.parse(value).header).filter(function (f) { return f.match(/HTTP\\/[\\d.]+\\s+\\d{3}/); }); return response.pop(); } catch (error) { return "HTTP/1.1 408 Request timeout"; }','0',''), ('97303','45870','2','20','1h','0',''), ('97304','45871','1','21',E'try { var response = Object.keys(JSON.parse(value).header).filter(function (f) { return f.match(/HTTP\\/[\\d.]+\\s+\\d{3}/); }); return response.pop(); } catch (error) { return "HTTP/1.1 408 Request timeout"; }','0',''), ('97305','45871','2','20','1h','0',''), ('97306','45872','1','12','$.body..Version.first()','0',''), ('97307','45873','1','12','$.body.config.Version.Version','0',''), ('97308','45874','1','21',E'try { var response = Object.keys(JSON.parse(value).header).filter(function (f) { return f.match(/HTTP\\/[\\d.]+\\s+\\d{3}/); }); return response.pop(); } catch (error) { return "HTTP/1.1 408 Request timeout"; }','0',''), ('97309','45874','2','20','1h','0',''), ('97310','45875','1','12','$.body.stats.raft.state','1',''), ('97311','45875','2','21','const idx = [ ''Leader'', ''Follower'', ''Candidate'', ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('97312','45876','1','12','$.body.stats.raft.num_peers','1',''), ('97313','45877','1','21',E'try { var response = Object.keys(JSON.parse(value).header).filter(function (f) { return f.match(/HTTP\\/[\\d.]+\\s+\\d{3}/); }); return response.pop(); } catch (error) { return "HTTP/1.1 408 Request timeout"; }','0',''), ('97314','45877','2','20','1h','0',''), ('97315','45878','1','12','$.body','1',''), ('97316','45879','1','12','$.body.stats.raft.protocol_version','1',''), ('97317','45880','1','22','nomad_client_allocations_pending value ','2','0'), ('97318','45881','1','22','nomad_client_host_memory_available value ','1',''), ('97319','45882','1','22','nomad_client_uptime value ','0',''), ('97320','45883','1','22','nomad_client_unallocated_memory value ','1',''), ('97321','45883','2','1','1000000','0',''), ('97322','45884','1','22','nomad_client_unallocated_disk value ','1',''), ('97323','45884','2','1','1000000','0',''), ('97324','45885','1','22','nomad_client_unallocated_cpu value ','1',''), ('97325','45886','1','22','nomad_client_allocated_cpu value ','1',''), ('97326','45887','1','22','nomad_client_allocated_disk value ','1',''), ('97327','45887','2','1','1000000','0',''), ('97328','45888','1','22','nomad_client_allocated_memory value ','1',''), ('97329','45888','2','1','1000000','0',''), ('97330','45889','1','22','nomad_client_host_memory_used value ','0',''), ('97331','45890','1','22','nomad_client_host_memory_total value ','0',''), ('97332','45891','1','22','nomad_client_host_memory_free value ','0',''), ('97333','45892','1','22','nomad_client_allocations_blocked value ','2','0'), ('97334','45893','1','22','nomad_client_allocs_restart function sum','2','0'), ('97335','45893','2','10','','0',''), ('97336','45893','3','20','1h','0',''), ('97337','45894','1','22','nomad_client_allocs_complete function sum','2','0'), ('97338','45894','2','10','','0',''), ('97339','45894','3','20','1h','0',''), ('97340','45895','1','22','nomad_client_allocs_failed function sum','2','0'), ('97341','45895','2','10','','0',''), ('97342','45895','3','20','1h','0',''), ('97343','45896','1','22','nomad_client_allocations_migrating value ','2','0'), ('97344','45897','1','22','nomad_client_host_cpu_user function avg','1',''), ('97345','45898','1','22','nomad_client_allocs_oom_killed value ','2','0'), ('97346','45898','2','20','1h','0',''), ('97347','45899','1','22','nomad_client_host_cpu_system function avg','1',''), ('97348','45900','1','22','nomad_client_host_cpu_idle function avg','1',''), ('97349','45901','1','22','nomad_client_allocations_terminal value ','2','0'), ('97350','45902','1','22','nomad_client_allocations_start value ','2','0'), ('97351','45903','1','22','nomad_client_allocations_running value ','2','0'), ('97352','45904','1','22','nomad_client_host_cpu_total function avg','1',''), ('97353','45905','1','22','nomad_raft_boltdb_txstats_pageAlloc value ','1',''), ('97354','45905','2','10','','0',''), ('97355','45906','1','22','nomad_raft_commitNumLogs value ','1',''), ('97356','45907','1','22','nomad_raft_leader_dispatchNumLogs value ','2','0'), ('97357','45908','1','22','nomad_raft_leader_dispatchLog_sum value ','1',''), ('97358','45908','2','1','1.0E-9','0',''), ('97359','45909','1','22','nomad_raft_lastIndex value ','1',''), ('97360','45910','1','22','nomad_nomad_fsm_register_node_sum value ','1',''), ('97361','45910','2','1','1.0E-9','0',''), ('97362','45911','1','22','nomad_raft_boltdb_openReadTxn value ','1',''), ('97363','45912','1','22','nomad_raft_fsm_enqueue_sum value ','1',''), ('97364','45912','2','1','1.0E-9','0',''), ('97365','45913','1','22','nomad_nomad_fsm_autopilot_sum value ','2','0'), ('97366','45913','2','1','1.0E-9','0',''), ('97367','45914','1','22','nomad_raft_fsm_apply_sum value ','1',''), ('97368','45914','2','1','1.0E-9','0',''), ('97369','45915','1','22','nomad_nomad_worker_dequeue_eval_sum value ','1',''), ('97370','45915','2','1','1.0E-9','0',''), ('97371','45916','1','22','nomad_raft_boltdb_totalReadTxn value ','1',''), ('97372','45916','2','10','','0',''), ('97373','45917','1','22','nomad_raft_boltdb_txstats_pageCount value ','1',''), ('97374','45918','1','22','nomad_raft_boltdb_txstats_writeTime_sum value ','1',''), ('97375','45918','2','1','1.0E-9','0',''), ('97376','45919','1','22','nomad_raft_boltdb_txstats_write value ','1',''), ('97377','45919','2','10','','0',''), ('97378','45920','1','22','nomad_raft_boltdb_txstats_split value ','1',''), ('97379','45920','2','10','','0',''), ('97380','45921','1','22','nomad_raft_boltdb_txstats_spillTime_sum value ','1',''), ('97381','45921','2','1','1.0E-9','0',''), ('97382','45922','1','22','nomad_raft_boltdb_txstats_cursorCount value ','1',''), ('97383','45922','2','10','','0',''), ('97384','45923','1','22','nomad_raft_boltdb_txstats_nodeCount value ','1',''), ('97385','45923','2','10','','0',''), ('97386','45924','1','22','nomad_raft_boltdb_txstats_nodeDeref value ','1',''), ('97387','45924','2','10','','0',''), ('97388','45925','1','22','nomad_raft_boltdb_txstats_spill value ','1',''), ('97389','45925','2','10','','0',''), ('97390','45926','1','22','nomad_raft_boltdb_txstats_rebalanceTime_sum value ','1',''), ('97391','45926','2','1','1.0E-9','0',''), ('97392','45927','1','22','nomad_raft_boltdb_txstats_rebalance value ','1',''), ('97393','45927','2','10','','0',''), ('97394','45928','1','22','nomad_raft_leader_lastContact{quantile="0.99"} value ','1',''), ('97395','45928','2','25','NaN 0','0',''), ('97396','45928','3','1','0.001','0',''), ('97397','45929','1','22','nomad_nomad_rpc_query value ','1',''), ('97398','45929','2','10','','0',''), ('97399','45930','1','22','nomad_raft_replication_appendEntries_rpc function avg','1',''), ('97400','45930','2','1','0.001','0',''), ('97401','45931','1','22','nomad_serf_queue_Query_sum value ','1',''), ('97402','45932','1','22','nomad_nomad_worker_update_eval_sum value ','1',''), ('97403','45932','2','1','1.0E-9','0',''), ('97404','45933','1','22','nomad_nomad_worker_submit_plan_sum value ','1',''), ('97405','45933','2','1','1.0E-9','0',''), ('97406','45934','1','22','nomad_nomad_worker_send_ack_sum value ','1',''), ('97407','45934','2','1','1.0E-9','0',''), ('97408','45935','1','22','nomad_nomad_worker_invoke_scheduler_service_sum value ','1',''), ('97409','45935','2','1','1.0E-9','0',''), ('97410','45936','1','22','nomad_nomad_worker_dequeue_eval_sum value ','1',''), ('97411','45936','2','1','1.0E-9','0',''), ('97412','45937','1','22','nomad_nomad_worker_dequeue_eval_sum value ','1',''), ('97413','45937','2','1','1.0E-9','0',''), ('97414','45938','1','22','process_virtual_memory_bytes value ','1',''), ('97415','45939','1','22','nomad_nomad_vault_token_ttl value ','1',''), ('97416','45939','2','1','0.001','0',''), ('97417','45940','1','22','nomad_nomad_vault_token_next_renewal value ','1',''), ('97418','45940','2','1','0.001','0',''), ('97419','45941','1','22','nomad_nomad_vault_token_last_renewal value ','1',''), ('97420','45941','2','1','0.001','0',''), ('97421','45942','1','22','nomad_nomad_vault_distributed_tokens_revoking value ','1',''), ('97422','45943','1','22','nomad_state_snapshotIndex value ','1',''), ('97423','45944','1','22','nomad_serf_queue_Intent_sum value ','1',''), ('97424','45945','1','22','nomad_raft_transition_heartbeat_timeout value ','2','0'), ('97425','45945','2','20','1h','0',''), ('97426','45946','1','22','nomad_serf_queue_Event_sum value ','1',''), ('97427','45947','1','22','nomad_scheduler_allocs_reschedule_attempted function sum','2','0'), ('97428','45948','1','22','nomad_runtime_total_gc_runs value ','1',''), ('97429','45949','1','22','nomad_runtime_sys_bytes value ','1',''), ('97430','45950','1','22','nomad_runtime_num_goroutines value ','1',''), ('97431','45951','1','22','nomad_runtime_heap_objects value ','1',''), ('97432','45952','1','22','nomad_runtime_gc_pause_ns_sum value ','1',''), ('97433','45952','2','1','1.0E-9','0',''), ('97434','45953','1','22','nomad_runtime_free_count value ','1',''), ('97435','45953','2','10','','0',''), ('97436','45954','1','22','nomad_runtime_alloc_bytes value ','1',''), ('97437','45955','1','22','nomad_nomad_rpc_request value ','1',''), ('97438','45955','2','10','','0',''), ('97439','45956','1','22','nomad_nomad_rpc_request value ','1',''), ('97440','45956','2','10','','0',''), ('97441','45957','1','22','nomad_raft_boltdb_numFreePages value ','1',''), ('97442','45958','1','22','process_resident_memory_bytes value ','1',''), ('97443','45959','1','22','nomad_raft_boltdb_numPendingPages value ','1',''), ('97444','45960','1','22','nomad_raft_barrier value ','1',''), ('97445','45960','2','10','','0',''), ('97446','45961','1','22','nomad_raft_boltdb_freePageBytes value ','1',''), ('97447','45962','1','22','nomad_nomad_broker_system_unacked value ','1',''), ('97448','45963','1','22','nomad_nomad_fsm_apply_plan_results_sum value ','1',''), ('97449','45963','2','1','1.0E-9','0',''), ('97450','45964','1','22','nomad_nomad_eval_ack_sum value ','1',''), ('97451','45964','2','1','1.0E-9','0',''), ('97452','45965','1','22','process_cpu_seconds_total value ','1',''), ('97453','45965','2','10','','0',''), ('97454','45966','1','22','nomad_nomad_client_update_status_sum value ','1',''), ('97455','45966','2','1','1.0E-9','0',''), ('97456','45967','1','22','nomad_nomad_client_update_alloc_sum value ','1',''), ('97457','45967','2','1','1.0E-9','0',''), ('97458','45968','1','22','nomad_nomad_client_list_sum value ','1',''), ('97459','45968','2','1','1.0E-9','0',''), ('97460','45969','1','22','nomad_nomad_client_get_client_allocs_sum value ','1',''), ('97461','45969','2','1','1.0E-9','0',''), ('97462','45970','1','22','nomad_nomad_eval_dequeue_sum value ','1',''), ('97463','45970','2','1','1.0E-9','0',''), ('97464','45971','1','22','nomad_nomad_broker_total_waiting value ','1',''), ('97465','45972','1','22','nomad_nomad_broker_total_unacked value ','1',''), ('97466','45973','1','22','nomad_nomad_broker_total_ready value ','1',''), ('97467','45974','1','22','nomad_nomad_broker_total_pending value ','1',''), ('97468','45975','1','22','nomad_nomad_broker_system_ready value ','1',''), ('97469','45976','1','22','nomad_nomad_fsm_update_eval_sum value ','1',''), ('97470','45976','2','1','1.0E-9','0',''), ('97471','45977','1','22','nomad_nomad_broker_service_unacked value ','1',''), ('97472','45978','1','22','nomad_nomad_broker_service_ready value ','1',''), ('97473','45979','1','22','nomad_nomad_eval_ack_sum function avg','1',''), ('97474','45979','2','1','1.0E-9','0',''), ('97475','45980','1','22','nomad_nomad_blocked_evals_total_quota_limit value ','1',''), ('97476','45981','1','22','nomad_nomad_blocked_evals_total_escaped value ','1',''), ('97477','45982','1','22','nomad_nomad_blocked_evals_total_blocked value ','1',''), ('97478','45983','1','22','nomad_nomad_blocked_evals_memory value ','1',''), ('97479','45984','1','22','nomad_nomad_blocked_evals_job_memory value ','1',''), ('97480','45985','1','22','nomad_nomad_blocked_evals_job_cpu value ','1',''), ('97481','45986','1','22','nomad_nomad_blocked_evals_cpu value ','1',''), ('97482','45987','1','22','nomad_nomad_autopilot_healthy value ','1',''), ('97483','45988','1','22','nomad_nomad_autopilot_failure_tolerance value ','1',''), ('97484','45989','1','22','nomad_nomad_fsm_alloc_client_update_sum value ','1',''), ('97485','45989','2','1','1.0E-9','0',''), ('97486','45990','1','22','nomad_nomad_fsm_register_job_sum value ','1',''), ('97487','45990','2','1','1.0E-9','0',''), ('97488','45991','1','22','nomad_nomad_heartbeat_active value ','1',''), ('97489','45992','1','22','nomad_raft_boltdb_freelistBytes value ','1',''), ('97490','45993','1','22','nomad_nomad_leader_reconcile_sum value ','1',''), ('97491','45993','2','1','1.0E-9','0',''), ('97492','45994','1','22','nomad_raft_apply value ','2','0'), ('97493','45994','2','10','','0',''), ('97494','45995','1','22','nomad_raft_appliedIndex value ','1',''), ('97495','45996','1','22','process_open_fds value ','1',''), ('97496','45997','1','22','process_max_fds value ','1',''), ('97497','45998','1','22','nomad_nomad_plan_wait_for_index_sum value ','1',''), ('97498','45998','2','1','1.0E-9','0',''), ('97499','45999','1','22','nomad_nomad_plan_submit_sum value ','1',''), ('97500','45999','2','1','1.0E-9','0',''), ('97501','46000','1','22','nomad_nomad_plan_queue_depth value ','1',''), ('97502','46001','1','22','nomad_nomad_plan_evaluate_sum value ','1',''), ('97503','46001','2','1','1.0E-9','0',''), ('97504','46002','1','22','nomad_nomad_plan_apply_sum value ','1',''), ('97505','46002','2','1','1.0E-9','0',''), ('97506','46003','1','22','nomad_nomad_namespace_list_namespace_sum value ','1',''), ('97507','46003','2','1','1.0E-9','0',''), ('97508','46004','1','22','nomad_memberlist_gossip_sum value ','1',''), ('97509','46004','2','1','1.0E-9','0',''), ('97510','46005','1','22','nomad_nomad_leader_reconcileMember_sum value ','1',''), ('97511','46005','2','1','1.0E-9','0',''), ('97512','46006','1','22','nomad_nomad_leader_barrier_sum value ','1',''), ('97513','46006','2','1','1.0E-9','0',''), ('97514','46007','1','22','nomad_nomad_job_allocations_sum value ','1',''), ('97515','46007','2','1','1.0E-9','0',''), ('97516','46008','1','22','nomad_nomad_job_summary_unknown function sum','2','0'), ('97517','46009','1','22','nomad_nomad_job_summary_starting function sum','2','0'), ('97518','46010','1','22','nomad_nomad_job_summary_running function sum','2','0'), ('97519','46011','1','22','nomad_nomad_job_summary_queued function sum','2','0'), ('97520','46012','1','22','nomad_nomad_job_summary_lost function sum','2','0'), ('97521','46013','1','22','nomad_nomad_job_summary_get_job_summary_sum value ','1',''), ('97522','46013','2','1','1.0E-9','0',''), ('97523','46014','1','22','nomad_nomad_job_summary_failed function sum','2','0'), ('97524','46015','1','22','nomad_nomad_job_summary_complete function sum','2','0'), ('97525','46016','1','22','nomad_nomad_job_status_running value ','2','0'), ('97526','46017','1','22','nomad_nomad_job_status_pending value ','2','0'), ('97527','46018','1','22','nomad_nomad_job_status_dead value ','2','0'), ('97528','46019','1','22','nomad_nomad_job_get_job_sum value ','1',''), ('97529','46019','2','1','1.0E-9','0',''), ('97530','46020','1','22','nomad_nomad_job_evaluations_sum value ','1',''), ('97531','46020','2','1','1.0E-9','0',''), ('97532','46021','1','22','nomad_nomad_worker_wait_for_index_sum value ','1',''), ('97533','46021','2','1','1.0E-9','0',''), ('97534','46022','1','12','$.body','1',''), ('97535','46022','2','20','1h','0',''), ('97536','46023','1','16','$.error','1',''), ('97537','46023','2','20','1h','0',''), ('97538','46024','1','21','var raw = JSON.parse(value), body = raw.body, exist_key = [], result = []; function getField(data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field "'' + path + ''" is not present in data received.''; } data = data[step]; } return data; } for (i in body) { var uniq_element = true; for (key in exist_key) { if ((exist_key[key].JobID == getField(body[i], ''JobID'')) && (exist_key[key].TaskGroup == getField(body[i], ''TaskGroup'')) && (exist_key[key].Namespace == getField(body[i], ''Namespace''))) { uniq_element = false; } } if (uniq_element) { exist_key.push({ ''JobID'': body[i].JobID, ''TaskGroup'': body[i].TaskGroup, ''Namespace'': body[i].Namespace }); result.push(body[i]); } } return JSON.stringify(result);','0',''), ('97539','46024','2','20','1h','0',''), ('97540','46025','1','23','nomad_client_host_disk_available{disk=~".*"}','0',''), ('97541','46026','1','21','var raw = JSON.parse(value), body = raw.body[0], arr = []; function getField(data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field "'' + path + ''" is not present in data received.''; } data = data[step]; } return data; } var keys = Object.keys(getField(body,''Drivers'')); for (k in keys) { arr.push({ ''{#DRIVER.NAME}'': keys[k], ''{#DRIVER.DETECTED}'': getField(body.Drivers[keys[k]],''Detected''), }); } return JSON.stringify(arr);','0',''), ('97542','46026','2','20','1h','0',''), ('97543','46027','1','12','$.body..Drivers.{#DRIVER.NAME}.Detected.first()','0',''), ('97544','46027','2','6','','0',''), ('97545','46028','1','12','$.body..Drivers.{#DRIVER.NAME}.Healthy.first()','0',''), ('97546','46028','2','6','','0',''), ('97547','46028','3','20','1h','0',''), ('97548','46029','1','22','nomad_client_allocs_cpu_allocated{job="{#JOB.NAME}",task_group="{#JOB.TASK.GROUP}",namespace="{#JOB.NAMESPACE}"} function avg','0',''), ('97549','46030','1','22','nomad_client_allocs_cpu_system{job="{#JOB.NAME}",task_group="{#JOB.TASK.GROUP}",namespace="{#JOB.NAMESPACE}"} function avg','0',''), ('97550','46031','1','22','nomad_client_allocs_cpu_throttled_periods{job="{#JOB.NAME}",task_group="{#JOB.TASK.GROUP}",namespace="{#JOB.NAMESPACE}"} function avg','0',''), ('97551','46031','2','1','1.0E-9','0',''), ('97552','46032','1','22','nomad_client_allocs_cpu_throttled_time{job="{#JOB.NAME}",task_group="{#JOB.TASK.GROUP}",namespace="{#JOB.NAMESPACE}"} function avg','1',''), ('97553','46032','2','1','1.0E-9','0',''), ('97554','46033','1','22','nomad_client_allocs_cpu_total_percent{job="{#JOB.NAME}",task_group="{#JOB.TASK.GROUP}",namespace="{#JOB.NAMESPACE}"} function avg','0',''), ('97555','46034','1','22','nomad_client_allocs_cpu_total_ticks{job="{#JOB.NAME}",task_group="{#JOB.TASK.GROUP}",namespace="{#JOB.NAMESPACE}"} function avg','0',''), ('97556','46035','1','22','nomad_client_allocs_cpu_user{job="{#JOB.NAME}",task_group="{#JOB.TASK.GROUP}",namespace="{#JOB.NAMESPACE}"} function avg','0',''), ('97557','46036','1','22','nomad_client_allocs_memory_allocated{job="{#JOB.NAME}",task_group="{#JOB.TASK.GROUP}",namespace="{#JOB.NAMESPACE}"} function avg','0',''), ('97558','46037','1','22','nomad_client_allocs_memory_cache{job="{#JOB.NAME}",task_group="{#JOB.TASK.GROUP}",namespace="{#JOB.NAMESPACE}"} function avg','0',''), ('97559','46038','1','22','nomad_client_allocs_memory_swap{job="{#JOB.NAME}",task_group="{#JOB.TASK.GROUP}",namespace="{#JOB.NAMESPACE}"} function avg','0',''), ('97560','46039','1','22','nomad_client_allocs_memory_usage{job="{#JOB.NAME}",task_group="{#JOB.TASK.GROUP}",namespace="{#JOB.NAMESPACE}"} function avg','0',''), ('97561','46040','1','22','nomad_client_host_disk_available{disk="{#DEV.NAME}"} value ','0',''), ('97562','46041','1','22','nomad_client_host_disk_inodes_percent{disk="{#DEV.NAME}"} value ','0',''), ('97563','46042','1','22','nomad_client_host_disk_size{disk="{#DEV.NAME}"} value ','0',''), ('97564','46043','1','22','nomad_client_host_disk_used{disk="{#DEV.NAME}"} value ','0',''), ('97565','46044','1','22','nomad_client_host_disk_used_percent{disk="{#DEV.NAME}"} value ','0',''), ('97566','46046','1','12','$.data.process[''snmp poller''].busy.avg','3','Processes snmp poller not started'), ('97567','46049','1','12','$.data.process[''snmp poller''].busy.avg','3','No "snmp poller" processes started.'), ('97568','46050','1','21','value = JSON.parse(value) var list = [] list.push({''scope'': value[''scope''].split('':'')[3], ''access_token'': value[''access_token'']}) return JSON.stringify(list);','0',''), ('97569','46051','1','12','$.items','0',''), ('97570','46052','1','12','$.items','0',''), ('97571','46053','1','12','$.items','0',''), ('97572','46055','1','12','$..[?(@.severity == ''critical'')].length()','0',''), ('97573','46055','2','20','1h','0',''), ('97574','46056','1','12','$..[?(@.severity == ''error'')].length()','0',''), ('97575','46056','2','20','1h','0',''), ('97576','46057','1','12','$..[?(@.severity == ''information'')].length()','0',''), ('97577','46057','2','20','1h','0',''), ('97578','46058','1','12','$..[?(@.severity == ''ok'')].length()','0',''), ('97579','46058','2','20','1h','0',''), ('97580','46059','1','12','$..[?(@.severity == ''warning'')].length()','0',''), ('97581','46059','2','20','1h','0',''), ('97582','46061','1','20','1h','0',''), ('97583','46062','1','20','1h','0',''), ('97584','46063','1','20','1h','0',''), ('97585','46064','1','12','$.items[0]','3','Could not parse resource status data'), ('97586','46065','1','12','$[?(@.id == "{#ALERT_ID}")].severity.first()','3','Could not find alert severity'), ('97587','46065','2','21','const idx = [ ''ok'', ''warning'', ''error'', ''critical'', ''information'' ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('97588','46065','3','20','1h','0',''), ('97589','46066','1','12','$[?(@.name == "{#NAME}")].enabled.first()','3','Could not find customer status'), ('97590','46066','2','6','','0',''), ('97591','46066','3','20','1h','0',''), ('97592','46067','1','12','$.context.attributes.[?(@.name == "agent")].kvs.[?(@.key == "enabled")].value.first()','3','Could not parse agent status'), ('97593','46067','2','20','1h','0',''), ('97594','46068','1','12','$.aggregate.names','3','Could not parse protection plan name'), ('97595','46068','2','20','1h','0',''), ('97596','46069','1','12','$.policies.[?(@.type == "policy.security.vulnerability_assessment")].last_success_run.first()','1',''), ('97597','46069','2','21','return Math.floor(Date.parse(value) / 1000);','0',''), ('97598','46069','3','20','1h','0',''), ('97599','46070','1','12','$.policies.[?(@.type == "policy.security.vulnerability_assessment")].next_run.first()','1',''), ('97600','46070','2','21','return Math.floor(Date.parse(value) / 1000);','0',''), ('97601','46070','3','20','1h','0',''), ('97602','46071','1','12','$.aggregate.status','3','Could not parse protection status'), ('97603','46071','2','20','1h','0',''), ('97604','46072','1','12','$.policies.[?(@.type == "policy.security.antimalware_protection")].last_run.first()','1',''), ('97605','46072','2','21','return Math.floor(Date.parse(value) / 1000);','0',''), ('97606','46072','3','20','1h','0',''), ('97607','46073','1','12','$.policies.[?(@.type == "policy.security.antimalware_protection")].last_success_run.first()','1',''), ('97608','46073','2','21','return Math.floor(Date.parse(value) / 1000);','0',''), ('97609','46073','3','20','1h','0',''), ('97610','46074','1','12','$.policies.[?(@.type == "policy.security.antimalware_protection")].next_run.first()','1',''), ('97611','46074','2','21','return Math.floor(Date.parse(value) / 1000);','0',''), ('97612','46074','3','20','1h','0',''), ('97613','46075','1','12','$.policies.[?(@.type == "policy.security.patch_management")].last_run.first()','1',''), ('97614','46075','2','21','return Math.floor(Date.parse(value) / 1000);','0',''), ('97615','46075','3','20','1h','0',''), ('97616','46076','1','12','$.context.attributes.[?(@.name == "agent")].kvs.[?(@.key == "is_online")].value.first()','3','Could not parse agent reachability status'), ('97617','46076','2','20','1h','0',''), ('97618','46077','1','12','$.policies.[?(@.type == "policy.security.patch_management")].last_success_run.first()','1',''), ('97619','46077','2','21','return Math.floor(Date.parse(value) / 1000);','0',''), ('97620','46077','3','20','1h','0',''), ('97621','46078','1','12','$.policies.[?(@.type == "policy.security.patch_management")].next_run.first()','1',''), ('97622','46078','2','21','return Math.floor(Date.parse(value) / 1000);','0',''), ('97623','46078','3','20','1h','0',''), ('97624','46079','1','12','$.context.attributes.[?(@.name == "cyberfit")].details.[?(@.key == "cyberfit_score_value")].value.first()','2','-1'), ('97625','46079','2','20','1h','0',''), ('97626','46080','1','12','$.policies.[?(@.type == "policy.backup.machine")].last_run.first()','1',''), ('97627','46080','2','21','return Math.floor(Date.parse(value) / 1000);','0',''), ('97628','46080','3','20','1h','0',''), ('97629','46081','1','12','$.policies.[?(@.type == "policy.backup.machine")].last_success_run.first()','1',''), ('97630','46081','2','21','return Math.floor(Date.parse(value) / 1000);','0',''), ('97631','46081','3','20','1h','0',''), ('97632','46082','1','12','$.policies.[?(@.type == "policy.backup.machine")].next_run.first()','1',''), ('97633','46082','2','21','return Math.floor(Date.parse(value) / 1000);','0',''), ('97634','46082','3','20','1h','0',''), ('97635','46083','1','12','$.context.attributes.[?(@.name == "agent")].kvs.[?(@.key == "version")].value.first()','3','Could not parse agent version'), ('97636','46083','2','20','1h','0',''), ('97637','46084','1','12','$.policies.[?(@.type == "policy.security.vulnerability_assessment")].last_run.first()','1',''), ('97638','46084','2','21','return Math.floor(Date.parse(value) / 1000);','0',''), ('97639','46084','3','20','1h','0',''), ('97640','43082','1','26','-1','1',''), ('97641','43083','1','26','-1','1',''), ('97642','43156','1','26','-1','1',''), ('97643','43157','1','26','-1','1',''), ('97644','43158','3','20','1h','0',''), ('97645','43159','1','26','-1','1',''), ('97646','43160','3','20','3h','0',''), ('97647','43168','1','26','-1','1',''), ('97648','43018','1','26','-1','1',''), ('97649','32576','4','20','30m','0',''), ('97650','32577','4','20','30m','0',''), ('97651','32578','2','23','','0',''), ('97652','33391','1','26','-1','1',''), ('97653','33392','3','20','30m','0',''), ('97654','33393','1','26','-1','1',''), ('97655','33394','1','26','-1','1',''), ('97656','33395','1','26','-1','1',''), ('97657','39827','1','26','-1','1',''), ('97658','39876','1','26','-1','1',''), ('97659','39891','1','26','-1','1',''), ('97660','39978','1','26','-1','1',''), ('97661','40010','1','26','-1','1',''), ('97662','45852','1','26','-1','2','{"header":{"HTTP/1.1 408 Request timeout":""}}'), ('97663','45856','1','26','-1','2','{"header":{"HTTP/1.1 408 Request timeout":""}}'), ('97664','45857','1','26','-1','2','{"header":{"HTTP/1.1 408 Request timeout":""}}'), ('97665','45858','1','26','-1','2','{"header":{"HTTP/1.1 408 Request timeout":""}}'), ('97666','45860','1','26','-1','2','{"header":{"HTTP/1.1 408 Request timeout":""}}'), ('97667','45862','1','26','-1','2','{"header":{"HTTP/1.1 408 Request timeout":""}}'), ('97668','43547','1','12','$[?(@.hrSWRunName == ''dhcpd'')].hrSWRunStatus.first()','2','0'), ('97669','43556','1','12','$[?(@.hrSWRunName == ''unbound'')].hrSWRunStatus.first()','2','0'), ('97670','43563','1','12','$[?(@.hrSWRunName == ''lighttpd'')].hrSWRunStatus.first()','2','0'), ('97671','40119','1','12','$[?(@.hrSWRunName == ''dhcpd'')].hrSWRunStatus.first()','2','0'), ('97672','40120','1','12','$[?(@.hrSWRunName == ''unbound'')].hrSWRunStatus.first()','2','0'), ('97673','40121','1','12','$[?(@.hrSWRunName == ''nginx'')].hrSWRunStatus.first()','2','0'), ('97674','42739','1','26','-1','2','Error getting data'), ('97675','42740','1','26','-1','2','Error getting data'), ('97676','33630','1','26','-1','2','{"status":520,"data":{},"time":0}'), ('97677','36773','2','21','return JSON.parse(value).config ? 1 : 0','0',''), ('97678','32780','1','26','-1','1',''), ('97679','32781','1','26','-1','2','{"healthcheck": 0}'), ('97680','32782','1','26','-1','1',''), ('97681','33491','2','27','','2','{"html":{"head":{"title":"Connection error"}}}'), ('97682','33492','2','27','','2','{"html":{"head":{"title":"Connection error"}}}'), ('97683','33493','2','27','','2','{"html":{"head":{"title":"Connection error"}}}'), ('97684','33522','2','27','','2','{"html":{"head":{"title":"Connection error"}}}'), ('97685','45521','1','26','-1','1',''), ('97686','45522','1','26','-1','1',''), ('97687','43497','1','26','-1','1',''), ('97688','43498','1','26','-1','1',''), ('97689','43499','1','26','-1','1',''), ('97690','43528','1','26','-1','1',''), ('97691','45529','1','26','-1','1',''), ('97692','45530','1','26','-1','1',''), ('97693','45531','1','26','-1','1',''), ('97694','45544','1','26','-1','1',''), ('97695','45559','1','26','-1','1',''), ('97696','45560','1','26','-1','1',''), ('97697','45561','1','26','-1','1',''), ('97698','45576','1','26','-1','1',''), ('97699','43592','1','26','-1','1',''), ('97700','43593','1','26','-1','1',''), ('97701','43594','1','26','-1','1',''), ('97702','43595','1','26','-1','1',''), ('97703','43684','1','26','-1','1',''), ('97704','43685','1','26','-1','1',''), ('97705','44868','1','26','-1','1',''), ('97706','44869','1','26','-1','1',''), ('97707','44870','1','26','-1','1',''), ('97708','44871','1','26','-1','1',''), ('97709','44872','3','20','10m','0',''), ('97710','44873','1','26','-1','1',''), ('97711','44875','3','20','10m','0',''), ('97712','44876','1','26','-1','1',''), ('97713','44877','1','26','-1','1',''), ('97714','44878','1','26','-1','1',''), ('97715','44879','3','20','10m','0',''), ('97716','44881','1','26','-1','1',''), ('97717','44882','1','26','-1','1',''), ('97718','44883','1','26','-1','1',''), ('97719','45044','1','26','-1','1',''), ('97720','45078','2','12','$.p_used','0',''), ('97721','42931','3','20','3h','0',''), ('97722','42932','3','20','3h','0',''), ('97723','42933','1','26','-1','1',''), ('97724','36795','2','23','','0',''), ('97725','36796','3','20','30m','0',''), ('97726','45644','1','26','-1','1',''), ('97727','45646','2','20','1h','0',''), ('97728','34336','2','23','','0',''), ('97729','34337','1','26','-1','2','{"status": "0"}'), ('97730','34367','1','26','-1','2','{"status": "0"}'), ('97731','34368','2','23','','0',''), ('97732','34412','2','23','','0',''), ('97733','43770','2','1','0.01','0',''), ('97734','43771','2','1','0.01','0',''), ('97735','43772','2','1','0.01','0',''), ('97736','43773','2','1','0.01','0',''), ('97737','43774','2','1','0.01','0',''), ('97738','43775','2','1','0.01','0',''), ('97739','43776','2','1','0.01','0',''), ('97740','43777','2','1','0.01','0',''), ('97741','43778','2','1','0.01','0',''), ('97742','43779','2','1','0.01','0',''), ('97743','43780','2','1','0.01','0',''), ('97744','43781','2','1','0.01','0',''), ('97745','43782','2','1','0.01','0',''), ('97746','43783','2','1','0.01','0',''), ('97747','43784','2','1','0.01','0',''), ('97748','43785','2','1','0.01','0',''), ('97749','43786','2','1','0.01','0',''), ('97750','43787','2','1','0.01','0',''), ('97751','44667','2','1','0.01','0',''), ('97752','43788','2','1','0.01','0',''), ('97753','43789','2','1','0.01','0',''), ('97754','43790','2','1','0.01','0',''), ('97755','43791','2','1','0.01','0',''), ('97756','43792','2','1','0.01','0',''), ('97757','43793','2','1','0.01','0',''), ('97758','43794','2','1','0.01','0',''), ('97759','43795','2','1','0.01','0',''), ('97760','43796','2','1','0.01','0',''), ('97761','43797','2','1','0.01','0',''), ('97762','43798','2','1','0.01','0',''), ('97763','43799','2','1','0.01','0',''), ('97764','43800','2','1','0.01','0',''), ('97765','43801','2','1','0.01','0',''), ('97766','43802','2','1','0.01','0',''), ('97767','43803','2','1','0.01','0',''), ('97768','43804','2','1','0.01','0',''), ('97769','43805','2','1','0.01','0',''), ('97770','43806','2','1','0.01','0',''), ('97771','43807','2','1','0.01','0',''), ('97772','43808','2','1','0.01','0',''), ('97773','43809','2','1','0.01','0',''), ('97774','43810','2','1','0.01','0',''), ('97775','43811','2','1','0.01','0',''), ('97776','43812','2','1','0.01','0',''), ('97777','43813','2','1','0.01','0',''), ('97778','43814','2','1','0.01','0',''), ('97779','43815','2','1','0.01','0',''), ('97780','43816','2','1','0.01','0',''), ('97781','43817','2','1','0.01','0',''), ('97782','43818','2','1','0.01','0',''), ('97783','43819','2','1','0.01','0',''), ('97784','43820','2','1','0.01','0',''), ('97785','43821','2','1','0.01','0',''), ('97786','43822','2','1','0.01','0',''), ('97787','43823','2','1','0.01','0',''), ('97788','43824','2','1','0.01','0',''), ('97789','43825','2','1','0.01','0',''), ('97790','43826','2','1','0.01','0',''), ('97791','43827','2','1','0.01','0',''), ('97792','43828','2','1','0.01','0',''), ('97793','43829','2','1','0.01','0',''), ('97794','43830','2','1','0.01','0',''), ('97795','43831','2','1','0.01','0',''), ('97796','43832','2','1','0.01','0',''), ('97797','43833','2','1','0.01','0',''), ('97798','43834','2','1','0.01','0',''), ('97799','43835','2','1','0.01','0',''), ('97800','43836','2','1','0.01','0',''), ('97801','43837','2','1','0.01','0',''), ('97802','43838','2','1','0.01','0',''), ('97803','43839','2','1','0.01','0',''), ('97804','43840','2','1','0.01','0',''), ('97805','43841','2','1','0.01','0',''), ('97806','43842','2','1','0.01','0',''), ('97807','43843','2','1','0.01','0',''), ('97808','43844','2','1','0.01','0',''), ('97809','43845','2','1','0.01','0',''), ('97810','43846','2','1','0.01','0',''), ('97811','43847','2','1','0.01','0',''), ('97812','43848','2','1','0.01','0',''), ('97813','43849','2','1','0.01','0',''), ('97814','43850','2','1','0.01','0',''), ('97815','43851','2','1','0.01','0',''), ('97816','43852','2','1','0.01','0',''), ('97817','43853','2','1','0.01','0',''), ('97818','43854','2','1','0.01','0',''), ('97819','43855','2','1','0.01','0',''), ('97820','43856','2','1','0.01','0',''), ('97821','43857','2','1','0.01','0',''), ('97822','43858','2','1','0.01','0',''), ('97823','43859','2','1','0.01','0',''), ('97824','43860','2','1','0.01','0',''), ('97825','43861','2','1','0.01','0',''), ('97826','43862','2','1','0.01','0',''), ('97827','43863','2','1','0.01','0',''), ('97828','43864','2','1','0.01','0',''), ('97829','43865','2','1','0.01','0',''), ('97830','43866','2','1','0.01','0',''), ('97831','43867','2','1','0.01','0',''), ('97832','43868','2','1','0.01','0',''), ('97833','43869','2','1','0.01','0',''), ('97834','43870','2','1','0.01','0',''), ('97835','43871','2','1','0.01','0',''), ('97836','43872','2','1','0.01','0',''), ('97837','43873','2','1','0.01','0',''), ('97838','43874','2','1','0.01','0',''), ('97839','43875','2','1','0.01','0',''), ('97840','43876','2','1','0.01','0',''), ('97841','43877','2','1','0.01','0',''), ('97842','43878','2','1','0.01','0',''), ('97843','43879','2','1','0.01','0',''), ('97844','43880','2','1','0.01','0',''), ('97845','43881','2','1','0.01','0',''), ('97846','43882','2','1','0.01','0',''), ('97847','43883','2','1','0.01','0',''), ('97848','43884','2','1','0.01','0',''), ('97849','43885','2','1','0.01','0',''), ('97850','43886','2','1','0.01','0',''), ('97851','43887','2','1','0.01','0',''), ('97852','43888','2','1','0.01','0',''), ('97853','43889','2','1','0.01','0',''), ('97854','43890','2','1','0.01','0',''), ('97860','43896','2','1','0.01','0',''), ('97861','43897','2','1','0.01','0',''), ('97862','43898','2','1','0.01','0',''), ('97863','43899','2','1','0.01','0',''), ('97864','43900','2','1','0.01','0',''), ('97865','44050','2','1','0.01','0',''), ('97866','44051','2','1','0.01','0',''), ('97867','46085','1','26','-1','2','failure999Unknown error'), ('97868','46085','2','27','','0',''), ('97869','46086','1','12','$.ocs.data.activeUsers.last1hour','1',''), ('97870','46086','2','20','1h','0',''), ('97871','46087','1','12','$.ocs.data.server.php.max_execution_time','1',''), ('97872','46087','2','20','1h','0',''), ('97873','46088','1','12','$.ocs.data.nextcloud.system.swap_total','1',''), ('97874','46088','2','1','1024','0',''), ('97875','46088','3','20','1h','0',''), ('97876','46089','1','21','function getField(data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; } var data = JSON.parse(value), swap_total = getField(data,''ocs.data.nextcloud.system.swap_total''), swap_free = getField(data,''ocs.data.nextcloud.system.swap_free''); return Math.ceil(100 - swap_free / swap_total * 100);','0',''), ('97877','46089','2','20','1h','0',''), ('97878','46090','1','12','$.ocs.data.nextcloud.system.swap_free','1',''), ('97879','46090','2','1','1024','0',''), ('97880','46090','3','20','1h','0',''), ('97881','46091','1','12','$.ocs.meta.message','0',''), ('97882','46091','2','20','1h','0',''), ('97883','46092','1','12','$.ocs.data.server.php.version','1',''), ('97884','46092','2','20','1h','0',''), ('97885','46093','1','12','$.ocs.data.server.php.upload_max_filesize','1',''), ('97886','46093','2','20','1h','0',''), ('97887','46094','1','12','$.ocs.data.server.php.opcache.memory_usage.current_wasted_percentage','1',''), ('97888','46094','2','20','1h','0',''), ('97889','46095','1','12','$.ocs.data.server.php.opcache.memory_usage.wasted_memory','1',''), ('97890','46095','2','20','1h','0',''), ('97891','46096','1','12','$.ocs.data.server.php.opcache.memory_usage.used_memory','1',''), ('97892','46096','2','20','1h','0',''), ('97893','46097','1','21','function getField(data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; } var data = JSON.parse(value), php_total = getField(data,''ocs.data.server.php.memory_limit''), php_free = getField(data,''ocs.data.server.php.opcache.memory_usage.used_memory''); return Math.ceil(php_free / php_total * 100);','0',''), ('97894','46097','2','20','1h','0',''), ('97895','46098','1','12','$.ocs.data.server.php.memory_limit','1',''), ('97896','46098','2','20','1h','0',''), ('97897','46099','1','12','$.ocs.data.server.php.opcache.memory_usage.free_memory','1',''), ('97898','46099','2','20','1h','0',''), ('97899','46100','1','21','function getField(data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; } var data = JSON.parse(value), mem_total = getField(data,''ocs.data.nextcloud.system.mem_total''), mem_free = getField(data,''ocs.data.nextcloud.system.mem_free''); return Math.ceil(100 - mem_free / mem_total * 100);','0',''), ('97900','46100','2','20','1h','0',''), ('97901','46101','1','12','$.ocs.data.nextcloud.system.mem_total','1',''), ('97902','46101','2','1','1024','0',''), ('97903','46101','3','20','1h','0',''), ('97904','46102','1','12','$.ocs.data.activeUsers.last5minutes','1',''), ('97905','46102','2','20','1h','0',''), ('97906','46103','1','12','$.ocs.data.nextcloud.system.mem_free','1',''), ('97907','46103','2','1','1024','0',''), ('97908','46103','3','20','1h','0',''), ('97909','46104','1','12','$.ocs.data.nextcloud.system.freespace','1',''), ('97910','46104','2','20','1h','0',''), ('97911','46105','1','12','$.ocs.data.server.database.version','1',''), ('97912','46105','2','20','1h','0',''), ('97913','46106','1','12','$.ocs.data.server.database.type','1',''), ('97914','46106','2','20','1h','0',''), ('97915','46107','1','12','$.ocs.data.server.database.size','1',''), ('97916','46107','2','20','1h','0',''), ('97917','46108','1','12','$.ocs.data.nextcloud.system.cpuload.element[2]','1',''), ('97918','46108','2','20','1h','0',''), ('97919','46109','1','12','$.ocs.data.nextcloud.system.cpuload.element[1]','1',''), ('97920','46109','2','20','1h','0',''), ('97921','46110','1','12','$.ocs.data.nextcloud.system.cpuload.element[0]','1',''), ('97922','46110','2','20','1h','0',''), ('97923','46111','1','12','$.ocs.data.server.webserver','1',''), ('97924','46111','2','20','1h','0',''), ('97925','46112','1','12','$.ocs.data.nextcloud.system.apps.num_updates_available','1',''), ('97926','46112','2','20','1h','0',''), ('97927','46113','1','12','$.ocs.data.nextcloud.system.apps.num_installed','1',''), ('97928','46113','2','20','1h','0',''), ('97929','46114','1','12','$.ocs.data.activeUsers.last24hours','1',''), ('97930','46114','2','20','1h','0',''), ('97931','46115','1','12','$.ocs.data.nextcloud.system.version','1',''), ('97932','46115','2','20','1h','0',''), ('97933','46116','1','12','$.ocs.data.users','2','[]'), ('97934','46116','2','21','return JSON.stringify(JSON.parse(value).map(function(user) {return {user_name: user}}));','0',''), ('97936','46117','1','26','-1','2','failure999Unknown error'), ('97937','46117','2','27','','0',''), ('97938','46118','1','12','$.ocs.data.displayname','1',''), ('97939','46118','2','20','1h','0',''), ('97940','46119','1','12','$.ocs.data.enabled','1',''), ('97941','46119','2','20','1h','0',''), ('97942','46120','1','21','function getField(data, path) { var steps = path.split(''.''); for (var i = 0; i < steps.length; i++) { var step = steps[i]; if (typeof data !== ''object'' || typeof data[step] === ''undefined'') { throw ''Required field was not found: '' + path; } data = data[step]; } return data; } var data = JSON.parse(value), lastlogin = getField(data,''ocs.data.lastLogin''); if (lastlogin === ''0'') return -1 return Math.floor((Date.now() - lastlogin) / 1000 / 86400);','0',''), ('97943','46120','2','20','1h','0',''), ('97944','46121','1','12','$.ocs.data.language','1',''), ('97945','46121','2','20','1h','0',''), ('97946','46122','1','12','$.ocs.data.lastLogin','1',''), ('97947','46122','2','1','0.001','0',''), ('97948','46122','3','20','1h','0',''), ('97949','46123','1','12','$.ocs.data.quota.free','1',''), ('97950','46123','2','20','1h','0',''), ('97951','46124','1','12','$.ocs.data.quota.relative','1',''), ('97952','46124','2','20','1h','0',''), ('97953','46125','1','12','$.ocs.data.quota.total','1',''), ('97954','46125','2','20','1h','0',''), ('97955','46126','1','12','$.ocs.data.quota.used','1',''), ('97956','46126','2','20','1h','0',''), ('97957','46127','1','12','$.ocs.data.quota.quota','1',''), ('97958','46127','2','25','none -99','0',''), ('97959','46127','3','20','1h','0',''), ('97960','46128','1','12','$.ocs.data.storageLocation','1',''), ('97961','46128','2','20','1h','0',''), ('97962','42828','1','26','-1','2','100'), ('97963','46130','1','20','1d','0',''), ('97964','46131','1','20','1d','0',''), ('97965','46132','1','20','10m','0',''), ('97966','46133','1','26','-1','2','{"error":"Not supported value received"}'), ('97967','46134','1','26','-1','2','{"error":"Not supported value received"}'), ('97968','46140','1','12','$.error','2',''), ('97969','46140','2','20','1h','0',''), ('97970','46141','1','12','$.serial','0',''), ('97971','46141','2','20','1d','0',''), ('97972','46142','1','12','$.results.utc_last_reboot','0',''), ('97973','46142','2','21','return (Math.floor(Date.now()/1000)-Math.floor(Number(value)/1000));','0',''), ('97974','46143','1','12','$.data.cpu','0',''), ('97975','46144','1','12','$.error','2',''), ('97976','46144','2','20','1h','0',''), ('97977','46145','1','12','$.results.current','0',''), ('97978','46145','2','21','var firmware = JSON.parse(value); return firmware.name + '' '' + firmware.version + '' build'' + String(firmware.build);','0',''), ('97979','46145','3','20','1d','0',''), ('97980','46146','1','12','$.error','1',''), ('97981','46146','2','20','1h','0',''), ('97982','46147','1','12','$.results.available.length()','1',''), ('97983','46147','2','20','12h','0',''), ('97984','46148','1','12','$.error','1',''), ('97985','46148','2','20','1h','0',''), ('97986','46149','1','12','$.results','0',''), ('97987','46149','2','21','var info = JSON.parse(value); return info.model_name + '' '' + info.model_number + '' ('' + info.model + '')'';','0',''), ('97988','46149','3','20','1d','0',''), ('97989','46150','1','12','$.error','1',''), ('97990','46150','2','20','1h','0',''), ('97991','46151','1','12','$.error','1',''), ('97992','46151','2','20','1h','0',''), ('97993','46152','1','12','$.vdom','0',''), ('97994','46152','2','20','12h','0',''), ('97995','46153','1','12','$.results.hostname','0',''), ('97996','46153','2','20','12h','0',''), ('97997','46154','1','12','$.data.mem','0',''), ('97998','46155','1','12','$.data.vm.mem_used','0',''), ('97999','46155','2','20','1d','0',''), ('98000','46156','1','12','$.data.vm.cpu_used','0',''), ('98001','46156','2','20','1d','0',''), ('98002','46157','1','12','$.error','1',''), ('98003','46157','2','20','1h','0',''), ('98004','46158','1','12','$.data.disk','0',''), ('98005','46159','1','12','$.data.disk_used','0',''), ('98006','46160','1','12','$.data.disk_total','0',''), ('98007','46160','2','20','1d','0',''), ('98008','46161','1','12','$.data.disk_free','0',''), ('98009','46162','1','12','$.build','2','0'), ('98010','46162','2','13',' 0','2','1'), ('98011','46163','1','12','$.data','0',''), ('98012','46163','2','20','1h','0',''), ('98013','46164','1','12','$.data','0',''), ('98014','46164','2','20','6h','0',''), ('98015','46165','1','12','$.data.health_lld','0',''), ('98016','46165','2','20','1h','0',''), ('98017','46166','1','12','$.data.member_lld','0',''), ('98018','46166','2','20','1h','0',''), ('98019','46167','1','12','$.lld','0',''), ('98020','46167','2','20','6h','0',''), ('98021','46168','1','12','$.data[?(@.uuid == "{#FWUUID}")].first()','1',''), ('98022','46169','1','12','$.data[?(@.id == "{#IFKEY}")].first()','1',''), ('98023','46170','1','12','$.data.health_data[?(@.q_origin_key == "{#HID}")]["{#IFNAME}"].first()','1',''), ('98024','46171','1','12','$.data.member_lld[?(@.interface == "{#NAME}")].first()','1',''), ('98025','46172','1','12','$.data["{#KEY}"]','1',''), ('98026','46173','1','12','$.action','0',''), ('98027','46173','2','21','const idx = [ ''accept'', ''deny'', ''ipsec'' ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('98028','46173','3','20','12h','0',''), ('98029','46174','1','12','$.bytes','0',''), ('98030','46174','2','10','','0',''), ('98031','46175','1','12','$.hit_count','2','0'), ('98032','46175','2','10','','0',''), ('98033','46176','1','12','$.asic_bytes','0',''), ('98034','46176','2','10','','0',''), ('98035','46177','1','12','$.last_used','1',''), ('98036','46178','1','12','$.active_sessions','0',''), ('98037','46179','1','12','$.status','0',''), ('98038','46179','2','21','const idx = [ ''enable'', ''disable'' ].indexOf(value); return idx !== -1 ? idx : value;','0',''), ('98039','46179','3','20','1h','0',''), ('98040','46180','1','12','$.software_bytes','0',''), ('98041','46180','2','10','','0',''), ('98042','46181','1','12','$.rx_bytes','2','0'), ('98043','46181','2','10','','0',''), ('98044','46181','3','1','8','0',''), ('98045','46182','1','12','$.rx_errors','2','0'), ('98046','46182','2','10','','0',''), ('98047','46183','1','12','$.rx_packets','2','0'), ('98048','46183','2','10','','0',''), ('98049','46184','1','12','$.tx_bytes','2','0'), ('98050','46184','2','10','','0',''), ('98051','46184','3','1','8','0',''), ('98052','46185','1','12','$.tx_errors','2','0'), ('98053','46185','2','10','','0',''), ('98054','46186','1','12','$.tx_packets','2','0'), ('98055','46186','2','10','','0',''), ('98056','46187','1','12','$.speed','2','0'), ('98057','46187','2','1','1000000','0',''), ('98058','46187','3','20','1h','0',''), ('98059','46188','1','12','$.link','0',''), ('98060','46188','2','6','','0',''), ('98061','46189','1','12','$.type','0',''), ('98062','46189','2','21','const idx = [ ''physical'', ''vlan'', ''aggregate'', ''redundant'', ''tunnel'', ''vdom-link'', ''loopback'', ''switch'', ''vap-switch'', ''wl-mesh'', ''fext-wan'', ''vxlan'', ''geneve'', ''hdlc'', ''switch-vlan'', ''emac-vlan'', ''ssl'', ''lan-extension'' ].indexOf(value); return idx !== -1 ? idx : 30;','0',''), ('98063','46189','3','20','1h','0',''), ('98064','46190','1','12','$.jitter','1',''), ('98065','46191','1','12','$.latency','1',''), ('98066','46192','1','12','$.packet_loss','1',''), ('98067','46193','1','12','$.packet_received','1',''), ('98068','46193','2','10','','0',''), ('98069','46194','1','12','$.packet_sent','1',''), ('98070','46194','2','10','','0',''), ('98071','46195','1','12','$.status','0',''), ('98072','46195','2','21','const idx = [ ''up'', ''down'', ''error'' ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('98073','46196','1','12','$.link','0',''), ('98074','46196','2','21','const idx = [ ''up'', ''down'', ''error'' ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('98075','46197','1','12','$.rx_bandwidth','2','0'), ('98076','46197','2','10','','0',''), ('98077','46198','1','12','$.rx_bytes','2','0'), ('98078','46198','2','10','','0',''), ('98079','46199','1','12','$.session','0',''), ('98080','46200','1','12','$.status','0',''), ('98081','46200','2','21','const idx = [ ''enable'', ''disable'' ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('98082','46200','3','20','1h','0',''), ('98083','46201','1','12','$.tx_bandwidth','2','0'), ('98084','46201','2','10','','0',''), ('98085','46202','1','12','$.tx_bytes','2','0'), ('98086','46202','2','10','','0',''), ('98087','46203','1','12','$.state_changed','1',''), ('98088','46203','2','20','1h','0',''), ('98089','46204','1','12','$.expires','1',''), ('98090','46204','2','20','1h','0',''), ('98091','46205','1','12','$.status','1',''), ('98092','46205','2','21','const idx = [ ''cloud_logged_in'', ''licensed'', ''registered'', ''vm_eval'', ''free_license'', ''vm_valid'', ''cloud_confirm_email'', ''cloud_error'', ''cloud_logged_out'', ''cloud_login_in_progress'', ''expired'', ''expires_soon'', ''free_license_exhausted'', ''licensed_exhausted'', ''no_license'', ''no_support'', ''not_registered'', ''pending'', ''unavailable'', ''update_manual'', ''update_push'', ''update_sched'', ''vm_eval_expired'', ''vm_expired'', ''vm_expires_soon'', ''vm_grace_period'', ''vm_invalid'', ''vm_pending'', ''vm_validation_overdue'', ].indexOf(value); return idx !== -1 ? idx : 30;','0',''), ('98093','46205','3','20','1h','0',''), ('98094','46206','1','12','$.type','1',''), ('98095','46206','2','20','1h','0',''), ('98096','46207','1','12','$.last_update_attempt','1',''), ('98097','46207','2','20','1h','0',''), ('98098','46208','1','12','$.last_update_method_status','1',''), ('98099','46208','2','20','1h','0',''), ('98100','46209','1','12','$.last_update_result_status','1',''), ('98101','46209','2','20','1h','0',''), ('98102','46210','1','12','$.last_update','1',''), ('98103','46210','2','20','1h','0',''), ('98104','46211','1','12','$.version','1',''), ('98105','46211','2','20','1h','0',''), ('98106','46213','1','20','12h','0',''), ('98107','46218','1','1','1048576','0',''), ('98108','46219','1','1','1048576','0',''), ('98109','46219','2','20','1d','0',''), ('98110','46222','1','1','0.01','0',''), ('98111','46223','1','20','12h','0',''), ('98112','46224','1','20','12h','0',''), ('98113','46226','1','20','1d','0',''), ('98114','46227','1','20','1d','0',''), ('98115','46228','1','20','1d','0',''), ('98116','46229','1','20','12h','0',''), ('98117','46231','1','20','1d','0',''), ('98118','46232','1','20','12h','0',''), ('98119','46237','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','1',''), ('98120','46237','2','20','1h','0',''), ('98121','46238','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('98122','46238','2','10','','0',''), ('98123','46239','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('98124','46239','2','10','','0',''), ('98125','46240','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('98126','46240','2','10','','0',''), ('98127','46240','3','1','8','0',''), ('98128','46241','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('98130','46242','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('98131','46242','2','10','','0',''), ('98132','46243','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('98133','46243','2','10','','0',''), ('98134','46243','3','1','8','0',''), ('98135','46244','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('98136','46244','2','1','1000000','0',''), ('98137','46244','3','20','1h','0',''), ('98138','46245','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('98139','46246','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('98140','46246','2','20','1d','0',''), ('98141','46247','1','12','$.samlSSO.enabled','1',''), ('98142','46247','2','6','','0',''), ('98159','46263','1','12','$.licenses','0',''), ('98160','46264','1','12','$.networks','0',''), ('98161','46266','1','12','$.vpnStatuses','0',''), ('98163','46268','1','12','$.licenses.[?(@.id == "{#LICENSE.ID}")].first()','0',''), ('98164','46269','1','12','$.networks[?(@.name== ''{#NETWORK.NAME}'' && @.id== ''{#NETWORK.ID}'')].timeZone.first()','0',''), ('98166','46271','1','12','$.uplinks[?(@.networkName== ''{#NETWORK.NAME}'' && @.interface== ''{#INTERFACE}'' && @.role== ''{#UPLINK.ROLE}'' )].interface.first()','0',''), ('98167','46272','1','12','$.uplinks[?(@.networkName== ''{#NETWORK.NAME}'' && @.interface== ''{#INTERFACE}'' && @.role== ''{#UPLINK.ROLE}'' )].publicIp.first()','0',''), ('98168','46273','1','12','$.vpnStatuses[?(@.networkId==''{#NETWORK.ID}'' && @.networkName==''{#NETWORK.NAME}'')].first()','0',''), ('98174','46278','1','12','$.activationDate','0',''), ('98175','46278','2','21','return truncatedTimestamp = Math.floor(Date.parse(value) / 1000) || -1;','0',''), ('98176','46279','1','12','$.deviceName','0',''), ('98177','46280','1','12','$.deviceSerial','0',''), ('98178','46281','1','12','$.expirationDate','0',''), ('98179','46281','2','21','return truncatedTimestamp = Math.floor(Date.parse(value) / 1000) || -1;','0',''), ('98180','46282','1','12','$.licenseKey','0',''), ('98181','46283','1','12','$.state','0',''), ('98182','46284','1','12','$.totalDurationInDays','0',''), ('98183','46284','2','21','return days = Math.floor(value) || -1;','0',''), ('98185','46286','1','12','$.deviceSerial','0',''), ('98186','46287','1','12','$.deviceStatus','0',''), ('98187','46288','1','12','$.vpnMode','0',''), ('98188','46289','1','12','$.merakiVpnPeers..networkId.first()','1',''), ('98189','46290','1','12','$.merakiVpnPeers..networkName.first()','1',''), ('98190','46291','1','12','$.merakiVpnPeers..reachability.first()','1',''), ('98191','46292','1','12','$.thirdPartyVpnPeers..networkId.first()','1',''), ('98192','46293','1','12','$.thirdPartyVpnPeers..networkName.first()','1',''), ('98193','46294','1','12','$.thirdPartyVpnPeers..reachability.first()','1',''), ('98194','42490','1','21','var filesystems = JSON.parse(value); result = filesystems.map(function (filesystem) { return { ''fsname'': filesystem.fsname, ''fstype'': filesystem.fstype, ''fslabel'': filesystem.fslabel, ''fsdrivetype'': filesystem.fsdrivetype }; }); return JSON.stringify(result);','0',''), ('98195','42490','2','20','1h','0',''), ('98196','42546','1','21','var filesystems = JSON.parse(value); result = filesystems.map(function (filesystem) { return { ''fsname'': filesystem.fsname, ''fstype'': filesystem.fstype, ''fslabel'': filesystem.fslabel, ''fsdrivetype'': filesystem.fsdrivetype }; }); return JSON.stringify(result);','0',''), ('98197','42546','2','20','1h','0',''), ('98198','46295','1','23','openshift_build_created','0',''), ('98199','46295','2','20','3h','0',''), ('98200','46296','1','23','openshift_buildconfig_created','0',''), ('98201','46296','2','20','3h','0',''), ('98202','46297','1','23','openshift_clusterresourcequota_usage','0',''), ('98203','46297','2','20','3h','0',''), ('98204','46298','1','23','openshift_route_info','0',''), ('98205','46298','2','20','3h','0',''), ('98206','46299','1','22','openshift_build_created{namespace="{#NAMESPACE}", build="{#NAME}"} value ','1',''), ('98207','46299','2','1','1','0',''), ('98208','46299','3','20','3h','0',''), ('98209','46300','1','22','openshift_build_metadata_generation{namespace="{#NAMESPACE}", build="{#NAME}"} value ','1',''), ('98210','46301','1','22','openshift_build_status_phase{build="{#NAME}"} == 1 label build_phase','1',''), ('98211','46301','2','21','return [''complete'', ''cancelled'', ''new'', ''pending'', ''running'', ''failed'', ''error''].indexOf(value) + 1 || ''Problem with status processing in JS, no such build status: '' + value;','0',''), ('98212','46302','1','22','openshift_buildconfig_created{namespace="{#NAMESPACE}", buildconfig="{#NAME}"} value ','1',''), ('98213','46302','2','1','1','0',''), ('98214','46302','3','20','3h','0',''), ('98215','46303','1','22','openshift_buildconfig_metadata_generation{namespace="{#NAMESPACE}", buildconfig="{#NAME}"} value ','1',''), ('98216','46304','1','22','openshift_buildconfig_status_latest_version{namespace="{#NAMESPACE}", buildconfig="{#NAME}"} value ','1',''), ('98217','46304','2','20','3h','0',''), ('98218','46305','1','22','openshift_clusterresourcequota_usage{name="{#NAME}", resource="{#RESOURCE}", type="{#TYPE}"} value ','1',''), ('98219','46306','1','22','openshift_route_created{namespace="{#NAMESPACE}", route="{#NAME}"} value ','1',''), ('98220','46306','2','1','1','0',''), ('98221','46306','3','20','3h','0',''), ('98222','46307','1','22','openshift_route_status{route="{#NAME}"} == 1 label status','1',''), ('98223','46307','2','6','','0',''), ('98224','46309','1','20','1h','0',''), ('98225','46310','1','20','1h','0',''), ('98226','46311','1','12','$.data.wcache.[''proxy buffer''].memory.pused','3','Proxy memory buffer is disabled.'), ('98227','46312','1','12','$.data.wcache.[''proxy buffer''].[''state change'']','2','0'), ('98228','46312','2','20','1h','0',''), ('98229','46313','1','12','$.data.wcache.[''proxy buffer''].state','2','0'), ('98230','46313','2','20','1h','0',''), ('98231','46314','1','10','','0',''), ('98232','46315','1','10','','0',''), ('98233','46316','1','12','$.data.vps.written_total','0',''), ('98234','46316','2','10','','0',''), ('98235','46317','1','12','$..[''{#TABLESPACE}''].used_from_max_pct.first()','0',''), ('98236','46318','1','12','$.USED_FROM_MAX_PCT','0',''), ('98237','46320','1','12','$.error','2',''), ('98238','46320','2','20','3h','0',''), ('98239','46321','1','21','var systems = JSON.parse(value).systems; result = systems.map(function (system) { return { ''hostname'': system.HostName, ''system_type'': system.SystemType, ''system_id'': system.Id }; }); return JSON.stringify(result);','0',''), ('98240','46321','2','20','6h','0',''), ('98241','46322','1','21','var controllers = JSON.parse(value).controllers; result = controllers.map(function (controller) { return { ''id'': controller.Id, ''location'': controller.Location.PartLocation.ServiceLabel, ''system_id'': controller.systemId, ''system_hostname'': controller.systemHostname, ''system_type'': controller.systemType, ''storage_id'': controller.storageId }; }); return JSON.stringify(result);','0',''), ('98242','46322','2','20','6h','0',''), ('98243','46323','1','21','var drives = JSON.parse(value).drives; result = drives.map(function (drive) { return { ''id'': drive.Id, ''location'': drive.PhysicalLocation.PartLocation.ServiceLabel, ''media_type'': drive.MediaType, ''system_id'': drive.systemId, ''system_hostname'': drive.systemHostname, ''system_type'': drive.systemType, ''storage_id'': drive.storageId }; }); return JSON.stringify(result);','0',''), ('98244','46323','2','20','6h','0',''), ('98245','46324','1','21','var fans = JSON.parse(value).fans; result = fans.map(function (fan) { return { ''id'': fan.MemberId, ''name'': fan.Name, ''chassis_id'': fan.chassisId, ''state'': fan.Status.State }; }); return JSON.stringify(result);','0',''), ('98246','46324','2','20','6h','0',''), ('98247','46325','1','21','var managers = JSON.parse(value).managers; result = managers.map(function (manager) { return { ''manager_id'': manager.Id }; }); return JSON.stringify(result);','0',''), ('98248','46325','2','20','6h','0',''), ('98249','46326','1','21','var power_supplies = JSON.parse(value).psu; result = power_supplies.map(function (psu) { return { ''id'': psu.MemberId, ''chassis_id'': psu.chassisId, ''state'': psu.Status.State }; }); return JSON.stringify(result);','0',''), ('98250','46326','2','20','6h','0',''), ('98251','46327','1','21','var sensors = JSON.parse(value).sensors; result = sensors.map(function (sensor) { return { ''id'': sensor.MemberId, ''name'': sensor.Name, ''chassis_id'': sensor.chassisId, ''state'': sensor.Status.State, ''context'': sensor.PhysicalContext }; }); return JSON.stringify(result);','0',''), ('98252','46327','2','20','6h','0',''), ('98253','46328','1','21','var storages = JSON.parse(value).storages; result = storages.map(function (storage) { return { ''id'': storage.Id, ''name'': storage.name, ''system_id'': storage.systemId, ''system_hostname'': storage.systemHostname, ''system_type'': storage.systemType }; }); return JSON.stringify(result);','0',''), ('98254','46328','2','20','6h','0',''), ('98255','46329','1','21','var volumes = JSON.parse(value).volumes; result = volumes.map(function (volume) { return { ''id'': volume.Id, ''name'': volume.DisplayName, ''system_id'': volume.systemId, ''system_hostname'': volume.systemHostname, ''system_type'': volume.systemType, ''storage_id'': volume.storageId }; }); return JSON.stringify(result);','0',''), ('98256','46329','2','20','6h','0',''), ('98257','46330','1','12','$.systems[?(@.Id == ''{#SYSTEM_ID}'')].first()','1',''), ('98258','46331','1','12','$.controllers[?(@.systemId == ''{#SYSTEM_ID}'' && @.storageId == ''{#STORAGE_ID}'' && @.Id == ''{#CONTROLLER_ID}'')].first()','1',''), ('98259','46332','1','12','$.drives[?(@.systemId == ''{#SYSTEM_ID}'' && @.storageId == ''{#STORAGE_ID}'' && @.Id == ''{#DRIVE_ID}'')].first()','1',''), ('98260','46333','1','12','$.fans[?(@.chassisId == ''{#CHASSIS_ID}'' && @.MemberId == ''{#FAN_ID}'')].first()','1',''), ('98261','46334','1','12','$.managers[?(@.Id == ''{#MANAGER_ID}'')].first()','1',''), ('98262','46335','1','12','$.psu[?(@.chassisId == ''{#CHASSIS_ID}'' && @.MemberId == ''{#PSU_ID}'')].first()','1',''), ('98263','46336','1','12','$.sensors[?(@.chassisId == ''{#CHASSIS_ID}'' && @.MemberId == ''{#SENSOR_ID}'')].first()','1',''), ('98264','46337','1','12','$.storages[?(@.systemId == ''{#SYSTEM_ID}'' && @.Id == ''{#STORAGE_ID}'')].first()','1',''), ('98265','46338','1','12','$.volumes[?(@.systemId == ''{#SYSTEM_ID}'' && @.storageId == ''{#STORAGE_ID}'' && @.Id == ''{#VOLUME_ID}'')].first()','1',''), ('98266','46339','1','12','$.Oem.Hpe.Bios.Current.VersionString','1',''), ('98267','46339','2','20','6h','0',''), ('98268','46340','1','12','$.Model','1',''), ('98269','46340','2','20','6h','0',''), ('98270','46341','1','12','$.SerialNumber','1',''), ('98271','46341','2','20','6h','0',''), ('98272','46342','1','12','$.Status.HealthRollup','0',''), ('98273','46342','2','21','const idx = [ ''OK'', ''Warning'', ''Critical'' ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('98274','46342','3','20','1h','0',''), ('98275','46343','1','12','$.SystemType','0',''), ('98276','46343','2','21','const idx = [ ''Physical'', ''Virtual'', ''OS'', ''PhysicallyPartitioned'', ''VirtuallyPartitioned'', ''DPU'' ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('98277','46343','3','20','6h','0',''), ('98278','46344','1','12','$.Oem.Hpe.SystemUsage.CPUUtil','1',''), ('98279','46345','1','12','$.Oem.Hpe.SystemUsage.IOBusUtil','1',''), ('98280','46346','1','12','$.Oem.Hpe.SystemUsage.MemoryBusUtil','1',''), ('98281','46347','1','12','$.Model','1',''), ('98282','46347','2','20','6h','0',''), ('98283','46348','1','12','$.SerialNumber','1',''), ('98284','46348','2','20','6h','0',''), ('98285','46349','1','12','$.Status.Health','0',''), ('98286','46349','2','21','const idx = [ ''OK'', ''Warning'', ''Critical'' ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('98287','46349','3','20','1h','0',''), ('98288','46350','1','12','$.CapacityBytes','1',''), ('98289','46350','2','20','6h','0',''), ('98290','46351','1','12','$.MediaType','0',''), ('98291','46351','2','21','const idx = [ ''HDD'', ''SSD'' ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('98292','46351','3','20','6h','0',''), ('98293','46352','1','12','$.Model','1',''), ('98294','46352','2','20','6h','0',''), ('98295','46353','1','12','$.PredictedMediaLifeLeftPercent','0',''), ('98296','46353','2','20','6h','0',''), ('98297','46354','1','12','$.SerialNumber','1',''), ('98298','46354','2','20','6h','0',''), ('98299','46355','1','12','$.StatusIndicator','0',''), ('98300','46355','2','21','const idx = [ ''OK'', ''Fail'', ''Rebuild'', ''PredictiveFailureAnalysis'', ''Hotspare'', ''InACriticalArray'', ''InAFailedArray'' ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('98301','46355','3','20','1h','0',''), ('98302','46356','1','12','$.Reading','0',''), ('98303','46357','1','12','$.Status.Health','0',''), ('98304','46357','2','21','const idx = [ ''OK'', ''Warning'', ''Critical'' ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('98305','46357','3','20','1h','0',''), ('98306','46358','1','12','$.FirmwareVersion','1',''), ('98307','46358','2','20','6h','0',''), ('98308','46359','1','12','$.Model','1',''), ('98309','46359','2','20','6h','0',''), ('98310','46360','1','12','$.Status.Health','0',''), ('98311','46360','2','21','const idx = [ ''OK'', ''Warning'', ''Critical'' ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('98312','46360','3','20','1h','0',''), ('98313','46361','1','12','$.ManagerType','1',''), ('98314','46361','2','21','const idx = [ ''ManagementController'', ''EnclosureManager'', ''BMC'' ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('98315','46361','3','20','6h','0',''), ('98316','46362','1','12','$.LastPowerOutputWatts','0',''), ('98317','46363','1','12','$.LineInputVoltage','0',''), ('98318','46364','1','12','$.Model','1',''), ('98319','46364','2','20','6h','0',''), ('98320','46365','1','12','$.SerialNumber','1',''), ('98321','46365','2','20','6h','0',''), ('98322','46366','1','12','$.Status.Health','0',''), ('98323','46366','2','21','const idx = [ ''OK'', ''Warning'', ''Critical'' ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('98324','46366','3','20','1h','0',''), ('98325','46367','1','12','$.Status.Health','0',''), ('98326','46367','2','21','const idx = [ ''OK'', ''Warning'', ''Critical'' ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('98327','46367','3','20','1h','0',''), ('98328','46368','1','12','$.ReadingCelsius','0',''), ('98329','46369','1','12','$.Status.HealthRollup','0',''), ('98330','46369','2','21','const idx = [ ''OK'', ''Warning'', ''Critical'' ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('98331','46369','3','20','1h','0',''), ('98332','46370','1','12','$.CapacityBytes','1',''), ('98333','46370','2','20','6h','0',''), ('98334','46371','1','12','$.RAIDType','1',''), ('98335','46371','2','21','const idx = [ ''RAID0'', ''RAID1'', ''RAID3'', ''RAID4'', ''RAID5'', ''RAID6'', ''RAID10'', ''RAID01'', ''RAID6TP'', ''RAID1E'', ''RAID50'', ''RAID60'', ''RAID00'', ''RAID10E'', ''RAID1Triple'', ''RAID10Triple'', ''None'' ].indexOf(value); return idx !== -1 ? idx : 20;','0',''), ('98336','46371','3','20','6h','0',''), ('98337','46372','1','12','$.Status.Health','0',''), ('98338','46372','2','21','const idx = [ ''OK'', ''Warning'', ''Critical'' ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('98339','46372','3','20','1h','0',''), ('98340','46373','1','12','$.filter_id','0',''), ('98341','46373','2','20','3h','0',''), ('98342','46374','1','26','-1','1',''), ('98343','46375','1','12','$.[?(@.Label == "4xxErrors")].Values.first().first()','1',''), ('98344','46376','1','12','$.[?(@.Label == "5xxErrors")].Values.first().first()','1',''), ('98345','46377','1','12','$.[?(@.Label == "AllRequests")].Values.first().first()','1',''), ('98346','46378','1','12','$.[?(@.Label == "BytesDownloaded")].Values.first().first()','1',''), ('98347','46379','1','12','$.[?(@.Label == "BytesPendingReplication")].Values.first().first()','1',''), ('98348','46380','1','12','$.[?(@.Label == "BytesUploaded")].Values.first().first()','1',''), ('98349','46381','1','12','$.[?(@.Label == "DeleteRequests")].Values.first().first()','1',''), ('98350','46382','1','12','$.[?(@.Label == "FirstByteLatency")].Values.first().first()','1',''), ('98351','46383','1','12','$.[?(@.Label == "FirstByteLatency")].Values.first().first()','1',''), ('98352','46384','1','12','$.[?(@.Label == "GetRequests")].Values.first().first()','1',''), ('98353','46385','1','12','$.[?(@.Label == "HeadRequests")].Values.first().first()','1',''), ('98354','46386','1','12','$.[?(@.Label == "ListRequests")].Values.first().first()','1',''), ('98355','46387','1','12','$.[?(@.Label == "OperationsPendingReplication")].Values.first().first()','1',''), ('98356','46388','1','12','$.[?(@.Label == "PostRequests")].Values.first().first()','1',''), ('98357','46389','1','12','$.[?(@.Label == "PutRequests")].Values.first().first()','1',''), ('98358','46390','1','12','$.[?(@.Label == "ReplicationLatency")].Values.first().first()','1',''), ('98359','46391','1','12','$.[?(@.Label == "SelectBytesReturned")].Values.first().first()','1',''), ('98360','46392','1','12','$.[?(@.Label == "SelectBytesScanned")].Values.first().first()','1',''), ('98361','46393','1','12','$.[?(@.Label == "SelectRequests")].Values.first().first()','1',''), ('98362','46394','1','12','$.[?(@.Label == "TotalRequestLatency")].Values.first().first()','1',''), ('98363','46395','1','12','$.[?(@.Label == "TotalRequestLatency")].Values.first().first()','1',''), ('98364','46398','1','12','$.data','1',''), ('98365','46399','1','12','$.monthCost.data','1',''), ('98366','46400','1','12','$.resourceLocationCost.data','1',''), ('98367','46401','1','12','$.resourceGroupCost.data','1',''), ('98368','46402','1','12','$.serviceCost.data','1',''), ('98369','46403','1','12','$.data.[?(@.ServiceName == "{#AZURE.SERVICE.NAME}" && @.Meter == "{#AZURE.BILLING.METER}" && @.MeterSubcategory == "{#AZURE.BILLING.METER.SUBCATEGORY}")].PreTaxCost.first()','1',''), ('98370','46404','1','12','$.monthCost.data.[?(@.BillingMonth == "{#AZURE.BILLING.MONTH}")].PreTaxCost.sum()','1',''), ('98371','46405','1','12','$.resourceLocationCost.data.[?(@.BillingMonth == "{#AZURE.BILLING.MONTH}")]','1',''), ('98372','46405','2','12','$.[?(@.ResourceLocation == "{#AZURE.RESOURCE.LOCATION}")].PreTaxCost.sum()','1',''), ('98373','46406','1','12','$.resourceGroupCost.data.[?(@.BillingMonth == "{#AZURE.BILLING.MONTH}")]','1',''), ('98374','46406','2','12','$.[?(@.ResourceGroup == "{#AZURE.RESOURCE.GROUP}")].PreTaxCost.sum()','1',''), ('98375','46407','1','12','$.serviceCost.data.[?(@.BillingMonth == "{#AZURE.BILLING.MONTH}")]','1',''), ('98376','46407','2','12','$.[?(@.ServiceName == "{#AZURE.SERVICE.NAME}")].PreTaxCost.sum()','1',''), ('98377','46416','1','20','1d','0',''), ('98378','46417','1','20','1d','0',''), ('98379','46418','1','20','1d','0',''), ('98380','46419','1','20','1d','0',''), ('98381','46420','1','20','1d','0',''), ('98382','46421','1','20','1d','0',''), ('98383','46422','1','20','1d','0',''), ('98384','46423','1','12','$[?(@.group_name==''{#GROUP_NAME}'')].primary_recovery_health.first()','0',''), ('98385','46423','2','20','1h','0',''), ('98386','46424','1','12','$[?(@.group_name==''{#GROUP_NAME}'')].primary_replica.first()','0',''), ('98387','46424','2','20','3h','0',''), ('98388','46425','1','12','$[?(@.group_name==''{#GROUP_NAME}'')].secondary_recovery_health.first()','0',''), ('98389','46425','2','20','1h','0',''), ('98390','46426','1','12','$[?(@.group_name==''{#GROUP_NAME}'')].synchronization_health.first()','0',''), ('98391','46426','2','20','1h','0',''), ('98392','46427','1','12','$[?(@.dbname==''{#DBNAME}'' && @.group_name==''{#GROUP_NAME}'')].is_suspended.first()','0',''), ('98393','46427','2','20','1h','0',''), ('98394','46428','1','12','$[?(@.dbname==''{#DBNAME}'' && @.group_name==''{#GROUP_NAME}'')].database_state.first()','0',''), ('98395','46428','2','20','1h','0',''), ('98396','46429','1','12','$[?(@.dbname==''{#DBNAME}'' && @.group_name==''{#GROUP_NAME}'')].synchronization_health.first()','0',''), ('98397','46429','2','20','1h','0',''), ('98398','46430','1','12','$[?(@.dbname==''{#DBNAME}'')].mirroring_role.first()','0',''), ('98399','46430','2','20','1h','0',''), ('98400','46431','1','12','$[?(@.dbname==''{#DBNAME}'')].mirroring_role_sequence.first()','0',''), ('98401','46431','2','9','','0',''), ('98402','46432','1','12','$[?(@.dbname==''{#DBNAME}'')].mirroring_safety_level.first()','0',''), ('98403','46432','2','20','1h','0',''), ('98404','46433','1','12','$[?(@.dbname==''{#DBNAME}'')].mirroring_state.first()','0',''), ('98405','46433','2','20','1h','0',''), ('98406','46434','1','12','$[?(@.dbname==''{#DBNAME}'')].mirroring_witness_state.first()','0',''), ('98407','46434','2','20','1h','0',''), ('98408','46435','1','12','$[?(@.dbname==''{#DBNAME}'' && @.group_name==''{#GROUP_NAME}'' && @.replica_name==''{#REPLICA_NAME}'')].log_send_queue_size.first()','0',''), ('98409','46435','2','1','1024','0',''), ('98410','46435','3','20','1h','0',''), ('98411','46436','1','12','$[?(@.dbname==''{#DBNAME}'' && @.group_name==''{#GROUP_NAME}'' && @.replica_name==''{#REPLICA_NAME}'')].redo_queue_size.first()','0',''), ('98412','46436','2','1','1024','0',''), ('98413','46436','3','20','1h','0',''), ('98414','46437','1','12','$[?(@.cluster_name==''{#CLUSTER_NAME}'')].quorum_state.first()','0',''), ('98415','46437','2','20','1h','0',''), ('98416','46438','1','12','$[?(@.cluster_name==''{#CLUSTER_NAME}'')].quorum_type.first()','0',''), ('98417','46438','2','20','1d','0',''), ('98418','46439','1','12','$[?(@.member_name==''{#MEMBER_NAME}'')].member_state.first()','0',''), ('98419','46440','1','12','$[?(@.member_name==''{#MEMBER_NAME}'')].member_type.first()','0',''), ('98420','46440','2','20','1d','0',''), ('98421','46441','1','12','$[?(@.member_name==''{#MEMBER_NAME}'')].number_of_quorum_votes.first()','0',''), ('98422','46441','2','20','1d','0',''), ('98423','46442','1','12','$[?(@.replica_name==''{#REPLICA_NAME}'' && @.group_name==''{#GROUP_NAME}'')].connected_state.first()','0',''), ('98424','46442','2','20','1h','0',''), ('98425','46443','1','12','$[?(@.replica_name==''{#REPLICA_NAME}'' && @.group_name==''{#GROUP_NAME}'')].is_local.first()','0',''), ('98426','46443','2','20','1h','0',''), ('98427','46444','1','12','$[?(@.replica_name==''{#REPLICA_NAME}'' && @.group_name==''{#GROUP_NAME}'')].join_state.first()','0',''), ('98428','46444','2','20','1h','0',''), ('98429','46445','1','12','$[?(@.replica_name==''{#REPLICA_NAME}'' && @.group_name==''{#GROUP_NAME}'')].operational_state.first()','0',''), ('98430','46445','2','20','1h','0',''), ('98431','46446','1','12','$[?(@.replica_name==''{#REPLICA_NAME}'' && @.group_name==''{#GROUP_NAME}'')].recovery_health.first()','0',''), ('98432','46446','2','20','1h','0',''), ('98433','46447','1','12','$[?(@.replica_name==''{#REPLICA_NAME}'' && @.group_name==''{#GROUP_NAME}'')].role.first()','0',''), ('98434','46447','2','20','1h','0',''), ('98435','46448','1','12','$[?(@.replica_name==''{#REPLICA_NAME}'' && @.group_name==''{#GROUP_NAME}'')].synchronization_health.first()','0',''), ('98436','46448','2','20','1h','0',''), ('98437','46449','1','12','$[0].db_recovery_model','2','1'), ('98438','46449','2','20','1d','0',''), ('98440','46451','1','26','-1','1',''), ('98441','46452','1','26','-1','1',''), ('98442','46453','1','26','-1','1',''), ('98443','46454','1','12','$.[?(@.Label == "ActiveConnectionCount")].Values.first().first()','1',''), ('98444','46455','1','12','$.error','2',''), ('98445','46455','2','20','3h','0',''), ('98446','46456','1','12','$.[?(@.Label == "ELBAuthError")].Values.first().first()','1',''), ('98447','46457','1','12','$.[?(@.Label == "ELBAuthFailure")].Values.first().first()','1',''), ('98448','46458','1','12','$.[?(@.Label == "ELBAuthLatency")].Values.first().first()','1',''), ('98449','46459','1','12','$.[?(@.Label == "ELBAuthSuccess")].Values.first().first()','1',''), ('98450','46460','1','12','$.[?(@.Label == "ELBAuthUserClaimsSizeExceeded")].Values.first().first()','1',''), ('98451','46461','1','12','$.[?(@.Label == "ConsumedLCUs")].Values.first().first()','1',''), ('98452','46462','1','12','$.[?(@.Label == "ClientTLSNegotiationErrorCount")].Values.first().first()','1',''), ('98453','46463','1','12','$.[?(@.Label == "HTTPCode_ELB_3XX_Count")].Values.first().first()','1',''), ('98454','46464','1','12','$.[?(@.Label == "HTTPCode_ELB_4XX_Count")].Values.first().first()','1',''), ('98455','46465','1','12','$.[?(@.Label == "HTTPCode_ELB_5XX_Count")].Values.first().first()','1',''), ('98456','46466','1','12','$.[?(@.Label == "HTTPCode_ELB_500_Count")].Values.first().first()','1',''), ('98457','46467','1','12','$.[?(@.Label == "HTTPCode_ELB_502_Count")].Values.first().first()','1',''), ('98458','46468','1','12','$.[?(@.Label == "HTTPCode_ELB_503_Count")].Values.first().first()','1',''), ('98459','46469','1','12','$.[?(@.Label == "HTTPCode_ELB_504_Count")].Values.first().first()','1',''), ('98460','46470','1','12','$.[?(@.Label == "HTTP_Fixed_Response_Count")].Values.first().first()','1',''), ('98461','46471','1','12','$.[?(@.Label == "HTTP_Redirect_Count")].Values.first().first()','1',''), ('98462','46472','1','12','$.[?(@.Label == "HTTP_Redirect_Url_Limit_Exceeded_Count")].Values.first().first()','1',''), ('98463','46473','1','12','$.error','2',''), ('98464','46473','2','20','3h','0',''), ('98465','46474','1','12','$.[?(@.Label == "NewConnectionCount")].Values.first().first()','1',''), ('98466','46475','1','12','$.[?(@.Label == "DesyncMitigationMode_NonCompliant_Request_Count")].Values.first().first()','1',''), ('98467','46476','1','12','$.[?(@.Label == "ProcessedBytes")].Values.first().first()','1',''), ('98468','46477','1','12','$.[?(@.Label == "RejectedConnectionCount")].Values.first().first()','1',''), ('98469','46478','1','12','$.[?(@.Label == "RequestCount")].Values.first().first()','1',''), ('98470','46479','1','12','$.[?(@.Label == "RuleEvaluations")].Values.first().first()','1',''), ('98471','46480','1','12','$.[?(@.Label == "TargetConnectionErrorCount")].Values.first().first()','1',''), ('98472','46481','1','12','$.[?(@.Label == "TargetResponseTime")].Values.first().first()','1',''), ('98473','46482','1','12','$.[?(@.Label == "TargetTLSNegotiationErrorCount")].Values.first().first()','1',''), ('98474','46483','1','21','var result = []; var alarms = JSON.parse(value); alarms.forEach(function(alarm) { result.push({ ''{#ALARM_DESCRIPTION}'': alarm.AlarmDescription !== null ? alarm.AlarmDescription : ''None'' , ''{#ALARM_NAME}'': alarm.AlarmName, ''{#ALARM_PERIOD}'': alarm.Period, ''{#METRIC_NAME}'': alarm.MetricName, ''{#ALARM_SERVICE_NAMESPACE}'': alarm.Namespace !== null ? alarm.Namespace : ''None'' }); }); return JSON.stringify(result);','0',''), ('98475','46483','2','20','3h','0',''), ('98476','46484','1','20','3h','0',''), ('98477','46485','1','26','-1','1',''), ('98478','46486','1','12','$.[?(@.AlarmName == "{#ALARM_NAME}")].first()','1',''), ('98479','46487','1','12','$.[?(@.Label == "AnomalousHostCount")].Values.first().first()','1',''), ('98480','46488','1','12','$.[?(@.Label == "HealthyHostCount")].Values.first().first()','1',''), ('98481','46489','1','12','$.[?(@.Label == "HealthyStateDNS")].Values.first().first()','1',''), ('98482','46490','1','12','$.[?(@.Label == "HealthyStateRouting")].Values.first().first()','1',''), ('98483','46491','1','12','$.[?(@.Label == "HTTPCode_Target_2XX_Count")].Values.first().first()','1',''), ('98484','46492','1','12','$.[?(@.Label == "HTTPCode_Target_3XX_Count")].Values.first().first()','1',''), ('98485','46493','1','12','$.[?(@.Label == "HTTPCode_Target_4XX_Count")].Values.first().first()','1',''), ('98486','46494','1','12','$.[?(@.Label == "HTTPCode_Target_5XX_Count")].Values.first().first()','1',''), ('98487','46495','1','12','$.[?(@.Label == "MitigatedHostCount")].Values.first().first()','1',''), ('98488','46496','1','12','$.[?(@.Label == "RequestCountPerTarget")].Values.first().first()','1',''), ('98489','46497','1','12','$.[?(@.Label == "UnHealthyHostCount")].Values.first().first()','1',''), ('98490','46498','1','12','$.[?(@.Label == "UnhealthyRoutingRequestCount")].Values.first().first()','1',''), ('98491','46499','1','12','$.[?(@.Label == "UnhealthyStateDNS")].Values.first().first()','1',''), ('98492','46500','1','12','$.[?(@.Label == "UnhealthyStateRouting")].Values.first().first()','1',''), ('98493','46501','1','12','$.StateValue','2','3'), ('98494','46501','2','21','var state = [''OK'', ''INSUFFICIENT_DATA'', ''ALARM'']; return state.indexOf(value.trim()) === -1 ? 255 : state.indexOf(value.trim());','0',''), ('98495','46502','1','12','$.StateReason','1',''), ('98496','46502','2','20','3h','0',''), ('98497','46520','1','20','1d','0',''), ('98498','46521','1','20','10m','0',''), ('98499','46522','1','12','$[?(@.object_name=~''.*Access Methods'')]','1',''), ('98500','46523','1','12','$[?(@.object_name=~''.*Buffer Manager'')]','1',''), ('98501','46524','1','12','$[?(@.object_name=~''.*Plan Cache'' && @.instance_name==''_Total'')]','1',''), ('98502','46525','1','12','$[?(@.object_name=~''.*Databases'' && @.instance_name==''_Total'')]','1',''), ('98503','46526','1','12','$[?(@.object_name=~''.*General Statistics'')]','1',''), ('98504','46527','1','12','$[?(@.object_name=~''.*Latches'')]','1',''), ('98505','46528','1','12','$[?(@.object_name=~''.*Locks'' && @.instance_name==''_Total'')]','1',''), ('98506','46529','1','12','$[?(@.object_name=~''.*Memory Manager'')]','1',''), ('98507','46530','1','12','$[?(@.object_name=~''.*SQL Errors'')]','1',''), ('98508','46531','1','12','$[?(@.object_name=~''.*SQL Statistics'')]','1',''), ('98509','46532','1','12','$[?(@.object_name=~''.*Transactions'' && @.counter_name==''Transactions'')].cntr_value.first()','0',''), ('98510','46533','1','12','$[?(@.counter_name==''Uptime'')].cntr_value.first()','0',''), ('98511','46534','1','12','$[?(@.counter_name==''Auto-Param Attempts/sec'')].cntr_value.first()','0',''), ('98512','46534','2','10','','0',''), ('98513','46535','1','12','$[?(@.counter_name==''Average Latch Wait Time Base'')].cntr_value.first()','0',''), ('98514','46536','1','12','$[?(@.counter_name==''Average Latch Wait Time (ms)'')].cntr_value.first()','0',''), ('98515','46537','1','12','$[?(@.counter_name==''Average Wait Time Base'')].cntr_value.first()','0',''), ('98516','46538','1','12','$[?(@.counter_name==''Average Wait Time (ms)'')].cntr_value.first()','0',''), ('98517','46539','1','12','$[?(@.counter_name==''Batch Requests/sec'')].cntr_value.first()','0',''), ('98518','46539','2','10','','0',''), ('98519','46540','1','12','$[?(@.counter_name==''BufferCacheHitRatio'')].cntr_value.first()','0',''), ('98520','46541','1','12','$[?(@.counter_name==''CacheHitRatio'')].cntr_value.first()','0',''), ('98521','46542','1','12','$[?(@.counter_name==''Cache Objects in use'')].cntr_value.first()','0',''), ('98522','46543','1','12','$[?(@.counter_name==''Cache Object Counts'')].cntr_value.first()','0',''), ('98523','46544','1','12','$[?(@.counter_name==''Cache Pages'')].cntr_value.first()','0',''), ('98524','46545','1','12','$[?(@.counter_name==''Checkpoint pages/sec'')].cntr_value.first()','0',''), ('98525','46545','2','10','','0',''), ('98526','46546','1','12','$[?(@.counter_name==''Database pages'')].cntr_value.first()','0',''), ('98527','46547','1','12','$[?(@.counter_name==''Data File(s) Size (KB)'')].cntr_value.first()','0',''), ('98528','46547','2','1','1024','0',''), ('98529','46547','3','20','1h','0',''), ('98530','46548','1','12','$[?(@.counter_name==''Errors/sec'' && @.instance_name==''_Total'')].cntr_value.first()','0',''), ('98531','46548','2','10','','0',''), ('98532','46549','1','12','$[?(@.counter_name==''Failed Auto-Params/sec'')].cntr_value.first()','0',''), ('98533','46549','2','10','','0',''), ('98534','46550','1','12','$[?(@.counter_name==''Forwarded Records/sec'')].cntr_value.first()','0',''), ('98535','46550','2','10','','0',''), ('98536','46551','1','12','$[?(@.counter_name==''Free list stalls/sec'')].cntr_value.first()','0',''), ('98537','46551','2','10','','0',''), ('98538','46552','1','12','$[?(@.counter_name==''Full Scans/sec'')].cntr_value.first()','0',''), ('98539','46552','2','10','','0',''), ('98540','46553','1','12','$[?(@.counter_name==''Granted Workspace Memory (KB)'')].cntr_value.first()','0',''), ('98541','46553','2','1','1024','0',''), ('98542','46554','1','12','$[?(@.counter_name==''Index Searches/sec'')].cntr_value.first()','0',''), ('98543','46554','2','10','','0',''), ('98544','46555','1','12','$[?(@.counter_name==''Errors/sec'' && @.instance_name==''Info Errors'')].cntr_value.first()','0',''), ('98545','46555','2','10','','0',''), ('98546','46556','1','12','$[?(@.counter_name==''Errors/sec'' && @.instance_name==''Kill Connection Errors'')].cntr_value.first()','0',''), ('98547','46556','2','10','','0',''), ('98548','46557','1','12','$[?(@.counter_name==''Latch Waits/sec'')].cntr_value.first()','0',''), ('98549','46557','2','10','','0',''), ('98550','46558','1','12','$[?(@.counter_name==''Lazy writes/sec'')].cntr_value.first()','0',''), ('98551','46558','2','10','','0',''), ('98552','46559','1','12','$[?(@.counter_name==''Lock Requests/sec'')].cntr_value.first()','0',''), ('98553','46559','2','10','','0',''), ('98554','46560','1','12','$[?(@.counter_name==''Lock Timeouts/sec'')].cntr_value.first()','0',''), ('98555','46560','2','10','','0',''), ('98556','46561','1','12','$[?(@.counter_name==''Lock Waits/sec'')].cntr_value.first()','0',''), ('98557','46561','2','10','','0',''), ('98558','46562','1','12','$[?(@.counter_name==''Lock Wait Time (ms)'')].cntr_value.first()','0',''), ('98559','46562','2','10','','0',''), ('98560','46563','1','12','$[?(@.counter_name==''Logins/sec'')].cntr_value.first()','0',''), ('98561','46563','2','10','','0',''), ('98562','46564','1','12','$[?(@.counter_name==''Logouts/sec'')].cntr_value.first()','0',''), ('98563','46564','2','10','','0',''), ('98564','46565','1','12','$[?(@.counter_name==''Log File(s) Size (KB)'')].cntr_value.first()','0',''), ('98565','46565','2','1','1024','0',''), ('98566','46565','3','20','1h','0',''), ('98567','46566','1','12','$[?(@.counter_name==''Log File(s) Used Size (KB)'')].cntr_value.first()','0',''), ('98568','46566','2','1','1024','0',''), ('98569','46567','1','12','$[?(@.counter_name==''Maximum Workspace Memory (KB)'')].cntr_value.first()','0',''), ('98570','46567','2','1','1024','0',''), ('98571','46568','1','12','$[?(@.counter_name==''Memory Grants Outstanding'')].cntr_value.first()','0',''), ('98572','46569','1','12','$[?(@.counter_name==''Memory Grants Pending'')].cntr_value.first()','0',''), ('98573','46570','1','12','$[?(@.counter_name==''Number of Deadlocks/sec'')].cntr_value.first()','0',''), ('98574','46570','2','10','','0',''), ('98575','46571','1','12','$[?(@.counter_name==''Errors/sec'' && @.instance_name==''DB Offline Errors'')].cntr_value.first()','0',''), ('98576','46571','2','10','','0',''), ('98577','46572','1','12','$[?(@.counter_name==''Page life expectancy'')].cntr_value.first()','0',''), ('98578','46573','1','12','$[?(@.counter_name==''Page lookups/sec'')].cntr_value.first()','0',''), ('98579','46573','2','10','','0',''), ('98580','46574','1','12','$[?(@.counter_name==''Page reads/sec'')].cntr_value.first()','0',''), ('98581','46574','2','10','','0',''), ('98582','46575','1','12','$[?(@.counter_name==''Page Splits/sec'')].cntr_value.first()','0',''), ('98583','46575','2','10','','0',''), ('98584','46576','1','12','$[?(@.counter_name==''Page writes/sec'')].cntr_value.first()','0',''), ('98585','46576','2','10','','0',''), ('98586','46577','1','12','$[?(@.counter_name==''Processes blocked'')].cntr_value.first()','0',''), ('98587','46577','2','20','1h','0',''), ('98588','46578','1','12','$[?(@.counter_name==''Readahead pages/sec'')].cntr_value.first()','0',''), ('98589','46578','2','10','','0',''), ('98590','46579','1','12','$[?(@.counter_name==''Safe Auto-Params/sec'')].cntr_value.first()','0',''), ('98591','46579','2','10','','0',''), ('98592','46580','1','12','$[?(@.counter_name==''SQL Compilations/sec'')].cntr_value.first()','0',''), ('98593','46580','2','10','','0',''), ('98594','46581','1','12','$[?(@.counter_name==''SQL Re-Compilations/sec'')].cntr_value.first()','0',''), ('98595','46581','2','10','','0',''), ('98596','46582','1','12','$[?(@.counter_name==''Table Lock Escalations/sec'')].cntr_value.first()','0',''), ('98597','46582','2','10','','0',''), ('98598','46583','1','12','$[?(@.counter_name==''Target pages'')].cntr_value.first()','0',''), ('98599','46583','2','20','1h','0',''), ('98600','46584','1','12','$[?(@.counter_name==''Target Server Memory (KB)'')].cntr_value.first()','0',''), ('98601','46584','2','1','1024','0',''), ('98602','46585','1','12','$[?(@.counter_name==''Total Latch Wait Time (ms)'')].cntr_value.first()','0',''), ('98603','46585','2','10','','0',''), ('98604','46586','1','12','$[?(@.counter_name==''Total Server Memory (KB)'')].cntr_value.first()','0',''), ('98605','46586','2','1','1024','0',''), ('98606','46587','1','12','$[?(@.counter_name==''Transactions/sec'')].cntr_value.first()','0',''), ('98607','46587','2','10','','0',''), ('98608','46588','1','12','$[?(@.counter_name==''Unsafe Auto-Params/sec'')].cntr_value.first()','0',''), ('98609','46588','2','10','','0',''), ('98610','46589','1','12','$[?(@.counter_name==''User Connections'')].cntr_value.first()','0',''), ('98611','46590','1','12','$[?(@.counter_name==''Errors/sec'' && @.instance_name==''User Errors'')].cntr_value.first()','0',''), ('98612','46590','2','10','','0',''), ('98613','46591','1','12','$[?(@.counter_name==''Workfiles Created/sec'')].cntr_value.first()','0',''), ('98614','46591','2','10','','0',''), ('98615','46592','1','12','$[?(@.counter_name==''Worktables Created/sec'')].cntr_value.first()','0',''), ('98616','46592','2','10','','0',''), ('98617','46593','1','12','$[?(@.counter_name==''WorktablesFromCacheRatio'')].cntr_value.first()','0',''), ('98618','46594','1','20','1d','0',''), ('98619','46595','1','20','1d','0',''), ('98620','46596','1','20','1d','0',''), ('98621','46597','1','20','1d','0',''), ('98622','46598','1','20','1d','0',''), ('98623','46599','1','20','1d','0',''), ('98624','46600','1','20','1d','0',''), ('98625','46601','1','20','1d','0',''), ('98626','46602','1','20','1d','0',''), ('98627','46603','1','12','$[?(@.group_name==''{#GROUP_NAME}'')].primary_recovery_health.first()','0',''), ('98628','46603','2','20','1h','0',''), ('98629','46604','1','12','$[?(@.group_name==''{#GROUP_NAME}'')].primary_replica.first()','0',''), ('98630','46604','2','20','3h','0',''), ('98631','46605','1','12','$[?(@.group_name==''{#GROUP_NAME}'')].secondary_recovery_health.first()','0',''), ('98632','46605','2','20','1h','0',''), ('98633','46606','1','12','$[?(@.group_name==''{#GROUP_NAME}'')].synchronization_health.first()','0',''), ('98634','46606','2','20','1h','0',''), ('98635','46607','1','12','$[?(@.dbname==''{#DBNAME}'')]','1',''), ('98636','46608','1','12','$[?(@.object_name=~''.*Databases'' && @.instance_name==''{#DBNAME}'')]','1',''), ('98637','46609','1','12','$[?(@.job_name==''{#JOBNAME}'')].first()','1',''), ('98638','46610','1','12','$[?(@.dbname==''{#DBNAME}'' && @.group_name==''{#GROUP_NAME}'')].is_suspended.first()','0',''), ('98639','46610','2','20','1h','0',''), ('98640','46611','1','12','$[?(@.dbname==''{#DBNAME}'' && @.group_name==''{#GROUP_NAME}'')].database_state.first()','0',''), ('98641','46611','2','20','1h','0',''), ('98642','46612','1','12','$[?(@.dbname==''{#DBNAME}'' && @.group_name==''{#GROUP_NAME}'')].synchronization_health.first()','0',''), ('98643','46612','2','20','1h','0',''), ('98644','46613','1','12','$[?(@.dbname==''{#DBNAME}'')].mirroring_role.first()','0',''), ('98645','46613','2','20','1h','0',''), ('98646','46614','1','12','$[?(@.dbname==''{#DBNAME}'')].mirroring_role_sequence.first()','0',''), ('98647','46614','2','9','','0',''), ('98648','46614','3','20','1h','0',''), ('98649','46615','1','12','$[?(@.dbname==''{#DBNAME}'')].mirroring_safety_level.first()','0',''), ('98650','46615','2','20','1h','0',''), ('98651','46616','1','12','$[?(@.dbname==''{#DBNAME}'')].mirroring_state.first()','0',''), ('98652','46616','2','20','1h','0',''), ('98653','46617','1','12','$[?(@.dbname==''{#DBNAME}'')].mirroring_witness_state.first()','0',''), ('98654','46617','2','20','1h','0',''), ('98655','46618','1','12','$[?(@.dbname==''{#DBNAME}'' && @.group_name==''{#GROUP_NAME}'' && @.replica_name==''{#REPLICA_NAME}'')].log_send_queue_size.first()','0',''), ('98656','46618','2','1','1024','0',''), ('98657','46618','3','20','1h','0',''), ('98658','46619','1','12','$[?(@.dbname==''{#DBNAME}'' && @.group_name==''{#GROUP_NAME}'' && @.replica_name==''{#REPLICA_NAME}'')].redo_queue_size.first()','0',''), ('98659','46619','2','1','1024','0',''), ('98660','46619','3','20','1h','0',''), ('98661','46620','1','12','$[?(@.cluster_name==''{#CLUSTER_NAME}'')].quorum_state.first()','0',''), ('98662','46620','2','20','1h','0',''), ('98663','46621','1','12','$[?(@.cluster_name==''{#CLUSTER_NAME}'')].quorum_type.first()','0',''), ('98664','46621','2','20','1d','0',''), ('98665','46622','1','12','$[?(@.member_name==''{#MEMBER_NAME}'')].member_state.first()','0',''), ('98666','46622','2','20','1h','0',''), ('98667','46623','1','12','$[?(@.member_name==''{#MEMBER_NAME}'')].member_type.first()','0',''), ('98668','46623','2','20','1d','0',''), ('98669','46624','1','12','$[?(@.member_name==''{#MEMBER_NAME}'')].number_of_quorum_votes.first()','0',''), ('98670','46624','2','20','1d','0',''), ('98671','46625','1','12','$[?(@.replica_name==''{#REPLICA_NAME}'' && @.group_name==''{#GROUP_NAME}'')].connected_state.first()','0',''), ('98672','46625','2','20','1h','0',''), ('98673','46626','1','12','$[?(@.replica_name==''{#REPLICA_NAME}'' && @.group_name==''{#GROUP_NAME}'')].is_local.first()','0',''), ('98674','46626','2','20','1h','0',''), ('98675','46627','1','12','$[?(@.replica_name==''{#REPLICA_NAME}'' && @.group_name==''{#GROUP_NAME}'')].join_state.first()','0',''), ('98676','46627','2','20','1h','0',''), ('98677','46628','1','12','$[?(@.replica_name==''{#REPLICA_NAME}'' && @.group_name==''{#GROUP_NAME}'')].operational_state.first()','0',''), ('98678','46628','2','20','1h','0',''), ('98679','46629','1','12','$[?(@.replica_name==''{#REPLICA_NAME}'' && @.group_name==''{#GROUP_NAME}'')].recovery_health.first()','0',''), ('98680','46629','2','20','1h','0',''), ('98681','46630','1','12','$[?(@.replica_name==''{#REPLICA_NAME}'' && @.group_name==''{#GROUP_NAME}'')].role.first()','0',''), ('98682','46630','2','20','1h','0',''), ('98683','46631','1','12','$[?(@.replica_name==''{#REPLICA_NAME}'' && @.group_name==''{#GROUP_NAME}'')].synchronization_health.first()','0',''), ('98684','46631','2','20','1h','0',''), ('98685','46632','1','12','$[?(@.type==''I'')].duration.first()','2','0'), ('98686','46632','2','20','12h','0',''), ('98687','46633','1','12','$[?(@.type==''I'')].time_since_last_backup.first()','2','0'), ('98688','46634','1','12','$[?(@.type==''D'')].duration.first()','2','0'), ('98689','46634','2','20','12h','0',''), ('98690','46635','1','12','$[?(@.type==''D'')].time_since_last_backup.first()','2','0'), ('98691','46636','1','12','$[?(@.type==''L'')].duration.first()','2','0'), ('98692','46636','2','20','12h','0',''), ('98693','46637','1','12','$[?(@.type==''L'')].time_since_last_backup.first()','2','0'), ('98694','46638','1','12','$[0].db_recovery_model','2','1'), ('98695','46638','2','20','1d','0',''), ('98696','46639','1','12','$[?(@.counter_name==''Active Transactions'')].cntr_value.first()','0',''), ('98697','46640','1','12','$[?(@.counter_name==''Data File(s) Size (KB)'')].cntr_value.first()','0',''), ('98698','46640','2','1','1024','0',''), ('98699','46641','1','12','$[?(@.counter_name==''Log Bytes Flushed/sec'')].cntr_value.first()','0',''), ('98700','46641','2','10','','0',''), ('98701','46642','1','12','$[?(@.counter_name==''Log File(s) Size (KB)'')].cntr_value.first()','0',''), ('98702','46642','2','1','1024','0',''), ('98703','46643','1','12','$[?(@.counter_name==''Log File(s) Used Size (KB)'')].cntr_value.first()','0',''), ('98704','46643','2','1','1024','0',''), ('98705','46644','1','12','$[?(@.counter_name==''Log Flushes/sec'')].cntr_value.first()','0',''), ('98706','46644','2','10','','0',''), ('98707','46645','1','12','$[?(@.counter_name==''Log Flush Waits/sec'')].cntr_value.first()','0',''), ('98708','46645','2','10','','0',''), ('98709','46646','1','12','$[?(@.counter_name==''Log Flush Wait Time'')].cntr_value.first()','0',''), ('98710','46646','2','10','','0',''), ('98711','46647','1','12','$[?(@.counter_name==''Log Growths'')].cntr_value.first()','0',''), ('98712','46648','1','12','$[?(@.counter_name==''Log Shrinks'')].cntr_value.first()','0',''), ('98713','46649','1','12','$[?(@.counter_name==''Log Truncations'')].cntr_value.first()','0',''), ('98714','46650','1','12','$[?(@.counter_name==''Percent Log Used'')].cntr_value.first()','0',''), ('98715','46651','1','12','$[?(@.counter_name==''State'')].cntr_value.first()','0',''), ('98716','46651','2','20','15m','0',''), ('98717','46652','1','12','$[?(@.counter_name==''Transactions/sec'')].cntr_value.first()','0',''), ('98718','46652','2','10','','0',''), ('98719','46653','1','12','$.enabled','0',''), ('98720','46653','2','20','12h','0',''), ('98721','46654','1','12','$.last_run_date_time','0',''), ('98722','46654','2','21','return value == ''null'' ? 0 : Math.floor(new Date(value) / 1000);','0',''), ('98723','46654','3','20','12h','0',''), ('98724','46655','1','12','$.last_run_status_message','0',''), ('98725','46655','2','20','12h','0',''), ('98726','46656','1','12','$.next_run_date_time','0',''), ('98727','46656','2','21','return value == ''null'' ? 0 : Math.floor(new Date(value) / 1000);','0',''), ('98728','46656','3','20','12h','0',''), ('98729','46657','1','12','$.run_status','0',''), ('98730','46657','2','20','15m','0',''), ('98731','46658','1','12','$.run_duration','0',''), ('98732','46658','2','20','15m','0',''), ('98733','31069','2','20','1h','0',''), ('98734','31074','2','20','1h','0',''), ('98735','31102','3','20','1h','0',''), ('98736','31119','3','20','1h','0',''), ('98737','46431','3','20','1h','0',''), ('98738','46439','2','20','1h','0',''), ('98739','34325','2','20','12h','0',''), ('98740','34328','2','20','12h','0',''), ('98741','34330','2','20','12h','0',''), ('98742','34331','3','20','12h','0',''), ('98743','34333','3','20','12h','0',''), ('98744','46668','1','12','$.error','1',''), ('98745','46668','2','20','12h','0',''), ('98746','46669','1','12','$.metrics.AVERAGE_YSQL_CONNECTION_COUNT','0',''), ('98747','46670','1','12','$.metrics.YSQL_CONNECTION_LIMIT','0',''), ('98748','46670','2','20','12h','0',''), ('98749','46671','1','12','$.metrics.YSQL_MAX_CONNECTION_COUNT','0',''), ('98750','46672','1','12','$.metrics.CPU_USAGE','0',''), ('98751','46673','1','12','$.metrics.PROVISIONED_DISK_SPACE_GB','0',''), ('98752','46673','2','1','1073741824','0',''), ('98753','46673','3','20','1h','0',''), ('98754','46674','1','12','$.metrics.DISK_BYTES_READ_MB_PER_SEC','0',''), ('98755','46674','2','1','1048576','0',''), ('98756','46675','1','12','$.metrics.READ_OPS_PER_SEC','0',''), ('98757','46676','1','12','$.metrics.DISK_USAGE_GB','0',''), ('98758','46676','2','1','1073741824','0',''), ('98759','46677','1','12','$.metrics.DISK_BYTES_WRITTEN_MB_PER_SEC','0',''), ('98760','46677','2','1','1048576','0',''), ('98761','46678','1','12','$.metrics.WRITE_OPS_PER_SEC','0',''), ('98762','46679','1','12','$.error','1',''), ('98763','46679','2','20','12h','0',''), ('98764','46680','1','21','var cluster = JSON.parse(value); const idx = [ ''HEALTHY'', ''NEEDS_ATTENTION'', ''UNHEALTHY'', ''UNKNOWN'', ].indexOf(cluster.data.info.health_info.state); return idx !== -1 ? idx : 3;','0',''), ('98765','46680','2','20','12h','0',''), ('98766','46681','1','12','$.metrics.MEMORY_TOTAL_GB','0',''), ('98767','46681','2','1','1073741824','0',''), ('98768','46681','3','20','12h','0',''), ('98769','46682','1','12','$.metrics.MEMORY_USAGE_GB','0',''), ('98770','46682','2','1','1073741824','0',''), ('98771','46683','1','12','$.error','1',''), ('98772','46683','2','20','12h','0',''), ('98773','46684','1','12','$.metrics.NETWORK_RECEIVE_BYTES_MB_PER_SEC','0',''), ('98774','46684','2','1','1048576','0',''), ('98775','46685','1','12','$.metrics.NETWORK_RECEIVE_ERRORS_PER_SEC','0',''), ('98776','46686','1','12','$.metrics.NETWORK_TRANSMIT_BYTES_MB_PER_SEC','0',''), ('98777','46686','2','1','1048576','0',''), ('98778','46687','1','12','$.metrics.NETWORK_TRANSMIT_ERRORS_PER_SEC','0',''), ('98779','46688','1','12','$.data.spec.cluster_info.num_nodes','0',''), ('98780','46688','2','20','12h','0',''), ('98781','46689','1','12','$.metrics.NODE_CLOCK_SKEW','0',''), ('98782','46689','2','1','0.001','1',''), ('98783','46690','1','12','$.error','1',''), ('98784','46690','2','20','12h','0',''), ('98785','46691','1','12','$.metrics.AVERAGE_READ_LATENCY_MS','0',''), ('98786','46691','2','1','0.001','2','0'), ('98787','46692','1','12','$.data.info.software_version','0',''), ('98788','46692','2','20','12h','0',''), ('98789','46693','1','21','var cluster = JSON.parse(value); const idx = [ ''INVALID'', ''QUEUED'', ''INIT'', ''BOOTSTRAPPING'', ''VPC_PEERING'', ''NETWORK_CREATING'', ''PROVISIONING'', ''CONFIGURING'', ''CREATING_LB'', ''UPDATING_LB'', ''ACTIVE'', ''PAUSING'', ''PAUSED'', ''RESUMING'', ''UPDATING'', ''MAINTENANCE'', ''RESTORE'', ''FAILED'', ''CREATE_FAILED'', ''DELETING'', ''STARTING_NODE'', ''STOPPING_NODE'', ''REBOOTING_NODE'', ''CREATE_READ_REPLICA_FAILED'', ''DELETE_READ_REPLICA_FAILED'', ''DELETE_CLUSTER_FAILED'', ''EDIT_CLUSTER_FAILED'', ''EDIT_READ_REPLICA_FAILED'', ''PAUSE_CLUSTER_FAILED'', ''RESUME_CLUSTER_FAILED'', ''RESTORE_BACKUP_FAILED'', ''CERTIFICATE_ROTATION_FAILED'', ''UPGRADE_CLUSTER_FAILED'', ''UPGRADE_CLUSTER_GFLAGS_FAILED'', ''UPGRADE_CLUSTER_OS_FAILED'', ''UPGRADE_CLUSTER_SOFTWARE_FAILED'', ''START_NODE_FAILED'', ''STOP_NODE_FAILED'', ''REBOOT_NODE_FAILED'', ''CONFIGURE_CMK'', ''ENABLING_CMK'', ''DISABLING_CMK'', ''UPDATING_CMK'', ''ROTATING_CMK'', ''STOPPING_METRICS_EXPORTER'', ''STARTING_METRICS_EXPORTER'', ''CONFIGURING_METRICS_EXPORTER'', ''STOP_METRICS_EXPORTER_FAILED'', ''START_METRICS_EXPORTER_FAILED'', ''CONFIGURE_METRICS_EXPORTER_FAILED'', ''REMOVING_METRICS_EXPORTER'', ''REMOVE_METRICS_EXPORTER_FAILED'' ].indexOf(cluster.data.info.state); return idx !== -1 ? idx : 60;','0',''), ('98790','46693','2','20','12h','0',''), ('98791','46694','1','12','$.data.spec.cluster_info.cluster_type','0',''), ('98792','46694','2','25','SYNCHRONOUS 0','0',''), ('98793','46694','3','25','GEO_PARTITIONED 1','0',''), ('98794','46694','4','20','1d','0',''), ('98795','46695','1','12','$.metrics.AVERAGE_WRITE_LATENCY_MS','0',''), ('98796','46695','2','1','0.001','2','0'), ('98797','46696','1','12','$.data.info.ybc_version','0',''), ('98798','46696','2','20','12h','0',''), ('98799','46697','1','12','$.metrics.YCQL_DELETE_LATENCY_MS','0',''), ('98800','46697','2','1','0.001','2','0'), ('98801','46698','1','12','$.metrics.YCQL_DELETE_OPS_PER_SEC','0',''), ('98802','46699','1','12','$.metrics.YCQL_INSERT_LATENCY_MS','0',''), ('98803','46699','2','1','0.001','2','0'), ('98804','46700','1','12','$.metrics.YCQL_INSERT_OPS_PER_SEC','0',''), ('98805','46701','1','12','$.metrics.YCQL_OTHER_LATENCY_MS','0',''), ('98806','46701','2','1','0.001','2','0'), ('98807','46702','1','12','$.metrics.YCQL_OTHER_OPS_PER_SEC','0',''), ('98808','46703','1','12','$.metrics.YCQL_SELECT_LATENCY_MS','0',''), ('98809','46703','2','1','0.001','2','0'), ('98810','46704','1','12','$.metrics.YCQL_SELECT_OPS_PER_SEC','0',''), ('98811','46705','1','12','$.metrics.YCQL_TRANSACTION_LATENCY_MS','0',''), ('98812','46705','2','1','0.001','2','0'), ('98813','46706','1','12','$.metrics.YCQL_TRANSACTION_OPS_PER_SEC','0',''), ('98814','46707','1','12','$.metrics.YCQL_UPDATE_LATENCY_MS','0',''), ('98815','46707','2','1','0.001','2','0'), ('98816','46708','1','12','$.metrics.YCQL_UPDATE_OPS_PER_SEC','0',''), ('98817','46709','1','12','$.metrics.YSQL_DELETE_LATENCY_MS','0',''), ('98818','46709','2','1','0.001','2','0'), ('98819','46710','1','12','$.metrics.YSQL_DELETE_OPS_PER_SEC','0',''), ('98820','46711','1','12','$.metrics.YSQL_INSERT_LATENCY_MS','0',''), ('98821','46711','2','1','0.001','2','0'), ('98822','46712','1','12','$.metrics.YSQL_INSERT_OPS_PER_SEC','0',''), ('98823','46713','1','12','$.metrics.YSQL_OTHER_LATENCY_MS','0',''), ('98824','46713','2','1','0.001','2','0'), ('98825','46714','1','12','$.metrics.YSQL_OTHER_OPS_PER_SEC','0',''), ('98826','46715','1','12','$.metrics.YSQL_SELECT_LATENCY_MS','0',''), ('98827','46715','2','1','0.001','2','0'), ('98828','46716','1','12','$.metrics.YSQL_SELECT_OPS_PER_SEC','0',''), ('98829','46717','1','12','$.metrics.YSQL_TRANSACTION_LATENCY_MS','0',''), ('98830','46717','2','1','0.001','2','0'), ('98831','46718','1','12','$.metrics.YSQL_TRANSACTION_OPS_PER_SEC','0',''), ('98832','46719','1','12','$.metrics.YSQL_UPDATE_LATENCY_MS','0',''), ('98833','46719','2','1','0.001','2','0'), ('98834','46720','1','12','$.metrics.YSQL_UPDATE_OPS_PER_SEC','0',''), ('98835','46721','1','12','$.error','1',''), ('98836','46721','2','20','12h','0',''), ('98837','46722','1','12','$.error','1',''), ('98838','46722','2','20','12h','0',''), ('98839','46723','1','21','var result = []; var clusters = JSON.parse(value); for (var cluster in clusters[''clusters'']) { result.push({ "cluster_id": clusters[''clusters''][cluster][''info''][''id''], "cluster_name": clusters[''clusters''][cluster][''spec''][''name''] }); }; return JSON.stringify(result);','0',''), ('98840','46723','2','20','1d','0',''), ('98841','46724','1','21','var result = []; var keyspaces = JSON.parse(value); for (var keyspace in keyspaces.keyspaces) { result.push({ "keyspace_name": keyspaces.keyspaces[keyspace][''keyspace_name''] }); }; return JSON.stringify(result);','0',''), ('98842','46724','2','20','1d','0',''), ('98843','46725','1','21','var result = []; var nodes = JSON.parse(value); for (var node in nodes.nodes) { result.push({ "node_name": nodes.nodes[node][''name''] }); }; return JSON.stringify(result);','0',''), ('98844','46725','2','20','1d','0',''), ('98845','46727','1','12','$.keyspaces.[?(@.keyspace_name==''{#KEYSPACE.NAME}'')].first()','1',''), ('98846','46728','1','12','$.data.spec.cluster_info.node_info.num_cores','0',''), ('98847','46728','2','20','12h','0',''), ('98848','46729','1','12','$.data.spec.cluster_info.node_info.disk_size_gb','0',''), ('98849','46729','2','20','12h','0',''), ('98850','46730','1','12','$.nodes.[?(@.name==''{#NODE.NAME}'')].first()','1',''), ('98851','46731','1','12','$.data.spec.cluster_info.node_info.disk_iops','0',''), ('98852','46731','2','20','12h','0',''), ('98853','46732','1','12','$.data.spec.cluster_info.node_info.memory_mb','0',''), ('98854','46732','2','1','1048576','0',''), ('98855','46732','3','20','12h','0',''), ('98856','46733','1','12','$.size_bytes','0',''), ('98857','46734','1','12','$.type','0',''), ('98858','46734','2','25','YSQL 0','0',''), ('98859','46734','3','25','YCQL 1','0',''), ('98860','46734','4','20','1d','0',''), ('98861','46735','1','12','$.wal_size_bytes','0',''), ('98862','46736','1','12','$.is_master','0',''), ('98863','46736','2','25','true 1','0',''), ('98864','46736','3','25','false 0','0',''), ('98865','46736','4','20','1h','0',''), ('98866','46737','1','12','$.metrics.read_ops_per_sec','0',''), ('98867','46738','1','12','$.is_read_replica','0',''), ('98868','46738','2','25','true 1','0',''), ('98869','46738','3','25','false 0','0',''), ('98870','46738','4','20','1h','0',''), ('98871','46739','1','12','$.cloud_info.region','0',''), ('98872','46739','2','20','1d','0',''), ('98873','46740','1','12','$.metrics.total_sst_file_size_bytes','0',''), ('98874','46741','1','12','$.metrics.uncompressed_sst_file_size_bytes','0',''), ('98875','46742','1','12','$.is_node_up','0',''), ('98876','46742','2','25','true 1','0',''), ('98877','46742','3','25','false 0','0',''), ('98878','46742','4','20','1h','0',''), ('98879','46743','1','12','$.is_tserver','0',''), ('98880','46743','2','25','true 1','0',''), ('98881','46743','3','25','false 0','0',''), ('98882','46743','4','20','1h','0',''), ('98883','46744','1','12','$.metrics.write_ops_per_sec','0',''), ('98884','46745','1','12','$.cloud_info.zone','0',''), ('98885','46745','2','20','1d','0',''), ('98886','46750','1','12','$.length()','0',''), ('98887','46757','1','20','12h','0',''), ('98888','46763','1','20','1h','0',''), ('98889','46764','1','10','','0',''), ('98890','46769','1','20','12h','0',''), ('98891','46770','1','20','1d','0',''), ('98892','46771','1','20','1d','0',''), ('98893','46772','1','20','1d','0',''), ('98894','46773','1','20','12h','0',''), ('98895','46774','1','20','12h','0',''), ('98896','46775','1','20','12h','0',''), ('98897','46776','1','1','0.01','0',''), ('98898','46783','1','10','','0',''), ('98899','46784','1','10','','0',''), ('98900','46787','1','29','{#CPU.ID} 1.3.6.1.4.1.2620.1.6.7.5.1.1 0','0',''), ('98901','46787','2','20','1h','0',''), ('98902','46788','1','29','{#SNMPVALUE} 1.3.6.1.4.1.2620.1.6.7.8.2.1.2 0 {#FAN.UNIT} 1.3.6.1.4.1.2620.1.6.7.8.2.1.4 0','0',''), ('98903','46788','2','20','1h','0',''), ('98904','46789','1','21','var items = JSON.parse(value); if (items.length == 0) { return ''[]''; } if (items[0][''{#FW.STATE}''] != ''Installed'') { return ''[]''; } return JSON.stringify([{"{#SNMPINDEX}": 0, "{#SINGLETON}":""}]);','0',''), ('98905','46790','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('98906','46790','2','20','1h','0',''), ('98907','46791','1','29','{#SNMPVALUE} 1.3.6.1.4.1.2620.1.6.7.9.1.1.1 0','0',''), ('98908','46791','2','20','1h','0',''), ('98909','46792','1','29','{#SW.NAME} 1.3.6.1.4.1.2620.1.6.18.1.1.4 0','0',''), ('98910','46792','2','20','1h','0',''), ('98911','46793','1','29','{#SNMPVALUE} 1.3.6.1.4.1.2620.1.6.7.8.1.1.2 0','0',''), ('98912','46793','2','20','1h','0',''), ('98913','46794','1','29','{#DISK.NAME} 1.3.6.1.4.1.2620.1.6.7.6.1.2 0','0',''), ('98914','46794','2','20','1h','0',''), ('98915','46795','1','29','{#SNMPVALUE} 1.3.6.1.4.1.2620.1.6.7.8.3.1.2 0','0',''), ('98916','46795','2','20','1h','0',''), ('98917','46796','1','29','{#VPN.NAME} 1.3.6.1.4.1.2620.500.9002.1.2 0','0',''), ('98918','46796','2','20','1h','0',''), ('98919','46797','1','10','','0',''), ('98920','46800','1','10','','0',''), ('98921','46801','1','21','return Math.floor(new Date(value).getTime() / 1000);','0',''), ('98922','46801','2','20','6h','0',''), ('98923','46802','1','20','1h','0',''), ('98924','46803','1','10','','0',''), ('98925','46804','1','10','','0',''), ('98926','46806','1','10','','0',''), ('98927','46807','1','21','var value = JSON.parse(value)[0]; return value[''{#MAJOR}'']+"."+value[''{#MINOR}''];','0',''), ('98928','46807','2','20','1h','0',''), ('98929','46808','1','28','1.3.6.1.4.1.2620.1.6.7.5.1.2.{#SNMPINDEX} 0','0',''), ('98930','46809','1','28','1.3.6.1.4.1.2620.1.6.7.5.1.3.{#SNMPINDEX} 0','0',''), ('98931','46810','1','28','1.3.6.1.4.1.2620.1.6.7.5.1.4.{#SNMPINDEX} 0','0',''), ('98932','46811','1','28','1.3.6.1.4.1.2620.1.6.7.5.1.5.{#SNMPINDEX} 0','0',''), ('98933','46812','1','28','1.3.6.1.4.1.2620.1.6.7.8.2.1.3.{#SNMPINDEX} 0','0',''), ('98934','46813','1','28','1.3.6.1.4.1.2620.1.6.7.8.2.1.6.{#SNMPINDEX} 0','0',''), ('98935','46814','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('98936','46814','2','10','','0',''), ('98937','46815','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('98938','46815','2','10','','0',''), ('98939','46816','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('98940','46816','2','10','','0',''), ('98941','46816','3','1','8','0',''), ('98942','46817','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('98943','46817','2','10','','0',''), ('98944','46818','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('98945','46818','2','10','','0',''), ('98946','46819','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('98947','46819','2','10','','0',''), ('98948','46819','3','1','8','0',''), ('98949','46820','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('98950','46820','2','1','1000000','0',''), ('98951','46820','3','20','1h','0',''), ('98952','46821','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('98953','46822','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('98954','46822','2','20','1d','0',''), ('98955','46823','1','28','1.3.6.1.4.1.2620.1.6.7.9.1.1.2.{#SNMPINDEX} 0','0',''), ('98956','46823','2','21','const idx = [ ''Up'', ''Down'', ''Unknown'' ].indexOf(value); return idx !== -1 ? idx : 2;','0',''), ('98957','46823','3','20','1h','0',''), ('98958','46824','1','28','1.3.6.1.4.1.2620.1.6.18.1.1.6.{#SNMPINDEX} 0','0',''), ('98959','46824','2','15','^0$','1',''), ('98960','46824','3','20','6h','0',''), ('98961','46825','1','28','1.3.6.1.4.1.2620.1.6.18.1.1.9.{#SNMPINDEX} 0','0',''), ('98962','46825','2','20','6h','0',''), ('98963','46826','1','28','1.3.6.1.4.1.2620.1.6.18.1.1.10.{#SNMPINDEX} 0','0',''), ('98964','46826','2','20','1h','0',''), ('98965','46827','1','28','1.3.6.1.4.1.2620.1.6.18.1.1.5.{#SNMPINDEX} 0','0',''), ('98966','46827','2','20','6h','0',''), ('98967','46828','1','28','1.3.6.1.4.1.2620.1.6.18.1.1.8.{#SNMPINDEX} 0','0',''), ('98968','46828','2','20','1h','0',''), ('98969','46829','1','28','1.3.6.1.4.1.2620.1.6.7.8.1.1.3.{#SNMPINDEX} 0','0',''), ('98970','46830','1','28','1.3.6.1.4.1.2620.1.6.7.6.1.7.{#SNMPINDEX} 0','0',''), ('98971','46831','1','28','1.3.6.1.4.1.2620.1.6.7.6.1.5.{#SNMPINDEX} 0','0',''), ('98972','46832','1','28','1.3.6.1.4.1.2620.1.6.7.6.1.6.{#SNMPINDEX} 0','0',''), ('98973','46832','2','21','return 100 - Number(value);','0',''), ('98974','46833','1','28','1.3.6.1.4.1.2620.1.6.7.6.1.3.{#SNMPINDEX} 0','0',''), ('98975','46833','2','20','6h','0',''), ('98976','46834','1','28','1.3.6.1.4.1.2620.1.6.7.6.1.4.{#SNMPINDEX} 0','0',''), ('98977','46835','1','28','1.3.6.1.4.1.2620.1.6.7.8.3.1.3.{#SNMPINDEX} 0','0',''), ('98978','46836','1','28','1.3.6.1.4.1.2620.500.9002.1.4.{#SNMPINDEX} 0','0',''), ('98979','46836','2','20','6h','0',''), ('98980','46837','1','28','1.3.6.1.4.1.2620.500.9002.1.6.{#SNMPINDEX} 0','0',''), ('98981','46837','2','20','6h','0',''), ('98982','46838','1','28','1.3.6.1.4.1.2620.500.9002.1.1.{#SNMPINDEX} 0','0',''), ('98983','46838','2','20','6h','0',''), ('98984','46839','1','28','1.3.6.1.4.1.2620.500.9002.1.10.{#SNMPINDEX} 0','0',''), ('98985','46839','2','20','1h','0',''), ('98986','46840','1','28','1.3.6.1.4.1.2620.500.9002.1.8.{#SNMPINDEX} 0','0',''), ('98987','46840','2','20','1h','0',''), ('98988','46841','1','28','1.3.6.1.4.1.2620.500.9002.1.9.{#SNMPINDEX} 0','0',''), ('98989','46842','1','28','1.3.6.1.4.1.2620.500.9002.1.7.{#SNMPINDEX} 0','0',''), ('98990','46842','2','20','6h','0',''), ('98991','46843','1','28','1.3.6.1.4.1.2620.500.9002.1.3.{#SNMPINDEX} 0','0',''), ('98992','46843','2','20','1h','0',''), ('98993','46844','1','28','1.3.6.1.4.1.2620.500.9002.1.11.{#SNMPINDEX} 0','0',''), ('98994','46844','2','20','1h','0',''), ('98995','46848','1','21','const idx = { ''PROVISIONING'': 1, ''AVAILABLE'': 2, ''STOPPING'': 3, ''STOPPED'': 4, ''STARTING'': 5, ''TERMINATING'': 6, ''TERMINATED'': 7, ''RESTORE_IN_PROGRESS'': 8, ''RESTORE_FAILED'': 9, ''BACKUP_IN_PROGRESS'': 10, ''SCALE_IN_PROGRESS'': 11, ''AVAILABLE_NEEDS_ATTENTION'': 12, ''UPDATING'': 13, ''MAINTENANCE_IN_PROGRESS'': 14, ''RESTARTING'': 15, ''RECREATING'': 16, ''ROLE_CHANGE_IN_PROGRESS'': 17, ''UPGRADING'': 18, ''UNAVAILABLE'': 19, ''INACCESSIBLE'': 20, ''STANDBY'': 21 }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('98996','46848','2','20','1h','0',''), ('98997','46850','1','21','const idx = { ''PROVISIONING'': 1, ''RESTORING'': 2, ''AVAILABLE'': 3, ''TERMINATING'': 4, ''TERMINATED'': 5, ''FAULTY'': 6 }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('98998','46850','2','20','1h','0',''), ('98999','46852','1','21','const idx = { ''PROVISIONING'': 1, ''RESTORING'': 2, ''AVAILABLE'': 3, ''TERMINATING'': 4, ''TERMINATED'': 5, ''FAULTY'': 6 }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('99000','46852','2','20','1h','0',''), ('99001','46855','1','21','const idx = { ''MOVING'': 1, ''PROVISIONING'': 2, ''RUNNING'': 3, ''STARTING'': 4, ''STOPPING'': 5, ''STOPPED'': 6, ''CREATING_IMAGE'': 7, ''TERMINATING'': 8, ''TERMINATED'': 9 }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('99002','46855','2','20','1h','0',''), ('99003','46857','1','25','" ','0',''), ('99004','46857','2','21','const idx = { ''PROVISIONING'': 1, ''AVAILABLE'': 2, ''TERMINATING'': 3, ''TERMINATED'': 4, ''UPDATING'': 5 }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('99005','46857','3','20','1h','0',''), ('99006','46861','1','20','1d','0',''), ('99007','46862','1','12','$.DatabaseAvailability','0',''), ('99008','46862','2','20','5h','0',''), ('99009','46863','1','12','$.DBBlockChanges','0',''), ('99010','46863','2','20','1h','0',''), ('99011','46864','1','12','$.FailedConnections','0',''), ('99012','46864','2','20','1h','0',''), ('99013','46865','1','12','$.CpuTime','0',''), ('99014','46865','2','21','return Math.round(value * 100) / 100;','0',''), ('99015','46865','3','20','1h','0',''), ('99016','46866','1','12','$.CpuUtilization','0',''), ('99017','46866','2','21','return Math.round(value * 100) / 100;','0',''), ('99018','46866','3','20','1h','0',''), ('99019','46867','1','12','$.ExecuteCount','0',''), ('99020','46867','2','20','1h','0',''), ('99021','46868','1','12','$.ConnectionLatency','0',''), ('99022','46868','2','1','0.001','0',''), ('99023','46868','3','20','5h','0',''), ('99024','46869','1','12','$.QueryLatency','0',''), ('99025','46869','2','1','0.001','0',''), ('99026','46869','3','20','5h','0',''), ('99027','46870','1','12','$.LogicalReads','0',''), ('99028','46870','2','20','1h','0',''), ('99029','46871','1','12','$.CurrentLogons','0',''), ('99030','46871','2','20','1h','0',''), ('99031','46872','1','12','$.FailedLogons','0',''), ('99032','46872','2','20','1h','0',''), ('99033','46873','1','12','$.ParseFailureCount','0',''), ('99034','46873','2','20','1h','0',''), ('99035','46874','1','12','$.HardParseCount','0',''), ('99036','46874','2','20','1h','0',''), ('99037','46875','1','12','$.ParseCount','0',''), ('99038','46875','2','20','1h','0',''), ('99039','46876','1','12','$.PhysicalReadTotalBytes','0',''), ('99040','46876','2','20','1h','0',''), ('99041','46877','1','12','$.PhysicalReads','0',''), ('99042','46877','2','20','1h','0',''), ('99043','46878','1','12','$.PhysicalWriteTotalBytes','0',''), ('99044','46878','2','20','1h','0',''), ('99045','46879','1','12','$.PhysicalWrites','0',''), ('99046','46879','2','20','1h','0',''), ('99047','46880','1','12','$.QueuedStatements','0',''), ('99048','46880','2','20','1h','0',''), ('99049','46881','1','12','$.RedoGenerated','0',''), ('99050','46881','2','20','1h','0',''), ('99051','46882','1','12','$.Sessions','0',''), ('99052','46882','2','20','1h','0',''), ('99053','46883','1','12','$.SQLNetBytesFromClient','0',''), ('99054','46883','2','20','1h','0',''), ('99055','46884','1','12','$.SQLNetBytesFromDBLink','0',''), ('99056','46884','2','20','1h','0',''), ('99057','46885','1','12','$.SQLNetBytesToClient','0',''), ('99058','46885','2','20','1h','0',''), ('99059','46886','1','12','$.SQLNetBytesToDBLink','0',''), ('99060','46886','2','20','1h','0',''), ('99061','46887','1','12','$.RunningStatements','0',''), ('99062','46887','2','20','1h','0',''), ('99063','46888','1','12','$.StorageAllocated','0',''), ('99064','46888','2','1','1073741824','0',''), ('99065','46888','3','20','12h','0',''), ('99066','46889','1','12','$.StorageMax','0',''), ('99067','46889','2','1','1073741824','0',''), ('99068','46889','3','20','12h','0',''), ('99069','46890','1','12','$.StorageUsed','0',''), ('99070','46890','2','1','1073741824','0',''), ('99071','46890','3','20','12h','0',''), ('99072','46891','1','12','$.StorageUtilization','0',''), ('99073','46891','2','20','12h','0',''), ('99074','46892','1','12','$.DBTime','0',''), ('99075','46892','2','21','return Math.round(value * 100) / 100;','0',''), ('99076','46892','3','20','1h','0',''), ('99077','46893','1','12','$.TransactionCount','0',''), ('99078','46893','2','20','1h','0',''), ('99079','46894','1','12','$.UserCalls','0',''), ('99080','46894','2','20','1h','0',''), ('99081','46895','1','12','$.UserCommits','0',''), ('99082','46895','2','20','1h','0',''), ('99083','46896','1','12','$.UserRollbacks','0',''), ('99084','46896','2','20','1h','0',''), ('99085','46897','1','12','$.WaitTime','0',''), ('99086','46897','2','21','return Math.round(value * 100) / 100;','0',''), ('99087','46897','3','20','1h','0',''), ('99088','46898','1','12','$.VolumeGuaranteedIOPS','0',''), ('99089','46898','2','20','1h','0',''), ('99090','46899','1','12','$.VolumeReadThroughput','0',''), ('99091','46899','2','20','1h','0',''), ('99092','46900','1','12','$.VolumeReadOps','0',''), ('99093','46900','2','20','1h','0',''), ('99094','46901','1','12','$.VolumeThrottledIOs','0',''), ('99095','46901','2','20','1h','0',''), ('99096','46902','1','12','$.VolumeGuaranteedThroughput','0',''), ('99097','46902','2','1','1048576','0',''), ('99098','46902','3','20','1h','0',''), ('99099','46903','1','12','$.VolumeGuaranteedVPUsPerGB','0',''), ('99100','46903','2','20','1h','0',''), ('99101','46904','1','12','$.VolumeWriteThroughput','0',''), ('99102','46904','2','20','1h','0',''), ('99103','46905','1','12','$.VolumeWriteOps','0',''), ('99104','46905','2','20','1h','0',''), ('99105','46906','1','12','$.VolumeGuaranteedIOPS','0',''), ('99106','46906','2','20','1h','0',''), ('99107','46907','1','12','$.VolumeReadThroughput','0',''), ('99108','46907','2','20','1h','0',''), ('99109','46908','1','12','$.VolumeReadOps','0',''), ('99110','46908','2','20','1h','0',''), ('99111','46909','1','12','$.VolumeThrottledIOs','0',''), ('99112','46909','2','20','1h','0',''), ('99113','46910','1','12','$.VolumeGuaranteedThroughput','0',''), ('99114','46910','2','1','1048576','0',''), ('99115','46910','3','20','1h','0',''), ('99116','46911','1','12','$.VolumeGuaranteedVPUsPerGB','0',''), ('99117','46911','2','20','1h','0',''), ('99118','46912','1','12','$.VolumeWriteThroughput','0',''), ('99119','46912','2','20','1h','0',''), ('99120','46913','1','12','$.VolumeWriteOps','0',''), ('99121','46913','2','20','1h','0',''), ('99122','46914','1','12','$.CpuUtilization','0',''), ('99123','46914','2','21','return Math.round(value * 100) / 100;','0',''), ('99124','46914','3','20','1h','0',''), ('99125','46915','1','12','$.DiskIopsRead','0',''), ('99126','46915','2','21','return Math.round(value * 100) / 100;','0',''), ('99127','46915','3','20','1h','0',''), ('99128','46916','1','12','$.DiskIopsWritten','0',''), ('99129','46916','2','21','return Math.round(value * 100) / 100;','0',''), ('99130','46916','3','20','1h','0',''), ('99131','46917','1','12','$.DiskBytesRead','0',''), ('99132','46917','2','21','return Math.round(value * 100) / 100;','0',''), ('99133','46917','3','20','1h','0',''), ('99134','46918','1','12','$.DiskBytesWritten','0',''), ('99135','46918','2','21','return Math.round(value * 100) / 100;','0',''), ('99136','46918','3','20','1h','0',''), ('99137','46919','1','12','$.LoadAverage','0',''), ('99138','46919','2','21','return Math.round(value * 100) / 100;','0',''), ('99139','46919','3','20','1h','0',''), ('99140','46920','1','12','$.MemoryAllocationStalls','0',''), ('99141','46920','2','20','1h','0',''), ('99142','46921','1','12','$.MemoryUtilization','0',''), ('99143','46921','2','21','return Math.round(value * 100) / 100;','0',''), ('99144','46921','3','20','1h','0',''), ('99145','46922','1','12','$.NetworksBytesIn','0',''), ('99146','46922','2','21','return Math.round(value * 100) / 100;','0',''), ('99147','46922','3','20','1h','0',''), ('99148','46923','1','12','$.NetworksBytesOut','0',''), ('99149','46923','2','21','return Math.round(value * 100) / 100;','0',''), ('99150','46923','3','20','1h','0',''), ('99151','46924','1','12','$.ClientErrors','0',''), ('99152','46924','2','20','1h','0',''), ('99153','46925','1','12','$.FirstByteLatency','0',''), ('99154','46925','2','1','0.001','0',''), ('99155','46925','3','20','1h','0',''), ('99156','46926','1','12','$.TotalRequestLatency','0',''), ('99157','46926','2','1','0.001','0',''), ('99158','46926','3','20','1h','0',''), ('99159','46927','1','12','$.ObjectCount','0',''), ('99160','46927','2','20','12h','0',''), ('99161','46928','1','12','$.AllRequests','0',''), ('99162','46928','2','20','1h','0',''), ('99163','46929','1','12','$.PostRequests','0',''), ('99164','46929','2','20','1h','0',''), ('99165','46930','1','12','$.PutRequests','0',''), ('99166','46930','2','20','1h','0',''), ('99167','46931','1','12','$.StoredBytes','0',''), ('99168','46931','2','20','12h','0',''), ('99169','46932','1','12','$.UncommittedParts','0',''), ('99170','46932','2','20','12h','0',''), ('99171','46939','1','20','1h','0',''), ('99172','46940','1','20','1h','0',''), ('99173','46942','1','12','$[?(@.id == ''{#ID}'')].state.first()','0',''), ('99174','46942','2','21','const idx = { ''ATTACHING'': 1, ''ATTACHED'': 2, ''DETACHING'': 3, ''DETACHED'': 4 }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('99175','46942','3','20','1h','0',''), ('99176','46943','1','12','$.VnicEgressDropsSecurityList','0',''), ('99177','46943','2','20','1h','0',''), ('99178','46944','1','12','$.SmartnicBufferDropsFromHost','0',''), ('99179','46944','2','20','1h','0',''), ('99180','46945','1','12','$.VnicIngressDropsSecurityList','0',''), ('99181','46945','2','20','1h','0',''), ('99182','46946','1','12','$.VnicToNetworkBytes','0',''), ('99183','46946','2','20','1h','0',''), ('99184','46947','1','12','$.VnicFromNetworkBytes','0',''), ('99185','46947','2','20','1h','0',''), ('99186','46948','1','12','$.VnicConntrackIsFull','0',''), ('99187','46948','2','20','1h','0',''), ('99188','46949','1','12','$.VnicConntrackUtilPercent','0',''), ('99189','46949','2','20','1h','0',''), ('99190','46950','1','12','$.VnicEgressDropsConntrackFull','0',''), ('99191','46950','2','20','1h','0',''), ('99192','46951','1','12','$.VnicEgressDropsThrottle','0',''), ('99193','46951','2','20','1h','0',''), ('99194','46952','1','12','$.VnicToNetworkPackets','0',''), ('99195','46952','2','20','1h','0',''), ('99196','46953','1','12','$.VnicIngressDropsConntrackFull','0',''), ('99197','46953','2','20','1h','0',''), ('99198','46954','1','12','$.VnicIngressDropsThrottle','0',''), ('99199','46954','2','20','1h','0',''), ('99200','46955','1','12','$.VnicFromNetworkPackets','0',''), ('99201','46955','2','20','1h','0',''), ('99202','46956','1','12','$.SmartnicBufferDropsFromNetwork','0',''), ('99203','46956','2','20','1h','0',''), ('99204','46957','1','12','$..[?(@.id == ''{#ID}'')].state.first()','0',''), ('99205','46957','2','21','const idx = { ''PROVISIONING'': 1, ''AVAILABLE'': 2, ''TERMINATING'': 3, ''TERMINATED'': 4 }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('99206','46957','3','20','1h','0',''), ('99207','30523','1','12','$.[?(@.Master_Host==''{#MASTER_HOST}'')].first()','0',''), ('99208','46965','1','20','1d','0',''), ('99209','46966','1','20','1d','0',''), ('99210','46967','1','20','1d','0',''), ('99211','46968','1','20','1d','0',''), ('99212','46969','1','20','1d','0',''), ('99213','46971','1','20','1d','0',''), ('99214','46972','1','20','1d','0',''), ('99215','46974','1','10','','0',''), ('99216','46975','1','20','6h','0',''), ('99217','46976','1','10','','0',''), ('99218','46977','1','10','','0',''), ('99219','46978','1','10','','0',''), ('99220','46979','1','10','','0',''), ('99221','46980','1','10','','0',''), ('99222','46981','1','10','','0',''), ('99223','46982','1','10','','0',''), ('99224','46983','1','10','','0',''), ('99225','46988','1','20','1h','0',''), ('99226','46989','1','20','1h','0',''), ('99227','46991','1','20','1h','0',''), ('99228','46993','1','29','{#CPU.ID} 1.3.6.1.4.1.12356.101.4.4.2.1.1 0 {#CPU.TYPE} 1.3.6.1.4.1.12356.101.4.4.2.1.4 0','1',''), ('99229','46993','2','20','1h','0',''), ('99230','46994','1','29','{#HA.ID} 1.3.6.1.4.1.12356.101.13.2.1.1.1 0 {#HA.SN} 1.3.6.1.4.1.12356.101.13.2.1.1.2 0','1',''), ('99231','46994','2','20','1h','0',''), ('99232','46995','1','29','{#SENSOR.ID} 1.3.6.1.4.1.12356.101.4.3.2.1.1 0 {#SENSOR.NAME} 1.3.6.1.4.1.12356.101.4.3.2.1.2 0','1',''), ('99233','46995','2','20','1h','0',''), ('99234','46996','1','29','{#HNAME} 1.3.6.1.4.1.12356.101.4.9.2.1.2 0 {#IFNAME} 1.3.6.1.4.1.12356.101.4.9.2.1.14 0','1',''), ('99235','46996','2','20','1h','0',''), ('99236','46997','1','29','{#CPU.ID} 1.3.6.1.4.1.12356.101.4.4.2.1.1 0 {#CPU.TYPE} 1.3.6.1.4.1.12356.101.4.4.2.1.4 0','1',''), ('99237','46997','2','20','1h','0',''), ('99238','46998','1','29','{#VDOM.ID} 1.3.6.1.4.1.12356.101.3.2.1.1.1 0 {#VDOM.NAME} 1.3.6.1.4.1.12356.101.3.2.1.1.2 0','1',''), ('99239','46998','2','20','1h','0',''), ('99240','46999','1','29','{#VPN.NAME} 1.3.6.1.4.1.12356.101.12.2.2.1.3 0','1',''), ('99241','46999','2','20','1h','0',''), ('99242','47000','1','29','{#WC.ID} 1.3.6.1.4.1.12356.101.14.4.3.1.1 0 {#WC.NAME} 1.3.6.1.4.1.12356.101.14.4.3.1.3 0','1',''), ('99243','47000','2','20','1h','0',''), ('99244','47001','1','28','1.3.6.1.4.1.12356.101.4.4.2.1.10.{#SNMPINDEX} 0','0',''), ('99245','47002','1','28','1.3.6.1.4.1.12356.101.4.4.2.1.2.{#SNMPINDEX} 0','0',''), ('99246','47003','1','28','1.3.6.1.4.1.12356.101.4.4.2.1.9.{#SNMPINDEX} 0','0',''), ('99247','47004','1','28','1.3.6.1.4.1.12356.101.13.2.1.1.10.{#SNMPINDEX} 0','0',''), ('99248','47004','2','10','','0',''), ('99249','47005','1','28','1.3.6.1.4.1.12356.101.13.2.1.1.8.{#SNMPINDEX} 0','0',''), ('99250','47005','2','10','','0',''), ('99251','47006','1','28','1.3.6.1.4.1.12356.101.13.2.1.1.15.{#SNMPINDEX} 0','0',''), ('99252','47006','2','20','1d','0',''), ('99253','47007','1','28','1.3.6.1.4.1.12356.101.13.2.1.1.3.{#SNMPINDEX} 0','0',''), ('99254','47008','1','28','1.3.6.1.4.1.12356.101.13.2.1.1.11.{#SNMPINDEX} 0','0',''), ('99255','47008','2','20','1d','0',''), ('99256','47009','1','28','1.3.6.1.4.1.12356.101.13.2.1.1.9.{#SNMPINDEX} 0','0',''), ('99257','47009','2','10','','0',''), ('99258','47010','1','28','1.3.6.1.4.1.12356.101.13.2.1.1.4.{#SNMPINDEX} 0','0',''), ('99259','47011','1','28','1.3.6.1.4.1.12356.101.13.2.1.1.5.{#SNMPINDEX} 0','0',''), ('99260','47011','2','1','1024','0',''), ('99261','47012','1','28','1.3.6.1.4.1.12356.101.13.2.1.1.7.{#SNMPINDEX} 0','0',''), ('99262','47012','2','10','','0',''), ('99263','47013','1','28','1.3.6.1.4.1.12356.101.13.2.1.1.16.{#SNMPINDEX} 0','0',''), ('99264','47013','2','20','6h','0',''), ('99265','47014','1','28','1.3.6.1.4.1.12356.101.13.2.1.1.2.{#SNMPINDEX} 0','0',''), ('99266','47014','2','20','1d','0',''), ('99267','47015','1','28','1.3.6.1.4.1.12356.101.13.2.1.1.6.{#SNMPINDEX} 0','0',''), ('99268','47016','1','28','1.3.6.1.4.1.12356.101.13.2.1.1.12.{#SNMPINDEX} 0','0',''), ('99269','47017','1','28','1.3.6.1.4.1.12356.101.4.3.2.1.4.{#SENSOR.ID} 0','0',''), ('99270','47018','1','28','1.3.6.1.4.1.12356.101.4.3.2.1.3.{#SENSOR.ID} 0','0',''), ('99271','47018','2','20','1h','0',''), ('99272','47019','1','28','1.3.6.1.4.1.12356.101.4.9.2.1.6.{#SNMPINDEX} 0','0',''), ('99273','47020','1','28','1.3.6.1.4.1.12356.101.4.9.2.1.5.{#SNMPINDEX} 0','0',''), ('99274','47021','1','28','1.3.6.1.4.1.12356.101.4.9.2.1.9.{#SNMPINDEX} 0','0',''), ('99275','47022','1','28','1.3.6.1.4.1.12356.101.4.9.2.1.8.{#SNMPINDEX} 0','0',''), ('99276','47022','2','10','','0',''), ('99277','47023','1','28','1.3.6.1.4.1.12356.101.4.9.2.1.7.{#SNMPINDEX} 0','0',''), ('99278','47023','2','10','','0',''), ('99279','47024','1','28','1.3.6.1.4.1.12356.101.4.9.2.1.4.{#SNMPINDEX} 0','0',''), ('99280','47025','1','28','1.3.6.1.4.1.12356.101.4.4.2.1.8.{#SNMPINDEX} 0','0',''), ('99281','47025','2','10','','0',''), ('99282','47026','1','28','1.3.6.1.4.1.12356.101.4.4.2.1.6.{#SNMPINDEX} 0','0',''), ('99283','47026','2','10','','0',''), ('99284','47027','1','28','1.3.6.1.4.1.12356.101.4.4.2.1.7.{#SNMPINDEX} 0','0',''), ('99285','47027','2','10','','0',''), ('99286','47028','1','28','1.3.6.1.4.1.12356.101.3.2.1.1.5.{#SNMPINDEX} 0','0',''), ('99287','47029','1','28','1.3.6.1.4.1.12356.101.3.2.1.1.4.{#SNMPINDEX} 0','0',''), ('99288','47030','1','28','1.3.6.1.4.1.12356.101.3.2.1.1.6.{#SNMPINDEX} 0','0',''), ('99289','47031','1','28','1.3.6.1.4.1.12356.101.3.2.1.1.3.{#SNMPINDEX} 0','0',''), ('99290','47032','1','28','1.3.6.1.4.1.12356.101.3.2.1.1.8.{#SNMPINDEX} 0','0',''), ('99291','47033','1','28','1.3.6.1.4.1.12356.101.3.2.1.1.7.{#SNMPINDEX} 0','0',''), ('99292','47034','1','28','1.3.6.1.4.1.12356.101.12.2.2.1.20.{#SNMPINDEX} 0','0',''), ('99293','47035','1','28','1.3.6.1.4.1.12356.101.14.4.3.1.2.{#SNMPINDEX} 0','0',''), ('99294','47036','1','28','1.3.6.1.4.1.12356.101.14.4.3.1.12.{#SNMPINDEX} 0','0',''), ('99295','47037','1','28','1.3.6.1.4.1.12356.101.14.4.4.1.6.{#SNMPINDEX} 0','0',''), ('99296','47037','2','20','1h','0',''), ('99297','47038','1','28','1.3.6.1.4.1.12356.101.14.4.4.1.15.{#SNMPINDEX} 0','0',''), ('99298','47038','2','20','1d','0',''), ('99299','47039','1','28','1.3.6.1.4.1.12356.101.14.4.4.1.17.{#SNMPINDEX} 0','0',''), ('99300','47040','1','28','1.3.6.1.4.1.12356.101.14.4.4.1.7.{#SNMPINDEX} 0','0',''), ('99301','47041','1','28','1.3.6.1.4.1.12356.101.14.4.4.1.20.{#SNMPINDEX} 0','0',''), ('99302','47042','1','28','1.3.6.1.4.1.12356.101.14.4.4.1.9.{#SNMPINDEX} 0','0',''), ('99303','47042','2','1','0.01','0',''), ('99304','47043','1','28','1.3.6.1.4.1.12356.101.14.4.4.1.13.{#SNMPINDEX} 0','0',''), ('99305','47043','2','20','1d','0',''), ('99306','47044','1','28','1.3.6.1.4.1.12356.101.14.4.4.1.3.{#SNMPINDEX} 0','0',''), ('99307','47044','2','20','1h','0',''), ('99308','47045','1','28','1.3.6.1.4.1.12356.101.14.4.4.1.2.{#SNMPINDEX} 0','0',''), ('99309','47045','2','20','1h','0',''), ('99310','47046','1','28','1.3.6.1.4.1.12356.101.14.4.4.1.5.{#SNMPINDEX} 0','0',''), ('99311','47046','2','20','1h','0',''), ('99312','47047','1','28','1.3.6.1.4.1.12356.101.14.4.4.1.4.{#SNMPINDEX} 0','0',''), ('99313','47047','2','20','1h','0',''), ('99314','47048','1','28','1.3.6.1.4.1.12356.101.14.4.3.1.4.{#SNMPINDEX} 0','0',''), ('99315','47048','2','20','1h','0',''), ('99316','47049','1','28','1.3.6.1.4.1.12356.101.14.4.4.1.22.{#SNMPINDEX} 0','0',''), ('99317','47049','2','20','1h','0',''), ('99318','47049','3','1','1024','0',''), ('99319','47050','1','28','1.3.6.1.4.1.12356.101.14.4.4.1.21.{#SNMPINDEX} 0','0',''), ('99320','47051','1','28','1.3.6.1.4.1.12356.101.14.4.4.1.12.{#SNMPINDEX} 0','0',''), ('99321','47051','2','20','1h','0',''), ('99322','47052','1','28','1.3.6.1.4.1.12356.101.14.4.3.1.5.{#SNMPINDEX} 0','0',''), ('99323','47052','2','20','1h','0',''), ('99324','47053','1','28','1.3.6.1.4.1.12356.101.14.4.3.1.9.{#SNMPINDEX} 0','0',''), ('99325','47053','2','20','10m','0',''), ('99326','47054','1','28','1.3.6.1.4.1.12356.101.14.4.3.1.8.{#SNMPINDEX} 0','0',''), ('99327','47054','2','20','10m','0',''), ('99328','47055','1','28','1.3.6.1.4.1.12356.101.14.4.3.1.7.{#SNMPINDEX} 0','0',''), ('99329','47055','2','20','1h','0',''), ('99330','47056','1','28','1.3.6.1.4.1.12356.101.14.4.3.1.11.{#SNMPINDEX} 0','0',''), ('99331','47056','2','20','1h','0',''), ('99332','47057','1','28','1.3.6.1.4.1.12356.101.14.4.3.1.6.{#SNMPINDEX} 0','0',''), ('99333','47057','2','20','1h','0',''), ('99334','47058','1','28','1.3.6.1.4.1.12356.101.14.4.3.1.10.{#SNMPINDEX} 0','0',''), ('99335','47058','2','20','10m','0',''), ('99336','47059','1','28','1.3.6.1.4.1.12356.101.14.4.4.1.18.{#SNMPINDEX} 0','0',''), ('99337','47059','2','10','','0',''), ('99338','47059','3','1','8','0',''), ('99339','47060','1','28','1.3.6.1.4.1.12356.101.14.4.4.1.19.{#SNMPINDEX} 0','0',''), ('99340','47060','2','10','','0',''), ('99341','47060','3','1','8','0',''), ('99342','47061','1','28','1.3.6.1.4.1.12356.101.14.4.4.1.16.{#SNMPINDEX} 0','0',''), ('99343','47061','2','20','1h','0',''), ('99344','47062','1','28','1.3.6.1.4.1.12356.101.14.4.4.1.10.{#SNMPINDEX} 0','0',''), ('99345','47062','2','1','0.01','0',''), ('99346','47063','1','28','1.3.6.1.4.1.12356.101.14.4.4.1.14.{#SNMPINDEX} 0','0',''), ('99347','47063','2','20','1d','0',''), ('99348','47064','1','28','1.3.6.1.4.1.12356.101.14.4.4.1.8.{#SNMPINDEX} 0','0',''), ('99349','47064','2','1','0.01','0',''), ('99350','47065','1','28','1.3.6.1.4.1.12356.101.14.4.3.1.13.{#SNMPINDEX} 0','0',''), ('99351','47066','1','28','1.3.6.1.4.1.12356.101.14.4.3.1.14.{#SNMPINDEX} 0','0',''), ('99352','47066','2','20','1h','0',''), ('99353','47067','1','21','var result = [], sensors = JSON.parse(value)[''val''][''HostNumericSensorInfo''], discovery_flag = ''{$VMWARE.HV.SENSOR.DISCOVERY}''.toLowerCase().trim(); if (!(discovery_flag == ''true'' || discovery_flag == ''false'')) { throw ''Incorrect value of macro "{$'' + ''VMWARE.HV.SENSOR.DISCOVERY}". Can be used only "true" or "false". Actual value: '' + discovery_flag; } if (discovery_flag !== ''true'' || typeof sensors === "undefined") { return JSON.stringify([]); } sensors.forEach(function(sensor) { result.push({"{#NAME}": sensor[''name''], "{#TYPE}": sensor[''sensorType''].toLowerCase()}); }) return JSON.stringify(result);','0',''), ('99354','47067','2','20','6h','0',''), ('99355','47068','1','12','$..HostNumericSensorInfo[?(@.name=="{#NAME}")].healthState.label.first()','0',''), ('99356','47068','2','21','const idx = [ ''gray'', ''green'', ''yellow'', ''red'' ].indexOf(value.toLowerCase()); return idx !== -1 ? idx : 0;','0',''), ('99357','47068','3','20','6h','0',''), ('99358','29653','2','20','1h','0',''), ('99359','29703','1','21','return JSON.stringify(JSON.parse(value),[''node'',''name'',''vhost'']);','0',''), ('99360','29703','2','20','1h','0',''), ('99361','30026','1','21','return JSON.stringify(JSON.parse(value),[''name'',''type'',''vhost'']);','0',''), ('99362','30026','2','20','1h','0',''), ('99363','33744','3','20','1h','0',''), ('99364','33745','3','20','1h','0',''), ('99365','33746','3','20','1h','0',''), ('99366','30043','1','20','1h','0',''), ('99367','29785','1','21','return JSON.stringify(JSON.parse(value),[''name'',''type'',''vhost'']);','0',''), ('99368','29785','2','20','1h','0',''), ('99369','29786','1','21','return JSON.stringify(JSON.parse(value),[''node'',''name'',''vhost'']);','0',''), ('99370','29786','2','20','1h','0',''), ('99371','33754','3','20','1h','0',''), ('99372','33755','3','20','1h','0',''), ('99373','33756','3','20','1h','0',''), ('99374','47069','1','26','-1','1',''), ('99375','47070','1','26','-1','1',''), ('99376','47071','1','26','-1','1',''), ('99377','47072','1','12','$.[?(@.Label == "ActiveFlowCount")].Values.first().first()','1',''), ('99378','47073','1','12','$.[?(@.Label == "ActiveFlowCount_TCP")].Values.first().first()','1',''), ('99379','47074','1','12','$.[?(@.Label == "ActiveFlowCount_TLS")].Values.first().first()','1',''), ('99380','47075','1','12','$.[?(@.Label == "ActiveFlowCount_UDP")].Values.first().first()','1',''), ('99381','47076','1','12','$.error','2',''), ('99382','47076','2','20','3h','0',''), ('99383','47077','1','12','$.[?(@.Label == "ConsumedLCUs")].Values.first().first()','1',''), ('99384','47078','1','12','$.[?(@.Label == "ConsumedLCUs_TCP")].Values.first().first()','1',''), ('99385','47079','1','12','$.[?(@.Label == "ConsumedLCUs_TLS")].Values.first().first()','1',''), ('99386','47080','1','12','$.[?(@.Label == "ConsumedLCUs_UDP")].Values.first().first()','1',''), ('99387','47081','1','12','$.[?(@.Label == "ClientTLSNegotiationErrorCount")].Values.first().first()','1',''), ('99388','47082','1','12','$.error','2',''), ('99389','47082','2','20','3h','0',''), ('99390','47083','1','12','$.[?(@.Label == "NewFlowCount")].Values.first().first()','1',''), ('99391','47084','1','12','$.[?(@.Label == "NewFlowCount_TCP")].Values.first().first()','1',''), ('99392','47085','1','12','$.[?(@.Label == "NewFlowCount_TLS")].Values.first().first()','1',''), ('99393','47086','1','12','$.[?(@.Label == "NewFlowCount_UDP")].Values.first().first()','1',''), ('99394','47087','1','12','$.[?(@.Label == "PeakPacketsPerSecond")].Values.first().first()','1',''), ('99395','47088','1','12','$.[?(@.Label == "PortAllocationErrorCount")].Values.first().first()','1',''), ('99396','47089','1','12','$.[?(@.Label == "ProcessedBytes")].Values.first().first()','1',''), ('99397','47090','1','12','$.[?(@.Label == "ProcessedBytes_TCP")].Values.first().first()','1',''), ('99398','47091','1','12','$.[?(@.Label == "ProcessedBytes_TLS")].Values.first().first()','1',''), ('99399','47092','1','12','$.[?(@.Label == "ProcessedBytes_UDP")].Values.first().first()','1',''), ('99400','47093','1','12','$.[?(@.Label == "ProcessedPackets")].Values.first().first()','1',''), ('99401','47094','1','12','$.[?(@.Label == "SecurityGroupBlockedFlowCount_Inbound_ICMP")].Values.first().first()','1',''), ('99402','47095','1','12','$.[?(@.Label == "SecurityGroupBlockedFlowCount_Inbound_TCP")].Values.first().first()','1',''), ('99403','47096','1','12','$.[?(@.Label == "SecurityGroupBlockedFlowCount_Inbound_UDP")].Values.first().first()','1',''), ('99404','47097','1','12','$.[?(@.Label == "SecurityGroupBlockedFlowCount_Outbound_ICMP")].Values.first().first()','1',''), ('99405','47098','1','12','$.[?(@.Label == "SecurityGroupBlockedFlowCount_Outbound_TCP")].Values.first().first()','1',''), ('99406','47099','1','12','$.[?(@.Label == "SecurityGroupBlockedFlowCount_Outbound_UDP")].Values.first().first()','1',''), ('99407','47100','1','12','$.[?(@.Label == "TargetTLSNegotiationErrorCount")].Values.first().first()','1',''), ('99408','47101','1','12','$.[?(@.Label == "TCP_Client_Reset_Count")].Values.first().first()','1',''), ('99409','47102','1','12','$.[?(@.Label == "TCP_ELB_Reset_Count")].Values.first().first()','1',''), ('99410','47103','1','12','$.[?(@.Label == "TCP_Target_Reset_Count")].Values.first().first()','1',''), ('99411','47104','1','12','$.[?(@.Label == "UnhealthyRoutingFlowCount")].Values.first().first()','1',''), ('99412','47105','1','21','var result = []; var alarms = JSON.parse(value); alarms.forEach(function(alarm) { result.push({ ''{#ALARM_DESCRIPTION}'': alarm.AlarmDescription !== null ? alarm.AlarmDescription : ''None'' , ''{#ALARM_NAME}'': alarm.AlarmName, ''{#ALARM_PERIOD}'': alarm.Period, ''{#METRIC_NAME}'': alarm.MetricName, ''{#ALARM_SERVICE_NAMESPACE}'': alarm.Namespace !== null ? alarm.Namespace : ''None'' }); }); return JSON.stringify(result);','0',''), ('99413','47105','2','20','3h','0',''), ('99414','47106','1','20','3h','0',''), ('99415','47107','1','26','-1','1',''), ('99416','47108','1','12','$.[?(@.AlarmName == "{#ALARM_NAME}")].first()','1',''), ('99417','47109','1','12','$.[?(@.Label == "HealthyHostCount")].Values.first().first()','1',''), ('99418','47110','1','12','$.[?(@.Label == "UnHealthyHostCount")].Values.first().first()','1',''), ('99419','47111','1','12','$.StateValue','2','3'), ('99420','47111','2','21','var state = [''OK'', ''INSUFFICIENT_DATA'', ''ALARM'']; return state.indexOf(value.trim()) === -1 ? 255 : state.indexOf(value.trim());','0',''), ('99421','47112','1','12','$.StateReason','1',''), ('99422','47112','2','20','3h','0',''), ('99423','46216','1','1','1000','0',''), ('99424','22947','1','21','var filesystems = JSON.parse(value); result = filesystems.map(function (filesystem) { return { ''fsname'': filesystem.fsname, ''fstype'': filesystem.fstype }; }); return JSON.stringify(result);','0',''), ('99425','22947','2','20','1h','0',''), ('99426','47113','1','12','$.bytes.pused','0',''), ('99427','22907','1','21','var filesystems = JSON.parse(value); result = filesystems.map(function (filesystem) { return { ''fsname'': filesystem.fsname, ''fstype'': filesystem.fstype }; }); return JSON.stringify(result);','0',''), ('99428','22907','2','20','1h','0',''), ('99429','47114','1','12','$.bytes.pused','0',''), ('99430','22987','1','21','var filesystems = JSON.parse(value); result = filesystems.map(function (filesystem) { return { ''fsname'': filesystem.fsname, ''fstype'': filesystem.fstype }; }); return JSON.stringify(result);','0',''), ('99431','22987','2','20','1h','0',''), ('99432','47115','1','12','$.bytes.pused','0',''), ('99433','42273','1','21','var filesystems = JSON.parse(value); result = filesystems.map(function (filesystem) { return { ''fsname'': filesystem.fsname, ''fstype'': filesystem.fstype }; }); return JSON.stringify(result);','0',''), ('99434','42273','2','20','1h','0',''), ('99435','42276','1','21','var filesystems = JSON.parse(value); result = filesystems.map(function (filesystem) { return { ''fsname'': filesystem.fsname, ''fstype'': filesystem.fstype }; }); return JSON.stringify(result);','0',''), ('99436','42276','2','20','1h','0',''), ('99437','47116','1','12','$.bytes.free','0',''), ('99438','47117','1','12','$.bytes.free','0',''), ('99439','42362','1','21','var filesystems = JSON.parse(value); result = filesystems.map(function (filesystem) { return { ''fsname'': filesystem.fsname, ''fstype'': filesystem.fstype }; }); return JSON.stringify(result);','0',''), ('99440','42362','2','20','1h','0',''), ('99441','47118','1','12','$.bytes.free','0',''), ('99442','29430','2','21','var filesystems = JSON.parse(value); result = filesystems.map(function (filesystem) { return { ''mountpoint'': filesystem.labels.mountpoint, ''fstype'': filesystem.labels.fstype, ''device'': filesystem.labels.device }; }); return JSON.stringify(result);','0',''), ('99443','29430','3','20','1h','0',''), ('99444','29432','1','23','{__name__=~"^node_filesystem_(free|size)(?:_bytes)?$",mountpoint="{#FSNAME}"}','0',''), ('99445','29432','2','21','var free; var total; JSON.parse(value).forEach(function(metric) { if (metric[''name''] == ''node_filesystem_size_bytes''){ total = parseFloat(metric[''value'']); } else if (metric[''name''] == ''node_filesystem_free_bytes''){ free = parseFloat(metric[''value'']); } }); return (total-free);','0',''), ('99446','29433','1','23','{__name__=~"^node_filesystem_(avail|free|size)(?:_bytes)?$",mountpoint="{#FSNAME}"}','0',''), ('99447','29433','2','21','var available, free, total; JSON.parse(value).forEach(function(metric) { if (metric[''name''] == ''node_filesystem_size_bytes''){ total = parseFloat(metric[''value'']); } else if (metric[''name''] == ''node_filesystem_free_bytes''){ free = parseFloat(metric[''value'']); } else if (metric[''name''] == ''node_filesystem_avail_bytes''){ available = parseFloat(metric[''value'']); } }); if ((total - free + available) <= 0){ return 0; } else { return (100 - 100 * available / (total - free + available)); }','0',''), ('99448','47119','1','22','{__name__=~"^node_filesystem_readonly$", mountpoint="{#FSNAME}"} value ','0',''), ('99449','45481','1','29','dskPath 1.3.6.1.4.1.2021.9.1.2 0 dskDevice 1.3.6.1.4.1.2021.9.1.3 0 dskPercentNode 1.3.6.1.4.1.2021.9.1.10 0 dskTotalLow 1.3.6.1.4.1.2021.9.1.11 0 dskTotalHigh 1.3.6.1.4.1.2021.9.1.12 0 dskAvailLow 1.3.6.1.4.1.2021.9.1.13 0 dskAvailHigh 1.3.6.1.4.1.2021.9.1.14 0 dskUsedLow 1.3.6.1.4.1.2021.9.1.15 0 dskUsedHigh 1.3.6.1.4.1.2021.9.1.16 0 dskEntry 1.3.6.1.4.1.2021.9.1.1 0','0',''), ('99450','47120','1','21',E'var data = JSON.parse(value); result = data.filter(function(obj) { return obj["{\\#SNMPINDEX}"] === "{#SNMPINDEX}"; })[0]; return JSON.stringify(result);','0',''), ('99451','42439','1','21','const portionHigh = 4294967296; const obj = JSON.parse(value); const dskAvailHigh = parseInt(obj[''dskAvailHigh''], 10), dskAvailLow = parseInt(obj[''dskAvailLow''], 10), dskUsedHigh = parseInt(obj[''dskUsedHigh''], 10), dskUsedLow = parseInt(obj[''dskUsedLow''], 10); const available = (dskAvailHigh * portionHigh + dskAvailLow) * 1024, used = (dskUsedHigh * portionHigh + dskUsedLow) * 1024; if ((available + used) <= 0) { return 0; } return used / (used + available) * 100;','0',''), ('99452','47121','1','21','const portionHigh = 4294967296; const obj = JSON.parse(value); const dskAvailHigh = parseInt(obj[''dskAvailHigh''], 10), dskAvailLow = parseInt(obj[''dskAvailLow''], 10); return (dskAvailHigh * portionHigh + dskAvailLow) * 1024;','0',''), ('99453','23067','1','21','var filesystems = JSON.parse(value); result = filesystems.map(function (filesystem) { return { ''fsname'': filesystem.fsname, ''fstype'': filesystem.fstype, ''fsoptions'': filesystem.fsoptions }; }); return JSON.stringify(result);','0',''), ('99454','23067','2','20','1h','0',''), ('99455','47122','1','12','$.bytes.pused','0',''), ('99456','22867','1','21','var filesystems = JSON.parse(value); result = filesystems.map(function (filesystem) { return { ''fsname'': filesystem.fsname, ''fstype'': filesystem.fstype }; }); return JSON.stringify(result);','0',''), ('99457','22867','2','20','1h','0',''), ('99458','47123','1','12','$.bytes.pused','0',''), ('99459','23027','1','21','var filesystems = JSON.parse(value); result = filesystems.map(function (filesystem) { return { ''fsname'': filesystem.fsname, ''fstype'': filesystem.fstype }; }); return JSON.stringify(result);','0',''), ('99460','23027','2','20','1h','0',''), ('99461','47124','1','12','$.bytes.pused','0',''), ('99462','47125','1','12','$.bytes.free','0',''), ('99463','47126','1','12','$.bytes.free','0',''), ('99464','45487','1','29','hrStorageType 1.3.6.1.2.1.25.2.3.1.2 0 hrStorageDescr 1.3.6.1.2.1.25.2.3.1.3 0 hrStorageAllocationUnits 1.3.6.1.2.1.25.2.3.1.4 0 hrStorageSize 1.3.6.1.2.1.25.2.3.1.5 0 hrStorageUsed 1.3.6.1.2.1.25.2.3.1.6 0','0',''), ('99465','47127','1','21',E'var data = JSON.parse(value); result = data.filter(function(obj) { return obj["{\\#SNMPINDEX}"] === "{#SNMPINDEX}"; })[0]; return JSON.stringify(result);','0',''), ('99466','47128','1','21',E'var data = JSON.parse(value); result = data.filter(function(obj) { return obj["{\\#SNMPINDEX}"] === "{#SNMPINDEX}"; })[0]; return JSON.stringify(result);','0',''), ('99467','42592','1','21','var obj = JSON.parse(value); var total = obj["hrStorageSize"]; var used = obj["hrStorageUsed"]; if (total <= 0) { return 0; } else { return (100 * used / total); }','0',''), ('99468','42597','1','21','var obj = JSON.parse(value); var total = obj["hrStorageSize"]; var used = obj["hrStorageUsed"]; if (total <= 0) { return 0; } else { return (100 * used / total); }','0',''), ('99469','47129','1','12','$.[''health-numeric'']','2','4'), ('99470','47129','2','20','1h','0',''), ('99471','47130','1','12','$.[''health-numeric'']','2','4'), ('99472','47130','2','20','1h','0',''), ('99473','47131','1','26','-1','1',''), ('99474','47132','1','12','$.error','2',''), ('99475','47132','2','20','3h','0',''), ('99476','47133','1','12','$.performance_data.summary.navigation.dns_lookup_time','1',''), ('99477','47133','2','1','0.001','0',''), ('99478','47134','1','12','$.performance_data.summary.navigation.dom_content_loading_time','1',''), ('99479','47134','2','1','0.001','0',''), ('99480','47135','1','12','$.performance_data.summary.navigation.encoded_size','1',''), ('99481','47136','1','12','$.performance_data.summary.navigation.load_finished','1',''), ('99482','47136','2','1','0.001','0',''), ('99483','47137','1','12','$.performance_data.summary.navigation.request_time','1',''), ('99484','47137','2','1','0.001','0',''), ('99485','47138','1','12','$.performance_data.summary.navigation.resource_fetch_time','1',''), ('99486','47138','2','1','0.001','0',''), ('99487','47139','1','12','$.performance_data.summary.navigation.response_time','1',''), ('99488','47139','2','1','0.001','0',''), ('99489','47140','1','12','$.performance_data.summary.navigation.service_worker_processing_time','1',''), ('99490','47140','2','1','0.001','0',''), ('99491','47141','1','12','$.performance_data.summary.navigation.tcp_handshake_time','1',''), ('99492','47141','2','1','0.001','0',''), ('99493','47142','1','12','$.performance_data.summary.navigation.tls_negotiation_time','1',''), ('99494','47142','2','1','0.001','0',''), ('99495','47143','1','12','$.performance_data.summary.navigation.total_size','1',''), ('99496','47144','1','12','$.performance_data.summary.navigation.transferred_size','1',''), ('99497','47145','1','12','$.performance_data.summary.resource.dns_lookup_time','1',''), ('99498','47145','2','1','0.001','0',''), ('99499','47146','1','12','$.performance_data.summary.resource.dom_content_loading_time','1',''), ('99500','47146','2','1','0.001','0',''), ('99501','47147','1','12','$.performance_data.summary.resource.encoded_size','1',''), ('99502','47148','1','12','$.performance_data.summary.resource.resource_fetch_time','1',''), ('99503','47148','2','1','0.001','0',''), ('99504','47149','1','12','$.performance_data.summary.resource.load_finished','1',''), ('99505','47149','2','1','0.001','0',''), ('99506','47150','1','12','$.performance_data.summary.resource.request_time','1',''), ('99507','47150','2','1','0.001','0',''), ('99508','47151','1','12','$.performance_data.summary.resource.response_time','1',''), ('99509','47151','2','1','0.001','0',''), ('99510','47152','1','12','$.performance_data.summary.resource.service_worker_processing_time','1',''), ('99511','47152','2','1','0.001','0',''), ('99512','47153','1','12','$.performance_data.summary.resource.tcp_handshake_time','1',''), ('99513','47153','2','1','0.001','0',''), ('99514','47154','1','12','$.performance_data.summary.resource.tls_negotiation_time','1',''), ('99515','47154','2','1','0.001','0',''), ('99516','47155','1','12','$.performance_data.summary.resource.total_size','1',''), ('99517','47156','1','12','$.performance_data.summary.resource.transferred_size','1',''), ('99518','47157','1','12','$.screenshot','1',''), ('99519','40809','1','20','4h','0',''), ('99520','42165','1','20','4h','0',''), ('99521','47158','1','21','var data = JSON.parse(value).data; var result = {}; data.forEach(function(item) { var attributes = item["{#JMXATTR}"].split("."); var license = attributes[0].replace("jira-",""); var property = attributes.slice(1).join(''_''); if (!result[license]) { result[license] = {''properties'': {} }; } result[license][''properties''][property] = item["{#JMXVALUE}"]; }); return JSON.stringify(result);','0',''), ('99522','47161','1','10','','0',''), ('99523','47162','1','10','','0',''), ('99524','47169','1','9','','0',''), ('99525','47170','1','9','','0',''), ('99526','47171','1','9','','0',''), ('99527','47172','1','9','','0',''), ('99528','47186','1','9','','0',''), ('99529','47191','1','21','var data = JSON.parse(value); var lld_form = []; for (var key in data) { lld_form.push({"license": key}); } return JSON.stringify(lld_form);','0',''), ('99530','47191','2','20','1h','0',''), ('99531','47192','1','1','0.001','0',''), ('99532','47193','1','1','0.001','0',''), ('99533','47194','1','1','0.001','0',''), ('99534','47195','1','6','','0',''), ('99535','47196','1','9','','0',''), ('99536','47197','1','12','$.{#LICENSE.TYPE}.properties.current_user_count','0',''), ('99537','47198','1','12','$.{#LICENSE.TYPE}.properties.max_user_count','0',''), ('99538','40183','1','20','12h','0',''), ('99539','40185','2','20','12h','0',''), ('99540','47201','1','12','$.data.process[''browser poller''].busy.avg','3','No "browser poller" processes started.'), ('99541','47202','1','12','$.data.process[''internal poller''].busy.avg','3','No "internal poller" processes started.'), ('99542','39806','1','21','var hacluster = JSON.parse(value); result = hacluster.map(function (hanode) { return { ''id'': hanode.id, ''name'': hanode.name }; }); return JSON.stringify(result);','0',''), ('99543','39806','2','20','1h','0',''), ('99544','44057','1','21','var proxies = JSON.parse(value); result = proxies.map(function (proxy) { return { ''name'': proxy.name, ''proxy_group'': proxy.proxy_group }; }); return JSON.stringify(result);','0',''), ('99545','44057','2','20','1h','0',''), ('99546','39807','1','21','var hacluster = JSON.parse(value); result = hacluster.map(function (hanode) { return { ''id'': hanode.id, ''name'': hanode.name }; }); return JSON.stringify(result);','0',''), ('99547','39807','2','20','1h','0',''), ('99548','44058','1','21','var proxies = JSON.parse(value); result = proxies.map(function (proxy) { return { ''name'': proxy.name, ''proxy_group'': proxy.proxy_group }; }); return JSON.stringify(result);','0',''), ('99549','44058','2','20','1h','0',''), ('99550','47211','1','12','$.data.process[''browser poller''].busy.avg','3','No "browser poller" processes started.'), ('99551','47212','1','12','$.data.process[''configuration syncer worker''].busy.avg','0',''), ('99552','47213','1','12','$.data.process[''internal poller''].busy.avg','3','No "internal poller" processes started.'), ('99553','47214','1','12','$.data.process[''proxy group manager''].busy.avg','0',''), ('99554','39816','2','21','var hacluster = JSON.parse(value); result = hacluster.map(function (hanode) { return { ''id'': hanode.id, ''name'': hanode.name }; }); return JSON.stringify(result);','0',''), ('99555','39816','3','20','1h','0',''), ('99556','44082','1','21','var proxies = JSON.parse(value); result = proxies.map(function (proxy) { return { ''name'': proxy.name, ''proxy_group'': proxy.proxy_group }; }); return JSON.stringify(result);','0',''), ('99557','44082','2','20','1h','0',''), ('99558','43725','2','20','1h','0',''), ('99559','43726','2','20','1h','0',''), ('99560','43730','2','20','1h','0',''), ('99561','43731','2','20','1h','0',''), ('99562','43752','2','20','1h','0',''), ('99563','43753','2','20','1h','0',''), ('99564','43757','2','20','1h','0',''), ('99565','43758','2','20','1h','0',''), ('99566','47216','1','12','$.metrics.VmAvailabilityMetric.average','1',''), ('99567','47217','1','12','$.metrics.DataDiskLatency.average','1',''), ('99568','47217','2','1','0.001','0',''), ('99569','47218','1','12','$.metrics.OSDiskLatency.average','1',''), ('99570','47218','2','1','0.001','0',''), ('99571','47219','1','12','$.metrics.TempDiskLatency.average','1',''), ('99572','47219','2','1','0.001','0',''), ('99573','47220','1','12','$.metrics.TempDiskQueueDepth.average','1',''), ('99574','47221','1','12','$.metrics.TempDiskReadBytessec.average','1',''), ('99575','47222','1','12','$.metrics.TempDiskReadOperationsSec.average','1',''), ('99576','47223','1','12','$.metrics.TempDiskWriteBytessec.average','1',''), ('99577','47224','1','12','$.metrics.TempDiskWriteOperationsSec.average','1',''), ('99578','47225','1','12','$.metrics.VmAvailabilityMetric.average','1',''), ('99579','47225','2','20','1h','0',''), ('99580','47226','1','12','$.health.summary','1',''), ('99581','47226','2','20','1h','0',''), ('99582','47227','1','12','$.health.availabilityState','2','3'), ('99583','47227','2','25','Available 0','0',''), ('99584','47227','3','25','Degraded 1','0',''), ('99585','47227','4','25','Unavailable 2','0',''), ('99586','47227','5','25','Unknown 3','0',''), ('99587','47227','6','13','0 3','2','3'), ('99588','47227','7','20','1h','0',''), ('99589','47228','1','12','$.metrics.CPUCreditsConsumed.average','1',''), ('99590','47228','2','20','1h','0',''), ('99591','47229','1','12','$.metrics.CPUCreditsRemaining.average','1',''), ('99592','47229','2','20','1h','0',''), ('99593','47230','1','12','$.metrics.PercentageCPU.average','1',''), ('99594','47230','2','20','1h','0',''), ('99595','47231','1','12','$.metrics.DataDiskMaxBurstBandwidth.average','1',''), ('99596','47231','2','20','1h','0',''), ('99597','47232','1','12','$.metrics.DataDiskUsedBurstBPSCreditsPercentage.average','1',''), ('99598','47232','2','20','1h','0',''), ('99599','47233','1','12','$.metrics.DataDiskBandwidthConsumedPercentage.average','1',''), ('99600','47233','2','20','1h','0',''), ('99601','47234','1','12','$.metrics.DataDiskTargetBandwidth.average','1',''), ('99602','47234','2','20','1h','0',''), ('99603','47235','1','12','$.metrics.DataDiskMaxBurstIOPS.average','1',''), ('99604','47235','2','20','1h','0',''), ('99605','47236','1','12','$.metrics.DataDiskUsedBurstIOCreditsPercentage.average','1',''), ('99606','47236','2','20','1h','0',''), ('99607','47237','1','12','$.metrics.DataDiskIOPSConsumedPercentage.average','1',''), ('99608','47237','2','20','1h','0',''), ('99609','47238','1','12','$.metrics.DataDiskTargetIOPS.average','1',''), ('99610','47238','2','20','1h','0',''), ('99611','47239','1','12','$.metrics.DataDiskQueueDepth.average','1',''), ('99612','47239','2','20','1h','0',''), ('99613','47240','1','12','$.metrics.DataDiskReadBytessec.average','1',''), ('99614','47240','2','20','1h','0',''), ('99615','47241','1','12','$.metrics.DataDiskReadOperationsSec.average','1',''), ('99616','47241','2','20','1h','0',''), ('99617','47242','1','12','$.metrics.DataDiskWriteBytessec.average','1',''), ('99618','47242','2','20','1h','0',''), ('99619','47243','1','12','$.metrics.DataDiskWriteOperationsSec.average','1',''), ('99620','47243','2','20','1h','0',''), ('99621','47244','1','12','$.error','2',''), ('99622','47244','2','20','1h','0',''), ('99623','47245','1','12','$.metrics.DiskReadBytes.total','1',''), ('99624','47245','2','20','1h','0',''), ('99625','47246','1','12','$.metrics.DiskReadOperationsSec.average','1',''), ('99626','47246','2','20','1h','0',''), ('99627','47247','1','12','$.metrics.DiskWriteBytes.total','1',''), ('99628','47247','2','20','1h','0',''), ('99629','47248','1','12','$.metrics.DiskWriteOperationsSec.average','1',''), ('99630','47248','2','20','1h','0',''), ('99631','47249','1','12','$.metrics.InboundFlows.average','1',''), ('99632','47249','2','20','1h','0',''), ('99633','47250','1','12','$.metrics.InboundFlowsMaximumCreationRate.average','1',''), ('99634','47250','2','20','1h','0',''), ('99635','47251','1','12','$.metrics.OutboundFlows.average','1',''), ('99636','47251','2','20','1h','0',''), ('99637','47252','1','12','$.metrics.OutboundFlowsMaximumCreationRate.average','1',''), ('99638','47252','2','20','1h','0',''), ('99639','47253','1','12','$.metrics.NetworkInTotal.total','1',''), ('99640','47254','1','12','$.metrics.NetworkOutTotal.total','1',''), ('99641','47255','1','12','$.metrics.OSDiskUsedBurstBPSCreditsPercentage.average','1',''), ('99642','47255','2','20','1h','0',''), ('99643','47256','1','12','$.metrics.OSDiskBandwidthConsumedPercentage.average','1',''), ('99644','47256','2','20','1h','0',''), ('99645','47257','1','12','$.metrics.OSDiskMaxBurstBandwidth.average','1',''), ('99646','47257','2','20','1h','0',''), ('99647','47258','1','12','$.metrics.OSDiskTargetBandwidth.average','1',''), ('99648','47258','2','20','1h','0',''), ('99649','47259','1','12','$.metrics.OSDiskUsedBurstIOCreditsPercentage.average','1',''), ('99650','47259','2','20','1h','0',''), ('99651','47260','1','12','$.metrics.OSDiskIOPSConsumedPercentage.average','1',''), ('99652','47260','2','20','1h','0',''), ('99653','47261','1','12','$.metrics.OSDiskMaxBurstIOPS.average','1',''), ('99654','47261','2','20','1h','0',''), ('99655','47262','1','12','$.metrics.OSDiskTargetIOPS.average','1',''), ('99656','47262','2','20','1h','0',''), ('99657','47263','1','12','$.metrics.OSDiskQueueDepth.average','1',''), ('99658','47263','2','20','1h','0',''), ('99659','47264','1','12','$.metrics.OSDiskReadBytessec.average','1',''), ('99660','47264','2','20','1h','0',''), ('99661','47265','1','12','$.metrics.OSDiskReadOperationsSec.average','1',''), ('99662','47265','2','20','1h','0',''), ('99663','47266','1','12','$.metrics.OSDiskWriteBytessec.average','1',''), ('99664','47266','2','20','1h','0',''), ('99665','47267','1','12','$.metrics.OSDiskWriteOperationsSec.average','1',''), ('99666','47267','2','20','1h','0',''), ('99667','47268','1','12','$.metrics.PremiumDataDiskCacheReadHit.average','1',''), ('99668','47268','2','20','1h','0',''), ('99669','47269','1','12','$.metrics.PremiumDataDiskCacheReadMiss.average','1',''), ('99670','47269','2','20','1h','0',''), ('99671','47270','1','12','$.metrics.PremiumOSDiskCacheReadHit.average','1',''), ('99672','47270','2','20','1h','0',''), ('99673','47271','1','12','$.metrics.PremiumOSDiskCacheReadMiss.average','1',''), ('99674','47271','2','20','1h','0',''), ('99675','47272','1','12','$.metrics.VMCachedBandwidthConsumedPercentage.average','1',''), ('99676','47272','2','20','1h','0',''), ('99677','47273','1','12','$.metrics.VMCachedIOPSConsumedPercentage.average','1',''), ('99678','47273','2','20','1h','0',''), ('99679','47274','1','12','$.capacity','0',''), ('99680','47274','2','20','1h','0',''), ('99681','47275','1','12','$.metrics.AvailableMemoryBytes.average','1',''), ('99682','47275','2','20','1h','0',''), ('99683','47276','1','12','$.metrics.VMUncachedBandwidthConsumedPercentage.average','1',''), ('99684','47276','2','20','1h','0',''), ('99685','47277','1','12','$.metrics.VMUncachedIOPSConsumedPercentage.average','1',''), ('99686','47277','2','20','1h','0',''), ('99687','47278','1','12','$.resources.value','0',''), ('99688','47278','2','20','6h','0',''), ('99689','47279','1','21','var edges = JSON.parse(value).edges, token = ''{$VELOCLOUD.TOKEN}'', url = ''{$VELOCLOUD.URL}''; var request = new HttpRequest(); request.addHeader(''Content-Type: application/json''); request.addHeader(''Authorization: Token '' + token); var response, error_msg = '''', edges = [], edgeSDWan = [], edgeSDWanPath = []; function getHttpData(url, body) { response = request.post(url, body); Zabbix.log(4, ''[ SD-WAN API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from SD-WAN API. Check debug log for more information.''; } } if (request.getStatus() !== 200) { if (response.error && response.error.message) { throw response.error.message; } else { throw ''Failed to receive data: invalid response status code.''; } } if (typeof (response) !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object.''; } return response; }; try { if (token === ''{'' + ''$VELOCLOUD.TOKEN}'') { throw ''Please change {'' + ''$VELOCLOUD.TOKEN} macro with the proper value.''; } if (url.indexOf(''http://'') === -1 && url.indexOf(''https://'') === -1) { url = ''https://'' + url; } if (!url.endsWith(''/'')) { url += ''/''; } if (!Array.isArray(edges)) { throw ''Cannot process edges SDWans: edges is not an array.''; } for (var i in edges) { responseEdgeSDWan = getHttpData(url + ''portal/rest/edge/getEdgeSDWANPeers'', JSON.stringify({ enterpriseId: edges[i].enterpriseId, edgeId: edges[i].id })); if (!Array.isArray(responseEdgeSDWan)) { throw ''Cannot process edges SDWan Path: edges SDWans is not an array.''; } for (var e in responseEdgeSDWan) { data = { ''enterpriseId'': edges[i].enterpriseId, ''edgeId'': edges[i].id, ''peerLogicalId'': responseEdgeSDWan[e].deviceLogicalId }; responseEdgeSDWanPath = getHttpData(url + ''portal/rest/metrics/getEdgeSDWANPeerPathMetrics'', JSON.stringify(data)); edgeSDWanPath = edgeSDWanPath.concat(responseEdgeSDWanPath); responseEdgeSDWan[e].edgeId = edges[i].id; responseEdgeSDWan[e].edgeName = edges[i].name; responseEdgeSDWan[e].enterpriseId = edges[i].enterpriseId; } edgeSDWan = edgeSDWan.concat(responseEdgeSDWan); } } catch (error) { error_msg = error; }; return JSON.stringify({ ''edgeSDWan'': edgeSDWan, ''edgeSDWanPath'': edgeSDWanPath, ''error'': error_msg.toString() });','0',''), ('99690','47280','1','12','$.error','0',''), ('99691','47280','2','20','1h','0',''), ('99692','47281','1','12','$.items[*].status.containerStatuses[?(@.ready == ''true'')].length()','0',''), ('99693','47282','1','26','-1','1',''), ('99694','47283','1','26','-1','1',''), ('99695','47284','1','12','$.error','2',''), ('99696','47284','2','20','3h','0',''), ('99697','47285','1','12','$.[?(@.Label == "AsyncEventsDropped")].Values.first().first()','1',''), ('99698','47286','1','12','$.[?(@.Label == "AsyncEventsReceived")].Values.first().first()','1',''), ('99699','47287','1','12','$.[?(@.Label == "AsyncEventAge")].Values.first().first()','1',''), ('99700','47287','2','1','0.001','0',''), ('99701','47288','1','12','$.[?(@.Label == "ConcurrentExecutions")].Values.first().first()','1',''), ('99702','47289','1','12','$.[?(@.Label == "DeadLetterErrors")].Values.first().first()','1',''), ('99703','47290','1','12','$.[?(@.Label == "Duration")].Values.first().first()','1',''), ('99704','47290','2','1','0.001','0',''), ('99705','47291','1','12','$.[?(@.Label == "Errors")].Values.first().first()','1',''), ('99706','47292','1','12','$.[?(@.Label == "Invocations")].Values.first().first()','1',''), ('99707','47293','1','12','$.error','2',''), ('99708','47293','2','20','3h','0',''), ('99709','47294','1','12','$.[?(@.Label == "Throttles")].Values.first().first()','1',''), ('99710','47295','1','12','$.[?(@.Label == "UnreservedConcurrentExecutions")].Values.first().first()','1',''), ('99711','47296','1','21','var result = []; var alarms = JSON.parse(value); alarms.forEach(function(alarm) { result.push({ ''{#ALARM_DESCRIPTION}'': alarm.AlarmDescription !== null ? alarm.AlarmDescription : ''None'' , ''{#ALARM_NAME}'': alarm.AlarmName, ''{#ALARM_PERIOD}'': alarm.Period, ''{#METRIC_NAME}'': alarm.MetricName, ''{#ALARM_SERVICE_NAMESPACE}'': alarm.Namespace !== null ? alarm.Namespace : ''None'' }); }); return JSON.stringify(result);','0',''), ('99712','47296','2','20','3h','0',''), ('99713','47297','1','12','$.[?(@.AlarmName == "{#ALARM_NAME}")].first()','1',''), ('99714','47298','1','12','$.StateValue','2','3'), ('99715','47298','2','21','var state = [''OK'', ''INSUFFICIENT_DATA'', ''ALARM'']; return state.indexOf(value.trim()) === -1 ? 255 : state.indexOf(value.trim());','0',''), ('99716','47299','1','12','$.StateReason','1',''), ('99717','47299','2','20','3h','0',''), ('99718','47301','1','18',E'API rate limit exceeded \\0','1',''), ('99719','47302','1','18',E'API rate limit exceeded \\0','1',''), ('99720','47303','1','18',E'API rate limit exceeded \\0','1',''), ('99721','47303','2','20','6h','0',''), ('99722','47305','1','18',E'API rate limit exceeded \\0','1',''), ('99723','47306','1','18',E'API rate limit exceeded \\0','1',''), ('99724','47306','2','20','6h','0',''), ('99725','47307','1','18',E'API rate limit exceeded \\0','1',''), ('99726','47308','1','12','$.issues.closed','0',''), ('99727','47309','1','12','$.issues.open','0',''), ('99728','47310','1','12','$.issues.total','0',''), ('99729','47311','1','12','$.pr.closed','0',''), ('99730','47312','1','12','$.pr.open','0',''), ('99731','47313','1','12','$.pr.total','0',''), ('99732','47314','1','12','$.data..forks_count.first()','0',''), ('99733','47314','2','20','3h','0',''), ('99734','47315','1','12','$.error','2',''), ('99735','47315','2','20','3h','0',''), ('99736','47316','1','12','$.data..fork.first()','0',''), ('99737','47316','2','6','','0',''), ('99738','47316','3','20','6h','0',''), ('99739','47317','1','12','$.data..size.first()','0',''), ('99740','47317','2','1','1024','0',''), ('99741','47317','3','20','3h','0',''), ('99742','47318','1','12','$.data..stargazers_count.first()','0',''), ('99743','47318','2','20','3h','0',''), ('99744','47319','1','12','$.data..subscribers_count.first()','0',''), ('99745','47319','2','20','3h','0',''), ('99746','47320','1','12','$.headers[''x-ratelimit-limit'']','0',''), ('99747','47320','2','20','3h','0',''), ('99748','47321','1','12','$.headers[''x-ratelimit-used'']','0',''), ('99749','47322','1','21','const data = JSON.parse(value); const requests_limit = data.headers[''x-ratelimit-limit''], requests_used = data.headers[''x-ratelimit-used'']; return requests_used / requests_limit * 100;','0',''), ('99750','47323','1','12','$.error','2',''), ('99751','47323','2','20','3h','0',''), ('99752','47324','1','12','$.data','0',''), ('99753','47325','1','21','return JSON.stringify(JSON.parse(value).data[0].zbx_community_profile ? [{''{#SINGLETON}'': ''''}] : []);','0',''), ('99754','47325','2','20','6h','0',''), ('99755','47326','1','12','$.data','1',''), ('99756','47326','2','21','var runners = JSON.parse(value); result = runners.map(function (runner) { return { ''name'': runner.name, ''id'': runner.id, ''os'': runner.os }; }); return JSON.stringify(result);','0',''), ('99757','47326','3','20','1h','0',''), ('99758','47327','1','12','$.data','0',''), ('99759','47328','1','18',E'API rate limit exceeded \\0','1',''), ('99760','47328','2','20','6h','0',''), ('99761','47329','1','18',E'API rate limit exceeded \\0','1',''), ('99762','47329','2','12','$.data.first()','0',''), ('99763','47330','1','12','$.data..zbx_community_profile.health_percentage.first()','0',''), ('99764','47330','2','20','1h','0',''), ('99765','47331','1','12','$.data[?(@.id == "{#RUNNER_ID}")].busy.first()','0',''), ('99766','47331','2','6','','0',''), ('99767','47331','3','20','1h','0',''), ('99768','47332','1','12','$.data[?(@.id == "{#RUNNER_ID}")].status.first()','0',''), ('99769','47332','2','21','const idx = [ ''offline'', ''online'' ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('99770','47332','3','20','1h','0',''), ('99771','47333','1','12','$.conclusion','0',''), ('99772','47333','2','21','if (value !== ''null'') { const idx = [ ''success'', ''failure'', ''neutral'', ''cancelled'', ''skipped'', ''timed_out'', ''action_required'', ].indexOf(value); return idx !== -1 ? idx : 10; } return null;','0',''), ('99773','47333','3','20','1h','0',''), ('99774','47334','1','21','const data = JSON.parse(value); const start_date = Math.floor(new Date(data.run_started_at) / 1000), update_date = Math.floor(new Date(data.updated_at) / 1000); return (update_date - start_date);','0',''), ('99775','47334','2','20','3h','0',''), ('99776','47335','1','12','$.run_started_at','0',''), ('99777','47335','2','21','return Math.floor(new Date(value) / 1000);','0',''), ('99778','47335','3','20','3h','0',''), ('99779','47336','1','12','$.status','0',''), ('99780','47336','2','21','const idx = [ ''queued'', ''in_progress'', ''completed'' ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('99781','47337','1','12','$.updated_at','0',''), ('99782','47337','2','21','return Math.floor(new Date(value) / 1000);','0',''), ('99783','47337','3','20','3h','0',''), ('99784','47344','1','12','$.metrics.getOffice365ServicesUserCounts[0].exchangeActive','1',''), ('99785','47344','2','20','1d','0',''), ('99786','47345','1','12','$.metrics.getOffice365ServicesUserCounts[0].exchangeInactive','1',''), ('99787','47345','2','20','1d','0',''), ('99788','47346','1','12','$.metrics.getOffice365ServicesUserCounts[0].office365Active','1',''), ('99789','47346','2','20','1d','0',''), ('99790','47347','1','12','$.metrics.getOffice365ServicesUserCounts[0].office365Inactive','1',''), ('99791','47347','2','20','1d','0',''), ('99792','47348','1','12','$.metrics.getOffice365ServicesUserCounts[0].oneDriveActive','1',''), ('99793','47348','2','20','1d','0',''), ('99794','47349','1','12','$.metrics.getOffice365ServicesUserCounts[0].oneDriveInactive','1',''), ('99795','47349','2','20','1d','0',''), ('99796','47350','1','12','$.metrics.getOffice365ServicesUserCounts[0].reportRefreshDate','1',''), ('99797','47350','2','20','1d','0',''), ('99798','47351','1','12','$.metrics.getOffice365ServicesUserCounts[0].sharePointActive','1',''), ('99799','47351','2','20','1d','0',''), ('99800','47352','1','12','$.metrics.getOffice365ServicesUserCounts[0].sharePointInactive','1',''), ('99801','47352','2','20','1d','0',''), ('99802','47353','1','12','$.metrics.getOffice365ServicesUserCounts[0].skypeForBusinessActive','1',''), ('99803','47353','2','20','1d','0',''), ('99804','47354','1','12','$.metrics.getOffice365ServicesUserCounts[0].skypeForBusinessInactive','1',''), ('99805','47354','2','20','1d','0',''), ('99806','47355','1','12','$.metrics.getOffice365ServicesUserCounts[0].teamsActive','1',''), ('99807','47355','2','20','1d','0',''), ('99808','47356','1','12','$.metrics.getOffice365ServicesUserCounts[0].teamsInactive','1',''), ('99809','47356','2','20','1d','0',''), ('99810','47357','1','12','$.metrics.getOffice365ServicesUserCounts[0].yammerActive','1',''), ('99811','47357','2','20','1d','0',''), ('99812','47358','1','12','$.metrics.getOffice365ServicesUserCounts[0].yammerInactive','1',''), ('99813','47358','2','20','1d','0',''), ('99814','47359','1','12','$.error','2',''), ('99815','47359','2','20','1h','0',''), ('99816','47360','1','12','$.metrics.getM365AppUserCounts[0].userCounts[0].excel','1',''), ('99817','47360','2','20','1d','0',''), ('99818','47361','1','12','$.metrics.getM365AppUserCounts[0].userCounts[0].oneNote','1',''), ('99819','47361','2','20','1d','0',''), ('99820','47362','1','12','$.metrics.getM365AppUserCounts[0].userCounts[0].outlook','1',''), ('99821','47362','2','20','1d','0',''), ('99822','47363','1','12','$.metrics.getM365AppUserCounts[0].userCounts[0].powerPoint','1',''), ('99823','47363','2','20','1d','0',''), ('99824','47364','1','12','$.metrics.getM365AppUserCounts[0].userCounts[0].reportDate','1',''), ('99825','47364','2','20','1d','0',''), ('99826','47365','1','12','$.metrics.getM365AppUserCounts[0].userCounts[0].teams','1',''), ('99827','47365','2','20','1d','0',''), ('99828','47366','1','12','$.metrics.getM365AppUserCounts[0].userCounts[0].word','1',''), ('99829','47366','2','20','1d','0',''), ('99830','47367','1','12','$.metrics.getM365AppPlatformUserCounts[0].userCounts[0].mac','1',''), ('99831','47367','2','20','1d','0',''), ('99832','47368','1','12','$.metrics.getM365AppPlatformUserCounts[0].userCounts[0].mobile','1',''), ('99833','47368','2','20','1d','0',''), ('99834','47369','1','12','$.metrics.getM365AppPlatformUserCounts[0].userCounts[0].reportDate','1',''), ('99835','47369','2','20','1d','0',''), ('99836','47370','1','12','$.metrics.getM365AppPlatformUserCounts[0].userCounts[0].web','1',''), ('99837','47370','2','20','1d','0',''), ('99838','47371','1','12','$.metrics.getM365AppPlatformUserCounts[0].userCounts[0].windows','1',''), ('99839','47371','2','20','1d','0',''), ('99840','47372','1','12','$.metrics.getOffice365ActiveUserCounts[6].exchange','1',''), ('99841','47372','2','20','1d','0',''), ('99842','47373','1','12','$.metrics.getOffice365ActiveUserCounts[6].office365','1',''), ('99843','47373','2','20','1d','0',''), ('99844','47374','1','12','$.metrics.getOffice365ActiveUserCounts[6].oneDrive','1',''), ('99845','47374','2','20','1d','0',''), ('99846','47375','1','12','$.metrics.getOffice365ActiveUserCounts[6].reportDate','1',''), ('99847','47375','2','20','1d','0',''), ('99848','47376','1','12','$.metrics.getOffice365ActiveUserCounts[6].sharePoint','1',''), ('99849','47376','2','20','1d','0',''), ('99850','47377','1','12','$.metrics.getOffice365ActiveUserCounts[6].skypeForBusiness','1',''), ('99851','47377','2','20','1d','0',''), ('99852','47378','1','12','$.metrics.getOffice365ActiveUserCounts[6].teams','1',''), ('99853','47378','2','20','1d','0',''), ('99854','47379','1','12','$.metrics.getOffice365ActiveUserCounts[6].yammer','1',''), ('99855','47379','2','20','1d','0',''), ('99856','47380','1','12','$.error','2',''), ('99857','47380','2','20','1h','0',''), ('99858','47381','1','12','$.metrics.getOneDriveActivityFileCounts[0].reportDate','1',''), ('99859','47381','2','20','1d','0',''), ('99860','47382','1','12','$.metrics.getOneDriveActivityFileCounts[0].sharedExternally','1',''), ('99861','47382','2','20','1d','0',''), ('99862','47383','1','12','$.metrics.getOneDriveActivityFileCounts[0].sharedInternally','1',''), ('99863','47383','2','20','1d','0',''), ('99864','47384','1','12','$.metrics.getOneDriveActivityFileCounts[0].synced','1',''), ('99865','47384','2','20','1d','0',''), ('99866','47385','1','12','$.metrics.getOneDriveActivityFileCounts[0].viewedOrEdited','1',''), ('99867','47385','2','20','1d','0',''), ('99868','47386','1','12','$.metrics.getOneDriveUsageFileCounts[0].active','1',''), ('99869','47386','2','20','1d','0',''), ('99870','47387','1','12','$.metrics.getOneDriveUsageFileCounts[0].reportDate','1',''), ('99871','47387','2','20','1d','0',''), ('99872','47388','1','12','$.metrics.getOneDriveUsageFileCounts[0].total','1',''), ('99873','47388','2','20','1d','0',''), ('99874','47389','1','12','$.metrics.getOneDriveUsageAccountCounts[0].active','1',''), ('99875','47389','2','20','1d','0',''), ('99876','47390','1','12','$.metrics.getOneDriveUsageAccountCounts[0].reportDate','1',''), ('99877','47390','2','20','1d','0',''), ('99878','47391','1','12','$.metrics.getOneDriveUsageAccountCounts[0].total','1',''), ('99879','47391','2','20','1d','0',''), ('99880','47392','1','12','$.metrics.getOneDriveUsageStorage[0].reportDate','1',''), ('99881','47392','2','20','1d','0',''), ('99882','47393','1','12','$.metrics.getOneDriveUsageStorage[?(@.siteType == "All")].storageUsedInBytes.first()','1',''), ('99883','47393','2','20','1d','0',''), ('99884','47394','1','12','$.metrics.getOneDriveActivityUserCounts[0].reportDate','1',''), ('99885','47394','2','20','1d','0',''), ('99886','47395','1','12','$.metrics.getOneDriveActivityUserCounts[0].sharedExternally','1',''), ('99887','47395','2','20','1d','0',''), ('99888','47396','1','12','$.metrics.getOneDriveActivityUserCounts[0].sharedInternally','1',''), ('99889','47396','2','20','1d','0',''), ('99890','47397','1','12','$.metrics.getOneDriveActivityUserCounts[0].synced','1',''), ('99891','47397','2','20','1d','0',''), ('99892','47398','1','12','$.metrics.getOneDriveActivityUserCounts[0].viewedOrEdited','1',''), ('99893','47398','2','20','1d','0',''), ('99894','47399','1','12','$.metrics.getEmailActivityCounts[0].meetingCreated','1',''), ('99895','47399','2','20','1d','0',''), ('99896','47400','1','12','$.metrics.getEmailActivityCounts[0].meetingInteracted','1',''), ('99897','47400','2','20','1d','0',''), ('99898','47401','1','12','$.metrics.getEmailActivityCounts[0].read','1',''), ('99899','47401','2','20','1d','0',''), ('99900','47402','1','12','$.metrics.getEmailActivityCounts[0].receive','1',''), ('99901','47402','2','20','1d','0',''), ('99902','47403','1','12','$.metrics.getEmailActivityCounts[0].reportRefreshDate','1',''), ('99903','47403','2','20','1d','0',''), ('99904','47404','1','12','$.metrics.getEmailActivityCounts[0].send','1',''), ('99905','47404','2','20','1d','0',''), ('99906','47405','1','12','$.error','2',''), ('99907','47405','2','20','1h','0',''), ('99908','47406','1','12','$.metrics.getMailboxUsageMailboxCounts[0].active','1',''), ('99909','47406','2','20','1d','0',''), ('99910','47407','1','21','var data=JSON.parse(value); return data.metrics.getMailboxUsageMailboxCounts[0].active * 100 / data.metrics.getMailboxUsageMailboxCounts[0].total;','0',''), ('99911','47407','2','20','1d','0',''), ('99912','47408','1','12','$.metrics.getMailboxUsageMailboxCounts[0].reportDate','1',''), ('99913','47408','2','20','1d','0',''), ('99914','47409','1','12','$.metrics.getMailboxUsageMailboxCounts[0].total','1',''), ('99915','47409','2','20','1d','0',''), ('99916','47410','1','12','$.metrics.getMailboxUsageStorage[0].reportDate','1',''), ('99917','47410','2','20','1d','0',''), ('99918','47411','1','12','$.metrics.getMailboxUsageStorage[0].storageUsedInBytes','1',''), ('99919','47411','2','20','1d','0',''), ('99920','47412','1','12','$.metrics.getEmailAppUsageUserCounts[6].imap4App','1',''), ('99921','47412','2','20','1d','0',''), ('99922','47413','1','12','$.metrics.getEmailAppUsageUserCounts[6].outlookForMac','1',''), ('99923','47413','2','20','1d','0',''), ('99924','47414','1','12','$.metrics.getEmailAppUsageUserCounts[6].mailForMac','1',''), ('99925','47414','2','20','1d','0',''), ('99926','47415','1','12','$.metrics.getEmailActivityUserCounts[0].meetingCreated','1',''), ('99927','47415','2','20','1d','0',''), ('99928','47416','1','12','$.metrics.getEmailActivityUserCounts[0].meetingInteracted','1',''), ('99929','47416','2','20','1d','0',''), ('99930','47417','1','12','$.metrics.getEmailAppUsageUserCounts[6].outlookForMobile','1',''), ('99931','47417','2','20','1d','0',''), ('99932','47418','1','12','$.metrics.getEmailAppUsageUserCounts[6].pop3App','1',''), ('99933','47418','2','20','1d','0',''), ('99934','47419','1','12','$.metrics.getEmailActivityUserCounts[0].read','1',''), ('99935','47419','2','20','1d','0',''), ('99936','47420','1','12','$.metrics.getEmailActivityUserCounts[0].receive','1',''), ('99937','47420','2','20','1d','0',''), ('99938','47421','1','12','$.metrics.getEmailActivityUserCounts[0].reportRefreshDate','1',''), ('99939','47421','2','20','1d','0',''), ('99940','47422','1','12','$.metrics.getEmailAppUsageUserCounts[6].reportDate','1',''), ('99941','47422','2','20','1d','0',''), ('99942','47423','1','12','$.metrics.getEmailActivityUserCounts[0].send','1',''), ('99943','47423','2','20','1d','0',''), ('99944','47424','1','12','$.metrics.getEmailAppUsageUserCounts[6].smtpApp','1',''), ('99945','47424','2','20','1d','0',''), ('99946','47425','1','12','$.metrics.getEmailAppUsageUserCounts[6].outlookForWeb','1',''), ('99947','47425','2','20','1d','0',''), ('99948','47426','1','12','$.metrics.getEmailAppUsageUserCounts[6].outlookForWindows','1',''), ('99949','47426','2','20','1d','0',''), ('99950','47427','1','12','$.error','2',''), ('99951','47427','2','20','1h','0',''), ('99952','47428','1','12','$.error','2',''), ('99953','47428','2','20','1h','0',''), ('99954','47429','1','12','$.metrics.getSharePointActivityFileCounts[0].reportDate','1',''), ('99955','47429','2','20','1d','0',''), ('99956','47430','1','12','$.metrics.getSharePointActivityFileCounts[0].sharedExternally','1',''), ('99957','47430','2','20','1d','0',''), ('99958','47431','1','12','$.metrics.getSharePointActivityFileCounts[0].sharedInternally','1',''), ('99959','47431','2','20','1d','0',''), ('99960','47432','1','12','$.metrics.getSharePointActivityFileCounts[0].synced','1',''), ('99961','47432','2','20','1d','0',''), ('99962','47433','1','12','$.metrics.getSharePointActivityFileCounts[0].viewedOrEdited','1',''), ('99963','47433','2','20','1d','0',''), ('99964','47434','1','12','$.metrics.getSharePointSiteUsageFileCounts[0].active','1',''), ('99965','47434','2','20','1d','0',''), ('99966','47435','1','12','$.metrics.getSharePointSiteUsageFileCounts[0].reportDate','1',''), ('99967','47435','2','20','1d','0',''), ('99968','47436','1','12','$.metrics.getSharePointSiteUsageFileCounts[0].total','1',''), ('99969','47436','2','20','1d','0',''), ('99970','47437','1','12','$.metrics.getSharePointSiteUsagePages[0].pageViewCount','1',''), ('99971','47437','2','20','1d','0',''), ('99972','47438','1','12','$.metrics.getSharePointSiteUsagePages[0].reportDate','1',''), ('99973','47438','2','20','1d','0',''), ('99974','47439','1','12','$.metrics.getSharePointActivityPages[0].visitedPageCount','1',''), ('99975','47439','2','20','1d','0',''), ('99976','47440','1','12','$.metrics.getSharePointActivityPages[0].reportDate','1',''), ('99977','47440','2','20','1d','0',''), ('99978','47441','1','12','$.metrics.getSharePointSiteUsageSiteCounts[0].reportDate','1',''), ('99979','47441','2','20','1d','0',''), ('99980','47442','1','12','$.metrics.getSharePointSiteUsageSiteCounts[0].active','1',''), ('99981','47442','2','20','1d','0',''), ('99982','47443','1','12','$.metrics.getSharePointSiteUsageSiteCounts[0].total','1',''), ('99983','47443','2','20','1d','0',''), ('99984','47444','1','12','$.metrics.getSharePointSiteUsageStorage[0].reportDate','1',''), ('99985','47444','2','20','1d','0',''), ('99986','47445','1','12','$.metrics.getSharePointSiteUsageStorage[0].storageUsedInBytes','1',''), ('99987','47445','2','20','1d','0',''), ('99988','47446','1','12','$.metrics.getSharePointActivityUserCounts[0].reportDate','1',''), ('99989','47446','2','20','1d','0',''), ('99990','47447','1','12','$.metrics.getSharePointActivityUserCounts[0].sharedExternally','1',''), ('99991','47447','2','20','1d','0',''), ('99992','47448','1','12','$.metrics.getSharePointActivityUserCounts[0].sharedInternally','1',''), ('99993','47448','2','20','1d','0',''), ('99994','47449','1','12','$.metrics.getSharePointActivityUserCounts[0].synced','1',''), ('99995','47449','2','20','1d','0',''), ('99996','47450','1','12','$.metrics.getSharePointActivityUserCounts[0].viewedOrEdited','1',''), ('99997','47450','2','20','1d','0',''), ('99998','47451','1','12','$.metrics.getSharePointActivityUserCounts[0].visitedPage','1',''), ('99999','47451','2','20','1d','0',''), ('100000','47452','1','12','$.metrics.getTeamsTeamActivityDistributionCounts[0].activityDistributions[0].activeChannels','1',''), ('100001','47452','2','20','1d','0',''), ('100002','47453','1','12','$.metrics.getTeamsTeamActivityDistributionCounts[0].activityDistributions[0].activeExternalUsers','1',''), ('100003','47453','2','20','1d','0',''), ('100004','47454','1','12','$.metrics.getTeamsTeamActivityDistributionCounts[0].activityDistributions[0].activeSharedChannels','1',''), ('100005','47454','2','20','1d','0',''), ('100006','47455','1','12','$.metrics.getTeamsTeamActivityDistributionCounts[0].activityDistributions[0].activeUsers','1',''), ('100007','47455','2','20','1d','0',''), ('100008','47456','1','12','$.metrics.getTeamsTeamActivityDistributionCounts[0].activityDistributions[0].channelMessages','1',''), ('100009','47456','2','20','1d','0',''), ('100010','47457','1','12','$.metrics.getTeamsTeamActivityDistributionCounts[0].activityDistributions[0].guests','1',''), ('100011','47457','2','20','1d','0',''), ('100012','47458','1','12','$.metrics.getTeamsTeamActivityDistributionCounts[0].activityDistributions[0].meetingsOrganized','1',''), ('100013','47458','2','20','1d','0',''), ('100014','47459','1','12','$.metrics.getTeamsTeamActivityDistributionCounts[0].activityDistributions[0].mentions','1',''), ('100015','47459','2','20','1d','0',''), ('100016','47460','1','12','$.metrics.getTeamsTeamActivityDistributionCounts[0].activityDistributions[0].postMessages','1',''), ('100017','47460','2','20','1d','0',''), ('100018','47461','1','12','$.metrics.getTeamsTeamActivityDistributionCounts[0].activityDistributions[0].replyMessages','1',''), ('100019','47461','2','20','1d','0',''), ('100020','47462','1','12','$.metrics.getTeamsTeamActivityDistributionCounts[0].activityDistributions[0].reactions','1',''), ('100021','47462','2','20','1d','0',''), ('100022','47463','1','12','$.metrics.getTeamsTeamActivityDistributionCounts[0].reportRefreshDate','1',''), ('100023','47463','2','20','1d','0',''), ('100024','47464','1','12','$.metrics.getTeamsTeamActivityDistributionCounts[0].activityDistributions[0].urgentMessages','1',''), ('100025','47464','2','20','1d','0',''), ('100026','47465','1','12','$.metrics.getTeamsUserActivityTotalDistributionCounts[0].userCounts[0].calls','1',''), ('100027','47465','2','20','1d','0',''), ('100028','47466','1','12','$.metrics.getTeamsUserActivityTotalDistributionCounts[0].userCounts[0].audioDuration','1',''), ('100029','47466','2','20','1d','0',''), ('100030','47466','3','21',E'function iso8601DurationToSeconds(iso8601Duration) { const iso8601DurationRegex = /(-)?P(?:([.,\\d]+)Y)?(?:([.,\\d]+)M)?(?:([.,\\d]+)W)?(?:([.,\\d]+)D)?(?:T(?:([.,\\d]+)H)?(?:([.,\\d]+)M)?(?:([.,\\d]+)S)?)?/; const matches = iso8601Duration.match(iso8601DurationRegex); duration = 0; matches.forEach( function (field, index) { if (field != undefined) { switch(index) { case 2: duration += parseInt(field) * daysInThisYear() * 86400; break; case 3: duration += parseInt(field) * daysInThisMonth() * 86400; break; case 4: duration += parseInt(field) * 604800; break; case 5: duration += parseInt(field) * 86400; break; case 6: duration += parseInt(field) * 3600; break; case 7: duration += parseInt(field) * 60; break; case 8: duration += parseInt(field); } } }); return duration; }; function daysInThisMonth() { const now = new Date(); return new Date(now.getFullYear(), now.getMonth()+1, 0).getDate(); }; function daysInThisYear() { const now = new Date(); return new Date(now.getFullYear(), 2, 0).getDate() + 337; }; return iso8601DurationToSeconds(value);','0',''), ('100031','47467','1','12','$.metrics.getTeamsUserActivityTotalDistributionCounts[0].userCounts[0].screenShareDuration','1',''), ('100032','47467','2','20','1d','0',''), ('100033','47467','3','21',E'function iso8601DurationToSeconds(iso8601Duration) { const iso8601DurationRegex = /(-)?P(?:([.,\\d]+)Y)?(?:([.,\\d]+)M)?(?:([.,\\d]+)W)?(?:([.,\\d]+)D)?(?:T(?:([.,\\d]+)H)?(?:([.,\\d]+)M)?(?:([.,\\d]+)S)?)?/; const matches = iso8601Duration.match(iso8601DurationRegex); duration = 0; matches.forEach( function (field, index) { if (field != undefined) { switch(index) { case 2: duration += parseInt(field) * daysInThisYear() * 86400; break; case 3: duration += parseInt(field) * daysInThisMonth() * 86400; break; case 4: duration += parseInt(field) * 604800; break; case 5: duration += parseInt(field) * 86400; break; case 6: duration += parseInt(field) * 3600; break; case 7: duration += parseInt(field) * 60; break; case 8: duration += parseInt(field); } } }); return duration; }; function daysInThisMonth() { const now = new Date(); return new Date(now.getFullYear(), now.getMonth()+1, 0).getDate(); }; function daysInThisYear() { const now = new Date(); return new Date(now.getFullYear(), 2, 0).getDate() + 337; }; return iso8601DurationToSeconds(value);','0',''), ('100034','47468','1','12','$.metrics.getTeamsUserActivityTotalDistributionCounts[0].userCounts[0].videoDuration','1',''), ('100035','47468','2','20','1d','0',''), ('100036','47468','3','21',E'function iso8601DurationToSeconds(iso8601Duration) { const iso8601DurationRegex = /(-)?P(?:([.,\\d]+)Y)?(?:([.,\\d]+)M)?(?:([.,\\d]+)W)?(?:([.,\\d]+)D)?(?:T(?:([.,\\d]+)H)?(?:([.,\\d]+)M)?(?:([.,\\d]+)S)?)?/; const matches = iso8601Duration.match(iso8601DurationRegex); duration = 0; matches.forEach( function (field, index) { if (field != undefined) { switch(index) { case 2: duration += parseInt(field) * daysInThisYear() * 86400; break; case 3: duration += parseInt(field) * daysInThisMonth() * 86400; break; case 4: duration += parseInt(field) * 604800; break; case 5: duration += parseInt(field) * 86400; break; case 6: duration += parseInt(field) * 3600; break; case 7: duration += parseInt(field) * 60; break; case 8: duration += parseInt(field); } } }); return duration; }; function daysInThisMonth() { const now = new Date(); return new Date(now.getFullYear(), now.getMonth()+1, 0).getDate(); }; function daysInThisYear() { const now = new Date(); return new Date(now.getFullYear(), 2, 0).getDate() + 337; }; return iso8601DurationToSeconds(value);','0',''), ('100037','47469','1','12','$.metrics.getTeamsUserActivityTotalDistributionCounts[0].userCounts[0].meetingsAttended','1',''), ('100038','47469','2','20','1d','0',''), ('100039','47470','1','12','$.metrics.getTeamsUserActivityTotalDistributionCounts[0].userCounts[0].meetingsOrganized','1',''), ('100040','47470','2','20','1d','0',''), ('100041','47471','1','12','$.metrics.getTeamsUserActivityTotalDistributionCounts[0].userCounts[0].meetings','1',''), ('100042','47471','2','20','1d','0',''), ('100043','47472','1','12','$.metrics.getTeamsUserActivityTotalDistributionCounts[0].userCounts[0].teamChatMessages','1',''), ('100044','47472','2','20','1d','0',''), ('100045','47473','1','12','$.metrics.getTeamsUserActivityTotalDistributionCounts[0].userCounts[0].postMessages','1',''), ('100046','47473','2','20','1d','0',''), ('100047','47474','1','12','$.metrics.getTeamsUserActivityTotalDistributionCounts[0].userCounts[0].privateChatMessages','1',''), ('100048','47474','2','20','1d','0',''), ('100049','47475','1','12','$.metrics.getTeamsUserActivityTotalDistributionCounts[0].userCounts[0].replyMessages','1',''), ('100050','47475','2','20','1d','0',''), ('100051','47476','1','12','$.metrics.getTeamsUserActivityTotalDistributionCounts[0].reportRefreshDate','1',''), ('100052','47476','2','20','1d','0',''), ('100053','47477','1','21','var data=JSON.parse(value); return data.metrics.getTeamsDeviceUsageDistributionTotalUserCounts[0].androidPhone - data.metrics.getTeamsDeviceUsageDistributionUserCounts[0].androidPhone;','0',''), ('100054','47477','2','20','1d','0',''), ('100055','47478','1','21','var data=JSON.parse(value); return data.metrics.getTeamsDeviceUsageDistributionTotalUserCounts[0].chromeOS - data.metrics.getTeamsDeviceUsageDistributionUserCounts[0].chromeOS;','0',''), ('100056','47478','2','20','1d','0',''), ('100057','47479','1','21','var data=JSON.parse(value); return data.metrics.getTeamsDeviceUsageDistributionTotalUserCounts[0].ios - data.metrics.getTeamsDeviceUsageDistributionUserCounts[0].ios;','0',''), ('100058','47479','2','20','1d','0',''), ('100059','47480','1','21','var data=JSON.parse(value); return data.metrics.getTeamsDeviceUsageDistributionTotalUserCounts[0].linux - data.metrics.getTeamsDeviceUsageDistributionUserCounts[0].linux;','0',''), ('100060','47480','2','20','1d','0',''), ('100061','47481','1','21','var data=JSON.parse(value); return data.metrics.getTeamsDeviceUsageDistributionTotalUserCounts[0].mac - data.metrics.getTeamsDeviceUsageDistributionUserCounts[0].mac;','0',''), ('100062','47481','2','20','1d','0',''), ('100063','47482','1','21','var data=JSON.parse(value); return data.metrics.getTeamsDeviceUsageDistributionTotalUserCounts[0].web - data.metrics.getTeamsDeviceUsageDistributionUserCounts[0].web;','0',''), ('100064','47482','2','20','1d','0',''), ('100065','47483','1','21','var data=JSON.parse(value); return data.metrics.getTeamsDeviceUsageDistributionTotalUserCounts[0].windows - data.metrics.getTeamsDeviceUsageDistributionUserCounts[0].windows;','0',''), ('100066','47483','2','20','1d','0',''), ('100067','47484','1','12','$.metrics.getTeamsDeviceUsageDistributionTotalUserCounts[0].androidPhone','1',''), ('100068','47484','2','20','1d','0',''), ('100069','47485','1','12','$.metrics.getTeamsDeviceUsageDistributionTotalUserCounts[0].chromeOS','1',''), ('100070','47485','2','20','1d','0',''), ('100071','47486','1','12','$.metrics.getTeamsDeviceUsageDistributionTotalUserCounts[0].ios','1',''), ('100072','47486','2','20','1d','0',''), ('100073','47487','1','12','$.metrics.getTeamsDeviceUsageDistributionTotalUserCounts[0].linux','1',''), ('100074','47487','2','20','1d','0',''), ('100075','47488','1','12','$.metrics.getTeamsDeviceUsageDistributionTotalUserCounts[0].mac','1',''), ('100076','47488','2','20','1d','0',''), ('100077','47489','1','12','$.metrics.getTeamsDeviceUsageDistributionTotalUserCounts[0].reportRefreshDate','1',''), ('100078','47489','2','20','1d','0',''), ('100079','47490','1','12','$.metrics.getTeamsDeviceUsageDistributionTotalUserCounts[0].web','1',''), ('100080','47490','2','20','1d','0',''), ('100081','47491','1','12','$.metrics.getTeamsDeviceUsageDistributionTotalUserCounts[0].windows','1',''), ('100082','47491','2','20','1d','0',''), ('100083','47492','1','12','$.metrics.getTeamsDeviceUsageDistributionUserCounts[0].androidPhone','1',''), ('100084','47492','2','20','1d','0',''), ('100085','47493','1','12','$.metrics.getTeamsDeviceUsageDistributionUserCounts[0].chromeOS','1',''), ('100086','47493','2','20','1d','0',''), ('100087','47494','1','12','$.metrics.getTeamsDeviceUsageDistributionUserCounts[0].ios','1',''), ('100088','47494','2','20','1d','0',''), ('100089','47495','1','12','$.metrics.getTeamsDeviceUsageDistributionUserCounts[0].linux','1',''), ('100090','47495','2','20','1d','0',''), ('100091','47496','1','12','$.metrics.getTeamsDeviceUsageDistributionUserCounts[0].mac','1',''), ('100092','47496','2','20','1d','0',''), ('100093','47497','1','12','$.metrics.getTeamsDeviceUsageDistributionUserCounts[0].web','1',''), ('100094','47497','2','20','1d','0',''), ('100095','47498','1','12','$.metrics.getTeamsDeviceUsageDistributionUserCounts[0].windows','1',''), ('100096','47498','2','20','1d','0',''), ('100097','47499','1','12','$.error','2',''), ('100098','47499','2','20','1h','0',''), ('100099','47500','1','21','var data=JSON.parse(value); return data.metrics.getTeamsUserActivityDistributionTotalUserCounts[0].calls - data.metrics.getTeamsUserActivityDistributionUserCounts[0].calls;','0',''), ('100100','47500','2','20','1d','0',''), ('100101','47501','1','21','var data=JSON.parse(value); return data.metrics.getTeamsUserActivityDistributionTotalUserCounts[0].meetings - data.metrics.getTeamsUserActivityDistributionUserCounts[0].meetings;','0',''), ('100102','47501','2','20','1d','0',''), ('100103','47502','1','21','var data=JSON.parse(value); return data.metrics.getTeamsUserActivityDistributionTotalUserCounts[0].teamChatMessages - data.metrics.getTeamsUserActivityDistributionUserCounts[0].teamChatMessages;','0',''), ('100104','47502','2','20','1d','0',''), ('100105','47503','1','21','var data=JSON.parse(value); return data.metrics.getTeamsUserActivityDistributionTotalUserCounts[0].privateChatMessages - data.metrics.getTeamsUserActivityDistributionUserCounts[0].privateChatMessages;','0',''), ('100106','47503','2','20','1d','0',''), ('100107','47504','1','12','$.metrics.getTeamsUserActivityDistributionTotalUserCounts[0].calls','1',''), ('100108','47504','2','20','1d','0',''), ('100109','47505','1','12','$.metrics.getTeamsUserActivityDistributionTotalUserCounts[0].meetings','1',''), ('100110','47505','2','20','1d','0',''), ('100111','47506','1','12','$.metrics.getTeamsUserActivityDistributionTotalUserCounts[0].teamChatMessages','1',''), ('100112','47506','2','20','1d','0',''), ('100113','47507','1','12','$.metrics.getTeamsUserActivityDistributionTotalUserCounts[0].privateChatMessages','1',''), ('100114','47507','2','20','1d','0',''), ('100115','47508','1','12','$.metrics.getTeamsUserActivityDistributionTotalUserCounts[0].reportRefreshDate','1',''), ('100116','47508','2','20','1d','0',''), ('100117','47509','1','12','$.metrics.getTeamsUserActivityDistributionUserCounts[0].calls','1',''), ('100118','47509','2','20','1d','0',''), ('100119','47510','1','12','$.metrics.getTeamsUserActivityDistributionUserCounts[0].meetings','1',''), ('100120','47510','2','20','1d','0',''), ('100121','47511','1','12','$.metrics.getTeamsUserActivityDistributionUserCounts[0].teamChatMessages','1',''), ('100122','47511','2','20','1d','0',''), ('100123','47512','1','12','$.metrics.getTeamsUserActivityDistributionUserCounts[0].privateChatMessages','1',''), ('100124','47512','2','20','1d','0',''), ('100125','47513','1','12','$.services.value','0',''), ('100126','47513','2','20','6h','0',''), ('100127','47514','1','12','$.services.value[?(@.service == ''{#NAME}'')].status.first()','0',''), ('100128','47514','2','21','if (value !== ''null'') { const idx = [ ''serviceOperational'', ''investigating'', ''restoringService'', ''verifyingService'', ''serviceRestored'', ''postIncidentReviewPublished'', ''serviceDegradation'', ''serviceInterruption'', ''extendedRecovery'', ''falsePositive'', ''investigationSuspended'', ].indexOf(value); return idx !== -1 ? idx : 11; }','0',''), ('100129','47514','3','20','1d','0',''), ('100130','47517','1','21','const idx = [ ''true'', ''false'' ].indexOf(value); return idx !== -1 ? idx : 2;','0',''), ('100131','47517','2','20','1d','0',''), ('100132','47518','1','20','1d','0',''), ('100133','47519','1','21','const idx = [ ''notRunning'', ''resetting'', ''running'', ''shuttingDown'', ''standby'', ''unknown'' ].indexOf(value); return idx !== -1 ? idx : 5;','0',''), ('100134','47519','2','20','1h','0',''), ('100135','47520','1','21','const idx = [ ''guestToolsExecutingScripts'', ''guestToolsNotRunning'', ''guestToolsRunning'' ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('100136','47520','2','20','1h','0',''), ('100137','47521','1','20','12h','0',''), ('100138','47522','1','21','const idx = [ ''connected'', ''disconnected'', ''notResponding'' ].indexOf(value); return idx !== -1 ? idx : 3;','0',''), ('100139','47522','2','20','1h','0',''), ('100140','47529','1','12','$.error','2',''), ('100141','47529','2','20','3h','0',''), ('100142','47530','1','12','$.health','0',''), ('100143','47530','2','20','3h','0',''), ('100144','47531','1','12','$.count','0',''), ('100145','47531','2','20','1d','0',''), ('100146','47532','1','12','$.latestdate','0',''), ('100147','47532','2','20','1d','0',''), ('100148','47533','1','20','1h','0',''), ('100149','47535','1','21','function isGtOrEqVersion(first_version, second_version) { var first = first_version.split(''.'').map(Number), second = second_version.split(''.'').map(Number); if (first.length > second.length) { const max_componens_length = first.length } else { const max_componens_length = second.length } var num_components = first.length; while (num_components < max_componens_length) { first.push(0); num_components = num_components +1; } var num_components = second.length; while (num_components < max_componens_length) { second.push(0); num_components = num_components +1; } if (first[0] > second[0] || (first[0] === second[0] && first[1] > second[1]) || (first[0] === second[0] && first[1] === second[1] && first[2] >= second[2])) { return true; } return false; } try { const vmware_version = value; const hypervisor_uuid = ''{$VMWARE.HV.UUID}''; if (isGtOrEqVersion(vmware_version, ''6.7.0'')) { return JSON.stringify([{''{#VMWARE.HV.UUID}'': hypervisor_uuid}]); } return JSON.stringify([]); } catch (error) { Zabbix.log(3, ''[ VMware Serial Number Discovery ] ERROR: '' + error); throw ''Failed to process data:'' + error; }','0',''), ('100150','47535','2','20','6h','0',''), ('100151','31666','1','20','1h','0',''), ('100152','32949','1','20','1d','0',''), ('100153','47540','1','1','1000000','0',''), ('100154','47541','1','20','1d','0',''), ('100155','42879','2','21','const idx = [ ''gray'', ''green'', ''yellow'', ''red'' ].indexOf(value.toLowerCase()); return idx !== -1 ? idx : 0;','0',''), ('100156','42879','3','20','1h','0',''), ('100157','47542','1','12','$.[?(@.key == "{#VMWARE.ALARMS.KEY}")].key.first()','2','-1'), ('100158','47542','2','20','1h','0',''), ('100159','47545','1','12','$.error','2',''), ('100160','47545','2','20','3h','0',''), ('100161','47546','1','12','$.health','0',''), ('100162','47546','2','20','3h','0',''), ('100163','47547','1','20','1h','0',''), ('100164','32961','1','20','1h','0',''), ('100165','47550','1','12','$.[?(@.key == "{#VMWARE.ALARMS.KEY}")].key.first()','2','-1'), ('100166','47550','2','20','1h','0',''), ('100167','47553','1','12','$.data','0',''), ('100168','47553','2','20','1h','0',''), ('100169','47554','1','12','$.data','0',''), ('100170','47554','2','20','1h','0',''), ('100171','47555','1','12','$.data[?(@.name=="{#PROXY.GROUP.NAME}")].first()','0',''), ('100172','47556','1','12','$.rtdata["{#PROXY.GROUP.NAME}"]','0',''), ('100173','47557','1','12','$.data[?(@.name=="{#PROXY.GROUP.NAME}")].first()','0',''), ('100174','47558','1','12','$.rtdata["{#PROXY.GROUP.NAME}"]','0',''), ('100175','47559','1','12','$.pavailable','0',''), ('100176','47559','2','20','12h','0',''), ('100177','47560','1','12','$.available','0',''), ('100178','47560','2','20','12h','0',''), ('100179','47561','1','12','$.failover_delay','0',''), ('100180','47561','2','20','12h','0',''), ('100181','47562','1','12','$.min_online','0',''), ('100182','47562','2','20','12h','0',''), ('100183','47563','1','12','$.state','0',''), ('100184','47563','2','20','12h','0',''), ('100185','47564','1','12','$.pavailable','0',''), ('100186','47564','2','20','12h','0',''), ('100187','47565','1','12','$.available','0',''), ('100188','47565','2','20','12h','0',''), ('100189','47566','1','12','$.failover_delay','0',''), ('100190','47566','2','20','12h','0',''), ('100191','47567','1','12','$.min_online','0',''), ('100192','47567','2','20','12h','0',''), ('100193','47568','1','12','$.state','0',''), ('100194','47568','2','20','12h','0',''), ('100195','47570','1','1','1048576','0',''), ('100196','47570','2','20','6h','0',''), ('100197','47571','1','1','1048576','0',''), ('100198','47579','1','20','6h','0',''), ('100199','47580','1','20','6h','0',''), ('100200','47585','1','20','12h','0',''), ('100201','47586','1','20','12h','0',''), ('100202','47587','1','26','-1','2','0'), ('100203','47587','2','1','0.01','0',''), ('100204','47588','1','20','12h','0',''), ('100205','47589','1','20','12h','0',''), ('100206','47590','1','1','0.01','0',''), ('100207','47591','1','20','12h','0',''), ('100208','47593','1','29','{#ID} 1.3.6.1.4.1.34774.4.1.23.5.5.1.1 0 {#LOCATION} 1.3.6.1.4.1.34774.4.1.23.5.5.1.2 0','0',''), ('100209','47593','2','20','1h','0',''), ('100210','47594','1','29','{#ID} 1.3.6.1.4.1.34774.4.1.23.5.2.1.1 0','0',''), ('100211','47594','2','20','1h','0',''), ('100212','47595','1','29','{#ID} 1.3.6.1.4.1.34774.4.1.23.5.1.1.1 0 {#MODEL} 1.3.6.1.4.1.34774.4.1.23.5.1.1.12 0 {#LOCATION} 1.3.6.1.4.1.34774.4.1.23.5.1.1.4 0','0',''), ('100213','47595','2','20','1h','0',''), ('100214','47596','1','29','{#NAME} 1.3.6.1.4.1.34774.4.1.23.5.6.1.2 0','0',''), ('100215','47596','2','20','1h','0',''), ('100216','47597','1','29','{#ID} 1.3.6.1.4.1.34774.4.1.23.5.4.1.1 0 {#LOCATION} 1.3.6.1.4.1.34774.4.1.23.5.4.1.2 0','0',''), ('100217','47597','2','20','1h','0',''), ('100218','47598','1','29','{#NAME} 1.3.6.1.4.1.34774.4.1.19.9.4.1.2 0','0',''), ('100219','47599','1','29','{#NODE} 1.3.6.1.4.1.34774.4.1.21.3.1.1 0 {#NODE.DELAY} 1.3.6.1.4.1.34774.4.1.21.3.1.4 0','0',''), ('100220','47600','1','29','{#NAME} 1.3.6.1.4.1.34774.4.1.23.4.2.1.2 0 {#POOL.USED.CAPACITY} 1.3.6.1.4.1.34774.4.1.23.4.2.1.27 0','0',''), ('100221','47601','1','28','1.3.6.1.4.1.34774.4.1.23.5.5.1.3.{#SNMPINDEX} 0','0',''), ('100222','47601','2','20','6h','0',''), ('100223','47602','1','28','1.3.6.1.4.1.34774.4.1.23.5.5.1.4.{#SNMPINDEX} 0','0',''), ('100224','47602','2','20','6h','0',''), ('100225','47603','1','28','1.3.6.1.4.1.34774.4.1.23.5.2.1.8.{#SNMPINDEX} 0','0',''), ('100226','47604','1','28','1.3.6.1.4.1.34774.4.1.23.5.2.1.2.{#SNMPINDEX} 0','0',''), ('100227','47604','2','20','6h','0',''), ('100228','47605','1','28','1.3.6.1.4.1.34774.4.1.23.5.2.1.9.{#SNMPINDEX} 0','0',''), ('100229','47606','1','28','1.3.6.1.4.1.34774.4.1.23.5.2.1.6.{#SNMPINDEX} 0','0',''), ('100230','47606','2','20','6h','0',''), ('100231','47607','1','28','1.3.6.1.4.1.34774.4.1.23.5.2.1.3.{#SNMPINDEX} 0','0',''), ('100232','47607','2','20','6h','0',''), ('100233','47608','1','28','1.3.6.1.4.1.34774.4.1.23.5.1.1.2.{#SNMPINDEX} 0','0',''), ('100234','47608','2','20','6h','0',''), ('100235','47609','1','28','1.3.6.1.4.1.34774.4.1.23.5.1.1.3.{#SNMPINDEX} 0','0',''), ('100236','47609','2','20','6h','0',''), ('100237','47610','1','28','1.3.6.1.4.1.34774.4.1.23.5.1.1.11.{#SNMPINDEX} 0','0',''), ('100238','47611','1','28','1.3.6.1.4.1.34774.4.1.23.5.6.1.4.{#SNMPINDEX} 0','0',''), ('100239','47611','2','20','6h','0',''), ('100240','47612','1','28','1.3.6.1.4.1.34774.4.1.23.5.6.1.5.{#SNMPINDEX} 0','0',''), ('100241','47612','2','20','6h','0',''), ('100242','47613','1','28','1.3.6.1.4.1.34774.4.1.23.5.6.1.8.{#SNMPINDEX} 0','0',''), ('100243','47614','1','28','1.3.6.1.4.1.34774.4.1.23.5.4.1.3.{#SNMPINDEX} 0','0',''), ('100244','47614','2','20','6h','0',''), ('100245','47615','1','28','1.3.6.1.4.1.34774.4.1.23.5.4.1.4.{#SNMPINDEX} 0','0',''), ('100246','47615','2','20','6h','0',''), ('100247','47616','1','28','1.3.6.1.4.1.34774.4.1.21.4.1.7.{#SNMPINDEX} 0','0',''), ('100248','47616','2','1','1048576','0',''), ('100249','47617','1','28','1.3.6.1.4.1.34774.4.1.21.4.1.6.{#SNMPINDEX} 0','0',''), ('100250','47617','2','1','1048576','0',''), ('100251','47618','1','28','1.3.6.1.4.1.34774.4.1.21.4.1.8.{#SNMPINDEX} 0','0',''), ('100252','47618','2','1','1048576','0',''), ('100253','47619','1','28','1.3.6.1.4.1.34774.4.1.19.9.4.1.5.{#SNMPINDEX} 0','0',''), ('100254','47619','2','1','1024','0',''), ('100255','47619','3','20','6h','0',''), ('100256','47620','1','28','1.3.6.1.4.1.34774.4.1.21.4.1.4.{#SNMPINDEX} 0','0',''), ('100257','47621','1','28','1.3.6.1.4.1.34774.4.1.21.4.1.3.{#SNMPINDEX} 0','0',''), ('100258','47622','1','28','1.3.6.1.4.1.34774.4.1.21.4.1.5.{#SNMPINDEX} 0','0',''), ('100259','47623','1','28','1.3.6.1.4.1.34774.4.1.21.4.1.15.{#SNMPINDEX} 0','0',''), ('100260','47623','2','1','1.0E-6','0',''), ('100261','47624','1','28','1.3.6.1.4.1.34774.4.1.21.4.1.13.{#SNMPINDEX} 0','0',''), ('100262','47624','2','1','1.0E-6','0',''), ('100263','47625','1','28','1.3.6.1.4.1.34774.4.1.21.4.1.16.{#SNMPINDEX} 0','0',''), ('100264','47625','2','1','1.0E-6','0',''), ('100265','47626','1','28','1.3.6.1.4.1.34774.4.1.19.9.4.1.11.{#SNMPINDEX} 0','0',''), ('100266','47626','2','20','6h','0',''), ('100267','47627','1','28','1.3.6.1.4.1.34774.4.1.21.3.1.9.{#SNMPINDEX} 0','0',''), ('100268','47627','2','1','1048576','0',''), ('100269','47628','1','28','1.3.6.1.4.1.34774.4.1.21.3.1.8.{#SNMPINDEX} 0','0',''), ('100270','47628','2','1','1048576','0',''), ('100271','47629','1','28','1.3.6.1.4.1.34774.4.1.21.3.1.10.{#SNMPINDEX} 0','0',''), ('100272','47629','2','1','1048576','0',''), ('100273','47630','1','28','1.3.6.1.4.1.34774.4.1.21.3.1.2.{#SNMPINDEX} 0','0',''), ('100274','47631','1','28','1.3.6.1.4.1.34774.4.1.21.3.1.6.{#SNMPINDEX} 0','0',''), ('100275','47632','1','28','1.3.6.1.4.1.34774.4.1.21.3.1.5.{#SNMPINDEX} 0','0',''), ('100276','47633','1','28','1.3.6.1.4.1.34774.4.1.21.3.1.7.{#SNMPINDEX} 0','0',''), ('100277','47634','1','28','1.3.6.1.4.1.34774.4.1.23.4.2.1.9.{#SNMPINDEX} 0','0',''), ('100278','47634','2','1','1048576','0',''), ('100279','47635','1','28','1.3.6.1.4.1.34774.4.1.23.4.2.1.7.{#SNMPINDEX} 0','0',''), ('100280','47635','2','1','1048576','0',''), ('100281','47635','3','20','6h','0',''), ('100282','47636','1','28','1.3.6.1.4.1.34774.4.1.23.4.2.1.5.{#SNMPINDEX} 0','0',''), ('100283','47636','2','20','6h','0',''), ('100284','47637','1','28','1.3.6.1.4.1.34774.4.1.23.4.2.1.6.{#SNMPINDEX} 0','0',''), ('100285','47637','2','20','6h','0',''), ('100286','47639','1','20','10m','0',''), ('100287','47641','1','21',E'var lines = value.split(''\\n''); var output = {}, workers = { ''_'': 0, ''S'': 0, ''R'': 0, ''W'': 0, ''K'': 0, ''D'': 0, ''C'': 0, ''L'': 0, ''G'': 0, ''I'': 0, ''.'': 0 }; for (var i = 0; i < lines.length; i++) { var line = lines[i].match(/([A-z0-9 ]+): (.*)/); if (line !== null) { output[line[1]] = isNaN(line[2]) ? line[2] : Number(line[2]); } } output.ServerUptimeSeconds = output.ServerUptimeSeconds || output.Uptime; output.ServerVersion = output.ServerVersion || output.Server; if (typeof output.Scoreboard === ''string'') { for (var i = 0; i < output.Scoreboard.length; i++) { var char = output.Scoreboard[i]; workers[char]++; } } output.Workers = { waiting: workers[''_''], starting: workers[''S''], reading: workers[''R''], sending: workers[''W''], keepalive: workers[''K''], dnslookup: workers[''D''], closing: workers[''C''], logging: workers[''L''], finishing: workers[''G''], cleanup: workers[''I''], slot: workers[''.''] }; return JSON.stringify(output);','0',''), ('100288','47642','1','12','$["Total kBytes"]','0',''), ('100289','47642','2','1','1024','0',''), ('100290','47643','1','12','$["Total kBytes"]','0',''), ('100291','47643','2','1','1024','0',''), ('100292','47643','3','10','','0',''), ('100293','47644','1','12','$["Total Accesses"]','0',''), ('100294','47645','1','12','$["Total Accesses"]','0',''), ('100295','47645','2','10','','0',''), ('100296','47646','1','12','$.ServerUptimeSeconds','0',''), ('100297','47647','1','12','$.ServerVersion','0',''), ('100298','47647','2','20','1d','0',''), ('100299','47648','1','12','$.Workers.cleanup','0',''), ('100300','47649','1','12','$.Workers.closing','0',''), ('100301','47650','1','12','$.Workers.dnslookup','0',''), ('100302','47651','1','12','$.Workers.finishing','0',''), ('100303','47652','1','12','$.Workers.keepalive','0',''), ('100304','47653','1','12','$.Workers.logging','0',''), ('100305','47654','1','12','$.Workers.reading','0',''), ('100306','47655','1','12','$.Workers.sending','0',''), ('100307','47656','1','12','$.Workers.slot','0',''), ('100308','47657','1','12','$.Workers.starting','0',''), ('100309','47658','1','12','$.Workers.waiting','0',''), ('100310','47659','1','12','$.BusyWorkers','0',''), ('100311','47660','1','12','$.IdleWorkers','0',''), ('100312','47661','1','21','return JSON.stringify(JSON.parse(value).ServerMPM === ''event'' ? [{''{#SINGLETON}'': ''''}] : []);','0',''), ('100313','47661','2','20','3h','0',''), ('100314','47664','1','12','$.BytesPerReq','0',''), ('100315','47665','1','12','$.ConnsAsyncClosing','0',''), ('100316','47666','1','12','$.ConnsAsyncKeepAlive','0',''), ('100317','47667','1','12','$.ConnsAsyncWriting','0',''), ('100318','47668','1','12','$.ConnsTotal','0',''), ('100319','47669','1','12','$.Processes','0',''), ('100320','47670','1','12','$.[?(@["name"]=="{#APACHE.NAME}")].first()','2','Failed to retrieve process {#APACHE.NAME} data'), ('100321','47671','1','12','$.processes','2','0'), ('100322','47671','2','20','1h','0',''), ('100323','47672','1','12','$.pmem','1',''), ('100324','47673','1','12','$.rss','1',''), ('100325','47674','1','12','$.vsize','1',''), ('100326','47675','1','20','6h','0',''), ('100327','47676','1','12','$.x509.alternative_names','0',''), ('100328','47677','1','12','$.x509.issuer','0',''), ('100329','47678','1','12','$.result.message','0',''), ('100330','47679','1','12','$.x509.not_after.timestamp','0',''), ('100331','47680','1','12','$.x509.not_before.timestamp','0',''), ('100332','47681','1','12','$.x509.public_key_algorithm','0',''), ('100333','47682','1','12','$.x509.serial_number','0',''), ('100334','47683','1','12','$.sha1_fingerprint','0',''), ('100335','47684','1','12','$.x509.signature_algorithm','0',''), ('100336','47685','1','12','$.x509.subject','0',''), ('100337','47686','1','12','$.result.value','0',''), ('100338','47687','1','12','$.x509.version','0',''), ('100339','47689','1','20','10m','0',''), ('100340','47692','1','5',E'server accepts handled requests\\s+([0-9]+) ([0-9]+) ([0-9]+) \\1','0',''), ('100341','47692','2','10','','0',''), ('100342','47693','1','5',E'Active connections: ([0-9]+) \\1','0',''), ('100343','47694','1','21',E'var a = value.match(/server accepts handled requests\\s+([0-9]+) ([0-9]+) ([0-9]+)/) if (a) { return a[1]-a[2] }','0',''), ('100344','47694','2','10','','0',''), ('100345','47695','1','5',E'server accepts handled requests\\s+([0-9]+) ([0-9]+) ([0-9]+) \\2','0',''), ('100346','47695','2','10','','0',''), ('100347','47696','1','5',E'Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+) \\1','0',''), ('100348','47697','1','5',E'Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+) \\3','0',''), ('100349','47698','1','5',E'Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+) \\2','0',''), ('100350','47699','1','5',E'server accepts handled requests\\s+([0-9]+) ([0-9]+) ([0-9]+) \\3','0',''), ('100351','47700','1','5',E'server accepts handled requests\\s+([0-9]+) ([0-9]+) ([0-9]+) \\3','0',''), ('100352','47700','2','10','','0',''), ('100353','47701','1','5',E'(?i)Server: nginx\\/(.+(? 50 ? json_data[entity].name.substr(0, 50) + ''...'' : json_data[entity].name }); } return JSON.stringify(output_data);','0',''), ('100735','47925','2','20','1h','0',''), ('100736','47926','1','21','const json_data = JSON.parse(value); var output_data = []; for (var entity in json_data) { output_data.push({ "{#ALERT.KEY}": entity, "{#ALERT.STATE}": json_data[entity].state, "{#ALERT.TITLE}": json_data[entity].title, "{#ALERT.SEVERITY}": json_data[entity].severity, "{#ALERT.NAME}": json_data[entity].name.length > 50 ? json_data[entity].name.substr(0, 50) + ''...'' : json_data[entity].name }); } return JSON.stringify(output_data);','0',''), ('100737','47926','2','20','1h','0',''), ('100738','47927','1','21','const json_data = JSON.parse(value); var output_data = []; for (var entity in json_data) { output_data.push({ "{#DISK.ID}": json_data[entity].id, "{#DISK.SERIAL}": json_data[entity].mount_path.split(''/'').pop(), "{#DISK.MOUNT.PATH}": json_data[entity].mount_path, "{#DISK.LOCATION}": json_data[entity].location }); }; return JSON.stringify(output_data);','0',''), ('100739','47927','2','20','1h','0',''), ('100740','47928','1','12','$.entities','0',''), ('100741','47928','2','21','const json_data = JSON.parse(value); const result = json_data.map(function(entity) { return { "{#NUTANIX.CLUSTER.NAME}": entity.name ? entity.name : entity.uuid, "{#NUTANIX.CLUSTER.UUID}": entity.uuid }; }); return JSON.stringify(result);','0',''), ('100742','47928','3','20','1h','0',''), ('100743','47929','1','12','$.entities','0',''), ('100744','47929','2','21','const json_data = JSON.parse(value); const result = json_data.map(function(entity) { return { "{#NUTANIX.HOST.NAME}": entity.name ? entity.name : entity.uuid, "{#NUTANIX.HOST.UUID}": entity.uuid }; }); return JSON.stringify(result);','0',''), ('100745','47929','3','20','1h','0',''), ('100746','47930','1','21','const json_data = JSON.parse(value); var output_data = []; for (var entity in json_data) { output_data.push({ "{#STORAGE.CONTAINER.UUID}": json_data[entity].storage_container_uuid, "{#STORAGE.CONTAINER.NAME}": json_data[entity].name }); } return JSON.stringify(output_data);','0',''), ('100747','47930','2','20','1h','0',''), ('100748','47931','1','12','$.{#ALERT.KEY}.count','0',''), ('100749','47931','2','20','1h','0',''), ('100750','47932','1','12','$.{#ALERT.KEY}.created','0',''), ('100751','47932','2','1','1.0E-6','0',''), ('100752','47932','3','20','1h','0',''), ('100753','47933','1','12','$.{#ALERT.KEY}.last_id','0',''), ('100754','47933','2','20','12h','0',''), ('100755','47934','1','12','$.{#ALERT.KEY}.message','0',''), ('100756','47934','2','20','12h','0',''), ('100757','47935','1','12','$.{#ALERT.KEY}.severity','0',''), ('100758','47935','2','20','1h','0',''), ('100759','47936','1','12','$.{#ALERT.KEY}.state','0',''), ('100760','47936','2','20','1h','0',''), ('100761','47937','1','12','$.{#ALERT.KEY}.title','0',''), ('100762','47937','2','20','12h','0',''), ('100763','47938','1','12','$.{#ALERT.KEY}.count','0',''), ('100764','47938','2','20','1h','0',''), ('100765','47939','1','12','$.{#ALERT.KEY}.created','0',''), ('100766','47939','2','1','1.0E-6','0',''), ('100767','47939','3','20','1h','0',''), ('100768','47940','1','12','$.{#ALERT.KEY}.last_id','0',''), ('100769','47940','2','20','12h','0',''), ('100770','47941','1','12','$.{#ALERT.KEY}.message','0',''), ('100771','47941','2','20','12h','0',''), ('100772','47942','1','12','$.{#ALERT.KEY}.severity','0',''), ('100773','47942','2','20','1h','0',''), ('100774','47943','1','12','$.{#ALERT.KEY}.state','0',''), ('100775','47943','2','20','1h','0',''), ('100776','47944','1','12','$.{#ALERT.KEY}.title','0',''), ('100777','47944','2','20','12h','0',''), ('100778','47945','1','12','$.[''{#DISK.ID}''].usage_stats.[''storage.capacity_bytes'']','0',''), ('100779','47945','2','20','12h','0',''), ('100780','47946','1','12','$.[''{#DISK.ID}''].usage_stats.[''storage.free_bytes'']','0',''), ('100781','47946','2','20','1h','0',''), ('100782','47947','1','12','$.[''{#DISK.ID}''].stats.avg_io_latency_usecs','0',''), ('100783','47947','2','1','1.0E-6','0',''), ('100784','47948','1','12','$.[''{#DISK.ID}''].stats.io_bandwidth_kBps','0',''), ('100785','47948','2','1','1024','0',''), ('100786','47949','1','12','$.[''{#DISK.ID}''].stats.num_iops','0',''), ('100787','47950','1','12','$.[''{#DISK.ID}''].usage_stats.[''storage.logical_usage_bytes'']','0',''), ('100788','47950','2','20','1h','0',''), ('100789','47951','1','12','$.[''{#DISK.ID}''].online','0',''), ('100790','47951','2','6','','2','2'), ('100791','47951','3','20','1h','0',''), ('100792','47952','1','12','$.[''{#DISK.ID}''].disk_status','0',''), ('100793','47952','2','21','const idx = [ ''NORMAL'', ''DATA_MIGRATION_INITIATED'', ''MARKED_FOR_REMOVAL_BUT_NOT_DETACHABLE'', ''DETACHABLE'' ].indexOf(value.toUpperCase()); return idx !== -1 ? idx : 4;','0',''), ('100794','47952','3','20','1h','0',''), ('100795','47953','1','12','$.[''{#DISK.ID}''].usage_stats.[''storage.usage_bytes'']','0',''), ('100796','47953','2','20','1h','0',''), ('100797','47954','1','12','$.[''{#STORAGE.CONTAINER.UUID}''].usage_stats.[''storage.capacity_bytes'']','0',''), ('100798','47954','2','20','1h','0',''), ('100799','47955','1','12','$.[''{#STORAGE.CONTAINER.UUID}''].usage_stats.[''storage.free_bytes'']','0',''), ('100800','47955','2','20','1h','0',''), ('100801','47956','1','12','$.[''{#STORAGE.CONTAINER.UUID}''].replication_factor','0',''), ('100802','47956','2','20','1h','0',''), ('100803','47957','1','12','$.[''{#STORAGE.CONTAINER.UUID}''].usage_stats.[''storage.usage_bytes'']','0',''), ('100804','47957','2','20','1h','0',''), ('100805','47961','1','5',E'^[.\\s\\S]*({.+}) \\1','0',''), ('100806','47962','1','12','$.[''accepted conn'']','0',''), ('100807','47962','2','10','','0',''), ('100808','47963','1','12','$.[''listen queue'']','0',''), ('100809','47964','1','12','$.[''listen queue len'']','0',''), ('100810','47965','1','12','$.[''max listen queue'']','0',''), ('100811','47966','1','12','$.[''max children reached'']','0',''), ('100812','47966','2','9','','0',''), ('100813','47967','1','12','$.pool','0',''), ('100814','47967','2','20','3h','0',''), ('100815','47968','1','5',E'{$PHP_FPM.PING.REPLY}($|\\r?\\n) 1','2','0'), ('100816','47969','1','12','$.[''active processes'']','0',''), ('100817','47970','1','12','$.[''idle processes'']','0',''), ('100818','47971','1','12','$.[''max active processes'']','0',''), ('100819','47972','1','12','$.[''total processes'']','0',''), ('100820','47973','1','12','$.[''process manager'']','0',''), ('100821','47973','2','20','3h','0',''), ('100822','47974','1','12','$.[''slow requests'']','0',''), ('100823','47974','2','9','','0',''), ('100824','47975','1','12','$.[''start time'']','0',''), ('100825','47976','1','12','$.[''start since'']','0',''), ('100826','47977','1','5',E'^[.\\s\\S]*X-Powered-By: PHP/([.\\d]{1,}) \\1','1',''), ('100827','47977','2','20','3h','0',''), ('100828','47980','1','12','$.[?(@["name"]=="{#PHP_FPM.NAME}")].first()','2','Failed to retrieve process {#PHP_FPM.NAME} data'), ('100829','47981','1','12','$.processes','2','0'), ('100830','47981','2','20','1h','0',''), ('100831','47982','1','12','$.pmem','1',''), ('100832','47983','1','12','$.rss','1',''), ('100833','47984','1','12','$.vsize','1',''), ('100834','47985','1','12','$.data.disk','0',''), ('100835','47985','2','20','10m','0',''), ('100836','47986','1','12','$.data.maxdisk','0',''), ('100837','47986','2','20','1h','0',''), ('100838','47990','1','20','6h','0',''), ('100839','47991','1','20','10m','0',''), ('100840','47992','1','20','6h','0',''), ('100841','47993','1','12','$.Aborted_clients','0',''), ('100842','47993','2','10','','0',''), ('100843','47994','1','12','$.Aborted_connects','0',''), ('100844','47994','2','10','','0',''), ('100845','47995','1','12','$.Binlog_cache_disk_use','0',''), ('100846','47995','2','20','6h','0',''), ('100847','47996','1','12','$.Bytes_received','0',''), ('100848','47996','2','10','','0',''), ('100849','47997','1','12','$.Bytes_sent','0',''), ('100850','47997','2','10','','0',''), ('100851','47998','1','12','$.Com_delete','0',''), ('100852','47998','2','10','','0',''), ('100853','47999','1','12','$.Com_insert','0',''), ('100854','47999','2','10','','0',''), ('100855','48000','1','12','$.Com_select','0',''), ('100856','48000','2','10','','0',''), ('100857','48001','1','12','$.Com_update','0',''), ('100858','48001','2','10','','0',''), ('100859','48002','1','12','$.Connections','0',''), ('100860','48002','2','10','','0',''), ('100861','48003','1','12','$.Connection_errors_accept','0',''), ('100862','48003','2','10','','0',''), ('100863','48004','1','12','$.Connection_errors_internal','0',''), ('100864','48004','2','10','','0',''), ('100865','48005','1','12','$.Connection_errors_max_connections','0',''), ('100866','48005','2','10','','0',''), ('100867','48006','1','12','$.Connection_errors_peer_address','0',''), ('100868','48006','2','10','','0',''), ('100869','48007','1','12','$.Connection_errors_select','0',''), ('100870','48007','2','10','','0',''), ('100871','48008','1','12','$.Connection_errors_tcpwrap','0',''), ('100872','48008','2','10','','0',''), ('100873','48009','1','12','$.Created_tmp_disk_tables','0',''), ('100874','48009','2','10','','0',''), ('100875','48010','1','12','$.Created_tmp_files','0',''), ('100876','48010','2','10','','0',''), ('100877','48011','1','12','$.Created_tmp_tables','0',''), ('100878','48011','2','10','','0',''), ('100879','48012','1','12','$.Innodb_buffer_pool_pages_free','0',''), ('100880','48013','1','12','$.Innodb_buffer_pool_pages_total','0',''), ('100881','48013','2','20','1h','0',''), ('100882','48014','1','12','$.Innodb_buffer_pool_reads','0',''), ('100883','48015','1','12','$.Innodb_buffer_pool_reads','0',''), ('100884','48015','2','10','','0',''), ('100885','48016','1','12','$.Innodb_buffer_pool_read_requests','0',''), ('100886','48017','1','12','$.Innodb_buffer_pool_read_requests','0',''), ('100887','48017','2','10','','0',''), ('100888','48018','1','12','$.Innodb_buffer_pool_wait_free','0',''), ('100889','48018','2','20','6h','0',''), ('100890','48019','1','12','$.Innodb_num_open_files','0',''), ('100891','48019','2','20','6h','0',''), ('100892','48020','1','12','$.Innodb_os_log_written','0',''), ('100893','48020','2','20','6h','0',''), ('100894','48021','1','12','$.Innodb_row_lock_time','0',''), ('100895','48021','2','1','0.001','0',''), ('100896','48021','3','20','1h','0',''), ('100897','48022','1','12','$.Innodb_row_lock_time_max','0',''), ('100898','48022','2','1','0.001','0',''), ('100899','48022','3','20','1h','0',''), ('100900','48023','1','12','$.Innodb_row_lock_waits','0',''), ('100901','48024','1','12','$.Max_used_connections','0',''), ('100902','48024','2','20','1h','0',''), ('100903','48025','1','12','$.Open_tables','0',''), ('100904','48025','2','20','6h','0',''), ('100905','48026','1','12','$.Open_table_definitions','0',''), ('100906','48026','2','20','6h','0',''), ('100907','48027','1','12','$.Queries','0',''), ('100908','48027','2','10','','0',''), ('100909','48028','1','12','$.Questions','0',''), ('100910','48028','2','10','','0',''), ('100911','48029','1','12','$.Slow_queries','0',''), ('100912','48029','2','10','','0',''), ('100913','48030','1','12','$.Threads_cached','0',''), ('100914','48031','1','12','$.Threads_connected','0',''), ('100915','48032','1','12','$.Threads_created','0',''), ('100916','48032','2','10','','0',''), ('100917','48033','1','12','$.Threads_running','0',''), ('100918','48034','1','12','$.Uptime','0',''), ('100919','48035','1','20','1d','0',''), ('100920','48036','1','21','return JSON.stringify(value.search(''MariaDB'')>-1 ? [{''{#SINGLETON}'': ''''}] : []);','0',''), ('100921','48037','1','20','1d','0',''), ('100922','48038','1','20','1h','0',''), ('100923','48040','1','12','$.Binlog_commits','0',''), ('100924','48041','1','12','$.Binlog_group_commits','0',''), ('100925','48042','1','12','$.Master_gtid_wait_count','0',''), ('100926','48042','2','20','6h','0',''), ('100927','48043','1','12','$.Master_gtid_wait_timeouts','0',''), ('100928','48043','2','20','6h','0',''), ('100929','48044','1','12','$.Master_gtid_wait_time','0',''), ('100930','48044','2','20','6h','0',''), ('100931','48045','1','12','$.Seconds_Behind_Master','0',''), ('100932','48045','2','14',E'\\d+','3','Replication is not performed.'), ('100933','48045','3','20','1h','0',''), ('100934','48046','1','12','$.Slave_IO_Running','0',''), ('100935','48046','2','20','1h','0',''), ('100936','48047','1','12','$.Slave_SQL_Running','0',''), ('100937','48047','2','20','1h','0',''), ('100938','48048','1','12','$.Slave_SQL_Running_State','0',''), ('100939','48048','2','20','6h','0',''), ('100940','48052','1','20','6h','0',''), ('100941','48053','1','21','return value.indexOf(''is alive'') !== -1 ? 1 : 0;','0',''), ('100942','48053','2','20','10m','0',''), ('100943','48054','1','5',E'(Server version)\\s+(.+) \\2','0',''), ('100944','48054','2','20','1d','0',''), ('100945','48055','1','11','/resultset/row[field/text()=''Aborted_clients'']/field[@name=''Value'']/text()','0',''), ('100946','48055','2','10','','0',''), ('100947','48056','1','11','/resultset/row[field/text()=''Aborted_connects'']/field[@name=''Value'']/text()','0',''), ('100948','48056','2','10','','0',''), ('100949','48057','1','11','/resultset/row[field/text()=''Binlog_cache_disk_use'']/field[@name=''Value'']/text()','0',''), ('100950','48057','2','20','6h','0',''), ('100951','48058','1','11','/resultset/row[field/text()=''Bytes_received'']/field[@name=''Value'']/text()','0',''), ('100952','48058','2','10','','0',''), ('100953','48059','1','11','/resultset/row[field/text()=''Bytes_sent'']/field[@name=''Value'']/text()','0',''), ('100954','48059','2','10','','0',''), ('100955','48060','1','11','/resultset/row[field/text()=''Com_delete'']/field[@name=''Value'']/text()','0',''), ('100956','48060','2','10','','0',''), ('100957','48061','1','11','/resultset/row[field/text()=''Com_insert'']/field[@name=''Value'']/text()','0',''), ('100958','48061','2','10','','0',''), ('100959','48062','1','11','/resultset/row[field/text()=''Com_select'']/field[@name=''Value'']/text()','0',''), ('100960','48062','2','10','','0',''), ('100961','48063','1','11','/resultset/row[field/text()=''Com_update'']/field[@name=''Value'']/text()','0',''), ('100962','48063','2','10','','0',''), ('100963','48064','1','11','/resultset/row[field/text()=''Connections'']/field[@name=''Value'']/text()','0',''), ('100964','48064','2','10','','0',''), ('100965','48065','1','11','/resultset/row[field/text()=''Connection_errors_accept'']/field[@name=''Value'']/text()','0',''), ('100966','48065','2','10','','0',''), ('100967','48066','1','11','/resultset/row[field/text()=''Connection_errors_internal'']/field[@name=''Value'']/text()','0',''), ('100968','48066','2','10','','0',''), ('100969','48067','1','11','/resultset/row[field/text()=''Connection_errors_max_connections'']/field[@name=''Value'']/text()','0',''), ('100970','48067','2','10','','0',''), ('100971','48068','1','11','/resultset/row[field/text()=''Connection_errors_peer_address'']/field[@name=''Value'']/text()','0',''), ('100972','48068','2','10','','0',''), ('100973','48069','1','11','/resultset/row[field/text()=''Connection_errors_select'']/field[@name=''Value'']/text()','0',''), ('100974','48069','2','10','','0',''), ('100975','48070','1','11','/resultset/row[field/text()=''Connection_errors_tcpwrap'']/field[@name=''Value'']/text()','0',''), ('100976','48070','2','10','','0',''), ('100977','48071','1','11','/resultset/row[field/text()=''Created_tmp_disk_tables'']/field[@name=''Value'']/text()','0',''), ('100978','48071','2','10','','0',''), ('100979','48072','1','11','/resultset/row[field/text()=''Created_tmp_files'']/field[@name=''Value'']/text()','0',''), ('100980','48072','2','10','','0',''), ('100981','48073','1','11','/resultset/row[field/text()=''Created_tmp_tables'']/field[@name=''Value'']/text()','0',''), ('100982','48073','2','10','','0',''), ('100983','48074','1','11','/resultset/row[field/text()=''Innodb_buffer_pool_pages_free'']/field[@name=''Value'']/text()','0',''), ('100984','48075','1','11','/resultset/row[field/text()=''Innodb_buffer_pool_pages_total'']/field[@name=''Value'']/text()','0',''), ('100985','48075','2','20','1h','0',''), ('100986','48076','1','11','/resultset/row[field/text()=''Innodb_buffer_pool_reads'']/field[@name=''Value'']/text()','0',''), ('100987','48077','1','11','/resultset/row[field/text()=''Innodb_buffer_pool_reads'']/field[@name=''Value'']/text()','0',''), ('100988','48077','2','10','','0',''), ('100989','48078','1','11','/resultset/row[field/text()=''Innodb_buffer_pool_read_requests'']/field[@name=''Value'']/text()','0',''), ('100990','48079','1','11','/resultset/row[field/text()=''Innodb_buffer_pool_read_requests'']/field[@name=''Value'']/text()','0',''), ('100991','48079','2','10','','0',''), ('100992','48080','1','11','/resultset/row[field/text()=''Innodb_buffer_pool_wait_free'']/field[@name=''Value'']/text()','0',''), ('100993','48080','2','20','6h','0',''), ('100994','48081','1','11','/resultset/row[field/text()=''Innodb_num_open_files'']/field[@name=''Value'']/text()','0',''), ('100995','48081','2','20','6h','0',''), ('100996','48082','1','11','/resultset/row[field/text()=''Innodb_os_log_written'']/field[@name=''Value'']/text()','0',''), ('100997','48083','1','11','/resultset/row[field/text()=''Innodb_row_lock_time'']/field[@name=''Value'']/text()','0',''), ('100998','48083','2','1','0.001','0',''), ('100999','48083','3','20','1h','0',''), ('101000','48084','1','11','/resultset/row[field/text()=''Innodb_row_lock_time_max'']/field[@name=''Value'']/text()','0',''), ('101001','48084','2','1','0.001','0',''), ('101002','48084','3','20','1h','0',''), ('101003','48085','1','11','/resultset/row[field/text()=''Innodb_row_lock_waits'']/field[@name=''Value'']/text()','0',''), ('101004','48086','1','11','/resultset/row[field/text()=''Max_used_connections'']/field[@name=''Value'']/text()','0',''), ('101005','48086','2','20','1h','0',''), ('101006','48087','1','11','/resultset/row[field/text()=''Open_tables'']/field[@name=''Value'']/text()','0',''), ('101007','48087','2','20','6h','0',''), ('101008','48088','1','11','/resultset/row[field/text()=''Open_table_definitions'']/field[@name=''Value'']/text()','0',''), ('101009','48088','2','20','6h','0',''), ('101010','48089','1','11','/resultset/row[field/text()=''Queries'']/field[@name=''Value'']/text()','0',''), ('101011','48089','2','10','','0',''), ('101012','48090','1','11','/resultset/row[field/text()=''Questions'']/field[@name=''Value'']/text()','0',''), ('101013','48090','2','10','','0',''), ('101014','48091','1','11','/resultset/row[field/text()=''Slow_queries'']/field[@name=''Value'']/text()','0',''), ('101015','48091','2','10','','0',''), ('101016','48092','1','11','/resultset/row[field/text()=''Threads_cached'']/field[@name=''Value'']/text()','0',''), ('101017','48093','1','11','/resultset/row[field/text()=''Threads_connected'']/field[@name=''Value'']/text()','0',''), ('101018','48094','1','11','/resultset/row[field/text()=''Threads_created'']/field[@name=''Value'']/text()','0',''), ('101019','48094','2','10','','0',''), ('101020','48095','1','11','/resultset/row[field/text()=''Threads_running'']/field[@name=''Value'']/text()','0',''), ('101021','48096','1','11','/resultset/row[field/text()=''Uptime'']/field[@name=''Value'']/text()','0',''), ('101022','48097','1','21',E'return JSON.stringify(value.split("\\n").map(function (name) { return ({"{#DBNAME}": name}); }));','0',''), ('101023','48097','2','20','1d','0',''), ('101024','48098','1','21','return JSON.stringify(value.search(''MariaDB'')>-1 ? [{''{#SINGLETON}'': ''''}] : []);','0',''), ('101025','48099','1','21','var matches = value.match(/Master_Host.*>(.*)<.*/); if (matches) { return JSON.stringify([{"{#MASTER_HOST}": matches[1]}]); } return ''[]'';','0',''), ('101026','48099','2','20','1d','0',''), ('101027','48100','1','20','1h','0',''), ('101028','48102','1','11','/resultset/row[field/text()=''Binlog_commits'']/field[@name=''Value'']/text()','0',''), ('101029','48103','1','11','/resultset/row[field/text()=''Binlog_group_commits'']/field[@name=''Value'']/text()','0',''), ('101030','48104','1','11','/resultset/row[field/text()=''Master_gtid_wait_count'']/field[@name=''Value'']/text()','0',''), ('101031','48104','2','20','6h','0',''), ('101032','48105','1','11','/resultset/row[field/text()=''Master_gtid_wait_timeouts'']/field[@name=''Value'']/text()','0',''), ('101033','48105','2','20','6h','0',''), ('101034','48106','1','11','/resultset/row[field/text()=''Master_gtid_wait_time'']/field[@name=''Value'']/text()','0',''), ('101035','48106','2','20','6h','0',''), ('101036','48107','1','11','/resultset/row/field[@name=''Seconds_Behind_Master'']/text()','0',''), ('101037','48107','2','20','1h','0',''), ('101038','48107','3','15','null','3','Replication is not performed.'), ('101039','48108','1','11','/resultset/row/field[@name=''Slave_IO_Running'']/text()','0',''), ('101040','48108','2','20','1h','0',''), ('101041','48109','1','11','/resultset/row/field[@name=''Slave_SQL_Running'']/text()','0',''), ('101042','48109','2','20','1h','0',''), ('101043','48110','1','11','/resultset/row[field/text()=''Slave_SQL_Running_State'']/field[@name=''Value'']/text()','0',''), ('101044','48110','2','20','6h','0',''), ('101045','48121','1','20','1h','0',''), ('101046','48130','1','20','1d','0',''), ('101047','48132','1','12','$.archived_count','0',''), ('101048','48133','1','12','$.count_files','0',''), ('101049','48134','1','12','$.failed_count','0',''), ('101050','48135','1','12','$.size_files','0',''), ('101051','48136','1','12','$.buffers_alloc','0',''), ('101052','48136','2','10','','0',''), ('101053','48137','1','12','$.buffers_backend','1',''), ('101054','48137','2','10','','0',''), ('101055','48138','1','12','$.buffers_backend_fsync','1',''), ('101056','48138','2','10','','0',''), ('101057','48139','1','12','$.buffers_checkpoint','0',''), ('101058','48139','2','10','','0',''), ('101059','48140','1','12','$.buffers_clean','0',''), ('101060','48140','2','10','','0',''), ('101061','48141','1','12','$.checkpoints_req','0',''), ('101062','48141','2','10','','0',''), ('101063','48142','1','12','$.checkpoints_timed','0',''), ('101064','48142','2','10','','0',''), ('101065','48143','1','12','$.checkpoint_sync_time','0',''), ('101066','48143','2','1','0.001','0',''), ('101067','48143','3','10','','0',''), ('101068','48144','1','12','$.checkpoint_write_time','0',''), ('101069','48144','2','1','0.001','0',''), ('101070','48144','3','10','','0',''), ('101071','48145','1','12','$.maxwritten_clean','0',''), ('101072','48145','2','10','','0',''), ('101073','48146','1','12','$.active','0',''), ('101074','48147','1','12','$.disabled','0',''), ('101075','48148','1','12','$.fastpath_function_call','0',''), ('101076','48149','1','12','$.idle','0',''), ('101077','48150','1','12','$.idle_in_transaction','0',''), ('101078','48151','1','12','$.idle_in_transaction_aborted','0',''), ('101079','48152','1','12','$.prepared','0',''), ('101080','48153','1','12','$.total','0',''), ('101081','48154','1','12','$.total_pct','0',''), ('101082','48155','1','12','$.waiting','0',''), ('101083','48156','1','12','$.blks_hit','0',''), ('101084','48156','2','10','','0',''), ('101085','48157','1','12','$.blks_read','0',''), ('101086','48157','2','10','','0',''), ('101087','48158','1','12','$.blk_read_time','0',''), ('101088','48158','2','1','0.001','0',''), ('101089','48159','1','12','$.blk_write_time','0',''), ('101090','48159','2','1','0.001','0',''), ('101091','48160','1','12','$.checksum_failures','0',''), ('101092','48160','2','14',E'^\\d*$','2','-2'), ('101093','48160','3','10','','2','-1'), ('101094','48161','1','12','$.conflicts','0',''), ('101095','48161','2','10','','0',''), ('101096','48162','1','12','$.deadlocks','0',''), ('101097','48162','2','10','','0',''), ('101098','48163','1','12','$.numbackends','0',''), ('101099','48164','1','12','$.temp_bytes','0',''), ('101100','48164','2','10','','0',''), ('101101','48165','1','12','$.temp_files','0',''), ('101102','48165','2','10','','0',''), ('101103','48166','1','12','$.tup_deleted','0',''), ('101104','48166','2','10','','0',''), ('101105','48167','1','12','$.tup_fetched','0',''), ('101106','48167','2','10','','0',''), ('101107','48168','1','12','$.tup_inserted','0',''), ('101108','48168','2','10','','0',''), ('101109','48169','1','12','$.tup_returned','0',''), ('101110','48169','2','10','','0',''), ('101111','48170','1','12','$.tup_updated','0',''), ('101112','48170','2','10','','0',''), ('101113','48171','1','12','$.xact_commit','0',''), ('101114','48171','2','10','','0',''), ('101115','48172','1','12','$.xact_rollback','0',''), ('101116','48172','2','10','','0',''), ('101117','48173','1','12','$.count','0',''), ('101118','48174','1','12','$.receive','0',''), ('101119','48174','2','10','','0',''), ('101120','48175','1','12','$.write','0',''), ('101121','48175','2','10','','0',''), ('101122','48181','1','12','$[''{#DBNAME}'']','1',''), ('101123','48182','1','12','$[''{#DBNAME}'']','1',''), ('101124','48183','1','12','$[''{#DBNAME}'']','1',''), ('101125','48184','1','12','$[''{#APPLICATION_NAME}'']','1',''), ('101126','48185','1','12','$.blks_hit','0',''), ('101127','48185','2','10','','0',''), ('101128','48186','1','12','$.blks_read','0',''), ('101129','48186','2','10','','0',''), ('101130','48187','1','12','$.blk_read_time','0',''), ('101131','48187','2','1','0.001','0',''), ('101132','48187','3','10','','0',''), ('101133','48188','1','12','$.blk_write_time','0',''), ('101134','48188','2','1','0.001','0',''), ('101135','48188','3','10','','0',''), ('101136','48189','1','12','$.checksum_failures','0',''), ('101137','48189','2','14',E'^\\d*$','2','-2'), ('101138','48189','3','10','','2','-1'), ('101139','48190','1','12','$.conflicts','0',''), ('101140','48190','2','10','','0',''), ('101141','48191','1','12','$.deadlocks','0',''), ('101142','48191','2','10','','0',''), ('101143','48192','1','12','$.numbackends','0',''), ('101144','48193','1','12','$.temp_bytes','0',''), ('101145','48193','2','10','','0',''), ('101146','48194','1','12','$.temp_files','0',''), ('101147','48194','2','10','','0',''), ('101148','48195','1','12','$.tup_deleted','0',''), ('101149','48195','2','10','','0',''), ('101150','48196','1','12','$.tup_fetched','0',''), ('101151','48196','2','10','','0',''), ('101152','48197','1','12','$.tup_inserted','0',''), ('101153','48197','2','10','','0',''), ('101154','48198','1','12','$.tup_returned','0',''), ('101155','48198','2','10','','0',''), ('101156','48199','1','12','$.tup_updated','0',''), ('101157','48199','2','10','','0',''), ('101158','48200','1','12','$.xact_commit','0',''), ('101159','48200','2','10','','0',''), ('101160','48201','1','12','$.xact_rollback','0',''), ('101161','48201','2','10','','0',''), ('101162','48202','1','12','$.accessexclusive','0',''), ('101163','48203','1','12','$.accessshare','0',''), ('101164','48204','1','12','$.exclusive','0',''), ('101165','48205','1','12','$.rowexclusive','0',''), ('101166','48206','1','12','$.rowshare','1',''), ('101167','48207','1','12','$.sharerowexclusive','0',''), ('101168','48208','1','12','$.shareupdateexclusive','0',''), ('101169','48209','1','12','$.share','0',''), ('101170','48210','1','12','$.total','0',''), ('101171','48211','1','12','$.mro_slow_count','0',''), ('101172','48212','1','12','$.mro_time_max','0',''), ('101173','48213','1','12','$.mro_time_sum','0',''), ('101174','48214','1','12','$.query_slow_count','0',''), ('101175','48215','1','12','$.query_time_max','0',''), ('101176','48216','1','12','$.query_time_sum','0',''), ('101177','48217','1','12','$.tx_slow_count','0',''), ('101178','48218','1','12','$.tx_time_max','0',''), ('101179','48219','1','12','$.tx_time_sum','0',''), ('101180','48220','1','12','$.flush_lag','0',''), ('101181','48221','1','12','$.replay_lag','0',''), ('101182','48222','1','12','$.write_lag','0',''), ('101183','48225','1','20','1h','0',''), ('101184','48229','1','5',E'Time:\\s+(\\d+\\.\\d+)\\s+ms \\1','0',''), ('101185','48229','2','1','0.001','0',''), ('101186','48230','1','21','return value.search(/accepting connections/)>0 ? 1 : 0','0',''), ('101187','48230','2','20','1h','0',''), ('101188','48238','1','20','1d','0',''), ('101189','48240','1','12','$.buffers_alloc','0',''), ('101190','48240','2','10','','0',''), ('101191','48241','1','12','$.buffers_backend','1',''), ('101192','48241','2','10','','0',''), ('101193','48242','1','12','$.buffers_backend_fsync','1',''), ('101194','48242','2','10','','0',''), ('101195','48243','1','12','$.buffers_checkpoint','0',''), ('101196','48243','2','10','','0',''), ('101197','48244','1','12','$.buffers_clean','0',''), ('101198','48244','2','10','','0',''), ('101199','48245','1','12','$.checkpoints_req','0',''), ('101200','48245','2','10','','0',''), ('101201','48246','1','12','$.checkpoints_timed','0',''), ('101202','48246','2','10','','0',''), ('101203','48247','1','12','$.checkpoint_sync_time','0',''), ('101204','48247','2','1','0.001','0',''), ('101205','48247','3','10','','0',''), ('101206','48248','1','12','$.checkpoint_write_time','0',''), ('101207','48248','2','1','0.001','0',''), ('101208','48248','3','10','','0',''), ('101209','48249','1','12','$.maxwritten_clean','0',''), ('101210','48249','2','10','','0',''), ('101211','48250','1','12','$.active','0',''), ('101212','48251','1','12','$.idle','0',''), ('101213','48252','1','12','$.idle_in_transaction','0',''), ('101214','48253','1','12','$.prepared','0',''), ('101215','48254','1','12','$.total','0',''), ('101216','48255','1','12','$.total_pct','0',''), ('101217','48256','1','12','$.waiting','0',''), ('101218','48257','1','12','$.active','0',''), ('101219','48258','1','12','$.idle','0',''), ('101220','48259','1','12','$.prepared','0',''), ('101221','48260','1','12','$.waiting','0',''), ('101222','48261','1','12','$.count','0',''), ('101223','48262','1','12','$.write','0',''), ('101224','48262','2','10','','0',''), ('101225','48267','1','12','$[''{#DBNAME}'']','1',''), ('101226','48268','1','12','$.prc_before_av','0',''), ('101227','48269','1','12','$.prc_before_stop','0',''), ('101228','48270','1','12','$[''{#DBNAME}''].total','0',''), ('101229','48271','1','12','$[''{#DBNAME}'']','1',''), ('101230','48272','1','12','$.idx','0',''), ('101231','48272','2','10','','0',''), ('101232','48273','1','12','$.seq','0',''), ('101233','48273','2','10','','0',''), ('101234','48274','1','12','$.blks_hit','0',''), ('101235','48274','2','10','','0',''), ('101236','48275','1','12','$.blks_read','0',''), ('101237','48275','2','10','','0',''), ('101238','48276','1','12','$.conflicts','0',''), ('101239','48276','2','10','','0',''), ('101240','48277','1','12','$.deadlocks','0',''), ('101241','48277','2','10','','0',''), ('101242','48278','1','12','$.temp_bytes','0',''), ('101243','48278','2','10','','0',''), ('101244','48279','1','12','$.temp_files','0',''), ('101245','48279','2','10','','0',''), ('101246','48280','1','12','$.tup_deleted','0',''), ('101247','48280','2','10','','0',''), ('101248','48281','1','12','$.tup_fetched','0',''), ('101249','48281','2','10','','0',''), ('101250','48282','1','12','$.tup_inserted','0',''), ('101251','48282','2','10','','0',''), ('101252','48283','1','12','$.tup_returned','0',''), ('101253','48283','2','10','','0',''), ('101254','48284','1','12','$.tup_updated','0',''), ('101255','48284','2','10','','0',''), ('101256','48285','1','12','$.xact_commit','0',''), ('101257','48285','2','10','','0',''), ('101258','48286','1','12','$.xact_rollback','0',''), ('101259','48286','2','10','','0',''), ('101260','48287','1','12','$.mro_slow_count','0',''), ('101261','48288','1','12','$.mro_time_max','0',''), ('101262','48289','1','12','$.mro_time_sum','0',''), ('101263','48290','1','12','$.query_slow_count','0',''), ('101264','48291','1','12','$.query_time_max','0',''), ('101265','48292','1','12','$.query_time_sum','0',''), ('101266','48293','1','12','$.tx_slow_count','0',''), ('101267','48294','1','12','$.tx_time_max','0',''), ('101268','48295','1','12','$.tx_time_sum','0',''), ('101269','48308','1','20','12h','0',''), ('101270','48309','1','20','12h','0',''), ('101271','48310','1','20','1d','0',''), ('101272','48311','1','20','1d','0',''), ('101273','48312','1','26','-1','2','0'), ('101274','48312','2','1','0.01','0',''), ('101275','48313','1','20','12h','0',''), ('101276','48314','1','20','12h','0',''), ('101277','48315','1','1','0.01','0',''), ('101278','48316','1','20','12h','0',''), ('101279','48317','1','5',E'kernel (JUNOS [0-9a-zA-Z\\.\\-]+) \\1','0',''), ('101280','48317','2','20','1d','0',''), ('101281','48320','1','29','{#BGPM2_PEER_INDEX} 1.3.6.1.4.1.2636.5.1.1.2.1.1.1.14 0 {#BGPM2_PEER_REMOTE_ADDR} 1.3.6.1.4.1.2636.5.1.1.2.1.1.1.11 0 {#BGPM2_PEER_REMOTE_AS} 1.3.6.1.4.1.2636.5.1.1.2.1.1.1.13 0','3','BGP instance is not running'), ('101282','48320','2','21','var bgp = JSON.parse(value); bgp.forEach(function (item, index, array) { var ip = item["{#BGPM2_PEER_REMOTE_ADDR}"]; var parts = ip.trim().split('' ''); if (parts.length === 4) { for (var i = 0; i < parts.length; ++i) { parts[i] = parseInt(parts[i], 16); } ip = parts.join(''.''); } else if (parts.length == 16) { var ipSegments = []; for (var i = 0; i < parts.length; i += 4) { var ipv6 = parts.slice(i, i + 4).join(''''); ipv6 = parseInt(ipv6, 16).toString(16); ipSegments.push(ipv6 || ''0''); } ip = ipSegments.join('':'').toLowerCase(); var maxZeros = 0, currZeros = 0, startIdx = -1, maxStartIdx = -1; for (i = 0; i < ipSegments.length; i++) { if (ipSegments[i] === ''0'') { if (currZeros === 0) startIdx = i; currZeros++; } else { if (currZeros > maxZeros) { maxZeros = currZeros; maxStartIdx = startIdx; } currZeros = 0; } } if (currZeros > maxZeros) { maxZeros = currZeros; maxStartIdx = startIdx; } if (maxZeros > 1) { ipSegments.splice(maxStartIdx, maxZeros, ''''); ip = ipSegments.join('':'').replace(/(^:|:$)/, ''''); } } array[index]["{#BGPM2_PEER_REMOTE_ADDR}"] = ip; }); return JSON.stringify(bgp);','0',''), ('101283','48320','3','20','1h','0',''), ('101284','48321','1','29','{#BGPM2_PREFIX_AFI} 1.3.6.1.4.1.2636.5.1.1.2.6.2.1.1 0 {#BGPM2_PREFIX_SAFI} 1.3.6.1.4.1.2636.5.1.1.2.6.2.1.2 0','3','BGP instance is not running'), ('101285','48321','2','21','var inArray = JSON.parse(value); var afiSafiMap = { ''1.1'': ''IPv4 unicast'', ''1.2'': ''IPv4 multicast'', ''2.1'': ''IPv6 unicast'', ''2.2'': ''IPv6 multicast'', ''25.65'': ''BGP-VPLS/BGP-L2VPN'', ''1.128'': ''L3VPN IPv4 unicast'', ''1.129'': ''L3VPN IPv4 multicast'', ''2.128'': ''L3VPN IPv6 unicast'', ''2.129'': ''L3VPN IPv6 multicast'', ''1.132'': ''RT-Constrain'', ''1.133'': ''Flow-spec'', ''1.134'': ''Flow-spec'', ''3.128'': ''CLNS VPN'', ''1.5'': ''NG-MVPN IPv4'', ''2.5'': ''NG-MVPN IPv6'', ''1.66'': ''MDT-SAFI'', ''1.4'': ''labeled IPv4'', ''2.4'': ''labeled IPv6 (6PE)'' }; var outArr = []; inArray.forEach(function (item) { item[''{#BGPM2_AFI_SAFI}''] = afiSafiMap[item[''{#SNMPINDEX}''].slice(2)] === undefined ? "" : afiSafiMap[item[''{#SNMPINDEX}''].slice(2)]; outArr.push(item) }); return JSON.stringify(outArr);','0',''), ('101286','48321','3','20','1h','0',''), ('101287','48322','1','29','{#SNMPVALUE} 1.3.6.1.4.1.2636.3.1.13.1.5 0','1',''), ('101288','48322','2','20','1h','0',''), ('101289','48323','1','29','{#MODULELANECOUNT} 1.3.6.1.4.1.2636.3.60.1.1.1.1.30 0 {#LASERTEMP} 1.3.6.1.4.1.2636.3.60.1.2.1.1.9 0 {#RXLASER} 1.3.6.1.4.1.2636.3.60.1.2.1.1.6 0 {#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0 {#LANEINDEX} 1.3.6.1.4.1.2636.3.60.1.2.1.1.1 0','1',''), ('101290','48323','2','21','var inputArray = JSON.parse(value); var transformedArray = inputArray.reduce(function (acc, item) { var snmpIndex = item["{#SNMPINDEX}"]; var mainIndex = snmpIndex.split(''.'')[0]; if (item["{#LANEINDEX}"] !== undefined) { var portData = null; for (var i = 0; i < inputArray.length; i++) { if (inputArray[i]["{#SNMPINDEX}"] === mainIndex) { portData = inputArray[i]; break; } } if (portData) { acc.push(Object.assign( {}, item, { "{#PORTINDEX}": mainIndex }, portData )); } } return acc; }, []); return JSON.stringify(transformedArray);','0',''), ('101291','48323','3','20','1h','0',''), ('101292','48324','1','29','{#SNMPVALUE} 1.3.6.1.4.1.2636.3.1.13.1.5.4 0','1',''), ('101293','48324','2','20','1h','0',''), ('101294','48325','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('101295','48325','2','20','1h','0',''), ('101296','48326','1','29','{#SNMPVALUE} 1.3.6.1.2.1.10.7.2.1.19 0 {#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0','0',''), ('101297','48326','2','20','1h','0',''), ('101298','48327','1','29','{#OSPF_IP_ADDR} 1.3.6.1.2.1.14.10.1.1 0','3','OSPF instance is not running'), ('101299','48327','2','20','1h','0',''), ('101300','48328','1','29','{#OSPFV3_IP_ADDR} 1.3.6.1.4.1.2636.5.4.1.1.9.1.5 0','3','OSPF instance is not running'), ('101301','48328','2','21','var ospf = JSON.parse(value); ospf.forEach(function (item, index, array) { var ip = item["{#OSPFV3_IP_ADDR}"]; var parts = ip.trim().split('' ''); if (parts.length === 4) { for (var i = 0; i < parts.length; ++i) { parts[i] = parseInt(parts[i], 16); } ip = parts.join(''.''); } else if (parts.length == 16) { var ipSegments = []; for (var i = 0; i < parts.length; i += 4) { var ipv6 = parts.slice(i, i + 4).join(''''); ipv6 = parseInt(ipv6, 16).toString(16); ipSegments.push(ipv6 || ''0''); } ip = ipSegments.join('':'').toLowerCase(); var maxZeros = 0, currZeros = 0, startIdx = -1, maxStartIdx = -1; for (i = 0; i < ipSegments.length; i++) { if (ipSegments[i] === ''0'') { if (currZeros === 0) startIdx = i; currZeros++; } else { if (currZeros > maxZeros) { maxZeros = currZeros; maxStartIdx = startIdx; } currZeros = 0; } } if (currZeros > maxZeros) { maxZeros = currZeros; maxStartIdx = startIdx; } if (maxZeros > 1) { ipSegments.splice(maxStartIdx, maxZeros, ''''); ip = ipSegments.join('':'').replace(/(^:|:$)/, ''''); } } array[index]["{#OSPFV3_IP_ADDR}"] = ip; }); return JSON.stringify(ospf);','0',''), ('101302','48328','3','20','1h','0',''), ('101303','48329','1','29','{#SNMPVALUE} 1.3.6.1.4.1.2636.3.1.13.1.5.2 0','1',''), ('101304','48329','2','20','1h','0',''), ('101305','48330','1','29','{#SNMPVALUE} 1.3.6.1.4.1.2636.3.1.14.1.5 0 {#CHASSISDESCR} 1.3.6.1.4.1.2636.3.1.14.1.16 0','1',''), ('101306','48330','2','20','1h','0',''), ('101307','48331','1','29','{#SNMPVALUE} 1.3.6.1.4.1.2636.3.1.13.1.7 0 {#SENSOR_INFO} 1.3.6.1.4.1.2636.3.1.13.1.5 0','1',''), ('101308','48331','2','20','1h','0',''), ('101309','48332','1','28','1.3.6.1.4.1.2636.5.1.1.2.4.1.1.1.{#SNMPINDEX} 0','0',''), ('101310','48333','1','28','1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.{#SNMPINDEX} 0','0',''), ('101311','48334','1','28','1.3.6.1.4.1.2636.5.1.1.2.1.1.1.3.{#SNMPINDEX} 0','0',''), ('101312','48335','1','28','1.3.6.1.4.1.2636.5.1.1.2.6.2.1.8.{#SNMPINDEX} 0','0',''), ('101313','48336','1','28','1.3.6.1.4.1.2636.5.1.1.2.6.2.1.11.{#SNMPINDEX} 0','0',''), ('101314','48337','1','28','1.3.6.1.4.1.2636.5.1.1.2.6.2.1.10.{#SNMPINDEX} 0','0',''), ('101315','48338','1','28','1.3.6.1.4.1.2636.5.1.1.2.6.2.1.7.{#SNMPINDEX} 0','0',''), ('101316','48339','1','28','1.3.6.1.4.1.2636.5.1.1.2.6.2.1.9.{#SNMPINDEX} 0','0',''), ('101317','48340','1','28','1.3.6.1.4.1.2636.3.1.13.1.8.{#SNMPINDEX} 0','0',''), ('101318','48340','2','20','3m','0',''), ('101319','48341','1','28','1.3.6.1.4.1.2636.3.1.13.1.11.{#SNMPINDEX} 0','0',''), ('101320','48341','2','20','3m','0',''), ('101321','48342','1','28','1.3.6.1.4.1.2636.3.60.1.2.1.1.2.{#PORTINDEX}.{#LANEINDEX} 0','0',''), ('101322','48342','2','21','function parseBits(bitString) { var bitsArray = bitString.split('' ''); var bits = ''''; for (var i = 0; i < bitsArray.length; i++) { var binaryString = parseInt(bitsArray[i], 16).toString(2); while (binaryString.length < 8) { binaryString = ''0'' + binaryString; } bits += binaryString; } var bitFlags = { domLaneRxLaserPowerHighAlarm: 0, domLaneRxLaserPowerLowAlarm: 1, domLaneTxLaserBiasCurrentHighAlarm: 2, domLaneTxLaserBiasCurrentLowAlarm: 3, domLaneTxLaserOutputPowerHighAlarm: 4, domLaneTxLaserOutputPowerLowAlarm: 5, domLaneLaserTemperatureHighAlarm: 6, domLaneLaserTemperatureLowAlarm: 7 }; var result = {}; for (var flag in bitFlags) { if (bitFlags.hasOwnProperty(flag)) { var index = bitFlags[flag]; result[flag] = bits[index] === ''1''; } } return result; } return JSON.stringify(parseBits(value));','0',''), ('101323','48343','1','28','1.3.6.1.4.1.2636.3.60.1.2.1.1.6.{#PORTINDEX}.{#LANEINDEX} 0','0',''), ('101324','48343','2','1','0.01','0',''), ('101325','48344','1','28','1.3.6.1.4.1.2636.3.60.1.2.1.1.8.{#PORTINDEX}.{#LANEINDEX} 0','0',''), ('101326','48344','2','1','0.01','0',''), ('101327','48345','1','28','1.3.6.1.4.1.2636.3.1.13.1.6.4.{#SNMPINDEX} 0','0',''), ('101328','48345','2','20','3m','0',''), ('101329','48346','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('101330','48346','2','10','','0',''), ('101331','48346','3','20','3m','0',''), ('101332','48347','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('101333','48347','2','10','','0',''), ('101334','48347','3','20','3m','0',''), ('101335','48348','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('101336','48348','2','10','','0',''), ('101337','48348','3','1','8','0',''), ('101338','48349','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('101339','48349','2','10','','0',''), ('101340','48349','3','20','3m','0',''), ('101341','48350','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('101342','48350','2','10','','0',''), ('101343','48350','3','20','3m','0',''), ('101344','48351','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('101345','48351','2','10','','0',''), ('101346','48351','3','1','8','0',''), ('101347','48352','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('101348','48352','2','1','1000000','0',''), ('101349','48352','3','20','1h','0',''), ('101350','48353','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('101351','48354','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('101352','48354','2','20','1d','0',''), ('101353','48355','1','28','1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} 0','0',''), ('101354','48356','1','28','1.3.6.1.2.1.14.10.1.7.{#SNMPINDEX} 0','0',''), ('101355','48357','1','28','1.3.6.1.2.1.14.10.1.11.{#SNMPINDEX} 0','0',''), ('101356','48358','1','28','1.3.6.1.2.1.14.10.1.3.{#SNMPINDEX} 0','0',''), ('101357','48359','1','28','1.3.6.1.2.1.14.10.1.6.{#SNMPINDEX} 0','0',''), ('101358','48360','1','28','1.3.6.1.4.1.2636.5.4.1.1.9.1.9.{#SNMPINDEX} 0','0',''), ('101359','48361','1','28','1.3.6.1.4.1.2636.5.4.1.1.9.1.11.{#SNMPINDEX} 0','0',''), ('101360','48362','1','28','1.3.6.1.4.1.2636.5.4.1.1.9.1.7.{#SNMPINDEX} 0','0',''), ('101361','48363','1','28','1.3.6.1.4.1.2636.5.4.1.1.9.1.8.{#SNMPINDEX} 0','0',''), ('101362','48364','1','28','1.3.6.1.4.1.2636.3.1.13.1.6.2.{#SNMPINDEX} 0','0',''), ('101363','48364','2','20','3m','0',''), ('101364','48365','1','28','1.3.6.1.4.1.2636.3.1.14.1.7.{#SNMPINDEX} 0','0',''), ('101365','48365','2','20','3m','0',''), ('101366','48366','1','28','1.3.6.1.4.1.2636.3.1.14.1.10.{#SNMPINDEX} 0','0',''), ('101367','48366','2','20','3m','0',''), ('101368','48367','1','28','1.3.6.1.4.1.2636.3.1.13.1.7.{#SNMPINDEX} 0','0',''), ('101369','48367','2','20','3m','0',''), ('101370','48370','1','12','$.health.summary','1',''), ('101371','48370','2','20','1h','0',''), ('101372','48371','1','12','$.health.availabilityState','2','3'), ('101373','48371','2','25','Available 0','0',''), ('101374','48371','3','25','Degraded 1','0',''), ('101375','48371','4','25','Unavailable 2','0',''), ('101376','48371','5','25','Unknown 3','0',''), ('101377','48371','6','13','0 3','2','3'), ('101378','48371','7','20','1h','0',''), ('101379','48372','1','12','$.metrics.io_bytes_read.average','1',''), ('101380','48373','1','12','$.metrics.io_bytes_written.average','1',''), ('101381','48374','1','12','$.instance.properties.collation','1',''), ('101382','48374','2','20','1d','0',''), ('101383','48375','1','12','$.metrics.virtual_core_count.average','1',''), ('101384','48375','2','20','1h','0',''), ('101385','48376','1','12','$.metrics.avg_cpu_percent.average','1',''), ('101386','48377','1','12','$.error','2',''), ('101387','48377','2','20','1h','0',''), ('101388','48378','1','12','$.instance.properties.provisioningState','1',''), ('101389','48378','2','21','const idx = { ''Unknown'': 0, ''Accepted'': 1, ''Canceled'': 2, ''Created'': 3, ''Creating'': 4, ''Deleted'': 5, ''Deleting'': 6, ''Failed'': 7, ''NotSpecified'': 8, ''Registering'': 9, ''Running'': 10, ''Succeeded'': 11, ''TimedOut'': 12, ''Unrecognized'': 13, ''Updating'': 14 }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101390','48378','3','20','1h','0',''), ('101391','48379','1','12','$.metrics.io_requests.average','1',''), ('101392','48380','1','12','$.instance.properties.state','1',''), ('101393','48380','2','20','1h','0',''), ('101394','48381','1','12','$.metrics.reserved_storage_mb.average','1',''), ('101395','48381','2','1','1048576','0',''), ('101396','48381','3','20','1h','0',''), ('101397','48382','1','12','$.metrics.storage_space_used_mb.average','1',''), ('101398','48382','2','1','1048576','0',''), ('101399','48383','1','12','$.resources.value','0',''), ('101400','48383','2','20','6h','0',''), ('101401','48384','1','27','','0',''), ('101402','48385','1','27','','0',''), ('101403','48385','2','21','var certificates = JSON.parse(value), result = { response: { ''@status'': ''success'', data: [] } }; if (certificates.response[''@status''] !== ''success'') { certificates.response.data = []; return JSON.stringify(certificates); } if (certificates.response.result && certificates.response.result.certificate && certificates.response.result.certificate.entry) { result.response.data = Array.isArray(certificates.response.result.certificate.entry) ? certificates.response.result.certificate.entry : [certificates.response.result.certificate.entry]; return JSON.stringify(result); } return JSON.stringify(result);','0',''), ('101404','48386','1','27','','0',''), ('101405','48387','1','27','','0',''), ('101406','48388','1','27','','0',''), ('101407','48388','2','21','function parseDate(date_string) { var parts = date_string.split('' ''), months = { ''January'': 0, ''February'': 1, ''March'': 2, ''April'': 3, ''May'': 4, ''June'': 5, ''July'': 6, ''August'': 7, ''September'': 8, ''October'': 9, ''November'': 10, ''December'': 11 }; var month = months[parts[0]], day = parseInt(parts[1].replace('','', ''''), 10), year = parseInt(parts[2], 10); var date = new Date(year, month, day); return Math.floor(date.getTime() / 1000); } var licenses = JSON.parse(value), result = { response: { ''@status'': ''success'', data: [] } }; if (licenses.response[''@status''] !== ''success'') { licenses.response.data = []; return JSON.stringify(licenses); } if (licenses.response.result && licenses.response.result.licenses && licenses.response.result.licenses.entry) { result.response.data = Array.isArray(licenses.response.result.licenses.entry) ? licenses.response.result.licenses.entry : [licenses.response.result.licenses.entry]; for (var i in result.response.data) { if (result.response.data[i].expires !== ''Never'') { result.response.data[i].expires = parseDate(result.response.data[i].expires); } } return JSON.stringify(result); } return JSON.stringify(result);','0',''), ('101408','48389','1','27','','0',''), ('101409','48389','2','21','var ospf_neighbors = JSON.parse(value), result = { response: { ''@status'': ''success'', data: [] } }; if (ospf_neighbors.response[''@status''] !== ''success'') { ospf_neighbors.response.data = []; return JSON.stringify(ospf_neighbors); } if (ospf_neighbors.response.result.entry) { result.response.data = Array.isArray(ospf_neighbors.response.result.entry) ? ospf_neighbors.response.result.entry : [ospf_neighbors.response.result.entry]; return JSON.stringify(result); } return JSON.stringify(result);','0',''), ('101410','48390','1','27','','0',''), ('101411','48390','2','21','var ospfv3_neighbors = JSON.parse(value), result = { response: { ''@status'': ''success'', data: [] } }; if (ospfv3_neighbors.response[''@status''] !== ''success'') { ospfv3_neighbors.response.data = []; return JSON.stringify(ospfv3_neighbors); } if (ospfv3_neighbors.response.result.entry) { result.response.data = Array.isArray(ospfv3_neighbors.response.result.entry) ? ospfv3_neighbors.response.result.entry : [ospfv3_neighbors.response.result.entry]; return JSON.stringify(result); } return JSON.stringify(result);','0',''), ('101412','48391','1','27','','0',''), ('101413','48392','1','27','','0',''), ('101414','48393','1','27','','0',''), ('101415','48394','1','12','$.response.result.system[''app-release-date'']','1',''), ('101416','48394','2','20','12h','0',''), ('101417','48395','1','12','$.response.result.system[''app-version'']','0',''), ('101418','48395','2','20','12h','0',''), ('101419','48396','1','21','const item_data = JSON.parse(value); var zbx_error_msg = ''''; if (item_data.response[''@status''] !== ''success'') { zbx_error_msg = ''Unknown error. Test the item manually and check the retrieved value.''; if (item_data.response.msg && item_data.response.msg.line) { zbx_error_msg = item_data.response.msg.line; } if (item_data.response.result && item_data.response.result.msg) { zbx_error_msg = item_data.response.result.msg; } } return zbx_error_msg;','0',''), ('101420','48396','2','20','3h','0',''), ('101421','48397','1','21','const item_data = JSON.parse(value); var zbx_error_msg = ''''; if (item_data.response[''@status''] !== ''success'') { zbx_error_msg = ''Unknown error. Test the item manually and check the retrieved value.''; if (item_data.response.msg && item_data.response.msg.line) { zbx_error_msg = item_data.response.msg.line; } if (item_data.response.result && item_data.response.result.msg) { zbx_error_msg = item_data.response.result.msg; } } return zbx_error_msg;','0',''), ('101422','48397','2','20','3h','0',''), ('101423','48398','1','12','$.response.result.thermal.Slot1.entry.DegreesC','0',''), ('101424','48399','1','12','$.response.result','0',''), ('101425','48399','2','5',E'(?m)^sys\\.monitor\\.s1\\.dp0\\.exports:.*1minavg''?:\\s*(\\d+) \\1','0',''), ('101426','48400','1','21','const item_data = JSON.parse(value); var zbx_error_msg = ''''; if (item_data.response[''@status''] !== ''success'') { zbx_error_msg = ''Unknown error. Test the item manually and check the retrieved value.''; if (item_data.response.msg && item_data.response.msg.line) { zbx_error_msg = item_data.response.msg.line; } if (item_data.response.result && item_data.response.result.msg) { zbx_error_msg = item_data.response.result.msg; } } return zbx_error_msg;','0',''), ('101427','48400','2','20','3h','0',''), ('101428','48401','1','12','$.response.result.system[''global-protect-client-package-version'']','0',''), ('101429','48401','2','20','12h','0',''), ('101430','48402','1','21','const item_data = JSON.parse(value); var zbx_error_msg = ''''; if (item_data.response[''@status''] !== ''success'') { zbx_error_msg = ''Unknown error. Test the item manually and check the retrieved value.''; if (item_data.response.msg && item_data.response.msg.line) { zbx_error_msg = item_data.response.msg.line; } if (item_data.response.result && item_data.response.result.msg) { zbx_error_msg = item_data.response.result.msg; } } return zbx_error_msg;','0',''), ('101431','48402','2','20','3h','0',''), ('101432','48403','1','12','$.response.result.system.hostname','0',''), ('101433','48403','2','20','12h','0',''), ('101434','48404','1','21','const item_data = JSON.parse(value); var zbx_error_msg = ''''; if (item_data.response[''@status''] !== ''success'') { zbx_error_msg = ''Unknown error. Test the item manually and check the retrieved value.''; if (item_data.response.msg && item_data.response.msg.line) { zbx_error_msg = item_data.response.msg.line; } if (item_data.response.result && item_data.response.result.msg) { zbx_error_msg = item_data.response.result.msg; } } return zbx_error_msg;','0',''), ('101435','48404','2','20','3h','0',''), ('101436','48405','1','12','$.response.result','0',''), ('101437','48405','2','5',E'(?m)^sys\\.monitor\\.s1\\.mp\\.exports:.*1minavg''?:\\s*(\\d+) \\1','0',''), ('101438','48406','1','12','$.response.result.system[''sw-version'']','0',''), ('101439','48406','2','20','12h','0',''), ('101440','48407','1','21','const item_data = JSON.parse(value); var zbx_error_msg = ''''; if (item_data.response[''@status''] !== ''success'') { zbx_error_msg = ''Unknown error. Test the item manually and check the retrieved value.''; if (item_data.response.msg && item_data.response.msg.line) { zbx_error_msg = item_data.response.msg.line; } if (item_data.response.result && item_data.response.result.msg) { zbx_error_msg = item_data.response.result.msg; } } return zbx_error_msg;','0',''), ('101441','48407','2','20','3h','0',''), ('101442','48408','1','21','const item_data = JSON.parse(value); var zbx_error_msg = ''''; if (item_data.response[''@status''] !== ''success'') { zbx_error_msg = ''Unknown error. Test the item manually and check the retrieved value.''; if (item_data.response.msg && item_data.response.msg.line) { zbx_error_msg = item_data.response.msg.line; } if (item_data.response.result && item_data.response.result.msg) { zbx_error_msg = item_data.response.result.msg; } } return zbx_error_msg;','0',''), ('101443','48408','2','20','3h','0',''), ('101444','48409','1','12','$.response.result.system.serial','0',''), ('101445','48409','2','20','12h','0',''), ('101446','48410','1','12','$.response.result[''num-active'']','0',''), ('101447','48411','1','12','$.response.result[''num-icmp'']','0',''), ('101448','48412','1','12','$.response.result[''num-max'']','0',''), ('101449','48412','2','20','12h','0',''), ('101450','48413','1','21','const session_data = JSON.parse(value); return session_data.response.result[''num-active''] / session_data.response.result[''num-max''] * 100;','0',''), ('101451','48414','1','12','$.response.result[''num-tcp'']','0',''), ('101452','48415','1','12','$.response.result[''num-udp'']','0',''), ('101453','48416','1','21','const item_data = JSON.parse(value); var zbx_error_msg = ''''; if (item_data.response[''@status''] !== ''success'') { zbx_error_msg = ''Unknown error. Test the item manually and check the retrieved value.''; if (item_data.response.msg && item_data.response.msg.line) { zbx_error_msg = item_data.response.msg.line; } if (item_data.response.result && item_data.response.result.msg) { zbx_error_msg = item_data.response.result.msg; } } return zbx_error_msg;','0',''), ('101454','48416','2','20','3h','0',''), ('101455','48417','1','21','const item_data = JSON.parse(value); var zbx_error_msg = ''''; if (item_data.response[''@status''] !== ''success'') { zbx_error_msg = ''Unknown error. Test the item manually and check the retrieved value.''; if (item_data.response.msg && item_data.response.msg.line) { zbx_error_msg = item_data.response.msg.line; } if (item_data.response.result && item_data.response.result.msg) { zbx_error_msg = item_data.response.result.msg; } } return zbx_error_msg;','0',''), ('101456','48417','2','20','3h','0',''), ('101457','48418','1','21','const item_data = JSON.parse(value); var zbx_error_msg = ''''; if (item_data.response[''@status''] !== ''success'') { zbx_error_msg = ''Unknown error. Test the item manually and check the retrieved value.''; if (item_data.response.msg && item_data.response.msg.line) { zbx_error_msg = item_data.response.msg.line; } if (item_data.response.result && item_data.response.result.msg) { zbx_error_msg = item_data.response.result.msg; } } return zbx_error_msg;','0',''), ('101458','48418','2','20','3h','0',''), ('101459','48419','1','12','$.response.result.system[''threat-version'']','0',''), ('101460','48419','2','20','12h','0',''), ('101461','48420','1','12','$.response.result.system.uptime','0',''), ('101462','48420','2','21',E'const uptime_pattern = /(?:(\\d+)\\s+days?,\\s+)?(\\d+):(\\d+):(\\d+)/; const match = value.match(uptime_pattern); if (match) { const days = parseInt(match[1] || "0", 10), hours = parseInt(match[2], 10), minutes = parseInt(match[3], 10), seconds = parseInt(match[4], 10); return days * 86400 + hours * 3600 + minutes * 60 + seconds; } else { throw ''Incorrect uptime string received: '' + value + ''. Expected format: D days, HH:mm:ss''; }','0',''), ('101463','48421','1','12','$.response.result.system[''url-filtering-version'']','0',''), ('101464','48421','2','20','12h','0',''), ('101465','48422','1','27','','0',''), ('101466','48422','2','21',E'var bgp_peers = JSON.parse(value), result = []; if (bgp_peers.response.result && bgp_peers.response.result.entry) { var peers = Array.isArray(bgp_peers.response.result.entry) ? bgp_peers.response.result.entry : [bgp_peers.response.result.entry]; result = peers.map(function (peer) { return { ''{#PEER}'': peer[''@peer''], ''{#PEERGROUP}'': peer[''peer-group''], ''{#PEERADDR}'': peer[''peer-address''].replace(/:\\d+$/, '''') } }); return JSON.stringify(result); } return JSON.stringify(result);','0',''), ('101467','48422','3','20','3h','0',''), ('101468','48423','1','21','const dev_certificate = JSON.parse(value); if (dev_certificate.response.result && dev_certificate.response.result[''device-certificate''] && dev_certificate.response.result[''device-certificate''].status === ''success'') { return JSON.stringify([{''{#SINGLETON}'': ''''}]); } return JSON.stringify([]);','0',''), ('101469','48423','2','20','3h','0',''), ('101470','48424','1','21','var certificates = JSON.parse(value), result = []; result = certificates.response.data.map(function (certificate) { return { ''{#CERTNAME}'': certificate[''@name''], ''{#EXPIRES}'': certificate[''expiry-epoch''] ? certificate[''expiry-epoch''] : ''Never'' } }); return JSON.stringify(result);','0',''), ('101471','48424','2','20','3h','0',''), ('101472','48425','1','21','const ha_data = JSON.parse(value); if (ha_data.response.result.enabled === ''yes'') { return JSON.stringify([ { ''{#SINGLETON}'': '''', ''{#HAMODE}'': ha_data.response.result.group.mode } ]); } return JSON.stringify([]);','0',''), ('101473','48425','2','20','12h','0',''), ('101474','48426','1','21',E'var ha_data = JSON.parse(value), result = []; if (ha_data.response.result.group[''peer-info'']) { for (var link in ha_data.response.result.group[''peer-info'']) { if (/^conn-ha\\d+(-backup)?$/.test(link)){ result.push({''{#HALINK}'': link}); } } } return JSON.stringify(result);','0',''), ('101475','48426','2','20','3h','0',''), ('101476','48427','1','27','','0',''), ('101477','48427','2','21','var interfaces = JSON.parse(value), result; if (Array.isArray(interfaces.response.result.hw.entry) && interfaces.response.result.hw.entry.length > 0) { result = interfaces.response.result.hw.entry.map(function (interface) { return { ''{#IFNAME}'': interface.name, ''{#IFSPEED}'': interface.speed }; }); return JSON.stringify(result); } return JSON.stringify([]);','0',''), ('101478','48427','3','20','3h','0',''), ('101479','48428','1','27','','0',''), ('101480','48428','2','21','var interfaces = JSON.parse(value), result; if (Array.isArray(interfaces.response.result.ifnet.entry) && interfaces.response.result.ifnet.entry.length > 0) { result = interfaces.response.result.ifnet.entry.map(function (interface) { return { ''{#IFNAME}'': interface.name, ''{#VSYS}'': interface.vsys, ''{#IFZONE}'': interface.zone !== null ? interface.zone : "null" }; }); return JSON.stringify(result); } return JSON.stringify([]);','0',''), ('101481','48428','3','20','3h','0',''), ('101482','48429','1','21','var licenses = JSON.parse(value), result = []; result = licenses.response.data.map(function (license) { return { ''{#FEATURE}'': license.feature, ''{#DESCRIPTION}'': license.description, ''{#EXPIRES}'': license.expires } }); return JSON.stringify(result);','0',''), ('101483','48429','2','20','3h','0',''), ('101484','48430','1','21','var ospf_neighbors = JSON.parse(value), result = []; result = ospf_neighbors.response.data.map(function (neighbor) { return { ''{#NEIGHBORADDR}'': neighbor[''neighbor-address''], ''{#NEIGHBORAREA}'': neighbor[''area-id''] } }); return JSON.stringify(result);','0',''), ('101485','48430','2','20','3h','0',''), ('101486','48431','1','21','var ospfv3_neighbors = JSON.parse(value), result = []; result = ospfv3_neighbors.response.data.map(function (neighbor) { return { ''{#NEIGHBORADDR}'': neighbor[''neighbor-link-local''], ''{#NEIGHBORAREA}'': neighbor[''area-id''] } }); return JSON.stringify(result);','0',''), ('101487','48431','2','20','3h','0',''), ('101488','48432','1','27','','0',''), ('101489','48433','1','27','','0',''), ('101490','48434','1','27','','0',''), ('101491','48435','1','12','$.response.result.entry[''status-duration'']','0',''), ('101492','48436','1','12','$.response.result.entry.status','0',''), ('101493','48436','2','21','const idx = [ ''Idle'', ''Connect'', ''Active'', ''OpenSent'', ''OpenConfirm'', ''Established'' ].indexOf(value); return idx !== -1 ? idx : 8;','0',''), ('101494','48436','3','20','1h','0',''), ('101495','48437','1','12','$.response.result[''device-certificate''][''not_valid_after'']','0',''), ('101496','48437','2','20','12h','0',''), ('101497','48438','1','12','$.response.result[''device-certificate''][''seconds-to-expire'']','0',''), ('101498','48439','1','12','$.response.data[?(@[''@name''] == "{#CERTNAME}")][''expiry-epoch''].first()','0',''), ('101499','48439','2','20','12h','0',''), ('101500','48440','1','12','$.response.result.group[''local-info''][''state-reason'']','2',''), ('101501','48440','2','20','1h','0',''), ('101502','48441','1','12','$.response.result.group[''local-info''].state','0',''), ('101503','48441','2','21','const idx = [ ''initial'', ''active'', ''passive'', ''active-primary'', ''active-secondary'', ''tentative'', ''non-functional'', ''suspended'' ].indexOf(value); return idx !== -1 ? idx : 8;','0',''), ('101504','48441','3','20','1h','0',''), ('101505','48442','1','12','$.response.result.group[''peer-info''].state','0',''), ('101506','48442','2','21','const idx = [ ''initial'', ''active'', ''passive'', ''active-primary'', ''active-secondary'', ''tentative'', ''non-functional'', ''suspended'' ].indexOf(value); return idx !== -1 ? idx : 8;','0',''), ('101507','48442','3','20','1h','0',''), ('101508','48443','1','12','$.response.result.group[''running-sync'']','0',''), ('101509','48444','1','12','$.response.result.group.mode','0',''), ('101510','48444','2','21','const idx = [ ''Active-Passive'', ''Active-Active'', ].indexOf(value); return idx !== -1 ? idx : 2;','0',''), ('101511','48444','3','20','1d','0',''), ('101512','48445','1','12','$.response.result.group[''peer-info''][''{#HALINK}''][''conn-status'']','0',''), ('101513','48445','2','20','1h','0',''), ('101514','48446','1','12','$.response.result.ifnet.counters.hw.entry.port[''rx-bytes'']','0',''), ('101515','48446','2','10','','0',''), ('101516','48446','3','1','8','0',''), ('101517','48447','1','12','$.response.result.ifnet.counters.hw.entry.port[''tx-bytes'']','0',''), ('101518','48447','2','10','','0',''), ('101519','48447','3','1','8','0',''), ('101520','48448','1','12','$.response.result.ifnet.counters.hw.entry.port[''rx-discards'']','0',''), ('101521','48448','2','10','','0',''), ('101522','48449','1','12','$.response.result.ifnet.counters.hw.entry.port[''rx-error'']','0',''), ('101523','48449','2','10','','0',''), ('101524','48450','1','12','$.response.result.ifnet.counters.hw.entry.port[''tx-error'']','0',''), ('101525','48450','2','10','','0',''), ('101526','48451','1','12','$.response.result.hw.speed','0',''), ('101527','48451','2','1','1000000','0',''), ('101528','48451','3','20','1h','0',''), ('101529','48452','1','12','$.response.result.hw.state','0',''), ('101530','48452','2','20','1h','0',''), ('101531','48453','1','12','$.response.result.ifnet.counters.ifnet.entry.ibytes','0',''), ('101532','48453','2','10','','0',''), ('101533','48453','3','1','8','0',''), ('101534','48454','1','12','$.response.result.ifnet.counters.ifnet.entry.obytes','0',''), ('101535','48454','2','10','','0',''), ('101536','48454','3','1','8','0',''), ('101537','48455','1','12','$.response.result.ifnet.counters.ifnet.entry.idrops','0',''), ('101538','48455','2','10','','0',''), ('101539','48456','1','12','$.response.result.ifnet.counters.ifnet.entry.ierrors','0',''), ('101540','48456','2','10','','0',''), ('101541','48457','1','12','$.response.data[?(@.feature == "{#FEATURE}")].expired.first()','0',''), ('101542','48457','2','6','','0',''), ('101543','48457','3','20','12h','0',''), ('101544','48458','1','12','$.response.data[?(@.feature == "{#FEATURE}")].expires.first()','0',''), ('101545','48458','2','20','12h','0',''), ('101546','48459','1','12','$.response.data[?(@[''neighbor-address''] == "{#NEIGHBORADDR}")].status.first()','0',''), ('101547','48460','1','12','$.response.data[?(@[''neighbor-link-local''] == "{#NEIGHBORADDR}")].state.first()','0',''), ('101548','48467','1','12','$.firmware','0',''), ('101549','48467','2','20','6h','0',''), ('101550','48468','1','12','$.model','0',''), ('101551','48468','2','20','6h','0',''), ('101552','48469','1','12','$.serialnumber','0',''), ('101553','48469','2','20','6h','0',''), ('101554','48470','1','12','$.status','0',''), ('101555','48470','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101556','48470','3','20','6h','0',''), ('101557','48471','1','12','$.sysBoard[?(@.id == "SystemBoardCPUUsage")].reading.first()','0',''), ('101558','48472','1','12','$.sysBoard[?(@.id == "SystemBoardIOUsage")].reading.first()','0',''), ('101559','48473','1','12','$.sysBoard[?(@.id == "SystemBoardMEMUsage")].reading.first()','0',''), ('101560','48474','1','12','$.sysBoard[?(@.id == "SystemBoardSYSUsage")].reading.first()','0',''), ('101561','48475','1','12','$.arrayControllers','0',''), ('101562','48475','2','20','6h','0',''), ('101563','48476','1','12','$.batteryControllers','0',''), ('101564','48476','2','20','6h','0',''), ('101565','48477','1','12','$.fan','0',''), ('101566','48477','2','20','6h','0',''), ('101567','48478','1','20','6h','0',''), ('101568','48479','1','12','$.physicalDisks','0',''), ('101569','48479','2','20','6h','0',''), ('101570','48480','1','12','$.psu','0',''), ('101571','48480','2','20','6h','0',''), ('101572','48481','1','12','$.temperature','0',''), ('101573','48481','2','20','6h','0',''), ('101574','48482','1','12','$.virtualDisks','0',''), ('101575','48482','2','20','6h','0',''), ('101576','48486','1','12','$.arrayControllers[?(@.id == "{#ID}")].health.first()','0',''), ('101577','48486','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101578','48486','3','20','6h','0',''), ('101579','48487','1','12','$.batteryControllers[?(@.id == "{#ID}")].status.first()','0',''), ('101580','48487','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101581','48487','3','20','6h','0',''), ('101582','48488','1','12','$.fan.[?(@.id == ''{#ID}'')].first()','0',''), ('101583','48489','1','12','$.health','0',''), ('101584','48489','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101585','48489','3','20','6h','0',''), ('101586','48490','1','12','$.linkSpeed','0',''), ('101587','48490','2','1','1000000','0',''), ('101588','48490','3','20','6h','0',''), ('101589','48491','1','12','$.state','0',''), ('101590','48491','2','21','const idx = { ''Enabled'': 1, ''Disabled'': 2, ''Absent'': 3, ''Deferring'': 4, ''InTest'': 5, ''Quiesced'': 6, ''StandbyOffline'': 7, ''StandbySpare'': 8, ''Starting'': 9, ''UnavailableOffline'': 10, ''Updating'': 11 }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101591','48491','3','20','6h','0',''), ('101592','48492','1','12','$.linkStatus','0',''), ('101593','48492','2','21','const idx = { ''null'': 1, ''Down'': 2, ''Up'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101594','48492','3','20','6h','0',''), ('101595','48493','1','12','$.mediaType','0',''), ('101596','48493','2','20','6h','0',''), ('101597','48494','1','12','$.model','0',''), ('101598','48494','2','20','6h','0',''), ('101599','48495','1','12','$.sn','0',''), ('101600','48495','2','20','6h','0',''), ('101601','48496','1','12','$.capacity','0',''), ('101602','48496','2','20','6h','0',''), ('101603','48497','1','12','$.health','0',''), ('101604','48497','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101605','48497','3','20','6h','0',''), ('101606','48498','1','12','$.psu.[?(@.name == ''{#SENSOR_NAME}'')].first()','0',''), ('101607','48499','1','12','$.temperature.[?(@.id == ''{#ID}'')].first()','0',''), ('101608','48500','1','12','$.raidStatus','0',''), ('101609','48500','2','21','const idx = { ''Blocked'': 1, ''Degraded'': 2, ''Failed'': 3, ''Foreign'': 4, ''Offline'': 5, ''Unknown'': 6, ''null'': 7, ''Ready'': 8, ''Online'': 9, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101610','48500','3','20','6h','0',''), ('101611','48501','1','12','$.readCachePolicy','0',''), ('101612','48501','2','21','const idx = { ''NoReadAhead'': 1, ''ReadAhead'': 2, ''AdaptiveReadAhead'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101613','48501','3','20','6h','0',''), ('101614','48502','1','12','$.capacity','0',''), ('101615','48502','2','20','6h','0',''), ('101616','48503','1','12','$.status','0',''), ('101617','48503','2','21','const idx = { ''Enabled'': 1, ''Disabled'': 2, ''Absent'': 3, ''Deferring'': 4, ''InTest'': 5, ''Quiesced'': 6, ''StandbyOffline'': 7, ''StandbySpare'': 8, ''Starting'': 9, ''UnavailableOffline'': 10, ''Updating'': 11 }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101618','48503','3','20','6h','0',''), ('101619','48504','1','12','$.health','0',''), ('101620','48504','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101621','48504','3','20','6h','0',''), ('101622','48505','1','12','$.writeCachePolicy','0',''), ('101623','48505','2','21','const idx = { ''WriteThrough'': 1, ''WriteBack'': 2, ''ProtectedWriteBack'': 3, ''UnprotectedWriteBack'': 4, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101624','48505','3','20','6h','0',''), ('101625','48506','1','12','$.reading','0',''), ('101626','48507','1','12','$.health','0',''), ('101627','48507','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101628','48507','3','20','6h','0',''), ('101629','48508','1','12','$.current.health','0',''), ('101630','48508','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101631','48508','3','20','6h','0',''), ('101632','48509','1','12','$.current.reading','0',''), ('101633','48510','1','12','$.voltage.health','0',''), ('101634','48510','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101635','48510','3','20','6h','0',''), ('101636','48511','1','12','$.voltage.reading','0',''), ('101637','48512','1','12','$.health','0',''), ('101638','48512','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101639','48512','3','20','6h','0',''), ('101640','48513','1','12','$.reading','0',''), ('101641','48516','1','20','6h','0',''), ('101642','48517','1','20','1d','0',''), ('101643','48519','1','20','1d','0',''), ('101644','48523','1','20','1d','0',''), ('101645','48524','1','20','6h','0',''), ('101646','48525','1','20','6h','0',''), ('101647','48527','1','20','6h','0',''), ('101648','48528','1','20','6h','0',''), ('101649','48530','1','20','6h','0',''), ('101650','48533','1','20','6h','0',''), ('101651','48536','1','20','6h','0',''), ('101652','48537','1','20','1d','0',''), ('101653','48541','1','20','6h','0',''), ('101654','48542','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38 0 {#CNTLR_NAME} 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.79 0','1',''), ('101655','48542','2','20','6h','0',''), ('101656','48543','1','29','{#BATTERY_NUM} 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.1 0 {#BATTERY_NAME} 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.21 0','1',''), ('101657','48543','2','20','6h','0',''), ('101658','48544','1','29','{#CPU_FQDD} 1.3.6.1.4.1.674.10892.5.4.1100.30.1.26 0','0',''), ('101659','48544','2','20','6h','0',''), ('101660','48545','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.4.700.12.1.5 0 {#FAN_DESCR} 1.3.6.1.4.1.674.10892.5.4.700.12.1.8 0 {#TYPE} 1.3.6.1.4.1.674.10892.5.4.700.12.1.7 0','0',''), ('101661','48545','2','20','6h','0',''), ('101662','48546','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.4.1100.50.1.8.1 0','0',''), ('101663','48546','2','20','6h','0',''), ('101664','48547','1','29','{#NIC_FQDD} 1.3.6.1.4.1.674.10892.5.4.1100.90.1.30.1 0 {#NIC_MAC} 1.3.6.1.4.1.674.10892.5.4.1100.90.1.15.1 2','0',''), ('101665','48547','2','20','6h','0',''), ('101666','48548','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.1 0 {#DISK_NAME} 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.2 0','1',''), ('101667','48548','2','20','6h','0',''), ('101668','48549','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.4.600.12.1.5 0 {#PSU_DESCR} 1.3.6.1.4.1.674.10892.5.4.600.12.1.8 0','0',''), ('101669','48549','2','20','6h','0',''), ('101670','48550','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.4.600.50.1.7.1 0','0',''), ('101671','48550','2','20','6h','0',''), ('101672','48551','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.4.700.20.1.1 0 {#SENSOR_LOCALE} 1.3.6.1.4.1.674.10892.5.4.700.20.1.8 0','0',''), ('101673','48551','2','20','6h','0',''), ('101674','48552','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.1 0 {#DISK_NAME} 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.2 0','1',''), ('101675','48552','2','20','6h','0',''), ('101676','48553','1','29','{#VPROBE_NAME} 1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1 0 {#VPROBE_TYPE} 1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1 0','0',''), ('101677','48553','2','20','6h','0',''), ('101678','48554','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2.{#SNMPINDEX} 0','0',''), ('101679','48554','2','20','6h','0',''), ('101680','48555','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38.{#SNMPINDEX} 0','0',''), ('101681','48555','2','20','6h','0',''), ('101682','48556','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4.{#SNMPINDEX} 0','0',''), ('101683','48556','2','20','6h','0',''), ('101684','48557','1','28','1.3.6.1.4.1.674.10892.5.4.1100.32.1.6.{#SNMPINDEX} 0','0',''), ('101685','48557','2','20','6h','0',''), ('101686','48558','1','28','1.3.6.1.4.1.674.10892.5.4.1100.32.1.5.{#SNMPINDEX} 0','0',''), ('101687','48558','2','20','6h','0',''), ('101688','48559','1','28','1.3.6.1.4.1.674.10892.5.4.700.12.1.6.{#SNMPINDEX} 0','0',''), ('101689','48560','1','28','1.3.6.1.4.1.674.10892.5.4.700.12.1.5.{#SNMPINDEX} 0','0',''), ('101690','48560','2','20','6h','0',''), ('101691','48561','1','28','1.3.6.1.4.1.674.10892.5.4.1100.50.1.14.1.{#SNMPINDEX} 0','0',''), ('101692','48561','2','20','6h','0',''), ('101693','48561','3','1','1024','0',''), ('101694','48562','1','28','1.3.6.1.4.1.674.10892.5.4.1100.50.1.5.1.{#SNMPINDEX} 0','0',''), ('101695','48562','2','20','6h','0',''), ('101696','48563','1','28','1.3.6.1.4.1.674.10892.5.4.1100.90.1.4.1.{#SNMPINDEX} 0','0',''), ('101697','48563','2','20','6h','0',''), ('101698','48564','1','28','1.3.6.1.4.1.674.10892.5.4.1100.90.1.3.1.{#SNMPINDEX} 0','0',''), ('101699','48564','2','20','6h','0',''), ('101700','48565','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.35.{#SNMPINDEX} 0','0',''), ('101701','48565','2','20','6h','0',''), ('101702','48566','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.6.{#SNMPINDEX} 0','0',''), ('101703','48566','2','20','6h','0',''), ('101704','48567','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.7.{#SNMPINDEX} 0','0',''), ('101705','48567','2','20','6h','0',''), ('101706','48568','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.11.{#SNMPINDEX} 0','0',''), ('101707','48568','2','1','1048576','0',''), ('101708','48568','3','20','6h','0',''), ('101709','48569','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.31.{#SNMPINDEX} 0','0',''), ('101710','48569','2','20','6h','0',''), ('101711','48570','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.24.{#SNMPINDEX} 0','0',''), ('101712','48570','2','20','6h','0',''), ('101713','48571','1','28','1.3.6.1.4.1.674.10892.5.4.600.12.1.5.{#SNMPINDEX} 0','0',''), ('101714','48571','2','20','6h','0',''), ('101715','48572','1','28','1.3.6.1.4.1.674.10892.5.4.600.50.1.5.1.{#SNMPINDEX} 0','0',''), ('101716','48572','2','20','6h','0',''), ('101717','48573','1','28','1.3.6.1.4.1.674.10892.5.4.700.20.1.5.{#SNMPINDEX} 0','0',''), ('101718','48573','2','20','6h','0',''), ('101719','48574','1','28','1.3.6.1.4.1.674.10892.5.4.700.20.1.6.{#SNMPINDEX} 0','0',''), ('101720','48574','2','1','0.1','0',''), ('101721','48574','3','20','6h','0',''), ('101722','48575','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.13.{#SNMPINDEX} 0','0',''), ('101723','48575','2','20','6h','0',''), ('101724','48576','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.11.{#SNMPINDEX} 0','0',''), ('101725','48576','2','20','1h','0',''), ('101726','48577','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6.{#SNMPINDEX} 0','0',''), ('101727','48577','2','1','1048576','0',''), ('101728','48577','3','20','6h','0',''), ('101729','48578','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.30.{#SNMPINDEX} 0','0',''), ('101730','48578','2','20','3m','0',''), ('101731','48579','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4.{#SNMPINDEX} 0','0',''), ('101732','48579','2','20','6h','0',''), ('101733','48580','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.10.{#SNMPINDEX} 0','0',''), ('101734','48580','2','20','1h','0',''), ('101735','48581','1','28','1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.{#SNMPINDEX} 0','0',''), ('101736','48582','1','28','1.3.6.1.4.1.674.10892.5.4.600.20.1.6.1.{#SNMPINDEX} 0','0',''), ('101737','48582','2','1','0.001','0',''), ('101738','36218','3','20','6h','0',''), ('101739','48587','1','12','$.sysBoard[?(@.id == "SystemBoardCPUUsage")].reading.first()','0',''), ('101740','48588','1','12','$.sysBoard[?(@.id == "SystemBoardIOUsage")].reading.first()','0',''), ('101741','48589','1','12','$.sysBoard[?(@.id == "SystemBoardMEMUsage")].reading.first()','0',''), ('101742','48590','1','12','$.sysBoard[?(@.id == "SystemBoardSYSUsage")].reading.first()','0',''), ('101743','48591','1','12','$.arrayControllers','0',''), ('101744','48591','2','20','6h','0',''), ('101745','48592','1','12','$.batteryControllers','0',''), ('101746','48592','2','20','6h','0',''), ('101747','48593','1','12','$.fan','0',''), ('101748','48593','2','20','6h','0',''), ('101749','48594','1','20','6h','0',''), ('101750','48595','1','12','$.physicalDisks','0',''), ('101751','48595','2','20','6h','0',''), ('101752','48596','1','12','$.psu','0',''), ('101753','48596','2','20','6h','0',''), ('101754','48597','1','12','$.temperature','0',''), ('101755','48597','2','20','6h','0',''), ('101756','48598','1','12','$.virtualDisks','0',''), ('101757','48598','2','20','6h','0',''), ('101758','48602','1','12','$.arrayControllers[?(@.id == "{#ID}")].health.first()','0',''), ('101759','48602','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101760','48602','3','20','6h','0',''), ('101761','48603','1','12','$.batteryControllers[?(@.id == "{#ID}")].status.first()','0',''), ('101762','48603','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101763','48603','3','20','6h','0',''), ('101764','48604','1','12','$.fan.[?(@.id == ''{#ID}'')].first()','0',''), ('101765','48605','1','12','$.health','0',''), ('101766','48605','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101767','48605','3','20','6h','0',''), ('101768','48606','1','12','$.linkSpeed','0',''), ('101769','48606','2','1','1000000','0',''), ('101770','48606','3','20','6h','0',''), ('101771','48607','1','12','$.state','0',''), ('101772','48607','2','21','const idx = { ''Enabled'': 1, ''Disabled'': 2, ''Absent'': 3, ''Deferring'': 4, ''InTest'': 5, ''Quiesced'': 6, ''StandbyOffline'': 7, ''StandbySpare'': 8, ''Starting'': 9, ''UnavailableOffline'': 10, ''Updating'': 11 }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101773','48607','3','20','6h','0',''), ('101774','48608','1','12','$.linkStatus','0',''), ('101775','48608','2','21','const idx = { ''null'': 1, ''Down'': 2, ''Up'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101776','48608','3','20','6h','0',''), ('101777','48609','1','12','$.mediaType','0',''), ('101778','48609','2','20','6h','0',''), ('101779','48610','1','12','$.model','0',''), ('101780','48610','2','20','6h','0',''), ('101781','48611','1','12','$.sn','0',''), ('101782','48611','2','20','6h','0',''), ('101783','48612','1','12','$.capacity','0',''), ('101784','48612','2','20','6h','0',''), ('101785','48613','1','12','$.health','0',''), ('101786','48613','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101787','48613','3','20','6h','0',''), ('101788','48614','1','12','$.psu.[?(@.name == ''{#SENSOR_NAME}'')].first()','0',''), ('101789','48615','1','12','$.temperature.[?(@.id == ''{#ID}'')].first()','0',''), ('101790','48616','1','12','$.raidStatus','0',''), ('101791','48616','2','21','const idx = { ''Blocked'': 1, ''Degraded'': 2, ''Failed'': 3, ''Foreign'': 4, ''Offline'': 5, ''Unknown'': 6, ''null'': 7, ''Ready'': 8, ''Online'': 9, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101792','48616','3','20','6h','0',''), ('101793','48617','1','12','$.readCachePolicy','0',''), ('101794','48617','2','21','const idx = { ''NoReadAhead'': 1, ''ReadAhead'': 2, ''AdaptiveReadAhead'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101795','48617','3','20','6h','0',''), ('101796','48618','1','12','$.capacity','0',''), ('101797','48618','2','20','6h','0',''), ('101798','48619','1','12','$.status','0',''), ('101799','48619','2','21','const idx = { ''Enabled'': 1, ''Disabled'': 2, ''Absent'': 3, ''Deferring'': 4, ''InTest'': 5, ''Quiesced'': 6, ''StandbyOffline'': 7, ''StandbySpare'': 8, ''Starting'': 9, ''UnavailableOffline'': 10, ''Updating'': 11 }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101800','48619','3','20','6h','0',''), ('101801','48620','1','12','$.health','0',''), ('101802','48620','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101803','48620','3','20','6h','0',''), ('101804','48621','1','12','$.writeCachePolicy','0',''), ('101805','48621','2','21','const idx = { ''WriteThrough'': 1, ''WriteBack'': 2, ''ProtectedWriteBack'': 3, ''UnprotectedWriteBack'': 4, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101806','48621','3','20','6h','0',''), ('101807','48622','1','12','$.reading','0',''), ('101808','48623','1','12','$.health','0',''), ('101809','48623','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101810','48623','3','20','6h','0',''), ('101811','48624','1','12','$.current.health','0',''), ('101812','48624','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101813','48624','3','20','6h','0',''), ('101814','48625','1','12','$.current.reading','0',''), ('101815','48626','1','12','$.voltage.health','0',''), ('101816','48626','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101817','48626','3','20','6h','0',''), ('101818','48627','1','12','$.voltage.reading','0',''), ('101819','48628','1','12','$.health','0',''), ('101820','48628','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101821','48628','3','20','6h','0',''), ('101822','48629','1','12','$.reading','0',''), ('101823','48632','1','20','6h','0',''), ('101824','48638','1','20','6h','0',''), ('101825','48646','1','29','{#BATTERY_NUM} 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.1 0 {#BATTERY_NAME} 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.21 0','1',''), ('101826','48646','2','20','6h','0',''), ('101827','48647','1','29','{#CPU_FQDD} 1.3.6.1.4.1.674.10892.5.4.1100.30.1.26 0','0',''), ('101828','48647','2','20','6h','0',''), ('101829','48648','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.4.1100.50.1.8.1 0','0',''), ('101830','48648','2','20','6h','0',''), ('101831','48649','1','29','{#NIC_FQDD} 1.3.6.1.4.1.674.10892.5.4.1100.90.1.30.1 0 {#NIC_MAC} 1.3.6.1.4.1.674.10892.5.4.1100.90.1.15.1 2','0',''), ('101832','48649','2','20','6h','0',''), ('101833','48650','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.4.600.50.1.7.1 0','0',''), ('101834','48650','2','20','6h','0',''), ('101835','48651','1','29','{#VPROBE_NAME} 1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1 0 {#VPROBE_TYPE} 1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1 0','0',''), ('101836','48651','2','20','6h','0',''), ('101837','36269','2','20','6h','0',''), ('101838','36270','2','20','6h','0',''), ('101839','36271','2','20','6h','0',''), ('101840','36272','2','20','6h','0',''), ('101841','36273','2','20','6h','0',''), ('101842','36274','2','20','6h','0',''), ('101843','36276','2','20','6h','0',''), ('101844','36277','2','20','6h','0',''), ('101845','36280','2','20','6h','0',''), ('101846','36281','2','20','6h','0',''), ('101847','36282','2','20','6h','0',''), ('101848','36283','3','20','6h','0',''), ('101849','36284','2','20','6h','0',''), ('101850','36285','2','20','6h','0',''), ('101851','36286','2','20','6h','0',''), ('101852','36287','2','20','6h','0',''), ('101853','36288','3','20','6h','0',''), ('101854','36289','2','20','6h','0',''), ('101855','36291','3','20','6h','0',''), ('101856','36292','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.30.{#SNMPINDEX} 0','0',''), ('101857','36292','2','20','3m','0',''), ('101858','36293','2','20','6h','0',''), ('101859','48652','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4.{#SNMPINDEX} 0','0',''), ('101860','48652','2','20','6h','0',''), ('101861','48653','1','28','1.3.6.1.4.1.674.10892.5.4.1100.32.1.6.{#SNMPINDEX} 0','0',''), ('101862','48653','2','20','6h','0',''), ('101863','48654','1','28','1.3.6.1.4.1.674.10892.5.4.1100.32.1.5.{#SNMPINDEX} 0','0',''), ('101864','48654','2','20','6h','0',''), ('101865','48655','1','28','1.3.6.1.4.1.674.10892.5.4.700.12.1.6.{#SNMPINDEX} 0','0',''), ('101866','48656','1','28','1.3.6.1.4.1.674.10892.5.4.700.12.1.5.{#SNMPINDEX} 0','0',''), ('101867','48656','2','20','6h','0',''), ('101868','48657','1','28','1.3.6.1.4.1.674.10892.5.4.1100.50.1.14.1.{#SNMPINDEX} 0','0',''), ('101869','48657','2','20','6h','0',''), ('101870','48657','3','1','1024','0',''), ('101871','48658','1','28','1.3.6.1.4.1.674.10892.5.4.1100.50.1.5.1.{#SNMPINDEX} 0','0',''), ('101872','48658','2','20','6h','0',''), ('101873','48659','1','28','1.3.6.1.4.1.674.10892.5.4.1100.90.1.4.1.{#SNMPINDEX} 0','0',''), ('101874','48659','2','20','6h','0',''), ('101875','48660','1','28','1.3.6.1.4.1.674.10892.5.4.1100.90.1.3.1.{#SNMPINDEX} 0','0',''), ('101876','48660','2','20','6h','0',''), ('101877','48661','1','28','1.3.6.1.4.1.674.10892.5.4.600.50.1.5.1.{#SNMPINDEX} 0','0',''), ('101878','48661','2','20','6h','0',''), ('101879','48662','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.11.{#SNMPINDEX} 0','0',''), ('101880','48662','2','20','1h','0',''), ('101881','48663','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.10.{#SNMPINDEX} 0','0',''), ('101882','48663','2','20','1h','0',''), ('101883','48664','1','28','1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.{#SNMPINDEX} 0','0',''), ('101884','48665','1','28','1.3.6.1.4.1.674.10892.5.4.600.20.1.6.1.{#SNMPINDEX} 0','0',''), ('101885','48665','2','1','0.001','0',''), ('101886','36300','3','20','6h','0',''), ('101887','48670','1','12','$.sysBoard[?(@.id == "SystemBoardCPUUsage")].reading.first()','0',''), ('101888','48671','1','12','$.sysBoard[?(@.id == "SystemBoardIOUsage")].reading.first()','0',''), ('101889','48672','1','12','$.sysBoard[?(@.id == "SystemBoardMEMUsage")].reading.first()','0',''), ('101890','48673','1','12','$.sysBoard[?(@.id == "SystemBoardSYSUsage")].reading.first()','0',''), ('101891','48674','1','12','$.arrayControllers','0',''), ('101892','48674','2','20','6h','0',''), ('101893','48675','1','12','$.batteryControllers','0',''), ('101894','48675','2','20','6h','0',''), ('101895','48676','1','12','$.fan','0',''), ('101896','48676','2','20','6h','0',''), ('101897','48677','1','20','6h','0',''), ('101898','48678','1','12','$.physicalDisks','0',''), ('101899','48678','2','20','6h','0',''), ('101900','48679','1','12','$.psu','0',''), ('101901','48679','2','20','6h','0',''), ('101902','48680','1','12','$.temperature','0',''), ('101903','48680','2','20','6h','0',''), ('101904','48681','1','12','$.virtualDisks','0',''), ('101905','48681','2','20','6h','0',''), ('101906','48685','1','12','$.arrayControllers[?(@.id == "{#ID}")].health.first()','0',''), ('101907','48685','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101908','48685','3','20','6h','0',''), ('101909','48686','1','12','$.batteryControllers[?(@.id == "{#ID}")].status.first()','0',''), ('101910','48686','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101911','48686','3','20','6h','0',''), ('101912','48687','1','12','$.fan.[?(@.id == ''{#ID}'')].first()','0',''), ('101913','48688','1','12','$.health','0',''), ('101914','48688','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101915','48688','3','20','6h','0',''), ('101916','48689','1','12','$.linkSpeed','0',''), ('101917','48689','2','1','1000000','0',''), ('101918','48689','3','20','6h','0',''), ('101919','48690','1','12','$.state','0',''), ('101920','48690','2','21','const idx = { ''Enabled'': 1, ''Disabled'': 2, ''Absent'': 3, ''Deferring'': 4, ''InTest'': 5, ''Quiesced'': 6, ''StandbyOffline'': 7, ''StandbySpare'': 8, ''Starting'': 9, ''UnavailableOffline'': 10, ''Updating'': 11 }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101921','48690','3','20','6h','0',''), ('101922','48691','1','12','$.linkStatus','0',''), ('101923','48691','2','21','const idx = { ''null'': 1, ''Down'': 2, ''Up'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101924','48691','3','20','6h','0',''), ('101925','48692','1','12','$.mediaType','0',''), ('101926','48692','2','20','6h','0',''), ('101927','48693','1','12','$.model','0',''), ('101928','48693','2','20','6h','0',''), ('101929','48694','1','12','$.sn','0',''), ('101930','48694','2','20','6h','0',''), ('101931','48695','1','12','$.capacity','0',''), ('101932','48695','2','20','6h','0',''), ('101933','48696','1','12','$.health','0',''), ('101934','48696','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101935','48696','3','20','6h','0',''), ('101936','48697','1','12','$.psu.[?(@.name == ''{#SENSOR_NAME}'')].first()','0',''), ('101937','48698','1','12','$.temperature.[?(@.id == ''{#ID}'')].first()','0',''), ('101938','48699','1','12','$.raidStatus','0',''), ('101939','48699','2','21','const idx = { ''Blocked'': 1, ''Degraded'': 2, ''Failed'': 3, ''Foreign'': 4, ''Offline'': 5, ''Unknown'': 6, ''null'': 7, ''Ready'': 8, ''Online'': 9, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101940','48699','3','20','6h','0',''), ('101941','48700','1','12','$.readCachePolicy','0',''), ('101942','48700','2','21','const idx = { ''NoReadAhead'': 1, ''ReadAhead'': 2, ''AdaptiveReadAhead'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101943','48700','3','20','6h','0',''), ('101944','48701','1','12','$.capacity','0',''), ('101945','48701','2','20','6h','0',''), ('101946','48702','1','12','$.status','0',''), ('101947','48702','2','21','const idx = { ''Enabled'': 1, ''Disabled'': 2, ''Absent'': 3, ''Deferring'': 4, ''InTest'': 5, ''Quiesced'': 6, ''StandbyOffline'': 7, ''StandbySpare'': 8, ''Starting'': 9, ''UnavailableOffline'': 10, ''Updating'': 11 }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101948','48702','3','20','6h','0',''), ('101949','48703','1','12','$.health','0',''), ('101950','48703','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101951','48703','3','20','6h','0',''), ('101952','48704','1','12','$.writeCachePolicy','0',''), ('101953','48704','2','21','const idx = { ''WriteThrough'': 1, ''WriteBack'': 2, ''ProtectedWriteBack'': 3, ''UnprotectedWriteBack'': 4, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101954','48704','3','20','6h','0',''), ('101955','48705','1','12','$.reading','0',''), ('101956','48706','1','12','$.health','0',''), ('101957','48706','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101958','48706','3','20','6h','0',''), ('101959','48707','1','12','$.current.health','0',''), ('101960','48707','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101961','48707','3','20','6h','0',''), ('101962','48708','1','12','$.current.reading','0',''), ('101963','48709','1','12','$.voltage.health','0',''), ('101964','48709','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101965','48709','3','20','6h','0',''), ('101966','48710','1','12','$.voltage.reading','0',''), ('101967','48711','1','12','$.health','0',''), ('101968','48711','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('101969','48711','3','20','6h','0',''), ('101970','48712','1','12','$.reading','0',''), ('101971','48715','1','20','6h','0',''), ('101972','48721','1','20','6h','0',''), ('101973','48729','1','29','{#BATTERY_NUM} 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.1 0 {#BATTERY_NAME} 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.21 0','1',''), ('101974','48729','2','20','6h','0',''), ('101975','48730','1','29','{#CPU_FQDD} 1.3.6.1.4.1.674.10892.5.4.1100.30.1.26 0','0',''), ('101976','48730','2','20','6h','0',''), ('101977','48731','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.4.1100.50.1.8.1 0','0',''), ('101978','48731','2','20','6h','0',''), ('101979','48732','1','29','{#NIC_FQDD} 1.3.6.1.4.1.674.10892.5.4.1100.90.1.30.1 0 {#NIC_MAC} 1.3.6.1.4.1.674.10892.5.4.1100.90.1.15.1 2','0',''), ('101980','48732','2','20','6h','0',''), ('101981','48733','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.4.600.50.1.7.1 0','0',''), ('101982','48733','2','20','6h','0',''), ('101983','48734','1','29','{#VPROBE_NAME} 1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1 0 {#VPROBE_TYPE} 1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1 0','0',''), ('101984','48734','2','20','6h','0',''), ('101985','36351','2','20','6h','0',''), ('101986','36352','2','20','6h','0',''), ('101987','36353','2','20','6h','0',''), ('101988','36354','2','20','6h','0',''), ('101989','36355','2','20','6h','0',''), ('101990','36356','2','20','6h','0',''), ('101991','36358','2','20','6h','0',''), ('101992','36359','2','20','6h','0',''), ('101993','36362','2','20','6h','0',''), ('101994','36363','2','20','6h','0',''), ('101995','36364','2','20','6h','0',''), ('101996','36365','3','20','6h','0',''), ('101997','36366','2','20','6h','0',''), ('101998','36367','2','20','6h','0',''), ('101999','36368','2','20','6h','0',''), ('102000','36369','2','20','6h','0',''), ('102001','36370','3','20','6h','0',''), ('102002','36371','2','20','6h','0',''), ('102003','36373','3','20','6h','0',''), ('102004','36374','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.30.{#SNMPINDEX} 0','0',''), ('102005','36374','2','20','3m','0',''), ('102006','36375','2','20','6h','0',''), ('102007','48735','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4.{#SNMPINDEX} 0','0',''), ('102008','48735','2','20','6h','0',''), ('102009','48736','1','28','1.3.6.1.4.1.674.10892.5.4.1100.32.1.6.{#SNMPINDEX} 0','0',''), ('102010','48736','2','20','6h','0',''), ('102011','48737','1','28','1.3.6.1.4.1.674.10892.5.4.1100.32.1.5.{#SNMPINDEX} 0','0',''), ('102012','48737','2','20','6h','0',''), ('102013','48738','1','28','1.3.6.1.4.1.674.10892.5.4.700.12.1.6.{#SNMPINDEX} 0','0',''), ('102014','48739','1','28','1.3.6.1.4.1.674.10892.5.4.700.12.1.5.{#SNMPINDEX} 0','0',''), ('102015','48739','2','20','6h','0',''), ('102016','48740','1','28','1.3.6.1.4.1.674.10892.5.4.1100.50.1.14.1.{#SNMPINDEX} 0','0',''), ('102017','48740','2','20','6h','0',''), ('102018','48740','3','1','1024','0',''), ('102019','48741','1','28','1.3.6.1.4.1.674.10892.5.4.1100.50.1.5.1.{#SNMPINDEX} 0','0',''), ('102020','48741','2','20','6h','0',''), ('102021','48742','1','28','1.3.6.1.4.1.674.10892.5.4.1100.90.1.4.1.{#SNMPINDEX} 0','0',''), ('102022','48742','2','20','6h','0',''), ('102023','48743','1','28','1.3.6.1.4.1.674.10892.5.4.1100.90.1.3.1.{#SNMPINDEX} 0','0',''), ('102024','48743','2','20','6h','0',''), ('102025','48744','1','28','1.3.6.1.4.1.674.10892.5.4.600.50.1.5.1.{#SNMPINDEX} 0','0',''), ('102026','48744','2','20','6h','0',''), ('102027','48745','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.11.{#SNMPINDEX} 0','0',''), ('102028','48745','2','20','1h','0',''), ('102029','48746','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.10.{#SNMPINDEX} 0','0',''), ('102030','48746','2','20','1h','0',''), ('102031','48747','1','28','1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.{#SNMPINDEX} 0','0',''), ('102032','48748','1','28','1.3.6.1.4.1.674.10892.5.4.600.20.1.6.1.{#SNMPINDEX} 0','0',''), ('102033','48748','2','1','0.001','0',''), ('102034','48755','1','12','$.firmware','0',''), ('102035','48755','2','20','6h','0',''), ('102036','48756','1','12','$.model','0',''), ('102037','48756','2','20','6h','0',''), ('102038','48757','1','12','$.serialnumber','0',''), ('102039','48757','2','20','6h','0',''), ('102040','48758','1','12','$.status','0',''), ('102041','48758','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102042','48758','3','20','6h','0',''), ('102043','48759','1','12','$.sysBoard[?(@.id == "SystemBoardCPUUsage")].reading.first()','0',''), ('102044','48760','1','12','$.sysBoard[?(@.id == "SystemBoardIOUsage")].reading.first()','0',''), ('102045','48761','1','12','$.sysBoard[?(@.id == "SystemBoardMEMUsage")].reading.first()','0',''), ('102046','48762','1','12','$.sysBoard[?(@.id == "SystemBoardSYSUsage")].reading.first()','0',''), ('102047','48763','1','12','$.arrayControllers','0',''), ('102048','48763','2','20','6h','0',''), ('102049','48764','1','12','$.batteryControllers','0',''), ('102050','48764','2','20','6h','0',''), ('102051','48765','1','12','$.fan','0',''), ('102052','48765','2','20','6h','0',''), ('102053','48766','1','20','6h','0',''), ('102054','48767','1','12','$.physicalDisks','0',''), ('102055','48767','2','20','6h','0',''), ('102056','48768','1','12','$.psu','0',''), ('102057','48768','2','20','6h','0',''), ('102058','48769','1','12','$.temperature','0',''), ('102059','48769','2','20','6h','0',''), ('102060','48770','1','12','$.virtualDisks','0',''), ('102061','48770','2','20','6h','0',''), ('102062','48774','1','12','$.arrayControllers[?(@.id == "{#ID}")].health.first()','0',''), ('102063','48774','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102064','48774','3','20','6h','0',''), ('102065','48775','1','12','$.batteryControllers[?(@.id == "{#ID}")].status.first()','0',''), ('102066','48775','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102067','48775','3','20','6h','0',''), ('102068','48776','1','12','$.fan.[?(@.id == ''{#ID}'')].first()','0',''), ('102069','48777','1','12','$.health','0',''), ('102070','48777','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102071','48777','3','20','6h','0',''), ('102072','48778','1','12','$.linkSpeed','0',''), ('102073','48778','2','1','1000000','0',''), ('102074','48778','3','20','6h','0',''), ('102075','48779','1','12','$.state','0',''), ('102076','48779','2','21','const idx = { ''Enabled'': 1, ''Disabled'': 2, ''Absent'': 3, ''Deferring'': 4, ''InTest'': 5, ''Quiesced'': 6, ''StandbyOffline'': 7, ''StandbySpare'': 8, ''Starting'': 9, ''UnavailableOffline'': 10, ''Updating'': 11 }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102077','48779','3','20','6h','0',''), ('102078','48780','1','12','$.linkStatus','0',''), ('102079','48780','2','21','const idx = { ''null'': 1, ''Down'': 2, ''Up'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102080','48780','3','20','6h','0',''), ('102081','48781','1','12','$.mediaType','0',''), ('102082','48781','2','20','6h','0',''), ('102083','48782','1','12','$.model','0',''), ('102084','48782','2','20','6h','0',''), ('102085','48783','1','12','$.sn','0',''), ('102086','48783','2','20','6h','0',''), ('102087','48784','1','12','$.capacity','0',''), ('102088','48784','2','20','6h','0',''), ('102089','48785','1','12','$.health','0',''), ('102090','48785','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102091','48785','3','20','6h','0',''), ('102092','48786','1','12','$.psu.[?(@.name == ''{#SENSOR_NAME}'')].first()','0',''), ('102093','48787','1','12','$.temperature.[?(@.id == ''{#ID}'')].first()','0',''), ('102094','48788','1','12','$.raidStatus','0',''), ('102095','48788','2','21','const idx = { ''Blocked'': 1, ''Degraded'': 2, ''Failed'': 3, ''Foreign'': 4, ''Offline'': 5, ''Unknown'': 6, ''null'': 7, ''Ready'': 8, ''Online'': 9, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102096','48788','3','20','6h','0',''), ('102097','48789','1','12','$.readCachePolicy','0',''), ('102098','48789','2','21','const idx = { ''NoReadAhead'': 1, ''ReadAhead'': 2, ''AdaptiveReadAhead'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102099','48789','3','20','6h','0',''), ('102100','48790','1','12','$.capacity','0',''), ('102101','48790','2','20','6h','0',''), ('102102','48791','1','12','$.status','0',''), ('102103','48791','2','21','const idx = { ''Enabled'': 1, ''Disabled'': 2, ''Absent'': 3, ''Deferring'': 4, ''InTest'': 5, ''Quiesced'': 6, ''StandbyOffline'': 7, ''StandbySpare'': 8, ''Starting'': 9, ''UnavailableOffline'': 10, ''Updating'': 11 }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102104','48791','3','20','6h','0',''), ('102105','48792','1','12','$.health','0',''), ('102106','48792','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102107','48792','3','20','6h','0',''), ('102108','48793','1','12','$.writeCachePolicy','0',''), ('102109','48793','2','21','const idx = { ''WriteThrough'': 1, ''WriteBack'': 2, ''ProtectedWriteBack'': 3, ''UnprotectedWriteBack'': 4, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102110','48793','3','20','6h','0',''), ('102111','48794','1','12','$.reading','0',''), ('102112','48795','1','12','$.health','0',''), ('102113','48795','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102114','48795','3','20','6h','0',''), ('102115','48796','1','12','$.current.health','0',''), ('102116','48796','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102117','48796','3','20','6h','0',''), ('102118','48797','1','12','$.current.reading','0',''), ('102119','48798','1','12','$.voltage.health','0',''), ('102120','48798','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102121','48798','3','20','6h','0',''), ('102122','48799','1','12','$.voltage.reading','0',''), ('102123','48800','1','12','$.health','0',''), ('102124','48800','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102125','48800','3','20','6h','0',''), ('102126','48801','1','12','$.reading','0',''), ('102127','48804','1','20','6h','0',''), ('102128','48805','1','20','1d','0',''), ('102129','48807','1','20','1d','0',''), ('102130','48811','1','20','1d','0',''), ('102131','48812','1','20','6h','0',''), ('102132','48813','1','20','6h','0',''), ('102133','48815','1','20','6h','0',''), ('102134','48816','1','20','6h','0',''), ('102135','48818','1','20','6h','0',''), ('102136','48821','1','20','6h','0',''), ('102137','48824','1','20','6h','0',''), ('102138','48825','1','20','1d','0',''), ('102139','48829','1','20','6h','0',''), ('102140','48830','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38 0 {#CNTLR_NAME} 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.79 0','1',''), ('102141','48830','2','20','6h','0',''), ('102142','48831','1','29','{#BATTERY_NUM} 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.1 0 {#BATTERY_NAME} 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.21 0','1',''), ('102143','48831','2','20','6h','0',''), ('102144','48832','1','29','{#CPU_FQDD} 1.3.6.1.4.1.674.10892.5.4.1100.30.1.26 0','0',''), ('102145','48832','2','20','6h','0',''), ('102146','48833','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.4.700.12.1.5 0 {#FAN_DESCR} 1.3.6.1.4.1.674.10892.5.4.700.12.1.8 0 {#TYPE} 1.3.6.1.4.1.674.10892.5.4.700.12.1.7 0','0',''), ('102147','48833','2','20','6h','0',''), ('102148','48834','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.4.1100.50.1.8.1 0','0',''), ('102149','48834','2','20','6h','0',''), ('102150','48835','1','29','{#NIC_FQDD} 1.3.6.1.4.1.674.10892.5.4.1100.90.1.30.1 0 {#NIC_MAC} 1.3.6.1.4.1.674.10892.5.4.1100.90.1.15.1 2','0',''), ('102151','48835','2','20','6h','0',''), ('102152','48836','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.1 0 {#DISK_NAME} 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.2 0','1',''), ('102153','48836','2','20','6h','0',''), ('102154','48837','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.4.600.12.1.5 0 {#PSU_DESCR} 1.3.6.1.4.1.674.10892.5.4.600.12.1.8 0','0',''), ('102155','48837','2','20','6h','0',''), ('102156','48838','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.4.600.50.1.7.1 0','0',''), ('102157','48838','2','20','6h','0',''), ('102158','48839','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.4.700.20.1.1 0 {#SENSOR_LOCALE} 1.3.6.1.4.1.674.10892.5.4.700.20.1.8 0','0',''), ('102159','48839','2','20','6h','0',''), ('102160','48840','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.1 0 {#DISK_NAME} 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.2 0','1',''), ('102161','48840','2','20','6h','0',''), ('102162','48841','1','29','{#VPROBE_NAME} 1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1 0 {#VPROBE_TYPE} 1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1 0','0',''), ('102163','48841','2','20','6h','0',''), ('102164','48842','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2.{#SNMPINDEX} 0','0',''), ('102165','48842','2','20','6h','0',''), ('102166','48843','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38.{#SNMPINDEX} 0','0',''), ('102167','48843','2','20','6h','0',''), ('102168','48844','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4.{#SNMPINDEX} 0','0',''), ('102169','48844','2','20','6h','0',''), ('102170','48845','1','28','1.3.6.1.4.1.674.10892.5.4.1100.32.1.6.{#SNMPINDEX} 0','0',''), ('102171','48845','2','20','6h','0',''), ('102172','48846','1','28','1.3.6.1.4.1.674.10892.5.4.1100.32.1.5.{#SNMPINDEX} 0','0',''), ('102173','48846','2','20','6h','0',''), ('102174','48847','1','28','1.3.6.1.4.1.674.10892.5.4.700.12.1.6.{#SNMPINDEX} 0','0',''), ('102175','48848','1','28','1.3.6.1.4.1.674.10892.5.4.700.12.1.5.{#SNMPINDEX} 0','0',''), ('102176','48848','2','20','6h','0',''), ('102177','48849','1','28','1.3.6.1.4.1.674.10892.5.4.1100.50.1.14.1.{#SNMPINDEX} 0','0',''), ('102178','48849','2','20','6h','0',''), ('102179','48849','3','1','1024','0',''), ('102180','48850','1','28','1.3.6.1.4.1.674.10892.5.4.1100.50.1.5.1.{#SNMPINDEX} 0','0',''), ('102181','48850','2','20','6h','0',''), ('102182','48851','1','28','1.3.6.1.4.1.674.10892.5.4.1100.90.1.4.1.{#SNMPINDEX} 0','0',''), ('102183','48851','2','20','6h','0',''), ('102184','48852','1','28','1.3.6.1.4.1.674.10892.5.4.1100.90.1.3.1.{#SNMPINDEX} 0','0',''), ('102185','48852','2','20','6h','0',''), ('102186','48853','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.35.{#SNMPINDEX} 0','0',''), ('102187','48853','2','20','6h','0',''), ('102188','48854','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.6.{#SNMPINDEX} 0','0',''), ('102189','48854','2','20','6h','0',''), ('102190','48855','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.7.{#SNMPINDEX} 0','0',''), ('102191','48855','2','20','6h','0',''), ('102192','48856','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.11.{#SNMPINDEX} 0','0',''), ('102193','48856','2','1','1048576','0',''), ('102194','48856','3','20','6h','0',''), ('102195','48857','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.31.{#SNMPINDEX} 0','0',''), ('102196','48857','2','20','6h','0',''), ('102197','48858','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.24.{#SNMPINDEX} 0','0',''), ('102198','48858','2','20','6h','0',''), ('102199','48859','1','28','1.3.6.1.4.1.674.10892.5.4.600.12.1.5.{#SNMPINDEX} 0','0',''), ('102200','48859','2','20','6h','0',''), ('102201','48860','1','28','1.3.6.1.4.1.674.10892.5.4.600.50.1.5.1.{#SNMPINDEX} 0','0',''), ('102202','48860','2','20','6h','0',''), ('102203','48861','1','28','1.3.6.1.4.1.674.10892.5.4.700.20.1.5.{#SNMPINDEX} 0','0',''), ('102204','48861','2','20','6h','0',''), ('102205','48862','1','28','1.3.6.1.4.1.674.10892.5.4.700.20.1.6.{#SNMPINDEX} 0','0',''), ('102206','48862','2','1','0.1','0',''), ('102207','48862','3','20','6h','0',''), ('102208','48863','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.13.{#SNMPINDEX} 0','0',''), ('102209','48863','2','20','6h','0',''), ('102210','48864','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.11.{#SNMPINDEX} 0','0',''), ('102211','48864','2','20','1h','0',''), ('102212','48865','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6.{#SNMPINDEX} 0','0',''), ('102213','48865','2','1','1048576','0',''), ('102214','48865','3','20','6h','0',''), ('102215','48866','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.30.{#SNMPINDEX} 0','0',''), ('102216','48866','2','20','3m','0',''), ('102217','48867','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4.{#SNMPINDEX} 0','0',''), ('102218','48867','2','20','6h','0',''), ('102219','48868','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.10.{#SNMPINDEX} 0','0',''), ('102220','48868','2','20','1h','0',''), ('102221','48869','1','28','1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.{#SNMPINDEX} 0','0',''), ('102222','48870','1','28','1.3.6.1.4.1.674.10892.5.4.600.20.1.6.1.{#SNMPINDEX} 0','0',''), ('102223','48870','2','1','0.001','0',''), ('102224','36382','3','20','6h','0',''), ('102225','48875','1','12','$.sysBoard[?(@.id == "SystemBoardCPUUsage")].reading.first()','0',''), ('102226','48876','1','12','$.sysBoard[?(@.id == "SystemBoardIOUsage")].reading.first()','0',''), ('102227','48877','1','12','$.sysBoard[?(@.id == "SystemBoardMEMUsage")].reading.first()','0',''), ('102228','48878','1','12','$.sysBoard[?(@.id == "SystemBoardSYSUsage")].reading.first()','0',''), ('102229','48879','1','12','$.arrayControllers','0',''), ('102230','48879','2','20','6h','0',''), ('102231','48880','1','12','$.batteryControllers','0',''), ('102232','48880','2','20','6h','0',''), ('102233','48881','1','12','$.fan','0',''), ('102234','48881','2','20','6h','0',''), ('102235','48882','1','20','6h','0',''), ('102236','48883','1','12','$.physicalDisks','0',''), ('102237','48883','2','20','6h','0',''), ('102238','48884','1','12','$.psu','0',''), ('102239','48884','2','20','6h','0',''), ('102240','48885','1','12','$.temperature','0',''), ('102241','48885','2','20','6h','0',''), ('102242','48886','1','12','$.virtualDisks','0',''), ('102243','48886','2','20','6h','0',''), ('102244','48890','1','12','$.arrayControllers[?(@.id == "{#ID}")].health.first()','0',''), ('102245','48890','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102246','48890','3','20','6h','0',''), ('102247','48891','1','12','$.batteryControllers[?(@.id == "{#ID}")].status.first()','0',''), ('102248','48891','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102249','48891','3','20','6h','0',''), ('102250','48892','1','12','$.fan.[?(@.id == ''{#ID}'')].first()','0',''), ('102251','48893','1','12','$.health','0',''), ('102252','48893','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102253','48893','3','20','6h','0',''), ('102254','48894','1','12','$.linkSpeed','0',''), ('102255','48894','2','1','1000000','0',''), ('102256','48894','3','20','6h','0',''), ('102257','48895','1','12','$.state','0',''), ('102258','48895','2','21','const idx = { ''Enabled'': 1, ''Disabled'': 2, ''Absent'': 3, ''Deferring'': 4, ''InTest'': 5, ''Quiesced'': 6, ''StandbyOffline'': 7, ''StandbySpare'': 8, ''Starting'': 9, ''UnavailableOffline'': 10, ''Updating'': 11 }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102259','48895','3','20','6h','0',''), ('102260','48896','1','12','$.linkStatus','0',''), ('102261','48896','2','21','const idx = { ''null'': 1, ''Down'': 2, ''Up'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102262','48896','3','20','6h','0',''), ('102263','48897','1','12','$.mediaType','0',''), ('102264','48897','2','20','6h','0',''), ('102265','48898','1','12','$.model','0',''), ('102266','48898','2','20','6h','0',''), ('102267','48899','1','12','$.sn','0',''), ('102268','48899','2','20','6h','0',''), ('102269','48900','1','12','$.capacity','0',''), ('102270','48900','2','20','6h','0',''), ('102271','48901','1','12','$.health','0',''), ('102272','48901','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102273','48901','3','20','6h','0',''), ('102274','48902','1','12','$.psu.[?(@.name == ''{#SENSOR_NAME}'')].first()','0',''), ('102275','48903','1','12','$.temperature.[?(@.id == ''{#ID}'')].first()','0',''), ('102276','48904','1','12','$.raidStatus','0',''), ('102277','48904','2','21','const idx = { ''Blocked'': 1, ''Degraded'': 2, ''Failed'': 3, ''Foreign'': 4, ''Offline'': 5, ''Unknown'': 6, ''null'': 7, ''Ready'': 8, ''Online'': 9, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102278','48904','3','20','6h','0',''), ('102279','48905','1','12','$.readCachePolicy','0',''), ('102280','48905','2','21','const idx = { ''NoReadAhead'': 1, ''ReadAhead'': 2, ''AdaptiveReadAhead'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102281','48905','3','20','6h','0',''), ('102282','48906','1','12','$.capacity','0',''), ('102283','48906','2','20','6h','0',''), ('102284','48907','1','12','$.status','0',''), ('102285','48907','2','21','const idx = { ''Enabled'': 1, ''Disabled'': 2, ''Absent'': 3, ''Deferring'': 4, ''InTest'': 5, ''Quiesced'': 6, ''StandbyOffline'': 7, ''StandbySpare'': 8, ''Starting'': 9, ''UnavailableOffline'': 10, ''Updating'': 11 }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102286','48907','3','20','6h','0',''), ('102287','48908','1','12','$.health','0',''), ('102288','48908','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102289','48908','3','20','6h','0',''), ('102290','48909','1','12','$.writeCachePolicy','0',''), ('102291','48909','2','21','const idx = { ''WriteThrough'': 1, ''WriteBack'': 2, ''ProtectedWriteBack'': 3, ''UnprotectedWriteBack'': 4, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102292','48909','3','20','6h','0',''), ('102293','48910','1','12','$.reading','0',''), ('102294','48911','1','12','$.health','0',''), ('102295','48911','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102296','48911','3','20','6h','0',''), ('102297','48912','1','12','$.current.health','0',''), ('102298','48912','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102299','48912','3','20','6h','0',''), ('102300','48913','1','12','$.current.reading','0',''), ('102301','48914','1','12','$.voltage.health','0',''), ('102302','48914','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102303','48914','3','20','6h','0',''), ('102304','48915','1','12','$.voltage.reading','0',''), ('102305','48916','1','12','$.health','0',''), ('102306','48916','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102307','48916','3','20','6h','0',''), ('102308','48917','1','12','$.reading','0',''), ('102309','48920','1','20','6h','0',''), ('102310','48926','1','20','6h','0',''), ('102311','48934','1','29','{#BATTERY_NUM} 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.1 0 {#BATTERY_NAME} 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.21 0','1',''), ('102312','48934','2','20','6h','0',''), ('102313','48935','1','29','{#CPU_FQDD} 1.3.6.1.4.1.674.10892.5.4.1100.30.1.26 0','0',''), ('102314','48935','2','20','6h','0',''), ('102315','48936','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.4.1100.50.1.8.1 0','0',''), ('102316','48936','2','20','6h','0',''), ('102317','48937','1','29','{#NIC_FQDD} 1.3.6.1.4.1.674.10892.5.4.1100.90.1.30.1 0 {#NIC_MAC} 1.3.6.1.4.1.674.10892.5.4.1100.90.1.15.1 2','0',''), ('102318','48937','2','20','6h','0',''), ('102319','48938','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.4.600.50.1.7.1 0','0',''), ('102320','48938','2','20','6h','0',''), ('102321','48939','1','29','{#VPROBE_NAME} 1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1 0 {#VPROBE_TYPE} 1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1 0','0',''), ('102322','48939','2','20','6h','0',''), ('102323','36433','2','20','6h','0',''), ('102324','36434','2','20','6h','0',''), ('102325','36435','2','20','6h','0',''), ('102326','36436','2','20','6h','0',''), ('102327','36437','2','20','6h','0',''), ('102328','36438','2','20','6h','0',''), ('102329','36440','2','20','6h','0',''), ('102330','36441','2','20','6h','0',''), ('102331','36444','2','20','6h','0',''), ('102332','36445','2','20','6h','0',''), ('102333','36446','2','20','6h','0',''), ('102334','36447','3','20','6h','0',''), ('102335','36448','2','20','6h','0',''), ('102336','36449','2','20','6h','0',''), ('102337','36450','2','20','6h','0',''), ('102338','36451','2','20','6h','0',''), ('102339','36452','3','20','6h','0',''), ('102340','36453','2','20','6h','0',''), ('102341','36455','3','20','6h','0',''), ('102342','36456','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.30.{#SNMPINDEX} 0','0',''), ('102343','36456','2','20','3m','0',''), ('102344','36457','2','20','6h','0',''), ('102345','48940','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4.{#SNMPINDEX} 0','0',''), ('102346','48940','2','20','6h','0',''), ('102347','48941','1','28','1.3.6.1.4.1.674.10892.5.4.1100.32.1.6.{#SNMPINDEX} 0','0',''), ('102348','48941','2','20','6h','0',''), ('102349','48942','1','28','1.3.6.1.4.1.674.10892.5.4.1100.32.1.5.{#SNMPINDEX} 0','0',''), ('102350','48942','2','20','6h','0',''), ('102351','48943','1','28','1.3.6.1.4.1.674.10892.5.4.700.12.1.6.{#SNMPINDEX} 0','0',''), ('102352','48944','1','28','1.3.6.1.4.1.674.10892.5.4.700.12.1.5.{#SNMPINDEX} 0','0',''), ('102353','48944','2','20','6h','0',''), ('102354','48945','1','28','1.3.6.1.4.1.674.10892.5.4.1100.50.1.14.1.{#SNMPINDEX} 0','0',''), ('102355','48945','2','20','6h','0',''), ('102356','48945','3','1','1024','0',''), ('102357','48946','1','28','1.3.6.1.4.1.674.10892.5.4.1100.50.1.5.1.{#SNMPINDEX} 0','0',''), ('102358','48946','2','20','6h','0',''), ('102359','48947','1','28','1.3.6.1.4.1.674.10892.5.4.1100.90.1.4.1.{#SNMPINDEX} 0','0',''), ('102360','48947','2','20','6h','0',''), ('102361','48948','1','28','1.3.6.1.4.1.674.10892.5.4.1100.90.1.3.1.{#SNMPINDEX} 0','0',''), ('102362','48948','2','20','6h','0',''), ('102363','48949','1','28','1.3.6.1.4.1.674.10892.5.4.600.50.1.5.1.{#SNMPINDEX} 0','0',''), ('102364','48949','2','20','6h','0',''), ('102365','48950','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.11.{#SNMPINDEX} 0','0',''), ('102366','48950','2','20','1h','0',''), ('102367','48951','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.10.{#SNMPINDEX} 0','0',''), ('102368','48951','2','20','1h','0',''), ('102369','48952','1','28','1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.{#SNMPINDEX} 0','0',''), ('102370','48953','1','28','1.3.6.1.4.1.674.10892.5.4.600.20.1.6.1.{#SNMPINDEX} 0','0',''), ('102371','48953','2','1','0.001','0',''), ('102372','36464','3','20','6h','0',''), ('102373','48958','1','12','$.sysBoard[?(@.id == "SystemBoardCPUUsage")].reading.first()','0',''), ('102374','48959','1','12','$.sysBoard[?(@.id == "SystemBoardIOUsage")].reading.first()','0',''), ('102375','48960','1','12','$.sysBoard[?(@.id == "SystemBoardMEMUsage")].reading.first()','0',''), ('102376','48961','1','12','$.sysBoard[?(@.id == "SystemBoardSYSUsage")].reading.first()','0',''), ('102377','48962','1','12','$.arrayControllers','0',''), ('102378','48962','2','20','6h','0',''), ('102379','48963','1','12','$.batteryControllers','0',''), ('102380','48963','2','20','6h','0',''), ('102381','48964','1','12','$.fan','0',''), ('102382','48964','2','20','6h','0',''), ('102383','48965','1','20','6h','0',''), ('102384','48966','1','12','$.physicalDisks','0',''), ('102385','48966','2','20','6h','0',''), ('102386','48967','1','12','$.psu','0',''), ('102387','48967','2','20','6h','0',''), ('102388','48968','1','12','$.temperature','0',''), ('102389','48968','2','20','6h','0',''), ('102390','48969','1','12','$.virtualDisks','0',''), ('102391','48969','2','20','6h','0',''), ('102392','48973','1','12','$.arrayControllers[?(@.id == "{#ID}")].health.first()','0',''), ('102393','48973','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102394','48973','3','20','6h','0',''), ('102395','48974','1','12','$.batteryControllers[?(@.id == "{#ID}")].status.first()','0',''), ('102396','48974','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102397','48974','3','20','6h','0',''), ('102398','48975','1','12','$.fan.[?(@.id == ''{#ID}'')].first()','0',''), ('102399','48976','1','12','$.health','0',''), ('102400','48976','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102401','48976','3','20','6h','0',''), ('102402','48977','1','12','$.linkSpeed','0',''), ('102403','48977','2','1','1000000','0',''), ('102404','48977','3','20','6h','0',''), ('102405','48978','1','12','$.state','0',''), ('102406','48978','2','21','const idx = { ''Enabled'': 1, ''Disabled'': 2, ''Absent'': 3, ''Deferring'': 4, ''InTest'': 5, ''Quiesced'': 6, ''StandbyOffline'': 7, ''StandbySpare'': 8, ''Starting'': 9, ''UnavailableOffline'': 10, ''Updating'': 11 }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102407','48978','3','20','6h','0',''), ('102408','48979','1','12','$.linkStatus','0',''), ('102409','48979','2','21','const idx = { ''null'': 1, ''Down'': 2, ''Up'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102410','48979','3','20','6h','0',''), ('102411','48980','1','12','$.mediaType','0',''), ('102412','48980','2','20','6h','0',''), ('102413','48981','1','12','$.model','0',''), ('102414','48981','2','20','6h','0',''), ('102415','48982','1','12','$.sn','0',''), ('102416','48982','2','20','6h','0',''), ('102417','48983','1','12','$.capacity','0',''), ('102418','48983','2','20','6h','0',''), ('102419','48984','1','12','$.health','0',''), ('102420','48984','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102421','48984','3','20','6h','0',''), ('102422','48985','1','12','$.psu.[?(@.name == ''{#SENSOR_NAME}'')].first()','0',''), ('102423','48986','1','12','$.temperature.[?(@.id == ''{#ID}'')].first()','0',''), ('102424','48987','1','12','$.raidStatus','0',''), ('102425','48987','2','21','const idx = { ''Blocked'': 1, ''Degraded'': 2, ''Failed'': 3, ''Foreign'': 4, ''Offline'': 5, ''Unknown'': 6, ''null'': 7, ''Ready'': 8, ''Online'': 9, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102426','48987','3','20','6h','0',''), ('102427','48988','1','12','$.readCachePolicy','0',''), ('102428','48988','2','21','const idx = { ''NoReadAhead'': 1, ''ReadAhead'': 2, ''AdaptiveReadAhead'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102429','48988','3','20','6h','0',''), ('102430','48989','1','12','$.capacity','0',''), ('102431','48989','2','20','6h','0',''), ('102432','48990','1','12','$.status','0',''), ('102433','48990','2','21','const idx = { ''Enabled'': 1, ''Disabled'': 2, ''Absent'': 3, ''Deferring'': 4, ''InTest'': 5, ''Quiesced'': 6, ''StandbyOffline'': 7, ''StandbySpare'': 8, ''Starting'': 9, ''UnavailableOffline'': 10, ''Updating'': 11 }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102434','48990','3','20','6h','0',''), ('102435','48991','1','12','$.health','0',''), ('102436','48991','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102437','48991','3','20','6h','0',''), ('102438','48992','1','12','$.writeCachePolicy','0',''), ('102439','48992','2','21','const idx = { ''WriteThrough'': 1, ''WriteBack'': 2, ''ProtectedWriteBack'': 3, ''UnprotectedWriteBack'': 4, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102440','48992','3','20','6h','0',''), ('102441','48993','1','12','$.reading','0',''), ('102442','48994','1','12','$.health','0',''), ('102443','48994','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102444','48994','3','20','6h','0',''), ('102445','48995','1','12','$.current.health','0',''), ('102446','48995','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102447','48995','3','20','6h','0',''), ('102448','48996','1','12','$.current.reading','0',''), ('102449','48997','1','12','$.voltage.health','0',''), ('102450','48997','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102451','48997','3','20','6h','0',''), ('102452','48998','1','12','$.voltage.reading','0',''), ('102453','48999','1','12','$.health','0',''), ('102454','48999','2','21','const idx = { ''OK'': 1, ''Warning'': 2, ''Critical'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('102455','48999','3','20','6h','0',''), ('102456','49000','1','12','$.reading','0',''), ('102457','49003','1','20','6h','0',''), ('102458','49009','1','20','6h','0',''), ('102459','49017','1','29','{#BATTERY_NUM} 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.1 0 {#BATTERY_NAME} 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.21 0','1',''), ('102460','49017','2','20','6h','0',''), ('102461','49018','1','29','{#CPU_FQDD} 1.3.6.1.4.1.674.10892.5.4.1100.30.1.26 0','0',''), ('102462','49018','2','20','6h','0',''), ('102463','49019','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.4.1100.50.1.8.1 0','0',''), ('102464','49019','2','20','6h','0',''), ('102465','49020','1','29','{#NIC_FQDD} 1.3.6.1.4.1.674.10892.5.4.1100.90.1.30.1 0 {#NIC_MAC} 1.3.6.1.4.1.674.10892.5.4.1100.90.1.15.1 2','0',''), ('102466','49020','2','20','6h','0',''), ('102467','49021','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.4.600.50.1.7.1 0','0',''), ('102468','49021','2','20','6h','0',''), ('102469','49022','1','29','{#VPROBE_NAME} 1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1 0 {#VPROBE_TYPE} 1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1 0','0',''), ('102470','49022','2','20','6h','0',''), ('102471','36515','2','20','6h','0',''), ('102472','36516','2','20','6h','0',''), ('102473','36517','2','20','6h','0',''), ('102474','36518','2','20','6h','0',''), ('102475','36519','2','20','6h','0',''), ('102476','36520','2','20','6h','0',''), ('102477','36522','2','20','6h','0',''), ('102478','36523','2','20','6h','0',''), ('102479','36526','2','20','6h','0',''), ('102480','36527','2','20','6h','0',''), ('102481','36528','2','20','6h','0',''), ('102482','36529','3','20','6h','0',''), ('102483','36530','2','20','6h','0',''), ('102484','36531','2','20','6h','0',''), ('102485','36532','2','20','6h','0',''), ('102486','36533','2','20','6h','0',''), ('102487','36534','3','20','6h','0',''), ('102488','36535','2','20','6h','0',''), ('102489','36537','3','20','6h','0',''), ('102490','36538','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.30.{#SNMPINDEX} 0','0',''), ('102491','36538','2','20','3m','0',''), ('102492','36539','2','20','6h','0',''), ('102493','49023','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4.{#SNMPINDEX} 0','0',''), ('102494','49023','2','20','6h','0',''), ('102495','49024','1','28','1.3.6.1.4.1.674.10892.5.4.1100.32.1.6.{#SNMPINDEX} 0','0',''), ('102496','49024','2','20','6h','0',''), ('102497','49025','1','28','1.3.6.1.4.1.674.10892.5.4.1100.32.1.5.{#SNMPINDEX} 0','0',''), ('102498','49025','2','20','6h','0',''), ('102499','49026','1','28','1.3.6.1.4.1.674.10892.5.4.700.12.1.6.{#SNMPINDEX} 0','0',''), ('102500','49027','1','28','1.3.6.1.4.1.674.10892.5.4.700.12.1.5.{#SNMPINDEX} 0','0',''), ('102501','49027','2','20','6h','0',''), ('102502','49028','1','28','1.3.6.1.4.1.674.10892.5.4.1100.50.1.14.1.{#SNMPINDEX} 0','0',''), ('102503','49028','2','20','6h','0',''), ('102504','49028','3','1','1024','0',''), ('102505','49029','1','28','1.3.6.1.4.1.674.10892.5.4.1100.50.1.5.1.{#SNMPINDEX} 0','0',''), ('102506','49029','2','20','6h','0',''), ('102507','49030','1','28','1.3.6.1.4.1.674.10892.5.4.1100.90.1.4.1.{#SNMPINDEX} 0','0',''), ('102508','49030','2','20','6h','0',''), ('102509','49031','1','28','1.3.6.1.4.1.674.10892.5.4.1100.90.1.3.1.{#SNMPINDEX} 0','0',''), ('102510','49031','2','20','6h','0',''), ('102511','49032','1','28','1.3.6.1.4.1.674.10892.5.4.600.50.1.5.1.{#SNMPINDEX} 0','0',''), ('102512','49032','2','20','6h','0',''), ('102513','49033','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.11.{#SNMPINDEX} 0','0',''), ('102514','49033','2','20','1h','0',''), ('102515','49034','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.10.{#SNMPINDEX} 0','0',''), ('102516','49034','2','20','1h','0',''), ('102517','49035','1','28','1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.{#SNMPINDEX} 0','0',''), ('102518','49036','1','28','1.3.6.1.4.1.674.10892.5.4.600.20.1.6.1.{#SNMPINDEX} 0','0',''), ('102519','49036','2','1','0.001','0',''), ('102520','42641','1','20','6h','0',''), ('102521','49039','1','20','6h','0',''), ('102522','49040','1','20','1d','0',''), ('102523','49042','1','20','1d','0',''), ('102524','49046','1','20','1d','0',''), ('102525','49047','1','20','6h','0',''), ('102526','49048','1','20','6h','0',''), ('102527','49050','1','20','6h','0',''), ('102528','49051','1','20','6h','0',''), ('102529','49053','1','20','6h','0',''), ('102530','49056','1','20','6h','0',''), ('102531','49059','1','20','6h','0',''), ('102532','49060','1','20','1d','0',''), ('102533','49063','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38 0 {#CNTLR_NAME} 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.79 0','1',''), ('102534','49063','2','20','6h','0',''), ('102535','49064','1','29','{#BATTERY_NUM} 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.1 0 {#BATTERY_NAME} 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.21 0','1',''), ('102536','49064','2','20','6h','0',''), ('102537','49065','1','29','{#CPU_FQDD} 1.3.6.1.4.1.674.10892.5.4.1100.30.1.26 0','0',''), ('102538','49065','2','20','6h','0',''), ('102539','49066','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.4.1100.50.1.8.1 0','0',''), ('102540','49066','2','20','6h','0',''), ('102541','49067','1','29','{#NIC_FQDD} 1.3.6.1.4.1.674.10892.5.4.1100.90.1.30.1 0 {#NIC_MAC} 1.3.6.1.4.1.674.10892.5.4.1100.90.1.15.1 2','0',''), ('102542','49067','2','20','6h','0',''), ('102543','49068','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.4.600.50.1.7.1 0','0',''), ('102544','49068','2','20','6h','0',''), ('102545','49069','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.4.700.20.1.1 0 {#SENSOR_LOCALE} 1.3.6.1.4.1.674.10892.5.4.700.20.1.8 0','0',''), ('102546','49069','2','20','6h','0',''), ('102547','49070','1','29','{#VPROBE_NAME} 1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1 0 {#VPROBE_TYPE} 1.3.6.1.4.1.674.10892.5.4.600.20.1.7.1 0','0',''), ('102548','49070','2','20','6h','0',''), ('102549','28348','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.4.600.12.1.5 0 {#PSU_DESCR} 1.3.6.1.4.1.674.10892.5.4.600.12.1.8 0','0',''), ('102550','28348','2','20','6h','0',''), ('102551','28349','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.4.700.12.1.5 0 {#FAN_DESCR} 1.3.6.1.4.1.674.10892.5.4.700.12.1.8 0 {#TYPE} 1.3.6.1.4.1.674.10892.5.4.700.12.1.7 0','0',''), ('102552','28349','2','20','6h','0',''), ('102553','28350','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.1 0 {#DISK_NAME} 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.2 0','1',''), ('102554','28350','2','20','6h','0',''), ('102555','28351','1','29','{#SNMPVALUE} 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.1 0 {#DISK_NAME} 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.2 0','1',''), ('102556','28351','2','20','6h','0',''), ('102557','49071','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2.{#SNMPINDEX} 0','0',''), ('102558','49071','2','20','6h','0',''), ('102559','49072','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38.{#SNMPINDEX} 0','0',''), ('102560','49072','2','20','6h','0',''), ('102561','49073','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4.{#SNMPINDEX} 0','0',''), ('102562','49073','2','20','6h','0',''), ('102563','49074','1','28','1.3.6.1.4.1.674.10892.5.4.1100.32.1.6.{#SNMPINDEX} 0','0',''), ('102564','49074','2','20','6h','0',''), ('102565','49075','1','28','1.3.6.1.4.1.674.10892.5.4.1100.32.1.5.{#SNMPINDEX} 0','0',''), ('102566','49075','2','20','6h','0',''), ('102567','49076','1','28','1.3.6.1.4.1.674.10892.5.4.700.12.1.6.{#SNMPINDEX} 0','0',''), ('102568','49077','1','28','1.3.6.1.4.1.674.10892.5.4.700.12.1.5.{#SNMPINDEX} 0','0',''), ('102569','49077','2','20','6h','0',''), ('102570','49078','1','28','1.3.6.1.4.1.674.10892.5.4.1100.50.1.14.1.{#SNMPINDEX} 0','0',''), ('102571','49078','2','20','6h','0',''), ('102572','49078','3','1','1024','0',''), ('102573','49079','1','28','1.3.6.1.4.1.674.10892.5.4.1100.50.1.5.1.{#SNMPINDEX} 0','0',''), ('102574','49079','2','20','6h','0',''), ('102575','49080','1','28','1.3.6.1.4.1.674.10892.5.4.1100.90.1.4.1.{#SNMPINDEX} 0','0',''), ('102576','49080','2','20','6h','0',''), ('102577','49081','1','28','1.3.6.1.4.1.674.10892.5.4.1100.90.1.3.1.{#SNMPINDEX} 0','0',''), ('102578','49081','2','20','6h','0',''), ('102579','49082','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.35.{#SNMPINDEX} 0','0',''), ('102580','49082','2','20','6h','0',''), ('102581','49083','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.6.{#SNMPINDEX} 0','0',''), ('102582','49083','2','20','6h','0',''), ('102583','49084','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.7.{#SNMPINDEX} 0','0',''), ('102584','49084','2','20','6h','0',''), ('102585','49085','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.11.{#SNMPINDEX} 0','0',''), ('102586','49085','2','1','1048576','0',''), ('102587','49085','3','20','6h','0',''), ('102588','49086','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.31.{#SNMPINDEX} 0','0',''), ('102589','49086','2','20','6h','0',''), ('102590','49087','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.24.{#SNMPINDEX} 0','0',''), ('102591','49087','2','20','6h','0',''), ('102592','49088','1','28','1.3.6.1.4.1.674.10892.5.4.600.12.1.5.{#SNMPINDEX} 0','0',''), ('102593','49088','2','20','6h','0',''), ('102594','49089','1','28','1.3.6.1.4.1.674.10892.5.4.600.50.1.5.1.{#SNMPINDEX} 0','0',''), ('102595','49089','2','20','6h','0',''), ('102596','49090','1','28','1.3.6.1.4.1.674.10892.5.4.700.20.1.5.{#SNMPINDEX} 0','0',''), ('102597','49090','2','20','6h','0',''), ('102598','49091','1','28','1.3.6.1.4.1.674.10892.5.4.700.20.1.6.{#SNMPINDEX} 0','0',''), ('102599','49091','2','1','0.1','0',''), ('102600','49091','3','20','6h','0',''), ('102601','49092','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.13.{#SNMPINDEX} 0','0',''), ('102602','49092','2','20','6h','0',''), ('102603','49093','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.11.{#SNMPINDEX} 0','0',''), ('102604','49093','2','20','1h','0',''), ('102605','49094','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6.{#SNMPINDEX} 0','0',''), ('102606','49094','2','1','1048576','0',''), ('102607','49094','3','20','6h','0',''), ('102608','49095','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.30.{#SNMPINDEX} 0','0',''), ('102609','49095','2','20','3m','0',''), ('102610','49096','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4.{#SNMPINDEX} 0','0',''), ('102611','49096','2','20','6h','0',''), ('102612','49097','1','28','1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.10.{#SNMPINDEX} 0','0',''), ('102613','49097','2','20','1h','0',''), ('102614','49098','1','28','1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.{#SNMPINDEX} 0','0',''), ('102615','49099','1','28','1.3.6.1.4.1.674.10892.5.4.600.20.1.6.1.{#SNMPINDEX} 0','0',''), ('102616','49099','2','1','0.001','0',''), ('102618','49100','1','26','-1','2','0'), ('102619','49100','2','13',' 0','2','1'), ('102620','49100','3','20','1d','0',''), ('102621','49101','1','12','$.queue','0',''), ('102622','49102','1','12','$.queue','0',''), ('102623','49104','1','12','$.queue','0',''), ('102624','49105','1','12','$.queue','0',''), ('102625','49107','1','12','$.data.triggers','2','0'), ('102626','49107','2','13',' 0','2','1'), ('102627','49107','3','20','1d','0',''), ('102628','49108','1','12','$.data.discovery_queue','3','No "discoverer" processes started. Please check "StartDiscoverers" parameter in the server configuration file.'), ('102629','49109','1','12','$.data.preprocessing_queue','0',''), ('102630','49110','1','12','$.data.process[''agent poller''].busy.avg','3','Processes agent poller not started'), ('102631','49111','1','12','$.data.process[''availability manager''].busy.avg','0',''), ('102632','49112','1','12','$.data.process[''browser poller''].busy.avg','3','No "browser poller" processes started.'), ('102633','49113','1','12','$.data.process[''configuration syncer''].busy.avg','3','Processes configuration syncer not started'), ('102634','49114','1','12','$.data.process[''data sender''].busy.avg','3','Processes data sender not started'), ('102635','49115','1','12','$.data.process[''discovery manager''].busy.avg','3','No "discovery manager" processes started.'), ('102636','49116','1','12','$.data.process[''discovery worker''].busy.avg','3','No "discovery worker" processes started.'), ('102637','49117','1','12','$.data.process[''history syncer''].busy.avg','3','Processes history syncer not started'), ('102638','49118','1','12','$.data.process[''housekeeper''].busy.avg','3','Processes housekeeper not started'), ('102639','49119','1','12','$.data.process[''http agent poller''].busy.avg','3','Processes http agent poller not started'), ('102640','49120','1','12','$.data.process[''http poller''].busy.avg','3','Processes http poller not started'), ('102641','49121','1','12','$.data.process[''icmp pinger''].busy.avg','3','Processes icmp pinger not started'), ('102642','49122','1','12','$.data.process[''internal poller''].busy.avg','3','No "internal poller" processes started.'), ('102643','49123','1','12','$.data.process[''ipmi manager''].busy.avg','3','Processes ipmi manager not started'), ('102644','49124','1','12','$.data.process[''ipmi poller''].busy.avg','3','Processes ipmi poller not started'), ('102645','49125','1','12','$.data.process[''java poller''].busy.avg','3','Processes java poller not started'), ('102646','49126','1','12','$.data.process[''odbc poller''].busy.avg','0',''), ('102647','49127','1','12','$.data.process[''poller''].busy.avg','3','Processes poller not started'), ('102648','49128','1','12','$.data.process[''preprocessing manager''].busy.avg','3','Processes preprocessing manager not started'), ('102649','49129','1','12','$.data.process[''preprocessing worker''].busy.avg','3','Processes preprocessing worker not started'), ('102650','49130','1','12','$.data.process[''self-monitoring''].busy.avg','3','Processes self-monitoring not started'), ('102651','49131','1','12','$.data.process[''snmp poller''].busy.avg','3','Processes snmp poller not started'), ('102652','49132','1','12','$.data.process[''snmp trapper''].busy.avg','3','Processes snmp trapper not started'), ('102653','49133','1','12','$.data.process[''task manager''].busy.avg','3','Processes task manager not started'), ('102654','49134','1','12','$.data.process[''trapper''].busy.avg','3','Processes trapper not started'), ('102655','49135','1','12','$.data.process[''unreachable poller''].busy.avg','3','Processes unreachable poller not started'), ('102656','49136','1','12','$.data.process[''vmware collector''].busy.avg','3','Processes vmware collector not started'), ('102657','49137','1','12','$.data.wcache.[''proxy buffer''].memory.pused','3','Proxy memory buffer is disabled.'), ('102658','49138','1','12','$.data.wcache.[''proxy buffer''].[''state change'']','2','0'), ('102659','49138','2','20','1h','0',''), ('102660','49139','1','12','$.data.wcache.[''proxy buffer''].state','2','0'), ('102661','49139','2','20','1h','0',''), ('102662','49140','1','12','$.data.triggers','2','0'), ('102663','49140','2','13',' 0','2','1'), ('102664','49140','3','20','1d','0',''), ('102665','49141','1','12','$.data.rcache.pused','0',''), ('102666','49142','1','12','$.data.requiredperformance','0',''), ('102667','49142','2','20','12h','0',''), ('102668','49143','1','12','$.data.uptime','0',''), ('102669','49144','1','12','$.data.version','0',''), ('102670','49144','2','20','1d','0',''), ('102671','49145','1','12','$.data.vmware.pused','3','No vmware collector processes started'), ('102672','49146','1','12','$.data.wcache.history.pused','0',''), ('102673','49147','1','12','$.data.wcache.index.pused','0',''), ('102674','49148','1','12','$.data.wcache.values.all','0',''), ('102675','49148','2','10','','0',''), ('102676','49149','1','12','$.data.wcache.values.float','0',''), ('102677','49149','2','10','','0',''), ('102678','49150','1','12','$.data.wcache.values.log','0',''), ('102679','49150','2','10','','0',''), ('102680','49151','1','12','$.data.wcache.values[''not supported'']','0',''), ('102681','49151','2','10','','0',''), ('102682','49152','1','12','$.data.wcache.values.str','0',''), ('102683','49152','2','10','','0',''), ('102684','49153','1','12','$.data.wcache.values.text','0',''), ('102685','49153','2','10','','0',''), ('102686','49154','1','12','$.data.wcache.values.uint','0',''), ('102687','49154','2','10','','0',''), ('102688','49155','1','12','$.data.discovery_queue','3','No "discoverer" processes started. Please check "StartDiscoverers" parameter in the server configuration file.'), ('102689','49156','1','12','$.data.preprocessing_queue','0',''), ('102690','49157','1','12','$.data.process[''agent poller''].busy.avg','3','Processes agent poller not started'), ('102691','49158','1','12','$.data.process[''availability manager''].busy.avg','0',''), ('102692','49159','1','12','$.data.process[''browser poller''].busy.avg','3','No "browser poller" processes started.'), ('102693','49160','1','12','$.data.process[''configuration syncer''].busy.avg','3','Processes configuration syncer not started'), ('102694','49161','1','12','$.data.process[''data sender''].busy.avg','3','Processes data sender not started'), ('102695','49162','1','12','$.data.process[''discovery manager''].busy.avg','3','No "discovery manager" processes started.'), ('102696','49163','1','12','$.data.process[''discovery worker''].busy.avg','3','No "discovery worker" processes started.'), ('102697','49164','1','12','$.data.process[''history syncer''].busy.avg','3','Processes history syncer not started'), ('102698','49165','1','12','$.data.process[''housekeeper''].busy.avg','3','Processes housekeeper not started'), ('102699','49166','1','12','$.data.process[''http agent poller''].busy.avg','3','Processes http agent poller not started'), ('102700','49167','1','12','$.data.process[''http poller''].busy.avg','3','Processes http poller not started'), ('102701','49168','1','12','$.data.process[''icmp pinger''].busy.avg','3','Processes icmp pinger not started'), ('102702','49169','1','12','$.data.process[''internal poller''].busy.avg','3','No "internal poller" processes started.'), ('102703','49170','1','12','$.data.process[''ipmi manager''].busy.avg','3','Processes ipmi manager not started'), ('102704','49171','1','12','$.data.process[''ipmi poller''].busy.avg','3','Processes ipmi poller not started'), ('102705','49172','1','12','$.data.process[''java poller''].busy.avg','3','Processes java poller not started'), ('102706','49173','1','12','$.data.process[''odbc poller''].busy.avg','0',''), ('102707','49174','1','12','$.data.process[''poller''].busy.avg','3','Processes poller not started'), ('102708','49175','1','12','$.data.process[''preprocessing manager''].busy.avg','3','Processes preprocessing manager not started'), ('102709','49176','1','12','$.data.process[''preprocessing worker''].busy.avg','3','Processes preprocessing worker not started'), ('102710','49177','1','12','$.data.process[''self-monitoring''].busy.avg','3','Processes self-monitoring not started'), ('102711','49178','1','12','$.data.process[''snmp poller''].busy.avg','3','Processes snmp poller not started'), ('102712','49179','1','12','$.data.process[''snmp trapper''].busy.avg','3','Processes snmp trapper not started'), ('102713','49180','1','12','$.data.process[''task manager''].busy.avg','3','Processes task manager not started'), ('102714','49181','1','12','$.data.process[''trapper''].busy.avg','3','Processes trapper not started'), ('102715','49182','1','12','$.data.process[''unreachable poller''].busy.avg','3','Processes unreachable poller not started'), ('102716','49183','1','12','$.data.process[''vmware collector''].busy.avg','3','Processes vmware collector not started'), ('102717','49184','1','12','$.data.wcache.[''proxy buffer''].memory.pused','3','Proxy memory buffer is disabled.'), ('102718','49185','1','12','$.data.wcache.[''proxy buffer''].[''state change'']','2','0'), ('102719','49185','2','20','1h','0',''), ('102720','49186','1','12','$.data.wcache.[''proxy buffer''].state','2','0'), ('102721','49186','2','20','1h','0',''), ('102722','49187','1','12','$.data.triggers','2','0'), ('102723','49187','2','13',' 0','2','1'), ('102724','49187','3','20','1d','0',''), ('102725','49188','1','12','$.data.rcache.pused','0',''), ('102726','49189','1','12','$.data.requiredperformance','0',''), ('102727','49189','2','20','12h','0',''), ('102728','49190','1','12','$.data.uptime','0',''), ('102729','49191','1','12','$.data.version','0',''), ('102730','49191','2','20','1d','0',''), ('102731','49192','1','12','$.data.vmware.pused','3','No vmware collector processes started'), ('102732','49193','1','12','$.data.wcache.history.pused','0',''), ('102733','49194','1','12','$.data.wcache.index.pused','0',''), ('102734','49195','1','12','$.data.wcache.values.all','0',''), ('102735','49195','2','10','','0',''), ('102736','49196','1','12','$.data.wcache.values.float','0',''), ('102737','49196','2','10','','0',''), ('102738','49197','1','12','$.data.wcache.values.log','0',''), ('102739','49197','2','10','','0',''), ('102740','49198','1','12','$.data.wcache.values[''not supported'']','0',''), ('102741','49198','2','10','','0',''), ('102742','49199','1','12','$.data.wcache.values.str','0',''), ('102743','49199','2','10','','0',''), ('102744','49200','1','12','$.data.wcache.values.text','0',''), ('102745','49200','2','10','','0',''), ('102746','49201','1','12','$.data.wcache.values.uint','0',''), ('102747','49201','2','10','','0',''), ('102748','49202','1','26','-1','2','0'), ('102749','49202','2','13',' 0','2','1'), ('102750','49202','3','20','1d','0',''), ('102751','49203','1','12','$.queue','0',''), ('102752','49204','1','12','$.queue','0',''), ('102753','49206','1','12','$.queue','0',''), ('102754','49207','1','12','$.queue','0',''), ('102755','49209','1','26','-1','2','0'), ('102756','49209','2','13',' 0','2','1'), ('102757','49209','3','20','1d','0',''), ('102758','49210','1','12','$.data.triggers','2','0'), ('102759','49210','2','13',' 0','2','1'), ('102760','49210','3','20','1d','0',''), ('102761','49211','1','12','$.data.connector_queue','3','No "connector" processes started. Please check "StartConnectors" parameter in the server configuration file.'), ('102762','49212','1','12','$.data.discovery_queue','3','No "discoverer" processes started. Please check "StartDiscoverers" parameter in the server configuration file.'), ('102763','49213','1','12','$.data.lld_queue','0',''), ('102764','49214','1','12','$.data.preprocessing.queue','0',''), ('102765','49215','1','12','$.data.process[''agent poller''].busy.avg','3','No "agent poller" processes started.'), ('102766','49216','1','12','$.data.process[''alerter''].busy.avg','3','No "alerter" processes started.'), ('102767','49217','1','12','$.data.process[''alert manager''].busy.avg','3','No "alert manager" processes started.'), ('102768','49218','1','12','$.data.process[''alert syncer''].busy.avg','3','No "alert syncer" processes started.'), ('102769','49219','1','12','$.data.process[''availability manager''].busy.avg','3','No "availability manager" processes started.'), ('102770','49220','1','12','$.data.process[''browser poller''].busy.avg','3','No "browser poller" processes started.'), ('102771','49221','1','12','$.data.process[''configuration syncer''].busy.avg','3','No "configuration syncer" processes started.'), ('102772','49222','1','12','$.data.process[''configuration syncer worker''].busy.avg','0',''), ('102773','49223','1','12','$.data.process[''connector manager''].busy.avg','3','No "connector manager" processes started.'), ('102774','49224','1','12','$.data.process[''connector worker''].busy.avg','3','No "connector worker" processes started.'), ('102775','49225','1','12','$.data.process[''discovery manager''].busy.avg','3','No "discovery manager" processes started.'), ('102776','49226','1','12','$.data.process[''discovery worker''].busy.avg','3','No "discovery worker" processes started.'), ('102777','49227','1','12','$.data.process[''escalator''].busy.avg','3','No "escalator" processes started.'), ('102778','49228','1','12','$.data.process[''history poller''].busy.avg','3','No "history poller" processes started.'), ('102779','49229','1','12','$.data.process[''history syncer''].busy.avg','3','No "history syncer" processes started.'), ('102780','49230','1','12','$.data.process[''housekeeper''].busy.avg','3','No "housekeeper" processes started.'), ('102781','49231','1','12','$.data.process[''http agent poller''].busy.avg','3','No "http agent poller" processes started.'), ('102782','49232','1','12','$.data.process[''http poller''].busy.avg','3','No "http poller" processes started.'), ('102783','49233','1','12','$.data.process[''icmp pinger''].busy.avg','3','No "icmp pinger" processes started.'), ('102784','49234','1','12','$.data.process[''internal poller''].busy.avg','3','No "internal poller" processes started.'), ('102785','49235','1','12','$.data.process[''ipmi manager''].busy.avg','3','No "ipmi manager" processes started.'), ('102786','49236','1','12','$.data.process[''ipmi poller''].busy.avg','3','No "ipmi poller" processes started.'), ('102787','49237','1','12','$.data.process[''java poller''].busy.avg','3','No "java poller" processes started.'), ('102788','49238','1','12','$.data.process[''lld manager''].busy.avg','3','No "LLD manager" processes started.'), ('102789','49239','1','12','$.data.process[''lld worker''].busy.avg','3','No "LLD worker" processes started.'), ('102790','49240','1','12','$.data.process[''odbc poller''].busy.avg','0',''), ('102791','49241','1','12','$.data.process[''poller''].busy.avg','3','No "poller" processes started.'), ('102792','49242','1','12','$.data.process[''preprocessing manager''].busy.avg','3','No "preprocessing manager" processes started.'), ('102793','49243','1','12','$.data.process[''preprocessing worker''].busy.avg','3','No "preprocessing worker" processes started.'), ('102794','49244','1','12','$.data.process[''proxy group manager''].busy.avg','0',''), ('102795','49245','1','12','$.data.process[''proxy poller''].busy.avg','3','No "proxy poller" processes started.'), ('102796','49246','1','12','$.data.process[''report manager''].busy.avg','3','No "report manager" processes started.'), ('102797','49247','1','12','$.data.process[''report writer''].busy.avg','3','No "report writer" processes started.'), ('102798','49248','1','12','$.data.process[''self-monitoring''].busy.avg','3','No "self-monitoring" processes started.'), ('102799','49249','1','12','$.data.process[''service manager''].busy.avg','3','No "service manager" processes started.'), ('102800','49250','1','12','$.data.process[''snmp poller''].busy.avg','3','No "snmp poller" processes started.'), ('102801','49251','1','12','$.data.process[''snmp trapper''].busy.avg','3','No "snmp trapper" processes started.'), ('102802','49252','1','12','$.data.process[''task manager''].busy.avg','3','No "task manager" processes started.'), ('102803','49253','1','12','$.data.process[''timer''].busy.avg','3','No "timer" processes started.'), ('102804','49254','1','12','$.data.process[''trapper''].busy.avg','3','No "trapper" processes started.'), ('102805','49255','1','12','$.data.process[''trigger housekeeper''].busy.avg','3','No "trigger housekeeper" processes started.'), ('102806','49256','1','12','$.data.process[''unreachable poller''].busy.avg','3','No "unreachable poller" processes started.'), ('102807','49257','1','12','$.data.process[''vmware collector''].busy.avg','3','No "vmware collector" processes started.'), ('102808','49258','1','12','$.data.rcache.pused','0',''), ('102809','49259','1','12','$.data.triggers','2','0'), ('102810','49259','2','13',' 0','2','1'), ('102811','49259','3','20','1d','0',''), ('102812','49260','1','12','$.data.tcache.pitems','3','Not supported in this version.'), ('102813','49261','1','12','$.data.tcache.pmisses','3','Not supported in this version.'), ('102814','49262','1','12','$.data.vcache.buffer.pused','0',''), ('102815','49263','1','12','$.data.vcache.cache.hits','0',''), ('102816','49263','2','10','','0',''), ('102817','49264','1','12','$.data.vcache.cache.misses','0',''), ('102818','49264','2','10','','0',''), ('102819','49265','1','12','$.data.vcache.cache.mode','0',''), ('102820','49266','1','12','$.data.version','0',''), ('102821','49266','2','20','1d','0',''), ('102822','49267','1','12','$.data.vmware.pused','3','No "vmware collector" processes started.'), ('102823','49268','1','12','$.data.vps.written_total','0',''), ('102824','49268','2','10','','0',''), ('102825','49269','1','12','$.data.wcache.history.pused','0',''), ('102826','49270','1','12','$.data.wcache.index.pused','0',''), ('102827','49271','1','12','$.data.wcache.trend.pused','0',''), ('102828','49272','1','12','$.data.wcache.values.all','0',''), ('102829','49272','2','10','','0',''), ('102830','49273','1','12','$.data.wcache.values.float','0',''), ('102831','49273','2','10','','0',''), ('102832','49274','1','12','$.data.wcache.values.log','0',''), ('102833','49274','2','10','','0',''), ('102834','49275','1','12','$.data.wcache.values[''not supported'']','0',''), ('102835','49275','2','10','','0',''), ('102836','49276','1','12','$.data.wcache.values.str','0',''), ('102837','49276','2','10','','0',''), ('102838','49277','1','12','$.data.wcache.values.text','0',''), ('102839','49277','2','10','','0',''), ('102840','49278','1','12','$.data.wcache.values.uint','0',''), ('102841','49278','2','10','','0',''), ('102842','49279','1','12','$.data.proxy','0',''), ('102843','49280','1','12','$.data.connector_queue','3','No "connector" processes started. Please check "StartConnectors" parameter in the server configuration file.'), ('102844','49281','1','12','$.data.discovery_queue','3','No "discoverer" processes started. Please check "StartDiscoverers" parameter in the server configuration file.'), ('102845','49282','1','12','$.data.lld_queue','0',''), ('102846','49283','1','12','$.data.preprocessing.queue','0',''), ('102847','49284','1','12','$.data.process[''agent poller''].busy.avg','3','No "agent poller" processes started.'), ('102848','49285','1','12','$.data.process[''alerter''].busy.avg','3','No "alerter" processes started.'), ('102849','49286','1','12','$.data.process[''alert manager''].busy.avg','3','No "alert manager" processes started.'), ('102850','49287','1','12','$.data.process[''alert syncer''].busy.avg','3','No "alert syncer" processes started.'), ('102851','49288','1','12','$.data.process[''availability manager''].busy.avg','3','No "availability manager" processes started.'), ('102852','49289','1','12','$.data.process[''browser poller''].busy.avg','3','No "browser poller" processes started.'), ('102853','49290','1','12','$.data.process[''configuration syncer''].busy.avg','3','No "configuration syncer" processes started.'), ('102854','49291','1','12','$.data.process[''configuration syncer worker''].busy.avg','0',''), ('102855','49292','1','12','$.data.process[''connector manager''].busy.avg','3','No "connector manager" processes started.'), ('102856','49293','1','12','$.data.process[''connector worker''].busy.avg','3','No "connector worker" processes started.'), ('102857','49294','1','12','$.data.process[''discovery manager''].busy.avg','3','No "discovery manager" processes started.'), ('102858','49295','1','12','$.data.process[''discovery worker''].busy.avg','3','No "discovery worker" processes started.'), ('102859','49296','1','12','$.data.process[''escalator''].busy.avg','3','No "escalator" processes started.'), ('102860','49297','1','12','$.data.process[''history poller''].busy.avg','3','No "history poller" processes started.'), ('102861','49298','1','12','$.data.process[''history syncer''].busy.avg','3','No "history syncer" processes started.'), ('102862','49299','1','12','$.data.process[''housekeeper''].busy.avg','3','No "housekeeper" processes started.'), ('102863','49300','1','12','$.data.process[''http agent poller''].busy.avg','3','No "http agent poller" processes started.'), ('102864','49301','1','12','$.data.process[''http poller''].busy.avg','3','No "http poller" processes started.'), ('102865','49302','1','12','$.data.process[''icmp pinger''].busy.avg','3','No "icmp pinger" processes started.'), ('102866','49303','1','12','$.data.process[''internal poller''].busy.avg','3','No "internal poller" processes started.'), ('102867','49304','1','12','$.data.process[''ipmi manager''].busy.avg','3','No "ipmi manager" processes started.'), ('102868','49305','1','12','$.data.process[''ipmi poller''].busy.avg','3','No "ipmi poller" processes started.'), ('102869','49306','1','12','$.data.process[''java poller''].busy.avg','3','No "java poller" processes started.'), ('102870','49307','1','12','$.data.process[''lld manager''].busy.avg','3','No "LLD manager" processes started.'), ('102871','49308','1','12','$.data.process[''lld worker''].busy.avg','3','No "LLD worker" processes started.'), ('102872','49309','1','12','$.data.process[''odbc poller''].busy.avg','0',''), ('102873','49310','1','12','$.data.process[''poller''].busy.avg','3','No "poller" processes started.'), ('102874','49311','1','12','$.data.process[''preprocessing manager''].busy.avg','3','No "preprocessing manager" processes started.'), ('102875','49312','1','12','$.data.process[''preprocessing worker''].busy.avg','3','No "preprocessing worker" processes started.'), ('102876','49313','1','12','$.data.process[''proxy group manager''].busy.avg','0',''), ('102877','49314','1','12','$.data.process[''proxy poller''].busy.avg','3','No "proxy poller" processes started.'), ('102878','49315','1','12','$.data.process[''report manager''].busy.avg','3','No "report manager" processes started.'), ('102879','49316','1','12','$.data.process[''report writer''].busy.avg','3','No "report writer" processes started.'), ('102880','49317','1','12','$.data.process[''self-monitoring''].busy.avg','3','No "self-monitoring" processes started.'), ('102881','49318','1','12','$.data.process[''service manager''].busy.avg','3','No "service manager" processes started.'), ('102882','49319','1','12','$.data.process[''snmp poller''].busy.avg','3','No "snmp poller" processes started.'), ('102883','49320','1','12','$.data.process[''snmp trapper''].busy.avg','3','No "snmp trapper" processes started.'), ('102884','49321','1','12','$.data.process[''task manager''].busy.avg','3','No "task manager" processes started.'), ('102885','49322','1','12','$.data.process[''timer''].busy.avg','3','No "timer" processes started.'), ('102886','49323','1','12','$.data.process[''trapper''].busy.avg','3','No "trapper" processes started.'), ('102887','49324','1','12','$.data.process[''trigger housekeeper''].busy.avg','3','No "trigger housekeeper" processes started.'), ('102888','49325','1','12','$.data.process[''unreachable poller''].busy.avg','3','No "unreachable poller" processes started.'), ('102889','49326','1','12','$.data.process[''vmware collector''].busy.avg','3','No "vmware collector" processes started.'), ('102890','49327','1','12','$.data.rcache.pused','0',''), ('102891','49328','1','12','$.data.triggers','2','0'), ('102892','49328','2','13',' 0','2','1'), ('102893','49328','3','20','1d','0',''), ('102894','49329','1','12','$.data.tcache.pitems','3','Not supported in this version.'), ('102895','49330','1','12','$.data.tcache.pmisses','3','Not supported in this version.'), ('102896','49331','1','12','$.data.vcache.buffer.pused','0',''), ('102897','49332','1','12','$.data.vcache.cache.hits','0',''), ('102898','49332','2','10','','0',''), ('102899','49333','1','12','$.data.vcache.cache.misses','0',''), ('102900','49333','2','10','','0',''), ('102901','49334','1','12','$.data.vcache.cache.mode','0',''), ('102902','49335','1','12','$.data.version','0',''), ('102903','49335','2','20','1d','0',''), ('102904','49336','1','12','$.data.vmware.pused','3','No "vmware collector" processes started.'), ('102905','49337','1','12','$.data.vps.written_total','0',''), ('102906','49337','2','10','','0',''), ('102907','49338','1','12','$.data.wcache.history.pused','0',''), ('102908','49339','1','12','$.data.wcache.index.pused','0',''), ('102909','49340','1','12','$.data.wcache.trend.pused','0',''), ('102910','49341','1','12','$.data.wcache.values.all','0',''), ('102911','49341','2','10','','0',''), ('102912','49342','1','12','$.data.wcache.values.float','0',''), ('102913','49342','2','10','','0',''), ('102914','49343','1','12','$.data.wcache.values.log','0',''), ('102915','49343','2','10','','0',''), ('102916','49344','1','12','$.data.wcache.values[''not supported'']','0',''), ('102917','49344','2','10','','0',''), ('102918','49345','1','12','$.data.wcache.values.str','0',''), ('102919','49345','2','10','','0',''), ('102920','49346','1','12','$.data.wcache.values.text','0',''), ('102921','49346','2','10','','0',''), ('102922','49347','1','12','$.data.wcache.values.uint','0',''), ('102923','49347','2','10','','0',''), ('102924','49348','1','12','$.data.proxy','0',''), ('102925','49349','1','12','$.data.ha','0',''), ('102926','49349','2','21','var hacluster = JSON.parse(value); result = hacluster.map(function (hanode) { return { ''id'': hanode.id, ''name'': hanode.name }; }); return JSON.stringify(result);','0',''), ('102927','49349','3','20','1h','0',''), ('102928','49350','1','21','var proxies = JSON.parse(value); result = proxies.map(function (proxy) { return { ''name'': proxy.name, ''proxy_group'': proxy.proxy_group }; }); return JSON.stringify(result);','0',''), ('102929','49350','2','20','1h','0',''), ('102930','49351','1','12','$.data.ha','0',''), ('102931','49351','2','21','var hacluster = JSON.parse(value); result = hacluster.map(function (hanode) { return { ''id'': hanode.id, ''name'': hanode.name }; }); return JSON.stringify(result);','0',''), ('102932','49351','3','20','1h','0',''), ('102933','49352','1','21','var proxies = JSON.parse(value); result = proxies.map(function (proxy) { return { ''name'': proxy.name, ''proxy_group'': proxy.proxy_group }; }); return JSON.stringify(result);','0',''), ('102934','49352','2','20','1h','0',''), ('102935','49353','1','12','$.data.ha[?(@.id=="{#NODE.ID}")].first()','0',''), ('102936','49354','1','12','$.data.ha[?(@.id=="{#NODE.ID}")].first()','0',''), ('102937','49355','1','12','$.address','0',''), ('102938','49355','2','20','12h','0',''), ('102939','49356','1','12','$.lastaccess_age','0',''), ('102940','49357','1','12','$.lastaccess','0',''), ('102941','49358','1','12','$.status','0',''), ('102942','49358','2','20','12h','0',''), ('102943','49359','1','12','$.[?(@.name=="{#PROXY.NAME}")].first()','0',''), ('102944','49360','1','12','$.address','0',''), ('102945','49360','2','20','12h','0',''), ('102946','49361','1','12','$.lastaccess_age','0',''), ('102947','49362','1','12','$.lastaccess','0',''), ('102948','49363','1','12','$.status','0',''), ('102949','49363','2','20','12h','0',''), ('102950','49364','1','12','$.[?(@.name=="{#PROXY.NAME}")].first()','0',''), ('102951','49365','1','12','$.cert','0',''), ('102952','49365','2','21','return value === ''false'' ? 0 : 1','0',''), ('102953','49365','3','20','12h','0',''), ('102954','49366','1','12','$.compatibility','0',''), ('102955','49366','2','20','12h','0',''), ('102956','49367','1','12','$.compression','0',''), ('102957','49367','2','21','return value === ''false'' ? 0 : 1','0',''), ('102958','49367','3','20','12h','0',''), ('102959','49368','1','12','$.hosts','0',''), ('102960','49368','2','20','12h','0',''), ('102961','49369','1','12','$.items','0',''), ('102962','49369','2','20','12h','0',''), ('102963','49370','1','12','$.last_seen','0',''), ('102964','49371','1','12','$.passive','0',''), ('102965','49371','2','21','return value === ''false'' ? 0 : 1','0',''), ('102966','49371','3','20','12h','0',''), ('102967','49372','1','12','$.psk','0',''), ('102968','49372','2','21','return value === ''false'' ? 0 : 1','0',''), ('102969','49372','3','20','12h','0',''), ('102970','49373','1','12','$.requiredperformance','0',''), ('102971','49373','2','20','12h','0',''), ('102972','49374','1','12','$.unencrypted','0',''), ('102973','49374','2','21','return value === ''false'' ? 0 : 1','0',''), ('102974','49374','3','20','12h','0',''), ('102975','49375','1','12','$.version','0',''), ('102976','49375','2','20','12h','0',''), ('102977','49376','1','12','$.cert','0',''), ('102978','49376','2','21','return value === ''false'' ? 0 : 1','0',''), ('102979','49376','3','20','12h','0',''), ('102980','49377','1','12','$.compatibility','0',''), ('102981','49377','2','20','12h','0',''), ('102982','49378','1','12','$.compression','0',''), ('102983','49378','2','21','return value === ''false'' ? 0 : 1','0',''), ('102984','49378','3','20','12h','0',''), ('102985','49379','1','12','$.hosts','0',''), ('102986','49379','2','20','12h','0',''), ('102987','49380','1','12','$.items','0',''), ('102988','49380','2','20','12h','0',''), ('102989','49381','1','12','$.last_seen','0',''), ('102990','49382','1','12','$.passive','0',''), ('102991','49382','2','21','return value === ''false'' ? 0 : 1','0',''), ('102992','49382','3','20','12h','0',''), ('102993','49383','1','12','$.psk','0',''), ('102994','49383','2','21','return value === ''false'' ? 0 : 1','0',''), ('102995','49383','3','20','12h','0',''), ('102996','49384','1','12','$.requiredperformance','0',''), ('102997','49384','2','20','12h','0',''), ('102998','49385','1','12','$.unencrypted','0',''), ('102999','49385','2','21','return value === ''false'' ? 0 : 1','0',''), ('103000','49385','3','20','12h','0',''), ('103001','49386','1','12','$.version','0',''), ('103002','49386','2','20','12h','0',''), ('103003','49388','1','12','$.error','2',''), ('103004','49388','2','20','1h','0',''), ('103005','49389','1','12','$.error','2',''), ('103006','49389','2','20','1h','0',''), ('103007','49390','1','12','$.health.summary','0',''), ('103008','49390','2','20','1h','0',''), ('103009','49391','1','12','$.health.availabilityState','2','3'), ('103010','49391','2','25','Available 0','0',''), ('103011','49391','3','25','Degraded 1','0',''), ('103012','49391','4','25','Unavailable 2','0',''), ('103013','49391','5','25','Unknown 3','0',''), ('103014','49391','6','13','0 3','2','3'), ('103015','49391','7','20','1h','0',''), ('103016','49392','1','12','$.metrics.connection_failed.total','1',''), ('103017','49393','1','12','$.metrics.connection_successful.total','1',''), ('103018','49394','1','12','$.metrics.cpu_percent.average','1',''), ('103019','49395','1','12','$.errors','1',''), ('103020','49395','2','20','1h','0',''), ('103021','49396','1','12','$.metrics.physical_data_read_percent.average','1',''), ('103022','49397','1','12','$.metrics.deadlock.total','1',''), ('103023','49398','1','12','$.metrics.dtu_limit.average','1',''), ('103024','49399','1','12','$.metrics.dtu_consumption_percent.average','1',''), ('103025','49400','1','12','$.metrics.dtu_used.average','1',''), ('103026','49401','1','12','$.metrics.blocked_by_firewall.total','1',''), ('103027','49402','1','12','$.metrics.log_write_percent.average','1',''), ('103028','49403','1','12','$.metrics.sql_instance_cpu_percent.maximum','1',''), ('103029','49404','1','12','$.metrics.sql_instance_cpu_percent.maximum','1',''), ('103030','49405','1','12','$.metrics.sessions_count.average','1',''), ('103031','49406','1','12','$.metrics.sessions_percent.average','1',''), ('103032','49407','1','12','$.metrics.allocated_data_storage.average','1',''), ('103033','49408','1','12','$.metrics.log_backup_size_bytes.maximum','1',''), ('103034','49408','2','20','1d','0',''), ('103035','49409','1','12','$.metrics.storage_percent.maximum','1',''), ('103036','49410','1','12','$.metrics.storage.maximum','1',''), ('103037','49411','1','12','$.metrics.xtp_storage_percent.average','1',''), ('103038','49412','1','12','$.metrics.tempdb_data_size.maximum','1',''), ('103039','49412','2','1','1024','0',''), ('103040','49413','1','12','$.metrics.tempdb_log_used_percent.maximum','1',''), ('103041','49414','1','12','$.metrics.tempdb_log_size.maximum','1',''), ('103042','49414','2','1','1024','0',''), ('103043','49415','1','12','$.metrics.workers_percent.average','1',''), ('103044','28031','1','1','0.01','0',''), ('103045','49416','1','1','0.01','0',''), ('103046','49417','1','1','0.01','0',''), ('103047','49418','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103048','49419','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103049','49420','1','1','0.1','0',''), ('103050','49420','2','20','3m','0',''), ('103051','49421','1','1','0.1','0',''), ('103052','49421','2','20','3m','0',''), ('103053','49422','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103054','49423','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103055','49424','1','1','0.1','0',''), ('103056','49424','2','20','3m','0',''), ('103057','49425','1','1','0.1','0',''), ('103058','49425','2','20','3m','0',''), ('103059','49426','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103060','49427','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103061','49428','1','1','0.1','0',''), ('103062','49428','2','20','3m','0',''), ('103063','49429','1','1','0.1','0',''), ('103064','49429','2','20','3m','0',''), ('103065','49430','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103066','49431','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103067','49432','1','1','0.1','0',''), ('103068','49432','2','20','3m','0',''), ('103069','49433','1','1','0.1','0',''), ('103070','49433','2','20','3m','0',''), ('103071','49434','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103072','49435','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103073','49436','1','1','0.1','0',''), ('103074','49436','2','20','3m','0',''), ('103075','49437','1','1','0.1','0',''), ('103076','49437','2','20','3m','0',''), ('103077','49438','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103078','49439','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103079','49440','1','1','0.1','0',''), ('103080','49440','2','20','3m','0',''), ('103081','49441','1','1','0.1','0',''), ('103082','49441','2','20','3m','0',''), ('103083','49442','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103084','49443','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103085','49444','1','1','0.1','0',''), ('103086','49444','2','20','3m','0',''), ('103087','49445','1','1','0.1','0',''), ('103088','49445','2','20','3m','0',''), ('103089','49446','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103090','49447','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103091','49448','1','1','0.1','0',''), ('103092','49448','2','20','3m','0',''), ('103093','49449','1','1','0.1','0',''), ('103094','49449','2','20','3m','0',''), ('103095','49450','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103096','49451','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103097','49452','1','1','0.1','0',''), ('103098','49452','2','20','3m','0',''), ('103099','49453','1','1','0.1','0',''), ('103100','49453','2','20','3m','0',''), ('103101','49454','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103102','49455','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103103','49456','1','1','0.1','0',''), ('103104','49456','2','20','3m','0',''), ('103105','49457','1','1','0.1','0',''), ('103106','49457','2','20','3m','0',''), ('103107','49458','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103108','49459','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103109','49460','1','1','0.1','0',''), ('103110','49460','2','20','3m','0',''), ('103111','49461','1','1','0.1','0',''), ('103112','49461','2','20','3m','0',''), ('103113','49462','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103114','49463','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103115','49464','1','1','0.1','0',''), ('103116','49464','2','20','3m','0',''), ('103117','49465','1','1','0.1','0',''), ('103118','49465','2','20','3m','0',''), ('103119','49466','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103120','49467','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103121','49468','1','1','0.1','0',''), ('103122','49468','2','20','3m','0',''), ('103123','49469','1','1','0.1','0',''), ('103124','49469','2','20','3m','0',''), ('103125','49470','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103126','49471','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103127','49472','1','1','0.1','0',''), ('103128','49472','2','20','3m','0',''), ('103129','49473','1','1','0.1','0',''), ('103130','49473','2','20','3m','0',''), ('103131','49474','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103132','49475','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103133','49476','1','1','0.1','0',''), ('103134','49476','2','20','3m','0',''), ('103135','49477','1','1','0.1','0',''), ('103136','49477','2','20','3m','0',''), ('103137','49478','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103138','49479','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103139','49480','1','1','0.1','0',''), ('103140','49480','2','20','3m','0',''), ('103141','49481','1','1','0.1','0',''), ('103142','49481','2','20','3m','0',''), ('103143','49482','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103144','49483','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103145','49484','1','1','0.1','0',''), ('103146','49484','2','20','3m','0',''), ('103147','49485','1','1','0.1','0',''), ('103148','49485','2','20','3m','0',''), ('103149','49486','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103150','49487','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103151','49488','1','1','0.1','0',''), ('103152','49488','2','20','3m','0',''), ('103153','49489','1','1','0.1','0',''), ('103154','49489','2','20','3m','0',''), ('103155','49490','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103156','49491','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103157','49492','1','1','0.1','0',''), ('103158','49492','2','20','3m','0',''), ('103159','49493','1','1','0.1','0',''), ('103160','49493','2','20','3m','0',''), ('103161','49494','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103162','49495','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103163','49496','1','1','0.1','0',''), ('103164','49496','2','20','3m','0',''), ('103165','49497','1','1','0.1','0',''), ('103166','49497','2','20','3m','0',''), ('103167','49498','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103168','49499','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103169','49500','1','1','0.1','0',''), ('103170','49500','2','20','3m','0',''), ('103171','49501','1','1','0.1','0',''), ('103172','49501','2','20','3m','0',''), ('103173','49502','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103174','49503','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103175','49504','1','1','0.1','0',''), ('103176','49504','2','20','3m','0',''), ('103177','49505','1','1','0.1','0',''), ('103178','49505','2','20','3m','0',''), ('103179','49506','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103180','49507','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103181','49508','1','1','0.1','0',''), ('103182','49508','2','20','3m','0',''), ('103183','49509','1','1','0.1','0',''), ('103184','49509','2','20','3m','0',''), ('103185','49510','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103186','49511','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103187','49512','1','1','0.1','0',''), ('103188','49512','2','20','3m','0',''), ('103189','49513','1','1','0.1','0',''), ('103190','49513','2','20','3m','0',''), ('103191','49514','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103192','49515','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103193','49516','1','1','0.1','0',''), ('103194','49516','2','20','3m','0',''), ('103195','49517','1','1','0.1','0',''), ('103196','49517','2','20','3m','0',''), ('103197','49518','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103198','49519','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103199','49520','1','1','0.1','0',''), ('103200','49520','2','20','3m','0',''), ('103201','49521','1','1','0.1','0',''), ('103202','49521','2','20','3m','0',''), ('103203','49522','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103204','49523','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103205','49524','1','1','0.1','0',''), ('103206','49524','2','20','3m','0',''), ('103207','49525','1','1','0.1','0',''), ('103208','49525','2','20','3m','0',''), ('103209','49526','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103210','49527','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103211','49528','1','1','0.1','0',''), ('103212','49528','2','20','3m','0',''), ('103213','49529','1','1','0.1','0',''), ('103214','49529','2','20','3m','0',''), ('103215','49530','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103216','49531','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103217','49532','1','1','0.1','0',''), ('103218','49532','2','20','3m','0',''), ('103219','49533','1','1','0.1','0',''), ('103220','49533','2','20','3m','0',''), ('103221','49534','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103222','49535','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103223','49536','1','1','0.1','0',''), ('103224','49536','2','20','3m','0',''), ('103225','49537','1','1','0.1','0',''), ('103226','49537','2','20','3m','0',''), ('103227','49538','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103228','49539','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103229','49540','1','1','0.1','0',''), ('103230','49540','2','20','3m','0',''), ('103231','49541','1','1','0.1','0',''), ('103232','49541','2','20','3m','0',''), ('103233','49542','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103234','49543','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103235','49544','1','1','0.1','0',''), ('103236','49544','2','20','3m','0',''), ('103237','49545','1','1','0.1','0',''), ('103238','49545','2','20','3m','0',''), ('103239','49546','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103240','49547','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103241','49548','1','1','0.1','0',''), ('103242','49548','2','20','3m','0',''), ('103243','49549','1','1','0.1','0',''), ('103244','49549','2','20','3m','0',''), ('103245','49550','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103246','49551','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103247','49552','1','1','0.1','0',''), ('103248','49552','2','20','3m','0',''), ('103249','49553','1','1','0.1','0',''), ('103250','49553','2','20','3m','0',''), ('103251','49554','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103252','49555','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103253','49556','1','1','0.1','0',''), ('103254','49556','2','20','3m','0',''), ('103255','49557','1','1','0.1','0',''), ('103256','49557','2','20','3m','0',''), ('103257','49558','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103258','49559','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103259','49560','1','1','0.1','0',''), ('103260','49560','2','20','3m','0',''), ('103261','49561','1','1','0.1','0',''), ('103262','49561','2','20','3m','0',''), ('103263','49562','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103264','49563','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103265','49564','1','1','0.1','0',''), ('103266','49564','2','20','3m','0',''), ('103267','49565','1','1','0.1','0',''), ('103268','49565','2','20','3m','0',''), ('103269','49566','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103270','49567','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103271','49568','1','1','0.1','0',''), ('103272','49568','2','20','3m','0',''), ('103273','49569','1','1','0.1','0',''), ('103274','49569','2','20','3m','0',''), ('103275','49570','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103276','49571','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103277','49572','1','1','0.1','0',''), ('103278','49572','2','20','3m','0',''), ('103279','49573','1','1','0.1','0',''), ('103280','49573','2','20','3m','0',''), ('103281','49574','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103282','49575','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103283','49576','1','1','0.1','0',''), ('103284','49576','2','20','3m','0',''), ('103285','49577','1','1','0.1','0',''), ('103286','49577','2','20','3m','0',''), ('103287','49578','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103288','49579','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103289','49580','1','1','0.1','0',''), ('103290','49580','2','20','3m','0',''), ('103291','49581','1','1','0.1','0',''), ('103292','49581','2','20','3m','0',''), ('103293','49582','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103294','49583','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103295','49584','1','1','0.1','0',''), ('103296','49584','2','20','3m','0',''), ('103297','49585','1','1','0.1','0',''), ('103298','49585','2','20','3m','0',''), ('103299','49586','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103300','49587','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103301','49588','1','1','0.1','0',''), ('103302','49588','2','20','3m','0',''), ('103303','49589','1','1','0.1','0',''), ('103304','49589','2','20','3m','0',''), ('103305','49590','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103306','49591','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103307','49592','1','1','0.1','0',''), ('103308','49592','2','20','3m','0',''), ('103309','49593','1','1','0.1','0',''), ('103310','49593','2','20','3m','0',''), ('103311','49594','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103312','49595','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103313','49596','1','1','0.1','0',''), ('103314','49596','2','20','3m','0',''), ('103315','49597','1','1','0.1','0',''), ('103316','49597','2','20','3m','0',''), ('103317','49598','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103318','49599','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103319','49600','1','1','0.1','0',''), ('103320','49600','2','20','3m','0',''), ('103321','49601','1','1','0.1','0',''), ('103322','49601','2','20','3m','0',''), ('103323','49602','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103324','49603','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103325','49604','1','1','0.1','0',''), ('103326','49604','2','20','3m','0',''), ('103327','49605','1','1','0.1','0',''), ('103328','49605','2','20','3m','0',''), ('103329','49606','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103330','49607','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103331','49608','1','1','0.1','0',''), ('103332','49608','2','20','3m','0',''), ('103333','49609','1','1','0.1','0',''), ('103334','49609','2','20','3m','0',''), ('103335','49610','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103336','49611','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103337','49612','1','1','0.1','0',''), ('103338','49612','2','20','3m','0',''), ('103339','49613','1','1','0.1','0',''), ('103340','49613','2','20','3m','0',''), ('103341','49614','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103342','49615','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103343','49616','1','1','0.1','0',''), ('103344','49616','2','20','3m','0',''), ('103345','49617','1','1','0.1','0',''), ('103346','49617','2','20','3m','0',''), ('103347','49618','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103348','49619','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103349','49620','1','1','0.1','0',''), ('103350','49620','2','20','3m','0',''), ('103351','49621','1','1','0.1','0',''), ('103352','49621','2','20','3m','0',''), ('103353','49622','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103354','49623','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103355','49624','1','1','0.1','0',''), ('103356','49624','2','20','3m','0',''), ('103357','49625','1','1','0.1','0',''), ('103358','49625','2','20','3m','0',''), ('103359','49626','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103360','49627','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103361','49628','1','1','0.1','0',''), ('103362','49628','2','20','3m','0',''), ('103363','49629','1','1','0.1','0',''), ('103364','49629','2','20','3m','0',''), ('103365','49630','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103366','49631','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103367','49632','1','1','0.1','0',''), ('103368','49632','2','20','3m','0',''), ('103369','49633','1','1','0.1','0',''), ('103370','49633','2','20','3m','0',''), ('103371','49634','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.11 0','1',''), ('103372','49635','1','29','{#SNMPVALUE} 1.3.6.1.4.1.14988.1.1.3.10 0','1',''), ('103373','49636','1','1','0.1','0',''), ('103374','49636','2','20','3m','0',''), ('103375','49637','1','1','0.1','0',''), ('103376','49637','2','20','3m','0',''), ('103377','49640','1','21','try { var creds = JSON.parse(value); } catch (error) { throw ''Failed to parse authentication data from input value.''; } var request = new HttpRequest(), storage_array = {}, error_msg = '''', url = ''{$PURE.FLASHARRAY.API.URL}'', version = ''{$PURE.FLASHARRAY.API.VERSION}'', http_proxy = ''{$PURE.FLASHARRAY.HTTP_PROXY}''; function getHttpData(url, cookie) { request.addHeader(''Cookie: '' + cookie); request.addHeader(''Accept: application/json''); response = request.get(url); Zabbix.log(4, ''[ Pure Storage API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Failed to receive data: invalid response status code.''; } if (response !== null) { try { response = JSON.parse(response); if (Array.isArray(response) & response.length > 0) { response = response[0] } } catch (error) { throw ''Failed to parse response received from Pure Storage API. Check debug log for more information.''; } } if (typeof response !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object.''; } return response; }; try { [''cookie''].forEach(function (field) { if (creds[field] === null || creds[field] == '''' || typeof creds[field] === ''undefined'') { throw ''Unexpected cookie value has been received'' + ((typeof creds.error !== ''undefined'' && creds.error != '''') ? '': '' + creds.error : ''''); } }); if (url === ''{'' + ''$PURE.FLASHARRAY.API.URL}'') { throw ''Please change {'' + ''$PURE.FLASHARRAY.API.URL} macro to the proper value.''; } if (url.indexOf(''http://'') === -1 && url.indexOf(''https://'') === -1) { url = ''https://'' + url + (!url.endsWith(''/'') ? ''/'' : ''''); } if (http_proxy !== ''{'' + ''$PURE.FLASHARRAY.HTTP_PROXY}'' && http_proxy !== '''') { request.setProxy(http_proxy); } storage_array = getHttpData( url + ''api/'' + version + ''/array'', creds.cookie ); storage_array[''space''] = getHttpData( url + ''api/'' + version + ''/array?space=true'', creds.cookie ); storage_array[''monitor''] = getHttpData( url + ''api/'' + version + ''/array?action=monitor'', creds.cookie ); storage_array[''remote_assist''] = getHttpData( url + ''api/'' + version + ''/array/remoteassist'', creds.cookie, {} ); storage_array[''phone_home''] = getHttpData( url + ''api/'' + version + ''/array/phonehome'', creds.cookie, {} ); } catch (err) { error_msg = err; }; return JSON.stringify({ ''array'': storage_array, ''error'': error_msg.toString() });','0',''), ('103378','49641','1','12','$.error','0',''), ('103379','49641','2','20','1h','0',''), ('103380','49642','1','21','try { var creds = JSON.parse(value); } catch (error) { throw ''Failed to parse authentication data from input value.''; } var request = new HttpRequest(), certs = [], error_msg = '''', url = ''{$PURE.FLASHARRAY.API.URL}'', version = ''{$PURE.FLASHARRAY.API.VERSION}'', http_proxy = ''{$PURE.FLASHARRAY.HTTP_PROXY}''; function getHttpData(url, cookie) { request.addHeader(''Cookie: '' + cookie); response = request.get(url); Zabbix.log(4, ''[ Pure Storage API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Failed to receive data: invalid response status code.''; } if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from Pure Storage API. Check debug log for more information.''; } } if (typeof response !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object.''; } return response; }; try { [''cookie''].forEach(function (field) { if (creds[field] === null || creds[field] == '''' || typeof creds[field] === ''undefined'') { throw ''Unexpected cookie value has been received'' + ((typeof creds.error !== ''undefined'' && creds.error != '''') ? '': '' + creds.error : ''''); } }); if (url === ''{'' + ''$PURE.FLASHARRAY.API.URL}'') { throw ''Please change {'' + ''$PURE.FLASHARRAY.API.URL} macro to the proper value.''; } if (url.indexOf(''http://'') === -1 && url.indexOf(''https://'') === -1) { url = ''https://'' + url + (!url.endsWith(''/'') ? ''/'' : ''''); } if (http_proxy !== ''{'' + ''$PURE.FLASHARRAY.HTTP_PROXY}'' && http_proxy !== '''') { request.setProxy(http_proxy); } certs = getHttpData( url + ''api/'' + version + ''/cert'', creds.cookie ); } catch (err) { error_msg = err; }; return JSON.stringify({ ''certs'': certs, ''error'': error_msg.toString() });','0',''), ('103381','49643','1','21','try { var creds = JSON.parse(value); } catch (error) { throw ''Failed to parse authentication data from input value.''; } var request = new HttpRequest(), drives = [], hardware = [], controllers = [], error_msg = '''', url = ''{$PURE.FLASHARRAY.API.URL}'', version = ''{$PURE.FLASHARRAY.API.VERSION}'', http_proxy = ''{$PURE.FLASHARRAY.HTTP_PROXY}''; function getHttpData(url, cookie) { request.addHeader(''Cookie: '' + cookie); response = request.get(url); Zabbix.log(4, ''[ Pure Storage API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Failed to receive data: invalid response status code.''; } if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from Pure Storage API. Check debug log for more information.''; } } if (typeof response !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object.''; } return response; }; try { [''cookie''].forEach(function (field) { if (creds[field] === null || creds[field] == '''' || typeof creds[field] === ''undefined'') { throw ''Unexpected cookie value has been received'' + ((typeof creds.error !== ''undefined'' && creds.error != '''') ? '': '' + creds.error : ''''); } }); if (url === ''{'' + ''$PURE.FLASHARRAY.API.URL}'') { throw ''Please change {'' + ''$PURE.FLASHARRAY.API.URL} macro to the proper value.''; } if (url.indexOf(''http://'') === -1 && url.indexOf(''https://'') === -1) { url = ''https://'' + url + (!url.endsWith(''/'') ? ''/'' : ''''); } if (http_proxy !== ''{'' + ''$PURE.FLASHARRAY.HTTP_PROXY}'' && http_proxy !== '''') { request.setProxy(http_proxy); } drives = getHttpData( url + ''api/'' + version + ''/drive'', creds.cookie ); controllers = getHttpData( url + ''api/'' + version + ''/array?controllers=true'', creds.cookie ); getHttpData( url + ''api/'' + version + ''/hardware'', creds.cookie ).forEach(function (item) { var applied = false; drives.forEach(function (drive, index) { if (drive[''name''] && item[''name''] && drive[''name''] == item[''name'']) { drives[index][''hardware''] = item; applied = true; } }); controllers.forEach(function (ctrl, index) { if (ctrl[''name''] && item[''name''] && ctrl[''name''] == item[''name'']) { controllers[index][''hardware''] = item; applied = true; } }); if (!applied) { var nameArray = item[''name''].split(''.''); if (nameArray.length > 1) { item[''parent''] = nameArray[0]; } hardware.push(item); } }); } catch (err) { error_msg = err; }; return JSON.stringify({ ''drives'': drives, ''hardware'': hardware, ''controllers'': controllers, ''error'': error_msg.toString() });','0',''), ('103382','49644','1','21','try { var creds = JSON.parse(value); } catch (error) { throw ''Failed to parse authentication data from input value.''; } var request = new HttpRequest(), hosts = {}, error_msg = '''', url = ''{$PURE.FLASHARRAY.API.URL}'', version = ''{$PURE.FLASHARRAY.API.VERSION}'', http_proxy = ''{$PURE.FLASHARRAY.HTTP_PROXY}''; function getHttpData(url, cookie) { request.addHeader(''Cookie: '' + cookie); request.addHeader(''Accept: application/json''); response = request.get(url); Zabbix.log(4, ''[ Pure Storage API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Failed to receive data: invalid response status code.''; } if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from Pure Storage API. Check debug log for more information.''; } } if (typeof response !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object.''; } return response; }; try { [''cookie''].forEach(function (field) { if (creds[field] === null || creds[field] == '''' || typeof creds[field] === ''undefined'') { throw ''Unexpected cookie value has been received'' + ((typeof creds.error !== ''undefined'' && creds.error != '''') ? '': '' + creds.error : ''''); } }); if (url === ''{'' + ''$PURE.FLASHARRAY.API.URL}'') { throw ''Please change {'' + ''$PURE.FLASHARRAY.API.URL} macro to the proper value.''; } if (url.indexOf(''http://'') === -1 && url.indexOf(''https://'') === -1) { url = ''https://'' + url + (!url.endsWith(''/'') ? ''/'' : ''''); } if (http_proxy !== ''{'' + ''$PURE.FLASHARRAY.HTTP_PROXY}'' && http_proxy !== '''') { request.setProxy(http_proxy); } hosts = getHttpData( url + ''api/'' + version + ''/host'', creds.cookie ); getHttpData( url + ''api/'' + version + ''/host?space=true'', creds.cookie ).forEach(function (item) { hosts.forEach(function (host, index) { if (host[''name''] && item[''name''] && host[''name''] == item[''name'']) { hosts[index][''space''] = item; } }); }); getHttpData( url + ''api/'' + version + ''/host?action=monitor'', creds.cookie ).forEach(function (item) { hosts.forEach(function (host, index) { if (host[''name''] && item[''name''] && host[''name''] == item[''name'']) { hosts[index][''monitor''] = item; } }); }); } catch (err) { error_msg = err; }; return JSON.stringify({ ''hosts'': hosts, ''error'': error_msg.toString() });','0',''), ('103383','49645','1','21','try { var creds = JSON.parse(value); } catch (error) { throw ''Failed to parse authentication data from input value.''; } var request = new HttpRequest(), interfaces = [], error_msg = '''', url = ''{$PURE.FLASHARRAY.API.URL}'', version = ''{$PURE.FLASHARRAY.API.VERSION}'', http_proxy = ''{$PURE.FLASHARRAY.HTTP_PROXY}''; function getHttpData(url, cookie) { request.addHeader(''Cookie: '' + cookie); request.addHeader(''Accept: application/json''); response = request.get(url); Zabbix.log(4, ''[ Pure Storage API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Failed to receive data: invalid response status code.''; } if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from Pure Storage API. Check debug log for more information.''; } } if (typeof response !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object.''; } return response; }; try { [''cookie''].forEach(function (field) { if (creds[field] === null || creds[field] == '''' || typeof creds[field] === ''undefined'') { throw ''Unexpected cookie value has been received'' + ((typeof creds.error !== ''undefined'' && creds.error != '''') ? '': '' + creds.error : ''''); } }); if (url === ''{'' + ''$PURE.FLASHARRAY.API.URL}'') { throw ''Please change {'' + ''$PURE.FLASHARRAY.API.URL} macro to the proper value.''; } if (url.indexOf(''http://'') === -1 && url.indexOf(''https://'') === -1) { url = ''https://'' + url + (!url.endsWith(''/'') ? ''/'' : ''''); } if (http_proxy !== ''{'' + ''$PURE.FLASHARRAY.HTTP_PROXY}'' && http_proxy !== '''') { request.setProxy(http_proxy); } interfaces = getHttpData( url + ''api/'' + version + ''/network'', creds.cookie ); getHttpData( url + ''api/'' + version + ''/hardware'', creds.cookie ).forEach(function (item) { interfaces.forEach(function (netif, index) { if (netif[''name''] && item[''name''] && netif[''name''].toLowerCase() == item[''name''].toLowerCase()) { interfaces[index][''name''] = item[''name''].toLowerCase(); interfaces[index][''hardware''] = item; } }); }); } catch (err) { error_msg = err; }; return JSON.stringify({ ''interfaces'': interfaces, ''error'': error_msg.toString() });','0',''), ('103384','49646','1','21','try { var creds = JSON.parse(value); } catch (error) { throw ''Failed to parse authentication data from input value.''; } var request = new HttpRequest(), pods = [], error_msg = '''', url = ''{$PURE.FLASHARRAY.API.URL}'', version = ''{$PURE.FLASHARRAY.API.VERSION}'', http_proxy = ''{$PURE.FLASHARRAY.HTTP_PROXY}''; function getHttpData(url, cookie) { request.addHeader(''Cookie: '' + cookie); response = request.get(url); Zabbix.log(4, ''[ Pure Storage API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Failed to receive data: invalid response status code.''; } if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from Pure Storage API. Check debug log for more information.''; } } if (typeof response !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object.''; } return response; }; try { [''cookie''].forEach(function (field) { if (creds[field] === null || creds[field] == '''' || typeof creds[field] === ''undefined'') { throw ''Unexpected cookie value has been received'' + ((typeof creds.error !== ''undefined'' && creds.error != '''') ? '': '' + creds.error : ''''); } }); if (url === ''{'' + ''$PURE.FLASHARRAY.API.URL}'') { throw ''Please change {'' + ''$PURE.FLASHARRAY.API.URL} macro to the proper value.''; } if (url.indexOf(''http://'') === -1 && url.indexOf(''https://'') === -1) { url = ''https://'' + url + (!url.endsWith(''/'') ? ''/'' : ''''); } if (http_proxy !== ''{'' + ''$PURE.FLASHARRAY.HTTP_PROXY}'' && http_proxy !== '''') { request.setProxy(http_proxy); } pods = getHttpData( url + ''api/'' + version + ''/pod'', creds.cookie ); } catch (err) { error_msg = err; }; return JSON.stringify({ ''pods'': pods, ''error'': error_msg.toString() });','0',''), ('103385','49647','1','21','try { var creds = JSON.parse(value); } catch (error) { throw ''Failed to parse authentication data from input value.''; } var request = new HttpRequest(), volumes = {}, error_msg = '''', url = ''{$PURE.FLASHARRAY.API.URL}'', version = ''{$PURE.FLASHARRAY.API.VERSION}'', http_proxy = ''{$PURE.FLASHARRAY.HTTP_PROXY}''; function getHttpData(url, cookie) { request.addHeader(''Cookie: '' + cookie); request.addHeader(''Accept: application/json''); response = request.get(url); Zabbix.log(4, ''[ Pure Storage API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Failed to receive data: invalid response status code.''; } if (response !== null) { try { response = JSON.parse(response); } catch (error) { throw ''Failed to parse response received from Pure Storage API. Check debug log for more information.''; } } if (typeof response !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object.''; } return response; }; try { [''cookie''].forEach(function (field) { if (creds[field] === null || creds[field] == '''' || typeof creds[field] === ''undefined'') { throw ''Unexpected cookie value has been received'' + ((typeof creds.error !== ''undefined'' && creds.error != '''') ? '': '' + creds.error : ''''); } }); if (url === ''{'' + ''$PURE.FLASHARRAY.API.URL}'') { throw ''Please change {'' + ''$PURE.FLASHARRAY.API.URL} macro to the proper value.''; } if (url.indexOf(''http://'') === -1 && url.indexOf(''https://'') === -1) { url = ''https://'' + url + (!url.endsWith(''/'') ? ''/'' : ''''); } if (http_proxy !== ''{'' + ''$PURE.FLASHARRAY.HTTP_PROXY}'' && http_proxy !== '''') { request.setProxy(http_proxy); } volumes = getHttpData( url + ''api/'' + version + ''/volume'', creds.cookie, {} ); getHttpData( url + ''api/'' + version + ''/volume?space=true'', creds.cookie ).forEach(function (item) { volumes.forEach(function (volume, index) { if (volume[''name''] && item[''name''] && volume[''name''] == item[''name'']) { volumes[index][''space''] = item; } }); }); getHttpData( url + ''api/'' + version + ''/volume?action=monitor'', creds.cookie ).forEach(function (item) { volumes.forEach(function (volume, index) { if (volume[''name''] && item[''name''] && volume[''name''] == item[''name'']) { volumes[index][''monitor''] = item; } }); }); } catch (err) { error_msg = err; }; return JSON.stringify({ ''volumes'': volumes, ''error'': error_msg.toString() });','0',''), ('103386','49648','1','21','try { var creds = JSON.parse(value); } catch (error) { throw ''Failed to parse authentication data from input value.''; } var request = new HttpRequest(), alerts = [], error_msg = '''', url = ''{$PURE.FLASHARRAY.API.URL}'', version = ''{$PURE.FLASHARRAY.API.VERSION}'', http_proxy = ''{$PURE.FLASHARRAY.HTTP_PROXY}''; function getHttpData(url) { response = request.get(url); Zabbix.log(4, ''[ Pure Storage API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Failed to receive data: invalid response status code.''; } if (response !== null) { try { response = JSON.parse(response)[''items'']; } catch (error) { throw ''Failed to parse response received from Pure Storage API. Check debug log for more information.''; } } if (typeof response !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object.''; } return response; }; try { [''token''].forEach(function (field) { if (creds[field] === null || creds[field] == '''' || typeof creds[field] === ''undefined'') { throw ''Unexpected session token value has been received'' + ((typeof creds.error !== ''undefined'' && creds.error != '''') ? '': '' + creds.error : ''''); } }); if (url === ''{'' + ''$PURE.FLASHARRAY.API.URL}'') { throw ''Please change {'' + ''$PURE.FLASHARRAY.API.URL} macro to the proper value.''; } if (url.indexOf(''http://'') === -1 && url.indexOf(''https://'') === -1) { url = ''https://'' + url + (!url.endsWith(''/'') ? ''/'' : ''''); } if (http_proxy !== ''{'' + ''$PURE.FLASHARRAY.HTTP_PROXY}'' && http_proxy !== '''') { request.setProxy(http_proxy); } request.addHeader(''x-auth-token: '' + creds.token); request.addHeader(''Accept: application/json''); alerts = getHttpData( url + ''api/'' + version + ''/alerts'' ).filter(function (item) { if (item[''state''] == ''open'') { return true; } return false; }); } catch (err) { error_msg = err; }; return JSON.stringify({ ''alerts'': alerts, ''error'': error_msg.toString() });','0',''), ('103387','49649','1','21','try { var creds = JSON.parse(value); } catch (error) { throw ''Failed to parse authentication data from input value.''; } var request = new HttpRequest(), storage_array = {}, error_msg = '''', url = ''{$PURE.FLASHARRAY.API.URL}'', version = ''{$PURE.FLASHARRAY.API.VERSION}'', http_proxy = ''{$PURE.FLASHARRAY.HTTP_PROXY}''; function getHttpData(url) { response = request.get(url); Zabbix.log(4, ''[ Pure Storage API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Failed to receive data: invalid response status code.''; } if (response !== null) { try { response = JSON.parse(response)[''items'']; if (Array.isArray(response) & response.length > 0) { response = response[0] } } catch (error) { throw ''Failed to parse response received from Pure Storage API. Check debug log for more information.''; } } if (typeof response !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object.''; } return response; }; try { [''token''].forEach(function (field) { if (creds[field] === null || creds[field] == '''' || typeof creds[field] === ''undefined'') { throw ''Unexpected session token value has been received'' + ((typeof creds.error !== ''undefined'' && creds.error != '''') ? '': '' + creds.error : ''''); } }); if (url === ''{'' + ''$PURE.FLASHARRAY.API.URL}'') { throw ''Please change {'' + ''$PURE.FLASHARRAY.API.URL} macro to the proper value.''; } if (url.indexOf(''http://'') === -1 && url.indexOf(''https://'') === -1) { url = ''https://'' + url + (!url.endsWith(''/'') ? ''/'' : ''''); } if (http_proxy !== ''{'' + ''$PURE.FLASHARRAY.HTTP_PROXY}'' && http_proxy !== '''') { request.setProxy(http_proxy); } request.addHeader(''x-auth-token: '' + creds.token); request.addHeader(''Accept: application/json''); storage_array = getHttpData(url + ''api/'' + version + ''/arrays''); storage_array[''performance''] = getHttpData(url + ''api/'' + version + ''/arrays/performance''); } catch (err) { error_msg = err; }; return JSON.stringify({ ''array'': storage_array, ''error'': error_msg.toString() });','0',''), ('103388','49650','1','12','$.error','0',''), ('103389','49650','2','20','1h','0',''), ('103390','49651','1','21','try { var creds = JSON.parse(value); } catch (error) { throw ''Failed to parse authentication data from input value.''; } var request = new HttpRequest(), certs = [], error_msg = '''', url = ''{$PURE.FLASHARRAY.API.URL}'', version = ''{$PURE.FLASHARRAY.API.VERSION}'', http_proxy = ''{$PURE.FLASHARRAY.HTTP_PROXY}''; function getHttpData(url) { response = request.get(url); Zabbix.log(4, ''[ Pure Storage API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Failed to receive data: invalid response status code.''; } if (response !== null) { try { response = JSON.parse(response)[''items'']; } catch (error) { throw ''Failed to parse response received from Pure Storage API. Check debug log for more information.''; } } if (typeof response !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object.''; } return response; }; try { [''token''].forEach(function (field) { if (creds[field] === null || creds[field] == '''' || typeof creds[field] === ''undefined'') { throw ''Unexpected session token value has been received'' + ((typeof creds.error !== ''undefined'' && creds.error != '''') ? '': '' + creds.error : ''''); } }); if (url === ''{'' + ''$PURE.FLASHARRAY.API.URL}'') { throw ''Please change {'' + ''$PURE.FLASHARRAY.API.URL} macro to the proper value.''; } if (url.indexOf(''http://'') === -1 && url.indexOf(''https://'') === -1) { url = ''https://'' + url + (!url.endsWith(''/'') ? ''/'' : ''''); } if (http_proxy !== ''{'' + ''$PURE.FLASHARRAY.HTTP_PROXY}'' && http_proxy !== '''') { request.setProxy(http_proxy); } request.addHeader(''x-auth-token: '' + creds.token); request.addHeader(''Accept: application/json''); certs = getHttpData(url + ''api/'' + version + ''/certificates''); } catch (err) { error_msg = err; }; return JSON.stringify({ ''certs'': certs, ''error'': error_msg.toString() });','0',''), ('103391','49652','1','21','try { var creds = JSON.parse(value); } catch (error) { throw ''Failed to parse authentication data from input value.''; } var request = new HttpRequest(), drives = [], hardware = [], controllers = [], error_msg = '''', url = ''{$PURE.FLASHARRAY.API.URL}'', version = ''{$PURE.FLASHARRAY.API.VERSION}'', http_proxy = ''{$PURE.FLASHARRAY.HTTP_PROXY}''; function getHttpData(url) { response = request.get(url); Zabbix.log(4, ''[ Pure Storage API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Failed to receive data: invalid response status code.''; } if (response !== null) { try { response = JSON.parse(response)[''items'']; } catch (error) { throw ''Failed to parse response received from Pure Storage API. Check debug log for more information.''; } } if (typeof response !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object.''; } return response; }; try { [''token''].forEach(function (field) { if (creds[field] === null || creds[field] == '''' || typeof creds[field] === ''undefined'') { throw ''Unexpected session token value has been received'' + ((typeof creds.error !== ''undefined'' && creds.error != '''') ? '': '' + creds.error : ''''); } }); if (url === ''{'' + ''$PURE.FLASHARRAY.API.URL}'') { throw ''Please change {'' + ''$PURE.FLASHARRAY.API.URL} macro to the proper value.''; } if (url.indexOf(''http://'') === -1 && url.indexOf(''https://'') === -1) { url = ''https://'' + url + (!url.endsWith(''/'') ? ''/'' : ''''); } if (http_proxy !== ''{'' + ''$PURE.FLASHARRAY.HTTP_PROXY}'' && http_proxy !== '''') { request.setProxy(http_proxy); } request.addHeader(''x-auth-token: '' + creds.token); request.addHeader(''Accept: application/json''); drives = getHttpData(url + ''api/'' + version + ''/drives''); controllers = getHttpData(url + ''api/'' + version + ''/controllers''); getHttpData( url + ''api/'' + version + ''/hardware'' ).forEach(function (item) { var applied = false; drives.forEach(function (drive, index) { if (drive[''name''] && item[''name''] && drive[''name''] == item[''name'']) { drives[index][''hardware''] = item; applied = true; } }); controllers.forEach(function (ctrl, index) { if (ctrl[''name''] && item[''name''] && ctrl[''name''] == item[''name'']) { controllers[index][''hardware''] = item; applied = true; } }); if (!applied) { var nameArray = item[''name''].split(''.''); if (nameArray.length > 1) { item[''parent''] = nameArray[0]; } hardware.push(item); } }); } catch (err) { error_msg = err; }; return JSON.stringify({ ''drives'': drives, ''hardware'': hardware, ''controllers'': controllers, ''error'': error_msg.toString() });','0',''), ('103392','49653','1','21','try { var creds = JSON.parse(value); } catch (error) { throw ''Failed to parse authentication data from input value.''; } var request = new HttpRequest(), hosts = [], error_msg = '''', url = ''{$PURE.FLASHARRAY.API.URL}'', version = ''{$PURE.FLASHARRAY.API.VERSION}'', http_proxy = ''{$PURE.FLASHARRAY.HTTP_PROXY}''; function getHttpData(url) { response = request.get(url); Zabbix.log(4, ''[ Pure Storage API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Failed to receive data: invalid response status code.''; } if (response !== null) { try { response = JSON.parse(response)[''items'']; } catch (error) { throw ''Failed to parse response received from Pure Storage API. Check debug log for more information.''; } } if (typeof response !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object.''; } return response; }; try { [''token''].forEach(function (field) { if (creds[field] === null || creds[field] == '''' || typeof creds[field] === ''undefined'') { throw ''Unexpected session token value has been received'' + ((typeof creds.error !== ''undefined'' && creds.error != '''') ? '': '' + creds.error : ''''); } }); if (url === ''{'' + ''$PURE.FLASHARRAY.API.URL}'') { throw ''Please change {'' + ''$PURE.FLASHARRAY.API.URL} macro to the proper value.''; } if (url.indexOf(''http://'') === -1 && url.indexOf(''https://'') === -1) { url = ''https://'' + url + (!url.endsWith(''/'') ? ''/'' : ''''); } if (http_proxy !== ''{'' + ''$PURE.FLASHARRAY.HTTP_PROXY}'' && http_proxy !== '''') { request.setProxy(http_proxy); } request.addHeader(''x-auth-token: '' + creds.token); request.addHeader(''Accept: application/json''); hosts = getHttpData(url + ''api/'' + version + ''/hosts''); getHttpData( url + ''api/'' + version + ''/hosts/performance'' ).forEach(function (item) { hosts.forEach(function (host, index) { if (host[''name''] && item[''name''] && host[''name''] == item[''name'']) { hosts[index][''performance''] = item; } }); }); } catch (err) { error_msg = err; }; return JSON.stringify({ ''hosts'': hosts, ''error'': error_msg.toString() });','0',''), ('103393','49654','1','21','try { var creds = JSON.parse(value); } catch (error) { throw ''Failed to parse authentication data from input value.''; } var request = new HttpRequest(), interfaces = [], error_msg = '''', url = ''{$PURE.FLASHARRAY.API.URL}'', version = ''{$PURE.FLASHARRAY.API.VERSION}'', http_proxy = ''{$PURE.FLASHARRAY.HTTP_PROXY}''; function getHttpData(url) { response = request.get(url); Zabbix.log(4, ''[ Pure Storage API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Failed to receive data: invalid response status code.''; } if (response !== null) { try { response = JSON.parse(response)[''items'']; } catch (error) { throw ''Failed to parse response received from Pure Storage API. Check debug log for more information.''; } } if (typeof response !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object.''; } return response; }; try { [''token''].forEach(function (field) { if (creds[field] === null || creds[field] == '''' || typeof creds[field] === ''undefined'') { throw ''Unexpected session token value has been received'' + ((typeof creds.error !== ''undefined'' && creds.error != '''') ? '': '' + creds.error : ''''); } }); if (url === ''{'' + ''$PURE.FLASHARRAY.API.URL}'') { throw ''Please change {'' + ''$PURE.FLASHARRAY.API.URL} macro to the proper value.''; } if (url.indexOf(''http://'') === -1 && url.indexOf(''https://'') === -1) { url = ''https://'' + url + (!url.endsWith(''/'') ? ''/'' : ''''); } if (http_proxy !== ''{'' + ''$PURE.FLASHARRAY.HTTP_PROXY}'' && http_proxy !== '''') { request.setProxy(http_proxy); } request.addHeader(''x-auth-token: '' + creds.token); request.addHeader(''Accept: application/json''); interfaces = getHttpData(url + ''api/'' + version + ''/network-interfaces''); getHttpData( url + ''api/'' + version + ''/network-interfaces/performance'' ).forEach(function (item) { interfaces.forEach(function (netif, index) { if (netif[''name''] && item[''name''] && netif[''name''] == item[''name'']) { interfaces[index][''performance''] = item[''eth'']; } }); }); } catch (err) { error_msg = err; }; return JSON.stringify({ ''interfaces'': interfaces, ''error'': error_msg.toString() });','0',''), ('103394','49655','1','21','try { var creds = JSON.parse(value); } catch (error) { throw ''Failed to parse authentication data from input value.''; } var request = new HttpRequest(), pods = [], error_msg = '''', url = ''{$PURE.FLASHARRAY.API.URL}'', version = ''{$PURE.FLASHARRAY.API.VERSION}'', http_proxy = ''{$PURE.FLASHARRAY.HTTP_PROXY}''; function getHttpData(url) { response = request.get(url); Zabbix.log(4, ''[ Pure Storage API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Failed to receive data: invalid response status code.''; } if (response !== null) { try { response = JSON.parse(response)[''items'']; } catch (error) { throw ''Failed to parse response received from Pure Storage API. Check debug log for more information.''; } } if (typeof response !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object.''; } return response; }; try { [''token''].forEach(function (field) { if (creds[field] === null || creds[field] == '''' || typeof creds[field] === ''undefined'') { throw ''Unexpected session token value has been received'' + ((typeof creds.error !== ''undefined'' && creds.error != '''') ? '': '' + creds.error : ''''); } }); if (url === ''{'' + ''$PURE.FLASHARRAY.API.URL}'') { throw ''Please change {'' + ''$PURE.FLASHARRAY.API.URL} macro to the proper value.''; } if (url.indexOf(''http://'') === -1 && url.indexOf(''https://'') === -1) { url = ''https://'' + url + (!url.endsWith(''/'') ? ''/'' : ''''); } if (http_proxy !== ''{'' + ''$PURE.FLASHARRAY.HTTP_PROXY}'' && http_proxy !== '''') { request.setProxy(http_proxy); } request.addHeader(''x-auth-token: '' + creds.token); request.addHeader(''Accept: application/json''); pods = getHttpData(url + ''api/'' + version + ''/pods''); } catch (err) { error_msg = err; }; return JSON.stringify({ ''pods'': pods, ''error'': error_msg.toString() });','0',''), ('103395','49656','1','21','try { var creds = JSON.parse(value); } catch (error) { throw ''Failed to parse authentication data from input value.''; } var request = new HttpRequest(), support_data = {}, error_msg = '''', url = ''{$PURE.FLASHARRAY.API.URL}'', version = ''{$PURE.FLASHARRAY.API.VERSION}'', http_proxy = ''{$PURE.FLASHARRAY.HTTP_PROXY}''; function getHttpData(url) { response = request.get(url); Zabbix.log(4, ''[ Pure Storage API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Failed to receive data: invalid response status code.''; } if (response !== null) { try { response = JSON.parse(response)[''items'']; if (Array.isArray(response) & response.length > 0) { response = response[0] } } catch (error) { throw ''Failed to parse response received from Pure Storage API. Check debug log for more information.''; } } if (typeof response !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object.''; } return response; }; try { [''token''].forEach(function (field) { if (creds[field] === null || creds[field] == '''' || typeof creds[field] === ''undefined'') { throw ''Unexpected session token value has been received'' + ((typeof creds.error !== ''undefined'' && creds.error != '''') ? '': '' + creds.error : ''''); } }); if (url === ''{'' + ''$PURE.FLASHARRAY.API.URL}'') { throw ''Please change {'' + ''$PURE.FLASHARRAY.API.URL} macro to the proper value.''; } if (url.indexOf(''http://'') === -1 && url.indexOf(''https://'') === -1) { url = ''https://'' + url + (!url.endsWith(''/'') ? ''/'' : ''''); } if (http_proxy !== ''{'' + ''$PURE.FLASHARRAY.HTTP_PROXY}'' && http_proxy !== '''') { request.setProxy(http_proxy); } request.addHeader(''x-auth-token: '' + creds.token); request.addHeader(''Accept: application/json''); support_data = getHttpData(url + ''api/'' + version + ''/support''); } catch (err) { error_msg = err; }; return JSON.stringify({ ''support'': support_data, ''error'': error_msg.toString() });','0',''), ('103396','49657','1','21','try { var creds = JSON.parse(value); } catch (error) { throw ''Failed to parse authentication data from input value.''; } var request = new HttpRequest(), volumes = [], error_msg = '''', url = ''{$PURE.FLASHARRAY.API.URL}'', version = ''{$PURE.FLASHARRAY.API.VERSION}'', http_proxy = ''{$PURE.FLASHARRAY.HTTP_PROXY}''; function getHttpData(url) { response = request.get(url); Zabbix.log(4, ''[ Pure Storage API ] [ '' + url + '' ] Received response with status code '' + request.getStatus() + '': '' + response); if (request.getStatus() !== 200) { throw ''Failed to receive data: invalid response status code.''; } if (response !== null) { try { response = JSON.parse(response)[''items'']; } catch (error) { throw ''Failed to parse response received from Pure Storage API. Check debug log for more information.''; } } if (typeof response !== ''object'' || response === null) { throw ''Cannot process response data: received data is not an object.''; } return response; }; try { [''token''].forEach(function (field) { if (creds[field] === null || creds[field] == '''' || typeof creds[field] === ''undefined'') { throw ''Unexpected session token value has been received'' + ((typeof creds.error !== ''undefined'' && creds.error != '''') ? '': '' + creds.error : ''''); } }); if (url === ''{'' + ''$PURE.FLASHARRAY.API.URL}'') { throw ''Please change {'' + ''$PURE.FLASHARRAY.API.URL} macro to the proper value.''; } if (url.indexOf(''http://'') === -1 && url.indexOf(''https://'') === -1) { url = ''https://'' + url + (!url.endsWith(''/'') ? ''/'' : ''''); } if (http_proxy !== ''{'' + ''$PURE.FLASHARRAY.HTTP_PROXY}'' && http_proxy !== '''') { request.setProxy(http_proxy); } request.addHeader(''x-auth-token: '' + creds.token); request.addHeader(''Accept: application/json''); volumes = getHttpData(url + ''api/'' + version + ''/volumes''); getHttpData( url + ''api/'' + version + ''/volumes/performance'' ).forEach(function (item) { volumes.forEach(function (volume, index) { if (volume[''name''] && item[''name''] && volume[''name''] == item[''name'']) { volumes[index][''performance''] = item; } }); }); } catch (err) { error_msg = err; }; return JSON.stringify({ ''volumes'': volumes, ''error'': error_msg.toString() });','0',''), ('103397','49658','1','12','$.array.space.capacity','0',''), ('103398','49659','1','12','$.array.space.data_reduction','0',''), ('103399','49660','1','12','$.error','0',''), ('103400','49660','2','20','1h','0',''), ('103401','49661','1','12','$.array.space.hostname','0',''), ('103402','49661','2','20','1d','0',''), ('103403','49662','1','12','$.array.space.parity','0',''), ('103404','49662','2','1','100','0',''), ('103405','49663','1','12','$.array.monitor.output_per_sec','0',''), ('103406','49664','1','12','$.array.monitor.reads_per_sec','0',''), ('103407','49665','1','12','$.array.space.shared_space','0',''), ('103408','49666','1','12','$.array.space.snapshots','0',''), ('103409','49667','1','12','$.array.space.system','0',''), ('103410','49668','1','12','$.array.space.thin_provisioning','0',''), ('103411','49668','2','1','100','0',''), ('103412','49669','1','12','$.array.space.total_reduction','0',''), ('103413','49670','1','12','$.array.monitor.local_queue_usec_per_op','0',''), ('103414','49671','1','12','$.array.monitor.usec_per_read_op','0',''), ('103415','49672','1','12','$.array.monitor.usec_per_write_op','0',''), ('103416','49673','1','12','$.array.space.total','0',''), ('103417','49674','1','12','$.array.version','0',''), ('103418','49674','2','20','1d','0',''), ('103419','49675','1','12','$.array.space.volumes','0',''), ('103420','49676','1','12','$.array.monitor.writes_per_sec','0',''), ('103421','49677','1','12','$.array.monitor.input_per_sec','0',''), ('103422','49678','1','12','$.error','0',''), ('103423','49678','2','20','1h','0',''), ('103424','49679','1','12','$.error','0',''), ('103425','49679','2','20','1h','0',''), ('103426','49680','1','12','$.error','0',''), ('103427','49680','2','20','1h','0',''), ('103428','49681','1','12','$.error','0',''), ('103429','49681','2','20','1h','0',''), ('103430','49682','1','12','$.array.phone_home.status','0',''), ('103431','49682','2','21','const idx = [ ''disabled'', ''enabled'' ].indexOf(value); return idx !== -1 ? idx : 2;','0',''), ('103432','49682','3','20','6h','0',''), ('103433','49683','1','12','$.error','0',''), ('103434','49683','2','20','1h','0',''), ('103435','49684','1','12','$.array.remote_assist.status','0',''), ('103436','49684','2','21','const idx = [ ''disconnected'', ''connected'' ].indexOf(value); return idx !== -1 ? idx : 2;','0',''), ('103437','49684','3','20','6h','0',''), ('103438','49685','1','12','$.error','0',''), ('103439','49685','2','20','1h','0',''), ('103440','49686','1','12','$..[?(@.severity == "critical")].length()','0',''), ('103441','49687','1','12','$.error','0',''), ('103442','49687','2','20','1h','0',''), ('103443','49688','1','12','$..[?(@.severity == "warning")].length()','0',''), ('103444','49689','1','12','$.array.capacity','0',''), ('103445','49690','1','12','$.array.space.data_reduction','0',''), ('103446','49691','1','12','$.error','0',''), ('103447','49691','2','20','1h','0',''), ('103448','49692','1','12','$.array.name','0',''), ('103449','49692','2','20','1d','0',''), ('103450','49693','1','12','$.array.os','0',''), ('103451','49693','2','20','1d','0',''), ('103452','49694','1','12','$.array.parity','0',''), ('103453','49694','2','1','100','0',''), ('103454','49695','1','12','$.array.space.total_physical','0',''), ('103455','49696','1','12','$.array.performance.read_bytes_per_sec','0',''), ('103456','49697','1','12','$.array.performance.reads_per_sec','0',''), ('103457','49698','1','12','$.array.space.shared','0',''), ('103458','49699','1','12','$.array.space.snapshots','0',''), ('103459','49700','1','12','$.array.space.system','0',''), ('103460','49701','1','12','$.array.space.thin_provisioning','0',''), ('103461','49701','2','1','100','0',''), ('103462','49702','1','12','$.array.space.total_reduction','0',''), ('103463','49703','1','12','$.array.performance.local_queue_usec_per_op','0',''), ('103464','49704','1','12','$.array.performance.usec_per_read_op','0',''), ('103465','49705','1','12','$.array.performance.usec_per_write_op','0',''), ('103466','49706','1','12','$.array.space.total_used','1',''), ('103467','49707','1','12','$.array.version','0',''), ('103468','49707','2','20','1d','0',''), ('103469','49708','1','12','$.array.performance.writes_per_sec','0',''), ('103470','49709','1','12','$.array.performance.write_bytes_per_sec','0',''), ('103471','49710','1','12','$.error','0',''), ('103472','49710','2','20','1h','0',''), ('103473','49711','1','12','$.error','0',''), ('103474','49711','2','20','1h','0',''), ('103475','49712','1','12','$.error','0',''), ('103476','49712','2','20','1h','0',''), ('103477','49713','1','12','$.error','0',''), ('103478','49713','2','20','1h','0',''), ('103479','49714','1','12','$.support.phonehome_enabled','0',''), ('103480','49714','2','6','','0',''), ('103481','49714','3','20','6h','0',''), ('103482','49715','1','12','$.error','0',''), ('103483','49715','2','20','1h','0',''), ('103484','49716','1','12','$.support.remote_assist_active','0',''), ('103485','49716','2','6','','0',''), ('103486','49716','3','20','6h','0',''), ('103487','49717','1','12','$.error','0',''), ('103488','49717','2','20','1h','0',''), ('103489','49718','1','12','$.error','0',''), ('103490','49718','2','20','1h','0',''), ('103491','49719','1','12','$.certs','0',''), ('103492','49719','2','20','3h','0',''), ('103493','49720','1','12','$.controllers','0',''), ('103494','49720','2','20','3h','0',''), ('103495','49721','1','12','$.drives','0',''), ('103496','49721','2','20','3h','0',''), ('103497','49722','1','12','$.hardware','0',''), ('103498','49722','2','20','3h','0',''), ('103499','49723','1','12','$.hosts','0',''), ('103500','49723','2','20','3h','0',''), ('103501','49724','1','12','$.interfaces','0',''), ('103502','49724','2','20','3h','0',''), ('103503','49725','1','12','$.pods','0',''), ('103504','49725','2','20','3h','0',''), ('103505','49726','1','12','$.hardware','0',''), ('103506','49726','2','20','3h','0',''), ('103507','49727','1','12','$.hardware','0',''), ('103508','49727','2','20','3h','0',''), ('103509','49728','1','12','$.volumes','0',''), ('103510','49728','2','20','3h','0',''), ('103511','49729','1','12','$.certs','0',''), ('103512','49729','2','20','3h','0',''), ('103513','49730','1','12','$.controllers','0',''), ('103514','49730','2','20','3h','0',''), ('103515','49731','1','12','$.drives','0',''), ('103516','49731','2','20','3h','0',''), ('103517','49732','1','12','$.hardware','0',''), ('103518','49732','2','20','3h','0',''), ('103519','49733','1','12','$.hosts','0',''), ('103520','49733','2','20','3h','0',''), ('103521','49734','1','12','$.interfaces','0',''), ('103522','49734','2','20','3h','0',''), ('103523','49735','1','12','$.pods','0',''), ('103524','49735','2','20','3h','0',''), ('103525','49736','1','12','$.hardware','0',''), ('103526','49736','2','20','3h','0',''), ('103527','49737','1','12','$.hardware','0',''), ('103528','49737','2','20','3h','0',''), ('103529','49738','1','12','$.volumes','0',''), ('103530','49738','2','20','3h','0',''), ('103531','49739','1','12','$.certs[?(@.name == "{#NAME}")].first()','1',''), ('103532','49740','1','12','$.controllers[?(@.name == "{#NAME}")].first()','1',''), ('103533','49741','1','12','$.drives[?(@.name == "{#NAME}")].first()','1',''), ('103534','49742','1','12','$.hardware[?(@.name == "{#NAME}")].first()','1',''), ('103535','49743','1','12','$.hosts[?(@.name == "{#NAME}")].first()','1',''), ('103536','49744','1','12','$.interfaces[?(@.name == "{#IFNAME}")].first()','1',''), ('103537','49745','1','12','$.pods[?(@.name == "{#NAME}")].first()','1',''), ('103538','49746','1','12','$.hardware[?(@.name == "{#NAME}")].first()','1',''), ('103539','49747','1','12','$.hardware[?(@.name == "{#NAME}")].first()','1',''), ('103540','49748','1','12','$.volumes[?(@.serial == "{#SN}")].first()','1',''), ('103541','49749','1','12','$.certs[?(@.name == "{#NAME}")].first()','1',''), ('103542','49750','1','12','$.controllers[?(@.name == "{#NAME}")].first()','1',''), ('103543','49751','1','12','$.drives[?(@.name == "{#NAME}")].first()','1',''), ('103544','49752','1','12','$.hardware[?(@.name == "{#NAME}")].first()','1',''), ('103545','49753','1','12','$.hosts[?(@.name == "{#NAME}")].first()','1',''), ('103546','49754','1','12','$.interfaces[?(@.name == "{#IFNAME}")].first()','1',''), ('103547','49755','1','12','$.pods[?(@.name == "{#NAME}")].first()','1',''), ('103548','49756','1','12','$.hardware[?(@.name == "{#NAME}")].first()','1',''), ('103549','49757','1','12','$.hardware[?(@.name == "{#NAME}")].first()','1',''), ('103550','49758','1','12','$.volumes[?(@.serial == "{#SN}")].first()','1',''), ('103551','49759','1','12','$.common_name','0',''), ('103552','49759','2','20','1d','0',''), ('103553','49759','3','15','^null$','1',''), ('103554','49760','1','12','$.issued_by','0',''), ('103555','49760','2','20','1d','0',''), ('103556','49760','3','15','^$','1',''), ('103557','49761','1','12','$.issued_to','0',''), ('103558','49761','2','20','1d','0',''), ('103559','49761','3','15','^$','1',''), ('103560','49762','1','12','$.valid_from','0',''), ('103561','49762','2','1','0.001','0',''), ('103562','49763','1','12','$.valid_to','0',''), ('103563','49763','2','1','0.001','0',''), ('103564','49764','1','12','$.model','1',''), ('103565','49764','2','20','1d','0',''), ('103566','49765','1','12','$.mode','1',''), ('103567','49765','2','21','const idx = [ ''not present'', ''offline'', ''primary'', ''secondary'', ].indexOf(value); return idx !== -1 ? idx : 4;','0',''), ('103568','49766','1','12','$.hardware.serial','1',''), ('103569','49766','2','20','1d','0',''), ('103570','49767','1','12','$.status','1',''), ('103571','49767','2','21','const idx = [ ''not ready'', ''ready'', ''updating'', ].indexOf(value); return idx !== -1 ? idx : 3;','0',''), ('103572','49768','1','12','$.version','1',''), ('103573','49768','2','20','1d','0',''), ('103574','49769','1','12','$.capacity','1',''), ('103575','49770','1','12','$.hardware.serial','1',''), ('103576','49770','2','20','1d','0',''), ('103577','49770','3','15','^null$','1',''), ('103578','49771','1','12','$.status','1',''), ('103579','49771','2','21','const idx = [ ''healthy'', ''empty'', ''updating'', ''unused'', ''evacuating'', ''identifying'', ''unhealthy'', ''recovering'', ''unrecognized'', ''failed'' ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('103580','49772','1','12','$.status','1',''), ('103581','49772','2','21','const idx = [ ''ok'', ''critical'', ''degraded'', ''device_off'', ''identifying'', ''not_installed'', ].indexOf(value); return idx !== -1 ? idx : 6;','0',''), ('103582','49773','1','12','$.space.data_reduction','0',''), ('103583','49774','1','12','$.monitor.output_per_sec','0',''), ('103584','49775','1','12','$.monitor.reads_per_sec','0',''), ('103585','49776','1','12','$.space.size','1',''), ('103586','49777','1','12','$.space.snapshots','0',''), ('103587','49778','1','12','$.space.thin_provisioning','0',''), ('103588','49778','2','1','100','0',''), ('103589','49779','1','12','$.space.total_reduction','0',''), ('103590','49780','1','12','$.monitor.usec_per_read_op','0',''), ('103591','49781','1','12','$.monitor.usec_per_write_op','0',''), ('103592','49782','1','12','$.space.total','0',''), ('103593','49783','1','12','$.monitor.writes_per_sec','0',''), ('103594','49784','1','12','$.monitor.input_per_sec','0',''), ('103595','49785','1','12','$.gateway','0',''), ('103596','49785','2','20','1d','0',''), ('103597','49785','3','15','^null$','1',''), ('103598','49786','1','12','$.address','0',''), ('103599','49786','2','20','1d','0',''), ('103600','49786','3','15','^null$','1',''), ('103601','49787','1','12','$.hwaddr','0',''), ('103602','49787','2','20','1d','0',''), ('103603','49787','3','15','^null$','1',''), ('103604','49788','1','12','$.speed','0',''), ('103605','49789','1','12','$.arrays.length()','2','0'), ('103606','49790','1','12','$.promotion_status','1',''), ('103607','49790','2','21','const idx = [ ''demoted'', ''promoted'' ].indexOf(value); return idx !== -1 ? idx : 2;','0',''), ('103608','49791','1','12','$.model','1',''), ('103609','49791','2','20','1d','0',''), ('103610','49792','1','12','$.serial','1',''), ('103611','49792','2','20','1d','0',''), ('103612','49793','1','12','$.status','1',''), ('103613','49793','2','21','const idx = [ ''ok'', ''critical'', ''degraded'', ''device_off'', ''identifying'', ''not_installed'', ].indexOf(value); return idx !== -1 ? idx : 6;','0',''), ('103614','49794','1','12','$.voltage','1',''), ('103615','49795','1','12','$.status','1',''), ('103616','49795','2','21','const idx = [ ''ok'', ''critical'', ''degraded'', ''device_off'', ''identifying'', ''not_installed'', ].indexOf(value); return idx !== -1 ? idx : 6;','0',''), ('103617','49796','1','12','$.temperature','1',''), ('103618','49797','1','12','$.space.data_reduction','0',''), ('103619','49798','1','12','$.monitor.output_per_sec','0',''), ('103620','49799','1','12','$.monitor.reads_per_sec','0',''), ('103621','49800','1','12','$.space.shared_space','0',''), ('103622','49800','2','15','^null$','2','0'), ('103623','49801','1','12','$.size','1',''), ('103624','49802','1','12','$.space.snapshots','0',''), ('103625','49803','1','12','$.space.thin_provisioning','0',''), ('103626','49803','2','1','100','0',''), ('103627','49804','1','12','$.space.total_reduction','0',''), ('103628','49805','1','12','$.monitor.usec_per_read_op','0',''), ('103629','49806','1','12','$.monitor.usec_per_write_op','0',''), ('103630','49807','1','12','$.space.total','0',''), ('103631','49808','1','12','$.monitor.writes_per_sec','0',''), ('103632','49809','1','12','$.monitor.input_per_sec','0',''), ('103633','49810','1','12','$.common_name','0',''), ('103634','49810','2','20','1d','0',''), ('103635','49810','3','15','^null$','1',''), ('103636','49811','1','12','$.issued_by','0',''), ('103637','49811','2','20','1d','0',''), ('103638','49811','3','15','^$','1',''), ('103639','49812','1','12','$.issued_to','0',''), ('103640','49812','2','20','1d','0',''), ('103641','49812','3','15','^$','1',''), ('103642','49813','1','12','$.valid_from','0',''), ('103643','49813','2','1','0.001','0',''), ('103644','49814','1','12','$.valid_to','0',''), ('103645','49814','2','1','0.001','0',''), ('103646','49815','1','12','$.model','1',''), ('103647','49815','2','20','1d','0',''), ('103648','49816','1','12','$.mode','1',''), ('103649','49816','2','21','const idx = [ ''not present'', ''offline'', ''primary'', ''secondary'', ].indexOf(value); return idx !== -1 ? idx : 4;','0',''), ('103650','49817','1','12','$.hardware.serial','1',''), ('103651','49817','2','20','1d','0',''), ('103652','49818','1','12','$.status','1',''), ('103653','49818','2','21','const idx = [ ''not ready'', ''ready'', ''updating'', ].indexOf(value); return idx !== -1 ? idx : 3;','0',''), ('103654','49819','1','12','$.version','1',''), ('103655','49819','2','20','1d','0',''), ('103656','49820','1','12','$.capacity','1',''), ('103657','49821','1','12','$.hardware.serial','1',''), ('103658','49821','2','20','1d','0',''), ('103659','49821','3','15','^null$','1',''), ('103660','49822','1','12','$.status','1',''), ('103661','49822','2','21','const idx = [ ''healthy'', ''empty'', ''updating'', ''unused'', ''evacuating'', ''identifying'', ''unhealthy'', ''recovering'', ''unrecognized'', ''failed'' ].indexOf(value); return idx !== -1 ? idx : 10;','0',''), ('103662','49823','1','12','$.status','1',''), ('103663','49823','2','21','const idx = [ ''ok'', ''critical'', ''degraded'', ''device_off'', ''identifying'', ''not_installed'', ].indexOf(value); return idx !== -1 ? idx : 6;','0',''), ('103664','49824','1','12','$.space.data_reduction','0',''), ('103665','49825','1','12','$.performance.read_bytes_per_sec','0',''), ('103666','49826','1','12','$.performance.reads_per_sec','0',''), ('103667','49827','1','12','$.space.total_provisioned','1',''), ('103668','49828','1','12','$.space.snapshots','0',''), ('103669','49829','1','12','$.space.thin_provisioning','0',''), ('103670','49829','2','1','100','0',''), ('103671','49830','1','12','$.space.total_reduction','0',''), ('103672','49831','1','12','$.performance.usec_per_read_op','0',''), ('103673','49832','1','12','$.performance.usec_per_write_op','0',''), ('103674','49833','1','12','$.space.used_provisioned','1',''), ('103675','49834','1','12','$.space.total_used','1',''), ('103676','49835','1','12','$.performance.writes_per_sec','0',''), ('103677','49836','1','12','$.performance.write_bytes_per_sec','0',''), ('103678','49837','1','12','$.eth.gateway','0',''), ('103679','49837','2','20','1d','0',''), ('103680','49837','3','15','^null$','1',''), ('103681','49838','1','12','$.eth.address','0',''), ('103682','49838','2','20','1d','0',''), ('103683','49838','3','15','^null$','1',''), ('103684','49839','1','12','$.eth.mac_address','0',''), ('103685','49839','2','20','1d','0',''), ('103686','49839','3','15','^null$','1',''), ('103687','49840','1','12','$.speed','0',''), ('103688','49841','1','12','$.array_count','2','0'), ('103689','49842','1','12','$.quota_limit','1',''), ('103690','49843','1','12','$.promotion_status','1',''), ('103691','49843','2','21','const idx = [ ''demoted'', ''promoted'' ].indexOf(value); return idx !== -1 ? idx : 2;','0',''), ('103692','49844','1','12','$.model','1',''), ('103693','49844','2','20','1d','0',''), ('103694','49845','1','12','$.serial','1',''), ('103695','49845','2','20','1d','0',''), ('103696','49846','1','12','$.status','1',''), ('103697','49846','2','21','const idx = [ ''ok'', ''critical'', ''degraded'', ''device_off'', ''identifying'', ''not_installed'', ].indexOf(value); return idx !== -1 ? idx : 6;','0',''), ('103698','49847','1','12','$.voltage','2','0'), ('103699','49848','1','12','$.status','1',''), ('103700','49848','2','21','const idx = [ ''ok'', ''critical'', ''degraded'', ''device_off'', ''identifying'', ''not_installed'', ].indexOf(value); return idx !== -1 ? idx : 6;','0',''), ('103701','49849','1','12','$.temperature','2','0'), ('103702','49850','1','12','$.space.data_reduction','0',''), ('103703','49851','1','12','$.space.total_provisioned','0',''), ('103704','49852','1','12','$.performance.read_bytes_per_sec','0',''), ('103705','49853','1','12','$.performance.reads_per_sec','0',''), ('103706','49854','1','12','$.space.shared','0',''), ('103707','49854','2','15','^null$','2','0'), ('103708','49855','1','12','$.provisioned','1',''), ('103709','49856','1','12','$.space.snapshots','0',''), ('103710','49857','1','12','$.space.thin_provisioning','0',''), ('103711','49857','2','1','100','0',''), ('103712','49858','1','12','$.space.total_reduction','0',''), ('103713','49859','1','12','$.performance.usec_per_read_op','0',''), ('103714','49860','1','12','$.performance.usec_per_write_op','0',''), ('103715','49861','1','12','$.space.used_provisioned','1',''), ('103716','49862','1','12','$.space.total_used','1',''), ('103717','49863','1','12','$.performance.writes_per_sec','0',''), ('103718','49864','1','12','$.performance.write_bytes_per_sec','0',''), ('103719','49866','1','12','$.health.summary','1',''), ('103720','49866','2','20','1h','0',''), ('103721','49867','1','12','$.health.availabilityState','2','3'), ('103722','49867','2','25','Available 0','0',''), ('103723','49867','3','25','Degraded 1','0',''), ('103724','49867','4','25','Unavailable 2','0',''), ('103725','49867','5','25','Unknown 3','0',''), ('103726','49867','6','13','0 3','2','3'), ('103727','49867','7','20','1h','0',''), ('103728','49868','1','12','$.error','2',''), ('103729','49868','2','20','1h','0',''), ('103730','49869','1','12','$.jobs[?(@.properties.operation == "Backup")].length()','0',''), ('103731','49870','1','12','$.jobs[?(@.properties.operation == "ConfigureBackup")].length()','0',''), ('103732','49871','1','12','$.jobs[?(@.properties.operation == "DeleteBackupData")].length()','0',''), ('103733','49872','1','12','$.jobs[?(@.properties.status == "Cancelled")].length()','0',''), ('103734','49873','1','12','$.jobs[?(@.properties.status == "Completed")].length()','0',''), ('103735','49874','1','12','$.jobs[?(@.properties.status == "Failed")].length()','0',''), ('103736','49875','1','12','$.jobs[?(@.properties.status == "InProgress")].length()','0',''), ('103737','49876','1','12','$.jobs[?(@.properties.operation == "Restore")].length()','0',''), ('103738','49877','1','12','$.jobs.length()','0',''), ('103739','49878','1','12','$.jobs[?(@.properties.status == "CompletedWithWarnings")].length()','0',''), ('103740','49879','1','21','const job_list = JSON.parse(value); const result = job_list.jobs.map(function (job) { return { ''name'': job.name, ''entity_friendly_name'': job.properties.entityFriendlyName, ''status'': job.properties.status, ''operation'': job.properties.operation }; }); return JSON.stringify(result);','0',''), ('103741','49879','2','20','1h','0',''), ('103742','49880','1','12','$.resources.value','0',''), ('103743','49880','2','20','6h','0',''), ('103744','49881','1','12','$.jobs[?(@.name == ''{#JOB.NAME}'')].properties.status.first()','0',''), ('103745','49881','2','21','const idx = { ''InProgress'': 1, ''Queued'': 2, ''Completed'': 3, ''CompletedWithWarnings'': 4, ''Failed'': 5, ''Cancelled'': 6, ''Expired'': 7 }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('103746','49881','3','20','1h','0',''), ('103747','49882','1','20','1d','0',''), ('103748','49883','1','21','var version_num = parseInt(value, 10), result = [{ ''{#BELOW_V17}'': ''false'', ''{#SINGLETON}'': '''' }]; if (version_num < 170000) { result[0][''{#BELOW_V17}''] = ''true''; } return JSON.stringify(result);','0',''), ('103749','49888','1','12','$.buffers_alloc','0',''), ('103750','49888','2','10','','0',''), ('103751','49889','1','12','$.buffers_checkpoint','0',''), ('103752','49889','2','10','','0',''), ('103753','49890','1','12','$.buffers_clean','0',''), ('103754','49890','2','10','','0',''), ('103755','49891','1','12','$.checkpoints_req','0',''), ('103756','49891','2','10','','0',''), ('103757','49892','1','12','$.checkpoints_timed','0',''), ('103758','49892','2','10','','0',''), ('103759','49893','1','12','$.checkpoint_sync_time','0',''), ('103760','49893','2','1','0.001','0',''), ('103761','49893','3','10','','0',''), ('103762','49894','1','12','$.checkpoint_write_time','0',''), ('103763','49894','2','1','0.001','0',''), ('103764','49894','3','10','','0',''), ('103765','49895','1','12','$.maxwritten_clean','0',''), ('103766','49895','2','10','','0',''), ('103767','49896','1','12','$.buffers_alloc','0',''), ('103768','49896','2','10','','0',''), ('103769','49897','1','12','$.buffers_backend','0',''), ('103770','49897','2','10','','0',''), ('103771','49898','1','12','$.buffers_backend_fsync','0',''), ('103772','49898','2','10','','0',''), ('103773','49899','1','12','$.buffers_checkpoint','0',''), ('103774','49899','2','10','','0',''), ('103775','49900','1','12','$.buffers_clean','0',''), ('103776','49900','2','10','','0',''), ('103777','49901','1','12','$.checkpoints_req','0',''), ('103778','49901','2','10','','0',''), ('103779','49902','1','12','$.checkpoints_timed','0',''), ('103780','49902','2','10','','0',''), ('103781','49903','1','12','$.checkpoint_sync_time','0',''), ('103782','49903','2','1','0.001','0',''), ('103783','49903','3','10','','0',''), ('103784','49904','1','12','$.checkpoint_write_time','0',''), ('103785','49904','2','1','0.001','0',''), ('103786','49904','3','10','','0',''), ('103787','49905','1','12','$.maxwritten_clean','0',''), ('103788','49905','2','10','','0',''), ('103789','28248','1','12','$.data.queue','0',''), ('103790','28249','1','12','$.data.queue','0',''), ('103791','49908','1','12','$.data.preprocessing.queued.size','1',''), ('103792','49908','2','10','','0',''), ('103793','49909','1','12','$.data.queued.size','0',''), ('103794','49909','2','10','','0',''), ('103795','49910','1','12','$.data.preprocessing.queued.size','1',''), ('103796','49910','2','10','','0',''), ('103797','49911','1','12','$.data.preprocessing.queued.size','1',''), ('103798','49911','2','10','','0',''), ('103799','49912','1','12','$.data.queued.size','0',''), ('103800','49912','2','10','','0',''), ('103801','49913','1','29','pfInterfacesIfDescr 1.3.6.1.4.1.12325.1.200.1.8.2.1.2 0 pfInterfacesIfRefsRule 1.3.6.1.4.1.12325.1.200.1.8.2.1.6 0 pfInterfacesIf4BytesInPass 1.3.6.1.4.1.12325.1.200.1.8.2.1.7 0 pfInterfacesIf4BytesInBlock 1.3.6.1.4.1.12325.1.200.1.8.2.1.8 0 pfInterfacesIf4BytesOutPass 1.3.6.1.4.1.12325.1.200.1.8.2.1.9 0 pfInterfacesIf4BytesOutBlock 1.3.6.1.4.1.12325.1.200.1.8.2.1.10 0 pfInterfacesIf4PktsInPass 1.3.6.1.4.1.12325.1.200.1.8.2.1.11 0 pfInterfacesIf4PktsInBlock 1.3.6.1.4.1.12325.1.200.1.8.2.1.12 0 pfInterfacesIf4PktsOutPass 1.3.6.1.4.1.12325.1.200.1.8.2.1.13 0 pfInterfacesIf4PktsOutBlock 1.3.6.1.4.1.12325.1.200.1.8.2.1.14 0 pfInterfacesIf6BytesInPass 1.3.6.1.4.1.12325.1.200.1.8.2.1.15 0 pfInterfacesIf6BytesInBlock 1.3.6.1.4.1.12325.1.200.1.8.2.1.16 0 pfInterfacesIf6BytesOutPass 1.3.6.1.4.1.12325.1.200.1.8.2.1.17 0 pfInterfacesIf6BytesOutBlock 1.3.6.1.4.1.12325.1.200.1.8.2.1.18 0 pfInterfacesIf6PktsInPass 1.3.6.1.4.1.12325.1.200.1.8.2.1.19 0 pfInterfacesIf6PktsInBlock 1.3.6.1.4.1.12325.1.200.1.8.2.1.20 0 pfInterfacesIf6PktsOutPass 1.3.6.1.4.1.12325.1.200.1.8.2.1.21 0 pfInterfacesIf6PktsOutBlock 1.3.6.1.4.1.12325.1.200.1.8.2.1.22 0','0',''), ('103802','49916','1','29','hrSWRunName 1.3.6.1.2.1.25.4.2.1.2 0 hrSWRunStatus 1.3.6.1.2.1.25.4.2.1.7 0','0',''), ('103803','43557','2','10','','0',''), ('103804','43558','2','10','','0',''), ('103805','43559','2','10','','0',''), ('103806','43560','2','10','','0',''), ('103807','43561','2','10','','0',''), ('103808','43562','2','10','','0',''), ('103809','43565','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('103810','43565','2','20','1h','0',''), ('103811','43566','3','1','8','0',''), ('103812','43567','2','10','','0',''), ('103813','43568','2','20','6h','0',''), ('103814','43569','3','20','1h','0',''), ('103815','43570','1','12','$[?(@.pfInterfacesIfDescr == ''{#IFDESCR}'')].pfInterfacesIfRefsRule.first()','0',''), ('103816','43571','3','1','8','0',''), ('103817','43572','2','10','','0',''), ('103818','43573','3','1','8','0',''), ('103819','43574','2','10','','0',''), ('103820','43575','3','1','8','0',''), ('103821','43576','2','10','','0',''), ('103822','43577','2','10','','0',''), ('103823','43578','3','1','8','0',''), ('103824','43579','2','10','','0',''), ('103825','43580','2','10','','0',''), ('103826','43581','3','1','8','0',''), ('103827','43582','3','1','8','0',''), ('103828','43583','2','10','','0',''), ('103829','43584','3','1','8','0',''), ('103830','43585','2','10','','0',''), ('103831','43586','3','1','8','0',''), ('103832','43587','2','10','','0',''), ('103833','43588','2','10','','0',''), ('103834','43589','2','10','','0',''), ('103835','43590','3','1','8','0',''), ('103836','43591','2','20','6h','0',''), ('103837','49917','1','29','pfInterfacesIfDescr 1.3.6.1.4.1.12325.1.200.1.8.2.1.2 0 pfInterfacesIfRefsRule 1.3.6.1.4.1.12325.1.200.1.8.2.1.6 0 pfInterfacesIf4BytesInPass 1.3.6.1.4.1.12325.1.200.1.8.2.1.7 0 pfInterfacesIf4BytesInBlock 1.3.6.1.4.1.12325.1.200.1.8.2.1.8 0 pfInterfacesIf4BytesOutPass 1.3.6.1.4.1.12325.1.200.1.8.2.1.9 0 pfInterfacesIf4BytesOutBlock 1.3.6.1.4.1.12325.1.200.1.8.2.1.10 0 pfInterfacesIf4PktsInPass 1.3.6.1.4.1.12325.1.200.1.8.2.1.11 0 pfInterfacesIf4PktsInBlock 1.3.6.1.4.1.12325.1.200.1.8.2.1.12 0 pfInterfacesIf4PktsOutPass 1.3.6.1.4.1.12325.1.200.1.8.2.1.13 0 pfInterfacesIf4PktsOutBlock 1.3.6.1.4.1.12325.1.200.1.8.2.1.14 0 pfInterfacesIf6BytesInPass 1.3.6.1.4.1.12325.1.200.1.8.2.1.15 0 pfInterfacesIf6BytesInBlock 1.3.6.1.4.1.12325.1.200.1.8.2.1.16 0 pfInterfacesIf6BytesOutPass 1.3.6.1.4.1.12325.1.200.1.8.2.1.17 0 pfInterfacesIf6BytesOutBlock 1.3.6.1.4.1.12325.1.200.1.8.2.1.18 0 pfInterfacesIf6PktsInPass 1.3.6.1.4.1.12325.1.200.1.8.2.1.19 0 pfInterfacesIf6PktsInBlock 1.3.6.1.4.1.12325.1.200.1.8.2.1.20 0 pfInterfacesIf6PktsOutPass 1.3.6.1.4.1.12325.1.200.1.8.2.1.21 0 pfInterfacesIf6PktsOutBlock 1.3.6.1.4.1.12325.1.200.1.8.2.1.22 0','0',''), ('103838','49920','1','29','hrSWRunName 1.3.6.1.2.1.25.4.2.1.2 0 hrSWRunStatus 1.3.6.1.2.1.25.4.2.1.7 0','0',''), ('103839','40117','2','10','','0',''), ('103840','40122','2','10','','0',''), ('103841','40123','2','10','','0',''), ('103842','40124','2','10','','0',''), ('103843','40125','2','10','','0',''), ('103844','40126','2','10','','0',''), ('103845','40138','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('103846','40138','2','20','1h','0',''), ('103847','40147','3','1','8','0',''), ('103848','40148','2','10','','0',''), ('103849','40149','2','20','6h','0',''), ('103850','40150','3','20','1h','0',''), ('103851','40151','1','12','$[?(@.pfInterfacesIfDescr == ''{#IFDESCR}'')].pfInterfacesIfRefsRule.first()','0',''), ('103852','40152','3','1','8','0',''), ('103853','40153','2','10','','0',''), ('103854','40154','3','1','8','0',''), ('103855','40155','2','10','','0',''), ('103856','40156','3','1','8','0',''), ('103857','40157','2','10','','0',''), ('103858','40158','2','10','','0',''), ('103859','40159','3','1','8','0',''), ('103860','40160','2','10','','0',''), ('103861','40161','2','10','','0',''), ('103862','40162','3','1','8','0',''), ('103863','40163','3','1','8','0',''), ('103864','40164','2','10','','0',''), ('103865','40165','3','1','8','0',''), ('103866','40166','2','10','','0',''), ('103867','40167','3','1','8','0',''), ('103868','40168','2','10','','0',''), ('103869','40169','2','10','','0',''), ('103870','40170','2','10','','0',''), ('103871','40171','3','1','8','0',''), ('103872','40172','2','20','6h','0',''), ('103873','49922','1','20','12h','0',''), ('103874','49923','1','29','laName 1.3.6.1.4.1.2021.10.1.2 0 laLoad 1.3.6.1.4.1.2021.10.1.3 0','0',''), ('103875','49925','1','20','12h','0',''), ('103876','49926','1','26','-1','2','0'), ('103877','49926','2','1','0.01','0',''), ('103878','49927','1','20','12h','0',''), ('103879','49928','1','1','0.01','0',''), ('103880','49929','1','20','12h','0',''), ('103881','42793','2','10','','0',''), ('103882','42794','2','10','','0',''), ('103883','42795','3','20','1h','0',''), ('103884','42796','3','20','1h','0',''), ('103885','42797','2','10','','0',''), ('103886','42798','2','10','','0',''), ('103887','42799','2','10','','0',''), ('103888','42800','3','20','1h','0',''), ('103889','42801','1','28','1.3.6.1.4.1.50536.1.6.1.0 0','0',''), ('103890','42802','2','1','1024','0',''), ('103891','42803','1','28','1.3.6.1.4.1.50536.1.6.2.0 0','0',''), ('103892','42804','1','28','1.3.6.1.4.1.50536.1.6.3.0 0','0',''), ('103893','42811','1','28','1.3.6.1.4.1.50536.1.4.10.0 0','0',''), ('103894','42812','2','10','','0',''), ('103895','42818','1','12','$[?(@.laName == ''Load-1'')].laLoad.first()','0',''), ('103896','42819','1','12','$[?(@.laName == ''Load-5'')].laLoad.first()','0',''), ('103897','42820','1','12','$[?(@.laName == ''Load-15'')].laLoad.first()','0',''), ('103898','42821','2','21','return JSON.parse(value).length;','0',''), ('103899','42824','1','28','1.3.6.1.4.1.50536.1.4.9.0 0','0',''), ('103900','42831','3','20','1h','0',''), ('103901','42832','2','1','1024','0',''), ('103902','42835','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('103903','42835','2','20','1h','0',''), ('103904','42836','2','20','6h','0',''), ('103905','42837','2','20','6h','0',''), ('103906','42838','2','20','6h','0',''), ('103907','42839','2','20','6h','0',''), ('103908','42840','1','29','{#DEVNAME} 1.3.6.1.4.1.2021.13.15.1.1.2 0','0',''), ('103909','42840','2','20','1h','0',''), ('103910','42841','1','28','1.3.6.1.4.1.2021.11.11.0 0','0',''), ('103911','42842','3','21','return value/{#CPU.COUNT}','0',''), ('103912','42843','3','21','return value/{#CPU.COUNT}','0',''), ('103913','42844','3','21','return value/{#CPU.COUNT}','0',''), ('103914','42845','3','21','return value/{#CPU.COUNT}','0',''), ('103915','42846','3','21','return value/{#CPU.COUNT}','0',''), ('103916','42856','3','20','1h','0',''), ('103917','42857','2','1','{#DATASET_ALLOC_UNITS}','0',''), ('103918','42859','3','20','1h','0',''), ('103919','42860','2','1','{#DATASET_ALLOC_UNITS}','0',''), ('103920','42861','2','1','{#POOL_ALLOC_UNITS}','0',''), ('103921','42862','2','20','1h','0',''), ('103922','42864','3','10','','0',''), ('103923','42865','2','10','','0',''), ('103924','42866','3','20','1h','0',''), ('103925','42867','2','1','{#POOL_ALLOC_UNITS}','0',''), ('103926','42868','3','10','','0',''), ('103927','42869','2','10','','0',''), ('103928','42870','2','1','{#ZVOL_ALLOC_UNITS}','0',''), ('103929','42871','3','20','1h','0',''), ('103930','42872','2','1','{#ZVOL_ALLOC_UNITS}','0',''), ('103931','42873','2','10','','0',''), ('103932','42874','1','28','1.3.6.1.4.1.2021.13.15.1.1.9.{#SNMPINDEX} 0','0',''), ('103933','42875','2','10','','0',''), ('103934','49937','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('103935','49937','2','10','','0',''), ('103936','49937','3','20','3m','0',''), ('103937','49938','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('103938','49938','2','10','','0',''), ('103939','49938','3','20','3m','0',''), ('103940','49939','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('103941','49939','2','10','','0',''), ('103942','49939','3','1','8','0',''), ('103943','49940','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('103944','49940','2','10','','0',''), ('103945','49940','3','20','3m','0',''), ('103946','49941','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('103947','49941','2','10','','0',''), ('103948','49941','3','20','3m','0',''), ('103949','49942','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('103950','49942','2','10','','0',''), ('103951','49942','3','1','8','0',''), ('103952','49943','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('103953','49943','2','1','1000000','0',''), ('103954','49943','3','20','1h','0',''), ('103955','49944','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('103956','49945','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('103957','49945','2','20','1d','0',''), ('103958','33641','1','26','0 Performance counter data is not available.','1',''), ('103959','49946','1','21','return Math.floor(Date.parse(value)/1000);','0',''), ('103960','49946','2','20','1h','0',''), ('103961','49947','1','29','laName 1.3.6.1.4.1.2021.10.1.2 0 laLoad 1.3.6.1.4.1.2021.10.1.3 0','0',''), ('103962','46760','1','12','$[?(@.laName == ''Load-1'')].laLoad.first()','0',''), ('103963','46761','1','12','$[?(@.laName == ''Load-5'')].laLoad.first()','0',''), ('103964','46762','1','12','$[?(@.laName == ''Load-15'')].laLoad.first()','0',''), ('103965','49949','1','21','var Cisco = { api_url: ''{$CISCO.FTD.API.URL}'', http_proxy: ''{$CISCO.FTD.HTTP_PROXY}'', getToken: function (params) { [''access_token''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Unexpected session token value has been received: '' + field + ''.''; } }); Cisco.params = params; }, request: function (url) { var response, request = new HttpRequest(); if (typeof Cisco.http_proxy !== ''undefined'' && Cisco.http_proxy !== '''') { request.setProxy(Cisco.http_proxy); } if (!Cisco.params.access_token) { throw ''Request does not contain access token.''; } request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Authorization: Bearer '' + Cisco.params.access_token); Zabbix.log(4, ''[ Cisco ] request url: '' + url); response = request.get(url); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { return JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API.''; } }, getMetricsData: function () { var data = {}; endpoints = { ''cpu'': ''monitor/trendingreports/cpu?time_duration=60'', ''memory'': ''monitor/trendingreports/memory?time_duration=60'', ''eps'': ''monitor/trendingreports/eps?time_duration=60'', ''throughput'': ''monitor/trendingreports/throughput?time_duration=60'', ''disk'': ''operational/diskusage/default'', ''systeminfo'': ''operational/systeminfo/default'' }; if (typeof Cisco.api_url === ''string'' && !Cisco.api_url.endsWith(''/'')) { Cisco.api_url += ''/''; } Object.keys(endpoints).forEach(function (key) { data[key] = Cisco.request(Cisco.api_url + endpoints[key]); }); return data; } }; try { Cisco.getToken(JSON.parse(value)); return JSON.stringify(Cisco.getMetricsData()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ Cisco ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','0',''), ('103966','49950','1','21','var Cisco = { api_url: ''{$CISCO.FTD.API.URL}'', http_proxy: ''{$CISCO.FTD.HTTP_PROXY}'', getToken: function (params) { [''access_token''].forEach(function (field) { if (typeof params !== ''object'' || typeof params[field] === ''undefined'' || params[field] === '''') { throw ''Unexpected session token value has been received: '' + field + ''.''; } }); Cisco.params = params; }, getField: function (data, path, default_value) { var steps = path.split(''.''); var step = steps.shift(); while (typeof step !== ''undefined'') { if (typeof data === undefined || typeof data[step] === ''undefined'') { return default_value; } data = data[step]; step = steps.shift(); } return data; }, request: function (url) { var response, request = new HttpRequest(); if (typeof Cisco.http_proxy !== ''undefined'' && Cisco.http_proxy !== '''') { request.setProxy(Cisco.http_proxy); } if (!Cisco.params.access_token) { throw ''Request does not contain access token.''; } request.addHeader(''Accept: application/json''); request.addHeader(''Content-Type: application/json''); request.addHeader(''Authorization: Bearer '' + Cisco.params.access_token); Zabbix.log(4, ''[ Cisco ] request url: '' + url); response = request.get(url); if (request.getStatus() !== 200) { throw ''Request failed with status code '' + request.getStatus() + '': '' + response; } try { return JSON.parse(response); } catch (error) { throw ''Failed to parse response received from API.''; } }, getMetricsData: function () { if (typeof Cisco.api_url === ''string'' && !Cisco.api_url.endsWith(''/'')) { Cisco.api_url += ''/''; } metrics = Cisco.getField(Cisco.request(Cisco.api_url + ''devices/default/operational/metrics''), ''items''); return metrics.map(function (data) { const idField = Cisco.getField(data, ''id'', ''''); const parts = idField.split(''.''); const type = parts[0]; const id = parts[1] || type; const metric = parts.length >= 3 ? parts.slice(2).join(''.'') : parts.slice(1).join(''.''); return { type, id, metric, name: Cisco.getField(data, ''name'', ''''), value: Cisco.getField(data, ''metric.value'', null), status: Cisco.getField(data, ''metric.status''), mounted_on: Cisco.getField(data, ''mountedOn''), unit: Cisco.getField(data, ''metric.unit'', '''') }; }); } }; try { Cisco.getToken(JSON.parse(value)); return JSON.stringify(Cisco.getMetricsData()); } catch (error) { error += (String(error).endsWith(''.'')) ? '''' : ''.''; Zabbix.log(3, ''[ Cisco ] ERROR: '' + error); return JSON.stringify({ ''error'': error }); }','0',''), ('103967','49951','1','12','$.cpu.items..avgUsage.first()','0',''), ('103968','49952','1','12','$.error','2',''), ('103969','49952','2','20','1h','0',''), ('103970','49953','1','12','$[?(@.name == "disk_stats.total.size")].value.first()','1',''), ('103971','49953','2','20','1h','0',''), ('103972','49954','1','12','$[?(@.name == "disk_stats.total.used")].value.first()','1',''), ('103973','49954','2','20','1h','0',''), ('103974','49955','1','12','$[?(@.name == "disk_stats.total.used_percentage")].value.first()','1',''), ('103975','49955','2','20','1h','0',''), ('103976','49956','1','12','$.eps.items..avgEps.first()','0',''), ('103977','49956','2','10','','0',''), ('103978','49957','1','12','$.memory.items..avgUsage.first()','1',''), ('103979','49958','1','12','$.systeminfo.platformModel','0',''), ('103980','49958','2','20','12h','0',''), ('103981','49959','1','12','$.error','2',''), ('103982','49959','2','20','1h','0',''), ('103983','49960','1','12','$.systeminfo.serialNumber','0',''), ('103984','49960','2','20','24h','0',''), ('103985','49961','1','12','$.systeminfo.softwareVersion','0',''), ('103986','49961','2','20','12h','0',''), ('103987','49962','1','12','$.disk.free','1',''), ('103988','49962','2','1','1073741824','0',''), ('103989','49962','3','20','1h','0',''), ('103990','49963','1','12','$.disk.total','1',''), ('103991','49963','2','1','1073741824','0',''), ('103992','49963','3','20','1h','0',''), ('103993','49964','1','12','$.disk.used','1',''), ('103994','49964','2','1','1073741824','0',''), ('103995','49964','3','20','1h','0',''), ('103996','49965','1','12','$.systeminfo.systemUptime','0',''), ('103997','49965','2','21','return (Math.floor(Date.now()/1000)-Math.floor(Number(value)/1000));','0',''), ('103998','49966','1','21','var data = JSON.parse(value), asp_drops = []; data.forEach(function (item) { if (item.type === ''asp_drops'') { asp_drops.push({ ''{#ID}'': item.metric.split('' '').join(''_''), ''{#NAME}'': item.id, ''{#METRIC}'': item.metric }); } }); return JSON.stringify(asp_drops);','0',''), ('103999','49966','2','20','3h','0',''), ('104000','49967','1','21','var data = JSON.parse(value), connections = []; data.forEach(function (connection) { if (connection.type === ''conn_stats'') { connections.push({ ''{#NAME}'': connection.id, ''{#METRIC}'': connection.metric }); } }); return JSON.stringify(connections);','0',''), ('104001','49967','2','20','3h','0',''), ('104002','49968','1','21','var data = JSON.parse(value), cpu = []; data.forEach(function (item) { if (item.type === ''cpu'') { cpu.push({ ''{#NAME}'': item.name, ''{#METRIC}'': item.metric }); } }); return JSON.stringify(cpu);','0',''), ('104003','49968','2','20','3h','0',''), ('104004','49969','1','21','var data = JSON.parse(value), critical_process = [], unique = {}; data.forEach(function (process) { var key = process.id; if (!unique[key] && process.type == ''critical_process'') { unique[key] = true; critical_process.push({ ''{#ID}'': process.id }); } }); return JSON.stringify(critical_process);','0',''), ('104005','49969','2','20','3h','0',''), ('104006','49970','1','21','var data = JSON.parse(value), fan = []; data.forEach(function (item) { if (item.type === ''chassis_stats'' && item.metric.match(/_fan/)) { fan.push({ ''{#SENSOR}'': item.metric, ''{#NAME}'': item.metric.replace(/_rpm|_spd/g, '''') }); } }); return JSON.stringify(fan);','0',''), ('104007','49970','2','20','3h','0',''), ('104008','49971','1','21','var data = JSON.parse(value), interfaces = [], unique = {}; data.forEach(function (interface) { var key = interface.id; if (!unique[key] && interface.type == ''interface'' ) { unique[key] = true; interfaces.push({ ''{#DESCR}'': interface.name, ''{#NAME}'': interface.id }); } }); return JSON.stringify(interfaces);','0',''), ('104009','49971','2','20','3h','0',''), ('104010','49972','1','21','var data = JSON.parse(value), mem_bytes = [], mem_percentage = []; data.forEach(function (item) { if (item.type === ''mem'' && item.metric.match(/used_percentage/)) { mem_percentage.push({ ''{#NAME}'': item.name, ''{#METRIC}'': item.metric.replace(''used_percentage_'', '''') }); } else if (item.type === ''mem'' && !item.metric.match(/remaining_blocks/)) { mem_bytes.push({ ''{#NAME}'': item.name, ''{#METRIC}'': item.metric }); } }); return JSON.stringify({ mem_percentage, mem_bytes });','0',''), ('104011','49972','2','12','$.mem_bytes','0',''), ('104012','49972','3','20','3h','0',''), ('104013','49973','1','21','var data = JSON.parse(value), mem_bytes = [], mem_percentage = []; data.forEach(function (item) { if (item.type === ''mem'' && item.metric.match(/used_percentage/)) { mem_percentage.push({ ''{#NAME}'': item.name, ''{#METRIC}'': item.metric.replace(''used_percentage_'', '''') }); } else if (item.type === ''mem'' && !item.metric.match(/remaining_blocks/)) { mem_bytes.push({ ''{#NAME}'': item.name, ''{#METRIC}'': item.metric }); } }); return JSON.stringify({ mem_percentage, mem_bytes });','0',''), ('104014','49973','2','12','$.mem_percentage','0',''), ('104015','49973','3','20','3h','0',''), ('104016','49974','1','21','var data = JSON.parse(value), pwr = []; data.forEach(function (item) { if (item.type === ''chassis_stats'' && item.metric.match(/_pwr/)) { pwr.push({ ''{#SENSOR}'': item.metric }); } }); return JSON.stringify(pwr);','0',''), ('104017','49974','2','20','3h','0',''), ('104018','49975','1','21','var data = JSON.parse(value), snort = [], unique = {}; data.forEach(function (item) { var key = item.name; if (!unique[key] && item.type == ''snort'') { unique[key] = true; snort.push({ ''{#METRIC}'': item.metric, ''{#NAME}'': item.id, ''{#ID}'': item.name }); } }); return JSON.stringify(snort);','0',''), ('104019','49975','2','20','3h','0',''), ('104020','49976','1','21','var data = JSON.parse(value), temp = []; data.forEach(function (item) { if (item.type === ''chassis_stats'' && item.metric.match(/_temp/)) { temp.push({ ''{#SENSOR}'': item.metric }); } }); return JSON.stringify(temp);','0',''), ('104021','49976','2','20','3h','0',''), ('104022','49977','1','12','$.throughput.items','0',''), ('104023','49977','2','21','var data = JSON.parse(value), throughput = [], unique = {}; data.forEach(function (item) { var key = item.interfaceName; if (!unique[key]) { unique[key] = true; throughput.push({ ''{#NAME}'': item.interfaceName, }); } }); return JSON.stringify(throughput);','0',''), ('104024','49977','3','20','3h','0',''), ('104025','49978','1','21','var data = JSON.parse(value), disk_percentage = []; data.forEach(function (item) { if (item.type === ''disk_stats'' && item.metric.match(/used_percentage/) && item.mounted_on !== undefined) { disk_percentage.push({ ''{#NAME}'': item.name, ''{#FSNAME}'': item.id.replace(''_'', ''''), ''{#FSMOUNT}'': item.mounted_on, }); } }); return JSON.stringify(disk_percentage);','0',''), ('104026','49978','2','20','3h','0',''), ('104027','49979','1','12','$[?(@.id == "{#NAME}" && @.metric == "{#METRIC}")].value.first()','0',''), ('104028','49979','2','10','','0',''), ('104029','49980','1','12','$[?(@.id == "{#NAME}" && @.metric == "{#METRIC}")].value.first()','1',''), ('104030','49981','1','12','$[?(@.name == "{#NAME}")].value.first()','0',''), ('104031','49982','1','12','$[?(@.id == "{#ID}" && @.metric == "restart_count")].value.first()','1',''), ('104032','49983','1','12','$[?(@.id == "{#ID}" && @.metric == "status")].status.first()','1',''), ('104033','49983','2','21','const idx = { ''STOPPED'': 1, ''RUNNING'': 2, ''FAILED'': 3, ''UNKNOWN'': 4, ''RESTARTING'': 5 }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('104034','49984','1','12','$[?(@.id == "{#ID}" && @.metric == "uptime")].value.first()','1',''), ('104035','49985','1','12','$[?(@.metric == ''{#SENSOR}'')].value.first()','0',''), ('104036','49986','1','12','$[?(@.id == "{#NAME}")]','0',''), ('104037','49987','1','12','$[?(@.name == "{#NAME}")].value.first()','0',''), ('104038','49988','1','12','$[?(@.name == "{#NAME}")].value.first()','0',''), ('104039','49989','1','12','$[?(@.metric == ''{#SENSOR}'')].value.first()','0',''), ('104040','49990','1','12','$[?(@.name == "{#ID}")].value.first()','0',''), ('104041','49991','1','12','$[?(@.metric == "{#SENSOR}")].value.first()','0',''), ('104042','49992','1','12','$.throughput.items[?(@.interfaceName == "{#NAME}")].interfaceThroughput.first()','1',''), ('104043','49992','2','1','8','0',''), ('104044','49993','1','12','$[?(@.name == "{#NAME}" && @.mounted_on == "{#FSMOUNT}")].value.first()','0',''), ('104045','49994','1','12','$[?(@.metric == "drop_packets")].value.first()','1',''), ('104046','49994','2','10','','0',''), ('104047','49995','1','12','$[?(@.metric == "input_errors")].value.first()','1',''), ('104048','49995','2','10','','0',''), ('104049','49996','1','12','$[?(@.metric == "input_packets")].value.first()','1',''), ('104050','49996','2','10','','0',''), ('104051','49997','1','12','$[?(@.metric == "output_bytes")].value.first()','1',''), ('104052','49997','2','1','8','0',''), ('104053','49997','3','10','','0',''), ('104054','49998','1','12','$[?(@.metric == "output_errors")].value.first()','1',''), ('104055','49998','2','10','','0',''), ('104056','49999','1','12','$[?(@.metric == "output_packets")].value.first()','1',''), ('104057','49999','2','10','','0',''), ('104058','50000','1','12','$[?(@.metric == "status")].value.first()','1',''), ('104059','50001','1','12','$[?(@.metric == "input_bytes")].value.first()','0',''), ('104060','50001','2','1','8','1',''), ('104061','50001','3','10','','0',''), ('104062','50003','1','12','$.deviceInfo.address','0',''), ('104063','50004','1','12','$.deviceInfo.firmware','0',''), ('104064','50005','1','12','$.deviceInfo.lat','0',''), ('104065','50006','1','12','$.deviceInfo.lng','0',''), ('104066','50007','1','12','$.deviceInfo.mac','0',''), ('104067','50008','1','12','$.deviceInfo.model','0',''), ('104068','50009','1','12','$.deviceInfo.notes','1',''), ('104069','50010','1','12','$.deviceInfo.details[0].value','1',''), ('104070','50011','1','12','$.deviceInfo.serial','0',''), ('104071','50012','1','12','$.error','0',''), ('104072','50012','2','20','1h','0',''), ('104073','50013','1','29','laName 1.3.6.1.4.1.2021.10.1.2 0 laLoad 1.3.6.1.4.1.2021.10.1.3 0','0',''), ('104074','42402','1','12','$[?(@.laName == ''Load-15'')].laLoad.first()','0',''), ('104075','42403','1','12','$[?(@.laName == ''Load-5'')].laLoad.first()','0',''), ('104076','42404','1','12','$[?(@.laName == ''Load-1'')].laLoad.first()','0',''), ('104077','44696','3','20','6h','0',''), ('104078','50014','1','12','$.self_test_in_progress','0',''), ('104079','50014','2','21','const idx = { ''true'': 1, ''false'': 2, ''null'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('104080','50014','3','20','6h','0',''), ('104081','44717','3','20','6h','0',''), ('104082','50015','1','12','$.self_test_in_progress','0',''), ('104083','50015','2','21','const idx = { ''true'': 1, ''false'': 2, ''null'': 3, }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('104084','50015','3','20','6h','0',''), ('104085','50018','1','12','$.CreationDate','0',''), ('104086','50018','2','21','return Date.now() / 1000 - value','0',''), ('104087','50019','1','12','$.[?(@.job_type == "backup-job")].length()','0',''), ('104088','50019','2','20','1h','0',''), ('104089','50020','1','12','$.[?(@.job_type == "backup-job" && @.job_state == "FAILED")].length()','0',''), ('104090','50020','2','20','1h','0',''), ('104091','50021','1','12','$.[?(@.job_type == "copy-job")].length()','0',''), ('104092','50021','2','20','1h','0',''), ('104093','50022','1','12','$.[?(@.job_type == "copy-job" && @.job_state == "FAILED")].length()','0',''), ('104094','50022','2','20','1h','0',''), ('104095','50023','1','12','$.[?(@.job_type == "restore-job")].length()','0',''), ('104096','50023','2','20','1h','0',''), ('104097','50024','1','12','$.[?(@.job_type == "restore-job" && @.job_state == "FAILED")].length()','0',''), ('104098','50024','2','20','1h','0',''), ('104099','50025','1','12','$[?(@.job_size > 0)].job_size.avg()','1',''), ('104100','50025','2','20','1h','0',''), ('104101','50026','1','12','$[?(@.job_size > 0)].job_size.max()','1',''), ('104102','50026','2','20','1h','0',''), ('104103','50027','1','12','$[?(@.job_size > 0)].job_size.min()','1',''), ('104104','50027','2','20','1h','0',''), ('104105','50028','1','12','$.length()','0',''), ('104106','50028','2','20','1h','0',''), ('104107','50029','1','12','$.LockDate','0',''), ('104108','50029','2','15','null','3','Either the vault is not locked, or the lock date is not specified.'), ('104109','50030','1','12','$.Locked','0',''), ('104110','50030','2','25','false 0','0',''), ('104111','50030','3','25','true 1','0',''), ('104112','50031','1','12','$.LockDate','0',''), ('104113','50031','2','15','null','3','Either the vault is not locked, or the lock date is not specified.'), ('104114','50031','3','21','now = Date.now() / 1000; if (value > now) { return value - now } else { return 0 }','0',''), ('104115','50032','1','12','$.NumberOfRecoveryPoints','0',''), ('104116','50032','2','15','null','1',''), ('104117','50033','1','12','$.MaxRetentionDays','0',''), ('104118','50033','2','15','null','3','The vault does not have the maximum retention period set.'), ('104119','50034','1','12','$.MinRetentionDays','0',''), ('104120','50034','2','15','null','3','The vault does not have the minimum retention period set.'), ('104121','50035','1','12','$.VaultState','0',''), ('104122','50035','2','21','const idx = { ''CREATING'': 1, ''AVAILABLE'': 2, ''FAILED'': 3 }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('104123','50036','1','20','1h','0',''), ('104124','50038','1','12','$.[?(@.job_id == "{#AWS.BACKUP_JOB.ID}")].job_state.first()','1',''), ('104125','50038','2','21','const idx = { ''CREATED'': 1, ''PENDING'': 2, ''RUNNING'': 3, ''ABORTING'': 4, ''ABORTED'': 5, ''COMPLETED'': 6, ''FAILED'': 7, ''EXPIRED '': 8, ''PARTIAL'': 9 }; return typeof idx[value] === ''undefined'' ? 0 : idx[value];','0',''), ('104126','50038','3','20','1h','0',''), ('104127','50039','1','26','0 No Such Object available on this agent at this OID','1',''), ('104128','50040','1','26','0 No Such Object available on this agent at this OID','1',''), ('104129','50041','1','26','0 No Such Object available on this agent at this OID','1',''), ('104130','50051','1','20','12h','0',''), ('104131','50052','1','20','12h','0',''), ('104132','50053','1','26','-1','2','0'), ('104133','50053','2','1','0.01','0',''), ('104134','50054','1','20','12h','0',''), ('104135','50055','1','20','12h','0',''), ('104136','50056','1','1','0.01','0',''), ('104137','50057','1','20','12h','0',''), ('104138','50059','1','29','{#SNMPVALUE} 1.3.6.1.4.1.47196.4.1.1.3.11.5.1.1.4 0','1',''), ('104139','50059','2','20','1h','0',''), ('104140','50060','1','29','{#SNMPVALUE} 1.3.6.1.2.1.14.2.1.1 0','1',''), ('104141','50060','2','20','1h','0',''), ('104142','50061','1','29','{#SNMPVALUE} 1.3.6.1.2.1.14.7.1.1 0','1',''), ('104143','50061','2','20','1h','0',''), ('104144','50062','1','29','{#SNMPVALUE} 1.3.6.1.2.1.14.10.1.1 0','1',''), ('104145','50062','2','20','1h','0',''), ('104146','50063','1','29','{#SNMPVALUE} 1.3.6.1.4.1.47196.4.1.1.3.11.2.1.1.3 0 {#ARUBA.POWER.SUPPLY.MAX.POWER} 1.3.6.1.4.1.47196.4.1.1.3.11.2.1.1.8 0','1',''), ('104147','50063','2','20','1h','0',''), ('104148','50064','1','21',E'const data = value.split("\\n"); var base_oid = ".1.3.6.1.4.1.47196.4.1.1.3.22.1.0.1.1.3", lld_json = []; for (var line in data) { var index = data[line].indexOf(base_oid); if (index !== -1) { var result = [], oid = data[line].split('' '')[0], tail = oid.substring(index + base_oid.length + 1), parts = tail.split(''.''); var i = 0; while (i < parts.length) { var len = parseInt(parts[i]); if (isNaN(len) || len < 1 || i + len >= parts.length) { i++; continue; } var isAscii = true; for (var j = 0; j < len; j++) { var val = parseInt(parts[i + 1 + j]); if (val < 32 || val > 126) { isAscii = false; break; } } if (isAscii) { var str = ''''; for (var j = 0; j < len; j++) { str += String.fromCharCode(parseInt(parts[i + 1 + j])); } result.push(str); i = i + 1 + len; } else { i++; } } lld_json.push({''{#SNMPVALUE}'': result.join(" "), ''{#SNMPINDEX}'': tail}); } } return JSON.stringify(lld_json);','0',''), ('104149','50064','2','20','1h','0',''), ('104150','50065','1','29','{#SNMPVALUE} 1.3.6.1.4.1.47196.4.1.1.3.11.3.1.1.5 0 {#ARUBA.TEMPERATURE.MAX} 1.3.6.1.4.1.47196.4.1.1.3.11.3.1.1.9 0 {#ARUBA.TEMPERATURE.MIN} 1.3.6.1.4.1.47196.4.1.1.3.11.3.1.1.8 0','1',''), ('104151','50065','2','21','const json_data = JSON.parse(value); for (var entity in json_data) { json_data[entity]["{#ARUBA.TEMPERATURE.MIN}"] = json_data[entity]["{#ARUBA.TEMPERATURE.MIN}"]/1000; json_data[entity]["{#ARUBA.TEMPERATURE.MAX}"] = json_data[entity]["{#ARUBA.TEMPERATURE.MAX}"]/1000; } return JSON.stringify(json_data);','0',''), ('104152','50065','3','20','1h','0',''), ('104153','50066','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','1',''), ('104154','50066','2','20','1h','0',''), ('104155','50067','1','28','1.3.6.1.4.1.47196.4.1.1.3.11.5.1.1.8.{#SNMPINDEX} 0','0',''), ('104156','50067','2','20','1h','0',''), ('104157','50068','1','28','1.3.6.1.4.1.47196.4.1.1.3.11.5.1.1.10.{#SNMPINDEX} 0','0',''), ('104158','50068','2','20','1h','0',''), ('104159','50069','1','28','1.3.6.1.2.1.14.2.1.8.{#SNMPINDEX} 0','0',''), ('104160','50069','2','20','12h','0',''), ('104161','50070','1','28','1.3.6.1.2.1.14.2.1.11.{#SNMPINDEX} 0','0',''), ('104162','50070','2','20','12h','0',''), ('104163','50071','1','28','1.3.6.1.2.1.14.2.1.12.{#SNMPINDEX} 0','0',''), ('104164','50071','2','20','12h','0',''), ('104165','50072','1','28','1.3.6.1.2.1.14.2.1.7.{#SNMPINDEX} 0','0',''), ('104166','50072','2','20','12h','0',''), ('104167','50073','1','28','1.3.6.1.2.1.14.2.1.4.{#SNMPINDEX} 0','0',''), ('104168','50073','2','20','12h','0',''), ('104169','50074','1','28','1.3.6.1.2.1.14.2.1.10.{#SNMPINDEX} 0','0',''), ('104170','50075','1','28','1.3.6.1.2.1.14.2.1.2.{#SNMPINDEX} 0','0',''), ('104171','50075','2','20','12h','0',''), ('104172','50076','1','28','1.3.6.1.2.1.14.7.1.5.{#SNMPINDEX} 0','0',''), ('104173','50076','2','20','12h','0',''), ('104174','50077','1','28','1.3.6.1.2.1.14.7.1.3.{#SNMPINDEX} 0','0',''), ('104175','50077','2','20','12h','0',''), ('104176','50078','1','28','1.3.6.1.2.1.14.7.1.15.{#SNMPINDEX} 0','0',''), ('104177','50078','2','20','12h','0',''), ('104178','50079','1','28','1.3.6.1.2.1.14.7.1.6.{#SNMPINDEX} 0','0',''), ('104179','50079','2','20','12h','0',''), ('104180','50080','1','28','1.3.6.1.2.1.14.7.1.12.{#SNMPINDEX} 0','0',''), ('104181','50081','1','28','1.3.6.1.2.1.14.7.1.17.{#SNMPINDEX} 0','0',''), ('104182','50082','1','28','1.3.6.1.2.1.14.7.1.4.{#SNMPINDEX} 0','0',''), ('104183','50082','2','20','12h','0',''), ('104184','50083','1','28','1.3.6.1.2.1.14.10.1.7.{#SNMPINDEX} 0','0',''), ('104185','50083','2','20','12h','0',''), ('104186','50084','1','28','1.3.6.1.2.1.14.10.1.4.{#SNMPINDEX} 0','0',''), ('104187','50084','2','20','12h','0',''), ('104188','50085','1','28','1.3.6.1.2.1.14.10.1.5.{#SNMPINDEX} 0','0',''), ('104189','50085','2','20','12h','0',''), ('104190','50086','1','28','1.3.6.1.2.1.14.10.1.8.{#SNMPINDEX} 0','0',''), ('104191','50086','2','20','12h','0',''), ('104192','50087','1','28','1.3.6.1.2.1.14.10.1.3.{#SNMPINDEX} 0','0',''), ('104193','50087','2','20','12h','0',''), ('104194','50088','1','28','1.3.6.1.2.1.14.10.1.6.{#SNMPINDEX} 0','0',''), ('104195','50089','1','28','1.3.6.1.2.1.14.10.1.9.{#SNMPINDEX} 0','0',''), ('104196','50090','1','28','1.3.6.1.4.1.47196.4.1.1.3.11.2.1.1.7.{#SNMPINDEX} 0','0',''), ('104197','50090','2','20','1h','0',''), ('104198','50091','1','28','1.3.6.1.4.1.47196.4.1.1.3.11.2.1.1.11.{#SNMPINDEX} 0','0',''), ('104199','50091','2','20','1h','0',''), ('104200','50092','1','28','1.3.6.1.4.1.47196.4.1.1.3.22.1.0.1.1.10.{#SNMPINDEX} 0','0',''), ('104201','50092','2','20','1h','0',''), ('104202','50093','1','28','1.3.6.1.4.1.47196.4.1.1.3.22.1.0.1.1.11.{#SNMPINDEX} 0','0',''), ('104203','50093','2','20','1h','0',''), ('104204','50094','1','28','1.3.6.1.4.1.47196.4.1.1.3.22.1.0.1.1.3.{#SNMPINDEX} 0','0',''), ('104205','50095','1','28','1.3.6.1.4.1.47196.4.1.1.3.22.1.0.1.1.4.{#SNMPINDEX} 0','0',''), ('104206','50096','1','28','1.3.6.1.4.1.47196.4.1.1.3.22.1.0.1.1.7.{#SNMPINDEX} 0','0',''), ('104207','50096','2','20','1h','0',''), ('104208','50097','1','28','1.3.6.1.4.1.47196.4.1.1.3.22.1.0.1.1.6.{#SNMPINDEX} 0','0',''), ('104209','50097','2','20','1h','0',''), ('104210','50098','1','28','1.3.6.1.4.1.47196.4.1.1.3.22.1.0.1.1.5.{#SNMPINDEX} 0','0',''), ('104211','50098','2','20','1h','0',''), ('104212','50099','1','28','1.3.6.1.4.1.47196.4.1.1.3.22.1.0.1.1.8.{#SNMPINDEX} 0','0',''), ('104213','50099','2','20','1h','0',''), ('104214','50100','1','28','1.3.6.1.4.1.47196.4.1.1.3.22.1.0.1.1.9.{#SNMPINDEX} 0','0',''), ('104215','50100','2','20','1h','0',''), ('104216','50101','1','28','1.3.6.1.4.1.47196.4.1.1.3.11.3.1.1.6.{#SNMPINDEX} 0','0',''), ('104217','50101','2','20','12h','0',''), ('104218','50102','1','28','1.3.6.1.4.1.47196.4.1.1.3.11.3.1.1.7.{#SNMPINDEX} 0','0',''), ('104219','50102','2','1','0.001','0',''), ('104220','50102','3','20','1h','0',''), ('104221','50103','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('104222','50103','2','10','','0',''), ('104223','50103','3','20','3m','0',''), ('104224','50104','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('104225','50104','2','10','','0',''), ('104226','50104','3','20','3m','0',''), ('104227','50105','1','28','1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} 0','0',''), ('104228','50105','2','10','','0',''), ('104229','50105','3','1','8','0',''), ('104230','50106','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('104231','50106','2','10','','0',''), ('104232','50106','3','20','3m','0',''), ('104233','50107','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('104234','50107','2','10','','0',''), ('104235','50107','3','20','3m','0',''), ('104236','50108','1','28','1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} 0','0',''), ('104237','50108','2','10','','0',''), ('104238','50108','3','1','8','0',''), ('104239','50109','1','28','1.3.6.1.2.1.2.2.1.5.{#SNMPINDEX} 0','0',''), ('104240','50109','2','20','5m','0',''), ('104241','50110','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('104242','50111','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('104243','50111','2','20','1d','0',''), ('104244','50113','1','1','1024','0',''), ('104245','50113','2','20','1h','0',''), ('104246','50114','1','1','1024','0',''), ('104247','50114','2','20','1h','0',''), ('104248','50121','1','20','12h','0',''), ('104249','50122','1','20','12h','0',''), ('104250','50124','1','20','1d','0',''), ('104251','50125','1','20','1d','0',''), ('104252','50126','1','26','-1','2','0'), ('104253','50126','2','1','0.01','0',''), ('104254','50127','1','20','1d','0',''), ('104255','50128','1','20','12h','0',''), ('104256','50129','1','20','12h','0',''), ('104257','50130','1','1','0.01','0',''), ('104258','50131','1','20','12h','0',''), ('104259','50135','1','29','{#SNMPVALUE} 1.3.6.1.4.1.6141.2.60.11.1.1.4.1.1.1 0','1',''), ('104260','50135','2','20','1h','0',''), ('104261','50136','1','29','{#SNMPVALUE} 1.3.6.1.4.1.6141.2.60.11.1.1.3.1.1.1 0','1',''), ('104262','50136','2','20','1h','0',''), ('104263','50137','1','29','{#SNMPVALUE} 1.3.6.1.4.1.6141.2.60.11.1.1.5.1.1.1 0 {#CIENA.TEMPERATURE.HIGH} 1.3.6.1.4.1.6141.2.60.11.1.1.5.1.1.3 0 {#CIENA.TEMPERATURE.LOW} 1.3.6.1.4.1.6141.2.60.11.1.1.5.1.1.4 0','1',''), ('104264','50137','2','20','1h','0',''), ('104265','50138','1','29','{#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','0',''), ('104266','50138','2','20','1h','0',''), ('104267','50139','1','28','1.3.6.1.4.1.6141.2.60.11.1.1.4.1.1.5.{#SNMPINDEX} 0','0',''), ('104268','50139','2','20','1h','0',''), ('104269','50140','1','28','1.3.6.1.4.1.6141.2.60.11.1.1.4.1.1.3.{#SNMPINDEX} 0','0',''), ('104270','50140','2','20','1h','0',''), ('104271','50141','1','28','1.3.6.1.4.1.6141.2.60.11.1.1.3.1.1.2.{#SNMPINDEX} 0','0',''), ('104272','50141','2','20','1h','0',''), ('104273','50142','1','28','1.3.6.1.4.1.6141.2.60.11.1.1.5.1.1.2.{#SNMPINDEX} 0','0',''), ('104274','50142','2','20','1h','0',''), ('104275','50143','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('104276','50143','2','10','','0',''), ('104277','50143','3','20','3m','0',''), ('104278','50144','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('104279','50144','2','10','','0',''), ('104280','50144','3','20','3m','0',''), ('104281','50145','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('104282','50145','2','10','','0',''), ('104283','50145','3','1','8','0',''), ('104284','50146','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('104285','50146','2','10','','0',''), ('104286','50146','3','20','3m','0',''), ('104287','50147','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('104288','50147','2','10','','0',''), ('104289','50147','3','20','3m','0',''), ('104290','50148','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('104291','50148','2','10','','0',''), ('104292','50148','3','1','8','0',''), ('104293','50149','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('104294','50149','2','1','1000000','0',''), ('104295','50149','3','20','1h','0',''), ('104296','50150','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('104297','50151','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('104298','50151','2','20','1d','0',''), ('104299','44302','2','15','^null$','1',''), ('104300','50152','1','12','$.error','0',''), ('104301','50152','2','20','1h','0',''), ('104302','50153','1','12','$.loginSecurity.accountLockoutAttempts','0',''), ('104303','50153','2','15','^null$','1',''), ('104304','50154','1','12','$.error','0',''), ('104305','50154','2','20','1h','0',''), ('104306','50155','1','12','$.data','0',''), ('104307','50155','2','20','2h','0',''), ('104308','50156','1','12','$.error','0',''), ('104309','50156','2','20','1h','0',''), ('104310','50157','1','12','$.error','0',''), ('104311','50157','2','20','1h','0',''), ('104312','50158','1','12','$.loginSecurity.idleTimeoutMinutes','1',''), ('104313','50158','2','15','^null$','1',''), ('104314','50159','1','12','$.loginSecurity.enforceAccountLockout','1',''), ('104315','50159','2','6','','0',''), ('104316','50160','1','12','$.loginSecurity.enforceDifferentPasswords','1',''), ('104317','50160','2','6','','0',''), ('104318','50161','1','12','$.loginSecurity.enforceIdleTimeout','1',''), ('104319','50161','2','6','','0',''), ('104320','50162','1','12','$.loginSecurity.enforceLoginIpRanges','1',''), ('104321','50162','2','6','','0',''), ('104322','50163','1','12','$.loginSecurity.enforcePasswordExpiration','1',''), ('104323','50163','2','6','','0',''), ('104324','50164','1','12','$.loginSecurity.enforceTwoFactorAuth','1',''), ('104325','50164','2','6','','0',''), ('104326','50165','1','12','$.loginSecurity.numDifferentPasswords','1',''), ('104327','50165','2','15','^null$','1',''), ('104328','50166','1','12','$.loginSecurity.passwordExpirationDays','1',''), ('104329','50166','2','15','^null$','1',''), ('104330','50167','1','12','$.adminAccount','0',''), ('104331','50168','1','12','$.samlRoles','0',''), ('104332','46272','2','15','^null$','1',''), ('104333','50169','1','12','$.adminAccount.[?(@.id == "{#ADMIN.ID}")].first()','0',''), ('104334','50170','1','12','$.samlRoles.[?(@.id == "{#SAML.ID}")].first()','0',''), ('104335','50171','1','12','$.authenticationMethod','0',''), ('104336','50172','1','12','$.orgAccess','0',''), ('104337','50173','1','12','$.accountStatus','0',''), ('104338','50174','1','12','$.twoFactorAuthEnabled','0',''), ('104339','50174','2','6','','0',''), ('104340','50175','1','12','$.orgAccess','0',''), ('104341','50176','1','28','1.3.6.1.4.1.34774.4.1.21.3.1.4.{#SNMPINDEX} 0','0',''), ('104342','50176','2','1','1.0E-6','0',''), ('104343','50177','1','28','1.3.6.1.4.1.34774.4.1.23.4.2.1.27.{#SNMPINDEX} 0','0',''), ('104344','50177','2','1','1048576','0',''), ('104345','28617','1','12','$.data.queue','0',''), ('104346','50179','1','12','$.data.preprocessing.direct.size','1',''), ('104347','50179','2','10','','0',''), ('104348','50180','1','12','$.data.preprocessing.queued.size','1',''), ('104349','50180','2','10','','0',''), ('104350','50181','1','12','$.data.preprocessing.direct.count','1',''), ('104351','50181','2','10','','0',''), ('104352','50182','1','12','$.data.preprocessing.queued.count','1',''), ('104353','50182','2','10','','0',''), ('104354','50183','1','12','$.data.direct.size','0',''), ('104355','50183','2','10','','0',''), ('104356','50184','1','12','$.data.queued.size','0',''), ('104357','50184','2','10','','0',''), ('104358','50185','1','12','$.data.direct.count','0',''), ('104359','50185','2','10','','0',''), ('104360','50186','1','12','$.data.queued.count','0',''), ('104361','50186','2','10','','0',''), ('104362','50187','1','12','$.data.preprocessing.direct.size','1',''), ('104363','50187','2','10','','0',''), ('104364','50188','1','12','$.data.preprocessing.queued.size','1',''), ('104365','50188','2','10','','0',''), ('104366','50189','1','12','$.data.preprocessing.direct.count','1',''), ('104367','50189','2','10','','0',''), ('104368','50190','1','12','$.data.preprocessing.queued.count','1',''), ('104369','50190','2','10','','0',''), ('104370','50191','1','12','$.data.preprocessing.direct.size','1',''), ('104371','50191','2','10','','0',''), ('104372','50192','1','12','$.data.preprocessing.queued.size','1',''), ('104373','50192','2','10','','0',''), ('104374','50193','1','12','$.data.preprocessing.direct.count','1',''), ('104375','50193','2','10','','0',''), ('104376','50194','1','12','$.data.preprocessing.queued.count','1',''), ('104377','50194','2','10','','0',''), ('104378','50195','1','12','$.data.preprocessing.direct.size','1',''), ('104379','50195','2','10','','0',''), ('104380','50196','1','12','$.data.preprocessing.direct.count','1',''), ('104381','50196','2','10','','0',''), ('104382','50197','1','12','$.data.preprocessing.queued.count','1',''), ('104383','50197','2','10','','0',''), ('104384','50198','1','12','$.data.direct.size','0',''), ('104385','50198','2','10','','0',''), ('104386','50199','1','12','$.data.direct.count','0',''), ('104387','50199','2','10','','0',''), ('104388','50200','1','12','$.data.queued.count','0',''), ('104389','50200','2','10','','0',''), ('104390','50201','1','12','$.data.preprocessing.direct.size','1',''), ('104391','50201','2','10','','0',''), ('104392','50202','1','12','$.data.preprocessing.direct.count','1',''), ('104393','50202','2','10','','0',''), ('104394','50203','1','12','$.data.preprocessing.queued.count','1',''), ('104395','50203','2','10','','0',''), ('104396','50204','1','12','$.data.preprocessing.direct.size','1',''), ('104397','50204','2','10','','0',''), ('104398','50205','1','12','$.data.preprocessing.direct.count','1',''), ('104399','50205','2','10','','0',''), ('104400','50206','1','12','$.data.preprocessing.queued.count','1',''), ('104401','50206','2','10','','0',''), ('104402','50207','1','12','$.data.direct.size','0',''), ('104403','50207','2','10','','0',''), ('104404','50208','1','12','$.data.direct.count','0',''), ('104405','50208','2','10','','0',''), ('104406','50209','1','12','$.data.queued.count','0',''), ('104407','50209','2','10','','0',''), ('104408','50220','1','1','1000','0',''), ('104409','50221','1','1','1000','0',''), ('104410','50222','1','1','1000','0',''), ('104411','50223','1','1','1000','0',''), ('104412','50224','1','21','return Math.round(value * 100) / 100;','0',''), ('104413','50227','1','26','-1','2','0'), ('104414','50227','2','1','0.01','0',''), ('104415','50228','1','1','0.01','0',''), ('104416','50230','1','29','{#TYPE} 1.3.6.1.2.1.25.3.2.1.2 0 {#DESCRIPTION} 1.3.6.1.2.1.25.3.2.1.3 0','0',''), ('104417','50230','2','20','1h','0',''), ('104418','50231','1','29','{#IFADMINSTATUS} 1.3.6.1.2.1.2.2.1.7 0 {#IFOPERSTATUS} 1.3.6.1.2.1.2.2.1.8 0 {#IFALIAS} 1.3.6.1.2.1.31.1.1.1.18 0 {#IFNAME} 1.3.6.1.2.1.31.1.1.1.1 0 {#IFDESCR} 1.3.6.1.2.1.2.2.1.2 0 {#IFTYPE} 1.3.6.1.2.1.2.2.1.3 0','1',''), ('104419','50231','2','20','1h','0',''), ('104420','50232','1','29','{#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0 {#STORAGE_NAME} 1.3.6.1.2.1.25.2.3.1.3 0','0',''), ('104421','50232','2','20','1h','0',''), ('104422','50233','1','21','return Math.round(value * 100) / 100;','0',''), ('104423','50234','1','28','1.3.6.1.2.1.25.3.2.1.5.{#SNMPINDEX} 0','0',''), ('104424','50235','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('104425','50236','1','28','1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} 0','0',''), ('104426','50236','2','10','','0',''), ('104427','50236','3','20','3m','0',''), ('104428','50237','1','28','1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} 0','0',''), ('104429','50237','2','10','','0',''), ('104430','50237','3','20','3m','0',''), ('104431','50238','1','28','1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} 0','0',''), ('104432','50238','2','10','','0',''), ('104433','50238','3','1','8','0',''), ('104434','50239','1','28','1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} 0','0',''), ('104435','50239','2','10','','0',''), ('104436','50239','3','20','3m','0',''), ('104437','50240','1','28','1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} 0','0',''), ('104438','50240','2','10','','0',''), ('104439','50240','3','20','3m','0',''), ('104440','50241','1','28','1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} 0','0',''), ('104441','50241','2','10','','0',''), ('104442','50241','3','1','8','0',''), ('104443','50242','1','28','1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} 0','0',''), ('104444','50242','2','1','1000000','0',''), ('104445','50242','3','20','1h','0',''), ('104446','50243','1','28','1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} 0','0',''), ('104447','50244','1','28','1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} 0','0',''), ('104448','50244','2','20','1d','0',''), ('104449','50245','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('104450','50245','2','1','1024','0',''), ('104451','50245','3','20','6h','0',''), ('104452','50246','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('104453','50246','2','1','1024','0',''), ('104454','46241','2','10','','0',''), ('104455','50257','1','1','1000','0',''), ('104456','50258','1','1','1000','0',''), ('104457','50259','1','1','1000','0',''), ('104458','50260','1','1','1000','0',''), ('104459','50260','2','20','1h','0',''), ('104460','50268','1','15','^$','1',''), ('104461','50268','2','20','6h','0',''), ('104462','50269','1','15','^$','1',''), ('104463','50269','2','20','6h','0',''), ('104464','50270','1','20','6h','0',''), ('104465','50272','1','20','6h','0',''), ('104466','50274','1','20','6h','0',''), ('104467','50288','1','21','function toTimestamp(value) { var parts = value.split(":"); var d = parseInt(parts[0], 10); var h = parseInt(parts[1], 10); var mi = parseInt(parts[2], 10); var s = parseInt(parts[3], 10); if ([d, h, mi, s].some(isNaN)) return 0; return (d*86400+h*3600+mi*60+s); } return toTimestamp(value);','0',''), ('104468','50293','1','28','1.3.6.1.4.1.11256.1.10.10.1.5.0 0','1',''), ('104469','50294','1','28','1.3.6.1.4.1.11256.1.10.10.1.7.0 0','1',''), ('104470','50295','1','28','1.3.6.1.4.1.11256.1.10.10.1.6.0 0','1',''), ('104471','50296','1','28','1.3.6.1.4.1.11256.1.10.10.1.3.0 0','1',''), ('104472','50297','1','28','1.3.6.1.4.1.11256.1.10.10.1.21.0 0','1',''), ('104473','50298','1','28','1.3.6.1.4.1.11256.1.10.10.1.4.0 0','1',''), ('104474','50299','1','28','1.3.6.1.4.1.11256.1.10.10.1.10.0 0','1',''), ('104475','50300','1','28','1.3.6.1.4.1.11256.1.10.10.1.8.0 0','1',''), ('104476','50301','1','28','1.3.6.1.4.1.11256.1.10.10.1.9.0 0','1',''), ('104477','50302','1','29','{#CPU_ID} 1.3.6.1.4.1.11256.1.10.7.1.1 0','0',''), ('104478','50302','2','20','1h','0',''), ('104479','50303','1','29','{#CPU_ID} 1.3.6.1.2.1.25.3.3.1.1 0','0',''), ('104480','50303','2','20','1h','0',''), ('104481','50304','1','29','{#DISK_ID} 1.3.6.1.4.1.11256.1.10.5.1.1 0','0',''), ('104482','50304','2','20','1h','0',''), ('104483','50305','1','29','{#FAN_ID} 1.3.6.1.4.1.11256.1.10.9.1.1 0','0',''), ('104484','50305','2','20','1h','0',''), ('104485','50306','1','29','{#HA_ID} 1.3.6.1.4.1.11256.1.11.7.1.1 0','0',''), ('104486','50306','2','20','1h','0',''), ('104487','50307','1','29','{#HEALTH_ID} 1.3.6.1.4.1.11256.1.16.2.1.1 0','0',''), ('104488','50307','2','20','1h','0',''), ('104489','50308','1','29','{#IF_ID} 1.3.6.1.4.1.11256.1.4.1.1.1 0 {#IF_NAME} 1.3.6.1.4.1.11256.1.4.1.1.2 0','0',''), ('104490','50308','2','20','1h','0',''), ('104491','50309','1','29','{#POWER_ID} 1.3.6.1.4.1.11256.1.10.6.1.1 0','0',''), ('104492','50309','2','20','1h','0',''), ('104493','50310','1','29','{#STORAGE_TYPE} 1.3.6.1.2.1.25.2.3.1.2 0 {#STORAGE_DESCR} 1.3.6.1.2.1.25.2.3.1.3 0','0',''), ('104494','50310','2','20','1h','0',''), ('104495','50311','1','29','{#UPDATE_ID} 1.3.6.1.4.1.11256.1.9.1.1.1 0 {#UPDATE_NAME} 1.3.6.1.4.1.11256.1.9.1.1.2 0','0',''), ('104496','50311','2','20','1h','0',''), ('104497','50313','1','28','1.3.6.1.4.1.11256.1.10.7.1.2.{#SNMPINDEX} 0','0',''), ('104498','50314','1','28','1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} 0','0',''), ('104499','50315','1','28','1.3.6.1.4.1.11256.1.10.5.1.2.{#SNMPINDEX} 0','0',''), ('104500','50315','2','20','6h','0',''), ('104501','50316','1','28','1.3.6.1.4.1.11256.1.10.5.1.4.{#SNMPINDEX} 0','0',''), ('104502','50316','2','20','1h','0',''), ('104503','50317','1','28','1.3.6.1.4.1.11256.1.10.5.1.3.{#SNMPINDEX} 0','0',''), ('104504','50317','2','21','const idx = { ''passed'': 1, ''failed'': 2 }; return typeof idx[value.toLowerCase()] === ''undefined'' ? 0 : idx[value.toLowerCase()];','0',''), ('104505','50318','1','28','1.3.6.1.4.1.11256.1.10.5.1.5.{#SNMPINDEX} 0','0',''), ('104506','50318','2','21','const idx = { ''degraded'': 1, ''missing'': 2, ''optimal'': 3 }; return typeof idx[value.toLowerCase()] === ''undefined'' ? 0 : idx[value.toLowerCase()];','0',''), ('104507','50319','1','28','1.3.6.1.4.1.11256.1.10.9.1.2.{#SNMPINDEX} 0','0',''), ('104508','50319','2','20','6h','0',''), ('104509','50320','1','28','1.3.6.1.4.1.11256.1.10.9.1.4.{#SNMPINDEX} 0','0',''), ('104510','50321','1','28','1.3.6.1.4.1.11256.1.10.9.1.3.{#SNMPINDEX} 0','0',''), ('104511','50321','2','21','const idx = { ''failure'': 1, ''running'': 2, }; return typeof idx[value.toLowerCase()] === ''undefined'' ? 0 : idx[value.toLowerCase()];','0',''), ('104512','50321','3','20','1h','0',''), ('104513','50322','1','28','1.3.6.1.4.1.11256.1.11.7.1.10.{#SNMPINDEX} 0','0',''), ('104514','50323','1','28','1.3.6.1.4.1.11256.1.11.7.1.6.{#SNMPINDEX} 0','0',''), ('104515','50323','2','21','const idx = { ''slave'': 1, ''master'': 2 }; return typeof idx[value.toLowerCase()] === ''undefined'' ? 0 : idx[value.toLowerCase()];','0',''), ('104516','50324','1','28','1.3.6.1.4.1.11256.1.11.7.1.4.{#SNMPINDEX} 0','0',''), ('104517','50324','2','20','6h','0',''), ('104518','50325','1','28','1.3.6.1.4.1.11256.1.11.7.1.3.{#SNMPINDEX} 0','0',''), ('104519','50326','1','28','1.3.6.1.4.1.11256.1.11.7.1.8.{#SNMPINDEX} 0','0',''), ('104520','50327','1','28','1.3.6.1.4.1.11256.1.11.7.1.7.{#SNMPINDEX} 0','0',''), ('104521','50328','1','28','1.3.6.1.4.1.11256.1.11.7.1.2.{#SNMPINDEX} 0','0',''), ('104522','50328','2','20','6h','0',''), ('104523','50329','1','28','1.3.6.1.4.1.11256.1.11.7.1.9.{#SNMPINDEX} 0','0',''), ('104524','50329','2','20','1h','0',''), ('104525','50330','1','28','1.3.6.1.4.1.11256.1.11.7.1.11.{#SNMPINDEX} 0','0',''), ('104526','50331','1','28','1.3.6.1.4.1.11256.1.16.2.1.11.{#SNMPINDEX} 0','0',''), ('104527','50331','2','21','const idx = { ''n/a'': 1, ''none'': 2, ''active'': 3, ''passive'': 4, ''major'': 5, ''minor'': 6, ''good'': 7 }; return typeof idx[value.toLowerCase()] === ''undefined'' ? 0 : idx[value.toLowerCase()];','0',''), ('104528','50332','1','28','1.3.6.1.4.1.11256.1.16.2.1.7.{#SNMPINDEX} 0','0',''), ('104529','50332','2','21','const idx = { ''n/a'': 1, ''none'': 2, ''active'': 3, ''passive'': 4, ''major'': 5, ''minor'': 6, ''good'': 7 }; return typeof idx[value.toLowerCase()] === ''undefined'' ? 0 : idx[value.toLowerCase()];','0',''), ('104530','50333','1','28','1.3.6.1.4.1.11256.1.16.2.1.15.{#SNMPINDEX} 0','0',''), ('104531','50333','2','21','const idx = { ''n/a'': 1, ''none'': 2, ''active'': 3, ''passive'': 4, ''major'': 5, ''minor'': 6, ''good'': 7 }; return typeof idx[value.toLowerCase()] === ''undefined'' ? 0 : idx[value.toLowerCase()];','0',''), ('104532','50334','1','28','1.3.6.1.4.1.11256.1.16.2.1.12.{#SNMPINDEX} 0','0',''), ('104533','50334','2','21','const idx = { ''n/a'': 1, ''none'': 2, ''active'': 3, ''passive'': 4, ''major'': 5, ''minor'': 6, ''good'': 7 }; return typeof idx[value.toLowerCase()] === ''undefined'' ? 0 : idx[value.toLowerCase()];','0',''), ('104534','50335','1','28','1.3.6.1.4.1.11256.1.16.2.1.9.{#SNMPINDEX} 0','0',''), ('104535','50335','2','21','const idx = { ''n/a'': 1, ''none'': 2, ''active'': 3, ''passive'': 4, ''major'': 5, ''minor'': 6, ''good'': 7 }; return typeof idx[value.toLowerCase()] === ''undefined'' ? 0 : idx[value.toLowerCase()];','0',''), ('104536','50336','1','28','1.3.6.1.4.1.11256.1.16.2.1.6.{#SNMPINDEX} 0','0',''), ('104537','50336','2','21','const idx = { ''n/a'': 1, ''none'': 2, ''active'': 3, ''passive'': 4, ''major'': 5, ''minor'': 6, ''good'': 7 }; return typeof idx[value.toLowerCase()] === ''undefined'' ? 0 : idx[value.toLowerCase()];','0',''), ('104538','50337','1','28','1.3.6.1.4.1.11256.1.16.2.1.4.{#SNMPINDEX} 0','0',''), ('104539','50337','2','21','const idx = { ''n/a'': 1, ''none'': 2, ''active'': 3, ''passive'': 4, ''major'': 5, ''minor'': 6, ''good'': 7 }; return typeof idx[value.toLowerCase()] === ''undefined'' ? 0 : idx[value.toLowerCase()];','0',''), ('104540','50338','1','28','1.3.6.1.4.1.11256.1.16.2.1.3.{#SNMPINDEX} 0','0',''), ('104541','50338','2','21','const idx = { ''n/a'': 1, ''none'': 2, ''active'': 3, ''passive'': 4, ''major'': 5, ''minor'': 6, ''good'': 7 }; return typeof idx[value.toLowerCase()] === ''undefined'' ? 0 : idx[value.toLowerCase()];','0',''), ('104542','50339','1','28','1.3.6.1.4.1.11256.1.16.2.1.8.{#SNMPINDEX} 0','0',''), ('104543','50339','2','21','const idx = { ''n/a'': 1, ''none'': 2, ''active'': 3, ''passive'': 4, ''major'': 5, ''minor'': 6, ''good'': 7 }; return typeof idx[value.toLowerCase()] === ''undefined'' ? 0 : idx[value.toLowerCase()];','0',''), ('104544','50340','1','28','1.3.6.1.4.1.11256.1.16.2.1.14.{#SNMPINDEX} 0','0',''), ('104545','50340','2','21','const idx = { ''n/a'': 1, ''none'': 2, ''active'': 3, ''passive'': 4, ''major'': 5, ''minor'': 6, ''good'': 7 }; return typeof idx[value.toLowerCase()] === ''undefined'' ? 0 : idx[value.toLowerCase()];','0',''), ('104546','50341','1','28','1.3.6.1.4.1.11256.1.16.2.1.5.{#SNMPINDEX} 0','0',''), ('104547','50341','2','21','const idx = { ''n/a'': 1, ''none'': 2, ''active'': 3, ''passive'': 4, ''major'': 5, ''minor'': 6, ''good'': 7 }; return typeof idx[value.toLowerCase()] === ''undefined'' ? 0 : idx[value.toLowerCase()];','0',''), ('104548','50342','1','28','1.3.6.1.4.1.11256.1.16.2.1.10.{#SNMPINDEX} 0','0',''), ('104549','50342','2','21','const idx = { ''n/a'': 1, ''none'': 2, ''active'': 3, ''passive'': 4, ''major'': 5, ''minor'': 6, ''good'': 7 }; return typeof idx[value.toLowerCase()] === ''undefined'' ? 0 : idx[value.toLowerCase()];','0',''), ('104550','50343','1','28','1.3.6.1.4.1.11256.1.4.1.1.11.{#SNMPINDEX} 0','0',''), ('104551','50344','1','28','1.3.6.1.4.1.11256.1.4.1.1.12.{#SNMPINDEX} 0','0',''), ('104552','50345','1','28','1.3.6.1.4.1.11256.1.4.1.1.21.{#SNMPINDEX} 0','0',''), ('104553','50346','1','28','1.3.6.1.4.1.11256.1.4.1.1.22.{#SNMPINDEX} 0','0',''), ('104554','50347','1','28','1.3.6.1.4.1.11256.1.4.1.1.27.{#SNMPINDEX} 0','0',''), ('104555','50348','1','28','1.3.6.1.4.1.11256.1.4.1.1.25.{#SNMPINDEX} 0','0',''), ('104556','50349','1','28','1.3.6.1.4.1.11256.1.4.1.1.31.{#SNMPINDEX} 0','0',''), ('104557','50350','1','28','1.3.6.1.4.1.11256.1.4.1.1.29.{#SNMPINDEX} 0','0',''), ('104558','50351','1','28','1.3.6.1.4.1.11256.1.4.1.1.33.{#SNMPINDEX} 0','0',''), ('104559','50352','1','28','1.3.6.1.4.1.11256.1.4.1.1.28.{#SNMPINDEX} 0','0',''), ('104560','50353','1','28','1.3.6.1.4.1.11256.1.4.1.1.3.{#SNMPINDEX} 0','0',''), ('104561','50353','2','20','6h','0',''), ('104562','50354','1','28','1.3.6.1.4.1.11256.1.4.1.1.26.{#SNMPINDEX} 0','0',''), ('104563','50355','1','28','1.3.6.1.4.1.11256.1.4.1.1.32.{#SNMPINDEX} 0','0',''), ('104564','50356','1','28','1.3.6.1.4.1.11256.1.4.1.1.30.{#SNMPINDEX} 0','0',''), ('104565','50357','1','28','1.3.6.1.4.1.11256.1.4.1.1.34.{#SNMPINDEX} 0','0',''), ('104566','50358','1','28','1.3.6.1.4.1.11256.1.4.1.1.37.{#SNMPINDEX} 0','0',''), ('104567','50359','1','28','1.3.6.1.4.1.11256.1.4.1.1.23.{#SNMPINDEX} 0','0',''), ('104568','50360','1','28','1.3.6.1.4.1.11256.1.4.1.1.24.{#SNMPINDEX} 0','0',''), ('104569','50361','1','28','1.3.6.1.4.1.11256.1.10.6.1.2.{#SNMPINDEX} 0','0',''), ('104570','50362','1','28','1.3.6.1.4.1.11256.1.10.6.1.3.{#SNMPINDEX} 0','0',''), ('104571','50362','2','21','const idx = { ''notfound'': 1, ''dummy'': 2, ''optional_not_powered'': 3, ''failed'': 4, ''ok'': 5 }; return typeof idx[value.toLowerCase()] === ''undefined'' ? 0 : idx[value.toLowerCase()];','0',''), ('104572','50363','1','28','1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} 0','0',''), ('104573','50363','2','1','4096','0',''), ('104574','50364','1','28','1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} 0','0',''), ('104575','50364','2','1','4096','0',''), ('104576','50365','1','28','1.3.6.1.4.1.11256.1.9.1.1.4.{#SNMPINDEX} 0','0',''), ('104577','50365','2','20','6h','0',''), ('104578','50366','1','28','1.3.6.1.4.1.11256.1.9.1.1.3.{#SNMPINDEX} 0','0',''), ('104579','50366','2','21','const idx = { ''never started'': 1, ''not available'': 2, ''running'': 3, ''broken'': 4, ''failed'': 5, ''uptodate'': 6, ''manually uptodate'': 7 }; return typeof idx[value.toLowerCase()] === ''undefined'' ? 0 : idx[value.toLowerCase()];','0',''), ('104580','50366','3','20','6h','0',''); INSERT INTO sysmap_shape (sysmap_shapeid,sysmapid,type,x,y,width,height,text,font,font_size,font_color,text_halign,text_valign,border_type,border_width,border_color,background_color,zindex) VALUES ('1','1','0','0','0','680','15','{MAP.NAME}','9','11','000000','0','0','0','0','000000','','0'); INSERT INTO lld_macro_path (lld_macro_pathid,itemid,lld_macro,path) VALUES ('1','29429','{#IFNAME}','$.labels.device'), ('2','29429','{#HELP}','$.help'), ('3','29429','{#IFALIAS}','$.labels.ifalias'), ('4','29429','{#IFOPERSTATUS}','$.labels.operstate'), ('5','29430','{#FSTYPE}','$.fstype'), ('6','29430','{#FSNAME}','$.mountpoint'), ('7','29430','{#FSDEVICE}','$.device'), ('9','29431','{#DEVNAME}','$.labels.device'), ('10','29431','{#HELP}','$.help'), ('38','29703','{#QUEUE}','$.name'), ('39','29703','{#VHOST}','$.vhost'), ('40','29703','{#NODE}','$.node'), ('41','29785','{#EXCHANGE}','$.name'), ('42','29785','{#TYPE}','$.type'), ('43','29785','{#VHOST}','$.vhost'), ('44','29786','{#QUEUE}','$.name'), ('45','29786','{#VHOST}','$.vhost'), ('46','29786','{#NODE}','$.node'), ('47','30026','{#EXCHANGE}','$.name'), ('48','30026','{#TYPE}','$.type'), ('49','30026','{#VHOST}','$.vhost'), ('50','30193','{#PXNAME}','$.pxname'), ('51','30193','{#SVNAME}','$.svname'), ('52','30194','{#PXNAME}','$.pxname'), ('53','30194','{#SVNAME}','$.svname'), ('54','30195','{#PXNAME}','$.pxname'), ('55','30195','{#SVNAME}','$.svname'), ('56','30236','{#PXNAME}','$.pxname'), ('57','30236','{#SVNAME}','$.svname'), ('58','30237','{#PXNAME}','$.pxname'), ('59','30237','{#SVNAME}','$.svname'), ('60','30238','{#PXNAME}','$.pxname'), ('61','30238','{#SVNAME}','$.svname'), ('62','30678','{#DATABASE}','$.Database'), ('63','30679','{#MASTER_HOST}','$.Master_Host'), ('64','30686','{#SENSOR_ID}','$.id'), ('65','30686','{#SENSOR_READING_TYPE}','$.reading.text'), ('66','30686','{#SENSOR_TYPE}','$.sensor.text'), ('67','30686','{#SENSOR_UNIT}','$.units'), ('68','30687','{#SENSOR_ID}','$.id'), ('69','30687','{#SENSOR_READING_TYPE}','$.reading.text'), ('70','30687','{#SENSOR_TYPE}','$.sensor.text'), ('71','30687','{#SENSOR_UNIT}','$.units'), ('72','30687','{#SENSOR_LO_WARN}','$.threshold.lower.non_crit'), ('73','30687','{#SENSOR_LO_CRIT}','$.threshold.lower.crit'), ('74','30687','{#SENSOR_LO_DISAST}','$.threshold.lower.non_recover'), ('75','30687','{#SENSOR_HI_WARN}','$.threshold.upper.non_crit'), ('76','30687','{#SENSOR_HI_CRIT}','$.threshold.upper.crit'), ('77','30687','{#SENSOR_HI_DISAST}','$.threshold.upper.non_recover'), ('78','30713','{#ES.NODE}','$..name.first()'), ('88','30193','{#MODE}','$.mode'), ('89','30194','{#MODE}','$.mode'), ('90','30195','{#MODE}','$.mode'), ('100','30236','{#MODE}','$.mode'), ('101','30237','{#MODE}','$.mode'), ('102','30238','{#MODE}','$.mode'), ('103','30874','{#NAME}','$.name'), ('104','30875','{#DB}','$.database'), ('105','30875','{#TABLE}','$.table'), ('106','30876','{#DB}','$.database'), ('107','30876','{#TABLE}','$.table'), ('108','30962','{#ETCD.PEER}','$.labels.To'), ('109','31005','{#APPPOOL}','$.Name'), ('110','31047','{#APPPOOL}','$.Name'), ('111','31803','{#OBJECTNAME}','$.ObjectName'), ('112','31804','{#OBJECTNAME}','$.ObjectName'), ('113','31805','{#QUEUE}','$.Queue'), ('114','31806','{#OBJECTNAME}','$.ObjectName'), ('115','32869','{#ACCESSOR}','$.accessor'), ('116','32869','{#TOKEN_NAME}','$.token_name'), ('117','33465','{#DESCRIPTION}','$.description'), ('118','33465','{#DISPLAY_NAME}','$.displayName'), ('119','33466','{#DESCRIPTION}','$.description'), ('120','33466','{#NAME}','$.name'), ('121','33466','{#URL}','$.url'), ('122','34942','{#DEPLOYMENT}','$.properties.deployment'), ('123','34942','{#JMXOBJ}','$.object'), ('124','34942','{#SERVER_GROUP}','$.properties.["server-group"]'), ('125','34943','{#JMXOBJ}','$.object'), ('126','34943','{#SERVER}','$.properties.["server-config"]'), ('127','34966','{#DEPLOYMENT}','$.properties.deployment'), ('128','34966','{#JMXOBJ}','$.object'), ('129','34967','{#JMXOBJ}','$.object'), ('130','34967','{#JMX_DATA_SOURCE}','$.properties.["data-source"]'), ('131','34968','{#JMXOBJ}','$.object'), ('132','34968','{#JMX_DATA_SOURCE}','$.properties.["data-source"]'), ('133','34969','{#HTTP_LISTENER}','$.properties.["http-listener"]'), ('134','34969','{#JMXOBJ}','$.object'), ('135','34969','{#SERVER}','$.properties.["server"]'), ('136','39749','{#CITY}','$.site.city'), ('137','39749','{#ID}','$.id'), ('138','39749','{#NAME}','$.name'), ('139','39749','{#STATE}','$.site.state'), ('140','39750','{#CITY}','$.site.city'), ('141','39750','{#ID}','$.id'), ('142','39750','{#NAME}','$.name'), ('143','39750','{#STATE}','$.site.state'), ('144','39751','{#EDGE}','$.link.edgeName'), ('145','39751','{#ENTERPRISE}','$.link.enterpriseName'), ('146','39751','{#ID}','$.link.linkId'), ('147','39751','{#IF}','$.link.interface'), ('148','39751','{#IP}','$.link.linkIpAddress'), ('149','39751','{#NAME}','$.link.displayName'), ('150','39752','{#DESTINATION}','$.destination.deviceName'), ('151','39752','{#NAME}','$.source.linkName'), ('152','39752','{#SOURCE}','$.source.deviceName'), ('153','39753','{#EDGE.ID}','$.edgeId'), ('154','39753','{#EDGE}','$.edgeName'), ('155','39753','{#ID}','$.deviceLogicalId'), ('156','39753','{#NAME}','$.peerName'), ('157','39753','{#TYPE}','$.peerType'), ('158','39806','{#NODE.ID}','$.id'), ('159','39806','{#NODE.NAME}','$.name'), ('160','39807','{#NODE.ID}','$.id'), ('161','39807','{#NODE.NAME}','$.name'), ('162','39816','{#NODE.ID}','$.id'), ('163','39816','{#NODE.NAME}','$.name'), ('164','42726','{#COUNTRY}','$.sys.country'), ('165','42726','{#ID}','$.id'), ('166','42726','{#LOCATION}','$.name'), ('167','42726','{#TEMP.UNIT}','$.temp_unit'), ('168','42726','{#WIND.UNIT}','$.wind_unit'), ('169','42741','{#RESOURCE.TYPE}','$.type'), ('170','42741','{#RESOURCE.NAME}','$.name'), ('171','42742','{#RESOURCE.TYPE}','$.type'), ('172','42742','{#NODE.NAME}','$.node'), ('173','42742','{#LXC.NAME}','$.name'), ('174','42742','{#LXC.ID}','$.id'), ('175','42743','{#RESOURCE.TYPE}','$.type'), ('176','42743','{#NODE.NAME}','$.node'), ('177','42744','{#RESOURCE.TYPE}','$.type'), ('178','42744','{#NODE.NAME}','$.node'), ('179','42744','{#QEMU.NAME}','$.name'), ('180','42744','{#QEMU.ID}','$.id'), ('181','42745','{#RESOURCE.TYPE}','$.type'), ('182','42745','{#NODE.NAME}','$.node'), ('183','42745','{#STORAGE.NAME}','$.storage'), ('184','42986','{#STORE}','$.labels.store'), ('185','43184','{#CONTROLLER.ID}','$.[''controller-id'']'), ('186','43184','{#DURABLE.ID}','$.[''durable-id'']'), ('187','43185','{#DURABLE.ID}','$.[''durable-id'']'), ('188','43185','{#TYPE}','$.[''description-numeric'']'), ('189','43186','{#NAME}','$.[''name'']'), ('190','43187','{#DURABLE.ID}','$.[''durable-id'']'), ('191','43188','{#DURABLE.ID}','$.[''durable-id'']'), ('193','43189','{#DESCRIPTION}','$.[''description'']'), ('194','43189','{#ENCLOSURE.ID}','$.[''enclosure-id'']'), ('195','43189','{#LOCATION}','$.[''fru-location'']'), ('196','43189','{#TYPE}','$.[''name'']'), ('197','43190','{#NAME}','$.[''name'']'), ('198','43191','{#NAME}','$.[''port'']'), ('199','43192','{#DURABLE.ID}','$.[''durable-id'']'), ('200','43193','{#NAME}','$.[''volume-name'']'), ('201','43291','{#CONTROLLER.ID}','$.[''controller-id'']'), ('202','43291','{#DURABLE.ID}','$.[''durable-id'']'), ('203','43292','{#DURABLE.ID}','$.[''durable-id'']'), ('204','43292','{#TYPE}','$.[''description-numeric'']'), ('205','43293','{#NAME}','$.[''name'']'), ('206','43294','{#DURABLE.ID}','$.[''durable-id'']'), ('207','43295','{#DURABLE.ID}','$.[''durable-id'']'), ('208','43296','{#DESCRIPTION}','$.[''description'']'), ('209','43296','{#ENCLOSURE.ID}','$.[''enclosure-id'']'), ('210','43296','{#LOCATION}','$.[''fru-location'']'), ('211','43296','{#TYPE}','$.[''name'']'), ('212','43297','{#NAME}','$.[''name'']'), ('213','43298','{#NAME}','$.[''port'']'), ('214','43299','{#DURABLE.ID}','$.[''durable-id'']'), ('215','43300','{#NAME}','$.[''volume-name'']'), ('216','43415','{#ID}','$.id'), ('217','43415','{#NAME}','$.name'), ('218','43416','{#ID}','$.id'), ('219','43416','{#POSITION}','$.position'), ('220','43417','{#ID}','$.id'), ('221','43417','{#NAME}','$.name'), ('222','43418','{#CARD.PORT}','$.portPos.cardPort'), ('223','43418','{#NODE}','$.portPos.node'), ('224','43418','{#SLOT}','$.portPos.slot'), ('225','43418','{#TYPE}','$.type'), ('226','43419','{#ID}','$.id'), ('227','43419','{#NAME}','$.name'), ('228','43419','{#TYPE}','$.type'), ('229','43420','{#ID}','$.id'), ('230','43420','{#NAME}','$.name'), ('231','43768','{#GROUP}','$.resourceGroup'), ('232','43768','{#ID}','$.id'), ('233','43768','{#LOCATION}','$.location'), ('234','43768','{#NAME}','$.name'), ('235','43768','{#OS}','$.properties.storageProfile.osDisk.osType'), ('236','43768','{#SIZE}','$.properties.hardwareProfile.vmSize'), ('237','43768','{#TYPE}','$.type'), ('238','43905','{#BAY_NUMBER}','$.bayNumber'), ('239','43905','{#ENCLOSURE_NAME}','$.enclosureName'), ('240','43906','{#BAY_NUMBER}','$.bayNumber'), ('241','43906','{#ENCLOSURE_NAME}','$.enclosureName'), ('242','43907','{#NAME}','$.name'), ('243','43908','{#BAY_NUMBER}','$.bayNumber'), ('244','43908','{#ENCLOSURE_NAME}','$.enclosureName'), ('245','43909','{#NAME}','$.name'), ('246','43910','{#NAME}','$.name'), ('247','43911','{#NAME}','$.name'), ('248','43912','{#BAY_NUMBER}','$.bayNumber'), ('249','43912','{#ENCLOSURE_NAME}','$.enclosureName'), ('250','43913','{#NAME}','$.name'), ('251','43914','{#BAY_NUMBER}','$.bayNumber'), ('252','43914','{#ENCLOSURE_NAME}','$.enclosureName'), ('253','43915','{#NAME}','$.displayName'), ('254','43916','{#ENCLOSURE_NAME}','$.enclosureName'), ('255','43916','{#NAME}','$.name'), ('256','43917','{#NAME}','$.name'), ('257','43918','{#ENCLOSURE_NAME}','$.enclosureName'), ('258','43918','{#PARTITION_ID}','$.partitionID'), ('259','43919','{#BAY_NUMBER}','$.bayNumber'), ('260','43919','{#ENCLOSURE_NAME}','$.enclosureName'), ('261','43920','{#NAME}','$.name'), ('262','43921','{#LOCATION}','$.name'), ('263','43921','{#SERVER_NAME}','$.serverName'), ('264','43922','{#NAME}','$.name'), ('265','43923','{#NAME}','$.name'), ('266','43924','{#NAME}','$.name'), ('267','43925','{#NAME}','$.name'), ('268','44052','{#AWS.EC2.INSTANCE.ID}','$.instanceId'), ('269','44052','{#AWS.EC2.INSTANCE.NAME}','$.instanceName'), ('270','44053','{#AWS.RDS.INSTANCE.ID}','$.DBInstanceIdentifier'), ('271','44054','{#AWS.S3.NAME}','$.Name'), ('273','44057','{#PROXY.NAME}','$.name'), ('274','44058','{#PROXY.NAME}','$.name'), ('275','44082','{#PROXY.NAME}','$.name'), ('276','44200','{#GROUP}','$.resourceGroup'), ('277','44200','{#ID}','$.id'), ('278','44200','{#LOCATION}','$.location'), ('279','44200','{#NAME}','$.name'), ('280','44200','{#SIZE}','$.sku.name'), ('281','44200','{#TYPE}','$.type'), ('282','44200','{#VERSION}','$.properties.version'), ('285','44293','{#GROUP}','$.resourceGroup'), ('286','44293','{#ID}','$.id'), ('287','44293','{#LOCATION}','$.location'), ('288','44293','{#NAME}','$.name'), ('289','44293','{#SIZE}','$.sku.name'), ('290','44293','{#TYPE}','$.type'), ('291','44293','{#VERSION}','$.properties.version'), ('292','44314','{#MAC}','$.mac'), ('294','44314','{#NAME}','$.name'), ('295','44314','{#NETWORK.ID}','$.network.id'), ('296','44314','{#ORGANIZATION_ID}','$.organizationId'), ('297','44314','{#PRODUCT_TYPE}','$.productType'), ('298','44314','{#SERIAL}','$.serial'), ('299','44315','{#ID}','$.id'), ('300','44315','{#NAME}','$.name'), ('301','44315','{#REGION}','$.cloud.region.name'), ('302','44315','{#URL}','$.url'), ('303','44316','{#IP}','$.ip'), ('304','44316','{#NETWORK.ID}','$.networkId'), ('305','44316','{#SERIAL}','$.serial'), ('306','44316','{#UPLINK}','$.uplink'), ('307','44317','{#INTERFACE}','$.interface'), ('308','44317','{#NETWORK.NAME}','$.networkName'), ('309','44317','{#PRIVATE.IP}','$.ip'), ('310','44317','{#PUBLIC.IP}','$.publicIp'), ('311','44317','{#UPLINK.DEVICE.SERIAL}','$.serial'), ('312','44317','{#UPLINK.ROLE}','$.role'), ('313','44318','{#NETWORK.ID}','$.networkId'), ('314','44318','{#NETWORK.NAME}','$.networkName'), ('315','44318','{#PEER.NETWORK.ID}','$.peerNetworkId'), ('316','44318','{#PEER.NETWORK.NAME}','$.peerNetworkName'), ('317','44318','{#RECEIVER.UPLINK}','$.receiverUplink'), ('318','44318','{#SENDER.UPLINK}','$.senderUplink'), ('333','22947','{#FSNAME}','$.fsname'), ('334','22947','{#FSTYPE}','$.fstype'), ('335','22907','{#FSNAME}','$.fsname'), ('336','22907','{#FSTYPE}','$.fstype'), ('337','22987','{#FSNAME}','$.fsname'), ('338','22987','{#FSTYPE}','$.fstype'), ('339','42273','{#FSNAME}','$.fsname'), ('340','42273','{#FSTYPE}','$.fstype'), ('341','42276','{#FSNAME}','$.fsname'), ('342','42276','{#FSTYPE}','$.fstype'), ('343','42362','{#FSNAME}','$.fsname'), ('344','42362','{#FSTYPE}','$.fstype'), ('345','23067','{#FSNAME}','$.fsname'), ('346','23067','{#FSOPTIONS}','$.fsoptions'), ('347','23067','{#FSTYPE}','$.fstype'), ('348','22867','{#FSNAME}','$.fsname'), ('349','22867','{#FSTYPE}','$.fstype'), ('350','23027','{#FSNAME}','$.fsname'), ('351','23027','{#FSTYPE}','$.fstype'), ('352','42490','{#FSNAME}','$.fsname'), ('353','42490','{#FSTYPE}','$.fstype'), ('354','42490','{#FSDRIVETYPE}','$.fsdrivetype'), ('355','42546','{#FSNAME}','$.fsname'), ('356','42546','{#FSTYPE}','$.fstype'), ('357','42546','{#FSDRIVETYPE}','$.fsdrivetype'), ('358','44468','{#SERVER.NAME}','$.name'), ('359','44469','{#SERVICE.JOB}','$.serviceJob'), ('360','44469','{#SERVICE.NAME}','$.serviceName'), ('361','44470','{#AGENT.NAME}','$.nodeid'), ('362','44471','{#JOB.ID}','$.jobId'), ('363','44496','{#ID}','$.id'), ('364','44496','{#JOB.STATUS}','$.status'), ('365','44496','{#NAME}','$.name'), ('366','44496','{#REPOSITORY.NAME}','$.repositoryName'), ('367','44496','{#TYPE}','$.type'), ('368','44496','{#WORKLOAD}','$.workload'), ('369','44497','{#DESCRIPTION}','$.description'), ('370','44497','{#HOSTID}','$.server.hostId'), ('371','44497','{#ID}','$.id'), ('372','44497','{#NAME}','$.name'), ('373','44497','{#TYPE}','$.type'), ('374','44498','{#DESCRIPTION}','$.description'), ('375','44498','{#HOSTID}','$.server.hostId'), ('376','44498','{#HOSTNAME}','$.hostName'), ('377','44498','{#ID}','$.id'), ('378','44498','{#NAME}','$.name'), ('379','44498','{#PATH}','$.path'), ('380','44498','{#TYPE}','$.type'), ('381','44499','{#CREATION.TIME}','$.creationTime'), ('382','44499','{#END.TIME}','$.endTime'), ('383','44499','{#ID}','$.id'), ('384','44499','{#NAME}','$.name'), ('385','44499','{#STATE}','$.state'), ('386','44499','{#TYPE}','$.sessionType'), ('387','44525','{#NAME}','$.Name'), ('388','44525','{#TYPE}','$.Type'), ('389','44525','{#UID}','$.UID'), ('390','44525','{#URL}','$.Href'), ('391','44585','{#GROUP}','$.resourceGroup'), ('392','44585','{#ID}','$.id'), ('393','44585','{#LOCATION}','$.location'), ('394','44585','{#NAME}','$.name'), ('395','44585','{#SIZE}','$.sku.name'), ('396','44585','{#TYPE}','$.type'), ('397','44585','{#VERSION}','$.kind'), ('398','44643','{#NAME}','$.name'), ('399','44643','{#VMEM}','$.vsize'), ('400','44336','{#APACHE.NAME}','$.name'), ('401','44733','{#ARCH}','$.metadata.labels[''kubernetes.io/arch'']'), ('402','44733','{#CLUSTER_HOSTNAME}','$.clusterhostname'), ('403','44733','{#ENDPOINT}','$.status.agent'), ('404','44733','{#IP}','$.internalIP'), ('405','44733','{#NAME}','$.metadata.name'), ('406','44733','{#OS}','$.metadata.labels[''kubernetes.io/os'']'), ('407','44733','{#ROLES}','$.status.roles'), ('408','39942','{#NAMESPACE}','$.namespace'), ('409','39942','{#NODE}','$.hostname'), ('410','39942','{#POD}','$.name'), ('411','40025','{#NAME}','$.labels.deployment'), ('412','40025','{#NAMESPACE}','$.labels.namespace'), ('413','40032','{#NAME}','$.labels.replicaset'), ('414','40032','{#NAMESPACE}','$.labels.namespace'), ('415','40034','{#NAME}','$.labels.statefulset'), ('416','40034','{#NAMESPACE}','$.labels.namespace'), ('417','44344','{#NGINX.NAME}','$.name'), ('418','44352','{#PHP_FPM.NAME}','$.name'), ('419','44360','{#RABBITMQ.NAME}','$.name'), ('420','44818','{#GROUP}','$.resourceGroup'), ('421','44818','{#ID}','$.id'), ('422','44818','{#LOCATION}','$.location'), ('423','44818','{#NAME}','$.name'), ('424','44818','{#TYPE}','$.type'), ('425','44818','{#VERSION}','$.kind'), ('426','44819','{#GROUP}','$.resourceGroup'), ('427','44819','{#ID}','$.id'), ('428','44819','{#LOCATION}','$.location'), ('429','44819','{#NAME}','$.name'), ('430','44819','{#TOKEN}','$.token'), ('431','45034','{#CLOUD_SQL.INSTANCE.DB.TYPE}','$.db_type'), ('432','45034','{#CLOUD_SQL.INSTANCE.HIGH.AVAIL}','$.high_availability'), ('433','45034','{#CLOUD_SQL.INSTANCE.IP}','$.ip'), ('434','45034','{#CLOUD_SQL.INSTANCE.NAME}','$.name'), ('435','45034','{#CLOUD_SQL.INSTANCE.TIER}','$.tier'), ('436','45034','{#CLOUD_SQL.INSTANCE.TYPE}','$.inst_type'), ('437','45034','{#CLOUD_SQL.INSTANCE.ZONE}','$.zone'), ('438','45034','{#CLOUD_SQL.MASTER}','$.master'), ('439','45034','{#GCP.AUTH.TOKEN}','$.token'), ('440','45034','{#GCP.PROJECT.ID}','$.project_id'), ('441','45034','{#MSSQL.AUDITED}','$.audited'), ('442','45035','{#CLOUD_SQL.INSTANCE.DB.TYPE}','$.db_type'), ('443','45035','{#CLOUD_SQL.INSTANCE.HIGH.AVAIL}','$.high_availability'), ('444','45035','{#CLOUD_SQL.INSTANCE.IP}','$.ip'), ('445','45035','{#CLOUD_SQL.INSTANCE.NAME}','$.name'), ('446','45035','{#CLOUD_SQL.INSTANCE.TIER}','$.tier'), ('447','45035','{#CLOUD_SQL.INSTANCE.TYPE}','$.inst_type'), ('448','45035','{#CLOUD_SQL.INSTANCE.ZONE}','$.zone'), ('449','45035','{#CLOUD_SQL.MASTER}','$.master'), ('450','45035','{#GCP.AUTH.TOKEN}','$.token'), ('451','45035','{#GCP.PROJECT.ID}','$.project_id'), ('452','45036','{#CLOUD_SQL.INSTANCE.DB.TYPE}','$.db_type'), ('453','45036','{#CLOUD_SQL.INSTANCE.HIGH.AVAIL}','$.high_availability'), ('454','45036','{#CLOUD_SQL.INSTANCE.IP}','$.ip'), ('455','45036','{#CLOUD_SQL.INSTANCE.NAME}','$.name'), ('456','45036','{#CLOUD_SQL.INSTANCE.TIER}','$.tier'), ('457','45036','{#CLOUD_SQL.INSTANCE.TYPE}','$.inst_type'), ('458','45036','{#CLOUD_SQL.INSTANCE.ZONE}','$.zone'), ('459','45036','{#CLOUD_SQL.MASTER}','$.master'), ('460','45036','{#GCP.AUTH.TOKEN}','$.token'), ('461','45036','{#GCP.PROJECT.ID}','$.project_id'), ('462','45037','{#GCE.INSTANCE.EXT.IP}','$.ext_ip'), ('463','45037','{#GCE.INSTANCE.ID}','$.id'), ('464','45037','{#GCE.INSTANCE.IP}','$.ip'), ('465','45037','{#GCE.INSTANCE.NAME}','$.name'), ('466','45037','{#GCE.INSTANCE.TYPE}','$.i_type'), ('467','45037','{#GCE.INSTANCE.ZONE}','$.zone'), ('468','45037','{#GCE.INTEGRITY.STATE}','$.integrity'), ('469','45037','{#GCE.MACHINE.TYPE}','$.m_type'), ('470','45037','{#GCP.AUTH.TOKEN}','$.token'), ('471','45037','{#GCP.PROJECT.ID}','$.project_id'), ('472','45038','{#GCE.QUOTA.LIMIT}','$.limit'), ('473','45038','{#GCE.QUOTA.NAME}','$.metric'), ('474','45038','{#GCE.QUOTA.USAGE}','$.usage'), ('475','45039','{#DB.NAME}','$.database'), ('476','45040','{#RESOURCE.NAME}','$.resource'), ('477','45041','{#SCHEDULER.ID}','$.scheduler'), ('478','45042','{#PGSQL.DB.NAME}','$.name'), ('479','45043','{#GCE.DISK.DEV_TYPE}','$.device_type'), ('480','45043','{#GCE.DISK.NAME}','$.disk_name'), ('481','45043','{#GCE.DISK.STOR_TYPE}','$.storage_type'), ('482','45081','{#DB}','$.database'), ('483','39918','{#NAME}','$.metadata.name'), ('484','39918','{#NAMESPACE}','$.metadata.namespace'), ('485','40022','{#NAME}','$.metadata.name'), ('486','40024','{#NAME}','$.labels.daemonset'), ('487','40024','{#NAMESPACE}','$.labels.namespace'), ('488','40026','{#NAME}','$.labels.endpoint'), ('489','40026','{#NAMESPACE}','$.labels.namespace'), ('490','40027','{#NAME}','$.name'), ('491','40028','{#NAME}','$.labels.node'), ('492','40029','{#NAME}','$.labels.pod'), ('493','40029','{#NAMESPACE}','$.labels.namespace'), ('494','40031','{#NAME}','$.name'), ('495','42703','{#NAME}','$.labels.cronjob'), ('496','42703','{#NAMESPACE}','$.labels.namespace'), ('497','42704','{#NAME}','$.labels.job_name'), ('498','42704','{#NAMESPACE}','$.labels.namespace'), ('499','42705','{#NAME}','$.labels.poddisruptionbudget'), ('500','42705','{#NAMESPACE}','$.labels.namespace'), ('501','45523','{#AWS.BILLING.MONTH}','$..month.first()'), ('502','45523','{#AWS.BILLING.SERVICE.NAME}','$..Keys.first().first()'), ('503','45523','{#AWS.BILLING.UNIT}','$..Metrics.BlendedCost.Unit.first()'), ('504','45524','{#AWS.BILLING.SERVICE.NAME}','$..Keys.first().first()'), ('505','45524','{#AWS.BILLING.UNIT}','$..Metrics.BlendedCost.Unit.first()'), ('506','45525','{#AWS.BILLING.MONTH}','$..month.first()'), ('507','45525','{#AWS.BILLING.UNIT}','$..unit.first()'), ('508','45543','{#AWS.ECS.SERVICE.NAME}','$.service_name'), ('509','45575','{#AWS.ECS.SERVICE.NAME}','$.service_name'), ('510','45595','{#AWS.ECS.CLUSTER.NAME}','$.clusterName'), ('511','45595','{#AWS.ECS.CLUSTER.STATUS}','$.status'), ('512','45595','{#AWS.ECS.CLUSTER.INFRASTRUCTURE}','$.infrastructure'), ('513','45034','{#CLOUD_SQL.INSTANCE.EXT.IP}','$.ext_ip'), ('514','45035','{#CLOUD_SQL.INSTANCE.EXT.IP}','$.ext_ip'), ('515','45036','{#CLOUD_SQL.INSTANCE.EXT.IP}','$.ext_ip'), ('516','45612','{#SERVICE_NAME}','$.service_name'), ('517','45612','{#SERVICE_URL}','$.service_url'), ('518','45612','{#TOKEN}','$.token'), ('519','45613','{#ZONE_NAME}','$.zoneName'), ('520','45614','{#HOSTNAME}','$.hypervisor_hostname'), ('521','45614','{#HOST_IP}','$.host_ip'), ('522','45614','{#ID}','$.id'), ('523','45614','{#TYPE}','$.hypervisor_type'), ('524','45615','{#SERVER_ID}','$.id'), ('525','45615','{#SERVER_NAME}','$.name'), ('526','45616','{#BINARY}','$.binary'), ('527','45616','{#HOST}','$.host'), ('528','45616','{#ID}','$.id'), ('529','45617','{#TENANT_ID}','$.tenant_id'), ('530','45787','{#COOKIE}','$.cookie'), ('531','45787','{#ID}','$.id'), ('532','45787','{#INT.IP}','$.int_ip'), ('533','45787','{#IP}','$.ip'), ('534','45787','{#MODEL}','$.model'), ('535','45787','{#NAME}','$.name'), ('536','45787','{#TOKEN}','$.token'), ('537','45787','{#TYPE}','$.type'), ('538','45787','{#UUID}','$.uuid'), ('539','45788','{#FSKEY}','$.key'), ('540','45788','{#FSNAME}','$.mount'), ('541','45789','{#IFDESC}','$.description'), ('542','45789','{#IFINDEX}','$.ifindex'), ('543','45789','{#IFKEY}','$.key'), ('544','45789','{#IFNAME}','$.name'), ('545','45790','{#LOCAL}','$.local_color'), ('546','45790','{#REMOTE}','$.remote_color'), ('547','45819','{#ENABLED}','$.enabled'), ('548','45819','{#ID}','$.id'), ('549','45819','{#NAME}','$.name'), ('550','46022','{#CLIENT.CLASS}','$.NodeClass'), ('551','46022','{#CLIENT.DC}','$.Datacenter'), ('552','46022','{#CLIENT.DRAIN.STATE}','$.Drain'), ('553','46022','{#CLIENT.ID}','$.ID'), ('554','46022','{#CLIENT.IP}','$.Address'), ('555','46022','{#CLIENT.NAME}','$.Name'), ('556','46022','{#CLIENT.OS}','$.Attributes[''os.name'']'), ('557','46022','{#CLIENT.SCHEDULE.ELIGIBILITY}','$.SchedulingEligibility'), ('558','46022','{#CLIENT.VERSION}','$.Version'), ('559','46023','{#SERVER.DC}','$.Tags.dc'), ('560','46023','{#SERVER.ID}','$.Tags.id'), ('561','46023','{#SERVER.IP}','$.Addr'), ('562','46023','{#SERVER.NAME}','$.Name'), ('563','46023','{#SERVER.REGION}','$.Tags.region'), ('564','46023','{#SERVER.ROLE}','$.Tags.role'), ('565','46023','{#SERVER.VERSION}','$.Tags.build'), ('566','46024','{#JOB.NAMESPACE}','$.Namespace'), ('567','46024','{#JOB.NAME}','$.JobID'), ('568','46024','{#JOB.TASK.GROUP}','$.TaskGroup'), ('569','46024','{#JOB.TYPE}','$.JobType'), ('570','46025','{#DEV.NAME}','$.labels.disk'), ('571','46060','{#ACCESS_TOKEN}','$.access_token'), ('572','46060','{#SCOPE}','$.scope'), ('573','46061','{#ALERT_ID}','$.id'), ('574','46061','{#CATEGORY}','$.category'), ('575','46061','{#RESOURCE_NAME}','$.details.resourceName'), ('576','46061','{#SEVERITY}','$.severity'), ('577','46061','{#TYPE}','$.type'), ('578','46062','{#KIND}','$.kind'), ('579','46062','{#NAME}','$.name'), ('580','46063','{#ID}','$.id'), ('581','46063','{#NAME}','$.name'), ('582','46063','{#TENANT_NAME}','$.tenant_name'), ('583','44314','{#STATUS}','$.status'), ('584','46116','{#NEXTCLOUD.USER}','$.user_name'), ('585','44052','{#AWS.EC2.INSTANCE.REGION}','$.instanceRegion'), ('586','44053','{#AWS.RDS.REGION}','$.instanceRegion'), ('587','45595','{#AWS.ECS.CLUSTER.REGION}','$.region'), ('588','46163','{#FWACTION}','$.action'), ('589','46163','{#FWINDEX}','$.policyid'), ('590','46163','{#FWLABEL}','$.label'), ('591','46163','{#FWNAME}','$.name'), ('592','46163','{#FWTYPE}','$["ip-version-type"]'), ('593','46163','{#FWUUID}','$.uuid'), ('594','46164','{#IFALIAS}','$.alias'), ('595','46164','{#IFDESCR}','$.description'), ('596','46164','{#IFKEY}','$.id'), ('597','46164','{#IFNAME}','$.name'), ('598','46164','{#IFSTATUS}','$.link'), ('599','46164','{#IFTYPE}','$.type'), ('600','46165','{#HID}','$.health_id'), ('601','46165','{#IFNAME}','$.interface'), ('602','46165','{#MID}','$.member_id'), ('603','46165','{#NAME}','$.health_name'), ('604','46165','{#STATUS}','$.status'), ('605','46166','{#ID}','$.q_origin_key'), ('606','46166','{#NAME}','$.interface'), ('607','46166','{#STATUS}','$.status'), ('608','46166','{#ZONE}','$.zone'), ('609','46167','{#KEY}','$.key'), ('610','46167','{#NAME}','$.name'), ('611','46167','{#STATUS}','$.status'), ('612','46167','{#TYPE}','$.type'), ('616','46263','{#LICENSE.DEVICE.NAME}','$.deviceName'), ('617','46263','{#LICENSE.ID}','$.id'), ('618','46263','{#LICENSE.STATE}','$.state'), ('619','46263','{#LICENSE.TYPE}','$.licenseType'), ('620','46264','{#NETWORK.ID}','$.id'), ('621','46264','{#NETWORK.NAME}','$.name'), ('625','46266','{#NETWORK.ID}','$.networkId'), ('626','46266','{#NETWORK.NAME}','$.networkName'), ('627','42490','{#FSLABEL}','$.fslabel'), ('628','42546','{#FSLABEL}','$.fslabel'), ('629','46295','{#NAMESPACE}','$.labels.namespace'), ('630','46295','{#NAME}','$.labels.build'), ('631','46296','{#NAMESPACE}','$.labels.namespace'), ('632','46296','{#NAME}','$.labels.buildconfig'), ('633','46297','{#NAME}','$.labels.name'), ('634','46297','{#RESOURCE}','$.labels.resource'), ('635','46297','{#TYPE}','$.labels.type'), ('636','46298','{#HOST}','$.labels.host'), ('637','46298','{#NAMESPACE}','$.labels.namespace'), ('638','46298','{#NAME}','$.labels.route'), ('639','46321','{#SYSTEM_HOSTNAME}','$.hostname'), ('640','46321','{#SYSTEM_ID}','$.system_id'), ('641','46321','{#SYSTEM_TYPE}','$.system_type'), ('642','46322','{#CONTROLLER_ID}','$.id'), ('643','46322','{#CONTROLLER_LOCATION}','$.location'), ('644','46322','{#STORAGE_ID}','$.storage_id'), ('645','46322','{#SYSTEM_HOSTNAME}','$.system_hostname'), ('646','46322','{#SYSTEM_ID}','$.system_id'), ('647','46322','{#SYSTEM_TYPE}','$.system_type'), ('648','46323','{#DRIVE_ID}','$.id'), ('649','46323','{#DRIVE_LOCATION}','$.location'), ('650','46323','{#DRIVE_TYPE}','$.media_type'), ('651','46323','{#STORAGE_ID}','$.storage_id'), ('652','46323','{#SYSTEM_HOSTNAME}','$.system_hostname'), ('653','46323','{#SYSTEM_ID}','$.system_id'), ('654','46323','{#SYSTEM_TYPE}','$.system_type'), ('655','46324','{#CHASSIS_ID}','$.chassis_id'), ('656','46324','{#FAN_ID}','$.id'), ('657','46324','{#FAN_NAME}','$.name'), ('658','46324','{#FAN_STATE}','$.state'), ('659','46325','{#MANAGER_ID}','$.manager_id'), ('660','46326','{#CHASSIS_ID}','$.chassis_id'), ('661','46326','{#PSU_ID}','$.id'), ('662','46326','{#PSU_STATE}','$.state'), ('663','46327','{#CHASSIS_ID}','$.chassis_id'), ('664','46327','{#SENSOR_CONTEXT}','$.context'), ('665','46327','{#SENSOR_ID}','$.id'), ('666','46327','{#SENSOR_NAME}','$.name'), ('667','46327','{#SENSOR_STATE}','$.state'), ('668','46328','{#STORAGE_ID}','$.id'), ('669','46328','{#STORAGE_NAME}','$.name'), ('670','46328','{#SYSTEM_HOSTNAME}','$.system_hostname'), ('671','46328','{#SYSTEM_ID}','$.system_id'), ('672','46328','{#SYSTEM_TYPE}','$.system_type'), ('673','46329','{#STORAGE_ID}','$.storage_id'), ('674','46329','{#SYSTEM_HOSTNAME}','$.system_hostname'), ('675','46329','{#SYSTEM_ID}','$.system_id'), ('676','46329','{#SYSTEM_TYPE}','$.system_type'), ('677','46329','{#VOLUME_ID}','$.id'), ('678','46329','{#VOLUME_NAME}','$.name'), ('679','46373','{#AWS.S3.FILTER.ID.NAME}','$.Id'), ('680','46373','{#AWS.S3.REGION}','$.region'), ('681','46398','{#AZURE.BILLING.METER.SUBCATEGORY}','$.MeterSubcategory'), ('682','46398','{#AZURE.BILLING.METER}','$.Meter'), ('683','46398','{#AZURE.BILLING.UNIT}','$.Currency'), ('684','46398','{#AZURE.RESOURCE.GROUP}','$.ResourceGroup'), ('685','46398','{#AZURE.RESOURCE.LOCATION}','$.ResourceLocation'), ('686','46398','{#AZURE.SERVICE.NAME}','$.ServiceName'), ('687','46399','{#AZURE.BILLING.MONTH}','$.BillingMonth'), ('688','46399','{#AZURE.BILLING.UNIT}','$.Currency'), ('689','46400','{#AZURE.BILLING.MONTH}','$.BillingMonth'), ('690','46400','{#AZURE.BILLING.UNIT}','$.Currency'), ('691','46400','{#AZURE.RESOURCE.LOCATION}','$.ResourceLocation'), ('692','46401','{#AZURE.BILLING.MONTH}','$.BillingMonth'), ('693','46401','{#AZURE.BILLING.UNIT}','$.Currency'), ('694','46401','{#AZURE.RESOURCE.GROUP}','$.ResourceGroup'), ('695','46402','{#AZURE.BILLING.MONTH}','$.BillingMonth'), ('696','46402','{#AZURE.BILLING.UNIT}','$.Currency'), ('697','46402','{#AZURE.SERVICE.NAME}','$.ServiceName'), ('698','46416','{#GROUP_NAME}','$.group_name'), ('699','46417','{#DBNAME}','$.dbname'), ('700','46417','{#GROUP_NAME}','$.group_name'), ('701','46418','{#DBNAME}','$.dbname'), ('702','46419','{#DBNAME}','$.dbname'), ('703','46419','{#GROUP_NAME}','$.group_name'), ('704','46419','{#REPLICA_NAME}','$.replica_name'), ('705','46420','{#CLUSTER_NAME}','$.cluster_name'), ('706','46421','{#MEMBER_NAME}','$.member_name'), ('707','46422','{#GROUP_NAME}','$.group_name'), ('708','46422','{#REPLICA_NAME}','$.replica_name'), ('709','31123','{#DBNAME}','$.dbname'), ('710','31123','{#RECOVERY_MODEL}','$.recovery_model'), ('711','34324','{#JOBNAME}','$.job_name'), ('712','46484','{#AWS.ELB.TARGET.GROUP.ARN}','$.target_arn'), ('713','46484','{#AWS.ELB.TARGET.GROUP.NAME}','$.target_name'), ('714','46484','{#AWS.ELB.TARGET.GROUP.PROTOCOL}','$.protocol'), ('715','46484','{#AWS.ELB.TARGET.GROUP.TYPE}','$.type'), ('716','46503','{#AWS.ELB.ARN}','$.arn'), ('717','46503','{#AWS.ELB.DNS.NAME}','$.dns_name'), ('718','46503','{#AWS.ELB.NAME}','$.name'), ('719','46503','{#AWS.ELB.REGION}','$.region'), ('720','46503','{#AWS.ELB.STATE}','$.state'), ('721','46503','{#AWS.ELB.TYPE}','$.type'), ('722','46594','{#GROUP_NAME}','$.group_name'), ('723','46595','{#DBNAME}','$.dbname'), ('724','46595','{#RECOVERY_MODEL}','$.recovery_model'), ('725','46596','{#JOBNAME}','$.job_name'), ('726','46597','{#DBNAME}','$.dbname'), ('727','46597','{#GROUP_NAME}','$.group_name'), ('728','46598','{#DBNAME}','$.dbname'), ('729','46599','{#DBNAME}','$.dbname'), ('730','46599','{#GROUP_NAME}','$.group_name'), ('731','46599','{#REPLICA_NAME}','$.replica_name'), ('732','46600','{#CLUSTER_NAME}','$.cluster_name'), ('733','46601','{#MEMBER_NAME}','$.member_name'), ('734','46602','{#GROUP_NAME}','$.group_name'), ('735','46602','{#REPLICA_NAME}','$.replica_name'), ('736','46723','{#CLUSTER.ID}','$.cluster_id'), ('737','46723','{#CLUSTER.NAME}','$.cluster_name'), ('738','46724','{#KEYSPACE.NAME}','$.keyspace_name'), ('739','46725','{#NODE.NAME}','$.node_name'), ('740','46933','{#ID}','$.id'), ('741','46933','{#NAME}','$.name'), ('742','46933','{#STATE}','$.state'), ('743','46934','{#ID}','$.id'), ('744','46934','{#NAME}','$.name'), ('745','46934','{#STATE}','$.state'), ('746','46935','{#DOMAIN}','$.domain'), ('747','46935','{#ID}','$.id'), ('748','46935','{#NAME}','$.name'), ('749','46935','{#STATE}','$.state'), ('750','46936','{#ID}','$.id'), ('751','46936','{#NAME}','$.name'), ('752','46936','{#STATE}','$.state'), ('753','46937','{#NAME}','$.name'), ('754','46938','{#ID}','$.id'), ('755','46938','{#NAME}','$.name'), ('756','46938','{#STATE}','$.state'), ('757','46939','{#ID}','$.id'), ('758','46939','{#NAME}','$.name'), ('759','46939','{#STATE}','$.state'), ('760','46940','{#ID}','$.id'), ('761','46940','{#NAME}','$.name'), ('762','46940','{#STATE}','$.state'), ('763','30520','{#DATABASE}','$.Database'), ('764','30521','{#MASTER_HOST}','$.Master_Host'), ('765','31253','{#DEST_NAME}','$.DEST_NAME'), ('766','31254','{#DGNAME}','$.DGNAME'), ('767','31255','{#DBNAME}','$.DBNAME'), ('768','31255','{#TYPE}','$.TYPE'), ('769','31256','{#DBNAME}','$.DBNAME'), ('770','31257','{#CONTENTS}','$.CONTENTS'), ('771','31257','{#CON_NAME}','$.CON_NAME'), ('772','31257','{#TABLESPACE}','$.TABLESPACE'), ('773','47106','{#AWS.ELB.TARGET.GROUP.ARN}','$.target_arn'), ('774','47106','{#AWS.ELB.TARGET.GROUP.NAME}','$.target_name'), ('775','47106','{#AWS.ELB.TARGET.GROUP.PROTOCOL}','$.protocol'), ('776','47106','{#AWS.ELB.TARGET.GROUP.TYPE}','$.type'), ('777','42414','{#FSDEVICE}','$.dskDevice'), ('778','42414','{#FSNAME}','$.dskPath'), ('779','42414','{#SNMPINDEX}','$.index'), ('780','42581','{#ALLOC_UNITS}','$.hrStorageAllocationUnits'), ('781','42581','{#FSNAME}','$.hrStorageDescr'), ('782','42581','{#FSTYPE}','$.hrStorageType'), ('783','42581','{#SNMPINDEX}','$.index'), ('784','42582','{#ALLOC_UNITS}','$.hrStorageAllocationUnits'), ('785','42582','{#MEMNAME}','$.hrStorageDescr'), ('786','42582','{#MEMTYPE}','$.hrStorageType'), ('787','42582','{#SNMPINDEX}','$.index'), ('788','47191','{#LICENSE.PROPERTIES}','$.properties'), ('789','47191','{#LICENSE.TYPE}','$.license'), ('790','44057','{#PROXY.GROUP}','$.proxy_group'), ('791','44058','{#PROXY.GROUP}','$.proxy_group'), ('792','44082','{#PROXY.GROUP}','$.proxy_group'), ('793','47278','{#GROUP}','$.resourceGroup'), ('794','47278','{#ID}','$.id'), ('795','47278','{#LOCATION}','$.location'), ('796','47278','{#NAME}','$.name'), ('797','47278','{#ORCHESTRATION}','$.properties.orchestrationMode'), ('798','47278','{#OS}','$.properties.virtualMachineProfile.storageProfile.osDisk.osType'), ('799','47278','{#TYPE}','$.type'), ('800','43768','{#SCALESET}','$.properties.virtualMachineScaleSet'), ('801','46933','{#COMPARTMENT}','$.compartment'), ('802','46934','{#COMPARTMENT}','$.compartment'), ('803','46935','{#COMPARTMENT}','$.compartment'), ('804','46936','{#COMPARTMENT}','$.compartment'), ('805','46937','{#COMPARTMENT}','$.compartment'), ('806','46938','{#COMPARTMENT}','$.compartment'), ('807','47300','{#AWS.LAMBDA.ARN}','$.arn'), ('808','47300','{#AWS.LAMBDA.NAME}','$.name'), ('809','47300','{#AWS.LAMBDA.REGION}','$.region'), ('810','47300','{#AWS.LAMBDA.RUNTIME}','$.runtime'), ('811','47300','{#AWS.LAMBDA.VERSION}','$.version'), ('812','47324','{#BRANCH_NAME}','$.name'), ('813','47326','{#RUNNER_ID}','$.id'), ('814','47326','{#RUNNER_NAME}','$.name'), ('815','47326','{#RUNNER_OS}','$.os'), ('816','47327','{#WORKFLOW_ID}','$.id'), ('817','47327','{#WORKFLOW_NAME}','$.name'), ('818','47327','{#WORKFLOW_STATE}','$.state'), ('819','47513','{#NAME}','$.service'), ('820','47533','{#VMWARE.ALARMS.DESC}','$.description'), ('821','47533','{#VMWARE.ALARMS.KEY}','$.key'), ('822','47533','{#VMWARE.ALARMS.NAME}','$.name'), ('823','47533','{#VMWARE.ALARMS.STATUS}','$.overall_status'), ('824','47547','{#VMWARE.ALARMS.DESC}','$.description'), ('825','47547','{#VMWARE.ALARMS.KEY}','$.key'), ('826','47547','{#VMWARE.ALARMS.NAME}','$.name'), ('827','47547','{#VMWARE.ALARMS.STATUS}','$.overall_status'), ('828','47553','{#PROXY.GROUP.NAME}','$.name'), ('829','47554','{#PROXY.GROUP.NAME}','$.name'), ('830','47662','{#APACHE.NAME}','$.name'), ('831','47702','{#NGINX.NAME}','$.name'), ('832','47978','{#PHP_FPM.NAME}','$.name'), ('833','48035','{#DATABASE}','$.Database'), ('834','48037','{#MASTER_HOST}','$.Master_Host'), ('835','48383','{#GROUP}','$.resourceGroup'), ('836','48383','{#ID}','$.id'), ('837','48383','{#LOCATION}','$.location'), ('838','48383','{#NAME}','$.name'), ('839','48383','{#TYPE}','$.type'), ('840','46601','{#CLUSTER_NAME}','$.cluster_name'), ('841','46421','{#CLUSTER_NAME}','$.cluster_name'), ('842','48475','{#CNTLR_NAME}','$.name'), ('843','48475','{#ID}','$.id'), ('844','48475','{#SLOT}','$.slot'), ('845','48476','{#BATTERY_NAME}','$.name'), ('846','48476','{#ID}','$.id'), ('847','48476','{#ODATA}','$.path'), ('848','48477','{#ID}','$.id'), ('849','48477','{#SENSOR_NAME}','$.name'), ('850','48477','{#TYPE}','$.type'), ('851','48478','{#IFNAME}','$.id'), ('852','48478','{#ODATA}','$.path'), ('853','48479','{#DISK_NAME}','$.name'), ('854','48479','{#ODATA}','$.path'), ('855','48480','{#SENSOR_NAME}','$.name'), ('856','48481','{#ID}','$.id'), ('857','48481','{#SENSOR_NAME}','$.name'), ('858','48481','{#TYPE}','$.type'), ('859','48482','{#DISK_NAME}','$.name'), ('860','48482','{#ODATA}','$.path'), ('861','48591','{#CNTLR_NAME}','$.name'), ('862','48591','{#ID}','$.id'), ('863','48591','{#SLOT}','$.slot'), ('864','48592','{#BATTERY_NAME}','$.name'), ('865','48592','{#ID}','$.id'), ('866','48592','{#ODATA}','$.path'), ('867','48593','{#ID}','$.id'), ('868','48593','{#SENSOR_NAME}','$.name'), ('869','48593','{#TYPE}','$.type'), ('870','48594','{#IFNAME}','$.id'), ('871','48594','{#ODATA}','$.path'), ('872','48595','{#DISK_NAME}','$.name'), ('873','48595','{#ODATA}','$.path'), ('874','48596','{#SENSOR_NAME}','$.name'), ('875','48597','{#ID}','$.id'), ('876','48597','{#SENSOR_NAME}','$.name'), ('877','48597','{#TYPE}','$.type'), ('878','48598','{#DISK_NAME}','$.name'), ('879','48598','{#ODATA}','$.path'), ('880','48674','{#CNTLR_NAME}','$.name'), ('881','48674','{#ID}','$.id'), ('882','48674','{#SLOT}','$.slot'), ('883','48675','{#BATTERY_NAME}','$.name'), ('884','48675','{#ID}','$.id'), ('885','48675','{#ODATA}','$.path'), ('886','48676','{#ID}','$.id'), ('887','48676','{#SENSOR_NAME}','$.name'), ('888','48676','{#TYPE}','$.type'), ('889','48677','{#IFNAME}','$.id'), ('890','48677','{#ODATA}','$.path'), ('891','48678','{#DISK_NAME}','$.name'), ('892','48678','{#ODATA}','$.path'), ('893','48679','{#SENSOR_NAME}','$.name'), ('894','48680','{#ID}','$.id'), ('895','48680','{#SENSOR_NAME}','$.name'), ('896','48680','{#TYPE}','$.type'), ('897','48681','{#DISK_NAME}','$.name'), ('898','48681','{#ODATA}','$.path'), ('899','48763','{#CNTLR_NAME}','$.name'), ('900','48763','{#ID}','$.id'), ('901','48763','{#SLOT}','$.slot'), ('902','48764','{#BATTERY_NAME}','$.name'), ('903','48764','{#ID}','$.id'), ('904','48764','{#ODATA}','$.path'), ('905','48765','{#ID}','$.id'), ('906','48765','{#SENSOR_NAME}','$.name'), ('907','48765','{#TYPE}','$.type'), ('908','48766','{#IFNAME}','$.id'), ('909','48766','{#ODATA}','$.path'), ('910','48767','{#DISK_NAME}','$.name'), ('911','48767','{#ODATA}','$.path'), ('912','48768','{#SENSOR_NAME}','$.name'), ('913','48769','{#ID}','$.id'), ('914','48769','{#SENSOR_NAME}','$.name'), ('915','48769','{#TYPE}','$.type'), ('916','48770','{#DISK_NAME}','$.name'), ('917','48770','{#ODATA}','$.path'), ('918','48879','{#CNTLR_NAME}','$.name'), ('919','48879','{#ID}','$.id'), ('920','48879','{#SLOT}','$.slot'), ('921','48880','{#BATTERY_NAME}','$.name'), ('922','48880','{#ID}','$.id'), ('923','48880','{#ODATA}','$.path'), ('924','48881','{#ID}','$.id'), ('925','48881','{#SENSOR_NAME}','$.name'), ('926','48881','{#TYPE}','$.type'), ('927','48882','{#IFNAME}','$.id'), ('928','48882','{#ODATA}','$.path'), ('929','48883','{#DISK_NAME}','$.name'), ('930','48883','{#ODATA}','$.path'), ('931','48884','{#SENSOR_NAME}','$.name'), ('932','48885','{#ID}','$.id'), ('933','48885','{#SENSOR_NAME}','$.name'), ('934','48885','{#TYPE}','$.type'), ('935','48886','{#DISK_NAME}','$.name'), ('936','48886','{#ODATA}','$.path'), ('937','48962','{#CNTLR_NAME}','$.name'), ('938','48962','{#ID}','$.id'), ('939','48962','{#SLOT}','$.slot'), ('940','48963','{#BATTERY_NAME}','$.name'), ('941','48963','{#ID}','$.id'), ('942','48963','{#ODATA}','$.path'), ('943','48964','{#ID}','$.id'), ('944','48964','{#SENSOR_NAME}','$.name'), ('945','48964','{#TYPE}','$.type'), ('946','48965','{#IFNAME}','$.id'), ('947','48965','{#ODATA}','$.path'), ('948','48966','{#DISK_NAME}','$.name'), ('949','48966','{#ODATA}','$.path'), ('950','48967','{#SENSOR_NAME}','$.name'), ('951','48968','{#ID}','$.id'), ('952','48968','{#SENSOR_NAME}','$.name'), ('953','48968','{#TYPE}','$.type'), ('954','48969','{#DISK_NAME}','$.name'), ('955','48969','{#ODATA}','$.path'), ('956','49349','{#NODE.ID}','$.id'), ('957','49349','{#NODE.NAME}','$.name'), ('958','49350','{#PROXY.GROUP}','$.proxy_group'), ('959','49350','{#PROXY.NAME}','$.name'), ('960','49351','{#NODE.ID}','$.id'), ('961','49351','{#NODE.NAME}','$.name'), ('962','49352','{#PROXY.GROUP}','$.proxy_group'), ('963','49352','{#PROXY.NAME}','$.name'), ('964','44314','{#ORGANIZATION_NAME}','$.organizationName'), ('965','49719','{#NAME}','$.name'), ('966','49719','{#TYPE}','$.status'), ('967','49720','{#INDEX}','$.hardware.index'), ('968','49720','{#NAME}','$.name'), ('969','49720','{#TYPE}','$.type'), ('970','49721','{#INDEX}','$.hardware.index'), ('971','49721','{#NAME}','$.name'), ('972','49721','{#PROTOCOL}','$.protocol'), ('973','49721','{#TYPE}','$.type'), ('974','49722','{#CTRL}','$.parent'), ('975','49722','{#INDEX}','$.index'), ('976','49722','{#NAME}','$.name'), ('977','49723','{#GROUP}','$.hgroup'), ('978','49723','{#NAME}','$.name'), ('979','49724','{#IFINDEX}','$.hardware.index'), ('980','49724','{#IFNAME}','$.name'), ('981','49725','{#NAME}','$.name'), ('982','49726','{#INDEX}','$.index'), ('983','49726','{#NAME}','$.name'), ('984','49726','{#VOLT.VALUE}','$.voltage'), ('985','49727','{#CTRL}','$.parent'), ('986','49727','{#INDEX}','$.index'), ('987','49727','{#NAME}','$.name'), ('988','49727','{#TEMP.VALUE}','$.temperature'), ('989','49728','{#NAME}','$.name'), ('990','49728','{#SN}','$.serial'), ('991','49729','{#NAME}','$.name'), ('992','49729','{#TYPE}','$.status'), ('993','49730','{#INDEX}','$.hardware.index'), ('994','49730','{#NAME}','$.name'), ('995','49730','{#TYPE}','$.type'), ('996','49731','{#INDEX}','$.hardware.index'), ('997','49731','{#NAME}','$.name'), ('998','49731','{#PROTOCOL}','$.protocol'), ('999','49731','{#TYPE}','$.type'), ('1000','49732','{#CTRL}','$.parent'), ('1001','49732','{#INDEX}','$.index'), ('1002','49732','{#NAME}','$.name'), ('1003','49732','{#TYPE}','$.type'), ('1004','49733','{#GROUP}','$.host_group.name'), ('1005','49733','{#NAME}','$.name'), ('1006','49734','{#IFNAME}','$.name'), ('1007','49734','{#IFSTATUS}','$.enabled'), ('1008','49734','{#IFTYPE}','$.interface_type'), ('1009','49735','{#NAME}','$.name'), ('1010','49736','{#INDEX}','$.index'), ('1011','49736','{#NAME}','$.name'), ('1012','49736','{#TYPE}','$.type'), ('1013','49736','{#VOLT.VALUE}','$.voltage'), ('1014','49737','{#CTRL}','$.parent'), ('1015','49737','{#INDEX}','$.index'), ('1016','49737','{#NAME}','$.name'), ('1017','49737','{#TEMP.VALUE}','$.temperature'), ('1018','49737','{#TYPE}','$.type'), ('1019','49738','{#NAME}','$.name'), ('1020','49738','{#SN}','$.serial'), ('1021','49879','{#JOB.FRIENDLY.NAME}','$.entity_friendly_name'), ('1022','49879','{#JOB.NAME}','$.name'), ('1023','49879','{#JOB.OPERATION}','$.operation'), ('1024','49879','{#JOB.STATUS}','$.status'), ('1025','49880','{#GROUP}','$.resourceGroup'), ('1026','49880','{#ID}','$.id'), ('1027','49880','{#LOCATION}','$.location'), ('1028','49880','{#NAME}','$.name'), ('1029','49880','{#TYPE}','$.type'), ('1030','31256','{#CON_ID}','$.CON_ID'), ('1031','31257','{#CON_ID}','$.CON_ID'), ('1032','50036','{#AWS.BACKUP_JOB.ID}','$.job_id'), ('1033','50036','{#AWS.BACKUP_JOB.RESOURCE_NAME}','$.resource_name'), ('1034','50036','{#AWS.BACKUP_JOB.RESOURCE_TYPE}','$.resource_type'), ('1035','50036','{#AWS.BACKUP_JOB.STATE}','$.job_state'), ('1036','50036','{#AWS.BACKUP_JOB.TYPE}','$.job_type'), ('1037','50037','{#AWS.BACKUP_VAULT.NAME}','$.BackupVaultName'), ('1038','50037','{#AWS.BACKUP_VAULT.REGION}','$.region'), ('1039','50167','{#ADMIN.ID}','$.id'), ('1040','50167','{#ADMIN.NAME}','$.name'), ('1041','50167','{#ADMIN.ORG.ACCESS}','$.orgAccess'), ('1042','50168','{#SAML.ID}','$.id'), ('1043','50168','{#SAML.ORG.ACCESS}','$.orgAccess'), ('1044','50168','{#SAML.ROLE}','$.role'); INSERT INTO host_tag (hosttagid,hostid,tag,value,automatic) VALUES ('1','10504','class','software','0'), ('3','10505','class','software','0'), ('5','10506','class','software','0'), ('7','10507','class','software','0'), ('13','10509','class','software','0'), ('15','10510','class','software','0'), ('17','10511','addr','{#IP}','0'), ('18','10512','addr','{#IP}','0'), ('19','10513','addr','{#IP}','0'), ('20','10514','addr','{#IP}','0'), ('21','10358','class','application','0'), ('22','10358','target','apache-activemq','0'), ('23','10264','class','software','0'), ('24','10264','target','apache','0'), ('25','10265','class','software','0'), ('26','10265','target','apache','0'), ('27','10359','class','service','0'), ('28','10359','target','aranet','0'), ('29','10353','class','application','0'), ('30','10353','target','ceph','0'), ('31','10413','class','software','0'), ('32','10413','target','certificate','0'), ('33','10414','class','service','0'), ('35','10318','class','software','0'), ('36','10318','target','docker','0'), ('37','10322','class','software','0'), ('38','10322','target','elasticsearch','0'), ('39','10324','class','application','0'), ('40','10324','target','etcd','0'), ('41','10360','class','application','0'), ('42','10360','target','ms-exchange','0'), ('43','10361','class','application','0'), ('44','10361','target','ms-exchange','0'), ('45','10169','class','software','0'), ('46','10169','target','java','0'), ('47','10362','class','application','0'), ('48','10362','target','gitlab','0'), ('49','10363','class','application','0'), ('50','10363','target','hadoop','0'), ('51','10308','class','software','0'), ('52','10308','target','haproxy','0'), ('53','10309','class','software','0'), ('54','10309','target','haproxy','0'), ('55','10325','class','application','0'), ('56','10325','target','iis','0'), ('57','10326','class','application','0'), ('58','10326','target','iis','0'), ('59','10379','class','application','0'), ('60','10379','target','jenkins','0'), ('61','10364','class','application','0'), ('62','10364','target','apache-kafka','0'), ('65','10319','class','application','0'), ('66','10319','target','memcached','0'), ('67','10266','class','software','0'), ('68','10266','target','nginx','0'), ('69','10267','class','software','0'), ('70','10267','target','nginx','0'), ('71','10415','class','software','0'), ('72','10415','target','nginx','0'), ('73','10515','class','software','0'), ('74','10515','target','pfsense','0'), ('75','10330','class','application','0'), ('76','10330','target','php-fpm','0'), ('77','10331','class','application','0'), ('78','10331','target','php-fpm','0'), ('79','10300','class','software','0'), ('80','10300','target','rabbitmq','0'), ('81','10301','class','software','0'), ('82','10301','target','rabbitmq','0'), ('83','10302','class','software','0'), ('84','10302','target','rabbitmq','0'), ('85','10303','class','software','0'), ('86','10303','target','rabbitmq','0'), ('87','10382','class','software','0'), ('88','10382','target','microsoft','0'), ('89','10382','target','sharepoint','0'), ('90','10355','class','application','0'), ('91','10355','target','squid','0'), ('92','10416','class','software','0'), ('93','10416','target','systemd','0'), ('94','10260','class','software','0'), ('95','10260','target','tomcat','0'), ('96','10447','class','service','0'), ('97','10447','target','travis','0'), ('98','10365','class','software','0'), ('99','10365','target','vault','0'), ('100','10173','class','software','0'), ('101','10173','target','vmware','0'), ('102','10174','class','software','0'), ('103','10174','target','vmware','0'), ('104','10174','target','vmware-guest','0'), ('105','10175','class','software','0'), ('106','10175','target','vmware','0'), ('107','10175','target','vmware-hypervisor','0'), ('108','10366','class','software','0'), ('109','10366','target','vmware','0'), ('110','10366','target','vmware-fqdn','0'), ('111','10410','class','application','0'), ('112','10410','target','wildfly-domain','0'), ('113','10411','class','application','0'), ('114','10411','target','wildfly-server','0'), ('115','10048','class','software','0'), ('116','10048','target','proxy','0'), ('117','10048','target','zabbix','0'), ('121','10047','class','software','0'), ('122','10047','target','server','0'), ('123','10047','target','zabbix','0'), ('124','10261','class','software','0'), ('125','10261','target','server','0'), ('126','10261','target','zabbix','0'), ('127','10369','class','application','0'), ('129','10380','class','device','0'), ('130','10380','target','cctv','0'), ('131','10380','target','hikvision','0'), ('132','10370','class','database','0'), ('133','10370','target','apache-cassandra','0'), ('134','10323','class','database','0'), ('135','10323','target','clickhouse','0'), ('136','10417','class','software','0'), ('137','10417','target','gridgain','0'), ('138','10381','class','database','0'), ('139','10381','target','ignite','0'), ('140','10448','class','database','0'), ('141','10448','target','influxdb','0'), ('142','10386','class','database','0'), ('143','10386','target','mongodb-node','0'), ('144','10387','class','database','0'), ('145','10387','target','mongodb-cluster','0'), ('146','10327','class','database','0'), ('147','10327','target','mssql','0'), ('148','10316','class','database','0'), ('149','10316','target','mysql','0'), ('150','10320','class','database','0'), ('151','10320','target','mysql','0'), ('152','10317','class','database','0'), ('153','10317','target','mysql','0'), ('154','10335','class','database','0'), ('155','10335','target','oracle','0'), ('156','10328','class','database','0'), ('157','10328','target','oracle','0'), ('158','10357','class','database','0'), ('159','10357','target','postgresql','0'), ('160','10329','class','database','0'), ('161','10329','target','postgresql','0'), ('162','10310','class','database','0'), ('163','10310','target','redis','0'), ('164','10397','class','database','0'), ('165','10397','target','pd','0'), ('166','10397','target','tidb','0'), ('167','10398','class','database','0'), ('168','10398','target','tidb','0'), ('169','10399','class','database','0'), ('170','10399','target','tidb','0'), ('171','10399','target','tikv','0'), ('176','10207','class','network','0'), ('177','10207','target','alcatel','0'), ('178','10207','target','alcatel-timetra','0'), ('179','10254','class','network','0'), ('180','10254','target','arista','0'), ('181','10208','class','network','0'), ('182','10208','target','brocade','0'), ('183','10208','target','brocade-fc','0'), ('184','10210','class','network','0'), ('185','10210','target','brocade','0'), ('186','10210','target','brocade-foundry','0'), ('187','10211','class','network','0'), ('188','10211','target','brocade','0'), ('189','10211','target','brocade-foundry','0'), ('190','10418','class','application','0'), ('191','10418','target','cisco','0'), ('192','10418','target','cisco-asav','0'), ('193','10390','class','network','0'), ('194','10390','target','cisco','0'), ('195','10390','target','cisco-catalyst','0'), ('196','10390','target','cisco-catalyst-3750v2-24fs','0'), ('197','10391','class','network','0'), ('198','10391','target','cisco','0'), ('199','10391','target','cisco-catalyst','0'), ('200','10391','target','cisco-catalyst-3750v2-24ps','0'), ('201','10392','class','network','0'), ('202','10392','target','cisco','0'), ('203','10392','target','cisco-catalyst','0'), ('204','10392','target','cisco-catalyst-3750v2-24ts','0'), ('205','10393','class','network','0'), ('206','10393','target','cisco','0'), ('207','10393','target','cisco-catalyst','0'), ('208','10393','target','cisco-catalyst-3750v2-48ps','0'), ('209','10394','class','network','0'), ('210','10394','target','cisco','0'), ('211','10394','target','cisco-catalyst','0'), ('212','10394','target','cisco-catalyst-3750v2-48ts','0'), ('213','10220','class','network','0'), ('214','10220','target','cisco','0'), ('215','10220','target','cisco-prior','0'), ('216','10220','target','cisco-prior-12.0-3-t','0'), ('217','10218','class','network','0'), ('218','10218','target','cisco','0'), ('219','10218','target','cisco-ios','0'), ('220','10253','class','network','0'), ('221','10253','target','cisco','0'), ('222','10253','target','cisco-ios','0'), ('223','10253','target','cisco-ios-12.0-12.2','0'), ('224','10221','class','network','0'), ('225','10221','target','dell','0'), ('226','10221','target','force-s-series','0'), ('227','10222','class','network','0'), ('228','10222','target','des7200','0'), ('229','10222','target','dlink','0'), ('230','10223','class','network','0'), ('231','10223','target','des-dgs','0'), ('232','10223','target','dlink','0'), ('233','10224','class','network','0'), ('234','10224','target','exos','0'), ('235','10224','target','extreme','0'), ('236','10419','class','network','0'), ('237','10419','target','big-ip','0'), ('238','10419','target','f5','0'), ('239','10226','class','network','0'), ('240','10226','target','generic','0'), ('241','10227','class','network','0'), ('242','10227','target','hp','0'), ('243','10227','target','hp-comware','0'), ('244','10250','class','network','0'), ('245','10250','target','hp','0'), ('246','10250','target','hp-enterprise','0'), ('247','10229','class','network','0'), ('248','10229','target','huawei','0'), ('249','10229','target','huawei-vrp','0'), ('250','10230','class','network','0'), ('251','10230','target','intel','0'), ('252','10230','target','qlogic-infiniband','0'), ('253','10231','class','network','0'), ('254','10231','target','juniper','0'), ('255','10251','class','network','0'), ('256','10251','target','mellanox','0'), ('257','10449','class','network','0'), ('258','10449','target','ccr1009-7g-1c-1spluspc','0'), ('259','10449','target','mikrotik','0'), ('260','10450','class','network','0'), ('261','10450','target','ccr1009-7g-1c-1splus','0'), ('262','10450','target','mikrotik','0'), ('263','10451','class','network','0'), ('264','10451','target','ccr1009-7g-1c-pc','0'), ('265','10451','target','mikrotik','0'), ('266','10452','class','network','0'), ('267','10452','target','ccr1016-12g','0'), ('268','10452','target','mikrotik','0'), ('269','10453','class','network','0'), ('270','10453','target','ccr1016-12s-1splus','0'), ('271','10453','target','mikrotik','0'), ('272','10454','class','network','0'), ('273','10454','target','ccr1036-12g-4s-em','0'), ('274','10454','target','mikrotik','0'), ('275','10455','class','network','0'), ('276','10455','target','ccr1036-12g-4s','0'), ('277','10455','target','mikrotik','0'), ('278','10456','class','network','0'), ('279','10456','target','ccr1036-8g-2splusem','0'), ('280','10456','target','mikrotik','0'), ('281','10457','class','network','0'), ('282','10457','target','ccr1036-8g-2splus','0'), ('283','10457','target','mikrotik','0'), ('284','10458','class','network','0'), ('285','10458','target','ccr1072-1g-8splus','0'), ('286','10458','target','mikrotik','0'), ('287','10459','class','network','0'), ('288','10459','target','ccr2004-16g-2splus','0'), ('289','10459','target','mikrotik','0'), ('290','10460','class','network','0'), ('291','10460','target','ccr2004-1g-12splus2xs','0'), ('292','10460','target','mikrotik','0'), ('293','10461','class','network','0'), ('294','10461','target','crs106-1c-5s','0'), ('295','10461','target','mikrotik','0'), ('296','10462','class','network','0'), ('297','10462','target','crs109-8g-1s-2hnd-in','0'), ('298','10462','target','mikrotik','0'), ('299','10463','class','network','0'), ('300','10463','target','crs112-8g-4s-in','0'), ('301','10463','target','mikrotik','0'), ('302','10464','class','network','0'), ('303','10464','target','crs112-8p-4s-in','0'), ('304','10464','target','mikrotik','0'), ('305','10465','class','network','0'), ('306','10465','target','crs125-24g-1s-2hnd-in','0'), ('307','10465','target','mikrotik','0'), ('308','10466','class','network','0'), ('309','10466','target','crs212-1g-10s-1splusin','0'), ('310','10466','target','mikrotik','0'), ('311','10467','class','network','0'), ('312','10467','target','crs305-1g-4splusin','0'), ('313','10467','target','mikrotik','0'), ('314','10468','class','network','0'), ('315','10468','target','crs309-1g-8splusin','0'), ('316','10468','target','mikrotik','0'), ('317','10469','class','network','0'), ('318','10469','target','crs312-4cplus8xg-rm','0'), ('319','10469','target','mikrotik','0'), ('320','10470','class','network','0'), ('321','10470','target','crs317-1g-16splusrm','0'), ('322','10470','target','mikrotik','0'), ('323','10471','class','network','0'), ('324','10471','target','crs326-24g-2splusin','0'), ('325','10471','target','mikrotik','0'), ('326','10472','class','network','0'), ('327','10472','target','crs326-24g-2splusrm','0'), ('328','10472','target','mikrotik','0'), ('329','10473','class','network','0'), ('330','10473','target','crs326-24splus2qplusrm','0'), ('331','10473','target','mikrotik','0'), ('332','10474','class','network','0'), ('333','10474','target','crs328-24p-4splusrm','0'), ('334','10474','target','mikrotik','0'), ('335','10475','class','network','0'), ('336','10475','target','crs328-4c-20s-4splusrm','0'), ('337','10475','target','mikrotik','0'), ('338','10476','class','network','0'), ('339','10476','target','crs354-48g-4splus2qplusrm','0'), ('340','10476','target','mikrotik','0'), ('341','10477','class','network','0'), ('342','10477','target','crs354-48p-4splus2qplusrm','0'), ('343','10477','target','mikrotik','0'), ('344','10478','class','network','0'), ('345','10478','target','css326-24g-2splusrm','0'), ('346','10478','target','mikrotik','0'), ('347','10479','class','network','0'), ('348','10479','target','css610-8g-2splusin','0'), ('349','10479','target','mikrotik','0'), ('350','10480','class','network','0'), ('351','10480','target','fiberbox','0'), ('352','10480','target','mikrotik','0'), ('353','10481','class','network','0'), ('354','10481','target','mikrotik','0'), ('355','10481','target','powerbox-pro','0'), ('356','10482','class','network','0'), ('357','10482','target','mikrotik','0'), ('358','10482','target','powerbox','0'), ('359','10483','class','network','0'), ('360','10483','target','mikrotik','0'), ('361','10483','target','rb1100ahx4-dude-edition','0'), ('362','10484','class','network','0'), ('363','10484','target','mikrotik','0'), ('364','10484','target','rb1100ahx4','0'), ('365','10485','class','network','0'), ('366','10485','target','mikrotik','0'), ('367','10485','target','rb2011uias-in','0'), ('368','10486','class','network','0'), ('369','10486','target','mikrotik','0'), ('370','10486','target','rb2011uias-rm','0'), ('371','10487','class','network','0'), ('372','10487','target','mikrotik','0'), ('373','10487','target','rb2011il-in','0'), ('374','10488','class','network','0'), ('375','10488','target','mikrotik','0'), ('376','10488','target','rb2011il-rm','0'), ('377','10489','class','network','0'), ('378','10489','target','mikrotik','0'), ('379','10489','target','rb2011ils-in','0'), ('380','10490','class','network','0'), ('381','10490','target','mikrotik','0'), ('382','10490','target','rb260gsp','0'), ('383','10491','class','network','0'), ('384','10491','target','mikrotik','0'), ('385','10491','target','rb260gs','0'), ('386','10492','class','network','0'), ('387','10492','target','mikrotik','0'), ('388','10492','target','rb3011uias-rm','0'), ('389','10493','class','network','0'), ('390','10493','target','mikrotik','0'), ('391','10493','target','rb4011igsplusrm','0'), ('392','10494','class','network','0'), ('393','10494','target','mikrotik','0'), ('394','10494','target','rb5009ugplussplusin','0'), ('395','10495','class','network','0'), ('396','10495','target','hex-poe-lite','0'), ('397','10495','target','mikrotik','0'), ('398','10496','class','network','0'), ('399','10496','target','hex-poe','0'), ('400','10496','target','mikrotik','0'), ('401','10497','class','network','0'), ('402','10497','target','hex-s','0'), ('403','10497','target','mikrotik','0'), ('404','10498','class','network','0'), ('405','10498','target','hex-lite','0'), ('406','10498','target','mikrotik','0'), ('407','10499','class','network','0'), ('408','10499','target','hex','0'), ('409','10499','target','mikrotik','0'), ('410','10500','class','network','0'), ('411','10500','target','mikrotik','0'), ('412','10500','target','netpower-15fr','0'), ('413','10501','class','network','0'), ('414','10501','target','mikrotik','0'), ('415','10501','target','netpower-16p','0'), ('416','10502','class','network','0'), ('417','10502','target','mikrotik','0'), ('418','10502','target','netpower-lite-7r','0'), ('419','10233','class','network','0'), ('420','10233','target','mikrotik','0'), ('421','10371','class','power','0'), ('422','10371','target','morningstar','0'), ('423','10372','class','power','0'), ('424','10372','target','morningstar','0'), ('425','10373','class','power','0'), ('426','10373','target','morningstar','0'), ('427','10374','class','power','0'), ('428','10374','target','morningstar','0'), ('429','10375','class','power','0'), ('430','10375','target','morningstar','0'), ('431','10376','class','power','0'), ('432','10376','target','morningstar','0'), ('433','10377','class','power','0'), ('434','10377','target','morningstar','0'), ('435','10234','class','network','0'), ('436','10234','target','fastpath','0'), ('437','10234','target','netgear','0'), ('438','10235','class','network','0'), ('439','10235','target','qsw','0'), ('440','10235','target','qtech','0'), ('441','10236','class','network','0'), ('442','10236','target','tp-link','0'), ('443','10237','class','network','0'), ('444','10237','target','airos','0'), ('445','10237','target','ubiquiti','0'), ('446','10503','class','network','0'), ('447','10503','target','vmware-sd-wan-velocloud','0'), ('448','10420','class','network','0'), ('449','10420','target','aam1212-51','0'), ('450','10420','target','dslam','0'), ('451','10420','target','zyxel','0'), ('452','10421','class','network','0'), ('453','10421','target','es3500-8pd','0'), ('454','10421','target','switch','0'), ('455','10421','target','zyxel','0'), ('456','10422','class','network','0'), ('457','10422','target','gs-4012f','0'), ('458','10422','target','switch','0'), ('459','10422','target','zyxel','0'), ('460','10423','class','network','0'), ('461','10423','target','dslam','0'), ('462','10423','target','ies-5000','0'), ('463','10423','target','ies-5005','0'), ('464','10423','target','zyxel','0'), ('465','10424','class','network','0'), ('466','10424','target','dslam','0'), ('467','10424','target','ies-6000','0'), ('468','10424','target','zyxel','0'), ('469','10425','class','network','0'), ('470','10425','target','aam1248-51','0'), ('471','10425','target','dslam','0'), ('472','10425','target','zyxel','0'), ('473','10426','class','network','0'), ('474','10426','target','mes-3528','0'), ('475','10426','target','switch','0'), ('476','10426','target','zyxel','0'), ('477','10427','class','network','0'), ('478','10427','target','mes3500-10','0'), ('479','10427','target','switch','0'), ('480','10427','target','zyxel','0'), ('481','10428','class','network','0'), ('482','10428','target','mes3500-24','0'), ('483','10428','target','switch','0'), ('484','10428','target','zyxel','0'), ('485','10429','class','network','0'), ('486','10429','target','mgs-3712','0'), ('487','10429','target','switch','0'), ('488','10429','target','zyxel','0'), ('489','10430','class','network','0'), ('490','10430','target','mgs-3712f','0'), ('491','10430','target','switch','0'), ('492','10430','target','zyxel','0'), ('493','10431','class','network','0'), ('494','10431','target','mes3500-24s','0'), ('495','10431','target','switch','0'), ('496','10431','target','zyxel','0'), ('497','10432','class','network','0'), ('498','10432','target','mgs3520-28','0'), ('499','10432','target','mgs3520-28f','0'), ('500','10432','target','switch','0'), ('501','10432','target','zyxel','0'), ('502','10433','class','network','0'), ('503','10433','target','switch','0'), ('504','10433','target','xgs-4728f','0'), ('505','10433','target','zyxel','0'), ('506','10076','class','os','0'), ('507','10076','target','aix','0'), ('508','10075','class','os','0'), ('509','10075','target','freebsd','0'), ('510','10077','class','os','0'), ('511','10077','target','hp-ux','0'), ('512','10001','class','os','0'), ('513','10001','target','linux','0'), ('514','10343','class','os','0'), ('515','10343','target','linux','0'), ('516','10285','class','os','0'), ('517','10285','target','linux','0'), ('518','10248','class','os','0'), ('519','10248','target','linux','0'), ('520','10079','class','os','0'), ('521','10079','target','macos','0'), ('522','10074','class','os','0'), ('523','10074','target','openbsd','0'), ('524','10078','class','os','0'), ('525','10078','target','solaris','0'), ('526','10081','class','os','0'), ('527','10081','target','windows','0'), ('528','10351','class','os','0'), ('529','10351','target','windows','0'), ('530','10249','class','os','0'), ('531','10249','target','windows','0'), ('532','10400','class','power','0'), ('533','10400','target','apc','0'), ('534','10400','target','apc-ups-galaxy-3500','0'), ('535','10401','class','power','0'), ('536','10401','target','apc','0'), ('537','10401','target','apc-smart-ups-2200-rm','0'), ('538','10402','class','power','0'), ('539','10402','target','apc','0'), ('540','10402','target','apc-smart-ups-3000-xlm','0'), ('541','10403','class','power','0'), ('542','10403','target','apc','0'), ('543','10403','target','apc-smart-ups-rt-1000-rm-xl','0'), ('544','10404','class','power','0'), ('545','10404','target','apc','0'), ('546','10404','target','apc-smart-ups-rt-1000-xl','0'), ('547','10412','class','power','0'), ('548','10412','target','apc','0'), ('549','10412','target','apc-smart-ups-srt-5000','0'), ('550','10406','class','power','0'), ('551','10406','target','apc','0'), ('552','10406','target','apc-smart-ups-srt-8000','0'), ('553','10395','class','power','0'), ('554','10395','target','apc','0'), ('555','10407','class','power','0'), ('556','10407','target','apc','0'), ('557','10407','target','apc-ups-symmetra-lx','0'), ('558','10408','class','power','0'), ('559','10408','target','apc','0'), ('560','10408','target','apc-ups-symmetra-rm','0'), ('561','10409','class','power','0'), ('562','10409','target','apc','0'), ('563','10409','target','apc-ups-symmetra-rx','0'), ('564','10385','class','hardware','0'), ('565','10385','class','storage','0'), ('566','10385','target','huawei','0'), ('567','10385','target','huawei-oceanstor-5300-v5','0'), ('568','10396','class','network','0'), ('569','10396','target','netapp','0'), ('570','10396','target','netapp-aff-a700','0'), ('571','10378','class','hardware','0'), ('572','10378','target','netapp','0'), ('573','10378','target','netapp-fas3220','0'), ('574','10321','class','hardware','0'), ('575','10321','target','server','0'), ('576','10434','class','hardware','0'), ('577','10434','target','cisco','0'), ('578','10434','target','cisco-ucs-manager','0'), ('579','10304','class','hardware','0'), ('580','10304','target','cisco','0'), ('581','10304','target','cisco-ucs','0'), ('582','10435','class','hardware','0'), ('583','10435','target','dell','0'), ('584','10435','target','dell poweredge','0'), ('585','10436','class','hardware','0'), ('586','10436','target','dell','0'), ('587','10436','target','dell poweredge','0'), ('588','10437','class','hardware','0'), ('589','10437','target','dell','0'), ('590','10437','target','dell poweredge','0'), ('591','10438','class','hardware','0'), ('592','10438','target','dell','0'), ('593','10438','target','dell poweredge','0'), ('594','10439','class','hardware','0'), ('595','10439','target','dell','0'), ('596','10439','target','dell poweredge','0'), ('597','10440','class','hardware','0'), ('598','10440','target','dell','0'), ('599','10440','target','dell poweredge','0'), ('600','10441','class','hardware','0'), ('601','10441','target','dell','0'), ('602','10441','target','dell poweredge','0'), ('603','10442','class','hardware','0'), ('604','10442','target','dell','0'), ('605','10442','target','dell poweredge','0'), ('606','10255','class','hardware','0'), ('607','10255','target','dell','0'), ('608','10255','target','idrac','0'), ('609','10443','class','hardware','0'), ('610','10443','target','hp','0'), ('612','10444','class','hardware','0'), ('613','10444','target','hp','0'), ('615','10445','class','hardware','0'), ('616','10445','target','hp','0'), ('618','10446','class','hardware','0'), ('619','10446','target','hp','0'), ('621','10256','class','hardware','0'), ('622','10256','target','hp','0'), ('623','10256','target','ilo','0'), ('624','10258','class','hardware','0'), ('625','10258','target','ibm','0'), ('626','10258','target','imm','0'), ('627','10171','class','hardware','0'), ('628','10171','target','intel','0'), ('629','10171','target','intel-sr1530','0'), ('630','10172','class','hardware','0'), ('631','10172','target','intel','0'), ('632','10172','target','intel-sr1630','0'), ('633','10259','class','hardware','0'), ('634','10259','target','aten','0'), ('635','10259','target','supermicro','0'), ('636','10336','class','voip','0'), ('637','10336','target','asterisk','0'), ('638','10262','class','software','0'), ('639','10262','target','proxy','0'), ('640','10262','target','zabbix','0'), ('641','10414','target','cloudflare','0'), ('642','10516','class','service','0'), ('643','10516','target','openweathermap','0'), ('644','10517','class','software','0'), ('645','10517','target','proxmox','0'), ('646','10518','class','hardware','0'), ('648','10519','class','database','0'), ('649','10519','target','cockroachdb','0'), ('650','10520','class','software','0'), ('651','10520','target','envoy-proxy','0'), ('652','10521','class','software','0'), ('653','10521','target','consul','0'), ('654','10522','class','software','0'), ('655','10522','target','consul','0'), ('656','10523','address','{#NODE_ADDRESS}','0'), ('657','10523','datacenter','{#NODE_DATACENTER}','0'), ('658','10524','class','storage','0'), ('659','10524','target','hpe','0'), ('660','10524','target','msa-2040','0'), ('661','10525','class','storage','0'), ('662','10525','target','hpe','0'), ('663','10525','target','msa-2060','0'), ('664','10526','class','storage','0'), ('665','10526','target','hpe','0'), ('666','10526','target','primera','0'), ('668','10527','target','aws','0'), ('669','10527','target','ec2','0'), ('670','10528','class','software','0'), ('671','10528','target','opnsense','0'), ('672','10369','target','zookeeper','0'), ('674','10529','target','aws','0'), ('675','10529','target','rds','0'), ('677','10530','target','aws','0'), ('678','10530','target','s3','0'), ('679','10531','class','software','0'), ('680','10531','target','azure','0'), ('681','10532','class','software','0'), ('682','10532','target','azure','0'), ('683','10533','location','{#LOCATION}','0'), ('684','10533','os','{#OS}','0'), ('685','10533','resource-group','{#GROUP}','0'), ('686','10533','size','{#SIZE}','0'), ('687','10534','class','hardware','0'), ('688','10534','target','hpe','0'), ('689','10534','target','synergy','0'), ('691','10535','target','aws','0'), ('692','10539','class','software','0'), ('693','10539','target','azure','0'), ('694','10540','class','software','0'), ('695','10540','target','azure','0'), ('696','10541','location','{#LOCATION}','0'), ('697','10541','resource-group','{#GROUP}','0'), ('698','10541','size','{#SIZE}','0'), ('699','10541','version','{#VERSION}','0'), ('700','10543','class','software','0'), ('701','10543','target','azure','0'), ('702','10544','class','software','0'), ('703','10544','target','azure','0'), ('704','10545','location','{#LOCATION}','0'), ('705','10545','resource-group','{#GROUP}','0'), ('706','10545','size','{#SIZE}','0'), ('707','10545','version','{#VERSION}','0'), ('708','10546','class','network','0'), ('709','10546','target','cisco-meraki-dashboard','0'), ('710','10547','class','network','0'), ('711','10547','target','cisco-meraki-dashboard','0'), ('712','10548','class','network','0'), ('713','10548','target','cisco-meraki-dashboard','0'), ('715','10549','serial-number','{#SERIAL}','0'), ('716','10551','class','network','0'), ('717','10551','target','cisco','0'), ('718','10551','target','cisco-nexus','0'), ('719','10551','target','n9000','0'), ('720','10552','class','software','0'), ('721','10552','target','controlm','0'), ('722','10553','class','software','0'), ('723','10553','target','controlm','0'), ('724','10555','class','software','0'), ('725','10555','target','veeam','0'), ('726','10556','class','software','0'), ('727','10556','target','veeam','0'), ('728','10539','target','mysql','0'), ('729','10540','target','mysql','0'), ('730','10543','target','postgresql','0'), ('731','10544','target','postgresql','0'), ('732','10557','class','software','0'), ('733','10557','target','azure','0'), ('734','10557','target','mssql','0'), ('735','10558','class','software','0'), ('736','10558','target','azure','0'), ('737','10558','target','mssql','0'), ('738','10559','location','{#LOCATION}','0'), ('739','10559','resource-group','{#GROUP}','0'), ('740','10559','size','{#SIZE}','0'), ('741','10559','version','{#VERSION}','0'), ('742','10560','class','software','0'), ('743','10560','target','process','0'), ('744','10561','class','software','0'), ('745','10561','target','zabbix-agent','0'), ('746','10562','class','software','0'), ('747','10562','target','zabbix-agent','0'), ('748','10563','class','network','0'), ('749','10563','target','snmp','0'), ('750','10564','class','network','0'), ('751','10564','target','icmp','0'), ('752','10565','class','storage','0'), ('753','10565','target','hdd','0'), ('754','10565','target','ssd','0'), ('755','10566','class','storage','0'), ('756','10566','target','hdd','0'), ('757','10566','target','ssd','0'), ('758','10504','target','api-server','0'), ('759','10504','target','kubernetes','0'), ('760','10505','target','controller-manager','0'), ('761','10505','target','kubernetes','0'), ('762','10506','target','kubelet','0'), ('763','10506','target','kubernetes','0'), ('764','10507','target','kubernetes','0'), ('765','10507','target','nodes','0'), ('766','10567','addr','{#IP}','0'), ('767','10567','arch','{#ARCH}','0'), ('768','10567','os','{#OS}','0'), ('769','10567','roles','{#ROLES}','0'), ('770','10509','target','kubernetes','0'), ('771','10509','target','scheduler','0'), ('772','10510','target','cluster-state','0'), ('773','10510','target','kubernetes','0'), ('774','10568','class','software','0'), ('775','10568','target','azure','0'), ('776','10568','target','cosmosdb','0'), ('777','10568','target','mongodb','0'), ('778','10569','location','{#LOCATION}','0'), ('779','10569','resource-group','{#GROUP}','0'), ('780','10569','version','{#VERSION}','0'), ('781','10570','class','cloud','0'), ('782','10570','target','gcp','0'), ('783','10570','target','google-cloud-platform','0'), ('784','10571','class','cloud','0'), ('785','10571','target','cloudsql','0'), ('786','10571','target','gcp','0'), ('787','10571','target','google-cloud-platform','0'), ('788','10571','target','mssql','0'), ('789','10572','class','cloud','0'), ('790','10572','target','cloudsql','0'), ('791','10572','target','gcp','0'), ('792','10572','target','google-cloud-platform','0'), ('793','10572','target','mssql','0'), ('794','10572','target','replica','0'), ('795','10573','class','cloud','0'), ('796','10573','target','cloudsql','0'), ('797','10573','target','gcp','0'), ('798','10573','target','google-cloud-platform','0'), ('799','10573','target','mysql','0'), ('800','10574','class','cloud','0'), ('801','10574','target','cloudsql','0'), ('802','10574','target','gcp','0'), ('803','10574','target','google-cloud-platform','0'), ('804','10574','target','mysql','0'), ('805','10574','target','replica','0'), ('806','10575','class','cloud','0'), ('807','10575','target','cloudsql','0'), ('808','10575','target','gcp','0'), ('809','10575','target','google-cloud-platform','0'), ('810','10575','target','postgresql','0'), ('811','10576','class','cloud','0'), ('812','10576','target','cloudsql','0'), ('813','10576','target','gcp','0'), ('814','10576','target','google-cloud-platform','0'), ('815','10576','target','postgresql','0'), ('816','10576','target','replica','0'), ('817','10577','class','cloud','0'), ('818','10577','target','compute-engine','0'), ('819','10577','target','gce','0'), ('820','10577','target','gcp','0'), ('821','10577','target','google-cloud-platform','0'), ('822','10578','audit','{#MSSQL.AUDITED}','0'), ('823','10578','db-version','{#CLOUD_SQL.INSTANCE.DB.TYPE}','0'), ('824','10578','high-availability','{#CLOUD_SQL.INSTANCE.HIGH.AVAIL}','0'), ('825','10578','instance-type','{#CLOUD_SQL.INSTANCE.TYPE}','0'), ('826','10578','project','{#GCP.PROJECT.ID}','0'), ('827','10578','service','cloudsql','0'), ('828','10578','service','gcp','0'), ('829','10578','service','mssql','0'), ('830','10578','tier','{#CLOUD_SQL.INSTANCE.TIER}','0'), ('831','10578','zone','{#CLOUD_SQL.INSTANCE.ZONE}','0'), ('832','10579','db-version','{#CLOUD_SQL.INSTANCE.DB.TYPE}','0'), ('833','10579','high-availability','{#CLOUD_SQL.INSTANCE.HIGH.AVAIL}','0'), ('834','10579','instance-type','{#CLOUD_SQL.INSTANCE.TYPE}','0'), ('835','10579','project','{#GCP.PROJECT.ID}','0'), ('836','10579','service','cloudsql','0'), ('837','10579','service','gcp','0'), ('838','10579','service','mysql','0'), ('839','10579','tier','{#CLOUD_SQL.INSTANCE.TIER}','0'), ('840','10579','zone','{#CLOUD_SQL.INSTANCE.ZONE}','0'), ('841','10580','db-version','{#CLOUD_SQL.INSTANCE.DB.TYPE}','0'), ('842','10580','high-availability','{#CLOUD_SQL.INSTANCE.HIGH.AVAIL}','0'), ('843','10580','instance-type','{#CLOUD_SQL.INSTANCE.TYPE}','0'), ('844','10580','project','{#GCP.PROJECT.ID}','0'), ('845','10580','service','cloudsql','0'), ('846','10580','service','gcp','0'), ('847','10580','service','pgsql','0'), ('848','10580','tier','{#CLOUD_SQL.INSTANCE.TIER}','0'), ('849','10580','zone','{#CLOUD_SQL.INSTANCE.ZONE}','0'), ('850','10581','instance-type','{#GCE.INSTANCE.TYPE}','0'), ('851','10581','machine-type','{#GCE.MACHINE.TYPE}','0'), ('852','10581','project','{#GCP.PROJECT.ID}','0'), ('853','10581','service','gce','0'), ('854','10581','service','gcp','0'), ('855','10581','zone','{#GCE.INSTANCE.ZONE}','0'), ('856','10443','target','hp-bl460','0'), ('857','10444','target','hp-bl920','0'), ('858','10445','target','hp-dl360','0'), ('859','10446','target','hp-dl380','0'), ('861','10582','target','aws','0'), ('862','10582','target','cost','0'), ('864','10583','target','aws','0'), ('865','10583','target','ecs','0'), ('867','10584','target','aws','0'), ('868','10584','target','ecs','0'), ('869','10586','class','cloud','0'), ('870','10586','target','openstack','0'), ('871','10587','class','cloud','0'), ('872','10587','target','nova','0'), ('873','10587','target','openstack','0'), ('874','10589','class','database','0'), ('875','10589','target','postgresql','0'), ('876','10590','class','network','0'), ('877','10590','target','cisco-sdwan-monitor','0'), ('878','10591','class','network','0'), ('879','10591','target','cisco-sdwan-device','0'), ('880','10592','model','{#MODEL}','0'), ('881','10593','class','application','0'), ('882','10593','target','mantis-bt','0'), ('883','10594','class','software','0'), ('884','10594','target','nomad','0'), ('885','10595','class','software','0'), ('886','10595','target','nomad-client','0'), ('887','10596','class','software','0'), ('888','10596','target','nomad-server','0'), ('889','10597','class','{#CLIENT.CLASS}','0'), ('890','10597','dc','{#CLIENT.DC}','0'), ('891','10597','drained','{#CLIENT.DRAIN.STATE}','0'), ('892','10597','os','{#CLIENT.OS}','0'), ('893','10597','scheduling','{#CLIENT.SCHEDULE.ELIGIBILITY}','0'), ('894','10597','service','nomad-client','0'), ('895','10597','version','{#CLIENT.VERSION}','0'), ('896','10598','dc','{#SERVER.DC}','0'), ('897','10598','region','{#SERVER.REGION}','0'), ('898','10598','role','{#SERVER.ROLE}','0'), ('899','10598','service','nomad-server','0'), ('900','10598','version','{#SERVER.VERSION}','0'), ('901','10599','class','application','0'), ('902','10599','target','acronis','0'), ('903','10599','target','cyber-protect-cloud','0'), ('904','10600','class','application','0'), ('905','10600','target','acronis','0'), ('906','10600','target','cyber-protect-cloud','0'), ('907','10602','class','application','0'), ('908','10602','target','nextcloud','0'), ('909','10536','name','{#AWS.EC2.INSTANCE.NAME}','0'), ('910','10536','region','{#AWS.EC2.INSTANCE.REGION}','0'), ('911','10536','service','ec2','0'), ('912','10585','name','{#AWS.ECS.CLUSTER.NAME}','0'), ('913','10585','region','{#AWS.ECS.CLUSTER.REGION}','0'), ('914','10585','service','ecs','0'), ('915','10537','name','{#AWS.RDS.INSTANCE.ID}','0'), ('916','10537','region','{#AWS.RDS.REGION}','0'), ('917','10537','service','rds','0'), ('918','10538','name','{#AWS.S3.NAME}','0'), ('920','10538','service','s3','0'), ('921','10603','class','network','0'), ('922','10603','target','fortigate','0'), ('923','10603','target','fortinet','0'), ('924','10604','class','network','0'), ('925','10604','target','fortigate','0'), ('926','10604','target','fortinet','0'), ('927','10605','class','hardware','0'), ('928','10605','target','hpe','0'), ('929','10605','target','ilo','0'), ('930','10606','class','software','0'), ('931','10606','target','azure','0'), ('932','10606','target','cost','0'), ('933','10518','target','truenas-core','0'), ('935','10607','target','alb','0'), ('936','10607','target','aws','0'), ('937','10607','target','elb','0'), ('938','10608','dns-name','{#AWS.ELB.DNS.NAME}','0'), ('939','10608','name','{#AWS.ELB.NAME}','0'), ('940','10608','region','{#AWS.ELB.REGION}','0'), ('941','10608','service','elb','0'), ('942','10608','type','{#AWS.ELB.TYPE}','0'), ('943','10609','class','database','0'), ('944','10609','target','mssql','0'), ('945','10610','class','database','0'), ('946','10610','target','yugabytedb','0'), ('947','10611','class','database','0'), ('948','10611','target','yugabytedb','0'), ('949','10612','cluster','{#CLUSTER.NAME}','0'), ('950','10613','class','network','0'), ('951','10613','target','checkpoint','0'), ('952','10613','target','firewall','0'), ('953','10613','target','ngfw','0'), ('954','10614','class','cloud','0'), ('955','10614','target','oci','0'), ('956','10614','target','oracle-cloud-infrastructure','0'), ('957','10615','class','cloud','0'), ('958','10615','target','oci','0'), ('959','10615','target','oracle-cloud-infrastructure','0'), ('960','10616','class','cloud','0'), ('961','10616','target','oci','0'), ('962','10616','target','oracle-cloud-infrastructure','0'), ('963','10617','class','cloud','0'), ('964','10617','target','oci','0'), ('965','10617','target','oracle-cloud-infrastructure','0'), ('966','10618','class','cloud','0'), ('967','10618','target','oci','0'), ('968','10618','target','oracle-cloud-infrastructure','0'), ('969','10619','class','cloud','0'), ('970','10619','target','oci','0'), ('971','10619','target','oracle-cloud-infrastructure','0'), ('972','10620','class','cloud','0'), ('973','10620','target','oci','0'), ('974','10620','target','oracle-cloud-infrastructure','0'), ('975','10621','oci-block-vol-name','{#NAME}','0'), ('976','10622','oci-boot-vol-name','{#NAME}','0'), ('977','10623','oci-compute-name','{#NAME}','0'), ('978','10624','oci-aut-db-name','{#NAME}','0'), ('979','10625','oci-obj-store-name','{#NAME}','0'), ('980','10626','oci-vcn-name','{#NAME}','0'), ('982','10627','target','aws','0'), ('983','10627','target','elb','0'), ('984','10627','target','nlb','0'), ('985','10628','class','application','0'), ('986','10628','target','browser','0'), ('987','10629','class','software','0'), ('988','10629','target','jira-datacenter','0'), ('989','10630','class','software','0'), ('990','10630','target','azure','0'), ('991','10631','location','{#LOCATION}','0'), ('992','10631','orchestration','{#ORCHESTRATION}','0'), ('993','10631','os','{#OS}','0'), ('994','10631','resource-group','{#GROUP}','0'), ('995','10621','oci-compartment-id','{#COMPARTMENT}','0'), ('996','10622','oci-compartment-id','{#COMPARTMENT}','0'), ('997','10623','oci-compartment-id','{#COMPARTMENT}','0'), ('998','10624','oci-compartment-id','{#COMPARTMENT}','0'), ('999','10625','oci-compartment-id','{#COMPARTMENT}','0'), ('1000','10626','oci-compartment-id','{#COMPARTMENT}','0'), ('1002','10632','target','aws','0'), ('1003','10632','target','lambda','0'), ('1004','10633','name','{#AWS.LAMBDA.NAME}','0'), ('1005','10633','region','{#AWS.LAMBDA.REGION}','0'), ('1006','10633','runtime','{#AWS.LAMBDA.RUNTIME}','0'), ('1007','10633','service','lambda','0'), ('1008','10634','class','application','0'), ('1009','10634','target','github','0'), ('1010','10634','target','repository','0'), ('1011','10635','class','application','0'), ('1012','10635','target','ms365','0'), ('1013','10636','class','hardware','0'), ('1014','10636','class','storage','0'), ('1015','10636','target','huawei','0'), ('1017','10637','class','software','0'), ('1018','10637','target','apache','0'), ('1019','10638','class','software','0'), ('1020','10638','target','certificate','0'), ('1021','10639','class','software','0'), ('1022','10639','target','nginx','0'), ('1023','10640','class','software','0'), ('1024','10640','target','cluster','0'), ('1025','10640','target','nutanix','0'), ('1026','10640','target','prism-element','0'), ('1027','10641','class','software','0'), ('1028','10641','target','host','0'), ('1029','10641','target','nutanix','0'), ('1030','10641','target','prism-element','0'), ('1031','10642','class','software','0'), ('1032','10642','target','nutanix','0'), ('1033','10642','target','prism-element','0'), ('1034','10645','class','application','0'), ('1035','10645','target','php-fpm','0'), ('1036','10646','class','database','0'), ('1037','10646','target','mysql','0'), ('1038','10647','class','database','0'), ('1039','10647','target','mysql','0'), ('1040','10648','class','database','0'), ('1041','10648','target','postgresql','0'), ('1042','10649','class','database','0'), ('1043','10649','target','postgresql','0'), ('1044','10650','class','network','0'), ('1045','10650','target','juniper','0'), ('1046','10650','target','mx','0'), ('1047','10651','class','software','0'), ('1048','10651','target','azure','0'), ('1049','10652','location','{#LOCATION}','0'), ('1050','10652','resource-group','{#GROUP}','0'), ('1051','10549','organization','{#ORGANIZATION_NAME}','0'), ('1052','10549','type','{#PRODUCT_TYPE}','0'), ('1053','10653','class','network','0'), ('1054','10653','target','pa-440','0'), ('1055','10653','target','paloalto','0'), ('1056','10654','class','hardware','0'), ('1057','10654','target','dell','0'), ('1058','10654','target','dell poweredge','0'), ('1059','10655','class','hardware','0'), ('1060','10655','target','dell','0'), ('1061','10655','target','dell poweredge','0'), ('1062','10656','class','hardware','0'), ('1063','10656','target','dell','0'), ('1064','10656','target','dell poweredge','0'), ('1065','10657','class','hardware','0'), ('1066','10657','target','dell','0'), ('1067','10657','target','dell poweredge','0'), ('1068','10658','class','software','0'), ('1069','10658','target','proxy','0'), ('1070','10658','target','zabbix','0'), ('1071','10659','class','software','0'), ('1072','10659','target','proxy','0'), ('1073','10659','target','zabbix','0'), ('1074','10660','class','software','0'), ('1075','10660','target','server','0'), ('1076','10660','target','zabbix','0'), ('1077','10661','class','software','0'), ('1078','10661','target','server','0'), ('1079','10661','target','zabbix','0'), ('1080','10662','class','software','0'), ('1081','10662','target','azure','0'), ('1082','10662','target','mssql','0'), ('1083','10535','class','cloud','0'), ('1084','10582','class','cloud','0'), ('1085','10527','class','cloud','0'), ('1086','10583','class','cloud','0'), ('1087','10584','class','cloud','0'), ('1088','10607','class','cloud','0'), ('1089','10627','class','cloud','0'), ('1090','10632','class','cloud','0'), ('1091','10529','class','cloud','0'), ('1092','10530','class','cloud','0'), ('1093','10663','class','hardware','0'), ('1094','10663','class','storage','0'), ('1095','10663','target','flash-array','0'), ('1096','10663','target','pure-storage','0'), ('1097','10664','class','hardware','0'), ('1098','10664','class','storage','0'), ('1099','10664','target','flash-array','0'), ('1100','10664','target','pure-storage','0'), ('1101','10665','class','cloud','0'), ('1102','10665','subclass','backup','0'), ('1103','10665','target','azure','0'), ('1104','10666','location','{#LOCATION}','0'), ('1105','10666','resource-group','{#GROUP}','0'), ('1106','10667','class','network','0'), ('1107','10667','target','cisco','0'), ('1108','10667','target','cisco-ftd','0'), ('1109','10668','class','cloud','0'), ('1110','10668','target','aws','0'), ('1111','10668','target','backup_vault','0'), ('1112','10669','name','{#AWS.BACKUP_VAULT.NAME}','0'), ('1113','10669','region','{#AWS.BACKUP_VAULT.REGION}','0'), ('1114','10669','service','backup_vault','0'), ('1115','10670','class','network','0'), ('1116','10670','target','aruba','0'), ('1117','10670','target','cx8300s','0'), ('1118','10671','class','network','0'), ('1119','10671','target','ciena','0'), ('1120','10671','target','ciena-3906','0'), ('1121','10636','target','huawei-oceanstor-dorado','0'), ('1122','10672','class','network','0'), ('1123','10672','target','vyatta','0'), ('1124','10672','target','vyatta-1908e','0'), ('1125','10673','class','network','0'), ('1126','10673','subclass','firewall','0'), ('1127','10673','subclass','security','0'), ('1128','10673','target','sns','0'), ('1129','10673','target','stormshield','0'), ('1130','10534','class','storage','0'); INSERT INTO lld_override (lld_overrideid,itemid,name,step,evaltype,formula,stop) VALUES ('4383','43134','aggregated status','1','0','','0'), ('4384','43134','checks','2','0','','0'), ('4385','30961','trigger','1','0','','0'), ('4386','30193','Discard HTTP status codes','1','0','','0'), ('4387','30194','Discard HTTP status codes','1','0','','0'), ('4388','30195','Discard HTTP status codes','1','0','','0'), ('4389','30236','Discard HTTP status codes','1','0','','0'), ('4390','30237','Discard HTTP status codes','1','0','','0'), ('4391','30238','Discard HTTP status codes','1','0','','0'), ('4394','39859','bucket item','1','0','','0'), ('4395','39859','total item','2','0','','0'), ('4396','39889','bucket item','1','0','','0'), ('4397','39889','total item','2','0','','0'), ('4398','39920','bucket item','1','0','','0'), ('4399','39920','total item','2','0','','0'), ('4400','44733','Endpoints host','1','0','','0'), ('4401','40000','bucket item','1','0','','0'), ('4402','40000','total item','2','0','','0'), ('4403','40001','bucket item','1','0','','0'), ('4404','40001','total item','2','0','','0'), ('4405','40002','bucket item','1','0','','0'), ('4406','40002','total item','2','0','','0'), ('4407','40030','sum items','1','0','','0'), ('4408','44762','sum items','1','0','','0'), ('4409','33521','trigger disabled non main channels','1','0','','0'), ('4410','44200','Flexible server','1','0','','0'), ('4411','44200','Single server','2','0','','0'), ('4412','44293','Flexible server','1','0','','0'), ('4413','44293','Single server','2','0','','0'), ('4414','44585','Server','2','0','','0'), ('4415','44585','Serverless','1','0','','0'), ('4416','44818','MongoDB','1','0','','0'), ('4417','45034','MSSQL replica','1','0','','0'), ('4418','45035','MySQL replica','1','0','','0'), ('4419','45036','PostgreSQL replica','1','0','','0'), ('4420','33810','Arbiter metrics','2','0','','0'), ('4421','33810','Primary metrics','1','0','','0'), ('4422','34346','Too many missed regions trigger','1','0','','0'), ('4423','34346','Unresponsive peers trigger','2','0','','0'), ('4424','34403','Failed GC-related operations trigger','1','0','','0'), ('4425','34443','Too many unreachable messages trigger','1','0','','0'), ('4426','28306','trigger THRESHOLD_LO_WARN','1','0','','0'), ('4427','28306','trigger THRESHOLD_LO_CRIT','2','0','','0'), ('4428','28306','trigger THRESHOLD_HI_WARN','3','0','','0'), ('4429','28306','trigger THRESHOLD_HI_CRIT','4','0','','0'), ('4430','28307','trigger THRESHOLD_LO_WARN','1','0','','0'), ('4431','28307','trigger THRESHOLD_LO_CRIT','2','0','','0'), ('4432','28307','trigger THRESHOLD_HI_WARN','3','0','','0'), ('4433','28307','trigger THRESHOLD_HI_CRIT','4','0','','0'), ('4434','33182','trigger THRESHOLD_LO_WARN','1','0','','0'), ('4435','33182','trigger THRESHOLD_LO_CRIT','2','0','','0'), ('4436','33182','trigger THRESHOLD_HI_WARN','3','0','','0'), ('4437','33182','trigger THRESHOLD_HI_CRIT','4','0','','0'), ('4438','35366','Don''t create triggers for matching interface','1','0','','0'), ('4439','35432','Skip trigger for defined filesystems','1','0','','0'), ('4440','35542','Don''t create triggers for matching interface','1','0','','0'), ('4441','35543','Don''t create triggers for matching interface','1','0','','0'), ('4442','35575','Don''t create triggers for matching interface','1','0','','0'), ('4443','35619','Don''t create triggers for matching interface','1','0','','0'), ('4444','35653','Don''t create triggers for matching interface','1','0','','0'), ('4445','35654','Don''t create triggers for matching interface','1','0','','0'), ('4446','35720','Don''t create triggers for matching interface','1','0','','0'), ('4447','35721','Don''t create triggers for matching interface','1','0','','0'), ('4448','35787','Don''t create triggers for matching interface','1','0','','0'), ('4449','35788','Trigger disabled','1','0','','0'), ('4450','35788','Trigger enabled','2','0','','0'), ('4451','35820','Don''t create triggers for matching interface','1','0','','0'), ('4452','35859','Don''t create triggers for matching interface','1','0','','0'), ('4453','35903','Don''t create triggers for matching interface','1','0','','0'), ('4454','35947','Don''t create triggers for matching interface','1','0','','0'), ('4455','35991','Don''t create triggers for matching interface','1','0','','0'), ('4456','36036','Don''t create triggers for matching interface','1','0','','0'), ('4457','36081','Don''t create triggers for matching interface','1','0','','0'), ('4458','36126','Don''t create triggers for matching interface','1','0','','0'), ('4459','22947','Skip metadata collection for dynamic FS','1','0','','0'), ('4460','22907','Skip metadata collection for dynamic FS','1','0','','0'), ('4461','22987','Skip metadata collection for dynamic FS','1','0','','0'), ('4462','42273','Skip metadata collection for dynamic FS','1','0','','0'), ('4463','42276','Skip metadata collection for dynamic FS','1','0','','0'), ('4464','42362','Skip metadata collection for dynamic FS','1','0','','0'), ('4465','23067','Exclude dmg','1','1','','0'), ('4466','23067','Skip metadata collection for dynamic FS','2','0','','0'), ('4467','22867','Skip metadata collection for dynamic FS','1','0','','0'), ('4468','23027','Skip metadata collection for dynamic FS','1','0','','0'), ('4469','34478','Temp','1','0','','0'), ('4470','34479','Temp','1','0','','0'), ('4471','34526','Temp','1','0','','0'), ('4472','34527','Temp','1','0','','0'), ('4473','34574','Temp','1','0','','0'), ('4474','34575','Temp','1','0','','0'), ('4475','34622','Temp','1','0','','0'), ('4476','34623','Temp','1','0','','0'), ('4477','34670','Temp','1','1','','0'), ('4478','34671','Temp','1','0','','0'), ('4479','35043','Temp','1','0','','0'), ('4480','35044','Temp','1','0','','0'), ('4481','34766','Temp','1','0','','0'), ('4482','34767','Temp','1','0','','0'), ('4483','34209','Temp','1','0','','0'), ('4484','34210','Temp','1','0','','0'), ('4485','34820','Temp','1','0','','0'), ('4486','34821','Temp','1','0','','0'), ('4487','34868','Temp','1','0','','0'), ('4488','34869','Temp','1','0','','0'), ('4489','34916','Temp','1','0','','0'), ('4490','34917','Temp','1','0','','0'), ('4491','43185','SSD life left','1','0','','0'), ('4492','43292','SSD life left','1','0','','0'), ('4493','33354','Do not discover aggregate metrics','1','0','','0'), ('4494','30687','trigger SENSOR_HI_CRIT','5','0','','0'), ('4495','30687','trigger SENSOR_HI_DISAST','6','0','','0'), ('4496','30687','trigger SENSOR_HI_WARN','4','0','','0'), ('4497','30687','trigger SENSOR_LO_CRIT','2','0','','0'), ('4498','30687','trigger SENSOR_LO_DISAST','3','0','','0'), ('4499','30687','trigger SENSOR_LO_WARN','1','0','','0'), ('4500','44676','Bad_Block_Rate','9','0','','0'), ('4501','44676','Not NVMe','2','0','','0'), ('4502','44676','Power_Cycle_Count','6','0','','0'), ('4503','44676','Program_Fail_Count_Chip','10','0','','0'), ('4504','44676','Raw_Read_Error_Rate','3','0','','0'), ('4505','44676','Reallocated_Sector_Ct','11','0','','0'), ('4506','44676','Reported_Uncorrect','7','0','','0'), ('4507','44676','Seek_Error_Rate','8','0','','0'), ('4508','44676','Self-test','1','0','','0'), ('4509','44676','Spin_Up_Time','4','0','','0'), ('4510','44676','Start_Stop_Count','5','0','','0'), ('4511','44697','Bad_Block_Rate','9','0','','0'), ('4512','44697','Not NVMe','2','0','','0'), ('4513','44697','Power_Cycle_Count','6','0','','0'), ('4514','44697','Program_Fail_Count_Chip','10','0','','0'), ('4515','44697','Raw_Read_Error_Rate','3','0','','0'), ('4516','44697','Reallocated_Sector_Ct','11','0','','0'), ('4517','44697','Reported_Uncorrect','7','0','','0'), ('4518','44697','Seek_Error_Rate','8','0','','0'), ('4519','44697','Self-test','1','0','','0'), ('4520','44697','Spin_Up_Time','4','0','','0'), ('4521','44697','Start_Stop_Count','5','0','','0'), ('4522','45595','Serverless','1','0','','0'), ('4523','45595','Use EC2 Infrastructure','2','0','','0'), ('4524','46167','System services','1','0','','0'), ('4525','46323','Predicted media life left','1','0','','0'), ('4526','31123','Log backup','1','0','','0'), ('4527','46503','Application Load Balancers','1','0','','0'), ('4528','46595','Log backup','1','0','','0'), ('4529','46503','Network Load Balancers','2','0','','0'), ('4530','29430','Skip metadata collection for dynamic FS','1','0','','0'), ('4531','44057','Tag proxy-group if exists','1','0','','0'), ('4532','44058','Tag proxy-group if exists','1','0','','0'), ('4533','44082','Tag proxy-group if exists','1','0','','0'), ('4534','47533','Trigger priority red','1','0','','0'), ('4535','47533','Trigger priority yellow','2','0','','0'), ('4536','47533','Trigger priority green','3','0','','0'), ('4537','31656','Disable IO perfCounter','1','0','','0'), ('4538','32934','Disable IO perfCounter','1','0','','0'), ('4539','32934','Disable Multipath perfCounter','2','0','','0'), ('4540','47547','Trigger priority red','1','0','','0'), ('4541','47547','Trigger priority yellow','2','0','','0'), ('4542','47547','Trigger priority green','3','0','','0'), ('4543','32955','Disable IO perfCounter','1','0','','0'), ('4544','48425','Do not create tentative state trigger for Active-Passive mode','1','0','','0'), ('4545','48427','Do not create speed item and trigger if not supported','1','0','','0'), ('4546','48428','Add zone tag','1','0','','0'), ('4547','49350','Tag proxy-group if exists','1','0','','0'), ('4548','49352','Tag proxy-group if exists','1','0','','0'), ('4549','44585','DTU-based','3','0','','0'), ('4550','49727','Controller tag','1','0','','0'), ('4551','49727','Chassis tag','2','0','','0'), ('4552','49737','Controller tag','1','0','','0'), ('4553','49737','Chassis tag','2','0','','0'), ('4554','50036','Copy job excludes','1','0','','0'), ('4555','50036','Restore job excludes','2','0','','0'), ('4556','47599','V700 specific, node delay','1','0','','0'), ('4557','47600','V700 specific, pool used capacity','1','0','','0'); INSERT INTO lld_override_condition (lld_override_conditionid,lld_overrideid,operator,macro,value) VALUES ('4131','4383','8','{#TYPE}','aggregated_status'), ('4132','4384','8','{#TYPE}','service_check'), ('4133','4385','8','{#GRPC.CODE}','{$ETCD.GRPC_CODE.TRIGGER.MATCHES}'), ('4134','4386','8','{#MODE}','tcp'), ('4135','4387','8','{#MODE}','tcp'), ('4136','4388','8','{#MODE}','tcp'), ('4137','4389','8','{#MODE}','tcp'), ('4138','4390','8','{#MODE}','tcp'), ('4139','4391','8','{#MODE}','tcp'), ('4142','4394','8','{#TYPE}','buckets'), ('4143','4395','8','{#TYPE}','totals'), ('4144','4396','8','{#TYPE}','buckets'), ('4145','4397','8','{#TYPE}','totals'), ('4146','4398','8','{#TYPE}','buckets'), ('4147','4399','8','{#TYPE}','totals'), ('4149','4401','8','{#TYPE}','buckets'), ('4150','4402','8','{#TYPE}','totals'), ('4151','4403','8','{#TYPE}','buckets'), ('4152','4404','8','{#TYPE}','totals'), ('4153','4405','8','{#TYPE}','buckets'), ('4154','4406','8','{#TYPE}','totals'), ('4155','4407','12','{#IS_SUM}',''), ('4156','4408','12','{#SINGLETON}',''), ('4157','4409','9','{#CHANNEL_ID}','{$HIKVISION_MAIN_CHANNEL_ID}'), ('4158','4410','8','{#TYPE}','Microsoft.DBforMySQL/flexibleServers'), ('4159','4411','8','{#TYPE}','Microsoft.DBforMySQL/servers'), ('4160','4412','8','{#TYPE}','Microsoft.DBforPostgreSQL/flexibleServers'), ('4161','4413','8','{#TYPE}','Microsoft.DBforPostgreSQL/servers'), ('4164','4416','8','{#VERSION}','^MongoDB$'), ('4165','4417','8','{#CLOUD_SQL.INSTANCE.TYPE}','READ_REPLICA_INSTANCE'), ('4166','4417','12','{#CLOUD_SQL.MASTER}',''), ('4167','4418','8','{#CLOUD_SQL.INSTANCE.TYPE}','READ_REPLICA_INSTANCE'), ('4168','4418','12','{#CLOUD_SQL.MASTER}',''), ('4169','4419','8','{#CLOUD_SQL.INSTANCE.TYPE}','READ_REPLICA_INSTANCE'), ('4170','4419','12','{#CLOUD_SQL.MASTER}',''), ('4171','4420','8','{#NODE_STATE}','7'), ('4172','4421','8','{#NODE_STATE}','1'), ('4173','4422','8','{#TYPE}','miss_peer_region_count'), ('4174','4423','8','{#TYPE}','down_peer_region_count'), ('4175','4424','8','{#TYPE}','failed'), ('4176','4425','8','{#TYPE}','unreachable'), ('4177','4426','8','{#THRESHOLD_LO_WARN}','^$'), ('4178','4427','8','{#THRESHOLD_LO_CRIT}','^$'), ('4179','4428','8','{#THRESHOLD_HI_WARN}','^$'), ('4180','4429','8','{#THRESHOLD_HI_CRIT}','^$'), ('4181','4430','8','{#THRESHOLD_LO_WARN}','^$'), ('4182','4431','8','{#THRESHOLD_LO_CRIT}','^$'), ('4183','4432','8','{#THRESHOLD_HI_WARN}','^$'), ('4184','4433','8','{#THRESHOLD_HI_CRIT}','^$'), ('4185','4434','8','{#THRESHOLD_LO_WARN}','^$'), ('4186','4435','8','{#THRESHOLD_LO_CRIT}','^$'), ('4187','4436','8','{#THRESHOLD_HI_WARN}','^$'), ('4188','4437','8','{#THRESHOLD_HI_CRIT}','^$'), ('4189','4438','9','{#CISCO.IF.NAME}','{$CISCO.LLD.FILTER.IF.CONTROL.MATCHES}'), ('4190','4439','8','{#PART.NAME}','{$BIGIP.LLD.OVERRIDE.PART.FILTER_LOW_SPACE_TRIGGER}'), ('4191','4440','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}'), ('4192','4441','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}'), ('4193','4442','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}'), ('4194','4443','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}'), ('4195','4444','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}'), ('4196','4445','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}'), ('4197','4446','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}'), ('4198','4447','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}'), ('4199','4448','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}'), ('4200','4449','8','{#ZYXEL.IF.NAME}','.*'), ('4201','4450','8','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}'), ('4202','4451','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}'), ('4203','4452','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}'), ('4204','4453','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}'), ('4205','4454','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}'), ('4206','4455','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}'), ('4207','4456','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}'), ('4208','4457','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}'), ('4209','4458','9','{#ZYXEL.IF.NAME}','{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}'), ('4210','4459','8','{#FSTYPE}','^(btrfs|zfs)$'), ('4211','4460','8','{#FSTYPE}','^(btrfs|zfs)$'), ('4212','4461','8','{#FSTYPE}','^(btrfs|zfs)$'), ('4213','4462','8','{#FSTYPE}','^(btrfs|zfs)$'), ('4214','4463','8','{#FSTYPE}','^(btrfs|zfs)$'), ('4215','4464','8','{#FSTYPE}','^(btrfs|zfs)$'), ('4216','4465','12','{#FSOPTIONS}',''), ('4217','4465','8','{#FSOPTIONS}',E'(?:^|,)noowners\\b'), ('4218','4465','8','{#FSOPTIONS}',E'(?:^|,)read-only\\b'), ('4219','4465','8','{#FSTYPE}','hfs'), ('4220','4466','8','{#FSTYPE}','^(btrfs|zfs)$'), ('4221','4467','8','{#FSTYPE}','^(btrfs|zfs)$'), ('4222','4468','8','{#FSTYPE}','^(btrfs|zfs)$'), ('4223','4469','8','{#EXTERNAL_SENSOR1_NAME}','Temp'), ('4224','4470','8','{#EXTERNAL_SENSOR2_NAME}','Temp'), ('4225','4471','8','{#EXTERNAL_SENSOR1_NAME}','Temp'), ('4226','4472','8','{#EXTERNAL_SENSOR2_NAME}','Temp'), ('4227','4473','8','{#EXTERNAL_SENSOR1_NAME}','Temp'), ('4228','4474','8','{#EXTERNAL_SENSOR2_NAME}','Temp'), ('4229','4475','8','{#EXTERNAL_SENSOR1_NAME}','Temp'), ('4230','4476','8','{#EXTERNAL_SENSOR2_NAME}','Temp'), ('4231','4477','8','{#EXTERNAL_SENSOR1_NAME}','Temp'), ('4232','4478','8','{#EXTERNAL_SENSOR2_NAME}','Temp'), ('4233','4479','8','{#EXTERNAL_SENSOR1_NAME}','Temp'), ('4234','4480','8','{#EXTERNAL_SENSOR2_NAME}','Temp'), ('4235','4481','8','{#EXTERNAL_SENSOR1_NAME}','Temp'), ('4236','4482','8','{#EXTERNAL_SENSOR2_NAME}','Temp'), ('4237','4483','8','{#EXTERNAL_SENSOR1_NAME}','Temp'), ('4238','4484','8','{#EXTERNAL_SENSOR2_NAME}','Temp'), ('4239','4485','8','{#EXTERNAL_SENSOR1_NAME}','Temp'), ('4240','4486','8','{#EXTERNAL_SENSOR2_NAME}','Temp'), ('4241','4487','8','{#EXTERNAL_SENSOR1_NAME}','Temp'), ('4242','4488','8','{#EXTERNAL_SENSOR2_NAME}','Temp'), ('4243','4489','8','{#EXTERNAL_SENSOR1_NAME}','Temp'), ('4244','4490','8','{#EXTERNAL_SENSOR2_NAME}','Temp'), ('4245','4491','8','{#TYPE}','8'), ('4246','4492','8','{#TYPE}','8'), ('4247','4493','8','{#FSTYPE}','3|4'), ('4248','4500','8','{#ATTRIBUTES}','Bad_Block_Rate'), ('4249','4501','9','{#DISKTYPE}','nvme'), ('4250','4502','8','{#ATTRIBUTES}','Power_Cycle_Count'), ('4251','4503','8','{#ATTRIBUTES}','Program_Fail_Count_Chip'), ('4252','4504','8','{#ATTRIBUTES}','Raw_Read_Error_Rate'), ('4253','4505','8','{#ATTRIBUTES}','Reallocated_Sector_Ct'), ('4254','4506','8','{#ATTRIBUTES}','Reported_Uncorrect'), ('4255','4507','8','{#ATTRIBUTES}','Seek_Error_Rate'), ('4256','4508','8','{#DISKTYPE}','nvme'), ('4257','4509','8','{#ATTRIBUTES}','Spin_Up_Time'), ('4258','4510','8','{#ATTRIBUTES}','Start_Stop_Count'), ('4259','4511','8','{#ATTRIBUTES}','Bad_Block_Rate'), ('4260','4512','9','{#DISKTYPE}','nvme'), ('4261','4513','8','{#ATTRIBUTES}','Power_Cycle_Count'), ('4262','4514','8','{#ATTRIBUTES}','Program_Fail_Count_Chip'), ('4263','4515','8','{#ATTRIBUTES}','Raw_Read_Error_Rate'), ('4264','4516','8','{#ATTRIBUTES}','Reallocated_Sector_Ct'), ('4265','4517','8','{#ATTRIBUTES}','Reported_Uncorrect'), ('4266','4518','8','{#ATTRIBUTES}','Seek_Error_Rate'), ('4267','4519','8','{#DISKTYPE}','nvme'), ('4268','4520','8','{#ATTRIBUTES}','Spin_Up_Time'), ('4269','4521','8','{#ATTRIBUTES}','Start_Stop_Count'), ('4270','4522','8','{#AWS.ECS.CLUSTER.INFRASTRUCTURE}','^serverless$'), ('4271','4523','8','{#AWS.ECS.CLUSTER.INFRASTRUCTURE}','^use_ecs2$'), ('4272','4524','8','{#TYPE}','^(cloud_service_status|platform|other)$'), ('4273','4525','8','{#DRIVE_TYPE}','SSD'), ('4274','4526','8','{#RECOVERY_MODEL}','3'), ('4275','4527','8','{#AWS.ELB.TYPE}','^application$'), ('4276','4528','8','{#RECOVERY_MODEL}','3'), ('4277','4529','8','{#AWS.ELB.TYPE}','^network$'), ('4278','4530','8','{#FSTYPE}','^(btrfs|zfs)$'), ('4279','4531','12','{#PROXY.GROUP}',''), ('4280','4532','12','{#PROXY.GROUP}',''), ('4281','4533','12','{#PROXY.GROUP}',''), ('4282','4534','8','{#VMWARE.ALARMS.STATUS}','red'), ('4283','4535','8','{#VMWARE.ALARMS.STATUS}','yellow'), ('4284','4536','8','{#VMWARE.ALARMS.STATUS}','green'), ('4285','4537','8','{#DATASTORE.TYPE}','vsan|nfs'), ('4286','4538','8','{#DATASTORE.TYPE}','vsan|nfs'), ('4287','4539','8','{#DATASTORE.TYPE}','vsan'), ('4288','4540','8','{#VMWARE.ALARMS.STATUS}','red'), ('4289','4541','8','{#VMWARE.ALARMS.STATUS}','yellow'), ('4290','4542','8','{#VMWARE.ALARMS.STATUS}','green'), ('4291','4543','8','{#DATASTORE.TYPE}','vsan|nfs'), ('4292','4544','8','{#HAMODE}','^Active-Passive$'), ('4293','4545','9','{#IFSPEED}',E'\\d+'), ('4294','4546','9','{#IFZONE}','^null$'), ('4295','4547','12','{#PROXY.GROUP}',''), ('4296','4548','12','{#PROXY.GROUP}',''), ('4297','4415','8','{#VERSION}','^(?=.*serverless)(?=.*vcore).*$'), ('4298','4414','8','{#VERSION}','^(?!.*serverless)(?=.*vcore).*$'), ('4299','4549','8','{#VERSION}','^(?!.*serverless)(?!.*vcore).*$'), ('4300','4550','8','{#CTRL}','^CT[0-9]+$'), ('4301','4551','8','{#CTRL}','^CH[0-9]+$'), ('4302','4552','8','{#CTRL}','^CT[0-9]+$'), ('4303','4553','8','{#CTRL}','^CH[0-9]+$'), ('4304','4554','8','{#AWS.BACKUP_JOB.TYPE}','^copy-job&'), ('4305','4555','8','{#AWS.BACKUP_JOB.TYPE}','^restore-job&'), ('4306','4400','8','{#ENDPOINT}','zabbix-helm-chart-agent.*'), ('4307','4556','13','{#NODE.DELAY}',''), ('4308','4557','13','{#POOL.USED.CAPACITY}',''); INSERT INTO lld_override_operation (lld_override_operationid,lld_overrideid,operationobject,operator,value) VALUES ('4539','4383','0','2','Aggregated status'), ('4540','4383','0','2','State'), ('4541','4384','0','2','Check'), ('4542','4385','1','2','Too many failed gRPC requests'), ('4543','4386','0','2','Number of responses with codes'), ('4544','4387','0','2','Number of responses with codes'), ('4545','4388','0','2','Number of responses with codes'), ('4546','4389','0','2','Number of responses with codes'), ('4547','4390','0','2','Number of responses with codes'), ('4548','4391','0','2','Number of responses with codes'), ('4551','4394','0','2','bucket'), ('4552','4395','0','3','bucket'), ('4553','4396','0','2','bucket'), ('4554','4397','0','3','bucket'), ('4555','4398','0','2','bucket'), ('4556','4399','0','3','bucket'), ('4557','4400','3','8',''), ('4558','4401','0','2','bucket'), ('4559','4402','0','3','bucket'), ('4560','4403','0','2','bucket'), ('4561','4404','0','3','bucket'), ('4562','4405','0','2','bucket'), ('4563','4406','0','3','bucket'), ('4564','4407','0','8','status phase.*sum'), ('4565','4407','0','9','status phase.*sum'), ('4566','4407','1','8','.*'), ('4567','4408','0','8','status phase.*sum'), ('4568','4408','0','9','status phase.*sum'), ('4569','4408','1','8','.*'), ('4570','4409','1','2','Invalid video stream resolution parameters'), ('4571','4410','3','8',''), ('4572','4411','3','8',''), ('4573','4412','3','8',''), ('4574','4413','3','8',''), ('4575','4414','3','8',''), ('4576','4415','3','8',''), ('4577','4416','3','8',''), ('4578','4417','3','8',''), ('4579','4418','3','8',''), ('4580','4419','3','8',''), ('4581','4420','0','2','Replication lag'), ('4582','4421','0','2','Number of replicas'), ('4583','4421','0','2','Unhealthy replicas'), ('4584','4421','0','2','Number of unhealthy replicas'), ('4585','4421','0','2','Replication lag'), ('4586','4422','1','2','Too many missed regions'), ('4587','4423','1','2','There are unresponsive peers'), ('4588','4424','1','2','Too many failed GC-related operations'), ('4589','4425','1','2','Too many failure messages'), ('4590','4426','1','8','Temperature is below the warning threshold'), ('4591','4427','1','8','Temperature is below the critical threshold'), ('4592','4428','1','8','Temperature is above the warning threshold'), ('4593','4429','1','8','Temperature is above the critical threshold'), ('4594','4430','1','8','Fan speed is below the warning threshold'), ('4595','4431','1','8','Fan speed is below the critical threshold'), ('4596','4432','1','8','Fan speed is above the warning threshold'), ('4597','4433','1','8','Fan speed is above the critical threshold'), ('4598','4434','1','8','Voltage is below the warning threshold'), ('4599','4435','1','8','Voltage is below the critical threshold'), ('4600','4436','1','8','Voltage is above the warning threshold'), ('4601','4437','1','8','Voltage is above the critical threshold'), ('4602','4438','1','8','.*'), ('4604','4440','1','8','.*'), ('4605','4441','1','8','.*'), ('4606','4442','1','8','.*'), ('4607','4443','1','8','.*'), ('4608','4444','1','8','.*'), ('4609','4445','1','8','.*'), ('4610','4446','1','8','.*'), ('4611','4447','1','8','.*'), ('4612','4448','1','8','.*'), ('4613','4449','1','8','.*'), ('4614','4450','1','8','.*'), ('4615','4451','1','8','.*'), ('4616','4452','1','8','.*'), ('4617','4453','1','8','.*'), ('4618','4454','1','8','.*'), ('4619','4455','1','8','.*'), ('4620','4456','1','8','.*'), ('4621','4457','1','8','.*'), ('4622','4458','1','8','.*'), ('4629','4465','0','8','.+'), ('4633','4469','0','2','Humidity'), ('4634','4470','0','2','Humidity'), ('4635','4471','0','2','Humidity'), ('4636','4472','0','2','Humidity'), ('4637','4473','0','2','Humidity'), ('4638','4474','0','2','Humidity'), ('4639','4475','0','2','Humidity'), ('4640','4476','0','2','Humidity'), ('4641','4477','0','2','Humidity'), ('4642','4478','0','2','Humidity'), ('4643','4479','0','2','Humidity'), ('4644','4480','0','2','Humidity'), ('4645','4481','0','2','Humidity'), ('4646','4482','0','2','Humidity'), ('4647','4483','0','2','Humidity'), ('4648','4484','0','2','Humidity'), ('4649','4485','0','2','Humidity'), ('4650','4486','0','2','Humidity'), ('4651','4487','0','2','Humidity'), ('4652','4488','0','2','Humidity'), ('4653','4489','0','2','Humidity'), ('4654','4490','0','2','Humidity'), ('4655','4491','0','8','SSD life left'), ('4656','4492','0','8','SSD life left'), ('4657','4493','0','2','Saved'), ('4658','4494','1','2','{#SENSOR_HI_CRIT}'), ('4659','4495','1','2','{#SENSOR_HI_DISAST}'), ('4660','4496','1','2','{#SENSOR_HI_WARN}'), ('4661','4497','1','2','{#SENSOR_LO_CRIT}'), ('4662','4498','1','2','{#SENSOR_LO_DISAST}'), ('4663','4499','1','2','{#SENSOR_LO_WARN}'), ('4664','4500','0','8','Bad_Block_Rate'), ('4665','4501','0','8','Media|Percentage|Critical'), ('4666','4502','0','8','Power_Cycle_Count'), ('4667','4503','0','8','Program_Fail_Count_Chip'), ('4668','4504','0','8','Raw_Read_Error_Rate'), ('4669','4505','0','8','Reallocated_Sector_Ct'), ('4670','4506','0','8','Reported_Uncorrect'), ('4671','4507','0','8','Seek_Error_Rate'), ('4672','4508','0','2','Self-test'), ('4673','4509','0','8','Spin_Up_Time'), ('4674','4510','0','8','Start_Stop_Count'), ('4675','4511','0','8','Bad_Block_Rate'), ('4676','4512','0','8','Media|Percentage|Critical'), ('4677','4513','0','8','Power_Cycle_Count'), ('4678','4514','0','8','Program_Fail_Count_Chip'), ('4679','4515','0','8','Raw_Read_Error_Rate'), ('4680','4516','0','8','Reallocated_Sector_Ct'), ('4681','4517','0','8','Reported_Uncorrect'), ('4682','4518','0','8','Seek_Error_Rate'), ('4683','4519','0','2','Self-test'), ('4684','4520','0','8','Spin_Up_Time'), ('4685','4521','0','8','Start_Stop_Count'), ('4686','4522','3','8',''), ('4687','4523','3','8',''), ('4688','4524','0','2',': Expiration date'), ('4689','4524','0','2',': Last attempt to update'), ('4690','4524','0','2',': Last update time'), ('4691','4524','0','2',': Service version'), ('4692','4524','0','2',': Update method'), ('4693','4524','0','2',': Update result'), ('4694','4525','0','8','Predicted media life left'), ('4695','4526','1','2','Log backup is old'), ('4696','4527','3','8',''), ('4697','4528','1','2','Log backup is old'), ('4698','4529','3','8',''), ('4699','4459','0','2','Inodes'), ('4700','4460','0','2','Inodes'), ('4701','4461','0','2','Inodes'), ('4702','4462','0','2','Inodes'), ('4703','4463','0','2','Inodes'), ('4704','4464','0','2','Inodes'), ('4705','4530','0','2','Inodes'), ('4706','4466','0','2','Inodes'), ('4707','4467','0','2','Inodes'), ('4708','4468','0','2','Inodes'), ('4709','4531','0','8',''), ('4710','4532','0','8',''), ('4711','4533','0','8',''), ('4712','4534','1','8','VMware: *'), ('4713','4535','1','8','VMware: *'), ('4714','4536','1','8','VMware: *'), ('4715','4537','0','2','Average'), ('4716','4538','0','2','Average'), ('4717','4539','0','2','Multipath count for datastore'), ('4718','4540','1','8','VMware: *'), ('4719','4541','1','8','VMware: *'), ('4720','4542','1','8','VMware: *'), ('4721','4543','0','2','Average'), ('4722','4544','1','0','HA is in "tentative" state'), ('4723','4545','0','8','Speed'), ('4724','4545','1','8','High bandwidth usage'), ('4725','4546','0','8','.+'), ('4726','4547','0','8',''), ('4727','4548','0','8',''), ('4728','4549','3','8',''), ('4729','4550','0','8','.*'), ('4730','4551','0','8','.*'), ('4731','4552','0','8','.*'), ('4732','4553','0','8','.*'), ('4733','4439','1','2','Low free space in file system'), ('4734','4554','1','2','Job aborted'), ('4735','4554','1','2','Job expired'), ('4736','4555','1','2','Job expired'), ('4737','4555','1','2','Job partially completed'), ('4738','4556','0','2','Average latency'), ('4739','4557','0','2','Capacity used'); INSERT INTO lld_override_opstatus (lld_override_operationid,status) VALUES ('4542','0'), ('4543','0'), ('4544','0'), ('4545','0'), ('4546','0'), ('4547','0'), ('4548','0'), ('4557','0'), ('4570','0'), ('4582','0'), ('4583','0'), ('4584','0'), ('4586','0'), ('4587','0'), ('4588','0'), ('4589','0'); INSERT INTO lld_override_opdiscover (lld_override_operationid,discover) VALUES ('4539','0'), ('4540','0'), ('4541','0'), ('4542','0'), ('4543','1'), ('4544','1'), ('4545','1'), ('4546','1'), ('4547','1'), ('4548','1'), ('4551','0'), ('4552','0'), ('4553','0'), ('4554','0'), ('4555','0'), ('4556','0'), ('4557','0'), ('4558','0'), ('4559','0'), ('4560','0'), ('4561','0'), ('4562','0'), ('4563','0'), ('4564','0'), ('4565','1'), ('4566','1'), ('4567','0'), ('4568','1'), ('4569','1'), ('4570','1'), ('4581','1'), ('4582','0'), ('4583','0'), ('4584','0'), ('4585','1'), ('4586','0'), ('4587','0'), ('4588','0'), ('4589','0'), ('4590','1'), ('4591','1'), ('4592','1'), ('4593','1'), ('4594','1'), ('4595','1'), ('4596','1'), ('4597','1'), ('4598','1'), ('4599','1'), ('4600','1'), ('4601','1'), ('4602','1'), ('4604','1'), ('4605','1'), ('4606','1'), ('4607','1'), ('4608','1'), ('4609','1'), ('4610','1'), ('4611','1'), ('4612','1'), ('4613','1'), ('4614','0'), ('4615','1'), ('4616','1'), ('4617','1'), ('4618','1'), ('4619','1'), ('4620','1'), ('4621','1'), ('4622','1'), ('4629','1'), ('4633','1'), ('4634','1'), ('4635','1'), ('4636','1'), ('4637','1'), ('4638','1'), ('4639','1'), ('4640','1'), ('4641','1'), ('4642','1'), ('4643','1'), ('4644','1'), ('4645','1'), ('4646','1'), ('4647','1'), ('4648','1'), ('4649','1'), ('4650','1'), ('4651','1'), ('4652','1'), ('4653','1'), ('4654','1'), ('4655','0'), ('4656','0'), ('4657','1'), ('4658','1'), ('4659','1'), ('4660','1'), ('4661','1'), ('4662','1'), ('4663','1'), ('4664','0'), ('4665','1'), ('4666','0'), ('4667','0'), ('4668','0'), ('4669','0'), ('4670','0'), ('4671','0'), ('4672','1'), ('4673','0'), ('4674','0'), ('4675','0'), ('4676','1'), ('4677','0'), ('4678','0'), ('4679','0'), ('4680','0'), ('4681','0'), ('4682','0'), ('4683','1'), ('4684','0'), ('4685','0'), ('4688','1'), ('4689','1'), ('4690','1'), ('4691','1'), ('4692','1'), ('4693','1'), ('4694','0'), ('4695','1'), ('4697','1'), ('4699','1'), ('4700','1'), ('4701','1'), ('4702','1'), ('4703','1'), ('4704','1'), ('4705','1'), ('4706','1'), ('4707','1'), ('4708','1'), ('4715','1'), ('4716','1'), ('4717','1'), ('4721','1'), ('4722','1'), ('4723','1'), ('4724','1'), ('4733','1'), ('4734','1'), ('4735','1'), ('4736','1'), ('4737','1'), ('4738','1'), ('4739','1'); INSERT INTO lld_override_opseverity (lld_override_operationid,severity) VALUES ('4712','4'), ('4713','2'), ('4714','1'), ('4718','4'), ('4719','2'), ('4720','1'); INSERT INTO lld_override_optag (lld_override_optagid,lld_override_operationid,tag,value) VALUES ('1','4578','master_instance','{#CLOUD_SQL.MASTER}'), ('2','4579','master_instance','{#CLOUD_SQL.MASTER}'), ('3','4580','master_instance','{#CLOUD_SQL.MASTER}'), ('4','4709','proxy-group','{#PROXY.GROUP}'), ('5','4710','proxy-group','{#PROXY.GROUP}'), ('6','4711','proxy-group','{#PROXY.GROUP}'), ('7','4725','zone','{#IFZONE}'), ('8','4726','proxy-group','{#PROXY.GROUP}'), ('9','4727','proxy-group','{#PROXY.GROUP}'), ('10','4729','controller','{#CTRL}'), ('11','4730','chassis','{#CTRL}'), ('12','4731','controller','{#CTRL}'), ('13','4732','chassis','{#CTRL}'); INSERT INTO lld_override_optemplate (lld_override_optemplateid,lld_override_operationid,templateid) VALUES ('37','4571','10539'), ('38','4572','10540'), ('39','4573','10543'), ('40','4574','10544'), ('41','4575','10557'), ('42','4576','10558'), ('43','4577','10568'), ('44','4578','10572'), ('45','4579','10574'), ('46','4580','10576'), ('47','4686','10584'), ('48','4687','10583'), ('49','4696','10607'), ('50','4698','10627'), ('51','4728','10662'); INSERT INTO item_parameter (item_parameterid,itemid,name,value) VALUES ('1','32463','api_endpoint','{$ARANET.API.ENDPOINT}'), ('2','32463','password','{$ARANET.API.PASSWORD}'), ('3','32463','space_name','{$ARANET.API.SPACE_NAME}'), ('4','32463','username','{$ARANET.API.USERNAME}'), ('5','32783','host','{$VAULT.HOST}'), ('6','32783','accessors','{$VAULT.TOKEN.ACCESSORS}'), ('7','32783','token','{$VAULT.TOKEN}'), ('8','32783','scheme','{$VAULT.API.SCHEME}'), ('9','32783','port','{$VAULT.API.PORT}'), ('10','33630','root','{$SHAREPOINT.ROOT}'), ('11','33630','password','{$SHAREPOINT.PASSWORD}'), ('12','33630','url','{$SHAREPOINT.URL}'), ('13','33630','user','{$SHAREPOINT.USER}'), ('14','33634','password','{$SHAREPOINT.PASSWORD}'), ('15','33634','root','{$SHAREPOINT.ROOT}'), ('16','33634','url','{$SHAREPOINT.URL}'), ('17','33634','user','{$SHAREPOINT.USER}'), ('18','35077','token','{$CLOUDFLARE.API.TOKEN}'), ('19','35077','zone','{$CLOUDFLARE.ZONE_ID}'), ('20','35077','api_endpoint','{$CLOUDFLARE.API.URL}'), ('21','39743','token','{$VELOCLOUD.TOKEN}'), ('22','39743','url','{$VELOCLOUD.URL}'), ('28','40011','api_server_scheme','{$KUBE.API_SERVER.SCHEME}'), ('29','40011','api_server_port','{$KUBE.API_SERVER.PORT}'), ('30','40011','controller_scheme','{$KUBE.CONTROLLER_MANAGER.SCHEME}'), ('31','40011','controller_port','{$KUBE.CONTROLLER_MANAGER.PORT}'), ('32','40011','scheduler_scheme','{$KUBE.SCHEDULER.SCHEME}'), ('33','40011','scheduler_port','{$KUBE.SCHEDULER.PORT}'), ('36','40014','state_endpoint_name','{$KUBE.STATE.ENDPOINT.NAME}'), ('41','40015','kubelet_scheme','{$KUBE.KUBELET.SCHEME}'), ('42','40015','kubelet_port','{$KUBE.KUBELET.PORT}'), ('43','39937','endpoint_name','{$KUBE.NODES.ENDPOINT.NAME}'), ('47','42724','apikey','{$OPENWEATHERMAP.API.TOKEN}'), ('48','42724','api_endpoint','{$OPENWEATHERMAP.API.ENDPOINT}'), ('49','42724','lang','{$LANG}'), ('50','42724','location','{$LOCATION}'), ('51','42724','units','{$UNITS}'), ('52','42738','token','{$PVE.TOKEN.ID}'), ('53','42738','secret','{$PVE.TOKEN.SECRET}'), ('54','42738','url','{$PVE.URL.HOST}'), ('55','42738','port','{$PVE.URL.PORT}'), ('56','43081','api_endpoint','{$CONSUL.NODE.API.URL}'), ('57','43081','token','{$CONSUL.TOKEN}'), ('58','43174','base_url','{$HPE.MSA.API.SCHEME}://{$HPE.MSA.API.HOST}:{$HPE.MSA.API.PORT}/'), ('59','43174','username','{$HPE.MSA.API.USERNAME}'), ('60','43174','password','{$HPE.MSA.API.PASSWORD}'), ('61','43281','base_url','{$HPE.MSA.API.SCHEME}://{$HPE.MSA.API.HOST}:{$HPE.MSA.API.PORT}/'), ('62','43281','username','{$HPE.MSA.API.USERNAME}'), ('63','43281','password','{$HPE.MSA.API.PASSWORD}'), ('64','43399','base_url','{$HPE.PRIMERA.API.SCHEME}://{$HPE.PRIMERA.API.HOST}:{$HPE.PRIMERA.API.PORT}'), ('65','43399','password','{$HPE.PRIMERA.API.PASSWORD}'), ('66','43399','username','{$HPE.PRIMERA.API.USERNAME}'), ('69','43497','region','{$AWS.REGION}'), ('70','43497','instance_id','{$AWS.EC2.INSTANCE.ID}'), ('73','43498','region','{$AWS.REGION}'), ('74','43498','instance_id','{$AWS.EC2.INSTANCE.ID}'), ('77','43499','region','{$AWS.REGION}'), ('78','43499','instance_id','{$AWS.EC2.INSTANCE.ID}'), ('81','43528','region','{$AWS.REGION}'), ('82','43528','volume_id','{#VOLUME_ID}'), ('85','43592','region','{$AWS.REGION}'), ('86','43592','db_instance_id','{$AWS.RDS.INSTANCE.ID}'), ('89','43593','region','{$AWS.REGION}'), ('90','43593','db_instance_id','{$AWS.RDS.INSTANCE.ID}'), ('93','43594','region','{$AWS.REGION}'), ('94','43594','db_instance_id','{$AWS.RDS.INSTANCE.ID}'), ('97','43595','region','{$AWS.REGION}'), ('98','43595','db_instance_id','{$AWS.RDS.INSTANCE.ID}'), ('103','43684','bucket_name','{$AWS.S3.BUCKET.NAME}'), ('107','43685','bucket_name','{$AWS.S3.BUCKET.NAME}'), ('108','43714','app_id','{$AZURE.APP.ID}'), ('109','43714','password','{$AZURE.PASSWORD}'), ('110','43714','tenant_id','{$AZURE.TENANT.ID}'), ('111','43714','subscription_id','{$AZURE.SUBSCRIPTION.ID}'), ('112','43715','app_id','{$AZURE.APP.ID}'), ('113','43715','password','{$AZURE.PASSWORD}'), ('114','43715','tenant_id','{$AZURE.TENANT.ID}'), ('115','43715','subscription_id','{$AZURE.SUBSCRIPTION.ID}'), ('116','43715','resource_id','{$AZURE.RESOURCE.ID}'), ('117','43901','base_url','{$HPE.SYNERGY.API.SCHEME}://{$HPE.SYNERGY.API.HOST}:{$HPE.SYNERGY.API.PORT}'), ('118','43901','password','{$HPE.SYNERGY.API.PASSWORD}'), ('119','43901','username','{$HPE.SYNERGY.API.USERNAME}'), ('128','44161','app_id','{$AZURE.APP.ID}'), ('129','44161','password','{$AZURE.PASSWORD}'), ('130','44161','tenant_id','{$AZURE.TENANT.ID}'), ('131','44161','subscription_id','{$AZURE.SUBSCRIPTION.ID}'), ('132','44161','resource_id','{$AZURE.RESOURCE.ID}'), ('133','44162','app_id','{$AZURE.APP.ID}'), ('134','44162','password','{$AZURE.PASSWORD}'), ('135','44162','tenant_id','{$AZURE.TENANT.ID}'), ('136','44162','subscription_id','{$AZURE.SUBSCRIPTION.ID}'), ('137','44162','resource_id','{$AZURE.RESOURCE.ID}'), ('138','44248','app_id','{$AZURE.APP.ID}'), ('139','44248','password','{$AZURE.PASSWORD}'), ('140','44248','tenant_id','{$AZURE.TENANT.ID}'), ('141','44248','subscription_id','{$AZURE.SUBSCRIPTION.ID}'), ('142','44248','resource_id','{$AZURE.RESOURCE.ID}'), ('143','44249','app_id','{$AZURE.APP.ID}'), ('144','44249','password','{$AZURE.PASSWORD}'), ('145','44249','tenant_id','{$AZURE.TENANT.ID}'), ('146','44249','subscription_id','{$AZURE.SUBSCRIPTION.ID}'), ('147','44249','resource_id','{$AZURE.RESOURCE.ID}'), ('148','44294','token','{$MERAKI.TOKEN}'), ('149','44294','url','{$MERAKI.API.URL}'), ('150','44294','httpproxy','{$MERAKI.HTTP_PROXY}'), ('151','44295','token','{$MERAKI.TOKEN}'), ('152','44295','url','{$MERAKI.API.URL}'), ('153','44295','organizationId','{$ORGANIZATION_ID}'), ('154','44295','httpproxy','{$MERAKI.HTTP_PROXY}'), ('155','44295','serial','{$SERIAL}'), ('156','44299','token','{$MERAKI.TOKEN}'), ('157','44299','url','{$MERAKI.API.URL}'), ('158','44299','organizationId','{$ID}'), ('159','44299','httpproxy','{$MERAKI.HTTP_PROXY}'), ('160','44300','token','{$MERAKI.TOKEN}'), ('161','44300','url','{$MERAKI.API.URL}'), ('162','44300','organizationId','{$ID}'), ('163','44300','httpproxy','{$MERAKI.HTTP_PROXY}'), ('164','43497','proxy','{$AWS.PROXY}'), ('165','43498','proxy','{$AWS.PROXY}'), ('166','43499','proxy','{$AWS.PROXY}'), ('167','43528','proxy','{$AWS.PROXY}'), ('168','44052','proxy','{$AWS.PROXY}'), ('169','44053','proxy','{$AWS.PROXY}'), ('170','44054','proxy','{$AWS.PROXY}'), ('171','43592','proxy','{$AWS.PROXY}'), ('172','43593','proxy','{$AWS.PROXY}'), ('173','43594','proxy','{$AWS.PROXY}'), ('174','43595','proxy','{$AWS.PROXY}'), ('175','43684','proxy','{$AWS.PROXY}'), ('176','43685','proxy','{$AWS.PROXY}'), ('177','44494','api_endpoint','{$VEEAM.API.URL}'), ('178','44494','password','{$VEEAM.PASSWORD}'), ('179','44494','user','{$VEEAM.USER}'), ('180','44494','created_after','{$CREATED.AFTER}'), ('181','44494','http_proxy','{$VEEAM.HTTP.PROXY}'), ('182','44516','api_endpoint','{$VEEAM.MANAGER.API.URL}'), ('183','44516','password','{$VEEAM.MANAGER.PASSWORD}'), ('184','44516','user','{$VEEAM.MANAGER.USER}'), ('185','44516','http_proxy','{$VEEAM.MANAGER.HTTP.PROXY}'), ('186','44530','app_id','{$AZURE.APP.ID}'), ('187','44530','password','{$AZURE.PASSWORD}'), ('188','44530','tenant_id','{$AZURE.TENANT.ID}'), ('189','44530','subscription_id','{$AZURE.SUBSCRIPTION.ID}'), ('190','44530','resource_id','{$AZURE.RESOURCE.ID}'), ('191','44531','app_id','{$AZURE.APP.ID}'), ('192','44531','password','{$AZURE.PASSWORD}'), ('193','44531','tenant_id','{$AZURE.TENANT.ID}'), ('194','44531','subscription_id','{$AZURE.SUBSCRIPTION.ID}'), ('195','44531','resource_id','{$AZURE.RESOURCE.ID}'), ('196','39937','api_url','{$KUBE.API.URL}'), ('197','39937','api_token','{$KUBE.API.TOKEN}'), ('198','39937','pod_filter_labels','{$KUBE.POD.FILTER.LABELS}'), ('199','39937','pod_filter_annotations','{$KUBE.POD.FILTER.ANNOTATIONS}'), ('200','39937','node_filter_labels','{$KUBE.NODE.FILTER.LABELS}'), ('201','39937','node_filter_annotations','{$KUBE.NODE.FILTER.ANNOTATIONS}'), ('202','39937','http_proxy','{$KUBE.HTTP.PROXY}'), ('203','44795','app_id','{$AZURE.APP.ID}'), ('204','44795','password','{$AZURE.PASSWORD}'), ('205','44795','tenant_id','{$AZURE.TENANT.ID}'), ('206','44795','subscription_id','{$AZURE.SUBSCRIPTION.ID}'), ('207','44796','app_id','{$AZURE.APP.ID}'), ('208','44796','password','{$AZURE.PASSWORD}'), ('209','44796','tenant_id','{$AZURE.TENANT.ID}'), ('210','44796','subscription_id','{$AZURE.SUBSCRIPTION.ID}'), ('211','44796','resource_id','{$AZURE.RESOURCE.ID}'), ('212','44820','id','{#ID}'), ('213','44820','token','{#TOKEN}'), ('214','44866','pkey_id','{$GCP.PRIVATE.KEY.ID}'), ('215','44866','email','{$GCP.CLIENT.EMAIL}'), ('216','44866','private_key','{$GCP.PRIVATE.KEY}'), ('217','44868','project_id','{$GCP.PROJECT.ID}'), ('218','44868','time_window','{$GCP.TIME.WINDOW}'), ('219','44868','database_id','{$GCP.PROJECT.ID}:{HOST.NAME}'), ('220','44868','token','{$GCP.AUTH.TOKEN}'), ('221','44869','project_id','{$GCP.PROJECT.ID}'), ('222','44869','time_window','{$GCP.TIME.WINDOW}'), ('223','44869','database_id','{$GCP.PROJECT.ID}:{HOST.NAME}'), ('224','44869','token','{$GCP.AUTH.TOKEN}'), ('225','44869','audited','{$CLOUD_SQL.MSSQL.AUDITED}'), ('226','44870','project_id','{$GCP.PROJECT.ID}'), ('227','44870','time_window','{$GCP.TIME.WINDOW}'), ('228','44870','database_id','{$GCP.PROJECT.ID}:{HOST.NAME}'), ('229','44870','token','{$GCP.AUTH.TOKEN}'), ('230','44871','project_id','{$GCP.PROJECT.ID}'), ('231','44871','time_window','{$GCP.TIME.WINDOW}'), ('232','44871','database_id','{$GCP.PROJECT.ID}:{HOST.NAME}'), ('233','44871','token','{$GCP.AUTH.TOKEN}'), ('234','44873','project_id','{$GCP.PROJECT.ID}'), ('235','44873','time_window','{$GCP.TIME.WINDOW}'), ('236','44873','database_id','{$GCP.PROJECT.ID}:{HOST.NAME}'), ('237','44873','token','{$GCP.AUTH.TOKEN}'), ('238','44876','project_id','{$GCP.PROJECT.ID}'), ('239','44876','time_window','{$GCP.TIME.WINDOW}'), ('240','44876','database_id','{$GCP.PROJECT.ID}:{HOST.NAME}'), ('241','44876','token','{$GCP.AUTH.TOKEN}'), ('242','44877','project_id','{$GCP.PROJECT.ID}'), ('243','44877','time_window','{$GCP.TIME.WINDOW}'), ('244','44877','database_id','{$GCP.PROJECT.ID}:{HOST.NAME}'), ('245','44877','token','{$GCP.AUTH.TOKEN}'), ('246','44878','project_id','{$GCP.PROJECT.ID}'), ('247','44878','time_window','{$GCP.TIME.WINDOW}'), ('248','44878','database_id','{$GCP.PROJECT.ID}:{HOST.NAME}'), ('249','44878','token','{$GCP.AUTH.TOKEN}'), ('250','44881','project_id','{$GCP.PROJECT.ID}'), ('251','44881','time_window','{$GCP.TIME.WINDOW}'), ('252','44881','database_id','{$GCP.PROJECT.ID}:{HOST.NAME}'), ('253','44881','token','{$GCP.AUTH.TOKEN}'), ('254','44882','project_id','{$GCP.PROJECT.ID}'), ('255','44882','time_window','{$GCP.TIME.WINDOW}'), ('256','44882','instance_id','{HOST.HOST}'), ('257','44882','token','{$GCP.AUTH.TOKEN}'), ('258','44882','machine_type','{$GCE.MACHINE.TYPE}'), ('259','44882','integrity','{$GCE.INTEGRITY.STATE}'), ('260','44883','project_id','{$GCP.PROJECT.ID}'), ('261','44883','time_window','{$GCP.TIME.WINDOW}'), ('262','44883','instance_id','{HOST.HOST}'), ('263','44883','token','{$GCP.AUTH.TOKEN}'), ('264','45044','project_id','{$GCP.PROJECT.ID}'), ('265','45044','time_window','{$GCP.TIME.WINDOW}'), ('266','45044','database_id','{$GCP.PROJECT.ID}:{HOST.NAME}'), ('267','45044','token','{$GCP.AUTH.TOKEN}'), ('268','45044','database_name','{#PGSQL.DB.NAME}'), ('269','40011','api_url','{$KUBE.API.URL}'), ('270','40011','api_token','{$KUBE.API.TOKEN}'), ('271','40011','control_plane_taint','{$KUBE.CONTROL_PLANE.TAINT}'), ('272','40011','http_proxy','{$KUBE.HTTP.PROXY}'), ('273','40014','api_url','{$KUBE.API.URL}'), ('274','40014','api_token','{$KUBE.API.TOKEN}'), ('275','40014','http_proxy','{$KUBE.HTTP.PROXY}'), ('276','40015','api_url','{$KUBE.API.URL}'), ('277','40015','api_token','{$KUBE.API.TOKEN}'), ('278','40015','node_filter_labels','{$KUBE.KUBELET.FILTER.LABELS}'), ('279','40015','node_filter_annotations','{$KUBE.KUBELET.FILTER.ANNOTATIONS}'), ('280','40015','http_proxy','{$KUBE.HTTP.PROXY}'), ('283','45521','region','{$AWS.BILLING.REGION}'), ('284','45521','proxy','{$AWS.PROXY}'), ('287','45522','region','{$AWS.BILLING.REGION}'), ('288','45522','proxy','{$AWS.PROXY}'), ('291','45529','region','{$AWS.REGION}'), ('292','45529','cluster_name','{$AWS.ECS.CLUSTER.NAME}'), ('293','45529','proxy','{$AWS.PROXY}'), ('296','45530','region','{$AWS.REGION}'), ('297','45530','cluster_name','{$AWS.ECS.CLUSTER.NAME}'), ('298','45530','proxy','{$AWS.PROXY}'), ('301','45531','region','{$AWS.REGION}'), ('302','45531','cluster_name','{$AWS.ECS.CLUSTER.NAME}'), ('303','45531','proxy','{$AWS.PROXY}'), ('306','45544','region','{$AWS.REGION}'), ('307','45544','cluster_name','{$AWS.ECS.CLUSTER.NAME}'), ('308','45544','service_name','{#AWS.ECS.SERVICE.NAME}'), ('309','45544','proxy','{$AWS.PROXY}'), ('312','45559','region','{$AWS.REGION}'), ('313','45559','cluster_name','{$AWS.ECS.CLUSTER.NAME}'), ('314','45559','proxy','{$AWS.PROXY}'), ('317','45560','region','{$AWS.REGION}'), ('318','45560','cluster_name','{$AWS.ECS.CLUSTER.NAME}'), ('319','45560','proxy','{$AWS.PROXY}'), ('322','45561','region','{$AWS.REGION}'), ('323','45561','cluster_name','{$AWS.ECS.CLUSTER.NAME}'), ('324','45561','proxy','{$AWS.PROXY}'), ('327','45576','region','{$AWS.REGION}'), ('328','45576','cluster_name','{$AWS.ECS.CLUSTER.NAME}'), ('329','45576','service_name','{#AWS.ECS.SERVICE.NAME}'), ('330','45576','proxy','{$AWS.PROXY}'), ('334','45595','proxy','{$AWS.PROXY}'), ('335','43714','proxy','{$AZURE.PROXY}'), ('336','43715','proxy','{$AZURE.PROXY}'), ('337','44161','proxy','{$AZURE.PROXY}'), ('338','44162','proxy','{$AZURE.PROXY}'), ('339','44248','proxy','{$AZURE.PROXY}'), ('340','44249','proxy','{$AZURE.PROXY}'), ('341','44530','proxy','{$AZURE.PROXY}'), ('342','44531','proxy','{$AZURE.PROXY}'), ('343','44795','proxy','{$AZURE.PROXY}'), ('344','44796','proxy','{$AZURE.PROXY}'), ('345','44820','proxy','{$AZURE.PROXY}'), ('346','45596','api_url','{$OPENSTACK.KEYSTONE.API.ENDPOINT}'), ('347','45596','app_cred_id','{$OPENSTACK.APP.CRED.ID}'), ('348','45596','app_cred_secret','{$OPENSTACK.APP.CRED.SECRET}'), ('349','45596','http_proxy','{$OPENSTACK.HTTP.PROXY}'), ('350','45605','api_url','{$OPENSTACK.NOVA.SERVICE.URL}'), ('351','45605','api_token','{$OPENSTACK.TOKEN}'), ('352','45605','period','{$OPENSTACK.NOVA.TENANT.PERIOD}'), ('353','45605','http_proxy','{$OPENSTACK.HTTP.PROXY}'), ('354','45743','url','{$SDWAN.API.URL}'), ('355','45743','username','{$SDWAN.API.USERNAME}'), ('356','45743','password','{$SDWAN.API.PASSWORD}'), ('357','45743','http_proxy','{$SDWAN.HTTP_PROXY}'), ('358','45745','url','{$SDWAN.API.URL}'), ('359','45745','token','{$SDWAN.AUTH.TOKEN}'), ('360','45745','cookie','{$SDWAN.AUTH.SESSION}'), ('361','45745','device_id','{$SDWAN.DEVICE_ID}'), ('362','45745','http_proxy','{$SDWAN.HTTP_PROXY}'), ('363','45745','interval','{$SDWAN.ROUTES.FREQUENCY}'), ('364','45746','url','{$SDWAN.API.URL}'), ('365','45746','token','{$SDWAN.AUTH.TOKEN}'), ('366','45746','cookie','{$SDWAN.AUTH.SESSION}'), ('367','45746','device_id','{$SDWAN.DEVICE_ID}'), ('368','45746','http_proxy','{$SDWAN.HTTP_PROXY}'), ('369','45747','url','{$SDWAN.API.URL}'), ('370','45747','token','{$SDWAN.AUTH.TOKEN}'), ('371','45747','cookie','{$SDWAN.AUTH.SESSION}'), ('372','45747','device_id','{$SDWAN.DEVICE_ID}'), ('373','45747','http_proxy','{$SDWAN.HTTP_PROXY}'), ('374','45853','api_endpoint','{$NOMAD.ENDPOINT.API.URL}'), ('375','45853','token','{$NOMAD.TOKEN}'), ('376','45853','http_proxy','{$NOMAD.HTTP.PROXY}'), ('377','45522','month','{$AWS.BILLING.MONTH}'), ('378','46054','api_token','{$ACRONIS.CPC.ACCESS_TOKEN}'), ('379','46054','api_url','{$ACRONIS.CPC.DATACENTER.URL}'), ('380','46054','tenant_uuid','{$ACRONIS.CPC.MSP.TENANT.UUID}'), ('381','45521','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('382','45521','auth_type','{$AWS.AUTH_TYPE}'), ('383','45521','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('384','45522','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('385','45522','auth_type','{$AWS.AUTH_TYPE}'), ('386','45522','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('387','43497','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('388','43497','auth_type','{$AWS.AUTH_TYPE}'), ('389','43497','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('390','43498','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('391','43498','auth_type','{$AWS.AUTH_TYPE}'), ('392','43498','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('393','43499','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('394','43499','auth_type','{$AWS.AUTH_TYPE}'), ('395','43499','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('396','43528','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('397','43528','auth_type','{$AWS.AUTH_TYPE}'), ('398','43528','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('399','45529','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('400','45529','auth_type','{$AWS.AUTH_TYPE}'), ('401','45529','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('402','45530','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('403','45530','auth_type','{$AWS.AUTH_TYPE}'), ('404','45530','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('405','45531','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('406','45531','auth_type','{$AWS.AUTH_TYPE}'), ('407','45531','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('408','45544','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('409','45544','auth_type','{$AWS.AUTH_TYPE}'), ('410','45544','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('411','45559','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('412','45559','auth_type','{$AWS.AUTH_TYPE}'), ('413','45559','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('414','45560','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('415','45560','auth_type','{$AWS.AUTH_TYPE}'), ('416','45560','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('417','45561','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('418','45561','auth_type','{$AWS.AUTH_TYPE}'), ('419','45561','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('420','45576','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('421','45576','auth_type','{$AWS.AUTH_TYPE}'), ('422','45576','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('423','44052','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('424','44052','auth_type','{$AWS.AUTH_TYPE}'), ('425','44052','region_match','{$AWS.EC2.LLD.FILTER.REGION.MATCHES}'), ('426','44052','region_not_match','{$AWS.EC2.LLD.FILTER.REGION.NOT_MATCHES}'), ('427','44052','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('428','44053','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('429','44053','auth_type','{$AWS.AUTH_TYPE}'), ('430','44053','region_match','{$AWS.RDS.LLD.FILTER.REGION.MATCHES}'), ('431','44053','region_not_match','{$AWS.RDS.LLD.FILTER.REGION.NOT_MATCHES}'), ('432','44053','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('433','44054','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('434','44054','auth_type','{$AWS.AUTH_TYPE}'), ('437','44054','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('438','45595','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('439','45595','auth_type','{$AWS.AUTH_TYPE}'), ('440','45595','region_match','{$AWS.ECS.LLD.FILTER.REGION.MATCHES}'), ('441','45595','region_not_match','{$AWS.ECS.LLD.FILTER.REGION.NOT_MATCHES}'), ('442','45595','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('443','43592','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('444','43592','auth_type','{$AWS.AUTH_TYPE}'), ('445','43592','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('446','43593','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('447','43593','auth_type','{$AWS.AUTH_TYPE}'), ('448','43593','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('449','43594','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('450','43594','auth_type','{$AWS.AUTH_TYPE}'), ('451','43594','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('452','43595','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('453','43595','auth_type','{$AWS.AUTH_TYPE}'), ('454','43595','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('455','43684','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('456','43684','auth_type','{$AWS.AUTH_TYPE}'), ('457','43684','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('458','43685','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('459','43685','auth_type','{$AWS.AUTH_TYPE}'), ('460','43685','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('461','46135','fqdn','{$FGATE.API.FQDN}'), ('462','46135','http_proxy','{$FGATE.HTTP.PROXY}'), ('463','46135','port','{$FGATE.API.PORT}'), ('464','46135','scheme','{$FGATE.SCHEME}'), ('465','46135','token','{$FGATE.API.TOKEN}'), ('466','46136','fqdn','{$FGATE.API.FQDN}'), ('467','46136','http_proxy','{$FGATE.HTTP.PROXY}'), ('468','46136','port','{$FGATE.API.PORT}'), ('469','46136','scheme','{$FGATE.SCHEME}'), ('470','46136','token','{$FGATE.API.TOKEN}'), ('471','46137','fqdn','{$FGATE.API.FQDN}'), ('472','46137','http_proxy','{$FGATE.HTTP.PROXY}'), ('473','46137','port','{$FGATE.API.PORT}'), ('474','46137','scheme','{$FGATE.SCHEME}'), ('475','46137','token','{$FGATE.API.TOKEN}'), ('476','46138','fqdn','{$FGATE.API.FQDN}'), ('477','46138','http_proxy','{$FGATE.HTTP.PROXY}'), ('478','46138','port','{$FGATE.API.PORT}'), ('479','46138','scheme','{$FGATE.SCHEME}'), ('480','46138','token','{$FGATE.API.TOKEN}'), ('481','46139','fqdn','{$FGATE.API.FQDN}'), ('482','46139','http_proxy','{$FGATE.HTTP.PROXY}'), ('483','46139','port','{$FGATE.API.PORT}'), ('484','46139','scheme','{$FGATE.SCHEME}'), ('485','46139','token','{$FGATE.API.TOKEN}'), ('486','46249','httpproxy','{$MERAKI.HTTP_PROXY}'), ('487','46249','organizationId','{$ID}'), ('488','46249','token','{$MERAKI.TOKEN}'), ('489','46249','url','{$MERAKI.API.URL}'), ('490','40014','openshift_endpoint_name','{$OPENSHIFT.STATE.ENDPOINT.NAME}'), ('491','46319','http_proxy','{$ILO.HTTP_PROXY}'), ('492','46319','ilo_url','{$ILO.URL}'), ('493','46319','password','{$ILO.PASSWORD}'), ('494','46319','user','{$ILO.USER}'), ('495','46374','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('496','46374','auth_type','{$AWS.AUTH_TYPE}'), ('497','46374','bucket_name','{$AWS.S3.BUCKET.NAME}'), ('498','46374','filter_id','{#AWS.S3.FILTER.ID.NAME}'), ('499','46374','proxy','{$AWS.PROXY}'), ('500','46374','region','{#AWS.S3.REGION}'), ('501','46374','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('502','46396','app_id','{$AZURE.APP.ID}'), ('503','46396','password','{$AZURE.PASSWORD}'), ('504','46396','proxy','{$AZURE.PROXY}'), ('505','46396','subscription_id','{$AZURE.SUBSCRIPTION.ID}'), ('506','46396','tenant_id','{$AZURE.TENANT.ID}'), ('507','46397','app_id','{$AZURE.APP.ID}'), ('508','46397','month','{$AZURE.BILLING.MONTH}'), ('509','46397','password','{$AZURE.PASSWORD}'), ('510','46397','proxy','{$AZURE.PROXY}'), ('511','46397','subscription_id','{$AZURE.SUBSCRIPTION.ID}'), ('512','46397','tenant_id','{$AZURE.TENANT.ID}'), ('513','44866','proxy','{$GCP.PROXY}'), ('514','44868','proxy','{$GCP.PROXY}'), ('515','44869','proxy','{$GCP.PROXY}'), ('516','44870','proxy','{$GCP.PROXY}'), ('517','44871','proxy','{$GCP.PROXY}'), ('518','44873','proxy','{$GCP.PROXY}'), ('519','44876','proxy','{$GCP.PROXY}'), ('520','44877','proxy','{$GCP.PROXY}'), ('521','44878','proxy','{$GCP.PROXY}'), ('522','44881','proxy','{$GCP.PROXY}'), ('523','44882','proxy','{$GCP.PROXY}'), ('524','44883','proxy','{$GCP.PROXY}'), ('525','45044','proxy','{$GCP.PROXY}'), ('526','46451','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('527','46451','arn','{$AWS.ELB.ARN}'), ('528','46451','auth_type','{$AWS.AUTH_TYPE}'), ('529','46451','proxy','{$AWS.PROXY}'), ('530','46451','region','{$AWS.REGION}'), ('531','46451','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('532','46452','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('533','46452','arn','{$AWS.ELB.ARN}'), ('534','46452','auth_type','{$AWS.AUTH_TYPE}'), ('535','46452','proxy','{$AWS.PROXY}'), ('536','46452','region','{$AWS.REGION}'), ('537','46452','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('538','46453','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('539','46453','arn','{$AWS.ELB.ARN}'), ('540','46453','auth_type','{$AWS.AUTH_TYPE}'), ('541','46453','proxy','{$AWS.PROXY}'), ('542','46453','region','{$AWS.REGION}'), ('543','46453','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('544','46485','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('545','46485','arn','{$AWS.ELB.ARN}'), ('546','46485','auth_type','{$AWS.AUTH_TYPE}'), ('547','46485','proxy','{$AWS.PROXY}'), ('548','46485','region','{$AWS.REGION}'), ('549','46485','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('550','46485','target_arn','{#AWS.ELB.TARGET.GROUP.ARN}'), ('551','46503','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('552','46503','auth_type','{$AWS.AUTH_TYPE}'), ('553','46503','proxy','{$AWS.PROXY}'), ('554','46503','region_match','{$AWS.ELB.LLD.FILTER.REGION.MATCHES}'), ('555','46503','region_not_match','{$AWS.ELB.LLD.FILTER.REGION.NOT_MATCHES}'), ('556','46503','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('557','46659','account_id','{$YUGABYTEDB.ACCOUNT.ID}'), ('558','46659','project_id','{$YUGABYTEDB.PROJECT.ID}'), ('559','46659','proxy','{$YUGABYTEDB.PROXY}'), ('560','46659','token','{$YUGABYTEDB.ACCESS.TOKEN}'), ('561','46662','account_id','{$YUGABYTEDB.ACCOUNT.ID}'), ('562','46662','cluster_id','{$YUGABYTEDB.CLUSTER.ID}'), ('563','46662','project_id','{$YUGABYTEDB.PROJECT.ID}'), ('564','46662','proxy','{$YUGABYTEDB.PROXY}'), ('565','46662','token','{$YUGABYTEDB.ACCESS.TOKEN}'), ('566','46664','account_id','{$YUGABYTEDB.ACCOUNT.ID}'), ('567','46664','cluster_id','{$YUGABYTEDB.CLUSTER.ID}'), ('568','46664','project_id','{$YUGABYTEDB.PROJECT.ID}'), ('569','46664','proxy','{$YUGABYTEDB.PROXY}'), ('570','46664','token','{$YUGABYTEDB.ACCESS.TOKEN}'), ('571','46665','account_id','{$YUGABYTEDB.ACCOUNT.ID}'), ('572','46665','cluster_id','{$YUGABYTEDB.CLUSTER.ID}'), ('573','46665','project_id','{$YUGABYTEDB.PROJECT.ID}'), ('574','46665','proxy','{$YUGABYTEDB.PROXY}'), ('575','46665','token','{$YUGABYTEDB.ACCESS.TOKEN}'), ('576','46666','account_id','{$YUGABYTEDB.ACCOUNT.ID}'), ('577','46666','cluster_id','{$YUGABYTEDB.CLUSTER.ID}'), ('578','46666','project_id','{$YUGABYTEDB.PROJECT.ID}'), ('579','46666','proxy','{$YUGABYTEDB.PROXY}'), ('580','46666','token','{$YUGABYTEDB.ACCESS.TOKEN}'), ('581','46667','account_id','{$YUGABYTEDB.ACCOUNT.ID}'), ('582','46667','cluster_id','{$YUGABYTEDB.CLUSTER.ID}'), ('583','46667','project_id','{$YUGABYTEDB.PROJECT.ID}'), ('584','46667','proxy','{$YUGABYTEDB.PROXY}'), ('585','46667','token','{$YUGABYTEDB.ACCESS.TOKEN}'), ('586','46845','api_host','{$OCI.API.TELEMETRY.HOST}'), ('587','46845','db_id','{$OCI.AUTONOMOUS.DB.ID}'), ('588','46845','fingerprint','{$OCI.API.FINGERPRINT}'), ('589','46845','http_proxy','{$OCI.HTTP.PROXY}'), ('590','46845','http_status_code','{$OCI.HTTP.RETURN.CODE.OK}'), ('591','46845','private_key','{$OCI.API.PRIVATE.KEY}'), ('592','46845','req_interval','1'), ('593','46845','tenancy_ocid','{$OCI.API.TENANCY}'), ('594','46845','user_ocid','{$OCI.API.USER}'), ('595','46846','api_host','{$OCI.API.TELEMETRY.HOST}'), ('596','46846','db_id','{$OCI.AUTONOMOUS.DB.ID}'), ('597','46846','fingerprint','{$OCI.API.FINGERPRINT}'), ('598','46846','http_proxy','{$OCI.HTTP.PROXY}'), ('599','46846','http_status_code','{$OCI.HTTP.RETURN.CODE.OK}'), ('600','46846','private_key','{$OCI.API.PRIVATE.KEY}'), ('601','46846','req_interval','5'), ('602','46846','tenancy_ocid','{$OCI.API.TENANCY}'), ('603','46846','user_ocid','{$OCI.API.USER}'), ('604','46847','api_host','{$OCI.API.TELEMETRY.HOST}'), ('605','46847','db_id','{$OCI.AUTONOMOUS.DB.ID}'), ('606','46847','fingerprint','{$OCI.API.FINGERPRINT}'), ('607','46847','http_proxy','{$OCI.HTTP.PROXY}'), ('608','46847','http_status_code','{$OCI.HTTP.RETURN.CODE.OK}'), ('609','46847','private_key','{$OCI.API.PRIVATE.KEY}'), ('610','46847','req_interval','60'), ('611','46847','tenancy_ocid','{$OCI.API.TENANCY}'), ('612','46847','user_ocid','{$OCI.API.USER}'), ('613','46848','api_host','{$OCI.API.AUTONOMOUS.DB.HOST}'), ('614','46848','db_id','{$OCI.AUTONOMOUS.DB.ID}'), ('615','46848','fingerprint','{$OCI.API.FINGERPRINT}'), ('616','46848','http_proxy','{$OCI.HTTP.PROXY}'), ('617','46848','http_status_code','{$OCI.HTTP.RETURN.CODE.OK}'), ('618','46848','private_key','{$OCI.API.PRIVATE.KEY}'), ('619','46848','tenancy_ocid','{$OCI.API.TENANCY}'), ('620','46848','user_ocid','{$OCI.API.USER}'), ('621','46849','api_host','{$OCI.API.TELEMETRY.HOST}'), ('622','46849','fingerprint','{$OCI.API.FINGERPRINT}'), ('623','46849','http_proxy','{$OCI.HTTP.PROXY}'), ('624','46849','http_status_code','{$OCI.HTTP.RETURN.CODE.OK}'), ('625','46849','private_key','{$OCI.API.PRIVATE.KEY}'), ('626','46849','req_interval','1'), ('627','46849','tenancy_ocid','{$OCI.API.TENANCY}'), ('628','46849','user_ocid','{$OCI.API.USER}'), ('629','46849','volume_id','{$OCI.VOLUME.BLOCK.ID}'), ('630','46850','api_host','{$OCI.API.CORE.HOST}'), ('631','46850','fingerprint','{$OCI.API.FINGERPRINT}'), ('632','46850','http_proxy','{$OCI.HTTP.PROXY}'), ('633','46850','http_status_code','{$OCI.HTTP.RETURN.CODE.OK}'), ('634','46850','private_key','{$OCI.API.PRIVATE.KEY}'), ('635','46850','tenancy_ocid','{$OCI.API.TENANCY}'), ('636','46850','user_ocid','{$OCI.API.USER}'), ('637','46850','volume_id','{$OCI.VOLUME.BLOCK.ID}'), ('638','46851','api_host','{$OCI.API.TELEMETRY.HOST}'), ('639','46851','fingerprint','{$OCI.API.FINGERPRINT}'), ('640','46851','http_proxy','{$OCI.HTTP.PROXY}'), ('641','46851','http_status_code','{$OCI.HTTP.RETURN.CODE.OK}'), ('642','46851','private_key','{$OCI.API.PRIVATE.KEY}'), ('643','46851','req_interval','1'), ('644','46851','tenancy_ocid','{$OCI.API.TENANCY}'), ('645','46851','user_ocid','{$OCI.API.USER}'), ('646','46851','volume_id','{$OCI.VOLUME.BOOT.ID}'), ('647','46852','api_host','{$OCI.API.CORE.HOST}'), ('648','46852','fingerprint','{$OCI.API.FINGERPRINT}'), ('649','46852','http_proxy','{$OCI.HTTP.PROXY}'), ('650','46852','http_status_code','{$OCI.HTTP.RETURN.CODE.OK}'), ('651','46852','private_key','{$OCI.API.PRIVATE.KEY}'), ('652','46852','tenancy_ocid','{$OCI.API.TENANCY}'), ('653','46852','user_ocid','{$OCI.API.USER}'), ('654','46852','volume_id','{$OCI.VOLUME.BOOT.ID}'), ('655','46853','api_host','{$OCI.API.TELEMETRY.HOST}'), ('656','46853','fingerprint','{$OCI.API.FINGERPRINT}'), ('657','46853','http_proxy','{$OCI.HTTP.PROXY}'), ('658','46853','http_status_code','{$OCI.HTTP.RETURN.CODE.OK}'), ('659','46853','instance_id','{$OCI.COMPUTE.INSTANCE.ID}'), ('660','46853','private_key','{$OCI.API.PRIVATE.KEY}'), ('661','46853','req_interval','5'), ('662','46853','tenancy_ocid','{$OCI.API.TENANCY}'), ('663','46853','user_ocid','{$OCI.API.USER}'), ('664','46854','api_host','{$OCI.API.TELEMETRY.HOST}'), ('665','46854','fingerprint','{$OCI.API.FINGERPRINT}'), ('666','46854','http_proxy','{$OCI.HTTP.PROXY}'), ('667','46854','http_status_code','{$OCI.HTTP.RETURN.CODE.OK}'), ('668','46854','instance_id','{$OCI.COMPUTE.INSTANCE.ID}'), ('669','46854','private_key','{$OCI.API.PRIVATE.KEY}'), ('670','46854','req_interval','1'), ('671','46854','tenancy_ocid','{$OCI.API.TENANCY}'), ('672','46854','user_ocid','{$OCI.API.USER}'), ('673','46855','api_host','{$OCI.API.CORE.HOST}'), ('674','46855','fingerprint','{$OCI.API.FINGERPRINT}'), ('675','46855','http_proxy','{$OCI.HTTP.PROXY}'), ('676','46855','http_status_code','{$OCI.HTTP.RETURN.CODE.OK}'), ('677','46855','instance_id','{$OCI.COMPUTE.INSTANCE.ID}'), ('678','46855','private_key','{$OCI.API.PRIVATE.KEY}'), ('679','46855','tenancy_ocid','{$OCI.API.TENANCY}'), ('680','46855','user_ocid','{$OCI.API.USER}'), ('681','46856','api_host','{$OCI.API.CORE.HOST}'), ('682','46856','availability_domain','{$OCI.COMPUTE.AVAILABILITY.DOMAIN}'), ('683','46856','fingerprint','{$OCI.API.FINGERPRINT}'), ('684','46856','http_proxy','{$OCI.HTTP.PROXY}'), ('685','46856','http_status_code','{$OCI.HTTP.RETURN.CODE.OK}'), ('686','46856','instance_id','{$OCI.COMPUTE.INSTANCE.ID}'), ('687','46856','private_key','{$OCI.API.PRIVATE.KEY}'), ('688','46856','tenancy_ocid','{$OCI.API.TENANCY}'), ('689','46856','user_ocid','{$OCI.API.USER}'), ('690','46857','api_host','{$OCI.API.CORE.HOST}'), ('691','46857','fingerprint','{$OCI.API.FINGERPRINT}'), ('692','46857','http_proxy','{$OCI.HTTP.PROXY}'), ('693','46857','http_status_code','{$OCI.HTTP.RETURN.CODE.OK}'), ('694','46857','private_key','{$OCI.API.PRIVATE.KEY}'), ('695','46857','tenancy_ocid','{$OCI.API.TENANCY}'), ('696','46857','user_ocid','{$OCI.API.USER}'), ('697','46857','vcn_id','{$OCI.VCN.ID}'), ('698','46858','api_host','{$OCI.API.CORE.HOST}'), ('699','46858','fingerprint','{$OCI.API.FINGERPRINT}'), ('700','46858','http_proxy','{$OCI.HTTP.PROXY}'), ('701','46858','http_status_code','{$OCI.HTTP.RETURN.CODE.OK}'), ('702','46858','private_key','{$OCI.API.PRIVATE.KEY}'), ('703','46858','tenancy_ocid','{$OCI.API.TENANCY}'), ('704','46858','user_ocid','{$OCI.API.USER}'), ('705','46858','vcn_id','{$OCI.VCN.ID}'), ('706','46859','api_host','{$OCI.API.TELEMETRY.HOST}'), ('707','46859','bucket_name','{$OCI.OBJECT.STORAGE.BUCKET}'), ('708','46859','fingerprint','{$OCI.API.FINGERPRINT}'), ('709','46859','http_proxy','{$OCI.HTTP.PROXY}'), ('710','46859','http_status_code','{$OCI.HTTP.RETURN.CODE.OK}'), ('711','46859','private_key','{$OCI.API.PRIVATE.KEY}'), ('712','46859','req_interval','1'), ('713','46859','tenancy_ocid','{$OCI.API.TENANCY}'), ('714','46859','user_ocid','{$OCI.API.USER}'), ('715','46860','api_host','{$OCI.API.TELEMETRY.HOST}'), ('716','46860','bucket_name','{$OCI.OBJECT.STORAGE.BUCKET}'), ('717','46860','fingerprint','{$OCI.API.FINGERPRINT}'), ('718','46860','http_proxy','{$OCI.HTTP.PROXY}'), ('719','46860','http_status_code','{$OCI.HTTP.RETURN.CODE.OK}'), ('720','46860','private_key','{$OCI.API.PRIVATE.KEY}'), ('721','46860','req_interval','60'), ('722','46860','tenancy_ocid','{$OCI.API.TENANCY}'), ('723','46860','user_ocid','{$OCI.API.USER}'), ('724','46861','api_host','{$OCI.API.TELEMETRY.HOST}'), ('725','46861','bucket_name','{$OCI.OBJECT.STORAGE.BUCKET}'), ('726','46861','fingerprint','{$OCI.API.FINGERPRINT}'), ('727','46861','http_proxy','{$OCI.HTTP.PROXY}'), ('728','46861','http_status_code','{$OCI.HTTP.RETURN.CODE.OK}'), ('729','46861','private_key','{$OCI.API.PRIVATE.KEY}'), ('730','46861','req_interval','180'), ('731','46861','tenancy_ocid','{$OCI.API.TENANCY}'), ('732','46861','user_ocid','{$OCI.API.USER}'), ('733','46933','api_host','{$OCI.API.CORE.HOST}'), ('734','46933','fingerprint','{$OCI.API.FINGERPRINT}'), ('735','46933','http_proxy','{$OCI.HTTP.PROXY}'), ('736','46933','http_status_code','{$OCI.HTTP.RETURN.CODE.OK}'), ('737','46933','private_key','{$OCI.API.PRIVATE.KEY}'), ('738','46933','tenancy_ocid','{$OCI.API.TENANCY}'), ('739','46933','user_ocid','{$OCI.API.USER}'), ('740','46934','api_host','{$OCI.API.CORE.HOST}'), ('741','46934','fingerprint','{$OCI.API.FINGERPRINT}'), ('742','46934','http_proxy','{$OCI.HTTP.PROXY}'), ('743','46934','http_status_code','{$OCI.HTTP.RETURN.CODE.OK}'), ('744','46934','private_key','{$OCI.API.PRIVATE.KEY}'), ('745','46934','tenancy_ocid','{$OCI.API.TENANCY}'), ('746','46934','user_ocid','{$OCI.API.USER}'), ('747','46935','api_host','{$OCI.API.CORE.HOST}'), ('748','46935','fingerprint','{$OCI.API.FINGERPRINT}'), ('749','46935','http_proxy','{$OCI.HTTP.PROXY}'), ('750','46935','http_status_code','{$OCI.HTTP.RETURN.CODE.OK}'), ('751','46935','private_key','{$OCI.API.PRIVATE.KEY}'), ('752','46935','tenancy_ocid','{$OCI.API.TENANCY}'), ('753','46935','user_ocid','{$OCI.API.USER}'), ('754','46936','api_host','{$OCI.API.AUTONOMOUS.DB.HOST}'), ('755','46936','fingerprint','{$OCI.API.FINGERPRINT}'), ('756','46936','http_proxy','{$OCI.HTTP.PROXY}'), ('757','46936','http_status_code','{$OCI.HTTP.RETURN.CODE.OK}'), ('758','46936','private_key','{$OCI.API.PRIVATE.KEY}'), ('759','46936','tenancy_ocid','{$OCI.API.TENANCY}'), ('760','46936','user_ocid','{$OCI.API.USER}'), ('761','46937','api_host','{$OCI.API.OBJECT.STORAGE.HOST}'), ('762','46937','fingerprint','{$OCI.API.FINGERPRINT}'), ('763','46937','http_proxy','{$OCI.HTTP.PROXY}'), ('764','46937','http_status_code','{$OCI.HTTP.RETURN.CODE.OK}'), ('765','46937','private_key','{$OCI.API.PRIVATE.KEY}'), ('766','46937','tenancy_ocid','{$OCI.API.TENANCY}'), ('767','46937','user_ocid','{$OCI.API.USER}'), ('768','46938','api_host','{$OCI.API.CORE.HOST}'), ('769','46938','fingerprint','{$OCI.API.FINGERPRINT}'), ('770','46938','http_proxy','{$OCI.HTTP.PROXY}'), ('771','46938','http_status_code','{$OCI.HTTP.RETURN.CODE.OK}'), ('772','46938','private_key','{$OCI.API.PRIVATE.KEY}'), ('773','46938','tenancy_ocid','{$OCI.API.TENANCY}'), ('774','46938','user_ocid','{$OCI.API.USER}'), ('775','46941','api_host','{$OCI.API.TELEMETRY.HOST}'), ('776','46941','fingerprint','{$OCI.API.FINGERPRINT}'), ('777','46941','http_proxy','{$OCI.HTTP.PROXY}'), ('778','46941','http_status_code','{$OCI.HTTP.RETURN.CODE.OK}'), ('779','46941','private_key','{$OCI.API.PRIVATE.KEY}'), ('780','46941','req_interval','1'), ('781','46941','tenancy_ocid','{$OCI.API.TENANCY}'), ('782','46941','user_ocid','{$OCI.API.USER}'), ('783','46941','vnic_id','{#ID}'), ('784','47069','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('785','47069','arn','{$AWS.ELB.ARN}'), ('786','47069','auth_type','{$AWS.AUTH_TYPE}'), ('787','47069','proxy','{$AWS.PROXY}'), ('788','47069','region','{$AWS.REGION}'), ('789','47069','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('790','47070','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('791','47070','arn','{$AWS.ELB.ARN}'), ('792','47070','auth_type','{$AWS.AUTH_TYPE}'), ('793','47070','proxy','{$AWS.PROXY}'), ('794','47070','region','{$AWS.REGION}'), ('795','47070','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('796','47071','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('797','47071','arn','{$AWS.ELB.ARN}'), ('798','47071','auth_type','{$AWS.AUTH_TYPE}'), ('799','47071','proxy','{$AWS.PROXY}'), ('800','47071','region','{$AWS.REGION}'), ('801','47071','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('802','47107','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('803','47107','arn','{$AWS.ELB.ARN}'), ('804','47107','auth_type','{$AWS.AUTH_TYPE}'), ('805','47107','proxy','{$AWS.PROXY}'), ('806','47107','region','{$AWS.REGION}'), ('807','47107','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('808','47107','target_arn','{#AWS.ELB.TARGET.GROUP.ARN}'), ('809','47131','browser','{$WEBSITE.BROWSER}'), ('810','47131','domain','{$WEBSITE.DOMAIN}'), ('811','47131','height','{$WEBSITE.SCREEN.HEIGHT}'), ('812','47131','path','{$WEBSITE.PATH}'), ('813','47131','scheme','{$WEBSITE.SCHEME}'), ('814','47131','width','{$WEBSITE.SCREEN.WIDTH}'), ('815','47215','app_id','{$AZURE.APP.ID}'), ('816','47215','password','{$AZURE.PASSWORD}'), ('817','47215','proxy','{$AZURE.PROXY}'), ('818','47215','resource_id','{$AZURE.RESOURCE.ID}'), ('819','47215','subscription_id','{$AZURE.SUBSCRIPTION.ID}'), ('820','47215','tenant_id','{$AZURE.TENANT.ID}'), ('821','46845','compartment_id','{$OCI.AUTONOMOUS.DB.COMPARTMENT.ID}'), ('822','46846','compartment_id','{$OCI.AUTONOMOUS.DB.COMPARTMENT.ID}'), ('823','46847','compartment_id','{$OCI.AUTONOMOUS.DB.COMPARTMENT.ID}'), ('824','46849','compartment_id','{$OCI.VOLUME.BLOCK.COMPARTMENT.ID}'), ('825','46851','compartment_id','{$OCI.VOLUME.BOOT.COMPARTMENT.ID}'), ('826','46853','compartment_id','{$OCI.COMPUTE.COMPARTMENT.ID}'), ('827','46854','compartment_id','{$OCI.COMPUTE.COMPARTMENT.ID}'), ('828','46856','compartment_id','{$OCI.COMPUTE.COMPARTMENT.ID}'), ('829','46858','compartment_id','{$OCI.VCN.COMPARTMENT.ID}'), ('830','46859','compartment_id','{$OCI.OBJECT.STORAGE.COMPARTMENT.ID}'), ('831','46860','compartment_id','{$OCI.OBJECT.STORAGE.COMPARTMENT.ID}'), ('832','46861','compartment_id','{$OCI.OBJECT.STORAGE.COMPARTMENT.ID}'), ('833','46933','compartment_ocid','{$OCI.API.COMPARTMENT.VOLUME.BLOCK}'), ('834','46934','compartment_ocid','{$OCI.API.COMPARTMENT.VOLUME.BOOT}'), ('835','46935','compartment_ocid','{$OCI.API.COMPARTMENT.COMPUTE}'), ('836','46936','compartment_ocid','{$OCI.API.COMPARTMENT.AUTONOMOUS.DB}'), ('837','46937','compartment_ocid','{$OCI.API.COMPARTMENT.OBJECT.STORAGE}'), ('838','46938','compartment_ocid','{$OCI.API.COMPARTMENT.VCN}'), ('839','46941','compartment_id','{$OCI.COMPUTE.COMPARTMENT.ID}'), ('840','47282','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('841','47282','auth_type','{$AWS.AUTH_TYPE}'), ('842','47282','name','{$AWS.LAMBDA.NAME}'), ('843','47282','proxy','{$AWS.PROXY}'), ('844','47282','region','{$AWS.REGION}'), ('845','47282','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('846','47283','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('847','47283','auth_type','{$AWS.AUTH_TYPE}'), ('848','47283','name','{$AWS.LAMBDA.NAME}'), ('849','47283','proxy','{$AWS.PROXY}'), ('850','47283','region','{$AWS.REGION}'), ('851','47283','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('852','47300','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('853','47300','auth_type','{$AWS.AUTH_TYPE}'), ('854','47300','proxy','{$AWS.PROXY}'), ('855','47300','region_match','{$AWS.LAMBDA.LLD.FILTER.REGION.MATCHES}'), ('856','47300','region_not_match','{$AWS.LAMBDA.LLD.FILTER.REGION.NOT_MATCHES}'), ('857','47300','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('858','44052','describe_region','{$AWS.DESCRIBE.REGION}'), ('859','44053','describe_region','{$AWS.DESCRIBE.REGION}'), ('860','44054','request_region','{$AWS.REQUEST.REGION}'), ('861','45595','describe_region','{$AWS.DESCRIBE.REGION}'), ('862','46503','describe_region','{$AWS.DESCRIBE.REGION}'), ('863','47300','describe_region','{$AWS.DESCRIBE.REGION}'), ('864','47301','api_query','repos/{$GITHUB.REPO.OWNER}/{$GITHUB.REPO.NAME}/branches'), ('865','47301','api_token','{$GITHUB.API.TOKEN}'), ('866','47301','api_url','{$GITHUB.API.URL}'), ('867','47301','api_version','{$GITHUB.API_VERSION}'), ('868','47301','http_proxy','{$GITHUB.HTTP_PROXY}'), ('869','47301','pagination_required','true'), ('870','47301','query_params','per_page={$GITHUB.RESULTS_PER_PAGE:"branches_discovery"}'), ('871','47301','repo_name','{$GITHUB.REPO.NAME}'), ('872','47301','repo_owner','{$GITHUB.REPO.OWNER}'), ('873','47301','user_agent','{$GITHUB.USER_AGENT}'), ('874','47302','api_token','{$GITHUB.API.TOKEN}'), ('875','47302','api_url','{$GITHUB.API.URL}'), ('876','47302','api_version','{$GITHUB.API_VERSION}'), ('877','47302','http_proxy','{$GITHUB.HTTP_PROXY}'), ('878','47302','pagination_required','false'), ('879','47302','repo_name','{$GITHUB.REPO.NAME}'), ('880','47302','repo_owner','{$GITHUB.REPO.OWNER}'), ('881','47302','user_agent','{$GITHUB.USER_AGENT}'), ('882','47303','api_query','repos/{$GITHUB.REPO.OWNER}/{$GITHUB.REPO.NAME}/releases'), ('883','47303','api_token','{$GITHUB.API.TOKEN}'), ('884','47303','api_url','{$GITHUB.API.URL}'), ('885','47303','api_version','{$GITHUB.API_VERSION}'), ('886','47303','http_proxy','{$GITHUB.HTTP_PROXY}'), ('887','47303','pagination_required','false'), ('888','47303','query_params','per_page=1'), ('889','47303','repo_name','{$GITHUB.REPO.NAME}'), ('890','47303','repo_owner','{$GITHUB.REPO.OWNER}'), ('891','47303','user_agent','{$GITHUB.USER_AGENT}'), ('892','47304','api_query','repos/{$GITHUB.REPO.OWNER}/{$GITHUB.REPO.NAME}'), ('893','47304','api_token','{$GITHUB.API.TOKEN}'), ('894','47304','api_url','{$GITHUB.API.URL}'), ('895','47304','api_version','{$GITHUB.API_VERSION}'), ('896','47304','http_proxy','{$GITHUB.HTTP_PROXY}'), ('897','47304','pagination_required','false'), ('898','47304','repo_name','{$GITHUB.REPO.NAME}'), ('899','47304','repo_owner','{$GITHUB.REPO.OWNER}'), ('900','47304','user_agent','{$GITHUB.USER_AGENT}'), ('901','47305','api_query','repos/{$GITHUB.REPO.OWNER}/{$GITHUB.REPO.NAME}/actions/runners'), ('902','47305','api_token','{$GITHUB.API.TOKEN}'), ('903','47305','api_url','{$GITHUB.API.URL}'), ('904','47305','api_version','{$GITHUB.API_VERSION}'), ('905','47305','http_proxy','{$GITHUB.HTTP_PROXY}'), ('906','47305','pagination_required','true'), ('907','47305','query_params','per_page={$GITHUB.RESULTS_PER_PAGE:"get_runners"}'), ('908','47305','repo_name','{$GITHUB.REPO.NAME}'), ('909','47305','repo_owner','{$GITHUB.REPO.OWNER}'), ('910','47305','user_agent','{$GITHUB.USER_AGENT}'), ('911','47306','api_query','repos/{$GITHUB.REPO.OWNER}/{$GITHUB.REPO.NAME}/tags'), ('912','47306','api_token','{$GITHUB.API.TOKEN}'), ('913','47306','api_url','{$GITHUB.API.URL}'), ('914','47306','api_version','{$GITHUB.API_VERSION}'), ('915','47306','http_proxy','{$GITHUB.HTTP_PROXY}'), ('916','47306','pagination_required','false'), ('917','47306','query_params','per_page=1'), ('918','47306','repo_name','{$GITHUB.REPO.NAME}'), ('919','47306','repo_owner','{$GITHUB.REPO.OWNER}'), ('920','47306','user_agent','{$GITHUB.USER_AGENT}'), ('921','47307','api_query','repos/{$GITHUB.REPO.OWNER}/{$GITHUB.REPO.NAME}/actions/workflows'), ('922','47307','api_token','{$GITHUB.API.TOKEN}'), ('923','47307','api_url','{$GITHUB.API.URL}'), ('924','47307','api_version','{$GITHUB.API_VERSION}'), ('925','47307','http_proxy','{$GITHUB.HTTP_PROXY}'), ('926','47307','pagination_required','true'), ('927','47307','query_params','per_page={$GITHUB.RESULTS_PER_PAGE:"workflows_discovery"}'), ('928','47307','repo_name','{$GITHUB.REPO.NAME}'), ('929','47307','repo_owner','{$GITHUB.REPO.OWNER}'), ('930','47307','user_agent','{$GITHUB.USER_AGENT}'), ('931','47328','api_query','repos/{$GITHUB.REPO.OWNER}/{$GITHUB.REPO.NAME}/commits'), ('932','47328','api_token','{$GITHUB.API.TOKEN}'), ('933','47328','api_url','{$GITHUB.API.URL}'), ('934','47328','api_version','{$GITHUB.API_VERSION}'), ('935','47328','http_proxy','{$GITHUB.HTTP_PROXY}'), ('936','47328','pagination_required','false'), ('937','47328','query_params','sha={#BRANCH_NAME}&per_page=1'), ('938','47328','repo_name','{$GITHUB.REPO.NAME}'), ('939','47328','repo_owner','{$GITHUB.REPO.OWNER}'), ('940','47328','user_agent','{$GITHUB.USER_AGENT}'), ('941','47329','api_query','repos/{$GITHUB.REPO.OWNER}/{$GITHUB.REPO.NAME}/actions/workflows/{#WORKFLOW_ID}/runs'), ('942','47329','api_token','{$GITHUB.API.TOKEN}'), ('943','47329','api_url','{$GITHUB.API.URL}'), ('944','47329','api_version','{$GITHUB.API_VERSION}'), ('945','47329','http_proxy','{$GITHUB.HTTP_PROXY}'), ('946','47329','pagination_required','false'), ('947','47329','query_params','per_page=1'), ('948','47329','repo_name','{$GITHUB.REPO.NAME}'), ('949','47329','repo_owner','{$GITHUB.REPO.OWNER}'), ('950','47329','user_agent','{$GITHUB.USER_AGENT}'), ('951','47338','app_id','{$MS365.APP.ID}'), ('952','47338','password','{$MS365.PASSWORD}'), ('954','47338','tenant_id','{$MS365.TENANT.ID}'), ('955','47339','app_id','{$MS365.APP.ID}'), ('956','47339','password','{$MS365.PASSWORD}'), ('958','47339','tenant_id','{$MS365.TENANT.ID}'), ('959','47340','app_id','{$MS365.APP.ID}'), ('960','47340','password','{$MS365.PASSWORD}'), ('962','47340','tenant_id','{$MS365.TENANT.ID}'), ('963','47341','app_id','{$MS365.APP.ID}'), ('964','47341','password','{$MS365.PASSWORD}'), ('966','47341','tenant_id','{$MS365.TENANT.ID}'), ('967','47342','app_id','{$MS365.APP.ID}'), ('968','47342','password','{$MS365.PASSWORD}'), ('970','47342','tenant_id','{$MS365.TENANT.ID}'), ('971','47343','app_id','{$MS365.APP.ID}'), ('972','47343','password','{$MS365.PASSWORD}'), ('974','47343','tenant_id','{$MS365.TENANT.ID}'), ('975','47516','password','{$VMWARE.PASSWORD}'), ('976','47516','proxy','{$VMWARE.PROXY}'), ('977','47516','url','{$VMWARE.URL}'), ('978','47516','username','{$VMWARE.USERNAME}'), ('979','47544','password','{$VMWARE.PASSWORD}'), ('980','47544','proxy','{$VMWARE.PROXY}'), ('981','47544','url','{$VMWARE.URL}'), ('982','47544','username','{$VMWARE.USERNAME}'), ('983','45521','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('984','45521','sts_region','{$AWS.STS.REGION}'), ('985','45522','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('986','45522','sts_region','{$AWS.STS.REGION}'), ('987','43497','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('988','43497','sts_region','{$AWS.STS.REGION}'), ('989','43498','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('990','43498','sts_region','{$AWS.STS.REGION}'), ('991','43499','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('992','43499','sts_region','{$AWS.STS.REGION}'), ('993','43528','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('994','43528','sts_region','{$AWS.STS.REGION}'), ('995','45529','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('996','45529','sts_region','{$AWS.STS.REGION}'), ('997','45530','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('998','45530','sts_region','{$AWS.STS.REGION}'), ('999','45531','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('1000','45531','sts_region','{$AWS.STS.REGION}'), ('1001','45544','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('1002','45544','sts_region','{$AWS.STS.REGION}'), ('1003','45559','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('1004','45559','sts_region','{$AWS.STS.REGION}'), ('1005','45560','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('1006','45560','sts_region','{$AWS.STS.REGION}'), ('1007','45561','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('1008','45561','sts_region','{$AWS.STS.REGION}'), ('1009','45576','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('1010','45576','sts_region','{$AWS.STS.REGION}'), ('1011','46451','loadbalancer_name','{$AWS.ELB.NAME}'), ('1012','46451','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('1013','46451','sts_region','{$AWS.STS.REGION}'), ('1014','46452','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('1015','46452','sts_region','{$AWS.STS.REGION}'), ('1016','46453','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('1017','46453','sts_region','{$AWS.STS.REGION}'), ('1018','47069','loadbalancer_name','{$AWS.ELB.NAME}'), ('1019','47069','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('1020','47069','sts_region','{$AWS.STS.REGION}'), ('1021','47070','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('1022','47070','sts_region','{$AWS.STS.REGION}'), ('1023','47071','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('1024','47071','sts_region','{$AWS.STS.REGION}'), ('1025','46485','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('1026','46485','sts_region','{$AWS.STS.REGION}'), ('1027','47107','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('1028','47107','sts_region','{$AWS.STS.REGION}'), ('1029','47282','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('1030','47282','sts_region','{$AWS.STS.REGION}'), ('1031','47283','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('1032','47283','sts_region','{$AWS.STS.REGION}'), ('1033','44052','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('1034','44052','sts_region','{$AWS.STS.REGION}'), ('1035','44053','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('1036','44053','sts_region','{$AWS.STS.REGION}'), ('1037','44054','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('1038','44054','sts_region','{$AWS.STS.REGION}'), ('1039','45595','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('1040','45595','sts_region','{$AWS.STS.REGION}'), ('1041','46503','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('1042','46503','sts_region','{$AWS.STS.REGION}'), ('1043','47300','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('1044','47300','sts_region','{$AWS.STS.REGION}'), ('1045','43592','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('1046','43592','sts_region','{$AWS.STS.REGION}'), ('1047','43593','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('1048','43593','sts_region','{$AWS.STS.REGION}'), ('1049','43594','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('1050','43594','sts_region','{$AWS.STS.REGION}'), ('1051','43595','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('1052','43595','sts_region','{$AWS.STS.REGION}'), ('1053','43684','request_region','{$AWS.REQUEST.REGION}'), ('1054','43684','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('1055','43684','sts_region','{$AWS.STS.REGION}'), ('1056','43685','request_region','{$AWS.REQUEST.REGION}'), ('1057','43685','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('1058','43685','sts_region','{$AWS.STS.REGION}'), ('1059','46374','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('1060','46374','sts_region','{$AWS.STS.REGION}'), ('1061','47709','api_method','clusters'), ('1062','47709','auth_type','basic'), ('1063','47709','endpoint_host','{$NUTANIX.PRISM.ELEMENT.IP}'), ('1064','47709','endpoint_port','{$NUTANIX.PRISM.ELEMENT.PORT}'), ('1065','47709','password','{$NUTANIX.PASSWORD}'), ('1066','47709','proxy','{$NUTANIX.PROXY}'), ('1067','47709','target_uuid','{$NUTANIX.CLUSTER.UUID}'), ('1068','47709','username','{$NUTANIX.USER}'), ('1069','47710','api_method','clusters'), ('1070','47710','auth_type','basic'), ('1071','47710','endpoint_host','{$NUTANIX.PRISM.ELEMENT.IP}'), ('1072','47710','endpoint_port','{$NUTANIX.PRISM.ELEMENT.PORT}'), ('1073','47710','password','{$NUTANIX.PASSWORD}'), ('1074','47710','proxy','{$NUTANIX.PROXY}'), ('1075','47710','target_uuid','{$NUTANIX.CLUSTER.UUID}'), ('1076','47710','username','{$NUTANIX.USER}'), ('1077','47711','api_method','hosts'), ('1078','47711','auth_type','basic'), ('1079','47711','endpoint_host','{$NUTANIX.PRISM.ELEMENT.IP}'), ('1080','47711','endpoint_port','{$NUTANIX.PRISM.ELEMENT.PORT}'), ('1081','47711','password','{$NUTANIX.PASSWORD}'), ('1082','47711','proxy','{$NUTANIX.PROXY}'), ('1083','47711','target_uuid','{$NUTANIX.HOST.UUID}'), ('1084','47711','username','{$NUTANIX.USER}'), ('1085','47712','api_method','disks'), ('1086','47712','auth_type','basic'), ('1087','47712','endpoint_host','{$NUTANIX.PRISM.ELEMENT.IP}'), ('1088','47712','endpoint_port','{$NUTANIX.PRISM.ELEMENT.PORT}'), ('1089','47712','password','{$NUTANIX.PASSWORD}'), ('1090','47712','proxy','{$NUTANIX.PROXY}'), ('1091','47712','target_uuid','{$NUTANIX.HOST.UUID}'), ('1092','47712','username','{$NUTANIX.USER}'), ('1093','47713','api_method','hosts'), ('1094','47713','auth_type','basic'), ('1095','47713','endpoint_host','{$NUTANIX.PRISM.ELEMENT.IP}'), ('1096','47713','endpoint_port','{$NUTANIX.PRISM.ELEMENT.PORT}'), ('1097','47713','password','{$NUTANIX.PASSWORD}'), ('1098','47713','proxy','{$NUTANIX.PROXY}'), ('1099','47713','target_uuid','{$NUTANIX.HOST.UUID}'), ('1100','47713','username','{$NUTANIX.USER}'), ('1101','47714','api_method','clusters'), ('1102','47714','auth_type','basic'), ('1103','47714','endpoint_host','{$NUTANIX.PRISM.ELEMENT.IP}'), ('1104','47714','endpoint_port','{$NUTANIX.PRISM.ELEMENT.PORT}'), ('1105','47714','password','{$NUTANIX.PASSWORD}'), ('1106','47714','proxy','{$NUTANIX.PROXY}'), ('1107','47714','username','{$NUTANIX.USER}'), ('1108','47715','api_method','hosts'), ('1109','47715','auth_type','basic'), ('1110','47715','endpoint_host','{$NUTANIX.PRISM.ELEMENT.IP}'), ('1111','47715','endpoint_port','{$NUTANIX.PRISM.ELEMENT.PORT}'), ('1112','47715','password','{$NUTANIX.PASSWORD}'), ('1113','47715','proxy','{$NUTANIX.PROXY}'), ('1114','47715','username','{$NUTANIX.USER}'), ('1115','47716','api_method','storage_containers'), ('1116','47716','auth_type','basic'), ('1117','47716','endpoint_host','{$NUTANIX.PRISM.ELEMENT.IP}'), ('1118','47716','endpoint_port','{$NUTANIX.PRISM.ELEMENT.PORT}'), ('1119','47716','password','{$NUTANIX.PASSWORD}'), ('1120','47716','proxy','{$NUTANIX.PROXY}'), ('1121','47716','username','{$NUTANIX.USER}'), ('1122','47338','http_proxy','{$MS365.HTTP.PROXY}'), ('1123','47339','http_proxy','{$MS365.HTTP.PROXY}'), ('1124','47340','http_proxy','{$MS365.HTTP.PROXY}'), ('1125','47341','http_proxy','{$MS365.HTTP.PROXY}'), ('1126','47342','http_proxy','{$MS365.HTTP.PROXY}'), ('1127','47343','http_proxy','{$MS365.HTTP.PROXY}'), ('1128','48368','app_id','{$AZURE.APP.ID}'), ('1129','48368','password','{$AZURE.PASSWORD}'), ('1130','48368','proxy','{$AZURE.PROXY}'), ('1131','48368','resource_id','{$AZURE.RESOURCE.ID}'), ('1132','48368','subscription_id','{$AZURE.SUBSCRIPTION.ID}'), ('1133','48368','tenant_id','{$AZURE.TENANT.ID}'), ('1134','48461','http_proxy','{$DELL.HTTP.PROXY}'), ('1135','48461','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1136','48461','password','{$DELL.HTTP.API.PASSWORD}'), ('1137','48461','url','{$DELL.HTTP.API.URL}'), ('1138','48461','user','{$DELL.HTTP.API.USER}'), ('1139','48462','http_proxy','{$DELL.HTTP.PROXY}'), ('1140','48462','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1141','48462','password','{$DELL.HTTP.API.PASSWORD}'), ('1142','48462','url','{$DELL.HTTP.API.URL}'), ('1143','48462','user','{$DELL.HTTP.API.USER}'), ('1144','48463','http_proxy','{$DELL.HTTP.PROXY}'), ('1145','48463','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1146','48463','password','{$DELL.HTTP.API.PASSWORD}'), ('1147','48463','url','{$DELL.HTTP.API.URL}'), ('1148','48463','user','{$DELL.HTTP.API.USER}'), ('1149','48464','http_proxy','{$DELL.HTTP.PROXY}'), ('1150','48464','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1151','48464','password','{$DELL.HTTP.API.PASSWORD}'), ('1152','48464','url','{$DELL.HTTP.API.URL}'), ('1153','48464','user','{$DELL.HTTP.API.USER}'), ('1154','48465','http_proxy','{$DELL.HTTP.PROXY}'), ('1155','48465','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1156','48465','password','{$DELL.HTTP.API.PASSWORD}'), ('1157','48465','url','{$DELL.HTTP.API.URL}'), ('1158','48465','user','{$DELL.HTTP.API.USER}'), ('1159','48483','http_proxy','{$DELL.HTTP.PROXY}'), ('1160','48483','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1161','48483','password','{$DELL.HTTP.API.PASSWORD}'), ('1162','48483','path','{#ODATA}'), ('1163','48483','url','{$DELL.HTTP.API.URL}'), ('1164','48483','user','{$DELL.HTTP.API.USER}'), ('1165','48484','http_proxy','{$DELL.HTTP.PROXY}'), ('1166','48484','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1167','48484','password','{$DELL.HTTP.API.PASSWORD}'), ('1168','48484','path','{#ODATA}'), ('1169','48484','url','{$DELL.HTTP.API.URL}'), ('1170','48484','user','{$DELL.HTTP.API.USER}'), ('1171','48485','http_proxy','{$DELL.HTTP.PROXY}'), ('1172','48485','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1173','48485','password','{$DELL.HTTP.API.PASSWORD}'), ('1174','48485','path','{#ODATA}'), ('1175','48485','url','{$DELL.HTTP.API.URL}'), ('1176','48485','user','{$DELL.HTTP.API.USER}'), ('1177','36213','http_proxy','{$DELL.HTTP.PROXY}'), ('1178','36213','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1179','36213','password','{$DELL.HTTP.API.PASSWORD}'), ('1180','36213','url','{$DELL.HTTP.API.URL}'), ('1181','36213','user','{$DELL.HTTP.API.USER}'), ('1182','48583','http_proxy','{$DELL.HTTP.PROXY}'), ('1183','48583','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1184','48583','password','{$DELL.HTTP.API.PASSWORD}'), ('1185','48583','url','{$DELL.HTTP.API.URL}'), ('1186','48583','user','{$DELL.HTTP.API.USER}'), ('1187','48584','http_proxy','{$DELL.HTTP.PROXY}'), ('1188','48584','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1189','48584','password','{$DELL.HTTP.API.PASSWORD}'), ('1190','48584','url','{$DELL.HTTP.API.URL}'), ('1191','48584','user','{$DELL.HTTP.API.USER}'), ('1192','48585','http_proxy','{$DELL.HTTP.PROXY}'), ('1193','48585','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1194','48585','password','{$DELL.HTTP.API.PASSWORD}'), ('1195','48585','url','{$DELL.HTTP.API.URL}'), ('1196','48585','user','{$DELL.HTTP.API.USER}'), ('1197','48586','http_proxy','{$DELL.HTTP.PROXY}'), ('1198','48586','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1199','48586','password','{$DELL.HTTP.API.PASSWORD}'), ('1200','48586','url','{$DELL.HTTP.API.URL}'), ('1201','48586','user','{$DELL.HTTP.API.USER}'), ('1202','48599','http_proxy','{$DELL.HTTP.PROXY}'), ('1203','48599','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1204','48599','password','{$DELL.HTTP.API.PASSWORD}'), ('1205','48599','path','{#ODATA}'), ('1206','48599','url','{$DELL.HTTP.API.URL}'), ('1207','48599','user','{$DELL.HTTP.API.USER}'), ('1208','48600','http_proxy','{$DELL.HTTP.PROXY}'), ('1209','48600','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1210','48600','password','{$DELL.HTTP.API.PASSWORD}'), ('1211','48600','path','{#ODATA}'), ('1212','48600','url','{$DELL.HTTP.API.URL}'), ('1213','48600','user','{$DELL.HTTP.API.USER}'), ('1214','48601','http_proxy','{$DELL.HTTP.PROXY}'), ('1215','48601','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1216','48601','password','{$DELL.HTTP.API.PASSWORD}'), ('1217','48601','path','{#ODATA}'), ('1218','48601','url','{$DELL.HTTP.API.URL}'), ('1219','48601','user','{$DELL.HTTP.API.USER}'), ('1220','36295','http_proxy','{$DELL.HTTP.PROXY}'), ('1221','36295','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1222','36295','password','{$DELL.HTTP.API.PASSWORD}'), ('1223','36295','url','{$DELL.HTTP.API.URL}'), ('1224','36295','user','{$DELL.HTTP.API.USER}'), ('1225','48666','http_proxy','{$DELL.HTTP.PROXY}'), ('1226','48666','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1227','48666','password','{$DELL.HTTP.API.PASSWORD}'), ('1228','48666','url','{$DELL.HTTP.API.URL}'), ('1229','48666','user','{$DELL.HTTP.API.USER}'), ('1230','48667','http_proxy','{$DELL.HTTP.PROXY}'), ('1231','48667','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1232','48667','password','{$DELL.HTTP.API.PASSWORD}'), ('1233','48667','url','{$DELL.HTTP.API.URL}'), ('1234','48667','user','{$DELL.HTTP.API.USER}'), ('1235','48668','http_proxy','{$DELL.HTTP.PROXY}'), ('1236','48668','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1237','48668','password','{$DELL.HTTP.API.PASSWORD}'), ('1238','48668','url','{$DELL.HTTP.API.URL}'), ('1239','48668','user','{$DELL.HTTP.API.USER}'), ('1240','48669','http_proxy','{$DELL.HTTP.PROXY}'), ('1241','48669','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1242','48669','password','{$DELL.HTTP.API.PASSWORD}'), ('1243','48669','url','{$DELL.HTTP.API.URL}'), ('1244','48669','user','{$DELL.HTTP.API.USER}'), ('1245','48682','http_proxy','{$DELL.HTTP.PROXY}'), ('1246','48682','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1247','48682','password','{$DELL.HTTP.API.PASSWORD}'), ('1248','48682','path','{#ODATA}'), ('1249','48682','url','{$DELL.HTTP.API.URL}'), ('1250','48682','user','{$DELL.HTTP.API.USER}'), ('1251','48683','http_proxy','{$DELL.HTTP.PROXY}'), ('1252','48683','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1253','48683','password','{$DELL.HTTP.API.PASSWORD}'), ('1254','48683','path','{#ODATA}'), ('1255','48683','url','{$DELL.HTTP.API.URL}'), ('1256','48683','user','{$DELL.HTTP.API.USER}'), ('1257','48684','http_proxy','{$DELL.HTTP.PROXY}'), ('1258','48684','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1259','48684','password','{$DELL.HTTP.API.PASSWORD}'), ('1260','48684','path','{#ODATA}'), ('1261','48684','url','{$DELL.HTTP.API.URL}'), ('1262','48684','user','{$DELL.HTTP.API.USER}'), ('1263','48749','http_proxy','{$DELL.HTTP.PROXY}'), ('1264','48749','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1265','48749','password','{$DELL.HTTP.API.PASSWORD}'), ('1266','48749','url','{$DELL.HTTP.API.URL}'), ('1267','48749','user','{$DELL.HTTP.API.USER}'), ('1268','48750','http_proxy','{$DELL.HTTP.PROXY}'), ('1269','48750','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1270','48750','password','{$DELL.HTTP.API.PASSWORD}'), ('1271','48750','url','{$DELL.HTTP.API.URL}'), ('1272','48750','user','{$DELL.HTTP.API.USER}'), ('1273','48751','http_proxy','{$DELL.HTTP.PROXY}'), ('1274','48751','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1275','48751','password','{$DELL.HTTP.API.PASSWORD}'), ('1276','48751','url','{$DELL.HTTP.API.URL}'), ('1277','48751','user','{$DELL.HTTP.API.USER}'), ('1278','48752','http_proxy','{$DELL.HTTP.PROXY}'), ('1279','48752','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1280','48752','password','{$DELL.HTTP.API.PASSWORD}'), ('1281','48752','url','{$DELL.HTTP.API.URL}'), ('1282','48752','user','{$DELL.HTTP.API.USER}'), ('1283','48753','http_proxy','{$DELL.HTTP.PROXY}'), ('1284','48753','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1285','48753','password','{$DELL.HTTP.API.PASSWORD}'), ('1286','48753','url','{$DELL.HTTP.API.URL}'), ('1287','48753','user','{$DELL.HTTP.API.USER}'), ('1288','48771','http_proxy','{$DELL.HTTP.PROXY}'), ('1289','48771','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1290','48771','password','{$DELL.HTTP.API.PASSWORD}'), ('1291','48771','path','{#ODATA}'), ('1292','48771','url','{$DELL.HTTP.API.URL}'), ('1293','48771','user','{$DELL.HTTP.API.USER}'), ('1294','48772','http_proxy','{$DELL.HTTP.PROXY}'), ('1295','48772','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1296','48772','password','{$DELL.HTTP.API.PASSWORD}'), ('1297','48772','path','{#ODATA}'), ('1298','48772','url','{$DELL.HTTP.API.URL}'), ('1299','48772','user','{$DELL.HTTP.API.USER}'), ('1300','48773','http_proxy','{$DELL.HTTP.PROXY}'), ('1301','48773','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1302','48773','password','{$DELL.HTTP.API.PASSWORD}'), ('1303','48773','path','{#ODATA}'), ('1304','48773','url','{$DELL.HTTP.API.URL}'), ('1305','48773','user','{$DELL.HTTP.API.USER}'), ('1306','36377','http_proxy','{$DELL.HTTP.PROXY}'), ('1307','36377','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1308','36377','password','{$DELL.HTTP.API.PASSWORD}'), ('1309','36377','url','{$DELL.HTTP.API.URL}'), ('1310','36377','user','{$DELL.HTTP.API.USER}'), ('1311','48871','http_proxy','{$DELL.HTTP.PROXY}'), ('1312','48871','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1313','48871','password','{$DELL.HTTP.API.PASSWORD}'), ('1314','48871','url','{$DELL.HTTP.API.URL}'), ('1315','48871','user','{$DELL.HTTP.API.USER}'), ('1316','48872','http_proxy','{$DELL.HTTP.PROXY}'), ('1317','48872','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1318','48872','password','{$DELL.HTTP.API.PASSWORD}'), ('1319','48872','url','{$DELL.HTTP.API.URL}'), ('1320','48872','user','{$DELL.HTTP.API.USER}'), ('1321','48873','http_proxy','{$DELL.HTTP.PROXY}'), ('1322','48873','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1323','48873','password','{$DELL.HTTP.API.PASSWORD}'), ('1324','48873','url','{$DELL.HTTP.API.URL}'), ('1325','48873','user','{$DELL.HTTP.API.USER}'), ('1326','48874','http_proxy','{$DELL.HTTP.PROXY}'), ('1327','48874','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1328','48874','password','{$DELL.HTTP.API.PASSWORD}'), ('1329','48874','url','{$DELL.HTTP.API.URL}'), ('1330','48874','user','{$DELL.HTTP.API.USER}'), ('1331','48887','http_proxy','{$DELL.HTTP.PROXY}'), ('1332','48887','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1333','48887','password','{$DELL.HTTP.API.PASSWORD}'), ('1334','48887','path','{#ODATA}'), ('1335','48887','url','{$DELL.HTTP.API.URL}'), ('1336','48887','user','{$DELL.HTTP.API.USER}'), ('1337','48888','http_proxy','{$DELL.HTTP.PROXY}'), ('1338','48888','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1339','48888','password','{$DELL.HTTP.API.PASSWORD}'), ('1340','48888','path','{#ODATA}'), ('1341','48888','url','{$DELL.HTTP.API.URL}'), ('1342','48888','user','{$DELL.HTTP.API.USER}'), ('1343','48889','http_proxy','{$DELL.HTTP.PROXY}'), ('1344','48889','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1345','48889','password','{$DELL.HTTP.API.PASSWORD}'), ('1346','48889','path','{#ODATA}'), ('1347','48889','url','{$DELL.HTTP.API.URL}'), ('1348','48889','user','{$DELL.HTTP.API.USER}'), ('1349','36459','http_proxy','{$DELL.HTTP.PROXY}'), ('1350','36459','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1351','36459','password','{$DELL.HTTP.API.PASSWORD}'), ('1352','36459','url','{$DELL.HTTP.API.URL}'), ('1353','36459','user','{$DELL.HTTP.API.USER}'), ('1354','48954','http_proxy','{$DELL.HTTP.PROXY}'), ('1355','48954','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1356','48954','password','{$DELL.HTTP.API.PASSWORD}'), ('1357','48954','url','{$DELL.HTTP.API.URL}'), ('1358','48954','user','{$DELL.HTTP.API.USER}'), ('1359','48955','http_proxy','{$DELL.HTTP.PROXY}'), ('1360','48955','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1361','48955','password','{$DELL.HTTP.API.PASSWORD}'), ('1362','48955','url','{$DELL.HTTP.API.URL}'), ('1363','48955','user','{$DELL.HTTP.API.USER}'), ('1364','48956','http_proxy','{$DELL.HTTP.PROXY}'), ('1365','48956','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1366','48956','password','{$DELL.HTTP.API.PASSWORD}'), ('1367','48956','url','{$DELL.HTTP.API.URL}'), ('1368','48956','user','{$DELL.HTTP.API.USER}'), ('1369','48957','http_proxy','{$DELL.HTTP.PROXY}'), ('1370','48957','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1371','48957','password','{$DELL.HTTP.API.PASSWORD}'), ('1372','48957','url','{$DELL.HTTP.API.URL}'), ('1373','48957','user','{$DELL.HTTP.API.USER}'), ('1374','48970','http_proxy','{$DELL.HTTP.PROXY}'), ('1375','48970','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1376','48970','password','{$DELL.HTTP.API.PASSWORD}'), ('1377','48970','path','{#ODATA}'), ('1378','48970','url','{$DELL.HTTP.API.URL}'), ('1379','48970','user','{$DELL.HTTP.API.USER}'), ('1380','48971','http_proxy','{$DELL.HTTP.PROXY}'), ('1381','48971','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1382','48971','password','{$DELL.HTTP.API.PASSWORD}'), ('1383','48971','path','{#ODATA}'), ('1384','48971','url','{$DELL.HTTP.API.URL}'), ('1385','48971','user','{$DELL.HTTP.API.USER}'), ('1386','48972','http_proxy','{$DELL.HTTP.PROXY}'), ('1387','48972','http_status_code','{$DELL.HTTP.RETURN.CODE.OK}'), ('1388','48972','password','{$DELL.HTTP.API.PASSWORD}'), ('1389','48972','path','{#ODATA}'), ('1390','48972','url','{$DELL.HTTP.API.URL}'), ('1391','48972','user','{$DELL.HTTP.API.USER}'), ('1392','49387','app_id','{$AZURE.APP.ID}'), ('1393','49387','password','{$AZURE.PASSWORD}'), ('1394','49387','proxy','{$AZURE.PROXY}'), ('1395','49387','resource_id','{$AZURE.RESOURCE.ID}'), ('1396','49387','subscription_id','{$AZURE.SUBSCRIPTION.ID}'), ('1397','49387','tenant_id','{$AZURE.TENANT.ID}'), ('1398','49638','http_proxy','{$PURE.FLASHARRAY.HTTP_PROXY}'), ('1399','49638','password','{$PURE.FLASHARRAY.API.PASSWORD}'), ('1400','49638','token','{$PURE.FLASHARRAY.API.TOKEN}'), ('1401','49638','url','{$PURE.FLASHARRAY.API.URL}'), ('1402','49638','username','{$PURE.FLASHARRAY.API.USERNAME}'), ('1403','49638','version','{$PURE.FLASHARRAY.API.VERSION}'), ('1404','49639','http_proxy','{$PURE.FLASHARRAY.HTTP_PROXY}'), ('1405','49639','token','{$PURE.FLASHARRAY.API.TOKEN}'), ('1406','49639','url','{$PURE.FLASHARRAY.API.URL}'), ('1407','49639','version','{$PURE.FLASHARRAY.API.VERSION}'), ('1408','49865','app_id','{$AZURE.APP.ID}'), ('1409','49865','password','{$AZURE.PASSWORD}'), ('1410','49865','period','{$AZURE.VAULT.PERIOD}'), ('1411','49865','proxy','{$AZURE.PROXY}'), ('1412','49865','resource_id','{$AZURE.RESOURCE.ID}'), ('1413','49865','subscription_id','{$AZURE.SUBSCRIPTION.ID}'), ('1414','49865','tenant_id','{$AZURE.TENANT.ID}'), ('1415','43497','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1416','43498','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1417','43499','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1418','43592','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1419','43593','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1420','43594','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1421','43595','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1422','43684','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1423','43685','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1424','45521','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1425','45522','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1426','45529','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1427','45530','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1428','45531','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1429','45559','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1430','45560','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1431','45561','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1432','46451','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1433','46452','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1434','46453','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1435','47069','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1436','47070','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1437','47071','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1438','47282','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1439','47283','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1440','44052','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1441','44053','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1442','44054','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1443','45595','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1444','46503','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1445','47300','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1446','43528','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1447','45544','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1448','45576','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1449','46374','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1450','46485','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1451','47107','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1452','50002','httpproxy','{$MERAKI.HTTP_PROXY}'), ('1453','50002','organizationId','{$ORGANIZATION_ID}'), ('1454','50002','serial','{$SERIAL}'), ('1455','50002','token','{$MERAKI.TOKEN}'), ('1456','50002','url','{$MERAKI.API.URL}'), ('1457','50016','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('1458','50016','auth_type','{$AWS.AUTH_TYPE}'), ('1459','50016','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1460','50016','proxy','{$AWS.PROXY}'), ('1461','50016','region','{$AWS.REGION}'), ('1462','50016','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('1463','50016','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('1464','50016','sts_region','{$AWS.STS.REGION}'), ('1465','50016','vault','{$AWS.BACKUP_VAULT.NAME}'), ('1466','50017','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('1467','50017','auth_type','{$AWS.AUTH_TYPE}'), ('1468','50017','metadata_auth','{$AWS.ASSUME.ROLE.AUTH.METADATA}'), ('1469','50017','period','{$AWS.BACKUP_JOB.PERIOD}'), ('1470','50017','proxy','{$AWS.PROXY}'), ('1471','50017','region','{$AWS.REGION}'), ('1472','50017','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('1473','50017','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('1474','50017','sts_region','{$AWS.STS.REGION}'), ('1475','50017','vault','{$AWS.BACKUP_VAULT.NAME}'), ('1476','50037','AccessKeyId','{$AWS.ACCESS.KEY.ID}'), ('1477','50037','auth_type','{$AWS.AUTH_TYPE}'), ('1478','50037','describe_region','{$AWS.DESCRIBE.REGION}'), ('1479','50037','proxy','{$AWS.PROXY}'), ('1480','50037','region_match','{$AWS.BACKUP_VAULT.LLD.FILTER.REGION.MATCHES}'), ('1481','50037','region_not_match','{$AWS.BACKUP_VAULT.LLD.FILTER.REGION.NOT_MATCHES}'), ('1482','50037','role_arn','{$AWS.ASSUME.ROLE.ARN}'), ('1483','50037','SecretAccessKey','{$AWS.SECRET.ACCESS.KEY}'), ('1484','50037','sts_region','{$AWS.STS.REGION}'), ('1485','44296','httpproxy','{$MERAKI.HTTP_PROXY}'), ('1486','44296','organizationId','{$ID}'), ('1487','44296','token','{$MERAKI.TOKEN}'), ('1488','44296','url','{$MERAKI.API.URL}'), ('1489','44297','httpproxy','{$MERAKI.HTTP_PROXY}'), ('1490','44297','organizationId','{$ID}'), ('1491','44297','token','{$MERAKI.TOKEN}'), ('1492','44297','url','{$MERAKI.API.URL}'), ('1493','44298','httpproxy','{$MERAKI.HTTP_PROXY}'), ('1494','44298','organizationId','{$ID}'), ('1495','44298','token','{$MERAKI.TOKEN}'), ('1496','44298','url','{$MERAKI.API.URL}'), ('1497','46450','httpproxy','{$MERAKI.HTTP_PROXY}'), ('1498','46450','organizationId','{$ORGANIZATION_ID}'), ('1499','46450','serial','{$SERIAL}'), ('1500','46450','token','{$MERAKI.TOKEN}'), ('1501','46450','url','{$MERAKI.API.URL}'), ('1502','43901','login_domain','{$HPE.SYNERGY.API.LOGIN_DOMAIN}'); INSERT INTO item_tag (itemtagid,itemid,tag,value) VALUES ('6439','30196','frontend','{#PXNAME}'), ('6444','30197','backend','{#PXNAME}'), ('6449','30198','backend','{#PXNAME}'), ('6454','30199','backend','{#PXNAME}'), ('6459','30200','backend','{#PXNAME}'), ('6464','30201','backend','{#PXNAME}'), ('6469','30202','backend','{#PXNAME}'), ('6474','30203','backend','{#PXNAME}'), ('6479','30204','backend','{#PXNAME}'), ('6484','30205','backend','{#PXNAME}'), ('6489','30206','frontend','{#PXNAME}'), ('6494','30207','frontend','{#PXNAME}'), ('6499','30208','frontend','{#PXNAME}'), ('6504','30209','frontend','{#PXNAME}'), ('6509','30210','frontend','{#PXNAME}'), ('6514','30211','frontend','{#PXNAME}'), ('6519','30212','frontend','{#PXNAME}'), ('6524','30213','frontend','{#PXNAME}'), ('6529','30214','frontend','{#PXNAME}'), ('6534','30215','frontend','{#PXNAME}'), ('6539','30216','frontend','{#PXNAME}'), ('6544','30217','frontend','{#PXNAME}'), ('6549','30218','frontend','{#PXNAME}'), ('6609','35104','backend','{#PXNAME}'), ('6614','35105','backend','{#PXNAME}'), ('6619','35106','backend','{#PXNAME}'), ('6624','35107','backend','{#PXNAME}'), ('6629','35108','backend','{#PXNAME}'), ('6634','35109','backend','{#PXNAME}'), ('6639','35110','backend','{#PXNAME}'), ('6644','35111','backend','{#PXNAME}'), ('6649','35112','backend','{#PXNAME}'), ('6654','35113','backend','{#PXNAME}'), ('6659','35114','backend','{#PXNAME}'), ('6664','35115','frontend','{#PXNAME}'), ('6754','30239','frontend','{#PXNAME}'), ('6759','30240','backend','{#PXNAME}'), ('6764','30241','backend','{#PXNAME}'), ('6769','30242','backend','{#PXNAME}'), ('6774','30243','backend','{#PXNAME}'), ('6779','30244','backend','{#PXNAME}'), ('6784','30245','backend','{#PXNAME}'), ('6789','30246','backend','{#PXNAME}'), ('6794','30247','backend','{#PXNAME}'), ('6799','30248','backend','{#PXNAME}'), ('6804','30249','frontend','{#PXNAME}'), ('6809','30250','frontend','{#PXNAME}'), ('6814','30251','frontend','{#PXNAME}'), ('6819','30252','frontend','{#PXNAME}'), ('6824','30253','frontend','{#PXNAME}'), ('6829','30254','frontend','{#PXNAME}'), ('6834','30255','frontend','{#PXNAME}'), ('6839','30256','frontend','{#PXNAME}'), ('6844','30257','frontend','{#PXNAME}'), ('6849','30258','frontend','{#PXNAME}'), ('6854','30259','frontend','{#PXNAME}'), ('6859','30260','frontend','{#PXNAME}'), ('6864','30261','frontend','{#PXNAME}'), ('6924','35129','backend','{#PXNAME}'), ('6929','35130','backend','{#PXNAME}'), ('6934','35131','backend','{#PXNAME}'), ('6939','35132','backend','{#PXNAME}'), ('6944','35133','backend','{#PXNAME}'), ('6949','35134','backend','{#PXNAME}'), ('6954','35135','backend','{#PXNAME}'), ('6959','35136','backend','{#PXNAME}'), ('6964','35137','backend','{#PXNAME}'), ('6969','35138','backend','{#PXNAME}'), ('6974','35139','backend','{#PXNAME}'), ('6979','35140','frontend','{#PXNAME}'), ('8507','36814','organization','{#ORG_NAME}'), ('8512','36815','organization','{#ORG_NAME}'), ('8517','36816','organization','{#ORG_NAME}'), ('8522','36817','organization','{#ORG_NAME}'), ('8527','36818','organization','{#ORG_NAME}'), ('8532','36819','organization','{#ORG_NAME}'), ('11054','39754','city','{#CITY}'), ('11055','39754','name','{#NAME}'), ('11057','39754','state','{#STATE}'), ('11061','39755','city','{#CITY}'), ('11062','39755','name','{#NAME}'), ('11064','39755','state','{#STATE}'), ('11068','39756','city','{#CITY}'), ('11069','39756','name','{#NAME}'), ('11071','39756','state','{#STATE}'), ('11075','39757','city','{#CITY}'), ('11076','39757','name','{#NAME}'), ('11078','39757','state','{#STATE}'), ('11082','39758','city','{#CITY}'), ('11083','39758','name','{#NAME}'), ('11085','39758','state','{#STATE}'), ('11089','39759','city','{#CITY}'), ('11090','39759','name','{#NAME}'), ('11092','39759','state','{#STATE}'), ('11096','39760','city','{#CITY}'), ('11097','39760','name','{#NAME}'), ('11099','39760','state','{#STATE}'), ('11103','39761','city','{#CITY}'), ('11104','39761','name','{#NAME}'), ('11106','39761','state','{#STATE}'), ('11110','39762','city','{#CITY}'), ('11111','39762','name','{#NAME}'), ('11113','39762','state','{#STATE}'), ('11117','39763','city','{#CITY}'), ('11118','39763','name','{#NAME}'), ('11120','39763','state','{#STATE}'), ('11124','39764','city','{#CITY}'), ('11125','39764','name','{#NAME}'), ('11127','39764','state','{#STATE}'), ('11131','39765','city','{#CITY}'), ('11132','39765','name','{#NAME}'), ('11134','39765','state','{#STATE}'), ('11138','39766','city','{#CITY}'), ('11139','39766','name','{#NAME}'), ('11141','39766','state','{#STATE}'), ('11145','39767','city','{#CITY}'), ('11146','39767','name','{#NAME}'), ('11148','39767','state','{#STATE}'), ('11152','39768','city','{#CITY}'), ('11153','39768','name','{#NAME}'), ('11155','39768','state','{#STATE}'), ('11159','39769','city','{#CITY}'), ('11160','39769','name','{#NAME}'), ('11162','39769','state','{#STATE}'), ('11166','39770','city','{#CITY}'), ('11167','39770','name','{#NAME}'), ('11169','39770','state','{#STATE}'), ('11173','39771','city','{#CITY}'), ('11174','39771','name','{#NAME}'), ('11176','39771','state','{#STATE}'), ('11180','39772','edge','{#EDGE}'), ('11181','39772','enterprise','{#ENTERPRISE}'), ('11182','39772','name','{#NAME}'), ('11187','39773','edge','{#EDGE}'), ('11188','39773','enterprise','{#ENTERPRISE}'), ('11189','39773','name','{#NAME}'), ('11194','39774','edge','{#EDGE}'), ('11195','39774','enterprise','{#ENTERPRISE}'), ('11196','39774','name','{#NAME}'), ('11201','39775','edge','{#EDGE}'), ('11202','39775','enterprise','{#ENTERPRISE}'), ('11203','39775','name','{#NAME}'), ('11208','39776','edge','{#EDGE}'), ('11209','39776','enterprise','{#ENTERPRISE}'), ('11210','39776','name','{#NAME}'), ('11215','39777','edge','{#EDGE}'), ('11216','39777','enterprise','{#ENTERPRISE}'), ('11217','39777','name','{#NAME}'), ('11222','39778','edge','{#EDGE}'), ('11223','39778','enterprise','{#ENTERPRISE}'), ('11224','39778','name','{#NAME}'), ('11229','39779','edge','{#EDGE}'), ('11230','39779','enterprise','{#ENTERPRISE}'), ('11231','39779','name','{#NAME}'), ('11236','39780','edge','{#EDGE}'), ('11237','39780','enterprise','{#ENTERPRISE}'), ('11238','39780','name','{#NAME}'), ('11243','39781','edge','{#EDGE}'), ('11244','39781','enterprise','{#ENTERPRISE}'), ('11245','39781','name','{#NAME}'), ('11250','39782','name','{#NAME}'), ('11255','39783','name','{#NAME}'), ('11260','39784','name','{#NAME}'), ('11265','39785','name','{#NAME}'), ('11270','39786','name','{#NAME}'), ('11275','39787','name','{#NAME}'), ('11280','39788','name','{#NAME}'), ('11285','39789','name','{#NAME}'), ('11290','39790','edge','{#EDGE}'), ('11291','39790','name','{#NAME}'), ('11296','39791','edge','{#EDGE}'), ('11297','39791','name','{#NAME}'), ('11302','39792','edge','{#EDGE}'), ('11303','39792','name','{#NAME}'), ('11308','39793','edge','{#EDGE}'), ('11309','39793','name','{#NAME}'), ('11314','39794','edge','{#EDGE}'), ('11315','39794','name','{#NAME}'), ('11320','39795','edge','{#EDGE}'), ('11321','39795','name','{#NAME}'), ('11326','39796','edge','{#EDGE}'), ('11327','39796','name','{#NAME}'), ('11783','39827','component','raw'), ('11785','39829','component','requests'), ('11786','39830','component','grpc'), ('11787','39831','component','requests'), ('11789','39832','component','requests'), ('11791','39833','component','requests'), ('11793','39834','component','memory'), ('11794','39835','component','memory'), ('11795','39836','component','fds'), ('11796','39837','component','fds'), ('11797','39838','component','grpc'), ('11798','39839','component','go-threads'), ('11799','39840','component','grpc'), ('11800','39841','component','requests'), ('11801','39841','http-code','0'), ('11802','39842','component','goroutines'), ('11803','39843','component','cpu'), ('11804','39844','component','audit'), ('11805','39845','component','tls'), ('11806','39846','component','requests'), ('11808','39847','component','requests'), ('11810','39848','component','requests'), ('11812','39849','component','requests'), ('11814','39850','component','requests'), ('11816','39861','component','requests'), ('11817','39861','verb','{#VERB}'), ('11818','39862','component','requests'), ('11819','39862','verb','{#VERB}'), ('11820','39863','component','requests'), ('11821','39863','verb','{#VERB}'), ('11822','39864','component','requests'), ('11823','39864','verb','{#VERB}'), ('11824','39865','component','watchers'), ('11825','39865','kind','{#KIND}'), ('11826','39866','component','authentication'), ('11827','39866','name','{#NAME}'), ('11828','39867','component','authentication'), ('11829','39867','result','{#RESULT}'), ('11831','39869','component','etcd'), ('11832','39869','resource','{#RESOURCE}'), ('11833','39870','component','grpc'), ('11834','39870','grpc-code','{#GRPC_CODE}'), ('11835','39871','component','requests'), ('11836','39871','kind','{#KIND}'), ('11837','39872','component','requests'), ('11838','39872','resource','{#RESOURCE}'), ('11839','39872','scope','{#SCOPE}'), ('11840','39872','verb','{#VERB}'), ('11841','39873','component','requests'), ('11842','39873','verb','{#VERB}'), ('11843','39874','component','workqueue'), ('11844','39874','workqueue','{#NAME}'), ('11845','39875','component','workqueue'), ('11846','39875','workqueue','{#NAME}'), ('11847','39876','component','raw'), ('11848','39877','component','rest'), ('11850','39878','component','rest'), ('11852','39879','component','rest'), ('11854','39880','component','rest'), ('11856','39881','component','cpu'), ('11857','39882','component','goroutines'), ('11858','39883','component','go-threads'), ('11859','39884','component','leader'), ('11860','39885','component','fds'), ('11861','39886','component','fds'), ('11862','39887','component','memory'), ('11863','39888','component','memory'), ('11864','39890','component','workqueue'), ('11865','39890','workqueue','{#NAME}'), ('11866','39891','component','workqueue'), ('11867','39891','workqueue','{#NAME}'), ('11868','39892','component','workqueue'), ('11869','39892','workqueue','{#NAME}'), ('11870','39893','component','workqueue'), ('11871','39893','workqueue','{#NAME}'), ('11872','39894','component','workqueue'), ('11873','39894','workqueue','{#NAME}'), ('11874','39895','component','workqueue'), ('11875','39895','workqueue','{#NAME}'), ('11876','39896','component','workqueue'), ('11877','39896','workqueue','{#NAME}'), ('11878','39897','component','workqueue'), ('11879','39897','workqueue','{#NAME}'), ('11880','39898','component','workqueue'), ('11881','39898','workqueue','{#NAME}'), ('11882','39899','component','workqueue'), ('11883','39899','workqueue','{#NAME}'), ('11884','39900','component','workqueue'), ('11885','39900','workqueue','{#NAME}'), ('11886','39901','component','workqueue'), ('11887','39901','workqueue','{#NAME}'), ('11888','39902','component','workqueue'), ('11889','39902','workqueue','{#NAME}'), ('11890','39903','component','workqueue'), ('11891','39903','workqueue','{#NAME}'), ('11892','39904','component','workqueue'), ('11893','39904','workqueue','{#NAME}'), ('11894','39905','component','raw'), ('11895','39906','component','raw'), ('11896','39907','component','raw'), ('11897','39908','component','containers'), ('11898','39909','component','containers'), ('11899','39910','component','containers'), ('11900','39911','component','memory'), ('11901','39912','component','pods'), ('11902','39913','component','descriptors'), ('11903','39914','component','descriptors'), ('11904','39915','component','memory'), ('11905','39916','component','containers'), ('11906','39921','component','operations'), ('11907','39922','component','operations'), ('11908','39923','component','operations'), ('11909','39924','component','operations'), ('11910','39925','component','memory'), ('11911','39925','container','{#CONTAINER}'), ('11912','39925','namespace','{#NAMESPACE}'), ('11913','39925','pod','{#POD}'), ('11914','39926','component','memory'), ('11915','39926','container','{#CONTAINER}'), ('11916','39926','namespace','{#NAMESPACE}'), ('11917','39926','pod','{#POD}'), ('11918','39927','component','memory'), ('11919','39927','container','{#CONTAINER}'), ('11920','39927','namespace','{#NAMESPACE}'), ('11921','39927','pod','{#POD}'), ('11922','39928','component','memory'), ('11923','39928','container','{#CONTAINER}'), ('11924','39928','namespace','{#NAMESPACE}'), ('11925','39928','pod','{#POD}'), ('11926','39929','component','memory'), ('11927','39929','container','{#CONTAINER}'), ('11928','39929','namespace','{#NAMESPACE}'), ('11929','39929','pod','{#POD}'), ('11930','39930','component','memory'), ('11931','39930','container','{#CONTAINER}'), ('11932','39930','namespace','{#NAMESPACE}'), ('11933','39930','pod','{#POD}'), ('11934','39931','component','pod'), ('11935','39931','pod','{#NAME}'), ('11936','39932','component','pod'), ('11937','39932','pod','{#NAME}'), ('11938','39933','component','pod'), ('11939','39933','pod','{#NAME}'), ('11940','39934','code','{#CODE}'), ('11941','39934','component','requests'), ('11942','39934','host','{#HOST}'), ('11943','39934','method','{#METHOD}'), ('11944','39935','component','operations'), ('11945','39936','component','operations'), ('11946','39937','component','raw'), ('11947','39938','component','status'), ('12003','39970','component','conditions'), ('12004','39970','namespace','{#NAMESPACE}'), ('12005','39970','node','{#NODE}'), ('12006','39970','pod','{#POD}'), ('12007','39971','component','conditions'), ('12008','39971','namespace','{#NAMESPACE}'), ('12009','39971','node','{#NODE}'), ('12010','39971','pod','{#POD}'), ('12011','39972','component','conditions'), ('12012','39972','namespace','{#NAMESPACE}'), ('12013','39972','node','{#NODE}'), ('12014','39972','pod','{#POD}'), ('12015','39973','component','conditions'), ('12016','39973','namespace','{#NAMESPACE}'), ('12017','39973','node','{#NODE}'), ('12018','39973','pod','{#POD}'), ('12019','39974','component','container'), ('12020','39974','namespace','{#NAMESPACE}'), ('12021','39974','node','{#NODE}'), ('12022','39974','pod','{#POD}'), ('12023','39975','component','pod'), ('12024','39975','namespace','{#NAMESPACE}'), ('12025','39975','node','{#NODE}'), ('12026','39975','pod','{#POD}'), ('12027','39976','component','uptime'), ('12028','39976','namespace','{#NAMESPACE}'), ('12029','39976','node','{#NODE}'), ('12030','39976','pod','{#POD}'), ('12032','39978','component','raw'), ('12040','39986','component','rest'), ('12042','39987','component','cpu'), ('12043','39988','component','rest'), ('12045','39989','component','goroutines'), ('12046','39990','component','rest'), ('12048','39991','component','fds'), ('12049','39992','component','fds'), ('12050','39993','component','memory'), ('12051','39994','component','memory'), ('12052','39995','component','scheduler'), ('12053','39996','component','scheduler'), ('12054','39997','component','scheduler'), ('12055','39998','component','rest'), ('12057','39999','component','go-threads'), ('12058','40003','component','e2e-scheduling'), ('12059','40003','result','{#RESULT}'), ('12060','40004','component','e2e-scheduling'), ('12061','40004','result','{#RESULT}'), ('12062','40005','component','e2e-scheduling'), ('12063','40005','result','{#RESULT}'), ('12064','40006','component','e2e-scheduling'), ('12065','40006','result','{#RESULT}'), ('12066','40007','component','e2e-scheduling'), ('12067','40007','result','{#RESULT}'), ('12068','40008','component','binding'), ('12069','40009','component','scheduling-algorithm'), ('12070','40010','component','raw'), ('12071','40011','component','raw'), ('12072','40012','component','raw'), ('12073','40013','component','raw'), ('12074','40014','component','raw'), ('12075','40015','component','raw'), ('12076','40016','component','deployment'), ('12077','40017','component','namespace'), ('12078','40018','component','node'), ('12079','40019','component','service'), ('12080','40020','component','statefulset'), ('12081','40036','component','component'), ('12082','40036','component','{#NAME}'), ('12083','40037','component','daemonset'), ('12084','40037','daemonset','{#NAME}'), ('12085','40037','namespace','{#NAMESPACE}'), ('12086','40038','component','daemonset'), ('12087','40038','daemonset','{#NAME}'), ('12088','40038','namespace','{#NAMESPACE}'), ('12089','40039','component','daemonset'), ('12090','40039','daemonset','{#NAME}'), ('12091','40039','namespace','{#NAMESPACE}'), ('12092','40040','component','daemonset'), ('12093','40040','daemonset','{#NAME}'), ('12094','40040','namespace','{#NAMESPACE}'), ('12095','40041','component','daemonset'), ('12096','40041','daemonset','{#NAME}'), ('12097','40041','namespace','{#NAMESPACE}'), ('12098','40042','component','deployment'), ('12100','40042','namespace','{#NAMESPACE}'), ('12101','40043','component','deployment'), ('12103','40043','namespace','{#NAMESPACE}'), ('12104','40044','component','deployment'), ('12106','40044','namespace','{#NAMESPACE}'), ('12107','40045','component','deployment'), ('12109','40045','namespace','{#NAMESPACE}'), ('12110','40046','component','deployment'), ('12112','40046','namespace','{#NAMESPACE}'), ('12113','40047','component','deployment'), ('12115','40047','namespace','{#NAMESPACE}'), ('12116','40048','component','deployment'), ('12118','40048','namespace','{#NAMESPACE}'), ('12119','40049','component','endpoint'), ('12120','40049','endpoint','{#NAME}'), ('12121','40049','namespace','{#NAMESPACE}'), ('12122','40050','component','endpoint'), ('12123','40050','endpoint','{#NAME}'), ('12124','40050','namespace','{#NAMESPACE}'), ('12125','40051','component','endpoint'), ('12126','40051','endpoint','{#NAME}'), ('12127','40051','namespace','{#NAMESPACE}'), ('12128','40052','component','livez'), ('12129','40052','component','{#NAME}'), ('12130','40053','component','cpu'), ('12131','40053','node','{#NAME}'), ('12132','40054','component','cpu'), ('12133','40054','node','{#NAME}'), ('12134','40055','component','memory'), ('12135','40055','node','{#NAME}'), ('12136','40056','component','memory'), ('12137','40056','node','{#NAME}'), ('12138','40057','component','pods'), ('12139','40057','node','{#NAME}'), ('12140','40058','component','pods'), ('12141','40058','node','{#NAME}'), ('12142','40059','component','pod'), ('12143','40059','pod','{#NAME}'), ('12144','40060','component','pod'), ('12145','40060','pod','{#NAME}'), ('12146','40061','component','pod'), ('12147','40061','pod','{#NAME}'), ('12148','40062','component','pod'), ('12149','40062','pod','{#NAME}'), ('12150','40063','component','pod'), ('12151','40063','pod','{#NAME}'), ('12152','40064','component','pod'), ('12153','40064','pod','{#NAME}'), ('12154','40065','component','pod'), ('12155','40065','pod','{#NAME}'), ('12156','40066','component','pod'), ('12157','40066','pod','{#NAME}'), ('12158','40067','component','pod'), ('12159','40067','pod','{#NAME}'), ('12160','40068','component','pod'), ('12161','40068','pod','{#NAME}'), ('12162','40069','component','pod'), ('12163','40069','pod','{#NAME}'), ('12164','40070','component','pod'), ('12165','40070','pod','{#NAME}'), ('12166','40071','component','pod'), ('12167','40071','pod','{#NAME}'), ('12168','40072','component','pod'), ('12169','40072','pod','{#NAME}'), ('12170','40073','component','pod'), ('12171','40073','pod','{#NAME}'), ('12172','40074','component','pod'), ('12173','40074','pod','{#NAME}'), ('12174','40075','component','pod'), ('12175','40075','pod','{#NAME}'), ('12176','40076','component','pvc'), ('12177','40076','namespace','{#NAMESPACE}'), ('12203','40085','component','readyz'), ('12204','40085','component','{#NAME}'), ('12205','40086','component','replicaset'), ('12206','40086','namespace','{#NAMESPACE}'), ('12207','40086','replicaset','{#NAME}'), ('12208','40087','component','replicaset'), ('12209','40087','namespace','{#NAMESPACE}'), ('12210','40087','replicaset','{#NAME}'), ('12211','40088','component','replicaset'), ('12212','40088','namespace','{#NAMESPACE}'), ('12213','40088','replicaset','{#NAME}'), ('12214','40089','component','replicaset'), ('12215','40089','namespace','{#NAMESPACE}'), ('12216','40089','replicaset','{#NAME}'), ('12217','40090','component','statefulset'), ('12218','40090','namespace','{#NAMESPACE}'), ('12219','40090','statefulset','{#NAME}'), ('12220','40091','component','statefulset'), ('12221','40091','namespace','{#NAMESPACE}'), ('12222','40091','statefulset','{#NAME}'), ('12223','40092','component','statefulset'), ('12224','40092','namespace','{#NAMESPACE}'), ('12225','40092','statefulset','{#NAME}'), ('12226','40093','component','statefulset'), ('12227','40093','namespace','{#NAMESPACE}'), ('12228','40093','statefulset','{#NAME}'), ('12229','40094','component','statefulset'), ('12230','40094','namespace','{#NAMESPACE}'), ('12231','40094','statefulset','{#NAME}'), ('14962','32442','component','inventory'), ('14963','32443','component','memory'), ('14964','32444','component','memory'), ('14965','32445','component','storage'), ('14966','32446','component','storage'), ('14967','32447','component','storage'), ('14968','32448','component','storage'), ('14969','32449','component','broker'), ('14970','32450','component','broker'), ('14971','32451','component','broker'), ('14972','32452','component','broker'), ('14973','32453','component','system'), ('14974','32454','component','destination'), ('14975','32455','component','destination'), ('14976','32456','component','destination'), ('14977','32457','component','destination'), ('14978','32458','component','destination'), ('14979','32459','component','destination'), ('14980','32460','component','memory'), ('14981','32461','component','destination'), ('14982','32462','component','destination'), ('14983','28743','component','application'), ('14984','28743','component','health'), ('14989','28748','component','application'), ('14990','28748','component','health'), ('14991','30896','component','raw'), ('14992','30897','component','system'), ('14993','30898','component','system'), ('14994','30899','component','system'), ('14995','30900','component','system'), ('14996','30901','component','system'), ('14997','30902','component','network'), ('14998','30903','component','network'), ('14999','30904','component','system'), ('15000','30905','component','system'), ('15001','30906','component','system'), ('15002','30907','component','system'), ('15003','30908','component','system'), ('15004','30909','component','system'), ('15005','30910','component','system'), ('15006','30911','component','system'), ('15007','30912','component','system'), ('15008','30913','component','network'), ('15009','30914','component','network'), ('15010','30915','component','system'), ('15011','30917','component','connection'), ('15012','30918','component','connection'), ('15013','30919','component','connection'), ('15014','30920','component','connection'), ('15015','30921','component','connection'), ('15016','30922','component','system'), ('15017','28775','component','raw'), ('15018','28776','component','application'), ('15019','28776','component','health'), ('15020','28777','component','application'), ('15021','28777','component','health'), ('15022','28778','component','system'), ('15023','28779','component','system'), ('15024','28780','component','system'), ('15025','28781','component','system'), ('15026','28782','component','system'), ('15027','28783','component','system'), ('15028','28784','component','system'), ('15029','28785','component','system'), ('15030','28786','component','system'), ('15031','28787','component','system'), ('15032','28788','component','system'), ('15033','28789','component','system'), ('15034','28790','component','system'), ('15035','28791','component','system'), ('15036','28792','component','network'), ('15037','28793','component','network'), ('15038','28794','component','network'), ('15039','28795','component','network'), ('15040','28796','component','system'), ('15041','28798','component','connection'), ('15042','28799','component','connection'), ('15043','28800','component','connection'), ('15044','28801','component','connection'), ('15045','28802','component','connection'), ('15046','28803','component','system'), ('15047','32463','component','raw'), ('15048','32464','component','discovery'), ('15049','32464','component','raw'), ('15050','32486','component','{#METRIC}'), ('15051','32487','component','{#METRIC}'), ('15052','32488','component','{#METRIC}'), ('15053','32489','component','{#METRIC}'), ('15054','32490','component','{#METRIC}'), ('15055','32491','component','{#METRIC}'), ('15056','32492','component','{#METRIC}'), ('15057','32493','component','{#METRIC}'), ('15058','32494','component','{#METRIC}'), ('15059','32495','component','{#METRIC}'), ('15060','32496','component','{#METRIC}'), ('15061','32497','component','{#METRIC}'), ('15062','32498','component','{#METRIC}'), ('15063','32499','component','{#METRIC}'), ('15064','32500','component','{#METRIC}'), ('15065','32501','component','{#METRIC}'), ('15066','32502','component','{#METRIC}'), ('15067','32503','component','{#METRIC}'), ('15068','32504','component','{#METRIC}'), ('15069','32505','component','{#METRIC}'), ('15070','32506','component','{#METRIC}'), ('15071','32117','component','disk'), ('15072','32117','component','raw'), ('15073','32118','component','osd'), ('15074','32118','component','raw'), ('15075','32119','component','raw'), ('15076','32120','component','application'), ('15077','32120','component','health'), ('15078','32121','component','osd'), ('15079','32121','component','raw'), ('15080','32122','component','cluster'), ('15081','32122','component','osd'), ('15082','32123','component','placement-groups'), ('15083','32124','component','placement-groups'), ('15084','32125','component','placement-groups'), ('15085','32126','component','placement-groups'), ('15086','32127','component','placement-groups'), ('15087','32128','component','placement-groups'), ('15088','32129','component','placement-groups'), ('15089','32130','component','placement-groups'), ('15090','32131','component','placement-groups'), ('15091','32132','component','placement-groups'), ('15092','32133','component','placement-groups'), ('15093','32134','component','cluster'), ('15094','32134','component','osd'), ('15095','32135','component','cluster'), ('15096','32135','component','disk'), ('15097','32136','component','cluster'), ('15098','32136','component','disk'), ('15099','32137','component','monitors'), ('15100','32138','component','cluster'), ('15101','32138','component','disk'), ('15102','32139','component','cluster'), ('15103','32139','component','disk'), ('15104','32140','component','cluster'), ('15105','32141','component','cluster'), ('15106','32141','component','disk'), ('15107','32142','component','cluster'), ('15108','32142','component','disk'), ('15109','32143','component','placement-groups'), ('15110','32144','component','placement-groups'), ('15111','32145','component','cluster'), ('15112','32145','component','placement-groups'), ('15113','32146','component','cluster'), ('15114','32146','component','osd'), ('15115','32147','component','placement-groups'), ('15116','32148','component','cluster'), ('15117','32148','component','pools'), ('15118','32149','component','cluster'), ('15119','32150','component','cluster'), ('15120','32150','component','osd'), ('15121','32151','component','cluster'), ('15122','32151','component','osd'), ('15123','32152','component','cluster'), ('15124','32152','component','osd'), ('15125','32153','component','cluster'), ('15126','32154','component','cluster'), ('15127','32154','component','osd'), ('15128','32155','component','cluster'), ('15129','32155','component','osd'), ('15130','32156','component','cluster'), ('15131','32156','component','osd'), ('15132','32157','component','placement-groups'), ('15133','32158','component','cluster'), ('15134','32158','component','osd'), ('15135','32159','component','cluster'), ('15136','32159','component','osd'), ('15137','32160','component','cluster'), ('15138','32161','component','cluster'), ('15139','32161','component','osd'), ('15140','32161','component','placement-groups'), ('15141','32162','component','cluster'), ('15142','32162','component','osd'), ('15143','32162','component','placement-groups'), ('15144','32163','component','cluster'), ('15145','32163','component','osd'), ('15146','32163','component','placement-groups'), ('15147','32164','component','cluster'), ('15148','32164','component','osd'), ('15149','32165','component','monitors'), ('15150','32166','component','health'), ('15151','32167','component','cluster'), ('15152','32167','component','disk'), ('15153','32170','class','{#CLASS}'), ('15154','32170','component','osd'), ('15155','32170','host','{#HOST}'), ('15156','32170','osd','{#OSDNAME}'), ('15157','32171','class','{#CLASS}'), ('15158','32171','component','osd'), ('15159','32171','host','{#HOST}'), ('15160','32171','osd','{#OSDNAME}'), ('15161','32172','class','{#CLASS}'), ('15162','32172','component','osd'), ('15163','32172','host','{#HOST}'), ('15164','32172','osd','{#OSDNAME}'), ('15165','32173','class','{#CLASS}'), ('15166','32173','component','osd'), ('15167','32173','host','{#HOST}'), ('15168','32173','osd','{#OSDNAME}'), ('15169','32174','class','{#CLASS}'), ('15170','32174','component','osd'), ('15171','32174','host','{#HOST}'), ('15172','32174','osd','{#OSDNAME}'), ('15173','32175','class','{#CLASS}'), ('15174','32175','component','osd'), ('15175','32175','host','{#HOST}'), ('15176','32175','osd','{#OSDNAME}'), ('15177','32507','component','pools'), ('15178','32507','crushrule','{#CRUSHRULE}'), ('15179','32507','pool','{#POOLNAME}'), ('15180','32508','component','pools'), ('15181','32508','crushrule','{#CRUSHRULE}'), ('15182','32508','pool','{#POOLNAME}'), ('15183','32509','component','pools'), ('15184','32509','crushrule','{#CRUSHRULE}'), ('15185','32509','pool','{#POOLNAME}'), ('15186','32510','component','pools'), ('15187','32510','crushrule','{#CRUSHRULE}'), ('15188','32510','pool','{#POOLNAME}'), ('15189','32511','component','pools'), ('15190','32511','crushrule','{#CRUSHRULE}'), ('15191','32511','pool','{#POOLNAME}'), ('15192','32512','component','pools'), ('15193','32512','crushrule','{#CRUSHRULE}'), ('15194','32512','pool','{#POOLNAME}'), ('15195','32513','component','pools'), ('15196','32513','crushrule','{#CRUSHRULE}'), ('15197','32513','pool','{#POOLNAME}'), ('15198','32514','component','pools'), ('15199','32514','crushrule','{#CRUSHRULE}'), ('15200','32514','pool','{#POOLNAME}'), ('15201','32515','component','pools'), ('15202','32515','crushrule','{#CRUSHRULE}'), ('15203','32515','pool','{#POOLNAME}'), ('15204','35064','component','raw'), ('15205','35065','component','cert'), ('15206','35066','component','cert'), ('15207','35067','component','cert'), ('15208','35068','component','cert'), ('15209','35069','component','cert'), ('15210','35070','component','cert'), ('15211','35071','component','cert'), ('15212','35072','component','cert'), ('15213','35073','component','cert'), ('15214','35074','component','cert'), ('15215','35075','component','cert'), ('15216','35076','component','cert'), ('15217','35077','component','raw'), ('15218','35078','component','bandwidth'), ('15219','35079','component','requests'), ('15220','35080','component','threats'), ('15221','35081','component','requests'), ('15222','35082','component','requests'), ('15223','35083','component','requests'), ('15224','35084','component','requests'), ('15225','35085','component','requests'), ('15226','35086','component','requests'), ('15227','35087','component','requests'), ('15228','35088','component','requests'), ('15229','35089','component','requests'), ('15230','35090','component','requests'), ('15231','35091','component','bandwidth'), ('15232','35092','component','requests'), ('15233','35093','component','requests'), ('15234','35094','component','pageviews'), ('15235','35095','component','dns'), ('15236','35096','component','dns'), ('15237','35097','component','dns'), ('15238','35098','component','bandwidth'), ('15239','35099','component','bandwidth'), ('15240','35100','component','bandwidth'), ('15241','35101','component','bandwidth'), ('15242','35102','component','uniques'), ('15243','30527','component','raw'), ('15244','30528','component','raw'), ('15245','30529','component','raw'), ('15246','30530','component','application'), ('15247','30530','component','health'), ('15248','30531','component','raw'), ('15249','30532','component','os'), ('15250','30533','component','application'), ('15251','30534','component','application'), ('15252','30535','component','memory'), ('15253','30536','component','memory'), ('15254','30537','component','system'), ('15255','30538','component','cpu'), ('15256','30539','component','os'), ('15257','30540','component','application'), ('15258','30541','component','system'), ('15259','30542','component','system'), ('15260','30543','component','os'), ('15261','30544','component','os'), ('15262','30545','component','system'), ('15263','30546','component','system'), ('15264','30547','component','application'), ('15265','30548','component','memory'), ('15266','30548','component','storage'), ('15267','30549','component','storage'), ('15268','30550','component','network'), ('15269','30551','component','memory'), ('15270','30552','component','cpu'), ('15271','30553','component','containers'), ('15272','30553','component','storage'), ('15273','30554','component','containers'), ('15274','30555','component','containers'), ('15275','30556','component','containers'), ('15276','30557','component','containers'), ('15277','30558','component','cpu'), ('15278','30559','component','cpu'), ('15279','30560','component','cpu'), ('15280','30561','component','memory'), ('15281','30562','component','application'), ('15282','30563','component','application'), ('15283','30564','component','storage'), ('15284','30565','component','system'), ('15285','30566','component','images'), ('15286','30566','component','storage'), ('15287','30567','component','images'), ('15288','30568','component','images'), ('15289','30569','component','os'), ('15290','30570','component','storage'), ('15291','30573','component','raw'), ('15292','30573','container','{#NAME}'), ('15293','30574','component','raw'), ('15294','30574','container','{#NAME}'), ('15295','30575','component','cpu'), ('15296','30575','container','{#NAME}'), ('15297','30576','component','memory'), ('15298','30576','container','{#NAME}'), ('15299','30577','component','memory'), ('15300','30577','container','{#NAME}'), ('15301','30578','component','memory'), ('15302','30578','container','{#NAME}'), ('15303','30579','component','memory'), ('15304','30579','container','{#NAME}'), ('15305','30580','component','memory'), ('15306','30580','container','{#NAME}'), ('15307','30581','component','system'), ('15308','30581','container','{#NAME}'), ('15309','30582','component','cpu'), ('15310','30582','container','{#NAME}'), ('15311','30583','component','network'), ('15312','30583','container','{#NAME}'), ('15313','30584','component','network'), ('15314','30584','container','{#NAME}'), ('15315','30585','component','network'), ('15316','30585','container','{#NAME}'), ('15317','30586','component','network'), ('15318','30586','container','{#NAME}'), ('15319','30587','component','network'), ('15320','30587','container','{#NAME}'), ('15321','30588','component','network'), ('15322','30588','container','{#NAME}'), ('15323','30589','component','network'), ('15324','30589','container','{#NAME}'), ('15325','30590','component','cpu'), ('15326','30590','container','{#NAME}'), ('15327','30591','component','cpu'), ('15328','30591','container','{#NAME}'), ('15329','30592','component','system'), ('15330','30592','container','{#NAME}'), ('15331','30593','component','system'), ('15332','30593','container','{#NAME}'), ('15333','30594','component','images'), ('15334','30594','container','{#NAME}'), ('15335','30595','component','system'), ('15336','30595','container','{#NAME}'), ('15337','30596','component','system'), ('15338','30596','container','{#NAME}'), ('15339','30597','component','system'), ('15340','30597','container','{#NAME}'), ('15341','30598','component','system'), ('15342','30598','container','{#NAME}'), ('15343','30599','component','system'), ('15344','30599','container','{#NAME}'), ('15345','30600','component','system'), ('15346','30600','container','{#NAME}'), ('15347','30601','component','cpu'), ('15348','30601','container','{#NAME}'), ('15349','30602','component','system'), ('15350','30602','container','{#NAME}'), ('15351','30603','component','system'), ('15352','30603','container','{#NAME}'), ('15353','30604','component','system'), ('15354','30604','container','{#NAME}'), ('15355','30605','component','system'), ('15356','30605','container','{#NAME}'), ('15357','30606','component','cpu'), ('15358','30606','container','{#NAME}'), ('15359','30607','component','cpu'), ('15360','30607','container','{#NAME}'), ('15361','30608','component','network'), ('15362','30608','container','{#NAME}'), ('15363','30609','component','system'), ('15364','30609','image','{#NAME}'), ('15365','30610','component','storage'), ('15366','30610','image','{#NAME}'), ('15367','39803','component','cpu'), ('15368','39803','container','{#NAME}'), ('15369','30690','component','health'), ('15370','30690','component','network'), ('15371','30691','component','raw'), ('15372','30692','component','network'), ('15373','30693','component','raw'), ('15374','30694','component','raw'), ('15375','30695','component','documents'), ('15376','30696','component','system'), ('15377','30697','component','storage'), ('15378','30698','component','storage'), ('15379','30699','component','nodes'), ('15380','30700','component','nodes'), ('15381','30701','component','nodes'), ('15382','30702','component','shards'), ('15383','30703','component','indices'), ('15384','30704','component','tasks'), ('15385','30705','component','health'), ('15386','30706','component','shards'), ('15387','30707','component','tasks'), ('15388','30708','component','nodes'), ('15389','30709','component','nodes'), ('15390','30710','component','shards'), ('15391','30711','component','shards'), ('15392','30712','component','shards'), ('15393','30714','component','queries'), ('15394','30714','node','{#ES.NODE}'), ('15395','30715','component','operations'), ('15396','30715','node','{#ES.NODE}'), ('15397','30716','component','operations'), ('15398','30716','node','{#ES.NODE}'), ('15399','30717','component','fetches'), ('15400','30717','node','{#ES.NODE}'), ('15401','30718','component','refresh-thread-pool'), ('15402','30718','node','{#ES.NODE}'), ('15403','30719','component','queries'), ('15404','30719','node','{#ES.NODE}'), ('15405','30720','component','queries'), ('15406','30720','node','{#ES.NODE}'), ('15407','30721','component','memory'), ('15408','30721','node','{#ES.NODE}'), ('15409','30722','component','memory'), ('15410','30722','node','{#ES.NODE}'), ('15411','30723','component','memory'), ('15412','30723','node','{#ES.NODE}'), ('15413','30724','component','memory'), ('15414','30724','node','{#ES.NODE}'), ('15415','30725','component','system'), ('15416','30725','node','{#ES.NODE}'), ('15417','30726','component','storage'), ('15418','30726','node','{#ES.NODE}'), ('15419','30727','component','refresh-thread-pool'), ('15420','30727','node','{#ES.NODE}'), ('15421','30728','component','queries'), ('15422','30728','node','{#ES.NODE}'), ('15423','30729','component','refresh-thread-pool'), ('15424','30729','node','{#ES.NODE}'), ('15425','30730','component','search-thread-pool'), ('15426','30730','node','{#ES.NODE}'), ('15427','30731','component','search-thread-pool'), ('15428','30731','node','{#ES.NODE}'), ('15429','30732','component','search-thread-pool'), ('15430','30732','node','{#ES.NODE}'), ('15431','30733','component','search-thread-pool'), ('15432','30733','node','{#ES.NODE}'), ('15433','30734','component','write-thread-pool'), ('15434','30734','node','{#ES.NODE}'), ('15435','30735','component','write-thread-pool'), ('15436','30735','node','{#ES.NODE}'), ('15437','30736','component','write-thread-pool'), ('15438','30736','node','{#ES.NODE}'), ('15439','30737','component','refresh-thread-pool'), ('15440','30737','node','{#ES.NODE}'), ('15441','30738','component','queries'), ('15442','30738','node','{#ES.NODE}'), ('15443','30739','component','queries'), ('15444','30739','node','{#ES.NODE}'), ('15445','30740','component','operations'), ('15446','30740','node','{#ES.NODE}'), ('15447','30741','component','connections'), ('15448','30741','node','{#ES.NODE}'), ('15449','30742','component','connections'), ('15450','30742','node','{#ES.NODE}'), ('15451','30743','component','operations'), ('15452','30743','node','{#ES.NODE}'), ('15453','30744','component','operations'), ('15454','30744','node','{#ES.NODE}'), ('15455','30745','component','operations'), ('15456','30745','node','{#ES.NODE}'), ('15457','30746','component','operations'), ('15458','30746','node','{#ES.NODE}'), ('15459','30747','component','operations'), ('15460','30747','node','{#ES.NODE}'), ('15461','30748','component','operations'), ('15462','30748','node','{#ES.NODE}'), ('15463','30749','component','storage'), ('15464','30749','node','{#ES.NODE}'), ('15465','30750','component','operations'), ('15466','30750','node','{#ES.NODE}'), ('15467','30751','component','operations'), ('15468','30751','node','{#ES.NODE}'), ('15469','30752','component','operations'), ('15470','30752','node','{#ES.NODE}'), ('15471','30753','component','fetches'), ('15472','30753','node','{#ES.NODE}'), ('15473','30754','component','fetches'), ('15474','30754','node','{#ES.NODE}'), ('15475','30755','component','fetches'), ('15476','30755','node','{#ES.NODE}'), ('15477','30756','component','fetches'), ('15478','30756','node','{#ES.NODE}'), ('15479','30757','component','fetches'), ('15480','30757','node','{#ES.NODE}'), ('15481','30758','component','write-thread-pool'), ('15482','30758','node','{#ES.NODE}'), ('15483','30923','component','health'), ('15484','30923','component','network'), ('15485','30924','component','health'), ('15486','30925','component','raw'), ('15487','30926','component','application'), ('15488','30927','component','fds'), ('15489','30928','component','proposals'), ('15490','30929','component','proposals'), ('15491','30930','component','proposals'), ('15492','30931','component','proposals'), ('15493','30932','component','operations'), ('15494','30933','component','operations'), ('15495','30934','component','store'), ('15496','30935','component','grpc'), ('15497','30936','component','memory'), ('15498','30937','component','application'), ('15499','30938','component','transactions'), ('15500','30939','component','application'), ('15501','30940','component','memory'), ('15502','30941','component','store'), ('15503','30942','component','grpc'), ('15504','30943','component','application'), ('15505','30944','component','fds'), ('15506','30945','component','leader'), ('15507','30946','component','database'), ('15508','30947','component','operations'), ('15509','30948','component','events'), ('15510','30949','component','grpc'), ('15511','30950','component','grpc'), ('15512','30951','component','grpc'), ('15513','30952','component','http'), ('15514','30952','http-code','4xx'), ('15515','30953','component','cpu'), ('15516','30954','component','http'), ('15517','30954','http-code','5xx'), ('15518','30955','component','http'), ('15519','30956','component','leader'), ('15520','30957','component','keys'), ('15521','30958','component','keys'), ('15522','30959','component','keys'), ('15523','30960','component','leader'), ('15524','30963','component','grpc'), ('15525','30963','grpc-code','{#GRPC.CODE}'), ('15526','30964','component','network'), ('15527','30964','component','peers'), ('15528','30964','peer','{#ETCD.PEER}'), ('15529','30965','component','network'), ('15530','30965','component','peers'), ('15531','30965','peer','{#ETCD.PEER}'), ('15532','30966','component','network'), ('15533','30966','component','peers'), ('15534','30966','peer','{#ETCD.PEER}'), ('15535','30967','component','network'), ('15536','30967','component','peers'), ('15537','30967','peer','{#ETCD.PEER}'), ('15538','32516','component','application'), ('15539','32517','component','application'), ('15540','32518','component','application'), ('15541','32519','component','application'), ('15542','32520','component','application'), ('15543','32521','component','application'), ('15544','32522','component','application'), ('15545','32523','component','application'), ('15546','32524','component','application'), ('15547','32528','component','database'), ('15548','32528','database','{#INSTANCE}'), ('15549','32529','component','database'), ('15550','32529','database','{#INSTANCE}'), ('15551','32530','component','database'), ('15552','32530','database','{#INSTANCE}'), ('15553','32531','component','database'), ('15554','32531','database','{#INSTANCE}'), ('15555','32532','component','database'), ('15556','32532','database','{#INSTANCE}'), ('15557','32533','component','database'), ('15558','32533','database','{#INSTANCE}'), ('15559','32534','component','database'), ('15560','32534','database','{#INSTANCE}'), ('15561','32535','component','database'), ('15562','32535','database','{#INSTANCE}'), ('15563','32536','component','database'), ('15564','32536','database','{#INSTANCE}'), ('15565','32537','component','database'), ('15566','32537','database','{#INSTANCE}'), ('15567','32538','component','database'), ('15568','32538','database','{#INSTANCE}'), ('15569','32539','component','database'), ('15570','32539','database','{#INSTANCE}'), ('15571','32540','component','database'), ('15572','32540','database','{#INSTANCE}'), ('15573','32541','component','database'), ('15574','32541','database','{#INSTANCE}'), ('15575','32542','component','database'), ('15576','32542','database','{#INSTANCE}'), ('15577','32543','component','ldap'), ('15578','32543','ldap','{#INSTANCE}'), ('15579','32544','component','ldap'), ('15580','32544','ldap','{#INSTANCE}'), ('15581','32545','component','web'), ('15582','32545','web','{#INSTANCE}'), ('15583','32546','component','application'), ('15584','32547','component','application'), ('15585','32548','component','application'), ('15586','32549','component','application'), ('15587','32550','component','application'), ('15588','32551','component','application'), ('15589','32552','component','application'), ('15590','32553','component','application'), ('15591','32554','component','application'), ('15592','32558','component','application'), ('15593','32559','component','application'), ('15594','32560','component','application'), ('15595','32561','component','application'), ('15596','32562','component','application'), ('15597','32563','component','application'), ('15598','32564','component','application'), ('15599','32565','component','application'), ('15600','32566','component','application'), ('15601','32567','component','application'), ('15602','32568','component','application'), ('15603','32569','component','application'), ('15604','32570','component','application'), ('15605','32571','component','application'), ('15606','32572','component','application'), ('15607','32573','component','application'), ('15608','32574','component','application'), ('15609','32575','component','application'), ('15611','31499','component','class'), ('15628','31516','component','os'), ('15629','31517','component','os'), ('15630','31518','component','os'), ('15631','31519','component','runtime'), ('15632','31520','component','runtime'), ('15633','31521','component','runtime'), ('15634','31522','component','threading'), ('15635','31523','component','threading'), ('15636','31524','component','threading'), ('15639','31527','component','class'), ('15641','31529','component','class'), ('15642','31530','component','compilation'), ('15643','31531','component','compilation'), ('15656','31544','component','memory'), ('15657','31545','component','memory'), ('15658','31546','component','memory'), ('15659','31547','component','memory'), ('15660','31548','component','memory'), ('15661','31549','component','memory'), ('15662','31550','component','memory'), ('15665','31553','component','threading'), ('15666','32576','component','health'), ('15667','32577','component','health'), ('15668','32578','component','raw'), ('15669','32579','component','fds'), ('15670','32580','component','redis'), ('15671','32581','component','redis'), ('15672','32582','component','redis'), ('15673','32583','component','fds'), ('15674','32584','component','fds'), ('15675','32585','component','fds'), ('15676','32586','component','cpu'), ('15677','32587','component','memory'), ('15678','32588','component','redis'), ('15679','32589','component','memory'), ('15680','32590','component','memory'), ('15681','32591','component','application'), ('15682','32592','component','application'), ('15683','32593','component','system'), ('15684','32594','component','sessions'), ('15685','32595','component','transactions'), ('15686','32596','component','application'), ('15687','32597','component','redis'), ('15688','32598','component','cache'), ('15689','32599','component','redis'), ('15690','32600','component','sessions'), ('15691','32601','component','database'), ('15692','32602','component','database'), ('15693','32603','component','database'), ('15694','32604','component','database'), ('15695','32605','component','database'), ('15696','32606','component','database'), ('15697','32607','component','application'), ('15698','32608','component','requests'), ('15699','32608','http-code','4xx'), ('15700','32609','component','cache'), ('15701','32610','component','requests'), ('15702','32610','http-code','5xx'), ('15703','32611','component','requests'), ('15704','32612','component','pipelines'), ('15705','32613','component','pipelines'), ('15706','32614','component','pipelines'), ('15707','32615','component','pipelines'), ('15708','32616','component','pipelines'), ('15709','32617','component','pipelines'), ('15710','32618','component','sessions'), ('15711','32621','component','puma'), ('15712','32622','component','puma'), ('15713','32623','component','puma'), ('15714','32624','component','puma'), ('15715','32625','component','puma'), ('15716','32626','component','puma'), ('15717','32627','component','puma'), ('15718','32628','component','puma'), ('15719','32629','component','puma'), ('15720','32630','component','puma'), ('15721','32631','component','unicorn'), ('15722','32632','component','unicorn'), ('15723','32633','component','unicorn'), ('15724','32634','component','raw'), ('15725','32635','component','raw'), ('15726','32636','component','health'), ('15727','32636','component','network'), ('15728','32637','component','network'), ('15729','32638','component','network'), ('15730','32639','component','raw'), ('15731','32640','component','health'), ('15732','32640','component','network'), ('15733','32641','component','raw'), ('15734','32642','component','namenode'), ('15735','32643','component','resourcemanager'), ('15736','32644','component','namenode'), ('15737','32645','component','namenode'), ('15738','32646','component','namenode'), ('15739','32647','component','system'), ('15740','32648','component','resourcemanager'), ('15741','32649','component','resourcemanager'), ('15742','32650','component','resourcemanager'), ('15743','32651','component','resourcemanager'), ('15744','32652','component','resourcemanager'), ('15745','32653','component','resourcemanager'), ('15746','32654','component','namenode'), ('15747','32655','component','resourcemanager'), ('15748','32656','component','namenode'), ('15749','32657','component','namenode'), ('15750','32658','component','namenode'), ('15751','32659','component','namenode'), ('15752','32660','component','namenode'), ('15753','32661','component','namenode'), ('15754','32662','component','namenode'), ('15755','32663','component','namenode'), ('15756','32664','component','namenode'), ('15757','32665','component','namenode'), ('15758','32666','component','namenode'), ('15759','32667','component','system'), ('15760','32670','component','raw'), ('15761','32671','component','raw'), ('15762','32672','component','datanode'), ('15763','32673','component','capacity'), ('15764','32674','component','datanode'), ('15765','32675','component','capacity'), ('15766','32676','component','datanode'), ('15767','32677','component','datanode'), ('15768','32678','component','datanode'), ('15769','32679','component','capacity'), ('15770','32680','component','system'), ('15771','32681','component','system'), ('15772','32682','component','memory'), ('15773','32683','component','nodemanager'), ('15774','32684','component','nodemanager'), ('15775','32685','component','nodemanager'), ('15776','32686','component','nodemanager'), ('15777','32687','component','nodemanager'), ('15778','32688','component','nodemanager'), ('15779','32689','component','nodemanager'), ('15780','32690','component','system'), ('15781','32691','component','memory'), ('15782','32692','component','system'), ('15783','30187','component','health'), ('15784','30187','component','network'), ('15785','30188','component','health'), ('15786','30188','component','network'), ('15787','30189','component','raw'), ('15788','30190','component','raw'), ('15789','30191','component','application'), ('15790','30192','component','application'), ('15791','35103','component','raw'), ('15792','30196','component','sessions'), ('15793','30197','component','responses'), ('15794','30198','component','connections'), ('15795','30199','component','responses'), ('15796','30200','component','requests'), ('15797','30201','component','requests'), ('15798','30202','component','responses'), ('15799','30203','component','health'), ('15800','30204','component','requests'), ('15801','30205','component','connections'), ('15802','30206','component','network'), ('15803','30207','component','network'), ('15804','30208','component','requests'), ('15805','30209','component','requests'), ('15806','30210','component','responses'), ('15807','30211','component','responses'), ('15808','30212','component','responses'), ('15809','30213','component','responses'), ('15810','30214','component','responses'), ('15811','30215','component','sessions'), ('15812','30216','component','requests'), ('15813','30217','component','sessions'), ('15814','30218','component','sessions'), ('15815','30219','component','responses'), ('15816','30219','server','{#PXNAME}'), ('15817','30219','service','{#SVNAME}'), ('15818','30220','component','connections'), ('15819','30220','server','{#PXNAME}'), ('15820','30220','service','{#SVNAME}'), ('15821','30221','component','responses'), ('15822','30221','server','{#PXNAME}'), ('15823','30221','service','{#SVNAME}'), ('15824','30222','component','responses'), ('15825','30222','server','{#PXNAME}'), ('15826','30222','service','{#SVNAME}'), ('15827','30223','component','responses'), ('15828','30223','server','{#PXNAME}'), ('15829','30223','service','{#SVNAME}'), ('15830','30224','component','requests'), ('15831','30224','server','{#PXNAME}'), ('15832','30224','service','{#SVNAME}'), ('15833','30225','component','requests'), ('15834','30225','server','{#PXNAME}'), ('15835','30225','service','{#SVNAME}'), ('15836','30226','component','health'), ('15837','30226','server','{#PXNAME}'), ('15838','30226','service','{#SVNAME}'), ('15839','30227','component','health'), ('15840','30227','server','{#PXNAME}'), ('15841','30227','service','{#SVNAME}'), ('15842','30228','component','requests'), ('15843','30228','server','{#PXNAME}'), ('15844','30228','service','{#SVNAME}'), ('15845','30229','component','connections'), ('15846','30229','server','{#PXNAME}'), ('15847','30229','service','{#SVNAME}'), ('15848','35104','component','servers'), ('15849','35105','component','responses'), ('15850','35106','component','balancer'), ('15851','35107','component','sessions'), ('15852','35108','component','responses'), ('15853','35109','component','servers'), ('15854','35110','component','responses'), ('15855','35111','component','responses'), ('15856','35112','component','responses'), ('15857','35113','component','network'), ('15858','35114','component','network'), ('15859','35115','component','health'), ('15860','35116','component','role'), ('15861','35116','server','{#PXNAME}'), ('15862','35116','service','{#SVNAME}'), ('15863','35117','component','balancer'), ('15864','35117','server','{#PXNAME}'), ('15865','35117','service','{#SVNAME}'), ('15866','35118','component','sessions'), ('15867','35118','server','{#PXNAME}'), ('15868','35118','service','{#SVNAME}'), ('15869','35119','component','queues'), ('15870','35119','server','{#PXNAME}'), ('15871','35119','service','{#SVNAME}'), ('15872','35120','component','connections'), ('15873','35120','server','{#PXNAME}'), ('15874','35120','service','{#SVNAME}'), ('15875','35121','component','role'), ('15876','35121','server','{#PXNAME}'), ('15877','35121','service','{#SVNAME}'), ('15878','35122','component','responses'), ('15879','35122','server','{#PXNAME}'), ('15880','35122','service','{#SVNAME}'), ('15881','35123','component','responses'), ('15882','35123','server','{#PXNAME}'), ('15883','35123','service','{#SVNAME}'), ('15884','35124','component','responses'), ('15885','35124','server','{#PXNAME}'), ('15886','35124','service','{#SVNAME}'), ('15887','35125','component','health'), ('15888','35125','server','{#PXNAME}'), ('15889','35125','service','{#SVNAME}'), ('15890','35126','component','network'), ('15891','35126','server','{#PXNAME}'), ('15892','35126','service','{#SVNAME}'), ('15893','35127','component','network'), ('15894','35127','server','{#PXNAME}'), ('15895','35127','service','{#SVNAME}'), ('15896','30230','component','raw'), ('15897','30231','component','raw'), ('15898','30789','component','health'), ('15899','30789','component','network'), ('15900','30790','component','health'), ('15901','30790','component','network'), ('15902','30234','component','application'), ('15903','30235','component','application'), ('15904','35128','component','raw'), ('15905','30239','component','sessions'), ('15906','30240','component','responses'), ('15907','30241','component','connections'), ('15908','30242','component','responses'), ('15909','30243','component','requests'), ('15910','30244','component','requests'), ('15911','30245','component','responses'), ('15912','30246','component','health'), ('15913','30247','component','requests'), ('15914','30248','component','connections'), ('15915','30249','component','network'), ('15916','30250','component','network'), ('15917','30251','component','requests'), ('15918','30252','component','requests'), ('15919','30253','component','responses'), ('15920','30254','component','responses'), ('15921','30255','component','responses'), ('15922','30256','component','responses'), ('15923','30257','component','responses'), ('15924','30258','component','sessions'), ('15925','30259','component','requests'), ('15926','30260','component','sessions'), ('15927','30261','component','sessions'), ('15928','30262','component','responses'), ('15929','30262','server','{#PXNAME}'), ('15930','30262','service','{#SVNAME}'), ('15931','30263','component','connections'), ('15932','30263','server','{#PXNAME}'), ('15933','30263','service','{#SVNAME}'), ('15934','30264','component','responses'), ('15935','30264','server','{#PXNAME}'), ('15936','30264','service','{#SVNAME}'), ('15937','30265','component','responses'), ('15938','30265','server','{#PXNAME}'), ('15939','30265','service','{#SVNAME}'), ('15940','30266','component','responses'), ('15941','30266','server','{#PXNAME}'), ('15942','30266','service','{#SVNAME}'), ('15943','30267','component','requests'), ('15944','30267','server','{#PXNAME}'), ('15945','30267','service','{#SVNAME}'), ('15946','30268','component','requests'), ('15947','30268','server','{#PXNAME}'), ('15948','30268','service','{#SVNAME}'), ('15949','30269','component','health'), ('15950','30269','server','{#PXNAME}'), ('15951','30269','service','{#SVNAME}'), ('15952','30270','component','health'), ('15953','30270','server','{#PXNAME}'), ('15954','30270','service','{#SVNAME}'), ('15955','30271','component','requests'), ('15956','30271','server','{#PXNAME}'), ('15957','30271','service','{#SVNAME}'), ('15958','30272','component','connections'), ('15959','30272','server','{#PXNAME}'), ('15960','30272','service','{#SVNAME}'), ('15961','35129','component','servers'), ('15962','35130','component','responses'), ('15963','35131','component','balancer'), ('15964','35132','component','sessions'), ('15965','35133','component','responses'), ('15966','35134','component','servers'), ('15967','35135','component','responses'), ('15968','35136','component','responses'), ('15969','35137','component','responses'), ('15970','35138','component','network'), ('15971','35139','component','network'), ('15972','35140','component','health'), ('15973','35141','component','role'), ('15974','35141','server','{#PXNAME}'), ('15975','35141','service','{#SVNAME}'), ('15976','35142','component','balancer'), ('15977','35142','server','{#PXNAME}'), ('15978','35142','service','{#SVNAME}'), ('15979','35143','component','sessions'), ('15980','35143','server','{#PXNAME}'), ('15981','35143','service','{#SVNAME}'), ('15982','35144','component','queues'), ('15983','35144','server','{#PXNAME}'), ('15984','35144','service','{#SVNAME}'), ('15985','35145','component','connections'), ('15986','35145','server','{#PXNAME}'), ('15987','35145','service','{#SVNAME}'), ('15988','35146','component','role'), ('15989','35146','server','{#PXNAME}'), ('15990','35146','service','{#SVNAME}'), ('15991','35147','component','responses'), ('15992','35147','server','{#PXNAME}'), ('15993','35147','service','{#SVNAME}'), ('15994','35148','component','responses'), ('15995','35148','server','{#PXNAME}'), ('15996','35148','service','{#SVNAME}'), ('15997','35149','component','responses'), ('15998','35149','server','{#PXNAME}'), ('15999','35149','service','{#SVNAME}'), ('16000','35150','component','health'), ('16001','35150','server','{#PXNAME}'), ('16002','35150','service','{#SVNAME}'), ('16003','35151','component','network'), ('16004','35151','server','{#PXNAME}'), ('16005','35151','service','{#SVNAME}'), ('16006','35152','component','network'), ('16007','35152','server','{#PXNAME}'), ('16008','35152','service','{#SVNAME}'), ('16011','30968','component','health'), ('16012','30968','component','network'), ('16013','30969','component','connections'), ('16014','30970','component','requests'), ('16015','30971','component','requests'), ('16016','30972','component','requests'), ('16017','30973','component','requests'), ('16018','30974','component','requests'), ('16019','30975','component','application'), ('16020','30976','component','requests'), ('16021','30977','component','requests'), ('16022','30978','component','requests'), ('16023','30979','component','requests'), ('16024','30980','component','cache'), ('16025','30981','component','cache'), ('16026','30982','component','cache'), ('16027','30983','component','cache'), ('16028','30984','component','application'), ('16029','30984','component','health'), ('16030','30985','component','requests'), ('16031','30986','component','errors'), ('16032','30987','component','users'), ('16033','30988','component','connections'), ('16034','30989','component','network'), ('16035','30990','component','network'), ('16036','30991','component','network'), ('16037','30992','component','requests'), ('16038','30993','component','connections'), ('16039','30994','component','requests'), ('16040','30995','component','requests'), ('16041','30996','component','users'), ('16042','30997','component','requests'), ('16043','30998','component','requests'), ('16044','30999','component','requests'), ('16045','31000','component','errors'), ('16046','31001','component','requests'), ('16047','31002','component','requests'), ('16048','31003','component','requests'), ('16049','31004','component','application'), ('16050','31004','component','health'), ('16051','31006','application-pool','{#APPPOOL}'), ('16052','31006','component','application'), ('16053','31007','application-pool','{#APPPOOL}'), ('16054','31007','component','application'), ('16055','31008','application-pool','{#APPPOOL}'), ('16056','31008','component','application'), ('16057','31009','application-pool','{#APPPOOL}'), ('16058','31009','component','application'), ('16059','31010','component','health'), ('16060','31010','component','network'), ('16061','31011','component','connections'), ('16062','31012','component','requests'), ('16063','31013','component','requests'), ('16064','31014','component','requests'), ('16065','31015','component','requests'), ('16066','31016','component','requests'), ('16067','31017','component','application'), ('16068','31018','component','requests'), ('16069','31019','component','requests'), ('16070','31020','component','requests'), ('16071','31021','component','requests'), ('16072','31022','component','cache'), ('16073','31023','component','cache'), ('16074','31024','component','cache'), ('16075','31025','component','cache'), ('16076','31026','component','application'), ('16077','31026','component','health'), ('16078','31027','component','requests'), ('16079','31028','component','errors'), ('16080','31029','component','users'), ('16081','31030','component','connections'), ('16082','31031','component','network'), ('16083','31032','component','network'), ('16084','31033','component','network'), ('16085','31034','component','requests'), ('16086','31035','component','connections'), ('16087','31036','component','requests'), ('16088','31037','component','requests'), ('16089','31038','component','users'), ('16090','31039','component','requests'), ('16091','31040','component','requests'), ('16092','31041','component','requests'), ('16093','31042','component','errors'), ('16094','31043','component','requests'), ('16095','31044','component','requests'), ('16096','31045','component','requests'), ('16097','31046','component','application'), ('16098','31046','component','health'), ('16099','31048','application-pool','{#APPPOOL}'), ('16100','31048','component','application'), ('16101','31049','application-pool','{#APPPOOL}'), ('16102','31049','component','application'), ('16103','31050','application-pool','{#APPPOOL}'), ('16104','31050','component','application'), ('16105','31051','application-pool','{#APPPOOL}'), ('16106','31051','component','application'), ('16108','33391','component','computers'), ('16109','33391','component','raw'), ('16110','33392','component','health'), ('16111','33393','component','jobs'), ('16112','33393','component','raw'), ('16113','33394','component','raw'), ('16114','33395','component','health'), ('16115','33396','component','jobs'), ('16116','33397','component','nodes'), ('16117','33398','component','nodes'), ('16118','33399','component','nodes'), ('16119','33400','component','jobs'), ('16120','33401','component','jobs'), ('16121','33402','component','jobs'), ('16122','33403','component','plugins'), ('16123','33404','component','jobs'), ('16124','33405','component','jobs'), ('16125','33406','component','jobs'), ('16126','33407','component','jobs'), ('16127','33408','component','jobs'), ('16128','33409','component','plugins'), ('16129','33410','component','plugins'), ('16130','33411','component','plugins'), ('16131','33412','component','queue'), ('16132','33413','component','system'), ('16133','33414','component','threads'), ('16134','33415','component','disk'), ('16135','33416','component','disk'), ('16136','33417','component','application'), ('16137','33418','component','cpu'), ('16138','33419','component','queue'), ('16139','33420','component','jobs'), ('16140','33421','component','queue'), ('16141','33422','component','queue'), ('16142','33423','component','queue'), ('16143','33424','component','application'), ('16144','33425','component','plugins'), ('16145','33426','component','plugins'), ('16146','33427','component','jobs'), ('16147','33428','component','jobs'), ('16148','33429','component','jobs'), ('16149','33430','component','requests'), ('16150','33430','http-code','201'), ('16151','33431','component','requests'), ('16152','33431','http-code','other'), ('16153','33432','component','requests'), ('16154','33432','http-code','200'), ('16155','33433','component','requests'), ('16156','33433','http-code','204'), ('16157','33434','component','requests'), ('16158','33434','http-code','304'), ('16159','33435','component','requests'), ('16160','33435','http-code','404'), ('16161','33436','component','requests'), ('16162','33436','http-code','403'), ('16163','33437','component','requests'), ('16164','33437','http-code','400'), ('16165','33438','component','requests'), ('16166','33439','component','requests'), ('16167','33440','component','executors'), ('16168','33441','component','executors'), ('16169','33442','component','executors'), ('16170','33443','component','disk'), ('16171','33444','component','disk'), ('16172','33445','component','requests'), ('16173','33446','component','requests'), ('16174','33447','component','fds'), ('16175','33448','component','jobs'), ('16176','33449','component','jobs'), ('16177','33450','component','jobs'), ('16178','33451','component','jobs'), ('16179','33452','component','jobs'), ('16180','33453','component','jobs'), ('16181','33454','component','jobs'), ('16182','33455','component','jobs'), ('16183','33456','component','requests'), ('16184','33456','http-code','500'), ('16185','33457','component','jobs'), ('16186','33458','component','jobs'), ('16187','33459','component','jobs'), ('16188','33460','component','jobs'), ('16189','33461','component','jobs'), ('16190','33462','component','jobs'), ('16191','33463','component','requests'), ('16192','33463','http-code','503'), ('16193','33464','component','application'), ('16194','33467','component','computers'), ('16195','33467','component','memory'), ('16196','33467','computer','{#DISPLAY_NAME}'), ('16197','33468','component','computers'), ('16198','33468','component','memory'), ('16199','33468','computer','{#DISPLAY_NAME}'), ('16200','33469','component','computers'), ('16201','33469','computer','{#DISPLAY_NAME}'), ('16202','33470','component','computers'), ('16203','33470','component','disk'), ('16204','33470','computer','{#DISPLAY_NAME}'), ('16205','33471','component','computers'), ('16206','33471','computer','{#DISPLAY_NAME}'), ('16207','33472','component','computers'), ('16208','33472','computer','{#DISPLAY_NAME}'), ('16209','33473','component','computers'), ('16210','33473','computer','{#DISPLAY_NAME}'), ('16211','33474','component','computers'), ('16212','33474','computer','{#DISPLAY_NAME}'), ('16213','33475','component','computers'), ('16214','33475','computer','{#DISPLAY_NAME}'), ('16215','33476','component','computers'), ('16216','33476','computer','{#DISPLAY_NAME}'), ('16217','33477','component','computers'), ('16218','33477','component','disk'), ('16219','33477','computer','{#DISPLAY_NAME}'), ('16220','33478','component','computers'), ('16221','33478','component','memory'), ('16222','33478','computer','{#DISPLAY_NAME}'), ('16223','33479','component','computers'), ('16224','33479','component','memory'), ('16225','33479','computer','{#DISPLAY_NAME}'), ('16226','33480','component','health'), ('16227','33480','component','jobs'), ('16228','33480','job','{#NAME}'), ('16229','33481','component','jobs'), ('16230','33481','job','{#NAME}'), ('16231','33482','component','jobs'), ('16232','33482','job','{#NAME}'), ('16233','33483','component','jobs'), ('16234','33483','job','{#NAME}'), ('16235','33484','component','jobs'), ('16236','33484','job','{#NAME}'), ('16237','33485','component','jobs'), ('16238','33485','job','{#NAME}'), ('16239','33486','component','jobs'), ('16240','33486','job','{#NAME}'), ('16241','33487','component','jobs'), ('16242','33487','job','{#NAME}'), ('16243','33488','component','jobs'), ('16244','33488','job','{#NAME}'), ('16245','33489','component','jobs'), ('16246','33489','job','{#NAME}'), ('16247','33490','component','jobs'), ('16248','33490','job','{#NAME}'), ('16249','32693','component','controller'), ('16250','32694','component','request'), ('16251','32695','component','request'), ('16252','32696','component','network'), ('16253','32697','component','system'), ('16254','32698','component','inventory'), ('16255','32699','component','broker'), ('16256','32700','component','broker'), ('16257','32701','component','broker'), ('16258','32702','component','broker'), ('16259','32703','component','broker'), ('16260','32704','component','broker'), ('16261','32705','component','request'), ('16262','32706','component','request'), ('16263','32707','component','replica'), ('16264','32708','component','request'), ('16265','32709','component','replica'), ('16266','32710','component','replica'), ('16267','32711','component','replica'), ('16268','32712','component','replica'), ('16269','32713','component','replica'), ('16270','32714','component','replica'), ('16271','32715','component','replica'), ('16272','32716','component','request'), ('16273','32717','component','health'), ('16274','32717','component','zookeeper'), ('16275','32718','component','zookeeper'), ('16276','32719','component','zookeeper'), ('16277','32720','component','zookeeper'), ('16278','32721','component','zookeeper'), ('16279','32722','component','request'), ('16280','32723','component','request'), ('16281','32724','component','controller'), ('16282','32725','component','request'), ('16283','32726','component','controller'), ('16284','32727','component','controller'), ('16285','32728','component','controller'), ('16286','32729','component','controller'), ('16287','32730','component','controller'), ('16288','32731','component','controller'), ('16289','32732','component','logmanager'), ('16290','32733','component','request'), ('16291','32734','component','request'), ('16292','32735','component','request'), ('16293','32736','component','request'), ('16294','32737','component','request'), ('16295','32738','component','request'), ('16296','32739','component','request'), ('16297','32740','component','request'), ('16298','32741','component','request'), ('16299','32742','component','memory'), ('16300','32742','component','request'), ('16301','32743','component','memory'), ('16302','32743','component','request'), ('16303','32744','component','memory'), ('16304','32744','component','request'), ('16305','32745','component','memory'), ('16306','32745','component','request'), ('16307','32746','component','memory'), ('16308','32746','component','request'), ('16309','32747','component','request'), ('16310','32748','component','request'), ('16311','32749','component','request'), ('16312','32750','component','request'), ('16313','32751','component','request'), ('16314','32752','component','request'), ('16315','32753','component','request'), ('16316','32754','component','zookeeper'), ('16317','32758','component','broker'), ('16318','32758','component','topic'), ('16319','32758','topic','{#JMXTOPIC}'), ('16320','32759','component','broker'), ('16321','32759','component','topic'), ('16322','32759','topic','{#JMXTOPIC}'), ('16323','32760','component','broker'), ('16324','32760','component','topic'), ('16325','32760','topic','{#JMXTOPIC}'), ('16326','32761','component','broker'), ('16327','32761','component','topic'), ('16328','32761','topic','{#JMXTOPIC}'), ('16329','39831','http-code','4xx'), ('16330','39832','http-code','3xx'), ('16331','39833','http-code','2xx'), ('16332','39846','http-code','5xx'), ('16333','39847','http-code','4xx'), ('16334','39848','http-code','3xx'), ('16335','39849','http-code','2xx'), ('16336','39850','http-code','5xx'), ('16337','39877','http-code','2xx'), ('16338','39878','http-code','3xx'), ('16339','39879','http-code','4xx'), ('16340','39880','http-code','5xx'), ('16341','39986','http-code','5xx'), ('16342','39988','http-code','4xx'), ('16343','39990','http-code','3xx'), ('16344','39998','http-code','2xx'), ('16346','30611','component','health'), ('16347','30612','component','raw'), ('16348','30613','component','commands'), ('16349','30614','component','memory'), ('16350','30615','component','application'), ('16351','30616','component','keyspace'), ('16352','30617','component','threads'), ('16353','30618','component','requests'), ('16354','30619','component','requests'), ('16355','30620','component','keyspace'), ('16356','30621','component','keyspace'), ('16357','30622','component','network'), ('16358','30623','component','network'), ('16359','30624','component','application'), ('16360','30625','component','commands'), ('16361','30626','component','cpu'), ('16362','30627','component','cpu'), ('16363','30628','component','connections'), ('16364','30629','component','connections'), ('16365','30630','component','connections'), ('16366','30631','component','connections'), ('16367','30632','component','connections'), ('16368','30633','component','connections'), ('16369','30634','component','cache'), ('16370','30635','component','commands'), ('16371','30636','component','application'), ('16372','28804','component','application'), ('16373','28804','component','health'), ('16374','28805','component','application'), ('16375','28805','component','health'), ('16380','28810','component','application'), ('16381','28810','component','health'), ('16382','28811','component','connections'), ('16383','28812','component','connections'), ('16384','28813','component','connections'), ('16385','28814','component','connections'), ('16386','28815','component','connections'), ('16387','28816','component','connections'), ('16388','28817','component','connections'), ('16389','28818','component','requests'), ('16390','28819','component','requests'), ('16391','28820','component','application'), ('16392','28821','component','application'), ('16393','28821','component','health'), ('16394','28822','component','application'), ('16395','28822','component','health'), ('16396','28823','component','application'), ('16397','28823','component','health'), ('16398','28824','component','requests'), ('16399','28825','component','requests'), ('16400','28826','component','connections'), ('16401','28827','component','connections'), ('16402','28828','component','connections'), ('16403','28829','component','connections'), ('16404','28830','component','connections'), ('16405','28831','component','connections'), ('16406','28832','component','connections'), ('16407','28833','component','application'), ('16408','35153','component','connections'), ('16409','35153','component','raw'), ('16410','35154','component','info'), ('16411','35154','component','raw'), ('16412','35155','component','raw'), ('16413','35155','component','server_zones'), ('16414','35156','component','raw'), ('16415','35156','component','ssl'), ('16416','35157','component','raw'), ('16417','35157','component','resolvers'), ('16418','35158','component','raw'), ('16419','35158','component','requests'), ('16420','35159','component','raw'), ('16421','35159','component','upstreams'), ('16422','35160','component','raw'), ('16423','35160','component','upstreams'), ('16424','35161','component','location_zones'), ('16425','35161','component','raw'), ('16426','35162','component','raw'), ('16427','35162','component','server_zones'), ('16428','35163','component','connections'), ('16429','35164','component','connections'), ('16430','35165','component','ssl'), ('16431','35166','component','ssl'), ('16432','35167','component','ssl'), ('16433','35168','component','connections'), ('16434','35169','component','requests'), ('16435','35170','component','requests'), ('16436','35171','component','info'), ('16437','35172','component','connections'), ('16438','35173','component','info'), ('16439','35174','component','health'), ('16440','35174','component','info'), ('16441','35175','component','info'), ('16442','35176','component','info'), ('16443','35185','component','location_zones'), ('16444','35185','zone','{#NAME}'), ('16445','35186','component','location_zones'), ('16446','35186','zone','{#NAME}'), ('16447','35187','component','location_zones'), ('16448','35187','zone','{#NAME}'), ('16449','35188','component','location_zones'), ('16450','35188','zone','{#NAME}'), ('16451','35189','component','location_zones'), ('16452','35189','zone','{#NAME}'), ('16453','35190','component','location_zones'), ('16454','35190','zone','{#NAME}'), ('16455','35191','component','location_zones'), ('16456','35191','zone','{#NAME}'), ('16457','35192','component','location_zones'), ('16458','35192','zone','{#NAME}'), ('16459','35193','component','location_zones'), ('16460','35193','zone','{#NAME}'), ('16461','35194','component','location_zones'), ('16462','35194','zone','{#NAME}'), ('16463','35195','component','server_zones'), ('16464','35195','zone','{#NAME}'), ('16465','35196','component','server_zones'), ('16466','35196','zone','{#NAME}'), ('16467','35197','component','server_zones'), ('16468','35197','zone','{#NAME}'), ('16469','35198','component','server_zones'), ('16470','35198','zone','{#NAME}'), ('16471','35199','component','server_zones'), ('16472','35199','zone','{#NAME}'), ('16473','35200','component','server_zones'), ('16474','35200','zone','{#NAME}'), ('16475','35201','component','server_zones'), ('16476','35201','zone','{#NAME}'), ('16477','35202','component','server_zones'), ('16478','35202','zone','{#NAME}'), ('16479','35203','component','server_zones'), ('16480','35203','zone','{#NAME}'), ('16481','35204','component','server_zones'), ('16482','35204','zone','{#NAME}'), ('16483','35205','component','server_zones'), ('16484','35205','zone','{#NAME}'), ('16485','35206','component','upstream'), ('16486','35206','peer','{#PEER}'), ('16488','35207','component','upstream'), ('16489','35207','peer','{#PEER}'), ('16491','35208','component','upstream'), ('16492','35208','peer','{#PEER}'), ('16494','35209','component','upstream'), ('16495','35209','peer','{#PEER}'), ('16497','35210','component','upstream'), ('16498','35210','peer','{#PEER}'), ('16500','35211','component','upstream'), ('16501','35211','peer','{#PEER}'), ('16503','35212','component','upstream'), ('16504','35212','peer','{#PEER}'), ('16506','35213','component','upstream'), ('16507','35213','peer','{#PEER}'), ('16509','35214','component','upstream'), ('16510','35214','peer','{#PEER}'), ('16512','35215','component','upstream'), ('16513','35215','peer','{#PEER}'), ('16515','35216','component','upstream'), ('16516','35216','peer','{#PEER}'), ('16518','35217','component','upstream'), ('16519','35217','peer','{#PEER}'), ('16521','35218','component','upstream'), ('16522','35218','peer','{#PEER}'), ('16524','35219','component','upstream'), ('16525','35219','peer','{#PEER}'), ('16527','35220','component','upstream'), ('16528','35220','peer','{#PEER}'), ('16530','35221','component','upstream'), ('16531','35221','peer','{#PEER}'), ('16533','35222','component','upstream'), ('16534','35222','peer','{#PEER}'), ('16536','35223','component','upstream'), ('16537','35223','peer','{#PEER}'), ('16539','35224','component','upstreams'), ('16540','35224','upstream','{#NAME}'), ('16541','35225','component','upstreams'), ('16542','35225','upstream','{#NAME}'), ('16543','35226','component','upstreams'), ('16544','35226','upstream','{#NAME}'), ('16545','35227','component','resolver'), ('16546','35227','resolver','{#NAME}'), ('16547','35228','component','resolver'), ('16548','35228','resolver','{#NAME}'), ('16549','35229','component','resolver'), ('16550','35229','resolver','{#NAME}'), ('16551','35230','component','resolver'), ('16552','35230','resolver','{#NAME}'), ('16553','35231','component','resolver'), ('16554','35231','resolver','{#NAME}'), ('16555','35232','component','resolver'), ('16556','35232','resolver','{#NAME}'), ('16557','35233','component','resolver'), ('16558','35233','resolver','{#NAME}'), ('16559','35234','component','resolver'), ('16560','35234','resolver','{#NAME}'), ('16561','35235','component','resolver'), ('16562','35235','resolver','{#NAME}'), ('16563','35236','component','resolver'), ('16564','35236','resolver','{#NAME}'), ('16565','35237','component','resolver'), ('16566','35237','resolver','{#NAME}'), ('16567','35238','component','server_zones'), ('16568','35238','zone','{#NAME}'), ('16569','35239','component','server_zones'), ('16570','35239','zone','{#NAME}'), ('16571','35240','component','server_zones'), ('16572','35240','zone','{#NAME}'), ('16573','35241','component','server_zones'), ('16574','35241','zone','{#NAME}'), ('16575','35242','component','server_zones'), ('16576','35242','zone','{#NAME}'), ('16577','35243','component','server_zones'), ('16578','35243','zone','{#NAME}'), ('16579','35244','component','server_zones'), ('16580','35244','zone','{#NAME}'), ('16581','35245','component','server_zones'), ('16582','35245','zone','{#NAME}'), ('16583','35246','component','server_zones'), ('16584','35246','zone','{#NAME}'), ('16585','35247','component','upstream'), ('16586','35247','peer','{#PEER}'), ('16587','35247','upstream','{#UPSTREAM}'), ('16588','35248','component','upstream'), ('16589','35248','peer','{#PEER}'), ('16590','35248','upstream','{#UPSTREAM}'), ('16591','35249','component','upstream'), ('16592','35249','peer','{#PEER}'), ('16593','35249','upstream','{#UPSTREAM}'), ('16594','35250','component','upstream'), ('16595','35250','peer','{#PEER}'), ('16596','35250','upstream','{#UPSTREAM}'), ('16597','35251','component','upstream'), ('16598','35251','peer','{#PEER}'), ('16599','35251','upstream','{#UPSTREAM}'), ('16600','35252','component','upstream'), ('16601','35252','peer','{#PEER}'), ('16602','35252','upstream','{#UPSTREAM}'), ('16603','35253','component','upstream'), ('16604','35253','peer','{#PEER}'), ('16605','35253','upstream','{#UPSTREAM}'), ('16606','35254','component','upstream'), ('16607','35254','peer','{#PEER}'), ('16608','35254','upstream','{#UPSTREAM}'), ('16609','35255','component','upstream'), ('16610','35255','peer','{#PEER}'), ('16611','35255','upstream','{#UPSTREAM}'), ('16612','35256','component','upstream'), ('16613','35256','peer','{#PEER}'), ('16614','35256','upstream','{#UPSTREAM}'), ('16615','35257','component','upstream'), ('16616','35257','peer','{#PEER}'), ('16617','35257','upstream','{#UPSTREAM}'), ('16618','35258','component','upstream'), ('16619','35258','peer','{#PEER}'), ('16620','35258','upstream','{#UPSTREAM}'), ('16621','35259','component','upstream'), ('16622','35259','peer','{#PEER}'), ('16623','35259','upstream','{#UPSTREAM}'), ('16624','35260','component','upstreams'), ('16625','35260','upstream','{#NAME}'), ('16626','35261','component','upstreams'), ('16627','35261','upstream','{#NAME}'), ('16657','40117','component','network'), ('16660','40119','component','application'), ('16661','40120','component','application'), ('16662','40121','component','application'), ('16663','40122','component','network'), ('16664','40123','component','network'), ('16665','40124','component','network'), ('16666','40125','component','network'), ('16667','40126','component','network'), ('16669','40128','component','application'), ('16670','40128','component','health'), ('16671','40129','component','firewall'), ('16672','40130','component','network'), ('16673','40131','component','network'), ('16674','40132','component','network'), ('16675','40133','component','network'), ('16676','40134','component','network'), ('16677','40135','component','network'), ('16678','40136','component','health'), ('16679','40136','component','network'), ('16686','40147','component','firewall'), ('16687','40147','component','network'), ('16688','40147','description','{#IFALIAS}'), ('16689','40147','interface','{#IFNAME}'), ('16690','40148','component','firewall'), ('16691','40148','component','network'), ('16692','40148','description','{#IFALIAS}'), ('16693','40148','interface','{#IFNAME}'), ('16694','40149','component','network'), ('16695','40149','description','{#IFALIAS}'), ('16696','40149','interface','{#IFNAME}'), ('16697','40150','component','network'), ('16698','40150','description','{#IFALIAS}'), ('16699','40150','interface','{#IFNAME}'), ('16700','40151','component','firewall'), ('16701','40151','component','network'), ('16702','40151','description','{#IFALIAS}'), ('16703','40151','interface','{#IFNAME}'), ('16704','40152','component','network'), ('16705','40152','description','{#IFALIAS}'), ('16706','40152','interface','{#IFNAME}'), ('16707','40153','component','firewall'), ('16708','40153','component','network'), ('16709','40153','description','{#IFALIAS}'), ('16710','40153','interface','{#IFNAME}'), ('16711','40154','component','firewall'), ('16712','40154','component','network'), ('16713','40154','description','{#IFALIAS}'), ('16714','40154','interface','{#IFNAME}'), ('16715','40155','component','firewall'), ('16716','40155','component','network'), ('16717','40155','description','{#IFALIAS}'), ('16718','40155','interface','{#IFNAME}'), ('16719','40156','component','firewall'), ('16720','40156','component','network'), ('16721','40156','description','{#IFALIAS}'), ('16722','40156','interface','{#IFNAME}'), ('16723','40157','component','network'), ('16724','40157','description','{#IFALIAS}'), ('16725','40157','interface','{#IFNAME}'), ('16726','40158','component','network'), ('16727','40158','description','{#IFALIAS}'), ('16728','40158','interface','{#IFNAME}'), ('16729','40159','component','firewall'), ('16730','40159','component','network'), ('16731','40159','description','{#IFALIAS}'), ('16732','40159','interface','{#IFNAME}'), ('16733','40160','component','firewall'), ('16734','40160','component','network'), ('16735','40160','description','{#IFALIAS}'), ('16736','40160','interface','{#IFNAME}'), ('16737','40161','component','firewall'), ('16738','40161','component','network'), ('16739','40161','description','{#IFALIAS}'), ('16740','40161','interface','{#IFNAME}'), ('16741','40162','component','firewall'), ('16742','40162','component','network'), ('16743','40162','description','{#IFALIAS}'), ('16744','40162','interface','{#IFNAME}'), ('16745','40163','component','network'), ('16746','40163','description','{#IFALIAS}'), ('16747','40163','interface','{#IFNAME}'), ('16748','40164','component','firewall'), ('16749','40164','component','network'), ('16750','40164','description','{#IFALIAS}'), ('16751','40164','interface','{#IFNAME}'), ('16752','40165','component','firewall'), ('16753','40165','component','network'), ('16754','40165','description','{#IFALIAS}'), ('16755','40165','interface','{#IFNAME}'), ('16756','40166','component','firewall'), ('16757','40166','component','network'), ('16758','40166','description','{#IFALIAS}'), ('16759','40166','interface','{#IFNAME}'), ('16760','40167','component','firewall'), ('16761','40167','component','network'), ('16762','40167','description','{#IFALIAS}'), ('16763','40167','interface','{#IFNAME}'), ('16764','40168','component','network'), ('16765','40168','description','{#IFALIAS}'), ('16766','40168','interface','{#IFNAME}'), ('16767','40169','component','network'), ('16768','40169','description','{#IFALIAS}'), ('16769','40169','interface','{#IFNAME}'), ('16770','40170','component','firewall'), ('16771','40170','component','network'), ('16772','40170','description','{#IFALIAS}'), ('16773','40170','interface','{#IFNAME}'), ('16774','40171','component','firewall'), ('16775','40171','component','network'), ('16776','40171','description','{#IFALIAS}'), ('16777','40171','interface','{#IFNAME}'), ('16778','40172','component','network'), ('16779','40172','description','{#IFALIAS}'), ('16780','40172','interface','{#IFNAME}'), ('16792','31570','component','raw'), ('16793','31571','component','health'), ('16795','31573','component','application'), ('16799','31577','component','application'), ('16800','31578','component','application'), ('16801','31579','component','application'), ('16802','31580','component','application'), ('16803','31581','component','connections'), ('16804','31582','component','system'), ('16805','31583','component','listen-queue'), ('16806','31584','component','system'), ('16807','31585','component','system'), ('16808','31586','component','application'), ('16809','31587','component','health'), ('16810','31588','component','application'), ('16811','31589','component','application'), ('16812','31590','component','listen-queue'), ('16813','31591','component','listen-queue'), ('16814','31592','component','application'), ('16815','31593','component','listen-queue'), ('16816','31594','component','raw'), ('16817','31595','component','health'), ('16818','31596','component','connections'), ('16819','31597','component','system'), ('16820','31598','component','application'), ('16821','31599','component','application'), ('16822','31600','component','application'), ('16823','31601','component','system'), ('16824','31602','component','application'), ('16825','31603','component','health'), ('16826','31604','component','memory'), ('16827','31605','component','application'), ('16828','31606','component','application'), ('16829','31607','component','application'), ('16830','31608','component','listen-queue'), ('16831','31609','component','listen-queue'), ('16832','31610','component','listen-queue'), ('16833','31611','component','application'), ('16835','29653','component','raw'), ('16836','29654','component','raw'), ('16837','29655','component','health'), ('16838','29655','component','network'), ('16843','29660','component','system'), ('16844','29661','component','raw'), ('16845','29998','component','raw'), ('16846','29999','component','raw'), ('16847','29687','component','memory'), ('16848','29688','component','storage'), ('16849','29691','component','storage'), ('16850','29692','component','system'), ('16851','29693','component','memory'), ('16852','29694','component','memory'), ('16853','29695','component','system'), ('16854','29696','component','network'), ('16855','29697','component','system'), ('16856','29698','component','storage'), ('16857','29699','component','system'), ('16858','29700','component','storage'), ('16859','29701','component','system'), ('16860','30000','component','messages'), ('16861','30001','component','messages'), ('16862','30002','component','messages'), ('16863','30003','component','messages'), ('16864','30004','component','messages'), ('16865','30005','component','messages'), ('16866','30006','component','messages'), ('16867','30007','component','messages'), ('16868','30008','component','messages'), ('16869','30009','component','messages'), ('16870','30010','component','messages'), ('16871','30011','component','messages'), ('16872','30012','component','messages'), ('16873','30013','component','messages'), ('16874','30014','component','messages'), ('16875','30015','component','messages'), ('16876','30016','component','messages'), ('16877','30017','component','messages'), ('16878','30018','component','exchanges'), ('16879','30019','component','consumers'), ('16880','30020','component','queues'), ('16881','30021','component','channels'), ('16882','30022','component','connections'), ('16883','30023','component','messages'), ('16884','30024','component','system'), ('16885','30025','component','system'), ('16886','33747','component','health'), ('16887','33747','component','system'), ('16888','33748','component','health'), ('16889','33748','component','system'), ('16890','33749','component','certificate'), ('16891','33749','component','health'), ('16892','33750','component','health'), ('16893','33750','component','system'), ('16894','33751','component','health'), ('16895','33751','component','queues'), ('16896','33752','component','health'), ('16897','33752','component','queues'), ('16898','33753','component','health'), ('16899','33753','component','system'), ('16900','29720','component','messages'), ('16901','29720','queue','{#QUEUE}'), ('16902','29720','vhost','{#VHOST}'), ('16903','29721','component','messages'), ('16904','29721','queue','{#QUEUE}'), ('16905','29721','vhost','{#VHOST}'), ('16906','29722','component','messages'), ('16907','29722','queue','{#QUEUE}'), ('16908','29722','vhost','{#VHOST}'), ('16909','29723','component','messages'), ('16910','29723','queue','{#QUEUE}'), ('16911','29723','vhost','{#VHOST}'), ('16912','29724','component','messages'), ('16913','29724','queue','{#QUEUE}'), ('16914','29724','vhost','{#VHOST}'), ('16915','29725','component','messages'), ('16916','29725','queue','{#QUEUE}'), ('16917','29725','vhost','{#VHOST}'), ('16918','29726','component','messages'), ('16919','29726','queue','{#QUEUE}'), ('16920','29726','vhost','{#VHOST}'), ('16921','29727','component','messages'), ('16922','29727','queue','{#QUEUE}'), ('16923','29727','vhost','{#VHOST}'), ('16924','29728','component','messages'), ('16925','29728','queue','{#QUEUE}'), ('16926','29728','vhost','{#VHOST}'), ('16927','29729','component','messages'), ('16928','29729','queue','{#QUEUE}'), ('16929','29729','vhost','{#VHOST}'), ('16930','29730','component','messages'), ('16931','29730','queue','{#QUEUE}'), ('16932','29730','vhost','{#VHOST}'), ('16933','29731','component','messages'), ('16934','29731','queue','{#QUEUE}'), ('16935','29731','vhost','{#VHOST}'), ('16936','29732','component','messages'), ('16937','29732','queue','{#QUEUE}'), ('16938','29732','vhost','{#VHOST}'), ('16939','29733','component','messages'), ('16940','29733','queue','{#QUEUE}'), ('16941','29733','vhost','{#VHOST}'), ('16942','29734','component','messages'), ('16943','29734','queue','{#QUEUE}'), ('16944','29734','vhost','{#VHOST}'), ('16945','29735','component','memory'), ('16946','29735','queue','{#QUEUE}'), ('16947','29735','vhost','{#VHOST}'), ('16948','29736','component','consumers'), ('16949','29736','queue','{#QUEUE}'), ('16950','29736','vhost','{#VHOST}'), ('16951','29737','component','messages'), ('16952','29737','queue','{#QUEUE}'), ('16953','29737','vhost','{#VHOST}'), ('16954','30027','component','messages'), ('16955','30027','exchange','{#EXCHANGE}'), ('16956','30027','type','{#TYPE}'), ('16957','30027','vhost','{#VHOST}'), ('16958','30028','component','messages'), ('16959','30028','exchange','{#EXCHANGE}'), ('16960','30028','type','{#TYPE}'), ('16961','30028','vhost','{#VHOST}'), ('16962','30029','component','messages'), ('16963','30029','exchange','{#EXCHANGE}'), ('16964','30029','type','{#TYPE}'), ('16965','30029','vhost','{#VHOST}'), ('16966','30030','component','messages'), ('16967','30030','exchange','{#EXCHANGE}'), ('16968','30030','type','{#TYPE}'), ('16969','30030','vhost','{#VHOST}'), ('16970','30031','component','messages'), ('16971','30031','exchange','{#EXCHANGE}'), ('16972','30031','type','{#TYPE}'), ('16973','30031','vhost','{#VHOST}'), ('16974','30032','component','messages'), ('16975','30032','exchange','{#EXCHANGE}'), ('16976','30032','type','{#TYPE}'), ('16977','30032','vhost','{#VHOST}'), ('16978','30033','component','messages'), ('16979','30033','exchange','{#EXCHANGE}'), ('16980','30033','type','{#TYPE}'), ('16981','30033','vhost','{#VHOST}'), ('16982','30034','component','messages'), ('16983','30034','exchange','{#EXCHANGE}'), ('16984','30034','type','{#TYPE}'), ('16985','30034','vhost','{#VHOST}'), ('16986','30035','component','messages'), ('16987','30035','exchange','{#EXCHANGE}'), ('16988','30035','type','{#TYPE}'), ('16989','30035','vhost','{#VHOST}'), ('16990','30036','component','messages'), ('16991','30036','exchange','{#EXCHANGE}'), ('16992','30036','type','{#TYPE}'), ('16993','30036','vhost','{#VHOST}'), ('16994','30037','component','messages'), ('16995','30037','exchange','{#EXCHANGE}'), ('16996','30037','type','{#TYPE}'), ('16997','30037','vhost','{#VHOST}'), ('16998','30038','component','messages'), ('16999','30038','exchange','{#EXCHANGE}'), ('17000','30038','type','{#TYPE}'), ('17001','30038','vhost','{#VHOST}'), ('17002','30039','component','messages'), ('17003','30039','exchange','{#EXCHANGE}'), ('17004','30039','type','{#TYPE}'), ('17005','30039','vhost','{#VHOST}'), ('17006','30040','component','messages'), ('17007','30040','exchange','{#EXCHANGE}'), ('17008','30040','type','{#TYPE}'), ('17009','30040','vhost','{#VHOST}'), ('17010','30041','component','messages'), ('17011','30041','exchange','{#EXCHANGE}'), ('17012','30041','type','{#TYPE}'), ('17013','30041','vhost','{#VHOST}'), ('17014','30042','component','messages'), ('17015','30042','exchange','{#EXCHANGE}'), ('17016','30042','type','{#TYPE}'), ('17017','30042','vhost','{#VHOST}'), ('17018','29738','component','raw'), ('17019','29739','component','raw'), ('17020','29741','component','raw'), ('17021','29742','component','health'), ('17022','29742','component','network'), ('17023','29743','component','system'), ('17024','29745','component','raw'), ('17025','30043','component','raw'), ('17026','29746','component','messages'), ('17027','29747','component','messages'), ('17028','29748','component','messages'), ('17029','29749','component','messages'), ('17030','29750','component','messages'), ('17031','29751','component','messages'), ('17032','29752','component','messages'), ('17033','29753','component','messages'), ('17034','29754','component','messages'), ('17035','29755','component','messages'), ('17036','29756','component','messages'), ('17037','29757','component','messages'), ('17038','29758','component','messages'), ('17039','29759','component','messages'), ('17040','29760','component','messages'), ('17041','29761','component','messages'), ('17042','29762','component','messages'), ('17043','29763','component','messages'), ('17044','29764','component','exchanges'), ('17045','29765','component','consumers'), ('17046','29766','component','queues'), ('17047','29767','component','channels'), ('17048','29768','component','connections'), ('17049','29769','component','messages'), ('17050','29771','component','network'), ('17051','29772','component','system'), ('17052','29773','component','storage'), ('17053','29774','component','memory'), ('17054','29775','component','system'), ('17055','29776','component','system'), ('17056','29777','component','system'), ('17057','29779','component','system'), ('17058','29780','component','memory'), ('17059','29781','component','storage'), ('17060','29782','component','storage'), ('17061','29783','component','storage'), ('17062','29784','component','memory'), ('17063','30044','component','system'), ('17064','30045','component','system'), ('17065','33757','component','health'), ('17066','33757','component','system'), ('17067','33758','component','health'), ('17068','33758','component','system'), ('17069','33759','component','certificate'), ('17070','33759','component','health'), ('17071','33760','component','health'), ('17072','33760','component','system'), ('17073','33761','component','health'), ('17074','33761','component','queues'), ('17075','33762','component','health'), ('17076','33762','component','queues'), ('17077','33763','component','health'), ('17078','33763','component','system'), ('17079','29787','component','messages'), ('17080','29787','exchange','{#EXCHANGE}'), ('17081','29787','type','{#TYPE}'), ('17082','29787','vhost','{#VHOST}'), ('17083','29788','component','messages'), ('17084','29788','exchange','{#EXCHANGE}'), ('17085','29788','type','{#TYPE}'), ('17086','29788','vhost','{#VHOST}'), ('17087','29789','component','messages'), ('17088','29789','exchange','{#EXCHANGE}'), ('17089','29789','type','{#TYPE}'), ('17090','29789','vhost','{#VHOST}'), ('17091','29790','component','messages'), ('17092','29790','exchange','{#EXCHANGE}'), ('17093','29790','type','{#TYPE}'), ('17094','29790','vhost','{#VHOST}'), ('17095','29791','component','messages'), ('17096','29791','exchange','{#EXCHANGE}'), ('17097','29791','type','{#TYPE}'), ('17098','29791','vhost','{#VHOST}'), ('17099','29792','component','messages'), ('17100','29792','exchange','{#EXCHANGE}'), ('17101','29792','type','{#TYPE}'), ('17102','29792','vhost','{#VHOST}'), ('17103','29793','component','messages'), ('17104','29793','exchange','{#EXCHANGE}'), ('17105','29793','type','{#TYPE}'), ('17106','29793','vhost','{#VHOST}'), ('17107','29794','component','messages'), ('17108','29794','exchange','{#EXCHANGE}'), ('17109','29794','type','{#TYPE}'), ('17110','29794','vhost','{#VHOST}'), ('17111','29795','component','messages'), ('17112','29795','exchange','{#EXCHANGE}'), ('17113','29795','type','{#TYPE}'), ('17114','29795','vhost','{#VHOST}'), ('17115','29796','component','messages'), ('17116','29796','exchange','{#EXCHANGE}'), ('17117','29796','type','{#TYPE}'), ('17118','29796','vhost','{#VHOST}'), ('17119','29797','component','messages'), ('17120','29797','exchange','{#EXCHANGE}'), ('17121','29797','type','{#TYPE}'), ('17122','29797','vhost','{#VHOST}'), ('17123','29798','component','messages'), ('17124','29798','exchange','{#EXCHANGE}'), ('17125','29798','type','{#TYPE}'), ('17126','29798','vhost','{#VHOST}'), ('17127','29799','component','messages'), ('17128','29799','exchange','{#EXCHANGE}'), ('17129','29799','type','{#TYPE}'), ('17130','29799','vhost','{#VHOST}'), ('17131','29800','component','messages'), ('17132','29800','exchange','{#EXCHANGE}'), ('17133','29800','type','{#TYPE}'), ('17134','29800','vhost','{#VHOST}'), ('17135','29801','component','messages'), ('17136','29801','exchange','{#EXCHANGE}'), ('17137','29801','type','{#TYPE}'), ('17138','29801','vhost','{#VHOST}'), ('17139','29802','component','messages'), ('17140','29802','exchange','{#EXCHANGE}'), ('17141','29802','type','{#TYPE}'), ('17142','29802','vhost','{#VHOST}'), ('17143','29803','component','messages'), ('17144','29803','queue','{#QUEUE}'), ('17145','29803','vhost','{#VHOST}'), ('17146','29804','component','messages'), ('17147','29804','queue','{#QUEUE}'), ('17148','29804','vhost','{#VHOST}'), ('17149','29805','component','messages'), ('17150','29805','queue','{#QUEUE}'), ('17151','29805','vhost','{#VHOST}'), ('17152','29806','component','messages'), ('17153','29806','queue','{#QUEUE}'), ('17154','29806','vhost','{#VHOST}'), ('17155','29807','component','messages'), ('17156','29807','queue','{#QUEUE}'), ('17157','29807','vhost','{#VHOST}'), ('17158','29808','component','messages'), ('17159','29808','queue','{#QUEUE}'), ('17160','29808','vhost','{#VHOST}'), ('17161','29809','component','messages'), ('17162','29809','queue','{#QUEUE}'), ('17163','29809','vhost','{#VHOST}'), ('17164','29810','component','messages'), ('17165','29810','queue','{#QUEUE}'), ('17166','29810','vhost','{#VHOST}'), ('17167','29811','component','messages'), ('17168','29811','queue','{#QUEUE}'), ('17169','29811','vhost','{#VHOST}'), ('17170','29812','component','messages'), ('17171','29812','queue','{#QUEUE}'), ('17172','29812','vhost','{#VHOST}'), ('17173','29813','component','messages'), ('17174','29813','queue','{#QUEUE}'), ('17175','29813','vhost','{#VHOST}'), ('17176','29814','component','messages'), ('17177','29814','queue','{#QUEUE}'), ('17178','29814','vhost','{#VHOST}'), ('17179','29815','component','messages'), ('17180','29815','queue','{#QUEUE}'), ('17181','29815','vhost','{#VHOST}'), ('17182','29816','component','messages'), ('17183','29816','queue','{#QUEUE}'), ('17184','29816','vhost','{#VHOST}'), ('17185','29817','component','messages'), ('17186','29817','queue','{#QUEUE}'), ('17187','29817','vhost','{#VHOST}'), ('17188','29818','component','memory'), ('17189','29818','queue','{#QUEUE}'), ('17190','29818','vhost','{#VHOST}'), ('17191','29819','component','consumers'), ('17192','29819','queue','{#QUEUE}'), ('17193','29819','vhost','{#VHOST}'), ('17194','29820','component','messages'), ('17195','29820','queue','{#QUEUE}'), ('17196','29820','vhost','{#VHOST}'), ('17197','33630','component','raw'), ('17198','33631','component','health'), ('17199','33632','component','application'), ('17200','33632','component','health'), ('17201','33633','component','performance'), ('17202','33635','component','storage'), ('17203','33635','full-path','{#SHAREPOINT.LLD.FULL_PATH}'), ('17204','33636','component','storage'), ('17205','33636','full-path','{#SHAREPOINT.LLD.FULL_PATH}'), ('17206','33637','component','storage'), ('17207','33637','full-path','{#SHAREPOINT.LLD.FULL_PATH}'), ('17209','32239','component','health'), ('17210','32239','component','network'), ('17211','32240','component','objects'), ('17212','32241','component','icp'), ('17213','32241','component','queries'), ('17214','32242','component','icp'), ('17215','32242','component','queries'), ('17216','32243','component','icp'), ('17217','32243','component','replies'), ('17218','32244','component','icp'), ('17219','32244','component','replies'), ('17220','32245','component','hits'), ('17221','32245','component','ip'), ('17222','32246','component','ip'), ('17223','32246','component','misses'), ('17224','32247','component','ip'), ('17225','32247','component','requests'), ('17226','32248','component','memory'), ('17227','32249','component','memory'), ('17228','32250','component','memory'), ('17229','32251','component','http'), ('17230','32251','component','requests'), ('17231','32252','component','icp'), ('17232','32253','component','hits'), ('17233','32254','component','hits'), ('17234','32255','component','hits'), ('17235','32256','component','hits'), ('17236','32256','component','requests'), ('17237','32257','component','hits'), ('17238','32257','component','requests'), ('17239','32258','component','hits'), ('17240','32258','component','requests'), ('17241','32259','component','memory'), ('17242','32259','component','storage'), ('17243','32260','component','memory'), ('17244','32260','component','storage'), ('17245','32261','component','memory'), ('17246','32261','component','storage'), ('17247','32262','component','faults'), ('17248','32263','component','application'), ('17249','32264','component','icp'), ('17250','32265','component','icp'), ('17251','32265','component','network'), ('17252','32266','component','cpu'), ('17253','32267','component','dns'), ('17254','32267','component','hits'), ('17255','32268','component','system'), ('17256','32269','component','system'), ('17257','32270','component','objects'), ('17258','32271','component','system'), ('17259','32272','component','memory'), ('17260','32272','component','storage'), ('17261','32273','component','objects'), ('17262','32274','component','system'), ('17263','32275','component','dns'), ('17264','32275','component','replies'), ('17265','32276','component','dns'), ('17266','32276','component','requests'), ('17267','32277','component','dns'), ('17268','32278','component','dns'), ('17269','32279','component','dns'), ('17270','32279','component','misses'), ('17271','32280','component','icp'), ('17272','32280','component','network'), ('17273','32281','component','dns'), ('17274','32281','component','requests'), ('17275','32282','component','http'), ('17276','32283','component','http'), ('17277','32284','component','errors'), ('17278','32284','component','http'), ('17279','32285','component','hits'), ('17280','32285','component','http'), ('17281','32286','component','hits'), ('17282','32286','component','http'), ('17283','32287','component','hits'), ('17284','32287','component','http'), ('17285','32288','component','http'), ('17286','32288','component','network'), ('17287','32289','component','http'), ('17288','32289','component','misses'), ('17289','32290','component','http'), ('17290','32290','component','misses'), ('17291','32291','component','http'), ('17292','32291','component','network'), ('17293','32292','component','application'), ('17295','35264','component','raw'), ('17296','35264','component','unit'), ('17297','35265','component','raw'), ('17298','35265','component','socket'), ('17299','35266','component','service'), ('17300','35267','component','service'), ('17301','35268','component','service'), ('17302','35269','component','service'), ('17303','35270','component','socket'), ('17304','35271','component','socket'), ('17306','28511','component','system'), ('17307','32766','component','protocol-handler'), ('17308','32766','protocol-handler','{#JMXVALUE}'), ('17309','32767','component','request'), ('17310','32767','jmx-name','{#JMXNAME}'), ('17311','32767','jmx-type','{#JMXTYPE}'), ('17312','32768','component','request'), ('17313','32768','jmx-name','{#JMXNAME}'), ('17314','32768','jmx-type','{#JMXTYPE}'), ('17315','32769','component','request'), ('17316','32769','jmx-name','{#JMXNAME}'), ('17317','32769','jmx-type','{#JMXTYPE}'), ('17318','32770','component','request'), ('17319','32770','jmx-name','{#JMXNAME}'), ('17320','32770','jmx-type','{#JMXTYPE}'), ('17321','32771','component','request'), ('17322','32771','jmx-name','{#JMXNAME}'), ('17323','32771','jmx-type','{#JMXTYPE}'), ('17324','32772','component','context'), ('17325','32772','jmx-context','{#JMXCONTEXT}'), ('17326','32772','jmx-host','{#JMXHOST}'), ('17327','32773','component','context'), ('17328','32773','jmx-context','{#JMXCONTEXT}'), ('17329','32773','jmx-host','{#JMXHOST}'), ('17330','32774','component','context'), ('17331','32774','jmx-context','{#JMXCONTEXT}'), ('17332','32774','jmx-host','{#JMXHOST}'), ('17333','32775','component','context'), ('17334','32775','jmx-context','{#JMXCONTEXT}'), ('17335','32775','jmx-host','{#JMXHOST}'), ('17336','32776','component','context'), ('17337','32776','jmx-context','{#JMXCONTEXT}'), ('17338','32776','jmx-host','{#JMXHOST}'), ('17339','32777','component','thread-pool'), ('17340','32777','jmx-name','{#JMXNAME}'), ('17341','32777','jmx-type','{#JMXTYPE}'), ('17342','32778','component','thread-pool'), ('17343','32778','jmx-name','{#JMXNAME}'), ('17344','32778','jmx-type','{#JMXTYPE}'), ('17345','32779','component','thread-pool'), ('17346','32779','jmx-name','{#JMXNAME}'), ('17347','32779','jmx-type','{#JMXTYPE}'), ('17348','36772','component','builds'), ('17349','36772','component','raw'), ('17350','36773','component','health'), ('17351','36774','component','jobs'), ('17352','36774','component','raw'), ('17353','36775','component','raw'), ('17354','36775','component','repos'), ('17355','36776','component','builds'), ('17356','36777','component','builds'), ('17357','36778','component','jobs'), ('17358','36779','component','jobs'), ('17359','36780','component','jobs'), ('17360','36782','component','builds'), ('17361','36782','repo','{#SLUG}'), ('17362','36783','component','builds'), ('17363','36783','component','raw'), ('17364','36783','repo','{#SLUG}'), ('17365','36784','component','caches'), ('17366','36784','component','raw'), ('17367','36784','repo','{#SLUG}'), ('17368','36785','component','builds'), ('17369','36785','repo','{#SLUG}'), ('17370','36786','component','builds'), ('17371','36786','repo','{#SLUG}'), ('17372','36787','component','builds'), ('17373','36787','repo','{#SLUG}'), ('17374','36788','component','caches'), ('17375','36788','repo','{#SLUG}'), ('17376','36789','component','caches'), ('17377','36789','repo','{#SLUG}'), ('17378','36790','component','repo'), ('17379','36790','repo','{#SLUG}'), ('17380','36791','component','last_build'), ('17381','36791','repo','{#SLUG}'), ('17382','36792','component','last_build'), ('17383','36792','repo','{#SLUG}'), ('17384','36793','component','last_build'), ('17385','36793','repo','{#SLUG}'), ('17386','36794','component','last_build'), ('17387','36794','repo','{#SLUG}'), ('17388','32780','component','leader'), ('17389','32780','component','raw'), ('17390','32781','component','health'), ('17391','32781','component','raw'), ('17392','32782','component','metrics'), ('17393','32782','component','raw'), ('17394','32783','component','raw'), ('17395','32783','component','tokens'), ('17396','32784','component','health'), ('17397','32785','component','health'), ('17398','32786','component','leader'), ('17399','32787','component','leader'), ('17400','32788','component','health'), ('17401','32789','component','health'), ('17402','32790','component','health'), ('17403','32791','component','health'), ('17404','32792','component','health'), ('17405','32793','component','health'), ('17406','32794','component','health'), ('17407','32794','component','metrics'), ('17408','32795','component','metrics'), ('17409','32795','component','raw'), ('17410','32796','component','process'), ('17411','32797','component','runtime'), ('17412','32798','component','runtime'), ('17413','32799','component','runtime'), ('17414','32800','component','process'), ('17415','32801','component','process'), ('17416','32802','component','process'), ('17417','32803','component','discovery'), ('17418','32803','component','mountpoint'), ('17419','32804','component','process'), ('17420','32805','component','process'), ('17421','32806','component','process'), ('17422','32807','component','policy'), ('17423','32808','component','runtime'), ('17424','32809','component','policy'), ('17425','32810','component','policy'), ('17426','32811','component','runtime'), ('17427','32812','component','token'), ('17428','32813','component','runtime'), ('17429','32814','component','token'), ('17430','32815','component','runtime'), ('17431','32816','component','token'), ('17432','32817','component','token'), ('17433','32818','component','token'), ('17434','32819','component','token'), ('17435','32820','component','token'), ('17436','32821','component','expire'), ('17437','32822','component','runtime'), ('17438','32823','component','token'), ('17439','32824','component','token'), ('17440','32825','component','token'), ('17441','32826','component','token'), ('17442','32827','component','secret'), ('17443','32828','component','secret'), ('17444','32829','component','policy'), ('17445','32830','component','expire'), ('17446','32831','component','expire'), ('17447','32832','component','barrier'), ('17448','32833','component','core'), ('17449','32834','component','core'), ('17450','32835','component','cache'), ('17451','32836','component','cache'), ('17452','32837','component','cache'), ('17453','32838','component','barrier'), ('17454','32839','component','barrier'), ('17455','32840','component','core'), ('17456','32841','component','audit_log'), ('17457','32842','component','audit_log'), ('17458','32843','component','audit_log'), ('17459','32844','component','audit_log'), ('17460','32845','component','discovery'), ('17461','32845','component','wal'), ('17462','32846','component','discovery'), ('17463','32846','component','storage'), ('17464','32847','component','core'), ('17465','32848','component','core'), ('17466','32849','component','expire'), ('17467','32850','component','discovery'), ('17468','32850','component','replication'), ('17469','32851','component','expire'), ('17470','32852','component','expire'), ('17471','32853','component','expire'), ('17472','32854','component','expire'), ('17473','32855','component','expire'), ('17474','32856','component','expire'), ('17475','32857','component','expire'), ('17476','32858','component','core'), ('17477','32859','component','core'), ('17478','32860','component','core'), ('17479','32861','component','core'), ('17480','32862','component','core'), ('17481','32863','component','core'), ('17482','32864','component','core'), ('17483','32865','component','barrier'), ('17484','32871','component','token'), ('17485','32871','token','{#TOKEN_NAME}'), ('17486','32872','component','token'), ('17487','32872','token','{#TOKEN_NAME}'), ('17488','32873','component','token'), ('17489','32873','token','{#TOKEN_NAME}'), ('17490','32874','component','mountpoint'), ('17491','32874','mountpoint','{#MOUNTPOINT}'), ('17492','32875','component','mountpoint'), ('17493','32875','mountpoint','{#MOUNTPOINT}'), ('17494','32876','component','replication'), ('17495','32877','component','replication'), ('17496','32878','component','replication'), ('17497','32879','component','replication'), ('17498','32880','component','replication'), ('17499','32881','component','replication'), ('17500','32882','component','replication'), ('17501','32883','component','storage'), ('17502','32883','operation','{#OPERATION}'), ('17503','32883','storage','{#STORAGE}'), ('17504','32884','component','wal'), ('17505','32885','component','wal'), ('17506','32886','component','wal'), ('17507','32887','component','wal'), ('17508','32888','component','wal'), ('17509','32889','component','wal'), ('17510','31612','component','log'), ('17511','31613','component','system'), ('17512','31614','component','system'), ('17513','32890','component','cluster'), ('17514','32891','component','memory'), ('17515','32892','component','storage'), ('17516','32893','component','storage'), ('17517','32894','component','storage'), ('17518','32895','component','power'), ('17519','32896','component','memory'), ('17520','32897','component','memory'), ('17521','32898','component','memory'), ('17522','32899','component','memory'), ('17523','32900','component','cpu'), ('17524','32901','component','memory'), ('17525','32902','component','memory'), ('17526','32903','component','memory'), ('17527','32904','component','hypervisor'), ('17528','32905','component','datacenter'), ('17529','32906','component','cpu'), ('17530','32907','component','cpu'), ('17531','32908','component','system'), ('17532','32909','component','application'), ('17533','32909','component','health'), ('17534','32910','component','system'), ('17535','32911','component','system'), ('17536','32912','component','system'), ('17537','32913','component','health'), ('17539','32915','component','network'), ('17540','32916','component','network'), ('17541','32917','component','memory'), ('17542','32918','component','memory'), ('17543','32919','component','system'), ('17544','32920','component','cluster'), ('17545','32921','component','system'), ('17546','32922','component','memory'), ('17547','32923','component','cpu'), ('17548','32924','component','cpu'), ('17549','32925','component','cpu'), ('17550','32926','component','cpu'), ('17551','32927','component','system'), ('17552','32928','component','datacenter'), ('17553','32929','component','cpu'), ('17554','32930','component','system'), ('17555','33638','component','memory'), ('17556','33639','component','memory'), ('17557','33640','component','cpu'), ('17558','33641','component','system'), ('17559','33642','component','memory'), ('17560','33643','component','cpu'), ('17561','33644','component','cpu'), ('17562','33645','component','cpu'), ('17563','33646','component','power'), ('17564','33647','component','power'), ('17565','33648','component','cpu'), ('17566','33649','component','cpu'), ('17567','31663','cluster','{#CLUSTER.NAME}'), ('17568','31663','component','cluster'), ('17569','31664','component','datastore'), ('17570','31664','datastore','{#DATASTORE}'), ('17571','31665','component','datastore'), ('17572','31665','datastore','{#DATASTORE}'), ('17573','31666','component','datastore'), ('17574','31666','datastore','{#DATASTORE}'), ('17575','31667','component','datastore'), ('17576','31667','datastore','{#DATASTORE}'), ('17577','32935','component','interface'), ('17578','32935','interface','{#IFDESC}'), ('17579','32936','component','interface'), ('17580','32936','interface','{#IFDESC}'), ('17581','32937','component','interface'), ('17582','32937','interface','{#IFDESC}'), ('17583','32938','component','interface'), ('17584','32938','interface','{#IFDESC}'), ('17585','32939','component','disk'), ('17586','32939','disk','{#DISKDESC}'), ('17587','32940','component','disk'), ('17588','32940','disk','{#DISKDESC}'), ('17589','32941','component','disk'), ('17590','32941','disk','{#DISKDESC}'), ('17591','32942','component','disk'), ('17592','32942','disk','{#DISKDESC}'), ('17593','32943','component','filesystem'), ('17594','32943','filesystem','{#FSNAME}'), ('17595','32944','component','filesystem'), ('17596','32944','filesystem','{#FSNAME}'), ('17597','32945','component','filesystem'), ('17598','32945','filesystem','{#FSNAME}'), ('17599','32946','component','filesystem'), ('17600','32946','filesystem','{#FSNAME}'), ('17601','32947','component','datastore'), ('17602','32947','datastore','{#DATASTORE}'), ('17603','32948','component','datastore'), ('17604','32948','datastore','{#DATASTORE}'), ('17605','32949','component','datastore'), ('17606','32949','datastore','{#DATASTORE}'), ('17607','32950','component','datastore'), ('17608','32950','datastore','{#DATASTORE}'), ('17609','33650','component','interface'), ('17610','33650','interface','{#IFDESC}'), ('17611','33651','component','disk'), ('17612','33651','disk','{#DISKDESC}'), ('17613','33652','component','disk'), ('17614','33652','disk','{#DISKDESC}'), ('17615','33653','component','disk'), ('17616','33653','disk','{#DISKDESC}'), ('17617','33654','component','disk'), ('17618','33654','disk','{#DISKDESC}'), ('17619','33655','component','datastore'), ('17620','33655','datastore','{#DATASTORE}'), ('17621','32951','component','log'), ('17622','32952','component','system'), ('17623','32953','component','system'), ('17624','32958','cluster','{#CLUSTER.NAME}'), ('17625','32958','component','cluster'), ('17626','32959','component','datastore'), ('17627','32959','datastore','{#DATASTORE}'), ('17628','32960','component','datastore'), ('17629','32960','datastore','{#DATASTORE}'), ('17630','32961','component','datastore'), ('17631','32961','datastore','{#DATASTORE}'), ('17632','32962','component','datastore'), ('17633','32962','datastore','{#DATASTORE}'), ('17634','34937','component','application'), ('17635','34938','component','application'), ('17636','34939','component','application'), ('17637','34940','component','application'), ('17638','34941','component','application'), ('17639','34944','component','deployments'), ('17640','34944','deployment','{#DEPLOYMENT}'), ('17641','34944','server-group','{#SERVER_GROUP}'), ('17642','34945','component','deployments'), ('17643','34945','deployment','{#DEPLOYMENT}'), ('17644','34945','server-group','{#SERVER_GROUP}'), ('17645','34946','component','servers'), ('17646','34946','server','{#SERVER}'), ('17647','34947','component','servers'), ('17648','34947','server','{#SERVER}'), ('17649','34948','component','servers'), ('17650','34948','server','{#SERVER}'), ('17651','34949','component','application'), ('17652','34950','component','transactions'), ('17653','34951','component','transactions'), ('17654','34952','component','transactions'), ('17655','34953','component','transactions'), ('17656','34954','component','transactions'), ('17657','34955','component','transactions'), ('17658','34956','component','transactions'), ('17659','34957','component','transactions'), ('17660','34958','component','application'), ('17661','34959','component','transactions'), ('17662','34960','component','application'), ('17663','34961','component','application'), ('17664','34962','component','application'), ('17665','34963','component','application'), ('17666','34964','component','application'), ('17667','34965','component','transactions'), ('17668','34970','component','deployments'), ('17669','34970','deployment','{#DEPLOYMENT}'), ('17670','34971','component','deployments'), ('17671','34971','deployment','{#DEPLOYMENT}'), ('17672','34972','component','deployments'), ('17673','34972','deployment','{#DEPLOYMENT}'), ('17674','34973','component','deployments'), ('17675','34973','deployment','{#DEPLOYMENT}'), ('17676','34974','component','deployments'), ('17677','34974','deployment','{#DEPLOYMENT}'), ('17678','34975','component','cache'), ('17679','34975','component','datasources'), ('17680','34975','datasource','{#JMX_DATA_SOURCE}'), ('17681','34976','component','cache'), ('17682','34976','component','datasources'), ('17683','34976','datasource','{#JMX_DATA_SOURCE}'), ('17684','34977','component','cache'), ('17685','34977','component','datasources'), ('17686','34977','datasource','{#JMX_DATA_SOURCE}'), ('17687','34978','component','cache'), ('17688','34978','component','datasources'), ('17689','34978','datasource','{#JMX_DATA_SOURCE}'), ('17690','34979','component','cache'), ('17691','34979','component','datasources'), ('17692','34979','datasource','{#JMX_DATA_SOURCE}'), ('17693','34980','component','cache'), ('17694','34980','component','datasources'), ('17695','34980','datasource','{#JMX_DATA_SOURCE}'), ('17696','34981','component','datasources'), ('17697','34981','datasource','{#JMX_DATA_SOURCE}'), ('17698','34982','component','connections'), ('17699','34982','component','datasources'), ('17700','34982','datasource','{#JMX_DATA_SOURCE}'), ('17701','34983','component','datasources'), ('17702','34983','component','xa'), ('17703','34983','datasource','{#JMX_DATA_SOURCE}'), ('17704','34984','component','datasources'), ('17705','34984','component','xa'), ('17706','34984','datasource','{#JMX_DATA_SOURCE}'), ('17707','34985','component','datasources'), ('17708','34985','component','xa'), ('17709','34985','datasource','{#JMX_DATA_SOURCE}'), ('17710','34986','component','datasources'), ('17711','34986','component','xa'), ('17712','34986','datasource','{#JMX_DATA_SOURCE}'), ('17713','34987','component','datasources'), ('17714','34987','component','xa'), ('17715','34987','datasource','{#JMX_DATA_SOURCE}'), ('17716','34988','component','datasources'), ('17717','34988','component','xa'), ('17718','34988','datasource','{#JMX_DATA_SOURCE}'), ('17719','34989','component','datasources'), ('17720','34989','component','xa'), ('17721','34989','datasource','{#JMX_DATA_SOURCE}'), ('17722','34990','component','datasources'), ('17723','34990','component','xa'), ('17724','34990','datasource','{#JMX_DATA_SOURCE}'), ('17725','34991','component','datasources'), ('17726','34991','component','xa'), ('17727','34991','datasource','{#JMX_DATA_SOURCE}'), ('17728','34992','component','datasources'), ('17729','34992','component','xa'), ('17730','34992','datasource','{#JMX_DATA_SOURCE}'), ('17731','34993','component','datasources'), ('17732','34993','component','xa'), ('17733','34993','datasource','{#JMX_DATA_SOURCE}'), ('17734','34994','component','datasources'), ('17735','34994','component','xa'), ('17736','34994','datasource','{#JMX_DATA_SOURCE}'), ('17737','34995','component','datasources'), ('17738','34995','component','xa'), ('17739','34995','datasource','{#JMX_DATA_SOURCE}'), ('17740','34996','component','connections'), ('17741','34996','component','datasources'), ('17742','34996','datasource','{#JMX_DATA_SOURCE}'), ('17743','34997','component','connections'), ('17744','34997','component','datasources'), ('17745','34997','datasource','{#JMX_DATA_SOURCE}'), ('17746','34998','component','connections'), ('17747','34998','component','datasources'), ('17748','34998','datasource','{#JMX_DATA_SOURCE}'), ('17749','34999','component','datasources'), ('17750','34999','datasource','{#JMX_DATA_SOURCE}'), ('17751','35000','component','connections'), ('17752','35000','component','datasources'), ('17753','35000','datasource','{#JMX_DATA_SOURCE}'), ('17754','35001','component','connections'), ('17755','35001','component','datasources'), ('17756','35001','datasource','{#JMX_DATA_SOURCE}'), ('17757','35002','component','connections'), ('17758','35002','component','datasources'), ('17759','35002','datasource','{#JMX_DATA_SOURCE}'), ('17760','35003','component','connections'), ('17761','35003','component','datasources'), ('17762','35003','datasource','{#JMX_DATA_SOURCE}'), ('17763','35004','component','connections'), ('17764','35004','component','datasources'), ('17765','35004','datasource','{#JMX_DATA_SOURCE}'), ('17766','35005','component','connections'), ('17767','35005','component','datasources'), ('17768','35005','datasource','{#JMX_DATA_SOURCE}'), ('17769','35006','component','connections'), ('17770','35006','component','datasources'), ('17771','35006','datasource','{#JMX_DATA_SOURCE}'), ('17772','35007','component','connections'), ('17773','35007','component','datasources'), ('17774','35007','datasource','{#JMX_DATA_SOURCE}'), ('17775','35008','component','connections'), ('17776','35008','component','datasources'), ('17777','35008','datasource','{#JMX_DATA_SOURCE}'), ('17778','35009','component','connections'), ('17779','35009','component','datasources'), ('17780','35009','datasource','{#JMX_DATA_SOURCE}'), ('17781','35010','component','datasources'), ('17782','35010','datasource','{#JMX_DATA_SOURCE}'), ('17783','35011','component','datasources'), ('17784','35011','component','xa'), ('17785','35011','datasource','{#JMX_DATA_SOURCE}'), ('17786','35012','component','network'), ('17787','35012','component','undertow'), ('17788','35012','http_listener','{#HTTP_LISTENER}'), ('17789','35012','server','{#SERVER}'), ('17790','35013','component','network'), ('17791','35013','component','undertow'), ('17792','35013','http_listener','{#HTTP_LISTENER}'), ('17793','35013','server','{#SERVER}'), ('17794','35014','component','undertow'), ('17795','35014','http_listener','{#HTTP_LISTENER}'), ('17796','35014','server','{#SERVER}'), ('17797','35015','component','undertow'), ('17798','35015','http_listener','{#HTTP_LISTENER}'), ('17799','35015','server','{#SERVER}'), ('17800','10067','component','system'), ('17801','10068','component','system'), ('17802','10069','component','system'), ('17803','10070','component','system'), ('17804','10071','component','system'), ('17805','10072','component','system'), ('17806','23340','component','system'), ('17807','23341','component','system'), ('17808','23342','component','system'), ('17809','23343','component','internal-process'), ('17813','23347','component','internal-process'), ('17816','23350','component','internal-process'), ('17819','23353','component','internal-process'), ('17823','23357','component','system'), ('17824','23358','component','system'), ('17825','23359','component','system'), ('17826','23360','component','internal-process'), ('17827','25368','component','internal-process'), ('17828','25369','component','internal-process'), ('17830','28251','component','system'), ('17831','28617','component','system'), ('17832','28618','component','internal-process'), ('17833','28619','component','internal-process'), ('17834','33018','component','internal-process'), ('17837','40181','component','system'), ('17838','40182','component','system'), ('17839','40183','component','system'), ('17840','40184','component','system'), ('17882','10061','component','system'), ('17883','10062','component','system'), ('17884','10063','component','system'), ('17885','10064','component','system'), ('17886','10065','component','system'), ('17887','10066','component','system'), ('17888','22183','component','system'), ('17889','22185','component','system'), ('17890','22187','component','system'), ('17891','22189','component','system'), ('17892','22191','component','system'), ('17893','22196','component','system'), ('17894','22199','component','system'), ('17895','22219','component','system'), ('17896','22396','component','system'), ('17902','22406','component','internal-process'), ('17903','22408','component','internal-process'), ('17904','22412','component','internal-process'), ('17905','22414','component','internal-process'), ('17909','22422','component','internal-process'), ('17910','22424','component','internal-process'), ('17911','22426','component','internal-process'), ('17915','23251','component','system'), ('17916','23634','component','system'), ('17917','23661','component','system'), ('17918','23663','component','internal-process'), ('17919','25366','component','internal-process'), ('17920','25370','component','internal-process'), ('17921','25665','component','internal-process'), ('17922','25666','component','internal-process'), ('17923','28248','component','system'), ('17924','28533','component','system'), ('17925','28535','component','internal-process'), ('17926','28537','component','internal-process'), ('17927','29822','component','internal-process'), ('17928','33020','component','system'), ('17929','33021','component','system'), ('17930','33022','component','internal-process'), ('17932','34316','component','internal-process'), ('17933','34317','component','internal-process'), ('17934','35272','component','internal-process'), ('17935','35273','component','system'), ('17936','35274','component','internal-process'), ('17937','39804','component','raw'), ('17939','10073','component','system'), ('17940','10074','component','system'), ('17941','10075','component','system'), ('17942','10076','component','system'), ('17943','10077','component','system'), ('17944','10078','component','system'), ('17945','23252','component','internal-process'), ('17946','23253','component','internal-process'), ('17948','23256','component','internal-process'), ('17949','23257','component','internal-process'), ('17950','23258','component','internal-process'), ('17957','23266','component','internal-process'), ('17959','23268','component','internal-process'), ('17962','23271','component','system'), ('17963','23272','component','system'), ('17964','23273','component','system'), ('17965','23274','component','system'), ('17966','23275','component','system'), ('17967','23276','component','system'), ('17968','23277','component','system'), ('17970','23620','component','system'), ('17971','23625','component','system'), ('17972','23628','component','system'), ('17973','23635','component','system'), ('17974','23662','component','system'), ('17975','23664','component','internal-process'), ('17976','25367','component','internal-process'), ('17977','25371','component','internal-process'), ('17978','25667','component','internal-process'), ('17979','25668','component','internal-process'), ('17980','28249','component','system'), ('17981','28534','component','system'), ('17982','28536','component','internal-process'), ('17983','28538','component','internal-process'), ('17984','29823','component','internal-process'), ('17985','33024','component','system'), ('17986','33025','component','system'), ('17987','33026','component','internal-process'), ('17989','34318','component','internal-process'), ('17990','34319','component','internal-process'), ('17991','35275','component','internal-process'), ('17992','35276','component','system'), ('17993','35277','component','internal-process'), ('17994','39805','component','raw'), ('17996','39808','component','cluster'), ('17997','39808','node-id','{#NODE.ID}'), ('17998','39808','node-name','{#NODE.NAME}'), ('17999','39809','component','cluster'), ('18000','39809','node-id','{#NODE.ID}'), ('18001','39809','node-name','{#NODE.NAME}'), ('18002','39810','component','cluster'), ('18003','39810','node-id','{#NODE.ID}'), ('18004','39810','node-name','{#NODE.NAME}'), ('18005','39811','component','cluster'), ('18006','39811','node-id','{#NODE.ID}'), ('18007','39811','node-name','{#NODE.NAME}'), ('18008','39812','component','cluster'), ('18009','39812','node-id','{#NODE.ID}'), ('18010','39812','node-name','{#NODE.NAME}'), ('18011','39813','component','cluster'), ('18012','39813','node-id','{#NODE.ID}'), ('18013','39813','node-name','{#NODE.NAME}'), ('18014','39814','component','cluster'), ('18015','39814','node-id','{#NODE.ID}'), ('18016','39814','node-name','{#NODE.NAME}'), ('18017','39815','component','cluster'), ('18018','39815','node-id','{#NODE.ID}'), ('18019','39815','node-name','{#NODE.NAME}'), ('18020','28539','component','raw'), ('18021','28540','component','system'), ('18022','28541','component','system'), ('18023','28542','component','system'), ('18024','28543','component','system'), ('18025','28544','component','system'), ('18026','28545','component','system'), ('18027','28546','component','system'), ('18028','28547','component','system'), ('18029','28548','component','system'), ('18030','28549','component','system'), ('18031','28550','component','system'), ('18032','28551','component','system'), ('18034','28553','component','system'), ('18035','28554','component','system'), ('18036','28555','component','system'), ('18037','28556','component','system'), ('18038','28557','component','system'), ('18039','28558','component','system'), ('18041','28560','component','system'), ('18042','28561','component','internal-process'), ('18043','28562','component','internal-process'), ('18044','28563','component','internal-process'), ('18045','28564','component','internal-process'), ('18047','28566','component','internal-process'), ('18048','28567','component','internal-process'), ('18049','28568','component','internal-process'), ('18053','28572','component','internal-process'), ('18056','28575','component','internal-process'), ('18057','28576','component','internal-process'), ('18059','28578','component','internal-process'), ('18061','28580','component','internal-process'), ('18063','28582','component','internal-process'), ('18064','28583','component','internal-process'), ('18065','28584','component','system'), ('18066','29821','component','internal-process'), ('18067','31053','component','system'), ('18068','33014','component','system'), ('18069','33015','component','system'), ('18070','33016','component','internal-process'), ('18072','34314','component','internal-process'), ('18073','34315','component','internal-process'), ('18074','35278','component','internal-process'), ('18075','35279','component','internal-process'), ('18077','39817','component','cluster'), ('18078','39817','node-id','{#NODE.ID}'), ('18079','39817','node-name','{#NODE.NAME}'), ('18080','39818','component','cluster'), ('18081','39818','node-id','{#NODE.ID}'), ('18082','39818','node-name','{#NODE.NAME}'), ('18083','39819','component','cluster'), ('18084','39819','node-id','{#NODE.ID}'), ('18085','39819','node-name','{#NODE.NAME}'), ('18086','39820','component','cluster'), ('18087','39820','node-id','{#NODE.ID}'), ('18088','39820','node-name','{#NODE.NAME}'), ('18089','32963','component','raw'), ('18090','32964','component','connections'), ('18091','32964','component','raw'), ('18092','32965','component','disk'), ('18093','32966','component','requests'), ('18094','32967','component','requests'), ('18095','32968','component','requests'), ('18096','32969','component','connections'), ('18097','32970','component','fds'), ('18098','32971','component','network'), ('18099','32972','component','operations'), ('18100','32973','component','network'), ('18101','32974','component','operations'), ('18102','32975','component','application'), ('18103','32976','component','operations'), ('18104','32977','component','application'), ('18105','32978','component','application'), ('18106','32979','component','application'), ('18107','32980','component','fds'), ('18108','32981','component','sessions'), ('18109','32982','component','sessions'), ('18110','32983','component','application'), ('18111','32984','component','application'), ('18112','32985','component','operations'), ('18113','32986','component','connections'), ('18114','32987','component','connections'), ('18115','32988','component','connections'), ('18116','32989','component','operations'), ('18117','32990','component','disk'), ('18118','32991','component','disk'), ('18119','32992','component','application'), ('18120','32993','component','network'), ('18121','32994','component','disk'), ('18122','32995','component','requests'), ('18123','32996','component','disk'), ('18124','32997','component','application'), ('18125','33000','client','{#CLIENT}'), ('18126','33000','component','clients'), ('18127','33000','component','requests'), ('18128','33000','type','{#TYPE}'), ('18129','33001','client','{#CLIENT}'), ('18130','33001','component','clients'), ('18131','33001','component','requests'), ('18132','33001','type','{#TYPE}'), ('18133','33002','client','{#CLIENT}'), ('18134','33002','component','clients'), ('18135','33002','component','requests'), ('18136','33002','type','{#TYPE}'), ('18137','33003','client','{#CLIENT}'), ('18138','33003','component','clients'), ('18139','33003','component','requests'), ('18140','33003','type','{#TYPE}'), ('18141','33004','client','{#CLIENT}'), ('18142','33004','component','clients'), ('18143','33004','component','network'), ('18144','33004','type','{#TYPE}'), ('18145','33005','client','{#CLIENT}'), ('18146','33005','component','clients'), ('18147','33005','component','network'), ('18148','33005','type','{#TYPE}'), ('18149','33006','component','cluster'), ('18150','33007','component','operations'), ('18151','33008','component','cluster'), ('18152','33009','component','cluster'), ('18153','33010','component','cluster'), ('18154','33011','component','cluster'), ('18155','33491','component','raw'), ('18156','33492','component','raw'), ('18157','33493','component','raw'), ('18158','33494','component','system'), ('18159','33495','component','system'), ('18160','33496','component','system'), ('18161','33497','component','system'), ('18162','33498','component','system'), ('18163','33499','component','system'), ('18164','33500','component','system'), ('18165','33501','component','memory'), ('18166','33502','component','network'), ('18167','33503','component','system'), ('18168','33504','component','system'), ('18169','33505','component','system'), ('18170','33506','component','system'), ('18171','33507','component','system'), ('18172','33508','component','system'), ('18173','33509','component','system'), ('18174','33510','component','system'), ('18175','33511','component','system'), ('18176','33512','component','system'), ('18177','33513','component','system'), ('18178','33514','component','system'), ('18179','33515','component','system'), ('18180','33516','component','system'), ('18181','33517','component','system'), ('18182','33518','component','cpu'), ('18183','33519','component','system'), ('18184','33522','component','raw'), ('18185','33523','component','system'), ('18186','33524','component','ptz'), ('18187','33524','ptz-id','{#PTZ_CHANNEL_ID}'), ('18188','33525','component','ptz'), ('18189','33525','ptz-id','{#PTZ_CHANNEL_ID}'), ('18190','33526','component','ptz'), ('18191','33526','ptz-id','{#PTZ_CHANNEL_ID}'), ('18192','33527','component','stream'), ('18193','33527','stream-id','{#CHANNEL_ID}'), ('18194','33528','component','stream'), ('18195','33528','stream-id','{#CHANNEL_ID}'), ('18196','33529','component','stream'), ('18197','33529','stream-id','{#CHANNEL_ID}'), ('18198','33530','component','stream'), ('18199','33530','stream-id','{#CHANNEL_ID}'), ('18200','33531','component','stream'), ('18201','33531','stream-id','{#CHANNEL_ID}'), ('18202','33532','component','stream'), ('18203','33532','stream-id','{#CHANNEL_ID}'), ('18204','33533','component','stream'), ('18205','33533','stream-id','{#CHANNEL_ID}'), ('18206','33534','component','stream'), ('18207','33534','stream-id','{#CHANNEL_ID}'), ('18208','33535','component','stream'), ('18209','33535','stream-id','{#CHANNEL_ID}'), ('18210','33536','component','stream'), ('18211','33536','stream-id','{#CHANNEL_ID}'), ('18212','33537','component','stream'), ('18213','33537','stream-id','{#CHANNEL_ID}'), ('18214','33538','component','stream'), ('18215','33538','stream-id','{#CHANNEL_ID}'), ('18216','33539','component','stream'), ('18217','33539','stream-id','{#CHANNEL_ID}'), ('18218','33540','component','stream'), ('18219','33540','stream-id','{#CHANNEL_ID}'), ('18220','33541','component','stream'), ('18221','33541','stream-id','{#CHANNEL_ID}'), ('18222','33028','component','cluster'), ('18223','33029','component','thread-pools'), ('18224','33030','component','thread-pools'), ('18225','33031','component','thread-pools'), ('18226','33032','component','thread-pools'), ('18227','33033','component','thread-pools'), ('18228','33034','component','thread-pools'), ('18229','33035','component','thread-pools'), ('18230','33036','component','thread-pools'), ('18231','33037','component','thread-pools'), ('18232','33038','component','thread-pools'), ('18233','33039','component','thread-pools'), ('18234','33040','component','thread-pools'), ('18235','33041','component','thread-pools'), ('18236','33042','component','thread-pools'), ('18237','33043','component','thread-pools'), ('18238','33044','component','thread-pools'), ('18239','33045','component','storage'), ('18240','33046','component','thread-pools'), ('18241','33047','component','thread-pools'), ('18242','33048','component','thread-pools'), ('18243','33049','component','thread-pools'), ('18244','33050','component','thread-pools'), ('18245','33051','component','thread-pools'), ('18246','33052','component','thread-pools'), ('18247','33053','component','thread-pools'), ('18248','33054','component','thread-pools'), ('18249','33055','component','thread-pools'), ('18250','33056','component','thread-pools'), ('18251','33057','component','thread-pools'), ('18252','33058','component','thread-pools'), ('18253','33059','component','cluster'), ('18254','33060','component','thread-pools'), ('18255','33061','component','storage'), ('18256','33062','component','application'), ('18257','33063','component','cache'), ('18258','33064','component','compactions'), ('18259','33065','component','commitlog'), ('18260','33066','component','disk'), ('18261','33067','component','disk'), ('18262','33068','component','disk'), ('18263','33069','component','commitlog'), ('18264','33070','component','compactions'), ('18265','33071','component','disk'), ('18266','33072','component','disk'), ('18267','33073','component','disk'), ('18268','33074','component','cache'), ('18269','33075','component','cache'), ('18270','33076','component','cache'), ('18271','33077','component','cache'), ('18272','33078','component','cache'), ('18273','33079','component','storage'), ('18274','33080','component','connections'), ('18275','33081','component','connections'), ('18276','33082','component','requests'), ('18277','33083','component','requests'), ('18278','33084','component','requests'), ('18279','33085','component','requests'), ('18280','33086','component','requests'), ('18281','33087','component','requests'), ('18282','33088','component','requests'), ('18283','33089','component','requests'), ('18284','33090','component','requests'), ('18285','33091','component','compactions'), ('18286','33092','component','messages'), ('18287','33093','component','messages'), ('18288','33094','component','cluster'), ('18289','33096','component','tables'), ('18290','33096','keyspace','{#JMXKEYSPACE}'), ('18291','33096','table','{#JMXSCOPE}'), ('18292','33097','component','tables'), ('18293','33097','keyspace','{#JMXKEYSPACE}'), ('18294','33097','table','{#JMXSCOPE}'), ('18295','33098','component','tables'), ('18296','33098','keyspace','{#JMXKEYSPACE}'), ('18297','33098','table','{#JMXSCOPE}'), ('18298','33099','component','tables'), ('18299','33099','keyspace','{#JMXKEYSPACE}'), ('18300','33099','table','{#JMXSCOPE}'), ('18301','33100','component','tables'), ('18302','33100','keyspace','{#JMXKEYSPACE}'), ('18303','33100','table','{#JMXSCOPE}'), ('18304','33101','component','tables'), ('18305','33101','keyspace','{#JMXKEYSPACE}'), ('18306','33101','table','{#JMXSCOPE}'), ('18307','33102','component','tables'), ('18308','33102','keyspace','{#JMXKEYSPACE}'), ('18309','33102','table','{#JMXSCOPE}'), ('18310','33103','component','tables'), ('18311','33103','keyspace','{#JMXKEYSPACE}'), ('18312','33103','table','{#JMXSCOPE}'), ('18313','33104','component','tables'), ('18314','33104','keyspace','{#JMXKEYSPACE}'), ('18315','33104','table','{#JMXSCOPE}'), ('18316','33105','component','tables'), ('18317','33105','keyspace','{#JMXKEYSPACE}'), ('18318','33105','table','{#JMXSCOPE}'), ('18319','33106','component','tables'), ('18320','33106','keyspace','{#JMXKEYSPACE}'), ('18321','33106','table','{#JMXSCOPE}'), ('18322','33107','component','tables'), ('18323','33107','keyspace','{#JMXKEYSPACE}'), ('18324','33107','table','{#JMXSCOPE}'), ('18325','33108','component','tables'), ('18326','33108','keyspace','{#JMXKEYSPACE}'), ('18327','33108','table','{#JMXSCOPE}'), ('18328','33109','component','tables'), ('18329','33109','keyspace','{#JMXKEYSPACE}'), ('18330','33109','table','{#JMXSCOPE}'), ('18331','33110','component','tables'), ('18332','33110','keyspace','{#JMXKEYSPACE}'), ('18333','33110','table','{#JMXSCOPE}'), ('18334','33111','component','tables'), ('18335','33111','keyspace','{#JMXKEYSPACE}'), ('18336','33111','table','{#JMXSCOPE}'), ('18337','33112','component','tables'), ('18338','33112','keyspace','{#JMXKEYSPACE}'), ('18339','33112','table','{#JMXSCOPE}'), ('18340','33113','component','tables'), ('18341','33113','keyspace','{#JMXKEYSPACE}'), ('18342','33113','table','{#JMXSCOPE}'), ('18343','33114','component','tables'), ('18344','33114','keyspace','{#JMXKEYSPACE}'), ('18345','33114','table','{#JMXSCOPE}'), ('18346','33115','component','tables'), ('18347','33115','keyspace','{#JMXKEYSPACE}'), ('18348','33115','table','{#JMXSCOPE}'), ('18349','33116','component','tables'), ('18350','33116','keyspace','{#JMXKEYSPACE}'), ('18351','33116','table','{#JMXSCOPE}'), ('18352','33117','component','tables'), ('18353','33117','keyspace','{#JMXKEYSPACE}'), ('18354','33117','table','{#JMXSCOPE}'), ('18355','33118','component','tables'), ('18356','33118','keyspace','{#JMXKEYSPACE}'), ('18357','33118','table','{#JMXSCOPE}'), ('18358','33119','component','tables'), ('18359','33119','keyspace','{#JMXKEYSPACE}'), ('18360','33119','table','{#JMXSCOPE}'), ('18361','33120','component','tables'), ('18362','33120','keyspace','{#JMXKEYSPACE}'), ('18363','33120','table','{#JMXSCOPE}'), ('18364','33121','component','tables'), ('18365','33121','keyspace','{#JMXKEYSPACE}'), ('18366','33121','table','{#JMXSCOPE}'), ('18367','33122','component','tables'), ('18368','33122','keyspace','{#JMXKEYSPACE}'), ('18369','33122','table','{#JMXSCOPE}'), ('18370','33123','component','tables'), ('18371','33123','keyspace','{#JMXKEYSPACE}'), ('18372','33123','table','{#JMXSCOPE}'), ('18373','33124','component','tables'), ('18374','33124','keyspace','{#JMXKEYSPACE}'), ('18375','33124','table','{#JMXSCOPE}'), ('18376','33125','component','tables'), ('18377','33125','keyspace','{#JMXKEYSPACE}'), ('18378','33125','table','{#JMXSCOPE}'), ('18379','30821','component','health'), ('18380','30821','component','network'), ('18381','30822','component','application'), ('18382','30823','component','raw'), ('18383','30823','component','replicas'), ('18384','30824','component','asynchronous-metrics'), ('18385','30824','component','raw'), ('18386','30825','component','raw'), ('18387','30825','component','system-events'), ('18388','30826','component','raw'), ('18389','30826','component','system-metrics'), ('18390','30827','component','queries'), ('18391','30828','component','raw'), ('18392','30828','component','tables'), ('18393','30829','component','raw'), ('18394','30829','component','system-settings'), ('18395','30830','component','dictionaries'), ('18396','30830','component','raw'), ('18397','31054','component','health'), ('18398','31054','component','network'), ('18399','30831','component','system'), ('18400','30832','component','replication'), ('18401','30833','component','queries'), ('18402','30834','component','system'), ('18403','30835','component','network'), ('18405','30837','component','replication'), ('18406','30838','component','replication'), ('18407','30839','component','application'), ('18408','30841','component','queries'), ('18413','30846','component','application'), ('18414','30847','component','queries'), ('18415','30848','component','connections'), ('18416','30849','component','connections'), ('18417','30850','component','memory'), ('18418','30851','component','connections'), ('18419','30852','component','connections'), ('18420','30853','component','connections'), ('18421','30854','component','system'), ('18422','30855','component','connections'), ('18423','30856','component','connections'), ('18424','30857','component','queries'), ('18425','30858','component','queries'), ('18426','30859','component','network'), ('18427','30860','component','system'), ('18428','30861','component','memory'), ('18429','30862','component','network'), ('18430','30863','component','memory'), ('18431','30864','component','system'), ('18432','30865','component','memory'), ('18433','30866','component','memory'), ('18434','30867','component','memory'), ('18435','30868','component','memory'), ('18436','30869','component','memory'), ('18437','30870','component','system'), ('18438','30871','component','system'), ('18439','30872','component','queries'), ('18442','30877','component','dictionaries'), ('18443','30877','dictionary','{#NAME}'), ('18444','30878','component','dictionaries'), ('18445','30878','dictionary','{#NAME}'), ('18446','30879','component','dictionaries'), ('18447','30879','dictionary','{#NAME}'), ('18448','30880','component','replication'), ('18449','30880','database','{#DB}'), ('18450','30880','table','{#TABLE}'), ('18451','30881','component','replication'), ('18452','30881','database','{#DB}'), ('18453','30881','table','{#TABLE}'), ('18454','30882','component','replication'), ('18455','30882','database','{#DB}'), ('18456','30882','table','{#TABLE}'), ('18457','30883','component','replication'), ('18458','30883','database','{#DB}'), ('18459','30883','table','{#TABLE}'), ('18460','30884','component','replication'), ('18461','30884','database','{#DB}'), ('18462','30884','table','{#TABLE}'), ('18463','30885','component','replication'), ('18464','30885','database','{#DB}'), ('18465','30885','table','{#TABLE}'), ('18466','30886','component','replication'), ('18467','30886','database','{#DB}'), ('18468','30886','table','{#TABLE}'), ('18469','30887','component','replication'), ('18470','30887','database','{#DB}'), ('18471','30887','table','{#TABLE}'), ('18472','30888','component','replication'), ('18473','30888','database','{#DB}'), ('18474','30888','table','{#TABLE}'), ('18475','30889','component','replication'), ('18476','30889','database','{#DB}'), ('18477','30889','table','{#TABLE}'), ('18478','30890','component','replication'), ('18479','30890','database','{#DB}'), ('18480','30890','table','{#TABLE}'), ('18481','30891','component','replication'), ('18482','30891','database','{#DB}'), ('18483','30891','table','{#TABLE}'), ('18487','30893','component','tables'), ('18488','30893','database','{#DB}'), ('18489','30893','table','{#TABLE}'), ('18490','30894','component','tables'), ('18491','30894','database','{#DB}'), ('18492','30894','table','{#TABLE}'), ('18493','30895','component','tables'), ('18494','30895','database','{#DB}'), ('18495','30895','table','{#TABLE}'), ('18496','35290','component','data_region'), ('18497','35291','component','data_region'), ('18498','35292','component','data_region'), ('18499','35293','component','data_region'), ('18500','35294','component','data_region'), ('18501','35295','component','data_region'), ('18502','35296','component','data_region'), ('18503','35297','component','data_region'), ('18504','35298','component','data_region'), ('18505','35299','component','data_region'), ('18506','35300','component','data_region'), ('18507','35301','component','job'), ('18508','35301','component','node'), ('18509','35302','component','job'), ('18510','35302','component','node'), ('18511','35303','component','node'), ('18512','35304','component','job'), ('18513','35304','component','node'), ('18514','35305','component','node'), ('18515','35305','component','threads'), ('18516','35306','component','job'), ('18517','35306','component','node'), ('18518','35307','component','memory'), ('18519','35307','component','node'), ('18520','35308','component','job'), ('18521','35308','component','node'), ('18522','35309','component','job'), ('18523','35309','component','node'), ('18524','35310','component','job'), ('18525','35310','component','node'), ('18526','35311','component','node'), ('18527','35312','component','node'), ('18528','35313','component','node'), ('18529','35314','component','node'), ('18530','35315','component','node'), ('18531','35316','component','kernal'), ('18532','35317','component','kernal'), ('18533','35318','component','kernal'), ('18534','35319','component','messages'), ('18535','35319','component','network'), ('18536','35320','component','messages'), ('18537','35320','component','network'), ('18538','35321','component','network'), ('18539','35322','component','messages'), ('18540','35322','component','network'), ('18541','35323','component','network'), ('18542','35324','component','messages'), ('18543','35324','component','network'), ('18544','35325','component','network'), ('18545','35325','component','nodes'), ('18546','35326','component','network'), ('18547','35326','component','nodes'), ('18548','35327','component','network'), ('18549','35327','component','nodes'), ('18550','35328','component','network'), ('18551','35328','component','nodes'), ('18552','35329','component','messages'), ('18553','35329','component','network'), ('18554','35330','component','messages'), ('18555','35330','component','network'), ('18556','35331','component','transactions'), ('18557','35332','component','transactions'), ('18558','35333','component','transactions'), ('18559','35334','component','transactions'), ('18560','35335','component','transactions'), ('18561','35336','component','cache_group'), ('18562','35337','component','cache_group'), ('18563','35338','component','cache_group'), ('18564','35339','component','cache_group'), ('18565','35340','component','cache_group'), ('18566','35341','component','cache_group'), ('18567','35342','component','cache_group'), ('18568','35343','component','cache_group'), ('18569','35344','component','cache_group'), ('18570','35345','component','thread_pool'), ('18571','35346','component','thread_pool'), ('18572','35347','component','thread_pool'), ('18573','35348','component','thread_pool'), ('18574','35349','component','cache'), ('18575','35350','component','cache'), ('18576','35351','component','cache'), ('18577','35352','component','cache'), ('18578','35353','component','cache'), ('18579','35354','component','cache'), ('18580','35355','component','cache'), ('18581','35356','component','cache'), ('18582','35357','component','cache'), ('18583','33552','component','ignite'), ('18584','33552','data-region','{#JMXNAME}'), ('18585','33552','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18586','33553','component','ignite'), ('18587','33553','data-region','{#JMXNAME}'), ('18588','33553','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18589','33554','component','ignite'), ('18590','33554','data-region','{#JMXNAME}'), ('18591','33554','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18592','33555','component','ignite'), ('18593','33555','data-region','{#JMXNAME}'), ('18594','33555','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18595','33556','component','ignite'), ('18596','33556','data-region','{#JMXNAME}'), ('18597','33556','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18598','33557','component','ignite'), ('18599','33557','data-region','{#JMXNAME}'), ('18600','33557','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18601','33558','component','ignite'), ('18602','33558','data-region','{#JMXNAME}'), ('18603','33558','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18604','33559','component','ignite'), ('18605','33559','data-region','{#JMXNAME}'), ('18606','33559','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18607','33560','component','ignite'), ('18608','33560','data-region','{#JMXNAME}'), ('18609','33560','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18610','33561','component','ignite'), ('18611','33561','data-region','{#JMXNAME}'), ('18612','33561','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18613','33562','component','ignite'), ('18614','33562','data-region','{#JMXNAME}'), ('18615','33562','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18616','33563','component','ignite'), ('18617','33563','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18618','33564','component','ignite'), ('18619','33564','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18620','33565','component','ignite'), ('18621','33565','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18622','33566','component','ignite'), ('18623','33566','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18624','33567','component','ignite'), ('18625','33567','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18626','33568','component','ignite'), ('18627','33568','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18628','33569','component','ignite'), ('18629','33569','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18630','33570','component','ignite'), ('18631','33570','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18632','33571','component','ignite'), ('18633','33571','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18634','33572','component','ignite'), ('18635','33572','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18636','33573','component','ignite'), ('18637','33573','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18638','33574','component','ignite'), ('18639','33574','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18640','33575','component','ignite'), ('18641','33575','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18642','33576','component','ignite'), ('18643','33576','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18644','33577','component','ignite'), ('18645','33577','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18646','33578','component','ignite'), ('18647','33578','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18648','33579','component','ignite'), ('18649','33579','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18650','33580','component','ignite'), ('18651','33580','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18652','33581','component','ignite'), ('18653','33581','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18654','33582','component','ignite'), ('18655','33582','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18656','33584','component','ignite'), ('18657','33584','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18658','33585','component','ignite'), ('18659','33585','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18660','33586','component','ignite'), ('18661','33586','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18662','33587','component','ignite'), ('18663','33587','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18664','33588','component','ignite'), ('18665','33588','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18666','33589','component','ignite'), ('18667','33589','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18668','33590','component','ignite'), ('18669','33590','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18670','33591','component','ignite'), ('18671','33591','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18672','33592','component','ignite'), ('18673','33592','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18674','33593','component','ignite'), ('18675','33593','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18676','33594','component','ignite'), ('18677','33594','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18678','33595','component','ignite'), ('18679','33595','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18680','33596','component','ignite'), ('18681','33596','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18682','33597','component','ignite'), ('18683','33597','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18684','33598','component','ignite'), ('18685','33598','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18686','33598','jmx-name','{#JMXNAME}'), ('18687','33599','component','ignite'), ('18688','33599','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18689','33599','jmx-name','{#JMXNAME}'), ('18690','33600','component','ignite'), ('18691','33600','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18692','33600','jmx-name','{#JMXNAME}'), ('18693','33601','component','ignite'), ('18694','33601','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18695','33601','jmx-name','{#JMXNAME}'), ('18696','33602','component','ignite'), ('18697','33602','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18698','33602','jmx-name','{#JMXNAME}'), ('18699','33603','component','ignite'), ('18700','33603','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18701','33603','jmx-name','{#JMXNAME}'), ('18702','33604','component','ignite'), ('18703','33604','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18704','33604','jmx-name','{#JMXNAME}'), ('18705','33605','component','ignite'), ('18706','33605','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18707','33605','jmx-name','{#JMXNAME}'), ('18708','33606','component','ignite'), ('18709','33606','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18710','33606','jmx-name','{#JMXNAME}'), ('18711','33607','component','ignite'), ('18712','33607','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18713','33607','thread-pool','{#JMXNAME}'), ('18714','33608','component','ignite'), ('18715','33608','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18716','33608','thread-pool','{#JMXNAME}'), ('18717','33609','component','ignite'), ('18718','33609','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18719','33609','thread-pool','{#JMXNAME}'), ('18720','33610','component','ignite'), ('18721','33610','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18722','33610','thread-pool','{#JMXNAME}'), ('18723','33611','component','ignite'), ('18724','33611','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18725','33611','jmx-group','{#JMXGROUP}'), ('18726','33612','component','ignite'), ('18727','33612','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18728','33612','jmx-group','{#JMXGROUP}'), ('18729','33613','component','ignite'), ('18730','33613','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18731','33613','jmx-group','{#JMXGROUP}'), ('18732','33614','component','ignite'), ('18733','33614','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18734','33614','jmx-group','{#JMXGROUP}'), ('18735','33615','component','ignite'), ('18736','33615','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18737','33615','jmx-group','{#JMXGROUP}'), ('18738','33616','component','ignite'), ('18739','33616','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18740','33616','jmx-group','{#JMXGROUP}'), ('18741','33617','component','ignite'), ('18742','33617','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18743','33617','jmx-group','{#JMXGROUP}'), ('18744','33618','component','ignite'), ('18745','33618','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18746','33618','jmx-group','{#JMXGROUP}'), ('18747','33619','component','ignite'), ('18748','33619','instance-name','{#JMXIGNITEINSTANCENAME}'), ('18749','33619','jmx-group','{#JMXGROUP}'), ('18750','36795','component','raw'), ('18751','36796','component','health'), ('18752','36797','component','tokens'), ('18753','36798','component','uptime'), ('18754','36799','component','tokens'), ('18755','36800','component','telegraf'), ('18756','36801','component','telegraf'), ('18757','36802','component','tasks'), ('18758','36803','component','tasks'), ('18759','36804','component','tasks'), ('18760','36805','component','tasks'), ('18761','36806','component','scrapers'), ('18762','36807','component','organizations'), ('18763','36808','component','dashboards'), ('18764','36809','component','buckets'), ('18765','36810','component','boltdb'), ('18766','36811','component','boltdb'), ('18767','36812','component','version'), ('18768','36814','component','queries'), ('18769','36815','component','queries'), ('18770','36816','component','queries'), ('18771','36817','component','queries'), ('18772','36818','component','queries'), ('18773','36819','component','queries'), ('18774','33764','component','raw'), ('18775','33765','component','raw'), ('18776','33765','component','replicaset'), ('18777','33766','component','health'), ('18778','33767','component','oplog'), ('18779','33767','component','replicaset'), ('18780','33768','component','collections'), ('18781','33768','component','raw'), ('18782','33769','component','documents'), ('18783','33770','component','network'), ('18784','33771','component','memory'), ('18785','33772','component','memory'), ('18786','33773','component','memory'), ('18788','33775','component','network'), ('18789','33776','component','network'), ('18790','33777','component','operations'), ('18791','33778','component','operations'), ('18792','33779','component','application'), ('18793','33780','component','operations'), ('18794','33781','component','operations'), ('18795','33782','component','operations'), ('18796','33783','component','operations'), ('18797','33784','component','application'), ('18798','33785','component','memory'), ('18799','33786','component','cursors'), ('18800','33787','component','documents'), ('18801','33788','component','asserts'), ('18802','33789','component','documents'), ('18803','33790','component','documents'), ('18804','33791','component','clients'), ('18805','33792','component','clients'), ('18806','33793','component','clients'), ('18807','33794','component','asserts'), ('18808','33795','component','asserts'), ('18809','33796','component','asserts'), ('18810','33797','component','asserts'), ('18811','33798','component','cursors'), ('18812','33799','component','connections'), ('18813','33800','component','connections'), ('18814','33801','component','connections'), ('18815','33802','component','connections'), ('18816','33803','component','global-lock'), ('18817','33804','component','global-lock'), ('18818','33805','component','global-lock'), ('18820','33807','component','application'), ('18821','33812','collection','{#COLLECTION}'), ('18822','33812','component','raw'), ('18823','33812','database','{#DBNAME}'), ('18824','33813','component','database'), ('18825','33813','component','raw'), ('18826','33813','database','{#DBNAME}'), ('18827','33814','collection','{#COLLECTION}'), ('18828','33814','component','objects'), ('18829','33814','database','{#DBNAME}'), ('18830','33815','collection','{#COLLECTION}'), ('18831','33815','component','operations'), ('18832','33815','database','{#DBNAME}'), ('18833','33816','collection','{#COLLECTION}'), ('18834','33816','component','operations'), ('18835','33816','database','{#DBNAME}'), ('18836','33817','collection','{#COLLECTION}'), ('18837','33817','component','disk'), ('18838','33817','database','{#DBNAME}'), ('18839','33818','collection','{#COLLECTION}'), ('18840','33818','component','disk'), ('18841','33818','database','{#DBNAME}'), ('18842','33819','collection','{#COLLECTION}'), ('18843','33819','component','operations'), ('18844','33819','database','{#DBNAME}'), ('18845','33820','collection','{#COLLECTION}'), ('18846','33820','component','operations'), ('18847','33820','database','{#DBNAME}'), ('18848','33821','collection','{#COLLECTION}'), ('18849','33821','component','operations'), ('18850','33821','database','{#DBNAME}'), ('18851','33822','collection','{#COLLECTION}'), ('18852','33822','component','operations'), ('18853','33822','database','{#DBNAME}'), ('18854','33823','collection','{#COLLECTION}'), ('18855','33823','component','operations'), ('18856','33823','database','{#DBNAME}'), ('18857','33824','collection','{#COLLECTION}'), ('18858','33824','component','operations'), ('18859','33824','database','{#DBNAME}'), ('18860','33825','collection','{#COLLECTION}'), ('18861','33825','component','operations'), ('18862','33825','database','{#DBNAME}'), ('18863','33826','collection','{#COLLECTION}'), ('18864','33826','component','operations'), ('18865','33826','database','{#DBNAME}'), ('18866','33827','collection','{#COLLECTION}'), ('18867','33827','component','application'), ('18868','33827','database','{#DBNAME}'), ('18869','33828','collection','{#COLLECTION}'), ('18870','33828','component','operations'), ('18871','33828','database','{#DBNAME}'), ('18872','33829','collection','{#COLLECTION}'), ('18873','33829','component','operations'), ('18874','33829','database','{#DBNAME}'), ('18875','33830','collection','{#COLLECTION}'), ('18876','33830','component','operations'), ('18877','33830','database','{#DBNAME}'), ('18878','33831','collection','{#COLLECTION}'), ('18879','33831','component','operations'), ('18880','33831','database','{#DBNAME}'), ('18881','33832','collection','{#COLLECTION}'), ('18882','33832','component','operations'), ('18883','33832','database','{#DBNAME}'), ('18884','33833','collection','{#COLLECTION}'), ('18885','33833','component','operations'), ('18886','33833','database','{#DBNAME}'), ('18887','33834','collection','{#COLLECTION}'), ('18888','33834','component','operations'), ('18889','33834','database','{#DBNAME}'), ('18890','33835','collection','{#COLLECTION}'), ('18891','33835','component','application'), ('18892','33835','database','{#DBNAME}'), ('18893','33836','collection','{#COLLECTION}'), ('18894','33836','component','disk'), ('18895','33836','database','{#DBNAME}'), ('18896','33837','collection','{#COLLECTION}'), ('18897','33837','component','application'), ('18898','33837','database','{#DBNAME}'), ('18899','33838','collection','{#COLLECTION}'), ('18900','33838','component','objects'), ('18901','33838','database','{#DBNAME}'), ('18902','33839','collection','{#COLLECTION}'), ('18903','33839','component','operations'), ('18904','33839','database','{#DBNAME}'), ('18905','33840','component','collections'), ('18906','33840','database','{#DBNAME}'), ('18907','33841','component','disk'), ('18908','33841','database','{#DBNAME}'), ('18909','33842','component','collections'), ('18910','33842','database','{#DBNAME}'), ('18911','33843','component','disk'), ('18912','33843','database','{#DBNAME}'), ('18913','33844','component','disk'), ('18914','33844','database','{#DBNAME}'), ('18915','33845','component','objects'), ('18916','33845','database','{#DBNAME}'), ('18917','33846','component','objects'), ('18918','33846','database','{#DBNAME}'), ('18919','33847','component','disk'), ('18920','33847','database','{#DBNAME}'), ('18921','33848','component','replication'), ('18922','33848','replicaset','{#RS_NAME}'), ('18923','33849','component','network'), ('18924','33849','component','replication'), ('18925','33849','replicaset','{#RS_NAME}'), ('18926','33850','component','replication'), ('18927','33850','replicaset','{#RS_NAME}'), ('18928','33851','component','replication'), ('18929','33851','replicaset','{#RS_NAME}'), ('18930','33852','component','replication'), ('18931','33852','replicaset','{#RS_NAME}'), ('18932','33853','component','replication'), ('18933','33853','replicaset','{#RS_NAME}'), ('18934','33854','component','replication'), ('18935','33854','replicaset','{#RS_NAME}'), ('18936','33855','component','replication'), ('18937','33855','replicaset','{#RS_NAME}'), ('18938','33856','component','replication'), ('18939','33856','replicaset','{#RS_NAME}'), ('18940','33857','component','replication'), ('18941','33857','replicaset','{#RS_NAME}'), ('18942','33858','component','operations'), ('18943','33858','component','replication'), ('18944','33858','replicaset','{#RS_NAME}'), ('18945','33859','component','replication'), ('18946','33859','replicaset','{#RS_NAME}'), ('18947','33860','component','operations'), ('18948','33860','component','replication'), ('18949','33860','replicaset','{#RS_NAME}'), ('18950','33861','component','operations'), ('18951','33861','component','replication'), ('18952','33861','replicaset','{#RS_NAME}'), ('18953','33862','component','network'), ('18954','33862','component','replication'), ('18955','33862','replicaset','{#RS_NAME}'), ('18956','33863','component','replication'), ('18957','33863','replicaset','{#RS_NAME}'), ('18958','33864','component','replication'), ('18959','33864','replicaset','{#RS_NAME}'), ('18960','33865','component','replication'), ('18961','33865','replicaset','{#RS_NAME}'), ('18962','33866','component','replication'), ('18963','33866','replicaset','{#RS_NAME}'), ('18964','33867','component','replication'), ('18965','33867','replicaset','{#RS_NAME}'), ('18966','33868','component','replication'), ('18967','33868','replicaset','{#RS_NAME}'), ('18968','33869','component','cache'), ('18969','33869','component','wired-tiger'), ('18970','33870','component','cache'), ('18971','33870','component','wired-tiger'), ('18972','33871','component','transactions'), ('18973','33871','component','wired-tiger'), ('18974','33872','component','transactions'), ('18975','33872','component','wired-tiger'), ('18976','33873','component','transactions'), ('18977','33873','component','wired-tiger'), ('18978','33874','component','transactions'), ('18979','33874','component','wired-tiger'), ('18980','33875','component','transactions'), ('18981','33875','component','wired-tiger'), ('18982','33876','component','cache'), ('18983','33876','component','wired-tiger'), ('18984','33877','component','cache'), ('18985','33877','component','wired-tiger'), ('18986','33878','component','cache'), ('18987','33878','component','wired-tiger'), ('18988','33879','component','cache'), ('18989','33879','component','wired-tiger'), ('18990','33880','component','cache'), ('18991','33880','component','wired-tiger'), ('18992','33881','component','cache'), ('18993','33881','component','wired-tiger'), ('18994','33882','component','cache'), ('18995','33882','component','wired-tiger'), ('18996','33883','component','cache'), ('18997','33883','component','wired-tiger'), ('18998','33884','component','cache'), ('18999','33884','component','wired-tiger'), ('19000','33885','component','transactions'), ('19001','33885','component','wired-tiger'), ('19002','33886','component','application'), ('19003','33887','component','raw'), ('19004','33888','component','health'), ('19005','33889','component','connections'), ('19006','33889','component','raw'), ('19007','33891','component','operations'), ('19008','33892','component','network'), ('19009','33893','component','network'), ('19010','33894','component','network'), ('19011','33895','component','operations'), ('19012','33896','component','operations'), ('19013','33897','component','memory'), ('19014','33898','component','operations'), ('19015','33899','component','operations'), ('19016','33900','component','operations'), ('19017','33901','component','application'), ('19018','33902','component','cursors'), ('19019','33903','component','application'), ('19020','33904','component','memory'), ('19021','33905','component','connections'), ('19022','33906','component','configserver'), ('19023','33907','component','cursors'), ('19024','33908','component','cursors'), ('19025','33909','component','cursors'), ('19026','33910','component','connections'), ('19027','33911','component','connections'), ('19028','33912','component','connections'), ('19029','33913','component','connections'), ('19030','33914','component','connections'), ('19031','33915','component','connections'), ('19032','33916','component','connections'), ('19033','33917','component','connections'), ('19034','33918','component','connections'), ('19035','33919','component','application'), ('19036','34321','component','configserver'), ('19037','33924','collection','{#COLLECTION}'), ('19038','33924','component','raw'), ('19039','33924','database','{#DBNAME}'), ('19040','33925','component','database'), ('19041','33925','component','raw'), ('19042','33925','database','{#DBNAME}'), ('19043','33926','collection','{#COLLECTION}'), ('19044','33926','component','objects'), ('19045','33926','database','{#DBNAME}'), ('19046','33927','collection','{#COLLECTION}'), ('19047','33927','component','application'), ('19048','33927','database','{#DBNAME}'), ('19049','33928','collection','{#COLLECTION}'), ('19050','33928','component','objects'), ('19051','33928','database','{#DBNAME}'), ('19052','33929','collection','{#COLLECTION}'), ('19053','33929','component','application'), ('19054','33929','database','{#DBNAME}'), ('19055','33930','collection','{#COLLECTION}'), ('19056','33930','component','disk'), ('19057','33930','database','{#DBNAME}'), ('19058','33931','collection','{#COLLECTION}'), ('19059','33931','component','application'), ('19060','33931','database','{#DBNAME}'), ('19061','33932','collection','{#COLLECTION}'), ('19062','33932','component','disk'), ('19063','33932','database','{#DBNAME}'), ('19064','33933','collection','{#COLLECTION}'), ('19065','33933','component','disk'), ('19066','33933','database','{#DBNAME}'), ('19067','33934','component','disk'), ('19068','33934','database','{#DBNAME}'), ('19069','33935','component','collections'), ('19070','33935','database','{#DBNAME}'), ('19071','33936','component','disk'), ('19072','33936','database','{#DBNAME}'), ('19073','33937','component','disk'), ('19074','33937','database','{#DBNAME}'), ('19075','33938','component','objects'), ('19076','33938','database','{#DBNAME}'), ('19077','33939','component','objects'), ('19078','33939','database','{#DBNAME}'), ('19079','33940','component','disk'), ('19080','33940','database','{#DBNAME}'), ('19081','31055','component','raw'), ('19082','31056','component','wait-time'), ('19083','31057','component','network'), ('19084','31058','component','wait-time'), ('19085','31554','component','application'), ('19086','31555','component','application'), ('19087','31556','component','application'), ('19088','34322','component','raw'), ('19089','34323','component','raw'), ('19090','31059','component','wait-time'), ('19091','31060','component','lock'), ('19092','31060','component','performance'), ('19093','31061','component','memory'), ('19094','31062','component','deadlock'), ('19095','31062','component','performance'), ('19096','31063','component','error'), ('19097','31063','component','performance'), ('19098','31064','component','page'), ('19099','31065','component','performance'), ('19100','31066','component','page'), ('19101','31066','component','performance'), ('19102','31067','component','page'), ('19103','31067','component','performance'), ('19104','31068','component','page'), ('19105','31068','component','performance'), ('19106','31069','component','application'), ('19107','31070','component','page'), ('19108','31070','component','performance'), ('19109','31071','component','performance'), ('19110','31072','component','performance'), ('19111','31073','component','performance'), ('19112','31074','component','page'), ('19113','31075','component','memory'), ('19114','31076','component','memory'), ('19115','31077','component','wait-time'), ('19116','31078','component','memory'), ('19117','31079','component','transaction'), ('19118','31080','component','performance'), ('19119','31080','component','transaction'), ('19120','31081','component','performance'), ('19121','31082','component','application'), ('19122','31083','component','application'), ('19123','31084','component','error'), ('19124','31084','component','performance'), ('19125','31085','component','application'), ('19126','31086','component','performance'), ('19127','31087','component','performance'), ('19128','31088','component','cache'), ('19129','31089','component','memory'), ('19130','31090','component','performance'), ('19131','31091','component','wait-time'), ('19132','31092','component','performance'), ('19133','31093','component','wait-time'), ('19134','31094','component','wait-time'), ('19135','31095','component','performance'), ('19136','31096','component','cache'), ('19137','31097','component','cache'), ('19138','31098','component','cache'), ('19139','31099','component','cache'), ('19140','31100','component','cache'), ('19141','31100','component','page'), ('19142','31101','component','page'), ('19143','31101','component','performance'), ('19144','31102','component','application'), ('19145','31103','component','page'), ('19146','31104','component','error'), ('19147','31104','component','performance'), ('19148','31105','component','performance'), ('19149','31106','component','performance'), ('19150','31107','component','performance'), ('19151','31108','component','performance'), ('19152','31109','component','memory'), ('19153','31110','component','performance'), ('19154','31111','component','error'), ('19155','31111','component','performance'), ('19156','31112','component','error'), ('19157','31112','component','performance'), ('19158','31113','component','performance'), ('19159','31113','component','wait-time'), ('19160','31114','component','performance'), ('19161','31115','component','lock'), ('19162','31115','component','performance'), ('19163','31116','component','lock'), ('19164','31116','component','performance'), ('19165','31117','component','lock'), ('19166','31118','component','lock'), ('19167','31118','component','performance'), ('19168','31119','component','log'), ('19169','31120','component','performance'), ('19170','31121','component','log'), ('19192','31137','component','database'), ('19193','31137','database','{#DBNAME}'), ('19194','31138','component','database'), ('19195','31138','database','{#DBNAME}'), ('19196','31139','component','database'), ('19197','31139','database','{#DBNAME}'), ('19198','31140','component','database'), ('19199','31140','database','{#DBNAME}'), ('19200','31141','component','database'), ('19201','31141','database','{#DBNAME}'), ('19202','31142','component','database'), ('19203','31142','database','{#DBNAME}'), ('19204','31143','component','database'), ('19205','31143','database','{#DBNAME}'), ('19206','31144','component','database'), ('19207','31144','database','{#DBNAME}'), ('19208','31145','component','database'), ('19209','31145','database','{#DBNAME}'), ('19210','31146','component','database'), ('19211','31146','database','{#DBNAME}'), ('19212','31147','component','database'), ('19213','31147','database','{#DBNAME}'), ('19214','31148','component','database'), ('19215','31148','database','{#DBNAME}'), ('19216','31149','component','database'), ('19217','31149','database','{#DBNAME}'), ('19218','31150','component','database'), ('19219','31150','database','{#DBNAME}'), ('19266','34325','component','database'), ('19267','34325','database','{#DBNAME}'), ('19268','34326','component','database'), ('19269','34326','database','{#DBNAME}'), ('19270','34327','component','database'), ('19271','34327','database','{#DBNAME}'), ('19272','34328','component','database'), ('19273','34328','database','{#DBNAME}'), ('19274','34329','component','database'), ('19275','34329','database','{#DBNAME}'), ('19276','34330','component','database'), ('19277','34330','database','{#DBNAME}'), ('19278','34331','component','mssql-job'), ('19279','34331','mssql-job','{#JOBNAME}'), ('19280','34332','component','mssql-job'), ('19281','34332','mssql-job','{#JOBNAME}'), ('19282','34333','component','mssql-job'), ('19283','34333','mssql-job','{#JOBNAME}'), ('19284','34334','component','mssql-job'), ('19285','34334','mssql-job','{#JOBNAME}'), ('19286','34335','component','mssql-job'), ('19287','34335','mssql-job','{#JOBNAME}'), ('19288','30431','component','application'), ('19289','30432','component','application'), ('19290','30432','component','health'), ('19291','30433','component','raw'), ('19292','30434','component','memory'), ('19293','30435','component','memory'), ('19294','33126','component','system'), ('19295','30436','component','innodb'), ('19296','30436','component','memory'), ('19297','30437','component','innodb'), ('19298','30437','component','memory'), ('19299','30438','component','innodb'), ('19300','30438','component','tables'), ('19301','30439','component','innodb'), ('19302','30439','component','tables'), ('19303','30440','component','innodb'), ('19304','30440','component','tables'), ('19305','30441','component','connections'), ('19306','30442','component','queries'), ('19307','30443','component','innodb'), ('19308','30443','component','memory'), ('19309','30444','component','queries'), ('19310','30445','component','queries'), ('19311','30446','component','threads'), ('19312','30447','component','threads'), ('19313','30449','component','threads'), ('19314','30450','component','application'), ('19315','30451','component','innodb'), ('19316','30451','component','memory'), ('19317','30452','component','innodb'), ('19318','30452','component','memory'), ('19319','30453','component','network'), ('19320','30454','component','connections'), ('19321','30455','component','network'), ('19322','30456','component','operations'), ('19323','30457','component','operations'), ('19324','30458','component','operations'), ('19325','30459','component','operations'), ('19326','30460','component','connections'), ('19327','30461','component','connections'), ('19328','30462','component','connections'), ('19329','30463','component','innodb'), ('19330','30463','component','memory'), ('19331','30464','component','connections'), ('19332','30465','component','connections'), ('19333','30466','component','connections'), ('19334','30470','component','connections'), ('19335','30471','component','connections'), ('19336','31168','component','threads'), ('19337','31169','component','storage'), ('19338','31169','component','tables'), ('19339','31170','component','storage'), ('19340','31171','component','memory'), ('19341','31171','component','tables'), ('19342','33127','component','innodb'), ('19343','33127','component','memory'), ('19344','33128','component','innodb'), ('19345','33128','component','system'), ('19346','33129','component','system'), ('19347','33130','component','tables'), ('19348','33131','component','tables'), ('19349','33132','component','cache'), ('19350','30474','component','storage'), ('19351','30474','database','{#DBNAME}'), ('19352','30475','component','raw'), ('19353','30476','component','replication'), ('19354','30477','component','replication'), ('19355','30478','component','replication'), ('19356','33134','component','transactions'), ('19357','33135','component','transactions'), ('19358','33136','component','transactions'), ('19359','33137','component','transactions'), ('19360','33138','component','transactions'), ('19361','33139','component','replication'), ('19362','30637','component','application'), ('19363','30638','component','application'), ('19364','30638','component','health'), ('19365','30639','component','raw'), ('19366','30640','component','memory'), ('19367','30641','component','memory'), ('19368','33140','component','system'), ('19369','30642','component','innodb'), ('19370','30642','component','memory'), ('19371','30643','component','innodb'), ('19372','30643','component','memory'), ('19373','30644','component','innodb'), ('19374','30644','component','tables'), ('19375','30645','component','innodb'), ('19376','30645','component','tables'), ('19377','30646','component','innodb'), ('19378','30646','component','tables'), ('19379','30647','component','connections'), ('19380','30648','component','queries'), ('19381','30649','component','innodb'), ('19382','30649','component','memory'), ('19383','30650','component','queries'), ('19384','30651','component','queries'), ('19385','30652','component','threads'), ('19386','30653','component','threads'), ('19387','30655','component','threads'), ('19388','30656','component','application'), ('19389','30657','component','innodb'), ('19390','30657','component','memory'), ('19391','30658','component','innodb'), ('19392','30658','component','memory'), ('19393','30659','component','network'), ('19394','30660','component','connections'), ('19395','30661','component','network'), ('19396','30662','component','operations'), ('19397','30663','component','operations'), ('19398','30664','component','operations'), ('19399','30665','component','operations'), ('19400','30666','component','connections'), ('19401','30667','component','connections'), ('19402','30668','component','connections'), ('19403','30669','component','innodb'), ('19404','30669','component','memory'), ('19405','30670','component','connections'), ('19406','30671','component','connections'), ('19407','30672','component','connections'), ('19408','30676','component','connections'), ('19409','30677','component','connections'), ('19410','31172','component','threads'), ('19411','31173','component','storage'), ('19412','31173','component','tables'), ('19413','31174','component','storage'), ('19414','31175','component','memory'), ('19415','31175','component','tables'), ('19416','33141','component','innodb'), ('19417','33141','component','memory'), ('19418','33142','component','innodb'), ('19419','33142','component','system'), ('19420','33143','component','system'), ('19421','33144','component','tables'), ('19422','33145','component','tables'), ('19423','33146','component','cache'), ('19424','30680','component','storage'), ('19425','30680','database','{#DATABASE}'), ('19426','30681','component','raw'), ('19427','30682','component','replication'), ('19428','30683','component','replication'), ('19429','30684','component','replication'), ('19430','33148','component','transactions'), ('19431','33149','component','transactions'), ('19432','33150','component','transactions'), ('19433','33151','component','transactions'), ('19434','33152','component','transactions'), ('19435','33153','component','replication'), ('19436','30479','component','raw'), ('19437','30480','component','application'), ('19438','30481','component','application'), ('19439','30481','component','health'), ('19440','30482','component','memory'), ('19441','30483','component','memory'), ('19442','33154','component','system'), ('19443','30484','component','innodb'), ('19444','30484','component','tables'), ('19445','30485','component','innodb'), ('19446','30485','component','memory'), ('19447','30486','component','innodb'), ('19448','30486','component','memory'), ('19449','30487','component','innodb'), ('19450','30487','component','memory'), ('19451','30488','component','innodb'), ('19452','30488','component','memory'), ('19453','30489','component','innodb'), ('19454','30489','component','tables'), ('19455','30490','component','innodb'), ('19456','30490','component','tables'), ('19457','30491','component','queries'), ('19458','30492','component','connections'), ('19459','30493','component','innodb'), ('19460','30493','component','memory'), ('19461','30494','component','queries'), ('19462','30495','component','queries'), ('19463','30496','component','threads'), ('19464','30497','component','threads'), ('19465','30499','component','threads'), ('19466','30500','component','innodb'), ('19467','30500','component','memory'), ('19468','30503','component','operations'), ('19469','30504','component','connections'), ('19470','30505','component','connections'), ('19471','30506','component','network'), ('19472','30507','component','network'), ('19473','30508','component','operations'), ('19474','30509','component','operations'), ('19475','30510','component','operations'), ('19476','30512','component','connections'), ('19477','30513','component','connections'), ('19478','30514','component','connections'), ('19479','30515','component','connections'), ('19480','30516','component','connections'), ('19481','30517','component','connections'), ('19482','30518','component','connections'), ('19483','30519','component','application'), ('19484','31176','component','threads'), ('19485','31177','component','storage'), ('19486','31177','component','tables'), ('19487','31178','component','memory'), ('19488','31178','component','tables'), ('19489','31179','component','storage'), ('19490','33155','component','innodb'), ('19491','33155','component','memory'), ('19492','33156','component','innodb'), ('19493','33156','component','system'), ('19494','33157','component','system'), ('19495','33158','component','tables'), ('19496','33159','component','tables'), ('19497','33160','component','cache'), ('19498','30522','component','storage'), ('19499','30522','database','{#DATABASE}'), ('19500','30523','component','raw'), ('19501','30524','component','replication'), ('19502','30525','component','replication'), ('19503','30526','component','replication'), ('19504','33162','component','replication'), ('19505','33163','component','transactions'), ('19506','33164','component','transactions'), ('19507','33165','component','transactions'), ('19508','33166','component','transactions'), ('19509','33167','component','transactions'), ('19510','31684','component','application'), ('19511','31684','component','health'), ('19512','31685','component','datafiles'), ('19513','31686','component','raw'), ('19514','31687','component','system'), ('19515','31688','component','raw'), ('19520','31691','component','raw'), ('19521','31692','component','application'), ('19522','31693','component','raw'), ('19523','31694','component','raw'), ('19524','31695','component','application'), ('19525','31696','component','application'), ('19528','31698','component','raw'), ('19533','31701','component','sessions'), ('19534','31702','component','application'), ('19535','31703','component','sessions'), ('19536','31704','component','sessions'), ('19537','31705','component','sessions'), ('19538','31706','component','sessions'), ('19539','31707','component','application'), ('19540','31708','component','sessions'), ('19541','31709','component','sessions'), ('19542','31710','component','system'), ('19543','31711','component','sessions'), ('19544','31712','component','sessions'), ('19545','31713','component','cache'), ('19546','31713','component','sga'), ('19547','31714','component','memory'), ('19548','31714','component','sga'), ('19549','31715','component','memory'), ('19550','31715','component','sga'), ('19551','31716','component','memory'), ('19552','31716','component','sga'), ('19553','31717','component','memory'), ('19554','31717','component','sga'), ('19555','31718','component','memory'), ('19556','31719','component','application'), ('19557','31720','component','application'), ('19558','31721','component','memory'), ('19559','31721','component','pga'), ('19560','31722','component','memory'), ('19561','31722','component','pga'), ('19562','31723','component','memory'), ('19563','31723','component','pga'), ('19564','31724','component','application'), ('19565','31725','component','application'), ('19566','31726','component','memory'), ('19567','31726','component','sga'), ('19568','31727','component','disk'), ('19569','31728','component','disk'), ('19570','31729','component','fra'), ('19571','31730','component','sessions'), ('19572','31731','component','application'), ('19573','31732','component','cache'), ('19574','31733','component','cache'), ('19575','31734','component','cache'), ('19576','31735','component','cache'), ('19577','31736','component','cpu'), ('19578','31737','component','application'), ('19579','31738','component','datafiles'), ('19580','31739','component','application'), ('19581','31740','component','application'), ('19582','31741','component','fra'), ('19583','31742','component','fra'), ('19584','31743','component','fra'), ('19585','31744','component','fra'), ('19586','31745','component','disk'), ('19587','31746','component','fra'), ('19588','31747','component','cache'), ('19589','31748','component','application'), ('19590','31749','component','application'), ('19591','31750','component','application'), ('19592','31751','component','application'), ('19593','31752','component','cache'), ('19594','31753','component','application'), ('19595','31754','component','application'), ('19596','31755','component','application'), ('19597','31756','component','memory'), ('19598','31756','component','pga'), ('19599','31757','component','memory'), ('19600','31757','component','pga'), ('19601','31758','component','sessions'), ('19602','31759','component','disk'), ('19603','31760','component','application'), ('19658','31183','component','health'), ('19659','31183','component','network'), ('19660','31184','component','application'), ('19661','31185','component','raw'), ('19666','31188','component','raw'), ('19667','31189','component','application'), ('19668','31190','component','sessions'), ('19669','31191','component','disk'), ('19670','31192','component','system'), ('19671','31193','component','system'), ('19672','31194','component','application'), ('19673','31195','component','application'), ('19674','31196','component','application'), ('19675','31197','component','sessions'), ('19676','31198','component','sessions'), ('19677','31199','component','sessions'), ('19678','31200','component','sessions'), ('19679','31201','component','sessions'), ('19680','31202','component','sessions'), ('19681','31203','component','sessions'), ('19682','31204','component','application'), ('19683','31205','component','cache'), ('19684','31205','component','sga'), ('19685','31206','component','disk'), ('19686','31207','component','memory'), ('19687','31207','component','sga'), ('19688','31208','component','memory'), ('19689','31208','component','sga'), ('19690','31209','component','memory'), ('19691','31209','component','sga'), ('19692','31210','component','memory'), ('19693','31210','component','sga'), ('19694','31211','component','memory'), ('19695','31212','component','application'), ('19696','31213','component','application'), ('19697','31214','component','memory'), ('19698','31214','component','pga'), ('19699','31215','component','memory'), ('19700','31215','component','pga'), ('19701','31216','component','memory'), ('19702','31216','component','pga'), ('19703','31217','component','application'), ('19704','31218','component','application'), ('19705','31219','component','memory'), ('19706','31219','component','sga'), ('19707','31220','component','disk'), ('19708','31221','component','disk'), ('19709','31222','component','application'), ('19710','31223','component','sessions'), ('19711','31224','component','sessions'), ('19712','31225','component','sessions'), ('19713','31226','component','application'), ('19714','31227','component','cache'), ('19715','31228','component','cache'), ('19716','31229','component','cache'), ('19717','31230','component','cache'), ('19718','31231','component','cpu'), ('19719','31232','component','application'), ('19720','31233','component','datafiles'), ('19721','31234','component','datafiles'), ('19722','31235','component','application'), ('19723','31236','component','fra'), ('19724','31237','component','memory'), ('19725','31237','component','pga'), ('19726','31238','component','fra'), ('19727','31239','component','fra'), ('19728','31240','component','fra'), ('19729','31241','component','fra'), ('19730','31242','component','fra'), ('19731','31243','component','cache'), ('19732','31244','component','application'), ('19733','31245','component','application'), ('19734','31246','component','application'), ('19735','31247','component','application'), ('19736','31248','component','cache'), ('19737','31249','component','application'), ('19738','31250','component','application'), ('19739','31251','component','memory'), ('19740','31251','component','pga'), ('19741','31252','component','application'), ('19790','32364','component','raw'), ('19791','32365','component','raw'), ('19792','32366','component','application'), ('19793','32366','component','health'), ('19794','32367','component','application'), ('19795','32367','component','health'), ('19796','32368','component','raw'), ('19797','32369','component','replication'), ('19798','32370','component','replication'), ('19799','32371','component','replication'), ('19800','32372','component','replication'), ('19801','32373','component','application'), ('19802','32374','component','cache'), ('19803','32375','component','raw'), ('19804','32376','component','raw'), ('19805','32377','component','application'), ('19806','32378','component','application'), ('19807','32379','component','raw'), ('19808','32380','component','raw'), ('19809','32381','component','transactions'), ('19810','32382','component','transactions'), ('19811','32383','component','transactions'), ('19812','32384','component','transactions'), ('19813','32385','component','wal'), ('19814','32386','component','bgwriter'), ('19815','32387','component','bgwriter'), ('19816','32388','component','bgwriter'), ('19817','32389','component','bgwriter'), ('19818','32390','component','bgwriter'), ('19819','32391','component','bgwriter'), ('19820','32392','component','bgwriter'), ('19821','32393','component','bgwriter'), ('19822','32394','component','bgwriter'), ('19823','32395','component','bgwriter'), ('19824','32396','component','connections'), ('19825','32397','component','connections'), ('19826','32398','component','connections'), ('19827','32399','component','connections'), ('19828','32400','component','connections'), ('19829','32401','component','connections'), ('19830','32402','component','connections'), ('19831','32403','component','wal'), ('19832','32405','component','storage'), ('19833','32405','database','{#DBNAME}'), ('19834','32406','component','raw'), ('19835','32406','database','{#DBNAME}'), ('19836','32407','component','raw'), ('19837','32407','database','{#DBNAME}'), ('19838','32408','component','queries'), ('19839','32408','database','{#DBNAME}'), ('19840','32409','component','locks'), ('19841','32409','database','{#DBNAME}'), ('19842','32410','component','scans'), ('19843','32410','database','{#DBNAME}'), ('19844','32411','component','scans'), ('19845','32411','database','{#DBNAME}'), ('19846','32412','component','queries'), ('19847','32412','database','{#DBNAME}'), ('19848','32413','component','queries'), ('19849','32413','database','{#DBNAME}'), ('19850','32414','component','queries'), ('19851','32414','database','{#DBNAME}'), ('19852','32415','component','queries'), ('19853','32415','database','{#DBNAME}'), ('19854','32416','component','queries'), ('19855','32416','database','{#DBNAME}'), ('19856','32417','component','queries'), ('19857','32417','database','{#DBNAME}'), ('19858','32418','component','queries'), ('19859','32418','database','{#DBNAME}'), ('19860','32419','component','queries'), ('19861','32419','database','{#DBNAME}'), ('19862','32420','component','queries'), ('19863','32420','database','{#DBNAME}'), ('19864','32421','component','storage'), ('19865','32421','database','{#DBNAME}'), ('19866','32422','component','deadlocks'), ('19867','32422','database','{#DBNAME}'), ('19868','32423','component','cache'), ('19869','32423','database','{#DBNAME}'), ('19870','32424','component','transactions'), ('19871','32424','database','{#DBNAME}'), ('19872','32425','component','transactions'), ('19873','32425','database','{#DBNAME}'), ('19874','32426','component','transactions'), ('19875','32426','database','{#DBNAME}'), ('19876','32427','component','queries'), ('19877','32427','database','{#DBNAME}'), ('19878','32428','component','queries'), ('19879','32428','database','{#DBNAME}'), ('19880','32429','component','queries'), ('19881','32429','database','{#DBNAME}'), ('19882','32430','component','queries'), ('19883','32430','database','{#DBNAME}'), ('19884','32431','component','queries'), ('19885','32431','database','{#DBNAME}'), ('19886','32432','component','storage'), ('19887','32432','database','{#DBNAME}'), ('19888','32433','component','storage'), ('19889','32433','database','{#DBNAME}'), ('19890','32434','component','transactions'), ('19891','32434','database','{#DBNAME}'), ('19892','31274','component','raw'), ('19893','31275','component','replication'), ('19894','31276','component','raw'), ('19895','31277','component','raw'), ('19896','31279','component','raw'), ('19897','31280','component','raw'), ('19898','31282','component','application'), ('19899','31282','component','health'), ('19900','31283','component','replication'), ('19901','31284','component','replication'), ('19902','31285','component','replication'), ('19903','31286','component','replication'), ('19904','31287','component','application'), ('19905','31288','component','system'), ('19906','31289','component','raw'), ('19907','31290','component','raw'), ('19908','33172','component','application'), ('19909','33173','component','cache'), ('19910','33174','component','transactions'), ('19911','33175','component','raw'), ('19912','31291','component','queries'), ('19913','31292','component','backends'), ('19914','31293','component','deadlocks'), ('19915','31294','component','storage'), ('19916','31295','component','storage'), ('19917','31296','component','queries'), ('19918','31297','component','archive'), ('19919','31298','component','queries'), ('19920','31299','component','queries'), ('19921','31300','component','queries'), ('19922','31301','component','transactions'), ('19923','31302','component','transactions'), ('19924','31303','component','system'), ('19925','31304','component','wal'), ('19926','31305','component','queries'), ('19927','31306','component','storage'), ('19928','31307','component','storage'), ('19929','31309','component','archive'), ('19930','31310','component','archive'), ('19931','31311','component','bgwriter'), ('19932','31312','component','bgwriter'), ('19933','31313','component','bgwriter'), ('19934','31314','component','bgwriter'), ('19935','31315','component','bgwriter'), ('19936','31316','component','bgwriter'), ('19937','31317','component','bgwriter'), ('19938','31318','component','bgwriter'), ('19939','31319','component','bgwriter'), ('19940','31320','component','connections'), ('19941','31321','component','cache'), ('19942','31322','component','connections'), ('19943','31323','component','connections'), ('19944','31324','component','connections'), ('19945','31325','component','connections'), ('19946','31326','component','connections'), ('19947','31327','component','connections'), ('19948','31328','component','connections'), ('19949','31329','component','connections'), ('19950','31330','component','connections'), ('19951','31331','component','storage'), ('19952','31332','component','archive'), ('19953','31333','component','wal'), ('19954','33176','component','bgwriter'), ('19955','39821','component','wal'), ('19956','31335','component','application'), ('19957','31335','database','{#DBNAME}'), ('19958','31336','component','storage'), ('19959','31336','database','{#DBNAME}'), ('19960','31337','component','tables'), ('19961','31337','database','{#DBNAME}'), ('19962','31338','component','queries'), ('19963','31338','database','{#DBNAME}'), ('19964','31339','component','locks'), ('19965','31339','database','{#DBNAME}'), ('19966','31340','component','locks'), ('19967','31340','database','{#DBNAME}'), ('19968','31341','component','locks'), ('19969','31341','database','{#DBNAME}'), ('19970','31342','component','locks'), ('19971','31342','database','{#DBNAME}'), ('19972','31343','component','locks'), ('19973','31343','database','{#DBNAME}'), ('19974','31344','component','locks'), ('19975','31344','database','{#DBNAME}'), ('19976','31345','component','locks'), ('19977','31345','database','{#DBNAME}'), ('19978','31346','component','locks'), ('19979','31346','database','{#DBNAME}'), ('19980','31347','component','transactions'), ('19981','31347','database','{#DBNAME}'), ('19982','31348','component','transactions'), ('19983','31348','database','{#DBNAME}'), ('19984','31349','component','queries'), ('19985','31349','database','{#DBNAME}'), ('19986','31350','component','queries'), ('19987','31350','database','{#DBNAME}'), ('19988','31351','component','queries'), ('19989','31351','database','{#DBNAME}'), ('19990','31352','component','queries'), ('19991','31352','database','{#DBNAME}'), ('19992','31353','component','storage'), ('19993','31353','database','{#DBNAME}'), ('19994','31354','component','storage'), ('19995','31354','database','{#DBNAME}'), ('19996','31355','component','backends'), ('19997','31355','database','{#DBNAME}'), ('19998','31356','component','deadlocks'), ('19999','31356','database','{#DBNAME}'), ('20000','31357','component','queries'), ('20001','31357','database','{#DBNAME}'), ('20002','31358','component','system'), ('20003','31358','database','{#DBNAME}'), ('20004','31359','component','storage'), ('20005','31359','database','{#DBNAME}'), ('20006','31360','component','cache'), ('20007','31360','database','{#DBNAME}'), ('20008','31361','component','storage'), ('20009','31361','database','{#DBNAME}'), ('20010','31362','component','storage'), ('20011','31362','database','{#DBNAME}'), ('20012','31363','component','locks'), ('20013','31363','database','{#DBNAME}'), ('20014','33178','application','{#APPLICATION_NAME}'), ('20015','33178','component','replication'), ('20016','33179','application','{#APPLICATION_NAME}'), ('20017','33179','component','replication'), ('20018','33180','application','{#APPLICATION_NAME}'), ('20019','33180','component','replication'), ('20020','30273','component','application'), ('20021','30273','component','health'), ('20022','30274','component','application'), ('20023','30275','component','raw'), ('20024','30276','component','raw'), ('20025','30277','component','connections'), ('20026','30278','component','network'), ('20027','30279','component','keys'), ('20028','30280','component','keys'), ('20029','30281','component','application'), ('20030','30282','component','system'), ('20031','30283','component','application'), ('20032','30284','component','operations'), ('20033','30285','component','os'), ('20034','30286','component','replication'), ('20035','30287','component','replication'), ('20036','30288','component','replication'), ('20037','30289','component','network'), ('20038','30290','component','keys'), ('20039','30291','component','network'), ('20040','30292','component','replication'), ('20041','30293','component','keys'), ('20042','30294','component','operations'), ('20043','30295','component','connections'), ('20044','30296','component','subscribes'), ('20045','30297','component','subscribes'), ('20046','30298','component','connections'), ('20047','30299','component','replication'), ('20048','30300','component','replication'), ('20049','30301','component','replication'), ('20050','30302','component','commands'), ('20051','30303','component','connections'), ('20052','30304','component','network'), ('20053','30305','component','replication'), ('20054','30306','component','replication'), ('20055','30307','component','replication'), ('20056','30308','component','memory'), ('20057','30309','component','connections'), ('20058','30310','component','connections'), ('20059','30311','component','system'), ('20060','30312','component','connections'), ('20061','30313','component','cpu'), ('20062','30314','component','cpu'), ('20063','30315','component','cpu'), ('20064','30316','component','cpu'), ('20065','30317','component','memory'), ('20066','30318','component','memory'), ('20067','30319','component','memory'), ('20068','30320','component','memory'), ('20069','30321','component','persistence'), ('20070','30322','component','connections'), ('20071','30323','component','persistence'), ('20072','30324','component','persistence'), ('20073','30325','component','persistence'), ('20074','30326','component','persistence'), ('20075','30327','component','persistence'), ('20076','30328','component','persistence'), ('20077','30329','component','persistence'), ('20078','30330','component','persistence'), ('20079','30331','component','persistence'), ('20080','30332','component','persistence'), ('20081','30333','component','persistence'), ('20082','30334','component','persistence'), ('20083','30335','component','persistence'), ('20084','30336','component','network'), ('20085','30344','component','cpu'), ('20086','30345','component','memory'), ('20087','30346','component','memory'), ('20088','30347','component','system'), ('20089','30348','component','keys'), ('20090','30348','database','{#DB}'), ('20091','30349','component','keys'), ('20092','30349','database','{#DB}'), ('20093','30350','component','keys'), ('20094','30350','database','{#DB}'), ('20095','30351','component','memory'), ('20096','30352','component','persistence'), ('20097','30353','component','cycles'), ('20098','30354','component','keys'), ('20099','30355','component','memory'), ('20100','30356','component','keys'), ('20101','30357','component','keys'), ('20102','30358','component','memory'), ('20103','30359','component','system'), ('20104','30360','component','replication'), ('20105','30361','component','persistence'), ('20106','30362','component','memory'), ('20107','30363','component','memory'), ('20108','30364','component','memory'), ('20109','30365','component','memory'), ('20110','30366','component','memory'), ('20111','30367','component','memory'), ('20112','30368','component','memory'), ('20113','30369','component','memory'), ('20114','30370','component','memory'), ('20115','30371','component','keys'), ('20116','30372','component','memory'), ('20117','30373','component','memory'), ('20118','30374','component','memory'), ('20119','30375','component','memory'), ('20120','30376','component','memory'), ('20121','30376','component','replication'), ('20122','30377','component','memory'), ('20123','30378','component','memory'), ('20124','30379','component','memory'), ('20125','30380','component','memory'), ('20126','30380','component','persistence'), ('20127','30381','component','memory'), ('20128','30382','component','memory'), ('20129','30383','component','memory'), ('20130','30384','component','memory'), ('20131','30385','component','memory'), ('20132','30386','component','memory'), ('20133','30387','component','memory'), ('20134','30388','component','memory'), ('20135','30389','component','persistence'), ('20136','30390','component','persistence'), ('20137','30391','component','persistence'), ('20138','30392','component','persistence'), ('20139','30393','component','persistence'), ('20140','30394','component','persistence'), ('20141','30395','component','persistence'), ('20142','30396','component','replication'), ('20143','30397','component','replication'), ('20144','30398','component','replication'), ('20145','30399','component','replication'), ('20146','30400','component','replication'), ('20147','30401','component','replication'), ('20148','30402','component','replication'), ('20149','30403','component','replication'), ('20150','30404','component','replication'), ('20151','34336','component','raw'), ('20152','34337','component','health'), ('20153','34337','component','raw'), ('20154','34338','component','grpc'), ('20155','34339','component','health'), ('20156','34340','component','application'), ('20157','34341','component','application'), ('20158','34348','component','cluster'), ('20159','34348','component','regions'), ('20160','34349','component','cluster'), ('20161','34349','component','peers'), ('20162','34350','component','cluster'), ('20163','34350','component','storage'), ('20164','34351','component','cluster'), ('20165','34351','component','storage'), ('20166','34352','component','cluster'), ('20167','34352','component','stores'), ('20168','34353','component','cluster'), ('20169','34353','component','stores'), ('20170','34354','component','cluster'), ('20171','34354','component','stores'), ('20172','34355','component','cluster'), ('20173','34355','component','stores'), ('20174','34356','component','cluster'), ('20175','34356','component','stores'), ('20176','34357','component','cluster'), ('20177','34357','component','stores'), ('20178','34358','component','cluster'), ('20179','34358','component','stores'), ('20180','34359','component','grpc'), ('20181','34359','grpc_method','{#GRPC_METHOD}'), ('20182','34360','address','{#STORE_ADDRESS}'), ('20183','34360','component','regions'), ('20184','34361','address','{#STORE_ADDRESS}'), ('20185','34361','component','regions'), ('20186','34362','address','{#STORE_ADDRESS}'), ('20187','34362','component','regions'), ('20188','34363','address','{#STORE_ADDRESS}'), ('20189','34363','component','regions'), ('20190','34364','component','regions'), ('20191','34364','type','{#TYPE}'), ('20192','34365','component','regions'), ('20193','34365','type','{#TYPE}'), ('20194','34366','component','scheduler'), ('20195','34366','scheduler','{#KIND}'), ('20196','34367','component','health'), ('20197','34367','component','raw'), ('20198','34368','component','raw'), ('20199','34369','component','cpu'), ('20200','34370','component','queries'), ('20201','34371','component','application'), ('20202','34372','component','tikv-commands'), ('20203','34373','component','regions'), ('20204','34374','component','tikv-commands'), ('20205','34375','component','tikv-commands'), ('20206','34376','component','server'), ('20207','34377','component','server'), ('20208','34378','component','connections'), ('20209','34379','component','health'), ('20210','34380','component','sql'), ('20211','34381','component','sessions'), ('20212','34382','component','sessions'), ('20213','34383','component','queries'), ('20214','34384','component','queries'), ('20215','34385','component','operations'), ('20216','34386','component','memory'), ('20217','34387','component','fds'), ('20218','34388','component','fds'), ('20219','34389','component','pd-commands'), ('20220','34390','component','pd-commands'), ('20221','34391','component','application'), ('20222','34392','component','health'), ('20223','34393','component','memory'), ('20224','34394','component','goroutines'), ('20225','34395','component','sql'), ('20226','34396','component','domain'), ('20227','34397','component','domain'), ('20228','34398','component','application'), ('20229','34405','component','tikv-commands'), ('20230','34405','type','{#TYPE}'), ('20231','34406','component','queries'), ('20232','34406','type','{#TYPE}'), ('20233','34407','component','queries'), ('20234','34407','type','{#TYPE}'), ('20235','34408','component','sql'), ('20236','34408','type','{#TYPE}'), ('20237','34409','component','tikv-backoff'), ('20238','34409','type','{#TYPE}'), ('20239','34410','component','gc'), ('20240','34410','type','{#TYPE}'), ('20241','34411','component','locks'), ('20242','34411','type','{#TYPE}'), ('20243','34412','component','raw'), ('20244','34413','component','scheduler'), ('20245','34414','component','regions'), ('20246','34415','component','storage'), ('20247','34416','component','storage'), ('20248','34417','component','commands'), ('20249','34418','component','snapshot'), ('20250','34419','component','snapshot'), ('20251','34420','component','snapshot'), ('20252','34421','component','scheduler'), ('20253','34422','component','snapshot'), ('20254','34423','component','scheduler'), ('20255','34424','component','memory'), ('20256','34425','component','regions'), ('20257','34426','component','application'), ('20258','34427','component','scheduler'), ('20259','34428','component','grpc'), ('20260','34429','component','queries'), ('20261','34430','component','storage'), ('20262','34431','component','storage'), ('20263','34432','component','storage'), ('20264','34433','component','cpu'), ('20265','34434','component','coprocessor'), ('20266','34435','component','coprocessor'), ('20267','34436','component','coprocessor'), ('20268','34437','component','coprocessor'), ('20269','34438','component','scheduler'), ('20270','34439','component','application'), ('20271','42676','component','scheduler'), ('20272','42677','component','coprocessor'), ('20273','34444','component','coprocessor'), ('20274','34444','request','{#REQ_TYPE}'), ('20275','34445','component','coprocessor'), ('20276','34445','request','{#REQ_TYPE}'), ('20277','34446','component','coprocessor'), ('20278','34446','request','{#REQ_TYPE}'), ('20279','34447','component','coprocessor'), ('20280','34447','request','{#REQ_TYPE}'), ('20281','34448','component','grpc'), ('20282','34448','type','{#TYPE}'), ('20283','34449','component','scheduler'), ('20284','34449','stage','{#STAGE}'), ('20285','34450','component','stores'), ('20286','34450','message-type','{#TYPE}'), ('20287','34450','store','{#STORE_ID}'), ('20484','27203','component','system'), ('20485','27207','component','memory'), ('20486','27208','component','cpu'), ('20487','30086','component','os'), ('20488','30087','component','memory'), ('20489','30088','component','memory'), ('20490','30089','component','memory'), ('20491','40478','component','health'), ('20492','40478','component','network'), ('20493','40479','component','system'), ('20494','40480','component','system'), ('20495','40481','component','system'), ('20496','40482','component','health'), ('20497','40482','component','network'), ('20498','40483','component','system'), ('20499','40484','component','system'), ('20500','40485','component','system'), ('20501','40486','component','network'), ('20502','40487','component','health'), ('20503','40487','component','network'), ('20504','40488','component','health'), ('20505','40488','component','network'), ('20506','27212','component','temperature'), ('20507','27213','component','fan'), ('20508','27214','component','system'), ('20509','30091','component','power'), ('20510','30092','component','power'), ('20511','40491','component','network'), ('20512','40491','description','{#IFALIAS}'), ('20513','40491','interface','{#IFNAME}'), ('20514','40492','component','network'), ('20515','40492','description','{#IFALIAS}'), ('20516','40492','interface','{#IFNAME}'), ('20517','40493','component','network'), ('20518','40493','description','{#IFALIAS}'), ('20519','40493','interface','{#IFNAME}'), ('20520','40494','component','network'), ('20521','40494','description','{#IFALIAS}'), ('20522','40494','interface','{#IFNAME}'), ('20523','40495','component','network'), ('20524','40495','description','{#IFALIAS}'), ('20525','40495','interface','{#IFNAME}'), ('20526','40496','component','network'), ('20527','40496','description','{#IFALIAS}'), ('20528','40496','interface','{#IFNAME}'), ('20529','40497','component','network'), ('20530','40497','description','{#IFALIAS}'), ('20531','40497','interface','{#IFNAME}'), ('20532','40498','component','network'), ('20533','40498','description','{#IFALIAS}'), ('20534','40498','interface','{#IFNAME}'), ('20535','40499','component','network'), ('20536','40499','description','{#IFALIAS}'), ('20537','40499','interface','{#IFNAME}'), ('20538','40500','component','network'), ('20539','40500','description','{#IFALIAS}'), ('20540','40500','interface','{#IFNAME}'), ('20541','33181','component','raw'), ('20542','40501','component','health'), ('20543','40501','component','network'), ('20544','40502','component','health'), ('20545','40502','component','network'), ('20546','40503','component','health'), ('20547','40503','component','network'), ('20548','40504','component','network'), ('20549','40505','component','system'), ('20550','40506','component','cpu'), ('20551','40507','component','system'), ('20552','40508','component','system'), ('20553','40509','component','system'), ('20554','40510','component','system'), ('20555','40511','component','system'), ('20556','40512','component','health'), ('20557','40512','component','network'), ('20558','28323','component','temperature'), ('20559','28324','component','temperature'), ('20560','28325','component','fan'), ('20561','28326','component','fan'), ('20562','28327','component','system'), ('20563','28328','component','system'), ('20564','28329','component','power'), ('20565','33183','component','voltage'), ('20566','40517','component','network'), ('20567','40517','description','{#IFALIAS}'), ('20568','40517','interface','{#IFNAME}'), ('20569','40518','component','network'), ('20570','40518','description','{#IFALIAS}'), ('20571','40518','interface','{#IFNAME}'), ('20572','40519','component','network'), ('20573','40519','description','{#IFALIAS}'), ('20574','40519','interface','{#IFNAME}'), ('20575','40520','component','network'), ('20576','40520','description','{#IFALIAS}'), ('20577','40520','interface','{#IFNAME}'), ('20578','40521','component','network'), ('20579','40521','description','{#IFALIAS}'), ('20580','40521','interface','{#IFNAME}'), ('20581','40522','component','network'), ('20582','40522','description','{#IFALIAS}'), ('20583','40522','interface','{#IFNAME}'), ('20584','40523','component','network'), ('20585','40523','description','{#IFALIAS}'), ('20586','40523','interface','{#IFNAME}'), ('20587','40524','component','network'), ('20588','40524','description','{#IFALIAS}'), ('20589','40524','interface','{#IFNAME}'), ('20590','40525','component','network'), ('20591','40525','description','{#IFALIAS}'), ('20592','40525','interface','{#IFNAME}'), ('20593','40526','component','network'), ('20594','40526','description','{#IFALIAS}'), ('20595','40526','interface','{#IFNAME}'), ('20596','40527','component','storage'), ('20597','40527','filesystem','{#FSNAME}'), ('20598','40528','component','storage'), ('20599','40528','filesystem','{#FSNAME}'), ('20600','40529','component','storage'), ('20601','40529','filesystem','{#FSNAME}'), ('20602','40530','component','memory'), ('20603','40531','component','memory'), ('20604','40532','component','memory'), ('20605','27236','component','system'), ('20606','27237','component','system'), ('20607','27238','component','system'), ('20608','27240','component','cpu'), ('20609','30093','component','memory'), ('20610','40533','component','health'), ('20611','40533','component','network'), ('20612','40534','component','health'), ('20613','40534','component','network'), ('20614','40535','component','health'), ('20615','40535','component','network'), ('20616','40536','component','network'), ('20617','40537','component','system'), ('20618','40538','component','system'), ('20619','40539','component','system'), ('20620','40540','component','system'), ('20621','40541','component','system'), ('20622','40542','component','system'), ('20623','40543','component','health'), ('20624','40543','component','network'), ('20625','27246','component','temperature'), ('20626','27247','component','temperature'), ('20627','27248','component','power'), ('20628','27249','component','fan'), ('20629','27250','component','fan'), ('20630','40545','component','network'), ('20631','40545','description','{#IFALIAS}'), ('20632','40545','interface','{#IFNAME}'), ('20633','40546','component','network'), ('20634','40546','description','{#IFALIAS}'), ('20635','40546','interface','{#IFNAME}'), ('20636','40547','component','network'), ('20637','40547','description','{#IFALIAS}'), ('20638','40547','interface','{#IFNAME}'), ('20639','40548','component','network'), ('20640','40548','description','{#IFALIAS}'), ('20641','40548','interface','{#IFNAME}'), ('20642','40549','component','network'), ('20643','40549','description','{#IFALIAS}'), ('20644','40549','interface','{#IFNAME}'), ('20645','40550','component','network'), ('20646','40550','description','{#IFALIAS}'), ('20647','40550','interface','{#IFNAME}'), ('20648','40551','component','network'), ('20649','40551','description','{#IFALIAS}'), ('20650','40551','interface','{#IFNAME}'), ('20651','40552','component','network'), ('20652','40552','description','{#IFALIAS}'), ('20653','40552','interface','{#IFNAME}'), ('20654','40553','component','network'), ('20655','40553','description','{#IFALIAS}'), ('20656','40553','interface','{#IFNAME}'), ('20658','27295','component','system'), ('20659','27296','component','system'), ('20660','27297','component','system'), ('20662','40554','component','health'), ('20663','40554','component','network'), ('20664','40555','component','health'), ('20665','40555','component','network'), ('20666','40556','component','health'), ('20667','40556','component','network'), ('20668','40557','component','network'), ('20669','40558','component','system'), ('20670','40559','component','cpu'), ('20671','40560','component','system'), ('20672','40561','component','system'), ('20673','40562','component','system'), ('20674','40563','component','system'), ('20675','40564','component','system'), ('20676','40565','component','memory'), ('20677','40566','component','health'), ('20678','40566','component','network'), ('20679','40567','component','health'), ('20680','40567','component','network'), ('20681','40568','component','health'), ('20682','40568','component','network'), ('20683','40569','component','health'), ('20684','40569','component','network'), ('20685','40570','component','network'), ('20686','40571','component','system'), ('20687','40572','component','cpu'), ('20688','40573','component','system'), ('20689','40574','component','system'), ('20690','40575','component','system'), ('20691','40576','component','system'), ('20692','40577','component','system'), ('20693','40578','component','memory'), ('20694','40579','component','health'), ('20695','40579','component','network'), ('20696','27312','component','power'), ('20697','27313','component','fan'), ('20698','27314','component','temperature'), ('20699','27315','component','temperature'), ('20700','27316','component','power'), ('20701','27317','component','fan'), ('20702','27318','component','temperature'), ('20703','27319','component','system'), ('20704','27320','component','system'), ('20705','40582','component','network'), ('20706','40582','description','{#IFALIAS}'), ('20707','40582','interface','{#IFNAME}'), ('20708','40583','component','network'), ('20709','40583','description','{#IFALIAS}'), ('20710','40583','interface','{#IFNAME}'), ('20711','40584','component','network'), ('20712','40584','description','{#IFALIAS}'), ('20713','40584','interface','{#IFNAME}'), ('20714','40585','component','network'), ('20715','40585','description','{#IFALIAS}'), ('20716','40585','interface','{#IFNAME}'), ('20717','40586','component','network'), ('20718','40586','description','{#IFALIAS}'), ('20719','40586','interface','{#IFNAME}'), ('20720','40587','component','network'), ('20721','40587','description','{#IFALIAS}'), ('20722','40587','interface','{#IFNAME}'), ('20723','40588','component','network'), ('20724','40588','description','{#IFALIAS}'), ('20725','40588','interface','{#IFNAME}'), ('20726','40589','component','network'), ('20727','40589','description','{#IFALIAS}'), ('20728','40589','interface','{#IFNAME}'), ('20729','40590','component','network'), ('20730','40590','description','{#IFALIAS}'), ('20731','40590','interface','{#IFNAME}'), ('20732','40591','component','network'), ('20733','40591','description','{#IFALIAS}'), ('20734','40591','interface','{#IFNAME}'), ('20735','40592','component','network'), ('20736','40592','description','{#IFALIAS}'), ('20737','40592','interface','{#IFNAME}'), ('20738','40593','component','network'), ('20739','40593','description','{#IFALIAS}'), ('20740','40593','interface','{#IFNAME}'), ('20741','40594','component','network'), ('20742','40594','description','{#IFALIAS}'), ('20743','40594','interface','{#IFNAME}'), ('20744','40595','component','network'), ('20745','40595','description','{#IFALIAS}'), ('20746','40595','interface','{#IFNAME}'), ('20747','40596','component','network'), ('20748','40596','description','{#IFALIAS}'), ('20749','40596','interface','{#IFNAME}'), ('20750','40597','component','network'), ('20751','40597','description','{#IFALIAS}'), ('20752','40597','interface','{#IFNAME}'), ('20753','40598','component','network'), ('20754','40598','description','{#IFALIAS}'), ('20755','40598','interface','{#IFNAME}'), ('20756','40599','component','network'), ('20757','40599','description','{#IFALIAS}'), ('20758','40599','interface','{#IFNAME}'), ('20759','35358','component','system'), ('20760','35359','component','system'), ('20761','35360','component','system'), ('20762','35361','component','system'), ('20763','35362','component','system'), ('20764','35363','component','application'), ('20765','35363','component','network'), ('20766','35369','component','cpu'), ('20767','35370','component','memory'), ('20768','35371','component','memory'), ('20769','35372','component','memory'), ('20770','35373','component','interface'), ('20771','35373','description','{#CISCO.IF.DESC}'), ('20772','35373','interface','{#CISCO.IF.NAME}'), ('20773','35374','component','interface'), ('20774','35374','description','{#CISCO.IF.DESC}'), ('20775','35374','interface','{#CISCO.IF.NAME}'), ('20776','35375','component','interface'), ('20777','35375','description','{#CISCO.IF.DESC}'), ('20778','35375','interface','{#CISCO.IF.NAME}'), ('20779','35376','component','interface'), ('20780','35376','description','{#CISCO.IF.DESC}'), ('20781','35376','interface','{#CISCO.IF.NAME}'), ('20782','35377','component','interface'), ('20783','35377','description','{#CISCO.IF.DESC}'), ('20784','35377','interface','{#CISCO.IF.NAME}'), ('20785','35378','component','interface'), ('20786','35378','description','{#CISCO.IF.DESC}'), ('20787','35378','interface','{#CISCO.IF.NAME}'), ('20788','35379','component','interface'), ('20789','35379','description','{#CISCO.IF.DESC}'), ('20790','35379','interface','{#CISCO.IF.NAME}'), ('20791','35380','component','interface'), ('20792','35380','description','{#CISCO.IF.DESC}'), ('20793','35380','interface','{#CISCO.IF.NAME}'), ('20794','35381','component','interface'), ('20795','35381','description','{#CISCO.IF.DESC}'), ('20796','35381','interface','{#CISCO.IF.NAME}'), ('20797','35382','component','interface'), ('20798','35382','description','{#CISCO.IF.DESC}'), ('20799','35382','interface','{#CISCO.IF.NAME}'), ('20800','35383','component','interface'), ('20801','35383','description','{#CISCO.IF.DESC}'), ('20802','35383','interface','{#CISCO.IF.NAME}'), ('20803','35384','component','interface'), ('20804','35384','description','{#CISCO.IF.DESC}'), ('20805','35384','interface','{#CISCO.IF.NAME}'), ('20806','35385','component','interface'), ('20807','35385','description','{#CISCO.IF.DESC}'), ('20808','35385','interface','{#CISCO.IF.NAME}'), ('20809','35386','component','interface'), ('20810','35386','description','{#CISCO.IF.DESC}'), ('20811','35386','interface','{#CISCO.IF.NAME}'), ('20812','35387','component','interface'), ('20813','35387','description','{#CISCO.IF.DESC}'), ('20814','35387','interface','{#CISCO.IF.NAME}'), ('20815','35388','component','physical'), ('20816','35388','physical','{#CISCO.ASAV.PHYS.NAME}'), ('20817','35389','component','physical'), ('20818','35389','physical','{#CISCO.ASAV.PHYS.NAME}'), ('20819','35390','component','physical'), ('20820','35390','physical','{#CISCO.ASAV.PHYS.NAME}'), ('20821','35391','component','physical'), ('20822','35391','physical','{#CISCO.ASAV.PHYS.NAME}'), ('20823','35392','component','physical'), ('20824','35392','physical','{#CISCO.ASAV.PHYS.NAME}'), ('20825','35393','component','physical'), ('20826','35393','physical','{#CISCO.ASAV.PHYS.NAME}'), ('20827','35394','component','physical'), ('20828','35394','physical','{#CISCO.ASAV.PHYS.NAME}'), ('20829','35395','component','physical'), ('20830','35395','physical','{#CISCO.ASAV.PHYS.NAME}'), ('20831','35396','component','session'), ('20832','35396','session-index','{#CISCO.CRAS.INDEX}'), ('20833','35396','session-user','{#CISCO.CRAS.USER}'), ('20834','35397','component','session'), ('20835','35397','session-index','{#CISCO.CRAS.INDEX}'), ('20836','35397','session-user','{#CISCO.CRAS.USER}'), ('20837','35398','component','session'), ('20838','35398','session-index','{#CISCO.CRAS.INDEX}'), ('20839','35398','session-user','{#CISCO.CRAS.USER}'), ('20840','35399','component','session'), ('20841','35399','session-index','{#CISCO.CRAS.INDEX}'), ('20842','35399','session-user','{#CISCO.CRAS.USER}'), ('20843','35400','component','session'), ('20844','35400','session-index','{#CISCO.CRAS.INDEX}'), ('20845','35400','session-user','{#CISCO.CRAS.USER}'), ('20846','35401','component','session'), ('20847','35401','session-index','{#CISCO.CRAS.INDEX}'), ('20848','35401','session-user','{#CISCO.CRAS.USER}'), ('20849','35402','component','session'), ('20850','35402','session-index','{#CISCO.CRAS.INDEX}'), ('20851','35402','session-user','{#CISCO.CRAS.USER}'), ('20852','35403','component','session'), ('20853','35403','session-index','{#CISCO.CRAS.INDEX}'), ('20854','35403','session-user','{#CISCO.CRAS.USER}'), ('20855','35404','component','session'), ('20856','35404','session-index','{#CISCO.CRAS.INDEX}'), ('20857','35404','session-user','{#CISCO.CRAS.USER}'), ('20858','35405','component','session'), ('20859','35405','session-index','{#CISCO.CRAS.INDEX}'), ('20860','35405','session-user','{#CISCO.CRAS.USER}'), ('20861','33944','component','health'), ('20862','33944','component','network'), ('20863','33945','component','health'), ('20864','33945','component','network'), ('20865','33946','component','health'), ('20866','33946','component','network'), ('20867','33947','component','system'), ('20868','33948','component','system'), ('20869','33949','component','system'), ('20870','33950','component','system'), ('20871','33951','component','system'), ('20872','33952','component','system'), ('20873','33953','component','system'), ('20874','33954','component','system'), ('20875','33955','component','system'), ('20876','33956','component','system'), ('20877','33957','component','system'), ('20878','33966','component','cpu'), ('20879','33966','cpu-index','{#SNMPINDEX}'), ('20880','33967','component','serial-number'), ('20881','33967','entity','{#ENT_NAME}'), ('20882','33968','component','fan'), ('20883','33968','fan','{#SNMPVALUE}'), ('20884','33969','component','memory'), ('20885','33969','memory','{#SNMPVALUE}'), ('20886','33970','component','memory'), ('20887','33970','memory','{#SNMPVALUE}'), ('20888','33971','component','memory'), ('20889','33971','memory','{#SNMPVALUE}'), ('20890','33972','component','interface'), ('20891','33972','description','{#IFALIAS}'), ('20892','33972','interface','{#IFNAME}'), ('20893','33973','component','interface'), ('20894','33973','description','{#IFALIAS}'), ('20895','33973','interface','{#IFNAME}'), ('20896','33974','component','interface'), ('20897','33974','description','{#IFALIAS}'), ('20898','33974','interface','{#IFNAME}'), ('20899','33975','component','interface'), ('20900','33975','description','{#IFALIAS}'), ('20901','33975','interface','{#IFNAME}'), ('20902','33976','component','interface'), ('20903','33976','description','{#IFALIAS}'), ('20904','33976','interface','{#IFNAME}'), ('20905','33977','component','interface'), ('20906','33977','description','{#IFALIAS}'), ('20907','33977','interface','{#IFNAME}'), ('20908','33978','component','interface'), ('20909','33978','description','{#IFALIAS}'), ('20910','33978','interface','{#IFNAME}'), ('20911','33979','component','interface'), ('20912','33979','description','{#IFALIAS}'), ('20913','33979','interface','{#IFNAME}'), ('20914','33980','component','interface'), ('20915','33980','description','{#IFALIAS}'), ('20916','33980','interface','{#IFNAME}'), ('20917','33981','component','interface'), ('20918','33981','description','{#IFALIAS}'), ('20919','33981','interface','{#IFNAME}'), ('20920','33982','component','power'), ('20921','33982','power-supply','{#SNMPVALUE}'), ('20922','33983','component','temperature'), ('20923','33983','sensor','{#SNMPVALUE}'), ('20924','33984','component','temperature'), ('20925','33984','sensor','{#SNMPVALUE}'), ('20926','33985','component','health'), ('20927','33985','component','network'), ('20928','33986','component','health'), ('20929','33986','component','network'), ('20930','33987','component','health'), ('20931','33987','component','network'), ('20932','33988','component','system'), ('20933','33989','component','system'), ('20934','33990','component','system'), ('20935','33991','component','system'), ('20936','33992','component','system'), ('20937','33993','component','system'), ('20938','33994','component','system'), ('20939','33995','component','system'), ('20940','33996','component','system'), ('20941','33997','component','system'), ('20942','33998','component','system'), ('20943','34007','component','cpu'), ('20944','34007','cpu-index','{#SNMPINDEX}'), ('20945','34008','component','serial-number'), ('20946','34008','entity','{#ENT_NAME}'), ('20947','34009','component','fan'), ('20948','34009','fan','{#SNMPVALUE}'), ('20949','34010','component','memory'), ('20950','34010','memory','{#SNMPVALUE}'), ('20951','34011','component','memory'), ('20952','34011','memory','{#SNMPVALUE}'), ('20953','34012','component','memory'), ('20954','34012','memory','{#SNMPVALUE}'), ('20955','34013','component','interface'), ('20956','34013','description','{#IFALIAS}'), ('20957','34013','interface','{#IFNAME}'), ('20958','34014','component','interface'), ('20959','34014','description','{#IFALIAS}'), ('20960','34014','interface','{#IFNAME}'), ('20961','34015','component','interface'), ('20962','34015','description','{#IFALIAS}'), ('20963','34015','interface','{#IFNAME}'), ('20964','34016','component','interface'), ('20965','34016','description','{#IFALIAS}'), ('20966','34016','interface','{#IFNAME}'), ('20967','34017','component','interface'), ('20968','34017','description','{#IFALIAS}'), ('20969','34017','interface','{#IFNAME}'), ('20970','34018','component','interface'), ('20971','34018','description','{#IFALIAS}'), ('20972','34018','interface','{#IFNAME}'), ('20973','34019','component','interface'), ('20974','34019','description','{#IFALIAS}'), ('20975','34019','interface','{#IFNAME}'), ('20976','34020','component','interface'), ('20977','34020','description','{#IFALIAS}'), ('20978','34020','interface','{#IFNAME}'), ('20979','34021','component','interface'), ('20980','34021','description','{#IFALIAS}'), ('20981','34021','interface','{#IFNAME}'), ('20982','34022','component','interface'), ('20983','34022','description','{#IFALIAS}'), ('20984','34022','interface','{#IFNAME}'), ('20985','34023','component','power'), ('20986','34023','power-supply','{#SNMPVALUE}'), ('20987','34024','component','temperature'), ('20988','34024','sensor','{#SNMPVALUE}'), ('20989','34025','component','temperature'), ('20990','34025','sensor','{#SNMPVALUE}'), ('20991','34026','component','health'), ('20992','34026','component','network'), ('20993','34027','component','health'), ('20994','34027','component','network'), ('20995','34028','component','health'), ('20996','34028','component','network'), ('20997','34029','component','system'), ('20998','34030','component','system'), ('20999','34031','component','system'), ('21000','34032','component','system'), ('21001','34033','component','system'), ('21002','34034','component','system'), ('21003','34035','component','system'), ('21004','34036','component','system'), ('21005','34037','component','system'), ('21006','34038','component','system'), ('21007','34039','component','system'), ('21008','34048','component','cpu'), ('21009','34048','cpu-index','{#SNMPINDEX}'), ('21010','34049','component','serial-number'), ('21011','34049','entity','{#ENT_NAME}'), ('21012','34050','component','fan'), ('21013','34050','fan','{#SNMPVALUE}'), ('21014','34051','component','memory'), ('21015','34051','memory','{#SNMPVALUE}'), ('21016','34052','component','memory'), ('21017','34052','memory','{#SNMPVALUE}'), ('21018','34053','component','memory'), ('21019','34053','memory','{#SNMPVALUE}'), ('21020','34054','component','interface'), ('21021','34054','description','{#IFALIAS}'), ('21022','34054','interface','{#IFNAME}'), ('21023','34055','component','interface'), ('21024','34055','description','{#IFALIAS}'), ('21025','34055','interface','{#IFNAME}'), ('21026','34056','component','interface'), ('21027','34056','description','{#IFALIAS}'), ('21028','34056','interface','{#IFNAME}'), ('21029','34057','component','interface'), ('21030','34057','description','{#IFALIAS}'), ('21031','34057','interface','{#IFNAME}'), ('21032','34058','component','interface'), ('21033','34058','description','{#IFALIAS}'), ('21034','34058','interface','{#IFNAME}'), ('21035','34059','component','interface'), ('21036','34059','description','{#IFALIAS}'), ('21037','34059','interface','{#IFNAME}'), ('21038','34060','component','interface'), ('21039','34060','description','{#IFALIAS}'), ('21040','34060','interface','{#IFNAME}'), ('21041','34061','component','interface'), ('21042','34061','description','{#IFALIAS}'), ('21043','34061','interface','{#IFNAME}'), ('21044','34062','component','interface'), ('21045','34062','description','{#IFALIAS}'), ('21046','34062','interface','{#IFNAME}'), ('21047','34063','component','interface'), ('21048','34063','description','{#IFALIAS}'), ('21049','34063','interface','{#IFNAME}'), ('21050','34064','component','power'), ('21051','34064','power-supply','{#SNMPVALUE}'), ('21052','34065','component','temperature'), ('21053','34065','sensor','{#SNMPVALUE}'), ('21054','34066','component','temperature'), ('21055','34066','sensor','{#SNMPVALUE}'), ('21056','34067','component','health'), ('21057','34067','component','network'), ('21058','34068','component','health'), ('21059','34068','component','network'), ('21060','34069','component','health'), ('21061','34069','component','network'), ('21062','34070','component','system'), ('21063','34071','component','system'), ('21064','34072','component','system'), ('21065','34073','component','system'), ('21066','34074','component','system'), ('21067','34075','component','system'), ('21068','34076','component','system'), ('21069','34077','component','system'), ('21070','34078','component','system'), ('21071','34079','component','system'), ('21072','34080','component','system'), ('21073','34089','component','cpu'), ('21074','34089','cpu-index','{#SNMPINDEX}'), ('21075','34090','component','serial-number'), ('21076','34090','entity','{#ENT_NAME}'), ('21077','34091','component','fan'), ('21078','34091','fan','{#SNMPVALUE}'), ('21079','34092','component','memory'), ('21080','34092','memory','{#SNMPVALUE}'), ('21081','34093','component','memory'), ('21082','34093','memory','{#SNMPVALUE}'), ('21083','34094','component','memory'), ('21084','34094','memory','{#SNMPVALUE}'), ('21085','34095','component','interface'), ('21086','34095','description','{#IFALIAS}'), ('21087','34095','interface','{#IFNAME}'), ('21088','34096','component','interface'), ('21089','34096','description','{#IFALIAS}'), ('21090','34096','interface','{#IFNAME}'), ('21091','34097','component','interface'), ('21092','34097','description','{#IFALIAS}'), ('21093','34097','interface','{#IFNAME}'), ('21094','34098','component','interface'), ('21095','34098','description','{#IFALIAS}'), ('21096','34098','interface','{#IFNAME}'), ('21097','34099','component','interface'), ('21098','34099','description','{#IFALIAS}'), ('21099','34099','interface','{#IFNAME}'), ('21100','34100','component','interface'), ('21101','34100','description','{#IFALIAS}'), ('21102','34100','interface','{#IFNAME}'), ('21103','34101','component','interface'), ('21104','34101','description','{#IFALIAS}'), ('21105','34101','interface','{#IFNAME}'), ('21106','34102','component','interface'), ('21107','34102','description','{#IFALIAS}'), ('21108','34102','interface','{#IFNAME}'), ('21109','34103','component','interface'), ('21110','34103','description','{#IFALIAS}'), ('21111','34103','interface','{#IFNAME}'), ('21112','34104','component','interface'), ('21113','34104','description','{#IFALIAS}'), ('21114','34104','interface','{#IFNAME}'), ('21115','34105','component','power'), ('21116','34105','power-supply','{#SNMPVALUE}'), ('21117','34106','component','temperature'), ('21118','34106','sensor','{#SNMPVALUE}'), ('21119','34107','component','temperature'), ('21120','34107','sensor','{#SNMPVALUE}'), ('21121','34108','component','health'), ('21122','34108','component','network'), ('21123','34109','component','health'), ('21124','34109','component','network'), ('21125','34110','component','health'), ('21126','34110','component','network'), ('21127','34111','component','system'), ('21128','34112','component','system'), ('21129','34113','component','system'), ('21130','34114','component','system'), ('21131','34115','component','system'), ('21132','34116','component','system'), ('21133','34117','component','system'), ('21134','34118','component','system'), ('21135','34119','component','system'), ('21136','34120','component','system'), ('21137','34121','component','system'), ('21138','34130','component','cpu'), ('21139','34130','cpu-index','{#SNMPINDEX}'), ('21140','34131','component','serial-number'), ('21141','34131','entity','{#ENT_NAME}'), ('21142','34132','component','fan'), ('21143','34132','fan','{#SNMPVALUE}'), ('21144','34133','component','memory'), ('21145','34133','memory','{#SNMPVALUE}'), ('21146','34134','component','memory'), ('21147','34134','memory','{#SNMPVALUE}'), ('21148','34135','component','memory'), ('21149','34135','memory','{#SNMPVALUE}'), ('21150','34136','component','interface'), ('21151','34136','description','{#IFALIAS}'), ('21152','34136','interface','{#IFNAME}'), ('21153','34137','component','interface'), ('21154','34137','description','{#IFALIAS}'), ('21155','34137','interface','{#IFNAME}'), ('21156','34138','component','interface'), ('21157','34138','description','{#IFALIAS}'), ('21158','34138','interface','{#IFNAME}'), ('21159','34139','component','interface'), ('21160','34139','description','{#IFALIAS}'), ('21161','34139','interface','{#IFNAME}'), ('21162','34140','component','interface'), ('21163','34140','description','{#IFALIAS}'), ('21164','34140','interface','{#IFNAME}'), ('21165','34141','component','interface'), ('21166','34141','description','{#IFALIAS}'), ('21167','34141','interface','{#IFNAME}'), ('21168','34142','component','interface'), ('21169','34142','description','{#IFALIAS}'), ('21170','34142','interface','{#IFNAME}'), ('21171','34143','component','interface'), ('21172','34143','description','{#IFALIAS}'), ('21173','34143','interface','{#IFNAME}'), ('21174','34144','component','interface'), ('21175','34144','description','{#IFALIAS}'), ('21176','34144','interface','{#IFNAME}'), ('21177','34145','component','interface'), ('21178','34145','description','{#IFALIAS}'), ('21179','34145','interface','{#IFNAME}'), ('21180','34146','component','power'), ('21181','34146','power-supply','{#SNMPVALUE}'), ('21182','34147','component','temperature'), ('21183','34147','sensor','{#SNMPVALUE}'), ('21184','34148','component','temperature'), ('21185','34148','sensor','{#SNMPVALUE}'), ('21190','40600','component','health'), ('21191','40600','component','network'), ('21192','40601','component','health'), ('21193','40601','component','network'), ('21194','40602','component','health'), ('21195','40602','component','network'), ('21196','40603','component','network'), ('21197','40604','component','system'), ('21198','40605','component','cpu'), ('21199','40606','component','system'), ('21200','40607','component','system'), ('21201','40608','component','system'), ('21202','40609','component','system'), ('21203','40610','component','system'), ('21204','40611','component','system'), ('21205','40612','component','os'), ('21206','40613','component','system'), ('21207','40614','component','health'), ('21208','40614','component','network'), ('21209','40615','component','health'), ('21210','40615','component','network'), ('21211','40616','component','health'), ('21212','40616','component','network'), ('21213','40617','component','health'), ('21214','40617','component','network'), ('21215','40618','component','network'), ('21216','40619','component','system'), ('21217','40620','component','system'), ('21218','40621','component','system'), ('21219','40622','component','system'), ('21220','40623','component','system'), ('21221','40624','component','system'), ('21222','40625','component','system'), ('21223','40626','component','os'), ('21224','40627','component','system'), ('21225','40628','component','health'), ('21226','40628','component','network'), ('21227','40629','component','health'), ('21228','40629','component','network'), ('21229','40630','component','health'), ('21230','40630','component','network'), ('21231','40631','component','health'), ('21232','40631','component','network'), ('21233','40632','component','network'), ('21234','40633','component','system'), ('21235','40634','component','system'), ('21236','40635','component','system'), ('21237','40636','component','system'), ('21238','40637','component','system'), ('21239','40638','component','system'), ('21240','40639','component','system'), ('21241','40640','component','os'), ('21242','40641','component','system'), ('21243','40642','component','health'), ('21244','40642','component','network'), ('21255','40663','component','system'), ('21256','40664','component','fan'), ('21257','40665','component','memory'), ('21258','40666','component','memory'), ('21259','40667','component','memory'), ('21260','40668','component','power'), ('21261','40669','component','temperature'), ('21262','40670','component','temperature'), ('21263','40671','component','cpu'), ('21264','40672','component','system'), ('21265','40673','component','fan'), ('21266','40674','component','memory'), ('21267','40675','component','memory'), ('21268','40676','component','memory'), ('21269','40677','component','network'), ('21270','40677','description','{#IFALIAS}'), ('21271','40677','interface','{#IFNAME}'), ('21272','40678','component','network'), ('21273','40678','description','{#IFALIAS}'), ('21274','40678','interface','{#IFNAME}'), ('21275','40679','component','network'), ('21276','40679','description','{#IFALIAS}'), ('21277','40679','interface','{#IFNAME}'), ('21278','40680','component','network'), ('21279','40680','description','{#IFALIAS}'), ('21280','40680','interface','{#IFNAME}'), ('21281','40681','component','network'), ('21282','40681','description','{#IFALIAS}'), ('21283','40681','interface','{#IFNAME}'), ('21284','40682','component','network'), ('21285','40682','description','{#IFALIAS}'), ('21286','40682','interface','{#IFNAME}'), ('21287','40683','component','network'), ('21288','40683','description','{#IFALIAS}'), ('21289','40683','interface','{#IFNAME}'), ('21290','40684','component','network'), ('21291','40684','description','{#IFALIAS}'), ('21292','40684','interface','{#IFNAME}'), ('21293','40685','component','network'), ('21294','40685','description','{#IFALIAS}'), ('21295','40685','interface','{#IFNAME}'), ('21296','40686','component','network'), ('21297','40686','description','{#IFALIAS}'), ('21298','40686','interface','{#IFNAME}'), ('21299','40687','component','power'), ('21300','40688','component','temperature'), ('21301','40689','component','temperature'), ('21302','40690','component','cpu'), ('21303','40691','component','system'), ('21304','40692','component','fan'), ('21305','40693','component','memory'), ('21306','40694','component','memory'), ('21307','40695','component','memory'), ('21308','40696','component','network'), ('21309','40696','description','{#IFALIAS}'), ('21310','40696','interface','{#IFNAME}'), ('21311','40697','component','network'), ('21312','40697','description','{#IFALIAS}'), ('21313','40697','interface','{#IFNAME}'), ('21314','40698','component','network'), ('21315','40698','description','{#IFALIAS}'), ('21316','40698','interface','{#IFNAME}'), ('21317','40699','component','network'), ('21318','40699','description','{#IFALIAS}'), ('21319','40699','interface','{#IFNAME}'), ('21320','40700','component','network'), ('21321','40700','description','{#IFALIAS}'), ('21322','40700','interface','{#IFNAME}'), ('21323','40701','component','network'), ('21324','40701','description','{#IFALIAS}'), ('21325','40701','interface','{#IFNAME}'), ('21326','40702','component','network'), ('21327','40702','description','{#IFALIAS}'), ('21328','40702','interface','{#IFNAME}'), ('21329','40703','component','network'), ('21330','40703','description','{#IFALIAS}'), ('21331','40703','interface','{#IFNAME}'), ('21332','40704','component','network'), ('21333','40704','description','{#IFALIAS}'), ('21334','40704','interface','{#IFNAME}'), ('21335','40705','component','power'), ('21336','40706','component','temperature'), ('21337','40707','component','temperature'), ('21338','40708','component','health'), ('21339','40708','component','network'), ('21340','40709','component','health'), ('21341','40709','component','network'), ('21342','40710','component','health'), ('21343','40710','component','network'), ('21344','40711','component','network'), ('21345','40712','component','system'), ('21346','40713','component','system'), ('21347','40714','component','system'), ('21348','40715','component','system'), ('21349','40716','component','system'), ('21350','40717','component','system'), ('21351','40718','component','health'), ('21352','40718','component','network'), ('21353','27478','component','cpu'), ('21354','27479','component','power'), ('21355','27480','component','fan'), ('21356','27481','component','os'), ('21357','27482','component','system'), ('21358','27483','component','system'), ('21359','27484','component','system'), ('21360','27485','component','temperature'), ('21361','30105','component','memory'), ('21362','40721','component','network'), ('21363','40721','description','{#IFALIAS}'), ('21364','40721','interface','{#IFNAME}'), ('21365','40722','component','network'), ('21366','40722','description','{#IFALIAS}'), ('21367','40722','interface','{#IFNAME}'), ('21368','40723','component','network'), ('21369','40723','description','{#IFALIAS}'), ('21370','40723','interface','{#IFNAME}'), ('21371','40724','component','network'), ('21372','40724','description','{#IFALIAS}'), ('21373','40724','interface','{#IFNAME}'), ('21374','40725','component','network'), ('21375','40725','description','{#IFALIAS}'), ('21376','40725','interface','{#IFNAME}'), ('21377','40726','component','network'), ('21378','40726','description','{#IFALIAS}'), ('21379','40726','interface','{#IFNAME}'), ('21380','40727','component','network'), ('21381','40727','description','{#IFALIAS}'), ('21382','40727','interface','{#IFNAME}'), ('21383','40728','component','network'), ('21384','40728','description','{#IFALIAS}'), ('21385','40728','interface','{#IFNAME}'), ('21386','40729','component','network'), ('21387','40729','description','{#IFALIAS}'), ('21388','40729','interface','{#IFNAME}'), ('21389','40730','component','network'), ('21390','40730','description','{#IFALIAS}'), ('21391','40730','interface','{#IFNAME}'), ('21392','27508','component','system'), ('21393','27509','component','system'), ('21394','27510','component','system'), ('21395','27511','component','cpu'), ('21396','30106','component','os'), ('21397','40731','component','health'), ('21398','40731','component','network'), ('21399','40732','component','health'), ('21400','40732','component','network'), ('21401','40733','component','health'), ('21402','40733','component','network'), ('21403','40734','component','network'), ('21404','40735','component','system'), ('21405','40736','component','system'), ('21406','40737','component','system'), ('21407','40738','component','system'), ('21408','40739','component','system'), ('21409','40740','component','system'), ('21410','40741','component','health'), ('21411','40741','component','network'), ('21412','27517','component','temperature'), ('21413','27518','component','power'), ('21414','27519','component','fan'), ('21415','30107','component','memory'), ('21416','40743','component','network'), ('21417','40743','description','{#IFALIAS}'), ('21418','40743','interface','{#IFNAME}'), ('21419','40744','component','network'), ('21420','40744','description','{#IFALIAS}'), ('21421','40744','interface','{#IFNAME}'), ('21422','40745','component','network'), ('21423','40745','description','{#IFALIAS}'), ('21424','40745','interface','{#IFNAME}'), ('21425','40746','component','network'), ('21426','40746','description','{#IFALIAS}'), ('21427','40746','interface','{#IFNAME}'), ('21428','40747','component','network'), ('21429','40747','description','{#IFALIAS}'), ('21430','40747','interface','{#IFNAME}'), ('21431','40748','component','network'), ('21432','40748','description','{#IFALIAS}'), ('21433','40748','interface','{#IFNAME}'), ('21434','40749','component','network'), ('21435','40749','description','{#IFALIAS}'), ('21436','40749','interface','{#IFNAME}'), ('21437','40750','component','network'), ('21438','40750','description','{#IFALIAS}'), ('21439','40750','interface','{#IFNAME}'), ('21440','40751','component','network'), ('21441','40751','description','{#IFALIAS}'), ('21442','40751','interface','{#IFNAME}'), ('21443','27543','component','system'), ('21444','27544','component','system'), ('21445','27545','component','system'), ('21446','27546','component','system'), ('21447','27547','component','cpu'), ('21448','40752','component','health'), ('21449','40752','component','network'), ('21450','40753','component','health'), ('21451','40753','component','network'), ('21452','40754','component','health'), ('21453','40754','component','network'), ('21454','40755','component','network'), ('21455','40756','component','system'), ('21456','40757','component','system'), ('21457','40758','component','system'), ('21458','40759','component','system'), ('21459','40760','component','system'), ('21460','40761','component','system'), ('21461','40762','component','health'), ('21462','40762','component','network'), ('21463','27553','component','temperature'), ('21464','27554','component','power'), ('21465','27555','component','fan'), ('21466','30108','component','memory'), ('21467','40765','component','network'), ('21468','40765','description','{#IFALIAS}'), ('21469','40765','interface','{#IFNAME}'), ('21470','40766','component','network'), ('21471','40766','description','{#IFALIAS}'), ('21472','40766','interface','{#IFNAME}'), ('21473','40767','component','network'), ('21474','40767','description','{#IFALIAS}'), ('21475','40767','interface','{#IFNAME}'), ('21476','40768','component','network'), ('21477','40768','description','{#IFALIAS}'), ('21478','40768','interface','{#IFNAME}'), ('21479','40769','component','network'), ('21480','40769','description','{#IFALIAS}'), ('21481','40769','interface','{#IFNAME}'), ('21482','40770','component','network'), ('21483','40770','description','{#IFALIAS}'), ('21484','40770','interface','{#IFNAME}'), ('21485','40771','component','network'), ('21486','40771','description','{#IFALIAS}'), ('21487','40771','interface','{#IFNAME}'), ('21488','40772','component','network'), ('21489','40772','description','{#IFALIAS}'), ('21490','40772','interface','{#IFNAME}'), ('21491','40773','component','network'), ('21492','40773','description','{#IFALIAS}'), ('21493','40773','interface','{#IFNAME}'), ('21494','40774','component','network'), ('21495','40774','description','{#IFALIAS}'), ('21496','40774','interface','{#IFNAME}'), ('21497','27579','component','system'), ('21498','27580','component','system'), ('21499','27582','component','system'), ('21500','27583','component','system'), ('21501','27584','component','temperature'), ('21502','27585','component','temperature'), ('21503','27586','component','cpu'), ('21504','30109','component','os'), ('21505','40775','component','health'), ('21506','40775','component','network'), ('21507','40776','component','system'), ('21508','40777','component','system'), ('21509','40778','component','system'), ('21510','40779','component','system'), ('21511','40780','component','health'), ('21512','40780','component','network'), ('21513','40781','component','system'), ('21514','40782','component','system'), ('21515','40783','component','network'), ('21516','40784','component','health'), ('21517','40784','component','network'), ('21518','40785','component','health'), ('21519','40785','component','network'), ('21520','27591','component','memory'), ('21521','27593','component','power'), ('21522','27594','component','fan'), ('21523','27595','component','fan'), ('21524','30110','component','memory'), ('21525','30111','component','memory'), ('21526','40788','component','network'), ('21527','40788','description','{#IFALIAS}'), ('21528','40788','interface','{#IFNAME}'), ('21529','40789','component','network'), ('21530','40789','description','{#IFALIAS}'), ('21531','40789','interface','{#IFNAME}'), ('21532','40790','component','network'), ('21533','40790','description','{#IFALIAS}'), ('21534','40790','interface','{#IFNAME}'), ('21535','40791','component','network'), ('21536','40791','description','{#IFALIAS}'), ('21537','40791','interface','{#IFNAME}'), ('21538','40792','component','network'), ('21539','40792','description','{#IFALIAS}'), ('21540','40792','interface','{#IFNAME}'), ('21541','40793','component','network'), ('21542','40793','description','{#IFALIAS}'), ('21543','40793','interface','{#IFNAME}'), ('21544','40794','component','network'), ('21545','40794','description','{#IFALIAS}'), ('21546','40794','interface','{#IFNAME}'), ('21547','40795','component','network'), ('21548','40795','description','{#IFALIAS}'), ('21549','40795','interface','{#IFNAME}'), ('21550','40796','component','network'), ('21551','40796','description','{#IFALIAS}'), ('21552','40796','interface','{#IFNAME}'), ('21553','40797','component','network'), ('21554','40797','description','{#IFALIAS}'), ('21555','40797','interface','{#IFNAME}'), ('21556','35406','component','inventory'), ('21557','35407','component','network'), ('21558','35408','component','system'), ('21559','35409','component','network'), ('21560','35410','component','network'), ('21561','35411','component','network'), ('21562','35412','component','network'), ('21563','35413','component','network'), ('21564','35414','component','inventory'), ('21565','35415','component','inventory'), ('21566','35416','component','inventory'), ('21567','35417','component','inventory'), ('21568','35418','component','inventory'), ('21569','35419','component','inventory'), ('21570','35420','component','inventory'), ('21571','35421','component','inventory'), ('21572','35422','component','inventory'), ('21573','35423','component','network'), ('21574','36822','component','cluster'), ('21575','36823','component','cluster'), ('21576','35439','component','sensor'), ('21577','35439','component','temperature'), ('21578','35440','component','sensor'), ('21579','35440','component','voltage'), ('21580','35441','component','sensor'), ('21581','35441','component','voltage'), ('21582','35442','certificate','{#CERT.NAME}'), ('21583','35442','component','certificate'), ('21584','35443','component','fan'), ('21585','35443','component','sensor'), ('21586','35444','component','fan'), ('21587','35444','component','sensor'), ('21588','35445','component','power'), ('21589','35446','component','sensor'), ('21590','35446','component','temperature'), ('21591','35447','component','cpu'), ('21592','35447','cpu-id','{#CPU.ID}'), ('21593','35447','host-id','{#HOST.ID}'), ('21594','35448','component','cpu'), ('21595','35448','cpu-id','{#CPU.ID}'), ('21596','35448','host-id','{#HOST.ID}'), ('21597','35449','component','cpu'), ('21598','35449','cpu-id','{#CPU.ID}'), ('21599','35449','host-id','{#HOST.ID}'), ('21600','35450','component','cpu'), ('21601','35450','cpu-id','{#CPU.ID}'), ('21602','35450','host-id','{#HOST.ID}'), ('21603','35451','component','cpu'), ('21604','35451','cpu-id','{#CPU.ID}'), ('21605','35451','host-id','{#HOST.ID}'), ('21606','35452','component','cpu'), ('21607','35452','cpu-id','{#CPU.ID}'), ('21608','35452','host-id','{#HOST.ID}'), ('21609','35453','component','cpu'), ('21610','35453','cpu-id','{#CPU.ID}'), ('21611','35453','host-id','{#HOST.ID}'), ('21612','35454','component','cpu'), ('21613','35454','cpu-id','{#CPU.ID}'), ('21614','35454','host-id','{#HOST.ID}'), ('21615','35455','component','cpu'), ('21616','35455','cpu-id','{#CPU.ID}'), ('21617','35455','host-id','{#HOST.ID}'), ('21618','35456','component','cpu'), ('21619','35456','cpu-id','{#CPU.ID}'), ('21620','35456','host-id','{#HOST.ID}'), ('21621','35457','component','cpu'), ('21622','35457','cpu-id','{#CPU.ID}'), ('21623','35457','host-id','{#HOST.ID}'), ('21624','35458','component','cpu'), ('21625','35458','cpu-id','{#CPU.ID}'), ('21626','35458','host-id','{#HOST.ID}'), ('21627','35459','component','cpu'), ('21628','35459','cpu-id','{#CPU.ID}'), ('21629','35459','host-id','{#HOST.ID}'), ('21630','35460','component','cpu'), ('21631','35460','cpu-id','{#CPU.ID}'), ('21632','35460','host-id','{#HOST.ID}'), ('21633','35461','component','cpu'), ('21634','35461','cpu-id','{#CPU.ID}'), ('21635','35461','host-id','{#HOST.ID}'), ('21636','35462','component','cpu'), ('21637','35462','cpu-id','{#CPU.ID}'), ('21638','35462','host-id','{#HOST.ID}'), ('21639','35463','component','cpu'), ('21640','35463','cpu-id','{#CPU.ID}'), ('21641','35463','host-id','{#HOST.ID}'), ('21642','35464','component','cpu'), ('21643','35464','cpu-id','{#CPU.ID}'), ('21644','35464','host-id','{#HOST.ID}'), ('21645','35465','component','cpu'), ('21646','35465','cpu-id','{#CPU.ID}'), ('21647','35465','host-id','{#HOST.ID}'), ('21648','35466','component','cpu'), ('21649','35466','cpu-id','{#CPU.ID}'), ('21650','35466','host-id','{#HOST.ID}'), ('21651','35467','component','cpu'), ('21652','35467','cpu-id','{#CPU.ID}'), ('21653','35467','host-id','{#HOST.ID}'), ('21654','35468','component','cpu'), ('21655','35468','cpu-id','{#CPU.ID}'), ('21656','35468','host-id','{#HOST.ID}'), ('21657','35469','component','cpu'), ('21658','35469','cpu-id','{#CPU.ID}'), ('21659','35469','host-id','{#HOST.ID}'), ('21660','35470','component','cpu'), ('21661','35470','cpu-id','{#CPU.ID}'), ('21662','35470','host-id','{#HOST.ID}'), ('21663','35471','component','cpu'), ('21664','35471','cpu-id','{#CPU.ID}'), ('21665','35471','host-id','{#HOST.ID}'), ('21666','35472','component','cpu'), ('21667','35472','cpu-id','{#CPU.ID}'), ('21668','35472','host-id','{#HOST.ID}'), ('21669','35473','component','cpu'), ('21670','35473','cpu-id','{#CPU.ID}'), ('21671','35473','host-id','{#HOST.ID}'), ('21672','35474','component','fan'), ('21673','35474','component','sensor'), ('21674','35475','component','name'), ('21675','35475','component','sensor'), ('21676','35476','component','sensor'), ('21677','35476','component','temperature'), ('21678','35477','component','storage'), ('21679','35477','mount-point','{#PART.NAME}'), ('21680','35478','component','storage'), ('21681','35478','mount-point','{#PART.NAME}'), ('21682','35479','component','storage'), ('21683','35479','mount-point','{#PART.NAME}'), ('21684','35480','component','storage'), ('21685','35480','mount-point','{#PART.NAME}'), ('21686','35481','component','storage'), ('21687','35481','mount-point','{#PART.NAME}'), ('21688','35482','component','memory'), ('21689','35483','component','memory'), ('21690','35484','component','memory'), ('21691','35485','component','memory'), ('21692','35486','component','memory'), ('21693','35487','component','memory'), ('21694','35488','component','module'), ('21695','35488','module','{#MODULE.NAME}'), ('21696','35489','component','module'), ('21697','35489','module','{#MODULE.NAME}'), ('21698','35490','component','module'), ('21699','35490','module','{#MODULE.NAME}'), ('21700','35491','component','module'), ('21701','35491','module','{#MODULE.NAME}'), ('21702','35492','component','interface'), ('21703','35492','component','network'), ('21704','35492','interface','port-{#IF.NAME}'), ('21705','35493','component','interface'), ('21706','35493','component','network'), ('21707','35493','interface','port-{#IF.NAME}'), ('21708','35494','component','interface'), ('21709','35494','component','network'), ('21710','35494','interface','port-{#IF.NAME}'), ('21711','35495','component','interface'), ('21712','35495','component','network'), ('21713','35495','interface','port-{#IF.NAME}'), ('21714','35496','component','interface'), ('21715','35496','component','network'), ('21716','35496','interface','port-{#IF.NAME}'), ('21717','35497','component','interface'), ('21718','35497','component','network'), ('21719','35497','interface','port-{#IF.NAME}'), ('21720','35498','component','interface'), ('21721','35498','component','network'), ('21722','35498','interface','port-{#IF.NAME}'), ('21723','35499','component','interface'), ('21724','35499','component','network'), ('21725','35499','interface','port-{#IF.NAME}'), ('21726','35500','component','interface'), ('21727','35500','component','network'), ('21728','35500','interface','port-{#IF.NAME}'), ('21729','35501','component','interface'), ('21730','35501','component','network'), ('21731','35501','interface','port-{#IF.NAME}'), ('21732','35502','component','interface'), ('21733','35502','component','network'), ('21734','35502','interface','port-{#IF.NAME}'), ('21735','35503','component','interface'), ('21736','35503','component','network'), ('21737','35503','interface','port-{#IF.NAME}'), ('21738','35504','component','interface'), ('21739','35504','component','network'), ('21740','35504','interface','port-{#IF.NAME}'), ('21741','35505','component','interface'), ('21742','35505','component','network'), ('21743','35505','interface','port-{#IF.NAME}'), ('21744','35506','component','network'), ('21745','35506','component','node'), ('21746','35506','node','{#NODE.NAME}'), ('21747','35507','component','network'), ('21748','35507','component','node'), ('21749','35507','node','{#NODE.NAME}'), ('21750','35508','component','network'), ('21751','35508','component','node'), ('21752','35508','node','{#NODE.NAME}'), ('21753','35509','component','network'), ('21754','35509','component','node'), ('21755','35509','node','{#NODE.NAME}'), ('21756','35510','component','network'), ('21757','35510','component','node'), ('21758','35510','node','{#NODE.NAME}'), ('21759','35511','component','network'), ('21760','35511','component','node'), ('21761','35511','node','{#NODE.NAME}'), ('21762','35512','component','network'), ('21763','35512','component','node'), ('21764','35512','node','{#NODE.NAME}'), ('21765','35513','component','network'), ('21766','35513','component','node'), ('21767','35513','node','{#NODE.NAME}'), ('21768','35514','component','network'), ('21769','35514','component','pool'), ('21770','35514','pool','{#POOL.NAME}'), ('21771','35515','component','network'), ('21772','35515','component','pool'), ('21773','35515','pool','{#POOL.NAME}'), ('21774','35516','component','network'), ('21775','35516','component','pool'), ('21776','35516','pool','{#POOL.NAME}'), ('21777','35517','component','network'), ('21778','35517','component','pool'), ('21779','35517','pool','{#POOL.NAME}'), ('21780','35518','component','network'), ('21781','35518','component','pool'), ('21782','35518','pool','{#POOL.NAME}'), ('21783','35519','component','network'), ('21784','35519','component','pool'), ('21785','35519','pool','{#POOL.NAME}'), ('21786','35520','component','network'), ('21787','35520','component','pool'), ('21788','35520','pool','{#POOL.NAME}'), ('21789','35521','component','network'), ('21790','35521','component','pool'), ('21791','35521','pool','{#POOL.NAME}'), ('21792','35522','component','network'), ('21793','35522','component','virtual-server'), ('21794','35522','virtual-server','{#VSERVER.NAME}'), ('21795','35523','component','network'), ('21796','35523','component','virtual-server'), ('21797','35523','virtual-server','{#VSERVER.NAME}'), ('21798','35524','component','network'), ('21799','35524','component','virtual-server'), ('21800','35524','virtual-server','{#VSERVER.NAME}'), ('21801','35525','component','network'), ('21802','35525','component','virtual-server'), ('21803','35525','virtual-server','{#VSERVER.NAME}'), ('21804','35526','component','network'), ('21805','35526','component','virtual-server'), ('21806','35526','virtual-server','{#VSERVER.NAME}'), ('21807','35527','component','network'), ('21808','35527','component','virtual-server'), ('21809','35527','virtual-server','{#VSERVER.NAME}'), ('21810','35528','component','network'), ('21811','35528','component','virtual-server'), ('21812','35528','virtual-server','{#VSERVER.NAME}'), ('21813','35529','component','network'), ('21814','35529','component','virtual-server'), ('21815','35529','virtual-server','{#VSERVER.NAME}'), ('21816','35530','component','network'), ('21817','35530','component','virtual-server'), ('21818','35530','virtual-server','{#VSERVER.NAME}'), ('21819','35531','component','network'), ('21820','35531','component','virtual-server'), ('21821','35531','virtual-server','{#VSERVER.NAME}'), ('21822','36824','component','network'), ('21823','36824','component','pool'), ('21824','36824','pool','{#POOL.NAME}'), ('21825','36825','component','network'), ('21826','36825','component','pool'), ('21827','36825','pool','{#POOL.NAME}'), ('21828','40798','component','health'), ('21829','40798','component','network'), ('21830','40799','component','health'), ('21831','40799','component','network'), ('21832','40800','component','health'), ('21833','40800','component','network'), ('21834','40801','component','network'), ('21835','40802','component','system'), ('21836','40803','component','system'), ('21837','40804','component','system'), ('21838','40805','component','system'), ('21839','40806','component','system'), ('21840','40807','component','system'), ('21841','40808','component','health'), ('21842','40808','component','network'), ('21843','40811','component','network'), ('21844','40811','description','{#IFALIAS}'), ('21845','40811','interface','{#IFNAME}'), ('21846','40812','component','network'), ('21847','40812','description','{#IFALIAS}'), ('21848','40812','interface','{#IFNAME}'), ('21849','40813','component','network'), ('21850','40813','description','{#IFALIAS}'), ('21851','40813','interface','{#IFNAME}'), ('21852','40814','component','network'), ('21853','40814','description','{#IFALIAS}'), ('21854','40814','interface','{#IFNAME}'), ('21855','40815','component','network'), ('21856','40815','description','{#IFALIAS}'), ('21857','40815','interface','{#IFNAME}'), ('21858','40816','component','network'), ('21859','40816','description','{#IFALIAS}'), ('21860','40816','interface','{#IFNAME}'), ('21861','40817','component','network'), ('21862','40817','description','{#IFALIAS}'), ('21863','40817','interface','{#IFNAME}'), ('21864','40818','component','network'), ('21865','40818','description','{#IFALIAS}'), ('21866','40818','interface','{#IFNAME}'), ('21867','40819','component','network'), ('21868','40819','description','{#IFALIAS}'), ('21869','40819','interface','{#IFNAME}'), ('21870','40820','component','network'), ('21871','40820','description','{#IFALIAS}'), ('21872','40820','interface','{#IFNAME}'), ('21873','40821','component','health'), ('21874','40821','component','network'), ('21875','40822','component','health'), ('21876','40822','component','network'), ('21877','40823','component','health'), ('21878','40823','component','network'), ('21879','40824','component','network'), ('21880','40825','component','system'), ('21881','40826','component','system'), ('21882','40827','component','system'), ('21883','40828','component','system'), ('21884','40829','component','system'), ('21885','40830','component','system'), ('21886','40831','component','health'), ('21887','40831','component','network'), ('21888','27671','component','cpu'), ('21889','27672','component','temperature'), ('21890','27673','component','fan'), ('21891','27674','component','power'), ('21892','27675','component','os'), ('21893','27676','component','system'), ('21894','27677','component','system'), ('21895','27678','component','system'), ('21896','27679','component','system'), ('21897','30112','component','memory'), ('21898','40834','component','network'), ('21899','40834','description','{#IFALIAS}'), ('21900','40834','interface','{#IFNAME}'), ('21901','40835','component','network'), ('21902','40835','description','{#IFALIAS}'), ('21903','40835','interface','{#IFNAME}'), ('21904','40836','component','network'), ('21905','40836','description','{#IFALIAS}'), ('21906','40836','interface','{#IFNAME}'), ('21907','40837','component','network'), ('21908','40837','description','{#IFALIAS}'), ('21909','40837','interface','{#IFNAME}'), ('21910','40838','component','network'), ('21911','40838','description','{#IFALIAS}'), ('21912','40838','interface','{#IFNAME}'), ('21913','40839','component','network'), ('21914','40839','description','{#IFALIAS}'), ('21915','40839','interface','{#IFNAME}'), ('21916','40840','component','network'), ('21917','40840','description','{#IFALIAS}'), ('21918','40840','interface','{#IFNAME}'), ('21919','40841','component','network'), ('21920','40841','description','{#IFALIAS}'), ('21921','40841','interface','{#IFNAME}'), ('21922','40842','component','network'), ('21923','40842','description','{#IFALIAS}'), ('21924','40842','interface','{#IFNAME}'), ('21925','40843','component','network'), ('21926','40843','description','{#IFALIAS}'), ('21927','40843','interface','{#IFNAME}'), ('21928','28141','component','system'), ('21929','28142','component','system'), ('21930','28143','component','cpu'), ('21931','40844','component','health'), ('21932','40844','component','network'), ('21933','40845','component','health'), ('21934','40845','component','network'), ('21935','40846','component','health'), ('21936','40846','component','network'), ('21937','40847','component','network'), ('21938','40848','component','system'), ('21939','40849','component','system'), ('21940','40850','component','system'), ('21941','40851','component','system'), ('21942','40852','component','system'), ('21943','40853','component','system'), ('21944','40854','component','health'), ('21945','40854','component','network'), ('21946','28150','component','temperature'), ('21947','28153','component','memory'), ('21948','28154','component','fan'), ('21949','28155','component','power'), ('21950','28156','component','temperature'), ('21951','28157','component','system'), ('21952','28158','component','system'), ('21953','30113','component','memory'), ('21954','30114','component','memory'), ('21955','30115','component','memory'), ('21956','40857','component','network'), ('21957','40857','description','{#IFALIAS}'), ('21958','40857','interface','{#IFNAME}'), ('21959','40858','component','network'), ('21960','40858','description','{#IFALIAS}'), ('21961','40858','interface','{#IFNAME}'), ('21962','40859','component','network'), ('21963','40859','description','{#IFALIAS}'), ('21964','40859','interface','{#IFNAME}'), ('21965','40860','component','network'), ('21966','40860','description','{#IFALIAS}'), ('21967','40860','interface','{#IFNAME}'), ('21968','40861','component','network'), ('21969','40861','description','{#IFALIAS}'), ('21970','40861','interface','{#IFNAME}'), ('21971','40862','component','network'), ('21972','40862','description','{#IFALIAS}'), ('21973','40862','interface','{#IFNAME}'), ('21974','40863','component','network'), ('21975','40863','description','{#IFALIAS}'), ('21976','40863','interface','{#IFNAME}'), ('21977','40864','component','network'), ('21978','40864','description','{#IFALIAS}'), ('21979','40864','interface','{#IFNAME}'), ('21980','40865','component','network'), ('21981','40865','description','{#IFALIAS}'), ('21982','40865','interface','{#IFNAME}'), ('21983','40866','component','network'), ('21984','40866','description','{#IFALIAS}'), ('21985','40866','interface','{#IFNAME}'), ('21986','40867','component','health'), ('21987','40867','component','network'), ('21988','40868','component','health'), ('21989','40868','component','network'), ('21990','40869','component','health'), ('21991','40869','component','network'), ('21992','40870','component','network'), ('21993','40871','component','system'), ('21994','40872','component','system'), ('21995','40873','component','system'), ('21996','40874','component','system'), ('21997','40875','component','system'), ('21998','40876','component','system'), ('21999','40877','component','health'), ('22000','40877','component','network'), ('22001','27748','component','system'), ('22002','27749','component','os'), ('22003','27750','component','system'), ('22004','27751','component','temperature'), ('22005','27753','component','cpu'), ('22006','27754','component','system'), ('22007','27755','component','fan'), ('22008','30116','component','memory'), ('22009','40880','component','network'), ('22010','40880','description','{#IFALIAS}'), ('22011','40880','interface','{#IFNAME}'), ('22012','40881','component','network'), ('22013','40881','description','{#IFALIAS}'), ('22014','40881','interface','{#IFNAME}'), ('22015','40882','component','network'), ('22016','40882','description','{#IFALIAS}'), ('22017','40882','interface','{#IFNAME}'), ('22018','40883','component','network'), ('22019','40883','description','{#IFALIAS}'), ('22020','40883','interface','{#IFNAME}'), ('22021','40884','component','network'), ('22022','40884','description','{#IFALIAS}'), ('22023','40884','interface','{#IFNAME}'), ('22024','40885','component','network'), ('22025','40885','description','{#IFALIAS}'), ('22026','40885','interface','{#IFNAME}'), ('22027','40886','component','network'), ('22028','40886','description','{#IFALIAS}'), ('22029','40886','interface','{#IFNAME}'), ('22030','40887','component','network'), ('22031','40887','description','{#IFALIAS}'), ('22032','40887','interface','{#IFNAME}'), ('22033','40888','component','network'), ('22034','40888','description','{#IFALIAS}'), ('22035','40888','interface','{#IFNAME}'), ('22036','40889','component','network'), ('22037','40889','description','{#IFALIAS}'), ('22038','40889','interface','{#IFNAME}'), ('22039','27777','component','system'), ('22040','27778','component','system'), ('22041','40890','component','health'), ('22042','40890','component','network'), ('22043','40891','component','health'), ('22044','40891','component','network'), ('22045','40892','component','health'), ('22046','40892','component','network'), ('22047','40893','component','network'), ('22048','40894','component','system'), ('22049','40895','component','system'), ('22050','40896','component','system'), ('22051','40897','component','system'), ('22052','40898','component','system'), ('22053','40899','component','system'), ('22054','40900','component','health'), ('22055','40900','component','network'), ('22056','27783','component','temperature'), ('22057','27784','component','temperature'), ('22058','27785','component','system'), ('22059','27786','component','power'), ('22060','27787','component','fan'), ('22061','40902','component','network'), ('22062','40902','description','{#IFALIAS}'), ('22063','40902','interface','{#IFNAME}'), ('22064','40903','component','network'), ('22065','40903','description','{#IFALIAS}'), ('22066','40903','interface','{#IFNAME}'), ('22067','40904','component','network'), ('22068','40904','description','{#IFALIAS}'), ('22069','40904','interface','{#IFNAME}'), ('22070','40905','component','network'), ('22071','40905','description','{#IFALIAS}'), ('22072','40905','interface','{#IFNAME}'), ('22073','40906','component','network'), ('22074','40906','description','{#IFALIAS}'), ('22075','40906','interface','{#IFNAME}'), ('22076','40907','component','network'), ('22077','40907','description','{#IFALIAS}'), ('22078','40907','interface','{#IFNAME}'), ('22079','40908','component','network'), ('22080','40908','description','{#IFALIAS}'), ('22081','40908','interface','{#IFNAME}'), ('22082','40909','component','network'), ('22083','40909','description','{#IFALIAS}'), ('22084','40909','interface','{#IFNAME}'), ('22085','40910','component','network'), ('22086','40910','description','{#IFALIAS}'), ('22087','40910','interface','{#IFNAME}'), ('22088','27812','component','system'), ('22089','27813','component','system'), ('22090','27814','component','system'), ('22091','30117','component','os'), ('22092','40911','component','health'), ('22093','40911','component','network'), ('22094','40912','component','health'), ('22095','40912','component','network'), ('22096','40913','component','health'), ('22097','40913','component','network'), ('22098','40914','component','network'), ('22099','40915','component','system'), ('22100','40916','component','system'), ('22101','40917','component','system'), ('22102','40918','component','system'), ('22103','40919','component','system'), ('22104','40920','component','system'), ('22105','40921','component','health'), ('22106','40921','component','network'), ('22107','27821','component','temperature'), ('22108','27822','component','fan'), ('22109','27823','component','power'), ('22110','28894','component','cpu'), ('22111','30118','component','memory'), ('22112','40924','component','network'), ('22113','40924','description','{#IFALIAS}'), ('22114','40924','interface','{#IFNAME}'), ('22115','40925','component','network'), ('22116','40925','description','{#IFALIAS}'), ('22117','40925','interface','{#IFNAME}'), ('22118','40926','component','network'), ('22119','40926','description','{#IFALIAS}'), ('22120','40926','interface','{#IFNAME}'), ('22121','40927','component','network'), ('22122','40927','description','{#IFALIAS}'), ('22123','40927','interface','{#IFNAME}'), ('22124','40928','component','network'), ('22125','40928','description','{#IFALIAS}'), ('22126','40928','interface','{#IFNAME}'), ('22127','40929','component','network'), ('22128','40929','description','{#IFALIAS}'), ('22129','40929','interface','{#IFNAME}'), ('22130','40930','component','network'), ('22131','40930','description','{#IFALIAS}'), ('22132','40930','interface','{#IFNAME}'), ('22133','40931','component','network'), ('22134','40931','description','{#IFALIAS}'), ('22135','40931','interface','{#IFNAME}'), ('22136','40932','component','network'), ('22137','40932','description','{#IFALIAS}'), ('22138','40932','interface','{#IFNAME}'), ('22139','40933','component','network'), ('22140','40933','description','{#IFALIAS}'), ('22141','40933','interface','{#IFNAME}'), ('22142','34149','component','health'), ('22143','34149','component','network'), ('22144','34150','component','health'), ('22145','34150','component','network'), ('22146','34151','component','health'), ('22147','34151','component','network'), ('22148','34152','component','network'), ('22149','34153','component','system'), ('22150','34154','component','cpu'), ('22151','34155','component','system'), ('22152','34156','component','system'), ('22153','34157','component','system'), ('22154','34158','component','system'), ('22155','34159','component','system'), ('22156','34160','component','health'), ('22157','34160','component','network'), ('22158','28200','component','temperature'), ('22159','28201','component','temperature'), ('22160','28202','component','fan'), ('22161','28203','component','fan'), ('22162','28204','component','system'), ('22163','28205','component','system'), ('22164','28206','component','power'), ('22165','34164','component','network'), ('22166','34164','description','{#IFALIAS}'), ('22167','34164','interface','{#IFNAME}'), ('22168','34165','component','network'), ('22169','34165','description','{#IFALIAS}'), ('22170','34165','interface','{#IFNAME}'), ('22171','34166','component','network'), ('22172','34166','description','{#IFALIAS}'), ('22173','34166','interface','{#IFNAME}'), ('22174','34167','component','network'), ('22175','34167','description','{#IFALIAS}'), ('22176','34167','interface','{#IFNAME}'), ('22177','34168','component','network'), ('22178','34168','description','{#IFALIAS}'), ('22179','34168','interface','{#IFNAME}'), ('22180','34169','component','network'), ('22181','34169','description','{#IFALIAS}'), ('22182','34169','interface','{#IFNAME}'), ('22183','34170','component','network'), ('22184','34170','description','{#IFALIAS}'), ('22185','34170','interface','{#IFNAME}'), ('22186','34171','component','network'), ('22187','34171','description','{#IFALIAS}'), ('22188','34171','interface','{#IFNAME}'), ('22189','34172','component','network'), ('22190','34172','description','{#IFALIAS}'), ('22191','34172','interface','{#IFNAME}'), ('22192','34173','component','storage'), ('22193','34173','filesystem','{#FSNAME}'), ('22194','34174','component','storage'), ('22195','34174','filesystem','{#FSNAME}'), ('22196','34175','component','storage'), ('22197','34175','filesystem','{#FSNAME}'), ('22198','34176','component','memory'), ('22199','34177','component','memory'), ('22200','34178','component','memory'), ('22201','36847','component','system'), ('22202','36848','component','system'), ('22203','36849','component','system'), ('22204','36850','component','os'), ('22205','36851','component','memory'), ('22206','36852','component','memory'), ('22207','36853','component','memory'), ('22208','40934','component','health'), ('22209','40934','component','network'), ('22210','40935','component','system'), ('22211','40936','component','system'), ('22212','40937','component','system'), ('22213','40938','component','system'), ('22214','40939','component','health'), ('22215','40939','component','network'), ('22216','40940','component','system'), ('22217','40941','component','system'), ('22218','40942','component','network'), ('22219','40943','component','health'), ('22220','40943','component','network'), ('22221','40944','component','health'), ('22222','40944','component','network'), ('22223','36861','component','cpu'), ('22226','36864','component','interface'), ('22227','36864','component','network'), ('22228','36864','interface','{#IFNAME}'), ('22229','36865','component','interface'), ('22230','36865','component','network'), ('22231','36865','interface','{#IFNAME}'), ('22232','36866','component','interface'), ('22233','36866','component','network'), ('22234','36866','interface','{#IFNAME}'), ('22235','36867','component','interface'), ('22236','36867','component','network'), ('22237','36867','interface','{#IFNAME}'), ('22238','36868','component','interface'), ('22239','36868','component','network'), ('22240','36868','interface','{#IFNAME}'), ('22241','36869','component','interface'), ('22242','36869','component','network'), ('22243','36869','interface','{#IFNAME}'), ('22244','36870','component','interface'), ('22245','36870','component','network'), ('22246','36870','interface','{#IFNAME}'), ('22247','36871','component','interface'), ('22248','36871','component','network'), ('22249','36871','interface','{#IFNAME}'), ('22250','36872','component','interface'), ('22251','36872','component','network'), ('22252','36872','interface','{#IFNAME}'), ('22253','36873','component','interface'), ('22254','36873','component','network'), ('22255','36873','interface','{#IFNAME}'), ('22256','36874','component','interface'), ('22257','36874','component','network'), ('22258','36874','interface','{#IFNAME}'), ('22259','36875','component','interface'), ('22260','36875','component','network'), ('22261','36875','interface','{#IFNAME}'), ('22262','36876','component','interface'), ('22263','36876','component','network'), ('22264','36876','interface','{#IFNAME}'), ('22265','36877','component','storage'), ('22266','36877','filesystem','{#FSNAME}'), ('22267','36878','component','storage'), ('22268','36878','filesystem','{#FSNAME}'), ('22269','36879','component','storage'), ('22270','36879','filesystem','{#FSNAME}'), ('22271','40946','component','network'), ('22272','40946','description','{#IFALIAS}'), ('22273','40946','interface','{#IFNAME}'), ('22274','40947','component','network'), ('22275','40947','description','{#IFALIAS}'), ('22276','40947','interface','{#IFNAME}'), ('22277','40948','component','network'), ('22278','40948','description','{#IFALIAS}'), ('22279','40948','interface','{#IFNAME}'), ('22280','40949','component','network'), ('22281','40949','description','{#IFALIAS}'), ('22282','40949','interface','{#IFNAME}'), ('22283','40950','component','network'), ('22284','40950','description','{#IFALIAS}'), ('22285','40950','interface','{#IFNAME}'), ('22286','40951','component','network'), ('22287','40951','description','{#IFALIAS}'), ('22288','40951','interface','{#IFNAME}'), ('22289','40952','component','network'), ('22290','40952','description','{#IFALIAS}'), ('22291','40952','interface','{#IFNAME}'), ('22292','40953','component','network'), ('22293','40953','description','{#IFALIAS}'), ('22294','40953','interface','{#IFNAME}'), ('22295','40954','component','network'), ('22296','40954','description','{#IFALIAS}'), ('22297','40954','interface','{#IFNAME}'), ('22298','36901','component','system'), ('22299','36902','component','system'), ('22300','36903','component','system'), ('22301','36904','component','os'), ('22302','36905','component','memory'), ('22303','36906','component','memory'), ('22304','36907','component','memory'), ('22305','40955','component','health'), ('22306','40955','component','network'), ('22307','40956','component','system'), ('22308','40957','component','system'), ('22309','40958','component','system'), ('22310','40959','component','system'), ('22311','40960','component','health'), ('22312','40960','component','network'), ('22313','40961','component','system'), ('22314','40962','component','system'), ('22315','40963','component','network'), ('22316','40964','component','health'), ('22317','40964','component','network'), ('22318','40965','component','health'), ('22319','40965','component','network'), ('22320','36915','component','cpu'), ('22323','36918','component','interface'), ('22324','36918','component','network'), ('22325','36918','interface','{#IFNAME}'), ('22326','36919','component','interface'), ('22327','36919','component','network'), ('22328','36919','interface','{#IFNAME}'), ('22329','36920','component','interface'), ('22330','36920','component','network'), ('22331','36920','interface','{#IFNAME}'), ('22332','36921','component','interface'), ('22333','36921','component','network'), ('22334','36921','interface','{#IFNAME}'), ('22335','36922','component','interface'), ('22336','36922','component','network'), ('22337','36922','interface','{#IFNAME}'), ('22338','36923','component','interface'), ('22339','36923','component','network'), ('22340','36923','interface','{#IFNAME}'), ('22341','36924','component','interface'), ('22342','36924','component','network'), ('22343','36924','interface','{#IFNAME}'), ('22344','36925','component','interface'), ('22345','36925','component','network'), ('22346','36925','interface','{#IFNAME}'), ('22347','36926','component','interface'), ('22348','36926','component','network'), ('22349','36926','interface','{#IFNAME}'), ('22350','36927','component','interface'), ('22351','36927','component','network'), ('22352','36927','interface','{#IFNAME}'), ('22353','36928','component','interface'), ('22354','36928','component','network'), ('22355','36928','interface','{#IFNAME}'), ('22356','36929','component','interface'), ('22357','36929','component','network'), ('22358','36929','interface','{#IFNAME}'), ('22359','36930','component','interface'), ('22360','36930','component','network'), ('22361','36930','interface','{#IFNAME}'), ('22362','36931','component','storage'), ('22363','36931','filesystem','{#FSNAME}'), ('22364','36932','component','storage'), ('22365','36932','filesystem','{#FSNAME}'), ('22366','36933','component','storage'), ('22367','36933','filesystem','{#FSNAME}'), ('22368','40967','component','network'), ('22369','40967','description','{#IFALIAS}'), ('22370','40967','interface','{#IFNAME}'), ('22371','40968','component','network'), ('22372','40968','description','{#IFALIAS}'), ('22373','40968','interface','{#IFNAME}'), ('22374','40969','component','network'), ('22375','40969','description','{#IFALIAS}'), ('22376','40969','interface','{#IFNAME}'), ('22377','40970','component','network'), ('22378','40970','description','{#IFALIAS}'), ('22379','40970','interface','{#IFNAME}'), ('22380','40971','component','network'), ('22381','40971','description','{#IFALIAS}'), ('22382','40971','interface','{#IFNAME}'), ('22383','40972','component','network'), ('22384','40972','description','{#IFALIAS}'), ('22385','40972','interface','{#IFNAME}'), ('22386','40973','component','network'), ('22387','40973','description','{#IFALIAS}'), ('22388','40973','interface','{#IFNAME}'), ('22389','40974','component','network'), ('22390','40974','description','{#IFALIAS}'), ('22391','40974','interface','{#IFNAME}'), ('22392','40975','component','network'), ('22393','40975','description','{#IFALIAS}'), ('22394','40975','interface','{#IFNAME}'), ('22395','36955','component','system'), ('22396','36956','component','system'), ('22397','36957','component','system'), ('22398','36958','component','os'), ('22399','36959','component','memory'), ('22400','36960','component','memory'), ('22401','36961','component','memory'), ('22402','40976','component','health'), ('22403','40976','component','network'), ('22404','40977','component','system'), ('22405','40978','component','system'), ('22406','40979','component','system'), ('22407','40980','component','system'), ('22408','40981','component','health'), ('22409','40981','component','network'), ('22410','40982','component','system'), ('22411','40983','component','system'), ('22412','40984','component','network'), ('22413','40985','component','health'), ('22414','40985','component','network'), ('22415','40986','component','health'), ('22416','40986','component','network'), ('22417','36969','component','cpu'), ('22420','36972','component','interface'), ('22421','36972','component','network'), ('22422','36972','interface','{#IFNAME}'), ('22423','36973','component','interface'), ('22424','36973','component','network'), ('22425','36973','interface','{#IFNAME}'), ('22426','36974','component','interface'), ('22427','36974','component','network'), ('22428','36974','interface','{#IFNAME}'), ('22429','36975','component','interface'), ('22430','36975','component','network'), ('22431','36975','interface','{#IFNAME}'), ('22432','36976','component','interface'), ('22433','36976','component','network'), ('22434','36976','interface','{#IFNAME}'), ('22435','36977','component','interface'), ('22436','36977','component','network'), ('22437','36977','interface','{#IFNAME}'), ('22438','36978','component','interface'), ('22439','36978','component','network'), ('22440','36978','interface','{#IFNAME}'), ('22441','36979','component','interface'), ('22442','36979','component','network'), ('22443','36979','interface','{#IFNAME}'), ('22444','36980','component','interface'), ('22445','36980','component','network'), ('22446','36980','interface','{#IFNAME}'), ('22447','36981','component','interface'), ('22448','36981','component','network'), ('22449','36981','interface','{#IFNAME}'), ('22450','36982','component','interface'), ('22451','36982','component','network'), ('22452','36982','interface','{#IFNAME}'), ('22453','36983','component','interface'), ('22454','36983','component','network'), ('22455','36983','interface','{#IFNAME}'), ('22456','36984','component','interface'), ('22457','36984','component','network'), ('22458','36984','interface','{#IFNAME}'), ('22459','36985','component','storage'), ('22460','36985','filesystem','{#FSNAME}'), ('22461','36986','component','storage'), ('22462','36986','filesystem','{#FSNAME}'), ('22463','36987','component','storage'), ('22464','36987','filesystem','{#FSNAME}'), ('22465','40988','component','network'), ('22466','40988','description','{#IFALIAS}'), ('22467','40988','interface','{#IFNAME}'), ('22468','40989','component','network'), ('22469','40989','description','{#IFALIAS}'), ('22470','40989','interface','{#IFNAME}'), ('22471','40990','component','network'), ('22472','40990','description','{#IFALIAS}'), ('22473','40990','interface','{#IFNAME}'), ('22474','40991','component','network'), ('22475','40991','description','{#IFALIAS}'), ('22476','40991','interface','{#IFNAME}'), ('22477','40992','component','network'), ('22478','40992','description','{#IFALIAS}'), ('22479','40992','interface','{#IFNAME}'), ('22480','40993','component','network'), ('22481','40993','description','{#IFALIAS}'), ('22482','40993','interface','{#IFNAME}'), ('22483','40994','component','network'), ('22484','40994','description','{#IFALIAS}'), ('22485','40994','interface','{#IFNAME}'), ('22486','40995','component','network'), ('22487','40995','description','{#IFALIAS}'), ('22488','40995','interface','{#IFNAME}'), ('22489','40996','component','network'), ('22490','40996','description','{#IFALIAS}'), ('22491','40996','interface','{#IFNAME}'), ('22492','37009','component','system'), ('22493','37010','component','system'), ('22494','37011','component','system'), ('22495','37012','component','os'), ('22496','37013','component','memory'), ('22497','37014','component','memory'), ('22498','37015','component','memory'), ('22499','40997','component','health'), ('22500','40997','component','network'), ('22501','40998','component','system'), ('22502','40999','component','system'), ('22503','41000','component','system'), ('22504','41001','component','system'), ('22505','41002','component','health'), ('22506','41002','component','network'), ('22507','41003','component','system'), ('22508','41004','component','system'), ('22509','41005','component','network'), ('22510','41006','component','health'), ('22511','41006','component','network'), ('22512','41007','component','health'), ('22513','41007','component','network'), ('22514','37023','component','cpu'), ('22517','37026','component','interface'), ('22518','37026','component','network'), ('22519','37026','interface','{#IFNAME}'), ('22520','37027','component','interface'), ('22521','37027','component','network'), ('22522','37027','interface','{#IFNAME}'), ('22523','37028','component','interface'), ('22524','37028','component','network'), ('22525','37028','interface','{#IFNAME}'), ('22526','37029','component','interface'), ('22527','37029','component','network'), ('22528','37029','interface','{#IFNAME}'), ('22529','37030','component','interface'), ('22530','37030','component','network'), ('22531','37030','interface','{#IFNAME}'), ('22532','37031','component','interface'), ('22533','37031','component','network'), ('22534','37031','interface','{#IFNAME}'), ('22535','37032','component','interface'), ('22536','37032','component','network'), ('22537','37032','interface','{#IFNAME}'), ('22538','37033','component','interface'), ('22539','37033','component','network'), ('22540','37033','interface','{#IFNAME}'), ('22541','37034','component','interface'), ('22542','37034','component','network'), ('22543','37034','interface','{#IFNAME}'), ('22544','37035','component','interface'), ('22545','37035','component','network'), ('22546','37035','interface','{#IFNAME}'), ('22547','37036','component','interface'), ('22548','37036','component','network'), ('22549','37036','interface','{#IFNAME}'), ('22550','37037','component','interface'), ('22551','37037','component','network'), ('22552','37037','interface','{#IFNAME}'), ('22553','37038','component','interface'), ('22554','37038','component','network'), ('22555','37038','interface','{#IFNAME}'), ('22556','37039','component','storage'), ('22557','37039','filesystem','{#FSNAME}'), ('22558','37040','component','storage'), ('22559','37040','filesystem','{#FSNAME}'), ('22560','37041','component','storage'), ('22561','37041','filesystem','{#FSNAME}'), ('22562','41009','component','network'), ('22563','41009','description','{#IFALIAS}'), ('22564','41009','interface','{#IFNAME}'), ('22565','41010','component','network'), ('22566','41010','description','{#IFALIAS}'), ('22567','41010','interface','{#IFNAME}'), ('22568','41011','component','network'), ('22569','41011','description','{#IFALIAS}'), ('22570','41011','interface','{#IFNAME}'), ('22571','41012','component','network'), ('22572','41012','description','{#IFALIAS}'), ('22573','41012','interface','{#IFNAME}'), ('22574','41013','component','network'), ('22575','41013','description','{#IFALIAS}'), ('22576','41013','interface','{#IFNAME}'), ('22577','41014','component','network'), ('22578','41014','description','{#IFALIAS}'), ('22579','41014','interface','{#IFNAME}'), ('22580','41015','component','network'), ('22581','41015','description','{#IFALIAS}'), ('22582','41015','interface','{#IFNAME}'), ('22583','41016','component','network'), ('22584','41016','description','{#IFALIAS}'), ('22585','41016','interface','{#IFNAME}'), ('22586','41017','component','network'), ('22587','41017','description','{#IFALIAS}'), ('22588','41017','interface','{#IFNAME}'), ('22589','37063','component','system'), ('22590','37064','component','system'), ('22591','37065','component','system'), ('22592','37066','component','os'), ('22593','37067','component','memory'), ('22594','37068','component','memory'), ('22595','37069','component','memory'), ('22596','41018','component','health'), ('22597','41018','component','network'), ('22598','41019','component','system'), ('22599','41020','component','system'), ('22600','41021','component','system'), ('22601','41022','component','system'), ('22602','41023','component','health'), ('22603','41023','component','network'), ('22604','41024','component','system'), ('22605','41025','component','system'), ('22606','41026','component','network'), ('22607','41027','component','health'), ('22608','41027','component','network'), ('22609','41028','component','health'), ('22610','41028','component','network'), ('22611','37077','component','cpu'), ('22614','37080','component','interface'), ('22615','37080','component','network'), ('22616','37080','interface','{#IFNAME}'), ('22617','37081','component','interface'), ('22618','37081','component','network'), ('22619','37081','interface','{#IFNAME}'), ('22620','37082','component','interface'), ('22621','37082','component','network'), ('22622','37082','interface','{#IFNAME}'), ('22623','37083','component','interface'), ('22624','37083','component','network'), ('22625','37083','interface','{#IFNAME}'), ('22626','37084','component','interface'), ('22627','37084','component','network'), ('22628','37084','interface','{#IFNAME}'), ('22629','37085','component','interface'), ('22630','37085','component','network'), ('22631','37085','interface','{#IFNAME}'), ('22632','37086','component','interface'), ('22633','37086','component','network'), ('22634','37086','interface','{#IFNAME}'), ('22635','37087','component','interface'), ('22636','37087','component','network'), ('22637','37087','interface','{#IFNAME}'), ('22638','37088','component','interface'), ('22639','37088','component','network'), ('22640','37088','interface','{#IFNAME}'), ('22641','37089','component','interface'), ('22642','37089','component','network'), ('22643','37089','interface','{#IFNAME}'), ('22644','37090','component','interface'), ('22645','37090','component','network'), ('22646','37090','interface','{#IFNAME}'), ('22647','37091','component','interface'), ('22648','37091','component','network'), ('22649','37091','interface','{#IFNAME}'), ('22650','37092','component','interface'), ('22651','37092','component','network'), ('22652','37092','interface','{#IFNAME}'), ('22653','37093','component','storage'), ('22654','37093','filesystem','{#FSNAME}'), ('22655','37094','component','storage'), ('22656','37094','filesystem','{#FSNAME}'), ('22657','37095','component','storage'), ('22658','37095','filesystem','{#FSNAME}'), ('22659','41030','component','network'), ('22660','41030','description','{#IFALIAS}'), ('22661','41030','interface','{#IFNAME}'), ('22662','41031','component','network'), ('22663','41031','description','{#IFALIAS}'), ('22664','41031','interface','{#IFNAME}'), ('22665','41032','component','network'), ('22666','41032','description','{#IFALIAS}'), ('22667','41032','interface','{#IFNAME}'), ('22668','41033','component','network'), ('22669','41033','description','{#IFALIAS}'), ('22670','41033','interface','{#IFNAME}'), ('22671','41034','component','network'), ('22672','41034','description','{#IFALIAS}'), ('22673','41034','interface','{#IFNAME}'), ('22674','41035','component','network'), ('22675','41035','description','{#IFALIAS}'), ('22676','41035','interface','{#IFNAME}'), ('22677','41036','component','network'), ('22678','41036','description','{#IFALIAS}'), ('22679','41036','interface','{#IFNAME}'), ('22680','41037','component','network'), ('22681','41037','description','{#IFALIAS}'), ('22682','41037','interface','{#IFNAME}'), ('22683','41038','component','network'), ('22684','41038','description','{#IFALIAS}'), ('22685','41038','interface','{#IFNAME}'), ('22686','37117','component','system'), ('22687','37118','component','system'), ('22688','37119','component','system'), ('22689','37120','component','os'), ('22690','37121','component','memory'), ('22691','37122','component','memory'), ('22692','37123','component','memory'), ('22693','41039','component','health'), ('22694','41039','component','network'), ('22695','41040','component','system'), ('22696','41041','component','system'), ('22697','41042','component','system'), ('22698','41043','component','system'), ('22699','41044','component','health'), ('22700','41044','component','network'), ('22701','41045','component','system'), ('22702','41046','component','system'), ('22703','41047','component','network'), ('22704','41048','component','health'), ('22705','41048','component','network'), ('22706','41049','component','health'), ('22707','41049','component','network'), ('22708','37131','component','cpu'), ('22711','37134','component','interface'), ('22712','37134','component','network'), ('22713','37134','interface','{#IFNAME}'), ('22714','37135','component','interface'), ('22715','37135','component','network'), ('22716','37135','interface','{#IFNAME}'), ('22717','37136','component','interface'), ('22718','37136','component','network'), ('22719','37136','interface','{#IFNAME}'), ('22720','37137','component','interface'), ('22721','37137','component','network'), ('22722','37137','interface','{#IFNAME}'), ('22723','37138','component','interface'), ('22724','37138','component','network'), ('22725','37138','interface','{#IFNAME}'), ('22726','37139','component','interface'), ('22727','37139','component','network'), ('22728','37139','interface','{#IFNAME}'), ('22729','37140','component','interface'), ('22730','37140','component','network'), ('22731','37140','interface','{#IFNAME}'), ('22732','37141','component','interface'), ('22733','37141','component','network'), ('22734','37141','interface','{#IFNAME}'), ('22735','37142','component','interface'), ('22736','37142','component','network'), ('22737','37142','interface','{#IFNAME}'), ('22738','37143','component','interface'), ('22739','37143','component','network'), ('22740','37143','interface','{#IFNAME}'), ('22741','37144','component','interface'), ('22742','37144','component','network'), ('22743','37144','interface','{#IFNAME}'), ('22744','37145','component','interface'), ('22745','37145','component','network'), ('22746','37145','interface','{#IFNAME}'), ('22747','37146','component','interface'), ('22748','37146','component','network'), ('22749','37146','interface','{#IFNAME}'), ('22750','37147','component','storage'), ('22751','37147','filesystem','{#FSNAME}'), ('22752','37148','component','storage'), ('22753','37148','filesystem','{#FSNAME}'), ('22754','37149','component','storage'), ('22755','37149','filesystem','{#FSNAME}'), ('22756','41051','component','network'), ('22757','41051','description','{#IFALIAS}'), ('22758','41051','interface','{#IFNAME}'), ('22759','41052','component','network'), ('22760','41052','description','{#IFALIAS}'), ('22761','41052','interface','{#IFNAME}'), ('22762','41053','component','network'), ('22763','41053','description','{#IFALIAS}'), ('22764','41053','interface','{#IFNAME}'), ('22765','41054','component','network'), ('22766','41054','description','{#IFALIAS}'), ('22767','41054','interface','{#IFNAME}'), ('22768','41055','component','network'), ('22769','41055','description','{#IFALIAS}'), ('22770','41055','interface','{#IFNAME}'), ('22771','41056','component','network'), ('22772','41056','description','{#IFALIAS}'), ('22773','41056','interface','{#IFNAME}'), ('22774','41057','component','network'), ('22775','41057','description','{#IFALIAS}'), ('22776','41057','interface','{#IFNAME}'), ('22777','41058','component','network'), ('22778','41058','description','{#IFALIAS}'), ('22779','41058','interface','{#IFNAME}'), ('22780','41059','component','network'), ('22781','41059','description','{#IFALIAS}'), ('22782','41059','interface','{#IFNAME}'), ('22783','37171','component','system'), ('22784','37172','component','system'), ('22785','37173','component','system'), ('22786','37174','component','os'), ('22787','37175','component','memory'), ('22788','37176','component','memory'), ('22789','37177','component','memory'), ('22790','41060','component','health'), ('22791','41060','component','network'), ('22792','41061','component','system'), ('22793','41062','component','system'), ('22794','41063','component','system'), ('22795','41064','component','system'), ('22796','41065','component','health'), ('22797','41065','component','network'), ('22798','41066','component','system'), ('22799','41067','component','system'), ('22800','41068','component','network'), ('22801','41069','component','health'), ('22802','41069','component','network'), ('22803','41070','component','health'), ('22804','41070','component','network'), ('22805','37185','component','cpu'), ('22808','37188','component','interface'), ('22809','37188','component','network'), ('22810','37188','interface','{#IFNAME}'), ('22811','37189','component','interface'), ('22812','37189','component','network'), ('22813','37189','interface','{#IFNAME}'), ('22814','37190','component','interface'), ('22815','37190','component','network'), ('22816','37190','interface','{#IFNAME}'), ('22817','37191','component','interface'), ('22818','37191','component','network'), ('22819','37191','interface','{#IFNAME}'), ('22820','37192','component','interface'), ('22821','37192','component','network'), ('22822','37192','interface','{#IFNAME}'), ('22823','37193','component','interface'), ('22824','37193','component','network'), ('22825','37193','interface','{#IFNAME}'), ('22826','37194','component','interface'), ('22827','37194','component','network'), ('22828','37194','interface','{#IFNAME}'), ('22829','37195','component','interface'), ('22830','37195','component','network'), ('22831','37195','interface','{#IFNAME}'), ('22832','37196','component','interface'), ('22833','37196','component','network'), ('22834','37196','interface','{#IFNAME}'), ('22835','37197','component','interface'), ('22836','37197','component','network'), ('22837','37197','interface','{#IFNAME}'), ('22838','37198','component','interface'), ('22839','37198','component','network'), ('22840','37198','interface','{#IFNAME}'), ('22841','37199','component','interface'), ('22842','37199','component','network'), ('22843','37199','interface','{#IFNAME}'), ('22844','37200','component','interface'), ('22845','37200','component','network'), ('22846','37200','interface','{#IFNAME}'), ('22847','37201','component','storage'), ('22848','37201','filesystem','{#FSNAME}'), ('22849','37202','component','storage'), ('22850','37202','filesystem','{#FSNAME}'), ('22851','37203','component','storage'), ('22852','37203','filesystem','{#FSNAME}'), ('22853','41072','component','network'), ('22854','41072','description','{#IFALIAS}'), ('22855','41072','interface','{#IFNAME}'), ('22856','41073','component','network'), ('22857','41073','description','{#IFALIAS}'), ('22858','41073','interface','{#IFNAME}'), ('22859','41074','component','network'), ('22860','41074','description','{#IFALIAS}'), ('22861','41074','interface','{#IFNAME}'), ('22862','41075','component','network'), ('22863','41075','description','{#IFALIAS}'), ('22864','41075','interface','{#IFNAME}'), ('22865','41076','component','network'), ('22866','41076','description','{#IFALIAS}'), ('22867','41076','interface','{#IFNAME}'), ('22868','41077','component','network'), ('22869','41077','description','{#IFALIAS}'), ('22870','41077','interface','{#IFNAME}'), ('22871','41078','component','network'), ('22872','41078','description','{#IFALIAS}'), ('22873','41078','interface','{#IFNAME}'), ('22874','41079','component','network'), ('22875','41079','description','{#IFALIAS}'), ('22876','41079','interface','{#IFNAME}'), ('22877','41080','component','network'), ('22878','41080','description','{#IFALIAS}'), ('22879','41080','interface','{#IFNAME}'), ('22880','37225','component','system'), ('22881','37226','component','system'), ('22882','37227','component','system'), ('22883','37228','component','os'), ('22884','37229','component','memory'), ('22885','37230','component','memory'), ('22886','37231','component','memory'), ('22887','41081','component','health'), ('22888','41081','component','network'), ('22889','41082','component','system'), ('22890','41083','component','system'), ('22891','41084','component','system'), ('22892','41085','component','system'), ('22893','41086','component','health'), ('22894','41086','component','network'), ('22895','41087','component','system'), ('22896','41088','component','system'), ('22897','41089','component','network'), ('22898','41090','component','health'), ('22899','41090','component','network'), ('22900','41091','component','health'), ('22901','41091','component','network'), ('22902','37239','component','cpu'), ('22905','37242','component','interface'), ('22906','37242','component','network'), ('22907','37242','interface','{#IFNAME}'), ('22908','37243','component','interface'), ('22909','37243','component','network'), ('22910','37243','interface','{#IFNAME}'), ('22911','37244','component','interface'), ('22912','37244','component','network'), ('22913','37244','interface','{#IFNAME}'), ('22914','37245','component','interface'), ('22915','37245','component','network'), ('22916','37245','interface','{#IFNAME}'), ('22917','37246','component','interface'), ('22918','37246','component','network'), ('22919','37246','interface','{#IFNAME}'), ('22920','37247','component','interface'), ('22921','37247','component','network'), ('22922','37247','interface','{#IFNAME}'), ('22923','37248','component','interface'), ('22924','37248','component','network'), ('22925','37248','interface','{#IFNAME}'), ('22926','37249','component','interface'), ('22927','37249','component','network'), ('22928','37249','interface','{#IFNAME}'), ('22929','37250','component','interface'), ('22930','37250','component','network'), ('22931','37250','interface','{#IFNAME}'), ('22932','37251','component','interface'), ('22933','37251','component','network'), ('22934','37251','interface','{#IFNAME}'), ('22935','37252','component','interface'), ('22936','37252','component','network'), ('22937','37252','interface','{#IFNAME}'), ('22938','37253','component','interface'), ('22939','37253','component','network'), ('22940','37253','interface','{#IFNAME}'), ('22941','37254','component','interface'), ('22942','37254','component','network'), ('22943','37254','interface','{#IFNAME}'), ('22944','37255','component','storage'), ('22945','37255','filesystem','{#FSNAME}'), ('22946','37256','component','storage'), ('22947','37256','filesystem','{#FSNAME}'), ('22948','37257','component','storage'), ('22949','37257','filesystem','{#FSNAME}'), ('22950','41093','component','network'), ('22951','41093','description','{#IFALIAS}'), ('22952','41093','interface','{#IFNAME}'), ('22953','41094','component','network'), ('22954','41094','description','{#IFALIAS}'), ('22955','41094','interface','{#IFNAME}'), ('22956','41095','component','network'), ('22957','41095','description','{#IFALIAS}'), ('22958','41095','interface','{#IFNAME}'), ('22959','41096','component','network'), ('22960','41096','description','{#IFALIAS}'), ('22961','41096','interface','{#IFNAME}'), ('22962','41097','component','network'), ('22963','41097','description','{#IFALIAS}'), ('22964','41097','interface','{#IFNAME}'), ('22965','41098','component','network'), ('22966','41098','description','{#IFALIAS}'), ('22967','41098','interface','{#IFNAME}'), ('22968','41099','component','network'), ('22969','41099','description','{#IFALIAS}'), ('22970','41099','interface','{#IFNAME}'), ('22971','41100','component','network'), ('22972','41100','description','{#IFALIAS}'), ('22973','41100','interface','{#IFNAME}'), ('22974','41101','component','network'), ('22975','41101','description','{#IFALIAS}'), ('22976','41101','interface','{#IFNAME}'), ('22977','37279','component','system'), ('22978','37280','component','system'), ('22979','37281','component','system'), ('22980','37282','component','os'), ('22981','37283','component','memory'), ('22982','37284','component','memory'), ('22983','37285','component','memory'), ('22984','41102','component','health'), ('22985','41102','component','network'), ('22986','41103','component','system'), ('22987','41104','component','system'), ('22988','41105','component','system'), ('22989','41106','component','system'), ('22990','41107','component','health'), ('22991','41107','component','network'), ('22992','41108','component','system'), ('22993','41109','component','system'), ('22994','41110','component','network'), ('22995','41111','component','health'), ('22996','41111','component','network'), ('22997','41112','component','health'), ('22998','41112','component','network'), ('22999','37293','component','cpu'), ('23002','37296','component','interface'), ('23003','37296','component','network'), ('23004','37296','interface','{#IFNAME}'), ('23005','37297','component','interface'), ('23006','37297','component','network'), ('23007','37297','interface','{#IFNAME}'), ('23008','37298','component','interface'), ('23009','37298','component','network'), ('23010','37298','interface','{#IFNAME}'), ('23011','37299','component','interface'), ('23012','37299','component','network'), ('23013','37299','interface','{#IFNAME}'), ('23014','37300','component','interface'), ('23015','37300','component','network'), ('23016','37300','interface','{#IFNAME}'), ('23017','37301','component','interface'), ('23018','37301','component','network'), ('23019','37301','interface','{#IFNAME}'), ('23020','37302','component','interface'), ('23021','37302','component','network'), ('23022','37302','interface','{#IFNAME}'), ('23023','37303','component','interface'), ('23024','37303','component','network'), ('23025','37303','interface','{#IFNAME}'), ('23026','37304','component','interface'), ('23027','37304','component','network'), ('23028','37304','interface','{#IFNAME}'), ('23029','37305','component','interface'), ('23030','37305','component','network'), ('23031','37305','interface','{#IFNAME}'), ('23032','37306','component','interface'), ('23033','37306','component','network'), ('23034','37306','interface','{#IFNAME}'), ('23035','37307','component','interface'), ('23036','37307','component','network'), ('23037','37307','interface','{#IFNAME}'), ('23038','37308','component','interface'), ('23039','37308','component','network'), ('23040','37308','interface','{#IFNAME}'), ('23041','37309','component','storage'), ('23042','37309','filesystem','{#FSNAME}'), ('23043','37310','component','storage'), ('23044','37310','filesystem','{#FSNAME}'), ('23045','37311','component','storage'), ('23046','37311','filesystem','{#FSNAME}'), ('23047','41114','component','network'), ('23048','41114','description','{#IFALIAS}'), ('23049','41114','interface','{#IFNAME}'), ('23050','41115','component','network'), ('23051','41115','description','{#IFALIAS}'), ('23052','41115','interface','{#IFNAME}'), ('23053','41116','component','network'), ('23054','41116','description','{#IFALIAS}'), ('23055','41116','interface','{#IFNAME}'), ('23056','41117','component','network'), ('23057','41117','description','{#IFALIAS}'), ('23058','41117','interface','{#IFNAME}'), ('23059','41118','component','network'), ('23060','41118','description','{#IFALIAS}'), ('23061','41118','interface','{#IFNAME}'), ('23062','41119','component','network'), ('23063','41119','description','{#IFALIAS}'), ('23064','41119','interface','{#IFNAME}'), ('23065','41120','component','network'), ('23066','41120','description','{#IFALIAS}'), ('23067','41120','interface','{#IFNAME}'), ('23068','41121','component','network'), ('23069','41121','description','{#IFALIAS}'), ('23070','41121','interface','{#IFNAME}'), ('23071','41122','component','network'), ('23072','41122','description','{#IFALIAS}'), ('23073','41122','interface','{#IFNAME}'), ('23074','37333','component','system'), ('23075','37334','component','system'), ('23076','37335','component','system'), ('23077','37336','component','os'), ('23078','37337','component','memory'), ('23079','37338','component','memory'), ('23080','37339','component','memory'), ('23081','41123','component','health'), ('23082','41123','component','network'), ('23083','41124','component','system'), ('23084','41125','component','system'), ('23085','41126','component','system'), ('23086','41127','component','system'), ('23087','41128','component','health'), ('23088','41128','component','network'), ('23089','41129','component','system'), ('23090','41130','component','system'), ('23091','41131','component','network'), ('23092','41132','component','health'), ('23093','41132','component','network'), ('23094','41133','component','health'), ('23095','41133','component','network'), ('23096','37347','component','cpu'), ('23099','37350','component','interface'), ('23100','37350','component','network'), ('23101','37350','interface','{#IFNAME}'), ('23102','37351','component','interface'), ('23103','37351','component','network'), ('23104','37351','interface','{#IFNAME}'), ('23105','37352','component','interface'), ('23106','37352','component','network'), ('23107','37352','interface','{#IFNAME}'), ('23108','37353','component','interface'), ('23109','37353','component','network'), ('23110','37353','interface','{#IFNAME}'), ('23111','37354','component','interface'), ('23112','37354','component','network'), ('23113','37354','interface','{#IFNAME}'), ('23114','37355','component','interface'), ('23115','37355','component','network'), ('23116','37355','interface','{#IFNAME}'), ('23117','37356','component','interface'), ('23118','37356','component','network'), ('23119','37356','interface','{#IFNAME}'), ('23120','37357','component','interface'), ('23121','37357','component','network'), ('23122','37357','interface','{#IFNAME}'), ('23123','37358','component','interface'), ('23124','37358','component','network'), ('23125','37358','interface','{#IFNAME}'), ('23126','37359','component','interface'), ('23127','37359','component','network'), ('23128','37359','interface','{#IFNAME}'), ('23129','37360','component','interface'), ('23130','37360','component','network'), ('23131','37360','interface','{#IFNAME}'), ('23132','37361','component','interface'), ('23133','37361','component','network'), ('23134','37361','interface','{#IFNAME}'), ('23135','37362','component','interface'), ('23136','37362','component','network'), ('23137','37362','interface','{#IFNAME}'), ('23138','37363','component','storage'), ('23139','37363','filesystem','{#FSNAME}'), ('23140','37364','component','storage'), ('23141','37364','filesystem','{#FSNAME}'), ('23142','37365','component','storage'), ('23143','37365','filesystem','{#FSNAME}'), ('23144','41135','component','network'), ('23145','41135','description','{#IFALIAS}'), ('23146','41135','interface','{#IFNAME}'), ('23147','41136','component','network'), ('23148','41136','description','{#IFALIAS}'), ('23149','41136','interface','{#IFNAME}'), ('23150','41137','component','network'), ('23151','41137','description','{#IFALIAS}'), ('23152','41137','interface','{#IFNAME}'), ('23153','41138','component','network'), ('23154','41138','description','{#IFALIAS}'), ('23155','41138','interface','{#IFNAME}'), ('23156','41139','component','network'), ('23157','41139','description','{#IFALIAS}'), ('23158','41139','interface','{#IFNAME}'), ('23159','41140','component','network'), ('23160','41140','description','{#IFALIAS}'), ('23161','41140','interface','{#IFNAME}'), ('23162','41141','component','network'), ('23163','41141','description','{#IFALIAS}'), ('23164','41141','interface','{#IFNAME}'), ('23165','41142','component','network'), ('23166','41142','description','{#IFALIAS}'), ('23167','41142','interface','{#IFNAME}'), ('23168','41143','component','network'), ('23169','41143','description','{#IFALIAS}'), ('23170','41143','interface','{#IFNAME}'), ('23171','37387','component','system'), ('23172','37388','component','system'), ('23173','37389','component','system'), ('23174','37390','component','os'), ('23175','37391','component','memory'), ('23176','37392','component','memory'), ('23177','37393','component','memory'), ('23178','41144','component','health'), ('23179','41144','component','network'), ('23180','41145','component','system'), ('23181','41146','component','system'), ('23182','41147','component','system'), ('23183','41148','component','system'), ('23184','41149','component','health'), ('23185','41149','component','network'), ('23186','41150','component','system'), ('23187','41151','component','system'), ('23188','41152','component','network'), ('23189','41153','component','health'), ('23190','41153','component','network'), ('23191','41154','component','health'), ('23192','41154','component','network'), ('23193','37401','component','cpu'), ('23196','37404','component','interface'), ('23197','37404','component','network'), ('23198','37404','interface','{#IFNAME}'), ('23199','37405','component','interface'), ('23200','37405','component','network'), ('23201','37405','interface','{#IFNAME}'), ('23202','37406','component','interface'), ('23203','37406','component','network'), ('23204','37406','interface','{#IFNAME}'), ('23205','37407','component','interface'), ('23206','37407','component','network'), ('23207','37407','interface','{#IFNAME}'), ('23208','37408','component','interface'), ('23209','37408','component','network'), ('23210','37408','interface','{#IFNAME}'), ('23211','37409','component','interface'), ('23212','37409','component','network'), ('23213','37409','interface','{#IFNAME}'), ('23214','37410','component','interface'), ('23215','37410','component','network'), ('23216','37410','interface','{#IFNAME}'), ('23217','37411','component','interface'), ('23218','37411','component','network'), ('23219','37411','interface','{#IFNAME}'), ('23220','37412','component','interface'), ('23221','37412','component','network'), ('23222','37412','interface','{#IFNAME}'), ('23223','37413','component','interface'), ('23224','37413','component','network'), ('23225','37413','interface','{#IFNAME}'), ('23226','37414','component','interface'), ('23227','37414','component','network'), ('23228','37414','interface','{#IFNAME}'), ('23229','37415','component','interface'), ('23230','37415','component','network'), ('23231','37415','interface','{#IFNAME}'), ('23232','37416','component','interface'), ('23233','37416','component','network'), ('23234','37416','interface','{#IFNAME}'), ('23235','37417','component','storage'), ('23236','37417','filesystem','{#FSNAME}'), ('23237','37418','component','storage'), ('23238','37418','filesystem','{#FSNAME}'), ('23239','37419','component','storage'), ('23240','37419','filesystem','{#FSNAME}'), ('23241','41156','component','network'), ('23242','41156','description','{#IFALIAS}'), ('23243','41156','interface','{#IFNAME}'), ('23244','41157','component','network'), ('23245','41157','description','{#IFALIAS}'), ('23246','41157','interface','{#IFNAME}'), ('23247','41158','component','network'), ('23248','41158','description','{#IFALIAS}'), ('23249','41158','interface','{#IFNAME}'), ('23250','41159','component','network'), ('23251','41159','description','{#IFALIAS}'), ('23252','41159','interface','{#IFNAME}'), ('23253','41160','component','network'), ('23254','41160','description','{#IFALIAS}'), ('23255','41160','interface','{#IFNAME}'), ('23256','41161','component','network'), ('23257','41161','description','{#IFALIAS}'), ('23258','41161','interface','{#IFNAME}'), ('23259','41162','component','network'), ('23260','41162','description','{#IFALIAS}'), ('23261','41162','interface','{#IFNAME}'), ('23262','41163','component','network'), ('23263','41163','description','{#IFALIAS}'), ('23264','41163','interface','{#IFNAME}'), ('23265','41164','component','network'), ('23266','41164','description','{#IFALIAS}'), ('23267','41164','interface','{#IFNAME}'), ('23268','37441','component','system'), ('23269','37442','component','system'), ('23270','37443','component','system'), ('23271','37444','component','os'), ('23272','37445','component','memory'), ('23273','37446','component','memory'), ('23274','37447','component','memory'), ('23275','41165','component','health'), ('23276','41165','component','network'), ('23277','41166','component','system'), ('23278','41167','component','system'), ('23279','41168','component','system'), ('23280','41169','component','system'), ('23281','41170','component','health'), ('23282','41170','component','network'), ('23283','41171','component','system'), ('23284','41172','component','system'), ('23285','41173','component','network'), ('23286','41174','component','health'), ('23287','41174','component','network'), ('23288','41175','component','health'), ('23289','41175','component','network'), ('23290','37455','component','cpu'), ('23293','37458','component','interface'), ('23294','37458','component','network'), ('23295','37458','interface','{#IFNAME}'), ('23296','37459','component','interface'), ('23297','37459','component','network'), ('23298','37459','interface','{#IFNAME}'), ('23299','37460','component','interface'), ('23300','37460','component','network'), ('23301','37460','interface','{#IFNAME}'), ('23302','37461','component','interface'), ('23303','37461','component','network'), ('23304','37461','interface','{#IFNAME}'), ('23305','37462','component','interface'), ('23306','37462','component','network'), ('23307','37462','interface','{#IFNAME}'), ('23308','37463','component','interface'), ('23309','37463','component','network'), ('23310','37463','interface','{#IFNAME}'), ('23311','37464','component','interface'), ('23312','37464','component','network'), ('23313','37464','interface','{#IFNAME}'), ('23314','37465','component','interface'), ('23315','37465','component','network'), ('23316','37465','interface','{#IFNAME}'), ('23317','37466','component','interface'), ('23318','37466','component','network'), ('23319','37466','interface','{#IFNAME}'), ('23320','37467','component','interface'), ('23321','37467','component','network'), ('23322','37467','interface','{#IFNAME}'), ('23323','37468','component','interface'), ('23324','37468','component','network'), ('23325','37468','interface','{#IFNAME}'), ('23326','37469','component','interface'), ('23327','37469','component','network'), ('23328','37469','interface','{#IFNAME}'), ('23329','37470','component','interface'), ('23330','37470','component','network'), ('23331','37470','interface','{#IFNAME}'), ('23332','37471','component','storage'), ('23333','37471','filesystem','{#FSNAME}'), ('23334','37472','component','storage'), ('23335','37472','filesystem','{#FSNAME}'), ('23336','37473','component','storage'), ('23337','37473','filesystem','{#FSNAME}'), ('23338','41177','component','network'), ('23339','41177','description','{#IFALIAS}'), ('23340','41177','interface','{#IFNAME}'), ('23341','41178','component','network'), ('23342','41178','description','{#IFALIAS}'), ('23343','41178','interface','{#IFNAME}'), ('23344','41179','component','network'), ('23345','41179','description','{#IFALIAS}'), ('23346','41179','interface','{#IFNAME}'), ('23347','41180','component','network'), ('23348','41180','description','{#IFALIAS}'), ('23349','41180','interface','{#IFNAME}'), ('23350','41181','component','network'), ('23351','41181','description','{#IFALIAS}'), ('23352','41181','interface','{#IFNAME}'), ('23353','41182','component','network'), ('23354','41182','description','{#IFALIAS}'), ('23355','41182','interface','{#IFNAME}'), ('23356','41183','component','network'), ('23357','41183','description','{#IFALIAS}'), ('23358','41183','interface','{#IFNAME}'), ('23359','41184','component','network'), ('23360','41184','description','{#IFALIAS}'), ('23361','41184','interface','{#IFNAME}'), ('23362','41185','component','network'), ('23363','41185','description','{#IFALIAS}'), ('23364','41185','interface','{#IFNAME}'), ('23365','37495','component','system'), ('23366','37496','component','system'), ('23367','37497','component','system'), ('23368','37498','component','os'), ('23369','37499','component','memory'), ('23370','37500','component','memory'), ('23371','37501','component','memory'), ('23372','41186','component','health'), ('23373','41186','component','network'), ('23374','41187','component','system'), ('23375','41188','component','system'), ('23376','41189','component','system'), ('23377','41190','component','system'), ('23378','41191','component','health'), ('23379','41191','component','network'), ('23380','41192','component','system'), ('23381','41193','component','system'), ('23382','41194','component','network'), ('23383','41195','component','health'), ('23384','41195','component','network'), ('23385','41196','component','health'), ('23386','41196','component','network'), ('23387','37509','component','cpu'), ('23390','37512','component','interface'), ('23391','37512','component','network'), ('23392','37512','interface','{#IFNAME}'), ('23393','37513','component','interface'), ('23394','37513','component','network'), ('23395','37513','interface','{#IFNAME}'), ('23396','37514','component','interface'), ('23397','37514','component','network'), ('23398','37514','interface','{#IFNAME}'), ('23399','37515','component','interface'), ('23400','37515','component','network'), ('23401','37515','interface','{#IFNAME}'), ('23402','37516','component','interface'), ('23403','37516','component','network'), ('23404','37516','interface','{#IFNAME}'), ('23405','37517','component','interface'), ('23406','37517','component','network'), ('23407','37517','interface','{#IFNAME}'), ('23408','37518','component','interface'), ('23409','37518','component','network'), ('23410','37518','interface','{#IFNAME}'), ('23411','37519','component','interface'), ('23412','37519','component','network'), ('23413','37519','interface','{#IFNAME}'), ('23414','37520','component','interface'), ('23415','37520','component','network'), ('23416','37520','interface','{#IFNAME}'), ('23417','37521','component','interface'), ('23418','37521','component','network'), ('23419','37521','interface','{#IFNAME}'), ('23420','37522','component','interface'), ('23421','37522','component','network'), ('23422','37522','interface','{#IFNAME}'), ('23423','37523','component','interface'), ('23424','37523','component','network'), ('23425','37523','interface','{#IFNAME}'), ('23426','37524','component','interface'), ('23427','37524','component','network'), ('23428','37524','interface','{#IFNAME}'), ('23429','37525','component','storage'), ('23430','37525','filesystem','{#FSNAME}'), ('23431','37526','component','storage'), ('23432','37526','filesystem','{#FSNAME}'), ('23433','37527','component','storage'), ('23434','37527','filesystem','{#FSNAME}'), ('23435','41198','component','network'), ('23436','41198','description','{#IFALIAS}'), ('23437','41198','interface','{#IFNAME}'), ('23438','41199','component','network'), ('23439','41199','description','{#IFALIAS}'), ('23440','41199','interface','{#IFNAME}'), ('23441','41200','component','network'), ('23442','41200','description','{#IFALIAS}'), ('23443','41200','interface','{#IFNAME}'), ('23444','41201','component','network'), ('23445','41201','description','{#IFALIAS}'), ('23446','41201','interface','{#IFNAME}'), ('23447','41202','component','network'), ('23448','41202','description','{#IFALIAS}'), ('23449','41202','interface','{#IFNAME}'), ('23450','41203','component','network'), ('23451','41203','description','{#IFALIAS}'), ('23452','41203','interface','{#IFNAME}'), ('23453','41204','component','network'), ('23454','41204','description','{#IFALIAS}'), ('23455','41204','interface','{#IFNAME}'), ('23456','41205','component','network'), ('23457','41205','description','{#IFALIAS}'), ('23458','41205','interface','{#IFNAME}'), ('23459','41206','component','network'), ('23460','41206','description','{#IFALIAS}'), ('23461','41206','interface','{#IFNAME}'), ('23462','37549','component','system'), ('23463','37550','component','system'), ('23464','37551','component','system'), ('23465','37552','component','os'), ('23466','37553','component','memory'), ('23467','37554','component','memory'), ('23468','37555','component','memory'), ('23469','41207','component','health'), ('23470','41207','component','network'), ('23471','41208','component','system'), ('23472','41209','component','system'), ('23473','41210','component','system'), ('23474','41211','component','system'), ('23475','41212','component','health'), ('23476','41212','component','network'), ('23477','41213','component','system'), ('23478','41214','component','system'), ('23479','41215','component','network'), ('23480','41216','component','health'), ('23481','41216','component','network'), ('23482','41217','component','health'), ('23483','41217','component','network'), ('23484','37563','component','cpu'), ('23487','37566','component','interface'), ('23488','37566','component','network'), ('23489','37566','interface','{#IFNAME}'), ('23490','37567','component','interface'), ('23491','37567','component','network'), ('23492','37567','interface','{#IFNAME}'), ('23493','37568','component','interface'), ('23494','37568','component','network'), ('23495','37568','interface','{#IFNAME}'), ('23496','37569','component','interface'), ('23497','37569','component','network'), ('23498','37569','interface','{#IFNAME}'), ('23499','37570','component','interface'), ('23500','37570','component','network'), ('23501','37570','interface','{#IFNAME}'), ('23502','37571','component','interface'), ('23503','37571','component','network'), ('23504','37571','interface','{#IFNAME}'), ('23505','37572','component','interface'), ('23506','37572','component','network'), ('23507','37572','interface','{#IFNAME}'), ('23508','37573','component','interface'), ('23509','37573','component','network'), ('23510','37573','interface','{#IFNAME}'), ('23511','37574','component','interface'), ('23512','37574','component','network'), ('23513','37574','interface','{#IFNAME}'), ('23514','37575','component','interface'), ('23515','37575','component','network'), ('23516','37575','interface','{#IFNAME}'), ('23517','37576','component','interface'), ('23518','37576','component','network'), ('23519','37576','interface','{#IFNAME}'), ('23520','37577','component','interface'), ('23521','37577','component','network'), ('23522','37577','interface','{#IFNAME}'), ('23523','37578','component','interface'), ('23524','37578','component','network'), ('23525','37578','interface','{#IFNAME}'), ('23526','37579','component','storage'), ('23527','37579','filesystem','{#FSNAME}'), ('23528','37580','component','storage'), ('23529','37580','filesystem','{#FSNAME}'), ('23530','37581','component','storage'), ('23531','37581','filesystem','{#FSNAME}'), ('23532','41219','component','network'), ('23533','41219','description','{#IFALIAS}'), ('23534','41219','interface','{#IFNAME}'), ('23535','41220','component','network'), ('23536','41220','description','{#IFALIAS}'), ('23537','41220','interface','{#IFNAME}'), ('23538','41221','component','network'), ('23539','41221','description','{#IFALIAS}'), ('23540','41221','interface','{#IFNAME}'), ('23541','41222','component','network'), ('23542','41222','description','{#IFALIAS}'), ('23543','41222','interface','{#IFNAME}'), ('23544','41223','component','network'), ('23545','41223','description','{#IFALIAS}'), ('23546','41223','interface','{#IFNAME}'), ('23547','41224','component','network'), ('23548','41224','description','{#IFALIAS}'), ('23549','41224','interface','{#IFNAME}'), ('23550','41225','component','network'), ('23551','41225','description','{#IFALIAS}'), ('23552','41225','interface','{#IFNAME}'), ('23553','41226','component','network'), ('23554','41226','description','{#IFALIAS}'), ('23555','41226','interface','{#IFNAME}'), ('23556','41227','component','network'), ('23557','41227','description','{#IFALIAS}'), ('23558','41227','interface','{#IFNAME}'), ('23559','37603','component','system'), ('23560','37604','component','system'), ('23561','37605','component','system'), ('23562','37606','component','os'), ('23563','37607','component','memory'), ('23564','37608','component','memory'), ('23565','37609','component','memory'), ('23566','41228','component','health'), ('23567','41228','component','network'), ('23568','41229','component','system'), ('23569','41230','component','system'), ('23570','41231','component','system'), ('23571','41232','component','system'), ('23572','41233','component','health'), ('23573','41233','component','network'), ('23574','41234','component','system'), ('23575','41235','component','system'), ('23576','41236','component','network'), ('23577','41237','component','health'), ('23578','41237','component','network'), ('23579','41238','component','health'), ('23580','41238','component','network'), ('23581','37617','component','cpu'), ('23584','37620','component','interface'), ('23585','37620','component','network'), ('23586','37620','interface','{#IFNAME}'), ('23587','37621','component','interface'), ('23588','37621','component','network'), ('23589','37621','interface','{#IFNAME}'), ('23590','37622','component','interface'), ('23591','37622','component','network'), ('23592','37622','interface','{#IFNAME}'), ('23593','37623','component','interface'), ('23594','37623','component','network'), ('23595','37623','interface','{#IFNAME}'), ('23596','37624','component','interface'), ('23597','37624','component','network'), ('23598','37624','interface','{#IFNAME}'), ('23599','37625','component','interface'), ('23600','37625','component','network'), ('23601','37625','interface','{#IFNAME}'), ('23602','37626','component','interface'), ('23603','37626','component','network'), ('23604','37626','interface','{#IFNAME}'), ('23605','37627','component','interface'), ('23606','37627','component','network'), ('23607','37627','interface','{#IFNAME}'), ('23608','37628','component','interface'), ('23609','37628','component','network'), ('23610','37628','interface','{#IFNAME}'), ('23611','37629','component','interface'), ('23612','37629','component','network'), ('23613','37629','interface','{#IFNAME}'), ('23614','37630','component','interface'), ('23615','37630','component','network'), ('23616','37630','interface','{#IFNAME}'), ('23617','37631','component','interface'), ('23618','37631','component','network'), ('23619','37631','interface','{#IFNAME}'), ('23620','37632','component','interface'), ('23621','37632','component','network'), ('23622','37632','interface','{#IFNAME}'), ('23623','37633','component','storage'), ('23624','37633','filesystem','{#FSNAME}'), ('23625','37634','component','storage'), ('23626','37634','filesystem','{#FSNAME}'), ('23627','37635','component','storage'), ('23628','37635','filesystem','{#FSNAME}'), ('23629','41240','component','network'), ('23630','41240','description','{#IFALIAS}'), ('23631','41240','interface','{#IFNAME}'), ('23632','41241','component','network'), ('23633','41241','description','{#IFALIAS}'), ('23634','41241','interface','{#IFNAME}'), ('23635','41242','component','network'), ('23636','41242','description','{#IFALIAS}'), ('23637','41242','interface','{#IFNAME}'), ('23638','41243','component','network'), ('23639','41243','description','{#IFALIAS}'), ('23640','41243','interface','{#IFNAME}'), ('23641','41244','component','network'), ('23642','41244','description','{#IFALIAS}'), ('23643','41244','interface','{#IFNAME}'), ('23644','41245','component','network'), ('23645','41245','description','{#IFALIAS}'), ('23646','41245','interface','{#IFNAME}'), ('23647','41246','component','network'), ('23648','41246','description','{#IFALIAS}'), ('23649','41246','interface','{#IFNAME}'), ('23650','41247','component','network'), ('23651','41247','description','{#IFALIAS}'), ('23652','41247','interface','{#IFNAME}'), ('23653','41248','component','network'), ('23654','41248','description','{#IFALIAS}'), ('23655','41248','interface','{#IFNAME}'), ('23656','37657','component','system'), ('23657','37658','component','system'), ('23658','37659','component','system'), ('23659','37660','component','os'), ('23660','37661','component','memory'), ('23661','37662','component','memory'), ('23662','37663','component','memory'), ('23663','41249','component','health'), ('23664','41249','component','network'), ('23665','41250','component','system'), ('23666','41251','component','system'), ('23667','41252','component','system'), ('23668','41253','component','system'), ('23669','41254','component','health'), ('23670','41254','component','network'), ('23671','41255','component','system'), ('23672','41256','component','system'), ('23673','41257','component','network'), ('23674','41258','component','health'), ('23675','41258','component','network'), ('23676','41259','component','health'), ('23677','41259','component','network'), ('23678','37671','component','cpu'), ('23681','37674','component','interface'), ('23682','37674','component','network'), ('23683','37674','interface','{#IFNAME}'), ('23684','37675','component','interface'), ('23685','37675','component','network'), ('23686','37675','interface','{#IFNAME}'), ('23687','37676','component','interface'), ('23688','37676','component','network'), ('23689','37676','interface','{#IFNAME}'), ('23690','37677','component','interface'), ('23691','37677','component','network'), ('23692','37677','interface','{#IFNAME}'), ('23693','37678','component','interface'), ('23694','37678','component','network'), ('23695','37678','interface','{#IFNAME}'), ('23696','37679','component','interface'), ('23697','37679','component','network'), ('23698','37679','interface','{#IFNAME}'), ('23699','37680','component','interface'), ('23700','37680','component','network'), ('23701','37680','interface','{#IFNAME}'), ('23702','37681','component','interface'), ('23703','37681','component','network'), ('23704','37681','interface','{#IFNAME}'), ('23705','37682','component','interface'), ('23706','37682','component','network'), ('23707','37682','interface','{#IFNAME}'), ('23708','37683','component','interface'), ('23709','37683','component','network'), ('23710','37683','interface','{#IFNAME}'), ('23711','37684','component','interface'), ('23712','37684','component','network'), ('23713','37684','interface','{#IFNAME}'), ('23714','37685','component','interface'), ('23715','37685','component','network'), ('23716','37685','interface','{#IFNAME}'), ('23717','37686','component','interface'), ('23718','37686','component','network'), ('23719','37686','interface','{#IFNAME}'), ('23720','37687','component','storage'), ('23721','37687','filesystem','{#FSNAME}'), ('23722','37688','component','storage'), ('23723','37688','filesystem','{#FSNAME}'), ('23724','37689','component','storage'), ('23725','37689','filesystem','{#FSNAME}'), ('23726','41261','component','network'), ('23727','41261','description','{#IFALIAS}'), ('23728','41261','interface','{#IFNAME}'), ('23729','41262','component','network'), ('23730','41262','description','{#IFALIAS}'), ('23731','41262','interface','{#IFNAME}'), ('23732','41263','component','network'), ('23733','41263','description','{#IFALIAS}'), ('23734','41263','interface','{#IFNAME}'), ('23735','41264','component','network'), ('23736','41264','description','{#IFALIAS}'), ('23737','41264','interface','{#IFNAME}'), ('23738','41265','component','network'), ('23739','41265','description','{#IFALIAS}'), ('23740','41265','interface','{#IFNAME}'), ('23741','41266','component','network'), ('23742','41266','description','{#IFALIAS}'), ('23743','41266','interface','{#IFNAME}'), ('23744','41267','component','network'), ('23745','41267','description','{#IFALIAS}'), ('23746','41267','interface','{#IFNAME}'), ('23747','41268','component','network'), ('23748','41268','description','{#IFALIAS}'), ('23749','41268','interface','{#IFNAME}'), ('23750','41269','component','network'), ('23751','41269','description','{#IFALIAS}'), ('23752','41269','interface','{#IFNAME}'), ('23753','37711','component','system'), ('23754','37712','component','system'), ('23755','37713','component','system'), ('23756','37714','component','os'), ('23757','37715','component','memory'), ('23758','37716','component','memory'), ('23759','37717','component','memory'), ('23760','41270','component','health'), ('23761','41270','component','network'), ('23762','41271','component','system'), ('23763','41272','component','system'), ('23764','41273','component','system'), ('23765','41274','component','system'), ('23766','41275','component','health'), ('23767','41275','component','network'), ('23768','41276','component','system'), ('23769','41277','component','system'), ('23770','41278','component','network'), ('23771','41279','component','health'), ('23772','41279','component','network'), ('23773','41280','component','health'), ('23774','41280','component','network'), ('23775','37725','component','cpu'), ('23778','37728','component','interface'), ('23779','37728','component','network'), ('23780','37728','interface','{#IFNAME}'), ('23781','37729','component','interface'), ('23782','37729','component','network'), ('23783','37729','interface','{#IFNAME}'), ('23784','37730','component','interface'), ('23785','37730','component','network'), ('23786','37730','interface','{#IFNAME}'), ('23787','37731','component','interface'), ('23788','37731','component','network'), ('23789','37731','interface','{#IFNAME}'), ('23790','37732','component','interface'), ('23791','37732','component','network'), ('23792','37732','interface','{#IFNAME}'), ('23793','37733','component','interface'), ('23794','37733','component','network'), ('23795','37733','interface','{#IFNAME}'), ('23796','37734','component','interface'), ('23797','37734','component','network'), ('23798','37734','interface','{#IFNAME}'), ('23799','37735','component','interface'), ('23800','37735','component','network'), ('23801','37735','interface','{#IFNAME}'), ('23802','37736','component','interface'), ('23803','37736','component','network'), ('23804','37736','interface','{#IFNAME}'), ('23805','37737','component','interface'), ('23806','37737','component','network'), ('23807','37737','interface','{#IFNAME}'), ('23808','37738','component','interface'), ('23809','37738','component','network'), ('23810','37738','interface','{#IFNAME}'), ('23811','37739','component','interface'), ('23812','37739','component','network'), ('23813','37739','interface','{#IFNAME}'), ('23814','37740','component','interface'), ('23815','37740','component','network'), ('23816','37740','interface','{#IFNAME}'), ('23817','37741','component','storage'), ('23818','37741','filesystem','{#FSNAME}'), ('23819','37742','component','storage'), ('23820','37742','filesystem','{#FSNAME}'), ('23821','37743','component','storage'), ('23822','37743','filesystem','{#FSNAME}'), ('23823','41282','component','network'), ('23824','41282','description','{#IFALIAS}'), ('23825','41282','interface','{#IFNAME}'), ('23826','41283','component','network'), ('23827','41283','description','{#IFALIAS}'), ('23828','41283','interface','{#IFNAME}'), ('23829','41284','component','network'), ('23830','41284','description','{#IFALIAS}'), ('23831','41284','interface','{#IFNAME}'), ('23832','41285','component','network'), ('23833','41285','description','{#IFALIAS}'), ('23834','41285','interface','{#IFNAME}'), ('23835','41286','component','network'), ('23836','41286','description','{#IFALIAS}'), ('23837','41286','interface','{#IFNAME}'), ('23838','41287','component','network'), ('23839','41287','description','{#IFALIAS}'), ('23840','41287','interface','{#IFNAME}'), ('23841','41288','component','network'), ('23842','41288','description','{#IFALIAS}'), ('23843','41288','interface','{#IFNAME}'), ('23844','41289','component','network'), ('23845','41289','description','{#IFALIAS}'), ('23846','41289','interface','{#IFNAME}'), ('23847','41290','component','network'), ('23848','41290','description','{#IFALIAS}'), ('23849','41290','interface','{#IFNAME}'), ('23850','37765','component','system'), ('23851','37766','component','system'), ('23852','37767','component','system'), ('23853','37768','component','os'), ('23854','37769','component','memory'), ('23855','37770','component','memory'), ('23856','37771','component','memory'), ('23857','41291','component','health'), ('23858','41291','component','network'), ('23859','41292','component','system'), ('23860','41293','component','system'), ('23861','41294','component','system'), ('23862','41295','component','system'), ('23863','41296','component','health'), ('23864','41296','component','network'), ('23865','41297','component','system'), ('23866','41298','component','system'), ('23867','41299','component','network'), ('23868','41300','component','health'), ('23869','41300','component','network'), ('23870','41301','component','health'), ('23871','41301','component','network'), ('23872','37779','component','cpu'), ('23875','37782','component','interface'), ('23876','37782','component','network'), ('23877','37782','interface','{#IFNAME}'), ('23878','37783','component','interface'), ('23879','37783','component','network'), ('23880','37783','interface','{#IFNAME}'), ('23881','37784','component','interface'), ('23882','37784','component','network'), ('23883','37784','interface','{#IFNAME}'), ('23884','37785','component','interface'), ('23885','37785','component','network'), ('23886','37785','interface','{#IFNAME}'), ('23887','37786','component','interface'), ('23888','37786','component','network'), ('23889','37786','interface','{#IFNAME}'), ('23890','37787','component','interface'), ('23891','37787','component','network'), ('23892','37787','interface','{#IFNAME}'), ('23893','37788','component','interface'), ('23894','37788','component','network'), ('23895','37788','interface','{#IFNAME}'), ('23896','37789','component','interface'), ('23897','37789','component','network'), ('23898','37789','interface','{#IFNAME}'), ('23899','37790','component','interface'), ('23900','37790','component','network'), ('23901','37790','interface','{#IFNAME}'), ('23902','37791','component','interface'), ('23903','37791','component','network'), ('23904','37791','interface','{#IFNAME}'), ('23905','37792','component','interface'), ('23906','37792','component','network'), ('23907','37792','interface','{#IFNAME}'), ('23908','37793','component','interface'), ('23909','37793','component','network'), ('23910','37793','interface','{#IFNAME}'), ('23911','37794','component','interface'), ('23912','37794','component','network'), ('23913','37794','interface','{#IFNAME}'), ('23914','37795','component','storage'), ('23915','37795','filesystem','{#FSNAME}'), ('23916','37796','component','storage'), ('23917','37796','filesystem','{#FSNAME}'), ('23918','37797','component','storage'), ('23919','37797','filesystem','{#FSNAME}'), ('23920','41303','component','network'), ('23921','41303','description','{#IFALIAS}'), ('23922','41303','interface','{#IFNAME}'), ('23923','41304','component','network'), ('23924','41304','description','{#IFALIAS}'), ('23925','41304','interface','{#IFNAME}'), ('23926','41305','component','network'), ('23927','41305','description','{#IFALIAS}'), ('23928','41305','interface','{#IFNAME}'), ('23929','41306','component','network'), ('23930','41306','description','{#IFALIAS}'), ('23931','41306','interface','{#IFNAME}'), ('23932','41307','component','network'), ('23933','41307','description','{#IFALIAS}'), ('23934','41307','interface','{#IFNAME}'), ('23935','41308','component','network'), ('23936','41308','description','{#IFALIAS}'), ('23937','41308','interface','{#IFNAME}'), ('23938','41309','component','network'), ('23939','41309','description','{#IFALIAS}'), ('23940','41309','interface','{#IFNAME}'), ('23941','41310','component','network'), ('23942','41310','description','{#IFALIAS}'), ('23943','41310','interface','{#IFNAME}'), ('23944','41311','component','network'), ('23945','41311','description','{#IFALIAS}'), ('23946','41311','interface','{#IFNAME}'), ('23947','37819','component','system'), ('23948','37820','component','system'), ('23949','37821','component','system'), ('23950','37822','component','os'), ('23951','37823','component','memory'), ('23952','37824','component','memory'), ('23953','37825','component','memory'), ('23954','41312','component','health'), ('23955','41312','component','network'), ('23956','41313','component','system'), ('23957','41314','component','system'), ('23958','41315','component','system'), ('23959','41316','component','system'), ('23960','41317','component','health'), ('23961','41317','component','network'), ('23962','41318','component','system'), ('23963','41319','component','system'), ('23964','41320','component','network'), ('23965','41321','component','health'), ('23966','41321','component','network'), ('23967','41322','component','health'), ('23968','41322','component','network'), ('23969','37833','component','cpu'), ('23972','37836','component','interface'), ('23973','37836','component','network'), ('23974','37836','interface','{#IFNAME}'), ('23975','37837','component','interface'), ('23976','37837','component','network'), ('23977','37837','interface','{#IFNAME}'), ('23978','37838','component','interface'), ('23979','37838','component','network'), ('23980','37838','interface','{#IFNAME}'), ('23981','37839','component','interface'), ('23982','37839','component','network'), ('23983','37839','interface','{#IFNAME}'), ('23984','37840','component','interface'), ('23985','37840','component','network'), ('23986','37840','interface','{#IFNAME}'), ('23987','37841','component','interface'), ('23988','37841','component','network'), ('23989','37841','interface','{#IFNAME}'), ('23990','37842','component','interface'), ('23991','37842','component','network'), ('23992','37842','interface','{#IFNAME}'), ('23993','37843','component','interface'), ('23994','37843','component','network'), ('23995','37843','interface','{#IFNAME}'), ('23996','37844','component','interface'), ('23997','37844','component','network'), ('23998','37844','interface','{#IFNAME}'), ('23999','37845','component','interface'), ('24000','37845','component','network'), ('24001','37845','interface','{#IFNAME}'), ('24002','37846','component','interface'), ('24003','37846','component','network'), ('24004','37846','interface','{#IFNAME}'), ('24005','37847','component','interface'), ('24006','37847','component','network'), ('24007','37847','interface','{#IFNAME}'), ('24008','37848','component','interface'), ('24009','37848','component','network'), ('24010','37848','interface','{#IFNAME}'), ('24011','37849','component','storage'), ('24012','37849','filesystem','{#FSNAME}'), ('24013','37850','component','storage'), ('24014','37850','filesystem','{#FSNAME}'), ('24015','37851','component','storage'), ('24016','37851','filesystem','{#FSNAME}'), ('24017','41324','component','network'), ('24018','41324','description','{#IFALIAS}'), ('24019','41324','interface','{#IFNAME}'), ('24020','41325','component','network'), ('24021','41325','description','{#IFALIAS}'), ('24022','41325','interface','{#IFNAME}'), ('24023','41326','component','network'), ('24024','41326','description','{#IFALIAS}'), ('24025','41326','interface','{#IFNAME}'), ('24026','41327','component','network'), ('24027','41327','description','{#IFALIAS}'), ('24028','41327','interface','{#IFNAME}'), ('24029','41328','component','network'), ('24030','41328','description','{#IFALIAS}'), ('24031','41328','interface','{#IFNAME}'), ('24032','41329','component','network'), ('24033','41329','description','{#IFALIAS}'), ('24034','41329','interface','{#IFNAME}'), ('24035','41330','component','network'), ('24036','41330','description','{#IFALIAS}'), ('24037','41330','interface','{#IFNAME}'), ('24038','41331','component','network'), ('24039','41331','description','{#IFALIAS}'), ('24040','41331','interface','{#IFNAME}'), ('24041','41332','component','network'), ('24042','41332','description','{#IFALIAS}'), ('24043','41332','interface','{#IFNAME}'), ('24044','37873','component','system'), ('24045','37874','component','system'), ('24046','37875','component','system'), ('24047','37876','component','os'), ('24048','37877','component','memory'), ('24049','37878','component','memory'), ('24050','37879','component','memory'), ('24051','41333','component','health'), ('24052','41333','component','network'), ('24053','41334','component','system'), ('24054','41335','component','system'), ('24055','41336','component','system'), ('24056','41337','component','system'), ('24057','41338','component','health'), ('24058','41338','component','network'), ('24059','41339','component','system'), ('24060','41340','component','system'), ('24061','41341','component','network'), ('24062','41342','component','health'), ('24063','41342','component','network'), ('24064','41343','component','health'), ('24065','41343','component','network'), ('24066','37887','component','cpu'), ('24069','37890','component','interface'), ('24070','37890','component','network'), ('24071','37890','interface','{#IFNAME}'), ('24072','37891','component','interface'), ('24073','37891','component','network'), ('24074','37891','interface','{#IFNAME}'), ('24075','37892','component','interface'), ('24076','37892','component','network'), ('24077','37892','interface','{#IFNAME}'), ('24078','37893','component','interface'), ('24079','37893','component','network'), ('24080','37893','interface','{#IFNAME}'), ('24081','37894','component','interface'), ('24082','37894','component','network'), ('24083','37894','interface','{#IFNAME}'), ('24084','37895','component','interface'), ('24085','37895','component','network'), ('24086','37895','interface','{#IFNAME}'), ('24087','37896','component','interface'), ('24088','37896','component','network'), ('24089','37896','interface','{#IFNAME}'), ('24090','37897','component','interface'), ('24091','37897','component','network'), ('24092','37897','interface','{#IFNAME}'), ('24093','37898','component','interface'), ('24094','37898','component','network'), ('24095','37898','interface','{#IFNAME}'), ('24096','37899','component','interface'), ('24097','37899','component','network'), ('24098','37899','interface','{#IFNAME}'), ('24099','37900','component','interface'), ('24100','37900','component','network'), ('24101','37900','interface','{#IFNAME}'), ('24102','37901','component','interface'), ('24103','37901','component','network'), ('24104','37901','interface','{#IFNAME}'), ('24105','37902','component','interface'), ('24106','37902','component','network'), ('24107','37902','interface','{#IFNAME}'), ('24108','37903','component','storage'), ('24109','37903','filesystem','{#FSNAME}'), ('24110','37904','component','storage'), ('24111','37904','filesystem','{#FSNAME}'), ('24112','37905','component','storage'), ('24113','37905','filesystem','{#FSNAME}'), ('24114','41345','component','network'), ('24115','41345','description','{#IFALIAS}'), ('24116','41345','interface','{#IFNAME}'), ('24117','41346','component','network'), ('24118','41346','description','{#IFALIAS}'), ('24119','41346','interface','{#IFNAME}'), ('24120','41347','component','network'), ('24121','41347','description','{#IFALIAS}'), ('24122','41347','interface','{#IFNAME}'), ('24123','41348','component','network'), ('24124','41348','description','{#IFALIAS}'), ('24125','41348','interface','{#IFNAME}'), ('24126','41349','component','network'), ('24127','41349','description','{#IFALIAS}'), ('24128','41349','interface','{#IFNAME}'), ('24129','41350','component','network'), ('24130','41350','description','{#IFALIAS}'), ('24131','41350','interface','{#IFNAME}'), ('24132','41351','component','network'), ('24133','41351','description','{#IFALIAS}'), ('24134','41351','interface','{#IFNAME}'), ('24135','41352','component','network'), ('24136','41352','description','{#IFALIAS}'), ('24137','41352','interface','{#IFNAME}'), ('24138','41353','component','network'), ('24139','41353','description','{#IFALIAS}'), ('24140','41353','interface','{#IFNAME}'), ('24141','37927','component','system'), ('24142','37928','component','system'), ('24143','37929','component','system'), ('24144','37930','component','os'), ('24145','37931','component','memory'), ('24146','37932','component','memory'), ('24147','37933','component','memory'), ('24148','41354','component','health'), ('24149','41354','component','network'), ('24150','41355','component','system'), ('24151','41356','component','system'), ('24152','41357','component','system'), ('24153','41358','component','system'), ('24154','41359','component','health'), ('24155','41359','component','network'), ('24156','41360','component','system'), ('24157','41361','component','system'), ('24158','41362','component','network'), ('24159','41363','component','health'), ('24160','41363','component','network'), ('24161','41364','component','health'), ('24162','41364','component','network'), ('24163','37941','component','cpu'), ('24166','37944','component','interface'), ('24167','37944','component','network'), ('24168','37944','interface','{#IFNAME}'), ('24169','37945','component','interface'), ('24170','37945','component','network'), ('24171','37945','interface','{#IFNAME}'), ('24172','37946','component','interface'), ('24173','37946','component','network'), ('24174','37946','interface','{#IFNAME}'), ('24175','37947','component','interface'), ('24176','37947','component','network'), ('24177','37947','interface','{#IFNAME}'), ('24178','37948','component','interface'), ('24179','37948','component','network'), ('24180','37948','interface','{#IFNAME}'), ('24181','37949','component','interface'), ('24182','37949','component','network'), ('24183','37949','interface','{#IFNAME}'), ('24184','37950','component','interface'), ('24185','37950','component','network'), ('24186','37950','interface','{#IFNAME}'), ('24187','37951','component','interface'), ('24188','37951','component','network'), ('24189','37951','interface','{#IFNAME}'), ('24190','37952','component','interface'), ('24191','37952','component','network'), ('24192','37952','interface','{#IFNAME}'), ('24193','37953','component','interface'), ('24194','37953','component','network'), ('24195','37953','interface','{#IFNAME}'), ('24196','37954','component','interface'), ('24197','37954','component','network'), ('24198','37954','interface','{#IFNAME}'), ('24199','37955','component','interface'), ('24200','37955','component','network'), ('24201','37955','interface','{#IFNAME}'), ('24202','37956','component','interface'), ('24203','37956','component','network'), ('24204','37956','interface','{#IFNAME}'), ('24205','37957','component','storage'), ('24206','37957','filesystem','{#FSNAME}'), ('24207','37958','component','storage'), ('24208','37958','filesystem','{#FSNAME}'), ('24209','37959','component','storage'), ('24210','37959','filesystem','{#FSNAME}'), ('24211','41366','component','network'), ('24212','41366','description','{#IFALIAS}'), ('24213','41366','interface','{#IFNAME}'), ('24214','41367','component','network'), ('24215','41367','description','{#IFALIAS}'), ('24216','41367','interface','{#IFNAME}'), ('24217','41368','component','network'), ('24218','41368','description','{#IFALIAS}'), ('24219','41368','interface','{#IFNAME}'), ('24220','41369','component','network'), ('24221','41369','description','{#IFALIAS}'), ('24222','41369','interface','{#IFNAME}'), ('24223','41370','component','network'), ('24224','41370','description','{#IFALIAS}'), ('24225','41370','interface','{#IFNAME}'), ('24226','41371','component','network'), ('24227','41371','description','{#IFALIAS}'), ('24228','41371','interface','{#IFNAME}'), ('24229','41372','component','network'), ('24230','41372','description','{#IFALIAS}'), ('24231','41372','interface','{#IFNAME}'), ('24232','41373','component','network'), ('24233','41373','description','{#IFALIAS}'), ('24234','41373','interface','{#IFNAME}'), ('24235','41374','component','network'), ('24236','41374','description','{#IFALIAS}'), ('24237','41374','interface','{#IFNAME}'), ('24238','37981','component','system'), ('24239','37982','component','system'), ('24240','37983','component','system'), ('24241','37984','component','os'), ('24242','37985','component','memory'), ('24243','37986','component','memory'), ('24244','37987','component','memory'), ('24245','41375','component','health'), ('24246','41375','component','network'), ('24247','41376','component','system'), ('24248','41377','component','system'), ('24249','41378','component','system'), ('24250','41379','component','system'), ('24251','41380','component','health'), ('24252','41380','component','network'), ('24253','41381','component','system'), ('24254','41382','component','system'), ('24255','41383','component','network'), ('24256','41384','component','health'), ('24257','41384','component','network'), ('24258','41385','component','health'), ('24259','41385','component','network'), ('24260','37995','component','cpu'), ('24263','37998','component','interface'), ('24264','37998','component','network'), ('24265','37998','interface','{#IFNAME}'), ('24266','37999','component','interface'), ('24267','37999','component','network'), ('24268','37999','interface','{#IFNAME}'), ('24269','38000','component','interface'), ('24270','38000','component','network'), ('24271','38000','interface','{#IFNAME}'), ('24272','38001','component','interface'), ('24273','38001','component','network'), ('24274','38001','interface','{#IFNAME}'), ('24275','38002','component','interface'), ('24276','38002','component','network'), ('24277','38002','interface','{#IFNAME}'), ('24278','38003','component','interface'), ('24279','38003','component','network'), ('24280','38003','interface','{#IFNAME}'), ('24281','38004','component','interface'), ('24282','38004','component','network'), ('24283','38004','interface','{#IFNAME}'), ('24284','38005','component','interface'), ('24285','38005','component','network'), ('24286','38005','interface','{#IFNAME}'), ('24287','38006','component','interface'), ('24288','38006','component','network'), ('24289','38006','interface','{#IFNAME}'), ('24290','38007','component','interface'), ('24291','38007','component','network'), ('24292','38007','interface','{#IFNAME}'), ('24293','38008','component','interface'), ('24294','38008','component','network'), ('24295','38008','interface','{#IFNAME}'), ('24296','38009','component','interface'), ('24297','38009','component','network'), ('24298','38009','interface','{#IFNAME}'), ('24299','38010','component','interface'), ('24300','38010','component','network'), ('24301','38010','interface','{#IFNAME}'), ('24302','38011','component','storage'), ('24303','38011','filesystem','{#FSNAME}'), ('24304','38012','component','storage'), ('24305','38012','filesystem','{#FSNAME}'), ('24306','38013','component','storage'), ('24307','38013','filesystem','{#FSNAME}'), ('24308','41387','component','network'), ('24309','41387','description','{#IFALIAS}'), ('24310','41387','interface','{#IFNAME}'), ('24311','41388','component','network'), ('24312','41388','description','{#IFALIAS}'), ('24313','41388','interface','{#IFNAME}'), ('24314','41389','component','network'), ('24315','41389','description','{#IFALIAS}'), ('24316','41389','interface','{#IFNAME}'), ('24317','41390','component','network'), ('24318','41390','description','{#IFALIAS}'), ('24319','41390','interface','{#IFNAME}'), ('24320','41391','component','network'), ('24321','41391','description','{#IFALIAS}'), ('24322','41391','interface','{#IFNAME}'), ('24323','41392','component','network'), ('24324','41392','description','{#IFALIAS}'), ('24325','41392','interface','{#IFNAME}'), ('24326','41393','component','network'), ('24327','41393','description','{#IFALIAS}'), ('24328','41393','interface','{#IFNAME}'), ('24329','41394','component','network'), ('24330','41394','description','{#IFALIAS}'), ('24331','41394','interface','{#IFNAME}'), ('24332','41395','component','network'), ('24333','41395','description','{#IFALIAS}'), ('24334','41395','interface','{#IFNAME}'), ('24335','38035','component','system'), ('24336','38036','component','system'), ('24337','38037','component','system'), ('24338','38038','component','os'), ('24339','38039','component','memory'), ('24340','38040','component','memory'), ('24341','38041','component','memory'), ('24342','41396','component','health'), ('24343','41396','component','network'), ('24344','41397','component','system'), ('24345','41398','component','system'), ('24346','41399','component','system'), ('24347','41400','component','system'), ('24348','41401','component','health'), ('24349','41401','component','network'), ('24350','41402','component','system'), ('24351','41403','component','system'), ('24352','41404','component','network'), ('24353','41405','component','health'), ('24354','41405','component','network'), ('24355','41406','component','health'), ('24356','41406','component','network'), ('24357','38049','component','cpu'), ('24360','38052','component','interface'), ('24361','38052','component','network'), ('24362','38052','interface','{#IFNAME}'), ('24363','38053','component','interface'), ('24364','38053','component','network'), ('24365','38053','interface','{#IFNAME}'), ('24366','38054','component','interface'), ('24367','38054','component','network'), ('24368','38054','interface','{#IFNAME}'), ('24369','38055','component','interface'), ('24370','38055','component','network'), ('24371','38055','interface','{#IFNAME}'), ('24372','38056','component','interface'), ('24373','38056','component','network'), ('24374','38056','interface','{#IFNAME}'), ('24375','38057','component','interface'), ('24376','38057','component','network'), ('24377','38057','interface','{#IFNAME}'), ('24378','38058','component','interface'), ('24379','38058','component','network'), ('24380','38058','interface','{#IFNAME}'), ('24381','38059','component','interface'), ('24382','38059','component','network'), ('24383','38059','interface','{#IFNAME}'), ('24384','38060','component','interface'), ('24385','38060','component','network'), ('24386','38060','interface','{#IFNAME}'), ('24387','38061','component','interface'), ('24388','38061','component','network'), ('24389','38061','interface','{#IFNAME}'), ('24390','38062','component','interface'), ('24391','38062','component','network'), ('24392','38062','interface','{#IFNAME}'), ('24393','38063','component','interface'), ('24394','38063','component','network'), ('24395','38063','interface','{#IFNAME}'), ('24396','38064','component','interface'), ('24397','38064','component','network'), ('24398','38064','interface','{#IFNAME}'), ('24399','38065','component','storage'), ('24400','38065','filesystem','{#FSNAME}'), ('24401','38066','component','storage'), ('24402','38066','filesystem','{#FSNAME}'), ('24403','38067','component','storage'), ('24404','38067','filesystem','{#FSNAME}'), ('24405','41408','component','network'), ('24406','41408','description','{#IFALIAS}'), ('24407','41408','interface','{#IFNAME}'), ('24408','41409','component','network'), ('24409','41409','description','{#IFALIAS}'), ('24410','41409','interface','{#IFNAME}'), ('24411','41410','component','network'), ('24412','41410','description','{#IFALIAS}'), ('24413','41410','interface','{#IFNAME}'), ('24414','41411','component','network'), ('24415','41411','description','{#IFALIAS}'), ('24416','41411','interface','{#IFNAME}'), ('24417','41412','component','network'), ('24418','41412','description','{#IFALIAS}'), ('24419','41412','interface','{#IFNAME}'), ('24420','41413','component','network'), ('24421','41413','description','{#IFALIAS}'), ('24422','41413','interface','{#IFNAME}'), ('24423','41414','component','network'), ('24424','41414','description','{#IFALIAS}'), ('24425','41414','interface','{#IFNAME}'), ('24426','41415','component','network'), ('24427','41415','description','{#IFALIAS}'), ('24428','41415','interface','{#IFNAME}'), ('24429','41416','component','network'), ('24430','41416','description','{#IFALIAS}'), ('24431','41416','interface','{#IFNAME}'), ('24432','38089','component','system'), ('24433','38090','component','system'), ('24434','38091','component','system'), ('24435','38092','component','os'), ('24436','38093','component','memory'), ('24437','38094','component','memory'), ('24438','38095','component','memory'), ('24439','41417','component','health'), ('24440','41417','component','network'), ('24441','41418','component','system'), ('24442','41419','component','system'), ('24443','41420','component','system'), ('24444','41421','component','system'), ('24445','41422','component','health'), ('24446','41422','component','network'), ('24447','41423','component','system'), ('24448','41424','component','system'), ('24449','41425','component','network'), ('24450','41426','component','health'), ('24451','41426','component','network'), ('24452','41427','component','health'), ('24453','41427','component','network'), ('24454','38103','component','cpu'), ('24457','38106','component','interface'), ('24458','38106','component','network'), ('24459','38106','interface','{#IFNAME}'), ('24460','38107','component','interface'), ('24461','38107','component','network'), ('24462','38107','interface','{#IFNAME}'), ('24463','38108','component','interface'), ('24464','38108','component','network'), ('24465','38108','interface','{#IFNAME}'), ('24466','38109','component','interface'), ('24467','38109','component','network'), ('24468','38109','interface','{#IFNAME}'), ('24469','38110','component','interface'), ('24470','38110','component','network'), ('24471','38110','interface','{#IFNAME}'), ('24472','38111','component','interface'), ('24473','38111','component','network'), ('24474','38111','interface','{#IFNAME}'), ('24475','38112','component','interface'), ('24476','38112','component','network'), ('24477','38112','interface','{#IFNAME}'), ('24478','38113','component','interface'), ('24479','38113','component','network'), ('24480','38113','interface','{#IFNAME}'), ('24481','38114','component','interface'), ('24482','38114','component','network'), ('24483','38114','interface','{#IFNAME}'), ('24484','38115','component','interface'), ('24485','38115','component','network'), ('24486','38115','interface','{#IFNAME}'), ('24487','38116','component','interface'), ('24488','38116','component','network'), ('24489','38116','interface','{#IFNAME}'), ('24490','38117','component','interface'), ('24491','38117','component','network'), ('24492','38117','interface','{#IFNAME}'), ('24493','38118','component','interface'), ('24494','38118','component','network'), ('24495','38118','interface','{#IFNAME}'), ('24496','38119','component','storage'), ('24497','38119','filesystem','{#FSNAME}'), ('24498','38120','component','storage'), ('24499','38120','filesystem','{#FSNAME}'), ('24500','38121','component','storage'), ('24501','38121','filesystem','{#FSNAME}'), ('24502','41429','component','network'), ('24503','41429','description','{#IFALIAS}'), ('24504','41429','interface','{#IFNAME}'), ('24505','41430','component','network'), ('24506','41430','description','{#IFALIAS}'), ('24507','41430','interface','{#IFNAME}'), ('24508','41431','component','network'), ('24509','41431','description','{#IFALIAS}'), ('24510','41431','interface','{#IFNAME}'), ('24511','41432','component','network'), ('24512','41432','description','{#IFALIAS}'), ('24513','41432','interface','{#IFNAME}'), ('24514','41433','component','network'), ('24515','41433','description','{#IFALIAS}'), ('24516','41433','interface','{#IFNAME}'), ('24517','41434','component','network'), ('24518','41434','description','{#IFALIAS}'), ('24519','41434','interface','{#IFNAME}'), ('24520','41435','component','network'), ('24521','41435','description','{#IFALIAS}'), ('24522','41435','interface','{#IFNAME}'), ('24523','41436','component','network'), ('24524','41436','description','{#IFALIAS}'), ('24525','41436','interface','{#IFNAME}'), ('24526','41437','component','network'), ('24527','41437','description','{#IFALIAS}'), ('24528','41437','interface','{#IFNAME}'), ('24529','38143','component','system'), ('24530','38144','component','system'), ('24531','38145','component','system'), ('24532','38146','component','os'), ('24533','38147','component','memory'), ('24534','38148','component','memory'), ('24535','38149','component','memory'), ('24536','41438','component','health'), ('24537','41438','component','network'), ('24538','41439','component','system'), ('24539','41440','component','system'), ('24540','41441','component','system'), ('24541','41442','component','system'), ('24542','41443','component','health'), ('24543','41443','component','network'), ('24544','41444','component','system'), ('24545','41445','component','system'), ('24546','41446','component','network'), ('24547','41447','component','health'), ('24548','41447','component','network'), ('24549','41448','component','health'), ('24550','41448','component','network'), ('24551','38157','component','cpu'), ('24554','38160','component','interface'), ('24555','38160','component','network'), ('24556','38160','interface','{#IFNAME}'), ('24557','38161','component','interface'), ('24558','38161','component','network'), ('24559','38161','interface','{#IFNAME}'), ('24560','38162','component','interface'), ('24561','38162','component','network'), ('24562','38162','interface','{#IFNAME}'), ('24563','38163','component','interface'), ('24564','38163','component','network'), ('24565','38163','interface','{#IFNAME}'), ('24566','38164','component','interface'), ('24567','38164','component','network'), ('24568','38164','interface','{#IFNAME}'), ('24569','38165','component','interface'), ('24570','38165','component','network'), ('24571','38165','interface','{#IFNAME}'), ('24572','38166','component','interface'), ('24573','38166','component','network'), ('24574','38166','interface','{#IFNAME}'), ('24575','38167','component','interface'), ('24576','38167','component','network'), ('24577','38167','interface','{#IFNAME}'), ('24578','38168','component','interface'), ('24579','38168','component','network'), ('24580','38168','interface','{#IFNAME}'), ('24581','38169','component','interface'), ('24582','38169','component','network'), ('24583','38169','interface','{#IFNAME}'), ('24584','38170','component','interface'), ('24585','38170','component','network'), ('24586','38170','interface','{#IFNAME}'), ('24587','38171','component','interface'), ('24588','38171','component','network'), ('24589','38171','interface','{#IFNAME}'), ('24590','38172','component','interface'), ('24591','38172','component','network'), ('24592','38172','interface','{#IFNAME}'), ('24593','38173','component','storage'), ('24594','38173','filesystem','{#FSNAME}'), ('24595','38174','component','storage'), ('24596','38174','filesystem','{#FSNAME}'), ('24597','38175','component','storage'), ('24598','38175','filesystem','{#FSNAME}'), ('24599','41450','component','network'), ('24600','41450','description','{#IFALIAS}'), ('24601','41450','interface','{#IFNAME}'), ('24602','41451','component','network'), ('24603','41451','description','{#IFALIAS}'), ('24604','41451','interface','{#IFNAME}'), ('24605','41452','component','network'), ('24606','41452','description','{#IFALIAS}'), ('24607','41452','interface','{#IFNAME}'), ('24608','41453','component','network'), ('24609','41453','description','{#IFALIAS}'), ('24610','41453','interface','{#IFNAME}'), ('24611','41454','component','network'), ('24612','41454','description','{#IFALIAS}'), ('24613','41454','interface','{#IFNAME}'), ('24614','41455','component','network'), ('24615','41455','description','{#IFALIAS}'), ('24616','41455','interface','{#IFNAME}'), ('24617','41456','component','network'), ('24618','41456','description','{#IFALIAS}'), ('24619','41456','interface','{#IFNAME}'), ('24620','41457','component','network'), ('24621','41457','description','{#IFALIAS}'), ('24622','41457','interface','{#IFNAME}'), ('24623','41458','component','network'), ('24624','41458','description','{#IFALIAS}'), ('24625','41458','interface','{#IFNAME}'), ('24626','38197','component','system'), ('24627','38198','component','system'), ('24628','38199','component','system'), ('24629','38200','component','os'), ('24630','38201','component','memory'), ('24631','38202','component','memory'), ('24632','38203','component','memory'), ('24633','41459','component','health'), ('24634','41459','component','network'), ('24635','41460','component','system'), ('24636','41461','component','system'), ('24637','41462','component','system'), ('24638','41463','component','system'), ('24639','41464','component','health'), ('24640','41464','component','network'), ('24641','41465','component','system'), ('24642','41466','component','system'), ('24643','41467','component','network'), ('24644','41468','component','health'), ('24645','41468','component','network'), ('24646','41469','component','health'), ('24647','41469','component','network'), ('24648','38211','component','cpu'), ('24651','38214','component','interface'), ('24652','38214','component','network'), ('24653','38214','interface','{#IFNAME}'), ('24654','38215','component','interface'), ('24655','38215','component','network'), ('24656','38215','interface','{#IFNAME}'), ('24657','38216','component','interface'), ('24658','38216','component','network'), ('24659','38216','interface','{#IFNAME}'), ('24660','38217','component','interface'), ('24661','38217','component','network'), ('24662','38217','interface','{#IFNAME}'), ('24663','38218','component','interface'), ('24664','38218','component','network'), ('24665','38218','interface','{#IFNAME}'), ('24666','38219','component','interface'), ('24667','38219','component','network'), ('24668','38219','interface','{#IFNAME}'), ('24669','38220','component','interface'), ('24670','38220','component','network'), ('24671','38220','interface','{#IFNAME}'), ('24672','38221','component','interface'), ('24673','38221','component','network'), ('24674','38221','interface','{#IFNAME}'), ('24675','38222','component','interface'), ('24676','38222','component','network'), ('24677','38222','interface','{#IFNAME}'), ('24678','38223','component','interface'), ('24679','38223','component','network'), ('24680','38223','interface','{#IFNAME}'), ('24681','38224','component','interface'), ('24682','38224','component','network'), ('24683','38224','interface','{#IFNAME}'), ('24684','38225','component','interface'), ('24685','38225','component','network'), ('24686','38225','interface','{#IFNAME}'), ('24687','38226','component','interface'), ('24688','38226','component','network'), ('24689','38226','interface','{#IFNAME}'), ('24690','38227','component','storage'), ('24691','38227','filesystem','{#FSNAME}'), ('24692','38228','component','storage'), ('24693','38228','filesystem','{#FSNAME}'), ('24694','38229','component','storage'), ('24695','38229','filesystem','{#FSNAME}'), ('24696','41471','component','network'), ('24697','41471','description','{#IFALIAS}'), ('24698','41471','interface','{#IFNAME}'), ('24699','41472','component','network'), ('24700','41472','description','{#IFALIAS}'), ('24701','41472','interface','{#IFNAME}'), ('24702','41473','component','network'), ('24703','41473','description','{#IFALIAS}'), ('24704','41473','interface','{#IFNAME}'), ('24705','41474','component','network'), ('24706','41474','description','{#IFALIAS}'), ('24707','41474','interface','{#IFNAME}'), ('24708','41475','component','network'), ('24709','41475','description','{#IFALIAS}'), ('24710','41475','interface','{#IFNAME}'), ('24711','41476','component','network'), ('24712','41476','description','{#IFALIAS}'), ('24713','41476','interface','{#IFNAME}'), ('24714','41477','component','network'), ('24715','41477','description','{#IFALIAS}'), ('24716','41477','interface','{#IFNAME}'), ('24717','41478','component','network'), ('24718','41478','description','{#IFALIAS}'), ('24719','41478','interface','{#IFNAME}'), ('24720','41479','component','network'), ('24721','41479','description','{#IFALIAS}'), ('24722','41479','interface','{#IFNAME}'), ('24723','38251','component','system'), ('24724','38252','component','system'), ('24725','38253','component','system'), ('24726','38254','component','os'), ('24727','38255','component','memory'), ('24728','38256','component','memory'), ('24729','38257','component','memory'), ('24730','41480','component','health'), ('24731','41480','component','network'), ('24732','41481','component','system'), ('24733','41482','component','system'), ('24734','41483','component','system'), ('24735','41484','component','system'), ('24736','41485','component','health'), ('24737','41485','component','network'), ('24738','41486','component','system'), ('24739','41487','component','system'), ('24740','41488','component','network'), ('24741','41489','component','health'), ('24742','41489','component','network'), ('24743','41490','component','health'), ('24744','41490','component','network'), ('24745','38265','component','cpu'), ('24748','38268','component','interface'), ('24749','38268','component','network'), ('24750','38268','interface','{#IFNAME}'), ('24751','38269','component','interface'), ('24752','38269','component','network'), ('24753','38269','interface','{#IFNAME}'), ('24754','38270','component','interface'), ('24755','38270','component','network'), ('24756','38270','interface','{#IFNAME}'), ('24757','38271','component','interface'), ('24758','38271','component','network'), ('24759','38271','interface','{#IFNAME}'), ('24760','38272','component','interface'), ('24761','38272','component','network'), ('24762','38272','interface','{#IFNAME}'), ('24763','38273','component','interface'), ('24764','38273','component','network'), ('24765','38273','interface','{#IFNAME}'), ('24766','38274','component','interface'), ('24767','38274','component','network'), ('24768','38274','interface','{#IFNAME}'), ('24769','38275','component','interface'), ('24770','38275','component','network'), ('24771','38275','interface','{#IFNAME}'), ('24772','38276','component','interface'), ('24773','38276','component','network'), ('24774','38276','interface','{#IFNAME}'), ('24775','38277','component','interface'), ('24776','38277','component','network'), ('24777','38277','interface','{#IFNAME}'), ('24778','38278','component','interface'), ('24779','38278','component','network'), ('24780','38278','interface','{#IFNAME}'), ('24781','38279','component','interface'), ('24782','38279','component','network'), ('24783','38279','interface','{#IFNAME}'), ('24784','38280','component','interface'), ('24785','38280','component','network'), ('24786','38280','interface','{#IFNAME}'), ('24787','38281','component','storage'), ('24788','38281','filesystem','{#FSNAME}'), ('24789','38282','component','storage'), ('24790','38282','filesystem','{#FSNAME}'), ('24791','38283','component','storage'), ('24792','38283','filesystem','{#FSNAME}'), ('24793','41492','component','network'), ('24794','41492','description','{#IFALIAS}'), ('24795','41492','interface','{#IFNAME}'), ('24796','41493','component','network'), ('24797','41493','description','{#IFALIAS}'), ('24798','41493','interface','{#IFNAME}'), ('24799','41494','component','network'), ('24800','41494','description','{#IFALIAS}'), ('24801','41494','interface','{#IFNAME}'), ('24802','41495','component','network'), ('24803','41495','description','{#IFALIAS}'), ('24804','41495','interface','{#IFNAME}'), ('24805','41496','component','network'), ('24806','41496','description','{#IFALIAS}'), ('24807','41496','interface','{#IFNAME}'), ('24808','41497','component','network'), ('24809','41497','description','{#IFALIAS}'), ('24810','41497','interface','{#IFNAME}'), ('24811','41498','component','network'), ('24812','41498','description','{#IFALIAS}'), ('24813','41498','interface','{#IFNAME}'), ('24814','41499','component','network'), ('24815','41499','description','{#IFALIAS}'), ('24816','41499','interface','{#IFNAME}'), ('24817','41500','component','network'), ('24818','41500','description','{#IFALIAS}'), ('24819','41500','interface','{#IFNAME}'), ('24820','38305','component','system'), ('24821','38306','component','system'), ('24822','38307','component','system'), ('24823','38308','component','os'), ('24824','38309','component','memory'), ('24825','38310','component','memory'), ('24826','38311','component','memory'), ('24827','41501','component','health'), ('24828','41501','component','network'), ('24829','41502','component','system'), ('24830','41503','component','system'), ('24831','41504','component','system'), ('24832','41505','component','system'), ('24833','41506','component','health'), ('24834','41506','component','network'), ('24835','41507','component','system'), ('24836','41508','component','system'), ('24837','41509','component','network'), ('24838','41510','component','health'), ('24839','41510','component','network'), ('24840','41511','component','health'), ('24841','41511','component','network'), ('24842','38319','component','cpu'), ('24845','38322','component','interface'), ('24846','38322','component','network'), ('24847','38322','interface','{#IFNAME}'), ('24848','38323','component','interface'), ('24849','38323','component','network'), ('24850','38323','interface','{#IFNAME}'), ('24851','38324','component','interface'), ('24852','38324','component','network'), ('24853','38324','interface','{#IFNAME}'), ('24854','38325','component','interface'), ('24855','38325','component','network'), ('24856','38325','interface','{#IFNAME}'), ('24857','38326','component','interface'), ('24858','38326','component','network'), ('24859','38326','interface','{#IFNAME}'), ('24860','38327','component','interface'), ('24861','38327','component','network'), ('24862','38327','interface','{#IFNAME}'), ('24863','38328','component','interface'), ('24864','38328','component','network'), ('24865','38328','interface','{#IFNAME}'), ('24866','38329','component','interface'), ('24867','38329','component','network'), ('24868','38329','interface','{#IFNAME}'), ('24869','38330','component','interface'), ('24870','38330','component','network'), ('24871','38330','interface','{#IFNAME}'), ('24872','38331','component','interface'), ('24873','38331','component','network'), ('24874','38331','interface','{#IFNAME}'), ('24875','38332','component','interface'), ('24876','38332','component','network'), ('24877','38332','interface','{#IFNAME}'), ('24878','38333','component','interface'), ('24879','38333','component','network'), ('24880','38333','interface','{#IFNAME}'), ('24881','38334','component','interface'), ('24882','38334','component','network'), ('24883','38334','interface','{#IFNAME}'), ('24884','38335','component','storage'), ('24885','38335','filesystem','{#FSNAME}'), ('24886','38336','component','storage'), ('24887','38336','filesystem','{#FSNAME}'), ('24888','38337','component','storage'), ('24889','38337','filesystem','{#FSNAME}'), ('24890','41513','component','network'), ('24891','41513','description','{#IFALIAS}'), ('24892','41513','interface','{#IFNAME}'), ('24893','41514','component','network'), ('24894','41514','description','{#IFALIAS}'), ('24895','41514','interface','{#IFNAME}'), ('24896','41515','component','network'), ('24897','41515','description','{#IFALIAS}'), ('24898','41515','interface','{#IFNAME}'), ('24899','41516','component','network'), ('24900','41516','description','{#IFALIAS}'), ('24901','41516','interface','{#IFNAME}'), ('24902','41517','component','network'), ('24903','41517','description','{#IFALIAS}'), ('24904','41517','interface','{#IFNAME}'), ('24905','41518','component','network'), ('24906','41518','description','{#IFALIAS}'), ('24907','41518','interface','{#IFNAME}'), ('24908','41519','component','network'), ('24909','41519','description','{#IFALIAS}'), ('24910','41519','interface','{#IFNAME}'), ('24911','41520','component','network'), ('24912','41520','description','{#IFALIAS}'), ('24913','41520','interface','{#IFNAME}'), ('24914','41521','component','network'), ('24915','41521','description','{#IFALIAS}'), ('24916','41521','interface','{#IFNAME}'), ('24917','38359','component','system'), ('24918','38360','component','system'), ('24919','38361','component','system'), ('24920','38362','component','os'), ('24921','38363','component','memory'), ('24922','38364','component','memory'), ('24923','38365','component','memory'), ('24924','41522','component','health'), ('24925','41522','component','network'), ('24926','41523','component','system'), ('24927','41524','component','system'), ('24928','41525','component','system'), ('24929','41526','component','system'), ('24930','41527','component','health'), ('24931','41527','component','network'), ('24932','41528','component','system'), ('24933','41529','component','system'), ('24934','41530','component','network'), ('24935','41531','component','health'), ('24936','41531','component','network'), ('24937','41532','component','health'), ('24938','41532','component','network'), ('24939','38373','component','cpu'), ('24942','38376','component','interface'), ('24943','38376','component','network'), ('24944','38376','interface','{#IFNAME}'), ('24945','38377','component','interface'), ('24946','38377','component','network'), ('24947','38377','interface','{#IFNAME}'), ('24948','38378','component','interface'), ('24949','38378','component','network'), ('24950','38378','interface','{#IFNAME}'), ('24951','38379','component','interface'), ('24952','38379','component','network'), ('24953','38379','interface','{#IFNAME}'), ('24954','38380','component','interface'), ('24955','38380','component','network'), ('24956','38380','interface','{#IFNAME}'), ('24957','38381','component','interface'), ('24958','38381','component','network'), ('24959','38381','interface','{#IFNAME}'), ('24960','38382','component','interface'), ('24961','38382','component','network'), ('24962','38382','interface','{#IFNAME}'), ('24963','38383','component','interface'), ('24964','38383','component','network'), ('24965','38383','interface','{#IFNAME}'), ('24966','38384','component','interface'), ('24967','38384','component','network'), ('24968','38384','interface','{#IFNAME}'), ('24969','38385','component','interface'), ('24970','38385','component','network'), ('24971','38385','interface','{#IFNAME}'), ('24972','38386','component','interface'), ('24973','38386','component','network'), ('24974','38386','interface','{#IFNAME}'), ('24975','38387','component','interface'), ('24976','38387','component','network'), ('24977','38387','interface','{#IFNAME}'), ('24978','38388','component','interface'), ('24979','38388','component','network'), ('24980','38388','interface','{#IFNAME}'), ('24981','38389','component','storage'), ('24982','38389','filesystem','{#FSNAME}'), ('24983','38390','component','storage'), ('24984','38390','filesystem','{#FSNAME}'), ('24985','38391','component','storage'), ('24986','38391','filesystem','{#FSNAME}'), ('24987','41534','component','network'), ('24988','41534','description','{#IFALIAS}'), ('24989','41534','interface','{#IFNAME}'), ('24990','41535','component','network'), ('24991','41535','description','{#IFALIAS}'), ('24992','41535','interface','{#IFNAME}'), ('24993','41536','component','network'), ('24994','41536','description','{#IFALIAS}'), ('24995','41536','interface','{#IFNAME}'), ('24996','41537','component','network'), ('24997','41537','description','{#IFALIAS}'), ('24998','41537','interface','{#IFNAME}'), ('24999','41538','component','network'), ('25000','41538','description','{#IFALIAS}'), ('25001','41538','interface','{#IFNAME}'), ('25002','41539','component','network'), ('25003','41539','description','{#IFALIAS}'), ('25004','41539','interface','{#IFNAME}'), ('25005','41540','component','network'), ('25006','41540','description','{#IFALIAS}'), ('25007','41540','interface','{#IFNAME}'), ('25008','41541','component','network'), ('25009','41541','description','{#IFALIAS}'), ('25010','41541','interface','{#IFNAME}'), ('25011','41542','component','network'), ('25012','41542','description','{#IFALIAS}'), ('25013','41542','interface','{#IFNAME}'), ('25014','38413','component','system'), ('25015','38414','component','system'), ('25016','38415','component','system'), ('25017','38416','component','os'), ('25018','38417','component','memory'), ('25019','38418','component','memory'), ('25020','38419','component','memory'), ('25021','41543','component','health'), ('25022','41543','component','network'), ('25023','41544','component','system'), ('25024','41545','component','system'), ('25025','41546','component','system'), ('25026','41547','component','system'), ('25027','41548','component','health'), ('25028','41548','component','network'), ('25029','41549','component','system'), ('25030','41550','component','system'), ('25031','41551','component','network'), ('25032','41552','component','health'), ('25033','41552','component','network'), ('25034','41553','component','health'), ('25035','41553','component','network'), ('25036','38427','component','cpu'), ('25039','38430','component','interface'), ('25040','38430','component','network'), ('25041','38430','interface','{#IFNAME}'), ('25042','38431','component','interface'), ('25043','38431','component','network'), ('25044','38431','interface','{#IFNAME}'), ('25045','38432','component','interface'), ('25046','38432','component','network'), ('25047','38432','interface','{#IFNAME}'), ('25048','38433','component','interface'), ('25049','38433','component','network'), ('25050','38433','interface','{#IFNAME}'), ('25051','38434','component','interface'), ('25052','38434','component','network'), ('25053','38434','interface','{#IFNAME}'), ('25054','38435','component','interface'), ('25055','38435','component','network'), ('25056','38435','interface','{#IFNAME}'), ('25057','38436','component','interface'), ('25058','38436','component','network'), ('25059','38436','interface','{#IFNAME}'), ('25060','38437','component','interface'), ('25061','38437','component','network'), ('25062','38437','interface','{#IFNAME}'), ('25063','38438','component','interface'), ('25064','38438','component','network'), ('25065','38438','interface','{#IFNAME}'), ('25066','38439','component','interface'), ('25067','38439','component','network'), ('25068','38439','interface','{#IFNAME}'), ('25069','38440','component','interface'), ('25070','38440','component','network'), ('25071','38440','interface','{#IFNAME}'), ('25072','38441','component','interface'), ('25073','38441','component','network'), ('25074','38441','interface','{#IFNAME}'), ('25075','38442','component','interface'), ('25076','38442','component','network'), ('25077','38442','interface','{#IFNAME}'), ('25078','38443','component','storage'), ('25079','38443','filesystem','{#FSNAME}'), ('25080','38444','component','storage'), ('25081','38444','filesystem','{#FSNAME}'), ('25082','38445','component','storage'), ('25083','38445','filesystem','{#FSNAME}'), ('25084','41555','component','network'), ('25085','41555','description','{#IFALIAS}'), ('25086','41555','interface','{#IFNAME}'), ('25087','41556','component','network'), ('25088','41556','description','{#IFALIAS}'), ('25089','41556','interface','{#IFNAME}'), ('25090','41557','component','network'), ('25091','41557','description','{#IFALIAS}'), ('25092','41557','interface','{#IFNAME}'), ('25093','41558','component','network'), ('25094','41558','description','{#IFALIAS}'), ('25095','41558','interface','{#IFNAME}'), ('25096','41559','component','network'), ('25097','41559','description','{#IFALIAS}'), ('25098','41559','interface','{#IFNAME}'), ('25099','41560','component','network'), ('25100','41560','description','{#IFALIAS}'), ('25101','41560','interface','{#IFNAME}'), ('25102','41561','component','network'), ('25103','41561','description','{#IFALIAS}'), ('25104','41561','interface','{#IFNAME}'), ('25105','41562','component','network'), ('25106','41562','description','{#IFALIAS}'), ('25107','41562','interface','{#IFNAME}'), ('25108','41563','component','network'), ('25109','41563','description','{#IFALIAS}'), ('25110','41563','interface','{#IFNAME}'), ('25111','38467','component','system'), ('25112','38468','component','system'), ('25113','38469','component','system'), ('25114','38470','component','os'), ('25115','38471','component','memory'), ('25116','38472','component','memory'), ('25117','38473','component','memory'), ('25118','41564','component','health'), ('25119','41564','component','network'), ('25120','41565','component','system'), ('25121','41566','component','system'), ('25122','41567','component','system'), ('25123','41568','component','system'), ('25124','41569','component','health'), ('25125','41569','component','network'), ('25126','41570','component','system'), ('25127','41571','component','system'), ('25128','41572','component','network'), ('25129','41573','component','health'), ('25130','41573','component','network'), ('25131','41574','component','health'), ('25132','41574','component','network'), ('25133','38481','component','cpu'), ('25136','38484','component','interface'), ('25137','38484','component','network'), ('25138','38484','interface','{#IFNAME}'), ('25139','38485','component','interface'), ('25140','38485','component','network'), ('25141','38485','interface','{#IFNAME}'), ('25142','38486','component','interface'), ('25143','38486','component','network'), ('25144','38486','interface','{#IFNAME}'), ('25145','38487','component','interface'), ('25146','38487','component','network'), ('25147','38487','interface','{#IFNAME}'), ('25148','38488','component','interface'), ('25149','38488','component','network'), ('25150','38488','interface','{#IFNAME}'), ('25151','38489','component','interface'), ('25152','38489','component','network'), ('25153','38489','interface','{#IFNAME}'), ('25154','38490','component','interface'), ('25155','38490','component','network'), ('25156','38490','interface','{#IFNAME}'), ('25157','38491','component','interface'), ('25158','38491','component','network'), ('25159','38491','interface','{#IFNAME}'), ('25160','38492','component','interface'), ('25161','38492','component','network'), ('25162','38492','interface','{#IFNAME}'), ('25163','38493','component','interface'), ('25164','38493','component','network'), ('25165','38493','interface','{#IFNAME}'), ('25166','38494','component','interface'), ('25167','38494','component','network'), ('25168','38494','interface','{#IFNAME}'), ('25169','38495','component','interface'), ('25170','38495','component','network'), ('25171','38495','interface','{#IFNAME}'), ('25172','38496','component','interface'), ('25173','38496','component','network'), ('25174','38496','interface','{#IFNAME}'), ('25175','38497','component','storage'), ('25176','38497','filesystem','{#FSNAME}'), ('25177','38498','component','storage'), ('25178','38498','filesystem','{#FSNAME}'), ('25179','38499','component','storage'), ('25180','38499','filesystem','{#FSNAME}'), ('25181','41576','component','network'), ('25182','41576','description','{#IFALIAS}'), ('25183','41576','interface','{#IFNAME}'), ('25184','41577','component','network'), ('25185','41577','description','{#IFALIAS}'), ('25186','41577','interface','{#IFNAME}'), ('25187','41578','component','network'), ('25188','41578','description','{#IFALIAS}'), ('25189','41578','interface','{#IFNAME}'), ('25190','41579','component','network'), ('25191','41579','description','{#IFALIAS}'), ('25192','41579','interface','{#IFNAME}'), ('25193','41580','component','network'), ('25194','41580','description','{#IFALIAS}'), ('25195','41580','interface','{#IFNAME}'), ('25196','41581','component','network'), ('25197','41581','description','{#IFALIAS}'), ('25198','41581','interface','{#IFNAME}'), ('25199','41582','component','network'), ('25200','41582','description','{#IFALIAS}'), ('25201','41582','interface','{#IFNAME}'), ('25202','41583','component','network'), ('25203','41583','description','{#IFALIAS}'), ('25204','41583','interface','{#IFNAME}'), ('25205','41584','component','network'), ('25206','41584','description','{#IFALIAS}'), ('25207','41584','interface','{#IFNAME}'), ('25208','38521','component','system'), ('25209','38522','component','system'), ('25210','38523','component','system'), ('25211','38524','component','os'), ('25212','38525','component','memory'), ('25213','38526','component','memory'), ('25214','38527','component','memory'), ('25215','41585','component','health'), ('25216','41585','component','network'), ('25217','41586','component','system'), ('25218','41587','component','system'), ('25219','41588','component','system'), ('25220','41589','component','system'), ('25221','41590','component','health'), ('25222','41590','component','network'), ('25223','41591','component','system'), ('25224','41592','component','system'), ('25225','41593','component','network'), ('25226','41594','component','health'), ('25227','41594','component','network'), ('25228','41595','component','health'), ('25229','41595','component','network'), ('25230','38535','component','cpu'), ('25233','38538','component','interface'), ('25234','38538','component','network'), ('25235','38538','interface','{#IFNAME}'), ('25236','38539','component','interface'), ('25237','38539','component','network'), ('25238','38539','interface','{#IFNAME}'), ('25239','38540','component','interface'), ('25240','38540','component','network'), ('25241','38540','interface','{#IFNAME}'), ('25242','38541','component','interface'), ('25243','38541','component','network'), ('25244','38541','interface','{#IFNAME}'), ('25245','38542','component','interface'), ('25246','38542','component','network'), ('25247','38542','interface','{#IFNAME}'), ('25248','38543','component','interface'), ('25249','38543','component','network'), ('25250','38543','interface','{#IFNAME}'), ('25251','38544','component','interface'), ('25252','38544','component','network'), ('25253','38544','interface','{#IFNAME}'), ('25254','38545','component','interface'), ('25255','38545','component','network'), ('25256','38545','interface','{#IFNAME}'), ('25257','38546','component','interface'), ('25258','38546','component','network'), ('25259','38546','interface','{#IFNAME}'), ('25260','38547','component','interface'), ('25261','38547','component','network'), ('25262','38547','interface','{#IFNAME}'), ('25263','38548','component','interface'), ('25264','38548','component','network'), ('25265','38548','interface','{#IFNAME}'), ('25266','38549','component','interface'), ('25267','38549','component','network'), ('25268','38549','interface','{#IFNAME}'), ('25269','38550','component','interface'), ('25270','38550','component','network'), ('25271','38550','interface','{#IFNAME}'), ('25272','38551','component','storage'), ('25273','38551','filesystem','{#FSNAME}'), ('25274','38552','component','storage'), ('25275','38552','filesystem','{#FSNAME}'), ('25276','38553','component','storage'), ('25277','38553','filesystem','{#FSNAME}'), ('25278','41597','component','network'), ('25279','41597','description','{#IFALIAS}'), ('25280','41597','interface','{#IFNAME}'), ('25281','41598','component','network'), ('25282','41598','description','{#IFALIAS}'), ('25283','41598','interface','{#IFNAME}'), ('25284','41599','component','network'), ('25285','41599','description','{#IFALIAS}'), ('25286','41599','interface','{#IFNAME}'), ('25287','41600','component','network'), ('25288','41600','description','{#IFALIAS}'), ('25289','41600','interface','{#IFNAME}'), ('25290','41601','component','network'), ('25291','41601','description','{#IFALIAS}'), ('25292','41601','interface','{#IFNAME}'), ('25293','41602','component','network'), ('25294','41602','description','{#IFALIAS}'), ('25295','41602','interface','{#IFNAME}'), ('25296','41603','component','network'), ('25297','41603','description','{#IFALIAS}'), ('25298','41603','interface','{#IFNAME}'), ('25299','41604','component','network'), ('25300','41604','description','{#IFALIAS}'), ('25301','41604','interface','{#IFNAME}'), ('25302','41605','component','network'), ('25303','41605','description','{#IFALIAS}'), ('25304','41605','interface','{#IFNAME}'), ('25305','38575','component','system'), ('25306','38576','component','system'), ('25307','38577','component','system'), ('25308','38578','component','os'), ('25309','38579','component','memory'), ('25310','38580','component','memory'), ('25311','38581','component','memory'), ('25312','41606','component','health'), ('25313','41606','component','network'), ('25314','41607','component','system'), ('25315','41608','component','system'), ('25316','41609','component','system'), ('25317','41610','component','system'), ('25318','41611','component','health'), ('25319','41611','component','network'), ('25320','41612','component','system'), ('25321','41613','component','system'), ('25322','41614','component','network'), ('25323','41615','component','health'), ('25324','41615','component','network'), ('25325','41616','component','health'), ('25326','41616','component','network'), ('25327','38589','component','cpu'), ('25330','38592','component','interface'), ('25331','38592','component','network'), ('25332','38592','interface','{#IFNAME}'), ('25333','38593','component','interface'), ('25334','38593','component','network'), ('25335','38593','interface','{#IFNAME}'), ('25336','38594','component','interface'), ('25337','38594','component','network'), ('25338','38594','interface','{#IFNAME}'), ('25339','38595','component','interface'), ('25340','38595','component','network'), ('25341','38595','interface','{#IFNAME}'), ('25342','38596','component','interface'), ('25343','38596','component','network'), ('25344','38596','interface','{#IFNAME}'), ('25345','38597','component','interface'), ('25346','38597','component','network'), ('25347','38597','interface','{#IFNAME}'), ('25348','38598','component','interface'), ('25349','38598','component','network'), ('25350','38598','interface','{#IFNAME}'), ('25351','38599','component','interface'), ('25352','38599','component','network'), ('25353','38599','interface','{#IFNAME}'), ('25354','38600','component','interface'), ('25355','38600','component','network'), ('25356','38600','interface','{#IFNAME}'), ('25357','38601','component','interface'), ('25358','38601','component','network'), ('25359','38601','interface','{#IFNAME}'), ('25360','38602','component','interface'), ('25361','38602','component','network'), ('25362','38602','interface','{#IFNAME}'), ('25363','38603','component','interface'), ('25364','38603','component','network'), ('25365','38603','interface','{#IFNAME}'), ('25366','38604','component','interface'), ('25367','38604','component','network'), ('25368','38604','interface','{#IFNAME}'), ('25369','38605','component','storage'), ('25370','38605','filesystem','{#FSNAME}'), ('25371','38606','component','storage'), ('25372','38606','filesystem','{#FSNAME}'), ('25373','38607','component','storage'), ('25374','38607','filesystem','{#FSNAME}'), ('25375','41618','component','network'), ('25376','41618','description','{#IFALIAS}'), ('25377','41618','interface','{#IFNAME}'), ('25378','41619','component','network'), ('25379','41619','description','{#IFALIAS}'), ('25380','41619','interface','{#IFNAME}'), ('25381','41620','component','network'), ('25382','41620','description','{#IFALIAS}'), ('25383','41620','interface','{#IFNAME}'), ('25384','41621','component','network'), ('25385','41621','description','{#IFALIAS}'), ('25386','41621','interface','{#IFNAME}'), ('25387','41622','component','network'), ('25388','41622','description','{#IFALIAS}'), ('25389','41622','interface','{#IFNAME}'), ('25390','41623','component','network'), ('25391','41623','description','{#IFALIAS}'), ('25392','41623','interface','{#IFNAME}'), ('25393','41624','component','network'), ('25394','41624','description','{#IFALIAS}'), ('25395','41624','interface','{#IFNAME}'), ('25396','41625','component','network'), ('25397','41625','description','{#IFALIAS}'), ('25398','41625','interface','{#IFNAME}'), ('25399','41626','component','network'), ('25400','41626','description','{#IFALIAS}'), ('25401','41626','interface','{#IFNAME}'), ('25402','38629','component','system'), ('25403','38630','component','system'), ('25404','38631','component','system'), ('25405','38632','component','os'), ('25406','38633','component','memory'), ('25407','38634','component','memory'), ('25408','38635','component','memory'), ('25409','41627','component','health'), ('25410','41627','component','network'), ('25411','41628','component','system'), ('25412','41629','component','system'), ('25413','41630','component','system'), ('25414','41631','component','system'), ('25415','41632','component','health'), ('25416','41632','component','network'), ('25417','41633','component','system'), ('25418','41634','component','system'), ('25419','41635','component','network'), ('25420','41636','component','health'), ('25421','41636','component','network'), ('25422','41637','component','health'), ('25423','41637','component','network'), ('25424','38643','component','cpu'), ('25427','38646','component','interface'), ('25428','38646','component','network'), ('25429','38646','interface','{#IFNAME}'), ('25430','38647','component','interface'), ('25431','38647','component','network'), ('25432','38647','interface','{#IFNAME}'), ('25433','38648','component','interface'), ('25434','38648','component','network'), ('25435','38648','interface','{#IFNAME}'), ('25436','38649','component','interface'), ('25437','38649','component','network'), ('25438','38649','interface','{#IFNAME}'), ('25439','38650','component','interface'), ('25440','38650','component','network'), ('25441','38650','interface','{#IFNAME}'), ('25442','38651','component','interface'), ('25443','38651','component','network'), ('25444','38651','interface','{#IFNAME}'), ('25445','38652','component','interface'), ('25446','38652','component','network'), ('25447','38652','interface','{#IFNAME}'), ('25448','38653','component','interface'), ('25449','38653','component','network'), ('25450','38653','interface','{#IFNAME}'), ('25451','38654','component','interface'), ('25452','38654','component','network'), ('25453','38654','interface','{#IFNAME}'), ('25454','38655','component','interface'), ('25455','38655','component','network'), ('25456','38655','interface','{#IFNAME}'), ('25457','38656','component','interface'), ('25458','38656','component','network'), ('25459','38656','interface','{#IFNAME}'), ('25460','38657','component','interface'), ('25461','38657','component','network'), ('25462','38657','interface','{#IFNAME}'), ('25463','38658','component','interface'), ('25464','38658','component','network'), ('25465','38658','interface','{#IFNAME}'), ('25466','38659','component','storage'), ('25467','38659','filesystem','{#FSNAME}'), ('25468','38660','component','storage'), ('25469','38660','filesystem','{#FSNAME}'), ('25470','38661','component','storage'), ('25471','38661','filesystem','{#FSNAME}'), ('25472','41639','component','network'), ('25473','41639','description','{#IFALIAS}'), ('25474','41639','interface','{#IFNAME}'), ('25475','41640','component','network'), ('25476','41640','description','{#IFALIAS}'), ('25477','41640','interface','{#IFNAME}'), ('25478','41641','component','network'), ('25479','41641','description','{#IFALIAS}'), ('25480','41641','interface','{#IFNAME}'), ('25481','41642','component','network'), ('25482','41642','description','{#IFALIAS}'), ('25483','41642','interface','{#IFNAME}'), ('25484','41643','component','network'), ('25485','41643','description','{#IFALIAS}'), ('25486','41643','interface','{#IFNAME}'), ('25487','41644','component','network'), ('25488','41644','description','{#IFALIAS}'), ('25489','41644','interface','{#IFNAME}'), ('25490','41645','component','network'), ('25491','41645','description','{#IFALIAS}'), ('25492','41645','interface','{#IFNAME}'), ('25493','41646','component','network'), ('25494','41646','description','{#IFALIAS}'), ('25495','41646','interface','{#IFNAME}'), ('25496','41647','component','network'), ('25497','41647','description','{#IFALIAS}'), ('25498','41647','interface','{#IFNAME}'), ('25499','38683','component','system'), ('25500','38684','component','system'), ('25501','38685','component','system'), ('25502','38686','component','os'), ('25503','38687','component','memory'), ('25504','38688','component','memory'), ('25505','38689','component','memory'), ('25506','41648','component','health'), ('25507','41648','component','network'), ('25508','41649','component','system'), ('25509','41650','component','system'), ('25510','41651','component','system'), ('25511','41652','component','system'), ('25512','41653','component','health'), ('25513','41653','component','network'), ('25514','41654','component','system'), ('25515','41655','component','system'), ('25516','41656','component','network'), ('25517','41657','component','health'), ('25518','41657','component','network'), ('25519','41658','component','health'), ('25520','41658','component','network'), ('25521','38697','component','cpu'), ('25524','38700','component','interface'), ('25525','38700','component','network'), ('25526','38700','interface','{#IFNAME}'), ('25527','38701','component','interface'), ('25528','38701','component','network'), ('25529','38701','interface','{#IFNAME}'), ('25530','38702','component','interface'), ('25531','38702','component','network'), ('25532','38702','interface','{#IFNAME}'), ('25533','38703','component','interface'), ('25534','38703','component','network'), ('25535','38703','interface','{#IFNAME}'), ('25536','38704','component','interface'), ('25537','38704','component','network'), ('25538','38704','interface','{#IFNAME}'), ('25539','38705','component','interface'), ('25540','38705','component','network'), ('25541','38705','interface','{#IFNAME}'), ('25542','38706','component','interface'), ('25543','38706','component','network'), ('25544','38706','interface','{#IFNAME}'), ('25545','38707','component','interface'), ('25546','38707','component','network'), ('25547','38707','interface','{#IFNAME}'), ('25548','38708','component','interface'), ('25549','38708','component','network'), ('25550','38708','interface','{#IFNAME}'), ('25551','38709','component','interface'), ('25552','38709','component','network'), ('25553','38709','interface','{#IFNAME}'), ('25554','38710','component','interface'), ('25555','38710','component','network'), ('25556','38710','interface','{#IFNAME}'), ('25557','38711','component','interface'), ('25558','38711','component','network'), ('25559','38711','interface','{#IFNAME}'), ('25560','38712','component','interface'), ('25561','38712','component','network'), ('25562','38712','interface','{#IFNAME}'), ('25563','38713','component','storage'), ('25564','38713','filesystem','{#FSNAME}'), ('25565','38714','component','storage'), ('25566','38714','filesystem','{#FSNAME}'), ('25567','38715','component','storage'), ('25568','38715','filesystem','{#FSNAME}'), ('25569','41660','component','network'), ('25570','41660','description','{#IFALIAS}'), ('25571','41660','interface','{#IFNAME}'), ('25572','41661','component','network'), ('25573','41661','description','{#IFALIAS}'), ('25574','41661','interface','{#IFNAME}'), ('25575','41662','component','network'), ('25576','41662','description','{#IFALIAS}'), ('25577','41662','interface','{#IFNAME}'), ('25578','41663','component','network'), ('25579','41663','description','{#IFALIAS}'), ('25580','41663','interface','{#IFNAME}'), ('25581','41664','component','network'), ('25582','41664','description','{#IFALIAS}'), ('25583','41664','interface','{#IFNAME}'), ('25584','41665','component','network'), ('25585','41665','description','{#IFALIAS}'), ('25586','41665','interface','{#IFNAME}'), ('25587','41666','component','network'), ('25588','41666','description','{#IFALIAS}'), ('25589','41666','interface','{#IFNAME}'), ('25590','41667','component','network'), ('25591','41667','description','{#IFALIAS}'), ('25592','41667','interface','{#IFNAME}'), ('25593','41668','component','network'), ('25594','41668','description','{#IFALIAS}'), ('25595','41668','interface','{#IFNAME}'), ('25596','38737','component','system'), ('25597','38738','component','system'), ('25598','38739','component','system'), ('25599','38740','component','os'), ('25600','38741','component','memory'), ('25601','38742','component','memory'), ('25602','38743','component','memory'), ('25603','41669','component','health'), ('25604','41669','component','network'), ('25605','41670','component','system'), ('25606','41671','component','system'), ('25607','41672','component','system'), ('25608','41673','component','system'), ('25609','41674','component','health'), ('25610','41674','component','network'), ('25611','41675','component','system'), ('25612','41676','component','system'), ('25613','41677','component','network'), ('25614','41678','component','health'), ('25615','41678','component','network'), ('25616','41679','component','health'), ('25617','41679','component','network'), ('25618','38751','component','cpu'), ('25621','38754','component','interface'), ('25622','38754','component','network'), ('25623','38754','interface','{#IFNAME}'), ('25624','38755','component','interface'), ('25625','38755','component','network'), ('25626','38755','interface','{#IFNAME}'), ('25627','38756','component','interface'), ('25628','38756','component','network'), ('25629','38756','interface','{#IFNAME}'), ('25630','38757','component','interface'), ('25631','38757','component','network'), ('25632','38757','interface','{#IFNAME}'), ('25633','38758','component','interface'), ('25634','38758','component','network'), ('25635','38758','interface','{#IFNAME}'), ('25636','38759','component','interface'), ('25637','38759','component','network'), ('25638','38759','interface','{#IFNAME}'), ('25639','38760','component','interface'), ('25640','38760','component','network'), ('25641','38760','interface','{#IFNAME}'), ('25642','38761','component','interface'), ('25643','38761','component','network'), ('25644','38761','interface','{#IFNAME}'), ('25645','38762','component','interface'), ('25646','38762','component','network'), ('25647','38762','interface','{#IFNAME}'), ('25648','38763','component','interface'), ('25649','38763','component','network'), ('25650','38763','interface','{#IFNAME}'), ('25651','38764','component','interface'), ('25652','38764','component','network'), ('25653','38764','interface','{#IFNAME}'), ('25654','38765','component','interface'), ('25655','38765','component','network'), ('25656','38765','interface','{#IFNAME}'), ('25657','38766','component','interface'), ('25658','38766','component','network'), ('25659','38766','interface','{#IFNAME}'), ('25660','38767','component','storage'), ('25661','38767','filesystem','{#FSNAME}'), ('25662','38768','component','storage'), ('25663','38768','filesystem','{#FSNAME}'), ('25664','38769','component','storage'), ('25665','38769','filesystem','{#FSNAME}'), ('25666','41681','component','network'), ('25667','41681','description','{#IFALIAS}'), ('25668','41681','interface','{#IFNAME}'), ('25669','41682','component','network'), ('25670','41682','description','{#IFALIAS}'), ('25671','41682','interface','{#IFNAME}'), ('25672','41683','component','network'), ('25673','41683','description','{#IFALIAS}'), ('25674','41683','interface','{#IFNAME}'), ('25675','41684','component','network'), ('25676','41684','description','{#IFALIAS}'), ('25677','41684','interface','{#IFNAME}'), ('25678','41685','component','network'), ('25679','41685','description','{#IFALIAS}'), ('25680','41685','interface','{#IFNAME}'), ('25681','41686','component','network'), ('25682','41686','description','{#IFALIAS}'), ('25683','41686','interface','{#IFNAME}'), ('25684','41687','component','network'), ('25685','41687','description','{#IFALIAS}'), ('25686','41687','interface','{#IFNAME}'), ('25687','41688','component','network'), ('25688','41688','description','{#IFALIAS}'), ('25689','41688','interface','{#IFNAME}'), ('25690','41689','component','network'), ('25691','41689','description','{#IFALIAS}'), ('25692','41689','interface','{#IFNAME}'), ('25693','38791','component','system'), ('25694','38792','component','system'), ('25695','38793','component','system'), ('25696','38794','component','os'), ('25697','38795','component','memory'), ('25698','38796','component','memory'), ('25699','38797','component','memory'), ('25700','41690','component','health'), ('25701','41690','component','network'), ('25702','41691','component','system'), ('25703','41692','component','system'), ('25704','41693','component','system'), ('25705','41694','component','system'), ('25706','41695','component','health'), ('25707','41695','component','network'), ('25708','41696','component','system'), ('25709','41697','component','system'), ('25710','41698','component','network'), ('25711','41699','component','health'), ('25712','41699','component','network'), ('25713','41700','component','health'), ('25714','41700','component','network'), ('25715','38805','component','cpu'), ('25718','38808','component','interface'), ('25719','38808','component','network'), ('25720','38808','interface','{#IFNAME}'), ('25721','38809','component','interface'), ('25722','38809','component','network'), ('25723','38809','interface','{#IFNAME}'), ('25724','38810','component','interface'), ('25725','38810','component','network'), ('25726','38810','interface','{#IFNAME}'), ('25727','38811','component','interface'), ('25728','38811','component','network'), ('25729','38811','interface','{#IFNAME}'), ('25730','38812','component','interface'), ('25731','38812','component','network'), ('25732','38812','interface','{#IFNAME}'), ('25733','38813','component','interface'), ('25734','38813','component','network'), ('25735','38813','interface','{#IFNAME}'), ('25736','38814','component','interface'), ('25737','38814','component','network'), ('25738','38814','interface','{#IFNAME}'), ('25739','38815','component','interface'), ('25740','38815','component','network'), ('25741','38815','interface','{#IFNAME}'), ('25742','38816','component','interface'), ('25743','38816','component','network'), ('25744','38816','interface','{#IFNAME}'), ('25745','38817','component','interface'), ('25746','38817','component','network'), ('25747','38817','interface','{#IFNAME}'), ('25748','38818','component','interface'), ('25749','38818','component','network'), ('25750','38818','interface','{#IFNAME}'), ('25751','38819','component','interface'), ('25752','38819','component','network'), ('25753','38819','interface','{#IFNAME}'), ('25754','38820','component','interface'), ('25755','38820','component','network'), ('25756','38820','interface','{#IFNAME}'), ('25757','38821','component','storage'), ('25758','38821','filesystem','{#FSNAME}'), ('25759','38822','component','storage'), ('25760','38822','filesystem','{#FSNAME}'), ('25761','38823','component','storage'), ('25762','38823','filesystem','{#FSNAME}'), ('25763','41702','component','network'), ('25764','41702','description','{#IFALIAS}'), ('25765','41702','interface','{#IFNAME}'), ('25766','41703','component','network'), ('25767','41703','description','{#IFALIAS}'), ('25768','41703','interface','{#IFNAME}'), ('25769','41704','component','network'), ('25770','41704','description','{#IFALIAS}'), ('25771','41704','interface','{#IFNAME}'), ('25772','41705','component','network'), ('25773','41705','description','{#IFALIAS}'), ('25774','41705','interface','{#IFNAME}'), ('25775','41706','component','network'), ('25776','41706','description','{#IFALIAS}'), ('25777','41706','interface','{#IFNAME}'), ('25778','41707','component','network'), ('25779','41707','description','{#IFALIAS}'), ('25780','41707','interface','{#IFNAME}'), ('25781','41708','component','network'), ('25782','41708','description','{#IFALIAS}'), ('25783','41708','interface','{#IFNAME}'), ('25784','41709','component','network'), ('25785','41709','description','{#IFALIAS}'), ('25786','41709','interface','{#IFNAME}'), ('25787','41710','component','network'), ('25788','41710','description','{#IFALIAS}'), ('25789','41710','interface','{#IFNAME}'), ('25790','38845','component','system'), ('25791','38846','component','system'), ('25792','38847','component','system'), ('25793','38848','component','os'), ('25794','38849','component','memory'), ('25795','38850','component','memory'), ('25796','38851','component','memory'), ('25797','41711','component','health'), ('25798','41711','component','network'), ('25799','41712','component','system'), ('25800','41713','component','system'), ('25801','41714','component','system'), ('25802','41715','component','system'), ('25803','41716','component','health'), ('25804','41716','component','network'), ('25805','41717','component','system'), ('25806','41718','component','system'), ('25807','41719','component','network'), ('25808','41720','component','health'), ('25809','41720','component','network'), ('25810','41721','component','health'), ('25811','41721','component','network'), ('25812','38859','component','cpu'), ('25815','38862','component','interface'), ('25816','38862','component','network'), ('25817','38862','interface','{#IFNAME}'), ('25818','38863','component','interface'), ('25819','38863','component','network'), ('25820','38863','interface','{#IFNAME}'), ('25821','38864','component','interface'), ('25822','38864','component','network'), ('25823','38864','interface','{#IFNAME}'), ('25824','38865','component','interface'), ('25825','38865','component','network'), ('25826','38865','interface','{#IFNAME}'), ('25827','38866','component','interface'), ('25828','38866','component','network'), ('25829','38866','interface','{#IFNAME}'), ('25830','38867','component','interface'), ('25831','38867','component','network'), ('25832','38867','interface','{#IFNAME}'), ('25833','38868','component','interface'), ('25834','38868','component','network'), ('25835','38868','interface','{#IFNAME}'), ('25836','38869','component','interface'), ('25837','38869','component','network'), ('25838','38869','interface','{#IFNAME}'), ('25839','38870','component','interface'), ('25840','38870','component','network'), ('25841','38870','interface','{#IFNAME}'), ('25842','38871','component','interface'), ('25843','38871','component','network'), ('25844','38871','interface','{#IFNAME}'), ('25845','38872','component','interface'), ('25846','38872','component','network'), ('25847','38872','interface','{#IFNAME}'), ('25848','38873','component','interface'), ('25849','38873','component','network'), ('25850','38873','interface','{#IFNAME}'), ('25851','38874','component','interface'), ('25852','38874','component','network'), ('25853','38874','interface','{#IFNAME}'), ('25854','38875','component','storage'), ('25855','38875','filesystem','{#FSNAME}'), ('25856','38876','component','storage'), ('25857','38876','filesystem','{#FSNAME}'), ('25858','38877','component','storage'), ('25859','38877','filesystem','{#FSNAME}'), ('25860','41723','component','network'), ('25861','41723','description','{#IFALIAS}'), ('25862','41723','interface','{#IFNAME}'), ('25863','41724','component','network'), ('25864','41724','description','{#IFALIAS}'), ('25865','41724','interface','{#IFNAME}'), ('25866','41725','component','network'), ('25867','41725','description','{#IFALIAS}'), ('25868','41725','interface','{#IFNAME}'), ('25869','41726','component','network'), ('25870','41726','description','{#IFALIAS}'), ('25871','41726','interface','{#IFNAME}'), ('25872','41727','component','network'), ('25873','41727','description','{#IFALIAS}'), ('25874','41727','interface','{#IFNAME}'), ('25875','41728','component','network'), ('25876','41728','description','{#IFALIAS}'), ('25877','41728','interface','{#IFNAME}'), ('25878','41729','component','network'), ('25879','41729','description','{#IFALIAS}'), ('25880','41729','interface','{#IFNAME}'), ('25881','41730','component','network'), ('25882','41730','description','{#IFALIAS}'), ('25883','41730','interface','{#IFNAME}'), ('25884','41731','component','network'), ('25885','41731','description','{#IFALIAS}'), ('25886','41731','interface','{#IFNAME}'), ('25887','38899','component','system'), ('25888','38900','component','system'), ('25889','38901','component','system'), ('25890','38902','component','os'), ('25891','38903','component','memory'), ('25892','38904','component','memory'), ('25893','38905','component','memory'), ('25894','41732','component','health'), ('25895','41732','component','network'), ('25896','41733','component','system'), ('25897','41734','component','system'), ('25898','41735','component','system'), ('25899','41736','component','system'), ('25900','41737','component','health'), ('25901','41737','component','network'), ('25902','41738','component','system'), ('25903','41739','component','system'), ('25904','41740','component','network'), ('25905','41741','component','health'), ('25906','41741','component','network'), ('25907','41742','component','health'), ('25908','41742','component','network'), ('25909','38913','component','cpu'), ('25912','38916','component','interface'), ('25913','38916','component','network'), ('25914','38916','interface','{#IFNAME}'), ('25915','38917','component','interface'), ('25916','38917','component','network'), ('25917','38917','interface','{#IFNAME}'), ('25918','38918','component','interface'), ('25919','38918','component','network'), ('25920','38918','interface','{#IFNAME}'), ('25921','38919','component','interface'), ('25922','38919','component','network'), ('25923','38919','interface','{#IFNAME}'), ('25924','38920','component','interface'), ('25925','38920','component','network'), ('25926','38920','interface','{#IFNAME}'), ('25927','38921','component','interface'), ('25928','38921','component','network'), ('25929','38921','interface','{#IFNAME}'), ('25930','38922','component','interface'), ('25931','38922','component','network'), ('25932','38922','interface','{#IFNAME}'), ('25933','38923','component','interface'), ('25934','38923','component','network'), ('25935','38923','interface','{#IFNAME}'), ('25936','38924','component','interface'), ('25937','38924','component','network'), ('25938','38924','interface','{#IFNAME}'), ('25939','38925','component','interface'), ('25940','38925','component','network'), ('25941','38925','interface','{#IFNAME}'), ('25942','38926','component','interface'), ('25943','38926','component','network'), ('25944','38926','interface','{#IFNAME}'), ('25945','38927','component','interface'), ('25946','38927','component','network'), ('25947','38927','interface','{#IFNAME}'), ('25948','38928','component','interface'), ('25949','38928','component','network'), ('25950','38928','interface','{#IFNAME}'), ('25951','38929','component','storage'), ('25952','38929','filesystem','{#FSNAME}'), ('25953','38930','component','storage'), ('25954','38930','filesystem','{#FSNAME}'), ('25955','38931','component','storage'), ('25956','38931','filesystem','{#FSNAME}'), ('25957','41744','component','network'), ('25958','41744','description','{#IFALIAS}'), ('25959','41744','interface','{#IFNAME}'), ('25960','41745','component','network'), ('25961','41745','description','{#IFALIAS}'), ('25962','41745','interface','{#IFNAME}'), ('25963','41746','component','network'), ('25964','41746','description','{#IFALIAS}'), ('25965','41746','interface','{#IFNAME}'), ('25966','41747','component','network'), ('25967','41747','description','{#IFALIAS}'), ('25968','41747','interface','{#IFNAME}'), ('25969','41748','component','network'), ('25970','41748','description','{#IFALIAS}'), ('25971','41748','interface','{#IFNAME}'), ('25972','41749','component','network'), ('25973','41749','description','{#IFALIAS}'), ('25974','41749','interface','{#IFNAME}'), ('25975','41750','component','network'), ('25976','41750','description','{#IFALIAS}'), ('25977','41750','interface','{#IFNAME}'), ('25978','41751','component','network'), ('25979','41751','description','{#IFALIAS}'), ('25980','41751','interface','{#IFNAME}'), ('25981','41752','component','network'), ('25982','41752','description','{#IFALIAS}'), ('25983','41752','interface','{#IFNAME}'), ('25984','38953','component','system'), ('25985','38954','component','system'), ('25986','38955','component','system'), ('25987','38956','component','os'), ('25988','38957','component','memory'), ('25989','38958','component','memory'), ('25990','38959','component','memory'), ('25991','41753','component','health'), ('25992','41753','component','network'), ('25993','41754','component','system'), ('25994','41755','component','system'), ('25995','41756','component','system'), ('25996','41757','component','system'), ('25997','41758','component','health'), ('25998','41758','component','network'), ('25999','41759','component','system'), ('26000','41760','component','system'), ('26001','41761','component','network'), ('26002','41762','component','health'), ('26003','41762','component','network'), ('26004','41763','component','health'), ('26005','41763','component','network'), ('26006','38967','component','cpu'), ('26009','38970','component','interface'), ('26010','38970','component','network'), ('26011','38970','interface','{#IFNAME}'), ('26012','38971','component','interface'), ('26013','38971','component','network'), ('26014','38971','interface','{#IFNAME}'), ('26015','38972','component','interface'), ('26016','38972','component','network'), ('26017','38972','interface','{#IFNAME}'), ('26018','38973','component','interface'), ('26019','38973','component','network'), ('26020','38973','interface','{#IFNAME}'), ('26021','38974','component','interface'), ('26022','38974','component','network'), ('26023','38974','interface','{#IFNAME}'), ('26024','38975','component','interface'), ('26025','38975','component','network'), ('26026','38975','interface','{#IFNAME}'), ('26027','38976','component','interface'), ('26028','38976','component','network'), ('26029','38976','interface','{#IFNAME}'), ('26030','38977','component','interface'), ('26031','38977','component','network'), ('26032','38977','interface','{#IFNAME}'), ('26033','38978','component','interface'), ('26034','38978','component','network'), ('26035','38978','interface','{#IFNAME}'), ('26036','38979','component','interface'), ('26037','38979','component','network'), ('26038','38979','interface','{#IFNAME}'), ('26039','38980','component','interface'), ('26040','38980','component','network'), ('26041','38980','interface','{#IFNAME}'), ('26042','38981','component','interface'), ('26043','38981','component','network'), ('26044','38981','interface','{#IFNAME}'), ('26045','38982','component','interface'), ('26046','38982','component','network'), ('26047','38982','interface','{#IFNAME}'), ('26048','38983','component','storage'), ('26049','38983','filesystem','{#FSNAME}'), ('26050','38984','component','storage'), ('26051','38984','filesystem','{#FSNAME}'), ('26052','38985','component','storage'), ('26053','38985','filesystem','{#FSNAME}'), ('26054','41765','component','network'), ('26055','41765','description','{#IFALIAS}'), ('26056','41765','interface','{#IFNAME}'), ('26057','41766','component','network'), ('26058','41766','description','{#IFALIAS}'), ('26059','41766','interface','{#IFNAME}'), ('26060','41767','component','network'), ('26061','41767','description','{#IFALIAS}'), ('26062','41767','interface','{#IFNAME}'), ('26063','41768','component','network'), ('26064','41768','description','{#IFALIAS}'), ('26065','41768','interface','{#IFNAME}'), ('26066','41769','component','network'), ('26067','41769','description','{#IFALIAS}'), ('26068','41769','interface','{#IFNAME}'), ('26069','41770','component','network'), ('26070','41770','description','{#IFALIAS}'), ('26071','41770','interface','{#IFNAME}'), ('26072','41771','component','network'), ('26073','41771','description','{#IFALIAS}'), ('26074','41771','interface','{#IFNAME}'), ('26075','41772','component','network'), ('26076','41772','description','{#IFALIAS}'), ('26077','41772','interface','{#IFNAME}'), ('26078','41773','component','network'), ('26079','41773','description','{#IFALIAS}'), ('26080','41773','interface','{#IFNAME}'), ('26081','39007','component','system'), ('26082','39008','component','system'), ('26083','39009','component','system'), ('26084','39010','component','os'), ('26085','39011','component','memory'), ('26086','39012','component','memory'), ('26087','39013','component','memory'), ('26088','41774','component','health'), ('26089','41774','component','network'), ('26090','41775','component','system'), ('26091','41776','component','system'), ('26092','41777','component','system'), ('26093','41778','component','system'), ('26094','41779','component','health'), ('26095','41779','component','network'), ('26096','41780','component','system'), ('26097','41781','component','system'), ('26098','41782','component','network'), ('26099','41783','component','health'), ('26100','41783','component','network'), ('26101','41784','component','health'), ('26102','41784','component','network'), ('26103','39021','component','cpu'), ('26106','39024','component','interface'), ('26107','39024','component','network'), ('26108','39024','interface','{#IFNAME}'), ('26109','39025','component','interface'), ('26110','39025','component','network'), ('26111','39025','interface','{#IFNAME}'), ('26112','39026','component','interface'), ('26113','39026','component','network'), ('26114','39026','interface','{#IFNAME}'), ('26115','39027','component','interface'), ('26116','39027','component','network'), ('26117','39027','interface','{#IFNAME}'), ('26118','39028','component','interface'), ('26119','39028','component','network'), ('26120','39028','interface','{#IFNAME}'), ('26121','39029','component','interface'), ('26122','39029','component','network'), ('26123','39029','interface','{#IFNAME}'), ('26124','39030','component','interface'), ('26125','39030','component','network'), ('26126','39030','interface','{#IFNAME}'), ('26127','39031','component','interface'), ('26128','39031','component','network'), ('26129','39031','interface','{#IFNAME}'), ('26130','39032','component','interface'), ('26131','39032','component','network'), ('26132','39032','interface','{#IFNAME}'), ('26133','39033','component','interface'), ('26134','39033','component','network'), ('26135','39033','interface','{#IFNAME}'), ('26136','39034','component','interface'), ('26137','39034','component','network'), ('26138','39034','interface','{#IFNAME}'), ('26139','39035','component','interface'), ('26140','39035','component','network'), ('26141','39035','interface','{#IFNAME}'), ('26142','39036','component','interface'), ('26143','39036','component','network'), ('26144','39036','interface','{#IFNAME}'), ('26145','39037','component','storage'), ('26146','39037','filesystem','{#FSNAME}'), ('26147','39038','component','storage'), ('26148','39038','filesystem','{#FSNAME}'), ('26149','39039','component','storage'), ('26150','39039','filesystem','{#FSNAME}'), ('26151','41786','component','network'), ('26152','41786','description','{#IFALIAS}'), ('26153','41786','interface','{#IFNAME}'), ('26154','41787','component','network'), ('26155','41787','description','{#IFALIAS}'), ('26156','41787','interface','{#IFNAME}'), ('26157','41788','component','network'), ('26158','41788','description','{#IFALIAS}'), ('26159','41788','interface','{#IFNAME}'), ('26160','41789','component','network'), ('26161','41789','description','{#IFALIAS}'), ('26162','41789','interface','{#IFNAME}'), ('26163','41790','component','network'), ('26164','41790','description','{#IFALIAS}'), ('26165','41790','interface','{#IFNAME}'), ('26166','41791','component','network'), ('26167','41791','description','{#IFALIAS}'), ('26168','41791','interface','{#IFNAME}'), ('26169','41792','component','network'), ('26170','41792','description','{#IFALIAS}'), ('26171','41792','interface','{#IFNAME}'), ('26172','41793','component','network'), ('26173','41793','description','{#IFALIAS}'), ('26174','41793','interface','{#IFNAME}'), ('26175','41794','component','network'), ('26176','41794','description','{#IFALIAS}'), ('26177','41794','interface','{#IFNAME}'), ('26178','39061','component','system'), ('26179','39062','component','system'), ('26180','39063','component','system'), ('26181','39064','component','os'), ('26182','39065','component','memory'), ('26183','39066','component','memory'), ('26184','39067','component','memory'), ('26185','41795','component','health'), ('26186','41795','component','network'), ('26187','41796','component','system'), ('26188','41797','component','system'), ('26189','41798','component','system'), ('26190','41799','component','system'), ('26191','41800','component','health'), ('26192','41800','component','network'), ('26193','41801','component','system'), ('26194','41802','component','system'), ('26195','41803','component','network'), ('26196','41804','component','health'), ('26197','41804','component','network'), ('26198','41805','component','health'), ('26199','41805','component','network'), ('26200','39075','component','cpu'), ('26203','39078','component','interface'), ('26204','39078','component','network'), ('26205','39078','interface','{#IFNAME}'), ('26206','39079','component','interface'), ('26207','39079','component','network'), ('26208','39079','interface','{#IFNAME}'), ('26209','39080','component','interface'), ('26210','39080','component','network'), ('26211','39080','interface','{#IFNAME}'), ('26212','39081','component','interface'), ('26213','39081','component','network'), ('26214','39081','interface','{#IFNAME}'), ('26215','39082','component','interface'), ('26216','39082','component','network'), ('26217','39082','interface','{#IFNAME}'), ('26218','39083','component','interface'), ('26219','39083','component','network'), ('26220','39083','interface','{#IFNAME}'), ('26221','39084','component','interface'), ('26222','39084','component','network'), ('26223','39084','interface','{#IFNAME}'), ('26224','39085','component','interface'), ('26225','39085','component','network'), ('26226','39085','interface','{#IFNAME}'), ('26227','39086','component','interface'), ('26228','39086','component','network'), ('26229','39086','interface','{#IFNAME}'), ('26230','39087','component','interface'), ('26231','39087','component','network'), ('26232','39087','interface','{#IFNAME}'), ('26233','39088','component','interface'), ('26234','39088','component','network'), ('26235','39088','interface','{#IFNAME}'), ('26236','39089','component','interface'), ('26237','39089','component','network'), ('26238','39089','interface','{#IFNAME}'), ('26239','39090','component','interface'), ('26240','39090','component','network'), ('26241','39090','interface','{#IFNAME}'), ('26242','39091','component','storage'), ('26243','39091','filesystem','{#FSNAME}'), ('26244','39092','component','storage'), ('26245','39092','filesystem','{#FSNAME}'), ('26246','39093','component','storage'), ('26247','39093','filesystem','{#FSNAME}'), ('26248','41807','component','network'), ('26249','41807','description','{#IFALIAS}'), ('26250','41807','interface','{#IFNAME}'), ('26251','41808','component','network'), ('26252','41808','description','{#IFALIAS}'), ('26253','41808','interface','{#IFNAME}'), ('26254','41809','component','network'), ('26255','41809','description','{#IFALIAS}'), ('26256','41809','interface','{#IFNAME}'), ('26257','41810','component','network'), ('26258','41810','description','{#IFALIAS}'), ('26259','41810','interface','{#IFNAME}'), ('26260','41811','component','network'), ('26261','41811','description','{#IFALIAS}'), ('26262','41811','interface','{#IFNAME}'), ('26263','41812','component','network'), ('26264','41812','description','{#IFALIAS}'), ('26265','41812','interface','{#IFNAME}'), ('26266','41813','component','network'), ('26267','41813','description','{#IFALIAS}'), ('26268','41813','interface','{#IFNAME}'), ('26269','41814','component','network'), ('26270','41814','description','{#IFALIAS}'), ('26271','41814','interface','{#IFNAME}'), ('26272','41815','component','network'), ('26273','41815','description','{#IFALIAS}'), ('26274','41815','interface','{#IFNAME}'), ('26275','39115','component','system'), ('26276','39116','component','system'), ('26277','39117','component','system'), ('26278','39118','component','os'), ('26279','39119','component','memory'), ('26280','39120','component','memory'), ('26281','39121','component','memory'), ('26282','41816','component','health'), ('26283','41816','component','network'), ('26284','41817','component','system'), ('26285','41818','component','system'), ('26286','41819','component','system'), ('26287','41820','component','system'), ('26288','41821','component','health'), ('26289','41821','component','network'), ('26290','41822','component','system'), ('26291','41823','component','system'), ('26292','41824','component','network'), ('26293','41825','component','health'), ('26294','41825','component','network'), ('26295','41826','component','health'), ('26296','41826','component','network'), ('26297','39129','component','cpu'), ('26300','39132','component','interface'), ('26301','39132','component','network'), ('26302','39132','interface','{#IFNAME}'), ('26303','39133','component','interface'), ('26304','39133','component','network'), ('26305','39133','interface','{#IFNAME}'), ('26306','39134','component','interface'), ('26307','39134','component','network'), ('26308','39134','interface','{#IFNAME}'), ('26309','39135','component','interface'), ('26310','39135','component','network'), ('26311','39135','interface','{#IFNAME}'), ('26312','39136','component','interface'), ('26313','39136','component','network'), ('26314','39136','interface','{#IFNAME}'), ('26315','39137','component','interface'), ('26316','39137','component','network'), ('26317','39137','interface','{#IFNAME}'), ('26318','39138','component','interface'), ('26319','39138','component','network'), ('26320','39138','interface','{#IFNAME}'), ('26321','39139','component','interface'), ('26322','39139','component','network'), ('26323','39139','interface','{#IFNAME}'), ('26324','39140','component','interface'), ('26325','39140','component','network'), ('26326','39140','interface','{#IFNAME}'), ('26327','39141','component','interface'), ('26328','39141','component','network'), ('26329','39141','interface','{#IFNAME}'), ('26330','39142','component','interface'), ('26331','39142','component','network'), ('26332','39142','interface','{#IFNAME}'), ('26333','39143','component','interface'), ('26334','39143','component','network'), ('26335','39143','interface','{#IFNAME}'), ('26336','39144','component','interface'), ('26337','39144','component','network'), ('26338','39144','interface','{#IFNAME}'), ('26339','39145','component','storage'), ('26340','39145','filesystem','{#FSNAME}'), ('26341','39146','component','storage'), ('26342','39146','filesystem','{#FSNAME}'), ('26343','39147','component','storage'), ('26344','39147','filesystem','{#FSNAME}'), ('26345','41828','component','network'), ('26346','41828','description','{#IFALIAS}'), ('26347','41828','interface','{#IFNAME}'), ('26348','41829','component','network'), ('26349','41829','description','{#IFALIAS}'), ('26350','41829','interface','{#IFNAME}'), ('26351','41830','component','network'), ('26352','41830','description','{#IFALIAS}'), ('26353','41830','interface','{#IFNAME}'), ('26354','41831','component','network'), ('26355','41831','description','{#IFALIAS}'), ('26356','41831','interface','{#IFNAME}'), ('26357','41832','component','network'), ('26358','41832','description','{#IFALIAS}'), ('26359','41832','interface','{#IFNAME}'), ('26360','41833','component','network'), ('26361','41833','description','{#IFALIAS}'), ('26362','41833','interface','{#IFNAME}'), ('26363','41834','component','network'), ('26364','41834','description','{#IFALIAS}'), ('26365','41834','interface','{#IFNAME}'), ('26366','41835','component','network'), ('26367','41835','description','{#IFALIAS}'), ('26368','41835','interface','{#IFNAME}'), ('26369','41836','component','network'), ('26370','41836','description','{#IFALIAS}'), ('26371','41836','interface','{#IFNAME}'), ('26372','39169','component','system'), ('26373','39170','component','system'), ('26374','39171','component','system'), ('26375','39172','component','os'), ('26376','39173','component','memory'), ('26377','39174','component','memory'), ('26378','39175','component','memory'), ('26379','41837','component','health'), ('26380','41837','component','network'), ('26381','41838','component','system'), ('26382','41839','component','system'), ('26383','41840','component','system'), ('26384','41841','component','system'), ('26385','41842','component','health'), ('26386','41842','component','network'), ('26387','41843','component','system'), ('26388','41844','component','system'), ('26389','41845','component','network'), ('26390','41846','component','health'), ('26391','41846','component','network'), ('26392','41847','component','health'), ('26393','41847','component','network'), ('26394','39183','component','cpu'), ('26397','39186','component','interface'), ('26398','39186','component','network'), ('26399','39186','interface','{#IFNAME}'), ('26400','39187','component','interface'), ('26401','39187','component','network'), ('26402','39187','interface','{#IFNAME}'), ('26403','39188','component','interface'), ('26404','39188','component','network'), ('26405','39188','interface','{#IFNAME}'), ('26406','39189','component','interface'), ('26407','39189','component','network'), ('26408','39189','interface','{#IFNAME}'), ('26409','39190','component','interface'), ('26410','39190','component','network'), ('26411','39190','interface','{#IFNAME}'), ('26412','39191','component','interface'), ('26413','39191','component','network'), ('26414','39191','interface','{#IFNAME}'), ('26415','39192','component','interface'), ('26416','39192','component','network'), ('26417','39192','interface','{#IFNAME}'), ('26418','39193','component','interface'), ('26419','39193','component','network'), ('26420','39193','interface','{#IFNAME}'), ('26421','39194','component','interface'), ('26422','39194','component','network'), ('26423','39194','interface','{#IFNAME}'), ('26424','39195','component','interface'), ('26425','39195','component','network'), ('26426','39195','interface','{#IFNAME}'), ('26427','39196','component','interface'), ('26428','39196','component','network'), ('26429','39196','interface','{#IFNAME}'), ('26430','39197','component','interface'), ('26431','39197','component','network'), ('26432','39197','interface','{#IFNAME}'), ('26433','39198','component','interface'), ('26434','39198','component','network'), ('26435','39198','interface','{#IFNAME}'), ('26436','39199','component','storage'), ('26437','39199','filesystem','{#FSNAME}'), ('26438','39200','component','storage'), ('26439','39200','filesystem','{#FSNAME}'), ('26440','39201','component','storage'), ('26441','39201','filesystem','{#FSNAME}'), ('26442','41849','component','network'), ('26443','41849','description','{#IFALIAS}'), ('26444','41849','interface','{#IFNAME}'), ('26445','41850','component','network'), ('26446','41850','description','{#IFALIAS}'), ('26447','41850','interface','{#IFNAME}'), ('26448','41851','component','network'), ('26449','41851','description','{#IFALIAS}'), ('26450','41851','interface','{#IFNAME}'), ('26451','41852','component','network'), ('26452','41852','description','{#IFALIAS}'), ('26453','41852','interface','{#IFNAME}'), ('26454','41853','component','network'), ('26455','41853','description','{#IFALIAS}'), ('26456','41853','interface','{#IFNAME}'), ('26457','41854','component','network'), ('26458','41854','description','{#IFALIAS}'), ('26459','41854','interface','{#IFNAME}'), ('26460','41855','component','network'), ('26461','41855','description','{#IFALIAS}'), ('26462','41855','interface','{#IFNAME}'), ('26463','41856','component','network'), ('26464','41856','description','{#IFALIAS}'), ('26465','41856','interface','{#IFNAME}'), ('26466','41857','component','network'), ('26467','41857','description','{#IFALIAS}'), ('26468','41857','interface','{#IFNAME}'), ('26469','39223','component','system'), ('26470','39224','component','system'), ('26471','39225','component','system'), ('26472','39226','component','os'), ('26473','39227','component','memory'), ('26474','39228','component','memory'), ('26475','39229','component','memory'), ('26476','41858','component','health'), ('26477','41858','component','network'), ('26478','41859','component','system'), ('26479','41860','component','system'), ('26480','41861','component','system'), ('26481','41862','component','system'), ('26482','41863','component','health'), ('26483','41863','component','network'), ('26484','41864','component','system'), ('26485','41865','component','system'), ('26486','41866','component','network'), ('26487','41867','component','health'), ('26488','41867','component','network'), ('26489','41868','component','health'), ('26490','41868','component','network'), ('26491','39237','component','cpu'), ('26494','39240','component','interface'), ('26495','39240','component','network'), ('26496','39240','interface','{#IFNAME}'), ('26497','39241','component','interface'), ('26498','39241','component','network'), ('26499','39241','interface','{#IFNAME}'), ('26500','39242','component','interface'), ('26501','39242','component','network'), ('26502','39242','interface','{#IFNAME}'), ('26503','39243','component','interface'), ('26504','39243','component','network'), ('26505','39243','interface','{#IFNAME}'), ('26506','39244','component','interface'), ('26507','39244','component','network'), ('26508','39244','interface','{#IFNAME}'), ('26509','39245','component','interface'), ('26510','39245','component','network'), ('26511','39245','interface','{#IFNAME}'), ('26512','39246','component','interface'), ('26513','39246','component','network'), ('26514','39246','interface','{#IFNAME}'), ('26515','39247','component','interface'), ('26516','39247','component','network'), ('26517','39247','interface','{#IFNAME}'), ('26518','39248','component','interface'), ('26519','39248','component','network'), ('26520','39248','interface','{#IFNAME}'), ('26521','39249','component','interface'), ('26522','39249','component','network'), ('26523','39249','interface','{#IFNAME}'), ('26524','39250','component','interface'), ('26525','39250','component','network'), ('26526','39250','interface','{#IFNAME}'), ('26527','39251','component','interface'), ('26528','39251','component','network'), ('26529','39251','interface','{#IFNAME}'), ('26530','39252','component','interface'), ('26531','39252','component','network'), ('26532','39252','interface','{#IFNAME}'), ('26533','39253','component','storage'), ('26534','39253','filesystem','{#FSNAME}'), ('26535','39254','component','storage'), ('26536','39254','filesystem','{#FSNAME}'), ('26537','39255','component','storage'), ('26538','39255','filesystem','{#FSNAME}'), ('26539','41870','component','network'), ('26540','41870','description','{#IFALIAS}'), ('26541','41870','interface','{#IFNAME}'), ('26542','41871','component','network'), ('26543','41871','description','{#IFALIAS}'), ('26544','41871','interface','{#IFNAME}'), ('26545','41872','component','network'), ('26546','41872','description','{#IFALIAS}'), ('26547','41872','interface','{#IFNAME}'), ('26548','41873','component','network'), ('26549','41873','description','{#IFALIAS}'), ('26550','41873','interface','{#IFNAME}'), ('26551','41874','component','network'), ('26552','41874','description','{#IFALIAS}'), ('26553','41874','interface','{#IFNAME}'), ('26554','41875','component','network'), ('26555','41875','description','{#IFALIAS}'), ('26556','41875','interface','{#IFNAME}'), ('26557','41876','component','network'), ('26558','41876','description','{#IFALIAS}'), ('26559','41876','interface','{#IFNAME}'), ('26560','41877','component','network'), ('26561','41877','description','{#IFALIAS}'), ('26562','41877','interface','{#IFNAME}'), ('26563','41878','component','network'), ('26564','41878','description','{#IFALIAS}'), ('26565','41878','interface','{#IFNAME}'), ('26566','39277','component','system'), ('26567','39278','component','system'), ('26568','39279','component','system'), ('26569','39280','component','os'), ('26570','39281','component','memory'), ('26571','39282','component','memory'), ('26572','39283','component','memory'), ('26573','41879','component','health'), ('26574','41879','component','network'), ('26575','41880','component','system'), ('26576','41881','component','system'), ('26577','41882','component','system'), ('26578','41883','component','system'), ('26579','41884','component','health'), ('26580','41884','component','network'), ('26581','41885','component','system'), ('26582','41886','component','system'), ('26583','41887','component','network'), ('26584','41888','component','health'), ('26585','41888','component','network'), ('26586','41889','component','health'), ('26587','41889','component','network'), ('26588','39291','component','cpu'), ('26591','39294','component','interface'), ('26592','39294','component','network'), ('26593','39294','interface','{#IFNAME}'), ('26594','39295','component','interface'), ('26595','39295','component','network'), ('26596','39295','interface','{#IFNAME}'), ('26597','39296','component','interface'), ('26598','39296','component','network'), ('26599','39296','interface','{#IFNAME}'), ('26600','39297','component','interface'), ('26601','39297','component','network'), ('26602','39297','interface','{#IFNAME}'), ('26603','39298','component','interface'), ('26604','39298','component','network'), ('26605','39298','interface','{#IFNAME}'), ('26606','39299','component','interface'), ('26607','39299','component','network'), ('26608','39299','interface','{#IFNAME}'), ('26609','39300','component','interface'), ('26610','39300','component','network'), ('26611','39300','interface','{#IFNAME}'), ('26612','39301','component','interface'), ('26613','39301','component','network'), ('26614','39301','interface','{#IFNAME}'), ('26615','39302','component','interface'), ('26616','39302','component','network'), ('26617','39302','interface','{#IFNAME}'), ('26618','39303','component','interface'), ('26619','39303','component','network'), ('26620','39303','interface','{#IFNAME}'), ('26621','39304','component','interface'), ('26622','39304','component','network'), ('26623','39304','interface','{#IFNAME}'), ('26624','39305','component','interface'), ('26625','39305','component','network'), ('26626','39305','interface','{#IFNAME}'), ('26627','39306','component','interface'), ('26628','39306','component','network'), ('26629','39306','interface','{#IFNAME}'), ('26630','39307','component','storage'), ('26631','39307','filesystem','{#FSNAME}'), ('26632','39308','component','storage'), ('26633','39308','filesystem','{#FSNAME}'), ('26634','39309','component','storage'), ('26635','39309','filesystem','{#FSNAME}'), ('26636','41891','component','network'), ('26637','41891','description','{#IFALIAS}'), ('26638','41891','interface','{#IFNAME}'), ('26639','41892','component','network'), ('26640','41892','description','{#IFALIAS}'), ('26641','41892','interface','{#IFNAME}'), ('26642','41893','component','network'), ('26643','41893','description','{#IFALIAS}'), ('26644','41893','interface','{#IFNAME}'), ('26645','41894','component','network'), ('26646','41894','description','{#IFALIAS}'), ('26647','41894','interface','{#IFNAME}'), ('26648','41895','component','network'), ('26649','41895','description','{#IFALIAS}'), ('26650','41895','interface','{#IFNAME}'), ('26651','41896','component','network'), ('26652','41896','description','{#IFALIAS}'), ('26653','41896','interface','{#IFNAME}'), ('26654','41897','component','network'), ('26655','41897','description','{#IFALIAS}'), ('26656','41897','interface','{#IFNAME}'), ('26657','41898','component','network'), ('26658','41898','description','{#IFALIAS}'), ('26659','41898','interface','{#IFNAME}'), ('26660','41899','component','network'), ('26661','41899','description','{#IFALIAS}'), ('26662','41899','interface','{#IFNAME}'), ('26663','39331','component','system'), ('26664','39332','component','system'), ('26665','39333','component','system'), ('26666','39334','component','os'), ('26667','39335','component','memory'), ('26668','39336','component','memory'), ('26669','39337','component','memory'), ('26670','41900','component','health'), ('26671','41900','component','network'), ('26672','41901','component','system'), ('26673','41902','component','system'), ('26674','41903','component','system'), ('26675','41904','component','system'), ('26676','41905','component','health'), ('26677','41905','component','network'), ('26678','41906','component','system'), ('26679','41907','component','system'), ('26680','41908','component','network'), ('26681','41909','component','health'), ('26682','41909','component','network'), ('26683','41910','component','health'), ('26684','41910','component','network'), ('26685','39345','component','cpu'), ('26688','39348','component','interface'), ('26689','39348','component','network'), ('26690','39348','interface','{#IFNAME}'), ('26691','39349','component','interface'), ('26692','39349','component','network'), ('26693','39349','interface','{#IFNAME}'), ('26694','39350','component','interface'), ('26695','39350','component','network'), ('26696','39350','interface','{#IFNAME}'), ('26697','39351','component','interface'), ('26698','39351','component','network'), ('26699','39351','interface','{#IFNAME}'), ('26700','39352','component','interface'), ('26701','39352','component','network'), ('26702','39352','interface','{#IFNAME}'), ('26703','39353','component','interface'), ('26704','39353','component','network'), ('26705','39353','interface','{#IFNAME}'), ('26706','39354','component','interface'), ('26707','39354','component','network'), ('26708','39354','interface','{#IFNAME}'), ('26709','39355','component','interface'), ('26710','39355','component','network'), ('26711','39355','interface','{#IFNAME}'), ('26712','39356','component','interface'), ('26713','39356','component','network'), ('26714','39356','interface','{#IFNAME}'), ('26715','39357','component','interface'), ('26716','39357','component','network'), ('26717','39357','interface','{#IFNAME}'), ('26718','39358','component','interface'), ('26719','39358','component','network'), ('26720','39358','interface','{#IFNAME}'), ('26721','39359','component','interface'), ('26722','39359','component','network'), ('26723','39359','interface','{#IFNAME}'), ('26724','39360','component','interface'), ('26725','39360','component','network'), ('26726','39360','interface','{#IFNAME}'), ('26727','39361','component','storage'), ('26728','39361','filesystem','{#FSNAME}'), ('26729','39362','component','storage'), ('26730','39362','filesystem','{#FSNAME}'), ('26731','39363','component','storage'), ('26732','39363','filesystem','{#FSNAME}'), ('26733','41912','component','network'), ('26734','41912','description','{#IFALIAS}'), ('26735','41912','interface','{#IFNAME}'), ('26736','41913','component','network'), ('26737','41913','description','{#IFALIAS}'), ('26738','41913','interface','{#IFNAME}'), ('26739','41914','component','network'), ('26740','41914','description','{#IFALIAS}'), ('26741','41914','interface','{#IFNAME}'), ('26742','41915','component','network'), ('26743','41915','description','{#IFALIAS}'), ('26744','41915','interface','{#IFNAME}'), ('26745','41916','component','network'), ('26746','41916','description','{#IFALIAS}'), ('26747','41916','interface','{#IFNAME}'), ('26748','41917','component','network'), ('26749','41917','description','{#IFALIAS}'), ('26750','41917','interface','{#IFNAME}'), ('26751','41918','component','network'), ('26752','41918','description','{#IFALIAS}'), ('26753','41918','interface','{#IFNAME}'), ('26754','41919','component','network'), ('26755','41919','description','{#IFALIAS}'), ('26756','41919','interface','{#IFNAME}'), ('26757','41920','component','network'), ('26758','41920','description','{#IFALIAS}'), ('26759','41920','interface','{#IFNAME}'), ('26760','39385','component','system'), ('26761','39386','component','system'), ('26762','39387','component','system'), ('26763','39388','component','os'), ('26764','39389','component','memory'), ('26765','39390','component','memory'), ('26766','39391','component','memory'), ('26767','41921','component','health'), ('26768','41921','component','network'), ('26769','41922','component','system'), ('26770','41923','component','system'), ('26771','41924','component','system'), ('26772','41925','component','system'), ('26773','41926','component','health'), ('26774','41926','component','network'), ('26775','41927','component','system'), ('26776','41928','component','system'), ('26777','41929','component','network'), ('26778','41930','component','health'), ('26779','41930','component','network'), ('26780','41931','component','health'), ('26781','41931','component','network'), ('26782','39399','component','cpu'), ('26785','39402','component','interface'), ('26786','39402','component','network'), ('26787','39402','interface','{#IFNAME}'), ('26788','39403','component','interface'), ('26789','39403','component','network'), ('26790','39403','interface','{#IFNAME}'), ('26791','39404','component','interface'), ('26792','39404','component','network'), ('26793','39404','interface','{#IFNAME}'), ('26794','39405','component','interface'), ('26795','39405','component','network'), ('26796','39405','interface','{#IFNAME}'), ('26797','39406','component','interface'), ('26798','39406','component','network'), ('26799','39406','interface','{#IFNAME}'), ('26800','39407','component','interface'), ('26801','39407','component','network'), ('26802','39407','interface','{#IFNAME}'), ('26803','39408','component','interface'), ('26804','39408','component','network'), ('26805','39408','interface','{#IFNAME}'), ('26806','39409','component','interface'), ('26807','39409','component','network'), ('26808','39409','interface','{#IFNAME}'), ('26809','39410','component','interface'), ('26810','39410','component','network'), ('26811','39410','interface','{#IFNAME}'), ('26812','39411','component','interface'), ('26813','39411','component','network'), ('26814','39411','interface','{#IFNAME}'), ('26815','39412','component','interface'), ('26816','39412','component','network'), ('26817','39412','interface','{#IFNAME}'), ('26818','39413','component','interface'), ('26819','39413','component','network'), ('26820','39413','interface','{#IFNAME}'), ('26821','39414','component','interface'), ('26822','39414','component','network'), ('26823','39414','interface','{#IFNAME}'), ('26824','39415','component','storage'), ('26825','39415','filesystem','{#FSNAME}'), ('26826','39416','component','storage'), ('26827','39416','filesystem','{#FSNAME}'), ('26828','39417','component','storage'), ('26829','39417','filesystem','{#FSNAME}'), ('26830','41933','component','network'), ('26831','41933','description','{#IFALIAS}'), ('26832','41933','interface','{#IFNAME}'), ('26833','41934','component','network'), ('26834','41934','description','{#IFALIAS}'), ('26835','41934','interface','{#IFNAME}'), ('26836','41935','component','network'), ('26837','41935','description','{#IFALIAS}'), ('26838','41935','interface','{#IFNAME}'), ('26839','41936','component','network'), ('26840','41936','description','{#IFALIAS}'), ('26841','41936','interface','{#IFNAME}'), ('26842','41937','component','network'), ('26843','41937','description','{#IFALIAS}'), ('26844','41937','interface','{#IFNAME}'), ('26845','41938','component','network'), ('26846','41938','description','{#IFALIAS}'), ('26847','41938','interface','{#IFNAME}'), ('26848','41939','component','network'), ('26849','41939','description','{#IFALIAS}'), ('26850','41939','interface','{#IFNAME}'), ('26851','41940','component','network'), ('26852','41940','description','{#IFALIAS}'), ('26853','41940','interface','{#IFNAME}'), ('26854','41941','component','network'), ('26855','41941','description','{#IFALIAS}'), ('26856','41941','interface','{#IFNAME}'), ('26857','39439','component','system'), ('26858','39440','component','system'), ('26859','39441','component','system'), ('26860','39442','component','os'), ('26861','39443','component','memory'), ('26862','39444','component','memory'), ('26863','39445','component','memory'), ('26864','41942','component','health'), ('26865','41942','component','network'), ('26866','41943','component','system'), ('26867','41944','component','system'), ('26868','41945','component','system'), ('26869','41946','component','system'), ('26870','41947','component','health'), ('26871','41947','component','network'), ('26872','41948','component','system'), ('26873','41949','component','system'), ('26874','41950','component','network'), ('26875','41951','component','health'), ('26876','41951','component','network'), ('26877','41952','component','health'), ('26878','41952','component','network'), ('26879','39453','component','cpu'), ('26882','39456','component','interface'), ('26883','39456','component','network'), ('26884','39456','interface','{#IFNAME}'), ('26885','39457','component','interface'), ('26886','39457','component','network'), ('26887','39457','interface','{#IFNAME}'), ('26888','39458','component','interface'), ('26889','39458','component','network'), ('26890','39458','interface','{#IFNAME}'), ('26891','39459','component','interface'), ('26892','39459','component','network'), ('26893','39459','interface','{#IFNAME}'), ('26894','39460','component','interface'), ('26895','39460','component','network'), ('26896','39460','interface','{#IFNAME}'), ('26897','39461','component','interface'), ('26898','39461','component','network'), ('26899','39461','interface','{#IFNAME}'), ('26900','39462','component','interface'), ('26901','39462','component','network'), ('26902','39462','interface','{#IFNAME}'), ('26903','39463','component','interface'), ('26904','39463','component','network'), ('26905','39463','interface','{#IFNAME}'), ('26906','39464','component','interface'), ('26907','39464','component','network'), ('26908','39464','interface','{#IFNAME}'), ('26909','39465','component','interface'), ('26910','39465','component','network'), ('26911','39465','interface','{#IFNAME}'), ('26912','39466','component','interface'), ('26913','39466','component','network'), ('26914','39466','interface','{#IFNAME}'), ('26915','39467','component','interface'), ('26916','39467','component','network'), ('26917','39467','interface','{#IFNAME}'), ('26918','39468','component','interface'), ('26919','39468','component','network'), ('26920','39468','interface','{#IFNAME}'), ('26921','39469','component','storage'), ('26922','39469','filesystem','{#FSNAME}'), ('26923','39470','component','storage'), ('26924','39470','filesystem','{#FSNAME}'), ('26925','39471','component','storage'), ('26926','39471','filesystem','{#FSNAME}'), ('26927','41954','component','network'), ('26928','41954','description','{#IFALIAS}'), ('26929','41954','interface','{#IFNAME}'), ('26930','41955','component','network'), ('26931','41955','description','{#IFALIAS}'), ('26932','41955','interface','{#IFNAME}'), ('26933','41956','component','network'), ('26934','41956','description','{#IFALIAS}'), ('26935','41956','interface','{#IFNAME}'), ('26936','41957','component','network'), ('26937','41957','description','{#IFALIAS}'), ('26938','41957','interface','{#IFNAME}'), ('26939','41958','component','network'), ('26940','41958','description','{#IFALIAS}'), ('26941','41958','interface','{#IFNAME}'), ('26942','41959','component','network'), ('26943','41959','description','{#IFALIAS}'), ('26944','41959','interface','{#IFNAME}'), ('26945','41960','component','network'), ('26946','41960','description','{#IFALIAS}'), ('26947','41960','interface','{#IFNAME}'), ('26948','41961','component','network'), ('26949','41961','description','{#IFALIAS}'), ('26950','41961','interface','{#IFNAME}'), ('26951','41962','component','network'), ('26952','41962','description','{#IFALIAS}'), ('26953','41962','interface','{#IFNAME}'), ('26954','39493','component','system'), ('26955','39494','component','system'), ('26956','39495','component','system'), ('26957','39496','component','os'), ('26958','39497','component','memory'), ('26959','39498','component','memory'), ('26960','39499','component','memory'), ('26961','41963','component','health'), ('26962','41963','component','network'), ('26963','41964','component','system'), ('26964','41965','component','system'), ('26965','41966','component','system'), ('26966','41967','component','system'), ('26967','41968','component','health'), ('26968','41968','component','network'), ('26969','41969','component','system'), ('26970','41970','component','system'), ('26971','41971','component','network'), ('26972','41972','component','health'), ('26973','41972','component','network'), ('26974','41973','component','health'), ('26975','41973','component','network'), ('26976','39507','component','cpu'), ('26979','39510','component','interface'), ('26980','39510','component','network'), ('26981','39510','interface','{#IFNAME}'), ('26982','39511','component','interface'), ('26983','39511','component','network'), ('26984','39511','interface','{#IFNAME}'), ('26985','39512','component','interface'), ('26986','39512','component','network'), ('26987','39512','interface','{#IFNAME}'), ('26988','39513','component','interface'), ('26989','39513','component','network'), ('26990','39513','interface','{#IFNAME}'), ('26991','39514','component','interface'), ('26992','39514','component','network'), ('26993','39514','interface','{#IFNAME}'), ('26994','39515','component','interface'), ('26995','39515','component','network'), ('26996','39515','interface','{#IFNAME}'), ('26997','39516','component','interface'), ('26998','39516','component','network'), ('26999','39516','interface','{#IFNAME}'), ('27000','39517','component','interface'), ('27001','39517','component','network'), ('27002','39517','interface','{#IFNAME}'), ('27003','39518','component','interface'), ('27004','39518','component','network'), ('27005','39518','interface','{#IFNAME}'), ('27006','39519','component','interface'), ('27007','39519','component','network'), ('27008','39519','interface','{#IFNAME}'), ('27009','39520','component','interface'), ('27010','39520','component','network'), ('27011','39520','interface','{#IFNAME}'), ('27012','39521','component','interface'), ('27013','39521','component','network'), ('27014','39521','interface','{#IFNAME}'), ('27015','39522','component','interface'), ('27016','39522','component','network'), ('27017','39522','interface','{#IFNAME}'), ('27018','39523','component','storage'), ('27019','39523','filesystem','{#FSNAME}'), ('27020','39524','component','storage'), ('27021','39524','filesystem','{#FSNAME}'), ('27022','39525','component','storage'), ('27023','39525','filesystem','{#FSNAME}'), ('27024','41975','component','network'), ('27025','41975','description','{#IFALIAS}'), ('27026','41975','interface','{#IFNAME}'), ('27027','41976','component','network'), ('27028','41976','description','{#IFALIAS}'), ('27029','41976','interface','{#IFNAME}'), ('27030','41977','component','network'), ('27031','41977','description','{#IFALIAS}'), ('27032','41977','interface','{#IFNAME}'), ('27033','41978','component','network'), ('27034','41978','description','{#IFALIAS}'), ('27035','41978','interface','{#IFNAME}'), ('27036','41979','component','network'), ('27037','41979','description','{#IFALIAS}'), ('27038','41979','interface','{#IFNAME}'), ('27039','41980','component','network'), ('27040','41980','description','{#IFALIAS}'), ('27041','41980','interface','{#IFNAME}'), ('27042','41981','component','network'), ('27043','41981','description','{#IFALIAS}'), ('27044','41981','interface','{#IFNAME}'), ('27045','41982','component','network'), ('27046','41982','description','{#IFALIAS}'), ('27047','41982','interface','{#IFNAME}'), ('27048','41983','component','network'), ('27049','41983','description','{#IFALIAS}'), ('27050','41983','interface','{#IFNAME}'), ('27051','39547','component','system'), ('27052','39548','component','system'), ('27053','39549','component','system'), ('27054','39550','component','os'), ('27055','39551','component','memory'), ('27056','39552','component','memory'), ('27057','39553','component','memory'), ('27058','41984','component','health'), ('27059','41984','component','network'), ('27060','41985','component','system'), ('27061','41986','component','system'), ('27062','41987','component','system'), ('27063','41988','component','system'), ('27064','41989','component','health'), ('27065','41989','component','network'), ('27066','41990','component','system'), ('27067','41991','component','system'), ('27068','41992','component','network'), ('27069','41993','component','health'), ('27070','41993','component','network'), ('27071','41994','component','health'), ('27072','41994','component','network'), ('27073','39561','component','cpu'), ('27076','39564','component','interface'), ('27077','39564','component','network'), ('27078','39564','interface','{#IFNAME}'), ('27079','39565','component','interface'), ('27080','39565','component','network'), ('27081','39565','interface','{#IFNAME}'), ('27082','39566','component','interface'), ('27083','39566','component','network'), ('27084','39566','interface','{#IFNAME}'), ('27085','39567','component','interface'), ('27086','39567','component','network'), ('27087','39567','interface','{#IFNAME}'), ('27088','39568','component','interface'), ('27089','39568','component','network'), ('27090','39568','interface','{#IFNAME}'), ('27091','39569','component','interface'), ('27092','39569','component','network'), ('27093','39569','interface','{#IFNAME}'), ('27094','39570','component','interface'), ('27095','39570','component','network'), ('27096','39570','interface','{#IFNAME}'), ('27097','39571','component','interface'), ('27098','39571','component','network'), ('27099','39571','interface','{#IFNAME}'), ('27100','39572','component','interface'), ('27101','39572','component','network'), ('27102','39572','interface','{#IFNAME}'), ('27103','39573','component','interface'), ('27104','39573','component','network'), ('27105','39573','interface','{#IFNAME}'), ('27106','39574','component','interface'), ('27107','39574','component','network'), ('27108','39574','interface','{#IFNAME}'), ('27109','39575','component','interface'), ('27110','39575','component','network'), ('27111','39575','interface','{#IFNAME}'), ('27112','39576','component','interface'), ('27113','39576','component','network'), ('27114','39576','interface','{#IFNAME}'), ('27115','39577','component','storage'), ('27116','39577','filesystem','{#FSNAME}'), ('27117','39578','component','storage'), ('27118','39578','filesystem','{#FSNAME}'), ('27119','39579','component','storage'), ('27120','39579','filesystem','{#FSNAME}'), ('27121','41996','component','network'), ('27122','41996','description','{#IFALIAS}'), ('27123','41996','interface','{#IFNAME}'), ('27124','41997','component','network'), ('27125','41997','description','{#IFALIAS}'), ('27126','41997','interface','{#IFNAME}'), ('27127','41998','component','network'), ('27128','41998','description','{#IFALIAS}'), ('27129','41998','interface','{#IFNAME}'), ('27130','41999','component','network'), ('27131','41999','description','{#IFALIAS}'), ('27132','41999','interface','{#IFNAME}'), ('27133','42000','component','network'), ('27134','42000','description','{#IFALIAS}'), ('27135','42000','interface','{#IFNAME}'), ('27136','42001','component','network'), ('27137','42001','description','{#IFALIAS}'), ('27138','42001','interface','{#IFNAME}'), ('27139','42002','component','network'), ('27140','42002','description','{#IFALIAS}'), ('27141','42002','interface','{#IFNAME}'), ('27142','42003','component','network'), ('27143','42003','description','{#IFALIAS}'), ('27144','42003','interface','{#IFNAME}'), ('27145','42004','component','network'), ('27146','42004','description','{#IFALIAS}'), ('27147','42004','interface','{#IFNAME}'), ('27148','39601','component','system'), ('27149','39602','component','system'), ('27150','39603','component','system'), ('27151','39604','component','os'), ('27152','39605','component','memory'), ('27153','39606','component','memory'), ('27154','39607','component','memory'), ('27155','42005','component','health'), ('27156','42005','component','network'), ('27157','42006','component','system'), ('27158','42007','component','system'), ('27159','42008','component','system'), ('27160','42009','component','system'), ('27161','42010','component','health'), ('27162','42010','component','network'), ('27163','42011','component','system'), ('27164','42012','component','system'), ('27165','42013','component','network'), ('27166','42014','component','health'), ('27167','42014','component','network'), ('27168','42015','component','health'), ('27169','42015','component','network'), ('27170','39615','component','cpu'), ('27173','39618','component','interface'), ('27174','39618','component','network'), ('27175','39618','interface','{#IFNAME}'), ('27176','39619','component','interface'), ('27177','39619','component','network'), ('27178','39619','interface','{#IFNAME}'), ('27179','39620','component','interface'), ('27180','39620','component','network'), ('27181','39620','interface','{#IFNAME}'), ('27182','39621','component','interface'), ('27183','39621','component','network'), ('27184','39621','interface','{#IFNAME}'), ('27185','39622','component','interface'), ('27186','39622','component','network'), ('27187','39622','interface','{#IFNAME}'), ('27188','39623','component','interface'), ('27189','39623','component','network'), ('27190','39623','interface','{#IFNAME}'), ('27191','39624','component','interface'), ('27192','39624','component','network'), ('27193','39624','interface','{#IFNAME}'), ('27194','39625','component','interface'), ('27195','39625','component','network'), ('27196','39625','interface','{#IFNAME}'), ('27197','39626','component','interface'), ('27198','39626','component','network'), ('27199','39626','interface','{#IFNAME}'), ('27200','39627','component','interface'), ('27201','39627','component','network'), ('27202','39627','interface','{#IFNAME}'), ('27203','39628','component','interface'), ('27204','39628','component','network'), ('27205','39628','interface','{#IFNAME}'), ('27206','39629','component','interface'), ('27207','39629','component','network'), ('27208','39629','interface','{#IFNAME}'), ('27209','39630','component','interface'), ('27210','39630','component','network'), ('27211','39630','interface','{#IFNAME}'), ('27212','39631','component','storage'), ('27213','39631','filesystem','{#FSNAME}'), ('27214','39632','component','storage'), ('27215','39632','filesystem','{#FSNAME}'), ('27216','39633','component','storage'), ('27217','39633','filesystem','{#FSNAME}'), ('27218','42017','component','network'), ('27219','42017','description','{#IFALIAS}'), ('27220','42017','interface','{#IFNAME}'), ('27221','42018','component','network'), ('27222','42018','description','{#IFALIAS}'), ('27223','42018','interface','{#IFNAME}'), ('27224','42019','component','network'), ('27225','42019','description','{#IFALIAS}'), ('27226','42019','interface','{#IFNAME}'), ('27227','42020','component','network'), ('27228','42020','description','{#IFALIAS}'), ('27229','42020','interface','{#IFNAME}'), ('27230','42021','component','network'), ('27231','42021','description','{#IFALIAS}'), ('27232','42021','interface','{#IFNAME}'), ('27233','42022','component','network'), ('27234','42022','description','{#IFALIAS}'), ('27235','42022','interface','{#IFNAME}'), ('27236','42023','component','network'), ('27237','42023','description','{#IFALIAS}'), ('27238','42023','interface','{#IFNAME}'), ('27239','42024','component','network'), ('27240','42024','description','{#IFALIAS}'), ('27241','42024','interface','{#IFNAME}'), ('27242','42025','component','network'), ('27243','42025','description','{#IFALIAS}'), ('27244','42025','interface','{#IFNAME}'), ('27245','39655','component','system'), ('27246','39656','component','system'), ('27247','39657','component','system'), ('27248','39658','component','os'), ('27249','39659','component','memory'), ('27250','39660','component','memory'), ('27251','39661','component','memory'), ('27252','42026','component','health'), ('27253','42026','component','network'), ('27254','42027','component','system'), ('27255','42028','component','system'), ('27256','42029','component','system'), ('27257','42030','component','system'), ('27258','42031','component','health'), ('27259','42031','component','network'), ('27260','42032','component','system'), ('27261','42033','component','system'), ('27262','42034','component','network'), ('27263','42035','component','health'), ('27264','42035','component','network'), ('27265','42036','component','health'), ('27266','42036','component','network'), ('27267','39669','component','cpu'), ('27270','39672','component','interface'), ('27271','39672','component','network'), ('27272','39672','interface','{#IFNAME}'), ('27273','39673','component','interface'), ('27274','39673','component','network'), ('27275','39673','interface','{#IFNAME}'), ('27276','39674','component','interface'), ('27277','39674','component','network'), ('27278','39674','interface','{#IFNAME}'), ('27279','39675','component','interface'), ('27280','39675','component','network'), ('27281','39675','interface','{#IFNAME}'), ('27282','39676','component','interface'), ('27283','39676','component','network'), ('27284','39676','interface','{#IFNAME}'), ('27285','39677','component','interface'), ('27286','39677','component','network'), ('27287','39677','interface','{#IFNAME}'), ('27288','39678','component','interface'), ('27289','39678','component','network'), ('27290','39678','interface','{#IFNAME}'), ('27291','39679','component','interface'), ('27292','39679','component','network'), ('27293','39679','interface','{#IFNAME}'), ('27294','39680','component','interface'), ('27295','39680','component','network'), ('27296','39680','interface','{#IFNAME}'), ('27297','39681','component','interface'), ('27298','39681','component','network'), ('27299','39681','interface','{#IFNAME}'), ('27300','39682','component','interface'), ('27301','39682','component','network'), ('27302','39682','interface','{#IFNAME}'), ('27303','39683','component','interface'), ('27304','39683','component','network'), ('27305','39683','interface','{#IFNAME}'), ('27306','39684','component','interface'), ('27307','39684','component','network'), ('27308','39684','interface','{#IFNAME}'), ('27309','39685','component','storage'), ('27310','39685','filesystem','{#FSNAME}'), ('27311','39686','component','storage'), ('27312','39686','filesystem','{#FSNAME}'), ('27313','39687','component','storage'), ('27314','39687','filesystem','{#FSNAME}'), ('27315','42038','component','network'), ('27316','42038','description','{#IFALIAS}'), ('27317','42038','interface','{#IFNAME}'), ('27318','42039','component','network'), ('27319','42039','description','{#IFALIAS}'), ('27320','42039','interface','{#IFNAME}'), ('27321','42040','component','network'), ('27322','42040','description','{#IFALIAS}'), ('27323','42040','interface','{#IFNAME}'), ('27324','42041','component','network'), ('27325','42041','description','{#IFALIAS}'), ('27326','42041','interface','{#IFNAME}'), ('27327','42042','component','network'), ('27328','42042','description','{#IFALIAS}'), ('27329','42042','interface','{#IFNAME}'), ('27330','42043','component','network'), ('27331','42043','description','{#IFALIAS}'), ('27332','42043','interface','{#IFNAME}'), ('27333','42044','component','network'), ('27334','42044','description','{#IFALIAS}'), ('27335','42044','interface','{#IFNAME}'), ('27336','42045','component','network'), ('27337','42045','description','{#IFALIAS}'), ('27338','42045','interface','{#IFNAME}'), ('27339','42046','component','network'), ('27340','42046','description','{#IFALIAS}'), ('27341','42046','interface','{#IFNAME}'), ('27342','39709','component','system'), ('27343','39710','component','system'), ('27344','39711','component','system'), ('27345','39712','component','os'), ('27346','39713','component','memory'), ('27347','39714','component','memory'), ('27348','39715','component','memory'), ('27349','42047','component','health'), ('27350','42047','component','network'), ('27351','42048','component','system'), ('27352','42049','component','system'), ('27353','42050','component','system'), ('27354','42051','component','system'), ('27355','42052','component','health'), ('27356','42052','component','network'), ('27357','42053','component','system'), ('27358','42054','component','system'), ('27359','42055','component','network'), ('27360','42056','component','health'), ('27361','42056','component','network'), ('27362','42057','component','health'), ('27363','42057','component','network'), ('27364','39723','component','cpu'), ('27367','39726','component','interface'), ('27368','39726','component','network'), ('27369','39726','interface','{#IFNAME}'), ('27370','39727','component','interface'), ('27371','39727','component','network'), ('27372','39727','interface','{#IFNAME}'), ('27373','39728','component','interface'), ('27374','39728','component','network'), ('27375','39728','interface','{#IFNAME}'), ('27376','39729','component','interface'), ('27377','39729','component','network'), ('27378','39729','interface','{#IFNAME}'), ('27379','39730','component','interface'), ('27380','39730','component','network'), ('27381','39730','interface','{#IFNAME}'), ('27382','39731','component','interface'), ('27383','39731','component','network'), ('27384','39731','interface','{#IFNAME}'), ('27385','39732','component','interface'), ('27386','39732','component','network'), ('27387','39732','interface','{#IFNAME}'), ('27388','39733','component','interface'), ('27389','39733','component','network'), ('27390','39733','interface','{#IFNAME}'), ('27391','39734','component','interface'), ('27392','39734','component','network'), ('27393','39734','interface','{#IFNAME}'), ('27394','39735','component','interface'), ('27395','39735','component','network'), ('27396','39735','interface','{#IFNAME}'), ('27397','39736','component','interface'), ('27398','39736','component','network'), ('27399','39736','interface','{#IFNAME}'), ('27400','39737','component','interface'), ('27401','39737','component','network'), ('27402','39737','interface','{#IFNAME}'), ('27403','39738','component','interface'), ('27404','39738','component','network'), ('27405','39738','interface','{#IFNAME}'), ('27406','39739','component','storage'), ('27407','39739','filesystem','{#FSNAME}'), ('27408','39740','component','storage'), ('27409','39740','filesystem','{#FSNAME}'), ('27410','39741','component','storage'), ('27411','39741','filesystem','{#FSNAME}'), ('27412','42059','component','network'), ('27413','42059','description','{#IFALIAS}'), ('27414','42059','interface','{#IFNAME}'), ('27415','42060','component','network'), ('27416','42060','description','{#IFALIAS}'), ('27417','42060','interface','{#IFNAME}'), ('27418','42061','component','network'), ('27419','42061','description','{#IFALIAS}'), ('27420','42061','interface','{#IFNAME}'), ('27421','42062','component','network'), ('27422','42062','description','{#IFALIAS}'), ('27423','42062','interface','{#IFNAME}'), ('27424','42063','component','network'), ('27425','42063','description','{#IFALIAS}'), ('27426','42063','interface','{#IFNAME}'), ('27427','42064','component','network'), ('27428','42064','description','{#IFALIAS}'), ('27429','42064','interface','{#IFNAME}'), ('27430','42065','component','network'), ('27431','42065','description','{#IFALIAS}'), ('27432','42065','interface','{#IFNAME}'), ('27433','42066','component','network'), ('27434','42066','description','{#IFALIAS}'), ('27435','42066','interface','{#IFNAME}'), ('27436','42067','component','network'), ('27437','42067','description','{#IFALIAS}'), ('27438','42067','interface','{#IFNAME}'), ('27439','27893','component','system'), ('27440','27894','component','system'), ('27441','27895','component','system'), ('27442','27898','component','memory'), ('27443','27900','component','memory'), ('27444','30119','component','os'), ('27445','30120','component','memory'), ('27446','42068','component','health'), ('27447','42068','component','network'), ('27448','42069','component','system'), ('27449','42070','component','system'), ('27450','42071','component','system'), ('27451','42072','component','system'), ('27452','42073','component','health'), ('27453','42073','component','network'), ('27454','42074','component','system'), ('27455','42075','component','system'), ('27456','42076','component','network'), ('27457','42077','component','health'), ('27458','42077','component','network'), ('27459','42078','component','health'), ('27460','42078','component','network'), ('27461','27904','component','cpu'), ('27463','27906','component','storage'), ('27464','27906','filesystem','{#FSNAME}'), ('27465','27907','component','storage'), ('27466','27907','filesystem','{#FSNAME}'), ('27467','27908','component','storage'), ('27468','27908','filesystem','{#FSNAME}'), ('27470','31561','component','interface'), ('27471','31561','component','network'), ('27472','31561','interface','{#IFNAME}'), ('27473','31562','component','interface'), ('27474','31562','component','network'), ('27475','31562','interface','{#IFNAME}'), ('27476','31563','component','interface'), ('27477','31563','component','network'), ('27478','31563','interface','{#IFNAME}'), ('27479','31564','component','interface'), ('27480','31564','component','network'), ('27481','31564','interface','{#IFNAME}'), ('27482','31565','component','interface'), ('27483','31565','component','network'), ('27484','31565','interface','{#IFNAME}'), ('27485','31566','component','interface'), ('27486','31566','component','network'), ('27487','31566','interface','{#IFNAME}'), ('27488','31567','component','interface'), ('27489','31567','component','network'), ('27490','31567','interface','{#IFNAME}'), ('27491','31568','component','interface'), ('27492','31568','component','network'), ('27493','31568','interface','{#IFNAME}'), ('27494','31569','component','interface'), ('27495','31569','component','network'), ('27496','31569','interface','{#IFNAME}'), ('27497','32436','component','interface'), ('27498','32436','component','network'), ('27499','32436','interface','{#IFNAME}'), ('27500','32437','component','interface'), ('27501','32437','component','network'), ('27502','32437','interface','{#IFNAME}'), ('27503','32438','component','interface'), ('27504','32438','component','network'), ('27505','32438','interface','{#IFNAME}'), ('27506','32439','component','interface'), ('27507','32439','component','network'), ('27508','32439','interface','{#IFNAME}'), ('27509','42080','component','network'), ('27510','42080','description','{#IFALIAS}'), ('27511','42080','interface','{#IFNAME}'), ('27512','42081','component','network'), ('27513','42081','description','{#IFALIAS}'), ('27514','42081','interface','{#IFNAME}'), ('27515','42082','component','network'), ('27516','42082','description','{#IFALIAS}'), ('27517','42082','interface','{#IFNAME}'), ('27518','42083','component','network'), ('27519','42083','description','{#IFALIAS}'), ('27520','42083','interface','{#IFNAME}'), ('27521','42084','component','network'), ('27522','42084','description','{#IFALIAS}'), ('27523','42084','interface','{#IFNAME}'), ('27524','42085','component','network'), ('27525','42085','description','{#IFALIAS}'), ('27526','42085','interface','{#IFNAME}'), ('27527','42086','component','network'), ('27528','42086','description','{#IFALIAS}'), ('27529','42086','interface','{#IFNAME}'), ('27530','42087','component','network'), ('27531','42087','description','{#IFALIAS}'), ('27532','42087','interface','{#IFNAME}'), ('27533','42088','component','network'), ('27534','42088','description','{#IFALIAS}'), ('27535','42088','interface','{#IFNAME}'), ('27536','33184','component','array'), ('27537','33185','component','load'), ('27538','33186','component','temperature'), ('27539','33187','component','temperature'), ('27540','33188','component','battery'), ('27541','33189','component','status'), ('27542','33190','component','status'), ('27543','33191','component','status'), ('27544','33192','component','status'), ('27545','33193','component','load'), ('27546','33194','component','load'), ('27547','33195','component','array'), ('27548','33196','component','counter'), ('27549','33197','component','counter'), ('27550','33198','component','counter'), ('27551','33199','component','battery'), ('27552','33200','component','battery'), ('27553','33201','component','battery'), ('27554','33201','component','discovery'), ('27555','33201','component','raw'), ('27556','33202','component','array'), ('27557','33203','component','array'), ('27558','33204','component','temperature'), ('27559','33206','component','battery'), ('27560','33207','component','array'), ('27561','33208','component','status'), ('27562','33209','component','temperature'), ('27563','33210','component','temperature'), ('27564','33211','component','battery'), ('27565','33212','component','status'), ('27566','33213','component','status'), ('27567','33214','component','status'), ('27568','33215','component','load'), ('27569','33216','component','battery'), ('27570','33216','component','discovery'), ('27571','33216','component','raw'), ('27572','33217','component','load'), ('27573','33218','component','load'), ('27574','33219','component','counter'), ('27575','33220','component','counter'), ('27576','33221','component','counter'), ('27577','33222','component','battery'), ('27578','33223','component','battery'), ('27579','33224','component','temperature'), ('27580','33226','component','battery'), ('27581','33227','component','array'), ('27582','33228','component','load'), ('27583','33229','component','temperature'), ('27584','33230','component','temperature'), ('27585','33231','component','battery'), ('27586','33232','component','status'), ('27587','33233','component','status'), ('27588','33234','component','status'), ('27589','33235','component','status'), ('27590','33236','component','load'), ('27591','33237','component','load'), ('27592','33238','component','array'), ('27593','33239','component','counter'), ('27594','33240','component','counter'), ('27595','33241','component','counter'), ('27596','33242','component','battery'), ('27597','33243','component','battery'), ('27598','33244','component','battery'), ('27599','33244','component','discovery'), ('27600','33244','component','raw'), ('27601','33245','component','array'), ('27602','33246','component','array'), ('27603','33247','component','temperature'), ('27604','33249','component','battery'), ('27605','33250','component','battery'), ('27606','33250','component','discovery'), ('27607','33250','component','raw'), ('27608','33251','component','load'), ('27609','33252','component','load'), ('27610','33253','component','status'), ('27611','33254','component','status'), ('27612','33255','component','status'), ('27613','33256','component','temperature'), ('27614','33258','component','battery'), ('27615','33259','component','array'), ('27616','33260','component','counter'), ('27617','33261','component','temperature'), ('27618','33262','component','battery'), ('27619','33263','component','status'), ('27620','33264','component','status'), ('27621','33265','component','status'), ('27622','33266','component','counter'), ('27623','33267','component','battery'), ('27624','33268','component','array'), ('27625','33269','component','battery'), ('27626','33270','component','battery'), ('27627','33271','component','battery'), ('27628','33271','component','discovery'), ('27629','33271','component','raw'), ('27630','33272','component','array'), ('27631','33273','component','array'), ('27632','33274','component','array'), ('27633','33275','component','temperature'), ('27634','33277','component','battery'), ('27635','33278','component','array'), ('27636','33279','component','counter'), ('27637','33280','component','temperature'), ('27638','33281','component','battery'), ('27639','33282','component','status'), ('27640','33283','component','status'), ('27641','33284','component','status'), ('27642','33285','component','counter'), ('27643','33286','component','battery'), ('27644','33287','component','array'), ('27645','33288','component','battery'), ('27646','33289','component','battery'), ('27647','33290','component','battery'), ('27648','33290','component','discovery'), ('27649','33290','component','raw'), ('27650','33291','component','array'), ('27651','33292','component','array'), ('27652','33293','component','array'), ('27653','33294','component','temperature'), ('27654','33296','component','battery'), ('27655','33297','component','battery'), ('27656','33297','component','discovery'), ('27657','33297','component','raw'), ('27658','33298','component','status'), ('27659','33299','component','counter'), ('27660','33300','component','counter'), ('27661','33301','component','status'), ('27662','33302','component','status'), ('27663','33303','component','status'), ('27664','33304','component','temperature'), ('27665','33305','component','temperature'), ('27666','33312','component','battery'), ('27667','33313','component','array'), ('27668','33314','component','battery'), ('27669','33315','component','battery'), ('27670','33316','component','battery'), ('27671','33317','component','load'), ('27672','33318','component','load'), ('27673','33319','component','load'), ('27674','33320','component','load'), ('27675','27930','component','system'), ('27676','27931','component','system'), ('27677','27935','component','memory'), ('27678','27936','component','cpu'), ('27679','30121','component','os'), ('27680','30122','component','memory'), ('27681','30123','component','memory'), ('27682','42089','component','health'), ('27683','42089','component','network'), ('27684','42090','component','system'), ('27685','42091','component','system'), ('27686','42092','component','system'), ('27687','42093','component','system'), ('27688','42094','component','health'), ('27689','42094','component','network'), ('27690','42095','component','system'), ('27691','42096','component','system'), ('27692','42097','component','network'), ('27693','42098','component','health'), ('27694','42098','component','network'), ('27695','42099','component','health'), ('27696','42099','component','network'), ('27697','27940','component','temperature'), ('27698','27941','component','temperature'), ('27699','27942','component','fan'), ('27700','27943','component','power'), ('27701','42101','component','network'), ('27702','42101','description','{#IFALIAS}'), ('27703','42101','interface','{#IFNAME}'), ('27704','42102','component','network'), ('27705','42102','description','{#IFALIAS}'), ('27706','42102','interface','{#IFNAME}'), ('27707','42103','component','network'), ('27708','42103','description','{#IFALIAS}'), ('27709','42103','interface','{#IFNAME}'), ('27710','42104','component','network'), ('27711','42104','description','{#IFALIAS}'), ('27712','42104','interface','{#IFNAME}'), ('27713','42105','component','network'), ('27714','42105','description','{#IFALIAS}'), ('27715','42105','interface','{#IFNAME}'), ('27716','42106','component','network'), ('27717','42106','description','{#IFALIAS}'), ('27718','42106','interface','{#IFNAME}'), ('27719','42107','component','network'), ('27720','42107','description','{#IFALIAS}'), ('27721','42107','interface','{#IFNAME}'), ('27722','42108','component','network'), ('27723','42108','description','{#IFALIAS}'), ('27724','42108','interface','{#IFNAME}'), ('27725','42109','component','network'), ('27726','42109','description','{#IFALIAS}'), ('27727','42109','interface','{#IFNAME}'), ('27728','27967','component','system'), ('27729','27968','component','system'), ('27730','27970','component','system'), ('27731','27971','component','system'), ('27732','27972','component','memory'), ('27733','27973','component','memory'), ('27734','27975','component','cpu'), ('27735','30124','component','temperature'), ('27736','30125','component','os'), ('27737','30126','component','memory'), ('27738','42110','component','health'), ('27739','42110','component','network'), ('27740','42111','component','system'), ('27741','42112','component','system'), ('27742','42113','component','system'), ('27743','42114','component','system'), ('27744','42115','component','health'), ('27745','42115','component','network'), ('27746','42116','component','system'), ('27747','42117','component','system'), ('27748','42118','component','network'), ('27749','42119','component','health'), ('27750','42119','component','network'), ('27751','42120','component','health'), ('27752','42120','component','network'), ('27753','30129','component','fan'), ('27754','30130','component','power'), ('27755','42123','component','network'), ('27756','42123','description','{#IFALIAS}'), ('27757','42123','interface','{#IFNAME}'), ('27758','42124','component','network'), ('27759','42124','description','{#IFALIAS}'), ('27760','42124','interface','{#IFNAME}'), ('27761','42125','component','network'), ('27762','42125','description','{#IFALIAS}'), ('27763','42125','interface','{#IFNAME}'), ('27764','42126','component','network'), ('27765','42126','description','{#IFALIAS}'), ('27766','42126','interface','{#IFNAME}'), ('27767','42127','component','network'), ('27768','42127','description','{#IFALIAS}'), ('27769','42127','interface','{#IFNAME}'), ('27770','42128','component','network'), ('27771','42128','description','{#IFALIAS}'), ('27772','42128','interface','{#IFNAME}'), ('27773','42129','component','network'), ('27774','42129','description','{#IFALIAS}'), ('27775','42129','interface','{#IFNAME}'), ('27776','42130','component','network'), ('27777','42130','description','{#IFALIAS}'), ('27778','42130','interface','{#IFNAME}'), ('27779','42131','component','network'), ('27780','42131','description','{#IFALIAS}'), ('27781','42131','interface','{#IFNAME}'), ('27782','42132','component','network'), ('27783','42132','description','{#IFALIAS}'), ('27784','42132','interface','{#IFNAME}'), ('27785','27997','component','system'), ('27786','27998','component','system'), ('27787','27999','component','system'), ('27788','28000','component','system'), ('27789','42133','component','health'), ('27790','42133','component','network'), ('27791','42134','component','health'), ('27792','42134','component','network'), ('27793','42135','component','health'), ('27794','42135','component','network'), ('27795','42136','component','network'), ('27796','42137','component','system'), ('27797','42138','component','system'), ('27798','42139','component','system'), ('27799','42140','component','system'), ('27800','42141','component','system'), ('27801','42142','component','system'), ('27802','42143','component','health'), ('27803','42143','component','network'), ('27804','28003','component','cpu'), ('27805','30131','component','memory'), ('27806','42145','component','network'), ('27807','42145','description','{#IFALIAS}'), ('27808','42145','interface','{#IFNAME}'), ('27809','42146','component','network'), ('27810','42146','description','{#IFALIAS}'), ('27811','42146','interface','{#IFNAME}'), ('27812','42147','component','network'), ('27813','42147','description','{#IFALIAS}'), ('27814','42147','interface','{#IFNAME}'), ('27815','42148','component','network'), ('27816','42148','description','{#IFALIAS}'), ('27817','42148','interface','{#IFNAME}'), ('27818','42149','component','network'), ('27819','42149','description','{#IFALIAS}'), ('27820','42149','interface','{#IFNAME}'), ('27821','42150','component','network'), ('27822','42150','description','{#IFALIAS}'), ('27823','42150','interface','{#IFNAME}'), ('27824','42151','component','network'), ('27825','42151','description','{#IFALIAS}'), ('27826','42151','interface','{#IFNAME}'), ('27827','42152','component','network'), ('27828','42152','description','{#IFALIAS}'), ('27829','42152','interface','{#IFNAME}'), ('27830','42153','component','network'), ('27831','42153','description','{#IFALIAS}'), ('27832','42153','interface','{#IFNAME}'), ('27833','28026','component','system'), ('27834','28027','component','system'), ('27835','28031','component','cpu'), ('27836','30132','component','memory'), ('27837','30133','component','memory'), ('27838','30134','component','memory'), ('27839','30135','component','memory'), ('27840','30136','component','memory'), ('27841','42154','component','health'), ('27842','42154','component','network'), ('27843','42155','component','system'), ('27844','42156','component','system'), ('27845','42157','component','system'), ('27846','42158','component','system'), ('27847','42159','component','health'), ('27848','42159','component','network'), ('27849','42160','component','system'), ('27850','42161','component','system'), ('27851','42162','component','network'), ('27852','42163','component','health'), ('27853','42163','component','network'), ('27854','42164','component','health'), ('27855','42164','component','network'), ('27856','42166','component','network'), ('27857','42166','description','{#IFALIAS}'), ('27858','42166','interface','{#IFNAME}'), ('27859','42167','component','network'), ('27860','42167','description','{#IFALIAS}'), ('27861','42167','interface','{#IFNAME}'), ('27862','42168','component','network'), ('27863','42168','description','{#IFALIAS}'), ('27864','42168','interface','{#IFNAME}'), ('27865','42169','component','network'), ('27866','42169','description','{#IFALIAS}'), ('27867','42169','interface','{#IFNAME}'), ('27868','42170','component','network'), ('27869','42170','description','{#IFALIAS}'), ('27870','42170','interface','{#IFNAME}'), ('27871','42171','component','network'), ('27872','42171','description','{#IFALIAS}'), ('27873','42171','interface','{#IFNAME}'), ('27874','42172','component','network'), ('27875','42172','description','{#IFALIAS}'), ('27876','42172','interface','{#IFNAME}'), ('27877','42173','component','network'), ('27878','42173','description','{#IFALIAS}'), ('27879','42173','interface','{#IFNAME}'), ('27880','42174','component','network'), ('27881','42174','description','{#IFALIAS}'), ('27882','42174','interface','{#IFNAME}'), ('27883','39742','component','application'), ('27884','39743','component','raw'), ('27885','39744','component','orchestrator'), ('27886','39745','component','application'), ('27887','39746','component','orchestrator'), ('27888','39747','component','orchestrator'), ('27889','39748','component','orchestrator'), ('27890','39754','component','edge'), ('27891','39755','component','edge'), ('27892','39756','component','edge'), ('27893','39757','component','edge'), ('27894','39758','component','edge'), ('27895','39759','component','edge'), ('27896','39760','component','edge'), ('27897','39761','component','edge'), ('27898','39762','component','gateway'), ('27899','39763','component','gateway'), ('27900','39764','component','gateway'), ('27901','39765','component','gateway'), ('27902','39766','component','gateway'), ('27903','39767','component','gateway'), ('27904','39768','component','cpu'), ('27905','39768','component','gateway'), ('27906','39769','component','gateway'), ('27907','39770','component','gateway'), ('27908','39770','component','memory'), ('27909','39771','component','gateway'), ('27910','39772','component','link'), ('27911','39772','interface','{#IF}'), ('27912','39772','ip','{#IP}'), ('27913','39773','component','link'), ('27914','39773','interface','{#IF}'), ('27915','39773','ip','{#IP}'), ('27916','39774','component','link'), ('27917','39774','interface','{#IF}'), ('27918','39774','ip','{#IP}'), ('27919','39775','component','link'), ('27920','39775','interface','{#IF}'), ('27921','39775','ip','{#IP}'), ('27922','39776','component','link'), ('27923','39776','interface','{#IF}'), ('27924','39776','ip','{#IP}'), ('27925','39777','component','link'), ('27926','39777','interface','{#IF}'), ('27927','39777','ip','{#IP}'), ('27928','39778','component','link'), ('27929','39778','interface','{#IF}'), ('27930','39778','ip','{#IP}'), ('27931','39779','component','link'), ('27932','39779','interface','{#IF}'), ('27933','39779','ip','{#IP}'), ('27934','39780','component','link'), ('27935','39780','interface','{#IF}'), ('27936','39780','ip','{#IP}'), ('27937','39781','component','link'), ('27938','39781','interface','{#IF}'), ('27939','39781','ip','{#IP}'), ('27940','39782','component','sdwan-path'), ('27941','39782','destination','{#DESTINATION}'), ('27942','39782','source','{#SOURCE}'), ('27943','39783','component','sdwan-path'), ('27944','39783','destination','{#DESTINATION}'), ('27945','39783','source','{#SOURCE}'), ('27946','39784','component','sdwan-path'), ('27947','39784','destination','{#DESTINATION}'), ('27948','39784','source','{#SOURCE}'), ('27949','39785','component','sdwan-path'), ('27950','39785','destination','{#DESTINATION}'), ('27951','39785','source','{#SOURCE}'), ('27952','39786','component','sdwan-path'), ('27953','39786','destination','{#DESTINATION}'), ('27954','39786','source','{#SOURCE}'), ('27955','39787','component','sdwan-path'), ('27956','39787','destination','{#DESTINATION}'), ('27957','39787','source','{#SOURCE}'), ('27958','39788','component','sdwan-path'), ('27959','39788','destination','{#DESTINATION}'), ('27960','39788','source','{#SOURCE}'), ('27961','39789','component','sdwan-path'), ('27962','39789','destination','{#DESTINATION}'), ('27963','39789','source','{#SOURCE}'), ('27964','39790','component','sdwan-peer'), ('27965','39790','type','{#TYPE}'), ('27966','39791','component','sdwan-peer'), ('27967','39791','type','{#TYPE}'), ('27968','39792','component','sdwan-peer'), ('27969','39792','type','{#TYPE}'), ('27970','39793','component','sdwan-peer'), ('27971','39793','type','{#TYPE}'), ('27972','39794','component','sdwan-peer'), ('27973','39794','type','{#TYPE}'), ('27974','39795','component','sdwan-peer'), ('27975','39795','type','{#TYPE}'), ('27976','39796','component','sdwan-peer'), ('27977','39796','type','{#TYPE}'), ('27978','35532','component','network'), ('27979','35533','component','inventory'), ('27980','35534','component','inventory'), ('27981','35535','component','inventory'), ('27982','35536','component','inventory'), ('27983','35537','component','inventory'), ('27984','35538','component','inventory'), ('27985','35539','component','inventory'), ('27986','35540','component','line-card'), ('27987','35540','interface','slot-{#ZYXEL.SLOT.ID}'), ('27988','35541','component','system'), ('27989','35546','component','network'), ('27990','35546','description','{#ZYXEL.IF.NAME}'), ('27991','35546','interface','{#SNMPINDEX}'), ('27992','35547','component','network'), ('27993','35547','description','{#ZYXEL.IF.NAME}'), ('27994','35547','interface','{#SNMPINDEX}'), ('27995','35548','component','network'), ('27996','35548','description','{#ZYXEL.IF.NAME}'), ('27997','35548','interface','{#SNMPINDEX}'), ('27998','35549','component','network'), ('27999','35549','description','{#ZYXEL.IF.NAME}'), ('28000','35549','interface','{#SNMPINDEX}'), ('28001','35550','component','network'), ('28002','35550','description','{#ZYXEL.IF.NAME}'), ('28003','35550','interface','{#SNMPINDEX}'), ('28004','35551','component','network'), ('28005','35551','description','{#ZYXEL.IF.NAME}'), ('28006','35551','interface','{#SNMPINDEX}'), ('28007','35552','component','network'), ('28008','35552','description','{#ZYXEL.IF.NAME}'), ('28009','35552','interface','{#SNMPINDEX}'), ('28010','35553','component','network'), ('28011','35553','description','{#ZYXEL.IF.NAME}'), ('28012','35553','interface','{#SNMPINDEX}'), ('28013','35554','component','network'), ('28014','35554','description','{#ZYXEL.IF.NAME}'), ('28015','35554','interface','{#SNMPINDEX}'), ('28016','35555','component','network'), ('28017','35555','description','{#ZYXEL.IF.NAME}'), ('28018','35555','interface','{#SNMPINDEX}'), ('28019','35556','component','network'), ('28020','35556','description','{#ZYXEL.IF.NAME}'), ('28021','35556','interface','{#SNMPINDEX}'), ('28022','35557','component','network'), ('28023','35557','description','{#ZYXEL.IF.NAME}'), ('28024','35557','interface','{#SNMPINDEX}'), ('28025','35558','component','network'), ('28026','35558','description','{#ZYXEL.IF.NAME}'), ('28027','35558','interface','{#SNMPINDEX}'), ('28028','35559','component','network'), ('28029','35559','description','{#ZYXEL.IF.NAME}'), ('28030','35559','interface','{#SNMPINDEX}'), ('28031','35560','component','network'), ('28032','35560','description','{#ZYXEL.IF.NAME}'), ('28033','35560','interface','{#SNMPINDEX}'), ('28034','35561','component','network'), ('28035','35561','description','{#ZYXEL.IF.NAME}'), ('28036','35561','interface','{#SNMPINDEX}'), ('28037','35562','component','sensor'), ('28038','35562','component','temperature'), ('28039','35563','component','sensor'), ('28040','35563','component','voltage'), ('28041','35564','component','network'), ('28042','35565','component','inventory'), ('28043','35566','component','cpu'), ('28044','35567','component','inventory'), ('28045','35568','component','inventory'), ('28046','35569','component','inventory'), ('28047','35570','component','inventory'), ('28048','35571','component','inventory'), ('28049','35572','component','inventory'), ('28050','35573','component','system'), ('28051','35580','component','memory'), ('28052','35581','component','network'), ('28053','35581','description','{#ZYXEL.IF.NAME}'), ('28054','35581','interface','{#SNMPINDEX}'), ('28055','35582','component','network'), ('28056','35582','description','{#ZYXEL.IF.NAME}'), ('28057','35582','interface','{#SNMPINDEX}'), ('28058','35583','component','network'), ('28059','35583','description','{#ZYXEL.IF.NAME}'), ('28060','35583','interface','{#SNMPINDEX}'), ('28061','35584','component','network'), ('28062','35584','description','{#ZYXEL.IF.NAME}'), ('28063','35584','interface','{#SNMPINDEX}'), ('28064','35585','component','network'), ('28065','35585','description','{#ZYXEL.IF.NAME}'), ('28066','35585','interface','{#SNMPINDEX}'), ('28067','35586','component','network'), ('28068','35586','description','{#ZYXEL.IF.NAME}'), ('28069','35586','interface','{#SNMPINDEX}'), ('28070','35587','component','network'), ('28071','35587','description','{#ZYXEL.IF.NAME}'), ('28072','35587','interface','{#SNMPINDEX}'), ('28073','35588','component','network'), ('28074','35588','description','{#ZYXEL.IF.NAME}'), ('28075','35588','interface','{#SNMPINDEX}'), ('28076','35589','component','network'), ('28077','35589','description','{#ZYXEL.IF.NAME}'), ('28078','35589','interface','{#SNMPINDEX}'), ('28079','35590','component','network'), ('28080','35590','description','{#ZYXEL.IF.NAME}'), ('28081','35590','interface','{#SNMPINDEX}'), ('28082','35591','component','network'), ('28083','35591','description','{#ZYXEL.IF.NAME}'), ('28084','35591','interface','{#SNMPINDEX}'), ('28085','35592','component','network'), ('28086','35592','description','{#ZYXEL.IF.NAME}'), ('28087','35592','interface','{#SNMPINDEX}'), ('28088','35593','component','network'), ('28089','35593','description','{#ZYXEL.IF.NAME}'), ('28090','35593','interface','{#SNMPINDEX}'), ('28091','35594','component','network'), ('28092','35594','description','{#ZYXEL.IF.NAME}'), ('28093','35594','interface','{#SNMPINDEX}'), ('28094','35595','component','network'), ('28095','35595','description','{#ZYXEL.IF.NAME}'), ('28096','35595','interface','{#SNMPINDEX}'), ('28097','35596','component','network'), ('28098','35596','description','{#ZYXEL.IF.NAME}'), ('28099','35596','interface','{#SNMPINDEX}'), ('28100','35597','component','network'), ('28101','35597','description','{#ZYXEL.IF.NAME}'), ('28102','35597','interface','{#SNMPINDEX}'), ('28103','35598','component','network'), ('28104','35598','description','{#ZYXEL.IF.NAME}'), ('28105','35598','interface','{#SNMPINDEX}'), ('28106','35599','component','network'), ('28107','35599','description','{#ZYXEL.IF.NAME}'), ('28108','35599','interface','{#SNMPINDEX}'), ('28109','35600','component','network'), ('28110','35600','description','{#ZYXEL.IF.NAME}'), ('28111','35600','interface','{#SNMPINDEX}'), ('28112','35601','component','network'), ('28113','35601','description','{#ZYXEL.IF.NAME}'), ('28114','35601','interface','{#SNMPINDEX}'), ('28115','35602','component','network'), ('28116','35602','description','{#ZYXEL.IF.NAME}'), ('28117','35602','interface','{#SNMPINDEX}'), ('28118','35603','component','network'), ('28119','35603','description','{#ZYXEL.IF.NAME}'), ('28120','35603','interface','{#SNMPINDEX}'), ('28121','35604','component','network'), ('28122','35604','description','{#ZYXEL.IF.NAME}'), ('28123','35604','interface','{#SNMPINDEX}'), ('28124','35605','component','network'), ('28125','35605','description','{#ZYXEL.IF.NAME}'), ('28126','35605','interface','{#SNMPINDEX}'), ('28127','35606','component','sensor'), ('28128','35606','component','temperature'), ('28129','35607','component','sensor'), ('28130','35607','component','voltage'), ('28131','35608','component','network'), ('28132','35609','component','inventory'), ('28133','35610','component','cpu'), ('28134','35611','component','inventory'), ('28135','35612','component','inventory'), ('28136','35613','component','inventory'), ('28137','35614','component','inventory'), ('28138','35615','component','inventory'), ('28139','35616','component','inventory'), ('28140','35617','component','system'), ('28141','35622','component','fan'), ('28142','35622','component','sensor'), ('28143','35623','component','network'), ('28144','35623','description','{#ZYXEL.IF.NAME}'), ('28145','35623','interface','{#SNMPINDEX}'), ('28146','35624','component','network'), ('28147','35624','description','{#ZYXEL.IF.NAME}'), ('28148','35624','interface','{#SNMPINDEX}'), ('28149','35625','component','network'), ('28150','35625','description','{#ZYXEL.IF.NAME}'), ('28151','35625','interface','{#SNMPINDEX}'), ('28152','35626','component','network'), ('28153','35626','description','{#ZYXEL.IF.NAME}'), ('28154','35626','interface','{#SNMPINDEX}'), ('28155','35627','component','network'), ('28156','35627','description','{#ZYXEL.IF.NAME}'), ('28157','35627','interface','{#SNMPINDEX}'), ('28158','35628','component','network'), ('28159','35628','description','{#ZYXEL.IF.NAME}'), ('28160','35628','interface','{#SNMPINDEX}'), ('28161','35629','component','network'), ('28162','35629','description','{#ZYXEL.IF.NAME}'), ('28163','35629','interface','{#SNMPINDEX}'), ('28164','35630','component','network'), ('28165','35630','description','{#ZYXEL.IF.NAME}'), ('28166','35630','interface','{#SNMPINDEX}'), ('28167','35631','component','network'), ('28168','35631','description','{#ZYXEL.IF.NAME}'), ('28169','35631','interface','{#SNMPINDEX}'), ('28170','35632','component','network'), ('28171','35632','description','{#ZYXEL.IF.NAME}'), ('28172','35632','interface','{#SNMPINDEX}'), ('28173','35633','component','network'), ('28174','35633','description','{#ZYXEL.IF.NAME}'), ('28175','35633','interface','{#SNMPINDEX}'), ('28176','35634','component','network'), ('28177','35634','description','{#ZYXEL.IF.NAME}'), ('28178','35634','interface','{#SNMPINDEX}'), ('28179','35635','component','network'), ('28180','35635','description','{#ZYXEL.IF.NAME}'), ('28181','35635','interface','{#SNMPINDEX}'), ('28182','35636','component','network'), ('28183','35636','description','{#ZYXEL.IF.NAME}'), ('28184','35636','interface','{#SNMPINDEX}'), ('28185','35637','component','network'), ('28186','35637','description','{#ZYXEL.IF.NAME}'), ('28187','35637','interface','{#SNMPINDEX}'), ('28188','35638','component','network'), ('28189','35638','description','{#ZYXEL.IF.NAME}'), ('28190','35638','interface','{#SNMPINDEX}'), ('28191','35639','component','network'), ('28192','35639','description','{#ZYXEL.IF.NAME}'), ('28193','35639','interface','{#SNMPINDEX}'), ('28194','35640','component','sensor'), ('28195','35640','component','temperature'), ('28196','35641','component','sensor'), ('28197','35641','component','voltage'), ('28198','35642','component','network'), ('28199','35643','component','inventory'), ('28200','35644','component','inventory'), ('28201','35645','component','inventory'), ('28202','35646','component','inventory'), ('28203','35647','component','inventory'), ('28204','35648','component','system'), ('28205','35658','component','system'), ('28206','35659','component','cpu'), ('28207','35660','component','fan'), ('28208','35660','component','sensor'), ('28209','35661','component','memory'), ('28210','35662','component','network'), ('28211','35662','description','{#ZYXEL.IF.NAME}'), ('28212','35662','interface','{#SNMPINDEX}'), ('28213','35663','component','network'), ('28214','35663','description','{#ZYXEL.IF.NAME}'), ('28215','35663','interface','{#SNMPINDEX}'), ('28216','35664','component','network'), ('28217','35664','description','{#ZYXEL.IF.NAME}'), ('28218','35664','interface','{#SNMPINDEX}'), ('28219','35665','component','network'), ('28220','35665','description','{#ZYXEL.IF.NAME}'), ('28221','35665','interface','{#SNMPINDEX}'), ('28222','35666','component','network'), ('28223','35666','description','{#ZYXEL.IF.NAME}'), ('28224','35666','interface','{#SNMPINDEX}'), ('28225','35667','component','network'), ('28226','35667','description','{#ZYXEL.IF.NAME}'), ('28227','35667','interface','{#SNMPINDEX}'), ('28228','35668','component','network'), ('28229','35668','description','{#ZYXEL.IF.NAME}'), ('28230','35668','interface','{#SNMPINDEX}'), ('28231','35669','component','network'), ('28232','35669','description','{#ZYXEL.IF.NAME}'), ('28233','35669','interface','{#SNMPINDEX}'), ('28234','35670','component','network'), ('28235','35670','description','{#ZYXEL.IF.NAME}'), ('28236','35670','interface','{#SNMPINDEX}'), ('28237','35671','component','network'), ('28238','35671','description','{#ZYXEL.IF.NAME}'), ('28239','35671','interface','{#SNMPINDEX}'), ('28240','35672','component','network'), ('28241','35672','description','{#ZYXEL.IF.NAME}'), ('28242','35672','interface','{#SNMPINDEX}'), ('28243','35673','component','network'), ('28244','35673','description','{#ZYXEL.IF.NAME}'), ('28245','35673','interface','{#SNMPINDEX}'), ('28246','35674','component','network'), ('28247','35674','description','{#ZYXEL.IF.NAME}'), ('28248','35674','interface','{#SNMPINDEX}'), ('28249','35675','component','network'), ('28250','35675','description','{#ZYXEL.IF.NAME}'), ('28251','35675','interface','{#SNMPINDEX}'), ('28252','35676','component','network'), ('28253','35676','description','{#ZYXEL.IF.NAME}'), ('28254','35676','interface','{#SNMPINDEX}'), ('28255','35677','component','network'), ('28256','35677','description','{#ZYXEL.IF.NAME}'), ('28257','35677','interface','{#SNMPINDEX}'), ('28258','35678','component','network'), ('28259','35678','description','{#ZYXEL.IF.NAME}'), ('28260','35678','interface','{#SNMPINDEX}'), ('28261','35679','component','network'), ('28262','35679','description','{#ZYXEL.IF.NAME}'), ('28263','35679','interface','{#SNMPINDEX}'), ('28264','35680','component','network'), ('28265','35680','description','{#ZYXEL.IF.NAME}'), ('28266','35680','interface','{#SNMPINDEX}'), ('28267','35681','component','network'), ('28268','35681','description','{#ZYXEL.IF.NAME}'), ('28269','35681','interface','{#SNMPINDEX}'), ('28270','35682','component','network'), ('28271','35682','description','{#ZYXEL.IF.NAME}'), ('28272','35682','interface','{#SNMPINDEX}'), ('28273','35683','component','network'), ('28274','35683','description','{#ZYXEL.IF.NAME}'), ('28275','35683','interface','{#SNMPINDEX}'), ('28276','35684','component','network'), ('28277','35684','description','{#ZYXEL.IF.NAME}'), ('28278','35684','interface','{#SNMPINDEX}'), ('28279','35685','component','network'), ('28280','35685','description','{#ZYXEL.IF.NAME}'), ('28281','35685','interface','{#SNMPINDEX}'), ('28282','35686','component','network'), ('28283','35686','description','{#ZYXEL.IF.NAME}'), ('28284','35686','interface','{#SNMPINDEX}'), ('28285','35687','component','network'), ('28286','35687','description','{#ZYXEL.IF.NAME}'), ('28287','35687','interface','{#SNMPINDEX}'), ('28288','35688','component','network'), ('28289','35688','description','{#ZYXEL.IF.NAME}'), ('28290','35688','interface','{#SNMPINDEX}'), ('28291','35689','component','network'), ('28292','35689','description','{#ZYXEL.IF.NAME}'), ('28293','35689','interface','{#SNMPINDEX}'), ('28294','35690','component','network'), ('28295','35690','description','{#ZYXEL.IF.NAME}'), ('28296','35690','interface','{#SNMPINDEX}'), ('28297','35691','component','network'), ('28298','35691','description','{#ZYXEL.IF.NAME}'), ('28299','35691','interface','{#SNMPINDEX}'), ('28300','35692','component','network'), ('28301','35692','description','{#ZYXEL.IF.NAME}'), ('28302','35692','interface','{#SNMPINDEX}'), ('28303','35693','component','network'), ('28304','35693','description','{#ZYXEL.IF.NAME}'), ('28305','35693','interface','{#SNMPINDEX}'), ('28306','35694','component','network'), ('28307','35694','description','{#ZYXEL.IF.NAME}'), ('28308','35694','interface','{#SNMPINDEX}'), ('28309','35695','component','line-card'), ('28310','35695','interface','slot-{#ZYXEL.SLOT.ID}'), ('28311','35696','component','firmware'), ('28312','35696','component','line-card'), ('28313','35696','interface','slot-{#ZYXEL.SLOT.ID}'), ('28314','35697','component','line-card'), ('28315','35697','interface','slot-{#ZYXEL.SLOT.ID}'), ('28316','35698','component','firmware'), ('28317','35698','component','line-card'), ('28318','35698','interface','slot-{#ZYXEL.SLOT.ID}'), ('28319','35699','component','firmware'), ('28320','35699','component','line-card'), ('28321','35699','interface','slot-{#ZYXEL.SLOT.ID}'), ('28322','35700','component','firmware'), ('28323','35700','component','line-card'), ('28324','35700','interface','slot-{#ZYXEL.SLOT.ID}'), ('28325','35701','component','line-card'), ('28326','35701','interface','slot-{#ZYXEL.SLOT.ID}'), ('28327','35702','component','line-card'), ('28328','35702','interface','slot-{#ZYXEL.SLOT.ID}'), ('28329','35703','component','line-card'), ('28330','35703','interface','slot-{#ZYXEL.SLOT.ID}'), ('28331','35704','component','line-card'), ('28332','35704','interface','slot-{#ZYXEL.SLOT.ID}'), ('28333','35705','component','line-card'), ('28334','35705','interface','slot-{#ZYXEL.SLOT.ID}'), ('28335','35706','component','line-card'), ('28336','35706','interface','slot-{#ZYXEL.SLOT.ID}'), ('28337','35707','component','sensor'), ('28338','35707','component','temperature'), ('28339','35708','component','sensor'), ('28340','35708','component','voltage'), ('28341','35709','component','network'), ('28342','35710','component','inventory'), ('28343','35711','component','inventory'), ('28344','35712','component','inventory'), ('28345','35713','component','inventory'), ('28346','35714','component','inventory'), ('28347','35715','component','system'), ('28348','35725','component','system'), ('28349','35726','component','cpu'), ('28350','35727','component','fan'), ('28351','35727','component','sensor'), ('28352','35728','component','memory'), ('28353','35729','component','network'), ('28354','35729','description','{#ZYXEL.IF.NAME}'), ('28355','35729','interface','{#SNMPINDEX}'), ('28356','35730','component','network'), ('28357','35730','description','{#ZYXEL.IF.NAME}'), ('28358','35730','interface','{#SNMPINDEX}'), ('28359','35731','component','network'), ('28360','35731','description','{#ZYXEL.IF.NAME}'), ('28361','35731','interface','{#SNMPINDEX}'), ('28362','35732','component','network'), ('28363','35732','description','{#ZYXEL.IF.NAME}'), ('28364','35732','interface','{#SNMPINDEX}'), ('28365','35733','component','network'), ('28366','35733','description','{#ZYXEL.IF.NAME}'), ('28367','35733','interface','{#SNMPINDEX}'), ('28368','35734','component','network'), ('28369','35734','description','{#ZYXEL.IF.NAME}'), ('28370','35734','interface','{#SNMPINDEX}'), ('28371','35735','component','network'), ('28372','35735','description','{#ZYXEL.IF.NAME}'), ('28373','35735','interface','{#SNMPINDEX}'), ('28374','35736','component','network'), ('28375','35736','description','{#ZYXEL.IF.NAME}'), ('28376','35736','interface','{#SNMPINDEX}'), ('28377','35737','component','network'), ('28378','35737','description','{#ZYXEL.IF.NAME}'), ('28379','35737','interface','{#SNMPINDEX}'), ('28380','35738','component','network'), ('28381','35738','description','{#ZYXEL.IF.NAME}'), ('28382','35738','interface','{#SNMPINDEX}'), ('28383','35739','component','network'), ('28384','35739','description','{#ZYXEL.IF.NAME}'), ('28385','35739','interface','{#SNMPINDEX}'), ('28386','35740','component','network'), ('28387','35740','description','{#ZYXEL.IF.NAME}'), ('28388','35740','interface','{#SNMPINDEX}'), ('28389','35741','component','network'), ('28390','35741','description','{#ZYXEL.IF.NAME}'), ('28391','35741','interface','{#SNMPINDEX}'), ('28392','35742','component','network'), ('28393','35742','description','{#ZYXEL.IF.NAME}'), ('28394','35742','interface','{#SNMPINDEX}'), ('28395','35743','component','network'), ('28396','35743','description','{#ZYXEL.IF.NAME}'), ('28397','35743','interface','{#SNMPINDEX}'), ('28398','35744','component','network'), ('28399','35744','description','{#ZYXEL.IF.NAME}'), ('28400','35744','interface','{#SNMPINDEX}'), ('28401','35745','component','network'), ('28402','35745','description','{#ZYXEL.IF.NAME}'), ('28403','35745','interface','{#SNMPINDEX}'), ('28404','35746','component','network'), ('28405','35746','description','{#ZYXEL.IF.NAME}'), ('28406','35746','interface','{#SNMPINDEX}'), ('28407','35747','component','network'), ('28408','35747','description','{#ZYXEL.IF.NAME}'), ('28409','35747','interface','{#SNMPINDEX}'), ('28410','35748','component','network'), ('28411','35748','description','{#ZYXEL.IF.NAME}'), ('28412','35748','interface','{#SNMPINDEX}'), ('28413','35749','component','network'), ('28414','35749','description','{#ZYXEL.IF.NAME}'), ('28415','35749','interface','{#SNMPINDEX}'), ('28416','35750','component','network'), ('28417','35750','description','{#ZYXEL.IF.NAME}'), ('28418','35750','interface','{#SNMPINDEX}'), ('28419','35751','component','network'), ('28420','35751','description','{#ZYXEL.IF.NAME}'), ('28421','35751','interface','{#SNMPINDEX}'), ('28422','35752','component','network'), ('28423','35752','description','{#ZYXEL.IF.NAME}'), ('28424','35752','interface','{#SNMPINDEX}'), ('28425','35753','component','network'), ('28426','35753','description','{#ZYXEL.IF.NAME}'), ('28427','35753','interface','{#SNMPINDEX}'), ('28428','35754','component','network'), ('28429','35754','description','{#ZYXEL.IF.NAME}'), ('28430','35754','interface','{#SNMPINDEX}'), ('28431','35755','component','network'), ('28432','35755','description','{#ZYXEL.IF.NAME}'), ('28433','35755','interface','{#SNMPINDEX}'), ('28434','35756','component','network'), ('28435','35756','description','{#ZYXEL.IF.NAME}'), ('28436','35756','interface','{#SNMPINDEX}'), ('28437','35757','component','network'), ('28438','35757','description','{#ZYXEL.IF.NAME}'), ('28439','35757','interface','{#SNMPINDEX}'), ('28440','35758','component','network'), ('28441','35758','description','{#ZYXEL.IF.NAME}'), ('28442','35758','interface','{#SNMPINDEX}'), ('28443','35759','component','network'), ('28444','35759','description','{#ZYXEL.IF.NAME}'), ('28445','35759','interface','{#SNMPINDEX}'), ('28446','35760','component','network'), ('28447','35760','description','{#ZYXEL.IF.NAME}'), ('28448','35760','interface','{#SNMPINDEX}'), ('28449','35761','component','network'), ('28450','35761','description','{#ZYXEL.IF.NAME}'), ('28451','35761','interface','{#SNMPINDEX}'), ('28452','35762','component','line-card'), ('28453','35762','interface','slot-{#ZYXEL.SLOT.ID}'), ('28454','35763','component','firmware'), ('28455','35763','component','line-card'), ('28456','35763','interface','slot-{#ZYXEL.SLOT.ID}'), ('28457','35764','component','line-card'), ('28458','35764','interface','slot-{#ZYXEL.SLOT.ID}'), ('28459','35765','component','firmware'), ('28460','35765','component','line-card'), ('28461','35765','interface','slot-{#ZYXEL.SLOT.ID}'), ('28462','35766','component','firmware'), ('28463','35766','component','line-card'), ('28464','35766','interface','slot-{#ZYXEL.SLOT.ID}'), ('28465','35767','component','firmware'), ('28466','35767','component','line-card'), ('28467','35767','interface','slot-{#ZYXEL.SLOT.ID}'), ('28468','35768','component','line-card'), ('28469','35768','interface','slot-{#ZYXEL.SLOT.ID}'), ('28470','35769','component','line-card'), ('28471','35769','interface','slot-{#ZYXEL.SLOT.ID}'), ('28472','35770','component','line-card'), ('28473','35770','interface','slot-{#ZYXEL.SLOT.ID}'), ('28474','35771','component','line-card'), ('28475','35771','interface','slot-{#ZYXEL.SLOT.ID}'), ('28476','35772','component','line-card'), ('28477','35772','interface','slot-{#ZYXEL.SLOT.ID}'), ('28478','35773','component','line-card'), ('28479','35773','interface','slot-{#ZYXEL.SLOT.ID}'), ('28480','35774','component','sensor'), ('28481','35774','component','temperature'), ('28482','35775','component','sensor'), ('28483','35775','component','voltage'), ('28484','35776','component','network'), ('28485','35777','component','inventory'), ('28486','35778','component','inventory'), ('28487','35779','component','inventory'), ('28488','35780','component','inventory'), ('28489','35781','component','inventory'), ('28490','35782','component','inventory'), ('28491','35783','component','inventory'), ('28492','35784','component','line-card'), ('28493','35784','interface','slot-{#ZYXEL.SLOT.ID}'), ('28494','35785','component','system'), ('28495','35791','component','fan'), ('28496','35791','component','sensor'), ('28497','35792','component','network'), ('28498','35792','description','{#ZYXEL.IF.NAME}'), ('28499','35792','interface','{#SNMPINDEX}'), ('28500','35793','component','network'), ('28501','35793','description','{#ZYXEL.IF.NAME}'), ('28502','35793','interface','{#SNMPINDEX}'), ('28503','35794','component','network'), ('28504','35794','description','{#ZYXEL.IF.NAME}'), ('28505','35794','interface','{#SNMPINDEX}'), ('28506','35795','component','network'), ('28507','35795','description','{#ZYXEL.IF.NAME}'), ('28508','35795','interface','{#SNMPINDEX}'), ('28509','35796','component','network'), ('28510','35796','description','{#ZYXEL.IF.NAME}'), ('28511','35796','interface','{#SNMPINDEX}'), ('28512','35797','component','network'), ('28513','35797','description','{#ZYXEL.IF.NAME}'), ('28514','35797','interface','{#SNMPINDEX}'), ('28515','35798','component','network'), ('28516','35798','description','{#ZYXEL.IF.NAME}'), ('28517','35798','interface','{#SNMPINDEX}'), ('28518','35799','component','network'), ('28519','35799','description','{#ZYXEL.IF.NAME}'), ('28520','35799','interface','{#SNMPINDEX}'), ('28521','35800','component','network'), ('28522','35800','description','{#ZYXEL.IF.NAME}'), ('28523','35800','interface','{#SNMPINDEX}'), ('28524','35801','component','network'), ('28525','35801','description','{#ZYXEL.IF.NAME}'), ('28526','35801','interface','{#SNMPINDEX}'), ('28527','35802','component','network'), ('28528','35802','description','{#ZYXEL.IF.NAME}'), ('28529','35802','interface','{#SNMPINDEX}'), ('28530','35803','component','network'), ('28531','35803','description','{#ZYXEL.IF.NAME}'), ('28532','35803','interface','{#SNMPINDEX}'), ('28533','35804','component','network'), ('28534','35804','description','{#ZYXEL.IF.NAME}'), ('28535','35804','interface','{#SNMPINDEX}'), ('28536','35805','component','network'), ('28537','35805','description','{#ZYXEL.IF.NAME}'), ('28538','35805','interface','{#SNMPINDEX}'), ('28539','35806','component','network'), ('28540','35806','description','{#ZYXEL.IF.NAME}'), ('28541','35806','interface','{#SNMPINDEX}'), ('28542','35807','component','network'), ('28543','35807','description','{#ZYXEL.IF.NAME}'), ('28544','35807','interface','{#SNMPINDEX}'), ('28545','35808','component','sensor'), ('28546','35808','component','temperature'), ('28547','35809','component','sensor'), ('28548','35809','component','voltage'), ('28549','35810','component','network'), ('28550','35811','component','inventory'), ('28551','35812','component','cpu'), ('28552','35813','component','inventory'), ('28553','35814','component','inventory'), ('28554','35815','component','inventory'), ('28555','35816','component','inventory'), ('28556','35817','component','inventory'), ('28557','35818','component','inventory'), ('28558','35819','component','system'), ('28559','35823','component','network'), ('28560','35823','description','{#ZYXEL.IF.NAME}'), ('28561','35823','interface','{#SNMPINDEX}'), ('28562','35824','component','network'), ('28563','35824','description','{#ZYXEL.IF.NAME}'), ('28564','35824','interface','{#SNMPINDEX}'), ('28565','35825','component','network'), ('28566','35825','description','{#ZYXEL.IF.NAME}'), ('28567','35825','interface','{#SNMPINDEX}'), ('28568','35826','component','network'), ('28569','35826','description','{#ZYXEL.IF.NAME}'), ('28570','35826','interface','{#SNMPINDEX}'), ('28571','35827','component','network'), ('28572','35827','description','{#ZYXEL.IF.NAME}'), ('28573','35827','interface','{#SNMPINDEX}'), ('28574','35828','component','network'), ('28575','35828','description','{#ZYXEL.IF.NAME}'), ('28576','35828','interface','{#SNMPINDEX}'), ('28577','35829','component','network'), ('28578','35829','description','{#ZYXEL.IF.NAME}'), ('28579','35829','interface','{#SNMPINDEX}'), ('28580','35830','component','network'), ('28581','35830','description','{#ZYXEL.IF.NAME}'), ('28582','35830','interface','{#SNMPINDEX}'), ('28583','35831','component','network'), ('28584','35831','description','{#ZYXEL.IF.NAME}'), ('28585','35831','interface','{#SNMPINDEX}'), ('28586','35832','component','network'), ('28587','35832','description','{#ZYXEL.IF.NAME}'), ('28588','35832','interface','{#SNMPINDEX}'), ('28589','35833','component','network'), ('28590','35833','description','{#ZYXEL.IF.NAME}'), ('28591','35833','interface','{#SNMPINDEX}'), ('28592','35834','component','network'), ('28593','35834','description','{#ZYXEL.IF.NAME}'), ('28594','35834','interface','{#SNMPINDEX}'), ('28595','35835','component','network'), ('28596','35835','description','{#ZYXEL.IF.NAME}'), ('28597','35835','interface','{#SNMPINDEX}'), ('28598','35836','component','network'), ('28599','35836','description','{#ZYXEL.IF.NAME}'), ('28600','35836','interface','{#SNMPINDEX}'), ('28601','35837','component','network'), ('28602','35837','description','{#ZYXEL.IF.NAME}'), ('28603','35837','interface','{#SNMPINDEX}'), ('28604','35838','component','network'), ('28605','35838','description','{#ZYXEL.IF.NAME}'), ('28606','35838','interface','{#SNMPINDEX}'), ('28607','35839','component','network'), ('28608','35839','description','{#ZYXEL.IF.NAME}'), ('28609','35839','interface','{#SNMPINDEX}'), ('28610','35840','component','network'), ('28611','35840','description','{#ZYXEL.IF.NAME}'), ('28612','35840','interface','{#SNMPINDEX}'), ('28613','35841','component','network'), ('28614','35841','description','{#ZYXEL.IF.NAME}'), ('28615','35841','interface','{#SNMPINDEX}'), ('28616','35842','component','network'), ('28617','35842','description','{#ZYXEL.IF.NAME}'), ('28618','35842','interface','{#SNMPINDEX}'), ('28619','35843','component','network'), ('28620','35843','description','{#ZYXEL.IF.NAME}'), ('28621','35843','interface','{#SNMPINDEX}'), ('28622','35844','component','network'), ('28623','35844','description','{#ZYXEL.IF.NAME}'), ('28624','35844','interface','{#SNMPINDEX}'), ('28625','35845','component','network'), ('28626','35845','description','{#ZYXEL.IF.NAME}'), ('28627','35845','interface','{#SNMPINDEX}'), ('28628','35846','component','network'), ('28629','35846','description','{#ZYXEL.IF.NAME}'), ('28630','35846','interface','{#SNMPINDEX}'), ('28631','35847','component','network'), ('28632','35847','description','{#ZYXEL.IF.NAME}'), ('28633','35847','interface','{#SNMPINDEX}'), ('28634','35848','component','network'), ('28635','35849','component','inventory'), ('28636','35850','component','cpu'), ('28637','35851','component','inventory'), ('28638','35852','component','inventory'), ('28639','35853','component','inventory'), ('28640','35854','component','inventory'), ('28641','35855','component','inventory'), ('28642','35856','component','inventory'), ('28643','35857','component','system'), ('28644','35864','component','memory'), ('28645','35865','component','network'), ('28646','35865','description','{#ZYXEL.IF.NAME}'), ('28647','35865','interface','{#SNMPINDEX}'), ('28648','35866','component','network'), ('28649','35866','description','{#ZYXEL.IF.NAME}'), ('28650','35866','interface','{#SNMPINDEX}'), ('28651','35867','component','network'), ('28652','35867','description','{#ZYXEL.IF.NAME}'), ('28653','35867','interface','{#SNMPINDEX}'), ('28654','35868','component','network'), ('28655','35868','description','{#ZYXEL.IF.NAME}'), ('28656','35868','interface','{#SNMPINDEX}'), ('28657','35869','component','network'), ('28658','35869','description','{#ZYXEL.IF.NAME}'), ('28659','35869','interface','{#SNMPINDEX}'), ('28660','35870','component','network'), ('28661','35870','description','{#ZYXEL.IF.NAME}'), ('28662','35870','interface','{#SNMPINDEX}'), ('28663','35871','component','network'), ('28664','35871','description','{#ZYXEL.IF.NAME}'), ('28665','35871','interface','{#SNMPINDEX}'), ('28666','35872','component','network'), ('28667','35872','description','{#ZYXEL.IF.NAME}'), ('28668','35872','interface','{#SNMPINDEX}'), ('28669','35873','component','network'), ('28670','35873','description','{#ZYXEL.IF.NAME}'), ('28671','35873','interface','{#SNMPINDEX}'), ('28672','35874','component','network'), ('28673','35874','description','{#ZYXEL.IF.NAME}'), ('28674','35874','interface','{#SNMPINDEX}'), ('28675','35875','component','network'), ('28676','35875','description','{#ZYXEL.IF.NAME}'), ('28677','35875','interface','{#SNMPINDEX}'), ('28678','35876','component','network'), ('28679','35876','description','{#ZYXEL.IF.NAME}'), ('28680','35876','interface','{#SNMPINDEX}'), ('28681','35877','component','network'), ('28682','35877','description','{#ZYXEL.IF.NAME}'), ('28683','35877','interface','{#SNMPINDEX}'), ('28684','35878','component','network'), ('28685','35878','description','{#ZYXEL.IF.NAME}'), ('28686','35878','interface','{#SNMPINDEX}'), ('28687','35879','component','network'), ('28688','35879','description','{#ZYXEL.IF.NAME}'), ('28689','35879','interface','{#SNMPINDEX}'), ('28690','35880','component','network'), ('28691','35880','description','{#ZYXEL.IF.NAME}'), ('28692','35880','interface','{#SNMPINDEX}'), ('28693','35881','component','network'), ('28694','35881','description','{#ZYXEL.IF.NAME}'), ('28695','35881','interface','{#SNMPINDEX}'), ('28696','35882','component','network'), ('28697','35882','description','{#ZYXEL.IF.NAME}'), ('28698','35882','interface','{#SNMPINDEX}'), ('28699','35883','component','network'), ('28700','35883','description','{#ZYXEL.IF.NAME}'), ('28701','35883','interface','{#SNMPINDEX}'), ('28702','35884','component','network'), ('28703','35884','description','{#ZYXEL.IF.NAME}'), ('28704','35884','interface','{#SNMPINDEX}'), ('28705','35885','component','network'), ('28706','35885','description','{#ZYXEL.IF.NAME}'), ('28707','35885','interface','{#SNMPINDEX}'), ('28708','35886','component','network'), ('28709','35886','description','{#ZYXEL.IF.NAME}'), ('28710','35886','interface','{#SNMPINDEX}'), ('28711','35887','component','network'), ('28712','35887','description','{#ZYXEL.IF.NAME}'), ('28713','35887','interface','{#SNMPINDEX}'), ('28714','35888','component','network'), ('28715','35888','description','{#ZYXEL.IF.NAME}'), ('28716','35888','interface','{#SNMPINDEX}'), ('28717','35889','component','network'), ('28718','35889','description','{#ZYXEL.IF.NAME}'), ('28719','35889','interface','{#SNMPINDEX}'), ('28720','35890','component','sensor'), ('28721','35890','component','temperature'), ('28722','35891','component','sensor'), ('28723','35891','component','voltage'), ('28724','35892','component','network'), ('28725','35893','component','inventory'), ('28726','35894','component','cpu'), ('28727','35895','component','inventory'), ('28728','35896','component','inventory'), ('28729','35897','component','inventory'), ('28730','35898','component','inventory'), ('28731','35899','component','inventory'), ('28732','35900','component','inventory'), ('28733','35901','component','system'), ('28734','35908','component','memory'), ('28735','35909','component','network'), ('28736','35909','description','{#ZYXEL.IF.NAME}'), ('28737','35909','interface','{#SNMPINDEX}'), ('28738','35910','component','network'), ('28739','35910','description','{#ZYXEL.IF.NAME}'), ('28740','35910','interface','{#SNMPINDEX}'), ('28741','35911','component','network'), ('28742','35911','description','{#ZYXEL.IF.NAME}'), ('28743','35911','interface','{#SNMPINDEX}'), ('28744','35912','component','network'), ('28745','35912','description','{#ZYXEL.IF.NAME}'), ('28746','35912','interface','{#SNMPINDEX}'), ('28747','35913','component','network'), ('28748','35913','description','{#ZYXEL.IF.NAME}'), ('28749','35913','interface','{#SNMPINDEX}'), ('28750','35914','component','network'), ('28751','35914','description','{#ZYXEL.IF.NAME}'), ('28752','35914','interface','{#SNMPINDEX}'), ('28753','35915','component','network'), ('28754','35915','description','{#ZYXEL.IF.NAME}'), ('28755','35915','interface','{#SNMPINDEX}'), ('28756','35916','component','network'), ('28757','35916','description','{#ZYXEL.IF.NAME}'), ('28758','35916','interface','{#SNMPINDEX}'), ('28759','35917','component','network'), ('28760','35917','description','{#ZYXEL.IF.NAME}'), ('28761','35917','interface','{#SNMPINDEX}'), ('28762','35918','component','network'), ('28763','35918','description','{#ZYXEL.IF.NAME}'), ('28764','35918','interface','{#SNMPINDEX}'), ('28765','35919','component','network'), ('28766','35919','description','{#ZYXEL.IF.NAME}'), ('28767','35919','interface','{#SNMPINDEX}'), ('28768','35920','component','network'), ('28769','35920','description','{#ZYXEL.IF.NAME}'), ('28770','35920','interface','{#SNMPINDEX}'), ('28771','35921','component','network'), ('28772','35921','description','{#ZYXEL.IF.NAME}'), ('28773','35921','interface','{#SNMPINDEX}'), ('28774','35922','component','network'), ('28775','35922','description','{#ZYXEL.IF.NAME}'), ('28776','35922','interface','{#SNMPINDEX}'), ('28777','35923','component','network'), ('28778','35923','description','{#ZYXEL.IF.NAME}'), ('28779','35923','interface','{#SNMPINDEX}'), ('28780','35924','component','network'), ('28781','35924','description','{#ZYXEL.IF.NAME}'), ('28782','35924','interface','{#SNMPINDEX}'), ('28783','35925','component','network'), ('28784','35925','description','{#ZYXEL.IF.NAME}'), ('28785','35925','interface','{#SNMPINDEX}'), ('28786','35926','component','network'), ('28787','35926','description','{#ZYXEL.IF.NAME}'), ('28788','35926','interface','{#SNMPINDEX}'), ('28789','35927','component','network'), ('28790','35927','description','{#ZYXEL.IF.NAME}'), ('28791','35927','interface','{#SNMPINDEX}'), ('28792','35928','component','network'), ('28793','35928','description','{#ZYXEL.IF.NAME}'), ('28794','35928','interface','{#SNMPINDEX}'), ('28795','35929','component','network'), ('28796','35929','description','{#ZYXEL.IF.NAME}'), ('28797','35929','interface','{#SNMPINDEX}'), ('28798','35930','component','network'), ('28799','35930','description','{#ZYXEL.IF.NAME}'), ('28800','35930','interface','{#SNMPINDEX}'), ('28801','35931','component','network'), ('28802','35931','description','{#ZYXEL.IF.NAME}'), ('28803','35931','interface','{#SNMPINDEX}'), ('28804','35932','component','network'), ('28805','35932','description','{#ZYXEL.IF.NAME}'), ('28806','35932','interface','{#SNMPINDEX}'), ('28807','35933','component','network'), ('28808','35933','description','{#ZYXEL.IF.NAME}'), ('28809','35933','interface','{#SNMPINDEX}'), ('28810','35934','component','sensor'), ('28811','35934','component','temperature'), ('28812','35935','component','sensor'), ('28813','35935','component','voltage'), ('28814','35936','component','network'), ('28815','35937','component','inventory'), ('28816','35938','component','cpu'), ('28817','35939','component','inventory'), ('28818','35940','component','inventory'), ('28819','35941','component','inventory'), ('28820','35942','component','inventory'), ('28821','35943','component','inventory'), ('28822','35944','component','inventory'), ('28823','35945','component','system'), ('28824','35952','component','fan'), ('28825','35952','component','sensor'), ('28826','35953','component','network'), ('28827','35953','description','{#ZYXEL.IF.NAME}'), ('28828','35953','interface','{#SNMPINDEX}'), ('28829','35954','component','network'), ('28830','35954','description','{#ZYXEL.IF.NAME}'), ('28831','35954','interface','{#SNMPINDEX}'), ('28832','35955','component','network'), ('28833','35955','description','{#ZYXEL.IF.NAME}'), ('28834','35955','interface','{#SNMPINDEX}'), ('28835','35956','component','network'), ('28836','35956','description','{#ZYXEL.IF.NAME}'), ('28837','35956','interface','{#SNMPINDEX}'), ('28838','35957','component','network'), ('28839','35957','description','{#ZYXEL.IF.NAME}'), ('28840','35957','interface','{#SNMPINDEX}'), ('28841','35958','component','network'), ('28842','35958','description','{#ZYXEL.IF.NAME}'), ('28843','35958','interface','{#SNMPINDEX}'), ('28844','35959','component','network'), ('28845','35959','description','{#ZYXEL.IF.NAME}'), ('28846','35959','interface','{#SNMPINDEX}'), ('28847','35960','component','network'), ('28848','35960','description','{#ZYXEL.IF.NAME}'), ('28849','35960','interface','{#SNMPINDEX}'), ('28850','35961','component','network'), ('28851','35961','description','{#ZYXEL.IF.NAME}'), ('28852','35961','interface','{#SNMPINDEX}'), ('28853','35962','component','network'), ('28854','35962','description','{#ZYXEL.IF.NAME}'), ('28855','35962','interface','{#SNMPINDEX}'), ('28856','35963','component','network'), ('28857','35963','description','{#ZYXEL.IF.NAME}'), ('28858','35963','interface','{#SNMPINDEX}'), ('28859','35964','component','network'), ('28860','35964','description','{#ZYXEL.IF.NAME}'), ('28861','35964','interface','{#SNMPINDEX}'), ('28862','35965','component','network'), ('28863','35965','description','{#ZYXEL.IF.NAME}'), ('28864','35965','interface','{#SNMPINDEX}'), ('28865','35966','component','network'), ('28866','35966','description','{#ZYXEL.IF.NAME}'), ('28867','35966','interface','{#SNMPINDEX}'), ('28868','35967','component','network'), ('28869','35967','description','{#ZYXEL.IF.NAME}'), ('28870','35967','interface','{#SNMPINDEX}'), ('28871','35968','component','network'), ('28872','35968','description','{#ZYXEL.IF.NAME}'), ('28873','35968','interface','{#SNMPINDEX}'), ('28874','35969','component','network'), ('28875','35969','description','{#ZYXEL.IF.NAME}'), ('28876','35969','interface','{#SNMPINDEX}'), ('28877','35970','component','network'), ('28878','35970','description','{#ZYXEL.IF.NAME}'), ('28879','35970','interface','{#SNMPINDEX}'), ('28880','35971','component','network'), ('28881','35971','description','{#ZYXEL.IF.NAME}'), ('28882','35971','interface','{#SNMPINDEX}'), ('28883','35972','component','network'), ('28884','35972','description','{#ZYXEL.IF.NAME}'), ('28885','35972','interface','{#SNMPINDEX}'), ('28886','35973','component','network'), ('28887','35973','description','{#ZYXEL.IF.NAME}'), ('28888','35973','interface','{#SNMPINDEX}'), ('28889','35974','component','network'), ('28890','35974','description','{#ZYXEL.IF.NAME}'), ('28891','35974','interface','{#SNMPINDEX}'), ('28892','35975','component','network'), ('28893','35975','description','{#ZYXEL.IF.NAME}'), ('28894','35975','interface','{#SNMPINDEX}'), ('28895','35976','component','network'), ('28896','35976','description','{#ZYXEL.IF.NAME}'), ('28897','35976','interface','{#SNMPINDEX}'), ('28898','35977','component','network'), ('28899','35977','description','{#ZYXEL.IF.NAME}'), ('28900','35977','interface','{#SNMPINDEX}'), ('28901','35978','component','sensor'), ('28902','35978','component','temperature'), ('28903','35979','component','sensor'), ('28904','35979','component','voltage'), ('28905','35980','component','network'), ('28906','35981','component','inventory'), ('28907','35982','component','cpu'), ('28908','35983','component','inventory'), ('28909','35984','component','inventory'), ('28910','35985','component','inventory'), ('28911','35986','component','inventory'), ('28912','35987','component','inventory'), ('28913','35988','component','inventory'), ('28914','35989','component','system'), ('28915','35996','component','fan'), ('28916','35996','component','sensor'), ('28917','35997','component','network'), ('28918','35997','description','{#ZYXEL.IF.NAME}'), ('28919','35997','interface','{#SNMPINDEX}'), ('28920','35998','component','network'), ('28921','35998','description','{#ZYXEL.IF.NAME}'), ('28922','35998','interface','{#SNMPINDEX}'), ('28923','35999','component','network'), ('28924','35999','description','{#ZYXEL.IF.NAME}'), ('28925','35999','interface','{#SNMPINDEX}'), ('28926','36000','component','network'), ('28927','36000','description','{#ZYXEL.IF.NAME}'), ('28928','36000','interface','{#SNMPINDEX}'), ('28929','36001','component','network'), ('28930','36001','description','{#ZYXEL.IF.NAME}'), ('28931','36001','interface','{#SNMPINDEX}'), ('28932','36002','component','network'), ('28933','36002','description','{#ZYXEL.IF.NAME}'), ('28934','36002','interface','{#SNMPINDEX}'), ('28935','36003','component','network'), ('28936','36003','description','{#ZYXEL.IF.NAME}'), ('28937','36003','interface','{#SNMPINDEX}'), ('28938','36004','component','network'), ('28939','36004','description','{#ZYXEL.IF.NAME}'), ('28940','36004','interface','{#SNMPINDEX}'), ('28941','36005','component','network'), ('28942','36005','description','{#ZYXEL.IF.NAME}'), ('28943','36005','interface','{#SNMPINDEX}'), ('28944','36006','component','network'), ('28945','36006','description','{#ZYXEL.IF.NAME}'), ('28946','36006','interface','{#SNMPINDEX}'), ('28947','36007','component','network'), ('28948','36007','description','{#ZYXEL.IF.NAME}'), ('28949','36007','interface','{#SNMPINDEX}'), ('28950','36008','component','network'), ('28951','36008','description','{#ZYXEL.IF.NAME}'), ('28952','36008','interface','{#SNMPINDEX}'), ('28953','36009','component','network'), ('28954','36009','description','{#ZYXEL.IF.NAME}'), ('28955','36009','interface','{#SNMPINDEX}'), ('28956','36010','component','network'), ('28957','36010','description','{#ZYXEL.IF.NAME}'), ('28958','36010','interface','{#SNMPINDEX}'), ('28959','36011','component','network'), ('28960','36011','description','{#ZYXEL.IF.NAME}'), ('28961','36011','interface','{#SNMPINDEX}'), ('28962','36012','component','network'), ('28963','36012','description','{#ZYXEL.IF.NAME}'), ('28964','36012','interface','{#SNMPINDEX}'), ('28965','36013','component','network'), ('28966','36013','description','{#ZYXEL.IF.NAME}'), ('28967','36013','interface','{#SNMPINDEX}'), ('28968','36014','component','network'), ('28969','36014','description','{#ZYXEL.IF.NAME}'), ('28970','36014','interface','{#SNMPINDEX}'), ('28971','36015','component','network'), ('28972','36015','description','{#ZYXEL.IF.NAME}'), ('28973','36015','interface','{#SNMPINDEX}'), ('28974','36016','component','network'), ('28975','36016','description','{#ZYXEL.IF.NAME}'), ('28976','36016','interface','{#SNMPINDEX}'), ('28977','36017','component','network'), ('28978','36017','description','{#ZYXEL.IF.NAME}'), ('28979','36017','interface','{#SNMPINDEX}'), ('28980','36018','component','network'), ('28981','36018','description','{#ZYXEL.IF.NAME}'), ('28982','36018','interface','{#SNMPINDEX}'), ('28983','36019','component','network'), ('28984','36019','description','{#ZYXEL.IF.NAME}'), ('28985','36019','interface','{#SNMPINDEX}'), ('28986','36020','component','network'), ('28987','36020','description','{#ZYXEL.IF.NAME}'), ('28988','36020','interface','{#SNMPINDEX}'), ('28989','36021','component','network'), ('28990','36021','description','{#ZYXEL.IF.NAME}'), ('28991','36021','interface','{#SNMPINDEX}'), ('28992','36022','component','sensor'), ('28993','36022','component','temperature'), ('28994','36023','component','sensor'), ('28995','36023','component','voltage'), ('28996','36024','component','network'), ('28997','36025','component','inventory'), ('28998','36026','component','cpu'), ('28999','36027','component','inventory'), ('29000','36028','component','inventory'), ('29001','36029','component','inventory'), ('29002','36030','component','memory'), ('29003','36031','component','inventory'), ('29004','36032','component','inventory'), ('29005','36033','component','inventory'), ('29006','36034','component','system'), ('29007','36041','component','fan'), ('29008','36041','component','sensor'), ('29009','36042','component','network'), ('29010','36042','description','{#ZYXEL.IF.NAME}'), ('29011','36042','interface','{#SNMPINDEX}'), ('29012','36043','component','network'), ('29013','36043','description','{#ZYXEL.IF.NAME}'), ('29014','36043','interface','{#SNMPINDEX}'), ('29015','36044','component','network'), ('29016','36044','description','{#ZYXEL.IF.NAME}'), ('29017','36044','interface','{#SNMPINDEX}'), ('29018','36045','component','network'), ('29019','36045','description','{#ZYXEL.IF.NAME}'), ('29020','36045','interface','{#SNMPINDEX}'), ('29021','36046','component','network'), ('29022','36046','description','{#ZYXEL.IF.NAME}'), ('29023','36046','interface','{#SNMPINDEX}'), ('29024','36047','component','network'), ('29025','36047','description','{#ZYXEL.IF.NAME}'), ('29026','36047','interface','{#SNMPINDEX}'), ('29027','36048','component','network'), ('29028','36048','description','{#ZYXEL.IF.NAME}'), ('29029','36048','interface','{#SNMPINDEX}'), ('29030','36049','component','network'), ('29031','36049','description','{#ZYXEL.IF.NAME}'), ('29032','36049','interface','{#SNMPINDEX}'), ('29033','36050','component','network'), ('29034','36050','description','{#ZYXEL.IF.NAME}'), ('29035','36050','interface','{#SNMPINDEX}'), ('29036','36051','component','network'), ('29037','36051','description','{#ZYXEL.IF.NAME}'), ('29038','36051','interface','{#SNMPINDEX}'), ('29039','36052','component','network'), ('29040','36052','description','{#ZYXEL.IF.NAME}'), ('29041','36052','interface','{#SNMPINDEX}'), ('29042','36053','component','network'), ('29043','36053','description','{#ZYXEL.IF.NAME}'), ('29044','36053','interface','{#SNMPINDEX}'), ('29045','36054','component','network'), ('29046','36054','description','{#ZYXEL.IF.NAME}'), ('29047','36054','interface','{#SNMPINDEX}'), ('29048','36055','component','network'), ('29049','36055','description','{#ZYXEL.IF.NAME}'), ('29050','36055','interface','{#SNMPINDEX}'), ('29051','36056','component','network'), ('29052','36056','description','{#ZYXEL.IF.NAME}'), ('29053','36056','interface','{#SNMPINDEX}'), ('29054','36057','component','network'), ('29055','36057','description','{#ZYXEL.IF.NAME}'), ('29056','36057','interface','{#SNMPINDEX}'), ('29057','36058','component','network'), ('29058','36058','description','{#ZYXEL.IF.NAME}'), ('29059','36058','interface','{#SNMPINDEX}'), ('29060','36059','component','network'), ('29061','36059','description','{#ZYXEL.IF.NAME}'), ('29062','36059','interface','{#SNMPINDEX}'), ('29063','36060','component','network'), ('29064','36060','description','{#ZYXEL.IF.NAME}'), ('29065','36060','interface','{#SNMPINDEX}'), ('29066','36061','component','network'), ('29067','36061','description','{#ZYXEL.IF.NAME}'), ('29068','36061','interface','{#SNMPINDEX}'), ('29069','36062','component','network'), ('29070','36062','description','{#ZYXEL.IF.NAME}'), ('29071','36062','interface','{#SNMPINDEX}'), ('29072','36063','component','network'), ('29073','36063','description','{#ZYXEL.IF.NAME}'), ('29074','36063','interface','{#SNMPINDEX}'), ('29075','36064','component','network'), ('29076','36064','description','{#ZYXEL.IF.NAME}'), ('29077','36064','interface','{#SNMPINDEX}'), ('29078','36065','component','network'), ('29079','36065','description','{#ZYXEL.IF.NAME}'), ('29080','36065','interface','{#SNMPINDEX}'), ('29081','36066','component','network'), ('29082','36066','description','{#ZYXEL.IF.NAME}'), ('29083','36066','interface','{#SNMPINDEX}'), ('29084','36067','component','sensor'), ('29085','36067','component','temperature'), ('29086','36068','component','sensor'), ('29087','36068','component','voltage'), ('29088','36069','component','network'), ('29089','36070','component','inventory'), ('29090','36071','component','cpu'), ('29091','36072','component','inventory'), ('29092','36073','component','inventory'), ('29093','36074','component','inventory'), ('29094','36075','component','memory'), ('29095','36076','component','inventory'), ('29096','36077','component','inventory'), ('29097','36078','component','inventory'), ('29098','36079','component','system'), ('29099','36086','component','fan'), ('29100','36086','component','sensor'), ('29101','36087','component','network'), ('29102','36087','description','{#ZYXEL.IF.NAME}'), ('29103','36087','interface','{#SNMPINDEX}'), ('29104','36088','component','network'), ('29105','36088','description','{#ZYXEL.IF.NAME}'), ('29106','36088','interface','{#SNMPINDEX}'), ('29107','36089','component','network'), ('29108','36089','description','{#ZYXEL.IF.NAME}'), ('29109','36089','interface','{#SNMPINDEX}'), ('29110','36090','component','network'), ('29111','36090','description','{#ZYXEL.IF.NAME}'), ('29112','36090','interface','{#SNMPINDEX}'), ('29113','36091','component','network'), ('29114','36091','description','{#ZYXEL.IF.NAME}'), ('29115','36091','interface','{#SNMPINDEX}'), ('29116','36092','component','network'), ('29117','36092','description','{#ZYXEL.IF.NAME}'), ('29118','36092','interface','{#SNMPINDEX}'), ('29119','36093','component','network'), ('29120','36093','description','{#ZYXEL.IF.NAME}'), ('29121','36093','interface','{#SNMPINDEX}'), ('29122','36094','component','network'), ('29123','36094','description','{#ZYXEL.IF.NAME}'), ('29124','36094','interface','{#SNMPINDEX}'), ('29125','36095','component','network'), ('29126','36095','description','{#ZYXEL.IF.NAME}'), ('29127','36095','interface','{#SNMPINDEX}'), ('29128','36096','component','network'), ('29129','36096','description','{#ZYXEL.IF.NAME}'), ('29130','36096','interface','{#SNMPINDEX}'), ('29131','36097','component','network'), ('29132','36097','description','{#ZYXEL.IF.NAME}'), ('29133','36097','interface','{#SNMPINDEX}'), ('29134','36098','component','network'), ('29135','36098','description','{#ZYXEL.IF.NAME}'), ('29136','36098','interface','{#SNMPINDEX}'), ('29137','36099','component','network'), ('29138','36099','description','{#ZYXEL.IF.NAME}'), ('29139','36099','interface','{#SNMPINDEX}'), ('29140','36100','component','network'), ('29141','36100','description','{#ZYXEL.IF.NAME}'), ('29142','36100','interface','{#SNMPINDEX}'), ('29143','36101','component','network'), ('29144','36101','description','{#ZYXEL.IF.NAME}'), ('29145','36101','interface','{#SNMPINDEX}'), ('29146','36102','component','network'), ('29147','36102','description','{#ZYXEL.IF.NAME}'), ('29148','36102','interface','{#SNMPINDEX}'), ('29149','36103','component','network'), ('29150','36103','description','{#ZYXEL.IF.NAME}'), ('29151','36103','interface','{#SNMPINDEX}'), ('29152','36104','component','network'), ('29153','36104','description','{#ZYXEL.IF.NAME}'), ('29154','36104','interface','{#SNMPINDEX}'), ('29155','36105','component','network'), ('29156','36105','description','{#ZYXEL.IF.NAME}'), ('29157','36105','interface','{#SNMPINDEX}'), ('29158','36106','component','network'), ('29159','36106','description','{#ZYXEL.IF.NAME}'), ('29160','36106','interface','{#SNMPINDEX}'), ('29161','36107','component','network'), ('29162','36107','description','{#ZYXEL.IF.NAME}'), ('29163','36107','interface','{#SNMPINDEX}'), ('29164','36108','component','network'), ('29165','36108','description','{#ZYXEL.IF.NAME}'), ('29166','36108','interface','{#SNMPINDEX}'), ('29167','36109','component','network'), ('29168','36109','description','{#ZYXEL.IF.NAME}'), ('29169','36109','interface','{#SNMPINDEX}'), ('29170','36110','component','network'), ('29171','36110','description','{#ZYXEL.IF.NAME}'), ('29172','36110','interface','{#SNMPINDEX}'), ('29173','36111','component','network'), ('29174','36111','description','{#ZYXEL.IF.NAME}'), ('29175','36111','interface','{#SNMPINDEX}'), ('29176','36112','component','sensor'), ('29177','36112','component','temperature'), ('29178','36113','component','sensor'), ('29179','36113','component','voltage'), ('29180','36114','component','network'), ('29181','36115','component','inventory'), ('29182','36116','component','cpu'), ('29183','36117','component','inventory'), ('29184','36118','component','inventory'), ('29185','36119','component','inventory'), ('29186','36120','component','inventory'), ('29187','36121','component','inventory'), ('29188','36122','component','inventory'), ('29189','36123','component','system'), ('29190','36131','component','fan'), ('29191','36131','component','sensor'), ('29192','36132','component','memory'), ('29193','36133','component','network'), ('29194','36133','description','{#ZYXEL.IF.NAME}'), ('29195','36133','interface','{#SNMPINDEX}'), ('29196','36134','component','network'), ('29197','36134','description','{#ZYXEL.IF.NAME}'), ('29198','36134','interface','{#SNMPINDEX}'), ('29199','36135','component','network'), ('29200','36135','description','{#ZYXEL.IF.NAME}'), ('29201','36135','interface','{#SNMPINDEX}'), ('29202','36136','component','network'), ('29203','36136','description','{#ZYXEL.IF.NAME}'), ('29204','36136','interface','{#SNMPINDEX}'), ('29205','36137','component','network'), ('29206','36137','description','{#ZYXEL.IF.NAME}'), ('29207','36137','interface','{#SNMPINDEX}'), ('29208','36138','component','network'), ('29209','36138','description','{#ZYXEL.IF.NAME}'), ('29210','36138','interface','{#SNMPINDEX}'), ('29211','36139','component','network'), ('29212','36139','description','{#ZYXEL.IF.NAME}'), ('29213','36139','interface','{#SNMPINDEX}'), ('29214','36140','component','network'), ('29215','36140','description','{#ZYXEL.IF.NAME}'), ('29216','36140','interface','{#SNMPINDEX}'), ('29217','36141','component','network'), ('29218','36141','description','{#ZYXEL.IF.NAME}'), ('29219','36141','interface','{#SNMPINDEX}'), ('29220','36142','component','network'), ('29221','36142','description','{#ZYXEL.IF.NAME}'), ('29222','36142','interface','{#SNMPINDEX}'), ('29223','36143','component','network'), ('29224','36143','description','{#ZYXEL.IF.NAME}'), ('29225','36143','interface','{#SNMPINDEX}'), ('29226','36144','component','network'), ('29227','36144','description','{#ZYXEL.IF.NAME}'), ('29228','36144','interface','{#SNMPINDEX}'), ('29229','36145','component','network'), ('29230','36145','description','{#ZYXEL.IF.NAME}'), ('29231','36145','interface','{#SNMPINDEX}'), ('29232','36146','component','network'), ('29233','36146','description','{#ZYXEL.IF.NAME}'), ('29234','36146','interface','{#SNMPINDEX}'), ('29235','36147','component','network'), ('29236','36147','description','{#ZYXEL.IF.NAME}'), ('29237','36147','interface','{#SNMPINDEX}'), ('29238','36148','component','network'), ('29239','36148','description','{#ZYXEL.IF.NAME}'), ('29240','36148','interface','{#SNMPINDEX}'), ('29241','36149','component','network'), ('29242','36149','description','{#ZYXEL.IF.NAME}'), ('29243','36149','interface','{#SNMPINDEX}'), ('29244','36150','component','network'), ('29245','36150','description','{#ZYXEL.IF.NAME}'), ('29246','36150','interface','{#SNMPINDEX}'), ('29247','36151','component','network'), ('29248','36151','description','{#ZYXEL.IF.NAME}'), ('29249','36151','interface','{#SNMPINDEX}'), ('29250','36152','component','network'), ('29251','36152','description','{#ZYXEL.IF.NAME}'), ('29252','36152','interface','{#SNMPINDEX}'), ('29253','36153','component','network'), ('29254','36153','description','{#ZYXEL.IF.NAME}'), ('29255','36153','interface','{#SNMPINDEX}'), ('29256','36154','component','network'), ('29257','36154','description','{#ZYXEL.IF.NAME}'), ('29258','36154','interface','{#SNMPINDEX}'), ('29259','36155','component','network'), ('29260','36155','description','{#ZYXEL.IF.NAME}'), ('29261','36155','interface','{#SNMPINDEX}'), ('29262','36156','component','network'), ('29263','36156','description','{#ZYXEL.IF.NAME}'), ('29264','36156','interface','{#SNMPINDEX}'), ('29265','36157','component','network'), ('29266','36157','description','{#ZYXEL.IF.NAME}'), ('29267','36157','interface','{#SNMPINDEX}'), ('29268','36158','component','sensor'), ('29269','36158','component','temperature'), ('29270','36159','component','sensor'), ('29271','36159','component','voltage'), ('29272','22917','component','os'), ('29273','22917','component','processes'), ('29274','22918','component','os'), ('29275','22918','component','processes'), ('29276','22920','component','cpu'), ('29277','22921','component','cpu'), ('29278','22922','component','cpu'), ('29279','22923','component','cpu'), ('29280','22924','component','cpu'), ('29281','22933','component','os'), ('29282','22934','component','os'), ('29283','22938','component','os'), ('29284','22939','component','os'), ('29285','22940','component','os'), ('29286','22941','component','security'), ('29287','22942','component','memory'), ('29288','22943','component','memory'), ('29289','23108','component','cpu'), ('29290','23109','component','cpu'), ('29291','23110','component','cpu'), ('29292','23111','component','cpu'), ('29293','23112','component','cpu'), ('29294','23113','component','cpu'), ('29295','23114','component','cpu'), ('29296','23115','component','cpu'), ('29297','23116','component','storage'), ('29298','23117','component','storage'), ('29299','23118','component','cpu'), ('29300','23119','component','cpu'), ('29301','23120','component','cpu'), ('29302','23121','component','cpu'), ('29303','23122','component','memory'), ('29304','23123','component','cpu'), ('29305','23124','component','memory'), ('29306','23125','component','memory'), ('29307','23126','component','memory'), ('29308','23127','component','memory'), ('29309','23128','component','memory'), ('29310','23129','component','memory'), ('29311','23130','component','memory'), ('29312','23131','component','memory'), ('29313','42175','component','system'), ('29314','42176','component','system'), ('29315','42177','component','application'), ('29316','42178','component','system'), ('29317','22945','component','network'), ('29318','22945','interface','{#IFNAME}'), ('29319','22946','component','network'), ('29320','22946','interface','{#IFNAME}'), ('29322','22948','filesystem','{#FSNAME}'), ('29324','22949','filesystem','{#FSNAME}'), ('29326','22950','filesystem','{#FSNAME}'), ('29328','22951','filesystem','{#FSNAME}'), ('29330','22952','filesystem','{#FSNAME}'), ('29331','22875','component','os'), ('29332','22876','component','os'), ('29333','22876','component','processes'), ('29334','22877','component','os'), ('29335','22877','component','processes'), ('29336','22878','component','os'), ('29337','22878','component','processes'), ('29338','22879','component','os'), ('29339','22880','component','cpu'), ('29340','22881','component','cpu'), ('29341','22882','component','cpu'), ('29342','22883','component','cpu'), ('29343','22884','component','cpu'), ('29344','22885','component','cpu'), ('29345','22886','component','cpu'), ('29346','22888','component','cpu'), ('29347','22891','component','cpu'), ('29348','22892','component','cpu'), ('29349','22893','component','os'), ('29350','22894','component','os'), ('29351','22895','component','memory'), ('29352','22896','component','memory'), ('29353','22897','component','memory'), ('29354','22898','component','os'), ('29355','22899','component','os'), ('29356','22900','component','os'), ('29357','22901','component','security'), ('29358','22902','component','memory'), ('29359','22903','component','memory'), ('29360','42179','component','system'), ('29361','42180','component','system'), ('29362','42181','component','application'), ('29363','42182','component','system'), ('29365','22908','filesystem','{#FSNAME}'), ('29367','22909','filesystem','{#FSNAME}'), ('29369','22910','filesystem','{#FSNAME}'), ('29371','22911','filesystem','{#FSNAME}'), ('29373','22912','filesystem','{#FSNAME}'), ('29374','23073','component','interface'), ('29375','23073','interface','{#IFNAME}'), ('29376','23074','component','interface'), ('29377','23074','interface','{#IFNAME}'), ('29378','22961','component','cpu'), ('29379','22962','component','cpu'), ('29380','22963','component','cpu'), ('29381','22965','component','cpu'), ('29382','22968','component','cpu'), ('29383','22971','component','cpu'), ('29384','22972','component','cpu'), ('29385','22973','component','os'), ('29386','22974','component','os'), ('29387','22978','component','os'), ('29388','22980','component','os'), ('29389','22981','component','security'), ('29390','22982','component','memory'), ('29391','22983','component','memory'), ('29392','42183','component','system'), ('29393','42184','component','system'), ('29394','42185','component','application'), ('29395','42186','component','system'), ('29396','22985','component','interface'), ('29397','22985','interface','{#IFNAME}'), ('29398','22986','component','interface'), ('29399','22986','interface','{#IFNAME}'), ('29401','22988','filesystem','{#FSNAME}'), ('29403','22989','filesystem','{#FSNAME}'), ('29405','22990','filesystem','{#FSNAME}'), ('29407','22991','filesystem','{#FSNAME}'), ('29409','22992','filesystem','{#FSNAME}'), ('29449','42187','component','system'), ('29450','42188','component','memory'), ('29451','42188','component','storage'), ('29452','42189','component','cpu'), ('29453','42190','component','cpu'), ('29454','42191','component','system'), ('29455','42192','component','system'), ('29456','42193','component','os'), ('29457','42194','component','os'), ('29458','42195','component','os'), ('29459','42196','component','memory'), ('29460','42196','component','storage'), ('29461','42197','component','system'), ('29462','42198','component','memory'), ('29463','42198','component','storage'), ('29464','42199','component','system'), ('29465','42200','component','system'), ('29466','42201','component','environment'), ('29468','42203','component','memory'), ('29469','42204','component','memory'), ('29470','42205','component','memory'), ('29471','42206','component','cpu'), ('29472','42207','component','cpu'), ('29473','42208','component','cpu'), ('29474','42209','component','cpu'), ('29475','42210','component','application'), ('29476','42211','component','system'), ('29477','42212','component','system'), ('29478','42213','component','system'), ('29479','42214','component','system'), ('29480','42215','component','system'), ('29481','42216','component','cpu'), ('29482','42217','component','cpu'), ('29483','42218','component','cpu'), ('29484','42219','component','cpu'), ('29485','42220','component','cpu'), ('29486','42221','component','cpu'), ('29487','42222','component','cpu'), ('29488','42223','component','cpu'), ('29489','42224','component','cpu'), ('29490','42225','component','cpu'), ('29491','42226','component','system'), ('29492','42227','component','system'), ('29493','42228','component','memory'), ('29494','42228','component','storage'), ('29495','42229','component','cpu'), ('29496','42230','component','cpu'), ('29497','42231','component','system'), ('29498','42232','component','system'), ('29499','42233','component','os'), ('29500','42234','component','os'), ('29501','42235','component','os'), ('29502','42236','component','memory'), ('29503','42236','component','storage'), ('29504','42237','component','system'), ('29505','42238','component','memory'), ('29506','42238','component','storage'), ('29507','42239','component','system'), ('29508','42240','component','system'), ('29509','42241','component','environment'), ('29511','42243','component','memory'), ('29512','42244','component','memory'), ('29513','42245','component','memory'), ('29514','42246','component','cpu'), ('29515','42247','component','cpu'), ('29516','42248','component','cpu'), ('29517','42249','component','cpu'), ('29518','42250','component','application'), ('29519','42251','component','system'), ('29520','42252','component','system'), ('29521','42253','component','system'), ('29522','42254','component','system'), ('29523','42255','component','system'), ('29524','42256','component','cpu'), ('29525','42257','component','cpu'), ('29526','42258','component','cpu'), ('29527','42259','component','cpu'), ('29528','42260','component','cpu'), ('29529','42261','component','cpu'), ('29530','42262','component','cpu'), ('29531','42263','component','cpu'), ('29532','42264','component','cpu'), ('29533','42265','component','cpu'), ('29534','42266','component','system'), ('29537','42267','component','cpu'), ('29538','42268','component','memory'), ('29539','42269','component','cpu'), ('29540','42270','component','memory'), ('29578','42277','component','network'), ('29580','42277','interface','{#IFNAME}'), ('29581','42278','component','network'), ('29583','42278','interface','{#IFNAME}'), ('29584','42279','component','network'), ('29586','42279','interface','{#IFNAME}'), ('29587','42280','component','network'), ('29589','42280','interface','{#IFNAME}'), ('29590','42281','component','network'), ('29592','42281','interface','{#IFNAME}'), ('29593','42282','component','network'), ('29595','42282','interface','{#IFNAME}'), ('29596','42283','component','network'), ('29598','42283','interface','{#IFNAME}'), ('29599','42284','component','network'), ('29601','42284','interface','{#IFNAME}'), ('29602','42285','component','storage'), ('29603','42285','disk','{#DEVNAME}'), ('29604','42286','component','storage'), ('29605','42286','disk','{#DEVNAME}'), ('29606','42287','component','raw'), ('29607','42288','component','storage'), ('29608','42288','filesystem','{#FSNAME}'), ('29609','42289','component','storage'), ('29610','42289','filesystem','{#FSNAME}'), ('29611','42290','component','storage'), ('29612','42290','filesystem','{#FSNAME}'), ('29613','42291','component','storage'), ('29614','42291','filesystem','{#FSNAME}'), ('29615','42292','component','network'), ('29617','42292','interface','{#IFNAME}'), ('29618','42293','component','network'), ('29620','42293','interface','{#IFNAME}'), ('29621','42294','component','network'), ('29623','42294','interface','{#IFNAME}'), ('29624','42295','component','network'), ('29626','42295','interface','{#IFNAME}'), ('29627','42296','component','network'), ('29629','42296','interface','{#IFNAME}'), ('29630','42297','component','network'), ('29632','42297','interface','{#IFNAME}'), ('29633','42298','component','network'), ('29635','42298','interface','{#IFNAME}'), ('29636','42299','component','network'), ('29638','42299','interface','{#IFNAME}'), ('29639','42300','component','storage'), ('29640','42300','disk','{#DEVNAME}'), ('29641','42301','component','storage'), ('29642','42301','disk','{#DEVNAME}'), ('29643','42302','component','raw'), ('29644','42303','component','storage'), ('29645','42303','filesystem','{#FSNAME}'), ('29646','42304','component','storage'), ('29647','42304','filesystem','{#FSNAME}'), ('29648','42305','component','storage'), ('29649','42305','filesystem','{#FSNAME}'), ('29650','42306','component','storage'), ('29651','42306','filesystem','{#FSNAME}'), ('29664','42307','component','storage'), ('29665','42307','disk','{#DEVNAME}'), ('29666','42308','component','storage'), ('29667','42308','disk','{#DEVNAME}'), ('29668','42309','component','storage'), ('29669','42309','disk','{#DEVNAME}'), ('29670','42310','component','storage'), ('29671','42310','disk','{#DEVNAME}'), ('29672','42311','component','storage'), ('29673','42311','disk','{#DEVNAME}'), ('29674','42312','component','storage'), ('29675','42312','disk','{#DEVNAME}'), ('29676','42313','component','storage'), ('29677','42313','disk','{#DEVNAME}'), ('29678','42314','component','storage'), ('29679','42314','disk','{#DEVNAME}'), ('29680','42315','component','storage'), ('29681','42315','disk','{#DEVNAME}'), ('29682','42316','component','storage'), ('29683','42316','disk','{#DEVNAME}'), ('29684','42317','component','storage'), ('29685','42317','disk','{#DEVNAME}'), ('29686','42318','component','storage'), ('29687','42318','disk','{#DEVNAME}'), ('29727','42319','component','system'), ('29728','42320','component','memory'), ('29729','42320','component','storage'), ('29730','42321','component','cpu'), ('29731','42322','component','cpu'), ('29732','42323','component','system'), ('29733','42324','component','system'), ('29734','42325','component','os'), ('29735','42326','component','os'), ('29736','42327','component','os'), ('29737','42328','component','memory'), ('29738','42328','component','storage'), ('29739','42329','component','cpu'), ('29740','42330','component','memory'), ('29741','42330','component','storage'), ('29742','42331','component','system'), ('29743','42332','component','system'), ('29744','42333','component','environment'), ('29746','42335','component','memory'), ('29747','42336','component','memory'), ('29748','42337','component','memory'), ('29749','42338','component','cpu'), ('29750','42339','component','cpu'), ('29751','42340','component','system'), ('29752','42341','component','cpu'), ('29753','42342','component','application'), ('29754','42343','component','system'), ('29755','42344','component','system'), ('29756','42345','component','system'), ('29757','42346','component','system'), ('29758','42347','component','system'), ('29759','42348','component','cpu'), ('29760','42349','component','cpu'), ('29761','42350','component','cpu'), ('29762','42351','component','cpu'), ('29763','42352','component','cpu'), ('29764','42353','component','cpu'), ('29765','42354','component','cpu'), ('29766','42355','component','cpu'), ('29767','42356','component','cpu'), ('29768','42357','component','cpu'), ('29771','42358','component','cpu'), ('29772','42359','component','memory'), ('29810','42363','component','network'), ('29812','42363','interface','{#IFNAME}'), ('29813','42364','component','network'), ('29815','42364','interface','{#IFNAME}'), ('29816','42365','component','network'), ('29818','42365','interface','{#IFNAME}'), ('29819','42366','component','network'), ('29821','42366','interface','{#IFNAME}'), ('29822','42367','component','network'), ('29824','42367','interface','{#IFNAME}'), ('29825','42368','component','network'), ('29827','42368','interface','{#IFNAME}'), ('29828','42369','component','network'), ('29830','42369','interface','{#IFNAME}'), ('29831','42370','component','network'), ('29833','42370','interface','{#IFNAME}'), ('29834','42371','component','storage'), ('29835','42371','disk','{#DEVNAME}'), ('29836','42372','component','storage'), ('29837','42372','disk','{#DEVNAME}'), ('29838','42373','component','raw'), ('29839','42374','component','storage'), ('29840','42374','filesystem','{#FSNAME}'), ('29841','42375','component','storage'), ('29842','42375','filesystem','{#FSNAME}'), ('29843','42376','component','storage'), ('29844','42376','filesystem','{#FSNAME}'), ('29845','42377','component','storage'), ('29846','42377','filesystem','{#FSNAME}'), ('29859','42378','component','storage'), ('29860','42378','disk','{#DEVNAME}'), ('29861','42379','component','storage'), ('29862','42379','disk','{#DEVNAME}'), ('29863','42380','component','storage'), ('29864','42380','disk','{#DEVNAME}'), ('29865','42381','component','storage'), ('29866','42381','disk','{#DEVNAME}'), ('29867','42382','component','storage'), ('29868','42382','disk','{#DEVNAME}'), ('29869','42383','component','storage'), ('29870','42383','disk','{#DEVNAME}'), ('29871','29395','component','raw'), ('29872','29396','component','memory'), ('29873','29397','component','memory'), ('29874','29397','component','storage'), ('29875','29398','component','system'), ('29876','29399','component','cpu'), ('29877','29400','component','memory'), ('29878','29400','component','storage'), ('29879','29401','component','memory'), ('29880','29401','component','storage'), ('29881','29402','component','memory'), ('29882','29403','component','memory'), ('29883','29404','component','system'), ('29884','29405','component','cpu'), ('29885','29406','component','cpu'), ('29886','29407','component','cpu'), ('29887','29408','component','cpu'), ('29888','29409','component','cpu'), ('29889','29410','component','cpu'), ('29890','29411','component','cpu'), ('29891','29412','component','cpu'), ('29892','29413','component','cpu'), ('29893','29414','component','system'), ('29894','29415','component','application'), ('29895','29416','component','cpu'), ('29896','29417','component','cpu'), ('29897','29418','component','cpu'), ('29898','29419','component','cpu'), ('29899','29420','component','cpu'), ('29900','29421','component','system'), ('29901','29422','component','os'), ('29902','29423','component','system'), ('29903','29424','component','system'), ('29904','29425','component','system'), ('29905','29426','component','cpu'), ('29906','29427','component','cpu'), ('29907','29428','component','os'), ('29908','29432','component','storage'), ('29909','29432','filesystem','{#FSNAME}'), ('29910','29433','component','storage'), ('29911','29433','filesystem','{#FSNAME}'), ('29912','29434','component','storage'), ('29913','29434','disk','{#DEVNAME}'), ('29914','29435','component','storage'), ('29915','29435','disk','{#DEVNAME}'), ('29916','29436','component','network'), ('29917','29436','description','{#IFALIAS}'), ('29918','29436','interface','{#IFNAME}'), ('29919','29437','component','network'), ('29920','29437','description','{#IFALIAS}'), ('29921','29437','interface','{#IFNAME}'), ('29922','29438','component','network'), ('29923','29438','description','{#IFALIAS}'), ('29924','29438','interface','{#IFNAME}'), ('29925','29439','component','network'), ('29926','29439','description','{#IFALIAS}'), ('29927','29439','interface','{#IFNAME}'), ('29928','29440','component','network'), ('29929','29440','description','{#IFALIAS}'), ('29930','29440','interface','{#IFNAME}'), ('29931','29441','component','network'), ('29932','29441','description','{#IFALIAS}'), ('29933','29441','interface','{#IFNAME}'), ('29934','29442','component','network'), ('29935','29442','description','{#IFALIAS}'), ('29936','29442','interface','{#IFNAME}'), ('29937','29443','component','network'), ('29938','29443','description','{#IFALIAS}'), ('29939','29443','interface','{#IFNAME}'), ('29940','29444','component','network'), ('29941','29444','description','{#IFALIAS}'), ('29942','29444','interface','{#IFNAME}'), ('29943','29445','component','storage'), ('29944','29445','filesystem','{#FSNAME}'), ('29945','29446','component','storage'), ('29946','29446','filesystem','{#FSNAME}'), ('29947','29447','component','storage'), ('29948','29447','filesystem','{#FSNAME}'), ('29949','29448','component','storage'), ('29950','29448','disk','{#DEVNAME}'), ('29951','29449','component','storage'), ('29952','29449','disk','{#DEVNAME}'), ('29953','29450','component','storage'), ('29954','29450','disk','{#DEVNAME}'), ('29955','29451','component','storage'), ('29956','29451','disk','{#DEVNAME}'), ('29957','29452','component','storage'), ('29958','29452','disk','{#DEVNAME}'), ('29959','29453','component','storage'), ('29960','29453','disk','{#DEVNAME}'), ('29979','42384','component','health'), ('29980','42384','component','network'), ('29981','42385','component','system'), ('29982','42386','component','memory'), ('29983','42387','component','memory'), ('29984','42388','component','memory'), ('29985','42389','component','memory'), ('29986','42390','component','memory'), ('29987','42391','component','memory'), ('29988','42392','component','system'), ('29989','42393','component','memory'), ('29990','42393','component','storage'), ('29991','42394','component','memory'), ('29992','42394','component','storage'), ('29993','42395','component','memory'), ('29994','42395','component','storage'), ('29995','42396','component','system'), ('29996','42397','component','health'), ('29997','42397','component','network'), ('29998','42398','component','system'), ('29999','42399','component','system'), ('30000','42400','component','cpu'), ('30001','42401','component','cpu'), ('30002','42402','component','cpu'), ('30003','42403','component','cpu'), ('30004','42404','component','cpu'), ('30005','42405','component','cpu'), ('30006','42406','component','system'), ('30007','42407','component','network'), ('30008','42408','component','health'), ('30009','42408','component','network'), ('30010','42409','component','health'), ('30011','42409','component','network'), ('30036','42415','component','cpu'), ('30037','42416','component','cpu'), ('30038','42417','component','cpu'), ('30039','42418','component','cpu'), ('30040','42419','component','cpu'), ('30041','42420','component','cpu'), ('30042','42421','component','cpu'), ('30043','42422','component','cpu'), ('30044','42423','component','cpu'), ('30045','42424','component','cpu'), ('30046','42425','component','network'), ('30047','42425','description','{#IFALIAS}'), ('30048','42425','interface','{#IFNAME}'), ('30049','42426','component','network'), ('30050','42426','description','{#IFALIAS}'), ('30051','42426','interface','{#IFNAME}'), ('30052','42427','component','network'), ('30053','42427','description','{#IFALIAS}'), ('30054','42427','interface','{#IFNAME}'), ('30055','42428','component','network'), ('30056','42428','description','{#IFALIAS}'), ('30057','42428','interface','{#IFNAME}'), ('30058','42429','component','network'), ('30059','42429','description','{#IFALIAS}'), ('30060','42429','interface','{#IFNAME}'), ('30061','42430','component','network'), ('30062','42430','description','{#IFALIAS}'), ('30063','42430','interface','{#IFNAME}'), ('30064','42431','component','network'), ('30065','42431','description','{#IFALIAS}'), ('30066','42431','interface','{#IFNAME}'), ('30067','42432','component','network'), ('30068','42432','description','{#IFALIAS}'), ('30069','42432','interface','{#IFNAME}'), ('30070','42433','component','network'), ('30071','42433','description','{#IFALIAS}'), ('30072','42433','interface','{#IFNAME}'), ('30073','42434','component','network'), ('30074','42434','description','{#IFALIAS}'), ('30075','42434','interface','{#IFNAME}'), ('30076','42435','component','storage'), ('30077','42435','disk','{#DEVNAME}'), ('30078','42436','component','storage'), ('30079','42436','disk','{#DEVNAME}'), ('30080','42437','component','storage'), ('30081','42437','disk','{#DEVNAME}'), ('30082','42438','component','storage'), ('30083','42438','filesystem','{#FSNAME}'), ('30084','42439','component','storage'), ('30085','42439','filesystem','{#FSNAME}'), ('30086','42440','component','storage'), ('30087','42440','filesystem','{#FSNAME}'), ('30088','42441','component','storage'), ('30089','42441','filesystem','{#FSNAME}'), ('30091','42442','component','cpu'), ('30092','23035','component','os'), ('30093','23036','component','os'), ('30094','23039','component','os'), ('30095','23041','component','cpu'), ('30096','23042','component','cpu'), ('30097','23043','component','cpu'), ('30098','23053','component','os'), ('30099','23054','component','os'), ('30100','23058','component','os'), ('30101','23059','component','os'), ('30102','23060','component','os'), ('30103','23060','component','security'), ('30104','23061','component','security'), ('30105','23062','component','memory'), ('30106','23063','component','memory'), ('30107','23077','component','network'), ('30108','23078','component','network'), ('30109','42443','component','system'), ('30110','42444','component','system'), ('30111','42445','component','application'), ('30112','42446','component','system'), ('30114','23068','filesystem','{#FSNAME}'), ('30116','23069','filesystem','{#FSNAME}'), ('30118','23070','filesystem','{#FSNAME}'), ('30120','23071','filesystem','{#FSNAME}'), ('30122','23072','filesystem','{#FSNAME}'), ('30123','22835','component','os'), ('30124','22836','component','processes'), ('30125','22837','component','processes'), ('30126','22838','component','processes'), ('30127','22839','component','os'), ('30128','22840','component','cpu'), ('30129','22841','component','cpu'), ('30130','22842','component','cpu'), ('30131','22843','component','cpu'), ('30132','22844','component','cpu'), ('30133','22845','component','cpu'), ('30134','22846','component','cpu'), ('30135','22848','component','cpu'), ('30136','22851','component','cpu'), ('30137','22852','component','cpu'), ('30138','22853','component','os'), ('30139','22854','component','os'), ('30140','22855','component','memory'), ('30141','22856','component','memory'), ('30142','22857','component','memory'), ('30143','22858','component','os'), ('30144','22859','component','os'), ('30145','22860','component','os'), ('30146','22860','component','security'), ('30147','22861','component','security'), ('30148','22862','component','memory'), ('30149','22863','component','memory'), ('30150','42447','component','system'), ('30151','42448','component','system'), ('30152','42449','component','application'), ('30153','42450','component','system'), ('30155','22868','filesystem','{#FSNAME}'), ('30157','22869','filesystem','{#FSNAME}'), ('30159','22870','filesystem','{#FSNAME}'), ('30161','22871','filesystem','{#FSNAME}'), ('30163','22872','filesystem','{#FSNAME}'), ('30164','23075','component','interfaces'), ('30165','23075','interfaces','{#IFNAME}'), ('30166','23076','component','interfaces'), ('30167','23076','interfaces','{#IFNAME}'), ('30168','22996','component','processes'), ('30169','22997','component','processes'), ('30170','22998','component','processes'), ('30171','22999','component','os'), ('30172','23000','component','cpu'), ('30173','23001','component','cpu'), ('30174','23002','component','cpu'), ('30175','23003','component','cpu'), ('30176','23004','component','cpu'), ('30177','23005','component','cpu'), ('30178','23007','component','cpu'), ('30179','23011','component','cpu'), ('30180','23012','component','cpu'), ('30181','23013','component','os'), ('30182','23014','component','os'), ('30183','23015','component','memory'), ('30184','23016','component','memory'), ('30185','23017','component','memory'), ('30186','23018','component','os'), ('30187','23019','component','os'), ('30188','23020','component','security'), ('30189','23021','component','security'), ('30190','23022','component','memory'), ('30191','23023','component','memory'), ('30192','42451','component','system'), ('30193','42452','component','system'), ('30194','42453','component','application'), ('30195','42454','component','system'), ('30196','23025','component','interfaces'), ('30197','23025','interfaces','{#IFNAME}'), ('30198','23026','component','interfaces'), ('30199','23026','interfaces','{#IFNAME}'), ('30201','23028','filesystem','{#FSNAME}'), ('30203','23029','filesystem','{#FSNAME}'), ('30205','23030','filesystem','{#FSNAME}'), ('30207','23031','filesystem','{#FSNAME}'), ('30209','23032','filesystem','{#FSNAME}'), ('30240','42455','component','system'), ('30241','42456','component','system'), ('30242','42457','component','cpu'), ('30243','42458','component','raw'), ('30244','42459','component','memory'), ('30245','42460','component','memory'), ('30246','42461','component','memory'), ('30247','42462','component','system'), ('30248','42463','component','system'), ('30249','42464','component','memory'), ('30250','42464','component','storage'), ('30251','42465','component','memory'), ('30252','42465','component','storage'), ('30253','42466','component','os'), ('30254','42467','component','system'), ('30255','42468','component','system'), ('30256','42469','component','cpu'), ('30257','42470','component','os'), ('30258','42471','component','os'), ('30259','42472','component','cpu'), ('30260','42473','component','cpu'), ('30261','42474','component','cpu'), ('30262','42475','component','cpu'), ('30263','42476','component','cpu'), ('30264','42477','component','cpu'), ('30265','42478','component','memory'), ('30266','42478','component','storage'), ('30267','42479','component','memory'), ('30268','42480','component','memory'), ('30269','42481','component','memory'), ('30270','42482','component','memory'), ('30271','42483','component','memory'), ('30272','42484','component','application'), ('30273','42485','component','system'), ('30276','42486','component','memory'), ('30277','42486','component','storage'), ('30321','42491','component','network'), ('30322','42491','description','{#IFALIAS}'), ('30323','42491','interface','{#IFNAME}'), ('30324','42492','component','network'), ('30325','42492','description','{#IFALIAS}'), ('30326','42492','interface','{#IFNAME}'), ('30327','42493','component','network'), ('30328','42493','description','{#IFALIAS}'), ('30329','42493','interface','{#IFNAME}'), ('30330','42494','component','network'), ('30331','42494','description','{#IFALIAS}'), ('30332','42494','interface','{#IFNAME}'), ('30333','42495','component','network'), ('30334','42495','description','{#IFALIAS}'), ('30335','42495','interface','{#IFNAME}'), ('30336','42496','component','network'), ('30337','42496','description','{#IFALIAS}'), ('30338','42496','interface','{#IFNAME}'), ('30339','42497','component','storage'), ('30340','42497','disk','{#DEVNAME}'), ('30341','42498','component','storage'), ('30342','42498','disk','{#DEVNAME}'), ('30343','42499','component','storage'), ('30344','42499','disk','{#DEVNAME}'), ('30345','42500','component','storage'), ('30346','42500','disk','{#DEVNAME}'), ('30347','42501','component','storage'), ('30348','42501','disk','{#DEVNAME}'), ('30349','42502','component','storage'), ('30350','42502','disk','{#DEVNAME}'), ('30351','42503','component','storage'), ('30352','42503','disk','{#DEVNAME}'), ('30353','42504','component','storage'), ('30354','42504','disk','{#DEVNAME}'), ('30355','42505','component','system'), ('30356','42505','name','{#SERVICE.DISPLAYNAME}'), ('30357','42505','service','{#SERVICE.NAME}'), ('30358','42506','component','storage'), ('30359','42506','filesystem','{#FSNAME}'), ('30360','42507','component','storage'), ('30361','42507','filesystem','{#FSNAME}'), ('30362','42508','component','storage'), ('30363','42508','filesystem','{#FSNAME}'), ('30373','42509','component','network'), ('30374','42509','description','{#IFALIAS}'), ('30375','42509','interface','{#IFNAME}'), ('30376','42510','component','network'), ('30377','42510','description','{#IFALIAS}'), ('30378','42510','interface','{#IFNAME}'), ('30379','42511','component','network'), ('30380','42511','description','{#IFALIAS}'), ('30381','42511','interface','{#IFNAME}'), ('30412','42512','component','system'), ('30413','42513','component','os'), ('30414','42514','component','raw'), ('30415','42515','component','memory'), ('30416','42516','component','memory'), ('30417','42517','component','memory'), ('30418','42518','component','system'), ('30419','42519','component','system'), ('30420','42520','component','memory'), ('30421','42520','component','storage'), ('30422','42521','component','memory'), ('30423','42521','component','storage'), ('30424','42522','component','os'), ('30425','42523','component','system'), ('30426','42524','component','system'), ('30427','42525','component','cpu'), ('30428','42526','component','os'), ('30429','42527','component','system'), ('30430','42528','component','cpu'), ('30431','42529','component','cpu'), ('30432','42530','component','cpu'), ('30433','42531','component','cpu'), ('30434','42532','component','cpu'), ('30435','42533','component','cpu'), ('30436','42534','component','memory'), ('30437','42534','component','storage'), ('30438','42535','component','memory'), ('30439','42536','component','memory'), ('30440','42537','component','memory'), ('30441','42538','component','memory'), ('30442','42539','component','memory'), ('30443','42540','component','application'), ('30444','42541','component','cpu'), ('30447','42542','component','memory'), ('30448','42542','component','storage'), ('30492','42547','component','network'), ('30493','42547','description','{#IFALIAS}'), ('30494','42547','interface','{#IFNAME}'), ('30495','42548','component','network'), ('30496','42548','description','{#IFALIAS}'), ('30497','42548','interface','{#IFNAME}'), ('30498','42549','component','network'), ('30499','42549','description','{#IFALIAS}'), ('30500','42549','interface','{#IFNAME}'), ('30501','42550','component','network'), ('30502','42550','description','{#IFALIAS}'), ('30503','42550','interface','{#IFNAME}'), ('30504','42551','component','network'), ('30505','42551','description','{#IFALIAS}'), ('30506','42551','interface','{#IFNAME}'), ('30507','42552','component','network'), ('30508','42552','description','{#IFALIAS}'), ('30509','42552','interface','{#IFNAME}'), ('30510','42553','component','storage'), ('30511','42553','disk','{#DEVNAME}'), ('30512','42554','component','storage'), ('30513','42554','disk','{#DEVNAME}'), ('30514','42555','component','storage'), ('30515','42555','disk','{#DEVNAME}'), ('30516','42556','component','storage'), ('30517','42556','disk','{#DEVNAME}'), ('30518','42557','component','storage'), ('30519','42557','disk','{#DEVNAME}'), ('30520','42558','component','storage'), ('30521','42558','disk','{#DEVNAME}'), ('30522','42559','component','storage'), ('30523','42559','disk','{#DEVNAME}'), ('30524','42560','component','storage'), ('30525','42560','disk','{#DEVNAME}'), ('30526','42561','component','system'), ('30527','42561','name','{#SERVICE.DISPLAYNAME}'), ('30528','42561','service','{#SERVICE.NAME}'), ('30529','42562','component','storage'), ('30530','42562','filesystem','{#FSNAME}'), ('30531','42563','component','storage'), ('30532','42563','filesystem','{#FSNAME}'), ('30533','42564','component','storage'), ('30534','42564','filesystem','{#FSNAME}'), ('30544','42565','component','network'), ('30545','42565','description','{#IFALIAS}'), ('30546','42565','interface','{#IFNAME}'), ('30547','42566','component','network'), ('30548','42566','description','{#IFALIAS}'), ('30549','42566','interface','{#IFNAME}'), ('30550','42567','component','network'), ('30551','42567','description','{#IFALIAS}'), ('30552','42567','interface','{#IFNAME}'), ('30553','42568','component','health'), ('30554','42568','component','network'), ('30555','42569','component','health'), ('30556','42569','component','network'), ('30557','42570','component','health'), ('30558','42570','component','network'), ('30559','42571','component','network'), ('30560','42572','component','system'), ('30561','42573','component','cpu'), ('30562','42574','component','system'), ('30563','42575','component','system'), ('30564','42576','component','system'), ('30565','42577','component','system'), ('30566','42578','component','system'), ('30567','42579','component','health'), ('30568','42579','component','network'), ('30569','42583','component','network'), ('30570','42583','description','{#IFALIAS}'), ('30571','42583','interface','{#IFNAME}'), ('30572','42584','component','network'), ('30573','42584','description','{#IFALIAS}'), ('30574','42584','interface','{#IFNAME}'), ('30575','42585','component','network'), ('30576','42585','description','{#IFALIAS}'), ('30577','42585','interface','{#IFNAME}'), ('30578','42586','component','network'), ('30579','42586','description','{#IFALIAS}'), ('30580','42586','interface','{#IFNAME}'), ('30581','42587','component','network'), ('30582','42587','description','{#IFALIAS}'), ('30583','42587','interface','{#IFNAME}'), ('30584','42588','component','network'), ('30585','42588','description','{#IFALIAS}'), ('30586','42588','interface','{#IFNAME}'), ('30587','42589','component','network'), ('30588','42589','description','{#IFALIAS}'), ('30589','42589','interface','{#IFNAME}'), ('30590','42590','component','network'), ('30591','42590','description','{#IFALIAS}'), ('30592','42590','interface','{#IFNAME}'), ('30593','42591','component','network'), ('30594','42591','description','{#IFALIAS}'), ('30595','42591','interface','{#IFNAME}'), ('30596','42592','component','storage'), ('30597','42592','filesystem','{#FSNAME}'), ('30598','42593','component','storage'), ('30599','42593','filesystem','{#FSNAME}'), ('30600','42594','component','storage'), ('30601','42594','filesystem','{#FSNAME}'), ('30602','42595','component','memory'), ('30603','42596','component','memory'), ('30604','42597','component','memory'), ('30605','34451','component','power'), ('30606','34452','component','health'), ('30607','34452','component','power'), ('30608','34453','component','system'), ('30609','34454','component','inventory'), ('30610','34455','component','system'), ('30611','34456','component','system'), ('30612','34457','component','inventory'), ('30613','34458','component','system'), ('30614','34459','component','system'), ('30615','34460','component','system'), ('30616','34461','component','network'), ('30617','34462','component','power'), ('30618','34463','component','power'), ('30619','34464','component','inventory'), ('30620','34465','component','power'), ('30621','34466','component','power'), ('30622','34467','component','power'), ('30623','34468','component','power'), ('30624','34469','component','power'), ('30625','34470','component','temperature'), ('30626','34471','component','health'), ('30627','34471','component','power'), ('30628','34472','component','power'), ('30629','34473','component','power'), ('30630','34474','component','inventory'), ('30631','34475','component','health'), ('30632','34475','component','network'), ('30633','34482','component','inventory'), ('30634','34483','component','inventory'), ('30635','34483','component','power'), ('30636','34484','component','health'), ('30637','34484','component','power'), ('30638','34485','component','health'), ('30639','34485','component','power'), ('30640','34486','component','temperature'), ('30641','34487','component','inventory'), ('30642','34488','component','humidity'), ('30643','34488','component','power'), ('30644','34489','component','health'), ('30645','34489','component','power'), ('30646','34490','component','power'), ('30647','34490','component','temperature'), ('30648','34491','component','humidity'), ('30649','34491','component','power'), ('30650','34492','component','health'), ('30651','34492','component','power'), ('30652','34493','component','power'), ('30653','34493','component','temperature'), ('30654','34494','component','power'), ('30655','34495','component','power'), ('30656','34496','component','power'), ('30657','34497','component','power'), ('30658','34498','component','power'), ('30659','34499','component','power'), ('30660','34500','component','health'), ('30661','34500','component','power'), ('30662','34501','component','system'), ('30663','34502','component','inventory'), ('30664','34503','component','system'), ('30665','34504','component','system'), ('30666','34505','component','inventory'), ('30667','34506','component','system'), ('30668','34507','component','system'), ('30669','34508','component','system'), ('30670','34509','component','network'), ('30671','34510','component','power'), ('30672','34511','component','power'), ('30673','34512','component','inventory'), ('30674','34513','component','power'), ('30675','34514','component','power'), ('30676','34515','component','power'), ('30677','34516','component','power'), ('30678','34517','component','power'), ('30679','34518','component','temperature'), ('30680','34519','component','health'), ('30681','34519','component','power'), ('30682','34520','component','power'), ('30683','34521','component','power'), ('30684','34522','component','inventory'), ('30685','34523','component','health'), ('30686','34523','component','network'), ('30687','34530','component','inventory'), ('30688','34531','component','inventory'), ('30689','34531','component','power'), ('30690','34532','component','health'), ('30691','34532','component','power'), ('30692','34533','component','health'), ('30693','34533','component','power'), ('30694','34534','component','temperature'), ('30695','34535','component','inventory'), ('30696','34536','component','humidity'), ('30697','34536','component','power'), ('30698','34537','component','health'), ('30699','34537','component','power'), ('30700','34538','component','power'), ('30701','34538','component','temperature'), ('30702','34539','component','humidity'), ('30703','34539','component','power'), ('30704','34540','component','health'), ('30705','34540','component','power'), ('30706','34541','component','power'), ('30707','34541','component','temperature'), ('30708','34542','component','power'), ('30709','34543','component','power'), ('30710','34544','component','power'), ('30711','34545','component','power'), ('30712','34546','component','power'), ('30713','34547','component','power'), ('30714','34548','component','health'), ('30715','34548','component','power'), ('30716','34549','component','system'), ('30717','34550','component','inventory'), ('30718','34551','component','system'), ('30719','34552','component','system'), ('30720','34553','component','inventory'), ('30721','34554','component','system'), ('30722','34555','component','system'), ('30723','34556','component','system'), ('30724','34557','component','network'), ('30725','34558','component','power'), ('30726','34559','component','power'), ('30727','34560','component','inventory'), ('30728','34561','component','power'), ('30729','34562','component','power'), ('30730','34563','component','power'), ('30731','34564','component','power'), ('30732','34565','component','power'), ('30733','34566','component','temperature'), ('30734','34567','component','health'), ('30735','34567','component','power'), ('30736','34568','component','power'), ('30737','34569','component','power'), ('30738','34570','component','inventory'), ('30739','34571','component','health'), ('30740','34571','component','network'), ('30741','34578','component','inventory'), ('30742','34579','component','inventory'), ('30743','34579','component','power'), ('30744','34580','component','health'), ('30745','34580','component','power'), ('30746','34581','component','health'), ('30747','34581','component','power'), ('30748','34582','component','temperature'), ('30749','34583','component','inventory'), ('30750','34584','component','humidity'), ('30751','34584','component','power'), ('30752','34585','component','health'), ('30753','34585','component','power'), ('30754','34586','component','power'), ('30755','34586','component','temperature'), ('30756','34587','component','humidity'), ('30757','34587','component','power'), ('30758','34588','component','health'), ('30759','34588','component','power'), ('30760','34589','component','power'), ('30761','34589','component','temperature'), ('30762','34590','component','power'), ('30763','34591','component','power'), ('30764','34592','component','power'), ('30765','34593','component','power'), ('30766','34594','component','power'), ('30767','34595','component','power'), ('30768','34596','component','health'), ('30769','34596','component','power'), ('30770','34597','component','system'), ('30771','34598','component','inventory'), ('30772','34599','component','system'), ('30773','34600','component','system'), ('30774','34601','component','inventory'), ('30775','34602','component','system'), ('30776','34603','component','system'), ('30777','34604','component','system'), ('30778','34605','component','network'), ('30779','34606','component','power'), ('30780','34607','component','power'), ('30781','34608','component','inventory'), ('30782','34609','component','power'), ('30783','34610','component','power'), ('30784','34611','component','power'), ('30785','34612','component','power'), ('30786','34613','component','power'), ('30787','34614','component','temperature'), ('30788','34615','component','health'), ('30789','34615','component','power'), ('30790','34616','component','power'), ('30791','34617','component','power'), ('30792','34618','component','inventory'), ('30793','34619','component','health'), ('30794','34619','component','network'), ('30795','34626','component','inventory'), ('30796','34627','component','inventory'), ('30797','34627','component','power'), ('30798','34628','component','health'), ('30799','34628','component','power'), ('30800','34629','component','health'), ('30801','34629','component','power'), ('30802','34630','component','temperature'), ('30803','34631','component','inventory'), ('30804','34632','component','humidity'), ('30805','34632','component','power'), ('30806','34633','component','health'), ('30807','34633','component','power'), ('30808','34634','component','power'), ('30809','34634','component','temperature'), ('30810','34635','component','humidity'), ('30811','34635','component','power'), ('30812','34636','component','health'), ('30813','34636','component','power'), ('30814','34637','component','power'), ('30815','34637','component','temperature'), ('30816','34638','component','power'), ('30817','34639','component','power'), ('30818','34640','component','power'), ('30819','34641','component','power'), ('30820','34642','component','power'), ('30821','34643','component','power'), ('30822','34644','component','health'), ('30823','34644','component','power'), ('30824','34645','component','system'), ('30825','34646','component','inventory'), ('30826','34647','component','system'), ('30827','34648','component','system'), ('30828','34649','component','inventory'), ('30829','34650','component','system'), ('30830','34651','component','system'), ('30831','34652','component','system'), ('30832','34653','component','network'), ('30833','34654','component','power'), ('30834','34655','component','power'), ('30835','34656','component','inventory'), ('30836','34657','component','power'), ('30837','34658','component','power'), ('30838','34659','component','power'), ('30839','34660','component','power'), ('30840','34661','component','power'), ('30841','34662','component','temperature'), ('30842','34663','component','health'), ('30843','34663','component','power'), ('30844','34664','component','power'), ('30845','34665','component','power'), ('30846','34666','component','inventory'), ('30847','34667','component','health'), ('30848','34667','component','network'), ('30849','34674','component','inventory'), ('30850','34675','component','inventory'), ('30851','34675','component','power'), ('30852','34676','component','health'), ('30853','34676','component','power'), ('30854','34677','component','health'), ('30855','34677','component','power'), ('30856','34678','component','temperature'), ('30857','34679','component','inventory'), ('30858','34680','component','humidity'), ('30859','34680','component','power'), ('30860','34681','component','health'), ('30861','34681','component','power'), ('30862','34682','component','power'), ('30863','34682','component','temperature'), ('30864','34683','component','humidity'), ('30865','34683','component','power'), ('30866','34684','component','health'), ('30867','34684','component','power'), ('30868','34685','component','power'), ('30869','34685','component','temperature'), ('30870','34686','component','power'), ('30871','34687','component','power'), ('30872','34688','component','power'), ('30873','34689','component','power'), ('30874','34690','component','power'), ('30875','35016','component','power'), ('30876','35017','component','health'), ('30877','35017','component','power'), ('30878','35018','component','system'), ('30879','35019','component','inventory'), ('30880','35020','component','system'), ('30881','35021','component','system'), ('30882','35022','component','inventory'), ('30883','35023','component','system'), ('30884','35024','component','system'), ('30885','35025','component','system'), ('30886','35026','component','network'), ('30887','35027','component','power'), ('30888','35028','component','power'), ('30889','35029','component','inventory'), ('30890','35030','component','power'), ('30891','35031','component','power'), ('30892','35032','component','power'), ('30893','35033','component','power'), ('30894','35034','component','power'), ('30895','35035','component','temperature'), ('30896','35036','component','health'), ('30897','35036','component','power'), ('30898','35037','component','power'), ('30899','35038','component','power'), ('30900','35039','component','inventory'), ('30901','35040','component','health'), ('30902','35040','component','network'), ('30903','35047','component','inventory'), ('30904','35048','component','inventory'), ('30905','35048','component','power'), ('30906','35049','component','health'), ('30907','35049','component','power'), ('30908','35050','component','health'), ('30909','35050','component','power'), ('30910','35051','component','temperature'), ('30911','35052','component','inventory'), ('30912','35053','component','humidity'), ('30913','35053','component','power'), ('30914','35054','component','health'), ('30915','35054','component','power'), ('30916','35055','component','power'), ('30917','35055','component','temperature'), ('30918','35056','component','humidity'), ('30919','35056','component','power'), ('30920','35057','component','health'), ('30921','35057','component','power'), ('30922','35058','component','power'), ('30923','35058','component','temperature'), ('30924','35059','component','power'), ('30925','35060','component','power'), ('30926','35061','component','power'), ('30927','35062','component','power'), ('30928','35063','component','power'), ('30929','34739','component','power'), ('30930','34740','component','health'), ('30931','34740','component','power'), ('30932','34741','component','system'), ('30933','34742','component','inventory'), ('30934','34743','component','system'), ('30935','34744','component','system'), ('30936','34745','component','inventory'), ('30937','34746','component','system'), ('30938','34747','component','system'), ('30939','34748','component','system'), ('30940','34749','component','network'), ('30941','34750','component','power'), ('30942','34751','component','power'), ('30943','34752','component','inventory'), ('30944','34753','component','power'), ('30945','34754','component','power'), ('30946','34755','component','power'), ('30947','34756','component','power'), ('30948','34757','component','power'), ('30949','34758','component','temperature'), ('30950','34759','component','health'), ('30951','34759','component','power'), ('30952','34760','component','power'), ('30953','34761','component','power'), ('30954','34762','component','inventory'), ('30955','34763','component','health'), ('30956','34763','component','network'), ('30957','34770','component','inventory'), ('30958','34771','component','inventory'), ('30959','34771','component','power'), ('30960','34772','component','health'), ('30961','34772','component','power'), ('30962','34773','component','health'), ('30963','34773','component','power'), ('30964','34774','component','temperature'), ('30965','34775','component','inventory'), ('30966','34776','component','humidity'), ('30967','34776','component','power'), ('30968','34777','component','health'), ('30969','34777','component','power'), ('30970','34778','component','power'), ('30971','34778','component','temperature'), ('30972','34779','component','humidity'), ('30973','34779','component','power'), ('30974','34780','component','health'), ('30975','34780','component','power'), ('30976','34781','component','power'), ('30977','34781','component','temperature'), ('30978','34782','component','power'), ('30979','34783','component','power'), ('30980','34784','component','power'), ('30981','34785','component','power'), ('30982','34786','component','power'), ('30983','34180','component','power'), ('30984','34181','component','system'), ('30985','34182','component','inventory'), ('30986','34183','component','system'), ('30987','34185','component','inventory'), ('30988','34186','component','system'), ('30989','34187','component','system'), ('30990','34188','component','system'), ('30991','34189','component','network'), ('30992','34190','component','power'), ('30993','34191','component','health'), ('30994','34191','component','power'), ('30995','34192','component','power'), ('30996','34193','component','inventory'), ('30997','34194','component','power'), ('30998','34195','component','power'), ('30999','34196','component','power'), ('31000','34200','component','power'), ('31001','34201','component','temperature'), ('31002','34202','component','health'), ('31003','34202','component','power'), ('31004','34203','component','power'), ('31005','34204','component','power'), ('31006','34205','component','inventory'), ('31007','34206','component','health'), ('31008','34206','component','network'), ('31009','34787','component','power'), ('31010','34788','component','system'), ('31011','34212','component','inventory'), ('31012','34213','component','inventory'), ('31013','34213','component','power'), ('31014','34214','component','health'), ('31015','34214','component','power'), ('31016','34215','component','health'), ('31017','34215','component','power'), ('31018','34216','component','temperature'), ('31019','34217','component','inventory'), ('31020','34218','component','humidity'), ('31021','34218','component','power'), ('31022','34219','component','health'), ('31023','34219','component','power'), ('31024','34220','component','power'), ('31025','34220','component','temperature'), ('31026','34221','component','humidity'), ('31027','34221','component','power'), ('31028','34222','component','health'), ('31029','34222','component','power'), ('31030','34223','component','power'), ('31031','34223','component','temperature'), ('31032','34224','component','power'), ('31033','34225','component','power'), ('31034','34790','component','power'), ('31035','34791','component','power'), ('31036','34792','component','power'), ('31037','34793','component','power'), ('31038','34794','component','health'), ('31039','34794','component','power'), ('31040','34795','component','system'), ('31041','34796','component','inventory'), ('31042','34797','component','system'), ('31043','34798','component','system'), ('31044','34799','component','inventory'), ('31045','34800','component','system'), ('31046','34801','component','system'), ('31047','34802','component','system'), ('31048','34803','component','network'), ('31049','34804','component','power'), ('31050','34805','component','power'), ('31051','34806','component','inventory'), ('31052','34807','component','power'), ('31053','34808','component','power'), ('31054','34809','component','power'), ('31055','34810','component','power'), ('31056','34811','component','power'), ('31057','34812','component','temperature'), ('31058','34813','component','health'), ('31059','34813','component','power'), ('31060','34814','component','power'), ('31061','34815','component','power'), ('31062','34816','component','inventory'), ('31063','34817','component','health'), ('31064','34817','component','network'), ('31065','34824','component','inventory'), ('31066','34825','component','inventory'), ('31067','34825','component','power'), ('31068','34826','component','health'), ('31069','34826','component','power'), ('31070','34827','component','health'), ('31071','34827','component','power'), ('31072','34828','component','temperature'), ('31073','34829','component','inventory'), ('31074','34830','component','humidity'), ('31075','34830','component','power'), ('31076','34831','component','health'), ('31077','34831','component','power'), ('31078','34832','component','power'), ('31079','34832','component','temperature'), ('31080','34833','component','humidity'), ('31081','34833','component','power'), ('31082','34834','component','health'), ('31083','34834','component','power'), ('31084','34835','component','power'), ('31085','34835','component','temperature'), ('31086','34836','component','power'), ('31087','34837','component','power'), ('31088','34838','component','power'), ('31089','34839','component','power'), ('31090','34840','component','power'), ('31091','34841','component','power'), ('31092','34842','component','health'), ('31093','34842','component','power'), ('31094','34843','component','system'), ('31095','34844','component','inventory'), ('31096','34845','component','system'), ('31097','34846','component','system'), ('31098','34847','component','inventory'), ('31099','34848','component','system'), ('31100','34849','component','system'), ('31101','34850','component','system'), ('31102','34851','component','network'), ('31103','34852','component','power'), ('31104','34853','component','power'), ('31105','34854','component','inventory'), ('31106','34855','component','power'), ('31107','34856','component','power'), ('31108','34857','component','power'), ('31109','34858','component','power'), ('31110','34859','component','power'), ('31111','34860','component','temperature'), ('31112','34861','component','health'), ('31113','34861','component','power'), ('31114','34862','component','power'), ('31115','34863','component','power'), ('31116','34864','component','inventory'), ('31117','34865','component','health'), ('31118','34865','component','network'), ('31119','34872','component','inventory'), ('31120','34873','component','inventory'), ('31121','34873','component','power'), ('31122','34874','component','health'), ('31123','34874','component','power'), ('31124','34875','component','health'), ('31125','34875','component','power'), ('31126','34876','component','temperature'), ('31127','34877','component','inventory'), ('31128','34878','component','humidity'), ('31129','34878','component','power'), ('31130','34879','component','health'), ('31131','34879','component','power'), ('31132','34880','component','power'), ('31133','34880','component','temperature'), ('31134','34881','component','humidity'), ('31135','34881','component','power'), ('31136','34882','component','health'), ('31137','34882','component','power'), ('31138','34883','component','power'), ('31139','34883','component','temperature'), ('31140','34884','component','power'), ('31141','34885','component','power'), ('31142','34886','component','power'), ('31143','34887','component','power'), ('31144','34888','component','power'), ('31145','34889','component','power'), ('31146','34890','component','health'), ('31147','34890','component','power'), ('31148','34891','component','system'), ('31149','34892','component','inventory'), ('31150','34893','component','system'), ('31151','34894','component','system'), ('31152','34895','component','inventory'), ('31153','34896','component','system'), ('31154','34897','component','system'), ('31155','34898','component','system'), ('31156','34899','component','network'), ('31157','34900','component','power'), ('31158','34901','component','power'), ('31159','34902','component','inventory'), ('31160','34903','component','power'), ('31161','34904','component','power'), ('31162','34905','component','power'), ('31163','34906','component','power'), ('31164','34907','component','power'), ('31165','34908','component','temperature'), ('31166','34909','component','health'), ('31167','34909','component','power'), ('31168','34910','component','power'), ('31169','34911','component','power'), ('31170','34912','component','inventory'), ('31171','34913','component','health'), ('31172','34913','component','network'), ('31173','34920','component','inventory'), ('31174','34921','component','inventory'), ('31175','34921','component','power'), ('31176','34922','component','health'), ('31177','34922','component','power'), ('31178','34923','component','health'), ('31179','34923','component','power'), ('31180','34924','component','temperature'), ('31181','34925','component','inventory'), ('31182','34926','component','humidity'), ('31183','34926','component','power'), ('31184','34927','component','health'), ('31185','34927','component','power'), ('31186','34928','component','power'), ('31187','34928','component','temperature'), ('31188','34929','component','humidity'), ('31189','34929','component','power'), ('31190','34930','component','health'), ('31191','34930','component','power'), ('31192','34931','component','power'), ('31193','34931','component','temperature'), ('31194','34932','component','power'), ('31195','34933','component','power'), ('31196','34934','component','power'), ('31197','34935','component','power'), ('31198','34936','component','power'), ('31199','33691','component','health'), ('31200','33691','component','system'), ('31201','33692','component','storage'), ('31202','33693','component','storage'), ('31203','33694','component','system'), ('31204','42598','component','health'), ('31205','42598','component','network'), ('31206','42599','component','health'), ('31207','42599','component','network'), ('31208','42600','component','health'), ('31209','42600','component','network'), ('31210','42601','component','network'), ('31211','42602','component','system'), ('31212','42603','component','system'), ('31213','42604','component','system'), ('31214','42605','component','system'), ('31215','42606','component','system'), ('31216','42607','component','system'), ('31217','42608','component','health'), ('31218','42608','component','network'), ('31219','33703','bbu','{#ID}'), ('31220','33703','component','health'), ('31221','33703','component','power'), ('31222','33703','location','{#LOCATION}'), ('31223','33704','bbu','{#ID}'), ('31224','33704','component','health'), ('31225','33704','component','power'), ('31226','33704','location','{#LOCATION}'), ('31227','33705','component','cpu'), ('31228','33705','controller','{#ID}'), ('31229','33706','component','health'), ('31230','33706','controller','{#ID}'), ('31231','33707','component','memory'), ('31232','33707','controller','{#ID}'), ('31233','33708','component','system'), ('31234','33708','controller','{#ID}'), ('31235','33709','component','health'), ('31236','33709','controller','{#ID}'), ('31237','33710','component','health'), ('31238','33710','disk','{#MODEL}'), ('31239','33710','location','{#LOCATION}'), ('31240','33711','component','health'), ('31241','33711','disk','{#MODEL}'), ('31242','33711','location','{#LOCATION}'), ('31243','33712','component','health'), ('31244','33712','disk','{#MODEL}'), ('31245','33712','location','{#LOCATION}'), ('31246','33713','component','environment'), ('31247','33713','disk','{#MODEL}'), ('31248','33713','location','{#LOCATION}'), ('31249','33714','component','health'), ('31250','33714','enclosure','{#NAME}'), ('31251','33715','component','health'), ('31252','33715','enclosure','{#NAME}'), ('31253','33716','component','environment'), ('31254','33716','enclosure','{#NAME}'), ('31255','33717','component','health'), ('31256','33717','fan','{#ID}'), ('31257','33717','location','{#LOCATION}'), ('31258','33718','component','health'), ('31259','33718','fan','{#ID}'), ('31260','33718','location','{#LOCATION}'), ('31261','33719','component','operations'), ('31262','33719','lun','{#NAME}'), ('31263','33720','component','operations'), ('31264','33720','lun','{#NAME}'), ('31265','33721','component','operations'), ('31266','33721','lun','{#NAME}'), ('31267','33722','component','operations'), ('31268','33722','lun','{#NAME}'), ('31269','33723','component','traffic'), ('31270','33723','lun','{#NAME}'), ('31271','33724','component','operations'), ('31272','33724','lun','{#NAME}'), ('31273','33725','component','traffic'), ('31274','33725','lun','{#NAME}'), ('31275','33726','component','operations'), ('31276','33726','lun','{#NAME}'), ('31277','33727','component','traffic'), ('31278','33727','lun','{#NAME}'), ('31279','33728','component','traffic'), ('31280','33728','lun','{#NAME}'), ('31281','33729','component','health'), ('31282','33729','lun','{#NAME}'), ('31283','33730','component','cpu'), ('31284','33730','node','{#NODE}'), ('31285','33731','component','operations'), ('31286','33731','node','{#NODE}'), ('31287','33732','component','operations'), ('31288','33732','node','{#NODE}'), ('31289','33733','component','traffic'), ('31290','33733','node','{#NODE}'), ('31291','33734','component','operations'), ('31292','33734','node','{#NODE}'), ('31293','33735','component','traffic'), ('31294','33735','node','{#NODE}'), ('31295','33736','component','operations'), ('31296','33736','node','{#NODE}'), ('31297','33737','component','traffic'), ('31298','33737','node','{#NODE}'), ('31299','33738','component','storage'), ('31300','33738','pool','{#NAME}'), ('31301','33739','component','storage'), ('31302','33739','pool','{#NAME}'), ('31303','33740','component','health'), ('31304','33740','pool','{#NAME}'), ('31305','33741','component','health'), ('31306','33741','pool','{#NAME}'), ('31307','33742','component','storage'), ('31308','33742','pool','{#NAME}'), ('31309','33743','component','storage'), ('31310','33743','pool','{#NAME}'), ('31311','34226','component','raw'), ('31312','34227','component','cluster'), ('31313','34227','component','latency'), ('31314','34228','component','raw'), ('31315','34229','component','raw'), ('31316','34230','component','raw'), ('31317','34231','component','raw'), ('31318','34232','component','raw'), ('31319','34233','component','raw'), ('31320','34234','component','raw'), ('31321','34235','component','raw'), ('31322','34236','component','cluster'), ('31323','34236','component','latency'), ('31324','34237','component','cluster'), ('31325','34237','component','latency'), ('31326','34238','component','raw'), ('31327','34239','component','cluster'), ('31328','34239','component','latency'), ('31329','34240','component','cluster'), ('31330','34241','component','cluster'), ('31331','34242','component','cluster'), ('31332','34243','component','cluster'), ('31333','34243','component','iops'), ('31334','34244','component','cluster'), ('31335','34244','component','iops'), ('31336','34245','component','cluster'), ('31337','34245','component','iops'), ('31338','34246','component','cluster'), ('31339','34246','component','iops'), ('31340','34247','component','cluster'), ('31341','34247','component','iops'), ('31342','34248','component','system'), ('31343','34249','component','cluster'), ('31344','34249','component','throughput'), ('31345','34250','component','cluster'), ('31346','34250','component','iops'), ('31347','34251','component','cluster'), ('31348','34251','component','throughput'), ('31349','34252','component','cluster'), ('31350','34252','component','throughput'), ('31351','34253','component','cluster'), ('31352','34253','component','throughput'), ('31353','34254','component','cluster'), ('31354','34254','component','latency'), ('31355','34255','component','cluster'), ('31356','34255','component','latency'), ('31357','34256','component','cluster'), ('31358','34256','component','iops'), ('31359','34257','component','cluster'), ('31360','34257','component','latency'), ('31361','34258','component','cluster'), ('31362','34258','component','iops'), ('31363','34259','component','cluster'), ('31364','34259','component','latency'), ('31365','34269','component','latency'), ('31366','34269','component','volume'), ('31367','34269','volume','{#VOLUMENAME}'), ('31368','34270','component','latency'), ('31369','34270','component','volume'), ('31370','34270','volume','{#VOLUMENAME}'), ('31371','34271','component','latency'), ('31372','34271','component','volume'), ('31373','34271','volume','{#VOLUMENAME}'), ('31374','34272','component','latency'), ('31375','34272','component','volume'), ('31376','34272','volume','{#VOLUMENAME}'), ('31377','34273','chassis','{#ID}'), ('31378','34273','component','chassis'), ('31379','34274','component','disk'), ('31380','34274','disk','{#DISKNAME}'), ('31381','34274','node','{#NODENAME}'), ('31382','34275','chassis','{#CHASSISID}'), ('31383','34275','component','fru'), ('31384','34275','fru','{#FRUID}'), ('31385','34276','component','lun'), ('31386','34276','lun','{#LUNNAME}'), ('31387','34276','svm','{#SVMNAME}'), ('31388','34277','component','lun'), ('31389','34277','lun','{#LUNNAME}'), ('31390','34277','svm','{#SVMNAME}'), ('31391','34278','component','lun'), ('31392','34278','lun','{#LUNNAME}'), ('31393','34278','svm','{#SVMNAME}'), ('31394','34279','component','lun'), ('31395','34279','lun','{#LUNNAME}'), ('31396','34279','svm','{#SVMNAME}'), ('31397','34280','component','node'), ('31398','34280','node','{#NODENAME}'), ('31399','34281','component','node'), ('31400','34281','node','{#NODENAME}'), ('31401','34282','component','node'), ('31402','34282','node','{#NODENAME}'), ('31403','34283','component','node'), ('31404','34283','node','{#NODENAME}'), ('31405','34284','component','node'), ('31406','34284','node','{#NODENAME}'), ('31407','34285','component','node'), ('31408','34285','node','{#NODENAME}'), ('31409','34286','component','interfaces'), ('31410','34286','interfaces','{#ETHPORTNAME}'), ('31411','34286','node','{#NODENAME}'), ('31412','34287','component','fc-port'), ('31413','34287','fc-port','{#FCPORTNAME}'), ('31414','34287','node','{#NODENAME}'), ('31415','34288','component','fc-port'), ('31416','34288','fc-port','{#FCPORTNAME}'), ('31417','34288','node','{#NODENAME}'), ('31418','34289','component','svm'), ('31419','34289','svm','{#SVMNAME}'), ('31420','34290','component','svm'), ('31421','34290','svm','{#SVMNAME}'), ('31422','34291','component','volume'), ('31423','34291','volume','{#VOLUMENAME}'), ('31424','34292','component','throughput'), ('31425','34292','component','volume'), ('31426','34292','volume','{#VOLUMENAME}'), ('31427','34293','component','throughput'), ('31428','34293','component','volume'), ('31429','34293','volume','{#VOLUMENAME}'), ('31430','34294','component','throughput'), ('31431','34294','component','volume'), ('31432','34294','volume','{#VOLUMENAME}'), ('31433','34295','component','throughput'), ('31434','34295','component','volume'), ('31435','34295','volume','{#VOLUMENAME}'), ('31436','34296','component','latency'), ('31437','34296','component','volume'), ('31438','34296','volume','{#VOLUMENAME}'), ('31439','34297','component','latency'), ('31440','34297','component','volume'), ('31441','34297','volume','{#VOLUMENAME}'), ('31442','34298','component','latency'), ('31443','34298','component','volume'), ('31444','34298','volume','{#VOLUMENAME}'), ('31445','34299','component','latency'), ('31446','34299','component','volume'), ('31447','34299','volume','{#VOLUMENAME}'), ('31448','34300','component','volume'), ('31449','34300','volume','{#VOLUMENAME}'), ('31450','34301','component','volume'), ('31451','34301','volume','{#VOLUMENAME}'), ('31452','34302','component','iops'), ('31453','34302','component','volume'), ('31454','34302','volume','{#VOLUMENAME}'), ('31455','34303','component','iops'), ('31456','34303','component','volume'), ('31457','34303','volume','{#VOLUMENAME}'), ('31458','34304','component','iops'), ('31459','34304','component','volume'), ('31460','34304','volume','{#VOLUMENAME}'), ('31461','34305','component','iops'), ('31462','34305','component','volume'), ('31463','34305','volume','{#VOLUMENAME}'), ('31464','34306','component','iops'), ('31465','34306','component','volume'), ('31466','34306','volume','{#VOLUMENAME}'), ('31467','34307','component','iops'), ('31468','34307','component','volume'), ('31469','34307','volume','{#VOLUMENAME}'), ('31470','34308','component','iops'), ('31471','34308','component','volume'), ('31472','34308','volume','{#VOLUMENAME}'), ('31473','34309','component','iops'), ('31474','34309','component','volume'), ('31475','34309','volume','{#VOLUMENAME}'), ('31476','34310','component','volume'), ('31477','34310','volume','{#VOLUMENAME}'), ('31478','34311','component','volume'), ('31479','34311','volume','{#VOLUMENAME}'), ('31480','34312','component','volume'), ('31481','34312','volume','{#VOLUMENAME}'), ('31482','34313','component','volume'), ('31483','34313','volume','{#VOLUMENAME}'), ('31484','33348','component','storage'), ('31485','33349','component','storage'), ('31486','33350','component','system'), ('31487','33351','component','system'), ('31488','42609','component','health'), ('31489','42609','component','network'), ('31490','42610','component','health'), ('31491','42610','component','network'), ('31492','42611','component','health'), ('31493','42611','component','network'), ('31494','42612','component','network'), ('31495','42613','component','system'), ('31496','42614','component','system'), ('31497','42615','component','system'), ('31498','42616','component','system'), ('31499','42617','component','system'), ('31500','42618','component','system'), ('31501','42619','component','health'), ('31502','42619','component','network'), ('31503','33357','component','node'), ('31504','33357','node','{#NODE.NAME}'), ('31505','33358','component','node'), ('31506','33358','node','{#NODE.NAME}'), ('31507','33359','component','node'), ('31508','33359','node','{#NODE.NAME}'), ('31509','33360','component','node'), ('31510','33360','node','{#NODE.NAME}'), ('31511','33361','component','node'), ('31512','33361','node','{#NODE.NAME}'), ('31513','33362','component','health'), ('31514','33362','component','node'), ('31515','33362','node','{#NODE.NAME}'), ('31516','33363','component','node'), ('31517','33363','node','{#NODE.NAME}'), ('31518','33364','component','node'), ('31519','33364','node','{#NODE.NAME}'), ('31520','33365','component','node'), ('31521','33365','node','{#NODE.NAME}'), ('31522','33366','component','node'), ('31523','33366','node','{#NODE.NAME}'), ('31524','33367','component','node'), ('31525','33367','node','{#NODE.NAME}'), ('31526','33368','component','cpu'), ('31527','33368','node','{#NODE.NAME}'), ('31528','33369','component','filesystem'), ('31529','33369','filesystem','{#FSNAME}'), ('31530','33369','vserver','{#VSERVER}'), ('31531','33370','component','filesystem'), ('31532','33370','filesystem','{#FSNAME}'), ('31533','33370','vserver','{#VSERVER}'), ('31534','33371','component','filesystem'), ('31535','33371','filesystem','{#FSNAME}'), ('31536','33371','vserver','{#VSERVER}'), ('31537','33372','component','filesystem'), ('31538','33372','filesystem','{#FSNAME}'), ('31539','33372','vserver','{#VSERVER}'), ('31540','33373','component','filesystem'), ('31541','33373','filesystem','{#FSNAME}'), ('31542','33373','vserver','{#VSERVER}'), ('31543','33374','component','filesystem'), ('31544','33374','filesystem','{#FSNAME}'), ('31545','33374','vserver','{#VSERVER}'), ('31546','33375','component','ha'), ('31547','33375','node','{#NODE.NAME}'), ('31548','33376','component','ha'), ('31549','33376','node','{#NODE.NAME}'), ('31550','33377','component','network'), ('31551','33377','description','{#IFDESCR}'), ('31552','33377','interface','{#IFNAME}'), ('31553','33378','component','network'), ('31554','33378','description','{#IFDESCR}'), ('31555','33378','interface','{#IFNAME}'), ('31556','33379','component','network'), ('31557','33379','description','{#IFDESCR}'), ('31558','33379','interface','{#IFNAME}'), ('31559','33380','component','network'), ('31560','33380','description','{#IFDESCR}'), ('31561','33380','interface','{#IFNAME}'), ('31562','33381','component','network'), ('31563','33381','description','{#IFDESCR}'), ('31564','33381','interface','{#IFNAME}'), ('31565','33382','component','network'), ('31566','33382','description','{#IFDESCR}'), ('31567','33382','interface','{#IFNAME}'), ('31568','33383','component','network'), ('31569','33383','description','{#IFDESCR}'), ('31570','33383','interface','{#IFNAME}'), ('31571','33384','component','network'), ('31572','33384','description','{#IFDESCR}'), ('31573','33384','interface','{#IFNAME}'), ('31574','33385','component','network'), ('31575','33385','description','{#IFDESCR}'), ('31576','33385','interface','{#IFNAME}'), ('31577','33386','component','network'), ('31578','33386','description','{#IFDESCR}'), ('31579','33386','interface','{#IFNAME}'), ('31580','33387','component','network'), ('31581','33387','description','{#IFDESCR}'), ('31582','33387','interface','{#IFNAME}'), ('31583','33388','component','network'), ('31584','33388','description','{#IFDESCR}'), ('31585','33388','interface','{#IFNAME}'), ('31586','30685','component','raw'), ('31587','30688','component','environment'), ('31588','30688','sensor','{#SENSOR_TYPE}'), ('31589','30689','component','environment'), ('31590','30689','sensor','{#SENSOR_TYPE}'), ('31591','36160','component','system'), ('31592','36161','component','system'), ('31593','36162','component','system'), ('31594','36163','component','system'), ('31595','36164','component','system'), ('31596','36165','component','system'), ('31597','36166','component','network'), ('31598','36167','component','health'), ('31599','36167','component','network'), ('31600','36178','component','array'), ('31601','36178','component','disk'), ('31602','36178','component','storage'), ('31603','36179','component','array'), ('31604','36179','component','disk'), ('31605','36179','component','storage'), ('31606','36180','component','array'), ('31607','36180','component','disk'), ('31608','36180','component','storage'), ('31609','36181','component','fan'), ('31610','36182','component','network'), ('31611','36182','description','{#IFALIAS}'), ('31612','36182','interface','{#IFNAME}'), ('31613','36183','component','network'), ('31614','36183','description','{#IFALIAS}'), ('31615','36183','interface','{#IFNAME}'), ('31616','36184','component','network'), ('31617','36184','description','{#IFALIAS}'), ('31618','36184','interface','{#IFNAME}'), ('31619','36185','component','network'), ('31620','36185','description','{#IFALIAS}'), ('31621','36185','interface','{#IFNAME}'), ('31622','36186','component','network'), ('31623','36186','description','{#IFALIAS}'), ('31624','36186','interface','{#IFNAME}'), ('31625','36187','component','network'), ('31626','36187','description','{#IFALIAS}'), ('31627','36187','interface','{#IFNAME}'), ('31628','36188','component','network'), ('31629','36188','description','{#IFALIAS}'), ('31630','36188','interface','{#IFNAME}'), ('31631','36189','component','network'), ('31632','36189','description','{#IFALIAS}'), ('31633','36189','interface','{#IFNAME}'), ('31634','36190','component','network'), ('31635','36190','description','{#IFALIAS}'), ('31636','36190','interface','{#IFNAME}'), ('31637','36191','component','network'), ('31638','36191','description','{#IFALIAS}'), ('31639','36191','interface','{#IFNAME}'), ('31640','36192','component','network'), ('31641','36192','description','{#IFALIAS}'), ('31642','36192','interface','{#IFNAME}'), ('31643','36193','component','network'), ('31644','36193','description','{#IFALIAS}'), ('31645','36193','interface','{#IFNAME}'), ('31646','36194','component','network'), ('31647','36194','description','{#IFALIAS}'), ('31648','36194','interface','{#IFNAME}'), ('31649','36195','component','network'), ('31650','36195','description','{#IFALIAS}'), ('31651','36195','interface','{#IFNAME}'), ('31652','36196','component','disk'), ('31653','36196','component','storage'), ('31654','36197','component','disk'), ('31655','36197','component','storage'), ('31656','36198','component','disk'), ('31657','36198','component','storage'), ('31658','36199','component','disk'), ('31659','36199','component','storage'), ('31660','36200','component','disk'), ('31661','36200','component','storage'), ('31662','36201','component','power'), ('31663','36202','component','temperature'), ('31664','36203','component','temperature'), ('31665','36204','component','temperature'), ('31666','36205','component','temperature'), ('31667','36206','component','temperature'), ('31668','36207','component','system'), ('31669','36208','component','system'), ('31670','36209','component','system'), ('31671','36210','component','disk'), ('31672','36210','component','storage'), ('31673','36211','component','disk'), ('31674','36211','component','storage'), ('31675','36212','component','disk'), ('31676','36212','component','storage'), ('31677','42620','component','health'), ('31678','42620','component','network'), ('31679','42621','component','health'), ('31680','42621','component','network'), ('31681','42622','component','health'), ('31682','42622','component','network'), ('31683','42623','component','network'), ('31684','42624','component','system'), ('31685','42625','component','system'), ('31686','42626','component','system'), ('31687','42627','component','system'), ('31688','42628','component','system'), ('31689','42629','component','system'), ('31690','42630','component','health'), ('31691','42630','component','network'), ('31692','30066','component','temperature'), ('31693','30067','component','temperature'), ('31694','30068','component','temperature'), ('31695','30069','component','temperature'), ('31696','30070','component','temperature'), ('31697','30071','component','power'), ('31698','30072','component','system'), ('31699','30073','component','system'), ('31700','30074','component','system'), ('31701','30075','component','fan'), ('31702','30076','component','disk'), ('31703','30076','component','storage'), ('31704','30077','component','disk'), ('31705','30077','component','storage'), ('31706','30078','component','disk'), ('31707','30078','component','storage'), ('31708','30079','component','disk'), ('31709','30079','component','storage'), ('31710','30080','component','disk'), ('31711','30080','component','storage'), ('31712','30081','component','disk'), ('31713','30081','component','storage'), ('31714','30082','component','disk'), ('31715','30082','component','storage'), ('31716','30083','component','array'), ('31717','30083','component','disk'), ('31718','30083','component','storage'), ('31719','30084','component','array'), ('31720','30084','component','disk'), ('31721','30084','component','storage'), ('31722','30085','component','array'), ('31723','30085','component','disk'), ('31724','30085','component','storage'), ('31726','36214','component','health'), ('31727','36214','component','system'), ('31728','36215','component','system'), ('31729','36216','component','system'), ('31730','36217','component','system'), ('31731','36218','component','system'), ('31780','36255','component','system'), ('31781','36256','component','system'), ('31782','36257','component','system'), ('31783','36258','component','system'), ('31784','36259','component','system'), ('31785','36260','component','system'), ('31786','36261','component','system'), ('31787','36262','component','system'), ('31788','36263','component','health'), ('31789','36263','component','system'), ('31790','36264','component','system'), ('31792','36266','component','network'), ('31793','36267','component','health'), ('31794','36267','component','system'), ('31797','36276','component','diskarray'), ('31798','36276','component','storage'), ('31799','36277','component','diskarray'), ('31800','36277','component','storage'), ('31803','36280','component','physicaldisk'), ('31804','36280','component','storage'), ('31805','36281','component','physicaldisk'), ('31806','36281','component','storage'), ('31807','36282','component','physicaldisk'), ('31808','36282','component','storage'), ('31809','36283','component','physicaldisk'), ('31810','36283','component','storage'), ('31811','36284','component','physicaldisk'), ('31812','36284','component','storage'), ('31813','36285','component','physicaldisk'), ('31814','36285','component','storage'), ('31815','36286','component','psu'), ('31816','36287','component','temperature'), ('31817','36288','component','temperature'), ('31818','36289','component','storage'), ('31819','36289','component','virtualdisk'), ('31822','36291','component','storage'), ('31823','36291','component','virtualdisk'), ('31824','36292','component','storage'), ('31825','36292','component','virtualdisk'), ('31826','36293','component','storage'), ('31827','36293','component','virtualdisk'), ('31831','36296','component','health'), ('31832','36296','component','system'), ('31833','36297','component','system'), ('31834','36298','component','system'), ('31835','36299','component','system'), ('31836','36300','component','health'), ('31837','36300','component','system'), ('31886','36337','component','system'), ('31887','36338','component','system'), ('31888','36339','component','system'), ('31889','36340','component','system'), ('31890','36341','component','system'), ('31891','36342','component','system'), ('31892','36343','component','system'), ('31893','36344','component','system'), ('31894','36345','component','health'), ('31895','36345','component','system'), ('31896','36346','component','system'), ('31898','36348','component','network'), ('31899','36349','component','health'), ('31900','36349','component','system'), ('31903','36358','component','diskarray'), ('31904','36358','component','storage'), ('31905','36359','component','diskarray'), ('31906','36359','component','storage'), ('31909','36362','component','physicaldisk'), ('31910','36362','component','storage'), ('31911','36363','component','physicaldisk'), ('31912','36363','component','storage'), ('31913','36364','component','physicaldisk'), ('31914','36364','component','storage'), ('31915','36365','component','physicaldisk'), ('31916','36365','component','storage'), ('31917','36366','component','physicaldisk'), ('31918','36366','component','storage'), ('31919','36367','component','physicaldisk'), ('31920','36367','component','storage'), ('31921','36368','component','psu'), ('31922','36369','component','temperature'), ('31923','36370','component','temperature'), ('31924','36371','component','storage'), ('31925','36371','component','virtualdisk'), ('31928','36373','component','storage'), ('31929','36373','component','virtualdisk'), ('31930','36374','component','storage'), ('31931','36374','component','virtualdisk'), ('31932','36375','component','storage'), ('31933','36375','component','virtualdisk'), ('31937','36378','component','health'), ('31938','36378','component','system'), ('31939','36379','component','system'), ('31940','36380','component','system'), ('31941','36381','component','system'), ('31942','36382','component','health'), ('31943','36382','component','system'), ('31992','36419','component','system'), ('31993','36420','component','system'), ('31994','36421','component','system'), ('31995','36422','component','system'), ('31996','36423','component','system'), ('31997','36424','component','system'), ('31998','36425','component','system'), ('31999','36426','component','system'), ('32000','36427','component','health'), ('32001','36427','component','system'), ('32002','36428','component','system'), ('32004','36430','component','network'), ('32005','36431','component','health'), ('32006','36431','component','system'), ('32009','36440','component','diskarray'), ('32010','36440','component','storage'), ('32011','36441','component','diskarray'), ('32012','36441','component','storage'), ('32015','36444','component','physicaldisk'), ('32016','36444','component','storage'), ('32017','36445','component','physicaldisk'), ('32018','36445','component','storage'), ('32019','36446','component','physicaldisk'), ('32020','36446','component','storage'), ('32021','36447','component','physicaldisk'), ('32022','36447','component','storage'), ('32023','36448','component','physicaldisk'), ('32024','36448','component','storage'), ('32025','36449','component','physicaldisk'), ('32026','36449','component','storage'), ('32027','36450','component','psu'), ('32028','36451','component','temperature'), ('32029','36452','component','temperature'), ('32030','36453','component','storage'), ('32031','36453','component','virtualdisk'), ('32034','36455','component','storage'), ('32035','36455','component','virtualdisk'), ('32036','36456','component','storage'), ('32037','36456','component','virtualdisk'), ('32038','36457','component','storage'), ('32039','36457','component','virtualdisk'), ('32043','36460','component','health'), ('32044','36460','component','system'), ('32045','36461','component','system'), ('32046','36462','component','system'), ('32047','36463','component','system'), ('32048','36464','component','health'), ('32049','36464','component','system'), ('32098','36501','component','system'), ('32099','36502','component','system'), ('32100','36503','component','system'), ('32101','36504','component','system'), ('32102','36505','component','system'), ('32103','36506','component','system'), ('32104','36507','component','system'), ('32105','36508','component','system'), ('32106','36509','component','health'), ('32107','36509','component','system'), ('32108','36510','component','system'), ('32110','36512','component','network'), ('32111','36513','component','health'), ('32112','36513','component','system'), ('32115','36522','component','diskarray'), ('32116','36522','component','storage'), ('32117','36523','component','diskarray'), ('32118','36523','component','storage'), ('32121','36526','component','physicaldisk'), ('32122','36526','component','storage'), ('32123','36527','component','physicaldisk'), ('32124','36527','component','storage'), ('32125','36528','component','physicaldisk'), ('32126','36528','component','storage'), ('32127','36529','component','physicaldisk'), ('32128','36529','component','storage'), ('32129','36530','component','physicaldisk'), ('32130','36530','component','storage'), ('32131','36531','component','physicaldisk'), ('32132','36531','component','storage'), ('32133','36532','component','psu'), ('32134','36533','component','temperature'), ('32135','36534','component','temperature'), ('32136','36535','component','storage'), ('32137','36535','component','virtualdisk'), ('32140','36537','component','storage'), ('32141','36537','component','virtualdisk'), ('32142','36538','component','storage'), ('32143','36538','component','virtualdisk'), ('32144','36539','component','storage'), ('32145','36539','component','virtualdisk'), ('32159','42634','component','network'), ('32166','42641','component','health'), ('32210','36541','component','system'), ('32211','36542','component','system'), ('32212','36543','component','system'), ('32213','36544','component','system'), ('32214','36545','component','system'), ('32215','36546','component','system'), ('32216','36547','component','system'), ('32217','36548','component','temperature'), ('32218','36549','component','health'), ('32219','36549','component','system'), ('32220','36550','component','system'), ('32221','36551','component','network'), ('32222','36552','component','health'), ('32223','36552','component','system'), ('32224','36567','component','diskarray'), ('32225','36567','component','storage'), ('32226','36568','component','diskarray'), ('32227','36568','component','storage'), ('32228','36569','component','diskarray'), ('32229','36569','component','storage'), ('32230','36570','component','diskarray'), ('32231','36570','component','storage'), ('32232','36571','component','fan'), ('32233','36572','component','network'), ('32234','36573','component','physicaldisk'), ('32235','36573','component','storage'), ('32236','36574','component','physicaldisk'), ('32237','36574','component','storage'), ('32238','36575','component','physicaldisk'), ('32239','36575','component','storage'), ('32240','36576','component','physicaldisk'), ('32241','36576','component','storage'), ('32242','36577','component','physicaldisk'), ('32243','36577','component','storage'), ('32244','36578','component','physicaldisk'), ('32245','36578','component','storage'), ('32246','36579','component','psu'), ('32247','36580','component','temperature'), ('32248','36581','component','temperature'), ('32249','36582','component','cpu'), ('32250','36582','component','temperature'), ('32251','36583','component','cpu'), ('32252','36583','component','temperature'), ('32253','36584','component','temperature'), ('32254','36585','component','temperature'), ('32255','36586','component','temperature'), ('32256','36587','component','temperature'), ('32257','36588','component','temperature'), ('32258','36589','component','memory'), ('32259','36589','component','temperature'), ('32260','36590','component','memory'), ('32261','36590','component','temperature'), ('32262','36591','component','psu'), ('32263','36591','component','temperature'), ('32264','36592','component','psu'), ('32265','36592','component','temperature'), ('32266','36593','component','temperature'), ('32267','36594','component','temperature'), ('32268','36595','component','storage'), ('32269','36595','component','virtualdisk'), ('32270','36596','component','storage'), ('32271','36596','component','virtualdisk'), ('32272','36597','component','storage'), ('32273','36597','component','virtualdisk'), ('32274','36598','component','system'), ('32275','36599','component','system'), ('32276','36600','component','system'), ('32277','36601','component','system'), ('32278','36602','component','system'), ('32279','36603','component','system'), ('32280','36604','component','system'), ('32281','36605','component','temperature'), ('32282','36606','component','health'), ('32283','36606','component','system'), ('32284','36607','component','system'), ('32285','36608','component','network'), ('32286','36609','component','health'), ('32287','36609','component','system'), ('32288','36624','component','diskarray'), ('32289','36624','component','storage'), ('32290','36625','component','diskarray'), ('32291','36625','component','storage'), ('32292','36626','component','diskarray'), ('32293','36626','component','storage'), ('32294','36627','component','diskarray'), ('32295','36627','component','storage'), ('32296','36628','component','fan'), ('32297','36629','component','network'), ('32298','36630','component','physicaldisk'), ('32299','36630','component','storage'), ('32300','36631','component','physicaldisk'), ('32301','36631','component','storage'), ('32302','36632','component','physicaldisk'), ('32303','36632','component','storage'), ('32304','36633','component','physicaldisk'), ('32305','36633','component','storage'), ('32306','36634','component','physicaldisk'), ('32307','36634','component','storage'), ('32308','36635','component','physicaldisk'), ('32309','36635','component','storage'), ('32310','36636','component','psu'), ('32311','36637','component','temperature'), ('32312','36638','component','temperature'), ('32313','36639','component','cpu'), ('32314','36639','component','temperature'), ('32315','36640','component','cpu'), ('32316','36640','component','temperature'), ('32317','36641','component','temperature'), ('32318','36642','component','temperature'), ('32319','36643','component','temperature'), ('32320','36644','component','temperature'), ('32321','36645','component','temperature'), ('32322','36646','component','memory'), ('32323','36646','component','temperature'), ('32324','36647','component','memory'), ('32325','36647','component','temperature'), ('32326','36648','component','psu'), ('32327','36648','component','temperature'), ('32328','36649','component','psu'), ('32329','36649','component','temperature'), ('32330','36650','component','temperature'), ('32331','36651','component','temperature'), ('32332','36652','component','storage'), ('32333','36652','component','virtualdisk'), ('32334','36653','component','storage'), ('32335','36653','component','virtualdisk'), ('32336','36654','component','storage'), ('32337','36654','component','virtualdisk'), ('32338','36655','component','system'), ('32339','36656','component','system'), ('32340','36657','component','system'), ('32341','36658','component','system'), ('32342','36659','component','system'), ('32343','36660','component','system'), ('32344','36661','component','system'), ('32345','36662','component','temperature'), ('32346','36663','component','health'), ('32347','36663','component','system'), ('32348','36664','component','system'), ('32349','36665','component','network'), ('32350','36666','component','health'), ('32351','36666','component','system'), ('32352','36681','component','diskarray'), ('32353','36681','component','storage'), ('32354','36682','component','diskarray'), ('32355','36682','component','storage'), ('32356','36683','component','diskarray'), ('32357','36683','component','storage'), ('32358','36684','component','diskarray'), ('32359','36684','component','storage'), ('32360','36685','component','fan'), ('32361','36686','component','network'), ('32362','36687','component','physicaldisk'), ('32363','36687','component','storage'), ('32364','36688','component','physicaldisk'), ('32365','36688','component','storage'), ('32366','36689','component','physicaldisk'), ('32367','36689','component','storage'), ('32368','36690','component','physicaldisk'), ('32369','36690','component','storage'), ('32370','36691','component','physicaldisk'), ('32371','36691','component','storage'), ('32372','36692','component','physicaldisk'), ('32373','36692','component','storage'), ('32374','36693','component','psu'), ('32375','36694','component','temperature'), ('32376','36695','component','temperature'), ('32377','36696','component','cpu'), ('32378','36696','component','temperature'), ('32379','36697','component','cpu'), ('32380','36697','component','temperature'), ('32381','36698','component','temperature'), ('32382','36699','component','temperature'), ('32383','36700','component','temperature'), ('32384','36701','component','temperature'), ('32385','36702','component','temperature'), ('32386','36703','component','memory'), ('32387','36703','component','temperature'), ('32388','36704','component','memory'), ('32389','36704','component','temperature'), ('32390','36705','component','psu'), ('32391','36705','component','temperature'), ('32392','36706','component','psu'), ('32393','36706','component','temperature'), ('32394','36707','component','temperature'), ('32395','36708','component','temperature'), ('32396','36709','component','storage'), ('32397','36709','component','virtualdisk'), ('32398','36710','component','storage'), ('32399','36710','component','virtualdisk'), ('32400','36711','component','storage'), ('32401','36711','component','virtualdisk'), ('32402','36712','component','system'), ('32403','36713','component','system'), ('32404','36714','component','system'), ('32405','36715','component','system'), ('32406','36716','component','system'), ('32407','36717','component','system'), ('32408','36718','component','system'), ('32409','36719','component','temperature'), ('32410','36720','component','health'), ('32411','36720','component','system'), ('32412','36721','component','system'), ('32413','36722','component','network'), ('32414','36723','component','health'), ('32415','36723','component','system'), ('32416','36738','component','diskarray'), ('32417','36738','component','storage'), ('32418','36739','component','diskarray'), ('32419','36739','component','storage'), ('32420','36740','component','diskarray'), ('32421','36740','component','storage'), ('32422','36741','component','diskarray'), ('32423','36741','component','storage'), ('32424','36742','component','fan'), ('32425','36743','component','network'), ('32426','36744','component','physicaldisk'), ('32427','36744','component','storage'), ('32428','36745','component','physicaldisk'), ('32429','36745','component','storage'), ('32430','36746','component','physicaldisk'), ('32431','36746','component','storage'), ('32432','36747','component','physicaldisk'), ('32433','36747','component','storage'), ('32434','36748','component','physicaldisk'), ('32435','36748','component','storage'), ('32436','36749','component','physicaldisk'), ('32437','36749','component','storage'), ('32438','36750','component','psu'), ('32439','36751','component','temperature'), ('32440','36752','component','temperature'), ('32441','36753','component','cpu'), ('32442','36753','component','temperature'), ('32443','36754','component','cpu'), ('32444','36754','component','temperature'), ('32445','36755','component','temperature'), ('32446','36756','component','temperature'), ('32447','36757','component','temperature'), ('32448','36758','component','temperature'), ('32449','36759','component','temperature'), ('32450','36760','component','memory'), ('32451','36760','component','temperature'), ('32452','36761','component','memory'), ('32453','36761','component','temperature'), ('32454','36762','component','psu'), ('32455','36762','component','temperature'), ('32456','36763','component','psu'), ('32457','36763','component','temperature'), ('32458','36764','component','temperature'), ('32459','36765','component','temperature'), ('32460','36766','component','storage'), ('32461','36766','component','virtualdisk'), ('32462','36767','component','storage'), ('32463','36767','component','virtualdisk'), ('32464','36768','component','storage'), ('32465','36768','component','virtualdisk'), ('32466','28388','component','temperature'), ('32467','28390','component','system'), ('32468','28391','component','system'), ('32469','29994','component','system'), ('32470','42642','component','health'), ('32471','42642','component','network'), ('32472','42643','component','health'), ('32473','42643','component','network'), ('32474','42644','component','health'), ('32475','42644','component','network'), ('32476','42645','component','network'), ('32477','42646','component','system'), ('32478','42647','component','system'), ('32479','42648','component','system'), ('32480','42649','component','system'), ('32481','42650','component','system'), ('32482','42651','component','system'), ('32483','42652','component','health'), ('32484','42652','component','network'), ('32485','28404','component','temperature'), ('32486','28405','component','temperature'), ('32487','28406','component','temperature'), ('32488','28407','component','temperature'), ('32489','28408','component','temperature'), ('32490','28409','component','temperature'), ('32491','28411','component','power'), ('32492','28412','component','fan'), ('32493','28413','component','array'), ('32494','28413','component','disk'), ('32495','28413','component','storage'), ('32496','28414','component','array'), ('32497','28414','component','disk'), ('32498','28414','component','storage'), ('32499','28415','component','array'), ('32500','28415','component','disk'), ('32501','28415','component','storage'), ('32502','28416','component','array'), ('32503','28416','component','disk'), ('32504','28416','component','storage'), ('32505','28417','component','disk'), ('32506','28417','component','storage'), ('32507','28418','component','disk'), ('32508','28418','component','storage'), ('32509','28419','component','disk'), ('32510','28419','component','storage'), ('32511','28420','component','disk'), ('32512','28420','component','storage'), ('32513','28421','component','disk'), ('32514','28421','component','storage'), ('32515','28422','component','disk'), ('32516','28422','component','storage'), ('32517','28423','component','disk'), ('32518','28423','component','storage'), ('32519','28424','component','disk'), ('32520','28424','component','storage'), ('32521','28425','component','disk'), ('32522','28425','component','storage'), ('32523','33621','component','temperature'), ('32524','33622','component','temperature'), ('32525','33623','component','temperature'), ('32526','33624','component','temperature'), ('32527','33625','component','temperature'), ('32528','33626','component','temperature'), ('32529','33627','component','temperature'), ('32530','33628','component','temperature'), ('32531','33629','component','temperature'), ('32532','28465','component','system'), ('32533','28466','component','system'), ('32534','28467','component','system'), ('32535','42653','component','health'), ('32536','42653','component','network'), ('32537','42654','component','health'), ('32538','42654','component','network'), ('32539','42655','component','health'), ('32540','42655','component','network'), ('32541','42656','component','network'), ('32542','42657','component','system'), ('32543','42658','component','system'), ('32544','42659','component','system'), ('32545','42660','component','system'), ('32546','42661','component','system'), ('32547','42662','component','system'), ('32548','42663','component','health'), ('32549','42663','component','network'), ('32550','28474','component','temperature'), ('32551','28475','component','temperature'), ('32552','28476','component','temperature'), ('32553','28477','component','power'), ('32554','28478','component','fan'), ('32555','28479','component','fan'), ('32556','28480','component','disk'), ('32557','28480','component','storage'), ('32558','28481','component','disk'), ('32559','28481','component','storage'), ('32560','26925','component','system'), ('32561','26925','component','voltage'), ('32562','26926','component','system'), ('32563','26926','component','voltage'), ('32564','26927','component','fan'), ('32565','26927','component','system'), ('32566','26928','component','system'), ('32567','26928','component','temperature'), ('32568','26929','component','system'), ('32569','26929','component','voltage'), ('32570','26930','component','system'), ('32571','26930','component','voltage'), ('32572','26931','component','system'), ('32573','26931','component','voltage'), ('32574','26932','component','system'), ('32575','26932','component','voltage'), ('32576','26933','component','system'), ('32577','26933','component','temperature'), ('32578','26934','component','system'), ('32579','26934','component','voltage'), ('32580','26935','component','fan'), ('32581','26935','component','system'), ('32582','26936','component','fan'), ('32583','26936','component','system'), ('32584','26937','component','system'), ('32585','26937','component','voltage'), ('32586','26938','component','system'), ('32587','26938','component','voltage'), ('32588','26939','component','system'), ('32589','26939','component','voltage'), ('32590','26940','component','system'), ('32591','26940','component','voltage'), ('32592','26941','component','system'), ('32593','26941','component','voltage'), ('32594','26942','component','system'), ('32595','26942','component','voltage'), ('32596','26943','component','system'), ('32597','26943','component','temperature'), ('32598','42664','component','health'), ('32599','42664','component','network'), ('32600','42665','component','health'), ('32601','42665','component','network'), ('32602','42666','component','health'), ('32603','42666','component','network'), ('32604','42667','component','network'), ('32605','42668','component','system'), ('32606','42669','component','system'), ('32607','42670','component','system'), ('32608','42671','component','system'), ('32609','42672','component','system'), ('32610','42673','component','system'), ('32611','42674','component','health'), ('32612','42674','component','network'), ('32613','28495','component','temperature'), ('32614','28496','component','fan'), ('32615','31782','component','health'), ('32616','31782','component','network'), ('32617','31783','component','network'), ('32618','31784','component','raw'), ('32619','31785','component','peers'), ('32620','31786','component','application'), ('32621','31787','component','system'), ('32622','31788','component','system'), ('32623','31789','component','queues'), ('32624','31790','component','peers'), ('32625','31791','component','peers'), ('32626','31792','component','calls'), ('32627','31793','component','peers'), ('32628','31794','component','channels'), ('32629','31795','component','peers'), ('32630','31796','component','peers'), ('32631','31797','component','peers'), ('32632','31798','component','peers'), ('32633','31799','component','peers'), ('32634','31800','component','calls'), ('32635','31801','component','calls'), ('32636','31802','component','peers'), ('32637','33389','component','peers'), ('32638','33390','component','peers'), ('32639','36769','component','channels'), ('32640','36770','component','channels'), ('32641','36771','component','channels'), ('32642','31807','component','channels'), ('32643','31807','trunk','{#OBJECTNAME}'), ('32644','31808','component','health'), ('32645','31808','trunk','{#OBJECTNAME}'), ('32646','31809','component','channels'), ('32647','31809','trunk','{#OBJECTNAME}'), ('32648','31810','component','health'), ('32649','31810','trunk','{#OBJECTNAME}'), ('32650','31811','component','members'), ('32651','31811','queue','{#QUEUE}'), ('32652','31812','component','calls'), ('32653','31812','queue','{#QUEUE}'), ('32654','31813','component','members'), ('32655','31813','queue','{#QUEUE}'), ('32656','31814','component','channels'), ('32657','31814','trunk','{#OBJECTNAME}'), ('32658','31815','component','health'), ('32659','31815','trunk','{#OBJECTNAME}'), ('32660','40059','namespace','{#NAMESPACE}'), ('32661','40060','namespace','{#NAMESPACE}'), ('32662','40061','namespace','{#NAMESPACE}'), ('32663','40062','namespace','{#NAMESPACE}'), ('32664','40063','namespace','{#NAMESPACE}'), ('32665','40064','namespace','{#NAMESPACE}'), ('32666','40065','namespace','{#NAMESPACE}'), ('32667','40066','namespace','{#NAMESPACE}'), ('32668','40067','namespace','{#NAMESPACE}'), ('32669','40068','namespace','{#NAMESPACE}'), ('32670','40069','namespace','{#NAMESPACE}'), ('32671','40070','namespace','{#NAMESPACE}'), ('32672','40071','namespace','{#NAMESPACE}'), ('32673','40072','namespace','{#NAMESPACE}'), ('32674','40073','namespace','{#NAMESPACE}'), ('32675','40074','namespace','{#NAMESPACE}'), ('32676','40075','namespace','{#NAMESPACE}'), ('32721','28585','component','raw'), ('32722','28586','component','system'), ('32723','28587','component','system'), ('32725','28589','component','system'), ('32726','28590','component','system'), ('32727','28591','component','system'), ('32728','28592','component','system'), ('32729','28593','component','system'), ('32730','28594','component','system'), ('32731','28595','component','system'), ('32732','28596','component','system'), ('32733','28597','component','system'), ('32734','28598','component','system'), ('32735','28599','component','system'), ('32736','28600','component','internal-process'), ('32737','28601','component','internal-process'), ('32739','28603','component','internal-process'), ('32741','28605','component','internal-process'), ('32745','28609','component','internal-process'), ('32748','28612','component','internal-process'), ('32749','28613','component','internal-process'), ('32753','31052','component','system'), ('32754','33012','component','internal-process'), ('32757','40185','component','system'), ('32758','40186','component','system'), ('32759','40187','component','system'), ('32760','40188','component','internal-process'), ('32761','40189','component','internal-process'), ('32762','42679','component','network'), ('32763','42679','interface','{#IFNAME}'), ('32766','42681','component','network'), ('32767','42681','interface','{#IFNAME}'), ('32768','42682','component','network'), ('32769','42682','interface','{#IFNAME}'), ('32772','42686','collection','{#JMXNAME}'), ('32773','42686','component','garbage-collector'), ('32774','42687','collection','{#JMXNAME}'), ('32775','42687','component','garbage-collector'), ('32776','42688','component','memory'), ('32777','42688','pool','{#JMXNAME}'), ('32778','42689','component','memory'), ('32779','42689','pool','{#JMXNAME}'), ('32780','42690','component','memory'), ('32781','42690','pool','{#JMXNAME}'), ('32783','42692','component','binding'), ('32784','42693','component','binding'), ('32785','42694','component','binding'), ('32786','42695','component','binding'), ('32787','42696','component','scheduling-algorithm'), ('32788','42697','component','scheduling-algorithm'), ('32789','42698','component','scheduling-algorithm'), ('32790','42699','component','scheduling-algorithm'), ('32791','42700','component','cronjob'), ('32792','42701','component','endpoint'), ('32793','42702','component','job'), ('32794','40036','status','healthy'), ('32795','40043','status','available'), ('32796','40045','status','unavailable'), ('32797','40046','status','updated'), ('32798','40049','status','available'), ('32799','40050','status','not-ready'), ('32800','40053','status','allocatable'), ('32801','40054','status','capacity'), ('32802','40055','status','allocatable'), ('32803','40056','status','capacity'), ('32804','40057','status','allocatable'), ('32805','40058','status','capacity'), ('32806','40059','resource','cpu'), ('32807','40060','phase','failed'), ('32808','40061','status','scheduled'), ('32809','40062','status','ready'), ('32810','40063','phase','unknown'), ('32811','40064','phase','succeeded'), ('32812','40065','phase','running'), ('32813','40066','phase','pending'), ('32814','40067','status','waiting'), ('32815','40068','resource','memory'), ('32816','40069','status','terminated'), ('32817','40070','status','running'), ('32818','40071','status','restarts'), ('32819','40072','status','ready'), ('32820','40073','resource','memory'), ('32821','40074','resource','cpu'), ('32822','40075','status','unschedulable'), ('32833','40086','status','fully-labeled'), ('32834','40087','status','ready'), ('32835','40089','status','desired'), ('32836','40092','status','ready'), ('32837','40093','status','ready'), ('32838','40094','status','updated'), ('32839','42706','component','cronjob'), ('32840','42706','cronjob','{#NAME}'), ('32841','42706','namespace','{#NAMESPACE}'), ('32842','42707','component','cronjob'), ('32843','42707','cronjob','{#NAME}'), ('32844','42707','namespace','{#NAMESPACE}'), ('32845','42708','component','cronjob'), ('32846','42708','cronjob','{#NAME}'), ('32847','42708','namespace','{#NAMESPACE}'), ('32848','42709','component','cronjob'), ('32849','42709','cronjob','{#NAME}'), ('32850','42709','namespace','{#NAMESPACE}'), ('32851','42710','component','cronjob'), ('32852','42710','cronjob','{#NAME}'), ('32853','42710','namespace','{#NAMESPACE}'), ('32854','42711','component','cronjob'), ('32855','42711','cronjob','{#NAME}'), ('32856','42711','namespace','{#NAMESPACE}'), ('32857','42712','component','cronjob'), ('32858','42712','cronjob','{#NAME}'), ('32859','42712','namespace','{#NAMESPACE}'), ('32860','42713','component','cronjob'), ('32861','42713','cronjob','{#NAME}'), ('32862','42713','namespace','{#NAMESPACE}'), ('32863','42714','component','job'), ('32864','42714','job','{#NAME}'), ('32865','42714','namespace','{#NAMESPACE}'), ('32866','42715','component','job'), ('32867','42715','job','{#NAME}'), ('32868','42715','namespace','{#NAMESPACE}'), ('32869','42716','component','job'), ('32870','42716','job','{#NAME}'), ('32871','42716','namespace','{#NAMESPACE}'), ('32872','42717','component','job'), ('32873','42717','job','{#NAME}'), ('32874','42717','namespace','{#NAMESPACE}'), ('32875','42718','component','ephemeral-storage'), ('32876','42718','node','{#NAME}'), ('32877','42718','status','capacity'), ('32878','42719','component','ephemeral-storage'), ('32879','42719','node','{#NAME}'), ('32880','42719','status','capacity'), ('32881','42720','component','pdb'), ('32882','42720','namespace','{#NAMESPACE}'), ('32883','42720','pdb','{#NAME}'), ('32884','42721','component','pdb'), ('32885','42721','namespace','{#NAMESPACE}'), ('32886','42721','pdb','{#NAME}'), ('32887','42722','component','pdb'), ('32888','42722','namespace','{#NAMESPACE}'), ('32889','42722','pdb','{#NAME}'), ('32890','42723','component','pdb'), ('32891','42723','namespace','{#NAMESPACE}'), ('32892','42723','pdb','{#NAME}'), ('32893','42724','component','raw'), ('32894','42725','component','application'), ('32895','42725','component','errors'), ('32896','42727','component','raw'), ('32897','42727','country','{#COUNTRY}'), ('32898','42727','location','{#LOCATION}'), ('32899','42728','component','environment'), ('32900','42728','country','{#COUNTRY}'), ('32901','42728','location','{#LOCATION}'), ('32902','42729','component','environment'), ('32903','42729','country','{#COUNTRY}'), ('32904','42729','location','{#LOCATION}'), ('32905','42730','component','environment'), ('32906','42730','country','{#COUNTRY}'), ('32907','42730','location','{#LOCATION}'), ('32908','42731','component','environment'), ('32909','42731','country','{#COUNTRY}'), ('32910','42731','location','{#LOCATION}'), ('32911','42732','component','environment'), ('32912','42732','country','{#COUNTRY}'), ('32913','42732','location','{#LOCATION}'), ('32914','42733','component','environment'), ('32915','42733','country','{#COUNTRY}'), ('32916','42733','location','{#LOCATION}'), ('32917','42734','component','environment'), ('32918','42734','country','{#COUNTRY}'), ('32919','42734','location','{#LOCATION}'), ('32920','42735','component','environment'), ('32921','42735','country','{#COUNTRY}'), ('32922','42735','location','{#LOCATION}'), ('32923','42736','component','environment'), ('32924','42736','country','{#COUNTRY}'), ('32925','42736','location','{#LOCATION}'), ('32926','42737','component','environment'), ('32927','42737','country','{#COUNTRY}'), ('32928','42737','location','{#LOCATION}'), ('32929','42738','component','system'), ('32930','42739','component','raw'), ('32931','42740','component','raw'), ('32932','42746','component','raw'), ('32933','42747','component','raw'), ('32934','42748','component','raw'), ('32935','42749','component','raw'), ('32936','42750','component','raw'), ('32937','42751','cluster','{#RESOURCE.NAME}'), ('32938','42751','component','system'), ('32939','42752','component','cpu'), ('32940','42752','lxc','{#LXC.ID}'), ('32941','42752','name','{#LXC.NAME}'), ('32942','42752','node','{#NODE.NAME}'), ('32943','42753','component','storage'), ('32944','42753','lxc','{#LXC.ID}'), ('32945','42753','name','{#LXC.NAME}'), ('32946','42753','node','{#NODE.NAME}'), ('32947','42754','component','storage'), ('32948','42754','lxc','{#LXC.ID}'), ('32949','42754','name','{#LXC.NAME}'), ('32950','42754','node','{#NODE.NAME}'), ('32951','42755','component','memory'), ('32952','42755','lxc','{#LXC.ID}'), ('32953','42755','name','{#LXC.NAME}'), ('32954','42755','node','{#NODE.NAME}'), ('32955','42756','component','memory'), ('32956','42756','lxc','{#LXC.ID}'), ('32957','42756','name','{#LXC.NAME}'), ('32958','42756','node','{#NODE.NAME}'), ('32959','42757','component','network'), ('32960','42757','lxc','{#LXC.ID}'), ('32961','42757','name','{#LXC.NAME}'), ('32962','42757','node','{#NODE.NAME}'), ('32963','42758','component','network'), ('32964','42758','lxc','{#LXC.ID}'), ('32965','42758','name','{#LXC.NAME}'), ('32966','42758','node','{#NODE.NAME}'), ('32967','42759','component','system'), ('32968','42760','component','system'), ('32969','42761','component','cpu'), ('32970','42761','node','{#NODE.NAME}'), ('32971','42762','component','storage'), ('32972','42762','node','{#NODE.NAME}'), ('32973','42763','component','system'), ('32974','42764','component','system'), ('32975','42764','node','{#NODE.NAME}'), ('32976','42765','component','storage'), ('32977','42765','node','{#NODE.NAME}'), ('32978','42766','component','storage'), ('32979','42766','node','{#NODE.NAME}'), ('32980','42767','component','storage'), ('32981','42767','node','{#NODE.NAME}'), ('32982','42768','component','system'), ('32983','42769','component','cpu'), ('32984','42769','node','{#NODE.NAME}'), ('32985','42770','component','cluster'), ('32986','42770','node','{#NODE.NAME}'), ('32987','42771','component','network'), ('32988','42771','node','{#NODE.NAME}'), ('32989','42772','component','network'), ('32990','42772','node','{#NODE.NAME}'), ('32991','42773','component','memory'), ('32992','42773','node','{#NODE.NAME}'), ('32993','42774','component','memory'), ('32994','42774','node','{#NODE.NAME}'), ('32995','42775','component','system'), ('32996','42775','node','{#NODE.NAME}'), ('32997','42776','component','cpu'), ('32998','42776','node','{#NODE.NAME}'), ('32999','42777','component','system'), ('33000','42778','component','system'), ('33001','42778','node','{#NODE.NAME}'), ('33002','42779','component','cpu'), ('33003','42779','name','{#QEMU.NAME}'), ('33004','42779','node','{#NODE.NAME}'), ('33005','42779','qemu','{#QEMU.ID}'), ('33006','42780','component','storage'), ('33007','42780','name','{#QEMU.NAME}'), ('33008','42780','node','{#NODE.NAME}'), ('33009','42780','qemu','{#QEMU.ID}'), ('33010','42781','component','storage'), ('33011','42781','name','{#QEMU.NAME}'), ('33012','42781','node','{#NODE.NAME}'), ('33013','42781','qemu','{#QEMU.ID}'), ('33014','42782','component','memory'), ('33015','42782','name','{#QEMU.NAME}'), ('33016','42782','node','{#NODE.NAME}'), ('33017','42782','qemu','{#QEMU.ID}'), ('33018','42783','component','memory'), ('33019','42783','name','{#QEMU.NAME}'), ('33020','42783','node','{#NODE.NAME}'), ('33021','42783','qemu','{#QEMU.ID}'), ('33022','42784','component','network'), ('33023','42784','name','{#QEMU.NAME}'), ('33024','42784','node','{#NODE.NAME}'), ('33025','42784','qemu','{#QEMU.ID}'), ('33026','42785','component','network'), ('33027','42785','name','{#QEMU.NAME}'), ('33028','42785','node','{#NODE.NAME}'), ('33029','42785','qemu','{#QEMU.ID}'), ('33030','42786','component','system'), ('33031','42787','component','system'), ('33032','42788','component','storage'), ('33033','42788','name','{#STORAGE.NAME}'), ('33034','42788','node','{#NODE.NAME}'), ('33035','42789','component','storage'), ('33036','42789','name','{#STORAGE.NAME}'), ('33037','42789','node','{#NODE.NAME}'), ('33038','42790','component','storage'), ('33039','42790','name','{#STORAGE.NAME}'), ('33040','42790','node','{#NODE.NAME}'), ('33041','42791','component','storage'), ('33042','42791','name','{#STORAGE.NAME}'), ('33043','42791','node','{#NODE.NAME}'), ('33044','42792','component','health'), ('33045','42792','component','network'), ('33046','42793','component','memory'), ('33047','42793','component','zfs'), ('33048','42794','component','memory'), ('33049','42794','component','zfs'), ('33050','42795','component','memory'), ('33051','42795','component','zfs'), ('33052','42796','component','memory'), ('33053','42796','component','zfs'), ('33054','42797','component','memory'), ('33055','42797','component','zfs'), ('33056','42798','component','memory'), ('33057','42798','component','zfs'), ('33058','42799','component','memory'), ('33059','42799','component','zfs'), ('33060','42800','component','memory'), ('33061','42800','component','zfs'), ('33062','42801','component','log'), ('33063','42801','component','zfs'), ('33064','42802','component','memory'), ('33065','42802','component','zfs'), ('33066','42803','component','log'), ('33067','42803','component','zfs'), ('33068','42804','component','log'), ('33069','42804','component','zfs'), ('33070','42805','component','memory'), ('33071','42806','component','memory'), ('33072','42807','component','memory'), ('33073','42808','component','memory'), ('33074','42809','component','memory'), ('33075','42810','component','memory'), ('33076','42811','component','memory'), ('33077','42811','component','zfs'), ('33078','42812','component','memory'), ('33079','42812','component','zfs'), ('33080','42813','component','health'), ('33081','42813','component','network'), ('33083','42815','component','health'), ('33084','42815','component','network'), ('33086','42817','component','cpu'), ('33087','42818','component','cpu'), ('33088','42819','component','cpu'), ('33089','42820','component','cpu'), ('33090','42821','component','cpu'), ('33091','42822','component','cpu'), ('33093','42824','component','memory'), ('33094','42824','component','zfs'), ('33095','42825','component','system'), ('33097','42827','component','memory'), ('33098','42827','component','storage'), ('33099','42828','component','memory'), ('33100','42828','component','storage'), ('33101','42829','component','memory'), ('33102','42829','component','storage'), ('33104','42831','component','memory'), ('33105','42831','component','zfs'), ('33106','42832','component','memory'), ('33107','42832','component','zfs'), ('33108','42833','component','health'), ('33109','42833','component','network'), ('33110','42841','component','cpu'), ('33111','42842','component','cpu'), ('33112','42843','component','cpu'), ('33113','42844','component','cpu'), ('33114','42845','component','cpu'), ('33115','42846','component','cpu'), ('33143','42856','component','storage'), ('33144','42856','disk','{#DISK_NAME}'), ('33145','42857','component','storage'), ('33146','42857','dataset','{#DATASET_NAME}'), ('33147','42858','component','storage'), ('33148','42858','dataset','{#DATASET_NAME}'), ('33149','42859','component','storage'), ('33150','42859','dataset','{#DATASET_NAME}'), ('33151','42860','component','storage'), ('33152','42860','dataset','{#DATASET_NAME}'), ('33153','42861','component','storage'), ('33154','42861','pool','{#POOLNAME}'), ('33155','42862','component','health'), ('33156','42862','component','storage'), ('33157','42862','pool','{#POOLNAME}'), ('33158','42863','component','storage'), ('33159','42863','pool','{#POOLNAME}'), ('33160','42864','component','storage'), ('33161','42864','pool','{#POOLNAME}'), ('33162','42865','component','storage'), ('33163','42865','pool','{#POOLNAME}'), ('33164','42866','component','storage'), ('33165','42866','pool','{#POOLNAME}'), ('33166','42867','component','storage'), ('33167','42867','pool','{#POOLNAME}'), ('33168','42868','component','storage'), ('33169','42868','pool','{#POOLNAME}'), ('33170','42869','component','storage'), ('33171','42869','pool','{#POOLNAME}'), ('33172','42870','component','storage'), ('33173','42870','volume','{#ZVOL_NAME}'), ('33174','42871','component','storage'), ('33175','42871','volume','{#ZVOL_NAME}'), ('33176','42872','component','storage'), ('33177','42872','volume','{#ZVOL_NAME}'), ('33178','42873','component','storage'), ('33179','42873','disk','{#DEVNAME}'), ('33180','42874','component','storage'), ('33181','42874','disk','{#DEVNAME}'), ('33182','42875','component','storage'), ('33183','42875','disk','{#DEVNAME}'), ('33184','42876','component','cpu'), ('33185','42877','component','raw'), ('33186','42879','component','health'), ('33187','42880','component','raw'), ('33188','42881','component','queries'), ('33189','42881','database','{#DBNAME}'), ('33190','42882','component','queries'), ('33191','42882','database','{#DBNAME}'), ('33192','42883','component','queries'), ('33193','42883','database','{#DBNAME}'), ('33194','42884','component','queries'), ('33195','42884','database','{#DBNAME}'), ('33196','42885','component','queries'), ('33197','42885','database','{#DBNAME}'), ('33198','42886','component','queries'), ('33199','42886','database','{#DBNAME}'), ('33200','42887','component','queries'), ('33201','42887','database','{#DBNAME}'), ('33202','42888','component','queries'), ('33203','42888','database','{#DBNAME}'), ('33204','42889','component','queries'), ('33205','42889','database','{#DBNAME}'), ('33342','42930','component','health'), ('33343','42930','component','network'), ('33344','42931','component','health'), ('33345','42932','component','health'), ('33346','42933','component','raw'), ('33347','42934','component','sql'), ('33348','42935','component','sql'), ('33349','42936','component','sql'), ('33350','42937','component','sql'), ('33351','42938','component','sql'), ('33352','42939','component','sql'), ('33353','42940','component','sql'), ('33354','42941','component','sql'), ('33355','42942','component','sql'), ('33356','42943','component','sql'), ('33357','42944','component','sql'), ('33358','42945','component','network'), ('33359','42946','component','sql'), ('33360','42947','component','sql'), ('33361','42948','component','sql'), ('33362','42949','component','sql'), ('33363','42950','component','sql'), ('33364','42951','component','sql'), ('33365','42952','component','sql'), ('33366','42953','component','sql'), ('33367','42954','component','timeseries'), ('33368','42955','component','timeseries'), ('33369','42956','component','system'), ('33370','42957','component','system'), ('33371','42958','component','requests'), ('33372','42959','component','ca-certificate'), ('33373','42960','component','network'), ('33374','42961','component','storage'), ('33375','42962','component','system'), ('33376','42963','component','cpu'), ('33377','42964','component','cpu'), ('33378','42965','component','cpu'), ('33379','42966','component','storage'), ('33380','42967','component','storage'), ('33381','42968','component','storage'), ('33382','42969','component','storage'), ('33383','42970','component','storage'), ('33384','42971','component','storage'), ('33385','42972','component','gc'), ('33386','42973','component','node-certificate'), ('33387','42974','component','gc'), ('33388','42975','component','go'), ('33389','42976','component','liveness'), ('33390','42977','component','kv'), ('33391','42978','component','kv'), ('33392','42979','component','liveness'), ('33393','42980','component','cgo'), ('33394','42980','component','memory'), ('33395','42981','component','cgo'), ('33396','42981','component','memory'), ('33397','42982','component','go'), ('33398','42982','component','memory'), ('33399','42983','component','go'), ('33400','42983','component','memory'), ('33401','42984','component','memory'), ('33402','42984','component','sql'), ('33403','42985','component','memory'), ('33404','42987','component','storage'), ('33405','42988','component','rocksdb'), ('33406','42989','component','queues'), ('33407','42990','component','rocksdb'), ('33408','42991','component','storage'), ('33409','42992','component','storage'), ('33410','42993','component','storage'), ('33411','42994','component','storage'), ('33412','42995','component','storage'), ('33413','42996','component','requests'), ('33414','42997','component','requests'), ('33415','42998','component','requests'), ('33416','42999','component','rocksdb'), ('33417','43000','component','rocksdb'), ('33418','43001','component','rocksdb'), ('33419','43002','component','replication'), ('33420','43003','component','queues'), ('33421','43004','component','replication'), ('33422','43005','component','replication'), ('33423','43006','component','rebalancing'), ('33424','43007','component','rebalancing'), ('33425','43008','component','ranges'), ('33426','43009','component','ranges'), ('33427','43010','component','ranges'), ('33428','43011','component','queues'), ('33429','43012','component','queues'), ('33430','43013','component','queues'), ('33431','43014','component','queues'), ('33432','43015','component','queues'), ('33433','43016','component','queues'), ('33434','43017','component','storage'), ('33435','43018','component','raw'), ('33436','43019','component','cluster'), ('33437','43020','component','listener'), ('33438','43021','component','connections'), ('33439','43022','component','health'), ('33440','43023','component','connections'), ('33441','43024','component','memory'), ('33442','43025','component','memory'), ('33443','43026','component','memory'), ('33444','43027','component','health'), ('33445','43028','component','certificate'), ('33446','43029','component','application'), ('33447','43030','component','listener-manager'), ('33448','43031','component','listener'), ('33449','43032','component','listener'), ('33450','43033','component','listener'), ('33451','43034','component','cluster'), ('33452','43035','component','listener'), ('33453','43036','component','listener'), ('33454','43037','component','listener'), ('33455','43038','component','filesystem'), ('33456','43039','component','filesystem'), ('33457','43040','component','filesystem'), ('33458','43041','component','filesystem'), ('33459','43042','component','cluster'), ('33460','43043','component','cluster'), ('33461','43044','component','cluster'), ('33462','43045','component','cluster'), ('33463','43046','component','application'), ('33464','43050','cluster','{#CLUSTER_NAME}'), ('33465','43050','component','cluster'), ('33466','43051','cluster','{#CLUSTER_NAME}'), ('33467','43051','component','cluster'), ('33468','43052','cluster','{#CLUSTER_NAME}'), ('33469','43052','component','cluster'), ('33470','43052','component','requests'), ('33471','43053','cluster','{#CLUSTER_NAME}'), ('33472','43053','component','cluster'), ('33473','43053','component','requests'), ('33474','43054','cluster','{#CLUSTER_NAME}'), ('33475','43054','component','cluster'), ('33476','43054','component','requests'), ('33477','43055','cluster','{#CLUSTER_NAME}'), ('33478','43055','component','cluster'), ('33479','43055','component','requests'), ('33480','43056','cluster','{#CLUSTER_NAME}'), ('33481','43056','component','cluster'), ('33482','43056','component','requests'), ('33483','43057','cluster','{#CLUSTER_NAME}'), ('33484','43057','component','cluster'), ('33485','43057','component','requests'), ('33486','43058','cluster','{#CLUSTER_NAME}'), ('33487','43058','component','cluster'), ('33488','43058','component','requests'), ('33489','43059','cluster','{#CLUSTER_NAME}'), ('33490','43059','component','cluster'), ('33491','43059','component','requests'), ('33492','43060','cluster','{#CLUSTER_NAME}'), ('33493','43060','component','cluster'), ('33494','43061','cluster','{#CLUSTER_NAME}'), ('33495','43061','component','cluster'), ('33496','43061','component','network'), ('33497','43062','cluster','{#CLUSTER_NAME}'), ('33498','43062','component','cluster'), ('33499','43062','component','connections'), ('33500','43063','cluster','{#CLUSTER_NAME}'), ('33501','43063','component','cluster'), ('33502','43063','component','network'), ('33503','43064','cluster','{#CLUSTER_NAME}'), ('33504','43064','component','cluster'), ('33505','43064','component','connections'), ('33506','43065','cluster','{#CLUSTER_NAME}'), ('33507','43065','component','cluster'), ('33508','43066','cluster','{#CLUSTER_NAME}'), ('33509','43066','component','cluster'), ('33510','43066','component','requests'), ('33511','43067','component','http'), ('33512','43067','connection-manager','{#CONN_MANAGER}'), ('33513','43068','component','http'), ('33514','43068','connection-manager','{#CONN_MANAGER}'), ('33515','43069','component','http'), ('33516','43069','connection-manager','{#CONN_MANAGER}'), ('33517','43070','component','http'), ('33518','43070','connection-manager','{#CONN_MANAGER}'), ('33519','43071','component','http'), ('33520','43071','connection-manager','{#CONN_MANAGER}'), ('33521','43072','component','http'), ('33522','43072','connection-manager','{#CONN_MANAGER}'), ('33523','43073','component','http'), ('33524','43073','connection-manager','{#CONN_MANAGER}'), ('33525','43074','component','listener'), ('33526','43074','listener-address','{#LISTENER_ADDRESS}'), ('33527','43075','component','listener'), ('33528','43075','listener-address','{#LISTENER_ADDRESS}'), ('33529','43076','component','listener'), ('33530','43076','listener-address','{#LISTENER_ADDRESS}'), ('33531','43077','component','health'), ('33532','43077','component','network'), ('33533','43078','component','health'), ('33534','43078','component','network'), ('33535','43079','component','health'), ('33536','43079','component','network'), ('33537','43080','component','health'), ('33538','43080','component','network'), ('33539','43081','component','raw'), ('33540','43082','component','raw'), ('33541','43083','component','health'), ('33542','43083','component','raw'), ('33543','43084','component','serf'), ('33544','43085','component','tcp'), ('33545','43086','component','tcp'), ('33546','43087','component','udp'), ('33547','43088','component','udp'), ('33548','43089','component','fds'), ('33549','43090','component','fds'), ('33550','43091','component','memory'), ('33551','43092','component','consul'), ('33552','43093','component','serf'), ('33553','43094','component','serf'), ('33554','43095','component','acl'), ('33555','43096','component','serf'), ('33556','43097','component','memberlist'), ('33557','43098','component','serf'), ('33558','43099','component','consul'), ('33559','43100','component','snapshot'), ('33560','43101','component','snapshot'), ('33561','43102','component','snapshot'), ('33562','43103','component','snapshot'), ('33563','43104','component','snapshot'), ('33564','43105','component','snapshot'), ('33565','43106','component','consul'), ('33566','43107','component','tcp'), ('33567','43108','component','memberlist'), ('33568','43109','component','memberlist'), ('33569','43110','component','goroutines'), ('33570','43111','component','catalog'), ('33571','43112','component','consul'), ('33572','43113','component','consul'), ('33573','43114','component','rpc'), ('33574','43115','component','rpc'), ('33575','43116','component','cpu'), ('33576','43117','component','gs'), ('33577','43118','component','gc'), ('33578','43119','component','status'), ('33579','43120','component','kvs'), ('33580','43121','component','catalog'), ('33581','43122','component','kvs'), ('33582','43123','component','kvs'), ('33583','43124','component','health'), ('33584','43125','component','gossip'), ('33585','43126','component','gossip'), ('33586','43127','component','health'), ('33587','43128','component','health'), ('33588','43129','component','health'), ('33589','43130','component','health'), ('33590','43131','component','memberlist'), ('33591','43132','component','memory'), ('33592','43137','component','api'), ('33593','43137','verb','{#HTTP_METHOD}'), ('33594','43138','component','api'), ('33595','43138','verb','{#HTTP_METHOD}'), ('33596','43139','component','api'), ('33597','43139','verb','{#HTTP_METHOD}'), ('33598','43140','component','service'), ('33599','43140','service','{#SERVICE_NAME}'), ('33600','43141','check','{#SERVICE_CHECK_NAME}'), ('33601','43141','component','service'), ('33602','43141','service','{#SERVICE_NAME}'), ('33603','43142','check','{#SERVICE_CHECK_NAME}'), ('33604','43142','component','service'), ('33605','43142','service','{#SERVICE_NAME}'), ('33606','43143','component','health'), ('33607','43144','component','raft'), ('33608','43145','component','raft'), ('33609','43146','component','raft'), ('33610','43147','component','raft'), ('33611','43148','component','raft'), ('33612','43149','component','raft'), ('33613','43150','component','raft'), ('33614','43151','component','raft'), ('33615','43152','component','raft'), ('33616','43153','component','raft'), ('33617','43154','component','raft'), ('33618','43155','component','raft'), ('33619','43156','component','raw'), ('33620','43157','component','health'), ('33621','43157','component','raw'), ('33622','43158','component','leader'), ('33623','43158','component','raw'), ('33624','43159','component','raw'), ('33625','43160','component','raft'), ('33626','43161','component','consul'), ('33627','43162','component','consul'), ('33628','43163','component','consul'), ('33629','43164','component','consul'), ('33630','43165','component','consul'), ('33631','43168','component','service'), ('33632','43168','service','{#SERVICE_NAME}'), ('33633','43169','component','health'), ('33634','43170','component','service'), ('33635','43170','service','{#SERVICE_NAME}'), ('33636','43171','component','service'), ('33637','43171','service','{#SERVICE_NAME}'), ('33638','43172','component','service'), ('33639','43172','service','{#SERVICE_NAME}'), ('33642','33774','component','cursors'), ('33643','33806','component','cursors'), ('33644','43174','component','raw'), ('33645','43175','component','health'), ('33646','43175','component','network'), ('33647','43176','component','errors'), ('33648','43177','component','system'), ('33649','43178','component','health'), ('33650','43178','component','system'), ('33651','43179','component','system'), ('33652','43180','component','system'), ('33653','43181','component','system'), ('33654','43182','component','system'), ('33655','43183','component','system'), ('33656','43194','component','disk-group'), ('33657','43194','disk-group','{#NAME}'), ('33658','43195','component','pool'), ('33659','43195','pool','{#NAME}'), ('33660','43196','component','controller'), ('33661','43196','controller','{#CONTROLLER.ID}'), ('33662','43197','component','controller'), ('33663','43197','controller','{#CONTROLLER.ID}'), ('33664','43198','component','controller'), ('33665','43198','component','health'), ('33666','43198','controller','{#CONTROLLER.ID}'), ('33667','43199','component','controller'), ('33668','43199','controller','{#CONTROLLER.ID}'), ('33669','43200','component','controller'), ('33670','43200','controller','{#CONTROLLER.ID}'), ('33671','43201','component','controller'), ('33672','43201','controller','{#CONTROLLER.ID}'), ('33673','43202','component','controller'), ('33674','43202','controller','{#CONTROLLER.ID}'), ('33675','43203','component','controller'), ('33676','43203','component','health'), ('33677','43203','controller','{#CONTROLLER.ID}'), ('33678','43204','component','controller'), ('33679','43204','controller','{#CONTROLLER.ID}'), ('33680','43205','component','controller'), ('33681','43205','controller','{#CONTROLLER.ID}'), ('33682','43206','component','controller'), ('33683','43206','controller','{#CONTROLLER.ID}'), ('33684','43207','component','controller'), ('33685','43207','controller','{#CONTROLLER.ID}'), ('33686','43208','component','controller'), ('33687','43208','controller','{#CONTROLLER.ID}'), ('33688','43209','component','controller'), ('33689','43209','controller','{#CONTROLLER.ID}'), ('33690','43210','component','controller'), ('33691','43210','controller','{#CONTROLLER.ID}'), ('33692','43211','component','controller'), ('33693','43211','controller','{#CONTROLLER.ID}'), ('33694','43212','component','controller'), ('33695','43212','controller','{#CONTROLLER.ID}'), ('33696','43213','component','controller'), ('33697','43213','controller','{#CONTROLLER.ID}'), ('33698','43214','component','controller'), ('33699','43214','controller','{#CONTROLLER.ID}'), ('33700','43215','component','controller'), ('33701','43215','controller','{#CONTROLLER.ID}'), ('33702','43216','component','controller'), ('33703','43216','controller','{#CONTROLLER.ID}'), ('33704','43217','component','controller'), ('33705','43217','controller','{#CONTROLLER.ID}'), ('33706','43218','component','controller'), ('33707','43218','controller','{#CONTROLLER.ID}'), ('33708','43219','component','disk'), ('33709','43219','disk','{#DURABLE.ID}'), ('33710','43220','component','disk'), ('33711','43220','disk','{#DURABLE.ID}'), ('33712','43221','component','disk'), ('33713','43221','disk','{#DURABLE.ID}'), ('33714','43222','component','disk'), ('33715','43222','component','health'), ('33716','43222','disk','{#DURABLE.ID}'), ('33717','43223','component','disk'), ('33718','43223','disk','{#DURABLE.ID}'), ('33719','43224','component','disk'), ('33720','43224','disk','{#DURABLE.ID}'), ('33721','43225','component','disk'), ('33722','43225','disk','{#DURABLE.ID}'), ('33723','43226','component','disk'), ('33724','43226','disk','{#DURABLE.ID}'), ('33725','43227','component','disk'), ('33726','43227','component','health'), ('33727','43227','disk','{#DURABLE.ID}'), ('33728','43228','component','disk'), ('33729','43228','disk','{#DURABLE.ID}'), ('33730','43229','component','disk'), ('33731','43229','disk','{#DURABLE.ID}'), ('33732','43230','component','disk-group'), ('33733','43230','disk-group','{#NAME}'), ('33734','43231','component','disk-group'), ('33735','43231','disk-group','{#NAME}'), ('33736','43232','component','disk-group'), ('33737','43232','component','health'), ('33738','43232','disk-group','{#NAME}'), ('33739','43233','component','disk-group'), ('33740','43233','disk-group','{#NAME}'), ('33741','43234','component','disk-group'), ('33742','43234','disk-group','{#NAME}'), ('33743','43235','component','disk-group'), ('33744','43235','disk-group','{#NAME}'), ('33745','43236','component','disk-group'), ('33746','43236','disk-group','{#NAME}'), ('33747','43237','component','disk-group'), ('33748','43237','disk-group','{#NAME}'), ('33749','43238','component','disk-group'), ('33750','43238','disk-group','{#NAME}'), ('33751','43239','component','disk-group'), ('33752','43239','disk-group','{#NAME}'), ('33753','43240','component','disk-group'), ('33754','43240','disk-group','{#NAME}'), ('33755','43241','component','disk-group'), ('33756','43241','disk-group','{#NAME}'), ('33757','43242','component','disk-group'), ('33758','43242','disk-group','{#NAME}'), ('33759','43243','component','disk-group'), ('33760','43243','disk-group','{#NAME}'), ('33761','43244','component','disk-group'), ('33762','43244','disk-group','{#NAME}'), ('33763','43245','component','disk-group'), ('33764','43245','component','health'), ('33765','43245','disk-group','{#NAME}'), ('33766','43246','component','enclosure'), ('33767','43246','component','health'), ('33768','43246','enclosure','{#DURABLE.ID}'), ('33769','43247','component','enclosure'), ('33770','43247','enclosure','{#DURABLE.ID}'), ('33771','43248','component','enclosure'), ('33772','43248','enclosure','{#DURABLE.ID}'), ('33773','43249','component','enclosure'), ('33774','43249','enclosure','{#DURABLE.ID}'), ('33775','43250','component','enclosure'), ('33776','43250','enclosure','{#DURABLE.ID}'), ('33777','43251','component','enclosure'), ('33778','43251','component','health'), ('33779','43251','enclosure','{#DURABLE.ID}'), ('33780','43252','component','fan'), ('33781','43252','component','health'), ('33782','43252','fan','{#DURABLE.ID}'), ('33783','43253','component','fan'), ('33784','43253','fan','{#DURABLE.ID}'), ('33785','43254','component','fan'), ('33786','43254','component','health'), ('33787','43254','fan','{#DURABLE.ID}'), ('33788','43255','component','fru'), ('33789','43255','fru','Enclosure {#ENCLOSURE.ID}: {#LOCATION}'), ('33790','43256','component','fru'), ('33791','43256','fru','Enclosure {#ENCLOSURE.ID}: {#LOCATION}'), ('33792','43257','component','fru'), ('33793','43257','component','health'), ('33794','43257','fru','Enclosure {#ENCLOSURE.ID}: {#LOCATION}'), ('33795','43258','component','pool'), ('33796','43258','pool','{#NAME}'), ('33797','43259','component','pool'), ('33798','43259','pool','{#NAME}'), ('33799','43260','component','health'), ('33800','43260','component','pool'), ('33801','43260','pool','{#NAME}'), ('33802','43261','component','health'), ('33803','43261','component','port'), ('33804','43261','port','{#NAME}'), ('33805','43262','component','health'), ('33806','43262','component','port'), ('33807','43262','port','{#NAME}'), ('33808','43263','component','port'), ('33809','43263','port','{#NAME}'), ('33810','43264','component','health'), ('33811','43264','component','power-supply'), ('33812','43264','power-supply','{#DURABLE.ID}'), ('33813','43265','component','power-supply'), ('33814','43265','power-supply','{#DURABLE.ID}'), ('33815','43266','component','power-supply'), ('33816','43266','power-supply','{#DURABLE.ID}'), ('33817','43267','component','health'), ('33818','43267','component','power-supply'), ('33819','43267','power-supply','{#DURABLE.ID}'), ('33820','43268','component','power-supply'), ('33821','43268','power-supply','{#DURABLE.ID}'), ('33822','43269','component','volume'), ('33823','43269','volume','{#NAME}'), ('33824','43270','component','volume'), ('33825','43270','volume','{#NAME}'), ('33826','43271','component','volume'), ('33827','43271','volume','{#NAME}'), ('33828','43272','component','volume'), ('33829','43272','volume','{#NAME}'), ('33830','43273','component','volume'), ('33831','43273','volume','{#NAME}'), ('33832','43274','component','volume'), ('33833','43274','volume','{#NAME}'), ('33834','43275','component','volume'), ('33835','43275','volume','{#NAME}'), ('33836','43276','component','volume'), ('33837','43276','volume','{#NAME}'), ('33838','43277','component','volume'), ('33839','43277','volume','{#NAME}'), ('33840','43278','component','volume'), ('33841','43278','volume','{#NAME}'), ('33842','43279','component','volume'), ('33843','43279','volume','{#NAME}'), ('33844','43280','component','volume'), ('33845','43280','volume','{#NAME}'), ('33846','43281','component','raw'), ('33847','43282','component','health'), ('33848','43282','component','network'), ('33849','43283','component','errors'), ('33850','43284','component','system'), ('33851','43285','component','health'), ('33852','43285','component','system'), ('33853','43286','component','system'), ('33854','43287','component','system'), ('33855','43288','component','system'), ('33856','43289','component','system'), ('33857','43290','component','system'), ('33858','43301','component','disk'), ('33859','43301','disk','{#DURABLE.ID}'), ('33860','43302','component','disk-group'), ('33861','43302','disk-group','{#NAME}'), ('33862','43303','component','disk-group'), ('33863','43303','disk-group','{#NAME}'), ('33864','43304','component','disk-group'), ('33865','43304','disk-group','{#NAME}'), ('33866','43305','component','pool'), ('33867','43305','pool','{#NAME}'), ('33868','43306','component','pool'), ('33869','43306','pool','{#NAME}'), ('33870','43307','component','pool'), ('33871','43307','pool','{#NAME}'), ('33872','43308','component','volume'), ('33873','43308','volume','{#NAME}'), ('33874','43309','component','volume'), ('33875','43309','volume','{#NAME}'), ('33876','43310','component','controller'), ('33877','43310','controller','{#CONTROLLER.ID}'), ('33878','43311','component','controller'), ('33879','43311','controller','{#CONTROLLER.ID}'), ('33880','43312','component','controller'), ('33881','43312','component','health'), ('33882','43312','controller','{#CONTROLLER.ID}'), ('33883','43313','component','controller'), ('33884','43313','controller','{#CONTROLLER.ID}'), ('33885','43314','component','controller'), ('33886','43314','controller','{#CONTROLLER.ID}'), ('33887','43315','component','controller'), ('33888','43315','controller','{#CONTROLLER.ID}'), ('33889','43316','component','controller'), ('33890','43316','controller','{#CONTROLLER.ID}'), ('33891','43317','component','controller'), ('33892','43317','component','health'), ('33893','43317','controller','{#CONTROLLER.ID}'), ('33894','43318','component','controller'), ('33895','43318','controller','{#CONTROLLER.ID}'), ('33896','43319','component','controller'), ('33897','43319','controller','{#CONTROLLER.ID}'), ('33898','43320','component','controller'), ('33899','43320','controller','{#CONTROLLER.ID}'), ('33900','43321','component','controller'), ('33901','43321','controller','{#CONTROLLER.ID}'), ('33902','43322','component','controller'), ('33903','43322','controller','{#CONTROLLER.ID}'), ('33904','43323','component','controller'), ('33905','43323','controller','{#CONTROLLER.ID}'), ('33906','43324','component','controller'), ('33907','43324','controller','{#CONTROLLER.ID}'), ('33908','43325','component','controller'), ('33909','43325','controller','{#CONTROLLER.ID}'), ('33910','43326','component','controller'), ('33911','43326','controller','{#CONTROLLER.ID}'), ('33912','43327','component','controller'), ('33913','43327','controller','{#CONTROLLER.ID}'), ('33914','43328','component','controller'), ('33915','43328','controller','{#CONTROLLER.ID}'), ('33916','43329','component','controller'), ('33917','43329','controller','{#CONTROLLER.ID}'), ('33918','43330','component','controller'), ('33919','43330','controller','{#CONTROLLER.ID}'), ('33920','43331','component','controller'), ('33921','43331','controller','{#CONTROLLER.ID}'), ('33922','43332','component','controller'), ('33923','43332','controller','{#CONTROLLER.ID}'), ('33924','43333','component','disk'), ('33925','43333','disk','{#DURABLE.ID}'), ('33926','43334','component','disk'), ('33927','43334','disk','{#DURABLE.ID}'), ('33928','43335','component','disk'), ('33929','43335','disk','{#DURABLE.ID}'), ('33930','43336','component','disk'), ('33931','43336','disk','{#DURABLE.ID}'), ('33932','43337','component','disk'), ('33933','43337','component','health'), ('33934','43337','disk','{#DURABLE.ID}'), ('33935','43338','component','disk'), ('33936','43338','disk','{#DURABLE.ID}'), ('33937','43339','component','disk'), ('33938','43339','disk','{#DURABLE.ID}'), ('33939','43340','component','disk'), ('33940','43340','disk','{#DURABLE.ID}'), ('33941','43341','component','disk'), ('33942','43341','disk','{#DURABLE.ID}'), ('33943','43342','component','disk'), ('33944','43342','component','health'), ('33945','43342','disk','{#DURABLE.ID}'), ('33946','43343','component','disk'), ('33947','43343','disk','{#DURABLE.ID}'), ('33948','43344','component','disk'), ('33949','43344','disk','{#DURABLE.ID}'), ('33950','43345','component','disk-group'), ('33951','43345','disk-group','{#NAME}'), ('33952','43346','component','disk-group'), ('33953','43346','disk-group','{#NAME}'), ('33954','43347','component','disk-group'), ('33955','43347','component','health'), ('33956','43347','disk-group','{#NAME}'), ('33957','43348','component','disk-group'), ('33958','43348','disk-group','{#NAME}'), ('33959','43349','component','disk-group'), ('33960','43349','disk-group','{#NAME}'), ('33961','43350','component','disk-group'), ('33962','43350','disk-group','{#NAME}'), ('33963','43351','component','disk-group'), ('33964','43351','disk-group','{#NAME}'), ('33965','43352','component','disk-group'), ('33966','43352','disk-group','{#NAME}'), ('33967','43353','component','disk-group'), ('33968','43353','disk-group','{#NAME}'), ('33969','43354','component','disk-group'), ('33970','43354','disk-group','{#NAME}'), ('33971','43355','component','disk-group'), ('33972','43355','disk-group','{#NAME}'), ('33973','43356','component','disk-group'), ('33974','43356','disk-group','{#NAME}'), ('33975','43357','component','disk-group'), ('33976','43357','disk-group','{#NAME}'), ('33977','43358','component','disk-group'), ('33978','43358','disk-group','{#NAME}'), ('33979','43359','component','disk-group'), ('33980','43359','disk-group','{#NAME}'), ('33981','43360','component','disk-group'), ('33982','43360','disk-group','{#NAME}'), ('33983','43361','component','disk-group'), ('33984','43361','component','health'), ('33985','43361','disk-group','{#NAME}'), ('33986','43362','component','enclosure'), ('33987','43362','component','health'), ('33988','43362','enclosure','{#DURABLE.ID}'), ('33989','43363','component','enclosure'), ('33990','43363','enclosure','{#DURABLE.ID}'), ('33991','43364','component','enclosure'), ('33992','43364','enclosure','{#DURABLE.ID}'), ('33993','43365','component','enclosure'), ('33994','43365','enclosure','{#DURABLE.ID}'), ('33995','43366','component','enclosure'), ('33996','43366','enclosure','{#DURABLE.ID}'), ('33997','43367','component','enclosure'), ('33998','43367','component','health'), ('33999','43367','enclosure','{#DURABLE.ID}'), ('34000','43368','component','fan'), ('34001','43368','component','health'), ('34002','43368','fan','{#DURABLE.ID}'), ('34003','43369','component','fan'), ('34004','43369','fan','{#DURABLE.ID}'), ('34005','43370','component','fan'), ('34006','43370','component','health'), ('34007','43370','fan','{#DURABLE.ID}'), ('34008','43371','component','fru'), ('34009','43371','fru','Enclosure {#ENCLOSURE.ID}: {#LOCATION}'), ('34010','43372','component','fru'), ('34011','43372','fru','Enclosure {#ENCLOSURE.ID}: {#LOCATION}'), ('34012','43373','component','fru'), ('34013','43373','component','health'), ('34014','43373','fru','Enclosure {#ENCLOSURE.ID}: {#LOCATION}'), ('34015','43374','component','pool'), ('34016','43374','pool','{#NAME}'), ('34017','43375','component','pool'), ('34018','43375','pool','{#NAME}'), ('34019','43376','component','pool'), ('34020','43376','pool','{#NAME}'), ('34021','43377','component','health'), ('34022','43377','component','pool'), ('34023','43377','pool','{#NAME}'), ('34024','43378','component','health'), ('34025','43378','component','port'), ('34026','43378','port','{#NAME}'), ('34027','43379','component','health'), ('34028','43379','component','port'), ('34029','43379','port','{#NAME}'), ('34030','43380','component','port'), ('34031','43380','port','{#NAME}'), ('34032','43381','component','health'), ('34033','43381','component','power-supply'), ('34034','43381','power-supply','{#DURABLE.ID}'), ('34035','43382','component','power-supply'), ('34036','43382','power-supply','{#DURABLE.ID}'), ('34037','43383','component','power-supply'), ('34038','43383','power-supply','{#DURABLE.ID}'), ('34039','43384','component','health'), ('34040','43384','component','power-supply'), ('34041','43384','power-supply','{#DURABLE.ID}'), ('34042','43385','component','volume'), ('34043','43385','volume','{#NAME}'), ('34044','43386','component','volume'), ('34045','43386','volume','{#NAME}'), ('34046','43387','component','volume'), ('34047','43387','volume','{#NAME}'), ('34048','43388','component','volume'), ('34049','43388','volume','{#NAME}'), ('34050','43389','component','volume'), ('34051','43389','volume','{#NAME}'), ('34052','43390','component','volume'), ('34053','43390','volume','{#NAME}'), ('34054','43391','component','volume'), ('34055','43391','volume','{#NAME}'), ('34056','43392','component','volume'), ('34057','43392','volume','{#NAME}'), ('34058','43393','component','volume'), ('34059','43393','volume','{#NAME}'), ('34060','43394','component','volume'), ('34061','43394','volume','{#NAME}'), ('34062','43395','component','volume'), ('34063','43395','volume','{#NAME}'), ('34064','43396','component','volume'), ('34065','43396','volume','{#NAME}'), ('34066','43397','component','volume'), ('34067','43397','volume','{#NAME}'), ('34068','43398','component','health'), ('34069','43398','component','network'), ('34070','43399','component','raw'), ('34071','43400','component','system'), ('34072','43401','component','system'), ('34073','43402','component','system'), ('34074','43403','component','system'), ('34075','43404','component','system'), ('34076','43405','component','system'), ('34077','43406','component','raw'), ('34078','43407','component','system'), ('34079','43408','component','storage'), ('34080','43408','component','system'), ('34081','43409','component','storage'), ('34082','43409','component','system'), ('34083','43410','component','storage'), ('34084','43410','component','system'), ('34085','43411','component','storage'), ('34086','43411','component','system'), ('34087','43412','component','storage'), ('34088','43412','component','system'), ('34089','43413','component','disk'), ('34090','43413','component','storage'), ('34091','43414','component','system'), ('34092','43421','component','cpg'), ('34093','43421','component','storage'), ('34094','43421','cpg','{#NAME}'), ('34095','43422','component','cpg'), ('34096','43422','component','storage'), ('34097','43422','cpg','{#NAME}'), ('34098','43423','component','cpg'), ('34099','43423','component','storage'), ('34100','43423','cpg','{#NAME}'), ('34101','43424','component','cpg'), ('34102','43424','component','storage'), ('34103','43424','cpg','{#NAME}'), ('34104','43425','component','cpg'), ('34105','43425','component','storage'), ('34106','43425','cpg','{#NAME}'), ('34107','43426','component','cpg'), ('34108','43426','component','storage'), ('34109','43426','cpg','{#NAME}'), ('34110','43427','component','cpg'), ('34111','43427','component','storage'), ('34112','43427','cpg','{#NAME}'), ('34113','43428','component','cpg'), ('34114','43428','component','storage'), ('34115','43428','cpg','{#NAME}'), ('34116','43429','component','cpg'), ('34117','43429','component','storage'), ('34118','43429','cpg','{#NAME}'), ('34119','43430','component','cpg'), ('34120','43430','component','storage'), ('34121','43430','cpg','{#NAME}'), ('34122','43431','component','cpg'), ('34123','43431','component','storage'), ('34124','43431','cpg','{#NAME}'), ('34125','43432','component','cpg'), ('34126','43432','component','storage'), ('34127','43432','cpg','{#NAME}'), ('34128','43433','component','cpg'), ('34129','43433','component','storage'), ('34130','43433','cpg','{#NAME}'), ('34131','43434','component','cpg'), ('34132','43434','component','storage'), ('34133','43434','cpg','{#NAME}'), ('34134','43435','component','cpg'), ('34135','43435','component','storage'), ('34136','43435','cpg','{#NAME}'), ('34137','43436','component','cpg'), ('34138','43436','component','storage'), ('34139','43436','cpg','{#NAME}'), ('34140','43437','component','cpg'), ('34141','43437','component','storage'), ('34142','43437','cpg','{#NAME}'), ('34143','43438','component','cpg'), ('34144','43438','component','storage'), ('34145','43438','cpg','{#NAME}'), ('34146','43439','component','cpg'), ('34147','43439','component','storage'), ('34148','43439','cpg','{#NAME}'), ('34149','43440','component','cpg'), ('34150','43440','component','storage'), ('34151','43440','cpg','{#NAME}'), ('34152','43441','component','cpg'), ('34153','43441','component','storage'), ('34154','43441','cpg','{#NAME}'), ('34155','43442','component','cpg'), ('34156','43442','component','storage'), ('34157','43442','cpg','{#NAME}'), ('34158','43443','component','cpg'), ('34159','43443','cpg','{#NAME}'), ('34160','43444','component','cpg'), ('34161','43444','component','storage'), ('34162','43444','cpg','{#NAME}'), ('34163','43445','component','disk'), ('34164','43445','component','storage'), ('34165','43445','disk','{#POSITION}'), ('34166','43446','component','disk'), ('34167','43446','component','storage'), ('34168','43446','disk','{#POSITION}'), ('34169','43447','component','disk'), ('34170','43447','component','storage'), ('34171','43447','disk','{#POSITION}'), ('34172','43448','component','disk'), ('34173','43448','component','storage'), ('34174','43448','disk','{#POSITION}'), ('34175','43449','component','disk'), ('34176','43449','component','storage'), ('34177','43449','disk','{#POSITION}'), ('34178','43450','component','disk'), ('34179','43450','component','storage'), ('34180','43450','disk','{#POSITION}'), ('34181','43451','component','disk'), ('34182','43451','component','storage'), ('34183','43451','disk','{#POSITION}'), ('34184','43452','component','disk'), ('34185','43452','component','storage'), ('34186','43452','disk','{#POSITION}'), ('34187','43453','component','disk'), ('34188','43453','component','storage'), ('34189','43453','disk','{#POSITION}'), ('34190','43454','component','disk'), ('34191','43454','component','storage'), ('34192','43454','disk','{#POSITION}'), ('34193','43455','component','disk'), ('34194','43455','component','storage'), ('34195','43455','disk','{#POSITION}'), ('34196','43456','component','disk'), ('34197','43456','component','storage'), ('34198','43456','disk','{#POSITION}'), ('34199','43457','component','host'), ('34200','43457','host','{#NAME}'), ('34201','43458','component','host'), ('34202','43458','host','{#NAME}'), ('34203','43459','component','host'), ('34204','43459','host','{#NAME}'), ('34205','43460','component','host'), ('34206','43460','host','{#NAME}'), ('34207','43461','component','host'), ('34208','43461','host','{#NAME}'), ('34209','43462','component','host'), ('34210','43462','host','{#NAME}'), ('34211','43463','component','port'), ('34212','43463','port','{#NODE}:{#SLOT}:{#CARD.PORT}'), ('34213','43464','component','port'), ('34214','43464','port','{#NODE}:{#SLOT}:{#CARD.PORT}'), ('34215','43465','component','port'), ('34216','43465','port','{#NODE}:{#SLOT}:{#CARD.PORT}'), ('34217','43466','component','port'), ('34218','43466','port','{#NODE}:{#SLOT}:{#CARD.PORT}'), ('34219','43467','component','task'), ('34220','43467','task','{#NAME}'), ('34221','43468','component','task'), ('34222','43468','task','{#NAME}'), ('34223','43469','component','task'), ('34224','43469','task','{#NAME}'), ('34225','43470','component','task'), ('34226','43470','task','{#NAME}'), ('34227','43471','component','storage'), ('34228','43471','component','volume'), ('34229','43471','volume','{#NAME}'), ('34230','43472','component','storage'), ('34231','43472','component','volume'), ('34232','43472','volume','{#NAME}'), ('34233','43473','component','storage'), ('34234','43473','component','volume'), ('34235','43473','volume','{#NAME}'), ('34236','43474','component','storage'), ('34237','43474','component','volume'), ('34238','43474','volume','{#NAME}'), ('34239','43475','component','storage'), ('34240','43475','component','volume'), ('34241','43475','volume','{#NAME}'), ('34242','43476','component','storage'), ('34243','43476','component','volume'), ('34244','43476','volume','{#NAME}'), ('34245','43477','component','storage'), ('34246','43477','component','volume'), ('34247','43477','volume','{#NAME}'), ('34248','43478','component','storage'), ('34249','43478','component','volume'), ('34250','43478','volume','{#NAME}'), ('34251','43479','component','storage'), ('34252','43479','component','volume'), ('34253','43479','volume','{#NAME}'), ('34254','43480','component','storage'), ('34255','43480','component','volume'), ('34256','43480','volume','{#NAME}'), ('34257','43481','component','storage'), ('34258','43481','component','volume'), ('34259','43481','volume','{#NAME}'), ('34260','43482','component','storage'), ('34261','43482','component','volume'), ('34262','43482','volume','{#NAME}'), ('34263','43483','component','storage'), ('34264','43483','component','volume'), ('34265','43483','volume','{#NAME}'), ('34266','43484','component','storage'), ('34267','43484','component','volume'), ('34268','43484','volume','{#NAME}'), ('34269','43485','component','storage'), ('34270','43485','component','volume'), ('34271','43485','volume','{#NAME}'), ('34272','43486','component','storage'), ('34273','43486','component','volume'), ('34274','43486','volume','{#NAME}'), ('34275','43487','component','storage'), ('34276','43487','component','volume'), ('34277','43487','volume','{#NAME}'), ('34278','43488','component','storage'), ('34279','43488','component','volume'), ('34280','43488','volume','{#NAME}'), ('34281','43489','component','storage'), ('34282','43489','component','volume'), ('34283','43489','volume','{#NAME}'), ('34284','43490','component','storage'), ('34285','43490','component','volume'), ('34286','43490','volume','{#NAME}'), ('34287','43491','component','storage'), ('34288','43491','component','volume'), ('34289','43491','volume','{#NAME}'), ('34290','43492','component','storage'), ('34291','43492','component','volume'), ('34292','43492','volume','{#NAME}'), ('34293','43493','component','storage'), ('34294','43493','component','volume'), ('34295','43493','volume','{#NAME}'), ('34296','43494','component','storage'), ('34297','43494','component','volume'), ('34298','43494','volume','{#NAME}'), ('34299','43495','component','storage'), ('34300','43495','component','volume'), ('34301','43495','volume','{#NAME}'), ('34302','43496','component','storage'), ('34303','43496','component','volume'), ('34304','43496','volume','{#NAME}'), ('34305','43497','component','raw'), ('34306','43498','component','raw'), ('34307','43499','component','raw'), ('34308','43500','component','status'), ('34309','43501','component','ebs'), ('34310','43502','component','instance'), ('34311','43503','component','instance'), ('34312','43504','component','instance'), ('34313','43505','component','network'), ('34314','43506','component','network'), ('34315','43507','component','network'), ('34316','43508','component','network'), ('34317','43509','component','status'), ('34318','43510','component','metadata'), ('34319','43511','component','ebs'), ('34320','43512','component','cpu'), ('34321','43512','component','credit'), ('34322','43513','component','ebs'), ('34323','43514','component','ebs'), ('34324','43515','component','ebs'), ('34325','43516','component','ebs'), ('34326','43517','component','disk'), ('34327','43518','component','disk'), ('34328','43519','component','disk'), ('34329','43520','component','disk'), ('34330','43521','component','cpu'), ('34331','43522','component','cpu'), ('34332','43522','component','credit'), ('34333','43523','component','cpu'), ('34334','43523','component','credit'), ('34335','43524','component','cpu'), ('34336','43524','component','credit'), ('34337','43525','component','status'), ('34338','43528','component','raw'), ('34339','43528','type','{#VOLUME_TYPE}'), ('34340','43528','volume','{#VOLUME_ID}'), ('34341','43529','component','alarms'), ('34342','43530','component','alarms'), ('34343','43531','component','volumes'), ('34344','43531','type','{#VOLUME_TYPE}'), ('34345','43531','volume','{#VOLUME_ID}'), ('34346','43532','component','volumes'), ('34347','43532','type','{#VOLUME_TYPE}'), ('34348','43532','volume','{#VOLUME_ID}'), ('34349','43533','component','volumes'), ('34350','43533','type','{#VOLUME_TYPE}'), ('34351','43533','volume','{#VOLUME_ID}'), ('34352','43534','component','volumes'), ('34353','43534','type','{#VOLUME_TYPE}'), ('34354','43534','volume','{#VOLUME_ID}'), ('34355','43535','component','volumes'), ('34356','43535','type','{#VOLUME_TYPE}'), ('34357','43535','volume','{#VOLUME_ID}'), ('34358','43536','component','volumes'), ('34359','43536','type','{#VOLUME_TYPE}'), ('34360','43536','volume','{#VOLUME_ID}'), ('34361','43537','component','volumes'), ('34362','43537','type','{#VOLUME_TYPE}'), ('34363','43537','volume','{#VOLUME_ID}'), ('34364','43538','component','volumes'), ('34365','43538','type','{#VOLUME_TYPE}'), ('34366','43538','volume','{#VOLUME_ID}'), ('34367','43539','component','volumes'), ('34368','43539','type','{#VOLUME_TYPE}'), ('34369','43539','volume','{#VOLUME_ID}'), ('34370','43540','component','volumes'), ('34371','43540','type','{#VOLUME_TYPE}'), ('34372','43540','volume','{#VOLUME_ID}'), ('34373','43541','component','volumes'), ('34374','43541','type','{#VOLUME_TYPE}'), ('34375','43541','volume','{#VOLUME_ID}'), ('34376','43542','component','volumes'), ('34377','43542','type','{#VOLUME_TYPE}'), ('34378','43542','volume','{#VOLUME_ID}'), ('34379','43543','component','volumes'), ('34380','43543','type','{#VOLUME_TYPE}'), ('34381','43543','volume','{#VOLUME_ID}'), ('34382','43544','component','volumes'), ('34383','43544','type','{#VOLUME_TYPE}'), ('34384','43544','volume','{#VOLUME_ID}'), ('34385','43545','component','volumes'), ('34386','43545','type','{#VOLUME_TYPE}'), ('34387','43545','volume','{#VOLUME_ID}'), ('34388','43546','component','volumes'), ('34389','43546','type','{#VOLUME_TYPE}'), ('34390','43546','volume','{#VOLUME_ID}'), ('34391','43140','namespace','{#SERVICE_NAMESPACE}'), ('34392','43141','namespace','{#SERVICE_NAMESPACE}'), ('34393','43142','namespace','{#SERVICE_NAMESPACE}'), ('34394','43547','component','application'), ('34395','43548','component','firewall'), ('34396','43549','component','network'), ('34397','43550','component','network'), ('34398','43551','component','network'), ('34399','43552','component','network'), ('34400','43553','component','network'), ('34401','43554','component','network'), ('34402','43555','component','application'), ('34403','43555','component','health'), ('34404','43556','component','application'), ('34405','43557','component','network'), ('34406','43558','component','network'), ('34407','43559','component','network'), ('34408','43560','component','network'), ('34409','43561','component','network'), ('34410','43562','component','network'), ('34411','43563','component','application'), ('34412','43564','component','health'), ('34413','43564','component','network'), ('34414','43566','component','firewall'), ('34415','43566','component','network'), ('34416','43566','description','{#IFALIAS}'), ('34417','43566','interface','{#IFNAME}'), ('34418','43567','component','firewall'), ('34419','43567','component','network'), ('34420','43567','description','{#IFALIAS}'), ('34421','43567','interface','{#IFNAME}'), ('34422','43568','component','network'), ('34423','43568','description','{#IFALIAS}'), ('34424','43568','interface','{#IFNAME}'), ('34425','43569','component','network'), ('34426','43569','description','{#IFALIAS}'), ('34427','43569','interface','{#IFNAME}'), ('34428','43570','component','firewall'), ('34429','43570','component','network'), ('34430','43570','description','{#IFALIAS}'), ('34431','43570','interface','{#IFNAME}'), ('34432','43571','component','network'), ('34433','43571','description','{#IFALIAS}'), ('34434','43571','interface','{#IFNAME}'), ('34435','43572','component','firewall'), ('34436','43572','component','network'), ('34437','43572','description','{#IFALIAS}'), ('34438','43572','interface','{#IFNAME}'), ('34439','43573','component','firewall'), ('34440','43573','component','network'), ('34441','43573','description','{#IFALIAS}'), ('34442','43573','interface','{#IFNAME}'), ('34443','43574','component','firewall'), ('34444','43574','component','network'), ('34445','43574','description','{#IFALIAS}'), ('34446','43574','interface','{#IFNAME}'), ('34447','43575','component','firewall'), ('34448','43575','component','network'), ('34449','43575','description','{#IFALIAS}'), ('34450','43575','interface','{#IFNAME}'), ('34451','43576','component','network'), ('34452','43576','description','{#IFALIAS}'), ('34453','43576','interface','{#IFNAME}'), ('34454','43577','component','network'), ('34455','43577','description','{#IFALIAS}'), ('34456','43577','interface','{#IFNAME}'), ('34457','43578','component','firewall'), ('34458','43578','component','network'), ('34459','43578','description','{#IFALIAS}'), ('34460','43578','interface','{#IFNAME}'), ('34461','43579','component','firewall'), ('34462','43579','component','network'), ('34463','43579','description','{#IFALIAS}'), ('34464','43579','interface','{#IFNAME}'), ('34465','43580','component','firewall'), ('34466','43580','component','network'), ('34467','43580','description','{#IFALIAS}'), ('34468','43580','interface','{#IFNAME}'), ('34469','43581','component','firewall'), ('34470','43581','component','network'), ('34471','43581','description','{#IFALIAS}'), ('34472','43581','interface','{#IFNAME}'), ('34473','43582','component','network'), ('34474','43582','description','{#IFALIAS}'), ('34475','43582','interface','{#IFNAME}'), ('34476','43583','component','firewall'), ('34477','43583','component','network'), ('34478','43583','description','{#IFALIAS}'), ('34479','43583','interface','{#IFNAME}'), ('34480','43584','component','firewall'), ('34481','43584','component','network'), ('34482','43584','description','{#IFALIAS}'), ('34483','43584','interface','{#IFNAME}'), ('34484','43585','component','firewall'), ('34485','43585','component','network'), ('34486','43585','description','{#IFALIAS}'), ('34487','43585','interface','{#IFNAME}'), ('34488','43586','component','firewall'), ('34489','43586','component','network'), ('34490','43586','description','{#IFALIAS}'), ('34491','43586','interface','{#IFNAME}'), ('34492','43587','component','network'), ('34493','43587','description','{#IFALIAS}'), ('34494','43587','interface','{#IFNAME}'), ('34495','43588','component','network'), ('34496','43588','description','{#IFALIAS}'), ('34497','43588','interface','{#IFNAME}'), ('34498','43589','component','firewall'), ('34499','43589','component','network'), ('34500','43589','description','{#IFALIAS}'), ('34501','43589','interface','{#IFNAME}'), ('34502','43590','component','firewall'), ('34503','43590','component','network'), ('34504','43590','description','{#IFALIAS}'), ('34505','43590','interface','{#IFNAME}'), ('34506','43591','component','network'), ('34507','43591','description','{#IFALIAS}'), ('34508','43591','interface','{#IFNAME}'), ('34509','43592','component','raw'), ('34510','43593','component','raw'), ('34511','43594','component','raw'), ('34512','43595','component','raw'), ('34513','43596','component','status'), ('34514','43597','component','replication'), ('34515','43597','engine','mariadb'), ('34516','43597','engine','mysql'), ('34517','43597','engine','oracle'), ('34518','43597','engine','postgres'), ('34519','43597','engine','sqlserver'), ('34520','43598','component','disk'), ('34521','43599','component','disk'), ('34522','43600','component','replication'), ('34523','43601','component','replication'), ('34524','43602','component','disk'), ('34525','43603','component','disk'), ('34526','43604','component','instance'), ('34527','43605','component','disk'), ('34528','43606','component','storage'), ('34529','43607','component','storage'), ('34530','43608','component','network'), ('34531','43609','component','network'), ('34532','43610','component','instance'), ('34533','43611','component','memory'), ('34534','43612','component','disk'), ('34535','43613','component','disk'), ('34536','43614','component','disk'), ('34537','43615','component','disk'), ('34538','43616','component','disk'), ('34539','43617','component','disk'), ('34540','43618','component','network'), ('34541','43619','component','network'), ('34542','43620','component','ebs'), ('34543','43621','component','disk'), ('34544','43622','component','instance'), ('34545','43623','component','cpu'), ('34546','43623','component','credit'), ('34547','43624','component','cpu'), ('34548','43624','component','credit'), ('34549','43625','component','cpu'), ('34550','43626','component','instance'), ('34551','43627','component','connections'), ('34552','43628','component','disk'), ('34553','43629','component','ebs'), ('34554','43630','component','instance'), ('34555','43631','component','network'), ('34556','43632','component','instance'), ('34557','43633','component','status'), ('34558','43634','component','application'), ('34559','43634','engine','sqlserver'), ('34560','43635','component','memory'), ('34561','43636','component','disk'), ('34562','43637','component','disk'), ('34563','43638','component','status'), ('34564','43639','component','status'), ('34565','43640','component','disk'), ('34566','43640','engine','mariadb'), ('34567','43640','engine','mysql'), ('34568','43641','component','disk'), ('34569','43646','component','alarms'), ('34570','43647','component','alarms'), ('34571','43648','component','replication'), ('34572','43648','engine','aurora'), ('34573','43649','component','replication'), ('34574','43649','engine','aurora'), ('34575','43650','component','replication'), ('34576','43650','engine','aurora'), ('34577','43651','component','cache'), ('34578','43651','engine','aurora'), ('34579','43652','component','operations'), ('34580','43652','engine','aurora'), ('34581','43653','component','operations'), ('34582','43653','engine','aurora'), ('34583','43654','component','operations'), ('34584','43654','engine','aurora'), ('34585','43655','component','instance'), ('34586','43655','engine','aurora'), ('34587','43656','component','application'), ('34588','43656','engine','aurora-mysql'), ('34589','43657','component','application'), ('34590','43657','engine','aurora-mysql'), ('34591','43658','component','operations'), ('34592','43658','engine','aurora-mysql'), ('34593','43659','component','operations'), ('34594','43659','engine','aurora-mysql'), ('34595','43660','component','network'), ('34596','43660','engine','aurora'), ('34597','43661','component','events'), ('34598','43661','event-categories','{#EVENT_CATEGORY}'), ('34599','43662','component','events'), ('34600','43662','event-categories','{#EVENT_CATEGORY}'), ('34601','43663','component','connections'), ('34602','43663','engine','aurora-mysql'), ('34603','43664','component','requests'), ('34604','43664','engine','aurora-mysql'), ('34605','43665','component','operations'), ('34606','43665','engine','aurora'), ('34607','43665','engine','mysql'), ('34608','43666','component','replication'), ('34609','43666','engine','aurora'), ('34610','43666','engine','mysql'), ('34611','43667','component','cache'), ('34612','43667','engine','aurora-mysql'), ('34613','43668','component','queries'), ('34614','43668','engine','aurora-mysql'), ('34615','43669','component','replication'), ('34616','43669','engine','aurora'), ('34617','43669','engine','mysql'), ('34618','43670','component','application'), ('34619','43670','engine','aurora-mysql'), ('34620','43671','component','operations'), ('34621','43671','engine','aurora-mysql'), ('34622','43672','component','operations'), ('34623','43672','engine','aurora-mysql'), ('34624','43673','component','requests'), ('34625','43673','engine','aurora-mysql'), ('34626','43674','component','replication'), ('34627','43674','engine','aurora-mysql'), ('34628','43675','component','operations'), ('34629','43675','engine','aurora-mysql'), ('34630','43676','component','operations'), ('34631','43676','engine','aurora-mysql'), ('34632','43677','component','requests'), ('34633','43677','engine','aurora-mysql'), ('34634','43678','component','requests'), ('34635','43678','engine','aurora-mysql'), ('34636','43679','component','transactions'), ('34637','43679','engine','aurora-mysql'), ('34638','43680','component','backtrack'), ('34639','43680','engine','aurora-mysql'), ('34640','43681','component','backtrack'), ('34641','43681','engine','aurora-mysql'), ('34642','43682','component','transactions'), ('34643','43682','engine','aurora-mysql'), ('34644','43683','component','operations'), ('34645','43683','engine','aurora'), ('34646','43683','engine','mysql'), ('34647','43684','component','raw'), ('34648','43685','component','raw'), ('34661','43696','component','storage'), ('34662','43697','component','status'), ('34675','43707','component','storage'), ('34677','43709','component','status'), ('34680','43712','component','alarms'), ('34681','43713','component','alarms'), ('34682','43714','component','raw'), ('34683','43715','component','raw'), ('34684','43716','component','raw'), ('34685','43717','component','health'), ('34686','43718','component','storage'), ('34687','43719','component','network'), ('34688','43720','component','memory'), ('34689','43721','component','network'), ('34690','43722','component','network'), ('34691','43723','component','storage'), ('34692','43724','component','storage'), ('34693','43725','component','storage'), ('34694','43726','component','storage'), ('34695','43727','component','storage'), ('34696','43728','component','storage'), ('34697','43729','component','network'), ('34698','43730','component','storage'), ('34699','43731','component','storage'), ('34700','43732','component','storage'), ('34701','43733','component','storage'), ('34702','43734','component','storage'), ('34703','43735','component','storage'), ('34704','43736','component','storage'), ('34705','43737','component','storage'), ('34706','43738','component','storage'), ('34707','43739','component','storage'), ('34708','43740','component','storage'), ('34709','43741','component','network'), ('34710','43742','component','network'), ('34711','43743','component','health'), ('34712','43744','component','storage'), ('34713','43745','component','storage'), ('34714','43746','component','storage'), ('34715','43747','component','cpu'), ('34716','43748','component','cpu'), ('34717','43749','component','cpu'), ('34718','43750','component','storage'), ('34719','43751','component','storage'), ('34720','43752','component','storage'), ('34721','43753','component','storage'), ('34722','43754','component','storage'), ('34723','43755','component','storage'), ('34724','43756','component','storage'), ('34725','43757','component','storage'), ('34726','43758','component','storage'), ('34727','43759','component','storage'), ('34728','43760','component','storage'), ('34729','43761','component','storage'), ('34730','43762','component','storage'), ('34732','43764','component','storage'), ('34733','43765','component','storage'), ('34734','43766','component','storage'), ('34735','43767','component','storage'), ('34736','30836','component','zookeeper'), ('34737','30842','component','zookeeper'), ('34738','30843','component','zookeeper'), ('34739','30844','component','zookeeper'), ('34740','30845','component','zookeeper'), ('34741','30873','component','zookeeper'), ('34742','34320','component','zookeeper'), ('34744','43770','component','system'), ('34745','43771','component','system'), ('34746','43772','component','system'), ('34747','43773','component','system'), ('34748','43774','component','system'), ('34749','43775','component','system'), ('34750','43776','component','system'), ('34751','43777','component','system'), ('34752','43778','component','system'), ('34753','43779','component','system'), ('34754','43780','component','system'), ('34755','43781','component','system'), ('34756','43782','component','system'), ('34757','43783','component','system'), ('34758','43784','component','system'), ('34759','43785','component','system'), ('34760','43786','component','system'), ('34761','43787','component','system'), ('34762','43788','component','system'), ('34763','43789','component','system'), ('34764','43790','component','system'), ('34765','43791','component','system'), ('34766','43792','component','system'), ('34767','43793','component','system'), ('34768','43794','component','system'), ('34769','43795','component','system'), ('34770','43796','component','system'), ('34771','43797','component','system'), ('34772','43798','component','system'), ('34773','43799','component','system'), ('34774','43800','component','system'), ('34775','43801','component','system'), ('34776','43802','component','system'), ('34777','43803','component','system'), ('34778','43804','component','system'), ('34779','43805','component','system'), ('34780','43806','component','system'), ('34781','43807','component','system'), ('34782','43808','component','system'), ('34783','43809','component','system'), ('34784','43810','component','system'), ('34785','43811','component','system'), ('34786','43812','component','system'), ('34787','43813','component','system'), ('34788','43814','component','system'), ('34789','43815','component','system'), ('34790','43816','component','system'), ('34791','43817','component','system'), ('34792','43818','component','system'), ('34793','43819','component','system'), ('34794','43820','component','system'), ('34795','43821','component','system'), ('34796','43822','component','system'), ('34797','43823','component','system'), ('34798','43824','component','system'), ('34799','43825','component','system'), ('34800','43826','component','system'), ('34801','43827','component','system'), ('34802','43828','component','system'), ('34803','43829','component','system'), ('34804','43830','component','system'), ('34805','43831','component','system'), ('34806','43832','component','system'), ('34807','43833','component','system'), ('34808','43834','component','system'), ('34809','43835','component','system'), ('34810','43836','component','system'), ('34811','43837','component','system'), ('34812','43838','component','system'), ('34813','43839','component','system'), ('34814','43840','component','system'), ('34815','43841','component','system'), ('34816','43842','component','system'), ('34817','43843','component','system'), ('34818','43844','component','system'), ('34819','43845','component','system'), ('34820','43846','component','system'), ('34821','43847','component','system'), ('34822','43848','component','system'), ('34823','43849','component','status'), ('34824','43850','component','status'), ('34825','43851','component','status'), ('34826','43852','component','status'), ('34827','43853','component','status'), ('34828','43854','component','status'), ('34829','43855','component','status'), ('34830','43856','component','system'), ('34831','43857','component','system'), ('34832','43858','component','system'), ('34833','43859','component','system'), ('34834','43860','component','system'), ('34835','43861','component','system'), ('34836','43862','component','system'), ('34837','43863','component','system'), ('34838','43864','component','system'), ('34839','43865','component','system'), ('34840','43866','component','system'), ('34841','43867','component','system'), ('34842','43868','component','system'), ('34843','43869','component','system'), ('34844','43870','component','system'), ('34845','43871','component','system'), ('34846','43872','component','system'), ('34847','43873','component','system'), ('34848','43874','component','system'), ('34849','43875','component','system'), ('34850','43876','component','system'), ('34851','43877','component','system'), ('34852','43878','component','system'), ('34853','43879','component','system'), ('34854','43880','component','system'), ('34855','43881','component','system'), ('34856','43882','component','system'), ('34857','43883','component','system'), ('34858','43884','component','system'), ('34859','43885','component','system'), ('34860','43886','component','system'), ('34861','43887','component','system'), ('34862','43888','component','system'), ('34863','43889','component','system'), ('34864','43890','component','system'), ('34870','43896','component','system'), ('34871','43897','component','system'), ('34872','43898','component','system'), ('34873','43899','component','system'), ('34874','43900','component','system'), ('34875','43901','component','raw'), ('34876','43902','component','health'), ('34877','43902','component','network'), ('34878','43903','component','raw'), ('34879','43904','component','raw'), ('34880','43926','bay-number','{#BAY_NUMBER}'), ('34881','43926','component','appliance'), ('34882','43926','enclosure','{#ENCLOSURE_NAME}'), ('34883','43927','bay-number','{#BAY_NUMBER}'), ('34884','43927','component','appliance'), ('34885','43927','enclosure','{#ENCLOSURE_NAME}'), ('34886','43928','bay-number','{#BAY_NUMBER}'), ('34887','43928','component','appliance'), ('34888','43928','enclosure','{#ENCLOSURE_NAME}'), ('34889','43929','bay-number','{#BAY_NUMBER}'), ('34890','43929','component','appliance'), ('34891','43929','enclosure','{#ENCLOSURE_NAME}'), ('34892','43930','bay-number','{#BAY_NUMBER}'), ('34893','43930','component','appliance'), ('34894','43930','enclosure','{#ENCLOSURE_NAME}'), ('34895','43931','bay-number','{#BAY_NUMBER}'), ('34896','43931','component','appliance'), ('34897','43931','enclosure','{#ENCLOSURE_NAME}'), ('34898','43932','bay-number','{#BAY_NUMBER}'), ('34899','43932','component','appliance'), ('34900','43932','enclosure','{#ENCLOSURE_NAME}'), ('34901','43933','bay-number','{#BAY_NUMBER}'), ('34902','43933','component','appliance'), ('34903','43933','enclosure','{#ENCLOSURE_NAME}'), ('34904','43934','bay-number','{#BAY_NUMBER}'), ('34905','43934','component','crossbar'), ('34906','43934','enclosure','{#ENCLOSURE_NAME}'), ('34907','43935','bay-number','{#BAY_NUMBER}'), ('34908','43935','component','crossbar'), ('34909','43935','enclosure','{#ENCLOSURE_NAME}'), ('34910','43936','bay-number','{#BAY_NUMBER}'), ('34911','43936','component','crossbar'), ('34912','43936','enclosure','{#ENCLOSURE_NAME}'), ('34913','43937','bay-number','{#BAY_NUMBER}'), ('34914','43937','component','crossbar'), ('34915','43937','enclosure','{#ENCLOSURE_NAME}'), ('34916','43938','bay-number','{#BAY_NUMBER}'), ('34917','43938','component','crossbar'), ('34918','43938','enclosure','{#ENCLOSURE_NAME}'), ('34919','43939','component','datacenter'), ('34920','43939','datacenter','{#NAME}'), ('34921','43940','component','datacenter'), ('34922','43940','datacenter','{#NAME}'), ('34923','43941','bay-number','{#BAY_NUMBER}'), ('34924','43941','component','device'), ('34925','43941','enclosure','{#ENCLOSURE_NAME}'), ('34926','43942','bay-number','{#BAY_NUMBER}'), ('34927','43942','component','device'), ('34928','43942','enclosure','{#ENCLOSURE_NAME}'), ('34929','43943','bay-number','{#BAY_NUMBER}'), ('34930','43943','component','device'), ('34931','43943','enclosure','{#ENCLOSURE_NAME}'), ('34932','43944','bay-number','{#BAY_NUMBER}'), ('34933','43944','component','device'), ('34934','43944','enclosure','{#ENCLOSURE_NAME}'), ('34935','43945','component','appliance'), ('34936','43945','component','enclosure'), ('34937','43945','enclosure','{#NAME}'), ('34938','43946','component','enclosure'), ('34939','43946','enclosure','{#NAME}'), ('34940','43947','component','enclosure'), ('34941','43947','enclosure','{#NAME}'), ('34942','43948','component','enclosure'), ('34943','43948','enclosure','{#NAME}'), ('34944','43949','component','enclosure'), ('34945','43949','enclosure','{#NAME}'), ('34946','43950','component','enclosure'), ('34947','43950','enclosure','{#NAME}'), ('34948','43951','component','enclosure'), ('34949','43951','component','power'), ('34950','43951','enclosure','{#NAME}'), ('34951','43952','component','enclosure'), ('34952','43952','component','power'), ('34953','43952','enclosure','{#NAME}'), ('34954','43953','component','enclosure'), ('34955','43953','component','power'), ('34956','43953','enclosure','{#NAME}'), ('34957','43954','component','enclosure'), ('34958','43954','component','power'), ('34959','43954','enclosure','{#NAME}'), ('34960','43955','component','enclosure'), ('34961','43955','enclosure','{#NAME}'), ('34962','43956','component','device'), ('34963','43956','component','enclosure'), ('34964','43956','enclosure','{#NAME}'), ('34965','43957','component','enclosure'), ('34966','43957','component','power'), ('34967','43957','enclosure','{#NAME}'), ('34968','43958','component','enclosure'), ('34969','43958','component','power'), ('34970','43958','enclosure','{#NAME}'), ('34971','43959','component','enclosure'), ('34972','43959','component','interconnect'), ('34973','43959','enclosure','{#NAME}'), ('34974','43960','component','enclosure'), ('34975','43960','component','interconnect'), ('34976','43960','enclosure','{#NAME}'), ('34977','43961','component','enclosure'), ('34978','43961','enclosure','{#NAME}'), ('34979','43962','component','enclosure'), ('34980','43962','component','fan'), ('34981','43962','enclosure','{#NAME}'), ('34982','43963','component','enclosure'), ('34983','43963','component','fan'), ('34984','43963','component','management'), ('34985','43963','component','power'), ('34986','43963','enclosure','{#NAME}'), ('34987','43964','component','device'), ('34988','43964','component','enclosure'), ('34989','43964','enclosure','{#NAME}'), ('34990','43965','component','enclosure'), ('34991','43965','enclosure','{#NAME}'), ('34992','43966','component','network'), ('34993','43966','network','{#NAME}'), ('34994','43967','component','network'), ('34995','43967','network','{#NAME}'), ('34996','43968','component','fabric'), ('34997','43968','fabric','{#NAME}'), ('34998','43969','component','fabric'), ('34999','43969','fabric','{#NAME}'), ('35000','43970','bay-number','{#BAY_NUMBER}'), ('35001','43970','component','fan'), ('35002','43970','enclosure','{#ENCLOSURE_NAME}'), ('35003','43971','bay-number','{#BAY_NUMBER}'), ('35004','43971','component','fan'), ('35005','43971','enclosure','{#ENCLOSURE_NAME}'), ('35006','43972','bay-number','{#BAY_NUMBER}'), ('35007','43972','component','fan'), ('35008','43972','enclosure','{#ENCLOSURE_NAME}'), ('35009','43973','bay-number','{#BAY_NUMBER}'), ('35010','43973','component','fan'), ('35011','43973','enclosure','{#ENCLOSURE_NAME}'), ('35012','43974','bay-number','{#BAY_NUMBER}'), ('35013','43974','component','fan'), ('35014','43974','enclosure','{#ENCLOSURE_NAME}'), ('35015','43975','bay-number','{#BAY_NUMBER}'), ('35016','43975','component','fan'), ('35017','43975','enclosure','{#ENCLOSURE_NAME}'), ('35018','43976','bay-number','{#BAY_NUMBER}'), ('35019','43976','component','fan'), ('35020','43976','enclosure','{#ENCLOSURE_NAME}'), ('35021','43977','bay-number','{#BAY_NUMBER}'), ('35022','43977','component','fan'), ('35023','43977','enclosure','{#ENCLOSURE_NAME}'), ('35024','43978','component','fc-network'), ('35025','43978','fc-network','{#NAME}'), ('35026','43979','component','fc-network'), ('35027','43979','fc-network','{#NAME}'), ('35028','43980','bay-number','{#BAY_NUMBER}'), ('35029','43980','component','manager'), ('35030','43980','enclosure','{#ENCLOSURE_NAME}'), ('35031','43981','bay-number','{#BAY_NUMBER}'), ('35032','43981','component','manager'), ('35033','43981','enclosure','{#ENCLOSURE_NAME}'), ('35034','43982','bay-number','{#BAY_NUMBER}'), ('35035','43982','component','manager'), ('35036','43982','enclosure','{#ENCLOSURE_NAME}'), ('35037','43983','bay-number','{#BAY_NUMBER}'), ('35038','43983','component','manager'), ('35039','43983','enclosure','{#ENCLOSURE_NAME}'), ('35040','43984','bay-number','{#BAY_NUMBER}'), ('35041','43984','component','manager'), ('35042','43984','enclosure','{#ENCLOSURE_NAME}'), ('35043','43985','bay-number','{#BAY_NUMBER}'), ('35044','43985','component','manager'), ('35045','43985','enclosure','{#ENCLOSURE_NAME}'), ('35046','43986','bay-number','{#BAY_NUMBER}'), ('35047','43986','component','manager'), ('35048','43986','enclosure','{#ENCLOSURE_NAME}'), ('35049','43987','bay-number','{#BAY_NUMBER}'), ('35050','43987','component','manager'), ('35051','43987','enclosure','{#ENCLOSURE_NAME}'), ('35052','43988','bay-number','{#BAY_NUMBER}'), ('35053','43988','component','manager'), ('35054','43988','enclosure','{#ENCLOSURE_NAME}'), ('35055','43989','bay-number','{#BAY_NUMBER}'), ('35056','43989','component','manager'), ('35057','43989','enclosure','{#ENCLOSURE_NAME}'), ('35058','43990','bay-number','{#BAY_NUMBER}'), ('35059','43990','component','manager'), ('35060','43990','enclosure','{#ENCLOSURE_NAME}'), ('35061','43991','component','hypervisor-manager'), ('35062','43991','hypervisor-manager','{#NAME}'), ('35063','43992','component','hypervisor-manager'), ('35064','43992','hypervisor-manager','{#NAME}'), ('35065','43993','component','hypervisor-manager'), ('35066','43993','hypervisor-manager','{#NAME}'), ('35067','43994','component','health'), ('35068','43994','component','interconnect'), ('35069','43994','interconnect','{#NAME}'), ('35070','43995','component','interconnect'), ('35071','43995','interconnect','{#NAME}'), ('35072','43996','component','interconnect'), ('35073','43996','interconnect','{#NAME}'), ('35074','43997','component','interconnect'), ('35075','43997','interconnect','{#NAME}'), ('35076','43998','component','interconnect'), ('35077','43998','interconnect','{#NAME}'), ('35078','43999','component','interconnect'), ('35079','43999','interconnect','{#NAME}'), ('35080','44000','component','interconnect'), ('35081','44000','interconnect','{#NAME}'), ('35082','44001','component','interconnect'), ('35083','44001','interconnect','{#NAME}'), ('35084','44002','component','logical-enclosure'), ('35085','44002','logical-enclosure','{#NAME}'), ('35086','44003','component','logical-enclosure'), ('35087','44003','logical-enclosure','{#NAME}'), ('35088','44004','component','partition'), ('35089','44004','enclosure','{#ENCLOSURE_NAME}'), ('35090','44004','partition','{#PARTITION_ID}'), ('35091','44005','component','health'), ('35092','44005','component','partition'), ('35093','44005','enclosure','{#ENCLOSURE_NAME}'), ('35094','44005','partition','{#PARTITION_ID}'), ('35095','44006','component','memory'), ('35096','44006','component','partition'), ('35097','44006','enclosure','{#ENCLOSURE_NAME}'), ('35098','44006','partition','{#PARTITION_ID}'), ('35099','44007','component','cpu'), ('35100','44007','component','partition'), ('35101','44007','enclosure','{#ENCLOSURE_NAME}'), ('35102','44007','partition','{#PARTITION_ID}'), ('35103','44008','component','partition'), ('35104','44008','enclosure','{#ENCLOSURE_NAME}'), ('35105','44008','partition','{#PARTITION_ID}'), ('35106','44009','bay-number','{#BAY_NUMBER}'), ('35107','44009','component','power'), ('35108','44009','enclosure','{#ENCLOSURE_NAME}'), ('35109','44010','bay-number','{#BAY_NUMBER}'), ('35110','44010','component','power'), ('35111','44010','enclosure','{#ENCLOSURE_NAME}'), ('35112','44011','bay-number','{#BAY_NUMBER}'), ('35113','44011','component','power'), ('35114','44011','enclosure','{#ENCLOSURE_NAME}'), ('35115','44012','bay-number','{#BAY_NUMBER}'), ('35116','44012','component','power'), ('35117','44012','enclosure','{#ENCLOSURE_NAME}'), ('35118','44013','bay-number','{#BAY_NUMBER}'), ('35119','44013','component','power'), ('35120','44013','enclosure','{#ENCLOSURE_NAME}'), ('35121','44014','bay-number','{#BAY_NUMBER}'), ('35122','44014','component','power'), ('35123','44014','enclosure','{#ENCLOSURE_NAME}'), ('35124','44015','bay-number','{#BAY_NUMBER}'), ('35125','44015','component','power'), ('35126','44015','enclosure','{#ENCLOSURE_NAME}'), ('35127','44016','component','rack'), ('35128','44016','rack','{#NAME}'), ('35129','44017','component','rack'), ('35130','44017','rack','{#NAME}'), ('35131','44018','component','cpu'), ('35132','44018','component','server'), ('35133','44018','location','{#LOCATION}'), ('35134','44018','server','{#SERVER_NAME}'), ('35135','44019','component','cpu'), ('35136','44019','component','server'), ('35137','44019','location','{#LOCATION}'), ('35138','44019','server','{#SERVER_NAME}'), ('35139','44020','component','cpu'), ('35140','44020','component','server'), ('35141','44020','location','{#LOCATION}'), ('35142','44020','server','{#SERVER_NAME}'), ('35143','44021','component','cpu'), ('35144','44021','component','server'), ('35145','44021','location','{#LOCATION}'), ('35146','44021','server','{#SERVER_NAME}'), ('35147','44022','component','server'), ('35148','44022','location','{#LOCATION}'), ('35149','44022','server','{#SERVER_NAME}'), ('35150','44023','component','server'), ('35151','44023','location','{#LOCATION}'), ('35152','44023','server','{#SERVER_NAME}'), ('35153','44024','component','memory'), ('35154','44024','component','server'), ('35155','44024','location','{#LOCATION}'), ('35156','44024','server','{#SERVER_NAME}'), ('35157','44025','component','server'), ('35158','44025','location','{#LOCATION}'), ('35159','44025','server','{#SERVER_NAME}'), ('35160','44026','component','server'), ('35161','44026','location','{#LOCATION}'), ('35162','44026','server','{#SERVER_NAME}'), ('35163','44027','component','server'), ('35164','44027','location','{#LOCATION}'), ('35165','44027','server','{#SERVER_NAME}'), ('35166','44028','component','power'), ('35167','44028','component','server'), ('35168','44028','location','{#LOCATION}'), ('35169','44028','server','{#SERVER_NAME}'), ('35170','44029','component','server'), ('35171','44029','location','{#LOCATION}'), ('35172','44029','server','{#SERVER_NAME}'), ('35173','44030','component','server'), ('35174','44030','location','{#LOCATION}'), ('35175','44030','server','{#SERVER_NAME}'), ('35176','44031','component','server'), ('35177','44031','location','{#LOCATION}'), ('35178','44031','server','{#SERVER_NAME}'), ('35179','44032','component','server'), ('35180','44032','location','{#LOCATION}'), ('35181','44032','server','{#SERVER_NAME}'), ('35182','44033','component','storage'), ('35183','44033','pool','{#NAME}'), ('35184','44034','component','storage'), ('35185','44034','pool','{#NAME}'), ('35186','44035','component','storage'), ('35187','44035','pool','{#NAME}'), ('35188','44036','component','storage'), ('35189','44036','pool','{#NAME}'), ('35190','44037','component','storage'), ('35191','44037','pool','{#NAME}'), ('35192','44038','component','storage'), ('35193','44038','pool','{#NAME}'), ('35194','44039','component','storage'), ('35195','44039','system','{#NAME}'), ('35196','44040','component','storage'), ('35197','44040','system','{#NAME}'), ('35198','44041','component','storage'), ('35199','44041','system','{#NAME}'), ('35200','44042','component','storage'), ('35201','44042','system','{#NAME}'), ('35202','44043','component','storage'), ('35203','44043','system','{#NAME}'), ('35204','44044','component','storage'), ('35205','44044','volume','{#NAME}'), ('35206','44045','component','storage'), ('35207','44045','volume','{#NAME}'), ('35208','44046','component','storage'), ('35209','44046','volume','{#NAME}'), ('35210','44047','component','storage'), ('35211','44047','volume','{#NAME}'), ('35212','44048','component','network'), ('35213','44048','component','uplink-set'), ('35214','44048','uplink-set','{#NAME}'), ('35215','44049','component','network'), ('35216','44049','component','uplink-set'), ('35217','44049','uplink-set','{#NAME}'), ('35218','44050','component','system'), ('35219','44051','component','system'), ('35222','42202','component','security'), ('35223','42242','component','security'), ('35224','42334','component','security'), ('35225','44055','component','raw'), ('35226','44056','component','raw'), ('35227','44059','component','proxy'), ('35228','44059','proxy-name','{#PROXY.NAME}'), ('35229','44060','component','proxy'), ('35230','44060','proxy-name','{#PROXY.NAME}'), ('35231','44061','component','proxy'), ('35232','44061','proxy-name','{#PROXY.NAME}'), ('35233','44062','component','proxy'), ('35234','44062','proxy-name','{#PROXY.NAME}'), ('35235','44063','component','proxy'), ('35236','44063','proxy-name','{#PROXY.NAME}'), ('35237','44064','component','proxy'), ('35238','44064','proxy-name','{#PROXY.NAME}'), ('35239','44065','component','proxy'), ('35240','44065','proxy-name','{#PROXY.NAME}'), ('35241','44066','component','proxy'), ('35242','44066','proxy-name','{#PROXY.NAME}'), ('35243','44067','component','proxy'), ('35244','44067','proxy-name','{#PROXY.NAME}'), ('35245','44068','component','proxy'), ('35246','44068','proxy-name','{#PROXY.NAME}'), ('35247','44069','component','proxy'), ('35248','44069','proxy-name','{#PROXY.NAME}'), ('35249','44070','component','proxy'), ('35250','44070','proxy-name','{#PROXY.NAME}'), ('35251','44071','component','proxy'), ('35252','44071','proxy-name','{#PROXY.NAME}'), ('35253','44072','component','proxy'), ('35254','44072','proxy-name','{#PROXY.NAME}'), ('35255','44073','component','proxy'), ('35256','44073','proxy-name','{#PROXY.NAME}'), ('35257','44074','component','proxy'), ('35258','44074','proxy-name','{#PROXY.NAME}'), ('35259','44075','component','proxy'), ('35260','44075','proxy-name','{#PROXY.NAME}'), ('35261','44076','component','proxy'), ('35262','44076','proxy-name','{#PROXY.NAME}'), ('35263','44077','component','proxy'), ('35264','44077','proxy-name','{#PROXY.NAME}'), ('35265','44078','component','proxy'), ('35266','44078','proxy-name','{#PROXY.NAME}'), ('35267','44079','component','proxy'), ('35268','44079','proxy-name','{#PROXY.NAME}'), ('35269','44080','component','proxy'), ('35270','44080','proxy-name','{#PROXY.NAME}'), ('35271','44081','component','raw'), ('35272','44083','component','proxy'), ('35273','44083','proxy-name','{#PROXY.NAME}'), ('35274','44084','component','proxy'), ('35275','44084','proxy-name','{#PROXY.NAME}'), ('35276','44085','component','proxy'), ('35277','44085','proxy-name','{#PROXY.NAME}'), ('35278','44086','component','proxy'), ('35279','44086','proxy-name','{#PROXY.NAME}'), ('35280','44087','component','proxy'), ('35281','44087','proxy-name','{#PROXY.NAME}'), ('35282','44088','component','proxy'), ('35283','44088','proxy-name','{#PROXY.NAME}'), ('35284','44089','component','proxy'), ('35285','44089','proxy-name','{#PROXY.NAME}'), ('35286','44090','component','proxy'), ('35287','44090','proxy-name','{#PROXY.NAME}'), ('35288','44091','component','proxy'), ('35289','44091','proxy-name','{#PROXY.NAME}'), ('35290','44092','component','proxy'), ('35291','44092','proxy-name','{#PROXY.NAME}'), ('35292','44093','component','proxy'), ('35293','44093','proxy-name','{#PROXY.NAME}'), ('35294','44094','component','raw'), ('35295','44095','component','raw'), ('35296','44096','component','raw'), ('35297','44097','component','raw'), ('35298','44098','component','raw'), ('35299','44099','component','raw'), ('35300','44100','component','raw'), ('35301','44101','component','raw'), ('35302','44102','component','raw'), ('35303','44103','component','raw'), ('35304','44104','component','raw'), ('35305','44105','component','raw'), ('35306','44106','component','raw'), ('35307','44107','component','raw'), ('35308','44108','component','controller'), ('35309','44108','component','raw'), ('35310','44108','controller','{#CONTROLLER.ID}'), ('35311','44109','component','controller'), ('35312','44109','component','raw'), ('35313','44109','controller','{#CONTROLLER.ID}'), ('35314','44110','component','disk'), ('35315','44110','component','raw'), ('35316','44110','disk','{#DURABLE.ID}'), ('35317','44111','component','disk-group'), ('35318','44111','component','raw'), ('35319','44111','disk-group','{#NAME}'), ('35320','44112','component','disk-group'), ('35321','44112','component','raw'), ('35322','44112','disk-group','{#NAME}'), ('35323','44113','component','enclosure'), ('35324','44113','component','raw'), ('35325','44113','enclosure','{#DURABLE.ID}'), ('35326','44114','component','fan'), ('35327','44114','component','raw'), ('35328','44114','fan','{#DURABLE.ID}'), ('35329','44115','component','fru'), ('35330','44115','component','raw'), ('35331','44115','fru','Enclosure {#ENCLOSURE.ID}: {#LOCATION}'), ('35332','44116','component','pool'), ('35333','44116','component','raw'), ('35334','44116','pool','{#NAME}'), ('35335','44117','component','port'), ('35336','44117','component','raw'), ('35337','44117','port','{#NAME}'), ('35338','44118','component','power-supply'), ('35339','44118','component','raw'), ('35340','44118','power-supply','{#DURABLE.ID}'), ('35341','44119','component','raw'), ('35342','44119','component','volume'), ('35343','44119','volume','{#NAME}'), ('35344','44120','component','raw'), ('35345','44120','component','volume'), ('35346','44120','volume','{#NAME}'), ('35347','44121','component','raw'), ('35348','44122','component','raw'), ('35349','44123','component','raw'), ('35350','44124','component','raw'), ('35351','44125','component','raw'), ('35352','44126','component','raw'), ('35353','44127','component','raw'), ('35354','44128','component','raw'), ('35355','44129','component','raw'), ('35356','44130','component','raw'), ('35357','44131','component','raw'), ('35358','44132','component','raw'), ('35359','44133','component','raw'), ('35360','44134','component','raw'), ('35361','44135','component','controller'), ('35362','44135','component','raw'), ('35363','44135','controller','{#CONTROLLER.ID}'), ('35364','44136','component','controller'), ('35365','44136','component','raw'), ('35366','44136','controller','{#CONTROLLER.ID}'), ('35367','44137','component','disk'), ('35368','44137','component','raw'), ('35369','44137','disk','{#DURABLE.ID}'), ('35370','44138','component','disk-group'), ('35371','44138','component','raw'), ('35372','44138','disk-group','{#NAME}'), ('35373','44139','component','disk-group'), ('35374','44139','component','raw'), ('35375','44139','disk-group','{#NAME}'), ('35376','44140','component','enclosure'), ('35377','44140','component','raw'), ('35378','44140','enclosure','{#DURABLE.ID}'), ('35379','44141','component','fan'), ('35380','44141','component','raw'), ('35381','44141','fan','{#DURABLE.ID}'), ('35382','44142','component','fru'), ('35383','44142','component','raw'), ('35384','44142','fru','Enclosure {#ENCLOSURE.ID}: {#LOCATION}'), ('35385','44143','component','pool'), ('35386','44143','component','raw'), ('35387','44143','pool','{#NAME}'), ('35388','44144','component','port'), ('35389','44144','component','raw'), ('35390','44144','port','{#NAME}'), ('35391','44145','component','power-supply'), ('35392','44145','component','raw'), ('35393','44145','power-supply','{#DURABLE.ID}'), ('35394','44146','component','raw'), ('35395','44146','component','volume'), ('35396','44146','volume','{#NAME}'), ('35397','44147','component','raw'), ('35398','44147','component','volume'), ('35399','44147','volume','{#NAME}'), ('35400','44148','component','raw'), ('35401','44149','component','raw'), ('35402','44150','component','raw'), ('35403','44151','component','raw'), ('35404','44152','component','raw'), ('35405','44153','component','raw'), ('35406','44154','component','raw'), ('35407','44155','component','cpg'), ('35408','44155','component','raw'), ('35409','44155','cpg','{#NAME}'), ('35410','44156','component','disk'), ('35411','44156','component','raw'), ('35412','44156','disk','{#POSITION}'), ('35413','44157','component','host'), ('35414','44157','component','raw'), ('35415','44157','host','{#NAME}'), ('35416','44158','component','port'), ('35417','44158','component','raw'), ('35418','44158','port','{#NODE}:{#SLOT}:{#CARD.PORT}'), ('35419','44159','component','raw'), ('35420','44159','component','task'), ('35421','44159','task','{#NAME}'), ('35422','44160','component','raw'), ('35423','44160','component','volume'), ('35424','44160','volume','{#NAME}'), ('35425','44161','component','raw'), ('35426','44162','component','raw'), ('35427','44163','component','health'), ('35428','44164','component','memory'), ('35429','44165','component','storage'), ('35430','44166','component','storage'), ('35431','44167','component','storage'), ('35432','44168','component','replication'), ('35433','44169','component','queries'), ('35434','44170','component','network'), ('35435','44171','component','network'), ('35436','44172','component','operations'), ('35437','44173','component','health'), ('35438','44174','component','raw'), ('35439','44175','component','cpu'), ('35440','44176','component','cpu'), ('35441','44177','component','cpu'), ('35442','44178','component','network'), ('35443','44179','component','network'), ('35444','44180','component','network'), ('35445','44181','component','storage'), ('35446','44182','component','health'), ('35447','44183','component','replication'), ('35448','44184','component','storage'), ('35449','44185','component','storage'), ('35450','44186','component','storage'), ('35451','44187','component','storage'), ('35452','44188','component','storage'), ('35453','44189','component','storage'), ('35454','44190','component','network'), ('35455','44191','component','network'), ('35456','44192','component','health'), ('35457','44193','component','memory'), ('35458','44194','component','operations'), ('35459','44195','component','raw'), ('35460','44196','component','cpu'), ('35461','44197','component','network'), ('35462','44198','component','network'), ('35463','44199','component','storage'), ('35464','44201','component','raw'), ('35465','44202','component','raw'), ('35466','44203','component','raw'), ('35467','44204','component','raw'), ('35468','44205','component','raw'), ('35469','44206','component','raw'), ('35470','44207','component','raw'), ('35471','44208','component','raw'), ('35472','44209','component','raw'), ('35473','44210','component','raw'), ('35474','44211','component','raw'), ('35475','44212','component','raw'), ('35476','44213','component','raw'), ('35477','44214','bay-number','{#BAY_NUMBER}'), ('35478','44214','component','appliance'), ('35479','44214','component','raw'), ('35480','44214','enclosure','{#ENCLOSURE_NAME}'), ('35481','44215','bay-number','{#BAY_NUMBER}'), ('35482','44215','component','crossbar'), ('35483','44215','component','raw'), ('35484','44215','enclosure','{#ENCLOSURE_NAME}'), ('35485','44216','component','datacenter'), ('35486','44216','component','raw'), ('35487','44216','datacenter','{#NAME}'), ('35488','44217','bay-number','{#BAY_NUMBER}'), ('35489','44217','component','device'), ('35490','44217','component','raw'), ('35491','44217','enclosure','{#ENCLOSURE_NAME}'), ('35492','44218','component','enclosure'), ('35493','44218','component','raw'), ('35494','44218','enclosure','{#NAME}'), ('35495','44219','component','network'), ('35496','44219','component','raw'), ('35497','44219','network','{#NAME}'), ('35498','44220','component','fabric'), ('35499','44220','component','raw'), ('35500','44220','fabric','{#NAME}'), ('35501','44221','bay-number','{#BAY_NUMBER}'), ('35502','44221','component','fan'), ('35503','44221','component','raw'), ('35504','44221','enclosure','{#ENCLOSURE_NAME}'), ('35505','44222','component','fc-network'), ('35506','44222','component','raw'), ('35507','44222','fc-network','{#NAME}'), ('35508','44223','bay-number','{#BAY_NUMBER}'), ('35509','44223','component','manager'), ('35510','44223','component','raw'), ('35511','44223','enclosure','{#ENCLOSURE_NAME}'), ('35512','44224','component','hypervisor-manager'), ('35513','44224','component','raw'), ('35514','44224','hypervisor-manager','{#NAME}'), ('35515','44225','component','interconnect'), ('35516','44225','component','raw'), ('35517','44225','interconnect','{#NAME}'), ('35518','44226','component','logical-enclosure'), ('35519','44226','component','raw'), ('35520','44226','logical-enclosure','{#NAME}'), ('35521','44227','component','partition'), ('35522','44227','component','raw'), ('35523','44227','enclosure','{#ENCLOSURE_NAME}'), ('35524','44227','partition','{#PARTITION_ID}'), ('35525','44228','bay-number','{#BAY_NUMBER}'), ('35526','44228','component','power'), ('35527','44228','component','raw'), ('35528','44228','enclosure','{#ENCLOSURE_NAME}'), ('35529','44229','component','rack'), ('35530','44229','component','raw'), ('35531','44229','rack','{#NAME}'), ('35532','44230','component','raw'), ('35533','44230','component','server'), ('35534','44230','location','{#LOCATION}'), ('35535','44230','server','{#SERVER_NAME}'), ('35536','44231','component','raw'), ('35537','44231','component','storage'), ('35538','44231','pool','{#NAME}'), ('35539','44232','component','raw'), ('35540','44232','component','storage'), ('35541','44232','system','{#NAME}'), ('35542','44233','component','raw'), ('35543','44233','component','storage'), ('35544','44233','volume','{#NAME}'), ('35545','44234','component','network'), ('35546','44234','component','raw'), ('35547','44234','component','uplink-set'), ('35548','44234','uplink-set','{#NAME}'), ('35570','44247','component','raw'), ('35571','44247','node','{#NODE}'), ('35572','44247','pod','{#POD}'), ('35573','44248','component','raw'), ('35574','44249','component','raw'), ('35575','44250','component','health'), ('35576','44251','component','storage'), ('35577','44252','component','storage'), ('35578','44253','component','storage'), ('35579','44254','component','storage'), ('35580','44255','component','storage'), ('35581','44256','component','storage'), ('35582','44257','component','network'), ('35583','44258','component','network'), ('35584','44259','component','memory'), ('35585','44260','component','storage'), ('35586','44261','component','storage'), ('35587','44262','component','storage'), ('35588','44263','component','health'), ('35589','44264','component','storage'), ('35590','44265','component','storage'), ('35591','44266','component','raw'), ('35592','44267','component','cpu'), ('35593','44268','component','cpu'), ('35594','44269','component','cpu'), ('35595','44270','component','network'), ('35596','44271','component','network'), ('35597','44272','component','network'), ('35598','44273','component','storage'), ('35599','44274','component','health'), ('35600','44275','component','replication'), ('35601','44276','component','storage'), ('35602','44277','component','storage'), ('35603','44278','component','storage'), ('35604','44279','component','storage'), ('35605','44280','component','storage'), ('35606','44281','component','storage'), ('35607','44282','component','replication'), ('35608','44283','component','network'), ('35609','44284','component','health'), ('35610','44285','component','network'), ('35611','44286','component','memory'), ('35612','44287','component','operations'), ('35613','44288','component','raw'), ('35614','44289','component','cpu'), ('35615','44290','component','network'), ('35616','44291','component','network'), ('35617','44292','component','storage'), ('35618','44294','component','raw'), ('35619','44295','component','raw'), ('35620','44296','component','raw'), ('35622','44298','component','raw'), ('35623','44299','component','raw'), ('35624','44300','component','raw'), ('35625','44301','component','error'), ('35626','44302','component','network'), ('35627','44303','component','health'), ('35628','44304','component','error'), ('35629','44305','component','error'), ('35630','44306','component','error'), ('35631','44307','component','license'), ('35632','44308','component','license'), ('35633','44309','component','policy'), ('35634','44310','component','policy'), ('35635','44311','component','policy'), ('35636','44312','component','policy'), ('35637','44313','component','policy'), ('35638','44319','component','network'), ('35639','44319','ip','{#IP}'), ('35640','44319','network','{#NETWORK.ID}'), ('35641','44319','serial-number','{#SERIAL}'), ('35642','44319','uplink','{#UPLINK}'), ('35643','44320','component','network'), ('35644','44320','ip','{#IP}'), ('35645','44320','network','{#NETWORK.ID}'), ('35646','44320','serial-number','{#SERIAL}'), ('35647','44320','uplink','{#UPLINK}'), ('35648','44321','component','network'), ('35649','44321','component','uplink'), ('35650','44321','interface','{#INTERFACE}'), ('35651','44321','network','{#NETWORK.NAME}'), ('35652','44321','serial-number','{#UPLINK.DEVICE.SERIAL}'), ('35654','44323','component','vpn'), ('35655','44324','component','vpn'), ('35656','44325','component','vpn'), ('35657','44326','component','vpn'), ('35658','44327','component','vpn'), ('35659','44328','component','vpn'), ('35660','44329','component','vpn'), ('35661','44330','component','vpn'), ('35662','44331','component','vpn'), ('35663','44332','component','vpn'), ('35664','44333','component','vpn'), ('35665','44334','component','vpn'), ('35666','44335','component','raw'), ('35667','44337','component','cpu'), ('35668','44338','component','raw'), ('35669','44339','component','system'), ('35670','44340','component','memory'), ('35671','44341','component','memory'), ('35672','44342','component','memory'), ('35673','44343','component','raw'), ('35674','44345','component','cpu'), ('35675','44346','component','raw'), ('35676','44347','component','system'), ('35677','44348','component','memory'), ('35678','44349','component','memory'), ('35679','44350','component','memory'), ('35680','44351','component','raw'), ('35681','44353','component','cpu'), ('35682','44354','component','raw'), ('35683','44355','component','system'), ('35684','44356','component','memory'), ('35685','44357','component','memory'), ('35686','44358','component','memory'), ('35687','44359','component','raw'), ('35688','44361','component','cpu'), ('35689','44362','component','raw'), ('35690','44363','component','raw'), ('35691','44364','component','raw'), ('35692','44365','component','system'), ('35693','44366','component','memory'), ('35694','44367','component','memory'), ('35695','44368','component','memory'), ('35696','44369','component','raw'), ('35697','44370','component','raw'), ('35718','44381','component','health'), ('35719','44381','component','network'), ('35720','44382','component','health'), ('35721','44382','component','network'), ('35722','44383','component','health'), ('35723','44383','component','network'), ('35724','44384','component','system'), ('35725','44385','component','system'), ('35726','44386','component','system'), ('35727','44387','component','system'), ('35728','44388','component','system'), ('35729','44389','component','system'), ('35730','44390','component','system'), ('35731','44391','component','system'), ('35732','44392','component','system'), ('35733','44393','component','system'), ('35734','44394','component','system'), ('35735','44403','component','cpu'), ('35736','44404','component','serial-number'), ('35737','44404','entity','{#ENT_NAME}'), ('35738','44405','component','fan'), ('35739','44406','component','memory'), ('35740','44406','memory','{#SNMPVALUE}'), ('35741','44407','component','memory'), ('35742','44407','memory','{#SNMPVALUE}'), ('35743','44408','component','memory'), ('35744','44408','memory','{#SNMPVALUE}'), ('35745','44409','component','network'), ('35746','44409','description','{#IFALIAS}'), ('35747','44409','interface','{#IFNAME}'), ('35748','44410','component','network'), ('35749','44410','description','{#IFALIAS}'), ('35750','44410','interface','{#IFNAME}'), ('35751','44411','component','network'), ('35752','44411','description','{#IFALIAS}'), ('35753','44411','interface','{#IFNAME}'), ('35754','44412','component','network'), ('35755','44412','description','{#IFALIAS}'), ('35756','44412','interface','{#IFNAME}'), ('35757','44413','component','network'), ('35758','44413','description','{#IFALIAS}'), ('35759','44413','interface','{#IFNAME}'), ('35760','44414','component','network'), ('35761','44414','description','{#IFALIAS}'), ('35762','44414','interface','{#IFNAME}'), ('35763','44415','component','network'), ('35764','44415','description','{#IFALIAS}'), ('35765','44415','interface','{#IFNAME}'), ('35766','44416','component','network'), ('35767','44416','description','{#IFALIAS}'), ('35768','44416','interface','{#IFNAME}'), ('35769','44417','component','network'), ('35770','44417','description','{#IFALIAS}'), ('35771','44417','interface','{#IFNAME}'), ('35772','44418','component','network'), ('35773','44418','description','{#IFALIAS}'), ('35774','44418','interface','{#IFNAME}'), ('35775','44419','component','power'), ('35776','44420','component','temperature'), ('35777','44420','sensor','{#SNMPVALUE}'), ('35778','44421','component','temperature'), ('35779','44421','sensor','{#SNMPVALUE}'), ('35780','44422','component','raw'), ('35781','44423','component','raw'), ('35782','44424','component','raw'), ('35783','44425','component','raw'), ('35784','44426','component','raw'), ('35785','44427','component','raw'), ('35787','44428','component','raw'), ('35788','44428','filesystem','{#FSNAME}'), ('35790','44429','filesystem','{#FSNAME}'), ('35791','44430','component','raw'), ('35793','44431','component','raw'), ('35794','44431','filesystem','{#FSNAME}'), ('35796','44432','filesystem','{#FSNAME}'), ('35797','44433','component','raw'), ('35799','44434','component','raw'), ('35800','44434','filesystem','{#FSNAME}'), ('35802','44435','filesystem','{#FSNAME}'), ('35803','44436','component','raw'), ('35804','44437','component','raw'), ('35805','44438','component','raw'), ('35806','44438','component','storage'), ('35807','44438','filesystem','{#FSNAME}'), ('35808','44439','component','raw'), ('35809','44439','component','storage'), ('35810','44439','filesystem','{#FSNAME}'), ('35811','44440','component','storage'), ('35812','44440','filesystem','{#FSNAME}'), ('35813','44441','component','storage'), ('35814','44441','filesystem','{#FSNAME}'), ('35815','44442','component','raw'), ('35816','44443','component','raw'), ('35817','44443','component','storage'), ('35818','44443','filesystem','{#FSNAME}'), ('35819','44444','component','storage'), ('35820','44444','filesystem','{#FSNAME}'), ('35821','44445','component','raw'), ('35823','44446','component','raw'), ('35824','44446','filesystem','{#FSNAME}'), ('35825','44447','component','raw'), ('35827','44448','component','raw'), ('35828','44448','filesystem','{#FSNAME}'), ('35830','44449','filesystem','{#FSNAME}'), ('35831','44450','component','raw'), ('35833','44451','component','raw'), ('35834','44451','filesystem','{#FSNAME}'), ('35836','44452','filesystem','{#FSNAME}'), ('35837','44453','component','raw'), ('35838','44454','component','raw'), ('35839','44454','component','storage'), ('35840','44454','filesystem','{#FSNAME}'), ('35841','44455','component','raw'), ('35842','44456','component','raw'), ('35843','44456','component','storage'), ('35844','44456','filesystem','{#FSNAME}'), ('35845','44457','component','raw'), ('35846','44458','component','raw'), ('35847','44459','component','raw'), ('35848','44460','component','raw'), ('35849','44461','component','raw'), ('35850','44462','component','raw'), ('35851','44463','component','server'), ('35852','44464','component','server'), ('35853','44465','component','server'), ('35854','44466','component','job'), ('35855','44467','component','job'), ('35856','44472','component','raw'), ('35857','44473','component','raw'), ('35858','44474','component','raw'), ('35859','44475','component','service'), ('35860','44475','service-metric','jobs-completed'), ('35861','44475','service-metric','jobs-stats'), ('35862','44475','service-name','{#SERVICE.NAME}'), ('35863','44476','component','service'), ('35864','44476','service-metric','jobs-error'), ('35865','44476','service-metric','jobs-stats'), ('35866','44476','service-name','{#SERVICE.NAME}'), ('35867','44477','component','service'), ('35868','44477','service-metric','jobs-executed'), ('35869','44477','service-metric','jobs-stats'), ('35870','44477','service-name','{#SERVICE.NAME}'), ('35871','44478','component','service'), ('35872','44478','service-metric','jobs-stats'), ('35873','44478','service-metric','jobs-wait_condition'), ('35874','44478','service-name','{#SERVICE.NAME}'), ('35875','44479','component','service'), ('35876','44479','service-metric','jobs-stats'), ('35877','44479','service-metric','jobs-wait_host'), ('35878','44479','service-name','{#SERVICE.NAME}'), ('35879','44480','component','service'), ('35880','44480','service-metric','jobs-stats'), ('35881','44480','service-metric','jobs-wait-resource'), ('35882','44480','service-name','{#SERVICE.NAME}'), ('35883','44481','component','service'), ('35884','44481','service-metric','jobs-stats'), ('35885','44481','service-metric','jobs-wait_workload'), ('35886','44481','service-name','{#SERVICE.NAME}'), ('35887','44482','component','service'), ('35888','44482','service-metric','status'), ('35889','44482','service-name','{#SERVICE.NAME}'), ('35890','44483','agent-metric','status'), ('35891','44483','agent-name','{#AGENT.NAME}'), ('35892','44483','component','agent'), ('35893','44484','agent-metric','version'), ('35894','44484','agent-name','{#AGENT.NAME}'), ('35895','44484','component','agent'), ('35896','44485','component','job'), ('35897','44485','job-metric','held'), ('35898','44485','job-name','{#JOB.ID}'), ('35899','44486','component','job'), ('35900','44486','job-metric','runs'), ('35901','44486','job-name','{#JOB.ID}'), ('35902','44487','component','job'), ('35903','44487','job-metric','status'), ('35904','44487','job-name','{#JOB.ID}'), ('35905','44488','component','job'), ('35906','44488','job-metric','type'), ('35907','44488','job-name','{#JOB.ID}'), ('35908','44489','component','raw'), ('35909','44490','component','raw'), ('35910','44491','component','raw'), ('35911','44492','component','computers'), ('35912','44492','component','raw'), ('35913','44492','computer','{#DISPLAY_NAME}'), ('35914','44493','component','health'), ('35915','44493','component','jobs'), ('35916','44493','component','raw'), ('35917','44493','job','{#NAME}'), ('35918','44494','component','raw'), ('35919','44495','component','status'), ('35920','44500','component','jobs'), ('35921','44500','component','raw'), ('35922','44501','component','proxies'), ('35923','44501','component','raw'), ('35924','44501','proxy','{#NAME}'), ('35925','44502','component','proxies'), ('35926','44502','component','raw'), ('35927','44502','proxy','{#NAME}'), ('35928','44503','component','raw'), ('35929','44503','component','repositories'), ('35930','44503','repository','{#NAME}'), ('35931','44504','component','raw'), ('35932','44504','session','{#NAME}'), ('35933','44505','component','jobs'), ('35934','44505','job','{#NAME}'), ('35935','44505','workload','{#WORKLOAD}'), ('35936','44506','component','jobs'), ('35937','44506','job','{#NAME}'), ('35938','44506','workload','{#WORKLOAD}'), ('35939','44507','component','proxies'), ('35940','44507','proxy','{#NAME}'), ('35941','44508','component','proxies'), ('35942','44508','proxy','{#NAME}'), ('35943','44509','component','proxies'), ('35944','44509','proxy','{#NAME}'), ('35945','44510','component','repositories'), ('35946','44510','repository','{#NAME}'), ('35947','44511','component','repositories'), ('35948','44511','repository','{#NAME}'), ('35949','44512','component','sessions'), ('35950','44512','creation-date','{#CREATION.TIME}'), ('35951','44512','session','{#NAME}'), ('35952','44513','component','sessions'), ('35953','44513','creation-date','{#CREATION.TIME}'), ('35954','44513','session','{#NAME}'), ('35955','44514','component','sessions'), ('35956','44514','creation-date','{#CREATION.TIME}'), ('35957','44514','session','{#NAME}'), ('35958','44515','component','sessions'), ('35959','44515','creation-date','{#CREATION.TIME}'), ('35960','44515','session','{#NAME}'), ('35961','44516','component','raw'), ('35962','44517','component','reports'), ('35963','44518','component','status'), ('35964','44519','component','reports'), ('35965','44520','component','reports'), ('35966','44521','component','reports'), ('35967','44522','component','reports'), ('35968','44523','component','reports'), ('35969','44524','component','reports'), ('35970','44526','backup','{#NAME}'), ('35971','44526','component','backups'), ('35972','44527','backup','{#NAME}'), ('35973','44527','component','backups'), ('35974','44528','backup','{#NAME}'), ('35975','44528','component','backups'), ('35976','44529','backup','{#NAME}'), ('35977','44529','component','backups'), ('35978','44530','component','raw'), ('35979','44531','component','raw'), ('35980','44532','component','health'), ('35981','44533','component','sessions'), ('35982','44534','component','storage'), ('35983','44535','component','storage'), ('35984','44536','component','storage'), ('35985','44537','component','storage'), ('35986','44538','component','storage'), ('35987','44539','component','storage'), ('35988','44540','component','storage'), ('35989','44541','component','storage'), ('35990','44542','component','storage'), ('35991','44543','component','storage'), ('35992','44544','component','sessions'), ('35993','44545','component','memory'), ('35994','44545','component','server'), ('35995','44546','component','health'), ('35996','44547','component','cpu'), ('35997','44547','component','server'), ('35998','44548','component','operations'), ('35999','44549','component','network'), ('36000','44550','component','network'), ('36001','44551','component','operations'), ('36002','44552','component','raw'), ('36003','44553','component','cpu'), ('36004','44554','component','cpu'), ('36005','44555','component','cpu'), ('36006','44556','component','network'), ('36007','44557','component','network'), ('36008','44558','component','workers'), ('36009','44559','component','cpu'), ('36010','44560','component','operations'), ('36011','44561','component','storage'), ('36012','44562','component','storage'), ('36013','44563','component','storage'), ('36014','44564','component','storage'), ('36015','44565','component','storage'), ('36016','44566','component','storage'), ('36017','44567','component','storage'), ('36018','44568','component','sessions'), ('36019','44569','component','memory'), ('36020','44569','component','server'), ('36021','44570','component','cpu'), ('36022','44570','component','server'), ('36023','44571','component','network'), ('36024','44572','component','network'), ('36025','44573','component','cpu'), ('36026','44574','component','operations'), ('36027','44575','component','raw'), ('36028','44576','component','cpu'), ('36029','44577','component','cpu'), ('36030','44578','component','cpu'), ('36031','44579','component','network'), ('36032','44580','component','network'), ('36033','44581','component','health'), ('36034','44582','component','health'), ('36035','44583','component','memory'), ('36036','44584','component','workers'), ('36037','44586','component','archive-log'), ('36038','44586','component','raw'), ('36039','44587','component','cdb'), ('36040','44587','component','raw'), ('36041','44588','component','asm'), ('36042','44588','component','raw'), ('36043','44589','component','pdb'), ('36044','44589','component','raw'), ('36045','44590','component','raw'), ('36046','44590','component','tablespaces'), ('36047','44591','component','archive-log'), ('36048','44591','destination','{#DEST_NAME}'), ('36049','44592','component','archive-log'), ('36050','44592','destination','{#DEST_NAME}'), ('36051','44593','component','archive-log'), ('36052','44593','destination','{#DEST_NAME}'), ('36053','44594','component','database'), ('36054','44594','database','{#DBNAME}'), ('36055','44594','type','{#TYPE}'), ('36056','44595','component','database'), ('36057','44595','database','{#DBNAME}'), ('36058','44595','type','{#TYPE}'), ('36059','44596','component','database'), ('36060','44596','database','{#DBNAME}'), ('36061','44596','type','{#TYPE}'), ('36062','44597','component','database'), ('36063','44597','database','{#DBNAME}'), ('36064','44597','type','{#TYPE}'), ('36065','44598','component','asm'), ('36066','44598','disk-group','{#DGNAME}'), ('36067','44599','component','asm'), ('36068','44599','disk-group','{#DGNAME}'), ('36069','44600','component','asm'), ('36070','44600','disk-group','{#DGNAME}'), ('36071','44601','component','database'), ('36072','44601','database','{#DBNAME}'), ('36073','44601','type','pdb'), ('36074','44602','component','tablespaces'), ('36075','44602','contents','{#CONTENTS}'), ('36076','44602','tablespace','{#TABLESPACE}'), ('36077','44603','component','tablespaces'), ('36078','44603','contents','{#CONTENTS}'), ('36079','44603','tablespace','{#TABLESPACE}'), ('36080','44604','component','tablespaces'), ('36081','44604','contents','{#CONTENTS}'), ('36082','44604','tablespace','{#TABLESPACE}'), ('36083','44605','component','tablespaces'), ('36084','44605','contents','{#CONTENTS}'), ('36085','44605','tablespace','{#TABLESPACE}'), ('36086','44606','component','tablespaces'), ('36087','44606','contents','{#CONTENTS}'), ('36088','44606','tablespace','{#TABLESPACE}'), ('36089','44607','component','tablespaces'), ('36090','44607','contents','{#CONTENTS}'), ('36091','44607','tablespace','{#TABLESPACE}'), ('36092','44608','component','tablespaces'), ('36093','44608','contents','{#CONTENTS}'), ('36094','44608','tablespace','{#TABLESPACE}'), ('36095','44609','component','archive-log'), ('36096','44609','component','raw'), ('36097','44610','component','asm'), ('36098','44610','component','raw'), ('36099','44611','component','cdb'), ('36100','44611','component','raw'), ('36101','44612','component','pdb'), ('36102','44612','component','raw'), ('36103','44613','component','raw'), ('36104','44613','component','tablespaces'), ('36105','44614','component','archive-log'), ('36106','44614','destination','{#DEST_NAME}'), ('36107','44615','component','archive-log'), ('36108','44615','destination','{#DEST_NAME}'), ('36109','44616','component','archive-log'), ('36110','44616','destination','{#DEST_NAME}'), ('36111','44617','component','asm'), ('36112','44617','disk-group','{#DGNAME}'), ('36113','44618','component','asm'), ('36114','44618','disk-group','{#DGNAME}'), ('36115','44619','component','asm'), ('36116','44619','disk-group','{#DGNAME}'), ('36117','44620','component','database'), ('36118','44620','database','{#DBNAME}'), ('36119','44620','type','{#TYPE}'), ('36120','44621','component','database'), ('36121','44621','database','{#DBNAME}'), ('36122','44621','type','{#TYPE}'), ('36123','44622','component','database'), ('36124','44622','database','{#DBNAME}'), ('36125','44622','type','{#TYPE}'), ('36126','44623','component','database'), ('36127','44623','database','{#DBNAME}'), ('36128','44623','type','{#TYPE}'), ('36129','44624','component','database'), ('36130','44624','database','{#DBNAME}'), ('36131','44624','type','pdb'), ('36132','44625','component','tablespaces'), ('36133','44625','contents','{#CONTENTS}'), ('36134','44625','tablespace','{#TABLESPACE}'), ('36135','44626','component','tablespaces'), ('36136','44626','contents','{#CONTENTS}'), ('36137','44626','tablespace','{#TABLESPACE}'), ('36138','44627','component','tablespaces'), ('36139','44627','contents','{#CONTENTS}'), ('36140','44627','tablespace','{#TABLESPACE}'), ('36141','44628','component','tablespaces'), ('36142','44628','contents','{#CONTENTS}'), ('36143','44628','tablespace','{#TABLESPACE}'), ('36144','44629','component','tablespaces'), ('36145','44629','contents','{#CONTENTS}'), ('36146','44629','tablespace','{#TABLESPACE}'), ('36147','44630','component','tablespaces'), ('36148','44630','contents','{#CONTENTS}'), ('36149','44630','tablespace','{#TABLESPACE}'), ('36150','44631','component','tablespaces'), ('36151','44631','contents','{#CONTENTS}'), ('36152','44631','tablespace','{#TABLESPACE}'), ('36155','44634','component','os'), ('36156','44635','component','os'), ('36157','44636','component','cluster'), ('36158','44636','component','raw'), ('36159','44636','node-id','{#NODE.ID}'), ('36160','44636','node-name','{#NODE.NAME}'), ('36161','44637','component','proxy'), ('36162','44637','component','raw'), ('36163','44637','proxy-name','{#PROXY.NAME}'), ('36164','44638','component','cluster'), ('36165','44638','component','raw'), ('36166','44638','node-id','{#NODE.ID}'), ('36167','44638','node-name','{#NODE.NAME}'), ('36168','44639','component','proxy'), ('36169','44639','component','raw'), ('36170','44639','proxy-name','{#PROXY.NAME}'), ('36171','44640','component','cluster'), ('36172','44640','component','raw'), ('36173','44640','node-id','{#NODE.ID}'), ('36174','44640','node-name','{#NODE.NAME}'), ('36175','44641','component','proxy'), ('36176','44641','component','raw'), ('36177','44641','proxy-name','{#PROXY.NAME}'), ('36178','44642','component','raw'), ('36179','44644','component','raw'), ('36180','44644','process','{#NAME}'), ('36181','44645','component','memory'), ('36182','44645','process','{#NAME}'), ('36183','44646','component','system'), ('36184','44646','process','{#NAME}'), ('36185','44647','component','system'), ('36186','44647','process','{#NAME}'), ('36187','44648','component','memory'), ('36188','44648','process','{#NAME}'), ('36189','44649','component','memory'), ('36190','44649','process','{#NAME}'), ('36191','44650','component','memory'), ('36192','44650','process','{#NAME}'), ('36193','44651','component','system'), ('36194','44651','process','{#NAME}'), ('36195','44652','component','memory'), ('36196','44652','process','{#NAME}'), ('36197','44653','component','system'), ('36198','44654','component','system'), ('36199','44655','component','application'), ('36200','44656','component','system'), ('36201','44657','component','system'), ('36202','44658','component','system'), ('36203','44659','component','application'), ('36204','44660','component','health'), ('36205','44660','component','network'), ('36206','44661','component','health'), ('36207','44661','component','network'), ('36208','44662','component','health'), ('36209','44662','component','network'), ('36210','44663','component','health'), ('36211','44663','component','network'), ('36212','44664','component','network'), ('36213','44665','component','system'), ('36214','44666','component','system'), ('36215','44667','component','system'), ('36216','44668','component','system'), ('36217','44669','component','system'), ('36218','44670','component','system'), ('36219','44671','component','system'), ('36220','44672','component','health'), ('36221','44672','component','network'), ('36222','44673','component','health'), ('36223','44673','component','network'), ('36224','44674','component','health'), ('36225','44674','component','network'), ('36226','44675','component','health'), ('36227','44675','component','network'), ('36228','44677','component','raw'), ('36229','44677','component','storage'), ('36230','44678','component','attribute'), ('36231','44678','component','storage'), ('36232','44678','diskname','{#NAME}'), ('36233','44678','disktype','{#DISKTYPE}'), ('36234','44679','component','storage'), ('36235','44679','diskname','{#NAME}'), ('36236','44679','disktype','{#DISKTYPE}'), ('36237','44680','component','temperature'), ('36238','44680','diskname','{#NAME}'), ('36239','44680','disktype','{#DISKTYPE}'), ('36240','44681','component','inventory'), ('36241','44681','diskname','{#NAME}'), ('36242','44681','disktype','{#DISKTYPE}'), ('36243','44682','component','storage'), ('36244','44682','diskname','{#NAME}'), ('36245','44682','disktype','{#DISKTYPE}'), ('36246','44683','component','inventory'), ('36247','44683','diskname','{#NAME}'), ('36248','44683','disktype','{#DISKTYPE}'), ('36249','44684','component','storage'), ('36250','44684','diskname','{#NAME}'), ('36251','44684','disktype','{#DISKTYPE}'), ('36252','44685','component','storage'), ('36253','44685','diskname','{#NAME}'), ('36254','44685','disktype','{#DISKTYPE}'), ('36255','44686','component','storage'), ('36256','44686','diskname','{#NAME}'), ('36257','44686','disktype','{#DISKTYPE}'), ('36258','44687','component','attribute'), ('36259','44687','component','storage'), ('36260','44687','diskname','{#NAME}'), ('36261','44687','disktype','{#DISKTYPE}'), ('36262','44688','component','storage'), ('36263','44688','diskname','{#NAME}'), ('36264','44688','disktype','{#DISKTYPE}'), ('36265','44689','component','attribute'), ('36266','44689','component','storage'), ('36267','44689','diskname','{#NAME}'), ('36268','44689','disktype','{#DISKTYPE}'), ('36269','44690','component','attribute'), ('36270','44690','component','storage'), ('36271','44690','diskname','{#NAME}'), ('36272','44690','disktype','{#DISKTYPE}'), ('36273','44691','component','attribute'), ('36274','44691','component','storage'), ('36275','44691','diskname','{#NAME}'), ('36276','44691','disktype','{#DISKTYPE}'), ('36277','44692','component','attribute'), ('36278','44692','component','storage'), ('36279','44692','diskname','{#NAME}'), ('36280','44692','disktype','{#DISKTYPE}'), ('36281','44693','component','attribute'), ('36282','44693','component','storage'), ('36283','44693','diskname','{#NAME}'), ('36284','44693','disktype','{#DISKTYPE}'), ('36285','44694','component','attribute'), ('36286','44694','component','storage'), ('36287','44694','diskname','{#NAME}'), ('36288','44694','disktype','{#DISKTYPE}'), ('36289','44695','component','attribute'), ('36290','44695','component','storage'), ('36291','44695','diskname','{#NAME}'), ('36292','44695','disktype','{#DISKTYPE}'), ('36293','44696','component','health'), ('36294','44696','diskname','{#NAME}'), ('36295','44696','disktype','{#DISKTYPE}'), ('36296','44698','component','raw'), ('36297','44698','component','storage'), ('36298','44699','component','attribute'), ('36299','44699','component','storage'), ('36300','44699','diskname','{#NAME}'), ('36301','44699','disktype','{#DISKTYPE}'), ('36302','44700','component','storage'), ('36303','44700','diskname','{#NAME}'), ('36304','44700','disktype','{#DISKTYPE}'), ('36305','44701','component','temperature'), ('36306','44701','diskname','{#NAME}'), ('36307','44701','disktype','{#DISKTYPE}'), ('36308','44702','component','inventory'), ('36309','44702','diskname','{#NAME}'), ('36310','44702','disktype','{#DISKTYPE}'), ('36311','44703','component','storage'), ('36312','44703','diskname','{#NAME}'), ('36313','44703','disktype','{#DISKTYPE}'), ('36314','44704','component','inventory'), ('36315','44704','diskname','{#NAME}'), ('36316','44704','disktype','{#DISKTYPE}'), ('36317','44705','component','storage'), ('36318','44705','diskname','{#NAME}'), ('36319','44705','disktype','{#DISKTYPE}'), ('36320','44706','component','storage'), ('36321','44706','diskname','{#NAME}'), ('36322','44706','disktype','{#DISKTYPE}'), ('36323','44707','component','storage'), ('36324','44707','diskname','{#NAME}'), ('36325','44707','disktype','{#DISKTYPE}'), ('36326','44708','component','attribute'), ('36327','44708','component','storage'), ('36328','44708','diskname','{#NAME}'), ('36329','44708','disktype','{#DISKTYPE}'), ('36330','44709','component','storage'), ('36331','44709','diskname','{#NAME}'), ('36332','44709','disktype','{#DISKTYPE}'), ('36333','44710','component','attribute'), ('36334','44710','component','storage'), ('36335','44710','diskname','{#NAME}'), ('36336','44710','disktype','{#DISKTYPE}'), ('36337','44711','component','attribute'), ('36338','44711','component','storage'), ('36339','44711','diskname','{#NAME}'), ('36340','44711','disktype','{#DISKTYPE}'), ('36341','44712','component','attribute'), ('36342','44712','component','storage'), ('36343','44712','diskname','{#NAME}'), ('36344','44712','disktype','{#DISKTYPE}'), ('36345','44713','component','attribute'), ('36346','44713','component','storage'), ('36347','44713','diskname','{#NAME}'), ('36348','44713','disktype','{#DISKTYPE}'), ('36349','44714','component','attribute'), ('36350','44714','component','storage'), ('36351','44714','diskname','{#NAME}'), ('36352','44714','disktype','{#DISKTYPE}'), ('36353','44715','component','attribute'), ('36354','44715','component','storage'), ('36355','44715','diskname','{#NAME}'), ('36356','44715','disktype','{#DISKTYPE}'), ('36357','44716','component','attribute'), ('36358','44716','component','storage'), ('36359','44716','diskname','{#NAME}'), ('36360','44716','disktype','{#DISKTYPE}'), ('36361','44717','component','health'), ('36362','44717','diskname','{#NAME}'), ('36363','44717','disktype','{#DISKTYPE}'), ('36364','44718','component','system'), ('36365','44718','container','{#NAME}'), ('36366','44719','component','system'), ('36367','44719','container','{#NAME}'), ('36368','44720','component','system'), ('36369','44720','container','{#NAME}'), ('36370','44721','component','raw'), ('36371','44721','node','{#ES.NODE}'), ('36372','44722','component','raw'), ('36373','44723','component','raw'), ('36374','44724','component','raw'), ('36375','44725','component','raw'), ('36376','44726','backend','{#PXNAME}'), ('36377','44726','component','raw'), ('36378','44727','component','raw'), ('36379','44727','frontend','{#PXNAME}'), ('36380','44728','component','raw'), ('36381','44728','server','{#PXNAME}'), ('36382','44728','service','{#SVNAME}'), ('36383','44729','backend','{#PXNAME}'), ('36384','44729','component','raw'), ('36385','44730','component','raw'), ('36386','44730','frontend','{#PXNAME}'), ('36387','44731','component','raw'), ('36388','44731','server','{#PXNAME}'), ('36389','44731','service','{#SVNAME}'), ('36390','44732','component','pod'), ('36391','44732','pod','{#NAME}'), ('36392','44734','component','requests'), ('36393','44734','node','{#NAME}'), ('36394','44735','component','requests'), ('36395','44735','node','{#NAME}'), ('36396','44736','component','limits'), ('36397','44736','node','{#NAME}'), ('36398','44737','component','limits'), ('36399','44737','node','{#NAME}'), ('36400','44738','component','raw'), ('36401','44738','node','{#NAME}'), ('36402','44739','component','addresses'), ('36403','44739','node','{#NAME}'), ('36404','44740','component','info'), ('36405','44740','node','{#NAME}'), ('36406','44741','component','uptime'), ('36407','44741','node','{#NAME}'), ('36408','44742','component','info'), ('36409','44742','node','{#NAME}'), ('36410','44743','component','info'), ('36411','44743','node','{#NAME}'), ('36412','44744','component','info'), ('36413','44744','node','{#NAME}'), ('36414','44745','component','info'), ('36415','44745','node','{#NAME}'), ('36416','44746','component','info'), ('36417','44746','node','{#NAME}'), ('36418','44747','component','info'), ('36419','44747','node','{#NAME}'), ('36420','44748','component','info'), ('36421','44748','node','{#NAME}'), ('36422','44749','component','addresses'), ('36423','44749','node','{#NAME}'), ('36424','44750','component','conditions'), ('36425','44750','node','{#NAME}'), ('36426','44751','component','conditions'), ('36427','44751','node','{#NAME}'), ('36428','44752','component','conditions'), ('36429','44752','node','{#NAME}'), ('36430','44753','component','conditions'), ('36431','44753','node','{#NAME}'), ('36432','44754','component','conditions'), ('36433','44754','node','{#NAME}'), ('36434','44755','component','capacity'), ('36435','44755','node','{#NAME}'), ('36436','44756','component','capacity'), ('36437','44756','node','{#NAME}'), ('36438','44757','component','capacity'), ('36439','44757','node','{#NAME}'), ('36440','44758','component','allocatable'), ('36441','44758','node','{#NAME}'), ('36442','44759','component','allocatable'), ('36443','44759','node','{#NAME}'), ('36444','44760','component','allocatable'), ('36445','44760','node','{#NAME}'), ('36446','44761','component','used'), ('36447','44761','node','{#NAME}'), ('36448','40042','deployment','{#NAME}'), ('36449','40043','deployment','{#NAME}'), ('36450','40044','deployment','{#NAME}'), ('36451','40045','deployment','{#NAME}'), ('36452','40046','deployment','{#NAME}'), ('36453','40047','deployment','{#NAME}'), ('36454','40048','deployment','{#NAME}'), ('36455','40076','pvc','{#NAME}'), ('36456','44763','component','deployment'), ('36457','44763','deployment','{#NAME}'), ('36458','44763','namespace','{#NAMESPACE}'), ('36459','44764','component','pv'), ('36460','44764','pv','{#NAME}'), ('36461','44765','component','phase'), ('36462','44765','component','pv'), ('36463','44765','phase','available'), ('36464','44766','component','phase'), ('36465','44766','component','pv'), ('36466','44766','phase','bound'), ('36467','44767','component','phase'), ('36468','44767','component','pv'), ('36469','44767','phase','failed'), ('36470','44768','component','phase'), ('36471','44768','component','pv'), ('36472','44768','phase','pending'), ('36473','44769','component','phase'), ('36474','44769','component','pv'), ('36475','44769','phase','released'), ('36476','44770','component','phase'), ('36477','44770','component','pv'), ('36478','44770','pv','{#NAME}'), ('36479','44771','component','phase'), ('36480','44771','component','pvc'), ('36481','44771','namespace','{#NAMESPACE}'), ('36482','44771','phase','bound'), ('36483','44772','component','phase'), ('36484','44772','component','pvc'), ('36485','44772','namespace','{#NAMESPACE}'), ('36486','44772','phase','lost'), ('36487','44773','component','phase'), ('36488','44773','component','pvc'), ('36489','44773','namespace','{#NAMESPACE}'), ('36490','44773','phase','pending'), ('36491','44774','component','phase'), ('36492','44774','component','pvc'), ('36493','44774','namespace','{#NAMESPACE}'), ('36494','44774','pvc','{#NAME}'), ('36495','44775','component','replicaset'), ('36496','44775','namespace','{#NAMESPACE}'), ('36497','44775','replicaset','{#NAME}'), ('36498','44776','component','statefulset'), ('36499','44776','namespace','{#NAMESPACE}'), ('36500','44776','statefulset','{#NAME}'), ('36501','44777','component','location_zones'), ('36502','44777','component','raw'), ('36503','44777','zone','{#NAME}'), ('36504','44778','component','raw'), ('36505','44778','component','server_zones'), ('36506','44778','zone','{#NAME}'), ('36507','44779','component','raw'), ('36508','44779','component','upstream'), ('36509','44779','peer','{#PEER}'), ('36510','44779','upstream','{#UPSTREAM}'), ('36511','44780','component','raw'), ('36512','44780','component','upstream'), ('36513','44780','upstream','{#NAME}'), ('36514','44781','component','raw'), ('36515','44781','component','resolver'), ('36516','44781','upstream','{#NAME}'), ('36517','44782','component','raw'), ('36518','44782','component','server_zones'), ('36519','44782','zone','{#NAME}'), ('36520','44783','component','raw'), ('36521','44783','component','upstream'), ('36522','44783','peer','{#PEER}'), ('36523','44783','upstream','{#UPSTREAM}'), ('36524','44784','component','raw'), ('36525','44784','component','upstreams'), ('36526','44784','upstream','{#NAME}'), ('36527','35206','upstream','{#UPSTREAM}'), ('36528','35207','upstream','{#UPSTREAM}'), ('36529','35208','upstream','{#UPSTREAM}'), ('36530','35209','upstream','{#UPSTREAM}'), ('36531','35210','upstream','{#UPSTREAM}'), ('36532','35211','upstream','{#UPSTREAM}'), ('36533','35212','upstream','{#UPSTREAM}'), ('36534','35213','upstream','{#UPSTREAM}'), ('36535','35214','upstream','{#UPSTREAM}'), ('36536','35215','upstream','{#UPSTREAM}'), ('36537','35216','upstream','{#UPSTREAM}'), ('36538','35217','upstream','{#UPSTREAM}'), ('36539','35218','upstream','{#UPSTREAM}'), ('36540','35219','upstream','{#UPSTREAM}'), ('36541','35220','upstream','{#UPSTREAM}'), ('36542','35221','upstream','{#UPSTREAM}'), ('36543','35222','upstream','{#UPSTREAM}'), ('36544','35223','upstream','{#UPSTREAM}'), ('36545','44785','component','system'), ('36546','44786','component','internal-process'), ('36547','44787','component','internal-process'), ('36548','44788','component','system'), ('36549','44789','component','internal-process'), ('36550','44790','component','internal-process'), ('36551','44791','component','system'), ('36552','44792','component','internal-process'), ('36553','44793','component','internal-process'), ('36554','44794','client','{#CLIENT}'), ('36555','44794','component','raw'), ('36556','44794','type','{#TYPE}'), ('36557','44795','component','raw'), ('36558','44796','component','raw'), ('36559','44797','component','status'), ('36560','44798','component','storage'), ('36561','44799','component','storage'), ('36562','44800','component','storage'), ('36563','44801','component','health'), ('36564','44802','component','network'), ('36565','44803','component','network'), ('36566','44804','component','network'), ('36567','44805','component','network'), ('36568','44806','component','storage'), ('36569','44807','component','storage'), ('36570','44808','component','storage'), ('36571','44809','component','raw'), ('36572','44810','component','storage'), ('36573','44811','component','storage'), ('36574','44812','component','storage'), ('36575','44813','component','storage'), ('36576','44814','component','storage'), ('36577','44815','component','storage'), ('36578','44816','component','storage'), ('36579','44817','component','storage'), ('36580','44820','component','raw'), ('36581','44820','component','storages'), ('36582','44820','storage','{#NAME}'), ('36583','44821','component','storages'), ('36584','44821','metrics','common'), ('36585','44821','storage','{#NAME}'), ('36586','44822','component','storages'), ('36587','44822','metrics','queue'), ('36588','44822','storage','{#NAME}'), ('36589','44823','component','storages'), ('36590','44823','metrics','queue'), ('36591','44823','storage','{#NAME}'), ('36592','44824','component','storages'), ('36593','44824','metrics','queue'), ('36594','44824','storage','{#NAME}'), ('36595','44825','component','storages'), ('36596','44825','metrics','queue'), ('36597','44825','storage','{#NAME}'), ('36598','44826','component','storages'), ('36599','44826','metrics','queue'), ('36600','44826','storage','{#NAME}'), ('36601','44827','component','storages'), ('36602','44827','metrics','queue'), ('36603','44827','storage','{#NAME}'), ('36604','44828','component','storages'), ('36605','44828','metrics','queue'), ('36606','44828','storage','{#NAME}'), ('36607','44829','component','storages'), ('36608','44829','metrics','common'), ('36609','44829','storage','{#NAME}'), ('36610','44830','component','storages'), ('36611','44830','metrics','table'), ('36612','44830','storage','{#NAME}'), ('36613','44831','component','storages'), ('36614','44831','metrics','common'), ('36615','44831','storage','{#NAME}'), ('36616','44832','component','storages'), ('36617','44832','metrics','table'), ('36618','44832','storage','{#NAME}'), ('36619','44833','component','storages'), ('36620','44833','metrics','table'), ('36621','44833','storage','{#NAME}'), ('36622','44834','component','storages'), ('36623','44834','metrics','table'), ('36624','44834','storage','{#NAME}'), ('36625','44835','component','storages'), ('36626','44835','metrics','table'), ('36627','44835','storage','{#NAME}'), ('36628','44836','component','storages'), ('36629','44836','metrics','table'), ('36630','44836','storage','{#NAME}'), ('36631','44837','component','storages'), ('36632','44837','metrics','table'), ('36633','44837','storage','{#NAME}'), ('36634','44838','component','storages'), ('36635','44838','metrics','table'), ('36636','44838','storage','{#NAME}'), ('36637','44839','component','storages'), ('36638','44839','metrics','table'), ('36639','44839','storage','{#NAME}'), ('36640','44840','component','storages'), ('36641','44840','metrics','common'), ('36642','44840','storage','{#NAME}'), ('36643','44841','component','storages'), ('36644','44841','metrics','queue'), ('36645','44841','storage','{#NAME}'), ('36646','44842','component','storages'), ('36647','44842','metrics','file'), ('36648','44842','storage','{#NAME}'), ('36649','44843','component','storages'), ('36650','44843','metrics','common'), ('36651','44843','storage','{#NAME}'), ('36652','44844','component','storages'), ('36653','44844','metrics','blob'), ('36654','44844','storage','{#NAME}'), ('36655','44845','component','storages'), ('36656','44845','metrics','blob'), ('36657','44845','storage','{#NAME}'), ('36658','44846','component','storages'), ('36659','44846','metrics','blob'), ('36660','44846','storage','{#NAME}'), ('36661','44847','component','storages'), ('36662','44847','metrics','blob'), ('36663','44847','storage','{#NAME}'), ('36664','44848','component','storages'), ('36665','44848','metrics','blob'), ('36666','44848','storage','{#NAME}'), ('36667','44849','component','storages'), ('36668','44849','metrics','blob'), ('36669','44849','storage','{#NAME}'), ('36670','44850','component','storages'), ('36671','44850','metrics','blob'), ('36672','44850','storage','{#NAME}'), ('36673','44851','component','storages'), ('36674','44851','metrics','blob'), ('36675','44851','storage','{#NAME}'), ('36676','44852','component','storages'), ('36677','44852','metrics','blob'), ('36678','44852','storage','{#NAME}'), ('36679','44853','component','storages'), ('36680','44853','metrics','blob'), ('36681','44853','storage','{#NAME}'), ('36682','44854','component','storages'), ('36683','44854','metrics','common'), ('36684','44854','storage','{#NAME}'), ('36685','44855','component','storages'), ('36686','44855','metrics','file'), ('36687','44855','storage','{#NAME}'), ('36688','44856','component','storages'), ('36689','44856','metrics','file'), ('36690','44856','storage','{#NAME}'), ('36691','44857','component','storages'), ('36692','44857','metrics','file'), ('36693','44857','storage','{#NAME}'), ('36694','44858','component','storages'), ('36695','44858','metrics','file'), ('36696','44858','storage','{#NAME}'), ('36697','44859','component','storages'), ('36698','44859','metrics','file'), ('36699','44859','storage','{#NAME}'), ('36700','44860','component','storages'), ('36701','44860','metrics','file'), ('36702','44860','storage','{#NAME}'), ('36703','44861','component','storages'), ('36704','44861','metrics','file'), ('36705','44861','storage','{#NAME}'), ('36706','44862','component','storages'), ('36707','44862','metrics','file'), ('36708','44862','storage','{#NAME}'), ('36709','44863','component','storages'), ('36710','44863','metrics','file'), ('36711','44863','storage','{#NAME}'), ('36712','44864','component','storages'), ('36713','44864','metrics','file'), ('36714','44864','storage','{#NAME}'), ('36715','44865','component','storages'), ('36716','44865','metrics','common'), ('36717','44865','storage','{#NAME}'), ('36718','44866','component','raw'), ('36719','44867','component','status'), ('36720','44868','component','raw'), ('36721','44869','component','raw'), ('36722','44870','component','raw'), ('36723','44871','component','raw'), ('36724','44872','component','status'), ('36725','44873','component','raw'), ('36726','44874','component','status'), ('36727','44875','component','status'), ('36728','44876','component','raw'), ('36729','44877','component','raw'), ('36730','44878','component','raw'), ('36731','44879','component','status'), ('36732','44880','component','status'), ('36733','44881','component','raw'), ('36734','44882','component','raw'), ('36735','44883','component','raw'), ('36736','44884','component','status'), ('36737','44885','component','status'), ('36738','44886','component','raw'), ('36739','44887','component','raw'), ('36740','44888','component','raw'), ('36741','44889','component','network'), ('36742','44889','component','traffic'), ('36743','44890','component','memory'), ('36744','44891','component','memory'), ('36745','44892','component','memory'), ('36746','44893','component','memory'), ('36747','44894','component','connections'), ('36748','44894','component','network'), ('36749','44895','component','security'), ('36750','44896','component','network'), ('36751','44896','component','traffic'), ('36752','44897','component','memory'), ('36753','44898','component','transactions'), ('36754','44899','component','transactions'), ('36755','44900','component','transactions'), ('36756','44901','component','transactions'), ('36757','44902','component','transactions'), ('36758','44903','component','transactions'), ('36759','44904','component','memory'), ('36760','44905','component','memory'), ('36761','44906','component','memory'), ('36762','44907','component','storage'), ('36763','44908','component','connections'), ('36764','44908','component','network'), ('36765','44909','component','connections'), ('36766','44909','component','network'), ('36767','44910','component','connections'), ('36768','44910','component','network'), ('36769','44911','component','connections'), ('36770','44911','component','network'), ('36771','44912','component','cpu'), ('36772','44913','component','cpu'), ('36773','44914','component','cpu'), ('36774','44915','component','storage'), ('36775','44916','component','security'), ('36776','44917','component','storage'), ('36777','44918','component','storage'), ('36778','44919','component','storage'), ('36779','44920','component','memory'), ('36780','44921','component','memory'), ('36781','44922','component','memory'), ('36782','44923','component','memory'), ('36783','44924','component','transactions'), ('36784','44925','component','replication'), ('36785','44926','component','replication'), ('36786','44927','component','replication'), ('36787','44928','component','replication'), ('36788','44929','component','replication'), ('36789','44930','component','replication'), ('36790','44931','component','cpu'), ('36791','44932','component','queries'), ('36792','44933','component','network'), ('36793','44933','component','traffic'), ('36794','44934','component','network'), ('36795','44934','component','traffic'), ('36796','44935','component','tables'), ('36797','44936','component','tables'), ('36798','44937','component','network'), ('36799','44937','component','traffic'), ('36800','44938','component','network'), ('36801','44938','component','traffic'), ('36802','44939','component','connections'), ('36803','44939','component','network'), ('36804','44940','component','memory'), ('36805','44941','component','memory'), ('36806','44942','component','memory'), ('36807','44943','component','memory'), ('36808','44944','component','innodb'), ('36809','44944','component','memory'), ('36810','44945','component','cpu'), ('36811','44946','component','innodb'), ('36812','44946','component','memory'), ('36813','44947','component','innodb'), ('36814','44947','component','storage'), ('36815','44948','component','innodb'), ('36816','44948','component','storage'), ('36817','44949','component','innodb'), ('36818','44949','component','memory'), ('36819','44950','component','innodb'), ('36820','44950','component','memory'), ('36821','44951','component','innodb'), ('36822','44951','component','memory'), ('36823','44952','component','storage'), ('36824','44953','component','storage'), ('36825','44954','component','storage'), ('36826','44955','component','storage'), ('36827','44956','component','storage'), ('36828','44957','component','cpu'), ('36829','44958','component','queries'), ('36830','44959','component','replication'), ('36831','44960','component','replication'), ('36832','44961','component','replication'), ('36833','44962','component','replication'), ('36834','44963','component','replication'), ('36835','44964','component','replication'), ('36836','44965','component','replication'), ('36837','44965','component','status'), ('36838','44966','component','cpu'), ('36839','44967','component','transactions'), ('36840','44968','component','transactions'), ('36841','44969','component','storage'), ('36842','44970','component','storage'), ('36843','44971','component','transactions'), ('36844','44972','component','transactions'), ('36845','44973','component','transactions'), ('36846','44974','component','transactions'), ('36847','44975','component','connections'), ('36848','44975','component','network'), ('36849','44976','component','network'), ('36850','44976','component','traffic'), ('36851','44977','component','memory'), ('36852','44978','component','network'), ('36853','44978','component','traffic'), ('36854','44979','component','cpu'), ('36855','44980','component','memory'), ('36856','44981','component','memory'), ('36857','44982','component','memory'), ('36858','44983','component','storage'), ('36859','44984','component','storage'), ('36860','44985','component','storage'), ('36861','44986','component','storage'), ('36862','44987','component','storage'), ('36863','44988','component','cpu'), ('36864','44989','component','transactions'), ('36865','44990','component','replication'), ('36866','44991','component','replication'), ('36867','44992','component','replication'), ('36868','44993','component','replication'), ('36869','44994','component','replication'), ('36870','44995','component','replication'), ('36871','44996','component','replication'), ('36872','44997','component','replication'), ('36873','44997','component','status'), ('36874','44998','component','replication'), ('36875','44999','component','cpu'), ('36876','45000','component','network'), ('36877','45000','component','traffic'), ('36878','45001','component','network'), ('36879','45001','component','traffic'), ('36880','45002','component','network'), ('36881','45002','component','traffic'), ('36882','45003','component','network'), ('36883','45003','component','traffic'), ('36884','45004','component','network'), ('36885','45004','component','traffic'), ('36886','45005','component','network'), ('36887','45005','component','traffic'), ('36888','45006','component','network'), ('36889','45006','component','traffic'), ('36890','45007','component','network'), ('36891','45007','component','traffic'), ('36892','45008','component','network'), ('36893','45008','component','traffic'), ('36894','45009','component','network'), ('36895','45009','component','traffic'), ('36896','45010','component','network'), ('36897','45010','component','traffic'), ('36898','45011','component','network'), ('36899','45011','component','traffic'), ('36900','45012','component','memory'), ('36901','45013','component','memory'), ('36902','45014','component','cpu'), ('36903','45015','component','memory'), ('36904','45016','component','memory'), ('36905','45017','component','memory'), ('36906','45018','component','security'), ('36907','45019','component','security'), ('36908','45020','component','uptime'), ('36909','45021','component','firewall'), ('36910','45021','component','network'), ('36911','45022','component','firewall'), ('36912','45022','component','network'), ('36913','45023','component','cpu'), ('36914','45024','component','cpu'), ('36915','45025','component','cpu'), ('36916','45026','component','network'), ('36917','45026','component','traffic'), ('36918','45027','component','environment'), ('36919','45028','component','environment'), ('36920','45029','component','environment'), ('36921','45030','component','environment'), ('36922','45031','component','environment'), ('36923','45032','component','environment'), ('36924','45033','component','environment'), ('36925','45044','component','raw'), ('36926','45044','database','{#PGSQL.DB.NAME}'), ('36927','45045','component','raw'), ('36928','45045','database','{#DB.NAME}'), ('36929','45046','component','raw'), ('36930','45046','resource','{#RESOURCE.NAME}'), ('36931','45047','component','raw'), ('36932','45047','scheduler','{#SCHEDULER.ID}'), ('36933','45048','component','memory'), ('36934','45048','database','{#PGSQL.DB.NAME}'), ('36935','45049','component','storage'), ('36936','45049','database','{#PGSQL.DB.NAME}'), ('36937','45050','component','deadlock'), ('36938','45050','database','{#PGSQL.DB.NAME}'), ('36939','45051','component','transactions'), ('36940','45051','database','{#PGSQL.DB.NAME}'), ('36941','45052','component','transactions'), ('36942','45052','database','{#PGSQL.DB.NAME}'), ('36943','45053','component','tuples'), ('36944','45053','database','{#PGSQL.DB.NAME}'), ('36945','45054','component','tuples'), ('36946','45054','database','{#PGSQL.DB.NAME}'), ('36947','45055','component','tuples'), ('36948','45055','database','{#PGSQL.DB.NAME}'), ('36949','45056','component','tuples'), ('36950','45056','database','{#PGSQL.DB.NAME}'), ('36951','45057','component','tuples'), ('36952','45057','database','{#PGSQL.DB.NAME}'), ('36953','45058','component','tuples'), ('36954','45058','database','{#PGSQL.DB.NAME}'), ('36955','45059','component','tuples'), ('36956','45059','database','{#PGSQL.DB.NAME}'), ('36957','45060','component','raw'), ('36958','45060','component','storage'), ('36959','45060','disk','{#GCE.DISK.NAME}'), ('36960','45061','component','raw'), ('36961','45061','quota','{#GCE.QUOTA.NAME}'), ('36962','45062','component','database'), ('36963','45062','database','{#DB.NAME}'), ('36964','45063','component','database'), ('36965','45063','database','{#DB.NAME}'), ('36966','45064','component','resource'), ('36967','45064','resource','{#RESOURCE.NAME}'), ('36968','45065','component','resource'), ('36969','45065','resource','{#RESOURCE.NAME}'), ('36970','45066','component','resource'), ('36971','45066','resource','{#RESOURCE.NAME}'), ('36972','45067','component','scheduler'), ('36973','45067','scheduler','{#SCHEDULER.ID}'), ('36974','45068','component','scheduler'), ('36975','45068','scheduler','{#SCHEDULER.ID}'), ('36976','45069','component','scheduler'), ('36977','45069','scheduler','{#SCHEDULER.ID}'), ('36978','45070','component','scheduler'), ('36979','45070','scheduler','{#SCHEDULER.ID}'), ('36980','45071','component','scheduler'), ('36981','45071','scheduler','{#SCHEDULER.ID}'), ('36982','45072','component','scheduler'), ('36983','45072','scheduler','{#SCHEDULER.ID}'), ('36984','45073','component','storage'), ('36985','45073','device-type','{#GCE.DISK.DEV_TYPE}'), ('36986','45073','disk','{#GCE.DISK.NAME}'), ('36987','45073','storage-type','{#GCE.DISK.STOR_TYPE}'), ('36988','45074','component','storage'), ('36989','45074','device-type','{#GCE.DISK.DEV_TYPE}'), ('36990','45074','disk','{#GCE.DISK.NAME}'), ('36991','45074','storage-type','{#GCE.DISK.STOR_TYPE}'), ('36992','45075','component','storage'), ('36993','45075','device-type','{#GCE.DISK.DEV_TYPE}'), ('36994','45075','disk','{#GCE.DISK.NAME}'), ('36995','45075','storage-type','{#GCE.DISK.STOR_TYPE}'), ('36996','45076','component','storage'), ('36997','45076','device-type','{#GCE.DISK.DEV_TYPE}'), ('36998','45076','disk','{#GCE.DISK.NAME}'), ('36999','45076','storage-type','{#GCE.DISK.STOR_TYPE}'), ('37000','45077','component','quota'), ('37001','45077','quota','{#GCE.QUOTA.NAME}'), ('37002','45078','component','quota'), ('37003','45078','quota','{#GCE.QUOTA.NAME}'), ('37004','45079','component','quota'), ('37005','45079','quota','{#GCE.QUOTA.NAME}'), ('37006','45080','component','databases'), ('37007','45080','component','raw'), ('37008','45082','component','raw'), ('37009','45082','database','{#DB}'), ('37010','45083','component','raw'), ('37011','45083','dictionary','{#NAME}'), ('37012','45084','component','raw'), ('37013','45084','database','{#DB}'), ('37014','45084','table','{#TABLE}'), ('37015','45085','component','raw'), ('37016','45085','database','{#DB}'), ('37017','45085','table','{#TABLE}'), ('37018','45086','component','database'), ('37019','45086','database','{#DB}'), ('37020','45087','component','database'), ('37021','45087','database','{#DB}'), ('37022','45088','component','raw'), ('37023','45089','component','raw'), ('37024','45090','component','raw'), ('37025','45091','component','raw'), ('37026','45092','component','raw'), ('37027','45093','component','raw'), ('37028','45094','component','raw'), ('37029','45095','component','raw'), ('37030','45096','component','raw'), ('37031','45097','component','raw'), ('37032','45098','component','raw'), ('37033','45098','database','{#DBNAME}'), ('37034','45099','component','raw'), ('37035','45099','database','{#DBNAME}'), ('37036','45100','component','raw'), ('37037','45100','mssql-job','{#JOBNAME}'), ('37038','45101','component','mssql-job'), ('37039','45101','mssql-job','{#JOBNAME}'), ('37040','44602','database','{#CON_NAME}'), ('37041','44603','database','{#CON_NAME}'), ('37042','44604','database','{#CON_NAME}'), ('37043','44605','database','{#CON_NAME}'), ('37044','44606','database','{#CON_NAME}'), ('37045','44607','database','{#CON_NAME}'), ('37046','44608','database','{#CON_NAME}'), ('37047','44625','database','{#CON_NAME}'), ('37048','44626','database','{#CON_NAME}'), ('37049','44627','database','{#CON_NAME}'), ('37050','44628','database','{#CON_NAME}'), ('37051','44629','database','{#CON_NAME}'), ('37052','44630','database','{#CON_NAME}'), ('37053','44631','database','{#CON_NAME}'), ('37054','45102','component','raw'), ('37055','45103','component','raw'), ('37056','45104','component','raw'), ('37057','45105','component','raw'), ('37058','45106','component','raw'), ('37059','45107','component','raw'), ('37060','45108','component','raw'), ('37061','45109','component','raw'), ('37062','45110','component','raw'), ('37063','45110','database','{#DB}'), ('37064','45111','component','raw'), ('37065','45112','component','raw'), ('37066','45113','component','raw'), ('37067','45114','component','raw'), ('37068','45115','component','raw'), ('37069','45116','component','raw'), ('37070','45117','address','{#STORE_ADDRESS}'), ('37071','45117','component','raw'), ('37072','45118','component','raw'), ('37073','45119','component','raw'), ('37074','45120','component','raw'), ('37075','45121','component','raw'), ('37076','45121','type','{#TYPE}'), ('37077','45122','component','raw'), ('37078','45123','component','raw'), ('37079','45124','component','raw'), ('37080','45125','component','raw'), ('37081','45126','component','raw'), ('37082','45127','component','raw'), ('37083','45127','request','{#REQ_TYPE}'), ('37084','45128','component','raw'), ('37085','45129','component','raw'), ('37086','45130','component','raw'), ('37087','45131','component','raw'), ('37088','45132','component','raw'), ('37089','45133','component','raw'), ('37090','45134','component','raw'), ('37091','45135','component','raw'), ('37092','45136','component','raw'), ('37093','45137','component','raw'), ('37094','45138','component','raw'), ('37095','45139','component','raw'), ('37096','45140','component','raw'), ('37097','45141','component','raw'), ('37098','45142','component','raw'), ('37099','45143','component','raw'), ('37100','45144','component','raw'), ('37101','45145','component','raw'), ('37102','45146','component','raw'), ('37103','45147','component','raw'), ('37104','44322','component','raw'), ('37105','45148','component','raw'), ('37106','45149','component','raw'), ('37109','45152','component','raw'), ('37110','45153','component','raw'), ('37111','45154','component','raw'), ('37112','45155','component','raw'), ('37115','45158','component','raw'), ('37116','45159','component','raw'), ('37117','45160','component','raw'), ('37118','45161','component','raw'), ('37121','45164','component','raw'), ('37122','45165','component','raw'), ('37123','45166','component','raw'), ('37124','45167','component','raw'), ('37127','45170','component','raw'), ('37128','45171','component','raw'), ('37129','45172','component','raw'), ('37130','45173','component','raw'), ('37133','45176','component','raw'), ('37134','45177','component','raw'), ('37135','45178','component','raw'), ('37136','45179','component','raw'), ('37139','45182','component','raw'), ('37140','45183','component','raw'), ('37141','45184','component','raw'), ('37142','45185','component','raw'), ('37145','45188','component','raw'), ('37146','45189','component','raw'), ('37147','45190','component','raw'), ('37148','45191','component','raw'), ('37151','45194','component','raw'), ('37152','45195','component','raw'), ('37153','45196','component','raw'), ('37154','45197','component','raw'), ('37157','45200','component','raw'), ('37158','45201','component','raw'), ('37159','45202','component','raw'), ('37160','45203','component','raw'), ('37163','45206','component','raw'), ('37164','45207','component','raw'), ('37165','45208','component','raw'), ('37166','45209','component','raw'), ('37169','45212','component','raw'), ('37170','45213','component','raw'), ('37171','45214','component','raw'), ('37172','45215','component','raw'), ('37175','45218','component','raw'), ('37176','45219','component','raw'), ('37177','45220','component','raw'), ('37178','45221','component','raw'), ('37181','45224','component','raw'), ('37182','45225','component','raw'), ('37183','45226','component','raw'), ('37184','45227','component','raw'), ('37187','45230','component','raw'), ('37188','45231','component','raw'), ('37189','45232','component','raw'), ('37190','45233','component','raw'), ('37193','45236','component','raw'), ('37194','45237','component','raw'), ('37195','45238','component','raw'), ('37196','45239','component','raw'), ('37199','45242','component','raw'), ('37200','45243','component','raw'), ('37201','45244','component','raw'), ('37202','45245','component','raw'), ('37205','45248','component','raw'), ('37206','45249','component','raw'), ('37207','45250','component','raw'), ('37208','45251','component','raw'), ('37211','45254','component','raw'), ('37212','45255','component','raw'), ('37213','45256','component','raw'), ('37214','45257','component','raw'), ('37217','45260','component','raw'), ('37218','45261','component','raw'), ('37219','45262','component','raw'), ('37220','45263','component','raw'), ('37223','45266','component','raw'), ('37224','45267','component','raw'), ('37225','45268','component','raw'), ('37226','45269','component','raw'), ('37229','45272','component','raw'), ('37230','45273','component','raw'), ('37231','45274','component','raw'), ('37232','45275','component','raw'), ('37235','45278','component','raw'), ('37236','45279','component','raw'), ('37237','45280','component','raw'), ('37238','45281','component','raw'), ('37241','45284','component','raw'), ('37242','45285','component','raw'), ('37243','45286','component','raw'), ('37244','45287','component','raw'), ('37247','45290','component','raw'), ('37248','45291','component','raw'), ('37249','45292','component','raw'), ('37250','45293','component','raw'), ('37253','45296','component','raw'), ('37254','45297','component','raw'), ('37255','45298','component','raw'), ('37256','45299','component','raw'), ('37259','45302','component','raw'), ('37260','45303','component','raw'), ('37261','45304','component','raw'), ('37262','45305','component','raw'), ('37265','45308','component','raw'), ('37266','45309','component','raw'), ('37267','45310','component','raw'), ('37268','45311','component','raw'), ('37271','45314','component','raw'), ('37272','45315','component','raw'), ('37273','45316','component','raw'), ('37274','45317','component','raw'), ('37277','45320','component','raw'), ('37278','45321','component','raw'), ('37279','45322','component','raw'), ('37280','45323','component','raw'), ('37283','45326','component','raw'), ('37284','45327','component','raw'), ('37285','45328','component','raw'), ('37286','45329','component','raw'), ('37289','45332','component','raw'), ('37290','45333','component','raw'), ('37291','45334','component','raw'), ('37292','45335','component','raw'), ('37295','45338','component','raw'), ('37296','45339','component','raw'), ('37297','45340','component','raw'), ('37298','45341','component','raw'), ('37301','45344','component','raw'), ('37302','45345','component','raw'), ('37303','45346','component','raw'), ('37304','45347','component','raw'), ('37307','45350','component','raw'), ('37308','45351','component','raw'), ('37309','45352','component','raw'), ('37310','45353','component','raw'), ('37313','45356','component','raw'), ('37314','45357','component','raw'), ('37315','45358','component','raw'), ('37316','45359','component','raw'), ('37319','45362','component','raw'), ('37320','45363','component','raw'), ('37321','45364','component','raw'), ('37322','45365','component','raw'), ('37325','45368','component','raw'), ('37326','45369','component','raw'), ('37327','45370','component','raw'), ('37328','45371','component','raw'), ('37331','45374','component','raw'), ('37332','45375','component','raw'), ('37333','45376','component','raw'), ('37334','45377','component','raw'), ('37337','45380','component','raw'), ('37338','45381','component','raw'), ('37339','45382','component','raw'), ('37340','45383','component','raw'), ('37343','45386','component','raw'), ('37344','45387','component','raw'), ('37345','45388','component','raw'), ('37346','45389','component','raw'), ('37349','45392','component','raw'), ('37350','45393','component','raw'), ('37351','45394','component','raw'), ('37352','45395','component','raw'), ('37355','45398','component','raw'), ('37356','45399','component','raw'), ('37357','45400','component','raw'), ('37358','45401','component','raw'), ('37361','45404','component','raw'), ('37362','45405','component','raw'), ('37363','45406','component','raw'), ('37364','45407','component','raw'), ('37367','45410','component','raw'), ('37368','45411','component','raw'), ('37369','45412','component','raw'), ('37370','45413','component','raw'), ('37373','45416','component','raw'), ('37374','45417','component','raw'), ('37375','45418','component','raw'), ('37376','45419','component','raw'), ('37379','45422','component','raw'), ('37380','45423','component','raw'), ('37381','45424','component','raw'), ('37382','45425','component','raw'), ('37385','45428','component','raw'), ('37386','45429','component','raw'), ('37387','45430','component','raw'), ('37388','45431','component','raw'), ('37391','45434','component','raw'), ('37392','45435','component','raw'), ('37393','45436','component','raw'), ('37394','45437','component','raw'), ('37397','45440','component','raw'), ('37398','45441','component','raw'), ('37399','45442','component','raw'), ('37400','45443','component','raw'), ('37403','45446','component','raw'), ('37404','45447','component','raw'), ('37405','45448','component','raw'), ('37406','45449','component','raw'), ('37409','45452','component','raw'), ('37410','45453','component','raw'), ('37411','45454','component','raw'), ('37412','45455','component','raw'), ('37415','45458','component','raw'), ('37416','45459','component','raw'), ('37417','45460','component','raw'), ('37418','45461','component','raw'), ('37421','45464','component','raw'), ('37422','45465','component','raw'), ('37423','45466','component','raw'), ('37424','45467','component','raw'), ('37427','45470','component','raw'), ('37428','45471','component','raw'), ('37429','45472','component','raw'), ('37430','45473','component','raw'), ('37433','45476','component','raw'), ('37434','45477','component','raw'), ('37435','45478','component','raw'), ('37436','45479','component','raw'), ('37437','45480','component','raw'), ('37438','45481','component','raw'), ('37439','45482','component','raw'), ('37440','45483','component','raw'), ('37441','45484','component','raw'), ('37442','45485','component','raw'), ('37443','45486','component','raw'), ('37444','45487','component','raw'), ('37445','45488','component','system'), ('37446','45489','component','internal-process'), ('37447','45490','component','internal-process'), ('37448','45491','component','system'), ('37449','45492','component','internal-process'), ('37450','45493','component','internal-process'), ('37451','45494','component','system'), ('37452','45495','component','internal-process'), ('37453','45496','component','internal-process'), ('37454','45497','component','system'), ('37455','45498','component','internal-process'), ('37456','45499','component','internal-process'), ('37457','45500','component','system'), ('37458','45501','component','internal-process'), ('37459','45502','component','internal-process'), ('37460','45503','component','raw'), ('37461','45504','component','raw'), ('37462','45504','type','{#VOLUME_TYPE}'), ('37463','45504','volume','{#VOLUME_ID}'), ('37464','45505','component','raw'), ('37465','45505','database','{#DBNAME}'), ('37466','45506','component','raw'), ('37467','45506','database','{#DBNAME}'), ('37468','45507','component','raw'), ('37469','45507','database','{#DBNAME}'), ('37470','45508','component','raw'), ('37471','45508','database','{#DBNAME}'), ('37472','45509','component','raw'), ('37473','45509','database','{#DBNAME}'), ('37474','45510','application','{#APPLICATION_NAME}'), ('37475','45510','component','raw'), ('37486','45521','component','raw'), ('37487','45522','component','raw'), ('37488','45526','component','billing'), ('37489','45526','month','{#AWS.BILLING.MONTH}'), ('37490','45526','service','{#AWS.BILLING.SERVICE.NAME}'), ('37491','45527','component','billing'), ('37492','45527','service','{#AWS.BILLING.SERVICE.NAME}'), ('37493','45528','component','billing'), ('37494','45528','month','{#AWS.BILLING.MONTH}'), ('37495','45529','component','raw'), ('37496','45530','component','raw'), ('37497','45531','component','raw'), ('37498','45532','component','status'), ('37499','45533','component','system'), ('37500','45534','component','cpu'), ('37501','45535','component','cpu'), ('37502','45536','component','memory'), ('37503','45537','component','status'), ('37504','45538','component','network'), ('37505','45539','component','network'), ('37506','45540','component','system'), ('37507','45541','component','system'), ('37508','45544','component','raw'), ('37509','45544','component','services'), ('37510','45544','service','{#AWS.ECS.SERVICE.NAME}'), ('37511','45545','component','raw'), ('37512','45546','component','cpu'), ('37513','45546','component','services'), ('37514','45546','service','{#AWS.ECS.SERVICE.NAME}'), ('37515','45547','component','cpu'), ('37516','45547','component','services'), ('37517','45547','service','{#AWS.ECS.SERVICE.NAME}'), ('37518','45548','component','services'), ('37519','45548','service','{#AWS.ECS.SERVICE.NAME}'), ('37520','45549','component','memory'), ('37521','45549','component','services'), ('37522','45549','service','{#AWS.ECS.SERVICE.NAME}'), ('37523','45550','component','memory'), ('37524','45550','component','services'), ('37525','45550','service','{#AWS.ECS.SERVICE.NAME}'), ('37526','45551','component','memory'), ('37527','45551','component','services'), ('37528','45551','service','{#AWS.ECS.SERVICE.NAME}'), ('37529','45552','component','network'), ('37530','45552','component','services'), ('37531','45552','service','{#AWS.ECS.SERVICE.NAME}'), ('37532','45553','component','network'), ('37533','45553','component','services'), ('37534','45553','service','{#AWS.ECS.SERVICE.NAME}'), ('37535','45554','component','services'), ('37536','45554','service','{#AWS.ECS.SERVICE.NAME}'), ('37537','45555','component','services'), ('37538','45555','service','{#AWS.ECS.SERVICE.NAME}'), ('37539','45556','component','services'), ('37540','45556','service','{#AWS.ECS.SERVICE.NAME}'), ('37541','45557','component','alarms'), ('37542','45558','component','alarms'), ('37543','45559','component','raw'), ('37544','45560','component','raw'), ('37545','45561','component','raw'), ('37546','45562','component','status'), ('37547','45563','component','system'), ('37548','45564','component','cpu'), ('37549','45565','component','storage'), ('37550','45566','component','storage'), ('37551','45567','component','storage'), ('37552','45568','component','memory'), ('37553','45569','component','status'), ('37554','45570','component','network'), ('37555','45571','component','network'), ('37556','45572','component','system'), ('37557','45573','component','system'), ('37558','45576','component','raw'), ('37559','45576','component','services'), ('37560','45576','service','{#AWS.ECS.SERVICE.NAME}'), ('37561','45577','component','raw'), ('37562','45578','component','cpu'), ('37563','45578','component','services'), ('37564','45578','service','{#AWS.ECS.SERVICE.NAME}'), ('37565','45579','component','cpu'), ('37566','45579','component','services'), ('37567','45579','service','{#AWS.ECS.SERVICE.NAME}'), ('37568','45580','component','services'), ('37569','45580','service','{#AWS.ECS.SERVICE.NAME}'), ('37570','45581','component','services'), ('37571','45581','component','storage'), ('37572','45581','service','{#AWS.ECS.SERVICE.NAME}'), ('37573','45582','component','services'), ('37574','45582','component','storage'), ('37575','45582','service','{#AWS.ECS.SERVICE.NAME}'), ('37576','45583','component','memory'), ('37577','45583','component','services'), ('37578','45583','service','{#AWS.ECS.SERVICE.NAME}'), ('37579','45584','component','memory'), ('37580','45584','component','services'), ('37581','45584','service','{#AWS.ECS.SERVICE.NAME}'), ('37582','45585','component','memory'), ('37583','45585','component','services'), ('37584','45585','service','{#AWS.ECS.SERVICE.NAME}'), ('37585','45586','component','network'), ('37586','45586','component','services'), ('37587','45586','service','{#AWS.ECS.SERVICE.NAME}'), ('37588','45587','component','network'), ('37589','45587','component','services'), ('37590','45587','service','{#AWS.ECS.SERVICE.NAME}'), ('37591','45588','component','services'), ('37592','45588','service','{#AWS.ECS.SERVICE.NAME}'), ('37593','45589','component','services'), ('37594','45589','service','{#AWS.ECS.SERVICE.NAME}'), ('37595','45590','component','services'), ('37596','45590','component','storage'), ('37597','45590','service','{#AWS.ECS.SERVICE.NAME}'), ('37598','45591','component','services'), ('37599','45591','component','storage'), ('37600','45591','service','{#AWS.ECS.SERVICE.NAME}'), ('37601','45592','component','services'), ('37602','45592','service','{#AWS.ECS.SERVICE.NAME}'), ('37603','45593','component','alarms'), ('37604','45594','component','alarms'), ('37605','45596','component','raw'), ('37606','45597','component','raw'), ('37607','45598','component','raw'), ('37608','45599','component','raw'), ('37609','45600','component','environment'), ('37610','45601','component','environment'), ('37611','45602','component','environment'), ('37612','45603','component','raw'), ('37613','45604','component','raw'), ('37614','45605','component','raw'), ('37615','45606','component','environment'), ('37616','45607','component','environment'), ('37617','45608','component','environment'), ('37618','45609','component','environment'), ('37619','45610','component','environment'), ('37620','45611','component','environment'), ('37621','45618','component','application'), ('37622','45618','component','server'), ('37623','45619','component','raw'), ('37624','45620','component','raw'), ('37625','45621','component','raw'), ('37626','45622','component','raw'), ('37627','45623','component','application'), ('37628','45623','component','zone'), ('37629','45624','component','application'), ('37630','45624','component','zone'), ('37631','45625','component','application'), ('37632','45625','component','hypervisor'), ('37633','45626','component','application'), ('37634','45626','component','hypervisor'), ('37635','45627','component','application'), ('37636','45627','component','hypervisor'), ('37637','45628','component','application'), ('37638','45628','component','service'), ('37639','45629','component','application'), ('37640','45629','component','service'), ('37641','45630','component','application'), ('37642','45630','component','service'), ('37643','45631','component','application'), ('37644','45631','component','tenant'), ('37645','45632','component','application'), ('37646','45632','component','tenant'), ('37647','45633','component','application'), ('37648','45633','component','tenant'), ('37649','45634','component','application'), ('37650','45634','component','tenant'), ('37651','45635','component','raw'), ('37652','45636','component','replication'), ('37653','45637','component','system'), ('37654','45638','component','cache'), ('37655','45639','component','raw'), ('37656','45640','component','application'), ('37657','45641','component','replication'), ('37658','45642','component','replication'), ('37659','45643','component','replication'), ('37660','45644','component','raw'), ('37661','45645','component','replication'), ('37662','45646','component','application'), ('37663','45646','component','health'), ('37664','45647','component','transactions'), ('37665','45648','component','raw'), ('37666','45649','component','raw'), ('37667','45650','component','raw'), ('37668','45651','component','raw'), ('37670','45653','component','raw'), ('37671','45654','component','queries'), ('37672','45655','component','deadlocks'), ('37673','45656','component','cache'), ('37674','45657','component','storage'), ('37675','45658','component','storage'), ('37676','45659','component','storage'), ('37677','45660','component','storage'), ('37678','45661','component','backends'), ('37679','45662','component','wal'), ('37680','45663','component','storage'), ('37681','45664','component','queries'), ('37682','45665','component','queries'), ('37683','45666','component','queries'), ('37684','45667','component','queries'), ('37685','45668','component','queries'), ('37686','45669','component','transactions'), ('37687','45670','component','transactions'), ('37688','45671','component','connections'), ('37689','45672','component','wal'), ('37690','45673','component','connections'), ('37692','45675','component','connections'), ('37694','45677','component','archive'), ('37695','45678','component','archive'), ('37696','45679','component','archive'), ('37697','45680','component','archive'), ('37703','45686','component','connections'), ('37707','45690','component','connections'), ('37708','45691','component','connections'), ('37709','45692','component','connections'), ('37710','45693','component','connections'), ('37711','45694','component','connections'), ('37712','45695','component','connections'), ('37713','45696','component','wal'), ('37714','45699','component','application'), ('37715','45699','database','{#DBNAME}'), ('37716','45700','component','tables'), ('37717','45700','database','{#DBNAME}'), ('37718','45701','component','storage'), ('37719','45701','database','{#DBNAME}'), ('37720','45702','component','raw'), ('37721','45702','database','{#DBNAME}'), ('37722','45703','component','raw'), ('37723','45703','database','{#DBNAME}'), ('37724','45704','component','raw'), ('37725','45704','database','{#DBNAME}'), ('37726','45705','application','{#APPLICATION_NAME}'), ('37727','45705','component','raw'), ('37728','45706','component','locks'), ('37729','45706','database','{#DBNAME}'), ('37730','45707','component','locks'), ('37731','45707','database','{#DBNAME}'), ('37732','45708','component','locks'), ('37733','45708','database','{#DBNAME}'), ('37734','45709','component','locks'), ('37735','45709','database','{#DBNAME}'), ('37736','45710','component','locks'), ('37737','45710','database','{#DBNAME}'), ('37738','45711','component','locks'), ('37739','45711','database','{#DBNAME}'), ('37740','45712','component','queries'), ('37741','45712','database','{#DBNAME}'), ('37742','45713','component','queries'), ('37743','45713','database','{#DBNAME}'), ('37744','45714','component','locks'), ('37745','45714','database','{#DBNAME}'), ('37746','45715','component','queries'), ('37747','45715','database','{#DBNAME}'), ('37748','45716','component','queries'), ('37749','45716','database','{#DBNAME}'), ('37750','45717','component','queries'), ('37751','45717','database','{#DBNAME}'), ('37752','45718','component','queries'), ('37753','45718','database','{#DBNAME}'), ('37754','45719','component','queries'), ('37755','45719','database','{#DBNAME}'), ('37756','45720','component','queries'), ('37757','45720','database','{#DBNAME}'), ('37758','45721','component','locks'), ('37759','45721','database','{#DBNAME}'), ('37760','45722','component','locks'), ('37761','45722','database','{#DBNAME}'), ('37762','45723','component','backends'), ('37763','45723','database','{#DBNAME}'), ('37764','45724','component','cache'), ('37765','45724','database','{#DBNAME}'), ('37766','45725','component','storage'), ('37767','45725','database','{#DBNAME}'), ('37768','45726','component','storage'), ('37769','45726','database','{#DBNAME}'), ('37770','45727','component','storage'), ('37771','45727','database','{#DBNAME}'), ('37772','45728','component','queries'), ('37773','45728','database','{#DBNAME}'), ('37774','45729','component','deadlocks'), ('37775','45729','database','{#DBNAME}'), ('37776','45730','component','storage'), ('37777','45730','database','{#DBNAME}'), ('37778','45731','component','transactions'), ('37779','45731','database','{#DBNAME}'), ('37780','45732','component','storage'), ('37781','45732','database','{#DBNAME}'), ('37782','45733','component','queries'), ('37783','45733','database','{#DBNAME}'), ('37784','45734','component','queries'), ('37785','45734','database','{#DBNAME}'), ('37786','45735','component','queries'), ('37787','45735','database','{#DBNAME}'), ('37788','45736','component','queries'), ('37789','45736','database','{#DBNAME}'), ('37790','45737','component','queries'), ('37791','45737','database','{#DBNAME}'), ('37792','45738','component','transactions'), ('37793','45738','database','{#DBNAME}'), ('37794','45739','component','queries'), ('37795','45739','database','{#DBNAME}'), ('37796','45740','application','{#APPLICATION_NAME}'), ('37797','45740','component','replication'), ('37798','45741','application','{#APPLICATION_NAME}'), ('37799','45741','component','replication'), ('37800','45742','application','{#APPLICATION_NAME}'), ('37801','45742','component','replication'), ('37802','45743','component','raw'), ('37803','45744','component','memory'), ('37804','45745','component','raw'), ('37805','45746','component','raw'), ('37806','45747','component','raw'), ('37807','45748','component','error'), ('37808','45749','component','raw'), ('37809','45750','component','system'), ('37810','45751','component','error'), ('37811','45752','component','error'), ('37812','45753','component','system'), ('37813','45754','component','system'), ('37814','45755','component','health'), ('37815','45756','component','health'), ('37816','45757','component','system'), ('37817','45758','component','system'), ('37818','45759','component','health'), ('37819','45760','component','system'), ('37820','45761','component','os'), ('37821','45762','component','os'), ('37822','45763','component','certificate'), ('37823','45764','component','cpu'), ('37824','45765','component','network'), ('37825','45766','component','cpu'), ('37826','45767','component','cpu'), ('37827','45768','component','cpu'), ('37828','45769','component','system'), ('37829','45770','component','cpu'), ('37830','45771','component','memory'), ('37831','45772','component','cpu'), ('37832','45773','component','system'), ('37833','45774','component','memory'), ('37834','45775','component','memory'), ('37835','45776','component','memory'), ('37836','45777','component','memory'), ('37837','45778','component','error'), ('37838','45779','component','error'), ('37839','45780','component','system'), ('37840','45781','component','system'), ('37841','45782','component','system'), ('37842','45783','component','system'), ('37843','45784','component','system'), ('37844','45785','component','system'), ('37845','45786','component','cpu'), ('37846','45791','component','raw'), ('37847','45791','filesystem','{#FSNAME}'), ('37848','45792','component','raw'), ('37849','45792','interface','{#IFNAME}'), ('37850','45793','component','raw'), ('37851','45793','local','{#LOCAL}'), ('37852','45793','remote','{#REMOTE}'), ('37853','45794','component','storage'), ('37854','45794','filesystem','{#FSNAME}'), ('37855','45795','component','storage'), ('37856','45795','filesystem','{#FSNAME}'), ('37857','45796','component','storage'), ('37858','45796','filesystem','{#FSNAME}'), ('37859','45797','component','storage'), ('37860','45797','filesystem','{#FSNAME}'), ('37861','45798','component','interface'), ('37862','45798','interface','{#IFNAME}'), ('37863','45799','component','interface'), ('37864','45799','interface','{#IFNAME}'), ('37865','45800','component','interface'), ('37866','45800','interface','{#IFNAME}'), ('37867','45801','component','interface'), ('37868','45801','interface','{#IFNAME}'), ('37869','45802','component','interface'), ('37870','45802','interface','{#IFNAME}'), ('37871','45803','component','interface'), ('37872','45803','interface','{#IFNAME}'), ('37873','45804','component','interface'), ('37874','45804','interface','{#IFNAME}'), ('37875','45805','component','interface'), ('37876','45805','interface','{#IFNAME}'), ('37877','45806','component','interface'), ('37878','45806','interface','{#IFNAME}'), ('37879','45807','component','interface'), ('37880','45807','interface','{#IFNAME}'), ('37881','45808','component','interface'), ('37882','45808','interface','{#IFNAME}'), ('37883','45809','component','interface'), ('37884','45809','interface','{#IFNAME}'), ('37885','45810','component','interface'), ('37886','45810','interface','{#IFNAME}'), ('37887','45811','component','route'), ('37888','45811','local','{#LOCAL}'), ('37889','45811','remote','{#REMOTE}'), ('37890','45812','component','route'), ('37891','45812','local','{#LOCAL}'), ('37892','45812','remote','{#REMOTE}'), ('37893','45813','component','route'), ('37894','45813','local','{#LOCAL}'), ('37895','45813','remote','{#REMOTE}'), ('37896','45814','component','raw'), ('37897','45814','trunk','{#OBJECTNAME}'), ('37898','45815','component','raw'), ('37899','45815','trunk','{#OBJECTNAME}'), ('37900','45816','component','raw'), ('37901','45816','queue','{#QUEUE}'), ('37902','45817','component','raw'), ('37903','45817','trunk','{#OBJECTNAME}'), ('37904','45818','component','raw'), ('37905','45820','component','raw'), ('37906','45821','component','project'), ('37907','45821','project','{#NAME}'), ('37908','45822','component','project'), ('37909','45822','project','{#NAME}'), ('37910','45823','component','project'), ('37911','45823','project','{#NAME}'), ('37912','45824','component','project'), ('37913','45824','project','{#NAME}'), ('37914','45825','component','project'), ('37915','45825','project','{#NAME}'), ('37916','45826','component','project'), ('37917','45826','project','{#NAME}'), ('37918','45827','component','project'), ('37919','45827','project','{#NAME}'), ('37920','45828','component','project'), ('37921','45828','project','{#NAME}'), ('37922','45829','component','project'), ('37923','45829','project','{#NAME}'), ('37924','45830','component','project'), ('37925','45830','project','{#NAME}'), ('37926','45831','component','project'), ('37927','45831','project','{#NAME}'), ('37928','45832','component','project'), ('37929','45832','project','{#NAME}'), ('37930','45833','component','project'), ('37931','45833','project','{#NAME}'), ('37932','45834','component','project'), ('37933','45834','project','{#NAME}'), ('37934','45835','component','project'), ('37935','45835','project','{#NAME}'), ('37936','45836','component','project'), ('37937','45836','project','{#NAME}'), ('37938','45837','component','project'), ('37939','45837','project','{#NAME}'), ('37940','45838','component','project'), ('37941','45838','project','{#NAME}'), ('37942','45839','component','project'), ('37943','45839','project','{#NAME}'), ('37944','45840','component','project'), ('37945','45840','project','{#NAME}'), ('37946','45841','component','project'), ('37947','45841','project','{#NAME}'), ('37948','45842','component','project'), ('37949','45842','project','{#NAME}'), ('37950','45843','component','project'), ('37951','45843','project','{#NAME}'), ('37952','45844','component','project'), ('37953','45844','project','{#NAME}'), ('37954','45845','component','project'), ('37955','45845','project','{#NAME}'), ('37956','45846','component','project'), ('37957','45846','project','{#NAME}'), ('37958','45847','component','project'), ('37959','45847','project','{#NAME}'), ('37960','45848','component','project'), ('37961','45848','project','{#NAME}'), ('37962','45849','component','project'), ('37963','45849','project','{#NAME}'), ('37964','45850','component','project'), ('37965','45850','project','{#NAME}'), ('37966','45851','component','project'), ('37967','45851','project','{#NAME}'), ('37968','45852','component','raw'), ('37969','45853','component','raw'), ('37970','45854','component','network'), ('37971','45855','component','network'), ('37972','45856','component','raw'), ('37973','45857','component','raw'), ('37974','45858','component','raw'), ('37975','45859','component','network'), ('37976','45860','component','raw'), ('37977','45861','component','network'), ('37978','45862','component','raw'), ('37979','45863','component','status'), ('37980','45865','component','environment'), ('37981','45868','component','status'), ('37982','45869','component','raw'), ('37983','45870','component','status'), ('37984','45871','component','status'), ('37985','45874','component','status'), ('37986','45875','component','system'), ('37987','45876','component','system'), ('37988','45877','component','status'), ('37989','45878','component','raw'), ('37990','45880','component','allocations'), ('37991','45881','component','memory'), ('37992','45882','component','system'), ('37993','45883','component','memory'), ('37994','45884','component','storage'), ('37995','45885','component','cpu'), ('37996','45886','component','cpu'), ('37997','45887','component','storage'), ('37998','45888','component','memory'), ('37999','45889','component','memory'), ('38000','45890','component','memory'), ('38001','45891','component','memory'), ('38002','45892','component','allocations'), ('38003','45893','component','allocations'), ('38004','45894','component','allocations'), ('38005','45895','component','allocations'), ('38006','45896','component','allocations'), ('38007','45897','component','cpu'), ('38008','45898','component','allocations'), ('38009','45899','component','cpu'), ('38010','45900','component','cpu'), ('38011','45901','component','allocations'), ('38012','45902','component','allocations'), ('38013','45903','component','allocations'), ('38014','45904','component','cpu'), ('38015','45905','component','boltdb'), ('38016','45906','component','raft'), ('38017','45907','component','leader'), ('38018','45907','component','raft'), ('38019','45908','component','leader'), ('38020','45908','component','raft'), ('38021','45909','component','raft'), ('38022','45910','component','fsm'), ('38023','45911','component','boltdb'), ('38024','45912','component','fsm'), ('38025','45913','component','fsm'), ('38026','45914','component','fsm'), ('38027','45915','component','raft'), ('38028','45916','component','boltdb'), ('38029','45917','component','boltdb'), ('38030','45918','component','boltdb'), ('38031','45919','component','boltdb'), ('38032','45920','component','boltdb'), ('38033','45921','component','boltdb'), ('38034','45922','component','boltdb'), ('38035','45923','component','boltdb'), ('38036','45924','component','boltdb'), ('38037','45925','component','boltdb'), ('38038','45926','component','boltdb'), ('38039','45927','component','boltdb'), ('38040','45928','component','leader'), ('38041','45928','component','raft'), ('38042','45929','component','network'), ('38043','45929','component','rpc'), ('38044','45930','component','raft'), ('38045','45931','component','memberlist'), ('38046','45932','component','workers'), ('38047','45933','component','workers'), ('38048','45934','component','workers'), ('38049','45935','component','workers'), ('38050','45936','component','workers'), ('38051','45937','component','workers'), ('38052','45938','component','memory'), ('38053','45939','component','vault'), ('38054','45940','component','vault'), ('38055','45941','component','vault'), ('38056','45942','component','vault'), ('38057','45943','component','state'), ('38058','45944','component','memberlist'), ('38059','45945','component','raft'), ('38060','45946','component','memberlist'), ('38061','45947','component','allocations'), ('38062','45948','component','runtime'), ('38063','45949','component','runtime'), ('38064','45950','component','memory'), ('38065','45951','component','memory'), ('38066','45952','component','runtime'), ('38067','45953','component','runtime'), ('38068','45954','component','memory'), ('38069','45955','component','network'), ('38070','45955','component','rpc'), ('38071','45956','component','network'), ('38072','45956','component','rpc'), ('38073','45957','component','boltdb'), ('38074','45958','component','memory'), ('38075','45959','component','boltdb'), ('38076','45960','component','raft'), ('38077','45961','component','boltdb'), ('38078','45962','component','evaluations'), ('38079','45963','component','fsm'), ('38080','45964','component','network'), ('38081','45964','component','rpc'), ('38082','45965','component','cpu'), ('38083','45966','component','network'), ('38084','45966','component','rpc'), ('38085','45967','component','network'), ('38086','45967','component','rpc'), ('38087','45968','component','network'), ('38088','45968','component','rpc'), ('38089','45969','component','network'), ('38090','45969','component','rpc'), ('38091','45970','component','network'), ('38092','45970','component','rpc'), ('38093','45971','component','evaluations'), ('38094','45972','component','evaluations'), ('38095','45973','component','evaluations'), ('38096','45974','component','evaluations'), ('38097','45975','component','evaluations'), ('38098','45976','component','fsm'), ('38099','45977','component','services'), ('38100','45978','component','services'), ('38101','45979','component','evaluations'), ('38102','45980','component','evaluations'), ('38103','45981','component','evaluations'), ('38104','45982','component','evaluations'), ('38105','45983','component','evaluations'), ('38106','45983','component','memory'), ('38107','45984','component','evaluations'), ('38108','45984','component','jobs'), ('38109','45984','component','memory'), ('38110','45985','component','cpu'), ('38111','45985','component','evaluations'), ('38112','45985','component','jobs'), ('38113','45986','component','cpu'), ('38114','45986','component','evaluations'), ('38115','45987','component','autopilot'), ('38116','45988','component','autopilot'), ('38117','45989','component','fsm'), ('38118','45990','component','fsm'), ('38119','45991','component','network'), ('38120','45992','component','boltdb'), ('38121','45993','component','leader'), ('38122','45993','component','raft'), ('38123','45994','component','raft'), ('38124','45995','component','fsm'), ('38125','45996','component','fds'), ('38126','45997','component','fds'), ('38127','45998','component','plan'), ('38128','45999','component','network'), ('38129','45999','component','plan'), ('38130','45999','component','rpc'), ('38131','46000','component','plan'), ('38132','46001','component','plan'), ('38133','46002','component','plan'), ('38134','46003','component','namespaces'), ('38135','46004','component','gossip'), ('38136','46005','component','leader'), ('38137','46005','component','raft'), ('38138','46006','component','leader'), ('38139','46006','component','raft'), ('38140','46007','component','network'), ('38141','46007','component','rpc'), ('38142','46008','component','jobs'), ('38143','46009','component','jobs'), ('38144','46010','component','jobs'), ('38145','46011','component','jobs'), ('38146','46012','component','jobs'), ('38147','46013','component','network'), ('38148','46013','component','rpc'), ('38149','46014','component','jobs'), ('38150','46015','component','jobs'), ('38151','46016','component','jobs'), ('38152','46017','component','jobs'), ('38153','46018','component','jobs'), ('38154','46019','component','network'), ('38155','46019','component','rpc'), ('38156','46020','component','network'), ('38157','46020','component','rpc'), ('38158','46021','component','workers'), ('38159','46027','component','driver'), ('38160','46027','detected','{#DRIVER.DETECTED}'), ('38161','46027','driver','{#DRIVER.NAME}'), ('38162','46028','component','driver'), ('38163','46028','detected','{#DRIVER.DETECTED}'), ('38164','46028','driver','{#DRIVER.NAME}'), ('38165','46029','component','cpu'), ('38166','46029','component','job'), ('38167','46029','job','{#JOB.NAME}'), ('38168','46029','namespace','{#JOB.NAMESPACE}'), ('38169','46029','task-group','{#JOB.TASK.GROUP}'), ('38170','46030','component','cpu'), ('38171','46030','component','job'), ('38172','46030','job','{#JOB.NAME}'), ('38173','46030','namespace','{#JOB.NAMESPACE}'), ('38174','46030','task-group','{#JOB.TASK.GROUP}'), ('38175','46031','component','cpu'), ('38176','46031','component','job'), ('38177','46031','job','{#JOB.NAME}'), ('38178','46031','namespace','{#JOB.NAMESPACE}'), ('38179','46031','task-group','{#JOB.TASK.GROUP}'), ('38180','46032','component','cpu'), ('38181','46032','component','job'), ('38182','46032','job','{#JOB.NAME}'), ('38183','46032','namespace','{#JOB.NAMESPACE}'), ('38184','46032','task-group','{#JOB.TASK.GROUP}'), ('38185','46033','component','cpu'), ('38186','46033','component','job'), ('38187','46033','job','{#JOB.NAME}'), ('38188','46033','namespace','{#JOB.NAMESPACE}'), ('38189','46033','task-group','{#JOB.TASK.GROUP}'), ('38190','46034','component','cpu'), ('38191','46034','component','job'), ('38192','46034','job','{#JOB.NAME}'), ('38193','46034','namespace','{#JOB.NAMESPACE}'), ('38194','46034','task-group','{#JOB.TASK.GROUP}'), ('38195','46035','component','cpu'), ('38196','46035','component','job'), ('38197','46035','job','{#JOB.NAME}'), ('38198','46035','namespace','{#JOB.NAMESPACE}'), ('38199','46035','task-group','{#JOB.TASK.GROUP}'), ('38200','46036','component','job'), ('38201','46036','component','memory'), ('38202','46036','job','{#JOB.NAME}'), ('38203','46036','namespace','{#JOB.NAMESPACE}'), ('38204','46036','task-group','{#JOB.TASK.GROUP}'), ('38205','46037','component','job'), ('38206','46037','component','memory'), ('38207','46037','job','{#JOB.NAME}'), ('38208','46037','namespace','{#JOB.NAMESPACE}'), ('38209','46037','task-group','{#JOB.TASK.GROUP}'), ('38210','46038','component','job'), ('38211','46038','component','memory'), ('38212','46038','job','{#JOB.NAME}'), ('38213','46038','namespace','{#JOB.NAMESPACE}'), ('38214','46038','task-group','{#JOB.TASK.GROUP}'), ('38215','46039','component','job'), ('38216','46039','component','memory'), ('38217','46039','job','{#JOB.NAME}'), ('38218','46039','namespace','{#JOB.NAMESPACE}'), ('38219','46039','task-group','{#JOB.TASK.GROUP}'), ('38220','46040','component','storage'), ('38221','46040','disk','{#DEV.NAME}'), ('38222','46041','component','inodes'), ('38223','46041','component','storage'), ('38224','46041','disk','{#DEV.NAME}'), ('38225','46042','component','storage'), ('38226','46042','disk','{#DEV.NAME}'), ('38227','46043','component','storage'), ('38228','46043','disk','{#DEV.NAME}'), ('38229','46044','component','storage'), ('38230','46044','disk','{#DEV.NAME}'), ('38236','46050','component','authorization'), ('38237','46051','component','raw'), ('38238','46052','component','raw'), ('38239','46053','component','raw'), ('38240','46054','component','raw'), ('38241','46055','component','alert'), ('38242','46055','component','application'), ('38243','46056','component','alert'), ('38244','46056','component','application'), ('38245','46057','component','alert'), ('38246','46057','component','application'), ('38247','46058','component','alert'), ('38248','46058','component','application'), ('38249','46059','component','alert'), ('38250','46059','component','application'), ('38251','46064','component','raw'), ('38252','46065','category','{#CATEGORY}'), ('38253','46065','component','alert'), ('38254','46065','component','application'), ('38255','46065','resource','{#RESOURCE_NAME}'), ('38256','46065','severity','{#SEVERITY}'), ('38257','46066','component','application'), ('38258','46066','component','customer'), ('38259','46066','customer','{#NAME}'), ('38260','46067','component','application'), ('38261','46067','component','device'), ('38262','46067','resource','{#NAME}'), ('38263','46067','tenant','{#TENANT_NAME}'), ('38264','46068','component','application'), ('38265','46068','component','device'), ('38266','46068','resource','{#NAME}'), ('38267','46068','tenant','{#TENANT_NAME}'), ('38268','46069','component','application'), ('38269','46069','component','device'), ('38270','46069','resource','{#NAME}'), ('38271','46069','tenant','{#TENANT_NAME}'), ('38272','46070','component','application'), ('38273','46070','component','device'), ('38274','46070','resource','{#NAME}'), ('38275','46070','tenant','{#TENANT_NAME}'), ('38276','46071','component','application'), ('38277','46071','component','device'), ('38278','46071','resource','{#NAME}'), ('38279','46071','tenant','{#TENANT_NAME}'), ('38280','46072','component','application'), ('38281','46072','component','device'), ('38282','46072','resource','{#NAME}'), ('38283','46072','tenant','{#TENANT_NAME}'), ('38284','46073','component','application'), ('38285','46073','component','device'), ('38286','46073','resource','{#NAME}'), ('38287','46073','tenant','{#TENANT_NAME}'), ('38288','46074','component','application'), ('38289','46074','component','device'), ('38290','46074','resource','{#NAME}'), ('38291','46074','tenant','{#TENANT_NAME}'), ('38292','46075','component','application'), ('38293','46075','component','device'), ('38294','46075','resource','{#NAME}'), ('38295','46075','tenant','{#TENANT_NAME}'), ('38296','46076','component','application'), ('38297','46076','component','device'), ('38298','46076','resource','{#NAME}'), ('38299','46076','tenant','{#TENANT_NAME}'), ('38300','46077','component','application'), ('38301','46077','component','device'), ('38302','46077','resource','{#NAME}'), ('38303','46077','tenant','{#TENANT_NAME}'), ('38304','46078','component','application'), ('38305','46078','component','device'), ('38306','46078','resource','{#NAME}'), ('38307','46078','tenant','{#TENANT_NAME}'), ('38308','46079','component','application'), ('38309','46079','component','device'), ('38310','46079','resource','{#NAME}'), ('38311','46079','tenant','{#TENANT_NAME}'), ('38312','46080','component','application'), ('38313','46080','component','device'), ('38314','46080','resource','{#NAME}'), ('38315','46080','tenant','{#TENANT_NAME}'), ('38316','46081','component','application'), ('38317','46081','component','device'), ('38318','46081','resource','{#NAME}'), ('38319','46081','tenant','{#TENANT_NAME}'), ('38320','46082','component','application'), ('38321','46082','component','device'), ('38322','46082','resource','{#NAME}'), ('38323','46082','tenant','{#TENANT_NAME}'), ('38324','46083','component','application'), ('38325','46083','component','device'), ('38326','46083','resource','{#NAME}'), ('38327','46083','tenant','{#TENANT_NAME}'), ('38328','46084','component','application'), ('38329','46084','component','device'), ('38330','46084','resource','{#NAME}'), ('38331','46084','tenant','{#TENANT_NAME}'), ('38332','46085','component','raw'), ('38333','46086','component','environment'), ('38334','46087','component','environment'), ('38335','46088','component','memory'), ('38336','46089','component','memory'), ('38337','46090','component','memory'), ('38338','46091','component','system'), ('38339','46092','component','environment'), ('38340','46093','component','environment'), ('38341','46094','component','memory'), ('38342','46095','component','memory'), ('38343','46096','component','memory'), ('38344','46097','component','memory'), ('38345','46098','component','memory'), ('38346','46099','component','memory'), ('38347','46100','component','memory'), ('38348','46101','component','memory'), ('38349','46102','component','environment'), ('38350','46103','component','memory'), ('38351','46104','component','storage'), ('38352','46105','component','environment'), ('38353','46106','component','environment'), ('38354','46107','component','storage'), ('38355','46108','component','cpu'), ('38356','46109','component','cpu'), ('38357','46110','component','cpu'), ('38358','46111','component','environment'), ('38359','46112','component','application'), ('38360','46113','component','application'), ('38361','46114','component','environment'), ('38362','46115','component','system'), ('38363','46117','component','raw'), ('38364','46117','user','{#NEXTCLOUD.USER}'), ('38365','46118','component','environment'), ('38366','46118','user','{#NEXTCLOUD.USER}'), ('38367','46119','component','environment'), ('38368','46119','user','{#NEXTCLOUD.USER}'), ('38369','46120','component','environment'), ('38370','46120','user','{#NEXTCLOUD.USER}'), ('38371','46121','component','environment'), ('38372','46121','user','{#NEXTCLOUD.USER}'), ('38373','46122','component','environment'), ('38374','46122','user','{#NEXTCLOUD.USER}'), ('38375','46123','component','storage'), ('38376','46123','user','{#NEXTCLOUD.USER}'), ('38377','46124','component','storage'), ('38378','46124','user','{#NEXTCLOUD.USER}'), ('38379','46125','component','storage'), ('38380','46125','user','{#NEXTCLOUD.USER}'), ('38381','46126','component','storage'), ('38382','46126','user','{#NEXTCLOUD.USER}'), ('38383','46127','component','storage'), ('38384','46127','user','{#NEXTCLOUD.USER}'), ('38385','46128','component','environment'), ('38386','46128','user','{#NEXTCLOUD.USER}'), ('38387','46129','component','network'), ('38388','46130','component','application'), ('38389','46131','component','application'), ('38390','46132','component','health'), ('38391','46132','component','network'), ('38392','46133','component','raw'), ('38393','46134','component','raw'), ('38394','46135','component','raw'), ('38395','46136','component','raw'), ('38396','46137','component','raw'), ('38397','46138','component','raw'), ('38398','46139','component','raw'), ('38399','46140','component','error'), ('38400','46141','component','system'), ('38401','46142','component','system'), ('38402','46143','component','cpu'), ('38403','46144','component','error'), ('38404','46145','component','system'), ('38405','46146','component','error'), ('38406','46147','component','system'), ('38407','46148','component','error'), ('38408','46149','component','system'), ('38409','46150','component','error'), ('38410','46151','component','error'), ('38411','46152','component','system'), ('38412','46153','component','system'), ('38413','46154','component','memory'), ('38414','46155','component','memory'), ('38415','46156','component','cpu'), ('38416','46157','component','error'), ('38417','46158','component','storage'), ('38418','46159','component','storage'), ('38419','46160','component','storage'), ('38420','46161','component','storage'), ('38421','46162','component','health'), ('38422','46162','component','network'), ('38423','46168','component','raw'), ('38424','46168','policy','{#FWNAME}'), ('38425','46169','component','raw'), ('38426','46169','description','{#IFALIAS}'), ('38427','46169','interface','{#IFKEY}'), ('38428','46170','component','raw'), ('38429','46170','health_check','{#NAME}'), ('38430','46170','interface','{#IFNAME}'), ('38431','46171','component','raw'), ('38432','46171','interface','{#NAME}'), ('38433','46171','zone','{#ZONE}'), ('38434','46172','component','raw'), ('38435','46172','service','{#KEY}'), ('38436','46173','component','firewall'), ('38437','46173','policy','{#FWNAME}'), ('38438','46174','component','firewall'), ('38439','46174','policy','{#FWNAME}'), ('38440','46175','component','firewall'), ('38441','46175','policy','{#FWNAME}'), ('38442','46176','component','firewall'), ('38443','46176','policy','{#FWNAME}'), ('38444','46177','component','firewall'), ('38445','46177','policy','{#FWNAME}'), ('38446','46178','component','firewall'), ('38447','46178','policy','{#FWNAME}'), ('38448','46179','component','firewall'), ('38449','46179','policy','{#FWNAME}'), ('38450','46180','component','firewall'), ('38451','46180','policy','{#FWNAME}'), ('38452','46181','component','network'), ('38453','46181','description','{#IFALIAS}'), ('38454','46181','interface','{#IFKEY}'), ('38455','46182','component','network'), ('38456','46182','description','{#IFALIAS}'), ('38457','46182','interface','{#IFKEY}'), ('38458','46183','component','network'), ('38459','46183','description','{#IFALIAS}'), ('38460','46183','interface','{#IFKEY}'), ('38461','46184','component','network'), ('38462','46184','description','{#IFALIAS}'), ('38463','46184','interface','{#IFKEY}'), ('38464','46185','component','network'), ('38465','46185','description','{#IFALIAS}'), ('38466','46185','interface','{#IFKEY}'), ('38467','46186','component','network'), ('38468','46186','description','{#IFALIAS}'), ('38469','46186','interface','{#IFKEY}'), ('38470','46187','component','network'), ('38471','46187','description','{#IFALIAS}'), ('38472','46187','interface','{#IFKEY}'), ('38473','46188','component','network'), ('38474','46188','description','{#IFALIAS}'), ('38475','46188','interface','{#IFKEY}'), ('38476','46189','component','network'), ('38477','46189','description','{#IFALIAS}'), ('38478','46189','interface','{#IFKEY}'), ('38479','46190','component','sd_wan'), ('38480','46190','health_check','{#NAME}'), ('38481','46190','interface','{#IFNAME}'), ('38482','46191','component','sd_wan'), ('38483','46191','health_check','{#NAME}'), ('38484','46191','interface','{#IFNAME}'), ('38485','46192','component','sd_wan'), ('38486','46192','health_check','{#NAME}'), ('38487','46192','interface','{#IFNAME}'), ('38488','46193','component','sd_wan'), ('38489','46193','health_check','{#NAME}'), ('38490','46193','interface','{#IFNAME}'), ('38491','46194','component','sd_wan'), ('38492','46194','health_check','{#NAME}'), ('38493','46194','interface','{#IFNAME}'), ('38494','46195','component','sd_wan'), ('38495','46195','health_check','{#NAME}'), ('38496','46195','interface','{#IFNAME}'), ('38497','46196','component','sd_wan'), ('38498','46196','interface','{#NAME}'), ('38499','46196','zone','{#ZONE}'), ('38500','46197','component','sd_wan'), ('38501','46197','interface','{#NAME}'), ('38502','46197','zone','{#ZONE}'), ('38503','46198','component','sd_wan'), ('38504','46198','interface','{#NAME}'), ('38505','46198','zone','{#ZONE}'), ('38506','46199','component','sd_wan'), ('38507','46199','interface','{#NAME}'), ('38508','46199','zone','{#ZONE}'), ('38509','46200','component','sd_wan'), ('38510','46200','interface','{#NAME}'), ('38511','46200','zone','{#ZONE}'), ('38512','46201','component','sd_wan'), ('38513','46201','interface','{#NAME}'), ('38514','46201','zone','{#ZONE}'), ('38515','46202','component','sd_wan'), ('38516','46202','interface','{#NAME}'), ('38517','46202','zone','{#ZONE}'), ('38518','46203','component','sd_wan'), ('38519','46203','interface','{#NAME}'), ('38520','46203','zone','{#ZONE}'), ('38521','46204','component','service'), ('38522','46204','name','{#KEY}'), ('38523','46205','component','service'), ('38524','46205','name','{#KEY}'), ('38525','46206','component','service'), ('38526','46206','name','{#KEY}'), ('38527','46207','component','service'), ('38528','46207','name','{#KEY}'), ('38529','46208','component','service'), ('38530','46208','name','{#KEY}'), ('38531','46209','component','service'), ('38532','46209','name','{#KEY}'), ('38533','46210','component','service'), ('38534','46210','name','{#KEY}'), ('38535','46211','component','service'), ('38536','46211','name','{#KEY}'), ('38537','46212','component','health'), ('38538','46212','component','network'), ('38539','46213','component','system'), ('38540','46214','component','memory'), ('38541','46215','component','memory'), ('38542','46216','component','memory'), ('38543','46217','component','memory'), ('38544','46218','component','storage'), ('38545','46219','component','storage'), ('38546','46220','component','storage'), ('38547','46221','component','storage'), ('38548','46222','component','system'), ('38549','46223','component','system'), ('38550','46224','component','system'), ('38551','46225','component','health'), ('38552','46225','component','network'), ('38553','46226','component','system'), ('38554','46227','component','system'), ('38555','46228','component','system'), ('38556','46229','component','system'), ('38557','46230','component','cpu'), ('38558','46231','component','cpu'), ('38559','46232','component','system'), ('38560','46233','component','network'), ('38561','46234','component','raw'), ('38562','46235','component','health'), ('38563','46235','component','network'), ('38564','46236','component','health'), ('38565','46236','component','network'), ('38566','46238','component','network'), ('38567','46238','description','{#IFALIAS}'), ('38568','46238','interface','{#IFNAME}'), ('38569','46239','component','network'), ('38570','46239','description','{#IFALIAS}'), ('38571','46239','interface','{#IFNAME}'), ('38572','46240','component','network'), ('38573','46240','description','{#IFALIAS}'), ('38574','46240','interface','{#IFNAME}'), ('38575','46241','component','network'), ('38576','46241','description','{#IFALIAS}'), ('38577','46241','interface','{#IFNAME}'), ('38578','46242','component','network'), ('38579','46242','description','{#IFALIAS}'), ('38580','46242','interface','{#IFNAME}'), ('38581','46243','component','network'), ('38582','46243','description','{#IFALIAS}'), ('38583','46243','interface','{#IFNAME}'), ('38584','46244','component','network'), ('38585','46244','description','{#IFALIAS}'), ('38586','46244','interface','{#IFNAME}'), ('38587','46245','component','network'), ('38588','46245','description','{#IFALIAS}'), ('38589','46245','interface','{#IFNAME}'), ('38590','46246','component','network'), ('38591','46246','description','{#IFALIAS}'), ('38592','46246','interface','{#IFNAME}'), ('38593','46247','component','saml'), ('38595','46249','component','raw'), ('38611','46268','component','license'), ('38612','46268','component','raw'), ('38613','46269','component','network'), ('38614','46269','network','{#NETWORK.NAME}'), ('38616','46271','component','network'), ('38617','46271','component','uplink'), ('38618','46271','interface','{#INTERFACE}'), ('38619','46271','network','{#NETWORK.NAME}'), ('38620','46271','serial-number','{#UPLINK.DEVICE.SERIAL}'), ('38621','46272','component','network'), ('38622','46272','component','uplink'), ('38623','46272','interface','{#INTERFACE}'), ('38624','46272','network','{#NETWORK.NAME}'), ('38625','46272','serial-number','{#UPLINK.DEVICE.SERIAL}'), ('38626','46273','component','raw'), ('38635','46278','component','license'), ('38636','46278','license-type','{#LICENSE.TYPE}'), ('38637','46279','component','license'), ('38638','46279','license-type','{#LICENSE.TYPE}'), ('38639','46280','component','license'), ('38640','46280','license-type','{#LICENSE.TYPE}'), ('38641','46281','component','license'), ('38642','46281','license-type','{#LICENSE.TYPE}'), ('38643','46282','component','license'), ('38644','46282','license-type','{#LICENSE.TYPE}'), ('38645','46283','component','license'), ('38646','46283','license-type','{#LICENSE.TYPE}'), ('38647','46284','component','license'), ('38648','46284','license-type','{#LICENSE.TYPE}'), ('38650','46286','component','vpn'), ('38651','46287','component','vpn'), ('38652','46288','component','vpn'), ('38653','46289','component','vpn'), ('38654','46290','component','vpn'), ('38655','46291','component','vpn'), ('38656','46292','component','vpn'), ('38657','46293','component','vpn'), ('38658','46294','component','vpn'), ('38659','46299','build','{#NAME}'), ('38660','46299','component','build'), ('38661','46299','component','openshift'), ('38662','46299','namespace','{#NAMESPACE}'), ('38663','46300','build','{#NAME}'), ('38664','46300','component','build'), ('38665','46300','component','openshift'), ('38666','46300','namespace','{#NAMESPACE}'), ('38667','46301','build','{#NAME}'), ('38668','46301','component','build'), ('38669','46301','component','openshift'), ('38670','46301','namespace','{#NAMESPACE}'), ('38671','46302','buildconfig','{#NAME}'), ('38672','46302','component','buildconfig'), ('38673','46302','component','openshift'), ('38674','46302','namespace','{#NAMESPACE}'), ('38675','46303','buildconfig','{#NAME}'), ('38676','46303','component','buildconfig'), ('38677','46303','component','openshift'), ('38678','46303','namespace','{#NAMESPACE}'), ('38679','46304','buildconfig','{#NAME}'), ('38680','46304','component','buildconfig'), ('38681','46304','component','openshift'), ('38682','46304','namespace','{#NAMESPACE}'), ('38683','46305','component','openshift'), ('38684','46305','quota','{#NAME}'), ('38685','46305','resource','{#RESOURCE}'), ('38686','46305','type','{#TYPE}'), ('38687','46306','component','openshift'), ('38688','46306','component','route'), ('38689','46306','host','{#HOST}'), ('38690','46306','namespace','{#NAMESPACE}'), ('38691','46306','route','{#NAME}'), ('38692','46307','component','openshift'), ('38693','46307','component','route'), ('38694','46307','host','{#HOST}'), ('38695','46307','namespace','{#NAMESPACE}'), ('38696','46307','route','{#NAME}'), ('38697','46308','component','system'), ('38698','46309','component','system'), ('38699','46310','component','system'), ('38700','46311','component','system'), ('38701','46312','component','system'), ('38702','46313','component','system'), ('38703','46314','component','system'), ('38704','46315','component','system'), ('38705','46316','component','system'), ('38706','46317','component','tablespaces'), ('38707','46317','contents','{#CONTENTS}'), ('38708','46317','database','{#CON_NAME}'), ('38709','46317','tablespace','{#TABLESPACE}'), ('38710','46318','component','tablespaces'), ('38711','46318','contents','{#CONTENTS}'), ('38712','46318','database','{#CON_NAME}'), ('38713','46318','tablespace','{#TABLESPACE}'), ('38714','46319','component','raw'), ('38715','46320','component','status'), ('38716','46330','component','computer-system'), ('38717','46330','component','raw'), ('38718','46330','computer-system','{#SYSTEM_HOSTNAME}'), ('38719','46331','component','controller'), ('38720','46331','component','raw'), ('38721','46331','component','storage'), ('38722','46331','computer-system','{#SYSTEM_HOSTNAME}'), ('38723','46331','controller','{#CONTROLLER_ID}'), ('38724','46331','location','{#CONTROLLER_LOCATION}'), ('38725','46331','storage','{#STORAGE_ID}'), ('38726','46332','component','drive'), ('38727','46332','component','raw'), ('38728','46332','component','storage'), ('38729','46332','computer-system','{#SYSTEM_HOSTNAME}'), ('38730','46332','drive','{#DRIVE_ID}'), ('38731','46332','location','{#DRIVE_LOCATION}'), ('38732','46332','storage','{#STORAGE_ID}'), ('38733','46333','chassis','{#CHASSIS_ID}'), ('38734','46333','component','environment'), ('38735','46333','component','fan'), ('38736','46333','component','raw'), ('38737','46333','fan','{#FAN_ID}'), ('38738','46334','component','manager'), ('38739','46334','component','raw'), ('38740','46334','manager','{#MANAGER_ID}'), ('38741','46335','chassis','{#CHASSIS_ID}'), ('38742','46335','component','power'), ('38743','46335','component','raw'), ('38744','46335','psu','{#PSU_ID}'), ('38745','46336','chassis','{#CHASSIS_ID}'), ('38746','46336','component','environment'), ('38747','46336','component','raw'), ('38748','46336','component','sensor'), ('38749','46336','sensor','{#SENSOR_ID}'), ('38750','46336','sensor-context','{#SENSOR_CONTEXT}'), ('38751','46337','component','raw'), ('38752','46337','component','storage'), ('38753','46337','computer-system','{#SYSTEM_HOSTNAME}'), ('38754','46337','storage','{#STORAGE_ID}'), ('38755','46338','component','raw'), ('38756','46338','component','storage'), ('38757','46338','component','volume'), ('38758','46338','computer-system','{#SYSTEM_HOSTNAME}'), ('38759','46338','storage','{#STORAGE_ID}'), ('38760','46338','volume','{#VOLUME_ID}'), ('38761','46339','component','computer-system'), ('38762','46339','component','inventory'), ('38763','46339','computer-system','{#SYSTEM_HOSTNAME}'), ('38764','46340','component','computer-system'), ('38765','46340','component','inventory'), ('38766','46340','computer-system','{#SYSTEM_HOSTNAME}'), ('38767','46341','component','computer-system'), ('38768','46341','component','inventory'), ('38769','46341','computer-system','{#SYSTEM_HOSTNAME}'), ('38770','46342','component','computer-system'), ('38771','46342','component','health'), ('38772','46342','computer-system','{#SYSTEM_HOSTNAME}'), ('38773','46343','component','computer-system'), ('38774','46343','component','inventory'), ('38775','46343','computer-system','{#SYSTEM_HOSTNAME}'), ('38776','46344','component','computer-system'), ('38777','46344','component','cpu'), ('38778','46344','component','performance'), ('38779','46344','computer-system','{#SYSTEM_HOSTNAME}'), ('38780','46345','component','computer-system'), ('38781','46345','component','performance'), ('38782','46345','component','storage'), ('38783','46345','computer-system','{#SYSTEM_HOSTNAME}'), ('38784','46346','component','computer-system'), ('38785','46346','component','memory'), ('38786','46346','component','performance'), ('38787','46346','computer-system','{#SYSTEM_HOSTNAME}'), ('38788','46347','component','controller'), ('38789','46347','component','inventory'), ('38790','46347','component','storage'), ('38791','46347','computer-system','{#SYSTEM_HOSTNAME}'), ('38792','46347','controller','{#CONTROLLER_ID}'), ('38793','46347','location','{#CONTROLLER_LOCATION}'), ('38794','46347','storage','{#STORAGE_ID}'), ('38795','46348','component','controller'), ('38796','46348','component','inventory'), ('38797','46348','component','storage'), ('38798','46348','computer-system','{#SYSTEM_HOSTNAME}'), ('38799','46348','controller','{#CONTROLLER_ID}'), ('38800','46348','location','{#CONTROLLER_LOCATION}'), ('38801','46348','storage','{#STORAGE_ID}'), ('38802','46349','component','controller'), ('38803','46349','component','health'), ('38804','46349','component','storage'), ('38805','46349','computer-system','{#SYSTEM_HOSTNAME}'), ('38806','46349','controller','{#CONTROLLER_ID}'), ('38807','46349','storage','{#STORAGE_ID}'), ('38808','46350','component','drive'), ('38809','46350','component','storage'), ('38810','46350','computer-system','{#SYSTEM_HOSTNAME}'), ('38811','46350','drive','{#DRIVE_ID}'), ('38812','46350','location','{#DRIVE_LOCATION}'), ('38813','46350','storage','{#STORAGE_ID}'), ('38814','46351','component','drive'), ('38815','46351','component','storage'), ('38816','46351','computer-system','{#SYSTEM_HOSTNAME}'), ('38817','46351','drive','{#DRIVE_ID}'), ('38818','46351','location','{#DRIVE_LOCATION}'), ('38819','46351','storage','{#STORAGE_ID}'), ('38820','46352','component','drive'), ('38821','46352','component','inventory'), ('38822','46352','component','storage'), ('38823','46352','computer-system','{#SYSTEM_HOSTNAME}'), ('38824','46352','drive','{#DRIVE_ID}'), ('38825','46352','location','{#DRIVE_LOCATION}'), ('38826','46352','storage','{#STORAGE_ID}'), ('38827','46353','component','drive'), ('38828','46353','component','storage'), ('38829','46353','computer-system','{#SYSTEM_HOSTNAME}'), ('38830','46353','drive','{#DRIVE_ID}'), ('38831','46353','location','{#DRIVE_LOCATION}'), ('38832','46353','storage','{#STORAGE_ID}'), ('38833','46354','component','drive'), ('38834','46354','component','inventory'), ('38835','46354','component','storage'), ('38836','46354','computer-system','{#SYSTEM_HOSTNAME}'), ('38837','46354','drive','{#DRIVE_ID}'), ('38838','46354','location','{#DRIVE_LOCATION}'), ('38839','46354','storage','{#STORAGE_ID}'), ('38840','46355','component','drive'), ('38841','46355','component','health'), ('38842','46355','component','storage'), ('38843','46355','computer-system','{#SYSTEM_HOSTNAME}'), ('38844','46355','drive','{#DRIVE_ID}'), ('38845','46355','location','{#DRIVE_LOCATION}'), ('38846','46355','storage','{#STORAGE_ID}'), ('38847','46356','chassis','{#CHASSIS_ID}'), ('38848','46356','component','environment'), ('38849','46356','component','fan'), ('38850','46356','component','performance'), ('38851','46356','fan','{#FAN_ID}'), ('38852','46357','chassis','{#CHASSIS_ID}'), ('38853','46357','component','environment'), ('38854','46357','component','fan'), ('38855','46357','component','health'), ('38856','46357','fan','{#FAN_ID}'), ('38857','46358','component','inventory'), ('38858','46358','component','manager'), ('38859','46358','manager','{#MANAGER_ID}'), ('38860','46359','component','inventory'), ('38861','46359','component','manager'), ('38862','46359','manager','{#MANAGER_ID}'), ('38863','46360','component','health'), ('38864','46360','component','manager'), ('38865','46360','manager','{#MANAGER_ID}'), ('38866','46361','component','manager'), ('38867','46361','manager','{#MANAGER_ID}'), ('38868','46362','chassis','{#CHASSIS_ID}'), ('38869','46362','component','performance'), ('38870','46362','component','power'), ('38871','46362','psu','{#PSU_ID}'), ('38872','46363','chassis','{#CHASSIS_ID}'), ('38873','46363','component','performance'), ('38874','46363','component','power'), ('38875','46363','psu','{#PSU_ID}'), ('38876','46364','chassis','{#CHASSIS_ID}'), ('38877','46364','component','inventory'), ('38878','46364','component','power'), ('38879','46364','psu','{#PSU_ID}'), ('38880','46365','chassis','{#CHASSIS_ID}'), ('38881','46365','component','inventory'), ('38882','46365','component','power'), ('38883','46365','psu','{#PSU_ID}'), ('38884','46366','chassis','{#CHASSIS_ID}'), ('38885','46366','component','health'), ('38886','46366','component','power'), ('38887','46366','psu','{#PSU_ID}'), ('38888','46367','chassis','{#CHASSIS_ID}'), ('38889','46367','component','environment'), ('38890','46367','component','health'), ('38891','46367','component','sensor'), ('38892','46367','sensor','{#SENSOR_ID}'), ('38893','46367','sensor-context','{#SENSOR_CONTEXT}'), ('38894','46368','chassis','{#CHASSIS_ID}'), ('38895','46368','component','environment'), ('38896','46368','component','performance'), ('38897','46368','component','sensor'), ('38898','46368','sensor','{#SENSOR_ID}'), ('38899','46368','sensor-context','{#SENSOR_CONTEXT}'), ('38900','46369','component','health'), ('38901','46369','component','storage'), ('38902','46369','computer-system','{#SYSTEM_HOSTNAME}'), ('38903','46369','storage','{#STORAGE_ID}'), ('38904','46370','component','storage'), ('38905','46370','component','volume'), ('38906','46370','computer-system','{#SYSTEM_HOSTNAME}'), ('38907','46370','storage','{#STORAGE_ID}'), ('38908','46370','volume','{#VOLUME_ID}'), ('38909','46371','component','storage'), ('38910','46371','component','volume'), ('38911','46371','computer-system','{#SYSTEM_HOSTNAME}'), ('38912','46371','storage','{#STORAGE_ID}'), ('38913','46371','volume','{#VOLUME_ID}'), ('38914','46372','component','health'), ('38915','46372','component','storage'), ('38916','46372','component','volume'), ('38917','46372','computer-system','{#SYSTEM_HOSTNAME}'), ('38918','46372','storage','{#STORAGE_ID}'), ('38919','46372','volume','{#VOLUME_ID}'), ('38920','46374','component','raw'), ('38921','46374','filter-id','{#AWS.S3.FILTER.ID.NAME}'), ('38922','46375','component','errors'), ('38923','46375','component','requests'), ('38924','46375','filter-id','{#AWS.S3.FILTER.ID.NAME}'), ('38925','46376','component','errors'), ('38926','46376','component','requests'), ('38927','46376','filter-id','{#AWS.S3.FILTER.ID.NAME}'), ('38928','46377','component','requests'), ('38929','46378','component','requests'), ('38930','46378','filter-id','{#AWS.S3.FILTER.ID.NAME}'), ('38931','46379','component','replication'), ('38932','46379','filter-id','{#AWS.S3.FILTER.ID.NAME}'), ('38933','46380','component','requests'), ('38934','46380','filter-id','{#AWS.S3.FILTER.ID.NAME}'), ('38935','46381','component','requests'), ('38936','46381','filter-id','{#AWS.S3.FILTER.ID.NAME}'), ('38937','46382','component','latency'), ('38938','46382','component','requests'), ('38939','46382','filter-id','{#AWS.S3.FILTER.ID.NAME}'), ('38940','46383','component','latency'), ('38941','46383','component','requests'), ('38942','46383','filter-id','{#AWS.S3.FILTER.ID.NAME}'), ('38943','46384','component','requests'), ('38944','46384','filter-id','{#AWS.S3.FILTER.ID.NAME}'), ('38945','46385','component','requests'), ('38946','46385','filter-id','{#AWS.S3.FILTER.ID.NAME}'), ('38947','46386','component','requests'), ('38948','46386','filter-id','{#AWS.S3.FILTER.ID.NAME}'), ('38949','46387','component','replication'), ('38950','46387','filter-id','{#AWS.S3.FILTER.ID.NAME}'), ('38951','46388','component','requests'), ('38952','46388','filter-id','{#AWS.S3.FILTER.ID.NAME}'), ('38953','46389','component','requests'), ('38954','46389','filter-id','{#AWS.S3.FILTER.ID.NAME}'), ('38955','46390','component','replication'), ('38956','46390','filter-id','{#AWS.S3.FILTER.ID.NAME}'), ('38957','46391','component','requests'), ('38958','46391','filter-id','{#AWS.S3.FILTER.ID.NAME}'), ('38959','46392','component','requests'), ('38960','46392','filter-id','{#AWS.S3.FILTER.ID.NAME}'), ('38961','46393','component','requests'), ('38962','46393','filter-id','{#AWS.S3.FILTER.ID.NAME}'), ('38963','46394','component','latency'), ('38964','46394','component','requests'), ('38965','46394','filter-id','{#AWS.S3.FILTER.ID.NAME}'), ('38966','46395','component','latency'), ('38967','46395','component','requests'), ('38968','46395','filter-id','{#AWS.S3.FILTER.ID.NAME}'), ('38969','46396','component','raw'), ('38970','46397','component','raw'), ('38971','46403','component','cost'), ('38972','46403','location','{#AZURE.RESOURCE.LOCATION}'), ('38973','46403','meter','{#AZURE.BILLING.METER}'), ('38974','46403','resource-group','{#AZURE.RESOURCE.GROUP}'), ('38975','46403','service','{#AZURE.SERVICE.NAME}'), ('38976','46404','component','cost'), ('38977','46404','month','{#AZURE.BILLING.MONTH}'), ('38978','46405','component','cost'), ('38979','46405','location','{#AZURE.RESOURCE.LOCATION}'), ('38980','46405','month','{#AZURE.BILLING.MONTH}'), ('38981','46406','component','cost'), ('38982','46406','month','{#AZURE.BILLING.MONTH}'), ('38983','46406','resource-group','{#AZURE.RESOURCE.GROUP}'), ('38984','46407','component','cost'), ('38985','46407','month','{#AZURE.BILLING.MONTH}'), ('38986','46407','service','{#AZURE.SERVICE.NAME}'), ('38987','46408','component','raw'), ('38988','46409','component','raw'), ('38989','46410','component','raw'), ('38990','46411','component','raw'), ('38991','46412','component','raw'), ('38992','46413','component','raw'), ('38993','46414','component','raw'), ('38994','46415','component','raw'), ('38995','46423','availability-group','{#GROUP_NAME}'), ('38996','46423','component','availability-group'), ('38997','46424','availability-group','{#GROUP_NAME}'), ('38998','46424','component','availability-group'), ('38999','46425','availability-group','{#GROUP_NAME}'), ('39000','46425','component','availability-group'), ('39001','46426','availability-group','{#GROUP_NAME}'), ('39002','46426','component','availability-group'), ('39003','46427','availability-group','{#GROUP_NAME}'), ('39004','46427','component','local-db'), ('39005','46427','local-db','{#DBNAME}'), ('39006','46428','availability-group','{#GROUP_NAME}'), ('39007','46428','component','local-db'), ('39008','46428','local-db','{#DBNAME}'), ('39009','46429','availability-group','{#GROUP_NAME}'), ('39010','46429','component','local-db'), ('39011','46429','local-db','{#DBNAME}'), ('39012','46430','component','mssql-mirroring'), ('39013','46430','mssql-mirroring','{#DBNAME}'), ('39014','46431','component','mssql-mirroring'), ('39015','46431','mssql-mirroring','{#DBNAME}'), ('39016','46432','component','mssql-mirroring'), ('39017','46432','mssql-mirroring','{#DBNAME}'), ('39018','46433','component','mssql-mirroring'), ('39019','46433','mssql-mirroring','{#DBNAME}'), ('39020','46434','component','mssql-mirroring'), ('39021','46434','mssql-mirroring','{#DBNAME}'), ('39022','46435','availability-group','{#GROUP_NAME}'), ('39023','46435','component','non-local-db'), ('39024','46435','non-local-db','{#DBNAME}'), ('39025','46436','availability-group','{#GROUP_NAME}'), ('39026','46436','component','non-local-db'), ('39027','46436','non-local-db','{#DBNAME}'), ('39028','46437','cluster-name','{#CLUSTER_NAME}'), ('39029','46437','component','quorum'), ('39030','46438','cluster-name','{#CLUSTER_NAME}'), ('39031','46438','component','quorum'), ('39032','46439','component','quorum members'), ('39033','46439','quorum-members-name','{#MEMBER_NAME}'), ('39034','46440','component','quorum members'), ('39035','46440','quorum-members-name','{#MEMBER_NAME}'), ('39036','46441','component','quorum members'), ('39037','46441','quorum-members-name','{#MEMBER_NAME}'), ('39038','46442','availability-group','{#GROUP_NAME}'), ('39039','46442','component','replica'), ('39040','46442','replica','{#REPLICA_NAME}'), ('39041','46443','availability-group','{#GROUP_NAME}'), ('39042','46443','component','replica'), ('39043','46443','replica','{#REPLICA_NAME}'), ('39044','46444','availability-group','{#GROUP_NAME}'), ('39045','46444','component','replica'), ('39046','46444','replica','{#REPLICA_NAME}'), ('39047','46445','availability-group','{#GROUP_NAME}'), ('39048','46445','component','replica'), ('39049','46445','replica','{#REPLICA_NAME}'), ('39050','46446','availability-group','{#GROUP_NAME}'), ('39051','46446','component','replica'), ('39052','46446','replica','{#REPLICA_NAME}'), ('39053','46447','availability-group','{#GROUP_NAME}'), ('39054','46447','component','replica'), ('39055','46447','replica','{#REPLICA_NAME}'), ('39056','46448','availability-group','{#GROUP_NAME}'), ('39057','46448','component','replica'), ('39058','46448','replica','{#REPLICA_NAME}'), ('39059','46449','component','database'), ('39060','46449','database','{#DBNAME}'), ('39061','46450','component','raw'), ('39062','46451','component','raw'), ('39063','46452','component','raw'), ('39064','46453','component','raw'), ('39065','46454','component','connections'), ('39066','46455','component','status'), ('39067','46456','component','authorization'), ('39068','46456','component','errors'), ('39069','46457','component','authorization'), ('39070','46457','component','errors'), ('39071','46458','component','authorization'), ('39072','46459','component','authorization'), ('39073','46460','component','authorization'), ('39074','46460','component','errors'), ('39075','46461','component','capacity'), ('39076','46462','component','errors'), ('39077','46463','component','http'), ('39078','46463','http-code','3xx'), ('39079','46464','component','http'), ('39080','46464','http-code','4xx'), ('39081','46465','component','http'), ('39082','46465','http-code','5xx'), ('39083','46466','component','http'), ('39084','46466','http-code','5xx'), ('39085','46466','http-code','500'), ('39086','46467','component','http'), ('39087','46467','http-code','5xx'), ('39088','46467','http-code','502'), ('39089','46468','component','http'), ('39090','46468','http-code','5xx'), ('39091','46468','http-code','503'), ('39092','46469','component','http'), ('39093','46469','http-code','5xx'), ('39094','46469','http-code','504'), ('39095','46470','component','responses'), ('39096','46471','component','http'), ('39097','46472','component','http'), ('39098','46473','component','status'), ('39099','46474','component','connections'), ('39100','46475','component','errors'), ('39101','46476','component','capacity'), ('39102','46477','component','connections'), ('39103','46478','component','requests'), ('39104','46479','component','requests'), ('39105','46480','component','errors'), ('39106','46481','component','responses'), ('39107','46482','component','errors'), ('39108','46485','component','raw'), ('39109','46485','component','target-groups'), ('39110','46485','protocol','{#AWS.ELB.TARGET.GROUP.PROTOCOL}'), ('39111','46485','target-group','{#AWS.ELB.TARGET.GROUP.NAME}'), ('39112','46485','type','{#AWS.ELB.TARGET.GROUP.TYPE}'), ('39113','46486','component','raw'), ('39114','46487','component','target-groups'), ('39115','46487','protocol','{#AWS.ELB.TARGET.GROUP.PROTOCOL}'), ('39116','46487','target-group','{#AWS.ELB.TARGET.GROUP.NAME}'), ('39117','46487','type','{#AWS.ELB.TARGET.GROUP.TYPE}'), ('39118','46488','component','health'), ('39119','46488','component','target-groups'), ('39120','46488','protocol','{#AWS.ELB.TARGET.GROUP.PROTOCOL}'), ('39121','46488','target-group','{#AWS.ELB.TARGET.GROUP.NAME}'), ('39122','46488','type','{#AWS.ELB.TARGET.GROUP.TYPE}'), ('39123','46489','component','health'), ('39124','46489','component','target-groups'), ('39125','46489','protocol','{#AWS.ELB.TARGET.GROUP.PROTOCOL}'), ('39126','46489','target-group','{#AWS.ELB.TARGET.GROUP.NAME}'), ('39127','46489','type','{#AWS.ELB.TARGET.GROUP.TYPE}'), ('39128','46490','component','health'), ('39129','46490','component','target-groups'), ('39130','46490','protocol','{#AWS.ELB.TARGET.GROUP.PROTOCOL}'), ('39131','46490','target-group','{#AWS.ELB.TARGET.GROUP.NAME}'), ('39132','46490','type','{#AWS.ELB.TARGET.GROUP.TYPE}'), ('39133','46491','component','http'), ('39134','46491','component','target-groups'), ('39135','46491','http-code','2xx'), ('39136','46491','protocol','{#AWS.ELB.TARGET.GROUP.PROTOCOL}'), ('39137','46491','target-group','{#AWS.ELB.TARGET.GROUP.NAME}'), ('39138','46491','type','{#AWS.ELB.TARGET.GROUP.TYPE}'), ('39139','46492','component','http'), ('39140','46492','component','target-groups'), ('39141','46492','http-code','3xx'), ('39142','46492','protocol','{#AWS.ELB.TARGET.GROUP.PROTOCOL}'), ('39143','46492','target-group','{#AWS.ELB.TARGET.GROUP.NAME}'), ('39144','46492','type','{#AWS.ELB.TARGET.GROUP.TYPE}'), ('39145','46493','component','http'), ('39146','46493','component','target-groups'), ('39147','46493','http-code','4xx'), ('39148','46493','protocol','{#AWS.ELB.TARGET.GROUP.PROTOCOL}'), ('39149','46493','target-group','{#AWS.ELB.TARGET.GROUP.NAME}'), ('39150','46493','type','{#AWS.ELB.TARGET.GROUP.TYPE}'), ('39151','46494','component','http'), ('39152','46494','component','target-groups'), ('39153','46494','http-code','5xx'), ('39154','46494','protocol','{#AWS.ELB.TARGET.GROUP.PROTOCOL}'), ('39155','46494','target-group','{#AWS.ELB.TARGET.GROUP.NAME}'), ('39156','46494','type','{#AWS.ELB.TARGET.GROUP.TYPE}'), ('39157','46495','component','target-groups'), ('39158','46495','protocol','{#AWS.ELB.TARGET.GROUP.PROTOCOL}'), ('39159','46495','target-group','{#AWS.ELB.TARGET.GROUP.NAME}'), ('39160','46495','type','{#AWS.ELB.TARGET.GROUP.TYPE}'), ('39161','46496','component','requests'), ('39162','46496','component','target-groups'), ('39163','46496','protocol','{#AWS.ELB.TARGET.GROUP.PROTOCOL}'), ('39164','46496','target-group','{#AWS.ELB.TARGET.GROUP.NAME}'), ('39165','46496','type','{#AWS.ELB.TARGET.GROUP.TYPE}'), ('39166','46497','component','health'), ('39167','46497','component','target-groups'), ('39168','46497','protocol','{#AWS.ELB.TARGET.GROUP.PROTOCOL}'), ('39169','46497','target-group','{#AWS.ELB.TARGET.GROUP.NAME}'), ('39170','46497','type','{#AWS.ELB.TARGET.GROUP.TYPE}'), ('39171','46498','component','requests'), ('39172','46498','component','target-groups'), ('39173','46498','protocol','{#AWS.ELB.TARGET.GROUP.PROTOCOL}'), ('39174','46498','target-group','{#AWS.ELB.TARGET.GROUP.NAME}'), ('39175','46498','type','{#AWS.ELB.TARGET.GROUP.TYPE}'), ('39176','46499','component','health'), ('39177','46499','component','target-groups'), ('39178','46499','protocol','{#AWS.ELB.TARGET.GROUP.PROTOCOL}'), ('39179','46499','target-group','{#AWS.ELB.TARGET.GROUP.NAME}'), ('39180','46499','type','{#AWS.ELB.TARGET.GROUP.TYPE}'), ('39181','46500','component','health'), ('39182','46500','component','target-groups'), ('39183','46500','protocol','{#AWS.ELB.TARGET.GROUP.PROTOCOL}'), ('39184','46500','target-group','{#AWS.ELB.TARGET.GROUP.NAME}'), ('39185','46500','type','{#AWS.ELB.TARGET.GROUP.TYPE}'), ('39186','46501','component','alarms'), ('39187','46502','component','alarms'), ('39188','46504','component','raw'), ('39189','46505','component','wait-time'), ('39190','46506','component','wait-time'), ('39191','46507','component','raw'), ('39192','46508','component','raw'), ('39193','46509','component','raw'), ('39194','46510','component','raw'), ('39195','46511','component','raw'), ('39196','46512','component','raw'), ('39197','46513','component','application'), ('39198','46514','component','application'), ('39199','46515','component','raw'), ('39200','46516','component','raw'), ('39201','46517','component','raw'), ('39202','46518','component','raw'), ('39203','46519','component','application'), ('39204','46520','component','application'), ('39205','46521','component','network'), ('39206','46522','component','raw'), ('39207','46523','component','raw'), ('39208','46524','component','raw'), ('39209','46525','component','raw'), ('39210','46526','component','raw'), ('39211','46527','component','raw'), ('39212','46528','component','raw'), ('39213','46529','component','raw'), ('39214','46530','component','raw'), ('39215','46531','component','raw'), ('39216','46532','component','transaction'), ('39217','46533','component','application'), ('39218','46534','component','performance'), ('39219','46535','component','wait-time'), ('39220','46536','component','wait-time'), ('39221','46537','component','wait-time'), ('39222','46538','component','wait-time'), ('39223','46539','component','performance'), ('39224','46540','component','cache'), ('39225','46541','component','cache'), ('39226','46542','component','cache'), ('39227','46543','component','cache'), ('39228','46544','component','cache'), ('39229','46544','component','page'), ('39230','46545','component','page'), ('39231','46545','component','performance'), ('39232','46546','component','page'), ('39233','46547','component','application'), ('39234','46548','component','error'), ('39235','46548','component','performance'), ('39236','46549','component','performance'), ('39237','46550','component','performance'), ('39238','46551','component','performance'), ('39239','46552','component','performance'), ('39240','46553','component','memory'), ('39241','46554','component','performance'), ('39242','46555','component','error'), ('39243','46555','component','performance'), ('39244','46556','component','error'), ('39245','46556','component','performance'), ('39246','46557','component','performance'), ('39247','46557','component','wait-time'), ('39248','46558','component','performance'), ('39249','46559','component','lock'), ('39250','46559','component','performance'), ('39251','46560','component','lock'), ('39252','46560','component','performance'), ('39253','46561','component','lock'), ('39254','46561','component','performance'), ('39255','46562','component','lock'), ('39256','46563','component','performance'), ('39257','46564','component','performance'), ('39258','46565','component','log'), ('39259','46566','component','log'), ('39260','46567','component','memory'), ('39261','46568','component','memory'), ('39262','46569','component','memory'), ('39263','46570','component','deadlock'), ('39264','46570','component','performance'), ('39265','46571','component','error'), ('39266','46571','component','performance'), ('39267','46572','component','page'), ('39268','46573','component','performance'), ('39269','46574','component','page'), ('39270','46574','component','performance'), ('39271','46575','component','page'), ('39272','46575','component','performance'), ('39273','46576','component','page'), ('39274','46576','component','performance'), ('39275','46577','component','application'), ('39276','46578','component','page'), ('39277','46578','component','performance'), ('39278','46579','component','performance'), ('39279','46580','component','performance'), ('39280','46581','component','performance'), ('39281','46582','component','lock'), ('39282','46582','component','performance'), ('39283','46583','component','page'), ('39284','46584','component','memory'), ('39285','46585','component','wait-time'), ('39286','46586','component','memory'), ('39287','46587','component','performance'), ('39288','46587','component','transaction'), ('39289','46588','component','performance'), ('39290','46589','component','application'), ('39291','46590','component','error'), ('39292','46590','component','performance'), ('39293','46591','component','performance'), ('39294','46592','component','performance'), ('39295','46593','component','cache'), ('39296','46603','availability-group','{#GROUP_NAME}'), ('39297','46603','component','availability-group'), ('39298','46604','availability-group','{#GROUP_NAME}'), ('39299','46604','component','availability-group'), ('39300','46605','availability-group','{#GROUP_NAME}'), ('39301','46605','component','availability-group'), ('39302','46606','availability-group','{#GROUP_NAME}'), ('39303','46606','component','availability-group'), ('39304','46607','component','raw'), ('39305','46607','database','{#DBNAME}'), ('39306','46608','component','raw'), ('39307','46608','database','{#DBNAME}'), ('39308','46609','component','raw'), ('39309','46609','mssql-job','{#JOBNAME}'), ('39310','46610','availability-group','{#GROUP_NAME}'), ('39311','46610','component','local-db'), ('39312','46610','local-db','{#DBNAME}'), ('39313','46611','availability-group','{#GROUP_NAME}'), ('39314','46611','component','local-db'), ('39315','46611','local-db','{#DBNAME}'), ('39316','46612','availability-group','{#GROUP_NAME}'), ('39317','46612','component','local-db'), ('39318','46612','local-db','{#DBNAME}'), ('39319','46613','component','mssql-mirroring'), ('39320','46613','mssql-mirroring','{#DBNAME}'), ('39321','46614','component','mssql-mirroring'), ('39322','46614','mssql-mirroring','{#DBNAME}'), ('39323','46615','component','mssql-mirroring'), ('39324','46615','mssql-mirroring','{#DBNAME}'), ('39325','46616','component','mssql-mirroring'), ('39326','46616','mssql-mirroring','{#DBNAME}'), ('39327','46617','component','mssql-mirroring'), ('39328','46617','mssql-mirroring','{#DBNAME}'), ('39329','46618','availability-group','{#GROUP_NAME}'), ('39330','46618','component','non-local-db'), ('39331','46618','non-local-db','{#DBNAME}'), ('39332','46619','availability-group','{#GROUP_NAME}'), ('39333','46619','component','non-local-db'), ('39334','46619','non-local-db','{#DBNAME}'), ('39335','46620','cluster-name','{#CLUSTER_NAME}'), ('39336','46620','component','quorum'), ('39337','46621','cluster-name','{#CLUSTER_NAME}'), ('39338','46621','component','quorum'), ('39339','46622','component','quorum members'), ('39340','46622','quorum-members-name','{#MEMBER_NAME}'), ('39341','46623','component','quorum members'), ('39342','46623','quorum-members-name','{#MEMBER_NAME}'), ('39343','46624','component','quorum members'), ('39344','46624','quorum-members-name','{#MEMBER_NAME}'), ('39345','46625','availability-group','{#GROUP_NAME}'), ('39346','46625','component','replica'), ('39347','46625','replica','{#REPLICA_NAME}'), ('39348','46626','availability-group','{#GROUP_NAME}'), ('39349','46626','component','replica'), ('39350','46626','replica','{#REPLICA_NAME}'), ('39351','46627','availability-group','{#GROUP_NAME}'), ('39352','46627','component','replica'), ('39353','46627','replica','{#REPLICA_NAME}'), ('39354','46628','availability-group','{#GROUP_NAME}'), ('39355','46628','component','replica'), ('39356','46628','replica','{#REPLICA_NAME}'), ('39357','46629','availability-group','{#GROUP_NAME}'), ('39358','46629','component','replica'), ('39359','46629','replica','{#REPLICA_NAME}'), ('39360','46630','availability-group','{#GROUP_NAME}'), ('39361','46630','component','replica'), ('39362','46630','replica','{#REPLICA_NAME}'), ('39363','46631','availability-group','{#GROUP_NAME}'), ('39364','46631','component','replica'), ('39365','46631','replica','{#REPLICA_NAME}'), ('39366','46632','component','database'), ('39367','46632','database','{#DBNAME}'), ('39368','46633','component','database'), ('39369','46633','database','{#DBNAME}'), ('39370','46634','component','database'), ('39371','46634','database','{#DBNAME}'), ('39372','46635','component','database'), ('39373','46635','database','{#DBNAME}'), ('39374','46636','component','database'), ('39375','46636','database','{#DBNAME}'), ('39376','46637','component','database'), ('39377','46637','database','{#DBNAME}'), ('39378','46638','component','database'), ('39379','46638','database','{#DBNAME}'), ('39380','46639','component','database'), ('39381','46639','database','{#DBNAME}'), ('39382','46640','component','database'), ('39383','46640','database','{#DBNAME}'), ('39384','46641','component','database'), ('39385','46641','database','{#DBNAME}'), ('39386','46642','component','database'), ('39387','46642','database','{#DBNAME}'), ('39388','46643','component','database'), ('39389','46643','database','{#DBNAME}'), ('39390','46644','component','database'), ('39391','46644','database','{#DBNAME}'), ('39392','46645','component','database'), ('39393','46645','database','{#DBNAME}'), ('39394','46646','component','database'), ('39395','46646','database','{#DBNAME}'), ('39396','46647','component','database'), ('39397','46647','database','{#DBNAME}'), ('39398','46648','component','database'), ('39399','46648','database','{#DBNAME}'), ('39400','46649','component','database'), ('39401','46649','database','{#DBNAME}'), ('39402','46650','component','database'), ('39403','46650','database','{#DBNAME}'), ('39404','46651','component','database'), ('39405','46651','database','{#DBNAME}'), ('39406','46652','component','database'), ('39407','46652','database','{#DBNAME}'), ('39408','46653','component','mssql-job'), ('39409','46653','mssql-job','{#JOBNAME}'), ('39410','46654','component','mssql-job'), ('39411','46654','mssql-job','{#JOBNAME}'), ('39412','46655','component','mssql-job'), ('39413','46655','mssql-job','{#JOBNAME}'), ('39414','46656','component','mssql-job'), ('39415','46656','mssql-job','{#JOBNAME}'), ('39416','46657','component','mssql-job'), ('39417','46657','mssql-job','{#JOBNAME}'), ('39418','46658','component','mssql-job'), ('39419','46658','mssql-job','{#JOBNAME}'), ('39420','46659','component','raw'), ('39421','46660','component','cluster'), ('39422','46660','component','connection'), ('39423','46661','component','cluster'), ('39424','46661','component','storage'), ('39425','46662','component','raw'), ('39426','46663','component','cluster'), ('39427','46663','component','memory'), ('39428','46664','component','raw'), ('39429','46665','component','raw'), ('39430','46666','component','raw'), ('39431','46667','component','raw'), ('39432','46668','component','error'), ('39433','46669','component','cluster'), ('39434','46669','component','connection'), ('39435','46670','component','cluster'), ('39436','46670','component','connection'), ('39437','46671','component','cluster'), ('39438','46671','component','connection'), ('39439','46672','component','cluster'), ('39440','46672','component','cpu'), ('39441','46673','component','cluster'), ('39442','46673','component','storage'), ('39443','46674','component','cluster'), ('39444','46674','component','storage'), ('39445','46675','component','cluster'), ('39446','46675','component','performance'), ('39447','46676','component','cluster'), ('39448','46676','component','storage'), ('39449','46677','component','cluster'), ('39450','46677','component','storage'), ('39451','46678','component','cluster'), ('39452','46678','component','performance'), ('39453','46679','component','error'), ('39454','46680','component','cluster'), ('39455','46681','component','cluster'), ('39456','46681','component','memory'), ('39457','46682','component','cluster'), ('39458','46682','component','memory'), ('39459','46683','component','error'), ('39460','46684','component','cluster'), ('39461','46684','component','network'), ('39462','46685','component','cluster'), ('39463','46685','component','network'), ('39464','46686','component','cluster'), ('39465','46686','component','network'), ('39466','46687','component','cluster'), ('39467','46687','component','network'), ('39468','46688','component','cluster'), ('39469','46689','component','cluster'), ('39470','46689','component','performance'), ('39471','46690','component','error'), ('39472','46691','component','cluster'), ('39473','46691','component','performance'), ('39474','46692','component','cluster'), ('39475','46693','component','cluster'), ('39476','46694','component','cluster'), ('39477','46695','component','cluster'), ('39478','46695','component','performance'), ('39479','46696','component','cluster'), ('39480','46697','component','cluster'), ('39481','46697','component','statistic'), ('39482','46698','component','cluster'), ('39483','46698','component','statistic'), ('39484','46699','component','cluster'), ('39485','46699','component','statistic'), ('39486','46700','component','cluster'), ('39487','46700','component','statistic'), ('39488','46701','component','cluster'), ('39489','46701','component','statistic'), ('39490','46702','component','cluster'), ('39491','46702','component','statistic'), ('39492','46703','component','cluster'), ('39493','46703','component','statistic'), ('39494','46704','component','cluster'), ('39495','46704','component','statistic'), ('39496','46705','component','cluster'), ('39497','46705','component','statistic'), ('39498','46706','component','cluster'), ('39499','46706','component','statistic'), ('39500','46707','component','cluster'), ('39501','46707','component','statistic'), ('39502','46708','component','cluster'), ('39503','46708','component','statistic'), ('39504','46709','component','cluster'), ('39505','46709','component','statistic'), ('39506','46710','component','cluster'), ('39507','46710','component','statistic'), ('39508','46711','component','cluster'), ('39509','46711','component','statistic'), ('39510','46712','component','cluster'), ('39511','46712','component','statistic'), ('39512','46713','component','cluster'), ('39513','46713','component','statistic'), ('39514','46714','component','cluster'), ('39515','46714','component','statistic'), ('39516','46715','component','cluster'), ('39517','46715','component','statistic'), ('39518','46716','component','cluster'), ('39519','46716','component','statistic'), ('39520','46717','component','cluster'), ('39521','46717','component','statistic'), ('39522','46718','component','cluster'), ('39523','46718','component','statistic'), ('39524','46719','component','cluster'), ('39525','46719','component','statistic'), ('39526','46720','component','cluster'), ('39527','46720','component','statistic'), ('39528','46721','component','error'), ('39529','46722','component','error'), ('39530','46726','component','node'), ('39531','46726','node','{#NODE.NAME}'), ('39532','46727','component','raw'), ('39533','46727','keyspace','{#KEYSPACE.NAME}'), ('39534','46728','component','node'), ('39535','46728','node','{#NODE.NAME}'), ('39536','46729','component','node'), ('39537','46729','node','{#NODE.NAME}'), ('39538','46730','component','raw'), ('39539','46730','node','{#NODE.NAME}'), ('39540','46731','component','node'), ('39541','46731','node','{#NODE.NAME}'), ('39542','46732','component','node'), ('39543','46732','node','{#NODE.NAME}'), ('39544','46733','component','keyspace'), ('39545','46733','keyspace','{#KEYSPACE.NAME}'), ('39546','46734','component','keyspace'), ('39547','46734','keyspace','{#KEYSPACE.NAME}'), ('39548','46735','component','keyspace'), ('39549','46735','keyspace','{#KEYSPACE.NAME}'), ('39550','46736','component','node'), ('39551','46736','node','{#NODE.NAME}'), ('39552','46737','component','node'), ('39553','46737','node','{#NODE.NAME}'), ('39554','46738','component','node'), ('39555','46738','node','{#NODE.NAME}'), ('39556','46739','component','node'), ('39557','46739','node','{#NODE.NAME}'), ('39558','46740','component','node'), ('39559','46740','node','{#NODE.NAME}'), ('39560','46741','component','node'), ('39561','46741','node','{#NODE.NAME}'), ('39562','46742','component','node'), ('39563','46742','node','{#NODE.NAME}'), ('39564','46743','component','node'), ('39565','46743','node','{#NODE.NAME}'), ('39566','46744','component','node'), ('39567','46744','node','{#NODE.NAME}'), ('39568','46745','component','node'), ('39569','46745','node','{#NODE.NAME}'), ('39570','46746','component','health'), ('39571','46746','component','network'), ('39572','46747','component','health'), ('39573','46747','component','network'), ('39574','46748','component','health'), ('39575','46748','component','network'), ('39576','46749','component','raw'), ('39577','46750','component','users'), ('39578','46751','component','raw'), ('39579','46752','component','raw'), ('39580','46753','component','raw'), ('39581','46754','component','raw'), ('39582','46755','component','network'), ('39583','46756','component','raw'), ('39584','46757','component','system'), ('39585','46758','component','cpu'), ('39586','46759','component','cpu'), ('39587','46760','component','cpu'), ('39588','46761','component','cpu'), ('39589','46762','component','cpu'), ('39590','46763','component','cpu'), ('39591','46764','component','cpu'), ('39592','46765','component','cpu'), ('39593','46766','component','cpu'), ('39594','46767','component','cpu'), ('39595','46768','component','raw'), ('39596','46769','component','system'), ('39597','46770','component','system'), ('39598','46771','component','system'), ('39599','46772','component','system'), ('39600','46773','component','system'), ('39601','46774','component','system'), ('39602','46775','component','system'), ('39603','46776','component','system'), ('39604','46777','component','raw'), ('39605','46778','component','memory'), ('39606','46779','component','memory'), ('39607','46780','component','memory'), ('39608','46781','component','memory'), ('39609','46782','component','memory'), ('39610','46783','component','vpn'), ('39611','46784','component','vpn'), ('39612','46785','component','raw'), ('39613','46786','component','health'), ('39614','46786','component','network'), ('39615','46797','component','firewall'), ('39616','46798','component','firewall'), ('39617','46799','component','firewall'), ('39618','46800','component','firewall'), ('39619','46801','component','firewall'), ('39620','46802','component','firewall'), ('39621','46803','component','firewall'), ('39622','46804','component','firewall'), ('39623','46805','component','firewall'), ('39624','46806','component','firewall'), ('39625','46807','component','firewall'), ('39626','46808','component','cpu'), ('39627','46809','component','cpu'), ('39628','46810','component','cpu'), ('39629','46811','component','cpu'), ('39630','46812','component','fan'), ('39631','46812','component','sensor'), ('39632','46813','component','fan'), ('39633','46813','component','sensor'), ('39634','46814','component','network'), ('39635','46814','description','{#IFALIAS}'), ('39636','46814','interface','{#IFNAME}'), ('39637','46815','component','network'), ('39638','46815','description','{#IFALIAS}'), ('39639','46815','interface','{#IFNAME}'), ('39640','46816','component','network'), ('39641','46816','description','{#IFALIAS}'), ('39642','46816','interface','{#IFNAME}'), ('39643','46817','component','network'), ('39644','46817','description','{#IFALIAS}'), ('39645','46817','interface','{#IFNAME}'), ('39646','46818','component','network'), ('39647','46818','description','{#IFALIAS}'), ('39648','46818','interface','{#IFNAME}'), ('39649','46819','component','network'), ('39650','46819','description','{#IFALIAS}'), ('39651','46819','interface','{#IFNAME}'), ('39652','46820','component','network'), ('39653','46820','description','{#IFALIAS}'), ('39654','46820','interface','{#IFNAME}'), ('39655','46821','component','network'), ('39656','46821','description','{#IFALIAS}'), ('39657','46821','interface','{#IFNAME}'), ('39658','46822','component','network'), ('39659','46822','description','{#IFALIAS}'), ('39660','46822','interface','{#IFNAME}'), ('39661','46823','component','power'), ('39662','46823','component','sensor'), ('39663','46824','component','license'), ('39664','46824','component','software'), ('39665','46824','component','svn'), ('39666','46824','software','{#SW.NAME}'), ('39667','46825','component','license'), ('39668','46825','component','software'), ('39669','46825','component','svn'), ('39670','46825','software','{#SW.NAME}'), ('39671','46826','component','license'), ('39672','46826','component','software'), ('39673','46826','component','svn'), ('39674','46826','software','{#SW.NAME}'), ('39675','46827','component','license'), ('39676','46827','component','software'), ('39677','46827','component','svn'), ('39678','46827','software','{#SW.NAME}'), ('39679','46828','component','software'), ('39680','46828','component','svn'), ('39681','46828','software','{#SW.NAME}'), ('39682','46829','component','temperature'), ('39683','46830','component','storage'), ('39684','46830','filesystem','{#DISK.NAME}'), ('39685','46831','component','storage'), ('39686','46831','filesystem','{#DISK.NAME}'), ('39687','46832','component','storage'), ('39688','46832','filesystem','{#DISK.NAME}'), ('39689','46833','component','storage'), ('39690','46833','filesystem','{#DISK.NAME}'), ('39691','46834','component','storage'), ('39692','46834','filesystem','{#DISK.NAME}'), ('39693','46835','component','sensor'), ('39694','46835','component','voltage'), ('39695','46836','component','vpn'), ('39696','46836','tunnel','{#VPN.NAME}'), ('39697','46837','component','vpn'), ('39698','46837','tunnel','{#VPN.NAME}'), ('39699','46838','component','vpn'), ('39700','46838','tunnel','{#VPN.NAME}'), ('39701','46839','component','vpn'), ('39702','46839','tunnel','{#VPN.NAME}'), ('39703','46840','component','vpn'), ('39704','46840','tunnel','{#VPN.NAME}'), ('39705','46841','component','vpn'), ('39706','46841','tunnel','{#VPN.NAME}'), ('39707','46842','component','vpn'), ('39708','46842','tunnel','{#VPN.NAME}'), ('39709','46843','component','vpn'), ('39710','46843','tunnel','{#VPN.NAME}'), ('39711','46844','component','vpn'), ('39712','46844','tunnel','{#VPN.NAME}'), ('39713','46845','component','raw'), ('39714','46846','component','raw'), ('39715','46847','component','raw'), ('39716','46848','component','environment'), ('39717','46849','component','raw'), ('39718','46850','component','storage'), ('39719','46851','component','raw'), ('39720','46852','component','storage'), ('39721','46853','component','environment'), ('39722','46854','component','raw'), ('39723','46855','component','environment'), ('39724','46856','component','raw'), ('39725','46857','component','network'), ('39726','46858','component','raw'), ('39727','46859','component','raw'), ('39728','46860','component','raw'), ('39729','46861','component','storage'), ('39730','46862','component','environment'), ('39731','46863','component','environment'), ('39732','46864','component','environment'), ('39733','46865','component','cpu'), ('39734','46866','component','cpu'), ('39735','46867','component','environment'), ('39736','46868','component','environment'), ('39737','46869','component','environment'), ('39738','46870','component','environment'), ('39739','46871','component','environment'), ('39740','46872','component','environment'), ('39741','46873','component','environment'), ('39742','46874','component','environment'), ('39743','46875','component','environment'), ('39744','46876','component','environment'), ('39745','46877','component','environment'), ('39746','46878','component','environment'), ('39747','46879','component','environment'), ('39748','46880','component','environment'), ('39749','46881','component','environment'), ('39750','46882','component','environment'), ('39751','46883','component','environment'), ('39752','46884','component','environment'), ('39753','46885','component','environment'), ('39754','46886','component','environment'), ('39755','46887','component','environment'), ('39756','46888','component','storage'), ('39757','46889','component','storage'), ('39758','46890','component','storage'), ('39759','46891','component','storage'), ('39760','46892','component','environment'), ('39761','46893','component','environment'), ('39762','46894','component','environment'), ('39763','46895','component','environment'), ('39764','46896','component','environment'), ('39765','46897','component','environment'), ('39766','46898','component','storage'), ('39767','46899','component','storage'), ('39768','46900','component','storage'), ('39769','46901','component','storage'), ('39770','46902','component','storage'), ('39771','46903','component','storage'), ('39772','46904','component','storage'), ('39773','46905','component','storage'), ('39774','46906','component','storage'), ('39775','46907','component','storage'), ('39776','46908','component','storage'), ('39777','46909','component','storage'), ('39778','46910','component','storage'), ('39779','46911','component','storage'), ('39780','46912','component','storage'), ('39781','46913','component','storage'), ('39782','46914','component','cpu'), ('39783','46915','component','storage'), ('39784','46916','component','storage'), ('39785','46917','component','storage'), ('39786','46918','component','storage'), ('39787','46919','component','environment'), ('39788','46920','component','memory'), ('39789','46921','component','memory'), ('39790','46922','component','network'), ('39791','46923','component','network'), ('39792','46924','component','storage'), ('39793','46925','component','storage'), ('39794','46926','component','storage'), ('39795','46927','component','storage'), ('39796','46928','component','storage'), ('39797','46929','component','storage'), ('39798','46930','component','storage'), ('39799','46931','component','storage'), ('39800','46932','component','storage'), ('39801','46941','component','raw'), ('39802','46942','component','network'), ('39803','46942','vnic','{#ID}'), ('39804','46943','component','network'), ('39805','46943','vnic','{#ID}'), ('39806','46944','component','network'), ('39807','46944','vnic','{#ID}'), ('39808','46945','component','network'), ('39809','46945','vnic','{#ID}'), ('39810','46946','component','network'), ('39811','46946','vnic','{#ID}'), ('39812','46947','component','network'), ('39813','46947','vnic','{#ID}'), ('39814','46948','component','network'), ('39815','46948','vnic','{#ID}'), ('39816','46949','component','network'), ('39817','46949','vnic','{#ID}'), ('39818','46950','component','network'), ('39819','46950','vnic','{#ID}'), ('39820','46951','component','network'), ('39821','46951','vnic','{#ID}'), ('39822','46952','component','network'), ('39823','46952','vnic','{#ID}'), ('39824','46953','component','network'), ('39825','46953','vnic','{#ID}'), ('39826','46954','component','network'), ('39827','46954','vnic','{#ID}'), ('39828','46955','component','network'), ('39829','46955','vnic','{#ID}'), ('39830','46956','component','network'), ('39831','46956','vnic','{#ID}'), ('39832','46957','component','network'), ('39833','46957','subnet','{#ID}'), ('39834','46958','component','raw'), ('39835','46959','component','raw'), ('39836','46960','component','raw'), ('39837','46961','component','raw'), ('39838','46962','component','raw'), ('39839','46963','component','raw'), ('39840','46964','component','raw'), ('39841','46965','component','ha'), ('39842','46966','component','ha'), ('39843','46967','component','ha'), ('39844','46968','component','ha'), ('39845','46969','component','ha'), ('39846','46970','component','raw'), ('39847','46971','component','ha'), ('39848','46972','component','ha'), ('39849','46973','component','raw'), ('39850','46974','component','ips'), ('39851','46975','component','ips'), ('39852','46976','component','ips'), ('39853','46977','component','ips'), ('39854','46978','component','ips'), ('39855','46979','component','ips'), ('39856','46980','component','ips'), ('39857','46981','component','ips'), ('39858','46982','component','ips'), ('39859','46983','component','ips'), ('39860','46984','component','network'), ('39861','46984','component','sessions'), ('39862','46985','component','raw'), ('39863','46986','component','raw'), ('39864','46987','component','raw'), ('39865','46988','component','ssl'), ('39866','46988','component','vpn'), ('39867','46989','component','vpn'), ('39868','46990','component','raw'), ('39869','46991','component','ssl'), ('39870','46991','component','vpn'), ('39871','46992','component','raw'), ('39872','47001','component','cpu'), ('39873','47001','processor','{#CPU.ID}'), ('39874','47002','component','cpu'), ('39875','47002','processor','{#CPU.ID}'), ('39876','47003','component','cpu'), ('39877','47003','processor','{#CPU.ID}'), ('39878','47004','component','ha'), ('39879','47004','member','{#HA.ID}'), ('39880','47005','component','ha'), ('39881','47005','member','{#HA.ID}'), ('39882','47006','component','ha'), ('39883','47006','member','{#HA.ID}'), ('39884','47007','component','ha'), ('39885','47007','member','{#HA.ID}'), ('39886','47008','component','ha'), ('39887','47008','member','{#HA.ID}'), ('39888','47009','component','ha'), ('39889','47009','member','{#HA.ID}'), ('39890','47010','component','ha'), ('39891','47010','member','{#HA.ID}'), ('39892','47011','component','ha'), ('39893','47011','member','{#HA.ID}'), ('39894','47012','component','ha'), ('39895','47012','member','{#HA.ID}'), ('39896','47013','component','ha'), ('39897','47013','member','{#HA.ID}'), ('39898','47014','component','ha'), ('39899','47014','member','{#HA.ID}'), ('39900','47015','component','ha'), ('39901','47015','member','{#HA.ID}'), ('39902','47016','component','ha'), ('39903','47016','member','{#HA.ID}'), ('39904','47017','component','sensor'), ('39905','47017','sensor','{#SENSOR.NAME}'), ('39906','47018','component','sensor'), ('39907','47018','sensor','{#SENSOR.NAME}'), ('39908','47019','component','sd-wan'), ('39909','47019','health-check','{#HNAME}'), ('39910','47019','interface','{#IFNAME}'), ('39911','47020','component','sd-wan'), ('39912','47020','health-check','{#HNAME}'), ('39913','47020','interface','{#IFNAME}'), ('39914','47021','component','sd-wan'), ('39915','47021','health-check','{#HNAME}'), ('39916','47021','interface','{#IFNAME}'), ('39917','47022','component','sd-wan'), ('39918','47022','health-check','{#HNAME}'), ('39919','47022','interface','{#IFNAME}'), ('39920','47023','component','sd-wan'), ('39921','47023','health-check','{#HNAME}'), ('39922','47023','interface','{#IFNAME}'), ('39923','47024','component','sd-wan'), ('39924','47024','health-check','{#HNAME}'), ('39925','47024','interface','{#IFNAME}'), ('39926','47025','component','soc3'), ('39927','47025','processor','np6lite #{#CPU.ID}'), ('39928','47026','component','soc3'), ('39929','47026','processor','np6lite #{#CPU.ID}'), ('39930','47027','component','soc3'), ('39931','47027','processor','np6lite #{#CPU.ID}'), ('39932','47028','component','cpu'), ('39933','47028','component','vdom'), ('39934','47028','vdom','{#VDOM.NAME}'), ('39935','47029','component','vdom'), ('39936','47029','vdom','{#VDOM.NAME}'), ('39937','47030','component','memory'), ('39938','47030','component','vdom'), ('39939','47030','vdom','{#VDOM.NAME}'), ('39940','47031','component','vdom'), ('39941','47031','vdom','{#VDOM.NAME}'), ('39942','47032','component','vdom'), ('39943','47032','vdom','{#VDOM.NAME}'), ('39944','47033','component','vdom'), ('39945','47033','vdom','{#VDOM.NAME}'), ('39946','47034','component','vpn'), ('39947','47034','tunnel','{#VPN.NAME}'), ('39948','47035','access-point','{#WC.NAME}'), ('39949','47035','component','wireless'), ('39950','47036','access-point','{#WC.NAME}'), ('39951','47036','component','wireless'), ('39952','47037','access-point','{#WC.NAME}'), ('39953','47037','component','wireless'), ('39954','47038','access-point','{#WC.NAME}'), ('39955','47038','component','wireless'), ('39956','47039','access-point','{#WC.NAME}'), ('39957','47039','component','wireless'), ('39958','47040','access-point','{#WC.NAME}'), ('39959','47040','component','wireless'), ('39960','47041','access-point','{#WC.NAME}'), ('39961','47041','component','cpu'), ('39962','47041','component','wireless'), ('39963','47042','access-point','{#WC.NAME}'), ('39964','47042','component','wireless'), ('39965','47043','access-point','{#WC.NAME}'), ('39966','47043','component','wireless'), ('39967','47044','access-point','{#WC.NAME}'), ('39968','47044','component','wireless'), ('39969','47045','access-point','{#WC.NAME}'), ('39970','47045','component','wireless'), ('39971','47046','access-point','{#WC.NAME}'), ('39972','47046','component','wireless'), ('39973','47047','access-point','{#WC.NAME}'), ('39974','47047','component','wireless'), ('39975','47048','access-point','{#WC.NAME}'), ('39976','47048','component','wireless'), ('39977','47049','access-point','{#WC.NAME}'), ('39978','47049','component','memory'), ('39979','47049','component','wireless'), ('39980','47050','access-point','{#WC.NAME}'), ('39981','47050','component','memory'), ('39982','47050','component','wireless'), ('39983','47051','access-point','{#WC.NAME}'), ('39984','47051','component','wireless'), ('39985','47052','access-point','{#WC.NAME}'), ('39986','47052','component','wireless'), ('39987','47053','access-point','{#WC.NAME}'), ('39988','47053','component','wireless'), ('39989','47054','access-point','{#WC.NAME}'), ('39990','47054','component','wireless'), ('39991','47055','access-point','{#WC.NAME}'), ('39992','47055','component','wireless'), ('39993','47056','access-point','{#WC.NAME}'), ('39994','47056','component','wireless'), ('39995','47057','access-point','{#WC.NAME}'), ('39996','47057','component','wireless'), ('39997','47058','access-point','{#WC.NAME}'), ('39998','47058','component','wireless'), ('39999','47059','access-point','{#WC.NAME}'), ('40000','47059','component','wireless'), ('40001','47060','access-point','{#WC.NAME}'), ('40002','47060','component','wireless'), ('40003','47061','access-point','{#WC.NAME}'), ('40004','47061','component','wireless'), ('40005','47062','access-point','{#WC.NAME}'), ('40006','47062','component','wireless'), ('40007','47063','access-point','{#WC.NAME}'), ('40008','47063','component','wireless'), ('40009','47064','access-point','{#WC.NAME}'), ('40010','47064','component','wireless'), ('40011','47065','access-point','{#WC.NAME}'), ('40012','47065','component','wireless'), ('40013','47066','access-point','{#WC.NAME}'), ('40014','47066','component','wireless'), ('40015','47068','component','health'), ('40016','47068','component','sensor'), ('40017','47068','type','{#TYPE}'), ('40018','42746','lxc','{#LXC.ID}'), ('40019','42746','name','{#LXC.NAME}'), ('40020','42746','node','{#NODE.NAME}'), ('40021','42747','node','{#NODE.NAME}'), ('40022','42748','node','{#NODE.NAME}'), ('40023','42749','node','{#NODE.NAME}'), ('40024','42750','name','{#QEMU.NAME}'), ('40025','42750','node','{#NODE.NAME}'), ('40026','42750','qemu','{#QEMU.ID}'), ('40027','42759','lxc','{#LXC.ID}'), ('40028','42759','name','{#LXC.NAME}'), ('40029','42759','node','{#NODE.NAME}'), ('40030','42760','lxc','{#LXC.ID}'), ('40031','42760','name','{#LXC.NAME}'), ('40032','42760','node','{#NODE.NAME}'), ('40033','42763','node','{#NODE.NAME}'), ('40034','42768','node','{#NODE.NAME}'), ('40035','42777','node','{#NODE.NAME}'), ('40036','42786','name','{#QEMU.NAME}'), ('40037','42786','node','{#NODE.NAME}'), ('40038','42786','qemu','{#QEMU.ID}'), ('40039','42787','name','{#QEMU.NAME}'), ('40040','42787','node','{#NODE.NAME}'), ('40041','42787','qemu','{#QEMU.ID}'), ('40042','47069','component','raw'), ('40043','47070','component','raw'), ('40044','47071','component','raw'), ('40045','47072','component','connections'), ('40046','47073','component','connections'), ('40047','47073','component','tcp'), ('40048','47074','component','connections'), ('40049','47074','component','tls'), ('40050','47075','component','connections'), ('40051','47075','component','udp'), ('40052','47076','component','status'), ('40053','47077','component','capacity'), ('40054','47078','component','capacity'), ('40055','47078','component','tcp'), ('40056','47079','component','capacity'), ('40057','47079','component','tls'), ('40058','47080','component','capacity'), ('40059','47080','component','udp'), ('40060','47081','component','health'), ('40061','47081','component','tls'), ('40062','47082','component','status'), ('40063','47083','component','connections'), ('40064','47084','component','connections'), ('40065','47084','component','tcp'), ('40066','47085','component','connections'), ('40067','47085','component','tls'), ('40068','47086','component','connections'), ('40069','47086','component','udp'), ('40070','47087','component','health'), ('40071','47087','component','traffic'), ('40072','47088','component','connections'), ('40073','47088','component','health'), ('40074','47089','component','traffic'), ('40075','47090','component','tcp'), ('40076','47090','component','traffic'), ('40077','47091','component','tls'), ('40078','47091','component','traffic'), ('40079','47092','component','traffic'), ('40080','47092','component','udp'), ('40081','47093','component','traffic'), ('40082','47094','component','icmp'), ('40083','47094','component','security-group'), ('40084','47095','component','security-group'), ('40085','47095','component','tcp'), ('40086','47096','component','security-group'), ('40087','47096','component','udp'), ('40088','47097','component','icmp'), ('40089','47097','component','security-group'), ('40090','47098','component','security-group'), ('40091','47098','component','tcp'), ('40092','47099','component','security-group'), ('40093','47099','component','udp'), ('40094','47100','component','health'), ('40095','47100','component','tls'), ('40096','47101','component','health'), ('40097','47101','component','tcp'), ('40098','47102','component','health'), ('40099','47102','component','tcp'), ('40100','47103','component','health'), ('40101','47103','component','tcp'), ('40102','47104','component','health'), ('40103','47107','component','raw'), ('40104','47107','component','target-groups'), ('40105','47107','protocol','{#AWS.ELB.TARGET.GROUP.PROTOCOL}'), ('40106','47107','target-group','{#AWS.ELB.TARGET.GROUP.NAME}'), ('40107','47107','type','{#AWS.ELB.TARGET.GROUP.TYPE}'), ('40108','47108','component','raw'), ('40109','47109','component','health'), ('40110','47109','component','target-groups'), ('40111','47109','protocol','{#AWS.ELB.TARGET.GROUP.PROTOCOL}'), ('40112','47109','target-group','{#AWS.ELB.TARGET.GROUP.NAME}'), ('40113','47109','type','{#AWS.ELB.TARGET.GROUP.TYPE}'), ('40114','47110','component','health'), ('40115','47110','component','target-groups'), ('40116','47110','protocol','{#AWS.ELB.TARGET.GROUP.PROTOCOL}'), ('40117','47110','target-group','{#AWS.ELB.TARGET.GROUP.NAME}'), ('40118','47110','type','{#AWS.ELB.TARGET.GROUP.TYPE}'), ('40119','47111','component','alarms'), ('40120','47112','component','alarms'), ('40121','44428','component','storage'), ('40122','44428','fstype','{#FSTYPE}'), ('40123','22948','component','storage'), ('40124','22948','fstype','{#FSTYPE}'), ('40125','22949','component','storage'), ('40126','22949','fstype','{#FSTYPE}'), ('40127','22950','component','storage'), ('40128','22950','fstype','{#FSTYPE}'), ('40129','22951','component','storage'), ('40130','22951','fstype','{#FSTYPE}'), ('40131','22952','component','storage'), ('40132','22952','deprecated',''), ('40133','22952','fstype','{#FSTYPE}'), ('40134','44429','component','storage'), ('40135','44429','fstype','{#FSTYPE}'), ('40136','47113','component','storage'), ('40137','47113','filesystem','{#FSNAME}'), ('40138','47113','fstype','{#FSTYPE}'), ('40139','44431','component','storage'), ('40140','44431','fstype','{#FSTYPE}'), ('40141','22908','component','storage'), ('40142','22908','fstype','{#FSTYPE}'), ('40143','22909','component','storage'), ('40144','22909','fstype','{#FSTYPE}'), ('40145','22910','component','storage'), ('40146','22910','fstype','{#FSTYPE}'), ('40147','22911','component','storage'), ('40148','22911','fstype','{#FSTYPE}'), ('40149','22912','component','storage'), ('40150','22912','deprecated',''), ('40151','22912','fstype','{#FSTYPE}'), ('40152','44432','component','storage'), ('40153','44432','fstype','{#FSTYPE}'), ('40154','47114','component','storage'), ('40155','47114','filesystem','{#FSNAME}'), ('40156','47114','fstype','{#FSTYPE}'), ('40157','44434','component','storage'), ('40158','44434','fstype','{#FSTYPE}'), ('40159','22988','component','storage'), ('40160','22988','fstype','{#FSTYPE}'), ('40161','22989','component','storage'), ('40162','22989','fstype','{#FSTYPE}'), ('40163','22990','component','storage'), ('40164','22990','fstype','{#FSTYPE}'), ('40165','22991','component','storage'), ('40166','22991','fstype','{#FSTYPE}'), ('40167','22992','component','storage'), ('40168','22992','deprecated',''), ('40169','22992','fstype','{#FSTYPE}'), ('40170','44435','component','storage'), ('40171','44435','fstype','{#FSTYPE}'), ('40172','47115','component','storage'), ('40173','47115','filesystem','{#FSNAME}'), ('40174','47115','fstype','{#FSTYPE}'), ('40175','44438','fstype','{#FSTYPE}'), ('40176','44439','fstype','{#FSTYPE}'), ('40177','42288','fstype','{#FSTYPE}'), ('40178','42289','fstype','{#FSTYPE}'), ('40179','42290','fstype','{#FSTYPE}'), ('40180','42291','fstype','{#FSTYPE}'), ('40181','44440','fstype','{#FSTYPE}'), ('40182','42303','fstype','{#FSTYPE}'), ('40183','42304','fstype','{#FSTYPE}'), ('40184','42305','fstype','{#FSTYPE}'), ('40185','42306','fstype','{#FSTYPE}'), ('40186','44441','fstype','{#FSTYPE}'), ('40187','47116','component','storage'), ('40188','47116','filesystem','{#FSNAME}'), ('40189','47116','fstype','{#FSTYPE}'), ('40190','47117','component','storage'), ('40191','47117','filesystem','{#FSNAME}'), ('40192','47117','fstype','{#FSTYPE}'), ('40193','44443','fstype','{#FSTYPE}'), ('40194','42374','fstype','{#FSTYPE}'), ('40195','42375','fstype','{#FSTYPE}'), ('40196','42376','fstype','{#FSTYPE}'), ('40197','42377','fstype','{#FSTYPE}'), ('40198','44444','fstype','{#FSTYPE}'), ('40199','47118','component','storage'), ('40200','47118','filesystem','{#FSNAME}'), ('40201','47118','fstype','{#FSTYPE}'), ('40202','29432','fstype','{#FSTYPE}'), ('40203','29433','fstype','{#FSTYPE}'), ('40204','29445','fstype','{#FSTYPE}'), ('40205','29446','fstype','{#FSTYPE}'), ('40206','29447','fstype','{#FSTYPE}'), ('40207','47119','component','storage'), ('40208','47119','filesystem','{#FSNAME}'), ('40209','47119','fstype','{#FSTYPE}'), ('40210','45481','component','storage'), ('40211','47120','component','raw'), ('40212','47120','component','storage'), ('40213','47120','filesystem','{#FSNAME}'), ('40214','47121','component','storage'), ('40215','47121','filesystem','{#FSNAME}'), ('40216','44446','component','storage'), ('40217','44446','fstype','{#FSTYPE}'), ('40218','23068','component','storage'), ('40219','23068','fstype','{#FSTYPE}'), ('40220','23069','component','storage'), ('40221','23069','fstype','{#FSTYPE}'), ('40222','23070','component','storage'), ('40223','23070','fstype','{#FSTYPE}'), ('40224','23071','component','storage'), ('40225','23071','fstype','{#FSTYPE}'), ('40226','23072','component','storage'), ('40227','23072','deprecated',''), ('40228','23072','fstype','{#FSTYPE}'), ('40229','47122','component','storage'), ('40230','47122','filesystem','{#FSNAME}'), ('40231','47122','fstype','{#FSTYPE}'), ('40232','44448','component','storage'), ('40233','44448','fstype','{#FSTYPE}'), ('40234','22868','component','storage'), ('40235','22868','fstype','{#FSTYPE}'), ('40236','22869','component','storage'), ('40237','22869','fstype','{#FSTYPE}'), ('40238','22870','component','storage'), ('40239','22870','fstype','{#FSTYPE}'), ('40240','22871','component','storage'), ('40241','22871','fstype','{#FSTYPE}'), ('40242','22872','component','storage'), ('40243','22872','deprecated',''), ('40244','22872','fstype','{#FSTYPE}'), ('40245','44449','component','storage'), ('40246','44449','fstype','{#FSTYPE}'), ('40247','47123','component','storage'), ('40248','47123','filesystem','{#FSNAME}'), ('40249','47123','fstype','{#FSTYPE}'), ('40250','44451','component','storage'), ('40251','44451','fstype','{#FSTYPE}'), ('40252','23028','component','storage'), ('40253','23028','fstype','{#FSTYPE}'), ('40254','23029','component','storage'), ('40255','23029','fstype','{#FSTYPE}'), ('40256','23030','component','storage'), ('40257','23030','fstype','{#FSTYPE}'), ('40258','23031','component','storage'), ('40259','23031','fstype','{#FSTYPE}'), ('40260','23032','component','storage'), ('40261','23032','deprecated',''), ('40262','23032','fstype','{#FSTYPE}'), ('40263','44452','component','storage'), ('40264','44452','fstype','{#FSTYPE}'), ('40265','47124','component','storage'), ('40266','47124','filesystem','{#FSNAME}'), ('40267','47124','fstype','{#FSTYPE}'), ('40268','44454','fstype','{#FSTYPE}'), ('40269','42506','fstype','{#FSTYPE}'), ('40270','42507','fstype','{#FSTYPE}'), ('40271','42508','fstype','{#FSTYPE}'), ('40272','47125','component','storage'), ('40273','47125','filesystem','{#FSNAME}'), ('40274','47125','fstype','{#FSTYPE}'), ('40275','44456','fstype','{#FSTYPE}'), ('40276','42562','fstype','{#FSTYPE}'), ('40277','42563','fstype','{#FSTYPE}'), ('40278','42564','fstype','{#FSTYPE}'), ('40279','47126','component','storage'), ('40280','47126','filesystem','{#FSNAME}'), ('40281','47126','fstype','{#FSTYPE}'), ('40282','47127','component','raw'), ('40283','47127','component','storage'), ('40284','47127','filesystem','{#FSNAME}'), ('40285','47128','component','memory'), ('40286','47128','component','raw'), ('40287','47129','component','health'), ('40288','47129','component','volume'), ('40289','47129','volume','{#NAME}'), ('40290','47130','component','health'), ('40291','47130','component','volume'), ('40292','47130','volume','{#NAME}'), ('40293','47131','component','raw'), ('40294','47132','component','status'), ('40295','47133','component','application'), ('40296','47133','performance','navigation'), ('40297','47134','component','application'), ('40298','47134','performance','navigation'), ('40299','47135','component','application'), ('40300','47135','performance','navigation'), ('40301','47136','component','application'), ('40302','47136','performance','navigation'), ('40303','47137','component','application'), ('40304','47137','performance','navigation'), ('40305','47138','component','application'), ('40306','47138','performance','navigation'), ('40307','47139','component','application'), ('40308','47139','performance','navigation'), ('40309','47140','component','application'), ('40310','47140','performance','navigation'), ('40311','47141','component','application'), ('40312','47141','performance','navigation'), ('40313','47142','component','application'), ('40314','47142','performance','navigation'), ('40315','47143','component','application'), ('40316','47143','performance','navigation'), ('40317','47144','component','application'), ('40318','47144','performance','navigation'), ('40319','47145','component','application'), ('40320','47145','performance','resource'), ('40321','47146','component','application'), ('40322','47146','performance','resource'), ('40323','47147','component','application'), ('40324','47147','performance','resource'), ('40325','47148','component','application'), ('40326','47148','performance','resource'), ('40327','47149','component','application'), ('40328','47149','performance','resource'), ('40329','47150','component','application'), ('40330','47150','performance','resource'), ('40331','47151','component','application'), ('40332','47151','performance','resource'), ('40333','47152','component','application'), ('40334','47152','performance','resource'), ('40335','47153','component','application'), ('40336','47153','performance','resource'), ('40337','47154','component','application'), ('40338','47154','performance','resource'), ('40339','47155','component','application'), ('40340','47155','performance','resource'), ('40341','47156','component','application'), ('40342','47156','performance','resource'), ('40343','47157','component','application'), ('40344','47158','component','license'), ('40345','47158','component','raw'), ('40346','47159','component','database'), ('40347','47160','component','database'), ('40348','47161','component','database'), ('40349','47162','component','database'), ('40350','47163','component','application'), ('40351','47163','component','entity'), ('40352','47164','component','application'), ('40353','47165','component','application'), ('40354','47166','component','application'), ('40355','47167','component','application'), ('40356','47167','component','entity'), ('40357','47167','component','issue'), ('40358','47168','component','application'), ('40359','47169','component','application'), ('40360','47169','component','issue'), ('40361','47170','component','application'), ('40362','47170','component','issue'), ('40363','47171','component','application'), ('40364','47171','component','issue'), ('40365','47172','component','database'), ('40366','47173','component','database'), ('40367','47174','component','database'), ('40368','47175','component','database'), ('40369','47176','component','database'), ('40370','47177','component','http'), ('40371','47178','component','http'), ('40372','47179','component','http'), ('40373','47180','component','http'), ('40374','47181','component','mail'), ('40375','47182','component','mail'), ('40376','47183','component','mail'), ('40377','47184','component','mail'), ('40378','47185','component','mail'), ('40379','47186','component','application'), ('40380','47192','component','storage'), ('40381','47193','component','indexing'), ('40382','47194','component','issue'), ('40383','47195','component','mail'), ('40384','47195','mail','{#JMXCATEGORY01}-{#JMXNAME}'), ('40385','47196','component','mail'), ('40386','47196','mail','{#JMXCATEGORY01}-{#JMXNAME}'), ('40387','47197','component','application'), ('40388','47197','component','license'), ('40389','47197','license','{#LICENSE.TYPE}'), ('40390','47198','component','application'), ('40391','47198','component','license'), ('40392','47198','license','{#LICENSE.TYPE}'), ('40393','45864','component','environment'), ('40394','45867','component','environment'), ('40395','45872','component','system'), ('40396','45873','component','system'), ('40397','45879','component','system'), ('40398','10067','component','nvps'), ('40399','10068','component','nvps'), ('40400','10069','component','nvps'), ('40401','10070','component','nvps'), ('40402','10071','component','nvps'), ('40403','10072','component','nvps'), ('40404','23340','component','nvps'), ('40405','23344','component','gathering-process'), ('40406','23345','component','gathering-process'), ('40407','23346','component','gathering-process'), ('40408','23348','component','gathering-process'), ('40409','23349','component','gathering-process'), ('40410','23354','component','gathering-process'), ('40411','23355','component','gathering-process'), ('40412','23356','component','gathering-process'), ('40413','28250','component','gathering-process'), ('40414','39826','component','gathering-process'), ('40415','45511','component','gathering-process'), ('40416','45512','component','gathering-process'), ('40417','46045','component','gathering-process'), ('40418','47199','component','gathering-process'), ('40419','47200','component','gathering-process'), ('40420','28588','component','gathering-process'), ('40421','28589','component','nvps'), ('40422','28590','component','nvps'), ('40423','28591','component','nvps'), ('40424','28592','component','nvps'), ('40425','28593','component','nvps'), ('40426','28594','component','nvps'), ('40427','28595','component','nvps'), ('40428','28602','component','gathering-process'), ('40429','28604','component','gathering-process'), ('40430','28606','component','gathering-process'), ('40431','28607','component','gathering-process'), ('40432','28608','component','gathering-process'), ('40433','28610','component','gathering-process'), ('40434','28611','component','gathering-process'), ('40435','28616','component','gathering-process'), ('40436','39825','component','gathering-process'), ('40437','45513','component','gathering-process'), ('40438','45514','component','gathering-process'), ('40439','46046','component','gathering-process'), ('40440','47201','component','gathering-process'), ('40441','47202','component','gathering-process'), ('40442','10061','component','nvps'), ('40443','10062','component','nvps'), ('40444','10063','component','nvps'), ('40445','10064','component','nvps'), ('40446','10065','component','nvps'), ('40447','10066','component','nvps'), ('40448','22187','component','nvps'), ('40449','22399','component','gathering-process'), ('40450','22400','component','gathering-process'), ('40451','22401','component','gathering-process'), ('40452','22402','component','gathering-process'), ('40453','22404','component','gathering-process'), ('40454','22416','component','gathering-process'), ('40455','22418','component','gathering-process'), ('40456','22420','component','gathering-process'), ('40457','22689','component','gathering-process'), ('40458','23171','component','gathering-process'), ('40459','33023','component','internal-process'), ('40460','39822','component','gathering-process'), ('40461','45515','component','gathering-process'), ('40462','45516','component','gathering-process'), ('40463','46047','component','gathering-process'), ('40464','46314','component','nvps'), ('40465','10073','component','nvps'), ('40466','10074','component','nvps'), ('40467','10075','component','nvps'), ('40468','10076','component','nvps'), ('40469','10077','component','nvps'), ('40470','10078','component','nvps'), ('40471','23259','component','gathering-process'), ('40472','23260','component','gathering-process'), ('40473','23261','component','gathering-process'), ('40474','23262','component','gathering-process'), ('40475','23264','component','gathering-process'), ('40476','23265','component','gathering-process'), ('40477','23267','component','gathering-process'), ('40478','23269','component','gathering-process'), ('40479','23270','component','gathering-process'), ('40480','23277','component','nvps'), ('40481','23328','component','gathering-process'), ('40482','33027','component','internal-process'), ('40483','39823','component','gathering-process'), ('40484','45517','component','gathering-process'), ('40485','45518','component','gathering-process'), ('40486','46048','component','gathering-process'), ('40487','46315','component','nvps'), ('40488','47203','component','gathering-process'), ('40489','47204','component','internal-process'), ('40490','47205','component','gathering-process'), ('40491','47206','component','internal-process'), ('40492','47207','component','gathering-process'), ('40493','47208','component','internal-process'), ('40494','47209','component','gathering-process'), ('40495','47210','component','internal-process'), ('40496','28550','component','nvps'), ('40497','28552','component','gathering-process'), ('40498','28553','component','nvps'), ('40499','28554','component','nvps'), ('40500','28555','component','nvps'), ('40501','28556','component','nvps'), ('40502','28557','component','nvps'), ('40503','28558','component','nvps'), ('40504','28559','component','gathering-process'), ('40505','28569','component','gathering-process'), ('40506','28570','component','gathering-process'), ('40507','28571','component','gathering-process'), ('40508','28573','component','gathering-process'), ('40509','28574','component','gathering-process'), ('40510','28577','component','gathering-process'), ('40511','28579','component','gathering-process'), ('40512','28581','component','gathering-process'), ('40513','33017','component','internal-process'), ('40514','39824','component','gathering-process'), ('40515','45519','component','gathering-process'), ('40516','45520','component','gathering-process'), ('40517','46049','component','gathering-process'), ('40518','46316','component','nvps'), ('40519','47211','component','gathering-process'), ('40520','47212','component','internal-process'), ('40521','47213','component','gathering-process'), ('40522','47214','component','internal-process'), ('40523','47215','component','raw'), ('40524','43763','component','error'), ('40525','47216','component','health'), ('40526','47217','component','storage'), ('40527','47218','component','storage'), ('40528','47219','component','storage'), ('40529','47220','component','storage'), ('40530','47221','component','storage'), ('40531','47222','component','storage'), ('40532','47223','component','storage'), ('40533','47224','component','storage'), ('40534','47225','component','health'), ('40535','47226','component','health'), ('40536','47227','component','health'), ('40537','47228','component','cpu'), ('40538','47229','component','cpu'), ('40539','47230','component','cpu'), ('40540','47231','component','storage'), ('40541','47232','component','storage'), ('40542','47233','component','storage'), ('40543','47234','component','storage'), ('40544','47235','component','storage'), ('40545','47236','component','storage'), ('40546','47237','component','storage'), ('40547','47238','component','storage'), ('40548','47239','component','storage'), ('40549','47240','component','storage'), ('40550','47241','component','storage'), ('40551','47242','component','storage'), ('40552','47243','component','storage'), ('40553','47244','component','error'), ('40554','47245','component','storage'), ('40555','47246','component','storage'), ('40556','47247','component','storage'), ('40557','47248','component','storage'), ('40558','47249','component','network'), ('40559','47250','component','network'), ('40560','47251','component','network'), ('40561','47252','component','network'), ('40562','47253','component','network'), ('40563','47254','component','network'), ('40564','47255','component','storage'), ('40565','47256','component','storage'), ('40566','47257','component','storage'), ('40567','47258','component','storage'), ('40568','47259','component','storage'), ('40569','47260','component','storage'), ('40570','47261','component','storage'), ('40571','47262','component','storage'), ('40572','47263','component','storage'), ('40573','47264','component','storage'), ('40574','47265','component','storage'), ('40575','47266','component','storage'), ('40576','47267','component','storage'), ('40577','47268','component','storage'), ('40578','47269','component','storage'), ('40579','47270','component','storage'), ('40580','47271','component','storage'), ('40581','47272','component','storage'), ('40582','47273','component','storage'), ('40583','47274','component','health'), ('40584','47275','component','memory'), ('40585','47276','component','storage'), ('40586','47277','component','storage'), ('40587','47279','component','raw'), ('40588','47280','component','application'), ('40589','47281','component','containers'), ('40590','47282','component','raw'), ('40591','47283','component','raw'), ('40592','47284','component','status'), ('40593','47285','component','asynchronous'), ('40594','47286','component','asynchronous'), ('40595','47287','component','asynchronous'), ('40596','47288','component','concurrency'), ('40597','47289','component','invocation'), ('40598','47290','component','performance'), ('40599','47291','component','invocation'), ('40600','47292','component','invocation'), ('40601','47293','component','status'), ('40602','47294','component','invocation'), ('40603','47295','component','concurrency'), ('40604','47297','component','raw'), ('40605','47298','component','alarms'), ('40606','47299','component','alarms'), ('40607','47301','component','raw'), ('40608','47302','component','raw'), ('40609','47303','component','releases'), ('40610','47304','component','raw'), ('40611','47305','component','raw'), ('40612','47306','component','tags'), ('40613','47307','component','raw'), ('40614','47308','component','issues'), ('40615','47309','component','issues'), ('40616','47310','component','issues'), ('40617','47311','component','pull-requests'), ('40618','47312','component','pull-requests'), ('40619','47313','component','pull-requests'), ('40620','47314','component','repository'), ('40621','47315','component','status'), ('40622','47316','component','repository'), ('40623','47317','component','repository'), ('40624','47318','component','repository'), ('40625','47319','component','repository'), ('40626','47320','component','request-limits'), ('40627','47321','component','request-limits'), ('40628','47322','component','request-limits'), ('40629','47323','component','status'), ('40630','47328','branch','{#BRANCH_NAME}'), ('40631','47328','component','branch'), ('40632','47328','component','commit'), ('40633','47329','component','raw'), ('40634','47329','component','workflow'), ('40635','47329','workflow','{#WORKFLOW_NAME}'), ('40636','47330','component','health'), ('40637','47331','component','runner'), ('40638','47331','os','{#RUNNER_OS}'), ('40639','47331','runner','{#RUNNER_NAME}'), ('40640','47332','component','runner'), ('40641','47332','os','{#RUNNER_OS}'), ('40642','47332','runner','{#RUNNER_NAME}'), ('40643','47333','component','health'), ('40644','47333','component','workflow'), ('40645','47333','workflow','{#WORKFLOW_NAME}'), ('40646','47334','component','workflow'), ('40647','47334','workflow','{#WORKFLOW_NAME}'), ('40648','47335','component','workflow'), ('40649','47335','workflow','{#WORKFLOW_NAME}'), ('40650','47336','component','health'), ('40651','47336','component','workflow'), ('40652','47336','workflow','{#WORKFLOW_NAME}'), ('40653','47337','component','workflow'), ('40654','47337','workflow','{#WORKFLOW_NAME}'), ('40655','47338','component','apps'), ('40656','47338','component','raw'), ('40657','47339','component','onedrive'), ('40658','47339','component','raw'), ('40659','47340','component','outlook'), ('40660','47340','component','raw'), ('40661','47341','component','raw'), ('40662','47341','component','service'), ('40663','47342','component','raw'), ('40664','47342','component','sharepoint'), ('40665','47343','component','raw'), ('40666','47343','component','teams'), ('40667','47344','component','apps'), ('40668','47345','component','apps'), ('40669','47346','component','apps'), ('40670','47347','component','apps'), ('40671','47348','component','apps'), ('40672','47349','component','apps'), ('40673','47350','component','apps'), ('40674','47350','component','date'), ('40675','47351','component','apps'), ('40676','47352','component','apps'), ('40677','47353','component','apps'), ('40678','47354','component','apps'), ('40679','47355','component','apps'), ('40680','47356','component','apps'), ('40681','47357','component','apps'), ('40682','47358','component','apps'), ('40683','47359','component','apps'), ('40684','47359','component','error'), ('40685','47360','component','apps'), ('40686','47361','component','apps'), ('40687','47362','component','apps'), ('40688','47363','component','apps'), ('40689','47364','component','apps'), ('40690','47364','component','date'), ('40691','47365','component','apps'), ('40692','47366','component','apps'), ('40693','47367','component','apps'), ('40694','47368','component','apps'), ('40695','47369','component','apps'), ('40696','47369','component','date'), ('40697','47370','component','apps'), ('40698','47371','component','apps'), ('40699','47372','component','apps'), ('40700','47373','component','apps'), ('40701','47374','component','apps'), ('40702','47375','component','apps'), ('40703','47375','component','date'), ('40704','47376','component','apps'), ('40705','47377','component','apps'), ('40706','47378','component','apps'), ('40707','47379','component','apps'), ('40708','47380','component','error'), ('40709','47380','component','onedrive'), ('40710','47381','component','date'), ('40711','47381','component','onedrive'), ('40712','47382','component','onedrive'), ('40713','47383','component','onedrive'), ('40714','47384','component','onedrive'), ('40715','47385','component','onedrive'), ('40716','47386','component','onedrive'), ('40717','47387','component','date'), ('40718','47387','component','onedrive'), ('40719','47388','component','onedrive'), ('40720','47389','component','onedrive'), ('40721','47390','component','date'), ('40722','47390','component','onedrive'), ('40723','47391','component','onedrive'), ('40724','47392','component','date'), ('40725','47392','component','onedrive'), ('40726','47393','component','onedrive'), ('40727','47394','component','date'), ('40728','47394','component','onedrive'), ('40729','47395','component','onedrive'), ('40730','47396','component','onedrive'), ('40731','47397','component','onedrive'), ('40732','47398','component','onedrive'), ('40733','47399','component','outlook'), ('40734','47400','component','outlook'), ('40735','47401','component','outlook'), ('40736','47402','component','outlook'), ('40737','47403','component','date'), ('40738','47403','component','outlook'), ('40739','47404','component','outlook'), ('40740','47405','component','error'), ('40741','47405','component','outlook'), ('40742','47406','component','outlook'), ('40743','47407','component','outlook'), ('40744','47408','component','date'), ('40745','47408','component','outlook'), ('40746','47409','component','outlook'), ('40747','47410','component','date'), ('40748','47410','component','outlook'), ('40749','47411','component','outlook'), ('40750','47412','component','outlook'), ('40751','47413','component','outlook'), ('40752','47414','component','outlook'), ('40753','47415','component','outlook'), ('40754','47416','component','outlook'), ('40755','47417','component','outlook'), ('40756','47418','component','outlook'), ('40757','47419','component','outlook'), ('40758','47420','component','outlook'), ('40759','47421','component','date'), ('40760','47421','component','outlook'), ('40761','47422','component','date'), ('40762','47422','component','outlook'), ('40763','47423','component','outlook'), ('40764','47424','component','outlook'), ('40765','47425','component','outlook'), ('40766','47426','component','outlook'), ('40767','47427','component','error'), ('40768','47427','component','service'), ('40769','47428','component','error'), ('40770','47428','component','sharepoint'), ('40771','47429','component','date'), ('40772','47429','component','sharepoint'), ('40773','47430','component','sharepoint'), ('40774','47431','component','sharepoint'), ('40775','47432','component','sharepoint'), ('40776','47433','component','sharepoint'), ('40777','47434','component','sharepoint'), ('40778','47435','component','date'), ('40779','47435','component','sharepoint'), ('40780','47436','component','sharepoint'), ('40781','47437','component','sharepoint'), ('40782','47438','component','date'), ('40783','47438','component','sharepoint'), ('40784','47439','component','sharepoint'), ('40785','47440','component','date'), ('40786','47440','component','sharepoint'), ('40787','47441','component','date'), ('40788','47441','component','sharepoint'), ('40789','47442','component','sharepoint'), ('40790','47443','component','sharepoint'), ('40791','47444','component','date'), ('40792','47444','component','sharepoint'), ('40793','47445','component','sharepoint'), ('40794','47446','component','date'), ('40795','47446','component','sharepoint'), ('40796','47447','component','sharepoint'), ('40797','47448','component','sharepoint'), ('40798','47449','component','sharepoint'), ('40799','47450','component','sharepoint'), ('40800','47451','component','sharepoint'), ('40801','47452','component','teams'), ('40802','47453','component','teams'), ('40803','47454','component','teams'), ('40804','47455','component','teams'), ('40805','47456','component','teams'), ('40806','47457','component','teams'), ('40807','47458','component','teams'), ('40808','47459','component','teams'), ('40809','47460','component','teams'), ('40810','47461','component','teams'), ('40811','47462','component','teams'), ('40812','47463','component','date'), ('40813','47463','component','teams'), ('40814','47464','component','teams'), ('40815','47465','component','teams'), ('40816','47466','component','teams'), ('40817','47467','component','teams'), ('40818','47468','component','teams'), ('40819','47469','component','teams'), ('40820','47470','component','teams'), ('40821','47471','component','teams'), ('40822','47472','component','teams'), ('40823','47473','component','teams'), ('40824','47474','component','teams'), ('40825','47475','component','teams'), ('40826','47476','component','date'), ('40827','47476','component','teams'), ('40828','47477','component','device'), ('40829','47477','component','teams'), ('40830','47478','component','device'), ('40831','47478','component','teams'), ('40832','47479','component','device'), ('40833','47479','component','teams'), ('40834','47480','component','device'), ('40835','47480','component','teams'), ('40836','47481','component','device'), ('40837','47481','component','teams'), ('40838','47482','component','device'), ('40839','47482','component','teams'), ('40840','47483','component','device'), ('40841','47483','component','teams'), ('40842','47484','component','device'), ('40843','47484','component','teams'), ('40844','47485','component','device'), ('40845','47485','component','teams'), ('40846','47486','component','device'), ('40847','47486','component','teams'), ('40848','47487','component','device'), ('40849','47487','component','teams'), ('40850','47488','component','device'), ('40851','47488','component','teams'), ('40852','47489','component','date'), ('40853','47489','component','teams'), ('40854','47490','component','device'), ('40855','47490','component','teams'), ('40856','47491','component','device'), ('40857','47491','component','teams'), ('40858','47492','component','device'), ('40859','47492','component','teams'), ('40860','47493','component','device'), ('40861','47493','component','teams'), ('40862','47494','component','device'), ('40863','47494','component','teams'), ('40864','47495','component','device'), ('40865','47495','component','teams'), ('40866','47496','component','device'), ('40867','47496','component','teams'), ('40868','47497','component','device'), ('40869','47497','component','teams'), ('40870','47498','component','device'), ('40871','47498','component','teams'), ('40872','47499','component','error'), ('40873','47499','component','teams'), ('40874','47500','component','teams'), ('40875','47501','component','teams'), ('40876','47502','component','teams'), ('40877','47503','component','teams'), ('40878','47504','component','teams'), ('40879','47505','component','teams'), ('40880','47506','component','teams'), ('40881','47507','component','teams'), ('40882','47508','component','date'), ('40883','47508','component','teams'), ('40884','47509','component','teams'), ('40885','47510','component','teams'), ('40886','47511','component','teams'), ('40887','47512','component','teams'), ('40888','47514','component','health'), ('40889','47514','component','service'), ('40890','47514','service','{#NAME}'), ('40891','47515','component','raw'), ('40892','47516','component','raw'), ('40893','47517','component','storage'), ('40894','47518','component','raw'), ('40895','47519','component','health'), ('40896','47519','component','system'), ('40897','47520','component','system'), ('40898','47521','component','system'), ('40899','47522','component','availability'), ('40900','47523','component','network'), ('40901','47524','component','network'), ('40902','47525','component','network'), ('40903','47526','component','network'), ('40904','47527','component','network'), ('40905','47528','component','network'), ('40906','47529','component','status'), ('40907','47530','component','health'), ('40908','47531','component','storage'), ('40909','47532','component','storage'), ('40910','31664','type','{#DATASTORE.TYPE}'), ('40911','31665','type','{#DATASTORE.TYPE}'), ('40912','31666','type','{#DATASTORE.TYPE}'), ('40913','31667','type','{#DATASTORE.TYPE}'), ('40914','32947','type','{#DATASTORE.TYPE}'), ('40915','32948','type','{#DATASTORE.TYPE}'), ('40916','32949','type','{#DATASTORE.TYPE}'), ('40917','32950','type','{#DATASTORE.TYPE}'), ('40918','33655','type','{#DATASTORE.TYPE}'), ('40919','47536','component','datastore'), ('40920','47536','datastore','{#DATASTORE}'), ('40921','47536','type','{#DATASTORE.TYPE}'), ('40922','47537','component','datastore'), ('40923','47537','datastore','{#DATASTORE}'), ('40924','47537','type','{#DATASTORE.TYPE}'), ('40925','47538','component','datastore'), ('40926','47538','datastore','{#DATASTORE}'), ('40927','47538','type','{#DATASTORE.TYPE}'), ('40928','47539','component','datastore'), ('40929','47539','datastore','{#DATASTORE}'), ('40930','47539','type','{#DATASTORE.TYPE}'), ('40931','47540','component','network'), ('40932','47540','interface','{#IFNAME}'), ('40933','47541','component','system'), ('40934','47542','component','alarms'), ('40935','47543','component','raw'), ('40936','47544','component','raw'), ('40937','47545','component','status'), ('40938','47546','component','health'), ('40939','32959','type','{#DATASTORE.TYPE}'), ('40940','32960','type','{#DATASTORE.TYPE}'), ('40941','32961','type','{#DATASTORE.TYPE}'), ('40942','32962','type','{#DATASTORE.TYPE}'), ('40943','47548','component','datastore'), ('40944','47548','datastore','{#DATASTORE}'), ('40945','47548','type','{#DATASTORE.TYPE}'), ('40946','47549','component','datastore'), ('40947','47549','datastore','{#DATASTORE}'), ('40948','47549','type','{#DATASTORE.TYPE}'), ('40949','47550','component','alarms'), ('40950','47551','component','raw'), ('40951','47552','component','raw'), ('40952','47555','component','proxy-group'), ('40953','47555','component','raw'), ('40954','47555','proxy-group-name','{#PROXY.GROUP.NAME}'), ('40955','47556','component','proxy-group'), ('40956','47556','component','raw'), ('40957','47556','proxy-group-name','{#PROXY.GROUP.NAME}'), ('40958','47557','component','proxy-group'), ('40959','47557','component','raw'), ('40960','47557','proxy-group-name','{#PROXY.GROUP.NAME}'), ('40961','47558','component','proxy-group'), ('40962','47558','component','raw'), ('40963','47558','proxy-group-name','{#PROXY.GROUP.NAME}'), ('40964','47559','component','proxy-group'), ('40965','47559','proxy-group-name','{#PROXY.GROUP.NAME}'), ('40966','47560','component','proxy-group'), ('40967','47560','proxy-group-name','{#PROXY.GROUP.NAME}'), ('40968','47561','component','proxy-group'), ('40969','47561','proxy-group-name','{#PROXY.GROUP.NAME}'), ('40970','47562','component','proxy-group'), ('40971','47562','proxy-group-name','{#PROXY.GROUP.NAME}'), ('40972','47563','component','proxy-group'), ('40973','47563','proxy-group-name','{#PROXY.GROUP.NAME}'), ('40974','47564','component','proxy-group'), ('40975','47564','proxy-group-name','{#PROXY.GROUP.NAME}'), ('40976','47565','component','proxy-group'), ('40977','47565','proxy-group-name','{#PROXY.GROUP.NAME}'), ('40978','47566','component','proxy-group'), ('40979','47566','proxy-group-name','{#PROXY.GROUP.NAME}'), ('40980','47567','component','proxy-group'), ('40981','47567','proxy-group-name','{#PROXY.GROUP.NAME}'), ('40982','47568','component','proxy-group'), ('40983','47568','proxy-group-name','{#PROXY.GROUP.NAME}'), ('40984','47569','component','raw'), ('40985','47570','component','storage'), ('40986','47571','component','storage'), ('40987','47572','component','raw'), ('40988','47573','component','raw'), ('40989','47574','component','raw'), ('40990','47575','component','raw'), ('40991','47576','component','raw'), ('40992','47577','component','raw'), ('40993','47578','component','raw'), ('40994','47579','component','health'), ('40995','47579','component','system'), ('40996','47580','component','system'), ('40997','47581','component','health'), ('40998','47581','component','network'), ('40999','47582','component','health'), ('41000','47582','component','network'), ('41001','47583','component','health'), ('41002','47583','component','network'), ('41003','47584','component','network'), ('41004','47585','component','system'), ('41005','47586','component','system'), ('41006','47587','component','system'), ('41007','47588','component','system'), ('41008','47589','component','system'), ('41009','47590','component','system'), ('41010','47591','component','system'), ('41011','47592','component','health'), ('41012','47592','component','network'), ('41013','47601','bbu','{#ID}'), ('41014','47601','component','health'), ('41015','47601','component','power'), ('41016','47601','location','{#LOCATION}'), ('41017','47602','bbu','{#ID}'), ('41018','47602','component','health'), ('41019','47602','component','power'), ('41020','47602','location','{#LOCATION}'), ('41021','47603','component','cpu'), ('41022','47603','controller','{#ID}'), ('41023','47604','component','health'), ('41024','47604','controller','{#ID}'), ('41025','47605','component','memory'), ('41026','47605','controller','{#ID}'), ('41027','47606','component','system'), ('41028','47606','controller','{#ID}'), ('41029','47607','component','health'), ('41030','47607','controller','{#ID}'), ('41031','47608','component','health'), ('41032','47608','disk','{#MODEL}'), ('41033','47608','location','{#LOCATION}'), ('41034','47609','component','health'), ('41035','47609','disk','{#MODEL}'), ('41036','47609','location','{#LOCATION}'), ('41037','47610','component','environment'), ('41038','47610','disk','{#MODEL}'), ('41039','47610','location','{#LOCATION}'), ('41040','47611','component','health'), ('41041','47611','enclosure','{#NAME}'), ('41042','47612','component','health'), ('41043','47612','enclosure','{#NAME}'), ('41044','47613','component','environment'), ('41045','47613','enclosure','{#NAME}'), ('41046','47614','component','health'), ('41047','47614','fan','{#ID}'), ('41048','47614','location','{#LOCATION}'), ('41049','47615','component','health'), ('41050','47615','fan','{#ID}'), ('41051','47615','location','{#LOCATION}'), ('41052','47616','component','network'), ('41053','47616','lun','{#NAME}'), ('41054','47617','component','network'), ('41055','47617','lun','{#NAME}'), ('41056','47618','component','network'), ('41057','47618','lun','{#NAME}'), ('41058','47619','component','network'), ('41059','47619','lun','{#NAME}'), ('41060','47620','component','operations'), ('41061','47620','lun','{#NAME}'), ('41062','47621','component','operations'), ('41063','47621','lun','{#NAME}'), ('41064','47622','component','operations'), ('41065','47622','lun','{#NAME}'), ('41066','47623','component','operations'), ('41067','47623','lun','{#NAME}'), ('41068','47624','component','operations'), ('41069','47624','lun','{#NAME}'), ('41070','47625','component','operations'), ('41071','47625','lun','{#NAME}'), ('41072','47626','component','health'), ('41073','47626','lun','{#NAME}'), ('41074','47627','component','network'), ('41075','47627','node','{#NODE}'), ('41076','47628','component','network'), ('41077','47628','node','{#NODE}'), ('41078','47629','component','network'), ('41079','47629','node','{#NODE}'), ('41080','47630','component','cpu'), ('41081','47630','node','{#NODE}'), ('41082','47631','component','operations'), ('41083','47631','node','{#NODE}'), ('41084','47632','component','operations'), ('41085','47632','node','{#NODE}'), ('41086','47633','component','operations'), ('41087','47633','node','{#NODE}'), ('41088','47634','component','storage'), ('41089','47634','pool','{#NAME}'), ('41090','47635','component','storage'), ('41091','47635','pool','{#NAME}'), ('41092','47636','component','health'), ('41093','47636','pool','{#NAME}'), ('41094','47637','component','health'), ('41095','47637','pool','{#NAME}'), ('41096','47638','component','application'), ('41097','47638','component','health'), ('41098','47639','component','application'), ('41099','47639','component','health'), ('41100','47640','component','raw'), ('41101','47641','component','raw'), ('41102','47642','component','network'), ('41103','47643','component','network'), ('41104','47644','component','network'), ('41105','47645','component','network'), ('41106','47646','component','system'), ('41107','47647','component','system'), ('41108','47648','component','system'), ('41109','47649','component','system'), ('41110','47650','component','system'), ('41111','47651','component','system'), ('41112','47652','component','system'), ('41113','47653','component','system'), ('41114','47654','component','system'), ('41115','47655','component','system'), ('41116','47656','component','system'), ('41117','47657','component','system'), ('41118','47658','component','system'), ('41119','47659','component','system'), ('41120','47660','component','system'), ('41121','47663','component','cpu'), ('41122','47664','component','connection'), ('41123','47665','component','connection'), ('41124','47666','component','connection'), ('41125','47667','component','connection'), ('41126','47668','component','connection'), ('41127','47669','component','system'), ('41128','47670','component','raw'), ('41129','47671','component','system'), ('41130','47672','component','memory'), ('41131','47673','component','memory'), ('41132','47674','component','memory'), ('41133','47675','component','raw'), ('41134','47676','component','cert'), ('41135','47677','component','cert'), ('41136','47678','component','cert'), ('41137','47679','component','cert'), ('41138','47680','component','cert'), ('41139','47681','component','cert'), ('41140','47682','component','cert'), ('41141','47683','component','cert'), ('41142','47684','component','cert'), ('41143','47685','component','cert'), ('41144','47686','component','cert'), ('41145','47687','component','cert'), ('41146','47688','component','application'), ('41147','47688','component','health'), ('41148','47689','component','application'), ('41149','47689','component','health'), ('41150','47690','component','raw'), ('41151','47691','component','application'), ('41152','47691','component','health'), ('41153','47692','component','connections'), ('41154','47693','component','connections'), ('41155','47694','component','connections'), ('41156','47695','component','connections'), ('41157','47696','component','connections'), ('41158','47697','component','connections'), ('41159','47698','component','connections'), ('41160','47699','component','requests'), ('41161','47700','component','requests'), ('41162','47701','component','application'), ('41163','47703','component','cpu'), ('41164','47704','component','raw'), ('41165','47705','component','system'), ('41166','47706','component','memory'), ('41167','47707','component','memory'), ('41168','47708','component','memory'), ('41169','47709','component','raw'), ('41170','47710','component','raw'), ('41171','47711','component','raw'), ('41172','47712','component','raw'), ('41173','47713','component','raw'), ('41174','47714','component','raw'), ('41175','47715','component','raw'), ('41176','47716','component','raw'), ('41177','47717','component','status'), ('41178','47718','component','application'), ('41179','47719','component','application'), ('41180','47720','component','application'), ('41181','47721','component','application'), ('41182','47721','component','memory'), ('41183','47722','component','application'), ('41184','47722','component','memory'), ('41185','47723','component','application'), ('41186','47724','component','application'), ('41187','47724','component','memory'), ('41188','47725','component','application'), ('41189','47725','component','memory'), ('41190','47726','component','application'), ('41191','47726','component','memory'), ('41192','47727','component','application'), ('41193','47727','component','memory'), ('41194','47728','component','application'), ('41195','47729','component','application'), ('41196','47730','component','application'), ('41197','47731','component','application'), ('41198','47732','component','application'), ('41199','47733','component','application'), ('41200','47734','component','application'), ('41201','47735','component','application'), ('41202','47736','component','application'), ('41203','47737','component','application'), ('41204','47738','component','application'), ('41205','47739','component','application'), ('41206','47740','component','application'), ('41207','47741','component','application'), ('41208','47742','component','application'), ('41209','47743','component','application'), ('41210','47744','component','application'), ('41211','47745','component','application'), ('41212','47746','component','application'), ('41213','47747','component','application'), ('41214','47748','component','application'), ('41215','47749','component','application'), ('41216','47750','component','application'), ('41217','47751','component','application'), ('41218','47752','component','application'), ('41219','47753','component','application'), ('41220','47754','component','storage'), ('41221','47755','component','storage'), ('41222','47756','component','storage'), ('41223','47757','component','storage'), ('41224','47758','component','application'), ('41225','47759','component','application'), ('41226','47760','component','application'), ('41227','47761','component','application'), ('41228','47762','component','application'), ('41229','47763','component','cpu'), ('41230','47764','component','application'), ('41231','47765','component','application'), ('41232','47766','component','application'), ('41233','47767','component','application'), ('41234','47768','component','application'), ('41235','47769','component','application'), ('41236','47770','component','application'), ('41237','47771','component','application'), ('41238','47772','component','application'), ('41239','47773','component','application'), ('41240','47774','component','application'), ('41241','47775','component','application'), ('41242','47776','component','application'), ('41243','47777','component','application'), ('41244','47778','component','application'), ('41245','47779','component','application'), ('41246','47780','component','memory'), ('41247','47781','component','application'), ('41248','47782','component','status'), ('41249','47783','component','application'), ('41250','47784','component','application'), ('41251','47785','component','storage'), ('41252','47786','component','storage'), ('41253','47787','component','storage'), ('41254','47788','component','storage'), ('41255','47789','component','storage'), ('41256','47790','component','storage'), ('41257','47791','component','storage'), ('41258','47792','component','storage'), ('41259','47793','component','storage'), ('41260','47794','component','storage'), ('41261','47795','component','storage'), ('41262','47796','component','storage'), ('41263','47797','component','storage'), ('41264','47798','component','storage'), ('41265','47799','component','storage'), ('41266','47800','component','storage'), ('41267','47801','component','storage'), ('41268','47802','component','storage'), ('41269','47803','component','storage'), ('41270','47804','component','storage'), ('41271','47805','component','storage'), ('41272','47806','component','storage'), ('41273','47807','component','storage'), ('41274','47808','component','storage'), ('41275','47809','component','storage'), ('41276','47810','component','storage'), ('41277','47811','component','storage'), ('41278','47812','component','storage'), ('41279','47813','component','status'), ('41280','47814','component','application'), ('41281','47815','component','application'), ('41282','47816','component','application'), ('41283','47816','component','memory'), ('41284','47817','component','application'), ('41285','47817','component','memory'), ('41286','47818','component','application'), ('41287','47819','component','application'), ('41288','47819','component','memory'), ('41289','47820','component','application'), ('41290','47820','component','memory'), ('41291','47821','component','application'), ('41292','47821','component','memory'), ('41293','47822','component','application'), ('41294','47822','component','memory'), ('41295','47823','component','application'), ('41296','47824','component','application'), ('41297','47825','component','application'), ('41298','47826','component','application'), ('41299','47827','component','status'), ('41300','47828','component','application'), ('41301','47829','component','cpu'), ('41302','47830','component','cpu'), ('41303','47831','component','cpu'), ('41304','47832','component','health'), ('41305','47833','component','application'), ('41306','47834','component','application'), ('41307','47835','component','application'), ('41308','47836','component','application'), ('41309','47837','component','application'), ('41310','47838','component','application'), ('41311','47839','component','application'), ('41312','47840','component','application'), ('41313','47841','component','application'), ('41314','47842','component','application'), ('41315','47843','component','application'), ('41316','47844','component','application'), ('41317','47845','component','application'), ('41318','47846','component','application'), ('41319','47847','component','application'), ('41320','47848','component','application'), ('41321','47849','component','application'), ('41322','47850','component','application'), ('41323','47851','component','application'), ('41324','47852','component','application'), ('41325','47853','component','application'), ('41326','47854','component','application'), ('41327','47855','component','application'), ('41328','47856','component','memory'), ('41329','47857','component','application'), ('41330','47858','component','application'), ('41331','47859','component','storage'), ('41332','47860','component','storage'), ('41333','47861','component','storage'), ('41334','47862','component','storage'), ('41335','47863','component','application'), ('41336','47864','component','application'), ('41337','47865','component','application'), ('41338','47866','component','application'), ('41339','47867','component','application'), ('41340','47868','component','cpu'), ('41341','47869','component','cpu'), ('41342','47870','component','cpu'), ('41343','47871','component','cpu'), ('41344','47872','component','application'), ('41345','47873','component','application'), ('41346','47874','component','application'), ('41347','47875','component','application'), ('41348','47876','component','application'), ('41349','47877','component','application'), ('41350','47878','component','application'), ('41351','47879','component','application'), ('41352','47880','component','application'), ('41353','47881','component','application'), ('41354','47882','component','application'), ('41355','47883','component','application'), ('41356','47884','component','application'), ('41357','47885','component','application'), ('41358','47886','component','application'), ('41359','47887','component','application'), ('41360','47888','component','memory'), ('41361','47889','component','application'), ('41362','47890','component','network'), ('41363','47891','component','application'), ('41364','47892','component','network'), ('41365','47893','component','status'), ('41366','47894','component','storage'), ('41367','47895','component','storage'), ('41368','47896','component','storage'), ('41369','47897','component','storage'), ('41370','47898','component','storage'), ('41371','47899','component','storage'), ('41372','47900','component','storage'), ('41373','47901','component','storage'), ('41374','47902','component','storage'), ('41375','47903','component','storage'), ('41376','47904','component','storage'), ('41377','47905','component','storage'), ('41378','47906','component','storage'), ('41379','47907','component','storage'), ('41380','47908','component','storage'), ('41381','47909','component','storage'), ('41382','47910','component','storage'), ('41383','47911','component','storage'), ('41384','47912','component','storage'), ('41385','47913','component','storage'), ('41386','47914','component','storage'), ('41387','47915','component','storage'), ('41388','47916','component','storage'), ('41389','47917','component','storage'), ('41390','47918','component','storage'), ('41391','47919','component','storage'), ('41392','47920','component','storage'), ('41393','47921','component','storage'), ('41394','47922','component','status'), ('41395','47923','component','status'), ('41396','47924','component','status'), ('41397','47931','component','alert'), ('41398','47932','component','alert'), ('41399','47933','component','alert'), ('41400','47934','component','alert'), ('41401','47935','component','alert'), ('41402','47936','component','alert'), ('41403','47937','component','alert'), ('41404','47938','component','alert'), ('41405','47939','component','alert'), ('41406','47940','component','alert'), ('41407','47941','component','alert'), ('41408','47942','component','alert'), ('41409','47943','component','alert'), ('41410','47944','component','alert'), ('41411','47945','component','disk'), ('41412','47945','location','{#DISK.LOCATION}'), ('41413','47945','path','{#DISK.MOUNT.PATH}'), ('41414','47945','serial','{#DISK.SERIAL}'), ('41415','47946','component','disk'), ('41416','47946','location','{#DISK.LOCATION}'), ('41417','47946','path','{#DISK.MOUNT.PATH}'), ('41418','47946','serial','{#DISK.SERIAL}'), ('41419','47947','component','disk'), ('41420','47947','location','{#DISK.LOCATION}'), ('41421','47947','path','{#DISK.MOUNT.PATH}'), ('41422','47947','serial','{#DISK.SERIAL}'), ('41423','47948','component','disk'), ('41424','47948','location','{#DISK.LOCATION}'), ('41425','47948','path','{#DISK.MOUNT.PATH}'), ('41426','47948','serial','{#DISK.SERIAL}'), ('41427','47949','component','disk'), ('41428','47949','location','{#DISK.LOCATION}'), ('41429','47949','path','{#DISK.MOUNT.PATH}'), ('41430','47949','serial','{#DISK.SERIAL}'), ('41431','47950','component','disk'), ('41432','47950','location','{#DISK.LOCATION}'), ('41433','47950','path','{#DISK.MOUNT.PATH}'), ('41434','47950','serial','{#DISK.SERIAL}'), ('41435','47951','component','disk'), ('41436','47951','location','{#DISK.LOCATION}'), ('41437','47951','path','{#DISK.MOUNT.PATH}'), ('41438','47951','serial','{#DISK.SERIAL}'), ('41439','47952','component','disk'), ('41440','47952','location','{#DISK.LOCATION}'), ('41441','47952','path','{#DISK.MOUNT.PATH}'), ('41442','47952','serial','{#DISK.SERIAL}'), ('41443','47953','component','disk'), ('41444','47953','location','{#DISK.LOCATION}'), ('41445','47953','path','{#DISK.MOUNT.PATH}'), ('41446','47953','serial','{#DISK.SERIAL}'), ('41447','47954','component','storage'), ('41448','47954','container','{#STORAGE.CONTAINER.NAME}'), ('41449','47955','component','storage'), ('41450','47955','container','{#STORAGE.CONTAINER.NAME}'), ('41451','47956','component','storage'), ('41452','47956','container','{#STORAGE.CONTAINER.NAME}'), ('41453','47957','component','storage'), ('41454','47957','container','{#STORAGE.CONTAINER.NAME}'), ('41455','47958','component','application'), ('41456','47959','component','raw'), ('41457','47960','component','health'), ('41458','47961','component','raw'), ('41459','47962','component','connections'), ('41460','47963','component','listen-queue'), ('41461','47964','component','listen-queue'), ('41462','47965','component','listen-queue'), ('41463','47966','component','application'), ('41464','47967','component','application'), ('41465','47968','component','health'), ('41466','47969','component','system'), ('41467','47970','component','system'), ('41468','47971','component','application'), ('41469','47972','component','system'), ('41470','47973','component','application'), ('41471','47974','component','application'), ('41472','47975','component','application'), ('41473','47976','component','application'), ('41474','47977','component','application'), ('41475','47979','component','cpu'), ('41476','47980','component','raw'), ('41477','47981','component','system'), ('41478','47982','component','memory'), ('41479','47983','component','memory'), ('41480','47984','component','memory'), ('41481','47985','component','storage'), ('41482','47985','lxc','{#LXC.ID}'), ('41483','47985','name','{#LXC.NAME}'), ('41484','47985','node','{#NODE.NAME}'), ('41485','47986','component','storage'), ('41486','47986','lxc','{#LXC.ID}'), ('41487','47986','name','{#LXC.NAME}'), ('41488','47986','node','{#NODE.NAME}'), ('41489','47987','component','memory'), ('41490','47988','component','memory'), ('41491','47989','component','raw'), ('41492','47990','component','system'), ('41493','47991','component','application'), ('41494','47991','component','health'), ('41495','47992','component','application'), ('41496','47993','component','connections'), ('41497','47994','component','connections'), ('41498','47995','component','cache'), ('41499','47996','component','network'), ('41500','47997','component','network'), ('41501','47998','component','operations'), ('41502','47999','component','operations'), ('41503','48000','component','operations'), ('41504','48001','component','operations'), ('41505','48002','component','connections'), ('41506','48003','component','connections'), ('41507','48004','component','connections'), ('41508','48005','component','connections'), ('41509','48006','component','connections'), ('41510','48007','component','connections'), ('41511','48008','component','connections'), ('41512','48009','component','storage'), ('41513','48009','component','tables'), ('41514','48010','component','storage'), ('41515','48011','component','memory'), ('41516','48011','component','tables'), ('41517','48012','component','innodb'), ('41518','48012','component','memory'), ('41519','48013','component','innodb'), ('41520','48013','component','memory'), ('41521','48014','component','innodb'), ('41522','48014','component','memory'), ('41523','48015','component','innodb'), ('41524','48015','component','memory'), ('41525','48016','component','innodb'), ('41526','48016','component','memory'), ('41527','48017','component','innodb'), ('41528','48017','component','memory'), ('41529','48018','component','innodb'), ('41530','48018','component','memory'), ('41531','48019','component','innodb'), ('41532','48019','component','system'), ('41533','48020','component','system'), ('41534','48021','component','innodb'), ('41535','48021','component','tables'), ('41536','48022','component','innodb'), ('41537','48022','component','tables'), ('41538','48023','component','innodb'), ('41539','48023','component','tables'), ('41540','48024','component','connections'), ('41541','48025','component','tables'), ('41542','48026','component','tables'), ('41543','48027','component','queries'), ('41544','48028','component','queries'), ('41545','48029','component','queries'), ('41546','48030','component','threads'), ('41547','48031','component','threads'), ('41548','48032','component','threads'), ('41549','48033','component','threads'), ('41550','48034','component','application'), ('41551','48038','component','storage'), ('41552','48038','database','{#DATABASE}'), ('41553','48039','component','raw'), ('41554','48040','component','transactions'), ('41555','48041','component','transactions'), ('41556','48042','component','transactions'), ('41557','48043','component','transactions'), ('41558','48044','component','transactions'), ('41559','48045','component','replication'), ('41560','48046','component','replication'), ('41561','48047','component','replication'), ('41562','48048','component','replication'), ('41563','48049','component','memory'), ('41564','48050','component','memory'), ('41565','48051','component','raw'), ('41566','48052','component','system'), ('41567','48053','component','application'), ('41568','48053','component','health'), ('41569','48054','component','application'), ('41570','48055','component','connections'), ('41571','48056','component','connections'), ('41572','48057','component','cache'), ('41573','48058','component','network'), ('41574','48059','component','network'), ('41575','48060','component','operations'), ('41576','48061','component','operations'), ('41577','48062','component','operations'), ('41578','48063','component','operations'), ('41579','48064','component','connections'), ('41580','48065','component','connections'), ('41581','48066','component','connections'), ('41582','48067','component','connections'), ('41583','48068','component','connections'), ('41584','48069','component','connections'), ('41585','48070','component','connections'), ('41586','48071','component','storage'), ('41587','48071','component','tables'), ('41588','48072','component','storage'), ('41589','48073','component','memory'), ('41590','48073','component','tables'), ('41591','48074','component','innodb'), ('41592','48074','component','memory'), ('41593','48075','component','innodb'), ('41594','48075','component','memory'), ('41595','48076','component','innodb'), ('41596','48076','component','memory'), ('41597','48077','component','innodb'), ('41598','48077','component','memory'), ('41599','48078','component','innodb'), ('41600','48078','component','memory'), ('41601','48079','component','innodb'), ('41602','48079','component','memory'), ('41603','48080','component','innodb'), ('41604','48080','component','memory'), ('41605','48081','component','innodb'), ('41606','48081','component','system'), ('41607','48082','component','system'), ('41608','48083','component','innodb'), ('41609','48083','component','tables'), ('41610','48084','component','innodb'), ('41611','48084','component','tables'), ('41612','48085','component','innodb'), ('41613','48085','component','tables'), ('41614','48086','component','connections'), ('41615','48087','component','tables'), ('41616','48088','component','tables'), ('41617','48089','component','queries'), ('41618','48090','component','queries'), ('41619','48091','component','queries'), ('41620','48092','component','threads'), ('41621','48093','component','threads'), ('41622','48094','component','threads'), ('41623','48095','component','threads'), ('41624','48096','component','application'), ('41625','48100','component','storage'), ('41626','48100','database','{#DBNAME}'), ('41627','48101','component','raw'), ('41628','48102','component','transactions'), ('41629','48103','component','transactions'), ('41630','48104','component','transactions'), ('41631','48105','component','transactions'), ('41632','48106','component','transactions'), ('41633','48107','component','replication'), ('41634','48108','component','replication'), ('41635','48109','component','replication'), ('41636','48110','component','replication'), ('41637','48111','component','raw'), ('41638','48112','component','system'), ('41639','48113','component','raw'), ('41640','48114','component','cache'), ('41641','48115','component','raw'), ('41642','48116','component','application'), ('41643','48117','component','raw'), ('41644','48118','component','raw'), ('41645','48119','component','raw'), ('41646','48120','component','transactions'), ('41647','48121','component','application'), ('41648','48121','component','health'), ('41649','48122','component','raw'), ('41650','48123','component','replication'), ('41651','48124','component','replication'), ('41652','48125','component','replication'), ('41653','48126','component','raw'), ('41654','48127','component','replication'), ('41655','48128','component','replication'), ('41656','48129','component','application'), ('41657','48130','component','application'), ('41658','48131','component','raw'), ('41659','48132','component','archive'), ('41660','48133','component','archive'), ('41661','48134','component','archive'), ('41662','48135','component','archive'), ('41663','48136','component','bgwriter'), ('41664','48137','component','bgwriter'), ('41665','48138','component','bgwriter'), ('41666','48139','component','bgwriter'), ('41667','48140','component','bgwriter'), ('41668','48141','component','bgwriter'), ('41669','48142','component','bgwriter'), ('41670','48143','component','bgwriter'), ('41671','48144','component','bgwriter'), ('41672','48145','component','bgwriter'), ('41673','48146','component','connections'), ('41674','48147','component','connections'), ('41675','48148','component','connections'), ('41676','48149','component','connections'), ('41677','48150','component','connections'), ('41678','48151','component','connections'), ('41679','48152','component','connections'), ('41680','48153','component','connections'), ('41681','48154','component','connections'), ('41682','48155','component','connections'), ('41683','48156','component','cache'), ('41684','48157','component','storage'), ('41685','48158','component','storage'), ('41686','48159','component','storage'), ('41687','48160','component','system'), ('41688','48161','component','queries'), ('41689','48162','component','deadlocks'), ('41690','48163','component','backends'), ('41691','48164','component','storage'), ('41692','48165','component','storage'), ('41693','48166','component','queries'), ('41694','48167','component','queries'), ('41695','48168','component','queries'), ('41696','48169','component','queries'), ('41697','48170','component','queries'), ('41698','48171','component','transactions'), ('41699','48172','component','transactions'), ('41700','48173','component','wal'), ('41701','48174','component','wal'), ('41702','48175','component','wal'), ('41703','48178','component','application'), ('41704','48178','database','{#DBNAME}'), ('41705','48179','component','tables'), ('41706','48179','database','{#DBNAME}'), ('41707','48180','component','storage'), ('41708','48180','database','{#DBNAME}'), ('41709','48181','component','raw'), ('41710','48181','database','{#DBNAME}'), ('41711','48182','component','raw'), ('41712','48182','database','{#DBNAME}'), ('41713','48183','component','raw'), ('41714','48183','database','{#DBNAME}'), ('41715','48184','application','{#APPLICATION_NAME}'), ('41716','48184','component','raw'), ('41717','48185','component','cache'), ('41718','48185','database','{#DBNAME}'), ('41719','48186','component','storage'), ('41720','48186','database','{#DBNAME}'), ('41721','48187','component','storage'), ('41722','48187','database','{#DBNAME}'), ('41723','48188','component','storage'), ('41724','48188','database','{#DBNAME}'), ('41725','48189','component','system'), ('41726','48189','database','{#DBNAME}'), ('41727','48190','component','queries'), ('41728','48190','database','{#DBNAME}'), ('41729','48191','component','deadlocks'), ('41730','48191','database','{#DBNAME}'), ('41731','48192','component','backends'), ('41732','48192','database','{#DBNAME}'), ('41733','48193','component','storage'), ('41734','48193','database','{#DBNAME}'), ('41735','48194','component','storage'), ('41736','48194','database','{#DBNAME}'), ('41737','48195','component','queries'), ('41738','48195','database','{#DBNAME}'), ('41739','48196','component','queries'), ('41740','48196','database','{#DBNAME}'), ('41741','48197','component','queries'), ('41742','48197','database','{#DBNAME}'), ('41743','48198','component','queries'), ('41744','48198','database','{#DBNAME}'), ('41745','48199','component','queries'), ('41746','48199','database','{#DBNAME}'), ('41747','48200','component','transactions'), ('41748','48200','database','{#DBNAME}'), ('41749','48201','component','transactions'), ('41750','48201','database','{#DBNAME}'), ('41751','48202','component','locks'), ('41752','48202','database','{#DBNAME}'), ('41753','48203','component','locks'), ('41754','48203','database','{#DBNAME}'), ('41755','48204','component','locks'), ('41756','48204','database','{#DBNAME}'), ('41757','48205','component','locks'), ('41758','48205','database','{#DBNAME}'), ('41759','48206','component','locks'), ('41760','48206','database','{#DBNAME}'), ('41761','48207','component','locks'), ('41762','48207','database','{#DBNAME}'), ('41763','48208','component','locks'), ('41764','48208','database','{#DBNAME}'), ('41765','48209','component','locks'), ('41766','48209','database','{#DBNAME}'), ('41767','48210','component','locks'), ('41768','48210','database','{#DBNAME}'), ('41769','48211','component','queries'), ('41770','48211','database','{#DBNAME}'), ('41771','48212','component','queries'), ('41772','48212','database','{#DBNAME}'), ('41773','48213','component','queries'), ('41774','48213','database','{#DBNAME}'), ('41775','48214','component','queries'), ('41776','48214','database','{#DBNAME}'), ('41777','48215','component','queries'), ('41778','48215','database','{#DBNAME}'), ('41779','48216','component','queries'), ('41780','48216','database','{#DBNAME}'), ('41781','48217','component','queries'), ('41782','48217','database','{#DBNAME}'), ('41783','48218','component','queries'), ('41784','48218','database','{#DBNAME}'), ('41785','48219','component','queries'), ('41786','48219','database','{#DBNAME}'), ('41787','48220','application','{#APPLICATION_NAME}'), ('41788','48220','component','replication'), ('41789','48221','application','{#APPLICATION_NAME}'), ('41790','48221','component','replication'), ('41791','48222','application','{#APPLICATION_NAME}'), ('41792','48222','component','replication'), ('41793','48223','component','raw'), ('41794','48224','component','cache'), ('41795','48225','component','application'), ('41796','48226','component','raw'), ('41797','48227','component','raw'), ('41798','48228','component','raw'), ('41799','48229','component','application'), ('41800','48229','component','health'), ('41801','48230','component','application'), ('41802','48230','component','health'), ('41803','48231','component','raw'), ('41804','48232','component','replication'), ('41805','48233','component','replication'), ('41806','48234','component','replication'), ('41807','48235','component','replication'), ('41808','48236','component','raw'), ('41809','48237','component','application'), ('41810','48238','component','application'), ('41811','48239','component','raw'), ('41812','48240','component','bgwriter'), ('41813','48241','component','bgwriter'), ('41814','48242','component','bgwriter'), ('41815','48243','component','bgwriter'), ('41816','48244','component','bgwriter'), ('41817','48245','component','bgwriter'), ('41818','48246','component','bgwriter'), ('41819','48247','component','bgwriter'), ('41820','48248','component','bgwriter'), ('41821','48249','component','bgwriter'), ('41822','48250','component','connections'), ('41823','48251','component','connections'), ('41824','48252','component','connections'), ('41825','48253','component','connections'), ('41826','48254','component','connections'), ('41827','48255','component','connections'), ('41828','48256','component','connections'), ('41829','48257','component','transactions'), ('41830','48258','component','transactions'), ('41831','48259','component','transactions'), ('41832','48260','component','transactions'), ('41833','48261','component','wal'), ('41834','48262','component','wal'), ('41835','48264','component','storage'), ('41836','48264','database','{#DBNAME}'), ('41837','48265','component','raw'), ('41838','48265','database','{#DBNAME}'), ('41839','48266','component','raw'), ('41840','48266','database','{#DBNAME}'), ('41841','48267','component','raw'), ('41842','48267','database','{#DBNAME}'), ('41843','48268','component','transactions'), ('41844','48268','database','{#DBNAME}'), ('41845','48269','component','transactions'), ('41846','48269','database','{#DBNAME}'), ('41847','48270','component','locks'), ('41848','48270','database','{#DBNAME}'), ('41849','48271','component','raw'), ('41850','48271','database','{#DBNAME}'), ('41851','48272','component','scans'), ('41852','48272','database','{#DBNAME}'), ('41853','48273','component','scans'), ('41854','48273','database','{#DBNAME}'), ('41855','48274','component','cache'), ('41856','48274','database','{#DBNAME}'), ('41857','48275','component','storage'), ('41858','48275','database','{#DBNAME}'), ('41859','48276','component','queries'), ('41860','48276','database','{#DBNAME}'), ('41861','48277','component','deadlocks'), ('41862','48277','database','{#DBNAME}'), ('41863','48278','component','storage'), ('41864','48278','database','{#DBNAME}'), ('41865','48279','component','storage'), ('41866','48279','database','{#DBNAME}'), ('41867','48280','component','queries'), ('41868','48280','database','{#DBNAME}'), ('41869','48281','component','queries'), ('41870','48281','database','{#DBNAME}'), ('41871','48282','component','queries'), ('41872','48282','database','{#DBNAME}'), ('41873','48283','component','queries'), ('41874','48283','database','{#DBNAME}'), ('41875','48284','component','queries'), ('41876','48284','database','{#DBNAME}'), ('41877','48285','component','transactions'), ('41878','48285','database','{#DBNAME}'), ('41879','48286','component','transactions'), ('41880','48286','database','{#DBNAME}'), ('41881','48287','component','queries'), ('41882','48287','database','{#DBNAME}'), ('41883','48288','component','queries'), ('41884','48288','database','{#DBNAME}'), ('41885','48289','component','queries'), ('41886','48289','database','{#DBNAME}'), ('41887','48290','component','queries'), ('41888','48290','database','{#DBNAME}'), ('41889','48291','component','queries'), ('41890','48291','database','{#DBNAME}'), ('41891','48292','component','queries'), ('41892','48292','database','{#DBNAME}'), ('41893','48293','component','queries'), ('41894','48293','database','{#DBNAME}'), ('41895','48294','component','queries'), ('41896','48294','database','{#DBNAME}'), ('41897','48295','component','queries'), ('41898','48295','database','{#DBNAME}'), ('41899','48296','component','health'), ('41900','48296','component','network'), ('41901','48297','component','health'), ('41902','48297','component','network'), ('41903','48298','component','health'), ('41904','48298','component','network'), ('41905','48299','component','raw'), ('41906','48300','component','raw'), ('41907','48301','component','raw'), ('41908','48302','component','raw'), ('41909','48303','component','raw'), ('41910','48304','component','raw'), ('41911','48305','component','raw'), ('41912','48306','component','raw'), ('41913','48307','component','raw'), ('41914','48308','component','system'), ('41915','48309','component','system'), ('41916','48310','component','system'), ('41917','48311','component','system'), ('41918','48312','component','system'), ('41919','48313','component','system'), ('41920','48314','component','system'), ('41921','48315','component','system'), ('41922','48316','component','system'), ('41923','48317','component','os'), ('41924','48318','component','network'), ('41925','48319','component','health'), ('41926','48319','component','network'), ('41927','48332','address','{#BGPM2_PEER_REMOTE_ADDR}'), ('41928','48332','as','{#BGPM2_PEER_REMOTE_AS}'), ('41929','48332','component','bgp'), ('41930','48332','component','network'), ('41931','48333','address','{#BGPM2_PEER_REMOTE_ADDR}'), ('41932','48333','as','{#BGPM2_PEER_REMOTE_AS}'), ('41933','48333','component','bgp'), ('41934','48333','component','network'), ('41935','48334','address','{#BGPM2_PEER_REMOTE_ADDR}'), ('41936','48334','as','{#BGPM2_PEER_REMOTE_AS}'), ('41937','48334','component','bgp'), ('41938','48334','component','network'), ('41939','48335','component','bgp'), ('41940','48335','component','network'), ('41941','48336','component','bgp'), ('41942','48336','component','network'), ('41943','48337','component','bgp'), ('41944','48337','component','network'), ('41945','48338','component','bgp'), ('41946','48338','component','network'), ('41947','48339','component','bgp'), ('41948','48339','component','network'), ('41949','48340','component','cpu'), ('41950','48341','component','memory'), ('41951','48342','alias','{#IFALIAS}'), ('41952','48342','component','dom'), ('41953','48342','component','network'), ('41954','48342','sfp','{#IFNAME}'), ('41955','48343','alias','{#IFALIAS}'), ('41956','48343','component','dom'), ('41957','48343','component','network'), ('41958','48343','sfp','{#IFNAME}'), ('41959','48344','alias','{#IFALIAS}'), ('41960','48344','component','dom'), ('41961','48344','component','network'), ('41962','48344','sfp','{#IFNAME}'), ('41963','48345','component','fan'), ('41964','48346','alias','{#IFALIAS}'), ('41965','48346','component','network'), ('41966','48346','interface','{#IFNAME}'), ('41967','48347','alias','{#IFALIAS}'), ('41968','48347','component','network'), ('41969','48347','interface','{#IFNAME}'), ('41970','48348','alias','{#IFALIAS}'), ('41971','48348','component','network'), ('41972','48348','interface','{#IFNAME}'), ('41973','48349','alias','{#IFALIAS}'), ('41974','48349','component','network'), ('41975','48349','interface','{#IFNAME}'), ('41976','48350','alias','{#IFALIAS}'), ('41977','48350','component','network'), ('41978','48350','interface','{#IFNAME}'), ('41979','48351','alias','{#IFALIAS}'), ('41980','48351','component','network'), ('41981','48351','interface','{#IFNAME}'), ('41982','48352','alias','{#IFALIAS}'), ('41983','48352','component','network'), ('41984','48352','interface','{#IFNAME}'), ('41985','48353','alias','{#IFALIAS}'), ('41986','48353','component','network'), ('41987','48353','interface','{#IFNAME}'), ('41988','48354','alias','{#IFALIAS}'), ('41989','48354','component','network'), ('41990','48354','interface','{#IFNAME}'), ('41991','48355','alias','{#IFALIAS}'), ('41992','48355','component','network'), ('41993','48355','interface','{#IFNAME}'), ('41994','48356','address','{#OSPF_IP_ADDR}'), ('41995','48356','component','network'), ('41996','48356','component','ospf'), ('41997','48357','address','{#OSPF_IP_ADDR}'), ('41998','48357','component','network'), ('41999','48357','component','ospf'), ('42000','48358','address','{#OSPF_IP_ADDR}'), ('42001','48358','component','network'), ('42002','48358','component','ospf'), ('42003','48359','address','{#OSPF_IP_ADDR}'), ('42004','48359','component','network'), ('42005','48359','component','ospf'), ('42006','48360','address','{#OSPFV3_IP_ADDR}'), ('42007','48360','component','network'), ('42008','48360','component','ospfv3'), ('42009','48361','address','{#OSPFV3_IP_ADDR}'), ('42010','48361','component','network'), ('42011','48361','component','ospfv3'), ('42012','48362','address','{#OSPFV3_IP_ADDR}'), ('42013','48362','component','network'), ('42014','48362','component','ospfv3'), ('42015','48363','address','{#OSPFV3_IP_ADDR}'), ('42016','48363','component','network'), ('42017','48363','component','ospfv3'), ('42018','48364','component','power'), ('42019','48365','component','redundancy'), ('42020','48366','component','redundancy'), ('42021','48367','component','temperature'), ('42022','48368','component','raw'), ('42023','48369','component','storage'), ('42024','48370','component','health'), ('42025','48371','component','health'), ('42026','48372','component','performance'), ('42027','48373','component','performance'), ('42028','48374','component','database'), ('42029','48375','component','performance'), ('42030','48376','component','cpu'), ('42031','48377','component','error'), ('42032','48378','component','health'), ('42033','48379','component','performance'), ('42034','48380','component','health'), ('42035','48381','component','storage'), ('42036','48382','component','storage'), ('42037','48384','component','raw'), ('42038','48385','component','raw'), ('42039','48386','component','raw'), ('42040','48387','component','raw'), ('42041','48388','component','raw'), ('42042','48389','component','raw'), ('42043','48390','component','raw'), ('42044','48391','component','raw'), ('42045','48392','component','raw'), ('42046','48393','component','raw'), ('42047','48394','component','app-id'), ('42048','48394','component','system'), ('42049','48395','component','app-id'), ('42050','48395','component','system'), ('42051','48396','component','status'), ('42052','48397','component','status'), ('42053','48398','component','cpu'), ('42054','48398','component','environment'), ('42055','48399','component','cpu'), ('42056','48400','component','status'), ('42057','48401','component','global-protect'), ('42058','48401','component','system'), ('42059','48402','component','status'), ('42060','48403','component','system'), ('42061','48404','component','status'), ('42062','48405','component','cpu'), ('42063','48406','component','system'), ('42064','48407','component','status'), ('42065','48408','component','status'), ('42066','48409','component','inventory'), ('42067','48409','component','system'), ('42068','48410','component','session'), ('42069','48411','component','session'), ('42070','48412','component','session'), ('42071','48413','component','session'), ('42072','48414','component','session'), ('42073','48415','component','session'), ('42074','48416','component','status'), ('42075','48417','component','status'), ('42076','48418','component','status'), ('42077','48419','component','system'), ('42078','48419','component','threat'), ('42079','48420','component','system'), ('42080','48421','component','system'), ('42081','48421','component','url-filtering'), ('42082','48432','component','bgp'), ('42083','48432','component','network'), ('42084','48432','component','raw'), ('42085','48432','peer','{#PEER}'), ('42086','48432','peer-address','{#PEERADDR}'), ('42087','48432','peer-group','{#PEERGROUP}'), ('42088','48433','component','interface'), ('42089','48433','component','network'), ('42090','48433','component','raw'), ('42091','48433','interface','{#IFNAME}'), ('42092','48433','interface-type','hardware'), ('42093','48434','component','interface'), ('42094','48434','component','network'), ('42095','48434','component','raw'), ('42096','48434','interface','{#IFNAME}'), ('42097','48434','interface-type','logical'), ('42098','48434','vsys','{#VSYS}'), ('42099','48435','component','bgp'), ('42100','48435','component','network'), ('42101','48435','peer','{#PEER}'), ('42102','48435','peer-address','{#PEERADDR}'), ('42103','48435','peer-group','{#PEERGROUP}'), ('42104','48436','component','bgp'), ('42105','48436','component','network'), ('42106','48436','peer','{#PEER}'), ('42107','48436','peer-address','{#PEERADDR}'), ('42108','48436','peer-group','{#PEERGROUP}'), ('42109','48437','component','certificate'), ('42110','48438','component','certificate'), ('42111','48439','component','certificate'), ('42112','48440','component','ha'), ('42113','48440','component','local-ha'), ('42114','48441','component','ha'), ('42115','48441','component','local-ha'), ('42116','48442','component','ha'), ('42117','48442','component','peer-ha'), ('42118','48443','component','ha'), ('42119','48444','component','ha'), ('42120','48445','component','ha'), ('42121','48445','component','ha-link'), ('42122','48445','component','peer-ha'), ('42123','48445','ha-link','{#HALINK}'), ('42124','48446','component','interface'), ('42125','48446','component','network'), ('42126','48446','interface','{#IFNAME}'), ('42127','48446','interface-type','hardware'), ('42128','48447','component','interface'), ('42129','48447','component','network'), ('42130','48447','interface','{#IFNAME}'), ('42131','48447','interface-type','hardware'), ('42132','48448','component','interface'), ('42133','48448','component','network'), ('42134','48448','interface','{#IFNAME}'), ('42135','48448','interface-type','hardware'), ('42136','48449','component','interface'), ('42137','48449','component','network'), ('42138','48449','interface','{#IFNAME}'), ('42139','48449','interface-type','hardware'), ('42140','48450','component','interface'), ('42141','48450','component','network'), ('42142','48450','interface','{#IFNAME}'), ('42143','48450','interface-type','hardware'), ('42144','48451','component','interface'), ('42145','48451','component','network'), ('42146','48451','interface','{#IFNAME}'), ('42147','48451','interface-type','hardware'), ('42148','48452','component','interface'), ('42149','48452','component','network'), ('42150','48452','interface','{#IFNAME}'), ('42151','48452','interface-type','hardware'), ('42152','48453','component','interface'), ('42153','48453','component','network'), ('42154','48453','interface','{#IFNAME}'), ('42155','48453','interface-type','logical'), ('42156','48453','vsys','{#VSYS}'), ('42157','48454','component','interface'), ('42158','48454','component','network'), ('42159','48454','interface','{#IFNAME}'), ('42160','48454','interface-type','logical'), ('42161','48454','vsys','{#VSYS}'), ('42162','48455','component','interface'), ('42163','48455','component','network'), ('42164','48455','interface','{#IFNAME}'), ('42165','48455','interface-type','logical'), ('42166','48455','vsys','{#VSYS}'), ('42167','48456','component','interface'), ('42168','48456','component','network'), ('42169','48456','interface','{#IFNAME}'), ('42170','48456','interface-type','logical'), ('42171','48456','vsys','{#VSYS}'), ('42172','48457','component','license'), ('42173','48458','component','license'), ('42174','48459','component','network'), ('42175','48459','component','ospf'), ('42176','48459','neighbor-address','{#NEIGHBORADDR}'), ('42177','48459','neighbor-area','{#NEIGHBORAREA}'), ('42178','48460','component','network'), ('42179','48460','component','ospfv3'), ('42180','48460','neighbor-address','{#NEIGHBORADDR}'), ('42181','48460','neighbor-area','{#NEIGHBORAREA}'), ('42182','48461','component','raw'), ('42183','48462','component','raw'), ('42184','48463','component','raw'), ('42185','48464','component','raw'), ('42186','48465','component','raw'), ('42187','48466','component','health'), ('42188','48466','component','system'), ('42189','48467','component','system'), ('42190','48468','component','system'), ('42191','48469','component','system'), ('42192','48470','component','health'), ('42193','48470','component','system'), ('42194','48471','component','cpu'), ('42195','48472','component','io'), ('42196','48473','component','memory'), ('42197','48474','component','sys'), ('42198','48483','component','network'), ('42199','48483','component','raw'), ('42200','48484','component','physicaldisk'), ('42201','48484','component','raw'), ('42202','48484','component','storage'), ('42203','48485','component','raw'), ('42204','48485','component','virtualdisk'), ('42205','48486','component','diskarray'), ('42206','48486','component','storage'), ('42207','48487','component','battery'), ('42208','48487','component','diskarray'), ('42209','48488','component','fan'), ('42210','48488','component','raw'), ('42211','48489','component','network'), ('42212','48490','component','network'), ('42213','48491','component','network'), ('42214','48492','component','network'), ('42215','48493','component','physicaldisk'), ('42216','48493','component','storage'), ('42217','48494','component','physicaldisk'), ('42218','48494','component','storage'), ('42219','48495','component','physicaldisk'), ('42220','48495','component','storage'), ('42221','48496','component','physicaldisk'), ('42222','48496','component','storage'), ('42223','48497','component','physicaldisk'), ('42224','48497','component','storage'), ('42225','48498','component','psu'), ('42226','48498','component','raw'), ('42227','48499','component','raw'), ('42228','48499','component','temperature'), ('42229','48500','component','storage'), ('42230','48500','component','virtualdisk'), ('42231','48501','component','storage'), ('42232','48501','component','virtualdisk'), ('42233','48502','component','storage'), ('42234','48502','component','virtualdisk'), ('42235','48503','component','storage'), ('42236','48503','component','virtualdisk'), ('42237','48504','component','storage'), ('42238','48504','component','virtualdisk'), ('42239','48505','component','storage'), ('42240','48505','component','virtualdisk'), ('42241','48506','component','fan'), ('42242','48507','component','fan'), ('42243','48508','component','psu'), ('42244','48509','component','current'), ('42245','48509','component','psu'), ('42246','48510','component','psu'), ('42247','48511','component','psu'), ('42248','48511','component','voltage'), ('42249','48512','component','temperature'), ('42250','48513','component','temperature'), ('42251','48514','component','raw'), ('42252','48515','component','raw'), ('42253','48516','component','system'), ('42254','48517','component','system'), ('42255','48518','component','raw'), ('42256','48519','component','system'), ('42257','48520','component','raw'), ('42258','48521','component','raw'), ('42259','48522','component','raw'), ('42260','48523','component','system'), ('42261','48524','component','system'), ('42262','48525','component','system'), ('42263','48526','component','system'), ('42264','48527','component','system'), ('42265','48528','component','memory'), ('42266','48529','component','raw'), ('42267','48530','component','system'), ('42268','48531','component','raw'), ('42269','48532','component','system'), ('42270','48533','component','system'), ('42271','48534','component','raw'), ('42272','48535','component','raw'), ('42273','48536','component','health'), ('42274','48536','component','system'), ('42275','48537','component','system'), ('42276','48538','component','raw'), ('42277','48539','component','raw'), ('42278','48540','component','network'), ('42279','48541','component','health'), ('42280','48541','component','system'), ('42281','48554','component','diskarray'), ('42282','48554','component','storage'), ('42283','48555','component','diskarray'), ('42284','48555','component','storage'), ('42285','48556','component','battery'), ('42286','48556','component','diskarray'), ('42287','48557','component','cpu'), ('42288','48558','component','cpu'), ('42289','48559','component','fan'), ('42290','48560','component','fan'), ('42291','48561','component','memory'), ('42292','48562','component','memory'), ('42293','48563','component','network'), ('42294','48564','component','network'), ('42295','48565','component','physicaldisk'), ('42296','48565','component','storage'), ('42297','48566','component','physicaldisk'), ('42298','48566','component','storage'), ('42299','48567','component','physicaldisk'), ('42300','48567','component','storage'), ('42301','48568','component','physicaldisk'), ('42302','48568','component','storage'), ('42303','48569','component','physicaldisk'), ('42304','48569','component','storage'), ('42305','48570','component','physicaldisk'), ('42306','48570','component','storage'), ('42307','48571','component','psu'), ('42308','48572','component','battery'), ('42309','48573','component','temperature'), ('42310','48574','component','temperature'), ('42311','48575','component','storage'), ('42312','48575','component','virtualdisk'), ('42313','48576','component','storage'), ('42314','48576','component','virtualdisk'), ('42315','48577','component','storage'), ('42316','48577','component','virtualdisk'), ('42317','48578','component','storage'), ('42318','48578','component','virtualdisk'), ('42319','48579','component','storage'), ('42320','48579','component','virtualdisk'), ('42321','48580','component','storage'), ('42322','48580','component','virtualdisk'), ('42323','48581','component','voltage'), ('42324','48582','component','voltage'), ('42325','36213','component','raw'), ('42326','48583','component','raw'), ('42327','48584','component','raw'), ('42328','48585','component','raw'), ('42329','48586','component','raw'), ('42330','36218','component','health'), ('42331','48587','component','cpu'), ('42332','48588','component','io'), ('42333','48589','component','memory'), ('42334','48590','component','sys'), ('42335','48599','component','network'), ('42336','48599','component','raw'), ('42337','48600','component','physicaldisk'), ('42338','48600','component','raw'), ('42339','48600','component','storage'), ('42340','48601','component','raw'), ('42341','48601','component','virtualdisk'), ('42342','48602','component','diskarray'), ('42343','48602','component','storage'), ('42344','48603','component','battery'), ('42345','48603','component','diskarray'), ('42346','48604','component','fan'), ('42347','48604','component','raw'), ('42348','48605','component','network'), ('42349','48606','component','network'), ('42350','48607','component','network'), ('42351','48608','component','network'), ('42352','48609','component','physicaldisk'), ('42353','48609','component','storage'), ('42354','48610','component','physicaldisk'), ('42355','48610','component','storage'), ('42356','48611','component','physicaldisk'), ('42357','48611','component','storage'), ('42358','48612','component','physicaldisk'), ('42359','48612','component','storage'), ('42360','48613','component','physicaldisk'), ('42361','48613','component','storage'), ('42362','48614','component','psu'), ('42363','48614','component','raw'), ('42364','48615','component','raw'), ('42365','48615','component','temperature'), ('42366','48616','component','storage'), ('42367','48616','component','virtualdisk'), ('42368','48617','component','storage'), ('42369','48617','component','virtualdisk'), ('42370','48618','component','storage'), ('42371','48618','component','virtualdisk'), ('42372','48619','component','storage'), ('42373','48619','component','virtualdisk'), ('42374','48620','component','storage'), ('42375','48620','component','virtualdisk'), ('42376','48621','component','storage'), ('42377','48621','component','virtualdisk'), ('42378','48622','component','fan'), ('42379','48623','component','fan'), ('42380','48624','component','psu'), ('42381','48625','component','current'), ('42382','48625','component','psu'), ('42383','48626','component','psu'), ('42384','48627','component','psu'), ('42385','48627','component','voltage'), ('42386','48628','component','temperature'), ('42387','48629','component','temperature'), ('42388','48630','component','raw'), ('42389','48631','component','raw'), ('42390','48632','component','system'), ('42391','48633','component','raw'), ('42392','48634','component','raw'), ('42393','48635','component','raw'), ('42394','48636','component','raw'), ('42395','48637','component','system'), ('42396','48638','component','memory'), ('42397','48639','component','raw'), ('42398','48640','component','raw'), ('42399','48641','component','system'), ('42400','48642','component','raw'), ('42401','48643','component','raw'), ('42402','48644','component','raw'), ('42403','48645','component','raw'), ('42404','48652','component','battery'), ('42405','48652','component','diskarray'), ('42406','48653','component','cpu'), ('42407','48654','component','cpu'), ('42408','48655','component','fan'), ('42409','48656','component','fan'), ('42410','48657','component','memory'), ('42411','48658','component','memory'), ('42412','48659','component','network'), ('42413','48660','component','network'), ('42414','48661','component','battery'), ('42415','48662','component','storage'), ('42416','48662','component','virtualdisk'), ('42417','48663','component','storage'), ('42418','48663','component','virtualdisk'), ('42419','48664','component','voltage'), ('42420','48665','component','voltage'), ('42421','36295','component','raw'), ('42422','48666','component','raw'), ('42423','48667','component','raw'), ('42424','48668','component','raw'), ('42425','48669','component','raw'), ('42426','48670','component','cpu'), ('42427','48671','component','io'), ('42428','48672','component','memory'), ('42429','48673','component','sys'), ('42430','48682','component','network'), ('42431','48682','component','raw'), ('42432','48683','component','physicaldisk'), ('42433','48683','component','raw'), ('42434','48683','component','storage'), ('42435','48684','component','raw'), ('42436','48684','component','virtualdisk'), ('42437','48685','component','diskarray'), ('42438','48685','component','storage'), ('42439','48686','component','battery'), ('42440','48686','component','diskarray'), ('42441','48687','component','fan'), ('42442','48687','component','raw'), ('42443','48688','component','network'), ('42444','48689','component','network'), ('42445','48690','component','network'), ('42446','48691','component','network'), ('42447','48692','component','physicaldisk'), ('42448','48692','component','storage'), ('42449','48693','component','physicaldisk'), ('42450','48693','component','storage'), ('42451','48694','component','physicaldisk'), ('42452','48694','component','storage'), ('42453','48695','component','physicaldisk'), ('42454','48695','component','storage'), ('42455','48696','component','physicaldisk'), ('42456','48696','component','storage'), ('42457','48697','component','psu'), ('42458','48697','component','raw'), ('42459','48698','component','raw'), ('42460','48698','component','temperature'), ('42461','48699','component','storage'), ('42462','48699','component','virtualdisk'), ('42463','48700','component','storage'), ('42464','48700','component','virtualdisk'), ('42465','48701','component','storage'), ('42466','48701','component','virtualdisk'), ('42467','48702','component','storage'), ('42468','48702','component','virtualdisk'), ('42469','48703','component','storage'), ('42470','48703','component','virtualdisk'), ('42471','48704','component','storage'), ('42472','48704','component','virtualdisk'), ('42473','48705','component','fan'), ('42474','48706','component','fan'), ('42475','48707','component','psu'), ('42476','48708','component','current'), ('42477','48708','component','psu'), ('42478','48709','component','psu'), ('42479','48710','component','psu'), ('42480','48710','component','voltage'), ('42481','48711','component','temperature'), ('42482','48712','component','temperature'), ('42483','48713','component','raw'), ('42484','48714','component','raw'), ('42485','48715','component','system'), ('42486','48716','component','raw'), ('42487','48717','component','raw'), ('42488','48718','component','raw'), ('42489','48719','component','raw'), ('42490','48720','component','system'), ('42491','48721','component','memory'), ('42492','48722','component','raw'), ('42493','48723','component','raw'), ('42494','48724','component','system'), ('42495','48725','component','raw'), ('42496','48726','component','raw'), ('42497','48727','component','raw'), ('42498','48728','component','raw'), ('42499','48735','component','battery'), ('42500','48735','component','diskarray'), ('42501','48736','component','cpu'), ('42502','48737','component','cpu'), ('42503','48738','component','fan'), ('42504','48739','component','fan'), ('42505','48740','component','memory'), ('42506','48741','component','memory'), ('42507','48742','component','network'), ('42508','48743','component','network'), ('42509','48744','component','battery'), ('42510','48745','component','storage'), ('42511','48745','component','virtualdisk'), ('42512','48746','component','storage'), ('42513','48746','component','virtualdisk'), ('42514','48747','component','voltage'), ('42515','48748','component','voltage'), ('42516','48749','component','raw'), ('42517','48750','component','raw'), ('42518','48751','component','raw'), ('42519','48752','component','raw'), ('42520','48753','component','raw'), ('42521','48754','component','health'), ('42522','48754','component','system'), ('42523','48755','component','system'), ('42524','48756','component','system'), ('42525','48757','component','system'), ('42526','48758','component','health'), ('42527','48758','component','system'), ('42528','48759','component','cpu'), ('42529','48760','component','io'), ('42530','48761','component','memory'), ('42531','48762','component','sys'), ('42532','48771','component','network'), ('42533','48771','component','raw'), ('42534','48772','component','physicaldisk'), ('42535','48772','component','raw'), ('42536','48772','component','storage'), ('42537','48773','component','raw'), ('42538','48773','component','virtualdisk'), ('42539','48774','component','diskarray'), ('42540','48774','component','storage'), ('42541','48775','component','battery'), ('42542','48775','component','diskarray'), ('42543','48776','component','fan'), ('42544','48776','component','raw'), ('42545','48777','component','network'), ('42546','48778','component','network'), ('42547','48779','component','network'), ('42548','48780','component','network'), ('42549','48781','component','physicaldisk'), ('42550','48781','component','storage'), ('42551','48782','component','physicaldisk'), ('42552','48782','component','storage'), ('42553','48783','component','physicaldisk'), ('42554','48783','component','storage'), ('42555','48784','component','physicaldisk'), ('42556','48784','component','storage'), ('42557','48785','component','physicaldisk'), ('42558','48785','component','storage'), ('42559','48786','component','psu'), ('42560','48786','component','raw'), ('42561','48787','component','raw'), ('42562','48787','component','temperature'), ('42563','48788','component','storage'), ('42564','48788','component','virtualdisk'), ('42565','48789','component','storage'), ('42566','48789','component','virtualdisk'), ('42567','48790','component','storage'), ('42568','48790','component','virtualdisk'), ('42569','48791','component','storage'), ('42570','48791','component','virtualdisk'), ('42571','48792','component','storage'), ('42572','48792','component','virtualdisk'), ('42573','48793','component','storage'), ('42574','48793','component','virtualdisk'), ('42575','48794','component','fan'), ('42576','48795','component','fan'), ('42577','48796','component','psu'), ('42578','48797','component','current'), ('42579','48797','component','psu'), ('42580','48798','component','psu'), ('42581','48799','component','psu'), ('42582','48799','component','voltage'), ('42583','48800','component','temperature'), ('42584','48801','component','temperature'), ('42585','48802','component','raw'), ('42586','48803','component','raw'), ('42587','48804','component','system'), ('42588','48805','component','system'), ('42589','48806','component','raw'), ('42590','48807','component','system'), ('42591','48808','component','raw'), ('42592','48809','component','raw'), ('42593','48810','component','raw'), ('42594','48811','component','system'), ('42595','48812','component','system'), ('42596','48813','component','system'), ('42597','48814','component','system'), ('42598','48815','component','system'), ('42599','48816','component','memory'), ('42600','48817','component','raw'), ('42601','48818','component','system'), ('42602','48819','component','raw'), ('42603','48820','component','system'), ('42604','48821','component','system'), ('42605','48822','component','raw'), ('42606','48823','component','raw'), ('42607','48824','component','health'), ('42608','48824','component','system'), ('42609','48825','component','system'), ('42610','48826','component','raw'), ('42611','48827','component','raw'), ('42612','48828','component','network'), ('42613','48829','component','health'), ('42614','48829','component','system'), ('42615','48842','component','diskarray'), ('42616','48842','component','storage'), ('42617','48843','component','diskarray'), ('42618','48843','component','storage'), ('42619','48844','component','battery'), ('42620','48844','component','diskarray'), ('42621','48845','component','cpu'), ('42622','48846','component','cpu'), ('42623','48847','component','fan'), ('42624','48848','component','fan'), ('42625','48849','component','memory'), ('42626','48850','component','memory'), ('42627','48851','component','network'), ('42628','48852','component','network'), ('42629','48853','component','physicaldisk'), ('42630','48853','component','storage'), ('42631','48854','component','physicaldisk'), ('42632','48854','component','storage'), ('42633','48855','component','physicaldisk'), ('42634','48855','component','storage'), ('42635','48856','component','physicaldisk'), ('42636','48856','component','storage'), ('42637','48857','component','physicaldisk'), ('42638','48857','component','storage'), ('42639','48858','component','physicaldisk'), ('42640','48858','component','storage'), ('42641','48859','component','psu'), ('42642','48860','component','battery'), ('42643','48861','component','temperature'), ('42644','48862','component','temperature'), ('42645','48863','component','storage'), ('42646','48863','component','virtualdisk'), ('42647','48864','component','storage'), ('42648','48864','component','virtualdisk'), ('42649','48865','component','storage'), ('42650','48865','component','virtualdisk'), ('42651','48866','component','storage'), ('42652','48866','component','virtualdisk'), ('42653','48867','component','storage'), ('42654','48867','component','virtualdisk'), ('42655','48868','component','storage'), ('42656','48868','component','virtualdisk'), ('42657','48869','component','voltage'), ('42658','48870','component','voltage'), ('42659','36377','component','raw'), ('42660','48871','component','raw'), ('42661','48872','component','raw'), ('42662','48873','component','raw'), ('42663','48874','component','raw'), ('42664','48875','component','cpu'), ('42665','48876','component','io'), ('42666','48877','component','memory'), ('42667','48878','component','sys'), ('42668','48887','component','network'), ('42669','48887','component','raw'), ('42670','48888','component','physicaldisk'), ('42671','48888','component','raw'), ('42672','48888','component','storage'), ('42673','48889','component','raw'), ('42674','48889','component','virtualdisk'), ('42675','48890','component','diskarray'), ('42676','48890','component','storage'), ('42677','48891','component','battery'), ('42678','48891','component','diskarray'), ('42679','48892','component','fan'), ('42680','48892','component','raw'), ('42681','48893','component','network'), ('42682','48894','component','network'), ('42683','48895','component','network'), ('42684','48896','component','network'), ('42685','48897','component','physicaldisk'), ('42686','48897','component','storage'), ('42687','48898','component','physicaldisk'), ('42688','48898','component','storage'), ('42689','48899','component','physicaldisk'), ('42690','48899','component','storage'), ('42691','48900','component','physicaldisk'), ('42692','48900','component','storage'), ('42693','48901','component','physicaldisk'), ('42694','48901','component','storage'), ('42695','48902','component','psu'), ('42696','48902','component','raw'), ('42697','48903','component','raw'), ('42698','48903','component','temperature'), ('42699','48904','component','storage'), ('42700','48904','component','virtualdisk'), ('42701','48905','component','storage'), ('42702','48905','component','virtualdisk'), ('42703','48906','component','storage'), ('42704','48906','component','virtualdisk'), ('42705','48907','component','storage'), ('42706','48907','component','virtualdisk'), ('42707','48908','component','storage'), ('42708','48908','component','virtualdisk'), ('42709','48909','component','storage'), ('42710','48909','component','virtualdisk'), ('42711','48910','component','fan'), ('42712','48911','component','fan'), ('42713','48912','component','psu'), ('42714','48913','component','current'), ('42715','48913','component','psu'), ('42716','48914','component','psu'), ('42717','48915','component','psu'), ('42718','48915','component','voltage'), ('42719','48916','component','temperature'), ('42720','48917','component','temperature'), ('42721','48918','component','raw'), ('42722','48919','component','raw'), ('42723','48920','component','system'), ('42724','48921','component','raw'), ('42725','48922','component','raw'), ('42726','48923','component','raw'), ('42727','48924','component','raw'), ('42728','48925','component','system'), ('42729','48926','component','memory'), ('42730','48927','component','raw'), ('42731','48928','component','raw'), ('42732','48929','component','system'), ('42733','48930','component','raw'), ('42734','48931','component','raw'), ('42735','48932','component','raw'), ('42736','48933','component','raw'), ('42737','48940','component','battery'), ('42738','48940','component','diskarray'), ('42739','48941','component','cpu'), ('42740','48942','component','cpu'), ('42741','48943','component','fan'), ('42742','48944','component','fan'), ('42743','48945','component','memory'), ('42744','48946','component','memory'), ('42745','48947','component','network'), ('42746','48948','component','network'), ('42747','48949','component','battery'), ('42748','48950','component','storage'), ('42749','48950','component','virtualdisk'), ('42750','48951','component','storage'), ('42751','48951','component','virtualdisk'), ('42752','48952','component','voltage'), ('42753','48953','component','voltage'), ('42754','36459','component','raw'), ('42755','48954','component','raw'), ('42756','48955','component','raw'), ('42757','48956','component','raw'), ('42758','48957','component','raw'), ('42759','48958','component','cpu'), ('42760','48959','component','io'), ('42761','48960','component','memory'), ('42762','48961','component','sys'), ('42763','48970','component','network'), ('42764','48970','component','raw'), ('42765','48971','component','physicaldisk'), ('42766','48971','component','raw'), ('42767','48971','component','storage'), ('42768','48972','component','raw'), ('42769','48972','component','virtualdisk'), ('42770','48973','component','diskarray'), ('42771','48973','component','storage'), ('42772','48974','component','battery'), ('42773','48974','component','diskarray'), ('42774','48975','component','fan'), ('42775','48975','component','raw'), ('42776','48976','component','network'), ('42777','48977','component','network'), ('42778','48978','component','network'), ('42779','48979','component','network'), ('42780','48980','component','physicaldisk'), ('42781','48980','component','storage'), ('42782','48981','component','physicaldisk'), ('42783','48981','component','storage'), ('42784','48982','component','physicaldisk'), ('42785','48982','component','storage'), ('42786','48983','component','physicaldisk'), ('42787','48983','component','storage'), ('42788','48984','component','physicaldisk'), ('42789','48984','component','storage'), ('42790','48985','component','psu'), ('42791','48985','component','raw'), ('42792','48986','component','raw'), ('42793','48986','component','temperature'), ('42794','48987','component','storage'), ('42795','48987','component','virtualdisk'), ('42796','48988','component','storage'), ('42797','48988','component','virtualdisk'), ('42798','48989','component','storage'), ('42799','48989','component','virtualdisk'), ('42800','48990','component','storage'), ('42801','48990','component','virtualdisk'), ('42802','48991','component','storage'), ('42803','48991','component','virtualdisk'), ('42804','48992','component','storage'), ('42805','48992','component','virtualdisk'), ('42806','48993','component','fan'), ('42807','48994','component','fan'), ('42808','48995','component','psu'), ('42809','48996','component','current'), ('42810','48996','component','psu'), ('42811','48997','component','psu'), ('42812','48998','component','psu'), ('42813','48998','component','voltage'), ('42814','48999','component','temperature'), ('42815','49000','component','temperature'), ('42816','49001','component','raw'), ('42817','49002','component','raw'), ('42818','49003','component','system'), ('42819','49004','component','raw'), ('42820','49005','component','raw'), ('42821','49006','component','raw'), ('42822','49007','component','raw'), ('42823','49008','component','system'), ('42824','49009','component','memory'), ('42825','49010','component','raw'), ('42826','49011','component','raw'), ('42827','49012','component','system'), ('42828','49013','component','raw'), ('42829','49014','component','raw'), ('42830','49015','component','raw'), ('42831','49016','component','raw'), ('42832','49023','component','battery'), ('42833','49023','component','diskarray'), ('42834','49024','component','cpu'), ('42835','49025','component','cpu'), ('42836','49026','component','fan'), ('42837','49027','component','fan'), ('42838','49028','component','memory'), ('42839','49029','component','memory'), ('42840','49030','component','network'), ('42841','49031','component','network'), ('42842','49032','component','battery'), ('42843','49033','component','storage'), ('42844','49033','component','virtualdisk'), ('42845','49034','component','storage'), ('42846','49034','component','virtualdisk'), ('42847','49035','component','voltage'), ('42848','49036','component','voltage'), ('42849','42641','component','system'), ('42850','49037','component','raw'), ('42851','49038','component','raw'), ('42852','49039','component','system'), ('42853','49040','component','system'), ('42854','49041','component','raw'), ('42855','49042','component','system'), ('42856','49043','component','raw'), ('42857','49044','component','raw'), ('42858','49045','component','raw'), ('42859','49046','component','system'), ('42860','49047','component','system'), ('42861','49048','component','system'), ('42862','49049','component','system'), ('42863','49050','component','system'), ('42864','49051','component','memory'), ('42865','49052','component','raw'), ('42866','49053','component','system'), ('42867','49054','component','raw'), ('42868','49055','component','system'), ('42869','49056','component','system'), ('42870','49057','component','raw'), ('42871','49058','component','raw'), ('42872','49059','component','health'), ('42873','49059','component','system'), ('42874','49060','component','system'), ('42875','49061','component','raw'), ('42876','49062','component','raw'), ('42877','49071','component','diskarray'), ('42878','49071','component','storage'), ('42879','49072','component','diskarray'), ('42880','49072','component','storage'), ('42881','49073','component','battery'), ('42882','49073','component','diskarray'), ('42883','49074','component','cpu'), ('42884','49075','component','cpu'), ('42885','49076','component','fan'), ('42886','49077','component','fan'), ('42887','49078','component','memory'), ('42888','49079','component','memory'), ('42889','49080','component','network'), ('42890','49081','component','network'), ('42891','49082','component','physicaldisk'), ('42892','49082','component','storage'), ('42893','49083','component','physicaldisk'), ('42894','49083','component','storage'), ('42895','49084','component','physicaldisk'), ('42896','49084','component','storage'), ('42897','49085','component','physicaldisk'), ('42898','49085','component','storage'), ('42899','49086','component','physicaldisk'), ('42900','49086','component','storage'), ('42901','49087','component','physicaldisk'), ('42902','49087','component','storage'), ('42903','49088','component','psu'), ('42904','49089','component','battery'), ('42905','49090','component','temperature'), ('42906','49091','component','temperature'), ('42907','49092','component','storage'), ('42908','49092','component','virtualdisk'), ('42909','49093','component','storage'), ('42910','49093','component','virtualdisk'), ('42911','49094','component','storage'), ('42912','49094','component','virtualdisk'), ('42913','49095','component','storage'), ('42914','49095','component','virtualdisk'), ('42915','49096','component','storage'), ('42916','49096','component','virtualdisk'), ('42917','49097','component','storage'), ('42918','49097','component','virtualdisk'), ('42919','49098','component','voltage'), ('42920','49099','component','voltage'), ('42921','44247','namespace','{#NAMESPACE}'), ('42922','49100','component','system'), ('42923','49101','component','system'), ('42924','49102','component','system'), ('42925','49103','component','raw'), ('42926','49104','component','system'), ('42927','49105','component','system'), ('42928','49106','component','raw'), ('42929','49107','component','system'), ('42930','49108','component','system'), ('42931','49109','component','system'), ('42932','49110','component','gathering-process'), ('42933','49111','component','internal-process'), ('42934','49112','component','gathering-process'), ('42935','49113','component','internal-process'), ('42936','49114','component','internal-process'), ('42937','49115','component','internal-process'), ('42938','49116','component','internal-process'), ('42939','49117','component','internal-process'), ('42940','49118','component','internal-process'), ('42941','49119','component','gathering-process'), ('42942','49120','component','gathering-process'), ('42943','49121','component','gathering-process'), ('42944','49122','component','gathering-process'), ('42945','49123','component','internal-process'), ('42946','49124','component','gathering-process'), ('42947','49125','component','gathering-process'), ('42948','49126','component','gathering-process'), ('42949','49127','component','gathering-process'), ('42950','49128','component','internal-process'), ('42951','49129','component','internal-process'), ('42952','49130','component','internal-process'), ('42953','49131','component','gathering-process'), ('42954','49132','component','gathering-process'), ('42955','49133','component','internal-process'), ('42956','49134','component','gathering-process'), ('42957','49135','component','gathering-process'), ('42958','49136','component','gathering-process'), ('42959','49137','component','system'), ('42960','49138','component','system'), ('42961','49139','component','system'), ('42962','49140','component','system'), ('42963','49141','component','system'), ('42964','49142','component','system'), ('42965','49143','component','system'), ('42966','49144','component','system'), ('42967','49145','component','system'), ('42968','49146','component','system'), ('42969','49147','component','system'), ('42970','49148','component','nvps'), ('42971','49148','component','system'), ('42972','49149','component','nvps'), ('42973','49149','component','system'), ('42974','49150','component','nvps'), ('42975','49150','component','system'), ('42976','49151','component','nvps'), ('42977','49151','component','system'), ('42978','49152','component','nvps'), ('42979','49152','component','system'), ('42980','49153','component','nvps'), ('42981','49153','component','system'), ('42982','49154','component','nvps'), ('42983','49154','component','system'), ('42984','49155','component','system'), ('42985','49156','component','system'), ('42986','49157','component','gathering-process'), ('42987','49158','component','internal-process'), ('42988','49159','component','gathering-process'), ('42989','49160','component','internal-process'), ('42990','49161','component','internal-process'), ('42991','49162','component','internal-process'), ('42992','49163','component','internal-process'), ('42993','49164','component','internal-process'), ('42994','49165','component','internal-process'), ('42995','49166','component','gathering-process'), ('42996','49167','component','gathering-process'), ('42997','49168','component','gathering-process'), ('42998','49169','component','gathering-process'), ('42999','49170','component','internal-process'), ('43000','49171','component','gathering-process'), ('43001','49172','component','gathering-process'), ('43002','49173','component','gathering-process'), ('43003','49174','component','gathering-process'), ('43004','49175','component','internal-process'), ('43005','49176','component','internal-process'), ('43006','49177','component','internal-process'), ('43007','49178','component','gathering-process'), ('43008','49179','component','gathering-process'), ('43009','49180','component','internal-process'), ('43010','49181','component','gathering-process'), ('43011','49182','component','gathering-process'), ('43012','49183','component','gathering-process'), ('43013','49184','component','system'), ('43014','49185','component','system'), ('43015','49186','component','system'), ('43016','49187','component','system'), ('43017','49188','component','system'), ('43018','49189','component','system'), ('43019','49190','component','system'), ('43020','49191','component','system'), ('43021','49192','component','system'), ('43022','49193','component','system'), ('43023','49194','component','system'), ('43024','49195','component','nvps'), ('43025','49195','component','system'), ('43026','49196','component','nvps'), ('43027','49196','component','system'), ('43028','49197','component','nvps'), ('43029','49197','component','system'), ('43030','49198','component','nvps'), ('43031','49198','component','system'), ('43032','49199','component','nvps'), ('43033','49199','component','system'), ('43034','49200','component','nvps'), ('43035','49200','component','system'), ('43036','49201','component','nvps'), ('43037','49201','component','system'), ('43038','49202','component','system'), ('43039','49203','component','system'), ('43040','49204','component','system'), ('43041','49205','component','raw'), ('43042','49206','component','system'), ('43043','49207','component','system'), ('43044','49208','component','raw'), ('43045','49209','component','system'), ('43046','49210','component','system'), ('43047','49211','component','system'), ('43048','49212','component','system'), ('43049','49213','component','system'), ('43050','49214','component','system'), ('43051','49215','component','gathering-process'), ('43052','49216','component','internal-process'), ('43053','49217','component','internal-process'), ('43054','49218','component','internal-process'), ('43055','49219','component','internal-process'), ('43056','49220','component','gathering-process'), ('43057','49221','component','internal-process'), ('43058','49222','component','internal-process'), ('43059','49223','component','internal-process'), ('43060','49224','component','internal-process'), ('43061','49225','component','internal-process'), ('43062','49226','component','internal-process'), ('43063','49227','component','internal-process'), ('43064','49228','component','internal-process'), ('43065','49229','component','internal-process'), ('43066','49230','component','internal-process'), ('43067','49231','component','gathering-process'), ('43068','49232','component','gathering-process'), ('43069','49233','component','gathering-process'), ('43070','49234','component','gathering-process'), ('43071','49235','component','internal-process'), ('43072','49236','component','gathering-process'), ('43073','49237','component','gathering-process'), ('43074','49238','component','internal-process'), ('43075','49239','component','internal-process'), ('43076','49240','component','gathering-process'), ('43077','49241','component','gathering-process'), ('43078','49242','component','internal-process'), ('43079','49243','component','internal-process'), ('43080','49244','component','internal-process'), ('43081','49245','component','gathering-process'), ('43082','49246','component','internal-process'), ('43083','49247','component','internal-process'), ('43084','49248','component','internal-process'), ('43085','49249','component','internal-process'), ('43086','49250','component','gathering-process'), ('43087','49251','component','gathering-process'), ('43088','49252','component','internal-process'), ('43089','49253','component','internal-process'), ('43090','49254','component','gathering-process'), ('43091','49255','component','internal-process'), ('43092','49256','component','gathering-process'), ('43093','49257','component','gathering-process'), ('43094','49258','component','system'), ('43095','49259','component','system'), ('43096','49260','component','system'), ('43097','49261','component','system'), ('43098','49262','component','system'), ('43099','49263','component','system'), ('43100','49264','component','system'), ('43101','49265','component','system'), ('43102','49266','component','system'), ('43103','49267','component','system'), ('43104','49268','component','nvps'), ('43105','49268','component','system'), ('43106','49269','component','system'), ('43107','49270','component','system'), ('43108','49271','component','system'), ('43109','49272','component','nvps'), ('43110','49272','component','system'), ('43111','49273','component','nvps'), ('43112','49273','component','system'), ('43113','49274','component','nvps'), ('43114','49274','component','system'), ('43115','49275','component','nvps'), ('43116','49275','component','system'), ('43117','49276','component','nvps'), ('43118','49276','component','system'), ('43119','49277','component','nvps'), ('43120','49277','component','system'), ('43121','49278','component','nvps'), ('43122','49278','component','system'), ('43123','49279','component','raw'), ('43124','49280','component','system'), ('43125','49281','component','system'), ('43126','49282','component','system'), ('43127','49283','component','system'), ('43128','49284','component','gathering-process'), ('43129','49285','component','internal-process'), ('43130','49286','component','internal-process'), ('43131','49287','component','internal-process'), ('43132','49288','component','internal-process'), ('43133','49289','component','gathering-process'), ('43134','49290','component','internal-process'), ('43135','49291','component','internal-process'), ('43136','49292','component','internal-process'), ('43137','49293','component','internal-process'), ('43138','49294','component','internal-process'), ('43139','49295','component','internal-process'), ('43140','49296','component','internal-process'), ('43141','49297','component','internal-process'), ('43142','49298','component','internal-process'), ('43143','49299','component','internal-process'), ('43144','49300','component','gathering-process'), ('43145','49301','component','gathering-process'), ('43146','49302','component','gathering-process'), ('43147','49303','component','gathering-process'), ('43148','49304','component','internal-process'), ('43149','49305','component','gathering-process'), ('43150','49306','component','gathering-process'), ('43151','49307','component','internal-process'), ('43152','49308','component','internal-process'), ('43153','49309','component','gathering-process'), ('43154','49310','component','gathering-process'), ('43155','49311','component','internal-process'), ('43156','49312','component','internal-process'), ('43157','49313','component','internal-process'), ('43158','49314','component','gathering-process'), ('43159','49315','component','internal-process'), ('43160','49316','component','internal-process'), ('43161','49317','component','internal-process'), ('43162','49318','component','internal-process'), ('43163','49319','component','gathering-process'), ('43164','49320','component','gathering-process'), ('43165','49321','component','internal-process'), ('43166','49322','component','internal-process'), ('43167','49323','component','gathering-process'), ('43168','49324','component','internal-process'), ('43169','49325','component','gathering-process'), ('43170','49326','component','gathering-process'), ('43171','49327','component','system'), ('43172','49328','component','system'), ('43173','49329','component','system'), ('43174','49330','component','system'), ('43175','49331','component','system'), ('43176','49332','component','system'), ('43177','49333','component','system'), ('43178','49334','component','system'), ('43179','49335','component','system'), ('43180','49336','component','system'), ('43181','49337','component','nvps'), ('43182','49337','component','system'), ('43183','49338','component','system'), ('43184','49339','component','system'), ('43185','49340','component','system'), ('43186','49341','component','nvps'), ('43187','49341','component','system'), ('43188','49342','component','nvps'), ('43189','49342','component','system'), ('43190','49343','component','nvps'), ('43191','49343','component','system'), ('43192','49344','component','nvps'), ('43193','49344','component','system'), ('43194','49345','component','nvps'), ('43195','49345','component','system'), ('43196','49346','component','nvps'), ('43197','49346','component','system'), ('43198','49347','component','nvps'), ('43199','49347','component','system'), ('43200','49348','component','raw'), ('43201','49353','component','cluster'), ('43202','49353','component','raw'), ('43203','49353','node-id','{#NODE.ID}'), ('43204','49353','node-name','{#NODE.NAME}'), ('43205','49354','component','cluster'), ('43206','49354','component','raw'), ('43207','49354','node-id','{#NODE.ID}'), ('43208','49354','node-name','{#NODE.NAME}'), ('43209','49355','component','cluster'), ('43210','49355','node-id','{#NODE.ID}'), ('43211','49355','node-name','{#NODE.NAME}'), ('43212','49356','component','cluster'), ('43213','49356','node-id','{#NODE.ID}'), ('43214','49356','node-name','{#NODE.NAME}'), ('43215','49357','component','cluster'), ('43216','49357','node-id','{#NODE.ID}'), ('43217','49357','node-name','{#NODE.NAME}'), ('43218','49358','component','cluster'), ('43219','49358','node-id','{#NODE.ID}'), ('43220','49358','node-name','{#NODE.NAME}'), ('43221','49359','component','proxy'), ('43222','49359','component','raw'), ('43223','49359','proxy-name','{#PROXY.NAME}'), ('43224','49360','component','cluster'), ('43225','49360','node-id','{#NODE.ID}'), ('43226','49360','node-name','{#NODE.NAME}'), ('43227','49361','component','cluster'), ('43228','49361','node-id','{#NODE.ID}'), ('43229','49361','node-name','{#NODE.NAME}'), ('43230','49362','component','cluster'), ('43231','49362','node-id','{#NODE.ID}'), ('43232','49362','node-name','{#NODE.NAME}'), ('43233','49363','component','cluster'), ('43234','49363','node-id','{#NODE.ID}'), ('43235','49363','node-name','{#NODE.NAME}'), ('43236','49364','component','proxy'), ('43237','49364','component','raw'), ('43238','49364','proxy-name','{#PROXY.NAME}'), ('43239','49365','component','proxy'), ('43240','49365','proxy-name','{#PROXY.NAME}'), ('43241','49366','component','proxy'), ('43242','49366','proxy-name','{#PROXY.NAME}'), ('43243','49367','component','proxy'), ('43244','49367','proxy-name','{#PROXY.NAME}'), ('43245','49368','component','proxy'), ('43246','49368','proxy-name','{#PROXY.NAME}'), ('43247','49369','component','proxy'), ('43248','49369','proxy-name','{#PROXY.NAME}'), ('43249','49370','component','proxy'), ('43250','49370','proxy-name','{#PROXY.NAME}'), ('43251','49371','component','proxy'), ('43252','49371','proxy-name','{#PROXY.NAME}'), ('43253','49372','component','proxy'), ('43254','49372','proxy-name','{#PROXY.NAME}'), ('43255','49373','component','proxy'), ('43256','49373','proxy-name','{#PROXY.NAME}'), ('43257','49374','component','proxy'), ('43258','49374','proxy-name','{#PROXY.NAME}'), ('43259','49375','component','proxy'), ('43260','49375','proxy-name','{#PROXY.NAME}'), ('43261','49376','component','proxy'), ('43262','49376','proxy-name','{#PROXY.NAME}'), ('43263','49377','component','proxy'), ('43264','49377','proxy-name','{#PROXY.NAME}'), ('43265','49378','component','proxy'), ('43266','49378','proxy-name','{#PROXY.NAME}'), ('43267','49379','component','proxy'), ('43268','49379','proxy-name','{#PROXY.NAME}'), ('43269','49380','component','proxy'), ('43270','49380','proxy-name','{#PROXY.NAME}'), ('43271','49381','component','proxy'), ('43272','49381','proxy-name','{#PROXY.NAME}'), ('43273','49382','component','proxy'), ('43274','49382','proxy-name','{#PROXY.NAME}'), ('43275','49383','component','proxy'), ('43276','49383','proxy-name','{#PROXY.NAME}'), ('43277','49384','component','proxy'), ('43278','49384','proxy-name','{#PROXY.NAME}'), ('43279','49385','component','proxy'), ('43280','49385','proxy-name','{#PROXY.NAME}'), ('43281','49386','component','proxy'), ('43282','49386','proxy-name','{#PROXY.NAME}'), ('43283','49387','component','raw'), ('43284','49388','component','raw'), ('43285','49389','component','raw'), ('43286','49390','component','health'), ('43287','49391','component','health'), ('43288','49392','component','network'), ('43289','49393','component','network'), ('43290','49394','component','cpu'), ('43291','49395','component','raw'), ('43292','49396','component','operations'), ('43293','49397','component','network'), ('43294','49398','component','dtu'), ('43295','49399','component','dtu'), ('43296','49400','component','dtu'), ('43297','49401','component','network'), ('43298','49402','component','operations'), ('43299','49403','component','cpu'), ('43300','49403','component','server'), ('43301','49404','component','memory'), ('43302','49404','component','server'), ('43303','49405','component','sessions'), ('43304','49406','component','sessions'), ('43305','49407','component','storage'), ('43306','49408','component','storage'), ('43307','49409','component','storage'), ('43308','49410','component','storage'), ('43309','49411','component','storage'), ('43310','49412','component','storage'), ('43311','49413','component','storage'), ('43312','49414','component','storage'), ('43313','49415','component','workers'), ('43314','49416','component','cpu'), ('43315','49417','component','cpu'), ('43316','49420','component','temperature'), ('43317','49421','component','temperature'), ('43318','49424','component','temperature'), ('43319','49425','component','temperature'), ('43320','49428','component','temperature'), ('43321','49429','component','temperature'), ('43322','49432','component','temperature'), ('43323','49433','component','temperature'), ('43324','49436','component','temperature'), ('43325','49437','component','temperature'), ('43326','49440','component','temperature'), ('43327','49441','component','temperature'), ('43328','49444','component','temperature'), ('43329','49445','component','temperature'), ('43330','49448','component','temperature'), ('43331','49449','component','temperature'), ('43332','49452','component','temperature'), ('43333','49453','component','temperature'), ('43334','49456','component','temperature'), ('43335','49457','component','temperature'), ('43336','49460','component','temperature'), ('43337','49461','component','temperature'), ('43338','49464','component','temperature'), ('43339','49465','component','temperature'), ('43340','49468','component','temperature'), ('43341','49469','component','temperature'), ('43342','49472','component','temperature'), ('43343','49473','component','temperature'), ('43344','49476','component','temperature'), ('43345','49477','component','temperature'), ('43346','49480','component','temperature'), ('43347','49481','component','temperature'), ('43348','49484','component','temperature'), ('43349','49485','component','temperature'), ('43350','49488','component','temperature'), ('43351','49489','component','temperature'), ('43352','49492','component','temperature'), ('43353','49493','component','temperature'), ('43354','49496','component','temperature'), ('43355','49497','component','temperature'), ('43356','49500','component','temperature'), ('43357','49501','component','temperature'), ('43358','49504','component','temperature'), ('43359','49505','component','temperature'), ('43360','49508','component','temperature'), ('43361','49509','component','temperature'), ('43362','49512','component','temperature'), ('43363','49513','component','temperature'), ('43364','49516','component','temperature'), ('43365','49517','component','temperature'), ('43366','49520','component','temperature'), ('43367','49521','component','temperature'), ('43368','49524','component','temperature'), ('43369','49525','component','temperature'), ('43370','49528','component','temperature'), ('43371','49529','component','temperature'), ('43372','49532','component','temperature'), ('43373','49533','component','temperature'), ('43374','49536','component','temperature'), ('43375','49537','component','temperature'), ('43376','49540','component','temperature'), ('43377','49541','component','temperature'), ('43378','49544','component','temperature'), ('43379','49545','component','temperature'), ('43380','49548','component','temperature'), ('43381','49549','component','temperature'), ('43382','49552','component','temperature'), ('43383','49553','component','temperature'), ('43384','49556','component','temperature'), ('43385','49557','component','temperature'), ('43386','49560','component','temperature'), ('43387','49561','component','temperature'), ('43388','49564','component','temperature'), ('43389','49565','component','temperature'), ('43390','49568','component','temperature'), ('43391','49569','component','temperature'), ('43392','49572','component','temperature'), ('43393','49573','component','temperature'), ('43394','49576','component','temperature'), ('43395','49577','component','temperature'), ('43396','49580','component','temperature'), ('43397','49581','component','temperature'), ('43398','49584','component','temperature'), ('43399','49585','component','temperature'), ('43400','49588','component','temperature'), ('43401','49589','component','temperature'), ('43402','49592','component','temperature'), ('43403','49593','component','temperature'), ('43404','49596','component','temperature'), ('43405','49597','component','temperature'), ('43406','49600','component','temperature'), ('43407','49601','component','temperature'), ('43408','49604','component','temperature'), ('43409','49605','component','temperature'), ('43410','49608','component','temperature'), ('43411','49609','component','temperature'), ('43412','49612','component','temperature'), ('43413','49613','component','temperature'), ('43414','49616','component','temperature'), ('43415','49617','component','temperature'), ('43416','49620','component','temperature'), ('43417','49621','component','temperature'), ('43418','49624','component','temperature'), ('43419','49625','component','temperature'), ('43420','49628','component','temperature'), ('43421','49629','component','temperature'), ('43422','49632','component','temperature'), ('43423','49633','component','temperature'), ('43424','49636','component','temperature'), ('43425','49637','component','temperature'), ('43426','49638','component','raw'), ('43427','49639','component','raw'), ('43428','49640','component','raw'), ('43429','49641','component','error'), ('43430','49642','component','raw'), ('43431','49643','component','raw'), ('43432','49644','component','raw'), ('43433','49645','component','raw'), ('43434','49646','component','raw'), ('43435','49647','component','raw'), ('43436','49648','component','raw'), ('43437','49649','component','raw'), ('43438','49650','component','error'), ('43439','49651','component','raw'), ('43440','49652','component','raw'), ('43441','49653','component','raw'), ('43442','49654','component','raw'), ('43443','49655','component','raw'), ('43444','49656','component','raw'), ('43445','49657','component','raw'), ('43446','49658','component','array'), ('43447','49659','component','array'), ('43448','49660','component','error'), ('43449','49661','component','array'), ('43450','49662','component','array'), ('43451','49663','component','array'), ('43452','49664','component','array'), ('43453','49665','component','array'), ('43454','49666','component','array'), ('43455','49667','component','array'), ('43456','49668','component','array'), ('43457','49669','component','array'), ('43458','49670','component','array'), ('43459','49671','component','array'), ('43460','49672','component','array'), ('43461','49673','component','array'), ('43462','49674','component','array'), ('43463','49675','component','array'), ('43464','49676','component','array'), ('43465','49677','component','array'), ('43466','49678','component','error'), ('43467','49679','component','error'), ('43468','49680','component','error'), ('43469','49681','component','error'), ('43470','49682','component','array'), ('43471','49683','component','error'), ('43472','49684','component','array'), ('43473','49685','component','error'), ('43474','49686','component','alerts'), ('43475','49687','component','error'), ('43476','49688','component','alerts'), ('43477','49689','component','array'), ('43478','49690','component','array'), ('43479','49691','component','error'), ('43480','49692','component','array'), ('43481','49693','component','array'), ('43482','49694','component','array'), ('43483','49695','component','array'), ('43484','49696','component','array'), ('43485','49697','component','array'), ('43486','49698','component','array'), ('43487','49699','component','array'), ('43488','49700','component','array'), ('43489','49701','component','array'), ('43490','49702','component','array'), ('43491','49703','component','array'), ('43492','49704','component','array'), ('43493','49705','component','array'), ('43494','49706','component','array'), ('43495','49707','component','array'), ('43496','49708','component','array'), ('43497','49709','component','array'), ('43498','49710','component','error'), ('43499','49711','component','error'), ('43500','49712','component','error'), ('43501','49713','component','error'), ('43502','49714','component','support'), ('43503','49715','component','error'), ('43504','49716','component','support'), ('43505','49717','component','error'), ('43506','49718','component','error'), ('43507','49739','component','raw'), ('43508','49739','type','{#TYPE}'), ('43509','49740','component','raw'), ('43510','49740','controller','{#NAME}'), ('43511','49740','type','{#TYPE}'), ('43512','49741','component','raw'), ('43513','49741','drive','{#TYPE}'), ('43514','49741','protocol','{#PROTOCOL}'), ('43515','49742','component','raw'), ('43516','49742','controller','{#CTRL}'), ('43517','49743','component','raw'), ('43518','49743','host','{#NAME}'), ('43519','49743','host_group','{#GROUP}'), ('43520','49744','component','raw'), ('43521','49744','interface','{#IFNAME}'), ('43522','49745','component','raw'), ('43523','49745','pod','{#NAME}'), ('43524','49746','component','raw'), ('43525','49747','component','raw'), ('43526','49748','component','raw'), ('43527','49749','component','raw'), ('43528','49749','type','{#TYPE}'), ('43529','49750','component','raw'), ('43530','49750','controller','{#NAME}'), ('43531','49750','type','{#TYPE}'), ('43532','49751','component','raw'), ('43533','49751','drive','{#TYPE}'), ('43534','49751','protocol','{#PROTOCOL}'), ('43535','49752','component','raw'), ('43536','49752','controller','{#CTRL}'), ('43537','49753','component','raw'), ('43538','49754','component','raw'), ('43539','49754','interface','{#IFNAME}'), ('43540','49754','type','{#IFTYPE}'), ('43541','49755','component','raw'), ('43542','49755','pod','{#NAME}'), ('43543','49756','component','raw'), ('43544','49757','component','raw'), ('43545','49758','component','raw'), ('43546','49759','component','certificate'), ('43547','49759','type','{#TYPE}'), ('43548','49760','component','certificate'), ('43549','49760','type','{#TYPE}'), ('43550','49761','component','certificate'), ('43551','49761','type','{#TYPE}'), ('43552','49762','component','certificate'), ('43553','49762','type','{#TYPE}'), ('43554','49763','component','certificate'), ('43555','49763','type','{#TYPE}'), ('43556','49764','component','controller'), ('43557','49764','controller','{#NAME}'), ('43558','49764','type','{#TYPE}'), ('43559','49765','component','controller'), ('43560','49765','controller','{#NAME}'), ('43561','49765','type','{#TYPE}'), ('43562','49766','component','controller'), ('43563','49766','controller','{#NAME}'), ('43564','49766','type','{#TYPE}'), ('43565','49767','component','controller'), ('43566','49767','controller','{#NAME}'), ('43567','49767','type','{#TYPE}'), ('43568','49768','component','controller'), ('43569','49768','controller','{#NAME}'), ('43570','49768','type','{#TYPE}'), ('43571','49769','component','drive'), ('43572','49769','drive','{#TYPE}'), ('43573','49769','protocol','{#PROTOCOL}'), ('43574','49770','component','drive'), ('43575','49770','drive','{#TYPE}'), ('43576','49770','protocol','{#PROTOCOL}'), ('43577','49771','component','drive'), ('43578','49771','drive','{#TYPE}'), ('43579','49771','protocol','{#PROTOCOL}'), ('43580','49772','component','fan'), ('43581','49772','controller','{#CTRL}'), ('43582','49773','component','host'), ('43583','49773','host','{#NAME}'), ('43584','49773','host_group','{#GROUP}'), ('43585','49774','component','host'), ('43586','49774','host','{#NAME}'), ('43587','49774','host_group','{#GROUP}'), ('43588','49775','component','host'), ('43589','49775','host','{#NAME}'), ('43590','49775','host_group','{#GROUP}'), ('43591','49776','component','host'), ('43592','49776','host','{#NAME}'), ('43593','49776','host_group','{#GROUP}'), ('43594','49777','component','host'), ('43595','49777','host','{#NAME}'), ('43596','49777','host_group','{#GROUP}'), ('43597','49778','component','host'), ('43598','49778','host','{#NAME}'), ('43599','49778','host_group','{#GROUP}'), ('43600','49779','component','host'), ('43601','49779','host','{#NAME}'), ('43602','49779','host_group','{#GROUP}'), ('43603','49780','component','host'), ('43604','49780','host','{#NAME}'), ('43605','49780','host_group','{#GROUP}'), ('43606','49781','component','host'), ('43607','49781','host','{#NAME}'), ('43608','49781','host_group','{#GROUP}'), ('43609','49782','component','host'), ('43610','49782','host','{#NAME}'), ('43611','49782','host_group','{#GROUP}'), ('43612','49783','component','host'), ('43613','49783','host','{#NAME}'), ('43614','49783','host_group','{#GROUP}'), ('43615','49784','component','host'), ('43616','49784','host','{#NAME}'), ('43617','49784','host_group','{#GROUP}'), ('43618','49785','component','interface'), ('43619','49785','interface','{#IFNAME}'), ('43620','49786','component','interface'), ('43621','49786','interface','{#IFNAME}'), ('43622','49787','component','interface'), ('43623','49787','interface','{#IFNAME}'), ('43624','49788','component','interface'), ('43625','49788','interface','{#IFNAME}'), ('43626','49789','component','pod'), ('43627','49789','pod','{#NAME}'), ('43628','49790','component','pod'), ('43629','49790','pod','{#NAME}'), ('43630','49791','component','power'), ('43631','49792','component','power'), ('43632','49793','component','power'), ('43633','49794','component','power'), ('43634','49795','component','sensor'), ('43635','49796','component','sensor'), ('43636','49797','component','volume'), ('43637','49798','component','volume'), ('43638','49799','component','volume'), ('43639','49800','component','volume'), ('43640','49801','component','volume'), ('43641','49802','component','volume'), ('43642','49803','component','volume'), ('43643','49804','component','volume'), ('43644','49805','component','volume'), ('43645','49806','component','volume'), ('43646','49807','component','volume'), ('43647','49808','component','volume'), ('43648','49809','component','volume'), ('43649','49810','component','certificate'), ('43650','49810','type','{#TYPE}'), ('43651','49811','component','certificate'), ('43652','49811','type','{#TYPE}'), ('43653','49812','component','certificate'), ('43654','49812','type','{#TYPE}'), ('43655','49813','component','certificate'), ('43656','49813','type','{#TYPE}'), ('43657','49814','component','certificate'), ('43658','49814','type','{#TYPE}'), ('43659','49815','component','controller'), ('43660','49815','controller','{#NAME}'), ('43661','49815','type','{#TYPE}'), ('43662','49816','component','controller'), ('43663','49816','controller','{#NAME}'), ('43664','49816','type','{#TYPE}'), ('43665','49817','component','controller'), ('43666','49817','controller','{#NAME}'), ('43667','49817','type','{#TYPE}'), ('43668','49818','component','controller'), ('43669','49818','controller','{#NAME}'), ('43670','49818','type','{#TYPE}'), ('43671','49819','component','controller'), ('43672','49819','controller','{#NAME}'), ('43673','49819','type','{#TYPE}'), ('43674','49820','component','drive'), ('43675','49820','drive','{#TYPE}'), ('43676','49820','protocol','{#PROTOCOL}'), ('43677','49821','component','drive'), ('43678','49821','drive','{#TYPE}'), ('43679','49821','protocol','{#PROTOCOL}'), ('43680','49822','component','drive'), ('43681','49822','drive','{#TYPE}'), ('43682','49822','protocol','{#PROTOCOL}'), ('43683','49823','component','fan'), ('43684','49823','controller','{#CTRL}'), ('43685','49824','component','host'), ('43686','49824','host','{#NAME}'), ('43687','49824','host_group','{#GROUP}'), ('43688','49825','component','host'), ('43689','49825','host','{#NAME}'), ('43690','49825','host_group','{#GROUP}'), ('43691','49826','component','host'), ('43692','49826','host','{#NAME}'), ('43693','49826','host_group','{#GROUP}'), ('43694','49827','component','host'), ('43695','49827','host','{#NAME}'), ('43696','49827','host_group','{#GROUP}'), ('43697','49828','component','host'), ('43698','49828','host','{#NAME}'), ('43699','49828','host_group','{#GROUP}'), ('43700','49829','component','host'), ('43701','49829','host','{#NAME}'), ('43702','49829','host_group','{#GROUP}'), ('43703','49830','component','host'), ('43704','49830','host','{#NAME}'), ('43705','49830','host_group','{#GROUP}'), ('43706','49831','component','host'), ('43707','49831','host','{#NAME}'), ('43708','49831','host_group','{#GROUP}'), ('43709','49832','component','host'), ('43710','49832','host','{#NAME}'), ('43711','49832','host_group','{#GROUP}'), ('43712','49833','component','host'), ('43713','49833','host','{#NAME}'), ('43714','49833','host_group','{#GROUP}'), ('43715','49834','component','host'), ('43716','49834','host','{#NAME}'), ('43717','49834','host_group','{#GROUP}'), ('43718','49835','component','host'), ('43719','49835','host','{#NAME}'), ('43720','49835','host_group','{#GROUP}'), ('43721','49836','component','host'), ('43722','49836','host','{#NAME}'), ('43723','49836','host_group','{#GROUP}'), ('43724','49837','component','interface'), ('43725','49837','interface','{#IFNAME}'), ('43726','49837','type','{#IFTYPE}'), ('43727','49838','component','interface'), ('43728','49838','interface','{#IFNAME}'), ('43729','49838','type','{#IFTYPE}'), ('43730','49839','component','interface'), ('43731','49839','interface','{#IFNAME}'), ('43732','49839','type','{#IFTYPE}'), ('43733','49840','component','interface'), ('43734','49840','interface','{#IFNAME}'), ('43735','49840','type','{#IFTYPE}'), ('43736','49841','component','pod'), ('43737','49841','pod','{#NAME}'), ('43738','49842','component','pod'), ('43739','49842','pod','{#NAME}'), ('43740','49843','component','pod'), ('43741','49843','pod','{#NAME}'), ('43742','49844','component','power'), ('43743','49845','component','power'), ('43744','49846','component','power'), ('43745','49847','component','power'), ('43746','49848','component','sensor'), ('43747','49849','component','sensor'), ('43748','49850','component','volume'), ('43749','49851','component','volume'), ('43750','49852','component','volume'), ('43751','49853','component','volume'), ('43752','49854','component','volume'), ('43753','49855','component','volume'), ('43754','49856','component','volume'), ('43755','49857','component','volume'), ('43756','49858','component','volume'), ('43757','49859','component','volume'), ('43758','49860','component','volume'), ('43759','49861','component','volume'), ('43760','49862','component','volume'), ('43761','49863','component','volume'), ('43762','49864','component','volume'), ('43763','49865','component','raw'), ('43764','49866','component','health'), ('43765','49867','component','health'), ('43766','49868','component','error'), ('43767','49869','component','backup'), ('43768','49870','component','backup'), ('43769','49871','component','backup'), ('43770','49872','component','backup'), ('43771','49873','component','backup'), ('43772','49874','component','backup'), ('43773','49875','component','backup'), ('43774','49876','component','backup'), ('43775','49877','component','backup'), ('43776','49878','component','backup'), ('43777','49881','component','health'), ('43778','49881','resource','{#JOB.FRIENDLY.NAME}'), ('43779','49882','component','application'), ('43780','49883','component','raw'), ('43781','49886','component','raw'), ('43782','49887','component','raw'), ('43783','49888','component','bgwriter'), ('43784','49889','component','bgwriter'), ('43785','49890','component','bgwriter'), ('43786','49891','component','bgwriter'), ('43787','49892','component','bgwriter'), ('43788','49893','component','bgwriter'), ('43789','49894','component','bgwriter'), ('43790','49895','component','bgwriter'), ('43791','49896','component','bgwriter'), ('43792','49897','component','bgwriter'), ('43793','49898','component','bgwriter'), ('43794','49899','component','bgwriter'), ('43795','49900','component','bgwriter'), ('43796','49901','component','bgwriter'), ('43797','49902','component','bgwriter'), ('43798','49903','component','bgwriter'), ('43799','49904','component','bgwriter'), ('43800','49905','component','bgwriter'), ('43801','49906','component','raw'), ('43802','49907','component','raw'), ('43803','49908','component','system'), ('43804','49909','component','system'), ('43805','49910','component','system'), ('43806','49911','component','system'), ('43807','49912','component','system'), ('43808','49913','component','raw'), ('43809','49914','component','raw'), ('43810','49915','component','raw'), ('43811','49916','component','raw'), ('43812','49917','component','raw'), ('43813','49918','component','raw'), ('43814','49919','component','raw'), ('43815','49920','component','raw'), ('43816','49921','component','raw'), ('43817','49922','component','system'), ('43818','49923','component','cpu'), ('43819','49923','component','raw'), ('43820','49924','component','raw'), ('43821','49925','component','system'), ('43822','49926','component','system'), ('43823','49927','component','system'), ('43824','49928','component','system'), ('43825','49929','component','system'), ('43826','49930','component','raw'), ('43827','49930','component','storage'), ('43828','49931','component','memory'), ('43829','49931','component','raw'), ('43830','49931','component','zfs'), ('43831','49932','component','raw'), ('43832','49932','component','storage'), ('43833','49933','component','raw'), ('43834','49933','component','storage'), ('43835','49934','component','log'), ('43836','49934','component','raw'), ('43837','49934','component','zfs'), ('43838','49935','component','raw'), ('43839','49935','component','storage'), ('43840','49936','component','raw'), ('43841','49936','component','storage'), ('43842','49937','component','network'), ('43843','49937','description','{#IFALIAS}'), ('43844','49937','interface','{#IFNAME}'), ('43845','49938','component','network'), ('43846','49938','description','{#IFALIAS}'), ('43847','49938','interface','{#IFNAME}'), ('43848','49939','component','network'), ('43849','49939','description','{#IFALIAS}'), ('43850','49939','interface','{#IFNAME}'), ('43851','49940','component','network'), ('43852','49940','description','{#IFALIAS}'), ('43853','49940','interface','{#IFNAME}'), ('43854','49941','component','network'), ('43855','49941','description','{#IFALIAS}'), ('43856','49941','interface','{#IFNAME}'), ('43857','49942','component','network'), ('43858','49942','description','{#IFALIAS}'), ('43859','49942','interface','{#IFNAME}'), ('43860','49943','component','network'), ('43861','49943','description','{#IFALIAS}'), ('43862','49943','interface','{#IFNAME}'), ('43863','49944','component','network'), ('43864','49944','description','{#IFALIAS}'), ('43865','49944','interface','{#IFNAME}'), ('43866','49945','component','network'), ('43867','49945','description','{#IFALIAS}'), ('43868','49945','interface','{#IFNAME}'), ('43869','49946','component','system'), ('43870','46768','component','cpu'), ('43871','49947','component','cpu'), ('43872','49947','component','raw'), ('43873','49948','component','raw'), ('43874','49949','component','raw'), ('43875','49950','component','raw'), ('43876','49951','component','cpu'), ('43877','49952','component','error'), ('43878','49953','component','disk'), ('43879','49954','component','disk'), ('43880','49955','component','disk'), ('43881','49956','component','system'), ('43882','49957','component','memory'), ('43883','49958','component','system'), ('43884','49959','component','error'), ('43885','49960','component','system'), ('43886','49961','component','system'), ('43887','49962','component','storage'), ('43888','49963','component','storage'), ('43889','49964','component','storage'), ('43890','49965','component','system'), ('43891','49979','asp','{#ID}'), ('43892','49979','component','asp'), ('43893','49980','component','connection'), ('43894','49980','connection','{#NAME}'), ('43895','49981','component','cpu'), ('43896','49981','cpu','{#METRIC}'), ('43897','49982','component','process'), ('43898','49982','process','{#ID}'), ('43899','49983','component','process'), ('43900','49983','process','{#ID}'), ('43901','49984','component','process'), ('43902','49984','process','{#ID}'), ('43903','49985','component','fan'), ('43904','49985','fan','{#NAME}'), ('43905','49986','component','network'), ('43906','49986','component','raw'), ('43907','49986','interface','{#NAME}'), ('43908','49987','component','memory'), ('43909','49987','component','raw'), ('43910','49987','memory','{#METRIC}'), ('43911','49988','component','memory'), ('43912','49988','component','raw'), ('43913','49988','memory','{#METRIC}'), ('43914','49989','component','power'), ('43915','49989','psu','{#SENSOR}'), ('43916','49990','component','snort'), ('43917','49990','snort','{#NAME}'), ('43918','49991','component','temperature'), ('43919','49991','sensor','{#SENSOR}'), ('43920','49992','component','network'), ('43921','49992','interface','{#NAME}'), ('43922','49993','component','storage'), ('43923','49993','filesystem','{#FSNAME}'), ('43924','49994','component','network'), ('43925','49994','interface','{#NAME}'), ('43926','49995','component','network'), ('43927','49995','interface','{#NAME}'), ('43928','49996','component','network'), ('43929','49996','interface','{#NAME}'), ('43930','49997','component','network'), ('43931','49997','interface','{#NAME}'), ('43932','49998','component','network'), ('43933','49998','interface','{#NAME}'), ('43934','49999','component','network'), ('43935','49999','interface','{#NAME}'), ('43936','50000','component','network'), ('43937','50000','interface','{#NAME}'), ('43938','50001','component','network'), ('43939','50001','interface','{#NAME}'), ('43940','50002','component','raw'), ('43941','50003','component','system'), ('43942','50004','component','system'), ('43943','50005','component','system'), ('43944','50006','component','system'), ('43945','50007','component','network'), ('43946','50008','component','system'), ('43947','50009','component','system'), ('43948','50010','component','system'), ('43949','50011','component','system'), ('43950','50012','component','error'), ('43951','45483','component','cpu'), ('43952','50013','component','cpu'), ('43953','50013','component','raw'), ('43954','50014','component','health'), ('43955','50014','diskname','{#NAME}'), ('43956','50014','disktype','{#DISKTYPE}'), ('43957','50015','component','health'), ('43958','50015','diskname','{#NAME}'), ('43959','50015','disktype','{#DISKTYPE}'), ('43960','50016','component','raw'), ('43961','50017','component','raw'), ('43962','50018','component','backup_vault'), ('43963','50019','component','backup_vault'), ('43964','50020','component','backup_vault'), ('43965','50021','component','backup_vault'), ('43966','50022','component','backup_vault'), ('43967','50023','component','backup_vault'), ('43968','50024','component','backup_vault'), ('43969','50025','component','backup_vault'), ('43970','50026','component','backup_vault'), ('43971','50027','component','backup_vault'), ('43972','50028','component','backup_vault'), ('43973','50029','component','backup_vault'), ('43974','50030','component','backup_vault'), ('43975','50031','component','backup_vault'), ('43976','50032','component','backup_vault'), ('43977','50033','component','backup_vault'), ('43978','50034','component','backup_vault'), ('43979','50035','component','backup_vault'), ('43980','50038','component','backup_vault'), ('43981','50038','job_type','{#AWS.BACKUP_JOB.TYPE}'), ('43982','50038','resource_name','{#AWS.BACKUP_JOB.RESOURCE_NAME}'), ('43983','50038','resource_type','{#AWS.BACKUP_JOB.RESOURCE_TYPE}'), ('43984','50039','component','raw'), ('43985','50040','component','raw'), ('43986','50041','component','raw'), ('43987','50042','component','raw'), ('43988','50043','component','raw'), ('43989','50044','component','raw'), ('43990','50045','component','raw'), ('43991','50046','component','health'), ('43992','50046','component','network'), ('43993','50047','component','health'), ('43994','50047','component','network'), ('43995','50048','component','health'), ('43996','50048','component','network'), ('43997','50049','component','raw'), ('43998','50050','component','network'), ('43999','50051','component','system'), ('44000','50052','component','system'), ('44001','50053','component','system'), ('44002','50054','component','system'), ('44003','50055','component','system'), ('44004','50056','component','system'), ('44005','50057','component','system'), ('44006','50058','component','health'), ('44007','50058','component','network'), ('44008','50067','component','fan'), ('44009','50067','fan','{#SNMPVALUE}'), ('44010','50068','component','fan'), ('44011','50068','fan','{#SNMPVALUE}'), ('44012','50069','area','{#SNMPVALUE}'), ('44013','50069','component','network'), ('44014','50070','area','{#SNMPVALUE}'), ('44015','50070','component','network'), ('44016','50071','area','{#SNMPVALUE}'), ('44017','50071','component','network'), ('44018','50072','area','{#SNMPVALUE}'), ('44019','50072','component','network'), ('44020','50073','area','{#SNMPVALUE}'), ('44021','50073','component','network'), ('44022','50074','area','{#SNMPVALUE}'), ('44023','50074','component','network'), ('44024','50075','area','{#SNMPVALUE}'), ('44025','50075','component','network'), ('44026','50076','component','network'), ('44027','50076','ospf-interface','{#SNMPVALUE}'), ('44028','50077','component','network'), ('44029','50077','ospf-interface','{#SNMPVALUE}'), ('44030','50078','component','network'), ('44031','50078','ospf-interface','{#SNMPVALUE}'), ('44032','50079','component','network'), ('44033','50079','ospf-interface','{#SNMPVALUE}'), ('44034','50080','component','network'), ('44035','50080','ospf-interface','{#SNMPVALUE}'), ('44036','50081','component','network'), ('44037','50081','ospf-interface','{#SNMPVALUE}'), ('44038','50082','component','network'), ('44039','50082','ospf-interface','{#SNMPVALUE}'), ('44040','50083','component','network'), ('44041','50083','neighbor','{#SNMPVALUE}'), ('44042','50084','component','network'), ('44043','50084','neighbor','{#SNMPVALUE}'), ('44044','50085','component','network'), ('44045','50085','neighbor','{#SNMPVALUE}'), ('44046','50086','component','network'), ('44047','50086','neighbor','{#SNMPVALUE}'), ('44048','50087','component','network'), ('44049','50087','neighbor','{#SNMPVALUE}'), ('44050','50088','component','network'), ('44051','50088','neighbor','{#SNMPVALUE}'), ('44052','50089','component','network'), ('44053','50089','neighbor','{#SNMPVALUE}'), ('44054','50090','component','psu'), ('44055','50090','psu','{#SNMPVALUE}'), ('44056','50091','component','psu'), ('44057','50091','psu','{#SNMPVALUE}'), ('44058','50092','component','cpu'), ('44059','50093','component','cpu'), ('44060','50094','component','cpu'), ('44061','50095','component','memory'), ('44062','50096','component','memory'), ('44063','50097','component','memory'), ('44064','50098','component','memory'), ('44065','50099','component','memory'), ('44066','50100','component','memory'), ('44067','50101','component','sensor'), ('44068','50101','sensor','{#SNMPVALUE}'), ('44069','50102','component','sensor'), ('44070','50102','sensor','{#SNMPVALUE}'), ('44071','50103','component','network'), ('44072','50103','description','{#IFALIAS}'), ('44073','50103','interface','{#IFNAME}'), ('44074','50104','component','network'), ('44075','50104','description','{#IFALIAS}'), ('44076','50104','interface','{#IFNAME}'), ('44077','50105','component','network'), ('44078','50105','description','{#IFALIAS}'), ('44079','50105','interface','{#IFNAME}'), ('44080','50106','component','network'), ('44081','50106','description','{#IFALIAS}'), ('44082','50106','interface','{#IFNAME}'), ('44083','50107','component','network'), ('44084','50107','description','{#IFALIAS}'), ('44085','50107','interface','{#IFNAME}'), ('44086','50108','component','network'), ('44087','50108','description','{#IFALIAS}'), ('44088','50108','interface','{#IFNAME}'), ('44089','50109','component','network'), ('44090','50109','description','{#IFALIAS}'), ('44091','50109','interface','{#IFNAME}'), ('44092','50110','component','network'), ('44093','50110','description','{#IFALIAS}'), ('44094','50110','interface','{#IFNAME}'), ('44095','50111','component','network'), ('44096','50111','description','{#IFALIAS}'), ('44097','50111','interface','{#IFNAME}'), ('44098','50112','component','cpu'), ('44099','50113','component','memory'), ('44100','50114','component','memory'), ('44101','50115','component','memory'), ('44102','50116','component','health'), ('44103','50116','component','network'), ('44104','50117','component','health'), ('44105','50117','component','network'), ('44106','50118','component','health'), ('44107','50118','component','network'), ('44108','50119','component','raw'), ('44109','50120','component','network'), ('44110','50121','component','system'), ('44111','50122','component','system'), ('44112','50123','component','raw'), ('44113','50124','component','system'), ('44114','50125','component','system'), ('44115','50126','component','system'), ('44116','50127','component','system'), ('44117','50128','component','system'), ('44118','50129','component','system'), ('44119','50130','component','system'), ('44120','50131','component','system'), ('44121','50132','component','raw'), ('44122','50133','component','raw'), ('44123','50134','component','health'), ('44124','50134','component','network'), ('44125','50139','component','fan'), ('44126','50140','component','fan'), ('44127','50141','component','psu'), ('44128','50142','component','sensor'), ('44129','50143','component','network'), ('44130','50143','description','{#IFALIAS}'), ('44131','50143','interface','{#IFNAME}'), ('44132','50144','component','network'), ('44133','50144','description','{#IFALIAS}'), ('44134','50144','interface','{#IFNAME}'), ('44135','50145','component','network'), ('44136','50145','description','{#IFALIAS}'), ('44137','50145','interface','{#IFNAME}'), ('44138','50146','component','network'), ('44139','50146','description','{#IFALIAS}'), ('44140','50146','interface','{#IFNAME}'), ('44141','50147','component','network'), ('44142','50147','description','{#IFALIAS}'), ('44143','50147','interface','{#IFNAME}'), ('44144','50148','component','network'), ('44145','50148','description','{#IFALIAS}'), ('44146','50148','interface','{#IFNAME}'), ('44147','50149','component','network'), ('44148','50149','description','{#IFALIAS}'), ('44149','50149','interface','{#IFNAME}'), ('44150','50150','component','network'), ('44151','50150','description','{#IFALIAS}'), ('44152','50150','interface','{#IFNAME}'), ('44153','50151','component','network'), ('44154','50151','description','{#IFALIAS}'), ('44155','50151','interface','{#IFNAME}'), ('44156','44297','component','raw'), ('44157','50152','component','error'), ('44158','50153','component','security'), ('44159','50154','component','error'), ('44160','50155','component','log'), ('44161','50156','component','error'), ('44162','50157','component','error'), ('44163','50158','component','security'), ('44164','50159','component','security'), ('44165','50160','component','security'), ('44166','50161','component','security'), ('44167','50162','component','security'), ('44168','50163','component','security'), ('44169','50164','component','security'), ('44170','50165','component','security'), ('44171','50166','component','security'), ('44172','50169','admin','{#ADMIN.NAME}'), ('44173','50169','component','raw'), ('44174','50169','component','security'), ('44175','50170','component','raw'), ('44176','50171','admin','{#ADMIN.NAME}'), ('44177','50171','component','security'), ('44178','50172','admin','{#ADMIN.NAME}'), ('44179','50172','component','security'), ('44180','50173','admin','{#ADMIN.NAME}'), ('44181','50173','component','security'), ('44182','50174','admin','{#ADMIN.NAME}'), ('44183','50174','component','security'), ('44184','50175','saml-role','{#SAML.ROLE}'), ('44185','50176','component','network'), ('44186','50176','node','{#NODE}'), ('44187','50177','component','storage'), ('44188','50177','pool','{#NAME}'), ('44189','50178','component','raw'), ('44190','50179','component','system'), ('44191','50180','component','system'), ('44192','50181','component','system'), ('44193','50182','component','system'), ('44194','50183','component','system'), ('44195','50184','component','system'), ('44196','50185','component','system'), ('44197','50186','component','system'), ('44198','50187','component','system'), ('44199','50188','component','system'), ('44200','50189','component','system'), ('44201','50190','component','system'), ('44202','50191','component','system'), ('44203','50192','component','system'), ('44204','50193','component','system'), ('44205','50194','component','system'), ('44206','50195','component','system'), ('44207','50196','component','system'), ('44208','50197','component','system'), ('44209','50198','component','system'), ('44210','50199','component','system'), ('44211','50200','component','system'), ('44212','50201','component','system'), ('44213','50202','component','system'), ('44214','50203','component','system'), ('44215','50204','component','system'), ('44216','50205','component','system'), ('44217','50206','component','system'), ('44218','50207','component','system'), ('44219','50208','component','system'), ('44220','50209','component','system'), ('44221','50210','component','raw'), ('44222','50211','component','health'), ('44223','50211','component','network'), ('44224','50212','component','health'), ('44225','50212','component','network'), ('44226','50213','component','health'), ('44227','50213','component','network'), ('44228','50214','component','raw'), ('44229','50215','component','network'), ('44230','50216','component','raw'), ('44231','50217','component','system'), ('44232','50218','component','system'), ('44233','50219','component','system'), ('44234','50220','component','memory'), ('44235','50221','component','memory'), ('44236','50222','component','memory'), ('44237','50223','component','memory'), ('44238','50224','component','memory'), ('44239','50225','component','system'), ('44240','50226','component','system'), ('44241','50227','component','system'), ('44242','50228','component','system'), ('44243','50229','component','health'), ('44244','50229','component','network'), ('44245','50233','component','storage'), ('44246','50234','component','cpu'), ('44247','50235','component','cpu'), ('44248','50236','component','network'), ('44249','50236','description','{#IFALIAS}'), ('44250','50236','interface','{#IFNAME}'), ('44251','50237','component','network'), ('44252','50237','description','{#IFALIAS}'), ('44253','50237','interface','{#IFNAME}'), ('44254','50238','component','network'), ('44255','50238','description','{#IFALIAS}'), ('44256','50238','interface','{#IFNAME}'), ('44257','50239','component','network'), ('44258','50239','description','{#IFALIAS}'), ('44259','50239','interface','{#IFNAME}'), ('44260','50240','component','network'), ('44261','50240','description','{#IFALIAS}'), ('44262','50240','interface','{#IFNAME}'), ('44263','50241','component','network'), ('44264','50241','description','{#IFALIAS}'), ('44265','50241','interface','{#IFNAME}'), ('44266','50242','component','network'), ('44267','50242','description','{#IFALIAS}'), ('44268','50242','interface','{#IFNAME}'), ('44269','50243','component','network'), ('44270','50243','description','{#IFALIAS}'), ('44271','50243','interface','{#IFNAME}'), ('44272','50244','component','network'), ('44273','50244','description','{#IFALIAS}'), ('44274','50244','interface','{#IFNAME}'), ('44275','50245','component','storage'), ('44276','50246','component','storage'), ('44277','50247','component','asq'), ('44278','50248','component','asq'), ('44279','50249','component','asq'), ('44280','50250','component','asq'), ('44281','50251','component','ha'), ('44282','50252','component','ha'), ('44283','50253','component','ha'), ('44284','50254','component','ha'), ('44285','50255','component','ha'), ('44286','50256','component','memory'), ('44287','50257','component','memory'), ('44288','50258','component','memory'), ('44289','50259','component','memory'), ('44290','50260','component','memory'), ('44291','50261','component','memory'), ('44292','50262','component','memory'), ('44293','50263','component','health'), ('44294','50263','component','network'), ('44295','50264','component','health'), ('44296','50264','component','network'), ('44297','50265','component','health'), ('44298','50265','component','network'), ('44299','50266','component','policy'), ('44300','50266','component','vpn'), ('44301','50267','component','policy'), ('44302','50267','component','vpn'), ('44303','50268','component','policy'), ('44304','50269','component','policy'), ('44305','50270','component','hardware'), ('44306','50271','component','hardware'), ('44307','50272','component','hardware'), ('44308','50273','component','hardware'), ('44309','50274','component','hardware'), ('44310','50275','component','network'), ('44311','50276','component','raw'), ('44312','50277','component','raw'), ('44313','50278','component','raw'), ('44314','50279','component','raw'), ('44315','50280','component','raw'), ('44316','50281','component','raw'), ('44317','50282','component','raw'), ('44318','50283','component','raw'), ('44319','50284','component','raw'), ('44320','50285','component','raw'), ('44321','50286','component','raw'), ('44322','50287','component','system'), ('44323','50288','component','hardware'), ('44324','50289','component','vpn'), ('44325','50290','component','vpn'), ('44326','50291','component','vpn'), ('44327','50292','component','health'), ('44328','50292','component','network'), ('44329','50293','component','memory'), ('44330','50294','component','memory'), ('44331','50295','component','memory'), ('44332','50296','component','memory'), ('44333','50297','component','memory'), ('44334','50298','component','memory'), ('44335','50299','component','memory'), ('44336','50300','component','memory'), ('44337','50301','component','memory'), ('44338','50312','component','storage'), ('44339','50313','component','CPU'), ('44340','50314','component','CPU'), ('44341','50315','component','system'), ('44342','50316','component','system'), ('44343','50317','component','system'), ('44344','50318','component','system'), ('44345','50319','component','system'), ('44346','50320','component','system'), ('44347','50321','component','system'), ('44348','50322','component','ha'), ('44349','50323','component','ha'), ('44350','50324','component','ha'), ('44351','50325','component','ha'), ('44352','50326','component','ha'), ('44353','50327','component','ha'), ('44354','50328','component','ha'), ('44355','50329','component','ha'), ('44356','50330','component','ha'), ('44357','50331','component','health'), ('44358','50332','component','health'), ('44359','50333','component','health'), ('44360','50334','component','health'), ('44361','50335','component','health'), ('44362','50336','component','health'), ('44363','50337','component','health'), ('44364','50338','component','health'), ('44365','50339','component','health'), ('44366','50340','component','health'), ('44367','50341','component','health'), ('44368','50342','component','health'), ('44369','50343','component','network'), ('44370','50343','interface','{#IF_NAME}'), ('44371','50344','component','network'), ('44372','50344','interface','{#IF_NAME}'), ('44373','50345','component','network'), ('44374','50345','interface','{#IF_NAME}'), ('44375','50346','component','network'), ('44376','50346','interface','{#IF_NAME}'), ('44377','50347','component','network'), ('44378','50347','interface','{#IF_NAME}'), ('44379','50348','component','network'), ('44380','50348','interface','{#IF_NAME}'), ('44381','50349','component','network'), ('44382','50349','interface','{#IF_NAME}'), ('44383','50350','component','network'), ('44384','50350','interface','{#IF_NAME}'), ('44385','50351','component','network'), ('44386','50351','interface','{#IF_NAME}'), ('44387','50352','component','network'), ('44388','50352','interface','{#IF_NAME}'), ('44389','50353','component','network'), ('44390','50353','interface','{#IF_NAME}'), ('44391','50354','component','network'), ('44392','50354','interface','{#IF_NAME}'), ('44393','50355','component','network'), ('44394','50355','interface','{#IF_NAME}'), ('44395','50356','component','network'), ('44396','50356','interface','{#IF_NAME}'), ('44397','50357','component','network'), ('44398','50357','interface','{#IF_NAME}'), ('44399','50358','component','network'), ('44400','50358','interface','{#IF_NAME}'), ('44401','50359','component','network'), ('44402','50359','interface','{#IF_NAME}'), ('44403','50360','component','network'), ('44404','50360','interface','{#IF_NAME}'), ('44405','50361','component','system'), ('44406','50362','component','system'), ('44407','50363','component','storage'), ('44408','50364','component','storage'), ('44409','50365','component','system'), ('44410','50366','component','system'); INSERT INTO host_rtdata (hostid,active_available) VALUES ('10084','0'); INSERT INTO dashboard (dashboardid,name,userid,private,templateid,display_period,auto_start,uuid) VALUES ('1','Global view','1','0',NULL,'30','1',''), ('2','Zabbix server health','1','1',NULL,'30','1',''), ('3','Apache performance',NULL,'1','10265','30','1','a328c9e713424465a8e1adec7322b0dc'), ('4','Apache performance',NULL,'1','10264','30','1','c27c68fb9c234a09b4023076b45affc1'), ('5','Docker overview',NULL,'1','10318','30','1','7eb6472d07ac4c379e6b730b59a12507'), ('7','Redis performance',NULL,'1','10310','30','1','ee4c29eb7a0f443fafb7e7d3b9df7b24'), ('8','RabbitMQ overview',NULL,'1','10300','30','1','a886a871a00d47e28b8648cadae3bc99'), ('9','RabbitMQ node status',NULL,'1','10301','30','1','ce0af043ed2c4e7c988674c9ecb787d6'), ('10','Network interfaces',NULL,'1','10285','30','1','19dac6b780aa49558bf4a3782ba4b3b6'), ('11','System performance',NULL,'1','10285','30','1','558606056f464970a7c544ba75d544f2'), ('12','RabbitMQ overview',NULL,'1','10302','30','1','1b64af348f284f74a1f7f03de1d55f7b'), ('13','RabbitMQ node status',NULL,'1','10303','30','1','5e70f5ff6706442abc83ec1b206d9fe4'), ('15','System performance',NULL,'1','10343','30','1','3e6ceed431734cc29836019e93b5f89e'), ('17','System performance',NULL,'1','10001','30','1','e9ca2f8e715f428b8edc0129aa0c79de'), ('18','PostgreSQL databases',NULL,'1','10329','30','1','e3ae726b06cc4663a3eef5a73909f796'), ('20','System performance',NULL,'1','10351','30','1','234161507ccb4d83b111cb31e0db8ae5'), ('22','System performance',NULL,'1','10081','30','1','5f494fac9dc94bf3827b67ea212240f2'), ('23','MySQL performance',NULL,'1','10316','30','1','ce2f9d7bb18e469f97e692baee02841d'), ('24','MySQL performance',NULL,'1','10320','30','1','ca5006123e0f4eb8bc0155027e663d2c'), ('28','Nginx performance',NULL,'1','10266','30','1','9d071e3a148c405e85c53ef25d54efaf'), ('30','Nginx performance',NULL,'1','10267','30','1','7d0bf76f09204bb7ba9ee995bf161d46'), ('31','System performance',NULL,'1','10079','30','1','d66f39e86e2047289acea0bc9a218807'), ('32','System performance',NULL,'1','10074','30','1','b4606920366049bd98e2e6d31c602d67'), ('33','System performance',NULL,'1','10078','30','1','774e5b14c75c49b4a3a4196ce1ccdaf7'), ('36','Zabbix server health',NULL,'1','10047','30','0','6815a90fb9b745fd8f1b1f47697893d6'), ('37','Zabbix proxy health',NULL,'1','10048','30','0','c12bdb602db645a292d0cbba39d58e9f'), ('40','HAProxy Backend performance',NULL,'1','10309','30','1','7910c0c96e014d68966c5ac989e9ebb7'), ('41','HAProxy Frontend performance',NULL,'1','10309','30','1','d6ba5079de1c49bb9e0e5c47112b3ff9'), ('42','HAProxy Server performance',NULL,'1','10309','30','1','f41c3a3976dc483d98a386273ab5678f'), ('43','HAProxy Backend performance',NULL,'1','10308','30','1','6d515de988274ac6b31938eebd175973'), ('44','HAProxy Frontend performance',NULL,'1','10308','30','1','7c4decb2fefc4cfe9c4a3f8717d710ca'), ('45','HAProxy Server performance',NULL,'1','10308','30','1','ebc5a517fa544fada42550059c014c5b'), ('48','PostgreSQL databases',NULL,'1','10357','30','1','d95f29826778497a9ed265e0c335fd0f'), ('49','PostgreSQL stat',NULL,'1','10357','30','1','f2ceabf59fd64ca9828ea55e9b9668bd'), ('50','System performance',NULL,'1','10076','30','1','873e38e16ef94f2b9b743a3251db0fbb'), ('51','System performance',NULL,'1','10075','30','1','618c8fc9d4b640999b3389960f5bead4'), ('52','System performance',NULL,'1','10077','30','1','cbac7a8959574b308d1c1e23cf3760ee'), ('53','MySQL performance',NULL,'1','10317','30','1','d56c53704c264552a09cf3e59a1835f3'), ('55','System performance',NULL,'1','10248','30','1','59f09fada3ab43d1bdb70091f92e77f1'), ('56','Redis overview',NULL,'1','10310','30','1','7c5bdd7bc74648c4891abc6649d105d0'), ('57','Zabbix server','1','1',NULL,'30','1',''), ('58','Overview',NULL,'1','10414','30','1','51f1013e8a3d492faed27fe80b68fc53'), ('61','Alcatel Timetra TiMOS: General',NULL,'1','10207','30','1','2a5bbc386c5a4b04a0494455a6c9e1a7'), ('64','Brocade FC: General',NULL,'1','10208','30','1','3cf4d180b2a64e938124274ec468491f'), ('65','Brocade: General',NULL,'1','10210','30','1','881c7f5e3dc444f988b314bdb810cb6c'), ('67','Network interfaces',NULL,'1','10218','30','1','9b817c34b74842c8a21827e5d84c4692'), ('68','Network interfaces',NULL,'1','10253','30','1','19aa552abf004e729044a7af05a5544a'), ('69','Network interfaces',NULL,'1','10221','30','1','5074235070b54485bd6c72688d013cb9'), ('70','Network interfaces',NULL,'1','10222','30','1','b0a1600fd45442e0adec8990b2216f0b'), ('71','Network interfaces',NULL,'1','10223','30','1','46b0449a409740cabef1f03f10b5e453'), ('72','Network interfaces',NULL,'1','10224','30','1','93462451b410409ab1e1d174c55f6d62'), ('73','Network interfaces',NULL,'1','10226','30','1','fa7619be2ccf481db4f7a334b380e2ab'), ('74','Network interfaces',NULL,'1','10227','30','1','bb5d0711937d47d989653b53b7772cea'), ('75','Network interfaces',NULL,'1','10250','30','1','1a7c19ddd4904430bac2389eecfe785d'), ('76','Network interfaces',NULL,'1','10229','30','1','861eb1017c334f1d8e7e2a0271f69d57'), ('77','Network interfaces',NULL,'1','10230','30','1','01b7f2c33ed343e68e995f7132ec61eb'), ('78','Juniper: General',NULL,'1','10231','30','1','1276b12d41594e38afa2308925983a50'), ('79','Network interfaces',NULL,'1','10251','30','1','5d189179d9144198b020fce10f645872'), ('80','System performance',NULL,'1','10251','30','1','e41382f2a3394e52b885bb6a70df35ff'), ('81','Network interfaces',NULL,'1','10449','30','1','7856119c51f14262a0faebfb97bcc7be'), ('82','Network interfaces',NULL,'1','10450','30','1','aa1e1324c9624662a1f7ebc43f285c08'), ('83','Network interfaces',NULL,'1','10451','30','1','77bcec82c37e42c5ad87f6ebe6259ab8'), ('84','Network interfaces',NULL,'1','10452','30','1','0ebc05a8c9de4326845dc05235b2b47a'), ('85','Network interfaces',NULL,'1','10453','30','1','04493c68b50549408235b16bc9f6141e'), ('86','Network interfaces',NULL,'1','10454','30','1','3b27bf4ae0884defa769c07be8c699a2'), ('87','Network interfaces',NULL,'1','10455','30','1','1f3b3cfac3514a6aab90198fef5cfa16'), ('88','Network interfaces',NULL,'1','10456','30','1','75582c9c102a44938cff3c1deae9910d'), ('89','Network interfaces',NULL,'1','10457','30','1','c01a5f4bd16a40ea93c25faf5f9eede3'), ('90','Network interfaces',NULL,'1','10458','30','1','6d5617cf4f184387987fe1dd7f052215'), ('91','Network interfaces',NULL,'1','10459','30','1','853f6029980a4ce88bccf0d633670a91'), ('92','Network interfaces',NULL,'1','10460','30','1','4224f4be4a794f1ebefc37ec46eb41bc'), ('93','Network interfaces',NULL,'1','10461','30','1','40c7246fafa940d68c36f6de76049054'), ('94','Network interfaces',NULL,'1','10462','30','1','3e5abbc412334f3b9f96a77c4a833c7c'), ('95','Network interfaces',NULL,'1','10463','30','1','ef07458aaeaf40f5b3862f633fd13567'), ('96','Network interfaces',NULL,'1','10464','30','1','27f10d9f84914d3eb00de7940fb49f96'), ('97','Network interfaces',NULL,'1','10465','30','1','00fd7d5a79c1491e9e76559f3ee86cb1'), ('98','Network interfaces',NULL,'1','10466','30','1','acd7bf00fdaf47fd8d167aed76a7c63a'), ('99','Network interfaces',NULL,'1','10467','30','1','1babaf61ac334c4ab7fe76a62dd9555e'), ('100','Network interfaces',NULL,'1','10468','30','1','eb6b74906d59481c8c68905908e9b283'), ('101','Network interfaces',NULL,'1','10469','30','1','93192f585e0349c2b80cf6d4df772c95'), ('102','Network interfaces',NULL,'1','10470','30','1','35737b763a08439eaa9fa42b3a4b7cec'), ('103','Network interfaces',NULL,'1','10471','30','1','972424d75a26487687af78bf778242e7'), ('104','Network interfaces',NULL,'1','10472','30','1','b8a25b454da34f93a0f05b161df24323'), ('105','Network interfaces',NULL,'1','10473','30','1','f279c9f7496844678f427316cb383809'), ('106','Network interfaces',NULL,'1','10474','30','1','501127e6726c4f8d9f5892607e15a320'), ('107','Network interfaces',NULL,'1','10475','30','1','6c02eea5cb6f444ba0778bf96801a6ad'), ('108','Network interfaces',NULL,'1','10476','30','1','eaf7b6cad42c4ab880464402ad2ba327'), ('109','Network interfaces',NULL,'1','10477','30','1','99653a15e8c64511a3922c97e5ea6ef2'), ('110','Network interfaces',NULL,'1','10478','30','1','210efbe6a9a447f49a268792381e73fe'), ('111','Network interfaces',NULL,'1','10479','30','1','fa009f91126345febe515a2d76329a0f'), ('112','Network interfaces',NULL,'1','10480','30','1','d32ae92db9a142978e2a8f59b7e5b20e'), ('113','Network interfaces',NULL,'1','10481','30','1','477c1005ab64425489ae4221d4d34c37'), ('114','Network interfaces',NULL,'1','10482','30','1','bc11448142fb45d9be6dbc9e9a1251f7'), ('115','Network interfaces',NULL,'1','10483','30','1','6c15e187574e4dffbcf9f606824e01f7'), ('116','Network interfaces',NULL,'1','10484','30','1','a442da5d5a56447b8bf60a9cc61b8d3b'), ('117','Network interfaces',NULL,'1','10485','30','1','3d84bfffeafb419c8ca2ece568d3b880'), ('118','Network interfaces',NULL,'1','10486','30','1','142f1a7377e84118a0e48e69414f12ca'), ('119','Network interfaces',NULL,'1','10487','30','1','aa403799a6694d70bf343271750071a4'), ('120','Network interfaces',NULL,'1','10488','30','1','22ca218bf54043509708defeae6b2192'), ('121','Network interfaces',NULL,'1','10489','30','1','4ef520833de5431b9b28d9a5cf2bf674'), ('122','Network interfaces',NULL,'1','10490','30','1','7f9b0854855746f49e4a7e20ff98b85a'), ('123','Network interfaces',NULL,'1','10491','30','1','5df88be6ffd14fcebe2f789d8f1e45e3'), ('124','Network interfaces',NULL,'1','10492','30','1','46da6bf75fe5468199249296e71f7eae'), ('125','Network interfaces',NULL,'1','10493','30','1','0ee66a6d6b654d2581199d5eeb5cb6b1'), ('126','Network interfaces',NULL,'1','10494','30','1','eb213f78035d4d61b4296fec1651e108'), ('127','Network interfaces',NULL,'1','10495','30','1','449136e998d2420f84ab5d1778dbb76f'), ('128','Network interfaces',NULL,'1','10496','30','1','30874028a5d143229fcadd280205dd5d'), ('129','Network interfaces',NULL,'1','10497','30','1','138f717936cd4e72bfc724a7128a1d85'), ('130','Network interfaces',NULL,'1','10498','30','1','627aef32b53a429684be6b5df05fbb3c'), ('131','Network interfaces',NULL,'1','10499','30','1','b599ca881f0e41ee9ea2eda0a5bc3dcc'), ('132','Network interfaces',NULL,'1','10500','30','1','7cefb865cde143638af45ea57ac71ac6'), ('133','Network interfaces',NULL,'1','10501','30','1','d8a88389a7684d90932d984523cc2669'), ('134','Network interfaces',NULL,'1','10502','30','1','d3dae4b78c8a45f6ad84b25f89bc3fed'), ('135','Network interfaces',NULL,'1','10233','30','1','923cc21534e0400d8a8e325ebc199549'), ('136','Network interfaces',NULL,'1','10234','30','1','f554c8db428d4c05909ec48a0f014ef1'), ('137','Network interfaces',NULL,'1','10235','30','1','5dd8ed66d2e14cfeb0df6b1cf6aa19ec'), ('138','Network interfaces',NULL,'1','10236','30','1','badebb168da14b07856c04774bf07102'), ('139','Ubiquiti AirOS: General',NULL,'1','10237','30','1','9f32e8b35c17466dbf695110eb21c03d'), ('140','Network interfaces',NULL,'1','10001','30','1','14aa11c326a54ec390d4c209d30cc741'), ('141','Network interfaces',NULL,'1','10343','30','1','6d179c1f45c2438e9e6a3aa567d46b0c'), ('142','Network interfaces',NULL,'1','10248','30','1','e0f04b83911a47ba8ee30fa91b4f63a9'), ('143','Network interfaces',NULL,'1','10081','30','1','49212562a208434d9766aa82240230fd'), ('144','Network interfaces',NULL,'1','10351','30','1','59033ebe1b084a86b820fc59049db125'), ('145','Network interfaces',NULL,'1','10249','30','1','8aeb65d3f8b645d28994cdc680c0f0fd'), ('146','System performance',NULL,'1','10249','30','1','3b28bdbfdb6d4cf1a69c7466a4f059f3'), ('158','Network interfaces',NULL,'1','10434','30','1','b28e8cdadce64ba299c56054a18ea31d'), ('159','Hardware',NULL,'1','10519','30','1','fda49a1847d34b84be2fe5d9d12b8444'), ('160','Replication',NULL,'1','10519','30','1','41dce007bcf54762ad321ac944a8b63e'), ('161','Runtime',NULL,'1','10519','30','1','0d9a3feb76ad403dac7379dbe04298f0'), ('162','Slow requests',NULL,'1','10519','30','1','ac89b176f2c34fc1b885ee1ed43df590'), ('163','SQL',NULL,'1','10519','30','1','b1086a92f1b54c45be99efd996b33457'), ('164','Storage',NULL,'1','10519','30','1','aa41ca45023c4d0eb126596f89f20f98'), ('176','Cisco Nexus 9000 Series: Overview',NULL,'1','10551','30','1','370f653fc1eb4600afdc5c37fe7b9d0d'), ('177','Apache ActiveMQ: Overview',NULL,'1','10358','30','1','292193a9f5fc4a40a78aa304a6ceb536'), ('178','Control-M Overview',NULL,'1','10553','30','1','f12c2c57e08a4af19e83dd7b1c867d59'), ('179','Etcd Overview',NULL,'1','10324','30','1','5b0ffbb731cd4415a2edbc74978e0276'), ('180','Java: Overview',NULL,'1','10169','30','1','5fe21df982614cba90093a8d948b34b2'), ('181','Hadoop: Overview',NULL,'1','10363','30','1','474829439a064a6ba1c33d8d81e6e832'), ('182','IIS Overview',NULL,'1','10325','30','1','4851a7b0882642e193e73f4ffc3286d5'), ('183','IIS Overview',NULL,'1','10326','30','1','5fab732455514f558e99fc392a1a7e7e'), ('184','Kafka: Overview',NULL,'1','10364','30','1','513a8b1df97f4e58882a5a7796954fc6'), ('185','API server overview',NULL,'1','10504','30','1','5dd45bdfb5ed45bd9e3b26f01806820f'), ('186','Controller Manager overview',NULL,'1','10505','30','1','9e088e468b7048698e737f5b4719ce33'), ('187','Kubelet overview',NULL,'1','10506','30','1','ecaddf40146948668ec7c75505fd8af8'), ('188','Scheduler overview',NULL,'1','10509','30','1','2292bfff871944bda9471a2ea714d04e'), ('189','Memcached: Overview',NULL,'1','10319','30','1','6bdcf15253fb4f7692a71c6f1e16d6c6'), ('190','Nginx: Overview',NULL,'1','10415','30','1','8096f22c676e43008469b99bc5f81fd6'), ('191','Openweathermap: General',NULL,'1','10516','30','1','23d93d156d4d459db69000f3cdd3d788'), ('192','OPNsense: Overview',NULL,'1','10528','30','1','8504c5b2ef0848aa972ef39258de6857'), ('193','PFSense: Overview',NULL,'1','10515','30','1','e12c87ecce2a4f568e4c68356d175793'), ('194','PHP-FPM: Overview',NULL,'1','10330','30','1','aec4ea16594a47719de221154e43d547'), ('195','PHP-FPM: Overview',NULL,'1','10331','30','1','3faff0de92724362adda98a08229ef4f'), ('196','Sharepoint: Overview',NULL,'1','10382','30','1','3f81ca5cc29a43b28e1c1d02c131cbd5'), ('197','Squid: Overview',NULL,'1','10355','30','1','0d026f3b6eb44b46b21e2aa9ce8a030e'), ('198','Systemd: Overview',NULL,'1','10416','30','1','35c40e164dc64c3997206b042a49f5c4'), ('199','Tomcat: Overview',NULL,'1','10260','30','1','330fa4902aed4d45b8747ddb2c8c7d70'), ('200','TrueNAS CORE: Overview',NULL,'1','10518','30','1','6db6fb2b5fe04a7095fcbec6e70e76e1'), ('201','Zabbix agent: Overview',NULL,'1','10561','30','1','9dbe822be2c0418592b33289b820256f'), ('202','Zabbix agent active: Overview',NULL,'1','10562','30','1','27dea14380314e67906525ad3d2a995a'), ('203','Zookeeper: Overview',NULL,'1','10369','30','1','3c684a537ed74a0884ae663b97b23a9c'), ('204','Hikvision camera: Overview',NULL,'1','10380','30','1','db988ae8a2044b4da5e0ca388bb92d39'), ('205','Overview Azure Cosmos DB for MongoDB',NULL,'1','10568','30','1','323fb91b388a44bfbd4b7d634f6e6b6c'), ('206','Project resources',NULL,'1','10570','30','1','71df4601171e471ea74a291242028394'), ('207','MSSQL instance',NULL,'1','10571','30','1','4233430037fc4570b3a5eb3f23ef02e6'), ('208','MSSQL replica',NULL,'1','10572','30','1','f50d9889ca3c4f6b91dd9e40902e37fb'), ('209','MySQL instance',NULL,'1','10573','30','1','5932cc56f6f146db8fac121b3817a407'), ('210','MySQL replica',NULL,'1','10574','30','1','76eda12212f045388bef22cb382eff6b'), ('211','PostgreSQL instance',NULL,'1','10575','30','1','21636cfe7d2f4de28d07af09c9812075'), ('212','PostgreSQL replica',NULL,'1','10576','30','1','acb71f4a818d43e0b045ba87c2daa989'), ('213','Hardware',NULL,'1','10577','30','1','b8b09f6833ec4ea78c4ac7d15cdb0cc5'), ('214','Apache Cassandra: Overview',NULL,'1','10370','30','1','5358e770431145fb8243033b44de8a72'), ('215','ClickHouse: Overview',NULL,'1','10323','30','1','c642000e289649e8913e0d644b914ecb'), ('216','GridGain: Overview',NULL,'1','10417','30','1','407c505abde6457b88154f6d566190d8'), ('217','InfluxDB: Overview',NULL,'1','10448','30','1','41d42bb27ae14b529b337aac88bf4685'), ('218','Node overview',NULL,'1','10386','30','1','31fcc4b685ed401ca1d3164ee283d91c'), ('219','Cluster overview',NULL,'1','10387','30','1','b850d8e640bc4ce58a4aa4a2967c6ecf'), ('220','MSSQL: Overview',NULL,'1','10327','30','1','168d5d7b54374d8a951818ba619e0319'), ('221','Oracle Performance',NULL,'1','10335','30','1','60f2fa6384884e09a7c475e7c04b1515'), ('222','Oracle Performance',NULL,'1','10328','30','1','8bb7593dc22d43d5ba7a16cb7b94d8a3'), ('223','PD: Overview',NULL,'1','10397','30','1','5111f9dc22c645e09fd8d936ad71c792'), ('224','TiDB: Overview',NULL,'1','10398','30','1','7e70b8a9af42441397241465dbf5e32c'), ('225','TiKV: Overview',NULL,'1','10399','30','1','5d700978ddb447e59b2536732377d27b'), ('226','Arista: General',NULL,'1','10254','30','1','9bde3ce1f1d1405387969ab19b8620af'), ('227','Brocade: General',NULL,'1','10211','30','1','bcfbd8a0177440eba7ac737824921c81'), ('228','Cisco ASAv: Overview',NULL,'1','10418','30','1','91fa042eeba442b492ba16422b7ce567'), ('229','Resources',NULL,'1','10390','30','1','008ace95d57e4381aeb7083ffbbf7fe6'), ('230','Resources',NULL,'1','10391','30','1','ffceccccc6564b429a4f440f08d08bc4'), ('231','Resources',NULL,'1','10392','30','1','3bab64e9da084c928d10685f96574543'), ('232','Resources',NULL,'1','10393','30','1','f013c9829c064ee6a6933888af993990'), ('233','Resources',NULL,'1','10394','30','1','3819c2a561ff439fbc521e99f2f38bc2'), ('234','Network interfaces',NULL,'1','10419','30','1','43de1fe7767e4cbaaedef55aeaf9f2ba'), ('235','Resources',NULL,'1','10227','30','1','74325ab2f9e346a89eb281df04154ab2'), ('236','Resources',NULL,'1','10250','30','1','8d3bf7d0ded74f42bed66fcbc1eaec62'), ('237','Meraki: General',NULL,'1','10547','30','1','76c4525eacc64f268572fefd76accc2f'), ('238','Meraki: General',NULL,'1','10548','30','1','2d10effbfff447f6937877f25d12646a'), ('239','Morningstar ProStar MPPT: Overview',NULL,'1','10371','30','1','3765513f1a4945c0801639e4c689f99f'), ('240','Morningstar ProStar PWM: Overview',NULL,'1','10372','30','1','eb560f95bfa3418b8b614ef066b36dde'), ('241','Morningstar SunSaver MPPT: Overview',NULL,'1','10373','30','1','154e1f8f24fc4a3080e003a5bdd81ff8'), ('242','Morningstar SureSine: Overview',NULL,'1','10374','30','1','86ee955124f74ba496ce291b0004f46d'), ('243','Morningstar TriStar MPPT 600V: Overview',NULL,'1','10375','30','1','aaa5fbc301ab439e8774e054c843c0f0'), ('244','Morningstar TriStar MPPT: Overview',NULL,'1','10376','30','1','ae1fed8a8f3949698ee8510fedf839fe'), ('245','Morningstar TriStar PWM: Overview',NULL,'1','10377','30','1','7b5209a7cf3f407fb825712f3558bf03'), ('246','Overview',NULL,'1','10234','30','1','5432e9ce427549e0911cde9da29a3f9f'), ('247','Resources',NULL,'1','10235','30','1','6d98416da7a84f1b877f2ca3d6372514'), ('248','Velocloud: General',NULL,'1','10503','30','1','05278fc67ef34ec191e6a76f12e13627'), ('249','Network interfaces',NULL,'1','10420','30','1','82c428eb915e45f3af759b9d9f44d90e'), ('250','Network interfaces',NULL,'1','10421','30','1','db61810d6deb4c68a9f3c83bdbca6f7a'), ('251','Network interfaces',NULL,'1','10422','30','1','b3135c2af7284dfdb15f37aea90d3ad0'), ('252','Network interfaces',NULL,'1','10423','30','1','0efca78d067b40eea6f371b9404cef1b'), ('253','Network interfaces',NULL,'1','10424','30','1','38c74d46e279422f9e612d93596f37ad'), ('254','Network interfaces',NULL,'1','10425','30','1','aa5d1f3c1e8248eeb605bec4183d95ed'), ('255','Network interfaces',NULL,'1','10426','30','1','db6fc11845d34e63af5423b5ad7cf539'), ('256','Network interfaces',NULL,'1','10427','30','1','e448f23393064910b8f1e7197da3a539'), ('257','Network interfaces',NULL,'1','10428','30','1','4fd9d55bded94d53811920d5247e07a2'), ('258','Network interfaces',NULL,'1','10429','30','1','03dc93374fae4d94821303539a651047'), ('259','Network interfaces',NULL,'1','10430','30','1','42acb2b1e0794607b68140124eee22a1'), ('260','Network interfaces',NULL,'1','10431','30','1','577773197a9e48a184be6186a868de87'), ('261','Network interfaces',NULL,'1','10432','30','1','49d9e51af89b42759fc2443d3d465f19'), ('262','Network interfaces',NULL,'1','10433','30','1','d3ba728ed3e142619d86208285ce16af'), ('263','APC UPS Galaxy 3500: General',NULL,'1','10400','30','1','e9b5ac78d15147af9c6ea4b9d44ed57c'), ('264','APC Smart-UPS 2200 RM: General',NULL,'1','10401','30','1','7167da1ce1f04bf89ebfde0ba7b54b20'), ('265','APC Smart-UPS 3000 XLM: General',NULL,'1','10402','30','1','7379100c7d074f52a8039eea10755630'), ('266','APC Smart-UPS RT 1000 RM XL: General',NULL,'1','10403','30','1','4b5beff567794c0ca4bb0d0b0868e703'), ('267','APC Smart-UPS RT 1000 XL: General',NULL,'1','10404','30','1','498b4d5a91574c25a798e90c529eb100'), ('268','APC Smart-UPS SRT 5000: General',NULL,'1','10412','30','1','7f7515c4fbfc4b96bb18f66f6fce2dce'), ('269','APC Smart-UPS SRT 8000: General',NULL,'1','10406','30','1','3a1da069730b43f5a631482f113f3752'), ('270','APC UPS: General',NULL,'1','10395','30','1','1cd6a60d856944429e04ce20d5714e88'), ('271','APC UPS Symmetra LX: General',NULL,'1','10407','30','1','ff52b4f8ce124ee78849babbee2797ab'), ('272','APC UPS Symmetra RM: General',NULL,'1','10408','30','1','c552f644b98249f2980a55fad99572e4'), ('273','APC UPS Symmetra RX: General',NULL,'1','10409','30','1','d7a209f85029417b9d11a32d808fef96'), ('274','Storage overview',NULL,'1','10524','30','0','32f1ffd5ec5144fc9073b547cc7cfb01'), ('275','Storage overview',NULL,'1','10525','30','0','f14141c1d6d44e8a9fc7c874487f435b'), ('276','Storage overview',NULL,'1','10526','30','0','38656d541ee34c40b4a50943a2e6f999'), ('277','OceanStor 5300 V5: Overview',NULL,'1','10385','30','1','8d8982eb9082421ea74ba92f1ea7018e'), ('278','NetApp FAS3220: Overview',NULL,'1','10378','30','1','868292f4d7f84b0f854938c27f7c911e'), ('279','Server overview',NULL,'1','10534','30','0','144b6727a17542d58449cc66728c40b9'), ('280','IBM IMM: Overview',NULL,'1','10258','30','1','bb225bac9cfd482198a8bc767744f2f1'), ('281','Intel SR1530 IPMI Overview',NULL,'1','10171','30','1','f298fb0b3cee40e6b2588c6b8b078a8a'), ('282','Intel SR1630 IPMI Overview',NULL,'1','10172','30','1','40f258b8b6a5411fa02d4958d3f7c8c8'), ('283','SMART: Overview',NULL,'1','10565','30','1','074166cdd4d54f7e89bd7488283ba5be'), ('284','SMART: Overview',NULL,'1','10566','30','1','3168a06be7744331b78574fbbc28826e'), ('285','Overview AWS Costs',NULL,'1','10582','30','1','e1e4edbf129142b4b27a9471db1ed8e2'), ('286','Overview AWS ECS Cluster',NULL,'1','10583','30','1','d06afc9b9488445d887659b67d955384'), ('287','Overview AWS ECS Serverless Cluster',NULL,'1','10584','30','1','21cc12db2b0f4289b0660fcf5538b65d'), ('288','Nova: Limits overview',NULL,'1','10587','30','1','462016340f49447f80b5d2405f3a682a'), ('289','PostgreSQL databases',NULL,'1','10589','30','1','6f15f8b6e90b4d09b9e1d4fb323ac438'), ('290','SD-WAN: Overview',NULL,'1','10590','30','1','63a5053a13114e90b104d189bea96254'), ('291','SD-WAN: General',NULL,'1','10591','30','1','45ab5f4b9e9d445b9e774bbfa5cadafb'), ('292','Mantis BT: Issues',NULL,'1','10593','30','1','9ab065a6d60c4990b97529c290ff7cb9'), ('293','Region resources',NULL,'1','10594','30','1','0b1cb124081f4cf1af2e35245aeb415f'), ('294','Allocations',NULL,'1','10595','30','1','6cb91bf47abb4c29b5fdf6de15ee5f9e'), ('295','Job resources',NULL,'1','10595','30','1','9df94875bc944537860bad6bbe832ca8'), ('296','Node resources',NULL,'1','10595','30','1','040a905f916a4311a52ecc2b084175a4'), ('297','BoltDB',NULL,'1','10596','30','1','c721ccf33a6f412e994e0ef8c9dc81b5'), ('298','Cluster',NULL,'1','10596','30','1','5b6b8811398f48ebb4abb73620320211'), ('299','Jobs',NULL,'1','10596','30','1','c7f515dd33ee4045b96ffc6d83cec12a'), ('300','Acronis Cyber Protect Cloud Overview',NULL,'1','10600','30','1','711853342bbe4a5b8d145fc96644d1e5'), ('301','Nextcloud',NULL,'1','10602','30','1','580aef505caa41619a3296dda70b6512'), ('302','FortiGate: General',NULL,'1','10603','30','1','9f2a0d4b3df041419067e2c10c3e8689'), ('303','FortiGate: Statistics',NULL,'1','10603','30','1','a1c7206d9312486b9d09dc9ef34ed98e'), ('304','FortiGate: General',NULL,'1','10604','30','1','16e0654e4e27472cb770e74f6ba29403'), ('305','HPE iLO: Overview',NULL,'1','10605','30','1','20b6f76728a548698f1fb77efcf9c534'), ('306','Overview Azure Storage accounts',NULL,'1','10531','30','1','d30c78be41fe421cb98cedd7683a11f0'), ('307','Overview Azure Costs',NULL,'1','10606','30','1','a1c2ce224f07483b865ce48090338dc4'), ('308','Overview Azure Microsoft SQL Database',NULL,'1','10557','30','1','72b6f0916b9245adadb3445327aed633'), ('309','Overview Azure Microsoft SQL Serverless Database',NULL,'1','10558','30','1','7a1b55d933ba4a529f2fccef44e5cff7'), ('310','Overview Azure MySQL Flexible Server',NULL,'1','10539','30','1','12974ad6fc5a42ba9683af06f9166cef'), ('311','Overview Azure MySQL Single Server',NULL,'1','10540','30','1','8760f5409fbd488d8b8e8ba24d9077ae'), ('312','Overview Azure PostgreSQL Flexible Server',NULL,'1','10543','30','1','89588d831e7348b6b41b47a2cca79190'), ('313','Overview Azure PostgreSQL Single Server',NULL,'1','10544','30','1','9ef73571560743379fa0b4929370e1b4'), ('314','Overview Azure Virtual Machine',NULL,'1','10532','30','1','527e3c432d3842d0968480d8f91a712e'), ('315','Overview AWS ELB Application Load Balancer',NULL,'1','10607','30','1','1020fa347dd24a2ba4091528e63639d4'), ('316','MSSQL: Overview',NULL,'1','10609','30','1','699c7aa81a4b476abb938f3db0debf73'), ('317','YugabyteDB Cluster: Overview',NULL,'1','10611','30','1','c1ea734dbfc245afa17afe478982c09d'), ('318','Check Point: General',NULL,'1','10613','30','1','6d73f2e443dd4f91bd16d1be0a680513'), ('319','Check Point: Statistics',NULL,'1','10613','30','1','8291aa73acc04ffe9832e02164531a6c'), ('320','OCI Autonomous DB: Overview',NULL,'1','10614','30','1','26fb1668002c42e2b311eaef5850f2ad'), ('321','OCI Block Volume: Overview',NULL,'1','10615','30','1','f87041e2902c4286a648b0f53daee03f'), ('322','OCI Boot Volume: Overview',NULL,'1','10616','30','1','67db0d25f18a45b4913a15ab2618608c'), ('323','OCI Compute: Overview',NULL,'1','10618','30','1','edab80c89bcf43d6ada2e4ed5477d36f'), ('324','OCI Object Storage: Overview',NULL,'1','10620','30','1','6dd3714db62046249cf3ff50a09091e2'), ('325','FortiGate: High availability',NULL,'1','10604','30','1','a6bcd7942915453891b0e7855bbc4e67'), ('326','FortiGate: Statistics',NULL,'1','10604','30','1','dc5c356dae574908a63f0e8252e62aa6'), ('327','Overview AWS ELB Network Load Balancer',NULL,'1','10627','30','1','3b69323b2b8940b0a1fd0ae2ae2dc156'), ('328','Filesystems',NULL,'1','10076','30','1','5b5e04508ef3402a9432ec9f3d581179'), ('329','Filesystems',NULL,'1','10075','30','1','ccdd4aba5a154cd39cffb59e39f96c08'), ('330','Filesystems',NULL,'1','10077','30','1','9f1aabe4506e4d4984d8fdc798284086'), ('331','Filesystems',NULL,'1','10001','30','1','c689ad3115fd46a4b927d1f70ee2e5a4'), ('332','Filesystems',NULL,'1','10343','30','1','9dca5f83cd664db1ba41b8751ce3d055'), ('333','Filesystems',NULL,'1','10285','30','1','d0966792c5d04c4a92d9422114a09385'), ('334','Filesystems',NULL,'1','10248','30','1','db1904856337427f9b5ae667e0d93b45'), ('335','Filesystems',NULL,'1','10079','30','1','7cd39af9717141d398b86f3e8ea1d9e0'), ('336','Filesystems',NULL,'1','10074','30','1','c51fe9986e174a96a37187d09f175548'), ('337','Filesystems',NULL,'1','10078','30','1','7a8dd74f9e2d4df090a76d0fc1eabdcf'), ('338','Filesystems',NULL,'1','10081','30','1','4959d0164ef44866a529ba390a997666'), ('339','Filesystems',NULL,'1','10351','30','1','681dd7ed662243709a406069f4a4a206'), ('340','Filesystems',NULL,'1','10249','30','1','e032b55da5994e3abebba924fede59ec'), ('341','Website overview',NULL,'1','10628','30','1','5afcfa0ecebd40d9a8fe16491ea7615e'), ('342','Jira: Data Center',NULL,'1','10629','30','1','0917c28fa1874a088f03a15e60c96c57'), ('343','Remote Zabbix proxy health',NULL,'1','10262','30','0','cd580518d9d5434296a1ed9701b71a77'), ('344','Remote Zabbix server health',NULL,'1','10261','30','0','6a654650e39d4968918df85f9be47584'), ('345','Overview Azure VM Scale Set',NULL,'1','10630','30','1','1a38b3783a6b41cca3e5cfadd64d4534'), ('346','Overview AWS Lambda function',NULL,'1','10632','30','1','aab5dac54efa4d0cbc0f7980220e172e'), ('347','Repository overview',NULL,'1','10634','30','0','09870c778f4740da8430b1383225b2c6'), ('348','Microsoft 365',NULL,'1','10635','120','1','8c376826b58546b184f03415a5fedd46'), ('349','Overview',NULL,'1','10173','30','1','00e64ad19fff4dc9af2ab2c0c1ccc290'), ('350','Guest VM overview',NULL,'1','10174','30','1','ea7f45fa45e4429abb2fd3a675765483'), ('351','Hypervisor overview',NULL,'1','10175','30','1','1d1da8e6d38a4ea5a99d39cc31a8c435'), ('352','Overview',NULL,'1','10366','30','1','90bc032e4b384e4891f6067267343abc'), ('353','Overview',NULL,'1','10636','30','1','7660a71516b84b47b104ab4f976a13ef'), ('354','Apache performance',NULL,'1','10637','30','1','dd69695bb88241e6b457d06da37967fc'), ('355','Nginx performance',NULL,'1','10639','30','1','d066178c8aa942a5b82e7a6fdbd21880'), ('356','Nutanix Cluster Prism Element overview',NULL,'1','10640','30','1','5764865624cb41abb5ea6631a9b3dd41'), ('357','Nutanix Host Prism Element overview',NULL,'1','10641','30','1','ef6430bfad434b939f1bb22848cba40e'), ('358','Nutanix Prism Element overview',NULL,'1','10642','30','1','02f05b74967140859a2e86d0d14b0545'), ('359','PHP-FPM: Overview',NULL,'1','10645','30','1','62e8b6d8dfe04592b4fe73cb251990ae'), ('360','MySQL performance',NULL,'1','10646','30','1','403df820c4d3431ba3d2879f6025389e'), ('361','MySQL performance',NULL,'1','10647','30','1','26e905c4d9334467b57de85a2916db87'), ('362','PostgreSQL databases',NULL,'1','10648','30','1','ee3e7ee2f7de495997f4749a23f00f48'), ('363','PostgreSQL databases',NULL,'1','10649','30','1','1311b2e221bf4de49c394bf689333810'), ('364','PostgreSQL stat',NULL,'1','10649','30','1','2d6268f99f9748d18cb0bb4aee1fc550'), ('365','Juniper MX: General',NULL,'1','10650','30','1','6131b952fe8f42e7b65a8a8538d86016'), ('366','Azure SQL managed instance',NULL,'1','10651','30','1','28e6b463ca7b429ca356cb61b5394841'), ('367','PA-440: Overview',NULL,'1','10653','30','0','e5df35b446eb4ad8a5b831595505ba82'), ('368','Overview',NULL,'1','10654','30','1','92c173b1b13142d197d9bac23f757a05'), ('369','Overview',NULL,'1','10655','30','1','1bbf4fc1f4cf4581835b8272b042a144'), ('370','Overview',NULL,'1','10435','30','1','e7a4f6ea5da2419f9e43bd379996de59'), ('371','Overview',NULL,'1','10436','30','1','4b25be13fc3d4fd9bb73621f4e00c64e'), ('372','Overview',NULL,'1','10437','30','1','9607bad18ebc42d281d7b71a6bb15d6e'), ('373','Overview',NULL,'1','10438','30','1','a02b71d3f0c94112b685d6be23e2dc84'), ('374','Overview',NULL,'1','10656','30','1','b96317122fe34f54b173083884d0db24'), ('375','Overview',NULL,'1','10657','30','1','85cfa4c83cb44563890b75ecbc6091a4'), ('376','Overview',NULL,'1','10439','30','1','a257ca606b194b4d848997f36e39a320'), ('377','Overview',NULL,'1','10440','30','1','65209bf05b134cb2bc8e7e60e8bd747c'), ('378','Overview',NULL,'1','10441','30','1','05d7ff8c86274cc0adb76f0d8c39825c'), ('379','Overview',NULL,'1','10442','30','1','05115b5959dd46e4aa916b6a13cf2e6b'), ('380','Overview',NULL,'1','10255','30','1','2b91da096633476b8f86c8df921c0401'), ('381','Zabbix proxy health',NULL,'1','10658','30','0','707ef24a70ff433eb28a70cd0f78bf66'), ('382','Zabbix proxy health',NULL,'1','10659','30','0','df9b385da30a4a049516fdfb75d7d958'), ('383','Zabbix server health',NULL,'1','10660','30','0','dcb92016508d4aef8e48fbad302ad34b'), ('384','Zabbix server health',NULL,'1','10661','30','0','4903e2c2ba9240e18ecb4153cee44e4f'), ('385','Overview Azure Microsoft SQL Database',NULL,'1','10662','30','1','0e19ba53f50c48c3bce738d5420096cb'), ('386','Pure Storage FlashArray: General',NULL,'1','10663','30','0','b92fba854dba4f01a0aae16baadd25ec'), ('387','Pure Storage FlashArray: General',NULL,'1','10664','30','0','186b571696774e6ab4ba5a8a38dc9c8d'), ('388','Azure backup jobs',NULL,'1','10665','30','1','dd616732edf646cba117f8de257bafba'), ('389','Cisco Secure FTD: General',NULL,'1','10667','30','1','2433c7593dee4824b3f5ce1209bc5311'), ('390','AWS Backup vault',NULL,'1','10668','30','1','92a5197bbdeb403cabb6dd12eabb7deb'), ('391','Aruba: Overview',NULL,'1','10670','30','1','c9c7c666c80e4e01bf67a0d597ca53ab'), ('392','Ciena: Overview',NULL,'1','10671','30','1','e860ca516823426e9f2383f9bb7df112'), ('393','Overview',NULL,'1','10672','30','1','23e44027bbf84385a71fe1b2a6beb196'), ('394','Main',NULL,'1','10673','30','0','68b246ab40c24a9f9057d58bcea37cac'); INSERT INTO dashboard_usrgrp (dashboard_usrgrpid,dashboardid,usrgrpid,permission) VALUES ('1','2','7','3'); INSERT INTO dashboard_page (dashboard_pageid,dashboardid,name,display_period,sortorder) VALUES ('1','1','','0','0'), ('2','2','','0','0'), ('57','57','','0','0'), ('21605','300','','0','0'), ('21606','177','General','0','0'), ('21607','4','General','0','0'), ('21608','354','General','0','0'), ('21609','3','General','0','0'), ('21610','58','','0','0'), ('21611','178','','0','0'), ('21612','5','','0','0'), ('21613','179','','0','0'), ('21614','180','General','0','0'), ('21615','180','Memory','0','1'), ('21616','180','Garbage Collectors','0','2'), ('21617','347','Repository statistics','0','0'), ('21618','347','Self-hosted runners','0','1'), ('21619','181','Main','0','0'), ('21620','43','','0','0'), ('21621','44','','0','0'), ('21622','45','','0','0'), ('21623','40','','0','0'), ('21624','41','','0','0'), ('21625','42','','0','0'), ('21626','182','','0','0'), ('21627','183','','0','0'), ('21628','342','Application','0','0'), ('21629','342','Database','0','1'), ('21630','342','HTTP','0','2'), ('21631','342','Mail','0','3'), ('21632','342','License','0','4'), ('21633','342','Storage','0','5'), ('21634','342','Indexing','0','6'), ('21635','184','General','0','0'), ('21636','185','HTTP requests rate','0','0'), ('21637','185','Requests duration histogram','0','1'), ('21638','186','General','0','0'), ('21639','186','Workqueue metrics','0','1'), ('21640','187','Operations','0','0'), ('21641','188','General','0','0'), ('21642','188','Latencies','0','1'), ('21643','292','Mantis BT: Issues','0','0'), ('21644','189','Main','0','0'), ('21645','348','Apps','0','0'), ('21646','348','Teams','0','1'), ('21647','348','Outlook','0','2'), ('21648','348','OneDrive','0','3'), ('21649','348','SharePoint','0','4'), ('21650','348','Services','0','5'), ('21651','301','Nextcloud: Overview','0','0'), ('21652','301','Nextcloud: Users','0','1'), ('21653','28','','0','0'), ('21654','355','','0','0'), ('21655','30','','0','0'), ('21656','190','Main','0','0'), ('21657','293','Region resources','0','0'), ('21658','294','Allocations','0','0'), ('21659','295','Job resources','0','0'), ('21660','296','Node resources','0','0'), ('21661','297','BoltDB','0','0'), ('21662','298','Cluster','0','0'), ('21663','299','Jobs','0','0'), ('21664','356','Overview','0','0'), ('21665','356','IO','0','1'), ('21666','356','Content Cache','0','2'), ('21667','356','Hypervisor','0','3'), ('21668','356','Storage controller','0','4'), ('21669','356','Storage Tier','0','5'), ('21670','357','Overview','0','0'), ('21671','357','Performance','0','1'), ('21672','357','IO','0','2'), ('21673','357','Content Cache','0','3'), ('21674','357','Hypervisor','0','4'), ('21675','357','Storage controller','0','5'), ('21676','357','Storage Tier','0','6'), ('21677','357','Disk','0','7'), ('21678','358','Nutanix: Overview','0','0'), ('21679','191','Openweathermap: General','0','0'), ('21680','192','Packet filter','0','0'), ('21681','192','Network traffic','0','1'), ('21682','193','Packet filter','0','0'), ('21683','193','Network traffic','0','1'), ('21684','194','Main','0','0'), ('21685','359','Main','0','0'), ('21686','195','Main','0','0'), ('21687','8','','0','0'), ('21688','9','','0','0'), ('21689','12','','0','0'), ('21690','13','','0','0'), ('21691','196','General','0','0'), ('21692','197','Resource usage','0','0'), ('21693','197','Service timing statistics','0','1'), ('21694','197','Other statistics','0','2'), ('21695','198','Services','0','0'), ('21696','198','Sockets','0','1'), ('21697','199','General','0','0'), ('21698','200','Resources','0','0'), ('21699','200','Disks','0','1'), ('21700','200','ZFS','0','2'), ('21701','200','Network interfaces','0','3'), ('21702','349','VMware: Overview','0','0'), ('21703','349','VMware: Datastore','0','1'), ('21714','352','VMware: Overview','0','0'), ('21715','352','VMware: Datastore','0','1'), ('21716','350','VMware: Guest VM Overview','0','0'), ('21717','350','VMware: CPU','0','1'), ('21718','350','VMware: Memory','0','2'), ('21719','350','VMware: Storage','0','3'), ('21720','350','VMware: Filesystem','0','4'), ('21721','350','VMware: Network','0','5'), ('21722','351','VMware: Hypervisor Overview','0','0'), ('21723','351','VMware: CPU','0','1'), ('21724','351','VMware: Network','0','2'), ('21725','351','VMware: Datastore','0','3'), ('21726','341','Screenshots','0','0'), ('21727','201','Main','0','0'), ('21728','202','Main','0','0'), ('21729','343','Performance','0','0'), ('21730','343','Processes','0','1'), ('21731','343','Statuses','0','2'), ('21732','37','Performance','0','0'), ('21733','37','Processes','0','1'), ('21734','37','Statuses','0','2'), ('21735','381','Performance','0','0'), ('21736','381','Processes','0','1'), ('21737','381','Statuses','0','2'), ('21738','382','Performance','0','0'), ('21739','382','Processes','0','1'), ('21740','382','Statuses','0','2'), ('21741','344','Performance','0','0'), ('21742','344','Processes','0','1'), ('21743','344','Statuses','0','2'), ('21744','36','Performance','0','0'), ('21745','36','Processes','0','1'), ('21746','36','Statuses','0','2'), ('21747','383','Performance','0','0'), ('21748','383','Processes','0','1'), ('21749','383','Statuses','0','2'), ('21750','384','Performance','0','0'), ('21751','384','Processes','0','1'), ('21752','384','Statuses','0','2'), ('21753','203','Main','0','0'), ('21754','203','Clients','0','1'), ('21755','204','','0','0'), ('21756','390','Backup vault overview','0','0'), ('21757','285','Monthly costs','0','0'), ('21758','285','Monthly costs by service','0','1'), ('21759','285','Daily costs by service','0','2'), ('21760','286','Cluster','0','0'), ('21761','286','Services','0','1'), ('21762','287','Cluster','0','0'), ('21763','287','Services','0','1'), ('21764','315','AWS ELB ALB: Metrics','0','0'), ('21765','315','AWS ELB ALB Target Groups: Metrics','0','1'), ('21766','327','AWS ELB NLB: Main','0','0'), ('21767','327','AWS ELB NLB: TCP','0','1'), ('21768','327','AWS ELB NLB: TLS','0','2'), ('21769','327','AWS ELB NLB: UDP','0','3'), ('21770','346','Invocation metrics','0','0'), ('21771','346','Asynchronous invocation metrics','0','1'), ('21772','346','Concurrency metrics','0','2'), ('21773','388','Backup job overview','0','0'), ('21774','306','Storage transactions','0','0'), ('21775','306','Storage engress','0','1'), ('21776','306','Storage ingress','0','2'), ('21777','205','','0','0'), ('21778','307','Monthly costs','0','0'), ('21779','307','Daily costs by service','0','1'), ('21780','308','','0','0'), ('21781','385','','0','0'), ('21782','309','','0','0'), ('21783','310','','0','0'), ('21784','311','','0','0'), ('21785','312','','0','0'), ('21786','313','','0','0'), ('21787','366','Overview','0','0'), ('21788','314','','0','0'), ('21789','345','','0','0'), ('21790','206','Project resources','0','0'), ('21791','207','MSSQL instance','0','0'), ('21792','208','MSSQL replica','0','0'), ('21793','209','MySQL instance','0','0'), ('21794','210','MySQL replica','0','0'), ('21795','211','PostgreSQL instance','0','0'), ('21796','212','PostgreSQL replica','0','0'), ('21797','213','Hardware','0','0'), ('21798','288','','0','0'), ('21799','320','Main','30','0'), ('21800','320','CPU','30','1'), ('21801','320','Storage','30','2'), ('21802','320','Read/Writes','30','3'), ('21803','320','Sessions','30','4'), ('21804','320','Users','30','5'), ('21805','320','Parses','30','6'), ('21806','320','SQL*Net','30','7'), ('21807','320','DB Calls','30','8'), ('21808','321','Overview','30','0'), ('21809','322','Overview','30','0'), ('21810','323','Main','60','0'), ('21811','323','CPU/Mem','30','1'), ('21812','323','Net In/Out','30','2'), ('21813','323','Disk','30','3'), ('21814','323','VNIC In/Out','30','4'), ('21815','323','VNIC Detailed','30','5'), ('21816','324','Overview','30','0'), ('21817','324','Latency','30','1'), ('21818','214','General','0','0'), ('21819','215','Main','0','0'), ('21820','215','Replicas','0','1'), ('21821','159','Hardware','0','0'), ('21822','160','Replication','0','0'), ('21823','161','Runtime','0','0'), ('21824','162','Slow requests','0','0'), ('21825','163','SQL','0','0'), ('21826','164','Storage','0','0'), ('21827','216','General','0','0'), ('21828','217','Main','0','0'), ('21829','217','Organizations','0','1'), ('21830','218','General','0','0'), ('21831','218','Collections','0','1'), ('21832','218','Databases','0','2'), ('21833','218','Replication','0','3'), ('21834','219','General','0','0'), ('21835','219','Databases','0','1'), ('21836','316','Main','0','0'), ('21837','316','Databases','0','1'), ('21838','220','Main','0','0'), ('21839','220','Databases','0','1'), ('21840','23','','0','0'), ('21841','24','','0','0'), ('21842','360','','0','0'), ('21843','361','','0','0'), ('21844','53','','0','0'), ('21845','221','','0','0'), ('21846','222','','0','0'), ('21847','48','','0','0'), ('21848','49','','0','0'), ('21849','18','','0','0'), ('21850','362','','0','0'), ('21851','363','','0','0'), ('21852','364','','0','0'), ('21853','289','','0','0'), ('21854','56','','0','0'), ('21855','7','','0','0'), ('21856','223','Main','0','0'), ('21857','224','Main','0','0'), ('21858','225','Main','0','0'), ('21859','317','YugabyteDB Cluster: Overview','0','0'), ('21860','317','YugabyteDB Cluster: Cluster','0','1'), ('21861','317','YugabyteDB Cluster: Disk','0','2'), ('21862','317','YugabyteDB Cluster: Network','0','3'), ('21863','317','YugabyteDB Cluster: Query statistic','0','4'), ('21864','317','YugabyteDB Cluster: Node','0','5'), ('21865','317','YugabyteDB Cluster: Keyspace','0','6'), ('21866','61','Alcatel Timetra TiMOS: General','0','0'), ('21867','226','Arista: General','0','0'), ('21868','391','Aruba: Overview','0','0'), ('21869','391','Aruba: OSPF','0','1'), ('21870','64','Brocade FC: General','0','0'), ('21871','65','Brocade: General','0','0'), ('21872','227','Brocade: General','0','0'), ('21873','318','Overview','0','0'), ('21874','319','System performance','0','0'), ('21875','319','Sensors','0','1'), ('21876','319','Firewall','0','2'), ('21877','319','VPN','0','3'), ('21878','319','Network interfaces','0','4'), ('21879','392','Ciena: Overview','0','0'), ('21880','228','Network','0','0'), ('21881','228','Resources','0','1'), ('21882','228','Sessions traffic','0','2'), ('21883','229','Overview','0','0'), ('21884','230','Overview','0','0'), ('21885','231','Overview','0','0'), ('21886','232','Overview','0','0'), ('21887','233','Overview','0','0'), ('21888','176','Resources','0','0'), ('21889','176','Network traffic','0','1'), ('21890','290','Main','0','0'), ('21891','291','Overview','0','0'), ('21892','291','System performance','0','1'), ('21893','291','Network interfaces','0','2'), ('21894','291','Routes','0','3'), ('21895','389','Overview','0','0'), ('21896','389','System Performance','0','1'), ('21897','389','Interfaces','0','2'), ('21898','389','Connections & NAT','0','3'), ('21899','389','ASP Drop Reasons','0','4'), ('21900','389','Status Processes','0','5'), ('21901','389','Sensors','0','6'), ('21902','67','','0','0'), ('21903','68','','0','0'), ('21904','69','','0','0'), ('21905','70','','0','0'), ('21906','71','','0','0'), ('21907','72','','0','0'), ('21908','234','','0','0'), ('21909','302','Overview','0','0'), ('21910','303','System performance','0','0'), ('21911','303','Network interfaces','0','1'), ('21912','303','SD-WAN statistics','0','2'), ('21913','303','Firewall statistics','0','3'), ('21914','304','Overview','0','0'), ('21915','325','Overview','0','0'), ('21916','325','HA members','0','1'), ('21917','326','System performance','0','0'), ('21918','326','SoC3 NP6Lite statistics','0','1'), ('21919','326','IPS statistics','0','2'), ('21920','326','Network interfaces','0','3'), ('21921','326','SD-WAN statistics','0','4'), ('21922','326','Wireless statistics','0','5'), ('21923','73','','0','0'), ('21924','74','','0','0'), ('21925','235','','0','0'), ('21926','75','','0','0'), ('21927','236','','0','0'), ('21928','76','','0','0'), ('21929','77','','0','0'), ('21930','365','Juniper MX: Overview','0','0'), ('21931','365','Juniper MX: Network','0','1'), ('21932','365','Juniper MX: Digital Lane Monitoring','0','2'), ('21933','365','Juniper MX: BGP/OSPF','0','3'), ('21934','78','Juniper: General','0','0'), ('21935','79','','0','0'), ('21936','80','','0','0'), ('21937','237','Meraki: Uplinks','0','0'), ('21938','238','Meraki: VPN stats','0','0'), ('21939','238','Meraki: License','0','1'), ('21940','81','','0','0'), ('21941','82','','0','0'), ('21942','83','','0','0'), ('21943','84','','0','0'), ('21944','85','','0','0'), ('21945','86','','0','0'), ('21946','87','','0','0'), ('21947','88','','0','0'), ('21948','89','','0','0'), ('21949','90','','0','0'), ('21950','91','','0','0'), ('21951','92','','0','0'), ('21952','93','','0','0'), ('21953','94','','0','0'), ('21954','95','','0','0'), ('21955','96','','0','0'), ('21956','97','','0','0'), ('21957','98','','0','0'), ('21958','99','','0','0'), ('21959','100','','0','0'), ('21960','101','','0','0'), ('21961','102','','0','0'), ('21962','103','','0','0'), ('21963','104','','0','0'), ('21964','105','','0','0'), ('21965','106','','0','0'), ('21966','107','','0','0'), ('21967','108','','0','0'), ('21968','109','','0','0'), ('21969','110','','0','0'), ('21970','111','','0','0'), ('21971','112','','0','0'), ('21972','113','','0','0'), ('21973','114','','0','0'), ('21974','115','','0','0'), ('21975','116','','0','0'), ('21976','117','','0','0'), ('21977','118','','0','0'), ('21978','119','','0','0'), ('21979','120','','0','0'), ('21980','121','','0','0'), ('21981','122','','0','0'), ('21982','123','','0','0'), ('21983','124','','0','0'), ('21984','125','','0','0'), ('21985','126','','0','0'), ('21986','127','','0','0'), ('21987','128','','0','0'), ('21988','129','','0','0'), ('21989','130','','0','0'), ('21990','131','','0','0'), ('21991','132','','0','0'), ('21992','133','','0','0'), ('21993','134','','0','0'), ('21994','135','','0','0'), ('21995','239','','0','0'), ('21996','240','','0','0'), ('21997','241','','0','0'), ('21998','242','','0','0'), ('21999','243','','0','0'), ('22000','244','','0','0'), ('22001','245','','0','0'), ('22002','136','','0','0'), ('22003','246','Resources','0','0'), ('22004','367','PA-440: Overview','0','0'), ('22005','367','PA-440: High availability','0','1'), ('22006','367','PA-440: Hardware interfaces','0','2'), ('22007','367','PA-440: Logical interfaces','0','3'), ('22008','367','PA-440: BGP peers','0','4'), ('22009','367','PA-440: OSPF neighbors','0','5'), ('22010','367','PA-440: OSPFv3 neighbors','0','6'), ('22011','137','','0','0'), ('22012','247','','0','0'), ('22013','394','Overview','60','0'), ('22014','394','Interfaces: Traffic','0','1'), ('22015','394','Interfaces: Packets','0','2'), ('22016','394','CPU','0','3'), ('22017','394','Memory','0','4'), ('22018','394','Disk','0','5'), ('22019','394','Fan','0','6'), ('22020','394','PSU','0','7'), ('22021','394','HA','0','8'), ('22022','394','Autoupdate','0','9'), ('22023','394','VPN','0','10'), ('22024','394','Policies & ASQ','0','11'), ('22025','394','Health status','0','12'), ('22026','138','','0','0'), ('22027','139','Ubiquiti AirOS: General','0','0'), ('22028','248','Velocloud: Gateways','0','0'), ('22029','248','Velocloud: Links','0','1'), ('22030','248','Velocloud: SDWAN peers','0','2'), ('22031','393','Overview','0','0'), ('22032','393','Interfaces: Traffic','0','1'), ('22033','393','Interfaces: Errors','0','2'), ('22034','393','Interfaces: Discards','0','3'), ('22035','393','Storage: Utilization','0','4'), ('22036','249','','0','0'), ('22037','250','','0','0'), ('22038','251','','0','0'), ('22039','252','','0','0'), ('22040','253','','0','0'), ('22041','254','','0','0'), ('22042','255','','0','0'), ('22043','256','','0','0'), ('22044','257','','0','0'), ('22045','258','','0','0'), ('22046','259','','0','0'), ('22047','260','','0','0'), ('22048','261','','0','0'), ('22049','262','','0','0'), ('22050','328','Overview','0','0'), ('22051','50','','0','0'), ('22052','329','Overview','0','0'), ('22053','51','','0','0'), ('22054','330','Overview','0','0'), ('22055','52','','0','0'), ('22056','331','Overview','0','0'), ('22057','140','Overview','0','0'), ('22058','17','','0','0'), ('22059','332','Overview','0','0'), ('22060','141','Overview','0','0'), ('22061','15','','0','0'), ('22062','333','Overview','0','0'), ('22063','10','','0','0'), ('22064','11','','0','0'), ('22065','334','Overview','0','0'), ('22066','142','','0','0'), ('22067','55','','0','0'), ('22068','335','Overview','0','0'), ('22069','31','','0','0'), ('22070','336','Overview','0','0'), ('22071','32','','0','0'), ('22072','337','Overview','0','0'), ('22073','33','','0','0'), ('22074','338','Overview','0','0'), ('22075','143','Overview','0','0'), ('22076','22','','0','0'), ('22077','339','Overview','0','0'), ('22078','144','Overview','0','0'), ('22079','20','','0','0'), ('22080','340','Overview','0','0'), ('22081','145','','0','0'), ('22082','146','','0','0'), ('22083','263','APC UPS Galaxy 3500: General','0','0'), ('22084','264','APC Smart-UPS 2200 RM: General','0','0'), ('22085','265','APC Smart-UPS 3000 XLM: General','0','0'), ('22086','266','APC Smart-UPS RT 1000 RM XL: General','0','0'), ('22087','267','APC Smart-UPS RT 1000 XL: General','0','0'), ('22088','268','APC Smart-UPS SRT 5000: General','0','0'), ('22089','269','APC Smart-UPS SRT 8000: General','0','0'), ('22090','270','APC UPS: General','0','0'), ('22091','271','APC UPS Symmetra LX: General','0','0'), ('22092','272','APC UPS Symmetra RM: General','0','0'), ('22093','273','APC UPS Symmetra RX: General','0','0'), ('22094','274','Controllers','0','0'), ('22095','274','Disk groups','0','1'), ('22096','274','Fans','0','2'), ('22097','274','Pools','0','3'), ('22098','274','Power supplies','0','4'), ('22099','274','Volumes','0','5'), ('22100','275','Controllers','0','0'), ('22101','275','Disk groups','0','1'), ('22102','275','Fans','0','2'), ('22103','275','Pools','0','3'), ('22104','275','Volumes','0','4'), ('22105','276','System capacity','0','0'), ('22106','276','CPG (common provisioning groups)','0','1'), ('22107','276','Volumes','0','2'), ('22108','277','Capacity total','0','0'), ('22109','277','CPU utilization','0','1'), ('22110','277','Node','0','2'), ('22111','277','Lun','0','3'), ('22112','353','Capacity total','0','0'), ('22113','353','CPU utilization','0','1'), ('22114','353','Node','0','2'), ('22115','353','Lun','0','3'), ('22116','278','','0','0'), ('22117','386','Array','0','0'), ('22118','386','Network interfaces','0','1'), ('22119','386','Drives','0','2'), ('22120','386','Volumes','0','3'), ('22121','386','Hosts','0','4'), ('22122','386','Sensors','0','5'), ('22123','387','Array','0','0'), ('22124','387','Network interfaces','0','1'), ('22125','387','Drives','0','2'), ('22126','387','Volumes','0','3'), ('22127','387','Hosts','0','4'), ('22128','387','Sensors','0','5'), ('22129','158','','0','0'), ('22130','368','Overview','30','0'), ('22131','368','Discoveries','30','1'), ('22132','369','Overview','30','0'), ('22133','369','Discoveries','30','1'), ('22134','370','Overview','30','0'), ('22135','370','Discoveries','30','1'), ('22136','371','Overview','30','0'), ('22137','371','Discoveries','30','1'), ('22138','372','Overview','30','0'), ('22139','372','Discoveries','30','1'), ('22140','373','Overview','30','0'), ('22141','373','Discoveries','30','1'), ('22142','374','Overview','30','0'), ('22143','374','Discoveries','30','1'), ('22144','375','Overview','30','0'), ('22145','375','Discoveries','30','1'), ('22146','376','Overview','30','0'), ('22147','376','Discoveries','30','1'), ('22148','377','Overview','30','0'), ('22149','377','Discoveries','30','1'), ('22150','378','Overview','30','0'), ('22151','378','Discoveries','30','1'), ('22152','379','Overview','30','0'), ('22153','379','Discoveries','30','1'), ('22154','380','Overview','30','0'), ('22155','380','Discoveries','30','1'), ('22156','305','HPE iLO: Computer systems','0','0'), ('22157','305','HPE iLO: Fans','0','1'), ('22158','305','HPE iLO: Thermal sensors','0','2'), ('22159','305','HPE iLO: Power supplies','0','3'), ('22160','279','Enclosures','0','0'), ('22161','279','Storage pools','0','1'), ('22162','279','Storage systems','0','2'), ('22163','279','Storage volumes','0','3'), ('22164','280','Temperature','0','0'), ('22165','280','Fan','0','1'), ('22166','281','','0','0'), ('22167','282','','0','0'), ('22168','283','Temperature','0','0'), ('22169','283','Power On','0','1'), ('22170','284','Temperature','0','0'), ('22171','284','Power On','0','1'); INSERT INTO widget (widgetid,type,name,x,y,width,height,view_mode,dashboard_pageid) VALUES ('1','tophosts','Top hosts by CPU utilization','0','0','24','4','0','1'), ('2','item','Performance','24','0','9','2','1','1'), ('3','systeminfo','','33','0','27','4','0','1'), ('4','clock','Local time','60','0','12','4','1','1'), ('5','svggraph','','24','2','9','2','1','1'), ('6','hostavail','','0','4','21','2','0','1'), ('7','problemsbysv','','21','4','30','2','0','1'), ('8','geomap','','51','4','21','7','0','1'), ('9','problems','Current problems','0','6','51','5','0','1'), ('10','problems','Zabbix server problems','0','0','60','4','0','2'), ('11','clock','Local time','60','0','12','4','1','2'), ('12','svggraph','Values processed per second','0','4','24','5','0','2'), ('13','svggraph','Utilization of data collectors','24','4','24','5','0','2'), ('14','svggraph','Utilization of internal processes','48','4','24','5','0','2'), ('15','svggraph','Cache usage','0','9','24','5','0','2'), ('16','svggraph','Value cache effectiveness','24','9','24','5','0','2'), ('17','svggraph','Queue size','48','9','24','5','0','2'), ('400','map','','0','0','72','4','0','57'), ('81245','item','','0','0','9','3','1','21605'), ('81246','item','','0','3','9','3','1','21605'), ('81247','item','','0','6','9','3','1','21605'), ('81248','item','','0','9','9','3','1','21605'), ('81249','item','','0','12','9','3','1','21605'), ('81250','graph','','9','0','12','6','0','21605'), ('81251','graphprototype','','9','6','36','9','0','21605'), ('81252','graphprototype','','21','0','24','6','0','21605'), ('81253','graphprototype','','45','0','27','7','0','21605'), ('81254','graphprototype','','45','7','27','8','0','21605'), ('81255','graphprototype','','0','0','36','15','0','21606'), ('81256','graphprototype','','36','0','36','15','0','21606'), ('81257','graph','','0','0','72','7','0','21607'), ('81258','graph','','0','7','36','5','0','21607'), ('81259','graphprototype','','0','12','36','5','0','21607'), ('81260','graph','','36','7','36','5','0','21607'), ('81261','graphprototype','','36','12','36','5','0','21607'), ('81262','graph','','0','0','72','7','0','21608'), ('81263','graph','','0','7','36','5','0','21608'), ('81264','graphprototype','','0','12','36','5','0','21608'), ('81265','graph','','36','7','36','5','0','21608'), ('81266','graphprototype','','36','12','36','5','0','21608'), ('81267','graph','','0','0','72','7','0','21609'), ('81268','graph','','0','7','36','5','0','21609'), ('81269','graphprototype','','0','12','36','5','0','21609'), ('81270','graph','','36','7','36','5','0','21609'), ('81271','graphprototype','','36','12','36','5','0','21609'), ('81272','graph','','0','0','36','5','0','21610'), ('81273','graph','','0','5','36','5','0','21610'), ('81274','graph','','0','10','36','5','0','21610'), ('81275','graph','','0','15','36','5','0','21610'), ('81276','graph','','36','0','36','5','0','21610'), ('81277','graph','','36','5','36','5','0','21610'), ('81278','graph','','36','10','36','5','0','21610'), ('81279','graph','','0','0','36','5','0','21611'), ('81280','graph','','36','0','36','5','0','21611'), ('81281','graph','','0','0','36','5','0','21612'), ('81282','graph','','0','5','36','5','0','21612'), ('81283','graph','','0','10','36','5','0','21612'), ('81284','graph','','36','0','36','5','0','21612'), ('81285','graph','','36','5','36','5','0','21612'), ('81286','graph','','0','0','36','5','0','21613'), ('81287','graph','','0','5','36','5','0','21613'), ('81288','graph','','0','10','36','5','0','21613'), ('81289','graph','','0','15','72','5','0','21613'), ('81290','graph','','36','0','36','5','0','21613'), ('81291','graph','','36','5','36','5','0','21613'), ('81292','graph','','36','10','36','5','0','21613'), ('81293','graph','','0','0','36','5','0','21614'), ('81294','graph','','0','5','36','5','0','21614'), ('81295','graph','','36','0','36','5','0','21614'), ('81296','graphprototype','','0','0','72','15','0','21615'), ('81297','graphprototype','','0','0','72','15','0','21616'), ('81298','item','Size','0','0','10','2','1','21617'), ('81299','item','Releases','0','2','10','2','1','21617'), ('81300','item','Stargazers','0','4','10','2','1','21617'), ('81301','item','Open issues','0','6','10','4','1','21617'), ('81302','item','Open PRs','0','10','10','4','1','21617'), ('81303','svggraph','Requests limit usage','0','14','36','5','0','21617'), ('81304','graphprototype','','0','19','72','5','0','21617'), ('81305','item','Forks','10','0','9','2','1','21617'), ('81306','item','Tags','10','2','9','2','1','21617'), ('81307','item','Watchers','10','4','9','2','1','21617'), ('81308','svggraph','Issues','10','6','62','4','0','21617'), ('81309','svggraph','PRs','10','10','62','4','0','21617'), ('81310','itemnavigator','Branches','19','0','12','6','0','21617'), ('81311','item','Number of commits','31','0','17','6','0','21617'), ('81312','svggraph','Requests limit utilization, in %','36','14','36','5','0','21617'), ('81313','problems','','48','0','24','6','0','21617'), ('81314','honeycomb','Runners online','0','0','72','7','0','21618'), ('81315','honeycomb','Runners busy','0','7','72','7','0','21618'), ('81316','item','NameNode status','0','0','12','2','0','21619'), ('81317','graph','','0','2','36','5','0','21619'), ('81318','graph','','0','7','36','5','0','21619'), ('81319','item','NameNode uptime','12','0','12','2','0','21619'), ('81320','item','NameNode response time','24','0','12','2','0','21619'), ('81321','item','ResourceManager status','36','0','12','2','0','21619'), ('81322','graph','','36','2','36','5','0','21619'), ('81323','graph','','36','7','36','5','0','21619'), ('81324','item','ResourceManager uptime','48','0','12','2','0','21619'), ('81325','item','ResourceManager response time','60','0','12','2','0','21619'), ('81326','graphprototype','','0','0','72','5','0','21620'), ('81327','graphprototype','','0','5','72','5','0','21620'), ('81328','graphprototype','','0','10','72','5','0','21620'), ('81329','graphprototype','','0','0','72','5','0','21621'), ('81330','graphprototype','','0','5','72','5','0','21621'), ('81331','graphprototype','','0','10','72','5','0','21621'), ('81332','graphprototype','','0','15','72','5','0','21621'), ('81333','graphprototype','','0','0','72','5','0','21622'), ('81334','graphprototype','','0','5','72','5','0','21622'), ('81335','graphprototype','','0','10','72','5','0','21622'), ('81336','graphprototype','','0','0','72','5','0','21623'), ('81337','graphprototype','','0','5','72','5','0','21623'), ('81338','graphprototype','','0','10','72','5','0','21623'), ('81339','graphprototype','','0','0','72','5','0','21624'), ('81340','graphprototype','','0','5','72','5','0','21624'), ('81341','graphprototype','','0','10','72','5','0','21624'), ('81342','graphprototype','','0','15','72','5','0','21624'), ('81343','graphprototype','','0','0','72','5','0','21625'), ('81344','graphprototype','','0','5','72','5','0','21625'), ('81345','graphprototype','','0','10','72','5','0','21625'), ('81346','graph','','0','0','36','5','0','21626'), ('81347','graph','','0','5','72','5','0','21626'), ('81348','graph','','36','0','36','5','0','21626'), ('81349','graph','','0','0','36','5','0','21627'), ('81350','graph','','0','5','72','5','0','21627'), ('81351','graph','','36','0','36','5','0','21627'), ('81352','item','Jira: Issue count','0','0','12','3','0','21628'), ('81353','svggraph','Jira: Issue: Operations per minute','0','3','24','6','0','21628'), ('81354','item','Jira: Attachment count','12','0','12','3','0','21628'), ('81355','item','Jira: Filter count','24','0','12','3','0','21628'), ('81356','svggraph','Jira: Issue: Latency','24','3','24','6','0','21628'), ('81357','item','Jira: Component count','36','0','12','3','0','21628'), ('81358','item','Jira: Custom field count','48','0','12','3','0','21628'), ('81359','svggraph','Jira: Quicksearch: Concurrent searches','48','3','24','6','0','21628'), ('81360','item','Jira: Version count','60','0','12','3','0','21628'), ('81361','item','Jira: DB: Connection state','0','0','24','5','0','21629'), ('81362','svggraph','Jira: DB: Connections: Latency','0','5','36','5','0','21629'), ('81363','svggraph','Jira: DB: Connections','0','10','36','5','0','21629'), ('81364','svggraph','Jira: DB: Writes per second','24','0','24','5','0','21629'), ('81365','svggraph','Jira: DB: Pool connections','36','5','36','5','0','21629'), ('81366','svggraph','Jira: DB: Connections: Failed per minute','36','10','36','5','0','21629'), ('81367','svggraph','Jira: DB: Reads per second','48','0','24','5','0','21629'), ('81368','svggraph','Jira: HTTP: Sessions: Active','0','0','24','5','0','21630'), ('81369','svggraph','Jira: HTTP: Pool connections','24','0','24','5','0','21630'), ('81370','svggraph','Jira: HTTP: Requests per minute','48','0','24','5','0','21630'), ('81371','item','Jira: Mail: Queue: Processing state','0','0','24','5','0','21631'), ('81372','svggraph','Jira: Mail: Processed per minute','0','5','36','5','0','21631'), ('81373','graphprototype','Jira: Mail server discovery','0','10','72','5','0','21631'), ('81374','svggraph','Jira: Mail: Queue','24','0','24','5','0','21631'), ('81375','svggraph','Jira: Mail: Sent per minute','36','5','36','5','0','21631'), ('81376','svggraph','Jira: Mail: Queue: Error','48','0','24','5','0','21631'), ('81377','honeycomb','Jira: License: Users','0','0','72','5','0','21632'), ('81378','graphprototype','Jira: Storage latency','0','0','72','5','0','21633'), ('81379','svggraph','Jira: Indexing: Latency','0','0','72','6','0','21634'), ('81380','graph','','0','0','72','7','0','21635'), ('81381','graph','','0','7','36','5','0','21635'), ('81382','graph','','0','12','36','5','0','21635'), ('81383','graph','','0','17','36','5','0','21635'), ('81384','graph','','36','7','36','5','0','21635'), ('81385','graph','','36','12','36','5','0','21635'), ('81386','graph','','36','17','36','5','0','21635'), ('81387','graph','','0','0','72','10','0','21636'), ('81388','graphprototype','','0','0','72','5','0','21637'), ('81389','graph','','0','0','72','5','0','21638'), ('81390','graph','','0','5','72','5','0','21638'), ('81391','graphprototype','','0','0','72','5','0','21639'), ('81392','graphprototype','','0','5','72','5','0','21639'), ('81393','graphprototype','','0','10','72','10','0','21639'), ('81394','graphprototype','','0','0','72','5','0','21640'), ('81395','graph','','0','0','72','5','0','21641'), ('81396','graph','','0','5','72','5','0','21641'), ('81397','graph','','0','10','72','5','0','21641'), ('81398','graphprototype','','0','0','72','5','0','21642'), ('81399','graphprototype','','0','5','72','5','0','21642'), ('81400','graphprototype','','0','10','72','5','0','21642'), ('81401','graphprototype','Mantis BT: Issues total','0','0','72','5','0','21643'), ('81402','graphprototype','Mantis BT: Issues by priority','0','5','18','5','0','21643'), ('81403','graphprototype','Mantis BT: Issues by resolution','18','5','18','5','0','21643'), ('81404','graphprototype','Mantis BT: Issues by severity','36','5','18','5','0','21643'), ('81405','graphprototype','Mantis BT: Issues by status','54','5','18','5','0','21643'), ('81406','graph','','0','0','36','5','0','21644'), ('81407','graph','','0','5','36','5','0','21644'), ('81408','graph','','0','10','36','5','0','21644'), ('81409','graph','','36','0','36','5','0','21644'), ('81410','graph','','36','5','36','5','0','21644'), ('81411','graph','','36','10','36','5','0','21644'), ('81412','item','Report date','0','0','12','2','0','21645'), ('81413','piechart','User count, by app','0','2','12','3','1','21645'), ('81414','item','Report date','0','5','12','2','0','21645'), ('81415','piechart','User count, by platform','0','7','12','3','1','21645'), ('81416','item','Report date','0','10','12','2','0','21645'), ('81417','piechart','User count, by office app','0','12','12','3','1','21645'), ('81418','item','Report date','0','15','12','2','0','21645'), ('81419','piechart','Weekly active user count, by app','0','17','12','3','1','21645'), ('81420','item','Report date','0','20','12','2','0','21645'), ('81421','piechart','Weekly inactive user count, by app','0','22','12','3','1','21645'), ('81422','svggraph','User count, by app','12','0','60','5','0','21645'), ('81423','svggraph','User count, by platform','12','5','60','5','0','21645'), ('81424','svggraph','User count, by office app','12','10','60','5','0','21645'), ('81425','svggraph','Weekly active user count, by app','12','15','60','5','0','21645'), ('81426','svggraph','Weekly inactive user count, by app','12','20','60','5','0','21645'), ('81427','item','Report date','0','0','12','2','0','21646'), ('81428','piechart','Weekly user activity count','0','2','12','4','1','21646'), ('81429','item','Report date','0','6','12','2','0','21646'), ('81430','piechart','Weekly unique users, by device type','0','8','12','3','1','21646'), ('81431','item','Report date','0','11','12','2','0','21646'), ('81432','piechart','Weekly unique users, by action','0','13','12','3','1','21646'), ('81433','item','Report date','0','16','12','2','0','21646'), ('81434','piechart','Weekly team activity count','0','18','12','3','1','21646'), ('81435','item','Report date','0','21','12','2','0','21646'), ('81436','piechart','Weekly team activity count','0','23','12','3','1','21646'), ('81437','item','Weekly private messages','12','0','15','2','0','21646'), ('81438','svggraph','Weekly user activity count','12','2','60','4','0','21646'), ('81439','svggraph','Weekly unique users, by device type','12','6','60','5','0','21646'), ('81440','svggraph','Weekly unique users, by action','12','11','60','5','0','21646'), ('81441','svggraph','Weekly team activity count','12','16','60','5','0','21646'), ('81442','svggraph','Weekly team activity count','12','21','60','5','0','21646'), ('81443','item','Weekly audio duration','27','0','15','2','0','21646'), ('81444','item','Weekly video duration','42','0','15','2','0','21646'), ('81445','item','Weekly screen share duration','57','0','15','2','0','21646'), ('81446','item','Report date','0','3','12','2','0','21647'), ('81447','piechart','Emails sent/received/read','0','5','12','3','1','21647'), ('81448','item','Report date','0','8','12','2','0','21647'), ('81449','piechart','Meetings created/interacted','0','10','12','3','1','21647'), ('81450','item','Report date','0','13','12','2','0','21647'), ('81451','piechart','User count, by app/platform','0','15','12','3','1','21647'), ('81452','item','Report date','0','18','12','2','0','21647'), ('81453','piechart','User count, by activity','0','20','12','3','1','21647'), ('81454','item','Report date','0','23','12','2','0','21647'), ('81455','piechart','User count, meetings','0','25','12','3','1','21647'), ('81456','item','Report date','12','0','24','1','1','21647'), ('81457','gauge','Active mailboxes','12','1','12','2','0','21647'), ('81458','svggraph','Emails sent/received/read','12','3','60','5','0','21647'), ('81459','svggraph','Meetings created/interacted','12','8','60','5','0','21647'), ('81460','svggraph','User count, by app/platform','12','13','60','5','0','21647'), ('81461','svggraph','User count, by activity','12','18','60','5','0','21647'), ('81462','svggraph','User count, meetings','12','23','60','5','0','21647'), ('81463','item','Total mailboxes','24','1','12','2','0','21647'), ('81464','item','Report date','36','0','12','1','1','21647'), ('81465','item','Total storage used','36','1','12','2','0','21647'), ('81466','item','Report date','0','3','12','2','0','21648'), ('81467','piechart','Files shared/synced/viewed or edited','0','5','12','3','1','21648'), ('81468','item','Report date','0','8','12','2','0','21648'), ('81469','piechart','User count, file activity','0','10','12','3','1','21648'), ('81470','item','Report date','12','0','24','1','1','21648'), ('81471','item','Business site count (active)','12','1','12','2','0','21648'), ('81472','svggraph','Files shared/synced/viewed or edited','12','3','60','5','0','21648'), ('81473','svggraph','User count, file activity','12','8','60','5','0','21648'), ('81474','item','Business site count (total)','24','1','12','2','0','21648'), ('81475','item','Report date','36','0','24','1','1','21648'), ('81476','item','File count (active)','36','1','12','2','0','21648'), ('81477','item','File count (total)','48','1','12','2','0','21648'), ('81478','item','Report date','60','0','12','1','1','21648'), ('81479','item','Total storage used','60','1','12','2','0','21648'), ('81480','item','Report date','0','0','10','1','1','21649'), ('81481','item','Pages, view count','0','1','10','2','0','21649'), ('81482','item','Report date','0','3','12','2','0','21649'), ('81483','piechart','File count, by action','0','5','12','3','1','21649'), ('81484','item','Report date','0','8','12','2','0','21649'), ('81485','piechart','User count, by action','0','10','12','3','1','21649'), ('81486','item','Report date','10','0','10','1','1','21649'), ('81487','item','Pages, visited','10','1','10','2','0','21649'), ('81488','svggraph','File count, by action','12','3','60','5','0','21649'), ('81489','svggraph','User count, by action','12','8','60','5','0','21649'), ('81490','item','Report date','20','0','20','1','1','21649'), ('81491','item','Business site count (active)','20','1','10','2','0','21649'), ('81492','item','Business site count (total)','30','1','10','2','0','21649'), ('81493','item','Report date','40','0','20','1','1','21649'), ('81494','item','File count (active)','40','1','10','2','0','21649'), ('81495','item','File count (total)','50','1','10','2','0','21649'), ('81496','item','Report date','60','0','12','1','1','21649'), ('81497','item','Total storage used','60','1','12','2','0','21649'), ('81498','honeycomb','Microsoft 365 Services health statuses','0','0','72','6','0','21650'), ('81499','item','Nextcloud: Version','0','0','6','2','0','21651'), ('81500','graph','Nextcloud: Active users','0','2','72','6','0','21651'), ('81501','graph','Nextcloud: CPU load','0','8','72','6','0','21651'), ('81502','graph','Nextcloud: Database size','0','14','72','6','0','21651'), ('81503','graph','Nextcloud: Memory utilization','0','20','72','6','0','21651'), ('81504','item','Nextcloud: Web server','6','0','18','2','0','21651'), ('81505','item','Nextcloud: Free space','24','0','12','2','0','21651'), ('81506','item','Nextcloud: Database','36','0','36','2','0','21651'), ('81507','graphprototype','Nextcloud: User quota usage','0','0','72','24','0','21652'), ('81508','graph','','0','0','36','5','0','21653'), ('81509','graph','','0','5','36','5','0','21653'), ('81510','graph','','36','0','36','5','0','21653'), ('81511','graph','','0','0','36','5','0','21654'), ('81512','graph','','0','5','36','5','0','21654'), ('81513','graph','','36','0','36','5','0','21654'), ('81514','graph','','0','0','36','5','0','21655'), ('81515','graph','','0','5','36','5','0','21655'), ('81516','graph','','36','0','36','5','0','21655'), ('81517','graph','','0','0','36','5','0','21656'), ('81518','graph','','0','5','36','5','0','21656'), ('81519','graph','','36','0','36','5','0','21656'), ('81520','graph','','36','5','36','5','0','21656'), ('81521','item','Region','0','0','24','5','0','21657'), ('81522','item','Servers','24','0','24','5','0','21657'), ('81523','item','Clients','48','0','24','5','0','21657'), ('81524','item','','0','0','24','5','0','21658'), ('81525','item','','0','5','24','5','0','21658'), ('81526','item','','0','10','24','5','0','21658'), ('81527','item','','24','0','24','5','0','21658'), ('81528','item','','24','5','24','5','0','21658'), ('81529','item','','24','10','24','5','0','21658'), ('81530','item','','48','0','24','5','0','21658'), ('81531','item','','48','5','24','5','0','21658'), ('81532','item','','48','10','24','5','0','21658'), ('81533','graphprototype','','0','0','36','5','0','21659'), ('81534','graphprototype','','0','5','36','5','0','21659'), ('81535','graphprototype','','0','10','72','5','0','21659'), ('81536','graphprototype','','36','0','36','5','0','21659'), ('81537','graphprototype','','36','5','36','5','0','21659'), ('81538','graph','','0','0','72','5','0','21660'), ('81539','graph','','0','5','36','5','0','21660'), ('81540','graphprototype','','0','10','36','5','0','21660'), ('81541','graph','','36','5','36','5','0','21660'), ('81542','graphprototype','','36','10','36','5','0','21660'), ('81543','item','','0','0','24','5','0','21661'), ('81544','graph','','0','5','72','5','0','21661'), ('81545','graph','','0','10','72','5','0','21661'), ('81546','graph','','0','15','72','5','0','21661'), ('81547','item','','24','0','24','5','0','21661'), ('81548','item','','48','0','24','5','0','21661'), ('81549','item','','0','0','18','5','0','21662'), ('81550','graph','','0','5','72','5','0','21662'), ('81551','item','','0','10','24','5','0','21662'), ('81552','item','','18','0','18','5','0','21662'), ('81553','item','','24','10','24','5','0','21662'), ('81554','item','','36','0','18','5','0','21662'), ('81555','item','','48','10','24','5','0','21662'), ('81556','item','','54','0','18','5','0','21662'), ('81557','item','','0','0','24','5','0','21663'), ('81558','item','','0','5','24','5','0','21663'), ('81559','item','','0','10','18','5','0','21663'), ('81560','item','','0','15','24','5','0','21663'), ('81561','item','','0','20','18','5','0','21663'), ('81562','item','','18','10','18','5','0','21663'), ('81563','item','','18','20','18','5','0','21663'), ('81564','item','','24','0','24','5','0','21663'), ('81565','item','','24','5','24','5','0','21663'), ('81566','item','','24','15','24','5','0','21663'), ('81567','item','','36','10','18','5','0','21663'), ('81568','item','','36','20','18','5','0','21663'), ('81569','item','','48','0','24','5','0','21663'), ('81570','item','','48','5','24','5','0','21663'), ('81571','item','','48','15','24','5','0','21663'), ('81572','item','','54','10','18','5','0','21663'), ('81573','item','','54','20','18','5','0','21663'), ('81574','item','General: Cluster operation mode','0','0','18','2','1','21664'), ('81575','svggraph','IOPS','0','2','54','5','1','21664'), ('81576','svggraph','IO','0','7','54','5','1','21664'), ('81577','item','General: Version','18','0','18','2','1','21664'), ('81578','item','General: Timespan','36','0','18','2','1','21664'), ('81579','item','General: Current redundancy factor','54','0','18','2','1','21664'), ('81580','item','General: Desired redundancy factor','54','2','18','2','1','21664'), ('81581','svggraph','General: Storage: Total and free','54','4','18','4','1','21664'), ('81582','svggraph','General: Storage: Usage','54','8','18','4','1','21664'), ('81583','svggraph','General: IOPS','0','0','40','6','0','21665'), ('81584','svggraph','General: Bandwidth','0','6','36','6','0','21665'), ('81585','svggraph','General: Latency','36','6','36','6','0','21665'), ('81586','item','General: IOPS','40','0','18','2','1','21665'), ('81587','item','General: Read IOPS','40','2','18','2','1','21665'), ('81588','item','General: Write IOPS','40','4','18','2','1','21665'), ('81589','piechart','General: Read IO / Write IO','58','0','14','6','0','21665'), ('81590','svggraph','Content Cache: Memory','0','0','54','4','0','21666'), ('81591','item','Content Cache: Logical memory usage','0','4','18','2','1','21666'), ('81592','svggraph','Content Cache: SSD usage','0','6','54','4','0','21666'), ('81593','item','Content Cache: Logical SSD usage','0','10','18','2','1','21666'), ('81594','item','Content Cache: Logical saved memory usage','18','4','18','2','1','21666'), ('81595','item','Content Cache: Physical SSD usage','18','10','18','2','1','21666'), ('81596','item','Content Cache: Physical memory usage','36','4','18','2','1','21666'), ('81597','item','Content Cache: Saved SSD usage','36','10','18','2','1','21666'), ('81598','gauge','Content Cache: Hit rate','54','0','18','4','1','21666'), ('81599','svggraph','Content Cache: Hit rate','54','4','18','4','0','21666'), ('81600','item','Content Cache: Number of lookups','54','8','18','2','1','21666'), ('81601','item','Content Cache: References','54','10','18','2','1','21666'), ('81602','svggraph','Hypervisor: IOPS','0','0','52','4','0','21667'), ('81603','svggraph','Hypervisor: Latency','0','4','52','4','0','21667'), ('81604','svggraph','Hypervisor: Bandwidth','0','8','52','4','0','21667'), ('81605','gauge','Hypervisor: CPU usage','52','0','20','3','1','21667'), ('81606','svggraph','Hypervisor: CPU usage','52','3','20','3','0','21667'), ('81607','gauge','Hypervisor: Memory usage','52','6','20','3','1','21667'), ('81608','svggraph','Hypervisor: Memory usage','52','9','20','3','0','21667'), ('81609','svggraph','Storage controller: IOPS','0','0','36','6','0','21668'), ('81610','svggraph','Storage controller: IO','0','6','36','6','0','21668'), ('81611','piechart','Storage controller: Read IO / Write IO','36','0','12','6','0','21668'), ('81612','svggraph','Storage controller: Bandwidth','36','6','36','6','0','21668'), ('81613','svggraph','Storage controller: Read IO / Write IO','48','0','24','6','0','21668'), ('81614','svggraph','Storage Tier: Das-sata','0','0','50','4','0','21669'), ('81615','item','Storage Tier: Das-sata free','0','4','25','2','1','21669'), ('81616','svggraph','Storage Tier: SSD','0','6','50','4','0','21669'), ('81617','item','Storage Tier: SSD free','0','10','25','2','1','21669'), ('81618','item','Storage Tier: Das-sata usage','25','4','25','2','1','21669'), ('81619','item','Storage Tier: SSD usage','25','10','25','2','1','21669'), ('81620','piechart','Storage Tier: Das-sata Usage / Total','50','0','22','6','0','21669'), ('81621','piechart','Storage Tier: SSD Usage / Total','50','6','22','6','0','21669'), ('81622','item','General: Host state','0','0','18','2','1','21670'), ('81623','svggraph','IOPS','0','2','54','6','1','21670'), ('81624','svggraph','General: Storage: Total and free','0','8','18','4','1','21670'), ('81625','item','General: Reboot pending','18','0','18','2','1','21670'), ('81626','svggraph','General: Storage: Usage','18','8','18','4','1','21670'), ('81627','item','General: Maintenance mode','36','0','18','2','1','21670'), ('81628','item','General: Total CPU capacity','36','8','18','2','1','21670'), ('81629','item','General: Total memory','36','10','18','2','1','21670'), ('81630','item','General: Degrade status','54','0','18','2','1','21670'), ('81631','item','General: Number of virtual machines','54','2','18','2','1','21670'), ('81632','item','General: Host type','54','4','18','2','1','21670'), ('81633','item','General: Boot time','54','6','18','2','1','21670'), ('81634','item','General: CPU model','54','8','18','2','1','21670'), ('81635','item','General: Timespan','54','10','18','2','1','21670'), ('81636','svggraph','Hypervisor: CPU usage','0','0','48','5','0','21671'), ('81637','svggraph','Hypervisor: Memory usage','0','5','48','5','0','21671'), ('81638','item','Number of CPU cores','0','10','24','2','1','21671'), ('81639','item','Number of CPU sockets','24','10','24','2','1','21671'), ('81640','gauge','Hypervisor: CPU usage','48','0','24','3','1','21671'), ('81641','item','General: Total CPU capacity','48','3','24','2','1','21671'), ('81642','gauge','Hypervisor: Memory usage','48','5','24','3','1','21671'), ('81643','item','General: Total memory','48','8','24','2','1','21671'), ('81644','item','Number of CPU threads','48','10','24','2','1','21671'), ('81645','svggraph','General: IOPS','0','0','40','6','0','21672'), ('81646','svggraph','General: Bandwidth','0','6','36','6','0','21672'), ('81647','svggraph','General: Latency','36','6','36','6','0','21672'), ('81648','item','General: IOPS','40','0','18','2','1','21672'), ('81649','item','General: Read IOPS','40','2','18','2','1','21672'), ('81650','item','General: Write IOPS','40','4','18','2','1','21672'), ('81651','piechart','General: Read IO / Write IO','58','0','14','6','0','21672'), ('81652','svggraph','Content Cache: Memory','0','0','54','4','0','21673'), ('81653','item','Content Cache: Logical memory usage','0','4','18','2','1','21673'), ('81654','svggraph','Content Cache: SSD usage','0','6','54','4','0','21673'), ('81655','item','Content Cache: Logical SSD usage','0','10','18','2','1','21673'), ('81656','item','Content Cache: Logical saved memory usage','18','4','18','2','1','21673'), ('81657','item','Content Cache: Physical SSD usage','18','10','18','2','1','21673'), ('81658','item','Content Cache: Physical memory usage','36','4','18','2','1','21673'), ('81659','item','Content Cache: Saved SSD usage','36','10','18','2','1','21673'), ('81660','gauge','Content Cache: Hit rate','54','0','18','4','1','21673'), ('81661','svggraph','Content Cache: Hit rate','54','4','18','4','0','21673'), ('81662','item','Content Cache: Number of lookups','54','8','18','2','1','21673'), ('81663','item','Content Cache: References','54','10','18','2','1','21673'), ('81664','svggraph','Hypervisor: IOPS','0','0','52','4','0','21674'), ('81665','svggraph','Hypervisor: Latency','0','4','52','4','0','21674'), ('81666','svggraph','Hypervisor: Bandwidth','0','8','52','4','0','21674'), ('81667','item','Hypervisor: Full name','52','0','20','2','1','21674'), ('81668','item','Hypervisor: Timespan','52','2','20','2','1','21674'), ('81669','svggraph','Hypervisor: Received','52','4','20','4','0','21674'), ('81670','svggraph','Hypervisor: Transmitted','52','8','20','4','0','21674'), ('81671','svggraph','Storage controller: IOPS','0','0','36','6','0','21675'), ('81672','svggraph','Storage controller: IO','0','6','36','6','0','21675'), ('81673','piechart','Storage controller: Read IO / Write IO','36','0','12','6','0','21675'), ('81674','svggraph','Storage controller: Bandwidth','36','6','36','6','0','21675'), ('81675','svggraph','Storage controller: Read IO / Write IO','48','0','24','6','0','21675'), ('81676','svggraph','Storage Tier: Das-sata','0','0','50','4','0','21676'), ('81677','item','Storage Tier: Das-sata free','0','4','25','2','1','21676'), ('81678','svggraph','Storage Tier: SSD','0','6','50','4','0','21676'), ('81679','item','Storage Tier: SSD free','0','10','25','2','1','21676'), ('81680','item','Storage Tier: Das-sata usage','25','4','25','2','1','21676'), ('81681','item','Storage Tier: SSD usage','25','10','25','2','1','21676'), ('81682','piechart','Storage Tier: Das-sata Usage / Total','50','0','22','6','0','21676'), ('81683','piechart','Storage Tier: SSD Usage / Total','50','6','22','6','0','21676'), ('81684','honeycomb','Disk online','0','0','36','4','0','21677'), ('81685','graphprototype','Space: Total and Used','0','4','36','4','0','21677'), ('81686','graphprototype','Space: Free','0','8','72','4','0','21677'), ('81687','honeycomb','Disk status','36','0','36','4','0','21677'), ('81688','graphprototype','Space: Logical usage and Used','36','4','36','4','0','21677'), ('81689','graphprototype','Capacity','0','0','36','6','0','21678'), ('81690','graphprototype','Free space','0','6','72','6','0','21678'), ('81691','honeycomb','Replication factor','36','0','36','6','0','21678'), ('81692','graphprototype','Atmospheric.pressure','0','0','36','5','0','21679'), ('81693','graphprototype','Snow volume','0','5','36','5','0','21679'), ('81694','graphprototype','Rain volume','36','0','36','5','0','21679'), ('81695','graphprototype','Temperature','36','5','36','5','0','21679'), ('81696','graph','','0','0','72','10','0','21680'), ('81697','graphprototype','','0','0','72','10','0','21681'), ('81698','graphprototype','','0','10','72','10','0','21681'), ('81699','graphprototype','','0','20','72','10','0','21681'), ('81700','graph','','0','0','72','10','0','21682'), ('81701','graphprototype','','0','0','72','10','0','21683'), ('81702','graphprototype','','0','10','72','10','0','21683'), ('81703','graphprototype','','0','20','72','10','0','21683'), ('81704','graph','','0','0','36','5','0','21684'), ('81705','graph','','36','0','36','5','0','21684'), ('81706','graph','','0','0','36','5','0','21685'), ('81707','graph','','36','0','36','5','0','21685'), ('81708','graph','','0','0','36','5','0','21686'), ('81709','graph','','36','0','36','5','0','21686'), ('81710','graph','','0','0','36','5','0','21687'), ('81711','graph','','0','5','36','5','0','21687'), ('81712','graph','','0','10','36','5','0','21687'), ('81713','graph','','36','0','36','5','0','21687'), ('81714','graph','','36','5','36','5','0','21687'), ('81715','graph','','0','0','36','5','0','21688'), ('81716','graph','','0','5','36','5','0','21688'), ('81717','graph','','0','10','36','5','0','21688'), ('81718','graph','','36','0','36','5','0','21688'), ('81719','graph','','36','5','36','5','0','21688'), ('81720','graph','','36','10','36','5','0','21688'), ('81721','graph','','0','0','36','5','0','21689'), ('81722','graph','','0','5','36','5','0','21689'), ('81723','graph','','0','10','36','5','0','21689'), ('81724','graph','','36','0','36','5','0','21689'), ('81725','graph','','36','5','36','5','0','21689'), ('81726','graph','','0','0','36','5','0','21690'), ('81727','graph','','0','5','36','5','0','21690'), ('81728','graph','','0','10','36','5','0','21690'), ('81729','graph','','36','0','36','5','0','21690'), ('81730','graph','','36','5','36','5','0','21690'), ('81731','graph','','36','10','36','5','0','21690'), ('81732','graph','','0','0','36','5','0','21691'), ('81733','graph','','0','5','36','5','0','21691'), ('81734','graph','','36','0','36','5','0','21691'), ('81735','graph','','0','0','72','5','0','21692'), ('81736','graph','','0','5','72','5','0','21692'), ('81737','graph','','0','0','72','10','0','21693'), ('81738','graph','','0','0','72','5','0','21694'), ('81739','graph','','0','5','72','5','0','21694'), ('81740','graph','','0','10','72','5','0','21694'), ('81741','graph','','0','15','72','5','0','21694'), ('81742','graph','','0','20','72','5','0','21694'), ('81743','graphprototype','','0','0','72','20','0','21695'), ('81744','graphprototype','','0','0','72','20','0','21696'), ('81745','graphprototype','','0','0','36','15','0','21697'), ('81746','graphprototype','','36','0','36','15','0','21697'), ('81747','graph','','0','0','72','5','0','21698'), ('81748','graph','','0','5','36','5','0','21698'), ('81749','graphprototype','','0','10','72','5','0','21698'), ('81750','graphprototype','','0','15','36','5','0','21698'), ('81751','graph','','0','20','72','5','0','21698'), ('81752','graph','','36','5','36','5','0','21698'), ('81753','graph','','36','15','36','5','0','21698'), ('81754','graphprototype','','0','0','72','5','0','21699'), ('81755','graphprototype','','0','5','72','5','0','21699'), ('81756','graph','','0','0','72','5','0','21700'), ('81757','graphprototype','','0','5','72','5','0','21700'), ('81758','graphprototype','','0','10','72','5','0','21700'), ('81759','graphprototype','','0','15','72','5','0','21700'), ('81760','graphprototype','','0','20','72','5','0','21700'), ('81761','graphprototype','','0','0','72','10','0','21701'), ('81762','honeycomb','Overall status','0','0','15','4','1','21702'), ('81763','honeycomb','Total size of datastore','0','4','36','8','0','21702'), ('81764','item','Full name','15','0','57','2','1','21702'), ('81765','item','Version','15','2','57','2','1','21702'), ('81766','honeycomb','Free space on datastore','36','4','36','8','0','21702'), ('81767','graphprototype','Average read IOps of the datastore','0','0','36','6','0','21703'), ('81768','graphprototype','Average read latency of the datastore','0','6','36','6','0','21703'), ('81769','graphprototype','Average write IOps of the datastore','36','0','36','6','0','21703'), ('81770','graphprototype','Average write latency of the datastore','36','6','36','6','0','21703'), ('81851','honeycomb','Overall status','0','0','15','4','1','21714'), ('81852','honeycomb','Total size of datastore','0','4','36','8','0','21714'), ('81853','item','Full name','15','0','57','2','1','21714'), ('81854','item','Version','15','2','57','2','1','21714'), ('81855','honeycomb','Free space on datastore','36','4','36','8','0','21714'), ('81856','graphprototype','Average read IOps of the datastore','0','0','36','6','0','21715'), ('81857','graphprototype','Average read latency of the datastore','0','6','36','6','0','21715'), ('81858','graphprototype','Average write IOps of the datastore','36','0','36','6','0','21715'), ('81859','graphprototype','Average write latency of the datastore','36','6','36','6','0','21715'), ('81860','gauge','CPU utilization','0','0','21','4','1','21716'), ('81861','svggraph','CPU and memory usage in percents','0','4','42','4','0','21716'), ('81862','item','Number of virtual CPUs','0','8','15','2','1','21716'), ('81863','item','Committed storage space','0','10','15','2','1','21716'), ('81864','item','Memory size','15','8','15','2','1','21716'), ('81865','item','Uncommitted storage space','15','10','15','2','1','21716'), ('81866','gauge','Host memory usage','21','0','21','4','1','21716'), ('81867','item','VMware Tools version','30','8','12','2','1','21716'), ('81868','item','Uptime','30','10','12','2','1','21716'), ('81869','item','VM state','42','0','30','2','1','21716'), ('81870','item','VM Tools status','42','2','30','2','1','21716'), ('81871','item','Cluster name','42','4','30','2','1','21716'), ('81872','item','Datacenter name','42','6','30','2','1','21716'), ('81873','item','Hypervisor name','42','8','30','2','1','21716'), ('81874','item','Snapshot count','42','10','12','2','1','21716'), ('81875','item','Snapshot latest date','54','10','18','2','1','21716'), ('81876','svggraph','CPU usage','0','0','51','6','0','21717'), ('81877','svggraph','CPU latency','0','6','51','6','0','21717'), ('81878','item','Number of virtual CPUs','51','0','21','2','1','21717'), ('81879','item','CPU usage','51','2','21','2','1','21717'), ('81880','item','CPU ready','51','4','21','2','1','21717'), ('81881','item','CPU latency in percents','51','6','21','2','1','21717'), ('81882','item','CPU readiness latency in percent','51','8','21','2','1','21717'), ('81883','item','CPU readiness latency in percent','51','10','21','2','1','21717'), ('81884','svggraph','Host memory usage in percent','0','0','51','4','0','21718'), ('81885','svggraph','Host memory usage','0','4','51','6','0','21718'), ('81886','item','Guest memory swapped','0','10','12','2','1','21718'), ('81887','item','Swapped memory','12','10','12','2','1','21718'), ('81888','item','Private memory','24','10','12','2','1','21718'), ('81889','item','Shared memory','36','10','12','2','1','21718'), ('81890','item','Ballooned memory','48','10','12','2','1','21718'), ('81891','item','Memory size','51','0','21','4','1','21718'), ('81892','item','Guest memory usage','51','4','21','2','1','21718'), ('81893','item','Host memory consumed','51','6','21','2','1','21718'), ('81894','item','Host memory usage','51','8','21','2','1','21718'), ('81895','item','Compressed memory','60','10','12','2','1','21718'), ('81896','graphprototype','Average number of bytes read from the disk','0','0','36','6','0','21719'), ('81897','graphprototype','Average read latency to the disk','0','6','36','6','0','21719'), ('81898','graphprototype','Average number of bytes written to the disk','36','0','36','6','0','21719'), ('81899','graphprototype','Average write latency to the disk','36','6','36','6','0','21719'), ('81900','honeycomb','Total disk space','0','0','36','6','0','21720'), ('81901','graphprototype','Free disk space','0','6','36','6','0','21720'), ('81902','honeycomb','Free disk space','36','0','36','6','0','21720'), ('81903','graphprototype','Free disk space (percentage)','36','6','36','6','0','21720'), ('81904','graphprototype','Network utilization on interface','0','0','72','4','0','21721'), ('81905','graphprototype','Number of bytes received on interface','0','4','36','4','0','21721'), ('81906','graphprototype','Number of packets received on interface','0','8','36','4','0','21721'), ('81907','graphprototype','Number of bytes transmitted on interface','36','4','36','4','0','21721'), ('81908','graphprototype','Number of packets transmitted on interface','36','8','36','4','0','21721'), ('81909','gauge','CPU utilization','0','0','18','4','1','21722'), ('81910','item','Cluster name','0','4','18','2','1','21722'), ('81911','svggraph','Used memory','0','6','51','6','0','21722'), ('81912','item','Hypervisor ping','18','0','12','4','1','21722'), ('81913','item','Datacenter name','18','4','18','2','1','21722'), ('81914','item','Overall status','30','0','18','4','1','21722'), ('81915','item','Full name','36','4','18','2','1','21722'), ('81916','item','Connection state','48','0','24','2','1','21722'), ('81917','item','Uptime','48','2','12','2','1','21722'), ('81918','item','Total memory','51','6','21','3','1','21722'), ('81919','item','Used memory','51','9','21','3','1','21722'), ('81920','item','Version','54','4','18','2','1','21722'), ('81921','item','Number of guest VMs','60','2','12','2','1','21722'), ('81922','item','CPU cores','0','0','15','2','1','21723'), ('81923','svggraph','CPU utilization','0','2','72','5','0','21723'), ('81924','svggraph','CPU usage','0','7','72','5','0','21723'), ('81925','item','CPU threads','15','0','15','2','1','21723'), ('81926','item','CPU frequency','30','0','15','2','1','21723'), ('81927','item','CPU model','45','0','27','2','1','21723'), ('81928','svggraph','Number of broadcast','0','0','36','4','0','21724'), ('81929','svggraph','Number of bytes','0','4','36','4','0','21724'), ('81930','graphprototype','Network interface speed','0','8','72','4','0','21724'), ('81931','svggraph','Number of dropped','36','0','36','4','0','21724'), ('81932','svggraph','Number of errors','36','4','36','4','0','21724'), ('81933','honeycomb','Total size of datastore','0','0','24','4','0','21725'), ('81934','graphprototype','Average read IOps of the datastore','0','4','36','4','0','21725'), ('81935','graphprototype','Average read latency of the datastore','0','8','36','4','0','21725'), ('81936','honeycomb','Free space on datastore','24','0','24','4','0','21725'), ('81937','graphprototype','Average write IOps of the datastore','36','4','36','4','0','21725'), ('81938','graphprototype','Average write latency of the datastore','36','8','36','4','0','21725'), ('81939','graphprototype','Free space on datastore','48','0','24','4','0','21725'), ('81940','itemhistory','Screenshots','0','0','16','10','1','21726'), ('81941','svggraph','Load time','16','0','28','5','0','21726'), ('81942','svggraph','Navigation timing','16','5','28','5','0','21726'), ('81943','svggraph','Navigation size','44','0','28','5','0','21726'), ('81944','svggraph','Resource timing','44','5','28','5','0','21726'), ('81945','item','Agent availability','0','0','18','3','0','21727'), ('81946','item','Version','18','0','18','3','0','21727'), ('81947','graph','','36','0','36','5','0','21727'), ('81948','item','Agent availability','0','0','18','3','0','21728'), ('81949','item','Version','18','0','18','3','0','21728'), ('81950','graph','','36','0','36','5','0','21728'), ('81951','svggraph','Cache usage, in %','0','0','36','6','0','21729'), ('81952','svggraph','Server performance','0','6','72','5','0','21729'), ('81953','svggraph','Values processed','0','11','72','5','0','21729'), ('81954','svggraph','Preprocessing throughput','0','16','36','5','0','21729'), ('81955','svggraph','Internal queues','36','0','36','6','0','21729'), ('81956','svggraph','Preprocessing VPS','36','16','36','5','0','21729'), ('81957','svggraph','Utilization: Discovery processes','0','0','36','6','0','21730'), ('81958','svggraph','Utilization: Synchronous gathering processes','0','6','72','7','0','21730'), ('81959','svggraph','Utilization: Asynchronous gathering processes','0','13','72','6','0','21730'), ('81960','svggraph','Utilization: Internal processes: Core','0','19','72','6','0','21730'), ('81961','svggraph','Utilization: Gathering processes: Trappers','0','25','36','5','0','21730'), ('81962','svggraph','Utilization: Data exchange with server','0','30','72','5','0','21730'), ('81963','svggraph','Utilization: Preprocessing processes','36','0','36','6','0','21730'), ('81964','svggraph','Utilization: Availability processes','36','25','36','5','0','21730'), ('81965','item','Zabbix proxy version','0','0','18','3','0','21731'), ('81966','item','Uptime','18','0','18','3','0','21731'), ('81967','item','Proxy buffer state','36','0','18','3','0','21731'), ('81968','svggraph','Cache usage, in %','0','0','36','6','0','21732'), ('81969','svggraph','Server performance','0','6','72','5','0','21732'), ('81970','svggraph','Values processed','0','11','72','5','0','21732'), ('81971','svggraph','Values to send','0','16','72','5','0','21732'), ('81972','svggraph','Preprocessing throughput','0','21','36','5','0','21732'), ('81973','svggraph','Internal queues','36','0','36','6','0','21732'), ('81974','svggraph','Preprocessing VPS','36','21','36','5','0','21732'), ('81975','svggraph','Utilization: Discovery processes','0','0','36','6','0','21733'), ('81976','svggraph','Utilization: Synchronous gathering processes','0','6','72','7','0','21733'), ('81977','svggraph','Utilization: Asynchronous gathering processes','0','13','72','6','0','21733'), ('81978','svggraph','Utilization: Internal processes: Core','0','19','72','6','0','21733'), ('81979','svggraph','Utilization: Gathering processes: Trappers','0','25','36','5','0','21733'), ('81980','svggraph','Utilization: Data exchange with server','0','30','72','5','0','21733'), ('81981','svggraph','Utilization: Preprocessing processes','36','0','36','6','0','21733'), ('81982','svggraph','Utilization: Availability processes','36','25','36','5','0','21733'), ('81983','item','Zabbix proxy version','0','0','18','3','0','21734'), ('81984','item','Uptime','18','0','18','3','0','21734'), ('81985','item','Proxy buffer state','36','0','18','3','0','21734'), ('81986','svggraph','Cache usage, in %','0','0','36','6','0','21735'), ('81987','svggraph','Server performance','0','6','72','5','0','21735'), ('81988','svggraph','Values processed','0','11','72','5','0','21735'), ('81989','svggraph','Preprocessing throughput','0','16','36','5','0','21735'), ('81990','svggraph','Internal queues','36','0','36','6','0','21735'), ('81991','svggraph','Preprocessing VPS','36','16','36','5','0','21735'), ('81992','svggraph','Utilization: Discovery processes','0','0','36','6','0','21736'), ('81993','svggraph','Utilization: Synchronous gathering processes','0','6','72','7','0','21736'), ('81994','svggraph','Utilization: Asynchronous gathering processes','0','13','72','6','0','21736'), ('81995','svggraph','Utilization: Internal processes: Core','0','19','72','6','0','21736'), ('81996','svggraph','Utilization: Gathering processes: Trappers','0','25','36','5','0','21736'), ('81997','svggraph','Utilization: Data exchange with server','0','30','72','5','0','21736'), ('81998','svggraph','Utilization: Preprocessing processes','36','0','36','6','0','21736'), ('81999','svggraph','Utilization: Availability processes','36','25','36','5','0','21736'), ('82000','item','Zabbix proxy version','0','0','18','3','0','21737'), ('82001','item','Uptime','18','0','18','3','0','21737'), ('82002','item','Proxy buffer state','36','0','18','3','0','21737'), ('82003','svggraph','Cache usage, in %','0','0','36','6','0','21738'), ('82004','svggraph','Server performance','0','6','72','5','0','21738'), ('82005','svggraph','Values processed','0','11','72','5','0','21738'), ('82006','svggraph','Preprocessing throughput','0','16','36','5','0','21738'), ('82007','svggraph','Internal queues','36','0','36','6','0','21738'), ('82008','svggraph','Preprocessing VPS','36','16','36','5','0','21738'), ('82009','svggraph','Utilization: Discovery processes','0','0','36','6','0','21739'), ('82010','svggraph','Utilization: Synchronous gathering processes','0','6','72','7','0','21739'), ('82011','svggraph','Utilization: Asynchronous gathering processes','0','13','72','6','0','21739'), ('82012','svggraph','Utilization: Internal processes: Core','0','19','72','6','0','21739'), ('82013','svggraph','Utilization: Gathering processes: Trappers','0','25','36','5','0','21739'), ('82014','svggraph','Utilization: Data exchange with server','0','30','72','5','0','21739'), ('82015','svggraph','Utilization: Preprocessing processes','36','0','36','6','0','21739'), ('82016','svggraph','Utilization: Availability processes','36','25','36','5','0','21739'), ('82017','item','Zabbix proxy version','0','0','18','3','0','21740'), ('82018','item','Uptime','18','0','18','3','0','21740'), ('82019','item','Proxy buffer state','36','0','18','3','0','21740'), ('82020','svggraph','Cache usage, in %','0','0','36','6','0','21741'), ('82021','svggraph','Server performance','0','6','72','5','0','21741'), ('82022','svggraph','Values processed','0','11','72','5','0','21741'), ('82023','svggraph','Value cache effectiveness','0','16','36','5','0','21741'), ('82024','svggraph','Preprocessing throughput','0','21','36','5','0','21741'), ('82025','svggraph','Internal queues','36','0','36','6','0','21741'), ('82026','svggraph','Trend cache effectiveness, in %','36','16','36','5','0','21741'), ('82027','svggraph','Preprocessing VPS','36','21','36','5','0','21741'), ('82028','svggraph','Utilization: LLD processes','0','0','36','6','0','21742'), ('82029','svggraph','Utilization: Preprocessing processes','0','6','36','6','0','21742'), ('82030','svggraph','Utilization: Synchronous gathering processes','0','12','72','7','0','21742'), ('82031','svggraph','Utilization: Asynchronous gathering processes','0','19','72','6','0','21742'), ('82032','svggraph','Utilization: Internal processes: Core','0','25','36','6','0','21742'), ('82033','svggraph','Utilization: Gathering processes: Trappers','0','31','36','5','0','21742'), ('82034','svggraph','Utilization: Alerting processes','0','36','36','5','0','21742'), ('82035','svggraph','Utilization: Proxy management and data exchange','0','41','72','5','0','21742'), ('82036','svggraph','Utilization: Discovery processes','36','0','36','6','0','21742'), ('82037','svggraph','Utilization: Connector processes','36','6','36','6','0','21742'), ('82038','svggraph','Utilization: Internal processes: Housekeeping','36','25','36','6','0','21742'), ('82039','svggraph','Utilization: Availability processes','36','31','36','5','0','21742'), ('82040','svggraph','Utilization: Reporting processes','36','36','36','5','0','21742'), ('82041','item','Zabbix server version','0','0','16','5','0','21743'), ('82042','honeycomb','High availability: Node state','16','0','56','5','0','21743'), ('82043','svggraph','Cache usage, in %','0','0','36','6','0','21744'), ('82044','svggraph','Server performance','0','6','72','5','0','21744'), ('82045','svggraph','Values processed','0','11','72','5','0','21744'), ('82046','svggraph','Value cache effectiveness','0','16','36','5','0','21744'), ('82047','svggraph','Preprocessing throughput','0','21','36','5','0','21744'), ('82048','svggraph','Internal queues','36','0','36','6','0','21744'), ('82049','svggraph','Trend cache effectiveness, in %','36','16','36','5','0','21744'), ('82050','svggraph','Preprocessing VPS','36','21','36','5','0','21744'), ('82051','svggraph','Utilization: LLD processes','0','0','36','6','0','21745'), ('82052','svggraph','Utilization: Preprocessing processes','0','6','36','6','0','21745'), ('82053','svggraph','Utilization: Synchronous gathering processes','0','12','72','7','0','21745'), ('82054','svggraph','Utilization: Asynchronous gathering processes','0','19','72','6','0','21745'), ('82055','svggraph','Utilization: Internal processes: Core','0','25','36','6','0','21745'), ('82056','svggraph','Utilization: Gathering processes: Trappers','0','31','36','5','0','21745'), ('82057','svggraph','Utilization: Alerting processes','0','36','36','5','0','21745'), ('82058','svggraph','Utilization: Proxy management and data exchange','0','41','72','5','0','21745'), ('82059','svggraph','Utilization: Discovery processes','36','0','36','6','0','21745'), ('82060','svggraph','Utilization: Connector processes','36','6','36','6','0','21745'), ('82061','svggraph','Utilization: Internal processes: Housekeeping','36','25','36','6','0','21745'), ('82062','svggraph','Utilization: Availability processes','36','31','36','5','0','21745'), ('82063','svggraph','Utilization: Reporting processes','36','36','36','5','0','21745'), ('82064','item','Zabbix server version','0','0','16','5','0','21746'), ('82065','honeycomb','High availability: Node state','16','0','56','5','0','21746'), ('82066','svggraph','Cache usage, in %','0','0','36','6','0','21747'), ('82067','svggraph','Server performance','0','6','72','5','0','21747'), ('82068','svggraph','Values processed','0','11','72','5','0','21747'), ('82069','svggraph','Value cache effectiveness','0','16','36','5','0','21747'), ('82070','svggraph','Preprocessing throughput','0','21','36','5','0','21747'), ('82071','svggraph','Internal queues','36','0','36','6','0','21747'), ('82072','svggraph','Trend cache effectiveness, in %','36','16','36','5','0','21747'), ('82073','svggraph','Preprocessing VPS','36','21','36','5','0','21747'), ('82074','svggraph','Utilization: LLD processes','0','0','36','6','0','21748'), ('82075','svggraph','Utilization: Preprocessing processes','0','6','36','6','0','21748'), ('82076','svggraph','Utilization: Synchronous gathering processes','0','12','72','7','0','21748'), ('82077','svggraph','Utilization: Asynchronous gathering processes','0','19','72','6','0','21748'), ('82078','svggraph','Utilization: Internal processes: Core','0','25','36','6','0','21748'), ('82079','svggraph','Utilization: Gathering processes: Trappers','0','31','36','5','0','21748'), ('82080','svggraph','Utilization: Alerting processes','0','36','36','5','0','21748'), ('82081','svggraph','Utilization: Proxy management and data exchange','0','41','72','5','0','21748'), ('82082','svggraph','Utilization: Discovery processes','36','0','36','6','0','21748'), ('82083','svggraph','Utilization: Connector processes','36','6','36','6','0','21748'), ('82084','svggraph','Utilization: Internal processes: Housekeeping','36','25','36','6','0','21748'), ('82085','svggraph','Utilization: Availability processes','36','31','36','5','0','21748'), ('82086','svggraph','Utilization: Reporting processes','36','36','36','5','0','21748'), ('82087','item','Zabbix server version','0','0','16','5','0','21749'), ('82088','honeycomb','High availability: Node state','16','0','56','5','0','21749'), ('82089','svggraph','Cache usage, in %','0','0','36','6','0','21750'), ('82090','svggraph','Server performance','0','6','72','5','0','21750'), ('82091','svggraph','Values processed','0','11','72','5','0','21750'), ('82092','svggraph','Value cache effectiveness','0','16','36','5','0','21750'), ('82093','svggraph','Preprocessing throughput','0','21','36','5','0','21750'), ('82094','svggraph','Internal queues','36','0','36','6','0','21750'), ('82095','svggraph','Trend cache effectiveness, in %','36','16','36','5','0','21750'), ('82096','svggraph','Preprocessing VPS','36','21','36','5','0','21750'), ('82097','svggraph','Utilization: LLD processes','0','0','36','6','0','21751'), ('82098','svggraph','Utilization: Preprocessing processes','0','6','36','6','0','21751'), ('82099','svggraph','Utilization: Synchronous gathering processes','0','12','72','7','0','21751'), ('82100','svggraph','Utilization: Asynchronous gathering processes','0','19','72','6','0','21751'), ('82101','svggraph','Utilization: Internal processes: Core','0','25','36','6','0','21751'), ('82102','svggraph','Utilization: Gathering processes: Trappers','0','31','36','5','0','21751'), ('82103','svggraph','Utilization: Alerting processes','0','36','36','5','0','21751'), ('82104','svggraph','Utilization: Proxy management and data exchange','0','41','72','5','0','21751'), ('82105','svggraph','Utilization: Discovery processes','36','0','36','6','0','21751'), ('82106','svggraph','Utilization: Connector processes','36','6','36','6','0','21751'), ('82107','svggraph','Utilization: Internal processes: Housekeeping','36','25','36','6','0','21751'), ('82108','svggraph','Utilization: Availability processes','36','31','36','5','0','21751'), ('82109','svggraph','Utilization: Reporting processes','36','36','36','5','0','21751'), ('82110','item','Zabbix server version','0','0','16','5','0','21752'), ('82111','honeycomb','High availability: Node state','16','0','56','5','0','21752'), ('82112','item','Mode','0','0','12','2','0','21753'), ('82113','graph','','0','2','36','5','0','21753'), ('82114','graph','','0','7','36','5','0','21753'), ('82115','item','Uptime','12','0','12','2','0','21753'), ('82116','item','Version','24','0','12','2','0','21753'), ('82117','graph','','36','2','36','5','0','21753'), ('82118','graph','','36','7','36','5','0','21753'), ('82119','graphprototype','','0','0','36','15','0','21754'), ('82120','graphprototype','','36','0','36','15','0','21754'), ('82121','graph','Hikvision camera: CPU utilization','0','0','36','4','0','21755'), ('82122','graph','Hikvision camera: Memory','36','0','36','4','0','21755'), ('82123','item','Vault age','0','0','26','2','0','21756'), ('82124','item','Backup jobs','0','2','13','2','0','21756'), ('82125','itemnavigator','Jobs grouped','0','4','28','8','0','21756'), ('82126','item','Selected job','0','12','28','1','1','21756'), ('82127','item','Restore jobs','13','2','13','2','0','21756'), ('82128','item','Recovery points','26','0','13','2','0','21756'), ('82129','item','Copy jobs','26','2','13','2','0','21756'), ('82130','honeycomb','Jobs','28','4','44','8','0','21756'), ('82131','item','Selected job','28','12','44','1','1','21756'), ('82132','item','Average size','39','0','13','2','0','21756'), ('82133','item','Total jobs','39','2','13','2','0','21756'), ('82134','item','Lock status','52','0','20','2','0','21756'), ('82135','item','Vault state','52','2','20','2','0','21756'), ('82136','graphprototype','','0','0','72','25','0','21757'), ('82137','graphprototype','','0','0','72','25','0','21758'), ('82138','graphprototype','','0','0','72','20','0','21759'), ('82139','item','Service count','0','0','24','5','0','21760'), ('82140','graph','','0','5','72','5','0','21760'), ('82141','graph','','0','10','72','5','0','21760'), ('82142','graph','','0','15','72','5','0','21760'), ('82143','item','Task count','24','0','24','5','0','21760'), ('82144','item','Container instance count','48','0','24','5','0','21760'), ('82145','graphprototype','','0','0','72','5','0','21761'), ('82146','graphprototype','','0','5','72','5','0','21761'), ('82147','graphprototype','','0','10','72','5','0','21761'), ('82148','item','Service count','0','0','24','5','0','21762'), ('82149','graph','','0','5','72','5','0','21762'), ('82150','graph','','0','10','72','5','0','21762'), ('82151','graph','','0','15','72','5','0','21762'), ('82152','graph','','0','20','72','5','0','21762'), ('82153','item','Task count','24','0','24','5','0','21762'), ('82154','item','Container instance count','48','0','24','5','0','21762'), ('82155','graphprototype','','0','0','72','5','0','21763'), ('82156','graphprototype','','0','5','72','5','0','21763'), ('82157','graphprototype','','0','10','72','5','0','21763'), ('82158','svggraph','AWS ELB ALB: HTTP Code','0','0','72','5','0','21764'), ('82159','svggraph','AWS ELB ALB: Connection Count','0','5','72','5','0','21764'), ('82160','svggraph','AWS ELB ALB: Requests Count and Response Time','0','10','72','5','0','21764'), ('82161','svggraph','AWS ELB ALB: Consumed LCUs and Processed Bytes','0','15','72','5','0','21764'), ('82162','piechart','Healthy Host Count','0','0','12','4','0','21765'), ('82163','svggraph','HTTP Code Target Group','0','4','72','5','0','21765'), ('82164','svggraph','Request Count Per Target','0','9','72','5','0','21765'), ('82165','piechart','Unhealthy Host Count','12','0','12','4','0','21765'), ('82166','piechart','Healthy State Routing','24','0','12','4','0','21765'), ('82167','piechart','Unhealthy State Routing','36','0','12','4','0','21765'), ('82168','piechart','Healthy State DNS','48','0','12','4','0','21765'), ('82169','piechart','Unhealthy State DNS','60','0','12','4','0','21765'), ('82170','item','Port Allocation Error Count','0','0','18','5','0','21766'), ('82171','graph','','0','5','72','5','0','21766'), ('82172','graph','','0','10','72','5','0','21766'), ('82173','graph','','0','15','72','5','0','21766'), ('82174','graph','','0','20','72','5','0','21766'), ('82175','graphprototype','','18','0','18','5','0','21766'), ('82176','graphprototype','','36','0','18','5','0','21766'), ('82177','item','Unhealthy Routing Flow Count','54','0','18','5','0','21766'), ('82178','graph','','0','0','72','5','0','21767'), ('82179','graph','','0','5','72','5','0','21767'), ('82180','graph','','0','10','72','5','0','21767'), ('82181','graph','','0','15','72','5','0','21767'), ('82182','graph','','0','0','72','5','0','21768'), ('82183','graph','','0','5','72','5','0','21768'), ('82184','graph','','0','10','72','5','0','21768'), ('82185','graph','','0','0','72','5','0','21769'), ('82186','graph','','0','5','72','5','0','21769'), ('82187','graph','','0','10','72','5','0','21769'), ('82188','graph','','0','0','72','5','0','21770'), ('82189','graph','','0','5','72','5','0','21770'), ('82190','graph','','0','10','72','5','0','21770'), ('82191','graph','','0','15','72','5','0','21770'), ('82192','graph','','0','0','24','5','0','21771'), ('82193','graph','','24','0','24','5','0','21771'), ('82194','graph','','48','0','24','5','0','21771'), ('82195','graph','','0','0','36','5','0','21772'), ('82196','graph','','36','0','36','5','0','21772'), ('82197','item','Total jobs','0','0','15','2','0','21773'), ('82198','item','Backup jobs','0','2','15','2','0','21773'), ('82199','itemnavigator','Jobs grouped by resource','0','4','22','7','0','21773'), ('82200','item','Selected job','0','11','22','1','1','21773'), ('82201','item','In progress jobs','15','0','14','2','0','21773'), ('82202','item','Restore jobs','15','2','14','2','0','21773'), ('82203','honeycomb','Job statuses','22','4','50','7','0','21773'), ('82204','item','Selected job','22','11','50','1','1','21773'), ('82205','item','Failed jobs','29','0','14','2','0','21773'), ('82206','item','Deleting backup data jobs','29','2','14','2','0','21773'), ('82207','item','Cancelled jobs','43','0','14','2','0','21773'), ('82208','item','Configuring backup jobs','43','2','14','2','0','21773'), ('82209','item','Completed jobs','57','0','15','2','0','21773'), ('82210','item','Completed with warning jobs','57','2','15','2','0','21773'), ('82211','graphprototype','','0','0','72','25','0','21774'), ('82212','graphprototype','','0','0','72','25','0','21775'), ('82213','graphprototype','','0','0','72','20','0','21776'), ('82214','item','Service Availability','0','0','18','4','0','21777'), ('82215','graph','','0','4','72','5','0','21777'), ('82216','graph','','0','9','72','5','0','21777'), ('82217','graph','','0','14','72','5','0','21777'), ('82218','item','Provisioned Throughput','18','0','18','4','0','21777'), ('82219','item','Normalized RU Consumption','36','0','18','4','0','21777'), ('82220','item','Document Count','54','0','18','4','0','21777'), ('82221','itemnavigator','Month','0','0','20','6','0','21778'), ('82222','itemnavigator','Service','0','6','20','6','0','21778'), ('82223','piechart','Month costs','20','0','32','12','1','21778'), ('82224','itemnavigator','Location','52','0','20','6','0','21778'), ('82225','itemnavigator','Resource group','52','6','20','6','0','21778'), ('82226','itemnavigator','Service','0','0','25','7','0','21779'), ('82227','svggraph','Daily cost','25','0','47','7','1','21779'), ('82228','item','Deadlocks','0','0','12','3','0','21780'), ('82229','item','SQL Server process memory percent','0','3','12','3','0','21780'), ('82230','item','CPU limit','0','6','12','3','0','21780'), ('82231','item','Data space allocated','0','9','12','3','0','21780'), ('82232','item','Connections successful','0','12','12','3','0','21780'), ('82233','item','Availability state','12','0','12','3','0','21780'), ('82234','item','SQL Server process core percent','12','3','12','3','0','21780'), ('82235','item','CPU used','12','6','12','3','0','21780'), ('82236','item','Data space used','12','9','12','3','0','21780'), ('82237','item','Connections failed: System errors','12','12','12','3','0','21780'), ('82238','itemhistory','Availability status detailed','24','0','48','3','0','21780'), ('82239','item','Sessions count','24','3','12','3','0','21780'), ('82240','graph','Percentage CPU','24','6','48','3','0','21780'), ('82241','graph','Storage utilization','24','9','48','3','0','21780'), ('82242','graph','Connections','24','12','48','3','0','21780'), ('82243','item','Workers percentage','36','3','12','3','0','21780'), ('82244','item','Full backup storage size','48','3','12','3','0','21780'), ('82245','item','Data IO percentage','60','3','12','3','0','21780'), ('82246','item','Deadlocks','0','0','12','3','0','21781'), ('82247','item','SQL Server process memory percent','0','3','12','3','0','21781'), ('82248','item','DTU limit','0','6','12','3','0','21781'), ('82249','item','Data space allocated','0','9','12','3','0','21781'), ('82250','item','Connections successful','0','12','12','3','0','21781'), ('82251','item','Availability state','12','0','12','3','0','21781'), ('82252','item','SQL Server process core percent','12','3','12','3','0','21781'), ('82253','item','DTU used','12','6','12','3','0','21781'), ('82254','item','Data space used','12','9','12','3','0','21781'), ('82255','item','Connections failed: System errors','12','12','12','3','0','21781'), ('82256','itemhistory','Availability status detailed','24','0','48','3','0','21781'), ('82257','item','Sessions count','24','3','12','3','0','21781'), ('82258','graph','DTU percentage','24','6','48','3','0','21781'), ('82259','graph','Storage utilization','24','9','48','3','0','21781'), ('82260','graph','Connections','24','12','48','3','0','21781'), ('82261','item','Workers percentage','36','3','12','3','0','21781'), ('82262','item','CPU percentage','48','3','12','3','0','21781'), ('82263','item','Data IO percentage','60','3','12','3','0','21781'), ('82264','item','Deadlocks','0','0','12','3','0','21782'), ('82265','item','SQL Server process memory percent','0','3','12','3','0','21782'), ('82266','item','CPU limit','0','6','12','3','0','21782'), ('82267','item','Data space allocated','0','9','12','3','0','21782'), ('82268','item','Connections successful','0','12','12','3','0','21782'), ('82269','item','Availability state','12','0','12','3','0','21782'), ('82270','item','SQL Server process core percent','12','3','12','3','0','21782'), ('82271','item','CPU used','12','6','12','3','0','21782'), ('82272','item','Data space used','12','9','12','3','0','21782'), ('82273','item','Connections failed: System errors','12','12','12','3','0','21782'), ('82274','itemhistory','Availability status detailed','24','0','48','3','0','21782'), ('82275','item','Sessions percentage','24','3','12','3','0','21782'), ('82276','graph','Percentage CPU','24','6','48','3','0','21782'), ('82277','graph','Storage utilization','24','9','48','3','0','21782'), ('82278','graph','Connections','24','12','48','3','0','21782'), ('82279','item','Workers percentage','36','3','12','3','0','21782'), ('82280','item','App memory percentage','48','3','12','3','0','21782'), ('82281','item','Data IO percentage','60','3','12','3','0','21782'), ('82282','item','Memory utilization','0','0','12','3','0','21783'), ('82283','item','CPU credits consumed','0','3','12','3','0','21783'), ('82284','item','Storage used','0','6','12','3','0','21783'), ('82285','item','Network in','0','9','12','3','0','21783'), ('82286','item','Connections active','0','12','12','3','0','21783'), ('82287','item','Percentage CPU','12','0','12','3','0','21783'), ('82288','item','CPU credits remaining','12','3','12','3','0','21783'), ('82289','item','Storage limit','12','6','12','3','0','21783'), ('82290','item','Network out','12','9','12','3','0','21783'), ('82291','item','Connections total','12','12','12','3','0','21783'), ('82292','item','Availability state','24','0','12','3','0','21783'), ('82293','item','Backup storage used','24','3','12','3','0','21783'), ('82294','graph','Storage utilization','24','6','48','3','0','21783'), ('82295','graph','Network traffic','24','9','48','3','0','21783'), ('82296','graph','Connections','24','12','48','3','0','21783'), ('82297','itemhistory','Availability status detailed','36','0','36','3','0','21783'), ('82298','item','Queries','36','3','12','3','0','21783'), ('82299','item','IO consumption percent','48','3','12','3','0','21783'), ('82300','item','Replication lag','60','3','12','3','0','21783'), ('82301','item','Memory utilization','0','0','12','3','0','21784'), ('82302','item','Network in','0','3','12','3','0','21784'), ('82303','item','Server log storage limit','0','6','12','3','0','21784'), ('82304','item','Storage limit','0','9','12','3','0','21784'), ('82305','item','Connections active','0','12','12','3','0','21784'), ('82306','item','Percentage CPU','12','0','12','3','0','21784'), ('82307','item','Network out','12','3','12','3','0','21784'), ('82308','item','Server log storage used','12','6','12','3','0','21784'), ('82309','item','Storage used','12','9','12','3','0','21784'), ('82310','item','Connections failed','12','12','12','3','0','21784'), ('82311','item','Availability state','24','0','12','3','0','21784'), ('82312','graph','Network traffic','24','3','48','3','0','21784'), ('82313','graph','Server log storage utilization','24','6','48','3','0','21784'), ('82314','graph','Storage utilization','24','9','48','3','0','21784'), ('82315','graph','Connections','24','12','48','3','0','21784'), ('82316','itemhistory','Availability status detailed','36','0','36','3','0','21784'), ('82317','item','Memory utilization','0','0','12','3','0','21785'), ('82318','item','Data disk queue depth','0','3','12','3','0','21785'), ('82319','item','Storage free','0','6','12','3','0','21785'), ('82320','item','Network in','0','9','12','3','0','21785'), ('82321','item','Connections active','0','12','12','3','0','21785'), ('82322','item','Percentage CPU','12','0','12','3','0','21785'), ('82323','item','Data disk IOPS','12','3','12','3','0','21785'), ('82324','item','Storage used','12','6','12','3','0','21785'), ('82325','item','Network out','12','9','12','3','0','21785'), ('82326','item','Connections failed','12','12','12','3','0','21785'), ('82327','item','Availability state','24','0','12','3','0','21785'), ('82328','item','Data disk read IOPS','24','3','12','3','0','21785'), ('82329','graph','Storage utilization','24','6','48','3','0','21785'), ('82330','graph','Network traffic','24','9','48','3','0','21785'), ('82331','graph','Connections','24','12','48','3','0','21785'), ('82332','itemhistory','Availability status detailed','36','0','36','3','0','21785'), ('82333','item','Data disk write IOPS','36','3','12','3','0','21785'), ('82334','item','Data disk read Bps','48','3','12','3','0','21785'), ('82335','item','Data disk write Bps','60','3','12','3','0','21785'), ('82336','item','Memory utilization','0','0','12','3','0','21786'), ('82337','item','Network in','0','3','12','3','0','21786'), ('82338','item','Server log storage limit','0','6','12','3','0','21786'), ('82339','item','Storage limit','0','9','12','3','0','21786'), ('82340','item','Connections active','0','12','12','3','0','21786'), ('82341','item','Percentage CPU','12','0','12','3','0','21786'), ('82342','item','Network out','12','3','12','3','0','21786'), ('82343','item','Server log storage used','12','6','12','3','0','21786'), ('82344','item','Storage used','12','9','12','3','0','21786'), ('82345','item','Connections failed','12','12','12','3','0','21786'), ('82346','item','Availability state','24','0','12','3','0','21786'), ('82347','graph','Network traffic','24','3','48','3','0','21786'), ('82348','graph','Server log storage utilization','24','6','48','3','0','21786'), ('82349','graph','Storage utilization','24','9','48','3','0','21786'), ('82350','graph','Connections','24','12','48','3','0','21786'), ('82351','itemhistory','Availability status detailed','36','0','36','3','0','21786'), ('82352','item','Availability state','0','0','18','2','0','21787'), ('82353','gauge','Average CPU utilization','0','2','18','4','0','21787'), ('82354','gauge','Storage space utilization','0','6','18','4','0','21787'), ('82355','svggraph','IO bytes read/write','0','10','72','4','0','21787'), ('82356','item','Instance state','18','0','18','2','0','21787'), ('82357','svggraph','Average CPU utilization','18','2','54','4','0','21787'), ('82358','svggraph','Storage space utilization','18','6','54','4','0','21787'), ('82359','item','Instance provisioning state','36','0','18','2','0','21787'), ('82360','item','IO request count','54','0','18','2','0','21787'), ('82361','clock','Local time','0','0','12','3','0','21788'), ('82362','item','CPU credits consumed','0','3','12','3','0','21788'), ('82363','item','Network in','0','6','12','3','0','21788'), ('82364','item','Disk read rate','0','9','12','3','0','21788'), ('82365','item','OS disk read operations/sec','0','12','12','3','0','21788'), ('82366','item','Inbound flows','0','15','12','3','0','21788'), ('82367','item','Available memory','12','0','12','3','0','21788'), ('82368','item','CPU credits remaining','12','3','12','3','0','21788'), ('82369','item','Network out','12','6','12','3','0','21788'), ('82370','item','Disk write rate','12','9','12','3','0','21788'), ('82371','item','OS disk write operations/sec','12','12','12','3','0','21788'), ('82372','item','Outbound flows','12','15','12','3','0','21788'), ('82373','item','Availability state','24','0','12','3','0','21788'), ('82374','graph','Percentage CPU','24','3','48','3','0','21788'), ('82375','graph','Network traffic','24','6','48','3','0','21788'), ('82376','graph','Disk read/write bytes','24','9','48','3','0','21788'), ('82377','graph','OS disk read/write rates','24','12','48','3','0','21788'), ('82378','graph','Flows','24','15','48','3','0','21788'), ('82379','itemhistory','Availability status detailed','36','0','36','3','0','21788'), ('82380','item','Virtual machine count','0','0','12','3','0','21789'), ('82381','item','CPU credits consumed','0','3','12','3','0','21789'), ('82382','item','Network in','0','6','12','3','0','21789'), ('82383','item','Disk read','0','9','12','3','0','21789'), ('82384','item','OS disk read operations/sec','0','12','12','3','0','21789'), ('82385','item','Inbound flows','0','15','12','3','0','21789'), ('82386','item','Available memory','12','0','12','3','0','21789'), ('82387','item','CPU credits remaining','12','3','12','3','0','21789'), ('82388','item','Network out','12','6','12','3','0','21789'), ('82389','item','Disk write','12','9','12','3','0','21789'), ('82390','item','OS disk write operations/sec','12','12','12','3','0','21789'), ('82391','item','Outbound flows','12','15','12','3','0','21789'), ('82392','item','Availability state','24','0','12','3','0','21789'), ('82393','graph','CPU Utilization','24','3','48','3','0','21789'), ('82394','graph','Network traffic','24','6','48','3','0','21789'), ('82395','graph','Disk read/write bytes','24','9','48','3','0','21789'), ('82396','graph','OS disk read/write rates','24','12','48','3','0','21789'), ('82397','graph','Flows','24','15','48','3','0','21789'), ('82398','itemhistory','Availability status detailed','36','0','36','3','0','21789'), ('82399','item','GCE instances total','0','0','24','5','0','21790'), ('82400','item','Cloud SQL total','0','5','18','5','0','21790'), ('82401','graphprototype','','0','10','36','5','0','21790'), ('82402','item','Cloud SQL MySQL','18','5','18','5','0','21790'), ('82403','item','GCE regular instances','24','0','24','5','0','21790'), ('82404','item','Cloud SQL PostgreSQL','36','5','18','5','0','21790'), ('82405','graphprototype','','36','10','36','5','0','21790'), ('82406','item','GCE COS instances','48','0','24','5','0','21790'), ('82407','item','Cloud SQL MSSQL','54','5','18','5','0','21790'), ('82408','graph','','0','0','36','5','0','21791'), ('82409','graph','','0','5','36','5','0','21791'), ('82410','graph','','0','10','36','5','0','21791'), ('82411','graph','','0','15','36','5','0','21791'), ('82412','graph','','0','20','36','5','0','21791'), ('82413','graph','','0','25','36','5','0','21791'), ('82414','graph','','36','0','36','5','0','21791'), ('82415','graph','','36','5','36','5','0','21791'), ('82416','graph','','36','10','36','5','0','21791'), ('82417','graph','','36','15','36','5','0','21791'), ('82418','graph','','36','20','36','5','0','21791'), ('82419','graph','','36','25','36','5','0','21791'), ('82420','graph','','0','0','36','5','0','21792'), ('82421','graph','','36','0','36','5','0','21792'), ('82422','graph','','0','0','36','5','0','21793'), ('82423','graph','','0','5','36','5','0','21793'), ('82424','graph','','0','10','36','5','0','21793'), ('82425','graph','','0','15','36','5','0','21793'), ('82426','graph','','0','20','36','5','0','21793'), ('82427','graph','','36','0','36','5','0','21793'), ('82428','graph','','36','5','36','5','0','21793'), ('82429','graph','','36','10','36','5','0','21793'), ('82430','graph','','36','15','36','5','0','21793'), ('82431','graph','','36','20','36','5','0','21793'), ('82432','graph','','0','0','72','5','0','21794'), ('82433','item','I/O Thread State','0','5','18','3','0','21794'), ('82434','item','I/O Thread Error','18','5','18','3','0','21794'), ('82435','item','SQL Thread State','36','5','18','3','0','21794'), ('82436','item','SQL Thread Error','54','5','18','3','0','21794'), ('82437','graph','','0','0','36','5','0','21795'), ('82438','graph','','0','5','36','5','0','21795'), ('82439','graph','','0','10','36','5','0','21795'), ('82440','graph','','0','15','36','5','0','21795'), ('82441','graph','','0','20','36','5','0','21795'), ('82442','graphprototype','','0','25','36','5','0','21795'), ('82443','graph','','36','0','36','5','0','21795'), ('82444','graph','','36','5','36','5','0','21795'), ('82445','graph','','36','10','36','5','0','21795'), ('82446','graph','','36','15','36','5','0','21795'), ('82447','graph','','36','20','36','5','0','21795'), ('82448','graphprototype','','36','25','36','5','0','21795'), ('82449','graph','','0','0','36','5','0','21796'), ('82450','graph','','36','0','36','5','0','21796'), ('82451','graph','','0','0','36','5','0','21797'), ('82452','graph','','0','5','24','5','0','21797'), ('82453','graphprototype','','0','10','36','5','0','21797'), ('82454','graph','','0','15','72','5','0','21797'), ('82455','graph','','24','5','24','5','0','21797'), ('82456','graph','','36','0','36','5','0','21797'), ('82457','graphprototype','','36','10','36','5','0','21797'), ('82458','graph','','48','5','24','5','0','21797'), ('82459','graph','','0','0','36','5','0','21798'), ('82460','graph','','0','5','72','5','0','21798'), ('82461','graph','','36','0','36','5','0','21798'), ('82462','item','State','0','0','27','4','1','21799'), ('82463','graph','CPU utilization','0','4','21','7','0','21799'), ('82464','graph','Storage stats','21','4','21','7','0','21799'), ('82465','item','Availability','27','0','15','4','1','21799'), ('82466','item','Connection latency','42','0','30','2','1','21799'), ('82467','gauge','CPU utilization','42','2','15','3','1','21799'), ('82468','item','Sessions','42','5','15','3','1','21799'), ('82469','item','Running statements','42','8','15','3','1','21799'), ('82470','gauge','Storage utilization','57','2','15','3','1','21799'), ('82471','item','Execute count','57','5','15','3','1','21799'), ('82472','item','Queued statements','57','8','15','3','1','21799'), ('82473','gauge','CPU utilization','0','0','36','3','1','21800'), ('82474','graph','CPU utilization','0','3','36','8','0','21800'), ('82475','gauge','CPU time','36','0','36','3','1','21800'), ('82476','graph','CPU time','36','3','36','8','0','21800'), ('82477','gauge','Storage utilization','0','0','18','3','1','21801'), ('82478','graph','Storage utilization','0','3','18','8','0','21801'), ('82479','item','Max storage space','18','0','18','3','1','21801'), ('82480','graph','Storage stats','18','3','54','8','0','21801'), ('82481','item','Allocated Storage Space','36','0','18','3','1','21801'), ('82482','item','Used storage space','54','0','18','3','1','21801'), ('82483','item','Physical reads','0','0','15','3','1','21802'), ('82484','graph','Read/writes','0','3','27','8','0','21802'), ('82485','item','Physical writes','15','0','12','3','1','21802'), ('82486','item','Physical read total bytes','27','0','15','3','1','21802'), ('82487','graph','Physical total read/write bytes','27','3','27','8','0','21802'), ('82488','item','Physical write total bytes','42','0','12','3','1','21802'), ('82489','item','Logical reads session','54','0','18','3','1','21802'), ('82490','graph','Logical reads session','54','3','18','8','0','21802'), ('82491','item','Sessions','0','0','15','3','1','21803'), ('82492','item','Failed connections','0','3','15','3','1','21803'), ('82493','graph','Session stats','0','6','30','5','0','21803'), ('82494','item','Logons','15','0','15','3','1','21803'), ('82495','item','Failed logons','15','3','15','3','1','21803'), ('82496','item','Wait time','30','0','15','3','1','21803'), ('82497','graph','Wait time','30','3','15','8','0','21803'), ('82498','item','DB time','45','0','15','3','1','21803'), ('82499','graph','DB time','45','3','15','8','0','21803'), ('82500','item','Connection latency','60','0','12','3','1','21803'), ('82501','graph','Connection latency','60','3','12','8','0','21803'), ('82502','item','User calls','0','0','18','3','1','21804'), ('82503','graph','User calls','0','3','18','8','0','21804'), ('82504','item','User commits','18','0','18','3','1','21804'), ('82505','graph','User commits','18','3','18','8','0','21804'), ('82506','item','User rollbacks','36','0','18','3','1','21804'), ('82507','graph','User rollbacks','36','3','18','8','0','21804'), ('82508','item','Execute count','54','0','18','3','1','21804'), ('82509','graph','Execute count','54','3','18','8','0','21804'), ('82510','item','Parse count (hard)','0','0','24','3','1','21805'), ('82511','graph','Parse count (hard)','0','3','24','8','0','21805'), ('82512','item','Parse count (failures)','24','0','24','3','1','21805'), ('82513','graph','Parse count (failures)','24','3','24','8','0','21805'), ('82514','item','Parse count (total)','48','0','24','3','1','21805'), ('82515','graph','Parse count (total)','48','3','24','8','0','21805'), ('82516','item','Bytes received from client','0','0','18','3','1','21806'), ('82517','graph','SQL*Net client bytes','0','3','36','8','0','21806'), ('82518','item','Bytes sent to client','18','0','18','3','1','21806'), ('82519','item','Bytes received from DBLink','36','0','18','3','1','21806'), ('82520','graph','SQL*Net DBLink bytes','36','3','36','8','0','21806'), ('82521','item','Bytes sent to DBLink','54','0','18','3','1','21806'), ('82522','item','Query latency','0','0','21','3','1','21807'), ('82523','graph','Query latency','0','3','21','8','0','21807'), ('82524','item','Running statements','21','0','12','3','1','21807'), ('82525','graph','Statements','21','3','36','8','0','21807'), ('82526','item','Queued statements','33','0','12','3','1','21807'), ('82527','item','Transaction count','45','0','12','3','1','21807'), ('82528','item','DB block changes','57','0','15','3','1','21807'), ('82529','item','Redo generated','57','3','15','3','1','21807'), ('82530','item','Availability','0','0','27','3','1','21808'), ('82531','item','Volume read operations','0','3','18','3','1','21808'), ('82532','graph','Operations','0','6','36','5','0','21808'), ('82533','item','Volume write operations','18','3','18','3','1','21808'), ('82534','item','Guaranteed IOPS','27','0','15','3','1','21808'), ('82535','item','Volume read throughput','36','3','18','3','1','21808'), ('82536','graph','Throughput','36','6','36','5','0','21808'), ('82537','item','Guaranteed throughput','42','0','15','3','1','21808'), ('82538','item','Volume write throughput','54','3','18','3','1','21808'), ('82539','item','Guaranteed VPUs/GB','57','0','15','3','1','21808'), ('82540','item','Availability','0','0','27','3','1','21809'), ('82541','item','Volume read operations','0','3','18','3','1','21809'), ('82542','graph','Operations','0','6','36','5','0','21809'), ('82543','item','Volume write operations','18','3','18','3','1','21809'), ('82544','item','Guaranteed IOPS','27','0','15','3','1','21809'), ('82545','item','Volume read throughput','36','3','18','3','1','21809'), ('82546','graph','Throughput','36','6','36','5','0','21809'), ('82547','item','Guaranteed throughput','42','0','15','3','1','21809'), ('82548','item','Volume write throughput','54','3','18','3','1','21809'), ('82549','item','Guaranteed VPUs/GB','57','0','15','3','1','21809'), ('82550','item','State','0','0','27','4','1','21810'), ('82551','item','Disk bytes read','0','4','15','3','1','21810'), ('82552','item','Disk read I/O','0','7','15','3','1','21810'), ('82553','item','Disk bytes written','15','4','15','3','1','21810'), ('82554','item','Disk write I/O','15','7','15','3','1','21810'), ('82555','item','Availability','27','0','15','4','1','21810'), ('82556','item','Net bytes in','30','4','18','3','1','21810'), ('82557','item','Net bytes out','30','7','18','3','1','21810'), ('82558','item','Load average','42','0','30','4','1','21810'), ('82559','gauge','CPU','48','4','12','3','1','21810'), ('82560','item','Memory allocation stalls','48','7','24','3','1','21810'), ('82561','gauge','Memory','60','4','12','3','1','21810'), ('82562','gauge','CPU','0','0','24','3','1','21811'), ('82563','graph','CPU utilization','0','3','24','8','0','21811'), ('82564','gauge','Memory','24','0','48','3','1','21811'), ('82565','graph','Memory utilization','24','3','24','8','0','21811'), ('82566','graph','Memory allocation stalls','48','3','24','8','0','21811'), ('82567','item','Net bytes in','0','0','36','3','1','21812'), ('82568','graph','Network bytes in','0','3','36','8','0','21812'), ('82569','item','Net bytes out','36','0','36','3','1','21812'), ('82570','graph','Network bytes out','36','3','36','8','0','21812'), ('82571','item','Disk bytes read','0','0','18','3','1','21813'), ('82572','graph','Disk bytes read','0','3','18','8','0','21813'), ('82573','item','Disk bytes written','18','0','18','3','1','21813'), ('82574','graph','Disk bytes written','18','3','18','8','0','21813'), ('82575','item','Disk read i/o','36','0','18','3','1','21813'), ('82576','graph','Disk read i/o','36','3','18','8','0','21813'), ('82577','item','Disk write i/o','54','0','18','3','1','21813'), ('82578','graph','Disk write i/o','54','3','18','8','0','21813'), ('82579','item','Total bytes in','0','0','6','11','1','21814'), ('82580','graph','Network bytes in','6','0','30','3','0','21814'), ('82581','graphprototype','VNIC bytes in','6','3','30','4','0','21814'), ('82582','graphprototype','VNIC packets in','6','7','30','4','0','21814'), ('82583','item','Total bytes out','36','0','6','11','1','21814'), ('82584','graph','Network bytes out','42','0','30','3','0','21814'), ('82585','graphprototype','VNIC bytes out','42','3','30','4','0','21814'), ('82586','graphprototype','VNIC packets out','42','7','30','4','0','21814'), ('82587','graphprototype','Connection tracking table','0','0','24','11','0','21815'), ('82588','graphprototype','Security list','24','0','24','11','0','21815'), ('82589','graphprototype','Smartnic','48','0','24','11','0','21815'), ('82590','item','Overall latency time','0','0','30','5','1','21816'), ('82591','item','Bucket Size','0','5','15','3','1','21816'), ('82592','item','Client-side error count','0','8','15','3','1','21816'), ('82593','item','Number of objects','15','5','15','3','1','21816'), ('82594','item','Incomplete multipart upload size','15','8','15','3','1','21816'), ('82595','item','First byte latency time','30','0','30','3','1','21816'), ('82596','item','All requests','30','3','18','3','1','21816'), ('82597','graph','Requests','30','6','42','5','0','21816'), ('82598','item','Post object requests','48','3','12','3','1','21816'), ('82599','item','OLM status','60','0','12','3','1','21816'), ('82600','item','Put object requests','60','3','12','3','1','21816'), ('82601','item','Overall latency time','0','0','36','3','1','21817'), ('82602','graph','Overall latency','0','3','36','8','0','21817'), ('82603','item','First byte latency time','36','0','36','3','1','21817'), ('82604','graph','First byte latency','36','3','36','8','0','21817'), ('82605','graph','','0','0','36','5','0','21818'), ('82606','graph','','0','5','36','5','0','21818'), ('82607','graph','','0','10','36','5','0','21818'), ('82608','graph','','0','15','36','5','0','21818'), ('82609','graph','','36','0','36','5','0','21818'), ('82610','graph','','36','5','36','5','0','21818'), ('82611','graph','','36','10','36','5','0','21818'), ('82612','item','Service available','0','0','12','2','0','21819'), ('82613','graph','','0','2','36','5','0','21819'), ('82614','graph','','0','7','36','5','0','21819'), ('82615','graph','','0','12','36','5','0','21819'), ('82616','graph','','0','17','36','5','0','21819'), ('82617','graph','','0','22','36','5','0','21819'), ('82618','item','Port available','12','0','12','2','0','21819'), ('82619','item','Uptime','24','0','12','2','0','21819'), ('82620','item','Version','36','0','12','2','0','21819'), ('82621','graph','','36','2','36','5','0','21819'), ('82622','graph','','36','7','36','5','0','21819'), ('82623','graph','','36','12','36','5','0','21819'), ('82624','graph','','36','17','36','5','0','21819'), ('82625','graph','','36','22','36','5','0','21819'), ('82626','graphprototype','','0','0','36','15','0','21820'), ('82627','graphprototype','','36','0','36','15','0','21820'), ('82628','graph','','0','0','72','5','0','21821'), ('82629','graph','','0','5','72','5','0','21821'), ('82630','graphprototype','','0','10','72','5','0','21821'), ('82631','graph','','0','15','72','5','0','21821'), ('82632','graph','','0','20','72','5','0','21821'), ('82633','graph','','0','25','72','5','0','21821'), ('82634','graph','','0','30','72','5','0','21821'), ('82635','graphprototype','','0','0','72','5','0','21822'), ('82636','graphprototype','','0','5','72','5','0','21822'), ('82637','graphprototype','','0','10','72','5','0','21822'), ('82638','graphprototype','','0','15','72','5','0','21822'), ('82639','graph','','0','0','72','5','0','21823'), ('82640','graph','','0','5','72','5','0','21823'), ('82641','graph','','0','10','72','5','0','21823'), ('82642','graph','','0','15','72','5','0','21823'), ('82643','graph','','0','20','72','5','0','21823'), ('82644','graph','','0','25','72','5','0','21823'), ('82645','graph','','0','30','72','5','0','21823'), ('82646','graphprototype','','0','0','72','5','0','21824'), ('82647','graph','','0','5','72','5','0','21824'), ('82648','graphprototype','','0','10','72','5','0','21824'), ('82649','graphprototype','','0','15','72','5','0','21824'), ('82650','graph','','0','0','36','5','0','21825'), ('82651','graph','','0','5','36','5','0','21825'), ('82652','graph','','0','10','36','5','0','21825'), ('82653','graph','','0','15','36','5','0','21825'), ('82654','graph','','0','20','72','5','0','21825'), ('82655','graph','','0','25','36','5','0','21825'), ('82656','graph','','0','30','72','5','0','21825'), ('82657','graph','','36','0','36','5','0','21825'), ('82658','graph','','36','5','36','5','0','21825'), ('82659','graph','','36','10','36','5','0','21825'), ('82660','graph','','36','15','36','5','0','21825'), ('82661','graph','','36','25','36','5','0','21825'), ('82662','graphprototype','','0','0','36','5','0','21826'), ('82663','graphprototype','','0','5','36','5','0','21826'), ('82664','graph','','0','10','36','5','0','21826'), ('82665','graphprototype','','36','0','36','5','0','21826'), ('82666','graphprototype','','36','5','36','5','0','21826'), ('82667','graph','','36','10','36','5','0','21826'), ('82668','graphprototype','','0','0','72','5','0','21827'), ('82669','graphprototype','','0','5','72','5','0','21827'), ('82670','graphprototype','','0','10','72','5','0','21827'), ('82671','graphprototype','','0','15','72','5','0','21827'), ('82672','item','Instance status','0','0','12','2','0','21828'), ('82673','graph','InfluxDB: Tasks runs','0','2','36','5','0','21828'), ('82674','item','Uptime','12','0','12','2','0','21828'), ('82675','item','Version','24','0','12','2','0','21828'), ('82676','item','Workers busy, pct','36','0','12','2','0','21828'), ('82677','item','Workers currently running','48','0','12','2','0','21828'), ('82678','item','Users, total','60','0','12','2','0','21828'), ('82679','graphprototype','InfluxDB: Query requests','0','0','36','5','0','21829'), ('82680','graphprototype','InfluxDB: Query traffic','36','0','36','5','0','21829'), ('82681','graph','','0','0','72','5','0','21830'), ('82682','graph','','0','5','72','5','0','21830'), ('82683','graph','','0','10','72','5','0','21830'), ('82684','graph','','0','15','72','5','0','21830'), ('82685','graph','','0','20','72','5','0','21830'), ('82686','graph','','0','25','72','5','0','21830'), ('82687','graph','','0','30','72','5','0','21830'), ('82688','graph','','0','35','72','5','0','21830'), ('82689','graph','','0','40','72','5','0','21830'), ('82690','graphprototype','','0','0','72','5','0','21831'), ('82691','graphprototype','','0','5','72','5','0','21831'), ('82692','graphprototype','','0','10','72','5','0','21831'), ('82693','graphprototype','','0','15','72','5','0','21831'), ('82694','graphprototype','','0','0','72','5','0','21832'), ('82695','graphprototype','','0','5','72','5','0','21832'), ('82696','graphprototype','','0','0','72','5','0','21833'), ('82697','graph','','0','0','72','5','0','21834'), ('82698','graph','','0','5','72','5','0','21834'), ('82699','graph','','0','10','72','5','0','21834'), ('82700','graph','','0','15','72','5','0','21834'), ('82701','graph','','0','20','72','5','0','21834'), ('82702','graphprototype','','0','0','72','5','0','21835'), ('82703','graph','','0','0','36','5','0','21836'), ('82704','graph','','0','5','36','5','0','21836'), ('82705','graph','','0','10','36','5','0','21836'), ('82706','graph','','0','15','36','5','0','21836'), ('82707','graph','','0','20','36','5','0','21836'), ('82708','graph','','0','25','36','5','0','21836'), ('82709','graph','','0','30','36','5','0','21836'), ('82710','graph','','0','35','36','5','0','21836'), ('82711','graph','','0','40','36','5','0','21836'), ('82712','graph','','36','0','36','5','0','21836'), ('82713','graph','','36','5','36','5','0','21836'), ('82714','graph','','36','10','36','5','0','21836'), ('82715','graph','','36','15','36','5','0','21836'), ('82716','graph','','36','20','36','5','0','21836'), ('82717','graph','','36','25','36','5','0','21836'), ('82718','graph','','36','30','36','5','0','21836'), ('82719','graph','','36','35','36','5','0','21836'), ('82720','graphprototype','','0','0','36','15','0','21837'), ('82721','graphprototype','','36','0','36','15','0','21837'), ('82722','graph','','0','0','36','5','0','21838'), ('82723','graph','','0','5','36','5','0','21838'), ('82724','graph','','0','10','36','5','0','21838'), ('82725','graph','','0','15','36','5','0','21838'), ('82726','graph','','0','20','36','5','0','21838'), ('82727','graph','','0','25','36','5','0','21838'), ('82728','graph','','0','30','36','5','0','21838'), ('82729','graph','','0','35','36','5','0','21838'), ('82730','graph','','0','40','36','5','0','21838'), ('82731','graph','','36','0','36','5','0','21838'), ('82732','graph','','36','5','36','5','0','21838'), ('82733','graph','','36','10','36','5','0','21838'), ('82734','graph','','36','15','36','5','0','21838'), ('82735','graph','','36','20','36','5','0','21838'), ('82736','graph','','36','25','36','5','0','21838'), ('82737','graph','','36','30','36','5','0','21838'), ('82738','graph','','36','35','36','5','0','21838'), ('82739','graphprototype','','0','0','36','15','0','21839'), ('82740','graphprototype','','36','0','36','15','0','21839'), ('82741','graph','MySQL: Operations','0','0','36','5','0','21840'), ('82742','graph','MySQL: Connections','0','5','36','5','0','21840'), ('82743','graph','MySQL: InnoDB buffer pool','0','10','36','5','0','21840'), ('82744','graph','MySQL: Queries','36','0','36','5','0','21840'), ('82745','graph','MySQL: Bandwidth','36','5','36','5','0','21840'), ('82746','graph','MySQL: Threads','36','10','36','5','0','21840'), ('82747','graph','MySQL: Operations','0','0','36','5','0','21841'), ('82748','graph','MySQL: Connections','0','5','36','5','0','21841'), ('82749','graph','MySQL: InnoDB buffer pool','0','10','36','5','0','21841'), ('82750','graph','MySQL: Queries','36','0','36','5','0','21841'), ('82751','graph','MySQL: Bandwidth','36','5','36','5','0','21841'), ('82752','graph','MySQL: Threads','36','10','36','5','0','21841'), ('82753','graph','MySQL: Operations','0','0','36','5','0','21842'), ('82754','graph','MySQL: Connections','0','5','36','5','0','21842'), ('82755','graph','MySQL: InnoDB buffer pool','0','10','36','5','0','21842'), ('82756','graph','MySQL: Queries','36','0','36','5','0','21842'), ('82757','graph','MySQL: Bandwidth','36','5','36','5','0','21842'), ('82758','graph','MySQL: Threads','36','10','36','5','0','21842'), ('82759','graph','MySQL: Operations','0','0','36','5','0','21843'), ('82760','graph','MySQL: Connections','0','5','36','5','0','21843'), ('82761','graph','MySQL: InnoDB buffer pool','0','10','36','5','0','21843'), ('82762','graph','MySQL: Queries','36','0','36','5','0','21843'), ('82763','graph','MySQL: Bandwidth','36','5','36','5','0','21843'), ('82764','graph','MySQL: Threads','36','10','36','5','0','21843'), ('82765','graph','MySQL: Operations','0','0','36','5','0','21844'), ('82766','graph','MySQL: Connections','0','5','36','5','0','21844'), ('82767','graph','MySQL: InnoDB buffer pool','0','10','36','5','0','21844'), ('82768','graph','MySQL: Queries','36','0','36','5','0','21844'), ('82769','graph','MySQL: Bandwidth','36','5','36','5','0','21844'), ('82770','graph','MySQL: Threads','36','10','36','5','0','21844'), ('82771','graph','','0','0','36','5','0','21845'), ('82772','graph','','0','5','36','5','0','21845'), ('82773','graph','','0','10','36','5','0','21845'), ('82774','graph','','0','15','36','5','0','21845'), ('82775','graph','','0','20','72','5','0','21845'), ('82776','graph','','36','0','36','5','0','21845'), ('82777','graph','','36','5','36','5','0','21845'), ('82778','graph','','36','10','36','5','0','21845'), ('82779','graph','','36','15','36','5','0','21845'), ('82780','graph','','0','0','36','5','0','21846'), ('82781','graph','','0','5','36','5','0','21846'), ('82782','graph','','0','10','36','5','0','21846'), ('82783','graph','','0','15','36','5','0','21846'), ('82784','graph','','0','20','72','5','0','21846'), ('82785','graph','','36','0','36','5','0','21846'), ('82786','graph','','36','5','36','5','0','21846'), ('82787','graph','','36','10','36','5','0','21846'), ('82788','graph','','36','15','36','5','0','21846'), ('82789','graphprototype','','0','0','36','5','0','21847'), ('82790','graphprototype','','0','5','36','5','0','21847'), ('82791','graphprototype','','0','10','36','5','0','21847'), ('82792','graphprototype','','0','15','36','5','0','21847'), ('82793','graphprototype','','36','0','36','5','0','21847'), ('82794','graphprototype','','36','5','36','5','0','21847'), ('82795','graphprototype','','36','10','36','5','0','21847'), ('82796','graphprototype','','36','15','36','5','0','21847'), ('82797','graph','','0','0','36','5','0','21848'), ('82798','graph','','0','5','36','5','0','21848'), ('82799','graph','','0','10','36','5','0','21848'), ('82800','graph','','0','15','36','5','0','21848'), ('82801','graph','','36','0','36','5','0','21848'), ('82802','graph','','36','5','36','5','0','21848'), ('82803','graph','','36','10','36','5','0','21848'), ('82804','graph','','36','15','36','5','0','21848'), ('82805','graphprototype','','0','0','36','5','0','21849'), ('82806','graphprototype','','0','5','36','5','0','21849'), ('82807','graphprototype','','0','10','36','5','0','21849'), ('82808','graphprototype','','36','0','36','5','0','21849'), ('82809','graphprototype','','36','5','36','5','0','21849'), ('82810','graphprototype','','36','10','36','5','0','21849'), ('82811','graphprototype','','0','0','36','5','0','21850'), ('82812','graphprototype','','0','5','36','5','0','21850'), ('82813','graphprototype','','0','10','36','5','0','21850'), ('82814','graphprototype','','36','0','36','5','0','21850'), ('82815','graphprototype','','36','5','36','5','0','21850'), ('82816','graphprototype','','36','10','36','5','0','21850'), ('82817','graphprototype','','0','0','36','5','0','21851'), ('82818','graphprototype','','0','5','36','5','0','21851'), ('82819','graphprototype','','0','10','36','5','0','21851'), ('82820','graphprototype','','0','15','36','5','0','21851'), ('82821','graphprototype','','36','0','36','5','0','21851'), ('82822','graphprototype','','36','5','36','5','0','21851'), ('82823','graphprototype','','36','10','36','5','0','21851'), ('82824','graphprototype','','36','15','36','5','0','21851'), ('82825','graph','','0','0','36','5','0','21852'), ('82826','graph','','0','5','36','5','0','21852'), ('82827','graph','','0','10','36','5','0','21852'), ('82828','graph','','0','15','36','5','0','21852'), ('82829','graph','','36','0','36','5','0','21852'), ('82830','graph','','36','5','36','5','0','21852'), ('82831','graph','','36','10','36','5','0','21852'), ('82832','graph','','36','15','36','5','0','21852'), ('82833','graphprototype','','0','0','36','5','0','21853'), ('82834','graphprototype','','0','5','36','5','0','21853'), ('82835','graphprototype','','0','10','36','5','0','21853'), ('82836','graphprototype','','36','0','36','5','0','21853'), ('82837','graphprototype','','36','5','36','5','0','21853'), ('82838','graphprototype','','36','10','36','5','0','21853'), ('82839','graph','','0','0','36','5','0','21854'), ('82840','graph','','0','5','36','5','0','21854'), ('82841','graph','','0','10','36','5','0','21854'), ('82842','graph','','0','15','36','5','0','21854'), ('82843','graphprototype','','0','20','36','5','0','21854'), ('82844','graph','','36','0','36','5','0','21854'), ('82845','graph','','36','5','36','5','0','21854'), ('82846','graph','','36','10','36','5','0','21854'), ('82847','graph','','36','15','36','5','0','21854'), ('82848','graph','','0','0','36','5','0','21855'), ('82849','graph','','0','5','36','5','0','21855'), ('82850','graph','','36','0','36','5','0','21855'), ('82851','graph','','36','5','36','5','0','21855'), ('82852','item','Status','0','0','12','2','0','21856'), ('82853','graphprototype','','0','2','36','5','0','21856'), ('82854','item','Uptime','12','0','12','2','0','21856'), ('82855','item','Version','24','0','12','2','0','21856'), ('82856','graphprototype','','36','2','36','5','0','21856'), ('82857','graph','','0','0','36','5','0','21857'), ('82858','graph','','0','5','36','5','0','21857'), ('82859','graph','','36','0','36','5','0','21857'), ('82860','item','Uptime','0','0','12','2','0','21858'), ('82861','graph','','0','2','36','5','0','21858'), ('82862','graph','','36','2','36','5','0','21858'), ('82863','gauge','','0','0','18','4','1','21859'), ('82864','svggraph','YugabyteDB Cluster: Average latency','0','4','36','6','0','21859'), ('82865','gauge','','18','0','18','4','1','21859'), ('82866','gauge','','36','0','18','4','1','21859'), ('82867','item','','36','4','18','2','1','21859'), ('82868','item','','36','6','18','2','1','21859'), ('82869','item','','36','8','18','2','1','21859'), ('82870','item','','54','0','18','2','1','21859'), ('82871','item','','54','2','18','2','1','21859'), ('82872','item','','54','4','18','2','1','21859'), ('82873','item','','54','6','18','2','1','21859'), ('82874','item','','54','8','18','2','1','21859'), ('82875','svggraph','YugabyteDB Cluster: Memory utilization','0','0','36','6','0','21860'), ('82876','item','','0','6','36','3','1','21860'), ('82877','svggraph','YugabyteDB Cluster: CPU utilization','36','0','36','6','0','21860'), ('82878','item','','36','6','36','3','1','21860'), ('82879','svggraph',E'YugabyteDB Cluster: Disk r\\w usage, Bps','0','0','36','5','0','21861'), ('82880','svggraph','YugabyteDB Cluster: Disk space usage, bytes','0','5','36','6','0','21861'), ('82881','svggraph',E'YugabyteDB Cluster: Disk r\\w OPS','36','0','36','5','0','21861'), ('82882','item','Disk space utilization','36','5','12','3','1','21861'), ('82883','item','Disk space provisioned','36','8','12','3','1','21861'), ('82884','piechart','YugabyteDB Cluster: Disk space','48','5','24','6','0','21861'), ('82885','svggraph','YugabyteDB Cluster: Received/Transmit, Bps','0','0','36','6','0','21862'), ('82886','svggraph','YugabyteDB Cluster: Connections utilization','0','6','48','6','0','21862'), ('82887','svggraph','YugabyteDB Cluster: Received/Transmit, error/sec','36','0','36','6','0','21862'), ('82888','item','','48','6','24','2','1','21862'), ('82889','item','','48','8','24','2','1','21862'), ('82890','item','','48','10','24','2','1','21862'), ('82891','svggraph','YugabyteDB Cluster: YCQL OPS','0','0','36','6','0','21863'), ('82892','svggraph','YugabyteDB Cluster: YSQL OPS','0','6','36','6','0','21863'), ('82893','svggraph','YugabyteDB Cluster: YCQL latency','36','0','36','6','0','21863'), ('82894','svggraph','YugabyteDB Cluster: YSQL latency','36','6','36','6','0','21863'), ('82895','graphprototype','YugabyteDB Cluster: Node Disk IOPS','0','0','36','10','0','21864'), ('82896','graphprototype','YugabyteDB Cluster: Node SST size','36','0','36','10','0','21864'), ('82897','graphprototype','YugabyteDB Cluster: Keyspace size','0','0','72','10','0','21865'), ('82898','graph','memory utilization','0','0','36','5','0','21866'), ('82899','graph','cpu utilization','0','5','36','5','0','21866'), ('82900','graph','memory usage','36','0','36','5','0','21866'), ('82901','graph','cpu utilization','0','0','36','5','0','21867'), ('82902','graphprototype','disk space usage','0','5','36','5','0','21867'), ('82903','graphprototype','memory utilization','36','0','36','5','0','21867'), ('82904','graphprototype','network traffic','36','5','36','5','0','21867'), ('82905','item','Uptime (network)','0','0','18','2','1','21868'), ('82906','svggraph','ICMP response time','0','2','36','5','0','21868'), ('82907','honeycomb','Sensor temperature','0','7','24','5','0','21868'), ('82908','item','System name','18','0','18','2','1','21868'), ('82909','svggraph','CPU utilization','24','7','24','5','0','21868'), ('82910','item','System location','36','0','18','2','1','21868'), ('82911','honeycomb','Fan status','36','2','24','5','0','21868'), ('82912','svggraph','Memory usage','48','7','24','5','0','21868'), ('82913','item','System description','54','0','18','2','1','21868'), ('82914','honeycomb','PSU state','60','2','12','5','0','21868'), ('82915','honeycomb','OSPF Area status','0','0','24','6','0','21869'), ('82916','honeycomb','OSPF Interface state','0','6','36','6','0','21869'), ('82917','honeycomb','OSPF Neighbor state','24','0','24','6','0','21869'), ('82918','honeycomb','OSPF Interface status','36','6','36','6','0','21869'), ('82919','honeycomb','OSPF Neighbor status','48','0','24','6','0','21869'), ('82920','graph','Memory utilization','0','0','36','5','0','21870'), ('82921','graph','CPU utilization','36','0','36','5','0','21870'), ('82922','graph','Memory utilization','0','0','36','5','0','21871'), ('82923','graph','CPU utilization','36','0','36','5','0','21871'), ('82924','graph','Memory utilization','0','0','36','5','0','21872'), ('82925','graph','CPU utilization','36','0','36','5','0','21872'), ('82926','item','ICMP availability','0','0','12','2','1','21873'), ('82927','item','Number of CPUs','0','2','18','2','0','21873'), ('82928','gauge','CPU utilization','0','4','18','4','0','21873'), ('82929','problems','','0','8','72','6','0','21873'), ('82930','item','SNMP availability','12','0','12','2','1','21873'), ('82931','item','Total memory','18','2','18','2','0','21873'), ('82932','gauge','Memory utilization','18','4','18','4','0','21873'), ('82933','item','Uptime','24','0','12','2','1','21873'), ('82934','item','Product name','36','0','18','2','0','21873'), ('82935','item','Name','36','2','18','2','0','21873'), ('82936','svggraph','CPU LA','36','4','36','4','0','21873'), ('82937','item','Serial number','54','0','18','2','0','21873'), ('82938','item','Manufacturer','54','2','18','2','0','21873'), ('82939','graph','','0','0','36','5','0','21874'), ('82940','graph','','0','5','36','5','0','21874'), ('82941','graphprototype','','0','10','36','5','0','21874'), ('82942','graph','','36','0','36','5','0','21874'), ('82943','graph','','36','5','36','5','0','21874'), ('82944','graphprototype','','0','0','36','5','0','21875'), ('82945','graphprototype','','0','5','36','5','0','21875'), ('82946','graphprototype','','36','0','36','5','0','21875'), ('82947','graphprototype','','0','0','72','7','0','21876'), ('82948','graphprototype','','0','7','72','5','0','21876'), ('82949','item','Remote Access users','0','0','24','2','0','21877'), ('82950','graph','','0','2','72','7','0','21877'), ('82951','item','Encrypted packets per second','24','0','24','2','0','21877'), ('82952','item','Decrypted packets per second','48','0','24','2','0','21877'), ('82953','graphprototype','','0','0','72','7','0','21878'), ('82954','item','Uptime (network)','0','0','12','2','1','21879'), ('82955','svggraph','ICMP response time','0','2','36','5','0','21879'), ('82956','svggraph','CPU utilization','0','7','24','5','0','21879'), ('82957','item','System name','12','0','15','2','1','21879'), ('82958','svggraph','Memory utilization','24','7','24','5','0','21879'), ('82959','item','System location','27','0','15','2','1','21879'), ('82960','honeycomb','Fan status','36','2','24','5','0','21879'), ('82961','item','System description','42','0','15','2','1','21879'), ('82962','honeycomb','Sensor temperature','48','7','12','5','0','21879'), ('82963','item','Hardware model name','57','0','15','2','1','21879'), ('82964','honeycomb','PSU status','60','2','12','5','0','21879'), ('82965','item','Hardware version (revision)','60','7','12','2','1','21879'), ('82966','item','Hardware serial number','60','9','12','3','1','21879'), ('82967','graphprototype','','0','0','72','5','0','21880'), ('82968','graphprototype','','0','5','72','10','0','21880'), ('82969','graphprototype','','0','15','72','5','0','21880'), ('82970','graphprototype','','0','0','72','5','0','21881'), ('82971','graphprototype','','0','5','72','5','0','21881'), ('82972','graphprototype','','0','0','72','5','0','21882'), ('82973','graphprototype','','0','0','72','5','0','21883'), ('82974','graphprototype','','0','5','72','5','0','21883'), ('82975','graphprototype','','0','10','72','10','0','21883'), ('82976','graphprototype','','0','0','72','5','0','21884'), ('82977','graphprototype','','0','5','72','5','0','21884'), ('82978','graphprototype','','0','10','72','10','0','21884'), ('82979','graphprototype','','0','0','72','5','0','21885'), ('82980','graphprototype','','0','5','72','5','0','21885'), ('82981','graphprototype','','0','10','72','10','0','21885'), ('82982','graphprototype','','0','0','72','5','0','21886'), ('82983','graphprototype','','0','5','72','5','0','21886'), ('82984','graphprototype','','0','10','72','10','0','21886'), ('82985','graphprototype','','0','0','72','5','0','21887'), ('82986','graphprototype','','0','5','72','5','0','21887'), ('82987','graphprototype','','0','10','72','10','0','21887'), ('82988','graphprototype','','0','0','72','5','0','21888'), ('82989','graphprototype','','0','5','72','5','0','21888'), ('82990','graphprototype','','0','10','72','5','0','21888'), ('82991','graphprototype','','0','0','72','5','0','21889'), ('82992','item','Total devices','0','0','36','4','0','21890'), ('82993','item','vManage devices','0','4','36','4','0','21890'), ('82994','item','vSmart devices','0','8','36','4','0','21890'), ('82995','item','Invalid certificates','36','0','36','4','0','21890'), ('82996','item','vBond devices','36','4','36','4','0','21890'), ('82997','item','vEdge devices','36','8','36','4','0','21890'), ('82998','item','State','0','0','24','3','0','21891'), ('82999','item','Name','0','3','24','3','0','21891'), ('83000','item','Control connections','0','6','18','3','0','21891'), ('83001','item','Reachability','18','6','18','3','0','21891'), ('83002','item','Model','24','0','24','3','0','21891'), ('83003','item','Uptime','24','3','24','3','0','21891'), ('83004','item','Certificate','36','6','18','3','0','21891'), ('83005','item','Serial Number','48','0','24','3','0','21891'), ('83006','item','Version','48','3','24','3','0','21891'), ('83007','item','Role','54','6','18','3','0','21891'), ('83008','graph','','0','0','36','5','0','21892'), ('83009','graph','','0','5','36','5','0','21892'), ('83010','graphprototype','','0','10','72','5','0','21892'), ('83011','graph','','36','0','36','5','0','21892'), ('83012','graph','','36','5','36','5','0','21892'), ('83013','graphprototype','','0','0','72','7','0','21893'), ('83014','graphprototype','','0','0','72','8','0','21894'), ('83015','item','','0','0','24','3','0','21895'), ('83016','svggraph','Throughput','0','3','72','5','0','21895'), ('83017','svggraph','Events','0','8','18','6','0','21895'), ('83018','gauge','CPU usage','18','8','19','6','0','21895'), ('83019','item','','24','0','24','3','0','21895'), ('83020','gauge','Memory usage','37','8','18','6','0','21895'), ('83021','item','','48','0','24','3','0','21895'), ('83022','piechart','Disk Usage','55','8','17','6','0','21895'), ('83023','svggraph','CPU utilization per core','0','0','36','5','0','21896'), ('83024','svggraph','CPU utilization Lina','0','5','36','5','0','21896'), ('83025','svggraph','CPU utilization Snort','0','10','36','5','0','21896'), ('83026','svggraph','Space usage, in %','0','15','36','5','0','21896'), ('83027','svggraph','Memory utilization','36','0','36','5','0','21896'), ('83028','svggraph','Memory utilization Lina','36','5','36','5','0','21896'), ('83029','svggraph','Memory utilization Snort','36','10','36','5','0','21896'), ('83030','svggraph','Space utilization chart','36','15','36','5','0','21896'), ('83031','svggraph','Output packets','0','0','36','5','0','21897'), ('83032','svggraph','Output errors','0','5','36','5','0','21897'), ('83033','svggraph','Incoming traffic','0','10','36','5','0','21897'), ('83034','svggraph','Input packets','36','0','36','5','0','21897'), ('83035','svggraph','Input errors','36','5','36','5','0','21897'), ('83036','svggraph','Outgoing traffic','36','10','36','5','0','21897'), ('83037','svggraph','Active Connections','0','0','36','5','0','21898'), ('83038','svggraph','Connections Per Second','0','5','36','5','0','21898'), ('83039','svggraph','NAT Translations','36','0','36','5','0','21898'), ('83040','svggraph','Preserve Connection','36','5','36','5','0','21898'), ('83041','itemnavigator','','0','0','26','8','0','21899'), ('83042','svggraph','','26','0','45','8','0','21899'), ('83043','honeycomb','Status','0','0','36','6','0','21900'), ('83044','honeycomb','Uptime','0','6','72','6','0','21900'), ('83045','honeycomb','Restart count','36','0','36','6','0','21900'), ('83046','itemnavigator','Temperature','0','0','10','5','0','21901'), ('83047','gauge','','10','0','14','5','0','21901'), ('83048','itemnavigator','Power supply','24','0','10','5','0','21901'), ('83049','gauge','','34','0','14','5','0','21901'), ('83050','itemnavigator','Fan','48','0','11','5','0','21901'), ('83051','gauge','','59','0','13','5','0','21901'), ('83052','graphprototype','','0','0','72','5','0','21902'), ('83053','graphprototype','','0','0','72','5','0','21903'), ('83054','graphprototype','','0','0','72','5','0','21904'), ('83055','graphprototype','','0','0','72','5','0','21905'), ('83056','graphprototype','','0','0','72','5','0','21906'), ('83057','graphprototype','','0','0','72','5','0','21907'), ('83058','graphprototype','','0','0','72','5','0','21908'), ('83059','item','Port availability','0','0','12','2','1','21909'), ('83060','item','Number of CPUs','0','2','12','2','0','21909'), ('83061','gauge','CPU utilization','0','4','24','4','0','21909'), ('83062','svggraph','Disk usage','0','8','36','5','0','21909'), ('83063','item','API availability','12','0','12','2','1','21909'), ('83064','item','Total memory','12','2','12','2','0','21909'), ('83065','item','Uptime','24','0','12','2','1','21909'), ('83066','item','Total disk space','24','2','12','2','0','21909'), ('83067','gauge','Memory utilization','24','4','24','4','0','21909'), ('83068','item','Serial Number','36','0','18','2','0','21909'), ('83069','item','Name','36','2','18','2','0','21909'), ('83070','problems','','36','8','36','5','0','21909'), ('83071','gauge','Disk utilization','48','4','24','4','0','21909'), ('83072','item','Firmware','54','0','18','2','0','21909'), ('83073','item','Model','54','2','18','2','0','21909'), ('83074','graph','','0','0','36','5','0','21910'), ('83075','graph','','0','5','36','5','0','21910'), ('83076','graph','','36','0','36','5','0','21910'), ('83077','graph','','36','5','36','5','0','21910'), ('83078','graphprototype','','0','0','72','7','0','21911'), ('83079','graphprototype','','0','0','36','5','0','21912'), ('83080','graphprototype','','0','5','36','5','0','21912'), ('83081','graphprototype','','36','0','36','5','0','21912'), ('83082','graphprototype','','36','5','36','5','0','21912'), ('83083','graphprototype','','0','0','36','5','0','21913'), ('83084','graphprototype','','0','5','36','5','0','21913'), ('83085','graphprototype','','36','0','36','5','0','21913'), ('83086','item','SNMP state','0','0','12','2','1','21914'), ('83087','item','Number of CPUs','0','2','12','2','0','21914'), ('83088','gauge','CPU utilization','0','4','24','4','0','21914'), ('83089','svggraph','Disk usage','0','8','36','5','0','21914'), ('83090','item','SSL VPN state','12','0','12','2','1','21914'), ('83091','item','Total memory','12','2','12','2','0','21914'), ('83092','item','Uptime','24','0','12','2','1','21914'), ('83093','item','Total disk space','24','2','12','2','0','21914'), ('83094','gauge','Memory utilization','24','4','24','4','0','21914'), ('83095','item','Serial Number','36','0','18','2','0','21914'), ('83096','item','Name','36','2','18','2','0','21914'), ('83097','problems','','36','8','36','5','0','21914'), ('83098','gauge','Free disk percentage','48','4','24','4','0','21914'), ('83099','item','Firmware','54','0','18','2','0','21914'), ('83100','item','Model','54','2','18','2','0','21914'), ('83101','item','HA mode','0','0','18','3','0','21915'), ('83102','item','HA cluster group','18','0','18','3','0','21915'), ('83103','item','HA cluster priority','36','0','18','3','0','21915'), ('83104','item','HA load-balancing schedule','54','0','18','3','0','21915'), ('83105','graphprototype','','0','0','36','5','0','21916'), ('83106','graphprototype','','0','5','36','5','0','21916'), ('83107','graphprototype','','0','10','36','5','0','21916'), ('83108','graphprototype','','36','0','36','5','0','21916'), ('83109','graphprototype','','36','5','36','5','0','21916'), ('83110','graphprototype','','36','10','36','5','0','21916'), ('83111','graph','','0','0','36','5','0','21917'), ('83112','graph','','0','5','36','5','0','21917'), ('83113','graph','','36','0','36','5','0','21917'), ('83114','graph','','36','5','36','5','0','21917'), ('83115','graphprototype','','0','0','72','5','0','21918'), ('83116','graph','','0','0','72','7','0','21919'), ('83117','graphprototype','','0','0','72','7','0','21920'), ('83118','graphprototype','','0','0','36','5','0','21921'), ('83119','graphprototype','','36','0','36','5','0','21921'), ('83120','graphprototype','','0','0','36','5','0','21922'), ('83121','graphprototype','','0','5','36','5','0','21922'), ('83122','graphprototype','','36','0','36','5','0','21922'), ('83123','graphprototype','','0','0','72','5','0','21923'), ('83124','graphprototype','','0','0','72','5','0','21924'), ('83125','graphprototype','','0','0','72','5','0','21925'), ('83126','graphprototype','','0','5','72','5','0','21925'), ('83127','graphprototype','','0','0','72','5','0','21926'), ('83128','graph','','0','0','72','5','0','21927'), ('83129','graphprototype','','0','5','72','5','0','21927'), ('83130','graphprototype','','0','10','72','5','0','21927'), ('83131','graphprototype','','0','0','72','5','0','21928'), ('83132','graphprototype','','0','0','72','5','0','21929'), ('83133','svggraph','Juniper MX: Memory utilization','0','0','36','5','0','21930'), ('83134','honeycomb','Juniper MX: Temperature','0','5','36','5','0','21930'), ('83135','svggraph','Juniper MX: CPU utilization','36','0','36','5','0','21930'), ('83136','honeycomb','Juniper MX: Current running state','36','5','12','5','0','21930'), ('83137','honeycomb','Juniper MX: Reason of the last switchover','48','5','12','5','0','21930'), ('83138','item','Juniper MX: OS','60','5','12','5','0','21930'), ('83139','svggraph','Juniper MX: Bits received','0','0','36','5','0','21931'), ('83140','svggraph','Juniper MX: Inbound packets discarded','0','5','36','5','0','21931'), ('83141','svggraph','Juniper MX: Inbound packets with errors','0','10','36','5','0','21931'), ('83142','svggraph','Juniper MX: Bits sent','36','0','36','5','0','21931'), ('83143','svggraph','Juniper MX: Outbound packets discarded','36','5','36','5','0','21931'), ('83144','svggraph','Juniper MX: Outbound packets with errors','36','10','36','5','0','21931'), ('83145','svggraph','Juniper MX: Tx optical power lane','0','0','36','8','0','21932'), ('83146','svggraph','Juniper MX: Rx optical power lane','36','0','36','8','0','21932'), ('83147','honeycomb','Juniper MX: BGP Peer state','0','0','18','5','0','21933'), ('83148','svggraph','Juniper MX: BGP Accepted/Rejected prefixes','0','5','36','5','0','21933'), ('83149','svggraph','Juniper MX: BGP Advertised/Received prefixes','0','10','36','5','0','21933'), ('83150','honeycomb','Juniper MX: BGP Peer status','18','0','18','5','0','21933'), ('83151','honeycomb','Juniper MX: OSPF Neighbor State','36','0','18','5','0','21933'), ('83152','svggraph','Juniper MX: OSPF/OSPFv3 Number of relationship','36','5','36','5','0','21933'), ('83153','honeycomb','Juniper MX: OSPFv3 Neighbor State','54','0','18','5','0','21933'), ('83154','graphprototype','Memory utilization','0','0','36','5','0','21934'), ('83155','graphprototype','CPU utilization','36','0','36','5','0','21934'), ('83156','graphprototype','','0','0','72','5','0','21935'), ('83157','graph','CPU utilization','0','0','36','5','0','21936'), ('83158','graphprototype','{#MEMNAME}: Memory utilization','0','5','36','5','0','21936'), ('83159','graphprototype','{#FSNAME}: Disk space usage','0','10','36','5','0','21936'), ('83160','graphprototype','Loss','0','0','36','5','0','21937'), ('83161','graphprototype','Latency','36','0','36','5','0','21937'), ('83162','graphprototype','latency','0','0','36','5','0','21938'), ('83163','graphprototype','loss','0','5','36','5','0','21938'), ('83164','graphprototype','loss','36','0','36','5','0','21938'), ('83165','graphprototype','latency','0','0','36','5','0','21939'), ('83166','graphprototype','','0','0','72','5','0','21940'), ('83167','graphprototype','','0','0','72','5','0','21941'), ('83168','graphprototype','','0','0','72','5','0','21942'), ('83169','graphprototype','','0','0','72','5','0','21943'), ('83170','graphprototype','','0','0','72','5','0','21944'), ('83171','graphprototype','','0','0','72','5','0','21945'), ('83172','graphprototype','','0','0','72','5','0','21946'), ('83173','graphprototype','','0','0','72','5','0','21947'), ('83174','graphprototype','','0','0','72','5','0','21948'), ('83175','graphprototype','','0','0','72','5','0','21949'), ('83176','graphprototype','','0','0','72','5','0','21950'), ('83177','graphprototype','','0','0','72','5','0','21951'), ('83178','graphprototype','','0','0','72','5','0','21952'), ('83179','graphprototype','','0','0','72','5','0','21953'), ('83180','graphprototype','','0','0','72','5','0','21954'), ('83181','graphprototype','','0','0','72','5','0','21955'), ('83182','graphprototype','','0','0','72','5','0','21956'), ('83183','graphprototype','','0','0','72','5','0','21957'), ('83184','graphprototype','','0','0','72','5','0','21958'), ('83185','graphprototype','','0','0','72','5','0','21959'), ('83186','graphprototype','','0','0','72','5','0','21960'), ('83187','graphprototype','','0','0','72','5','0','21961'), ('83188','graphprototype','','0','0','72','5','0','21962'), ('83189','graphprototype','','0','0','72','5','0','21963'), ('83190','graphprototype','','0','0','72','5','0','21964'), ('83191','graphprototype','','0','0','72','5','0','21965'), ('83192','graphprototype','','0','0','72','5','0','21966'), ('83193','graphprototype','','0','0','72','5','0','21967'), ('83194','graphprototype','','0','0','72','5','0','21968'), ('83195','graphprototype','','0','0','72','5','0','21969'), ('83196','graphprototype','','0','0','72','5','0','21970'), ('83197','graphprototype','','0','0','72','5','0','21971'), ('83198','graphprototype','','0','0','72','5','0','21972'), ('83199','graphprototype','','0','0','72','5','0','21973'), ('83200','graphprototype','','0','0','72','5','0','21974'), ('83201','graphprototype','','0','0','72','5','0','21975'), ('83202','graphprototype','','0','0','72','5','0','21976'), ('83203','graphprototype','','0','0','72','5','0','21977'), ('83204','graphprototype','','0','0','72','5','0','21978'), ('83205','graphprototype','','0','0','72','5','0','21979'), ('83206','graphprototype','','0','0','72','5','0','21980'), ('83207','graphprototype','','0','0','72','5','0','21981'), ('83208','graphprototype','','0','0','72','5','0','21982'), ('83209','graphprototype','','0','0','72','5','0','21983'), ('83210','graphprototype','','0','0','72','5','0','21984'), ('83211','graphprototype','','0','0','72','5','0','21985'), ('83212','graphprototype','','0','0','72','5','0','21986'), ('83213','graphprototype','','0','0','72','5','0','21987'), ('83214','graphprototype','','0','0','72','5','0','21988'), ('83215','graphprototype','','0','0','72','5','0','21989'), ('83216','graphprototype','','0','0','72','5','0','21990'), ('83217','graphprototype','','0','0','72','5','0','21991'), ('83218','graphprototype','','0','0','72','5','0','21992'), ('83219','graphprototype','','0','0','72','5','0','21993'), ('83220','graphprototype','','0','0','72','5','0','21994'), ('83221','graph','','0','0','72','4','0','21995'), ('83222','graph','','0','4','72','4','0','21995'), ('83223','graph','','0','8','72','4','0','21995'), ('83224','graph','','0','0','72','4','0','21996'), ('83225','graph','','0','4','72','4','0','21996'), ('83226','graph','','0','8','72','4','0','21996'), ('83227','graph','','0','0','72','4','0','21997'), ('83228','graph','','0','4','72','4','0','21997'), ('83229','graph','','0','8','72','4','0','21997'), ('83230','graph','','0','0','72','4','0','21998'), ('83231','graph','','0','4','72','4','0','21998'), ('83232','graph','','0','0','72','4','0','21999'), ('83233','graph','','0','4','72','4','0','21999'), ('83234','graph','','0','8','72','4','0','21999'), ('83235','graph','','0','12','72','4','0','21999'), ('83236','graph','','0','0','72','4','0','22000'), ('83237','graph','','0','4','72','4','0','22000'), ('83238','graph','','0','8','72','4','0','22000'), ('83239','graph','','0','12','72','4','0','22000'), ('83240','graph','','0','0','72','4','0','22001'), ('83241','graphprototype','','0','0','72','5','0','22002'), ('83242','graph','','0','0','72','5','0','22003'), ('83243','graph','','0','5','72','5','0','22003'), ('83244','graph','','0','10','72','5','0','22003'), ('83245','item','Host name','0','0','18','3','1','22004'), ('83246','item','App-ID version','0','3','18','3','1','22004'), ('83247','item','CPU temperature','0','6','9','4','1','22004'), ('83248','item','Management Plane: CPU utilization','0','10','9','3','1','22004'), ('83249','item','Data Plane: CPU utilization','0','13','9','3','1','22004'), ('83250','item','Session table utilization','0','16','9','3','1','22004'), ('83251','svggraph','CPU temperature','9','6','63','4','0','22004'), ('83252','svggraph','CPU utilization','9','10','63','6','0','22004'), ('83253','svggraph','Sessions','9','16','63','6','0','22004'), ('83254','item','Uptime','18','0','18','3','1','22004'), ('83255','item','Global Protect Client Package version','18','3','18','3','1','22004'), ('83256','item','PAN-OS version','36','0','18','3','1','22004'), ('83257','item','Threat version','36','3','18','3','1','22004'), ('83258','item','Serial number','54','0','18','3','1','22004'), ('83259','item','URL filtering version','54','3','18','3','1','22004'), ('83260','honeycomb','HA status','0','0','72','7','0','22005'), ('83261','honeycomb','HA links status','0','7','72','7','0','22005'), ('83262','honeycomb','Interface status','0','0','72','6','0','22006'), ('83263','svggraph','Incoming traffic, per second','0','6','36','5','0','22006'), ('83264','svggraph','Inbound packets discarded, per second','0','11','36','5','0','22006'), ('83265','svggraph','Outbound packets with errors, per second','0','16','36','5','0','22006'), ('83266','svggraph','Outgoing traffic, per second','36','6','36','5','0','22006'), ('83267','svggraph','Inbound packets with errors, per second','36','11','36','5','0','22006'), ('83268','svggraph','Incoming traffic, per second','0','0','36','5','0','22007'), ('83269','svggraph','Inbound packets dropped, per second','0','5','36','5','0','22007'), ('83270','svggraph','Outgoing traffic, per second','36','0','36','5','0','22007'), ('83271','svggraph','Inbound packets with errors, per second','36','5','36','5','0','22007'), ('83272','honeycomb','BGP peer status','0','0','72','7','0','22008'), ('83273','honeycomb','OSPF neighbor status','0','0','72','7','0','22009'), ('83274','honeycomb','OSPFv3 neighbor status','0','0','72','7','0','22010'), ('83275','graphprototype','','0','0','72','5','0','22011'), ('83276','graph','','0','0','72','5','0','22012'), ('83277','graph','','0','5','72','5','0','22012'), ('83278','item','Name','0','0','12','2','1','22013'), ('83279','item','Firmware version','0','2','12','2','1','22013'), ('83280','item','System date','0','4','12','2','1','22013'), ('83281','gauge','Memory utilization','0','6','24','4','1','22013'), ('83282','item','Total memory','0','10','12','2','1','22013'), ('83283','item','Buffer memory','0','12','12','2','1','22013'), ('83284','item','Model','12','0','12','2','1','22013'), ('83285','item','Serial number','12','2','12','2','1','22013'), ('83286','item','Uptime','12','4','12','2','1','22013'), ('83287','item','Available memory','12','10','12','2','1','22013'), ('83288','item','Cached memory','12','12','12','2','1','22013'), ('83289','problems','Problems','24','0','48','6','0','22013'), ('83290','honeycomb','CPU utilization','24','6','48','3','0','22013'), ('83291','honeycomb','Storage utilization','24','9','48','3','0','22013'), ('83292','item','SNMP agent availability','24','12','12','2','1','22013'), ('83293','item','ICMP ping','36','12','12','2','1','22013'), ('83294','item','ICMP response time','48','12','12','2','1','22013'), ('83295','item','ICMP loss','60','12','12','2','1','22013'), ('83296','honeycomb','Incoming current throughput','0','0','72','3','0','22014'), ('83297','honeycomb','Outgoing current throughput','0','3','72','3','0','22014'), ('83298','svggraph','Network interfaces traffic','0','6','72','7','0','22014'), ('83299','honeycomb','Accepted packets','0','0','72','3','0','22015'), ('83300','honeycomb','Blocked packets','0','3','72','3','0','22015'), ('83301','svggraph','Accepted/Blocked packets','0','6','72','7','0','22015'), ('83302','honeycomb','CPU usage','0','0','72','3','0','22016'), ('83303','honeycomb','CPU temperature','0','3','72','3','0','22016'), ('83304','svggraph','CPU','0','6','72','7','0','22016'), ('83305','gauge','Memory utilization','0','0','24','4','1','22017'), ('83306','item','Total memory','0','4','12','2','1','22017'), ('83307','item','Buffer memory','0','6','12','2','1','22017'), ('83308','item','Available memory','12','4','12','2','1','22017'), ('83309','item','Cached memory','12','6','12','2','1','22017'), ('83310','honeycomb','Memory utilization','24','0','48','6','0','22017'), ('83311','svggraph','Memory utilization','24','6','48','8','0','22017'), ('83312','honeycomb','Disk name','0','0','72','3','0','22018'), ('83313','honeycomb','Member of a RAID array','0','3','72','3','0','22018'), ('83314','honeycomb','RAID status','0','6','72','3','0','22018'), ('83315','honeycomb','SMART info test result','0','9','72','3','0','22018'), ('83316','honeycomb','Fan status','0','0','72','3','0','22019'), ('83317','honeycomb','Fan speed','0','3','72','3','0','22019'), ('83318','svggraph','Fan speed','0','6','72','7','0','22019'), ('83319','honeycomb','PSU power status','0','0','72','3','0','22020'), ('83320','honeycomb','PSU status','0','3','72','3','0','22020'), ('83321','item','Active firewalls','0','0','12','2','1','22021'), ('83322','item','Firewalls in the cluster','0','2','12','2','1','22021'), ('83323','item','Synchronization status','0','4','24','2','1','22021'), ('83324','svggraph','HA quality','0','6','24','6','0','22021'), ('83325','item','Faulty HA links','12','0','12','2','1','22021'), ('83326','item','Firewalls not replying','12','2','12','2','1','22021'), ('83327','honeycomb','Is online','24','0','48','3','0','22021'), ('83328','honeycomb','HA quality','24','3','48','3','0','22021'), ('83329','honeycomb','HA priority','24','6','48','3','0','22021'), ('83330','honeycomb','Firewall status','24','9','48','3','0','22021'), ('83331','honeycomb','Update state','0','0','72','6','0','22022'), ('83332','honeycomb','Last update date','0','6','72','6','0','22022'), ('83333','item','Incoming policies','0','0','14','2','1','22023'), ('83334','svggraph','VPN data','0','2','72','7','0','22023'), ('83335','item','Outgoing policies','14','0','14','2','1','22023'), ('83336','item','Number of mature VPN tunnels','28','0','14','2','1','22023'), ('83337','item','Number of dying VPN tunnels','42','0','14','2','1','22023'), ('83338','item','Number of dead VPN tunnels','56','0','16','2','1','22023'), ('83339','item','Policies','0','0','14','2','1','22024'), ('83340','item','Active filtering policy name','0','2','14','2','1','22024'), ('83341','item','Active IPsec policy name','0','4','14','2','1','22024'), ('83342','item','ASQ','16','0','28','2','1','22024'), ('83343','item','ASQ major alarm count','16','2','14','2','1','22024'), ('83344','item','ASQ minor alarm count','16','4','14','2','1','22024'), ('83345','item','ASQ TCP connection count','30','2','14','2','1','22024'), ('83346','item','ASQ UDP connection count','30','4','14','2','1','22024'), ('83347','honeycomb','Admin password','0','0','24','3','0','22025'), ('83348','honeycomb','Certificates','0','3','24','3','0','22025'), ('83349','honeycomb','CPU','0','6','24','3','0','22025'), ('83350','honeycomb','CPU temperature','0','9','24','3','0','22025'), ('83351','honeycomb','CRLs','24','0','24','3','0','22025'), ('83352','honeycomb','Disk','24','3','24','3','0','22025'), ('83353','honeycomb','Fans','24','6','24','3','0','22025'), ('83354','honeycomb','HA link','24','9','24','3','0','22025'), ('83355','honeycomb','HA mode','48','0','24','3','0','22025'), ('83356','honeycomb','Memory','48','3','24','3','0','22025'), ('83357','honeycomb','Power supply','48','6','24','3','0','22025'), ('83358','honeycomb','RAID','48','9','24','3','0','22025'), ('83359','graphprototype','','0','0','72','5','0','22026'), ('83360','graph','Memory utilization','0','0','36','5','0','22027'), ('83361','graph','Load average','36','0','36','5','0','22027'), ('83362','graphprototype','Utilization','0','0','36','5','0','22028'), ('83363','graphprototype','Best loss','0','0','36','5','0','22029'), ('83364','graphprototype','Packets summary','0','5','36','5','0','22029'), ('83365','graphprototype','Bytes summary','36','0','36','5','0','22029'), ('83366','graphprototype','Path overview','0','0','36','5','0','22030'), ('83367','item','System name','0','0','23','4','1','22031'), ('83368','item','System location','0','4','23','3','1','22031'), ('83369','item','System contact','0','7','23','3','1','22031'), ('83370','item','System description','0','10','23','3','1','22031'), ('83371','item','Uptime (hardware)','23','0','20','3','1','22031'), ('83372','item','Uptime (network)','23','3','20','3','1','22031'), ('83373','item','SNMP agent availability','23','6','20','2','1','22031'), ('83374','item','ICMP ping','23','8','20','2','1','22031'), ('83375','item','ICMP response time','23','10','10','3','1','22031'), ('83376','item','ICMP loss','33','10','10','3','1','22031'), ('83377','gauge','Memory utilization','43','0','29','4','1','22031'), ('83378','item','Total memory','43','4','9','4','1','22031'), ('83379','honeycomb','CPU utilization','43','8','29','5','0','22031'), ('83380','item','Free memory','52','4','9','4','1','22031'), ('83381','item','Cached memory','61','4','11','2','1','22031'), ('83382','item','Buffer memory','61','6','11','2','1','22031'), ('83383','honeycomb','Operational status','0','0','72','3','0','22032'), ('83384','honeycomb','Bits received','0','3','72','3','0','22032'), ('83385','honeycomb','Bits sent','0','6','72','3','0','22032'), ('83386','svggraph','Network interfaces traffic','0','9','72','4','0','22032'), ('83387','honeycomb','Operational status','0','0','72','3','0','22033'), ('83388','honeycomb','Inbound packets with errors','0','3','72','3','0','22033'), ('83389','honeycomb','Outbound packets with errors','0','6','72','3','0','22033'), ('83390','svggraph','Network interfaces packets with errors','0','9','72','4','0','22033'), ('83391','honeycomb','Operational status','0','0','72','3','0','22034'), ('83392','honeycomb','Inbound packets discarded','0','3','72','3','0','22034'), ('83393','honeycomb','Outbound packets discarded','0','6','72','3','0','22034'), ('83394','svggraph','Network interfaces packets discarded','0','9','72','4','0','22034'), ('83395','honeycomb','Storage utilization','0','0','72','3','0','22035'), ('83396','honeycomb','Total size','0','3','72','3','0','22035'), ('83397','honeycomb','Used size','0','6','72','3','0','22035'), ('83398','svggraph','Storage data','0','9','72','4','0','22035'), ('83399','graphprototype','','0','0','72','10','0','22036'), ('83400','graphprototype','','0','0','72','5','0','22037'), ('83401','graphprototype','','0','0','72','5','0','22038'), ('83402','graphprototype','','0','0','72','5','0','22039'), ('83403','graphprototype','','0','0','72','5','0','22040'), ('83404','graphprototype','','0','0','72','5','0','22041'), ('83405','graphprototype','','0','0','72','5','0','22042'), ('83406','graphprototype','','0','0','72','5','0','22043'), ('83407','graphprototype','','0','0','72','5','0','22044'), ('83408','graphprototype','','0','0','72','5','0','22045'), ('83409','graphprototype','','0','0','72','5','0','22046'), ('83410','graphprototype','','0','0','72','5','0','22047'), ('83411','graphprototype','','0','0','72','5','0','22048'), ('83412','graphprototype','','0','0','72','5','0','22049'), ('83413','graphprototype','','0','0','72','5','0','22050'), ('83414','graphprototype','','0','5','72','5','0','22050'), ('83415','graph','','0','0','36','5','0','22051'), ('83416','graph','','0','5','36','5','0','22051'), ('83417','graphprototype','','0','10','72','5','0','22051'), ('83418','graph','','36','0','36','5','0','22051'), ('83419','graph','','36','5','36','5','0','22051'), ('83420','graphprototype','','0','0','72','5','0','22052'), ('83421','graphprototype','','0','5','72','5','0','22052'), ('83422','graph','','0','0','36','5','0','22053'), ('83423','graph','','0','5','36','5','0','22053'), ('83424','graphprototype','','0','10','72','5','0','22053'), ('83425','graph','','36','0','36','5','0','22053'), ('83426','graph','','36','5','36','5','0','22053'), ('83427','graphprototype','','0','0','72','5','0','22054'), ('83428','graphprototype','','0','5','72','5','0','22054'), ('83429','graph','CPU load','0','0','36','5','0','22055'), ('83430','graph','Memory usage','0','5','72','5','0','22055'), ('83431','graphprototype','','0','10','72','5','0','22055'), ('83432','graph','CPU utilization','36','0','36','5','0','22055'), ('83433','graphprototype','','0','0','72','5','0','22056'), ('83434','graphprototype','','0','5','72','5','0','22056'), ('83435','graphprototype','','0','0','72','5','0','22057'), ('83436','graph','','0','0','36','5','0','22058'), ('83437','graph','','0','5','36','5','0','22058'), ('83438','graphprototype','','0','10','72','5','0','22058'), ('83439','graphprototype','','0','15','72','5','0','22058'), ('83440','graphprototype','','0','20','72','5','0','22058'), ('83441','graphprototype','','0','25','72','5','0','22058'), ('83442','graphprototype','','0','30','72','5','0','22058'), ('83443','graph','','36','0','36','5','0','22058'), ('83444','graph','','36','5','36','5','0','22058'), ('83445','graphprototype','','0','0','72','5','0','22059'), ('83446','graphprototype','','0','5','72','5','0','22059'), ('83447','graphprototype','','0','0','72','5','0','22060'), ('83448','graph','','0','0','36','5','0','22061'), ('83449','graph','','0','5','36','5','0','22061'), ('83450','graphprototype','','0','10','72','5','0','22061'), ('83451','graphprototype','','0','15','72','5','0','22061'), ('83452','graphprototype','','0','20','72','5','0','22061'), ('83453','graphprototype','','0','25','72','5','0','22061'), ('83454','graphprototype','','0','30','72','5','0','22061'), ('83455','graph','','36','0','36','5','0','22061'), ('83456','graph','','36','5','36','5','0','22061'), ('83457','graphprototype','','0','0','72','5','0','22062'), ('83458','graphprototype','','0','5','72','5','0','22062'), ('83459','graphprototype','','0','0','72','5','0','22063'), ('83460','graph','','0','0','36','5','0','22064'), ('83461','graph','','0','5','36','5','0','22064'), ('83462','graphprototype','','0','10','72','5','0','22064'), ('83463','graphprototype','','0','15','72','5','0','22064'), ('83464','graphprototype','','0','20','72','5','0','22064'), ('83465','graphprototype','','0','25','72','5','0','22064'), ('83466','graphprototype','','0','30','72','5','0','22064'), ('83467','graph','','36','0','36','5','0','22064'), ('83468','graph','','36','5','36','5','0','22064'), ('83469','graphprototype','','0','0','72','5','0','22065'), ('83470','graphprototype','','0','5','72','5','0','22065'), ('83471','graphprototype','','0','0','72','5','0','22066'), ('83472','graph','','0','0','36','5','0','22067'), ('83473','graph','','0','5','36','5','0','22067'), ('83474','graphprototype','','0','10','72','5','0','22067'), ('83475','graphprototype','','0','15','72','5','0','22067'), ('83476','graphprototype','','0','20','72','5','0','22067'), ('83477','graphprototype','','0','25','72','5','0','22067'), ('83478','graphprototype','','36','0','36','5','0','22067'), ('83479','graph','','36','5','36','5','0','22067'), ('83480','graphprototype','','0','0','72','5','0','22068'), ('83481','graphprototype','','0','5','72','5','0','22068'), ('83482','graph','CPU load','0','0','72','5','0','22069'), ('83483','graph','Memory usage','0','5','72','5','0','22069'), ('83484','graphprototype','','0','10','72','5','0','22069'), ('83485','graphprototype','','0','0','72','5','0','22070'), ('83486','graphprototype','','0','5','72','5','0','22070'), ('83487','graph','','0','0','36','5','0','22071'), ('83488','graph','','0','5','36','5','0','22071'), ('83489','graphprototype','','0','10','72','5','0','22071'), ('83490','graph','','36','0','36','5','0','22071'), ('83491','graph','','36','5','36','5','0','22071'), ('83492','graphprototype','','0','0','72','5','0','22072'), ('83493','graphprototype','','0','5','72','5','0','22072'), ('83494','graph','','0','0','36','5','0','22073'), ('83495','graph','','0','5','36','5','0','22073'), ('83496','graphprototype','','0','10','72','5','0','22073'), ('83497','graph','','0','15','36','5','0','22073'), ('83498','graph','','36','0','36','5','0','22073'), ('83499','graph','','36','5','36','5','0','22073'), ('83500','graph','','36','15','36','5','0','22073'), ('83501','graphprototype','','0','0','72','5','0','22074'), ('83502','graphprototype','','0','5','72','5','0','22074'), ('83503','graphprototype','','0','0','72','5','0','22075'), ('83504','graph','','0','0','36','5','0','22076'), ('83505','graph','','0','5','36','5','0','22076'), ('83506','graphprototype','','0','10','72','5','0','22076'), ('83507','graphprototype','','0','15','72','5','0','22076'), ('83508','graphprototype','','0','20','72','5','0','22076'), ('83509','graphprototype','','0','25','72','5','0','22076'), ('83510','graph','','36','0','36','5','0','22076'), ('83511','graph','','36','5','36','5','0','22076'), ('83512','graphprototype','','0','0','72','5','0','22077'), ('83513','graphprototype','','0','5','72','5','0','22077'), ('83514','graphprototype','','0','0','72','5','0','22078'), ('83515','graph','','0','0','36','5','0','22079'), ('83516','graph','','0','5','36','5','0','22079'), ('83517','graphprototype','','0','10','72','5','0','22079'), ('83518','graphprototype','','0','15','72','5','0','22079'), ('83519','graphprototype','','0','20','72','5','0','22079'), ('83520','graphprototype','','0','25','72','5','0','22079'), ('83521','graph','','36','0','36','5','0','22079'), ('83522','graph','','36','5','36','5','0','22079'), ('83523','graphprototype','','0','0','72','5','0','22080'), ('83524','graphprototype','','0','5','72','5','0','22080'), ('83525','graphprototype','','0','0','72','5','0','22081'), ('83526','graphprototype','','0','0','36','5','0','22082'), ('83527','graphprototype','','0','5','72','5','0','22082'), ('83528','graph','','36','0','36','5','0','22082'), ('83529','graph','Voltage','0','0','36','5','0','22083'), ('83530','graph','Capacity of the UPS batteries','0','5','36','5','0','22083'), ('83531','graph','Output','36','0','36','5','0','22083'), ('83532','graph','Voltage','0','0','36','5','0','22084'), ('83533','graph','Capacity of the UPS batteries','0','5','36','5','0','22084'), ('83534','graph','Output','36','0','36','5','0','22084'), ('83535','graph','Voltage','0','0','36','5','0','22085'), ('83536','graph','Capacity of the UPS batteries','0','5','36','5','0','22085'), ('83537','graph','Output','36','0','36','5','0','22085'), ('83538','graph','Voltage','0','0','36','5','0','22086'), ('83539','graph','Capacity of the UPS batteries','0','5','36','5','0','22086'), ('83540','graph','Output','36','0','36','5','0','22086'), ('83541','graph','Voltage','0','0','36','5','0','22087'), ('83542','graph','Capacity of the UPS batteries','0','5','36','5','0','22087'), ('83543','graph','Output','36','0','36','5','0','22087'), ('83544','graph','Voltage','0','0','36','5','0','22088'), ('83545','graph','Capacity of the UPS batteries','0','5','36','5','0','22088'), ('83546','graph','Output','36','0','36','5','0','22088'), ('83547','graph','Voltage','0','0','36','5','0','22089'), ('83548','graph','Capacity of the UPS batteries','0','5','36','5','0','22089'), ('83549','graph','Output','36','0','36','5','0','22089'), ('83550','graph','Voltage','0','0','36','5','0','22090'), ('83551','graph','Capacity of the UPS batteries','0','5','36','5','0','22090'), ('83552','graph','Output','36','0','36','5','0','22090'), ('83553','graph','Voltage','0','0','36','5','0','22091'), ('83554','graph','Capacity of the UPS batteries','0','5','36','5','0','22091'), ('83555','graph','Output','36','0','36','5','0','22091'), ('83556','graph','Voltage','0','0','36','5','0','22092'), ('83557','graph','Capacity of the UPS batteries','0','5','36','5','0','22092'), ('83558','graph','Output','36','0','36','5','0','22092'), ('83559','graph','Voltage','0','0','36','5','0','22093'), ('83560','graph','Capacity of the UPS batteries','0','5','36','5','0','22093'), ('83561','graph','Output','36','0','36','5','0','22093'), ('83562','graphprototype','','0','0','72','5','0','22094'), ('83563','graphprototype','','0','5','72','5','0','22094'), ('83564','graphprototype','','0','10','72','5','0','22094'), ('83565','graphprototype','','0','15','72','5','0','22094'), ('83566','graphprototype','','0','20','72','5','0','22094'), ('83567','graphprototype','','0','0','72','5','0','22095'), ('83568','graphprototype','','0','5','72','5','0','22095'), ('83569','graphprototype','','0','10','72','5','0','22095'), ('83570','graphprototype','','0','15','72','5','0','22095'), ('83571','graphprototype','','0','0','72','5','0','22096'), ('83572','graphprototype','','0','0','72','5','0','22097'), ('83573','graphprototype','','0','0','72','5','0','22098'), ('83574','graphprototype','','0','0','72','5','0','22099'), ('83575','graphprototype','','0','5','72','5','0','22099'), ('83576','graphprototype','','0','10','72','5','0','22099'), ('83577','graphprototype','','0','15','72','5','0','22099'), ('83578','graphprototype','','0','0','72','5','0','22100'), ('83579','graphprototype','','0','5','72','5','0','22100'), ('83580','graphprototype','','0','10','72','5','0','22100'), ('83581','graphprototype','','0','15','72','5','0','22100'), ('83582','graphprototype','','0','20','72','5','0','22100'), ('83583','graphprototype','','0','0','72','5','0','22101'), ('83584','graphprototype','','0','5','72','5','0','22101'), ('83585','graphprototype','','0','10','72','5','0','22101'), ('83586','graphprototype','','0','15','72','5','0','22101'), ('83587','graphprototype','','0','0','72','5','0','22102'), ('83588','graphprototype','','0','0','72','5','0','22103'), ('83589','graphprototype','','0','0','72','5','0','22104'), ('83590','graphprototype','','0','5','72','5','0','22104'), ('83591','graphprototype','','0','10','72','5','0','22104'), ('83592','graphprototype','','0','15','72','5','0','22104'), ('83593','graph','','0','0','72','5','0','22105'), ('83594','graphprototype','','0','0','72','5','0','22106'), ('83595','graphprototype','','0','5','72','5','0','22106'), ('83596','graphprototype','','0','10','72','5','0','22106'), ('83597','graphprototype','','0','15','72','5','0','22106'), ('83598','graphprototype','','0','20','72','5','0','22106'), ('83599','graphprototype','','0','25','72','5','0','22106'), ('83600','graphprototype','','0','0','72','5','0','22107'), ('83601','graphprototype','','0','5','72','5','0','22107'), ('83602','graphprototype','','0','10','72','5','0','22107'), ('83603','graphprototype','','0','15','72','5','0','22107'), ('83604','graphprototype','','0','20','72','5','0','22107'), ('83605','graph','OceanStor 5300 V5: Capacity total','0','0','72','4','0','22108'), ('83606','graphprototype','Controller {#ID}: CPU utilization','0','0','36','4','0','22109'), ('83607','graphprototype','Node {#NODE}: CPU utilization','36','0','36','4','0','22109'), ('83608','graphprototype','Node {#NODE}: Node I/O','0','0','36','4','0','22110'), ('83609','graphprototype','Node {#NODE}: Node traffic','36','0','36','4','0','22110'), ('83610','graphprototype','LUN {#NAME}: LUN I/O','0','0','36','4','0','22111'), ('83611','graphprototype','LUN {#NAME}: LUN traffic','36','0','36','4','0','22111'), ('83612','graph','Capacity total','0','0','72','4','0','22112'), ('83613','graphprototype','Controller [{#ID}]: CPU utilization','0','0','72','4','0','22113'), ('83614','graphprototype','Node [{#NODE}]: CPU utilization','0','4','72','4','0','22113'), ('83615','graphprototype','Node [{#NODE}]: Node I/O','0','0','72','4','0','22114'), ('83616','graphprototype','Node [{#NODE}]: Node traffic','0','4','72','4','0','22114'), ('83617','graphprototype','LUN [{#NAME}]: LUN I/O','0','0','72','4','0','22115'), ('83618','graphprototype','LUN [{#NAME}]: LUN traffic','0','4','72','4','0','22115'), ('83619','graphprototype','','0','0','72','5','0','22116'), ('83620','graphprototype','','0','5','72','5','0','22116'), ('83621','graphprototype','','0','10','72','5','0','22116'), ('83622','item','Hostname','0','0','24','3','0','22117'), ('83623','svggraph','Array read/write throughput','0','3','36','5','0','22117'), ('83624','svggraph','Array operation latency','0','8','36','5','0','22117'), ('83625','item','Version','24','0','24','3','0','22117'), ('83626','svggraph','Array requests per second','36','3','36','5','0','22117'), ('83627','svggraph','Array space','36','8','36','5','0','22117'), ('83628','item','Capacity','48','0','24','3','0','22117'), ('83629','honeycomb','Network interfaces','0','0','72','5','0','22118'), ('83630','svggraph','Speed','0','5','72','5','0','22118'), ('83631','honeycomb','Drives','0','0','72','5','0','22119'), ('83632','svggraph','Capacity','0','5','72','5','0','22119'), ('83633','graphprototype','','0','0','36','5','0','22120'), ('83634','graphprototype','','0','5','36','5','0','22120'), ('83635','graphprototype','','36','0','36','5','0','22120'), ('83636','graphprototype','','36','5','36','5','0','22120'), ('83637','graphprototype','','0','0','36','5','0','22121'), ('83638','graphprototype','','0','5','36','5','0','22121'), ('83639','graphprototype','','36','0','36','5','0','22121'), ('83640','graphprototype','','36','5','36','5','0','22121'), ('83641','honeycomb','Fans','0','0','72','5','0','22122'), ('83642','honeycomb','Temperature sensors','0','5','72','5','0','22122'), ('83643','svggraph','Temperature value','0','10','72','5','0','22122'), ('83644','honeycomb','Power supply','0','15','72','5','0','22122'), ('83645','svggraph','Voltage','0','20','72','5','0','22122'), ('83646','item','Hostname','0','0','24','3','0','22123'), ('83647','svggraph','Array read/write throughput','0','3','36','5','0','22123'), ('83648','svggraph','Array operation latency','0','8','36','5','0','22123'), ('83649','item','Version','24','0','24','3','0','22123'), ('83650','svggraph','Array requests per second','36','3','36','5','0','22123'), ('83651','svggraph','Array space','36','8','36','5','0','22123'), ('83652','item','Capacity','48','0','24','3','0','22123'), ('83653','honeycomb','Network interfaces','0','0','72','5','0','22124'), ('83654','svggraph','Speed','0','5','72','5','0','22124'), ('83655','honeycomb','Drives','0','0','72','5','0','22125'), ('83656','svggraph','Capacity','0','5','72','5','0','22125'), ('83657','graphprototype','','0','0','36','5','0','22126'), ('83658','graphprototype','','0','5','36','5','0','22126'), ('83659','graphprototype','','36','0','36','5','0','22126'), ('83660','graphprototype','','36','5','36','5','0','22126'), ('83661','graphprototype','','0','0','36','5','0','22127'), ('83662','graphprototype','','0','5','36','5','0','22127'), ('83663','graphprototype','','36','0','36','5','0','22127'), ('83664','graphprototype','','36','5','36','5','0','22127'), ('83665','honeycomb','Fans','0','0','72','5','0','22128'), ('83666','honeycomb','Temperature sensors','0','5','72','5','0','22128'), ('83667','svggraph','Temperature value','0','10','72','5','0','22128'), ('83668','honeycomb','Power supply','0','15','72','5','0','22128'), ('83669','svggraph','Voltage','0','20','72','5','0','22128'), ('83670','graphprototype','','0','0','72','5','0','22129'), ('83671','gauge','CPU utilization','0','0','18','3','1','22130'), ('83672','gauge','Memory utilization','0','3','18','3','1','22130'), ('83673','gauge','I/O utilization','0','6','18','3','1','22130'), ('83674','gauge','SYS utilization','0','9','18','3','1','22130'), ('83675','item','Redfish API','18','0','27','3','1','22130'), ('83676','item','HW model','18','3','54','3','1','22130'), ('83677','item','Serial number','18','6','54','3','1','22130'), ('83678','item','Firmware','18','9','54','3','1','22130'), ('83679','item','System health','45','0','27','3','1','22130'), ('83680','honeycomb','Interface link','0','0','36','4','0','22131'), ('83681','honeycomb','Temperature sensors','0','4','72','4','0','22131'), ('83682','honeycomb','Physical disks','0','8','36','4','0','22131'), ('83683','honeycomb','Power supplies','0','12','36','4','0','22131'), ('83684','honeycomb','Interface speed','36','0','36','4','0','22131'), ('83685','honeycomb','Virtual disks','36','8','36','4','0','22131'), ('83686','honeycomb','Fans','36','12','36','4','0','22131'), ('83687','item','System health','0','0','36','4','1','22132'), ('83688','item','Serial number','0','4','36','4','1','22132'), ('83689','item','HW model','36','0','36','4','1','22132'), ('83690','item','Firmware','36','4','36','4','1','22132'), ('83691','honeycomb','Interface link','0','0','72','4','0','22133'), ('83692','honeycomb','Temperature sensors','0','4','72','4','0','22133'), ('83693','honeycomb','Physical disks','0','8','36','4','0','22133'), ('83694','honeycomb','Power supplies','0','12','36','4','0','22133'), ('83695','honeycomb','Virtual disks','36','8','36','4','0','22133'), ('83696','honeycomb','Fans','36','12','36','4','0','22133'), ('83697','gauge','CPU utilization','0','0','18','3','1','22134'), ('83698','gauge','Memory utilization','0','3','18','3','1','22134'), ('83699','gauge','I/O utilization','0','6','18','3','1','22134'), ('83700','gauge','SYS utilization','0','9','18','3','1','22134'), ('83701','item','Redfish API','18','0','27','3','1','22134'), ('83702','item','HW model','18','3','54','3','1','22134'), ('83703','item','Serial number','18','6','54','3','1','22134'), ('83704','item','Firmware','18','9','54','3','1','22134'), ('83705','item','System health','45','0','27','3','1','22134'), ('83706','honeycomb','Interface link','0','0','36','4','0','22135'), ('83707','honeycomb','Temperature sensors','0','4','72','4','0','22135'), ('83708','honeycomb','Physical disks','0','8','36','4','0','22135'), ('83709','honeycomb','Power supplies','0','12','36','4','0','22135'), ('83710','honeycomb','Interface speed','36','0','36','4','0','22135'), ('83711','honeycomb','Virtual disks','36','8','36','4','0','22135'), ('83712','honeycomb','Fans','36','12','36','4','0','22135'), ('83713','item','System health','0','0','36','4','1','22136'), ('83714','item','Serial number','0','4','36','4','1','22136'), ('83715','item','HW model','36','0','36','4','1','22136'), ('83716','item','Firmware','36','4','36','4','1','22136'), ('83717','honeycomb','Interface link','0','0','72','4','0','22137'), ('83718','honeycomb','Temperature sensors','0','4','72','4','0','22137'), ('83719','honeycomb','Physical disks','0','8','36','4','0','22137'), ('83720','honeycomb','Power supplies','0','12','36','4','0','22137'), ('83721','honeycomb','Virtual disks','36','8','36','4','0','22137'), ('83722','honeycomb','Fans','36','12','36','4','0','22137'), ('83723','gauge','CPU utilization','0','0','18','3','1','22138'), ('83724','gauge','Memory utilization','0','3','18','3','1','22138'), ('83725','gauge','I/O utilization','0','6','18','3','1','22138'), ('83726','gauge','SYS utilization','0','9','18','3','1','22138'), ('83727','item','Redfish API','18','0','27','3','1','22138'), ('83728','item','HW model','18','3','54','3','1','22138'), ('83729','item','Serial number','18','6','54','3','1','22138'), ('83730','item','Firmware','18','9','54','3','1','22138'), ('83731','item','System health','45','0','27','3','1','22138'), ('83732','honeycomb','Interface link','0','0','36','4','0','22139'), ('83733','honeycomb','Temperature sensors','0','4','72','4','0','22139'), ('83734','honeycomb','Physical disks','0','8','36','4','0','22139'), ('83735','honeycomb','Power supplies','0','12','36','4','0','22139'), ('83736','honeycomb','Interface speed','36','0','36','4','0','22139'), ('83737','honeycomb','Virtual disks','36','8','36','4','0','22139'), ('83738','honeycomb','Fans','36','12','36','4','0','22139'), ('83739','item','System health','0','0','36','4','1','22140'), ('83740','item','Serial number','0','4','36','4','1','22140'), ('83741','item','HW model','36','0','36','4','1','22140'), ('83742','item','Firmware','36','4','36','4','1','22140'), ('83743','honeycomb','Interface link','0','0','72','4','0','22141'), ('83744','honeycomb','Temperature sensors','0','4','72','4','0','22141'), ('83745','honeycomb','Physical disks','0','8','36','4','0','22141'), ('83746','honeycomb','Power supplies','0','12','36','4','0','22141'), ('83747','honeycomb','Virtual disks','36','8','36','4','0','22141'), ('83748','honeycomb','Fans','36','12','36','4','0','22141'), ('83749','gauge','CPU utilization','0','0','18','3','1','22142'), ('83750','gauge','Memory utilization','0','3','18','3','1','22142'), ('83751','gauge','I/O utilization','0','6','18','3','1','22142'), ('83752','gauge','SYS utilization','0','9','18','3','1','22142'), ('83753','item','Redfish API','18','0','27','3','1','22142'), ('83754','item','HW model','18','3','54','3','1','22142'), ('83755','item','Serial number','18','6','54','3','1','22142'), ('83756','item','Firmware','18','9','54','3','1','22142'), ('83757','item','System health','45','0','27','3','1','22142'), ('83758','honeycomb','Interface link','0','0','36','4','0','22143'), ('83759','honeycomb','Temperature sensors','0','4','72','4','0','22143'), ('83760','honeycomb','Physical disks','0','8','36','4','0','22143'), ('83761','honeycomb','Power supplies','0','12','36','4','0','22143'), ('83762','honeycomb','Interface speed','36','0','36','4','0','22143'), ('83763','honeycomb','Virtual disks','36','8','36','4','0','22143'), ('83764','honeycomb','Fans','36','12','36','4','0','22143'), ('83765','item','System health','0','0','36','4','1','22144'), ('83766','item','Serial number','0','4','36','4','1','22144'), ('83767','item','HW model','36','0','36','4','1','22144'), ('83768','item','Firmware','36','4','36','4','1','22144'), ('83769','honeycomb','Interface link','0','0','72','4','0','22145'), ('83770','honeycomb','Temperature sensors','0','4','72','4','0','22145'), ('83771','honeycomb','Physical disks','0','8','36','4','0','22145'), ('83772','honeycomb','Power supplies','0','12','36','4','0','22145'), ('83773','honeycomb','Virtual disks','36','8','36','4','0','22145'), ('83774','honeycomb','Fans','36','12','36','4','0','22145'), ('83775','gauge','CPU utilization','0','0','18','3','1','22146'), ('83776','gauge','Memory utilization','0','3','18','3','1','22146'), ('83777','gauge','I/O utilization','0','6','18','3','1','22146'), ('83778','gauge','SYS utilization','0','9','18','3','1','22146'), ('83779','item','Redfish API','18','0','27','3','1','22146'), ('83780','item','HW model','18','3','54','3','1','22146'), ('83781','item','Serial number','18','6','54','3','1','22146'), ('83782','item','Firmware','18','9','54','3','1','22146'), ('83783','item','System health','45','0','27','3','1','22146'), ('83784','honeycomb','Interface link','0','0','36','4','0','22147'), ('83785','honeycomb','Temperature sensors','0','4','72','4','0','22147'), ('83786','honeycomb','Physical disks','0','8','36','4','0','22147'), ('83787','honeycomb','Power supplies','0','12','36','4','0','22147'), ('83788','honeycomb','Interface speed','36','0','36','4','0','22147'), ('83789','honeycomb','Virtual disks','36','8','36','4','0','22147'), ('83790','honeycomb','Fans','36','12','36','4','0','22147'), ('83791','item','System health','0','0','36','4','1','22148'), ('83792','item','Serial number','0','4','36','4','1','22148'), ('83793','item','HW model','36','0','36','4','1','22148'), ('83794','item','Firmware','36','4','36','4','1','22148'), ('83795','honeycomb','Interface link','0','0','72','4','0','22149'), ('83796','honeycomb','Temperature sensors','0','4','72','4','0','22149'), ('83797','honeycomb','Physical disks','0','8','36','4','0','22149'), ('83798','honeycomb','Power supplies','0','12','36','4','0','22149'), ('83799','honeycomb','Virtual disks','36','8','36','4','0','22149'), ('83800','honeycomb','Fans','36','12','36','4','0','22149'), ('83801','gauge','CPU utilization','0','0','18','3','1','22150'), ('83802','gauge','Memory utilization','0','3','18','3','1','22150'), ('83803','gauge','I/O utilization','0','6','18','3','1','22150'), ('83804','gauge','SYS utilization','0','9','18','3','1','22150'), ('83805','item','Redfish API','18','0','27','3','1','22150'), ('83806','item','HW model','18','3','54','3','1','22150'), ('83807','item','Serial number','18','6','54','3','1','22150'), ('83808','item','Firmware','18','9','54','3','1','22150'), ('83809','item','System health','45','0','27','3','1','22150'), ('83810','honeycomb','Interface link','0','0','36','4','0','22151'), ('83811','honeycomb','Temperature sensors','0','4','72','4','0','22151'), ('83812','honeycomb','Physical disks','0','8','36','4','0','22151'), ('83813','honeycomb','Power supplies','0','12','36','4','0','22151'), ('83814','honeycomb','Interface speed','36','0','36','4','0','22151'), ('83815','honeycomb','Virtual disks','36','8','36','4','0','22151'), ('83816','honeycomb','Fans','36','12','36','4','0','22151'), ('83817','item','System health','0','0','36','4','1','22152'), ('83818','item','Serial number','0','4','36','4','1','22152'), ('83819','item','HW model','36','0','36','4','1','22152'), ('83820','item','Firmware','36','4','36','4','1','22152'), ('83821','honeycomb','Interface link','0','0','72','4','0','22153'), ('83822','honeycomb','Temperature sensors','0','4','72','4','0','22153'), ('83823','honeycomb','Physical disks','0','8','36','4','0','22153'), ('83824','honeycomb','Power supplies','0','12','36','4','0','22153'), ('83825','honeycomb','Virtual disks','36','8','36','4','0','22153'), ('83826','honeycomb','Fans','36','12','36','4','0','22153'), ('83827','item','System health','0','0','36','4','1','22154'), ('83828','item','Serial number','0','4','36','4','1','22154'), ('83829','item','HW model','36','0','36','4','1','22154'), ('83830','item','Firmware','36','4','36','4','1','22154'), ('83831','honeycomb','Interface link','0','0','72','4','0','22155'), ('83832','honeycomb','Temperature sensors','0','4','72','4','0','22155'), ('83833','honeycomb','Physical disks','0','8','36','4','0','22155'), ('83834','honeycomb','Power supplies','0','12','36','4','0','22155'), ('83835','honeycomb','Virtual disks','36','8','36','4','0','22155'), ('83836','honeycomb','Fans','36','12','36','4','0','22155'), ('83837','graphprototype','','0','0','72','10','0','22156'), ('83838','graphprototype','','0','0','72','10','0','22157'), ('83839','graphprototype','','0','0','72','10','0','22158'), ('83840','graphprototype','','0','0','72','5','0','22159'), ('83841','graphprototype','','0','5','72','5','0','22159'), ('83842','graphprototype','','0','0','72','5','0','22160'), ('83843','graphprototype','','0','0','72','5','0','22161'), ('83844','graphprototype','','0','0','72','5','0','22162'), ('83845','graphprototype','','0','0','72','5','0','22163'), ('83846','graphprototype','','0','0','72','4','0','22164'), ('83847','graphprototype','','0','4','72','4','0','22164'), ('83848','graphprototype','','0','8','72','4','0','22164'), ('83849','graphprototype','','0','0','72','4','0','22165'), ('83850','graph','','0','0','36','5','0','22166'), ('83851','graph','','36','0','36','5','0','22166'), ('83852','graph','','0','0','36','5','0','22167'), ('83853','graph','','36','0','36','5','0','22167'), ('83854','graphprototype','','0','0','72','20','0','22168'), ('83855','graphprototype','','0','0','72','20','0','22169'), ('83856','graphprototype','','0','0','72','20','0','22170'), ('83857','graphprototype','','0','0','72','20','0','22171'); INSERT INTO widget_field (widget_fieldid,widgetid,type,name,value_int,value_str,value_groupid,value_hostid,value_itemid,value_graphid,value_sysmapid,value_serviceid,value_slaid,value_userid,value_actionid,value_mediatypeid) VALUES ('1','1','3','hostids.0','0','',NULL,'10084',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('2','1','1','columns.0.name','0','Host name',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('3','1','0','columns.0.data','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('4','1','1','columns.0.item','0','System name',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('5','1','0','columns.0.aggregate_function','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('6','1','0','columns.0.decimal_places','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('7','1','1','columns.0.base_color','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('8','1','1','columns.1.name','0','Utilization',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('9','1','0','columns.1.data','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('10','1','1','columns.1.item','0','CPU utilization',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('12','1','0','columns.1.aggregate_function','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('13','1','1','columns.1.min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('14','1','1','columns.1.max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('15','1','0','columns.1.decimal_places','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('16','1','0','columns.1.display','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('17','1','0','columns.1.history','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('18','1','1','columns.1.base_color','0','4CAF50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('19','1','1','columnsthresholds.1.color.0','0','FFFF00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('20','1','1','columnsthresholds.1.threshold.0','0','50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('21','1','1','columnsthresholds.1.color.1','0','FF8000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('22','1','1','columnsthresholds.1.threshold.1','0','80',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('23','1','1','columnsthresholds.1.color.2','0','FF4000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('24','1','1','columnsthresholds.1.threshold.2','0','90',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('25','1','1','columns.2.name','0','1m avg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('26','1','0','columns.2.data','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('27','1','1','columns.2.item','0','Load average (1m avg)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('29','1','0','columns.2.aggregate_function','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('30','1','0','columns.2.decimal_places','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('31','1','0','columns.2.display','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('32','1','0','columns.2.history','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('33','1','1','columns.2.base_color','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('34','1','1','columns.3.name','0','5m avg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('35','1','0','columns.3.data','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('36','1','1','columns.3.item','0','Load average (5m avg)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('38','1','0','columns.3.aggregate_function','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('39','1','0','columns.3.decimal_places','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('40','1','0','columns.3.display','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('41','1','0','columns.3.history','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('42','1','1','columns.3.base_color','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('43','1','1','columns.4.name','0','15m avg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('44','1','0','columns.4.data','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('45','1','1','columns.4.item','0','Load average (15m avg)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('47','1','0','columns.4.aggregate_function','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('48','1','0','columns.4.decimal_places','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('49','1','0','columns.4.display','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('50','1','0','columns.4.history','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('51','1','1','columns.4.base_color','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('52','1','1','columns.5.name','0','Processes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('53','1','0','columns.5.data','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('54','1','1','columns.5.item','0','Number of processes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('56','1','0','columns.5.aggregate_function','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('57','1','0','columns.5.decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('58','1','0','columns.5.display','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('59','1','0','columns.5.history','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('60','1','1','columns.5.base_color','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('61','1','0','column','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('62','2','4','itemid.0','0','',NULL,NULL,'23277',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('63','2','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('64','2','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('65','2','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('66','2','1','description','0','{HOST.NAME} Values per second',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('67','2','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('68','2','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('69','2','0','desc_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('70','4','0','time_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('71','4','0','time_sec','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('73','4','0','clock_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('74','4','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('75','4','0','show.1','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('76','5','1','ds.0.hosts.0','0','Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('77','5','1','ds.0.items.0','0','Number of processed values per second',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('78','5','1','ds.0.color','0','90CAF9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('80','5','0','lefty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('81','5','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('82','5','0','axisx','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('83','5','0','legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('84','6','0','interface_type.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('85','7','0','show_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('86','8','3','hostids.0','0','',NULL,'10084',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('87','8','1','default_view','0','56.95225,24.11301,11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('88','9','0','show','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('89','9','0','show_tags','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('90','10','3','hostids.0','0','',NULL,'10084',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('91','12','0','ds.0.transparency','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('92','12','0','legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('93','12','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('94','12','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('95','12','1','ds.0.color','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('96','12','1','ds.0.hosts.0','0','Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('97','12','1','ds.0.items.0','0','Number of processed *values per second',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('98','12','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('99','12','1','problemhosts.0','0','Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('100','13','0','ds.0.transparency','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('101','13','0','legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('102','13','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('103','13','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('104','13','1','ds.0.color','0','E57373',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('105','13','1','ds.0.hosts.0','0','Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('106','13','1','ds.0.items.0','0','Utilization of * data collector *',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('107','13','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('108','13','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('109','13','1','problemhosts.0','0','Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('110','14','0','ds.0.transparency','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('111','14','0','legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('112','14','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('113','14','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('114','14','1','ds.0.color','0','E57373',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('115','14','1','ds.0.hosts.0','0','Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('116','14','1','ds.0.items.0','0','Utilization of * internal *',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('117','14','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('118','14','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('119','14','1','problemhosts.0','0','Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('120','15','0','ds.0.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('121','15','0','ds.0.transparency','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('122','15','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('123','15','0','legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('124','15','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('125','15','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('126','15','1','ds.0.color','0','4DB6AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('127','15','1','ds.0.hosts.0','0','Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('128','15','1','ds.0.items.0','0','*cache*% used',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('129','15','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('130','15','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('131','15','1','problemhosts.0','0','Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('132','16','0','ds.0.transparency','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('133','16','0','ds.1.transparency','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('134','16','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('135','16','0','ds.1.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('136','16','0','legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('137','16','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('138','16','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('139','16','1','ds.0.color','0','9CCC65',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('140','16','1','ds.0.hosts.0','0','Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('141','16','1','ds.1.hosts.0','0','Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('142','16','1','ds.0.items.0','0','Value cache hits',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('143','16','1','ds.1.items.0','0','Value cache misses',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('144','16','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('145','16','1','problemhosts.0','0','Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('146','17','0','ds.0.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('147','17','0','ds.1.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('148','17','0','ds.2.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('149','17','0','ds.0.transparency','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('150','17','0','ds.1.transparency','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('151','17','0','ds.2.transparency','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('152','17','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('153','17','0','ds.1.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('154','17','0','ds.2.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('155','17','0','legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('156','17','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('157','17','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('158','17','1','ds.0.color','0','B0AF07',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('159','17','1','ds.1.color','0','E53935',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('160','17','1','ds.2.color','0','0275B8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('161','17','1','ds.0.hosts.0','0','Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('162','17','1','ds.1.hosts.0','0','Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('163','17','1','ds.2.hosts.0','0','Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('164','17','1','ds.0.items.0','0','Queue',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('165','17','1','ds.1.items.0','0','Queue over 10 minutes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('166','17','1','ds.2.items.0','0','Preprocessing queue',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('167','17','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('168','17','1','problemhosts.0','0','Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('1175','400','8','sysmapid.0','0','',NULL,NULL,NULL,NULL,'1',NULL,NULL,NULL,NULL,NULL), ('1177','17','1','ds.3.hosts.0','0','Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('1178','17','1','ds.3.items.0','0','LLD queue',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('1179','17','1','ds.3.color','0','524BBC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('36520','16','1','ds.1.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('36521','17','0','ds.3.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('36522','17','0','ds.3.transparency','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('36523','17','0','ds.3.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('36524','17','1','ds.4.hosts.0','0','Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('36525','17','1','ds.4.items.0','0','Connector queue',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('36526','17','1','ds.4.color','0','607D8B',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('36527','17','0','ds.4.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('36528','17','0','ds.4.transparency','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('36529','17','0','ds.4.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('36530','17','1','ds.5.hosts.0','0','Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('36531','17','1','ds.5.items.0','0','Discovery queue',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('36532','17','1','ds.5.color','0','66BB6A',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('36533','17','0','ds.5.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('36534','17','0','ds.5.transparency','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('36535','17','0','ds.5.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('43037','5','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('43038','12','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('43039','13','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('43040','14','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('43041','15','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('43042','16','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('43043','17','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('43044','5','1','time_period.from','0','now-1h',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('43045','5','1','time_period.to','0','now',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('74225','1','1','reference','0','NLVMO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('74226','7','1','reference','0','VAGMD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('74227','9','1','reference','0','BRUQE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('74228','400','1','reference','0','FBPGZ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('74229','10','1','reference','0','OHHHJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('79648','8','1','reference','0','TDYJO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('360984','81245','1','bg_color','0','1EA7FD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('360985','81245','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('360986','81245','1','description','0','"Information" severity alert count',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('360987','81245','0','desc_size','8','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('360988','81245','4','itemid.0','0','',NULL,NULL,'46057',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('360989','81245','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('360990','81245','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('360991','81246','1','bg_color','0','66BF3C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('360992','81246','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('360993','81246','1','description','0','"OK" severity alert count',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('360994','81246','0','desc_size','8','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('360995','81246','4','itemid.0','0','',NULL,NULL,'46058',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('360996','81246','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('360997','81246','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('360998','81247','1','bg_color','0','E69D00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('360999','81247','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361000','81247','1','description','0','"Warning" severity alert count',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361001','81247','0','desc_size','8','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361002','81247','4','itemid.0','0','',NULL,NULL,'46059',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361003','81247','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361004','81247','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361005','81248','1','bg_color','0','FF4400',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361006','81248','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361007','81248','1','description','0','"Error" severity alert count',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361008','81248','0','desc_size','8','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361009','81248','4','itemid.0','0','',NULL,NULL,'46056',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361010','81248','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361011','81248','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361012','81249','1','bg_color','0','E23636',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361013','81249','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361014','81249','1','description','0','"Critical" severity alert count',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361015','81249','0','desc_size','8','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361016','81249','4','itemid.0','0','',NULL,NULL,'46055',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361017','81249','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361018','81249','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361019','81250','6','graphid.0','0','',NULL,NULL,NULL,'2581',NULL,NULL,NULL,NULL,NULL,NULL), ('361020','81250','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361021','81251','7','graphid.0','0','',NULL,NULL,NULL,'2580',NULL,NULL,NULL,NULL,NULL,NULL), ('361022','81251','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361023','81251','0','rows','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361024','81252','5','itemid.0','0','',NULL,NULL,'46066',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361025','81252','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361026','81252','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361027','81253','5','itemid.0','0','',NULL,NULL,'46067',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361028','81253','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361029','81253','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361030','81254','5','itemid.0','0','',NULL,NULL,'46076',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361031','81254','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361032','81254','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361033','81255','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361034','81255','7','graphid.0','0','',NULL,NULL,NULL,'1400',NULL,NULL,NULL,NULL,NULL,NULL), ('361035','81255','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361036','81255','0','rows','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361037','81256','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361038','81256','7','graphid.0','0','',NULL,NULL,NULL,'1399',NULL,NULL,NULL,NULL,NULL,NULL), ('361039','81256','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361040','81256','0','rows','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361041','81257','6','graphid.0','0','',NULL,NULL,NULL,'1175',NULL,NULL,NULL,NULL,NULL,NULL), ('361042','81257','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361043','81258','6','graphid.0','0','',NULL,NULL,NULL,'1174',NULL,NULL,NULL,NULL,NULL,NULL), ('361044','81258','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361045','81259','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361046','81259','7','graphid.0','0','',NULL,NULL,NULL,'1172',NULL,NULL,NULL,NULL,NULL,NULL), ('361047','81259','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361048','81260','6','graphid.0','0','',NULL,NULL,NULL,'1176',NULL,NULL,NULL,NULL,NULL,NULL), ('361049','81260','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361050','81261','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361051','81261','7','graphid.0','0','',NULL,NULL,NULL,'1173',NULL,NULL,NULL,NULL,NULL,NULL), ('361052','81261','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361053','81262','6','graphid.0','0','',NULL,NULL,NULL,'2860',NULL,NULL,NULL,NULL,NULL,NULL), ('361054','81262','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361055','81263','6','graphid.0','0','',NULL,NULL,NULL,'2859',NULL,NULL,NULL,NULL,NULL,NULL), ('361056','81263','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361057','81264','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361058','81264','7','graphid.0','0','',NULL,NULL,NULL,'2856',NULL,NULL,NULL,NULL,NULL,NULL), ('361059','81264','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361060','81265','6','graphid.0','0','',NULL,NULL,NULL,'2861',NULL,NULL,NULL,NULL,NULL,NULL), ('361061','81265','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361062','81266','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361063','81266','7','graphid.0','0','',NULL,NULL,NULL,'2857',NULL,NULL,NULL,NULL,NULL,NULL), ('361064','81266','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361065','81267','6','graphid.0','0','',NULL,NULL,NULL,'840',NULL,NULL,NULL,NULL,NULL,NULL), ('361066','81267','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361067','81268','6','graphid.0','0','',NULL,NULL,NULL,'838',NULL,NULL,NULL,NULL,NULL,NULL), ('361068','81268','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361069','81269','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361070','81269','7','graphid.0','0','',NULL,NULL,NULL,'836',NULL,NULL,NULL,NULL,NULL,NULL), ('361071','81269','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361072','81270','6','graphid.0','0','',NULL,NULL,NULL,'839',NULL,NULL,NULL,NULL,NULL,NULL), ('361073','81270','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361074','81271','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361075','81271','7','graphid.0','0','',NULL,NULL,NULL,'837',NULL,NULL,NULL,NULL,NULL,NULL), ('361076','81271','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361077','81272','6','graphid.0','0','',NULL,NULL,NULL,'1622',NULL,NULL,NULL,NULL,NULL,NULL), ('361078','81272','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361079','81273','6','graphid.0','0','',NULL,NULL,NULL,'1624',NULL,NULL,NULL,NULL,NULL,NULL), ('361080','81273','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361081','81274','6','graphid.0','0','',NULL,NULL,NULL,'1626',NULL,NULL,NULL,NULL,NULL,NULL), ('361082','81274','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361083','81275','6','graphid.0','0','',NULL,NULL,NULL,'1625',NULL,NULL,NULL,NULL,NULL,NULL), ('361084','81275','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361085','81276','6','graphid.0','0','',NULL,NULL,NULL,'1628',NULL,NULL,NULL,NULL,NULL,NULL), ('361086','81276','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361087','81277','6','graphid.0','0','',NULL,NULL,NULL,'1623',NULL,NULL,NULL,NULL,NULL,NULL), ('361088','81277','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361089','81278','6','graphid.0','0','',NULL,NULL,NULL,'1627',NULL,NULL,NULL,NULL,NULL,NULL), ('361090','81278','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361091','81279','6','graphid.0','0','',NULL,NULL,NULL,'2466',NULL,NULL,NULL,NULL,NULL,NULL), ('361092','81279','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361093','81280','6','graphid.0','0','',NULL,NULL,NULL,'2478',NULL,NULL,NULL,NULL,NULL,NULL), ('361094','81280','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361095','81281','6','graphid.0','0','',NULL,NULL,NULL,'1125',NULL,NULL,NULL,NULL,NULL,NULL), ('361096','81281','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361097','81282','6','graphid.0','0','',NULL,NULL,NULL,'1128',NULL,NULL,NULL,NULL,NULL,NULL), ('361098','81282','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361099','81283','6','graphid.0','0','',NULL,NULL,NULL,'1127',NULL,NULL,NULL,NULL,NULL,NULL), ('361100','81283','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361101','81284','6','graphid.0','0','',NULL,NULL,NULL,'1129',NULL,NULL,NULL,NULL,NULL,NULL), ('361102','81284','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361103','81285','6','graphid.0','0','',NULL,NULL,NULL,'1126',NULL,NULL,NULL,NULL,NULL,NULL), ('361104','81285','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361105','81286','6','graphid.0','0','',NULL,NULL,NULL,'1182',NULL,NULL,NULL,NULL,NULL,NULL), ('361106','81286','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361107','81287','6','graphid.0','0','',NULL,NULL,NULL,'1178',NULL,NULL,NULL,NULL,NULL,NULL), ('361108','81287','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361109','81288','6','graphid.0','0','',NULL,NULL,NULL,'1179',NULL,NULL,NULL,NULL,NULL,NULL), ('361110','81288','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361111','81289','6','graphid.0','0','',NULL,NULL,NULL,'1177',NULL,NULL,NULL,NULL,NULL,NULL), ('361112','81289','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361113','81290','6','graphid.0','0','',NULL,NULL,NULL,'1183',NULL,NULL,NULL,NULL,NULL,NULL), ('361114','81290','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361115','81291','6','graphid.0','0','',NULL,NULL,NULL,'1180',NULL,NULL,NULL,NULL,NULL,NULL), ('361116','81291','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361117','81292','6','graphid.0','0','',NULL,NULL,NULL,'1181',NULL,NULL,NULL,NULL,NULL,NULL), ('361118','81292','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361119','81293','6','graphid.0','0','',NULL,NULL,NULL,'1260',NULL,NULL,NULL,NULL,NULL,NULL), ('361120','81293','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361121','81294','6','graphid.0','0','',NULL,NULL,NULL,'1250',NULL,NULL,NULL,NULL,NULL,NULL), ('361122','81294','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361123','81295','6','graphid.0','0','',NULL,NULL,NULL,'1259',NULL,NULL,NULL,NULL,NULL,NULL), ('361124','81295','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361125','81296','7','graphid.0','0','',NULL,NULL,NULL,'2288',NULL,NULL,NULL,NULL,NULL,NULL), ('361126','81296','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361127','81296','0','rows','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361128','81297','7','graphid.0','0','',NULL,NULL,NULL,'2287',NULL,NULL,NULL,NULL,NULL,NULL), ('361129','81297','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361130','81297','0','rows','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361131','81298','1','description','0','Size',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361132','81298','0','desc_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361133','81298','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361134','81298','4','itemid.0','0','',NULL,NULL,'47317',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361135','81298','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361136','81298','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361137','81298','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361138','81299','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361139','81299','1','description','0','Releases',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361140','81299','0','desc_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361141','81299','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361142','81299','4','itemid.0','0','',NULL,NULL,'47303',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361143','81299','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361144','81299','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361145','81299','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361146','81300','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361147','81300','1','description','0','Stargazers',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361148','81300','0','desc_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361149','81300','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361150','81300','4','itemid.0','0','',NULL,NULL,'47318',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361151','81300','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361152','81300','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361153','81300','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361154','81301','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361155','81301','1','description','0','Open issues',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361156','81301','0','desc_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361157','81301','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361158','81301','4','itemid.0','0','',NULL,NULL,'47309',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361159','81301','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361160','81301','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361161','81301','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361162','81301','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361163','81302','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361164','81302','1','description','0','Open PRs',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361165','81302','0','desc_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361166','81302','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361167','81302','4','itemid.0','0','',NULL,NULL,'47312',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361168','81302','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361169','81302','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361170','81302','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361171','81302','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361172','81303','1','ds.0.color.0','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361173','81303','1','ds.0.color.1','0','4CAF50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361174','81303','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361175','81303','4','ds.0.itemids.0','0','',NULL,NULL,'47320',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361176','81303','4','ds.0.itemids.1','0','',NULL,NULL,'47321',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361177','81303','0','ds.0.missingdatafunc','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361178','81303','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361179','81303','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361180','81303','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361181','81303','1','reference','0','RHXEN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361182','81303','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361183','81303','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361184','81304','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361185','81304','7','graphid.0','0','',NULL,NULL,NULL,'2819',NULL,NULL,NULL,NULL,NULL,NULL), ('361186','81304','1','reference','0','QXEXC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361187','81305','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361188','81305','1','description','0','Forks',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361189','81305','0','desc_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361190','81305','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361191','81305','4','itemid.0','0','',NULL,NULL,'47314',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361192','81305','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361193','81305','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361194','81305','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361195','81306','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361196','81306','1','description','0','Tags',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361197','81306','0','desc_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361198','81306','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361199','81306','4','itemid.0','0','',NULL,NULL,'47306',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361200','81306','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361201','81306','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361202','81306','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361203','81307','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361204','81307','1','description','0','Watchers',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361205','81307','0','desc_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361206','81307','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361207','81307','4','itemid.0','0','',NULL,NULL,'47319',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361208','81307','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361209','81307','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361210','81307','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361211','81308','1','ds.0.color.0','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361212','81308','1','ds.0.color.1','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361213','81308','1','ds.0.color.2','0','4CAF50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361214','81308','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361215','81308','4','ds.0.itemids.0','0','',NULL,NULL,'47310',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361216','81308','4','ds.0.itemids.1','0','',NULL,NULL,'47309',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361217','81308','4','ds.0.itemids.2','0','',NULL,NULL,'47308',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361218','81308','0','ds.0.missingdatafunc','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361219','81308','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361220','81308','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361221','81308','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361222','81308','1','reference','0','NDLZO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361223','81308','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361224','81308','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361225','81309','1','ds.0.color.0','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361226','81309','1','ds.0.color.1','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361227','81309','1','ds.0.color.2','0','4CAF50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361228','81309','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361229','81309','4','ds.0.itemids.0','0','',NULL,NULL,'47313',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361230','81309','4','ds.0.itemids.1','0','',NULL,NULL,'47312',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361231','81309','4','ds.0.itemids.2','0','',NULL,NULL,'47311',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361232','81309','0','ds.0.missingdatafunc','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361233','81309','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361234','81309','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361235','81309','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361236','81309','1','reference','0','SCQDP',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361237','81309','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361238','81309','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361239','81310','1','items.0','0','Branch [*]: Number of commits',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361240','81310','1','reference','0','YXPRE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361241','81311','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361242','81311','1','itemid._reference','0','YXPRE._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361243','81311','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361244','81312','1','ds.0.color.0','0','4CAF50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361245','81312','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361246','81312','4','ds.0.itemids.0','0','',NULL,NULL,'47322',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361247','81312','0','ds.0.missingdatafunc','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361248','81312','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361249','81312','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361250','81312','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361251','81312','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361252','81312','1','reference','0','MTFRC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361253','81312','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361254','81312','0','simple_triggers','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361255','81312','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361256','81313','1','reference','0','UDUDX',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361257','81314','1','items.0','0','Runner [*]: Online',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361258','81314','1','primary_label','0','{ITEM.NAME}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361259','81314','1','reference','0','YSQRZ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361260','81314','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361261','81314','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361262','81314','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361263','81314','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361264','81314','1','thresholds.1.color','0','4CAF50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361265','81314','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361266','81315','1','items.0','0','Runner [*]: Busy',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361267','81315','1','primary_label','0','{ITEM.NAME}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361268','81315','1','reference','0','ZYVGW',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361269','81315','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361270','81315','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361271','81315','1','thresholds.0.color','0','D2D2D2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361272','81315','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361273','81315','1','thresholds.1.color','0','29B6F6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361274','81315','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361275','81316','4','itemid.0','0','',NULL,NULL,'32636',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361276','81316','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361277','81316','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361278','81317','4','itemid.0','0','',NULL,NULL,'32662',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361279','81317','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361280','81317','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361281','81318','6','graphid.0','0','',NULL,NULL,NULL,'2479',NULL,NULL,NULL,NULL,NULL,NULL), ('361282','81318','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361283','81319','4','itemid.0','0','',NULL,NULL,'32667',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361284','81319','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361285','81320','4','itemid.0','0','',NULL,NULL,'32638',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361286','81320','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361287','81320','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361288','81321','4','itemid.0','0','',NULL,NULL,'32640',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361289','81321','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361290','81321','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361291','81322','4','itemid.0','0','',NULL,NULL,'32648',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361292','81322','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361293','81322','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361294','81323','6','graphid.0','0','',NULL,NULL,NULL,'2480',NULL,NULL,NULL,NULL,NULL,NULL), ('361295','81323','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361296','81324','4','itemid.0','0','',NULL,NULL,'32647',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361297','81324','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361298','81325','4','itemid.0','0','',NULL,NULL,'32637',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361299','81325','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361300','81325','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361301','81326','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361302','81326','7','graphid.0','0','',NULL,NULL,NULL,'1075',NULL,NULL,NULL,NULL,NULL,NULL), ('361303','81326','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361304','81327','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361305','81327','7','graphid.0','0','',NULL,NULL,NULL,'1630',NULL,NULL,NULL,NULL,NULL,NULL), ('361306','81327','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361307','81328','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361308','81328','7','graphid.0','0','',NULL,NULL,NULL,'1629',NULL,NULL,NULL,NULL,NULL,NULL), ('361309','81328','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361310','81329','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361311','81329','7','graphid.0','0','',NULL,NULL,NULL,'1078',NULL,NULL,NULL,NULL,NULL,NULL), ('361312','81329','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361313','81330','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361314','81330','7','graphid.0','0','',NULL,NULL,NULL,'1076',NULL,NULL,NULL,NULL,NULL,NULL), ('361315','81330','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361316','81331','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361317','81331','7','graphid.0','0','',NULL,NULL,NULL,'1079',NULL,NULL,NULL,NULL,NULL,NULL), ('361318','81331','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361319','81332','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361320','81332','7','graphid.0','0','',NULL,NULL,NULL,'1077',NULL,NULL,NULL,NULL,NULL,NULL), ('361321','81332','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361322','81333','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361323','81333','7','graphid.0','0','',NULL,NULL,NULL,'1080',NULL,NULL,NULL,NULL,NULL,NULL), ('361324','81333','1','reference','0','AAAAH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361325','81334','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361326','81334','7','graphid.0','0','',NULL,NULL,NULL,'1632',NULL,NULL,NULL,NULL,NULL,NULL), ('361327','81334','1','reference','0','AAAAI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361328','81335','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361329','81335','7','graphid.0','0','',NULL,NULL,NULL,'1631',NULL,NULL,NULL,NULL,NULL,NULL), ('361330','81335','1','reference','0','AAAAJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361331','81336','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361332','81336','7','graphid.0','0','',NULL,NULL,NULL,'1081',NULL,NULL,NULL,NULL,NULL,NULL), ('361333','81336','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361334','81337','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361335','81337','7','graphid.0','0','',NULL,NULL,NULL,'1634',NULL,NULL,NULL,NULL,NULL,NULL), ('361336','81337','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361337','81338','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361338','81338','7','graphid.0','0','',NULL,NULL,NULL,'1633',NULL,NULL,NULL,NULL,NULL,NULL), ('361339','81338','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361340','81339','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361341','81339','7','graphid.0','0','',NULL,NULL,NULL,'1084',NULL,NULL,NULL,NULL,NULL,NULL), ('361342','81339','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361343','81340','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361344','81340','7','graphid.0','0','',NULL,NULL,NULL,'1082',NULL,NULL,NULL,NULL,NULL,NULL), ('361345','81340','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361346','81341','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361347','81341','7','graphid.0','0','',NULL,NULL,NULL,'1085',NULL,NULL,NULL,NULL,NULL,NULL), ('361348','81341','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361349','81342','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361350','81342','7','graphid.0','0','',NULL,NULL,NULL,'1083',NULL,NULL,NULL,NULL,NULL,NULL), ('361351','81342','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361352','81343','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361353','81343','7','graphid.0','0','',NULL,NULL,NULL,'1086',NULL,NULL,NULL,NULL,NULL,NULL), ('361354','81343','1','reference','0','AAAAH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361355','81344','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361356','81344','7','graphid.0','0','',NULL,NULL,NULL,'1636',NULL,NULL,NULL,NULL,NULL,NULL), ('361357','81344','1','reference','0','AAAAI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361358','81345','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361359','81345','7','graphid.0','0','',NULL,NULL,NULL,'1635',NULL,NULL,NULL,NULL,NULL,NULL), ('361360','81345','1','reference','0','AAAAJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361361','81346','6','graphid.0','0','',NULL,NULL,NULL,'1186',NULL,NULL,NULL,NULL,NULL,NULL), ('361362','81346','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361363','81347','6','graphid.0','0','',NULL,NULL,NULL,'1185',NULL,NULL,NULL,NULL,NULL,NULL), ('361364','81347','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361365','81348','6','graphid.0','0','',NULL,NULL,NULL,'1184',NULL,NULL,NULL,NULL,NULL,NULL), ('361366','81348','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361367','81349','6','graphid.0','0','',NULL,NULL,NULL,'1189',NULL,NULL,NULL,NULL,NULL,NULL), ('361368','81349','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361369','81350','6','graphid.0','0','',NULL,NULL,NULL,'1188',NULL,NULL,NULL,NULL,NULL,NULL), ('361370','81350','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361371','81351','6','graphid.0','0','',NULL,NULL,NULL,'1187',NULL,NULL,NULL,NULL,NULL,NULL), ('361372','81351','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361373','81352','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361374','81352','4','itemid.0','0','',NULL,NULL,'47167',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361375','81352','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361376','81352','0','show.1','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361377','81352','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361378','81352','0','time_h_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361379','81352','0','time_size','9','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361380','81352','0','time_v_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361381','81352','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361382','81353','1','ds.0.color.0','0','00FF00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361383','81353','1','ds.0.color.1','0','0000FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361384','81353','1','ds.0.color.2','0','FFBF00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361385','81353','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361386','81353','4','ds.0.itemids.0','0','',NULL,NULL,'47169',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361387','81353','4','ds.0.itemids.1','0','',NULL,NULL,'47171',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361388','81353','4','ds.0.itemids.2','0','',NULL,NULL,'47170',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361389','81353','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361390','81353','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361391','81353','1','reference','0','AAEAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361392','81354','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361393','81354','4','itemid.0','0','',NULL,NULL,'47163',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361394','81354','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361395','81354','0','show.1','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361396','81354','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361397','81354','0','time_h_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361398','81354','0','time_size','9','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361399','81354','0','time_v_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361400','81354','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361401','81355','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361402','81355','4','itemid.0','0','',NULL,NULL,'47166',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361403','81355','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361404','81355','0','show.1','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361405','81355','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361406','81355','0','time_h_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361407','81355','0','time_size','9','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361408','81355','0','time_v_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361409','81355','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361410','81356','0','ds.0.aggregate_function','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361411','81356','1','ds.0.aggregate_interval','0','30m',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361412','81356','1','ds.0.color','0','FFBF00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361413','81356','1','ds.0.items.0','0','Issue [*]: Latency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361414','81356','0','ds.0.type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361415','81356','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361416','81356','0','legend_lines','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361417','81356','1','or.0.color','0','00FF00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361418','81356','1','or.0.items.0','0','*Create*',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361419','81356','1','or.1.color','0','0000FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361420','81356','1','or.1.items.0','0','*Update*',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361421','81356','1','or.2.color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361422','81356','1','or.2.items.0','0','*Delete*',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361423','81356','1','or.3.color','0','FFBF00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361424','81356','1','or.3.items.0','0','*ReIndex*',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361425','81356','1','or.4.color','0','4000FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361426','81356','1','or.4.items.0','0','*DeIndex*',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361427','81356','1','reference','0','AAEAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361428','81356','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361429','81357','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361430','81357','4','itemid.0','0','',NULL,NULL,'47164',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361431','81357','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361432','81357','0','show.1','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361433','81357','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361434','81357','0','time_h_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361435','81357','0','time_size','9','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361436','81357','0','time_v_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361437','81357','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361438','81358','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361439','81358','4','itemid.0','0','',NULL,NULL,'47165',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361440','81358','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361441','81358','0','show.1','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361442','81358','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361443','81358','0','time_h_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361444','81358','0','time_size','9','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361445','81358','0','time_v_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361446','81358','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361447','81359','1','ds.0.color.0','0','FFBF00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361448','81359','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361449','81359','4','ds.0.itemids.0','0','',NULL,NULL,'47186',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361450','81359','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361451','81359','1','reference','0','AAEAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361452','81360','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361453','81360','4','itemid.0','0','',NULL,NULL,'47168',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361454','81360','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361455','81360','0','show.1','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361456','81360','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361457','81360','0','time_h_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361458','81360','0','time_size','9','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361459','81360','0','time_v_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361460','81360','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361461','81361','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361462','81361','4','itemid.0','0','',NULL,NULL,'47176',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361463','81361','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361464','81361','0','show.1','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361465','81361','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361466','81361','1','thresholds.0.color','0','4CAF50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361467','81361','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361468','81361','1','thresholds.1.color','0','EF5350',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361469','81361','1','thresholds.1.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361470','81361','0','time_h_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361471','81361','0','time_size','9','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361472','81361','0','time_v_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361473','81361','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361474','81362','1','ds.0.color.0','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361475','81362','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361476','81362','4','ds.0.itemids.0','0','',NULL,NULL,'47173',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361477','81362','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361478','81362','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361479','81362','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361480','81363','1','ds.0.color.0','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361481','81363','1','ds.0.color.1','0','00FF00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361482','81363','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361483','81363','4','ds.0.itemids.0','0','',NULL,NULL,'47160',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361484','81363','4','ds.0.itemids.1','0','',NULL,NULL,'47159',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361485','81363','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361486','81363','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361487','81363','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361488','81363','1','reference','0','AAAFA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361489','81363','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361490','81364','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361491','81364','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361492','81364','4','ds.0.itemids.0','0','',NULL,NULL,'47162',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361493','81364','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361494','81364','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361495','81365','1','ds.0.color.0','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361496','81365','1','ds.0.color.1','0','00FF00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361497','81365','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361498','81365','4','ds.0.itemids.0','0','',NULL,NULL,'47174',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361499','81365','4','ds.0.itemids.1','0','',NULL,NULL,'47175',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361500','81365','0','ds.0.stacked','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361501','81365','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361502','81365','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361503','81365','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361504','81365','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361505','81365','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361506','81366','1','ds.0.color.0','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361507','81366','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361508','81366','4','ds.0.itemids.0','0','',NULL,NULL,'47172',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361509','81366','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361510','81366','1','reference','0','AAAFE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361511','81366','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361512','81367','1','ds.0.color.0','0','FFBF00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361513','81367','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361514','81367','4','ds.0.itemids.0','0','',NULL,NULL,'47161',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361515','81367','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361516','81367','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361517','81368','1','ds.0.color.0','0','FFBF00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361518','81368','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361519','81368','4','ds.0.itemids.0','0','',NULL,NULL,'47179',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361520','81368','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361521','81368','1','reference','0','AABAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361522','81368','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361523','81369','1','ds.0.color.0','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361524','81369','1','ds.0.color.1','0','00FF00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361525','81369','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361526','81369','4','ds.0.itemids.0','0','',NULL,NULL,'47177',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361527','81369','4','ds.0.itemids.1','0','',NULL,NULL,'47178',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361528','81369','0','ds.0.stacked','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361529','81369','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361530','81369','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361531','81369','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361532','81369','1','reference','0','AABAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361533','81369','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361534','81370','1','ds.0.color.0','0','FFBF00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361535','81370','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361536','81370','4','ds.0.itemids.0','0','',NULL,NULL,'47180',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361537','81370','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361538','81370','1','reference','0','AABAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361539','81371','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361540','81371','4','itemid.0','0','',NULL,NULL,'47181',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361541','81371','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361542','81371','0','show.1','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361543','81371','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361544','81371','1','thresholds.0.color','0','FFBF00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361545','81371','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361546','81371','0','time_h_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361547','81371','0','time_size','9','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361548','81371','0','time_v_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361549','81371','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361550','81372','1','ds.0.color.0','0','FFBF00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361551','81372','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361552','81372','4','ds.0.itemids.0','0','',NULL,NULL,'47185',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361553','81372','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361554','81372','1','reference','0','AADAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361555','81373','7','graphid.0','0','',NULL,NULL,NULL,'2795',NULL,NULL,NULL,NULL,NULL,NULL), ('361556','81373','1','reference','0','AADFA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361557','81374','1','ds.0.color.0','0','FFBF00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361558','81374','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361559','81374','4','ds.0.itemids.0','0','',NULL,NULL,'47184',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361560','81374','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361561','81374','1','reference','0','AADAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361562','81374','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361563','81375','1','ds.0.color.0','0','00FF00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361564','81375','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361565','81375','4','ds.0.itemids.0','0','',NULL,NULL,'47182',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361566','81375','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361567','81375','1','reference','0','AADAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361568','81376','1','ds.0.color.0','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361569','81376','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361570','81376','4','ds.0.itemids.0','0','',NULL,NULL,'47183',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361571','81376','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361572','81376','1','reference','0','AADAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361573','81376','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361574','81377','1','items.0','0','License [*]: Users: *',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361575','81377','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*)]: Users: (.*)","\\1: \\2")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361576','81377','1','reference','0','BAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361577','81377','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361578','81378','7','graphid.0','0','',NULL,NULL,NULL,'2794',NULL,NULL,NULL,NULL,NULL,NULL), ('361579','81378','1','reference','0','AAFAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361580','81379','0','ds.0.aggregate_function','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361581','81379','1','ds.0.aggregate_interval','0','30m',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361582','81379','1','ds.0.color','0','FFBF00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361583','81379','1','ds.0.items.0','0','Indexing [*]: Latency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361584','81379','0','ds.0.type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361585','81379','0','legend_columns','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361586','81379','0','legend_lines','7','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361587','81379','1','or.0.color','0','BF00FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361588','81379','1','or.0.items.0','0','*CreateChangeHistoryDocument*',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361589','81379','1','or.1.color','0','0080FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361590','81379','1','or.1.items.0','0','*CreateIssueDocumentBatch*',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361591','81379','1','or.2.color','0','00FFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361592','81379','1','or.2.items.0','0','*LuceneConditionalUpdateDocument*',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361593','81379','1','or.3.color','0','00FF00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361594','81379','1','or.3.items.0','0','*LuceneUpdateDocument*',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361595','81379','1','or.4.color','0','FFFF00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361596','81379','1','or.4.items.0','0','*changehistoryAddSearchExtractors*',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361597','81379','1','or.5.color','0','FF8000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361598','81379','1','or.5.items.0','0','*issueAddSearchExtractors*',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361599','81379','1','or.6.color','0','CC6600',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361600','81379','1','or.6.items.0','0','*CreateCommentDocument*',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361601','81379','1','or.7.color','0','4000FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361602','81379','1','or.7.items.0','0','*IssueAddFieldIndexers*',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361603','81379','1','or.8.color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361604','81379','1','or.8.items.0','0','*LuceneDeleteDocument*',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361605','81379','1','or.9.color','0','666699',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361606','81379','1','or.9.items.0','0','*WaitForLucene*',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361607','81379','1','or.10.color','0','FFBF00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361608','81379','1','or.10.items.0','0','*commentAddSearchExtractors*',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361609','81379','1','or.11.color','0','00FFBF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361610','81379','1','or.11.items.0','0','*worklogAddSearchExtractors*',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361611','81379','1','reference','0','ABAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361612','81379','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361613','81380','6','graphid.0','0','',NULL,NULL,NULL,'1424',NULL,NULL,NULL,NULL,NULL,NULL), ('361614','81380','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361615','81381','6','graphid.0','0','',NULL,NULL,NULL,'1423',NULL,NULL,NULL,NULL,NULL,NULL), ('361616','81381','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361617','81382','6','graphid.0','0','',NULL,NULL,NULL,'1421',NULL,NULL,NULL,NULL,NULL,NULL), ('361618','81382','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361619','81383','6','graphid.0','0','',NULL,NULL,NULL,'1419',NULL,NULL,NULL,NULL,NULL,NULL), ('361620','81383','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361621','81384','6','graphid.0','0','',NULL,NULL,NULL,'1426',NULL,NULL,NULL,NULL,NULL,NULL), ('361622','81384','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361623','81385','6','graphid.0','0','',NULL,NULL,NULL,'1420',NULL,NULL,NULL,NULL,NULL,NULL), ('361624','81385','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361625','81386','6','graphid.0','0','',NULL,NULL,NULL,'1425',NULL,NULL,NULL,NULL,NULL,NULL), ('361626','81386','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361627','81387','6','graphid.0','0','',NULL,NULL,NULL,'2086',NULL,NULL,NULL,NULL,NULL,NULL), ('361628','81387','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361629','81388','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361630','81388','7','graphid.0','0','',NULL,NULL,NULL,'2085',NULL,NULL,NULL,NULL,NULL,NULL), ('361631','81388','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361632','81389','6','graphid.0','0','',NULL,NULL,NULL,'2090',NULL,NULL,NULL,NULL,NULL,NULL), ('361633','81389','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361634','81390','6','graphid.0','0','',NULL,NULL,NULL,'2091',NULL,NULL,NULL,NULL,NULL,NULL), ('361635','81390','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361636','81391','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361637','81391','7','graphid.0','0','',NULL,NULL,NULL,'2087',NULL,NULL,NULL,NULL,NULL,NULL), ('361638','81391','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361639','81392','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361640','81392','7','graphid.0','0','',NULL,NULL,NULL,'2088',NULL,NULL,NULL,NULL,NULL,NULL), ('361641','81392','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361642','81393','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361643','81393','7','graphid.0','0','',NULL,NULL,NULL,'2089',NULL,NULL,NULL,NULL,NULL,NULL), ('361644','81393','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361645','81394','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361646','81394','7','graphid.0','0','',NULL,NULL,NULL,'2092',NULL,NULL,NULL,NULL,NULL,NULL), ('361647','81394','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361648','81395','6','graphid.0','0','',NULL,NULL,NULL,'2096',NULL,NULL,NULL,NULL,NULL,NULL), ('361649','81395','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361650','81396','6','graphid.0','0','',NULL,NULL,NULL,'2097',NULL,NULL,NULL,NULL,NULL,NULL), ('361651','81396','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361652','81397','6','graphid.0','0','',NULL,NULL,NULL,'2099',NULL,NULL,NULL,NULL,NULL,NULL), ('361653','81397','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361654','81398','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361655','81398','7','graphid.0','0','',NULL,NULL,NULL,'2289',NULL,NULL,NULL,NULL,NULL,NULL), ('361656','81398','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361657','81399','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361658','81399','7','graphid.0','0','',NULL,NULL,NULL,'2094',NULL,NULL,NULL,NULL,NULL,NULL), ('361659','81399','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361660','81400','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361661','81400','7','graphid.0','0','',NULL,NULL,NULL,'2290',NULL,NULL,NULL,NULL,NULL,NULL), ('361662','81400','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361663','81401','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361664','81401','7','graphid.0','0','',NULL,NULL,NULL,'2567',NULL,NULL,NULL,NULL,NULL,NULL), ('361665','81401','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361666','81402','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361667','81402','7','graphid.0','0','',NULL,NULL,NULL,'2563',NULL,NULL,NULL,NULL,NULL,NULL), ('361668','81402','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361669','81403','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361670','81403','7','graphid.0','0','',NULL,NULL,NULL,'2564',NULL,NULL,NULL,NULL,NULL,NULL), ('361671','81403','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361672','81404','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361673','81404','7','graphid.0','0','',NULL,NULL,NULL,'2565',NULL,NULL,NULL,NULL,NULL,NULL), ('361674','81404','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361675','81405','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361676','81405','7','graphid.0','0','',NULL,NULL,NULL,'2566',NULL,NULL,NULL,NULL,NULL,NULL), ('361677','81405','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361678','81406','6','graphid.0','0','',NULL,NULL,NULL,'1130',NULL,NULL,NULL,NULL,NULL,NULL), ('361679','81406','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361680','81407','6','graphid.0','0','',NULL,NULL,NULL,'1131',NULL,NULL,NULL,NULL,NULL,NULL), ('361681','81407','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361682','81408','6','graphid.0','0','',NULL,NULL,NULL,'1134',NULL,NULL,NULL,NULL,NULL,NULL), ('361683','81408','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361684','81409','6','graphid.0','0','',NULL,NULL,NULL,'1133',NULL,NULL,NULL,NULL,NULL,NULL), ('361685','81409','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361686','81410','6','graphid.0','0','',NULL,NULL,NULL,'1132',NULL,NULL,NULL,NULL,NULL,NULL), ('361687','81410','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361688','81411','6','graphid.0','0','',NULL,NULL,NULL,'1135',NULL,NULL,NULL,NULL,NULL,NULL), ('361689','81411','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361690','81412','4','itemid.0','0','',NULL,NULL,'47375',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361691','81412','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361692','81412','0','value_size','50','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361693','81413','1','ds.0.color.0','0','2AB5FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361694','81413','1','ds.0.color.1','0','6AC8FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361695','81413','1','ds.0.color.2','0','BAE37D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361696','81413','1','ds.0.color.3','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361697','81413','1','ds.0.color.4','0','385CC7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361698','81413','1','ds.0.color.5','0','524BBC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361699','81413','1','ds.0.color.6','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361700','81413','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361701','81413','4','ds.0.itemids.0','0','',NULL,NULL,'47372',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361702','81413','4','ds.0.itemids.1','0','',NULL,NULL,'47373',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361703','81413','4','ds.0.itemids.2','0','',NULL,NULL,'47374',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361704','81413','4','ds.0.itemids.3','0','',NULL,NULL,'47376',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361705','81413','4','ds.0.itemids.4','0','',NULL,NULL,'47377',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361706','81413','4','ds.0.itemids.5','0','',NULL,NULL,'47378',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361707','81413','4','ds.0.itemids.6','0','',NULL,NULL,'47379',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361708','81413','0','ds.0.type.0','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361709','81413','0','ds.0.type.1','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361710','81413','0','ds.0.type.2','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361711','81413','0','ds.0.type.3','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361712','81413','0','ds.0.type.4','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361713','81413','0','ds.0.type.5','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361714','81413','0','ds.0.type.6','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361715','81413','0','legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361716','81414','4','itemid.0','0','',NULL,NULL,'47369',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361717','81414','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361718','81414','0','value_size','50','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361719','81415','1','ds.0.color.0','0','B4B400',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361720','81415','1','ds.0.color.1','0','BAE37D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361721','81415','1','ds.0.color.2','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361722','81415','1','ds.0.color.3','0','385CC7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361723','81415','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361724','81415','4','ds.0.itemids.0','0','',NULL,NULL,'47367',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361725','81415','4','ds.0.itemids.1','0','',NULL,NULL,'47368',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361726','81415','4','ds.0.itemids.2','0','',NULL,NULL,'47370',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361727','81415','4','ds.0.itemids.3','0','',NULL,NULL,'47371',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361728','81415','0','ds.0.type.0','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361729','81415','0','ds.0.type.1','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361730','81415','0','ds.0.type.2','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361731','81415','0','ds.0.type.3','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361732','81415','0','legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361733','81416','4','itemid.0','0','',NULL,NULL,'47364',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361734','81416','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361735','81416','0','value_size','50','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361736','81417','1','ds.0.color.0','0','385CC7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361737','81417','1','ds.0.color.1','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361738','81417','1','ds.0.color.2','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361739','81417','1','ds.0.color.3','0','2AB5FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361740','81417','1','ds.0.color.4','0','524BBC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361741','81417','1','ds.0.color.5','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361742','81417','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361743','81417','4','ds.0.itemids.0','0','',NULL,NULL,'47366',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361744','81417','4','ds.0.itemids.1','0','',NULL,NULL,'47360',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361745','81417','4','ds.0.itemids.2','0','',NULL,NULL,'47363',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361746','81417','4','ds.0.itemids.3','0','',NULL,NULL,'47362',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361747','81417','4','ds.0.itemids.4','0','',NULL,NULL,'47365',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361748','81417','4','ds.0.itemids.5','0','',NULL,NULL,'47361',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361749','81417','0','ds.0.type.0','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361750','81417','0','ds.0.type.1','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361751','81417','0','ds.0.type.2','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361752','81417','0','ds.0.type.3','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361753','81417','0','ds.0.type.4','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361754','81417','0','ds.0.type.5','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361755','81417','0','legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361756','81418','4','itemid.0','0','',NULL,NULL,'47350',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361757','81418','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361758','81418','0','value_size','50','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361759','81419','1','ds.0.color.0','0','2AB5FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361760','81419','1','ds.0.color.1','0','6AC8FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361761','81419','1','ds.0.color.2','0','BAE37D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361762','81419','1','ds.0.color.3','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361763','81419','1','ds.0.color.4','0','385CC7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361764','81419','1','ds.0.color.5','0','524BBC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361765','81419','1','ds.0.color.6','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361766','81419','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361767','81419','4','ds.0.itemids.0','0','',NULL,NULL,'47344',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361768','81419','4','ds.0.itemids.1','0','',NULL,NULL,'47346',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361769','81419','4','ds.0.itemids.2','0','',NULL,NULL,'47348',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361770','81419','4','ds.0.itemids.3','0','',NULL,NULL,'47351',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361771','81419','4','ds.0.itemids.4','0','',NULL,NULL,'47353',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361772','81419','4','ds.0.itemids.5','0','',NULL,NULL,'47355',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361773','81419','4','ds.0.itemids.6','0','',NULL,NULL,'47357',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361774','81419','0','ds.0.type.0','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361775','81419','0','ds.0.type.1','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361776','81419','0','ds.0.type.2','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361777','81419','0','ds.0.type.3','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361778','81419','0','ds.0.type.4','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361779','81419','0','ds.0.type.5','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361780','81419','0','ds.0.type.6','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361781','81419','0','legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361782','81420','4','itemid.0','0','',NULL,NULL,'47350',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361783','81420','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361784','81420','0','value_size','50','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361785','81421','1','ds.0.color.0','0','2AB5FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361786','81421','1','ds.0.color.1','0','6AC8FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361787','81421','1','ds.0.color.2','0','BAE37D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361788','81421','1','ds.0.color.3','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361789','81421','1','ds.0.color.4','0','385CC7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361790','81421','1','ds.0.color.5','0','524BBC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361791','81421','1','ds.0.color.6','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361792','81421','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361793','81421','4','ds.0.itemids.0','0','',NULL,NULL,'47345',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361794','81421','4','ds.0.itemids.1','0','',NULL,NULL,'47347',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361795','81421','4','ds.0.itemids.2','0','',NULL,NULL,'47349',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361796','81421','4','ds.0.itemids.3','0','',NULL,NULL,'47352',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361797','81421','4','ds.0.itemids.4','0','',NULL,NULL,'47354',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361798','81421','4','ds.0.itemids.5','0','',NULL,NULL,'47356',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361799','81421','4','ds.0.itemids.6','0','',NULL,NULL,'47358',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361800','81421','0','ds.0.type.0','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361801','81421','0','ds.0.type.1','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361802','81421','0','ds.0.type.2','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361803','81421','0','ds.0.type.3','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361804','81421','0','ds.0.type.4','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361805','81421','0','ds.0.type.5','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361806','81421','0','ds.0.type.6','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361807','81421','0','legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361808','81422','1','ds.0.color.0','0','2AB5FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361809','81422','1','ds.0.color.1','0','6AC8FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361810','81422','1','ds.0.color.2','0','BAE37D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361811','81422','1','ds.0.color.3','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361812','81422','1','ds.0.color.4','0','385CC7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361813','81422','1','ds.0.color.5','0','524BBC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361814','81422','1','ds.0.color.6','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361815','81422','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361816','81422','0','ds.0.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361817','81422','4','ds.0.itemids.0','0','',NULL,NULL,'47372',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361818','81422','4','ds.0.itemids.1','0','',NULL,NULL,'47373',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361819','81422','4','ds.0.itemids.2','0','',NULL,NULL,'47374',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361820','81422','4','ds.0.itemids.3','0','',NULL,NULL,'47376',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361821','81422','4','ds.0.itemids.4','0','',NULL,NULL,'47377',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361822','81422','4','ds.0.itemids.5','0','',NULL,NULL,'47378',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361823','81422','4','ds.0.itemids.6','0','',NULL,NULL,'47379',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361824','81422','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361825','81422','0','ds.0.width','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361826','81422','0','legend_columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361827','81422','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361828','81422','1','reference','0','FAADC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361829','81423','1','ds.0.color.0','0','B4B400',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361830','81423','1','ds.0.color.1','0','BAE37D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361831','81423','1','ds.0.color.2','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361832','81423','1','ds.0.color.3','0','385CC7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361833','81423','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361834','81423','0','ds.0.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361835','81423','4','ds.0.itemids.0','0','',NULL,NULL,'47367',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361836','81423','4','ds.0.itemids.1','0','',NULL,NULL,'47368',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361837','81423','4','ds.0.itemids.2','0','',NULL,NULL,'47370',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361838','81423','4','ds.0.itemids.3','0','',NULL,NULL,'47371',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361839','81423','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361840','81423','0','ds.0.width','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361841','81423','0','legend_columns','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361842','81423','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361843','81423','1','reference','0','ADFEF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361844','81424','1','ds.0.color.0','0','385CC7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361845','81424','1','ds.0.color.1','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361846','81424','1','ds.0.color.2','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361847','81424','1','ds.0.color.3','0','2AB5FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361848','81424','1','ds.0.color.4','0','524BBC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361849','81424','1','ds.0.color.5','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361850','81424','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361851','81424','0','ds.0.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361852','81424','4','ds.0.itemids.0','0','',NULL,NULL,'47366',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361853','81424','4','ds.0.itemids.1','0','',NULL,NULL,'47360',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361854','81424','4','ds.0.itemids.2','0','',NULL,NULL,'47363',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361855','81424','4','ds.0.itemids.3','0','',NULL,NULL,'47362',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361856','81424','4','ds.0.itemids.4','0','',NULL,NULL,'47365',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361857','81424','4','ds.0.itemids.5','0','',NULL,NULL,'47361',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361858','81424','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361859','81424','0','ds.0.width','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361860','81424','0','legend_columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361861','81424','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361862','81424','1','reference','0','BCCED',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361863','81425','1','ds.0.color.0','0','2AB5FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361864','81425','1','ds.0.color.1','0','6AC8FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361865','81425','1','ds.0.color.2','0','BAE37D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361866','81425','1','ds.0.color.3','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361867','81425','1','ds.0.color.4','0','385CC7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361868','81425','1','ds.0.color.5','0','524BBC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361869','81425','1','ds.0.color.6','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361870','81425','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361871','81425','0','ds.0.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361872','81425','4','ds.0.itemids.0','0','',NULL,NULL,'47344',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361873','81425','4','ds.0.itemids.1','0','',NULL,NULL,'47346',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361874','81425','4','ds.0.itemids.2','0','',NULL,NULL,'47348',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361875','81425','4','ds.0.itemids.3','0','',NULL,NULL,'47351',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361876','81425','4','ds.0.itemids.4','0','',NULL,NULL,'47353',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361877','81425','4','ds.0.itemids.5','0','',NULL,NULL,'47355',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361878','81425','4','ds.0.itemids.6','0','',NULL,NULL,'47357',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361879','81425','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361880','81425','0','ds.0.width','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361881','81425','0','legend_columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361882','81425','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361883','81425','1','reference','0','FCADE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361884','81426','1','ds.0.color.0','0','2AB5FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361885','81426','1','ds.0.color.1','0','6AC8FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361886','81426','1','ds.0.color.2','0','BAE37D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361887','81426','1','ds.0.color.3','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361888','81426','1','ds.0.color.4','0','385CC7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361889','81426','1','ds.0.color.5','0','524BBC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361890','81426','1','ds.0.color.6','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361891','81426','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361892','81426','0','ds.0.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361893','81426','4','ds.0.itemids.0','0','',NULL,NULL,'47345',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361894','81426','4','ds.0.itemids.1','0','',NULL,NULL,'47347',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361895','81426','4','ds.0.itemids.2','0','',NULL,NULL,'47349',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361896','81426','4','ds.0.itemids.3','0','',NULL,NULL,'47352',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361897','81426','4','ds.0.itemids.4','0','',NULL,NULL,'47354',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361898','81426','4','ds.0.itemids.5','0','',NULL,NULL,'47356',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361899','81426','4','ds.0.itemids.6','0','',NULL,NULL,'47358',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361900','81426','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361901','81426','0','ds.0.width','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361902','81426','0','legend_columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361903','81426','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361904','81426','1','reference','0','FBFFA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361905','81427','4','itemid.0','0','',NULL,NULL,'47476',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361906','81427','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361907','81427','0','value_size','50','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361908','81428','1','ds.0.color.0','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361909','81428','1','ds.0.color.1','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361910','81428','1','ds.0.color.2','0','2AB5FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361911','81428','1','ds.0.color.3','0','BAE37D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361912','81428','1','ds.0.color.4','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361913','81428','1','ds.0.color.5','0','524BBC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361914','81428','1','ds.0.color.6','0','385CC7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361915','81428','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361916','81428','4','ds.0.itemids.0','0','',NULL,NULL,'47465',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361917','81428','4','ds.0.itemids.1','0','',NULL,NULL,'47471',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361918','81428','4','ds.0.itemids.2','0','',NULL,NULL,'47472',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361919','81428','4','ds.0.itemids.3','0','',NULL,NULL,'47475',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361920','81428','4','ds.0.itemids.4','0','',NULL,NULL,'47473',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361921','81428','4','ds.0.itemids.5','0','',NULL,NULL,'47470',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361922','81428','4','ds.0.itemids.6','0','',NULL,NULL,'47469',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361923','81428','0','ds.0.type.0','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361924','81428','0','ds.0.type.1','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361925','81428','0','ds.0.type.2','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361926','81428','0','ds.0.type.3','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361927','81428','0','ds.0.type.4','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361928','81428','0','ds.0.type.5','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361929','81428','0','ds.0.type.6','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361930','81428','0','legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361931','81429','4','itemid.0','0','',NULL,NULL,'47489',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361932','81429','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361933','81429','0','value_size','50','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361934','81430','1','ds.0.color.0','0','BAE37D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361935','81430','1','ds.0.color.1','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361936','81430','1','ds.0.color.2','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361937','81430','1','ds.0.color.3','0','B4B400',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361938','81430','1','ds.0.color.4','0','6AC8FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361939','81430','1','ds.0.color.5','0','524BBC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361940','81430','1','ds.0.color.6','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361941','81430','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361942','81430','4','ds.0.itemids.0','0','',NULL,NULL,'47490',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361943','81430','4','ds.0.itemids.1','0','',NULL,NULL,'47484',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361944','81430','4','ds.0.itemids.2','0','',NULL,NULL,'47486',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361945','81430','4','ds.0.itemids.3','0','',NULL,NULL,'47488',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361946','81430','4','ds.0.itemids.4','0','',NULL,NULL,'47485',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361947','81430','4','ds.0.itemids.5','0','',NULL,NULL,'47491',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361948','81430','4','ds.0.itemids.6','0','',NULL,NULL,'47487',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361949','81430','0','ds.0.type.0','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361950','81430','0','ds.0.type.1','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361951','81430','0','ds.0.type.2','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361952','81430','0','ds.0.type.3','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361953','81430','0','ds.0.type.4','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361954','81430','0','ds.0.type.5','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361955','81430','0','ds.0.type.6','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361956','81430','0','legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361957','81431','4','itemid.0','0','',NULL,NULL,'47508',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361958','81431','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361959','81431','0','value_size','50','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361960','81432','1','ds.0.color.0','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361961','81432','1','ds.0.color.1','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361962','81432','1','ds.0.color.2','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361963','81432','1','ds.0.color.3','0','2AB5FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361964','81432','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361965','81432','4','ds.0.itemids.0','0','',NULL,NULL,'47504',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361966','81432','4','ds.0.itemids.1','0','',NULL,NULL,'47505',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361967','81432','4','ds.0.itemids.2','0','',NULL,NULL,'47507',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361968','81432','4','ds.0.itemids.3','0','',NULL,NULL,'47506',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361969','81432','0','ds.0.type.0','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361970','81432','0','ds.0.type.1','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361971','81432','0','ds.0.type.2','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361972','81432','0','ds.0.type.3','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361973','81432','0','legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361974','81433','4','itemid.0','0','',NULL,NULL,'47463',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361975','81433','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361976','81433','0','value_size','50','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361977','81434','1','ds.0.color.0','0','6AC8FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361978','81434','1','ds.0.color.1','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361979','81434','1','ds.0.color.2','0','2AB5FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361980','81434','1','ds.0.color.3','0','385CC7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361981','81434','1','ds.0.color.4','0','BAE37D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361982','81434','1','ds.0.color.5','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361983','81434','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361984','81434','4','ds.0.itemids.0','0','',NULL,NULL,'47456',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361985','81434','4','ds.0.itemids.1','0','',NULL,NULL,'47459',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361986','81434','4','ds.0.itemids.2','0','',NULL,NULL,'47460',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361987','81434','4','ds.0.itemids.3','0','',NULL,NULL,'47462',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361988','81434','4','ds.0.itemids.4','0','',NULL,NULL,'47461',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361989','81434','4','ds.0.itemids.5','0','',NULL,NULL,'47464',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361990','81434','0','ds.0.type.0','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361991','81434','0','ds.0.type.1','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361992','81434','0','ds.0.type.2','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361993','81434','0','ds.0.type.3','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361994','81434','0','ds.0.type.4','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361995','81434','0','ds.0.type.5','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361996','81434','0','legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361997','81435','4','itemid.0','0','',NULL,NULL,'47476',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361998','81435','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('361999','81435','0','value_size','50','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362000','81436','1','ds.0.color.0','0','BAE37D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362001','81436','1','ds.0.color.1','0','6AC8FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362002','81436','1','ds.0.color.2','0','2AB5FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362003','81436','1','ds.0.color.3','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362004','81436','1','ds.0.color.4','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362005','81436','1','ds.0.color.5','0','524BBC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362006','81436','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362007','81436','4','ds.0.itemids.0','0','',NULL,NULL,'47452',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362008','81436','4','ds.0.itemids.1','0','',NULL,NULL,'47453',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362009','81436','4','ds.0.itemids.2','0','',NULL,NULL,'47454',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362010','81436','4','ds.0.itemids.3','0','',NULL,NULL,'47455',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362011','81436','4','ds.0.itemids.4','0','',NULL,NULL,'47457',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362012','81436','4','ds.0.itemids.5','0','',NULL,NULL,'47458',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362013','81436','0','ds.0.type.0','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362014','81436','0','ds.0.type.1','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362015','81436','0','ds.0.type.2','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362016','81436','0','ds.0.type.3','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362017','81436','0','ds.0.type.4','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362018','81436','0','ds.0.type.5','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362019','81436','0','legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362020','81437','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362021','81437','1','down_color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362022','81437','4','itemid.0','0','',NULL,NULL,'47474',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362023','81437','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362024','81437','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362025','81437','1','updown_color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362026','81437','1','up_color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362027','81437','0','value_size','70','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362028','81438','1','ds.0.color.0','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362029','81438','1','ds.0.color.1','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362030','81438','1','ds.0.color.2','0','2AB5FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362031','81438','1','ds.0.color.3','0','BAE37D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362032','81438','1','ds.0.color.4','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362033','81438','1','ds.0.color.5','0','524BBC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362034','81438','1','ds.0.color.6','0','385CC7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362035','81438','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362036','81438','0','ds.0.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362037','81438','4','ds.0.itemids.0','0','',NULL,NULL,'47465',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362038','81438','4','ds.0.itemids.1','0','',NULL,NULL,'47471',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362039','81438','4','ds.0.itemids.2','0','',NULL,NULL,'47472',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362040','81438','4','ds.0.itemids.3','0','',NULL,NULL,'47475',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362041','81438','4','ds.0.itemids.4','0','',NULL,NULL,'47473',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362042','81438','4','ds.0.itemids.5','0','',NULL,NULL,'47470',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362043','81438','4','ds.0.itemids.6','0','',NULL,NULL,'47469',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362044','81438','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362045','81438','0','ds.0.width','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362046','81438','0','legend_columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362047','81438','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362048','81438','1','reference','0','EAADC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362049','81439','1','ds.0.color.0','0','BAE37D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362050','81439','1','ds.0.color.1','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362051','81439','1','ds.0.color.2','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362052','81439','1','ds.0.color.3','0','B4B400',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362053','81439','1','ds.0.color.4','0','6AC8FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362054','81439','1','ds.0.color.5','0','524BBC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362055','81439','1','ds.0.color.6','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362056','81439','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362057','81439','0','ds.0.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362058','81439','4','ds.0.itemids.0','0','',NULL,NULL,'47490',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362059','81439','4','ds.0.itemids.1','0','',NULL,NULL,'47484',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362060','81439','4','ds.0.itemids.2','0','',NULL,NULL,'47486',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362061','81439','4','ds.0.itemids.3','0','',NULL,NULL,'47488',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362062','81439','4','ds.0.itemids.4','0','',NULL,NULL,'47485',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362063','81439','4','ds.0.itemids.5','0','',NULL,NULL,'47491',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362064','81439','4','ds.0.itemids.6','0','',NULL,NULL,'47487',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362065','81439','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362066','81439','0','ds.0.width','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362067','81439','0','legend_columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362068','81439','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362069','81439','1','reference','0','FBCAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362070','81440','1','ds.0.color.0','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362071','81440','1','ds.0.color.1','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362072','81440','1','ds.0.color.2','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362073','81440','1','ds.0.color.3','0','2AB5FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362074','81440','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362075','81440','0','ds.0.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362076','81440','4','ds.0.itemids.0','0','',NULL,NULL,'47504',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362077','81440','4','ds.0.itemids.1','0','',NULL,NULL,'47505',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362078','81440','4','ds.0.itemids.2','0','',NULL,NULL,'47507',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362079','81440','4','ds.0.itemids.3','0','',NULL,NULL,'47506',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362080','81440','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362081','81440','0','ds.0.width','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362082','81440','0','legend_columns','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362083','81440','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362084','81440','1','reference','0','CBDDE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362085','81441','1','ds.0.color.0','0','6AC8FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362086','81441','1','ds.0.color.1','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362087','81441','1','ds.0.color.2','0','2AB5FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362088','81441','1','ds.0.color.3','0','385CC7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362089','81441','1','ds.0.color.4','0','BAE37D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362090','81441','1','ds.0.color.5','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362091','81441','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362092','81441','0','ds.0.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362093','81441','4','ds.0.itemids.0','0','',NULL,NULL,'47456',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362094','81441','4','ds.0.itemids.1','0','',NULL,NULL,'47459',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362095','81441','4','ds.0.itemids.2','0','',NULL,NULL,'47460',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362096','81441','4','ds.0.itemids.3','0','',NULL,NULL,'47462',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362097','81441','4','ds.0.itemids.4','0','',NULL,NULL,'47461',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362098','81441','4','ds.0.itemids.5','0','',NULL,NULL,'47464',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362099','81441','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362100','81441','0','ds.0.width','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362101','81441','0','legend_columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362102','81441','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362103','81441','1','reference','0','ADEDE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362104','81442','1','ds.0.color.0','0','BAE37D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362105','81442','1','ds.0.color.1','0','6AC8FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362106','81442','1','ds.0.color.2','0','2AB5FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362107','81442','1','ds.0.color.3','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362108','81442','1','ds.0.color.4','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362109','81442','1','ds.0.color.5','0','524BBC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362110','81442','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362111','81442','0','ds.0.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362112','81442','4','ds.0.itemids.0','0','',NULL,NULL,'47452',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362113','81442','4','ds.0.itemids.1','0','',NULL,NULL,'47453',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362114','81442','4','ds.0.itemids.2','0','',NULL,NULL,'47454',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362115','81442','4','ds.0.itemids.3','0','',NULL,NULL,'47455',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362116','81442','4','ds.0.itemids.4','0','',NULL,NULL,'47457',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362117','81442','4','ds.0.itemids.5','0','',NULL,NULL,'47458',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362118','81442','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362119','81442','0','ds.0.width','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362120','81442','0','legend_columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362121','81442','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362122','81442','1','reference','0','DCCAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362123','81443','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362124','81443','1','down_color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362125','81443','4','itemid.0','0','',NULL,NULL,'47466',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362126','81443','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362127','81443','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362128','81443','1','updown_color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362129','81443','1','up_color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362130','81443','0','value_size','50','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362131','81444','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362132','81444','1','down_color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362133','81444','4','itemid.0','0','',NULL,NULL,'47468',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362134','81444','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362135','81444','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362136','81444','1','updown_color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362137','81444','1','up_color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362138','81444','0','value_size','50','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362139','81445','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362140','81445','1','down_color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362141','81445','4','itemid.0','0','',NULL,NULL,'47467',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362142','81445','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362143','81445','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362144','81445','1','updown_color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362145','81445','1','up_color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362146','81445','0','value_size','50','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362147','81446','4','itemid.0','0','',NULL,NULL,'47403',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362148','81446','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362149','81446','0','value_size','50','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362150','81447','1','ds.0.color.0','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362151','81447','1','ds.0.color.1','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362152','81447','1','ds.0.color.2','0','2AB5FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362153','81447','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362154','81447','4','ds.0.itemids.0','0','',NULL,NULL,'47401',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362155','81447','4','ds.0.itemids.1','0','',NULL,NULL,'47402',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362156','81447','4','ds.0.itemids.2','0','',NULL,NULL,'47404',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362157','81447','0','ds.0.type.0','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362158','81447','0','ds.0.type.1','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362159','81447','0','ds.0.type.2','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362160','81447','0','legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362161','81448','4','itemid.0','0','',NULL,NULL,'47403',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362162','81448','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362163','81448','0','value_size','50','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362164','81449','1','ds.0.color.0','0','2AB5FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362165','81449','1','ds.0.color.1','0','385CC7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362166','81449','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362167','81449','4','ds.0.itemids.0','0','',NULL,NULL,'47399',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362168','81449','4','ds.0.itemids.1','0','',NULL,NULL,'47400',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362169','81449','0','ds.0.type.0','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362170','81449','0','ds.0.type.1','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362171','81449','0','legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362172','81450','4','itemid.0','0','',NULL,NULL,'47422',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362173','81450','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362174','81450','0','value_size','50','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362175','81451','1','ds.0.color.0','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362176','81451','1','ds.0.color.1','0','B4B400',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362177','81451','1','ds.0.color.2','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362178','81451','1','ds.0.color.3','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362179','81451','1','ds.0.color.4','0','385CC7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362180','81451','1','ds.0.color.5','0','BAE37D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362181','81451','1','ds.0.color.6','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362182','81451','1','ds.0.color.7','0','2AB5FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362183','81451','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362184','81451','4','ds.0.itemids.0','0','',NULL,NULL,'47413',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362185','81451','4','ds.0.itemids.1','0','',NULL,NULL,'47414',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362186','81451','4','ds.0.itemids.2','0','',NULL,NULL,'47417',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362187','81451','4','ds.0.itemids.3','0','',NULL,NULL,'47425',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362188','81451','4','ds.0.itemids.4','0','',NULL,NULL,'47426',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362189','81451','4','ds.0.itemids.5','0','',NULL,NULL,'47412',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362190','81451','4','ds.0.itemids.6','0','',NULL,NULL,'47418',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362191','81451','4','ds.0.itemids.7','0','',NULL,NULL,'47424',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362192','81451','0','ds.0.type.0','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362193','81451','0','ds.0.type.1','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362194','81451','0','ds.0.type.2','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362195','81451','0','ds.0.type.3','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362196','81451','0','ds.0.type.4','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362197','81451','0','ds.0.type.5','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362198','81451','0','ds.0.type.6','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362199','81451','0','ds.0.type.7','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362200','81451','0','legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362201','81452','4','itemid.0','0','',NULL,NULL,'47421',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362202','81452','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362203','81452','0','value_size','50','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362204','81453','1','ds.0.color.0','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362205','81453','1','ds.0.color.1','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362206','81453','1','ds.0.color.2','0','2AB5FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362207','81453','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362208','81453','4','ds.0.itemids.0','0','',NULL,NULL,'47419',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362209','81453','4','ds.0.itemids.1','0','',NULL,NULL,'47420',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362210','81453','4','ds.0.itemids.2','0','',NULL,NULL,'47423',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362211','81453','0','ds.0.type.0','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362212','81453','0','ds.0.type.1','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362213','81453','0','ds.0.type.2','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362214','81453','0','legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362215','81454','4','itemid.0','0','',NULL,NULL,'47421',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362216','81454','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362217','81454','0','value_size','50','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362218','81455','1','ds.0.color.0','0','2AB5FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362219','81455','1','ds.0.color.1','0','385CC7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362220','81455','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362221','81455','4','ds.0.itemids.0','0','',NULL,NULL,'47415',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362222','81455','4','ds.0.itemids.1','0','',NULL,NULL,'47416',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362223','81455','0','ds.0.type.0','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362224','81455','0','ds.0.type.1','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362225','81455','0','legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362226','81456','4','itemid.0','0','',NULL,NULL,'47408',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362227','81456','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362228','81456','0','value_size','80','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362229','81457','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362230','81457','4','itemid.0','0','',NULL,NULL,'47407',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362231','81457','0','show.0','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362232','81457','0','show.1','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362233','81457','0','show.2','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362234','81457','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362235','81457','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362236','81457','0','units_size','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362237','81457','0','value_arc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362238','81457','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362239','81457','0','value_size','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362240','81458','1','ds.0.color.0','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362241','81458','1','ds.0.color.1','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362242','81458','1','ds.0.color.2','0','2AB5FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362243','81458','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362244','81458','0','ds.0.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362245','81458','4','ds.0.itemids.0','0','',NULL,NULL,'47401',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362246','81458','4','ds.0.itemids.1','0','',NULL,NULL,'47402',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362247','81458','4','ds.0.itemids.2','0','',NULL,NULL,'47404',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362248','81458','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362249','81458','0','ds.0.width','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362250','81458','0','legend_columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362251','81458','1','reference','0','DEEEF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362252','81459','1','ds.0.color.0','0','2AB5FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362253','81459','1','ds.0.color.1','0','385CC7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362254','81459','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362255','81459','0','ds.0.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362256','81459','4','ds.0.itemids.0','0','',NULL,NULL,'47399',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362257','81459','4','ds.0.itemids.1','0','',NULL,NULL,'47400',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362258','81459','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362259','81459','0','ds.0.width','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362260','81459','0','legend_columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362261','81459','1','reference','0','EBAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362262','81460','1','ds.0.color.0','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362263','81460','1','ds.0.color.1','0','B4B400',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362264','81460','1','ds.0.color.2','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362265','81460','1','ds.0.color.3','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362266','81460','1','ds.0.color.4','0','385CC7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362267','81460','1','ds.0.color.5','0','BAE37D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362268','81460','1','ds.0.color.6','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362269','81460','1','ds.0.color.7','0','2AB5FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362270','81460','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362271','81460','0','ds.0.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362272','81460','4','ds.0.itemids.0','0','',NULL,NULL,'47413',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362273','81460','4','ds.0.itemids.1','0','',NULL,NULL,'47414',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362274','81460','4','ds.0.itemids.2','0','',NULL,NULL,'47417',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362275','81460','4','ds.0.itemids.3','0','',NULL,NULL,'47425',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362276','81460','4','ds.0.itemids.4','0','',NULL,NULL,'47426',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362277','81460','4','ds.0.itemids.5','0','',NULL,NULL,'47412',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362278','81460','4','ds.0.itemids.6','0','',NULL,NULL,'47418',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362279','81460','4','ds.0.itemids.7','0','',NULL,NULL,'47424',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362280','81460','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362281','81460','0','ds.0.width','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362282','81460','0','legend_columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362283','81460','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362284','81460','1','reference','0','EFCAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362285','81461','1','ds.0.color.0','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362286','81461','1','ds.0.color.1','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362287','81461','1','ds.0.color.2','0','2AB5FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362288','81461','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362289','81461','0','ds.0.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362290','81461','4','ds.0.itemids.0','0','',NULL,NULL,'47419',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362291','81461','4','ds.0.itemids.1','0','',NULL,NULL,'47420',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362292','81461','4','ds.0.itemids.2','0','',NULL,NULL,'47423',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362293','81461','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362294','81461','0','ds.0.width','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362295','81461','0','legend_columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362296','81461','1','reference','0','DFFFC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362297','81462','1','ds.0.color.0','0','2AB5FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362298','81462','1','ds.0.color.1','0','385CC7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362299','81462','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362300','81462','0','ds.0.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362301','81462','4','ds.0.itemids.0','0','',NULL,NULL,'47415',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362302','81462','4','ds.0.itemids.1','0','',NULL,NULL,'47416',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362303','81462','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362304','81462','0','ds.0.width','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362305','81462','0','legend_columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362306','81462','1','reference','0','EDCBE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362307','81463','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362308','81463','1','down_color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362309','81463','4','itemid.0','0','',NULL,NULL,'47409',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362310','81463','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362311','81463','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362312','81463','1','updown_color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362313','81463','1','up_color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362314','81463','0','value_size','70','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362315','81464','4','itemid.0','0','',NULL,NULL,'47410',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362316','81464','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362317','81464','0','value_size','80','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362318','81465','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362319','81465','1','down_color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362320','81465','4','itemid.0','0','',NULL,NULL,'47411',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362321','81465','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362322','81465','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362323','81465','1','updown_color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362324','81465','1','up_color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362325','81465','0','value_size','70','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362326','81466','4','itemid.0','0','',NULL,NULL,'47381',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362327','81466','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362328','81466','0','value_size','50','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362329','81467','1','ds.0.color.0','0','2AB5FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362330','81467','1','ds.0.color.1','0','6AC8FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362331','81467','1','ds.0.color.2','0','BAE37D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362332','81467','1','ds.0.color.3','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362333','81467','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362334','81467','4','ds.0.itemids.0','0','',NULL,NULL,'47382',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362335','81467','4','ds.0.itemids.1','0','',NULL,NULL,'47383',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362336','81467','4','ds.0.itemids.2','0','',NULL,NULL,'47384',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362337','81467','4','ds.0.itemids.3','0','',NULL,NULL,'47385',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362338','81467','0','ds.0.type.0','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362339','81467','0','ds.0.type.1','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362340','81467','0','ds.0.type.2','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362341','81467','0','ds.0.type.3','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362342','81467','0','legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362343','81468','4','itemid.0','0','',NULL,NULL,'47394',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362344','81468','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362345','81468','0','value_size','50','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362346','81469','1','ds.0.color.0','0','2AB5FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362347','81469','1','ds.0.color.1','0','6AC8FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362348','81469','1','ds.0.color.2','0','BAE37D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362349','81469','1','ds.0.color.3','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362350','81469','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362351','81469','4','ds.0.itemids.0','0','',NULL,NULL,'47395',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362352','81469','4','ds.0.itemids.1','0','',NULL,NULL,'47396',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362353','81469','4','ds.0.itemids.2','0','',NULL,NULL,'47397',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362354','81469','4','ds.0.itemids.3','0','',NULL,NULL,'47398',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362355','81469','0','ds.0.type.0','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362356','81469','0','ds.0.type.1','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362357','81469','0','ds.0.type.2','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362358','81469','0','ds.0.type.3','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362359','81469','0','legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362360','81470','4','itemid.0','0','',NULL,NULL,'47390',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362361','81470','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362362','81470','0','value_size','80','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362363','81471','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362364','81471','1','down_color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362365','81471','4','itemid.0','0','',NULL,NULL,'47389',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362366','81471','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362367','81471','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362368','81471','1','updown_color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362369','81471','1','up_color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362370','81471','0','value_size','70','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362371','81472','1','ds.0.color.0','0','2AB5FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362372','81472','1','ds.0.color.1','0','6AC8FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362373','81472','1','ds.0.color.2','0','BAE37D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362374','81472','1','ds.0.color.3','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362375','81472','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362376','81472','0','ds.0.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362377','81472','4','ds.0.itemids.0','0','',NULL,NULL,'47382',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362378','81472','4','ds.0.itemids.1','0','',NULL,NULL,'47383',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362379','81472','4','ds.0.itemids.2','0','',NULL,NULL,'47384',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362380','81472','4','ds.0.itemids.3','0','',NULL,NULL,'47385',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362381','81472','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362382','81472','0','ds.0.width','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362383','81472','0','legend_columns','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362384','81472','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362385','81472','1','reference','0','FDFEC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362386','81473','1','ds.0.color.0','0','2AB5FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362387','81473','1','ds.0.color.1','0','6AC8FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362388','81473','1','ds.0.color.2','0','BAE37D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362389','81473','1','ds.0.color.3','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362390','81473','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362391','81473','0','ds.0.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362392','81473','4','ds.0.itemids.0','0','',NULL,NULL,'47395',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362393','81473','4','ds.0.itemids.1','0','',NULL,NULL,'47396',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362394','81473','4','ds.0.itemids.2','0','',NULL,NULL,'47397',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362395','81473','4','ds.0.itemids.3','0','',NULL,NULL,'47398',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362396','81473','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362397','81473','0','ds.0.width','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362398','81473','0','legend_columns','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362399','81473','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362400','81473','1','reference','0','FDEAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362401','81474','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362402','81474','1','down_color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362403','81474','4','itemid.0','0','',NULL,NULL,'47391',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362404','81474','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362405','81474','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362406','81474','1','updown_color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362407','81474','1','up_color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362408','81474','0','value_size','70','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362409','81475','4','itemid.0','0','',NULL,NULL,'47387',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362410','81475','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362411','81475','0','value_size','80','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362412','81476','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362413','81476','1','down_color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362414','81476','4','itemid.0','0','',NULL,NULL,'47386',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362415','81476','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362416','81476','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362417','81476','1','updown_color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362418','81476','1','up_color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362419','81476','0','value_size','70','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362420','81477','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362421','81477','1','down_color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362422','81477','4','itemid.0','0','',NULL,NULL,'47388',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362423','81477','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362424','81477','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362425','81477','1','updown_color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362426','81477','1','up_color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362427','81477','0','value_size','70','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362428','81478','4','itemid.0','0','',NULL,NULL,'47392',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362429','81478','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362430','81478','0','value_size','80','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362431','81479','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362432','81479','1','down_color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362433','81479','4','itemid.0','0','',NULL,NULL,'47393',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362434','81479','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362435','81479','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362436','81479','1','updown_color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362437','81479','1','up_color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362438','81479','0','value_size','70','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362439','81480','4','itemid.0','0','',NULL,NULL,'47438',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362440','81480','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362441','81480','0','value_size','80','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362442','81481','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362443','81481','1','down_color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362444','81481','4','itemid.0','0','',NULL,NULL,'47437',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362445','81481','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362446','81481','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362447','81481','1','updown_color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362448','81481','1','up_color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362449','81481','0','value_size','70','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362450','81482','4','itemid.0','0','',NULL,NULL,'47429',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362451','81482','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362452','81482','0','value_size','50','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362453','81483','1','ds.0.color.0','0','2AB5FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362454','81483','1','ds.0.color.1','0','6AC8FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362455','81483','1','ds.0.color.2','0','BAE37D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362456','81483','1','ds.0.color.3','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362457','81483','1','ds.0.color.4','0','385CC7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362458','81483','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362459','81483','4','ds.0.itemids.0','0','',NULL,NULL,'47430',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362460','81483','4','ds.0.itemids.1','0','',NULL,NULL,'47431',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362461','81483','4','ds.0.itemids.2','0','',NULL,NULL,'47432',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362462','81483','4','ds.0.itemids.3','0','',NULL,NULL,'47433',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362463','81483','4','ds.0.itemids.4','0','',NULL,NULL,'47434',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362464','81483','0','ds.0.type.0','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362465','81483','0','ds.0.type.1','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362466','81483','0','ds.0.type.2','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362467','81483','0','ds.0.type.3','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362468','81483','0','ds.0.type.4','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362469','81483','0','legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362470','81484','4','itemid.0','0','',NULL,NULL,'47446',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362471','81484','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362472','81484','0','value_size','50','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362473','81485','1','ds.0.color.0','0','2AB5FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362474','81485','1','ds.0.color.1','0','6AC8FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362475','81485','1','ds.0.color.2','0','BAE37D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362476','81485','1','ds.0.color.3','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362477','81485','1','ds.0.color.4','0','385CC7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362478','81485','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362479','81485','4','ds.0.itemids.0','0','',NULL,NULL,'47447',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362480','81485','4','ds.0.itemids.1','0','',NULL,NULL,'47448',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362481','81485','4','ds.0.itemids.2','0','',NULL,NULL,'47449',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362482','81485','4','ds.0.itemids.3','0','',NULL,NULL,'47450',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362483','81485','4','ds.0.itemids.4','0','',NULL,NULL,'47451',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362484','81485','0','ds.0.type.0','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362485','81485','0','ds.0.type.1','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362486','81485','0','ds.0.type.2','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362487','81485','0','ds.0.type.3','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362488','81485','0','ds.0.type.4','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362489','81485','0','legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362490','81486','4','itemid.0','0','',NULL,NULL,'47440',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362491','81486','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362492','81486','0','value_size','80','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362493','81487','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362494','81487','1','down_color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362495','81487','4','itemid.0','0','',NULL,NULL,'47439',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362496','81487','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362497','81487','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362498','81487','1','updown_color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362499','81487','1','up_color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362500','81487','0','value_size','70','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362501','81488','1','ds.0.color.0','0','2AB5FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362502','81488','1','ds.0.color.1','0','6AC8FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362503','81488','1','ds.0.color.2','0','BAE37D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362504','81488','1','ds.0.color.3','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362505','81488','1','ds.0.color.4','0','385CC7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362506','81488','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362507','81488','0','ds.0.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362508','81488','4','ds.0.itemids.0','0','',NULL,NULL,'47430',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362509','81488','4','ds.0.itemids.1','0','',NULL,NULL,'47431',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362510','81488','4','ds.0.itemids.2','0','',NULL,NULL,'47432',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362511','81488','4','ds.0.itemids.3','0','',NULL,NULL,'47433',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362512','81488','4','ds.0.itemids.4','0','',NULL,NULL,'47434',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362513','81488','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362514','81488','0','ds.0.width','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362515','81488','0','legend_columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362516','81488','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362517','81488','1','reference','0','FCADE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362518','81489','1','ds.0.color.0','0','2AB5FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362519','81489','1','ds.0.color.1','0','6AC8FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362520','81489','1','ds.0.color.2','0','BAE37D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362521','81489','1','ds.0.color.3','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362522','81489','1','ds.0.color.4','0','385CC7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362523','81489','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362524','81489','0','ds.0.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362525','81489','4','ds.0.itemids.0','0','',NULL,NULL,'47447',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362526','81489','4','ds.0.itemids.1','0','',NULL,NULL,'47448',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362527','81489','4','ds.0.itemids.2','0','',NULL,NULL,'47449',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362528','81489','4','ds.0.itemids.3','0','',NULL,NULL,'47450',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362529','81489','4','ds.0.itemids.4','0','',NULL,NULL,'47451',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362530','81489','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362531','81489','0','ds.0.width','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362532','81489','0','legend_columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362533','81489','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362534','81489','1','reference','0','AFEEC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362535','81490','4','itemid.0','0','',NULL,NULL,'47441',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362536','81490','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362537','81490','0','value_size','80','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362538','81491','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362539','81491','1','down_color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362540','81491','4','itemid.0','0','',NULL,NULL,'47442',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362541','81491','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362542','81491','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362543','81491','1','updown_color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362544','81491','1','up_color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362545','81491','0','value_size','70','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362546','81492','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362547','81492','1','down_color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362548','81492','4','itemid.0','0','',NULL,NULL,'47443',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362549','81492','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362550','81492','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362551','81492','1','updown_color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362552','81492','1','up_color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362553','81492','0','value_size','70','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362554','81493','4','itemid.0','0','',NULL,NULL,'47435',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362555','81493','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362556','81493','0','value_size','80','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362557','81494','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362558','81494','1','down_color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362559','81494','4','itemid.0','0','',NULL,NULL,'47434',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362560','81494','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362561','81494','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362562','81494','1','updown_color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362563','81494','1','up_color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362564','81494','0','value_size','70','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362565','81495','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362566','81495','1','down_color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362567','81495','4','itemid.0','0','',NULL,NULL,'47436',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362568','81495','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362569','81495','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362570','81495','1','updown_color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362571','81495','1','up_color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362572','81495','0','value_size','70','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362573','81496','4','itemid.0','0','',NULL,NULL,'47444',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362574','81496','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362575','81496','0','value_size','80','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362576','81497','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362577','81497','1','down_color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362578','81497','4','itemid.0','0','',NULL,NULL,'47445',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362579','81497','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362580','81497','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362581','81497','1','updown_color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362582','81497','1','up_color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362583','81497','0','value_size','70','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362584','81498','1','items.0','0','*health status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362585','81498','1','primary_label','0',E'{{ITEM.NAME}.regsub("(Services: )(Microsoft)?(.*)(health status)","\\3")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362586','81498','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362587','81498','1','thresholds.0.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362588','81498','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362589','81498','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362590','81498','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362591','81498','1','thresholds.2.color','0','2AB5FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362592','81498','1','thresholds.2.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362593','81498','1','thresholds.3.color','0','BAE37D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362594','81498','1','thresholds.3.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362595','81498','1','thresholds.4.color','0','6AC8FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362596','81498','1','thresholds.4.threshold','0','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362597','81498','1','thresholds.5.color','0','385CC7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362598','81498','1','thresholds.5.threshold','0','5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362599','81498','1','thresholds.6.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362600','81498','1','thresholds.6.threshold','0','6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362601','81498','1','thresholds.7.color','0','ED1248',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362602','81498','1','thresholds.7.threshold','0','7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362603','81498','1','thresholds.8.color','0','B4B400',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362604','81498','1','thresholds.8.threshold','0','8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362605','81498','1','thresholds.9.color','0','524BBC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362606','81498','1','thresholds.9.threshold','0','9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362607','81498','1','thresholds.10.color','0','DC0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362608','81498','1','thresholds.10.threshold','0','10',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362609','81499','4','itemid.0','0','',NULL,NULL,'46115',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362610','81499','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362611','81499','0','show.1','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362612','81499','0','show.2','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362613','81500','6','graphid.0','0','',NULL,NULL,NULL,'2584',NULL,NULL,NULL,NULL,NULL,NULL), ('362614','81500','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362615','81501','6','graphid.0','0','',NULL,NULL,NULL,'2585',NULL,NULL,NULL,NULL,NULL,NULL), ('362616','81501','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362617','81502','6','graphid.0','0','',NULL,NULL,NULL,'2586',NULL,NULL,NULL,NULL,NULL,NULL), ('362618','81502','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362619','81503','6','graphid.0','0','',NULL,NULL,NULL,'2587',NULL,NULL,NULL,NULL,NULL,NULL), ('362620','81503','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362621','81504','4','itemid.0','0','',NULL,NULL,'46111',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362622','81504','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362623','81504','0','show.1','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362624','81504','0','show.2','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362625','81505','4','itemid.0','0','',NULL,NULL,'46104',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362626','81505','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362627','81505','0','show.1','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362628','81505','0','show.2','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362629','81506','4','itemid.0','0','',NULL,NULL,'46105',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362630','81506','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362631','81506','0','show.1','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362632','81506','0','show.2','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362633','81507','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362634','81507','7','graphid.0','0','',NULL,NULL,NULL,'2583',NULL,NULL,NULL,NULL,NULL,NULL), ('362635','81507','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362636','81507','0','rows','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362637','81508','6','graphid.0','0','',NULL,NULL,NULL,'841',NULL,NULL,NULL,NULL,NULL,NULL), ('362638','81508','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362639','81509','6','graphid.0','0','',NULL,NULL,NULL,'842',NULL,NULL,NULL,NULL,NULL,NULL), ('362640','81509','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362641','81510','6','graphid.0','0','',NULL,NULL,NULL,'843',NULL,NULL,NULL,NULL,NULL,NULL), ('362642','81510','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362643','81511','6','graphid.0','0','',NULL,NULL,NULL,'2863',NULL,NULL,NULL,NULL,NULL,NULL), ('362644','81511','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362645','81512','6','graphid.0','0','',NULL,NULL,NULL,'2864',NULL,NULL,NULL,NULL,NULL,NULL), ('362646','81512','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362647','81513','6','graphid.0','0','',NULL,NULL,NULL,'2865',NULL,NULL,NULL,NULL,NULL,NULL), ('362648','81513','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362649','81514','6','graphid.0','0','',NULL,NULL,NULL,'845',NULL,NULL,NULL,NULL,NULL,NULL), ('362650','81514','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362651','81515','6','graphid.0','0','',NULL,NULL,NULL,'846',NULL,NULL,NULL,NULL,NULL,NULL), ('362652','81515','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362653','81516','6','graphid.0','0','',NULL,NULL,NULL,'847',NULL,NULL,NULL,NULL,NULL,NULL), ('362654','81516','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362655','81517','6','graphid.0','0','',NULL,NULL,NULL,'1647',NULL,NULL,NULL,NULL,NULL,NULL), ('362656','81517','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362657','81518','6','graphid.0','0','',NULL,NULL,NULL,'1649',NULL,NULL,NULL,NULL,NULL,NULL), ('362658','81518','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362659','81519','6','graphid.0','0','',NULL,NULL,NULL,'1648',NULL,NULL,NULL,NULL,NULL,NULL), ('362660','81519','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362661','81520','6','graphid.0','0','',NULL,NULL,NULL,'1650',NULL,NULL,NULL,NULL,NULL,NULL), ('362662','81520','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362663','81521','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362664','81521','4','itemid.0','0','',NULL,NULL,'45865',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362665','81521','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362666','81521','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362667','81522','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362668','81522','4','itemid.0','0','',NULL,NULL,'45867',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362669','81522','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362670','81522','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362671','81523','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362672','81523','4','itemid.0','0','',NULL,NULL,'45864',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362673','81523','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362674','81523','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362675','81524','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362676','81524','4','itemid.0','0','',NULL,NULL,'45903',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362677','81524','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362678','81524','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362679','81525','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362680','81525','4','itemid.0','0','',NULL,NULL,'45894',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362681','81525','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362682','81525','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362683','81526','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362684','81526','4','itemid.0','0','',NULL,NULL,'45896',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362685','81526','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362686','81526','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362687','81527','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362688','81527','4','itemid.0','0','',NULL,NULL,'45902',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362689','81527','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362690','81527','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362691','81528','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362692','81528','4','itemid.0','0','',NULL,NULL,'45892',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362693','81528','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362694','81528','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362695','81529','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362696','81529','4','itemid.0','0','',NULL,NULL,'45901',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362697','81529','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362698','81529','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362699','81530','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362700','81530','4','itemid.0','0','',NULL,NULL,'45880',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362701','81530','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362702','81530','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362703','81531','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362704','81531','4','itemid.0','0','',NULL,NULL,'45893',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362705','81531','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362706','81531','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362707','81532','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362708','81532','4','itemid.0','0','',NULL,NULL,'45895',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362709','81532','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362710','81532','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362711','81533','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362712','81533','7','graphid.0','0','',NULL,NULL,NULL,'2570',NULL,NULL,NULL,NULL,NULL,NULL), ('362713','81533','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362714','81534','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362715','81534','5','itemid.0','0','',NULL,NULL,'46029',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362716','81534','1','reference','0','AAAAH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362717','81534','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362718','81535','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362719','81535','7','graphid.0','0','',NULL,NULL,NULL,'2568',NULL,NULL,NULL,NULL,NULL,NULL), ('362720','81535','1','reference','0','AAAAJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362721','81536','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362722','81536','7','graphid.0','0','',NULL,NULL,NULL,'2569',NULL,NULL,NULL,NULL,NULL,NULL), ('362723','81536','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362724','81537','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362725','81537','5','itemid.0','0','',NULL,NULL,'46034',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362726','81537','1','reference','0','AAAAI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362727','81537','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362728','81538','6','graphid.0','0','',NULL,NULL,NULL,'2573',NULL,NULL,NULL,NULL,NULL,NULL), ('362729','81538','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362730','81539','6','graphid.0','0','',NULL,NULL,NULL,'2575',NULL,NULL,NULL,NULL,NULL,NULL), ('362731','81539','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362732','81540','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362733','81540','7','graphid.0','0','',NULL,NULL,NULL,'2571',NULL,NULL,NULL,NULL,NULL,NULL), ('362734','81540','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362735','81541','6','graphid.0','0','',NULL,NULL,NULL,'2574',NULL,NULL,NULL,NULL,NULL,NULL), ('362736','81541','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362737','81542','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362738','81542','7','graphid.0','0','',NULL,NULL,NULL,'2572',NULL,NULL,NULL,NULL,NULL,NULL), ('362739','81542','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362740','81543','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362741','81543','4','itemid.0','0','',NULL,NULL,'45922',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362742','81543','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362743','81543','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362744','81544','6','graphid.0','0','',NULL,NULL,NULL,'2579',NULL,NULL,NULL,NULL,NULL,NULL), ('362745','81544','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362746','81545','6','graphid.0','0','',NULL,NULL,NULL,'2576',NULL,NULL,NULL,NULL,NULL,NULL), ('362747','81545','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362748','81546','6','graphid.0','0','',NULL,NULL,NULL,'2577',NULL,NULL,NULL,NULL,NULL,NULL), ('362749','81546','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362750','81547','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362751','81547','4','itemid.0','0','',NULL,NULL,'45923',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362752','81547','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362753','81547','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362754','81548','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362755','81548','4','itemid.0','0','',NULL,NULL,'45924',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362756','81548','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362757','81548','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362758','81549','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362759','81549','4','itemid.0','0','',NULL,NULL,'45875',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362760','81549','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362761','81549','0','value_size','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362762','81550','6','graphid.0','0','',NULL,NULL,NULL,'2579',NULL,NULL,NULL,NULL,NULL,NULL), ('362763','81550','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362764','81551','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362765','81551','4','itemid.0','0','',NULL,NULL,'45907',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362766','81551','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362767','81551','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362768','81552','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362769','81552','4','itemid.0','0','',NULL,NULL,'45987',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362770','81552','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362771','81552','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362772','81552','0','value_size','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362773','81553','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362774','81553','4','itemid.0','0','',NULL,NULL,'45994',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362775','81553','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362776','81553','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362777','81554','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362778','81554','4','itemid.0','0','',NULL,NULL,'45988',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362779','81554','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362780','81554','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362781','81555','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362782','81555','4','itemid.0','0','',NULL,NULL,'45995',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362783','81555','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362784','81555','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362785','81556','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362786','81556','4','itemid.0','0','',NULL,NULL,'45913',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362787','81556','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362788','81556','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362789','81557','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362790','81557','4','itemid.0','0','',NULL,NULL,'46016',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362791','81557','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362792','81557','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362793','81558','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362794','81558','4','itemid.0','0','',NULL,NULL,'46010',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362795','81558','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362796','81558','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362797','81559','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362798','81559','4','itemid.0','0','',NULL,NULL,'46011',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362799','81559','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362800','81559','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362801','81560','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362802','81560','4','itemid.0','0','',NULL,NULL,'45973',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362803','81560','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362804','81560','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362805','81561','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362806','81561','4','itemid.0','0','',NULL,NULL,'45982',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362807','81561','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362808','81561','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362809','81562','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362810','81562','4','itemid.0','0','',NULL,NULL,'46012',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362811','81562','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362812','81562','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362813','81563','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362814','81563','4','itemid.0','0','',NULL,NULL,'45980',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362815','81563','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362816','81563','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362817','81564','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362818','81564','4','itemid.0','0','',NULL,NULL,'46017',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362819','81564','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362820','81564','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362821','81565','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362822','81565','4','itemid.0','0','',NULL,NULL,'46009',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362823','81565','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362824','81565','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362825','81566','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362826','81566','4','itemid.0','0','',NULL,NULL,'45974',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362827','81566','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362828','81566','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362829','81567','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362830','81567','4','itemid.0','0','',NULL,NULL,'46014',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362831','81567','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362832','81567','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362833','81568','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362834','81568','4','itemid.0','0','',NULL,NULL,'45981',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362835','81568','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362836','81568','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362837','81569','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362838','81569','4','itemid.0','0','',NULL,NULL,'46018',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362839','81569','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362840','81569','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362841','81570','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362842','81570','4','itemid.0','0','',NULL,NULL,'46015',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362843','81570','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362844','81570','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362845','81571','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362846','81571','4','itemid.0','0','',NULL,NULL,'45971',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362847','81571','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362848','81571','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362849','81572','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362850','81572','4','itemid.0','0','',NULL,NULL,'46008',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362851','81572','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362852','81572','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362853','81573','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362854','81573','4','itemid.0','0','',NULL,NULL,'45972',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362855','81573','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362856','81573','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362857','81574','4','itemid.0','0','',NULL,NULL,'47718',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362858','81574','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362859','81574','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362860','81574','1','thresholds.0.color','0','47A76A',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362861','81574','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362862','81574','1','thresholds.1.color','0','FDD835',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362863','81574','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362864','81574','1','thresholds.2.color','0','FDD835',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362865','81574','1','thresholds.2.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362866','81574','1','thresholds.3.color','0','FDD835',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362867','81574','1','thresholds.3.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362868','81574','1','thresholds.4.color','0','FDD835',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362869','81574','1','thresholds.4.threshold','0','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362870','81574','1','thresholds.5.color','0','D2D2D2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362871','81574','1','thresholds.5.threshold','0','5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362872','81574','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362873','81575','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362874','81575','1','ds.0.color.1','0','FF0080',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362875','81575','1','ds.0.color.2','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362876','81575','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362877','81575','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362878','81575','4','ds.0.itemids.0','0','',NULL,NULL,'47751',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362879','81575','4','ds.0.itemids.1','0','',NULL,NULL,'47777',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362880','81575','4','ds.0.itemids.2','0','',NULL,NULL,'47802',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362881','81575','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362882','81575','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362883','81575','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362884','81575','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362885','81575','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362886','81575','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362887','81575','1','reference','0','PMVJG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362888','81575','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362889','81576','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362890','81576','1','ds.0.color.1','0','FF0080',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362891','81576','1','ds.0.color.2','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362892','81576','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362893','81576','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362894','81576','4','ds.0.itemids.0','0','',NULL,NULL,'47732',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362895','81576','4','ds.0.itemids.1','0','',NULL,NULL,'47764',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362896','81576','4','ds.0.itemids.2','0','',NULL,NULL,'47785',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362897','81576','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362898','81576','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362899','81576','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362900','81576','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362901','81576','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362902','81576','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362903','81576','1','reference','0','PQNBF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362904','81576','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362905','81577','4','itemid.0','0','',NULL,NULL,'47762',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362906','81577','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362907','81577','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362908','81577','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362909','81578','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362910','81578','4','itemid.0','0','',NULL,NULL,'47758',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362911','81578','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362912','81578','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362913','81578','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362914','81578','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362915','81579','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362916','81579','4','itemid.0','0','',NULL,NULL,'47783',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362917','81579','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362918','81579','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362919','81579','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362920','81579','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362921','81580','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362922','81580','4','itemid.0','0','',NULL,NULL,'47784',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362923','81580','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362924','81580','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362925','81580','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362926','81580','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362927','81581','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362928','81581','1','ds.0.color.1','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362929','81581','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362930','81581','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362931','81581','4','ds.0.itemids.0','0','',NULL,NULL,'47754',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362932','81581','4','ds.0.itemids.1','0','',NULL,NULL,'47755',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362933','81581','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362934','81581','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362935','81581','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362936','81581','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362937','81581','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362938','81581','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362939','81581','1','reference','0','PMVJF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362940','81581','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362941','81582','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362942','81582','1','ds.0.color.1','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362943','81582','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362944','81582','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362945','81582','4','ds.0.itemids.0','0','',NULL,NULL,'47756',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362946','81582','4','ds.0.itemids.1','0','',NULL,NULL,'47757',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362947','81582','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362948','81582','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362949','81582','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362950','81582','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362951','81582','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362952','81582','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362953','81582','1','reference','0','PMVJJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362954','81582','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362955','81583','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362956','81583','1','ds.0.color.1','0','FF0080',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362957','81583','1','ds.0.color.2','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362958','81583','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362959','81583','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362960','81583','4','ds.0.itemids.0','0','',NULL,NULL,'47751',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362961','81583','4','ds.0.itemids.1','0','',NULL,NULL,'47752',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362962','81583','4','ds.0.itemids.2','0','',NULL,NULL,'47753',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362963','81583','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362964','81583','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362965','81583','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362966','81583','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362967','81583','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362968','81583','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362969','81583','1','reference','0','TQOEE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362970','81583','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362971','81584','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362972','81584','1','ds.0.color.1','0','FF0080',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362973','81584','1','ds.0.color.2','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362974','81584','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362975','81584','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362976','81584','4','ds.0.itemids.0','0','',NULL,NULL,'47733',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362977','81584','4','ds.0.itemids.1','0','',NULL,NULL,'47738',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362978','81584','4','ds.0.itemids.2','0','',NULL,NULL,'47748',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362979','81584','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362980','81584','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362981','81584','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362982','81584','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362983','81584','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362984','81584','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362985','81584','1','reference','0','CJFZN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362986','81584','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362987','81585','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362988','81585','1','ds.0.color.1','0','FF0080',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362989','81585','1','ds.0.color.2','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362990','81585','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362991','81585','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362992','81585','4','ds.0.itemids.0','0','',NULL,NULL,'47734',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362993','81585','4','ds.0.itemids.1','0','',NULL,NULL,'47739',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362994','81585','4','ds.0.itemids.2','0','',NULL,NULL,'47749',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362995','81585','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362996','81585','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362997','81585','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362998','81585','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('362999','81585','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363000','81585','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363001','81585','1','reference','0','PDAZX',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363002','81585','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363003','81586','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363004','81586','4','itemid.0','0','',NULL,NULL,'47751',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363005','81586','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363006','81586','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363007','81586','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363008','81586','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363009','81586','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363010','81587','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363011','81587','4','itemid.0','0','',NULL,NULL,'47752',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363012','81587','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363013','81587','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363014','81587','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363015','81587','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363016','81587','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363017','81588','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363018','81588','4','itemid.0','0','',NULL,NULL,'47753',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363019','81588','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363020','81588','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363021','81588','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363022','81588','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363023','81588','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363024','81589','0','draw_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363025','81589','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363026','81589','1','ds.0.color.1','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363027','81589','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363028','81589','4','ds.0.itemids.0','0','',NULL,NULL,'47740',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363029','81589','4','ds.0.itemids.1','0','',NULL,NULL,'47750',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363030','81589','0','ds.0.type.0','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363031','81589','0','ds.0.type.1','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363032','81589','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363033','81589','0','legend_value','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363034','81589','0','space','7','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363035','81589','0','width','40','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363036','81590','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363037','81590','1','ds.0.color.1','0','FF0080',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363038','81590','1','ds.0.color.2','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363039','81590','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363040','81590','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363041','81590','4','ds.0.itemids.0','0','',NULL,NULL,'47721',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363042','81590','4','ds.0.itemids.1','0','',NULL,NULL,'47726',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363043','81590','4','ds.0.itemids.2','0','',NULL,NULL,'47724',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363044','81590','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363045','81590','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363046','81590','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363047','81590','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363048','81590','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363049','81590','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363050','81590','1','reference','0','HNWKJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363051','81590','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363052','81591','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363053','81591','1','description','0','Content Cache: Logical memory usage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363054','81591','4','itemid.0','0','',NULL,NULL,'47721',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363055','81591','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363056','81591','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363057','81591','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363058','81591','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363059','81592','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363060','81592','1','ds.0.color.1','0','FF0080',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363061','81592','1','ds.0.color.2','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363062','81592','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363063','81592','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363064','81592','4','ds.0.itemids.0','0','',NULL,NULL,'47722',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363065','81592','4','ds.0.itemids.1','0','',NULL,NULL,'47725',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363066','81592','4','ds.0.itemids.2','0','',NULL,NULL,'47727',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363067','81592','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363068','81592','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363069','81592','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363070','81592','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363071','81592','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363072','81592','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363073','81592','1','reference','0','GCYCT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363074','81592','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363075','81593','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363076','81593','1','description','0','Content Cache: Logical SSD usage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363077','81593','4','itemid.0','0','',NULL,NULL,'47722',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363078','81593','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363079','81593','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363080','81593','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363081','81593','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363082','81594','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363083','81594','1','description','0','Content Cache: Logical saved memory usage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363084','81594','4','itemid.0','0','',NULL,NULL,'47726',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363085','81594','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363086','81594','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363087','81594','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363088','81594','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363089','81595','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363090','81595','1','description','0','Content Cache: Physical SSD usage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363091','81595','4','itemid.0','0','',NULL,NULL,'47725',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363092','81595','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363093','81595','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363094','81595','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363095','81595','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363096','81596','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363097','81596','1','description','0','Content Cache: Physical memory usage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363098','81596','4','itemid.0','0','',NULL,NULL,'47724',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363099','81596','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363100','81596','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363101','81596','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363102','81596','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363103','81597','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363104','81597','1','description','0','Content Cache: Saved SSD usage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363105','81597','4','itemid.0','0','',NULL,NULL,'47727',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363106','81597','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363107','81597','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363108','81597','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363109','81597','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363110','81598','1','empty_color','0','E1F5FE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363111','81598','4','itemid.0','0','',NULL,NULL,'47720',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363112','81598','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363113','81598','1','value_arc_color','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363114','81599','1','ds.0.color.0','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363115','81599','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363116','81599','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363117','81599','4','ds.0.itemids.0','0','',NULL,NULL,'47720',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363118','81599','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363119','81599','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363120','81599','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363121','81599','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363122','81599','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363123','81599','1','lefty_static_units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363124','81599','0','lefty_units','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363125','81599','0','legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363126','81599','1','reference','0','ZBMME',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363127','81599','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363128','81600','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363129','81600','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363130','81600','4','itemid.0','0','',NULL,NULL,'47723',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363131','81600','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363132','81600','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363133','81600','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363134','81600','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363135','81601','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363136','81601','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363137','81601','4','itemid.0','0','',NULL,NULL,'47719',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363138','81601','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363139','81601','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363140','81601','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363141','81601','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363142','81602','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363143','81602','1','ds.0.color.1','0','FF0080',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363144','81602','1','ds.0.color.2','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363145','81602','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363146','81602','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363147','81602','4','ds.0.itemids.0','0','',NULL,NULL,'47777',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363148','81602','4','ds.0.itemids.1','0','',NULL,NULL,'47778',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363149','81602','4','ds.0.itemids.2','0','',NULL,NULL,'47779',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363150','81602','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363151','81602','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363152','81602','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363153','81602','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363154','81602','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363155','81602','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363156','81602','1','reference','0','RUGEL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363157','81602','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363158','81603','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363159','81603','1','ds.0.color.1','0','FF0080',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363160','81603','1','ds.0.color.2','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363161','81603','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363162','81603','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363163','81603','4','ds.0.itemids.0','0','',NULL,NULL,'47766',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363164','81603','4','ds.0.itemids.1','0','',NULL,NULL,'47769',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363165','81603','4','ds.0.itemids.2','0','',NULL,NULL,'47776',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363166','81603','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363167','81603','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363168','81603','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363169','81603','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363170','81603','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363171','81603','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363172','81603','1','reference','0','GNBJL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363173','81603','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363174','81604','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363175','81604','1','ds.0.color.1','0','FF0080',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363176','81604','1','ds.0.color.2','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363177','81604','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363178','81604','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363179','81604','4','ds.0.itemids.0','0','',NULL,NULL,'47765',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363180','81604','4','ds.0.itemids.1','0','',NULL,NULL,'47768',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363181','81604','4','ds.0.itemids.2','0','',NULL,NULL,'47775',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363182','81604','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363183','81604','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363184','81604','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363185','81604','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363186','81604','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363187','81604','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363188','81604','1','reference','0','BVXJW',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363189','81604','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363190','81605','1','empty_color','0','E1F5FE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363191','81605','4','itemid.0','0','',NULL,NULL,'47763',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363192','81605','1','thresholds.0.color','0','29B6F6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363193','81605','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363194','81605','1','thresholds.1.color','0','FFF176',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363195','81605','1','thresholds.1.threshold','0','70',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363196','81605','1','thresholds.2.color','0','F9A825',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363197','81605','1','thresholds.2.threshold','0','80',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363198','81605','1','thresholds.3.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363199','81605','1','thresholds.3.threshold','0','90',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363200','81605','0','th_show_arc','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363201','81605','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363202','81606','1','ds.0.color.0','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363203','81606','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363204','81606','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363205','81606','4','ds.0.itemids.0','0','',NULL,NULL,'47763',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363206','81606','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363207','81606','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363208','81606','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363209','81606','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363210','81606','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363211','81606','1','lefty_static_units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363212','81606','0','lefty_units','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363213','81606','0','legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363214','81606','1','reference','0','LOWCD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363215','81606','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363216','81607','1','empty_color','0','E1F5FE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363217','81607','4','itemid.0','0','',NULL,NULL,'47780',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363218','81607','1','thresholds.0.color','0','29B6F6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363219','81607','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363220','81607','1','thresholds.1.color','0','FFF176',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363221','81607','1','thresholds.1.threshold','0','70',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363222','81607','1','thresholds.2.color','0','F9A825',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363223','81607','1','thresholds.2.threshold','0','80',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363224','81607','1','thresholds.3.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363225','81607','1','thresholds.3.threshold','0','90',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363226','81607','0','th_show_arc','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363227','81607','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363228','81608','1','ds.0.color.0','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363229','81608','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363230','81608','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363231','81608','4','ds.0.itemids.0','0','',NULL,NULL,'47780',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363232','81608','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363233','81608','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363234','81608','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363235','81608','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363236','81608','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363237','81608','1','lefty_static_units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363238','81608','0','lefty_units','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363239','81608','0','legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363240','81608','1','reference','0','WJDEV',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363241','81608','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363242','81609','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363243','81609','1','ds.0.color.1','0','FF0080',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363244','81609','1','ds.0.color.2','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363245','81609','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363246','81609','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363247','81609','4','ds.0.itemids.0','0','',NULL,NULL,'47802',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363248','81609','4','ds.0.itemids.1','0','',NULL,NULL,'47803',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363249','81609','4','ds.0.itemids.2','0','',NULL,NULL,'47804',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363250','81609','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363251','81609','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363252','81609','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363253','81609','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363254','81609','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363255','81609','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363256','81609','1','reference','0','VKETQ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363257','81609','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363258','81610','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363259','81610','1','ds.0.color.1','0','FF0080',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363260','81610','1','ds.0.color.2','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363261','81610','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363262','81610','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363263','81610','4','ds.0.itemids.0','0','',NULL,NULL,'47785',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363264','81610','4','ds.0.itemids.1','0','',NULL,NULL,'47788',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363265','81610','4','ds.0.itemids.2','0','',NULL,NULL,'47797',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363266','81610','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363267','81610','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363268','81610','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363269','81610','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363270','81610','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363271','81610','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363272','81610','1','reference','0','RKARE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363273','81610','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363274','81611','0','draw_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363275','81611','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363276','81611','1','ds.0.color.1','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363277','81611','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363278','81611','4','ds.0.itemids.0','0','',NULL,NULL,'47792',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363279','81611','4','ds.0.itemids.1','0','',NULL,NULL,'47801',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363280','81611','0','ds.0.type.0','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363281','81611','0','ds.0.type.1','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363282','81611','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363283','81611','0','legend_value','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363284','81611','0','space','7','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363285','81611','0','width','40','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363286','81612','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363287','81612','1','ds.0.color.1','0','FF0080',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363288','81612','1','ds.0.color.2','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363289','81612','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363290','81612','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363291','81612','4','ds.0.itemids.0','0','',NULL,NULL,'47786',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363292','81612','4','ds.0.itemids.1','0','',NULL,NULL,'47789',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363293','81612','4','ds.0.itemids.2','0','',NULL,NULL,'47798',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363294','81612','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363295','81612','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363296','81612','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363297','81612','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363298','81612','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363299','81612','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363300','81612','1','reference','0','FCTEG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363301','81612','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363302','81613','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363303','81613','1','ds.0.color.1','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363304','81613','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363305','81613','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363306','81613','4','ds.0.itemids.0','0','',NULL,NULL,'47792',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363307','81613','4','ds.0.itemids.1','0','',NULL,NULL,'47801',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363308','81613','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363309','81613','0','ds.0.stacked','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363310','81613','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363311','81613','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363312','81613','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363313','81613','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363314','81613','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363315','81613','1','reference','0','GVMJA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363316','81613','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363317','81614','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363318','81614','1','ds.0.color.1','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363319','81614','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363320','81614','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363321','81614','4','ds.0.itemids.0','0','',NULL,NULL,'47806',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363322','81614','4','ds.0.itemids.1','0','',NULL,NULL,'47807',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363323','81614','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363324','81614','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363325','81614','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363326','81614','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363327','81614','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363328','81614','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363329','81614','1','reference','0','SCETD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363330','81614','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363331','81615','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363332','81615','1','description','0','Storage Tier: Das-sata free',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363333','81615','4','itemid.0','0','',NULL,NULL,'47806',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363334','81615','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363335','81615','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363336','81615','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363337','81615','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363338','81616','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363339','81616','1','ds.0.color.1','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363340','81616','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363341','81616','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363342','81616','4','ds.0.itemids.0','0','',NULL,NULL,'47809',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363343','81616','4','ds.0.itemids.1','0','',NULL,NULL,'47810',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363344','81616','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363345','81616','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363346','81616','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363347','81616','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363348','81616','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363349','81616','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363350','81616','1','reference','0','NEBOH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363351','81616','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363352','81617','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363353','81617','1','description','0','Storage Tier: SSD free',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363354','81617','4','itemid.0','0','',NULL,NULL,'47809',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363355','81617','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363356','81617','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363357','81617','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363358','81617','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363359','81618','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363360','81618','1','description','0','Storage Tier: Das-sata usage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363361','81618','4','itemid.0','0','',NULL,NULL,'47807',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363362','81618','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363363','81618','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363364','81618','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363365','81618','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363366','81619','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363367','81619','1','description','0','Storage Tier: SSD usage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363368','81619','4','itemid.0','0','',NULL,NULL,'47810',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363369','81619','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363370','81619','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363371','81619','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363372','81619','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363373','81620','0','draw_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363374','81620','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363375','81620','1','ds.0.color.1','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363376','81620','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363377','81620','4','ds.0.itemids.0','0','',NULL,NULL,'47805',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363378','81620','4','ds.0.itemids.1','0','',NULL,NULL,'47807',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363379','81620','0','ds.0.type.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363380','81620','0','ds.0.type.1','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363381','81620','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363382','81620','0','legend_value','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363383','81620','0','space','7','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363384','81620','0','width','40','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363385','81621','0','draw_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363386','81621','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363387','81621','1','ds.0.color.1','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363388','81621','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363389','81621','4','ds.0.itemids.0','0','',NULL,NULL,'47808',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363390','81621','4','ds.0.itemids.1','0','',NULL,NULL,'47810',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363391','81621','0','ds.0.type.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363392','81621','0','ds.0.type.1','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363393','81621','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363394','81621','0','legend_value','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363395','81621','0','space','7','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363396','81621','0','width','40','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363397','81622','4','itemid.0','0','',NULL,NULL,'47858',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363398','81622','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363399','81622','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363400','81622','1','thresholds.0.color','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363401','81622','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363402','81622','1','thresholds.1.color','0','47A76A',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363403','81622','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363404','81622','1','thresholds.2.color','0','FF8F00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363405','81622','1','thresholds.2.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363406','81622','1','thresholds.3.color','0','FF8F00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363407','81622','1','thresholds.3.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363408','81622','1','thresholds.4.color','0','D2D2D2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363409','81622','1','thresholds.4.threshold','0','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363410','81622','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363411','81623','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363412','81623','1','ds.0.color.1','0','FF0080',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363413','81623','1','ds.0.color.2','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363414','81623','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363415','81623','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363416','81623','4','ds.0.itemids.0','0','',NULL,NULL,'47852',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363417','81623','4','ds.0.itemids.1','0','',NULL,NULL,'47885',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363418','81623','4','ds.0.itemids.2','0','',NULL,NULL,'47911',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363419','81623','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363420','81623','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363421','81623','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363422','81623','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363423','81623','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363424','81623','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363425','81623','1','reference','0','PMVMG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363426','81623','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363427','81624','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363428','81624','1','ds.0.color.1','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363429','81624','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363430','81624','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363431','81624','4','ds.0.itemids.0','0','',NULL,NULL,'47859',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363432','81624','4','ds.0.itemids.1','0','',NULL,NULL,'47860',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363433','81624','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363434','81624','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363435','81624','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363436','81624','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363437','81624','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363438','81624','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363439','81624','1','reference','0','PMVKF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363440','81624','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363441','81625','4','itemid.0','0','',NULL,NULL,'47857',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363442','81625','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363443','81625','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363444','81625','1','thresholds.0.color','0','47A76A',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363445','81625','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363446','81625','1','thresholds.1.color','0','FF8F00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363447','81625','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363448','81625','1','thresholds.2.color','0','D2D2D2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363449','81625','1','thresholds.2.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363450','81625','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363451','81626','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363452','81626','1','ds.0.color.1','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363453','81626','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363454','81626','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363455','81626','4','ds.0.itemids.0','0','',NULL,NULL,'47861',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363456','81626','4','ds.0.itemids.1','0','',NULL,NULL,'47862',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363457','81626','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363458','81626','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363459','81626','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363460','81626','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363461','81626','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363462','81626','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363463','81626','1','reference','0','PMVKJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363464','81626','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363465','81627','4','itemid.0','0','',NULL,NULL,'47855',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363466','81627','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363467','81627','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363468','81627','1','thresholds.0.color','0','47A76A',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363469','81627','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363470','81627','1','thresholds.1.color','0','FF8F00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363471','81627','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363472','81627','1','thresholds.2.color','0','D2D2D2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363473','81627','1','thresholds.2.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363474','81627','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363475','81628','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363476','81628','4','itemid.0','0','',NULL,NULL,'47829',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363477','81628','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363478','81628','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363479','81628','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363480','81628','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363481','81629','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363482','81629','4','itemid.0','0','',NULL,NULL,'47856',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363483','81629','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363484','81629','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363485','81629','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363486','81629','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363487','81630','4','itemid.0','0','',NULL,NULL,'47832',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363488','81630','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363489','81630','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363490','81630','1','thresholds.0.color','0','47A76A',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363491','81630','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363492','81630','1','thresholds.1.color','0','FF8F00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363493','81630','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363494','81630','1','thresholds.2.color','0','D2D2D2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363495','81630','1','thresholds.2.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363496','81630','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363497','81631','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363498','81631','4','itemid.0','0','',NULL,NULL,'47867',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363499','81631','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363500','81631','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363501','81631','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363502','81631','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363503','81632','4','itemid.0','0','',NULL,NULL,'47865',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363504','81632','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363505','81632','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363506','81632','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363507','81632','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363508','81632','0','value_size','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363509','81633','4','itemid.0','0','',NULL,NULL,'47828',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363510','81633','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363511','81633','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363512','81633','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363513','81633','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363514','81633','0','value_size','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363515','81634','4','itemid.0','0','',NULL,NULL,'47831',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363516','81634','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363517','81634','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363518','81634','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363519','81634','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363520','81634','0','value_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363521','81635','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363522','81635','4','itemid.0','0','',NULL,NULL,'47863',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363523','81635','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363524','81635','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363525','81635','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363526','81635','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363527','81636','1','ds.0.color.0','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363528','81636','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363529','81636','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363530','81636','4','ds.0.itemids.0','0','',NULL,NULL,'47871',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363531','81636','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363532','81636','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363533','81636','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363534','81636','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363535','81636','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363536','81636','1','lefty_static_units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363537','81636','0','lefty_units','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363538','81636','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363539','81636','1','reference','0','RUGEL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363540','81636','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363541','81637','1','ds.0.color.0','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363542','81637','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363543','81637','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363544','81637','4','ds.0.itemids.0','0','',NULL,NULL,'47888',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363545','81637','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363546','81637','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363547','81637','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363548','81637','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363549','81637','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363550','81637','1','lefty_static_units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363551','81637','0','lefty_units','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363552','81637','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363553','81637','1','reference','0','RUGEN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363554','81637','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363555','81638','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363556','81638','4','itemid.0','0','',NULL,NULL,'47868',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363557','81638','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363558','81638','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363559','81638','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363560','81638','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363561','81638','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363562','81639','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363563','81639','4','itemid.0','0','',NULL,NULL,'47869',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363564','81639','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363565','81639','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363566','81639','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363567','81639','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363568','81639','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363569','81640','1','empty_color','0','E1F5FE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363570','81640','4','itemid.0','0','',NULL,NULL,'47871',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363571','81640','1','thresholds.0.color','0','29B6F6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363572','81640','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363573','81640','1','thresholds.1.color','0','FFF176',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363574','81640','1','thresholds.1.threshold','0','70',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363575','81640','1','thresholds.2.color','0','F9A825',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363576','81640','1','thresholds.2.threshold','0','80',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363577','81640','1','thresholds.3.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363578','81640','1','thresholds.3.threshold','0','90',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363579','81640','0','th_show_arc','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363580','81640','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363581','81641','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363582','81641','4','itemid.0','0','',NULL,NULL,'47829',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363583','81641','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363584','81641','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363585','81641','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363586','81641','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363587','81642','1','empty_color','0','E1F5FE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363588','81642','4','itemid.0','0','',NULL,NULL,'47888',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363589','81642','1','thresholds.0.color','0','29B6F6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363590','81642','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363591','81642','1','thresholds.1.color','0','FFF176',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363592','81642','1','thresholds.1.threshold','0','70',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363593','81642','1','thresholds.2.color','0','F9A825',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363594','81642','1','thresholds.2.threshold','0','80',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363595','81642','1','thresholds.3.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363596','81642','1','thresholds.3.threshold','0','90',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363597','81642','0','th_show_arc','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363598','81642','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363599','81643','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363600','81643','4','itemid.0','0','',NULL,NULL,'47856',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363601','81643','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363602','81643','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363603','81643','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363604','81643','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363605','81644','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363606','81644','4','itemid.0','0','',NULL,NULL,'47870',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363607','81644','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363608','81644','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363609','81644','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363610','81644','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363611','81644','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363612','81645','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363613','81645','1','ds.0.color.1','0','FF0080',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363614','81645','1','ds.0.color.2','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363615','81645','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363616','81645','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363617','81645','4','ds.0.itemids.0','0','',NULL,NULL,'47852',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363618','81645','4','ds.0.itemids.1','0','',NULL,NULL,'47853',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363619','81645','4','ds.0.itemids.2','0','',NULL,NULL,'47854',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363620','81645','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363621','81645','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363622','81645','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363623','81645','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363624','81645','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363625','81645','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363626','81645','1','reference','0','TQOEF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363627','81645','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363628','81646','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363629','81646','1','ds.0.color.1','0','FF0080',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363630','81646','1','ds.0.color.2','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363631','81646','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363632','81646','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363633','81646','4','ds.0.itemids.0','0','',NULL,NULL,'47834',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363634','81646','4','ds.0.itemids.1','0','',NULL,NULL,'47839',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363635','81646','4','ds.0.itemids.2','0','',NULL,NULL,'47849',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363636','81646','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363637','81646','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363638','81646','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363639','81646','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363640','81646','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363641','81646','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363642','81646','1','reference','0','CJFZM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363643','81646','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363644','81647','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363645','81647','1','ds.0.color.1','0','FF0080',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363646','81647','1','ds.0.color.2','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363647','81647','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363648','81647','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363649','81647','4','ds.0.itemids.0','0','',NULL,NULL,'47835',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363650','81647','4','ds.0.itemids.1','0','',NULL,NULL,'47840',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363651','81647','4','ds.0.itemids.2','0','',NULL,NULL,'47850',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363652','81647','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363653','81647','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363654','81647','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363655','81647','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363656','81647','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363657','81647','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363658','81647','1','reference','0','PDAZA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363659','81647','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363660','81648','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363661','81648','4','itemid.0','0','',NULL,NULL,'47852',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363662','81648','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363663','81648','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363664','81648','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363665','81648','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363666','81648','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363667','81649','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363668','81649','4','itemid.0','0','',NULL,NULL,'47853',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363669','81649','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363670','81649','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363671','81649','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363672','81649','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363673','81649','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363674','81650','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363675','81650','4','itemid.0','0','',NULL,NULL,'47854',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363676','81650','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363677','81650','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363678','81650','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363679','81650','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363680','81650','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363681','81651','0','draw_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363682','81651','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363683','81651','1','ds.0.color.1','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363684','81651','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363685','81651','4','ds.0.itemids.0','0','',NULL,NULL,'47841',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363686','81651','4','ds.0.itemids.1','0','',NULL,NULL,'47851',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363687','81651','0','ds.0.type.0','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363688','81651','0','ds.0.type.1','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363689','81651','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363690','81651','0','legend_value','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363691','81651','0','space','7','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363692','81651','0','width','40','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363693','81652','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363694','81652','1','ds.0.color.1','0','FF0080',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363695','81652','1','ds.0.color.2','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363696','81652','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363697','81652','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363698','81652','4','ds.0.itemids.0','0','',NULL,NULL,'47816',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363699','81652','4','ds.0.itemids.1','0','',NULL,NULL,'47821',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363700','81652','4','ds.0.itemids.2','0','',NULL,NULL,'47819',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363701','81652','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363702','81652','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363703','81652','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363704','81652','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363705','81652','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363706','81652','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363707','81652','1','reference','0','HNWKK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363708','81652','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363709','81653','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363710','81653','1','description','0','Content Cache: Logical memory usage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363711','81653','4','itemid.0','0','',NULL,NULL,'47816',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363712','81653','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363713','81653','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363714','81653','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363715','81653','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363716','81654','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363717','81654','1','ds.0.color.1','0','FF0080',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363718','81654','1','ds.0.color.2','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363719','81654','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363720','81654','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363721','81654','4','ds.0.itemids.0','0','',NULL,NULL,'47817',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363722','81654','4','ds.0.itemids.1','0','',NULL,NULL,'47820',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363723','81654','4','ds.0.itemids.2','0','',NULL,NULL,'47822',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363724','81654','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363725','81654','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363726','81654','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363727','81654','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363728','81654','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363729','81654','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363730','81654','1','reference','0','GCYCY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363731','81654','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363732','81655','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363733','81655','1','description','0','Content Cache: Logical SSD usage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363734','81655','4','itemid.0','0','',NULL,NULL,'47817',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363735','81655','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363736','81655','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363737','81655','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363738','81655','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363739','81656','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363740','81656','1','description','0','Content Cache: Logical saved memory usage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363741','81656','4','itemid.0','0','',NULL,NULL,'47821',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363742','81656','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363743','81656','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363744','81656','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363745','81656','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363746','81657','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363747','81657','1','description','0','Content Cache: Physical SSD usage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363748','81657','4','itemid.0','0','',NULL,NULL,'47820',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363749','81657','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363750','81657','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363751','81657','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363752','81657','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363753','81658','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363754','81658','1','description','0','Content Cache: Physical memory usage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363755','81658','4','itemid.0','0','',NULL,NULL,'47819',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363756','81658','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363757','81658','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363758','81658','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363759','81658','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363760','81659','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363761','81659','1','description','0','Content Cache: Saved SSD usage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363762','81659','4','itemid.0','0','',NULL,NULL,'47822',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363763','81659','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363764','81659','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363765','81659','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363766','81659','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363767','81660','1','empty_color','0','E1F5FE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363768','81660','4','itemid.0','0','',NULL,NULL,'47815',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363769','81660','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363770','81660','1','value_arc_color','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363771','81661','1','ds.0.color.0','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363772','81661','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363773','81661','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363774','81661','4','ds.0.itemids.0','0','',NULL,NULL,'47815',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363775','81661','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363776','81661','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363777','81661','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363778','81661','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363779','81661','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363780','81661','1','lefty_static_units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363781','81661','0','lefty_units','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363782','81661','0','legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363783','81661','1','reference','0','ZBMMF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363784','81661','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363785','81662','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363786','81662','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363787','81662','4','itemid.0','0','',NULL,NULL,'47818',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363788','81662','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363789','81662','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363790','81662','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363791','81662','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363792','81663','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363793','81663','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363794','81663','4','itemid.0','0','',NULL,NULL,'47814',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363795','81663','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363796','81663','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363797','81663','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363798','81663','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363799','81664','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363800','81664','1','ds.0.color.1','0','FF0080',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363801','81664','1','ds.0.color.2','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363802','81664','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363803','81664','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363804','81664','4','ds.0.itemids.0','0','',NULL,NULL,'47885',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363805','81664','4','ds.0.itemids.1','0','',NULL,NULL,'47886',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363806','81664','4','ds.0.itemids.2','0','',NULL,NULL,'47887',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363807','81664','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363808','81664','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363809','81664','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363810','81664','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363811','81664','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363812','81664','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363813','81664','1','reference','0','RUGEM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363814','81664','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363815','81665','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363816','81665','1','ds.0.color.1','0','FF0080',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363817','81665','1','ds.0.color.2','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363818','81665','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363819','81665','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363820','81665','4','ds.0.itemids.0','0','',NULL,NULL,'47874',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363821','81665','4','ds.0.itemids.1','0','',NULL,NULL,'47877',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363822','81665','4','ds.0.itemids.2','0','',NULL,NULL,'47884',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363823','81665','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363824','81665','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363825','81665','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363826','81665','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363827','81665','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363828','81665','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363829','81665','1','reference','0','GNBJL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363830','81665','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363831','81666','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363832','81666','1','ds.0.color.1','0','FF0080',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363833','81666','1','ds.0.color.2','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363834','81666','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363835','81666','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363836','81666','4','ds.0.itemids.0','0','',NULL,NULL,'47873',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363837','81666','4','ds.0.itemids.1','0','',NULL,NULL,'47876',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363838','81666','4','ds.0.itemids.2','0','',NULL,NULL,'47883',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363839','81666','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363840','81666','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363841','81666','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363842','81666','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363843','81666','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363844','81666','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363845','81666','1','reference','0','BVXJW',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363846','81666','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363847','81667','4','itemid.0','0','',NULL,NULL,'47889',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363848','81667','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363849','81667','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363850','81667','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363851','81667','0','value_size','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363852','81668','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363853','81668','4','itemid.0','0','',NULL,NULL,'47891',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363854','81668','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363855','81668','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363856','81668','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363857','81668','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363858','81669','1','ds.0.color.0','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363859','81669','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363860','81669','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363861','81669','4','ds.0.itemids.0','0','',NULL,NULL,'47890',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363862','81669','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363863','81669','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363864','81669','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363865','81669','0','legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363866','81669','1','reference','0','LOWCE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363867','81669','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363868','81670','1','ds.0.color.0','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363869','81670','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363870','81670','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363871','81670','4','ds.0.itemids.0','0','',NULL,NULL,'47892',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363872','81670','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363873','81670','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363874','81670','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363875','81670','0','legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363876','81670','1','reference','0','LOWCF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363877','81670','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363878','81671','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363879','81671','1','ds.0.color.1','0','FF0080',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363880','81671','1','ds.0.color.2','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363881','81671','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363882','81671','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363883','81671','4','ds.0.itemids.0','0','',NULL,NULL,'47911',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363884','81671','4','ds.0.itemids.1','0','',NULL,NULL,'47912',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363885','81671','4','ds.0.itemids.2','0','',NULL,NULL,'47913',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363886','81671','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363887','81671','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363888','81671','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363889','81671','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363890','81671','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363891','81671','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363892','81671','1','reference','0','VKETW',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363893','81671','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363894','81672','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363895','81672','1','ds.0.color.1','0','FF0080',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363896','81672','1','ds.0.color.2','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363897','81672','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363898','81672','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363899','81672','4','ds.0.itemids.0','0','',NULL,NULL,'47894',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363900','81672','4','ds.0.itemids.1','0','',NULL,NULL,'47897',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363901','81672','4','ds.0.itemids.2','0','',NULL,NULL,'47906',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363902','81672','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363903','81672','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363904','81672','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363905','81672','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363906','81672','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363907','81672','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363908','81672','1','reference','0','RKARF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363909','81672','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363910','81673','0','draw_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363911','81673','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363912','81673','1','ds.0.color.1','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363913','81673','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363914','81673','4','ds.0.itemids.0','0','',NULL,NULL,'47901',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363915','81673','4','ds.0.itemids.1','0','',NULL,NULL,'47910',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363916','81673','0','ds.0.type.0','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363917','81673','0','ds.0.type.1','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363918','81673','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363919','81673','0','legend_value','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363920','81673','0','space','7','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363921','81673','0','width','40','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363922','81674','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363923','81674','1','ds.0.color.1','0','FF0080',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363924','81674','1','ds.0.color.2','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363925','81674','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363926','81674','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363927','81674','4','ds.0.itemids.0','0','',NULL,NULL,'47895',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363928','81674','4','ds.0.itemids.1','0','',NULL,NULL,'47898',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363929','81674','4','ds.0.itemids.2','0','',NULL,NULL,'47907',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363930','81674','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363931','81674','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363932','81674','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363933','81674','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363934','81674','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363935','81674','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363936','81674','1','reference','0','FCTEE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363937','81674','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363938','81675','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363939','81675','1','ds.0.color.1','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363940','81675','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363941','81675','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363942','81675','4','ds.0.itemids.0','0','',NULL,NULL,'47901',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363943','81675','4','ds.0.itemids.1','0','',NULL,NULL,'47910',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363944','81675','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363945','81675','0','ds.0.stacked','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363946','81675','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363947','81675','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363948','81675','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363949','81675','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363950','81675','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363951','81675','1','reference','0','GVMJB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363952','81675','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363953','81676','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363954','81676','1','ds.0.color.1','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363955','81676','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363956','81676','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363957','81676','4','ds.0.itemids.0','0','',NULL,NULL,'47915',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363958','81676','4','ds.0.itemids.1','0','',NULL,NULL,'47916',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363959','81676','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363960','81676','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363961','81676','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363962','81676','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363963','81676','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363964','81676','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363965','81676','1','reference','0','SCETD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363966','81676','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363967','81677','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363968','81677','1','description','0','Storage Tier: Das-sata free',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363969','81677','4','itemid.0','0','',NULL,NULL,'47915',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363970','81677','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363971','81677','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363972','81677','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363973','81677','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363974','81678','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363975','81678','1','ds.0.color.1','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363976','81678','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363977','81678','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363978','81678','4','ds.0.itemids.0','0','',NULL,NULL,'47918',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363979','81678','4','ds.0.itemids.1','0','',NULL,NULL,'47919',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363980','81678','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363981','81678','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363982','81678','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363983','81678','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363984','81678','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363985','81678','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363986','81678','1','reference','0','NEBOH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363987','81678','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363988','81679','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363989','81679','1','description','0','Storage Tier: SSD free',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363990','81679','4','itemid.0','0','',NULL,NULL,'47918',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363991','81679','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363992','81679','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363993','81679','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363994','81679','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363995','81680','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363996','81680','1','description','0','Storage Tier: Das-sata usage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363997','81680','4','itemid.0','0','',NULL,NULL,'47916',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363998','81680','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('363999','81680','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364000','81680','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364001','81680','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364002','81681','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364003','81681','1','description','0','Storage Tier: SSD usage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364004','81681','4','itemid.0','0','',NULL,NULL,'47919',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364005','81681','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364006','81681','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364007','81681','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364008','81681','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364009','81682','0','draw_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364010','81682','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364011','81682','1','ds.0.color.1','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364012','81682','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364013','81682','4','ds.0.itemids.0','0','',NULL,NULL,'47914',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364014','81682','4','ds.0.itemids.1','0','',NULL,NULL,'47916',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364015','81682','0','ds.0.type.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364016','81682','0','ds.0.type.1','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364017','81682','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364018','81682','0','legend_value','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364019','81682','0','space','7','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364020','81682','0','width','40','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364021','81683','0','draw_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364022','81683','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364023','81683','1','ds.0.color.1','0','0040FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364024','81683','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364025','81683','4','ds.0.itemids.0','0','',NULL,NULL,'47917',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364026','81683','4','ds.0.itemids.1','0','',NULL,NULL,'47919',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364027','81683','0','ds.0.type.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364028','81683','0','ds.0.type.1','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364029','81683','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364030','81683','0','legend_value','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364031','81683','0','space','7','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364032','81683','0','width','40','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364033','81684','1','bg_color','0','81D4FA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364034','81684','1','items.0','0','*Online',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364035','81684','1','primary_label','0',E'{{ITEM.NAME}.regsub("Disk.\\[(.*)\\]:\\sOnline", \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364036','81684','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364037','81684','1','reference','0','LSGAM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364038','81684','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364039','81684','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364040','81684','1','thresholds.1.color','0','47A76A',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364041','81684','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364042','81684','1','thresholds.2.color','0','D2D2D2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364043','81684','1','thresholds.2.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364044','81685','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364045','81685','7','graphid.0','0','',NULL,NULL,NULL,'2867',NULL,NULL,NULL,NULL,NULL,NULL), ('364046','81685','1','reference','0','MLSDN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364047','81686','5','itemid.0','0','',NULL,NULL,'47946',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364048','81686','1','reference','0','MLSDA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364049','81686','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364050','81687','1','bg_color','0','81D4FA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364051','81687','1','items.0','0','Disk*Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364052','81687','1','primary_label','0',E'{{ITEM.NAME}.regsub("Disk.\\[(.*)\\]:\\sStatus", \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364053','81687','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364054','81687','1','reference','0','LSGAL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364055','81687','1','thresholds.0.color','0','47A76A',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364056','81687','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364057','81687','1','thresholds.1.color','0','FFB300',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364058','81687','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364059','81687','1','thresholds.2.color','0','FFB300',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364060','81687','1','thresholds.2.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364061','81688','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364062','81688','7','graphid.0','0','',NULL,NULL,NULL,'2866',NULL,NULL,NULL,NULL,NULL,NULL), ('364063','81688','1','reference','0','MLSDX',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364064','81689','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364065','81689','5','itemid.0','0','',NULL,NULL,'47954',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364066','81689','1','reference','0','MLSDY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364067','81689','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364068','81690','7','graphid.0','0','',NULL,NULL,NULL,'2868',NULL,NULL,NULL,NULL,NULL,NULL), ('364069','81690','1','reference','0','MLSDW',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364070','81691','1','bg_color','0','81D4FA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364071','81691','1','items.0','0','*Replication factor',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364072','81691','1','primary_label','0',E'{{ITEM.NAME}.regsub("Container.\\[(.*)\\]:\\sReplication factor", \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364073','81691','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364074','81691','1','reference','0','LSGAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364075','81691','0','secondary_label_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364076','81691','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364077','81692','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364078','81692','7','graphid.0','0','',NULL,NULL,NULL,'2291',NULL,NULL,NULL,NULL,NULL,NULL), ('364079','81692','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364080','81693','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364081','81693','7','graphid.0','0','',NULL,NULL,NULL,'2293',NULL,NULL,NULL,NULL,NULL,NULL), ('364082','81693','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364083','81694','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364084','81694','7','graphid.0','0','',NULL,NULL,NULL,'2292',NULL,NULL,NULL,NULL,NULL,NULL), ('364085','81694','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364086','81695','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364087','81695','7','graphid.0','0','',NULL,NULL,NULL,'2294',NULL,NULL,NULL,NULL,NULL,NULL), ('364088','81695','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364089','81696','6','graphid.0','0','',NULL,NULL,NULL,'2409',NULL,NULL,NULL,NULL,NULL,NULL), ('364090','81696','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364091','81697','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364092','81697','7','graphid.0','0','',NULL,NULL,NULL,'2406',NULL,NULL,NULL,NULL,NULL,NULL), ('364093','81697','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364094','81698','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364095','81698','7','graphid.0','0','',NULL,NULL,NULL,'2408',NULL,NULL,NULL,NULL,NULL,NULL), ('364096','81698','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364097','81699','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364098','81699','7','graphid.0','0','',NULL,NULL,NULL,'2407',NULL,NULL,NULL,NULL,NULL,NULL), ('364099','81699','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364100','81700','6','graphid.0','0','',NULL,NULL,NULL,'2110',NULL,NULL,NULL,NULL,NULL,NULL), ('364101','81700','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364102','81701','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364103','81701','7','graphid.0','0','',NULL,NULL,NULL,'2102',NULL,NULL,NULL,NULL,NULL,NULL), ('364104','81701','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364105','81702','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364106','81702','7','graphid.0','0','',NULL,NULL,NULL,'2104',NULL,NULL,NULL,NULL,NULL,NULL), ('364107','81702','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364108','81703','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364109','81703','7','graphid.0','0','',NULL,NULL,NULL,'2103',NULL,NULL,NULL,NULL,NULL,NULL), ('364110','81703','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364111','81704','6','graphid.0','0','',NULL,NULL,NULL,'1262',NULL,NULL,NULL,NULL,NULL,NULL), ('364112','81704','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364113','81705','6','graphid.0','0','',NULL,NULL,NULL,'1263',NULL,NULL,NULL,NULL,NULL,NULL), ('364114','81705','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364115','81706','6','graphid.0','0','',NULL,NULL,NULL,'2912',NULL,NULL,NULL,NULL,NULL,NULL), ('364116','81706','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364117','81707','6','graphid.0','0','',NULL,NULL,NULL,'2913',NULL,NULL,NULL,NULL,NULL,NULL), ('364118','81707','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364119','81708','6','graphid.0','0','',NULL,NULL,NULL,'1264',NULL,NULL,NULL,NULL,NULL,NULL), ('364120','81708','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364121','81709','6','graphid.0','0','',NULL,NULL,NULL,'1265',NULL,NULL,NULL,NULL,NULL,NULL), ('364122','81709','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364123','81710','6','graphid.0','0','',NULL,NULL,NULL,'1029',NULL,NULL,NULL,NULL,NULL,NULL), ('364124','81710','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364125','81711','6','graphid.0','0','',NULL,NULL,NULL,'1030',NULL,NULL,NULL,NULL,NULL,NULL), ('364126','81711','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364127','81712','6','graphid.0','0','',NULL,NULL,NULL,'1031',NULL,NULL,NULL,NULL,NULL,NULL), ('364128','81712','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364129','81713','6','graphid.0','0','',NULL,NULL,NULL,'1027',NULL,NULL,NULL,NULL,NULL,NULL), ('364130','81713','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364131','81714','6','graphid.0','0','',NULL,NULL,NULL,'1028',NULL,NULL,NULL,NULL,NULL,NULL), ('364132','81714','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364133','81715','6','graphid.0','0','',NULL,NULL,NULL,'1011',NULL,NULL,NULL,NULL,NULL,NULL), ('364134','81715','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364135','81716','6','graphid.0','0','',NULL,NULL,NULL,'1008',NULL,NULL,NULL,NULL,NULL,NULL), ('364136','81716','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364137','81717','6','graphid.0','0','',NULL,NULL,NULL,'1007',NULL,NULL,NULL,NULL,NULL,NULL), ('364138','81717','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364139','81718','6','graphid.0','0','',NULL,NULL,NULL,'1012',NULL,NULL,NULL,NULL,NULL,NULL), ('364140','81718','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364141','81719','6','graphid.0','0','',NULL,NULL,NULL,'1009',NULL,NULL,NULL,NULL,NULL,NULL), ('364142','81719','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364143','81720','6','graphid.0','0','',NULL,NULL,NULL,'1010',NULL,NULL,NULL,NULL,NULL,NULL), ('364144','81720','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364145','81721','6','graphid.0','0','',NULL,NULL,NULL,'1018',NULL,NULL,NULL,NULL,NULL,NULL), ('364146','81721','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364147','81722','6','graphid.0','0','',NULL,NULL,NULL,'1019',NULL,NULL,NULL,NULL,NULL,NULL), ('364148','81722','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364149','81723','6','graphid.0','0','',NULL,NULL,NULL,'1020',NULL,NULL,NULL,NULL,NULL,NULL), ('364150','81723','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364151','81724','6','graphid.0','0','',NULL,NULL,NULL,'1016',NULL,NULL,NULL,NULL,NULL,NULL), ('364152','81724','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364153','81725','6','graphid.0','0','',NULL,NULL,NULL,'1017',NULL,NULL,NULL,NULL,NULL,NULL), ('364154','81725','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364155','81726','6','graphid.0','0','',NULL,NULL,NULL,'1025',NULL,NULL,NULL,NULL,NULL,NULL), ('364156','81726','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364157','81727','6','graphid.0','0','',NULL,NULL,NULL,'1022',NULL,NULL,NULL,NULL,NULL,NULL), ('364158','81727','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364159','81728','6','graphid.0','0','',NULL,NULL,NULL,'1021',NULL,NULL,NULL,NULL,NULL,NULL), ('364160','81728','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364161','81729','6','graphid.0','0','',NULL,NULL,NULL,'1026',NULL,NULL,NULL,NULL,NULL,NULL), ('364162','81729','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364163','81730','6','graphid.0','0','',NULL,NULL,NULL,'1023',NULL,NULL,NULL,NULL,NULL,NULL), ('364164','81730','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364165','81731','6','graphid.0','0','',NULL,NULL,NULL,'1024',NULL,NULL,NULL,NULL,NULL,NULL), ('364166','81731','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364167','81732','4','itemid.0','0','',NULL,NULL,'33632',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364168','81732','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364169','81732','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364170','81733','4','itemid.0','0','',NULL,NULL,'33633',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364171','81733','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364172','81733','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364173','81734','4','itemid.0','0','',NULL,NULL,'33631',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364174','81734','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364175','81734','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364176','81735','6','graphid.0','0','',NULL,NULL,NULL,'1361',NULL,NULL,NULL,NULL,NULL,NULL), ('364177','81735','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364178','81736','6','graphid.0','0','',NULL,NULL,NULL,'1358',NULL,NULL,NULL,NULL,NULL,NULL), ('364179','81736','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364180','81737','6','graphid.0','0','',NULL,NULL,NULL,'1363',NULL,NULL,NULL,NULL,NULL,NULL), ('364181','81737','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364182','81738','6','graphid.0','0','',NULL,NULL,NULL,'1359',NULL,NULL,NULL,NULL,NULL,NULL), ('364183','81738','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364184','81739','6','graphid.0','0','',NULL,NULL,NULL,'1362',NULL,NULL,NULL,NULL,NULL,NULL), ('364185','81739','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364186','81740','6','graphid.0','0','',NULL,NULL,NULL,'1357',NULL,NULL,NULL,NULL,NULL,NULL), ('364187','81740','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364188','81741','6','graphid.0','0','',NULL,NULL,NULL,'1356',NULL,NULL,NULL,NULL,NULL,NULL), ('364189','81741','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364190','81742','6','graphid.0','0','',NULL,NULL,NULL,'1360',NULL,NULL,NULL,NULL,NULL,NULL), ('364191','81742','1','reference','0','AAAAH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364192','81743','5','itemid.0','0','',NULL,NULL,'35266',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364193','81743','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364194','81743','0','rows','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364195','81743','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364196','81744','5','itemid.0','0','',NULL,NULL,'35271',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364197','81744','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364198','81744','0','rows','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364199','81744','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364200','81745','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364201','81745','7','graphid.0','0','',NULL,NULL,NULL,'1428',NULL,NULL,NULL,NULL,NULL,NULL), ('364202','81745','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364203','81745','0','rows','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364204','81746','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364205','81746','7','graphid.0','0','',NULL,NULL,NULL,'1429',NULL,NULL,NULL,NULL,NULL,NULL), ('364206','81746','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364207','81746','0','rows','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364208','81747','6','graphid.0','0','',NULL,NULL,NULL,'2320',NULL,NULL,NULL,NULL,NULL,NULL), ('364209','81747','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364210','81748','6','graphid.0','0','',NULL,NULL,NULL,'2319',NULL,NULL,NULL,NULL,NULL,NULL), ('364211','81748','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364212','81749','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364213','81749','7','graphid.0','0','',NULL,NULL,NULL,'2309',NULL,NULL,NULL,NULL,NULL,NULL), ('364214','81749','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364215','81750','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364216','81750','7','graphid.0','0','',NULL,NULL,NULL,'2310',NULL,NULL,NULL,NULL,NULL,NULL), ('364217','81750','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364218','81751','6','graphid.0','0','',NULL,NULL,NULL,'2318',NULL,NULL,NULL,NULL,NULL,NULL), ('364219','81751','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364220','81752','6','graphid.0','0','',NULL,NULL,NULL,'2321',NULL,NULL,NULL,NULL,NULL,NULL), ('364221','81752','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364222','81753','6','graphid.0','0','',NULL,NULL,NULL,'2322',NULL,NULL,NULL,NULL,NULL,NULL), ('364223','81753','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364224','81754','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364225','81754','7','graphid.0','0','',NULL,NULL,NULL,'2316',NULL,NULL,NULL,NULL,NULL,NULL), ('364226','81754','1','reference','0','AAAAH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364227','81755','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364228','81755','7','graphid.0','0','',NULL,NULL,NULL,'2482',NULL,NULL,NULL,NULL,NULL,NULL), ('364229','81755','1','reference','0','AAAAI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364230','81756','6','graphid.0','0','',NULL,NULL,NULL,'2317',NULL,NULL,NULL,NULL,NULL,NULL), ('364231','81756','1','reference','0','AAAAJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364232','81757','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364233','81757','7','graphid.0','0','',NULL,NULL,NULL,'2314',NULL,NULL,NULL,NULL,NULL,NULL), ('364234','81757','1','reference','0','AAAAK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364235','81758','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364236','81758','7','graphid.0','0','',NULL,NULL,NULL,'2313',NULL,NULL,NULL,NULL,NULL,NULL), ('364237','81758','1','reference','0','AAAAL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364238','81759','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364239','81759','7','graphid.0','0','',NULL,NULL,NULL,'2315',NULL,NULL,NULL,NULL,NULL,NULL), ('364240','81759','1','reference','0','AAAAM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364241','81760','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364242','81760','7','graphid.0','0','',NULL,NULL,NULL,'2312',NULL,NULL,NULL,NULL,NULL,NULL), ('364243','81760','1','reference','0','AAAAN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364244','81761','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364245','81761','7','graphid.0','0','',NULL,NULL,NULL,'3107',NULL,NULL,NULL,NULL,NULL,NULL), ('364246','81761','1','reference','0','AAAAO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364247','81762','1','items.0','0','Overall Health VC State',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364248','81762','1','primary_label','0','Overall status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364249','81762','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364250','81762','1','thresholds.0.color','0','80FF00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364251','81762','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364252','81762','1','thresholds.1.color','0','FFFF00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364253','81762','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364254','81762','1','thresholds.2.color','0','FFBF00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364255','81762','1','thresholds.2.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364256','81762','1','thresholds.3.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364257','81762','1','thresholds.3.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364258','81762','1','thresholds.4.color','0','D2D2D2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364259','81762','1','thresholds.4.threshold','0','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364260','81762','1','thresholds.5.color','0','D2D2D2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364261','81762','1','thresholds.5.threshold','0','5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364262','81762','1','thresholds.6.color','0','90A4AE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364263','81762','1','thresholds.6.threshold','0','6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364264','81763','1','bg_color','0','81D4FA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364265','81763','1','items.0','0','Total size of datastore*',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364266','81763','1','primary_label','0',E'{{ITEM.NAME}.regsub("datastore.\\[(.*)\\]", \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364267','81763','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364268','81763','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364269','81764','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364270','81764','4','itemid.0','0','',NULL,NULL,'31613',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364271','81764','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364272','81764','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364273','81764','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364274','81764','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364275','81765','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364276','81765','4','itemid.0','0','',NULL,NULL,'31614',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364277','81765','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364278','81765','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364279','81765','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364280','81765','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364281','81766','1','items.0','0','Free space on datastore*',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364282','81766','1','primary_label','0',E'{{ITEM.NAME}.regsub("datastore.\\[(.*)\\]", \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364283','81766','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364284','81766','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364285','81766','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364286','81766','1','thresholds.0.threshold','0','10',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364287','81766','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364288','81766','1','thresholds.1.threshold','0','20',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364289','81766','1','thresholds.2.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364290','81766','1','thresholds.2.threshold','0','30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364291','81767','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364292','81767','5','itemid.0','0','',NULL,NULL,'47536',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364293','81767','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364294','81767','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364295','81768','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364296','81768','5','itemid.0','0','',NULL,NULL,'31664',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364297','81768','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364298','81768','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364299','81769','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364300','81769','5','itemid.0','0','',NULL,NULL,'47537',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364301','81769','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364302','81769','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364303','81770','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364304','81770','5','itemid.0','0','',NULL,NULL,'31667',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364305','81770','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364306','81770','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364935','81851','1','items.0','0','Overall Health VC State',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364936','81851','1','primary_label','0','Overall status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364937','81851','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364938','81851','1','thresholds.0.color','0','80FF00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364939','81851','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364940','81851','1','thresholds.1.color','0','FFFF00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364941','81851','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364942','81851','1','thresholds.2.color','0','FFBF00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364943','81851','1','thresholds.2.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364944','81851','1','thresholds.3.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364945','81851','1','thresholds.3.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364946','81851','1','thresholds.4.color','0','D2D2D2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364947','81851','1','thresholds.4.threshold','0','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364948','81851','1','thresholds.5.color','0','D2D2D2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364949','81851','1','thresholds.5.threshold','0','5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364950','81851','1','thresholds.6.color','0','90A4AE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364951','81851','1','thresholds.6.threshold','0','6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364952','81852','1','bg_color','0','81D4FA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364953','81852','1','items.0','0','Total size of datastore*',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364954','81852','1','primary_label','0',E'{{ITEM.NAME}.regsub("datastore.\\[(.*)\\]", \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364955','81852','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364956','81852','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364957','81853','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364958','81853','4','itemid.0','0','',NULL,NULL,'32952',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364959','81853','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364960','81853','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364961','81853','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364962','81853','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364963','81854','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364964','81854','4','itemid.0','0','',NULL,NULL,'32953',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364965','81854','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364966','81854','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364967','81854','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364968','81854','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364969','81855','1','items.0','0','Free space on datastore*',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364970','81855','1','primary_label','0',E'{{ITEM.NAME}.regsub("datastore.\\[(.*)\\]", \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364971','81855','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364972','81855','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364973','81855','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364974','81855','1','thresholds.0.threshold','0','10',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364975','81855','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364976','81855','1','thresholds.1.threshold','0','20',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364977','81855','1','thresholds.2.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364978','81855','1','thresholds.2.threshold','0','30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364979','81856','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364980','81856','5','itemid.0','0','',NULL,NULL,'47548',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364981','81856','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364982','81856','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364983','81857','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364984','81857','5','itemid.0','0','',NULL,NULL,'32959',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364985','81857','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364986','81857','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364987','81858','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364988','81858','5','itemid.0','0','',NULL,NULL,'47549',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364989','81858','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364990','81858','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364991','81859','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364992','81859','5','itemid.0','0','',NULL,NULL,'32962',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364993','81859','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364994','81859','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364995','81860','1','description','0','CPU usage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364996','81860','0','desc_size','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364997','81860','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364998','81860','4','itemid.0','0','',NULL,NULL,'33643',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('364999','81860','0','scale_size','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365000','81860','1','thresholds.0.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365001','81860','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365002','81860','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365003','81860','1','thresholds.1.threshold','0','70',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365004','81860','1','thresholds.2.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365005','81860','1','thresholds.2.threshold','0','90',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365006','81860','0','th_show_arc','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365007','81860','0','th_show_labels','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365008','81860','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365009','81861','1','ds.0.color.0','0','4FC3F7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365010','81861','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365011','81861','0','ds.0.fill','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365012','81861','4','ds.0.itemids.0','0','',NULL,NULL,'33643',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365013','81861','0','ds.0.width','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365014','81861','1','ds.1.color.0','0','FFAB91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365015','81861','0','ds.1.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365016','81861','0','ds.1.fill','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365017','81861','4','ds.1.itemids.0','0','',NULL,NULL,'33639',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365018','81861','0','ds.1.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365019','81861','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365020','81861','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365021','81861','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365022','81861','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365023','81861','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365024','81861','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365025','81862','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365026','81862','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365027','81862','4','itemid.0','0','',NULL,NULL,'32900',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365028','81862','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365029','81862','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365030','81862','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365031','81863','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365032','81863','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365033','81863','4','itemid.0','0','',NULL,NULL,'32894',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365034','81863','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365035','81863','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365036','81863','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365037','81863','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365038','81863','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365039','81864','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365040','81864','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365041','81864','4','itemid.0','0','',NULL,NULL,'32896',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365042','81864','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365043','81864','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365044','81864','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365045','81864','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365046','81865','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365047','81865','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365048','81865','4','itemid.0','0','',NULL,NULL,'32893',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365049','81865','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365050','81865','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365051','81865','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365052','81865','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365053','81865','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365054','81866','1','description','0','Host memory usage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365055','81866','0','desc_size','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365056','81866','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365057','81866','4','itemid.0','0','',NULL,NULL,'33639',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365058','81866','0','scale_size','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365059','81866','1','thresholds.0.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365060','81866','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365061','81866','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365062','81866','1','thresholds.1.threshold','0','70',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365063','81866','1','thresholds.2.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365064','81866','1','thresholds.2.threshold','0','90',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365065','81866','0','th_show_arc','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365066','81866','0','th_show_labels','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365067','81866','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365068','81867','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365069','81867','4','itemid.0','0','',NULL,NULL,'47521',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365070','81867','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365071','81867','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365072','81867','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365073','81868','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365074','81868','4','itemid.0','0','',NULL,NULL,'32908',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365075','81868','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365076','81868','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365077','81868','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365078','81869','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365079','81869','4','itemid.0','0','',NULL,NULL,'47519',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365080','81869','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365081','81869','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365082','81869','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365083','81869','1','thresholds.0.color','0','FFBF00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365084','81869','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365085','81869','1','thresholds.1.color','0','FFBF00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365086','81869','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365087','81869','1','thresholds.2.color','0','32CD32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365088','81869','1','thresholds.2.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365089','81869','1','thresholds.3.color','0','FFECB3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365090','81869','1','thresholds.3.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365091','81869','1','thresholds.4.color','0','FFECB3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365092','81869','1','thresholds.4.threshold','0','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365093','81869','1','thresholds.5.color','0','D2D2D2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365094','81869','1','thresholds.5.threshold','0','5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365095','81869','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365096','81869','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365097','81870','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365098','81870','4','itemid.0','0','',NULL,NULL,'47520',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365099','81870','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365100','81870','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365101','81870','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365102','81870','1','thresholds.0.color','0','FFBF00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365103','81870','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365104','81870','1','thresholds.1.color','0','FFBF00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365105','81870','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365106','81870','1','thresholds.2.color','0','32CD32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365107','81870','1','thresholds.2.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365108','81870','1','thresholds.3.color','0','D2D2D2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365109','81870','1','thresholds.3.threshold','0','10',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365110','81870','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365111','81870','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365112','81871','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365113','81871','4','itemid.0','0','',NULL,NULL,'32890',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365114','81871','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365115','81871','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365116','81871','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365117','81872','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365118','81872','4','itemid.0','0','',NULL,NULL,'32905',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365119','81872','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365120','81872','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365121','81872','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365122','81873','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365123','81873','4','itemid.0','0','',NULL,NULL,'32904',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365124','81873','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365125','81873','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365126','81873','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365127','81874','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365128','81874','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365129','81874','4','itemid.0','0','',NULL,NULL,'47531',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365130','81874','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365131','81874','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365132','81874','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365133','81874','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365134','81875','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365135','81875','4','itemid.0','0','',NULL,NULL,'47532',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365136','81875','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365137','81875','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365138','81875','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365139','81875','0','value_size','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365140','81876','1','ds.0.color.0','0','0288D1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365141','81876','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365142','81876','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365143','81876','4','ds.0.itemids.0','0','',NULL,NULL,'33643',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365144','81876','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365145','81876','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365146','81876','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365147','81876','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365148','81876','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365149','81877','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365150','81877','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365151','81877','4','ds.0.itemids.0','0','',NULL,NULL,'33640',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365152','81877','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365153','81877','1','ds.1.color.0','0','CE93D8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365154','81877','0','ds.1.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365155','81877','4','ds.1.itemids.0','0','',NULL,NULL,'33645',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365156','81877','0','ds.1.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365157','81877','1','ds.2.color.0','0','FF4000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365158','81877','0','ds.2.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365159','81877','4','ds.2.itemids.0','0','',NULL,NULL,'33644',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365160','81877','0','ds.2.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365161','81877','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365162','81877','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365163','81877','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365164','81877','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365165','81878','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365166','81878','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365167','81878','4','itemid.0','0','',NULL,NULL,'32900',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365168','81878','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365169','81878','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365170','81878','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365171','81879','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365172','81879','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365173','81879','4','itemid.0','0','',NULL,NULL,'32906',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365174','81879','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365175','81879','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365176','81879','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365177','81879','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365178','81879','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365179','81880','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365180','81880','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365181','81880','4','itemid.0','0','',NULL,NULL,'32907',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365182','81880','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365183','81880','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365184','81880','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365185','81880','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365186','81880','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365187','81881','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365188','81881','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365189','81881','4','itemid.0','0','',NULL,NULL,'33640',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365190','81881','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365191','81881','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365192','81881','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365193','81881','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365194','81881','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365195','81882','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365196','81882','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365197','81882','4','itemid.0','0','',NULL,NULL,'33645',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365198','81882','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365199','81882','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365200','81882','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365201','81882','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365202','81882','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365203','81883','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365204','81883','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365205','81883','4','itemid.0','0','',NULL,NULL,'33644',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365206','81883','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365207','81883','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365208','81883','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365209','81883','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365210','81883','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365211','81884','1','ds.0.color.0','0','EF9A9A',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365212','81884','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365213','81884','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365214','81884','4','ds.0.itemids.0','0','',NULL,NULL,'33639',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365215','81884','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365216','81884','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365217','81884','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365218','81884','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365219','81884','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365220','81885','1','ds.0.color.0','0','F06292',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365221','81885','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365222','81885','4','ds.0.itemids.0','0','',NULL,NULL,'32898',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365223','81885','0','ds.0.transparency','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365224','81885','1','ds.1.color.0','0','BF00FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365225','81885','0','ds.1.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365226','81885','4','ds.1.itemids.0','0','',NULL,NULL,'33638',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365227','81885','0','ds.1.transparency','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365228','81885','1','ds.2.color.0','0','90CAF9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365229','81885','0','ds.2.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365230','81885','4','ds.2.itemids.0','0','',NULL,NULL,'32897',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365231','81885','0','ds.2.transparency','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365232','81885','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365233','81885','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365234','81885','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365235','81885','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365236','81886','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365237','81886','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365238','81886','4','itemid.0','0','',NULL,NULL,'33642',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365239','81886','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365240','81886','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365241','81886','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365242','81886','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365243','81886','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365244','81887','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365245','81887','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365246','81887','4','itemid.0','0','',NULL,NULL,'32891',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365247','81887','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365248','81887','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365249','81887','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365250','81887','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365251','81887','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365252','81888','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365253','81888','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365254','81888','4','itemid.0','0','',NULL,NULL,'32901',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365255','81888','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365256','81888','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365257','81888','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365258','81888','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365259','81888','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365260','81889','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365261','81889','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365262','81889','4','itemid.0','0','',NULL,NULL,'32899',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365263','81889','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365264','81889','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365265','81889','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365266','81889','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365267','81889','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365268','81890','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365269','81890','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365270','81890','4','itemid.0','0','',NULL,NULL,'32903',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365271','81890','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365272','81890','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365273','81890','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365274','81890','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365275','81890','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365276','81891','0','decimal_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365277','81891','0','desc_size','7','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365278','81891','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365279','81891','4','itemid.0','0','',NULL,NULL,'32896',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365280','81891','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365281','81891','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365282','81891','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365283','81891','0','units_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365284','81891','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365285','81891','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365286','81892','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365287','81892','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365288','81892','4','itemid.0','0','',NULL,NULL,'32898',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365289','81892','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365290','81892','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365291','81892','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365292','81892','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365293','81892','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365294','81893','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365295','81893','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365296','81893','4','itemid.0','0','',NULL,NULL,'33638',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365297','81893','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365298','81893','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365299','81893','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365300','81893','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365301','81893','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365302','81894','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365303','81894','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365304','81894','4','itemid.0','0','',NULL,NULL,'32897',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365305','81894','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365306','81894','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365307','81894','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365308','81894','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365309','81894','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365310','81895','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365311','81895','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365312','81895','4','itemid.0','0','',NULL,NULL,'32902',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365313','81895','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365314','81895','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365315','81895','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365316','81895','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365317','81895','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365318','81896','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365319','81896','5','itemid.0','0','',NULL,NULL,'32939',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365320','81896','1','reference','0','AAAAH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365321','81896','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365322','81897','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365323','81897','5','itemid.0','0','',NULL,NULL,'33652',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365324','81897','1','reference','0','AAAAJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365325','81897','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365326','81898','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365327','81898','5','itemid.0','0','',NULL,NULL,'32941',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365328','81898','1','reference','0','AAAAK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365329','81898','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365330','81899','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365331','81899','5','itemid.0','0','',NULL,NULL,'33653',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365332','81899','1','reference','0','AAAAL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365333','81899','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365334','81900','1','bg_color','0','81D4FA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365335','81900','1','items.0','0','Total disk space on*',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365336','81900','1','primary_label','0',E'{{ITEM.NAME}.regsub("space on.\\[(.*)\\]", \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365337','81900','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365338','81900','1','reference','0','AAAAM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365339','81901','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365340','81901','5','itemid.0','0','',NULL,NULL,'32943',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365341','81901','1','reference','0','AAAAN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365342','81901','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365343','81902','1','items.0','0','Free disk space on*(percentage)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365344','81902','1','primary_label','0',E'{{ITEM.NAME}.regsub("space on.\\[(.*)\\]", \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365345','81902','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365346','81902','1','reference','0','AAAAO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365347','81902','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365348','81902','1','thresholds.0.threshold','0','10',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365349','81902','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365350','81902','1','thresholds.1.threshold','0','20',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365351','81902','1','thresholds.2.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365352','81902','1','thresholds.2.threshold','0','30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365353','81903','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365354','81903','5','itemid.0','0','',NULL,NULL,'32944',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365355','81903','1','reference','0','AAAAP',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365356','81903','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365357','81904','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365358','81904','5','itemid.0','0','',NULL,NULL,'33650',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365359','81904','1','reference','0','AAAAQ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365360','81904','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365361','81905','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365362','81905','5','itemid.0','0','',NULL,NULL,'32935',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365363','81905','1','reference','0','AAAAR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365364','81905','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365365','81906','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365366','81906','5','itemid.0','0','',NULL,NULL,'32936',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365367','81906','1','reference','0','AAAAS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365368','81906','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365369','81907','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365370','81907','5','itemid.0','0','',NULL,NULL,'32937',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365371','81907','1','reference','0','AAAAT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365372','81907','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365373','81908','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365374','81908','5','itemid.0','0','',NULL,NULL,'32938',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365375','81908','1','reference','0','AAAAU',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365376','81908','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365377','81909','1','description','0','CPU utilization',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365378','81909','0','desc_size','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365379','81909','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365380','81909','4','itemid.0','0','',NULL,NULL,'33648',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365381','81909','0','scale_size','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365382','81909','1','thresholds.0.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365383','81909','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365384','81909','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365385','81909','1','thresholds.1.threshold','0','70',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365386','81909','1','thresholds.2.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365387','81909','1','thresholds.2.threshold','0','90',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365388','81909','0','th_show_arc','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365389','81909','0','th_show_labels','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365390','81909','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365391','81910','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365392','81910','4','itemid.0','0','',NULL,NULL,'32920',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365393','81910','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365394','81910','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365395','81910','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365396','81910','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365397','81911','1','ds.0.color.0','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365398','81911','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365399','81911','0','ds.0.fill','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365400','81911','4','ds.0.itemids.0','0','',NULL,NULL,'32917',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365401','81911','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365402','81911','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365403','81911','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365404','81912','0','desc_size','7','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365405','81912','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365406','81912','4','itemid.0','0','',NULL,NULL,'32909',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365407','81912','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365408','81912','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365409','81912','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365410','81912','1','thresholds.0.color','0','F44336',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365411','81912','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365412','81912','1','thresholds.1.color','0','32CD32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365413','81912','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365414','81912','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365415','81912','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365416','81913','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365417','81913','4','itemid.0','0','',NULL,NULL,'32928',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365418','81913','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365419','81913','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365420','81913','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365421','81913','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365422','81914','0','desc_size','7','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365423','81914','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365424','81914','4','itemid.0','0','',NULL,NULL,'32913',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365425','81914','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365426','81914','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365427','81914','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365428','81914','1','thresholds.0.color','0','D2D2D2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365429','81914','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365430','81914','1','thresholds.1.color','0','32CD32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365431','81914','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365432','81914','1','thresholds.2.color','0','FFF176',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365433','81914','1','thresholds.2.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365434','81914','1','thresholds.3.color','0','F44336',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365435','81914','1','thresholds.3.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365436','81914','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365437','81914','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365438','81915','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365439','81915','4','itemid.0','0','',NULL,NULL,'32927',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365440','81915','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365441','81915','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365442','81915','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365443','81915','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365444','81916','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365445','81916','4','itemid.0','0','',NULL,NULL,'47522',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365446','81916','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365447','81916','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365448','81916','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365449','81916','1','thresholds.0.color','0','32CD32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365450','81916','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365451','81916','1','thresholds.1.color','0','F44336',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365452','81916','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365453','81916','1','thresholds.2.color','0','FFDAB9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365454','81916','1','thresholds.2.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365455','81916','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365456','81916','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365457','81917','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365458','81917','4','itemid.0','0','',NULL,NULL,'32912',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365459','81917','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365460','81917','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365461','81917','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365462','81918','0','desc_size','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365463','81918','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365464','81918','4','itemid.0','0','',NULL,NULL,'32922',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365465','81918','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365466','81918','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365467','81918','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365468','81918','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365469','81918','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365470','81919','0','desc_size','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365471','81919','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365472','81919','4','itemid.0','0','',NULL,NULL,'32917',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365473','81919','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365474','81919','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365475','81919','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365476','81919','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365477','81919','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365478','81919','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365479','81920','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365480','81920','4','itemid.0','0','',NULL,NULL,'32911',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365481','81920','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365482','81920','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365483','81920','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365484','81920','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365485','81920','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365486','81921','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365487','81921','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365488','81921','4','itemid.0','0','',NULL,NULL,'32930',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365489','81921','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365490','81921','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365491','81921','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365492','81921','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365493','81922','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365494','81922','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365495','81922','4','itemid.0','0','',NULL,NULL,'32924',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365496','81922','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365497','81922','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365498','81922','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365499','81922','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365500','81923','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365501','81923','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365502','81923','0','ds.0.fill','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365503','81923','4','ds.0.itemids.0','0','',NULL,NULL,'33648',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365504','81923','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365505','81923','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365506','81923','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365507','81924','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365508','81924','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365509','81924','0','ds.0.fill','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365510','81924','4','ds.0.itemids.0','0','',NULL,NULL,'32929',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365511','81924','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365512','81924','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365513','81924','1','reference','0','AAAAI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365514','81925','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365515','81925','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365516','81925','4','itemid.0','0','',NULL,NULL,'32923',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365517','81925','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365518','81925','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365519','81925','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365520','81925','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365521','81926','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365522','81926','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365523','81926','4','itemid.0','0','',NULL,NULL,'32926',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365524','81926','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365525','81926','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365526','81926','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365527','81926','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365528','81926','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365529','81927','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365530','81927','4','itemid.0','0','',NULL,NULL,'32925',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365531','81927','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365532','81927','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365533','81927','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365534','81927','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365535','81927','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365536','81928','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365537','81928','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365538','81928','0','ds.0.fill','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365539','81928','4','ds.0.itemids.0','0','',NULL,NULL,'47523',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365540','81928','1','ds.1.color.0','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365541','81928','0','ds.1.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365542','81928','0','ds.1.fill','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365543','81928','4','ds.1.itemids.0','0','',NULL,NULL,'47526',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365544','81928','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365545','81928','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365546','81928','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365547','81928','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365548','81929','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365549','81929','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365550','81929','0','ds.0.fill','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365551','81929','4','ds.0.itemids.0','0','',NULL,NULL,'32916',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365552','81929','1','ds.1.color.0','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365553','81929','0','ds.1.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365554','81929','0','ds.1.fill','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365555','81929','4','ds.1.itemids.0','0','',NULL,NULL,'32915',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365556','81929','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365557','81929','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365558','81929','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365559','81929','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365560','81930','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365561','81930','5','itemid.0','0','',NULL,NULL,'47540',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365562','81930','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365563','81930','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365564','81931','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365565','81931','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365566','81931','0','ds.0.fill','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365567','81931','4','ds.0.itemids.0','0','',NULL,NULL,'47524',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365568','81931','1','ds.1.color.0','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365569','81931','0','ds.1.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365570','81931','0','ds.1.fill','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365571','81931','4','ds.1.itemids.0','0','',NULL,NULL,'47527',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365572','81931','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365573','81931','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365574','81931','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365575','81931','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365576','81932','1','ds.0.color.0','0','00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365577','81932','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365578','81932','0','ds.0.fill','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365579','81932','4','ds.0.itemids.0','0','',NULL,NULL,'47525',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365580','81932','1','ds.1.color.0','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365581','81932','0','ds.1.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365582','81932','0','ds.1.fill','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365583','81932','4','ds.1.itemids.0','0','',NULL,NULL,'47528',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365584','81932','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365585','81932','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365586','81932','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365587','81932','1','reference','0','AAAAH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365588','81933','1','bg_color','0','81D4FA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365589','81933','1','items.0','0','Total size of datastore*',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365590','81933','1','primary_label','0',E'{{ITEM.NAME}.regsub("datastore.\\[(.*)\\]", \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365591','81933','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365592','81933','1','reference','0','AAAAJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365593','81934','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365594','81934','5','itemid.0','0','',NULL,NULL,'47538',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365595','81934','1','reference','0','AAAAK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365596','81934','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365597','81935','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365598','81935','5','itemid.0','0','',NULL,NULL,'32947',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365599','81935','1','reference','0','AAAAP',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365600','81935','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365601','81936','1','items.0','0','Free space on datastore*',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365602','81936','1','primary_label','0',E'{{ITEM.NAME}.regsub("datastore.\\[(.*)\\]", \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365603','81936','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365604','81936','1','reference','0','AAAAL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365605','81936','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365606','81936','1','thresholds.0.threshold','0','10',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365607','81936','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365608','81936','1','thresholds.1.threshold','0','20',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365609','81936','1','thresholds.2.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365610','81936','1','thresholds.2.threshold','0','30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365611','81937','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365612','81937','5','itemid.0','0','',NULL,NULL,'47539',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365613','81937','1','reference','0','AAAAM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365614','81937','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365615','81938','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365616','81938','5','itemid.0','0','',NULL,NULL,'32950',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365617','81938','1','reference','0','AAAAN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365618','81938','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365619','81939','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365620','81939','5','itemid.0','0','',NULL,NULL,'32948',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365621','81939','1','reference','0','AAAAO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365622','81939','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365623','81940','4','columns.0.itemid','0','',NULL,NULL,'47157',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365624','81940','1','columns.0.name','0','Screenshot',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365625','81940','0','columns.0.show_thumbnail','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365626','81940','0','layout','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365627','81940','1','reference','0','MBTYI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365628','81940','0','show_timestamp','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365629','81941','0','ds.0.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365630','81941','1','ds.0.items.0','0','Website {$WEBSITE.DOMAIN} Navigation load event time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365631','81941','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365632','81941','0','ds.1.axisy','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365633','81941','1','ds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365634','81941','0','ds.1.fill','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365635','81941','1','ds.1.items.0','0','Website {$WEBSITE.DOMAIN} Resource load event time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365636','81941','0','ds.1.missingdatafunc','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365637','81941','0','ds.1.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365638','81941','1','reference','0','OVVDR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365639','81941','0','severities.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365640','81941','0','severities.1','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365641','81941','0','severities.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365642','81941','0','severities.3','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365643','81941','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365644','81942','1','ds.0.color','0','FF7043',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365645','81942','1','ds.0.items.0','0','Website {$WEBSITE.DOMAIN} Navigation resource fetch time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365646','81942','1','ds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365647','81942','1','ds.1.items.0','0','Website {$WEBSITE.DOMAIN} Navigation DNS lookup time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365648','81942','1','ds.2.color','0','546E7A',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365649','81942','1','ds.2.items.0','0','Website {$WEBSITE.DOMAIN} Navigation TCP handshake time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365650','81942','1','ds.3.items.0','0','Website {$WEBSITE.DOMAIN} Navigation TLS negotiation time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365651','81942','1','ds.4.color','0','3949AB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365652','81942','1','ds.4.items.0','0','Website {$WEBSITE.DOMAIN} Navigation request time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365653','81942','1','ds.5.color','0','388E3C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365654','81942','1','ds.5.items.0','0','Website {$WEBSITE.DOMAIN} Navigation response time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365655','81942','1','reference','0','FBLXC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365656','81943','1','ds.0.color','0','666699',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365657','81943','1','ds.0.items.0','0','Website {$WEBSITE.DOMAIN} Navigation decodedBody size',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365658','81943','0','ds.0.type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365659','81943','1','ds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365660','81943','1','ds.1.items.0','0','Website {$WEBSITE.DOMAIN} Navigation encodedBody size',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365661','81943','0','ds.1.type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365662','81943','1','ds.2.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365663','81943','1','ds.2.items.0','0','Website {$WEBSITE.DOMAIN} Navigation transfer size',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365664','81943','0','ds.2.type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365665','81943','1','reference','0','PXXYQ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365666','81943','0','severities.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365667','81943','0','severities.1','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365668','81943','0','severities.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365669','81943','0','severities.3','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365670','81943','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365671','81944','1','ds.0.color','0','FF8000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365672','81944','1','ds.0.items.0','0','Website {$WEBSITE.DOMAIN} Resource resource fetch time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365673','81944','1','ds.1.items.0','0','Website {$WEBSITE.DOMAIN} Resource DNS lookup time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365674','81944','1','ds.2.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365675','81944','1','ds.2.items.0','0','Website {$WEBSITE.DOMAIN} Resource TCP handshake time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365676','81944','1','ds.3.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365677','81944','1','ds.3.items.0','0','Website {$WEBSITE.DOMAIN} Resource TLS negotiation time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365678','81944','1','ds.4.color','0','524BBC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365679','81944','1','ds.4.items.0','0','Website {$WEBSITE.DOMAIN} Resource request time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365680','81944','1','ds.5.color','0','ED1248',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365681','81944','1','ds.5.items.0','0','Website {$WEBSITE.DOMAIN} Resource response time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365682','81944','1','reference','0','ZLUHM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365683','81945','4','itemid.0','0','',NULL,NULL,'44654',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365684','81945','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365685','81945','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365686','81946','4','itemid.0','0','',NULL,NULL,'44655',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365687','81946','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365688','81946','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365689','81947','4','itemid.0','0','',NULL,NULL,'44654',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365690','81947','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365691','81947','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365692','81948','4','itemid.0','0','',NULL,NULL,'44658',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365693','81948','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365694','81948','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365695','81949','4','itemid.0','0','',NULL,NULL,'44659',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365696','81949','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365697','81949','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365698','81950','4','itemid.0','0','',NULL,NULL,'44658',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365699','81950','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365700','81950','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365701','81951','1','ds.0.color.0','0','33a02c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365702','81951','1','ds.0.color.1','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365703','81951','1','ds.0.color.2','0','ff7f00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365704','81951','1','ds.0.color.3','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365705','81951','1','ds.0.color.4','0','a6cee3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365706','81951','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365707','81951','4','ds.0.itemids.0','0','',NULL,NULL,'28599',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365708','81951','4','ds.0.itemids.1','0','',NULL,NULL,'28596',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365709','81951','4','ds.0.itemids.2','0','',NULL,NULL,'28597',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365710','81951','4','ds.0.itemids.3','0','',NULL,NULL,'28598',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365711','81951','4','ds.0.itemids.4','0','',NULL,NULL,'46311',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365712','81951','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365713','81951','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365714','81951','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365715','81951','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365716','81951','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365717','81951','1','reference','0','AAACA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365718','81951','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365719','81952','1','ds.0.color.0','0','33a02c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365720','81952','1','ds.0.color.1','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365721','81952','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365722','81952','4','ds.0.itemids.0','0','',NULL,NULL,'28595',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365723','81952','4','ds.0.itemids.1','0','',NULL,NULL,'28586',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365724','81952','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365725','81952','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365726','81952','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365727','81952','1','reference','0','AAACC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365728','81952','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365729','81953','1','ds.0.color.0','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365730','81953','1','ds.0.color.1','0','33a02c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365731','81953','1','ds.0.color.2','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365732','81953','1','ds.0.color.3','0','ff7f00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365733','81953','1','ds.0.color.4','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365734','81953','1','ds.0.color.5','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365735','81953','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365736','81953','4','ds.0.itemids.0','0','',NULL,NULL,'28589',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365737','81953','4','ds.0.itemids.1','0','',NULL,NULL,'28594',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365738','81953','4','ds.0.itemids.2','0','',NULL,NULL,'28592',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365739','81953','4','ds.0.itemids.3','0','',NULL,NULL,'28591',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365740','81953','4','ds.0.itemids.4','0','',NULL,NULL,'28593',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365741','81953','4','ds.0.itemids.5','0','',NULL,NULL,'28590',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365742','81953','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365743','81953','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365744','81953','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365745','81953','1','reference','0','AAACD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365746','81953','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365747','81954','1','ds.0.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365748','81954','1','ds.0.color.1','0','ffdf00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365749','81954','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365750','81954','4','ds.0.itemids.0','0','',NULL,NULL,'50180',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365751','81954','4','ds.0.itemids.1','0','',NULL,NULL,'50179',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365752','81954','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365753','81954','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365754','81954','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365755','81954','1','reference','0','AAABV',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365756','81955','1','ds.0.color.0','0','ffff99',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365757','81955','1','ds.0.color.1','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365758','81955','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365759','81955','4','ds.0.itemids.0','0','',NULL,NULL,'40187',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365760','81955','4','ds.0.itemids.1','0','',NULL,NULL,'45491',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365761','81955','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365762','81955','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365763','81955','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365764','81955','1','reference','0','AAACB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365765','81955','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365766','81956','1','ds.0.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365767','81956','1','ds.0.color.1','0','ffdf00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365768','81956','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365769','81956','4','ds.0.itemids.0','0','',NULL,NULL,'50182',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365770','81956','4','ds.0.itemids.1','0','',NULL,NULL,'50181',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365771','81956','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365772','81956','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365773','81956','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365774','81956','1','reference','0','AAABW',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365775','81957','1','ds.0.color.0','0','7e57c2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365776','81957','1','ds.0.color.1','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365777','81957','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365778','81957','4','ds.0.itemids.0','0','',NULL,NULL,'45492',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365779','81957','4','ds.0.itemids.1','0','',NULL,NULL,'45493',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365780','81957','0','ds.1.axisy','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365781','81957','1','ds.1.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365782','81957','0','ds.1.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365783','81957','4','ds.1.itemids.0','0','',NULL,NULL,'45491',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365784','81957','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365785','81957','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365786','81957','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365787','81957','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365788','81957','1','reference','0','AAABH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365789','81957','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365790','81958','1','ds.0.color.0','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365791','81958','1','ds.0.color.1','0','ff7f00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365792','81958','1','ds.0.color.2','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365793','81958','1','ds.0.color.3','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365794','81958','1','ds.0.color.4','0','17becf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365795','81958','1','ds.0.color.5','0','a6cee3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365796','81958','1','ds.0.color.6','0','fb9a99',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365797','81958','1','ds.0.color.7','0','bcbd22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365798','81958','1','ds.0.color.8','0','fdbf6f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365799','81958','1','ds.0.color.9','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365800','81958','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365801','81958','4','ds.0.itemids.0','0','',NULL,NULL,'28606',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365802','81958','4','ds.0.itemids.1','0','',NULL,NULL,'47202',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365803','81958','4','ds.0.itemids.2','0','',NULL,NULL,'28608',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365804','81958','4','ds.0.itemids.3','0','',NULL,NULL,'28609',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365805','81958','4','ds.0.itemids.4','0','',NULL,NULL,'28611',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365806','81958','4','ds.0.itemids.5','0','',NULL,NULL,'28607',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365807','81958','4','ds.0.itemids.6','0','',NULL,NULL,'28588',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365808','81958','4','ds.0.itemids.7','0','',NULL,NULL,'47201',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365809','81958','4','ds.0.itemids.8','0','',NULL,NULL,'39825',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365810','81958','4','ds.0.itemids.9','0','',NULL,NULL,'28610',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365811','81958','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365812','81958','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365813','81958','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365814','81958','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365815','81958','1','reference','0','AAABJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365816','81958','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365817','81959','1','ds.0.color.0','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365818','81959','1','ds.0.color.1','0','bcbd22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365819','81959','1','ds.0.color.2','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365820','81959','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365821','81959','4','ds.0.itemids.0','0','',NULL,NULL,'45513',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365822','81959','4','ds.0.itemids.1','0','',NULL,NULL,'45514',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365823','81959','4','ds.0.itemids.2','0','',NULL,NULL,'46046',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365824','81959','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365825','81959','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365826','81959','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365827','81959','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365828','81959','1','reference','0','AAABK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365829','81959','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365830','81960','1','ds.0.color.0','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365831','81960','1','ds.0.color.1','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365832','81960','1','ds.0.color.2','0','ff7f00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365833','81960','1','ds.0.color.3','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365834','81960','1','ds.0.color.4','0','a6cee3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365835','81960','1','ds.0.color.5','0','fdbf6f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365836','81960','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365837','81960','4','ds.0.itemids.0','0','',NULL,NULL,'28600',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365838','81960','4','ds.0.itemids.1','0','',NULL,NULL,'28613',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365839','81960','4','ds.0.itemids.2','0','',NULL,NULL,'28605',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365840','81960','4','ds.0.itemids.3','0','',NULL,NULL,'28603',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365841','81960','4','ds.0.itemids.4','0','',NULL,NULL,'28601',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365842','81960','4','ds.0.itemids.5','0','',NULL,NULL,'28612',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365843','81960','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365844','81960','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365845','81960','0','legend_lines','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365846','81960','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365847','81960','1','reference','0','AAABL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365848','81960','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365849','81961','1','ds.0.color.0','0','cab2d6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365850','81961','1','ds.0.color.1','0','fdbf6f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365851','81961','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365852','81961','4','ds.0.itemids.0','0','',NULL,NULL,'28602',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365853','81961','4','ds.0.itemids.1','0','',NULL,NULL,'28604',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365854','81961','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365855','81961','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365856','81961','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365857','81961','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365858','81961','1','reference','0','AAABM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365859','81961','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365860','81962','1','ds.0.color.0','0','cab2d6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365861','81962','1','ds.0.color.1','0','000080',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365862','81962','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365863','81962','4','ds.0.itemids.0','0','',NULL,NULL,'28602',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365864','81962','4','ds.0.itemids.1','0','',NULL,NULL,'28601',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365865','81962','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365866','81962','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365867','81962','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365868','81962','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365869','81962','1','reference','0','AAABO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365870','81962','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365871','81963','1','ds.0.color.0','0','fdbf6f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365872','81963','1','ds.0.color.1','0','7e57c2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365873','81963','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365874','81963','4','ds.0.itemids.0','0','',NULL,NULL,'40188',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365875','81963','4','ds.0.itemids.1','0','',NULL,NULL,'40189',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365876','81963','0','ds.1.axisy','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365877','81963','1','ds.1.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365878','81963','0','ds.1.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365879','81963','0','ds.1.fill','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365880','81963','4','ds.1.itemids.0','0','',NULL,NULL,'40187',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365881','81963','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365882','81963','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365883','81963','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365884','81963','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365885','81963','1','reference','0','AAABI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365886','81963','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365887','81964','1','ds.0.color.0','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365888','81964','1','ds.0.color.1','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365889','81964','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365890','81964','4','ds.0.itemids.0','0','',NULL,NULL,'28616',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365891','81964','4','ds.0.itemids.1','0','',NULL,NULL,'33012',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365892','81964','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365893','81964','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365894','81964','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365895','81964','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365896','81964','1','reference','0','AAABN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365897','81964','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365898','81965','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365899','81965','4','itemid.0','0','',NULL,NULL,'31052',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365900','81965','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365901','81965','0','show.1','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365902','81965','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365903','81965','0','time_h_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365904','81965','0','time_size','9','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365905','81965','0','time_v_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365906','81965','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365907','81966','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365908','81966','4','itemid.0','0','',NULL,NULL,'40186',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365909','81966','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365910','81966','0','show.1','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365911','81966','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365912','81966','0','time_h_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365913','81966','0','time_size','9','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365914','81966','0','time_v_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365915','81966','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365916','81967','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365917','81967','4','itemid.0','0','',NULL,NULL,'46313',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365918','81967','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365919','81967','0','show.1','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365920','81967','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365921','81967','0','time_h_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365922','81967','0','time_size','9','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365923','81967','0','time_v_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365924','81967','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365925','81968','1','ds.0.color.0','0','33a02c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365926','81968','1','ds.0.color.1','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365927','81968','1','ds.0.color.2','0','ff7f00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365928','81968','1','ds.0.color.3','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365929','81968','1','ds.0.color.4','0','a6cee3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365930','81968','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365931','81968','4','ds.0.itemids.0','0','',NULL,NULL,'23357',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365932','81968','4','ds.0.itemids.1','0','',NULL,NULL,'23341',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365933','81968','4','ds.0.itemids.2','0','',NULL,NULL,'23342',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365934','81968','4','ds.0.itemids.3','0','',NULL,NULL,'28251',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365935','81968','4','ds.0.itemids.4','0','',NULL,NULL,'46308',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365936','81968','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365937','81968','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365938','81968','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365939','81968','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365940','81968','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365941','81968','1','reference','0','AAACA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365942','81968','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365943','81969','1','ds.0.color.0','0','33a02c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365944','81969','1','ds.0.color.1','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365945','81969','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365946','81969','4','ds.0.itemids.0','0','',NULL,NULL,'23340',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365947','81969','4','ds.0.itemids.1','0','',NULL,NULL,'23358',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365948','81969','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365949','81969','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365950','81969','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365951','81969','1','reference','0','AAACC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365952','81969','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365953','81970','1','ds.0.color.0','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365954','81970','1','ds.0.color.1','0','33a02c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365955','81970','1','ds.0.color.2','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365956','81970','1','ds.0.color.3','0','ff7f00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365957','81970','1','ds.0.color.4','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365958','81970','1','ds.0.color.5','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365959','81970','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365960','81970','4','ds.0.itemids.0','0','',NULL,NULL,'10070',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365961','81970','4','ds.0.itemids.1','0','',NULL,NULL,'10067',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365962','81970','4','ds.0.itemids.2','0','',NULL,NULL,'10072',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365963','81970','4','ds.0.itemids.3','0','',NULL,NULL,'10068',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365964','81970','4','ds.0.itemids.4','0','',NULL,NULL,'10069',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365965','81970','4','ds.0.itemids.5','0','',NULL,NULL,'10071',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365966','81970','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365967','81970','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365968','81970','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365969','81970','1','reference','0','AAACD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365970','81970','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365971','81971','1','ds.0.color.0','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365972','81971','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365973','81971','4','ds.0.itemids.0','0','',NULL,NULL,'40182',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365974','81971','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365975','81971','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365976','81971','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365977','81971','1','reference','0','AAACE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365978','81971','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365979','81972','1','ds.0.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365980','81972','1','ds.0.color.1','0','ffdf00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365981','81972','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365982','81972','4','ds.0.itemids.0','0','',NULL,NULL,'50184',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365983','81972','4','ds.0.itemids.1','0','',NULL,NULL,'50183',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365984','81972','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365985','81972','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365986','81972','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365987','81972','1','reference','0','AAABV',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365988','81973','1','ds.0.color.0','0','ffff99',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365989','81973','1','ds.0.color.1','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365990','81973','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365991','81973','4','ds.0.itemids.0','0','',NULL,NULL,'28617',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365992','81973','4','ds.0.itemids.1','0','',NULL,NULL,'45488',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365993','81973','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365994','81973','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365995','81973','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365996','81973','1','reference','0','AAACB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365997','81973','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365998','81974','1','ds.0.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('365999','81974','1','ds.0.color.1','0','ffdf00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366000','81974','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366001','81974','4','ds.0.itemids.0','0','',NULL,NULL,'50186',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366002','81974','4','ds.0.itemids.1','0','',NULL,NULL,'50185',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366003','81974','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366004','81974','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366005','81974','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366006','81974','1','reference','0','AAABW',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366007','81975','1','ds.0.color.0','0','7e57c2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366008','81975','1','ds.0.color.1','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366009','81975','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366010','81975','4','ds.0.itemids.0','0','',NULL,NULL,'45489',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366011','81975','4','ds.0.itemids.1','0','',NULL,NULL,'45490',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366012','81975','0','ds.1.axisy','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366013','81975','1','ds.1.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366014','81975','0','ds.1.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366015','81975','4','ds.1.itemids.0','0','',NULL,NULL,'45488',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366016','81975','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366017','81975','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366018','81975','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366019','81975','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366020','81975','1','reference','0','AAABH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366021','81975','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366022','81976','1','ds.0.color.0','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366023','81976','1','ds.0.color.1','0','ff7f00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366024','81976','1','ds.0.color.2','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366025','81976','1','ds.0.color.3','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366026','81976','1','ds.0.color.4','0','17becf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366027','81976','1','ds.0.color.5','0','a6cee3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366028','81976','1','ds.0.color.6','0','fb9a99',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366029','81976','1','ds.0.color.7','0','bcbd22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366030','81976','1','ds.0.color.8','0','fdbf6f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366031','81976','1','ds.0.color.9','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366032','81976','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366033','81976','4','ds.0.itemids.0','0','',NULL,NULL,'23348',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366034','81976','4','ds.0.itemids.1','0','',NULL,NULL,'47200',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366035','81976','4','ds.0.itemids.2','0','',NULL,NULL,'23355',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366036','81976','4','ds.0.itemids.3','0','',NULL,NULL,'25368',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366037','81976','4','ds.0.itemids.4','0','',NULL,NULL,'23354',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366038','81976','4','ds.0.itemids.5','0','',NULL,NULL,'23349',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366039','81976','4','ds.0.itemids.6','0','',NULL,NULL,'28250',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366040','81976','4','ds.0.itemids.7','0','',NULL,NULL,'47199',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366041','81976','4','ds.0.itemids.8','0','',NULL,NULL,'39826',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366042','81976','4','ds.0.itemids.9','0','',NULL,NULL,'23356',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366043','81976','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366044','81976','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366045','81976','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366046','81976','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366047','81976','1','reference','0','AAABJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366048','81976','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366049','81977','1','ds.0.color.0','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366050','81977','1','ds.0.color.1','0','bcbd22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366051','81977','1','ds.0.color.2','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366052','81977','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366053','81977','4','ds.0.itemids.0','0','',NULL,NULL,'45511',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366054','81977','4','ds.0.itemids.1','0','',NULL,NULL,'45512',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366055','81977','4','ds.0.itemids.2','0','',NULL,NULL,'46045',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366056','81977','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366057','81977','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366058','81977','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366059','81977','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366060','81977','1','reference','0','AAABK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366061','81977','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366062','81978','1','ds.0.color.0','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366063','81978','1','ds.0.color.1','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366064','81978','1','ds.0.color.2','0','ff7f00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366065','81978','1','ds.0.color.3','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366066','81978','1','ds.0.color.4','0','a6cee3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366067','81978','1','ds.0.color.5','0','fdbf6f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366068','81978','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366069','81978','4','ds.0.itemids.0','0','',NULL,NULL,'23347',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366070','81978','4','ds.0.itemids.1','0','',NULL,NULL,'23350',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366071','81978','4','ds.0.itemids.2','0','',NULL,NULL,'23343',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366072','81978','4','ds.0.itemids.3','0','',NULL,NULL,'25369',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366073','81978','4','ds.0.itemids.4','0','',NULL,NULL,'23360',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366074','81978','4','ds.0.itemids.5','0','',NULL,NULL,'23353',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366075','81978','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366076','81978','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366077','81978','0','legend_lines','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366078','81978','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366079','81978','1','reference','0','AAABL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366080','81978','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366081','81979','1','ds.0.color.0','0','cab2d6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366082','81979','1','ds.0.color.1','0','fdbf6f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366083','81979','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366084','81979','4','ds.0.itemids.0','0','',NULL,NULL,'23345',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366085','81979','4','ds.0.itemids.1','0','',NULL,NULL,'23344',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366086','81979','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366087','81979','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366088','81979','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366089','81979','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366090','81979','1','reference','0','AAABM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366091','81979','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366092','81980','1','ds.0.color.0','0','cab2d6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366093','81980','1','ds.0.color.1','0','000080',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366094','81980','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366095','81980','4','ds.0.itemids.0','0','',NULL,NULL,'23345',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366096','81980','4','ds.0.itemids.1','0','',NULL,NULL,'23360',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366097','81980','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366098','81980','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366099','81980','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366100','81980','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366101','81980','1','reference','0','AAABO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366102','81980','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366103','81981','1','ds.0.color.0','0','fdbf6f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366104','81981','1','ds.0.color.1','0','7e57c2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366105','81981','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366106','81981','4','ds.0.itemids.0','0','',NULL,NULL,'28618',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366107','81981','4','ds.0.itemids.1','0','',NULL,NULL,'28619',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366108','81981','0','ds.1.axisy','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366109','81981','1','ds.1.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366110','81981','0','ds.1.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366111','81981','0','ds.1.fill','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366112','81981','4','ds.1.itemids.0','0','',NULL,NULL,'28617',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366113','81981','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366114','81981','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366115','81981','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366116','81981','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366117','81981','1','reference','0','AAABI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366118','81981','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366119','81982','1','ds.0.color.0','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366120','81982','1','ds.0.color.1','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366121','81982','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366122','81982','4','ds.0.itemids.0','0','',NULL,NULL,'23346',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366123','81982','4','ds.0.itemids.1','0','',NULL,NULL,'33018',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366124','81982','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366125','81982','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366126','81982','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366127','81982','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366128','81982','1','reference','0','AAABN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366129','81982','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366130','81983','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366131','81983','4','itemid.0','0','',NULL,NULL,'40181',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366132','81983','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366133','81983','0','show.1','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366134','81983','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366135','81983','0','time_h_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366136','81983','0','time_size','9','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366137','81983','0','time_v_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366138','81983','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366139','81984','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366140','81984','4','itemid.0','0','',NULL,NULL,'40184',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366141','81984','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366142','81984','0','show.1','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366143','81984','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366144','81984','0','time_h_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366145','81984','0','time_size','9','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366146','81984','0','time_v_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366147','81984','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366148','81985','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366149','81985','4','itemid.0','0','',NULL,NULL,'46310',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366150','81985','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366151','81985','0','show.1','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366152','81985','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366153','81985','0','time_h_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366154','81985','0','time_size','9','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366155','81985','0','time_v_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366156','81985','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366157','81986','1','ds.0.color.0','0','33a02c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366158','81986','1','ds.0.color.1','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366159','81986','1','ds.0.color.2','0','ff7f00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366160','81986','1','ds.0.color.3','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366161','81986','1','ds.0.color.4','0','a6cee3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366162','81986','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366163','81986','4','ds.0.itemids.0','0','',NULL,NULL,'49141',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366164','81986','4','ds.0.itemids.1','0','',NULL,NULL,'49147',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366165','81986','4','ds.0.itemids.2','0','',NULL,NULL,'49146',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366166','81986','4','ds.0.itemids.3','0','',NULL,NULL,'49145',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366167','81986','4','ds.0.itemids.4','0','',NULL,NULL,'49137',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366168','81986','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366169','81986','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366170','81986','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366171','81986','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366172','81986','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366173','81986','1','reference','0','AAACA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366174','81986','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366175','81987','1','ds.0.color.0','0','33a02c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366176','81987','1','ds.0.color.1','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366177','81987','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366178','81987','4','ds.0.itemids.0','0','',NULL,NULL,'49148',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366179','81987','4','ds.0.itemids.1','0','',NULL,NULL,'49102',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366180','81987','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366181','81987','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366182','81987','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366183','81987','1','reference','0','AAACC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366184','81987','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366185','81988','1','ds.0.color.0','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366186','81988','1','ds.0.color.1','0','33a02c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366187','81988','1','ds.0.color.2','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366188','81988','1','ds.0.color.3','0','ff7f00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366189','81988','1','ds.0.color.4','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366190','81988','1','ds.0.color.5','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366191','81988','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366192','81988','4','ds.0.itemids.0','0','',NULL,NULL,'49154',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366193','81988','4','ds.0.itemids.1','0','',NULL,NULL,'49149',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366194','81988','4','ds.0.itemids.2','0','',NULL,NULL,'49151',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366195','81988','4','ds.0.itemids.3','0','',NULL,NULL,'49152',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366196','81988','4','ds.0.itemids.4','0','',NULL,NULL,'49150',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366197','81988','4','ds.0.itemids.5','0','',NULL,NULL,'49153',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366198','81988','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366199','81988','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366200','81988','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366201','81988','1','reference','0','AAACD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366202','81988','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366203','81989','1','ds.0.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366204','81989','1','ds.0.color.1','0','ffdf00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366205','81989','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366206','81989','4','ds.0.itemids.0','0','',NULL,NULL,'50188',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366207','81989','4','ds.0.itemids.1','0','',NULL,NULL,'50187',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366208','81989','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366209','81989','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366210','81989','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366211','81989','1','reference','0','AAABV',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366212','81990','1','ds.0.color.0','0','ffff99',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366213','81990','1','ds.0.color.1','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366214','81990','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366215','81990','4','ds.0.itemids.0','0','',NULL,NULL,'49109',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366216','81990','4','ds.0.itemids.1','0','',NULL,NULL,'49108',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366217','81990','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366218','81990','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366219','81990','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366220','81990','1','reference','0','AAACB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366221','81990','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366222','81991','1','ds.0.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366223','81991','1','ds.0.color.1','0','ffdf00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366224','81991','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366225','81991','4','ds.0.itemids.0','0','',NULL,NULL,'50190',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366226','81991','4','ds.0.itemids.1','0','',NULL,NULL,'50189',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366227','81991','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366228','81991','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366229','81991','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366230','81991','1','reference','0','AAABW',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366231','81992','1','ds.0.color.0','0','7e57c2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366232','81992','1','ds.0.color.1','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366233','81992','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366234','81992','4','ds.0.itemids.0','0','',NULL,NULL,'49115',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366235','81992','4','ds.0.itemids.1','0','',NULL,NULL,'49116',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366236','81992','0','ds.1.axisy','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366237','81992','1','ds.1.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366238','81992','0','ds.1.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366239','81992','4','ds.1.itemids.0','0','',NULL,NULL,'49108',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366240','81992','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366241','81992','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366242','81992','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366243','81992','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366244','81992','1','reference','0','AAABH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366245','81992','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366246','81993','1','ds.0.color.0','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366247','81993','1','ds.0.color.1','0','ff7f00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366248','81993','1','ds.0.color.2','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366249','81993','1','ds.0.color.3','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366250','81993','1','ds.0.color.4','0','17becf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366251','81993','1','ds.0.color.5','0','a6cee3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366252','81993','1','ds.0.color.6','0','fb9a99',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366253','81993','1','ds.0.color.7','0','bcbd22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366254','81993','1','ds.0.color.8','0','fdbf6f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366255','81993','1','ds.0.color.9','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366256','81993','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366257','81993','4','ds.0.itemids.0','0','',NULL,NULL,'49127',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366258','81993','4','ds.0.itemids.1','0','',NULL,NULL,'49122',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366259','81993','4','ds.0.itemids.2','0','',NULL,NULL,'49124',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366260','81993','4','ds.0.itemids.3','0','',NULL,NULL,'49123',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366261','81993','4','ds.0.itemids.4','0','',NULL,NULL,'49120',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366262','81993','4','ds.0.itemids.5','0','',NULL,NULL,'49125',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366263','81993','4','ds.0.itemids.6','0','',NULL,NULL,'49136',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366264','81993','4','ds.0.itemids.7','0','',NULL,NULL,'49112',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366265','81993','4','ds.0.itemids.8','0','',NULL,NULL,'49126',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366266','81993','4','ds.0.itemids.9','0','',NULL,NULL,'49121',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366267','81993','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366268','81993','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366269','81993','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366270','81993','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366271','81993','1','reference','0','AAABJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366272','81993','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366273','81994','1','ds.0.color.0','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366274','81994','1','ds.0.color.1','0','bcbd22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366275','81994','1','ds.0.color.2','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366276','81994','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366277','81994','4','ds.0.itemids.0','0','',NULL,NULL,'49110',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366278','81994','4','ds.0.itemids.1','0','',NULL,NULL,'49119',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366279','81994','4','ds.0.itemids.2','0','',NULL,NULL,'49131',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366280','81994','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366281','81994','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366282','81994','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366283','81994','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366284','81994','1','reference','0','AAABK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366285','81994','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366286','81995','1','ds.0.color.0','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366287','81995','1','ds.0.color.1','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366288','81995','1','ds.0.color.2','0','ff7f00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366289','81995','1','ds.0.color.3','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366290','81995','1','ds.0.color.4','0','a6cee3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366291','81995','1','ds.0.color.5','0','fdbf6f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366292','81995','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366293','81995','4','ds.0.itemids.0','0','',NULL,NULL,'49113',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366294','81995','4','ds.0.itemids.1','0','',NULL,NULL,'49117',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366295','81995','4','ds.0.itemids.2','0','',NULL,NULL,'49130',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366296','81995','4','ds.0.itemids.3','0','',NULL,NULL,'49133',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366297','81995','4','ds.0.itemids.4','0','',NULL,NULL,'49114',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366298','81995','4','ds.0.itemids.5','0','',NULL,NULL,'49118',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366299','81995','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366300','81995','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366301','81995','0','legend_lines','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366302','81995','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366303','81995','1','reference','0','AAABL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366304','81995','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366305','81996','1','ds.0.color.0','0','cab2d6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366306','81996','1','ds.0.color.1','0','fdbf6f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366307','81996','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366308','81996','4','ds.0.itemids.0','0','',NULL,NULL,'49134',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366309','81996','4','ds.0.itemids.1','0','',NULL,NULL,'49132',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366310','81996','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366311','81996','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366312','81996','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366313','81996','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366314','81996','1','reference','0','AAABM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366315','81996','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366316','81997','1','ds.0.color.0','0','cab2d6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366317','81997','1','ds.0.color.1','0','000080',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366318','81997','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366319','81997','4','ds.0.itemids.0','0','',NULL,NULL,'49134',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366320','81997','4','ds.0.itemids.1','0','',NULL,NULL,'49114',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366321','81997','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366322','81997','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366323','81997','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366324','81997','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366325','81997','1','reference','0','AAABO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366326','81997','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366327','81998','1','ds.0.color.0','0','fdbf6f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366328','81998','1','ds.0.color.1','0','7e57c2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366329','81998','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366330','81998','4','ds.0.itemids.0','0','',NULL,NULL,'49128',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366331','81998','4','ds.0.itemids.1','0','',NULL,NULL,'49129',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366332','81998','0','ds.1.axisy','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366333','81998','1','ds.1.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366334','81998','0','ds.1.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366335','81998','0','ds.1.fill','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366336','81998','4','ds.1.itemids.0','0','',NULL,NULL,'49109',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366337','81998','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366338','81998','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366339','81998','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366340','81998','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366341','81998','1','reference','0','AAABI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366342','81998','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366343','81999','1','ds.0.color.0','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366344','81999','1','ds.0.color.1','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366345','81999','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366346','81999','4','ds.0.itemids.0','0','',NULL,NULL,'49135',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366347','81999','4','ds.0.itemids.1','0','',NULL,NULL,'49111',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366348','81999','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366349','81999','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366350','81999','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366351','81999','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366352','81999','1','reference','0','AAABN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366353','81999','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366354','82000','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366355','82000','4','itemid.0','0','',NULL,NULL,'49144',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366356','82000','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366357','82000','0','show.1','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366358','82000','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366359','82000','0','time_h_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366360','82000','0','time_size','9','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366361','82000','0','time_v_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366362','82000','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366363','82001','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366364','82001','4','itemid.0','0','',NULL,NULL,'49143',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366365','82001','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366366','82001','0','show.1','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366367','82001','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366368','82001','0','time_h_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366369','82001','0','time_size','9','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366370','82001','0','time_v_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366371','82001','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366372','82002','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366373','82002','4','itemid.0','0','',NULL,NULL,'49139',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366374','82002','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366375','82002','0','show.1','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366376','82002','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366377','82002','0','time_h_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366378','82002','0','time_size','9','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366379','82002','0','time_v_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366380','82002','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366381','82003','1','ds.0.color.0','0','33a02c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366382','82003','1','ds.0.color.1','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366383','82003','1','ds.0.color.2','0','ff7f00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366384','82003','1','ds.0.color.3','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366385','82003','1','ds.0.color.4','0','a6cee3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366386','82003','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366387','82003','4','ds.0.itemids.0','0','',NULL,NULL,'49188',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366388','82003','4','ds.0.itemids.1','0','',NULL,NULL,'49194',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366389','82003','4','ds.0.itemids.2','0','',NULL,NULL,'49193',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366390','82003','4','ds.0.itemids.3','0','',NULL,NULL,'49192',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366391','82003','4','ds.0.itemids.4','0','',NULL,NULL,'49184',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366392','82003','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366393','82003','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366394','82003','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366395','82003','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366396','82003','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366397','82003','1','reference','0','AAACA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366398','82003','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366399','82004','1','ds.0.color.0','0','33a02c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366400','82004','1','ds.0.color.1','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366401','82004','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366402','82004','4','ds.0.itemids.0','0','',NULL,NULL,'49195',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366403','82004','4','ds.0.itemids.1','0','',NULL,NULL,'49105',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366404','82004','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366405','82004','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366406','82004','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366407','82004','1','reference','0','AAACC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366408','82004','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366409','82005','1','ds.0.color.0','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366410','82005','1','ds.0.color.1','0','33a02c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366411','82005','1','ds.0.color.2','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366412','82005','1','ds.0.color.3','0','ff7f00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366413','82005','1','ds.0.color.4','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366414','82005','1','ds.0.color.5','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366415','82005','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366416','82005','4','ds.0.itemids.0','0','',NULL,NULL,'49201',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366417','82005','4','ds.0.itemids.1','0','',NULL,NULL,'49196',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366418','82005','4','ds.0.itemids.2','0','',NULL,NULL,'49198',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366419','82005','4','ds.0.itemids.3','0','',NULL,NULL,'49199',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366420','82005','4','ds.0.itemids.4','0','',NULL,NULL,'49197',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366421','82005','4','ds.0.itemids.5','0','',NULL,NULL,'49200',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366422','82005','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366423','82005','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366424','82005','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366425','82005','1','reference','0','AAACD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366426','82005','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366427','82006','1','ds.0.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366428','82006','1','ds.0.color.1','0','ffdf00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366429','82006','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366430','82006','4','ds.0.itemids.0','0','',NULL,NULL,'50192',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366431','82006','4','ds.0.itemids.1','0','',NULL,NULL,'50191',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366432','82006','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366433','82006','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366434','82006','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366435','82006','1','reference','0','AAABV',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366436','82007','1','ds.0.color.0','0','ffff99',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366437','82007','1','ds.0.color.1','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366438','82007','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366439','82007','4','ds.0.itemids.0','0','',NULL,NULL,'49156',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366440','82007','4','ds.0.itemids.1','0','',NULL,NULL,'49155',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366441','82007','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366442','82007','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366443','82007','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366444','82007','1','reference','0','AAACB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366445','82007','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366446','82008','1','ds.0.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366447','82008','1','ds.0.color.1','0','ffdf00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366448','82008','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366449','82008','4','ds.0.itemids.0','0','',NULL,NULL,'50194',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366450','82008','4','ds.0.itemids.1','0','',NULL,NULL,'50193',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366451','82008','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366452','82008','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366453','82008','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366454','82008','1','reference','0','AAABW',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366455','82009','1','ds.0.color.0','0','7e57c2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366456','82009','1','ds.0.color.1','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366457','82009','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366458','82009','4','ds.0.itemids.0','0','',NULL,NULL,'49162',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366459','82009','4','ds.0.itemids.1','0','',NULL,NULL,'49163',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366460','82009','0','ds.1.axisy','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366461','82009','1','ds.1.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366462','82009','0','ds.1.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366463','82009','4','ds.1.itemids.0','0','',NULL,NULL,'49155',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366464','82009','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366465','82009','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366466','82009','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366467','82009','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366468','82009','1','reference','0','AAABH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366469','82009','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366470','82010','1','ds.0.color.0','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366471','82010','1','ds.0.color.1','0','ff7f00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366472','82010','1','ds.0.color.2','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366473','82010','1','ds.0.color.3','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366474','82010','1','ds.0.color.4','0','17becf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366475','82010','1','ds.0.color.5','0','a6cee3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366476','82010','1','ds.0.color.6','0','fb9a99',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366477','82010','1','ds.0.color.7','0','bcbd22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366478','82010','1','ds.0.color.8','0','fdbf6f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366479','82010','1','ds.0.color.9','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366480','82010','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366481','82010','4','ds.0.itemids.0','0','',NULL,NULL,'49174',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366482','82010','4','ds.0.itemids.1','0','',NULL,NULL,'49169',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366483','82010','4','ds.0.itemids.2','0','',NULL,NULL,'49171',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366484','82010','4','ds.0.itemids.3','0','',NULL,NULL,'49170',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366485','82010','4','ds.0.itemids.4','0','',NULL,NULL,'49167',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366486','82010','4','ds.0.itemids.5','0','',NULL,NULL,'49172',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366487','82010','4','ds.0.itemids.6','0','',NULL,NULL,'49183',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366488','82010','4','ds.0.itemids.7','0','',NULL,NULL,'49159',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366489','82010','4','ds.0.itemids.8','0','',NULL,NULL,'49173',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366490','82010','4','ds.0.itemids.9','0','',NULL,NULL,'49168',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366491','82010','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366492','82010','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366493','82010','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366494','82010','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366495','82010','1','reference','0','AAABJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366496','82010','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366497','82011','1','ds.0.color.0','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366498','82011','1','ds.0.color.1','0','bcbd22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366499','82011','1','ds.0.color.2','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366500','82011','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366501','82011','4','ds.0.itemids.0','0','',NULL,NULL,'49157',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366502','82011','4','ds.0.itemids.1','0','',NULL,NULL,'49166',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366503','82011','4','ds.0.itemids.2','0','',NULL,NULL,'49178',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366504','82011','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366505','82011','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366506','82011','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366507','82011','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366508','82011','1','reference','0','AAABK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366509','82011','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366510','82012','1','ds.0.color.0','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366511','82012','1','ds.0.color.1','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366512','82012','1','ds.0.color.2','0','ff7f00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366513','82012','1','ds.0.color.3','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366514','82012','1','ds.0.color.4','0','a6cee3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366515','82012','1','ds.0.color.5','0','fdbf6f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366516','82012','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366517','82012','4','ds.0.itemids.0','0','',NULL,NULL,'49160',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366518','82012','4','ds.0.itemids.1','0','',NULL,NULL,'49164',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366519','82012','4','ds.0.itemids.2','0','',NULL,NULL,'49177',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366520','82012','4','ds.0.itemids.3','0','',NULL,NULL,'49180',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366521','82012','4','ds.0.itemids.4','0','',NULL,NULL,'49161',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366522','82012','4','ds.0.itemids.5','0','',NULL,NULL,'49165',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366523','82012','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366524','82012','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366525','82012','0','legend_lines','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366526','82012','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366527','82012','1','reference','0','AAABL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366528','82012','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366529','82013','1','ds.0.color.0','0','cab2d6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366530','82013','1','ds.0.color.1','0','fdbf6f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366531','82013','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366532','82013','4','ds.0.itemids.0','0','',NULL,NULL,'49181',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366533','82013','4','ds.0.itemids.1','0','',NULL,NULL,'49179',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366534','82013','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366535','82013','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366536','82013','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366537','82013','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366538','82013','1','reference','0','AAABM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366539','82013','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366540','82014','1','ds.0.color.0','0','cab2d6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366541','82014','1','ds.0.color.1','0','000080',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366542','82014','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366543','82014','4','ds.0.itemids.0','0','',NULL,NULL,'49181',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366544','82014','4','ds.0.itemids.1','0','',NULL,NULL,'49161',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366545','82014','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366546','82014','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366547','82014','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366548','82014','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366549','82014','1','reference','0','AAABO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366550','82014','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366551','82015','1','ds.0.color.0','0','fdbf6f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366552','82015','1','ds.0.color.1','0','7e57c2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366553','82015','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366554','82015','4','ds.0.itemids.0','0','',NULL,NULL,'49175',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366555','82015','4','ds.0.itemids.1','0','',NULL,NULL,'49176',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366556','82015','0','ds.1.axisy','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366557','82015','1','ds.1.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366558','82015','0','ds.1.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366559','82015','0','ds.1.fill','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366560','82015','4','ds.1.itemids.0','0','',NULL,NULL,'49156',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366561','82015','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366562','82015','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366563','82015','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366564','82015','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366565','82015','1','reference','0','AAABI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366566','82015','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366567','82016','1','ds.0.color.0','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366568','82016','1','ds.0.color.1','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366569','82016','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366570','82016','4','ds.0.itemids.0','0','',NULL,NULL,'49182',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366571','82016','4','ds.0.itemids.1','0','',NULL,NULL,'49158',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366572','82016','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366573','82016','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366574','82016','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366575','82016','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366576','82016','1','reference','0','AAABN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366577','82016','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366578','82017','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366579','82017','4','itemid.0','0','',NULL,NULL,'49191',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366580','82017','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366581','82017','0','show.1','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366582','82017','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366583','82017','0','time_h_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366584','82017','0','time_size','9','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366585','82017','0','time_v_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366586','82017','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366587','82018','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366588','82018','4','itemid.0','0','',NULL,NULL,'49190',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366589','82018','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366590','82018','0','show.1','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366591','82018','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366592','82018','0','time_h_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366593','82018','0','time_size','9','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366594','82018','0','time_v_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366595','82018','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366596','82019','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366597','82019','4','itemid.0','0','',NULL,NULL,'49186',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366598','82019','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366599','82019','0','show.1','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366600','82019','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366601','82019','0','time_h_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366602','82019','0','time_size','9','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366603','82019','0','time_v_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366604','82019','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366605','82020','1','ds.0.color.0','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366606','82020','1','ds.0.color.1','0','33a02c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366607','82020','1','ds.0.color.2','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366608','82020','1','ds.0.color.3','0','ff7f00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366609','82020','1','ds.0.color.4','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366610','82020','1','ds.0.color.5','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366611','82020','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366612','82020','4','ds.0.itemids.0','0','',NULL,NULL,'28551',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366613','82020','4','ds.0.itemids.1','0','',NULL,NULL,'28543',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366614','82020','4','ds.0.itemids.2','0','',NULL,NULL,'28542',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366615','82020','4','ds.0.itemids.3','0','',NULL,NULL,'28549',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366616','82020','4','ds.0.itemids.4','0','',NULL,NULL,'28544',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366617','82020','4','ds.0.itemids.5','0','',NULL,NULL,'28548',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366618','82020','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366619','82020','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366620','82020','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366621','82020','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366622','82020','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366623','82020','1','reference','0','AAACA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366624','82020','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366625','82021','1','ds.0.color.0','0','33a02c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366626','82021','1','ds.0.color.1','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366627','82021','1','ds.0.color.2','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366628','82021','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366629','82021','4','ds.0.itemids.0','0','',NULL,NULL,'28550',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366630','82021','4','ds.0.itemids.1','0','',NULL,NULL,'46316',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366631','82021','4','ds.0.itemids.2','0','',NULL,NULL,'28540',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366632','82021','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366633','82021','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366634','82021','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366635','82021','1','reference','0','AAACC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366636','82021','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366637','82022','1','ds.0.color.0','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366638','82022','1','ds.0.color.1','0','33a02c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366639','82022','1','ds.0.color.2','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366640','82022','1','ds.0.color.3','0','ff7f00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366641','82022','1','ds.0.color.4','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366642','82022','1','ds.0.color.5','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366643','82022','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366644','82022','4','ds.0.itemids.0','0','',NULL,NULL,'28558',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366645','82022','4','ds.0.itemids.1','0','',NULL,NULL,'28553',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366646','82022','4','ds.0.itemids.2','0','',NULL,NULL,'28555',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366647','82022','4','ds.0.itemids.3','0','',NULL,NULL,'28556',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366648','82022','4','ds.0.itemids.4','0','',NULL,NULL,'28554',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366649','82022','4','ds.0.itemids.5','0','',NULL,NULL,'28557',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366650','82022','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366651','82022','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366652','82022','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366653','82022','1','reference','0','AAACD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366654','82022','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366655','82023','1','ds.0.color.0','0','33a02c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366656','82023','1','ds.0.color.1','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366657','82023','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366658','82023','4','ds.0.itemids.0','0','',NULL,NULL,'28545',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366659','82023','4','ds.0.itemids.1','0','',NULL,NULL,'28546',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366660','82023','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366661','82023','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366662','82023','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366663','82023','1','reference','0','AAACE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366664','82023','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366665','82024','1','ds.0.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366666','82024','1','ds.0.color.1','0','ffdf00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366667','82024','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366668','82024','4','ds.0.itemids.0','0','',NULL,NULL,'49908',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366669','82024','4','ds.0.itemids.1','0','',NULL,NULL,'50195',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366670','82024','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366671','82024','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366672','82024','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366673','82024','1','reference','0','AAABV',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366674','82025','1','ds.0.color.0','0','ffca58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366675','82025','1','ds.0.color.1','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366676','82025','1','ds.0.color.2','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366677','82025','1','ds.0.color.3','0','d62728',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366678','82025','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366679','82025','4','ds.0.itemids.0','0','',NULL,NULL,'28560',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366680','82025','4','ds.0.itemids.1','0','',NULL,NULL,'28584',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366681','82025','4','ds.0.itemids.2','0','',NULL,NULL,'45500',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366682','82025','4','ds.0.itemids.3','0','',NULL,NULL,'44791',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366683','82025','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366684','82025','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366685','82025','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366686','82025','1','reference','0','AAACB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366687','82025','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366688','82026','1','ds.0.color.0','0','ffca58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366689','82026','1','ds.0.color.1','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366690','82026','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366691','82026','4','ds.0.itemids.0','0','',NULL,NULL,'33014',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366692','82026','4','ds.0.itemids.1','0','',NULL,NULL,'33015',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366693','82026','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366694','82026','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366695','82026','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366696','82026','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366697','82026','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366698','82026','1','reference','0','AAACF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366699','82026','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366700','82027','1','ds.0.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366701','82027','1','ds.0.color.1','0','ffdf00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366702','82027','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366703','82027','4','ds.0.itemids.0','0','',NULL,NULL,'50197',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366704','82027','4','ds.0.itemids.1','0','',NULL,NULL,'50196',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366705','82027','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366706','82027','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366707','82027','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366708','82027','1','reference','0','AAABW',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366709','82028','1','ds.0.color.0','0','ffca58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366710','82028','1','ds.0.color.1','0','7e57c2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366711','82028','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366712','82028','4','ds.0.itemids.0','0','',NULL,NULL,'28582',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366713','82028','4','ds.0.itemids.1','0','',NULL,NULL,'28583',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366714','82028','0','ds.1.axisy','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366715','82028','1','ds.1.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366716','82028','0','ds.1.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366717','82028','0','ds.1.fill','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366718','82028','4','ds.1.itemids.0','0','',NULL,NULL,'28584',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366719','82028','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366720','82028','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366721','82028','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366722','82028','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366723','82028','1','reference','0','AAABI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366724','82028','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366725','82029','1','ds.0.color.0','0','ffca58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366726','82029','1','ds.0.color.1','0','7e57c2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366727','82029','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366728','82029','4','ds.0.itemids.0','0','',NULL,NULL,'28575',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366729','82029','4','ds.0.itemids.1','0','',NULL,NULL,'28576',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366730','82029','0','ds.1.axisy','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366731','82029','1','ds.1.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366732','82029','0','ds.1.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366733','82029','0','ds.1.fill','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366734','82029','4','ds.1.itemids.0','0','',NULL,NULL,'28560',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366735','82029','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366736','82029','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366737','82029','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366738','82029','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366739','82029','1','reference','0','AAABK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366740','82029','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366741','82030','1','ds.0.color.0','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366742','82030','1','ds.0.color.1','0','ff7f00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366743','82030','1','ds.0.color.2','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366744','82030','1','ds.0.color.3','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366745','82030','1','ds.0.color.4','0','17becf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366746','82030','1','ds.0.color.5','0','a6cee3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366747','82030','1','ds.0.color.6','0','fb9a99',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366748','82030','1','ds.0.color.7','0','bcbd22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366749','82030','1','ds.0.color.8','0','ffca58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366750','82030','1','ds.0.color.9','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366751','82030','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366752','82030','4','ds.0.itemids.0','0','',NULL,NULL,'28574',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366753','82030','4','ds.0.itemids.1','0','',NULL,NULL,'47213',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366754','82030','4','ds.0.itemids.2','0','',NULL,NULL,'28571',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366755','82030','4','ds.0.itemids.3','0','',NULL,NULL,'28562',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366756','82030','4','ds.0.itemids.4','0','',NULL,NULL,'28569',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366757','82030','4','ds.0.itemids.5','0','',NULL,NULL,'28573',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366758','82030','4','ds.0.itemids.6','0','',NULL,NULL,'28559',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366759','82030','4','ds.0.itemids.7','0','',NULL,NULL,'47211',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366760','82030','4','ds.0.itemids.8','0','',NULL,NULL,'39824',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366761','82030','4','ds.0.itemids.9','0','',NULL,NULL,'28570',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366762','82030','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366763','82030','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366764','82030','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366765','82030','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366766','82030','1','reference','0','AAABM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366767','82030','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366768','82031','1','ds.0.color.0','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366769','82031','1','ds.0.color.1','0','bcbd22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366770','82031','1','ds.0.color.2','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366771','82031','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366772','82031','4','ds.0.itemids.0','0','',NULL,NULL,'45519',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366773','82031','4','ds.0.itemids.1','0','',NULL,NULL,'45520',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366774','82031','4','ds.0.itemids.2','0','',NULL,NULL,'46049',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366775','82031','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366776','82031','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366777','82031','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366778','82031','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366779','82031','1','reference','0','AAABN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366780','82031','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366781','82032','1','ds.0.color.0','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366782','82032','1','ds.0.color.1','0','33a02c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366783','82032','1','ds.0.color.2','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366784','82032','1','ds.0.color.3','0','ff7f00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366785','82032','1','ds.0.color.4','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366786','82032','1','ds.0.color.5','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366787','82032','1','ds.0.color.6','0','a6cee3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366788','82032','1','ds.0.color.7','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366789','82032','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366790','82032','4','ds.0.itemids.0','0','',NULL,NULL,'28564',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366791','82032','4','ds.0.itemids.1','0','',NULL,NULL,'47212',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366792','82032','4','ds.0.itemids.2','0','',NULL,NULL,'28567',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366793','82032','4','ds.0.itemids.3','0','',NULL,NULL,'28578',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366794','82032','4','ds.0.itemids.4','0','',NULL,NULL,'35279',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366795','82032','4','ds.0.itemids.5','0','',NULL,NULL,'28580',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366796','82032','4','ds.0.itemids.6','0','',NULL,NULL,'28572',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366797','82032','4','ds.0.itemids.7','0','',NULL,NULL,'33017',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366798','82032','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366799','82032','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366800','82032','0','legend_lines','8','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366801','82032','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366802','82032','1','reference','0','AAABO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366803','82032','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366804','82033','1','ds.0.color.0','0','cab2d6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366805','82033','1','ds.0.color.1','0','ffca58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366806','82033','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366807','82033','4','ds.0.itemids.0','0','',NULL,NULL,'28581',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366808','82033','4','ds.0.itemids.1','0','',NULL,NULL,'28579',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366809','82033','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366810','82033','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366811','82033','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366812','82033','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366813','82033','1','reference','0','AAABQ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366814','82033','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366815','82034','1','ds.0.color.0','0','17becf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366816','82034','1','ds.0.color.1','0','bcbd22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366817','82034','1','ds.0.color.2','0','d62728',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366818','82034','1','ds.0.color.3','0','ff7f00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366819','82034','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366820','82034','4','ds.0.itemids.0','0','',NULL,NULL,'28563',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366821','82034','4','ds.0.itemids.1','0','',NULL,NULL,'29821',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366822','82034','4','ds.0.itemids.2','0','',NULL,NULL,'28561',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366823','82034','4','ds.0.itemids.3','0','',NULL,NULL,'28566',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366824','82034','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366825','82034','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366826','82034','0','legend_lines','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366827','82034','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366828','82034','1','reference','0','AAABS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366829','82034','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366830','82035','1','ds.0.color.0','0','cab2d6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366831','82035','1','ds.0.color.1','0','000080',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366832','82035','1','ds.0.color.2','0','808000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366833','82035','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366834','82035','4','ds.0.itemids.0','0','',NULL,NULL,'28581',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366835','82035','4','ds.0.itemids.1','0','',NULL,NULL,'28577',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366836','82035','4','ds.0.itemids.2','0','',NULL,NULL,'47214',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366837','82035','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366838','82035','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366839','82035','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366840','82035','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366841','82035','1','reference','0','AAABU',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366842','82035','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366843','82036','1','ds.0.color.0','0','7e57c2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366844','82036','1','ds.0.color.1','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366845','82036','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366846','82036','4','ds.0.itemids.0','0','',NULL,NULL,'45501',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366847','82036','4','ds.0.itemids.1','0','',NULL,NULL,'45502',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366848','82036','0','ds.1.axisy','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366849','82036','1','ds.1.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366850','82036','0','ds.1.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366851','82036','4','ds.1.itemids.0','0','',NULL,NULL,'45500',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366852','82036','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366853','82036','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366854','82036','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366855','82036','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366856','82036','1','reference','0','AAABJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366857','82036','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366858','82037','1','ds.0.color.0','0','b2df8a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366859','82037','1','ds.0.color.1','0','ffca58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366860','82037','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366861','82037','4','ds.0.itemids.0','0','',NULL,NULL,'44792',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366862','82037','4','ds.0.itemids.1','0','',NULL,NULL,'44793',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366863','82037','0','ds.1.axisy','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366864','82037','1','ds.1.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366865','82037','0','ds.1.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366866','82037','4','ds.1.itemids.0','0','',NULL,NULL,'44791',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366867','82037','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366868','82037','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366869','82037','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366870','82037','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366871','82037','1','reference','0','AAABL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366872','82037','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366873','82038','1','ds.0.color.0','0','ffca58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366874','82038','1','ds.0.color.1','0','cab2d6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366875','82038','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366876','82038','4','ds.0.itemids.0','0','',NULL,NULL,'28568',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366877','82038','4','ds.0.itemids.1','0','',NULL,NULL,'35278',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366878','82038','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366879','82038','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366880','82038','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366881','82038','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366882','82038','1','reference','0','AAABP',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366883','82038','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366884','82039','1','ds.0.color.0','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366885','82039','1','ds.0.color.1','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366886','82039','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366887','82039','4','ds.0.itemids.0','0','',NULL,NULL,'28552',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366888','82039','4','ds.0.itemids.1','0','',NULL,NULL,'33016',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366889','82039','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366890','82039','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366891','82039','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366892','82039','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366893','82039','1','reference','0','AAABR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366894','82039','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366895','82040','1','ds.0.color.0','0','e377c2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366896','82040','1','ds.0.color.1','0','ffdf00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366897','82040','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366898','82040','4','ds.0.itemids.0','0','',NULL,NULL,'34314',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366899','82040','4','ds.0.itemids.1','0','',NULL,NULL,'34315',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366900','82040','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366901','82040','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366902','82040','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366903','82040','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366904','82040','1','reference','0','AAABT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366905','82040','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366906','82041','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366907','82041','4','itemid.0','0','',NULL,NULL,'31053',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366908','82041','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366909','82041','0','show.1','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366910','82041','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366911','82041','0','time_h_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366912','82041','0','time_size','9','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366913','82041','0','time_v_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366914','82041','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366915','82042','1','items.0','0','Cluster node [*]: Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366916','82042','1','primary_label','0',E'{{ITEM.NAME}.regsub("Cluster node \\[(.*)]: Status","\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366917','82042','1','reference','0','BAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366918','82042','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366919','82042','1','thresholds.0.color','0','b2df8a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366920','82042','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366921','82042','1','thresholds.1.color','0','878787',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366922','82042','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366923','82042','1','thresholds.2.color','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366924','82042','1','thresholds.2.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366925','82042','1','thresholds.3.color','0','33a02c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366926','82042','1','thresholds.3.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366927','82043','1','ds.0.color.0','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366928','82043','1','ds.0.color.1','0','33a02c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366929','82043','1','ds.0.color.2','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366930','82043','1','ds.0.color.3','0','ff7f00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366931','82043','1','ds.0.color.4','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366932','82043','1','ds.0.color.5','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366933','82043','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366934','82043','4','ds.0.itemids.0','0','',NULL,NULL,'22185',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366935','82043','4','ds.0.itemids.1','0','',NULL,NULL,'22189',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366936','82043','4','ds.0.itemids.2','0','',NULL,NULL,'22396',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366937','82043','4','ds.0.itemids.3','0','',NULL,NULL,'22183',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366938','82043','4','ds.0.itemids.4','0','',NULL,NULL,'22191',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366939','82043','4','ds.0.itemids.5','0','',NULL,NULL,'23634',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366940','82043','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366941','82043','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366942','82043','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366943','82043','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366944','82043','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366945','82043','1','reference','0','AAACA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366946','82043','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366947','82044','1','ds.0.color.0','0','33a02c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366948','82044','1','ds.0.color.1','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366949','82044','1','ds.0.color.2','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366950','82044','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366951','82044','4','ds.0.itemids.0','0','',NULL,NULL,'22187',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366952','82044','4','ds.0.itemids.1','0','',NULL,NULL,'46314',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366953','82044','4','ds.0.itemids.2','0','',NULL,NULL,'23251',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366954','82044','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366955','82044','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366956','82044','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366957','82044','1','reference','0','AAACC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366958','82044','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366959','82045','1','ds.0.color.0','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366960','82045','1','ds.0.color.1','0','33a02c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366961','82045','1','ds.0.color.2','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366962','82045','1','ds.0.color.3','0','ff7f00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366963','82045','1','ds.0.color.4','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366964','82045','1','ds.0.color.5','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366965','82045','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366966','82045','4','ds.0.itemids.0','0','',NULL,NULL,'10064',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366967','82045','4','ds.0.itemids.1','0','',NULL,NULL,'10061',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366968','82045','4','ds.0.itemids.2','0','',NULL,NULL,'10066',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366969','82045','4','ds.0.itemids.3','0','',NULL,NULL,'10062',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366970','82045','4','ds.0.itemids.4','0','',NULL,NULL,'10063',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366971','82045','4','ds.0.itemids.5','0','',NULL,NULL,'10065',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366972','82045','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366973','82045','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366974','82045','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366975','82045','1','reference','0','AAACD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366976','82045','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366977','82046','1','ds.0.color.0','0','33a02c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366978','82046','1','ds.0.color.1','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366979','82046','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366980','82046','4','ds.0.itemids.0','0','',NULL,NULL,'22196',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366981','82046','4','ds.0.itemids.1','0','',NULL,NULL,'22199',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366982','82046','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366983','82046','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366984','82046','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366985','82046','1','reference','0','AAACE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366986','82046','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366987','82047','1','ds.0.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366988','82047','1','ds.0.color.1','0','ffdf00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366989','82047','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366990','82047','4','ds.0.itemids.0','0','',NULL,NULL,'49909',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366991','82047','4','ds.0.itemids.1','0','',NULL,NULL,'50198',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366992','82047','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366993','82047','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366994','82047','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366995','82047','1','reference','0','AAABV',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366996','82048','1','ds.0.color.0','0','ffca58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366997','82048','1','ds.0.color.1','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366998','82048','1','ds.0.color.2','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('366999','82048','1','ds.0.color.3','0','d62728',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367000','82048','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367001','82048','4','ds.0.itemids.0','0','',NULL,NULL,'28248',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367002','82048','4','ds.0.itemids.1','0','',NULL,NULL,'28533',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367003','82048','4','ds.0.itemids.2','0','',NULL,NULL,'45494',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367004','82048','4','ds.0.itemids.3','0','',NULL,NULL,'44785',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367005','82048','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367006','82048','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367007','82048','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367008','82048','1','reference','0','AAACB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367009','82048','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367010','82049','1','ds.0.color.0','0','ffca58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367011','82049','1','ds.0.color.1','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367012','82049','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367013','82049','4','ds.0.itemids.0','0','',NULL,NULL,'33020',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367014','82049','4','ds.0.itemids.1','0','',NULL,NULL,'33021',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367015','82049','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367016','82049','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367017','82049','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367018','82049','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367019','82049','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367020','82049','1','reference','0','AAACF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367021','82049','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367022','82050','1','ds.0.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367023','82050','1','ds.0.color.1','0','ffdf00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367024','82050','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367025','82050','4','ds.0.itemids.0','0','',NULL,NULL,'50200',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367026','82050','4','ds.0.itemids.1','0','',NULL,NULL,'50199',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367027','82050','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367028','82050','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367029','82050','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367030','82050','1','reference','0','AAABW',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367031','82051','1','ds.0.color.0','0','ffca58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367032','82051','1','ds.0.color.1','0','7e57c2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367033','82051','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367034','82051','4','ds.0.itemids.0','0','',NULL,NULL,'28535',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367035','82051','4','ds.0.itemids.1','0','',NULL,NULL,'28537',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367036','82051','0','ds.1.axisy','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367037','82051','1','ds.1.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367038','82051','0','ds.1.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367039','82051','0','ds.1.fill','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367040','82051','4','ds.1.itemids.0','0','',NULL,NULL,'28533',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367041','82051','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367042','82051','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367043','82051','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367044','82051','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367045','82051','1','reference','0','AAABI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367046','82051','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367047','82052','1','ds.0.color.0','0','ffca58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367048','82052','1','ds.0.color.1','0','7e57c2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367049','82052','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367050','82052','4','ds.0.itemids.0','0','',NULL,NULL,'25665',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367051','82052','4','ds.0.itemids.1','0','',NULL,NULL,'25666',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367052','82052','0','ds.1.axisy','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367053','82052','1','ds.1.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367054','82052','0','ds.1.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367055','82052','0','ds.1.fill','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367056','82052','4','ds.1.itemids.0','0','',NULL,NULL,'28248',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367057','82052','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367058','82052','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367059','82052','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367060','82052','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367061','82052','1','reference','0','AAABK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367062','82052','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367063','82053','1','ds.0.color.0','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367064','82053','1','ds.0.color.1','0','ff7f00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367065','82053','1','ds.0.color.2','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367066','82053','1','ds.0.color.3','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367067','82053','1','ds.0.color.4','0','17becf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367068','82053','1','ds.0.color.5','0','a6cee3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367069','82053','1','ds.0.color.6','0','fb9a99',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367070','82053','1','ds.0.color.7','0','bcbd22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367071','82053','1','ds.0.color.8','0','ffca58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367072','82053','1','ds.0.color.9','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367073','82053','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367074','82053','4','ds.0.itemids.0','0','',NULL,NULL,'22399',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367075','82053','4','ds.0.itemids.1','0','',NULL,NULL,'47205',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367076','82053','4','ds.0.itemids.2','0','',NULL,NULL,'22416',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367077','82053','4','ds.0.itemids.3','0','',NULL,NULL,'25366',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367078','82053','4','ds.0.itemids.4','0','',NULL,NULL,'22402',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367079','82053','4','ds.0.itemids.5','0','',NULL,NULL,'22689',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367080','82053','4','ds.0.itemids.6','0','',NULL,NULL,'22401',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367081','82053','4','ds.0.itemids.7','0','',NULL,NULL,'47203',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367082','82053','4','ds.0.itemids.8','0','',NULL,NULL,'39822',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367083','82053','4','ds.0.itemids.9','0','',NULL,NULL,'22418',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367084','82053','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367085','82053','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367086','82053','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367087','82053','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367088','82053','1','reference','0','AAABM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367089','82053','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367090','82054','1','ds.0.color.0','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367091','82054','1','ds.0.color.1','0','bcbd22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367092','82054','1','ds.0.color.2','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367093','82054','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367094','82054','4','ds.0.itemids.0','0','',NULL,NULL,'45515',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367095','82054','4','ds.0.itemids.1','0','',NULL,NULL,'45516',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367096','82054','4','ds.0.itemids.2','0','',NULL,NULL,'46047',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367097','82054','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367098','82054','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367099','82054','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367100','82054','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367101','82054','1','reference','0','AAABN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367102','82054','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367103','82055','1','ds.0.color.0','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367104','82055','1','ds.0.color.1','0','33a02c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367105','82055','1','ds.0.color.2','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367106','82055','1','ds.0.color.3','0','ff7f00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367107','82055','1','ds.0.color.4','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367108','82055','1','ds.0.color.5','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367109','82055','1','ds.0.color.6','0','a6cee3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367110','82055','1','ds.0.color.7','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367111','82055','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367112','82055','4','ds.0.itemids.0','0','',NULL,NULL,'22412',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367113','82055','4','ds.0.itemids.1','0','',NULL,NULL,'47204',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367114','82055','4','ds.0.itemids.2','0','',NULL,NULL,'22406',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367115','82055','4','ds.0.itemids.3','0','',NULL,NULL,'22414',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367116','82055','4','ds.0.itemids.4','0','',NULL,NULL,'35274',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367117','82055','4','ds.0.itemids.5','0','',NULL,NULL,'23663',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367118','82055','4','ds.0.itemids.6','0','',NULL,NULL,'22426',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367119','82055','4','ds.0.itemids.7','0','',NULL,NULL,'33023',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367120','82055','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367121','82055','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367122','82055','0','legend_lines','8','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367123','82055','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367124','82055','1','reference','0','AAABO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367125','82055','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367126','82056','1','ds.0.color.0','0','cab2d6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367127','82056','1','ds.0.color.1','0','ffca58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367128','82056','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367129','82056','4','ds.0.itemids.0','0','',NULL,NULL,'22404',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367130','82056','4','ds.0.itemids.1','0','',NULL,NULL,'23171',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367131','82056','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367132','82056','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367133','82056','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367134','82056','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367135','82056','1','reference','0','AAABQ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367136','82056','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367137','82057','1','ds.0.color.0','0','17becf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367138','82057','1','ds.0.color.1','0','bcbd22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367139','82057','1','ds.0.color.2','0','d62728',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367140','82057','1','ds.0.color.3','0','ff7f00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367141','82057','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367142','82057','4','ds.0.itemids.0','0','',NULL,NULL,'25370',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367143','82057','4','ds.0.itemids.1','0','',NULL,NULL,'29822',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367144','82057','4','ds.0.itemids.2','0','',NULL,NULL,'22424',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367145','82057','4','ds.0.itemids.3','0','',NULL,NULL,'22422',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367146','82057','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367147','82057','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367148','82057','0','legend_lines','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367149','82057','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367150','82057','1','reference','0','AAABS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367151','82057','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367152','82058','1','ds.0.color.0','0','cab2d6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367153','82058','1','ds.0.color.1','0','000080',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367154','82058','1','ds.0.color.2','0','808000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367155','82058','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367156','82058','4','ds.0.itemids.0','0','',NULL,NULL,'22404',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367157','82058','4','ds.0.itemids.1','0','',NULL,NULL,'22420',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367158','82058','4','ds.0.itemids.2','0','',NULL,NULL,'47206',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367159','82058','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367160','82058','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367161','82058','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367162','82058','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367163','82058','1','reference','0','AAABU',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367164','82058','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367165','82059','1','ds.0.color.0','0','7e57c2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367166','82059','1','ds.0.color.1','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367167','82059','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367168','82059','4','ds.0.itemids.0','0','',NULL,NULL,'45495',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367169','82059','4','ds.0.itemids.1','0','',NULL,NULL,'45496',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367170','82059','0','ds.1.axisy','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367171','82059','1','ds.1.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367172','82059','0','ds.1.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367173','82059','4','ds.1.itemids.0','0','',NULL,NULL,'45494',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367174','82059','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367175','82059','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367176','82059','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367177','82059','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367178','82059','1','reference','0','AAABJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367179','82059','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367180','82060','1','ds.0.color.0','0','b2df8a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367181','82060','1','ds.0.color.1','0','ffca58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367182','82060','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367183','82060','4','ds.0.itemids.0','0','',NULL,NULL,'44786',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367184','82060','4','ds.0.itemids.1','0','',NULL,NULL,'44787',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367185','82060','0','ds.1.axisy','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367186','82060','1','ds.1.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367187','82060','0','ds.1.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367188','82060','4','ds.1.itemids.0','0','',NULL,NULL,'44785',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367189','82060','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367190','82060','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367191','82060','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367192','82060','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367193','82060','1','reference','0','AAABL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367194','82060','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367195','82061','1','ds.0.color.0','0','ffca58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367196','82061','1','ds.0.color.1','0','cab2d6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367197','82061','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367198','82061','4','ds.0.itemids.0','0','',NULL,NULL,'22408',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367199','82061','4','ds.0.itemids.1','0','',NULL,NULL,'35272',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367200','82061','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367201','82061','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367202','82061','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367203','82061','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367204','82061','1','reference','0','AAABP',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367205','82061','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367206','82062','1','ds.0.color.0','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367207','82062','1','ds.0.color.1','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367208','82062','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367209','82062','4','ds.0.itemids.0','0','',NULL,NULL,'22400',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367210','82062','4','ds.0.itemids.1','0','',NULL,NULL,'33022',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367211','82062','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367212','82062','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367213','82062','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367214','82062','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367215','82062','1','reference','0','AAABR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367216','82062','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367217','82063','1','ds.0.color.0','0','e377c2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367218','82063','1','ds.0.color.1','0','ffdf00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367219','82063','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367220','82063','4','ds.0.itemids.0','0','',NULL,NULL,'34317',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367221','82063','4','ds.0.itemids.1','0','',NULL,NULL,'34316',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367222','82063','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367223','82063','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367224','82063','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367225','82063','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367226','82063','1','reference','0','AAABT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367227','82063','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367228','82064','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367229','82064','4','itemid.0','0','',NULL,NULL,'35273',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367230','82064','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367231','82064','0','show.1','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367232','82064','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367233','82064','0','time_h_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367234','82064','0','time_size','9','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367235','82064','0','time_v_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367236','82064','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367237','82065','1','items.0','0','Cluster node [*]: Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367238','82065','1','primary_label','0',E'{{ITEM.NAME}.regsub("Cluster node \\[(.*)]: Status","\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367239','82065','1','reference','0','BAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367240','82065','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367241','82065','1','thresholds.0.color','0','b2df8a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367242','82065','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367243','82065','1','thresholds.1.color','0','878787',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367244','82065','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367245','82065','1','thresholds.2.color','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367246','82065','1','thresholds.2.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367247','82065','1','thresholds.3.color','0','33a02c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367248','82065','1','thresholds.3.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367249','82066','1','ds.0.color.0','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367250','82066','1','ds.0.color.1','0','33a02c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367251','82066','1','ds.0.color.2','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367252','82066','1','ds.0.color.3','0','ff7f00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367253','82066','1','ds.0.color.4','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367254','82066','1','ds.0.color.5','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367255','82066','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367256','82066','4','ds.0.itemids.0','0','',NULL,NULL,'49271',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367257','82066','4','ds.0.itemids.1','0','',NULL,NULL,'49258',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367258','82066','4','ds.0.itemids.2','0','',NULL,NULL,'49270',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367259','82066','4','ds.0.itemids.3','0','',NULL,NULL,'49269',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367260','82066','4','ds.0.itemids.4','0','',NULL,NULL,'49262',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367261','82066','4','ds.0.itemids.5','0','',NULL,NULL,'49267',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367262','82066','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367263','82066','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367264','82066','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367265','82066','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367266','82066','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367267','82066','1','reference','0','AAACA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367268','82066','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367269','82067','1','ds.0.color.0','0','33a02c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367270','82067','1','ds.0.color.1','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367271','82067','1','ds.0.color.2','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367272','82067','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367273','82067','4','ds.0.itemids.0','0','',NULL,NULL,'49272',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367274','82067','4','ds.0.itemids.1','0','',NULL,NULL,'49268',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367275','82067','4','ds.0.itemids.2','0','',NULL,NULL,'49204',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367276','82067','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367277','82067','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367278','82067','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367279','82067','1','reference','0','AAACC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367280','82067','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367281','82068','1','ds.0.color.0','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367282','82068','1','ds.0.color.1','0','33a02c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367283','82068','1','ds.0.color.2','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367284','82068','1','ds.0.color.3','0','ff7f00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367285','82068','1','ds.0.color.4','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367286','82068','1','ds.0.color.5','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367287','82068','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367288','82068','4','ds.0.itemids.0','0','',NULL,NULL,'49278',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367289','82068','4','ds.0.itemids.1','0','',NULL,NULL,'49273',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367290','82068','4','ds.0.itemids.2','0','',NULL,NULL,'49275',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367291','82068','4','ds.0.itemids.3','0','',NULL,NULL,'49276',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367292','82068','4','ds.0.itemids.4','0','',NULL,NULL,'49274',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367293','82068','4','ds.0.itemids.5','0','',NULL,NULL,'49277',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367294','82068','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367295','82068','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367296','82068','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367297','82068','1','reference','0','AAACD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367298','82068','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367299','82069','1','ds.0.color.0','0','33a02c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367300','82069','1','ds.0.color.1','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367301','82069','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367302','82069','4','ds.0.itemids.0','0','',NULL,NULL,'49263',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367303','82069','4','ds.0.itemids.1','0','',NULL,NULL,'49264',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367304','82069','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367305','82069','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367306','82069','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367307','82069','1','reference','0','AAACE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367308','82069','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367309','82070','1','ds.0.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367310','82070','1','ds.0.color.1','0','ffdf00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367311','82070','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367312','82070','4','ds.0.itemids.0','0','',NULL,NULL,'49910',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367313','82070','4','ds.0.itemids.1','0','',NULL,NULL,'50201',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367314','82070','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367315','82070','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367316','82070','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367317','82070','1','reference','0','AAABV',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367318','82071','1','ds.0.color.0','0','ffff99',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367319','82071','1','ds.0.color.1','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367320','82071','1','ds.0.color.2','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367321','82071','1','ds.0.color.3','0','d62728',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367322','82071','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367323','82071','4','ds.0.itemids.0','0','',NULL,NULL,'49214',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367324','82071','4','ds.0.itemids.1','0','',NULL,NULL,'49213',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367325','82071','4','ds.0.itemids.2','0','',NULL,NULL,'49212',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367326','82071','4','ds.0.itemids.3','0','',NULL,NULL,'49211',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367327','82071','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367328','82071','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367329','82071','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367330','82071','1','reference','0','AAACB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367331','82071','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367332','82072','1','ds.0.color.0','0','ffff99',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367333','82072','1','ds.0.color.1','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367334','82072','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367335','82072','4','ds.0.itemids.0','0','',NULL,NULL,'49260',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367336','82072','4','ds.0.itemids.1','0','',NULL,NULL,'49261',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367337','82072','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367338','82072','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367339','82072','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367340','82072','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367341','82072','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367342','82072','1','reference','0','AAACF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367343','82072','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367344','82073','1','ds.0.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367345','82073','1','ds.0.color.1','0','ffdf00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367346','82073','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367347','82073','4','ds.0.itemids.0','0','',NULL,NULL,'50203',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367348','82073','4','ds.0.itemids.1','0','',NULL,NULL,'50202',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367349','82073','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367350','82073','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367351','82073','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367352','82073','1','reference','0','AAABW',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367353','82074','1','ds.0.color.0','0','ffca58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367354','82074','1','ds.0.color.1','0','7e57c2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367355','82074','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367356','82074','4','ds.0.itemids.0','0','',NULL,NULL,'49238',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367357','82074','4','ds.0.itemids.1','0','',NULL,NULL,'49239',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367358','82074','0','ds.1.axisy','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367359','82074','1','ds.1.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367360','82074','0','ds.1.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367361','82074','0','ds.1.fill','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367362','82074','4','ds.1.itemids.0','0','',NULL,NULL,'49213',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367363','82074','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367364','82074','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367365','82074','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367366','82074','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367367','82074','1','reference','0','AAABI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367368','82074','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367369','82075','1','ds.0.color.0','0','ffca58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367370','82075','1','ds.0.color.1','0','7e57c2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367371','82075','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367372','82075','4','ds.0.itemids.0','0','',NULL,NULL,'49242',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367373','82075','4','ds.0.itemids.1','0','',NULL,NULL,'49243',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367374','82075','0','ds.1.axisy','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367375','82075','1','ds.1.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367376','82075','0','ds.1.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367377','82075','0','ds.1.fill','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367378','82075','4','ds.1.itemids.0','0','',NULL,NULL,'49214',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367379','82075','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367380','82075','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367381','82075','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367382','82075','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367383','82075','1','reference','0','AAABK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367384','82075','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367385','82076','1','ds.0.color.0','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367386','82076','1','ds.0.color.1','0','ff7f00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367387','82076','1','ds.0.color.2','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367388','82076','1','ds.0.color.3','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367389','82076','1','ds.0.color.4','0','17becf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367390','82076','1','ds.0.color.5','0','a6cee3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367391','82076','1','ds.0.color.6','0','fb9a99',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367392','82076','1','ds.0.color.7','0','bcbd22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367393','82076','1','ds.0.color.8','0','ffca58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367394','82076','1','ds.0.color.9','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367395','82076','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367396','82076','4','ds.0.itemids.0','0','',NULL,NULL,'49241',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367397','82076','4','ds.0.itemids.1','0','',NULL,NULL,'49234',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367398','82076','4','ds.0.itemids.2','0','',NULL,NULL,'49236',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367399','82076','4','ds.0.itemids.3','0','',NULL,NULL,'49235',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367400','82076','4','ds.0.itemids.4','0','',NULL,NULL,'49232',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367401','82076','4','ds.0.itemids.5','0','',NULL,NULL,'49237',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367402','82076','4','ds.0.itemids.6','0','',NULL,NULL,'49257',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367403','82076','4','ds.0.itemids.7','0','',NULL,NULL,'49220',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367404','82076','4','ds.0.itemids.8','0','',NULL,NULL,'49240',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367405','82076','4','ds.0.itemids.9','0','',NULL,NULL,'49233',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367406','82076','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367407','82076','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367408','82076','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367409','82076','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367410','82076','1','reference','0','AAABM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367411','82076','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367412','82077','1','ds.0.color.0','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367413','82077','1','ds.0.color.1','0','bcbd22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367414','82077','1','ds.0.color.2','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367415','82077','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367416','82077','4','ds.0.itemids.0','0','',NULL,NULL,'49215',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367417','82077','4','ds.0.itemids.1','0','',NULL,NULL,'49231',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367418','82077','4','ds.0.itemids.2','0','',NULL,NULL,'49250',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367419','82077','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367420','82077','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367421','82077','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367422','82077','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367423','82077','1','reference','0','AAABN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367424','82077','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367425','82078','1','ds.0.color.0','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367426','82078','1','ds.0.color.1','0','33a02c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367427','82078','1','ds.0.color.2','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367428','82078','1','ds.0.color.3','0','ff7f00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367429','82078','1','ds.0.color.4','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367430','82078','1','ds.0.color.5','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367431','82078','1','ds.0.color.6','0','a6cee3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367432','82078','1','ds.0.color.7','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367433','82078','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367434','82078','4','ds.0.itemids.0','0','',NULL,NULL,'49221',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367435','82078','4','ds.0.itemids.1','0','',NULL,NULL,'49222',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367436','82078','4','ds.0.itemids.2','0','',NULL,NULL,'49229',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367437','82078','4','ds.0.itemids.3','0','',NULL,NULL,'49248',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367438','82078','4','ds.0.itemids.4','0','',NULL,NULL,'49249',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367439','82078','4','ds.0.itemids.5','0','',NULL,NULL,'49252',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367440','82078','4','ds.0.itemids.6','0','',NULL,NULL,'49253',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367441','82078','4','ds.0.itemids.7','0','',NULL,NULL,'49228',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367442','82078','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367443','82078','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367444','82078','0','legend_lines','8','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367445','82078','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367446','82078','1','reference','0','AAABO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367447','82078','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367448','82079','1','ds.0.color.0','0','cab2d6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367449','82079','1','ds.0.color.1','0','ffca58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367450','82079','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367451','82079','4','ds.0.itemids.0','0','',NULL,NULL,'49254',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367452','82079','4','ds.0.itemids.1','0','',NULL,NULL,'49251',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367453','82079','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367454','82079','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367455','82079','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367456','82079','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367457','82079','1','reference','0','AAABQ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367458','82079','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367459','82080','1','ds.0.color.0','0','17becf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367460','82080','1','ds.0.color.1','0','bcbd22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367461','82080','1','ds.0.color.2','0','d62728',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367462','82080','1','ds.0.color.3','0','ff7f00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367463','82080','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367464','82080','4','ds.0.itemids.0','0','',NULL,NULL,'49217',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367465','82080','4','ds.0.itemids.1','0','',NULL,NULL,'49218',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367466','82080','4','ds.0.itemids.2','0','',NULL,NULL,'49216',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367467','82080','4','ds.0.itemids.3','0','',NULL,NULL,'49227',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367468','82080','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367469','82080','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367470','82080','0','legend_lines','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367471','82080','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367472','82080','1','reference','0','AAABS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367473','82080','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367474','82081','1','ds.0.color.0','0','cab2d6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367475','82081','1','ds.0.color.1','0','000080',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367476','82081','1','ds.0.color.2','0','808000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367477','82081','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367478','82081','4','ds.0.itemids.0','0','',NULL,NULL,'49254',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367479','82081','4','ds.0.itemids.1','0','',NULL,NULL,'49245',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367480','82081','4','ds.0.itemids.2','0','',NULL,NULL,'49244',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367481','82081','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367482','82081','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367483','82081','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367484','82081','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367485','82081','1','reference','0','AAABU',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367486','82081','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367487','82082','1','ds.0.color.0','0','7e57c2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367488','82082','1','ds.0.color.1','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367489','82082','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367490','82082','4','ds.0.itemids.0','0','',NULL,NULL,'49225',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367491','82082','4','ds.0.itemids.1','0','',NULL,NULL,'49226',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367492','82082','0','ds.1.axisy','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367493','82082','1','ds.1.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367494','82082','0','ds.1.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367495','82082','4','ds.1.itemids.0','0','',NULL,NULL,'49212',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367496','82082','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367497','82082','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367498','82082','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367499','82082','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367500','82082','1','reference','0','AAABJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367501','82082','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367502','82083','1','ds.0.color.0','0','b2df8a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367503','82083','1','ds.0.color.1','0','ffca58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367504','82083','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367505','82083','4','ds.0.itemids.0','0','',NULL,NULL,'49223',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367506','82083','4','ds.0.itemids.1','0','',NULL,NULL,'49224',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367507','82083','0','ds.1.axisy','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367508','82083','1','ds.1.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367509','82083','0','ds.1.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367510','82083','4','ds.1.itemids.0','0','',NULL,NULL,'49211',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367511','82083','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367512','82083','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367513','82083','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367514','82083','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367515','82083','1','reference','0','AAABL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367516','82083','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367517','82084','1','ds.0.color.0','0','ffca58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367518','82084','1','ds.0.color.1','0','cab2d6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367519','82084','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367520','82084','4','ds.0.itemids.0','0','',NULL,NULL,'49230',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367521','82084','4','ds.0.itemids.1','0','',NULL,NULL,'49255',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367522','82084','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367523','82084','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367524','82084','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367525','82084','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367526','82084','1','reference','0','AAABP',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367527','82084','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367528','82085','1','ds.0.color.0','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367529','82085','1','ds.0.color.1','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367530','82085','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367531','82085','4','ds.0.itemids.0','0','',NULL,NULL,'49256',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367532','82085','4','ds.0.itemids.1','0','',NULL,NULL,'49219',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367533','82085','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367534','82085','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367535','82085','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367536','82085','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367537','82085','1','reference','0','AAABR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367538','82085','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367539','82086','1','ds.0.color.0','0','e377c2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367540','82086','1','ds.0.color.1','0','ffdf00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367541','82086','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367542','82086','4','ds.0.itemids.0','0','',NULL,NULL,'49246',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367543','82086','4','ds.0.itemids.1','0','',NULL,NULL,'49247',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367544','82086','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367545','82086','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367546','82086','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367547','82086','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367548','82086','1','reference','0','AAABT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367549','82086','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367550','82087','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367551','82087','4','itemid.0','0','',NULL,NULL,'49266',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367552','82087','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367553','82087','0','show.1','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367554','82087','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367555','82087','0','time_h_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367556','82087','0','time_size','9','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367557','82087','0','time_v_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367558','82087','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367559','82088','1','items.0','0','Cluster node [*]: Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367560','82088','1','primary_label','0',E'{{ITEM.NAME}.regsub("Cluster node \\[(.*)]: Status","\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367561','82088','1','reference','0','BAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367562','82088','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367563','82088','1','thresholds.0.color','0','b2df8a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367564','82088','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367565','82088','1','thresholds.1.color','0','878787',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367566','82088','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367567','82088','1','thresholds.2.color','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367568','82088','1','thresholds.2.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367569','82088','1','thresholds.3.color','0','33a02c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367570','82088','1','thresholds.3.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367571','82089','1','ds.0.color.0','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367572','82089','1','ds.0.color.1','0','33a02c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367573','82089','1','ds.0.color.2','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367574','82089','1','ds.0.color.3','0','ff7f00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367575','82089','1','ds.0.color.4','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367576','82089','1','ds.0.color.5','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367577','82089','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367578','82089','4','ds.0.itemids.0','0','',NULL,NULL,'49340',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367579','82089','4','ds.0.itemids.1','0','',NULL,NULL,'49327',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367580','82089','4','ds.0.itemids.2','0','',NULL,NULL,'49339',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367581','82089','4','ds.0.itemids.3','0','',NULL,NULL,'49338',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367582','82089','4','ds.0.itemids.4','0','',NULL,NULL,'49331',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367583','82089','4','ds.0.itemids.5','0','',NULL,NULL,'49336',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367584','82089','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367585','82089','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367586','82089','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367587','82089','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367588','82089','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367589','82089','1','reference','0','AAACA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367590','82089','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367591','82090','1','ds.0.color.0','0','33a02c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367592','82090','1','ds.0.color.1','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367593','82090','1','ds.0.color.2','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367594','82090','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367595','82090','4','ds.0.itemids.0','0','',NULL,NULL,'49341',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367596','82090','4','ds.0.itemids.1','0','',NULL,NULL,'49337',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367597','82090','4','ds.0.itemids.2','0','',NULL,NULL,'49207',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367598','82090','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367599','82090','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367600','82090','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367601','82090','1','reference','0','AAACC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367602','82090','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367603','82091','1','ds.0.color.0','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367604','82091','1','ds.0.color.1','0','33a02c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367605','82091','1','ds.0.color.2','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367606','82091','1','ds.0.color.3','0','ff7f00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367607','82091','1','ds.0.color.4','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367608','82091','1','ds.0.color.5','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367609','82091','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367610','82091','4','ds.0.itemids.0','0','',NULL,NULL,'49347',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367611','82091','4','ds.0.itemids.1','0','',NULL,NULL,'49342',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367612','82091','4','ds.0.itemids.2','0','',NULL,NULL,'49344',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367613','82091','4','ds.0.itemids.3','0','',NULL,NULL,'49345',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367614','82091','4','ds.0.itemids.4','0','',NULL,NULL,'49343',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367615','82091','4','ds.0.itemids.5','0','',NULL,NULL,'49346',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367616','82091','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367617','82091','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367618','82091','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367619','82091','1','reference','0','AAACD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367620','82091','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367621','82092','1','ds.0.color.0','0','33a02c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367622','82092','1','ds.0.color.1','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367623','82092','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367624','82092','4','ds.0.itemids.0','0','',NULL,NULL,'49332',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367625','82092','4','ds.0.itemids.1','0','',NULL,NULL,'49333',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367626','82092','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367627','82092','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367628','82092','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367629','82092','1','reference','0','AAACE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367630','82092','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367631','82093','1','ds.0.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367632','82093','1','ds.0.color.1','0','ffdf00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367633','82093','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367634','82093','4','ds.0.itemids.0','0','',NULL,NULL,'49911',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367635','82093','4','ds.0.itemids.1','0','',NULL,NULL,'50204',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367636','82093','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367637','82093','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367638','82093','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367639','82093','1','reference','0','AAABV',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367640','82094','1','ds.0.color.0','0','ffca58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367641','82094','1','ds.0.color.1','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367642','82094','1','ds.0.color.2','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367643','82094','1','ds.0.color.3','0','d62728',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367644','82094','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367645','82094','4','ds.0.itemids.0','0','',NULL,NULL,'49283',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367646','82094','4','ds.0.itemids.1','0','',NULL,NULL,'49282',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367647','82094','4','ds.0.itemids.2','0','',NULL,NULL,'49281',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367648','82094','4','ds.0.itemids.3','0','',NULL,NULL,'49280',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367649','82094','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367650','82094','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367651','82094','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367652','82094','1','reference','0','AAACB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367653','82094','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367654','82095','1','ds.0.color.0','0','ffca58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367655','82095','1','ds.0.color.1','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367656','82095','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367657','82095','4','ds.0.itemids.0','0','',NULL,NULL,'49329',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367658','82095','4','ds.0.itemids.1','0','',NULL,NULL,'49330',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367659','82095','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367660','82095','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367661','82095','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367662','82095','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367663','82095','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367664','82095','1','reference','0','AAACF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367665','82095','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367666','82096','1','ds.0.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367667','82096','1','ds.0.color.1','0','ffdf00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367668','82096','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367669','82096','4','ds.0.itemids.0','0','',NULL,NULL,'50206',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367670','82096','4','ds.0.itemids.1','0','',NULL,NULL,'50205',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367671','82096','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367672','82096','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367673','82096','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367674','82096','1','reference','0','AAABW',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367675','82097','1','ds.0.color.0','0','ffca58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367676','82097','1','ds.0.color.1','0','7e57c2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367677','82097','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367678','82097','4','ds.0.itemids.0','0','',NULL,NULL,'49307',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367679','82097','4','ds.0.itemids.1','0','',NULL,NULL,'49308',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367680','82097','0','ds.1.axisy','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367681','82097','1','ds.1.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367682','82097','0','ds.1.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367683','82097','0','ds.1.fill','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367684','82097','4','ds.1.itemids.0','0','',NULL,NULL,'49282',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367685','82097','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367686','82097','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367687','82097','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367688','82097','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367689','82097','1','reference','0','AAABI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367690','82097','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367691','82098','1','ds.0.color.0','0','ffca58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367692','82098','1','ds.0.color.1','0','7e57c2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367693','82098','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367694','82098','4','ds.0.itemids.0','0','',NULL,NULL,'49311',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367695','82098','4','ds.0.itemids.1','0','',NULL,NULL,'49312',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367696','82098','0','ds.1.axisy','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367697','82098','1','ds.1.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367698','82098','0','ds.1.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367699','82098','0','ds.1.fill','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367700','82098','4','ds.1.itemids.0','0','',NULL,NULL,'49283',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367701','82098','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367702','82098','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367703','82098','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367704','82098','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367705','82098','1','reference','0','AAABK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367706','82098','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367707','82099','1','ds.0.color.0','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367708','82099','1','ds.0.color.1','0','ff7f00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367709','82099','1','ds.0.color.2','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367710','82099','1','ds.0.color.3','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367711','82099','1','ds.0.color.4','0','17becf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367712','82099','1','ds.0.color.5','0','a6cee3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367713','82099','1','ds.0.color.6','0','fb9a99',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367714','82099','1','ds.0.color.7','0','bcbd22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367715','82099','1','ds.0.color.8','0','ffca58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367716','82099','1','ds.0.color.9','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367717','82099','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367718','82099','4','ds.0.itemids.0','0','',NULL,NULL,'49310',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367719','82099','4','ds.0.itemids.1','0','',NULL,NULL,'49303',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367720','82099','4','ds.0.itemids.2','0','',NULL,NULL,'49305',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367721','82099','4','ds.0.itemids.3','0','',NULL,NULL,'49304',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367722','82099','4','ds.0.itemids.4','0','',NULL,NULL,'49301',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367723','82099','4','ds.0.itemids.5','0','',NULL,NULL,'49306',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367724','82099','4','ds.0.itemids.6','0','',NULL,NULL,'49326',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367725','82099','4','ds.0.itemids.7','0','',NULL,NULL,'49289',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367726','82099','4','ds.0.itemids.8','0','',NULL,NULL,'49309',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367727','82099','4','ds.0.itemids.9','0','',NULL,NULL,'49302',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367728','82099','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367729','82099','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367730','82099','0','legend_lines','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367731','82099','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367732','82099','1','reference','0','AAABM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367733','82099','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367734','82100','1','ds.0.color.0','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367735','82100','1','ds.0.color.1','0','bcbd22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367736','82100','1','ds.0.color.2','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367737','82100','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367738','82100','4','ds.0.itemids.0','0','',NULL,NULL,'49284',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367739','82100','4','ds.0.itemids.1','0','',NULL,NULL,'49300',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367740','82100','4','ds.0.itemids.2','0','',NULL,NULL,'49319',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367741','82100','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367742','82100','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367743','82100','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367744','82100','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367745','82100','1','reference','0','AAABN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367746','82100','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367747','82101','1','ds.0.color.0','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367748','82101','1','ds.0.color.1','0','33a02c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367749','82101','1','ds.0.color.2','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367750','82101','1','ds.0.color.3','0','ff7f00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367751','82101','1','ds.0.color.4','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367752','82101','1','ds.0.color.5','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367753','82101','1','ds.0.color.6','0','a6cee3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367754','82101','1','ds.0.color.7','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367755','82101','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367756','82101','4','ds.0.itemids.0','0','',NULL,NULL,'49290',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367757','82101','4','ds.0.itemids.1','0','',NULL,NULL,'49291',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367758','82101','4','ds.0.itemids.2','0','',NULL,NULL,'49298',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367759','82101','4','ds.0.itemids.3','0','',NULL,NULL,'49317',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367760','82101','4','ds.0.itemids.4','0','',NULL,NULL,'49318',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367761','82101','4','ds.0.itemids.5','0','',NULL,NULL,'49321',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367762','82101','4','ds.0.itemids.6','0','',NULL,NULL,'49322',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367763','82101','4','ds.0.itemids.7','0','',NULL,NULL,'49297',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367764','82101','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367765','82101','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367766','82101','0','legend_lines','8','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367767','82101','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367768','82101','1','reference','0','AAABO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367769','82101','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367770','82102','1','ds.0.color.0','0','cab2d6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367771','82102','1','ds.0.color.1','0','ffca58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367772','82102','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367773','82102','4','ds.0.itemids.0','0','',NULL,NULL,'49323',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367774','82102','4','ds.0.itemids.1','0','',NULL,NULL,'49320',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367775','82102','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367776','82102','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367777','82102','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367778','82102','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367779','82102','1','reference','0','AAABQ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367780','82102','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367781','82103','1','ds.0.color.0','0','17becf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367782','82103','1','ds.0.color.1','0','bcbd22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367783','82103','1','ds.0.color.2','0','d62728',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367784','82103','1','ds.0.color.3','0','ff7f00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367785','82103','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367786','82103','4','ds.0.itemids.0','0','',NULL,NULL,'49286',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367787','82103','4','ds.0.itemids.1','0','',NULL,NULL,'49287',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367788','82103','4','ds.0.itemids.2','0','',NULL,NULL,'49285',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367789','82103','4','ds.0.itemids.3','0','',NULL,NULL,'49296',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367790','82103','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367791','82103','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367792','82103','0','legend_lines','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367793','82103','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367794','82103','1','reference','0','AAABS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367795','82103','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367796','82104','1','ds.0.color.0','0','cab2d6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367797','82104','1','ds.0.color.1','0','000080',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367798','82104','1','ds.0.color.2','0','808000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367799','82104','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367800','82104','4','ds.0.itemids.0','0','',NULL,NULL,'49323',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367801','82104','4','ds.0.itemids.1','0','',NULL,NULL,'49314',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367802','82104','4','ds.0.itemids.2','0','',NULL,NULL,'49313',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367803','82104','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367804','82104','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367805','82104','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367806','82104','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367807','82104','1','reference','0','AAABU',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367808','82104','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367809','82105','1','ds.0.color.0','0','7e57c2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367810','82105','1','ds.0.color.1','0','1f78b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367811','82105','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367812','82105','4','ds.0.itemids.0','0','',NULL,NULL,'49294',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367813','82105','4','ds.0.itemids.1','0','',NULL,NULL,'49295',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367814','82105','0','ds.1.axisy','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367815','82105','1','ds.1.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367816','82105','0','ds.1.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367817','82105','4','ds.1.itemids.0','0','',NULL,NULL,'49281',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367818','82105','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367819','82105','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367820','82105','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367821','82105','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367822','82105','1','reference','0','AAABJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367823','82105','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367824','82106','1','ds.0.color.0','0','b2df8a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367825','82106','1','ds.0.color.1','0','ffca58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367826','82106','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367827','82106','4','ds.0.itemids.0','0','',NULL,NULL,'49292',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367828','82106','4','ds.0.itemids.1','0','',NULL,NULL,'49293',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367829','82106','0','ds.1.axisy','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367830','82106','1','ds.1.color.0','0','ff465c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367831','82106','0','ds.1.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367832','82106','4','ds.1.itemids.0','0','',NULL,NULL,'49280',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367833','82106','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367834','82106','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367835','82106','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367836','82106','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367837','82106','1','reference','0','AAABL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367838','82106','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367839','82107','1','ds.0.color.0','0','ffca58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367840','82107','1','ds.0.color.1','0','cab2d6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367841','82107','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367842','82107','4','ds.0.itemids.0','0','',NULL,NULL,'49299',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367843','82107','4','ds.0.itemids.1','0','',NULL,NULL,'49324',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367844','82107','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367845','82107','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367846','82107','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367847','82107','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367848','82107','1','reference','0','AAABP',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367849','82107','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367850','82108','1','ds.0.color.0','0','6a3d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367851','82108','1','ds.0.color.1','0','b15928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367852','82108','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367853','82108','4','ds.0.itemids.0','0','',NULL,NULL,'49325',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367854','82108','4','ds.0.itemids.1','0','',NULL,NULL,'49288',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367855','82108','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367856','82108','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367857','82108','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367858','82108','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367859','82108','1','reference','0','AAABR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367860','82108','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367861','82109','1','ds.0.color.0','0','e377c2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367862','82109','1','ds.0.color.1','0','ffdf00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367863','82109','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367864','82109','4','ds.0.itemids.0','0','',NULL,NULL,'49315',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367865','82109','4','ds.0.itemids.1','0','',NULL,NULL,'49316',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367866','82109','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367867','82109','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367868','82109','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367869','82109','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367870','82109','1','reference','0','AAABT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367871','82109','0','show_problems','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367872','82110','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367873','82110','4','itemid.0','0','',NULL,NULL,'49335',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367874','82110','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367875','82110','0','show.1','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367876','82110','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367877','82110','0','time_h_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367878','82110','0','time_size','9','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367879','82110','0','time_v_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367880','82110','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367881','82111','1','items.0','0','Cluster node [*]: Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367882','82111','1','primary_label','0',E'{{ITEM.NAME}.regsub("Cluster node \\[(.*)]: Status","\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367883','82111','1','reference','0','BAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367884','82111','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367885','82111','1','thresholds.0.color','0','b2df8a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367886','82111','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367887','82111','1','thresholds.1.color','0','878787',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367888','82111','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367889','82111','1','thresholds.2.color','0','e31a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367890','82111','1','thresholds.2.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367891','82111','1','thresholds.3.color','0','33a02c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367892','82111','1','thresholds.3.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367893','82112','4','itemid.0','0','',NULL,NULL,'32975',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367894','82112','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367895','82113','6','graphid.0','0','',NULL,NULL,NULL,'1442',NULL,NULL,NULL,NULL,NULL,NULL), ('367896','82113','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367897','82114','6','graphid.0','0','',NULL,NULL,NULL,'1441',NULL,NULL,NULL,NULL,NULL,NULL), ('367898','82114','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367899','82115','4','itemid.0','0','',NULL,NULL,'32977',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367900','82115','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367901','82115','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367902','82116','4','itemid.0','0','',NULL,NULL,'32978',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367903','82116','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367904','82117','6','graphid.0','0','',NULL,NULL,NULL,'1443',NULL,NULL,NULL,NULL,NULL,NULL), ('367905','82117','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367906','82118','6','graphid.0','0','',NULL,NULL,NULL,'1440',NULL,NULL,NULL,NULL,NULL,NULL), ('367907','82118','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367908','82119','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367909','82119','7','graphid.0','0','',NULL,NULL,NULL,'1438',NULL,NULL,NULL,NULL,NULL,NULL), ('367910','82119','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367911','82119','0','rows','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367912','82120','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367913','82120','7','graphid.0','0','',NULL,NULL,NULL,'1439',NULL,NULL,NULL,NULL,NULL,NULL), ('367914','82120','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367915','82120','0','rows','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367916','82121','6','graphid.0','0','',NULL,NULL,NULL,'1503',NULL,NULL,NULL,NULL,NULL,NULL), ('367917','82121','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367918','82122','6','graphid.0','0','',NULL,NULL,NULL,'1504',NULL,NULL,NULL,NULL,NULL,NULL), ('367919','82122','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367920','82123','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367921','82123','4','itemid.0','0','',NULL,NULL,'50018',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367922','82123','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367923','82123','0','value_size','60','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367924','82124','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367925','82124','4','itemid.0','0','',NULL,NULL,'50019',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367926','82124','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367927','82124','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367928','82124','0','value_size','60','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367929','82125','0','group_by.0.attribute','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367930','82125','1','group_by.0.tag_name','0','resource_type',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367931','82125','0','group_by.1.attribute','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367932','82125','1','group_by.1.tag_name','0','resource_name',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367933','82125','1','items.0','0','Job state [*]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367934','82125','1','reference','0','DTQLA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367935','82125','0','show_lines','300','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367936','82126','1','description','0','Selected job status:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367937','82126','0','desc_h_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367938','82126','0','desc_size','60','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367939','82126','0','desc_v_pos','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367940','82126','1','itemid._reference','0','DTQLA._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367941','82126','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367942','82126','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367943','82126','0','value_h_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367944','82126','0','value_size','60','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367945','82127','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367946','82127','4','itemid.0','0','',NULL,NULL,'50023',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367947','82127','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367948','82127','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367949','82127','0','value_size','60','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367950','82128','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367951','82128','4','itemid.0','0','',NULL,NULL,'50032',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367952','82128','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367953','82128','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367954','82128','0','value_size','60','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367955','82129','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367956','82129','4','itemid.0','0','',NULL,NULL,'50021',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367957','82129','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367958','82129','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367959','82129','0','value_size','60','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367960','82130','1','items.0','0','Job state [*]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367961','82130','1','reference','0','ZMGLG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367962','82130','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367963','82130','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367964','82130','1','thresholds.0.color','0','EC1594',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367965','82130','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367966','82130','1','thresholds.1.color','0','6AC8FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367967','82130','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367968','82130','1','thresholds.2.color','0','6AC8FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367969','82130','1','thresholds.2.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367970','82130','1','thresholds.3.color','0','00A1FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367971','82130','1','thresholds.3.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367972','82130','1','thresholds.4.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367973','82130','1','thresholds.4.threshold','0','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367974','82130','1','thresholds.5.color','0','BF00FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367975','82130','1','thresholds.5.threshold','0','5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367976','82130','1','thresholds.6.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367977','82130','1','thresholds.6.threshold','0','6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367978','82130','1','thresholds.7.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367979','82130','1','thresholds.7.threshold','0','7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367980','82130','1','thresholds.8.color','0','BAE37D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367981','82130','1','thresholds.8.threshold','0','8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367982','82131','1','description','0',E'{{ITEM.NAME}.regsub("(Job state \\[)(.*)(, )(.*)(\\])","Resource: \\2, Job ID: \\4")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367983','82131','0','desc_h_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367984','82131','0','desc_size','60','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367985','82131','0','desc_v_pos','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367986','82131','1','itemid._reference','0','ZMGLG._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367987','82131','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367988','82131','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367989','82131','0','value_h_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367990','82131','0','value_size','60','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367991','82132','0','decimal_places','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367992','82132','4','itemid.0','0','',NULL,NULL,'50025',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367993','82132','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367994','82132','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367995','82132','0','value_size','60','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367996','82133','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367997','82133','4','itemid.0','0','',NULL,NULL,'50028',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367998','82133','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('367999','82133','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368000','82133','0','value_size','60','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368001','82134','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368002','82134','4','itemid.0','0','',NULL,NULL,'50030',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368003','82134','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368004','82134','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368005','82134','0','value_size','60','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368006','82135','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368007','82135','4','itemid.0','0','',NULL,NULL,'50035',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368008','82135','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368009','82135','0','value_size','60','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368010','82136','7','graphid.0','0','',NULL,NULL,NULL,'2526',NULL,NULL,NULL,NULL,NULL,NULL), ('368011','82136','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368012','82136','0','rows','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368013','82137','7','graphid.0','0','',NULL,NULL,NULL,'2524',NULL,NULL,NULL,NULL,NULL,NULL), ('368014','82137','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368015','82137','0','rows','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368016','82138','7','graphid.0','0','',NULL,NULL,NULL,'2525',NULL,NULL,NULL,NULL,NULL,NULL), ('368017','82138','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368018','82138','0','rows','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368019','82139','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368020','82139','4','itemid.0','0','',NULL,NULL,'45540',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368021','82139','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368022','82140','6','graphid.0','0','',NULL,NULL,NULL,'2530',NULL,NULL,NULL,NULL,NULL,NULL), ('368023','82140','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368024','82141','6','graphid.0','0','',NULL,NULL,NULL,'2531',NULL,NULL,NULL,NULL,NULL,NULL), ('368025','82141','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368026','82142','6','graphid.0','0','',NULL,NULL,NULL,'2532',NULL,NULL,NULL,NULL,NULL,NULL), ('368027','82142','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368028','82143','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368029','82143','4','itemid.0','0','',NULL,NULL,'45541',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368030','82143','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368031','82144','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368032','82144','4','itemid.0','0','',NULL,NULL,'45533',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368033','82144','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368034','82145','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368035','82145','7','graphid.0','0','',NULL,NULL,NULL,'2527',NULL,NULL,NULL,NULL,NULL,NULL), ('368036','82145','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368037','82146','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368038','82146','7','graphid.0','0','',NULL,NULL,NULL,'2528',NULL,NULL,NULL,NULL,NULL,NULL), ('368039','82146','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368040','82147','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368041','82147','7','graphid.0','0','',NULL,NULL,NULL,'2529',NULL,NULL,NULL,NULL,NULL,NULL), ('368042','82147','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368043','82148','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368044','82148','4','itemid.0','0','',NULL,NULL,'45572',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368045','82148','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368046','82149','6','graphid.0','0','',NULL,NULL,NULL,'2536',NULL,NULL,NULL,NULL,NULL,NULL), ('368047','82149','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368048','82150','6','graphid.0','0','',NULL,NULL,NULL,'2538',NULL,NULL,NULL,NULL,NULL,NULL), ('368049','82150','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368050','82151','6','graphid.0','0','',NULL,NULL,NULL,'2537',NULL,NULL,NULL,NULL,NULL,NULL), ('368051','82151','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368052','82152','6','graphid.0','0','',NULL,NULL,NULL,'2539',NULL,NULL,NULL,NULL,NULL,NULL), ('368053','82152','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368054','82153','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368055','82153','4','itemid.0','0','',NULL,NULL,'45573',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368056','82153','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368057','82154','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368058','82154','4','itemid.0','0','',NULL,NULL,'45563',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368059','82154','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368060','82155','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368061','82155','7','graphid.0','0','',NULL,NULL,NULL,'2533',NULL,NULL,NULL,NULL,NULL,NULL), ('368062','82155','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368063','82156','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368064','82156','7','graphid.0','0','',NULL,NULL,NULL,'2534',NULL,NULL,NULL,NULL,NULL,NULL), ('368065','82156','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368066','82157','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368067','82157','7','graphid.0','0','',NULL,NULL,NULL,'2535',NULL,NULL,NULL,NULL,NULL,NULL), ('368068','82157','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368069','82158','1','ds.0.color.0','0','FFA726',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368070','82158','1','ds.0.color.1','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368071','82158','1','ds.0.color.2','0','FF5722',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368072','82158','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368073','82158','4','ds.0.itemids.0','0','',NULL,NULL,'46463',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368074','82158','4','ds.0.itemids.1','0','',NULL,NULL,'46464',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368075','82158','4','ds.0.itemids.2','0','',NULL,NULL,'46465',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368076','82158','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368077','82158','0','simple_triggers','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368078','82158','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368079','82159','1','ds.0.color.0','0','4CAF50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368080','82159','1','ds.0.color.1','0','0080FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368081','82159','1','ds.0.color.2','0','CC6600',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368082','82159','1','ds.0.color.3','0','B71C1C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368083','82159','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368084','82159','4','ds.0.itemids.0','0','',NULL,NULL,'46454',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368085','82159','4','ds.0.itemids.1','0','',NULL,NULL,'46474',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368086','82159','4','ds.0.itemids.2','0','',NULL,NULL,'46477',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368087','82159','4','ds.0.itemids.3','0','',NULL,NULL,'46480',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368088','82159','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368089','82159','0','simple_triggers','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368090','82159','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368091','82160','1','ds.0.color.0','0','0080FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368092','82160','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368093','82160','4','ds.0.itemids.0','0','',NULL,NULL,'46478',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368094','82160','0','ds.1.axisy','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368095','82160','1','ds.1.color.0','0','B0AF07',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368096','82160','0','ds.1.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368097','82160','4','ds.1.itemids.0','0','',NULL,NULL,'46481',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368098','82160','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368099','82160','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368100','82161','1','ds.0.color.0','0','78909C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368101','82161','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368102','82161','4','ds.0.itemids.0','0','',NULL,NULL,'46461',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368103','82161','0','ds.1.axisy','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368104','82161','1','ds.1.color.0','0','AB47BC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368105','82161','0','ds.1.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368106','82161','4','ds.1.itemids.0','0','',NULL,NULL,'46476',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368107','82161','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368108','82161','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368109','82162','0','draw_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368110','82162','1','ds.0.color','0','00FF00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368111','82162','1','ds.0.data_set_label','0','Healthy Host Count',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368112','82162','1','ds.0.items.0','0','*: Healthy Host Count',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368113','82162','0','legend_aggregation','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368114','82162','0','total_show','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368115','82163','1','ds.0.data_set_label','0','HTTP Code Target Group',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368116','82163','1','ds.0.items.0','0','*: HTTP Code Target*',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368117','82163','0','ds.0.transparency','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368118','82163','0','ds.0.type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368119','82163','1','reference','0','QZUQY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368120','82164','1','ds.0.color','0','388E3C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368121','82164','1','ds.0.data_set_label','0','Request Count Per Target',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368122','82164','0','ds.0.fill','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368123','82164','1','ds.0.items.0','0','*: Request Count Per Target',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368124','82164','0','ds.0.missingdatafunc','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368125','82164','0','ds.0.transparency','7','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368126','82164','0','ds.0.width','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368127','82164','1','reference','0','COJBR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368128','82165','0','draw_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368129','82165','1','ds.0.data_set_label','0','Unhealthy Host Count',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368130','82165','1','ds.0.items.0','0','*: Unhealthy Host Count',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368131','82165','0','legend_aggregation','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368132','82165','0','total_show','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368133','82166','0','draw_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368134','82166','1','ds.0.color','0','00897B',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368135','82166','1','ds.0.data_set_label','0','Healthy State Routing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368136','82166','1','ds.0.items.0','0','*: Healthy State Routing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368137','82166','0','legend_aggregation','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368138','82166','0','total_show','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368139','82167','0','draw_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368140','82167','1','ds.0.data_set_label','0','Unhealthy State Routing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368141','82167','1','ds.0.items.0','0','*: Unhealthy State Routing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368142','82167','0','legend_aggregation','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368143','82167','0','total_show','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368144','82168','0','draw_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368145','82168','1','ds.0.color','0','283593',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368146','82168','1','ds.0.data_set_label','0','Healthy State DNS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368147','82168','1','ds.0.items.0','0','*: Healthy State DNS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368148','82168','0','legend_aggregation','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368149','82168','0','total_show','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368150','82169','0','draw_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368151','82169','1','ds.0.data_set_label','0','Unhealthy State DNS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368152','82169','1','ds.0.items.0','0','*: Unhealthy State DNS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368153','82169','0','legend_aggregation','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368154','82169','0','total_show','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368155','82170','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368156','82170','4','itemid.0','0','',NULL,NULL,'47088',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368157','82170','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368158','82171','6','graphid.0','0','',NULL,NULL,NULL,'2761',NULL,NULL,NULL,NULL,NULL,NULL), ('368159','82171','1','reference','0','BDBEE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368160','82172','6','graphid.0','0','',NULL,NULL,NULL,'2752',NULL,NULL,NULL,NULL,NULL,NULL), ('368161','82172','1','reference','0','CFDBA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368162','82173','6','graphid.0','0','',NULL,NULL,NULL,'2756',NULL,NULL,NULL,NULL,NULL,NULL), ('368163','82173','1','reference','0','DECEC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368164','82174','6','graphid.0','0','',NULL,NULL,NULL,'2762',NULL,NULL,NULL,NULL,NULL,NULL), ('368165','82174','1','reference','0','ADEED',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368166','82175','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368167','82175','7','graphid.0','0','',NULL,NULL,NULL,'2750',NULL,NULL,NULL,NULL,NULL,NULL), ('368168','82175','1','reference','0','FDEFC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368169','82176','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368170','82176','7','graphid.0','0','',NULL,NULL,NULL,'2751',NULL,NULL,NULL,NULL,NULL,NULL), ('368171','82176','1','reference','0','EAAFA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368172','82177','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368173','82177','4','itemid.0','0','',NULL,NULL,'47104',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368174','82177','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368175','82178','6','graphid.0','0','',NULL,NULL,NULL,'2765',NULL,NULL,NULL,NULL,NULL,NULL), ('368176','82178','1','reference','0','CCAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368177','82179','6','graphid.0','0','',NULL,NULL,NULL,'2757',NULL,NULL,NULL,NULL,NULL,NULL), ('368178','82179','1','reference','0','BEEDA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368179','82180','6','graphid.0','0','',NULL,NULL,NULL,'2753',NULL,NULL,NULL,NULL,NULL,NULL), ('368180','82180','1','reference','0','FEBCF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368181','82181','6','graphid.0','0','',NULL,NULL,NULL,'2763',NULL,NULL,NULL,NULL,NULL,NULL), ('368182','82181','1','reference','0','ECBEF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368183','82182','6','graphid.0','0','',NULL,NULL,NULL,'2766',NULL,NULL,NULL,NULL,NULL,NULL), ('368184','82182','1','reference','0','CEAFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368185','82183','6','graphid.0','0','',NULL,NULL,NULL,'2758',NULL,NULL,NULL,NULL,NULL,NULL), ('368186','82183','1','reference','0','DDCEF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368187','82184','6','graphid.0','0','',NULL,NULL,NULL,'2754',NULL,NULL,NULL,NULL,NULL,NULL), ('368188','82184','1','reference','0','FABDD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368189','82185','6','graphid.0','0','',NULL,NULL,NULL,'2759',NULL,NULL,NULL,NULL,NULL,NULL), ('368190','82185','1','reference','0','AEAEF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368191','82186','6','graphid.0','0','',NULL,NULL,NULL,'2755',NULL,NULL,NULL,NULL,NULL,NULL), ('368192','82186','1','reference','0','EBDBF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368193','82187','6','graphid.0','0','',NULL,NULL,NULL,'2764',NULL,NULL,NULL,NULL,NULL,NULL), ('368194','82187','1','reference','0','CFFDB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368195','82188','6','graphid.0','0','',NULL,NULL,NULL,'2815',NULL,NULL,NULL,NULL,NULL,NULL), ('368196','82188','1','reference','0','ECCBA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368197','82189','6','graphid.0','0','',NULL,NULL,NULL,'2814',NULL,NULL,NULL,NULL,NULL,NULL), ('368198','82189','1','reference','0','DBBFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368199','82190','6','graphid.0','0','',NULL,NULL,NULL,'2813',NULL,NULL,NULL,NULL,NULL,NULL), ('368200','82190','1','reference','0','FBDDF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368201','82191','6','graphid.0','0','',NULL,NULL,NULL,'2816',NULL,NULL,NULL,NULL,NULL,NULL), ('368202','82191','1','reference','0','BDAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368203','82192','6','graphid.0','0','',NULL,NULL,NULL,'2811',NULL,NULL,NULL,NULL,NULL,NULL), ('368204','82192','1','reference','0','CAADA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368205','82193','6','graphid.0','0','',NULL,NULL,NULL,'2810',NULL,NULL,NULL,NULL,NULL,NULL), ('368206','82193','1','reference','0','EAFEB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368207','82194','6','graphid.0','0','',NULL,NULL,NULL,'2809',NULL,NULL,NULL,NULL,NULL,NULL), ('368208','82194','1','reference','0','ECADD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368209','82195','6','graphid.0','0','',NULL,NULL,NULL,'2812',NULL,NULL,NULL,NULL,NULL,NULL), ('368210','82195','1','reference','0','CAECA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368211','82196','6','graphid.0','0','',NULL,NULL,NULL,'2817',NULL,NULL,NULL,NULL,NULL,NULL), ('368212','82196','1','reference','0','CFEBE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368213','82197','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368214','82197','4','itemid.0','0','',NULL,NULL,'49877',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368215','82197','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368216','82197','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368217','82197','0','value_size','60','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368218','82198','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368219','82198','4','itemid.0','0','',NULL,NULL,'49869',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368220','82198','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368221','82198','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368222','82198','0','value_size','60','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368223','82199','0','group_by.0.attribute','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368224','82199','1','group_by.0.tag_name','0','resource',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368225','82199','1','items.0','0','Job status [*]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368226','82199','1','reference','0','EBACA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368227','82200','1','description','0','Selected job status:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368228','82200','0','desc_h_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368229','82200','0','desc_size','60','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368230','82200','0','desc_v_pos','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368231','82200','1','itemid._reference','0','EBACA._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368232','82200','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368233','82200','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368234','82200','0','value_h_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368235','82200','0','value_size','60','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368236','82201','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368237','82201','4','itemid.0','0','',NULL,NULL,'49875',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368238','82201','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368239','82201','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368240','82201','1','thresholds.0.color','0','00A1FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368241','82201','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368242','82201','0','value_size','60','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368243','82202','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368244','82202','4','itemid.0','0','',NULL,NULL,'49876',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368245','82202','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368246','82202','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368247','82202','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368248','82202','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368249','82202','0','value_size','60','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368250','82203','1','items.0','0','Job status [*]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368251','82203','1','reference','0','AFAEA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368252','82203','1','secondary_label','0',E'{{ITEM.NAME}.regsub("(Job status \\[)(.*)(,.*\\])","\\2")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368253','82203','0','secondary_label_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368254','82203','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368255','82203','1','thresholds.0.color','0','EC1594',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368256','82203','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368257','82203','1','thresholds.1.color','0','00A1FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368258','82203','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368259','82203','1','thresholds.2.color','0','6AC8FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368260','82203','1','thresholds.2.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368261','82203','1','thresholds.3.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368262','82203','1','thresholds.3.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368263','82203','1','thresholds.4.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368264','82203','1','thresholds.4.threshold','0','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368265','82203','1','thresholds.5.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368266','82203','1','thresholds.5.threshold','0','5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368267','82203','1','thresholds.6.color','0','BF00FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368268','82203','1','thresholds.6.threshold','0','6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368269','82203','1','thresholds.7.color','0','BAE37D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368270','82203','1','thresholds.7.threshold','0','7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368271','82204','1','description','0',E'{{ITEM.NAME}.regsub("(Job status \\[)(.*)(, )(.*)(\\])","Resource: \\2, Job ID: \\4")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368272','82204','0','desc_h_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368273','82204','0','desc_size','60','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368274','82204','0','desc_v_pos','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368275','82204','1','itemid._reference','0','AFAEA._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368276','82204','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368277','82204','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368278','82204','0','value_h_pos','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368279','82204','0','value_size','60','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368280','82205','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368281','82205','4','itemid.0','0','',NULL,NULL,'49874',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368282','82205','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368283','82205','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368284','82205','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368285','82205','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368286','82205','0','value_size','60','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368287','82206','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368288','82206','4','itemid.0','0','',NULL,NULL,'49871',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368289','82206','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368290','82206','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368291','82206','1','thresholds.0.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368292','82206','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368293','82206','0','value_size','60','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368294','82207','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368295','82207','4','itemid.0','0','',NULL,NULL,'49872',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368296','82207','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368297','82207','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368298','82207','1','thresholds.0.color','0','BF00FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368299','82207','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368300','82207','0','value_size','60','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368301','82208','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368302','82208','4','itemid.0','0','',NULL,NULL,'49870',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368303','82208','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368304','82208','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368305','82208','1','thresholds.0.color','0','6AC8FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368306','82208','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368307','82208','0','value_size','60','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368308','82209','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368309','82209','4','itemid.0','0','',NULL,NULL,'49873',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368310','82209','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368311','82209','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368312','82209','1','thresholds.0.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368313','82209','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368314','82209','0','value_size','60','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368315','82210','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368316','82210','4','itemid.0','0','',NULL,NULL,'49878',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368317','82210','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368318','82210','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368319','82210','1','thresholds.0.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368320','82210','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368321','82210','0','value_size','60','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368322','82211','7','graphid.0','0','',NULL,NULL,NULL,'2484',NULL,NULL,NULL,NULL,NULL,NULL), ('368323','82211','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368324','82211','0','rows','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368325','82212','7','graphid.0','0','',NULL,NULL,NULL,'2611',NULL,NULL,NULL,NULL,NULL,NULL), ('368326','82212','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368327','82212','0','rows','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368328','82213','7','graphid.0','0','',NULL,NULL,NULL,'2612',NULL,NULL,NULL,NULL,NULL,NULL), ('368329','82213','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368330','82213','0','rows','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368331','82214','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368332','82214','1','down_color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368333','82214','4','itemid.0','0','',NULL,NULL,'44801',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368334','82214','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368335','82214','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368336','82214','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368337','82214','1','units_color','0','66BB6A',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368338','82214','1','up_color','0','4CAF50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368339','82214','1','value_color','0','66BB6A',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368340','82215','6','graphid.0','0','',NULL,NULL,NULL,'2487',NULL,NULL,NULL,NULL,NULL,NULL), ('368341','82215','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368342','82216','6','graphid.0','0','',NULL,NULL,NULL,'2486',NULL,NULL,NULL,NULL,NULL,NULL), ('368343','82216','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368344','82217','6','graphid.0','0','',NULL,NULL,NULL,'2485',NULL,NULL,NULL,NULL,NULL,NULL), ('368345','82217','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368346','82218','4','itemid.0','0','',NULL,NULL,'44806',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368347','82218','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368348','82219','4','itemid.0','0','',NULL,NULL,'44807',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368349','82219','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368350','82219','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368351','82220','4','itemid.0','0','',NULL,NULL,'44815',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368352','82220','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368353','82221','0','group_by.0.attribute','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368354','82221','1','group_by.0.tag_name','0','month',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368355','82221','1','items.0','0','Month ["*"] cost',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368356','82221','1','reference','0','JZQAJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368357','82222','0','group_by.0.attribute','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368358','82222','1','group_by.0.tag_name','0','service',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368359','82222','0','group_by.1.attribute','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368360','82222','1','group_by.1.tag_name','0','month',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368361','82222','1','items.0','0','Service ["*"]: Month ["*"] cost',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368362','82222','1','reference','0','AJICL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368363','82222','0','show_lines','200','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368364','82223','0','draw_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368365','82223','1','ds.0.color.0','0','4CAF50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368366','82223','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368367','82223','1','ds.0.itemids.0._reference','0','JZQAJ._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368368','82223','0','ds.0.type.0','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368369','82223','1','ds.1.color.0','0','1565C0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368370','82223','0','ds.1.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368371','82223','1','ds.1.itemids.0._reference','0','AJICL._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368372','82223','0','ds.1.type.0','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368373','82223','1','ds.2.color.0','0','795548',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368374','82223','0','ds.2.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368375','82223','1','ds.2.itemids.0._reference','0','PEIIF._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368376','82223','0','ds.2.type.0','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368377','82223','1','ds.3.color.0','0','E65100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368378','82223','0','ds.3.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368379','82223','1','ds.3.itemids.0._reference','0','JRCGU._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368380','82223','0','ds.3.type.0','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368381','82223','0','legend_lines','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368382','82223','0','legend_value','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368383','82223','0','space','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368384','82223','0','stroke','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368385','82224','0','group_by.0.attribute','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368386','82224','1','group_by.0.tag_name','0','location',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368387','82224','0','group_by.1.attribute','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368388','82224','1','group_by.1.tag_name','0','month',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368389','82224','1','items.0','0','Location: ["*"]: Month ["*"] cost',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368390','82224','1','reference','0','PEIIF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368391','82224','0','show_lines','200','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368392','82225','0','group_by.0.attribute','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368393','82225','1','group_by.0.tag_name','0','resource-group',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368394','82225','0','group_by.1.attribute','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368395','82225','1','group_by.1.tag_name','0','month',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368396','82225','1','items.0','0','Resource group: ["*"]: Month ["*"] cost',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368397','82225','1','reference','0','JRCGU',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368398','82225','0','show_lines','200','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368399','82226','0','group_by.0.attribute','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368400','82226','1','group_by.0.tag_name','0','service',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368401','82226','0','group_by.1.attribute','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368402','82226','1','group_by.1.tag_name','0','resource-group',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368403','82226','1','items.0','0','Service ["*"]: Meter ["*"]: Subcategory ["*"] daily cost',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368404','82226','1','reference','0','TOVAT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368405','82227','1','ds.0.color.0','0','6A1B9A',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368406','82227','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368407','82227','1','ds.0.itemids.0._reference','0','TOVAT._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368408','82227','0','ds.0.transparency','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368409','82227','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368410','82227','1','reference','0','AMNYP',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368411','82227','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368412','82228','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368413','82228','4','itemid.0','0','',NULL,NULL,'44550',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368414','82228','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368415','82228','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368416','82229','4','itemid.0','0','',NULL,NULL,'44545',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368417','82229','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368418','82229','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368419','82229','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368420','82230','4','itemid.0','0','',NULL,NULL,'44555',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368421','82230','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368422','82230','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368423','82231','4','itemid.0','0','',NULL,NULL,'44543',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368424','82231','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368425','82231','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368426','82232','4','itemid.0','0','',NULL,NULL,'44556',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368427','82232','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368428','82232','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368429','82233','4','itemid.0','0','',NULL,NULL,'44546',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368430','82233','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368431','82233','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368432','82233','1','up_color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368433','82234','4','itemid.0','0','',NULL,NULL,'44547',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368434','82234','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368435','82234','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368436','82234','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368437','82235','4','itemid.0','0','',NULL,NULL,'44553',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368438','82235','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368439','82235','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368440','82236','4','itemid.0','0','',NULL,NULL,'44538',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368441','82236','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368442','82236','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368443','82237','4','itemid.0','0','',NULL,NULL,'44557',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368444','82237','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368445','82237','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368446','82238','0','columns.0.display','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368447','82238','4','columns.0.itemid','0','',NULL,NULL,'44532',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368448','82238','0','columns.0.monospace_font','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368449','82238','1','columns.0.name','0','Azure Microsoft SQL: Availability status detailed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368450','82238','1','reference','0','BAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368451','82238','0','show_timestamp','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368452','82239','4','itemid.0','0','',NULL,NULL,'44533',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368453','82239','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368454','82239','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368455','82240','6','graphid.0','0','',NULL,NULL,NULL,'2469',NULL,NULL,NULL,NULL,NULL,NULL), ('368456','82240','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368457','82241','6','graphid.0','0','',NULL,NULL,NULL,'2471',NULL,NULL,NULL,NULL,NULL,NULL), ('368458','82241','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368459','82242','6','graphid.0','0','',NULL,NULL,NULL,'2467',NULL,NULL,NULL,NULL,NULL,NULL), ('368460','82242','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368461','82243','4','itemid.0','0','',NULL,NULL,'44558',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368462','82243','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368463','82243','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368464','82243','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368465','82244','4','itemid.0','0','',NULL,NULL,'44540',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368466','82244','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368467','82244','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368468','82245','4','itemid.0','0','',NULL,NULL,'44551',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368469','82245','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368470','82245','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368471','82245','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368472','82246','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368473','82246','4','itemid.0','0','',NULL,NULL,'49397',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368474','82246','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368475','82246','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368476','82247','4','itemid.0','0','',NULL,NULL,'49404',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368477','82247','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368478','82247','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368479','82247','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368480','82248','4','itemid.0','0','',NULL,NULL,'49398',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368481','82248','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368482','82248','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368483','82249','4','itemid.0','0','',NULL,NULL,'49407',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368484','82249','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368485','82249','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368486','82250','4','itemid.0','0','',NULL,NULL,'49393',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368487','82250','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368488','82250','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368489','82251','4','itemid.0','0','',NULL,NULL,'49391',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368490','82251','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368491','82251','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368492','82251','1','up_color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368493','82252','4','itemid.0','0','',NULL,NULL,'49403',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368494','82252','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368495','82252','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368496','82252','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368497','82253','4','itemid.0','0','',NULL,NULL,'49400',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368498','82253','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368499','82253','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368500','82254','4','itemid.0','0','',NULL,NULL,'49410',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368501','82254','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368502','82254','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368503','82255','4','itemid.0','0','',NULL,NULL,'49392',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368504','82255','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368505','82255','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368506','82256','0','columns.0.display','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368507','82256','4','columns.0.itemid','0','',NULL,NULL,'49390',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368508','82256','0','columns.0.monospace_font','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368509','82256','1','columns.0.name','0','Azure Microsoft SQL: Availability status detailed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368510','82256','1','reference','0','BAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368511','82256','0','show_timestamp','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368512','82257','4','itemid.0','0','',NULL,NULL,'49405',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368513','82257','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368514','82257','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368515','82258','6','graphid.0','0','',NULL,NULL,NULL,'3072',NULL,NULL,NULL,NULL,NULL,NULL), ('368516','82258','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368517','82259','6','graphid.0','0','',NULL,NULL,NULL,'3073',NULL,NULL,NULL,NULL,NULL,NULL), ('368518','82259','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368519','82260','6','graphid.0','0','',NULL,NULL,NULL,'3071',NULL,NULL,NULL,NULL,NULL,NULL), ('368520','82260','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368521','82261','4','itemid.0','0','',NULL,NULL,'49415',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368522','82261','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368523','82261','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368524','82261','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368525','82262','4','itemid.0','0','',NULL,NULL,'49394',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368526','82262','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368527','82262','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368528','82262','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368529','82263','4','itemid.0','0','',NULL,NULL,'49396',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368530','82263','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368531','82263','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368532','82263','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368533','82264','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368534','82264','4','itemid.0','0','',NULL,NULL,'44571',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368535','82264','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368536','82264','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368537','82265','4','itemid.0','0','',NULL,NULL,'44569',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368538','82265','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368539','82265','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368540','82265','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368541','82266','4','itemid.0','0','',NULL,NULL,'44578',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368542','82266','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368543','82266','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368544','82267','4','itemid.0','0','',NULL,NULL,'44567',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368545','82267','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368546','82267','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368547','82268','4','itemid.0','0','',NULL,NULL,'44579',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368548','82268','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368549','82268','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368550','82269','4','itemid.0','0','',NULL,NULL,'44581',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368551','82269','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368552','82269','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368553','82269','1','up_color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368554','82270','4','itemid.0','0','',NULL,NULL,'44570',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368555','82270','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368556','82270','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368557','82270','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368558','82271','4','itemid.0','0','',NULL,NULL,'44576',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368559','82271','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368560','82271','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368561','82272','4','itemid.0','0','',NULL,NULL,'44565',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368562','82272','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368563','82272','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368564','82273','4','itemid.0','0','',NULL,NULL,'44580',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368565','82273','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368566','82273','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368567','82274','0','columns.0.display','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368568','82274','4','columns.0.itemid','0','',NULL,NULL,'44582',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368569','82274','0','columns.0.monospace_font','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368570','82274','1','columns.0.name','0','Azure Microsoft SQL: Availability status detailed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368571','82274','1','reference','0','BAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368572','82274','0','show_timestamp','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368573','82275','4','itemid.0','0','',NULL,NULL,'44568',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368574','82275','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368575','82275','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368576','82276','6','graphid.0','0','',NULL,NULL,NULL,'2470',NULL,NULL,NULL,NULL,NULL,NULL), ('368577','82276','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368578','82277','6','graphid.0','0','',NULL,NULL,NULL,'2472',NULL,NULL,NULL,NULL,NULL,NULL), ('368579','82277','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368580','82278','6','graphid.0','0','',NULL,NULL,NULL,'2468',NULL,NULL,NULL,NULL,NULL,NULL), ('368581','82278','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368582','82279','4','itemid.0','0','',NULL,NULL,'44584',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368583','82279','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368584','82279','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368585','82279','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368586','82280','4','itemid.0','0','',NULL,NULL,'44583',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368587','82280','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368588','82280','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368589','82280','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368590','82281','4','itemid.0','0','',NULL,NULL,'44574',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368591','82281','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368592','82281','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368593','82281','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368594','82282','4','itemid.0','0','',NULL,NULL,'44164',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368595','82282','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368596','82282','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368597','82282','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368598','82283','4','itemid.0','0','',NULL,NULL,'44177',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368599','82283','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368600','82283','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368601','82284','4','itemid.0','0','',NULL,NULL,'44181',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368602','82284','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368603','82284','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368604','82285','4','itemid.0','0','',NULL,NULL,'44170',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368605','82285','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368606','82285','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368607','82286','4','itemid.0','0','',NULL,NULL,'44179',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368608','82286','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368609','82286','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368610','82287','4','itemid.0','0','',NULL,NULL,'44175',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368611','82287','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368612','82287','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368613','82287','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368614','82288','4','itemid.0','0','',NULL,NULL,'44176',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368615','82288','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368616','82288','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368617','82289','4','itemid.0','0','',NULL,NULL,'44166',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368618','82289','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368619','82289','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368620','82290','4','itemid.0','0','',NULL,NULL,'44171',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368621','82290','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368622','82290','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368623','82291','4','itemid.0','0','',NULL,NULL,'44178',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368624','82291','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368625','82291','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368626','82292','4','itemid.0','0','',NULL,NULL,'44173',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368627','82292','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368628','82292','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368629','82292','1','up_color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368630','82293','4','itemid.0','0','',NULL,NULL,'44167',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368631','82293','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368632','82293','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368633','82294','6','graphid.0','0','',NULL,NULL,NULL,'2443',NULL,NULL,NULL,NULL,NULL,NULL), ('368634','82294','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368635','82295','6','graphid.0','0','',NULL,NULL,NULL,'2439',NULL,NULL,NULL,NULL,NULL,NULL), ('368636','82295','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368637','82296','6','graphid.0','0','',NULL,NULL,NULL,'2437',NULL,NULL,NULL,NULL,NULL,NULL), ('368638','82296','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368639','82297','0','columns.0.display','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368640','82297','4','columns.0.itemid','0','',NULL,NULL,'44163',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368641','82297','0','columns.0.monospace_font','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368642','82297','1','columns.0.name','0','Azure MySQL: Availability status detailed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368643','82297','1','reference','0','BAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368644','82297','0','show_timestamp','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368645','82298','4','itemid.0','0','',NULL,NULL,'44169',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368646','82298','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368647','82298','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368648','82299','4','itemid.0','0','',NULL,NULL,'44172',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368649','82299','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368650','82299','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368651','82299','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368652','82300','4','itemid.0','0','',NULL,NULL,'44168',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368653','82300','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368654','82300','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368655','82301','4','itemid.0','0','',NULL,NULL,'44193',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368656','82301','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368657','82301','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368658','82301','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368659','82302','4','itemid.0','0','',NULL,NULL,'44191',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368660','82302','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368661','82302','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368662','82303','4','itemid.0','0','',NULL,NULL,'44186',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368663','82303','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368664','82303','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368665','82304','4','itemid.0','0','',NULL,NULL,'44188',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368666','82304','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368667','82304','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368668','82305','4','itemid.0','0','',NULL,NULL,'44198',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368669','82305','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368670','82305','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368671','82306','4','itemid.0','0','',NULL,NULL,'44196',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368672','82306','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368673','82306','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368674','82306','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368675','82307','4','itemid.0','0','',NULL,NULL,'44190',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368676','82307','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368677','82307','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368678','82308','4','itemid.0','0','',NULL,NULL,'44184',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368679','82308','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368680','82308','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368681','82309','4','itemid.0','0','',NULL,NULL,'44199',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368682','82309','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368683','82309','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368684','82310','4','itemid.0','0','',NULL,NULL,'44197',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368685','82310','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368686','82310','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368687','82311','4','itemid.0','0','',NULL,NULL,'44192',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368688','82311','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368689','82311','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368690','82311','1','up_color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368691','82312','6','graphid.0','0','',NULL,NULL,NULL,'2440',NULL,NULL,NULL,NULL,NULL,NULL), ('368692','82312','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368693','82313','6','graphid.0','0','',NULL,NULL,NULL,'2441',NULL,NULL,NULL,NULL,NULL,NULL), ('368694','82313','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368695','82314','6','graphid.0','0','',NULL,NULL,NULL,'2442',NULL,NULL,NULL,NULL,NULL,NULL), ('368696','82314','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368697','82315','6','graphid.0','0','',NULL,NULL,NULL,'2438',NULL,NULL,NULL,NULL,NULL,NULL), ('368698','82315','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368699','82316','0','columns.0.display','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368700','82316','4','columns.0.itemid','0','',NULL,NULL,'44182',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368701','82316','0','columns.0.monospace_font','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368702','82316','1','columns.0.name','0','Azure MySQL: Availability status detailed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368703','82316','1','reference','0','BAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368704','82316','0','show_timestamp','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368705','82317','4','itemid.0','0','',NULL,NULL,'44259',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368706','82317','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368707','82317','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368708','82317','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368709','82318','4','itemid.0','0','',NULL,NULL,'44261',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368710','82318','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368711','82318','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368712','82319','4','itemid.0','0','',NULL,NULL,'44255',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368713','82319','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368714','82319','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368715','82320','4','itemid.0','0','',NULL,NULL,'44257',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368716','82320','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368717','82320','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368718','82321','4','itemid.0','0','',NULL,NULL,'44272',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368719','82321','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368720','82321','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368721','82322','4','itemid.0','0','',NULL,NULL,'44267',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368722','82322','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368723','82322','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368724','82322','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368725','82323','4','itemid.0','0','',NULL,NULL,'44262',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368726','82323','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368727','82323','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368728','82324','4','itemid.0','0','',NULL,NULL,'44252',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368729','82324','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368730','82324','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368731','82325','4','itemid.0','0','',NULL,NULL,'44258',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368732','82325','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368733','82325','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368734','82326','4','itemid.0','0','',NULL,NULL,'44271',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368735','82326','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368736','82326','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368737','82327','4','itemid.0','0','',NULL,NULL,'44263',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368738','82327','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368739','82327','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368740','82327','1','up_color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368741','82328','4','itemid.0','0','',NULL,NULL,'44251',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368742','82328','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368743','82328','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368744','82329','6','graphid.0','0','',NULL,NULL,NULL,'2450',NULL,NULL,NULL,NULL,NULL,NULL), ('368745','82329','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368746','82330','6','graphid.0','0','',NULL,NULL,NULL,'2447',NULL,NULL,NULL,NULL,NULL,NULL), ('368747','82330','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368748','82331','6','graphid.0','0','',NULL,NULL,NULL,'2445',NULL,NULL,NULL,NULL,NULL,NULL), ('368749','82331','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368750','82332','0','columns.0.display','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368751','82332','4','columns.0.itemid','0','',NULL,NULL,'44250',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368752','82332','0','columns.0.monospace_font','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368753','82332','1','columns.0.name','0','Azure PostgreSQL: Availability status detailed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368754','82332','1','reference','0','BAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368755','82332','0','show_timestamp','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368756','82333','4','itemid.0','0','',NULL,NULL,'44260',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368757','82333','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368758','82333','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368759','82334','4','itemid.0','0','',NULL,NULL,'44265',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368760','82334','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368761','82334','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368762','82335','4','itemid.0','0','',NULL,NULL,'44264',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368763','82335','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368764','82335','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368765','82336','4','itemid.0','0','',NULL,NULL,'44286',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368766','82336','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368767','82336','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368768','82336','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368769','82337','4','itemid.0','0','',NULL,NULL,'44283',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368770','82337','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368771','82337','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368772','82338','4','itemid.0','0','',NULL,NULL,'44278',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368773','82338','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368774','82338','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368775','82339','4','itemid.0','0','',NULL,NULL,'44280',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368776','82339','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368777','82339','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368778','82340','4','itemid.0','0','',NULL,NULL,'44291',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368779','82340','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368780','82340','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368781','82341','4','itemid.0','0','',NULL,NULL,'44289',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368782','82341','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368783','82341','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368784','82341','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368785','82342','4','itemid.0','0','',NULL,NULL,'44285',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368786','82342','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368787','82342','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368788','82343','4','itemid.0','0','',NULL,NULL,'44276',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368789','82343','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368790','82343','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368791','82344','4','itemid.0','0','',NULL,NULL,'44292',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368792','82344','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368793','82344','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368794','82345','4','itemid.0','0','',NULL,NULL,'44290',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368795','82345','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368796','82345','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368797','82346','4','itemid.0','0','',NULL,NULL,'44284',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368798','82346','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368799','82346','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368800','82346','1','up_color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368801','82347','6','graphid.0','0','',NULL,NULL,NULL,'2448',NULL,NULL,NULL,NULL,NULL,NULL), ('368802','82347','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368803','82348','6','graphid.0','0','',NULL,NULL,NULL,'2449',NULL,NULL,NULL,NULL,NULL,NULL), ('368804','82348','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368805','82349','6','graphid.0','0','',NULL,NULL,NULL,'2451',NULL,NULL,NULL,NULL,NULL,NULL), ('368806','82349','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368807','82350','6','graphid.0','0','',NULL,NULL,NULL,'2446',NULL,NULL,NULL,NULL,NULL,NULL), ('368808','82350','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368809','82351','0','columns.0.display','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368810','82351','4','columns.0.itemid','0','',NULL,NULL,'44274',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368811','82351','0','columns.0.monospace_font','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368812','82351','1','columns.0.name','0','Azure PostgreSQL: Availability status detailed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368813','82351','1','reference','0','BAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368814','82351','0','show_timestamp','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368815','82352','4','itemid.0','0','',NULL,NULL,'48371',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368816','82352','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368817','82352','0','value_size','50','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368818','82353','0','angle','270','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368819','82353','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368820','82353','1','empty_color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368821','82353','4','itemid.0','0','',NULL,NULL,'48376',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368822','82353','0','show.0','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368823','82353','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368824','82353','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368825','82353','1','value_arc_color','0','ED1248',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368826','82354','0','angle','270','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368827','82354','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368828','82354','1','empty_color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368829','82354','4','itemid.0','0','',NULL,NULL,'48369',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368830','82354','0','show.0','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368831','82354','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368832','82354','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368833','82354','1','value_arc_color','0','ED1248',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368834','82355','1','ds.0.color.0','0','524BBC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368835','82355','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368836','82355','0','ds.0.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368837','82355','4','ds.0.itemids.0','0','',NULL,NULL,'48372',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368838','82355','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368839','82355','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368840','82355','1','ds.1.color.0','0','ED1248',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368841','82355','0','ds.1.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368842','82355','0','ds.1.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368843','82355','4','ds.1.itemids.0','0','',NULL,NULL,'48373',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368844','82355','0','ds.1.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368845','82355','0','ds.1.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368846','82355','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368847','82355','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368848','82355','1','reference','0','FDADE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368849','82356','4','itemid.0','0','',NULL,NULL,'48380',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368850','82356','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368851','82356','0','value_size','50','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368852','82357','1','ds.0.color.0','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368853','82357','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368854','82357','0','ds.0.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368855','82357','4','ds.0.itemids.0','0','',NULL,NULL,'48376',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368856','82357','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368857','82357','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368858','82357','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368859','82357','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368860','82357','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368861','82357','1','reference','0','FBADE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368862','82358','1','ds.0.color.0','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368863','82358','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368864','82358','0','ds.0.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368865','82358','4','ds.0.itemids.0','0','',NULL,NULL,'48369',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368866','82358','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368867','82358','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368868','82358','0','ds.1.axisy','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368869','82358','1','ds.1.color.0','0','ED1248',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368870','82358','0','ds.1.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368871','82358','0','ds.1.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368872','82358','4','ds.1.itemids.0','0','',NULL,NULL,'48382',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368873','82358','0','ds.1.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368874','82358','0','ds.1.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368875','82358','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368876','82358','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368877','82358','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368878','82358','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368879','82358','1','reference','0','FDABE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368880','82359','4','itemid.0','0','',NULL,NULL,'48378',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368881','82359','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368882','82359','0','value_size','50','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368883','82360','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368884','82360','4','itemid.0','0','',NULL,NULL,'48379',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368885','82360','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368886','82360','0','value_size','50','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368887','82362','4','itemid.0','0','',NULL,NULL,'43747',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368888','82362','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368889','82362','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368890','82363','4','itemid.0','0','',NULL,NULL,'43721',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368891','82363','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368892','82363','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368893','82364','4','itemid.0','0','',NULL,NULL,'43764',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368894','82364','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368895','82364','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368896','82365','4','itemid.0','0','',NULL,NULL,'43728',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368897','82365','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368898','82365','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368899','82366','4','itemid.0','0','',NULL,NULL,'43742',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368900','82366','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368901','82366','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368902','82367','4','itemid.0','0','',NULL,NULL,'43720',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368903','82367','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368904','82367','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368905','82368','4','itemid.0','0','',NULL,NULL,'43748',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368906','82368','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368907','82368','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368908','82369','4','itemid.0','0','',NULL,NULL,'43722',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368909','82369','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368910','82369','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368911','82370','4','itemid.0','0','',NULL,NULL,'43766',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368912','82370','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368913','82370','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368914','82371','4','itemid.0','0','',NULL,NULL,'43735',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368915','82371','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368916','82371','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368917','82372','4','itemid.0','0','',NULL,NULL,'43741',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368918','82372','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368919','82372','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368920','82373','4','itemid.0','0','',NULL,NULL,'43743',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368921','82373','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368922','82373','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368923','82373','1','up_color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368924','82374','6','graphid.0','0','',NULL,NULL,NULL,'2618',NULL,NULL,NULL,NULL,NULL,NULL), ('368925','82374','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368926','82375','6','graphid.0','0','',NULL,NULL,NULL,'2428',NULL,NULL,NULL,NULL,NULL,NULL), ('368927','82375','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368928','82376','6','graphid.0','0','',NULL,NULL,NULL,'2425',NULL,NULL,NULL,NULL,NULL,NULL), ('368929','82376','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368930','82377','6','graphid.0','0','',NULL,NULL,NULL,'2430',NULL,NULL,NULL,NULL,NULL,NULL), ('368931','82377','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368932','82378','6','graphid.0','0','',NULL,NULL,NULL,'2427',NULL,NULL,NULL,NULL,NULL,NULL), ('368933','82378','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368934','82379','0','columns.0.display','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368935','82379','4','columns.0.itemid','0','',NULL,NULL,'43717',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368936','82379','0','columns.0.monospace_font','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368937','82379','1','columns.0.name','0','Azure: Availability status detailed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368938','82379','1','reference','0','BAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368939','82379','0','show_timestamp','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368940','82380','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368941','82380','4','itemid.0','0','',NULL,NULL,'47274',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368942','82380','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368943','82380','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368944','82381','4','itemid.0','0','',NULL,NULL,'47228',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368945','82381','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368946','82381','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368947','82382','4','itemid.0','0','',NULL,NULL,'47253',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368948','82382','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368949','82382','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368950','82383','4','itemid.0','0','',NULL,NULL,'47245',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368951','82383','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368952','82383','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368953','82384','4','itemid.0','0','',NULL,NULL,'47246',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368954','82384','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368955','82384','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368956','82385','4','itemid.0','0','',NULL,NULL,'47249',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368957','82385','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368958','82385','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368959','82386','4','itemid.0','0','',NULL,NULL,'47275',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368960','82386','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368961','82386','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368962','82387','4','itemid.0','0','',NULL,NULL,'47229',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368963','82387','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368964','82387','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368965','82388','4','itemid.0','0','',NULL,NULL,'47254',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368966','82388','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368967','82388','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368968','82389','4','itemid.0','0','',NULL,NULL,'47247',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368969','82389','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368970','82389','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368971','82390','4','itemid.0','0','',NULL,NULL,'47248',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368972','82390','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368973','82390','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368974','82391','4','itemid.0','0','',NULL,NULL,'47251',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368975','82391','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368976','82391','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368977','82392','4','itemid.0','0','',NULL,NULL,'47227',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368978','82392','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368979','82392','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368980','82392','1','up_color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368981','82393','6','graphid.0','0','',NULL,NULL,NULL,'2797',NULL,NULL,NULL,NULL,NULL,NULL), ('368982','82393','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368983','82394','6','graphid.0','0','',NULL,NULL,NULL,'2803',NULL,NULL,NULL,NULL,NULL,NULL), ('368984','82394','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368985','82395','6','graphid.0','0','',NULL,NULL,NULL,'2801',NULL,NULL,NULL,NULL,NULL,NULL), ('368986','82395','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368987','82396','6','graphid.0','0','',NULL,NULL,NULL,'2804',NULL,NULL,NULL,NULL,NULL,NULL), ('368988','82396','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368989','82397','6','graphid.0','0','',NULL,NULL,NULL,'2802',NULL,NULL,NULL,NULL,NULL,NULL), ('368990','82397','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368991','82398','0','columns.0.display','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368992','82398','4','columns.0.itemid','0','',NULL,NULL,'47226',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368993','82398','0','columns.0.monospace_font','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368994','82398','1','columns.0.name','0','|',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368995','82398','1','reference','0','BAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368996','82398','0','show_column_header','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368997','82398','0','show_timestamp','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368998','82399','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('368999','82399','4','itemid.0','0','',NULL,NULL,'45033',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369000','82399','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369001','82399','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369002','82400','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369003','82400','4','itemid.0','0','',NULL,NULL,'45027',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369004','82400','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369005','82400','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369006','82401','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369007','82401','7','graphid.0','0','',NULL,NULL,NULL,'2488',NULL,NULL,NULL,NULL,NULL,NULL), ('369008','82401','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369009','82402','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369010','82402','4','itemid.0','0','',NULL,NULL,'45030',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369011','82402','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369012','82402','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369013','82403','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369014','82403','4','itemid.0','0','',NULL,NULL,'45032',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369015','82403','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369016','82403','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369017','82404','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369018','82404','4','itemid.0','0','',NULL,NULL,'45031',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369019','82404','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369020','82404','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369021','82405','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369022','82405','5','itemid.0','0','',NULL,NULL,'45078',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369023','82405','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369024','82405','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369025','82406','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369026','82406','4','itemid.0','0','',NULL,NULL,'45028',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369027','82406','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369028','82406','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369029','82407','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369030','82407','4','itemid.0','0','',NULL,NULL,'45029',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369031','82407','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369032','82407','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369033','82408','4','itemid.0','0','',NULL,NULL,'44913',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369034','82408','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369035','82408','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369036','82409','6','graphid.0','0','',NULL,NULL,NULL,'2495',NULL,NULL,NULL,NULL,NULL,NULL), ('369037','82409','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369038','82410','4','itemid.0','0','',NULL,NULL,'44918',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369039','82410','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369040','82410','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369041','82411','6','graphid.0','0','',NULL,NULL,NULL,'2497',NULL,NULL,NULL,NULL,NULL,NULL), ('369042','82411','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369043','82412','6','graphid.0','0','',NULL,NULL,NULL,'2499',NULL,NULL,NULL,NULL,NULL,NULL), ('369044','82412','1','reference','0','AAAAI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369045','82413','6','graphid.0','0','',NULL,NULL,NULL,'2496',NULL,NULL,NULL,NULL,NULL,NULL), ('369046','82413','1','reference','0','AAAAK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369047','82414','4','itemid.0','0','',NULL,NULL,'44914',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369048','82414','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369049','82414','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369050','82415','4','itemid.0','0','',NULL,NULL,'44893',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369051','82415','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369052','82415','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369053','82416','6','graphid.0','0','',NULL,NULL,NULL,'2492',NULL,NULL,NULL,NULL,NULL,NULL), ('369054','82416','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369055','82417','4','itemid.0','0','',NULL,NULL,'44894',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369056','82417','1','reference','0','AAAAH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369057','82417','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369058','82418','4','itemid.0','0','',NULL,NULL,'44920',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369059','82418','1','reference','0','AAAAJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369060','82418','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369061','82419','6','graphid.0','0','',NULL,NULL,NULL,'2494',NULL,NULL,NULL,NULL,NULL,NULL), ('369062','82419','1','reference','0','AAAAL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369063','82420','6','graphid.0','0','',NULL,NULL,NULL,'2498',NULL,NULL,NULL,NULL,NULL,NULL), ('369064','82420','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369065','82421','4','itemid.0','0','',NULL,NULL,'44926',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369066','82421','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369067','82421','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369068','82422','4','itemid.0','0','',NULL,NULL,'44945',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369069','82422','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369070','82422','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369071','82423','6','graphid.0','0','',NULL,NULL,NULL,'2503',NULL,NULL,NULL,NULL,NULL,NULL), ('369072','82423','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369073','82424','4','itemid.0','0','',NULL,NULL,'44953',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369074','82424','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369075','82424','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369076','82425','6','graphid.0','0','',NULL,NULL,NULL,'2504',NULL,NULL,NULL,NULL,NULL,NULL), ('369077','82425','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369078','82426','6','graphid.0','0','',NULL,NULL,NULL,'2505',NULL,NULL,NULL,NULL,NULL,NULL), ('369079','82426','1','reference','0','AAAAI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369080','82427','4','itemid.0','0','',NULL,NULL,'44957',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369081','82427','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369082','82427','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369083','82428','4','itemid.0','0','',NULL,NULL,'44940',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369084','82428','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369085','82428','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369086','82429','6','graphid.0','0','',NULL,NULL,NULL,'2500',NULL,NULL,NULL,NULL,NULL,NULL), ('369087','82429','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369088','82430','4','itemid.0','0','',NULL,NULL,'44939',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369089','82430','1','reference','0','AAAAH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369090','82430','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369091','82431','6','graphid.0','0','',NULL,NULL,NULL,'2506',NULL,NULL,NULL,NULL,NULL,NULL), ('369092','82431','1','reference','0','AAAAJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369093','82432','6','graphid.0','0','',NULL,NULL,NULL,'2502',NULL,NULL,NULL,NULL,NULL,NULL), ('369094','82432','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369095','82433','4','itemid.0','0','',NULL,NULL,'44963',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369096','82433','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369097','82434','0','decimal_size','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369098','82434','4','itemid.0','0','',NULL,NULL,'44959',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369099','82434','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369100','82435','0','decimal_size','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369101','82435','4','itemid.0','0','',NULL,NULL,'44964',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369102','82435','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369103','82436','0','decimal_size','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369104','82436','4','itemid.0','0','',NULL,NULL,'44960',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369105','82436','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369106','82437','4','itemid.0','0','',NULL,NULL,'44979',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369107','82437','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369108','82437','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369109','82438','6','graphid.0','0','',NULL,NULL,NULL,'2510',NULL,NULL,NULL,NULL,NULL,NULL), ('369110','82438','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369111','82439','4','itemid.0','0','',NULL,NULL,'44984',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369112','82439','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369113','82439','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369114','82440','6','graphid.0','0','',NULL,NULL,NULL,'2511',NULL,NULL,NULL,NULL,NULL,NULL), ('369115','82440','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369116','82441','6','graphid.0','0','',NULL,NULL,NULL,'2513',NULL,NULL,NULL,NULL,NULL,NULL), ('369117','82441','1','reference','0','AAAAI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369118','82442','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369119','82442','7','graphid.0','0','',NULL,NULL,NULL,'2489',NULL,NULL,NULL,NULL,NULL,NULL), ('369120','82442','1','reference','0','AAAAK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369121','82443','4','itemid.0','0','',NULL,NULL,'44988',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369122','82443','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369123','82443','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369124','82444','4','itemid.0','0','',NULL,NULL,'44977',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369125','82444','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369126','82444','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369127','82445','6','graphid.0','0','',NULL,NULL,NULL,'2507',NULL,NULL,NULL,NULL,NULL,NULL), ('369128','82445','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369129','82446','4','itemid.0','0','',NULL,NULL,'44989',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369130','82446','1','reference','0','AAAAH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369131','82446','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369132','82447','6','graphid.0','0','',NULL,NULL,NULL,'2512',NULL,NULL,NULL,NULL,NULL,NULL), ('369133','82447','1','reference','0','AAAAJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369134','82448','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369135','82448','5','itemid.0','0','',NULL,NULL,'45050',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369136','82448','1','reference','0','AAAAL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369137','82448','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369138','82449','6','graphid.0','0','',NULL,NULL,NULL,'2514',NULL,NULL,NULL,NULL,NULL,NULL), ('369139','82449','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369140','82450','6','graphid.0','0','',NULL,NULL,NULL,'2509',NULL,NULL,NULL,NULL,NULL,NULL), ('369141','82450','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369142','82451','6','graphid.0','0','',NULL,NULL,NULL,'2515',NULL,NULL,NULL,NULL,NULL,NULL), ('369143','82451','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369144','82452','6','graphid.0','0','',NULL,NULL,NULL,'2517',NULL,NULL,NULL,NULL,NULL,NULL), ('369145','82452','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369146','82453','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369147','82453','7','graphid.0','0','',NULL,NULL,NULL,'2490',NULL,NULL,NULL,NULL,NULL,NULL), ('369148','82453','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369149','82454','6','graphid.0','0','',NULL,NULL,NULL,'2518',NULL,NULL,NULL,NULL,NULL,NULL), ('369150','82454','1','reference','0','AAAAH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369151','82455','4','itemid.0','0','',NULL,NULL,'45017',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369152','82455','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369153','82455','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369154','82456','4','itemid.0','0','',NULL,NULL,'45023',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369155','82456','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369156','82456','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369157','82457','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369158','82457','7','graphid.0','0','',NULL,NULL,NULL,'2491',NULL,NULL,NULL,NULL,NULL,NULL), ('369159','82457','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369160','82458','6','graphid.0','0','',NULL,NULL,NULL,'2516',NULL,NULL,NULL,NULL,NULL,NULL), ('369161','82458','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369162','82459','6','graphid.0','0','',NULL,NULL,NULL,'2544',NULL,NULL,NULL,NULL,NULL,NULL), ('369163','82459','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369164','82460','6','graphid.0','0','',NULL,NULL,NULL,'2545',NULL,NULL,NULL,NULL,NULL,NULL), ('369165','82460','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369166','82461','6','graphid.0','0','',NULL,NULL,NULL,'2546',NULL,NULL,NULL,NULL,NULL,NULL), ('369167','82461','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369168','82462','1','bg_color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369169','82462','1','description','0','Current State',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369170','82462','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369171','82462','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369172','82462','4','itemid.0','0','',NULL,NULL,'46848',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369173','82462','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369174','82462','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369175','82462','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369176','82462','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369177','82462','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369178','82463','6','graphid.0','0','',NULL,NULL,NULL,'2695',NULL,NULL,NULL,NULL,NULL,NULL), ('369179','82463','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369180','82464','6','graphid.0','0','',NULL,NULL,NULL,'2709',NULL,NULL,NULL,NULL,NULL,NULL), ('369181','82464','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369182','82465','1','bg_color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369183','82465','1','description','0','Availability',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369184','82465','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369185','82465','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369186','82465','4','itemid.0','0','',NULL,NULL,'46862',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369187','82465','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369188','82465','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369189','82465','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369190','82465','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369191','82465','0','value_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369192','82466','1','bg_color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369193','82466','0','decimal_size','60','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369194','82466','1','description','0','Connection latency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369195','82466','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369196','82466','0','desc_size','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369197','82466','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369198','82466','4','itemid.0','0','',NULL,NULL,'46868',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369199','82466','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369200','82466','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369201','82466','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369202','82466','0','units_size','40','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369203','82466','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369204','82466','0','value_size','60','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369205','82467','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369206','82467','1','description','0','CPU',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369207','82467','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369208','82467','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369209','82467','1','empty_color','0','145C96',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369210','82467','4','itemid.0','0','',NULL,NULL,'46866',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369211','82467','0','rf_rate','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369212','82467','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369213','82467','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369214','82467','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369215','82467','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369216','82467','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369217','82467','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369218','82467','1','value_arc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369219','82467','0','value_arc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369220','82467','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369221','82467','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369222','82468','1','bg_color','0','FBC02D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369223','82468','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369224','82468','1','description','0','Sessions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369225','82468','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369226','82468','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369227','82468','4','itemid.0','0','',NULL,NULL,'46882',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369228','82468','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369229','82468','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369230','82468','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369231','82468','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369232','82468','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369233','82469','1','bg_color','0','FBC02D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369234','82469','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369235','82469','1','description','0','Running Statements',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369236','82469','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369237','82469','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369238','82469','4','itemid.0','0','',NULL,NULL,'46887',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369239','82469','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369240','82469','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369241','82469','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369242','82469','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369243','82469','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369244','82470','1','bg_color','0','00D936',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369245','82470','1','description','0','Storage Utilization',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369246','82470','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369247','82470','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369248','82470','1','empty_color','0','00701c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369249','82470','4','itemid.0','0','',NULL,NULL,'46891',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369250','82470','0','rf_rate','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369251','82470','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369252','82470','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369253','82470','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369254','82470','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369255','82470','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369256','82470','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369257','82470','1','value_arc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369258','82470','0','value_arc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369259','82470','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369260','82470','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369261','82471','1','bg_color','0','FBC02D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369262','82471','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369263','82471','1','description','0','Execute Count',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369264','82471','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369265','82471','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369266','82471','4','itemid.0','0','',NULL,NULL,'46867',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369267','82471','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369268','82471','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369269','82471','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369270','82471','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369271','82471','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369272','82472','1','bg_color','0','FBC02D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369273','82472','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369274','82472','1','description','0','Queued Statements',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369275','82472','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369276','82472','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369277','82472','4','itemid.0','0','',NULL,NULL,'46880',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369278','82472','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369279','82472','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369280','82472','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369281','82472','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369282','82472','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369283','82473','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369284','82473','1','description','0','CPU',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369285','82473','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369286','82473','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369287','82473','1','empty_color','0','145C96',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369288','82473','4','itemid.0','0','',NULL,NULL,'46866',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369289','82473','0','rf_rate','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369290','82473','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369291','82473','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369292','82473','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369293','82473','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369294','82473','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369295','82473','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369296','82473','1','value_arc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369297','82473','0','value_arc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369298','82473','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369299','82473','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369300','82474','6','graphid.0','0','',NULL,NULL,NULL,'2695',NULL,NULL,NULL,NULL,NULL,NULL), ('369301','82474','1','reference','0','ABAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369302','82475','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369303','82475','1','description','0','CPU Time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369304','82475','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369305','82475','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369306','82475','1','empty_color','0','145C96',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369307','82475','4','itemid.0','0','',NULL,NULL,'46866',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369308','82475','0','rf_rate','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369309','82475','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369310','82475','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369311','82475','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369312','82475','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369313','82475','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369314','82475','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369315','82475','1','value_arc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369316','82475','0','value_arc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369317','82475','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369318','82475','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369319','82476','6','graphid.0','0','',NULL,NULL,NULL,'2694',NULL,NULL,NULL,NULL,NULL,NULL), ('369320','82476','1','reference','0','ABAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369321','82477','1','bg_color','0','00D936',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369322','82477','1','description','0','Storage Utilization',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369323','82477','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369324','82477','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369325','82477','1','empty_color','0','00701c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369326','82477','4','itemid.0','0','',NULL,NULL,'46891',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369327','82477','0','rf_rate','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369328','82477','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369329','82477','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369330','82477','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369331','82477','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369332','82477','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369333','82477','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369334','82477','1','value_arc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369335','82477','0','value_arc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369336','82477','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369337','82477','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369338','82478','6','graphid.0','0','',NULL,NULL,NULL,'2710',NULL,NULL,NULL,NULL,NULL,NULL), ('369339','82478','1','reference','0','ACAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369340','82479','1','bg_color','0','00D936',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369341','82479','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369342','82479','1','description','0','Max storage space',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369343','82479','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369344','82479','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369345','82479','4','itemid.0','0','',NULL,NULL,'46889',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369346','82479','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369347','82479','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369348','82479','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369349','82479','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369350','82479','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369351','82480','6','graphid.0','0','',NULL,NULL,NULL,'2709',NULL,NULL,NULL,NULL,NULL,NULL), ('369352','82480','1','reference','0','ACAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369353','82481','1','bg_color','0','00D936',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369354','82481','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369355','82481','1','description','0','Allocated Storage Space',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369356','82481','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369357','82481','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369358','82481','4','itemid.0','0','',NULL,NULL,'46888',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369359','82481','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369360','82481','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369361','82481','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369362','82481','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369363','82481','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369364','82482','1','bg_color','0','00D936',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369365','82482','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369366','82482','1','description','0','Used Storage Space',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369367','82482','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369368','82482','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369369','82482','4','itemid.0','0','',NULL,NULL,'46890',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369370','82482','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369371','82482','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369372','82482','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369373','82482','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369374','82482','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369375','82483','1','bg_color','0','00D936',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369376','82483','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369377','82483','1','description','0','Physical Reads',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369378','82483','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369379','82483','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369380','82483','4','itemid.0','0','',NULL,NULL,'46877',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369381','82483','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369382','82483','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369383','82483','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369384','82483','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369385','82483','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369386','82484','6','graphid.0','0','',NULL,NULL,NULL,'2702',NULL,NULL,NULL,NULL,NULL,NULL), ('369387','82484','1','reference','0','ADAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369388','82485','1','bg_color','0','00D936',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369389','82485','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369390','82485','1','description','0','Physical Writes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369391','82485','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369392','82485','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369393','82485','4','itemid.0','0','',NULL,NULL,'46879',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369394','82485','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369395','82485','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369396','82485','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369397','82485','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369398','82485','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369399','82486','1','bg_color','0','00D936',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369400','82486','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369401','82486','1','description','0','Physical Read Total Bytes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369402','82486','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369403','82486','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369404','82486','4','itemid.0','0','',NULL,NULL,'46876',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369405','82486','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369406','82486','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369407','82486','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369408','82486','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369409','82486','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369410','82487','6','graphid.0','0','',NULL,NULL,NULL,'2701',NULL,NULL,NULL,NULL,NULL,NULL), ('369411','82487','1','reference','0','ADAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369412','82488','1','bg_color','0','00D936',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369413','82488','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369414','82488','1','description','0','Physical Write Total Bytes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369415','82488','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369416','82488','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369417','82488','4','itemid.0','0','',NULL,NULL,'46878',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369418','82488','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369419','82488','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369420','82488','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369421','82488','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369422','82488','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369423','82489','1','bg_color','0','00D936',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369424','82489','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369425','82489','1','description','0','Logical Reads Session',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369426','82489','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369427','82489','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369428','82489','4','itemid.0','0','',NULL,NULL,'46870',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369429','82489','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369430','82489','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369431','82489','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369432','82489','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369433','82489','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369434','82490','6','graphid.0','0','',NULL,NULL,NULL,'2704',NULL,NULL,NULL,NULL,NULL,NULL), ('369435','82490','1','reference','0','ADAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369436','82490','0','show_legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369437','82491','1','bg_color','0','FBC02D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369438','82491','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369439','82491','1','description','0','Sessions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369440','82491','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369441','82491','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369442','82491','4','itemid.0','0','',NULL,NULL,'46882',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369443','82491','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369444','82491','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369445','82491','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369446','82491','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369447','82491','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369448','82492','1','bg_color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369449','82492','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369450','82492','1','description','0','Failed Connections',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369451','82492','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369452','82492','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369453','82492','4','itemid.0','0','',NULL,NULL,'46864',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369454','82492','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369455','82492','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369456','82492','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369457','82492','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369458','82492','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369459','82493','6','graphid.0','0','',NULL,NULL,NULL,'2705',NULL,NULL,NULL,NULL,NULL,NULL), ('369460','82493','1','reference','0','AEAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369461','82494','1','bg_color','0','FBC02D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369462','82494','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369463','82494','1','description','0','Logons',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369464','82494','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369465','82494','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369466','82494','4','itemid.0','0','',NULL,NULL,'46871',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369467','82494','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369468','82494','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369469','82494','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369470','82494','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369471','82494','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369472','82495','1','bg_color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369473','82495','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369474','82495','1','description','0','Failed Logons',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369475','82495','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369476','82495','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369477','82495','4','itemid.0','0','',NULL,NULL,'46872',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369478','82495','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369479','82495','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369480','82495','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369481','82495','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369482','82495','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369483','82496','1','bg_color','0','FBC02D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369484','82496','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369485','82496','1','description','0','Wait Time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369486','82496','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369487','82496','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369488','82496','4','itemid.0','0','',NULL,NULL,'46897',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369489','82496','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369490','82496','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369491','82496','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369492','82496','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369493','82496','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369494','82497','6','graphid.0','0','',NULL,NULL,NULL,'2714',NULL,NULL,NULL,NULL,NULL,NULL), ('369495','82497','1','reference','0','AEAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369496','82497','0','show_legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369497','82498','1','bg_color','0','FBC02D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369498','82498','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369499','82498','1','description','0','DB Time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369500','82498','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369501','82498','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369502','82498','4','itemid.0','0','',NULL,NULL,'46892',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369503','82498','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369504','82498','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369505','82498','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369506','82498','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369507','82498','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369508','82499','6','graphid.0','0','',NULL,NULL,NULL,'2696',NULL,NULL,NULL,NULL,NULL,NULL), ('369509','82499','1','reference','0','AEAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369510','82499','0','show_legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369511','82500','1','bg_color','0','FBC02D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369512','82500','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369513','82500','1','description','0','Connection Latency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369514','82500','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369515','82500','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369516','82500','4','itemid.0','0','',NULL,NULL,'46868',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369517','82500','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369518','82500','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369519','82500','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369520','82500','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369521','82500','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369522','82501','6','graphid.0','0','',NULL,NULL,NULL,'2693',NULL,NULL,NULL,NULL,NULL,NULL), ('369523','82501','1','reference','0','AEAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369524','82501','0','show_legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369525','82502','1','bg_color','0','FBC02D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369526','82502','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369527','82502','1','description','0','User Calls',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369528','82502','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369529','82502','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369530','82502','4','itemid.0','0','',NULL,NULL,'46894',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369531','82502','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369532','82502','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369533','82502','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369534','82502','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369535','82502','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369536','82503','6','graphid.0','0','',NULL,NULL,NULL,'2711',NULL,NULL,NULL,NULL,NULL,NULL), ('369537','82503','1','reference','0','AFAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369538','82504','1','bg_color','0','FBC02D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369539','82504','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369540','82504','1','description','0','User Commits',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369541','82504','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369542','82504','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369543','82504','4','itemid.0','0','',NULL,NULL,'46895',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369544','82504','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369545','82504','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369546','82504','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369547','82504','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369548','82504','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369549','82505','6','graphid.0','0','',NULL,NULL,NULL,'2712',NULL,NULL,NULL,NULL,NULL,NULL), ('369550','82505','1','reference','0','AFAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369551','82506','1','bg_color','0','FBC02D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369552','82506','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369553','82506','1','description','0','User Rollbacks',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369554','82506','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369555','82506','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369556','82506','4','itemid.0','0','',NULL,NULL,'46896',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369557','82506','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369558','82506','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369559','82506','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369560','82506','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369561','82506','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369562','82507','6','graphid.0','0','',NULL,NULL,NULL,'2713',NULL,NULL,NULL,NULL,NULL,NULL), ('369563','82507','1','reference','0','AFAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369564','82508','1','bg_color','0','FBC02D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369565','82508','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369566','82508','1','description','0','Execute Count',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369567','82508','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369568','82508','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369569','82508','4','itemid.0','0','',NULL,NULL,'46867',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369570','82508','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369571','82508','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369572','82508','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369573','82508','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369574','82508','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369575','82509','6','graphid.0','0','',NULL,NULL,NULL,'2697',NULL,NULL,NULL,NULL,NULL,NULL), ('369576','82509','1','reference','0','AFAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369577','82510','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369578','82510','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369579','82510','1','description','0','Parse Count (Hard)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369580','82510','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369581','82510','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369582','82510','4','itemid.0','0','',NULL,NULL,'46874',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369583','82510','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369584','82510','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369585','82510','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369586','82510','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369587','82510','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369588','82511','6','graphid.0','0','',NULL,NULL,NULL,'2699',NULL,NULL,NULL,NULL,NULL,NULL), ('369589','82511','1','reference','0','AGAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369590','82512','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369591','82512','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369592','82512','1','description','0','Parse Count (Failures)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369593','82512','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369594','82512','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369595','82512','4','itemid.0','0','',NULL,NULL,'46873',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369596','82512','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369597','82512','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369598','82512','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369599','82512','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369600','82512','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369601','82513','6','graphid.0','0','',NULL,NULL,NULL,'2698',NULL,NULL,NULL,NULL,NULL,NULL), ('369602','82513','1','reference','0','AGAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369603','82514','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369604','82514','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369605','82514','1','description','0','Parse Count (Total)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369606','82514','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369607','82514','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369608','82514','4','itemid.0','0','',NULL,NULL,'46875',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369609','82514','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369610','82514','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369611','82514','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369612','82514','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369613','82514','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369614','82515','6','graphid.0','0','',NULL,NULL,NULL,'2700',NULL,NULL,NULL,NULL,NULL,NULL), ('369615','82515','1','reference','0','AGAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369616','82516','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369617','82516','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369618','82516','1','description','0','Bytes Received From Client',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369619','82516','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369620','82516','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369621','82516','4','itemid.0','0','',NULL,NULL,'46883',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369622','82516','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369623','82516','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369624','82516','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369625','82516','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369626','82516','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369627','82517','6','graphid.0','0','',NULL,NULL,NULL,'2706',NULL,NULL,NULL,NULL,NULL,NULL), ('369628','82517','1','reference','0','AHAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369629','82518','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369630','82518','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369631','82518','1','description','0','Bytes Sent To Client',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369632','82518','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369633','82518','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369634','82518','4','itemid.0','0','',NULL,NULL,'46885',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369635','82518','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369636','82518','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369637','82518','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369638','82518','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369639','82518','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369640','82519','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369641','82519','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369642','82519','1','description','0','Bytes Received From DBLink',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369643','82519','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369644','82519','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369645','82519','4','itemid.0','0','',NULL,NULL,'46884',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369646','82519','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369647','82519','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369648','82519','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369649','82519','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369650','82519','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369651','82520','6','graphid.0','0','',NULL,NULL,NULL,'2707',NULL,NULL,NULL,NULL,NULL,NULL), ('369652','82520','1','reference','0','AHAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369653','82521','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369654','82521','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369655','82521','1','description','0','Bytes Sent To DBLink',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369656','82521','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369657','82521','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369658','82521','4','itemid.0','0','',NULL,NULL,'46886',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369659','82521','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369660','82521','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369661','82521','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369662','82521','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369663','82521','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369664','82522','1','bg_color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369665','82522','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369666','82522','1','description','0','Query Latency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369667','82522','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369668','82522','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369669','82522','4','itemid.0','0','',NULL,NULL,'46869',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369670','82522','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369671','82522','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369672','82522','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369673','82522','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369674','82522','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369675','82523','6','graphid.0','0','',NULL,NULL,NULL,'2703',NULL,NULL,NULL,NULL,NULL,NULL), ('369676','82523','1','reference','0','AIAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369677','82524','1','bg_color','0','FBC02D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369678','82524','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369679','82524','1','description','0','Running Statements',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369680','82524','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369681','82524','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369682','82524','4','itemid.0','0','',NULL,NULL,'46887',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369683','82524','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369684','82524','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369685','82524','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369686','82524','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369687','82524','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369688','82525','6','graphid.0','0','',NULL,NULL,NULL,'2708',NULL,NULL,NULL,NULL,NULL,NULL), ('369689','82525','1','reference','0','AIAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369690','82526','1','bg_color','0','FBC02D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369691','82526','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369692','82526','1','description','0','Queued Statements',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369693','82526','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369694','82526','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369695','82526','4','itemid.0','0','',NULL,NULL,'46880',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369696','82526','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369697','82526','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369698','82526','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369699','82526','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369700','82526','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369701','82527','1','bg_color','0','FBC02D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369702','82527','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369703','82527','1','description','0','Transaction Count',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369704','82527','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369705','82527','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369706','82527','4','itemid.0','0','',NULL,NULL,'46893',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369707','82527','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369708','82527','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369709','82527','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369710','82527','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369711','82527','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369712','82528','1','bg_color','0','FBC02D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369713','82528','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369714','82528','1','description','0','DB Block Changes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369715','82528','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369716','82528','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369717','82528','4','itemid.0','0','',NULL,NULL,'46863',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369718','82528','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369719','82528','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369720','82528','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369721','82528','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369722','82528','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369723','82529','1','bg_color','0','FBC02D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369724','82529','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369725','82529','1','description','0','Redo Generated',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369726','82529','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369727','82529','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369728','82529','4','itemid.0','0','',NULL,NULL,'46881',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369729','82529','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369730','82529','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369731','82529','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369732','82529','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369733','82529','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369734','82530','1','bg_color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369735','82530','4','itemid.0','0','',NULL,NULL,'46850',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369736','82530','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369737','82530','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369738','82530','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369739','82531','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369740','82531','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369741','82531','1','description','0','Volume Read Operations',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369742','82531','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369743','82531','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369744','82531','4','itemid.0','0','',NULL,NULL,'46900',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369745','82531','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369746','82531','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369747','82531','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369748','82531','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369749','82531','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369750','82532','6','graphid.0','0','',NULL,NULL,NULL,'2715',NULL,NULL,NULL,NULL,NULL,NULL), ('369751','82532','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369752','82533','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369753','82533','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369754','82533','1','description','0','Volume Write Operations',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369755','82533','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369756','82533','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369757','82533','4','itemid.0','0','',NULL,NULL,'46905',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369758','82533','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369759','82533','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369760','82533','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369761','82533','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369762','82533','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369763','82534','1','bg_color','0','00D936',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369764','82534','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369765','82534','1','description','0','Guaranteed IOPS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369766','82534','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369767','82534','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369768','82534','4','itemid.0','0','',NULL,NULL,'46898',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369769','82534','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369770','82534','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369771','82534','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369772','82534','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369773','82534','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369774','82535','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369775','82535','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369776','82535','1','description','0','Volume Read Throughput',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369777','82535','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369778','82535','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369779','82535','4','itemid.0','0','',NULL,NULL,'46899',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369780','82535','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369781','82535','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369782','82535','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369783','82535','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369784','82535','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369785','82536','6','graphid.0','0','',NULL,NULL,NULL,'2716',NULL,NULL,NULL,NULL,NULL,NULL), ('369786','82536','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369787','82537','1','bg_color','0','00D936',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369788','82537','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369789','82537','1','description','0','Guaranteed Throughput',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369790','82537','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369791','82537','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369792','82537','4','itemid.0','0','',NULL,NULL,'46902',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369793','82537','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369794','82537','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369795','82537','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369796','82537','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369797','82537','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369798','82538','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369799','82538','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369800','82538','1','description','0','Volume Write Throughput',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369801','82538','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369802','82538','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369803','82538','4','itemid.0','0','',NULL,NULL,'46904',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369804','82538','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369805','82538','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369806','82538','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369807','82538','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369808','82538','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369809','82539','1','bg_color','0','00D936',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369810','82539','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369811','82539','1','description','0','Guaranteed VPUs/GB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369812','82539','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369813','82539','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369814','82539','4','itemid.0','0','',NULL,NULL,'46903',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369815','82539','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369816','82539','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369817','82539','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369818','82539','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369819','82539','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369820','82540','1','bg_color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369821','82540','4','itemid.0','0','',NULL,NULL,'46852',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369822','82540','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369823','82540','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369824','82540','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369825','82541','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369826','82541','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369827','82541','1','description','0','Volume Read Operations',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369828','82541','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369829','82541','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369830','82541','4','itemid.0','0','',NULL,NULL,'46908',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369831','82541','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369832','82541','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369833','82541','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369834','82541','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369835','82541','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369836','82542','6','graphid.0','0','',NULL,NULL,NULL,'2718',NULL,NULL,NULL,NULL,NULL,NULL), ('369837','82542','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369838','82543','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369839','82543','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369840','82543','1','description','0','Volume Write Operations',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369841','82543','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369842','82543','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369843','82543','4','itemid.0','0','',NULL,NULL,'46913',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369844','82543','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369845','82543','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369846','82543','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369847','82543','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369848','82543','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369849','82544','1','bg_color','0','00D936',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369850','82544','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369851','82544','1','description','0','Guaranteed IOPS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369852','82544','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369853','82544','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369854','82544','4','itemid.0','0','',NULL,NULL,'46906',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369855','82544','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369856','82544','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369857','82544','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369858','82544','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369859','82544','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369860','82545','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369861','82545','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369862','82545','1','description','0','Volume Read Throughput',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369863','82545','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369864','82545','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369865','82545','4','itemid.0','0','',NULL,NULL,'46907',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369866','82545','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369867','82545','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369868','82545','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369869','82545','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369870','82545','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369871','82546','6','graphid.0','0','',NULL,NULL,NULL,'2719',NULL,NULL,NULL,NULL,NULL,NULL), ('369872','82546','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369873','82547','1','bg_color','0','00D936',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369874','82547','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369875','82547','1','description','0','Guaranteed Throughput',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369876','82547','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369877','82547','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369878','82547','4','itemid.0','0','',NULL,NULL,'46910',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369879','82547','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369880','82547','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369881','82547','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369882','82547','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369883','82547','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369884','82548','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369885','82548','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369886','82548','1','description','0','Volume Write Throughput',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369887','82548','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369888','82548','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369889','82548','4','itemid.0','0','',NULL,NULL,'46912',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369890','82548','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369891','82548','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369892','82548','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369893','82548','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369894','82548','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369895','82549','1','bg_color','0','00D936',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369896','82549','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369897','82549','1','description','0','Guaranteed VPUs/GB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369898','82549','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369899','82549','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369900','82549','4','itemid.0','0','',NULL,NULL,'46911',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369901','82549','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369902','82549','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369903','82549','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369904','82549','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369905','82549','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369906','82550','1','bg_color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369907','82550','1','description','0','Current State',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369908','82550','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369909','82550','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369910','82550','4','itemid.0','0','',NULL,NULL,'46853',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369911','82550','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369912','82550','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369913','82550','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369914','82550','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369915','82550','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369916','82551','1','bg_color','0','00D936',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369917','82551','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369918','82551','1','description','0','Disk Bytes Read',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369919','82551','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369920','82551','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369921','82551','4','itemid.0','0','',NULL,NULL,'46917',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369922','82551','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369923','82551','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369924','82551','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369925','82551','0','units_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369926','82551','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369927','82552','1','bg_color','0','00D936',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369928','82552','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369929','82552','1','description','0','Disk Read I/O',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369930','82552','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369931','82552','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369932','82552','4','itemid.0','0','',NULL,NULL,'46915',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369933','82552','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369934','82552','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369935','82552','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369936','82552','0','units_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369937','82552','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369938','82553','1','bg_color','0','00D936',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369939','82553','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369940','82553','1','description','0','Disk Bytes Written',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369941','82553','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369942','82553','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369943','82553','4','itemid.0','0','',NULL,NULL,'46918',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369944','82553','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369945','82553','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369946','82553','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369947','82553','0','units_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369948','82553','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369949','82554','1','bg_color','0','00D936',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369950','82554','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369951','82554','1','description','0','Disk Write I/O',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369952','82554','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369953','82554','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369954','82554','4','itemid.0','0','',NULL,NULL,'46916',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369955','82554','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369956','82554','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369957','82554','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369958','82554','0','units_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369959','82554','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369960','82555','1','bg_color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369961','82555','1','description','0','Availability',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369962','82555','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369963','82555','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369964','82555','4','itemid.0','0','',NULL,NULL,'46853',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369965','82555','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369966','82555','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369967','82555','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369968','82555','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369969','82555','0','value_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369970','82556','1','bg_color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369971','82556','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369972','82556','1','description','0','Net Bytes In',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369973','82556','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369974','82556','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369975','82556','4','itemid.0','0','',NULL,NULL,'46922',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369976','82556','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369977','82556','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369978','82556','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369979','82556','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369980','82556','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369981','82557','1','bg_color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369982','82557','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369983','82557','1','description','0','Net Bytes Out',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369984','82557','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369985','82557','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369986','82557','4','itemid.0','0','',NULL,NULL,'46923',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369987','82557','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369988','82557','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369989','82557','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369990','82557','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369991','82557','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369992','82558','1','bg_color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369993','82558','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369994','82558','1','description','0','Load Average',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369995','82558','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369996','82558','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369997','82558','4','itemid.0','0','',NULL,NULL,'46919',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369998','82558','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('369999','82558','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370000','82558','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370001','82558','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370002','82558','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370003','82559','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370004','82559','1','description','0','CPU',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370005','82559','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370006','82559','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370007','82559','1','empty_color','0','145C96',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370008','82559','4','itemid.0','0','',NULL,NULL,'46914',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370009','82559','0','rf_rate','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370010','82559','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370011','82559','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370012','82559','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370013','82559','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370014','82559','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370015','82559','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370016','82559','1','value_arc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370017','82559','0','value_arc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370018','82559','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370019','82559','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370020','82560','1','bg_color','0','FBC02D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370021','82560','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370022','82560','1','description','0','Memory Allocation Stalls',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370023','82560','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370024','82560','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370025','82560','4','itemid.0','0','',NULL,NULL,'46920',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370026','82560','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370027','82560','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370028','82560','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370029','82560','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370030','82560','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370031','82561','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370032','82561','1','description','0','Memory',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370033','82561','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370034','82561','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370035','82561','1','empty_color','0','145C96',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370036','82561','4','itemid.0','0','',NULL,NULL,'46921',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370037','82561','0','rf_rate','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370038','82561','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370039','82561','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370040','82561','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370041','82561','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370042','82561','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370043','82561','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370044','82561','1','value_arc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370045','82561','0','value_arc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370046','82561','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370047','82561','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370048','82562','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370049','82562','1','description','0','CPU',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370050','82562','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370051','82562','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370052','82562','1','empty_color','0','145C96',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370053','82562','4','itemid.0','0','',NULL,NULL,'46914',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370054','82562','0','rf_rate','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370055','82562','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370056','82562','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370057','82562','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370058','82562','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370059','82562','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370060','82562','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370061','82562','1','value_arc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370062','82562','0','value_arc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370063','82562','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370064','82562','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370065','82563','6','graphid.0','0','',NULL,NULL,NULL,'2721',NULL,NULL,NULL,NULL,NULL,NULL), ('370066','82563','1','reference','0','ABAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370067','82564','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370068','82564','1','description','0','Memory',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370069','82564','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370070','82564','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370071','82564','1','empty_color','0','145C96',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370072','82564','4','itemid.0','0','',NULL,NULL,'46921',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370073','82564','0','rf_rate','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370074','82564','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370075','82564','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370076','82564','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370077','82564','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370078','82564','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370079','82564','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370080','82564','1','value_arc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370081','82564','0','value_arc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370082','82564','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370083','82564','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370084','82565','6','graphid.0','0','',NULL,NULL,NULL,'2727',NULL,NULL,NULL,NULL,NULL,NULL), ('370085','82565','1','reference','0','ABAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370086','82566','6','graphid.0','0','',NULL,NULL,NULL,'2726',NULL,NULL,NULL,NULL,NULL,NULL), ('370087','82566','1','reference','0','ABAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370088','82567','1','bg_color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370089','82567','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370090','82567','1','description','0','Net Bytes In',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370091','82567','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370092','82567','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370093','82567','4','itemid.0','0','',NULL,NULL,'46922',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370094','82567','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370095','82567','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370096','82567','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370097','82567','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370098','82567','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370099','82568','6','graphid.0','0','',NULL,NULL,NULL,'2728',NULL,NULL,NULL,NULL,NULL,NULL), ('370100','82568','1','reference','0','ACAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370101','82569','1','bg_color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370102','82569','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370103','82569','1','description','0','Net Bytes Out',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370104','82569','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370105','82569','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370106','82569','4','itemid.0','0','',NULL,NULL,'46923',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370107','82569','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370108','82569','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370109','82569','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370110','82569','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370111','82569','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370112','82570','6','graphid.0','0','',NULL,NULL,NULL,'2729',NULL,NULL,NULL,NULL,NULL,NULL), ('370113','82570','1','reference','0','ACAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370114','82571','1','bg_color','0','00D936',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370115','82571','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370116','82571','1','description','0','Disk Bytes Read',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370117','82571','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370118','82571','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370119','82571','4','itemid.0','0','',NULL,NULL,'46917',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370120','82571','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370121','82571','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370122','82571','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370123','82571','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370124','82571','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370125','82572','6','graphid.0','0','',NULL,NULL,NULL,'2722',NULL,NULL,NULL,NULL,NULL,NULL), ('370126','82572','1','reference','0','ADAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370127','82573','1','bg_color','0','00D936',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370128','82573','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370129','82573','1','description','0','Disk Bytes Written',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370130','82573','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370131','82573','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370132','82573','4','itemid.0','0','',NULL,NULL,'46918',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370133','82573','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370134','82573','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370135','82573','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370136','82573','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370137','82573','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370138','82574','6','graphid.0','0','',NULL,NULL,NULL,'2725',NULL,NULL,NULL,NULL,NULL,NULL), ('370139','82574','1','reference','0','ADAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370140','82575','1','bg_color','0','00D936',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370141','82575','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370142','82575','1','description','0','Disk Read I/O',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370143','82575','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370144','82575','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370145','82575','4','itemid.0','0','',NULL,NULL,'46915',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370146','82575','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370147','82575','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370148','82575','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370149','82575','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370150','82575','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370151','82576','6','graphid.0','0','',NULL,NULL,NULL,'2723',NULL,NULL,NULL,NULL,NULL,NULL), ('370152','82576','1','reference','0','ADAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370153','82577','1','bg_color','0','00D936',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370154','82577','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370155','82577','1','description','0','Disk Write I/O',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370156','82577','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370157','82577','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370158','82577','4','itemid.0','0','',NULL,NULL,'46916',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370159','82577','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370160','82577','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370161','82577','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370162','82577','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370163','82577','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370164','82578','6','graphid.0','0','',NULL,NULL,NULL,'2724',NULL,NULL,NULL,NULL,NULL,NULL), ('370165','82578','1','reference','0','ADAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370166','82579','1','bg_color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370167','82579','0','decimal_places','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370168','82579','0','decimal_size','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370169','82579','1','description','0','Ingress',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370170','82579','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370171','82579','0','desc_size','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370172','82579','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370173','82579','4','itemid.0','0','',NULL,NULL,'46922',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370174','82579','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370175','82579','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370176','82579','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370177','82579','0','units_size','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370178','82579','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370179','82579','0','value_size','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370180','82580','6','graphid.0','0','',NULL,NULL,NULL,'2728',NULL,NULL,NULL,NULL,NULL,NULL), ('370181','82580','1','reference','0','AEAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370182','82580','0','show_legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370183','82581','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370184','82581','7','graphid.0','0','',NULL,NULL,NULL,'2686',NULL,NULL,NULL,NULL,NULL,NULL), ('370185','82581','1','reference','0','AEAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370186','82582','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370187','82582','7','graphid.0','0','',NULL,NULL,NULL,'2690',NULL,NULL,NULL,NULL,NULL,NULL), ('370188','82582','1','reference','0','AEAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370189','82583','1','bg_color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370190','82583','0','decimal_places','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370191','82583','0','decimal_size','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370192','82583','1','description','0','Egress',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370193','82583','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370194','82583','0','desc_size','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370195','82583','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370196','82583','4','itemid.0','0','',NULL,NULL,'46923',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370197','82583','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370198','82583','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370199','82583','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370200','82583','0','units_size','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370201','82583','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370202','82583','0','value_size','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370203','82584','6','graphid.0','0','',NULL,NULL,NULL,'2729',NULL,NULL,NULL,NULL,NULL,NULL), ('370204','82584','1','reference','0','AEAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370205','82584','0','show_legend','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370206','82585','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370207','82585','7','graphid.0','0','',NULL,NULL,NULL,'2687',NULL,NULL,NULL,NULL,NULL,NULL), ('370208','82585','1','reference','0','AEAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370209','82586','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370210','82586','7','graphid.0','0','',NULL,NULL,NULL,'2691',NULL,NULL,NULL,NULL,NULL,NULL), ('370211','82586','1','reference','0','AEAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370212','82587','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370213','82587','7','graphid.0','0','',NULL,NULL,NULL,'2688',NULL,NULL,NULL,NULL,NULL,NULL), ('370214','82587','1','reference','0','AFAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370215','82588','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370216','82588','7','graphid.0','0','',NULL,NULL,NULL,'2689',NULL,NULL,NULL,NULL,NULL,NULL), ('370217','82588','1','reference','0','AFAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370218','82589','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370219','82589','7','graphid.0','0','',NULL,NULL,NULL,'2692',NULL,NULL,NULL,NULL,NULL,NULL), ('370220','82589','1','reference','0','AFAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370221','82590','1','bg_color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370222','82590','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370223','82590','1','description','0','Overall Latency Time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370224','82590','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370225','82590','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370226','82590','4','itemid.0','0','',NULL,NULL,'46926',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370227','82590','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370228','82590','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370229','82590','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370230','82590','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370231','82590','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370232','82591','1','bg_color','0','00D936',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370233','82591','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370234','82591','1','description','0','Bucket Size',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370235','82591','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370236','82591','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370237','82591','4','itemid.0','0','',NULL,NULL,'46931',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370238','82591','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370239','82591','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370240','82591','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370241','82591','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370242','82591','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370243','82592','1','bg_color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370244','82592','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370245','82592','1','description','0','Client-side Error Count',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370246','82592','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370247','82592','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370248','82592','4','itemid.0','0','',NULL,NULL,'46924',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370249','82592','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370250','82592','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370251','82592','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370252','82592','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370253','82592','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370254','82593','1','bg_color','0','00D936',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370255','82593','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370256','82593','1','description','0','Number of Objects',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370257','82593','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370258','82593','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370259','82593','4','itemid.0','0','',NULL,NULL,'46927',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370260','82593','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370261','82593','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370262','82593','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370263','82593','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370264','82593','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370265','82594','1','bg_color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370266','82594','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370267','82594','1','description','0','Incomplete Multipart Upload Size',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370268','82594','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370269','82594','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370270','82594','4','itemid.0','0','',NULL,NULL,'46932',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370271','82594','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370272','82594','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370273','82594','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370274','82594','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370275','82594','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370276','82595','1','bg_color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370277','82595','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370278','82595','1','description','0','First Byte Latency Time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370279','82595','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370280','82595','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370281','82595','4','itemid.0','0','',NULL,NULL,'46925',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370282','82595','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370283','82595','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370284','82595','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370285','82595','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370286','82595','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370287','82596','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370288','82596','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370289','82596','1','description','0','All Requests',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370290','82596','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370291','82596','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370292','82596','4','itemid.0','0','',NULL,NULL,'46928',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370293','82596','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370294','82596','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370295','82596','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370296','82596','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370297','82596','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370298','82597','6','graphid.0','0','',NULL,NULL,NULL,'2735',NULL,NULL,NULL,NULL,NULL,NULL), ('370299','82597','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370300','82598','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370301','82598','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370302','82598','1','description','0','Post Object Requests',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370303','82598','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370304','82598','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370305','82598','4','itemid.0','0','',NULL,NULL,'46929',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370306','82598','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370307','82598','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370308','82598','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370309','82598','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370310','82598','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370311','82599','1','bg_color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370312','82599','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370313','82599','1','description','0','OLM Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370314','82599','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370315','82599','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370316','82599','4','itemid.0','0','',NULL,NULL,'46861',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370317','82599','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370318','82599','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370319','82599','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370320','82599','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370321','82599','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370322','82600','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370323','82600','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370324','82600','1','description','0','Post Object Requests',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370325','82600','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370326','82600','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370327','82600','4','itemid.0','0','',NULL,NULL,'46929',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370328','82600','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370329','82600','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370330','82600','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370331','82600','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370332','82600','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370333','82601','1','bg_color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370334','82601','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370335','82601','1','description','0','Overall Latency Time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370336','82601','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370337','82601','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370338','82601','4','itemid.0','0','',NULL,NULL,'46926',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370339','82601','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370340','82601','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370341','82601','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370342','82601','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370343','82601','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370344','82602','6','graphid.0','0','',NULL,NULL,NULL,'2734',NULL,NULL,NULL,NULL,NULL,NULL), ('370345','82602','1','reference','0','ABAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370346','82603','1','bg_color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370347','82603','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370348','82603','1','description','0','First Byte Latency Time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370349','82603','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370350','82603','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370351','82603','4','itemid.0','0','',NULL,NULL,'46925',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370352','82603','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370353','82603','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370354','82603','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370355','82603','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370356','82603','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370357','82604','6','graphid.0','0','',NULL,NULL,NULL,'2732',NULL,NULL,NULL,NULL,NULL,NULL), ('370358','82604','1','reference','0','ABAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370359','82605','6','graphid.0','0','',NULL,NULL,NULL,'1454',NULL,NULL,NULL,NULL,NULL,NULL), ('370360','82605','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370361','82606','6','graphid.0','0','',NULL,NULL,NULL,'1452',NULL,NULL,NULL,NULL,NULL,NULL), ('370362','82606','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370363','82607','6','graphid.0','0','',NULL,NULL,NULL,'1451',NULL,NULL,NULL,NULL,NULL,NULL), ('370364','82607','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370365','82608','6','graphid.0','0','',NULL,NULL,NULL,'1450',NULL,NULL,NULL,NULL,NULL,NULL), ('370366','82608','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370367','82609','6','graphid.0','0','',NULL,NULL,NULL,'1449',NULL,NULL,NULL,NULL,NULL,NULL), ('370368','82609','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370369','82610','6','graphid.0','0','',NULL,NULL,NULL,'1453',NULL,NULL,NULL,NULL,NULL,NULL), ('370370','82610','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370371','82611','6','graphid.0','0','',NULL,NULL,NULL,'1455',NULL,NULL,NULL,NULL,NULL,NULL), ('370372','82611','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370373','82612','4','itemid.0','0','',NULL,NULL,'30821',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370374','82612','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370375','82612','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370376','82613','6','graphid.0','0','',NULL,NULL,NULL,'1166',NULL,NULL,NULL,NULL,NULL,NULL), ('370377','82613','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370378','82614','6','graphid.0','0','',NULL,NULL,NULL,'1164',NULL,NULL,NULL,NULL,NULL,NULL), ('370379','82614','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370380','82615','6','graphid.0','0','',NULL,NULL,NULL,'1161',NULL,NULL,NULL,NULL,NULL,NULL), ('370381','82615','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370382','82616','6','graphid.0','0','',NULL,NULL,NULL,'1163',NULL,NULL,NULL,NULL,NULL,NULL), ('370383','82616','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370384','82617','6','graphid.0','0','',NULL,NULL,NULL,'1169',NULL,NULL,NULL,NULL,NULL,NULL), ('370385','82617','1','reference','0','AAAAI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370386','82618','4','itemid.0','0','',NULL,NULL,'31054',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370387','82618','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370388','82618','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370389','82619','4','itemid.0','0','',NULL,NULL,'30846',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370390','82619','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370391','82619','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370392','82620','4','itemid.0','0','',NULL,NULL,'30822',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370393','82620','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370394','82620','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370395','82621','6','graphid.0','0','',NULL,NULL,NULL,'1167',NULL,NULL,NULL,NULL,NULL,NULL), ('370396','82621','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370397','82622','6','graphid.0','0','',NULL,NULL,NULL,'1165',NULL,NULL,NULL,NULL,NULL,NULL), ('370398','82622','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370399','82623','6','graphid.0','0','',NULL,NULL,NULL,'1162',NULL,NULL,NULL,NULL,NULL,NULL), ('370400','82623','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370401','82624','6','graphid.0','0','',NULL,NULL,NULL,'1168',NULL,NULL,NULL,NULL,NULL,NULL), ('370402','82624','1','reference','0','AAAAH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370403','82625','6','graphid.0','0','',NULL,NULL,NULL,'1576',NULL,NULL,NULL,NULL,NULL,NULL), ('370404','82625','1','reference','0','AAAAJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370405','82626','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370406','82626','7','graphid.0','0','',NULL,NULL,NULL,'1160',NULL,NULL,NULL,NULL,NULL,NULL), ('370407','82626','1','reference','0','AAAAK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370408','82626','0','rows','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370409','82627','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370410','82627','7','graphid.0','0','',NULL,NULL,NULL,'1159',NULL,NULL,NULL,NULL,NULL,NULL), ('370411','82627','1','reference','0','AAAAL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370412','82627','0','rows','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370413','82628','4','itemid.0','0','',NULL,NULL,'42965',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370414','82628','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370415','82628','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370416','82629','6','graphid.0','0','',NULL,NULL,NULL,'2335',NULL,NULL,NULL,NULL,NULL,NULL), ('370417','82629','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370418','82630','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370419','82630','7','graphid.0','0','',NULL,NULL,NULL,'2326',NULL,NULL,NULL,NULL,NULL,NULL), ('370420','82630','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370421','82631','6','graphid.0','0','',NULL,NULL,NULL,'2331',NULL,NULL,NULL,NULL,NULL,NULL), ('370422','82631','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370423','82632','6','graphid.0','0','',NULL,NULL,NULL,'2332',NULL,NULL,NULL,NULL,NULL,NULL), ('370424','82632','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370425','82633','4','itemid.0','0','',NULL,NULL,'42968',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370426','82633','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370427','82633','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370428','82634','6','graphid.0','0','',NULL,NULL,NULL,'2336',NULL,NULL,NULL,NULL,NULL,NULL), ('370429','82634','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370430','82635','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370431','82635','7','graphid.0','0','',NULL,NULL,NULL,'2328',NULL,NULL,NULL,NULL,NULL,NULL), ('370432','82635','1','reference','0','AAAAH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370433','82636','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370434','82636','5','itemid.0','0','',NULL,NULL,'43002',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370435','82636','1','reference','0','AAAAI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370436','82636','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370437','82637','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370438','82637','5','itemid.0','0','',NULL,NULL,'43007',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370439','82637','1','reference','0','AAAAJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370440','82637','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370441','82638','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370442','82638','7','graphid.0','0','',NULL,NULL,NULL,'2329',NULL,NULL,NULL,NULL,NULL,NULL), ('370443','82638','1','reference','0','AAAAK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370444','82639','4','itemid.0','0','',NULL,NULL,'42979',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370445','82639','1','reference','0','AAAAL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370446','82639','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370447','82640','6','graphid.0','0','',NULL,NULL,NULL,'2335',NULL,NULL,NULL,NULL,NULL,NULL), ('370448','82640','1','reference','0','AAAAM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370449','82641','4','itemid.0','0','',NULL,NULL,'42975',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370450','82641','1','reference','0','AAAAN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370451','82641','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370452','82642','4','itemid.0','0','',NULL,NULL,'42974',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370453','82642','1','reference','0','AAAAO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370454','82642','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370455','82643','4','itemid.0','0','',NULL,NULL,'42972',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370456','82643','1','reference','0','AAAAP',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370457','82643','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370458','82644','6','graphid.0','0','',NULL,NULL,NULL,'2330',NULL,NULL,NULL,NULL,NULL,NULL), ('370459','82644','1','reference','0','AAAAQ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370460','82645','4','itemid.0','0','',NULL,NULL,'42962',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370461','82645','1','reference','0','AAAAR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370462','82645','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370463','82646','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370464','82646','5','itemid.0','0','',NULL,NULL,'42996',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370465','82646','1','reference','0','AAAAS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370466','82646','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370467','82647','4','itemid.0','0','',NULL,NULL,'42958',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370468','82647','1','reference','0','AAAAT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370469','82647','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370470','82648','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370471','82648','5','itemid.0','0','',NULL,NULL,'42997',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370472','82648','1','reference','0','AAAAU',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370473','82648','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370474','82649','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370475','82649','5','itemid.0','0','',NULL,NULL,'42998',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370476','82649','1','reference','0','AAAAV',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370477','82649','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370478','82650','4','itemid.0','0','',NULL,NULL,'42937',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370479','82650','1','reference','0','AAAAW',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370480','82650','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370481','82651','4','itemid.0','0','',NULL,NULL,'42938',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370482','82651','1','reference','0','AAAAY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370483','82651','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370484','82652','6','graphid.0','0','',NULL,NULL,NULL,'2338',NULL,NULL,NULL,NULL,NULL,NULL), ('370485','82652','1','reference','0','AAABA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370486','82653','4','itemid.0','0','',NULL,NULL,'42939',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370487','82653','1','reference','0','AAABC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370488','82653','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370489','82654','6','graphid.0','0','',NULL,NULL,NULL,'2339',NULL,NULL,NULL,NULL,NULL,NULL), ('370490','82654','1','reference','0','AAABE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370491','82655','4','itemid.0','0','',NULL,NULL,'42984',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370492','82655','1','reference','0','AAABF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370493','82655','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370494','82656','4','itemid.0','0','',NULL,NULL,'42941',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370495','82656','1','reference','0','AAABH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370496','82656','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370497','82657','4','itemid.0','0','',NULL,NULL,'42952',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370498','82657','1','reference','0','AAAAX',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370499','82657','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370500','82658','6','graphid.0','0','',NULL,NULL,NULL,'2337',NULL,NULL,NULL,NULL,NULL,NULL), ('370501','82658','1','reference','0','AAAAZ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370502','82659','4','itemid.0','0','',NULL,NULL,'42942',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370503','82659','1','reference','0','AAABB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370504','82659','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370505','82660','4','itemid.0','0','',NULL,NULL,'42944',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370506','82660','1','reference','0','AAABD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370507','82660','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370508','82661','4','itemid.0','0','',NULL,NULL,'42936',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370509','82661','1','reference','0','AAABG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370510','82661','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370511','82662','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370512','82662','7','graphid.0','0','',NULL,NULL,NULL,'2326',NULL,NULL,NULL,NULL,NULL,NULL), ('370513','82662','1','reference','0','AAABI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370514','82663','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370515','82663','5','itemid.0','0','',NULL,NULL,'43000',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370516','82663','1','reference','0','AAABK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370517','82663','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370518','82664','6','graphid.0','0','',NULL,NULL,NULL,'2333',NULL,NULL,NULL,NULL,NULL,NULL), ('370519','82664','1','reference','0','AAABM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370520','82665','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370521','82665','7','graphid.0','0','',NULL,NULL,NULL,'2325',NULL,NULL,NULL,NULL,NULL,NULL), ('370522','82665','1','reference','0','AAABJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370523','82666','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370524','82666','5','itemid.0','0','',NULL,NULL,'42999',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370525','82666','1','reference','0','AAABL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370526','82666','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370527','82667','6','graphid.0','0','',NULL,NULL,NULL,'2340',NULL,NULL,NULL,NULL,NULL,NULL), ('370528','82667','1','reference','0','AAABN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370529','82668','7','graphid.0','0','',NULL,NULL,NULL,'1670',NULL,NULL,NULL,NULL,NULL,NULL), ('370530','82668','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370531','82669','7','graphid.0','0','',NULL,NULL,NULL,'1668',NULL,NULL,NULL,NULL,NULL,NULL), ('370532','82669','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370533','82670','7','graphid.0','0','',NULL,NULL,NULL,'1667',NULL,NULL,NULL,NULL,NULL,NULL), ('370534','82670','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370535','82671','7','graphid.0','0','',NULL,NULL,NULL,'1666',NULL,NULL,NULL,NULL,NULL,NULL), ('370536','82671','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370537','82672','4','itemid.0','0','',NULL,NULL,'36796',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370538','82672','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370539','82672','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370540','82673','6','graphid.0','0','',NULL,NULL,NULL,'1809',NULL,NULL,NULL,NULL,NULL,NULL), ('370541','82673','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370542','82674','4','itemid.0','0','',NULL,NULL,'36798',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370543','82674','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370544','82674','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370545','82675','4','itemid.0','0','',NULL,NULL,'36812',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370546','82675','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370547','82676','4','itemid.0','0','',NULL,NULL,'36802',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370548','82676','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370549','82676','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370550','82677','4','itemid.0','0','',NULL,NULL,'36803',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370551','82677','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370552','82677','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370553','82678','4','itemid.0','0','',NULL,NULL,'36797',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370554','82678','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370555','82679','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370556','82679','7','graphid.0','0','',NULL,NULL,NULL,'1807',NULL,NULL,NULL,NULL,NULL,NULL), ('370557','82679','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370558','82680','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370559','82680','7','graphid.0','0','',NULL,NULL,NULL,'1808',NULL,NULL,NULL,NULL,NULL,NULL), ('370560','82680','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370561','82681','6','graphid.0','0','',NULL,NULL,NULL,'1534',NULL,NULL,NULL,NULL,NULL,NULL), ('370562','82681','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370563','82682','6','graphid.0','0','',NULL,NULL,NULL,'1535',NULL,NULL,NULL,NULL,NULL,NULL), ('370564','82682','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370565','82683','6','graphid.0','0','',NULL,NULL,NULL,'1536',NULL,NULL,NULL,NULL,NULL,NULL), ('370566','82683','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370567','82684','6','graphid.0','0','',NULL,NULL,NULL,'1537',NULL,NULL,NULL,NULL,NULL,NULL), ('370568','82684','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370569','82685','6','graphid.0','0','',NULL,NULL,NULL,'1538',NULL,NULL,NULL,NULL,NULL,NULL), ('370570','82685','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370571','82686','6','graphid.0','0','',NULL,NULL,NULL,'1539',NULL,NULL,NULL,NULL,NULL,NULL), ('370572','82686','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370573','82687','6','graphid.0','0','',NULL,NULL,NULL,'1540',NULL,NULL,NULL,NULL,NULL,NULL), ('370574','82687','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370575','82688','6','graphid.0','0','',NULL,NULL,NULL,'1541',NULL,NULL,NULL,NULL,NULL,NULL), ('370576','82688','1','reference','0','AAAAH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370577','82689','6','graphid.0','0','',NULL,NULL,NULL,'1542',NULL,NULL,NULL,NULL,NULL,NULL), ('370578','82689','1','reference','0','AAAAI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370579','82690','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370580','82690','7','graphid.0','0','',NULL,NULL,NULL,'1527',NULL,NULL,NULL,NULL,NULL,NULL), ('370581','82690','1','reference','0','AAAAJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370582','82691','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370583','82691','7','graphid.0','0','',NULL,NULL,NULL,'1528',NULL,NULL,NULL,NULL,NULL,NULL), ('370584','82691','1','reference','0','AAAAK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370585','82692','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370586','82692','7','graphid.0','0','',NULL,NULL,NULL,'1529',NULL,NULL,NULL,NULL,NULL,NULL), ('370587','82692','1','reference','0','AAAAL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370588','82693','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370589','82693','7','graphid.0','0','',NULL,NULL,NULL,'1530',NULL,NULL,NULL,NULL,NULL,NULL), ('370590','82693','1','reference','0','AAAAM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370591','82694','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370592','82694','7','graphid.0','0','',NULL,NULL,NULL,'1531',NULL,NULL,NULL,NULL,NULL,NULL), ('370593','82694','1','reference','0','AAAAN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370594','82695','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370595','82695','7','graphid.0','0','',NULL,NULL,NULL,'1532',NULL,NULL,NULL,NULL,NULL,NULL), ('370596','82695','1','reference','0','AAAAO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370597','82696','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370598','82696','7','graphid.0','0','',NULL,NULL,NULL,'1533',NULL,NULL,NULL,NULL,NULL,NULL), ('370599','82696','1','reference','0','AAAAP',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370600','82697','6','graphid.0','0','',NULL,NULL,NULL,'1544',NULL,NULL,NULL,NULL,NULL,NULL), ('370601','82697','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370602','82698','6','graphid.0','0','',NULL,NULL,NULL,'1545',NULL,NULL,NULL,NULL,NULL,NULL), ('370603','82698','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370604','82699','6','graphid.0','0','',NULL,NULL,NULL,'1546',NULL,NULL,NULL,NULL,NULL,NULL), ('370605','82699','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370606','82700','6','graphid.0','0','',NULL,NULL,NULL,'1547',NULL,NULL,NULL,NULL,NULL,NULL), ('370607','82700','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370608','82701','6','graphid.0','0','',NULL,NULL,NULL,'1548',NULL,NULL,NULL,NULL,NULL,NULL), ('370609','82701','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370610','82702','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370611','82702','7','graphid.0','0','',NULL,NULL,NULL,'1543',NULL,NULL,NULL,NULL,NULL,NULL), ('370612','82702','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370613','82703','6','graphid.0','0','',NULL,NULL,NULL,'2640',NULL,NULL,NULL,NULL,NULL,NULL), ('370614','82703','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370615','82704','6','graphid.0','0','',NULL,NULL,NULL,'2648',NULL,NULL,NULL,NULL,NULL,NULL), ('370616','82704','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370617','82705','6','graphid.0','0','',NULL,NULL,NULL,'2650',NULL,NULL,NULL,NULL,NULL,NULL), ('370618','82705','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370619','82706','6','graphid.0','0','',NULL,NULL,NULL,'2639',NULL,NULL,NULL,NULL,NULL,NULL), ('370620','82706','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370621','82707','6','graphid.0','0','',NULL,NULL,NULL,'2649',NULL,NULL,NULL,NULL,NULL,NULL), ('370622','82707','1','reference','0','AAAAI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370623','82708','6','graphid.0','0','',NULL,NULL,NULL,'2646',NULL,NULL,NULL,NULL,NULL,NULL), ('370624','82708','1','reference','0','AAAAK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370625','82709','6','graphid.0','0','',NULL,NULL,NULL,'2644',NULL,NULL,NULL,NULL,NULL,NULL), ('370626','82709','1','reference','0','AAAAM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370627','82710','6','graphid.0','0','',NULL,NULL,NULL,'2635',NULL,NULL,NULL,NULL,NULL,NULL), ('370628','82710','1','reference','0','AAAAO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370629','82711','6','graphid.0','0','',NULL,NULL,NULL,'2642',NULL,NULL,NULL,NULL,NULL,NULL), ('370630','82711','1','reference','0','AAAAQ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370631','82712','6','graphid.0','0','',NULL,NULL,NULL,'2641',NULL,NULL,NULL,NULL,NULL,NULL), ('370632','82712','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370633','82713','6','graphid.0','0','',NULL,NULL,NULL,'2643',NULL,NULL,NULL,NULL,NULL,NULL), ('370634','82713','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370635','82714','6','graphid.0','0','',NULL,NULL,NULL,'2651',NULL,NULL,NULL,NULL,NULL,NULL), ('370636','82714','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370637','82715','6','graphid.0','0','',NULL,NULL,NULL,'2637',NULL,NULL,NULL,NULL,NULL,NULL), ('370638','82715','1','reference','0','AAAAH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370639','82716','6','graphid.0','0','',NULL,NULL,NULL,'2638',NULL,NULL,NULL,NULL,NULL,NULL), ('370640','82716','1','reference','0','AAAAJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370641','82717','6','graphid.0','0','',NULL,NULL,NULL,'2645',NULL,NULL,NULL,NULL,NULL,NULL), ('370642','82717','1','reference','0','AAAAL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370643','82718','6','graphid.0','0','',NULL,NULL,NULL,'2647',NULL,NULL,NULL,NULL,NULL,NULL), ('370644','82718','1','reference','0','AAAAN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370645','82719','6','graphid.0','0','',NULL,NULL,NULL,'2636',NULL,NULL,NULL,NULL,NULL,NULL), ('370646','82719','1','reference','0','AAAAP',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370647','82720','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370648','82720','7','graphid.0','0','',NULL,NULL,NULL,'2633',NULL,NULL,NULL,NULL,NULL,NULL), ('370649','82720','1','reference','0','AAAAR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370650','82720','0','rows','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370651','82721','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370652','82721','7','graphid.0','0','',NULL,NULL,NULL,'2631',NULL,NULL,NULL,NULL,NULL,NULL), ('370653','82721','1','reference','0','AAAAS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370654','82721','0','rows','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370655','82722','6','graphid.0','0','',NULL,NULL,NULL,'1198',NULL,NULL,NULL,NULL,NULL,NULL), ('370656','82722','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370657','82723','6','graphid.0','0','',NULL,NULL,NULL,'1206',NULL,NULL,NULL,NULL,NULL,NULL), ('370658','82723','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370659','82724','6','graphid.0','0','',NULL,NULL,NULL,'1208',NULL,NULL,NULL,NULL,NULL,NULL), ('370660','82724','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370661','82725','6','graphid.0','0','',NULL,NULL,NULL,'1197',NULL,NULL,NULL,NULL,NULL,NULL), ('370662','82725','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370663','82726','6','graphid.0','0','',NULL,NULL,NULL,'1207',NULL,NULL,NULL,NULL,NULL,NULL), ('370664','82726','1','reference','0','AAAAI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370665','82727','6','graphid.0','0','',NULL,NULL,NULL,'1204',NULL,NULL,NULL,NULL,NULL,NULL), ('370666','82727','1','reference','0','AAAAK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370667','82728','6','graphid.0','0','',NULL,NULL,NULL,'1202',NULL,NULL,NULL,NULL,NULL,NULL), ('370668','82728','1','reference','0','AAAAM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370669','82729','6','graphid.0','0','',NULL,NULL,NULL,'1193',NULL,NULL,NULL,NULL,NULL,NULL), ('370670','82729','1','reference','0','AAAAO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370671','82730','6','graphid.0','0','',NULL,NULL,NULL,'1200',NULL,NULL,NULL,NULL,NULL,NULL), ('370672','82730','1','reference','0','AAAAQ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370673','82731','6','graphid.0','0','',NULL,NULL,NULL,'1199',NULL,NULL,NULL,NULL,NULL,NULL), ('370674','82731','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370675','82732','6','graphid.0','0','',NULL,NULL,NULL,'1201',NULL,NULL,NULL,NULL,NULL,NULL), ('370676','82732','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370677','82733','6','graphid.0','0','',NULL,NULL,NULL,'1209',NULL,NULL,NULL,NULL,NULL,NULL), ('370678','82733','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370679','82734','6','graphid.0','0','',NULL,NULL,NULL,'1195',NULL,NULL,NULL,NULL,NULL,NULL), ('370680','82734','1','reference','0','AAAAH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370681','82735','6','graphid.0','0','',NULL,NULL,NULL,'1196',NULL,NULL,NULL,NULL,NULL,NULL), ('370682','82735','1','reference','0','AAAAJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370683','82736','6','graphid.0','0','',NULL,NULL,NULL,'1203',NULL,NULL,NULL,NULL,NULL,NULL), ('370684','82736','1','reference','0','AAAAL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370685','82737','6','graphid.0','0','',NULL,NULL,NULL,'1205',NULL,NULL,NULL,NULL,NULL,NULL), ('370686','82737','1','reference','0','AAAAN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370687','82738','6','graphid.0','0','',NULL,NULL,NULL,'1194',NULL,NULL,NULL,NULL,NULL,NULL), ('370688','82738','1','reference','0','AAAAP',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370689','82739','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370690','82739','7','graphid.0','0','',NULL,NULL,NULL,'1191',NULL,NULL,NULL,NULL,NULL,NULL), ('370691','82739','1','reference','0','AAAAR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370692','82739','0','rows','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370693','82740','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370694','82740','7','graphid.0','0','',NULL,NULL,NULL,'1190',NULL,NULL,NULL,NULL,NULL,NULL), ('370695','82740','1','reference','0','AAAAS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370696','82740','0','rows','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370697','82741','6','graphid.0','0','',NULL,NULL,NULL,'1112',NULL,NULL,NULL,NULL,NULL,NULL), ('370698','82741','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370699','82742','6','graphid.0','0','',NULL,NULL,NULL,'1110',NULL,NULL,NULL,NULL,NULL,NULL), ('370700','82742','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370701','82743','6','graphid.0','0','',NULL,NULL,NULL,'1111',NULL,NULL,NULL,NULL,NULL,NULL), ('370702','82743','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370703','82744','6','graphid.0','0','',NULL,NULL,NULL,'1113',NULL,NULL,NULL,NULL,NULL,NULL), ('370704','82744','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370705','82745','6','graphid.0','0','',NULL,NULL,NULL,'1109',NULL,NULL,NULL,NULL,NULL,NULL), ('370706','82745','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370707','82746','6','graphid.0','0','',NULL,NULL,NULL,'1114',NULL,NULL,NULL,NULL,NULL,NULL), ('370708','82746','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370709','82747','6','graphid.0','0','',NULL,NULL,NULL,'1139',NULL,NULL,NULL,NULL,NULL,NULL), ('370710','82747','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370711','82748','6','graphid.0','0','',NULL,NULL,NULL,'1137',NULL,NULL,NULL,NULL,NULL,NULL), ('370712','82748','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370713','82749','6','graphid.0','0','',NULL,NULL,NULL,'1138',NULL,NULL,NULL,NULL,NULL,NULL), ('370714','82749','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370715','82750','6','graphid.0','0','',NULL,NULL,NULL,'1140',NULL,NULL,NULL,NULL,NULL,NULL), ('370716','82750','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370717','82751','6','graphid.0','0','',NULL,NULL,NULL,'1136',NULL,NULL,NULL,NULL,NULL,NULL), ('370718','82751','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370719','82752','6','graphid.0','0','',NULL,NULL,NULL,'1141',NULL,NULL,NULL,NULL,NULL,NULL), ('370720','82752','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370721','82753','6','graphid.0','0','',NULL,NULL,NULL,'2918',NULL,NULL,NULL,NULL,NULL,NULL), ('370722','82753','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370723','82754','6','graphid.0','0','',NULL,NULL,NULL,'2916',NULL,NULL,NULL,NULL,NULL,NULL), ('370724','82754','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370725','82755','6','graphid.0','0','',NULL,NULL,NULL,'2917',NULL,NULL,NULL,NULL,NULL,NULL), ('370726','82755','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370727','82756','6','graphid.0','0','',NULL,NULL,NULL,'2919',NULL,NULL,NULL,NULL,NULL,NULL), ('370728','82756','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370729','82757','6','graphid.0','0','',NULL,NULL,NULL,'2915',NULL,NULL,NULL,NULL,NULL,NULL), ('370730','82757','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370731','82758','6','graphid.0','0','',NULL,NULL,NULL,'2920',NULL,NULL,NULL,NULL,NULL,NULL), ('370732','82758','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370733','82759','6','graphid.0','0','',NULL,NULL,NULL,'2924',NULL,NULL,NULL,NULL,NULL,NULL), ('370734','82759','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370735','82760','6','graphid.0','0','',NULL,NULL,NULL,'2922',NULL,NULL,NULL,NULL,NULL,NULL), ('370736','82760','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370737','82761','6','graphid.0','0','',NULL,NULL,NULL,'2923',NULL,NULL,NULL,NULL,NULL,NULL), ('370738','82761','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370739','82762','6','graphid.0','0','',NULL,NULL,NULL,'2925',NULL,NULL,NULL,NULL,NULL,NULL), ('370740','82762','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370741','82763','6','graphid.0','0','',NULL,NULL,NULL,'2921',NULL,NULL,NULL,NULL,NULL,NULL), ('370742','82763','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370743','82764','6','graphid.0','0','',NULL,NULL,NULL,'2926',NULL,NULL,NULL,NULL,NULL,NULL), ('370744','82764','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370745','82765','6','graphid.0','0','',NULL,NULL,NULL,'1118',NULL,NULL,NULL,NULL,NULL,NULL), ('370746','82765','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370747','82766','6','graphid.0','0','',NULL,NULL,NULL,'1116',NULL,NULL,NULL,NULL,NULL,NULL), ('370748','82766','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370749','82767','6','graphid.0','0','',NULL,NULL,NULL,'1117',NULL,NULL,NULL,NULL,NULL,NULL), ('370750','82767','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370751','82768','6','graphid.0','0','',NULL,NULL,NULL,'1119',NULL,NULL,NULL,NULL,NULL,NULL), ('370752','82768','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370753','82769','6','graphid.0','0','',NULL,NULL,NULL,'1115',NULL,NULL,NULL,NULL,NULL,NULL), ('370754','82769','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370755','82770','6','graphid.0','0','',NULL,NULL,NULL,'1120',NULL,NULL,NULL,NULL,NULL,NULL), ('370756','82770','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370757','82771','6','graphid.0','0','',NULL,NULL,NULL,'2519',NULL,NULL,NULL,NULL,NULL,NULL), ('370758','82771','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370759','82772','6','graphid.0','0','',NULL,NULL,NULL,'1270',NULL,NULL,NULL,NULL,NULL,NULL), ('370760','82772','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370761','82773','6','graphid.0','0','',NULL,NULL,NULL,'1268',NULL,NULL,NULL,NULL,NULL,NULL), ('370762','82773','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370763','82774','6','graphid.0','0','',NULL,NULL,NULL,'1272',NULL,NULL,NULL,NULL,NULL,NULL), ('370764','82774','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370765','82775','6','graphid.0','0','',NULL,NULL,NULL,'1274',NULL,NULL,NULL,NULL,NULL,NULL), ('370766','82775','1','reference','0','AAAAI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370767','82776','6','graphid.0','0','',NULL,NULL,NULL,'2520',NULL,NULL,NULL,NULL,NULL,NULL), ('370768','82776','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370769','82777','6','graphid.0','0','',NULL,NULL,NULL,'1271',NULL,NULL,NULL,NULL,NULL,NULL), ('370770','82777','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370771','82778','6','graphid.0','0','',NULL,NULL,NULL,'1269',NULL,NULL,NULL,NULL,NULL,NULL), ('370772','82778','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370773','82779','6','graphid.0','0','',NULL,NULL,NULL,'1273',NULL,NULL,NULL,NULL,NULL,NULL), ('370774','82779','1','reference','0','AAAAH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370775','82780','6','graphid.0','0','',NULL,NULL,NULL,'2521',NULL,NULL,NULL,NULL,NULL,NULL), ('370776','82780','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370777','82781','6','graphid.0','0','',NULL,NULL,NULL,'1214',NULL,NULL,NULL,NULL,NULL,NULL), ('370778','82781','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370779','82782','6','graphid.0','0','',NULL,NULL,NULL,'1212',NULL,NULL,NULL,NULL,NULL,NULL), ('370780','82782','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370781','82783','6','graphid.0','0','',NULL,NULL,NULL,'1216',NULL,NULL,NULL,NULL,NULL,NULL), ('370782','82783','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370783','82784','6','graphid.0','0','',NULL,NULL,NULL,'1218',NULL,NULL,NULL,NULL,NULL,NULL), ('370784','82784','1','reference','0','AAAAI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370785','82785','6','graphid.0','0','',NULL,NULL,NULL,'2522',NULL,NULL,NULL,NULL,NULL,NULL), ('370786','82785','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370787','82786','6','graphid.0','0','',NULL,NULL,NULL,'1215',NULL,NULL,NULL,NULL,NULL,NULL), ('370788','82786','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370789','82787','6','graphid.0','0','',NULL,NULL,NULL,'1213',NULL,NULL,NULL,NULL,NULL,NULL), ('370790','82787','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370791','82788','6','graphid.0','0','',NULL,NULL,NULL,'1217',NULL,NULL,NULL,NULL,NULL,NULL), ('370792','82788','1','reference','0','AAAAH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370793','82789','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370794','82789','7','graphid.0','0','',NULL,NULL,NULL,'1387',NULL,NULL,NULL,NULL,NULL,NULL), ('370795','82789','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370796','82790','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370797','82790','7','graphid.0','0','',NULL,NULL,NULL,'1380',NULL,NULL,NULL,NULL,NULL,NULL), ('370798','82790','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370799','82791','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370800','82791','7','graphid.0','0','',NULL,NULL,NULL,'1383',NULL,NULL,NULL,NULL,NULL,NULL), ('370801','82791','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370802','82792','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370803','82792','7','graphid.0','0','',NULL,NULL,NULL,'1384',NULL,NULL,NULL,NULL,NULL,NULL), ('370804','82792','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370805','82793','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370806','82793','7','graphid.0','0','',NULL,NULL,NULL,'1382',NULL,NULL,NULL,NULL,NULL,NULL), ('370807','82793','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370808','82794','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370809','82794','7','graphid.0','0','',NULL,NULL,NULL,'1386',NULL,NULL,NULL,NULL,NULL,NULL), ('370810','82794','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370811','82795','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370812','82795','7','graphid.0','0','',NULL,NULL,NULL,'1381',NULL,NULL,NULL,NULL,NULL,NULL), ('370813','82795','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370814','82796','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370815','82796','7','graphid.0','0','',NULL,NULL,NULL,'1385',NULL,NULL,NULL,NULL,NULL,NULL), ('370816','82796','1','reference','0','AAAAH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370817','82797','6','graphid.0','0','',NULL,NULL,NULL,'1390',NULL,NULL,NULL,NULL,NULL,NULL), ('370818','82797','1','reference','0','AAAAI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370819','82798','6','graphid.0','0','',NULL,NULL,NULL,'1391',NULL,NULL,NULL,NULL,NULL,NULL), ('370820','82798','1','reference','0','AAAAK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370821','82799','6','graphid.0','0','',NULL,NULL,NULL,'1392',NULL,NULL,NULL,NULL,NULL,NULL), ('370822','82799','1','reference','0','AAAAM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370823','82800','6','graphid.0','0','',NULL,NULL,NULL,'1388',NULL,NULL,NULL,NULL,NULL,NULL), ('370824','82800','1','reference','0','AAAAO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370825','82801','6','graphid.0','0','',NULL,NULL,NULL,'1393',NULL,NULL,NULL,NULL,NULL,NULL), ('370826','82801','1','reference','0','AAAAJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370827','82802','6','graphid.0','0','',NULL,NULL,NULL,'1394',NULL,NULL,NULL,NULL,NULL,NULL), ('370828','82802','1','reference','0','AAAAL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370829','82803','6','graphid.0','0','',NULL,NULL,NULL,'1395',NULL,NULL,NULL,NULL,NULL,NULL), ('370830','82803','1','reference','0','AAAAN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370831','82804','6','graphid.0','0','',NULL,NULL,NULL,'1389',NULL,NULL,NULL,NULL,NULL,NULL), ('370832','82804','1','reference','0','AAAAP',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370833','82805','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370834','82805','7','graphid.0','0','',NULL,NULL,NULL,'1221',NULL,NULL,NULL,NULL,NULL,NULL), ('370835','82805','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370836','82806','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370837','82806','7','graphid.0','0','',NULL,NULL,NULL,'1222',NULL,NULL,NULL,NULL,NULL,NULL), ('370838','82806','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370839','82807','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370840','82807','7','graphid.0','0','',NULL,NULL,NULL,'2323',NULL,NULL,NULL,NULL,NULL,NULL), ('370841','82807','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370842','82808','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370843','82808','7','graphid.0','0','',NULL,NULL,NULL,'1219',NULL,NULL,NULL,NULL,NULL,NULL), ('370844','82808','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370845','82809','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370846','82809','7','graphid.0','0','',NULL,NULL,NULL,'1220',NULL,NULL,NULL,NULL,NULL,NULL), ('370847','82809','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370848','82810','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370849','82810','7','graphid.0','0','',NULL,NULL,NULL,'2324',NULL,NULL,NULL,NULL,NULL,NULL), ('370850','82810','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370851','82811','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370852','82811','7','graphid.0','0','',NULL,NULL,NULL,'2929',NULL,NULL,NULL,NULL,NULL,NULL), ('370853','82811','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370854','82812','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370855','82812','7','graphid.0','0','',NULL,NULL,NULL,'2931',NULL,NULL,NULL,NULL,NULL,NULL), ('370856','82812','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370857','82813','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370858','82813','7','graphid.0','0','',NULL,NULL,NULL,'2930',NULL,NULL,NULL,NULL,NULL,NULL), ('370859','82813','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370860','82814','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370861','82814','7','graphid.0','0','',NULL,NULL,NULL,'2927',NULL,NULL,NULL,NULL,NULL,NULL), ('370862','82814','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370863','82815','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370864','82815','7','graphid.0','0','',NULL,NULL,NULL,'2928',NULL,NULL,NULL,NULL,NULL,NULL), ('370865','82815','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370866','82816','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370867','82816','7','graphid.0','0','',NULL,NULL,NULL,'2932',NULL,NULL,NULL,NULL,NULL,NULL), ('370868','82816','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370869','82817','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370870','82817','7','graphid.0','0','',NULL,NULL,NULL,'2941',NULL,NULL,NULL,NULL,NULL,NULL), ('370871','82817','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370872','82818','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370873','82818','7','graphid.0','0','',NULL,NULL,NULL,'2934',NULL,NULL,NULL,NULL,NULL,NULL), ('370874','82818','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370875','82819','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370876','82819','7','graphid.0','0','',NULL,NULL,NULL,'2937',NULL,NULL,NULL,NULL,NULL,NULL), ('370877','82819','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370878','82820','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370879','82820','7','graphid.0','0','',NULL,NULL,NULL,'2938',NULL,NULL,NULL,NULL,NULL,NULL), ('370880','82820','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370881','82821','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370882','82821','7','graphid.0','0','',NULL,NULL,NULL,'2936',NULL,NULL,NULL,NULL,NULL,NULL), ('370883','82821','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370884','82822','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370885','82822','7','graphid.0','0','',NULL,NULL,NULL,'2940',NULL,NULL,NULL,NULL,NULL,NULL), ('370886','82822','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370887','82823','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370888','82823','7','graphid.0','0','',NULL,NULL,NULL,'2935',NULL,NULL,NULL,NULL,NULL,NULL), ('370889','82823','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370890','82824','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370891','82824','7','graphid.0','0','',NULL,NULL,NULL,'2939',NULL,NULL,NULL,NULL,NULL,NULL), ('370892','82824','1','reference','0','AAAAH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370893','82825','6','graphid.0','0','',NULL,NULL,NULL,'2944',NULL,NULL,NULL,NULL,NULL,NULL), ('370894','82825','1','reference','0','AAAAI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370895','82826','6','graphid.0','0','',NULL,NULL,NULL,'2945',NULL,NULL,NULL,NULL,NULL,NULL), ('370896','82826','1','reference','0','AAAAK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370897','82827','6','graphid.0','0','',NULL,NULL,NULL,'2946',NULL,NULL,NULL,NULL,NULL,NULL), ('370898','82827','1','reference','0','AAAAM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370899','82828','6','graphid.0','0','',NULL,NULL,NULL,'2942',NULL,NULL,NULL,NULL,NULL,NULL), ('370900','82828','1','reference','0','AAAAO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370901','82829','6','graphid.0','0','',NULL,NULL,NULL,'2947',NULL,NULL,NULL,NULL,NULL,NULL), ('370902','82829','1','reference','0','AAAAJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370903','82830','6','graphid.0','0','',NULL,NULL,NULL,'2948',NULL,NULL,NULL,NULL,NULL,NULL), ('370904','82830','1','reference','0','AAAAL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370905','82831','6','graphid.0','0','',NULL,NULL,NULL,'2949',NULL,NULL,NULL,NULL,NULL,NULL), ('370906','82831','1','reference','0','AAAAN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370907','82832','6','graphid.0','0','',NULL,NULL,NULL,'2943',NULL,NULL,NULL,NULL,NULL,NULL), ('370908','82832','1','reference','0','AAAAP',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370909','82833','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370910','82833','7','graphid.0','0','',NULL,NULL,NULL,'2549',NULL,NULL,NULL,NULL,NULL,NULL), ('370911','82833','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370912','82834','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370913','82834','7','graphid.0','0','',NULL,NULL,NULL,'2551',NULL,NULL,NULL,NULL,NULL,NULL), ('370914','82834','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370915','82835','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370916','82835','7','graphid.0','0','',NULL,NULL,NULL,'2550',NULL,NULL,NULL,NULL,NULL,NULL), ('370917','82835','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370918','82836','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370919','82836','7','graphid.0','0','',NULL,NULL,NULL,'2547',NULL,NULL,NULL,NULL,NULL,NULL), ('370920','82836','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370921','82837','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370922','82837','7','graphid.0','0','',NULL,NULL,NULL,'2548',NULL,NULL,NULL,NULL,NULL,NULL), ('370923','82837','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370924','82838','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370925','82838','7','graphid.0','0','',NULL,NULL,NULL,'2552',NULL,NULL,NULL,NULL,NULL,NULL), ('370926','82838','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370927','82839','6','graphid.0','0','',NULL,NULL,NULL,'1091',NULL,NULL,NULL,NULL,NULL,NULL), ('370928','82839','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370929','82840','6','graphid.0','0','',NULL,NULL,NULL,'1092',NULL,NULL,NULL,NULL,NULL,NULL), ('370930','82840','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370931','82841','6','graphid.0','0','',NULL,NULL,NULL,'1099',NULL,NULL,NULL,NULL,NULL,NULL), ('370932','82841','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370933','82842','6','graphid.0','0','',NULL,NULL,NULL,'1101',NULL,NULL,NULL,NULL,NULL,NULL), ('370934','82842','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370935','82843','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370936','82843','7','graphid.0','0','',NULL,NULL,NULL,'1090',NULL,NULL,NULL,NULL,NULL,NULL), ('370937','82843','1','reference','0','AAAAI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370938','82844','6','graphid.0','0','',NULL,NULL,NULL,'1095',NULL,NULL,NULL,NULL,NULL,NULL), ('370939','82844','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370940','82845','6','graphid.0','0','',NULL,NULL,NULL,'1094',NULL,NULL,NULL,NULL,NULL,NULL), ('370941','82845','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370942','82846','6','graphid.0','0','',NULL,NULL,NULL,'1100',NULL,NULL,NULL,NULL,NULL,NULL), ('370943','82846','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370944','82847','6','graphid.0','0','',NULL,NULL,NULL,'1102',NULL,NULL,NULL,NULL,NULL,NULL), ('370945','82847','1','reference','0','AAAAH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370946','82848','6','graphid.0','0','',NULL,NULL,NULL,'1093',NULL,NULL,NULL,NULL,NULL,NULL), ('370947','82848','1','reference','0','AAAAJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370948','82849','6','graphid.0','0','',NULL,NULL,NULL,'1096',NULL,NULL,NULL,NULL,NULL,NULL), ('370949','82849','1','reference','0','AAAAL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370950','82850','6','graphid.0','0','',NULL,NULL,NULL,'1098',NULL,NULL,NULL,NULL,NULL,NULL), ('370951','82850','1','reference','0','AAAAK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370952','82851','6','graphid.0','0','',NULL,NULL,NULL,'1097',NULL,NULL,NULL,NULL,NULL,NULL), ('370953','82851','1','reference','0','AAAAM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370954','82852','4','itemid.0','0','',NULL,NULL,'34339',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370955','82852','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370956','82852','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370957','82853','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370958','82853','7','graphid.0','0','',NULL,NULL,NULL,'1577',NULL,NULL,NULL,NULL,NULL,NULL), ('370959','82853','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370960','82854','4','itemid.0','0','',NULL,NULL,'34340',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370961','82854','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370962','82854','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370963','82855','4','itemid.0','0','',NULL,NULL,'34341',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370964','82855','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370965','82856','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370966','82856','7','graphid.0','0','',NULL,NULL,NULL,'2523',NULL,NULL,NULL,NULL,NULL,NULL), ('370967','82856','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370968','82857','6','graphid.0','0','',NULL,NULL,NULL,'1579',NULL,NULL,NULL,NULL,NULL,NULL), ('370969','82857','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370970','82858','6','graphid.0','0','',NULL,NULL,NULL,'1578',NULL,NULL,NULL,NULL,NULL,NULL), ('370971','82858','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370972','82859','6','graphid.0','0','',NULL,NULL,NULL,'1580',NULL,NULL,NULL,NULL,NULL,NULL), ('370973','82859','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370974','82860','4','itemid.0','0','',NULL,NULL,'34439',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370975','82860','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370976','82860','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370977','82861','6','graphid.0','0','',NULL,NULL,NULL,'1582',NULL,NULL,NULL,NULL,NULL,NULL), ('370978','82861','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370979','82862','6','graphid.0','0','',NULL,NULL,NULL,'1581',NULL,NULL,NULL,NULL,NULL,NULL), ('370980','82862','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370981','82863','1','description','0','CPU utilization',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370982','82863','0','desc_size','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370983','82863','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370984','82863','4','itemid.0','0','',NULL,NULL,'46672',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370985','82863','0','scale_size','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370986','82863','1','thresholds.0.color','0','66BB6A',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370987','82863','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370988','82863','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370989','82863','1','thresholds.1.threshold','0','80',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370990','82863','1','thresholds.2.color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370991','82863','1','thresholds.2.threshold','0','90',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370992','82863','0','th_show_arc','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370993','82863','0','th_show_labels','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370994','82863','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370995','82864','1','ds.0.color.0','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370996','82864','1','ds.0.color.1','0','B0AF07',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370997','82864','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370998','82864','4','ds.0.itemids.0','0','',NULL,NULL,'46691',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('370999','82864','4','ds.0.itemids.1','0','',NULL,NULL,'46695',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371000','82864','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371001','82864','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371002','82864','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371003','82864','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371004','82864','0','simple_triggers','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371005','82865','1','description','0','Memory utilization',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371006','82865','0','desc_size','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371007','82865','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371008','82865','4','itemid.0','0','',NULL,NULL,'46663',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371009','82865','0','scale_size','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371010','82865','1','thresholds.0.color','0','66BB6A',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371011','82865','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371012','82865','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371013','82865','1','thresholds.1.threshold','0','70',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371014','82865','1','thresholds.2.color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371015','82865','1','thresholds.2.threshold','0','90',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371016','82865','0','th_show_arc','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371017','82865','0','th_show_labels','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371018','82865','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371019','82866','1','description','0','Disk space utilization',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371020','82866','0','desc_size','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371021','82866','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371022','82866','4','itemid.0','0','',NULL,NULL,'46661',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371023','82866','0','scale_size','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371024','82866','1','thresholds.0.color','0','66BB6A',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371025','82866','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371026','82866','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371027','82866','1','thresholds.1.threshold','0','70',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371028','82866','1','thresholds.2.color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371029','82866','1','thresholds.2.threshold','0','90',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371030','82866','0','th_show_arc','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371031','82866','0','th_show_labels','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371032','82866','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371033','82867','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371034','82867','1','description','0','Number of nodes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371035','82867','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371036','82867','4','itemid.0','0','',NULL,NULL,'46688',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371037','82867','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371038','82867','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371039','82868','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371040','82868','1','description','0','YSQL connection average used',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371041','82868','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371042','82868','4','itemid.0','0','',NULL,NULL,'46669',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371043','82868','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371044','82868','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371045','82868','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371046','82869','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371047','82869','1','description','0','YSQL transaction OPS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371048','82869','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371049','82869','4','itemid.0','0','',NULL,NULL,'46718',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371050','82869','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371051','82869','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371052','82869','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371053','82869','1','units','0','OPS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371054','82869','0','units_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371055','82870','1','description','0','Health state',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371056','82870','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371057','82870','4','itemid.0','0','',NULL,NULL,'46680',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371058','82870','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371059','82870','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371060','82870','1','thresholds.0.color','0','81C784',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371061','82870','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371062','82870','1','thresholds.1.color','0','FFF59D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371063','82870','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371064','82870','1','thresholds.2.color','0','A5A5A5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371065','82870','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371066','82870','1','thresholds.3.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371067','82870','1','thresholds.3.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371068','82871','1','description','0','Cluster state',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371069','82871','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371070','82871','4','itemid.0','0','',NULL,NULL,'46693',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371071','82871','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371072','82871','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371073','82872','1','description','0','Software version',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371074','82872','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371075','82872','4','itemid.0','0','',NULL,NULL,'46692',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371076','82872','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371077','82872','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371078','82873','1','description','0','YB controller version',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371079','82873','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371080','82873','4','itemid.0','0','',NULL,NULL,'46696',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371081','82873','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371082','82873','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371083','82874','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371084','82874','1','description','0','YCQL transaction OPS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371085','82874','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371086','82874','4','itemid.0','0','',NULL,NULL,'46706',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371087','82874','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371088','82874','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371089','82874','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371090','82874','1','units','0','OPS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371091','82874','0','units_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371092','82875','1','ds.0.color.0','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371093','82875','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371094','82875','4','ds.0.itemids.0','0','',NULL,NULL,'46663',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371095','82875','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371096','82875','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371097','82875','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371098','82875','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371099','82875','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371100','82875','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371101','82875','0','simple_triggers','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371102','82876','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371103','82876','1','description','0','Memory total',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371104','82876','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371105','82876','4','itemid.0','0','',NULL,NULL,'46681',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371106','82876','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371107','82876','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371108','82876','1','units','0','B',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371109','82877','1','ds.0.color.0','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371110','82877','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371111','82877','4','ds.0.itemids.0','0','',NULL,NULL,'46672',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371112','82877','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371113','82877','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371114','82877','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371115','82877','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371116','82877','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371117','82877','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371118','82877','0','simple_triggers','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371119','82878','0','decimal_size','45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371120','82878','1','description','0','Memory usage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371121','82878','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371122','82878','4','itemid.0','0','',NULL,NULL,'46682',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371123','82878','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371124','82878','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371125','82878','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371126','82878','1','units','0','B',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371127','82879','1','ds.0.color.0','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371128','82879','1','ds.0.color.1','0','B0AF07',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371129','82879','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371130','82879','4','ds.0.itemids.0','0','',NULL,NULL,'46674',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371131','82879','4','ds.0.itemids.1','0','',NULL,NULL,'46677',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371132','82879','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371133','82879','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371134','82879','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371135','82879','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371136','82879','0','simple_triggers','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371137','82880','1','ds.0.color.0','0','B0AF07',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371138','82880','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371139','82880','4','ds.0.itemids.0','0','',NULL,NULL,'46676',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371140','82880','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371141','82880','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371142','82880','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371143','82880','1','reference','0','AAAAH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371144','82880','0','simple_triggers','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371145','82881','1','ds.0.color.0','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371146','82881','1','ds.0.color.1','0','B0AF07',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371147','82881','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371148','82881','4','ds.0.itemids.0','0','',NULL,NULL,'46675',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371149','82881','4','ds.0.itemids.1','0','',NULL,NULL,'46678',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371150','82881','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371151','82881','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371152','82881','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371153','82881','1','reference','0','AAAAI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371154','82881','0','simple_triggers','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371155','82882','0','decimal_size','40','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371156','82882','1','description','0','Disk space utilization',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371157','82882','0','desc_size','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371158','82882','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371159','82882','4','itemid.0','0','',NULL,NULL,'46661',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371160','82882','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371161','82882','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371162','82882','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371163','82882','0','value_size','40','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371164','82883','0','decimal_size','40','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371165','82883','1','description','0','Disk space provisioned',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371166','82883','0','desc_size','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371167','82883','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371168','82883','4','itemid.0','0','',NULL,NULL,'46673',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371169','82883','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371170','82883','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371171','82883','1','units','0','B',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371172','82883','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371173','82883','0','value_size','40','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371174','82884','1','ds.0.color.0','0','388E3C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371175','82884','1','ds.0.color.1','0','B0AF07',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371176','82884','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371177','82884','4','ds.0.itemids.0','0','',NULL,NULL,'46676',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371178','82884','4','ds.0.itemids.1','0','',NULL,NULL,'46673',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371179','82884','0','ds.0.type.0','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371180','82884','0','ds.0.type.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371181','82884','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371182','82884','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371183','82884','0','space','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371184','82885','1','ds.0.color.0','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371185','82885','1','ds.0.color.1','0','B0AF07',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371186','82885','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371187','82885','4','ds.0.itemids.0','0','',NULL,NULL,'46684',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371188','82885','4','ds.0.itemids.1','0','',NULL,NULL,'46686',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371189','82885','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371190','82885','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371191','82885','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371192','82885','1','reference','0','AAAAK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371193','82886','1','ds.0.color.0','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371194','82886','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371195','82886','4','ds.0.itemids.0','0','',NULL,NULL,'46660',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371196','82886','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371197','82886','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371198','82886','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371199','82886','1','reference','0','AAAAL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371200','82886','0','simple_triggers','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371201','82887','1','ds.0.color.0','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371202','82887','1','ds.0.color.1','0','B0AF07',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371203','82887','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371204','82887','4','ds.0.itemids.0','0','',NULL,NULL,'46685',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371205','82887','4','ds.0.itemids.1','0','',NULL,NULL,'46687',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371206','82887','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371207','82887','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371208','82887','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371209','82887','1','reference','0','AAAAM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371210','82888','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371211','82888','1','description','0','YSQL connection limit',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371212','82888','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371213','82888','4','itemid.0','0','',NULL,NULL,'46670',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371214','82888','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371215','82888','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371216','82889','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371217','82889','1','description','0','YSQL connection maximum used',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371218','82889','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371219','82889','4','itemid.0','0','',NULL,NULL,'46671',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371220','82889','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371221','82889','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371222','82889','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371223','82890','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371224','82890','1','description','0','YSQL connection average used',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371225','82890','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371226','82890','4','itemid.0','0','',NULL,NULL,'46669',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371227','82890','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371228','82890','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371229','82890','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371230','82891','1','ds.0.color.0','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371231','82891','1','ds.0.color.1','0','B0AF07',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371232','82891','1','ds.0.color.2','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371233','82891','1','ds.0.color.3','0','524BBC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371234','82891','1','ds.0.color.4','0','ED1248',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371235','82891','1','ds.0.color.5','0','D1E754',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371236','82891','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371237','82891','4','ds.0.itemids.0','0','',NULL,NULL,'46704',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371238','82891','4','ds.0.itemids.1','0','',NULL,NULL,'46708',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371239','82891','4','ds.0.itemids.2','0','',NULL,NULL,'46698',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371240','82891','4','ds.0.itemids.3','0','',NULL,NULL,'46700',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371241','82891','4','ds.0.itemids.4','0','',NULL,NULL,'46702',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371242','82891','4','ds.0.itemids.5','0','',NULL,NULL,'46706',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371243','82891','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371244','82891','0','legend_lines','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371245','82891','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371246','82891','1','reference','0','AAAAN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371247','82892','1','ds.0.color.0','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371248','82892','1','ds.0.color.1','0','B0AF07',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371249','82892','1','ds.0.color.2','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371250','82892','1','ds.0.color.3','0','524BBC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371251','82892','1','ds.0.color.4','0','ED1248',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371252','82892','1','ds.0.color.5','0','D1E754',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371253','82892','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371254','82892','4','ds.0.itemids.0','0','',NULL,NULL,'46716',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371255','82892','4','ds.0.itemids.1','0','',NULL,NULL,'46720',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371256','82892','4','ds.0.itemids.2','0','',NULL,NULL,'46710',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371257','82892','4','ds.0.itemids.3','0','',NULL,NULL,'46712',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371258','82892','4','ds.0.itemids.4','0','',NULL,NULL,'46714',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371259','82892','4','ds.0.itemids.5','0','',NULL,NULL,'46718',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371260','82892','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371261','82892','0','legend_lines','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371262','82892','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371263','82892','1','reference','0','AAAAO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371264','82893','1','ds.0.color.0','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371265','82893','1','ds.0.color.1','0','B0AF07',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371266','82893','1','ds.0.color.2','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371267','82893','1','ds.0.color.3','0','524BBC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371268','82893','1','ds.0.color.4','0','ED1248',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371269','82893','1','ds.0.color.5','0','D1E754',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371270','82893','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371271','82893','4','ds.0.itemids.0','0','',NULL,NULL,'46703',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371272','82893','4','ds.0.itemids.1','0','',NULL,NULL,'46707',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371273','82893','4','ds.0.itemids.2','0','',NULL,NULL,'46697',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371274','82893','4','ds.0.itemids.3','0','',NULL,NULL,'46699',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371275','82893','4','ds.0.itemids.4','0','',NULL,NULL,'46701',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371276','82893','4','ds.0.itemids.5','0','',NULL,NULL,'46705',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371277','82893','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371278','82893','0','legend_lines','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371279','82893','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371280','82893','1','reference','0','AAAAP',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371281','82894','1','ds.0.color.0','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371282','82894','1','ds.0.color.1','0','B0AF07',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371283','82894','1','ds.0.color.2','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371284','82894','1','ds.0.color.3','0','524BBC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371285','82894','1','ds.0.color.4','0','ED1248',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371286','82894','1','ds.0.color.5','0','D1E754',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371287','82894','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371288','82894','4','ds.0.itemids.0','0','',NULL,NULL,'46715',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371289','82894','4','ds.0.itemids.1','0','',NULL,NULL,'46719',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371290','82894','4','ds.0.itemids.2','0','',NULL,NULL,'46709',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371291','82894','4','ds.0.itemids.3','0','',NULL,NULL,'46711',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371292','82894','4','ds.0.itemids.4','0','',NULL,NULL,'46713',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371293','82894','4','ds.0.itemids.5','0','',NULL,NULL,'46717',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371294','82894','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371295','82894','0','legend_lines','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371296','82894','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371297','82894','1','reference','0','AAAAQ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371298','82895','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371299','82895','7','graphid.0','0','',NULL,NULL,NULL,'2653',NULL,NULL,NULL,NULL,NULL,NULL), ('371300','82895','1','reference','0','AAAAR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371301','82895','0','rows','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371302','82896','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371303','82896','7','graphid.0','0','',NULL,NULL,NULL,'2654',NULL,NULL,NULL,NULL,NULL,NULL), ('371304','82896','1','reference','0','AAAAS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371305','82896','0','rows','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371306','82897','7','graphid.0','0','',NULL,NULL,NULL,'2652',NULL,NULL,NULL,NULL,NULL,NULL), ('371307','82897','1','reference','0','AAAAT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371308','82897','0','rows','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371309','82898','6','graphid.0','0','',NULL,NULL,NULL,'1033',NULL,NULL,NULL,NULL,NULL,NULL), ('371310','82898','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371311','82899','6','graphid.0','0','',NULL,NULL,NULL,'668',NULL,NULL,NULL,NULL,NULL,NULL), ('371312','82899','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371313','82900','6','graphid.0','0','',NULL,NULL,NULL,'1032',NULL,NULL,NULL,NULL,NULL,NULL), ('371314','82900','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371315','82901','6','graphid.0','0','',NULL,NULL,NULL,'2127',NULL,NULL,NULL,NULL,NULL,NULL), ('371316','82901','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371317','82902','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371318','82902','7','graphid.0','0','',NULL,NULL,NULL,'2125',NULL,NULL,NULL,NULL,NULL,NULL), ('371319','82902','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371320','82903','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371321','82903','7','graphid.0','0','',NULL,NULL,NULL,'2126',NULL,NULL,NULL,NULL,NULL,NULL), ('371322','82903','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371323','82904','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371324','82904','7','graphid.0','0','',NULL,NULL,NULL,'2124',NULL,NULL,NULL,NULL,NULL,NULL), ('371325','82904','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371326','82905','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371327','82905','4','itemid.0','0','',NULL,NULL,'50056',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371328','82905','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371329','82905','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371330','82905','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371331','82905','0','value_size','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371332','82906','1','ds.0.color.0','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371333','82906','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371334','82906','0','ds.0.fill','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371335','82906','4','ds.0.itemids.0','0','',NULL,NULL,'50048',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371336','82906','0','ds.0.width','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371337','82906','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371338','82906','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371339','82906','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371340','82907','1','items.0','0','Sensor*Temperature',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371341','82907','1','primary_label','0',E'{{ITEM.NAME}.regsub("Sensor\\s\\[(.*)\\]","\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371342','82907','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371343','82907','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371344','82907','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371345','82908','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371346','82908','4','itemid.0','0','',NULL,NULL,'50055',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371347','82908','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371348','82908','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371349','82908','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371350','82908','0','value_size','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371351','82909','0','ds.0.fill','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371352','82909','1','ds.0.items.0','0','*CPU utilization',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371353','82909','0','ds.0.width','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371354','82909','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371355','82909','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371356','82909','1','lefty_static_units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371357','82909','0','lefty_units','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371358','82909','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371359','82909','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371360','82909','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371361','82910','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371362','82910','4','itemid.0','0','',NULL,NULL,'50054',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371363','82910','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371364','82910','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371365','82910','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371366','82910','0','value_size','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371367','82911','1','items.0','0','Fan*status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371368','82911','1','primary_label','0',E'{{ITEM.NAME}.regsub("Fan\\s\\[(.*)\\]","\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371369','82911','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371370','82911','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371371','82911','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371372','82911','1','thresholds.0.color','0','B0BEC5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371373','82911','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371374','82911','1','thresholds.1.color','0','B0BEC5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371375','82911','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371376','82911','1','thresholds.2.color','0','FF8000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371377','82911','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371378','82911','1','thresholds.3.color','0','AED581',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371379','82911','1','thresholds.3.threshold','0','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371380','82911','1','thresholds.4.color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371381','82911','1','thresholds.4.threshold','0','5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371382','82912','0','ds.0.fill','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371383','82912','1','ds.0.items.0','0','*Memory usage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371384','82912','0','ds.0.width','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371385','82912','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371386','82912','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371387','82912','1','lefty_static_units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371388','82912','0','lefty_units','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371389','82912','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371390','82912','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371391','82912','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371392','82913','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371393','82913','4','itemid.0','0','',NULL,NULL,'50052',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371394','82913','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371395','82913','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371396','82913','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371397','82913','0','value_size','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371398','82914','1','items.0','0','PSU*State',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371399','82914','1','primary_label','0',E'{{ITEM.NAME}.regsub("PSU\\s\\[(.*)\\]","\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371400','82914','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371401','82914','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371402','82914','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371403','82914','1','thresholds.0.color','0','AED581',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371404','82914','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371405','82914','1','thresholds.1.color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371406','82914','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371407','82914','1','thresholds.2.color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371408','82914','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371409','82914','1','thresholds.3.color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371410','82914','1','thresholds.3.threshold','0','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371411','82914','1','thresholds.4.color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371412','82914','1','thresholds.4.threshold','0','5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371413','82914','1','thresholds.5.color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371414','82914','1','thresholds.5.threshold','0','6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371415','82914','1','thresholds.6.color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371416','82914','1','thresholds.6.threshold','0','7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371417','82914','1','thresholds.7.color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371418','82914','1','thresholds.7.threshold','0','8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371419','82914','1','thresholds.8.color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371420','82914','1','thresholds.8.threshold','0','9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371421','82914','1','thresholds.9.color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371422','82914','1','thresholds.9.threshold','0','10',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371423','82914','1','thresholds.10.color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371424','82914','1','thresholds.10.threshold','0','11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371425','82914','1','thresholds.11.color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371426','82914','1','thresholds.11.threshold','0','12',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371427','82914','1','thresholds.12.color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371428','82914','1','thresholds.12.threshold','0','13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371429','82914','1','thresholds.13.color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371430','82914','1','thresholds.13.threshold','0','14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371431','82915','1','items.0','0','OSPF area*Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371432','82915','1','primary_label','0',E'{{ITEM.NAME}.regsub("area\\s\\[(.*)\\]","Area: \\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371433','82915','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371434','82915','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371435','82915','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371436','82915','1','thresholds.0.color','0','AED581',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371437','82915','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371438','82915','1','thresholds.1.color','0','FFB74D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371439','82915','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371440','82915','1','thresholds.2.color','0','FFB74D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371441','82915','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371442','82915','1','thresholds.3.color','0','FFB74D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371443','82915','1','thresholds.3.threshold','0','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371444','82915','1','thresholds.4.color','0','FFB74D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371445','82915','1','thresholds.4.threshold','0','5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371446','82915','1','thresholds.5.color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371447','82915','1','thresholds.5.threshold','0','6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371448','82916','1','items.0','0','OSPF interface*State',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371449','82916','1','primary_label','0',E'{{ITEM.NAME}.regsub("interface\\s\\[(.*)\\]","\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371450','82916','1','reference','0','AAAAL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371451','82916','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371452','82916','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371453','82916','1','thresholds.0.color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371454','82916','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371455','82916','1','thresholds.1.color','0','AED581',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371456','82916','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371457','82916','1','thresholds.2.color','0','FFB74D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371458','82916','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371459','82916','1','thresholds.3.color','0','AED581',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371460','82916','1','thresholds.3.threshold','0','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371461','82916','1','thresholds.4.color','0','AED581',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371462','82916','1','thresholds.4.threshold','0','5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371463','82916','1','thresholds.5.color','0','AED581',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371464','82916','1','thresholds.5.threshold','0','6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371465','82916','1','thresholds.6.color','0','AED581',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371466','82916','1','thresholds.6.threshold','0','7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371467','82916','1','thresholds.7.color','0','AED581',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371468','82916','1','thresholds.7.threshold','0','8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371469','82917','1','items.0','0','OSPF neighbor*State',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371470','82917','1','primary_label','0',E'{{ITEM.NAME}.regsub("neighbor\\s\\[(.*)\\]","\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371471','82917','1','reference','0','AAAAH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371472','82917','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371473','82917','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371474','82917','1','thresholds.0.color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371475','82917','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371476','82917','1','thresholds.1.color','0','FFB74D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371477','82917','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371478','82917','1','thresholds.2.color','0','FFB74D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371479','82917','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371480','82917','1','thresholds.3.color','0','AED581',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371481','82917','1','thresholds.3.threshold','0','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371482','82917','1','thresholds.4.color','0','FFB74D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371483','82917','1','thresholds.4.threshold','0','5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371484','82917','1','thresholds.5.color','0','FFB74D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371485','82917','1','thresholds.5.threshold','0','6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371486','82917','1','thresholds.6.color','0','FFB74D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371487','82917','1','thresholds.6.threshold','0','7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371488','82917','1','thresholds.7.color','0','AED581',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371489','82917','1','thresholds.7.threshold','0','8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371490','82918','1','items.0','0','OSPF interface*: Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371491','82918','1','primary_label','0',E'{{ITEM.NAME}.regsub("interface\\s\\[(.*)\\]","\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371492','82918','1','reference','0','AAAAM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371493','82918','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371494','82918','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371495','82918','1','thresholds.0.color','0','AED581',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371496','82918','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371497','82918','1','thresholds.1.color','0','FFB74D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371498','82918','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371499','82918','1','thresholds.2.color','0','FFB74D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371500','82918','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371501','82918','1','thresholds.3.color','0','FFB74D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371502','82918','1','thresholds.3.threshold','0','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371503','82918','1','thresholds.4.color','0','FFB74D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371504','82918','1','thresholds.4.threshold','0','5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371505','82918','1','thresholds.5.color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371506','82918','1','thresholds.5.threshold','0','6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371507','82919','1','items.0','0','OSPF neighbor*Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371508','82919','1','primary_label','0',E'{{ITEM.NAME}.regsub("neighbor\\s\\[(.*)\\]","\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371509','82919','1','reference','0','AAAAK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371510','82919','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371511','82919','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371512','82919','1','thresholds.0.color','0','AED581',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371513','82919','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371514','82919','1','thresholds.1.color','0','FFB74D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371515','82919','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371516','82919','1','thresholds.2.color','0','FFB74D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371517','82919','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371518','82919','1','thresholds.3.color','0','FFB74D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371519','82919','1','thresholds.3.threshold','0','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371520','82919','1','thresholds.4.color','0','FFB74D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371521','82919','1','thresholds.4.threshold','0','5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371522','82919','1','thresholds.5.color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371523','82919','1','thresholds.5.threshold','0','6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371524','82920','6','graphid.0','0','',NULL,NULL,NULL,'1034',NULL,NULL,NULL,NULL,NULL,NULL), ('371525','82920','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371526','82921','6','graphid.0','0','',NULL,NULL,NULL,'671',NULL,NULL,NULL,NULL,NULL,NULL), ('371527','82921','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371528','82922','6','graphid.0','0','',NULL,NULL,NULL,'2133',NULL,NULL,NULL,NULL,NULL,NULL), ('371529','82922','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371530','82923','6','graphid.0','0','',NULL,NULL,NULL,'2131',NULL,NULL,NULL,NULL,NULL,NULL), ('371531','82923','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371532','82924','6','graphid.0','0','',NULL,NULL,NULL,'2134',NULL,NULL,NULL,NULL,NULL,NULL), ('371533','82924','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371534','82925','6','graphid.0','0','',NULL,NULL,NULL,'2132',NULL,NULL,NULL,NULL,NULL,NULL), ('371535','82925','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371536','82926','1','bg_color','0','FFCA28',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371537','82926','1','description','0','Ping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371538','82926','0','desc_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371539','82926','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371540','82926','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371541','82926','4','itemid.0','0','',NULL,NULL,'46746',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371542','82926','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371543','82926','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371544','82926','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371545','82926','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371546','82926','1','thresholds.1.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371547','82926','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371548','82926','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371549','82926','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371550','82927','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371551','82927','4','itemid.0','0','',NULL,NULL,'46763',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371552','82927','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371553','82927','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371554','82927','1','value_color','0','1E88E5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371555','82927','0','value_size','50','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371556','82928','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371557','82928','4','itemid.0','0','',NULL,NULL,'46767',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371558','82928','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371559','82928','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371560','82928','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371561','82928','1','thresholds.0.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371562','82928','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371563','82928','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371564','82928','1','thresholds.1.threshold','0','80',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371565','82928','1','thresholds.2.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371566','82928','1','thresholds.2.threshold','0','90',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371567','82928','0','th_show_arc','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371568','82928','0','th_show_labels','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371569','82928','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371570','82928','0','units_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371571','82928','0','value_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371572','82929','0','acknowledgement_status','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371573','82929','1','reference','0','BAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371574','82929','0','show','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371575','82929','0','show_opdata','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371576','82929','0','show_tags','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371577','82929','1','tag_priority','0','scope',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371578','82930','1','bg_color','0','FFCA28',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371579','82930','1','description','0','SNMP',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371580','82930','0','desc_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371581','82930','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371582','82930','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371583','82930','4','itemid.0','0','',NULL,NULL,'46786',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371584','82930','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371585','82930','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371586','82930','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371587','82930','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371588','82930','1','thresholds.1.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371589','82930','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371590','82930','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371591','82930','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371592','82931','0','decimal_size','40','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371593','82931','4','itemid.0','0','',NULL,NULL,'46780',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371594','82931','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371595','82931','1','units','0','B',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371596','82931','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371597','82931','1','units_color','0','1E88E5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371598','82931','1','value_color','0','1E88E5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371599','82931','0','value_size','50','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371600','82932','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371601','82932','4','itemid.0','0','',NULL,NULL,'46782',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371602','82932','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371603','82932','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371604','82932','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371605','82932','1','thresholds.0.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371606','82932','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371607','82932','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371608','82932','1','thresholds.1.threshold','0','70',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371609','82932','1','thresholds.2.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371610','82932','1','thresholds.2.threshold','0','90',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371611','82932','0','th_show_arc','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371612','82932','0','th_show_labels','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371613','82932','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371614','82932','0','units_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371615','82932','0','value_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371616','82933','1','bg_color','0','1E88E5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371617','82933','1','description','0','Uptime',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371618','82933','0','desc_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371619','82933','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371620','82933','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371621','82933','4','itemid.0','0','',NULL,NULL,'46776',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371622','82933','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371623','82933','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371624','82933','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371625','82933','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371626','82933','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371627','82934','0','decimal_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371628','82934','4','itemid.0','0','',NULL,NULL,'46771',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371629','82934','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371630','82934','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371631','82934','0','value_size','40','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371632','82935','0','decimal_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371633','82935','4','itemid.0','0','',NULL,NULL,'46774',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371634','82935','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371635','82935','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371636','82935','0','value_size','40','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371637','82936','1','ds.0.color','0','1976D2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371638','82936','1','ds.0.items.0','0','system.cpu.load.avg1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371639','82936','1','ds.1.color','0','4CAF50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371640','82936','1','ds.1.items.0','0','system.cpu.load.avg5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371641','82936','1','ds.2.items.0','0','system.cpu.load.avg15',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371642','82936','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371643','82936','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371644','82936','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371645','82936','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371646','82936','1','time_period.from','0','now-1d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371647','82936','1','time_period.to','0','now',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371648','82936','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371649','82937','0','decimal_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371650','82937','4','itemid.0','0','',NULL,NULL,'46772',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371651','82937','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371652','82937','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371653','82937','0','value_size','40','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371654','82938','0','decimal_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371655','82938','4','itemid.0','0','',NULL,NULL,'46770',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371656','82938','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371657','82938','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371658','82938','0','value_size','40','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371659','82939','6','graphid.0','0','',NULL,NULL,NULL,'2682',NULL,NULL,NULL,NULL,NULL,NULL), ('371660','82939','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371661','82940','6','graphid.0','0','',NULL,NULL,NULL,'2681',NULL,NULL,NULL,NULL,NULL,NULL), ('371662','82940','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371663','82941','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371664','82941','7','graphid.0','0','',NULL,NULL,NULL,'2677',NULL,NULL,NULL,NULL,NULL,NULL), ('371665','82941','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371666','82942','6','graphid.0','0','',NULL,NULL,NULL,'2680',NULL,NULL,NULL,NULL,NULL,NULL), ('371667','82942','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371668','82943','6','graphid.0','0','',NULL,NULL,NULL,'2679',NULL,NULL,NULL,NULL,NULL,NULL), ('371669','82943','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371670','82944','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371671','82944','7','graphid.0','0','',NULL,NULL,NULL,'2672',NULL,NULL,NULL,NULL,NULL,NULL), ('371672','82944','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371673','82945','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371674','82945','7','graphid.0','0','',NULL,NULL,NULL,'2676',NULL,NULL,NULL,NULL,NULL,NULL), ('371675','82945','1','reference','0','AAAAI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371676','82946','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371677','82946','7','graphid.0','0','',NULL,NULL,NULL,'2678',NULL,NULL,NULL,NULL,NULL,NULL), ('371678','82946','1','reference','0','AAAAH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371679','82947','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371680','82947','7','graphid.0','0','',NULL,NULL,NULL,'2674',NULL,NULL,NULL,NULL,NULL,NULL), ('371681','82947','1','reference','0','AAAAJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371682','82948','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371683','82948','7','graphid.0','0','',NULL,NULL,NULL,'2673',NULL,NULL,NULL,NULL,NULL,NULL), ('371684','82948','1','reference','0','AAAAK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371685','82949','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371686','82949','4','itemid.0','0','',NULL,NULL,'46750',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371687','82949','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371688','82949','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371689','82949','1','value_color','0','1E88E5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371690','82949','0','value_size','50','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371691','82950','6','graphid.0','0','',NULL,NULL,NULL,'2685',NULL,NULL,NULL,NULL,NULL,NULL), ('371692','82950','1','reference','0','AAAAL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371693','82951','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371694','82951','4','itemid.0','0','',NULL,NULL,'46784',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371695','82951','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371696','82951','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371697','82951','1','value_color','0','1E88E5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371698','82951','0','value_size','50','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371699','82952','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371700','82952','4','itemid.0','0','',NULL,NULL,'46783',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371701','82952','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371702','82952','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371703','82952','1','value_color','0','1E88E5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371704','82952','0','value_size','50','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371705','82953','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371706','82953','7','graphid.0','0','',NULL,NULL,NULL,'2675',NULL,NULL,NULL,NULL,NULL,NULL), ('371707','82953','1','reference','0','AAAAM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371708','82954','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371709','82954','4','itemid.0','0','',NULL,NULL,'50130',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371710','82954','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371711','82954','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371712','82954','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371713','82954','0','value_size','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371714','82955','1','ds.0.color.0','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371715','82955','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371716','82955','0','ds.0.fill','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371717','82955','4','ds.0.itemids.0','0','',NULL,NULL,'50118',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371718','82955','0','ds.0.width','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371719','82955','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371720','82955','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371721','82955','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371722','82956','1','ds.0.color.0','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371723','82956','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371724','82956','0','ds.0.fill','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371725','82956','4','ds.0.itemids.0','0','',NULL,NULL,'50112',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371726','82956','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371727','82956','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371728','82956','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371729','82956','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371730','82956','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371731','82956','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371732','82957','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371733','82957','4','itemid.0','0','',NULL,NULL,'50129',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371734','82957','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371735','82957','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371736','82957','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371737','82957','0','value_size','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371738','82958','1','ds.0.color.0','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371739','82958','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371740','82958','0','ds.0.fill','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371741','82958','4','ds.0.itemids.0','0','',NULL,NULL,'50115',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371742','82958','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371743','82958','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371744','82958','0','legend_columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371745','82958','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371746','82958','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371747','82958','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371748','82959','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371749','82959','4','itemid.0','0','',NULL,NULL,'50128',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371750','82959','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371751','82959','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371752','82959','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371753','82959','0','value_size','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371754','82960','1','items.0','0','Fan*Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371755','82960','0','primary_label_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371756','82960','0','primary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371757','82960','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371758','82960','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371759','82960','1','thresholds.0.color','0','3BC97D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371760','82960','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371761','82960','1','thresholds.1.color','0','FCCB1D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371762','82960','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371763','82960','1','thresholds.2.color','0','E65660',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371764','82960','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371765','82961','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371766','82961','4','itemid.0','0','',NULL,NULL,'50122',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371767','82961','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371768','82961','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371769','82961','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371770','82961','0','value_size','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371771','82962','1','items.0','0','*Temperature',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371772','82962','0','primary_label_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371773','82962','1','primary_label_units','0','°C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371774','82962','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371775','82962','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371776','82962','1','thresholds.0.color','0','3BC97D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371777','82962','1','thresholds.0.threshold','0','20',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371778','82962','1','thresholds.1.color','0','FCCB1D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371779','82962','1','thresholds.1.threshold','0','35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371780','82962','1','thresholds.2.color','0','E65660',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371781','82962','1','thresholds.2.threshold','0','40',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371782','82963','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371783','82963','4','itemid.0','0','',NULL,NULL,'50124',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371784','82963','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371785','82963','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371786','82963','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371787','82963','0','value_size','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371788','82964','1','items.0','0','PSU*Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371789','82964','0','primary_label_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371790','82964','0','primary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371791','82964','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371792','82964','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371793','82964','1','thresholds.0.color','0','3BC97D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371794','82964','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371795','82964','1','thresholds.1.color','0','FCCB1D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371796','82964','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371797','82964','1','thresholds.2.color','0','E65660',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371798','82964','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371799','82965','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371800','82965','4','itemid.0','0','',NULL,NULL,'50127',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371801','82965','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371802','82965','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371803','82965','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371804','82965','0','value_size','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371805','82966','0','desc_size','9','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371806','82966','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371807','82966','4','itemid.0','0','',NULL,NULL,'50125',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371808','82966','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371809','82966','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371810','82966','0','value_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371811','82966','0','value_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371812','82967','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371813','82967','7','graphid.0','0','',NULL,NULL,NULL,'1680',NULL,NULL,NULL,NULL,NULL,NULL), ('371814','82967','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371815','82968','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371816','82968','7','graphid.0','0','',NULL,NULL,NULL,'1678',NULL,NULL,NULL,NULL,NULL,NULL), ('371817','82968','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371818','82969','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371819','82969','7','graphid.0','0','',NULL,NULL,NULL,'1679',NULL,NULL,NULL,NULL,NULL,NULL), ('371820','82969','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371821','82970','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371822','82970','7','graphid.0','0','',NULL,NULL,NULL,'1677',NULL,NULL,NULL,NULL,NULL,NULL), ('371823','82970','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371824','82971','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371825','82971','7','graphid.0','0','',NULL,NULL,NULL,'1676',NULL,NULL,NULL,NULL,NULL,NULL), ('371826','82971','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371827','82972','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371828','82972','7','graphid.0','0','',NULL,NULL,NULL,'1681',NULL,NULL,NULL,NULL,NULL,NULL), ('371829','82972','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371830','82973','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371831','82973','7','graphid.0','0','',NULL,NULL,NULL,'1549',NULL,NULL,NULL,NULL,NULL,NULL), ('371832','82973','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371833','82974','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371834','82974','7','graphid.0','0','',NULL,NULL,NULL,'1550',NULL,NULL,NULL,NULL,NULL,NULL), ('371835','82974','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371836','82975','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371837','82975','7','graphid.0','0','',NULL,NULL,NULL,'1551',NULL,NULL,NULL,NULL,NULL,NULL), ('371838','82975','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371839','82976','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371840','82976','7','graphid.0','0','',NULL,NULL,NULL,'1552',NULL,NULL,NULL,NULL,NULL,NULL), ('371841','82976','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371842','82977','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371843','82977','7','graphid.0','0','',NULL,NULL,NULL,'1553',NULL,NULL,NULL,NULL,NULL,NULL), ('371844','82977','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371845','82978','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371846','82978','7','graphid.0','0','',NULL,NULL,NULL,'1554',NULL,NULL,NULL,NULL,NULL,NULL), ('371847','82978','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371848','82979','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371849','82979','7','graphid.0','0','',NULL,NULL,NULL,'1555',NULL,NULL,NULL,NULL,NULL,NULL), ('371850','82979','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371851','82980','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371852','82980','7','graphid.0','0','',NULL,NULL,NULL,'1556',NULL,NULL,NULL,NULL,NULL,NULL), ('371853','82980','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371854','82981','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371855','82981','7','graphid.0','0','',NULL,NULL,NULL,'1557',NULL,NULL,NULL,NULL,NULL,NULL), ('371856','82981','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371857','82982','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371858','82982','7','graphid.0','0','',NULL,NULL,NULL,'1558',NULL,NULL,NULL,NULL,NULL,NULL), ('371859','82982','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371860','82983','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371861','82983','7','graphid.0','0','',NULL,NULL,NULL,'1559',NULL,NULL,NULL,NULL,NULL,NULL), ('371862','82983','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371863','82984','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371864','82984','7','graphid.0','0','',NULL,NULL,NULL,'1560',NULL,NULL,NULL,NULL,NULL,NULL), ('371865','82984','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371866','82985','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371867','82985','7','graphid.0','0','',NULL,NULL,NULL,'1561',NULL,NULL,NULL,NULL,NULL,NULL), ('371868','82985','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371869','82986','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371870','82986','7','graphid.0','0','',NULL,NULL,NULL,'1562',NULL,NULL,NULL,NULL,NULL,NULL), ('371871','82986','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371872','82987','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371873','82987','7','graphid.0','0','',NULL,NULL,NULL,'1563',NULL,NULL,NULL,NULL,NULL,NULL), ('371874','82987','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371875','82988','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371876','82988','7','graphid.0','0','',NULL,NULL,NULL,'2461',NULL,NULL,NULL,NULL,NULL,NULL), ('371877','82988','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371878','82989','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371879','82989','7','graphid.0','0','',NULL,NULL,NULL,'2462',NULL,NULL,NULL,NULL,NULL,NULL), ('371880','82989','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371881','82990','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371882','82990','7','graphid.0','0','',NULL,NULL,NULL,'2464',NULL,NULL,NULL,NULL,NULL,NULL), ('371883','82990','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371884','82991','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371885','82991','7','graphid.0','0','',NULL,NULL,NULL,'2463',NULL,NULL,NULL,NULL,NULL,NULL), ('371886','82991','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371887','82992','4','itemid.0','0','',NULL,NULL,'45781',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371888','82992','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371889','82993','4','itemid.0','0','',NULL,NULL,'45784',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371890','82993','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371891','82994','4','itemid.0','0','',NULL,NULL,'45785',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371892','82994','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371893','82995','4','itemid.0','0','',NULL,NULL,'45780',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371894','82995','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371895','82996','4','itemid.0','0','',NULL,NULL,'45782',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371896','82996','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371897','82997','4','itemid.0','0','',NULL,NULL,'45783',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371898','82997','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371899','82998','4','itemid.0','0','',NULL,NULL,'45756',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371900','82998','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371901','82999','4','itemid.0','0','',NULL,NULL,'45773',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371902','82999','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371903','83000','4','itemid.0','0','',NULL,NULL,'45765',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371904','83000','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371905','83000','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371906','83001','4','itemid.0','0','',NULL,NULL,'45759',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371907','83001','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371908','83002','4','itemid.0','0','',NULL,NULL,'45750',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371909','83002','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371910','83003','4','itemid.0','0','',NULL,NULL,'45754',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371911','83003','0','show.0','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371912','83003','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371913','83004','4','itemid.0','0','',NULL,NULL,'45763',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371914','83004','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371915','83005','4','itemid.0','0','',NULL,NULL,'45757',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371916','83005','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371917','83006','4','itemid.0','0','',NULL,NULL,'45753',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371918','83006','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371919','83007','4','itemid.0','0','',NULL,NULL,'45758',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371920','83007','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371921','83008','6','graphid.0','0','',NULL,NULL,NULL,'2562',NULL,NULL,NULL,NULL,NULL,NULL), ('371922','83008','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371923','83009','6','graphid.0','0','',NULL,NULL,NULL,'2559',NULL,NULL,NULL,NULL,NULL,NULL), ('371924','83009','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371925','83010','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371926','83010','7','graphid.0','0','',NULL,NULL,NULL,'2554',NULL,NULL,NULL,NULL,NULL,NULL), ('371927','83010','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371928','83011','6','graphid.0','0','',NULL,NULL,NULL,'2557',NULL,NULL,NULL,NULL,NULL,NULL), ('371929','83011','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371930','83012','6','graphid.0','0','',NULL,NULL,NULL,'2561',NULL,NULL,NULL,NULL,NULL,NULL), ('371931','83012','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371932','83013','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371933','83013','7','graphid.0','0','',NULL,NULL,NULL,'2555',NULL,NULL,NULL,NULL,NULL,NULL), ('371934','83013','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371935','83014','7','graphid.0','0','',NULL,NULL,NULL,'2556',NULL,NULL,NULL,NULL,NULL,NULL), ('371936','83014','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371937','83014','0','rows','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371938','83015','4','itemid.0','0','',NULL,NULL,'49958',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371939','83015','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371940','83015','0','value_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371941','83016','1','ds.0.color','0','1565C0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371942','83016','1','ds.0.items.0','0','*Throughput',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371943','83016','1','reference','0','RNVBR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371944','83016','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371945','83017','1','ds.0.color.0','0','1565C0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371946','83017','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371947','83017','4','ds.0.itemids.0','0','',NULL,NULL,'49956',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371948','83017','0','lefty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371949','83017','1','reference','0','IMFOK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371950','83017','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371951','83018','4','itemid.0','0','',NULL,NULL,'49951',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371952','83018','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371953','83018','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371954','83018','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371955','83018','1','thresholds.0.color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371956','83018','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371957','83018','1','thresholds.1.color','0','FF8000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371958','83018','1','thresholds.1.threshold','0','60',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371959','83018','1','thresholds.2.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371960','83018','1','thresholds.2.threshold','0','80',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371961','83018','0','th_arc_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371962','83018','0','th_show_arc','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371963','83018','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371964','83018','0','units_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371965','83018','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371966','83018','0','value_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371967','83019','4','itemid.0','0','',NULL,NULL,'49961',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371968','83019','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371969','83019','0','value_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371970','83020','4','itemid.0','0','',NULL,NULL,'49957',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371971','83020','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371972','83020','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371973','83020','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371974','83020','1','thresholds.0.color','0','9CCC65',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371975','83020','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371976','83020','1','thresholds.1.color','0','FF8000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371977','83020','1','thresholds.1.threshold','0','60',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371978','83020','1','thresholds.2.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371979','83020','1','thresholds.2.threshold','0','80',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371980','83020','0','th_arc_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371981','83020','0','th_show_arc','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371982','83020','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371983','83020','0','units_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371984','83020','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371985','83020','0','value_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371986','83021','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371987','83021','4','itemid.0','0','',NULL,NULL,'49965',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371988','83021','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371989','83021','0','value_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371990','83022','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371991','83022','0','draw_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371992','83022','1','ds.0.color.0','0','7CB342',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371993','83022','1','ds.0.color.1','0','1E88E5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371994','83022','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371995','83022','1','ds.0.data_set_label','0','Total',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371996','83022','4','ds.0.itemids.0','0','',NULL,NULL,'49962',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371997','83022','4','ds.0.itemids.1','0','',NULL,NULL,'49964',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371998','83022','0','ds.0.type.0','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('371999','83022','0','ds.0.type.1','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372000','83022','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372001','83022','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372002','83022','0','legend_value','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372003','83022','0','space','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372004','83022','0','stroke','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372005','83022','0','total_show','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372006','83022','1','units','0','B',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372007','83022','0','units_show','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372008','83022','1','value_color','0','607D8B',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372009','83023','1','ds.0.color','0','5E35B1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372010','83023','1','ds.0.items.0','0','CPU [cpu*] utilization',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372011','83023','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372012','83023','0','legend_lines','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372013','83023','1','reference','0','IKAPW',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372014','83023','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372015','83024','1','ds.0.color','0','795548',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372016','83024','1','ds.0.items.0','0','CPU [lina*] utilization',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372017','83024','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372018','83024','1','reference','0','PRPGG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372019','83024','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372020','83025','1','ds.0.color','0','78909C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372021','83025','1','ds.0.items.0','0','CPU [snort*] utilization',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372022','83025','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372023','83025','1','reference','0','NDYCL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372024','83025','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372025','83026','1','ds.0.color','0','455A64',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372026','83026','1','ds.0.items.0','0','FS [dev*][*]: Space used, in %',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372027','83026','1','reference','0','WZKDT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372028','83026','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372029','83027','1','ds.0.color','0','689F38',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372030','83027','1','ds.0.items.0','0','Memory [system] utilization',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372031','83027','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372032','83027','1','ds.1.color','0','0D47A1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372033','83027','1','ds.1.items.0','0','Memory [swap] utilization',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372034','83027','0','legend_lines','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372035','83027','1','reference','0','MUDCJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372036','83027','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372037','83028','1','ds.0.color','0','AC3C00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372038','83028','1','ds.0.items.0','0','Memory [lina] utilization',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372039','83028','1','reference','0','FHFQK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372040','83028','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372041','83029','1','ds.0.color','0','9575CD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372042','83029','1','ds.0.items.0','0','Memory [snort] utilization',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372043','83029','1','reference','0','HFJKY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372044','83029','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372045','83030','1','ds.0.color','0','43A047',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372046','83030','1','ds.0.items.0','0','Disc space: Total',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372047','83030','1','ds.1.color','0','6D4C41',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372048','83030','1','ds.1.items.0','0','Disc space: Used',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372049','83030','1','reference','0','XKVPS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372050','83030','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372051','83031','1','ds.0.color','0','5E35B1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372052','83031','1','ds.0.items.0','0','Interface *: Output packets',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372053','83031','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372054','83031','0','legend_lines','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372055','83031','1','reference','0','FFCAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372056','83031','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372057','83032','1','ds.0.color','0','795548',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372058','83032','1','ds.0.items.0','0','Interface *: Output errors',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372059','83032','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372060','83032','1','reference','0','FCDDA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372061','83032','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372062','83033','1','ds.0.color','0','78909C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372063','83033','1','ds.0.items.0','0','Interface *: Incoming traffic',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372064','83033','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372065','83033','1','reference','0','FEECA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372066','83033','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372067','83034','1','ds.0.color','0','0D47A1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372068','83034','1','ds.0.items.0','0','Interface *: Input packets',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372069','83034','0','legend_lines','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372070','83034','1','reference','0','AEBCF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372071','83034','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372072','83035','1','ds.0.color','0','AC3C00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372073','83035','1','ds.0.items.0','0','Interface *: Input errors',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372074','83035','1','reference','0','ACDAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372075','83035','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372076','83036','1','ds.0.color','0','9575CD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372077','83036','1','ds.0.items.0','0','Interface *: Outgoing traffic',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372078','83036','1','reference','0','AEBFA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372079','83036','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372080','83037','1','ds.0.color','0','43A047',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372081','83037','1','ds.0.items.0','0','Statistic [connection][in_use]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372082','83037','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372083','83037','1','ds.1.color','0','1565C0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372084','83037','1','ds.1.items.0','0','Statistic [connection][most_used]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372085','83037','1','reference','0','TLDCU',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372086','83037','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372087','83038','1','ds.0.color','0','0D47A1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372088','83038','1','ds.0.items.0','0','Statistic [cps][all]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372089','83038','1','ds.1.color','0','00897B',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372090','83038','1','ds.1.items.0','0','Statistic [cps][tcp]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372091','83038','1','ds.2.color','0','F9A825',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372092','83038','1','ds.2.items.0','0','Statistic [cps][udp]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372093','83038','1','reference','0','GNLNM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372094','83038','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372095','83039','1','ds.0.color','0','546E7A',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372096','83039','1','ds.0.items.0','0','Statistic [xlate][in_use]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372097','83039','1','ds.1.color','0','5E35B1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372098','83039','1','ds.1.items.0','0','Statistic [xlate][most_used]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372099','83039','1','reference','0','BDOAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372100','83039','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372101','83040','1','ds.0.color','0','0D47A1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372102','83040','1','ds.0.items.0','0','Statistic [preserve_connection][enabled]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372103','83040','1','ds.1.color','0','00897B',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372104','83040','1','ds.1.items.0','0','Statistic [preserve_connection][in_effect]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372105','83040','1','ds.2.color','0','F9A825',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372106','83040','1','ds.2.items.0','0','Statistic [preserve_connection][most_enabled]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372107','83040','1','ds.3.color','0','8E24AA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372108','83040','1','ds.3.items.0','0','Statistic [preserve_connection][most_in_effect]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372109','83040','1','reference','0','MMTRY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372110','83040','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372111','83041','1','items.0','0','ASP [*]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372112','83041','1','reference','0','HPCOY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372113','83042','1','ds.0.color.0','0','43A047',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372114','83042','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372115','83042','1','ds.0.itemids.0._reference','0','HPCOY._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372116','83042','1','reference','0','OEAQY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372117','83042','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372118','83043','1','items.0','0','Process [*]: Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372119','83043','1','primary_label','0','{ITEM.NAME}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372120','83043','1','reference','0','YWRAS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372121','83043','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372122','83043','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372123','83043','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372124','83043','1','thresholds.1.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372125','83043','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372126','83043','1','thresholds.2.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372127','83043','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372128','83044','1','items.0','0','Process [*]: Uptime',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372129','83044','1','primary_label','0','{ITEM.NAME}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372130','83044','0','primary_label_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372131','83044','1','reference','0','AGOOH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372132','83045','1','items.0','0','Process [*]: Restart count',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372133','83045','1','primary_label','0','{ITEM.NAME}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372134','83045','1','reference','0','XGHBR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372135','83045','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372136','83046','1','items.0','0','Temperature [*]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372137','83046','1','reference','0','PSLAX',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372138','83047','0','angle','270','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372139','83047','1','description','0','{ITEM.VALUE}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372140','83047','1','itemid._reference','0','PSLAX._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372141','83047','0','scale_size','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372142','83047','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372143','83047','0','show.1','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372144','83047','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372145','83047','0','show.3','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372146','83047','1','thresholds.0.color','0','CFD8DC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372147','83047','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372148','83047','1','thresholds.1.color','0','42A5F5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372149','83047','1','thresholds.1.threshold','0','10',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372150','83047','1','thresholds.2.color','0','4CAF50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372151','83047','1','thresholds.2.threshold','0','20',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372152','83047','1','thresholds.3.color','0','FDD835',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372153','83047','1','thresholds.3.threshold','0','40',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372154','83047','1','thresholds.4.color','0','EF6C00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372155','83047','1','thresholds.4.threshold','0','60',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372156','83047','1','thresholds.5.color','0','F44336',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372157','83047','1','thresholds.5.threshold','0','80',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372158','83047','0','th_arc_size','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372159','83047','0','th_show_arc','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372160','83047','0','th_show_labels','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372161','83047','0','value_arc_size','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372162','83048','1','items.0','0','Power supply [*]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372163','83048','1','reference','0','ZSYHY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372164','83049','0','angle','270','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372165','83049','1','description','0','{ITEM.VALUE}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372166','83049','1','itemid._reference','0','ZSYHY._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372167','83049','1','max','0','400',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372168','83049','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372169','83049','0','show.1','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372170','83049','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372171','83049','1','value_arc_color','0','00796B',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372172','83049','0','value_arc_size','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372173','83050','1','items.0','0','Fan speed [*]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372174','83050','1','reference','0','YMRVB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372175','83051','0','angle','270','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372176','83051','1','description','0','{ITEM.VALUE}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372177','83051','1','itemid._reference','0','YMRVB._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372178','83051','1','max','0','22000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372179','83051','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372180','83051','0','show.1','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372181','83051','0','show.2','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372182','83051','0','show.3','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372183','83051','1','value_arc_color','0','1E88E5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372184','83051','0','value_arc_size','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372185','83052','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372186','83052','7','graphid.0','0','',NULL,NULL,NULL,'2138',NULL,NULL,NULL,NULL,NULL,NULL), ('372187','83052','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372188','83053','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372189','83053','7','graphid.0','0','',NULL,NULL,NULL,'2141',NULL,NULL,NULL,NULL,NULL,NULL), ('372190','83053','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372191','83054','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372192','83054','7','graphid.0','0','',NULL,NULL,NULL,'2143',NULL,NULL,NULL,NULL,NULL,NULL), ('372193','83054','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372194','83055','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372195','83055','7','graphid.0','0','',NULL,NULL,NULL,'2144',NULL,NULL,NULL,NULL,NULL,NULL), ('372196','83055','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372197','83056','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372198','83056','7','graphid.0','0','',NULL,NULL,NULL,'2145',NULL,NULL,NULL,NULL,NULL,NULL), ('372199','83056','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372200','83057','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372201','83057','7','graphid.0','0','',NULL,NULL,NULL,'2146',NULL,NULL,NULL,NULL,NULL,NULL), ('372202','83057','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372203','83058','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372204','83058','7','graphid.0','0','',NULL,NULL,NULL,'1695',NULL,NULL,NULL,NULL,NULL,NULL), ('372205','83058','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372206','83058','0','rows','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372207','83059','1','bg_color','0','FFCA28',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372208','83059','1','description','0','Port',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372209','83059','0','desc_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372210','83059','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372211','83059','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372212','83059','4','itemid.0','0','',NULL,NULL,'46132',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372213','83059','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372214','83059','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372215','83059','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372216','83059','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372217','83059','1','thresholds.1.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372218','83059','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372219','83059','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372220','83059','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372221','83060','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372222','83060','4','itemid.0','0','',NULL,NULL,'46156',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372223','83060','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372224','83060','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372225','83060','1','value_color','0','1E88E5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372226','83060','0','value_size','50','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372227','83061','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372228','83061','1','description','0','{ITEM.DESCRIPTION}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372229','83061','0','desc_size','8','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372230','83061','4','itemid.0','0','',NULL,NULL,'46143',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372231','83061','1','thresholds.0.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372232','83061','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372233','83061','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372234','83061','1','thresholds.1.threshold','0','80',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372235','83061','1','thresholds.2.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372236','83061','1','thresholds.2.threshold','0','90',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372237','83061','0','th_show_arc','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372238','83061','0','th_show_labels','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372239','83061','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372240','83061','0','units_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372241','83061','0','value_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372242','83062','1','ds.0.color','0','1976D2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372243','83062','1','ds.0.items.0','0','fgate.item.fs_total',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372244','83062','0','ds.0.missingdatafunc','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372245','83062','0','ds.0.width','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372246','83062','1','ds.1.color','0','4CAF50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372247','83062','1','ds.1.items.0','0','fgate.item.fs_free',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372248','83062','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372249','83062','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372250','83062','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372251','83062','1','reference','0','DEABC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372252','83062','1','time_period.from','0','now-1d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372253','83062','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372254','83063','1','bg_color','0','FFCA28',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372255','83063','1','description','0','API',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372256','83063','0','desc_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372257','83063','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372258','83063','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372259','83063','4','itemid.0','0','',NULL,NULL,'46162',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372260','83063','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372261','83063','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372262','83063','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372263','83063','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372264','83063','1','thresholds.1.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372265','83063','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372266','83063','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372267','83063','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372268','83064','0','decimal_size','40','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372269','83064','4','itemid.0','0','',NULL,NULL,'46155',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372270','83064','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372271','83064','1','units','0','B',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372272','83064','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372273','83064','1','units_color','0','1E88E5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372274','83064','1','value_color','0','1E88E5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372275','83064','0','value_size','50','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372276','83065','1','bg_color','0','1E88E5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372277','83065','1','description','0','Uptime',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372278','83065','0','desc_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372279','83065','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372280','83065','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372281','83065','4','itemid.0','0','',NULL,NULL,'46142',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372282','83065','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372283','83065','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372284','83065','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372285','83065','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372286','83065','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372287','83066','0','decimal_size','40','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372288','83066','4','itemid.0','0','',NULL,NULL,'46160',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372289','83066','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372290','83066','1','units','0','B',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372291','83066','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372292','83066','1','units_color','0','1E88E5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372293','83066','1','value_color','0','1E88E5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372294','83066','0','value_size','50','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372295','83067','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372296','83067','1','description','0','{ITEM.DESCRIPTION}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372297','83067','0','desc_size','8','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372298','83067','4','itemid.0','0','',NULL,NULL,'46154',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372299','83067','1','thresholds.0.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372300','83067','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372301','83067','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372302','83067','1','thresholds.1.threshold','0','70',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372303','83067','1','thresholds.2.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372304','83067','1','thresholds.2.threshold','0','90',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372305','83067','0','th_show_arc','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372306','83067','0','th_show_labels','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372307','83067','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372308','83067','0','units_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372309','83067','0','value_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372310','83068','0','decimal_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372311','83068','4','itemid.0','0','',NULL,NULL,'46141',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372312','83068','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372313','83068','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372314','83068','0','value_size','40','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372315','83069','0','decimal_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372316','83069','4','itemid.0','0','',NULL,NULL,'46153',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372317','83069','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372318','83069','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372319','83069','0','value_size','40','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372320','83070','0','acknowledgement_status','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372321','83070','1','reference','0','BAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372322','83070','0','show','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372323','83070','0','show_opdata','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372324','83070','0','show_tags','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372325','83070','1','tag_priority','0','scope',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372326','83071','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372327','83071','1','description','0','{ITEM.DESCRIPTION}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372328','83071','0','desc_size','8','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372329','83071','4','itemid.0','0','',NULL,NULL,'46158',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372330','83071','1','thresholds.0.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372331','83071','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372332','83071','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372333','83071','1','thresholds.1.threshold','0','60',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372334','83071','1','thresholds.2.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372335','83071','1','thresholds.2.threshold','0','80',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372336','83071','0','th_show_arc','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372337','83071','0','th_show_labels','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372338','83071','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372339','83071','0','units_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372340','83071','0','value_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372341','83072','0','decimal_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372342','83072','4','itemid.0','0','',NULL,NULL,'46145',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372343','83072','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372344','83072','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372345','83072','0','value_size','40','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372346','83073','0','decimal_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372347','83073','4','itemid.0','0','',NULL,NULL,'46149',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372348','83073','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372349','83073','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372350','83073','0','value_size','40','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372351','83074','6','graphid.0','0','',NULL,NULL,NULL,'2596',NULL,NULL,NULL,NULL,NULL,NULL), ('372352','83074','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372353','83075','6','graphid.0','0','',NULL,NULL,NULL,'2597',NULL,NULL,NULL,NULL,NULL,NULL), ('372354','83075','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372355','83076','6','graphid.0','0','',NULL,NULL,NULL,'2599',NULL,NULL,NULL,NULL,NULL,NULL), ('372356','83076','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372357','83077','6','graphid.0','0','',NULL,NULL,NULL,'2598',NULL,NULL,NULL,NULL,NULL,NULL), ('372358','83077','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372359','83078','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372360','83078','7','graphid.0','0','',NULL,NULL,NULL,'2591',NULL,NULL,NULL,NULL,NULL,NULL), ('372361','83078','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372362','83079','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372363','83079','7','graphid.0','0','',NULL,NULL,NULL,'2595',NULL,NULL,NULL,NULL,NULL,NULL), ('372364','83079','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372365','83080','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372366','83080','7','graphid.0','0','',NULL,NULL,NULL,'2592',NULL,NULL,NULL,NULL,NULL,NULL), ('372367','83080','1','reference','0','AAAAH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372368','83081','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372369','83081','7','graphid.0','0','',NULL,NULL,NULL,'2594',NULL,NULL,NULL,NULL,NULL,NULL), ('372370','83081','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372371','83082','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372372','83082','7','graphid.0','0','',NULL,NULL,NULL,'2593',NULL,NULL,NULL,NULL,NULL,NULL), ('372373','83082','1','reference','0','AAAAI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372374','83083','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372375','83083','7','graphid.0','0','',NULL,NULL,NULL,'2588',NULL,NULL,NULL,NULL,NULL,NULL), ('372376','83083','1','reference','0','AAAAJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372377','83084','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372378','83084','7','graphid.0','0','',NULL,NULL,NULL,'2590',NULL,NULL,NULL,NULL,NULL,NULL), ('372379','83084','1','reference','0','AAAAL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372380','83085','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372381','83085','7','graphid.0','0','',NULL,NULL,NULL,'2589',NULL,NULL,NULL,NULL,NULL,NULL), ('372382','83085','1','reference','0','AAAAK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372383','83086','1','bg_color','0','FFCA28',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372384','83086','1','description','0','SNMP',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372385','83086','0','desc_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372386','83086','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372387','83086','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372388','83086','4','itemid.0','0','',NULL,NULL,'46236',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372389','83086','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372390','83086','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372391','83086','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372392','83086','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372393','83086','1','thresholds.1.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372394','83086','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372395','83086','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372396','83086','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372397','83087','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372398','83087','4','itemid.0','0','',NULL,NULL,'46231',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372399','83087','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372400','83087','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372401','83087','1','value_color','0','1E88E5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372402','83087','0','value_size','50','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372403','83088','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372404','83088','1','description','0','{ITEM.DESCRIPTION}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372405','83088','0','desc_size','8','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372406','83088','4','itemid.0','0','',NULL,NULL,'46230',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372407','83088','1','thresholds.0.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372408','83088','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372409','83088','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372410','83088','1','thresholds.1.threshold','0','80',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372411','83088','1','thresholds.2.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372412','83088','1','thresholds.2.threshold','0','90',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372413','83088','0','th_show_arc','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372414','83088','0','th_show_labels','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372415','83088','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372416','83088','0','units_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372417','83088','0','value_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372418','83089','1','ds.0.color','0','1976D2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372419','83089','1','ds.0.items.0','0','vfs.fs.total',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372420','83089','0','ds.0.missingdatafunc','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372421','83089','0','ds.0.width','6','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372422','83089','1','ds.1.color','0','4CAF50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372423','83089','1','ds.1.items.0','0','vfs.fs.free',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372424','83089','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372425','83089','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372426','83089','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372427','83089','1','reference','0','DEABC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372428','83089','1','time_period.from','0','now-1d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372429','83089','1','time_period.to','0','now',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372430','83089','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372431','83090','1','bg_color','0','FFCA28',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372432','83090','1','description','0','VPN SSL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372433','83090','0','desc_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372434','83090','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372435','83090','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372436','83090','4','itemid.0','0','',NULL,NULL,'46988',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372437','83090','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372438','83090','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372439','83090','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372440','83090','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372441','83090','1','thresholds.1.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372442','83090','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372443','83090','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372444','83090','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372445','83091','0','decimal_size','40','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372446','83091','4','itemid.0','0','',NULL,NULL,'46216',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372447','83091','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372448','83091','1','units','0','B',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372449','83091','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372450','83091','1','units_color','0','1E88E5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372451','83091','1','value_color','0','1E88E5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372452','83091','0','value_size','50','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372453','83092','1','bg_color','0','1E88E5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372454','83092','1','description','0','Uptime',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372455','83092','0','desc_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372456','83092','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372457','83092','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372458','83092','4','itemid.0','0','',NULL,NULL,'46222',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372459','83092','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372460','83092','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372461','83092','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372462','83092','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372463','83092','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372464','83093','0','decimal_size','40','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372465','83093','4','itemid.0','0','',NULL,NULL,'46219',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372466','83093','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372467','83093','1','units','0','B',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372468','83093','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372469','83093','1','units_color','0','1E88E5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372470','83093','1','value_color','0','1E88E5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372471','83093','0','value_size','50','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372472','83094','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372473','83094','1','description','0','{ITEM.DESCRIPTION}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372474','83094','0','desc_size','8','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372475','83094','4','itemid.0','0','',NULL,NULL,'46214',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372476','83094','1','thresholds.0.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372477','83094','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372478','83094','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372479','83094','1','thresholds.1.threshold','0','70',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372480','83094','1','thresholds.2.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372481','83094','1','thresholds.2.threshold','0','90',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372482','83094','0','th_show_arc','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372483','83094','0','th_show_labels','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372484','83094','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372485','83094','0','units_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372486','83094','0','value_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372487','83095','0','decimal_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372488','83095','4','itemid.0','0','',NULL,NULL,'46226',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372489','83095','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372490','83095','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372491','83095','0','value_size','40','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372492','83096','0','decimal_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372493','83096','4','itemid.0','0','',NULL,NULL,'46213',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372494','83096','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372495','83096','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372496','83096','0','value_size','40','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372497','83097','0','acknowledgement_status','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372498','83097','1','reference','0','BAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372499','83097','0','show','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372500','83097','0','show_opdata','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372501','83097','0','show_tags','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372502','83097','1','tag_priority','0','scope',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372503','83098','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372504','83098','1','description','0','{ITEM.DESCRIPTION}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372505','83098','0','desc_size','8','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372506','83098','4','itemid.0','0','',NULL,NULL,'46220',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372507','83098','1','thresholds.0.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372508','83098','1','thresholds.0.threshold','0','40',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372509','83098','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372510','83098','1','thresholds.1.threshold','0','20',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372511','83098','1','thresholds.2.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372512','83098','1','thresholds.2.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372513','83098','0','th_show_arc','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372514','83098','0','th_show_labels','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372515','83098','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372516','83098','0','units_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372517','83098','0','value_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372518','83099','0','decimal_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372519','83099','4','itemid.0','0','',NULL,NULL,'46228',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372520','83099','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372521','83099','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372522','83099','0','value_size','40','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372523','83100','0','decimal_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372524','83100','4','itemid.0','0','',NULL,NULL,'46227',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372525','83100','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372526','83100','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372527','83100','0','value_size','40','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372528','83101','4','itemid.0','0','',NULL,NULL,'46971',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372529','83101','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372530','83102','4','itemid.0','0','',NULL,NULL,'46967',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372531','83102','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372532','83103','4','itemid.0','0','',NULL,NULL,'46969',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372533','83103','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372534','83104','4','itemid.0','0','',NULL,NULL,'46972',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372535','83104','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372536','83105','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372537','83105','7','graphid.0','0','',NULL,NULL,NULL,'2738',NULL,NULL,NULL,NULL,NULL,NULL), ('372538','83105','1','reference','0','AAAAM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372539','83106','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372540','83106','7','graphid.0','0','',NULL,NULL,NULL,'2737',NULL,NULL,NULL,NULL,NULL,NULL), ('372541','83106','1','reference','0','AAAAO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372542','83107','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372543','83107','7','graphid.0','0','',NULL,NULL,NULL,'2741',NULL,NULL,NULL,NULL,NULL,NULL), ('372544','83107','1','reference','0','AAAAQ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372545','83108','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372546','83108','7','graphid.0','0','',NULL,NULL,NULL,'2740',NULL,NULL,NULL,NULL,NULL,NULL), ('372547','83108','1','reference','0','AAAAN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372548','83109','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372549','83109','7','graphid.0','0','',NULL,NULL,NULL,'2742',NULL,NULL,NULL,NULL,NULL,NULL), ('372550','83109','1','reference','0','AAAAP',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372551','83110','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372552','83110','7','graphid.0','0','',NULL,NULL,NULL,'2739',NULL,NULL,NULL,NULL,NULL,NULL), ('372553','83110','1','reference','0','AAAAR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372554','83111','6','graphid.0','0','',NULL,NULL,NULL,'2601',NULL,NULL,NULL,NULL,NULL,NULL), ('372555','83111','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372556','83112','6','graphid.0','0','',NULL,NULL,NULL,'2604',NULL,NULL,NULL,NULL,NULL,NULL), ('372557','83112','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372558','83113','6','graphid.0','0','',NULL,NULL,NULL,'2603',NULL,NULL,NULL,NULL,NULL,NULL), ('372559','83113','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372560','83114','6','graphid.0','0','',NULL,NULL,NULL,'2602',NULL,NULL,NULL,NULL,NULL,NULL), ('372561','83114','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372562','83115','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372563','83115','7','graphid.0','0','',NULL,NULL,NULL,'2745',NULL,NULL,NULL,NULL,NULL,NULL), ('372564','83115','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372565','83116','6','graphid.0','0','',NULL,NULL,NULL,'2749',NULL,NULL,NULL,NULL,NULL,NULL), ('372566','83116','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372567','83117','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372568','83117','7','graphid.0','0','',NULL,NULL,NULL,'2600',NULL,NULL,NULL,NULL,NULL,NULL), ('372569','83117','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372570','83118','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372571','83118','7','graphid.0','0','',NULL,NULL,NULL,'2743',NULL,NULL,NULL,NULL,NULL,NULL), ('372572','83118','1','reference','0','AAAAH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372573','83119','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372574','83119','7','graphid.0','0','',NULL,NULL,NULL,'2744',NULL,NULL,NULL,NULL,NULL,NULL), ('372575','83119','1','reference','0','AAAAI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372576','83120','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372577','83120','7','graphid.0','0','',NULL,NULL,NULL,'2746',NULL,NULL,NULL,NULL,NULL,NULL), ('372578','83120','1','reference','0','AAAAJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372579','83121','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372580','83121','7','graphid.0','0','',NULL,NULL,NULL,'2747',NULL,NULL,NULL,NULL,NULL,NULL), ('372581','83121','1','reference','0','AAAAL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372582','83122','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372583','83122','7','graphid.0','0','',NULL,NULL,NULL,'2748',NULL,NULL,NULL,NULL,NULL,NULL), ('372584','83122','1','reference','0','AAAAK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372585','83123','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372586','83123','7','graphid.0','0','',NULL,NULL,NULL,'2147',NULL,NULL,NULL,NULL,NULL,NULL), ('372587','83123','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372588','83124','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372589','83124','7','graphid.0','0','',NULL,NULL,NULL,'2148',NULL,NULL,NULL,NULL,NULL,NULL), ('372590','83124','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372591','83125','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372592','83125','7','graphid.0','0','',NULL,NULL,NULL,'708',NULL,NULL,NULL,NULL,NULL,NULL), ('372593','83125','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372594','83126','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372595','83126','7','graphid.0','0','',NULL,NULL,NULL,'1047',NULL,NULL,NULL,NULL,NULL,NULL), ('372596','83126','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372597','83127','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372598','83127','7','graphid.0','0','',NULL,NULL,NULL,'2149',NULL,NULL,NULL,NULL,NULL,NULL), ('372599','83127','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372600','83128','6','graphid.0','0','',NULL,NULL,NULL,'775',NULL,NULL,NULL,NULL,NULL,NULL), ('372601','83128','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372602','83129','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372603','83129','7','graphid.0','0','',NULL,NULL,NULL,'1048',NULL,NULL,NULL,NULL,NULL,NULL), ('372604','83129','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372605','83130','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372606','83130','7','graphid.0','0','',NULL,NULL,NULL,'1049',NULL,NULL,NULL,NULL,NULL,NULL), ('372607','83130','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372608','83131','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372609','83131','7','graphid.0','0','',NULL,NULL,NULL,'2150',NULL,NULL,NULL,NULL,NULL,NULL), ('372610','83131','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372611','83132','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372612','83132','7','graphid.0','0','',NULL,NULL,NULL,'2151',NULL,NULL,NULL,NULL,NULL,NULL), ('372613','83132','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372614','83133','1','ds.0.color','0','3ea900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372615','83133','1','ds.0.items.0','0','*Memory utilization',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372616','83133','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372617','83133','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372618','83133','0','legend_aggregation','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372619','83133','0','legend_lines','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372620','83133','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372621','83133','1','reference','0','CCDBA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372622','83133','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372623','83133','0','simple_triggers','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372624','83133','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372625','83134','1','bg_color','0','A5D6A7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372626','83134','1','items.0','0','*Temperature',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372627','83134','1','primary_label','0','{ITEM.NAME}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372628','83134','0','primary_label_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372629','83134','1','reference','0','CACFE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372630','83134','1','secondary_label_color','0','2334b9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372631','83134','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372632','83134','1','thresholds.0.color','0','FF0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372633','83134','1','thresholds.0.threshold','0','80',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372634','83135','1','ds.0.color','0','00c3ff',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372635','83135','1','ds.0.items.0','0','*CPU utilization',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372636','83135','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372637','83135','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372638','83135','0','legend_aggregation','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372639','83135','0','legend_lines','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372640','83135','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372641','83135','1','reference','0','ADFBC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372642','83135','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372643','83135','0','simple_triggers','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372644','83135','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372645','83136','1','bg_color','0','A5D6A7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372646','83136','1','items.0','0','*Current running state',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372647','83136','1','reference','0','EFDCB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372648','83136','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372649','83137','1','bg_color','0','A5D6A7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372650','83137','1','items.0','0','*Reason of the last switchover',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372651','83137','1','reference','0','FCEDA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372652','83137','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372653','83138','4','itemid.0','0','',NULL,NULL,'48317',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372654','83138','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372655','83138','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372656','83138','0','value_size','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372657','83139','1','ds.0.color','0','006274',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372658','83139','1','ds.0.items.0','0','*Bits received',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372659','83139','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372660','83139','1','reference','0','ABFFD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372661','83139','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372662','83140','1','ds.0.color','0','9c640a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372663','83140','1','ds.0.items.0','0','*Inbound packets discarded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372664','83140','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372665','83140','1','reference','0','DBEAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372666','83140','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372667','83141','1','ds.0.color','0','d73deb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372668','83141','1','ds.0.items.0','0','*Inbound packets with errors',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372669','83141','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372670','83141','1','reference','0','DBDEA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372671','83141','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372672','83142','1','ds.0.color','0','b51b1b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372673','83142','1','ds.0.items.0','0','*Bits sent',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372674','83142','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372675','83142','1','reference','0','DEDDA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372676','83142','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372677','83143','1','ds.0.color','0','3d5c25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372678','83143','1','ds.0.items.0','0','*Outbound packets discarded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372679','83143','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372680','83143','1','reference','0','FBDDA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372681','83143','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372682','83144','1','ds.0.color','0','33309a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372683','83144','1','ds.0.items.0','0','*Outbound packets with errors',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372684','83144','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372685','83144','1','reference','0','EEDCC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372686','83144','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372687','83145','1','ds.0.color','0','29b00b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372688','83145','1','ds.0.items.0','0','*Tx optical power lane*',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372689','83145','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372690','83145','1','reference','0','BBCBB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372691','83145','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372692','83146','1','ds.0.color','0','0d62c3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372693','83146','1','ds.0.items.0','0','*Rx optical power lane*',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372694','83146','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372695','83146','1','reference','0','CEACB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372696','83146','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372697','83147','1','bg_color','0','A5D6A7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372698','83147','1','items.0','0','*peer * State',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372699','83147','1','primary_label','0','{ITEM.NAME}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372700','83147','0','primary_label_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372701','83147','1','reference','0','CEFEB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372702','83147','1','secondary_label_color','0','2334b9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372703','83147','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372704','83148','1','ds.0.color','0','d882f2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372705','83148','1','ds.0.items.0','0','BGP * Accepted prefixes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372706','83148','1','ds.1.color','0','4ba26e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372707','83148','1','ds.1.items.0','0','BGP * Rejected prefixes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372708','83148','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372709','83148','1','reference','0','FEFAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372710','83148','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372711','83149','1','ds.0.color','0','d882f2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372712','83149','1','ds.0.items.0','0','BGP * Advertised prefixes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372713','83149','1','ds.1.color','0','9bde59',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372714','83149','1','ds.1.items.0','0','BGP * Received prefixes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372715','83149','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372716','83149','1','reference','0','EDDBF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372717','83149','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372718','83150','1','bg_color','0','A5D6A7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372719','83150','1','items.0','0','*peer * Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372720','83150','1','primary_label','0','{ITEM.NAME}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372721','83150','0','primary_label_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372722','83150','1','reference','0','DFDBB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372723','83150','1','secondary_label_color','0','2334b9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372724','83150','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372725','83151','1','bg_color','0','A5D6A7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372726','83151','1','items.0','0','*OSPF Neighbor * State',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372727','83151','1','primary_label','0','{ITEM.NAME}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372728','83151','0','primary_label_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372729','83151','1','reference','0','EDAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372730','83151','1','secondary_label_color','0','2334b9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372731','83151','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372732','83152','1','ds.0.color','0','00c3ff',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372733','83152','1','ds.0.items.0','0','OSPF Neighbor * Events',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372734','83152','0','ds.1.axisy','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372735','83152','1','ds.1.color','0','756dbc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372736','83152','1','ds.1.items.0','0','OSPFv3 Neighbor * Events',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372737','83152','0','legend_aggregation','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372738','83152','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372739','83152','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372740','83152','1','reference','0','ABDDC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372741','83152','0','simple_triggers','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372742','83152','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372743','83153','1','bg_color','0','A5D6A7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372744','83153','1','items.0','0','*OSPFv3 Neighbor * State',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372745','83153','1','primary_label','0','{ITEM.NAME}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372746','83153','0','primary_label_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372747','83153','1','reference','0','EECBF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372748','83153','1','secondary_label_color','0','2334b9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372749','83153','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372750','83154','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372751','83154','7','graphid.0','0','',NULL,NULL,NULL,'1051',NULL,NULL,NULL,NULL,NULL,NULL), ('372752','83154','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372753','83155','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372754','83155','7','graphid.0','0','',NULL,NULL,NULL,'856',NULL,NULL,NULL,NULL,NULL,NULL), ('372755','83155','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372756','83156','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372757','83156','7','graphid.0','0','',NULL,NULL,NULL,'1564',NULL,NULL,NULL,NULL,NULL,NULL), ('372758','83156','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372759','83157','6','graphid.0','0','',NULL,NULL,NULL,'1567',NULL,NULL,NULL,NULL,NULL,NULL), ('372760','83157','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372761','83158','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372762','83158','7','graphid.0','0','',NULL,NULL,NULL,'1566',NULL,NULL,NULL,NULL,NULL,NULL), ('372763','83158','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372764','83158','0','rows','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372765','83159','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372766','83159','7','graphid.0','0','',NULL,NULL,NULL,'1565',NULL,NULL,NULL,NULL,NULL,NULL), ('372767','83159','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372768','83159','0','rows','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372769','83160','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372770','83160','7','graphid.0','0','',NULL,NULL,NULL,'2453',NULL,NULL,NULL,NULL,NULL,NULL), ('372771','83160','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372772','83161','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372773','83161','7','graphid.0','0','',NULL,NULL,NULL,'2452',NULL,NULL,NULL,NULL,NULL,NULL), ('372774','83161','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372775','83162','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372776','83162','7','graphid.0','0','',NULL,NULL,NULL,'2455',NULL,NULL,NULL,NULL,NULL,NULL), ('372777','83162','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372778','83163','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372779','83163','7','graphid.0','0','',NULL,NULL,NULL,'2454',NULL,NULL,NULL,NULL,NULL,NULL), ('372780','83163','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372781','83164','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372782','83164','7','graphid.0','0','',NULL,NULL,NULL,'2456',NULL,NULL,NULL,NULL,NULL,NULL), ('372783','83164','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372784','83165','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372785','83165','7','graphid.0','0','',NULL,NULL,NULL,'2605',NULL,NULL,NULL,NULL,NULL,NULL), ('372786','83165','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372787','83166','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372788','83166','7','graphid.0','0','',NULL,NULL,NULL,'2153',NULL,NULL,NULL,NULL,NULL,NULL), ('372789','83166','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372790','83167','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372791','83167','7','graphid.0','0','',NULL,NULL,NULL,'2154',NULL,NULL,NULL,NULL,NULL,NULL), ('372792','83167','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372793','83168','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372794','83168','7','graphid.0','0','',NULL,NULL,NULL,'2155',NULL,NULL,NULL,NULL,NULL,NULL), ('372795','83168','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372796','83169','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372797','83169','7','graphid.0','0','',NULL,NULL,NULL,'2156',NULL,NULL,NULL,NULL,NULL,NULL), ('372798','83169','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372799','83170','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372800','83170','7','graphid.0','0','',NULL,NULL,NULL,'2157',NULL,NULL,NULL,NULL,NULL,NULL), ('372801','83170','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372802','83171','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372803','83171','7','graphid.0','0','',NULL,NULL,NULL,'2158',NULL,NULL,NULL,NULL,NULL,NULL), ('372804','83171','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372805','83172','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372806','83172','7','graphid.0','0','',NULL,NULL,NULL,'2159',NULL,NULL,NULL,NULL,NULL,NULL), ('372807','83172','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372808','83173','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372809','83173','7','graphid.0','0','',NULL,NULL,NULL,'2160',NULL,NULL,NULL,NULL,NULL,NULL), ('372810','83173','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372811','83174','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372812','83174','7','graphid.0','0','',NULL,NULL,NULL,'2161',NULL,NULL,NULL,NULL,NULL,NULL), ('372813','83174','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372814','83175','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372815','83175','7','graphid.0','0','',NULL,NULL,NULL,'2162',NULL,NULL,NULL,NULL,NULL,NULL), ('372816','83175','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372817','83176','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372818','83176','7','graphid.0','0','',NULL,NULL,NULL,'2163',NULL,NULL,NULL,NULL,NULL,NULL), ('372819','83176','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372820','83177','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372821','83177','7','graphid.0','0','',NULL,NULL,NULL,'2164',NULL,NULL,NULL,NULL,NULL,NULL), ('372822','83177','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372823','83178','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372824','83178','7','graphid.0','0','',NULL,NULL,NULL,'2165',NULL,NULL,NULL,NULL,NULL,NULL), ('372825','83178','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372826','83179','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372827','83179','7','graphid.0','0','',NULL,NULL,NULL,'2166',NULL,NULL,NULL,NULL,NULL,NULL), ('372828','83179','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372829','83180','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372830','83180','7','graphid.0','0','',NULL,NULL,NULL,'2167',NULL,NULL,NULL,NULL,NULL,NULL), ('372831','83180','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372832','83181','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372833','83181','7','graphid.0','0','',NULL,NULL,NULL,'2168',NULL,NULL,NULL,NULL,NULL,NULL), ('372834','83181','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372835','83182','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372836','83182','7','graphid.0','0','',NULL,NULL,NULL,'2169',NULL,NULL,NULL,NULL,NULL,NULL), ('372837','83182','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372838','83183','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372839','83183','7','graphid.0','0','',NULL,NULL,NULL,'2170',NULL,NULL,NULL,NULL,NULL,NULL), ('372840','83183','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372841','83184','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372842','83184','7','graphid.0','0','',NULL,NULL,NULL,'2171',NULL,NULL,NULL,NULL,NULL,NULL), ('372843','83184','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372844','83185','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372845','83185','7','graphid.0','0','',NULL,NULL,NULL,'2172',NULL,NULL,NULL,NULL,NULL,NULL), ('372846','83185','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372847','83186','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372848','83186','7','graphid.0','0','',NULL,NULL,NULL,'2173',NULL,NULL,NULL,NULL,NULL,NULL), ('372849','83186','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372850','83187','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372851','83187','7','graphid.0','0','',NULL,NULL,NULL,'2174',NULL,NULL,NULL,NULL,NULL,NULL), ('372852','83187','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372853','83188','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372854','83188','7','graphid.0','0','',NULL,NULL,NULL,'2175',NULL,NULL,NULL,NULL,NULL,NULL), ('372855','83188','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372856','83189','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372857','83189','7','graphid.0','0','',NULL,NULL,NULL,'2176',NULL,NULL,NULL,NULL,NULL,NULL), ('372858','83189','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372859','83190','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372860','83190','7','graphid.0','0','',NULL,NULL,NULL,'2177',NULL,NULL,NULL,NULL,NULL,NULL), ('372861','83190','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372862','83191','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372863','83191','7','graphid.0','0','',NULL,NULL,NULL,'2178',NULL,NULL,NULL,NULL,NULL,NULL), ('372864','83191','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372865','83192','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372866','83192','7','graphid.0','0','',NULL,NULL,NULL,'2179',NULL,NULL,NULL,NULL,NULL,NULL), ('372867','83192','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372868','83193','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372869','83193','7','graphid.0','0','',NULL,NULL,NULL,'2180',NULL,NULL,NULL,NULL,NULL,NULL), ('372870','83193','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372871','83194','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372872','83194','7','graphid.0','0','',NULL,NULL,NULL,'2181',NULL,NULL,NULL,NULL,NULL,NULL), ('372873','83194','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372874','83195','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372875','83195','7','graphid.0','0','',NULL,NULL,NULL,'2182',NULL,NULL,NULL,NULL,NULL,NULL), ('372876','83195','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372877','83196','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372878','83196','7','graphid.0','0','',NULL,NULL,NULL,'2183',NULL,NULL,NULL,NULL,NULL,NULL), ('372879','83196','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372880','83197','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372881','83197','7','graphid.0','0','',NULL,NULL,NULL,'2184',NULL,NULL,NULL,NULL,NULL,NULL), ('372882','83197','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372883','83198','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372884','83198','7','graphid.0','0','',NULL,NULL,NULL,'2185',NULL,NULL,NULL,NULL,NULL,NULL), ('372885','83198','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372886','83199','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372887','83199','7','graphid.0','0','',NULL,NULL,NULL,'2186',NULL,NULL,NULL,NULL,NULL,NULL), ('372888','83199','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372889','83200','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372890','83200','7','graphid.0','0','',NULL,NULL,NULL,'2187',NULL,NULL,NULL,NULL,NULL,NULL), ('372891','83200','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372892','83201','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372893','83201','7','graphid.0','0','',NULL,NULL,NULL,'2188',NULL,NULL,NULL,NULL,NULL,NULL), ('372894','83201','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372895','83202','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372896','83202','7','graphid.0','0','',NULL,NULL,NULL,'2189',NULL,NULL,NULL,NULL,NULL,NULL), ('372897','83202','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372898','83203','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372899','83203','7','graphid.0','0','',NULL,NULL,NULL,'2190',NULL,NULL,NULL,NULL,NULL,NULL), ('372900','83203','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372901','83204','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372902','83204','7','graphid.0','0','',NULL,NULL,NULL,'2191',NULL,NULL,NULL,NULL,NULL,NULL), ('372903','83204','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372904','83205','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372905','83205','7','graphid.0','0','',NULL,NULL,NULL,'2192',NULL,NULL,NULL,NULL,NULL,NULL), ('372906','83205','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372907','83206','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372908','83206','7','graphid.0','0','',NULL,NULL,NULL,'2193',NULL,NULL,NULL,NULL,NULL,NULL), ('372909','83206','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372910','83207','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372911','83207','7','graphid.0','0','',NULL,NULL,NULL,'2194',NULL,NULL,NULL,NULL,NULL,NULL), ('372912','83207','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372913','83208','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372914','83208','7','graphid.0','0','',NULL,NULL,NULL,'2195',NULL,NULL,NULL,NULL,NULL,NULL), ('372915','83208','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372916','83209','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372917','83209','7','graphid.0','0','',NULL,NULL,NULL,'2196',NULL,NULL,NULL,NULL,NULL,NULL), ('372918','83209','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372919','83210','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372920','83210','7','graphid.0','0','',NULL,NULL,NULL,'2197',NULL,NULL,NULL,NULL,NULL,NULL), ('372921','83210','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372922','83211','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372923','83211','7','graphid.0','0','',NULL,NULL,NULL,'2198',NULL,NULL,NULL,NULL,NULL,NULL), ('372924','83211','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372925','83212','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372926','83212','7','graphid.0','0','',NULL,NULL,NULL,'2199',NULL,NULL,NULL,NULL,NULL,NULL), ('372927','83212','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372928','83213','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372929','83213','7','graphid.0','0','',NULL,NULL,NULL,'2200',NULL,NULL,NULL,NULL,NULL,NULL), ('372930','83213','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372931','83214','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372932','83214','7','graphid.0','0','',NULL,NULL,NULL,'2201',NULL,NULL,NULL,NULL,NULL,NULL), ('372933','83214','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372934','83215','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372935','83215','7','graphid.0','0','',NULL,NULL,NULL,'2202',NULL,NULL,NULL,NULL,NULL,NULL), ('372936','83215','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372937','83216','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372938','83216','7','graphid.0','0','',NULL,NULL,NULL,'2203',NULL,NULL,NULL,NULL,NULL,NULL), ('372939','83216','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372940','83217','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372941','83217','7','graphid.0','0','',NULL,NULL,NULL,'2204',NULL,NULL,NULL,NULL,NULL,NULL), ('372942','83217','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372943','83218','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372944','83218','7','graphid.0','0','',NULL,NULL,NULL,'2205',NULL,NULL,NULL,NULL,NULL,NULL), ('372945','83218','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372946','83219','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372947','83219','7','graphid.0','0','',NULL,NULL,NULL,'2206',NULL,NULL,NULL,NULL,NULL,NULL), ('372948','83219','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372949','83220','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372950','83220','7','graphid.0','0','',NULL,NULL,NULL,'2207',NULL,NULL,NULL,NULL,NULL,NULL), ('372951','83220','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372952','83221','6','graphid.0','0','',NULL,NULL,NULL,'1458',NULL,NULL,NULL,NULL,NULL,NULL), ('372953','83221','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372954','83222','6','graphid.0','0','',NULL,NULL,NULL,'1459',NULL,NULL,NULL,NULL,NULL,NULL), ('372955','83222','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372956','83223','6','graphid.0','0','',NULL,NULL,NULL,'1460',NULL,NULL,NULL,NULL,NULL,NULL), ('372957','83223','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372958','83224','6','graphid.0','0','',NULL,NULL,NULL,'1462',NULL,NULL,NULL,NULL,NULL,NULL), ('372959','83224','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372960','83225','6','graphid.0','0','',NULL,NULL,NULL,'1463',NULL,NULL,NULL,NULL,NULL,NULL), ('372961','83225','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372962','83226','6','graphid.0','0','',NULL,NULL,NULL,'1464',NULL,NULL,NULL,NULL,NULL,NULL), ('372963','83226','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372964','83227','6','graphid.0','0','',NULL,NULL,NULL,'1466',NULL,NULL,NULL,NULL,NULL,NULL), ('372965','83227','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372966','83228','6','graphid.0','0','',NULL,NULL,NULL,'1467',NULL,NULL,NULL,NULL,NULL,NULL), ('372967','83228','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372968','83229','6','graphid.0','0','',NULL,NULL,NULL,'1468',NULL,NULL,NULL,NULL,NULL,NULL), ('372969','83229','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372970','83230','6','graphid.0','0','',NULL,NULL,NULL,'1470',NULL,NULL,NULL,NULL,NULL,NULL), ('372971','83230','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372972','83231','6','graphid.0','0','',NULL,NULL,NULL,'1471',NULL,NULL,NULL,NULL,NULL,NULL), ('372973','83231','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372974','83232','6','graphid.0','0','',NULL,NULL,NULL,'1473',NULL,NULL,NULL,NULL,NULL,NULL), ('372975','83232','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372976','83233','6','graphid.0','0','',NULL,NULL,NULL,'1474',NULL,NULL,NULL,NULL,NULL,NULL), ('372977','83233','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372978','83234','6','graphid.0','0','',NULL,NULL,NULL,'1475',NULL,NULL,NULL,NULL,NULL,NULL), ('372979','83234','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372980','83235','6','graphid.0','0','',NULL,NULL,NULL,'1476',NULL,NULL,NULL,NULL,NULL,NULL), ('372981','83235','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372982','83236','6','graphid.0','0','',NULL,NULL,NULL,'1478',NULL,NULL,NULL,NULL,NULL,NULL), ('372983','83236','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372984','83237','6','graphid.0','0','',NULL,NULL,NULL,'1479',NULL,NULL,NULL,NULL,NULL,NULL), ('372985','83237','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372986','83238','6','graphid.0','0','',NULL,NULL,NULL,'1480',NULL,NULL,NULL,NULL,NULL,NULL), ('372987','83238','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372988','83239','6','graphid.0','0','',NULL,NULL,NULL,'1481',NULL,NULL,NULL,NULL,NULL,NULL), ('372989','83239','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372990','83240','6','graphid.0','0','',NULL,NULL,NULL,'1487',NULL,NULL,NULL,NULL,NULL,NULL), ('372991','83240','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372992','83241','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372993','83241','7','graphid.0','0','',NULL,NULL,NULL,'2208',NULL,NULL,NULL,NULL,NULL,NULL), ('372994','83241','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372995','83242','6','graphid.0','0','',NULL,NULL,NULL,'727',NULL,NULL,NULL,NULL,NULL,NULL), ('372996','83242','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372997','83243','6','graphid.0','0','',NULL,NULL,NULL,'1055',NULL,NULL,NULL,NULL,NULL,NULL), ('372998','83243','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('372999','83244','6','graphid.0','0','',NULL,NULL,NULL,'1054',NULL,NULL,NULL,NULL,NULL,NULL), ('373000','83244','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373001','83245','0','decimal_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373002','83245','1','description','0','Host name',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373003','83245','0','desc_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373004','83245','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373005','83245','4','itemid.0','0','',NULL,NULL,'48403',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373006','83245','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373007','83245','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373008','83245','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373009','83245','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373010','83246','0','decimal_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373011','83246','1','description','0','App-ID version',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373012','83246','0','desc_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373013','83246','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373014','83246','4','itemid.0','0','',NULL,NULL,'48395',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373015','83246','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373016','83246','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373017','83246','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373018','83246','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373019','83247','0','decimal_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373020','83247','1','description','0','CPU temperature',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373021','83247','0','desc_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373022','83247','0','desc_size','13','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373023','83247','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373024','83247','4','itemid.0','0','',NULL,NULL,'48398',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373025','83247','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373026','83247','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373027','83247','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373028','83247','0','units_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373029','83247','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373030','83248','1','description','0','Management Plane: CPU utilization',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373031','83248','0','desc_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373032','83248','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373033','83248','4','itemid.0','0','',NULL,NULL,'48405',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373034','83248','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373035','83248','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373036','83248','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373037','83248','0','units_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373038','83248','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373039','83249','1','description','0','Data Plane: CPU utilization',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373040','83249','0','desc_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373041','83249','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373042','83249','4','itemid.0','0','',NULL,NULL,'48399',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373043','83249','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373044','83249','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373045','83249','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373046','83249','0','units_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373047','83249','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373048','83250','1','description','0','Session table utilization',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373049','83250','0','desc_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373050','83250','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373051','83250','4','itemid.0','0','',NULL,NULL,'48413',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373052','83250','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373053','83250','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373054','83250','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373055','83250','0','units_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373056','83250','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373057','83251','1','ds.0.color.0','0','33CD35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373058','83251','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373059','83251','4','ds.0.itemids.0','0','',NULL,NULL,'48398',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373060','83251','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373061','83251','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373062','83251','1','reference','0','CMATO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373063','83251','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373064','83251','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373065','83252','1','ds.0.color.0','0','33CD35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373066','83252','1','ds.0.color.1','0','1976D2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373067','83252','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373068','83252','4','ds.0.itemids.0','0','',NULL,NULL,'48399',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373069','83252','4','ds.0.itemids.1','0','',NULL,NULL,'48405',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373070','83252','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373071','83252','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373072','83252','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373073','83252','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373074','83252','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373075','83252','1','reference','0','UZDOW',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373076','83252','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373077','83252','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373078','83253','1','ds.0.color.0','0','33CD35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373079','83253','1','ds.0.color.1','0','1976D2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373080','83253','1','ds.0.color.2','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373081','83253','1','ds.0.color.3','0','B39DDB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373082','83253','1','ds.0.color.4','0','546E7A',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373083','83253','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373084','83253','0','ds.0.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373085','83253','4','ds.0.itemids.0','0','',NULL,NULL,'48410',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373086','83253','4','ds.0.itemids.1','0','',NULL,NULL,'48411',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373087','83253','4','ds.0.itemids.2','0','',NULL,NULL,'48412',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373088','83253','4','ds.0.itemids.3','0','',NULL,NULL,'48414',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373089','83253','4','ds.0.itemids.4','0','',NULL,NULL,'48415',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373090','83253','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373091','83253','1','lefty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373092','83253','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373093','83253','0','legend_lines','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373094','83253','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373095','83253','1','reference','0','YBKLR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373096','83253','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373097','83253','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373098','83254','0','decimal_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373099','83254','1','description','0','Uptime',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373100','83254','0','desc_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373101','83254','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373102','83254','4','itemid.0','0','',NULL,NULL,'48420',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373103','83254','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373104','83254','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373105','83254','0','units_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373106','83254','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373107','83255','0','decimal_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373108','83255','1','description','0','Global Protect Client Package version',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373109','83255','0','desc_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373110','83255','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373111','83255','4','itemid.0','0','',NULL,NULL,'48401',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373112','83255','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373113','83255','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373114','83255','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373115','83255','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373116','83256','0','decimal_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373117','83256','1','description','0','PAN-OS version',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373118','83256','0','desc_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373119','83256','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373120','83256','4','itemid.0','0','',NULL,NULL,'48406',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373121','83256','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373122','83256','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373123','83256','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373124','83256','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373125','83257','0','decimal_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373126','83257','1','description','0','Threat version',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373127','83257','0','desc_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373128','83257','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373129','83257','4','itemid.0','0','',NULL,NULL,'48419',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373130','83257','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373131','83257','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373132','83257','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373133','83257','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373134','83258','0','decimal_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373135','83258','1','description','0','Serial number',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373136','83258','0','desc_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373137','83258','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373138','83258','4','itemid.0','0','',NULL,NULL,'48409',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373139','83258','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373140','83258','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373141','83258','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373142','83258','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373143','83259','0','decimal_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373144','83259','1','description','0','URL filtering version',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373145','83259','0','desc_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373146','83259','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373147','83259','4','itemid.0','0','',NULL,NULL,'48421',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373148','83259','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373149','83259','0','show.1','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373150','83259','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373151','83259','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373152','83260','1','items.0','0','HA*',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373153','83260','0','item_tags.0.operator','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373154','83260','1','item_tags.0.tag','0','component',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373155','83260','1','item_tags.0.value','0','ha-link',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373156','83260','1','primary_label','0','{ITEM.NAME}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373157','83260','0','primary_label_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373158','83260','1','reference','0','LIIYW',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373159','83260','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373160','83261','1','items.0','0','HA*',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373161','83261','0','item_tags.0.operator','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373162','83261','1','item_tags.0.tag','0','component',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373163','83261','1','item_tags.0.value','0','ha-link',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373164','83261','1','primary_label','0','{ITEM.NAME}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373165','83261','0','primary_label_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373166','83261','1','reference','0','UUYVO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373167','83261','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373168','83262','1','items.0','0','Interface [*]: Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373169','83262','1','primary_label','0','{ITEM.NAME}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373170','83262','1','reference','0','XPPXE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373171','83263','1','ds.0.color','0','006274',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373172','83263','1','ds.0.items.0','0','Interface [*]: Bits received',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373173','83263','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373174','83263','0','legend_lines','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373175','83263','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373176','83263','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373177','83263','1','reference','0','BKLSC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373178','83263','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373179','83263','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373180','83264','1','ds.0.color','0','9C640A',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373181','83264','1','ds.0.items.0','0','Interface [*]: Inbound packets discarded, per second',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373182','83264','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373183','83264','0','legend_lines','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373184','83264','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373185','83264','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373186','83264','1','reference','0','MCEQW',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373187','83264','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373188','83264','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373189','83265','1','ds.0.color','0','33309A',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373190','83265','1','ds.0.items.0','0','Interface [*]: Outbound packets with errors, per second',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373191','83265','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373192','83265','0','legend_lines','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373193','83265','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373194','83265','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373195','83265','1','reference','0','JJHYR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373196','83265','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373197','83265','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373198','83266','1','ds.0.color','0','B51B1B',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373199','83266','1','ds.0.items.0','0','Interface [*]: Bits sent',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373200','83266','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373201','83266','0','legend_lines','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373202','83266','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373203','83266','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373204','83266','1','reference','0','EZSOH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373205','83266','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373206','83266','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373207','83267','1','ds.0.color','0','D73DEB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373208','83267','1','ds.0.items.0','0','Interface [*]: Inbound packets with errors, per second',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373209','83267','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373210','83267','0','legend_lines','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373211','83267','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373212','83267','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373213','83267','1','reference','0','IFNOL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373214','83267','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373215','83267','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373216','83268','1','ds.0.color','0','006274',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373217','83268','1','ds.0.items.0','0','VSYS [*]: Interface [*]: Bits received',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373218','83268','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373219','83268','0','legend_lines','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373220','83268','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373221','83268','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373222','83268','1','reference','0','GMLGQ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373223','83268','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373224','83268','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373225','83269','1','ds.0.color','0','9C640A',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373226','83269','1','ds.0.items.0','0','VSYS [*]: Interface [*]: Inbound packets dropped, per second',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373227','83269','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373228','83269','0','legend_lines','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373229','83269','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373230','83269','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373231','83269','1','reference','0','GFVBV',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373232','83269','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373233','83269','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373234','83270','1','ds.0.color','0','B51B1B',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373235','83270','1','ds.0.items.0','0','VSYS [*]: Interface [*]: Bits sent',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373236','83270','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373237','83270','0','legend_lines','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373238','83270','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373239','83270','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373240','83270','1','reference','0','OVKRL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373241','83270','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373242','83270','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373243','83271','1','ds.0.color','0','D73DEB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373244','83271','1','ds.0.items.0','0','VSYS [*]: Interface [*]: Inbound packets with errors, per second',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373245','83271','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373246','83271','0','legend_lines','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373247','83271','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373248','83271','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373249','83271','1','reference','0','JGICJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373250','83271','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373251','83271','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373252','83272','1','items.0','0','BGP peer [*]: Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373253','83272','1','primary_label','0','{ITEM.NAME}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373254','83272','1','reference','0','LCIXC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373255','83272','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373256','83273','1','items.0','0','OSPF neighbor [*]: Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373257','83273','1','primary_label','0','{ITEM.NAME}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373258','83273','1','reference','0','QLHBH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373259','83273','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373260','83274','1','items.0','0','OSPFv3 neighbor [*]: Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373261','83274','1','primary_label','0','{ITEM.NAME}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373262','83274','1','reference','0','QLHBJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373263','83274','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373264','83275','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373265','83275','7','graphid.0','0','',NULL,NULL,NULL,'2209',NULL,NULL,NULL,NULL,NULL,NULL), ('373266','83275','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373267','83276','6','graphid.0','0','',NULL,NULL,NULL,'730',NULL,NULL,NULL,NULL,NULL,NULL), ('373268','83276','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373269','83277','6','graphid.0','0','',NULL,NULL,NULL,'1056',NULL,NULL,NULL,NULL,NULL,NULL), ('373270','83277','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373271','83278','1','description','0','Name',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373272','83278','4','itemid.0','0','',NULL,NULL,'50271',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373273','83278','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373274','83278','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373275','83278','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373276','83278','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373277','83279','1','description','0','Firmware version',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373278','83279','4','itemid.0','0','',NULL,NULL,'50274',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373279','83279','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373280','83279','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373281','83279','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373282','83279','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373283','83280','1','description','0','System date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373284','83280','4','itemid.0','0','',NULL,NULL,'50287',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373285','83280','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373286','83280','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373287','83280','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373288','83280','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373289','83281','1','description','0','Memory utilization',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373290','83281','0','desc_size','8','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373291','83281','4','itemid.0','0','',NULL,NULL,'50262',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373292','83281','1','thresholds.0.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373293','83281','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373294','83281','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373295','83281','1','thresholds.1.threshold','0','70',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373296','83281','1','thresholds.2.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373297','83281','1','thresholds.2.threshold','0','90',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373298','83281','0','th_show_arc','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373299','83281','0','th_show_labels','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373300','83281','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373301','83281','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373302','83281','0','value_arc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373303','83281','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373304','83282','0','decimal_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373305','83282','1','description','0','Total memory',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373306','83282','4','itemid.0','0','',NULL,NULL,'50260',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373307','83282','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373308','83282','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373309','83282','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373310','83282','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373311','83283','0','decimal_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373312','83283','1','description','0','Buffer memory',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373313','83283','4','itemid.0','0','',NULL,NULL,'50257',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373314','83283','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373315','83283','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373316','83283','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373317','83283','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373318','83284','1','description','0','Model',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373319','83284','4','itemid.0','0','',NULL,NULL,'50270',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373320','83284','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373321','83284','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373322','83284','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373323','83284','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373324','83285','1','description','0','Serial number',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373325','83285','4','itemid.0','0','',NULL,NULL,'50273',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373326','83285','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373327','83285','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373328','83285','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373329','83285','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373330','83286','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373331','83286','1','description','0','Uptime',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373332','83286','4','itemid.0','0','',NULL,NULL,'50288',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373333','83286','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373334','83286','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373335','83286','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373336','83286','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373337','83287','0','decimal_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373338','83287','1','description','0','Available memory',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373339','83287','4','itemid.0','0','',NULL,NULL,'50256',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373340','83287','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373341','83287','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373342','83287','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373343','83287','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373344','83288','0','decimal_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373345','83288','1','description','0','Cached memory',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373346','83288','4','itemid.0','0','',NULL,NULL,'50258',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373347','83288','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373348','83288','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373349','83288','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373350','83288','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373351','83290','1','items.0','0','CPU [*]: Usage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373352','83290','1','primary_label','0',E'{{ITEM.NAME}.regsub("CPU\\s\\[(\\d+)\\]:\\sUsage", CPU \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373353','83290','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373354','83290','1','reference','0','BBDAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373355','83290','1','thresholds.0.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373356','83290','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373357','83290','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373358','83290','1','thresholds.1.threshold','0','70',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373359','83290','1','thresholds.2.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373360','83290','1','thresholds.2.threshold','0','90',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373361','83291','1','items.0','0','Storage [*]: Utilization',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373362','83291','1','primary_label','0',E'{{ITEM.NAME}.regsub("Storage\\s\\[(.+)\\]:\\sUtilization", \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373363','83291','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373364','83291','1','reference','0','BBDAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373365','83291','1','thresholds.0.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373366','83291','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373367','83291','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373368','83291','1','thresholds.1.threshold','0','70',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373369','83291','1','thresholds.2.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373370','83291','1','thresholds.2.threshold','0','90',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373371','83292','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373372','83292','1','description','0','SNMP agent availability',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373373','83292','4','itemid.0','0','',NULL,NULL,'50292',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373374','83292','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373375','83292','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373376','83292','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373377','83292','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373378','83292','1','thresholds.1.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373379','83292','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373380','83292','1','thresholds.2.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373381','83292','1','thresholds.2.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373382','83292','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373383','83292','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373384','83293','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373385','83293','1','description','0','ICMP ping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373386','83293','4','itemid.0','0','',NULL,NULL,'50263',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373387','83293','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373388','83293','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373389','83293','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373390','83293','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373391','83293','1','thresholds.1.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373392','83293','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373393','83293','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373394','83293','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373395','83294','0','decimal_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373396','83294','1','description','0','ICMP response time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373397','83294','4','itemid.0','0','',NULL,NULL,'50265',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373398','83294','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373399','83294','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373400','83294','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373401','83294','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373402','83295','0','decimal_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373403','83295','1','description','0','ICMP loss',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373404','83295','4','itemid.0','0','',NULL,NULL,'50264',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373405','83295','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373406','83295','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373407','83295','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373408','83295','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373409','83296','1','items.0','0','Interface*: Incoming current throughput',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373410','83296','1','primary_label','0',E'{{ITEM.NAME}.regsub("^Interface\\s\\[(.+)\\].*$","\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373411','83296','0','primary_label_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373412','83296','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373413','83296','1','reference','0','IFTRX',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373414','83296','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373415','83296','1','secondary_label_units','0','bps',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373416','83296','1','thresholds.0.color','0','8BCC3A',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373417','83296','1','thresholds.0.threshold','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373418','83297','1','items.0','0','Interface*: Outgoing current throughput',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373419','83297','1','primary_label','0',E'{{ITEM.NAME}.regsub("^Interface\\s\\[(.+)\\].*$","\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373420','83297','0','primary_label_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373421','83297','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373422','83297','1','reference','0','IFTTX',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373423','83297','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373424','83297','1','secondary_label_units','0','bps',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373425','83297','1','thresholds.0.color','0','00A2E5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373426','83297','1','thresholds.0.threshold','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373427','83298','1','ds.0.color.0','0','8BCC3A',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373428','83298','1','ds.0.color.1','0','00A2E5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373429','83298','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373430','83298','1','ds.0.itemids.0._reference','0','IFTRX._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373431','83298','1','ds.0.itemids.1._reference','0','IFTTX._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373432','83298','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373433','83298','1','reference','0','IFTGR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373434','83298','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373435','83299','1','items.0','0','Interface*: Accepted packets',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373436','83299','1','primary_label','0',E'{{ITEM.NAME}.regsub("^Interface\\s\\[(.+)\\].*$","\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373437','83299','0','primary_label_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373438','83299','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373439','83299','1','reference','0','IFPAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373440','83299','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373441','83299','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373442','83299','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373443','83299','1','thresholds.0.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373444','83299','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373445','83300','1','items.0','0','Interface*: Blocked packets',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373446','83300','1','primary_label','0',E'{{ITEM.NAME}.regsub("^Interface\\s\\[(.+)\\].*$","\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373447','83300','0','primary_label_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373448','83300','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373449','83300','1','reference','0','IFPBL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373450','83300','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373451','83300','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373452','83300','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373453','83300','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373454','83300','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373455','83301','1','ds.0.color.0','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373456','83301','1','ds.0.color.1','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373457','83301','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373458','83301','1','ds.0.itemids.0._reference','0','IFPAC._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373459','83301','1','ds.0.itemids.1._reference','0','IFPBL._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373460','83301','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373461','83301','1','reference','0','IFTGR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373462','83301','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373463','83302','1','items.0','0','CPU [*]: Usage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373464','83302','1','primary_label','0',E'{{ITEM.NAME}.regsub("CPU\\s\\[(\\d+)\\]:\\sUsage", CPU \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373465','83302','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373466','83302','1','reference','0','CPUUS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373467','83302','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373468','83302','1','secondary_label_units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373469','83302','1','thresholds.0.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373470','83302','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373471','83302','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373472','83302','1','thresholds.1.threshold','0','70',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373473','83302','1','thresholds.2.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373474','83302','1','thresholds.2.threshold','0','90',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373475','83303','1','items.0','0','CPU*: Temperature',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373476','83303','1','primary_label','0',E'{{ITEM.NAME}.regsub("CPU\\s\\[(\\d+)\\]:\\sTemperature", CPU \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373477','83303','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373478','83303','1','reference','0','CPUTM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373479','83303','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373480','83303','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373481','83303','1','secondary_label_units','0','°C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373482','83304','1','ds.0.color.0','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373483','83304','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373484','83304','1','ds.0.itemids.0._reference','0','CPUUS._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373485','83304','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373486','83304','0','ds.1.axisy','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373487','83304','1','ds.1.color.0','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373488','83304','0','ds.1.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373489','83304','1','ds.1.itemids.0._reference','0','CPUTM._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373490','83304','0','ds.1.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373491','83304','1','reference','0','CPUGR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373492','83304','0','righty','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373493','83304','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373494','83305','1','description','0','Memory utilization',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373495','83305','0','desc_size','8','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373496','83305','4','itemid.0','0','',NULL,NULL,'50262',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373497','83305','1','thresholds.0.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373498','83305','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373499','83305','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373500','83305','1','thresholds.1.threshold','0','70',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373501','83305','1','thresholds.2.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373502','83305','1','thresholds.2.threshold','0','90',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373503','83305','0','th_show_arc','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373504','83305','0','th_show_labels','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373505','83305','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373506','83305','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373507','83305','0','value_arc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373508','83305','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373509','83306','0','decimal_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373510','83306','1','description','0','Total memory',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373511','83306','4','itemid.0','0','',NULL,NULL,'50260',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373512','83306','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373513','83306','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373514','83306','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373515','83306','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373516','83307','0','decimal_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373517','83307','1','description','0','Buffer memory',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373518','83307','4','itemid.0','0','',NULL,NULL,'50257',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373519','83307','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373520','83307','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373521','83307','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373522','83307','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373523','83308','0','decimal_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373524','83308','1','description','0','Available memory',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373525','83308','4','itemid.0','0','',NULL,NULL,'50256',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373526','83308','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373527','83308','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373528','83308','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373529','83308','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373530','83309','0','decimal_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373531','83309','1','description','0','Cached memory',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373532','83309','4','itemid.0','0','',NULL,NULL,'50258',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373533','83309','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373534','83309','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373535','83309','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373536','83309','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373537','83310','1','items.0','0','* memory utilization',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373538','83310','1','primary_label','0',E'{{ITEM.NAME}.regsub("(.+) memory utilization", \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373539','83310','0','primary_label_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373540','83310','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373541','83310','1','reference','0','MEMUH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373542','83310','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373543','83310','1','secondary_label_units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373544','83310','1','thresholds.0.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373545','83310','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373546','83310','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373547','83310','1','thresholds.1.threshold','0','70',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373548','83310','1','thresholds.2.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373549','83310','1','thresholds.2.threshold','0','90',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373550','83311','1','ds.0.color.0','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373551','83311','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373552','83311','1','ds.0.itemids.0._reference','0','MEMUH._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373553','83311','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373554','83311','1','reference','0','MEMGR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373555','83311','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373556','83312','1','items.0','0','Disk*: Disk name',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373557','83312','1','primary_label','0',E'{{ITEM.NAME}.regsub("Disk\\s\\[(.+)\\].*", Disk \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373558','83312','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373559','83312','1','reference','0','DSKNA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373560','83312','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373561','83312','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373562','83312','1','thresholds.0.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373563','83312','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373564','83312','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373565','83312','1','thresholds.1.threshold','0','70',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373566','83312','1','thresholds.2.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373567','83312','1','thresholds.2.threshold','0','90',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373568','83313','1','items.0','0','Disk*: Member of a RAID array',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373569','83313','1','primary_label','0',E'{{ITEM.NAME}.regsub("Disk\\s\\[(.+)\\].*", Disk \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373570','83313','0','primary_label_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373571','83313','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373572','83313','1','reference','0','DSKRM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373573','83313','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373574','83313','0','secondary_label_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373575','83313','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373576','83313','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373577','83313','1','thresholds.0.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373578','83313','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373579','83314','1','items.0','0','Disk*: RAID status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373580','83314','1','primary_label','0',E'{{ITEM.NAME}.regsub("Disk\\s\\[(.+)\\].*", Disk \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373581','83314','0','primary_label_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373582','83314','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373583','83314','1','reference','0','DSKRS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373584','83314','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373585','83314','0','secondary_label_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373586','83314','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373587','83314','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373588','83314','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373589','83314','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373590','83314','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373591','83314','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373592','83314','1','thresholds.2.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373593','83314','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373594','83315','1','items.0','0','Disk*: SMART info test result',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373595','83315','1','primary_label','0',E'{{ITEM.NAME}.regsub("Disk\\s\\[(.+)\\].*", Disk \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373596','83315','0','primary_label_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373597','83315','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373598','83315','1','reference','0','DSKSM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373599','83315','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373600','83315','0','secondary_label_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373601','83315','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373602','83315','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373603','83315','1','thresholds.0.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373604','83315','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373605','83315','1','thresholds.1.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373606','83315','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373607','83316','1','items.0','0','Fan*: Fan status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373608','83316','1','primary_label','0',E'{{ITEM.NAME}.regsub("Fan\\s\\[(.+)\\].*", Fan \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373609','83316','0','primary_label_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373610','83316','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373611','83316','1','reference','0','FANST',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373612','83316','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373613','83316','0','secondary_label_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373614','83316','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373615','83316','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373616','83316','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373617','83316','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373618','83316','1','thresholds.1.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373619','83316','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373620','83317','1','items.0','0','Fan*: Fan speed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373621','83317','1','primary_label','0',E'{{ITEM.NAME}.regsub("Fan\\s\\[(.+)\\].*", Fan \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373622','83317','0','primary_label_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373623','83317','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373624','83317','1','reference','0','FANSP',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373625','83317','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373626','83317','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373627','83317','1','secondary_label_units','0','rpm',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373628','83318','1','ds.0.color.0','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373629','83318','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373630','83318','1','ds.0.itemids.0._reference','0','FANSP._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373631','83318','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373632','83318','1','reference','0','FANGR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373633','83318','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373634','83319','1','items.0','0','PSU*: Power status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373635','83319','1','primary_label','0',E'{{ITEM.NAME}.regsub("PSU\\s\\[(.+)\\].*", PSU \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373636','83319','0','primary_label_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373637','83319','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373638','83319','1','reference','0','PSUPS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373639','83319','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373640','83319','0','secondary_label_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373641','83319','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373642','83319','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373643','83319','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373644','83319','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373645','83319','1','thresholds.1.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373646','83319','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373647','83320','1','items.0','0','PSU*: Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373648','83320','1','primary_label','0',E'{{ITEM.NAME}.regsub("PSU\\s\\[(.+)\\].*", PSU \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373649','83320','0','primary_label_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373650','83320','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373651','83320','1','reference','0','PSUST',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373652','83320','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373653','83320','0','secondary_label_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373654','83320','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373655','83320','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373656','83320','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373657','83320','1','thresholds.0.threshold','0','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373658','83320','1','thresholds.1.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373659','83320','1','thresholds.1.threshold','0','5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373660','83321','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373661','83321','1','description','0','Active firewalls',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373662','83321','4','itemid.0','0','',NULL,NULL,'50252',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373663','83321','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373664','83321','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373665','83321','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373666','83321','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373667','83322','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373668','83322','1','description','0','Firewalls in the cluster',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373669','83322','4','itemid.0','0','',NULL,NULL,'50253',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373670','83322','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373671','83322','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373672','83322','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373673','83322','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373674','83323','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373675','83323','1','description','0','Synchronization status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373676','83323','4','itemid.0','0','',NULL,NULL,'50255',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373677','83323','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373678','83323','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373679','83323','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373680','83323','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373681','83324','1','ds.0.color.0','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373682','83324','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373683','83324','1','ds.0.itemids.0._reference','0','HAHQL._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373684','83324','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373685','83324','1','reference','0','HAHQG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373686','83324','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373687','83325','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373688','83325','1','description','0','Faulty HA links',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373689','83325','4','itemid.0','0','',NULL,NULL,'50251',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373690','83325','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373691','83325','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373692','83325','1','thresholds.0.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373693','83325','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373694','83325','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373695','83325','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373696','83325','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373697','83325','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373698','83326','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373699','83326','1','description','0','Firewalls not replying',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373700','83326','4','itemid.0','0','',NULL,NULL,'50254',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373701','83326','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373702','83326','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373703','83326','1','thresholds.0.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373704','83326','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373705','83326','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373706','83326','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373707','83326','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373708','83326','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373709','83327','1','items.0','0','HA members*: Is online',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373710','83327','1','primary_label','0',E'{{ITEM.NAME}.regsub("HA members\\s\\[(.+)\\].*", HA \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373711','83327','0','primary_label_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373712','83327','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373713','83327','1','reference','0','HAHON',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373714','83327','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373715','83327','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373716','83327','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373717','83327','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373718','83327','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373719','83327','1','thresholds.1.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373720','83327','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373721','83328','1','items.0','0','HA members*: HA quality',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373722','83328','1','primary_label','0',E'{{ITEM.NAME}.regsub("HA members\\s\\[(.+)\\].*", HA \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373723','83328','0','primary_label_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373724','83328','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373725','83328','1','reference','0','HAHQL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373726','83328','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373727','83328','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373728','83328','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373729','83329','1','items.0','0','HA members*: HA priority',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373730','83329','1','primary_label','0',E'{{ITEM.NAME}.regsub("HA members\\s\\[(.+)\\].*", HA \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373731','83329','0','primary_label_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373732','83329','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373733','83329','1','reference','0','HAHPR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373734','83329','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373735','83329','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373736','83329','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373737','83330','1','items.0','0','HA members*: Firewall status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373738','83330','1','primary_label','0',E'{{ITEM.NAME}.regsub("HA members\\s\\[(.+)\\].*", HA \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373739','83330','0','primary_label_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373740','83330','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373741','83330','1','reference','0','HAHFS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373742','83330','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373743','83330','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373744','83331','1','items.0','0','Autoupdate*: Update state',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373745','83331','1','primary_label','0',E'{{ITEM.NAME}.regsub("Autoupdate\\s\\[(.+)\\].*", \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373746','83331','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373747','83331','1','reference','0','AUUST',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373748','83331','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373749','83331','0','secondary_label_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373750','83331','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373751','83331','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373752','83331','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373753','83331','1','thresholds.0.threshold','0','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373754','83331','1','thresholds.1.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373755','83331','1','thresholds.1.threshold','0','6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373756','83332','1','items.0','0','Autoupdate*: Last update date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373757','83332','1','primary_label','0',E'{{ITEM.NAME}.regsub("Autoupdate\\s\\[(.+)\\].*", \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373758','83332','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373759','83332','1','reference','0','AUUDT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373760','83332','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373761','83333','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373762','83333','1','description','0','Incoming policies',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373763','83333','4','itemid.0','0','',NULL,NULL,'50266',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373764','83333','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373765','83333','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373766','83333','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373767','83333','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373768','83334','1','ds.0.color.0','0','F5B218',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373769','83334','1','ds.0.color.1','0','F57018',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373770','83334','1','ds.0.color.2','0','18A5F5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373771','83334','1','ds.0.color.3','0','466475',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373772','83334','1','ds.0.color.4','0','756746',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373773','83334','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373774','83334','4','ds.0.itemids.0','0','',NULL,NULL,'50266',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373775','83334','4','ds.0.itemids.1','0','',NULL,NULL,'50267',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373776','83334','4','ds.0.itemids.2','0','',NULL,NULL,'50291',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373777','83334','4','ds.0.itemids.3','0','',NULL,NULL,'50290',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373778','83334','4','ds.0.itemids.4','0','',NULL,NULL,'50289',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373779','83334','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373780','83334','1','reference','0','FANGR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373781','83334','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373782','83335','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373783','83335','1','description','0','Outgoing policies',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373784','83335','4','itemid.0','0','',NULL,NULL,'50266',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373785','83335','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373786','83335','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373787','83335','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373788','83335','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373789','83336','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373790','83336','1','description','0','Number of mature VPN tunnels',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373791','83336','4','itemid.0','0','',NULL,NULL,'50291',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373792','83336','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373793','83336','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373794','83336','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373795','83336','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373796','83337','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373797','83337','1','description','0','Number of dying VPN tunnels',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373798','83337','4','itemid.0','0','',NULL,NULL,'50290',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373799','83337','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373800','83337','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373801','83337','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373802','83337','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373803','83338','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373804','83338','1','description','0','Number of dead VPN tunnels',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373805','83338','4','itemid.0','0','',NULL,NULL,'50289',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373806','83338','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373807','83338','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373808','83338','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373809','83338','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373810','83339','1','description','0','Policies',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373811','83339','0','desc_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373812','83339','0','desc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373813','83339','0','desc_v_pos','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373814','83339','4','itemid.0','0','',NULL,NULL,'50268',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373815','83339','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373816','83340','1','description','0','Active filtering policy name',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373817','83340','4','itemid.0','0','',NULL,NULL,'50268',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373818','83340','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373819','83340','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373820','83340','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373821','83340','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373822','83341','1','description','0','Active IPsec policy name',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373823','83341','4','itemid.0','0','',NULL,NULL,'50269',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373824','83341','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373825','83341','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373826','83341','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373827','83341','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373828','83342','1','description','0','ASQ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373829','83342','0','desc_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373830','83342','0','desc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373831','83342','0','desc_v_pos','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373832','83342','4','itemid.0','0','',NULL,NULL,'50249',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373833','83342','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373834','83343','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373835','83343','1','description','0','ASQ major alarm count',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373836','83343','4','itemid.0','0','',NULL,NULL,'50249',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373837','83343','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373838','83343','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373839','83343','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373840','83343','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373841','83344','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373842','83344','1','description','0','ASQ minor alarm count',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373843','83344','4','itemid.0','0','',NULL,NULL,'50250',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373844','83344','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373845','83344','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373846','83344','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373847','83344','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373848','83345','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373849','83345','1','description','0','ASQ TCP connection count',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373850','83345','4','itemid.0','0','',NULL,NULL,'50247',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373851','83345','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373852','83345','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373853','83345','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373854','83345','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373855','83346','0','decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373856','83346','1','description','0','ASQ UDP connection count',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373857','83346','4','itemid.0','0','',NULL,NULL,'50248',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373858','83346','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373859','83346','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373860','83346','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373861','83346','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373862','83347','1','items.0','0','Health status firewall [*]: Admin password',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373863','83347','1','primary_label','0',E'{{ITEM.NAME}.regsub("Health status firewall\\s\\[(.+)\\]:\\s(.*)", #\\1 \\2)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373864','83347','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373865','83347','1','reference','0','HSTAP',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373866','83347','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373867','83347','0','secondary_label_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373868','83347','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373869','83347','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373870','83347','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373871','83347','1','thresholds.0.threshold','0','5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373872','83347','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373873','83347','1','thresholds.1.threshold','0','6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373874','83347','1','thresholds.2.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373875','83347','1','thresholds.2.threshold','0','7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373876','83348','1','items.0','0','Health status firewall [*]: Certificates',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373877','83348','1','primary_label','0',E'{{ITEM.NAME}.regsub("Health status firewall\\s\\[(.+)\\]:\\s(.*)", #\\1 \\2)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373878','83348','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373879','83348','1','reference','0','HSTCR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373880','83348','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373881','83348','0','secondary_label_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373882','83348','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373883','83348','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373884','83348','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373885','83348','1','thresholds.0.threshold','0','5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373886','83348','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373887','83348','1','thresholds.1.threshold','0','6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373888','83348','1','thresholds.2.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373889','83348','1','thresholds.2.threshold','0','7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373890','83349','1','items.0','0','Health status firewall [*]: CPU',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373891','83349','1','primary_label','0',E'{{ITEM.NAME}.regsub("Health status firewall\\s\\[(.+)\\]:\\s(.*)", #\\1 \\2)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373892','83349','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373893','83349','1','reference','0','HSTCU',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373894','83349','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373895','83349','0','secondary_label_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373896','83349','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373897','83349','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373898','83349','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373899','83349','1','thresholds.0.threshold','0','5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373900','83349','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373901','83349','1','thresholds.1.threshold','0','6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373902','83349','1','thresholds.2.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373903','83349','1','thresholds.2.threshold','0','7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373904','83350','1','items.0','0','Health status firewall [*]: CPU temperature',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373905','83350','1','primary_label','0',E'{{ITEM.NAME}.regsub("Health status firewall\\s\\[(.+)\\]:\\s(.*)", #\\1 \\2)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373906','83350','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373907','83350','1','reference','0','HSTCT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373908','83350','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373909','83350','0','secondary_label_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373910','83350','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373911','83350','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373912','83350','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373913','83350','1','thresholds.0.threshold','0','5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373914','83350','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373915','83350','1','thresholds.1.threshold','0','6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373916','83350','1','thresholds.2.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373917','83350','1','thresholds.2.threshold','0','7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373918','83351','1','items.0','0','Health status firewall [*]: CRLs',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373919','83351','1','primary_label','0',E'{{ITEM.NAME}.regsub("Health status firewall\\s\\[(.+)\\]:\\s(.*)", #\\1 \\2)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373920','83351','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373921','83351','1','reference','0','HSTCL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373922','83351','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373923','83351','0','secondary_label_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373924','83351','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373925','83351','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373926','83351','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373927','83351','1','thresholds.0.threshold','0','5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373928','83351','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373929','83351','1','thresholds.1.threshold','0','6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373930','83351','1','thresholds.2.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373931','83351','1','thresholds.2.threshold','0','7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373932','83352','1','items.0','0','Health status firewall [*]: Disk',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373933','83352','1','primary_label','0',E'{{ITEM.NAME}.regsub("Health status firewall\\s\\[(.+)\\]:\\s(.*)", #\\1 \\2)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373934','83352','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373935','83352','1','reference','0','HSTDS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373936','83352','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373937','83352','0','secondary_label_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373938','83352','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373939','83352','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373940','83352','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373941','83352','1','thresholds.0.threshold','0','5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373942','83352','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373943','83352','1','thresholds.1.threshold','0','6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373944','83352','1','thresholds.2.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373945','83352','1','thresholds.2.threshold','0','7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373946','83353','1','items.0','0','Health status firewall [*]: Fans',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373947','83353','1','primary_label','0',E'{{ITEM.NAME}.regsub("Health status firewall\\s\\[(.+)\\]:\\s(.*)", #\\1 \\2)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373948','83353','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373949','83353','1','reference','0','HSTFN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373950','83353','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373951','83353','0','secondary_label_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373952','83353','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373953','83353','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373954','83353','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373955','83353','1','thresholds.0.threshold','0','5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373956','83353','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373957','83353','1','thresholds.1.threshold','0','6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373958','83353','1','thresholds.2.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373959','83353','1','thresholds.2.threshold','0','7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373960','83354','1','items.0','0','Health status firewall [*]: HA link',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373961','83354','1','primary_label','0',E'{{ITEM.NAME}.regsub("Health status firewall\\s\\[(.+)\\]:\\s(.*)", #\\1 \\2)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373962','83354','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373963','83354','1','reference','0','HSTHL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373964','83354','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373965','83354','0','secondary_label_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373966','83354','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373967','83354','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373968','83354','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373969','83354','1','thresholds.0.threshold','0','5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373970','83354','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373971','83354','1','thresholds.1.threshold','0','6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373972','83354','1','thresholds.2.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373973','83354','1','thresholds.2.threshold','0','7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373974','83355','1','items.0','0','Health status firewall [*]: HA mode',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373975','83355','1','primary_label','0',E'{{ITEM.NAME}.regsub("Health status firewall\\s\\[(.+)\\]:\\s(.*)", #\\1 \\2)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373976','83355','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373977','83355','1','reference','0','HSTHM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373978','83355','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373979','83355','0','secondary_label_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373980','83355','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373981','83355','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373982','83355','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373983','83355','1','thresholds.0.threshold','0','5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373984','83355','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373985','83355','1','thresholds.1.threshold','0','6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373986','83355','1','thresholds.2.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373987','83355','1','thresholds.2.threshold','0','7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373988','83356','1','items.0','0','Health status firewall [*]: Memory',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373989','83356','1','primary_label','0',E'{{ITEM.NAME}.regsub("Health status firewall\\s\\[(.+)\\]:\\s(.*)", #\\1 \\2)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373990','83356','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373991','83356','1','reference','0','HSTMM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373992','83356','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373993','83356','0','secondary_label_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373994','83356','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373995','83356','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373996','83356','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373997','83356','1','thresholds.0.threshold','0','5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373998','83356','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('373999','83356','1','thresholds.1.threshold','0','6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374000','83356','1','thresholds.2.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374001','83356','1','thresholds.2.threshold','0','7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374002','83357','1','items.0','0','Health status firewall [*]: Power supply',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374003','83357','1','primary_label','0',E'{{ITEM.NAME}.regsub("Health status firewall\\s\\[(.+)\\]:\\s(.*)", #\\1 \\2)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374004','83357','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374005','83357','1','reference','0','HSTPS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374006','83357','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374007','83357','0','secondary_label_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374008','83357','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374009','83357','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374010','83357','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374011','83357','1','thresholds.0.threshold','0','5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374012','83357','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374013','83357','1','thresholds.1.threshold','0','6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374014','83357','1','thresholds.2.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374015','83357','1','thresholds.2.threshold','0','7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374016','83358','1','items.0','0','Health status firewall [*]: RAID',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374017','83358','1','primary_label','0',E'{{ITEM.NAME}.regsub("Health status firewall\\s\\[(.+)\\]:\\s(.*)", #\\1 \\2)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374018','83358','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374019','83358','1','reference','0','HSTRD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374020','83358','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374021','83358','0','secondary_label_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374022','83358','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374023','83358','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374024','83358','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374025','83358','1','thresholds.0.threshold','0','5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374026','83358','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374027','83358','1','thresholds.1.threshold','0','6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374028','83358','1','thresholds.2.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374029','83358','1','thresholds.2.threshold','0','7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374030','83359','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374031','83359','7','graphid.0','0','',NULL,NULL,NULL,'2210',NULL,NULL,NULL,NULL,NULL,NULL), ('374032','83359','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374033','83360','6','graphid.0','0','',NULL,NULL,NULL,'1058',NULL,NULL,NULL,NULL,NULL,NULL), ('374034','83360','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374035','83361','6','graphid.0','0','',NULL,NULL,NULL,'736',NULL,NULL,NULL,NULL,NULL,NULL), ('374036','83361','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374037','83362','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374038','83362','7','graphid.0','0','',NULL,NULL,NULL,'2080',NULL,NULL,NULL,NULL,NULL,NULL), ('374039','83362','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374040','83363','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374041','83363','7','graphid.0','0','',NULL,NULL,NULL,'2081',NULL,NULL,NULL,NULL,NULL,NULL), ('374042','83363','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374043','83364','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374044','83364','7','graphid.0','0','',NULL,NULL,NULL,'2083',NULL,NULL,NULL,NULL,NULL,NULL), ('374045','83364','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374046','83365','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374047','83365','7','graphid.0','0','',NULL,NULL,NULL,'2082',NULL,NULL,NULL,NULL,NULL,NULL), ('374048','83365','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374049','83366','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374050','83366','7','graphid.0','0','',NULL,NULL,NULL,'2084',NULL,NULL,NULL,NULL,NULL,NULL), ('374051','83366','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374052','83367','1','description','0','System name',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374053','83367','0','desc_size','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374054','83367','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374055','83367','4','itemid.0','0','',NULL,NULL,'50225',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374056','83367','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374057','83367','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374058','83367','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374059','83367','0','value_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374060','83368','1','description','0','System location',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374061','83368','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374062','83368','4','itemid.0','0','',NULL,NULL,'50219',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374063','83368','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374064','83368','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374065','83368','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374066','83368','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374067','83369','1','description','0','System contact',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374068','83369','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374069','83369','4','itemid.0','0','',NULL,NULL,'50217',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374070','83369','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374071','83369','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374072','83369','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374073','83369','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374074','83370','1','description','0','System description',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374075','83370','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374076','83370','4','itemid.0','0','',NULL,NULL,'50218',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374077','83370','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374078','83370','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374079','83370','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374080','83370','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374081','83371','1','description','0','Uptime (hardware)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374082','83371','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374083','83371','4','itemid.0','0','',NULL,NULL,'50227',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374084','83371','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374085','83371','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374086','83371','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374087','83371','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374088','83372','1','description','0','Uptime (network)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374089','83372','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374090','83372','4','itemid.0','0','',NULL,NULL,'50228',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374091','83372','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374092','83372','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374093','83372','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374094','83372','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374095','83373','1','description','0','SNMP agent availability',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374096','83373','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374097','83373','4','itemid.0','0','',NULL,NULL,'50229',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374098','83373','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374099','83373','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374100','83373','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374101','83373','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374102','83373','1','thresholds.1.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374103','83373','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374104','83373','1','thresholds.2.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374105','83373','1','thresholds.2.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374106','83373','0','units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374107','83373','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374108','83374','0','decimal_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374109','83374','1','description','0','ICMP ping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374110','83374','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374111','83374','4','itemid.0','0','',NULL,NULL,'50211',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374112','83374','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374113','83374','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374114','83374','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374115','83374','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374116','83374','1','thresholds.1.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374117','83374','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374118','83374','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374119','83374','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374120','83375','0','decimal_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374121','83375','1','description','0','ICMP response time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374122','83375','0','desc_size','12','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374123','83375','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374124','83375','4','itemid.0','0','',NULL,NULL,'50213',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374125','83375','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374126','83375','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374127','83375','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374128','83375','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374129','83376','0','decimal_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374130','83376','1','description','0','ICMP loss',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374131','83376','0','desc_size','12','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374132','83376','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374133','83376','4','itemid.0','0','',NULL,NULL,'50212',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374134','83376','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374135','83376','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374136','83376','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374137','83376','0','value_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374138','83377','1','description','0','Memory utilization',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374139','83377','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374140','83377','4','itemid.0','0','',NULL,NULL,'50224',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374141','83377','0','rf_rate','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374142','83377','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374143','83377','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374144','83377','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374145','83377','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374146','83377','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374147','83377','0','value_arc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374148','83377','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374149','83378','0','decimal_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374150','83378','1','description','0','Total memory',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374151','83378','0','desc_size','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374152','83378','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374153','83378','4','itemid.0','0','',NULL,NULL,'50223',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374154','83378','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374155','83378','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374156','83378','0','units_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374157','83378','0','value_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374158','83379','1','items.0','0','CPU [*]: Utilization, %',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374159','83379','1','primary_label','0',E'CPU .{{ITEM.NAME}.regsub("^.*\\]\\[(.*)\\].*$","\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374160','83379','1','reference','0','CPUUT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374161','83379','1','secondary_label_units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374162','83379','1','thresholds.0.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374163','83379','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374164','83379','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374165','83379','1','thresholds.1.threshold','0','80',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374166','83379','1','thresholds.2.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374167','83379','1','thresholds.2.threshold','0','95',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374168','83380','0','decimal_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374169','83380','1','description','0','Free memory',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374170','83380','0','desc_size','10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374171','83380','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374172','83380','4','itemid.0','0','',NULL,NULL,'50222',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374173','83380','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374174','83380','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374175','83380','0','units_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374176','83380','0','value_size','20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374177','83381','1','description','0','Cached memory',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374178','83381','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374179','83381','4','itemid.0','0','',NULL,NULL,'50221',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374180','83381','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374181','83381','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374182','83381','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374183','83381','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374184','83382','1','description','0','Buffer memory',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374185','83382','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374186','83382','4','itemid.0','0','',NULL,NULL,'50220',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374187','83382','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374188','83382','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374189','83382','0','units_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374190','83382','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374191','83383','1','items.0','0','Interface*: Operational status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374192','83383','1','primary_label','0',E'{{ITEM.NAME}.regsub("^Interface\\s\\[(.+)\\]\\[.*$","\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374193','83383','0','primary_label_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374194','83383','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374195','83383','1','reference','0','IFTST',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374196','83383','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374197','83383','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374198','83383','1','thresholds.0.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374199','83383','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374200','83383','1','thresholds.1.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374201','83383','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374202','83383','1','thresholds.2.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374203','83383','1','thresholds.2.threshold','0','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374204','83383','1','thresholds.3.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374205','83383','1','thresholds.3.threshold','0','5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374206','83383','1','thresholds.4.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374207','83383','1','thresholds.4.threshold','0','6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374208','83383','1','thresholds.5.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374209','83383','1','thresholds.5.threshold','0','7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374210','83384','1','items.0','0','Interface*: Bits received',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374211','83384','1','primary_label','0',E'{{ITEM.NAME}.regsub("^Interface\\s\\[(.+)\\]\\[.*$","\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374212','83384','0','primary_label_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374213','83384','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374214','83384','1','reference','0','IFTBR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374215','83384','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374216','83384','1','secondary_label_units','0','bps',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374217','83384','1','thresholds.0.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374218','83384','1','thresholds.0.threshold','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374219','83385','1','items.0','0','Interface*: Bits sent',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374220','83385','1','primary_label','0',E'{{ITEM.NAME}.regsub("^Interface\\s\\[(.+)\\]\\[.*$","\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374221','83385','0','primary_label_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374222','83385','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374223','83385','1','reference','0','IFTBS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374224','83385','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374225','83385','1','secondary_label_units','0','bps',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374226','83385','1','thresholds.0.color','0','00A2E5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374227','83385','1','thresholds.0.threshold','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374228','83386','1','ds.0.color.0','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374229','83386','1','ds.0.color.1','0','00A2E5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374230','83386','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374231','83386','1','ds.0.itemids.0._reference','0','IFTBR._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374232','83386','1','ds.0.itemids.1._reference','0','IFTBS._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374233','83386','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374234','83386','1','reference','0','IFTGR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374235','83386','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374236','83387','1','items.0','0','Interface*: Operational status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374237','83387','1','primary_label','0',E'{{ITEM.NAME}.regsub("^Interface\\s\\[(.+)\\]\\[.*$","\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374238','83387','0','primary_label_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374239','83387','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374240','83387','1','reference','0','IFEST',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374241','83387','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374242','83387','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374243','83387','1','thresholds.0.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374244','83387','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374245','83387','1','thresholds.1.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374246','83387','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374247','83387','1','thresholds.2.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374248','83387','1','thresholds.2.threshold','0','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374249','83387','1','thresholds.3.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374250','83387','1','thresholds.3.threshold','0','5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374251','83387','1','thresholds.4.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374252','83387','1','thresholds.4.threshold','0','6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374253','83387','1','thresholds.5.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374254','83387','1','thresholds.5.threshold','0','7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374255','83388','1','items.0','0','Interface*: Inbound packets with errors',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374256','83388','1','primary_label','0',E'{{ITEM.NAME}.regsub("^Interface\\s\\[(.+)\\]\\[.*$","\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374257','83388','0','primary_label_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374258','83388','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374259','83388','1','reference','0','IFEIE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374260','83388','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374261','83388','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374262','83388','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374263','83388','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374264','83389','1','items.0','0','Interface*: Outbound packets with errors',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374265','83389','1','primary_label','0',E'{{ITEM.NAME}.regsub("^Interface\\s\\[(.+)\\]\\[.*$","\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374266','83389','0','primary_label_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374267','83389','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374268','83389','1','reference','0','IFEOE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374269','83389','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374270','83389','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374271','83389','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374272','83389','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374273','83390','1','ds.0.color.0','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374274','83390','1','ds.0.color.1','0','00A2E5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374275','83390','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374276','83390','1','ds.0.itemids.0._reference','0','IFEIE._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374277','83390','1','ds.0.itemids.1._reference','0','IFEOE._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374278','83390','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374279','83390','1','reference','0','IFEGR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374280','83390','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374281','83391','1','items.0','0','Interface*: Operational status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374282','83391','1','primary_label','0',E'{{ITEM.NAME}.regsub("^Interface\\s\\[(.+)\\]\\[.*$","\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374283','83391','0','primary_label_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374284','83391','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374285','83391','1','reference','0','IFDST',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374286','83391','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374287','83391','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374288','83391','1','thresholds.0.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374289','83391','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374290','83391','1','thresholds.1.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374291','83391','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374292','83391','1','thresholds.2.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374293','83391','1','thresholds.2.threshold','0','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374294','83391','1','thresholds.3.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374295','83391','1','thresholds.3.threshold','0','5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374296','83391','1','thresholds.4.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374297','83391','1','thresholds.4.threshold','0','6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374298','83391','1','thresholds.5.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374299','83391','1','thresholds.5.threshold','0','7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374300','83392','1','items.0','0','Interface*: Inbound packets discarded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374301','83392','1','primary_label','0',E'{{ITEM.NAME}.regsub("^Interface\\s\\[(.+)\\]\\[.*$","\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374302','83392','0','primary_label_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374303','83392','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374304','83392','1','reference','0','IFDID',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374305','83392','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374306','83392','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374307','83392','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374308','83392','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374309','83393','1','items.0','0','Interface*: Outbound packets discarded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374310','83393','1','primary_label','0',E'{{ITEM.NAME}.regsub("^Interface\\s\\[(.+)\\]\\[.*$","\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374311','83393','0','primary_label_size','25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374312','83393','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374313','83393','1','reference','0','IFDOD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374314','83393','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374315','83393','0','secondary_label_units_show','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374316','83393','1','thresholds.0.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374317','83393','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374318','83394','1','ds.0.color.0','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374319','83394','1','ds.0.color.1','0','00A2E5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374320','83394','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374321','83394','1','ds.0.itemids.0._reference','0','IFDID._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374322','83394','1','ds.0.itemids.1._reference','0','IFDOD._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374323','83394','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374324','83394','1','reference','0','IFDGR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374325','83394','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374326','83395','1','items.0','0','Storage*: Storage utilization, %',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374327','83395','1','primary_label','0',E'{{ITEM.NAME}.regsub("^Storage\\s\\[(.+)\\].*$","\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374328','83395','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374329','83395','1','reference','0','STOUT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374330','83395','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374331','83395','1','secondary_label_units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374332','83395','1','thresholds.0.color','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374333','83395','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374334','83395','1','thresholds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374335','83395','1','thresholds.1.threshold','0','80',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374336','83395','1','thresholds.2.color','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374337','83395','1','thresholds.2.threshold','0','95',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374338','83396','1','items.0','0','Storage*: Total size',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374339','83396','1','primary_label','0',E'{{ITEM.NAME}.regsub("^Storage\\s\\[(.+)\\].*$","\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374340','83396','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374341','83396','1','reference','0','STOTS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374342','83396','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374343','83396','1','secondary_label_units','0','b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374344','83397','1','items.0','0','Storage*: Used size',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374345','83397','1','primary_label','0',E'{{ITEM.NAME}.regsub("^Storage\\s\\[(.+)\\].*$","\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374346','83397','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374347','83397','1','reference','0','STOUS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374348','83397','0','secondary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374349','83397','1','secondary_label_units','0','b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374350','83398','1','ds.0.color.0','0','0EC9AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374351','83398','1','ds.0.color.1','0','00A2E5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374352','83398','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374353','83398','1','ds.0.itemids.0._reference','0','STOTS._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374354','83398','1','ds.0.itemids.1._reference','0','STOUS._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374355','83398','0','ds.0.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374356','83398','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374357','83398','0','ds.1.axisy','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374358','83398','1','ds.1.color.0','0','FF465C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374359','83398','0','ds.1.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374360','83398','1','ds.1.itemids.0._reference','0','STOUT._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374361','83398','0','ds.1.missingdatafunc','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374362','83398','0','ds.1.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374363','83398','1','lefty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374364','83398','1','reference','0','STOGR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374365','83398','0','righty','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374366','83398','1','righty_max','0','100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374367','83398','1','righty_min','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374368','83398','0','working_time','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374369','83399','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374370','83399','7','graphid.0','0','',NULL,NULL,NULL,'1702',NULL,NULL,NULL,NULL,NULL,NULL), ('374371','83399','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374372','83399','0','rows','4','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374373','83400','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374374','83400','7','graphid.0','0','',NULL,NULL,NULL,'1706',NULL,NULL,NULL,NULL,NULL,NULL), ('374375','83400','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374376','83400','0','rows','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374377','83401','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374378','83401','7','graphid.0','0','',NULL,NULL,NULL,'1714',NULL,NULL,NULL,NULL,NULL,NULL), ('374379','83401','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374380','83401','0','rows','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374381','83402','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374382','83402','7','graphid.0','0','',NULL,NULL,NULL,'1726',NULL,NULL,NULL,NULL,NULL,NULL), ('374383','83402','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374384','83402','0','rows','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374385','83403','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374386','83403','7','graphid.0','0','',NULL,NULL,NULL,'1737',NULL,NULL,NULL,NULL,NULL,NULL), ('374387','83403','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374388','83403','0','rows','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374389','83404','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374390','83404','7','graphid.0','0','',NULL,NULL,NULL,'1743',NULL,NULL,NULL,NULL,NULL,NULL), ('374391','83404','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374392','83404','0','rows','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374393','83405','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374394','83405','7','graphid.0','0','',NULL,NULL,NULL,'1747',NULL,NULL,NULL,NULL,NULL,NULL), ('374395','83405','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374396','83405','0','rows','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374397','83406','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374398','83406','7','graphid.0','0','',NULL,NULL,NULL,'1752',NULL,NULL,NULL,NULL,NULL,NULL), ('374399','83406','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374400','83406','0','rows','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374401','83407','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374402','83407','7','graphid.0','0','',NULL,NULL,NULL,'1759',NULL,NULL,NULL,NULL,NULL,NULL), ('374403','83407','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374404','83407','0','rows','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374405','83408','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374406','83408','7','graphid.0','0','',NULL,NULL,NULL,'1767',NULL,NULL,NULL,NULL,NULL,NULL), ('374407','83408','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374408','83408','0','rows','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374409','83409','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374410','83409','7','graphid.0','0','',NULL,NULL,NULL,'1775',NULL,NULL,NULL,NULL,NULL,NULL), ('374411','83409','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374412','83409','0','rows','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374413','83410','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374414','83410','7','graphid.0','0','',NULL,NULL,NULL,'1783',NULL,NULL,NULL,NULL,NULL,NULL), ('374415','83410','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374416','83410','0','rows','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374417','83411','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374418','83411','7','graphid.0','0','',NULL,NULL,NULL,'1791',NULL,NULL,NULL,NULL,NULL,NULL), ('374419','83411','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374420','83411','0','rows','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374421','83412','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374422','83412','7','graphid.0','0','',NULL,NULL,NULL,'1799',NULL,NULL,NULL,NULL,NULL,NULL), ('374423','83412','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374424','83412','0','rows','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374425','83413','0','columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374426','83413','7','graphid.0','0','',NULL,NULL,NULL,'2768',NULL,NULL,NULL,NULL,NULL,NULL), ('374427','83413','1','reference','0','AAAEB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374428','83414','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374429','83414','7','graphid.0','0','',NULL,NULL,NULL,'2767',NULL,NULL,NULL,NULL,NULL,NULL), ('374430','83414','1','reference','0','AAAEC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374431','83415','6','graphid.0','0','',NULL,NULL,NULL,'469',NULL,NULL,NULL,NULL,NULL,NULL), ('374432','83415','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374433','83416','6','graphid.0','0','',NULL,NULL,NULL,'498',NULL,NULL,NULL,NULL,NULL,NULL), ('374434','83416','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374435','83417','0','columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374436','83417','7','graphid.0','0','',NULL,NULL,NULL,'2768',NULL,NULL,NULL,NULL,NULL,NULL), ('374437','83417','1','reference','0','AAAEA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374438','83418','6','graphid.0','0','',NULL,NULL,NULL,'471',NULL,NULL,NULL,NULL,NULL,NULL), ('374439','83418','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374440','83419','6','graphid.0','0','',NULL,NULL,NULL,'540',NULL,NULL,NULL,NULL,NULL,NULL), ('374441','83419','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374442','83420','0','columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374443','83420','7','graphid.0','0','',NULL,NULL,NULL,'2770',NULL,NULL,NULL,NULL,NULL,NULL), ('374444','83420','1','reference','0','AAAEB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374445','83421','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374446','83421','7','graphid.0','0','',NULL,NULL,NULL,'2769',NULL,NULL,NULL,NULL,NULL,NULL), ('374447','83421','1','reference','0','AAAEC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374448','83422','6','graphid.0','0','',NULL,NULL,NULL,'463',NULL,NULL,NULL,NULL,NULL,NULL), ('374449','83422','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374450','83423','6','graphid.0','0','',NULL,NULL,NULL,'541',NULL,NULL,NULL,NULL,NULL,NULL), ('374451','83423','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374452','83424','0','columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374453','83424','7','graphid.0','0','',NULL,NULL,NULL,'2770',NULL,NULL,NULL,NULL,NULL,NULL), ('374454','83424','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374455','83425','6','graphid.0','0','',NULL,NULL,NULL,'462',NULL,NULL,NULL,NULL,NULL,NULL), ('374456','83425','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374457','83426','6','graphid.0','0','',NULL,NULL,NULL,'464',NULL,NULL,NULL,NULL,NULL,NULL), ('374458','83426','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374459','83427','0','columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374460','83427','7','graphid.0','0','',NULL,NULL,NULL,'2772',NULL,NULL,NULL,NULL,NULL,NULL), ('374461','83427','1','reference','0','AAAEB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374462','83428','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374463','83428','7','graphid.0','0','',NULL,NULL,NULL,'2771',NULL,NULL,NULL,NULL,NULL,NULL), ('374464','83428','1','reference','0','AAAEC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374465','83429','6','graphid.0','0','',NULL,NULL,NULL,'475',NULL,NULL,NULL,NULL,NULL,NULL), ('374466','83429','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374467','83430','6','graphid.0','0','',NULL,NULL,NULL,'542',NULL,NULL,NULL,NULL,NULL,NULL), ('374468','83430','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374469','83431','0','columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374470','83431','7','graphid.0','0','',NULL,NULL,NULL,'2772',NULL,NULL,NULL,NULL,NULL,NULL), ('374471','83431','1','reference','0','AAAEA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374472','83432','6','graphid.0','0','',NULL,NULL,NULL,'474',NULL,NULL,NULL,NULL,NULL,NULL), ('374473','83432','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374474','83433','0','columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374475','83433','7','graphid.0','0','',NULL,NULL,NULL,'2774',NULL,NULL,NULL,NULL,NULL,NULL), ('374476','83433','1','reference','0','AAAEB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374477','83434','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374478','83434','7','graphid.0','0','',NULL,NULL,NULL,'2773',NULL,NULL,NULL,NULL,NULL,NULL), ('374479','83434','1','reference','0','AAAEC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374480','83435','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374481','83435','7','graphid.0','0','',NULL,NULL,NULL,'2212',NULL,NULL,NULL,NULL,NULL,NULL), ('374482','83435','1','reference','0','AAAAJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374483','83436','6','graphid.0','0','',NULL,NULL,NULL,'2229',NULL,NULL,NULL,NULL,NULL,NULL), ('374484','83436','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374485','83437','6','graphid.0','0','',NULL,NULL,NULL,'2225',NULL,NULL,NULL,NULL,NULL,NULL), ('374486','83437','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374487','83438','0','columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374488','83438','7','graphid.0','0','',NULL,NULL,NULL,'2774',NULL,NULL,NULL,NULL,NULL,NULL), ('374489','83438','1','reference','0','AAAEA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374490','83439','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374491','83439','7','graphid.0','0','',NULL,NULL,NULL,'2214',NULL,NULL,NULL,NULL,NULL,NULL), ('374492','83439','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374493','83440','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374494','83440','7','graphid.0','0','',NULL,NULL,NULL,'2213',NULL,NULL,NULL,NULL,NULL,NULL), ('374495','83440','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374496','83441','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374497','83441','7','graphid.0','0','',NULL,NULL,NULL,'2215',NULL,NULL,NULL,NULL,NULL,NULL), ('374498','83441','1','reference','0','AAAAH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374499','83442','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374500','83442','7','graphid.0','0','',NULL,NULL,NULL,'2212',NULL,NULL,NULL,NULL,NULL,NULL), ('374501','83442','1','reference','0','AAAAI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374502','83443','6','graphid.0','0','',NULL,NULL,NULL,'2223',NULL,NULL,NULL,NULL,NULL,NULL), ('374503','83443','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374504','83444','6','graphid.0','0','',NULL,NULL,NULL,'2228',NULL,NULL,NULL,NULL,NULL,NULL), ('374505','83444','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374506','83445','0','columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374507','83445','7','graphid.0','0','',NULL,NULL,NULL,'2778',NULL,NULL,NULL,NULL,NULL,NULL), ('374508','83445','1','reference','0','AAAEB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374509','83446','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374510','83446','7','graphid.0','0','',NULL,NULL,NULL,'2777',NULL,NULL,NULL,NULL,NULL,NULL), ('374511','83446','1','reference','0','AAAEC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374512','83447','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374513','83447','7','graphid.0','0','',NULL,NULL,NULL,'2238',NULL,NULL,NULL,NULL,NULL,NULL), ('374514','83447','1','reference','0','AAAAJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374515','83448','6','graphid.0','0','',NULL,NULL,NULL,'2250',NULL,NULL,NULL,NULL,NULL,NULL), ('374516','83448','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374517','83449','6','graphid.0','0','',NULL,NULL,NULL,'2246',NULL,NULL,NULL,NULL,NULL,NULL), ('374518','83449','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374519','83450','0','columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374520','83450','7','graphid.0','0','',NULL,NULL,NULL,'2778',NULL,NULL,NULL,NULL,NULL,NULL), ('374521','83450','1','reference','0','AAAEA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374522','83451','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374523','83451','7','graphid.0','0','',NULL,NULL,NULL,'2240',NULL,NULL,NULL,NULL,NULL,NULL), ('374524','83451','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374525','83452','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374526','83452','7','graphid.0','0','',NULL,NULL,NULL,'2239',NULL,NULL,NULL,NULL,NULL,NULL), ('374527','83452','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374528','83453','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374529','83453','7','graphid.0','0','',NULL,NULL,NULL,'2241',NULL,NULL,NULL,NULL,NULL,NULL), ('374530','83453','1','reference','0','AAAAH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374531','83454','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374532','83454','7','graphid.0','0','',NULL,NULL,NULL,'2238',NULL,NULL,NULL,NULL,NULL,NULL), ('374533','83454','1','reference','0','AAAAI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374534','83455','6','graphid.0','0','',NULL,NULL,NULL,'2244',NULL,NULL,NULL,NULL,NULL,NULL), ('374535','83455','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374536','83456','6','graphid.0','0','',NULL,NULL,NULL,'2249',NULL,NULL,NULL,NULL,NULL,NULL), ('374537','83456','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374538','83457','0','columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374539','83457','7','graphid.0','0','',NULL,NULL,NULL,'2780',NULL,NULL,NULL,NULL,NULL,NULL), ('374540','83457','1','reference','0','AAAEB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374541','83458','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374542','83458','7','graphid.0','0','',NULL,NULL,NULL,'2779',NULL,NULL,NULL,NULL,NULL,NULL), ('374543','83458','1','reference','0','AAAEC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374544','83459','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374545','83459','7','graphid.0','0','',NULL,NULL,NULL,'952',NULL,NULL,NULL,NULL,NULL,NULL), ('374546','83459','1','reference','0','AAAAJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374547','83460','6','graphid.0','0','',NULL,NULL,NULL,'957',NULL,NULL,NULL,NULL,NULL,NULL), ('374548','83460','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374549','83461','6','graphid.0','0','',NULL,NULL,NULL,'962',NULL,NULL,NULL,NULL,NULL,NULL), ('374550','83461','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374551','83462','0','columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374552','83462','7','graphid.0','0','',NULL,NULL,NULL,'2780',NULL,NULL,NULL,NULL,NULL,NULL), ('374553','83462','1','reference','0','AAAEA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374554','83463','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374555','83463','7','graphid.0','0','',NULL,NULL,NULL,'954',NULL,NULL,NULL,NULL,NULL,NULL), ('374556','83463','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374557','83464','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374558','83464','7','graphid.0','0','',NULL,NULL,NULL,'955',NULL,NULL,NULL,NULL,NULL,NULL), ('374559','83464','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374560','83465','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374561','83465','7','graphid.0','0','',NULL,NULL,NULL,'956',NULL,NULL,NULL,NULL,NULL,NULL), ('374562','83465','1','reference','0','AAAAH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374563','83466','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374564','83466','7','graphid.0','0','',NULL,NULL,NULL,'952',NULL,NULL,NULL,NULL,NULL,NULL), ('374565','83466','1','reference','0','AAAAI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374566','83467','6','graphid.0','0','',NULL,NULL,NULL,'959',NULL,NULL,NULL,NULL,NULL,NULL), ('374567','83467','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374568','83468','6','graphid.0','0','',NULL,NULL,NULL,'963',NULL,NULL,NULL,NULL,NULL,NULL), ('374569','83468','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374570','83469','0','columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374571','83469','7','graphid.0','0','',NULL,NULL,NULL,'2782',NULL,NULL,NULL,NULL,NULL,NULL), ('374572','83469','1','reference','0','AAAEB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374573','83470','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374574','83470','7','graphid.0','0','',NULL,NULL,NULL,'2781',NULL,NULL,NULL,NULL,NULL,NULL), ('374575','83470','1','reference','0','AAAEC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374576','83471','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374577','83471','7','graphid.0','0','',NULL,NULL,NULL,'2253',NULL,NULL,NULL,NULL,NULL,NULL), ('374578','83471','1','reference','0','AAAAI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374579','83472','6','graphid.0','0','',NULL,NULL,NULL,'2260',NULL,NULL,NULL,NULL,NULL,NULL), ('374580','83472','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374581','83473','6','graphid.0','0','',NULL,NULL,NULL,'2257',NULL,NULL,NULL,NULL,NULL,NULL), ('374582','83473','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374583','83474','0','columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374584','83474','7','graphid.0','0','',NULL,NULL,NULL,'2782',NULL,NULL,NULL,NULL,NULL,NULL), ('374585','83474','1','reference','0','AAAEA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374586','83475','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374587','83475','7','graphid.0','0','',NULL,NULL,NULL,'2254',NULL,NULL,NULL,NULL,NULL,NULL), ('374588','83475','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374589','83476','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374590','83476','5','itemid.0','0','',NULL,NULL,'42436',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374591','83476','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374592','83476','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374593','83477','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374594','83477','7','graphid.0','0','',NULL,NULL,NULL,'2253',NULL,NULL,NULL,NULL,NULL,NULL), ('374595','83477','1','reference','0','AAAAH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374596','83478','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374597','83478','7','graphid.0','0','',NULL,NULL,NULL,'2251',NULL,NULL,NULL,NULL,NULL,NULL), ('374598','83478','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374599','83479','6','graphid.0','0','',NULL,NULL,NULL,'2259',NULL,NULL,NULL,NULL,NULL,NULL), ('374600','83479','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374601','83480','0','columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374602','83480','7','graphid.0','0','',NULL,NULL,NULL,'2784',NULL,NULL,NULL,NULL,NULL,NULL), ('374603','83480','1','reference','0','AAAEB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374604','83481','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374605','83481','7','graphid.0','0','',NULL,NULL,NULL,'2783',NULL,NULL,NULL,NULL,NULL,NULL), ('374606','83481','1','reference','0','AAAEC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374607','83482','6','graphid.0','0','',NULL,NULL,NULL,'487',NULL,NULL,NULL,NULL,NULL,NULL), ('374608','83482','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374609','83483','6','graphid.0','0','',NULL,NULL,NULL,'543',NULL,NULL,NULL,NULL,NULL,NULL), ('374610','83483','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374611','83484','0','columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374612','83484','7','graphid.0','0','',NULL,NULL,NULL,'2784',NULL,NULL,NULL,NULL,NULL,NULL), ('374613','83484','1','reference','0','AAAEA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374614','83485','0','columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374615','83485','7','graphid.0','0','',NULL,NULL,NULL,'2786',NULL,NULL,NULL,NULL,NULL,NULL), ('374616','83485','1','reference','0','AAAEB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374617','83486','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374618','83486','7','graphid.0','0','',NULL,NULL,NULL,'2785',NULL,NULL,NULL,NULL,NULL,NULL), ('374619','83486','1','reference','0','AAAEC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374620','83487','6','graphid.0','0','',NULL,NULL,NULL,'457',NULL,NULL,NULL,NULL,NULL,NULL), ('374621','83487','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374622','83488','6','graphid.0','0','',NULL,NULL,NULL,'544',NULL,NULL,NULL,NULL,NULL,NULL), ('374623','83488','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374624','83489','0','columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374625','83489','7','graphid.0','0','',NULL,NULL,NULL,'2786',NULL,NULL,NULL,NULL,NULL,NULL), ('374626','83489','1','reference','0','AAAEA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374627','83490','6','graphid.0','0','',NULL,NULL,NULL,'456',NULL,NULL,NULL,NULL,NULL,NULL), ('374628','83490','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374629','83491','6','graphid.0','0','',NULL,NULL,NULL,'458',NULL,NULL,NULL,NULL,NULL,NULL), ('374630','83491','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374631','83492','0','columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374632','83492','7','graphid.0','0','',NULL,NULL,NULL,'2788',NULL,NULL,NULL,NULL,NULL,NULL), ('374633','83492','1','reference','0','AAAEB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374634','83493','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374635','83493','7','graphid.0','0','',NULL,NULL,NULL,'2787',NULL,NULL,NULL,NULL,NULL,NULL), ('374636','83493','1','reference','0','AAAEC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374637','83494','6','graphid.0','0','',NULL,NULL,NULL,'481',NULL,NULL,NULL,NULL,NULL,NULL), ('374638','83494','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374639','83495','6','graphid.0','0','',NULL,NULL,NULL,'545',NULL,NULL,NULL,NULL,NULL,NULL), ('374640','83495','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374641','83496','0','columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374642','83496','7','graphid.0','0','',NULL,NULL,NULL,'2788',NULL,NULL,NULL,NULL,NULL,NULL), ('374643','83496','1','reference','0','AAAEA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374644','83497','4','itemid.0','0','',NULL,NULL,'22998',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374645','83497','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374646','83497','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374647','83498','6','graphid.0','0','',NULL,NULL,NULL,'480',NULL,NULL,NULL,NULL,NULL,NULL), ('374648','83498','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374649','83499','6','graphid.0','0','',NULL,NULL,NULL,'482',NULL,NULL,NULL,NULL,NULL,NULL), ('374650','83499','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374651','83500','4','itemid.0','0','',NULL,NULL,'22997',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374652','83500','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374653','83500','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374654','83501','0','columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374655','83501','7','graphid.0','0','',NULL,NULL,NULL,'2266',NULL,NULL,NULL,NULL,NULL,NULL), ('374656','83501','1','reference','0','AAAEB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374657','83502','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374658','83502','7','graphid.0','0','',NULL,NULL,NULL,'2789',NULL,NULL,NULL,NULL,NULL,NULL), ('374659','83502','1','reference','0','AAAEC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374660','83503','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374661','83503','7','graphid.0','0','',NULL,NULL,NULL,'2261',NULL,NULL,NULL,NULL,NULL,NULL), ('374662','83503','1','reference','0','AAAAI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374663','83504','6','graphid.0','0','',NULL,NULL,NULL,'2268',NULL,NULL,NULL,NULL,NULL,NULL), ('374664','83504','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374665','83505','6','graphid.0','0','',NULL,NULL,NULL,'2270',NULL,NULL,NULL,NULL,NULL,NULL), ('374666','83505','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374667','83506','0','columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374668','83506','7','graphid.0','0','',NULL,NULL,NULL,'2266',NULL,NULL,NULL,NULL,NULL,NULL), ('374669','83506','1','reference','0','AAAEA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374670','83507','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374671','83507','7','graphid.0','0','',NULL,NULL,NULL,'2264',NULL,NULL,NULL,NULL,NULL,NULL), ('374672','83507','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374673','83508','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374674','83508','7','graphid.0','0','',NULL,NULL,NULL,'2265',NULL,NULL,NULL,NULL,NULL,NULL), ('374675','83508','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374676','83509','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374677','83509','7','graphid.0','0','',NULL,NULL,NULL,'2261',NULL,NULL,NULL,NULL,NULL,NULL), ('374678','83509','1','reference','0','AAAAH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374679','83510','4','itemid.0','0','',NULL,NULL,'42472',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374680','83510','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374681','83510','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374682','83511','6','graphid.0','0','',NULL,NULL,NULL,'2271',NULL,NULL,NULL,NULL,NULL,NULL), ('374683','83511','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374684','83512','0','columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374685','83512','7','graphid.0','0','',NULL,NULL,NULL,'2277',NULL,NULL,NULL,NULL,NULL,NULL), ('374686','83512','1','reference','0','AAAEB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374687','83513','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374688','83513','7','graphid.0','0','',NULL,NULL,NULL,'2790',NULL,NULL,NULL,NULL,NULL,NULL), ('374689','83513','1','reference','0','AAAEC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374690','83514','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374691','83514','7','graphid.0','0','',NULL,NULL,NULL,'2272',NULL,NULL,NULL,NULL,NULL,NULL), ('374692','83514','1','reference','0','AAAAI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374693','83515','6','graphid.0','0','',NULL,NULL,NULL,'2279',NULL,NULL,NULL,NULL,NULL,NULL), ('374694','83515','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374695','83516','6','graphid.0','0','',NULL,NULL,NULL,'2281',NULL,NULL,NULL,NULL,NULL,NULL), ('374696','83516','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374697','83517','0','columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374698','83517','7','graphid.0','0','',NULL,NULL,NULL,'2277',NULL,NULL,NULL,NULL,NULL,NULL), ('374699','83517','1','reference','0','AAAEA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374700','83518','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374701','83518','7','graphid.0','0','',NULL,NULL,NULL,'2275',NULL,NULL,NULL,NULL,NULL,NULL), ('374702','83518','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374703','83519','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374704','83519','7','graphid.0','0','',NULL,NULL,NULL,'2276',NULL,NULL,NULL,NULL,NULL,NULL), ('374705','83519','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374706','83520','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374707','83520','7','graphid.0','0','',NULL,NULL,NULL,'2272',NULL,NULL,NULL,NULL,NULL,NULL), ('374708','83520','1','reference','0','AAAAH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374709','83521','4','itemid.0','0','',NULL,NULL,'42528',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374710','83521','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374711','83521','0','source_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374712','83522','6','graphid.0','0','',NULL,NULL,NULL,'2282',NULL,NULL,NULL,NULL,NULL,NULL), ('374713','83522','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374714','83523','0','columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374715','83523','7','graphid.0','0','',NULL,NULL,NULL,'2284',NULL,NULL,NULL,NULL,NULL,NULL), ('374716','83523','1','reference','0','AAAEB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374717','83524','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374718','83524','7','graphid.0','0','',NULL,NULL,NULL,'2791',NULL,NULL,NULL,NULL,NULL,NULL), ('374719','83524','1','reference','0','AAAEC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374720','83525','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374721','83525','7','graphid.0','0','',NULL,NULL,NULL,'2283',NULL,NULL,NULL,NULL,NULL,NULL), ('374722','83525','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374723','83526','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374724','83526','7','graphid.0','0','',NULL,NULL,NULL,'2285',NULL,NULL,NULL,NULL,NULL,NULL), ('374725','83526','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374726','83527','0','columns','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374727','83527','7','graphid.0','0','',NULL,NULL,NULL,'2284',NULL,NULL,NULL,NULL,NULL,NULL), ('374728','83527','1','reference','0','AAAEA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374729','83528','6','graphid.0','0','',NULL,NULL,NULL,'2286',NULL,NULL,NULL,NULL,NULL,NULL), ('374730','83528','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374731','83529','6','graphid.0','0','',NULL,NULL,NULL,'1585',NULL,NULL,NULL,NULL,NULL,NULL), ('374732','83529','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374733','83530','6','graphid.0','0','',NULL,NULL,NULL,'1583',NULL,NULL,NULL,NULL,NULL,NULL), ('374734','83530','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374735','83531','6','graphid.0','0','',NULL,NULL,NULL,'1584',NULL,NULL,NULL,NULL,NULL,NULL), ('374736','83531','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374737','83532','6','graphid.0','0','',NULL,NULL,NULL,'1588',NULL,NULL,NULL,NULL,NULL,NULL), ('374738','83532','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374739','83533','6','graphid.0','0','',NULL,NULL,NULL,'1586',NULL,NULL,NULL,NULL,NULL,NULL), ('374740','83533','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374741','83534','6','graphid.0','0','',NULL,NULL,NULL,'1587',NULL,NULL,NULL,NULL,NULL,NULL), ('374742','83534','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374743','83535','6','graphid.0','0','',NULL,NULL,NULL,'1591',NULL,NULL,NULL,NULL,NULL,NULL), ('374744','83535','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374745','83536','6','graphid.0','0','',NULL,NULL,NULL,'1589',NULL,NULL,NULL,NULL,NULL,NULL), ('374746','83536','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374747','83537','6','graphid.0','0','',NULL,NULL,NULL,'1590',NULL,NULL,NULL,NULL,NULL,NULL), ('374748','83537','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374749','83538','6','graphid.0','0','',NULL,NULL,NULL,'1594',NULL,NULL,NULL,NULL,NULL,NULL), ('374750','83538','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374751','83539','6','graphid.0','0','',NULL,NULL,NULL,'1592',NULL,NULL,NULL,NULL,NULL,NULL), ('374752','83539','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374753','83540','6','graphid.0','0','',NULL,NULL,NULL,'1593',NULL,NULL,NULL,NULL,NULL,NULL), ('374754','83540','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374755','83541','6','graphid.0','0','',NULL,NULL,NULL,'1597',NULL,NULL,NULL,NULL,NULL,NULL), ('374756','83541','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374757','83542','6','graphid.0','0','',NULL,NULL,NULL,'1595',NULL,NULL,NULL,NULL,NULL,NULL), ('374758','83542','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374759','83543','6','graphid.0','0','',NULL,NULL,NULL,'1596',NULL,NULL,NULL,NULL,NULL,NULL), ('374760','83543','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374761','83544','6','graphid.0','0','',NULL,NULL,NULL,'1621',NULL,NULL,NULL,NULL,NULL,NULL), ('374762','83544','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374763','83545','6','graphid.0','0','',NULL,NULL,NULL,'1619',NULL,NULL,NULL,NULL,NULL,NULL), ('374764','83545','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374765','83546','6','graphid.0','0','',NULL,NULL,NULL,'1620',NULL,NULL,NULL,NULL,NULL,NULL), ('374766','83546','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374767','83547','6','graphid.0','0','',NULL,NULL,NULL,'1603',NULL,NULL,NULL,NULL,NULL,NULL), ('374768','83547','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374769','83548','6','graphid.0','0','',NULL,NULL,NULL,'1601',NULL,NULL,NULL,NULL,NULL,NULL), ('374770','83548','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374771','83549','6','graphid.0','0','',NULL,NULL,NULL,'1602',NULL,NULL,NULL,NULL,NULL,NULL), ('374772','83549','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374773','83550','6','graphid.0','0','',NULL,NULL,NULL,'1570',NULL,NULL,NULL,NULL,NULL,NULL), ('374774','83550','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374775','83551','6','graphid.0','0','',NULL,NULL,NULL,'1604',NULL,NULL,NULL,NULL,NULL,NULL), ('374776','83551','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374777','83552','6','graphid.0','0','',NULL,NULL,NULL,'1569',NULL,NULL,NULL,NULL,NULL,NULL), ('374778','83552','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374779','83553','6','graphid.0','0','',NULL,NULL,NULL,'1607',NULL,NULL,NULL,NULL,NULL,NULL), ('374780','83553','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374781','83554','6','graphid.0','0','',NULL,NULL,NULL,'1605',NULL,NULL,NULL,NULL,NULL,NULL), ('374782','83554','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374783','83555','6','graphid.0','0','',NULL,NULL,NULL,'1606',NULL,NULL,NULL,NULL,NULL,NULL), ('374784','83555','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374785','83556','6','graphid.0','0','',NULL,NULL,NULL,'1610',NULL,NULL,NULL,NULL,NULL,NULL), ('374786','83556','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374787','83557','6','graphid.0','0','',NULL,NULL,NULL,'1608',NULL,NULL,NULL,NULL,NULL,NULL), ('374788','83557','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374789','83558','6','graphid.0','0','',NULL,NULL,NULL,'1609',NULL,NULL,NULL,NULL,NULL,NULL), ('374790','83558','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374791','83559','6','graphid.0','0','',NULL,NULL,NULL,'1613',NULL,NULL,NULL,NULL,NULL,NULL), ('374792','83559','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374793','83560','6','graphid.0','0','',NULL,NULL,NULL,'1611',NULL,NULL,NULL,NULL,NULL,NULL), ('374794','83560','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374795','83561','6','graphid.0','0','',NULL,NULL,NULL,'1612',NULL,NULL,NULL,NULL,NULL,NULL), ('374796','83561','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374797','83562','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374798','83562','7','graphid.0','0','',NULL,NULL,NULL,'2356',NULL,NULL,NULL,NULL,NULL,NULL), ('374799','83562','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374800','83563','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374801','83563','7','graphid.0','0','',NULL,NULL,NULL,'2357',NULL,NULL,NULL,NULL,NULL,NULL), ('374802','83563','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374803','83564','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374804','83564','7','graphid.0','0','',NULL,NULL,NULL,'2358',NULL,NULL,NULL,NULL,NULL,NULL), ('374805','83564','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374806','83565','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374807','83565','7','graphid.0','0','',NULL,NULL,NULL,'2359',NULL,NULL,NULL,NULL,NULL,NULL), ('374808','83565','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374809','83566','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374810','83566','7','graphid.0','0','',NULL,NULL,NULL,'2360',NULL,NULL,NULL,NULL,NULL,NULL), ('374811','83566','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374812','83567','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374813','83567','7','graphid.0','0','',NULL,NULL,NULL,'2361',NULL,NULL,NULL,NULL,NULL,NULL), ('374814','83567','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374815','83568','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374816','83568','7','graphid.0','0','',NULL,NULL,NULL,'2362',NULL,NULL,NULL,NULL,NULL,NULL), ('374817','83568','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374818','83569','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374819','83569','7','graphid.0','0','',NULL,NULL,NULL,'2363',NULL,NULL,NULL,NULL,NULL,NULL), ('374820','83569','1','reference','0','AAAAH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374821','83570','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374822','83570','7','graphid.0','0','',NULL,NULL,NULL,'2364',NULL,NULL,NULL,NULL,NULL,NULL), ('374823','83570','1','reference','0','AAAAI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374824','83571','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374825','83571','7','graphid.0','0','',NULL,NULL,NULL,'2365',NULL,NULL,NULL,NULL,NULL,NULL), ('374826','83571','1','reference','0','AAAAJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374827','83572','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374828','83572','7','graphid.0','0','',NULL,NULL,NULL,'2366',NULL,NULL,NULL,NULL,NULL,NULL), ('374829','83572','1','reference','0','AAAAK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374830','83573','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374831','83573','7','graphid.0','0','',NULL,NULL,NULL,'2367',NULL,NULL,NULL,NULL,NULL,NULL), ('374832','83573','1','reference','0','AAAAL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374833','83574','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374834','83574','7','graphid.0','0','',NULL,NULL,NULL,'2368',NULL,NULL,NULL,NULL,NULL,NULL), ('374835','83574','1','reference','0','AAAAM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374836','83575','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374837','83575','7','graphid.0','0','',NULL,NULL,NULL,'2369',NULL,NULL,NULL,NULL,NULL,NULL), ('374838','83575','1','reference','0','AAAAN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374839','83576','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374840','83576','7','graphid.0','0','',NULL,NULL,NULL,'2370',NULL,NULL,NULL,NULL,NULL,NULL), ('374841','83576','1','reference','0','AAAAO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374842','83577','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374843','83577','7','graphid.0','0','',NULL,NULL,NULL,'2371',NULL,NULL,NULL,NULL,NULL,NULL), ('374844','83577','1','reference','0','AAAAP',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374845','83578','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374846','83578','7','graphid.0','0','',NULL,NULL,NULL,'2372',NULL,NULL,NULL,NULL,NULL,NULL), ('374847','83578','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374848','83579','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374849','83579','7','graphid.0','0','',NULL,NULL,NULL,'2373',NULL,NULL,NULL,NULL,NULL,NULL), ('374850','83579','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374851','83580','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374852','83580','7','graphid.0','0','',NULL,NULL,NULL,'2374',NULL,NULL,NULL,NULL,NULL,NULL), ('374853','83580','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374854','83581','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374855','83581','7','graphid.0','0','',NULL,NULL,NULL,'2375',NULL,NULL,NULL,NULL,NULL,NULL), ('374856','83581','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374857','83582','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374858','83582','7','graphid.0','0','',NULL,NULL,NULL,'2376',NULL,NULL,NULL,NULL,NULL,NULL), ('374859','83582','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374860','83583','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374861','83583','7','graphid.0','0','',NULL,NULL,NULL,'2377',NULL,NULL,NULL,NULL,NULL,NULL), ('374862','83583','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374863','83584','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374864','83584','7','graphid.0','0','',NULL,NULL,NULL,'2378',NULL,NULL,NULL,NULL,NULL,NULL), ('374865','83584','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374866','83585','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374867','83585','7','graphid.0','0','',NULL,NULL,NULL,'2379',NULL,NULL,NULL,NULL,NULL,NULL), ('374868','83585','1','reference','0','AAAAH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374869','83586','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374870','83586','7','graphid.0','0','',NULL,NULL,NULL,'2380',NULL,NULL,NULL,NULL,NULL,NULL), ('374871','83586','1','reference','0','AAAAI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374872','83587','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374873','83587','7','graphid.0','0','',NULL,NULL,NULL,'2381',NULL,NULL,NULL,NULL,NULL,NULL), ('374874','83587','1','reference','0','AAAAJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374875','83588','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374876','83588','7','graphid.0','0','',NULL,NULL,NULL,'2382',NULL,NULL,NULL,NULL,NULL,NULL), ('374877','83588','1','reference','0','AAAAK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374878','83589','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374879','83589','7','graphid.0','0','',NULL,NULL,NULL,'2383',NULL,NULL,NULL,NULL,NULL,NULL), ('374880','83589','1','reference','0','AAAAL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374881','83590','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374882','83590','7','graphid.0','0','',NULL,NULL,NULL,'2384',NULL,NULL,NULL,NULL,NULL,NULL), ('374883','83590','1','reference','0','AAAAM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374884','83591','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374885','83591','7','graphid.0','0','',NULL,NULL,NULL,'2385',NULL,NULL,NULL,NULL,NULL,NULL), ('374886','83591','1','reference','0','AAAAN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374887','83592','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374888','83592','7','graphid.0','0','',NULL,NULL,NULL,'2386',NULL,NULL,NULL,NULL,NULL,NULL), ('374889','83592','1','reference','0','AAAAO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374890','83593','6','graphid.0','0','',NULL,NULL,NULL,'2398',NULL,NULL,NULL,NULL,NULL,NULL), ('374891','83593','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374892','83594','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374893','83594','7','graphid.0','0','',NULL,NULL,NULL,'2387',NULL,NULL,NULL,NULL,NULL,NULL), ('374894','83594','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374895','83595','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374896','83595','7','graphid.0','0','',NULL,NULL,NULL,'2388',NULL,NULL,NULL,NULL,NULL,NULL), ('374897','83595','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374898','83596','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374899','83596','7','graphid.0','0','',NULL,NULL,NULL,'2389',NULL,NULL,NULL,NULL,NULL,NULL), ('374900','83596','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374901','83597','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374902','83597','7','graphid.0','0','',NULL,NULL,NULL,'2390',NULL,NULL,NULL,NULL,NULL,NULL), ('374903','83597','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374904','83598','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374905','83598','7','graphid.0','0','',NULL,NULL,NULL,'2391',NULL,NULL,NULL,NULL,NULL,NULL), ('374906','83598','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374907','83599','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374908','83599','7','graphid.0','0','',NULL,NULL,NULL,'2392',NULL,NULL,NULL,NULL,NULL,NULL), ('374909','83599','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374910','83600','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374911','83600','7','graphid.0','0','',NULL,NULL,NULL,'2393',NULL,NULL,NULL,NULL,NULL,NULL), ('374912','83600','1','reference','0','AAAAH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374913','83601','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374914','83601','7','graphid.0','0','',NULL,NULL,NULL,'2394',NULL,NULL,NULL,NULL,NULL,NULL), ('374915','83601','1','reference','0','AAAAI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374916','83602','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374917','83602','7','graphid.0','0','',NULL,NULL,NULL,'2395',NULL,NULL,NULL,NULL,NULL,NULL), ('374918','83602','1','reference','0','AAAAJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374919','83603','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374920','83603','7','graphid.0','0','',NULL,NULL,NULL,'2396',NULL,NULL,NULL,NULL,NULL,NULL), ('374921','83603','1','reference','0','AAAAK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374922','83604','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374923','83604','7','graphid.0','0','',NULL,NULL,NULL,'2397',NULL,NULL,NULL,NULL,NULL,NULL), ('374924','83604','1','reference','0','AAAAL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374925','83605','6','graphid.0','0','',NULL,NULL,NULL,'1526',NULL,NULL,NULL,NULL,NULL,NULL), ('374926','83605','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374927','83606','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374928','83606','7','graphid.0','0','',NULL,NULL,NULL,'1518',NULL,NULL,NULL,NULL,NULL,NULL), ('374929','83606','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374930','83607','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374931','83607','7','graphid.0','0','',NULL,NULL,NULL,'1522',NULL,NULL,NULL,NULL,NULL,NULL), ('374932','83607','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374933','83608','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374934','83608','7','graphid.0','0','',NULL,NULL,NULL,'1523',NULL,NULL,NULL,NULL,NULL,NULL), ('374935','83608','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374936','83609','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374937','83609','7','graphid.0','0','',NULL,NULL,NULL,'1524',NULL,NULL,NULL,NULL,NULL,NULL), ('374938','83609','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374939','83610','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374940','83610','7','graphid.0','0','',NULL,NULL,NULL,'1519',NULL,NULL,NULL,NULL,NULL,NULL), ('374941','83610','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374942','83611','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374943','83611','7','graphid.0','0','',NULL,NULL,NULL,'1521',NULL,NULL,NULL,NULL,NULL,NULL), ('374944','83611','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374945','83612','6','graphid.0','0','',NULL,NULL,NULL,'2855',NULL,NULL,NULL,NULL,NULL,NULL), ('374946','83612','1','reference','0','EFDAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374947','83613','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374948','83613','7','graphid.0','0','',NULL,NULL,NULL,'2847',NULL,NULL,NULL,NULL,NULL,NULL), ('374949','83613','1','reference','0','FCBEC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374950','83614','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374951','83614','7','graphid.0','0','',NULL,NULL,NULL,'2851',NULL,NULL,NULL,NULL,NULL,NULL), ('374952','83614','1','reference','0','EABAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374953','83615','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374954','83615','7','graphid.0','0','',NULL,NULL,NULL,'2852',NULL,NULL,NULL,NULL,NULL,NULL), ('374955','83615','1','reference','0','CEFEF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374956','83616','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374957','83616','7','graphid.0','0','',NULL,NULL,NULL,'2853',NULL,NULL,NULL,NULL,NULL,NULL), ('374958','83616','1','reference','0','DEEEA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374959','83617','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374960','83617','7','graphid.0','0','',NULL,NULL,NULL,'2848',NULL,NULL,NULL,NULL,NULL,NULL), ('374961','83617','1','reference','0','BCFDA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374962','83618','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374963','83618','7','graphid.0','0','',NULL,NULL,NULL,'2850',NULL,NULL,NULL,NULL,NULL,NULL), ('374964','83618','1','reference','0','CFFDA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374965','83619','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374966','83619','7','graphid.0','0','',NULL,NULL,NULL,'1496',NULL,NULL,NULL,NULL,NULL,NULL), ('374967','83619','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374968','83620','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374969','83620','7','graphid.0','0','',NULL,NULL,NULL,'1497',NULL,NULL,NULL,NULL,NULL,NULL), ('374970','83620','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374971','83621','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374972','83621','7','graphid.0','0','',NULL,NULL,NULL,'1498',NULL,NULL,NULL,NULL,NULL,NULL), ('374973','83621','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374974','83622','4','itemid.0','0','',NULL,NULL,'49661',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374975','83622','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374976','83623','1','ds.0.color','0','009688',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374977','83623','0','ds.0.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374978','83623','1','ds.0.items.0','0','Array bytes read per second',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374979','83623','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374980','83623','1','ds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374981','83623','0','ds.1.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374982','83623','1','ds.1.items.0','0','Array bytes written per second',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374983','83623','0','ds.1.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374984','83623','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374985','83623','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374986','83623','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374987','83623','1','reference','0','XGKYU',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374988','83623','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374989','83624','1','ds.0.color','0','009688',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374990','83624','0','ds.0.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374991','83624','1','ds.0.items.0','0','Array microseconds per read',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374992','83624','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374993','83624','1','ds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374994','83624','0','ds.1.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374995','83624','1','ds.1.items.0','0','Array microseconds per write',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374996','83624','0','ds.1.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374997','83624','1','ds.2.color','0','F44336',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374998','83624','0','ds.2.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('374999','83624','1','ds.2.items.0','0','Array microseconds per operation',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375000','83624','0','ds.2.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375001','83624','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375002','83624','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375003','83624','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375004','83624','1','reference','0','SSNAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375005','83624','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375006','83625','4','itemid.0','0','',NULL,NULL,'49674',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375007','83625','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375008','83626','1','ds.0.color','0','009688',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375009','83626','0','ds.0.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375010','83626','1','ds.0.items.0','0','Array read requests per second',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375011','83626','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375012','83626','1','ds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375013','83626','0','ds.1.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375014','83626','1','ds.1.items.0','0','Array write requests per second',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375015','83626','0','ds.1.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375016','83626','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375017','83626','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375018','83626','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375019','83626','1','reference','0','NCUID',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375020','83626','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375021','83627','0','ds.0.axisy','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375022','83627','1','ds.0.color','0','009688',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375023','83627','0','ds.0.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375024','83627','1','ds.0.items.0','0','Array capacity',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375025','83627','0','ds.0.width','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375026','83627','1','ds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375027','83627','0','ds.1.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375028','83627','1','ds.1.items.0','0','Array shared space',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375029','83627','0','ds.1.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375030','83627','1','ds.2.color','0','F44336',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375031','83627','0','ds.2.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375032','83627','1','ds.2.items.0','0','Array snapshots size',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375033','83627','0','ds.2.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375034','83627','1','ds.3.color','0','0080FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375035','83627','0','ds.3.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375036','83627','1','ds.3.items.0','0','Array volumes size',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375037','83627','0','ds.3.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375038','83627','1','ds.4.color','0','7E57C2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375039','83627','0','ds.4.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375040','83627','1','ds.4.items.0','0','Array system size',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375041','83627','0','ds.4.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375042','83627','0','legend_lines','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375043','83627','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375044','83627','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375045','83627','1','reference','0','SFPXY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375046','83628','4','itemid.0','0','',NULL,NULL,'49658',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375047','83628','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375048','83629','1','bg_color','0','64B5F6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375049','83629','1','items.0','0','*Speed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375050','83629','0','item_tags.0.operator','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375051','83629','1','item_tags.0.tag','0','component',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375052','83629','1','item_tags.0.value','0','interface',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375053','83629','1','primary_label','0',E'{{ITEM.NAME}.regsub("^.+?\\[(.*)\\]", \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375054','83629','1','reference','0','TZTHI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375055','83629','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375056','83630','1','ds.0.color.0','0','009688',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375057','83630','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375058','83630','1','ds.0.itemids.0._reference','0','TZTHI._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375059','83630','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375060','83630','1','reference','0','ABHBM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375061','83630','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375062','83631','1','bg_color','0','64B5F6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375063','83631','1','items.0','0','*Capacity',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375064','83631','0','item_tags.0.operator','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375065','83631','1','item_tags.0.tag','0','component',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375066','83631','1','item_tags.0.value','0','drive',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375067','83631','1','primary_label','0',E'{{ITEM.NAME}.regsub("^.+?\\[(.*)\\]", \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375068','83631','1','reference','0','YBMRB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375069','83631','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375070','83632','1','ds.0.color.0','0','009688',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375071','83632','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375072','83632','1','ds.0.itemids.0._reference','0','YBMRB._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375073','83632','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375074','83632','1','reference','0','IEDRA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375075','83632','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375076','83633','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375077','83633','7','graphid.0','0','',NULL,NULL,NULL,'3082',NULL,NULL,NULL,NULL,NULL,NULL), ('375078','83633','1','reference','0','AAAAJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375079','83634','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375080','83634','7','graphid.0','0','',NULL,NULL,NULL,'3084',NULL,NULL,NULL,NULL,NULL,NULL), ('375081','83634','1','reference','0','AAAAL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375082','83635','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375083','83635','7','graphid.0','0','',NULL,NULL,NULL,'3083',NULL,NULL,NULL,NULL,NULL,NULL), ('375084','83635','1','reference','0','AAAAK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375085','83636','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375086','83636','7','graphid.0','0','',NULL,NULL,NULL,'3085',NULL,NULL,NULL,NULL,NULL,NULL), ('375087','83636','1','reference','0','AAAAM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375088','83637','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375089','83637','7','graphid.0','0','',NULL,NULL,NULL,'3075',NULL,NULL,NULL,NULL,NULL,NULL), ('375090','83637','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375091','83638','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375092','83638','7','graphid.0','0','',NULL,NULL,NULL,'3077',NULL,NULL,NULL,NULL,NULL,NULL), ('375093','83638','1','reference','0','AAAAH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375094','83639','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375095','83639','7','graphid.0','0','',NULL,NULL,NULL,'3076',NULL,NULL,NULL,NULL,NULL,NULL), ('375096','83639','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375097','83640','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375098','83640','7','graphid.0','0','',NULL,NULL,NULL,'3078',NULL,NULL,NULL,NULL,NULL,NULL), ('375099','83640','1','reference','0','AAAAI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375100','83641','1','items.0','0','*Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375101','83641','0','item_tags.0.operator','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375102','83641','1','item_tags.0.tag','0','component',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375103','83641','1','item_tags.0.value','0','fan',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375104','83641','1','primary_label','0',E'{{ITEM.NAME}.regsub("^.+?\\[(.*)\\]", \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375105','83641','1','reference','0','YQLGC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375106','83641','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375107','83641','1','thresholds.0.color','0','26A69A',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375108','83641','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375109','83641','1','thresholds.1.color','0','E65660',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375110','83641','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375111','83641','1','thresholds.2.color','0','FCCB1D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375112','83641','1','thresholds.2.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375113','83641','1','thresholds.3.color','0','90A4AE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375114','83641','1','thresholds.3.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375115','83641','1','thresholds.4.color','0','29B6F6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375116','83641','1','thresholds.4.threshold','0','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375117','83641','1','thresholds.5.color','0','546E7A',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375118','83641','1','thresholds.5.threshold','0','5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375119','83642','1','items.0','0','*Temperature',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375120','83642','0','item_tags.0.operator','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375121','83642','1','item_tags.0.tag','0','component',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375122','83642','1','item_tags.0.value','0','sensor',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375123','83642','1','primary_label','0',E'{{ITEM.NAME}.regsub("^.+?\\[(.*)\\]", \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375124','83642','1','reference','0','EOKHA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375125','83642','0','secondary_label_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375126','83642','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375127','83642','1','thresholds.0.color','0','26A69A',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375128','83642','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375129','83642','1','thresholds.1.color','0','FFCA28',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375130','83642','1','thresholds.1.threshold','0','50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375131','83642','1','thresholds.2.color','0','E65660',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375132','83642','1','thresholds.2.threshold','0','70',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375133','83643','1','ds.0.color.0','0','009688',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375134','83643','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375135','83643','1','ds.0.itemids.0._reference','0','EOKHA._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375136','83643','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375137','83643','1','reference','0','FDGJA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375138','83643','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375139','83644','1','bg_color','0','64B5F6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375140','83644','1','items.0','0','*Voltage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375141','83644','0','item_tags.0.operator','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375142','83644','1','item_tags.0.tag','0','component',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375143','83644','1','item_tags.0.value','0','power',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375144','83644','1','primary_label','0',E'{{ITEM.NAME}.regsub("^.+?\\[(.*)\\]", \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375145','83644','1','reference','0','MZNPS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375146','83644','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375147','83645','1','ds.0.color.0','0','009688',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375148','83645','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375149','83645','1','ds.0.itemids.0._reference','0','MZNPS._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375150','83645','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375151','83645','1','reference','0','NGVAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375152','83645','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375153','83646','4','itemid.0','0','',NULL,NULL,'49692',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375154','83646','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375155','83647','1','ds.0.color','0','009688',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375156','83647','0','ds.0.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375157','83647','1','ds.0.items.0','0','Array bytes read per second',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375158','83647','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375159','83647','1','ds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375160','83647','0','ds.1.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375161','83647','1','ds.1.items.0','0','Array bytes written per second',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375162','83647','0','ds.1.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375163','83647','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375164','83647','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375165','83647','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375166','83647','1','reference','0','XGKYU',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375167','83647','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375168','83648','1','ds.0.color','0','009688',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375169','83648','0','ds.0.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375170','83648','1','ds.0.items.0','0','Array microseconds per read',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375171','83648','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375172','83648','1','ds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375173','83648','0','ds.1.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375174','83648','1','ds.1.items.0','0','Array microseconds per write',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375175','83648','0','ds.1.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375176','83648','1','ds.2.color','0','F44336',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375177','83648','0','ds.2.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375178','83648','1','ds.2.items.0','0','Array microseconds per operation',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375179','83648','0','ds.2.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375180','83648','0','legend_lines','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375181','83648','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375182','83648','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375183','83648','1','reference','0','SSNAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375184','83648','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375185','83649','4','itemid.0','0','',NULL,NULL,'49707',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375186','83649','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375187','83650','1','ds.0.color','0','009688',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375188','83650','0','ds.0.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375189','83650','1','ds.0.items.0','0','Array read requests per second',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375190','83650','0','ds.0.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375191','83650','1','ds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375192','83650','0','ds.1.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375193','83650','1','ds.1.items.0','0','Array write requests per second',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375194','83650','0','ds.1.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375195','83650','0','legend_lines','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375196','83650','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375197','83650','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375198','83650','1','reference','0','NCUID',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375199','83650','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375200','83651','0','ds.0.axisy','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375201','83651','1','ds.0.color','0','009688',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375202','83651','0','ds.0.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375203','83651','1','ds.0.items.0','0','Array capacity',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375204','83651','0','ds.0.width','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375205','83651','1','ds.1.color','0','FFD54F',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375206','83651','0','ds.1.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375207','83651','1','ds.1.items.0','0','Array shared space',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375208','83651','0','ds.1.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375209','83651','1','ds.2.color','0','F44336',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375210','83651','0','ds.2.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375211','83651','1','ds.2.items.0','0','Array snapshots size',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375212','83651','0','ds.2.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375213','83651','1','ds.3.color','0','0080FF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375214','83651','0','ds.3.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375215','83651','1','ds.3.items.0','0','Array volumes size',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375216','83651','0','ds.3.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375217','83651','1','ds.4.color','0','7E57C2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375218','83651','0','ds.4.fill','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375219','83651','1','ds.4.items.0','0','Array system size',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375220','83651','0','ds.4.width','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375221','83651','0','legend_lines','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375222','83651','0','legend_lines_mode','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375223','83651','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375224','83651','1','reference','0','SFPXY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375225','83652','4','itemid.0','0','',NULL,NULL,'49689',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375226','83652','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375227','83653','1','bg_color','0','64B5F6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375228','83653','1','items.0','0','*Speed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375229','83653','0','item_tags.0.operator','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375230','83653','1','item_tags.0.tag','0','component',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375231','83653','1','item_tags.0.value','0','interface',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375232','83653','1','primary_label','0',E'{{ITEM.NAME}.regsub("^.+?\\[(.*)\\]", \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375233','83653','1','reference','0','TZTHI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375234','83653','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375235','83654','1','ds.0.color.0','0','009688',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375236','83654','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375237','83654','1','ds.0.itemids.0._reference','0','TZTHI._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375238','83654','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375239','83654','1','reference','0','ABHBM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375240','83654','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375241','83655','1','bg_color','0','64B5F6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375242','83655','1','items.0','0','*Capacity',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375243','83655','0','item_tags.0.operator','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375244','83655','1','item_tags.0.tag','0','component',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375245','83655','1','item_tags.0.value','0','drive',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375246','83655','1','primary_label','0',E'{{ITEM.NAME}.regsub("^.+?\\[(.*)\\]", \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375247','83655','1','reference','0','YBMRB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375248','83655','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375249','83656','1','ds.0.color.0','0','009688',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375250','83656','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375251','83656','1','ds.0.itemids.0._reference','0','YBMRB._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375252','83656','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375253','83656','1','reference','0','IEDRA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375254','83656','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375255','83657','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375256','83657','7','graphid.0','0','',NULL,NULL,NULL,'3095',NULL,NULL,NULL,NULL,NULL,NULL), ('375257','83657','1','reference','0','AAAAJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375258','83658','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375259','83658','7','graphid.0','0','',NULL,NULL,NULL,'3097',NULL,NULL,NULL,NULL,NULL,NULL), ('375260','83658','1','reference','0','AAAAL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375261','83659','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375262','83659','7','graphid.0','0','',NULL,NULL,NULL,'3096',NULL,NULL,NULL,NULL,NULL,NULL), ('375263','83659','1','reference','0','AAAAK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375264','83660','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375265','83660','7','graphid.0','0','',NULL,NULL,NULL,'3098',NULL,NULL,NULL,NULL,NULL,NULL), ('375266','83660','1','reference','0','AAAAM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375267','83661','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375268','83661','7','graphid.0','0','',NULL,NULL,NULL,'3087',NULL,NULL,NULL,NULL,NULL,NULL), ('375269','83661','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375270','83662','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375271','83662','7','graphid.0','0','',NULL,NULL,NULL,'3089',NULL,NULL,NULL,NULL,NULL,NULL), ('375272','83662','1','reference','0','AAAAH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375273','83663','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375274','83663','7','graphid.0','0','',NULL,NULL,NULL,'3088',NULL,NULL,NULL,NULL,NULL,NULL), ('375275','83663','1','reference','0','AAAAG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375276','83664','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375277','83664','7','graphid.0','0','',NULL,NULL,NULL,'3090',NULL,NULL,NULL,NULL,NULL,NULL), ('375278','83664','1','reference','0','AAAAI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375279','83665','1','items.0','0','*Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375280','83665','0','item_tags.0.operator','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375281','83665','1','item_tags.0.tag','0','component',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375282','83665','1','item_tags.0.value','0','fan',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375283','83665','1','primary_label','0',E'{{ITEM.NAME}.regsub("^.+?\\[(.*)\\]", \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375284','83665','1','reference','0','YQLGC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375285','83665','0','show.0','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375286','83665','1','thresholds.0.color','0','26A69A',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375287','83665','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375288','83665','1','thresholds.1.color','0','E65660',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375289','83665','1','thresholds.1.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375290','83665','1','thresholds.2.color','0','FCCB1D',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375291','83665','1','thresholds.2.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375292','83665','1','thresholds.3.color','0','90A4AE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375293','83665','1','thresholds.3.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375294','83665','1','thresholds.4.color','0','29B6F6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375295','83665','1','thresholds.4.threshold','0','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375296','83665','1','thresholds.5.color','0','546E7A',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375297','83665','1','thresholds.5.threshold','0','5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375298','83666','1','items.0','0','*Temperature',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375299','83666','0','item_tags.0.operator','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375300','83666','1','item_tags.0.tag','0','component',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375301','83666','1','item_tags.0.value','0','sensor',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375302','83666','1','primary_label','0',E'{{ITEM.NAME}.regsub("^.+?\\[(.*)\\]", \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375303','83666','1','reference','0','EOKHA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375304','83666','0','secondary_label_bold','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375305','83666','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375306','83666','1','thresholds.0.color','0','26A69A',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375307','83666','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375308','83666','1','thresholds.1.color','0','FFCA28',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375309','83666','1','thresholds.1.threshold','0','50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375310','83666','1','thresholds.2.color','0','E65660',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375311','83666','1','thresholds.2.threshold','0','70',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375312','83667','1','ds.0.color.0','0','009688',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375313','83667','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375314','83667','1','ds.0.itemids.0._reference','0','EOKHA._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375315','83667','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375316','83667','1','reference','0','FDGJA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375317','83667','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375318','83668','1','bg_color','0','64B5F6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375319','83668','1','items.0','0','*Voltage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375320','83668','0','item_tags.0.operator','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375321','83668','1','item_tags.0.tag','0','component',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375322','83668','1','item_tags.0.value','0','power',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375323','83668','1','primary_label','0',E'{{ITEM.NAME}.regsub("^.+?\\[(.*)\\]", \\1)}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375324','83668','1','reference','0','MZNPS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375325','83668','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375326','83669','1','ds.0.color.0','0','009688',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375327','83669','0','ds.0.dataset_type','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375328','83669','1','ds.0.itemids.0._reference','0','MZNPS._itemid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375329','83669','0','legend_statistic','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375330','83669','1','reference','0','NGVAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375331','83669','0','righty','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375332','83670','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375333','83670','7','graphid.0','0','',NULL,NULL,NULL,'1805',NULL,NULL,NULL,NULL,NULL,NULL), ('375334','83670','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375335','83671','1','bg_color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375336','83671','1','description','0','CPU',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375337','83671','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375338','83671','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375339','83671','1','empty_color','0','5000A1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375340','83671','4','itemid.0','0','',NULL,NULL,'48471',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375341','83671','0','rf_rate','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375342','83671','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375343','83671','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375344','83671','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375345','83671','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375346','83671','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375347','83671','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375348','83671','1','value_arc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375349','83671','0','value_arc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375350','83671','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375351','83671','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375352','83672','1','bg_color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375353','83672','1','description','0','MEM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375354','83672','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375355','83672','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375356','83672','1','empty_color','0','5000A1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375357','83672','4','itemid.0','0','',NULL,NULL,'48473',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375358','83672','0','rf_rate','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375359','83672','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375360','83672','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375361','83672','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375362','83672','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375363','83672','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375364','83672','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375365','83672','1','value_arc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375366','83672','0','value_arc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375367','83672','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375368','83672','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375369','83673','1','bg_color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375370','83673','1','description','0','I/O',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375371','83673','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375372','83673','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375373','83673','1','empty_color','0','5000A1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375374','83673','4','itemid.0','0','',NULL,NULL,'48472',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375375','83673','0','rf_rate','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375376','83673','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375377','83673','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375378','83673','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375379','83673','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375380','83673','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375381','83673','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375382','83673','1','value_arc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375383','83673','0','value_arc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375384','83673','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375385','83673','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375386','83674','1','bg_color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375387','83674','1','description','0','SYS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375388','83674','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375389','83674','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375390','83674','1','empty_color','0','5000A1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375391','83674','4','itemid.0','0','',NULL,NULL,'48474',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375392','83674','0','rf_rate','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375393','83674','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375394','83674','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375395','83674','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375396','83674','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375397','83674','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375398','83674','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375399','83674','1','value_arc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375400','83674','0','value_arc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375401','83674','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375402','83674','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375403','83675','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375404','83675','1','description','0','Redfish API',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375405','83675','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375406','83675','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375407','83675','4','itemid.0','0','',NULL,NULL,'48466',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375408','83675','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375409','83675','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375410','83675','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375411','83675','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375412','83676','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375413','83676','1','description','0','HW model',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375414','83676','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375415','83676','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375416','83676','4','itemid.0','0','',NULL,NULL,'48468',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375417','83676','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375418','83676','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375419','83676','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375420','83676','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375421','83677','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375422','83677','1','description','0','Serial number',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375423','83677','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375424','83677','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375425','83677','4','itemid.0','0','',NULL,NULL,'48469',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375426','83677','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375427','83677','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375428','83677','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375429','83677','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375430','83678','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375431','83678','1','description','0','Firmware',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375432','83678','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375433','83678','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375434','83678','4','itemid.0','0','',NULL,NULL,'48467',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375435','83678','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375436','83678','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375437','83678','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375438','83678','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375439','83679','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375440','83679','1','description','0','System Health',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375441','83679','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375442','83679','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375443','83679','4','itemid.0','0','',NULL,NULL,'48470',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375444','83679','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375445','83679','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375446','83679','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375447','83679','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375448','83680','1','items.0','0','Interface*Link status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375449','83680','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375450','83680','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375451','83680','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375452','83680','1','thresholds.0.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375453','83680','1','thresholds.0.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375454','83680','1','thresholds.1.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375455','83680','1','thresholds.1.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375456','83681','1','items.0','0','Probe*Value',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375457','83681','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375458','83681','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375459','83681','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375460','83681','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375461','83682','1','items.0','0','Physical disk*Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375462','83682','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375463','83682','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375464','83682','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375465','83682','1','thresholds.0.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375466','83682','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375467','83682','1','thresholds.1.color','0','FF681E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375468','83682','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375469','83682','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375470','83682','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375471','83683','1','items.0','0','Power supply*Voltage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375472','83683','1','items.1','0','Power supply*Current',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375473','83683','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375474','83683','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375475','83683','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375476','83684','1','items.0','0','Interface*Speed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375477','83684','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375478','83684','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375479','83684','1','reference','0','AAABA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375480','83684','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375481','83684','1','thresholds.0.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375482','83684','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375483','83684','1','thresholds.1.color','0','FF681E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375484','83684','1','thresholds.1.threshold','0','10000000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375485','83684','1','thresholds.2.color','0','FF980E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375486','83684','1','thresholds.2.threshold','0','100000000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375487','83684','1','thresholds.3.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375488','83684','1','thresholds.3.threshold','0','1000000000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375489','83684','1','thresholds.4.color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375490','83684','1','thresholds.4.threshold','0','10000000000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375491','83684','1','thresholds.5.color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375492','83684','1','thresholds.5.threshold','0','25000000000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375493','83684','1','thresholds.6.color','0','D900A6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375494','83684','1','thresholds.6.threshold','0','40000000000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375495','83685','1','items.0','0','Virtual disk*: Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375496','83685','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375497','83685','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375498','83685','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375499','83685','1','thresholds.0.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375500','83685','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375501','83685','1','thresholds.1.color','0','FF681E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375502','83685','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375503','83685','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375504','83685','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375505','83686','1','items.0','0','Probe*Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375506','83686','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375507','83686','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375508','83686','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375509','83686','1','thresholds.0.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375510','83686','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375511','83686','1','thresholds.1.color','0','FF681E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375512','83686','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375513','83686','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375514','83686','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375515','83687','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375516','83687','1','description','0','System Health',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375517','83687','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375518','83687','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375519','83687','4','itemid.0','0','',NULL,NULL,'48536',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375520','83687','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375521','83687','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375522','83687','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375523','83687','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375524','83688','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375525','83688','1','description','0','Serial number',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375526','83688','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375527','83688','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375528','83688','4','itemid.0','0','',NULL,NULL,'48525',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375529','83688','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375530','83688','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375531','83688','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375532','83688','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375533','83689','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375534','83689','1','description','0','HW model',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375535','83689','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375536','83689','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375537','83689','4','itemid.0','0','',NULL,NULL,'48524',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375538','83689','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375539','83689','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375540','83689','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375541','83689','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375542','83690','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375543','83690','1','description','0','Firmware',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375544','83690','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375545','83690','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375546','83690','4','itemid.0','0','',NULL,NULL,'48523',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375547','83690','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375548','83690','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375549','83690','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375550','83690','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375551','83691','1','items.0','0','NIC*Link status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375552','83691','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375553','83691','0','primary_label_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375554','83691','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375555','83691','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375556','83691','1','thresholds.0.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375557','83691','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375558','83691','1','thresholds.1.color','0','FF681E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375559','83691','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375560','83691','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375561','83691','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375562','83692','1','items.0','0','Probe*Value',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375563','83692','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375564','83692','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375565','83692','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375566','83692','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375567','83693','1','items.0','0','Physical disk*: Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375568','83693','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375569','83693','0','primary_label_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375570','83693','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375571','83693','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375572','83693','1','thresholds.0.color','0','FF980E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375573','83693','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375574','83693','1','thresholds.1.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375575','83693','1','thresholds.1.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375576','83693','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375577','83693','1','thresholds.2.threshold','0','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375578','83694','1','items.0','0','Voltage probe*Voltage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375579','83694','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375580','83694','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375581','83694','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375582','83695','1','items.0','0','Virtual disk*: Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375583','83695','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375584','83695','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375585','83695','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375586','83695','1','thresholds.0.color','0','FF980E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375587','83695','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375588','83695','1','thresholds.1.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375589','83695','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375590','83695','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375591','83695','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375592','83696','1','items.0','0','Fan*Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375593','83696','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375594','83696','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375595','83696','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375596','83696','1','thresholds.0.color','0','FF980E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375597','83696','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375598','83696','1','thresholds.1.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375599','83696','1','thresholds.1.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375600','83696','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375601','83696','1','thresholds.2.threshold','0','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375602','83697','1','bg_color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375603','83697','1','description','0','CPU',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375604','83697','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375605','83697','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375606','83697','1','empty_color','0','5000A1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375607','83697','4','itemid.0','0','',NULL,NULL,'48587',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375608','83697','0','rf_rate','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375609','83697','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375610','83697','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375611','83697','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375612','83697','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375613','83697','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375614','83697','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375615','83697','1','value_arc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375616','83697','0','value_arc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375617','83697','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375618','83697','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375619','83698','1','bg_color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375620','83698','1','description','0','MEM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375621','83698','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375622','83698','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375623','83698','1','empty_color','0','5000A1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375624','83698','4','itemid.0','0','',NULL,NULL,'48589',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375625','83698','0','rf_rate','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375626','83698','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375627','83698','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375628','83698','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375629','83698','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375630','83698','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375631','83698','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375632','83698','1','value_arc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375633','83698','0','value_arc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375634','83698','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375635','83698','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375636','83699','1','bg_color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375637','83699','1','description','0','I/O',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375638','83699','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375639','83699','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375640','83699','1','empty_color','0','5000A1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375641','83699','4','itemid.0','0','',NULL,NULL,'48588',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375642','83699','0','rf_rate','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375643','83699','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375644','83699','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375645','83699','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375646','83699','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375647','83699','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375648','83699','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375649','83699','1','value_arc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375650','83699','0','value_arc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375651','83699','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375652','83699','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375653','83700','1','bg_color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375654','83700','1','description','0','SYS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375655','83700','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375656','83700','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375657','83700','1','empty_color','0','5000A1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375658','83700','4','itemid.0','0','',NULL,NULL,'48590',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375659','83700','0','rf_rate','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375660','83700','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375661','83700','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375662','83700','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375663','83700','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375664','83700','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375665','83700','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375666','83700','1','value_arc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375667','83700','0','value_arc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375668','83700','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375669','83700','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375670','83701','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375671','83701','1','description','0','Redfish API',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375672','83701','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375673','83701','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375674','83701','4','itemid.0','0','',NULL,NULL,'36214',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375675','83701','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375676','83701','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375677','83701','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375678','83701','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375679','83702','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375680','83702','1','description','0','HW model',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375681','83702','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375682','83702','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375683','83702','4','itemid.0','0','',NULL,NULL,'36216',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375684','83702','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375685','83702','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375686','83702','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375687','83702','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375688','83703','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375689','83703','1','description','0','Serial number',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375690','83703','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375691','83703','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375692','83703','4','itemid.0','0','',NULL,NULL,'36217',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375693','83703','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375694','83703','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375695','83703','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375696','83703','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375697','83704','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375698','83704','1','description','0','Firmware',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375699','83704','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375700','83704','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375701','83704','4','itemid.0','0','',NULL,NULL,'36215',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375702','83704','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375703','83704','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375704','83704','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375705','83704','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375706','83705','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375707','83705','1','description','0','System Health',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375708','83705','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375709','83705','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375710','83705','4','itemid.0','0','',NULL,NULL,'36218',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375711','83705','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375712','83705','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375713','83705','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375714','83705','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375715','83706','1','items.0','0','Interface*Link status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375716','83706','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375717','83706','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375718','83706','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375719','83706','1','thresholds.0.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375720','83706','1','thresholds.0.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375721','83706','1','thresholds.1.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375722','83706','1','thresholds.1.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375723','83707','1','items.0','0','Probe*Value',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375724','83707','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375725','83707','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375726','83707','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375727','83707','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375728','83708','1','items.0','0','Physical disk*Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375729','83708','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375730','83708','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375731','83708','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375732','83708','1','thresholds.0.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375733','83708','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375734','83708','1','thresholds.1.color','0','FF681E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375735','83708','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375736','83708','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375737','83708','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375738','83709','1','items.0','0','Power supply*Voltage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375739','83709','1','items.1','0','Power supply*Current',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375740','83709','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375741','83709','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375742','83709','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375743','83710','1','items.0','0','Interface*Speed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375744','83710','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375745','83710','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375746','83710','1','reference','0','AAABA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375747','83710','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375748','83710','1','thresholds.0.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375749','83710','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375750','83710','1','thresholds.1.color','0','FF681E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375751','83710','1','thresholds.1.threshold','0','10000000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375752','83710','1','thresholds.2.color','0','FF980E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375753','83710','1','thresholds.2.threshold','0','100000000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375754','83710','1','thresholds.3.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375755','83710','1','thresholds.3.threshold','0','1000000000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375756','83710','1','thresholds.4.color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375757','83710','1','thresholds.4.threshold','0','10000000000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375758','83710','1','thresholds.5.color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375759','83710','1','thresholds.5.threshold','0','25000000000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375760','83710','1','thresholds.6.color','0','D900A6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375761','83710','1','thresholds.6.threshold','0','40000000000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375762','83711','1','items.0','0','Virtual disk*: Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375763','83711','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375764','83711','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375765','83711','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375766','83711','1','thresholds.0.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375767','83711','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375768','83711','1','thresholds.1.color','0','FF681E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375769','83711','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375770','83711','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375771','83711','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375772','83712','1','items.0','0','Probe*Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375773','83712','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375774','83712','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375775','83712','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375776','83712','1','thresholds.0.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375777','83712','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375778','83712','1','thresholds.1.color','0','FF681E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375779','83712','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375780','83712','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375781','83712','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375782','83713','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375783','83713','1','description','0','System Health',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375784','83713','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375785','83713','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375786','83713','4','itemid.0','0','',NULL,NULL,'36263',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375787','83713','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375788','83713','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375789','83713','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375790','83713','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375791','83714','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375792','83714','1','description','0','Serial number',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375793','83714','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375794','83714','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375795','83714','4','itemid.0','0','',NULL,NULL,'36259',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375796','83714','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375797','83714','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375798','83714','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375799','83714','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375800','83715','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375801','83715','1','description','0','HW model',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375802','83715','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375803','83715','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375804','83715','4','itemid.0','0','',NULL,NULL,'36258',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375805','83715','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375806','83715','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375807','83715','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375808','83715','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375809','83716','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375810','83716','1','description','0','Firmware',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375811','83716','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375812','83716','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375813','83716','4','itemid.0','0','',NULL,NULL,'36257',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375814','83716','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375815','83716','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375816','83716','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375817','83716','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375818','83717','1','items.0','0','NIC*Link status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375819','83717','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375820','83717','0','primary_label_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375821','83717','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375822','83717','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375823','83717','1','thresholds.0.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375824','83717','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375825','83717','1','thresholds.1.color','0','FF681E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375826','83717','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375827','83717','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375828','83717','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375829','83718','1','items.0','0','Probe*Value',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375830','83718','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375831','83718','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375832','83718','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375833','83718','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375834','83719','1','items.0','0','Physical disk*: Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375835','83719','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375836','83719','0','primary_label_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375837','83719','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375838','83719','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375839','83719','1','thresholds.0.color','0','FF980E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375840','83719','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375841','83719','1','thresholds.1.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375842','83719','1','thresholds.1.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375843','83719','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375844','83719','1','thresholds.2.threshold','0','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375845','83720','1','items.0','0','Voltage probe*Voltage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375846','83720','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375847','83720','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375848','83720','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375849','83721','1','items.0','0','Virtual disk*: Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375850','83721','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375851','83721','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375852','83721','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375853','83721','1','thresholds.0.color','0','FF980E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375854','83721','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375855','83721','1','thresholds.1.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375856','83721','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375857','83721','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375858','83721','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375859','83722','1','items.0','0','Fan*Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375860','83722','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375861','83722','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375862','83722','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375863','83722','1','thresholds.0.color','0','FF980E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375864','83722','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375865','83722','1','thresholds.1.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375866','83722','1','thresholds.1.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375867','83722','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375868','83722','1','thresholds.2.threshold','0','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375869','83723','1','bg_color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375870','83723','1','description','0','CPU',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375871','83723','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375872','83723','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375873','83723','1','empty_color','0','5000A1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375874','83723','4','itemid.0','0','',NULL,NULL,'48670',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375875','83723','0','rf_rate','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375876','83723','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375877','83723','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375878','83723','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375879','83723','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375880','83723','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375881','83723','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375882','83723','1','value_arc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375883','83723','0','value_arc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375884','83723','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375885','83723','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375886','83724','1','bg_color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375887','83724','1','description','0','MEM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375888','83724','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375889','83724','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375890','83724','1','empty_color','0','5000A1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375891','83724','4','itemid.0','0','',NULL,NULL,'48672',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375892','83724','0','rf_rate','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375893','83724','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375894','83724','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375895','83724','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375896','83724','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375897','83724','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375898','83724','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375899','83724','1','value_arc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375900','83724','0','value_arc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375901','83724','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375902','83724','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375903','83725','1','bg_color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375904','83725','1','description','0','I/O',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375905','83725','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375906','83725','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375907','83725','1','empty_color','0','5000A1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375908','83725','4','itemid.0','0','',NULL,NULL,'48671',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375909','83725','0','rf_rate','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375910','83725','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375911','83725','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375912','83725','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375913','83725','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375914','83725','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375915','83725','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375916','83725','1','value_arc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375917','83725','0','value_arc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375918','83725','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375919','83725','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375920','83726','1','bg_color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375921','83726','1','description','0','SYS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375922','83726','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375923','83726','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375924','83726','1','empty_color','0','5000A1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375925','83726','4','itemid.0','0','',NULL,NULL,'48673',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375926','83726','0','rf_rate','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375927','83726','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375928','83726','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375929','83726','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375930','83726','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375931','83726','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375932','83726','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375933','83726','1','value_arc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375934','83726','0','value_arc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375935','83726','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375936','83726','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375937','83727','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375938','83727','1','description','0','Redfish API',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375939','83727','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375940','83727','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375941','83727','4','itemid.0','0','',NULL,NULL,'36296',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375942','83727','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375943','83727','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375944','83727','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375945','83727','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375946','83728','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375947','83728','1','description','0','HW model',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375948','83728','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375949','83728','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375950','83728','4','itemid.0','0','',NULL,NULL,'36298',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375951','83728','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375952','83728','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375953','83728','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375954','83728','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375955','83729','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375956','83729','1','description','0','Serial number',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375957','83729','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375958','83729','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375959','83729','4','itemid.0','0','',NULL,NULL,'36299',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375960','83729','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375961','83729','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375962','83729','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375963','83729','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375964','83730','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375965','83730','1','description','0','Firmware',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375966','83730','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375967','83730','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375968','83730','4','itemid.0','0','',NULL,NULL,'36297',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375969','83730','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375970','83730','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375971','83730','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375972','83730','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375973','83731','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375974','83731','1','description','0','System Health',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375975','83731','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375976','83731','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375977','83731','4','itemid.0','0','',NULL,NULL,'36300',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375978','83731','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375979','83731','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375980','83731','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375981','83731','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375982','83732','1','items.0','0','Interface*Link status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375983','83732','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375984','83732','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375985','83732','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375986','83732','1','thresholds.0.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375987','83732','1','thresholds.0.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375988','83732','1','thresholds.1.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375989','83732','1','thresholds.1.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375990','83733','1','items.0','0','Probe*Value',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375991','83733','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375992','83733','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375993','83733','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375994','83733','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375995','83734','1','items.0','0','Physical disk*Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375996','83734','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375997','83734','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375998','83734','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('375999','83734','1','thresholds.0.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376000','83734','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376001','83734','1','thresholds.1.color','0','FF681E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376002','83734','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376003','83734','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376004','83734','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376005','83735','1','items.0','0','Power supply*Voltage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376006','83735','1','items.1','0','Power supply*Current',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376007','83735','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376008','83735','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376009','83735','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376010','83736','1','items.0','0','Interface*Speed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376011','83736','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376012','83736','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376013','83736','1','reference','0','AAABA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376014','83736','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376015','83736','1','thresholds.0.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376016','83736','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376017','83736','1','thresholds.1.color','0','FF681E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376018','83736','1','thresholds.1.threshold','0','10000000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376019','83736','1','thresholds.2.color','0','FF980E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376020','83736','1','thresholds.2.threshold','0','100000000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376021','83736','1','thresholds.3.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376022','83736','1','thresholds.3.threshold','0','1000000000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376023','83736','1','thresholds.4.color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376024','83736','1','thresholds.4.threshold','0','10000000000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376025','83736','1','thresholds.5.color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376026','83736','1','thresholds.5.threshold','0','25000000000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376027','83736','1','thresholds.6.color','0','D900A6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376028','83736','1','thresholds.6.threshold','0','40000000000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376029','83737','1','items.0','0','Virtual disk*: Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376030','83737','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376031','83737','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376032','83737','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376033','83737','1','thresholds.0.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376034','83737','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376035','83737','1','thresholds.1.color','0','FF681E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376036','83737','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376037','83737','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376038','83737','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376039','83738','1','items.0','0','Probe*Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376040','83738','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376041','83738','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376042','83738','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376043','83738','1','thresholds.0.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376044','83738','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376045','83738','1','thresholds.1.color','0','FF681E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376046','83738','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376047','83738','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376048','83738','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376049','83739','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376050','83739','1','description','0','System Health',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376051','83739','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376052','83739','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376053','83739','4','itemid.0','0','',NULL,NULL,'36345',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376054','83739','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376055','83739','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376056','83739','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376057','83739','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376058','83740','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376059','83740','1','description','0','Serial number',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376060','83740','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376061','83740','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376062','83740','4','itemid.0','0','',NULL,NULL,'36341',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376063','83740','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376064','83740','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376065','83740','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376066','83740','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376067','83741','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376068','83741','1','description','0','HW model',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376069','83741','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376070','83741','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376071','83741','4','itemid.0','0','',NULL,NULL,'36340',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376072','83741','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376073','83741','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376074','83741','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376075','83741','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376076','83742','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376077','83742','1','description','0','Firmware',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376078','83742','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376079','83742','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376080','83742','4','itemid.0','0','',NULL,NULL,'36339',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376081','83742','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376082','83742','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376083','83742','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376084','83742','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376085','83743','1','items.0','0','NIC*Link status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376086','83743','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376087','83743','0','primary_label_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376088','83743','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376089','83743','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376090','83743','1','thresholds.0.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376091','83743','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376092','83743','1','thresholds.1.color','0','FF681E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376093','83743','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376094','83743','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376095','83743','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376096','83744','1','items.0','0','Probe*Value',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376097','83744','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376098','83744','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376099','83744','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376100','83744','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376101','83745','1','items.0','0','Physical disk*: Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376102','83745','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376103','83745','0','primary_label_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376104','83745','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376105','83745','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376106','83745','1','thresholds.0.color','0','FF980E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376107','83745','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376108','83745','1','thresholds.1.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376109','83745','1','thresholds.1.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376110','83745','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376111','83745','1','thresholds.2.threshold','0','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376112','83746','1','items.0','0','Voltage probe*Voltage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376113','83746','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376114','83746','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376115','83746','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376116','83747','1','items.0','0','Virtual disk*: Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376117','83747','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376118','83747','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376119','83747','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376120','83747','1','thresholds.0.color','0','FF980E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376121','83747','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376122','83747','1','thresholds.1.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376123','83747','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376124','83747','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376125','83747','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376126','83748','1','items.0','0','Fan*Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376127','83748','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376128','83748','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376129','83748','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376130','83748','1','thresholds.0.color','0','FF980E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376131','83748','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376132','83748','1','thresholds.1.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376133','83748','1','thresholds.1.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376134','83748','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376135','83748','1','thresholds.2.threshold','0','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376136','83749','1','bg_color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376137','83749','1','description','0','CPU',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376138','83749','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376139','83749','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376140','83749','1','empty_color','0','5000A1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376141','83749','4','itemid.0','0','',NULL,NULL,'48759',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376142','83749','0','rf_rate','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376143','83749','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376144','83749','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376145','83749','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376146','83749','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376147','83749','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376148','83749','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376149','83749','1','value_arc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376150','83749','0','value_arc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376151','83749','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376152','83749','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376153','83750','1','bg_color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376154','83750','1','description','0','MEM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376155','83750','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376156','83750','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376157','83750','1','empty_color','0','5000A1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376158','83750','4','itemid.0','0','',NULL,NULL,'48761',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376159','83750','0','rf_rate','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376160','83750','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376161','83750','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376162','83750','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376163','83750','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376164','83750','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376165','83750','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376166','83750','1','value_arc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376167','83750','0','value_arc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376168','83750','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376169','83750','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376170','83751','1','bg_color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376171','83751','1','description','0','I/O',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376172','83751','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376173','83751','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376174','83751','1','empty_color','0','5000A1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376175','83751','4','itemid.0','0','',NULL,NULL,'48760',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376176','83751','0','rf_rate','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376177','83751','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376178','83751','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376179','83751','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376180','83751','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376181','83751','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376182','83751','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376183','83751','1','value_arc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376184','83751','0','value_arc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376185','83751','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376186','83751','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376187','83752','1','bg_color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376188','83752','1','description','0','SYS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376189','83752','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376190','83752','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376191','83752','1','empty_color','0','5000A1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376192','83752','4','itemid.0','0','',NULL,NULL,'48762',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376193','83752','0','rf_rate','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376194','83752','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376195','83752','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376196','83752','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376197','83752','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376198','83752','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376199','83752','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376200','83752','1','value_arc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376201','83752','0','value_arc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376202','83752','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376203','83752','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376204','83753','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376205','83753','1','description','0','Redfish API',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376206','83753','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376207','83753','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376208','83753','4','itemid.0','0','',NULL,NULL,'48754',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376209','83753','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376210','83753','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376211','83753','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376212','83753','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376213','83754','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376214','83754','1','description','0','HW model',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376215','83754','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376216','83754','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376217','83754','4','itemid.0','0','',NULL,NULL,'48756',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376218','83754','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376219','83754','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376220','83754','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376221','83754','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376222','83755','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376223','83755','1','description','0','Serial number',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376224','83755','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376225','83755','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376226','83755','4','itemid.0','0','',NULL,NULL,'48757',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376227','83755','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376228','83755','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376229','83755','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376230','83755','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376231','83756','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376232','83756','1','description','0','Firmware',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376233','83756','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376234','83756','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376235','83756','4','itemid.0','0','',NULL,NULL,'48755',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376236','83756','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376237','83756','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376238','83756','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376239','83756','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376240','83757','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376241','83757','1','description','0','System Health',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376242','83757','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376243','83757','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376244','83757','4','itemid.0','0','',NULL,NULL,'48758',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376245','83757','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376246','83757','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376247','83757','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376248','83757','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376249','83758','1','items.0','0','Interface*Link status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376250','83758','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376251','83758','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376252','83758','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376253','83758','1','thresholds.0.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376254','83758','1','thresholds.0.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376255','83758','1','thresholds.1.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376256','83758','1','thresholds.1.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376257','83759','1','items.0','0','Probe*Value',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376258','83759','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376259','83759','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376260','83759','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376261','83759','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376262','83760','1','items.0','0','Physical disk*Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376263','83760','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376264','83760','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376265','83760','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376266','83760','1','thresholds.0.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376267','83760','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376268','83760','1','thresholds.1.color','0','FF681E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376269','83760','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376270','83760','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376271','83760','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376272','83761','1','items.0','0','Power supply*Voltage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376273','83761','1','items.1','0','Power supply*Current',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376274','83761','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376275','83761','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376276','83761','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376277','83762','1','items.0','0','Interface*Speed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376278','83762','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376279','83762','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376280','83762','1','reference','0','AAABA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376281','83762','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376282','83762','1','thresholds.0.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376283','83762','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376284','83762','1','thresholds.1.color','0','FF681E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376285','83762','1','thresholds.1.threshold','0','10000000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376286','83762','1','thresholds.2.color','0','FF980E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376287','83762','1','thresholds.2.threshold','0','100000000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376288','83762','1','thresholds.3.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376289','83762','1','thresholds.3.threshold','0','1000000000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376290','83762','1','thresholds.4.color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376291','83762','1','thresholds.4.threshold','0','10000000000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376292','83762','1','thresholds.5.color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376293','83762','1','thresholds.5.threshold','0','25000000000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376294','83762','1','thresholds.6.color','0','D900A6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376295','83762','1','thresholds.6.threshold','0','40000000000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376296','83763','1','items.0','0','Virtual disk*: Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376297','83763','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376298','83763','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376299','83763','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376300','83763','1','thresholds.0.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376301','83763','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376302','83763','1','thresholds.1.color','0','FF681E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376303','83763','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376304','83763','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376305','83763','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376306','83764','1','items.0','0','Probe*Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376307','83764','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376308','83764','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376309','83764','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376310','83764','1','thresholds.0.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376311','83764','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376312','83764','1','thresholds.1.color','0','FF681E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376313','83764','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376314','83764','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376315','83764','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376316','83765','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376317','83765','1','description','0','System Health',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376318','83765','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376319','83765','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376320','83765','4','itemid.0','0','',NULL,NULL,'48824',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376321','83765','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376322','83765','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376323','83765','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376324','83765','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376325','83766','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376326','83766','1','description','0','Serial number',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376327','83766','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376328','83766','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376329','83766','4','itemid.0','0','',NULL,NULL,'48813',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376330','83766','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376331','83766','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376332','83766','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376333','83766','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376334','83767','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376335','83767','1','description','0','HW model',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376336','83767','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376337','83767','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376338','83767','4','itemid.0','0','',NULL,NULL,'48812',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376339','83767','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376340','83767','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376341','83767','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376342','83767','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376343','83768','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376344','83768','1','description','0','Firmware',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376345','83768','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376346','83768','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376347','83768','4','itemid.0','0','',NULL,NULL,'48811',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376348','83768','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376349','83768','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376350','83768','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376351','83768','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376352','83769','1','items.0','0','NIC*Link status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376353','83769','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376354','83769','0','primary_label_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376355','83769','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376356','83769','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376357','83769','1','thresholds.0.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376358','83769','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376359','83769','1','thresholds.1.color','0','FF681E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376360','83769','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376361','83769','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376362','83769','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376363','83770','1','items.0','0','Probe*Value',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376364','83770','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376365','83770','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376366','83770','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376367','83770','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376368','83771','1','items.0','0','Physical disk*: Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376369','83771','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376370','83771','0','primary_label_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376371','83771','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376372','83771','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376373','83771','1','thresholds.0.color','0','FF980E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376374','83771','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376375','83771','1','thresholds.1.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376376','83771','1','thresholds.1.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376377','83771','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376378','83771','1','thresholds.2.threshold','0','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376379','83772','1','items.0','0','Voltage probe*Voltage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376380','83772','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376381','83772','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376382','83772','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376383','83773','1','items.0','0','Virtual disk*: Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376384','83773','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376385','83773','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376386','83773','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376387','83773','1','thresholds.0.color','0','FF980E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376388','83773','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376389','83773','1','thresholds.1.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376390','83773','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376391','83773','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376392','83773','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376393','83774','1','items.0','0','Fan*Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376394','83774','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376395','83774','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376396','83774','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376397','83774','1','thresholds.0.color','0','FF980E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376398','83774','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376399','83774','1','thresholds.1.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376400','83774','1','thresholds.1.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376401','83774','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376402','83774','1','thresholds.2.threshold','0','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376403','83775','1','bg_color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376404','83775','1','description','0','CPU',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376405','83775','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376406','83775','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376407','83775','1','empty_color','0','5000A1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376408','83775','4','itemid.0','0','',NULL,NULL,'48875',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376409','83775','0','rf_rate','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376410','83775','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376411','83775','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376412','83775','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376413','83775','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376414','83775','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376415','83775','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376416','83775','1','value_arc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376417','83775','0','value_arc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376418','83775','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376419','83775','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376420','83776','1','bg_color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376421','83776','1','description','0','MEM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376422','83776','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376423','83776','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376424','83776','1','empty_color','0','5000A1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376425','83776','4','itemid.0','0','',NULL,NULL,'48877',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376426','83776','0','rf_rate','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376427','83776','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376428','83776','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376429','83776','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376430','83776','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376431','83776','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376432','83776','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376433','83776','1','value_arc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376434','83776','0','value_arc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376435','83776','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376436','83776','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376437','83777','1','bg_color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376438','83777','1','description','0','I/O',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376439','83777','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376440','83777','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376441','83777','1','empty_color','0','5000A1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376442','83777','4','itemid.0','0','',NULL,NULL,'48876',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376443','83777','0','rf_rate','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376444','83777','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376445','83777','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376446','83777','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376447','83777','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376448','83777','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376449','83777','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376450','83777','1','value_arc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376451','83777','0','value_arc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376452','83777','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376453','83777','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376454','83778','1','bg_color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376455','83778','1','description','0','SYS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376456','83778','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376457','83778','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376458','83778','1','empty_color','0','5000A1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376459','83778','4','itemid.0','0','',NULL,NULL,'48878',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376460','83778','0','rf_rate','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376461','83778','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376462','83778','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376463','83778','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376464','83778','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376465','83778','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376466','83778','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376467','83778','1','value_arc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376468','83778','0','value_arc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376469','83778','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376470','83778','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376471','83779','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376472','83779','1','description','0','Redfish API',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376473','83779','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376474','83779','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376475','83779','4','itemid.0','0','',NULL,NULL,'36378',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376476','83779','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376477','83779','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376478','83779','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376479','83779','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376480','83780','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376481','83780','1','description','0','HW model',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376482','83780','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376483','83780','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376484','83780','4','itemid.0','0','',NULL,NULL,'36380',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376485','83780','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376486','83780','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376487','83780','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376488','83780','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376489','83781','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376490','83781','1','description','0','Serial number',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376491','83781','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376492','83781','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376493','83781','4','itemid.0','0','',NULL,NULL,'36381',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376494','83781','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376495','83781','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376496','83781','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376497','83781','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376498','83782','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376499','83782','1','description','0','Firmware',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376500','83782','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376501','83782','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376502','83782','4','itemid.0','0','',NULL,NULL,'36379',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376503','83782','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376504','83782','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376505','83782','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376506','83782','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376507','83783','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376508','83783','1','description','0','System Health',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376509','83783','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376510','83783','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376511','83783','4','itemid.0','0','',NULL,NULL,'36382',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376512','83783','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376513','83783','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376514','83783','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376515','83783','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376516','83784','1','items.0','0','Interface*Link status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376517','83784','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376518','83784','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376519','83784','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376520','83784','1','thresholds.0.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376521','83784','1','thresholds.0.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376522','83784','1','thresholds.1.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376523','83784','1','thresholds.1.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376524','83785','1','items.0','0','Probe*Value',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376525','83785','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376526','83785','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376527','83785','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376528','83785','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376529','83786','1','items.0','0','Physical disk*Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376530','83786','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376531','83786','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376532','83786','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376533','83786','1','thresholds.0.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376534','83786','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376535','83786','1','thresholds.1.color','0','FF681E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376536','83786','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376537','83786','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376538','83786','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376539','83787','1','items.0','0','Power supply*Voltage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376540','83787','1','items.1','0','Power supply*Current',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376541','83787','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376542','83787','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376543','83787','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376544','83788','1','items.0','0','Interface*Speed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376545','83788','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376546','83788','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376547','83788','1','reference','0','AAABA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376548','83788','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376549','83788','1','thresholds.0.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376550','83788','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376551','83788','1','thresholds.1.color','0','FF681E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376552','83788','1','thresholds.1.threshold','0','10000000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376553','83788','1','thresholds.2.color','0','FF980E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376554','83788','1','thresholds.2.threshold','0','100000000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376555','83788','1','thresholds.3.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376556','83788','1','thresholds.3.threshold','0','1000000000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376557','83788','1','thresholds.4.color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376558','83788','1','thresholds.4.threshold','0','10000000000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376559','83788','1','thresholds.5.color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376560','83788','1','thresholds.5.threshold','0','25000000000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376561','83788','1','thresholds.6.color','0','D900A6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376562','83788','1','thresholds.6.threshold','0','40000000000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376563','83789','1','items.0','0','Virtual disk*: Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376564','83789','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376565','83789','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376566','83789','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376567','83789','1','thresholds.0.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376568','83789','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376569','83789','1','thresholds.1.color','0','FF681E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376570','83789','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376571','83789','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376572','83789','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376573','83790','1','items.0','0','Probe*Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376574','83790','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376575','83790','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376576','83790','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376577','83790','1','thresholds.0.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376578','83790','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376579','83790','1','thresholds.1.color','0','FF681E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376580','83790','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376581','83790','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376582','83790','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376583','83791','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376584','83791','1','description','0','System Health',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376585','83791','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376586','83791','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376587','83791','4','itemid.0','0','',NULL,NULL,'36427',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376588','83791','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376589','83791','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376590','83791','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376591','83791','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376592','83792','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376593','83792','1','description','0','Serial number',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376594','83792','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376595','83792','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376596','83792','4','itemid.0','0','',NULL,NULL,'36423',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376597','83792','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376598','83792','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376599','83792','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376600','83792','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376601','83793','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376602','83793','1','description','0','HW model',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376603','83793','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376604','83793','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376605','83793','4','itemid.0','0','',NULL,NULL,'36422',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376606','83793','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376607','83793','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376608','83793','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376609','83793','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376610','83794','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376611','83794','1','description','0','Firmware',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376612','83794','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376613','83794','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376614','83794','4','itemid.0','0','',NULL,NULL,'36421',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376615','83794','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376616','83794','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376617','83794','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376618','83794','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376619','83795','1','items.0','0','NIC*Link status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376620','83795','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376621','83795','0','primary_label_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376622','83795','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376623','83795','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376624','83795','1','thresholds.0.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376625','83795','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376626','83795','1','thresholds.1.color','0','FF681E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376627','83795','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376628','83795','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376629','83795','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376630','83796','1','items.0','0','Probe*Value',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376631','83796','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376632','83796','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376633','83796','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376634','83796','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376635','83797','1','items.0','0','Physical disk*: Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376636','83797','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376637','83797','0','primary_label_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376638','83797','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376639','83797','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376640','83797','1','thresholds.0.color','0','FF980E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376641','83797','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376642','83797','1','thresholds.1.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376643','83797','1','thresholds.1.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376644','83797','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376645','83797','1','thresholds.2.threshold','0','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376646','83798','1','items.0','0','Voltage probe*Voltage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376647','83798','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376648','83798','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376649','83798','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376650','83799','1','items.0','0','Virtual disk*: Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376651','83799','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376652','83799','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376653','83799','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376654','83799','1','thresholds.0.color','0','FF980E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376655','83799','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376656','83799','1','thresholds.1.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376657','83799','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376658','83799','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376659','83799','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376660','83800','1','items.0','0','Fan*Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376661','83800','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376662','83800','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376663','83800','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376664','83800','1','thresholds.0.color','0','FF980E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376665','83800','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376666','83800','1','thresholds.1.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376667','83800','1','thresholds.1.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376668','83800','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376669','83800','1','thresholds.2.threshold','0','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376670','83801','1','bg_color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376671','83801','1','description','0','CPU',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376672','83801','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376673','83801','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376674','83801','1','empty_color','0','5000A1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376675','83801','4','itemid.0','0','',NULL,NULL,'48958',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376676','83801','0','rf_rate','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376677','83801','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376678','83801','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376679','83801','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376680','83801','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376681','83801','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376682','83801','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376683','83801','1','value_arc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376684','83801','0','value_arc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376685','83801','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376686','83801','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376687','83802','1','bg_color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376688','83802','1','description','0','MEM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376689','83802','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376690','83802','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376691','83802','1','empty_color','0','5000A1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376692','83802','4','itemid.0','0','',NULL,NULL,'48960',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376693','83802','0','rf_rate','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376694','83802','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376695','83802','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376696','83802','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376697','83802','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376698','83802','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376699','83802','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376700','83802','1','value_arc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376701','83802','0','value_arc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376702','83802','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376703','83802','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376704','83803','1','bg_color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376705','83803','1','description','0','I/O',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376706','83803','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376707','83803','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376708','83803','1','empty_color','0','5000A1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376709','83803','4','itemid.0','0','',NULL,NULL,'48959',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376710','83803','0','rf_rate','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376711','83803','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376712','83803','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376713','83803','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376714','83803','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376715','83803','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376716','83803','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376717','83803','1','value_arc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376718','83803','0','value_arc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376719','83803','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376720','83803','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376721','83804','1','bg_color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376722','83804','1','description','0','SYS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376723','83804','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376724','83804','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376725','83804','1','empty_color','0','5000A1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376726','83804','4','itemid.0','0','',NULL,NULL,'48961',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376727','83804','0','rf_rate','30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376728','83804','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376729','83804','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376730','83804','0','show.2','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376731','83804','1','units','0','%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376732','83804','0','units_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376733','83804','1','units_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376734','83804','1','value_arc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376735','83804','0','value_arc_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376736','83804','0','value_bold','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376737','83804','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376738','83805','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376739','83805','1','description','0','Redfish API',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376740','83805','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376741','83805','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376742','83805','4','itemid.0','0','',NULL,NULL,'36460',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376743','83805','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376744','83805','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376745','83805','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376746','83805','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376747','83806','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376748','83806','1','description','0','HW model',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376749','83806','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376750','83806','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376751','83806','4','itemid.0','0','',NULL,NULL,'36462',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376752','83806','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376753','83806','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376754','83806','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376755','83806','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376756','83807','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376757','83807','1','description','0','Serial number',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376758','83807','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376759','83807','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376760','83807','4','itemid.0','0','',NULL,NULL,'36463',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376761','83807','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376762','83807','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376763','83807','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376764','83807','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376765','83808','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376766','83808','1','description','0','Firmware',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376767','83808','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376768','83808','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376769','83808','4','itemid.0','0','',NULL,NULL,'36461',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376770','83808','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376771','83808','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376772','83808','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376773','83808','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376774','83809','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376775','83809','1','description','0','System Health',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376776','83809','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376777','83809','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376778','83809','4','itemid.0','0','',NULL,NULL,'36464',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376779','83809','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376780','83809','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376781','83809','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376782','83809','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376783','83810','1','items.0','0','Interface*Link status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376784','83810','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376785','83810','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376786','83810','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376787','83810','1','thresholds.0.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376788','83810','1','thresholds.0.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376789','83810','1','thresholds.1.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376790','83810','1','thresholds.1.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376791','83811','1','items.0','0','Probe*Value',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376792','83811','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376793','83811','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376794','83811','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376795','83811','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376796','83812','1','items.0','0','Physical disk*Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376797','83812','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376798','83812','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376799','83812','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376800','83812','1','thresholds.0.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376801','83812','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376802','83812','1','thresholds.1.color','0','FF681E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376803','83812','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376804','83812','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376805','83812','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376806','83813','1','items.0','0','Power supply*Voltage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376807','83813','1','items.1','0','Power supply*Current',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376808','83813','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376809','83813','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376810','83813','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376811','83814','1','items.0','0','Interface*Speed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376812','83814','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376813','83814','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376814','83814','1','reference','0','AAABA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376815','83814','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376816','83814','1','thresholds.0.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376817','83814','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376818','83814','1','thresholds.1.color','0','FF681E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376819','83814','1','thresholds.1.threshold','0','10000000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376820','83814','1','thresholds.2.color','0','FF980E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376821','83814','1','thresholds.2.threshold','0','100000000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376822','83814','1','thresholds.3.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376823','83814','1','thresholds.3.threshold','0','1000000000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376824','83814','1','thresholds.4.color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376825','83814','1','thresholds.4.threshold','0','10000000000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376826','83814','1','thresholds.5.color','0','6C00D9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376827','83814','1','thresholds.5.threshold','0','25000000000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376828','83814','1','thresholds.6.color','0','D900A6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376829','83814','1','thresholds.6.threshold','0','40000000000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376830','83815','1','items.0','0','Virtual disk*: Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376831','83815','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376832','83815','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376833','83815','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376834','83815','1','thresholds.0.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376835','83815','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376836','83815','1','thresholds.1.color','0','FF681E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376837','83815','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376838','83815','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376839','83815','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376840','83816','1','items.0','0','Probe*Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376841','83816','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376842','83816','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376843','83816','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376844','83816','1','thresholds.0.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376845','83816','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376846','83816','1','thresholds.1.color','0','FF681E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376847','83816','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376848','83816','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376849','83816','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376850','83817','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376851','83817','1','description','0','System Health',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376852','83817','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376853','83817','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376854','83817','4','itemid.0','0','',NULL,NULL,'36509',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376855','83817','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376856','83817','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376857','83817','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376858','83817','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376859','83818','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376860','83818','1','description','0','Serial number',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376861','83818','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376862','83818','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376863','83818','4','itemid.0','0','',NULL,NULL,'36505',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376864','83818','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376865','83818','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376866','83818','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376867','83818','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376868','83819','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376869','83819','1','description','0','HW model',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376870','83819','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376871','83819','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376872','83819','4','itemid.0','0','',NULL,NULL,'36504',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376873','83819','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376874','83819','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376875','83819','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376876','83819','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376877','83820','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376878','83820','1','description','0','Firmware',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376879','83820','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376880','83820','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376881','83820','4','itemid.0','0','',NULL,NULL,'36503',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376882','83820','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376883','83820','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376884','83820','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376885','83820','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376886','83821','1','items.0','0','NIC*Link status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376887','83821','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376888','83821','0','primary_label_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376889','83821','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376890','83821','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376891','83821','1','thresholds.0.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376892','83821','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376893','83821','1','thresholds.1.color','0','FF681E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376894','83821','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376895','83821','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376896','83821','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376897','83822','1','items.0','0','Probe*Value',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376898','83822','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376899','83822','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376900','83822','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376901','83822','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376902','83823','1','items.0','0','Physical disk*: Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376903','83823','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376904','83823','0','primary_label_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376905','83823','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376906','83823','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376907','83823','1','thresholds.0.color','0','FF980E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376908','83823','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376909','83823','1','thresholds.1.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376910','83823','1','thresholds.1.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376911','83823','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376912','83823','1','thresholds.2.threshold','0','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376913','83824','1','items.0','0','Voltage probe*Voltage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376914','83824','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376915','83824','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376916','83824','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376917','83825','1','items.0','0','Virtual disk*: Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376918','83825','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376919','83825','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376920','83825','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376921','83825','1','thresholds.0.color','0','FF980E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376922','83825','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376923','83825','1','thresholds.1.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376924','83825','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376925','83825','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376926','83825','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376927','83826','1','items.0','0','Fan*Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376928','83826','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376929','83826','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376930','83826','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376931','83826','1','thresholds.0.color','0','FF980E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376932','83826','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376933','83826','1','thresholds.1.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376934','83826','1','thresholds.1.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376935','83826','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376936','83826','1','thresholds.2.threshold','0','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376937','83827','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376938','83827','1','description','0','System Health',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376939','83827','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376940','83827','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376941','83827','4','itemid.0','0','',NULL,NULL,'49059',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376942','83827','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376943','83827','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376944','83827','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376945','83827','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376946','83828','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376947','83828','1','description','0','Serial number',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376948','83828','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376949','83828','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376950','83828','4','itemid.0','0','',NULL,NULL,'49048',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376951','83828','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376952','83828','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376953','83828','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376954','83828','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376955','83829','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376956','83829','1','description','0','HW model',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376957','83829','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376958','83829','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376959','83829','4','itemid.0','0','',NULL,NULL,'49047',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376960','83829','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376961','83829','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376962','83829','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376963','83829','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376964','83830','1','bg_color','0','2196F3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376965','83830','1','description','0','Firmware',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376966','83830','1','desc_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376967','83830','0','desc_v_pos','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376968','83830','4','itemid.0','0','',NULL,NULL,'49046',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376969','83830','0','show.0','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376970','83830','0','show.1','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376971','83830','1','value_color','0','FFFFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376972','83830','0','value_size','35','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376973','83831','1','items.0','0','NIC*Link status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376974','83831','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376975','83831','0','primary_label_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376976','83831','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376977','83831','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376978','83831','1','thresholds.0.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376979','83831','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376980','83831','1','thresholds.1.color','0','FF681E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376981','83831','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376982','83831','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376983','83831','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376984','83832','1','items.0','0','Probe*Value',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376985','83832','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376986','83832','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376987','83832','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376988','83832','0','secondary_label_decimal_places','0','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376989','83833','1','items.0','0','Physical disk*: Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376990','83833','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376991','83833','0','primary_label_size','15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376992','83833','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376993','83833','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376994','83833','1','thresholds.0.color','0','FF980E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376995','83833','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376996','83833','1','thresholds.1.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376997','83833','1','thresholds.1.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376998','83833','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('376999','83833','1','thresholds.2.threshold','0','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377000','83834','1','items.0','0','Voltage probe*Voltage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377001','83834','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377002','83834','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377003','83834','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377004','83835','1','items.0','0','Virtual disk*: Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377005','83835','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377006','83835','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377007','83835','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377008','83835','1','thresholds.0.color','0','FF980E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377009','83835','1','thresholds.0.threshold','0','1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377010','83835','1','thresholds.1.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377011','83835','1','thresholds.1.threshold','0','2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377012','83835','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377013','83835','1','thresholds.2.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377014','83836','1','items.0','0','Fan*Status',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377015','83836','1','primary_label','0',E'{{ITEM.NAME}.regsub("\\[(.*?)\\]", "\\1")}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377016','83836','0','primary_label_size_type','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377017','83836','1','reference','0','AAAAF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377018','83836','1','thresholds.0.color','0','FF980E',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377019','83836','1','thresholds.0.threshold','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377020','83836','1','thresholds.1.color','0','069C56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377021','83836','1','thresholds.1.threshold','0','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377022','83836','1','thresholds.2.color','0','D3212C',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377023','83836','1','thresholds.2.threshold','0','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377024','83837','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377025','83837','7','graphid.0','0','',NULL,NULL,NULL,'2606',NULL,NULL,NULL,NULL,NULL,NULL), ('377026','83837','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377027','83838','7','graphid.0','0','',NULL,NULL,NULL,'2607',NULL,NULL,NULL,NULL,NULL,NULL), ('377028','83838','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377029','83838','0','rows','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377030','83839','7','graphid.0','0','',NULL,NULL,NULL,'2610',NULL,NULL,NULL,NULL,NULL,NULL), ('377031','83839','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377032','83839','0','rows','2','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377033','83840','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377034','83840','7','graphid.0','0','',NULL,NULL,NULL,'2609',NULL,NULL,NULL,NULL,NULL,NULL), ('377035','83840','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377036','83841','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377037','83841','7','graphid.0','0','',NULL,NULL,NULL,'2608',NULL,NULL,NULL,NULL,NULL,NULL), ('377038','83841','1','reference','0','AAAAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377039','83842','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377040','83842','7','graphid.0','0','',NULL,NULL,NULL,'2433',NULL,NULL,NULL,NULL,NULL,NULL), ('377041','83842','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377042','83843','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377043','83843','7','graphid.0','0','',NULL,NULL,NULL,'2434',NULL,NULL,NULL,NULL,NULL,NULL), ('377044','83843','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377045','83844','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377046','83844','7','graphid.0','0','',NULL,NULL,NULL,'2435',NULL,NULL,NULL,NULL,NULL,NULL), ('377047','83844','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377048','83845','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377049','83845','7','graphid.0','0','',NULL,NULL,NULL,'2436',NULL,NULL,NULL,NULL,NULL,NULL), ('377050','83845','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377051','83846','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377052','83846','5','itemid.0','0','',NULL,NULL,'28474',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377053','83846','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377054','83846','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377055','83847','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377056','83847','5','itemid.0','0','',NULL,NULL,'28475',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377057','83847','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377058','83847','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377059','83848','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377060','83848','5','itemid.0','0','',NULL,NULL,'28476',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377061','83848','1','reference','0','AAAAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377062','83848','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377063','83849','0','columns','1','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377064','83849','5','itemid.0','0','',NULL,NULL,'28479',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377065','83849','1','reference','0','AAAAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377066','83849','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377067','83850','6','graphid.0','0','',NULL,NULL,NULL,'652',NULL,NULL,NULL,NULL,NULL,NULL), ('377068','83850','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377069','83851','6','graphid.0','0','',NULL,NULL,NULL,'651',NULL,NULL,NULL,NULL,NULL,NULL), ('377070','83851','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377071','83852','6','graphid.0','0','',NULL,NULL,NULL,'654',NULL,NULL,NULL,NULL,NULL,NULL), ('377072','83852','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377073','83853','6','graphid.0','0','',NULL,NULL,NULL,'653',NULL,NULL,NULL,NULL,NULL,NULL), ('377074','83853','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377075','83854','5','itemid.0','0','',NULL,NULL,'44680',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377076','83854','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377077','83854','0','rows','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377078','83854','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377079','83855','5','itemid.0','0','',NULL,NULL,'44685',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377080','83855','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377081','83855','0','rows','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377082','83855','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377083','83856','5','itemid.0','0','',NULL,NULL,'44701',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377084','83856','1','reference','0','AAAAA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377085','83856','0','rows','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377086','83856','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377087','83857','5','itemid.0','0','',NULL,NULL,'44706',NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377088','83857','1','reference','0','AAAAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377089','83857','0','rows','5','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), ('377090','83857','0','source_type','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); DELETE FROM changelog; COMMIT;